diff --git a/.gitconfig b/.gitconfig new file mode 100644 index 0000000000..6012034185 --- /dev/null +++ b/.gitconfig @@ -0,0 +1 @@ +anw = !git diff -U0 -w --no-color -- \"$@\" | git apply --cached --ignore-whitespace --unidiff-zero "#" \ No newline at end of file diff --git a/.github/issue-branch.yml b/.github/issue-branch.yml new file mode 100644 index 0000000000..1cf390fedb --- /dev/null +++ b/.github/issue-branch.yml @@ -0,0 +1,10 @@ +# configuration file for automatic issue branch creation +branchName: 'Issue${issue.number}_${issue.title}' +silent: false +autoCloseIssue: true +gitSafeReplacementChar: '_' +defaultBranch: 'development' + +branches: + - label: question + skip: true \ No newline at end of file diff --git a/.github/workflows/github-action-slack.yml b/.github/workflows/github-action-slack.yml new file mode 100644 index 0000000000..ad4c3e5d90 --- /dev/null +++ b/.github/workflows/github-action-slack.yml @@ -0,0 +1,21 @@ +name: github-action-slack +on: + schedule: + # * is a special character in YAML so you have to quote this string + - cron: '0 18 1 * *' + + +jobs: + slack_message_job: + runs-on: ubuntu-latest + strategy: + matrix: + # in this example, there is a newer version already installed, 3.7.7, so the older version will be downloaded + python-version: ['3.10'] + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-python@v2 + with: + python-version: '3.11.0-alpha.1' + - run: pip install requests datetime argparse slack_sdk + - run: python bin/CITests/04_api_script/api_slack.py --github-token ${{ secrets.GIT_TOKEN }} --slack-token ${{ secrets.SLACK_BOT_TOKEN }} --github-repo "RWTH-EBC/AixLib" --base-branch "development" diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8d14cf31aa..8a05e5e1ce 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,58 +1,39 @@ -#!/bin/bash -image: registry.git.rwth-aachen.de/ebc/ebc_intern/dymola-docker:miniconda-latest - -stages: - - deleteBranch - - IBPSA_Merge - - Update_WhiteList - - Release - - SetSettings - - CheckSettings - - Ref_Check - - Ref_Update - - Dif_Ref - - build - - HTMLCheck - - deploy - - openMR - - post - - ChangedModels - - StyleCheck - - Check - - Simulate - - RegressionTest - - -variables: - Praefix_Branch: "Correct_HTML_" - TARGET_BRANCH: $CI_COMMIT_REF_NAME - Newbranch: ${Praefix_Branch}${CI_COMMIT_REF_NAME} - Github_Repository : RWTH-EBC/AixLib - -include: - - project: 'EBC/EBC_all/gitlab_ci/templates' - file: 'modelica-ci-tests/CheckConfiguration/check_settings.gitlab-ci.yml' - - project: 'EBC/EBC_all/gitlab_ci/templates' - file: 'modelica-ci-tests/deploy/deploy_ref.gitlab-ci.yml' - - project: 'EBC/EBC_all/gitlab_ci/templates' - file: 'modelica-ci-tests/UnitTests/development_check.gitlab-ci.yml' - - project: 'EBC/EBC_all/gitlab_ci/templates' - file: 'modelica-ci-tests/deploy/IBPSA_Merge.gitlab-ci.yml' - - project: 'EBC/EBC_all/gitlab_ci/templates' - file: 'modelica-ci-tests/UnitTests/regression_ref_check.gitlab-ci.yml' - - project: 'EBC/EBC_all/gitlab_ci/templates' - file: 'modelica-ci-tests/SyntaxTests/html_check.gitlab-ci.yml' - - project: 'EBC/EBC_all/gitlab_ci/templates' - file: 'modelica-ci-tests/SyntaxTests/style_check.gitlab-ci.yml' - - project: 'EBC/EBC_all/gitlab_ci/templates' - file: 'modelica-ci-tests/UnitTests/check_model.gitlab-ci.yml' - - project: 'EBC/EBC_all/gitlab_ci/templates' - file: 'modelica-ci-tests/UnitTests/regression_test.gitlab-ci.yml' - - project: 'EBC/EBC_all/gitlab_ci/templates' - file: 'modelica-ci-tests/UnitTests/simulate_model.gitlab-ci.yml' - - project: 'EBC/EBC_all/gitlab_ci/templates' - file: 'modelica-ci-tests/UnitTests/changed_simulate_model.gitlab-ci.yml' - - project: 'EBC/EBC_all/gitlab_ci/templates' - file: 'modelica-ci-tests/UnitTests/changed_check_model.gitlab-ci.yml' - - project: 'EBC/EBC_all/gitlab_ci/templates' - file: 'modelica-ci-tests/UnitTests/changed_regression_test.gitlab-ci.yml' \ No newline at end of file + +image: registry.git.rwth-aachen.de/ebc/ebc_intern/dymola-docker:Dymola_2022-miniconda + +stages: + - check_setting + - build_templates + - Ref_Check + - build + - HTML_Check + - IBPSA_Merge + - create_html_whitelist + - Update_WhiteList + - Release + - StyleCheck + - check + - openMR + - post + - create_whitelist + - simulate + - RegressionTest + - Update_Ref + - plot_ref + - prepare + - deploy + +variables: + Github_Repository: RWTH-EBC/AixLib + GITLAB_Page: https://ebc.pages.rwth-aachen.de/EBC_all/github_ci/AixLib + +include: + - 'bin/templates/03_ci_templates/01_deploy/gitlab_pages.gitlab-ci.yml' + - 'bin/templates/03_ci_templates/01_deploy/IBPSA_Merge.gitlab-ci.yml' + - 'bin/templates/03_ci_templates/02_UnitTests/check_model.gitlab-ci.yml' + - 'bin/templates/03_ci_templates/02_UnitTests/regression_test.gitlab-ci.yml' + - 'bin/templates/03_ci_templates/02_UnitTests/simulate_model.gitlab-ci.yml' + - 'bin/templates/03_ci_templates/03_SyntaxTest/html_check.gitlab-ci.yml' + - 'bin/templates/03_ci_templates/03_SyntaxTest/style_check.gitlab-ci.yml' + - 'bin/templates/03_ci_templates/04_CleanUpScript/ci_setting.gitlab-ci.yml' + \ No newline at end of file diff --git a/.gitmodules b/.gitmodules index fd170093ae..e69de29bb2 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,4 +0,0 @@ -[submodule "netCDF-DataReader"] - path = netCDF-DataReader - url = https://github.com/modelica-3rdparty/netCDF-DataReader - branch = master diff --git a/AixLib/.copiedFiles.txt b/AixLib/.copiedFiles.txt index fda6dcf0b6..8f67174064 100644 --- a/AixLib/.copiedFiles.txt +++ b/AixLib/.copiedFiles.txt @@ -3,20 +3,27 @@ AixLib/Airflow/Multizone/BaseClasses/Door.mo AixLib/Airflow/Multizone/BaseClasses/DoorDiscretized.mo AixLib/Airflow/Multizone/BaseClasses/ErrorControl.mo +AixLib/Airflow/Multizone/BaseClasses/Examples/Interpolate.mo AixLib/Airflow/Multizone/BaseClasses/Examples/PowerLaw.mo AixLib/Airflow/Multizone/BaseClasses/Examples/PowerLawFixedM.mo AixLib/Airflow/Multizone/BaseClasses/Examples/WindPressureLowRise.mo +AixLib/Airflow/Multizone/BaseClasses/Examples/WindPressureProfile.mo AixLib/Airflow/Multizone/BaseClasses/Examples/package.mo AixLib/Airflow/Multizone/BaseClasses/Examples/package.order -AixLib/Airflow/Multizone/BaseClasses/PowerLawResistance.mo +AixLib/Airflow/Multizone/BaseClasses/PartialOneWayFlowElement.mo +AixLib/Airflow/Multizone/BaseClasses/PowerLawResistanceParameters.mo AixLib/Airflow/Multizone/BaseClasses/TwoWayFlowElement.mo AixLib/Airflow/Multizone/BaseClasses/TwoWayFlowElementBuoyancy.mo AixLib/Airflow/Multizone/BaseClasses/ZonalFlow.mo +AixLib/Airflow/Multizone/BaseClasses/interpolate.mo AixLib/Airflow/Multizone/BaseClasses/package.mo AixLib/Airflow/Multizone/BaseClasses/package.order AixLib/Airflow/Multizone/BaseClasses/powerLaw.mo AixLib/Airflow/Multizone/BaseClasses/powerLawFixedM.mo AixLib/Airflow/Multizone/BaseClasses/windPressureLowRise.mo +AixLib/Airflow/Multizone/BaseClasses/windPressureProfile.mo +AixLib/Airflow/Multizone/Coefficient_V_flow.mo +AixLib/Airflow/Multizone/Coefficient_m_flow.mo AixLib/Airflow/Multizone/DoorDiscretizedOpen.mo AixLib/Airflow/Multizone/DoorDiscretizedOperable.mo AixLib/Airflow/Multizone/DoorOpen.mo @@ -31,19 +38,27 @@ AixLib/Airflow/Multizone/Examples/OneEffectiveAirLeakageArea.mo AixLib/Airflow/Multizone/Examples/OneOpenDoor.mo AixLib/Airflow/Multizone/Examples/OneRoom.mo AixLib/Airflow/Multizone/Examples/Orifice.mo +AixLib/Airflow/Multizone/Examples/PowerLaw.mo +AixLib/Airflow/Multizone/Examples/PressurizationData.mo AixLib/Airflow/Multizone/Examples/ReverseBuoyancy.mo AixLib/Airflow/Multizone/Examples/ReverseBuoyancy3Zones.mo +AixLib/Airflow/Multizone/Examples/TrickleVent.mo AixLib/Airflow/Multizone/Examples/ZonalFlow.mo AixLib/Airflow/Multizone/Examples/package.mo AixLib/Airflow/Multizone/Examples/package.order AixLib/Airflow/Multizone/MediumColumn.mo AixLib/Airflow/Multizone/MediumColumnDynamic.mo AixLib/Airflow/Multizone/Orifice.mo +AixLib/Airflow/Multizone/Point_m_flow.mo +AixLib/Airflow/Multizone/Points_m_flow.mo +AixLib/Airflow/Multizone/Table_V_flow.mo +AixLib/Airflow/Multizone/Table_m_flow.mo AixLib/Airflow/Multizone/Types/densitySelection.mo AixLib/Airflow/Multizone/Types/package.mo AixLib/Airflow/Multizone/Types/package.order AixLib/Airflow/Multizone/UsersGuide.mo AixLib/Airflow/Multizone/Validation/DoorOpenClosed.mo +AixLib/Airflow/Multizone/Validation/OneWayFlow.mo AixLib/Airflow/Multizone/Validation/OpenDoorBuoyancyDynamic.mo AixLib/Airflow/Multizone/Validation/OpenDoorBuoyancyPressureDynamic.mo AixLib/Airflow/Multizone/Validation/OpenDoorPressure.mo @@ -147,6 +162,7 @@ AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/ConvertTimeNegativeSt AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/ConvertTimePositiveStart.mo AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/EquationOfTime.mo AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/GetAbsolutePath.mo +AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/GetAltitudeTMY3.mo AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/GetHeaderElement.mo AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/GetTimeSpanTMY3.mo AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/GetTimeSpanTMY3LongHeader.mo @@ -170,7 +186,9 @@ AixLib/BoundaryConditions/WeatherData/BaseClasses/SolarTime.mo AixLib/BoundaryConditions/WeatherData/BaseClasses/SourceSelector.mo AixLib/BoundaryConditions/WeatherData/BaseClasses/SourceSelectorRadiation.mo AixLib/BoundaryConditions/WeatherData/BaseClasses/getAbsolutePath.mo +AixLib/BoundaryConditions/WeatherData/BaseClasses/getAltitudeLocationTMY3.mo AixLib/BoundaryConditions/WeatherData/BaseClasses/getHeaderElementTMY3.mo +AixLib/BoundaryConditions/WeatherData/BaseClasses/getLastHeaderElementTMY3.mo AixLib/BoundaryConditions/WeatherData/BaseClasses/getLatitudeTMY3.mo AixLib/BoundaryConditions/WeatherData/BaseClasses/getLongitudeTMY3.mo AixLib/BoundaryConditions/WeatherData/BaseClasses/getTimeSpanTMY3.mo @@ -198,16 +216,12 @@ AixLib/Controls/Continuous/Examples/LimPID.mo AixLib/Controls/Continuous/Examples/LimPIDWithReset.mo AixLib/Controls/Continuous/Examples/NumberOfRequests.mo AixLib/Controls/Continuous/Examples/OffTimer.mo -AixLib/Controls/Continuous/Examples/PIDHysteresis.mo -AixLib/Controls/Continuous/Examples/PIDHysteresisTimer.mo AixLib/Controls/Continuous/Examples/SignalRanker.mo AixLib/Controls/Continuous/Examples/package.mo AixLib/Controls/Continuous/Examples/package.order AixLib/Controls/Continuous/LimPID.mo AixLib/Controls/Continuous/NumberOfRequests.mo AixLib/Controls/Continuous/OffTimer.mo -AixLib/Controls/Continuous/PIDHysteresis.mo -AixLib/Controls/Continuous/PIDHysteresisTimer.mo AixLib/Controls/Continuous/SignalRanker.mo AixLib/Controls/Continuous/Validation/LimPIDReset.mo AixLib/Controls/Continuous/Validation/OffTimerNonZeroStart.mo @@ -300,6 +314,7 @@ AixLib/Fluid/Actuators/Valves/package.mo AixLib/Fluid/Actuators/Valves/package.order AixLib/Fluid/Actuators/package.mo AixLib/Fluid/Actuators/package.order +AixLib/Fluid/BaseClasses/ActuatorFilter.mo AixLib/Fluid/BaseClasses/FlowModels/Validation/BasicFlowFunction_dp_DerivativeCheck.mo AixLib/Fluid/BaseClasses/FlowModels/Validation/BasicFlowFunction_dp_DerivativeCheck2.mo AixLib/Fluid/BaseClasses/FlowModels/Validation/BasicFlowFunction_m_flow_DerivativeCheck.mo @@ -321,6 +336,7 @@ AixLib/Fluid/BaseClasses/IndexMassFraction.mo AixLib/Fluid/BaseClasses/MassFlowRateMultiplier.mo AixLib/Fluid/BaseClasses/PartialResistance.mo AixLib/Fluid/BaseClasses/PartialThreeWayResistance.mo +AixLib/Fluid/BaseClasses/Validation/ActuatorFilter.mo AixLib/Fluid/BaseClasses/Validation/MassFlowRateMultiplier.mo AixLib/Fluid/BaseClasses/Validation/package.mo AixLib/Fluid/BaseClasses/Validation/package.order @@ -485,12 +501,9 @@ AixLib/Fluid/FMI/Validation/package.order AixLib/Fluid/FMI/package.mo AixLib/Fluid/FMI/package.order AixLib/Fluid/FixedResistances/BaseClasses/PlugFlow.mo -AixLib/Fluid/FixedResistances/BaseClasses/PlugFlowCore.mo AixLib/Fluid/FixedResistances/BaseClasses/PlugFlowHeatLoss.mo +AixLib/Fluid/FixedResistances/BaseClasses/PlugFlowPipe.mo AixLib/Fluid/FixedResistances/BaseClasses/PlugFlowTransportDelay.mo -AixLib/Fluid/FixedResistances/BaseClasses/Validation/PlugFlowCore.mo -AixLib/Fluid/FixedResistances/BaseClasses/Validation/package.mo -AixLib/Fluid/FixedResistances/BaseClasses/Validation/package.order AixLib/Fluid/FixedResistances/BaseClasses/package.mo AixLib/Fluid/FixedResistances/BaseClasses/package.order AixLib/Fluid/FixedResistances/CheckValve.mo @@ -498,6 +511,7 @@ AixLib/Fluid/FixedResistances/Examples/CheckValve.mo AixLib/Fluid/FixedResistances/Examples/FlowJunction.mo AixLib/Fluid/FixedResistances/Examples/HydraulicDiameter.mo AixLib/Fluid/FixedResistances/Examples/PlugFlowPipe.mo +AixLib/Fluid/FixedResistances/Examples/PlugFlowPipeDiscretized.mo AixLib/Fluid/FixedResistances/Examples/PressureDrop.mo AixLib/Fluid/FixedResistances/Examples/package.mo AixLib/Fluid/FixedResistances/Examples/package.order @@ -505,6 +519,7 @@ AixLib/Fluid/FixedResistances/HydraulicDiameter.mo AixLib/Fluid/FixedResistances/Junction.mo AixLib/Fluid/FixedResistances/LosslessPipe.mo AixLib/Fluid/FixedResistances/PlugFlowPipe.mo +AixLib/Fluid/FixedResistances/PlugFlowPipeDiscretized.mo AixLib/Fluid/FixedResistances/PressureDrop.mo AixLib/Fluid/FixedResistances/Validation/FlowJunctionSteadyState.mo AixLib/Fluid/FixedResistances/Validation/FlowJunctionSteadyStateNoPressureDrop.mo @@ -733,10 +748,16 @@ AixLib/Fluid/HeatExchangers/BaseClasses/HANaturalCylinder.mo AixLib/Fluid/HeatExchangers/BaseClasses/PartialEffectiveness.mo AixLib/Fluid/HeatExchangers/BaseClasses/PartialEffectivenessNTU.mo AixLib/Fluid/HeatExchangers/BaseClasses/PartialPrescribedOutlet.mo +AixLib/Fluid/HeatExchangers/BaseClasses/WetCoilDryRegime.mo +AixLib/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo +AixLib/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo +AixLib/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo +AixLib/Fluid/HeatExchangers/BaseClasses/determineWaterIndex.mo AixLib/Fluid/HeatExchangers/BaseClasses/dynamicViscosityWater.mo AixLib/Fluid/HeatExchangers/BaseClasses/epsilon_C.mo AixLib/Fluid/HeatExchangers/BaseClasses/epsilon_ntuZ.mo AixLib/Fluid/HeatExchangers/BaseClasses/isobaricExpansionCoefficientWater.mo +AixLib/Fluid/HeatExchangers/BaseClasses/lmtd.mo AixLib/Fluid/HeatExchangers/BaseClasses/ntu_epsilonZ.mo AixLib/Fluid/HeatExchangers/BaseClasses/package.mo AixLib/Fluid/HeatExchangers/BaseClasses/package.order @@ -755,6 +776,7 @@ AixLib/Fluid/HeatExchangers/Examples/DryCoilEffectivenessNTUPControl.mo AixLib/Fluid/HeatExchangers/Examples/WaterCooler_T.mo AixLib/Fluid/HeatExchangers/Examples/WaterHeater_T.mo AixLib/Fluid/HeatExchangers/Examples/WaterHeater_u.mo +AixLib/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTUMassFlow.mo AixLib/Fluid/HeatExchangers/Examples/package.mo AixLib/Fluid/HeatExchangers/Examples/package.order AixLib/Fluid/HeatExchangers/HeaterCooler_u.mo @@ -773,8 +795,10 @@ AixLib/Fluid/HeatExchangers/Validation/EvaporatorCondenser.mo AixLib/Fluid/HeatExchangers/Validation/HeaterCooler_u.mo AixLib/Fluid/HeatExchangers/Validation/PrescribedOutlet.mo AixLib/Fluid/HeatExchangers/Validation/PrescribedOutlet_dynamic.mo +AixLib/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo AixLib/Fluid/HeatExchangers/Validation/package.mo AixLib/Fluid/HeatExchangers/Validation/package.order +AixLib/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo AixLib/Fluid/HeatExchangers/package.mo AixLib/Fluid/HeatExchangers/package.order AixLib/Fluid/HeatPumps/BaseClasses/PartialWaterToWater.mo @@ -1135,6 +1159,9 @@ AixLib/Fluid/Sources/Boundary_pT.mo AixLib/Fluid/Sources/Boundary_ph.mo AixLib/Fluid/Sources/Examples/MassFlowSource_WeatherData.mo AixLib/Fluid/Sources/Examples/Outside.mo +AixLib/Fluid/Sources/Examples/Outside_CpData.mo +AixLib/Fluid/Sources/Examples/Outside_CpData_Angles.mo +AixLib/Fluid/Sources/Examples/Outside_CpData_Specification.mo AixLib/Fluid/Sources/Examples/Outside_CpLowRise.mo AixLib/Fluid/Sources/Examples/PropertySource_T.mo AixLib/Fluid/Sources/Examples/PropertySource_h.mo @@ -1145,6 +1172,7 @@ AixLib/Fluid/Sources/MassFlowSource_T.mo AixLib/Fluid/Sources/MassFlowSource_WeatherData.mo AixLib/Fluid/Sources/MassFlowSource_h.mo AixLib/Fluid/Sources/Outside.mo +AixLib/Fluid/Sources/Outside_CpData.mo AixLib/Fluid/Sources/Outside_CpLowRise.mo AixLib/Fluid/Sources/PropertySource_T.mo AixLib/Fluid/Sources/PropertySource_h.mo @@ -1157,6 +1185,7 @@ AixLib/Fluid/Sources/Validation/BaseClasses/package.order AixLib/Fluid/Sources/Validation/Boundary.mo AixLib/Fluid/Sources/Validation/BoundaryWithX_in.mo AixLib/Fluid/Sources/Validation/BoundaryWithXi_in.mo +AixLib/Fluid/Sources/Validation/Outside_CpData_Directions.mo AixLib/Fluid/Sources/Validation/package.mo AixLib/Fluid/Sources/Validation/package.order AixLib/Fluid/Sources/package.mo @@ -1219,6 +1248,10 @@ AixLib/Media/Examples/BaseClasses/package.order AixLib/Media/Examples/PropyleneGlycolWaterDerivativeCheck.mo AixLib/Media/Examples/PropyleneGlycolWaterProperties.mo AixLib/Media/Examples/PropyleneGlycolWaterTemperatureEnthalpyInversion.mo +AixLib/Media/Examples/SteamDerivativeCheck.mo +AixLib/Media/Examples/SteamProperties.mo +AixLib/Media/Examples/SteamSaturationConsistencyCheck.mo +AixLib/Media/Examples/SteamTemperatureEnthalpyInversion.mo AixLib/Media/Examples/WaterDerivativeCheck.mo AixLib/Media/Examples/WaterProperties.mo AixLib/Media/Examples/WaterTemperatureEnthalpyInversion.mo @@ -1262,6 +1295,7 @@ AixLib/Media/Specialized/Water/package.mo AixLib/Media/Specialized/Water/package.order AixLib/Media/Specialized/package.mo AixLib/Media/Specialized/package.order +AixLib/Media/Steam.mo AixLib/Media/Water.mo AixLib/Media/package.mo AixLib/Media/package.order @@ -1283,11 +1317,19 @@ AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/700260.epw AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/700260.mos AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/722190.epw AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/722190.mos -AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/725650.epw -AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/725650.mos AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/855740.epw AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/855740.mos AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/README.md +AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD100.epw +AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD100.mos +AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD200.epw +AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD200.mos +AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD300.epw +AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD300.mos +AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD400.epw +AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD400.mos +AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD500.epw +AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD500.mos AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD600.epw AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD600.mos AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WeatherDriversResultsSubmittal1.json @@ -1309,7 +1351,7 @@ AixLib/Resources/Data/Fluid/FixedResistances/Validation/PlugFlowPipes/PipeDataUL AixLib/Resources/Data/Fluid/Geothermal/Borefields/HeatTransfer/Validation/Analytic_20Years.txt AixLib/Resources/Data/Fluid/Geothermal/Borefields/HeatTransfer/Validation/Beier_Smith_Spitler_2011_SandBox.txt AixLib/Resources/Data/Fluid/Geothermal/Borefields/HeatTransfer/Validation/Cimmino_Bernier_2015_SmallScale.txt -AixLib/Resources/Data/Utilities/IO/Files/Examples/CSVReader/Data.csv +AixLib/Resources/Data/Utilities/IO/Files/Examples/CSVReader/Data.txt AixLib/Resources/Documentation/userGuide/source/_static/lbl-logo.png AixLib/Resources/Images/Airflow/Multizone/BaseClasses/windPressureLowRise.odp AixLib/Resources/Images/Airflow/Multizone/BaseClasses/windPressureLowRise.png @@ -1336,9 +1378,6 @@ AixLib/Resources/Images/BoundaryConditions/zen_sun.png AixLib/Resources/Images/Controls/Continuous/Examples/NumberOfRequests.png AixLib/Resources/Images/Controls/Continuous/Examples/OffTimer1.png AixLib/Resources/Images/Controls/Continuous/Examples/OffTimer2.png -AixLib/Resources/Images/Controls/Continuous/Examples/PIDHysteresis.png -AixLib/Resources/Images/Controls/Continuous/Examples/PIDHysteresisTimerError.png -AixLib/Resources/Images/Controls/Continuous/Examples/PIDHysteresisTimerOutput.png AixLib/Resources/Images/Controls/Continuous/Examples/SignalRankerU.png AixLib/Resources/Images/Controls/Continuous/Examples/SignalRankerY.png AixLib/Resources/Images/Controls/SetPoints/Examples/OccupancySchedule.png @@ -1405,6 +1444,8 @@ AixLib/Resources/Images/Fluid/Sensors/twoPortHex.png AixLib/Resources/Images/Fluid/Sensors/twoPortHex.tiff AixLib/Resources/Images/Fluid/Sensors/warningIcon.png AixLib/Resources/Images/Fluid/Sensors/warningIcon.svg +AixLib/Resources/Images/Fluid/Sources/Outside_CpData.png +AixLib/Resources/Images/Fluid/Sources/Outside_CpData.svg AixLib/Resources/Images/Fluid/Storage/Stratified.pdf AixLib/Resources/Images/Fluid/Storage/Stratified.png AixLib/Resources/Images/Fluid/Storage/Stratified.svg @@ -1454,31 +1495,32 @@ AixLib/Resources/Images/Utilities/Math/Functions/Examples/cubicHermite.png AixLib/Resources/Images/Utilities/Math/Functions/SmoothExponentialXPower.png AixLib/Resources/Images/Utilities/Math/int.pdf AixLib/Resources/Images/Utilities/Math/int.png -AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Validation_DoorOpenClosed.txt -AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Validation_OpenDoorBuoyancyDynamic.txt -AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Validation_OpenDoorBuoyancyPressureDynamic.txt -AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Validation_OpenDoorPressure.txt -AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Validation_OpenDoorTemperature.txt -AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Validation_ThreeRoomsContamDiscretizedDoor.txt -AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_Validation_BESTEST_WD100.txt -AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_Validation_BESTEST_WD200.txt -AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_Validation_BESTEST_WD300.txt -AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_Validation_BESTEST_WD400.txt -AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_Validation_BESTEST_WD500.txt -AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_Validation_BESTEST_WD600.txt -AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_WeatherData_BaseClasses_Examples_GetTimeSpanTMY3LongHeader.txt -AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_WeatherData_BaseClasses_Examples_LimitMin.txt -AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Actuators_Dampers_Validation_PressureIndependent.txt -AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatExchangers_Validation_DryCoilEffectivenessNTU.txt -AixLib/Resources/ReferenceResults/Dymola/AixLib_Media_Antifreeze_Validation_EthyleneGlycolWater.txt -AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomFourElementsTraceSubstance.txt -AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_RoomSteadyState.txt -AixLib/Resources/ReferenceResults/Dymola/AixLib_Utilities_IO_SignalExchange_Examples_WeatherStation.txt -AixLib/Resources/ReferenceResults/Dymola/AixLib_Utilities_Math_Functions_Examples_SmoothHeavisideDerivatives.txt -AixLib/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Examples_DryCoilEffectivenessNTUPControl.txt +AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_BaseClasses_Examples_Interpolate.txt +AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_BaseClasses_Examples_WindPressureProfile.txt +AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Examples_PowerLaw.txt +AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Examples_PressurizationData.txt +AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Examples_TrickleVent.txt +AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Validation_OneWayFlow.txt +AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_WeatherData_BaseClasses_Examples_GetAltitudeTMY3.txt +AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_BaseClasses_Validation_ActuatorFilter.txt +AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FixedResistances_Examples_PlugFlowPipeDiscretized.txt +AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatExchangers_Examples_WetCoilEffectivenessNTUMassFlow.txt +AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt +AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Sources_Examples_Outside_CpData.txt +AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Sources_Examples_Outside_CpData_Angles.txt +AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Sources_Examples_Outside_CpData_Specification.txt +AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Sources_Validation_Outside_CpData_Directions.txt +AixLib/Resources/ReferenceResults/Dymola/AixLib_Media_Examples_SteamDerivativeCheck.txt +AixLib/Resources/ReferenceResults/Dymola/AixLib_Media_Examples_SteamProperties.txt +AixLib/Resources/ReferenceResults/Dymola/AixLib_Media_Examples_SteamSaturationConsistencyCheck.txt +AixLib/Resources/ReferenceResults/Dymola/AixLib_Media_Examples_SteamTemperatureEnthalpyInversion.txt +AixLib/Resources/ReferenceResults/Dymola/AixLib_Utilities_Math_Examples_Polynomial.txt +AixLib/Resources/Scripts/Conversion/ConvertIBPSA_from_3.0_to_4.0.mos +AixLib/Resources/Scripts/Dymola/Airflow/Multizone/BaseClasses/Examples/Interpolate.mos AixLib/Resources/Scripts/Dymola/Airflow/Multizone/BaseClasses/Examples/PowerLaw.mos AixLib/Resources/Scripts/Dymola/Airflow/Multizone/BaseClasses/Examples/PowerLawFixedM.mos AixLib/Resources/Scripts/Dymola/Airflow/Multizone/BaseClasses/Examples/WindPressureLowRise.mos +AixLib/Resources/Scripts/Dymola/Airflow/Multizone/BaseClasses/Examples/WindPressureProfile.mos AixLib/Resources/Scripts/Dymola/Airflow/Multizone/Examples/CO2TransportStep.mos AixLib/Resources/Scripts/Dymola/Airflow/Multizone/Examples/ChimneyShaftNoVolume.mos AixLib/Resources/Scripts/Dymola/Airflow/Multizone/Examples/ChimneyShaftWithVolume.mos @@ -1488,10 +1530,14 @@ AixLib/Resources/Scripts/Dymola/Airflow/Multizone/Examples/OneEffectiveAirLeakag AixLib/Resources/Scripts/Dymola/Airflow/Multizone/Examples/OneOpenDoor.mos AixLib/Resources/Scripts/Dymola/Airflow/Multizone/Examples/OneRoom.mos AixLib/Resources/Scripts/Dymola/Airflow/Multizone/Examples/Orifice.mos +AixLib/Resources/Scripts/Dymola/Airflow/Multizone/Examples/PowerLaw.mos +AixLib/Resources/Scripts/Dymola/Airflow/Multizone/Examples/PressurizationData.mos AixLib/Resources/Scripts/Dymola/Airflow/Multizone/Examples/ReverseBuoyancy.mos AixLib/Resources/Scripts/Dymola/Airflow/Multizone/Examples/ReverseBuoyancy3Zones.mos +AixLib/Resources/Scripts/Dymola/Airflow/Multizone/Examples/TrickleVent.mos AixLib/Resources/Scripts/Dymola/Airflow/Multizone/Examples/ZonalFlow.mos AixLib/Resources/Scripts/Dymola/Airflow/Multizone/Validation/DoorOpenClosed.mos +AixLib/Resources/Scripts/Dymola/Airflow/Multizone/Validation/OneWayFlow.mos AixLib/Resources/Scripts/Dymola/Airflow/Multizone/Validation/OpenDoorBuoyancyDynamic.mos AixLib/Resources/Scripts/Dymola/Airflow/Multizone/Validation/OpenDoorBuoyancyPressureDynamic.mos AixLib/Resources/Scripts/Dymola/Airflow/Multizone/Validation/OpenDoorPressure.mos @@ -1530,6 +1576,7 @@ AixLib/Resources/Scripts/Dymola/BoundaryConditions/WeatherData/BaseClasses/Examp AixLib/Resources/Scripts/Dymola/BoundaryConditions/WeatherData/BaseClasses/Examples/ConvertTimePositiveStart.mos AixLib/Resources/Scripts/Dymola/BoundaryConditions/WeatherData/BaseClasses/Examples/EquationOfTime.mos AixLib/Resources/Scripts/Dymola/BoundaryConditions/WeatherData/BaseClasses/Examples/GetAbsolutePath.mos +AixLib/Resources/Scripts/Dymola/BoundaryConditions/WeatherData/BaseClasses/Examples/GetAltitudeTMY3.mos AixLib/Resources/Scripts/Dymola/BoundaryConditions/WeatherData/BaseClasses/Examples/GetHeaderElement.mos AixLib/Resources/Scripts/Dymola/BoundaryConditions/WeatherData/BaseClasses/Examples/GetTimeSpanTMY3.mos AixLib/Resources/Scripts/Dymola/BoundaryConditions/WeatherData/BaseClasses/Examples/GetTimeSpanTMY3LongHeader.mos @@ -1548,8 +1595,6 @@ AixLib/Resources/Scripts/Dymola/Controls/Continuous/Examples/LimPID.mos AixLib/Resources/Scripts/Dymola/Controls/Continuous/Examples/LimPIDWithReset.mos AixLib/Resources/Scripts/Dymola/Controls/Continuous/Examples/NumberOfRequests.mos AixLib/Resources/Scripts/Dymola/Controls/Continuous/Examples/OffTimer.mos -AixLib/Resources/Scripts/Dymola/Controls/Continuous/Examples/PIDHysteresis.mos -AixLib/Resources/Scripts/Dymola/Controls/Continuous/Examples/PIDHysteresisTimer.mos AixLib/Resources/Scripts/Dymola/Controls/Continuous/Examples/SignalRanker.mos AixLib/Resources/Scripts/Dymola/Controls/Continuous/Validation/LimPIDReset.mos AixLib/Resources/Scripts/Dymola/Controls/Continuous/Validation/OffTimerNonZeroStart.mos @@ -1580,6 +1625,7 @@ AixLib/Resources/Scripts/Dymola/Fluid/BaseClasses/FlowModels/Validation/BasicFlo AixLib/Resources/Scripts/Dymola/Fluid/BaseClasses/FlowModels/Validation/InverseFlowFunctions.mos AixLib/Resources/Scripts/Dymola/Fluid/BaseClasses/FlowModels/Validation/InvertingBasicFlowFunction_dp.mos AixLib/Resources/Scripts/Dymola/Fluid/BaseClasses/FlowModels/Validation/InvertingBasicFlowFunction_m_flow.mos +AixLib/Resources/Scripts/Dymola/Fluid/BaseClasses/Validation/ActuatorFilter.mos AixLib/Resources/Scripts/Dymola/Fluid/BaseClasses/Validation/MassFlowRateMultiplier.mos AixLib/Resources/Scripts/Dymola/Fluid/Chillers/Examples/Carnot_TEva.mos AixLib/Resources/Scripts/Dymola/Fluid/Chillers/Examples/Carnot_y.mos @@ -1660,11 +1706,11 @@ AixLib/Resources/Scripts/Dymola/Fluid/FMI/Validation/FlowSplitter_u.mos AixLib/Resources/Scripts/Dymola/Fluid/FMI/Validation/HeaterFan.mos AixLib/Resources/Scripts/Dymola/Fluid/FMI/Validation/HeaterFanPressureDriven.mos AixLib/Resources/Scripts/Dymola/Fluid/FMI/Validation/HeaterFan_noReverseFlow.mos -AixLib/Resources/Scripts/Dymola/Fluid/FixedResistances/BaseClasses/Validation/PlugFlowCore.mos AixLib/Resources/Scripts/Dymola/Fluid/FixedResistances/Examples/CheckValve.mos AixLib/Resources/Scripts/Dymola/Fluid/FixedResistances/Examples/FlowJunction.mos AixLib/Resources/Scripts/Dymola/Fluid/FixedResistances/Examples/HydraulicDiameter.mos AixLib/Resources/Scripts/Dymola/Fluid/FixedResistances/Examples/PlugFlowPipe.mos +AixLib/Resources/Scripts/Dymola/Fluid/FixedResistances/Examples/PlugFlowPipeDiscretized.mos AixLib/Resources/Scripts/Dymola/Fluid/FixedResistances/Examples/PressureDrop.mos AixLib/Resources/Scripts/Dymola/Fluid/FixedResistances/Validation/FlowJunctionSteadyState.mos AixLib/Resources/Scripts/Dymola/Fluid/FixedResistances/Validation/FlowJunctionSteadyStateNoPressureDrop.mos @@ -1738,6 +1784,7 @@ AixLib/Resources/Scripts/Dymola/Fluid/HeatExchangers/Examples/DryCoilEffectivene AixLib/Resources/Scripts/Dymola/Fluid/HeatExchangers/Examples/WaterCooler_T.mos AixLib/Resources/Scripts/Dymola/Fluid/HeatExchangers/Examples/WaterHeater_T.mos AixLib/Resources/Scripts/Dymola/Fluid/HeatExchangers/Examples/WaterHeater_u.mos +AixLib/Resources/Scripts/Dymola/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTUMassFlow.mos AixLib/Resources/Scripts/Dymola/Fluid/HeatExchangers/Radiators/Examples/RadiatorEN442_2.mos AixLib/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/ConstantEffectiveness.mos AixLib/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/DryCoilEffectivenessNTU.mos @@ -1745,6 +1792,7 @@ AixLib/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/EvaporatorConden AixLib/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/HeaterCooler_u.mos AixLib/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/PrescribedOutlet.mos AixLib/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/PrescribedOutlet_dynamic.mos +AixLib/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos AixLib/Resources/Scripts/Dymola/Fluid/HeatPumps/Calibration/ScrollWaterToWater.mos AixLib/Resources/Scripts/Dymola/Fluid/HeatPumps/Compressors/BaseClasses/Validation/TemperatureProtection.mos AixLib/Resources/Scripts/Dymola/Fluid/HeatPumps/Compressors/Validation/ReciprocatingCompressor.mos @@ -1860,6 +1908,9 @@ AixLib/Resources/Scripts/Dymola/Fluid/Sensors/Examples/Velocity.mos AixLib/Resources/Scripts/Dymola/Fluid/Sensors/Examples/VolumeFlowRate.mos AixLib/Resources/Scripts/Dymola/Fluid/Sources/Examples/MassFlowSource_WeatherData.mos AixLib/Resources/Scripts/Dymola/Fluid/Sources/Examples/Outside.mos +AixLib/Resources/Scripts/Dymola/Fluid/Sources/Examples/Outside_CpData.mos +AixLib/Resources/Scripts/Dymola/Fluid/Sources/Examples/Outside_CpData_Angles.mos +AixLib/Resources/Scripts/Dymola/Fluid/Sources/Examples/Outside_CpData_Specification.mos AixLib/Resources/Scripts/Dymola/Fluid/Sources/Examples/Outside_CpLowRise.mos AixLib/Resources/Scripts/Dymola/Fluid/Sources/Examples/PropertySource_T.mos AixLib/Resources/Scripts/Dymola/Fluid/Sources/Examples/PropertySource_h.mos @@ -1867,6 +1918,7 @@ AixLib/Resources/Scripts/Dymola/Fluid/Sources/Examples/TraceSubstancesFlowSource AixLib/Resources/Scripts/Dymola/Fluid/Sources/Validation/Boundary.mos AixLib/Resources/Scripts/Dymola/Fluid/Sources/Validation/BoundaryWithX_in.mos AixLib/Resources/Scripts/Dymola/Fluid/Sources/Validation/BoundaryWithXi_in.mos +AixLib/Resources/Scripts/Dymola/Fluid/Sources/Validation/Outside_CpData_Directions.mos AixLib/Resources/Scripts/Dymola/Fluid/Storage/BaseClasses/Examples/IndirectTankHeatExchanger.mos AixLib/Resources/Scripts/Dymola/Fluid/Storage/Examples/ExpansionVessel.mos AixLib/Resources/Scripts/Dymola/Fluid/Storage/Examples/Stratified.mos @@ -1884,6 +1936,10 @@ AixLib/Resources/Scripts/Dymola/Media/Examples/AirTemperatureEnthalpyInversion.m AixLib/Resources/Scripts/Dymola/Media/Examples/PropyleneGlycolWaterDerivativeCheck.mos AixLib/Resources/Scripts/Dymola/Media/Examples/PropyleneGlycolWaterProperties.mos AixLib/Resources/Scripts/Dymola/Media/Examples/PropyleneGlycolWaterTemperatureEnthalpyInversion.mos +AixLib/Resources/Scripts/Dymola/Media/Examples/SteamDerivativeCheck.mos +AixLib/Resources/Scripts/Dymola/Media/Examples/SteamProperties.mos +AixLib/Resources/Scripts/Dymola/Media/Examples/SteamSaturationConsistencyCheck.mos +AixLib/Resources/Scripts/Dymola/Media/Examples/SteamTemperatureEnthalpyInversion.mos AixLib/Resources/Scripts/Dymola/Media/Examples/WaterDerivativeCheck.mos AixLib/Resources/Scripts/Dymola/Media/Examples/WaterProperties.mos AixLib/Resources/Scripts/Dymola/Media/Examples/WaterTemperatureEnthalpyInversion.mos @@ -1936,7 +1992,7 @@ AixLib/Resources/Scripts/Dymola/Utilities/Math/Examples/FallingFactorial.mos AixLib/Resources/Scripts/Dymola/Utilities/Math/Examples/IntegerReplicator.mos AixLib/Resources/Scripts/Dymola/Utilities/Math/Examples/IntegratorWithReset.mos AixLib/Resources/Scripts/Dymola/Utilities/Math/Examples/InverseXRegularized.mos -AixLib/Resources/Scripts/Dymola/Utilities/Math/Examples/Polynominal.mos +AixLib/Resources/Scripts/Dymola/Utilities/Math/Examples/Polynomial.mos AixLib/Resources/Scripts/Dymola/Utilities/Math/Examples/PowerLinearized.mos AixLib/Resources/Scripts/Dymola/Utilities/Math/Examples/QuadraticLinear.mos AixLib/Resources/Scripts/Dymola/Utilities/Math/Examples/RegNonZeroPower.mos @@ -2001,8 +2057,8 @@ AixLib/Resources/Scripts/Dymola/Utilities/Time/Validation/CalendarTimeMonths.mos AixLib/Resources/Scripts/Dymola/Utilities/Time/Validation/CalendarTimeMonthsMinus.mos AixLib/Resources/Scripts/Dymola/Utilities/Time/Validation/CalendarTimeMonthsPlus.mos AixLib/Resources/Scripts/JModelica/buildingspy_to_csv.py -AixLib/Resources/Scripts/github-actions/jmodelica/jm_ipython.sh AixLib/Resources/Scripts/travis/dymola/dymola +AixLib/Resources/Scripts/travis/omc/omc AixLib/Resources/bin/ConvertWeatherData.jar AixLib/Resources/src/convertEPW/Makefile AixLib/Resources/src/convertEPW/doc/ConvertWeatherData.html @@ -2061,7 +2117,47 @@ AixLib/Resources/src/convertEPW/src/ConvertWeatherData.java AixLib/Resources/src/convertEPW/src/Makefile AixLib/Resources/src/convertEPW/src/Manifest.txt AixLib/Resources/src/fluid/heatpumps/calibration/Examples/SomeManufacturer_ABC060_70kW_4_0COP_R410A.mo -AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/language_data.js +AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootstrap-3.4.1/css/bootstrap-theme.css +AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootstrap-3.4.1/css/bootstrap-theme.css.map +AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootstrap-3.4.1/css/bootstrap-theme.min.css +AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootstrap-3.4.1/css/bootstrap-theme.min.css.map +AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootstrap-3.4.1/css/bootstrap.css +AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootstrap-3.4.1/css/bootstrap.css.map +AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootstrap-3.4.1/css/bootstrap.min.css +AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootstrap-3.4.1/css/bootstrap.min.css.map +AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootstrap-3.4.1/fonts/glyphicons-halflings-regular.eot +AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootstrap-3.4.1/fonts/glyphicons-halflings-regular.svg +AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootstrap-3.4.1/fonts/glyphicons-halflings-regular.ttf +AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootstrap-3.4.1/fonts/glyphicons-halflings-regular.woff +AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootstrap-3.4.1/fonts/glyphicons-halflings-regular.woff2 +AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootstrap-3.4.1/js/bootstrap.js +AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootstrap-3.4.1/js/bootstrap.min.js +AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootstrap-3.4.1/js/npm.js +AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootswatch-3.4.1/cerulean/bootstrap.min.css +AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootswatch-3.4.1/cosmo/bootstrap.min.css +AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootswatch-3.4.1/cyborg/bootstrap.min.css +AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootswatch-3.4.1/darkly/bootstrap.min.css +AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootswatch-3.4.1/flatly/bootstrap.min.css +AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootswatch-3.4.1/fonts/glyphicons-halflings-regular.eot +AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootswatch-3.4.1/fonts/glyphicons-halflings-regular.svg +AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootswatch-3.4.1/fonts/glyphicons-halflings-regular.ttf +AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootswatch-3.4.1/fonts/glyphicons-halflings-regular.woff +AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootswatch-3.4.1/fonts/glyphicons-halflings-regular.woff2 +AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootswatch-3.4.1/journal/bootstrap.min.css +AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootswatch-3.4.1/lumen/bootstrap.min.css +AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootswatch-3.4.1/paper/bootstrap.min.css +AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootswatch-3.4.1/readable/bootstrap.min.css +AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootswatch-3.4.1/sandstone/bootstrap.min.css +AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootswatch-3.4.1/simplex/bootstrap.min.css +AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootswatch-3.4.1/slate/bootstrap.min.css +AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootswatch-3.4.1/spacelab/bootstrap.min.css +AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootswatch-3.4.1/superhero/bootstrap.min.css +AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootswatch-3.4.1/united/bootstrap.min.css +AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootswatch-3.4.1/yeti/bootstrap.min.css +AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/jquery-3.5.1.js +AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/js/jquery-1.12.4.min.js +AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/underscore-1.13.1.js +AixLib/Resources/src/fluid/heatpumps/calibration/doc/requirements.txt AixLib/Resources/weatherdata/USA_CA_San.Francisco.Intl.AP.724940_TMY3.epw AixLib/Resources/weatherdata/USA_CA_San.Francisco.Intl.AP.724940_TMY3.mos AixLib/Resources/weatherdata/USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw @@ -2211,7 +2307,7 @@ AixLib/Utilities/Math/Examples/FallingFactorial.mo AixLib/Utilities/Math/Examples/IntegerReplicator.mo AixLib/Utilities/Math/Examples/IntegratorWithReset.mo AixLib/Utilities/Math/Examples/InverseXRegularized.mo -AixLib/Utilities/Math/Examples/Polynominal.mo +AixLib/Utilities/Math/Examples/Polynomial.mo AixLib/Utilities/Math/Examples/PowerLinearized.mo AixLib/Utilities/Math/Examples/QuadraticLinear.mo AixLib/Utilities/Math/Examples/RegNonZeroPower.mo @@ -2300,7 +2396,7 @@ AixLib/Utilities/Math/IntegratorWithReset.mo AixLib/Utilities/Math/InverseXRegularized.mo AixLib/Utilities/Math/Max.mo AixLib/Utilities/Math/Min.mo -AixLib/Utilities/Math/Polynominal.mo +AixLib/Utilities/Math/Polynomial.mo AixLib/Utilities/Math/PowerLinearized.mo AixLib/Utilities/Math/QuadraticLinear.mo AixLib/Utilities/Math/RegNonZeroPower.mo @@ -2381,6 +2477,7 @@ AixLib/Utilities/Psychrometrics/ToDryAir.mo AixLib/Utilities/Psychrometrics/ToTotalAir.mo AixLib/Utilities/Psychrometrics/X_pTphi.mo AixLib/Utilities/Psychrometrics/X_pW.mo +AixLib/Utilities/Psychrometrics/hSat_pTSat.mo AixLib/Utilities/Psychrometrics/pW_TDewPoi.mo AixLib/Utilities/Psychrometrics/pW_X.mo AixLib/Utilities/Psychrometrics/package.mo diff --git a/AixLib/Airflow/AirCurtain/AirCurtainSimplified.mo b/AixLib/Airflow/AirCurtain/AirCurtainSimplified.mo index 9baefc1052..9dcc9a967c 100644 --- a/AixLib/Airflow/AirCurtain/AirCurtainSimplified.mo +++ b/AixLib/Airflow/AirCurtain/AirCurtainSimplified.mo @@ -1,19 +1,18 @@ within AixLib.Airflow.AirCurtain; model AirCurtainSimplified "Ideal model for the usage of an air curtain in the context of low order retail zones" - parameter Modelica.SIunits.VolumeFlowRate V_flowAirCur = 5 + parameter Modelica.Units.SI.VolumeFlowRate V_flowAirCur=5 "Design volume flow rate of the air curtain"; - parameter Modelica.SIunits.TemperatureDifference TAddAirCur = 5 + parameter Modelica.Units.SI.TemperatureDifference TAddAirCur=5 "Temperature increase over the air curtain"; parameter Real etaAirCur = 0.73 "Efficiency of the air curtain"; - parameter Modelica.SIunits.Density rho = 1.25 - "Air density"; - parameter Modelica.SIunits.SpecificHeatCapacity c = 1000 + parameter Modelica.Units.SI.Density rho=1.25 "Air density"; + parameter Modelica.Units.SI.SpecificHeatCapacity c=1000 "Specific heat capacity of air"; - parameter Modelica.SIunits.Temperature TBou = 287.15 + parameter Modelica.Units.SI.Temperature TBou=287.15 "Threshold of the ambient temperature when aircurtain becomes active"; - parameter Modelica.SIunits.Power PAirCur = 27500 + parameter Modelica.Units.SI.Power PAirCur=27500 "The thermal Power of the air curtain, simplified use"; Utilities.Psychrometrics.MixedTemperature mixedTemperature annotation (Placement(transformation(extent={{-6,-10},{14,10}}))); diff --git a/AixLib/Airflow/AirHandlingUnit/AHU.mo b/AixLib/Airflow/AirHandlingUnit/AHU.mo index cc946d63bb..d496fd4c40 100644 --- a/AixLib/Airflow/AirHandlingUnit/AHU.mo +++ b/AixLib/Airflow/AirHandlingUnit/AHU.mo @@ -1,4 +1,4 @@ -within AixLib.Airflow.AirHandlingUnit; +within AixLib.Airflow.AirHandlingUnit; model AHU "Air Handling Unit with Heat Recovery System, Cooling, Heating, Humidification (adiabatic), Dehumidification" extends AixLib.Airflow.AirHandlingUnit.BaseClasses.PartialAHU; @@ -43,57 +43,60 @@ model AHU "efficiency of HRS in the AHU modes when HRS is disabled"; inner Real phi_t(start=0.5); - inner Modelica.SIunits.Temp_K T_oda;//(start=288.15); - inner Modelica.SIunits.Temp_K T_1(start=290.15); - inner Modelica.SIunits.Temp_K T_5(start=293.15); - inner Modelica.SIunits.Temp_K T_sup(start=295.15); - inner Modelica.SIunits.Temp_K T_eta(start=296.15); - inner Modelica.SIunits.Temp_K T_6;//(start=296.15); - - inner Modelica.SIunits.MassFraction X_oda(start=0.007); - Modelica.SIunits.MassFraction X_odaSat(start=0.007); - Modelica.SIunits.MassFraction X_odaRaw(start=0.007); - inner Modelica.SIunits.MassFraction X_sup(start=0.008); - Modelica.SIunits.MassFraction X_supplyMin(start=0.006); - Modelica.SIunits.MassFraction X_supplyMax(start=0.010); - inner Modelica.SIunits.MassFraction X_supMin(start=0.006); - inner Modelica.SIunits.MassFraction X_supMax(start=0.010); - Modelica.SIunits.MassFraction X_extractAir(start=0.008); - Modelica.SIunits.MassFraction X_eta(start=0.008); + inner Modelica.Units.SI.Temperature T_oda; + //(start=288.15); + inner Modelica.Units.SI.Temperature T_1(start=290.15); + inner Modelica.Units.SI.Temperature T_5(start=293.15); + inner Modelica.Units.SI.Temperature T_sup(start=295.15); + inner Modelica.Units.SI.Temperature T_eta(start=296.15); + inner Modelica.Units.SI.Temperature T_6; + //(start=296.15); + + inner Modelica.Units.SI.MassFraction X_oda(start=0.007); + Modelica.Units.SI.MassFraction X_odaSat(start=0.007); + Modelica.Units.SI.MassFraction X_odaRaw(start=0.007); + inner Modelica.Units.SI.MassFraction X_sup(start=0.008); + Modelica.Units.SI.MassFraction X_supplyMin(start=0.006); + Modelica.Units.SI.MassFraction X_supplyMax(start=0.010); + inner Modelica.Units.SI.MassFraction X_supMin(start=0.006); + inner Modelica.Units.SI.MassFraction X_supMax(start=0.010); + Modelica.Units.SI.MassFraction X_extractAir(start=0.008); + Modelica.Units.SI.MassFraction X_eta(start=0.008); Real phi_sup(start=0.5); - inner Modelica.SIunits.HeatFlowRate Q_dot_C(start=1e-3); - inner Modelica.SIunits.HeatFlowRate Q_dot_H(start=1e-3); - Modelica.SIunits.Power P_el_sup(start=1e-3); - Modelica.SIunits.Power P_el_eta(start=1e-3); - inner Modelica.SIunits.VolumeFlowRate V_dot_sup(start=1e-3); - inner Modelica.SIunits.VolumeFlowRate V_dot_eta(start=1e-3); + inner Modelica.Units.SI.HeatFlowRate Q_dot_C(start=1e-3); + inner Modelica.Units.SI.HeatFlowRate Q_dot_H(start=1e-3); + Modelica.Units.SI.Power P_el_sup(start=1e-3); + Modelica.Units.SI.Power P_el_eta(start=1e-3); + inner Modelica.Units.SI.VolumeFlowRate V_dot_sup(start=1e-3); + inner Modelica.Units.SI.VolumeFlowRate V_dot_eta(start=1e-3); // Constants from formulas collection of Thermodynamik (institute: LTT) - constant Modelica.SIunits.SpecificHeatCapacityAtConstantPressure c_pL_iG=1E3; - constant Modelica.SIunits.SpecificHeatCapacityAtConstantPressure c_pW_iG=1.86E3; - constant Modelica.SIunits.SpecificEnthalpy r_0=2465E3 + constant Modelica.Units.SI.SpecificHeatCapacityAtConstantPressure c_pL_iG=1E3; + constant Modelica.Units.SI.SpecificHeatCapacityAtConstantPressure c_pW_iG= + 1.86E3; + constant Modelica.Units.SI.SpecificEnthalpy r_0=2465E3 "enthalpy of vaporization at temperature between T_dew(X_sup=0.008)=11 degC and T_sup = 22 degC"; - constant Modelica.SIunits.Density rho=1.2; - constant Modelica.SIunits.Pressure p_0=101325; - constant Modelica.SIunits.SpecificEnthalpy dhV=2501.3E3; - constant Modelica.SIunits.Temp_K T_0=273.15; + constant Modelica.Units.SI.Density rho=1.2; + constant Modelica.Units.SI.Pressure p_0=101325; + constant Modelica.Units.SI.SpecificEnthalpy dhV=2501.3E3; + constant Modelica.Units.SI.Temperature T_0=273.15; constant Real molarMassRatio=Modelica.Media.IdealGases.Common.SingleGasesData.H2O.MM /Modelica.Media.Air.SimpleAir.MM_const; // auxiliary variable - Modelica.SIunits.TemperatureDifference dTFan; - Modelica.SIunits.Temp_K TsupplyAirOut(start=295.15); + Modelica.Units.SI.TemperatureDifference dTFan; + Modelica.Units.SI.Temperature TsupplyAirOut(start=295.15); // Sampler (time-continous to time-discrete variables) - Modelica_Synchronous.RealSignals.Sampler.SampleVectorizedAndClocked sample(n=9) + Modelica.Clocked.RealSignals.Sampler.SampleVectorizedAndClocked sample(n=9) annotation (Placement(transformation( extent={{-10,-10},{10,10}}, rotation=-90, origin={-66,14}))); - Modelica_Synchronous.ClockSignals.Clocks.PeriodicRealClock periodicClock( + Modelica.Clocked.ClockSignals.Clocks.PeriodicRealClock periodicClock( solverMethod="ExplicitRungeKutta4", useSolver=true, period=clockPeriodGeneric) @@ -107,8 +110,8 @@ model AHU //Start State block StartState - outer output Modelica.SIunits.HeatFlowRate Q_dot_C; - outer output Modelica.SIunits.HeatFlowRate Q_dot_H; + outer output Modelica.Units.SI.HeatFlowRate Q_dot_C; + outer output Modelica.Units.SI.HeatFlowRate Q_dot_H; equation Q_dot_C = previous(Q_dot_C); @@ -138,30 +141,30 @@ model AHU // Dehumidification block DeHuHRS_true - outer output Modelica.SIunits.HeatFlowRate Q_dot_C; - outer output Modelica.SIunits.HeatFlowRate Q_dot_H; - outer input Modelica.SIunits.Temp_K T_oda; - outer input Modelica.SIunits.Temp_K T_1; - Modelica.SIunits.Temp_K T_2(start=290); - Modelica.SIunits.Temp_K T_3(start=282); - Modelica.SIunits.Temp_K T_4(start=282); - outer input Modelica.SIunits.Temp_K T_5; - outer input Modelica.SIunits.Temp_K T_6; - outer input Modelica.SIunits.MassFraction X_oda; - outer input Modelica.SIunits.MassFraction X_supMax; - outer output Modelica.SIunits.MassFraction X_sup; - outer input Modelica.SIunits.VolumeFlowRate V_dot_sup; + outer output Modelica.Units.SI.HeatFlowRate Q_dot_C; + outer output Modelica.Units.SI.HeatFlowRate Q_dot_H; + outer input Modelica.Units.SI.Temperature T_oda; + outer input Modelica.Units.SI.Temperature T_1; + Modelica.Units.SI.Temperature T_2(start=290); + Modelica.Units.SI.Temperature T_3(start=282); + Modelica.Units.SI.Temperature T_4(start=282); + outer input Modelica.Units.SI.Temperature T_5; + outer input Modelica.Units.SI.Temperature T_6; + outer input Modelica.Units.SI.MassFraction X_oda; + outer input Modelica.Units.SI.MassFraction X_supMax; + outer output Modelica.Units.SI.MassFraction X_sup; + outer input Modelica.Units.SI.VolumeFlowRate V_dot_sup; outer output Real phi_t; outer input Real phi_t_withHRS; outer parameter Real BPF_DeHu; - Modelica.SIunits.SpecificEnthalpy h_2(start=0.003) "h_in of cooler"; - Modelica.SIunits.SpecificEnthalpy h_surface(start=0.002) + Modelica.Units.SI.SpecificEnthalpy h_2(start=0.003) "h_in of cooler"; + Modelica.Units.SI.SpecificEnthalpy h_surface(start=0.002) "h_surface of cooler"; - Modelica.SIunits.SpecificEnthalpy h_CoilOut(start=0.001) "h_out of cooler"; - Modelica.SIunits.Pressure p_sat_surface(start=2300); - Modelica.SIunits.MassFraction X_surface(start=0.005); - Modelica.SIunits.Temp_K T_surface(start=280); - Modelica.SIunits.Temp_K T_CoilOut(start=278); + Modelica.Units.SI.SpecificEnthalpy h_CoilOut(start=0.001) "h_out of cooler"; + Modelica.Units.SI.Pressure p_sat_surface(start=2300); + Modelica.Units.SI.MassFraction X_surface(start=0.005); + Modelica.Units.SI.Temperature T_surface(start=280); + Modelica.Units.SI.Temperature T_CoilOut(start=278); equation phi_t = phi_t_withHRS "heat recovery system is enabled"; @@ -223,30 +226,30 @@ model AHU // block DeHuHRS_false - outer output Modelica.SIunits.HeatFlowRate Q_dot_C; - outer output Modelica.SIunits.HeatFlowRate Q_dot_H; - outer input Modelica.SIunits.Temp_K T_oda; - outer input Modelica.SIunits.Temp_K T_1; - Modelica.SIunits.Temp_K T_2(start=290); - Modelica.SIunits.Temp_K T_3(start=282); - Modelica.SIunits.Temp_K T_4(start=282); - outer input Modelica.SIunits.Temp_K T_5; - outer input Modelica.SIunits.Temp_K T_6; - outer input Modelica.SIunits.MassFraction X_oda; - outer input Modelica.SIunits.MassFraction X_supMax; - outer output Modelica.SIunits.MassFraction X_sup; - outer input Modelica.SIunits.VolumeFlowRate V_dot_sup; + outer output Modelica.Units.SI.HeatFlowRate Q_dot_C; + outer output Modelica.Units.SI.HeatFlowRate Q_dot_H; + outer input Modelica.Units.SI.Temperature T_oda; + outer input Modelica.Units.SI.Temperature T_1; + Modelica.Units.SI.Temperature T_2(start=290); + Modelica.Units.SI.Temperature T_3(start=282); + Modelica.Units.SI.Temperature T_4(start=282); + outer input Modelica.Units.SI.Temperature T_5; + outer input Modelica.Units.SI.Temperature T_6; + outer input Modelica.Units.SI.MassFraction X_oda; + outer input Modelica.Units.SI.MassFraction X_supMax; + outer output Modelica.Units.SI.MassFraction X_sup; + outer input Modelica.Units.SI.VolumeFlowRate V_dot_sup; outer output Real phi_t; outer input Real phi_t_withoutHRS; outer parameter Real BPF_DeHu; - Modelica.SIunits.SpecificEnthalpy h_2(start=0.003) "h_in of cooler"; - Modelica.SIunits.SpecificEnthalpy h_surface(start=0.002) + Modelica.Units.SI.SpecificEnthalpy h_2(start=0.003) "h_in of cooler"; + Modelica.Units.SI.SpecificEnthalpy h_surface(start=0.002) "h_surface of cooler"; - Modelica.SIunits.SpecificEnthalpy h_CoilOut(start=0.001) "h_out of cooler"; - Modelica.SIunits.Pressure p_sat_surface(start=2300); - Modelica.SIunits.MassFraction X_surface(start=0.005); - Modelica.SIunits.Temp_K T_surface(start=280); - Modelica.SIunits.Temp_K T_CoilOut(start=278); + Modelica.Units.SI.SpecificEnthalpy h_CoilOut(start=0.001) "h_out of cooler"; + Modelica.Units.SI.Pressure p_sat_surface(start=2300); + Modelica.Units.SI.MassFraction X_surface(start=0.005); + Modelica.Units.SI.Temperature T_surface(start=280); + Modelica.Units.SI.Temperature T_CoilOut(start=278); equation phi_t = phi_t_withoutHRS "heat recovery system is disabled"; @@ -309,16 +312,16 @@ model AHU // Humidification block HuPreHHRS_true - outer output Modelica.SIunits.HeatFlowRate Q_dot_C; - outer output Modelica.SIunits.HeatFlowRate Q_dot_H; - outer input Modelica.SIunits.Temp_K T_oda; - outer input Modelica.SIunits.Temp_K T_1; - outer input Modelica.SIunits.Temp_K T_5; - outer input Modelica.SIunits.Temp_K T_6; - outer input Modelica.SIunits.MassFraction X_oda; - outer input Modelica.SIunits.MassFraction X_supMin; - outer output Modelica.SIunits.MassFraction X_sup; - outer input Modelica.SIunits.VolumeFlowRate V_dot_sup; + outer output Modelica.Units.SI.HeatFlowRate Q_dot_C; + outer output Modelica.Units.SI.HeatFlowRate Q_dot_H; + outer input Modelica.Units.SI.Temperature T_oda; + outer input Modelica.Units.SI.Temperature T_1; + outer input Modelica.Units.SI.Temperature T_5; + outer input Modelica.Units.SI.Temperature T_6; + outer input Modelica.Units.SI.MassFraction X_oda; + outer input Modelica.Units.SI.MassFraction X_supMin; + outer output Modelica.Units.SI.MassFraction X_sup; + outer input Modelica.Units.SI.VolumeFlowRate V_dot_sup; outer output Real phi_t; outer input Real phi_t_withHRS; @@ -356,16 +359,16 @@ model AHU // block HuPreHHRS_false - outer output Modelica.SIunits.HeatFlowRate Q_dot_C; - outer output Modelica.SIunits.HeatFlowRate Q_dot_H; - outer input Modelica.SIunits.Temp_K T_oda; - outer input Modelica.SIunits.Temp_K T_1; - outer input Modelica.SIunits.Temp_K T_5; - outer input Modelica.SIunits.Temp_K T_6; - outer input Modelica.SIunits.MassFraction X_oda; - outer input Modelica.SIunits.MassFraction X_supMin; - outer output Modelica.SIunits.MassFraction X_sup; - outer input Modelica.SIunits.VolumeFlowRate V_dot_sup; + outer output Modelica.Units.SI.HeatFlowRate Q_dot_C; + outer output Modelica.Units.SI.HeatFlowRate Q_dot_H; + outer input Modelica.Units.SI.Temperature T_oda; + outer input Modelica.Units.SI.Temperature T_1; + outer input Modelica.Units.SI.Temperature T_5; + outer input Modelica.Units.SI.Temperature T_6; + outer input Modelica.Units.SI.MassFraction X_oda; + outer input Modelica.Units.SI.MassFraction X_supMin; + outer output Modelica.Units.SI.MassFraction X_sup; + outer input Modelica.Units.SI.VolumeFlowRate V_dot_sup; outer output Real phi_t; outer input Real phi_t_withoutHRS; @@ -403,19 +406,19 @@ model AHU // block HuCHRS_true - outer output Modelica.SIunits.HeatFlowRate Q_dot_C; - outer output Modelica.SIunits.HeatFlowRate Q_dot_H; - outer input Modelica.SIunits.Temp_K T_oda; - outer input Modelica.SIunits.Temp_K T_1; - Modelica.SIunits.Temp_K T_2; - Modelica.SIunits.Temp_K T_3; - Modelica.SIunits.Temp_K T_4; - outer input Modelica.SIunits.Temp_K T_5; - outer input Modelica.SIunits.Temp_K T_6; - outer input Modelica.SIunits.MassFraction X_oda; - outer input Modelica.SIunits.MassFraction X_supMin; - outer output Modelica.SIunits.MassFraction X_sup; - outer input Modelica.SIunits.VolumeFlowRate V_dot_sup; + outer output Modelica.Units.SI.HeatFlowRate Q_dot_C; + outer output Modelica.Units.SI.HeatFlowRate Q_dot_H; + outer input Modelica.Units.SI.Temperature T_oda; + outer input Modelica.Units.SI.Temperature T_1; + Modelica.Units.SI.Temperature T_2; + Modelica.Units.SI.Temperature T_3; + Modelica.Units.SI.Temperature T_4; + outer input Modelica.Units.SI.Temperature T_5; + outer input Modelica.Units.SI.Temperature T_6; + outer input Modelica.Units.SI.MassFraction X_oda; + outer input Modelica.Units.SI.MassFraction X_supMin; + outer output Modelica.Units.SI.MassFraction X_sup; + outer input Modelica.Units.SI.VolumeFlowRate V_dot_sup; outer output Real phi_t; outer input Real phi_t_withHRS; @@ -456,19 +459,19 @@ model AHU // block HuCHRS_false - outer output Modelica.SIunits.HeatFlowRate Q_dot_C; - outer output Modelica.SIunits.HeatFlowRate Q_dot_H; - outer input Modelica.SIunits.Temp_K T_oda; - outer input Modelica.SIunits.Temp_K T_1; - Modelica.SIunits.Temp_K T_2; - Modelica.SIunits.Temp_K T_3; - Modelica.SIunits.Temp_K T_4; - outer input Modelica.SIunits.Temp_K T_5; - outer input Modelica.SIunits.Temp_K T_6; - outer input Modelica.SIunits.MassFraction X_oda; - outer input Modelica.SIunits.MassFraction X_supMin; - outer output Modelica.SIunits.MassFraction X_sup; - outer input Modelica.SIunits.VolumeFlowRate V_dot_sup; + outer output Modelica.Units.SI.HeatFlowRate Q_dot_C; + outer output Modelica.Units.SI.HeatFlowRate Q_dot_H; + outer input Modelica.Units.SI.Temperature T_oda; + outer input Modelica.Units.SI.Temperature T_1; + Modelica.Units.SI.Temperature T_2; + Modelica.Units.SI.Temperature T_3; + Modelica.Units.SI.Temperature T_4; + outer input Modelica.Units.SI.Temperature T_5; + outer input Modelica.Units.SI.Temperature T_6; + outer input Modelica.Units.SI.MassFraction X_oda; + outer input Modelica.Units.SI.MassFraction X_supMin; + outer output Modelica.Units.SI.MassFraction X_sup; + outer input Modelica.Units.SI.VolumeFlowRate V_dot_sup; outer output Real phi_t; outer input Real phi_t_withoutHRS; @@ -509,18 +512,18 @@ model AHU // Only Heating block OnlyHeatingHRS_true - outer output Modelica.SIunits.HeatFlowRate Q_dot_C; - outer output Modelica.SIunits.HeatFlowRate Q_dot_H; - outer input Modelica.SIunits.Temp_K T_oda; - outer input Modelica.SIunits.Temp_K T_1; - Modelica.SIunits.Temp_K T_2; - Modelica.SIunits.Temp_K T_3; - Modelica.SIunits.Temp_K T_4; - outer input Modelica.SIunits.Temp_K T_5; - outer input Modelica.SIunits.Temp_K T_6; - outer input Modelica.SIunits.MassFraction X_oda; - outer output Modelica.SIunits.MassFraction X_sup; - outer input Modelica.SIunits.VolumeFlowRate V_dot_sup; + outer output Modelica.Units.SI.HeatFlowRate Q_dot_C; + outer output Modelica.Units.SI.HeatFlowRate Q_dot_H; + outer input Modelica.Units.SI.Temperature T_oda; + outer input Modelica.Units.SI.Temperature T_1; + Modelica.Units.SI.Temperature T_2; + Modelica.Units.SI.Temperature T_3; + Modelica.Units.SI.Temperature T_4; + outer input Modelica.Units.SI.Temperature T_5; + outer input Modelica.Units.SI.Temperature T_6; + outer input Modelica.Units.SI.MassFraction X_oda; + outer output Modelica.Units.SI.MassFraction X_sup; + outer input Modelica.Units.SI.VolumeFlowRate V_dot_sup; outer output Real phi_t; outer input Real phi_t_withHRS; @@ -559,18 +562,18 @@ model AHU // block OnlyHeatingHRS_false - outer output Modelica.SIunits.HeatFlowRate Q_dot_C; - outer output Modelica.SIunits.HeatFlowRate Q_dot_H; - outer input Modelica.SIunits.Temp_K T_oda; - outer input Modelica.SIunits.Temp_K T_1; - Modelica.SIunits.Temp_K T_2; - Modelica.SIunits.Temp_K T_3; - Modelica.SIunits.Temp_K T_4; - outer input Modelica.SIunits.Temp_K T_5; - outer input Modelica.SIunits.Temp_K T_6; - outer input Modelica.SIunits.MassFraction X_oda; - outer output Modelica.SIunits.MassFraction X_sup; - outer input Modelica.SIunits.VolumeFlowRate V_dot_sup; + outer output Modelica.Units.SI.HeatFlowRate Q_dot_C; + outer output Modelica.Units.SI.HeatFlowRate Q_dot_H; + outer input Modelica.Units.SI.Temperature T_oda; + outer input Modelica.Units.SI.Temperature T_1; + Modelica.Units.SI.Temperature T_2; + Modelica.Units.SI.Temperature T_3; + Modelica.Units.SI.Temperature T_4; + outer input Modelica.Units.SI.Temperature T_5; + outer input Modelica.Units.SI.Temperature T_6; + outer input Modelica.Units.SI.MassFraction X_oda; + outer output Modelica.Units.SI.MassFraction X_sup; + outer input Modelica.Units.SI.VolumeFlowRate V_dot_sup; outer output Real phi_t; outer input Real phi_t_withoutHRS; @@ -609,18 +612,18 @@ model AHU // Only Cooling block OnlyCoolingHRS_true - outer output Modelica.SIunits.HeatFlowRate Q_dot_C; - outer output Modelica.SIunits.HeatFlowRate Q_dot_H; - outer input Modelica.SIunits.Temp_K T_oda; - outer input Modelica.SIunits.Temp_K T_1; - Modelica.SIunits.Temp_K T_2; - Modelica.SIunits.Temp_K T_3; - Modelica.SIunits.Temp_K T_4; - outer input Modelica.SIunits.Temp_K T_5; - outer input Modelica.SIunits.Temp_K T_6; - outer input Modelica.SIunits.MassFraction X_oda; - outer output Modelica.SIunits.MassFraction X_sup; - outer input Modelica.SIunits.VolumeFlowRate V_dot_sup; + outer output Modelica.Units.SI.HeatFlowRate Q_dot_C; + outer output Modelica.Units.SI.HeatFlowRate Q_dot_H; + outer input Modelica.Units.SI.Temperature T_oda; + outer input Modelica.Units.SI.Temperature T_1; + Modelica.Units.SI.Temperature T_2; + Modelica.Units.SI.Temperature T_3; + Modelica.Units.SI.Temperature T_4; + outer input Modelica.Units.SI.Temperature T_5; + outer input Modelica.Units.SI.Temperature T_6; + outer input Modelica.Units.SI.MassFraction X_oda; + outer output Modelica.Units.SI.MassFraction X_sup; + outer input Modelica.Units.SI.VolumeFlowRate V_dot_sup; outer output Real phi_t; outer input Real phi_t_withHRS; @@ -659,18 +662,18 @@ model AHU // block OnlyCoolingHRS_false - outer output Modelica.SIunits.HeatFlowRate Q_dot_C; - outer output Modelica.SIunits.HeatFlowRate Q_dot_H; - outer input Modelica.SIunits.Temp_K T_oda; - outer input Modelica.SIunits.Temp_K T_1; - Modelica.SIunits.Temp_K T_2; - Modelica.SIunits.Temp_K T_3; - Modelica.SIunits.Temp_K T_4; - outer input Modelica.SIunits.Temp_K T_5; - outer input Modelica.SIunits.Temp_K T_6; - outer input Modelica.SIunits.MassFraction X_oda; - outer output Modelica.SIunits.MassFraction X_sup; - outer input Modelica.SIunits.VolumeFlowRate V_dot_sup; + outer output Modelica.Units.SI.HeatFlowRate Q_dot_C; + outer output Modelica.Units.SI.HeatFlowRate Q_dot_H; + outer input Modelica.Units.SI.Temperature T_oda; + outer input Modelica.Units.SI.Temperature T_1; + Modelica.Units.SI.Temperature T_2; + Modelica.Units.SI.Temperature T_3; + Modelica.Units.SI.Temperature T_4; + outer input Modelica.Units.SI.Temperature T_5; + outer input Modelica.Units.SI.Temperature T_6; + outer input Modelica.Units.SI.MassFraction X_oda; + outer output Modelica.Units.SI.MassFraction X_sup; + outer input Modelica.Units.SI.VolumeFlowRate V_dot_sup; outer output Real phi_t; outer input Real phi_t_withoutHRS; diff --git a/AixLib/Airflow/AirHandlingUnit/BaseClasses/PartialAHU.mo b/AixLib/Airflow/AirHandlingUnit/BaseClasses/PartialAHU.mo index c600f99342..6f1825a81f 100644 --- a/AixLib/Airflow/AirHandlingUnit/BaseClasses/PartialAHU.mo +++ b/AixLib/Airflow/AirHandlingUnit/BaseClasses/PartialAHU.mo @@ -47,16 +47,17 @@ partial model PartialAHU "Defines necessary parameters and connectors" (in case that a HRS is physically installed in the AHU)" annotation (Dialog(group="Settings AHU Value", enable=HRS)); // assumed increase in ventilator pressure - parameter Modelica.SIunits.Pressure dp_sup=800 + parameter Modelica.Units.SI.Pressure dp_sup=800 "pressure difference over supply fan" annotation (Dialog(tab="Fans", group="Constant Assumptions")); - parameter Modelica.SIunits.Pressure dp_eta=800 + parameter Modelica.Units.SI.Pressure dp_eta=800 "pressure difference over extract fan" annotation (Dialog(tab="Fans", group="Constant Assumptions")); // assumed efficiencies of the ventilators - parameter Modelica.SIunits.Efficiency eta_sup=0.7 "efficiency of supply fan" + parameter Modelica.Units.SI.Efficiency eta_sup=0.7 "efficiency of supply fan" annotation (Dialog(tab="Fans", group="Constant Assumptions")); - parameter Modelica.SIunits.Efficiency eta_eta=0.7 "efficiency of extract fan" + parameter Modelica.Units.SI.Efficiency eta_eta=0.7 + "efficiency of extract fan" annotation (Dialog(tab="Fans", group="Constant Assumptions")); Modelica.Blocks.Interfaces.RealInput Vflow_in(unit="m3/s") "m3/s" @@ -147,15 +148,15 @@ partial model PartialAHU "Defines necessary parameters and connectors" extent={{4,-4},{-4,4}}, rotation=180, origin={84,-4}))); - Modelica.Blocks.Interfaces.RealInput Vflow_in_extractAir(unit="m3/s") if - use_Vflow_in_extractAir "Volume flow of extract air" + Modelica.Blocks.Interfaces.RealInput Vflow_in_extractAir(unit="m3/s") +if use_Vflow_in_extractAir "Volume flow of extract air" annotation (Placement(transformation(extent={{114,80},{86,108}}), iconTransformation(extent={{88,32},{80,40}}))); protected Modelica.Blocks.Interfaces.RealInput Vflow_in_extractAir_internal(unit="m3/s") "Needed to connect to conditional connector"; equation dehumidification = if dehumidificationSet and heating and cooling then dehumidificationSet else false; - humidification = if dehumidificationSet and heating and cooling then humidificationSet else false; + humidification = if humidificationSet and heating and cooling then humidificationSet else false; connect(Vflow_in_extractAir, Vflow_in_extractAir_internal); diff --git a/AixLib/Airflow/AirHandlingUnit/Examples/AHU.mo b/AixLib/Airflow/AirHandlingUnit/Examples/AHU.mo index 7c121b53e0..2a6104d78b 100644 --- a/AixLib/Airflow/AirHandlingUnit/Examples/AHU.mo +++ b/AixLib/Airflow/AirHandlingUnit/Examples/AHU.mo @@ -3,9 +3,9 @@ model AHU "Example to test all states of the AHU model - Play with the possible modes (boolean parameters for: heating, cooling, de-/humidification" extends Modelica.Icons.Example; - Modelica.Blocks.Sources.Sine tempOutside( + Modelica.Blocks.Sources.Sine tempOutside( amplitude=10, - freqHz=1/86400, + f=1/86400, phase=-3.1415/2, offset=292) annotation (Placement(transformation(extent={{-100,-16},{-80,4}}))); @@ -24,7 +24,7 @@ model AHU annotation (Placement(transformation(extent={{98,-56},{78,-36}}))); Modelica.Blocks.Sources.Sine waterLoadOutside( - freqHz=1/86400, + f=1/86400, offset=0.008, amplitude=0.002, phase=-0.054829518451402) @@ -32,11 +32,10 @@ model AHU Modelica.Blocks.Sources.Constant phi_RoomExtractAir(k=0.6) annotation (Placement(transformation(extent={{98,-24},{78,-4}}))); Modelica.Blocks.Sources.Sine tempAddInRoom( - freqHz=1/86400, + f=1/86400, amplitude=2, phase=-3.1415/4, - offset=1.7) - annotation (Placement(transformation(extent={{98,20},{78,40}}))); + offset=1.7) annotation (Placement(transformation(extent={{98,20},{78,40}}))); Modelica.Blocks.Math.Add addToExtractTemp annotation (Placement(transformation(extent={{46,12},{34,24}}))); Modelica.Blocks.Interfaces.RealOutput QFlowCool( diff --git a/AixLib/Airflow/FacadeVentilationUnit/BaseClasses/SetPower.mo b/AixLib/Airflow/FacadeVentilationUnit/BaseClasses/SetPower.mo index 9a8fdf162f..cbe7d24553 100644 --- a/AixLib/Airflow/FacadeVentilationUnit/BaseClasses/SetPower.mo +++ b/AixLib/Airflow/FacadeVentilationUnit/BaseClasses/SetPower.mo @@ -5,20 +5,20 @@ model SetPower extends Modelica.Fluid.Interfaces.PartialTwoPort; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal=0.05 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=0.05 "Nominal mass flow rate of fan"; parameter Medium.AbsolutePressure p_start=Medium.p_default "Start value of pressure"; parameter Integer noUnits=1 "Number of identical FVU units"; - parameter Modelica.SIunits.PressureDifference dp_nominal=500 + parameter Modelica.Units.SI.PressureDifference dp_nominal=500 "Initial pressure difference"; parameter Medium.Temperature T_start=Medium.T_default "Start value of temperature"; - Modelica.Blocks.Tables.CombiTable1D volumeFlow(table=[0,1; 0.1,25; 0.2,40; + Modelica.Blocks.Tables.CombiTable1Dv volumeFlow(table=[0,1; 0.1,25; 0.2,40; 0.3,60; 0.4,90; 0.5,100; 0.6,140; 0.7,175; 0.8,200; 0.9,225; 1,260]) - "Correlates the relative input signal and a volume flow rate" - annotation (Placement(transformation( + "Correlates the relative input signal and a volume flow rate" annotation ( + Placement(transformation( extent={{-10,-10},{10,10}}, rotation=90, origin={0,-56}))); diff --git a/AixLib/Airflow/FacadeVentilationUnit/DataBase/FVUBaseRecord.mo b/AixLib/Airflow/FacadeVentilationUnit/DataBase/FVUBaseRecord.mo index a83768b530..7bab9b917b 100644 --- a/AixLib/Airflow/FacadeVentilationUnit/DataBase/FVUBaseRecord.mo +++ b/AixLib/Airflow/FacadeVentilationUnit/DataBase/FVUBaseRecord.mo @@ -4,37 +4,35 @@ record FVUBaseRecord extends Modelica.Icons.Record; parameter Integer noUnits=1 "Number of identical FVUs"; - parameter Modelica.SIunits.ThermalConductance UA_heater=120 - "Thermal conductance of heater at nominal flow, used to compute heat + parameter Modelica.Units.SI.ThermalConductance UA_heater=120 "Thermal conductance of heater at nominal flow, used to compute heat capacity"; - parameter Modelica.SIunits.ThermalConductance UA_cooler=65 - "Thermal conductance of cooler at nominal flow, used to compute heat + parameter Modelica.Units.SI.ThermalConductance UA_cooler=65 "Thermal conductance of cooler at nominal flow, used to compute heat capacity"; - parameter Modelica.SIunits.MassFlowRate m1_flow_nominal_heater=0.1 + parameter Modelica.Units.SI.MassFlowRate m1_flow_nominal_heater=0.1 "Nominal mass flow rate on water side of heater"; - parameter Modelica.SIunits.MassFlowRate m2_flow_nominal_heater=0.1 + parameter Modelica.Units.SI.MassFlowRate m2_flow_nominal_heater=0.1 "Nominal mass flow rate on air side of heater"; - parameter Modelica.SIunits.MassFlowRate m1_flow_nominal_cooler=0.1 + parameter Modelica.Units.SI.MassFlowRate m1_flow_nominal_cooler=0.1 "Nominal mass flow rate on water side of cooler"; - parameter Modelica.SIunits.MassFlowRate m2_flow_nominal_cooler=0.05 + parameter Modelica.Units.SI.MassFlowRate m2_flow_nominal_cooler=0.05 "Nominal mass flow rate on air side of cooler"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal_damper=0.1 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal_damper=0.1 "Nominal mass flow rate of damper"; - parameter Modelica.SIunits.Pressure dp1_nominal_heater=1000 + parameter Modelica.Units.SI.Pressure dp1_nominal_heater=1000 "Nominal pressure loss on water side of heater"; - parameter Modelica.SIunits.Pressure dp2_nominal_heater=100 + parameter Modelica.Units.SI.Pressure dp2_nominal_heater=100 "Nominal pressure loss on air side of heater"; - parameter Modelica.SIunits.Pressure dp1_nominal_cooler=1000 + parameter Modelica.Units.SI.Pressure dp1_nominal_cooler=1000 "Nominal pressure loss on water side of cooler"; - parameter Modelica.SIunits.Pressure dp2_nominal_cooler=100 + parameter Modelica.Units.SI.Pressure dp2_nominal_cooler=100 "Nominal pressure loss on air side of cooler"; - parameter Modelica.SIunits.Pressure p_default=101300 + parameter Modelica.Units.SI.Pressure p_default=101300 "Default static pressure at outlet"; - parameter Modelica.SIunits.Pressure dp_nominal_damper=500 + parameter Modelica.Units.SI.Pressure dp_nominal_damper=500 "Nominal pressure loss in dampers"; - parameter Modelica.SIunits.Time damperRiseTimeLong = 90 "Rising time of the + parameter Modelica.Units.SI.Time damperRiseTimeLong=90 "Rising time of the slowly moving dampers"; - parameter Modelica.SIunits.Time damperRiseTimeShort = 20 "Rising time of the + parameter Modelica.Units.SI.Time damperRiseTimeShort=20 "Rising time of the slowly moving dampers"; annotation (Documentation(info="

diff --git a/AixLib/Airflow/FacadeVentilationUnit/Examples/FacadeVentilationUnit.mo b/AixLib/Airflow/FacadeVentilationUnit/Examples/FacadeVentilationUnit.mo index 50a1964d4d..0196528939 100644 --- a/AixLib/Airflow/FacadeVentilationUnit/Examples/FacadeVentilationUnit.mo +++ b/AixLib/Airflow/FacadeVentilationUnit/Examples/FacadeVentilationUnit.mo @@ -11,7 +11,8 @@ model FacadeVentilationUnit maxExFanPower=0.6) "Comprehensive rule-based controller for the facade ventilation unit" annotation (Placement(transformation(extent={{-46,-30},{-6,10}}))); - AixLib.Airflow.FacadeVentilationUnit.FacadeVentilationUnit FVU(redeclare package Air = + AixLib.Airflow.FacadeVentilationUnit.FacadeVentilationUnit FVU(redeclare + package Air = Medium1, redeclare package Water = Medium2) "The facade ventilation unit to be tested in this example" annotation (Placement(transformation(extent={{70,-56},{106,-36}}))); @@ -82,30 +83,29 @@ model FacadeVentilationUnit Modelica.Blocks.Sources.Constant coolingWaterTemperature(k=273.15 + 17) "Provides a test value of the cooling water temperatiure" annotation (Placement(transformation(extent={{84,74},{104,94}}))); - AixLib.Fluid.Sensors.TemperatureTwoPort supplyAirTemperature(redeclare package Medium = + AixLib.Fluid.Sensors.TemperatureTwoPort supplyAirTemperature(redeclare + package Medium = Medium1, m_flow_nominal=0.1) "Measures the supply air temperature" annotation (Placement(transformation(extent={{120,-54},{140,-34}}))); Modelica.Blocks.Sources.Sine roomTemperature( amplitude=5, - freqHz=1/86400, + f=1/86400, phase=3.1415926535898, - offset=273.15 + 20) - "Provides a test value of the room temperature" + offset=273.15 + 20) "Provides a test value of the room temperature" annotation (Placement(transformation(extent={{-100,40},{-80,60}}))); Modelica.Blocks.Sources.Sine roomSetTemperature( amplitude=5, - freqHz=1/86400, + f=1/86400, phase=1.5707963267949, - offset=273.15 + 20) - "Provides a test value of the room set temperature" + offset=273.15 + 20) "Provides a test value of the room set temperature" annotation (Placement(transformation(extent={{-100,-36},{-80,-16}}))); Modelica.Blocks.Sources.Constant co2Concentration(k=1000) "Provides a test value of the CO2 concnetration" annotation (Placement(transformation(extent={{-100,-80},{-80,-60}}))); Modelica.Blocks.Sources.Sine outdoorTemperature( amplitude=5, - freqHz=1/86400, + f=1/86400, offset=273.15 + 10) "Provides a test value of the outdoor temperature" annotation (Placement(transformation(extent={{-100,6},{-80,26}}))); AixLib.Controls.Interfaces.FVUControlBus fVUControlBus diff --git a/AixLib/Airflow/FacadeVentilationUnit/FacadeVentilationUnit.mo b/AixLib/Airflow/FacadeVentilationUnit/FacadeVentilationUnit.mo index ccb76a7114..9c17fbce7a 100644 --- a/AixLib/Airflow/FacadeVentilationUnit/FacadeVentilationUnit.mo +++ b/AixLib/Airflow/FacadeVentilationUnit/FacadeVentilationUnit.mo @@ -1,7 +1,6 @@ -within AixLib.Airflow.FacadeVentilationUnit; +within AixLib.Airflow.FacadeVentilationUnit; model FacadeVentilationUnit "Facade Ventilation Unit (FVU) equipped with a recuperator" - replaceable package Water = AixLib.Media.Water "Water Model in the system"; replaceable package Air = AixLib.Media.Air @@ -11,7 +10,7 @@ model FacadeVentilationUnit fVUParam=AixLib.Airflow.FacadeVentilationUnit.DataBase.FVUBaseRecord() "Record containing the characteristic parameters of the unit"; - parameter Modelica.SIunits.ThermodynamicTemperature T_start=273.15 + 20 + parameter Modelica.Units.SI.ThermodynamicTemperature T_start=273.15 + 20 "Initial temperature in unit"; AixLib.Airflow.FacadeVentilationUnit.BaseClasses.SetPower fanExhaustAir( @@ -68,13 +67,15 @@ model FacadeVentilationUnit m2_flow_nominal=fVUParam.m2_flow_nominal_cooler) "The heat exchanger used for cooling" annotation (Placement(transformation(extent={{182,22},{162,42}}))); - Modelica.Fluid.Interfaces.FluidPort_b heaterReturnConnector(redeclare package Medium = + Modelica.Fluid.Interfaces.FluidPort_b heaterReturnConnector(redeclare package + Medium = Water) "Connector to the heating water sink" annotation (Placement(transformation(extent={{82,90},{102,110}}))); Modelica.Fluid.Interfaces.FluidPort_a heaterFlowConnector(redeclare package Medium = Water) "Connector to the heating water source" annotation (Placement(transformation(extent={{112,90},{132,110}}))); - Modelica.Fluid.Interfaces.FluidPort_b coolerReturnConnector(redeclare package Medium = + Modelica.Fluid.Interfaces.FluidPort_b coolerReturnConnector(redeclare package + Medium = Water) "Connector to the cooling water source" annotation (Placement(transformation(extent={{152,90},{172,110}}))); Modelica.Fluid.Interfaces.FluidPort_a coolerFlowConnector(redeclare package Medium = diff --git a/AixLib/Airflow/Multizone/BaseClasses/Door.mo b/AixLib/Airflow/Multizone/BaseClasses/Door.mo index 0088e53a16..c8fa35d402 100644 --- a/AixLib/Airflow/Multizone/BaseClasses/Door.mo +++ b/AixLib/Airflow/Multizone/BaseClasses/Door.mo @@ -16,29 +16,31 @@ partial model Door annotation (choices( choice(redeclare package Medium = AixLib.Media.Air "Moist air"))); - parameter Modelica.SIunits.Length wOpe=0.9 "Width of opening" + parameter Modelica.Units.SI.Length wOpe=0.9 "Width of opening" annotation (Dialog(group="Geometry")); - parameter Modelica.SIunits.Length hOpe=2.1 "Height of opening" + parameter Modelica.Units.SI.Length hOpe=2.1 "Height of opening" annotation (Dialog(group="Geometry")); - parameter Modelica.SIunits.PressureDifference dp_turbulent( + parameter Modelica.Units.SI.PressureDifference dp_turbulent( min=0, displayUnit="Pa") = 0.01 "Pressure difference where laminar and turbulent flow relation coincide" - annotation(Dialog(tab="Advanced")); + annotation (Dialog(tab="Advanced")); - Modelica.SIunits.VolumeFlowRate VAB_flow(nominal=0.001) + Modelica.Units.SI.VolumeFlowRate VAB_flow(nominal=0.001) "Volume flow rate from A to B if positive"; - Modelica.SIunits.VolumeFlowRate VBA_flow(nominal=0.001) + Modelica.Units.SI.VolumeFlowRate VBA_flow(nominal=0.001) "Volume flow rate from B to A if positive"; - input Modelica.SIunits.Velocity vAB(nominal=0.01) "Average velocity from A to B"; - input Modelica.SIunits.Velocity vBA(nominal=0.01) "Average velocity from B to A"; + input Modelica.Units.SI.Velocity vAB(nominal=0.01) + "Average velocity from A to B"; + input Modelica.Units.SI.Velocity vBA(nominal=0.01) + "Average velocity from B to A"; protected - final parameter Modelica.SIunits.Area AOpe = wOpe*hOpe "Open aperture area"; + final parameter Modelica.Units.SI.Area AOpe=wOpe*hOpe "Open aperture area"; - constant Real conTP = AixLib.Media.Air.dStp*Modelica.Media.IdealGases.Common.SingleGasesData.Air.R + constant Real conTP = AixLib.Media.Air.dStp*Modelica.Media.IdealGases.Common.SingleGasesData.Air.R_s "Conversion factor for converting temperature difference to pressure difference"; parameter Medium.ThermodynamicState sta_default=Medium.setState_pTX( @@ -46,12 +48,12 @@ protected p=Medium.p_default, X=Medium.X_default); - parameter Modelica.SIunits.Density rho_default=Medium.density(sta_default) + parameter Modelica.Units.SI.Density rho_default=Medium.density(sta_default) "Density"; - Modelica.SIunits.VolumeFlowRate VABp_flow(nominal=0.001) + Modelica.Units.SI.VolumeFlowRate VABp_flow(nominal=0.001) "Volume flow rate from A to B if positive due to static pressure difference"; - Modelica.SIunits.MassFlowRate mABt_flow(nominal=0.001) + Modelica.Units.SI.MassFlowRate mABt_flow(nominal=0.001) "Mass flow rate from A to B if positive due to buoyancy"; equation @@ -109,17 +111,18 @@ equation fillColor={0,0,0}, fillPattern=FillPattern.Solid)}), Documentation(info=" -

-This is a partial model for the bi-directional air flow through a door. -

-", +

+ This is a partial model for the bi-directional air flow through a door. +

+ ", revisions=" - -")); + + "), + __Dymola_LockedEditing="Model from IBPSA"); end Door; diff --git a/AixLib/Airflow/Multizone/BaseClasses/DoorDiscretized.mo b/AixLib/Airflow/Multizone/BaseClasses/DoorDiscretized.mo index abb4da1545..96d52116da 100644 --- a/AixLib/Airflow/Multizone/BaseClasses/DoorDiscretized.mo +++ b/AixLib/Airflow/Multizone/BaseClasses/DoorDiscretized.mo @@ -5,27 +5,27 @@ partial model DoorDiscretized parameter Integer nCom=10 "Number of compartments for the discretization"; - parameter Modelica.SIunits.PressureDifference dp_turbulent( + parameter Modelica.Units.SI.PressureDifference dp_turbulent( min=0, displayUnit="Pa") = 0.01 "Pressure difference where laminar and turbulent flow relation coincide. Recommended: 0.01"; - Modelica.SIunits.PressureDifference dpAB[nCom](each nominal=1) + Modelica.Units.SI.PressureDifference dpAB[nCom](each nominal=1) "Pressure difference between compartments"; - Modelica.SIunits.Velocity v[nCom](each nominal=0.01) + Modelica.Units.SI.Velocity v[nCom](each nominal=0.01) "Velocity in compartment from A to B"; - Modelica.SIunits.Velocity vTop "Velocity at top of opening from A to B"; - Modelica.SIunits.Velocity vBot "Velocity at bottom of opening from A to B"; + Modelica.Units.SI.Velocity vTop "Velocity at top of opening from A to B"; + Modelica.Units.SI.Velocity vBot "Velocity at bottom of opening from A to B"; protected - parameter Modelica.SIunits.Length dh=hOpe/nCom "Height of each compartment"; + parameter Modelica.Units.SI.Length dh=hOpe/nCom "Height of each compartment"; parameter Medium.ThermodynamicState sta_default=Medium.setState_pTX( T=Medium.T_default, p=Medium.p_default, X=Medium.X_default); - parameter Modelica.SIunits.Density rho_default=Medium.density(sta_default) + parameter Modelica.Units.SI.Density rho_default=Medium.density(sta_default) "Density, used to compute fluid volume"; parameter Real hAg[nCom](each unit="m2/s2")= @@ -35,23 +35,23 @@ protected parameter Real hBg[nCom](each unit="m2/s2")= {Modelica.Constants.g_n*(hB - (i - 0.5)*dh) for i in 1:nCom} "Product g*h_i for each compartment"; - Modelica.SIunits.AbsolutePressure pA[nCom](each nominal=101325) + Modelica.Units.SI.AbsolutePressure pA[nCom](each nominal=101325) "Pressure in compartments of room A"; - Modelica.SIunits.AbsolutePressure pB[nCom](each nominal=101325) + Modelica.Units.SI.AbsolutePressure pB[nCom](each nominal=101325) "Pressure in compartments of room B"; - Modelica.SIunits.VolumeFlowRate dV_flow[nCom] + Modelica.Units.SI.VolumeFlowRate dV_flow[nCom] "Volume flow rate through compartment from A to B"; - Modelica.SIunits.VolumeFlowRate dVAB_flow[nCom] + Modelica.Units.SI.VolumeFlowRate dVAB_flow[nCom] "Volume flow rate through compartment from A to B if positive"; - Modelica.SIunits.VolumeFlowRate dVBA_flow[nCom] + Modelica.Units.SI.VolumeFlowRate dVBA_flow[nCom] "Volume flow rate through compartment from B to A if positive"; - Modelica.SIunits.VolumeFlowRate VZerCom_flow = VZer_flow/nCom + Modelica.Units.SI.VolumeFlowRate VZerCom_flow=VZer_flow/nCom "Small flow rate for regularization"; Real m(min=0.5, max=1) "Flow exponent, m=0.5 for turbulent, m=1 for laminar"; - Real kVal "Flow coefficient for each compartment, k = V_flow/ dp^m"; - Modelica.SIunits.Area dA "Compartment area"; + Real CVal "Flow coefficient for each compartment, C = V_flow/ dp^m"; + Modelica.Units.SI.Area dA "Compartment area"; Real gaiFlo[nCom] "Gain to sum up the positive flows and set the negative to zero in a differentiable way"; equation dA = A/nCom; @@ -102,71 +102,72 @@ equation Line(points={{-54,-58},{-36,-58}}, color={0,0,0}), Line(points={{-54,-32},{-36,-32}}, color={0,0,0})}), Documentation(info=" -

-This is a partial model for the bi-directional air flow through a door. -

-

-To compute the bi-directional flow, -the door is discretize along the height coordinate, and uses -an orifice equation to compute the flow for each compartment. -

-

-The compartment area dA is a variable, which allows -using the model for a door that can be open or closed. -

-", +

+ This is a partial model for the bi-directional air flow through a door. +

+

+ To compute the bi-directional flow, + the door is discretize along the height coordinate, and uses + an orifice equation to compute the flow for each compartment. +

+

+ The compartment area dA is a variable, which allows + using the model for a door that can be open or closed. +

+ ", revisions=" - -")); + + "), + __Dymola_LockedEditing="Model from IBPSA"); end DoorDiscretized; diff --git a/AixLib/Airflow/Multizone/BaseClasses/ErrorControl.mo b/AixLib/Airflow/Multizone/BaseClasses/ErrorControl.mo index 3b6395d9a7..299b7a551c 100644 --- a/AixLib/Airflow/Multizone/BaseClasses/ErrorControl.mo +++ b/AixLib/Airflow/Multizone/BaseClasses/ErrorControl.mo @@ -5,40 +5,41 @@ model ErrorControl "Interface that defines parameters for error control" annotation(Dialog(tab="Advanced")); annotation (Documentation(info=" -

-This is an interface that defines parameters used for error control. -

-

-Dymola does error control on state variables, such as temperature, pressure and -species concentration. -Flow variables such as m_flow are typically not checked during the error control. -This can give large errors in flow variables, as long as the error on the volume's state variables -that are coupled to the flow variables is small. -Obtaining accurate flow variables can be achieved by imposing an error control -on the exchanged mass, which can be defined as -

-
-  dm/dt = m_flow.
-
-

-By setting forceErrorControlOnFlow = true, such an equation is imposed -by models that extend this class. -

-", +

+ This is an interface that defines parameters used for error control. +

+

+ Dymola does error control on state variables, such as temperature, pressure and + species concentration. + Flow variables such as m_flow are typically not checked during the error control. + This can give large errors in flow variables, as long as the error on the volume's state variables + that are coupled to the flow variables is small. + Obtaining accurate flow variables can be achieved by imposing an error control + on the exchanged mass, which can be defined as +

+
+   dm/dt = m_flow.
+ 
+

+ By setting forceErrorControlOnFlow = true, such an equation is imposed + by models that extend this class. +

+ ", revisions=" - -")); + + "), + __Dymola_LockedEditing="Model from IBPSA"); end ErrorControl; diff --git a/AixLib/Airflow/Multizone/BaseClasses/Examples/Interpolate.mo b/AixLib/Airflow/Multizone/BaseClasses/Examples/Interpolate.mo new file mode 100644 index 0000000000..dfddc29793 --- /dev/null +++ b/AixLib/Airflow/Multizone/BaseClasses/Examples/Interpolate.mo @@ -0,0 +1,60 @@ +within AixLib.Airflow.Multizone.BaseClasses.Examples; +model Interpolate "Test model for the function flowElementData" + extends Modelica.Icons.Example; + + parameter Real table[:,:]=[-50,-0.08709; -25,-0.06158; -10,-0.03895; -5,-0.02754; + -3,-0.02133; -2,-0.01742; -1,-0.01232; 0,0; 1,0.01232; 2,0.01742; 3,0.02133; + 4.5,0.02613; 50,0.02614] + "Table of mass flow rate in kg/s (second column) as a function of pressure difference in Pa (first column)"; + + Modelica.Units.SI.PressureDifference dp + "Pressure difference"; + Modelica.Units.SI.MassFlowRate m_flow + "Mass flow rate"; + +protected + parameter Real[:] xd=table[:,1] "X-axis support points"; + parameter Real[size(xd, 1)] yd=table[:,2] "Y-axis support points"; + parameter Real[size(xd, 1)] d(each fixed=false) "Derivatives at the support points"; + + Modelica.Blocks.Sources.Ramp ramp( + duration=500, + height=100, + offset=-50) "Ramp from -50Pa to +50Pa"; +initial equation + d =AixLib.Utilities.Math.Functions.splineDerivatives( + x=xd, + y=yd, + ensureMonotonicity=true); +equation + dp=ramp.y; + m_flow =AixLib.Airflow.Multizone.BaseClasses.interpolate(u=dp,xd=xd,yd=yd,d=d); + + annotation ( +experiment( + StopTime=500, + Tolerance=1e-06), + __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Airflow/Multizone/BaseClasses/Examples/Interpolate.mos" + "Simulate and plot"), Documentation(info=" +

+ This example demonstrates the function + + AixLib.Airflow.Multizone.BaseClasses.interpolate. +

+ ",revisions=" + + + "), + __Dymola_LockedEditing="Model from IBPSA"); +end Interpolate; diff --git a/AixLib/Airflow/Multizone/BaseClasses/Examples/PowerLaw.mo b/AixLib/Airflow/Multizone/BaseClasses/Examples/PowerLaw.mo index 25f57d52a8..d6d3d644d7 100644 --- a/AixLib/Airflow/Multizone/BaseClasses/Examples/PowerLaw.mo +++ b/AixLib/Airflow/Multizone/BaseClasses/Examples/PowerLaw.mo @@ -1,38 +1,39 @@ within AixLib.Airflow.Multizone.BaseClasses.Examples; model PowerLaw "Test model for power law function" extends Modelica.Icons.Example; - parameter Real k = 2/10^m "Flow coefficient, k = V_flow/ dp^m"; + parameter Real C = 2/10^m "Flow coefficient, k = V_flow/ dp^m"; parameter Real m(min=0.5, max=1) = 0.5 "Flow exponent, m=0.5 for turbulent, m=1 for laminar"; - parameter Modelica.SIunits.PressureDifference dp_turbulent(min=0)=5 + parameter Modelica.Units.SI.PressureDifference dp_turbulent(min=0) = 5 "Pressure difference where regularization starts"; - Modelica.SIunits.PressureDifference dp "Pressure difference"; - Modelica.SIunits.VolumeFlowRate V_flow "Volume flow rate"; + Modelica.Units.SI.PressureDifference dp "Pressure difference"; + Modelica.Units.SI.VolumeFlowRate V_flow "Volume flow rate"; equation dp = 10*(-1+2*time); V_flow = AixLib.Airflow.Multizone.BaseClasses.powerLaw( dp=dp, - k=k, + C=C, m=m, dp_turbulent=dp_turbulent); annotation ( experiment(Tolerance=1e-6, StopTime=1.0), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Airflow/Multizone/BaseClasses/Examples/PowerLaw.mos" "Simulate and plot"), Documentation(info=" -

-This examples demonstrates the - -Buildings.Airflow.Multizone.BaseClasses.powerLaw -function. -

-", revisions=" - -")); +

+ This examples demonstrates the + + Buildings.Airflow.Multizone.BaseClasses.powerLaw + function. +

+ ",revisions=" + + "), + __Dymola_LockedEditing="Model from IBPSA"); end PowerLaw; diff --git a/AixLib/Airflow/Multizone/BaseClasses/Examples/PowerLawFixedM.mo b/AixLib/Airflow/Multizone/BaseClasses/Examples/PowerLawFixedM.mo index 72ed3f952e..9ebb0a0ada 100644 --- a/AixLib/Airflow/Multizone/BaseClasses/Examples/PowerLawFixedM.mo +++ b/AixLib/Airflow/Multizone/BaseClasses/Examples/PowerLawFixedM.mo @@ -1,17 +1,17 @@ within AixLib.Airflow.Multizone.BaseClasses.Examples; model PowerLawFixedM "Test model for power law function" extends Modelica.Icons.Example; - parameter Real k = 2/10^m "Flow coefficient, k = V_flow/ dp^m"; + parameter Real C = 2/10^m "Flow coefficient, C = V_flow/ dp^m"; constant Real m(min=0.5, max=1) = 0.5 "Flow exponent, m=0.5 for turbulent, m=1 for laminar"; - parameter Modelica.SIunits.PressureDifference dp_turbulent(min=0)=5 + parameter Modelica.Units.SI.PressureDifference dp_turbulent(min=0) = 5 "Pressure difference where regularization starts"; - Modelica.SIunits.PressureDifference dp "Pressure difference"; - Modelica.SIunits.VolumeFlowRate V_flow + Modelica.Units.SI.PressureDifference dp "Pressure difference"; + Modelica.Units.SI.VolumeFlowRate V_flow "Volume flow rate computed with model powerLaw"; - Modelica.SIunits.VolumeFlowRate VFixed_flow + Modelica.Units.SI.VolumeFlowRate VFixed_flow "Volume flow rate computed with model powerLawFixed"; constant Real gamma(min=1) = 1.5 @@ -29,11 +29,11 @@ equation dp = 10*(-1+2*time); V_flow = AixLib.Airflow.Multizone.BaseClasses.powerLaw( dp=dp, - k=k, + C=C, m=m, dp_turbulent=dp_turbulent); VFixed_flow = AixLib.Airflow.Multizone.BaseClasses.powerLawFixedM( - k=k, + C=C, dp=dp, m=m, a=a, @@ -46,23 +46,24 @@ equation experiment(Tolerance=1e-6, StopTime=1.0), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Airflow/Multizone/BaseClasses/Examples/PowerLawFixedM.mos" "Simulate and plot"), Documentation(info=" -

-This examples demonstrates the - -Buildings.Airflow.Multizone.BaseClasses.powerLaw -and - -Buildings.Airflow.Multizone.BaseClasses.powerLawFixedM -functions. -They need to return the same function value. -This is verified by an assert statement. -

-", revisions=" - -")); +

+ This examples demonstrates the + + Buildings.Airflow.Multizone.BaseClasses.powerLaw + and + + Buildings.Airflow.Multizone.BaseClasses.powerLawFixedM + functions. + They need to return the same function value. + This is verified by an assert statement. +

+ ",revisions=" + + "), + __Dymola_LockedEditing="Model from IBPSA"); end PowerLawFixedM; diff --git a/AixLib/Airflow/Multizone/BaseClasses/Examples/WindPressureLowRise.mo b/AixLib/Airflow/Multizone/BaseClasses/Examples/WindPressureLowRise.mo index fcf99f93ba..13e4589c70 100644 --- a/AixLib/Airflow/Multizone/BaseClasses/Examples/WindPressureLowRise.mo +++ b/AixLib/Airflow/Multizone/BaseClasses/Examples/WindPressureLowRise.mo @@ -3,31 +3,32 @@ model WindPressureLowRise "Test model for wind pressure function" extends Modelica.Icons.Example; parameter Real Cp0 = 0.6 "Wind pressure coefficient for normal wind incidence angle"; - Modelica.SIunits.Angle incAng "Wind incidence angle (0: normal to wall)"; + Modelica.Units.SI.Angle incAng "Wind incidence angle (0: normal to wall)"; parameter Real G = Modelica.Math.log(0.5) "Natural logarithm of side ratio"; Real Cp "Wind pressure coefficient"; equation incAng=time*2*Modelica.Constants.pi; - Cp = AixLib.Airflow.Multizone.BaseClasses.windPressureLowRise( + Cp =AixLib.Airflow.Multizone.BaseClasses.windPressureLowRise( Cp0=Cp0, G=G, - incAng=incAng); + alpha=incAng); annotation ( experiment(StartTime=-2, Tolerance=1e-6, StopTime=2), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Airflow/Multizone/BaseClasses/Examples/WindPressureLowRise.mos" "Simulate and plot"), Documentation(info=" -

-This examples demonstrates the - -AixLib.Airflow.Multizone.BaseClasses.windPressureLowRise -function. -

-", revisions=" - -")); +

+ This examples demonstrates the + + AixLib.Airflow.Multizone.BaseClasses.windPressureLowRise + function. +

+ ",revisions=" + + "), + __Dymola_LockedEditing="Model from IBPSA"); end WindPressureLowRise; diff --git a/AixLib/Airflow/Multizone/BaseClasses/Examples/WindPressureProfile.mo b/AixLib/Airflow/Multizone/BaseClasses/Examples/WindPressureProfile.mo new file mode 100644 index 0000000000..176e08ee34 --- /dev/null +++ b/AixLib/Airflow/Multizone/BaseClasses/Examples/WindPressureProfile.mo @@ -0,0 +1,92 @@ +within AixLib.Airflow.Multizone.BaseClasses.Examples; +model WindPressureProfile + "Test model for wind pressure profile function" + extends Modelica.Icons.Example; + + parameter Modelica.Units.SI.Angle incAngSurNor[:]( + each displayUnit="deg")= + {0, 45, 90, 135, 180, 225, 270, 315}*Modelica.Constants.pi/180 + "Wind incidence angles, relative to the surface normal (normal=0), first point must be 0, last smaller than 2 pi(=360 deg)"; + parameter Real Cp[:]( + each final unit="1")= + {0.4, 0.1, -0.3, -0.35, -0.2, -0.35, -0.3, 0.1} + "Cp values at the corresponding incAngSurNor"; + + Modelica.Units.SI.Angle alpha "Wind incidence angle (0: normal to wall)"; + Real CpAct "Wind pressure coefficient"; + +protected + final parameter Integer n=size(incAngSurNor, 1) + "Number of data points provided by user"; + final parameter Modelica.Units.SI.Angle incAngExt[n + 3](each displayUnit= + "deg") = cat( + 1, + {incAngSurNor[n - 1] - (2*Modelica.Constants.pi)}, + incAngSurNor, + 2*Modelica.Constants.pi .+ {incAngSurNor[1],incAngSurNor[2]}) + "Extended number of incidence angles"; + final parameter Real CpExt[n+3]=cat(1, {Cp[n-1]}, Cp, {Cp[1], Cp[2]}) + "Extended number of Cp values"; + + final parameter Real[n+3] deri= + AixLib.Utilities.Math.Functions.splineDerivatives( + x=incAngExt, + y=CpExt, + ensureMonotonicity=false) "Derivatives for table interpolation"; + + Modelica.Blocks.Sources.Ramp ramp( + duration=500, + height=3*360, + offset=-360) + "Ramp model generating a singal from -360 to 720"; + +initial equation + assert(size(incAngSurNor, 1) == size(Cp, 1), "In " + getInstanceName() + + ": Size of parameters are size(CpincAng, 1) = " + String(size(incAngSurNor, + 1)) + " and size(Cp, 1) = " + String(size(Cp, 1)) + ". They must be equal."); + + assert(abs(incAngSurNor[1]) < 1E-4, "In " + getInstanceName() + + ": First point in the table CpAngAtt must be 0."); + + assert(2*Modelica.Constants.pi - incAngSurNor[end] > 1E-4, "In " + + getInstanceName() + + ": Last point in the table CpAngAtt must be smaller than 2 pi (360 deg)."); + +equation + alpha=Modelica.Constants.D2R*ramp.y; + CpAct =AixLib.Airflow.Multizone.BaseClasses.windPressureProfile( + alpha=alpha, + incAngTab=incAngExt, + CpTab=CpExt, + d=deri) "Actual wind pressure coefficient"; + + + annotation ( +experiment( + StopTime=500, + Tolerance=1e-06), + __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Airflow/Multizone/BaseClasses/Examples/WindPressureProfile.mos" + "Simulate and plot"), Documentation(info=" +

+ This examples demonstrates the + + AixLib.Airflow.Multizone.BaseClasses.windPressureProfile + function. +

+ ",revisions=" + + + "), + __Dymola_LockedEditing="Model from IBPSA"); +end WindPressureProfile; diff --git a/AixLib/Airflow/Multizone/BaseClasses/Examples/package.order b/AixLib/Airflow/Multizone/BaseClasses/Examples/package.order index e16ffa9072..e841c46bf2 100644 --- a/AixLib/Airflow/Multizone/BaseClasses/Examples/package.order +++ b/AixLib/Airflow/Multizone/BaseClasses/Examples/package.order @@ -1,3 +1,5 @@ +Interpolate PowerLaw PowerLawFixedM WindPressureLowRise +WindPressureProfile diff --git a/AixLib/Airflow/Multizone/BaseClasses/PartialOneWayFlowElement.mo b/AixLib/Airflow/Multizone/BaseClasses/PartialOneWayFlowElement.mo new file mode 100644 index 0000000000..e99337ef06 --- /dev/null +++ b/AixLib/Airflow/Multizone/BaseClasses/PartialOneWayFlowElement.mo @@ -0,0 +1,125 @@ +within AixLib.Airflow.Multizone.BaseClasses; +partial model PartialOneWayFlowElement + "Partial model for flow resistance with one-way flow" + extends AixLib.Fluid.Interfaces.PartialTwoPortInterface( + final allowFlowReversal=true); + extends AixLib.Airflow.Multizone.BaseClasses.ErrorControl; + + constant Boolean homotopyInitialization = true "= true, use homotopy method" + annotation(HideResult=true, Dialog(tab="Advanced")); + + parameter Boolean useDefaultProperties=true + "Set to false to use density and viscosity based on actual medium state, rather than using default values" + annotation(Evaluate=true, Dialog(tab="Advanced")); + parameter Modelica.Units.SI.PressureDifference dp_turbulent(min=0, displayUnit="Pa") = 0.1 + "Pressure difference where laminar and turbulent flow relation coincide. Recommended = 0.1" + annotation(Dialog(tab="Advanced")); + + Modelica.Units.SI.VolumeFlowRate V_flow = m_flow/rho + "Volume flow rate through the component"; + Modelica.Units.SI.Density rho "Fluid density at port_a"; + +protected + parameter Medium.ThermodynamicState sta_default=Medium.setState_pTX( + T=Medium.T_default, + p=Medium.p_default, + X=Medium.X_default) + "State of the medium at the medium default properties"; + parameter Modelica.Units.SI.Density rho_default=Medium.density(sta_default) + "Density at the medium default properties"; + parameter Modelica.Units.SI.DynamicViscosity dynVis_default= + Medium.dynamicViscosity(sta_default) + "Dynamic viscosity at the medium default properties"; + + Medium.ThermodynamicState sta "State of the medium in the component"; + Modelica.Units.SI.DynamicViscosity dynVis "Dynamic viscosity"; + Real mExc(quantity="Mass", final unit="kg") + "Air mass exchanged (for purpose of error control only)"; + +initial equation + mExc=0; + assert(homotopyInitialization, "In " + getInstanceName() + + ": The constant homotopyInitialization has been modified from its default value. This constant will be removed in future releases.", + level = AssertionLevel.warning); + +equation + if forceErrorControlOnFlow then + der(mExc) = port_a.m_flow; + else + der(mExc) = 0; + end if; + + if useDefaultProperties then + sta = sta_default; + rho = rho_default; + dynVis = dynVis_default; + + else + sta = if homotopyInitialization then + Medium.setState_phX( + port_a.p, + homotopy( + actual=actualStream(port_a.h_outflow), + simplified=inStream(port_a.h_outflow)), + homotopy( + actual=actualStream(port_a.Xi_outflow), + simplified=inStream(port_a.Xi_outflow))) + else + Medium.setState_phX( + port_a.p, + actualStream(port_a.h_outflow), + actualStream(port_a.Xi_outflow)); + + rho = Medium.density(sta); + dynVis = Medium.dynamicViscosity(sta); + end if; + + // Isenthalpic state transformation (no storage and no loss of energy) + port_a.h_outflow = inStream(port_b.h_outflow); + port_b.h_outflow = inStream(port_a.h_outflow); + + // Mass balance (no storage) + port_a.m_flow + port_b.m_flow = 0; + + // Transport of substances + port_a.Xi_outflow = inStream(port_b.Xi_outflow); + port_b.Xi_outflow = inStream(port_a.Xi_outflow); + + port_a.C_outflow = inStream(port_b.C_outflow); + port_b.C_outflow = inStream(port_a.C_outflow); + + m_flow=port_a.m_flow; + + annotation ( + Documentation(info=" +

+ This partial model is used to model one way flow-elements. + It holds the conservation equations and should be extended by + definition of one of the following variables: +

+

m_flow = mass flow rate trough the component

+

or

+

V_flow = volume flow rate through the component

+

+ The flow from A->B is the positive flow. + The resulting equation should be in the extends statement, + not in the equation section since this model sets both + m_flow = V_flow*rho and V_flow = m_flow/rho. +

+ ", +revisions=" + + "), + __Dymola_LockedEditing="Model from IBPSA"); +end PartialOneWayFlowElement; diff --git a/AixLib/Airflow/Multizone/BaseClasses/PowerLawResistance.mo b/AixLib/Airflow/Multizone/BaseClasses/PowerLawResistance.mo deleted file mode 100644 index 6b1dc0c30c..0000000000 --- a/AixLib/Airflow/Multizone/BaseClasses/PowerLawResistance.mo +++ /dev/null @@ -1,214 +0,0 @@ -within AixLib.Airflow.Multizone.BaseClasses; -partial model PowerLawResistance "Flow resistance that uses the power law" - extends AixLib.Fluid.Interfaces.PartialTwoPortInterface( - final allowFlowReversal=true, - final m_flow_nominal=rho_default*k*dp_turbulent, - final m_flow_small=1E-4*abs(m_flow_nominal)); - extends AixLib.Airflow.Multizone.BaseClasses.ErrorControl; - - constant Boolean homotopyInitialization = true "= true, use homotopy method" - annotation(HideResult=true); - - parameter Real m(min=0.5, max=1) - "Flow exponent, m=0.5 for turbulent, m=1 for laminar"; - parameter Boolean useDefaultProperties=true - "Set to false to use density and viscosity based on actual medium state, rather than using default values" - annotation(Evaluate=true, Dialog(tab="Advanced")); - parameter Modelica.SIunits.PressureDifference dp_turbulent(min=0, displayUnit="Pa") = 0.1 - "Pressure difference where laminar and turbulent flow relation coincide. Recommended = 0.1" - annotation(Dialog(tab="Advanced")); - - Modelica.SIunits.VolumeFlowRate V_flow - "Volume flow rate through the component"; - Modelica.SIunits.Velocity v(nominal=1) "Average velocity"; - Modelica.SIunits.Density rho "Fluid density at port_a"; - -protected - constant Real gamma(min=1) = 1.5 - "Normalized flow rate where dphi(0)/dpi intersects phi(1)"; - - parameter Real k "Flow coefficient, k = V_flow/ dp^m"; - - parameter Medium.ThermodynamicState sta_default=Medium.setState_pTX( - T=Medium.T_default, - p=Medium.p_default, - X=Medium.X_default) - "State of the medium at the medium default properties"; - parameter Modelica.SIunits.Density rho_default=Medium.density(sta_default) - "Density at the medium default properties"; - parameter Modelica.SIunits.DynamicViscosity dynVis_default= - Medium.dynamicViscosity(sta_default) - "Dynamic viscosity at the medium default properties"; - - parameter Real a = gamma - "Polynomial coefficient for regularized implementation of flow resistance"; - parameter Real b = 1/8*m^2 - 3*gamma - 3/2*m + 35.0/8 - "Polynomial coefficient for regularized implementation of flow resistance"; - parameter Real c = -1/4*m^2 + 3*gamma + 5/2*m - 21.0/4 - "Polynomial coefficient for regularized implementation of flow resistance"; - parameter Real d = 1/8*m^2 - gamma - m + 15.0/8 - "Polynomial coefficient for regularized implementation of flow resistance"; - - Medium.ThermodynamicState sta "State of the medium in the component"; - Modelica.SIunits.DynamicViscosity dynVis "Dynamic viscosity"; - Real mExc(quantity="Mass", final unit="kg") - "Air mass exchanged (for purpose of error control only)"; -initial equation - mExc=0; - assert(homotopyInitialization, "In " + getInstanceName() + - ": The constant homotopyInitialization has been modified from its default value. This constant will be removed in future releases.", - level = AssertionLevel.warning); - -equation - if forceErrorControlOnFlow then - der(mExc) = port_a.m_flow; - else - der(mExc) = 0; - end if; - - if useDefaultProperties then - sta = sta_default; - rho = rho_default; - dynVis = dynVis_default; - else - sta = if homotopyInitialization then - Medium.setState_phX(port_a.p, - homotopy(actual=actualStream(port_a.h_outflow), - simplified=inStream(port_a.h_outflow)), - homotopy(actual=actualStream(port_a.Xi_outflow), - simplified=inStream(port_a.Xi_outflow))) - else - Medium.setState_phX(port_a.p, - actualStream(port_a.h_outflow), - actualStream(port_a.Xi_outflow)); - - rho = Medium.density(sta); - dynVis = Medium.dynamicViscosity(sta); - end if; - - V_flow = AixLib.Airflow.Multizone.BaseClasses.powerLawFixedM( - k=k, - dp=dp, - m=m, - a=a, - b=b, - c=c, - d=d, - dp_turbulent=dp_turbulent); - - port_a.m_flow = rho*V_flow; - - // Isenthalpic state transformation (no storage and no loss of energy) - port_a.h_outflow = inStream(port_b.h_outflow); - port_b.h_outflow = inStream(port_a.h_outflow); - - // Mass balance (no storage) - port_a.m_flow + port_b.m_flow = 0; - - // Transport of substances - port_a.Xi_outflow = inStream(port_b.Xi_outflow); - port_b.Xi_outflow = inStream(port_a.Xi_outflow); - - port_a.C_outflow = inStream(port_b.C_outflow); - port_b.C_outflow = inStream(port_a.C_outflow); - annotation ( - Documentation(info=" -

-This model describes the mass flow rate and pressure difference relation -of an orifice in the form -

-
-    V_flow = k * dp^m,
-
-

-where k is a variable and -m a parameter. -For turbulent flow, set m=1/2 and -for laminar flow, set m=1. -

-

-The model is used as a base for the interzonal air flow models. -

-", -revisions=" - -")); -end PowerLawResistance; diff --git a/AixLib/Airflow/Multizone/BaseClasses/PowerLawResistanceParameters.mo b/AixLib/Airflow/Multizone/BaseClasses/PowerLawResistanceParameters.mo new file mode 100644 index 0000000000..5b30b61ad9 --- /dev/null +++ b/AixLib/Airflow/Multizone/BaseClasses/PowerLawResistanceParameters.mo @@ -0,0 +1,33 @@ +within AixLib.Airflow.Multizone.BaseClasses; +model PowerLawResistanceParameters "Power law resistance parameters" + parameter Real m(min=0.5, max=1) + "Flow exponent, m=0.5 for turbulent, m=1 for laminar"; +protected + constant Real gamma(min=1) = 1.5 + "Normalized flow rate where dphi(0)/dpi intersects phi(1)"; + + parameter Real a = gamma + "Polynomial coefficient for regularized implementation of flow resistance"; + parameter Real b = 1/8*m^2 - 3*gamma - 3/2*m + 35.0/8 + "Polynomial coefficient for regularized implementation of flow resistance"; + parameter Real c = -1/4*m^2 + 3*gamma + 5/2*m - 21.0/4 + "Polynomial coefficient for regularized implementation of flow resistance"; + parameter Real d = 1/8*m^2 - gamma - m + 15.0/8 + "Polynomial coefficient for regularized implementation of flow resistance"; + annotation (Icon(coordinateSystem(preserveAspectRatio=false)), Diagram( + coordinateSystem(preserveAspectRatio=false)), + Documentation(info=" +

+ Parameters that are required for the components that implement a power law resistance. +

+ ",revisions=" + + + "), + __Dymola_LockedEditing="Model from IBPSA"); +end PowerLawResistanceParameters; diff --git a/AixLib/Airflow/Multizone/BaseClasses/TwoWayFlowElement.mo b/AixLib/Airflow/Multizone/BaseClasses/TwoWayFlowElement.mo index 8d6b4efe71..91c5671a0e 100644 --- a/AixLib/Airflow/Multizone/BaseClasses/TwoWayFlowElement.mo +++ b/AixLib/Airflow/Multizone/BaseClasses/TwoWayFlowElement.mo @@ -16,34 +16,34 @@ partial model TwoWayFlowElement "Flow resistance that uses the power law" annotation (choices( choice(redeclare package Medium = AixLib.Media.Air "Moist air"))); - parameter Modelica.SIunits.Velocity vZer=0.001 + parameter Modelica.Units.SI.Velocity vZer=0.001 "Minimum velocity to prevent zero flow. Recommended: 0.001"; - Modelica.SIunits.VolumeFlowRate VAB_flow(nominal=0.001) + Modelica.Units.SI.VolumeFlowRate VAB_flow(nominal=0.001) "Volume flow rate from A to B if positive"; - Modelica.SIunits.VolumeFlowRate VBA_flow(nominal=0.001) + Modelica.Units.SI.VolumeFlowRate VBA_flow(nominal=0.001) "Volume flow rate from B to A if positive"; - Modelica.SIunits.MassFlowRate mAB_flow(nominal=0.001) + Modelica.Units.SI.MassFlowRate mAB_flow(nominal=0.001) "Mass flow rate from A to B if positive"; - Modelica.SIunits.MassFlowRate mBA_flow(nominal=0.001) + Modelica.Units.SI.MassFlowRate mBA_flow(nominal=0.001) "Mass flow rate from B to A if positive"; - Modelica.SIunits.Velocity vAB(nominal=0.01) "Average velocity from A to B"; - Modelica.SIunits.Velocity vBA(nominal=0.01) "Average velocity from B to A"; + Modelica.Units.SI.Velocity vAB(nominal=0.01) "Average velocity from A to B"; + Modelica.Units.SI.Velocity vBA(nominal=0.01) "Average velocity from B to A"; - Modelica.SIunits.Density rho_a1_inflow + Modelica.Units.SI.Density rho_a1_inflow "Density of air flowing in from port_a1"; - Modelica.SIunits.Density rho_a2_inflow + Modelica.Units.SI.Density rho_a2_inflow "Density of air flowing in from port_a2"; - Modelica.SIunits.Area A "Face area"; + Modelica.Units.SI.Area A "Face area"; protected - Modelica.SIunits.VolumeFlowRate VZer_flow(fixed=false) + Modelica.Units.SI.VolumeFlowRate VZer_flow(fixed=false) "Minimum net volume flow rate to prevent zero flow"; - Modelica.SIunits.Mass mExcAB(start=0, fixed=true) + Modelica.Units.SI.Mass mExcAB(start=0, fixed=true) "Air mass exchanged (for purpose of error control only)"; - Modelica.SIunits.Mass mExcBA(start=0, fixed=true) + Modelica.Units.SI.Mass mExcBA(start=0, fixed=true) "Air mass exchanged (for purpose of error control only)"; Medium.MassFraction Xi_a1_inflow[Medium1.nXi] @@ -119,73 +119,74 @@ equation fillPattern=FillPattern.Solid, pattern=LinePattern.None)}), Documentation(info=" -

-This is a partial model for models that describe the bi-directional -air flow through large openings. -

-

-Models that extend this model need to compute -mAB_flow and mBA_flow, -or alternatively VAB_flow and VBA_flow, -and the face area area. -The face area is a variable to allow this partial model to be used -for doors that can be open or closed as a function of an input signal. -

-", +

+ This is a partial model for models that describe the bi-directional + air flow through large openings. +

+

+ Models that extend this model need to compute + mAB_flow and mBA_flow, + or alternatively VAB_flow and VBA_flow, + and the face area area. + The face area is a variable to allow this partial model to be used + for doors that can be open or closed as a function of an input signal. +

+ ", revisions=" - -")); + + "), + __Dymola_LockedEditing="Model from IBPSA"); end TwoWayFlowElement; diff --git a/AixLib/Airflow/Multizone/BaseClasses/TwoWayFlowElementBuoyancy.mo b/AixLib/Airflow/Multizone/BaseClasses/TwoWayFlowElementBuoyancy.mo index 3e68797381..d33c695f50 100644 --- a/AixLib/Airflow/Multizone/BaseClasses/TwoWayFlowElementBuoyancy.mo +++ b/AixLib/Airflow/Multizone/BaseClasses/TwoWayFlowElementBuoyancy.mo @@ -3,45 +3,44 @@ partial model TwoWayFlowElementBuoyancy "Flow resistance that uses the power law" extends AixLib.Airflow.Multizone.BaseClasses.TwoWayFlowElement; - parameter Modelica.SIunits.Length wOpe=0.9 "Width of opening" + parameter Modelica.Units.SI.Length wOpe=0.9 "Width of opening" annotation (Dialog(group="Geometry")); - parameter Modelica.SIunits.Length hOpe=2.1 "Height of opening" + parameter Modelica.Units.SI.Length hOpe=2.1 "Height of opening" annotation (Dialog(group="Geometry")); - parameter Modelica.SIunits.Length hA=2.7/2 - "Height of reference pressure zone A" - annotation (Dialog(group="Geometry")); - parameter Modelica.SIunits.Length hB=2.7/2 - "Height of reference pressure zone B" - annotation (Dialog(group="Geometry")); + parameter Modelica.Units.SI.Length hA=2.7/2 + "Height of reference pressure zone A" annotation (Dialog(group="Geometry")); + parameter Modelica.Units.SI.Length hB=2.7/2 + "Height of reference pressure zone B" annotation (Dialog(group="Geometry")); annotation (Documentation(info=" -

-This is a partial model for models that describe the bi-directional -air flow through large openings. -

-

-Models that extend this model need to compute -mAB_flow and mBA_flow, -or alternatively VAB_flow and VBA_flow, -and the face area area. -The face area is a variable to allow this partial model to be used -for doors that can be open or closed as a function of an input signal. -

-", +

+ This is a partial model for models that describe the bi-directional + air flow through large openings. +

+

+ Models that extend this model need to compute + mAB_flow and mBA_flow, + or alternatively VAB_flow and VBA_flow, + and the face area area. + The face area is a variable to allow this partial model to be used + for doors that can be open or closed as a function of an input signal. +

+ ", revisions=" - -")); + + "), + __Dymola_LockedEditing="Model from IBPSA"); end TwoWayFlowElementBuoyancy; diff --git a/AixLib/Airflow/Multizone/BaseClasses/ZonalFlow.mo b/AixLib/Airflow/Multizone/BaseClasses/ZonalFlow.mo index 1b99b283c0..c6ac6cd98f 100644 --- a/AixLib/Airflow/Multizone/BaseClasses/ZonalFlow.mo +++ b/AixLib/Airflow/Multizone/BaseClasses/ZonalFlow.mo @@ -11,6 +11,7 @@ partial model ZonalFlow "Flow across zonal boundaries of a room" final m2_flow_small=1E-4*abs(m2_flow_nominal)); replaceable package Medium = Modelica.Media.Interfaces.PartialMedium + "Medium in the component" annotation (choices( choice(redeclare package Medium = AixLib.Media.Air "Moist air"))); @@ -63,38 +64,39 @@ equation origin={-79,-63}, rotation=360)}), Documentation(info=" -

-This is a partial model for computing the air exchange between volumes. -Models that extend this model need to provide an equation for -port_a1.m_flow and port_a2.m_flow. -

-", +

+ This is a partial model for computing the air exchange between volumes. + Models that extend this model need to provide an equation for + port_a1.m_flow and port_a2.m_flow. +

+ ", revisions=" - -")); + + "), + __Dymola_LockedEditing="Model from IBPSA"); end ZonalFlow; diff --git a/AixLib/Airflow/Multizone/BaseClasses/interpolate.mo b/AixLib/Airflow/Multizone/BaseClasses/interpolate.mo new file mode 100644 index 0000000000..24ea877e03 --- /dev/null +++ b/AixLib/Airflow/Multizone/BaseClasses/interpolate.mo @@ -0,0 +1,82 @@ +within AixLib.Airflow.Multizone.BaseClasses; +function interpolate + "Function for the interpolation of table data for airflow models" + extends Modelica.Icons.Function; + + input Real u "Independent variable"; + input Real[:] xd "X-axis support points"; + input Real[size(xd, 1)] yd "Y-axis support points"; + input Real[size(xd, 1)] d(each fixed=false) "Derivatives at the support points"; + + output Real z "Dependent variable with monotone interpolation"; + +protected + Integer i "Integer to select data interval"; + +algorithm + i := 1; + for j in 1:size(xd, 1) - 1 loop + if u > xd[j] then + i := j; + end if; + end for; + + // Extrapolate or interpolate the data + if i == 1 then + z:=yd[1]+(u-xd[1])*(yd[2]-yd[1])/(xd[2]-xd[1]); //Interpolate linearly between first and second point + elseif i == (size(xd, 1) - 1) then + z:=yd[end-1]+(u-xd[end-1])*(yd[end]-yd[end-1])/(xd[end]-xd[end-1]); //Interpolate linearly between last and second-to-last point. + + else + z :=AixLib.Utilities.Math.Functions.cubicHermiteLinearExtrapolation( + x=u, + x1=xd[i], + x2=xd[i + 1], + y1=yd[i], + y2=yd[i + 1], + y1d=d[i], + y2d=d[i + 1]); + end if; + + annotation ( + Documentation(info=" +

+ This function returns the value on a cubic hermite spline through the given support points + and provided spline derivatives at these points with monotonically increasing values. + The last 2 points in the table are linearly interpolated. +

+

+ A similar model is also used in the CONTAM software (Dols and Walton, 2015). +

+

+ This function is used in + + AixLib.Airflow.Multizone.Table_m_flow and + AixLib.Airflow.Multizone.Table_V_flow +

+

+ References +

+ + ",revisions=" + + "), + __Dymola_LockedEditing="Model from IBPSA"); +end interpolate; diff --git a/AixLib/Airflow/Multizone/BaseClasses/package.order b/AixLib/Airflow/Multizone/BaseClasses/package.order index b5aba95f32..698bba52a4 100644 --- a/AixLib/Airflow/Multizone/BaseClasses/package.order +++ b/AixLib/Airflow/Multizone/BaseClasses/package.order @@ -1,11 +1,14 @@ Door DoorDiscretized ErrorControl -PowerLawResistance +PartialOneWayFlowElement +PowerLawResistanceParameters TwoWayFlowElement TwoWayFlowElementBuoyancy ZonalFlow +interpolate powerLaw powerLawFixedM windPressureLowRise +windPressureProfile Examples diff --git a/AixLib/Airflow/Multizone/BaseClasses/powerLaw.mo b/AixLib/Airflow/Multizone/BaseClasses/powerLaw.mo index 58572d9f99..dde6ce74a6 100644 --- a/AixLib/Airflow/Multizone/BaseClasses/powerLaw.mo +++ b/AixLib/Airflow/Multizone/BaseClasses/powerLaw.mo @@ -1,13 +1,16 @@ within AixLib.Airflow.Multizone.BaseClasses; function powerLaw "Power law used in orifice equations" - input Real k "Flow coefficient, k = V_flow/ dp^m"; - input Modelica.SIunits.PressureDifference dp(displayUnit="Pa") "Pressure difference"; + extends Modelica.Icons.Function; + + input Real C "Flow coefficient, C = V_flow/ dp^m"; + input Modelica.Units.SI.PressureDifference dp(displayUnit="Pa") + "Pressure difference"; input Real m(min=0.5, max=1) "Flow exponent, m=0.5 for turbulent, m=1 for laminar"; - input Modelica.SIunits.PressureDifference dp_turbulent(min=0, - displayUnit="Pa")=0.001 - "Pressure difference where regularization starts"; - output Modelica.SIunits.VolumeFlowRate V_flow "Volume flow rate"; + input Modelica.Units.SI.PressureDifference dp_turbulent( + min=0, + displayUnit="Pa") = 0.001 "Pressure difference where regularization starts"; + output Modelica.Units.SI.VolumeFlowRate V_flow "Volume flow rate"; protected constant Real gamma(min=1) = 1.5 "Normalized flow rate where dphi(0)/dpi intersects phi(1)"; @@ -23,9 +26,9 @@ protected Real pi2 "Square of normalized pressure"; algorithm if (dp >= dp_turbulent) then - V_flow := k*dp^m; + V_flow :=C *dp^m; elseif (dp <= -dp_turbulent) then - V_flow :=-k*(-dp)^m; + V_flow :=-C*(-dp)^m; else a := gamma; b := 1/8*m^2 - 3*gamma - 3/2*m + 35.0/8; @@ -33,66 +36,74 @@ algorithm d := 1/8*m^2 - gamma - m + 15.0/8; pi := dp/dp_turbulent; pi2 := pi*pi; - V_flow := k*dp_turbulent^m * pi * ( a + pi2 * ( b + pi2 * ( c + pi2 * d))); + V_flow :=C *dp_turbulent^m * pi * ( a + pi2 * ( b + pi2 * ( c + pi2 * d))); end if; annotation (smoothOrder=2, Documentation(info=" -

-This model describes the mass flow rate and pressure difference relation -of an orifice in the form -

-

- V = k sign(Δp) |Δp|m -

-

-where -V is the volume flow rate, -k > 0 is a flow coefficient -Δ p is the pressure drop and -m ∈ [0.5, 1] is a flow coefficient. -The equation is regularized for -|Δp| < Δpt, where -Δpt is a parameter. -For turbulent flow, set m=1 ⁄ 2 and -for laminar flow, set m=1. -

-

-The model is used for the interzonal air flow models. -

-

Implementation

-

-For |Δp| < Δpt, the equation is regularized -so that it is twice continuously differentiable in Δp, and that it -has an infinite number of continuous derivatives in m and in k. -

-

-If m is not a function of time, then -a, b, c and d can be pre-computed. -In this situation, use - -Buildings.Airflow.Multizone.BaseClasses.powerLawFixedM, which allows -to compute these values outside of this function, for example as parameters -of a model. -

-", +

+ This model describes the mass flow rate and pressure difference relation + of an orifice in the form +

+

+ V̇ = C sign(Δp) |Δp|m +

+

+ where + is the volume flow rate, + C > 0 is a flow coefficient + Δ p is the pressure drop and + m ∈ [0.5, 1] is a flow coefficient. + The equation is regularized for + |Δp| < Δpt, where + Δpt is a parameter. + For turbulent flow, set m=1 ⁄ 2 and + for laminar flow, set m=1. +

+

+ The model is used for the interzonal air flow models. +

+

Implementation

+

+ For |Δp| < Δpt, the equation is regularized + so that it is twice continuously differentiable in Δp, and that it + has an infinite number of continuous derivatives in m and in k. +

+

+ If m is not a function of time, then + a, b, c and d can be pre-computed. + In this situation, use + + AixLib.Airflow.Multizone.BaseClasses.powerLawFixedM, which allows + to compute these values outside of this function, for example as parameters + of a model. +

+ ", revisions=" - -")); + + "), + __Dymola_LockedEditing="Model from IBPSA"); end powerLaw; diff --git a/AixLib/Airflow/Multizone/BaseClasses/powerLawFixedM.mo b/AixLib/Airflow/Multizone/BaseClasses/powerLawFixedM.mo index 1cadfce269..ed39f7aa36 100644 --- a/AixLib/Airflow/Multizone/BaseClasses/powerLawFixedM.mo +++ b/AixLib/Airflow/Multizone/BaseClasses/powerLawFixedM.mo @@ -1,17 +1,20 @@ within AixLib.Airflow.Multizone.BaseClasses; function powerLawFixedM "Power law used in orifice equations when m is constant" - input Real k "Flow coefficient, k = V_flow/ dp^m"; - input Modelica.SIunits.PressureDifference dp(displayUnit="Pa") "Pressure difference"; + extends Modelica.Icons.Function; + + input Real C "Flow coefficient, C = V_flow/ dp^m"; + input Modelica.Units.SI.PressureDifference dp(displayUnit="Pa") + "Pressure difference"; input Real m(min=0.5, max=1) "Flow exponent, m=0.5 for turbulent, m=1 for laminar"; input Real a "Polynomial coefficient"; input Real b "Polynomial coefficient"; input Real c "Polynomial coefficient"; input Real d "Polynomial coefficient"; - input Modelica.SIunits.PressureDifference dp_turbulent(min=0)=0.001 + input Modelica.Units.SI.PressureDifference dp_turbulent(min=0) = 0.001 "Pressure difference where regularization starts"; - output Modelica.SIunits.VolumeFlowRate V_flow "Volume flow rate"; + output Modelica.Units.SI.VolumeFlowRate V_flow "Volume flow rate"; protected constant Real gamma(min=1) = 1.5 "Normalized flow rate where dphi(0)/dpi intersects phi(1)"; @@ -19,71 +22,90 @@ protected Real pi2 "Square of normalized pressure"; algorithm if (dp >= dp_turbulent) then - V_flow := k*dp^m; + V_flow :=C *dp^m; elseif (dp <= -dp_turbulent) then - V_flow :=-k*(-dp)^m; + V_flow :=-C*(-dp)^m; else pi := dp/dp_turbulent; pi2 := pi*pi; - V_flow := k*dp_turbulent^m * pi * ( a + pi2 * ( b + pi2 * ( c + pi2 * d))); + V_flow :=C *dp_turbulent^m * pi * ( a + pi2 * ( b + pi2 * ( c + pi2 * d))); end if; annotation (smoothOrder=2, Documentation(info=" -

-This model describes the mass flow rate and pressure difference relation -of an orifice in the form -

-

- V = k sign(Δp) |Δp|m -

-

-where -V is the volume flow rate, -k > 0 is a flow coefficient -Δ p is the pressure drop and -m ∈ [0.5, 1] is a flow coefficient. -The equation is regularized for -|Δp| < Δpt, where -Δpt is a parameter. -For turbulent flow, set m=1 ⁄ 2 and -for laminar flow, set m=1. -

-

-The model is used for the interzonal air flow models. -It is identical to - -Buildings.Airflow.Multizone.BaseClasses.powerLaw but it -requires the polynomial coefficients as an input. -This allows a more efficient simulation if m and therefore also -a, b, c and d are constant. -

-

Implementation

-

-For |Δp| < Δpt, the equation is regularized -so that it is twice continuously differentiable in Δp, and that it -has an infinite number of continuous derivatives in m and in k. -

-

-If m, and therefore also -a, b, c and d, change with time, then -it is more convenient and efficient to use - -Buildings.Airflow.Multizone.BaseClasses.powerLaw. -

-", +

+ This model describes the mass flow rate and pressure difference relation + of an orifice in the form +

+

+ V̇ = C sign(Δp) |Δp|m +

+

+ where + is the volume flow rate, + C > 0 is a flow coefficient + Δ p is the pressure drop and + m ∈ [0.5, 1] is a flow coefficient. + The equation is regularized for + |Δp| < Δpt, where + Δpt is a parameter. + For turbulent flow, set m=1 ⁄ 2 and + for laminar flow, set m=1. +

+

+ The model is used for the interzonal air flow models. + It is identical to + + AixLib.Airflow.Multizone.BaseClasses.powerLaw but it + requires the polynomial coefficients as an input. + This allows a more efficient simulation if m and therefore also + a, b, c and d are constant. +

+

Implementation

+

+ For |Δp| < Δpt, the equation is regularized + so that it is twice continuously differentiable in Δp, and that it + has an infinite number of continuous derivatives in m and in k. +

+

+ If m, and therefore also + a, b, c and d, change with time, then + it is more convenient and efficient to use + + AixLib.Airflow.Multizone.BaseClasses.powerLaw. +

+ ", revisions=" - -")); + + "), + __Dymola_LockedEditing="Model from IBPSA"); end powerLawFixedM; diff --git a/AixLib/Airflow/Multizone/BaseClasses/windPressureLowRise.mo b/AixLib/Airflow/Multizone/BaseClasses/windPressureLowRise.mo index 12bba175ab..6aab5b5ebf 100644 --- a/AixLib/Airflow/Multizone/BaseClasses/windPressureLowRise.mo +++ b/AixLib/Airflow/Multizone/BaseClasses/windPressureLowRise.mo @@ -1,25 +1,27 @@ within AixLib.Airflow.Multizone.BaseClasses; function windPressureLowRise "Wind pressure coefficient for low-rise buildings" - input Real Cp0(min=0) + extends Modelica.Icons.Function; + + input Real Cp0 "Wind pressure coefficient for normal wind incidence angle"; - input Modelica.SIunits.Angle incAng + input Modelica.Units.SI.Angle alpha "Wind incidence angle (0: normal to wall)"; input Real G "Natural logarithm of side ratio"; output Real Cp "Wind pressure coefficient"; protected - constant Modelica.SIunits.Angle pi2 = 2*Modelica.Constants.pi; - constant Modelica.SIunits.Angle aRDel = 5*Modelica.Constants.pi/180 + constant Modelica.Units.SI.Angle pi2=2*Modelica.Constants.pi; + constant Modelica.Units.SI.Angle aRDel=5*Modelica.Constants.pi/180 "Lower bound where transition occurs"; - constant Modelica.SIunits.Angle aRDel2 = aRDel/2 + constant Modelica.Units.SI.Angle aRDel2=aRDel/2 "Half-width of transition interval"; - constant Modelica.SIunits.Angle aRMax = 175*Modelica.Constants.pi/180 + constant Modelica.Units.SI.Angle aRMax=175*Modelica.Constants.pi/180 "Upper bound where transition occurs"; Real a180 = Modelica.Math.log(1.248 - 0.703 + 0.131*Modelica.Math.sin(2*Modelica.Constants.pi*G)^3 + 0.071*G^2) "Attenuation factor at 180 degree incidence angle"; - Modelica.SIunits.Angle aR "alpha, restricted to 0...pi"; - Modelica.SIunits.Angle incAng2 "0.5*wind incidence angle"; + Modelica.Units.SI.Angle aR "alpha, restricted to 0...pi"; + Modelica.Units.SI.Angle incAng2 "0.5*wind incidence angle"; Real sinA2 "=sin(alpha/2)"; Real cosA2 "=cos(alpha/2)"; Real a "Attenuation factor"; @@ -27,7 +29,7 @@ algorithm // Restrict incAng to [0...pi] // Change sign to positive - aR := if incAng < 0 then -incAng else incAng; + aR :=if alpha < 0 then -alpha else alpha; // Constrain to [0...2*pi] if aR > pi2 then aR := aR - integer(aR/pi2)*pi2; @@ -66,110 +68,115 @@ algorithm annotation ( smoothOrder=1, Documentation(info=" -

-This function computes the wind pressure coefficient for -low-rise buildings with rectangular shape. -The correlation is the data fit from Swami and Chandra (1987), -who fitted a function to various wind pressure coefficients from the literature. -The same correlation is also implemented in CONTAM (Persily and Ivy, 2001). -

-

-The wind pressure coefficient is computed based on the -natural logarithm of the side ratio of the walls, which is defined as -

-

-G = ln(x ⁄ y) -

-

-where x is the length of the wall that will be connected to -this model, and y is the length of the adjacent wall as shown -in the figure below. -

-

-\"Definition -

-

-Based on the wind incidence angle α and the side ratio -of the walls, the model computes how much the wind pressure -is attenuated compared to the reference wind pressure Cp0. -The reference wind pressure Cp0 is a user-defined parameter, -and must be equal to the wind pressure at zero wind incidence angle, i.e., -α = 0. -Swami and Chandra (1987) recommend Cp0 = 0.6 for -all low-rise buildings as this represents the average of -various values reported in the literature. -The attenuation factor is -

-

-Cp ⁄ Cp0 = ln(1.248 - 0.703 sin(α ⁄ 2) - - 1.175 sin2(α) - - 0.131 sin3(2 α G) - + 0.769 cos(α ⁄ 2) - +0.071 G2 * sin2(α ⁄ 2) - + 0.717 cos2(α ⁄ 2)), -

-

-where -Cp is the wind pressure coefficient for -the current angle of incidence. -

-

-This function is used in - -Buildings.Fluid.Sources.Outside_CpLowRise -which can be used directly with components of this package. -

-

References

- -

Implementation

-

-Symmetry requires that the first derivative of the wind pressure coefficient -with respect to the incidence angle is zero for incidence angles of zero and π. -However, the correlation of Swami and Chandra has non-zero derivatives at these values. -In this implementation, the original function is therefore slightly modified for incidence angles -between 0 and 5 degree, and between 175 and 180 degree. -This leads to a model that is differentiable in the incidence angle, -which generally leads to better numeric performance. -

-", revisions=" - -")); +

+ This function computes the wind pressure coefficient for + low-rise buildings with rectangular shape. + The correlation is the data fit from Swami and Chandra (1987), + who fitted a function to various wind pressure coefficients from the literature. + The same correlation is also implemented in CONTAM (Persily and Ivy, 2001). +

+

+ The wind pressure coefficient is computed based on the + natural logarithm of the side ratio of the walls, which is defined as +

+

+ G = ln(x ⁄ y) +

+

+ where x is the length of the wall that will be connected to + this model, and y is the length of the adjacent wall as shown + in the figure below. +

+

+ \"Definition +

+

+ Based on the wind incidence angle α and the side ratio + of the walls, the model computes how much the wind pressure + is attenuated compared to the reference wind pressure Cp0. + The reference wind pressure Cp0 is a user-defined parameter, + and must be equal to the wind pressure at zero wind incidence angle, i.e., + α = 0. + Swami and Chandra (1987) recommend Cp0 = 0.6 for + all low-rise buildings as this represents the average of + various values reported in the literature. + The attenuation factor is +

+

+ Cp ⁄ Cp0 = ln(1.248 - 0.703 sin(α ⁄ 2) + - 1.175 sin2(α) + - 0.131 sin3(2 α G) + + 0.769 cos(α ⁄ 2) + +0.071 G2 * sin2(α ⁄ 2) + + 0.717 cos2(α ⁄ 2)), +

+

+ where + Cp is the wind pressure coefficient for + the current angle of incidence. +

+

+ This function is used in + + Buildings.Fluid.Sources.Outside_CpLowRise + which can be used directly with components of this package. +

+

References

+ +

Implementation

+

+ Symmetry requires that the first derivative of the wind pressure coefficient + with respect to the incidence angle is zero for incidence angles of zero and π. + However, the correlation of Swami and Chandra has non-zero derivatives at these values. + In this implementation, the original function is therefore slightly modified for incidence angles + between 0 and 5 degree, and between 175 and 180 degree. + This leads to a model that is differentiable in the incidence angle, + which generally leads to better numeric performance. +

+ ",revisions=" + + "), + __Dymola_LockedEditing="Model from IBPSA"); end windPressureLowRise; diff --git a/AixLib/Airflow/Multizone/BaseClasses/windPressureProfile.mo b/AixLib/Airflow/Multizone/BaseClasses/windPressureProfile.mo new file mode 100644 index 0000000000..4047ee0f2d --- /dev/null +++ b/AixLib/Airflow/Multizone/BaseClasses/windPressureProfile.mo @@ -0,0 +1,90 @@ +within AixLib.Airflow.Multizone.BaseClasses; +function windPressureProfile + "Function for the cubic spline interpolation of a wind pressure profile with given support points and spline derivatives at these support points" + extends Modelica.Icons.Function; + + input Modelica.Units.SI.Angle alpha "Wind incidence angle"; + input Real incAngTab[:] "Tabulated points for angle"; + input Real CpTab[size(incAngTab, 1)] "Tabulated points for Cp"; + input Real[size(incAngTab, 1)] d "Derivative values at tabulated points"; + + output Real CpAct "Actual Cp value for given incidence angle alpha"; + +protected + Integer i "Integer to select data interval"; + Real aR "u, restricted to 0...2*pi"; + +algorithm + // Change sign to positive and constrain to [0...2*pi] + aR :=mod(alpha, 2*Modelica.Constants.pi); + + i := 1; + for j in 1:size(incAngTab, 1) - 1 loop + if aR > incAngTab[j] then + i := j; + end if; + end for; + + // Interpolate the data + CpAct :=AixLib.Utilities.Math.Functions.cubicHermiteLinearExtrapolation( + x=aR, + x1=incAngTab[i], + x2=incAngTab[i + 1], + y1=CpTab[i], + y2=CpTab[i + 1], + y1d=d[i], + y2d=d[i + 1]); + + annotation ( +smoothOrder=1, +Documentation(revisions=" + + ", +info=" +

+ This function computes the wind pressure coefficients Cp from a user-defined table data. + The same functionality is also implemented in CONTAM. +

+

+ This function is used in + + AixLib.Fluid.Sources.Outside_CpData. +

+

References

+ + + "), + __Dymola_LockedEditing="Model from IBPSA"); +end windPressureProfile; diff --git a/AixLib/Airflow/Multizone/Coefficient_V_flow.mo b/AixLib/Airflow/Multizone/Coefficient_V_flow.mo new file mode 100644 index 0000000000..891455a34a --- /dev/null +++ b/AixLib/Airflow/Multizone/Coefficient_V_flow.mo @@ -0,0 +1,98 @@ +within AixLib.Airflow.Multizone; +model Coefficient_V_flow "Power law with coefficient for volume flow rate" + extends AixLib.Airflow.Multizone.BaseClasses.PartialOneWayFlowElement( + m_flow = V_flow*rho, + V_flow = AixLib.Airflow.Multizone.BaseClasses.powerLawFixedM( + C=C, + dp=dp, + m=m, + a=a, + b=b, + c=c, + d=d, + dp_turbulent=dp_turbulent), + final m_flow_nominal=rho_default*C*dp_turbulent, + final m_flow_small=1E-4*abs(m_flow_nominal)); + extends AixLib.Airflow.Multizone.BaseClasses.PowerLawResistanceParameters( + m = 0.5); + + parameter Real C "Flow coefficient, C = V_flow/ dp^m"; + + annotation ( + Icon(graphics={ + Rectangle( + extent={{-54,34},{48,-34}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,0,0}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{-62,14},{76,-12}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={255,255,255}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{-100,6},{-64,-6}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,127,0}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{48,8},{100,-6}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,127,0}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{-70,4},{-52,-4}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,127,0}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{-88,6},{-52,-6}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,127,0}, + fillPattern=FillPattern.Solid)}), + defaultComponentName="pow", + Documentation(info=" +

+ This model describes the one-directional pressure driven air flow through an opening, using the equation +

+

+ V̇ = C Δpm, +

+

+ where is the volume flow rate in m3/s, + C is a flow coefficient, + Δp is the pressure difference in Pa, + and m is the flow exponent. +

+

+ A similar model is also used in the CONTAM software (Dols and Walton, 2015). + Dols and Walton (2002) recommend to use for the flow exponent m=0.6 to m=0.7 if the flow exponent is not reported with the test results. +

+

References

+ + ",revisions=" + + "), + __Dymola_LockedEditing="Model from IBPSA"); +end Coefficient_V_flow; diff --git a/AixLib/Airflow/Multizone/Coefficient_m_flow.mo b/AixLib/Airflow/Multizone/Coefficient_m_flow.mo new file mode 100644 index 0000000000..7aed539c8e --- /dev/null +++ b/AixLib/Airflow/Multizone/Coefficient_m_flow.mo @@ -0,0 +1,97 @@ +within AixLib.Airflow.Multizone; +model Coefficient_m_flow "Powerlaw with coefficient for mass flow rate" + extends AixLib.Airflow.Multizone.BaseClasses.PartialOneWayFlowElement( + m_flow=rho*AixLib.Airflow.Multizone.BaseClasses.powerLawFixedM( + C=C, + dp=dp, + m=m, + a=a, + b=b, + c=c, + d=d, + dp_turbulent=dp_turbulent), + final m_flow_nominal=k*dp_turbulent, + final m_flow_small=1E-4*abs(m_flow_nominal)); + extends AixLib.Airflow.Multizone.BaseClasses.PowerLawResistanceParameters( + m = 0.5); + parameter Real k "Flow coefficient, k = m_flow/ dp^m"; +protected + parameter Real C=k/rho_default "Flow coefficient, C = V_flow/dp^m"; + + annotation ( + Icon(graphics={ + Rectangle( + extent={{-52,34},{50,-34}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,0,0}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{-60,14},{78,-12}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={255,255,255}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{-98,6},{-62,-6}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,127,0}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{50,8},{102,-6}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,127,0}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{-68,4},{-50,-4}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,127,0}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{-86,6},{-50,-6}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,127,0}, + fillPattern=FillPattern.Solid)}), + defaultComponentName="pow", + Documentation(info=" +

+ This model describes the one-directional pressure driven air flow through an opening, using the equation +

+

+ ṁ = k Δpm, +

+

+ where is the mass flow rate in kg/s, + k is a flow coefficient, + Δp is the pressure difference in Pa, + and m is the flow exponent. +

+


A similar model is also used in the CONTAM software (Dols and Walton, 2015). + Dols and Walton (2002) recommend to use for the flow exponent m=0.6 to m=0.7 if the flow exponent is not reported with the test results. +

+

References

+ + ",revisions=" + + "), + __Dymola_LockedEditing="Model from IBPSA"); +end Coefficient_m_flow; diff --git a/AixLib/Airflow/Multizone/DoorDiscretizedOpen.mo b/AixLib/Airflow/Multizone/DoorDiscretizedOpen.mo index bf80e923a1..a192ce09a5 100644 --- a/AixLib/Airflow/Multizone/DoorDiscretizedOpen.mo +++ b/AixLib/Airflow/Multizone/DoorDiscretizedOpen.mo @@ -21,11 +21,11 @@ protected equation m=mFixed; A = wOpe*hOpe; - kVal = CD*dA*sqrt(2/rho_default); + CVal = CD*dA*sqrt(2/rho_default); // orifice equation for i in 1:nCom loop dV_flow[i] = AixLib.Airflow.Multizone.BaseClasses.powerLawFixedM( - k=kVal, + C=CVal, dp=dpAB[i], m=mFixed, a=a, @@ -37,57 +37,58 @@ equation annotation (defaultComponentName="doo", Documentation(info=" -

-This model describes the bi-directional air flow through an open door. -

-

-To compute the bi-directional flow, -the door is discretize along the height coordinate. -An orifice equation is used to compute the flow for each compartment. -

-

-In this model, the door is always open. -Use the model - -Buildings.Airflow.Multizone.DoorDiscretizedOperable -for a door that can either be open or closed. -

-", +

+ This model describes the bi-directional air flow through an open door. +

+

+ To compute the bi-directional flow, + the door is discretize along the height coordinate. + An orifice equation is used to compute the flow for each compartment. +

+

+ In this model, the door is always open. + Use the model + + Buildings.Airflow.Multizone.DoorDiscretizedOperable + for a door that can either be open or closed. +

+ ", revisions=" - -")); + + "), + __Dymola_LockedEditing="Model from IBPSA"); end DoorDiscretizedOpen; diff --git a/AixLib/Airflow/Multizone/DoorDiscretizedOperable.mo b/AixLib/Airflow/Multizone/DoorDiscretizedOperable.mo index 7b5b5754d2..b2d3faf2b3 100644 --- a/AixLib/Airflow/Multizone/DoorDiscretizedOperable.mo +++ b/AixLib/Airflow/Multizone/DoorDiscretizedOperable.mo @@ -3,18 +3,18 @@ model DoorDiscretizedOperable "Door model using discretization along height coordinate" extends AixLib.Airflow.Multizone.BaseClasses.DoorDiscretized; - parameter Modelica.SIunits.PressureDifference dpCloRat(min=0, - displayUnit="Pa") = 4 - "Pressure drop at rating condition of closed door" - annotation (Dialog(group="Rating conditions")); + parameter Modelica.Units.SI.PressureDifference dpCloRat( + min=0, + displayUnit="Pa") = 4 "Pressure drop at rating condition of closed door" + annotation (Dialog(group="Rating conditions")); parameter Real CDCloRat(min=0, max=1)=1 "Discharge coefficient at rating conditions of closed door" annotation (Dialog(group="Rating conditions")); - parameter Modelica.SIunits.Area LClo(min=0) + parameter Modelica.Units.SI.Area LClo(min=0) "Effective leakage area of closed door" - annotation (Dialog(group="Closed door")); + annotation (Dialog(group="Closed door")); parameter Real CDOpe=0.65 "Discharge coefficient of open door" annotation (Dialog(group="Open door")); @@ -30,31 +30,30 @@ model DoorDiscretizedOperable "Opening signal, 0=closed, 1=open" annotation (Placement(transformation(extent={{-120,-10},{-100,10}}), iconTransformation(extent={{-120,-10},{-100,10}}))); protected - parameter Modelica.SIunits.Area AOpe=wOpe*hOpe "Open aperture area"; - parameter Modelica.SIunits.Area AClo(fixed=false) "Closed aperture area"; + parameter Modelica.Units.SI.Area AOpe=wOpe*hOpe "Open aperture area"; + parameter Modelica.Units.SI.Area AClo(fixed=false) "Closed aperture area"; - Real kOpe "Open aperture flow coefficient, k = V_flow/ dp^m"; - Real kClo "Closed aperture flow coefficient, k = V_flow/ dp^m"; + Real COpe "Open aperture flow coefficient, C = V_flow/ dp^m"; + Real CClo "Closed aperture flow coefficient, C = V_flow/ dp^m"; Real fraOpe "Fraction of aperture that is open"; initial equation AClo=CDClo/CDCloRat * LClo * dpCloRat^(0.5-mClo); equation fraOpe =y; - kClo = CDClo * AClo/nCom * sqrt(2/rho_default); - kOpe = CDOpe * AOpe/nCom * sqrt(2/rho_default); + CClo = CDClo * AClo/nCom * sqrt(2/rho_default); + COpe = CDOpe * AOpe/nCom * sqrt(2/rho_default); // flow exponent m = fraOpe*mOpe + (1-fraOpe)*mClo; // opening area A = fraOpe*AOpe + (1-fraOpe)*AClo; // friction coefficient for power law - kVal = fraOpe*kOpe + (1-fraOpe)*kClo; + CVal = fraOpe*COpe + (1-fraOpe)*CClo; // orifice equation for i in 1:nCom loop - dV_flow[i] = AixLib.Airflow.Multizone.BaseClasses.powerLaw( - k=kVal, + dV_flow[i] = AixLib.Airflow.Multizone.BaseClasses.powerLaw(C=CVal, dp=dpAB[i], m=m, dp_turbulent=dp_turbulent); @@ -63,7 +62,7 @@ equation annotation (Icon(graphics={ Text( extent={{-118,34},{-98,16}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString= "y"), Rectangle( @@ -86,67 +85,68 @@ equation fillPattern=FillPattern.Solid)}), defaultComponentName="doo", Documentation(info=" -

-This model describes the bi-directional air flow through an open door. -

-

-To compute the bi-directional flow, -the door is discretize along the height coordinate, and uses -an orifice equation to compute the flow for each compartment. -

-

-The door can be either open or closed, depending on the input signal -y. -Set y=0 if the door is closed, and y=1 -if the door is open. -Use the model - -AixLib.Airflow.Multizone.DoorDiscretizedOpen -for a door that is always closed. -

-", +

+ This model describes the bi-directional air flow through an open door. +

+

+ To compute the bi-directional flow, + the door is discretize along the height coordinate, and uses + an orifice equation to compute the flow for each compartment. +

+

+ The door can be either open or closed, depending on the input signal + y. + Set y=0 if the door is closed, and y=1 + if the door is open. + Use the model + + AixLib.Airflow.Multizone.DoorDiscretizedOpen + for a door that is always closed. +

+ ", revisions=" - -")); + + "), + __Dymola_LockedEditing="Model from IBPSA"); end DoorDiscretizedOperable; diff --git a/AixLib/Airflow/Multizone/DoorOpen.mo b/AixLib/Airflow/Multizone/DoorOpen.mo index 05ce1b77bc..7552f662fe 100644 --- a/AixLib/Airflow/Multizone/DoorOpen.mo +++ b/AixLib/Airflow/Multizone/DoorOpen.mo @@ -24,19 +24,19 @@ protected parameter Real d = 1/8*m^2 - gamma - m + 15.0/8 "Polynomial coefficient for regularized implementation of flow resistance"; - parameter Real kVal=CD*AOpe*sqrt(2/rho_default) "Flow coefficient, k = V_flow/ dp^m"; + parameter Real CVal=CD*AOpe*sqrt(2/rho_default) + "Flow coefficient, C = V_flow/ dp^m"; parameter Real kT = rho_default * CD * AOpe/3 * sqrt(Modelica.Constants.g_n /(Medium.T_default*conTP) * hOpe) "Constant coefficient for buoyancy driven air flow rate"; - parameter Modelica.SIunits.MassFlowRate m_flow_turbulent= - kVal * rho_default * sqrt(dp_turbulent) + parameter Modelica.Units.SI.MassFlowRate m_flow_turbulent=CVal*rho_default* + sqrt(dp_turbulent) "Mass flow rate where regularization to laminar flow occurs for temperature-driven flow"; equation // Air flow rate due to static pressure difference - VABp_flow = AixLib.Airflow.Multizone.BaseClasses.powerLawFixedM( - k=kVal, + VABp_flow = AixLib.Airflow.Multizone.BaseClasses.powerLawFixedM(C=CVal, dp=port_a1.p-port_a2.p, m=m, a=a, @@ -57,156 +57,157 @@ equation annotation (defaultComponentName="doo", Documentation(info=" -

-Model for bi-directional air flow through a large opening such as a door. -

-

-In this model, the air flow is composed of two components, -a one-directional bulk air flow -due to static pressure difference in the adjoining two thermal zones, and -a two-directional airflow due to temperature-induced differences in density -of the air in the two thermal zones. -Although turbulent air flow is a nonlinear phenomenon, -the model is based on the simplifying assumption that these two -air flow rates can be superposed. -(Superposition is only exact for laminar flow.) -This assumption is made because -it leads to a simple model and because there is significant uncertainty -and assumptions anyway in such simplified a model for bidirectional flow through a door. -

-

Main equations

-

-The air flow rate due to static pressure difference is -

-

- V̇ab,p = CD w h (2/ρ0)0.5 Δpm, -

-

-where - is the volumetric air flow rate, -CD is the discharge coefficient, -w and h are the width and height of the opening, -ρ0 is the mass density at the medium default pressure, temperature and humidity, -m is the flow exponent and -Δp = pa - pb is the static pressure difference between -the thermal zones. -For this model explanation, we will assume pa > pb. -For turbulent flow, m=1/2 and for laminar flow m=1. -

-

-The air flow rate due to temperature difference in the thermal zones is -ab,t for flow from thermal zone a to b, -and -ba,t for air flow rate from thermal zone b to a. -The model has two air flow paths to allow bi-directional air flow. -The mass flow rates at these two air flow paths are -

-

- ṁa1 = ρ0   (+V̇ab,p/2 +   V̇ab,t), -

-

-and, similarly, -

-

- V̇ba = ρ0   (-V̇ab,p/2 +   V̇ba,t), -

-

-where we simplified the calculation by using the density ρ0. -To calculate ba,t, we again use the density ρ0 -and because of this simplification, we can write -

-

- ṁab,t = -ṁba,t = ρ0   V̇ab,t - = -ρ0   V̇ba,t, -

-

-from which follows that the neutral height, e.g., the height where the air flow rate due to flow -induced by temperature difference is zero, is at h/2. -Hence, -

-

-V̇ab,t = CD0h/2 w v(z) dz, -

-

-where v(z) is the velocity at height z. From the Bernoulli equation, we obtain -

-

-v(z) = (2 g z Δρ ⁄ ρ0)1/2. -

-

-The density difference can be written as -

-

- Δρ = ρab - ≈ ρ0 (Tb - Ta) ⁄ T0, -

-

-where we used -ρa = p0 /(R Ta) and -Ta Tb ≈ T02. -Substituting this expression into the integral and integrating from 0 to z yields -

-

-V̇ab,t = 1⁄3 CD w h -(g h ⁄ (R T0 ρ0))1/2 Δp1/2. -

-

-The above equation is equivalent to (6) in Brown and Solvason (1962). -

Main assumptions

-

-The main assumptions are as follows: -

- -

-From these assumptions follows that the neutral height for buoyancy-driven air flow is at half of the height -of the opening. -

-

Notes

-

-For a more detailed model, use - -AixLib.Airflow.Multizone.DoorDiscretizedOpen. -

-

References

- -", +

+ Model for bi-directional air flow through a large opening such as a door. +

+

+ In this model, the air flow is composed of two components, + a one-directional bulk air flow + due to static pressure difference in the adjoining two thermal zones, and + a two-directional airflow due to temperature-induced differences in density + of the air in the two thermal zones. + Although turbulent air flow is a nonlinear phenomenon, + the model is based on the simplifying assumption that these two + air flow rates can be superposed. + (Superposition is only exact for laminar flow.) + This assumption is made because + it leads to a simple model and because there is significant uncertainty + and assumptions anyway in such simplified a model for bidirectional flow through a door. +

+

Main equations

+

+ The air flow rate due to static pressure difference is +

+

+ V̇ab,p = CD w h (2/ρ0)0.5 Δpm, +

+

+ where + is the volumetric air flow rate, + CD is the discharge coefficient, + w and h are the width and height of the opening, + ρ0 is the mass density at the medium default pressure, temperature and humidity, + m is the flow exponent and + Δp = pa - pb is the static pressure difference between + the thermal zones. + For this model explanation, we will assume pa > pb. + For turbulent flow, m=1/2 and for laminar flow m=1. +

+

+ The air flow rate due to temperature difference in the thermal zones is + ab,t for flow from thermal zone a to b, + and + ba,t for air flow rate from thermal zone b to a. + The model has two air flow paths to allow bi-directional air flow. + The mass flow rates at these two air flow paths are +

+

+ ṁa1 = ρ0   (+V̇ab,p/2 +   V̇ab,t), +

+

+ and, similarly, +

+

+ V̇ba = ρ0   (-V̇ab,p/2 +   V̇ba,t), +

+

+ where we simplified the calculation by using the density ρ0. + To calculate ba,t, we again use the density ρ0 + and because of this simplification, we can write +

+

+ ṁab,t = -ṁba,t = ρ0   V̇ab,t + = -ρ0   V̇ba,t, +

+

+ from which follows that the neutral height, e.g., the height where the air flow rate due to flow + induced by temperature difference is zero, is at h/2. + Hence, +

+

+ V̇ab,t = CD0h/2 w v(z) dz, +

+

+ where v(z) is the velocity at height z. From the Bernoulli equation, we obtain +

+

+ v(z) = (2 g z Δρ ⁄ ρ0)1/2. +

+

+ The density difference can be written as +

+

+ Δρ = ρab + ≈ ρ0 (Tb - Ta) ⁄ T0, +

+

+ where we used + ρa = p0 /(R Ta) and + Ta Tb ≈ T02. + Substituting this expression into the integral and integrating from 0 to z yields +

+

+ V̇ab,t = 1⁄3 CD w h + (g h ⁄ (R T0 ρ0))1/2 Δp1/2. +

+

+ The above equation is equivalent to (6) in Brown and Solvason (1962). +

Main assumptions

+

+ The main assumptions are as follows: +

+ +

+ From these assumptions follows that the neutral height for buoyancy-driven air flow is at half of the height + of the opening. +

+

Notes

+

+ For a more detailed model, use + + AixLib.Airflow.Multizone.DoorDiscretizedOpen. +

+

References

+ + ", revisions=" - -")); + + "), + __Dymola_LockedEditing="Model from IBPSA"); end DoorOpen; diff --git a/AixLib/Airflow/Multizone/DoorOperable.mo b/AixLib/Airflow/Multizone/DoorOperable.mo index fc0b24ea37..e4ca01c5cb 100644 --- a/AixLib/Airflow/Multizone/DoorOperable.mo +++ b/AixLib/Airflow/Multizone/DoorOperable.mo @@ -11,17 +11,17 @@ model DoorOperable parameter Real mOpe = 0.5 "Flow exponent for door of open door" annotation (Dialog(group="Open door")); - parameter Modelica.SIunits.Area LClo(min=0) + parameter Modelica.Units.SI.Area LClo(min=0) "Effective leakage area of closed door" - annotation (Dialog(group="Closed door")); + annotation (Dialog(group="Closed door")); parameter Real mClo= 0.65 "Flow exponent for crack of closed door" annotation (Dialog(group="Closed door")); - parameter Modelica.SIunits.PressureDifference dpCloRat(min=0, - displayUnit="Pa") = 4 - "Pressure drop at rating condition of closed door" - annotation (Dialog(group="Closed door rating conditions")); + parameter Modelica.Units.SI.PressureDifference dpCloRat( + min=0, + displayUnit="Pa") = 4 "Pressure drop at rating condition of closed door" + annotation (Dialog(group="Closed door rating conditions")); parameter Real CDCloRat(min=0, max=1)=1 "Discharge coefficient at rating conditions of closed door" @@ -43,37 +43,36 @@ protected parameter Real d[2] = {1/8*m^2 - gamma - m + 15.0/8 for m in {mOpe, mClo}} "Polynomial coefficient for regularized implementation of flow resistance"; - parameter Modelica.SIunits.Area AClo = LClo * dpCloRat^(0.5-mClo) "Closed area"; - parameter Real kVal[2]={ - CDOpe *AOpe*sqrt(2/rho_default), - CDCloRat*AClo*sqrt(2/rho_default)} - "Flow coefficient, k = V_flow/ dp^m"; + parameter Modelica.Units.SI.Area AClo=LClo*dpCloRat^(0.5 - mClo) + "Closed area"; + parameter Real CVal[2]= + {CDOpe*AOpe*sqrt(2/rho_default), + CDCloRat*AClo*sqrt(2/rho_default)} + "Flow coefficient, C = V_flow/ dp^m"; parameter Real kT = rho_default * CDOpe * AOpe/3 * sqrt(Modelica.Constants.g_n /(Medium.T_default*conTP) * hOpe) "Constant coefficient for buoyancy driven air flow rate"; - parameter Modelica.SIunits.MassFlowRate m_flow_turbulent= - kVal[1] * rho_default * sqrt(dp_turbulent) + parameter Modelica.Units.SI.MassFlowRate m_flow_turbulent=CVal[1]*rho_default + *sqrt(dp_turbulent) "Mass flow rate where regularization to laminar flow occurs for temperature-driven flow"; - Modelica.SIunits.VolumeFlowRate VABpOpeClo_flow[2](each nominal=0.001) - "Volume flow rate from A to B if positive due to static pressure difference"; - Modelica.SIunits.VolumeFlowRate VABp_flow(nominal=0.001) + Modelica.Units.SI.VolumeFlowRate VABpOpeClo_flow[2](each nominal=0.001) "Volume flow rate from A to B if positive due to static pressure difference"; - Modelica.SIunits.Area A "Current opening area"; + Modelica.Units.SI.Area A "Current opening area"; equation // Air flow rate due to static pressure difference VABpOpeClo_flow = AixLib.Airflow.Multizone.BaseClasses.powerLawFixedM( - k=kVal, - dp=port_a1.p-port_a2.p, - m={mOpe, mClo}, - a=a, - b=b, - c=c, - d=d, - dp_turbulent=dp_turbulent); + C=CVal, + dp=port_a1.p-port_a2.p, + m={mOpe, mClo}, + a=a, + b=b, + c=c, + d=d, + dp_turbulent=dp_turbulent); VABp_flow = y*VABpOpeClo_flow[1] + (1-y)*VABpOpeClo_flow[2]; A = y*AOpe + (1-y)*AClo; // Air flow rate due to buoyancy @@ -87,101 +86,108 @@ equation annotation (defaultComponentName="doo", Documentation(info=" -

-Model for bi-directional air flow through a large opening such as a door which can be opened or closed -based on the control input signal y. -

-

-For the control input signal y=1, this model is identical to - -AixLib.Airflow.Multizone.DoorOpen, and for -y=0, the door is assumed to be closed and the air flow rate is -set to the air flow rate through the crack posed by the open door, clo. -

-The air flow rate for the closed door is computed as -

-

- V̇clo = kclo ΔpmClo, -

-

-where -clo is the volume flow rate, -kclo is a flow coefficient and -mClo is the flow exponent. -The flow coefficient is -

-

-kclo = Lclo CDCloRat ΔpRat(0.5-mClo) (2/ρ0)0.5, -

-

-where -Lclo is the effective air leakage area, -CDCloRat is the discharge coefficient at the reference condition, -ΔpRat is the pressure drop at the rating condition, and -ρ0 is the mass density at the medium default pressure, temperature and humidity. -

-

-The effective air leakage area Lclo can be obtained, for example, -from the ASHRAE fundamentals (ASHRAE, 1997, p. 25.18). In -the ASHRAE fundamentals, the effective air leakage area is -based on a reference pressure difference of ΔpRat = 4 Pa and a discharge -coefficient of CDCloRat = 1. -A similar model is also used in the CONTAM software (Dols and Walton, 2002). -Dols and Walton (2002) recommend to use for the flow exponent -mClo=0.6 to mClo=0.7 if the flow exponent is not -reported with the test results. -

-

-For the open door, the air flow rate -ope is computed as described in - -AixLib.Airflow.Multizone.DoorOpen -with the parameters CDOpe and mOpe. -

-

-The actual air flow rate is computed as -

-

-V̇clo = (y-1) V̇clo + y V̇ope, -

-

-where y ∈ [0, 1] is the control signal. -Note that for values of y that are different from 0 and -1, the model simply interpolates the air flow rate between a fully open -and a fully closed door. In practice, the air flow rate would likely increase quickly if the -door is slightly opened, and hence we do not claim that the model is accurate for -values other than y = 0 and y = 1. -

-

References

- -", +

+ Model for bi-directional air flow through a large opening such as a door which can be opened or closed + based on the control input signal y. +

+

+ For the control input signal y=1, this model is identical to + + AixLib.Airflow.Multizone.DoorOpen, and for + y=0, the door is assumed to be closed and the air flow rate is + set to the air flow rate through the crack posed by the open door, clo. +

+ The air flow rate for the closed door is computed as +

+

+ V̇clo = Cclo ΔpmClo, +

+

+ where + clo is the volume flow rate, + Cclo is a flow coefficient and + mClo is the flow exponent. + The flow coefficient is +

+

+ Cclo = Lclo CDCloRat ΔpRat(0.5-mClo) (2/ρ0)0.5, +

+

+ where + Lclo is the effective air leakage area, + CDCloRat is the discharge coefficient at the reference condition, + ΔpRat is the pressure drop at the rating condition, and + ρ0 is the mass density at the medium default pressure, temperature and humidity. +

+

+ The effective air leakage area Lclo can be obtained, for example, + from the ASHRAE fundamentals (ASHRAE, 1997, p. 25.18). In + the ASHRAE fundamentals, the effective air leakage area is + based on a reference pressure difference of ΔpRat = 4 Pa and a discharge + coefficient of CDCloRat = 1. + A similar model is also used in the CONTAM software (Dols and Walton, 2002). + Dols and Walton (2002) recommend to use for the flow exponent + mClo=0.6 to mClo=0.7 if the flow exponent is not + reported with the test results. +

+

+ For the open door, the air flow rate + ope is computed as described in + + AixLib.Airflow.Multizone.DoorOpen + with the parameters CDOpe and mOpe. +

+

+ The actual air flow rate is computed as +

+

+ V̇clo = (y-1) V̇clo + y V̇ope, +

+

+ where y ∈ [0, 1] is the control signal. + Note that for values of y that are different from 0 and + 1, the model simply interpolates the air flow rate between a fully open + and a fully closed door. In practice, the air flow rate would likely increase quickly if the + door is slightly opened, and hence we do not claim that the model is accurate for + values other than y = 0 and y = 1. +

+

References

+ + ", revisions=" - -")); + + "), + __Dymola_LockedEditing="Model from IBPSA"); end DoorOperable; diff --git a/AixLib/Airflow/Multizone/EffectiveAirLeakageArea.mo b/AixLib/Airflow/Multizone/EffectiveAirLeakageArea.mo index bf8c3669bc..03fd97a625 100644 --- a/AixLib/Airflow/Multizone/EffectiveAirLeakageArea.mo +++ b/AixLib/Airflow/Multizone/EffectiveAirLeakageArea.mo @@ -1,10 +1,10 @@ within AixLib.Airflow.Multizone; model EffectiveAirLeakageArea "Effective air leakage area" - extends AixLib.Airflow.Multizone.BaseClasses.PowerLawResistance( + extends AixLib.Airflow.Multizone.Coefficient_V_flow( m=0.65, - final k=L * CDRat * sqrt(2.0/rho_default) * dpRat^(0.5-m)); + final C=L * CDRat * sqrt(2.0/rho_default) * dpRat^(0.5-m)); - parameter Modelica.SIunits.PressureDifference dpRat( + parameter Modelica.Units.SI.PressureDifference dpRat( min=0, displayUnit="Pa") = 4 "Pressure drop" annotation (Dialog(group="Rating conditions")); @@ -13,10 +13,10 @@ model EffectiveAirLeakageArea "Effective air leakage area" max=1) = 1 "Discharge coefficient" annotation (Dialog(group="Rating conditions")); - parameter Modelica.SIunits.Area L(min=0) "Effective leakage area"; + parameter Modelica.Units.SI.Area L(min=0) "Effective leakage area"; + + Modelica.Units.SI.Velocity v(nominal=1) = V_flow/L "Average velocity"; -equation - v = V_flow/L; annotation (Icon(graphics={ Rectangle( extent={{-50,48},{50,-42}}, @@ -32,7 +32,7 @@ equation fillPattern=FillPattern.Solid), Text( extent={{-104,92},{-20,54}}, - lineColor={0,0,255}, + textColor={0,0,255}, pattern=LinePattern.None, fillColor={255,255,255}, fillPattern=FillPattern.Solid, @@ -40,7 +40,7 @@ equation "L=%L"), Text( extent={{22,94},{98,56}}, - lineColor={0,0,255}, + textColor={0,0,255}, pattern=LinePattern.None, fillColor={255,255,255}, fillPattern=FillPattern.Solid, @@ -72,105 +72,117 @@ equation fillPattern=FillPattern.Solid)}), defaultComponentName="lea", Documentation(info=" -

-This model describes the one-directional pressure driven -air flow through a crack-like opening, using the equation -

-

- V̇ = k Δpm, -

-

-where - is the volume flow rate, -k is a flow coefficient and -m is the flow exponent. -The flow coefficient is -

-

-k = L CD,Rat ΔpRat(0.5-m) (2/ρ0)0.5, -

-

-where -L is the effective air leakage area, -CD,Rat is the discharge coefficient at the reference condition, -ΔpRat is the pressure drop at the rating condition, and -ρ0 is the mass density at the medium default pressure, temperature and humidity. -

-

-The effective air leakage area L can be obtained, for example, -from the ASHRAE fundamentals (ASHRAE, 1997, p. 25.18). In -the ASHRAE fundamentals, the effective air leakage area is -based on a reference pressure difference of ΔpRat = 4 Pa and a discharge -coefficient of CD,Rat = 1. -A similar model is also used in the CONTAM software (Dols and Walton, 2002). -Dols and Walton (2002) recommend to use for the flow exponent -m=0.6 to m=0.7 if the flow exponent is not -reported with the test results. -

-

References

- -", +

+ This model describes the one-directional pressure driven + air flow through a crack-like opening, using the equation +

+

+ V̇ = C Δpm, +

+

+ where + is the volume flow rate, + C is a flow coefficient and + m is the flow exponent. + The flow coefficient is +

+

+ C = L CD,Rat ΔpRat(0.5-m) (2/ρ0)0.5, +

+

+ where + L is the effective air leakage area, + CD,Rat is the discharge coefficient at the reference condition, + ΔpRat is the pressure drop at the rating condition, and + ρ0 is the mass density at the medium default pressure, temperature and humidity. +

+

+ The effective air leakage area L can be obtained, for example, + from the ASHRAE fundamentals (ASHRAE, 1997, p. 25.18). In + the ASHRAE fundamentals, the effective air leakage area is + based on a reference pressure difference of ΔpRat = 4 Pa and a discharge + coefficient of CD,Rat = 1. + A similar model is also used in the CONTAM software (Dols and Walton, 2002). + Dols and Walton (2002) recommend to use for the flow exponent + m=0.6 to m=0.7 if the flow exponent is not + reported with the test results. +

+

References

+ + ", revisions=" - -")); + + "), + __Dymola_LockedEditing="Model from IBPSA"); end EffectiveAirLeakageArea; diff --git a/AixLib/Airflow/Multizone/Examples/CO2TransportStep.mo b/AixLib/Airflow/Multizone/Examples/CO2TransportStep.mo index 351b852354..31dd2277ba 100644 --- a/AixLib/Airflow/Multizone/Examples/CO2TransportStep.mo +++ b/AixLib/Airflow/Multizone/Examples/CO2TransportStep.mo @@ -26,8 +26,7 @@ model CO2TransportStep "Model with transport of CO2 through buoyancy driven flow nPorts=1) "CO2 source" annotation (Placement(transformation(extent={{-100,-80},{-80,-60}}))); equation - - connect(sou.m_flow_in, pulse.y) annotation (Line( + connect(sou.m_flow_in, pulse.y) annotation (Line( points={{-102.1,-70},{-119,-70}}, color={0,0,127})); connect(sou.ports[1], volWes.ports[4]) @@ -52,31 +51,32 @@ equation StopTime=86400, Tolerance=1e-6), Documentation(info=" -

-This model is based on - -Buildings.Airflow.Multizone.Validation.ThreeRoomsContam. -In addition, a CO2 source has been added to the left room -in the bottom floor. -At initial time, all volumes have zero CO2 concentration. -At t=3600 seconds, CO2 is added to volWes. -As time progresses, the CO2 is transported to -the other rooms, and eventually its concentration decays. -

-", revisions=" - -")); +

+ This model is based on + + Buildings.Airflow.Multizone.Validation.ThreeRoomsContam. + In addition, a CO2 source has been added to the left room + in the bottom floor. + At initial time, all volumes have zero CO2 concentration. + At t=3600 seconds, CO2 is added to volWes. + As time progresses, the CO2 is transported to + the other rooms, and eventually its concentration decays. +

+ ",revisions=" + + "), + __Dymola_LockedEditing="Model from IBPSA"); end CO2TransportStep; diff --git a/AixLib/Airflow/Multizone/Examples/ChimneyShaftNoVolume.mo b/AixLib/Airflow/Multizone/Examples/ChimneyShaftNoVolume.mo index 33d1be8d18..502a1c741c 100644 --- a/AixLib/Airflow/Multizone/Examples/ChimneyShaftNoVolume.mo +++ b/AixLib/Airflow/Multizone/Examples/ChimneyShaftNoVolume.mo @@ -7,7 +7,6 @@ model ChimneyShaftNoVolume AixLib.Fluid.MixingVolumes.MixingVolume roo( V=2.5*5*5, energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, - massDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, T_start=273.15 + 20, redeclare package Medium = Medium, m_flow_nominal=0.05, @@ -150,76 +149,77 @@ equation StopTime=3600, Tolerance=1e-06), Documentation(info=" -

-This model demonstrate buoyancy-induced air flow -through a vertical shaft. -On the right, there are two flow paths that are connected -to a volume, which is kept at 20°C through a feedback -controller, and to the ambient, which is at -0°C. -The flow path on the very right consists of an orifice -and two models that compute the pressure difference -Δp -between -the bottom and top of the medium column using Δp=h ρ g, -where -h is the height of the medium column, -ρ is the density of the medium column and -g is the gravity constant. -

-

-The top model is parameterized to use the -density from the ambient, -whereas the bottom model is parameterized to use -the density from the room volume, regardless of -the flow direction. -In the other flow path, the model sha -is parameterized to use the density of the inflowing -medium. -Thus, these models can be thought of as a chimney to the left, -and a roof with a leakage on the right. The chimney height starts -1.5 m below the roof, and ends 1.5 m above the roof. -

-

-The flow boundary condition of the model -boundary is such that at the start -of the simulation, air flows from boundary -to roo until t=600 seconds. Then, the flow rate -is set to zero until t=1800 seconds. -Since the shaft sha is filled with -20°C air, there is a circulation in the clock-wise -direction; up the shaft, and down the other flow path. -Next, until t=2400 seconds, air is extracted from -the volume roo, and then the flow rate -of boundary is set to zero. Since the -shaft sha is now filed with air at 0°C, -there is a counter clock-wise flow; down the shaft, and -up the other flow path. -

-", revisions=" - -")); +

+ This model demonstrate buoyancy-induced air flow + through a vertical shaft. + On the right, there are two flow paths that are connected + to a volume, which is kept at 20°C through a feedback + controller, and to the ambient, which is at + 0°C. + The flow path on the very right consists of an orifice + and two models that compute the pressure difference + Δp + between + the bottom and top of the medium column using Δp=h ρ g, + where + h is the height of the medium column, + ρ is the density of the medium column and + g is the gravity constant. +

+

+ The top model is parameterized to use the + density from the ambient, + whereas the bottom model is parameterized to use + the density from the room volume, regardless of + the flow direction. + In the other flow path, the model sha + is parameterized to use the density of the inflowing + medium. + Thus, these models can be thought of as a chimney to the left, + and a roof with a leakage on the right. The chimney height starts + 1.5 m below the roof, and ends 1.5 m above the roof. +

+

+ The flow boundary condition of the model + boundary is such that at the start + of the simulation, air flows from boundary + to roo until t=600 seconds. Then, the flow rate + is set to zero until t=1800 seconds. + Since the shaft sha is filled with + 20°C air, there is a circulation in the clock-wise + direction; up the shaft, and down the other flow path. + Next, until t=2400 seconds, air is extracted from + the volume roo, and then the flow rate + of boundary is set to zero. Since the + shaft sha is now filed with air at 0°C, + there is a counter clock-wise flow; down the shaft, and + up the other flow path. +

+ ",revisions=" + + "), + __Dymola_LockedEditing="Model from IBPSA"); end ChimneyShaftNoVolume; diff --git a/AixLib/Airflow/Multizone/Examples/ChimneyShaftWithVolume.mo b/AixLib/Airflow/Multizone/Examples/ChimneyShaftWithVolume.mo index 3af80c386a..1120434b60 100644 --- a/AixLib/Airflow/Multizone/Examples/ChimneyShaftWithVolume.mo +++ b/AixLib/Airflow/Multizone/Examples/ChimneyShaftWithVolume.mo @@ -7,7 +7,6 @@ model ChimneyShaftWithVolume AixLib.Fluid.MixingVolumes.MixingVolume roo( V=2.5*5*5, energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, - massDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, T_start=273.15 + 20, redeclare package Medium = Medium, m_flow_nominal=0.05, @@ -152,39 +151,40 @@ equation StopTime=3600, Tolerance=1e-06), Documentation(info=" -

-This model is identical to - -Buildings.Airflow.Multizone.Examples.ChimneyShaftNoVolume, -except that the chimney model is not steady-state, but rather dynamic -as it contains an air volume. The air volume is approximated -as being well-mixed. (Stratified volumes could be approximated by -using multiple instances of the model sha that are -connected in series.) -

-", revisions=" - -")); +

+ This model is identical to + + Buildings.Airflow.Multizone.Examples.ChimneyShaftNoVolume, + except that the chimney model is not steady-state, but rather dynamic + as it contains an air volume. The air volume is approximated + as being well-mixed. (Stratified volumes could be approximated by + using multiple instances of the model sha that are + connected in series.) +

+ ",revisions=" + + "), + __Dymola_LockedEditing="Model from IBPSA"); end ChimneyShaftWithVolume; diff --git a/AixLib/Airflow/Multizone/Examples/ClosedDoors.mo b/AixLib/Airflow/Multizone/Examples/ClosedDoors.mo index 0f442b2364..c42811fde7 100644 --- a/AixLib/Airflow/Multizone/Examples/ClosedDoors.mo +++ b/AixLib/Airflow/Multizone/Examples/ClosedDoors.mo @@ -14,7 +14,6 @@ model ClosedDoors "Model with three closed doors" V=2.5*5*5, nPorts=4, energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, - massDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, m_flow_nominal=0.01) "Control volume" annotation (Placement(transformation(extent={{-80,0},{-60,20}}))); AixLib.Fluid.MixingVolumes.MixingVolume volB( @@ -22,13 +21,12 @@ model ClosedDoors "Model with three closed doors" V=2.5*5*5, nPorts=4, energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, - massDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, m_flow_nominal=0.01) "Control volume" annotation (Placement(transformation(extent={{40,40},{60,60}}))); Modelica.Thermal.HeatTransfer.Sources.PrescribedHeatFlow preHeaFlo "Prescribed heat flow rate boundary condition" annotation (Placement(transformation(extent={{4,40},{24,60}}))); - Modelica.Blocks.Sources.Sine sinBou(freqHz=1/3600) + Modelica.Blocks.Sources.Sine sinBou(f=1/3600) "Signal for heat flow rate boundary condition" annotation (Placement(transformation(extent={{-68,40},{-48,60}}))); Modelica.Blocks.Math.Gain gai(k=100) "Gain for heat flow boundary condition" @@ -38,7 +36,6 @@ model ClosedDoors "Model with three closed doors" V=2.5*5*5, nPorts=4, energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, - massDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, m_flow_nominal=0.01) "Control volume" annotation (Placement(transformation(extent={{70,-40},{90,-20}}))); AixLib.Airflow.Multizone.DoorDiscretizedOperable dooAC( @@ -111,39 +108,40 @@ experiment(Tolerance=1e-006, StopTime=7200), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Airflow/Multizone/Examples/ClosedDoors.mos" "Simulate and plot"), Documentation(info=" -

-This model consists of three volumes that are connected among -each other through three doors that all have the same geometry. -All doors are closed, but they are not air-tight. -Heat is added and removed from volB which induces -a small air flow through the doors. -

-

-This model uses - -Buildings.Media.Specialized.Air.PerfectGas -as the medium because - -Buildings.Media.Air -does not account for expansion if air the air is heated. -

-", revisions=" - -")); +

+ This model consists of three volumes that are connected among + each other through three doors that all have the same geometry. + All doors are closed, but they are not air-tight. + Heat is added and removed from volB which induces + a small air flow through the doors. +

+

+ This model uses + + Buildings.Media.Specialized.Air.PerfectGas + as the medium because + + Buildings.Media.Air + does not account for expansion if air the air is heated. +

+ ",revisions=" + + "), + __Dymola_LockedEditing="Model from IBPSA"); end ClosedDoors; diff --git a/AixLib/Airflow/Multizone/Examples/NaturalVentilation.mo b/AixLib/Airflow/Multizone/Examples/NaturalVentilation.mo index d2df324043..353bcbd77f 100644 --- a/AixLib/Airflow/Multizone/Examples/NaturalVentilation.mo +++ b/AixLib/Airflow/Multizone/Examples/NaturalVentilation.mo @@ -9,7 +9,6 @@ model NaturalVentilation redeclare package Medium = Medium, V=2.5*10*5, energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, - massDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, T_start=273.15 + 18, nPorts=2, m_flow_nominal=0.001) "Control volume" @@ -42,7 +41,6 @@ model NaturalVentilation AixLib.Fluid.MixingVolumes.MixingVolume volOut( redeclare package Medium = Medium, energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, - massDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, V=1E10, T_start=273.15 + 20, nPorts=2, @@ -89,34 +87,35 @@ experiment(Tolerance=1e-06, StopTime=7200), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Airflow/Multizone/Examples/NaturalVentilation.mos" "Simulate and plot"), Documentation(info=" -

-This model illustrates buoyancy-driven natural ventilation between -two volumes of air. -The volume volA can be considered as the volume of a room, -and the volume volOut is parameterized to be very large to emulate -outside air. -The outside air is 20°C and at initial time, the room air is -18°C. -This induces an airflow in counter clock-wise direction. Since -heat is added to the room air volume, its temperature raises above the temperature of the outside, which causes the air flow to reverse its direction. -

-", revisions=" - -")); +

+ This model illustrates buoyancy-driven natural ventilation between + two volumes of air. + The volume volA can be considered as the volume of a room, + and the volume volOut is parameterized to be very large to emulate + outside air. + The outside air is 20°C and at initial time, the room air is + 18°C. + This induces an airflow in counter clock-wise direction. Since + heat is added to the room air volume, its temperature raises above the temperature of the outside, which causes the air flow to reverse its direction. +

+ ",revisions=" + + "), + __Dymola_LockedEditing="Model from IBPSA"); end NaturalVentilation; diff --git a/AixLib/Airflow/Multizone/Examples/OneEffectiveAirLeakageArea.mo b/AixLib/Airflow/Multizone/Examples/OneEffectiveAirLeakageArea.mo index f29df41633..64ed64d43e 100644 --- a/AixLib/Airflow/Multizone/Examples/OneEffectiveAirLeakageArea.mo +++ b/AixLib/Airflow/Multizone/Examples/OneEffectiveAirLeakageArea.mo @@ -8,7 +8,6 @@ model OneEffectiveAirLeakageArea "Model with an effective air leakage area" V=2.5*5*5, nPorts=2, energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, - massDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, m_flow_nominal=0.01) "Control volume" annotation (Placement(transformation(extent={{20,-20},{40,0}}))); AixLib.Fluid.MixingVolumes.MixingVolume volB( @@ -16,13 +15,12 @@ model OneEffectiveAirLeakageArea "Model with an effective air leakage area" V=2.5*5*5, nPorts=1, energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, - massDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, m_flow_nominal=0.01) "Control volume" annotation (Placement(transformation(extent={{70,20},{90,40}}))); Modelica.Thermal.HeatTransfer.Sources.PrescribedHeatFlow preHeaFlo "Prescribed heat flow rate boundary condition" annotation (Placement(transformation(extent={{0,20},{20,40}}))); - Modelica.Blocks.Sources.Sine heaFloBou(freqHz=1/3600) + Modelica.Blocks.Sources.Sine heaFloBou(f=1/3600) "Signal for heat flow rate boundary condition" annotation (Placement(transformation(extent={{-80,20},{-60,40}}))); Modelica.Blocks.Math.Gain gai(k=100) @@ -71,29 +69,30 @@ equation StopTime=7200, Tolerance=1e-08), Documentation(info=" -

-This model consists of a model for an effective air leakage area -that is connected to two air volumes. -Air flows due to the addition of air to the volume volA -and because heat is exchanged with volB. -

-", revisions=" - -")); +

+ This model consists of a model for an effective air leakage area + that is connected to two air volumes. + Air flows due to the addition of air to the volume volA + and because heat is exchanged with volB. +

+ ",revisions=" + + "), + __Dymola_LockedEditing="Model from IBPSA"); end OneEffectiveAirLeakageArea; diff --git a/AixLib/Airflow/Multizone/Examples/OneOpenDoor.mo b/AixLib/Airflow/Multizone/Examples/OneOpenDoor.mo index 02c3615f26..93b77401a0 100644 --- a/AixLib/Airflow/Multizone/Examples/OneOpenDoor.mo +++ b/AixLib/Airflow/Multizone/Examples/OneOpenDoor.mo @@ -12,7 +12,6 @@ model OneOpenDoor "Model with one open and one closed door" redeclare package Medium = Medium, V=2.5*5*5, energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, - massDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, nPorts=4, m_flow_nominal=0.01) "Control volume" annotation (Placement(transformation(extent={{-32,14},{-12,34}}))); @@ -20,16 +19,15 @@ model OneOpenDoor "Model with one open and one closed door" redeclare package Medium = Medium, V=2.5*5*5, energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, - massDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, nPorts=4, m_flow_nominal=0.01) "Control volume" annotation (Placement(transformation(extent={{60,60},{80,80}}))); Modelica.Thermal.HeatTransfer.Sources.PrescribedHeatFlow preHeaFlo "Prescribed heat flow rate boundary condition" annotation (Placement(transformation(extent={{14,60},{34,80}}))); - Modelica.Blocks.Sources.Sine heaSou(freqHz=1/3600) - "Signal for heat flow rate boundary condition" annotation (Placement( - transformation(extent={{-60,60},{-40,80}}))); + Modelica.Blocks.Sources.Sine heaSou(f=1/3600) + "Signal for heat flow rate boundary condition" + annotation (Placement(transformation(extent={{-60,60},{-40,80}}))); Modelica.Blocks.Math.Gain gai(k=100) "Gain for heat flow rate boundary condition" annotation (Placement(transformation(extent={{-20,60},{0,80}}))); @@ -84,37 +82,38 @@ equation StopTime=7200, Tolerance=1e-06), Documentation(info=" -

-This model consists of two doors with the same geometry. -For t ≤ 1000 seconds, the door dooOpeClo -is closed, and afterwards it is open. The door -dooOpe is always open. -Heat is added to the volume volB, which causes -a density difference between volA and volB. -This density difference induces a bi-directional airflow through both doors. -Both doors have exactly the same bi-directional airflow rates. -

-", revisions=" - -")); +

+ This model consists of two doors with the same geometry. + For t ≤ 1000 seconds, the door dooOpeClo + is closed, and afterwards it is open. The door + dooOpe is always open. + Heat is added to the volume volB, which causes + a density difference between volA and volB. + This density difference induces a bi-directional airflow through both doors. + Both doors have exactly the same bi-directional airflow rates. +

+ ",revisions=" + + "), + __Dymola_LockedEditing="Model from IBPSA"); end OneOpenDoor; diff --git a/AixLib/Airflow/Multizone/Examples/OneRoom.mo b/AixLib/Airflow/Multizone/Examples/OneRoom.mo index 71aec86c9a..b300fedb64 100644 --- a/AixLib/Airflow/Multizone/Examples/OneRoom.mo +++ b/AixLib/Airflow/Multizone/Examples/OneRoom.mo @@ -48,8 +48,7 @@ model OneRoom V=1E12, p_start=Medium.p_default, nPorts=2, - m_flow_nominal=0.001, - massDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial) + m_flow_nominal=0.001) "Control volume for outside" annotation ( Placement(transformation( extent={{-10,-10},{10,10}}, @@ -102,29 +101,30 @@ experiment(Tolerance=1e-06, StopTime=1), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Airflow/Multizone/Examples/OneRoom.mos" "Simulate and plot"), Documentation(info=" -

-This model has been used to validate buoyancy-driven air flow between two volumes. -The volume volEas is at 20°C and the volume -volOut is at 10°C. -This initial condition induces a clock-wise airflow between the two volumes. -

-", revisions=" - -")); +

+ This model has been used to validate buoyancy-driven air flow between two volumes. + The volume volEas is at 20°C and the volume + volOut is at 10°C. + This initial condition induces a clock-wise airflow between the two volumes. +

+ ",revisions=" + + "), + __Dymola_LockedEditing="Model from IBPSA"); end OneRoom; diff --git a/AixLib/Airflow/Multizone/Examples/Orifice.mo b/AixLib/Airflow/Multizone/Examples/Orifice.mo index 0b822df9ff..0c4239e48c 100644 --- a/AixLib/Airflow/Multizone/Examples/Orifice.mo +++ b/AixLib/Airflow/Multizone/Examples/Orifice.mo @@ -67,29 +67,30 @@ experiment(Tolerance=1e-06, StopTime=1), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Airflow/Multizone/Examples/Orifice.mos" "Simulate and plot"), Documentation(info=" -

-This model demonstrates the use of the orifice model. -The pressure difference across the orifice model changes -between -1 Pascal and +1 Pascal, which -causes air to flow through the orifice. -

-", revisions=" - -")); +

+ This model demonstrates the use of the orifice model. + The pressure difference across the orifice model changes + between -1 Pascal and +1 Pascal, which + causes air to flow through the orifice. +

+ ",revisions=" + + "), + __Dymola_LockedEditing="Model from IBPSA"); end Orifice; diff --git a/AixLib/Airflow/Multizone/Examples/PowerLaw.mo b/AixLib/Airflow/Multizone/Examples/PowerLaw.mo new file mode 100644 index 0000000000..7849759fe9 --- /dev/null +++ b/AixLib/Airflow/Multizone/Examples/PowerLaw.mo @@ -0,0 +1,126 @@ +within AixLib.Airflow.Multizone.Examples; +model PowerLaw "Model with powerlaw models" + extends Modelica.Icons.Example; + package Medium = AixLib.Media.Air; + Coefficient_m_flow pow_m_flow( + redeclare package Medium = Medium, + m=0.59, + k=3.33e-5) "Mass flow rate based on powerlaw, direct input for m and C" + annotation (Placement(transformation(extent={{-10,80},{10,100}}))); + AixLib.Fluid.Sources.Boundary_pT roo1( + redeclare package Medium = Medium, + use_p_in=true, + nPorts=1, + T=278.15) "Room 1" + annotation (Placement(transformation(extent={{-100,60},{-80,80}}))); + AixLib.Fluid.Sources.Boundary_pT roo2( + redeclare package Medium = Medium, + use_p_in=true, + nPorts=1, + T=293.15) "Room 2" + annotation (Placement(transformation( + origin={90,70}, + extent={{-10,-10},{10,10}}, + rotation=180))); + Modelica.Blocks.Sources.Ramp ramp1( + duration=0.5, + height=6, + offset=-3, + startTime=0.25) "Ramp" + annotation (Placement(transformation(extent={{0,-100},{20,-80}}))); + Modelica.Blocks.Sources.Constant pressure(k=100000) "Pressure" + annotation (Placement(transformation(extent={{-110,-80},{-90,-60}}))); + Modelica.Blocks.Math.Add add "Add" + annotation (Placement(transformation(extent={{40,-86},{60,-66}}))); + AixLib.Fluid.Sensors.DensityTwoPort den1( + redeclare package Medium = Medium, + m_flow_nominal=0.1, + tau=0, + initType=Modelica.Blocks.Types.Init.InitialState) "Density sensor" + annotation (Placement(transformation(extent={{-60,60},{-40,80}}))); + AixLib.Fluid.Sensors.DensityTwoPort den2( + redeclare package Medium = Medium, + m_flow_nominal=0.1, + tau=0, + initType=Modelica.Blocks.Types.Init.InitialState) "Density sensor" + annotation (Placement(transformation(extent={{40,60},{60,80}}))); + Coefficient_V_flow pow_V_flow( + redeclare package Medium = Medium, + m=0.59, + C=3.33e-5/1.2) + "Volume flow rate based on powerlaw, direct input for m and C" + annotation (Placement(transformation(extent={{-10,40},{10,60}}))); + Point_m_flow pow_1dat( + redeclare package Medium = Medium, + dpMea_nominal = 50, + m=0.59, + mMea_flow_nominal=1.2/3600) + "Mass flow rate based on powerlaw, input of m and 1 test data point." + annotation (Placement(transformation(extent={{-10,0},{10,20}}))); + Points_m_flow pow_2dat( + redeclare package Medium = Medium, + dpMea_nominal = {1, 50}, + mMea_flow_nominal={0.12, 1.2}/3600) + "Mass flow rate based on powerlaw, input of 2 test data points." + annotation (Placement(transformation(extent={{-10,-40},{10,-20}}))); +equation + connect(pressure.y, add.u1) + annotation (Line(points={{-89,-70},{38,-70}}, color={0,0,255})); + connect(ramp1.y, add.u2) annotation (Line(points={{21,-90},{26,-90},{26,-82},{ + 38,-82}}, color={0,0,255})); + connect(pressure.y, roo1.p_in) annotation (Line(points={{-89,-70},{-50,-70},{ + -50,-40},{-110,-40},{-110,78},{-102,78}}, + color={0,0,127})); + connect(add.y, roo2.p_in) annotation (Line(points={{61,-76},{112,-76},{112,62}, + {102,62}}, color={0,0,127})); + connect(roo1.ports[1], den1.port_a) annotation (Line( + points={{-80,70},{-60,70}}, + color={0,127,255})); + connect(den1.port_b, pow_m_flow.port_a) + annotation (Line(points={{-40,70},{-40,90},{-10,90}}, + color={0,127,255})); + connect(pow_m_flow.port_b, den2.port_a) + annotation (Line(points={{10,90},{40,90},{40,70}}, + color={0,127,255})); + connect(den2.port_b, roo2.ports[1]) annotation (Line( + points={{60,70},{80,70}}, + color={0,127,255})); + connect(den1.port_b, pow_V_flow.port_a) annotation (Line(points={{-40,70},{-40, + 50},{-10,50}}, color={0,127,255})); + connect(pow_V_flow.port_b, den2.port_a) annotation (Line(points={{10,50},{40,50}, + {40,70}}, color={0,127,255})); + connect(den1.port_b, pow_1dat.port_a) annotation (Line(points={{-40,70},{ + -40,10},{-10,10}}, color={0,127,255})); + connect(den1.port_b, pow_2dat.port_a) + annotation (Line(points={{-40,70},{-40,-30},{-10,-30}},color={0,127,255})); + connect(pow_1dat.port_b, den2.port_a) annotation (Line(points={{10,10},{40, + 10},{40,70}}, color={0,127,255})); + connect(pow_2dat.port_b, den2.port_a) + annotation (Line(points={{10,-30},{40,-30},{40,70}}, color={0,127,255})); + annotation ( +experiment( + StopTime=1, + Tolerance=1e-06), + __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Airflow/Multizone/Examples/PowerLaw.mos" + "Simulate and plot"), + Documentation(info=" +

+ This model demonstrates the use of the 4 PowerLaw models present in the multizone package. + The input data is fit so that all models have equivalent output. + + The pressure difference across the models changes + between -1 Pascal and +1 Pascal, which + causes air to flow through the orifice. +

+ ",revisions=" + + "), + Diagram(coordinateSystem(extent={{-120,-120},{120,100}})), + __Dymola_LockedEditing="Model from IBPSA"); +end PowerLaw; diff --git a/AixLib/Airflow/Multizone/Examples/PressurizationData.mo b/AixLib/Airflow/Multizone/Examples/PressurizationData.mo new file mode 100644 index 0000000000..8538067596 --- /dev/null +++ b/AixLib/Airflow/Multizone/Examples/PressurizationData.mo @@ -0,0 +1,106 @@ +within AixLib.Airflow.Multizone.Examples; +model PressurizationData + "Model showing how the 'Powerlaw_1DataPoint' model can be used when data is available from a pressurization test." + extends Modelica.Icons.Example; + package Medium = AixLib.Media.Air; + + parameter Real n50=3 "ACH50, air changes at 50 Pa"; + + BoundaryConditions.WeatherData.ReaderTMY3 weaDat( + filNam=Modelica.Utilities.Files.loadResource("modelica://AixLib/Resources/weatherdata/USA_CA_San.Francisco.Intl.AP.724940_TMY3.mos")) + annotation (Placement(transformation(extent={{-88,0},{-68,20}}))); + Fluid.Sources.Outside_CpLowRise west( + redeclare package Medium = Medium, + s=5, + azi=AixLib.Types.Azimuth.W, + Cp0=0.6, + nPorts=1) "Model with outside conditions" + annotation (Placement(transformation(extent={{82,0},{62,20}}))); + Fluid.Sources.Outside_CpLowRise east( + redeclare package Medium = Medium, + s=5, + azi=AixLib.Types.Azimuth.E, + Cp0=0.6, + nPorts=1) "Model with outside conditions" + annotation (Placement(transformation(extent={{-60,0},{-40,20}}))); + Fluid.MixingVolumes.MixingVolume room( + redeclare package Medium = Medium, + V=2.5*5*5, + nPorts=2, + energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, + m_flow_nominal=0.01) "Room model" + annotation (Placement(transformation(extent={{0,20},{20,40}}))); + AixLib.Airflow.Multizone.Point_m_flow pow_1dat( + dpMea_nominal(displayUnit="Pa") = 50, + redeclare package Medium = Medium, + m=0.66, + mMea_flow_nominal=0.5*(room.V*n50*1.2)) + "Crack in envelope representing 50% of the leakage area" + annotation (Placement(transformation(extent={{-30,0},{-10,20}}))); + AixLib.Airflow.Multizone.Point_m_flow pow_1dat1( + dpMea_nominal(displayUnit="Pa") = 50, + redeclare package Medium = Medium, + m=0.66, + mMea_flow_nominal=0.5*(room.V*n50*1.2)) + "Crack in envelope representing 50% of the leakage area" + annotation (Placement(transformation(extent={{30,0},{50,20}}))); +equation + connect(weaDat.weaBus, west.weaBus) annotation (Line( + points={{-68,10},{-64,10},{-64,-24},{82,-24},{82,10.2}}, + color={255,204,51}, + thickness=0.5)); + connect(east.weaBus, weaDat.weaBus) annotation (Line( + points={{-60,10.2},{-60,10},{-68,10}}, + color={255,204,51}, + thickness=0.5)); + connect(east.ports[1], pow_1dat.port_a) + annotation (Line(points={{-40,10},{-30,10}}, color={0,127,255})); + connect(pow_1dat.port_b,room. ports[1]) + annotation (Line(points={{-10,10},{9,10},{9,20}}, color={0,127,255})); + connect(pow_1dat1.port_a,room. ports[2]) + annotation (Line(points={{30,10},{11,10},{11,20}}, color={0,127,255})); + connect(pow_1dat1.port_b, west.ports[1]) + annotation (Line(points={{50,10},{62,10}}, color={0,127,255})); + annotation (__Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Airflow/Multizone/Examples/PressurizationData.mos" + "Simulate and plot"), + experiment( + StopTime=2592000, + Tolerance=1e-06), + Documentation(info=" +

+ This model illustrates the use of + + AixLib.Airflow.Multizone.Point_m_flow + to model + infiltration through the building evelope for a known n50 value (also known as ACH50). + As the n50 value and the building volume is known, + the flow at 50 Pa is known. Dividing this flow accross the entire envelope + (typically surface weighted) and using + + AixLib.Airflow.Multizone.Point_m_flow, + the infiltration airflow at lower pressure differences can be modelled. +
+ In this example, the two models each represent 50% of the surface where airflow occured due to the pressurization test. +

+ ",revisions=" + + "), + __Dymola_LockedEditing="Model from IBPSA"); +end PressurizationData; diff --git a/AixLib/Airflow/Multizone/Examples/ReverseBuoyancy.mo b/AixLib/Airflow/Multizone/Examples/ReverseBuoyancy.mo index 145d036a04..e880841e29 100644 --- a/AixLib/Airflow/Multizone/Examples/ReverseBuoyancy.mo +++ b/AixLib/Airflow/Multizone/Examples/ReverseBuoyancy.mo @@ -6,7 +6,6 @@ model ReverseBuoyancy AixLib.Fluid.MixingVolumes.MixingVolume volBotEas( redeclare package Medium = Medium, energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, - massDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, V=2.5*5*5, T_start=273.15 + 25, nPorts=5, @@ -86,7 +85,6 @@ model ReverseBuoyancy redeclare package Medium = Medium, m_flow_nominal=1.2, energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, - massDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, tau=2.5*5*5, T_start=273.15 + 22, nPorts=3, @@ -119,7 +117,6 @@ model ReverseBuoyancy AixLib.Fluid.MixingVolumes.MixingVolume volTopEas( redeclare package Medium = Medium, energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, - massDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, V=2.5*5*10, T_start=273.15 + 21, nPorts=3, @@ -128,7 +125,6 @@ model ReverseBuoyancy AixLib.Fluid.MixingVolumes.MixingVolume volTopWes( redeclare package Medium = Medium, energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, - massDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, T_start=273.15 + 20, V=2.5*5*10, nPorts=3, @@ -258,42 +254,43 @@ experiment(Tolerance=1e-06, StopTime=3600), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Airflow/Multizone/Examples/ReverseBuoyancy.mos" "Simulate and plot"), Documentation(info=" -

-This model is similar than - -AixLib.Airflow.Multizone.Validation.ThreeRoomsContam but it has four -instead of three rooms. -The outdoor conditions are held constant at 10°C and -atmospheric pressure. -All four rooms are at different temperatures, with the rooms on the bottom -floor being initially at a higher temperature than the rooms on the top floor. -As time progresses, the temperatures of the two rooms on the respective floors -asymptotically approach each other. The bottom floor eventually cools below -the temperature of the top floor, because the -bottom floor directly exchanges air with the outside. -

-", revisions=" - -")); +

+ This model is similar than + + AixLib.Airflow.Multizone.Validation.ThreeRoomsContam but it has four + instead of three rooms. + The outdoor conditions are held constant at 10°C and + atmospheric pressure. + All four rooms are at different temperatures, with the rooms on the bottom + floor being initially at a higher temperature than the rooms on the top floor. + As time progresses, the temperatures of the two rooms on the respective floors + asymptotically approach each other. The bottom floor eventually cools below + the temperature of the top floor, because the + bottom floor directly exchanges air with the outside. +

+ ",revisions=" + + "), + __Dymola_LockedEditing="Model from IBPSA"); end ReverseBuoyancy; diff --git a/AixLib/Airflow/Multizone/Examples/ReverseBuoyancy3Zones.mo b/AixLib/Airflow/Multizone/Examples/ReverseBuoyancy3Zones.mo index 1de5432b17..db190edb88 100644 --- a/AixLib/Airflow/Multizone/Examples/ReverseBuoyancy3Zones.mo +++ b/AixLib/Airflow/Multizone/Examples/ReverseBuoyancy3Zones.mo @@ -6,7 +6,6 @@ model ReverseBuoyancy3Zones AixLib.Fluid.MixingVolumes.MixingVolume volEas( redeclare package Medium = Medium, energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, - massDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, V=2.5*5*5, T_start=273.15 + 25, nPorts=5, @@ -39,7 +38,6 @@ model ReverseBuoyancy3Zones AixLib.Fluid.MixingVolumes.MixingVolume volOut( redeclare package Medium = Medium, energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, - massDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, V=1E12, T_start=273.15 + 15, nPorts=2, @@ -118,7 +116,6 @@ model ReverseBuoyancy3Zones AixLib.Fluid.MixingVolumes.MixingVolume volTop( redeclare package Medium = Medium, energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, - massDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, T_start=273.15 + 20, m_flow_nominal=0.001, V=2.5*10*10, @@ -127,7 +124,6 @@ model ReverseBuoyancy3Zones AixLib.Fluid.MixingVolumes.MixingVolume volWes( redeclare package Medium = Medium, energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, - massDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, V=2.5*5*5, T_start=273.15 + 22, nPorts=3, @@ -213,44 +209,45 @@ experiment(Tolerance=1e-06, StopTime=3600), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Airflow/Multizone/Examples/ReverseBuoyancy3Zones.mos" "Simulate and plot"), Documentation(revisions=" - -", info=" -

-This model is similar than - -AixLib.Airflow.Multizone.Validation.ThreeRoomsContam. -However, the initial temperatures are such that at the start of the -simulation, the flow direction between the three rooms reverses direction. -

-

-At the start of the simulation, -the outdoor temperature is 15°C, -and the temperatures of the volumes are -20°C at the top, -22°C at the bottom west and -25°C at the bottom east. -Thus, initially there is a net flow circulation in the counter-clock -direction. -Because the volume on the east exchanges air with the outside, -it cools down fast. Once it cooled down sufficiently, -the flow direction between the three rooms reverses -because the air in the bottom east is heaviest. -

-")); + + ",info=" +

+ This model is similar than + + AixLib.Airflow.Multizone.Validation.ThreeRoomsContam. + However, the initial temperatures are such that at the start of the + simulation, the flow direction between the three rooms reverses direction. +

+

+ At the start of the simulation, + the outdoor temperature is 15°C, + and the temperatures of the volumes are + 20°C at the top, + 22°C at the bottom west and + 25°C at the bottom east. + Thus, initially there is a net flow circulation in the counter-clock + direction. + Because the volume on the east exchanges air with the outside, + it cools down fast. Once it cooled down sufficiently, + the flow direction between the three rooms reverses + because the air in the bottom east is heaviest. +

+ "), + __Dymola_LockedEditing="Model from IBPSA"); end ReverseBuoyancy3Zones; diff --git a/AixLib/Airflow/Multizone/Examples/TrickleVent.mo b/AixLib/Airflow/Multizone/Examples/TrickleVent.mo new file mode 100644 index 0000000000..8cc57e3429 --- /dev/null +++ b/AixLib/Airflow/Multizone/Examples/TrickleVent.mo @@ -0,0 +1,132 @@ +within AixLib.Airflow.Multizone.Examples; +model TrickleVent + "Model with a trickle vent modelled using the models with flow based on tabulated data" + extends Modelica.Icons.Example; + package Medium = AixLib.Media.Air; + + BoundaryConditions.WeatherData.ReaderTMY3 weaDat( + filNam=Modelica.Utilities.Files.loadResource( + "modelica://AixLib/Resources/weatherdata/USA_CA_San.Francisco.Intl.AP.724940_TMY3.mos")) + "Weather data reader" + annotation (Placement(transformation(extent={{-90,-40},{-70,-20}}))); + Fluid.Sources.Outside_CpLowRise west( + redeclare package Medium = Medium, + s=5, + azi=AixLib.Types.Azimuth.W, + Cp0=0.6, + nPorts=1) "Model with outside conditions" + annotation (Placement(transformation(extent={{90,-40},{70,-20}}))); + Fluid.Sources.Outside_CpLowRise east( + redeclare package Medium = Medium, + s=5, + azi=AixLib.Types.Azimuth.E, + Cp0=0.6, + nPorts=1) "Model with outside conditions" + annotation (Placement(transformation(extent={{-50,-40},{-30,-20}}))); + Fluid.MixingVolumes.MixingVolume room( + redeclare package Medium = Medium, + V=2.5*5*5, + nPorts=2, + energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, + m_flow_nominal=0.01) "Room model" + annotation (Placement(transformation(extent={{10,-20},{30,0}}))); + Modelica.Thermal.HeatTransfer.Sources.PrescribedHeatFlow preHea + "Prescribed heat flow" annotation (Placement(transformation( + extent={{-10,-10},{10,10}}, + rotation=270, + origin={30,50}))); + Modelica.Blocks.Continuous.LimPID con( + Td=10, + yMax=1, + yMin=-1, + Ti=60, + controllerType=Modelica.Blocks.Types.SimpleController.P, + k=5) "Controller to maintain volume temperature" + annotation (Placement(transformation(extent={{-40,60},{-20,80}}))); + Modelica.Blocks.Sources.Constant TSet(k=293.15) "Temperature set point" + annotation (Placement(transformation(extent={{-80,60},{-60,80}}))); + Modelica.Thermal.HeatTransfer.Sensors.TemperatureSensor temSen + "Temperature sensor" annotation (Placement(transformation( + extent={{-10,-10},{10,10}}, + origin={-50,40}))); + Modelica.Blocks.Math.Gain gain(k=3000) "Gain block" + annotation (Placement(transformation(extent={{0,60},{20,80}}))); + AixLib.Airflow.Multizone.Table_m_flow tabDat_m_flow( + redeclare package Medium = Medium, + dpMea_nominal = {-50, -25, -10, -5, -3, -2, -1, 0, 1, 2, 3, 4.5, 50}, + mMea_flow_nominal = {-0.08709, -0.06158, -0.03895, -0.02754, -0.02133, -0.01742, -0.01232, 0, 0.01232, 0.01742, 0.02133, 0.02613, 0.02614}) + "Self regulating trickle vent" + annotation (Placement(transformation(extent={{-20,-40},{0,-20}}))); + AixLib.Airflow.Multizone.Table_V_flow tabDat_V_flow( + redeclare package Medium = Medium, + dpMea_nominal = {-50, -25, -10, -5, -3, -2, -1, 0, 1, 2, 3, 4.5, 50}, + VMea_flow_nominal = {-0.104508, -0.073896, -0.04674, -0.033048, -0.025596, -0.020904, -0.014784, 0, 0.014784, 0.020904, 0.025596, 0.031356, 0.031368}) + "Self regulating trickle vent" + annotation (Placement(transformation(extent={{40,-40},{60,-20}}))); +equation + connect(weaDat.weaBus, west.weaBus) annotation (Line( + points={{-70,-30},{-50,-30},{-50,-60},{90,-60},{90,-29.8}}, + color={255,204,51}, + thickness=0.5)); + connect(east.weaBus, weaDat.weaBus) annotation (Line( + points={{-50,-29.8},{-50,-30},{-70,-30}}, + color={255,204,51}, + thickness=0.5)); + connect(TSet.y,con. u_s) annotation (Line( + points={{-59,70},{-42,70}}, + color={0,0,127})); + connect(temSen.T,con. u_m) annotation (Line( + points={{-39,40},{-30,40},{-30,58}}, + color={0,0,127})); + connect(gain.u,con. y) annotation (Line( + points={{-2,70},{-19,70}}, + color={0,0,127})); + connect(gain.y,preHea. Q_flow) annotation (Line( + points={{21,70},{30,70},{30,60}}, + color={0,0,127})); + connect(room.heatPort, temSen.port) annotation (Line(points={{10,-10},{10,20}, + {-60,20},{-60,40}}, color={191,0,0})); + connect(preHea.port,room. heatPort) annotation (Line(points={{30,40},{30,20}, + {10,20},{10,-10}}, color={191,0,0})); + connect(east.ports[1], tabDat_m_flow.port_a) + annotation (Line(points={{-30,-30},{-20,-30}}, color={0,127,255})); + connect(tabDat_m_flow.port_b,room. ports[1]) + annotation (Line(points={{0,-30},{19,-30},{19,-20}}, color={0,127,255})); + connect(tabDat_V_flow.port_a,room. ports[2]) annotation (Line(points={{40,-30},{24, + -30},{24,-20},{21,-20}}, color={0,127,255})); + connect(tabDat_V_flow.port_b, west.ports[1]) + annotation (Line(points={{60,-30},{70,-30}}, color={0,127,255})); + annotation (__Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Airflow/Multizone/Examples/TrickleVent.mos" + "Simulate and plot"), + experiment( + StopTime=2592000, + Interval=600, + Tolerance=1e-06), + Documentation(info=" +

+ This model illustrates the use of the models + + AixLib.Airflow.Multizone.Table_V_flow + and + + AixLib.Airflow.Multizone.Table_m_flow + to model self regulating inlet vents. + The models are connected to a common volume that emulates a room on one side and + to outside conditions on the other side (east and west orientation respectively). +

+ ",revisions=" + + "), + __Dymola_LockedEditing="Model from IBPSA"); +end TrickleVent; diff --git a/AixLib/Airflow/Multizone/Examples/ZonalFlow.mo b/AixLib/Airflow/Multizone/Examples/ZonalFlow.mo index 3fa7ce34ac..00421bde3b 100644 --- a/AixLib/Airflow/Multizone/Examples/ZonalFlow.mo +++ b/AixLib/Airflow/Multizone/Examples/ZonalFlow.mo @@ -2,8 +2,8 @@ within AixLib.Airflow.Multizone.Examples; model ZonalFlow "Model with prescribed air exchange between two volumes" extends Modelica.Icons.Example; package Medium = AixLib.Media.Air; - parameter Modelica.SIunits.Volume volA=100 "Volume of room A"; - parameter Modelica.SIunits.Volume volB=1 "Volume of room B"; + parameter Modelica.Units.SI.Volume volA=100 "Volume of room A"; + parameter Modelica.Units.SI.Volume volB=1 "Volume of room B"; AixLib.Fluid.MixingVolumes.MixingVolume rooA( V=volA, redeclare package Medium = Medium, @@ -66,40 +66,41 @@ experiment(Tolerance=1e-06, StopTime=3600), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Airflow/Multizone/Examples/ZonalFlow.mos" "Simulate and plot"), Documentation(info=" -

-This example illustrates the use of the models that -exchange a prescribed flow rate between the -volumes that are attached to it. -The block ACS prescribes the air exchange rate to -5 air changes per hour. -The instance zonFlo takes as an input the air change per seconds, -and the instance floExc takes as inputs the mass flow rate. -For both instances, the air flows from -rooA to rooB, and -from rooB to rooA. -

-", revisions=" - -")); +

+ This example illustrates the use of the models that + exchange a prescribed flow rate between the + volumes that are attached to it. + The block ACS prescribes the air exchange rate to + 5 air changes per hour. + The instance zonFlo takes as an input the air change per seconds, + and the instance floExc takes as inputs the mass flow rate. + For both instances, the air flows from + rooA to rooB, and + from rooB to rooA. +

+ ",revisions=" + + "), + __Dymola_LockedEditing="Model from IBPSA"); end ZonalFlow; diff --git a/AixLib/Airflow/Multizone/Examples/package.order b/AixLib/Airflow/Multizone/Examples/package.order index 4eb9e1f851..162a3ed47f 100644 --- a/AixLib/Airflow/Multizone/Examples/package.order +++ b/AixLib/Airflow/Multizone/Examples/package.order @@ -7,6 +7,9 @@ OneEffectiveAirLeakageArea OneOpenDoor OneRoom Orifice +PowerLaw +PressurizationData ReverseBuoyancy ReverseBuoyancy3Zones +TrickleVent ZonalFlow diff --git a/AixLib/Airflow/Multizone/MediumColumn.mo b/AixLib/Airflow/Multizone/MediumColumn.mo index f2981bf02d..04d7246476 100644 --- a/AixLib/Airflow/Multizone/MediumColumn.mo +++ b/AixLib/Airflow/Multizone/MediumColumn.mo @@ -7,7 +7,7 @@ model MediumColumn annotation (choices( choice(redeclare package Medium = AixLib.Media.Air "Moist air"))); - parameter Modelica.SIunits.Length h(min=0) = 3 "Height of shaft"; + parameter Modelica.Units.SI.Length h(min=0) = 3 "Height of shaft"; parameter AixLib.Airflow.Multizone.Types.densitySelection densitySelection "Select how to pick density" annotation (Evaluate=true); @@ -24,13 +24,13 @@ model MediumColumn "Fluid connector b (positive design flow direction is from port_a to port_b)" annotation (Placement(transformation(extent={{10,-110},{-10,-90}}), iconTransformation(extent={{10,-110},{-10,-90}}))); - Modelica.SIunits.VolumeFlowRate V_flow + Modelica.Units.SI.VolumeFlowRate V_flow "Volume flow rate at inflowing port (positive when flow from port_a to port_b)"; - Modelica.SIunits.MassFlowRate m_flow + Modelica.Units.SI.MassFlowRate m_flow "Mass flow rate from port_a to port_b (m_flow > 0 is design flow direction)"; - Modelica.SIunits.PressureDifference dp(displayUnit="Pa") + Modelica.Units.SI.PressureDifference dp(displayUnit="Pa") "Pressure difference between port_a and port_b"; - Modelica.SIunits.Density rho "Density in medium column"; + Modelica.Units.SI.Density rho "Density in medium column"; protected Medium.ThermodynamicState sta_a=Medium.setState_phX( port_a.p, @@ -102,15 +102,15 @@ equation points={{0,100},{0,-100},{0,-98}}), Text( extent={{24,-78},{106,-100}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="Bottom"), Text( extent={{32,104},{98,70}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="Top"), Text( extent={{36,26},{88,-10}}, - lineColor={0,0,127}, + textColor={0,0,127}, fillColor={255,0,0}, fillPattern=FillPattern.Solid, textString="h=%h"), @@ -155,115 +155,116 @@ equation lineColor={0,0,0})}), defaultComponentName="col", Documentation(info=" -

-This model describes the pressure difference of a vertical medium -column. It can be used to model the pressure difference caused by -stack effect. -

-

Typical use and important parameters

-

-The model can be used with the following three configurations, which are -controlled by the setting of the parameter densitySelection: -

- -

-The settings top and bottom -should be used when rooms or different floors of a building are -connected since multizone airflow models assume that each floor is completely mixed. -For these two seetings, this model will compute the pressure between the center of the room -and an opening that is at height h relative to the center of the room. -The setting actual may be used to model a chimney in which -a column of air will change its density based on the flow direction. -

-

-In this model, the parameter h must always be positive, and the port port_a must be -at the top of the column. -

-

Dynamics

-

-For a dynamic model, use - -AixLib.Airflow.Multizone.MediumColumnDynamic instead of this model. -

-", +

+ This model describes the pressure difference of a vertical medium + column. It can be used to model the pressure difference caused by + stack effect. +

+

Typical use and important parameters

+

+ The model can be used with the following three configurations, which are + controlled by the setting of the parameter densitySelection: +

+ +

+ The settings top and bottom + should be used when rooms or different floors of a building are + connected since multizone airflow models assume that each floor is completely mixed. + For these two seetings, this model will compute the pressure between the center of the room + and an opening that is at height h relative to the center of the room. + The setting actual may be used to model a chimney in which + a column of air will change its density based on the flow direction. +

+

+ In this model, the parameter h must always be positive, and the port port_a must be + at the top of the column. +

+

Dynamics

+

+ For a dynamic model, use + + AixLib.Airflow.Multizone.MediumColumnDynamic instead of this model. +

+ ", revisions=" - -")); + + "), + __Dymola_LockedEditing="Model from IBPSA"); end MediumColumn; diff --git a/AixLib/Airflow/Multizone/MediumColumnDynamic.mo b/AixLib/Airflow/Multizone/MediumColumnDynamic.mo index 5608465328..44031c441b 100644 --- a/AixLib/Airflow/Multizone/MediumColumnDynamic.mo +++ b/AixLib/Airflow/Multizone/MediumColumnDynamic.mo @@ -1,14 +1,15 @@ within AixLib.Airflow.Multizone; model MediumColumnDynamic "Vertical shaft with no friction and storage of heat and mass" - extends AixLib.Fluid.Interfaces.LumpedVolumeDeclarations; + extends AixLib.Fluid.Interfaces.LumpedVolumeDeclarations( + final massDynamics=energyDynamics); replaceable package Medium = Modelica.Media.Interfaces.PartialMedium "Medium in the component" annotation (choices( choice(redeclare package Medium = AixLib.Media.Air "Moist air"))); - parameter Modelica.SIunits.Length h(min=0) = 3 "Height of shaft"; + parameter Modelica.Units.SI.Length h(min=0) = 3 "Height of shaft"; Modelica.Fluid.Interfaces.FluidPort_a port_a( redeclare final package Medium = Medium, @@ -22,7 +23,7 @@ model MediumColumnDynamic "Fluid connector b (positive design flow direction is from port_a to port_b)" annotation (Placement(transformation(extent={{10,-110},{-10,-90}}), iconTransformation(extent={{10,-110},{-10,-90}}))); - parameter Modelica.SIunits.Volume V "Volume in medium shaft"; + parameter Modelica.Units.SI.Volume V "Volume in medium shaft"; // Heat transfer through boundary parameter Boolean use_HeatTransfer = false @@ -96,15 +97,15 @@ equation points={{0,100},{0,-100},{0,-98}}), Text( extent={{24,-78},{106,-100}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="Bottom"), Text( extent={{32,104},{98,70}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="Top"), Text( extent={{42,26},{94,-10}}, - lineColor={0,0,127}, + textColor={0,0,127}, fillColor={255,0,0}, fillPattern=FillPattern.Solid, textString="h=%h"), @@ -153,69 +154,76 @@ equation color={255,0,0})}), defaultComponentName="col", Documentation(info=" -

-This model contains a completely mixed fluid volume and -models that take into account the pressure difference of -a medium column that is at the same temperature as the -fluid volume. It can be used to model the pressure difference -caused by a stack effect. -

-

Typical use and important parameters

-

-Set the parameter use_HeatTransfer=true to expose -a heatPort. This heatPort can be used -to add or subtract heat from the volume. This allows, for example, -to use this model in conjunction with a model for heat transfer through -walls to model a solar chimney that stores heat. -

-

Dynamics

-

-For a steady-state model, use - -AixLib.Airflow.Multizone.MediumColumn instead of this model. -

-

In this model, the parameter h must always be positive, and the port port_a must be -at the top of the column. -

-", +

+ This model contains a completely mixed fluid volume and + models that take into account the pressure difference of + a medium column that is at the same temperature as the + fluid volume. It can be used to model the pressure difference + caused by a stack effect. +

+

Typical use and important parameters

+

+ Set the parameter use_HeatTransfer=true to expose + a heatPort. This heatPort can be used + to add or subtract heat from the volume. This allows, for example, + to use this model in conjunction with a model for heat transfer through + walls to model a solar chimney that stores heat. +

+

Dynamics

+

+ For a steady-state model, use + + AixLib.Airflow.Multizone.MediumColumn instead of this model. +

+

In this model, the parameter h must always be positive, and the port port_a must be + at the top of the column. +

+ ", revisions=" - -")); + + "), + __Dymola_LockedEditing="Model from IBPSA"); end MediumColumnDynamic; diff --git a/AixLib/Airflow/Multizone/Orifice.mo b/AixLib/Airflow/Multizone/Orifice.mo index 180f79b5c4..ed27f0261e 100644 --- a/AixLib/Airflow/Multizone/Orifice.mo +++ b/AixLib/Airflow/Multizone/Orifice.mo @@ -1,17 +1,18 @@ within AixLib.Airflow.Multizone; model Orifice "Orifice" - extends AixLib.Airflow.Multizone.BaseClasses.PowerLawResistance( + extends AixLib.Airflow.Multizone.Coefficient_V_flow( m=0.5, - k=CD*A*sqrt(2.0/rho_default)); + final C=CD*A*sqrt(2.0/rho_default)); - parameter Modelica.SIunits.Area A "Area of orifice" + parameter Modelica.Units.SI.Area A "Area of orifice" annotation (Dialog(group="Orifice characteristics")); parameter Real CD=0.65 "Discharge coefficient" annotation (Dialog(group="Orifice characteristics")); -equation - v = V_flow/A; - annotation (Icon(graphics={ + Modelica.Units.SI.Velocity v(nominal=1) = V_flow/A "Average velocity"; + + annotation ( + Icon(graphics={ Rectangle( extent={{-100,8},{100,-8}}, lineColor={0,0,255}, @@ -32,94 +33,108 @@ equation fillPattern=FillPattern.Solid), Text( extent={{24,-24},{96,-100}}, - lineColor={0,0,255}, + textColor={0,0,255}, fillColor={0,127,0}, fillPattern=FillPattern.Solid, textString="A=%A")}), defaultComponentName="ori", Documentation(info=" -

-This model describes the mass flow rate and pressure difference relation -of an orifice in the form -

-

- V̇ = k Δpm, -

-

-where - is the volume flow rate, -k is a flow coefficient and -m is the flow exponent. -The flow coefficient is -

-

-k = CD A (2/ρ0)0.5, -

-

-where -CD is the discharge coefficient, -A is the cross section area and -ρ0 is the mass density at the medium default pressure, temperature and humidity. -

-

-For turbulent flow, set m=1/2 and -for laminar flow, set m=1. -Large openings are characterized by values close to 0.5, -while values near 0.65 have been found for small -crack-like openings (Dols and Walton, 2002). -

-

References

- -", -revisions=" - -")); +

+ This model describes the mass flow rate and pressure difference relation + of an orifice in the form +

+

+ V̇ = C Δpm, +

+

+ where + is the volume flow rate, + C is a flow coefficient and + m is the flow exponent. + The flow coefficient is +

+

+ C = CD A (2/ρ0)0.5, +

+

+ where + CD is the discharge coefficient, + A is the cross section area and + ρ0 is the mass density at the medium default pressure, temperature and humidity. +

+

+ For turbulent flow, set m=1/2 and + for laminar flow, set m=1. + Large openings are characterized by values close to 0.5, + while values near 0.65 have been found for small + crack-like openings (Dols and Walton, 2002). +

+

References

+ + ",revisions=" + + "), + __Dymola_LockedEditing="Model from IBPSA"); end Orifice; diff --git a/AixLib/Airflow/Multizone/Point_m_flow.mo b/AixLib/Airflow/Multizone/Point_m_flow.mo new file mode 100644 index 0000000000..07901daa92 --- /dev/null +++ b/AixLib/Airflow/Multizone/Point_m_flow.mo @@ -0,0 +1,85 @@ +within AixLib.Airflow.Multizone; +model Point_m_flow + "Powerlaw with flow coeffient fitted based on flow exponent and 1 datapoint" + extends AixLib.Airflow.Multizone.Coefficient_m_flow(final k=mMea_flow_nominal/ + (dpMea_nominal^m)); + parameter Modelica.Units.SI.PressureDifference dpMea_nominal(displayUnit="Pa") + "Pressure difference of test point" + annotation (Dialog(group="Test data")); + parameter Modelica.Units.SI.MassFlowRate mMea_flow_nominal + "Mass flow rate of test point" + annotation (Dialog(group="Test data")); + +annotation ( + Icon(graphics={ + Rectangle( + extent={{-52,34},{50,-34}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,0,0}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{-60,14},{78,-12}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={255,255,255}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{-98,6},{-62,-6}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,127,0}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{50,8},{102,-6}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,127,0}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{-68,4},{-50,-4}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,127,0}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{-86,6},{-50,-6}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,127,0}, + fillPattern=FillPattern.Solid)}), + defaultComponentName="pow", + Documentation(info=" +

+ Model that fits the flow coefficient of the massflow version of the + orifice equation based on 1 datapoint of mass flow rate and pressure difference, and given flow exponent. +

+

+ A similar model is also used in the CONTAM software (Dols and Walton, 2015). +

+

+ References +

+ + ",revisions=" + + + "), + __Dymola_LockedEditing="Model from IBPSA"); +end Point_m_flow; diff --git a/AixLib/Airflow/Multizone/Points_m_flow.mo b/AixLib/Airflow/Multizone/Points_m_flow.mo new file mode 100644 index 0000000000..6fea62a4c0 --- /dev/null +++ b/AixLib/Airflow/Multizone/Points_m_flow.mo @@ -0,0 +1,88 @@ +within AixLib.Airflow.Multizone; +model Points_m_flow + "Powerlaw with flow coefficient and flow exponent fitted based on 2 datapoints" + extends AixLib.Airflow.Multizone.Coefficient_m_flow(final k= + mMea_flow_nominal[1]/(dpMea_nominal[1]^m2), + final m=m2); + + parameter Modelica.Units.SI.PressureDifference dpMea_nominal[2](each displayUnit="Pa") + "Pressure difference of two test points" + annotation (Dialog(group="Test data")); + parameter Modelica.Units.SI.MassFlowRate mMea_flow_nominal[2] + "Mass flow rate of two test points" + annotation (Dialog(group="Test data")); +protected + parameter Real m2 = (log(mMea_flow_nominal[1]) - log(mMea_flow_nominal[2]))/ + (log(dpMea_nominal[1]) -log(dpMea_nominal[2])) "Flow exponent"; + annotation ( + Icon(graphics={ + Rectangle( + extent={{-52,34},{50,-34}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,0,0}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{-60,14},{78,-12}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={255,255,255}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{-98,6},{-62,-6}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,127,0}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{50,8},{102,-6}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,127,0}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{-68,4},{-50,-4}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,127,0}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{-86,6},{-50,-6}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,127,0}, + fillPattern=FillPattern.Solid)}), + defaultComponentName="pow", + Documentation(info=" +

+ Model that fits the flow coefficient of the massflow version of the + orifice equation based on 2 datapoints of mass flow rate and pressure difference. +

+

+ A similar model is also used in the CONTAM software (Dols and Walton, 2015). +

+

References

+ + ",revisions=" + + + "), + __Dymola_LockedEditing="Model from IBPSA"); +end Points_m_flow; diff --git a/AixLib/Airflow/Multizone/Table_V_flow.mo b/AixLib/Airflow/Multizone/Table_V_flow.mo new file mode 100644 index 0000000000..bdd84c917b --- /dev/null +++ b/AixLib/Airflow/Multizone/Table_V_flow.mo @@ -0,0 +1,102 @@ +within AixLib.Airflow.Multizone; +model Table_V_flow + "Volume flow(y-axis) vs Pressure(x-axis) cubic spline fit model based on table data, with last two points linearly interpolated" + extends AixLib.Airflow.Multizone.Table_m_flow( + final mMea_flow_nominal = VMea_flow_nominal*rho_default); + + parameter Modelica.Units.SI.VolumeFlowRate VMea_flow_nominal[:] + "Volume flow rate of test points" + annotation (Dialog(group="Test data")); +initial equation + assert(size(dpMea_nominal, 1) == size(VMea_flow_nominal, 1), + "Size of parameters are size(dpMea_nominal, 1) = " + String(size(dpMea_nominal, 1)) + + " and size(VMea_flow_nominal, 1) = " + String(size(VMea_flow_nominal, 1)) + ". They must be equal."); + + annotation ( + defaultComponentName="tabDat", + Documentation(info=" +

+ This model describes the one-directional pressure driven air flow through an + opening based on user-provided tabular data describing the relation between volume flow rate + and pressure difference over the component. +

+

+ V̇ = f(Δp), +

+

+ where is the volume flow rate and + Δp is the pressure difference. +

+ Based on the table input, a cubic hermite spline is constructed between all points + except for the two last pairs of points. These point are connected linearly. +

+

+ The constructed curve is the direct relation between and Δp. +

+

+ A similar model is also used in the CONTAM software (Dols and Walton, 2015). +

+

References

+ + ",revisions=" + + + "),Icon(graphics={ + Rectangle( + extent={{-48,80},{52,-80}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,0,0}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{-98,6},{-48,-6}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,127,0}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{52,6},{102,-6}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,127,0}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{-22,78},{2,-78}}, + lineColor={28,108,200}, + fillColor={255,255,255}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{2,78},{28,-78}}, + lineColor={28,108,200}, + fillColor={255,255,255}, + fillPattern=FillPattern.Solid), + Text( + extent={{0,13},{0,-13}}, + textColor={0,0,127}, + origin={15,0}, + rotation=90, + textString="V_flow"), + Rectangle( + extent={{-22,78},{28,58}}, + lineColor={28,108,200}, + fillColor={255,255,255}, + fillPattern=FillPattern.Forward), + Line(points={{2,78},{2,-78}}, color={28,108,200})}), + __Dymola_LockedEditing="Model from IBPSA"); +end Table_V_flow; diff --git a/AixLib/Airflow/Multizone/Table_m_flow.mo b/AixLib/Airflow/Multizone/Table_m_flow.mo new file mode 100644 index 0000000000..40ebf622c2 --- /dev/null +++ b/AixLib/Airflow/Multizone/Table_m_flow.mo @@ -0,0 +1,116 @@ +within AixLib.Airflow.Multizone; +model Table_m_flow + "Mass flow(y-axis) vs Pressure(x-axis) cubic spline fit model based from table data, with last two points linearly interpolated" + extends AixLib.Airflow.Multizone.BaseClasses.PartialOneWayFlowElement( + m_flow = AixLib.Airflow.Multizone.BaseClasses.interpolate( + u=dp, + xd=dpMea_nominal, + yd=mMea_flow_nominal, + d=d), + final m_flow_nominal=max(abs(dpMea_nominal[1]), abs(dpMea_nominal[end]))); + + parameter Modelica.Units.SI.PressureDifference dpMea_nominal[:](each displayUnit="Pa") + "Pressure difference of test points" + annotation (Dialog(group="Test data")); + parameter Modelica.Units.SI.MassFlowRate mMea_flow_nominal[:] + "Mass flow rate of test points" + annotation (Dialog(group="Test data")); +protected + parameter Real[size(dpMea_nominal, 1)] d = AixLib.Utilities.Math.Functions.splineDerivatives( + x=dpMea_nominal, + y=mMea_flow_nominal, + ensureMonotonicity=true) + "Derivatives at the support points"; +initial equation + assert(size(dpMea_nominal, 1) == size(mMea_flow_nominal, 1), + "Size of parameters are size(dpMea_nominal, 1) = " + String(size(dpMea_nominal, 1)) + + " and size(mMea_flow_nominal, 1) = " + String(size(mMea_flow_nominal, 1)) + ". They must be equal."); + annotation ( + Icon(graphics={ + Rectangle( + extent={{-50,80},{50,-80}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,0,0}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{-100,6},{-50,-6}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,127,0}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{50,6},{100,-6}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,127,0}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{-24,78},{0,-78}}, + lineColor={28,108,200}, + fillColor={255,255,255}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{0,78},{26,-78}}, + lineColor={28,108,200}, + fillColor={255,255,255}, + fillPattern=FillPattern.Solid), + Text( + extent={{0,13},{0,-13}}, + textColor={0,0,127}, + textString="m_flow", + origin={13,0}, + rotation=90), + Rectangle( + extent={{-24,78},{26,58}}, + lineColor={28,108,200}, + fillColor={255,255,255}, + fillPattern=FillPattern.Forward), + Line(points={{0,78},{0,-78}}, color={28,108,200})}), + defaultComponentName="tabDat", + Documentation(info=" +

+ This model describes the one-directional pressure driven air flow through an + opening based on user-provided tabular data describing the relation between mass flow rate + and pressure difference over the component. +

+

+ ṁ = f(Δp), +

+

+ where is the volume flow rate and + Δp is the pressure difference. +

+ Based on the table input, a cubic hermite spline is constructed between all points + except for the two last pairs of points. These point are connected linearly. +

+

+ The constructed curve is the direct relation between and Δp. +

+

+ A similar model is also used in the CONTAM software (Dols and Walton, 2015). +

+

References

+ + ",revisions=" + + + "), + __Dymola_LockedEditing="Model from IBPSA"); +end Table_m_flow; diff --git a/AixLib/Airflow/Multizone/Types/densitySelection.mo b/AixLib/Airflow/Multizone/Types/densitySelection.mo index 7617a6f79d..7803d0dd7d 100644 --- a/AixLib/Airflow/Multizone/Types/densitySelection.mo +++ b/AixLib/Airflow/Multizone/Types/densitySelection.mo @@ -5,25 +5,26 @@ type densitySelection = enumeration( actual "Actual density based on flow direction") "Enumeration to select density in medium column" annotation ( Documentation(info=" -

-Enumeration to define the choice of valve flow coefficient -(to be selected via choices menu): -

- - - - - - - - - -
EnumerationDescription
fromTop -Use this setting to use the density from the volume that is connected -to the top port. -
fromBottom -Use this setting to use the density from the volume that is connected -to the bottom port. -
actualUse this setting to use the density based on the actual flow direction. -
-")); +

+ Enumeration to define the choice of valve flow coefficient + (to be selected via choices menu): +

+ + + + + + + + + +
EnumerationDescription
fromTop + Use this setting to use the density from the volume that is connected + to the top port. +
fromBottom + Use this setting to use the density from the volume that is connected + to the bottom port. +
actualUse this setting to use the density based on the actual flow direction. +
+ "), + __Dymola_LockedEditing="Model from IBPSA"); diff --git a/AixLib/Airflow/Multizone/Types/package.mo b/AixLib/Airflow/Multizone/Types/package.mo index 1836bcfd03..8e13906578 100644 --- a/AixLib/Airflow/Multizone/Types/package.mo +++ b/AixLib/Airflow/Multizone/Types/package.mo @@ -1,6 +1,6 @@ within AixLib.Airflow.Multizone; package Types "Package with type definitions" - + extends Modelica.Icons.TypesPackage; annotation (preferredView="info", Documentation(info=" This package contains type definitions. diff --git a/AixLib/Airflow/Multizone/UsersGuide.mo b/AixLib/Airflow/Multizone/UsersGuide.mo index 26dfd25e4b..c4c7da9f26 100644 --- a/AixLib/Airflow/Multizone/UsersGuide.mo +++ b/AixLib/Airflow/Multizone/UsersGuide.mo @@ -10,8 +10,7 @@ multizone airflow and contaminant transport.

The models can be used to compute the air flow between different rooms -and between a room and the exterior environment. -In multizone airflow models, typically each room volume is assumed +and between a room and the exterior environment. In multizone airflow models, typically each room volume is assumed to be completely mixed. The driving force for the air flow are pressure differences that can be induced, e.g., by @@ -31,59 +30,45 @@ wind pressure on the building facade.

-Wind pressure coefficients for different building configurations can be found -in Costola et al. (2009), Persily and Ivy (2001), and Swami and Chandra (1987). +Models for air flow through openings are in this package, while the models +for wind pressure and outdoor air conditions are in the package +AixLib.Fluid.Sources.

-The models in this package are as described in Wetter (2005), -except for the addition of the model - -Buildings.Airflow.Multizone.BaseClasses.windPressureLowRise -that computes the wind pressure on facades, and -some changes that have been done when migrating -the models to Modelica 3.1, which led to a simpler implementation based -on the stream functions. +Most models in this package are as described in Wetter (2005). +Wind pressure coefficients for different building configurations can be found +in Costola et al. (2009), Persily and Ivy (2001), Swami and Chandra (1987) and Liddament (1996).

+

References

+

Acknowledgements

We would like to thank the -United Technologies Research Center for contributing this package -to the Buildings library. -

-

References

-

-D. Costola, B. Blocken and J.L.M. Hensen. -Overview of pressure coefficient data in building energy simulation -and airflow network programs. -Building and Environment. Vol. 44(10): 2027-2036. 2009. -

-

-Muthusamy V. Swami and -Subrato Chandra. - - -Procedures for -Calculating Natural -Ventilation Airflow -Rates in Buildings. -Florida Solar Energy Center, FSEC-CR-163-86. March, 1987. -Cape Canaveral, Florida. -

-

-Andrew K. Persily and Elizabeth M. Ivy. - - -Input Data for Multizone Airflow and IAQ Analysis. -NIST, NISTIR 6585. -January, 2001. -Gaithersburg, MD. +United Technologies Research Center for contributing the original package +to the AixLib library.

-Michael Wetter. - -Multizone Airflow Model in Modelica. -Proc. of the 5th International Modelica Conference, p. 431-440. Vienna, Austria, September 2006. +We would like to thank the Research Foundation Flanders (FWO) and Ghent University for providing +the oportunity to further develop this package.

+", revisions=" + ")); end UsersGuide; diff --git a/AixLib/Airflow/Multizone/Validation/DoorOpenClosed.mo b/AixLib/Airflow/Multizone/Validation/DoorOpenClosed.mo index e61aaa3142..021b459819 100644 --- a/AixLib/Airflow/Multizone/Validation/DoorOpenClosed.mo +++ b/AixLib/Airflow/Multizone/Validation/DoorOpenClosed.mo @@ -102,29 +102,30 @@ equation StopTime=1, Tolerance=1e-06), Documentation(info=" -

-This model validates the door model that takes as an input a signal -that determines whether the door is open or closed. -In this validation, the instance dooOpeClo is either open or closed, -depending on its input signal y. -If the door is open, its air flow rate is identical to the air flow rate of the -instance doo. -If the door is closed, its air flow rate is identical to the air flow rate of the -instance lea. -

-", revisions=" - -"), +

+ This model validates the door model that takes as an input a signal + that determines whether the door is open or closed. + In this validation, the instance dooOpeClo is either open or closed, + depending on its input signal y. + If the door is open, its air flow rate is identical to the air flow rate of the + instance doo. + If the door is closed, its air flow rate is identical to the air flow rate of the + instance lea. +

+ ",revisions=" + + "), Diagram(coordinateSystem(extent={{-100,-100},{100,100}})), - Icon(coordinateSystem(extent={{-100,-100},{80,100}}))); + Icon(coordinateSystem(extent={{-100,-100},{80,100}})), + __Dymola_LockedEditing="Model from IBPSA"); end DoorOpenClosed; diff --git a/AixLib/Airflow/Multizone/Validation/OneWayFlow.mo b/AixLib/Airflow/Multizone/Validation/OneWayFlow.mo new file mode 100644 index 0000000000..c26bab5797 --- /dev/null +++ b/AixLib/Airflow/Multizone/Validation/OneWayFlow.mo @@ -0,0 +1,238 @@ +within AixLib.Airflow.Multizone.Validation; +model OneWayFlow + "Validation model to verify one way flow implementation" + extends Modelica.Icons.Example; + package Medium = AixLib.Media.Specialized.Air.PerfectGas; + + Modelica.Units.SI.PressureDifference dP = ela.dp "Pressure difference over the tested elements"; + Modelica.Units.SI.MassFlowRate[nTested] m_flow_data= + {sen_ela.m_flow, + sen_ori.m_flow, + sen_pow_1dat.m_flow, + sen_pow_2dat.m_flow, + sen_pow_m_flow.m_flow, + sen_pow_V_flow.m_flow, + sen_tabDat_m_flow.m_flow, + sen_tabDat_V_flow.m_flow} + "Simulated mass flow of each flow element"; + Modelica.Units.SI.MassFlowRate[nTested] m_flow_testdata=contamData.y + "Mass flow of each flow element of CONTAM simulation"; + +protected + parameter Integer nTested=8 "Number of tested flow elements"; + +//Test Data +//Headers: ["dP","ELA_FlowRate","ORI_FlowRate","1DatPoint_FlowRate","2DatPoint_FlowRate","pow_m_flow_FlowRate","pow_V_flow_FlowRate","tabDat_m_flow","tabDat_V_flow_FlowRate"] + parameter Real TestData[:,nTested+1]=[ + -50,-0.0838,-0.0658,-0.0672,-0.0609,-0.0707,-0.0851,-0.0871,-0.105; + -40,-0.0725,-0.0589,-0.0601,-0.055,-0.0632,-0.0762,-0.0769,-0.0926; + -25,-0.0534,-0.0466,-0.0475,-0.0443,-0.05,-0.0602,-0.0616,-0.0741; + -10,-0.0294,-0.0294,-0.03,-0.029,-0.0316,-0.0381,-0.039,-0.0469; + -5,-0.0188,-0.0208,-0.0212,-0.0211,-0.0224,-0.0269,-0.0275,-0.0332; + -1,-0.00659,-0.00931,-0.0095,-0.01,-0.01,-0.012,-0.0123,-0.0148; + 0,0,0,0,0,0,0,0,0; + 1,0.00659,0.00931,0.0095,0.01,0.01,0.012,0.0123,0.0148; + 5,0.0188,0.0208,0.0212,0.0211,0.0224,0.0269,0.0261,0.0315; + 10,0.0294,0.0294,0.03,0.029,0.0316,0.0381,0.0261,0.0315; + 25,0.0534,0.0466,0.0475,0.0443,0.05,0.0602,0.0261,0.0315; + 40,0.0725,0.0589,0.0601,0.055,0.0632,0.0762,0.0261,0.0315; + 50,0.0838,0.0658,0.0672,0.0609,0.0707,0.0851,0.0261,0.0315] + "Steady state CONTAM results with specific pressure difference for similar flow models"; + + //Boundary conditions + Fluid.Sources.Boundary_pT bouA( + redeclare package Medium = Medium, + use_p_in=true, + T=293.15, + nPorts=8) "Pressure boundary" annotation (Placement(transformation(extent={{-100,-28},{-80,-8}}))); + Fluid.Sources.Boundary_pT bouB( + redeclare package Medium = Medium, + use_p_in=true, + T=293.15, + nPorts=8) "Pressure boundary" annotation (Placement(transformation(extent={{100,-20},{80,0}}))); + Modelica.Blocks.Sources.Ramp ramp_min50_50pa( + duration=500, + height=100, + offset=-50) "Block that generates a ramp signal from -50 to +50" + annotation (Placement(transformation(extent={{-180,-20},{-160,0}}))); + Modelica.Blocks.Sources.Constant PAmb(k=101325) + "Assumed ambient pressure" annotation (Placement(transformation(extent={{-180,18}, + {-160,38}}))); + Modelica.Blocks.Math.Sum sum(nin=2) + "Sum" annotation (Placement(transformation( + extent={{-10,-10},{10,10}}, + rotation=0, + origin={-122,-10}))); + + //Flow models + EffectiveAirLeakageArea ela( + redeclare package Medium = Medium, + dpRat=10, + CDRat=0.6, + L=0.01) + "EffectiveAirLeakageArea" annotation (Placement(transformation(extent={{-40,120}, + {-20,140}}))); + Orifice ori( + redeclare package Medium = Medium, + A=0.01, + CD=0.6) "Orifice" annotation (Placement(transformation(extent={{-40,80},{-20,100}}))); + Point_m_flow pow_1dat( + dpMea_nominal(displayUnit="Pa") = 4, + redeclare package Medium = Medium, + mMea_flow_nominal=0.019) "Powerlaw_1Datapoint" + annotation (Placement(transformation(extent={{-40,40},{-20,60}}))); + Points_m_flow pow_2dat( + redeclare package Medium = Medium, + mMea_flow_nominal={0.019, 0.029}, + dpMea_nominal = {4, 10}) "Powerlaw_2Datapoints" + annotation (Placement(transformation(extent={{-40,0},{-20,20}}))); + Coefficient_m_flow pow_m_flow( + redeclare package Medium = Medium, + m=0.5, + k=0.01) "Powerlaw_m_flow" + annotation (Placement(transformation(extent={{-40,-40},{-20,-20}}))); + Coefficient_V_flow pow_V_flow( + redeclare package Medium = Medium, + m=0.5, + C=0.01) + "Powerlaw_V_flow" annotation (Placement(transformation(extent={{-40,-80},{-20,-60}}))); + Table_m_flow tabDat_m_flow( + redeclare package Medium = Medium, + mMea_flow_nominal = {-0.08709, -0.06158, -0.03895, -0.02754, -0.02133, -0.01742, -0.01232, 0, 0.01232, 0.01742, 0.02133, 0.02613, 0.02614}, + dpMea_nominal = {-50, -25, -10, -5, -3, -2, -1, 0, 1, 2, 3, 4.5, 50}) + "TableData_m_flow" annotation (Placement(transformation(extent={{-40,-120},{-20,-100}}))); + Table_V_flow tabDat_V_flow( + redeclare package Medium = Medium, + VMea_flow_nominal = {-0.08709, -0.06158, -0.03895, -0.02754, -0.02133, -0.01742, -0.01232, 0, 0.01232, 0.01742, 0.02133, 0.02613, 0.02614}, + dpMea_nominal = {-50, -25, -10, -5, -3, -2, -1, 0, 1, 2, 3, 4.5, 50}) + "TableData_V_flow" annotation (Placement(transformation(extent={{-40,-160},{-20,-140}}))); + + //Mass flow sensors + Fluid.Sensors.MassFlowRate sen_ela(redeclare package Medium = Medium) + "Mass flow rate sensor" annotation (Placement(transformation(extent={{0,120},{20,140}}))); + Fluid.Sensors.MassFlowRate sen_ori(redeclare package Medium = Medium) + "Mass flow rate sensor" annotation (Placement(transformation(extent={{0,80},{20,100}}))); + Fluid.Sensors.MassFlowRate sen_pow_1dat(redeclare package Medium = Medium) + "Mass flow rate sensor" annotation (Placement(transformation(extent={{0,40},{20,60}}))); + Fluid.Sensors.MassFlowRate sen_pow_2dat(redeclare package Medium = Medium) + "Mass flow rate sensor" annotation (Placement(transformation(extent={{0,0},{20,20}}))); + Fluid.Sensors.MassFlowRate sen_pow_m_flow(redeclare package Medium = Medium) + "Mass flow rate sensor" annotation (Placement(transformation(extent={{0,-40},{20,-20}}))); + Fluid.Sensors.MassFlowRate sen_pow_V_flow(redeclare package Medium = Medium) + "Mass flow rate sensor" annotation (Placement(transformation(extent={{0,-80},{20,-60}}))); + Fluid.Sensors.MassFlowRate sen_tabDat_m_flow(redeclare package Medium = Medium) + "Mass flow rate sensor" annotation (Placement(transformation(extent={{0,-120},{20,-100}}))); + Fluid.Sensors.MassFlowRate sen_tabDat_V_flow(redeclare package Medium = Medium) + "Mass flow rate sensor" annotation (Placement(transformation(extent={{0,-160},{20,-140}}))); + + //Checking the data + Modelica.Blocks.Tables.CombiTable1Dv contamData( + table=TestData, + columns=2:9, + smoothness=Modelica.Blocks.Types.Smoothness.MonotoneContinuousDerivative2) + "Table with CONTAM simulation results for comparison" + annotation (Placement(transformation(extent={{-80,160},{-60,180}}))); + Modelica.Blocks.Routing.Replicator replicator(nout=nTested) + "Signal replicator" + annotation (Placement(transformation(extent={{-120, + 160},{-100,180}}))); + + +equation + + connect(ramp_min50_50pa.y, sum.u[1]) annotation (Line(points={{-159,-10},{-134, + -10},{-134,-10.5}}, color={0,0,127})); + connect(PAmb.y, sum.u[2]) annotation (Line(points={{-159,28},{-140,28},{-140,-10}, + {-134,-10},{-134,-9.5}}, color={0,0,127})); + connect(sum.y, bouA.p_in) annotation (Line(points={{-111,-10},{-102,-10}}, color={0,0,127})); + connect(PAmb.y, bouB.p_in) annotation (Line(points={{-159,28},{-140,28},{-140, + 150},{112,150},{112,-2},{102,-2}}, color={0,0,127})); + connect(ramp_min50_50pa.y, replicator.u) annotation (Line(points={{-159,-10},{ + -150,-10},{-150,170},{-122,170}}, color={0,0,127})); + connect(replicator.y, contamData.u) + annotation (Line(points={{-99,170},{-82,170}}, color={0,0,127})); + connect(bouA.ports[1],ela. port_a) annotation (Line(points={{-80,-19.75},{-62, + -19.75},{-62,130},{-40,130}}, + color={0,127,255})); + connect(bouA.ports[2], ori.port_a) annotation (Line(points={{-80,-19.25},{-60, + -19.25},{-60,90},{-40,90}}, + color={0,127,255})); + connect(bouA.ports[3], pow_1dat.port_a) annotation (Line(points={{-80,-18.75}, + {-58,-18.75},{-58,50},{-40,50}}, + color={0,127,255})); + connect(bouA.ports[4], pow_2dat.port_a) annotation (Line(points={{-80,-18.25}, + {-56,-18.25},{-56,10},{-40,10}}, + color={0,127,255})); + connect(bouA.ports[5], pow_m_flow.port_a) annotation (Line(points={{-80,-17.75}, + {-56,-17.75},{-56,-30},{-40,-30}}, + color={0,127,255})); + connect(bouA.ports[6], pow_V_flow.port_a) annotation (Line(points={{-80,-17.25}, + {-58,-17.25},{-58,-70},{-40,-70}}, + color={0,127,255})); + connect(bouA.ports[7],tabDat_m_flow. port_a) annotation (Line(points={{-80,-16.75}, + {-60,-16.75},{-60,-110},{-40,-110}}, + color={0,127,255})); + connect(bouA.ports[8],tabDat_V_flow. port_a) annotation (Line(points={{-80,-16.25}, + {-62,-16.25},{-62,-150},{-40,-150}}, + color={0,127,255})); + connect(ela.port_b,sen_ela. port_a) annotation (Line(points={{-20,130},{0,130}}, + color={0,127,255})); + connect(sen_ela.port_b, bouB.ports[1]) annotation (Line(points={{20,130},{60,130}, + {60,-11.75},{80,-11.75}}, + color={0,127,255})); + connect(ori.port_b,sen_ori. port_a) annotation (Line(points={{-20,90},{0,90}},color={0,127,255})); + connect(sen_ori.port_b, bouB.ports[2]) annotation (Line(points={{20,90},{58,90}, + {58,-11.25},{80,-11.25}}, + color={0,127,255})); + connect(pow_1dat.port_b,sen_pow_1dat. port_a) annotation (Line(points={{-20,50},{0,50}},color={0,127,255})); + connect(sen_pow_1dat.port_b, bouB.ports[3]) annotation (Line(points={{20,50}, + {56,50},{56,-10.75},{80,-10.75}}, + color={0,127,255})); + connect(pow_2dat.port_b,sen_pow_2dat. port_a) annotation (Line(points={{-20,10},{0,10}},color={0,127,255})); + connect(sen_pow_2dat.port_b, bouB.ports[4]) annotation (Line(points={{20,10}, + {54,10},{54,-10.25},{80,-10.25}}, + color={0,127,255})); + connect(pow_m_flow.port_b,sen_pow_m_flow. port_a) annotation (Line(points={{-20,-30},{0,-30}},color={0,127,255})); + connect(sen_pow_m_flow.port_b, bouB.ports[5]) annotation (Line(points={{20,-30}, + {54,-30},{54,-9.75},{80,-9.75}}, + color={0,127,255})); + connect(pow_V_flow.port_b,sen_pow_V_flow. port_a) annotation (Line(points={{-20,-70},{0,-70}},color={0,127,255})); + connect(sen_pow_V_flow.port_b, bouB.ports[6]) annotation (Line(points={{20,-70}, + {56,-70},{56,-9.25},{80,-9.25}}, + color={0,127,255})); + connect(tabDat_m_flow.port_b,sen_tabDat_m_flow. port_a) annotation (Line(points={{-20,-110},{0,-110}}, + color={0,127,255})); + connect(sen_tabDat_m_flow.port_b, bouB.ports[7]) annotation (Line(points={{20,-110}, + {58,-110},{58,-8.75},{80,-8.75}}, + color={0,127,255})); + connect(tabDat_V_flow.port_b,sen_tabDat_V_flow. port_a) annotation (Line(points={{-20,-150},{0,-150}}, color={0,127,255})); + connect(sen_tabDat_V_flow.port_b, bouB.ports[8]) annotation (Line(points={{20,-150}, + {60,-150},{60,-8.25},{80,-8.25}}, + color={0,127,255})); + + + annotation (Diagram( + coordinateSystem(preserveAspectRatio=false, extent={{-200,-180},{160,200}})), + experiment( + StopTime=500, + Interval=1, + Tolerance=1e-06), + __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Airflow/Multizone/Validation/OneWayFlow.mos" + "Simulate and plot"), + Documentation(revisions=" + + + "),Icon(coordinateSystem(extent={{-100,-100},{100,100}})), + __Dymola_LockedEditing="Model from IBPSA"); +end OneWayFlow; diff --git a/AixLib/Airflow/Multizone/Validation/OpenDoorBuoyancyDynamic.mo b/AixLib/Airflow/Multizone/Validation/OpenDoorBuoyancyDynamic.mo index 16655c10c8..66d7f55444 100644 --- a/AixLib/Airflow/Multizone/Validation/OpenDoorBuoyancyDynamic.mo +++ b/AixLib/Airflow/Multizone/Validation/OpenDoorBuoyancyDynamic.mo @@ -19,7 +19,6 @@ model OpenDoorBuoyancyDynamic T_start=292.15, V=2.5*5*5, energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, - massDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, m_flow_nominal=0.01, nPorts=3) "Boundary condition at side a" annotation (Placement( transformation( @@ -32,7 +31,6 @@ model OpenDoorBuoyancyDynamic T_start=294.15, V=2.5*5*5, energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, - massDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, m_flow_nominal=0.01, nPorts=2) "Boundary condition at side b" annotation (Placement(transformation(extent={{-10,-10},{10,10}}, @@ -52,7 +50,6 @@ model OpenDoorBuoyancyDynamic T_start=292.15, V=2.5*5*5, energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, - massDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, m_flow_nominal=0.01, nPorts=3) "Boundary condition at side a" annotation (Placement( transformation( @@ -64,7 +61,6 @@ model OpenDoorBuoyancyDynamic T_start=294.15, V=2.5*5*5, energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, - massDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, m_flow_nominal=0.01, nPorts=2) "Boundary condition at side b" annotation (Placement( transformation( @@ -100,16 +96,17 @@ equation StopTime=14400, Tolerance=1e-08), Documentation(info=" -

-This model validates the door model for the situation where there is only buoyancy-driven air flow. -Initially the volume is at a different temperature than the pressure source, leading to an airflow that eventually decays to zero. -

-", revisions=" - -")); +

+ This model validates the door model for the situation where there is only buoyancy-driven air flow. + Initially the volume is at a different temperature than the pressure source, leading to an airflow that eventually decays to zero. +

+ ",revisions=" + + "), + __Dymola_LockedEditing="Model from IBPSA"); end OpenDoorBuoyancyDynamic; diff --git a/AixLib/Airflow/Multizone/Validation/OpenDoorBuoyancyPressureDynamic.mo b/AixLib/Airflow/Multizone/Validation/OpenDoorBuoyancyPressureDynamic.mo index 05eb7df84c..6ac2f7f534 100644 --- a/AixLib/Airflow/Multizone/Validation/OpenDoorBuoyancyPressureDynamic.mo +++ b/AixLib/Airflow/Multizone/Validation/OpenDoorBuoyancyPressureDynamic.mo @@ -18,7 +18,6 @@ model OpenDoorBuoyancyPressureDynamic T_start=292.15, V=2.5*5*5, energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, - massDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, m_flow_nominal=0.01, nPorts=3) "Boundary condition at side a" annotation (Placement( transformation( @@ -32,7 +31,6 @@ model OpenDoorBuoyancyPressureDynamic p_start=101320, V=2.5*5*5, energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, - massDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, m_flow_nominal=0.01, nPorts=2) "Boundary condition at side b" annotation (Placement(transformation(extent={{-10,-10},{10,10}}, @@ -48,7 +46,6 @@ model OpenDoorBuoyancyPressureDynamic T_start=292.15, V=2.5*5*5, energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, - massDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, m_flow_nominal=0.01, nPorts=3) "Boundary condition at side a" annotation (Placement( transformation( @@ -61,7 +58,6 @@ model OpenDoorBuoyancyPressureDynamic p_start=101320, V=2.5*5*5, energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, - massDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, m_flow_nominal=0.01, nPorts=2) "Boundary condition at side b" annotation (Placement( transformation( @@ -99,16 +95,17 @@ equation StopTime=14400, Tolerance=1e-08), Documentation(info=" -

-This model validates the door model for the situation where there is air flow due to buoyancy and static pressure difference. -Initially the volumes are at a different temperatures and pressure, leading to an airflow that eventually decays to zero. -

-", revisions=" - -")); +

+ This model validates the door model for the situation where there is air flow due to buoyancy and static pressure difference. + Initially the volumes are at a different temperatures and pressure, leading to an airflow that eventually decays to zero. +

+ ",revisions=" + + "), + __Dymola_LockedEditing="Model from IBPSA"); end OpenDoorBuoyancyPressureDynamic; diff --git a/AixLib/Airflow/Multizone/Validation/OpenDoorPressure.mo b/AixLib/Airflow/Multizone/Validation/OpenDoorPressure.mo index 55fdafc1a0..1de03b4a55 100644 --- a/AixLib/Airflow/Multizone/Validation/OpenDoorPressure.mo +++ b/AixLib/Airflow/Multizone/Validation/OpenDoorPressure.mo @@ -82,15 +82,16 @@ equation Interval=600, Tolerance=1e-06), Documentation(info=" -

-This model validates the door model for the situation where there is only pressure-driven air flow. -

-", revisions=" - -")); +

+ This model validates the door model for the situation where there is only pressure-driven air flow. +

+ ",revisions=" + + "), + __Dymola_LockedEditing="Model from IBPSA"); end OpenDoorPressure; diff --git a/AixLib/Airflow/Multizone/Validation/OpenDoorTemperature.mo b/AixLib/Airflow/Multizone/Validation/OpenDoorTemperature.mo index 44a7d94384..947402fb15 100644 --- a/AixLib/Airflow/Multizone/Validation/OpenDoorTemperature.mo +++ b/AixLib/Airflow/Multizone/Validation/OpenDoorTemperature.mo @@ -80,15 +80,16 @@ equation Interval=600, Tolerance=1e-06), Documentation(info=" -

-This model validates the door model for the situation where there is only temperature-driven air flow. -

-", revisions=" - -")); +

+ This model validates the door model for the situation where there is only temperature-driven air flow. +

+ ",revisions=" + + "), + __Dymola_LockedEditing="Model from IBPSA"); end OpenDoorTemperature; diff --git a/AixLib/Airflow/Multizone/Validation/ThreeRoomsContam.mo b/AixLib/Airflow/Multizone/Validation/ThreeRoomsContam.mo index a96c305a1f..4ea3340309 100644 --- a/AixLib/Airflow/Multizone/Validation/ThreeRoomsContam.mo +++ b/AixLib/Airflow/Multizone/Validation/ThreeRoomsContam.mo @@ -244,53 +244,54 @@ experiment(Tolerance=1e-06, StopTime=3600), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Airflow/Multizone/Validation/ThreeRoomsContam.mos" "Simulate and plot"), Documentation(info=" -

-This is a model of three rooms that exchange air among each based -on density difference between the air in the rooms and the outside. -The model implements the configuration shown below.

-

-\"Configuration -

-

-For the model that has been used for a comparative model validation between CONTAM and -the Buildings library in Wetter (2006), see - -AixLib.Airflow.Multizone.Validation.ThreeRoomsContamDiscretizedDoor. -

-

References

-

-Michael Wetter. - -Multizone Airflow Model in Modelica. -Proc. of the 5th International Modelica Conference, p. 431-440. Vienna, Austria, September 2006. -

-", revisions=" - -")); +

+ This is a model of three rooms that exchange air among each based + on density difference between the air in the rooms and the outside. + The model implements the configuration shown below.

+

+ \"Configuration +

+

+ For the model that has been used for a comparative model validation between CONTAM and + the Buildings library in Wetter (2006), see + + AixLib.Airflow.Multizone.Validation.ThreeRoomsContamDiscretizedDoor. +

+

References

+

+ Michael Wetter. + + Multizone Airflow Model in Modelica. + Proc. of the 5th International Modelica Conference, p. 431-440. Vienna, Austria, September 2006. +

+ ",revisions=" + + "), + __Dymola_LockedEditing="Model from IBPSA"); end ThreeRoomsContam; diff --git a/AixLib/Airflow/Multizone/Validation/ThreeRoomsContamDiscretizedDoor.mo b/AixLib/Airflow/Multizone/Validation/ThreeRoomsContamDiscretizedDoor.mo index f8c4851f75..db64495195 100644 --- a/AixLib/Airflow/Multizone/Validation/ThreeRoomsContamDiscretizedDoor.mo +++ b/AixLib/Airflow/Multizone/Validation/ThreeRoomsContamDiscretizedDoor.mo @@ -27,53 +27,54 @@ experiment(Tolerance=1e-06, StopTime=3600), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Airflow/Multizone/Validation/ThreeRoomsContamDiscretizedDoor.mos" "Simulate and plot"), Documentation(info=" -

-This model is identical to - -AixLib.Airflow.Multizone.Validation.ThreeRoomsContam -except that it uses a different door model. -

-

-This model has been used for a comparative model validation between CONTAM and -the Buildings library. -See Wetter (2006) for details of the validation. -

-

References

-

-Michael Wetter. - -Multizone Airflow Model in Modelica. -Proc. of the 5th International Modelica Conference, p. 431-440. Vienna, Austria, September 2006. -

-", revisions=" - -")); +

+ This model is identical to + + AixLib.Airflow.Multizone.Validation.ThreeRoomsContam + except that it uses a different door model. +

+

+ This model has been used for a comparative model validation between CONTAM and + the Buildings library. + See Wetter (2006) for details of the validation. +

+

References

+

+ Michael Wetter. + + Multizone Airflow Model in Modelica. + Proc. of the 5th International Modelica Conference, p. 431-440. Vienna, Austria, September 2006. +

+ ",revisions=" + + "), + __Dymola_LockedEditing="Model from IBPSA"); end ThreeRoomsContamDiscretizedDoor; diff --git a/AixLib/Airflow/Multizone/Validation/package.order b/AixLib/Airflow/Multizone/Validation/package.order index 12c9ea277c..3b0f6df5f3 100644 --- a/AixLib/Airflow/Multizone/Validation/package.order +++ b/AixLib/Airflow/Multizone/Validation/package.order @@ -1,4 +1,5 @@ DoorOpenClosed +OneWayFlow OpenDoorBuoyancyDynamic OpenDoorBuoyancyPressureDynamic OpenDoorPressure diff --git a/AixLib/Airflow/Multizone/ZonalFlow_ACS.mo b/AixLib/Airflow/Multizone/ZonalFlow_ACS.mo index d23ef51b75..1a7ccd3a76 100644 --- a/AixLib/Airflow/Multizone/ZonalFlow_ACS.mo +++ b/AixLib/Airflow/Multizone/ZonalFlow_ACS.mo @@ -4,18 +4,18 @@ model ZonalFlow_ACS "Zonal flow with input air change per second" parameter Boolean useDefaultProperties = false "Set to true to use constant density"; - parameter Modelica.SIunits.Volume V "Volume of room"; + parameter Modelica.Units.SI.Volume V "Volume of room"; Modelica.Blocks.Interfaces.RealInput ACS "Air change per seconds, relative to the smaller of the two volumes" annotation (Placement(transformation(extent={{-120,90},{-100,110}}))); protected - Modelica.SIunits.VolumeFlowRate V_flow + Modelica.Units.SI.VolumeFlowRate V_flow "Volume flow rate at standard pressure"; - Modelica.SIunits.MassFlowRate m_flow "Mass flow rate"; + Modelica.Units.SI.MassFlowRate m_flow "Mass flow rate"; parameter Medium.ThermodynamicState sta_default = Medium.setState_pTX(T=Medium.T_default, p=Medium.p_default, X=Medium.X_default); - parameter Modelica.SIunits.Density rho_default=Medium.density(sta_default) + parameter Modelica.Units.SI.Density rho_default=Medium.density(sta_default) "Density, used to compute fluid volume"; Medium.ThermodynamicState sta_a1_inflow= @@ -43,49 +43,50 @@ equation annotation (Icon(graphics={ Text( extent={{-92,108},{16,66}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString= "ACS = %ACS")}), defaultComponentName="floExc", Documentation(info=" -

-This model computes the air exchange between volumes. -

-

-Input is the air change per seconds. The volume flow rate is computed as -

-
-  V_flow = ACS * V
-
-

-where ACS is an input and the volume V is a parameter. -

-", +

+ This model computes the air exchange between volumes. +

+

+ Input is the air change per seconds. The volume flow rate is computed as +

+
+   V_flow = ACS * V
+ 
+

+ where ACS is an input and the volume V is a parameter. +

+ ", revisions=" - -")); + + "), + __Dymola_LockedEditing="Model from IBPSA"); end ZonalFlow_ACS; diff --git a/AixLib/Airflow/Multizone/ZonalFlow_m_flow.mo b/AixLib/Airflow/Multizone/ZonalFlow_m_flow.mo index c462e821c3..0873f82a7d 100644 --- a/AixLib/Airflow/Multizone/ZonalFlow_m_flow.mo +++ b/AixLib/Airflow/Multizone/ZonalFlow_m_flow.mo @@ -12,29 +12,30 @@ equation annotation (defaultComponentName="floExc", Documentation(info=" -

-This model computes the air exchange between volumes. -

-

-Input is the mass flow rate from -port_a1 to port_b1 and from -port_a2 to port_b2. -

-", +

+ This model computes the air exchange between volumes. +

+

+ Input is the mass flow rate from + port_a1 to port_b1 and from + port_a2 to port_b2. +

+ ", revisions=" - -")); + + "), + __Dymola_LockedEditing="Model from IBPSA"); end ZonalFlow_m_flow; diff --git a/AixLib/Airflow/Multizone/package.order b/AixLib/Airflow/Multizone/package.order index 10d5c5dac9..cc7ed85133 100644 --- a/AixLib/Airflow/Multizone/package.order +++ b/AixLib/Airflow/Multizone/package.order @@ -1,4 +1,6 @@ UsersGuide +Coefficient_V_flow +Coefficient_m_flow DoorDiscretizedOpen DoorDiscretizedOperable DoorOpen @@ -7,6 +9,10 @@ EffectiveAirLeakageArea MediumColumn MediumColumnDynamic Orifice +Point_m_flow +Points_m_flow +Table_V_flow +Table_m_flow ZonalFlow_ACS ZonalFlow_m_flow Types diff --git a/AixLib/BoundaryConditions/GroundTemperature/GroundTemperatureKusuda.mo b/AixLib/BoundaryConditions/GroundTemperature/GroundTemperatureKusuda.mo index 7e3e727839..01826d1bd0 100644 --- a/AixLib/BoundaryConditions/GroundTemperature/GroundTemperatureKusuda.mo +++ b/AixLib/BoundaryConditions/GroundTemperature/GroundTemperatureKusuda.mo @@ -1,12 +1,15 @@ -within AixLib.BoundaryConditions.GroundTemperature; +within AixLib.BoundaryConditions.GroundTemperature; model GroundTemperatureKusuda "Model for undisturbed ground temperature" - parameter Modelica.SIunits.Temperature T_mean "Average air temperature over the year"; - parameter Modelica.SIunits.TemperatureDifference T_amp + parameter Modelica.Units.SI.Temperature T_mean + "Average air temperature over the year"; + parameter Modelica.Units.SI.TemperatureDifference T_amp "Amplitude of surface temperature [(maximum air temperature - minimum air temperature)/2]"; - parameter Modelica.SIunits.Distance D "Depth of ground temperature"; - parameter Modelica.SIunits.ThermalDiffusivity alpha=0.04 "Thermal diffusivity of the ground. Declare in m2/day!"; - parameter Modelica.SIunits.Time t_shift "Time of the year with minimum air temperature. Declare in days!"; + parameter Modelica.Units.SI.Distance D "Depth of ground temperature"; + parameter Modelica.Units.SI.ThermalDiffusivity alpha=0.04 + "Thermal diffusivity of the ground. Declare in m2/day!"; + parameter Modelica.Units.SI.Time t_shift + "Time of the year with minimum air temperature. Declare in days!"; Modelica.Thermal.HeatTransfer.Sources.PrescribedTemperature prescribedTemperature "Transfers computed ground temperature to heat port" diff --git a/AixLib/BoundaryConditions/InternalGains/BaseClasses/PartialInternalGain.mo b/AixLib/BoundaryConditions/InternalGains/BaseClasses/PartialInternalGain.mo index 1c5ef874f4..e01a5d4929 100644 --- a/AixLib/BoundaryConditions/InternalGains/BaseClasses/PartialInternalGain.mo +++ b/AixLib/BoundaryConditions/InternalGains/BaseClasses/PartialInternalGain.mo @@ -3,8 +3,9 @@ partial model PartialInternalGain "Partial model to build a heat source with convective and radiative component" parameter Real ratioConv(final min=0, final max=1) = 0.6 "Ratio convective to total heat release" annotation(Dialog(descriptionLabel = true)); - parameter Modelica.SIunits.Emissivity emissivity(min=0, max=1) = 0.95 - "Emissivity of radiative heat source surface"; + parameter Modelica.Units.SI.Emissivity emissivity( + min=0, + max=1) = 0.95 "Emissivity of radiative heat source surface"; Modelica.Blocks.Interfaces.RealInput uRel(min=0, max=1) "Relative input related to max. value (might be a ratio related to number of people [-] or room area and specific heat flow [W/m2] or maximal heat flow [W]" annotation (Placement(transformation(extent={{-120,-20},{-80,20}}))); Modelica.Thermal.HeatTransfer.Sources.PrescribedHeatFlow convectiveHeat(final T_ref=293.15, final alpha=0) diff --git a/AixLib/BoundaryConditions/InternalGains/CO2/CO2Balance.mo b/AixLib/BoundaryConditions/InternalGains/CO2/CO2Balance.mo index fb951ba6dc..d96912906a 100644 --- a/AixLib/BoundaryConditions/InternalGains/CO2/CO2Balance.mo +++ b/AixLib/BoundaryConditions/InternalGains/CO2/CO2Balance.mo @@ -1,13 +1,13 @@ -within AixLib.BoundaryConditions.InternalGains.CO2; +within AixLib.BoundaryConditions.InternalGains.CO2; model CO2Balance "Calculation of CO2 concentration within a thermal zone" - parameter Modelica.SIunits.Area areaZon "Zone area"; + parameter Modelica.Units.SI.Area areaZon "Zone area"; parameter Real actDeg = 1.8 "Activity degree (Met units)"; - parameter Modelica.SIunits.Volume VZon "Zone volume"; - parameter Modelica.SIunits.MassFraction XCO2_amb=6.12157E-4 + parameter Modelica.Units.SI.Volume VZon "Zone volume"; + parameter Modelica.Units.SI.MassFraction XCO2_amb=6.12157E-4 "Massfraction of CO2 in atmosphere (equals 403ppm)"; - parameter Modelica.SIunits.Area areaBod=1.8 + parameter Modelica.Units.SI.Area areaBod=1.8 "Body surface area source SIA 2024:2015"; - parameter Modelica.SIunits.DensityOfHeatFlowRate metOnePerSit=58 + parameter Modelica.Units.SI.DensityOfHeatFlowRate metOnePerSit=58 "Metabolic rate of a relaxed seated person in Met (1 Met = 58 W/m^2)"; parameter Real spePeo(unit="1/(m.m)") = 0.05 "Specific persons per square metre room area"; @@ -39,23 +39,23 @@ model CO2Balance "Calculation of CO2 concentration within a thermal zone" annotation (Placement(transformation(extent={{100,-70},{120,-50}}))); protected - constant Modelica.SIunits.MolarMass MolCO2=0.04401; - constant Modelica.SIunits.MolarMass MolAir=0.028949; + constant Modelica.Units.SI.MolarMass MolCO2=0.04401; + constant Modelica.Units.SI.MolarMass MolAir=0.028949; constant Real CalEqu=5.617*3600*1000 "caloric equivalent in J/m^3"; constant Real ResQuo=0.83 "respiratory quotient in m^3_CO2/ m^3_O2"; - constant Modelica.SIunits.Pressure pAir=101325; - constant Modelica.SIunits.Density rhoAir=1.2041; + constant Modelica.Units.SI.Pressure pAir=101325; + constant Modelica.Units.SI.Density rhoAir=1.2041; Real numPeo "Number of people in the thermal zone"; - Modelica.SIunits.VolumeFlowRate VCO2OnePer_flow + Modelica.Units.SI.VolumeFlowRate VCO2OnePer_flow "Pure CO2 emission of an adult person"; - Modelica.SIunits.DensityOfHeatFlowRate metOnePerAct + Modelica.Units.SI.DensityOfHeatFlowRate metOnePerAct "Metabolic heat production rate considering activity degree in W/m^2"; - Modelica.SIunits.MassFlowRate mCO2Peo_flow; - Modelica.SIunits.MassFlowRate mAirExc_flow + Modelica.Units.SI.MassFlowRate mCO2Peo_flow; + Modelica.Units.SI.MassFlowRate mAirExc_flow "Massflowrate of ventilation and infiltration in kg/s"; - Modelica.SIunits.Density rhoCO2 "CO2 density"; - Modelica.SIunits.MassFlowRate mCO2OnePer_flow + Modelica.Units.SI.Density rhoCO2 "CO2 density"; + Modelica.Units.SI.MassFlowRate mCO2OnePer_flow "Emission CO2 of one Person in kg/s"; equation diff --git a/AixLib/BoundaryConditions/InternalGains/Examples/InternalGains/BaseClasses/Humans.mo b/AixLib/BoundaryConditions/InternalGains/Examples/InternalGains/BaseClasses/Humans.mo index c4305f112b..7a87930b6d 100644 --- a/AixLib/BoundaryConditions/InternalGains/Examples/InternalGains/BaseClasses/Humans.mo +++ b/AixLib/BoundaryConditions/InternalGains/Examples/InternalGains/BaseClasses/Humans.mo @@ -5,9 +5,10 @@ partial model Humans "Base class with bounday conditions for humans' examples" Modelica.Blocks.Sources.CombiTimeTable combiTimeTable(table=[0,0; 28740,0; 28800,1; 43200,1; 43260,0; 46800,0; 46860,1; 64800,1; 64860,0; 86400,0]) annotation(Placement(transformation(extent = {{-82, -26}, {-62, -6}}))); Modelica.Blocks.Sources.Sine sine( amplitude=2, - freqHz=1/(24*3600), + f=1/(24*3600), offset=273.15 + 20, - phase(displayUnit="deg") = -3.1415926535898) annotation(Placement(transformation(extent={{-70,18},{-82,30}}))); + phase(displayUnit="deg") = -3.1415926535898) + annotation (Placement(transformation(extent={{-70,18},{-82,30}}))); Modelica.Thermal.HeatTransfer.Sensors.HeatFlowSensor heatFlowSensorConv annotation (Placement(transformation(extent={{38,12},{52,26}}))); Modelica.Thermal.HeatTransfer.Sources.FixedTemperature fixedTemp(T=293.15) annotation(Placement(transformation(extent={{80,4},{60,24}}))); Modelica.Thermal.HeatTransfer.Sensors.HeatFlowSensor heatFlowSensorRad annotation (Placement(transformation(extent={{18,-16},{34,0}}))); diff --git a/AixLib/BoundaryConditions/InternalGains/Examples/InternalGains/Lights.mo b/AixLib/BoundaryConditions/InternalGains/Examples/InternalGains/Lights.mo index b9647cdfe4..ae6d798372 100644 --- a/AixLib/BoundaryConditions/InternalGains/Examples/InternalGains/Lights.mo +++ b/AixLib/BoundaryConditions/InternalGains/Examples/InternalGains/Lights.mo @@ -37,7 +37,10 @@ Documentation(info="

The simulation consists of the following models:

- +
+
+ \"Models\" cellspacing=\"2\" cellpadding=\"0\" border=\"0\ +

diff --git a/AixLib/BoundaryConditions/InternalGains/Examples/InternalGains/Machines.mo b/AixLib/BoundaryConditions/InternalGains/Examples/InternalGains/Machines.mo index a755b96b4b..448b06382b 100644 --- a/AixLib/BoundaryConditions/InternalGains/Examples/InternalGains/Machines.mo +++ b/AixLib/BoundaryConditions/InternalGains/Examples/InternalGains/Machines.mo @@ -41,7 +41,10 @@ Documentation(info="

The simulation consists of the following models:

- +
+
+ \"Models\" cellspacing=\"2\" cellpadding=\"0\" border=\"0\ +

diff --git a/AixLib/BoundaryConditions/InternalGains/Humans/BaseClasses/PartialHuman.mo b/AixLib/BoundaryConditions/InternalGains/Humans/BaseClasses/PartialHuman.mo index 7ccf7754ef..97653e0e44 100644 --- a/AixLib/BoundaryConditions/InternalGains/Humans/BaseClasses/PartialHuman.mo +++ b/AixLib/BoundaryConditions/InternalGains/Humans/BaseClasses/PartialHuman.mo @@ -6,10 +6,9 @@ partial model PartialHuman "Partial model for internal gains of humans" gainSurfaces(final k=specificPersons*roomArea*surfaceAreaOnePersion)); //Internal Gains People parameter Real specificPersons(unit="1/(m.m)") = 0.05 "Specific persons per square metre room area" annotation(Dialog(descriptionLabel = true)); - parameter Real ratioConvectiveHeat=0.5 - "Ratio of convective heat from overall heat output" annotation(Dialog(descriptionLabel = true)); - parameter Modelica.SIunits.Area roomArea "Area of room" annotation(Dialog(descriptionLabel = true)); - parameter Modelica.SIunits.HeatFlowRate specificHeatPerPerson = 70 + parameter Modelica.Units.SI.Area roomArea "Area of room" + annotation (Dialog(descriptionLabel=true)); + parameter Modelica.Units.SI.HeatFlowRate specificHeatPerPerson=70 "Specific heat output per person"; Modelica.Thermal.HeatTransfer.Sensors.TemperatureSensor temperatureSensor @@ -22,10 +21,11 @@ partial model PartialHuman "Partial model for internal gains of humans" "Air temperature in room" annotation(Placement(transformation(extent = {{-100, 80}, {-80, 100}}))); protected - parameter Modelica.SIunits.Area surfaceAreaOnePersion=2 "Human Surface (per person)"; - parameter Modelica.SIunits.HeatFlowRate heatPerPerson=70 + parameter Modelica.Units.SI.Area surfaceAreaOnePersion=2 + "Human Surface (per person)"; + parameter Modelica.Units.SI.HeatFlowRate heatPerPerson=70 "Average Heat Flow per person taken from DIN V 18599-10" - annotation(Dialog(descriptionLabel = true)); + annotation (Dialog(descriptionLabel=true)); equation connect(TRoom,temperatureSensor. port) annotation(Line(points = {{-90, 90}, {-90, 74}}, color = {191, 0, 0}, pattern = LinePattern.Solid)); connect(temperatureSensor.T,to_degC. u) annotation(Line(points = {{-90, 54}, {-84, 54}, {-84, 52}, {-83, 51}}, color = {0, 0, 127}, pattern = LinePattern.Solid)); diff --git a/AixLib/BoundaryConditions/InternalGains/Humans/BaseClasses/TemperatureDependentHeatOutputSIA2024.mo b/AixLib/BoundaryConditions/InternalGains/Humans/BaseClasses/TemperatureDependentHeatOutputSIA2024.mo index ce4b8d7528..95e769448f 100644 --- a/AixLib/BoundaryConditions/InternalGains/Humans/BaseClasses/TemperatureDependentHeatOutputSIA2024.mo +++ b/AixLib/BoundaryConditions/InternalGains/Humans/BaseClasses/TemperatureDependentHeatOutputSIA2024.mo @@ -1,4 +1,4 @@ -within AixLib.BoundaryConditions.InternalGains.Humans.BaseClasses; +within AixLib.BoundaryConditions.InternalGains.Humans.BaseClasses; model TemperatureDependentHeatOutputSIA2024 "Model for temperature dependent heat output based on formulas of SIA 2024" @@ -12,10 +12,10 @@ model TemperatureDependentHeatOutputSIA2024 annotation (Placement(transformation(extent={{100,-10},{120,10}}))); protected constant Real HeatPerMet(unit="W/(m.m)") = 58 "Heat per m² for 1 met"; - constant Modelica.SIunits.Area BodySurface=1.8 "Body surface of one person"; + constant Modelica.Units.SI.Area BodySurface=1.8 "Body surface of one person"; constant Real TemperatureCoefficient(unit="1/K") = 0.025 "Parameter for temperature dependency"; - constant Modelica.SIunits.HeatFlowRate MinimumHeat=35 "Minimum heat output"; + constant Modelica.Units.SI.HeatFlowRate MinimumHeat=35 "Minimum heat output"; equation heatOutput =max(0, (0.865 - (TemperatureCoefficient*T))*(activityDegree* diff --git a/AixLib/BoundaryConditions/InternalGains/Humans/BaseClasses/TemperatureDependentMoistureOutputSIA2024.mo b/AixLib/BoundaryConditions/InternalGains/Humans/BaseClasses/TemperatureDependentMoistureOutputSIA2024.mo index c3f5d55e40..cbf8e15310 100644 --- a/AixLib/BoundaryConditions/InternalGains/Humans/BaseClasses/TemperatureDependentMoistureOutputSIA2024.mo +++ b/AixLib/BoundaryConditions/InternalGains/Humans/BaseClasses/TemperatureDependentMoistureOutputSIA2024.mo @@ -1,4 +1,4 @@ -within AixLib.BoundaryConditions.InternalGains.Humans.BaseClasses; +within AixLib.BoundaryConditions.InternalGains.Humans.BaseClasses; model TemperatureDependentMoistureOutputSIA2024 "Model for temperature dependent moisture output based on formulas of SIA 2024" @@ -15,7 +15,7 @@ model TemperatureDependentMoistureOutputSIA2024 annotation (Placement(transformation(extent={{-74,32},{-54,52}}))); protected constant Real HeatPerMet(unit="W/(m.m)") = 58 "Heat per m² for 1 met"; - constant Modelica.SIunits.Area BodySurface=1.8 "Body surface of one person"; + constant Modelica.Units.SI.Area BodySurface=1.8 "Body surface of one person"; constant Real MoistGain(unit="g/h") = 10/7 "Gain for moisture output"; equation diff --git a/AixLib/BoundaryConditions/InternalGains/Humans/HumanTotalHeatTemperatureDependent.mo b/AixLib/BoundaryConditions/InternalGains/Humans/HumanTotalHeatTemperatureDependent.mo index 8a7edbd890..0104d154e6 100644 --- a/AixLib/BoundaryConditions/InternalGains/Humans/HumanTotalHeatTemperatureDependent.mo +++ b/AixLib/BoundaryConditions/InternalGains/Humans/HumanTotalHeatTemperatureDependent.mo @@ -23,13 +23,13 @@ model HumanTotalHeatTemperatureDependent "Latent heat per kg moisture" annotation (Placement(transformation(extent={{-88,14},{-68,34}}))); protected - constant Modelica.SIunits.SpecificHeatCapacity cp_steam= - AixLib.Utilities.Psychrometrics.Constants.cpSte + constant Modelica.Units.SI.SpecificHeatCapacity cp_steam=AixLib.Utilities.Psychrometrics.Constants.cpSte "Specific heat capacity of steam"; - constant Modelica.SIunits.SpecificEnthalpy EnthalpyOfEvaporation=AixLib.Utilities.Psychrometrics.Constants.h_fg + constant Modelica.Units.SI.SpecificEnthalpy EnthalpyOfEvaporation=AixLib.Utilities.Psychrometrics.Constants.h_fg "Enthalpy of evaporation"; - constant Modelica.SIunits.SpecificEnergy h_fg= - Media.Air.enthalpyOfCondensingGas(273.15+37) "Latent heat of water vapor"; + constant Modelica.Units.SI.SpecificEnergy h_fg= + Media.Air.enthalpyOfCondensingGas(273.15 + 37) + "Latent heat of water vapor"; equation connect(to_degC.y, temperatureDependentMoistuerOutputSIA2024_1.T) annotation ( Line(points={{-71.5,51},{-71.5,52},{-68,52},{-68,76},{-62,76}}, color={0,0, diff --git a/AixLib/BoundaryConditions/InternalGains/Lights/LightsAreaSpecific.mo b/AixLib/BoundaryConditions/InternalGains/Lights/LightsAreaSpecific.mo index 4370fe47f9..c925d8440d 100644 --- a/AixLib/BoundaryConditions/InternalGains/Lights/LightsAreaSpecific.mo +++ b/AixLib/BoundaryConditions/InternalGains/Lights/LightsAreaSpecific.mo @@ -6,10 +6,12 @@ model LightsAreaSpecific "Heat flow due to lighting relative to room area and sp radConvertor(final A=max(Modelica.Constants.eps, areaSurfaceLightsTotal)), gain(final k=roomArea*lightingPowerRoomAreaSpecific), gainSurfaces(final k=areaSurfaceLightsTotal)); - parameter Modelica.SIunits.Area roomArea "Area of room" annotation(Dialog( descriptionLabel = true)); + parameter Modelica.Units.SI.Area roomArea "Area of room" + annotation (Dialog(descriptionLabel=true)); parameter Real lightingPowerRoomAreaSpecific=10 "Lighting power per square meter room" annotation(Dialog( descriptionLabel = true)); - parameter Modelica.SIunits.Area areaSurfaceLightsTotal=0.01*roomArea "Surface of all lights in the room"; + parameter Modelica.Units.SI.Area areaSurfaceLightsTotal=0.01*roomArea + "Surface of all lights in the room"; annotation (Icon(graphics={ Ellipse( diff --git a/AixLib/BoundaryConditions/InternalGains/Lights/LightsRelToMaxValue.mo b/AixLib/BoundaryConditions/InternalGains/Lights/LightsRelToMaxValue.mo index 6274973a50..67ae811c7b 100644 --- a/AixLib/BoundaryConditions/InternalGains/Lights/LightsRelToMaxValue.mo +++ b/AixLib/BoundaryConditions/InternalGains/Lights/LightsRelToMaxValue.mo @@ -3,8 +3,10 @@ model LightsRelToMaxValue "Multiplies relative input with max value (heat flow d extends BaseClasses.PartialInternalGain(emissivity=0.98, gainSurfaces(final k=areaSurfaceLightsTotal), gain(final k=maxHeatFlowAbsolute)); - parameter Modelica.SIunits.HeatFlowRate maxHeatFlowAbsolute "Maximal absolute heat flow due to lighting"; - parameter Modelica.SIunits.Area areaSurfaceLightsTotal=0.001*maxHeatFlowAbsolute "Surface of all lights in the room"; + parameter Modelica.Units.SI.HeatFlowRate maxHeatFlowAbsolute + "Maximal absolute heat flow due to lighting"; + parameter Modelica.Units.SI.Area areaSurfaceLightsTotal=0.001* + maxHeatFlowAbsolute "Surface of all lights in the room"; equation diff --git a/AixLib/BoundaryConditions/InternalGains/Machines/MachinesAreaSpecific.mo b/AixLib/BoundaryConditions/InternalGains/Machines/MachinesAreaSpecific.mo index 69dcaa8348..7b78ef8181 100644 --- a/AixLib/BoundaryConditions/InternalGains/Machines/MachinesAreaSpecific.mo +++ b/AixLib/BoundaryConditions/InternalGains/Machines/MachinesAreaSpecific.mo @@ -5,15 +5,22 @@ model MachinesAreaSpecific "Heat flow due to machines relative to room area and gain(final k=intGainsMachinesRoomAreaSpecific*roomArea), gainSurfaces(final k=areaSurfaceMachinesTotal)); - parameter Modelica.SIunits.HeatFlux intGainsMachinesRoomAreaSpecific=1.0 "Heat flow from machines per square meter room" annotation(Dialog(descriptionLabel = true)); - parameter Modelica.SIunits.Area areaSurfaceMachinesTotal=max( - 1e-4, surfaceMachine*intGainsMachinesRoomAreaSpecific*(1/ - HeatPerMachine)*roomArea) "Total surface area of all machines (radiative heat source) (for a room in a single-family hous e.g. 2 m2)"; - parameter Modelica.SIunits.Area roomArea "Area of room" annotation(Dialog(descriptionLabel = true)); + parameter Modelica.Units.SI.HeatFlux intGainsMachinesRoomAreaSpecific=1.0 + "Heat flow from machines per square meter room" + annotation (Dialog(descriptionLabel=true)); + parameter Modelica.Units.SI.Area areaSurfaceMachinesTotal=max(1e-4, + surfaceMachine*intGainsMachinesRoomAreaSpecific*(1/HeatPerMachine)* + roomArea) + "Total surface area of all machines (radiative heat source) (for a room in a single-family hous e.g. 2 m2)"; + parameter Modelica.Units.SI.Area roomArea "Area of room" + annotation (Dialog(descriptionLabel=true)); protected - parameter Modelica.SIunits.HeatFlowRate HeatPerMachine = 100 "Average Heat Flow per machine taken from DIN V 18599-10" annotation(Dialog(descriptionLabel = true)); - parameter Modelica.SIunits.Area surfaceMachine = 2.0 "Surface area of one machine"; + parameter Modelica.Units.SI.HeatFlowRate HeatPerMachine=100 + "Average Heat Flow per machine taken from DIN V 18599-10" + annotation (Dialog(descriptionLabel=true)); + parameter Modelica.Units.SI.Area surfaceMachine=2.0 + "Surface area of one machine"; annotation (Icon(graphics={ Text( extent={{-40,-20},{44,-62}}, diff --git a/AixLib/BoundaryConditions/InternalGains/Machines/MachinesDIN18599.mo b/AixLib/BoundaryConditions/InternalGains/Machines/MachinesDIN18599.mo index 6b5238fc7e..8995bdf540 100644 --- a/AixLib/BoundaryConditions/InternalGains/Machines/MachinesDIN18599.mo +++ b/AixLib/BoundaryConditions/InternalGains/Machines/MachinesDIN18599.mo @@ -8,13 +8,14 @@ model MachinesDIN18599 "Heat flow due to machines based on DIN 18599 (number of parameter Integer activityType=2 "Machine activity" annotation(Dialog( compact = true, descriptionLabel = true), choices(choice=1 "low", choice = 2 "middle", choice = 3 "high", radioButtons = true)); parameter Real nrPeople=1.0 "Number of people with machines" annotation(Dialog(descriptionLabel = true)); - parameter Modelica.SIunits.Area areaSurfaceMachinesTotal=max( - 1e-4, surfaceMachine*nrPeople) - "Total surface area of all machines (radiative heat source) (for a room in a single-family hous e.g. 2 m2)"; + parameter Modelica.Units.SI.Area areaSurfaceMachinesTotal=max(1e-4, + surfaceMachine*nrPeople) + "Total surface area of all machines (radiative heat source) (for a room in a single-family hous e.g. 2 m2)"; protected - parameter Modelica.SIunits.Area surfaceMachine = 2.0 "Surface area of one machine"; - Modelica.Blocks.Tables.CombiTable1D tableHeatOutput( + parameter Modelica.Units.SI.Area surfaceMachine=2.0 + "Surface area of one machine"; + Modelica.Blocks.Tables.CombiTable1Dv tableHeatOutput( smoothness=Modelica.Blocks.Types.Smoothness.LinearSegments, tableOnFile=false, table=[1,50; 2,100; 3,150], @@ -275,59 +276,64 @@ equation The type of activity determines the load for machines in the room for one person according to DIN 18599-10. The following values are used:

- - - - - - - - - - - - - - - - - +
- Activity Type - - Heat Load [W] -
-

- 1 -

-
-

- 50 -

-
-

- 2 -

-
-

- 100 -

-
-

- 3 -

-
-

- 150 -

-
+
+ \"DIN 18599-10 activity level and produces heat output\" + cellspacing=\"2\" cellpadding=\"0\" border=\"0\"> + + + + + + + + + + + + + + + + + +
+ Activity Type + + Heat Load [W] +
+

+ 1 +

+
+

+ 50 +

+
+

+ 2 +

+
+

+ 100 +

+
+

+ 3 +

+
+

+ 150 +

+
+

+ References +

+

+ DIN 18599-10 +

+
-

- References -

-

- DIN 18599-10 -

", revisions="
  • diff --git a/AixLib/BoundaryConditions/InternalGains/Machines/MachinesRelToMaxValue.mo b/AixLib/BoundaryConditions/InternalGains/Machines/MachinesRelToMaxValue.mo index 36ac3634b5..ee0dd26f17 100644 --- a/AixLib/BoundaryConditions/InternalGains/Machines/MachinesRelToMaxValue.mo +++ b/AixLib/BoundaryConditions/InternalGains/Machines/MachinesRelToMaxValue.mo @@ -4,8 +4,11 @@ model MachinesRelToMaxValue "Multiplies relative input with max value (heat flow emissivity=0.98, gainSurfaces(final k=areaSurfaceMachinesTotal), gain(final k=maxHeatFlowAbsolute)); - parameter Modelica.SIunits.Area areaSurfaceMachinesTotal=0.02*maxHeatFlowAbsolute "Total surface area of all machines (radiative heat source) (for a room in a single-family hous e.g. 2 m2)"; - parameter Modelica.SIunits.HeatFlowRate maxHeatFlowAbsolute "Maximal absolute heat flow of machines"; + parameter Modelica.Units.SI.Area areaSurfaceMachinesTotal=0.02* + maxHeatFlowAbsolute + "Total surface area of all machines (radiative heat source) (for a room in a single-family hous e.g. 2 m2)"; + parameter Modelica.Units.SI.HeatFlowRate maxHeatFlowAbsolute + "Maximal absolute heat flow of machines"; equation diff --git a/AixLib/BoundaryConditions/InternalGains/Moisture/MoistureGains.mo b/AixLib/BoundaryConditions/InternalGains/Moisture/MoistureGains.mo index 2218e1a7af..26f03b55b4 100644 --- a/AixLib/BoundaryConditions/InternalGains/Moisture/MoistureGains.mo +++ b/AixLib/BoundaryConditions/InternalGains/Moisture/MoistureGains.mo @@ -1,10 +1,10 @@ -within AixLib.BoundaryConditions.InternalGains.Moisture; +within AixLib.BoundaryConditions.InternalGains.Moisture; model MoistureGains "Model for moisture gains that are produced by plants, cooking, etc." parameter Real specificMoistureProduction(unit="g/(h.m.m)") = 0.5 "Specific moisture production without persons in the room due to plants, cooking, showering, etc."; - parameter Modelica.SIunits.Area roomArea=20 "Area of room"; + parameter Modelica.Units.SI.Area roomArea=20 "Area of room"; Modelica.Blocks.Interfaces.RealOutput QLat_flow "Latent heat of moisture gain" @@ -24,8 +24,9 @@ model MoistureGains "Specific latent heat of moisture" annotation (Placement(transformation(extent={{56,-44},{36,-24}}))); protected - constant Modelica.SIunits.SpecificEnergy h_fg= - Media.Air.enthalpyOfCondensingGas(273.15+37) "Latent heat of water vapor"; + constant Modelica.Units.SI.SpecificEnergy h_fg= + Media.Air.enthalpyOfCondensingGas(273.15 + 37) + "Latent heat of water vapor"; equation connect(moistureGain.y, squareMetre.u) annotation (Line(points={{-59,10},{-32,10}}, color={0,0,127})); diff --git a/AixLib/BoundaryConditions/SkyTemperature/BlackBody.mo b/AixLib/BoundaryConditions/SkyTemperature/BlackBody.mo index b3924bfeb3..e37d752200 100644 --- a/AixLib/BoundaryConditions/SkyTemperature/BlackBody.mo +++ b/AixLib/BoundaryConditions/SkyTemperature/BlackBody.mo @@ -31,8 +31,8 @@ block BlackBody "Calculate black body sky temperature" nominal=100) "Horizontal infrared irradiation" annotation (Placement(transformation(extent={{-140,-100},{-100,-60}}))); protected - Modelica.SIunits.Temperature TDewPoiK "Dewpoint temperature"; - Modelica.SIunits.Emissivity epsSky "Black-body absorptivity of sky"; + Modelica.Units.SI.Temperature TDewPoiK "Dewpoint temperature"; + Modelica.Units.SI.Emissivity epsSky "Black-body absorptivity of sky"; Real nOpa10(min=0, max=10) "Opaque sky cover in [0, 10]"; equation if calTSky == AixLib.BoundaryConditions.Types.SkyTemperatureCalculation.TemperaturesAndSkyCover then @@ -50,84 +50,85 @@ equation annotation ( defaultComponentName="TBlaSky", Documentation(info=" -

    -This component computes the black-body sky temperature. -

    -

    -For calTSky = 0, the model uses horizontal infrared irradiation. -Otherwise, it uses dry buld temperature, dew point temperature and opaque sky cover. -

    -", revisions=" -
      -
    • -November 3, 2017, by Michael Wetter:
      -Removed import statement.
      -This is for #852. -
    • -
    • -January 6, 2016, by Moritz Lauster:
      -Changed unit and comment of input nOpa for correct display of units -in weaBus and input radHorIR to HHorIR -for #376. -
    • -
    • -May 5, 2015, by Filip Jorissen:
      -Converted algorithm section into -equation section for easier differentiability. -
    • -
    • -August 11, 2012, by Wangda Zuo:
      -Renamed radHor to radHorIR. -
    • -
    • -October 3, 2011, by Michael Wetter:
      -Used enumeration to set the sky temperature computation. -Fixed error in if-then statement that led to -a selection of the wrong branch to compute the sky temperature. -
    • -
    • -March 16, 2011, by Michael Wetter:
      -Added types for parameters and attributes for variables. -Removed default parameter value. -
    • -
    • -March 15, 2011, by Wangda Zuo:
      -Use smoothMin() instead of min(). -
    • -
    • -June 1, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -"), +

    + This component computes the black-body sky temperature. +

    +

    + For calTSky = 0, the model uses horizontal infrared irradiation. + Otherwise, it uses dry buld temperature, dew point temperature and opaque sky cover. +

    + ",revisions=" +
      +
    • + November 3, 2017, by Michael Wetter:
      + Removed import statement.
      + This is for #852. +
    • +
    • + January 6, 2016, by Moritz Lauster:
      + Changed unit and comment of input nOpa for correct display of units + in weaBus and input radHorIR to HHorIR + for #376. +
    • +
    • + May 5, 2015, by Filip Jorissen:
      + Converted algorithm section into + equation section for easier differentiability. +
    • +
    • + August 11, 2012, by Wangda Zuo:
      + Renamed radHor to radHorIR. +
    • +
    • + October 3, 2011, by Michael Wetter:
      + Used enumeration to set the sky temperature computation. + Fixed error in if-then statement that led to + a selection of the wrong branch to compute the sky temperature. +
    • +
    • + March 16, 2011, by Michael Wetter:
      + Added types for parameters and attributes for variables. + Removed default parameter value. +
    • +
    • + March 15, 2011, by Wangda Zuo:
      + Use smoothMin() instead of min(). +
    • +
    • + June 1, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), Icon(coordinateSystem(preserveAspectRatio=true, extent={{-100,-100},{100, 100}}), graphics={ Text( extent={{-150,110},{150,150}}, textString="%name", - lineColor={0,0,255}), + textColor={0,0,255}), Text( extent={{-50,44},{56,-40}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="T"), Text( extent={{-96,84},{-66,74}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="TDry"), Text( extent={{-90,36},{-66,24}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="TDewPoi"), Text( extent={{-92,-74},{-62,-88}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="radHorIR"), Text( extent={{16,-6},{54,-28}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="bs"), Text( extent={{-88,-24},{-64,-36}}, - lineColor={0,0,127}, - textString="nOpa")})); + textColor={0,0,127}, + textString="nOpa")}), + __Dymola_LockedEditing="Model from IBPSA"); end BlackBody; diff --git a/AixLib/BoundaryConditions/SkyTemperature/Examples/BlackBody.mo b/AixLib/BoundaryConditions/SkyTemperature/Examples/BlackBody.mo index 52beb99adb..37919a633a 100644 --- a/AixLib/BoundaryConditions/SkyTemperature/Examples/BlackBody.mo +++ b/AixLib/BoundaryConditions/SkyTemperature/Examples/BlackBody.mo @@ -66,33 +66,34 @@ equation extent={{-6,3},{-6,3}})); annotation ( Documentation(info=" -

    -This example computes the black-body sky temperature -for Chicago. -

    -", revisions=" -
      -
    • -February 18, 2017, by Filip Jorissen:
      -Now computing both options of TBlaSky. -This verifies the consistency of the two computation methods. -This is for -#648. -
    • -
    • -January 7, 2016, by Michael Wetter:
      -Changed connect statement for infrared radiation due renaming of the -variable. This is for -issue 376. -Added comments. -
    • -
    • -June 1, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -"), +

    + This example computes the black-body sky temperature + for Chicago. +

    + ",revisions=" +
      +
    • + February 18, 2017, by Filip Jorissen:
      + Now computing both options of TBlaSky. + This verifies the consistency of the two computation methods. + This is for + #648. +
    • +
    • + January 7, 2016, by Michael Wetter:
      + Changed connect statement for infrared radiation due renaming of the + variable. This is for + issue 376. + Added comments. +
    • +
    • + June 1, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), experiment(Tolerance=1e-6, StartTime=0, StopTime=86400), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/BoundaryConditions/SkyTemperature/Examples/BlackBody.mos" - "Simulate and plot")); + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end BlackBody; diff --git a/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/AltitudeAngle.mo b/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/AltitudeAngle.mo index b16fc95c0c..05d2c2102a 100644 --- a/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/AltitudeAngle.mo +++ b/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/AltitudeAngle.mo @@ -14,24 +14,25 @@ equation annotation (Icon(graphics={Bitmap(extent={{-90,-90},{90,90}}, fileName= "modelica://AixLib/Resources/Images/BoundaryConditions/SolarGeometry/BaseClasses/AltitudeAngle.png")}), defaultComponentName="altAng", Documentation(info=" -

    -This block computes the altitude angle of the sun with respect to a horizontal surface. -The altitude angle is the angle between the sun ray and the projection of the ray -on a horizontal surface. -It is the complementory angle to the zenith angle. -

    -", revisions=" -
      -
    • -January 5, 2015, by Michael Wetter:
      -Updated comment of the output connector as this is used in the weather bus connector. -This is for -issue 376. -
    • -
    • -Feb 01, 2012, by Kaustubh Phalak:
      -First implementation. -
    • -
    -")); +

    + This block computes the altitude angle of the sun with respect to a horizontal surface. + The altitude angle is the angle between the sun ray and the projection of the ray + on a horizontal surface. + It is the complementory angle to the zenith angle. +

    + ",revisions=" +
      +
    • + January 5, 2015, by Michael Wetter:
      + Updated comment of the output connector as this is used in the weather bus connector. + This is for + issue 376. +
    • +
    • + Feb 01, 2012, by Kaustubh Phalak:
      + First implementation. +
    • +
    + "), + __Dymola_LockedEditing="Model from IBPSA"); end AltitudeAngle; diff --git a/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/Declination.mo b/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/Declination.mo index eede5e3a2d..d76425bc07 100644 --- a/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/Declination.mo +++ b/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/Declination.mo @@ -18,54 +18,55 @@ equation annotation ( defaultComponentName="decAng", Documentation(info=" -

    -This component computes the solar declination, which is -the angle between the equatorial plane and the solar beam. -The input signal nDay is the one-based number of the day, but in seconds. -Hence, during January 1, we should have nDay = 86400 seconds. -Since the effect of using a continuous number rather than an integer is small, -we approximate this so that nDay = 0 at the start of January 1, -and nDay = 86400 at the end of January 1. -

    -

    Validation

    -

    -A validation with a more detailed calculation can be found at - -AixLib.BoundaryConditions.SolarGeometry.BaseClasses.Examples.Declination. -

    -", revisions=" -
      -
    • -January 6, 2015, by Michael Wetter:
      -Updated documentation and added validation. -This is for -issue 382. -
    • -
    • -January 5, 2015, by Michael Wetter:
      -Updated comment of output signal as this is used in the weather bus connector. -This is for -issue 376. -
    • -
    • -November 11, 2015, by Michael Wetter:
      -Corrected typo in documentation. -
    • -
    • -Dec 7, 2010, by Michael Wetter:
      -Rewrote equation in explicit form to avoid nonlinear equations in room model. -
    • -
    • -May 17, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -"), +

    + This component computes the solar declination, which is + the angle between the equatorial plane and the solar beam. + The input signal nDay is the one-based number of the day, but in seconds. + Hence, during January 1, we should have nDay = 86400 seconds. + Since the effect of using a continuous number rather than an integer is small, + we approximate this so that nDay = 0 at the start of January 1, + and nDay = 86400 at the end of January 1. +

    +

    Validation

    +

    + A validation with a more detailed calculation can be found at + + AixLib.BoundaryConditions.SolarGeometry.BaseClasses.Examples.Declination. +

    + ",revisions=" +
      +
    • + January 6, 2015, by Michael Wetter:
      + Updated documentation and added validation. + This is for + issue 382. +
    • +
    • + January 5, 2015, by Michael Wetter:
      + Updated comment of output signal as this is used in the weather bus connector. + This is for + issue 376. +
    • +
    • + November 11, 2015, by Michael Wetter:
      + Corrected typo in documentation. +
    • +
    • + Dec 7, 2010, by Michael Wetter:
      + Rewrote equation in explicit form to avoid nonlinear equations in room model. +
    • +
    • + May 17, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), Icon(coordinateSystem(preserveAspectRatio=true, extent={{-100,-100},{100, 100}}), graphics={ Bitmap(extent={{-90,-90},{90,90}}, fileName= "modelica://AixLib/Resources/Images/BoundaryConditions/SolarGeometry/BaseClasses/Declination.png"), Text( extent={{-150,110},{150,150}}, textString="%name", - lineColor={0,0,255})})); + textColor={0,0,255})}), + __Dymola_LockedEditing="Model from IBPSA"); end Declination; diff --git a/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/Examples/AltitudeAngle.mo b/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/Examples/AltitudeAngle.mo index 4bea680d1b..fceac305bf 100644 --- a/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/Examples/AltitudeAngle.mo +++ b/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/Examples/AltitudeAngle.mo @@ -55,32 +55,33 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/BoundaryConditions/SolarGeometry/BaseClasses/Examples/AltitudeAngle.mos" "Simulate and plot"), Documentation(info=" -

    -This example calculates the altitude angle of the sun at a given time. -The altitude angle is the angle between the sun ray and the projection of the ray on a horizontal surface. -

    -

    -Components used in this model are: -

    - -
    -", +

    + This example calculates the altitude angle of the sun at a given time. + The altitude angle is the angle between the sun ray and the projection of the ray on a horizontal surface. +

    +

    + Components used in this model are: +

    + +
    + ", revisions=" -
      -
    • -Feb 01, 2012, by Kaustubh Phalak
      -First implementation. -
    • -
    -")); +
      +
    • + Feb 01, 2012, by Kaustubh Phalak
      + First implementation. +
    • +
    + "), + __Dymola_LockedEditing="Model from IBPSA"); end AltitudeAngle; diff --git a/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/Examples/Declination.mo b/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/Examples/Declination.mo index 25ff3e4432..c1f92716fb 100644 --- a/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/Examples/Declination.mo +++ b/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/Examples/Declination.mo @@ -29,22 +29,23 @@ equation color={0,0,127})); annotation ( Documentation(info=" -

    This model validates the computation of the solar declination, which is the angle between the equatorial plane and the solar beam. The time table solDecNOAA outputs the solar declination according to the computation of the National Oceanic and Atmospheric Administration (NOAA), using their yearly calculator from http://www.esrl.noaa.gov/gmd/grad/solcalc/calcdetails.html. The values differ slightly because the equation in AixLib.BoundaryConditions.SolarGeometry.BaseClasses.Declination is an approximation.

    -", revisions=" -
      -
    • -January 6, 2015, by Michael Wetter:
      -Updated documentation and added validation. -This is for -issue 382. -
    • -
    • -May 17, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -"), +

    This model validates the computation of the solar declination, which is the angle between the equatorial plane and the solar beam. The time table solDecNOAA outputs the solar declination according to the computation of the National Oceanic and Atmospheric Administration (NOAA), using their yearly calculator from http://www.esrl.noaa.gov/gmd/grad/solcalc/calcdetails.html. The values differ slightly because the equation in AixLib.BoundaryConditions.SolarGeometry.BaseClasses.Declination is an approximation.

    + ",revisions=" +
      +
    • + January 6, 2015, by Michael Wetter:
      + Updated documentation and added validation. + This is for + issue 382. +
    • +
    • + May 17, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), experiment(Tolerance=1e-6, StopTime=3.1536e+007), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/BoundaryConditions/SolarGeometry/BaseClasses/Examples/Declination.mos" - "Simulate and plot")); + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end Declination; diff --git a/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/Examples/IncidenceAngle.mo b/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/Examples/IncidenceAngle.mo index be2b3fe977..561d8c5e53 100644 --- a/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/Examples/IncidenceAngle.mo +++ b/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/Examples/IncidenceAngle.mo @@ -9,8 +9,8 @@ model IncidenceAngle "Test model for incidence angle" annotation (Placement(transformation(extent={{0,-40},{20,-20}}))); AixLib.BoundaryConditions.SolarGeometry.BaseClasses.IncidenceAngle incAng( azi=AixLib.Types.Azimuth.S, - til=AixLib.Types.Tilt.Wall, - lat=0.73268921998722) "Incidence angle" + til=AixLib.Types.Tilt.Wall) + "Incidence angle" annotation (Placement(transformation(extent={{40,-10},{60,10}}))); AixLib.BoundaryConditions.WeatherData.ReaderTMY3 weaDat( filNam=Modelica.Utilities.Files.loadResource("modelica://AixLib/Resources/weatherdata/USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.mos")) @@ -47,30 +47,39 @@ equation textString="%first", index=-1, extent={{-6,3},{-6,3}})); + connect(weaBus.lat, incAng.lat) annotation (Line( + points={{-36,0},{38,0}}, + color={255,204,51}, + thickness=0.5), Text( + string="%first", + index=-1, + extent={{-6,3},{-6,3}}, + horizontalAlignment=TextAlignment.Right)); annotation ( Documentation(info=" -

    -This example computes the solar incidence angle on a tilted surface. -This model is also part of more extensive tests that run the -model for different orientations. These tests are at - -AixLib.BoundaryConditions.SolarGeometry.Examples.IncidenceAngle. -

    -", revisions=" -
      -
    • -March 24, 2015, by Michael Wetter:
      -Assigned azimuth and tilt using the types from - -AixLib.Types.Tilt. -
    • -
    • -May 19, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -"), +

    + This example computes the solar incidence angle on a tilted surface. + This model is also part of more extensive tests that run the + model for different orientations. These tests are at + + AixLib.BoundaryConditions.SolarGeometry.Examples.IncidenceAngle. +

    + ",revisions=" +
      +
    • + March 24, 2015, by Michael Wetter:
      + Assigned azimuth and tilt using the types from + + AixLib.Types.Tilt. +
    • +
    • + May 19, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), experiment(Tolerance=1e-6, StopTime=86400), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/BoundaryConditions/SolarGeometry/BaseClasses/Examples/IncidenceAngle.mos" - "Simulate and plot")); + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end IncidenceAngle; diff --git a/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/Examples/SolarAzimuth.mo b/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/Examples/SolarAzimuth.mo index e7ba63f211..3bf63b2189 100644 --- a/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/Examples/SolarAzimuth.mo +++ b/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/Examples/SolarAzimuth.mo @@ -1,18 +1,17 @@ within AixLib.BoundaryConditions.SolarGeometry.BaseClasses.Examples; model SolarAzimuth "Test model for zenith angle" extends Modelica.Icons.Example; - parameter Modelica.SIunits.Angle lat= 41.98*Modelica.Constants.pi/180 - "Latitude"; + AixLib.BoundaryConditions.SolarGeometry.BaseClasses.SolarHourAngle solHouAng "Solar hour angle" annotation (Placement(transformation(extent={{20,-20},{40,0}}))); - AixLib.BoundaryConditions.SolarGeometry.BaseClasses.ZenithAngle zen(lat=lat) + AixLib.BoundaryConditions.SolarGeometry.BaseClasses.ZenithAngle zen "Zenith angle" annotation (Placement(transformation(extent={{60,40},{80,60}}))); AixLib.BoundaryConditions.SolarGeometry.BaseClasses.Declination decAng "Declination angle" annotation (Placement(transformation(extent={{-20,40},{0,60}}))); - AixLib.BoundaryConditions.SolarGeometry.BaseClasses.SolarAzimuth solAzi(lat=lat) + AixLib.BoundaryConditions.SolarGeometry.BaseClasses.SolarAzimuth solAzi "Solar azimuth" annotation (Placement(transformation(extent={{100,10},{120,30}}))); WeatherData.ReaderTMY3 weaDat( @@ -23,13 +22,13 @@ model SolarAzimuth "Test model for zenith angle" annotation (Placement(transformation(extent={{-54,0},{-34,20}}))); equation connect(zen.zen, solAzi.zen) annotation (Line( - points={{81,50},{90,50},{90,26},{98,26}}, + points={{81,50},{90,50},{90,28},{98,28}}, color={0,0,127})); connect(solHouAng.solHouAng, zen.solHouAng) annotation (Line( points={{41,-10},{48,-10},{48,45.2},{58,45.2}}, color={0,0,127})); connect(decAng.decAng, solAzi.decAng) annotation (Line( - points={{1,50},{20,50},{20,20},{98,20}}, + points={{1,50},{20,50},{20,22},{98,22}}, color={0,0,127})); connect(decAng.decAng, zen.decAng) annotation (Line( points={{1,50},{20,50},{20,55.4},{58,55.4}}, @@ -56,28 +55,41 @@ equation index=-1, extent={{-6,3},{-6,3}})); connect(weaBus.solTim, solAzi.solTim) annotation (Line( - points={{-44,10},{-28,10},{-28,-28},{92,-28},{92,14},{98,14}}, + points={{-44,10},{-28,10},{-28,-28},{92,-28},{92,16},{98,16}}, color={255,204,51}, thickness=0.5), Text( textString="%first", index=-1, extent={{-6,3},{-6,3}})); + connect(zen.lat, weaBus.lat) annotation (Line(points={{58,50},{34,50},{34,10}, + {-44,10}}, color={0,0,127}), Text( + string="%second", + index=1, + extent={{-6,3},{-6,3}}, + horizontalAlignment=TextAlignment.Right)); + connect(solAzi.lat, weaBus.lat) annotation (Line(points={{98,10},{-44,10}}, + color={0,0,127}), Text( + string="%second", + index=1, + extent={{-6,3},{-6,3}}, + horizontalAlignment=TextAlignment.Right)); annotation ( Diagram(coordinateSystem(preserveAspectRatio=true, extent={{-100,-100},{150, 100}})), Documentation(info=" -

    -This example computes the solar azimuth angle. -

    -", revisions=" -
      -
    • -May 18, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -"), +

    + This example computes the solar azimuth angle. +

    + ",revisions=" +
      +
    • + May 18, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), experiment(Tolerance=1e-6, StopTime=864000), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/BoundaryConditions/SolarGeometry/BaseClasses/Examples/SolarAzimuth.mos" - "Simulate and plot")); + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end SolarAzimuth; diff --git a/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/Examples/SolarHourAngle.mo b/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/Examples/SolarHourAngle.mo index 267af6958b..d1a1d926b7 100644 --- a/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/Examples/SolarHourAngle.mo +++ b/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/Examples/SolarHourAngle.mo @@ -29,20 +29,21 @@ equation extent={{-6,3},{-6,3}})); annotation (experiment(Tolerance=1e-6, StopTime=86400), Documentation(info=" -

    -This example computes the solar hour angle, -which is defined as the angle between the circle -that passes through an observer, the north pole and the south pole, -and the circle that passes through the sun, the north and the south pole. -

    -", revisions=" -
      -
    • -May 17, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -"), +

    + This example computes the solar hour angle, + which is defined as the angle between the circle + that passes through an observer, the north pole and the south pole, + and the circle that passes through the sun, the north and the south pole. +

    + ",revisions=" +
      +
    • + May 17, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/BoundaryConditions/SolarGeometry/BaseClasses/Examples/SolarHourAngle.mos" - "Simulate and plot")); + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end SolarHourAngle; diff --git a/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/Examples/WallSolarAzimuth.mo b/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/Examples/WallSolarAzimuth.mo index a9cd8f6d69..c643425992 100644 --- a/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/Examples/WallSolarAzimuth.mo +++ b/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/Examples/WallSolarAzimuth.mo @@ -3,7 +3,6 @@ model WallSolarAzimuth "Test model for wall solar azimuth angle" extends Modelica.Icons.Example; AixLib.BoundaryConditions.SolarGeometry.IncidenceAngle incAng( azi=0, - lat=lat, til=1.5707963267949) "solar incidence angle" annotation (Placement(transformation(extent={{-20,-40},{0,-20}}))); AixLib.BoundaryConditions.WeatherData.ReaderTMY3 weaDat(filNam= @@ -17,7 +16,7 @@ extends Modelica.Icons.Example; AixLib.BoundaryConditions.SolarGeometry.BaseClasses.AltitudeAngle altAng "Altitude angle" annotation (Placement(transformation(extent={{-20,20},{0,40}}))); - parameter Modelica.SIunits.Angle lat=41.98*Modelica.Constants.pi/180 + parameter Modelica.Units.SI.Angle lat=41.98*Modelica.Constants.pi/180 "Latitude"; equation connect(weaDat.weaBus, weaBus) annotation (Line( @@ -48,20 +47,21 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/BoundaryConditions/SolarGeometry/BaseClasses/Examples/WallSolarAzimuth.mos" "Simulate and plot"), Documentation(info=" -

    -This example calculates the wall solar azimuth angle. -

    -", +

    + This example calculates the wall solar azimuth angle. +

    + ", revisions=" -
      -
    • -Feb 27, 2012, by Michael Wetter:
      -Simplified example by using zenith angle from weather data bus. -
    • -
    • -Feb 01, 2012, by Kaustubh Phalak
      -First implementation. -
    • -
    -")); +
      +
    • + Feb 27, 2012, by Michael Wetter:
      + Simplified example by using zenith angle from weather data bus. +
    • +
    • + Feb 01, 2012, by Kaustubh Phalak
      + First implementation. +
    • +
    + "), + __Dymola_LockedEditing="Model from IBPSA"); end WallSolarAzimuth; diff --git a/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/Examples/ZenithAngle.mo b/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/Examples/ZenithAngle.mo index 208cc0f5be..9baaa499e0 100644 --- a/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/Examples/ZenithAngle.mo +++ b/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/Examples/ZenithAngle.mo @@ -1,8 +1,8 @@ within AixLib.BoundaryConditions.SolarGeometry.BaseClasses.Examples; model ZenithAngle "Test model for zenith angle" extends Modelica.Icons.Example; - AixLib.BoundaryConditions.SolarGeometry.BaseClasses.ZenithAngle zen(lat= - 0.73268921998722) "Zenith angle" + AixLib.BoundaryConditions.SolarGeometry.BaseClasses.ZenithAngle zen + "Zenith angle" annotation (Placement(transformation(extent={{60,-10},{80,10}}))); AixLib.BoundaryConditions.SolarGeometry.BaseClasses.Declination decAng "Declination angle" @@ -45,21 +45,30 @@ equation textString="%first", index=-1, extent={{-6,3},{-6,3}})); + connect(weaBus.lat, zen.lat) annotation (Line( + points={{-34,0},{58,0}}, + color={255,204,51}, + thickness=0.5), Text( + string="%first", + index=-1, + extent={{-6,3},{-6,3}}, + horizontalAlignment=TextAlignment.Right)); annotation ( Documentation(info=" -

    -This example computes the zenith angle, -which is the angle between the earth surface normal and the sun's beam. -

    -", revisions=" -
      -
    • -May 17, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -"), +

    + This example computes the zenith angle, + which is the angle between the earth surface normal and the sun's beam. +

    + ",revisions=" +
      +
    • + May 17, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), experiment(StartTime=100000, Tolerance=1e-6, StopTime=300000), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/BoundaryConditions/SolarGeometry/BaseClasses/Examples/ZenithAngle.mos" - "Simulate and plot")); + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end ZenithAngle; diff --git a/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/IncidenceAngle.mo b/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/IncidenceAngle.mo index d17fab6e1a..e898104b5a 100644 --- a/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/IncidenceAngle.mo +++ b/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/IncidenceAngle.mo @@ -1,10 +1,9 @@ within AixLib.BoundaryConditions.SolarGeometry.BaseClasses; block IncidenceAngle "The solar incidence angle on a tilted surface" extends Modelica.Blocks.Icons.Block; - parameter Modelica.SIunits.Angle lat "Latitude"; - parameter Modelica.SIunits.Angle azi(displayUnit="deg") + parameter Modelica.Units.SI.Angle azi(displayUnit="deg") "Surface azimuth. azi=-90 degree if surface outward unit normal points toward east; azi=0 if it points toward south"; - parameter Modelica.SIunits.Angle til(displayUnit="deg") + parameter Modelica.Units.SI.Angle til(displayUnit="deg") "Surface tilt. til=90 degree for walls; til=0 for ceilings; til=180 for roof"; Modelica.Blocks.Interfaces.RealInput solHouAng(quantity="Angle", unit="rad") "Solar hour angle" @@ -17,6 +16,11 @@ block IncidenceAngle "The solar incidence angle on a tilted surface" final unit="rad", displayUnit="deg") "Incidence angle on a tilted surface" annotation (Placement(transformation(extent={{100,-10},{120,10}}))); + Modelica.Blocks.Interfaces.RealInput lat(quantity="Angle", + unit="rad", + displayUnit="deg") + "Latitude" + annotation (Placement(transformation(extent={{-140,-20},{-100,20}}))); protected Real dec_c=Modelica.Math.cos(decAng) "Cosine of declination angle"; Real dec_s=Modelica.Math.sin(decAng) "Sine of declination angle"; @@ -31,27 +35,33 @@ equation annotation ( defaultComponentName="incAng", Documentation(info=" -

    -This component computes the solar incidence angle on a tilted surface using the solar hour angle and the declination angle as input. -

    -", revisions=" -
      -
    • -April 27, 2018, by Michael Wetter:
      -Corrected displayUnit.
      -This is for -AixLib, issue 912. -
    • -
    • -Dec 7, 2010, by Michael Wetter:
      -Rewrote equation in explicit form to avoid nonlinear equations in room model. -
    • -
    • -May 19, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -"), +

    + This component computes the solar incidence angle on a tilted surface using the solar hour angle and the declination angle as input. +

    + ",revisions=" +
      +
    • + September 6, 2021, by Ettore Zanetti:
      + Changed lat from being a parameter to an input from weather bus.
      + This is for + IBPSA, #1477. +
    • +
    • + April 27, 2018, by Michael Wetter:
      + Corrected displayUnit.
      + This is for + IBPSA, issue 912. +
    • +
    • + Dec 7, 2010, by Michael Wetter:
      + Rewrote equation in explicit form to avoid nonlinear equations in room model. +
    • +
    • + May 19, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), Icon(coordinateSystem(preserveAspectRatio=true, extent={{-100,-100},{100, 100}}), graphics={ Bitmap(extent={{-90,-90},{90,90}}, fileName= @@ -59,13 +69,14 @@ First implementation. Text( extent={{-150,110},{150,150}}, textString="%name", - lineColor={0,0,255}), + textColor={0,0,255}), Text( extent={{-98,60},{-56,50}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="decAng"), Text( extent={{-98,-42},{-42,-54}}, - lineColor={0,0,127}, - textString="solHouAng")})); + textColor={0,0,127}, + textString="solHouAng")}), + __Dymola_LockedEditing="Model from IBPSA"); end IncidenceAngle; diff --git a/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/SolarAzimuth.mo b/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/SolarAzimuth.mo index 9f706c30cd..0b760ead9b 100644 --- a/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/SolarAzimuth.mo +++ b/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/SolarAzimuth.mo @@ -1,13 +1,16 @@ within AixLib.BoundaryConditions.SolarGeometry.BaseClasses; block SolarAzimuth "Solar azimuth" extends Modelica.Blocks.Icons.Block; - parameter Modelica.SIunits.Angle lat "Latitude"; Modelica.Blocks.Interfaces.RealInput zen(quantity="Angle", unit="rad") "Zenith angle" - annotation (Placement(transformation(extent={{-140,40},{-100,80}}))); + annotation (Placement(transformation(extent={{-140,60},{-100,100}}), + iconTransformation(extent={{-140,60},{-100,100}}))); Modelica.Blocks.Interfaces.RealInput solTim(quantity="Time", unit="s") - "Solar time" annotation (Placement(transformation(extent={{-140,-80},{-100, - -40}}), iconTransformation(extent={{-140,-80},{-100,-40}}))); + "Solar time" annotation (Placement(transformation(extent={{-140,-60},{-100, + -20}}), iconTransformation(extent={{-140,-60},{-100,-20}}))); + Modelica.Blocks.Interfaces.RealInput lat(quantity="Angle", unit="rad") + "Latitude" annotation (Placement(transformation(extent={{-140,-100},{-100, + -60}}), iconTransformation(extent={{-140,-100},{-100,-60}}))); Modelica.Blocks.Interfaces.RealOutput solAzi( final quantity="Angle", final unit="rad", @@ -15,17 +18,18 @@ block SolarAzimuth "Solar azimuth" annotation (Placement(transformation(extent={{100,-10},{120,10}}))); Modelica.Blocks.Interfaces.RealInput decAng(quantity="Angle", unit="rad") "Declination angle" - annotation (Placement(transformation(extent={{-140,-20},{-100,20}}))); + annotation (Placement(transformation(extent={{-140,20},{-100,60}}), + iconTransformation(extent={{-140,18},{-100,58}}))); protected Real arg "cos(solAzi) after data validity check"; Real tmp "cos(solAzi) before data validity check"; Real solAziTem "Temporary variable for solar azimuth"; - constant Modelica.SIunits.Time day=86400 "Number of seconds in a day"; - constant Modelica.SIunits.Angle polarCircle = 1.1617 + constant Modelica.Units.SI.Time day=86400 "Number of seconds in a day"; + constant Modelica.Units.SI.Angle polarCircle=1.1617 "Latitude of polar circle (66 degree 33 min 44 sec)"; - final parameter Boolean outsidePolarCircle = lat < polarCircle and lat > -polarCircle + Boolean outsidePolarCircle = lat < polarCircle and lat > -polarCircle "Flag, true if latitude is outside polar region"; equation tmp = (Modelica.Math.sin(lat)*Modelica.Math.cos(zen) - Modelica.Math.sin( @@ -44,37 +48,43 @@ equation annotation ( defaultComponentName="solAzi", Documentation(info=" -

    -This component computes the solar azimuth angle. -

    -", revisions=" -
      -
    • -June 9, 2020, by David Blum:
      -Reformulated to use one-line if-statements.
      -This is for -issue 1373. -
    • -
    • -October 13, 2017, by Michael Wetter:
      -Reformulated to use equation rather than algorithm section.
      -This is for -issue 834. -
    • -
    • -July 5, 2012, by Michael Wetter:
      -Changed model to avoid an event at solar noon. -
    • -
    • -February 28, 2012, by Wangda Zuo:
      -Add solar time conversion since it is removed from solTim. -
    • -
    • -May 18, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -"), +

    + This component computes the solar azimuth angle. +

    + ",revisions=" +
      +
    • + September 16, 2021, by Michael Wetter:
      + Removed parameter lat and added an input connector for this quantity.
      + This is for + IBPSA, #1477. +
    • +
    • + June 9, 2020, by David Blum:
      + Reformulated to use one-line if-statements.
      + This is for + issue 1373. +
    • +
    • + October 13, 2017, by Michael Wetter:
      + Reformulated to use equation rather than algorithm section.
      + This is for + issue 834. +
    • +
    • + July 5, 2012, by Michael Wetter:
      + Changed model to avoid an event at solar noon. +
    • +
    • + February 28, 2012, by Wangda Zuo:
      + Add solar time conversion since it is removed from solTim. +
    • +
    • + May 18, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), Icon(coordinateSystem(preserveAspectRatio=true, extent={{-100,-100},{100, 100}}), graphics={ Bitmap(extent={{-90,-90},{90,90}}, fileName= @@ -82,17 +92,22 @@ First implementation. Text( extent={{-150,110},{150,150}}, textString="%name", - lineColor={0,0,255}), + textColor={0,0,255}), Text( - extent={{-100,68},{-58,58}}, - lineColor={0,0,127}, + extent={{-102,84},{-60,74}}, + textColor={0,0,127}, textString="zen"), Text( - extent={{-102,-54},{-60,-64}}, - lineColor={0,0,127}, + extent={{-96,-36},{-54,-46}}, + textColor={0,0,127}, textString="solTim"), Text( - extent={{-102,6},{-60,-4}}, - lineColor={0,0,127}, - textString="decAng")})); + extent={{-96,24},{-54,14}}, + textColor={0,0,127}, + textString="decAng"), + Text( + extent={{-96,-86},{-54,-96}}, + textColor={0,0,127}, + textString="lat")}), + __Dymola_LockedEditing="Model from IBPSA"); end SolarAzimuth; diff --git a/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/SolarHourAngle.mo b/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/SolarHourAngle.mo index 001228b27a..c2046b68b5 100644 --- a/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/SolarHourAngle.mo +++ b/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/SolarHourAngle.mo @@ -15,25 +15,26 @@ equation annotation ( defaultComponentName="solHouAng", Documentation(info=" -

    -This component computes the solar hour angle, -which is defined as the angle between the circle -that passes through an observer, the north pole and the south pole, -and the circle that passes through the sun, the north and the south pole. -

    -", revisions=" -
      -
    • -May 17, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -"), +

    + This component computes the solar hour angle, + which is defined as the angle between the circle + that passes through an observer, the north pole and the south pole, + and the circle that passes through the sun, the north and the south pole. +

    + ",revisions=" +
      +
    • + May 17, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), Icon(coordinateSystem(preserveAspectRatio=true, extent={{-100,-100},{100, 100}}), graphics={ Bitmap(extent={{-90,-90},{90,90}}, fileName= "modelica://AixLib/Resources/Images/BoundaryConditions/SolarGeometry/BaseClasses/SolarHourAngle.png"), Text( extent={{-150,110},{150,150}}, textString="%name", - lineColor={0,0,255})})); + textColor={0,0,255})}), + __Dymola_LockedEditing="Model from IBPSA"); end SolarHourAngle; diff --git a/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/WallSolarAzimuth.mo b/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/WallSolarAzimuth.mo index 0ed5d7f231..f8c613d026 100644 --- a/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/WallSolarAzimuth.mo +++ b/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/WallSolarAzimuth.mo @@ -20,9 +20,9 @@ block WallSolarAzimuth "Angle between projection of sun's rays and normal to vertical surface" annotation (Placement(transformation(extent={{100,-10},{120,10}}))); protected - constant Modelica.SIunits.Angle delta = 1*Modelica.Constants.pi/180 + constant Modelica.Units.SI.Angle delta=1*Modelica.Constants.pi/180 "Small angle"; - constant Modelica.SIunits.Angle ninety= Modelica.Constants.pi/2-delta + constant Modelica.Units.SI.Angle ninety=Modelica.Constants.pi/2 - delta "+89 degree"; constant Real deltaX = 1E-4 "Small number used for smoothing"; Real alt_c "Cosine of altitude, bounded away from zero"; @@ -41,30 +41,31 @@ equation "modelica://AixLib/Resources/Images/BoundaryConditions/SolarGeometry/BaseClasses/WallSolarAzimuth.png")}), defaultComponentName="wallSolAzi", Documentation(info=" -

    -This block computes the wall solar azimuth angle. -It is the angle between the projection of the sun ray on a horizontal surface -and the line perpendicular to the wall. The value of this angle varies from 0 to 180 degrees. -In the northern hemisphere at solar noon, the value of the wall solar azimuth angle is zero if the wall is facing south. -

    -", revisions=" -
      -
    • -July 5, 2012, by Michael Wetter:
      -Decreased deltaX from 1e-3 to 1e-4, as -the looser tolerance gives sharp changes in - -AixLib.HeatTransfer.Windows.BaseClasses.Examples.Overhang. -
    • -
    • -February 23, 2012, by Michael Wetter:
      -Guarded against division by zero because the altitude angle can be 90 degree -in the tropics, and hence its cosine can take on zero. -
    • -
    • -Feb 01, 2012, by Kaustubh Phalak
      -First implementation. -
    • -
    -")); +

    + This block computes the wall solar azimuth angle. + It is the angle between the projection of the sun ray on a horizontal surface + and the line perpendicular to the wall. The value of this angle varies from 0 to 180 degrees. + In the northern hemisphere at solar noon, the value of the wall solar azimuth angle is zero if the wall is facing south. +

    + ",revisions=" +
      +
    • + July 5, 2012, by Michael Wetter:
      + Decreased deltaX from 1e-3 to 1e-4, as + the looser tolerance gives sharp changes in + + AixLib.HeatTransfer.Windows.BaseClasses.Examples.Overhang. +
    • +
    • + February 23, 2012, by Michael Wetter:
      + Guarded against division by zero because the altitude angle can be 90 degree + in the tropics, and hence its cosine can take on zero. +
    • +
    • + Feb 01, 2012, by Kaustubh Phalak
      + First implementation. +
    • +
    + "), + __Dymola_LockedEditing="Model from IBPSA"); end WallSolarAzimuth; diff --git a/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/ZenithAngle.mo b/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/ZenithAngle.mo index 9df16a4384..bcb6cc42a7 100644 --- a/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/ZenithAngle.mo +++ b/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/ZenithAngle.mo @@ -1,7 +1,6 @@ within AixLib.BoundaryConditions.SolarGeometry.BaseClasses; block ZenithAngle "Zenith angle" extends Modelica.Blocks.Icons.Block; - parameter Modelica.SIunits.Angle lat "Latitude"; Modelica.Blocks.Interfaces.RealInput solHouAng(quantity="Angle", unit="rad") "Solar hour angle" annotation (Placement(transformation(extent={{-140,-68},{-100,-28}}))); @@ -14,6 +13,12 @@ block ZenithAngle "Zenith angle" final unit="rad", displayUnit="deg") "Zenith angle" annotation (Placement(transformation(extent={{100,-10},{120,10}}))); + Modelica.Blocks.Interfaces.RealInput lat( + quantity="Angle", + unit="rad", + displayUnit="deg") "Latitude" + annotation (Placement(transformation(extent={{-140,-20},{-100,20}}), + iconTransformation(extent={{-140,-20},{-100,20}}))); equation zen = Modelica.Math.acos(Modelica.Math.cos(lat)*Modelica.Math.cos(decAng)* Modelica.Math.cos(solHouAng) + Modelica.Math.sin(lat)*Modelica.Math.sin( @@ -21,28 +26,34 @@ equation annotation ( defaultComponentName="zen", Documentation(info=" -

    -This component computes the zenith angle, which is the angle between the earth surface normal and the sun's beam. -Input are the solar hour angle and the declination angle. -

    -", revisions=" -
      -
    • -January 5, 2015, by Michael Wetter:
      -Updated comment of the input connector as this is used in the weather bus connector. -This is for -issue 376. -
    • -
    • -Dec 7, 2010, by Michael Wetter:
      -Rewrote equation in explicit form to avoid nonlinear equations in room model. -
    • -
    • -May 17, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -"), +

    + This component computes the zenith angle, which is the angle between the earth surface normal and the sun's beam. + Input are the solar hour angle and the declination angle. +

    + ",revisions=" +
      +
    • + September 6, 2021, by Ettore Zanetti:
      + Changed lat from being a parameter to an input from weather bus.
      + This is for + IBPSA, #1477. +
    • +
    • + January 5, 2015, by Michael Wetter:
      + Updated comment of the input connector as this is used in the weather bus connector. + This is for + issue 376. +
    • +
    • + Dec 7, 2010, by Michael Wetter:
      + Rewrote equation in explicit form to avoid nonlinear equations in room model. +
    • +
    • + May 17, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), Icon(coordinateSystem(preserveAspectRatio=true, extent={{-100,-100},{100, 100}}), graphics={ Bitmap(extent={{-86,-88},{94,92}}, fileName= @@ -50,13 +61,14 @@ First implementation. Text( extent={{-150,110},{150,150}}, textString="%name", - lineColor={0,0,255}), + textColor={0,0,255}), Text( extent={{-98,62},{-46,46}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="decAng"), Text( extent={{-98,-40},{-22,-58}}, - lineColor={0,0,127}, - textString="solHouAng")})); + textColor={0,0,127}, + textString="solHouAng")}), + __Dymola_LockedEditing="Model from IBPSA"); end ZenithAngle; diff --git a/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/solarAzimuthNoEvent.mo b/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/solarAzimuthNoEvent.mo index 28157121bb..cfc7ab1a36 100644 --- a/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/solarAzimuthNoEvent.mo +++ b/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/solarAzimuthNoEvent.mo @@ -13,20 +13,21 @@ algorithm annotation ( Documentation(info=" -

    -This function is used within - -AixLib.BoundaryConditions.SolarGeometry.BaseClasses.SolarAzimuth -to calculate solar azimuth with no events. -

    -", revisions=" -
      -
    • -June 9, 2020 by David Blum:
      -Initial implementation. -This is for issue -#1373. -
    • -
    -")); +

    + This function is used within + + AixLib.BoundaryConditions.SolarGeometry.BaseClasses.SolarAzimuth + to calculate solar azimuth with no events. +

    + ",revisions=" +
      +
    • + June 9, 2020 by David Blum:
      + Initial implementation. + This is for issue + #1373. +
    • +
    + "), + __Dymola_LockedEditing="Model from IBPSA"); end solarAzimuthNoEvent; diff --git a/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/solarAzimuthWithEvent.mo b/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/solarAzimuthWithEvent.mo index 9e211f5ff3..d8007dbcf1 100644 --- a/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/solarAzimuthWithEvent.mo +++ b/AixLib/BoundaryConditions/SolarGeometry/BaseClasses/solarAzimuthWithEvent.mo @@ -12,20 +12,21 @@ algorithm end if; annotation ( Documentation(info=" -

    -This function is used within - -AixLib.BoundaryConditions.SolarGeometry.BaseClasses.SolarAzimuth -to calculate solar azimuth with events. -

    -", revisions=" -
      -
    • -June 9, 2020 by David Blum:
      -Initial implementation. -This is for issue -#1373. -
    • -
    -")); +

    + This function is used within + + AixLib.BoundaryConditions.SolarGeometry.BaseClasses.SolarAzimuth + to calculate solar azimuth with events. +

    + ",revisions=" +
      +
    • + June 9, 2020 by David Blum:
      + Initial implementation. + This is for issue + #1373. +
    • +
    + "), + __Dymola_LockedEditing="Model from IBPSA"); end solarAzimuthWithEvent; diff --git a/AixLib/BoundaryConditions/SolarGeometry/Examples/IncidenceAngle.mo b/AixLib/BoundaryConditions/SolarGeometry/Examples/IncidenceAngle.mo index 6269eaaca1..0c142e7c4b 100644 --- a/AixLib/BoundaryConditions/SolarGeometry/Examples/IncidenceAngle.mo +++ b/AixLib/BoundaryConditions/SolarGeometry/Examples/IncidenceAngle.mo @@ -2,31 +2,26 @@ within AixLib.BoundaryConditions.SolarGeometry.Examples; model IncidenceAngle "Test model for solar incidence angle" extends Modelica.Icons.Example; AixLib.BoundaryConditions.SolarGeometry.IncidenceAngle incAngHor( - til=AixLib.Types.Tilt.Ceiling, - lat=0.73097781993588, - azi=0.3) "Incidence angle on horizontal surface" + til=AixLib.Types.Tilt.Ceiling, azi=0.3) + "Incidence angle on horizontal surface" annotation (Placement(transformation(extent={{0,70},{20,90}}))); AixLib.BoundaryConditions.WeatherData.ReaderTMY3 weaDat( filNam=Modelica.Utilities.Files.loadResource("modelica://AixLib/Resources/weatherdata/USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.mos")) "Weather data (Chicago)" annotation (Placement(transformation(extent={{-60,-10},{-40,10}}))); AixLib.BoundaryConditions.SolarGeometry.IncidenceAngle incAngNor( - lat=0.73097781993588, azi=AixLib.Types.Azimuth.N, til=AixLib.Types.Tilt.Wall) "Incidence angle on North-facing surface" annotation (Placement(transformation(extent={{0,30},{20,50}}))); AixLib.BoundaryConditions.SolarGeometry.IncidenceAngle incAngWes( - lat=0.73097781993588, azi=AixLib.Types.Azimuth.W, til=AixLib.Types.Tilt.Wall) "Incidence angle on West-facing surface" annotation (Placement(transformation(extent={{0,-10},{20,10}}))); AixLib.BoundaryConditions.SolarGeometry.IncidenceAngle incAngSou( - lat=0.73097781993588, azi=AixLib.Types.Azimuth.S, til=AixLib.Types.Tilt.Wall) "Incidence angle on South-facing surface" annotation (Placement(transformation(extent={{0,-50},{20,-30}}))); AixLib.BoundaryConditions.SolarGeometry.IncidenceAngle incAngEas( - lat=0.73097781993588, azi=AixLib.Types.Azimuth.E, til=AixLib.Types.Tilt.Wall) "Incidence angle on East-facing surface" annotation (Placement(transformation(extent={{0,-90},{20,-70}}))); @@ -53,30 +48,31 @@ equation thickness=0.5)); annotation ( Documentation(info=" -

    -This example computes the solar incidence angle on tilted surfaces. -There are fives surfaces, a horizontal surface and a surface -that faces Norths, East, South and West. -

    -", revisions=" -
      -
    • -March 24, 2015, by Michael Wetter:
      -Assigned azimuth and tilt using the types from - -AixLib.Types.Tilt. -
    • -
    • -January 16, 2015, by Michael Wetter:
      -Added surfaces for each orientation. -
    • -
    • -May 19, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -"), +

    + This example computes the solar incidence angle on tilted surfaces. + There are fives surfaces, a horizontal surface and a surface + that faces Norths, East, South and West. +

    + ",revisions=" +
      +
    • + March 24, 2015, by Michael Wetter:
      + Assigned azimuth and tilt using the types from + + AixLib.Types.Tilt. +
    • +
    • + January 16, 2015, by Michael Wetter:
      + Added surfaces for each orientation. +
    • +
    • + May 19, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), experiment(Tolerance=1e-6, StopTime=86400), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/BoundaryConditions/SolarGeometry/Examples/IncidenceAngle.mos" - "Simulate and plot")); + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end IncidenceAngle; diff --git a/AixLib/BoundaryConditions/SolarGeometry/Examples/ZenithAngle.mo b/AixLib/BoundaryConditions/SolarGeometry/Examples/ZenithAngle.mo index 487f5f5538..a7fdc7eae3 100644 --- a/AixLib/BoundaryConditions/SolarGeometry/Examples/ZenithAngle.mo +++ b/AixLib/BoundaryConditions/SolarGeometry/Examples/ZenithAngle.mo @@ -1,7 +1,7 @@ within AixLib.BoundaryConditions.SolarGeometry.Examples; model ZenithAngle "Test model for zenith angle" extends Modelica.Icons.Example; - AixLib.BoundaryConditions.SolarGeometry.ZenithAngle zen(lat=0.2) + AixLib.BoundaryConditions.SolarGeometry.ZenithAngle zen "Zenith angle" annotation (Placement(transformation(extent={{20,0},{40,20}}))); AixLib.BoundaryConditions.WeatherData.ReaderTMY3 weaDat( @@ -14,24 +14,25 @@ equation thickness=0.5)); annotation ( Documentation(info=" -

    -This example computes the zenith angle, -which is the angle between the earth surface normal and the sun beam. -

    -", revisions=" -
      -
    • -February 25, 2012, by Michael Wetter:
      -Changed model to get declination angle and -solar hour angle from weather bus. -
    • -
    • -May 17, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -"), +

    + This example computes the zenith angle, + which is the angle between the earth surface normal and the sun beam. +

    + ",revisions=" +
      +
    • + February 25, 2012, by Michael Wetter:
      + Changed model to get declination angle and + solar hour angle from weather bus. +
    • +
    • + May 17, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), experiment(StartTime=100000, Tolerance=1e-6, StopTime=300000), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/BoundaryConditions/SolarGeometry/Examples/ZenithAngle.mos" - "Simulate and plot")); + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end ZenithAngle; diff --git a/AixLib/BoundaryConditions/SolarGeometry/IncidenceAngle.mo b/AixLib/BoundaryConditions/SolarGeometry/IncidenceAngle.mo index e230b7702e..2fb00e712c 100644 --- a/AixLib/BoundaryConditions/SolarGeometry/IncidenceAngle.mo +++ b/AixLib/BoundaryConditions/SolarGeometry/IncidenceAngle.mo @@ -1,9 +1,8 @@ within AixLib.BoundaryConditions.SolarGeometry; block IncidenceAngle "Solar incidence angle on a tilted surface" extends Modelica.Blocks.Icons.Block; - parameter Modelica.SIunits.Angle lat "Latitude"; - parameter Modelica.SIunits.Angle azi "Surface azimuth"; - parameter Modelica.SIunits.Angle til "Surface tilt"; + parameter Modelica.Units.SI.Angle azi "Surface azimuth"; + parameter Modelica.Units.SI.Angle til "Surface tilt"; Modelica.Blocks.Interfaces.RealOutput y( final quantity="Angle", @@ -21,7 +20,6 @@ protected solHouAng "Solar hour angle" annotation (Placement(transformation(extent={{-40,-50},{-20,-30}}))); AixLib.BoundaryConditions.SolarGeometry.BaseClasses.IncidenceAngle incAng( - final lat=lat, final azi=azi, final til=til) "Incidence angle" annotation (Placement(transformation(extent={{40,-10},{60,10}}))); @@ -50,34 +48,49 @@ equation textString="%first", index=-1, extent={{-6,3},{-6,3}})); + connect(weaBus.lat, incAng.lat) annotation (Line( + points={{-100,0},{38,0}}, + color={255,204,51}, + thickness=0.5), Text( + string="%first", + index=-1, + extent={{-6,3},{-6,3}}, + horizontalAlignment=TextAlignment.Right)); annotation ( defaultComponentName="incAng", Documentation(info=" -

    -This component computes the solar incidence angle on a tilted surface. -For a definition of the parameters, see the User's Guide -AixLib.BoundaryConditions.UsersGuide. -

    -", revisions=" -
      -
    • -November 30, 2011, by Michael Wetter:
      -Removed connect(y, y) statement. -
    • -
    • -February 28, 2011, by Wangda Zuo:
      -Use local civil time instead of clock time. -
    • -
    • -May 19, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -"), +

    + This component computes the solar incidence angle on a tilted surface. + For a definition of the parameters, see the User's Guide + AixLib.BoundaryConditions.UsersGuide. +

    + ",revisions=" +
      +
    • + September 6, 2021, by Ettore Zanetti:
      + Changed lat from being a parameter to an input from weather bus.
      + This is for + IBPSA, #1477. +
    • +
    • + November 30, 2011, by Michael Wetter:
      + Removed connect(y, y) statement. +
    • +
    • + February 28, 2011, by Wangda Zuo:
      + Use local civil time instead of clock time. +
    • +
    • + May 19, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), Icon(coordinateSystem(preserveAspectRatio=true, extent={{-100,-100},{100, 100}}), graphics={Text( extent={{-150,110},{150,150}}, textString="%name", - lineColor={0,0,255}), Bitmap(extent={{-90,-90},{90,90}}, fileName= - "modelica://AixLib/Resources/Images/BoundaryConditions/SolarGeometry/BaseClasses/IncidenceAngle.png")})); + textColor={0,0,255}), Bitmap(extent={{-90,-90},{90,90}}, fileName= + "modelica://AixLib/Resources/Images/BoundaryConditions/SolarGeometry/BaseClasses/IncidenceAngle.png")}), + __Dymola_LockedEditing="Model from IBPSA"); end IncidenceAngle; diff --git a/AixLib/BoundaryConditions/SolarGeometry/ZenithAngle.mo b/AixLib/BoundaryConditions/SolarGeometry/ZenithAngle.mo index 1286b754eb..96db1b440d 100644 --- a/AixLib/BoundaryConditions/SolarGeometry/ZenithAngle.mo +++ b/AixLib/BoundaryConditions/SolarGeometry/ZenithAngle.mo @@ -1,7 +1,6 @@ within AixLib.BoundaryConditions.SolarGeometry; block ZenithAngle "Zenith angle" extends Modelica.Blocks.Icons.Block; - parameter Modelica.SIunits.Angle lat "Latitude"; Modelica.Blocks.Interfaces.RealOutput y( final quantity="Angle", final unit="rad", @@ -10,7 +9,7 @@ block ZenithAngle "Zenith angle" WeatherData.Bus weaBus "Weather data" annotation (Placement(transformation(extent={{-110,-10},{-90,10}}))); protected - AixLib.BoundaryConditions.SolarGeometry.BaseClasses.ZenithAngle zen(final lat=lat) + AixLib.BoundaryConditions.SolarGeometry.BaseClasses.ZenithAngle zen annotation (Placement(transformation(extent={{0,-10},{20,10}}))); equation connect(zen.zen, y) annotation (Line( @@ -25,33 +24,48 @@ equation points={{-100,0},{-40,0},{-40,-4.8},{-2,-4.8}}, color={255,204,51}, thickness=0.5)); + connect(weaBus.lat, zen.lat) annotation (Line( + points={{-100,0},{-2,0}}, + color={255,204,51}, + thickness=0.5), Text( + string="%first", + index=-1, + extent={{-6,3},{-6,3}}, + horizontalAlignment=TextAlignment.Right)); annotation ( defaultComponentName="zen", Documentation(info=" -

    -This component computes the zenith angle, -which is the angle between the earth surface normal and the sun beam. -For a definition of the parameters, see the User's Guide - -AixLib.BoundaryConditions.UsersGuide. -

    -", revisions=" -
      -
    • -February 25, 2012, by Michael Wetter:
      -Changed model to get declination angle and -solar hour angle from weather bus. -
    • -
    • -May 17, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -"), +

    + This component computes the zenith angle, + which is the angle between the earth surface normal and the sun beam. + For a definition of the parameters, see the User's Guide + + AixLib.BoundaryConditions.UsersGuide. +

    + ",revisions=" +
      +
    • + September 6, 2021, by Ettore Zanetti:
      + Changed lat from being a parameter to an input from weather bus.
      + This is for + IBPSA, #1477. +
    • +
    • + February 25, 2012, by Michael Wetter:
      + Changed model to get declination angle and + solar hour angle from weather bus. +
    • +
    • + May 17, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), Icon(coordinateSystem(preserveAspectRatio=true, extent={{-100,-100},{100, 100}}), graphics={Text( extent={{-150,110},{150,150}}, textString="%name", - lineColor={0,0,255}), Bitmap(extent={{-90,-90},{90,90}}, fileName= - "modelica://AixLib/Resources/Images/BoundaryConditions/SolarGeometry/BaseClasses/ZenithAngle.png")})); + textColor={0,0,255}), Bitmap(extent={{-90,-90},{90,90}}, fileName= + "modelica://AixLib/Resources/Images/BoundaryConditions/SolarGeometry/BaseClasses/ZenithAngle.png")}), + __Dymola_LockedEditing="Model from IBPSA"); end ZenithAngle; diff --git a/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/BrighteningCoefficient.mo b/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/BrighteningCoefficient.mo index 9c51c6f741..8193eb49f6 100644 --- a/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/BrighteningCoefficient.mo +++ b/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/BrighteningCoefficient.mo @@ -113,53 +113,54 @@ equation annotation ( defaultComponentName="briCoe", Documentation(info=" -

    -This component computes the circumsolar and horizon brightening coefficients. -

    -", revisions=" -
      -
    • -April 27, 2018, by Michael Wetter:
      -Corrected displayUnit.
      -This is for -AixLib, issue 912. -
    • -
    • -March 15, 2016, by Michael Wetter:
      -Replaced spliceFunction with regStep. -This is for -issue 300. -
    • -
    • -May 25, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -"), +

    + This component computes the circumsolar and horizon brightening coefficients. +

    + ",revisions=" +
      +
    • + April 27, 2018, by Michael Wetter:
      + Corrected displayUnit.
      + This is for + IBPSA, issue 912. +
    • +
    • + March 15, 2016, by Michael Wetter:
      + Replaced spliceFunction with regStep. + This is for + issue 300. +
    • +
    • + May 25, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), Icon(coordinateSystem(preserveAspectRatio=true, extent={{-100,-100},{100, 100}}), graphics={ Text( extent={{-150,110},{150,150}}, textString="%name", - lineColor={0,0,255}), + textColor={0,0,255}), Text( extent={{-96,72},{-52,50}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="skyCle"), Text( extent={{-96,14},{-52,-8}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="skyBri"), Text( extent={{-96,-46},{-52,-68}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="zen"), Text( extent={{62,50},{106,28}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="F1"), Text( extent={{60,-30},{104,-52}}, - lineColor={0,0,127}, - textString="F2")})); + textColor={0,0,127}, + textString="F2")}), + __Dymola_LockedEditing="Model from IBPSA"); end BrighteningCoefficient; diff --git a/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/DiffuseIsotropic.mo b/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/DiffuseIsotropic.mo index 4be07ad4af..ef6f534c50 100644 --- a/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/DiffuseIsotropic.mo +++ b/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/DiffuseIsotropic.mo @@ -3,7 +3,7 @@ block DiffuseIsotropic "Diffuse solar irradiation on a tilted surface with an isotropic model" extends Modelica.Blocks.Icons.Block; parameter Real rho=0.2 "Ground reflectance"; - parameter Modelica.SIunits.Angle til(displayUnit="deg") "Surface tilt angle"; + parameter Modelica.Units.SI.Angle til(displayUnit="deg") "Surface tilt angle"; Modelica.Blocks.Interfaces.RealInput HDifHor(quantity= "RadiantEnergyFluenceRate", unit="W/m2") @@ -30,31 +30,32 @@ equation annotation ( defaultComponentName="HDifTilIso", Documentation(info=" -

    -This component computes the hemispherical diffuse irradiation on a tilted surface. -The irradiation is composed of the diffuse horizontal solar irradiation and the irradiation -that has been reflected by the ground. Both components are adjusted to take into account -the tilt of the receiving surface. -

    -

    References

    -P. Ineichen, R. Perez and R. Seals (1987). -The Importance of Correct Albedo Determination for Adequately Modeling Energy Received by Tilted Surface, -Solar Energy, 39(4): 301-305. -", revisions=" -
      -
    • -June 6, 2012, by Wangda Zuo:
      -Separated the contributions from the sky and the ground. -
    • -
    • -May 24, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -"), +

    + This component computes the hemispherical diffuse irradiation on a tilted surface. + The irradiation is composed of the diffuse horizontal solar irradiation and the irradiation + that has been reflected by the ground. Both components are adjusted to take into account + the tilt of the receiving surface. +

    +

    References

    + P. Ineichen, R. Perez and R. Seals (1987). + The Importance of Correct Albedo Determination for Adequately Modeling Energy Received by Tilted Surface, + Solar Energy, 39(4): 301-305. + ",revisions=" +
      +
    • + June 6, 2012, by Wangda Zuo:
      + Separated the contributions from the sky and the ground. +
    • +
    • + May 24, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), Icon(coordinateSystem(preserveAspectRatio=true, extent={{-100,-100},{100, 100}}), graphics={Text( extent={{-150,110},{150,150}}, textString="%name", - lineColor={0,0,255})})); + textColor={0,0,255})}), + __Dymola_LockedEditing="Model from IBPSA"); end DiffuseIsotropic; diff --git a/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/DiffusePerez.mo b/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/DiffusePerez.mo index add7b797c5..72e077c9e7 100644 --- a/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/DiffusePerez.mo +++ b/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/DiffusePerez.mo @@ -3,7 +3,7 @@ block DiffusePerez "Hemispherical diffuse irradiation on a tilted surface with Perez's anisotropic model" extends Modelica.Blocks.Icons.Block; parameter Real rho=0.2 "Ground reflectance"; - parameter Modelica.SIunits.Angle til(displayUnit="deg") "Surface tilt angle"; + parameter Modelica.Units.SI.Angle til(displayUnit="deg") "Surface tilt angle"; Modelica.Blocks.Interfaces.RealInput briCof1 "Brightening Coeffcient F1" annotation (Placement(transformation(extent={{-140,0},{-100,40}}))); Modelica.Blocks.Interfaces.RealInput briCof2 "Brightening Coeffcient F2" @@ -56,75 +56,76 @@ equation annotation ( defaultComponentName="HDifTil", Documentation(info=" -

    -This component computes the hemispherical diffuse irradiation on a tilted surface by using an anisotropic model proposed by Perez. -

    -

    References

    -
      -
    • -P. Ineichen, R. Perez and R. Seals (1987). -The Importance of Correct Albedo Determination for Adequately Modeling Energy Received by Tilted Surface, -Solar Energy, 39(4): 301-305. -
    • -
    • -R. Perez, R. Seals, P. Ineichen, R. Stewart and D. Menicucci (1987). -A New Simplified Version of the Perez Diffuse Irradiance Model for Tilted Surface, -Solar Energy, 39(3): 221-231. -
    • -
    • -R. Perez, P. Ineichen, R. Seals, J. Michalsky and R. Stewart (1990). -Modeling Dyalight Availability and Irradiance Componets From Direct and Global Irradiance, -Solar Energy, 44(5):271-289. -
    • -
    -", revisions=" -
      -
    • -April 27, 2018, by Michael Wetter:
      -Corrected displayUnit.
      -This is for -AixLib, issue 912. -
    • -
    • -June 6, 2012, by Wangda Zuo:
      -Separated the contribution from the sky and the ground. -
    • -
    -
      -
    • -May 24, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -"), +

    + This component computes the hemispherical diffuse irradiation on a tilted surface by using an anisotropic model proposed by Perez. +

    +

    References

    +
      +
    • + P. Ineichen, R. Perez and R. Seals (1987). + The Importance of Correct Albedo Determination for Adequately Modeling Energy Received by Tilted Surface, + Solar Energy, 39(4): 301-305. +
    • +
    • + R. Perez, R. Seals, P. Ineichen, R. Stewart and D. Menicucci (1987). + A New Simplified Version of the Perez Diffuse Irradiance Model for Tilted Surface, + Solar Energy, 39(3): 221-231. +
    • +
    • + R. Perez, P. Ineichen, R. Seals, J. Michalsky and R. Stewart (1990). + Modeling Dyalight Availability and Irradiance Componets From Direct and Global Irradiance, + Solar Energy, 44(5):271-289. +
    • +
    + ",revisions=" +
      +
    • + April 27, 2018, by Michael Wetter:
      + Corrected displayUnit.
      + This is for + IBPSA, issue 912. +
    • +
    • + June 6, 2012, by Wangda Zuo:
      + Separated the contribution from the sky and the ground. +
    • +
    +
      +
    • + May 24, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), Icon(coordinateSystem(preserveAspectRatio=true, extent={{-100,-100},{100, 100}}), graphics={ Text( extent={{-150,110},{150,150}}, textString="%name", - lineColor={0,0,255}), + textColor={0,0,255}), Text( extent={{-48,74},{-100,86}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="HGloHor"), Text( extent={{-50,44},{-102,56}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="HDifHor"), Text( extent={{-50,14},{-102,26}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="briCof1"), Text( extent={{-50,-16},{-102,-4}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="briCof2"), Text( extent={{-50,-46},{-102,-34}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="zen"), Text( extent={{-52,-76},{-104,-64}}, - lineColor={0,0,127}, - textString="incAng")})); + textColor={0,0,127}, + textString="incAng")}), + __Dymola_LockedEditing="Model from IBPSA"); end DiffusePerez; diff --git a/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/DirectTiltedSurface.mo b/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/DirectTiltedSurface.mo index ac590daf84..7821b568d8 100644 --- a/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/DirectTiltedSurface.mo +++ b/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/DirectTiltedSurface.mo @@ -19,40 +19,41 @@ equation annotation ( defaultComponentName="HDirTil", Documentation(info=" -

    -This component computes the direct solar irradiation on a tilted surface. -

    -", revisions=" -
      -
    • -April 27, 2018, by Michael Wetter:
      -Corrected displayUnit.
      -This is for -AixLib, issue 912. -
    • -
    • -May 5, 2015, by Filip Jorissen:
      -Converted algorithm section into -equation section for easier differentiability. -
    • -
    • -May 24, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -"), +

    + This component computes the direct solar irradiation on a tilted surface. +

    + ",revisions=" +
      +
    • + April 27, 2018, by Michael Wetter:
      + Corrected displayUnit.
      + This is for + IBPSA, issue 912. +
    • +
    • + May 5, 2015, by Filip Jorissen:
      + Converted algorithm section into + equation section for easier differentiability. +
    • +
    • + May 24, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), Icon(coordinateSystem(preserveAspectRatio=true, extent={{-100,-100},{100, 100}}), graphics={ Text( extent={{-150,110},{150,150}}, textString="%name", - lineColor={0,0,255}), + textColor={0,0,255}), Text( extent={{-50,56},{-102,68}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="HDirNor"), Text( extent={{-54,-66},{-106,-54}}, - lineColor={0,0,127}, - textString="incAng")})); + textColor={0,0,127}, + textString="incAng")}), + __Dymola_LockedEditing="Model from IBPSA"); end DirectTiltedSurface; diff --git a/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/Examples/BrighteningCoefficient.mo b/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/Examples/BrighteningCoefficient.mo index e60db92dfa..bb07931364 100644 --- a/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/Examples/BrighteningCoefficient.mo +++ b/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/Examples/BrighteningCoefficient.mo @@ -1,15 +1,14 @@ within AixLib.BoundaryConditions.SolarIrradiation.BaseClasses.Examples; model BrighteningCoefficient "Test model for brightening coeffcients" extends Modelica.Icons.Example; - AixLib.BoundaryConditions.SolarGeometry.ZenithAngle zen(lat= - 0.6457718232379) - annotation (Placement(transformation(extent={{-40,-20},{-20,0}}))); + AixLib.BoundaryConditions.SolarGeometry.ZenithAngle zen + annotation (Placement(transformation(extent={{-42,-20},{-22,0}}))); AixLib.BoundaryConditions.SolarIrradiation.BaseClasses.SkyClearness skyCle annotation (Placement(transformation(extent={{40,20},{60,40}}))); AixLib.BoundaryConditions.SolarIrradiation.BaseClasses.BrighteningCoefficient briCoe annotation (Placement(transformation(extent={{80,-20},{100,0}}))); AixLib.BoundaryConditions.SolarIrradiation.BaseClasses.RelativeAirMass - relAirMas annotation (Placement(transformation(extent={{-10,-20},{10,0}}))); + relAirMas annotation (Placement(transformation(extent={{-8,-20},{12,0}}))); AixLib.BoundaryConditions.SolarIrradiation.BaseClasses.SkyBrightness skyBri annotation (Placement(transformation(extent={{40,-40},{60,-20}}))); AixLib.BoundaryConditions.WeatherData.ReaderTMY3 weaDat(filNam= @@ -21,13 +20,13 @@ model BrighteningCoefficient "Test model for brightening coeffcients" 60},{-20,60}}))); equation connect(zen.y, skyCle.zen) annotation (Line( - points={{-19,-10},{-16,-10},{-16,24},{38,24}}, + points={{-21,-10},{-16,-10},{-16,24},{38,24}}, color={0,0,127})); connect(relAirMas.relAirMas, skyBri.relAirMas) annotation (Line( - points={{11,-10},{30,-10},{30,-26},{38,-26}}, + points={{13,-10},{30,-10},{30,-24},{38,-24}}, color={0,0,127})); connect(zen.y, relAirMas.zen) annotation (Line( - points={{-19,-10},{-12,-10}}, + points={{-21,-10},{-16,-10},{-16,-16},{-10,-16}}, color={0,0,127})); connect(skyBri.skyBri, briCoe.skyBri) annotation (Line( points={{61,-30},{68,-30},{68,-10},{78,-10}}, @@ -36,7 +35,7 @@ equation points={{61,30},{68,30},{68,-4},{78,-4}}, color={0,0,127})); connect(zen.y, briCoe.zen) annotation (Line( - points={{-19,-10},{-16,-10},{-16,-60},{72,-60},{72,-16},{78,-16}}, + points={{-21,-10},{-16,-10},{-16,-60},{72,-60},{72,-16},{78,-16}}, color={0,0,127})); connect(weaDat.weaBus, weaBus) annotation (Line( points={{-70,70},{-50,70}}, @@ -45,13 +44,6 @@ equation textString="%second", index=1, extent={{6,3},{6,3}})); - connect(weaBus.HGloHor, skyCle.HGloHor) annotation (Line( - points={{-50,70},{20,70},{20,36},{38,36}}, - color={255,204,51}, - thickness=0.5), Text( - textString="%first", - index=-1, - extent={{-6,3},{-6,3}})); connect(weaBus.HDifHor, skyCle.HDifHor) annotation (Line( points={{-50,70},{20,70},{20,30},{38,30}}, color={255,204,51}, @@ -67,25 +59,54 @@ equation index=-1, extent={{-6,3},{-6,3}})); connect(weaBus, zen.weaBus) annotation (Line( - points={{-50,70},{-50,70},{-50,28},{-50,28},{-50,-10},{-40,-10}}, + points={{-50,70},{-50,-10},{-42,-10}}, color={255,204,51}, thickness=0.5), Text( textString="%first", index=-1, extent={{-6,3},{-6,3}})); + connect(weaBus.solTim, skyBri.solTim) annotation (Line( + points={{-50,70},{-50,-38.4},{38,-38.4}}, + color={255,204,51}, + thickness=0.5), Text( + string="%first", + index=-1, + extent={{-6,3},{-6,3}}, + horizontalAlignment=TextAlignment.Right)); + connect(weaBus.HDirNor, skyCle.HDirNor) annotation (Line( + points={{-50,70},{20,70},{20,36},{38,36}}, + color={255,204,51}, + thickness=0.5), Text( + string="%first", + index=-1, + extent={{-6,3},{-6,3}}, + horizontalAlignment=TextAlignment.Right)); + connect(weaBus.alt, relAirMas.alt) annotation (Line( + points={{-50,70},{-18,70},{-18,-4},{-10,-4}}, + color={255,204,51}, + thickness=0.5), Text( + string="%first", + index=-1, + extent={{-3,6},{-3,6}}, + horizontalAlignment=TextAlignment.Right)); annotation ( Documentation(info=" -

    -This example computes the circumsolar and horizon brightening coefficients. -

    -", revisions=" -
      -
    • -May 25, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -"), +

    + This example computes the circumsolar and horizon brightening coefficients. +

    + ",revisions=" +
      +
    • + May 25, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), experiment(Tolerance=1e-6, StopTime=8640000), -__Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/BoundaryConditions/SolarIrradiation/BaseClasses/Examples/BrighteningCoefficient.mos" "run")); +__Dymola_Commands( + file="modelica://AixLib/Resources/Scripts/Dymola/BoundaryConditions/SolarIrradiation/BaseClasses/Examples/BrighteningCoefficient.mos" + "Simulate and plot"), + Diagram(coordinateSystem(extent={{-100,-100},{120,100}})), + Icon(coordinateSystem(extent={{-100,-100},{100,100}})), + __Dymola_LockedEditing="Model from IBPSA"); end BrighteningCoefficient; diff --git a/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/Examples/DiffuseIsotropic.mo b/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/Examples/DiffuseIsotropic.mo index 9ec6f44aeb..6f2e06e3bf 100644 --- a/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/Examples/DiffuseIsotropic.mo +++ b/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/Examples/DiffuseIsotropic.mo @@ -34,18 +34,19 @@ equation extent={{-6,3},{-6,3}})); annotation ( Documentation(info=" -

    -This example computes the hemispherical diffuse irradiation on a tilted surface. -

    -", revisions=" -
      -
    • -May 24, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -"), +

    + This example computes the hemispherical diffuse irradiation on a tilted surface. +

    + ",revisions=" +
      +
    • + May 24, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), experiment(Tolerance=1e-6, StartTime=0, StopTime=8640000), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/BoundaryConditions/SolarIrradiation/BaseClasses/Examples/DiffuseIsotropic.mos" - "Simulate and plot")); + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end DiffuseIsotropic; diff --git a/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/Examples/RelativeAirMass.mo b/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/Examples/RelativeAirMass.mo index 9b86f533f2..12d8b9f6e0 100644 --- a/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/Examples/RelativeAirMass.mo +++ b/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/Examples/RelativeAirMass.mo @@ -2,13 +2,14 @@ within AixLib.BoundaryConditions.SolarIrradiation.BaseClasses.Examples; model RelativeAirMass "Test model for relative air mass" extends Modelica.Icons.Example; AixLib.BoundaryConditions.SolarIrradiation.BaseClasses.RelativeAirMass - relAirMas annotation (Placement(transformation(extent={{20,0},{40,20}}))); - AixLib.BoundaryConditions.SolarGeometry.ZenithAngle zen(lat= - 0.34906585039887) + relAirMas annotation (Placement(transformation(extent={{20,6},{40,26}}))); + AixLib.BoundaryConditions.SolarGeometry.ZenithAngle zen annotation (Placement(transformation(extent={{-20,0},{0,20}}))); AixLib.BoundaryConditions.WeatherData.ReaderTMY3 weaDat(filNam= Modelica.Utilities.Files.loadResource("modelica://AixLib/Resources/weatherdata/USA_CA_San.Francisco.Intl.AP.724940_TMY3.mos")) annotation (Placement(transformation(extent={{-60,0},{-40,20}}))); + WeatherData.Bus weaBus annotation (Placement(transformation(extent={{-52,14}, + {-12,54}}), iconTransformation(extent={{-232,-2},{-212,18}}))); equation connect(zen.y, relAirMas.zen) annotation (Line( points={{1,10},{18,10}}, @@ -17,20 +18,37 @@ equation points={{-40,10},{-20,10}}, color={255,204,51}, thickness=0.5)); + connect(weaDat.weaBus, weaBus) annotation (Line( + points={{-40,10},{-32,10},{-32,34}}, + color={255,204,51}, + thickness=0.5), Text( + string="%second", + index=1, + extent={{6,3},{6,3}}, + horizontalAlignment=TextAlignment.Left)); + connect(weaBus.alt, relAirMas.alt) annotation (Line( + points={{-32,34},{12,34},{12,22},{18,22}}, + color={255,204,51}, + thickness=0.5), Text( + string="%first", + index=-1, + extent={{-6,3},{-6,3}}, + horizontalAlignment=TextAlignment.Right)); annotation ( Documentation(info=" -

    -This example computes the relative air mass for sky brightness. -

    -", revisions=" -
      -
    • -July 07, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -"), +

    + This example computes the relative air mass for sky brightness. +

    + ",revisions=" +
      +
    • + July 07, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), experiment(Tolerance=1e-6, StopTime=864000), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/BoundaryConditions/SolarIrradiation/BaseClasses/Examples/RelativeAirMass.mos" - "Simulate and plot")); + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end RelativeAirMass; diff --git a/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/Examples/SkyBrightness.mo b/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/Examples/SkyBrightness.mo index 31d8dc8a56..17d4ed81a0 100644 --- a/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/Examples/SkyBrightness.mo +++ b/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/Examples/SkyBrightness.mo @@ -3,13 +3,13 @@ model SkyBrightness "Test model for sky brightness" extends Modelica.Icons.Example; AixLib.BoundaryConditions.SolarIrradiation.BaseClasses.RelativeAirMass relAirMas "Relative air mass" - annotation (Placement(transformation(extent={{10,20},{30,40}}))); - AixLib.BoundaryConditions.SolarGeometry.ZenithAngle zen( - lat=0.34906585039887) "Zenith angle" - annotation (Placement(transformation(extent={{-20,20},{0,40}}))); + annotation (Placement(transformation(extent={{20,30},{40,50}}))); + AixLib.BoundaryConditions.SolarGeometry.ZenithAngle zen + "Zenith angle" + annotation (Placement(transformation(extent={{-26,20},{-6,40}}))); AixLib.BoundaryConditions.SolarIrradiation.BaseClasses.SkyBrightness skyBri "Sky brightness" - annotation (Placement(transformation(extent={{60,-16},{80,4}}))); + annotation (Placement(transformation(extent={{60,-20},{80,0}}))); AixLib.BoundaryConditions.WeatherData.ReaderTMY3 weaDat(filNam= Modelica.Utilities.Files.loadResource("modelica://AixLib/Resources/weatherdata/USA_CA_San.Francisco.Intl.AP.724940_TMY3.mos")) "Weather data" @@ -20,10 +20,10 @@ model SkyBrightness "Test model for sky brightness" -22,-20},{-22,-20}}))); equation connect(zen.y, relAirMas.zen) annotation (Line( - points={{1,30},{8,30}}, + points={{-5,30},{8,30},{8,34},{18,34}}, color={0,0,127})); connect(relAirMas.relAirMas, skyBri.relAirMas) annotation (Line( - points={{31,30},{40,30},{40,-2},{58,-2}}, + points={{41,40},{50,40},{50,-4},{58,-4}}, color={0,0,127})); connect(weaDat.weaBus, weaBus) annotation (Line( points={{-60,-10},{-40,-10}}, @@ -40,26 +40,49 @@ equation index=-1, extent={{-6,3},{-6,3}})); connect(zen.weaBus, weaBus) annotation (Line( - points={{-20,30},{-30,30},{-30,-10},{-40,-10}}, + points={{-26,30},{-30,30},{-30,-10},{-40,-10}}, color={255,204,51}, thickness=0.5), Text( textString="%second", index=1, extent={{6,3},{6,3}})); + connect(weaBus.solTim, skyBri.solTim) annotation (Line( + points={{-40,-10},{-40,-16},{58,-16}}, + color={255,204,51}, + thickness=0.5), Text( + string="%first", + index=-1, + extent={{-6,3},{-6,3}}, + horizontalAlignment=TextAlignment.Right)); + connect(weaBus.alt, relAirMas.alt) annotation (Line( + points={{-40,-10},{-40,50},{8,50},{8,46},{18,46}}, + color={255,204,51}, + thickness=0.5), Text( + string="%first", + index=-1, + extent={{-3,6},{-3,6}}, + horizontalAlignment=TextAlignment.Right)); annotation ( Documentation(info=" -

    -This example computes the sky brightness. -

    -", revisions=" -
      -
    • -July 07, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -"), +

    + This example computes the sky brightness. +

    + ",revisions=" +
      +
    • + May 2, 2021, by Ettore Zanetti:
      + Changed extraterrestrial radiation and added time dependent correlation.
      + This is for + IBPSA, #1477. +
    • +
    • + July 07, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), experiment(Tolerance=1e-6, StopTime=8640000), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/BoundaryConditions/SolarIrradiation/BaseClasses/Examples/SkyBrightness.mos" - "Simulate and plot")); + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end SkyBrightness; diff --git a/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/Examples/SkyClearness.mo b/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/Examples/SkyClearness.mo index da5ba749ff..4fd4e707bb 100644 --- a/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/Examples/SkyClearness.mo +++ b/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/Examples/SkyClearness.mo @@ -2,8 +2,7 @@ within AixLib.BoundaryConditions.SolarIrradiation.BaseClasses.Examples; model SkyClearness "Test model for sky clearness" extends Modelica.Icons.Example; - AixLib.BoundaryConditions.SolarGeometry.ZenithAngle zen(lat= - 0.34906585039887) + AixLib.BoundaryConditions.SolarGeometry.ZenithAngle zen annotation (Placement(transformation(extent={{-40,-20},{-20,0}}))); AixLib.BoundaryConditions.SolarIrradiation.BaseClasses.SkyClearness skyCle annotation (Placement(transformation(extent={{40,0},{60,20}}))); @@ -25,7 +24,7 @@ equation textString="%second", index=1, extent={{6,3},{6,3}})); - connect(weaBus.HGloHor, skyCle.HGloHor) annotation (Line( + connect(weaBus.HDirNor, skyCle.HDirNor) annotation (Line( points={{8,30},{24,30},{24,16},{38,16}}, color={255,204,51}, thickness=0.5), Text( @@ -49,19 +48,20 @@ equation extent={{-6,3},{-6,3}})); annotation ( Documentation(info=" -

    -This example computes the sky clearness. -

    -", +

    + This example computes the sky clearness. +

    + ", revisions=" -
      -
    • -July 07, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -"), +
      +
    • + July 07, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), experiment(StartTime=100000, Tolerance=1e-6, StopTime=3000000), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/BoundaryConditions/SolarIrradiation/BaseClasses/Examples/SkyClearness.mos" - "Simulate and plot")); + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end SkyClearness; diff --git a/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/PartialSolarIrradiation.mo b/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/PartialSolarIrradiation.mo index bbbbf3dde2..1bfd32d8ff 100644 --- a/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/PartialSolarIrradiation.mo +++ b/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/PartialSolarIrradiation.mo @@ -2,7 +2,7 @@ within AixLib.BoundaryConditions.SolarIrradiation.BaseClasses; partial block PartialSolarIrradiation "Partial model that is used to compute the direct and diffuse solar irradiation" extends Modelica.Blocks.Icons.Block; - parameter Modelica.SIunits.Angle til(displayUnit="deg") "Surface tilt"; + parameter Modelica.Units.SI.Angle til(displayUnit="deg") "Surface tilt"; Modelica.Blocks.Interfaces.RealOutput H( final quantity="RadiantEnergyFluenceRate", final unit="W/m2") "Radiation per unit area" @@ -13,25 +13,26 @@ partial block PartialSolarIrradiation annotation ( Documentation(info=" -

    -This is a partial model that is used to implement the direct and diffuse irradiation. -

    -", revisions=" -
      -
    • -Dec. 12, 2010, by Michael Wetter:
      -Changed output signal to avoid ambiguity in blocks that output also other -quantities such as the incidence angle. -
    • -
    • -Sep. 4, 2010, by Michael Wetter:
      -First implementation. -
    • -
    -"), +

    + This is a partial model that is used to implement the direct and diffuse irradiation. +

    + ",revisions=" +
      +
    • + Dec. 12, 2010, by Michael Wetter:
      + Changed output signal to avoid ambiguity in blocks that output also other + quantities such as the incidence angle. +
    • +
    • + Sep. 4, 2010, by Michael Wetter:
      + First implementation. +
    • +
    + "), Icon(coordinateSystem(preserveAspectRatio=true, extent={{-100,-100},{100, 100}}), graphics={Text( extent={{-150,110},{150,150}}, textString="%name", - lineColor={0,0,255})})); + textColor={0,0,255})}), + __Dymola_LockedEditing="Model from IBPSA"); end PartialSolarIrradiation; diff --git a/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/RelativeAirMass.mo b/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/RelativeAirMass.mo index be03afcf61..afe4185ba9 100644 --- a/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/RelativeAirMass.mo +++ b/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/RelativeAirMass.mo @@ -1,11 +1,17 @@ within AixLib.BoundaryConditions.SolarIrradiation.BaseClasses; block RelativeAirMass "Relative air mass" extends Modelica.Blocks.Icons.Block; + Modelica.Blocks.Interfaces.RealInput alt( + quantity="Length", + unit="m") "location altitude" annotation (Placement(transformation(extent={{-140,40}, + {-100,80}}), + iconTransformation(extent={{-140,40},{-100,80}}))); Modelica.Blocks.Interfaces.RealInput zen( quantity="Angle", unit="rad", displayUnit="deg") "Zenith angle of the sun beam" - annotation (Placement(transformation(extent={{-140,-20},{-100,20}}))); + annotation (Placement(transformation(extent={{-140,-80},{-100,-40}}), + iconTransformation(extent={{-140,-80},{-100,-40}}))); Modelica.Blocks.Interfaces.RealOutput relAirMas "Relative air mass" annotation (Placement(transformation(extent={{100,-10},{120,10}}))); protected @@ -17,34 +23,49 @@ equation Modelica.Constants.pi/2, 0.01); zenDeg = zenLim*180/Modelica.Constants.pi; - relAirMas = 1/(Modelica.Math.cos(zenLim) + 0.15*(93.9 - zenDeg)^(-1.253)); + relAirMas = exp(-0.0001184*alt)/(Modelica.Math.cos(zenLim) + 0.15*(93.9 - zenDeg)^(-1.253)); annotation ( defaultComponentName="relAirMas", Documentation(info=" -

    -This component computes the relative air mass for sky brightness. -

    -

    References

    -R. Perez (1999). -Fortran Function irrpz.f, -Emailed by R. Perez to F.C. Winkelmann on May 21, 1999.
    -", revisions=" -
      -
    • -April 27, 2018, by Michael Wetter:
      -Corrected displayUnit.
      -This is for -AixLib, issue 912. -
    • -
    • -July 07, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -"), +

    + This component computes the relative air mass for sky brightness. +

    +

    References

    +

    + R. Perez (1999). + Fortran Function irrpz.f, + Emailed by R. Perez to F.C. Winkelmann on May 21, 1999. +

    + ",revisions=" +
      +
    • + September 6, 2021, by Ettore Zanetti:
      + Changed lat from being a parameter to an input from weather bus.
      + This is for + IBPSA, #1477. +
    • +
    • + May 2, 2021, by Ettore Zanetti: + Introduced altitude attenuation for relative air mass calculation. + This is for + IBPSA, issue 1477. +
    • +
    • + April 27, 2018, by Michael Wetter:
      + Corrected displayUnit.
      + This is for + IBPSA, issue 912. +
    • +
    • + July 07, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), Icon(coordinateSystem(preserveAspectRatio=true, extent={{-100,-100},{100, 100}}), graphics={Text( extent={{-150,110},{150,150}}, textString="%name", - lineColor={0,0,255})})); + textColor={0,0,255})}), + __Dymola_LockedEditing="Model from IBPSA"); end RelativeAirMass; diff --git a/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/SkyBrightness.mo b/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/SkyBrightness.mo index 5151357618..208476117a 100644 --- a/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/SkyBrightness.mo +++ b/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/SkyBrightness.mo @@ -2,48 +2,71 @@ within AixLib.BoundaryConditions.SolarIrradiation.BaseClasses; block SkyBrightness "Sky brightness" extends Modelica.Blocks.Icons.Block; Modelica.Blocks.Interfaces.RealInput relAirMas "Relative air mass" - annotation (Placement(transformation(extent={{-140,20},{-100,60}}))); + annotation (Placement(transformation(extent={{-140,40},{-100,80}}), + iconTransformation(extent={{-140,40},{-100,80}}))); Modelica.Blocks.Interfaces.RealInput HDifHor(quantity= "RadiantEnergyFluenceRate", unit="W/m2") "Horizontal diffuse solar radiation" - annotation (Placement(transformation(extent={{-140,-60},{-100,-20}}))); + annotation (Placement(transformation(extent={{-140,-20},{-100,20}}), + iconTransformation(extent={{-140,-20},{-100,20}}))); + Modelica.Blocks.Interfaces.RealInput solTim(quantity="Time", unit="s") + "Solar time" + annotation (Placement(transformation(extent={{-140,-80},{-100,-40}}), + iconTransformation(extent={{-140,-80},{-100,-40}}))); Modelica.Blocks.Interfaces.RealOutput skyBri "Sky brightness" annotation (Placement(transformation(extent={{100,-10},{120,10}}))); + + Real extRadCor "Correction for extraterrestrial radiation"; equation + extRadCor =1 + 0.033*cos(2*Modelica.Constants.pi*(solTim/86400 + 1)/365); skyBri = AixLib.Utilities.Math.Functions.smoothMin( - HDifHor*relAirMas/1367, + HDifHor*relAirMas/(1366.1*extRadCor), 1, 0.025); annotation ( defaultComponentName="skyBri", Documentation(info=" -

    -This component computes the sky brightness. -

    -

    References

    -R. Perez, P. Ineichen, R. Seals, J. Michalsky and R. Stewart (1990). -Modeling Dyalight Availability and Irradiance Componets From Direct and Global Irradiance, -Solar Energy, 44(5):271-289. -", revisions=" -
      -
    • -July 07, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -"), +

    + This component computes the sky brightness. +

    +

    References

    +

    + R. Perez, P. Ineichen, R. Seals, J. Michalsky and R. Stewart (1990). + Modeling Dyalight Availability and Irradiance Componets From Direct and Global Irradiance, + Solar Energy, 44(5):271-289. +

    + ",revisions=" +
      +
    • + September 6, 2021, by Ettore Zanetti:
      + Changed lat from being a parameter to an input from weather bus.
      + Added input connector solTim.
      + This is for + IBPSA, #1477. +
    • +
    • + July 07, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), Icon(coordinateSystem(preserveAspectRatio=true, extent={{-100,-100},{100, 100}}), graphics={ Text( extent={{-150,110},{150,150}}, textString="%name", - lineColor={0,0,255}), + textColor={0,0,255}), Text( - extent={{-44,36},{-96,48}}, - lineColor={0,0,127}, + extent={{-46,54},{-98,66}}, + textColor={0,0,127}, textString="relAirMas"), Text( - extent={{-44,-46},{-96,-34}}, - lineColor={0,0,127}, - textString="HDifHor")})); + extent={{-46,-6},{-98,6}}, + textColor={0,0,127}, + textString="HDifHor"), + Text( + extent={{-46,-66},{-98,-54}}, + textColor={0,0,127}, + textString="solTim")}), + __Dymola_LockedEditing="Model from IBPSA"); end SkyBrightness; diff --git a/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/SkyClearness.mo b/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/SkyClearness.mo index a213a0a081..acc2e6b297 100644 --- a/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/SkyClearness.mo +++ b/AixLib/BoundaryConditions/SolarIrradiation/BaseClasses/SkyClearness.mo @@ -11,7 +11,7 @@ block SkyClearness "Sky clearness" "RadiantEnergyFluenceRate", unit="W/m2") "Horizontal diffuse solar radiation" annotation (Placement(transformation(extent={{-140,-20},{-100,20}}))); - Modelica.Blocks.Interfaces.RealInput HGloHor(quantity= + Modelica.Blocks.Interfaces.RealInput HDirNor(quantity= "RadiantEnergyFluenceRate", unit="W/m2") "Horizontal global solar radiation" annotation (Placement(transformation(extent={{-140,40},{-100,80}}))); @@ -20,13 +20,13 @@ block SkyClearness "Sky clearness" annotation (Placement(transformation(extent={{100,-10},{120,10}}))); // Set hSmall so that hSmall + deltaX < 1E-4. See info section. protected - constant Modelica.SIunits.Irradiance hSmall = 0.5e-4 + constant Modelica.Units.SI.Irradiance hSmall=0.5e-4 "Small radiation for regularization"; - constant Modelica.SIunits.Irradiance deltaX = hSmall/2 + constant Modelica.Units.SI.Irradiance deltaX=hSmall/2 "Small radiation for regularization"; constant Real k = 5.534e-6*(180/Modelica.Constants.pi)^3 "Constant factor"; Real tmp1 "Intermediate variable"; - Modelica.SIunits.Irradiance HDifHorBou + Modelica.Units.SI.Irradiance HDifHorBou "Diffuse horizontal irradiation, bounded away from zero"; equation tmp1 = k*zen^3; @@ -34,12 +34,12 @@ equation x1 = HDifHor, x2 = hSmall, deltaX = deltaX); - // In the Buildings library, HGloHor is always larger than 1E-4 + // In the Buildings library, HDirNor is always larger than 1E-4 // (minus some small undershoot due to regularization. Hence, // it makes no sense to simplify the equation for - // HGloHor < Modelica.Constants.small. + // HDirNor < Modelica.Constants.small. skyCle = AixLib.Utilities.Math.Functions.smoothLimit( - x = (HGloHor/HDifHorBou + tmp1)/(1 + tmp1), + x = ((HDirNor+HDifHorBou)/HDifHorBou + tmp1)/(1 + tmp1), l = 1, u = 8, deltaX = 0.01); @@ -47,62 +47,76 @@ equation annotation ( defaultComponentName="skyCle", Documentation(info=" -

    -This component computes the sky clearness. -

    -

    Implementation

    -

    -In the AixLib library, HGloHor -is always larger than 1E-4, -minus some small undershoot due to regularization. Hence, -the implementation is not simplified for -HGloHor < Modelica.Constants.small. -

    -

    -The function call -AixLib.Utilities.Math.Functions.smoothMax -is such that the regularization is usually not triggered. -

    -", revisions=" -
      -
    • -September 23, 2016, by Michael Wetter:
      -Changed deltaX from 0.1 to 0.01, -and also optimized the code.
      -This is for -issue 521. -
    • -
    • -May 5, 2015, by Michael Wetter:
      -Introduced constant k to reduce number of operations. -
    • -
    • -May 5, 2015, by Filip Jorissen:
      -Converted algorithm section into -equation section for easier differentiability. -
    • -
    • -July 07, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -"), +

    + This component computes the sky clearness. +

    +

    Implementation

    +

    + In the AixLib library, HGloHor + is always larger than 1E-4, + minus some small undershoot due to regularization. Hence, + the implementation is not simplified for + HGloHor < Modelica.Constants.small. +

    +

    + The function call + AixLib.Utilities.Math.Functions.smoothMax + is such that the regularization is usually not triggered. +

    + ",revisions=" +
      +
    • + September 6, 2021, by Ettore Zanetti:
      + Changed lat from being a parameter to an input from weather bus.
      + Changed input connector HGloHor to HDirHor.
      + This is for + IBPSA, #1477. +
    • +
    • + May 2, 2021, by Ettore Zanetti:
      + Corrected expression for sky clearness.
      + This is for + issue 1477. +
    • +
    • + September 23, 2016, by Michael Wetter:
      + Changed deltaX from 0.1 to 0.01, + and also optimized the code.
      + This is for + issue 521. +
    • +
    • + May 5, 2015, by Michael Wetter:
      + Introduced constant k to reduce number of operations. +
    • +
    • + May 5, 2015, by Filip Jorissen:
      + Converted algorithm section into + equation section for easier differentiability. +
    • +
    • + July 07, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), Icon(coordinateSystem(preserveAspectRatio=true, extent={{-100,-100},{100, 100}}), graphics={ Text( extent={{-150,110},{150,150}}, textString="%name", - lineColor={0,0,255}), + textColor={0,0,255}), Text( extent={{-48,-6},{-100,6}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="HDifHor"), Text( extent={{-48,54},{-100,66}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="HGloHor"), Text( extent={{-48,-66},{-100,-54}}, - lineColor={0,0,127}, - textString="zen")})); + textColor={0,0,127}, + textString="zen")}), + __Dymola_LockedEditing="Model from IBPSA"); end SkyClearness; diff --git a/AixLib/BoundaryConditions/SolarIrradiation/DiffuseIsotropic.mo b/AixLib/BoundaryConditions/SolarIrradiation/DiffuseIsotropic.mo index 5f9adff9b8..4f57ce29a6 100644 --- a/AixLib/BoundaryConditions/SolarIrradiation/DiffuseIsotropic.mo +++ b/AixLib/BoundaryConditions/SolarIrradiation/DiffuseIsotropic.mo @@ -59,39 +59,40 @@ equation annotation ( defaultComponentName="HDifTilIso", Documentation(info=" -

    -This component computes the hemispherical diffuse irradiation -on a tilted surface using an isotropic model. -The irradiation is a sum composed of diffuse solar irradiation and -radiation reflected by the ground. -For a definition of the parameters, see the -User's Guide. -

    -

    References

    -P. Ineichen, R. Perez and R. Seals (1987). -The Importance of Correct Albedo Determination for Adequately Modeling -Energy Received by Tilted Surface, -Solar Energy, 39(4): 301-305. -", revisions=" -
      -
    • -November 14, 2015, by Michael Wetter:
      -Added min, max and unit -attributes for rho. -
    • -
    • -June 6, 2012, by Wangda Zuo:
      -Added contributions from sky and ground that were separated in base class. -
    • -
    • -May 24, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -"), +

    + This component computes the hemispherical diffuse irradiation + on a tilted surface using an isotropic model. + The irradiation is a sum composed of diffuse solar irradiation and + radiation reflected by the ground. + For a definition of the parameters, see the + User's Guide. +

    +

    References

    + P. Ineichen, R. Perez and R. Seals (1987). + The Importance of Correct Albedo Determination for Adequately Modeling + Energy Received by Tilted Surface, + Solar Energy, 39(4): 301-305. + ",revisions=" +
      +
    • + November 14, 2015, by Michael Wetter:
      + Added min, max and unit + attributes for rho. +
    • +
    • + June 6, 2012, by Wangda Zuo:
      + Added contributions from sky and ground that were separated in base class. +
    • +
    • + May 24, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), Icon(coordinateSystem(preserveAspectRatio=true, extent={{-100,-100},{100, 100}}), graphics={Text( extent={{-150,110},{150,150}}, textString="%name", - lineColor={0,0,255})})); + textColor={0,0,255})}), + __Dymola_LockedEditing="Model from IBPSA"); end DiffuseIsotropic; diff --git a/AixLib/BoundaryConditions/SolarIrradiation/DiffusePerez.mo b/AixLib/BoundaryConditions/SolarIrradiation/DiffusePerez.mo index 6fcde9172a..6eecae1a48 100644 --- a/AixLib/BoundaryConditions/SolarIrradiation/DiffusePerez.mo +++ b/AixLib/BoundaryConditions/SolarIrradiation/DiffusePerez.mo @@ -5,15 +5,12 @@ block DiffusePerez AixLib.BoundaryConditions.SolarIrradiation.BaseClasses.PartialSolarIrradiation; parameter Real rho(min=0, max=1, final unit="1")=0.2 "Ground reflectance"; - parameter Modelica.SIunits.Angle lat "Latitude"; - parameter Modelica.SIunits.Angle azi "Surface azimuth"; + parameter Modelica.Units.SI.Angle azi "Surface azimuth"; parameter Boolean outSkyCon=false "Output contribution of diffuse irradiation from sky"; parameter Boolean outGroCon=false "Output contribution of diffuse irradiation from ground"; - Modelica.Blocks.Math.Add add "Block to add radiations" - annotation (Placement(transformation(extent={{60,-10},{80,10}}))); Modelica.Blocks.Interfaces.RealOutput HSkyDifTil if outSkyCon "Hemispherical diffuse solar irradiation on a tilted surface from the sky" annotation (Placement(transformation(extent={{100,50},{120,70}}))); @@ -35,14 +32,14 @@ protected BaseClasses.SkyBrightness skyBri "Sky brightness" annotation (Placement(transformation(extent={{-60,-54},{-52,-46}}))); SolarGeometry.IncidenceAngle incAng( - final lat=lat, final azi=azi, final til=til) "Incidence angle" annotation (Placement(transformation(extent={{-86,-96},{-76,-86}}))); - + Modelica.Blocks.Math.Add add "Block to add radiations" + annotation (Placement(transformation(extent={{60,-10},{80,10}}))); equation connect(relAirMas.relAirMas, skyBri.relAirMas) annotation (Line( - points={{-71.6,-40},{-66,-40},{-66,-48.4},{-60.8,-48.4}}, + points={{-71.6,-40},{-66,-40},{-66,-47.6},{-60.8,-47.6}}, color={0,0,127})); connect(skyBri.skyBri, briCoe.skyBri) annotation (Line( points={{-51.6,-50},{-46,-50},{-46,-30},{-40.8,-30}}, @@ -57,13 +54,13 @@ equation points={{-100,5.55112e-16},{-86,5.55112e-16},{-86,17.6},{-62.8,17.6}}, color={0,0,127})); connect(weaBus.solZen, relAirMas.zen) annotation (Line( - points={{-100,5.55112e-16},{-86,5.55112e-16},{-86,-40},{-80.8,-40}}, + points={{-100,5.55112e-16},{-86,5.55112e-16},{-86,-42.4},{-80.8,-42.4}}, color={0,0,127})); connect(weaBus.solZen, briCoe.zen) annotation (Line( points={{-100,5.55112e-16},{-86,5.55112e-16},{-86,-20},{-66,-20},{-66,-32}, {-40.8,-32},{-40.8,-32.4}}, color={0,0,127})); - connect(weaBus.HGloHor, skyCle.HGloHor) annotation (Line( + connect(weaBus.HDirNor, skyCle.HDirNor) annotation (Line( points={{-100,5.55112e-16},{-92,5.55112e-16},{-92,22.4},{-62.8,22.4}}, color={255,204,51}, thickness=0.5), Text( @@ -78,7 +75,7 @@ equation index=-1, extent={{-6,3},{-6,3}})); connect(weaBus.HDifHor, skyBri.HDifHor) annotation (Line( - points={{-100,5.55112e-16},{-92,5.55112e-16},{-92,-51.6},{-60.8,-51.6}}, + points={{-100,5.55112e-16},{-92,5.55112e-16},{-92,-50},{-60.8,-50}}, color={255,204,51}, thickness=0.5), Text( textString="%first", @@ -107,7 +104,7 @@ equation points={{-31.6,-28.4},{-28,-28.4},{-28,4.2},{-4.2,4.2}}, color={0,0,127})); connect(weaBus, incAng.weaBus) annotation (Line( - points={{-100,5.55112e-16},{-92,5.55112e-16},{-92,-90.8},{-86,-90.8}}, + points={{-100,5.55112e-16},{-92,5.55112e-16},{-92,-91},{-86,-91}}, color={255,204,51}, thickness=0.5), Text( textString="%first", @@ -138,57 +135,80 @@ equation connect(HDifTil.HGroDifTil, HGroDifTil) annotation (Line( points={{44.1,-8.4},{52,-8.4},{52,-60},{110,-60}}, color={0,0,127})); + connect(weaBus.solTim, skyBri.solTim) annotation (Line( + points={{-100,0},{-96,0},{-96,-52.4},{-60.8,-52.4}}, + color={255,204,51}, + thickness=0.5), Text( + string="%first", + index=-1, + extent={{-6,3},{-6,3}}, + horizontalAlignment=TextAlignment.Right)); + connect(weaBus.alt, relAirMas.alt) annotation (Line( + points={{-100,0},{-84,0},{-84,-37.6},{-80.8,-37.6}}, + color={255,204,51}, + thickness=0.5), Text( + string="%first", + index=-1, + extent={{-6,3},{-6,3}}, + horizontalAlignment=TextAlignment.Right)); annotation ( defaultComponentName="HDifTil", Documentation(info=" -

    -This component computes the hemispherical diffuse irradiation on a tilted surface using an anisotropic -sky model proposed by Perez. -For a definition of the parameters, see the -User's Guide. -

    -

    References

    -
      -
    • -P. Ineichen, R. Perez and R. Seals (1987). -The Importance of Correct Albedo Determination for Adequately Modeling Energy Received by Tilted Surface, -Solar Energy, 39(4): 301-305. -
    • -
    • -R. Perez, R. Seals, P. Ineichen, R. Stewart and D. Menicucci (1987). -A New Simplified Version of the Perez Diffuse Irradiance Model for Tilted Surface, -Solar Energy, 39(3): 221-231. -
    • -
    • -R. Perez, P. Ineichen, R. Seals, J. Michalsky and R. Stewart (1990). -Modeling Dyalight Availability and Irradiance Componets From Direct and Global Irradiance, -Solar Energy, 44(5):271-289. -
    • -
    -", revisions=" -
      -
    • -November 14, 2015, by Michael Wetter:
      -Added min, max and unit -attributes for rho. -
    • -
    • -June 6, 2012, by Wangda Zuo:
      -Added contributions from sky and ground that were separated in base class. -
    • -
    • -February 25, 2012, by Michael Wetter:
      -Changed component to get zenith angle from weather bus. -
    • -
    • -May 24, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -"), +

    + This component computes the hemispherical diffuse irradiation on a tilted surface using an anisotropic + sky model proposed by Perez. + For a definition of the parameters, see the + User's Guide. +

    +

    References

    +
      +
    • + P. Ineichen, R. Perez and R. Seals (1987). + The Importance of Correct Albedo Determination for Adequately Modeling Energy Received by Tilted Surface, + Solar Energy, 39(4): 301-305. +
    • +
    • + R. Perez, R. Seals, P. Ineichen, R. Stewart and D. Menicucci (1987). + A New Simplified Version of the Perez Diffuse Irradiance Model for Tilted Surface, + Solar Energy, 39(3): 221-231. +
    • +
    • + R. Perez, P. Ineichen, R. Seals, J. Michalsky and R. Stewart (1990). + Modeling Dyalight Availability and Irradiance Componets From Direct and Global Irradiance, + Solar Energy, 44(5):271-289. +
    • +
    + ",revisions=" +
      +
    • + September 6, 2021, by Ettore Zanetti:
      + Removed parameter lat as it is now obtained from the weather data bus.
      + This is for + IBPSA, #1477. +
    • +
    • + November 14, 2015, by Michael Wetter:
      + Added min, max and unit + attributes for rho. +
    • +
    • + June 6, 2012, by Wangda Zuo:
      + Added contributions from sky and ground that were separated in base class. +
    • +
    • + February 25, 2012, by Michael Wetter:
      + Changed component to get zenith angle from weather bus. +
    • +
    • + May 24, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), Icon(coordinateSystem(preserveAspectRatio=true, extent={{-100,-100},{100, 100}}), graphics={Text( extent={{-150,110},{150,150}}, textString="%name", - lineColor={0,0,255})})); + textColor={0,0,255})}), + __Dymola_LockedEditing="Model from IBPSA"); end DiffusePerez; diff --git a/AixLib/BoundaryConditions/SolarIrradiation/DirectTiltedSurface.mo b/AixLib/BoundaryConditions/SolarIrradiation/DirectTiltedSurface.mo index 68b12c8d1e..4ccef75467 100644 --- a/AixLib/BoundaryConditions/SolarIrradiation/DirectTiltedSurface.mo +++ b/AixLib/BoundaryConditions/SolarIrradiation/DirectTiltedSurface.mo @@ -3,8 +3,7 @@ block DirectTiltedSurface "Direct solar irradiation on a tilted surface" extends AixLib.BoundaryConditions.SolarIrradiation.BaseClasses.PartialSolarIrradiation; - parameter Modelica.SIunits.Angle lat "Latitude"; - parameter Modelica.SIunits.Angle azi "Surface azimuth"; + parameter Modelica.Units.SI.Angle azi "Surface azimuth"; Modelica.Blocks.Interfaces.RealOutput inc( final quantity="Angle", @@ -15,8 +14,7 @@ block DirectTiltedSurface "Direct solar irradiation on a tilted surface" protected SolarGeometry.IncidenceAngle incAng( final azi=azi, - final til=til, - final lat=lat) "Incidence angle" + final til=til) "Incidence angle" annotation (Placement(transformation(extent={{-50,-30},{-30,-10}}))); AixLib.BoundaryConditions.SolarIrradiation.BaseClasses.DirectTiltedSurface HDirTil "Direct irradition on tilted surface" @@ -52,33 +50,40 @@ equation annotation ( defaultComponentName="HDirTil", Documentation(info=" -

    -This component computes the direct solar irradiation on a tilted surface. -For a definition of the parameters, see the -User's Guide. -

    -", revisions=" -
      -
    • -April 21, 2016, by Michael Wetter:
      -Removed duplicate instance weaBus. -This is for - -https://github.com/ibpsa/modelica-ibpsa/issues/461. -
    • -
    • -December 12, 2010, by Michael Wetter:
      -Added incidence angle as output as this is needed for the room model. -
    • -
    • -May 24, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -"), +

    + This component computes the direct solar irradiation on a tilted surface. + For a definition of the parameters, see the + User's Guide. +

    + ",revisions=" +
      +
    • + September 6, 2021, by Ettore Zanetti:
      + Removed parameter lat as it is now obtained from the weather data bus.
      + This is for + IBPSA, #1477. +
    • +
    • + April 21, 2016, by Michael Wetter:
      + Removed duplicate instance weaBus. + This is for + + https://github.com/ibpsa/modelica-ibpsa/issues/461. +
    • +
    • + December 12, 2010, by Michael Wetter:
      + Added incidence angle as output as this is needed for the room model. +
    • +
    • + May 24, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), Icon(coordinateSystem(preserveAspectRatio=true, extent={{-100,-100},{100, 100}}), graphics={Text( extent={{-150,110},{150,150}}, textString="%name", - lineColor={0,0,255})})); + textColor={0,0,255})}), + __Dymola_LockedEditing="Model from IBPSA"); end DirectTiltedSurface; diff --git a/AixLib/BoundaryConditions/SolarIrradiation/Examples/DiffuseIsotropic.mo b/AixLib/BoundaryConditions/SolarIrradiation/Examples/DiffuseIsotropic.mo index 3b01261107..9e3a3479a2 100644 --- a/AixLib/BoundaryConditions/SolarIrradiation/Examples/DiffuseIsotropic.mo +++ b/AixLib/BoundaryConditions/SolarIrradiation/Examples/DiffuseIsotropic.mo @@ -57,21 +57,22 @@ equation extent={{6,3},{6,3}})); annotation ( Documentation(info=" -

    -This example computes the hemispherical diffuse irradiation -on a roof, wall and a floor, using an isotropic sky model. -Since the floor only sees the ground, -it receives the lowest amount of diffuse solar irradiation. -

    -", revisions=" -
      -
    • -May 24, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -"), +

    + This example computes the hemispherical diffuse irradiation + on a roof, wall and a floor, using an isotropic sky model. + Since the floor only sees the ground, + it receives the lowest amount of diffuse solar irradiation. +

    + ",revisions=" +
      +
    • + May 24, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), experiment(StartTime=1.82304e+07, Tolerance=1e-6, StopTime=1.83168e+07), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/BoundaryConditions/SolarIrradiation/Examples/DiffuseIsotropic.mos" - "Simulate and plot")); + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end DiffuseIsotropic; diff --git a/AixLib/BoundaryConditions/SolarIrradiation/Examples/DiffusePerez.mo b/AixLib/BoundaryConditions/SolarIrradiation/Examples/DiffusePerez.mo index d1af5c2d6f..bd71a4a49e 100644 --- a/AixLib/BoundaryConditions/SolarIrradiation/Examples/DiffusePerez.mo +++ b/AixLib/BoundaryConditions/SolarIrradiation/Examples/DiffusePerez.mo @@ -2,29 +2,30 @@ within AixLib.BoundaryConditions.SolarIrradiation.Examples; model DiffusePerez "Test model for diffuse solar irradiation on a tilted surface using the Perez model" extends Modelica.Icons.Example; - parameter Modelica.SIunits.Angle lat=37/180*Modelica.Constants.pi "Latitude"; - parameter Modelica.SIunits.Angle azi=0.3 "Azi angle"; - parameter Modelica.SIunits.Angle til=0.5 "Tilted angle"; + parameter Modelica.Units.SI.Angle azi=0.3 "Azi angle"; + parameter Modelica.Units.SI.Angle til=0.5 "Tilted angle"; AixLib.BoundaryConditions.WeatherData.ReaderTMY3 weaDat(filNam= Modelica.Utilities.Files.loadResource("modelica://AixLib/Resources/weatherdata/USA_CA_San.Francisco.Intl.AP.724940_TMY3.mos")) annotation (Placement(transformation(extent={{-40,0},{-20,20}}))); - AixLib.BoundaryConditions.WeatherData.Bus weaBus annotation (Placement( + AixLib.BoundaryConditions.WeatherData.Bus weaBus + "Weather data bus" + annotation (Placement( transformation(extent={{1,-1},{21,21}}), iconTransformation(extent={{20, 20},{21,21}}))); AixLib.BoundaryConditions.SolarIrradiation.DiffusePerez HDifRoo( til=AixLib.Types.Tilt.Ceiling, - lat=0.6457718232379, - azi=0.78539816339745) "Diffuse irradiation on roof" + azi=0.78539816339745) + "Diffuse irradiation on roof" annotation (Placement(transformation(extent={{40,0},{60,20}}))); AixLib.BoundaryConditions.SolarIrradiation.DiffusePerez HDifFlo( til=AixLib.Types.Tilt.Floor, - lat=0.6457718232379, - azi=0.78539816339745) "Diffuse irradiation on floor" + azi=0.78539816339745) + "Diffuse irradiation on floor" annotation (Placement(transformation(extent={{40,-80},{60,-60}}))); AixLib.BoundaryConditions.SolarIrradiation.DiffusePerez HDifWal( til=AixLib.Types.Tilt.Wall, - lat=0.6457718232379, - azi=0.78539816339745) "Diffuse irradiation on wall" + azi=0.78539816339745) + "Diffuse irradiation on wall" annotation (Placement(transformation(extent={{40,-40},{60,-20}}))); equation connect(weaDat.weaBus, weaBus) annotation (Line( @@ -61,21 +62,22 @@ experiment(StartTime=1.82304e+07, Tolerance=1e-6, StopTime=1.83168e+07), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/BoundaryConditions/SolarIrradiation/Examples/DiffusePerez.mos" "Simulate and plot"), Documentation(info=" -

    -This model tests the implementation of Perez' model for diffuse solar radiation. -The three instances of Perez' model compute the diffuse solar -irradiation on a roof, a wall and a floor. -Since the floor only sees the ground but not the radiative heat flow that is -scattered in the atmosphere, it receives the lowest amount of -diffuse solar irradiation. -

    -", +

    + This model tests the implementation of Perez' model for diffuse solar radiation. + The three instances of Perez' model compute the diffuse solar + irradiation on a roof, a wall and a floor. + Since the floor only sees the ground but not the radiative heat flow that is + scattered in the atmosphere, it receives the lowest amount of + diffuse solar irradiation. +

    + ", revisions=" -
      -
    • -May 24, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -")); +
      +
    • + May 24, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), + __Dymola_LockedEditing="Model from IBPSA"); end DiffusePerez; diff --git a/AixLib/BoundaryConditions/SolarIrradiation/Examples/DirectTiltedSurface.mo b/AixLib/BoundaryConditions/SolarIrradiation/Examples/DirectTiltedSurface.mo index f03d91defd..961e820e53 100644 --- a/AixLib/BoundaryConditions/SolarIrradiation/Examples/DirectTiltedSurface.mo +++ b/AixLib/BoundaryConditions/SolarIrradiation/Examples/DirectTiltedSurface.mo @@ -2,24 +2,24 @@ within AixLib.BoundaryConditions.SolarIrradiation.Examples; model DirectTiltedSurface "Test model for direct solar irradiation on a tilted surface" extends Modelica.Icons.Example; - parameter Modelica.SIunits.Angle lat=37/180*Modelica.Constants.pi "Latitude"; + AixLib.BoundaryConditions.WeatherData.ReaderTMY3 weaDat(filNam= Modelica.Utilities.Files.loadResource("modelica://AixLib/Resources/weatherdata/USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.mos")) annotation (Placement(transformation(extent={{-60,20},{-40,40}}))); AixLib.BoundaryConditions.SolarIrradiation.DirectTiltedSurface HDirRoo( til=AixLib.Types.Tilt.Ceiling, - lat=0.6457718232379, - azi=0.78539816339745) "Direct irradiation on roof" + azi=0.78539816339745) + "Direct irradiation on roof" annotation (Placement(transformation(extent={{20,20},{40,40}}))); AixLib.BoundaryConditions.SolarIrradiation.DirectTiltedSurface HDirFlo( til=AixLib.Types.Tilt.Floor, - lat=0.6457718232379, - azi=0.78539816339745) "Direct irradiation on floor" + azi=0.78539816339745) + "Direct irradiation on floor" annotation (Placement(transformation(extent={{20,-60},{40,-40}}))); AixLib.BoundaryConditions.SolarIrradiation.DirectTiltedSurface HDirWal( til=AixLib.Types.Tilt.Wall, - lat=0.6457718232379, - azi=0.78539816339745) "Direct irradiation on wall" + azi=0.78539816339745) + "Direct irradiation on wall" annotation (Placement(transformation(extent={{20,-20},{40,0}}))); AixLib.Utilities.Diagnostics.AssertEquality assEqu "Assert to ensure that direct radiation received by floor construction is zero" @@ -50,18 +50,19 @@ experiment(StartTime=1.82304e+07, Tolerance=1e-6, StopTime=1.83168e+07), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/BoundaryConditions/SolarIrradiation/Examples/DirectTiltedSurface.mos" "Simulate and plot"), Documentation(info=" -

    -This model tests the direct solar irradiation received on a ceiling, a wall and a floor. -The assert statement will stop the simulation if the floor receives -any direct solar irradiation. -

    -", +

    + This model tests the direct solar irradiation received on a ceiling, a wall and a floor. + The assert statement will stop the simulation if the floor receives + any direct solar irradiation. +

    + ", revisions=" -
      -
    • -May 24, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -")); +
      +
    • + May 24, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), + __Dymola_LockedEditing="Model from IBPSA"); end DirectTiltedSurface; diff --git a/AixLib/BoundaryConditions/Types.mo b/AixLib/BoundaryConditions/Types.mo index ea9e7e76a4..4170ad2d46 100644 --- a/AixLib/BoundaryConditions/Types.mo +++ b/AixLib/BoundaryConditions/Types.mo @@ -6,18 +6,17 @@ package Types "Package with type definitions" Parameter "Use parameter", Input "Use input connector") "Enumeration to define data source" annotation(Documentation(info=" -

    -Enumeration to define the data source used in the weather data reader. -

    -", revisions= -" -
      -
    • -July 20, 2011, by Michael Wetter:
      -First implementation. -
    • -
    -")); +

    + Enumeration to define the data source used in the weather data reader. +

    + ",revisions=" +
      +
    • + July 20, 2011, by Michael Wetter:
      + First implementation. +
    • +
    + ")); type RadiationDataSource = enumeration( File "Use data from file", @@ -29,39 +28,38 @@ First implementation. "Direct normal and global horizontal radiation from connector") "Enumeration to define solar radiation data source" annotation(Documentation(info=" -

    -Enumeration to define the data source used in the weather data reader. -

    -", revisions= -" -
      -
    • -August 13, 2012, by Wangda Zuo:
      -First implementation. -
    • -
    -")); +

    + Enumeration to define the data source used in the weather data reader. +

    + ",revisions=" +
      +
    • + August 13, 2012, by Wangda Zuo:
      + First implementation. +
    • +
    + ")); type SkyTemperatureCalculation = enumeration( HorizontalRadiation "Use horizontal irradiation", TemperaturesAndSkyCover "Use dry-bulb and dew-point temperatures and sky cover") - "Enumeration for computation of sky temperature" -annotation (Documentation(info=" -

    -Enumeration to define the method used to compute the sky temperature. -

    -", revisions= -" -
      -
    • -October 3, 2011, by Michael Wetter:
      -First implementation. -
    • -
    -")); + "Enumeration for computation of sky temperature" annotation (Documentation( + info = " +

    + Enumeration to define the method used to compute the sky temperature. +

    + ",revisions=" +
      +
    • + October 3, 2011, by Michael Wetter:
      + First implementation. +
    • +
    + ")); annotation (preferredView="info", Documentation(info=" -This package contains type definitions. -")); + This package contains type definitions. + "), + __Dymola_LockedEditing="Model from IBPSA"); end Types; diff --git a/AixLib/BoundaryConditions/Validation/BESTEST/WD100.mo b/AixLib/BoundaryConditions/Validation/BESTEST/WD100.mo index b25e5d5753..88badfa6d1 100644 --- a/AixLib/BoundaryConditions/Validation/BESTEST/WD100.mo +++ b/AixLib/BoundaryConditions/Validation/BESTEST/WD100.mo @@ -1,19 +1,14 @@ -within AixLib.BoundaryConditions.Validation.BESTEST; +within AixLib.BoundaryConditions.Validation.BESTEST; model WD100 "Test model for BESTEST weather data: base case" extends Modelica.Icons.Example; - parameter Modelica.SIunits.Angle lat=0.6952170009469 - "Latitude angle"; + parameter Real rho=0 "Ground reflectance"; - parameter Modelica.SIunits.Length alt=1650 - "Altitude"; WeatherData.ReaderTMY3 weaDatHHorIR( pAtmSou=AixLib.BoundaryConditions.Types.DataSource.File, - ceiHeiSou=AixLib.BoundaryConditions.Types.DataSource.Parameter, - ceiHei=alt, filNam=Modelica.Utilities.Files.loadResource( - "modelica://AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/725650.mos"), + "modelica://AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD100.mos"), calTSky=AixLib.BoundaryConditions.Types.SkyTemperatureCalculation.HorizontalRadiation) "Reads all weather data and Tsky using horizontal radiation" annotation (Placement(transformation(extent={{-10,-10},{10,10}},rotation=90,origin={0,-90}))); @@ -22,70 +17,60 @@ model WD100 annotation (Placement(transformation(extent={{-14,-82},{16,-54}}),iconTransformation(extent={{-220,70},{-200,90}}))); IsotropicAndPerezDiffuseRadiation azi000til00( til=AixLib.Types.Tilt.Ceiling, - lat=lat, azi=AixLib.Types.Azimuth.S, rho=rho) "Azimuth = Horizontal, Tilt = 0 °" annotation (Placement(transformation(extent={{60,70},{80,90}}))); IsotropicAndPerezDiffuseRadiation azi000til90( til=AixLib.Types.Tilt.Wall, - lat=lat, azi=AixLib.Types.Azimuth.S, rho=rho) "Azimuth = South, Tilt = 90 °" annotation (Placement(transformation(extent={{60,40},{80,60}}))); IsotropicAndPerezDiffuseRadiation azi270til90( til=AixLib.Types.Tilt.Wall, - lat=lat, azi=AixLib.Types.Azimuth.E, rho=rho) "Azimuth = East, Tilt = 90 °" annotation (Placement(transformation(extent={{60,10},{80,30}}))); IsotropicAndPerezDiffuseRadiation azi180til90( til=AixLib.Types.Tilt.Wall, - lat=lat, azi=AixLib.Types.Azimuth.N, rho=rho) "Azimuth = North, Tilt = 90 °" annotation (Placement(transformation(extent={{60,-20},{80,0}}))); IsotropicAndPerezDiffuseRadiation azi090til90( til=AixLib.Types.Tilt.Wall, - lat=lat, azi=AixLib.Types.Azimuth.W, rho=rho) "Azimuth = West, Tilt = 90 °" annotation (Placement(transformation(extent={{60,-50},{80,-30}}))); IsotropicAndPerezDiffuseRadiation azi315til90( til=AixLib.Types.Tilt.Wall, - lat=lat, azi=AixLib.Types.Azimuth.SE, rho=rho) "Azimuth = 45 ° SE, Tilt = 0 °" annotation (Placement(transformation(extent={{-60,70},{-80,90}}))); IsotropicAndPerezDiffuseRadiation azi045til90( til=AixLib.Types.Tilt.Wall, - lat=lat, azi=AixLib.Types.Azimuth.SW, rho=rho) "Azimuth = 45 SW, Tilt = 90 °" annotation (Placement(transformation(extent={{-60,40},{-80,60}}))); IsotropicAndPerezDiffuseRadiation azi270til30( til=0.5235987755983, - lat=lat, azi=AixLib.Types.Azimuth.E, rho=rho) "Azimuth = East, Tilt = 30 °" annotation (Placement(transformation(extent={{-60,10},{-80,30}}))); IsotropicAndPerezDiffuseRadiation azi000til30( til=0.5235987755983, - lat=lat, azi=AixLib.Types.Azimuth.S, rho=rho) "Azimuth = South, Tilt = 0 °" annotation (Placement(transformation(extent={{-60,-20},{-80,0}}))); IsotropicAndPerezDiffuseRadiation azi090til30( til=0.5235987755983, - lat=lat, azi=AixLib.Types.Azimuth.W, rho=rho) "Azimuth = West, Tilt = 0 °" @@ -96,10 +81,8 @@ model WD100 annotation (Placement(transformation(extent={{-72,-80},{-92,-60}}))); WeatherData.ReaderTMY3 weaDatTDryBulTDewPoinOpa( pAtmSou=AixLib.BoundaryConditions.Types.DataSource.File, - ceiHeiSou=AixLib.BoundaryConditions.Types.DataSource.Parameter, - ceiHei=alt, filNam=Modelica.Utilities.Files.loadResource( - "modelica://AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/725650.mos"), + "modelica://AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD100.mos"), calTSky=AixLib.BoundaryConditions.Types.SkyTemperatureCalculation.TemperaturesAndSkyCover) "Reads all weather data and Tsky using dry bulb temperature, dew point temperature and sky cover" annotation (Placement(transformation(extent={{-10,-10},{10,10}},rotation=90,origin={70,-90}))); @@ -149,45 +132,62 @@ equation file="modelica://AixLib/Resources/Scripts/Dymola/BoundaryConditions/Validation/BESTEST/WD100.mos" "Simulate and plot"), Documentation( info=" -

    WD100: Base Case

    -

    Weather data file : 725650.epw

    -

    Table 1: Site Data for Weather file 725650.epw

    - - - - - - - - - - - - - - - - -

    Latitude

    39.833° north

    Longitude

    104.65° west

    Altitude

    1650 m

    Time Zone

    7

    -

    This model is a template for all the other test cases. -It allows to extrapolate all the weather data from the Reader TMY3 for a specific location, incliation and azimuth. -The model -AixLib.BoundaryConditions.Validation.IsotropicAndPerezDiffuseRadiation -outputs radiation data using the available Isotropic and Perez methodlogies. -The sky temperature is calculated using both the Horizontal radiation model, -from data reader weaBusHorRad and the dew point temperature plus sky cover model from the datareader weaBusSkyCovDewTem.

    -", +

    WD100: Base Case

    +

    Weather data file : WD100.epw

    +

    Table 1: Site Data for Weather file WD100.epw

    + + + + + + + + + + + + + + + + +

    Latitude

    39.833° north

    Longitude

    104.65° west

    Altitude

    1650 m

    Time Zone

    -7

    +

    This model is a template for all the other test cases. + It allows to extrapolate all the weather data from the Reader TMY3 for a specific location, incliation and azimuth. + The model + AixLib.BoundaryConditions.Validation.IsotropicAndPerezDiffuseRadiation + outputs radiation data using the available Isotropic and Perez methodlogies. + The sky temperature is calculated using both the Horizontal radiation model, + from data reader weaBusHorRad and the dew point temperature plus sky cover model from the datareader weaBusSkyCovDewTem.

    + ", revisions=" -
      -
    • -March 11, 2020, by Ettore Zanetti:
      -First implementation. -
    • -
    • -April 14, 2020, by Ettore Zanetti:
      -Rework after comments from pull request -#1339. -
    • -
    -")); +
      +
    • + September 6, 2021, by Ettore Zanetti:
      + Removed parameter lat as it is now obtained from the weather data bus.
      + This is for + IBPSA, #1477. +
    • +
    • + March 11, 2020, by Ettore Zanetti:
      + First implementation. +
    • +
    • + April 14, 2020, by Ettore Zanetti:
      + Rework after comments from pull request + #1339. +
    • +
    • + May 2, 2021, by Ettore Zanetti:
      + Updated weather file as explained in #1478. +
    • +
    • + May 2, 2021, by Ettore Zanetti:
      + Added altitude to parameters.
      + This is for + IBPSA, #1477. +
    • +
    + "), + __Dymola_LockedEditing="Model from IBPSA"); end WD100; diff --git a/AixLib/BoundaryConditions/Validation/BESTEST/WD200.mo b/AixLib/BoundaryConditions/Validation/BESTEST/WD200.mo index 932a79d5ef..ed6f519f3b 100644 --- a/AixLib/BoundaryConditions/Validation/BESTEST/WD200.mo +++ b/AixLib/BoundaryConditions/Validation/BESTEST/WD200.mo @@ -2,15 +2,13 @@ within AixLib.BoundaryConditions.Validation.BESTEST; model WD200 "Test model for BESTEST weather data: Low Elevation, Hot and Humid Case" extends WD100( - lat=0.58700658732325, rho=0, - alt=308, weaDatHHorIR( filNam=Modelica.Utilities.Files.loadResource( - "modelica://AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/722190.mos")), + "modelica://AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD200.mos")), weaDatTDryBulTDewPoinOpa( filNam=Modelica.Utilities.Files.loadResource( - "modelica://AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/722190.mos"))); + "modelica://AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD200.mos"))); annotation ( experiment( StopTime=3.1536e+07, @@ -20,38 +18,49 @@ model WD200 file="modelica://AixLib/Resources/Scripts/Dymola/BoundaryConditions/Validation/BESTEST/WD200.mos" "Simulate and plot"), Documentation( revisions=" -
      -
    • -March 11, 2020, by Ettore Zanetti:
      -First implementation. -
    • -
    • -April 14, 2020, by Ettore Zanetti:
      -Rework after comments from pull request -#1339. -
    • -
    -", +
      +
    • + September 6, 2021, by Ettore Zanetti:
      + Removed parameter lat as it is now obtained from the weather data bus.
      + This is for + IBPSA, #1477. +
    • +
    • + March 11, 2020, by Ettore Zanetti:
      + First implementation. +
    • +
    • + April 14, 2020, by Ettore Zanetti:
      + Rework after comments from pull request + #1339. +
    • +
    • + May 2, 2021, by Ettore Zanetti:
      + Updated weather file as explained in #1478. +
    • +
    + ", info=" -

    WD200: Low Elevation, Hot and Humid Case.

    -

    Weather data file : 722190.epw

    -

    Table 1: Site Data for Weather file 722190.epw

    - - - - - - - - - - - - - - - - -

    Latitude

    33.633° north

    Longitude

    84.433° west

    Altitude

    308 m

    Time Zone

    5

    -")); +

    WD200: Low Elevation, Hot and Humid Case.

    +

    Weather data file : WD200.epw

    +

    Table 1: Site Data for Weather file WD200.epw

    + + + + + + + + + + + + + + + + +

    Latitude

    33.633° north

    Longitude

    84.433° west

    Altitude

    308 m

    Time Zone

    -5

    + "), + __Dymola_LockedEditing="Model from IBPSA"); end WD200; diff --git a/AixLib/BoundaryConditions/Validation/BESTEST/WD300.mo b/AixLib/BoundaryConditions/Validation/BESTEST/WD300.mo index 2954acee38..2ab80094f7 100644 --- a/AixLib/BoundaryConditions/Validation/BESTEST/WD300.mo +++ b/AixLib/BoundaryConditions/Validation/BESTEST/WD300.mo @@ -2,15 +2,13 @@ within AixLib.BoundaryConditions.Validation.BESTEST; model WD300 "Test model for BESTEST weather data: Southern hemisphere case" extends WD100( - lat=-0.58281779711847, rho=0, - alt=474, weaDatHHorIR( filNam=Modelica.Utilities.Files.loadResource( - "modelica://AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/855740.mos")), + "modelica://AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD300.mos")), weaDatTDryBulTDewPoinOpa( filNam=Modelica.Utilities.Files.loadResource( - "modelica://AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/855740.mos"))); + "modelica://AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD300.mos"))); annotation ( experiment( StopTime=3.1536e+07, @@ -20,38 +18,49 @@ model WD300 file="modelica://AixLib/Resources/Scripts/Dymola/BoundaryConditions/Validation/BESTEST/WD300.mos" "Simulate and plot"), Documentation( revisions=" -
      -
    • -March 11, 2020, by Ettore Zanetti:
      -First implementation. -
    • -
    • -April 14, 2020, by Ettore Zanetti:
      -Rework after comments from pull request -#1339. -
    • -
    -", +
      +
    • + September 6, 2021, by Ettore Zanetti:
      + Removed parameter lat as it is now obtained from the weather data bus.
      + This is for + IBPSA, #1477. +
    • +
    • + March 11, 2020, by Ettore Zanetti:
      + First implementation. +
    • +
    • + April 14, 2020, by Ettore Zanetti:
      + Rework after comments from pull request + #1339. +
    • +
    • + May 2, 2021, by Ettore Zanetti:
      + Updated weather file as explained in #1478. +
    • +
    + ", info=" -

    WD300: Southern Hemisphere Case

    -

    Weather data file : 855740.epw

    -

    Table 1: Site Data for Weather file 855740.epw

    - - - - - - - - - - - - - - - - -

    Latitude

    33.393° south

    Longitude

    70.786° west

    Altitude

    474 m

    Time Zone

    4

    -")); +

    WD300: Southern Hemisphere Case

    +

    Weather data file : WD300.epw

    +

    Table 1: Site Data for Weather file WD300.epw

    + + + + + + + + + + + + + + + + +

    Latitude

    33.393° south

    Longitude

    70.786° west

    Altitude

    474 m

    Time Zone

    -4

    + "), + __Dymola_LockedEditing="Model from IBPSA"); end WD300; diff --git a/AixLib/BoundaryConditions/Validation/BESTEST/WD400.mo b/AixLib/BoundaryConditions/Validation/BESTEST/WD400.mo index fa2f5dd24e..0a5287038b 100644 --- a/AixLib/BoundaryConditions/Validation/BESTEST/WD400.mo +++ b/AixLib/BoundaryConditions/Validation/BESTEST/WD400.mo @@ -2,15 +2,13 @@ within AixLib.BoundaryConditions.Validation.BESTEST; model WD400 "Test model for BESTEST weather data: high latitude case" extends WD100( - lat=1.2441754105767, rho=0, - alt=10, weaDatHHorIR( filNam=Modelica.Utilities.Files.loadResource( - "modelica://AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/700260.mos")), + "modelica://AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD400.mos")), weaDatTDryBulTDewPoinOpa( filNam=Modelica.Utilities.Files.loadResource( - "modelica://AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/700260.mos"))); + "modelica://AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD400.mos"))); annotation ( experiment( StopTime=3.1536e+07, @@ -20,38 +18,49 @@ model WD400 file="modelica://AixLib/Resources/Scripts/Dymola/BoundaryConditions/Validation/BESTEST/WD400.mos" "Simulate and plot"), Documentation( revisions=" -
      -
    • -March 11, 2020, by Ettore Zanetti:
      -First implementation. -
    • -
    • -April 14, 2020, by Ettore Zanetti:
      -Rework after comments from pull request -#1339. -
    • -
    -", +
      +
    • + September 6, 2021, by Ettore Zanetti:
      + Removed parameter lat as it is now obtained from the weather data bus.
      + This is for + IBPSA, #1477. +
    • +
    • + March 11, 2020, by Ettore Zanetti:
      + First implementation. +
    • +
    • + April 14, 2020, by Ettore Zanetti:
      + Rework after comments from pull request + #1339. +
    • +
    • + May 2, 2021, by Ettore Zanetti:
      + Updated weather file as explained in #1478. +
    • +
    + ", info=" -

    WD400: High Latitude Case

    -

    Weather data file : 700260.epw

    -

    Table 1: Site Data for Weather file 700260.epw

    - - - - - - - - - - - - - - - - -

    Latitude

    71.286° north

    Longitude

    156.767° west

    Altitude

    10 m

    Time Zone

    9

    -")); +

    WD400: High Latitude Case

    +

    Weather data file : WD400.epw

    +

    Table 1: Site Data for Weather file WD400.epw

    + + + + + + + + + + + + + + + + +

    Latitude

    71.286° north

    Longitude

    156.767° west

    Altitude

    10 m

    Time Zone

    -9

    + "), + __Dymola_LockedEditing="Model from IBPSA"); end WD400; diff --git a/AixLib/BoundaryConditions/Validation/BESTEST/WD500.mo b/AixLib/BoundaryConditions/Validation/BESTEST/WD500.mo index 0e3419e903..44e004763a 100644 --- a/AixLib/BoundaryConditions/Validation/BESTEST/WD500.mo +++ b/AixLib/BoundaryConditions/Validation/BESTEST/WD500.mo @@ -2,15 +2,13 @@ within AixLib.BoundaryConditions.Validation.BESTEST; model WD500 "Test model for BESTEST weather data: time zone case" extends WD100( - lat=0.49858820742, rho=0, - alt=236.8, weaDatHHorIR( filNam=Modelica.Utilities.Files.loadResource( - "modelica://AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/421810.mos")), + "modelica://AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD500.mos")), weaDatTDryBulTDewPoinOpa( filNam=Modelica.Utilities.Files.loadResource( - "modelica://AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/421810.mos"))); + "modelica://AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD500.mos"))); annotation ( experiment( StopTime=3.1536e+07, @@ -20,38 +18,49 @@ model WD500 file="modelica://AixLib/Resources/Scripts/Dymola/BoundaryConditions/Validation/BESTEST/WD500.mos" "Simulate and plot"), Documentation( revisions=" -
      -
    • -March 11, 2020, by Ettore Zanetti:
      -First implementation. -
    • -
    • -April 14, 2020, by Ettore Zanetti:
      -Rework after comments from pull request -#1339. -
    • -
    -", +
      +
    • + September 6, 2021, by Ettore Zanetti:
      + Removed parameter lat as it is now obtained from the weather data bus.
      + This is for + IBPSA, #1477. +
    • +
    • + March 11, 2020, by Ettore Zanetti:
      + First implementation. +
    • +
    • + April 14, 2020, by Ettore Zanetti:
      + Rework after comments from pull request + #1339. +
    • +
    • + May 2, 2021, by Ettore Zanetti:
      + Updated weather file as explained in #1478. +
    • +
    + ", info=" -

    WD500: Time Zone Case

    -

    Weather data file : 421810.epw

    -

    Table 1: Site Data for Weather file 421810epw

    - - - - - - - - - - - - - - - - -

    Latitude

    28.567° north

    Longitude

    77.103° west

    Altitude

    236.9 m

    Time Zone

    -5.5

    -")); +

    WD500: Time Zone Case

    +

    Weather data file : WD500.epw

    +

    Table 1: Site Data for Weather file WD500epw

    + + + + + + + + + + + + + + + + +

    Latitude

    28.567° north

    Longitude

    77.103° east

    Altitude

    236.9 m

    Time Zone

    5.5

    + "), + __Dymola_LockedEditing="Model from IBPSA"); end WD500; diff --git a/AixLib/BoundaryConditions/Validation/BESTEST/WD600.mo b/AixLib/BoundaryConditions/Validation/BESTEST/WD600.mo index 348efa5ab8..f23d969b82 100644 --- a/AixLib/BoundaryConditions/Validation/BESTEST/WD600.mo +++ b/AixLib/BoundaryConditions/Validation/BESTEST/WD600.mo @@ -2,9 +2,7 @@ within AixLib.BoundaryConditions.Validation.BESTEST; model WD600 "Test model for BESTEST weather data: ground reflectance" extends WD100( - lat=0.6952170009469, rho=0.2, - alt=1650, weaDatHHorIR( filNam=Modelica.Utilities.Files.loadResource( "modelica://AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD600.mos")), @@ -20,38 +18,45 @@ model WD600 file="modelica://AixLib/Resources/Scripts/Dymola/BoundaryConditions/Validation/BESTEST/WD600.mos" "Simulate and plot"), Documentation( revisions=" -
      -
    • -March 11, 2020, by Ettore Zanetti:
      -First implementation. -
    • -
    • -April 14, 2020, by Ettore Zanetti:
      -Rework after comments from pull request -#1339. -
    • -
    -", +
      +
    • + September 6, 2021, by Ettore Zanetti:
      + Removed parameter lat as it is now obtained from the weather data bus.
      + This is for + IBPSA, #1477. +
    • +
    • + March 11, 2020, by Ettore Zanetti:
      + First implementation. +
    • +
    • + April 14, 2020, by Ettore Zanetti:
      + Rework after comments from pull request + #1339. +
    • +
    + ", info=" -

    WD600: Ground Reflactance

    -

    Weather data file : WD600.epw

    -

    Table 1: Site Data for Weather file WD600.epw

    - - - - - - - - - - - - - - - - -

    Latitude

    39.833° north

    Longitude

    104.65° west

    Altitude

    1650 m

    Time Zone

    7

    -")); +

    WD600: Ground Reflactance

    +

    Weather data file : WD600.epw

    +

    Table 1: Site Data for Weather file WD600.epw

    + + + + + + + + + + + + + + + + +

    Latitude

    39.833° north

    Longitude

    104.65° west

    Altitude

    1650 m

    Time Zone

    -7

    + "), + __Dymola_LockedEditing="Model from IBPSA"); end WD600; diff --git a/AixLib/BoundaryConditions/Validation/BESTEST/package.mo b/AixLib/BoundaryConditions/Validation/BESTEST/package.mo index 9209faeb5d..dd36bea0db 100644 --- a/AixLib/BoundaryConditions/Validation/BESTEST/package.mo +++ b/AixLib/BoundaryConditions/Validation/BESTEST/package.mo @@ -1,7 +1,7 @@ within AixLib.BoundaryConditions.Validation; -package BESTEST - "Boundary conditions validation according to BESTEST specifications" +package BESTEST "Boundary conditions validation according to BESTEST specifications" extends Modelica.Icons.ExamplesPackage; + annotation ( Documentation( info=" diff --git a/AixLib/BoundaryConditions/Validation/IsotropicAndPerezDiffuseRadiation.mo b/AixLib/BoundaryConditions/Validation/IsotropicAndPerezDiffuseRadiation.mo index b6fe206961..b16d907a41 100644 --- a/AixLib/BoundaryConditions/Validation/IsotropicAndPerezDiffuseRadiation.mo +++ b/AixLib/BoundaryConditions/Validation/IsotropicAndPerezDiffuseRadiation.mo @@ -7,20 +7,12 @@ model IsotropicAndPerezDiffuseRadiation final unit="W/m2") "Radiation per unit area using Perez Model" annotation (Placement(transformation(extent={{100,-50},{120,-30}}))); - parameter Modelica.SIunits.Angle til( - displayUnit="deg") - "Surface tilt angle"; - parameter Modelica.SIunits.Angle lat( - displayUnit="deg") - "Latitude angle"; - parameter Modelica.SIunits.Angle azi( - displayUnit="deg") - "Azimuth angle"; + parameter Modelica.Units.SI.Angle til(displayUnit="deg") "Surface tilt angle"; + parameter Modelica.Units.SI.Angle azi(displayUnit="deg") "Azimuth angle"; parameter Real rho=0.2 "Ground reflectance"; SolarIrradiation.DirectTiltedSurface HDir( til=til, - lat=lat, azi=azi) "Direct Irradiation on tilted surface" annotation (Placement(transformation(extent={{-40,-10},{-20,10}}))); @@ -34,7 +26,6 @@ model IsotropicAndPerezDiffuseRadiation SolarIrradiation.DiffusePerez HDiffPer( til=til, rho=rho, - lat=lat, azi=azi, outSkyCon=true, outGroCon=true) @@ -77,28 +68,41 @@ equation preserveAspectRatio=false)), Documentation( revisions=" -
      -
    • -October 25, 2020, by Ettore Zanetti:
      -Updated comments for variable descriptions -#1351. -
    • -
    • -April 14, 2020, by Ettore Zanetti:
      -Rework after comments from pull request -#1339. -
    • -
    • -March 11, 2020, by Ettore Zanetti:
      -First implementation. -
    • -
    -", +
      +
    • + September 6, 2021, by Ettore Zanetti:
      + Removed parameter lat as it is now obtained from the weather data bus.
      + This is for + IBPSA, #1477. +
    • +
    • + May 2, 2021, by Ettore Zanetti:
      + Added altitude to parameters.
      + This is for + IBPSA, #1477. +
    • +
    • + October 25, 2020, by Ettore Zanetti:
      + Updated comments for variable descriptions + #1351. +
    • +
    • + April 14, 2020, by Ettore Zanetti:
      + Rework after comments from pull request + #1339. +
    • +
    • + March 11, 2020, by Ettore Zanetti:
      + First implementation. +
    • +
    + ", info=" -

    -This model outputs the global radiation with a certain inclination and orientation -using the isotropic sky model and the Perez sky model. The variable H is -the global radiation calculated using the isotropic sky model, while HPer is -the global radiation calculated using the Perez sky model.

    -")); +

    + This model outputs the global radiation with a certain inclination and orientation + using the isotropic sky model and the Perez sky model. The variable H is + the global radiation calculated using the isotropic sky model, while HPer is + the global radiation calculated using the Perez sky model.

    + "), + __Dymola_LockedEditing="Model from IBPSA"); end IsotropicAndPerezDiffuseRadiation; diff --git a/AixLib/BoundaryConditions/Validation/package.mo b/AixLib/BoundaryConditions/Validation/package.mo index 5f4872ee63..6b935d4a08 100644 --- a/AixLib/BoundaryConditions/Validation/package.mo +++ b/AixLib/BoundaryConditions/Validation/package.mo @@ -1,7 +1,7 @@ within AixLib.BoundaryConditions; -package Validation - "Collection of validation models Validation" +package Validation "Collection of validation models Validation" extends Modelica.Icons.ExamplesPackage; + annotation ( Documentation( info=" diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/CheckBlackBodySkyTemperature.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/CheckBlackBodySkyTemperature.mo index cd40bb992e..d5b9ee9368 100644 --- a/AixLib/BoundaryConditions/WeatherData/BaseClasses/CheckBlackBodySkyTemperature.mo +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/CheckBlackBodySkyTemperature.mo @@ -3,9 +3,9 @@ block CheckBlackBodySkyTemperature "Check the validity of the black-body sky temperature data" extends Modelica.Blocks.Icons.Block; - parameter Modelica.SIunits.Temperature TMin(displayUnit="degC") = 203.15 + parameter Modelica.Units.SI.Temperature TMin(displayUnit="degC") = 203.15 "Minimum allowed temperature"; - parameter Modelica.SIunits.Temperature TMax(displayUnit="degC") = 343.15 + parameter Modelica.Units.SI.Temperature TMax(displayUnit="degC") = 343.15 "Maximum allowed temperature"; Modelica.Blocks.Interfaces.RealInput TIn( @@ -29,31 +29,31 @@ equation annotation ( defaultComponentName="cheSkyBlaBodTem", Documentation(info=" -

    -This component checks the value of the black-body sky temperature. -If the temperature is outside TMin and TMax, -the simulation will stop with an error. -

    -", revisions=" -
      -
    • -April 14, 2020, by Michael Wetter:
      -Added noEvent and removed output connector.
      -This is for #1340. -
    • -
    • -January 31, 2020 by Filip Jorissen:
      -Improved error message. -
    • -
    • -January 5, 2015 by Michael Wetter:
      -First implementation, based on - -AixLib.BoundaryConditions.WeatherData.BaseClasses.CheckTemperature. -This was implemented to get the corrected documentation string in the weather bus connector. -
    • -
    -"), +

    + This component checks the value of the black-body sky temperature. + If the temperature is outside TMin and TMax, + the simulation will stop with an error. +

    + ",revisions=" +
      +
    • + April 14, 2020, by Michael Wetter:
      + Added noEvent and removed output connector.
      + This is for #1340. +
    • +
    • + January 31, 2020 by Filip Jorissen:
      + Improved error message. +
    • +
    • + January 5, 2015 by Michael Wetter:
      + First implementation, based on + + AixLib.BoundaryConditions.WeatherData.BaseClasses.CheckTemperature. + This was implemented to get the corrected documentation string in the weather bus connector. +
    • +
    + "), Icon(coordinateSystem(preserveAspectRatio=true, extent={{-100,-100},{100, 100}}), graphics={ Ellipse( @@ -77,5 +77,6 @@ This was implemented to get the corrected documentation string in the weather bu lineThickness=0.5), Line( points={{-12,40},{-12,-45}}, - thickness=0.5)})); + thickness=0.5)}), + __Dymola_LockedEditing="Model from IBPSA"); end CheckBlackBodySkyTemperature; diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/CheckCeilingHeight.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/CheckCeilingHeight.mo index 261dc89339..3d4c51a948 100644 --- a/AixLib/BoundaryConditions/WeatherData/BaseClasses/CheckCeilingHeight.mo +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/CheckCeilingHeight.mo @@ -10,7 +10,8 @@ block CheckCeilingHeight final quantity="Height", final unit="m") "Ceiling height" annotation (Placement(transformation(extent={{100,-10},{120,10}}))); - constant Modelica.SIunits.Height ceiHeiMin=0 "Minimum allowed ceiling height"; + constant Modelica.Units.SI.Height ceiHeiMin=0 + "Minimum allowed ceiling height"; equation ceiHeiOut = AixLib.Utilities.Math.Functions.smoothMax( ceiHeiIn, diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/CheckDewPointTemperature.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/CheckDewPointTemperature.mo index bdf869ba92..8ea26e1019 100644 --- a/AixLib/BoundaryConditions/WeatherData/BaseClasses/CheckDewPointTemperature.mo +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/CheckDewPointTemperature.mo @@ -13,9 +13,9 @@ block CheckDewPointTemperature displayUnit="degC") "Dew point temperature" annotation (Placement(transformation(extent={{100,-10},{120,10}}))); - parameter Modelica.SIunits.Temperature TMin(displayUnit="degC") = 203.15 + parameter Modelica.Units.SI.Temperature TMin(displayUnit="degC") = 203.15 "Minimum allowed temperature"; - parameter Modelica.SIunits.Temperature TMax(displayUnit="degC") = 343.15 + parameter Modelica.Units.SI.Temperature TMax(displayUnit="degC") = 343.15 "Maximum allowed temperature"; equation @@ -26,36 +26,36 @@ equation annotation ( defaultComponentName="cheTem", Documentation(info=" -

    -This component checks the value of temperature. -If the temperature is outside TMin and TMax, -the simulation will stop with an error. -

    -", revisions=" -
      -
    • -April 14, 2020, by Michael Wetter:
      -Added noEvent.
      -This is for #1340. -
    • -
    • -January 31, 2020 by Filip Jorissen:
      -Improved error message. -
    • -
    • -October 27, 2011, by Wangda Zuo:
      -Delete the unit conversion part and name it from ConvertTemperature to CheckTemperature. -
    • -
    • -March 23, 2011, by Michael Wetter:
      -Set displayUnit argument for temperature output signal. -
    • -
    • -July 08, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -"), +

    + This component checks the value of temperature. + If the temperature is outside TMin and TMax, + the simulation will stop with an error. +

    + ",revisions=" +
      +
    • + April 14, 2020, by Michael Wetter:
      + Added noEvent.
      + This is for #1340. +
    • +
    • + January 31, 2020 by Filip Jorissen:
      + Improved error message. +
    • +
    • + October 27, 2011, by Wangda Zuo:
      + Delete the unit conversion part and name it from ConvertTemperature to CheckTemperature. +
    • +
    • + March 23, 2011, by Michael Wetter:
      + Set displayUnit argument for temperature output signal. +
    • +
    • + July 08, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), Icon(coordinateSystem(preserveAspectRatio=true, extent={{-100,-100},{100, 100}}), graphics={ Ellipse( @@ -79,5 +79,6 @@ First implementation. lineThickness=0.5), Line( points={{-14,44},{-14,-41}}, - thickness=0.5)})); + thickness=0.5)}), + __Dymola_LockedEditing="Model from IBPSA"); end CheckDewPointTemperature; diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/CheckDryBulbTemperature.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/CheckDryBulbTemperature.mo index 53faa7d065..3eaf876b96 100644 --- a/AixLib/BoundaryConditions/WeatherData/BaseClasses/CheckDryBulbTemperature.mo +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/CheckDryBulbTemperature.mo @@ -13,9 +13,9 @@ block CheckDryBulbTemperature displayUnit="degC") "Dry bulb temperature" annotation (Placement(transformation(extent={{100,-10},{120,10}}))); - parameter Modelica.SIunits.Temperature TMin(displayUnit="degC") = 203.15 + parameter Modelica.Units.SI.Temperature TMin(displayUnit="degC") = 203.15 "Minimum allowed temperature"; - parameter Modelica.SIunits.Temperature TMax(displayUnit="degC") = 343.15 + parameter Modelica.Units.SI.Temperature TMax(displayUnit="degC") = 343.15 "Maximum allowed temperature"; equation @@ -26,36 +26,36 @@ equation annotation ( defaultComponentName="cheTem", Documentation(info=" -

    -This component checks the value of the dry bulb temperature. -If the temperature is outside TMin and TMax, -the simulation will stop with an error. -

    -", revisions=" -
      -
    • -April 14, 2020, by Michael Wetter:
      -Added noEvent.
      -This is for #1340. -
    • -
    • -January 31, 2020 by Filip Jorissen:
      -Improved error message. -
    • -
    • -October 27, 2011, by Wangda Zuo:
      -Delete the unit conversion part and name it from ConvertTemperature to CheckTemperature. -
    • -
    • -March 23, 2011, by Michael Wetter:
      -Set displayUnit argument for temperature output signal. -
    • -
    • -July 08, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -"), +

    + This component checks the value of the dry bulb temperature. + If the temperature is outside TMin and TMax, + the simulation will stop with an error. +

    + ",revisions=" +
      +
    • + April 14, 2020, by Michael Wetter:
      + Added noEvent.
      + This is for #1340. +
    • +
    • + January 31, 2020 by Filip Jorissen:
      + Improved error message. +
    • +
    • + October 27, 2011, by Wangda Zuo:
      + Delete the unit conversion part and name it from ConvertTemperature to CheckTemperature. +
    • +
    • + March 23, 2011, by Michael Wetter:
      + Set displayUnit argument for temperature output signal. +
    • +
    • + July 08, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), Icon(coordinateSystem(preserveAspectRatio=true, extent={{-100,-100},{100, 100}}), graphics={ Ellipse( @@ -79,5 +79,6 @@ First implementation. lineThickness=0.5), Line( points={{-10,46},{-10,-39}}, - thickness=0.5)})); + thickness=0.5)}), + __Dymola_LockedEditing="Model from IBPSA"); end CheckDryBulbTemperature; diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/CheckIRRadiation.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/CheckIRRadiation.mo index 7c36c02a83..af751c3300 100644 --- a/AixLib/BoundaryConditions/WeatherData/BaseClasses/CheckIRRadiation.mo +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/CheckIRRadiation.mo @@ -10,7 +10,7 @@ block CheckIRRadiation "Ensure that the radiation is not smaller than 0" final unit="W/m2") "Horizontal infrared irradiation" annotation (Placement(transformation(extent={{100,-10},{120,10}}))); - constant Modelica.SIunits.RadiantEnergyFluenceRate HMin=0.0001 + constant Modelica.Units.SI.RadiantEnergyFluenceRate HMin=0.0001 "Minimum value for radiation"; equation HOut = AixLib.Utilities.Math.Functions.smoothMax( diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/CheckPressure.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/CheckPressure.mo index acfcb6d8ac..5922cad77f 100644 --- a/AixLib/BoundaryConditions/WeatherData/BaseClasses/CheckPressure.mo +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/CheckPressure.mo @@ -10,8 +10,8 @@ block CheckPressure final quantity="Pressure", final unit="Pa") "Atmospheric pressure" annotation (Placement(transformation(extent={{100,-10},{120,10}}))); - constant Modelica.SIunits.Pressure PMin=3100 "Minimum allowed pressure"; - constant Modelica.SIunits.Pressure PMax=120000 "Maximum allowed pressure"; + constant Modelica.Units.SI.Pressure PMin=3100 "Minimum allowed pressure"; + constant Modelica.Units.SI.Pressure PMax=120000 "Maximum allowed pressure"; equation pAtm = PIn; assert(noEvent(PIn > PMin and PIn < PMax), "In " + getInstanceName() + @@ -20,29 +20,30 @@ equation annotation ( defaultComponentName="chePre", Documentation(info=" -

    -This component ensures that the interpolated pressure is between 31,000 Pa and 120,000 Pa. -

    -", revisions=" -
      -
    • -April 14, 2020, by Michael Wetter:
      -Added noEvent and removed output connector.
      -This is for #1340. -
    • -
    • -January 31, 2020 by Filip Jorissen:
      -Improved error message. -
    • -
    • -July 14, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -"), +

    + This component ensures that the interpolated pressure is between 31,000 Pa and 120,000 Pa. +

    + ",revisions=" +
      +
    • + April 14, 2020, by Michael Wetter:
      + Added noEvent and removed output connector.
      + This is for #1340. +
    • +
    • + January 31, 2020 by Filip Jorissen:
      + Improved error message. +
    • +
    • + July 14, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), Icon(coordinateSystem(preserveAspectRatio=true, extent={{-100,-100},{100, 100}}), graphics={Text( extent={{-28,42},{26,-34}}, - lineColor={0,0,255}, - textString="P")})); + textColor={0,0,255}, + textString="P")}), + __Dymola_LockedEditing="Model from IBPSA"); end CheckPressure; diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/CheckRadiation.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/CheckRadiation.mo index c33a4b8dde..84311d5ff1 100644 --- a/AixLib/BoundaryConditions/WeatherData/BaseClasses/CheckRadiation.mo +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/CheckRadiation.mo @@ -10,7 +10,7 @@ block CheckRadiation "Ensure that the radiation is not smaller than 0" final unit="W/m2") "Radiation" annotation (Placement(transformation(extent={{100,-10},{120,10}}))); - constant Modelica.SIunits.RadiantEnergyFluenceRate HMin=0.0001 + constant Modelica.Units.SI.RadiantEnergyFluenceRate HMin=0.0001 "Minimum value for radiation"; equation HOut = AixLib.Utilities.Math.Functions.smoothMax( diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/CheckTemperature.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/CheckTemperature.mo index 5c2b35aa9b..446a3ea823 100644 --- a/AixLib/BoundaryConditions/WeatherData/BaseClasses/CheckTemperature.mo +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/CheckTemperature.mo @@ -12,9 +12,9 @@ block CheckTemperature "Check the validity of temperature data" displayUnit="degC") "Output temperature" annotation (Placement(transformation(extent={{100,-10},{120,10}}))); - parameter Modelica.SIunits.Temperature TMin(displayUnit="degC") = 203.15 + parameter Modelica.Units.SI.Temperature TMin(displayUnit="degC") = 203.15 "Minimum allowed temperature"; - parameter Modelica.SIunits.Temperature TMax(displayUnit="degC") = 343.15 + parameter Modelica.Units.SI.Temperature TMax(displayUnit="degC") = 343.15 "Maximum allowed temperature"; equation diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/CheckWindSpeed.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/CheckWindSpeed.mo index d8a663f42f..cea2975b19 100644 --- a/AixLib/BoundaryConditions/WeatherData/BaseClasses/CheckWindSpeed.mo +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/CheckWindSpeed.mo @@ -7,7 +7,7 @@ block CheckWindSpeed "Ensures that the wind speed is non-negative" Modelica.Blocks.Interfaces.RealOutput winSpeOut(final quantity="Velocity", final unit="m/s") "Wind speed" annotation (Placement(transformation(extent={{100,-10},{120,10}}))); - constant Modelica.SIunits.Velocity winSpeMin=1e-6 + constant Modelica.Units.SI.Velocity winSpeMin=1e-6 "Minimum allowed wind speed"; equation diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/ConvertRadiation.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/ConvertRadiation.mo index 36017e377e..db18e31634 100644 --- a/AixLib/BoundaryConditions/WeatherData/BaseClasses/ConvertRadiation.mo +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/ConvertRadiation.mo @@ -11,10 +11,10 @@ block ConvertRadiation annotation (Placement(transformation(extent={{100,-10},{120,10}}))); protected - constant Modelica.SIunits.Time Hou=3600 "1 hour"; + constant Modelica.Units.SI.Time Hou=3600 "1 hour"; equation - HOut = HIn/Modelica.SIunits.Conversions.to_hour(Hou); + HOut =HIn/Modelica.Units.Conversions.to_hour(Hou); annotation ( defaultComponentName="conRad", Documentation(info="

    diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/ConvertTime.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/ConvertTime.mo index e266093b95..6c4d9ccd35 100644 --- a/AixLib/BoundaryConditions/WeatherData/BaseClasses/ConvertTime.mo +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/ConvertTime.mo @@ -3,8 +3,10 @@ block ConvertTime "Converts the simulation time to calendar time in scale of 1 year (365 days), or a multiple of a year" extends Modelica.Blocks.Icons.Block; - parameter Modelica.SIunits.Time weaDatStaTim(displayUnit="d") "Start time of weather data"; - parameter Modelica.SIunits.Time weaDatEndTim(displayUnit="d") "End time of weather data"; + parameter Modelica.Units.SI.Time weaDatStaTim(displayUnit="d") + "Start time of weather data"; + parameter Modelica.Units.SI.Time weaDatEndTim(displayUnit="d") + "End time of weather data"; Modelica.Blocks.Interfaces.RealInput modTim( final quantity="Time", @@ -16,13 +18,16 @@ block ConvertTime annotation (Placement(transformation(extent={{100,-10},{120,10}}))); protected - constant Modelica.SIunits.Time shiftSolarRad=1800 "Number of seconds for the shift for solar radiation calculation"; - parameter Modelica.SIunits.Time lenWea = weaDatEndTim-weaDatStaTim "Length of weather data"; + constant Modelica.Units.SI.Time shiftSolarRad=1800 + "Number of seconds for the shift for solar radiation calculation"; + parameter Modelica.Units.SI.Time lenWea=weaDatEndTim - weaDatStaTim + "Length of weather data"; parameter Boolean canRepeatWeatherFile = abs(mod(lenWea, 365*24*3600)) < 1E-2 "=true, if the weather file can be repeated, since it has the length of a year or a multiple of it"; - discrete Modelica.SIunits.Time tNext(start=0, fixed=true) "Start time of next period"; + discrete Modelica.Units.SI.Time tNext(start=0, fixed=true) + "Start time of next period"; equation when {initial(), canRepeatWeatherFile and modTim > pre(tNext)} then @@ -34,83 +39,83 @@ equation assert(canRepeatWeatherFile or noEvent((time - weaDatEndTim) < shiftSolarRad), "In " + getInstanceName() + ": Insufficient weather data provided for the desired simulation period. - The simulation time " + String(time) + + The simulation time "+ String(time) + " exceeds the end time " + String(weaDatEndTim) + " of the weather data file.", AssertionLevel.error); assert(canRepeatWeatherFile or noEvent(time >= weaDatStaTim), "In " + getInstanceName() + ": Insufficient weather data provided for the desired simulation period. - The simulation time " + String(time) + + The simulation time "+ String(time) + " is less than the start time " + String(weaDatStaTim) + " of the weather data file.", AssertionLevel.error); annotation ( defaultComponentName="conTim", Documentation(info=" -

    -This component converts the simulation time to calendar time in a scale of 1 year (365 days), -or a multiple of it, if this is the length of the weather file. -

    -", revisions=" -
      -
    • -April 15, 2020, by Michael Wetter:
      -Added noEvent to assertion to remove zero crossing function in OPTIMICA. -
    • -
    • -January 29, 2020, by Filip Jorissen:
      -Revised end time assert and added assert that verifies whether the time is before the -start time of the weather file.
      -This is for #1281. -
    • -
    • -June 12, 2019, by Michael Wetter:
      -Reformulated model to avoid having to evaluate the weather file during compilation -(as it determined the structural parameter lenWea). The new formulation -allows inclusion of the weather file in JModelica-generated FMUs, and it works with -Dymola as well.
      -This is for -#1147. -
    • -
    • -May 21, 2019, by Michael Wetter:
      -Corrected code to avoid wrong type conversion.
      -This is for #1142. -
    • -
    • -March 4, 2019, by Michael Wetter:
      -Refactored implementation to correctly account for negative start times.
      -This is for #842. -
    • -
    • -July 27, 2018, by Ana Constantin:
      -Added shift for multiple time spans. -
    • -
    • -September 27, 2011, by Wangda Zuo and Michael Wetter:
      -Modify it to convert negative value of time. -Use the when-then to allow dymola differentiating this model when -conducting index reduction which is not allowed in previous implementation. -
    • -
    • -February 27, 2011, by Wangda Zuo:
      -Renamed the component. -
    • -
    • -July 08, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -"), +

    + This component converts the simulation time to calendar time in a scale of 1 year (365 days), + or a multiple of it, if this is the length of the weather file. +

    + ",revisions=" +
      +
    • + April 15, 2020, by Michael Wetter:
      + Added noEvent to assertion to remove zero crossing function in OPTIMICA. +
    • +
    • + January 29, 2020, by Filip Jorissen:
      + Revised end time assert and added assert that verifies whether the time is before the + start time of the weather file.
      + This is for #1281. +
    • +
    • + June 12, 2019, by Michael Wetter:
      + Reformulated model to avoid having to evaluate the weather file during compilation + (as it determined the structural parameter lenWea). The new formulation + allows inclusion of the weather file in JModelica-generated FMUs, and it works with + Dymola as well.
      + This is for + #1147. +
    • +
    • + May 21, 2019, by Michael Wetter:
      + Corrected code to avoid wrong type conversion.
      + This is for #1142. +
    • +
    • + March 4, 2019, by Michael Wetter:
      + Refactored implementation to correctly account for negative start times.
      + This is for #842. +
    • +
    • + July 27, 2018, by Ana Constantin:
      + Added shift for multiple time spans. +
    • +
    • + September 27, 2011, by Wangda Zuo and Michael Wetter:
      + Modify it to convert negative value of time. + Use the when-then to allow dymola differentiating this model when + conducting index reduction which is not allowed in previous implementation. +
    • +
    • + February 27, 2011, by Wangda Zuo:
      + Renamed the component. +
    • +
    • + July 08, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), Icon(coordinateSystem(preserveAspectRatio=true, extent={{-100,-100},{100, 100}}), graphics={ Text( extent={{-98,6},{-74,-4}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="modTim"), Text( extent={{74,6},{98,-4}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="calTim"), Rectangle( extent={{-66,76},{60,58}}, @@ -127,5 +132,6 @@ First implementation. Line( points={{60,-2},{-66,-2}}), Line( - points={{60,-32},{-66,-32}})})); + points={{60,-32},{-66,-32}})}), + __Dymola_LockedEditing="Model from IBPSA"); end ConvertTime; diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/EquationOfTime.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/EquationOfTime.mo index 8245720ded..3105eeeea3 100644 --- a/AixLib/BoundaryConditions/WeatherData/BaseClasses/EquationOfTime.mo +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/EquationOfTime.mo @@ -21,28 +21,29 @@ equation annotation ( defaultComponentName="eqnTim", Documentation(info=" -

    -This component computes the difference between solar noon and noon of local civic time. -

    -", revisions=" -
      -
    • -May 13, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -"), +

    + This component computes the difference between solar noon and noon of local civic time. +

    + ",revisions=" +
      +
    • + May 13, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), Icon(coordinateSystem(preserveAspectRatio=true, extent={{-100,-100},{100, 100}}), graphics={Text( extent={{-150,110},{150,150}}, textString="%name", - lineColor={0,0,255}), + textColor={0,0,255}), Text( extent={{-58,38},{38,-24}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="t"), Text( extent={{-6,4},{52,-24}}, - lineColor={0,0,255}, - textString="equ")})); + textColor={0,0,255}, + textString="equ")}), + __Dymola_LockedEditing="Model from IBPSA"); end EquationOfTime; diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/CheckBlackBodySkyTemperature.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/CheckBlackBodySkyTemperature.mo index 245ce39fa1..606593675a 100644 --- a/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/CheckBlackBodySkyTemperature.mo +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/CheckBlackBodySkyTemperature.mo @@ -15,20 +15,21 @@ equation annotation (Line(points={{-19,0},{18,0}}, color={0,0,127})); annotation ( Documentation(info=" -

    -This example tests the model that checks the black-body sky temperature. -

    -", +

    + This example tests the model that checks the black-body sky temperature. +

    + ", revisions=" -
      -
    • -January 5, 2015, by Michael Wetter:
      -First implementation. -
    • -
    -"), +
      +
    • + January 5, 2015, by Michael Wetter:
      + First implementation. +
    • +
    + "), experiment(Tolerance=1e-6, StopTime=1.0), __Dymola_Commands(file= "modelica://AixLib/Resources/Scripts/Dymola/BoundaryConditions/WeatherData/BaseClasses/Examples/CheckBlackBodySkyTemperature.mos" - "Simulate and plot")); + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end CheckBlackBodySkyTemperature; diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/CheckPressure.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/CheckPressure.mo index 8caec121fd..eaf4ff2773 100644 --- a/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/CheckPressure.mo +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/CheckPressure.mo @@ -35,24 +35,25 @@ equation color={0,0,127})); annotation ( Documentation(info=" -

    -This example tests the model that asserts that the pressure is within acceptable bounds. -

    -", +

    + This example tests the model that asserts that the pressure is within acceptable bounds. +

    + ", revisions=" -
      -
    • -April 21, 2016, by Michael Wetter:
      -Replaced ModelicaServices.ExternalReferences.loadResource with -Modelica.Utilities.Files.loadResource. -
    • -
    • -July 14, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -"), +
      +
    • + April 21, 2016, by Michael Wetter:
      + Replaced ModelicaServices.ExternalReferences.loadResource with + Modelica.Utilities.Files.loadResource. +
    • +
    • + July 14, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), experiment(Tolerance=1e-6, StartTime=0, StopTime=8640000), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/BoundaryConditions/WeatherData/BaseClasses/Examples/CheckPressure.mos" - "Simulate and plot")); + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end CheckPressure; diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/CheckTemperature.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/CheckTemperature.mo index 4954d85063..f67859bd16 100644 --- a/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/CheckTemperature.mo +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/CheckTemperature.mo @@ -52,25 +52,26 @@ equation color={0,0,127})); annotation ( Documentation(info=" -

    -This example tests the model that checks the temperature. -

    -", +

    + This example tests the model that checks the temperature. +

    + ", revisions=" -
      -
    • -April 21, 2016, by Michael Wetter:
      -Replaced ModelicaServices.ExternalReferences.loadResource with -Modelica.Utilities.Files.loadResource. -
    • -
    • -July 14, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -"), +
      +
    • + April 21, 2016, by Michael Wetter:
      + Replaced ModelicaServices.ExternalReferences.loadResource with + Modelica.Utilities.Files.loadResource. +
    • +
    • + July 14, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), experiment(Tolerance=1e-6, StartTime=0, StopTime=8640000), __Dymola_Commands(file= "modelica://AixLib/Resources/Scripts/Dymola/BoundaryConditions/WeatherData/BaseClasses/Examples/CheckTemperature.mos" - "Simulate and plot")); + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end CheckTemperature; diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/ConvertTime.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/ConvertTime.mo index 41342e7d28..7620fb41ef 100644 --- a/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/ConvertTime.mo +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/ConvertTime.mo @@ -15,20 +15,21 @@ equation color={0,0,127})); annotation ( Documentation(info=" -

    -This example tests the model that converts time. -

    -", +

    + This example tests the model that converts time. +

    + ", revisions=" -
      -
    • -July 14, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -"), +
      +
    • + July 14, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), experiment(Tolerance=1e-6, StopTime=77760000), __Dymola_Commands(file= "modelica://AixLib/Resources/Scripts/Dymola/BoundaryConditions/WeatherData/BaseClasses/Examples/ConvertTime.mos" - "Simulate and plot")); + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end ConvertTime; diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/ConvertTimeNegativeStart.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/ConvertTimeNegativeStart.mo index ab49194ff6..5f7c992423 100644 --- a/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/ConvertTimeNegativeStart.mo +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/ConvertTimeNegativeStart.mo @@ -4,20 +4,21 @@ model ConvertTimeNegativeStart extends AixLib.BoundaryConditions.WeatherData.BaseClasses.Examples.ConvertTime; annotation ( Documentation(info=" -

    -This example tests the model that converts time for negative start time. -

    -", +

    + This example tests the model that converts time for negative start time. +

    + ", revisions=" -
      -
    • -March 4, 2019, by Michael Wetter:
      -First implementation. -
    • -
    -"), +
      +
    • + March 4, 2019, by Michael Wetter:
      + First implementation. +
    • +
    + "), experiment(Tolerance=1e-6, StartTime=-31536000, StopTime=31536000), __Dymola_Commands(file= "modelica://AixLib/Resources/Scripts/Dymola/BoundaryConditions/WeatherData/BaseClasses/Examples/ConvertTimeNegativeStart.mos" - "Simulate and plot")); + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end ConvertTimeNegativeStart; diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/ConvertTimePositiveStart.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/ConvertTimePositiveStart.mo index 7ff89260ea..f8504b8d8e 100644 --- a/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/ConvertTimePositiveStart.mo +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/ConvertTimePositiveStart.mo @@ -4,20 +4,21 @@ model ConvertTimePositiveStart extends AixLib.BoundaryConditions.WeatherData.BaseClasses.Examples.ConvertTime; annotation ( Documentation(info=" -

    -This example tests the model that converts time for positive start time. -

    -", +

    + This example tests the model that converts time for positive start time. +

    + ", revisions=" -
      -
    • -March 4, 2019, by Michael Wetter:
      -First implementation. -
    • -
    -"), +
      +
    • + March 4, 2019, by Michael Wetter:
      + First implementation. +
    • +
    + "), experiment(Tolerance=1e-6, StartTime=47174400, StopTime=126144000), __Dymola_Commands(file= "modelica://AixLib/Resources/Scripts/Dymola/BoundaryConditions/WeatherData/BaseClasses/Examples/ConvertTimePositiveStart.mos" - "Simulate and plot")); + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end ConvertTimePositiveStart; diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/EquationOfTime.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/EquationOfTime.mo index 066b1defe1..6c233fa437 100644 --- a/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/EquationOfTime.mo +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/EquationOfTime.mo @@ -12,19 +12,20 @@ equation color={0,0,127})); annotation ( Documentation(info=" -

    -This example tests the model that computes the equation of time. -

    -", +

    + This example tests the model that computes the equation of time. +

    + ", revisions=" -
      -
    • -July 14, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -"), +
      +
    • + July 14, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), experiment(Tolerance=1e-6, StopTime=86400), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/BoundaryConditions/WeatherData/BaseClasses/Examples/EquationOfTime.mos" - "Simulate and plot")); + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end EquationOfTime; diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/GetAbsolutePath.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/GetAbsolutePath.mo index 65d47c5ec2..791c8211c6 100644 --- a/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/GetAbsolutePath.mo +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/GetAbsolutePath.mo @@ -1,7 +1,7 @@ within AixLib.BoundaryConditions.WeatherData.BaseClasses.Examples; model GetAbsolutePath "Test model to get the absolute path of a URI" extends Modelica.Icons.Example; - parameter String f = "modelica://AixLib/package.mo" + parameter String f = Modelica.Utilities.Files.loadResource("modelica://AixLib/package.mo") "Name of a file that exists"; parameter String fAbs= AixLib.BoundaryConditions.WeatherData.BaseClasses.getAbsolutePath(uri=f) @@ -16,26 +16,31 @@ experiment(Tolerance=1e-6, StopTime=1.0), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/BoundaryConditions/WeatherData/BaseClasses/Examples/GetAbsolutePath.mos" "Simulate and plot"), Documentation(info=" -

    -This model tests the function that gets the absolute path of a URI. -

    -", revisions=" -
      -
    • -November 18, 2016, by Michael Wetter:
      -Removed tests that assumed that the regression test is run -from the library root directory.
      -This is for -#596. -
    • -
    • -October 9, 2013, by Michael Wetter:
      -Removed incorrect call to Modelica.Utilities.Files.exist. -
    • -
    • -May 9, 2013, by Michael Wetter:
      -First implementation. -
    • -
    -")); +

    + This model tests the function that gets the absolute path of a URI. +

    + ",revisions=" +
      +
    • + December 11, 2021, by Michael Wetter:
      + Added loadResource call. +
    • +
    • + November 18, 2016, by Michael Wetter:
      + Removed tests that assumed that the regression test is run + from the library root directory.
      + This is for + #596. +
    • +
    • + October 9, 2013, by Michael Wetter:
      + Removed incorrect call to Modelica.Utilities.Files.exist. +
    • +
    • + May 9, 2013, by Michael Wetter:
      + First implementation. +
    • +
    + "), + __Dymola_LockedEditing="Model from IBPSA"); end GetAbsolutePath; diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/GetAltitudeTMY3.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/GetAltitudeTMY3.mo new file mode 100644 index 0000000000..b34f0da4ef --- /dev/null +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/GetAltitudeTMY3.mo @@ -0,0 +1,32 @@ +within AixLib.BoundaryConditions.WeatherData.BaseClasses.Examples; +model GetAltitudeTMY3 "Test model to get Altitude of TMY3" + extends Modelica.Icons.Example; + parameter String filNam = Modelica.Utilities.Files.loadResource( + "modelica://AixLib/Resources/weatherdata/USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.mos") + "Name of weather data file"; + parameter Modelica.Units.SI.Length alt = AixLib.BoundaryConditions.WeatherData.BaseClasses.getAltitudeLocationTMY3( + filNam) "Altitude of TMY3 location"; + + annotation ( + Documentation(info=" +

    + This example tests getting the location altitude of a TMY3 weather data file. +

    + ", +revisions=" +
      +
    • + December 11, 2021, by Michael Wetter:
      + Changed alt from variable to parameter as it is evaluated using an impure function call. +
    • +
    • + September 16, 2021, by Michael Wetter:
      + First implementation. +
    • +
    + "), +experiment(Tolerance=1e-6, StopTime=1.0), +__Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/BoundaryConditions/WeatherData/BaseClasses/Examples/GetAltitudeTMY3.mos" + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); +end GetAltitudeTMY3; diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/GetHeaderElement.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/GetHeaderElement.mo index 98338de0b2..1a4dcdbca9 100644 --- a/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/GetHeaderElement.mo +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/GetHeaderElement.mo @@ -1,11 +1,11 @@ within AixLib.BoundaryConditions.WeatherData.BaseClasses.Examples; model GetHeaderElement "Test model to get header element" extends Modelica.Icons.Example; - parameter Modelica.SIunits.Angle longitude(fixed=false, displayUnit="deg") + parameter Modelica.Units.SI.Angle longitude(fixed=false, displayUnit="deg") "Longitude"; - parameter Modelica.SIunits.Angle latitude(fixed=false, displayUnit="deg") + parameter Modelica.Units.SI.Angle latitude(fixed=false, displayUnit="deg") "Latitude"; - parameter Modelica.SIunits.Time timeZone(fixed=false, displayUnit="h") + parameter Modelica.Units.SI.Time timeZone(fixed=false, displayUnit="h") "Time zone"; parameter String filNam = Modelica.Utilities.Files.loadResource("modelica://AixLib/Resources/weatherdata/USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.mos") @@ -29,30 +29,31 @@ initial equation annotation ( Documentation(info=" -

    -This example tests getting the header of the TMY3 weather data file. -

    -", +

    + This example tests getting the header of the TMY3 weather data file. +

    + ", revisions=" - -"), + + "), experiment(Tolerance=1e-6, StopTime=1.0), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/BoundaryConditions/WeatherData/BaseClasses/Examples/GetHeaderElement.mos" - "Simulate and plot")); + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end GetHeaderElement; diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/GetTimeSpanTMY3.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/GetTimeSpanTMY3.mo index 6c4e83f7c3..e0a6c3b619 100644 --- a/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/GetTimeSpanTMY3.mo +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/GetTimeSpanTMY3.mo @@ -7,12 +7,12 @@ model GetTimeSpanTMY3 "Test model to get the time span of a weather file" "Name of weather data file"; parameter String tabNam = "tab1" "Name of table on weather file"; - parameter Modelica.SIunits.Time[2] timeSpan(each fixed=false) + parameter Modelica.Units.SI.Time[2] timeSpan(each fixed=false) "Start time, end time of weather data"; protected - constant Modelica.SIunits.Time endTim = 365*24*3600.; - constant Modelica.SIunits.Time staTim = 0.; + constant Modelica.Units.SI.Time endTim=365*24*3600.; + constant Modelica.Units.SI.Time staTim=0.; initial equation timeSpan = AixLib.BoundaryConditions.WeatherData.BaseClasses.getTimeSpanTMY3( @@ -25,24 +25,25 @@ initial equation annotation ( Documentation(info=" -

    -This example tests getting the time span of a TMY3 weather data file. -

    -", +

    + This example tests getting the time span of a TMY3 weather data file. +

    + ", revisions=" -
      -
    • -April 16, 2019, by Michael Wetter:
      -Removed call to get the absolute path of the file, corrected the .mos -file name and updated the documentation -
    • -
    • -April 15, 2019, by Ana Constantin:
      -First implementation. -
    • -
    -"), +
      +
    • + April 16, 2019, by Michael Wetter:
      + Removed call to get the absolute path of the file, corrected the .mos + file name and updated the documentation +
    • +
    • + April 15, 2019, by Ana Constantin:
      + First implementation. +
    • +
    + "), experiment(Tolerance=1e-6, StopTime=1.0), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/BoundaryConditions/WeatherData/BaseClasses/Examples/GetTimeSpanTMY3.mos" - "Simulate and plot")); + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end GetTimeSpanTMY3; diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/GetTimeSpanTMY3LongHeader.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/GetTimeSpanTMY3LongHeader.mo index 42cbf8064e..e025f86259 100644 --- a/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/GetTimeSpanTMY3LongHeader.mo +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/GetTimeSpanTMY3LongHeader.mo @@ -7,30 +7,31 @@ model GetTimeSpanTMY3LongHeader "modelica://AixLib/Resources/Data/BoundaryConditions/WeatherData/BaseClasses/Examples/weatherWithLongHeader.mos") "Name of weather data file"; - final parameter Modelica.SIunits.Time[2] timeSpan= - AixLib.BoundaryConditions.WeatherData.BaseClasses.getTimeSpanTMY3(filNam, "tab1") - "Start time, end time of weather data"; + final parameter Modelica.Units.SI.Time[2] timeSpan= + AixLib.BoundaryConditions.WeatherData.BaseClasses.getTimeSpanTMY3(filNam, + "tab1") "Start time, end time of weather data"; initial equation assert(abs(timeSpan[2]-14400) < 0.1, "Error in getting time span."); annotation ( Documentation(info=" -

    -This example tests getting the time span of a TMY3 weather data file with a long line in the -header of the weather file. -

    -", +

    + This example tests getting the time span of a TMY3 weather data file with a long line in the + header of the weather file. +

    + ", revisions=" -
      -
    • -January 27, 2021, by Michael Wetter:
      -First implementation.
      -This is for -#1432. -
    • -
    -"), +
      +
    • + January 27, 2021, by Michael Wetter:
      + First implementation.
      + This is for + #1432. +
    • +
    + "), experiment(Tolerance=1e-6, StopTime=1.0), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/BoundaryConditions/WeatherData/BaseClasses/Examples/GetTimeSpanTMY3LongHeader.mos" - "Simulate and plot")); + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end GetTimeSpanTMY3LongHeader; diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/GetTimeSpanTMY3_NonzeroStart.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/GetTimeSpanTMY3_NonzeroStart.mo index 99f29b27dc..d23d7d1ee6 100644 --- a/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/GetTimeSpanTMY3_NonzeroStart.mo +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/GetTimeSpanTMY3_NonzeroStart.mo @@ -10,20 +10,21 @@ model GetTimeSpanTMY3_NonzeroStart annotation ( Documentation(info=" -

    -This example tests getting time span of a TMY3 weather data file that -starts at a non-zero time. -

    -", +

    + This example tests getting time span of a TMY3 weather data file that + starts at a non-zero time. +

    + ", revisions=" -
      -
    • -April 17, 2019, by Jianjun Hu:
      -First implementation. -
    • -
    -"), +
      +
    • + April 17, 2019, by Jianjun Hu:
      + First implementation. +
    • +
    + "), experiment(Tolerance=1e-6, StopTime=1.0), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/BoundaryConditions/WeatherData/BaseClasses/Examples/GetTimeSpanTMY3_NonzeroStart.mos" - "Simulate and plot")); + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end GetTimeSpanTMY3_NonzeroStart; diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/LimitMin.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/LimitMin.mo index e0e2f0c7f2..8ce1b3b931 100644 --- a/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/LimitMin.mo +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/LimitMin.mo @@ -33,24 +33,25 @@ equation color={0,0,127})); annotation ( Documentation(info=" -

    -This example tests the model that constrains the ceiling height. -

    -", +

    + This example tests the model that constrains the ceiling height. +

    + ", revisions=" -
      -
    • -April 21, 2016, by Michael Wetter:
      -Replaced ModelicaServices.ExternalReferences.loadResource with -Modelica.Utilities.Files.loadResource. -
    • -
    • -July 14, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -"), +
      +
    • + April 21, 2016, by Michael Wetter:
      + Replaced ModelicaServices.ExternalReferences.loadResource with + Modelica.Utilities.Files.loadResource. +
    • +
    • + July 14, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), experiment(Tolerance=1e-6, StartTime=0, StopTime=432000), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/BoundaryConditions/WeatherData/BaseClasses/Examples/LimitMin.mos" - "Simulate and plot")); + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end LimitMin; diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/LocalCivilTime.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/LocalCivilTime.mo index c315453d43..14f264da84 100644 --- a/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/LocalCivilTime.mo +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/LocalCivilTime.mo @@ -13,19 +13,20 @@ equation color={0,0,127})); annotation ( Documentation(info=" -

    -This example tests the model that computes the local civil time. -

    -", +

    + This example tests the model that computes the local civil time. +

    + ", revisions=" -
      -
    • -July 14, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -"), +
      +
    • + July 14, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), experiment(Tolerance=1e-6, StartTime=0, StopTime=172800), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/BoundaryConditions/WeatherData/BaseClasses/Examples/LocalCivilTime.mos" - "Simulate and plot")); + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end LocalCivilTime; diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/SolarTime.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/SolarTime.mo index 587379aac0..5a14a91c86 100644 --- a/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/SolarTime.mo +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/SolarTime.mo @@ -28,18 +28,19 @@ equation color={0,0,127})); annotation ( Documentation(info=" -

    -This example tests the model that computes the solar time. -

    -", +

    + This example tests the model that computes the solar time. +

    + ", revisions=" -
      -
    • -July 14, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -"), experiment(Tolerance=1e-6, StopTime=864000), +
      +
    • + July 14, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), experiment(Tolerance=1e-6, StopTime=864000), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/BoundaryConditions/WeatherData/BaseClasses/Examples/SolarTime.mos" - "Simulate and plot")); + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end SolarTime; diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/package.order b/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/package.order index 257d8e5759..5765c5f55c 100644 --- a/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/package.order +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/Examples/package.order @@ -14,6 +14,7 @@ ConvertTimeNegativeStart ConvertTimePositiveStart EquationOfTime GetAbsolutePath +GetAltitudeTMY3 GetHeaderElement GetTimeSpanTMY3 GetTimeSpanTMY3LongHeader diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/LimiterCeilingHeight.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/LimiterCeilingHeight.mo index 0e43a3fe05..b04d688d89 100644 --- a/AixLib/BoundaryConditions/WeatherData/BaseClasses/LimiterCeilingHeight.mo +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/LimiterCeilingHeight.mo @@ -9,20 +9,21 @@ block LimiterCeilingHeight "Block that limits the relative humidity" annotation ( defaultComponentName="limMin", Documentation(info=" -

    -Block that limits the cloud cover ceiling height to be positive. -

    -

    -This block is used because interpolation of weather data can lead to slightly -negative values. -

    -", +

    + Block that limits the cloud cover ceiling height to be positive. +

    +

    + This block is used because interpolation of weather data can lead to slightly + negative values. +

    + ", revisions=" -
      -
    • -April 14, 2020, by Michael Wetter:
      -First implementation. -
    • -
    -")); +
      +
    • + April 14, 2020, by Michael Wetter:
      + First implementation. +
    • +
    + "), + __Dymola_LockedEditing="Model from IBPSA"); end LimiterCeilingHeight; diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/LimiterHorizontalInfraredIrradiation.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/LimiterHorizontalInfraredIrradiation.mo index 09164c7b21..fd0c795e13 100644 --- a/AixLib/BoundaryConditions/WeatherData/BaseClasses/LimiterHorizontalInfraredIrradiation.mo +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/LimiterHorizontalInfraredIrradiation.mo @@ -10,20 +10,21 @@ block LimiterHorizontalInfraredIrradiation annotation ( defaultComponentName="limMin", Documentation(info=" -

    -Block that limits the horizontal infrared irradiation to be positive. -

    -

    -This block is used because interpolation of weather data can lead to slightly -negative values. -

    -", +

    + Block that limits the horizontal infrared irradiation to be positive. +

    +

    + This block is used because interpolation of weather data can lead to slightly + negative values. +

    + ", revisions=" -
      -
    • -April 14, 2020, by Michael Wetter:
      -First implementation. -
    • -
    -")); +
      +
    • + April 14, 2020, by Michael Wetter:
      + First implementation. +
    • +
    + "), + __Dymola_LockedEditing="Model from IBPSA"); end LimiterHorizontalInfraredIrradiation; diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/LimiterOpaqueSkyCover.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/LimiterOpaqueSkyCover.mo index 52e6ec79f3..324234de34 100644 --- a/AixLib/BoundaryConditions/WeatherData/BaseClasses/LimiterOpaqueSkyCover.mo +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/LimiterOpaqueSkyCover.mo @@ -12,20 +12,21 @@ equation annotation ( defaultComponentName="lim", Documentation(info=" -

    -Block that limits the opaque sky cover. -

    -

    -This block is used because interpolation of weather data can lead to slightly -negative values. -

    -", +

    + Block that limits the opaque sky cover. +

    +

    + This block is used because interpolation of weather data can lead to slightly + negative values. +

    + ", revisions=" -
      -
    • -April 14, 2020, by Michael Wetter:
      -First implementation. -
    • -
    -")); +
      +
    • + April 14, 2020, by Michael Wetter:
      + First implementation. +
    • +
    + "), + __Dymola_LockedEditing="Model from IBPSA"); end LimiterOpaqueSkyCover; diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/LimiterRelativeHumidity.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/LimiterRelativeHumidity.mo index 1f8fac3c74..a8330a3b93 100644 --- a/AixLib/BoundaryConditions/WeatherData/BaseClasses/LimiterRelativeHumidity.mo +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/LimiterRelativeHumidity.mo @@ -12,20 +12,21 @@ equation annotation ( defaultComponentName="lim", Documentation(info=" -

    -Block that limits the relative humidity. -

    -

    -This block is used because interpolation of weather data can lead to slightly -negative values. -

    -", +

    + Block that limits the relative humidity. +

    +

    + This block is used because interpolation of weather data can lead to slightly + negative values. +

    + ", revisions=" -
      -
    • -April 14, 2020, by Michael Wetter:
      -First implementation. -
    • -
    -")); +
      +
    • + April 14, 2020, by Michael Wetter:
      + First implementation. +
    • +
    + "), + __Dymola_LockedEditing="Model from IBPSA"); end LimiterRelativeHumidity; diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/LimiterTotalSkyCover.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/LimiterTotalSkyCover.mo index f71a49f7f4..e415050849 100644 --- a/AixLib/BoundaryConditions/WeatherData/BaseClasses/LimiterTotalSkyCover.mo +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/LimiterTotalSkyCover.mo @@ -12,20 +12,21 @@ equation annotation ( defaultComponentName="lim", Documentation(info=" -

    -Block that limits the total sky cover. -

    -

    -This block is used because interpolation of weather data can lead to slightly -negative values. -

    -", +

    + Block that limits the total sky cover. +

    +

    + This block is used because interpolation of weather data can lead to slightly + negative values. +

    + ", revisions=" -
      -
    • -April 14, 2020, by Michael Wetter:
      -First implementation. -
    • -
    -")); +
      +
    • + April 14, 2020, by Michael Wetter:
      + First implementation. +
    • +
    + "), + __Dymola_LockedEditing="Model from IBPSA"); end LimiterTotalSkyCover; diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/LimiterWindDirection.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/LimiterWindDirection.mo index 8b3d3ada94..24856ade5d 100644 --- a/AixLib/BoundaryConditions/WeatherData/BaseClasses/LimiterWindDirection.mo +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/LimiterWindDirection.mo @@ -13,20 +13,21 @@ equation annotation ( defaultComponentName="lim", Documentation(info=" -

    -Block that limits the wind direction. -

    -

    -This block is used because interpolation of weather data can lead to slightly -negative values. -

    -", +

    + Block that limits the wind direction. +

    +

    + This block is used because interpolation of weather data can lead to slightly + negative values. +

    + ", revisions=" -
      -
    • -April 14, 2020, by Michael Wetter:
      -First implementation. -
    • -
    -")); +
      +
    • + April 14, 2020, by Michael Wetter:
      + First implementation. +
    • +
    + "), + __Dymola_LockedEditing="Model from IBPSA"); end LimiterWindDirection; diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/LimiterWindSpeed.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/LimiterWindSpeed.mo index f044d3b20b..4ef15060da 100644 --- a/AixLib/BoundaryConditions/WeatherData/BaseClasses/LimiterWindSpeed.mo +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/LimiterWindSpeed.mo @@ -9,20 +9,21 @@ block LimiterWindSpeed "Block that limits the wind speed" annotation ( defaultComponentName="limMin", Documentation(info=" -

    -Block that limits the wind speed to be positive. -

    -

    -This block is used because interpolation of weather data can lead to slightly -negative values. -

    -", +

    + Block that limits the wind speed to be positive. +

    +

    + This block is used because interpolation of weather data can lead to slightly + negative values. +

    + ", revisions=" -
      -
    • -April 14, 2020, by Michael Wetter:
      -First implementation. -
    • -
    -")); +
      +
    • + April 14, 2020, by Michael Wetter:
      + First implementation. +
    • +
    + "), + __Dymola_LockedEditing="Model from IBPSA"); end LimiterWindSpeed; diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/LocalCivilTime.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/LocalCivilTime.mo index 1bc4f69fdb..b9a81c32b5 100644 --- a/AixLib/BoundaryConditions/WeatherData/BaseClasses/LocalCivilTime.mo +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/LocalCivilTime.mo @@ -5,14 +5,14 @@ block LocalCivilTime "Converts the clock time to local civil time." final quantity="Time", final unit="s") "Clock time" annotation (Placement(transformation(extent={{-140,-20},{-100,20}}))); - parameter Modelica.SIunits.Time timZon(displayUnit="h") "Time zone"; - parameter Modelica.SIunits.Angle lon(displayUnit="deg") "Longitude"; + parameter Modelica.Units.SI.Time timZon(displayUnit="h") "Time zone"; + parameter Modelica.Units.SI.Angle lon(displayUnit="deg") "Longitude"; Modelica.Blocks.Interfaces.RealOutput locTim( final quantity="Time", final unit="s") "Local civil time" annotation (Placement(transformation(extent={{100,-10},{120,10}}))); protected - final parameter Modelica.SIunits.Time diff = - timZon + lon*43200/Modelica.Constants.pi + final parameter Modelica.Units.SI.Time diff=-timZon + lon*43200/Modelica.Constants.pi "Difference between local and clock time"; equation locTim = cloTim + diff; @@ -20,35 +20,36 @@ equation annotation ( defaultComponentName="locTim", Documentation(info=" -

    -This component converts the clock time to local civil time. -The parameter timZon represents the time zone of the facility (relative to Greenwich Mean Time or the 0th meridian). Time zones west of GMT (e.g. North America) are represented as negative; -east of GMT as positive. Fraction of hours are represented in decimals (e.g. for 6:30, use 6.5). -

    -

    -The formula is based on Michael Wetter's thesis (A4.1): -

    -
    -  locTim = greTim + (lon*180/pi)*86400/360 = cloTim - timZon + lon*43200/pi
    -
    -", revisions=" -
      -
    • -November 14, 2015, by Michael Wetter:
      -Introduced diff. -
    • -
    • -February 27, 2011, by Wangda Zuo:
      -First implementation. -
    • -
    -"), +

    + This component converts the clock time to local civil time. + The parameter timZon represents the time zone of the facility (relative to Greenwich Mean Time or the 0th meridian). Time zones west of GMT (e.g. North America) are represented as negative; + east of GMT as positive. Fraction of hours are represented in decimals (e.g. for 6:30, use 6.5). +

    +

    + The formula is based on Michael Wetter's thesis (A4.1): +

    +
    +   locTim = greTim + (lon*180/pi)*86400/360 = cloTim - timZon + lon*43200/pi
    + 
    + ",revisions=" +
      +
    • + November 14, 2015, by Michael Wetter:
      + Introduced diff. +
    • +
    • + February 27, 2011, by Wangda Zuo:
      + First implementation. +
    • +
    + "), Icon(coordinateSystem(preserveAspectRatio=true, extent={{-100,-100},{100, 100}}), graphics={Text( extent={{-98,6},{-60,-6}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="cloTim"), Text( extent={{74,6},{98,-4}}, - lineColor={0,0,127}, - textString="calTim")})); + textColor={0,0,127}, + textString="calTim")}), + __Dymola_LockedEditing="Model from IBPSA"); end LocalCivilTime; diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/PartialLimiter.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/PartialLimiter.mo index 1747ad31cb..617f43f88c 100644 --- a/AixLib/BoundaryConditions/WeatherData/BaseClasses/PartialLimiter.mo +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/PartialLimiter.mo @@ -12,30 +12,30 @@ partial block PartialLimiter annotation ( defaultComponentName="lim", Documentation(info=" -

    -Block that computes y_internal=min(uMax, max(uMin, u)), -where y_internal is a protected connector. -

    -

    -This block is used because interpolation of weather data can lead to -a slight overshoot of values. This block is extended by other blocks -that then provide the output connector. -Extending this block is needed for the output connector to have the correct -comment string in the weather data bus, because the weather -data bus displays the comment string of the output signal -that is connected to the weather data bus. -Without this construct, the weather data bus would simply show -\"Connector of Real output signal\". -

    -", +

    + Block that computes y_internal=min(uMax, max(uMin, u)), + where y_internal is a protected connector. +

    +

    + This block is used because interpolation of weather data can lead to + a slight overshoot of values. This block is extended by other blocks + that then provide the output connector. + Extending this block is needed for the output connector to have the correct + comment string in the weather data bus, because the weather + data bus displays the comment string of the output signal + that is connected to the weather data bus. + Without this construct, the weather data bus would simply show + \"Connector of Real output signal\". +

    + ", revisions=" -
      -
    • -April 14, 2020, by Michael Wetter:
      -First implementation. -
    • -
    -"), +
      +
    • + April 14, 2020, by Michael Wetter:
      + First implementation. +
    • +
    + "), Icon(coordinateSystem( preserveAspectRatio=true, extent={{-100,-100},{100,100}}), graphics={ @@ -55,8 +55,9 @@ First implementation. Text( extent={{-150,-150},{150,-110}}, textString="%uMin <= u <= %uMax", - lineColor={0,0,0})}), + textColor={0,0,0})}), Diagram(coordinateSystem( preserveAspectRatio=true, - extent={{-100,-100},{100,100}}))); + extent={{-100,-100},{100,100}})), + __Dymola_LockedEditing="Model from IBPSA"); end PartialLimiter; diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/PartialLimiterMin.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/PartialLimiterMin.mo index adc10d744f..8694222738 100644 --- a/AixLib/BoundaryConditions/WeatherData/BaseClasses/PartialLimiterMin.mo +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/PartialLimiterMin.mo @@ -10,33 +10,34 @@ partial block PartialLimiterMin annotation ( defaultComponentName="limMin", Documentation(info=" -

    -Partial block that is used to limit a signal by a minimum value. -

    -

    -This block is used because interpolation of weather data can lead to slightly -negative values. This block is extended by other blocks -that then provide the output connector. -Extending this block is needed for the output connector to have the correct -comment string in the weather data bus, because the weather -data bus displays the comment string of the output signal -that is connected to the weather data bus. -Without this construct, the weather data bus would simply show -\"Connector of Real output signal\". -

    -", +

    + Partial block that is used to limit a signal by a minimum value. +

    +

    + This block is used because interpolation of weather data can lead to slightly + negative values. This block is extended by other blocks + that then provide the output connector. + Extending this block is needed for the output connector to have the correct + comment string in the weather data bus, because the weather + data bus displays the comment string of the output signal + that is connected to the weather data bus. + Without this construct, the weather data bus would simply show + \"Connector of Real output signal\". +

    + ", revisions=" -
      -
    • -April 14, 2020, by Michael Wetter:
      -First implementation. -
    • -
    -"), +
      +
    • + April 14, 2020, by Michael Wetter:
      + First implementation. +
    • +
    + "), Icon( graphics={ Text( extent={{-100,30},{98,-16}}, - lineColor={0,0,0}, - textString="0 <= u")})); + textColor={0,0,0}, + textString="0 <= u")}), + __Dymola_LockedEditing="Model from IBPSA"); end PartialLimiterMin; diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/SolarTime.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/SolarTime.mo index b51652cf22..e57796e98a 100644 --- a/AixLib/BoundaryConditions/WeatherData/BaseClasses/SolarTime.mo +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/SolarTime.mo @@ -18,46 +18,47 @@ equation annotation ( defaultComponentName="solTim", Documentation(info=" -

    -This component computes the local solar time. -

    -

    -Note: To avoid events, this block does not convert solar time to a scale of 24 hours. -

    -", revisions=" -
      -
    • -Feb. 16, 2012, by Michael Wetter:
      -Removed section that limits solar time to -0 ≤ solTim ≤ 86400 as this triggers -events, and is not needed because solar time is used in -trigonometric functions only. -
    • -
    • -May 13, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -"), +

    + This component computes the local solar time. +

    +

    + Note: To avoid events, this block does not convert solar time to a scale of 24 hours. +

    + ",revisions=" +
      +
    • + Feb. 16, 2012, by Michael Wetter:
      + Removed section that limits solar time to + 0 ≤ solTim ≤ 86400 as this triggers + events, and is not needed because solar time is used in + trigonometric functions only. +
    • +
    • + May 13, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), Icon(coordinateSystem(preserveAspectRatio=true, extent={{-100,-100},{100, 100}}), graphics={Text( extent={{-150,110},{150,150}}, textString="%name", - lineColor={0,0,255}), + textColor={0,0,255}), Text( extent={{-54,38},{42,-24}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="t"), Text( extent={{-4,4},{52,-24}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="sol"), Text( extent={{-94,66},{-42,50}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="equTim"), Text( extent={{-96,-44},{-44,-60}}, - lineColor={0,0,127}, - textString="locTim")})); + textColor={0,0,127}, + textString="locTim")}), + __Dymola_LockedEditing="Model from IBPSA"); end SolarTime; diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/SourceSelector.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/SourceSelector.mo index d69be6d056..496a9b4e02 100644 --- a/AixLib/BoundaryConditions/WeatherData/BaseClasses/SourceSelector.mo +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/SourceSelector.mo @@ -5,13 +5,13 @@ block SourceSelector parameter AixLib.BoundaryConditions.Types.DataSource datSou "Data source" annotation(Evaluate=true); parameter Real p "Parameter value"; - Modelica.Blocks.Interfaces.RealInput uFil if - datSou == AixLib.BoundaryConditions.Types.DataSource.File + Modelica.Blocks.Interfaces.RealInput uFil + if datSou == AixLib.BoundaryConditions.Types.DataSource.File "Input signal from file reader" annotation (Placement(transformation(extent={{-140,-80},{-100,-40}}), iconTransformation(extent={{-120,-90},{-100,-70}}))); - Modelica.Blocks.Interfaces.RealInput uCon if - datSou == AixLib.BoundaryConditions.Types.DataSource.Input + Modelica.Blocks.Interfaces.RealInput uCon + if datSou == AixLib.BoundaryConditions.Types.DataSource.Input "Input signal from input connector" annotation (Placement(transformation(extent={{-140,40},{-100,80}}), iconTransformation(extent={{-120,70},{-100,90}}))); @@ -24,19 +24,19 @@ equation annotation ( defaultComponentName="souSel", Documentation(info=" -

    -Block that produces at its output the input value uCon, uFil -or the parameter value p depending on the parameter value -datSou. -

    -", revisions=" -
      -
    • -April 14, 2020, by Michael Wetter:
      -First implementation. -
    • -
    -"), +

    + Block that produces at its output the input value uCon, uFil + or the parameter value p depending on the parameter value + datSou. +

    + ",revisions=" +
      +
    • + April 14, 2020, by Michael Wetter:
      + First implementation. +
    • +
    + "), Icon(graphics={ Rectangle( extent={{-100,100},{100,-100}}, @@ -60,5 +60,6 @@ First implementation. Ellipse(lineColor={0,0,255}, pattern=LinePattern.None, fillPattern=FillPattern.Solid, - extent={{2,-8},{18,8}})})); + extent={{2,-8},{18,8}})}), + __Dymola_LockedEditing="Model from IBPSA"); end SourceSelector; diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/SourceSelectorRadiation.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/SourceSelectorRadiation.mo index d57802c784..570665a88f 100644 --- a/AixLib/BoundaryConditions/WeatherData/BaseClasses/SourceSelectorRadiation.mo +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/SourceSelectorRadiation.mo @@ -7,31 +7,31 @@ block SourceSelectorRadiation Modelica.Blocks.Interfaces.RealInput HDirNorFil( final quantity="RadiantEnergyFluenceRate", - final unit="W/m2") if - datSou == AixLib.BoundaryConditions.Types.RadiationDataSource.File + final unit="W/m2") + if datSou == AixLib.BoundaryConditions.Types.RadiationDataSource.File "Direct normal solar irradiation from weather data file" annotation (Placement(transformation(extent={{-140, -10},{-100,30}}), iconTransformation(extent={{-120,10},{-100,30}}))); Modelica.Blocks.Interfaces.RealInput HDirNorIn( final quantity="RadiantEnergyFluenceRate", - final unit="W/m2") if - datSou == AixLib.BoundaryConditions.Types.RadiationDataSource.Input_HDirNor_HDifHor or + final unit="W/m2") + if datSou == AixLib.BoundaryConditions.Types.RadiationDataSource.Input_HDirNor_HDifHor or datSou == AixLib.BoundaryConditions.Types.RadiationDataSource.Input_HDirNor_HGloHor "Direct normal solar irradiation from input connector" annotation (Placement(transformation(extent={{-140, -40},{-100,0}}), iconTransformation(extent={{-120,-30},{-100,-10}}))); Modelica.Blocks.Interfaces.RealInput HDifHorFil( final quantity="RadiantEnergyFluenceRate", - final unit="W/m2") if - datSou == AixLib.BoundaryConditions.Types.RadiationDataSource.File + final unit="W/m2") + if datSou == AixLib.BoundaryConditions.Types.RadiationDataSource.File "Diffuse horizontal solar irradiation from weather data file" annotation (Placement(transformation( extent={{-140,60},{-100,100}}), iconTransformation(extent={{-120,80},{ -100,100}}))); Modelica.Blocks.Interfaces.RealInput HDifHorIn( final quantity="RadiantEnergyFluenceRate", - final unit="W/m2") if - datSou == AixLib.BoundaryConditions.Types.RadiationDataSource.Input_HGloHor_HDifHor or + final unit="W/m2") + if datSou == AixLib.BoundaryConditions.Types.RadiationDataSource.Input_HGloHor_HDifHor or datSou == AixLib.BoundaryConditions.Types.RadiationDataSource.Input_HDirNor_HDifHor "Diffuse horizontal solar irradiation from input connector" annotation (Placement(transformation( extent={{-140,30},{-100,70}}), iconTransformation(extent={{-120,50},{ @@ -39,16 +39,16 @@ block SourceSelectorRadiation Modelica.Blocks.Interfaces.RealInput HGloHorFil( final quantity="RadiantEnergyFluenceRate", - final unit="W/m2") if - datSou == AixLib.BoundaryConditions.Types.RadiationDataSource.File + final unit="W/m2") + if datSou == AixLib.BoundaryConditions.Types.RadiationDataSource.File "Global horizontal solar irradiation from weather data file" annotation (Placement(transformation(extent={{-140, -70},{-100,-30}}), iconTransformation(extent={{-120,-70},{-100, -50}}))); Modelica.Blocks.Interfaces.RealInput HGloHorIn( final quantity="RadiantEnergyFluenceRate", - final unit="W/m2") if - datSou == AixLib.BoundaryConditions.Types.RadiationDataSource.Input_HGloHor_HDifHor or + final unit="W/m2") + if datSou == AixLib.BoundaryConditions.Types.RadiationDataSource.Input_HGloHor_HDifHor or datSou == AixLib.BoundaryConditions.Types.RadiationDataSource.Input_HDirNor_HGloHor "Global horizontal solar irradiation from input connector" annotation (Placement(transformation(extent={{-140, -98},{-100,-58}}), iconTransformation(extent={{-120,-100},{-100, @@ -86,7 +86,7 @@ block SourceSelectorRadiation protected constant Real epsCos = 1e-6 "Small value to avoid division by 0"; - constant Modelica.SIunits.HeatFlux solCon = 1367.7 "Solar constant"; + constant Modelica.Units.SI.HeatFlux solCon=1367.7 "Solar constant"; // Conditional connectors Modelica.Blocks.Interfaces.RealInput HGloHor_in_internal( @@ -151,32 +151,32 @@ equation annotation ( defaultComponentName="souSel", Documentation(info=" -

    -Block that outputs the direct normal, diffuse horizontal and diffuse global -solar irradiation. -This block computes these output quantities based on conditionally provided -input signals. -

    -

    -The computations are based on Wetter (2004). -

    -

    References

    - -", revisions=" -
      -
    • -April 14, 2020, by Michael Wetter:
      -First implementation. -
    • -
    -"), +

    + Block that outputs the direct normal, diffuse horizontal and diffuse global + solar irradiation. + This block computes these output quantities based on conditionally provided + input signals. +

    +

    + The computations are based on Wetter (2004). +

    +

    References

    + + ",revisions=" +
      +
    • + April 14, 2020, by Michael Wetter:
      + First implementation. +
    • +
    + "), Icon(graphics={ Rectangle( extent={{-100,100},{100,-100}}, @@ -196,5 +196,6 @@ First implementation. Ellipse(lineColor={0,0,255}, pattern=LinePattern.None, fillPattern=FillPattern.Solid, - extent={{-2,-8},{14,8}})})); + extent={{-2,-8},{14,8}})}), + __Dymola_LockedEditing="Model from IBPSA"); end SourceSelectorRadiation; diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/getAbsolutePath.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/getAbsolutePath.mo index 33f0550d6d..5480717575 100644 --- a/AixLib/BoundaryConditions/WeatherData/BaseClasses/getAbsolutePath.mo +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/getAbsolutePath.mo @@ -1,50 +1,58 @@ within AixLib.BoundaryConditions.WeatherData.BaseClasses; -function getAbsolutePath "Gets the absolute path of a URI" +pure function getAbsolutePath "Gets the absolute path of a URI" extends Modelica.Icons.Function; input String uri "A URI"; output String path "The absolute path of the file pointed to by the URI"; algorithm path := Modelica.Utilities.Files.loadResource(uri); - assert(Modelica.Utilities.Files.exist(path), "File '" + uri + "' does not exist."); annotation (Documentation(info=" -

    -The function returns the absolute path of a -uniform resource identifier (URI) or local file name. -If the file is not found, then this function -terminates with an assert. -

    -

    -This function has been introduced to allow users -to specify the name of weather data files with a path -that is relative to the library path. This allows users -to change the current working directory while still -being able to read the files. -

    -", revisions=" -
      -
    • -July 07, 2016, by Thierry S. Nouidui:
      -Removed the use of Modelica.Utilities.Files.fullPathName -which is implicitly done in Modelica.Utilities.Files.loadResource.
      -Removed the addition of file:// to file names which do not start -with file://, or modelica://. -This is not required when using Modelica.Utilities.Files.loadResource. -
    • -
    • -April 21, 2016, by Michael Wetter:
      -Replaced ModelicaServices.ExternalReferences.loadResource with -Modelica.Utilities.Files.loadResource. -
    • -
    • -October 8, 2013, by Michael Wetter:
      -Improved algorithm that determines the absolute path of the file. -Now the function works from any directory as long as the AixLib library -is on the MODELICAPATH. -
    • -
    • -May 2, 2013, by Michael Wetter:
      -First implementation. -
    • -
    -")); +

    + The function returns the absolute path of a + uniform resource identifier (URI) or local file name. + If the file is not found, then this function + terminates with an assert. +

    +

    + This function has been introduced to allow users + to specify the name of weather data files with a path + that is relative to the library path. This allows users + to change the current working directory while still + being able to read the files. +

    + ",revisions=" +
      +
    • + December 11, 2021, by Michael Wetter:
      + Removed assertion if file does not exist. This has been removed because it + makes the function impure, and then the test + + AixLib.BoundaryConditions.WeatherData.BaseClasses.Examples.GetAbsolutePath + fails. +
    • +
    • + July 07, 2016, by Thierry S. Nouidui:
      + Removed the use of Modelica.Utilities.Files.fullPathName + which is implicitly done in Modelica.Utilities.Files.loadResource.
      + Removed the addition of file:// to file names which do not start + with file://, or modelica://. + This is not required when using Modelica.Utilities.Files.loadResource. +
    • +
    • + April 21, 2016, by Michael Wetter:
      + Replaced ModelicaServices.ExternalReferences.loadResource with + Modelica.Utilities.Files.loadResource. +
    • +
    • + October 8, 2013, by Michael Wetter:
      + Improved algorithm that determines the absolute path of the file. + Now the function works from any directory as long as the AixLib library + is on the MODELICAPATH. +
    • +
    • + May 2, 2013, by Michael Wetter:
      + First implementation. +
    • +
    + "), + __Dymola_LockedEditing="Model from IBPSA"); end getAbsolutePath; diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/getAltitudeLocationTMY3.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/getAltitudeLocationTMY3.mo new file mode 100644 index 0000000000..29e1f79902 --- /dev/null +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/getAltitudeLocationTMY3.mo @@ -0,0 +1,38 @@ +within AixLib.BoundaryConditions.WeatherData.BaseClasses; +impure function getAltitudeLocationTMY3 "Gets the altitude from TMY3 file" + extends Modelica.Icons.Function; + input String filNam "Name of weather data file" + annotation (Dialog( + loadSelector(filter="Weather files (*.mos)", caption= + "Select weather file"))); + output Modelica.Units.SI.Length alt "Altitude of TMY3 location"; +protected + Integer nexInd "Next index, used for error handling"; + String element "String representation of the returned element"; +algorithm + element := + AixLib.BoundaryConditions.WeatherData.BaseClasses.getLastHeaderElementTMY3( + filNam=filNam, + start="#LOCATION", + name = "Altitude"); + (nexInd, alt) :=Modelica.Utilities.Strings.Advanced.scanReal( + string=element, + startIndex=1, + unsigned=false); + + annotation (Documentation(info=" + This function returns the altitude of the TMY3 weather data file. + ",revisions=" +
      +
    • + December 11, 2021, by Michael Wetter:
      + Added impure declaration for MSL 4.0.0. +
    • +
    • + May 2, 2021, by Ettore Zanetti:
      + First implementation. +
    • +
    + "), + __Dymola_LockedEditing="Model from IBPSA"); +end getAltitudeLocationTMY3; diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/getHeaderElementTMY3.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/getHeaderElementTMY3.mo index 6e54e5b454..45e8362cff 100644 --- a/AixLib/BoundaryConditions/WeatherData/BaseClasses/getHeaderElementTMY3.mo +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/getHeaderElementTMY3.mo @@ -1,5 +1,5 @@ within AixLib.BoundaryConditions.WeatherData.BaseClasses; -function getHeaderElementTMY3 +impure function getHeaderElementTMY3 "Gets an element from the header of a TMY3 weather data file" extends Modelica.Icons.Function; input String filNam "Name of weather data file" @@ -61,45 +61,50 @@ algorithm element :=Modelica.Utilities.Strings.substring(lin, startIndex=staInd+1, endIndex=nexInd-1); annotation (Inline=false, Documentation(info=" -This function scans the weather data file for a line that starts with the string
    -start
    -
    -where start is a parameter. -When this line is found, the function returns the element at the position number -position, where position is a parameter. -A comma is used as the delimiter of the elements. -", revisions=" -
      -
    • -April 21, 2016, by Michael Wetter:
      -Removed call to - -AixLib.BoundaryConditions.WeatherData.BaseClasses.getAbsolutePath -because this function calls - -Modelica.Utilities.Files.loadResource, which needs to be resolved at compilation -time, which is difficult if it is inside a function. -This is for -Buildings, #506. -
    • -
    • -September 24, 2015, by Marcus Fuchs:
      -Replace Dymola specific annotation by loadSelector -for MSL compliancy as reported by @tbeu at -RWTH-EBC/AixLib#107 -
    • -
    • -May 2, 2013, by Michael Wetter:
      -Added function call to getAbsolutePath. -
    • -
    • -February 25, 2012, by Michael Wetter:
      -Removed default value for parameter name. -
    • -
    • -March 5, 2011, by Michael Wetter:
      -First implementation. -
    • -
    -")); + This function scans the weather data file for a line that starts with the string
    + start
    + 
    + where start is a parameter. + When this line is found, the function returns the element at the position number + position, where position is a parameter. + A comma is used as the delimiter of the elements. + ",revisions=" +
      +
    • + December 11, 2021, by Michael Wetter:
      + Added impure declaration for MSL 4.0.0. +
    • +
    • + April 21, 2016, by Michael Wetter:
      + Removed call to + + AixLib.BoundaryConditions.WeatherData.BaseClasses.getAbsolutePath + because this function calls + + Modelica.Utilities.Files.loadResource, which needs to be resolved at compilation + time, which is difficult if it is inside a function. + This is for + Buildings, #506. +
    • +
    • + September 24, 2015, by Marcus Fuchs:
      + Replace Dymola specific annotation by loadSelector + for MSL compliancy as reported by @tbeu at + RWTH-EBC/AixLib#107 +
    • +
    • + May 2, 2013, by Michael Wetter:
      + Added function call to getAbsolutePath. +
    • +
    • + February 25, 2012, by Michael Wetter:
      + Removed default value for parameter name. +
    • +
    • + March 5, 2011, by Michael Wetter:
      + First implementation. +
    • +
    + "), + __Dymola_LockedEditing="Model from IBPSA"); end getHeaderElementTMY3; diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/getLastHeaderElementTMY3.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/getLastHeaderElementTMY3.mo new file mode 100644 index 0000000000..bc666a04f2 --- /dev/null +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/getLastHeaderElementTMY3.mo @@ -0,0 +1,92 @@ +within AixLib.BoundaryConditions.WeatherData.BaseClasses; +impure function getLastHeaderElementTMY3 + "Gets last element from the header of a TMY3 weather data file" + extends Modelica.Icons.Function; + input String filNam "Name of weather data file" + annotation (Dialog( + loadSelector(filter="Weather files (*.mos)", caption= + "Select weather file"))); + input String start "Start of the string that contains the elements"; + input String name "Name of data element, used in error reporting"; + output String element + "Element at position 'pos' of the line that starts with 'start'"; +protected + String lin "Line that is used in parser"; + Integer iLin "Line number"; + Integer index = 0 "Index of string #LOCATION"; + Integer staInd "Start index used when parsing a real number"; + Integer lasInd "Next index used when parsing a real number"; + Boolean EOF "Flag, true if EOF has been reached"; +algorithm + // Get line that starts with 'start' + iLin :=0; + EOF :=false; + while (not EOF) and (index == 0) loop + iLin:=iLin + 1; + (lin, EOF) :=Modelica.Utilities.Streams.readLine(fileName=filNam, + lineNumber=iLin); + index :=Modelica.Utilities.Strings.find( + string=lin, + searchString=start, + startIndex=1, + caseSensitive=false); + end while; + assert(not EOF, "Error: Did not find '" + start + "' when scanning the weather file." + + "\n Check for correct weather file syntax."); + // gest first and last index of the last string header element + staInd := Modelica.Utilities.Strings.findLast( + string=lin, + searchString = ",", + startIndex=0); + lasInd := integer(Modelica.Utilities.Strings.length(lin)); + // Get the element + element :=Modelica.Utilities.Strings.substring(lin, startIndex=staInd+1, endIndex=lasInd); + annotation (Inline=false, + Documentation(info=" + This function scans the weather data file for a line that starts with the string
    + start
    + 
    + where start is a parameter. + When this line is found, the function returns the element at the position number + position, where position is a parameter. + A comma is used as the delimiter of the elements. + ",revisions=" +
      +
    • + December 11, 2021, by Michael Wetter:
      + Added impure declaration for MSL 4.0.0. +
    • +
    • + April 21, 2016, by Michael Wetter:
      + Removed call to + + AixLib.BoundaryConditions.WeatherData.BaseClasses.getAbsolutePath + because this function calls + + Modelica.Utilities.Files.loadResource, which needs to be resolved at compilation + time, which is difficult if it is inside a function. + This is for + Buildings, #506. +
    • +
    • + September 24, 2015, by Marcus Fuchs:
      + Replace Dymola specific annotation by loadSelector + for MSL compliancy as reported by @tbeu at + RWTH-EBC/AixLib#107 +
    • +
    • + May 2, 2013, by Michael Wetter:
      + Added function call to getAbsolutePath. +
    • +
    • + February 25, 2012, by Michael Wetter:
      + Removed default value for parameter name. +
    • +
    • + March 5, 2011, by Michael Wetter:
      + First implementation. +
    • +
    + "), + __Dymola_LockedEditing="Model from IBPSA"); +end getLastHeaderElementTMY3; diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/getLatitudeTMY3.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/getLatitudeTMY3.mo index fde8137d19..dbabd47c2c 100644 --- a/AixLib/BoundaryConditions/WeatherData/BaseClasses/getLatitudeTMY3.mo +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/getLatitudeTMY3.mo @@ -1,11 +1,11 @@ within AixLib.BoundaryConditions.WeatherData.BaseClasses; -function getLatitudeTMY3 "Gets the latitude from a TMY3 weather data file" +impure function getLatitudeTMY3 "Gets the latitude from a TMY3 weather data file" extends Modelica.Icons.Function; input String filNam "Name of weather data file" annotation (Dialog( loadSelector(filter="Weather files (*.mos)", caption= "Select weather file"))); - output Modelica.SIunits.Angle lat "Latitude from the weather file"; + output Modelica.Units.SI.Angle lat "Latitude from the weather file"; protected Integer nexInd "Next index, used for error handling"; String element "String representation of the returned element"; @@ -30,19 +30,24 @@ algorithm String(lat) + " (= " + String(lat*180/Modelica.Constants.pi) + " degrees)."); annotation (Documentation(info=" -This function returns the latitude of the TMY3 weather data file. -", revisions=" -
      -
    • -September 24, 2015, by Marcus Fuchs:
      -Replace Dymola specific annotation by loadSelector -for MSL compliancy as reported by @tbeu at -RWTH-EBC/AixLib#107 -
    • -
    • -February 25, 2012, by Michael Wetter:
      -First implementation. -
    • -
    -")); + This function returns the latitude of the TMY3 weather data file. + ",revisions=" +
      +
    • + December 11, 2021, by Michael Wetter:
      + Added impure declaration for MSL 4.0.0. +
    • +
    • + September 24, 2015, by Marcus Fuchs:
      + Replace Dymola specific annotation by loadSelector + for MSL compliancy as reported by @tbeu at + RWTH-EBC/AixLib#107 +
    • +
    • + February 25, 2012, by Michael Wetter:
      + First implementation. +
    • +
    + "), + __Dymola_LockedEditing="Model from IBPSA"); end getLatitudeTMY3; diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/getLongitudeTMY3.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/getLongitudeTMY3.mo index ce70f941cd..ef7b57fe1e 100644 --- a/AixLib/BoundaryConditions/WeatherData/BaseClasses/getLongitudeTMY3.mo +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/getLongitudeTMY3.mo @@ -1,11 +1,11 @@ within AixLib.BoundaryConditions.WeatherData.BaseClasses; -function getLongitudeTMY3 "Gets the longitude from a TMY3 weather data file" +impure function getLongitudeTMY3 "Gets the longitude from a TMY3 weather data file" extends Modelica.Icons.Function; input String filNam "Name of weather data file" annotation (Dialog( loadSelector(filter="Weather files (*.mos)", caption= "Select weather file"))); - output Modelica.SIunits.Angle lon "Longitude from the weather file"; + output Modelica.Units.SI.Angle lon "Longitude from the weather file"; protected Integer nexInd "Next index, used for error handling"; String element "String representation of the returned element"; @@ -30,19 +30,24 @@ algorithm String(lon) + " (= " + String(lon*180/Modelica.Constants.pi) + " degrees)."); annotation (Documentation(info=" -This function returns the longitude of the TMY3 weather data file. -", revisions=" -
      -
    • -September 24, 2015, by Marcus Fuchs:
      -Replace Dymola specific annotation by loadSelector -for MSL compliancy as reported by @tbeu at -RWTH-EBC/AixLib#107 -
    • -
    • -March 5, 2011, by Michael Wetter:
      -First implementation. -
    • -
    -")); + This function returns the longitude of the TMY3 weather data file. + ",revisions=" +
      +
    • + December 11, 2021, by Michael Wetter:
      + Added impure declaration for MSL 4.0.0. +
    • +
    • + September 24, 2015, by Marcus Fuchs:
      + Replace Dymola specific annotation by loadSelector + for MSL compliancy as reported by @tbeu at + RWTH-EBC/AixLib#107 +
    • +
    • + March 5, 2011, by Michael Wetter:
      + First implementation. +
    • +
    + "), + __Dymola_LockedEditing="Model from IBPSA"); end getLongitudeTMY3; diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/getTimeSpanTMY3.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/getTimeSpanTMY3.mo index 3381c1dcf7..a500bb8813 100644 --- a/AixLib/BoundaryConditions/WeatherData/BaseClasses/getTimeSpanTMY3.mo +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/getTimeSpanTMY3.mo @@ -1,11 +1,12 @@ within AixLib.BoundaryConditions.WeatherData.BaseClasses; -function getTimeSpanTMY3 +impure function getTimeSpanTMY3 "Get the time span of the weather data from the file" extends Modelica.Icons.Function; input String filNam "Name of weather data file"; input String tabNam "Name of table on weather file"; - output Modelica.SIunits.Time[2] timeSpan "Start time, end time of weather data"; + output Modelica.Units.SI.Time[2] timeSpan + "Start time, end time of weather data"; external "C" getTimeSpan(filNam, tabNam, timeSpan) annotation ( @@ -13,20 +14,25 @@ external "C" getTimeSpan(filNam, tabNam, timeSpan) IncludeDirectory="modelica://AixLib/Resources/C-Sources"); annotation (Documentation(info=" -

    -This function returns the start time (first time stamp) and end time -(last time stamp plus average increment) of the TMY3 weather data file. -

    -", revisions=" -
      -
    • -April 16, 2019, by Jianjun Hu:
      -Reimplemented to use a C function, this is for #1108. -
    • -
    • -November 15, 2017, by Ana Constantin:
      -First implementation, as part of solution to #842. -
    • -
    -")); +

    + This function returns the start time (first time stamp) and end time + (last time stamp plus average increment) of the TMY3 weather data file. +

    + ",revisions=" +
      +
    • + December 11, 2021, by Michael Wetter:
      + Added impure declaration for MSL 4.0.0. +
    • +
    • + April 16, 2019, by Jianjun Hu:
      + Reimplemented to use a C function, this is for #1108. +
    • +
    • + November 15, 2017, by Ana Constantin:
      + First implementation, as part of solution to #842. +
    • +
    + "), + __Dymola_LockedEditing="Model from IBPSA"); end getTimeSpanTMY3; diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/getTimeZoneTMY3.mo b/AixLib/BoundaryConditions/WeatherData/BaseClasses/getTimeZoneTMY3.mo index da1cf0cd2b..03590c5065 100644 --- a/AixLib/BoundaryConditions/WeatherData/BaseClasses/getTimeZoneTMY3.mo +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/getTimeZoneTMY3.mo @@ -1,11 +1,11 @@ within AixLib.BoundaryConditions.WeatherData.BaseClasses; -function getTimeZoneTMY3 "Gets the time zone from a TMY3 weather data file" +impure function getTimeZoneTMY3 "Gets the time zone from a TMY3 weather data file" extends Modelica.Icons.Function; input String filNam "Name of weather data file" annotation (Dialog( loadSelector(filter="Weather files (*.mos)", caption= "Select weather file"))); - output Modelica.SIunits.Time timZon "Time zone from the weather file"; + output Modelica.Units.SI.Time timZon "Time zone from the weather file"; protected Integer nexInd "Next index, used for error handling"; String element "String representation of the returned element"; @@ -29,19 +29,24 @@ algorithm String(timZon) + " (= " + String(timZon/3600) + " hours)."); annotation (Documentation(info=" -This function returns the time zone of the TMY3 weather data file. -", revisions=" -
      -
    • -September 24, 2015, by Marcus Fuchs:
      -Replace Dymola specific annotation by loadSelector -for MSL compliancy as reported by @tbeu at -RWTH-EBC/AixLib#107 -
    • -
    • -March 5, 2011, by Michael Wetter:
      -First implementation. -
    • -
    -")); + This function returns the time zone of the TMY3 weather data file. + ",revisions=" +
      +
    • + December 11, 2021, by Michael Wetter:
      + Added impure declaration for MSL 4.0.0. +
    • +
    • + September 24, 2015, by Marcus Fuchs:
      + Replace Dymola specific annotation by loadSelector + for MSL compliancy as reported by @tbeu at + RWTH-EBC/AixLib#107 +
    • +
    • + March 5, 2011, by Michael Wetter:
      + First implementation. +
    • +
    + "), + __Dymola_LockedEditing="Model from IBPSA"); end getTimeZoneTMY3; diff --git a/AixLib/BoundaryConditions/WeatherData/BaseClasses/package.order b/AixLib/BoundaryConditions/WeatherData/BaseClasses/package.order index 6fd3a38cac..ea5c1e4422 100644 --- a/AixLib/BoundaryConditions/WeatherData/BaseClasses/package.order +++ b/AixLib/BoundaryConditions/WeatherData/BaseClasses/package.order @@ -28,7 +28,9 @@ SolarTime SourceSelector SourceSelectorRadiation getAbsolutePath +getAltitudeLocationTMY3 getHeaderElementTMY3 +getLastHeaderElementTMY3 getLatitudeTMY3 getLongitudeTMY3 getTimeSpanTMY3 diff --git a/AixLib/BoundaryConditions/WeatherData/Bus.mo b/AixLib/BoundaryConditions/WeatherData/Bus.mo index c8ba39b8ed..d93b87a2d3 100644 --- a/AixLib/BoundaryConditions/WeatherData/Bus.mo +++ b/AixLib/BoundaryConditions/WeatherData/Bus.mo @@ -10,15 +10,16 @@ expandable connector Bus "Data bus that stores weather data" lineColor={255,204,51}, lineThickness=0.5)}), Documentation(info=" -

    -This component is an expandable connector that is used to implement a bus that contains the weather data. -

    -", revisions=" -
      -
    • -June 25, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -")); +

    + This component is an expandable connector that is used to implement a bus that contains the weather data. +

    + ",revisions=" +
      +
    • + June 25, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), + __Dymola_LockedEditing="Model from IBPSA"); end Bus; diff --git a/AixLib/BoundaryConditions/WeatherData/Examples/ReaderTMY3.mo b/AixLib/BoundaryConditions/WeatherData/Examples/ReaderTMY3.mo index 1ed3954e19..2e893aff49 100644 --- a/AixLib/BoundaryConditions/WeatherData/Examples/ReaderTMY3.mo +++ b/AixLib/BoundaryConditions/WeatherData/Examples/ReaderTMY3.mo @@ -27,19 +27,20 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/BoundaryConditions/WeatherData/Examples/ReaderTMY3.mos" "Simulate and plot"), Documentation(info=" -

    -This model tests the TMY3 data reader. -The instance weaDat obtains all weather data from the weather file, -whereas the instance weaDatInpCon obtains the global horizontal and -the diffuse horizontal solar radiation from its input connectors. -

    -", +

    + This model tests the TMY3 data reader. + The instance weaDat obtains all weather data from the weather file, + whereas the instance weaDatInpCon obtains the global horizontal and + the diffuse horizontal solar radiation from its input connectors. +

    + ", revisions=" -
      -
    • -June 25, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -")); +
      +
    • + June 25, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), + __Dymola_LockedEditing="Model from IBPSA"); end ReaderTMY3; diff --git a/AixLib/BoundaryConditions/WeatherData/Old/WeatherTRY/BaseClasses/Sun.mo b/AixLib/BoundaryConditions/WeatherData/Old/WeatherTRY/BaseClasses/Sun.mo index dbb9a041bc..7dc48656af 100644 --- a/AixLib/BoundaryConditions/WeatherData/Old/WeatherTRY/BaseClasses/Sun.mo +++ b/AixLib/BoundaryConditions/WeatherData/Old/WeatherTRY/BaseClasses/Sun.mo @@ -1,15 +1,12 @@ within AixLib.BoundaryConditions.WeatherData.Old.WeatherTRY.BaseClasses; model Sun "Computes the sun's altitude of the current site" -import Modelica.SIunits.Conversions.from_deg; -import Modelica.SIunits.Conversions.to_deg; +import Modelica.Units.Conversions.from_deg; +import Modelica.Units.Conversions.to_deg; parameter Real TimeCorrection = 0.5 "for TRY = 0.5, for TMY = 0"; - parameter Modelica.SIunits.Conversions.NonSIunits.Angle_deg Latitude - "latitude of location"; - parameter Modelica.SIunits.Conversions.NonSIunits.Angle_deg Longitude - "longitude of location in"; - parameter Modelica.SIunits.Conversions.NonSIunits.Time_hour - DiffWeatherDataTime + parameter Modelica.Units.NonSI.Angle_deg Latitude "latitude of location"; + parameter Modelica.Units.NonSI.Angle_deg Longitude "longitude of location in"; + parameter Modelica.Units.NonSI.Time_hour DiffWeatherDataTime "difference between local time and UTC, e.g. +1 for MET"; parameter Real Diff_localStandardTime_WeatherDataTime = 0 "difference between weather data time and the time of the local time zone"; diff --git a/AixLib/BoundaryConditions/WeatherData/Old/WeatherTRY/RadiationOnTiltedSurface/BaseClasses/PartialRadOnTiltedSurf.mo b/AixLib/BoundaryConditions/WeatherData/Old/WeatherTRY/RadiationOnTiltedSurface/BaseClasses/PartialRadOnTiltedSurf.mo index 5c70754523..5bc36fc8f9 100644 --- a/AixLib/BoundaryConditions/WeatherData/Old/WeatherTRY/RadiationOnTiltedSurface/BaseClasses/PartialRadOnTiltedSurf.mo +++ b/AixLib/BoundaryConditions/WeatherData/Old/WeatherTRY/RadiationOnTiltedSurface/BaseClasses/PartialRadOnTiltedSurf.mo @@ -2,16 +2,17 @@ within AixLib.BoundaryConditions.WeatherData.Old.WeatherTRY.RadiationOnTiltedSur partial model PartialRadOnTiltedSurf parameter Integer WeatherFormat = 1 "Format weather file" annotation (Dialog(group= "Properties of Weather Data", compact = true, descriptionLabel = true), choices(choice = 1 "TRY", choice= 2 "TMY", radioButtons = true)); - parameter Modelica.SIunits.Conversions.NonSIunits.Angle_deg Latitude= 49.5 - "latitude of location" + parameter Modelica.Units.NonSI.Angle_deg Latitude=49.5 "latitude of location" annotation (Dialog(group="Location Properties")); parameter Real GroundReflection=0.2 "ground reflection coefficient" annotation (Dialog(group="Ground reflection")); - parameter Modelica.SIunits.Conversions.NonSIunits.Angle_deg Azimut = 13.400 - "azimut of tilted surface, e.g. 0=south, 90=west, 180=north, -90=east" annotation(Dialog(group="Surface Properties")); - parameter Modelica.SIunits.Conversions.NonSIunits.Angle_deg Tilt = 90 - "tilt of surface, e.g. 0=horizontal surface, 90=vertical surface" annotation (Dialog(group="Surface Properties")); + parameter Modelica.Units.NonSI.Angle_deg Azimut=13.400 + "azimut of tilted surface, e.g. 0=south, 90=west, 180=north, -90=east" + annotation (Dialog(group="Surface Properties")); + parameter Modelica.Units.NonSI.Angle_deg Tilt=90 + "tilt of surface, e.g. 0=horizontal surface, 90=vertical surface" + annotation (Dialog(group="Surface Properties")); Modelica.Blocks.Interfaces.RealInput InHourAngleSun annotation (Placement(transformation( diff --git a/AixLib/BoundaryConditions/WeatherData/Old/WeatherTRY/RadiationOnTiltedSurface/RadOnTiltedSurf_Liu.mo b/AixLib/BoundaryConditions/WeatherData/Old/WeatherTRY/RadiationOnTiltedSurface/RadOnTiltedSurf_Liu.mo index 7fe63ec336..52d5a86bba 100644 --- a/AixLib/BoundaryConditions/WeatherData/Old/WeatherTRY/RadiationOnTiltedSurface/RadOnTiltedSurf_Liu.mo +++ b/AixLib/BoundaryConditions/WeatherData/Old/WeatherTRY/RadiationOnTiltedSurface/RadOnTiltedSurf_Liu.mo @@ -3,7 +3,7 @@ model RadOnTiltedSurf_Liu "Calculates solar radiation on tilted surfaces according to Liu" extends BaseClasses.PartialRadOnTiltedSurf; -import Modelica.SIunits.Conversions.from_deg; +import Modelica.Units.Conversions.from_deg; Real InBeamRadHor "beam irradiance on the horizontal surface"; Real InDiffRadHor "diffuse irradiance on the horizontal surface"; diff --git a/AixLib/BoundaryConditions/WeatherData/Old/WeatherTRY/RadiationOnTiltedSurface/RadOnTiltedSurf_Perez.mo b/AixLib/BoundaryConditions/WeatherData/Old/WeatherTRY/RadiationOnTiltedSurface/RadOnTiltedSurf_Perez.mo index 2c5900d79c..82616f4158 100644 --- a/AixLib/BoundaryConditions/WeatherData/Old/WeatherTRY/RadiationOnTiltedSurface/RadOnTiltedSurf_Perez.mo +++ b/AixLib/BoundaryConditions/WeatherData/Old/WeatherTRY/RadiationOnTiltedSurface/RadOnTiltedSurf_Perez.mo @@ -3,8 +3,8 @@ model RadOnTiltedSurf_Perez "Calculates solar radiation on tilted surfaces according to Perez" extends RadiationOnTiltedSurface.BaseClasses.PartialRadOnTiltedSurf; - import Modelica.SIunits.Conversions.to_deg; - import Modelica.SIunits.Conversions.from_deg; + import Modelica.Units.Conversions.to_deg; + import Modelica.Units.Conversions.from_deg; import Modelica.Math.sin; import Modelica.Math.acos; import Modelica.Math.cos; @@ -14,7 +14,7 @@ model RadOnTiltedSurf_Perez parameter Boolean GroundReflexApprox = false "Shall the GroundReflection be approximated?" annotation (Dialog(group= "Ground reflection")); - parameter Modelica.SIunits.Height h=0 + parameter Modelica.Units.SI.Height h=0 "height of the tilted surfaces centre in metre. if unknown it is 0"; //constants diff --git a/AixLib/BoundaryConditions/WeatherData/Old/WeatherTRY/Weather.mo b/AixLib/BoundaryConditions/WeatherData/Old/WeatherTRY/Weather.mo index e9a49901f6..9e0f6a52a6 100644 --- a/AixLib/BoundaryConditions/WeatherData/Old/WeatherTRY/Weather.mo +++ b/AixLib/BoundaryConditions/WeatherData/Old/WeatherTRY/Weather.mo @@ -1,11 +1,12 @@ within AixLib.BoundaryConditions.WeatherData.Old.WeatherTRY; model Weather "Complex weather model" - parameter Modelica.SIunits.Conversions.NonSIunits.Angle_deg Latitude = 49.5 - "latitude of location" annotation(Dialog(group = "Location Properties")); - parameter Modelica.SIunits.Conversions.NonSIunits.Angle_deg Longitude = 8.5 - "longitude of location" annotation(Dialog(group = "Location Properties")); - parameter Modelica.SIunits.Conversions.NonSIunits.Time_hour DiffWeatherDataTime = 1 - "difference between weather data time and UTC, e.g. +1 for CET" annotation(Dialog(group = "Properties of Weather Data")); + parameter Modelica.Units.NonSI.Angle_deg Latitude=49.5 "latitude of location" + annotation (Dialog(group="Location Properties")); + parameter Modelica.Units.NonSI.Angle_deg Longitude=8.5 + "longitude of location" annotation (Dialog(group="Location Properties")); + parameter Modelica.Units.NonSI.Time_hour DiffWeatherDataTime=1 + "difference between weather data time and UTC, e.g. +1 for CET" + annotation (Dialog(group="Properties of Weather Data")); parameter Real GroundReflection = 0.2 "ground reflection coefficient" annotation(Dialog(group = "Location Properties")); parameter String tableName = "wetter" "table name on file or in function usertab" annotation(Dialog(group = "Properties of Weather Data")); diff --git a/AixLib/BoundaryConditions/WeatherData/ReaderTMY3.mo b/AixLib/BoundaryConditions/WeatherData/ReaderTMY3.mo index 6b15f52bde..224fc7409e 100644 --- a/AixLib/BoundaryConditions/WeatherData/ReaderTMY3.mo +++ b/AixLib/BoundaryConditions/WeatherData/ReaderTMY3.mo @@ -18,7 +18,7 @@ block ReaderTMY3 "Reader for TMY3 weather data" parameter AixLib.BoundaryConditions.Types.DataSource pAtmSou=AixLib.BoundaryConditions.Types.DataSource.Parameter "Atmospheric pressure" annotation (Evaluate=true, HideResult=true, Dialog(tab="Data source")); - parameter Modelica.SIunits.Pressure pAtm=101325 + parameter Modelica.Units.SI.Pressure pAtm=101325 "Atmospheric pressure (used if pAtmSou=Parameter)" annotation (Dialog(tab="Data source")); Modelica.Blocks.Interfaces.RealInput pAtm_in( @@ -34,7 +34,7 @@ block ReaderTMY3 "Reader for TMY3 weather data" parameter AixLib.BoundaryConditions.Types.DataSource TDryBulSou=AixLib.BoundaryConditions.Types.DataSource.File "Dry bulb temperature" annotation (Evaluate=true, HideResult=true, Dialog(tab="Data source")); - parameter Modelica.SIunits.Temperature TDryBul(displayUnit="degC") = 293.15 + parameter Modelica.Units.SI.Temperature TDryBul(displayUnit="degC") = 293.15 "Dry bulb temperature (used if TDryBul=Parameter)" annotation (Dialog(tab="Data source")); Modelica.Blocks.Interfaces.RealInput TDryBul_in( @@ -49,7 +49,7 @@ block ReaderTMY3 "Reader for TMY3 weather data" parameter AixLib.BoundaryConditions.Types.DataSource TDewPoiSou=AixLib.BoundaryConditions.Types.DataSource.File "Dew point temperature" annotation (Evaluate=true, HideResult=true, Dialog(tab="Data source")); - parameter Modelica.SIunits.Temperature TDewPoi(displayUnit="degC") = 283.15 + parameter Modelica.Units.SI.Temperature TDewPoi(displayUnit="degC") = 283.15 "Dew point temperature (used if TDewPoi=Parameter)" annotation (Dialog(tab="Data source")); Modelica.Blocks.Interfaces.RealInput TDewPoi_in( @@ -63,14 +63,14 @@ block ReaderTMY3 "Reader for TMY3 weather data" // Black body sky temperature parameter AixLib.BoundaryConditions.Types.DataSource TBlaSkySou=AixLib.BoundaryConditions.Types.DataSource.File "Black-body sky temperature" annotation (Evaluate=true, HideResult=true, Dialog(tab="Data source")); - parameter Modelica.SIunits.Temperature TBlaSky=273.15 + parameter Modelica.Units.SI.Temperature TBlaSky=273.15 "Black-body sky temperature (used if TBlaSkySou=Parameter)" annotation (Dialog(tab="Data source")); Modelica.Blocks.Interfaces.RealInput TBlaSky_in( final quantity="ThermodynamicTemperature", displayUnit="degC", - final unit="K") if - (TBlaSkySou == AixLib.BoundaryConditions.Types.DataSource.Input) + final unit="K") + if (TBlaSkySou == AixLib.BoundaryConditions.Types.DataSource.Input) "Black-body sky temperature" annotation (Placement(transformation(extent={{-240,120},{-200,160}}), iconTransformation(extent={{-240,120},{-200,160}}))); @@ -94,7 +94,7 @@ block ReaderTMY3 "Reader for TMY3 weather data" // Wind speed parameter AixLib.BoundaryConditions.Types.DataSource winSpeSou=AixLib.BoundaryConditions.Types.DataSource.File "Wind speed" annotation (Evaluate=true, HideResult=true, Dialog(tab="Data source")); - parameter Modelica.SIunits.Velocity winSpe(min=0) = 1 + parameter Modelica.Units.SI.Velocity winSpe(min=0) = 1 "Wind speed (used if winSpe=Parameter)" annotation (Dialog(tab="Data source")); Modelica.Blocks.Interfaces.RealInput winSpe_in( @@ -108,7 +108,7 @@ block ReaderTMY3 "Reader for TMY3 weather data" // Wind direction parameter AixLib.BoundaryConditions.Types.DataSource winDirSou=AixLib.BoundaryConditions.Types.DataSource.File "Wind direction" annotation (Evaluate=true, HideResult=true, Dialog(tab="Data source")); - parameter Modelica.SIunits.Angle winDir=1.0 + parameter Modelica.Units.SI.Angle winDir=1.0 "Wind direction (used if winDir=Parameter)" annotation (Dialog(tab="Data source")); Modelica.Blocks.Interfaces.RealInput winDir_in( @@ -122,7 +122,7 @@ block ReaderTMY3 "Reader for TMY3 weather data" // Infrared horizontal radiation parameter AixLib.BoundaryConditions.Types.DataSource HInfHorSou=AixLib.BoundaryConditions.Types.DataSource.File "Infrared horizontal radiation" annotation (Evaluate=true, HideResult=true, Dialog(tab="Data source")); - parameter Modelica.SIunits.HeatFlux HInfHor=0.0 + parameter Modelica.Units.SI.HeatFlux HInfHor=0.0 "Infrared horizontal radiation (used if HInfHorSou=Parameter)" annotation (Dialog(tab="Data source")); Modelica.Blocks.Interfaces.RealInput HInfHor_in( @@ -139,8 +139,8 @@ block ReaderTMY3 "Reader for TMY3 weather data" // Global horizontal radiation Modelica.Blocks.Interfaces.RealInput HGloHor_in( final quantity="RadiantEnergyFluenceRate", - final unit="W/m2") if - (HSou == AixLib.BoundaryConditions.Types.RadiationDataSource.Input_HGloHor_HDifHor or + final unit="W/m2") + if (HSou == AixLib.BoundaryConditions.Types.RadiationDataSource.Input_HGloHor_HDifHor or HSou == AixLib.BoundaryConditions.Types.RadiationDataSource.Input_HDirNor_HGloHor) "Input global horizontal radiation" annotation (Placement(transformation(extent={{-240,-320},{-200,-280}}), @@ -149,8 +149,8 @@ block ReaderTMY3 "Reader for TMY3 weather data" // Diffuse horizontal radiation Modelica.Blocks.Interfaces.RealInput HDifHor_in( final quantity="RadiantEnergyFluenceRate", - final unit="W/m2") if - (HSou == AixLib.BoundaryConditions.Types.RadiationDataSource.Input_HGloHor_HDifHor or + final unit="W/m2") + if (HSou == AixLib.BoundaryConditions.Types.RadiationDataSource.Input_HGloHor_HDifHor or HSou == AixLib.BoundaryConditions.Types.RadiationDataSource.Input_HDirNor_HDifHor) "Input diffuse horizontal radiation" annotation (Placement(transformation(extent={{-240,-240},{-200,-200}}), @@ -158,8 +158,8 @@ block ReaderTMY3 "Reader for TMY3 weather data" //-------------------------------------------------------------- // Direct normal radiation Modelica.Blocks.Interfaces.RealInput HDirNor_in(final quantity="RadiantEnergyFluenceRate", - final unit="W/m2") if - (HSou == AixLib.BoundaryConditions.Types.RadiationDataSource.Input_HDirNor_HDifHor or + final unit="W/m2") + if (HSou == AixLib.BoundaryConditions.Types.RadiationDataSource.Input_HDirNor_HDifHor or HSou == AixLib.BoundaryConditions.Types.RadiationDataSource.Input_HDirNor_HGloHor) "Input direct normal radiation" annotation (Placement(transformation(extent={{-240,-280},{-200,-240}}), @@ -222,20 +222,23 @@ block ReaderTMY3 "Reader for TMY3 weather data" Evaluate=true, Dialog(tab="Advanced", group="Sky temperature")); - final parameter Modelica.SIunits.Angle lon(displayUnit="deg")= - AixLib.BoundaryConditions.WeatherData.BaseClasses.getLongitudeTMY3( - filNam) "Longitude"; - final parameter Modelica.SIunits.Angle lat(displayUnit="deg")= - AixLib.BoundaryConditions.WeatherData.BaseClasses.getLatitudeTMY3( - filNam) "Latitude"; - final parameter Modelica.SIunits.Time timZon(displayUnit="h")= + final parameter Modelica.Units.SI.Angle lon(displayUnit="deg")= + AixLib.BoundaryConditions.WeatherData.BaseClasses.getLongitudeTMY3(filNam) + "Longitude"; + final parameter Modelica.Units.SI.Angle lat(displayUnit="deg")= + AixLib.BoundaryConditions.WeatherData.BaseClasses.getLatitudeTMY3(filNam) + "Latitude"; + final parameter Modelica.Units.SI.Time timZon(displayUnit="h")= AixLib.BoundaryConditions.WeatherData.BaseClasses.getTimeZoneTMY3(filNam) "Time zone"; + final parameter Modelica.Units.SI.Length alt(displayUnit="m")= + AixLib.BoundaryConditions.WeatherData.BaseClasses.getAltitudeLocationTMY3( + filNam) "Location altitude above sea level"; protected - final parameter Modelica.SIunits.Time[2] timeSpan= - AixLib.BoundaryConditions.WeatherData.BaseClasses.getTimeSpanTMY3(filNam, "tab1") - "Start time, end time of weather data"; + final parameter Modelica.Units.SI.Time[2] timeSpan= + AixLib.BoundaryConditions.WeatherData.BaseClasses.getTimeSpanTMY3(filNam, + "tab1") "Start time, end time of weather data"; Modelica.Blocks.Tables.CombiTable1Ds datRea( final tableOnFile=true, @@ -312,8 +315,8 @@ protected AixLib.BoundaryConditions.WeatherData.BaseClasses.CheckDewPointTemperature cheTemDewPoi "Check dew point temperature" annotation (Placement(transformation(extent={{160,-240},{180,-220}}))); - Modelica.Blocks.Math.Gain conRelHum(final k=0.01) if - relHumSou == AixLib.BoundaryConditions.Types.DataSource.File + Modelica.Blocks.Math.Gain conRelHum(final k=0.01) + if relHumSou == AixLib.BoundaryConditions.Types.DataSource.File "Convert the relative humidity from percentage to [0, 1] " annotation (Placement(transformation(extent={{40,14},{60,34}}))); BaseClasses.CheckPressure chePre "Check the air pressure" @@ -337,8 +340,8 @@ protected AixLib.BoundaryConditions.WeatherData.BaseClasses.LimiterWindDirection limWinDir "Limits the wind direction" annotation (Placement(transformation(extent={{160,-280},{180,-260}}))); - SkyTemperature.BlackBody TBlaSkyCom(final calTSky=calTSky) if - TBlaSkySou == AixLib.BoundaryConditions.Types.DataSource.File + SkyTemperature.BlackBody TBlaSkyCom(final calTSky=calTSky) + if TBlaSkySou == AixLib.BoundaryConditions.Types.DataSource.File "Computation of the black-body sky temperature" annotation (Placement(transformation(extent={{240,-220},{260,-200}}))); AixLib.Utilities.Time.ModelTime modTim "Model time" @@ -387,8 +390,8 @@ protected annotation (Placement(transformation(extent={{40,-240},{60,-220}}))); SolarGeometry.BaseClasses.AltitudeAngle altAng "Solar altitude angle" annotation (Placement(transformation(extent={{-28,-226},{-8,-206}}))); - SolarGeometry.BaseClasses.ZenithAngle zenAng( - final lat = lat) "Zenith angle" + SolarGeometry.BaseClasses.ZenithAngle zenAng + "Zenith angle" annotation (Placement(transformation(extent={{-70,-226},{-50,-206}}))); SolarGeometry.BaseClasses.Declination decAng "Declination angle" annotation (Placement(transformation(extent={{-120,-220},{-100,-200}}))); @@ -399,7 +402,8 @@ protected annotation (Placement(transformation(extent={{-150,-290},{-130,-270}}))); Longitude longitude(final longitude=lon) "Longitude" annotation (Placement(transformation(extent={{-120,-282},{-100,-262}}))); - + Altitude altitude(final Altitude=alt) "Altitude" + annotation (Placement(transformation(extent={{226,94},{246,114}}))); //--------------------------------------------------------------------------- // Optional instanciation of a block that computes the wet bulb temperature. // This block may be needed for evaporative cooling towers. @@ -412,12 +416,12 @@ protected //--------------------------------------------------------------------------- // Conversion blocks for sky cover - Modelica.Blocks.Math.Gain conTotSkyCov(final k=0.1) if - totSkyCovSou == AixLib.BoundaryConditions.Types.DataSource.File + Modelica.Blocks.Math.Gain conTotSkyCov(final k=0.1) + if totSkyCovSou == AixLib.BoundaryConditions.Types.DataSource.File "Convert sky cover from [0...10] to [0...1]" annotation (Placement(transformation(extent={{40,-40},{60,-20}}))); - Modelica.Blocks.Math.Gain conOpaSkyCov(final k=0.1) if - opaSkyCovSou == AixLib.BoundaryConditions.Types.DataSource.File + Modelica.Blocks.Math.Gain conOpaSkyCov(final k=0.1) + if opaSkyCovSou == AixLib.BoundaryConditions.Types.DataSource.File "Convert sky cover from [0...10] to [0...1]" annotation (Placement(transformation(extent={{40,-166},{60,-146}}))); AixLib.BoundaryConditions.WeatherData.BaseClasses.CheckBlackBodySkyTemperature cheTemBlaSky(TMin=0) @@ -429,7 +433,7 @@ protected block Latitude "Generate constant signal of type Real" extends Modelica.Blocks.Icons.Block; - parameter Modelica.SIunits.Angle latitude "Latitude"; + parameter Modelica.Units.SI.Angle latitude "Latitude"; Modelica.Blocks.Interfaces.RealOutput y( unit="rad", @@ -443,37 +447,37 @@ protected extent={{-100,-100},{100,100}}), graphics={ Text( extent={{-81,32},{84,-24}}, - lineColor={0,0,0}, + textColor={0,0,0}, textString="Latitude")}), Documentation(info=" -

    -Block to output the latitude of the location. -This block is added so that the latitude is displayed -with a comment in the GUI of the weather bus connector. -

    -

    Implementation

    -

    -If - -Modelica.Blocks.Sources.Constant where used, then -the comment for the latitude would be \"Connector of Real output signal\". -As this documentation string cannot be overwritten, a new block -was implemented. -

    -", revisions=" -
      -
    • -January 4, 2016, by Michael Wetter:
      -First implementation. -
    • -
    -")); +

    + Block to output the latitude of the location. + This block is added so that the latitude is displayed + with a comment in the GUI of the weather bus connector. +

    +

    Implementation

    +

    + If + + Modelica.Blocks.Sources.Constant where used, then + the comment for the latitude would be \"Connector of Real output signal\". + As this documentation string cannot be overwritten, a new block + was implemented. +

    + ",revisions=" +
      +
    • + January 4, 2016, by Michael Wetter:
      + First implementation. +
    • +
    + ")); end Latitude; block Longitude "Generate constant signal of type Real" extends Modelica.Blocks.Icons.Block; - parameter Modelica.SIunits.Angle longitude "Longitude"; + parameter Modelica.Units.SI.Angle longitude "Longitude"; Modelica.Blocks.Interfaces.RealOutput y( unit="rad", @@ -487,33 +491,77 @@ First implementation. extent={{-100,-100},{100,100}}), graphics={ Text( extent={{-81,32},{84,-24}}, - lineColor={0,0,0}, + textColor={0,0,0}, textString="Longitude")}), Documentation(info=" -

    -Block to output the longitude of the location. -This block is added so that the longitude is displayed -with a comment in the GUI of the weather bus connector. -

    -

    Implementation

    -

    -If - -Modelica.Blocks.Sources.Constant where used, then -the comment for the longitude would be \"Connector of Real output signal\". -As this documentation string cannot be overwritten, a new block -was implemented. -

    -", revisions=" -
      -
    • -January 4, 2016, by Michael Wetter:
      -First implementation. -
    • -
    -")); +

    + Block to output the longitude of the location. + This block is added so that the longitude is displayed + with a comment in the GUI of the weather bus connector. +

    +

    Implementation

    +

    + If + + Modelica.Blocks.Sources.Constant where used, then + the comment for the longitude would be \"Connector of Real output signal\". + As this documentation string cannot be overwritten, a new block + was implemented. +

    + ",revisions=" +
      +
    • + January 4, 2016, by Michael Wetter:
      + First implementation. +
    • +
    + ")); end Longitude; + block Altitude "Generate constant signal of type Real" + extends Modelica.Blocks.Icons.Block; + + parameter Modelica.Units.SI.Length Altitude + "Location altitude above sea level"; + + Modelica.Blocks.Interfaces.RealOutput y( + unit="m") "Location altitude above sea level" + annotation (Placement(transformation(extent={{100,-10},{120,10}}))); + equation + y = Altitude; + annotation ( + Icon(coordinateSystem( + preserveAspectRatio=true, + extent={{-100,-100},{100,100}}), graphics={ + Text( + extent={{-81,32},{84,-24}}, + textColor={0,0,0}, + textString="Altitude")}), + Documentation(info=" +

    + Block to output the altitude of the location. + This block is added so that the altitude is displayed + with a comment in the GUI of the weather bus connector. +

    +

    Implementation

    +

    + If + + Modelica.Blocks.Sources.Constant where used, then + the comment for the Altitude would be \"Connector of Real output signal\". + As this documentation string cannot be overwritten, a new block + was implemented. +

    + ",revisions=" +
      +
    • + May 2, 2021, by Ettore Zanetti:
      + First implementation. +
    • +
    + ")); + end Altitude; + equation connect(modTim.y, add30Min.u2) annotation (Line(points={{-139,0},{-128,0},{-128, @@ -809,7 +857,12 @@ equation connect(latitude.y, weaBus.lat) annotation (Line( points={{-129,-280},{-124,-280},{-124,-290},{290,-290},{290,0},{300,0}}, color={0,0,127})); - + connect(altitude.y, weaBus.alt) annotation (Line(points={{247,104},{290,104},{ + 290,0},{300,0}}, color={0,0,127}), Text( + string="%second", + index=1, + extent={{6,3},{6,3}}, + horizontalAlignment=TextAlignment.Left)); connect(chePre.pAtm, weaBus.pAtm) annotation (Line(points={{181,270},{220,270}, {220,0},{300,0}}, color={0,0,127}), Text( string="%second", @@ -817,6 +870,8 @@ equation extent={{6,3},{6,3}}, horizontalAlignment=TextAlignment.Left)); + connect(latitude.y, zenAng.lat) annotation (Line(points={{-129,-280},{-124, + -280},{-124,-290},{-90,-290},{-90,-216},{-72,-216}}, color={0,0,127})); annotation ( defaultComponentName="weaDat", Icon(coordinateSystem( @@ -831,7 +886,7 @@ equation Text( extent={{-162,270},{138,230}}, textString="%name", - lineColor={0,0,255}), + textColor={0,0,255}), Text( visible=(pAtmSou == AixLib.BoundaryConditions.Types.DataSource.Input), extent={{-190,216},{-164,184}}, @@ -888,881 +943,894 @@ equation fillColor={230,230,230}), Text( extent={{140,-106},{-126,-192}}, - lineColor={255,255,255}, + textColor={255,255,255}, textString=DynamicSelect("", String(weaBus.TDryBul-273.15, format=".1f")))}), Documentation(info=" -

    -This component reads TMY3 weather data (Wilcox and Marion, 2008) or user specified weather data. -The Modelica built-in variable time determines what row -of the weather file is read. -The value of time is the number of seconds -that have passed since January 1st at midnight (00:00) in the local time zone. -The local time zone value, longitude and latitute are also read from the weather data, -such that the solar position computations are consistent with the weather data. -

    -

    -The weather data format is the Typical Meteorological Year (TMY3) -as obtained from the EnergyPlus web site at - -http://energyplus.net/weather. These -data, which are in the EnergyPlus format, need to be converted as described -below. -

    - -

    Output to weaBus

    -

    -The following variables serve as output and are accessible via weaBus: -

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Name - Unit - Description -
    - HDifHor - - W/m2 - - Horizontal diffuse solar radiation. -
    - HDifNor - - W/m2 - - Direct normal radiation. -
    - HGloHor - - W/m2 - - Horizontal global radiation. -
    - HHorIR - - W/m2 - - Horizontal infrared irradiation. -
    - TBlaSky - - K - - Output temperature. -
    - TDewPoi - - K - - Dew point temperature. -
    - TDryBul - - K - - Dry bulb temperature at ground level. -
    - TWetBul - - K - - Wet bulb temperature. -
    - celHei - - m - - Ceiling height. -
    - cloTim - - s - - One-based day number in seconds. -
    - lat - - rad - - Latitude of the location. -
    - lon - - rad - - Longitude of the location. -
    - nOpa - - 1 - - Opaque sky cover [0, 1]. -
    - nTot - - 1 - - Total sky Cover [0, 1]. -
    - pAtm - - Pa - - Atmospheric pressure. -
    - relHum - - 1 - - Relative humidity. -
    - solAlt - - rad - - Altitude angle. -
    - solDec - - rad - - Declination angle. -
    - solHouAng - - rad - - Solar hour angle. -
    - solTim - - s - - Solar time. -
    - solZen - - rad - - Zenith angle. -
    - winDir - - rad - - Wind direction. -
    - winSpe - - m/s - - Wind speed. -
    - -

    Adding new weather data

    -

    -To add new weather data, proceed as follows: -

    -
      -
    1. -Download the weather data file with the epw extension from - -http://energyplus.net/weather. -
    2. -
    3. -Add the file to AixLib/Resources/weatherdata (or to any directory -for which you have write permission). -
    4. -
    5. -On a console window, type
      -  cd AixLib/Resources/weatherdata
      -  java -jar ../bin/ConvertWeatherData.jar inputFile.epw
      -
      - if inputFile contains space in the name: -
      -  java -jar ../bin/ConvertWeatherData.jar \"inputFile .epw\"
      -
      -This will generate the weather data file inputFile.mos, which can be read -by the model - -AixLib.BoundaryConditions.WeatherData.ReaderTMY3. -
    6. -
    - -

    Location data that are read automatically from the weather data file

    -

    -The following location data are automatically read from the weather file: -

    -
      -
    • -The latitude of the weather station, lat, -
    • -
    • -the longitude of the weather station, lon, and -
    • -
    • -the time zone relative to Greenwich Mean Time, timZone. -
    • -
    - -

    Wet bulb temperature

    -

    -By default, the data bus contains the wet bulb temperature. -This introduces a nonlinear equation. -However, we have not observed an increase in computing time because -of this equation. -To disable the computation of the wet bulb temperature, set -computeWetBulbTemperature=false. -

    - -

    Using constant or user-defined input signals for weather data

    -

    -This model has the option of using a constant value, using the data from the weather file, -or using data from an input connector for the following variables: -

    -
      -
    • -The atmospheric pressure, -
    • -
    • -the ceiling height, -
    • -
    • -the total sky cover, -
    • -
    • -the opaque sky cover, -
    • -
    • -the dry bulb temperature, -
    • -
    • -the dew point temperature, -
    • -
    • -the sky black body temperature, -
    • -
    • -the relative humidity, -
    • -
    • -the wind direction, -
    • -
    • -the wind speed, -
    • -
    • -the global horizontal radiation, direct normal and diffuse horizontal radiation, -and -
    • -
    • -the infrared horizontal radiation. -
    • -
    -

    -By default, all data are obtained from the weather data file, -except for the atmospheric pressure, which is set to the -parameter pAtm=101325 Pascals. -

    -

    -The parameter *Sou configures the source of the data. -For the atmospheric pressure, temperatures, relative humidity, wind speed and wind direction, -the enumeration - -AixLib.BoundaryConditions.Types.DataSource -is used as follows: -

    - - - - - - - - - - - - - - - - - - - - - -
    Parameter *Sou - Data used to compute weather data. -
    - File - - Use data from file. -
    - Parameter - - Use value specified by the parameter. -
    - Input - - Use value from the input connector. -
    -

    -Because global, diffuse and direct radiation are related to each other, the parameter -HSou is treated differently. -It is set to a value of the enumeration - -AixLib.BoundaryConditions.Types.RadiationDataSource, -and allows the following configurations: -

    - - - - - - - - - - - - - - - - - - - - - - - - -
    Parameter HSou - Data used to compute weather data. -
    - File - - Use data from file. -
    - Input_HGloHor_HDifHor - - Use global horizontal and diffuse horizontal radiation from input connector. -
    - Input_HDirNor_HDifHor - - Use direct normal and diffuse horizontal radiation from input connector. -
    - Input_HDirNor_HGloHor - - Use direct normal and global horizontal radiation from input connector. -
    - -

    Length of weather data and simulation period

    -

    -If weather data span a year, which is the default for TMY3 data, or multiple years, -then this model can be used for simulations that span multiple years. The simulation -start time needs to be set to the clock time of the respective start time. For example, -to start at January 2 at 10am, set start time to t=(24+10)*3600 seconds. -For this computation, the used date and time (here January 2, 10 am) must be expressed in the same time zone -as the one that is used to define the TMY3 file. This is usually the local (winter) time zone. -The parameter `timZon` represents the TMY3 file time zone, expressed in seconds compared to UTC. -

    -

    -Moreover, weather data need not span a whole year, or it can span across New Year. -In this case, the simulation cannot exceed the time of the weather data file. Otherwise, -the simulation stops with an error. -

    -

    -As weather data have one entry at the start of the time interval, the end time of the weather -data file is computed as the last time entry plus the average time increment of the file. -For example, an hourly weather data file has 8760 entries, starting on January 1 at 0:00. -The last entry in the file will be for December 31 at 23:00. As the time increment is 1 hour, -the model assumes the weather file to end at December 31 at 23:00 plus 1 hour, e.g., at January 1 at 0:00. -

    - -

    Notes

    -
      -
    1. -

      -In HVAC systems, when the fan is off, changes in atmospheric pressure can cause small air flow rates -in the duct system due to change in pressure and hence in the mass of air that is stored -in air volumes (such as in fluid junctions or in the room model). -This may increase computing time. Therefore, the default value for the atmospheric pressure is set to a constant. -Furthermore, if the initial pressure of air volumes are different -from the atmospheric pressure, then fast pressure transients can happen in the first few seconds of the simulation. -This can cause numerical problems for the solver. To avoid this problem, set the atmospheric pressure to the -same value as the medium default pressure, which is typically set to the parameter Medium.p_default. -For medium models for moist air and dry air, the default is -Medium.p_default=101325 Pascals. -

      -
    2. -
    3. -

      -Different units apply depending on whether data are obtained from a file, or -from a parameter or an input connector: -

      -
        -
      • -When using TMY3 data from a file (e.g. USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.mos), the units must be the same as the original TMY3 file used by EnergyPlus (e.g. -USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw). -The TMY3 data used by EnergyPlus are in both SI units and non-SI units. -If Resources/bin/ConvertWeatherData.jar is used to convert the .epw file to an .mos file, the units of the TMY3 data are preserved and the file can be directly -used by this data reader. -The data reader will automatically convert units to the SI units used by Modelica. -For example, the dry bulb temperature TDryBul in TMY3 is in degree Celsius. -The data reader will automatically convert the data to Kelvin. -The wind direction winDir in TMY3 is degrees and will be automatically converted to radians. -
      • -
      • -When using data from a parameter or from an input connector, -the data must be in the SI units used by Modelica. -For instance, the unit must be -Pa for pressure, -K for temperature, -W/m2 for solar radiations and -rad for wind direction. -
      • -
      -
    4. -
    5. -

      -Hourly and subhourly timestamp are handled in a different way in .epw files. -From the EnergyPlus Auxiliary Programs Document (v9.3.0, p. 63): -In hourly data the minute field can be 00 or 60. In this case as mentioned in the previous section, the weather data -is reported at the hourly value and the minute field has to be ignored, writing 1, 60 or 1, 00 is equivalent. -If the minute field is between 00 and 60, the file becomes subhourly, in this case the timestamp corresponds to the -minute field in the considered hour. For example: 1, 30 is equivalent to 00:30 and 3, 45 is equivalent to 02:45.
      -(Note the offset in the hour digit.) -

      -
    6. -
    7. -The ReaderTMY3 should only be used with TMY3 data. It contains a time shift for solar radiation data -that is explained below. This time shift needs to be removed if the user may want to -use the ReaderTMY3 for other weather data types. -
    8. -
    -

    Implementation

    -
    Start and end data for annual weather data files
    -

    -The TMY3 weather data, as well as the EnergyPlus weather data, start at 1:00 AM -on January 1, and provide hourly data until midnight on December 31. -Thus, the first entry for temperatures, humidity, wind speed etc. are values -at 1:00 AM and not at midnight. Furthermore, the TMY3 weather data files can have -values at midnight of December 31 that may be significantly different from the values -at 1:00 AM on January 1. -Since annual simulations require weather data that start at 0:00 on January 1, -data need to be provided for this hour. Due to the possibly large change in -weatherdata between 1:00 AM on January 1 and midnight at December 31, -the weather data files in the AixLib library do not use the data entry from -midnight at December 31 as the value for t=0. Rather, the -value from 1:00 AM on January 1 is duplicated and used for 0:00 on January 1. -To maintain a data record with 8760 hours, the weather data record from -midnight at December 31 is deleted. -These changes in the weather data file are done in the Java program -AixLib/Resources/bin/ConvertWeatherData.jar that converts -EnergyPlus weather data file to Modelica weather data files, and which is described -above. -The length of the weather data is calculated as the -end time stamp minus start time stamp plus average increment, where the -average increment is equal to the end time stamp minus start time stamp divided -by the number of rows minus 1. -This only works correctly for weather files with equidistant time stamps. -

    -
    Time shift for solar radiation data
    -

    -To read weather data from the TMY3 weather data file, there are -two data readers in this model. One data reader obtains all data -except solar radiation, and the other data reader reads only the -solar radiation data, shifted by 30 minutes. -The reason for this time shift is as follows: -The TMY3 weather data file contains for solar radiation the -\"...radiation received -on a horizontal surface during -the 60-minute period ending at -the timestamp.\" - -Thus, as the figure below shows, a more accurate interpolation is obtained if -time is shifted by 30 minutes prior to reading the weather data. -

    -

    -\"image\" -

    -

    References

    -
      -
    • -Wilcox S. and W. Marion. Users Manual for TMY3 Data Sets. -Technical Report, NREL/TP-581-43156, revised May 2008. -
    • -
    -", revisions=" -
      -
    • -October 4, 2020, by Ettore Zanetti:
      -Updated documentation for Java weather file generator.
      -This is for -#1396. -
    • -
    • -August 20, 2019, by Filip Jorissen:
      -Better clarified the meaning of time in the documentation.
      -This is for -#1192. -
    • -
    • -March 5, 2019, by Michael Wetter:
      -Updated documentation.
      -This is for -#842. -
    • -
    • -September 20, 2018, by Michael Wetter:
      -Corrected documentation.
      -This is for -#1022. -
    • -
    • -December 4, 2017, by Michael Wetter:
      -Removed function call to getAbsolutePath, as this causes in Dymola 2018FD01 -the error -\"A call of loadResource with a non-literal string remains in the generated code; it will not work for an URI.\" -when exporting -AixLib.Fluid.FMI.ExportContainers.Examples.FMUs.ThermalZone -as an FMU. Instead, if the weather file is specified as a Modelica, URI, syntax such as -Modelica.Utilities.Files.loadResource(\"modelica://AixLib/Resources/weatherdata/USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.mos\") -should be used.
      -This is for -#867. -
    • -
    • -February 18, 2017, by Filip Jorissen:
      -Infrared radiation on horizontal surface is now delayed by 30 minutes -such that the results in -TBlaSky -are consistent. -This is for -#648. -
    • -
    • -December 06, 2016, by Thierry S. Nouidui:
      -Constrained the direct normal radiation to not be bigger than the solar constant when using -global and diffuse solar radiation data provided via the inputs connectors. -This is for -#608. -
    • -
    • -April 21, 2016, by Michael Wetter:
      -Introduced absFilNam to avoid multiple calls to - -AixLib.BoundaryConditions.WeatherData.BaseClasses.getAbsolutePath. -This is for -Buildings, #506. -
    • -
    • -January 6, 2016, by Moritz Lauster:
      -Changed output radHorIR to HHorIR. -This is for -#376. -
    • -
    • -January 4, 2016, by Moritz Lauster:
      -Added a table in documentation with output variables accessible via weaBus. -This is for -#376. -
    • -
    • -December 15, 2015, by Michael Wetter:
      -Added the block cheTemBlaSky. This also allows to graphically -connect the black body sky temperature to the weather bus, which is required -in Dymola 2016 for the variable weaBus.TBlaSky to appear -in the graphical editor. -This is for -#377. -
    • -
    • -September 24, 2015, by Marcus Fuchs:
      -Replace Dymola specific annotation by loadSelector -for MSL compliancy as reported by @tbeu at -RWTH-EBC/AixLib#107 -
    • -
    • -June 6, 2015, by Michael Wetter:
      -Removed redundant but consistent -connect(TBlaSkyCom.TBlaSky, weaBus.TBlaSky) -statement. -This avoids a warning if - -AixLib.BoundaryConditions.SolarIrradiation.BaseClasses.Examples.SkyClearness -is translated in pedantic mode in Dymola 2016. -This is for -#266. -
    • -
    • -March 26, 2015, by Michael Wetter:
      -Added option to obtain the black body sky temperature -from a parameter or an input signal. -
    • -
    • -October 17, 2014, by Michael Wetter:
      -Corrected error that led the total and opaque sky cover to be ten times -too low if its value was obtained from the parameter or the input connector. -For the standard configuration in which the sky cover is obtained from -the weather data file, the model was correct. This error only affected -the other two possible configurations. -
    • -
    • -September 12, 2014, by Michael Wetter:
      -Removed redundant connection connect(conHorRad.HOut, cheHorRad.HIn);. -
    • -
    • -May 30, 2014, by Michael Wetter:
      -Removed undesirable annotation Evaluate=true. -
    • -
    • -May 5, 2013, by Thierry S. Nouidui:
      -Added the option to use a constant, an input signal or the weather file as the source -for the ceiling height, the total sky cover, the opaque sky cover, the dew point temperature, -and the infrared horizontal radiation HInfHor. -
    • -
    • -October 8, 2013, by Michael Wetter:
      -Improved the algorithm that determines the absolute path of the file. -Now weather files are searched in the path specified, and if not found, the urls -file://, modelica:// and modelica://AixLib -are added in this order to search for the weather file. -This allows using the data reader without having to specify an absolute path, -as long as the AixLib library -is on the MODELICAPATH. -This change was implemented in - -AixLib.BoundaryConditions.WeatherData.BaseClasses.getAbsolutePath -and improves this weather data reader. -
    • -
    • -May 2, 2013, by Michael Wetter:
      -Added function call to getAbsolutePath. -
    • -
    • -October 16, 2012, by Michael Wetter:
      -Added computation of the wet bulb temperature. -Computing the wet bulb temperature introduces a nonlinear -equation. As we have not observed an increase in computing time -because of computing the wet bulb temperature, it is computed -by default. By setting the parameter -computeWetBulbTemperature=false, the computation of the -wet bulb temperature can be removed. -Revised documentation. -
    • -
    • -August 11, 2012, by Wangda Zuo:
      -Renamed radHor to radHorIR and -improved the optional inputs for radiation data. -
    • -
    • -July 24, 2012, by Wangda Zuo:
      -Corrected the notes of SI unit requirements for input files. -
    • -
    • -July 13, 2012, by Michael Wetter:
      -Removed assignment of HGloHor_in in its declaration, -because this gives an overdetermined system if the input connector -is used. -Removed non-required assignments of attribute displayUnit. -
    • -
    • -February 25, 2012, by Michael Wetter:
      -Added subbus for solar position, which is needed by irradition and -shading model. -
    • -
    • -November 29, 2011, by Michael Wetter:
      -Fixed wrong display unit for pAtm_in_internal and -made propagation of parameter final. -
    • -
    • -October 27, 2011, by Wangda Zuo:
      -
        -
      1. -Added optional connectors for dry bulb temperature, relative humidity, wind speed, wind direction, global horizontal radiation, diffuse horizontal radiation.
        -
      2. -
      3. -Separate the unit conversion for TMY3 data and data validity check. -
      4. -
      -
    • -
    • -October 3, 2011, by Michael Wetter:
      -Propagated value for sky temperature calculation to make it accessible as a parameter. -
    • -
    • -July 20, 2011, by Michael Wetter:
      -Added the option to use a constant, an input signal or the weather file as the source -for the atmospheric pressure. -
    • -March 15, 2011, by Wangda Zuo:
      -Delete the wet bulb temperature since it may cause numerical problem. -
    • -
    • -March 7, 2011, by Wangda Zuo:
      -Added wet bulb temperature. Changed reader to read only needed columns. -Added explanation for 30 minutes shift for radiation data. -
    • -
    • -March 5, 2011, by Michael Wetter:
      -Changed implementation to obtain longitude and time zone directly -from weather file. -
    • -
    • -June 25, 2010, by Wangda Zuo:
      -First implementation. -
    • -
    -"), +

    + This component reads TMY3 weather data (Wilcox and Marion, 2008) or user specified weather data. + The Modelica built-in variable time determines what row + of the weather file is read. + The value of time is the number of seconds + that have passed since January 1st at midnight (00:00) in the local time zone. + The local time zone value, longitude and latitute are also read from the weather data, + such that the solar position computations are consistent with the weather data. +

    +

    + The weather data format is the Typical Meteorological Year (TMY3) + as obtained from the EnergyPlus web site at + + http://energyplus.net/weather. These + data, which are in the EnergyPlus format, need to be converted as described + below. +

    + +

    Output to weaBus

    +

    + The following variables serve as output and are accessible via weaBus: +

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Name + Unit + Description +
    + HDifHor + + W/m2 + + Horizontal diffuse solar radiation. +
    + HDifNor + + W/m2 + + Direct normal radiation. +
    + HGloHor + + W/m2 + + Horizontal global radiation. +
    + HHorIR + + W/m2 + + Horizontal infrared irradiation. +
    + TBlaSky + + K + + Output temperature. +
    + TDewPoi + + K + + Dew point temperature. +
    + TDryBul + + K + + Dry bulb temperature at ground level. +
    + TWetBul + + K + + Wet bulb temperature. +
    + celHei + + m + + Ceiling height. +
    + cloTim + + s + + One-based day number in seconds. +
    + lat + + rad + + Latitude of the location. +
    + lon + + rad + + Longitude of the location. +
    + nOpa + + 1 + + Opaque sky cover [0, 1]. +
    + nTot + + 1 + + Total sky Cover [0, 1]. +
    + pAtm + + Pa + + Atmospheric pressure. +
    + relHum + + 1 + + Relative humidity. +
    + solAlt + + rad + + Altitude angle. +
    + solDec + + rad + + Declination angle. +
    + solHouAng + + rad + + Solar hour angle. +
    + solTim + + s + + Solar time. +
    + solZen + + rad + + Zenith angle. +
    + winDir + + rad + + Wind direction. +
    + winSpe + + m/s + + Wind speed. +
    + +

    Adding new weather data

    +

    + To add new weather data, proceed as follows: +

    +
      +
    1. + Download the weather data file with the epw extension from + + http://energyplus.net/weather. +
    2. +
    3. + Add the file to AixLib/Resources/weatherdata (or to any directory + for which you have write permission). +
    4. +
    5. + On a console window, type
      +   cd AixLib/Resources/weatherdata
      +   java -jar ../bin/ConvertWeatherData.jar inputFile.epw
      + 
      + if inputFile contains space in the name: +
      +   java -jar ../bin/ConvertWeatherData.jar \"inputFile .epw\"
      + 
      + This will generate the weather data file inputFile.mos, which can be read + by the model + + AixLib.BoundaryConditions.WeatherData.ReaderTMY3. +
    6. +
    + +

    Location data that are read automatically from the weather data file

    +

    + The following location data are automatically read from the weather file: +

    +
      +
    • + The latitude of the weather station, lat, +
    • +
    • + the longitude of the weather station, lon, and +
    • +
    • + the time zone relative to Greenwich Mean Time, timZone. +
    • +
    + +

    Wet bulb temperature

    +

    + By default, the data bus contains the wet bulb temperature. + This introduces a nonlinear equation. + However, we have not observed an increase in computing time because + of this equation. + To disable the computation of the wet bulb temperature, set + computeWetBulbTemperature=false. +

    + +

    Using constant or user-defined input signals for weather data

    +

    + This model has the option of using a constant value, using the data from the weather file, + or using data from an input connector for the following variables: +

    +
      +
    • + The atmospheric pressure, +
    • +
    • + the ceiling height, +
    • +
    • + the total sky cover, +
    • +
    • + the opaque sky cover, +
    • +
    • + the dry bulb temperature, +
    • +
    • + the dew point temperature, +
    • +
    • + the sky black body temperature, +
    • +
    • + the relative humidity, +
    • +
    • + the wind direction, +
    • +
    • + the wind speed, +
    • +
    • + the global horizontal radiation, direct normal and diffuse horizontal radiation, + and +
    • +
    • + the infrared horizontal radiation. +
    • +
    +

    + By default, all data are obtained from the weather data file, + except for the atmospheric pressure, which is set to the + parameter pAtm=101325 Pascals. +

    +

    + The parameter *Sou configures the source of the data. + For the atmospheric pressure, temperatures, relative humidity, wind speed and wind direction, + the enumeration + + AixLib.BoundaryConditions.Types.DataSource + is used as follows: +

    + + + + + + + + + + + + + + + + + + + + + +
    Parameter *Sou + Data used to compute weather data. +
    + File + + Use data from file. +
    + Parameter + + Use value specified by the parameter. +
    + Input + + Use value from the input connector. +
    +

    + Because global, diffuse and direct radiation are related to each other, the parameter + HSou is treated differently. + It is set to a value of the enumeration + + AixLib.BoundaryConditions.Types.RadiationDataSource, + and allows the following configurations: +

    + + + + + + + + + + + + + + + + + + + + + + + + +
    Parameter HSou + Data used to compute weather data. +
    + File + + Use data from file. +
    + Input_HGloHor_HDifHor + + Use global horizontal and diffuse horizontal radiation from input connector. +
    + Input_HDirNor_HDifHor + + Use direct normal and diffuse horizontal radiation from input connector. +
    + Input_HDirNor_HGloHor + + Use direct normal and global horizontal radiation from input connector. +
    + +

    Length of weather data and simulation period

    +

    + If weather data span a year, which is the default for TMY3 data, or multiple years, + then this model can be used for simulations that span multiple years. The simulation + start time needs to be set to the clock time of the respective start time. For example, + to start at January 2 at 10am, set start time to t=(24+10)*3600 seconds. + For this computation, the used date and time (here January 2, 10 am) must be expressed in the same time zone + as the one that is used to define the TMY3 file. This is usually the local (winter) time zone. + The parameter `timZon` represents the TMY3 file time zone, expressed in seconds compared to UTC. +

    +

    + Moreover, weather data need not span a whole year, or it can span across New Year. + In this case, the simulation cannot exceed the time of the weather data file. Otherwise, + the simulation stops with an error. +

    +

    + As weather data have one entry at the start of the time interval, the end time of the weather + data file is computed as the last time entry plus the average time increment of the file. + For example, an hourly weather data file has 8760 entries, starting on January 1 at 0:00. + The last entry in the file will be for December 31 at 23:00. As the time increment is 1 hour, + the model assumes the weather file to end at December 31 at 23:00 plus 1 hour, e.g., at January 1 at 0:00. +

    + +

    Notes

    +
      +
    1. +

      + In HVAC systems, when the fan is off, changes in atmospheric pressure can cause small air flow rates + in the duct system due to change in pressure and hence in the mass of air that is stored + in air volumes (such as in fluid junctions or in the room model). + This may increase computing time. Therefore, the default value for the atmospheric pressure is set to a constant. + Furthermore, if the initial pressure of air volumes are different + from the atmospheric pressure, then fast pressure transients can happen in the first few seconds of the simulation. + This can cause numerical problems for the solver. To avoid this problem, set the atmospheric pressure to the + same value as the medium default pressure, which is typically set to the parameter Medium.p_default. + For medium models for moist air and dry air, the default is + Medium.p_default=101325 Pascals. +

      +
    2. +
    3. +

      + Different units apply depending on whether data are obtained from a file, or + from a parameter or an input connector: +

      +
        +
      • + When using TMY3 data from a file (e.g. USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.mos), the units must be the same as the original TMY3 file used by EnergyPlus (e.g. + USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw). + The TMY3 data used by EnergyPlus are in both SI units and non-SI units. + If Resources/bin/ConvertWeatherData.jar is used to convert the .epw file to an .mos file, the units of the TMY3 data are preserved and the file can be directly + used by this data reader. + The data reader will automatically convert units to the SI units used by Modelica. + For example, the dry bulb temperature TDryBul in TMY3 is in degree Celsius. + The data reader will automatically convert the data to Kelvin. + The wind direction winDir in TMY3 is degrees and will be automatically converted to radians. +
      • +
      • + When using data from a parameter or from an input connector, + the data must be in the SI units used by Modelica. + For instance, the unit must be + Pa for pressure, + K for temperature, + W/m2 for solar radiations and + rad for wind direction. +
      • +
      +
    4. +
    5. +

      + Hourly and subhourly timestamp are handled in a different way in .epw files. + From the EnergyPlus Auxiliary Programs Document (v9.3.0, p. 63): + In hourly data the minute field can be 00 or 60. In this case as mentioned in the previous section, the weather data + is reported at the hourly value and the minute field has to be ignored, writing 1, 60 or 1, 00 is equivalent. + If the minute field is between 00 and 60, the file becomes subhourly, in this case the timestamp corresponds to the + minute field in the considered hour. For example: 1, 30 is equivalent to 00:30 and 3, 45 is equivalent to 02:45.
      + (Note the offset in the hour digit.) +

      +
    6. +
    7. + The ReaderTMY3 should only be used with TMY3 data. It contains a time shift for solar radiation data + that is explained below. This time shift needs to be removed if the user may want to + use the ReaderTMY3 for other weather data types. +
    8. +
    +

    Implementation

    +
    Start and end data for annual weather data files
    +

    + The TMY3 weather data, as well as the EnergyPlus weather data, start at 1:00 AM + on January 1, and provide hourly data until midnight on December 31. + Thus, the first entry for temperatures, humidity, wind speed etc. are values + at 1:00 AM and not at midnight. Furthermore, the TMY3 weather data files can have + values at midnight of December 31 that may be significantly different from the values + at 1:00 AM on January 1. + Since annual simulations require weather data that start at 0:00 on January 1, + data need to be provided for this hour. Due to the possibly large change in + weatherdata between 1:00 AM on January 1 and midnight at December 31, + the weather data files in the AixLib library do not use the data entry from + midnight at December 31 as the value for t=0. Rather, the + value from 1:00 AM on January 1 is duplicated and used for 0:00 on January 1. + To maintain a data record with 8760 hours, the weather data record from + midnight at December 31 is deleted. + These changes in the weather data file are done in the Java program + AixLib/Resources/bin/ConvertWeatherData.jar that converts + EnergyPlus weather data file to Modelica weather data files, and which is described + above. + The length of the weather data is calculated as the + end time stamp minus start time stamp plus average increment, where the + average increment is equal to the end time stamp minus start time stamp divided + by the number of rows minus 1. + This only works correctly for weather files with equidistant time stamps. +

    +
    Time shift for solar radiation data
    +

    + To read weather data from the TMY3 weather data file, there are + two data readers in this model. One data reader obtains all data + except solar radiation, and the other data reader reads only the + solar radiation data, shifted by 30 minutes. + The reason for this time shift is as follows: + The TMY3 weather data file contains for solar radiation the + \"...radiation received + on a horizontal surface during + the 60-minute period ending at + the timestamp.\" + + Thus, as the figure below shows, a more accurate interpolation is obtained if + time is shifted by 30 minutes prior to reading the weather data. +

    +

    + \"image\" +

    +

    References

    +
      +
    • + Wilcox S. and W. Marion. Users Manual for TMY3 Data Sets. + Technical Report, NREL/TP-581-43156, revised May 2008. +
    • +
    + ",revisions=" +
      +
    • + September 6, 2021, by Ettore Zanetti:
      + Changed alt and lat to real inputs.
      + This is for + IBPSA, #1477. +
    • +
    • + May 2, 2021, by Ettore Zanetti:
      + Added altitude to parameters.
      + This is for + IBPSA, #1477. +
    • +
    • + October 4, 2020, by Ettore Zanetti:
      + Updated documentation for Java weather file generator.
      + This is for + #1396. +
    • +
    • + August 20, 2019, by Filip Jorissen:
      + Better clarified the meaning of time in the documentation.
      + This is for + #1192. +
    • +
    • + March 5, 2019, by Michael Wetter:
      + Updated documentation.
      + This is for + #842. +
    • +
    • + September 20, 2018, by Michael Wetter:
      + Corrected documentation.
      + This is for + #1022. +
    • +
    • + December 4, 2017, by Michael Wetter:
      + Removed function call to getAbsolutePath, as this causes in Dymola 2018FD01 + the error + \"A call of loadResource with a non-literal string remains in the generated code; it will not work for an URI.\" + when exporting + AixLib.Fluid.FMI.ExportContainers.Examples.FMUs.ThermalZone + as an FMU. Instead, if the weather file is specified as a Modelica, URI, syntax such as + Modelica.Utilities.Files.loadResource(\"modelica://AixLib/Resources/weatherdata/USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.mos\") + should be used.
      + This is for + #867. +
    • +
    • + February 18, 2017, by Filip Jorissen:
      + Infrared radiation on horizontal surface is now delayed by 30 minutes + such that the results in + TBlaSky + are consistent. + This is for + #648. +
    • +
    • + December 06, 2016, by Thierry S. Nouidui:
      + Constrained the direct normal radiation to not be bigger than the solar constant when using + global and diffuse solar radiation data provided via the inputs connectors. + This is for + #608. +
    • +
    • + April 21, 2016, by Michael Wetter:
      + Introduced absFilNam to avoid multiple calls to + + AixLib.BoundaryConditions.WeatherData.BaseClasses.getAbsolutePath. + This is for + Buildings, #506. +
    • +
    • + January 6, 2016, by Moritz Lauster:
      + Changed output radHorIR to HHorIR. + This is for + #376. +
    • +
    • + January 4, 2016, by Moritz Lauster:
      + Added a table in documentation with output variables accessible via weaBus. + This is for + #376. +
    • +
    • + December 15, 2015, by Michael Wetter:
      + Added the block cheTemBlaSky. This also allows to graphically + connect the black body sky temperature to the weather bus, which is required + in Dymola 2016 for the variable weaBus.TBlaSky to appear + in the graphical editor. + This is for + #377. +
    • +
    • + September 24, 2015, by Marcus Fuchs:
      + Replace Dymola specific annotation by loadSelector + for MSL compliancy as reported by @tbeu at + RWTH-EBC/AixLib#107 +
    • +
    • + June 6, 2015, by Michael Wetter:
      + Removed redundant but consistent + connect(TBlaSkyCom.TBlaSky, weaBus.TBlaSky) + statement. + This avoids a warning if + + AixLib.BoundaryConditions.SolarIrradiation.BaseClasses.Examples.SkyClearness + is translated in pedantic mode in Dymola 2016. + This is for + #266. +
    • +
    • + March 26, 2015, by Michael Wetter:
      + Added option to obtain the black body sky temperature + from a parameter or an input signal. +
    • +
    • + October 17, 2014, by Michael Wetter:
      + Corrected error that led the total and opaque sky cover to be ten times + too low if its value was obtained from the parameter or the input connector. + For the standard configuration in which the sky cover is obtained from + the weather data file, the model was correct. This error only affected + the other two possible configurations. +
    • +
    • + September 12, 2014, by Michael Wetter:
      + Removed redundant connection connect(conHorRad.HOut, cheHorRad.HIn);. +
    • +
    • + May 30, 2014, by Michael Wetter:
      + Removed undesirable annotation Evaluate=true. +
    • +
    • + May 5, 2013, by Thierry S. Nouidui:
      + Added the option to use a constant, an input signal or the weather file as the source + for the ceiling height, the total sky cover, the opaque sky cover, the dew point temperature, + and the infrared horizontal radiation HInfHor. +
    • +
    • + October 8, 2013, by Michael Wetter:
      + Improved the algorithm that determines the absolute path of the file. + Now weather files are searched in the path specified, and if not found, the urls + file://, modelica:// and modelica://AixLib + are added in this order to search for the weather file. + This allows using the data reader without having to specify an absolute path, + as long as the AixLib library + is on the MODELICAPATH. + This change was implemented in + + AixLib.BoundaryConditions.WeatherData.BaseClasses.getAbsolutePath + and improves this weather data reader. +
    • +
    • + May 2, 2013, by Michael Wetter:
      + Added function call to getAbsolutePath. +
    • +
    • + October 16, 2012, by Michael Wetter:
      + Added computation of the wet bulb temperature. + Computing the wet bulb temperature introduces a nonlinear + equation. As we have not observed an increase in computing time + because of computing the wet bulb temperature, it is computed + by default. By setting the parameter + computeWetBulbTemperature=false, the computation of the + wet bulb temperature can be removed. + Revised documentation. +
    • +
    • + August 11, 2012, by Wangda Zuo:
      + Renamed radHor to radHorIR and + improved the optional inputs for radiation data. +
    • +
    • + July 24, 2012, by Wangda Zuo:
      + Corrected the notes of SI unit requirements for input files. +
    • +
    • + July 13, 2012, by Michael Wetter:
      + Removed assignment of HGloHor_in in its declaration, + because this gives an overdetermined system if the input connector + is used. + Removed non-required assignments of attribute displayUnit. +
    • +
    • + February 25, 2012, by Michael Wetter:
      + Added subbus for solar position, which is needed by irradition and + shading model. +
    • +
    • + November 29, 2011, by Michael Wetter:
      + Fixed wrong display unit for pAtm_in_internal and + made propagation of parameter final. +
    • +
    • + October 27, 2011, by Wangda Zuo:
      +
        +
      1. + Added optional connectors for dry bulb temperature, relative humidity, wind speed, wind direction, global horizontal radiation, diffuse horizontal radiation.
        +
      2. +
      3. + Separate the unit conversion for TMY3 data and data validity check. +
      4. +
      +
    • +
    • + October 3, 2011, by Michael Wetter:
      + Propagated value for sky temperature calculation to make it accessible as a parameter. +
    • +
    • + July 20, 2011, by Michael Wetter:
      + Added the option to use a constant, an input signal or the weather file as the source + for the atmospheric pressure. +
    • + March 15, 2011, by Wangda Zuo:
      + Delete the wet bulb temperature since it may cause numerical problem. +
    • +
    • + March 7, 2011, by Wangda Zuo:
      + Added wet bulb temperature. Changed reader to read only needed columns. + Added explanation for 30 minutes shift for radiation data. +
    • +
    • + March 5, 2011, by Michael Wetter:
      + Changed implementation to obtain longitude and time zone directly + from weather file. +
    • +
    • + June 25, 2010, by Wangda Zuo:
      + First implementation. +
    • +
    + "), Diagram(coordinateSystem(preserveAspectRatio=false, - extent={{-200,-300},{300,300}}))); + extent={{-200,-300},{300,300}})), + __Dymola_LockedEditing="Model from IBPSA"); end ReaderTMY3; diff --git a/AixLib/BoundaryConditions/WeatherData/Validation/DecemberToJanuary.mo b/AixLib/BoundaryConditions/WeatherData/Validation/DecemberToJanuary.mo index cfaaf36c77..58fd54c00b 100644 --- a/AixLib/BoundaryConditions/WeatherData/Validation/DecemberToJanuary.mo +++ b/AixLib/BoundaryConditions/WeatherData/Validation/DecemberToJanuary.mo @@ -21,18 +21,18 @@ model DecemberToJanuary __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/BoundaryConditions/WeatherData/Validation/DecemberToJanuary.mos" "Simulate and plot"), Documentation(info=" -

    -This is a validation case for a data file that has a few incomplete days in December and goes into -a few days into January. The data does not start and does not end at midnight. -

    -", revisions=" -
      -
    • -October 26, 2017, by Michael Wetter:
      -First implementation for -issue 842. -
    • -
    -")); - +

    + This is a validation case for a data file that has a few incomplete days in December and goes into + a few days into January. The data does not start and does not end at midnight. +

    + ",revisions=" +
      +
    • + October 26, 2017, by Michael Wetter:
      + First implementation for + issue 842. +
    • +
    + "), + __Dymola_LockedEditing="Model from IBPSA"); end DecemberToJanuary; diff --git a/AixLib/BoundaryConditions/WeatherData/Validation/OverAYear_usingOneYearData.mo b/AixLib/BoundaryConditions/WeatherData/Validation/OverAYear_usingOneYearData.mo index c22a912e1e..38c8941b04 100644 --- a/AixLib/BoundaryConditions/WeatherData/Validation/OverAYear_usingOneYearData.mo +++ b/AixLib/BoundaryConditions/WeatherData/Validation/OverAYear_usingOneYearData.mo @@ -19,19 +19,19 @@ model OverAYear_usingOneYearData __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/BoundaryConditions/WeatherData/Validation/OverAYear_usingOneYearData.mos" "Simulate and plot"), Documentation(info=" -

    -This is a validation case for a simulation extending with two months over one year, -but using data for only one year. -

    -

    -The test script plots the dry bulb temperature for the days 0-10 and 365-375 for comparison. -

    -", revisions=" -
      -
    • September 3, 2018 by Ana Constantin:
      -First implementation for issue 842. -
    • -
    -")); - +

    + This is a validation case for a simulation extending with two months over one year, + but using data for only one year. +

    +

    + The test script plots the dry bulb temperature for the days 0-10 and 365-375 for comparison. +

    + ",revisions=" +
      +
    • September 3, 2018 by Ana Constantin:
      + First implementation for issue 842. +
    • +
    + "), + __Dymola_LockedEditing="Model from IBPSA"); end OverAYear_usingOneYearData; diff --git a/AixLib/BoundaryConditions/WeatherData/Validation/ReaderTMY3HDirNor.mo b/AixLib/BoundaryConditions/WeatherData/Validation/ReaderTMY3HDirNor.mo index 248955e806..6ea7ed67cb 100644 --- a/AixLib/BoundaryConditions/WeatherData/Validation/ReaderTMY3HDirNor.mo +++ b/AixLib/BoundaryConditions/WeatherData/Validation/ReaderTMY3HDirNor.mo @@ -8,15 +8,15 @@ model ReaderTMY3HDirNor "Weather data reader with radiation data obtained from the inputs' connectors" annotation (Placement(transformation(extent={{68,-10},{88,10}}))); protected - Modelica.Blocks.Sources.Sine HGloHor1( - freqHz=1/86400, + Modelica.Blocks.Sources.Sine HGloHor1( + f=1/86400, startTime=25200, offset=0, amplitude=100) "Horizontal global radiation" annotation (Placement(transformation(extent={{-88,-30},{-68,-10}}))); - Modelica.Blocks.Sources.Sine HGloHor( - freqHz=1/86400, + Modelica.Blocks.Sources.Sine HGloHor( + f=1/86400, startTime=68428, offset=0, amplitude=100) "Horizontal global radiation" @@ -41,18 +41,19 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/BoundaryConditions/WeatherData/Validation/ReaderTMY3HDirNor.mos" "Simulate and plot"), Documentation(info=" -

    -This model tests the calculation of the direct normal radiation. -The instance weaDatInpCon obtains the global horizontal and -the diffuse horizontal solar radiation from its inputs connectors. -

    -", +

    + This model tests the calculation of the direct normal radiation. + The instance weaDatInpCon obtains the global horizontal and + the diffuse horizontal solar radiation from its inputs connectors. +

    + ", revisions=" -
      -
    • -December 06, 2016, by Thierry S. Nouidui:
      -First implementation. -
    • -
    -")); +
      +
    • + December 06, 2016, by Thierry S. Nouidui:
      + First implementation. +
    • +
    + "), + __Dymola_LockedEditing="Model from IBPSA"); end ReaderTMY3HDirNor; diff --git a/AixLib/BoundaryConditions/WeatherData/Validation/ThreeYears_usingTwoYearData.mo b/AixLib/BoundaryConditions/WeatherData/Validation/ThreeYears_usingTwoYearData.mo index 043d7c0f39..13bde4896d 100644 --- a/AixLib/BoundaryConditions/WeatherData/Validation/ThreeYears_usingTwoYearData.mo +++ b/AixLib/BoundaryConditions/WeatherData/Validation/ThreeYears_usingTwoYearData.mo @@ -19,16 +19,16 @@ model ThreeYears_usingTwoYearData __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/BoundaryConditions/WeatherData/Validation/ThreeYears_usingTwoYearData.mos" "Simulate and plot"), Documentation(info=" -

    -This is a validation case for a simulation extending over three years, -but using only two years of data with equidistant monthly values. -

    -", revisions=" -
      -
    • September 3, 2018 by Ana Constantin:
      -First implementation for issue 842. -
    • -
    -")); - +

    + This is a validation case for a simulation extending over three years, + but using only two years of data with equidistant monthly values. +

    + ",revisions=" +
      +
    • September 3, 2018 by Ana Constantin:
      + First implementation for issue 842. +
    • +
    + "), + __Dymola_LockedEditing="Model from IBPSA"); end ThreeYears_usingTwoYearData; diff --git a/AixLib/BoundaryConditions/WeatherData/Validation/ThreeYears_usingTwoYearDataNegativeStart.mo b/AixLib/BoundaryConditions/WeatherData/Validation/ThreeYears_usingTwoYearDataNegativeStart.mo index 15ec0b1978..a8374ad0c2 100644 --- a/AixLib/BoundaryConditions/WeatherData/Validation/ThreeYears_usingTwoYearDataNegativeStart.mo +++ b/AixLib/BoundaryConditions/WeatherData/Validation/ThreeYears_usingTwoYearDataNegativeStart.mo @@ -11,17 +11,17 @@ model ThreeYears_usingTwoYearDataNegativeStart __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/BoundaryConditions/WeatherData/Validation/ThreeYears_usingTwoYearDataNegativeStart.mos" "Simulate and plot"), Documentation(info=" -

    -This is a validation case for a simulation extending over six years -starting at a negative start date, -but using only two years of data with equidistant monthly values. -

    -", revisions=" -
      -
    • March 5, 2019 by Michael Wetter:
      -First implementation for issue 842. -
    • -
    -")); - +

    + This is a validation case for a simulation extending over six years + starting at a negative start date, + but using only two years of data with equidistant monthly values. +

    + ",revisions=" +
      +
    • March 5, 2019 by Michael Wetter:
      + First implementation for issue 842. +
    • +
    + "), + __Dymola_LockedEditing="Model from IBPSA"); end ThreeYears_usingTwoYearDataNegativeStart; diff --git a/AixLib/BoundaryConditions/WeatherData/Validation/ThreeYears_usingTwoYearDataPositiveStart.mo b/AixLib/BoundaryConditions/WeatherData/Validation/ThreeYears_usingTwoYearDataPositiveStart.mo index 6a9b1a214c..ae42e1d370 100644 --- a/AixLib/BoundaryConditions/WeatherData/Validation/ThreeYears_usingTwoYearDataPositiveStart.mo +++ b/AixLib/BoundaryConditions/WeatherData/Validation/ThreeYears_usingTwoYearDataPositiveStart.mo @@ -11,17 +11,17 @@ model ThreeYears_usingTwoYearDataPositiveStart __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/BoundaryConditions/WeatherData/Validation/ThreeYears_usingTwoYearDataPositiveStart.mos" "Simulate and plot"), Documentation(info=" -

    -This is a validation case for a simulation extending over six years -starting at a positive start date, -but using only two years of data with equidistant monthly values. -

    -", revisions=" -
      -
    • March 5, 2019 by Michael Wetter:
      -First implementation for issue 842. -
    • -
    -")); - +

    + This is a validation case for a simulation extending over six years + starting at a positive start date, + but using only two years of data with equidistant monthly values. +

    + ",revisions=" +
      +
    • March 5, 2019 by Michael Wetter:
      + First implementation for issue 842. +
    • +
    + "), + __Dymola_LockedEditing="Model from IBPSA"); end ThreeYears_usingTwoYearDataPositiveStart; diff --git a/AixLib/Controls/AirHandling/FVUController.mo b/AixLib/Controls/AirHandling/FVUController.mo index 2837cf95bf..0bb6421d5a 100644 --- a/AixLib/Controls/AirHandling/FVUController.mo +++ b/AixLib/Controls/AirHandling/FVUController.mo @@ -1,19 +1,19 @@ within AixLib.Controls.AirHandling; model FVUController "Rule-based controller of a facade ventilation unit" - parameter Modelica.SIunits.Temperature minimumSupTemp=273.15 + 17 + parameter Modelica.Units.SI.Temperature minimumSupTemp=273.15 + 17 "Minimum supply air temperature"; parameter Real co2SetConcentration(min=0) = 600 "Set point for CO2 concentration in ppm"; - parameter Real maxSupFanPower(min=0, max=0) = 1 + parameter Real maxSupFanPower(min=0, max=1) = 1 "Maximum relative supply air fan power (0..1)"; - parameter Real maxExFanPower(min=0, max=0) = 1 + parameter Real maxExFanPower(min=0, max=1) = 1 "Maximum relative exhaust air fan power (0..1)"; - parameter Modelica.SIunits.TemperatureDifference deltaTemp = 1 + parameter Modelica.Units.SI.TemperatureDifference deltaTemp=1 "Added to the set temperature in cooling mode"; Modelica.Blocks.Logical.OnOffController roomToBeCooled(bandwidth=2) diff --git a/AixLib/Controls/Continuous/Examples/LimPID.mo b/AixLib/Controls/Continuous/Examples/LimPID.mo index fa6a7a2243..7ff52cfc7d 100644 --- a/AixLib/Controls/Continuous/Examples/LimPID.mo +++ b/AixLib/Controls/Continuous/Examples/LimPID.mo @@ -10,8 +10,8 @@ model LimPID "Test model for PID controller with optional reverse action" Td=1, yMax=1, yMin=-1, - initType=Modelica.Blocks.Types.InitPID.InitialState) - annotation (Placement(transformation(extent={{-20,30},{0,50}}))); + initType=Modelica.Blocks.Types.Init.InitialState) + annotation (Placement(transformation(extent={{-20,30},{0,50}}))); AixLib.Controls.Continuous.LimPID limPIDRev( controllerType=Modelica.Blocks.Types.SimpleController.PID, reverseActing=false, @@ -19,7 +19,7 @@ model LimPID "Test model for PID controller with optional reverse action" Td=1, yMax=1, yMin=-1, - initType=Modelica.Blocks.Types.InitPID.InitialState) + initType=Modelica.Blocks.Types.Init.InitialState) "Controller with reverse action" annotation (Placement(transformation(extent={{-20,-20},{0,0}}))); Modelica.Blocks.Sources.Constant const(k=0.5) @@ -35,8 +35,8 @@ model LimPID "Test model for PID controller with optional reverse action" Td=1, yMax=1, yMin=-1, - initType=Modelica.Blocks.Types.InitPID.InitialState) - annotation (Placement(transformation(extent={{-20,70},{0,90}}))); + initType=Modelica.Blocks.Types.Init.InitialState) + annotation (Placement(transformation(extent={{-20,70},{0,90}}))); AixLib.Utilities.Diagnostics.AssertEquality assertEquality1( threShold=1e-3) annotation (Placement(transformation(extent={{60,60},{80,80}}))); @@ -80,34 +80,35 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Controls/Continuous/Examples/LimPID.mos" "Simulate and plot"), Documentation(revisions=" -
      -
    • -April 26, 2016, by Michael Wetter:
      -Relaxed tolerance of assertions from 1E-10 -to 1E-3 as the default relative tolerance in JModelica -is 1E-4. -This is for - -Buildings, issue 510. -
    • -
    • -November 21, 2011, by Michael Wetter:
      -Added documentation. -
    • -
    -", info=" -

    -This model tests the implementation of the -PID controller with optional reverse action. -The model limPIDOri is the original -implementation of the controller from the Modelica -Standard Library. The models limPID -and limPIDRev are the implementations -from the AixLib library. The model -limPIDRev is parameterized to have -reverse action. -The assertion blocks test whether the results -of all three controllers are identical. -

    -")); +
      +
    • + April 26, 2016, by Michael Wetter:
      + Relaxed tolerance of assertions from 1E-10 + to 1E-3 as the default relative tolerance in JModelica + is 1E-4. + This is for + + Buildings, issue 510. +
    • +
    • + November 21, 2011, by Michael Wetter:
      + Added documentation. +
    • +
    + ",info=" +

    + This model tests the implementation of the + PID controller with optional reverse action. + The model limPIDOri is the original + implementation of the controller from the Modelica + Standard Library. The models limPID + and limPIDRev are the implementations + from the AixLib library. The model + limPIDRev is parameterized to have + reverse action. + The assertion blocks test whether the results + of all three controllers are identical. +

    + "), + __Dymola_LockedEditing="Model from IBPSA"); end LimPID; diff --git a/AixLib/Controls/Continuous/Examples/LimPIDWithReset.mo b/AixLib/Controls/Continuous/Examples/LimPIDWithReset.mo index 69fd37f90d..0ca80f4385 100644 --- a/AixLib/Controls/Continuous/Examples/LimPIDWithReset.mo +++ b/AixLib/Controls/Continuous/Examples/LimPIDWithReset.mo @@ -80,26 +80,26 @@ protected connect(preHea.port, cap.port) annotation (Line(points={{-58,0},{-28,0}}, color={191,0,0})); annotation (Documentation(info=" -

    -Plant model for - -AixLib.Controls.Continuous.Examples.LimPIDWithReset. -consisting of a simple heat transfer model. -

    -

    Implementation

    -

    -To compare the effect of the controller output reset, the plant and control -models have been implemented in separate blocks so they can be instantiated -twice in the system model with the appropriate control settings. -

    -", revisions=" -
      -
    • -October 3, 2016, by Michael Wetter:
      -First implementation. -
    • -
    -")); +

    + Plant model for + + AixLib.Controls.Continuous.Examples.LimPIDWithReset. + consisting of a simple heat transfer model. +

    +

    Implementation

    +

    + To compare the effect of the controller output reset, the plant and control + models have been implemented in separate blocks so they can be instantiated + twice in the system model with the appropriate control settings. +

    + ", revisions=" +
      +
    • + October 3, 2016, by Michael Wetter:
      + First implementation. +
    • +
    + ")); end Plant; model Controller "PID controller with optional output reset" @@ -155,34 +155,34 @@ First implementation. connect(gain.y, y) annotation (Line(points={{51,0},{100,0},{110,0}}, color={0,0,127})); annotation (Documentation(info=" -

    -Controller model for - -AixLib.Controls.Continuous.Examples.LimPIDWithReset. -

    -

    -The controller is reset whenever the input signal becomes bigger than -30°C. -

    -

    Implementation

    -

    -To compare the effect of the controller output reset, the plant and control -models have been implemented in separate blocks so they can be instantiated -twice in the system model with the appropriate control settings. -

    -", revisions=" -
      -
    • -October 10, 2016, by Michael Wetter:
      -Added full path in the type declaration.
      -This is for issue 540. -
    • -
    • -October 3, 2016, by Michael Wetter:
      -First implementation. -
    • -
    -")); +

    + Controller model for + + AixLib.Controls.Continuous.Examples.LimPIDWithReset. +

    +

    + The controller is reset whenever the input signal becomes bigger than + 30°C. +

    +

    Implementation

    +

    + To compare the effect of the controller output reset, the plant and control + models have been implemented in separate blocks so they can be instantiated + twice in the system model with the appropriate control settings. +

    + ", revisions=" +
      +
    • + October 10, 2016, by Michael Wetter:
      + Added full path in the type declaration.
      + This is for issue 540. +
    • +
    • + October 3, 2016, by Michael Wetter:
      + First implementation. +
    • +
    + ")); end Controller; equation @@ -205,22 +205,23 @@ __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Controls/Cont "Simulate and plot"), Documentation( info=" -

    -Example that demonstrates the effect -of the integrator reset. -The top model has the reset of the controller output enabled. -By plotting the controller error, one sees that the integrator reset -improves the closed loop performance slightly. -Note, however, that both controllers have an integrator anti-windup -and hence the integrator reset has limited benefits. -

    -", +

    + Example that demonstrates the effect + of the integrator reset. + The top model has the reset of the controller output enabled. + By plotting the controller error, one sees that the integrator reset + improves the closed loop performance slightly. + Note, however, that both controllers have an integrator anti-windup + and hence the integrator reset has limited benefits. +

    + ", revisions=" -
      -
    • -September 29, 2016, by Michael Wetter:
      -First implementation. -
    • -
    -")); +
      +
    • + September 29, 2016, by Michael Wetter:
      + First implementation. +
    • +
    + "), + __Dymola_LockedEditing="Model from IBPSA"); end LimPIDWithReset; diff --git a/AixLib/Controls/Continuous/Examples/NumberOfRequests.mo b/AixLib/Controls/Continuous/Examples/NumberOfRequests.mo index 011b1a834f..7b1e20f322 100644 --- a/AixLib/Controls/Continuous/Examples/NumberOfRequests.mo +++ b/AixLib/Controls/Continuous/Examples/NumberOfRequests.mo @@ -6,7 +6,7 @@ model NumberOfRequests nin=2, threShold=0, kind=0) annotation (Placement(transformation(extent={{0,20},{20,40}}))); - Modelica.Blocks.Sources.Sine sine(freqHz=2) + Modelica.Blocks.Sources.Sine sine(f=2) annotation (Placement(transformation(extent={{-60,-20},{-40,0}}))); Modelica.Blocks.Sources.Pulse pulse(period=0.35) annotation (Placement(transformation(extent={{-60,20},{-40,40}}))); @@ -19,29 +19,30 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Controls/Continuous/Examples/NumberOfRequests.mos" "Simulate and plot"), Documentation(revisions=" -
      -
    • -January 12, 2017, by Thierry S. Nouidui:
      -Modified example to prevent simultaneous events -This is for -#646. -
    • -
    • -November 21, 2011, by Michael Wetter:
      -Added documentation. -
    • -
    -", info=" -

    -Example that demonstrates the use of the block - -AixLib.Controls.Continuous.NumberOfRequests. -The parameters of the block are such that the output is incremented -for each input signal that is strictly larger than 0. -The figure below shows the inputs and the output of the block. -

    -

    -\"Simulation -

    -")); +
      +
    • + January 12, 2017, by Thierry S. Nouidui:
      + Modified example to prevent simultaneous events + This is for + #646. +
    • +
    • + November 21, 2011, by Michael Wetter:
      + Added documentation. +
    • +
    + ",info=" +

    + Example that demonstrates the use of the block + + AixLib.Controls.Continuous.NumberOfRequests. + The parameters of the block are such that the output is incremented + for each input signal that is strictly larger than 0. + The figure below shows the inputs and the output of the block. +

    +

    + \"Simulation +

    + "), + __Dymola_LockedEditing="Model from IBPSA"); end NumberOfRequests; diff --git a/AixLib/Controls/Continuous/Examples/OffTimer.mo b/AixLib/Controls/Continuous/Examples/OffTimer.mo index 52a7b5690e..87df209fd6 100644 --- a/AixLib/Controls/Continuous/Examples/OffTimer.mo +++ b/AixLib/Controls/Continuous/Examples/OffTimer.mo @@ -26,25 +26,26 @@ __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Controls/Cont "Simulate and plot"), Documentation( info=" -

    -Example that demonstrates the use of the model - -AixLib.Controls.Continuous.OffTimer. -The input to the two timers are alternating boolean values. -Whenever the input becomes false(=0), the timer is reset. -The figures below show the input and output of the blocks. -

    -

    -\"Input
    -\"Input -

    -", +

    + Example that demonstrates the use of the model + + AixLib.Controls.Continuous.OffTimer. + The input to the two timers are alternating boolean values. + Whenever the input becomes false(=0), the timer is reset. + The figures below show the input and output of the blocks. +

    +

    + \"Input
    + \"Input +

    + ", revisions=" -
      -
    • -November 21, 2011, by Michael Wetter:
      -Added documentation. -
    • -
    -")); +
      +
    • + November 21, 2011, by Michael Wetter:
      + Added documentation. +
    • +
    + "), + __Dymola_LockedEditing="Model from IBPSA"); end OffTimer; diff --git a/AixLib/Controls/Continuous/Examples/PIDHysteresis.mo b/AixLib/Controls/Continuous/Examples/PIDHysteresis.mo deleted file mode 100644 index b35688768c..0000000000 --- a/AixLib/Controls/Continuous/Examples/PIDHysteresis.mo +++ /dev/null @@ -1,93 +0,0 @@ -within AixLib.Controls.Continuous.Examples; -model PIDHysteresis "Example model for PID controller with hysteresis" - extends Modelica.Icons.Example; - - AixLib.Controls.Continuous.PIDHysteresis con( - pre_y_start=false, - yMin=0.3, - Ti=600, - Td=60) - annotation (Placement(transformation(extent={{-40,20},{-20,40}}))); - Modelica.Blocks.Sources.Constant TSet(k=273.15 + 40, y(unit="K")) "Set point" - annotation (Placement(transformation(extent={{-80,20},{-60,40}}))); - Modelica.Thermal.HeatTransfer.Components.HeatCapacitor cap(C=1000000, T(start= - 313.15, fixed=true)) - annotation (Placement(transformation(extent={{38,30},{58,50}}))); - Modelica.Thermal.HeatTransfer.Sources.PrescribedTemperature TBC - annotation (Placement(transformation(extent={{0,60},{20,80}}))); - Modelica.Thermal.HeatTransfer.Components.ThermalConductor theCon(G=20) - annotation (Placement(transformation(extent={{38,60},{58,80}}))); - Modelica.Blocks.Math.Gain gain(k=2000) - annotation (Placement(transformation(extent={{-12,20},{8,40}}))); - Modelica.Thermal.HeatTransfer.Sensors.TemperatureSensor temSen - annotation (Placement(transformation(extent={{70,20},{90,40}}))); - Modelica.Thermal.HeatTransfer.Sources.PrescribedHeatFlow Q_flow - annotation (Placement(transformation(extent={{16,20},{36,40}}))); - Modelica.Blocks.Sources.Sine sine( - freqHz=1/86400, - offset=273.15, - amplitude=20, - phase=-1.5707963267949, - y(unit="K")) - annotation (Placement(transformation(extent={{-80,60},{-60,80}}))); -equation - - connect(TSet.y, con.u_s) annotation (Line( - points={{-59,30},{-42,30}}, - color={0,0,127})); - connect(TBC.port, theCon.port_a) annotation (Line( - points={{20,70},{38,70}}, - color={191,0,0})); - connect(theCon.port_b, cap.port) annotation (Line( - points={{58,70},{66,70},{66,30},{48,30}}, - color={191,0,0})); - connect(con.y, gain.u) annotation (Line( - points={{-19,30},{-14,30}}, - color={0,0,127})); - connect(cap.port, temSen.port) annotation (Line( - points={{48,30},{70,30}}, - color={191,0,0})); - connect(temSen.T, con.u_m) annotation (Line( - points={{90,30},{94,30},{94,6},{-30,6},{-30,18}}, - color={0,0,127})); - connect(gain.y, Q_flow.Q_flow) annotation (Line( - points={{9,30},{16,30}}, - color={0,0,127})); - connect(Q_flow.port, cap.port) annotation (Line( - points={{36,30},{48,30}}, - color={191,0,0})); - connect(sine.y, TBC.T) annotation (Line( - points={{-59,70},{-2,70}}, - color={0,0,127})); - annotation ( __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Controls/Continuous/Examples/PIDHysteresis.mos" - "Simulate and plot"), - experiment(Tolerance=1e-6, StopTime=86400), - Documentation(info=" -

    -Example that demonstrates the use of the PID controller -with hysteresis. The control objective is to keep -the temperature of the energy storage cap -at 40°C. -The controller con is parameterized to -switch on if the control error is bigger than -eon=1. -The output of the controller remains above ymin=0.3 until the control -error is smaller than eoff=-1, at which -time the controller outputs y=0 until the -control error is again bigger than 1. -The figure below shows the control error -con.feeBac.y and the control signal -con.y. -

    -

    -\"Control -

    -", revisions=" -
      -
    • -November 21, 2011, by Michael Wetter:
      -Added documentation. -
    • -
    -")); -end PIDHysteresis; diff --git a/AixLib/Controls/Continuous/Examples/PIDHysteresisTimer.mo b/AixLib/Controls/Continuous/Examples/PIDHysteresisTimer.mo deleted file mode 100644 index f89a68fc30..0000000000 --- a/AixLib/Controls/Continuous/Examples/PIDHysteresisTimer.mo +++ /dev/null @@ -1,95 +0,0 @@ -within AixLib.Controls.Continuous.Examples; -model PIDHysteresisTimer - "Example model for PID controller with hysteresis and timer" - extends Modelica.Icons.Example; - - AixLib.Controls.Continuous.PIDHysteresisTimer con( - yMin=0.3, - minOffTime=10000, - Ti=60, - Td=10) - annotation (Placement(transformation(extent={{-40,20},{-20,40}}))); - Modelica.Blocks.Sources.Constant TSet(k=273.15 + 40, y(unit="K")) "Set point" - annotation (Placement(transformation(extent={{-80,20},{-60,40}}))); - Modelica.Thermal.HeatTransfer.Components.HeatCapacitor cap(C=100000, T(start= - 293.15, fixed=true)) - annotation (Placement(transformation(extent={{38,30},{58,50}}))); - Modelica.Thermal.HeatTransfer.Sources.PrescribedTemperature TBC - annotation (Placement(transformation(extent={{0,60},{20,80}}))); - Modelica.Thermal.HeatTransfer.Components.ThermalConductor theCon(G=10) - annotation (Placement(transformation(extent={{38,60},{58,80}}))); - Modelica.Blocks.Math.Gain gain(k=800) - annotation (Placement(transformation(extent={{-12,20},{8,40}}))); - Modelica.Thermal.HeatTransfer.Sensors.TemperatureSensor temSen - annotation (Placement(transformation(extent={{70,20},{90,40}}))); - Modelica.Thermal.HeatTransfer.Sources.PrescribedHeatFlow Q_flow - annotation (Placement(transformation(extent={{16,20},{36,40}}))); - Modelica.Blocks.Sources.Sine sine( - freqHz=1/86400, - offset=273.15, - amplitude=20, - phase=-1.5707963267949) - annotation (Placement(transformation(extent={{-80,60},{-60,80}}))); -equation - - connect(TSet.y, con.u_s) annotation (Line( - points={{-59,30},{-42,30}}, - color={0,0,127})); - connect(TBC.port, theCon.port_a) annotation (Line( - points={{20,70},{38,70}}, - color={191,0,0})); - connect(theCon.port_b, cap.port) annotation (Line( - points={{58,70},{66,70},{66,30},{48,30}}, - color={191,0,0})); - connect(con.y, gain.u) annotation (Line( - points={{-19,30},{-14,30}}, - color={0,0,127})); - connect(cap.port, temSen.port) annotation (Line( - points={{48,30},{70,30}}, - color={191,0,0})); - connect(temSen.T, con.u_m) annotation (Line( - points={{90,30},{94,30},{94,6},{-30,6},{-30,18}}, - color={0,0,127})); - connect(gain.y, Q_flow.Q_flow) annotation (Line( - points={{9,30},{16,30}}, - color={0,0,127})); - connect(Q_flow.port, cap.port) annotation (Line( - points={{36,30},{48,30}}, - color={191,0,0})); - connect(sine.y, TBC.T) annotation (Line( - points={{-59,70},{-2,70}}, - color={0,0,127})); - annotation ( __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Controls/Continuous/Examples/PIDHysteresisTimer.mos" - "Simulate and plot"), - experiment(Tolerance=1e-6, StopTime=86400), - Documentation(info=" -

    -Example that demonstrates the use of the PID controller -with hysteresis and off timer. -The example is identical to - -AixLib.Controls.Continuous.Examples.PIDHysteresis, -except that the controller also has an off timer. -This timer keeps the control signal at y=0 -for a period of minOffTime=1000 seconds. -This may be used to avoid short-cycling if the load is small -and the system has little heat capacity. -

    -

    -The figure below shows the control error -con.feeBac.y and the control signal -con.y. -

    -

    -\"Control
    -\"Control -

    -", revisions=" -
      -
    • -November 21, 2011, by Michael Wetter:
      -Added documentation. -
    • -
    -")); -end PIDHysteresisTimer; diff --git a/AixLib/Controls/Continuous/Examples/SignalRanker.mo b/AixLib/Controls/Continuous/Examples/SignalRanker.mo index b8476575b3..a3fc432561 100644 --- a/AixLib/Controls/Continuous/Examples/SignalRanker.mo +++ b/AixLib/Controls/Continuous/Examples/SignalRanker.mo @@ -1,14 +1,16 @@ within AixLib.Controls.Continuous.Examples; model SignalRanker "Example model for signal ranker" extends Modelica.Icons.Example; - Modelica.Blocks.Sources.Sine sine(freqHz=2) + Modelica.Blocks.Sources.Sine sine(f=2, startTime=0.025) "Sine source" annotation (Placement(transformation(extent={{-60,-20},{-40,0}}))); Modelica.Blocks.Sources.Pulse pulse(period=0.25) + "Pulse source" annotation (Placement(transformation(extent={{-60,20},{-40,40}}))); - AixLib.Controls.Continuous.SignalRanker sigRan( - nin=3) + AixLib.Controls.Continuous.SignalRanker sigRan(nin=3) + "Signal ranker" annotation (Placement(transformation(extent={{-20,20},{0,40}}))); - Modelica.Blocks.Sources.ExpSine expSine(freqHz=10, damping=1) + Modelica.Blocks.Sources.ExpSine expSine(f=10, damping=1) + "Exponential sine source" annotation (Placement(transformation(extent={{-60,60},{-40,80}}))); equation connect(sine.y, sigRan.u[1]) annotation (Line(points={{-39,-10},{-32, @@ -22,22 +24,29 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Controls/Continuous/Examples/SignalRanker.mos" "Simulate and plot"), Documentation(info=" -

    -Example that demonstrates the use of the signal ranker model. -The figure below shows the input and output signals of the block. -Note that -sigRan.y[1] ≥ sigRan.y[2] ≥ sigRan.y[3]. -

    -

    -\"Input
    -\"Output -

    -", revisions=" -
      -
    • -November 21, 2011, by Michael Wetter:
      -Added documentation. -
    • -
    -")); +

    + Example that demonstrates the use of the signal ranker model. + The figure below shows the input and output signals of the block. + Note that + sigRan.y[1] ≥ sigRan.y[2] ≥ sigRan.y[3]. +

    +

    + \"Input
    + \"Output +

    + ",revisions=" +
      +
    • + October 15, 2021, by Michael Wetter:
      + Moved start time of sine input signal to avoid simultaneous state event and time event.
      + This is for + IBPSA, #1534. +
    • +
    • + November 21, 2011, by Michael Wetter:
      + Added documentation. +
    • +
    + "), + __Dymola_LockedEditing="Model from IBPSA"); end SignalRanker; diff --git a/AixLib/Controls/Continuous/Examples/package.order b/AixLib/Controls/Continuous/Examples/package.order index cf608faa62..6e5ab823bf 100644 --- a/AixLib/Controls/Continuous/Examples/package.order +++ b/AixLib/Controls/Continuous/Examples/package.order @@ -2,6 +2,4 @@ LimPID LimPIDWithReset NumberOfRequests OffTimer -PIDHysteresis -PIDHysteresisTimer SignalRanker diff --git a/AixLib/Controls/Continuous/LimPID.mo b/AixLib/Controls/Continuous/LimPID.mo index 7004953eda..0c112fd3f2 100644 --- a/AixLib/Controls/Continuous/LimPID.mo +++ b/AixLib/Controls/Continuous/LimPID.mo @@ -9,11 +9,11 @@ block LimPID parameter Modelica.Blocks.Types.SimpleController controllerType= Modelica.Blocks.Types.SimpleController.PI "Type of controller"; parameter Real k(min=0) = 1 "Gain of controller"; - parameter Modelica.SIunits.Time Ti(min=Modelica.Constants.small)=0.5 + parameter Modelica.Units.SI.Time Ti(min=Modelica.Constants.small) = 0.5 "Time constant of Integrator block" annotation (Dialog(enable= controllerType == Modelica.Blocks.Types.SimpleController.PI or controllerType == Modelica.Blocks.Types.SimpleController.PID)); - parameter Modelica.SIunits.Time Td(min=0)=0.1 + parameter Modelica.Units.SI.Time Td(min=0) = 0.1 "Time constant of Derivative block" annotation (Dialog(enable= controllerType == Modelica.Blocks.Types.SimpleController.PD or controllerType == Modelica.Blocks.Types.SimpleController.PID)); @@ -31,10 +31,9 @@ block LimPID "The higher Nd, the more ideal the derivative block" annotation(Dialog(enable=controllerType==.Modelica.Blocks.Types.SimpleController.PD or controllerType==.Modelica.Blocks.Types.SimpleController.PID)); - parameter Modelica.Blocks.Types.InitPID initType= Modelica.Blocks.Types.InitPID.DoNotUse_InitialIntegratorState + parameter Modelica.Blocks.Types.Init initType=Modelica.Blocks.Types.Init.InitialState "Type of initialization (1: no init, 2: steady state, 3: initial state, 4: initial output)" - annotation(Evaluate=true, - Dialog(group="Initialization")); + annotation (Evaluate=true, Dialog(group="Initialization")); // Removed as the Limiter block no longer uses this parameter. // parameter Boolean limitsAtInit = true // "= false, if limits are ignored during initialization" @@ -50,7 +49,7 @@ block LimPID enable=controllerType==.Modelica.Blocks.Types.SimpleController.PD or controllerType==.Modelica.Blocks.Types.SimpleController.PID)); parameter Real y_start=0 "Initial value of output" - annotation(Dialog(enable=initType == Modelica.Blocks.Types.InitPID.InitialOutput, group= + annotation(Dialog(enable=initType == Modelica.Blocks.Types.Init.InitialOutput, group= "Initialization")); parameter Boolean strict=true "= true, if strict limits with noEvent(..)" annotation (Evaluate=true, choices(checkBox=true), Dialog(tab="Advanced")); @@ -67,15 +66,15 @@ block LimPID annotation(Dialog(enable=reset == AixLib.Types.Reset.Parameter, group="Integrator reset")); - Modelica.Blocks.Interfaces.BooleanInput trigger if - reset <> AixLib.Types.Reset.Disabled + Modelica.Blocks.Interfaces.BooleanInput trigger + if reset <> AixLib.Types.Reset.Disabled "Resets the controller output when trigger becomes true" annotation (Placement(transformation(extent={{-20,-20},{20,20}}, rotation=90, origin={-80,-120}))); - Modelica.Blocks.Interfaces.RealInput y_reset_in if - reset == AixLib.Types.Reset.Input + Modelica.Blocks.Interfaces.RealInput y_reset_in + if reset == AixLib.Types.Reset.Input "Input signal for state to which integrator is reset, enabled if reset = AixLib.Types.Reset.Input" annotation (Placement(transformation(extent={{-140,-100},{-100,-60}}))); @@ -93,30 +92,22 @@ block LimPID final y_reset=y_reset, final k=unitTime/Ti, final y_start=xi_start, - final initType=if initType == Modelica.Blocks.Types.InitPID.SteadyState then - Modelica.Blocks.Types.Init.SteadyState - else if initType == Modelica.Blocks.Types.InitPID.InitialState - or initType == Modelica.Blocks.Types.InitPID.DoNotUse_InitialIntegratorState - then Modelica.Blocks.Types.Init.InitialState - else Modelica.Blocks.Types.Init.NoInit) if - with_I "Integral term" - annotation (Placement(transformation(extent={{-40,-60},{-20,-40}}))); + final initType=if initType == Modelica.Blocks.Types.Init.SteadyState then + Modelica.Blocks.Types.Init.SteadyState else if initType == Modelica.Blocks.Types.Init.InitialState + or initType == Modelica.Blocks.Types.Init.InitialState then Modelica.Blocks.Types.Init.InitialState + else Modelica.Blocks.Types.Init.NoInit) if with_I "Integral term" + annotation (Placement(transformation(extent={{-40,-60},{-20,-40}}))); Modelica.Blocks.Continuous.Derivative D( final k=Td/unitTime, final T=max([Td/Nd,1.e-14]), final x_start=xd_start, - final initType=if initType == Modelica.Blocks.Types.InitPID.SteadyState or - initType == Modelica.Blocks.Types.InitPID.InitialOutput - then - Modelica.Blocks.Types.Init.SteadyState - else - if initType == Modelica.Blocks.Types.InitPID.InitialState then - Modelica.Blocks.Types.Init.InitialState - else - Modelica.Blocks.Types.Init.NoInit) if with_D "Derivative term" - annotation (Placement( - transformation(extent={{-40,-10},{-20,10}}))); + final initType=if initType == Modelica.Blocks.Types.Init.SteadyState or + initType == Modelica.Blocks.Types.Init.InitialOutput then Modelica.Blocks.Types.Init.SteadyState + else if initType == Modelica.Blocks.Types.Init.InitialState then + Modelica.Blocks.Types.Init.InitialState else Modelica.Blocks.Types.Init.NoInit) + if with_D "Derivative term" + annotation (Placement(transformation(extent={{-40,-10},{-20,10}}))); Modelica.Blocks.Math.Add3 addPID( final k1=1, @@ -125,7 +116,7 @@ block LimPID annotation (Placement(transformation(extent={{0,-10},{20,10}}))); protected - constant Modelica.SIunits.Time unitTime=1 annotation (HideResult=true); + constant Modelica.Units.SI.Time unitTime=1 annotation (HideResult=true); final parameter Real revAct = if reverseActing then 1 else -1 "Switch for sign for reverse or direct acting controller"; @@ -187,8 +178,8 @@ protected Modelica.Blocks.Sources.RealExpression intRes( - final y=y_reset_internal/k - addPID.u1 - addPID.u2) if - reset <> AixLib.Types.Reset.Disabled + final y=y_reset_internal/k - addPID.u1 - addPID.u2) + if reset <> AixLib.Types.Reset.Disabled "Signal source for integrator reset" annotation (Placement(transformation(extent={{-80,-90},{-60,-70}}))); @@ -260,32 +251,33 @@ equation Line(points={{-50,-40},{-30,-40},{30,40},{50,40}}), Text( extent={{46,-6},{68,-18}}, - lineColor={128,128,128}, + textColor={128,128,128}, textString="u"), Text( extent={{-30,70},{-5,50}}, - lineColor={128,128,128}, + textColor={128,128,128}, textString="y"), Text( extent={{-58,-54},{-28,-42}}, - lineColor={128,128,128}, + textColor={128,128,128}, textString="uMin"), Text( extent={{26,40},{66,56}}, - lineColor={128,128,128}, + textColor={128,128,128}, textString="uMax")})); end Limiter; initial equation - if initType==Modelica.Blocks.Types.InitPID.InitialOutput then + if initType == Modelica.Blocks.Types.Init.InitialOutput then gainPID.y = y_start; end if; equation assert(yMax >= yMin, "LimPID: Limits must be consistent. However, yMax (=" + String(yMax) + ") < yMin (=" + String(yMin) + ")"); - if initType == Modelica.Blocks.Types.InitPID.InitialOutput and (y_start < yMin or y_start > yMax) then + if initType == Modelica.Blocks.Types.Init.InitialOutput and (y_start < yMin + or y_start > yMax) then Modelica.Utilities.Streams.error("LimPID: Start value y_start (=" + String(y_start) + ") is outside of the limits of yMin (=" + String(yMin) +") and yMax (=" + String(yMax) + ")"); end if; @@ -352,148 +344,148 @@ equation annotation ( defaultComponentName="conPID", Documentation(info=" -

    -PID controller in the standard form -

    -

    -y = k   ( e(t) + 1 ⁄ Ti   ∫ e(s) ds + Td de(t)⁄dt ), -

    -

    -where -y is the control signal, -e(t) = us - um is the control error, -with us being the set point and um being -the measured quantity, -k is the gain, -Ti is the time constant of the integral term and -Td is the time constant of the derivative term. -

    -

    -Note that the units of k are the inverse of the units of the control error, -while the units of Ti and Td are seconds. -

    -

    -For detailed treatment of integrator anti-windup, set-point weights and output limitation, see -Modelica.Blocks.Continuous.LimPID. -

    -

    Options

    -This controller can be configured as follows. -
    P, PI, PD, or PID action
    -

    -Through the parameter controllerType, the controller can be configured -as P, PI, PD or PID controller. The default configuration is PI. -

    -
    Direct or reverse acting
    -

    -Through the parameter reverseActing, the controller can be configured to -be reverse or direct acting. -The above standard form is reverse acting, which is the default configuration. -For a reverse acting controller, for a constant set point, -an increase in measurement signal u_m decreases the control output signal y -(Montgomery and McDowall, 2008). -Thus, -

    -
      -
    • - for a heating coil with a two-way valve, leave reverseActing = true, but -
    • -
    • - for a cooling coil with a two-way valve, set reverseActing = false. -
    • -
    -
    Reset of the controller output
    -

    -The controller can be configured to enable an input port that allows resetting the controller -output. The controller output can be reset as follows: -

    -
      -
    • - If reset = AixLib.Types.Reset.Disabled, which is the default, - then the controller output is never reset. -
    • -
    • - If reset = AixLib.Types.Reset.Parameter, then a boolean - input signal trigger is enabled. Whenever the value of - this input changes from false to true, - the controller output is reset by setting y - to the value of the parameter y_reset. -
    • -
    • - If reset = AixLib.Types.Reset.Input, then a boolean - input signal trigger and a real input signal y_reset_in - are enabled. Whenever the value of - trigger changes from false to true, - the controller output is reset by setting the value of y - to y_reset_in. -
    • -
    -

    -Note that this controller implements an integrator anti-windup. Therefore, -for most applications, keeping the default setting of -reset = AixLib.Types.Reset.Disabled is sufficient. -However, if the controller is used in conjuction with equipment that is being -switched on, better control performance may be achieved by resetting the controller -output when the equipment is switched on. -This is in particular the case in situations -where the equipment control input should continuously increase as the equipment is -switched on, such as a light dimmer that may slowly increase the luminance, or -a variable speed drive of a motor that should continuously increase the speed. -

    -

    References

    -

    -R. Montgomery and R. McDowall (2008). -\"Fundamentals of HVAC Control Systems.\" -American Society of Heating Refrigerating and Air-Conditioning Engineers Inc. Atlanta, GA. -

    - -", +

    + PID controller in the standard form +

    +

    + y = k   ( e(t) + 1 ⁄ Ti   ∫ e(s) ds + Td de(t)⁄dt ), +

    +

    + where + y is the control signal, + e(t) = us - um is the control error, + with us being the set point and um being + the measured quantity, + k is the gain, + Ti is the time constant of the integral term and + Td is the time constant of the derivative term. +

    +

    + Note that the units of k are the inverse of the units of the control error, + while the units of Ti and Td are seconds. +

    +

    + For detailed treatment of integrator anti-windup, set-point weights and output limitation, see + Modelica.Blocks.Continuous.LimPID. +

    +

    Options

    + This controller can be configured as follows. +
    P, PI, PD, or PID action
    +

    + Through the parameter controllerType, the controller can be configured + as P, PI, PD or PID controller. The default configuration is PI. +

    +
    Direct or reverse acting
    +

    + Through the parameter reverseActing, the controller can be configured to + be reverse or direct acting. + The above standard form is reverse acting, which is the default configuration. + For a reverse acting controller, for a constant set point, + an increase in measurement signal u_m decreases the control output signal y + (Montgomery and McDowall, 2008). + Thus, +

    +
      +
    • + for a heating coil with a two-way valve, leave reverseActing = true, but +
    • +
    • + for a cooling coil with a two-way valve, set reverseActing = false. +
    • +
    +
    Reset of the controller output
    +

    + The controller can be configured to enable an input port that allows resetting the controller + output. The controller output can be reset as follows: +

    +
      +
    • + If reset = AixLib.Types.Reset.Disabled, which is the default, + then the controller output is never reset. +
    • +
    • + If reset = AixLib.Types.Reset.Parameter, then a boolean + input signal trigger is enabled. Whenever the value of + this input changes from false to true, + the controller output is reset by setting y + to the value of the parameter y_reset. +
    • +
    • + If reset = AixLib.Types.Reset.Input, then a boolean + input signal trigger and a real input signal y_reset_in + are enabled. Whenever the value of + trigger changes from false to true, + the controller output is reset by setting the value of y + to y_reset_in. +
    • +
    +

    + Note that this controller implements an integrator anti-windup. Therefore, + for most applications, keeping the default setting of + reset = AixLib.Types.Reset.Disabled is sufficient. + However, if the controller is used in conjuction with equipment that is being + switched on, better control performance may be achieved by resetting the controller + output when the equipment is switched on. + This is in particular the case in situations + where the equipment control input should continuously increase as the equipment is + switched on, such as a light dimmer that may slowly increase the luminance, or + a variable speed drive of a motor that should continuously increase the speed. +

    +

    References

    +

    + R. Montgomery and R. McDowall (2008). + \"Fundamentals of HVAC Control Systems.\" + American Society of Heating Refrigerating and Air-Conditioning Engineers Inc. Atlanta, GA. +

    + + ", revisions=" -
      -
    • -June 1, 2020, by Michael Wetter:
      -Corrected wrong convention of reverse and direct action.
      -Changed default configuration from PID to PI.
      -This is for issue 1365. -
    • -
    • -March 9, 2020, by Michael Wetter:
      -Corrected wrong unit declaration for parameter k.
      -This is for issue 1316. -
    • -
    • -October 19, 2019, by Filip Jorissen:
      -Disabled homotopy to ensure bounded outputs -by copying the implementation from MSL 3.2.3 and by -hardcoding the implementation for homotopyType=NoHomotopy. -See issue 1221. -
    • -
    • -September 29, 2016, by Michael Wetter:
      -Refactored model. -
    • -
    • -August 25, 2016, by Michael Wetter:
      -Removed parameter limitsAtInit because it was only propagated to -the instance limiter, but this block no longer makes use of this parameter. -This is a non-backward compatible change.
      -Revised implemenentation, added comments, made some parameter in the instances final. -
    • -
    • July 18, 2016, by Philipp Mehrfeld:
      -Added integrator reset. -This is for issue 494. -
    • -
    • -March 15, 2016, by Michael Wetter:
      -Changed the default value to strict=true in order to avoid events -when the controller saturates. -This is for issue 433. -
    • -
    • -February 24, 2010, by Michael Wetter:
      -First implementation. -
    • -
    -"), Icon(graphics={ +
      +
    • + June 1, 2020, by Michael Wetter:
      + Corrected wrong convention of reverse and direct action.
      + Changed default configuration from PID to PI.
      + This is for issue 1365. +
    • +
    • + March 9, 2020, by Michael Wetter:
      + Corrected wrong unit declaration for parameter k.
      + This is for issue 1316. +
    • +
    • + October 19, 2019, by Filip Jorissen:
      + Disabled homotopy to ensure bounded outputs + by copying the implementation from MSL 3.2.3 and by + hardcoding the implementation for homotopyType=NoHomotopy. + See issue 1221. +
    • +
    • + September 29, 2016, by Michael Wetter:
      + Refactored model. +
    • +
    • + August 25, 2016, by Michael Wetter:
      + Removed parameter limitsAtInit because it was only propagated to + the instance limiter, but this block no longer makes use of this parameter. + This is a non-backward compatible change.
      + Revised implemenentation, added comments, made some parameter in the instances final. +
    • +
    • July 18, 2016, by Philipp Mehrfeld:
      + Added integrator reset. + This is for issue 494. +
    • +
    • + March 15, 2016, by Michael Wetter:
      + Changed the default value to strict=true in order to avoid events + when the controller saturates. + This is for issue 433. +
    • +
    • + February 24, 2010, by Michael Wetter:
      + First implementation. +
    • +
    + "),Icon(graphics={ Rectangle( extent={{-6,-20},{66,-66}}, lineColor={255,255,255}, @@ -544,5 +536,6 @@ First implementation. visible=strict, points={{30,60},{81,60}}, color={255,0,0}, - smooth=Smooth.None)})); + smooth=Smooth.None)}), + __Dymola_LockedEditing="Model from IBPSA"); end LimPID; diff --git a/AixLib/Controls/Continuous/NumberOfRequests.mo b/AixLib/Controls/Continuous/NumberOfRequests.mo index ccb0c21f2b..141eb9b7c2 100644 --- a/AixLib/Controls/Continuous/NumberOfRequests.mo +++ b/AixLib/Controls/Continuous/NumberOfRequests.mo @@ -39,53 +39,53 @@ algorithm annotation ( defaultComponentName="numReq", Documentation(info=" -

    -Block that outputs the number of inputs that exceed a threshold. -The parameter kind is used to determine the kind of the -inequality. The table below shows the allowed settings. -

    - - - - - - - - - - - - - - - - - - - - - -
    Value of parameter kindOutput signal incremented by 1 for each i ∈ {1, ..., nin} if
    0u[i] > threShold
    1u[i] ≥ threShold
    2u[i] ≤ threShold
    3u[i] < threShold
    -

    -This model may be used to check how many rooms -exceed a temperature threshold. -

    -", +

    + Block that outputs the number of inputs that exceed a threshold. + The parameter kind is used to determine the kind of the + inequality. The table below shows the allowed settings. +

    + + + + + + + + + + + + + + + + + + + + + +
    Value of parameter kindOutput signal incremented by 1 for each i ∈ {1, ..., nin} if
    0u[i] > threShold
    1u[i] ≥ threShold
    2u[i] ≤ threShold
    3u[i] < threShold
    +

    + This model may be used to check how many rooms + exceed a temperature threshold. +

    + ", revisions=" -
      -
    • -November 21, 2011, by Michael Wetter:
      -Improved documentation. -
    • -
    • -November 25, 2008, by Michael Wetter:
      -First implementation. -
    • -
    -"), Icon(graphics={ +
      +
    • + November 21, 2011, by Michael Wetter:
      + Improved documentation. +
    • +
    • + November 25, 2008, by Michael Wetter:
      + First implementation. +
    • +
    + "),Icon(graphics={ Text( extent={{-128,88},{-6,28}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="%threShold"), Line(points={{-62,-6},{-4,24}}, color={0,0,255}), Line(points={{-4,24},{64,60}}, color={255,0,0}), @@ -96,5 +96,6 @@ First implementation. Line(points={{-18,24},{66,54}}, color={255,0,0}), Line(points={{-78,-50},{78,-50}}), Line(points={{70,-46},{78,-50}}), - Line(points={{70,-54},{78,-50}})})); + Line(points={{70,-54},{78,-50}})}), + __Dymola_LockedEditing="Model from IBPSA"); end NumberOfRequests; diff --git a/AixLib/Controls/Continuous/OffTimer.mo b/AixLib/Controls/Continuous/OffTimer.mo index b79bff62be..aa76a97ad6 100644 --- a/AixLib/Controls/Continuous/OffTimer.mo +++ b/AixLib/Controls/Continuous/OffTimer.mo @@ -9,7 +9,7 @@ model OffTimer "Records the time since the input changed to false" annotation (Placement(transformation(extent={{100,-10},{120,10}}))); protected - discrete Modelica.SIunits.Time entryTime "Time instant when u became true"; + discrete Modelica.Units.SI.Time entryTime "Time instant when u became true"; initial equation pre(entryTime) = time; equation @@ -37,32 +37,33 @@ equation {40,-78},{68,-78}}, color={255,0,255})}), defaultComponentName="offTim", Documentation(info=" -

    -Timer that starts at the initial time with a value of 0, -and gets reset each time the input signal switches to false. -

    -

    -For example, if the simulation starts at t = 10 and at t=11, -the input becomes false, then the timer outputs -y=t-10 for t < 11, and y=t-11 afterwards, unless -the input becomes false again. -

    -", revisions=" -
      -
    • -May 12, 2017, by Michael Wetter:
      -Corrected implementation for non-zero start time.
      -This is for -issue 780. -
    • -
    • -January 4, 2011, by Wangda Zuo and Michael Wetter:
      -Revised implementation. -
    • -
    • -February 12, 2009, by Michael Wetter:
      -First implementation. -
    • -
    -")); +

    + Timer that starts at the initial time with a value of 0, + and gets reset each time the input signal switches to false. +

    +

    + For example, if the simulation starts at t = 10 and at t=11, + the input becomes false, then the timer outputs + y=t-10 for t < 11, and y=t-11 afterwards, unless + the input becomes false again. +

    + ",revisions=" +
      +
    • + May 12, 2017, by Michael Wetter:
      + Corrected implementation for non-zero start time.
      + This is for + issue 780. +
    • +
    • + January 4, 2011, by Wangda Zuo and Michael Wetter:
      + Revised implementation. +
    • +
    • + February 12, 2009, by Michael Wetter:
      + First implementation. +
    • +
    + "), + __Dymola_LockedEditing="Model from IBPSA"); end OffTimer; diff --git a/AixLib/Controls/Continuous/PIDHysteresis.mo b/AixLib/Controls/Continuous/PIDHysteresis.mo deleted file mode 100644 index a11021b219..0000000000 --- a/AixLib/Controls/Continuous/PIDHysteresis.mo +++ /dev/null @@ -1,215 +0,0 @@ -within AixLib.Controls.Continuous; -model PIDHysteresis - "PID controller with anti-windup, output limiter and output hysteresis" - extends Modelica.Blocks.Interfaces.SVcontrol; - - parameter Real eOn = 1 - "if off and control error > eOn, switch to set point tracking" - annotation (Dialog(group="Hysteresis")); - parameter Real eOff = -eOn "if on and control error < eOff, set y=0" - annotation (Dialog(group="Hysteresis")); - parameter Boolean pre_y_start=false - "Value of hysteresis output at initial time" - annotation (Dialog(group="Hysteresis")); - - parameter Modelica.Blocks.Types.SimpleController controllerType=Modelica.Blocks.Types.SimpleController.PI - "Type of controller" - annotation (Dialog(group="Set point tracking")); - parameter Real k=1 "Gain of controller" - annotation (Dialog(group="Set point tracking")); - parameter Modelica.SIunits.Time Ti "Time constant of Integrator block" - annotation (Dialog(group="Set point tracking")); - parameter Modelica.SIunits.Time Td "Time constant of Derivative block" - annotation (Dialog(group="Set point tracking")); - parameter Real yMax=1 "Upper limit of output" - annotation (Dialog(group="Set point tracking")); - parameter Real yMin=0 "Lower limit of output" - annotation (Dialog(group="Set point tracking")); - parameter Real wp=1 "Set-point weight for Proportional block (0..1)" - annotation (Dialog(group="Set point tracking")); - parameter Real wd=0 "Set-point weight for Derivative block (0..1)" - annotation (Dialog(group="Set point tracking")); - parameter Real Ni=0.9 "Ni*Ti is time constant of anti-windup compensation" - annotation (Dialog(group="Set point tracking")); - parameter Real Nd=10 "The higher Nd, the more ideal the derivative block" - annotation (Dialog(group="Set point tracking")); - parameter Boolean reverseActing = true - "Set to true for reverse acting, or false for direct acting control action" - annotation (Dialog(group="Set point tracking")); - - parameter Modelica.Blocks.Types.InitPID initType=Modelica.Blocks.Types.InitPID.DoNotUse_InitialIntegratorState - "Type of initialization (1: no init, 2: steady state, 3: initial state, 4: initial output)" - annotation (Dialog(group="Initialization")); - parameter Real xi_start=0 - "Initial or guess value value for integrator output (= integrator state)" - annotation (Dialog(group="Initialization")); - parameter Real xd_start=0 - "Initial or guess value for state of derivative block" - annotation (Dialog(group="Initialization")); - parameter Real y_start=0 "Initial value of output" - annotation (Dialog(group="Initialization")); - - parameter Boolean strict=true "= true, if strict limits with noEvent(..)" - annotation (Evaluate=true, choices(checkBox=true), Dialog(tab="Advanced")); - - LimPID PID( - final controllerType=controllerType, - final k=k, - final Ti=Ti, - final yMax=yMax, - final yMin=yMin, - final wp=wp, - final wd=wd, - final Ni=Ni, - final Nd=Nd, - final initType=initType, - final xi_start=xi_start, - final xd_start=xd_start, - final y_start=y_start, - final Td=Td, - final reverseActing=reverseActing, - final strict=strict) "Controller for room temperature" - annotation (Placement(transformation(extent={{-30,-2},{-10,18}}))); - Modelica.Blocks.Logical.Hysteresis hys( - final pre_y_start=pre_y_start, - final uLow=eOff, - final uHigh=eOn) "Hysteresis element to switch controller on and off" - annotation (Placement(transformation(extent={{-30,50},{-10,70}}))); - Modelica.Blocks.Math.Feedback feeBac - annotation (Placement(transformation(extent={{-70,50},{-50,70}}))); -protected - Modelica.Blocks.Logical.Switch swi - annotation (Placement(transformation(extent={{60,-10},{80,10}}))); - Modelica.Blocks.Sources.Constant zer(final k=0) "Zero signal" - annotation (Placement(transformation(extent={{20,-40},{40,-20}}))); - Modelica.Blocks.Logical.Switch swi1 - annotation (Placement(transformation(extent={{40,50},{60,70}}))); - -equation - assert(eOff < eOn, "Wrong controller parameters. Require eOff < eOn."); - connect(zer.y, swi.u3) annotation (Line( - points={{41,-30},{48,-30},{48,-8},{58,-8}}, - color={0,0,127})); - connect(swi.y, y) annotation (Line( - points={{81,6.10623e-16},{88.25,6.10623e-16},{88.25,1.16573e-15},{95.5, - 1.16573e-15},{95.5,5.55112e-16},{110,5.55112e-16}}, - color={0,0,127})); - connect(u_m, PID.u_m) annotation (Line( - points={{-1.11022e-15,-120},{-1.11022e-15,-80},{-20,-80},{-20,-4}}, - color={0,0,127})); - connect(hys.y, swi.u2) annotation (Line( - points={{-9,60},{20,60},{20,6.66134e-16},{58,6.66134e-16}}, - color={255,0,255})); - connect(PID.y, swi.u1) annotation (Line( - points={{-9,8},{24.5,8},{58,8}}, - color={0,0,127})); - connect(u_s, feeBac.u1) annotation (Line( - points={{-120,1.11022e-15},{-80,1.11022e-15},{-80,60},{-68,60}}, - color={0,0,127})); - connect(u_m, feeBac.u2) annotation (Line( - points={{-1.11022e-15,-120},{-1.11022e-15,-80},{-60,-80},{-60,52}}, - color={0,0,127})); - connect(feeBac.y, hys.u) annotation (Line( - points={{-51,60},{-32,60}}, - color={0,0,127})); - connect(u_s, swi1.u1) annotation (Line( - points={{-120,1.11022e-15},{-80,1.11022e-15},{-80,80},{20,80},{20,68},{38, - 68}}, - color={0,0,127})); - connect(hys.y, swi1.u2) annotation (Line( - points={{-9,60},{38,60}}, - color={255,0,255})); - connect(u_m, swi1.u3) annotation (Line( - points={{-1.11022e-15,-120},{-1.11022e-15,52},{38,52}}, - color={0,0,127})); - connect(swi1.y, PID.u_s) annotation (Line( - points={{61,60},{70,60},{70,30},{-50,30},{-50,8},{-32,8}}, - color={0,0,127})); - annotation (Dialog(group="Set point tracking"), - Icon(graphics={ - Polygon( - points={{-80,94},{-88,72},{-72,72},{-80,94}}, - lineColor={192,192,192}, - fillColor={192,192,192}, - fillPattern=FillPattern.Solid), - Polygon( - points={{90,-76},{68,-68},{68,-84},{90,-76}}, - lineColor={192,192,192}, - fillColor={192,192,192}, - fillPattern=FillPattern.Solid), - Line(points={{-90,-76},{82,-76}}, color={192,192,192}), - Text( - extent={{-20,-16},{80,-56}}, - lineColor={192,192,192}, - textString="PID"), - Line(points={{-80,84},{-80,-84}}, color={192,192,192}), - Line(points={{-80,-76},{-36,-76},{-36,-30},{36,12},{64,12}}, color={0,0, - 127}), - Line(points={{-12,73},{-22,68},{-12,63}}), - Line(points={{-42,68},{28,68}}), - Line(points={{-22,39},{-12,34},{-22,29}}), - Line(points={{-42,68},{-42,34}}), - Line(points={{12,68},{12,34}}), - Line(points={{-60,34},{12,34}})}), -defaultComponentName="conPID", -Documentation(info=" -

    -Block of a controller for set point tracking with a hysteresis element that switches the -controller on and off. -

    -

    -If the controller is off, and the control error becomes larger than eOn, then -the controller switches to on and remains on until the control error is smaller than eOff. -When the controller is on, the set point tracking can be done using a P-, PI-, or PID-controller. -In its off-mode, the control output is zero. Thus, the parameters yMin and yMax are -used to constrain the output of the controller during its on mode only. This can be used, for -example, to modulate a device between 0.3 and 1.0, and switch it to off when the control error -is small enough. -

    -", revisions=" -
      -
    • -June 1, 2020, by Michael Wetter:
      -Corrected wrong convention of reverse and direct action.
      -Changed default configuration from PID to PI.
      -This is for issue 1365. -
    • -
    • -September 29, 2016, by Michael Wetter:
      -Removed parameter limitsAtInit because it is no longer -used in the PID controller. -
    • -
    • -April 13, 2016, by Michael Wetter:
      -Set zer(final k=0) and made swi, zer and zer1 protected -which they are also for - -AixLib.Controls.Continuous.PIDHysteresis. -These changes are not backwards compatible. -
    • -
    • -March 15, 2016, by Michael Wetter:
      -Changed the default value to strict=true -in order to avoid events when the controller saturates. -Also assigned propogated values to be final. -This is for -issue 433. -
    • -
    • -February 24, 2010, by Michael Wetter:
      -Changed PID controller from Modelica Standard Library to -PID controller from Buildings library to allow reverse control action. -
    • -
    • -October 2, 2009, by Michael Wetter:
      -Fixed error in default parameter eOn. -Fixed error by introducing parameter Td, -which used to be hard-wired in the PID controller. -
    • -
    • -February 14, 2009, by Michael Wetter:
      -First implementation. -
    • -
    -")); -end PIDHysteresis; diff --git a/AixLib/Controls/Continuous/PIDHysteresisTimer.mo b/AixLib/Controls/Continuous/PIDHysteresisTimer.mo deleted file mode 100644 index 64927f087d..0000000000 --- a/AixLib/Controls/Continuous/PIDHysteresisTimer.mo +++ /dev/null @@ -1,253 +0,0 @@ -within AixLib.Controls.Continuous; -model PIDHysteresisTimer - "PID controller with anti-windup, hysteresis and timer to prevent short cycling" - extends Modelica.Blocks.Interfaces.SVcontrol; - - parameter Real minOffTime=600 - "Minimum time that devices needs to be off before it can run again" - annotation (Dialog(group="On/off controller")); - parameter Real eOn = 1 - "if off and control error > eOn, switch to set point tracking" - annotation (Dialog(group="On/off controller")); - parameter Real eOff = -eOn "if on and control error < eOff, set y=0" - annotation (Dialog(group="On/off controller")); - parameter Boolean pre_y_start=false - "Value of hysteresis output at initial time" - annotation (Dialog(group="On/off controller")); - - parameter Modelica.Blocks.Types.SimpleController controllerType=Modelica.Blocks.Types.SimpleController.PI - "Type of controller" - annotation (Dialog(group="Set point tracking")); - parameter Real k=1 "Gain of controller" - annotation (Dialog(group="Set point tracking")); - parameter Modelica.SIunits.Time Ti "Time constant of Integrator block" - annotation (Dialog(group="Set point tracking")); - parameter Modelica.SIunits.Time Td "Time constant of Derivative block" - annotation (Dialog(group="Set point tracking")); - parameter Real yMax=1 "Upper limit of modulating output" - annotation (Dialog(group="Set point tracking")); - parameter Real yMin=0.3 - "Lower limit of modulating output (before switch to 0)" - annotation (Dialog(group="Set point tracking")); - parameter Real wp=1 "Set-point weight for Proportional block (0..1)" - annotation (Dialog(group="Set point tracking")); - parameter Real wd=0 "Set-point weight for Derivative block (0..1)" - annotation (Dialog(group="Set point tracking")); - parameter Real Ni=0.9 "Ni*Ti is time constant of anti-windup compensation" - annotation (Dialog(group="Set point tracking")); - parameter Real Nd=10 "The higher Nd, the more ideal the derivative block" - annotation (Dialog(group="Set point tracking")); - parameter Boolean reverseActing = true - "Set to true for reverse acting, or false for direct acting control action" - annotation (Dialog(group="Set point tracking")); - - parameter Modelica.Blocks.Types.InitPID initType=Modelica.Blocks.Types.InitPID.DoNotUse_InitialIntegratorState - "Type of initialization (1: no init, 2: steady state, 3: initial state, 4: initial output)" - annotation (Dialog(group="Initialization")); - parameter Real xi_start=0 - "Initial or guess value value for integrator output (= integrator state)" - annotation (Dialog(group="Initialization")); - parameter Real xd_start=0 - "Initial or guess value for state of derivative block" - annotation (Dialog(group="Initialization")); - parameter Real y_start=0 "Initial value of output" - annotation (Dialog(group="Initialization")); - - parameter Boolean strict=true "= true, if strict limits with noEvent(..)" - annotation (Evaluate=true, choices(checkBox=true), Dialog(tab="Advanced")); - - Modelica.Blocks.Interfaces.RealOutput tOn "Time since boiler switched on" - annotation (Placement(transformation(extent={{100,70},{120,90}}))); - Modelica.Blocks.Interfaces.RealOutput tOff "Time since boiler switched off" - annotation (Placement(transformation(extent={{100,30},{120,50}}))); - - LimPID con( - final controllerType=controllerType, - final k=k, - final Ti=Ti, - final Td=Td, - final wp=wp, - final wd=wd, - final Ni=Ni, - final Nd=Nd, - final initType=initType, - final xi_start=xi_start, - final xd_start=xd_start, - final y_start=y_start, - final yMin=yMin, - final yMax=yMax, - final reverseActing=reverseActing, - final strict=strict) "Controller to track setpoint" - annotation (Placement(transformation(extent={{-10,-60},{10,-40}}))); - OffTimer offHys - annotation (Placement(transformation(extent={{-20,0},{0,20}}))); - Modelica.Blocks.Logical.Timer onTimer - annotation (Placement(transformation(extent={{-20,70},{0,90}}))); - Modelica.Blocks.Logical.Timer offTimer - annotation (Placement(transformation(extent={{20,30},{40,50}}))); - Modelica.Blocks.Interfaces.BooleanOutput on - "Outputs true if boiler is on" annotation (Placement( - transformation(extent={{100,-90},{120,-70}}))); - Modelica.Blocks.Math.Feedback feeBac - annotation (Placement(transformation(extent={{-90,-10},{-70,10}}))); - Modelica.Blocks.Logical.Hysteresis hys( - final pre_y_start=pre_y_start, - final uLow=eOff, - final uHigh=eOn) "Hysteresis element to switch controller on and off" - annotation (Placement(transformation(extent={{-60,-10},{-40,10}}))); -protected - Modelica.Blocks.Sources.Constant zer(final k=0) "Zero signal" - annotation (Placement(transformation(extent={{20,-80},{40,-60}}))); - Modelica.Blocks.Logical.Switch switch2 - annotation (Placement(transformation(extent={{62,-50},{82,-30}}))); - Modelica.Blocks.Logical.GreaterEqualThreshold greaterEqualThreshold(threshold= - minOffTime) - annotation (Placement(transformation(extent={{20,0},{40,20}}))); - Modelica.Blocks.Logical.And and3 - annotation (Placement(transformation(extent={{60,-10},{80,10}}))); - Modelica.Blocks.Logical.Not not1 - annotation (Placement(transformation(extent={{-20,30},{0,50}}))); - Modelica.Blocks.Logical.Switch switch1 - annotation (Placement(transformation(extent={{-40,-60},{-20,-40}}))); -equation - connect(u_m, con.u_m) annotation (Line( - points={{-1.11022e-15,-120},{-1.11022e-15,-105.5},{-6.66131e-16,-105.5},{ - -6.66131e-16,-91},{4.44089e-16,-91},{4.44089e-16,-62}}, - color={0,0,127})); - connect(zer.y,switch2. u3) annotation (Line( - points={{41,-70},{50,-70},{50,-48},{60,-48}}, - color={0,0,127})); - connect(switch2.y, y) annotation (Line( - points={{83,-40},{96,-40},{96,5.55112e-16},{110,5.55112e-16}}, - color={0,0,127})); - connect(and3.y,switch2. u2) annotation (Line( - points={{81,6.10623e-16},{90,6.10623e-16},{90,-20},{52,-20},{52,-40},{60, - -40}}, - color={255,0,255})); - connect(greaterEqualThreshold.y, and3.u1) annotation (Line( - points={{41,10},{50,10},{50,6.66134e-16},{58,6.66134e-16}}, - color={255,0,255})); - connect(offHys.y, greaterEqualThreshold.u) annotation (Line( - points={{1,10},{18,10}}, - color={0,0,127})); - connect(con.y,switch2. u1) annotation (Line( - points={{11,-50},{46,-50},{46,-32},{60,-32}}, - color={0,0,127})); - connect(onTimer.y, tOn) annotation (Line( - points={{1,80},{110,80}}, - color={0,0,127})); - connect(offTimer.y, tOff) annotation (Line( - points={{41,40},{110,40}}, - color={0,0,127})); - connect(and3.y, on) annotation (Line( - points={{81,6.10623e-16},{90,6.10623e-16},{90,-80},{110,-80}}, - color={255,0,255})); - connect(and3.y, onTimer.u) annotation (Line( - points={{81,6.10623e-16},{90,6.10623e-16},{90,60},{-40,60},{-40,80},{-22, - 80}}, - color={255,0,255})); - connect(and3.y, not1.u) annotation (Line( - points={{81,6.10623e-16},{90,6.10623e-16},{90,60},{-40,60},{-40,40},{-22, - 40}}, - color={255,0,255})); - connect(not1.y, offTimer.u) annotation (Line( - points={{1,40},{18,40}}, - color={255,0,255})); - connect(and3.y, switch1.u2) annotation (Line( - points={{81,6.10623e-16},{90,6.10623e-16},{90,-20},{-60,-20},{-60,-50},{ - -42,-50}}, - color={255,0,255})); - connect(u_s, switch1.u1) annotation (Line( - points={{-120,1.11022e-15},{-92,1.11022e-15},{-92,-42},{-42,-42}}, - color={0,0,127})); - connect(u_m, switch1.u3) annotation (Line( - points={{-1.11022e-15,-120},{-1.11022e-15,-90},{-80,-90},{-80,-58},{-42, - -58}}, - color={0,0,127})); - connect(switch1.y, con.u_s) annotation (Line( - points={{-19,-50},{-12,-50}}, - color={0,0,127})); - connect(u_s, feeBac.u1) annotation (Line( - points={{-120,1.11022e-15},{-112,1.11022e-15},{-112,1.77635e-15},{-104, - 1.77635e-15},{-104,6.66134e-16},{-88,6.66134e-16}}, - color={0,0,127})); - connect(u_m, feeBac.u2) annotation (Line( - points={{-1.11022e-15,-120},{-1.11022e-15,-90},{-80,-90},{-80,-8}}, - color={0,0,127})); - connect(feeBac.y, hys.u) annotation (Line( - points={{-71,6.10623e-16},{-68.75,6.10623e-16},{-68.75,1.27676e-15},{ - -66.5,1.27676e-15},{-66.5,6.66134e-16},{-62,6.66134e-16}}, - color={0,0,127})); - connect(hys.y, offHys.u) annotation (Line( - points={{-39,6.10623e-16},{-30,6.10623e-16},{-30,10},{-22,10}}, - color={255,0,255})); - connect(hys.y, and3.u2) annotation (Line( - points={{-39,6.10623e-16},{-30,6.10623e-16},{-30,-8},{58,-8}}, - color={255,0,255})); - annotation ( Icon(graphics={ - Polygon( - points={{-80,94},{-88,72},{-72,72},{-80,94}}, - lineColor={192,192,192}, - fillColor={192,192,192}, - fillPattern=FillPattern.Solid), - Polygon( - points={{90,-76},{68,-68},{68,-84},{90,-76}}, - lineColor={192,192,192}, - fillColor={192,192,192}, - fillPattern=FillPattern.Solid), - Line(points={{-90,-76},{82,-76}}, color={192,192,192}), - Line(points={{-80,84},{-80,-84}}, color={192,192,192}), - Line(points={{-80,-76},{-48,-76},{-48,30},{2,40},{54,-42},{54,-76},{64, - -76}}, color={0,0,127})}), - defaultComponentName="conPID", -Documentation( -info=" -

    -Block of a controller for set point tracking with a hysteresis element that switches the controller on and off, and a timer that prevents the -controller to short cycle. -

    -

    -The controller is similar to - -AixLib.Controls.Continuous.PIDHysteresis but in addition, -it has a timer that prevents the controller from switching to on -too fast. When the controller switches off, the timer starts and -avoids the controller from switching on until minOffTime seconds elapsed. -

    -", revisions=" -
      -
    • -June 1, 2020, by Michael Wetter:
      -Corrected wrong convention of reverse and direct action.
      -Changed default configuration from PID to PI.
      -This is for issue 1365. -
    • -
    • -September 29, 2016, by Michael Wetter:
      -Removed parameter limitsAtInit because it is no longer -used in the PID controller. -
    • -
    • -March 15, 2016, by Michael Wetter:
      -Changed the default value to strict=true -in order to avoid events when the controller saturates. -Also assigned propogated values to be final. -This is for -issue 433. -
    • -
    • -February 24, 2010, by Michael Wetter:
      -Changed PID controller from Modelica Standard Library to -PID controller from Buildings library to allow reverse control action. -
    • -
    • -October 2, 2009, by Michael Wetter:
      -Fixed error in default parameter eOn. -
    • -
    • -February 9, 2009, by Michael Wetter:
      -First implementation. -
    • -
    -")); -end PIDHysteresisTimer; diff --git a/AixLib/Controls/Continuous/PITemp.mo b/AixLib/Controls/Continuous/PITemp.mo index 767bbe6d6e..bffe3a9818 100644 --- a/AixLib/Controls/Continuous/PITemp.mo +++ b/AixLib/Controls/Continuous/PITemp.mo @@ -12,7 +12,8 @@ model PITemp "PI controller that can switch the output range of the controller" parameter Real h = 1 "upper limit controller output" annotation(Dialog(group = "Control")); parameter Real l = 0 "lower limit of controller output" annotation(Dialog(group = "Control")); parameter Real KR = 1 "Gain" annotation(Dialog(group = "Control")); - parameter Modelica.SIunits.Time TN = 1 "Time Constant (T>0 required)" annotation(Dialog(group = "Control")); + parameter Modelica.Units.SI.Time TN=1 "Time Constant (T>0 required)" + annotation (Dialog(group="Control")); Modelica.Blocks.Interfaces.RealOutput y annotation(Placement(transformation(extent = {{80, -10}, {100, 10}}), iconTransformation(extent = {{80, -10}, {100, 10}}))); parameter Boolean rangeSwitch = false "Switch controller output range"; Modelica.Blocks.Interfaces.BooleanInput onOff "Switches Controler on and off" annotation(Placement(transformation(extent = {{-120, -80}, {-80, -40}}), iconTransformation(extent = {{-100, -60}, {-80, -40}}))); diff --git a/AixLib/Controls/Continuous/SignalRanker.mo b/AixLib/Controls/Continuous/SignalRanker.mo index aebb86c06c..1628399877 100644 --- a/AixLib/Controls/Continuous/SignalRanker.mo +++ b/AixLib/Controls/Continuous/SignalRanker.mo @@ -1,45 +1,41 @@ within AixLib.Controls.Continuous; block SignalRanker "Ranks output signals such that y[i] >= y[i+1]" extends Modelica.Blocks.Interfaces.MIMO(final nout=nin); -protected - Real t "Temporary variable"; -algorithm - y[:] := u[:]; - for i in 1:nin loop - for j in 1:nin-1 loop - if y[j] < y[j+1] then - t := y[j+1]; - y[j+1] := y[j]; - y[j] := t; - end if; - end for; - end for; +equation + y = Modelica.Math.Vectors.sort(u, ascending=false); annotation ( defaultComponentName="sigRan", Documentation(info=" -

    -Block that sorts the input signal u[:] such that the output -signal satisfies y[i] >= y[i+1] for all i=1, ..., nin-1. -

    -

    -This block may for example be used in a variable air volume flow -controller to access the position of the dampers that are most open. -

    -", +

    + Block that sorts the input signal u[:] such that the output + signal satisfies y[i] >= y[i+1] for all i=1, ..., nin-1. +

    +

    + This block may for example be used in a variable air volume flow + controller to access the position of the dampers that are most open. +

    + ", revisions=" -
      -
    • -November 21, 2011, by Michael Wetter:
      -Removed assert statement. -
    • -
    • -November 25, 2008, by Michael Wetter:
      -First implementation. -
    • -
    -"), +
      +
    • + October 15, 2021, by Michael Wetter:
      + Changed implementation to use sort function from Modelica Standard Library.
      + This is for + IBPSA, #1534. +
    • +
    • + November 21, 2011, by Michael Wetter:
      + Removed assert statement. +
    • +
    • + November 25, 2008, by Michael Wetter:
      + First implementation. +
    • +
    + "), Icon(graphics={Text( extent={{-94,34},{96,-164}}, - lineColor={0,0,255}, - textString="y[i] >= y[i+1]")})); + textColor={0,0,255}, + textString="y[i] >= y[i+1]")}), + __Dymola_LockedEditing="Model from IBPSA"); end SignalRanker; diff --git a/AixLib/Controls/Continuous/Validation/LimPIDReset.mo b/AixLib/Controls/Continuous/Validation/LimPIDReset.mo index c18e8b0765..97407eb96f 100644 --- a/AixLib/Controls/Continuous/Validation/LimPIDReset.mo +++ b/AixLib/Controls/Continuous/Validation/LimPIDReset.mo @@ -3,7 +3,7 @@ model LimPIDReset "Test model for PID controller with optional intgerator reset" extends Modelica.Icons.Example; - Modelica.Blocks.Sources.Sine setPoi(freqHz=1) "Set point signal" + Modelica.Blocks.Sources.Sine setPoi(f=1) "Set point signal" annotation (Placement(transformation(extent={{-40,-20},{-20,0}}))); AixLib.Controls.Continuous.LimPID limPIDPar( yMax=1, @@ -14,13 +14,13 @@ model LimPIDReset Td=10, k=0.2, controllerType=Modelica.Blocks.Types.SimpleController.PID, - initType=Modelica.Blocks.Types.InitPID.InitialOutput, + initType=Modelica.Blocks.Types.Init.InitialOutput, y_start=0.3) "PId controller with integrator reset to a parameter value" annotation (Placement(transformation(extent={{20,-20},{40,0}}))); Modelica.Blocks.Sources.Constant mea(k=0.5) "Measured signal" annotation (Placement(transformation(extent={{-40,-50},{-20,-30}}))); AixLib.Controls.Continuous.LimPID limPIDDef( - initType=Modelica.Blocks.Types.InitPID.InitialState, + initType=Modelica.Blocks.Types.Init.InitialState, Td=10, k=1, Ti=1, @@ -44,14 +44,14 @@ model LimPIDReset k=0.2, Ti=20, controllerType=Modelica.Blocks.Types.SimpleController.PID, - initType=Modelica.Blocks.Types.InitPID.InitialOutput, + initType=Modelica.Blocks.Types.Init.InitialOutput, y_start=0.3) "PId controller with integrator reset to an input value" annotation (Placement(transformation(extent={{20,-80},{40,-60}}))); Modelica.Blocks.Sources.Constant conRes(k=0.9) "Signal to which integrator will be reset to" annotation (Placement(transformation(extent={{-40,-90},{-20,-70}}))); Modelica.Blocks.Continuous.LimPID limPIDOri( - initType=Modelica.Blocks.Types.InitPID.InitialState, + initType=Modelica.Blocks.Types.Init.InitialState, Td=10, k=1, Ti=1, @@ -94,31 +94,32 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Controls/Continuous/Validation/LimPIDReset.mos" "Simulate and plot"), Documentation(revisions=" -
      -
    • -September 29, 2016, by Michael Wetter:
      -Revised example to increase code coverage. -
    • -
    • -August 25, 2016, by Michael Wetter:
      -Revised documentation and added script for regression test. -
    • -
    • -August 02, 2016, by Philipp Mehrfeld:
      -First implementation. -
    • -
    -", info=" -

    This model tests the implementation the -AixLib.Controls.Continuous.LimPID -with integrator reset. -

    -

    -The instance limPIOri is the original implementation of the controller -from the Modelica Standard Library. -The instance limPIWithReset is the implementation from this library -with integrator reset enabled. Whenever the boolean pulse input becomes true, -the integrator is reset to y_reset. -

    -")); +
      +
    • + September 29, 2016, by Michael Wetter:
      + Revised example to increase code coverage. +
    • +
    • + August 25, 2016, by Michael Wetter:
      + Revised documentation and added script for regression test. +
    • +
    • + August 02, 2016, by Philipp Mehrfeld:
      + First implementation. +
    • +
    + ",info=" +

    This model tests the implementation the + AixLib.Controls.Continuous.LimPID + with integrator reset. +

    +

    + The instance limPIOri is the original implementation of the controller + from the Modelica Standard Library. + The instance limPIWithReset is the implementation from this library + with integrator reset enabled. Whenever the boolean pulse input becomes true, + the integrator is reset to y_reset. +

    + "), + __Dymola_LockedEditing="Model from IBPSA"); end LimPIDReset; diff --git a/AixLib/Controls/Continuous/Validation/OffTimerNonZeroStart.mo b/AixLib/Controls/Continuous/Validation/OffTimerNonZeroStart.mo index 10f3bdc4f7..a5fe0f1723 100644 --- a/AixLib/Controls/Continuous/Validation/OffTimerNonZeroStart.mo +++ b/AixLib/Controls/Continuous/Validation/OffTimerNonZeroStart.mo @@ -8,16 +8,17 @@ model OffTimerNonZeroStart __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Controls/Continuous/Validation/OffTimerNonZeroStart.mos" "Simulate and plot"), Documentation(revisions=" -
      -
    • -May 12, 2017, by Michael Wetter:
      -First implementation. -
    • -
    -", info=" -

    This model tests the implementation the -AixLib.Controls.Continuous.OffTimer -for negative start time. -

    -")); +
      +
    • + May 12, 2017, by Michael Wetter:
      + First implementation. +
    • +
    + ",info=" +

    This model tests the implementation the + AixLib.Controls.Continuous.OffTimer + for negative start time. +

    + "), + __Dymola_LockedEditing="Model from IBPSA"); end OffTimerNonZeroStart; diff --git a/AixLib/Controls/Continuous/package.order b/AixLib/Controls/Continuous/package.order index d071954510..0e3052da91 100644 --- a/AixLib/Controls/Continuous/package.order +++ b/AixLib/Controls/Continuous/package.order @@ -1,8 +1,6 @@ LimPID NumberOfRequests OffTimer -PIDHysteresis -PIDHysteresisTimer PITemp SignalRanker Examples diff --git a/AixLib/Controls/Discrete/BooleanDelay.mo b/AixLib/Controls/Discrete/BooleanDelay.mo index d9baa19fb6..5366c80321 100644 --- a/AixLib/Controls/Discrete/BooleanDelay.mo +++ b/AixLib/Controls/Discrete/BooleanDelay.mo @@ -21,39 +21,40 @@ algorithm defaultComponentName="del", Documentation( info=" -

    -Block that delays the boolean input signal by -one sampling interval. -For example, -if u denotes the input, -y denotes the output, and -ti and ti+1 -denote subsequent sampling -instants, then the model outputs -

    -

    -y(ti+1) = u(ti). -

    -", +

    + Block that delays the boolean input signal by + one sampling interval. + For example, + if u denotes the input, + y denotes the output, and + ti and ti+1 + denote subsequent sampling + instants, then the model outputs +

    +

    + y(ti+1) = u(ti). +

    + ", revisions=" -
      -
    • -June 6, 2015, by Michael Wetter:
      -Set start value and fixed attribute -for firstTrigger -to avoid a translation warning in pedantic mode -in Dymola 2016. -This is for -#266. -
    • -
    • -November 21, 2011, by Michael Wetter:
      -Improved documentation. -
    • -
    • -November 26, 2008, by Michael Wetter:
      -First implementation. -
    • -
    -")); +
      +
    • + June 6, 2015, by Michael Wetter:
      + Set start value and fixed attribute + for firstTrigger + to avoid a translation warning in pedantic mode + in Dymola 2016. + This is for + #266. +
    • +
    • + November 21, 2011, by Michael Wetter:
      + Improved documentation. +
    • +
    • + November 26, 2008, by Michael Wetter:
      + First implementation. +
    • +
    + "), + __Dymola_LockedEditing="Model from IBPSA"); end BooleanDelay; diff --git a/AixLib/Controls/Discrete/Examples/BooleanDelay.mo b/AixLib/Controls/Discrete/Examples/BooleanDelay.mo index 7d2d2cd6eb..696c068a80 100644 --- a/AixLib/Controls/Discrete/Examples/BooleanDelay.mo +++ b/AixLib/Controls/Discrete/Examples/BooleanDelay.mo @@ -17,22 +17,23 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Controls/Discrete/Examples/BooleanDelay.mos" "Simulate and plot"), Documentation(info=" -

    -Example that demonstrates the use of the boolean delay block. -The output signal of the block is delayed by one sampling interval. -

    -", revisions=" -
      -
    • -January 3, 2017, by Michael Wetter:
      -Changed sampling interval to avoid simultaneous events.
      -This is for -#641. -
    • -
    • -November 21, 2011, by Michael Wetter:
      -Added documentation. -
    • -
    -")); +

    + Example that demonstrates the use of the boolean delay block. + The output signal of the block is delayed by one sampling interval. +

    + ",revisions=" +
      +
    • + January 3, 2017, by Michael Wetter:
      + Changed sampling interval to avoid simultaneous events.
      + This is for + #641. +
    • +
    • + November 21, 2011, by Michael Wetter:
      + Added documentation. +
    • +
    + "), + __Dymola_LockedEditing="Model from IBPSA"); end BooleanDelay; diff --git a/AixLib/Controls/Discrete/Examples/package.mo b/AixLib/Controls/Discrete/Examples/package.mo index 13ca5be3eb..261a7d7931 100644 --- a/AixLib/Controls/Discrete/Examples/package.mo +++ b/AixLib/Controls/Discrete/Examples/package.mo @@ -1,6 +1,7 @@ within AixLib.Controls.Discrete; package Examples "Collection of models that illustrate model use and test models" extends Modelica.Icons.ExamplesPackage; + annotation (preferredView="info", Documentation(info="

    This package contains examples for the use of models that can be found in diff --git a/AixLib/Controls/Discrete/package.mo b/AixLib/Controls/Discrete/package.mo index 7e1fc02084..38994acda1 100644 --- a/AixLib/Controls/Discrete/package.mo +++ b/AixLib/Controls/Discrete/package.mo @@ -1,6 +1,7 @@ within AixLib.Controls; package Discrete "Package with models for discrete time controls" extends Modelica.Icons.Package; + annotation ( preferredView="info", Documentation(info=" This package contains component models for discrete time controls. diff --git a/AixLib/Controls/HVACAgentBasedControl/Agents/Broker.mo b/AixLib/Controls/HVACAgentBasedControl/Agents/Broker.mo index f0d5270a60..993d6f85a7 100644 --- a/AixLib/Controls/HVACAgentBasedControl/Agents/Broker.mo +++ b/AixLib/Controls/HVACAgentBasedControl/Agents/Broker.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.HVACAgentBasedControl.Agents; +within AixLib.Controls.HVACAgentBasedControl.Agents; model Broker extends BaseClasses.PartialAgent; @@ -45,7 +45,7 @@ model Broker // This section contains the blocks for the state-machine logic of the agent public - Modelica.StateGraph.InitialStep waiting(nIn=7) + Modelica.StateGraph.InitialStep waiting(nIn=7, nOut=1) annotation (Placement(transformation( extent={{-10,-10},{10,10}}, rotation=0, @@ -55,7 +55,7 @@ public extent={{-10,-10},{10,10}}, rotation=0, origin={-122,-444}))); - Modelica.StateGraph.Step message(nOut=2) + Modelica.StateGraph.Step message(nOut=2, nIn=1) annotation (Placement(transformation(extent={{-108,-454},{-88,-434}}))); Modelica.Blocks.Math.IntegerChange integerChange annotation (Placement(transformation(extent={{-184,-496},{-164,-476}}))); @@ -70,7 +70,7 @@ public annotation (Placement(transformation(extent={{102,148},{122,168}}))); Modelica.StateGraph.TransitionWithSignal newRequests annotation (Placement(transformation(extent={{32,108},{12,128}}))); - Modelica.StateGraph.Step callForProposal(nIn=2) + Modelica.StateGraph.Step callForProposal(nIn=2, nOut=1) annotation (Placement(transformation(extent={{-142,38},{-122,58}}))); Modelica.StateGraph.TransitionWithSignal newProposal(waitTime=0.1, enableTimer=false) @@ -78,7 +78,7 @@ public Modelica.Blocks.Sources.BooleanExpression booleanExpression1(y=noEvent(( getperformative.y[1] == 13) or (getperformative.y[1] == 17))) annotation (Placement(transformation(extent={{-32,4},{-6,22}}))); - Modelica.StateGraph.Step collectProposal(nOut=2) + Modelica.StateGraph.Step collectProposal(nOut=2, nIn=1) annotation (Placement(transformation(extent={{54,38},{74,58}}))); Modelica.StateGraph.TransitionWithSignal allProposalsCollected(enableTimer=true, waitTime= 0.1) @@ -94,7 +94,7 @@ public annotation (Placement(transformation(extent={{126,38},{146,58}}))); Modelica.Blocks.Logical.Not not2 annotation (Placement(transformation(extent={{122,-10},{130,-2}}))); - Modelica.StateGraph.StepWithSignal sendCall(nOut=2) + Modelica.StateGraph.StepWithSignal sendCall(nOut=2, nIn=1) annotation (Placement(transformation(extent={{-78,38},{-58,58}}))); Modelica.StateGraph.Transition transition(enableTimer=true, waitTime=0.1) annotation (Placement(transformation(extent={{-110,38},{-90,58}}))); @@ -102,13 +102,13 @@ public annotation (Placement(transformation(extent={{-22,-210},{-2,-190}}))); Modelica.StateGraph.Transition transition1(enableTimer=true, waitTime=0.1) annotation (Placement(transformation(extent={{-86,-210},{-66,-190}}))); - Modelica.StateGraph.Step check(nOut=2) + Modelica.StateGraph.Step check(nOut=2, nIn=1) annotation (Placement(transformation(extent={{-22,38},{-2,58}}))); Modelica.StateGraph.TransitionWithSignal correctPerformative(waitTime=0.5, enableTimer=false) annotation (Placement(transformation(extent={{10,38},{30,58}}))); Modelica.StateGraph.Step check1( - nOut=1) + nOut=1, nIn=1) annotation (Placement(transformation(extent={{-26,108},{-46,128}}))); Modelica.StateGraph.TransitionWithSignal correctPerformative1( waitTime=0.5, @@ -116,7 +116,7 @@ public annotation (Placement(transformation(extent={{-68,108},{-88,128}}))); Modelica.StateGraph.Transition requestNoted(enableTimer=true, waitTime=1) annotation (Placement(transformation(extent={{-2,148},{18,168}}))); - Modelica.StateGraph.StepWithSignal sendConfirmation(nOut=2) + Modelica.StateGraph.StepWithSignal sendConfirmation(nOut=2, nIn=1) annotation (Placement(transformation(extent={{40,148},{60,168}}))); Modelica.StateGraph.TransitionWithSignal actionConfirmed(waitTime=0.5, @@ -130,11 +130,11 @@ public enableTimer= true, waitTime=0.5) annotation (Placement(transformation(extent={{-56,-428},{-36,-408}}))); - Modelica.StateGraph.Step composeNotUnderstood + Modelica.StateGraph.Step composeNotUnderstood(nIn=1, nOut=1) annotation (Placement(transformation(extent={{-14,-428},{6,-408}}))); Modelica.StateGraph.Transition transition2(enableTimer=true, waitTime=1) annotation (Placement(transformation(extent={{20,-428},{40,-408}}))); - Modelica.StateGraph.StepWithSignal sendNotUnderstood(nOut=1) + Modelica.StateGraph.StepWithSignal sendNotUnderstood(nOut=1, nIn=1) annotation (Placement(transformation(extent={{56,-428},{76,-408}}))); Modelica.StateGraph.Transition transition4(enableTimer=true, waitTime=1) annotation (Placement(transformation(extent={{88,-428},{108,-408}}))); @@ -150,15 +150,15 @@ public Modelica.StateGraph.TransitionWithSignal newConfirm(waitTime=0.1, enableTimer= false) annotation (Placement(transformation(extent={{-136,-134},{-116,-114}}))); - Modelica.StateGraph.Step check2(nOut=2) + Modelica.StateGraph.Step check2(nOut=2, nIn=1) annotation (Placement(transformation(extent={{-104,-134},{-84,-114}}))); Modelica.StateGraph.TransitionWithSignal correctPerformative2( waitTime=0.5, enableTimer=false) annotation (Placement(transformation(extent={{-70,-134},{-50,-114}}))); - Modelica.StateGraph.Step collectConfirm(nOut=3) + Modelica.StateGraph.Step collectConfirm(nOut=3, nIn=1) annotation (Placement(transformation(extent={{-32,-134},{-12,-114}}))); - Modelica.StateGraph.Step computePrice(nOut=1) + Modelica.StateGraph.Step computePrice(nOut=1, nIn=1) annotation (Placement(transformation(extent={{-134,-64},{-114,-44}}))); Modelica.StateGraph.TransitionWithSignal transition5( @@ -167,17 +167,17 @@ public Modelica.StateGraph.Transition transition6( enableTimer=true, waitTime=0.1) annotation (Placement(transformation(extent={{24,-64},{44,-44}}))); - Modelica.StateGraph.StepWithSignal sendInformation + Modelica.StateGraph.StepWithSignal sendInformation(nIn=1, nOut=1) annotation (Placement(transformation(extent={{74,-44},{94,-64}}))); Modelica.StateGraph.TransitionWithSignal confirmComplete(waitTime=0.5, enableTimer=false) annotation (Placement(transformation(extent={{10,-134},{30,-114}}))); - Modelica.StateGraph.Step computeFinalConstellation(nOut=1) + Modelica.StateGraph.Step computeFinalConstellation(nOut=1, nIn=1) annotation (Placement(transformation(extent={{52,-134},{72,-114}}))); Modelica.StateGraph.Transition transition7( enableTimer=true, waitTime=0.1) annotation (Placement(transformation(extent={{96,-134},{116,-114}}))); - Modelica.StateGraph.Step checkRequestComplete(nOut=2) + Modelica.StateGraph.Step checkRequestComplete(nOut=2, nIn=1) annotation (Placement(transformation(extent={{84,-210},{104,-190}}))); Modelica.StateGraph.TransitionWithSignal requestsComplete(waitTime=0.5, enableTimer=false) @@ -225,7 +225,7 @@ public Modelica.Blocks.Sources.BooleanExpression booleanExpression11(y=noEvent( calculationDone)) annotation (Placement(transformation(extent={{-122,-106},{-96,-88}}))); - Modelica.StateGraph.Step prepareTableforRejections(nOut=1) + Modelica.StateGraph.Step prepareTableforRejections(nOut=1, nIn=1) annotation (Placement(transformation(extent={{118,-108},{138,-88}}))); Modelica.StateGraph.Transition transition3( enableTimer=true, waitTime=0.1) diff --git a/AixLib/Controls/HVACAgentBasedControl/Agents/ColdProducerAgent.mo b/AixLib/Controls/HVACAgentBasedControl/Agents/ColdProducerAgent.mo index 2bf36e493b..c5ee265842 100644 --- a/AixLib/Controls/HVACAgentBasedControl/Agents/ColdProducerAgent.mo +++ b/AixLib/Controls/HVACAgentBasedControl/Agents/ColdProducerAgent.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.HVACAgentBasedControl.Agents; +within AixLib.Controls.HVACAgentBasedControl.Agents; model ColdProducerAgent extends BaseClasses.PartialAgent; parameter Real maxCapacity = 0 @@ -28,15 +28,15 @@ model ColdProducerAgent extent={{-10,10},{10,-10}}, rotation=0, origin={-92,-108}))); - Modelica.StateGraph.Step message(nOut=2) + Modelica.StateGraph.Step message(nOut=2, nIn=1) annotation (Placement(transformation(extent={{-72,-118},{-52,-98}}))); - Modelica.StateGraph.Step adjustHeat + Modelica.StateGraph.Step adjustHeat(nIn=1, nOut=1) annotation (Placement(transformation(extent={{-36,20},{-16,40}}))); Modelica.StateGraph.Transition transition2( enableTimer=true, waitTime=2) annotation (Placement(transformation(extent={{-8,20},{12,40}}))); - Modelica.StateGraph.Step computeProposal + Modelica.StateGraph.Step computeProposal(nIn=1, nOut=1) annotation (Placement(transformation(extent={{-26,86},{-6,106}}))); Modelica.Blocks.Sources.BooleanExpression booleanExpression(y=noEvent( getperformative.y[1] == 4)) @@ -54,7 +54,7 @@ model ColdProducerAgent enableTimer=true) annotation (Placement(transformation(extent={{44,86},{64,106}}))); - Modelica.StateGraph.StepWithSignal sendProposal(nOut=3) + Modelica.StateGraph.StepWithSignal sendProposal(nOut=3, nIn=1) annotation (Placement(transformation(extent={{76,86},{96,106}}))); Modelica.Blocks.Math.IntegerChange integerChange annotation (Placement( transformation(extent={{-170,-50},{-150,-30}}))); @@ -73,12 +73,12 @@ model ColdProducerAgent annotation (Placement(transformation(extent={{-124,-68},{-98,-50}}))); Modelica.Blocks.Logical.Not not1 annotation (Placement(transformation(extent={{-90,-62},{-84,-56}}))); - Modelica.StateGraph.Step composeNotUnderstood + Modelica.StateGraph.Step composeNotUnderstood(nIn=1, nOut=1) annotation (Placement(transformation(extent={{-36,-56},{-16,-36}}))); Modelica.StateGraph.Transition transition3(enableTimer=true, waitTime=1) annotation (Placement(transformation(extent={{2,-56},{22,-36}}))); - Modelica.StateGraph.StepWithSignal sendNotUnderstood(nOut=1) + Modelica.StateGraph.StepWithSignal sendNotUnderstood(nOut=1, nIn=1) annotation (Placement(transformation(extent={{42,-56},{62,-36}}))); Modelica.StateGraph.Transition transition4(enableTimer=true, waitTime=1) annotation (Placement(transformation(extent={{82,-56},{102,-36}}))); @@ -116,7 +116,7 @@ protected annotation (Placement(transformation(extent={{140,-204},{180,-164}}))); public - Modelica.StateGraph.Step confirm + Modelica.StateGraph.Step confirm(nIn=1, nOut=1) annotation (Placement(transformation(extent={{-38,-26},{-18,-6}}))); Modelica.StateGraph.Transition transition6( enableTimer=true, waitTime=2) @@ -146,7 +146,7 @@ public rotation=0, origin={-82,-154}))); Modelica.StateGraph.Step shutDown( - nOut=2) + nOut=2, nIn=1) annotation (Placement(transformation(extent={{-56,-164},{-36,-144}}))); Modelica.StateGraph.Transition transition7( waitTime=0.1, enableTimer=true) diff --git a/AixLib/Controls/HVACAgentBasedControl/Agents/ConsumerAgent.mo b/AixLib/Controls/HVACAgentBasedControl/Agents/ConsumerAgent.mo index 8209d36107..c52a5fddda 100644 --- a/AixLib/Controls/HVACAgentBasedControl/Agents/ConsumerAgent.mo +++ b/AixLib/Controls/HVACAgentBasedControl/Agents/ConsumerAgent.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.HVACAgentBasedControl.Agents; +within AixLib.Controls.HVACAgentBasedControl.Agents; model ConsumerAgent extends BaseClasses.PartialAgent( name=10001, @@ -30,7 +30,7 @@ model ConsumerAgent Modelica.StateGraph.Transition requestNoted(enableTimer=true, waitTime= 0.1) annotation (Placement(transformation(extent={{-34,32},{-14,52}}))); - Modelica.StateGraph.StepWithSignal sendRequest(nOut=2) + Modelica.StateGraph.StepWithSignal sendRequest(nOut=2, nIn=1) annotation (Placement(transformation(extent={{2,32},{22,52}}))); Modelica.StateGraph.TransitionWithSignal newMessage1 "confirmation" annotation (Placement(transformation(extent={{38,52},{58,32}}))); @@ -45,11 +45,11 @@ model ConsumerAgent annotation (Placement(transformation(extent={{106,52},{126,32}}))); Modelica.StateGraph.Transition repeat1(enableTimer=true, waitTime=10) annotation (Placement(transformation(extent={{-8,-38},{-28,-18}}))); - Modelica.StateGraph.Step composeNotUnderstood + Modelica.StateGraph.Step composeNotUnderstood(nIn=1, nOut=1) annotation (Placement(transformation(extent={{-56,-240},{-36,-220}}))); Modelica.StateGraph.Transition transition2(enableTimer=true, waitTime=0.1) annotation (Placement(transformation(extent={{-20,-240},{0,-220}}))); - Modelica.StateGraph.StepWithSignal sendNotUnderstood(nOut=1) + Modelica.StateGraph.StepWithSignal sendNotUnderstood(nOut=1, nIn=1) annotation (Placement(transformation(extent={{16,-240},{36,-220}}))); Modelica.StateGraph.Transition transition4(enableTimer=true, waitTime=0.1) annotation (Placement(transformation(extent={{54,-240},{74,-220}}))); @@ -58,7 +58,7 @@ model ConsumerAgent Modelica.StateGraph.Step composeConfirm(nOut=1, nIn=1) annotation (Placement(transformation(extent={{-74,-118},{-54,-98}}))); - Modelica.StateGraph.StepWithSignal sendConfirm(nOut=1) + Modelica.StateGraph.StepWithSignal sendConfirm(nOut=1, nIn=1) annotation (Placement(transformation(extent={{14,-118},{34,-98}}))); Modelica.StateGraph.Transition confirmNoted(enableTimer=true, waitTime= 0.1) diff --git a/AixLib/Controls/HVACAgentBasedControl/Agents/HeatProducerAgent.mo b/AixLib/Controls/HVACAgentBasedControl/Agents/HeatProducerAgent.mo index 9218f56f87..78106a9275 100644 --- a/AixLib/Controls/HVACAgentBasedControl/Agents/HeatProducerAgent.mo +++ b/AixLib/Controls/HVACAgentBasedControl/Agents/HeatProducerAgent.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.HVACAgentBasedControl.Agents; +within AixLib.Controls.HVACAgentBasedControl.Agents; model HeatProducerAgent extends BaseClasses.PartialAgent; parameter Real maxCapacity = 100000 "maximum capacity for heatgeneration"; @@ -26,16 +26,16 @@ model HeatProducerAgent extent={{-10,10},{10,-10}}, rotation=0, origin={-92,-108}))); - Modelica.StateGraph.Step message(nOut=2) + Modelica.StateGraph.Step message(nOut=2, nIn=1) annotation (Placement(transformation(extent={{-72,-118},{-52,-98}}))); - Modelica.StateGraph.Step adjustHeat + Modelica.StateGraph.Step adjustHeat(nIn=1, nOut=1) annotation (Placement(transformation(extent={{-36,20},{-16,40}}))); Modelica.StateGraph.TransitionWithSignal transition2( enableTimer=true) annotation (Placement(transformation(extent={{-8,20},{12,40}}))); - Modelica.StateGraph.Step computeProposal + Modelica.StateGraph.Step computeProposal(nIn=1, nOut=1) annotation (Placement(transformation(extent={{-26,86},{-6,106}}))); Modelica.Blocks.Sources.BooleanExpression booleanExpression(y=noEvent( getperformative.y[1] == 4)) @@ -53,7 +53,7 @@ model HeatProducerAgent enableTimer=true) annotation (Placement(transformation(extent={{44,86},{64,106}}))); - Modelica.StateGraph.StepWithSignal sendProposal(nOut=3) + Modelica.StateGraph.StepWithSignal sendProposal(nOut=3, nIn=1) annotation (Placement(transformation(extent={{76,86},{96,106}}))); Modelica.Blocks.Math.IntegerChange integerChange annotation (Placement( transformation(extent={{-170,-50},{-150,-30}}))); @@ -72,12 +72,12 @@ model HeatProducerAgent annotation (Placement(transformation(extent={{-124,-68},{-98,-50}}))); Modelica.Blocks.Logical.Not not1 annotation (Placement(transformation(extent={{-90,-62},{-84,-56}}))); - Modelica.StateGraph.Step composeNotUnderstood + Modelica.StateGraph.Step composeNotUnderstood(nIn=1, nOut=1) annotation (Placement(transformation(extent={{-36,-56},{-16,-36}}))); Modelica.StateGraph.Transition transition3(enableTimer=true, waitTime=1) annotation (Placement(transformation(extent={{2,-56},{22,-36}}))); - Modelica.StateGraph.StepWithSignal sendNotUnderstood(nOut=1) + Modelica.StateGraph.StepWithSignal sendNotUnderstood(nOut=1, nIn=1) annotation (Placement(transformation(extent={{42,-56},{62,-36}}))); Modelica.StateGraph.Transition transition4(enableTimer=true, waitTime=1) annotation (Placement(transformation(extent={{82,-56},{102,-36}}))); @@ -111,7 +111,7 @@ model HeatProducerAgent annotation (Placement(transformation(extent={{134,-194},{154,-174}}))); public - Modelica.StateGraph.Step confirm + Modelica.StateGraph.Step confirm(nIn=1, nOut=1) annotation (Placement(transformation(extent={{-38,-26},{-18,-6}}))); Modelica.StateGraph.Transition transition6( enableTimer=true, waitTime=2) @@ -139,7 +139,7 @@ public annotation (Placement(transformation(extent={{-100,-54},{-60,-14}}), iconTransformation(extent={{-100,-54},{-60,-14}}))); Modelica.StateGraph.Step shutDown( - nOut=2) + nOut=2, nIn=1) annotation (Placement(transformation(extent={{-42,-160},{-22,-140}}))); Modelica.StateGraph.TransitionWithSignal Off annotation (Placement( transformation( diff --git a/AixLib/Controls/HVACAgentBasedControl/Agents/IntermediateAgent.mo b/AixLib/Controls/HVACAgentBasedControl/Agents/IntermediateAgent.mo index 1f9a411bff..bc8d546534 100644 --- a/AixLib/Controls/HVACAgentBasedControl/Agents/IntermediateAgent.mo +++ b/AixLib/Controls/HVACAgentBasedControl/Agents/IntermediateAgent.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.HVACAgentBasedControl.Agents; +within AixLib.Controls.HVACAgentBasedControl.Agents; model IntermediateAgent extends BaseClasses.PartialAgent; parameter Integer broker = 10003 "Name of the corresponding broker-agent"; @@ -22,10 +22,10 @@ model IntermediateAgent extent={{10,10},{-10,-10}}, rotation=0, origin={-160,-136}))); - Modelica.StateGraph.Step message(nOut=2) + Modelica.StateGraph.Step message(nOut=2, nIn=1) annotation (Placement(transformation(extent={{-178,-98},{-158,-78}}))); - Modelica.StateGraph.Step passOnCall + Modelica.StateGraph.Step passOnCall(nIn=1, nOut=1) annotation (Placement(transformation(extent={{-36,86},{-16,106}}))); Modelica.Blocks.Sources.BooleanExpression booleanExpression(y=noEvent( getperformative.y[1] == 4)) @@ -37,7 +37,7 @@ model IntermediateAgent enableTimer=true) annotation (Placement(transformation(extent={{14,86},{34,106}}))); - Modelica.StateGraph.StepWithSignal sendCall(nOut=2) + Modelica.StateGraph.StepWithSignal sendCall(nOut=2, nIn=1) annotation (Placement(transformation(extent={{74,86},{94,106}}))); Modelica.Blocks.Math.IntegerChange integerChange annotation (Placement( transformation(extent={{-176,-34},{-156,-14}}))); @@ -50,12 +50,12 @@ model IntermediateAgent annotation (Placement(transformation(extent={{-120,-250},{-94,-232}}))); Modelica.Blocks.Logical.Not not1 annotation (Placement(transformation(extent={{-88,-244},{-82,-238}}))); - Modelica.StateGraph.Step composeNotUnderstood + Modelica.StateGraph.Step composeNotUnderstood(nIn=1, nOut=1) annotation (Placement(transformation(extent={{-34,-238},{-14,-218}}))); Modelica.StateGraph.Transition transition3(enableTimer=true, waitTime=1) annotation (Placement(transformation(extent={{4,-238},{24,-218}}))); - Modelica.StateGraph.StepWithSignal sendNotUnderstood(nOut=1) + Modelica.StateGraph.StepWithSignal sendNotUnderstood(nOut=1, nIn=1) annotation (Placement(transformation(extent={{44,-238},{64,-218}}))); Modelica.StateGraph.Transition transition4(enableTimer=true, waitTime=1) annotation (Placement(transformation(extent={{84,-238},{104,-218}}))); @@ -69,17 +69,17 @@ model IntermediateAgent extent={{-10,-10},{10,10}}, rotation=0, origin={-108,40}))); - Modelica.StateGraph.Step check + Modelica.StateGraph.Step check(nIn=1, nOut=1) annotation (Placement(transformation(extent={{-82,30},{-62,50}}))); Modelica.Blocks.Sources.BooleanExpression booleanExpression4(y=noEvent(( getperformative.y[1] == 8) and (getsender.y[1] == broker))) annotation (Placement(transformation(extent={{-70,6},{-44,24}}))); - Modelica.StateGraph.Step passOnInformation + Modelica.StateGraph.Step passOnInformation(nIn=1, nOut=1) annotation (Placement(transformation(extent={{2,30},{22,50}}))); Modelica.StateGraph.Transition transition7( waitTime=0.1, enableTimer=true) annotation (Placement(transformation(extent={{44,30},{64,50}}))); - Modelica.StateGraph.StepWithSignal sendInformation(nOut=2) + Modelica.StateGraph.StepWithSignal sendInformation(nOut=2, nIn=1) annotation (Placement(transformation(extent={{84,30},{104,50}}))); Modelica.StateGraph.TransitionWithSignal newMessage2 annotation (Placement( @@ -87,18 +87,18 @@ model IntermediateAgent extent={{-10,-10},{10,10}}, rotation=0, origin={-110,-40}))); - Modelica.StateGraph.Step check1 + Modelica.StateGraph.Step check1(nIn=1, nOut=1) annotation (Placement(transformation(extent={{-86,-50},{-66,-30}}))); Modelica.StateGraph.TransitionWithSignal fromBottomBroker(waitTime=0.5, enableTimer=false) annotation (Placement(transformation(extent={{-50,-50},{-30,-30}}))); - Modelica.StateGraph.Step passOnConfirmation + Modelica.StateGraph.Step passOnConfirmation(nIn=1, nOut=1) annotation (Placement(transformation(extent={{-2,-50},{18,-30}}))); Modelica.StateGraph.Transition transition8( waitTime=0.1, enableTimer=true) annotation (Placement(transformation(extent={{38,-50},{58,-30}}))); Modelica.StateGraph.StepWithSignal sendConfirmation( - nOut=1) + nOut=1, nIn=1) annotation (Placement(transformation(extent={{82,-50},{102,-30}}))); Modelica.Blocks.Sources.BooleanExpression booleanExpression1(y=noEvent(( getsender.y[1] == currentClient))) @@ -106,13 +106,13 @@ model IntermediateAgent Modelica.StateGraph.Transition transition2( waitTime=0.1, enableTimer=true) annotation (Placement(transformation(extent={{-112,-118},{-92,-98}}))); - Modelica.StateGraph.Step confirmToBottom + Modelica.StateGraph.Step confirmToBottom(nIn=1, nOut=1) annotation (Placement(transformation(extent={{-70,-118},{-50,-98}}))); Modelica.StateGraph.Transition transition5( waitTime=0.1, enableTimer=true) annotation (Placement(transformation(extent={{-22,-118},{-2,-98}}))); Modelica.StateGraph.StepWithSignal sendConfirmation1( - nOut=1) + nOut=1, nIn=1) annotation (Placement(transformation(extent={{34,-118},{54,-98}}))); Modelica.StateGraph.Transition transition6( waitTime=0.1, enableTimer=true) @@ -176,7 +176,7 @@ model IntermediateAgent Modelica.Blocks.Logical.And and1 annotation (Placement(transformation(extent={{-150,-300},{-130,-280}}))); Modelica.StateGraph.Step shutDown( - nOut=2) + nOut=2, nIn=1) annotation (Placement(transformation(extent={{-80,-274},{-60,-254}}))); Modelica.StateGraph.Transition transition9( waitTime=0.1, enableTimer=true) diff --git a/AixLib/Controls/HVACAgentBasedControl/Agents/MessageNotification.mo b/AixLib/Controls/HVACAgentBasedControl/Agents/MessageNotification.mo index c113e645cf..f9ec7cd281 100644 --- a/AixLib/Controls/HVACAgentBasedControl/Agents/MessageNotification.mo +++ b/AixLib/Controls/HVACAgentBasedControl/Agents/MessageNotification.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.HVACAgentBasedControl.Agents; +within AixLib.Controls.HVACAgentBasedControl.Agents; model MessageNotification parameter Integer n=1 diff --git a/AixLib/Controls/HVACAgentBasedControl/Agents/RoomAgent.mo b/AixLib/Controls/HVACAgentBasedControl/Agents/RoomAgent.mo index 8cf34eca09..a6b61132cd 100644 --- a/AixLib/Controls/HVACAgentBasedControl/Agents/RoomAgent.mo +++ b/AixLib/Controls/HVACAgentBasedControl/Agents/RoomAgent.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.HVACAgentBasedControl.Agents; +within AixLib.Controls.HVACAgentBasedControl.Agents; model RoomAgent extends BaseClasses.PartialAgent( name=10001, @@ -54,7 +54,7 @@ model RoomAgent annotation (Placement(transformation(extent={{-72,32},{-52,52}}))); Modelica.StateGraph.Transition requestNoted(enableTimer=true, waitTime=1) annotation (Placement(transformation(extent={{-34,32},{-14,52}}))); - Modelica.StateGraph.StepWithSignal sendRequest(nOut=2) + Modelica.StateGraph.StepWithSignal sendRequest(nOut=2, nIn=1) annotation (Placement(transformation(extent={{2,32},{22,52}}))); Modelica.StateGraph.TransitionWithSignal newMessage1 "confirmation" annotation (Placement(transformation(extent={{38,52},{58,32}}))); @@ -71,11 +71,11 @@ model RoomAgent Modelica.StateGraph.Transition repeat1(enableTimer=true, waitTime= 100000000000.0) annotation (Placement(transformation(extent={{-8,-38},{-28,-18}}))); - Modelica.StateGraph.Step composeNotUnderstood + Modelica.StateGraph.Step composeNotUnderstood(nIn=1, nOut=1) annotation (Placement(transformation(extent={{-56,-240},{-36,-220}}))); Modelica.StateGraph.Transition transition2(enableTimer=true, waitTime=1) annotation (Placement(transformation(extent={{-20,-240},{0,-220}}))); - Modelica.StateGraph.StepWithSignal sendNotUnderstood(nOut=1) + Modelica.StateGraph.StepWithSignal sendNotUnderstood(nOut=1, nIn=1) annotation (Placement(transformation(extent={{16,-240},{36,-220}}))); Modelica.StateGraph.Transition transition4(enableTimer=true, waitTime=1) annotation (Placement(transformation(extent={{54,-240},{74,-220}}))); @@ -89,7 +89,7 @@ protected public Modelica.StateGraph.Step composeConfirm(nOut=1, nIn=1) annotation (Placement(transformation(extent={{-74,-122},{-54,-102}}))); - Modelica.StateGraph.StepWithSignal sendConfirm(nOut=1) + Modelica.StateGraph.StepWithSignal sendConfirm(nOut=1, nIn=1) annotation (Placement(transformation(extent={{16,-122},{36,-102}}))); Modelica.StateGraph.Transition confirmNoted(enableTimer=true, waitTime=1) annotation (Placement(transformation(extent={{-30,-122},{-10,-102}}))); diff --git a/AixLib/Controls/HVACAgentBasedControl/BaseClasses/Internal/sendTo.mo b/AixLib/Controls/HVACAgentBasedControl/BaseClasses/Internal/sendTo.mo index 5abdbec848..8ea101f0ba 100644 --- a/AixLib/Controls/HVACAgentBasedControl/BaseClasses/Internal/sendTo.mo +++ b/AixLib/Controls/HVACAgentBasedControl/BaseClasses/Internal/sendTo.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.HVACAgentBasedControl.BaseClasses.Internal; +within AixLib.Controls.HVACAgentBasedControl.BaseClasses.Internal; encapsulated function sendTo import Modelica; extends Modelica.Icons.Function; diff --git a/AixLib/Controls/HVACAgentBasedControl/BaseClasses/Internal/sendToUDP.mo b/AixLib/Controls/HVACAgentBasedControl/BaseClasses/Internal/sendToUDP.mo index e0cd172982..983b060c56 100644 --- a/AixLib/Controls/HVACAgentBasedControl/BaseClasses/Internal/sendToUDP.mo +++ b/AixLib/Controls/HVACAgentBasedControl/BaseClasses/Internal/sendToUDP.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.HVACAgentBasedControl.BaseClasses.Internal; +within AixLib.Controls.HVACAgentBasedControl.BaseClasses.Internal; function sendToUDP extends Modelica.Icons.Function; input Modelica_DeviceDrivers.Communication.UDPSocket socket; diff --git a/AixLib/Controls/HVACAgentBasedControl/BaseClasses/PartialAgent.mo b/AixLib/Controls/HVACAgentBasedControl/BaseClasses/PartialAgent.mo index 63ce39c784..35210c9391 100644 --- a/AixLib/Controls/HVACAgentBasedControl/BaseClasses/PartialAgent.mo +++ b/AixLib/Controls/HVACAgentBasedControl/BaseClasses/PartialAgent.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.HVACAgentBasedControl.BaseClasses; +within AixLib.Controls.HVACAgentBasedControl.BaseClasses; partial model PartialAgent parameter Integer name "Name of the agent (five-digit number, eg. 10001)"; parameter Boolean usePoke=false @@ -6,8 +6,8 @@ partial model PartialAgent parameter Real sampleRate=5 "Sample time for inbox update (used if usePoke=false)"; - outer HVACAgentBasedControl.Agents.MessageNotification messageNotification if - usePoke; + outer HVACAgentBasedControl.Agents.MessageNotification messageNotification + if usePoke; Modelica_DeviceDrivers.Blocks.Packaging.SerialPackager.Packager packager annotation (Placement(transformation(extent={{176,184},{196,204}}))); @@ -56,8 +56,8 @@ partial model PartialAgent annotation (Placement(transformation(extent={{176,-44},{196,-24}}))); inner Modelica.StateGraph.StateGraphRoot stateGraphRoot annotation (Placement(transformation(extent={{-160,180},{-140,200}}))); - SendSample sendSample if - usePoke + SendSample sendSample + if usePoke annotation (Placement(transformation(extent={{160,-200},{180,-180}}))); Modelica.Blocks.Interfaces.BooleanOutput sendOut if usePoke "Turns true when the sending unit of the agent is active" diff --git a/AixLib/Controls/HVACAgentBasedControl/BaseClasses/PartialCostFunction.mo b/AixLib/Controls/HVACAgentBasedControl/BaseClasses/PartialCostFunction.mo index 5d05a727a6..0544166635 100644 --- a/AixLib/Controls/HVACAgentBasedControl/BaseClasses/PartialCostFunction.mo +++ b/AixLib/Controls/HVACAgentBasedControl/BaseClasses/PartialCostFunction.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.HVACAgentBasedControl.BaseClasses; +within AixLib.Controls.HVACAgentBasedControl.BaseClasses; partial model PartialCostFunction Modelica.Blocks.Interfaces.RealInput capacity diff --git a/AixLib/Controls/HVACAgentBasedControl/BaseClasses/SendSample.mo b/AixLib/Controls/HVACAgentBasedControl/BaseClasses/SendSample.mo index ee0994476d..c53f144241 100644 --- a/AixLib/Controls/HVACAgentBasedControl/BaseClasses/SendSample.mo +++ b/AixLib/Controls/HVACAgentBasedControl/BaseClasses/SendSample.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.HVACAgentBasedControl.BaseClasses; +within AixLib.Controls.HVACAgentBasedControl.BaseClasses; model SendSample Modelica.Blocks.MathBoolean.Or or1(nu=4) diff --git a/AixLib/Controls/HVACAgentBasedControl/BaseClasses/UDPSend_adapted.mo b/AixLib/Controls/HVACAgentBasedControl/BaseClasses/UDPSend_adapted.mo index 09ab6fc9a6..e42ca4292d 100644 --- a/AixLib/Controls/HVACAgentBasedControl/BaseClasses/UDPSend_adapted.mo +++ b/AixLib/Controls/HVACAgentBasedControl/BaseClasses/UDPSend_adapted.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.HVACAgentBasedControl.BaseClasses; +within AixLib.Controls.HVACAgentBasedControl.BaseClasses; model UDPSend_adapted "A block for sending UDP datagrams" import Modelica_DeviceDrivers; extends Modelica_DeviceDrivers.Utilities.Icons.BaseIcon; diff --git a/AixLib/Controls/HVACAgentBasedControl/CostFunctions/Economic/Constant_Economic_Cost.mo b/AixLib/Controls/HVACAgentBasedControl/CostFunctions/Economic/Constant_Economic_Cost.mo index 04c60bc003..673b2d2057 100644 --- a/AixLib/Controls/HVACAgentBasedControl/CostFunctions/Economic/Constant_Economic_Cost.mo +++ b/AixLib/Controls/HVACAgentBasedControl/CostFunctions/Economic/Constant_Economic_Cost.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.HVACAgentBasedControl.CostFunctions.Economic; +within AixLib.Controls.HVACAgentBasedControl.CostFunctions.Economic; model Constant_Economic_Cost extends HVACAgentBasedControl.BaseClasses.PartialCostFunction; parameter Real p = 0.30 "Price per kWh of fuel"; diff --git a/AixLib/Controls/HVACAgentBasedControl/CostFunctions/Economic/PV_Variable_Economic_Cost.mo b/AixLib/Controls/HVACAgentBasedControl/CostFunctions/Economic/PV_Variable_Economic_Cost.mo index 1175f7b7bf..9d9ffc130b 100644 --- a/AixLib/Controls/HVACAgentBasedControl/CostFunctions/Economic/PV_Variable_Economic_Cost.mo +++ b/AixLib/Controls/HVACAgentBasedControl/CostFunctions/Economic/PV_Variable_Economic_Cost.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.HVACAgentBasedControl.CostFunctions.Economic; +within AixLib.Controls.HVACAgentBasedControl.CostFunctions.Economic; model PV_Variable_Economic_Cost extends HVACAgentBasedControl.BaseClasses.PartialCostFunction; parameter Real p = 0.30 "Price per kWh of fuel"; @@ -16,12 +16,11 @@ model PV_Variable_Economic_Cost lessEqualThreshold(threshold= rad_treshold) annotation (Placement(transformation(extent={{6,-36},{26,-16}}))); - Modelica_Synchronous.RealSignals.Sampler.SampleClocked sample1 + Modelica.Clocked.RealSignals.Sampler.SampleClocked sample1 annotation (Placement(transformation(extent={{66,-16},{54,-4}}))); - Modelica_Synchronous.ClockSignals.Clocks.PeriodicRealClock periodicClock1(period= - 300) - annotation (Placement(transformation(extent={{82,-56},{70,-44}}))); - Modelica_Synchronous.RealSignals.Sampler.Hold hold1(y_start=100) + Modelica.Clocked.ClockSignals.Clocks.PeriodicRealClock periodicClock1(period= + 300) annotation (Placement(transformation(extent={{82,-56},{70,-44}}))); + Modelica.Clocked.RealSignals.Sampler.Hold hold1(y_start=100) annotation (Placement(transformation(extent={{50,-16},{38,-4}}))); Modelica.Blocks.Math.Product product annotation (Placement(transformation(extent={{-32,-62},{-12,-42}}))); diff --git a/AixLib/Controls/HVACAgentBasedControl/CostFunctions/Exergy/Boiler_ExergyDestruction.mo b/AixLib/Controls/HVACAgentBasedControl/CostFunctions/Exergy/Boiler_ExergyDestruction.mo index b039df612f..5b4762300c 100644 --- a/AixLib/Controls/HVACAgentBasedControl/CostFunctions/Exergy/Boiler_ExergyDestruction.mo +++ b/AixLib/Controls/HVACAgentBasedControl/CostFunctions/Exergy/Boiler_ExergyDestruction.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.HVACAgentBasedControl.CostFunctions.Exergy; +within AixLib.Controls.HVACAgentBasedControl.CostFunctions.Exergy; model Boiler_ExergyDestruction extends HVACAgentBasedControl.BaseClasses.PartialCostFunction; parameter Real T_0 = 298.15 "Exergy reference temperature"; diff --git a/AixLib/Controls/HVACAgentBasedControl/CostFunctions/Exergy/Boiler_ExergyDestruction_Simplified.mo b/AixLib/Controls/HVACAgentBasedControl/CostFunctions/Exergy/Boiler_ExergyDestruction_Simplified.mo index 6464a5e911..3ae387185b 100644 --- a/AixLib/Controls/HVACAgentBasedControl/CostFunctions/Exergy/Boiler_ExergyDestruction_Simplified.mo +++ b/AixLib/Controls/HVACAgentBasedControl/CostFunctions/Exergy/Boiler_ExergyDestruction_Simplified.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.HVACAgentBasedControl.CostFunctions.Exergy; +within AixLib.Controls.HVACAgentBasedControl.CostFunctions.Exergy; model Boiler_ExergyDestruction_Simplified extends HVACAgentBasedControl.BaseClasses.PartialCostFunction; parameter Real T_0 = 298.15 "Exergy reference temperature"; diff --git a/AixLib/Controls/HVACAgentBasedControl/CostFunctions/Exergy/HeatPump_ExergyDestruction_Cooling.mo b/AixLib/Controls/HVACAgentBasedControl/CostFunctions/Exergy/HeatPump_ExergyDestruction_Cooling.mo index b8465650e4..1be85d9a86 100644 --- a/AixLib/Controls/HVACAgentBasedControl/CostFunctions/Exergy/HeatPump_ExergyDestruction_Cooling.mo +++ b/AixLib/Controls/HVACAgentBasedControl/CostFunctions/Exergy/HeatPump_ExergyDestruction_Cooling.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.HVACAgentBasedControl.CostFunctions.Exergy; +within AixLib.Controls.HVACAgentBasedControl.CostFunctions.Exergy; model HeatPump_ExergyDestruction_Cooling extends HVACAgentBasedControl.BaseClasses.PartialCostFunction; parameter Real T_0 = 298.15 "Exergy reference temperature"; @@ -60,10 +60,11 @@ model HeatPump_ExergyDestruction_Cooling annotation (Placement(transformation(extent={{-28,60},{-8,80}}))); Modelica.Blocks.Math.Add add3(k2=-1) annotation (Placement(transformation(extent={{-68,22},{-48,42}}))); - Modelica.Blocks.Tables.CombiTable2D PowerTable(table = tablePower) annotation(Placement(transformation(extent={{54,-62}, - {74,-42}}))); - Modelica.Blocks.Tables.CombiTable2D HeatFlowCondenserTable(table = tableHeatFlowCondenser) annotation(Placement(transformation(extent={{54,-94}, - {74,-74}}))); + Modelica.Blocks.Tables.CombiTable2Ds PowerTable(table=tablePower) + annotation (Placement(transformation(extent={{54,-62},{74,-42}}))); + Modelica.Blocks.Tables.CombiTable2Ds HeatFlowCondenserTable(table= + tableHeatFlowCondenser) + annotation (Placement(transformation(extent={{54,-94},{74,-74}}))); equation COP = HeatFlowCondenserTable.y/PowerTable.y; diff --git a/AixLib/Controls/HVACAgentBasedControl/CostFunctions/Exergy/HeatPump_ExergyDestruction_Heating.mo b/AixLib/Controls/HVACAgentBasedControl/CostFunctions/Exergy/HeatPump_ExergyDestruction_Heating.mo index bef438de69..fb704f2702 100644 --- a/AixLib/Controls/HVACAgentBasedControl/CostFunctions/Exergy/HeatPump_ExergyDestruction_Heating.mo +++ b/AixLib/Controls/HVACAgentBasedControl/CostFunctions/Exergy/HeatPump_ExergyDestruction_Heating.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.HVACAgentBasedControl.CostFunctions.Exergy; +within AixLib.Controls.HVACAgentBasedControl.CostFunctions.Exergy; model HeatPump_ExergyDestruction_Heating extends HVACAgentBasedControl.BaseClasses.PartialCostFunction; parameter Real T_0 = 298.15 "Exergy reference temperature"; @@ -56,10 +56,11 @@ model HeatPump_ExergyDestruction_Heating annotation (Placement(transformation(extent={{-20,-78},{0,-58}}))); Modelica.Blocks.Math.Product product1 annotation (Placement(transformation(extent={{0,-50},{20,-30}}))); - Modelica.Blocks.Tables.CombiTable2D HeatFlowCondenserTable(table = tableHeatFlowCondenser) annotation(Placement(transformation(extent={{54,-96}, - {74,-76}}))); - Modelica.Blocks.Tables.CombiTable2D PowerTable(table = tablePower) annotation(Placement(transformation(extent={{54,-64}, - {74,-44}}))); + Modelica.Blocks.Tables.CombiTable2Ds HeatFlowCondenserTable(table= + tableHeatFlowCondenser) + annotation (Placement(transformation(extent={{54,-96},{74,-76}}))); + Modelica.Blocks.Tables.CombiTable2Ds PowerTable(table=tablePower) + annotation (Placement(transformation(extent={{54,-64},{74,-44}}))); equation COP = HeatFlowCondenserTable.y/PowerTable.y; connect(add1.y, add2.u1) annotation (Line( diff --git a/AixLib/Controls/HVACAgentBasedControl/CostFunctions/Exergy/HeatingRod_ExergyDestruction.mo b/AixLib/Controls/HVACAgentBasedControl/CostFunctions/Exergy/HeatingRod_ExergyDestruction.mo index 4b648ac68d..ca3ede06c4 100644 --- a/AixLib/Controls/HVACAgentBasedControl/CostFunctions/Exergy/HeatingRod_ExergyDestruction.mo +++ b/AixLib/Controls/HVACAgentBasedControl/CostFunctions/Exergy/HeatingRod_ExergyDestruction.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.HVACAgentBasedControl.CostFunctions.Exergy; +within AixLib.Controls.HVACAgentBasedControl.CostFunctions.Exergy; model HeatingRod_ExergyDestruction extends HVACAgentBasedControl.BaseClasses.PartialCostFunction; parameter Real T_0 = 298.15 "Exergy reference temperature"; diff --git a/AixLib/Controls/HVACAgentBasedControl/CostFunctions/Exergy/HeatingRod_ExergyDestruction_Simplified.mo b/AixLib/Controls/HVACAgentBasedControl/CostFunctions/Exergy/HeatingRod_ExergyDestruction_Simplified.mo index 317ab02b07..8b5b080076 100644 --- a/AixLib/Controls/HVACAgentBasedControl/CostFunctions/Exergy/HeatingRod_ExergyDestruction_Simplified.mo +++ b/AixLib/Controls/HVACAgentBasedControl/CostFunctions/Exergy/HeatingRod_ExergyDestruction_Simplified.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.HVACAgentBasedControl.CostFunctions.Exergy; +within AixLib.Controls.HVACAgentBasedControl.CostFunctions.Exergy; model HeatingRod_ExergyDestruction_Simplified extends HVACAgentBasedControl.BaseClasses.PartialCostFunction; parameter Real T_0 = 298.15 "Exergy reference temperature"; diff --git a/AixLib/Controls/HVACAgentBasedControl/CostFunctions/Exergy/MixingValveAndHEX_ExergyDestruction.mo b/AixLib/Controls/HVACAgentBasedControl/CostFunctions/Exergy/MixingValveAndHEX_ExergyDestruction.mo index d2777d0da0..2a24cb79f9 100644 --- a/AixLib/Controls/HVACAgentBasedControl/CostFunctions/Exergy/MixingValveAndHEX_ExergyDestruction.mo +++ b/AixLib/Controls/HVACAgentBasedControl/CostFunctions/Exergy/MixingValveAndHEX_ExergyDestruction.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.HVACAgentBasedControl.CostFunctions.Exergy; +within AixLib.Controls.HVACAgentBasedControl.CostFunctions.Exergy; model MixingValveAndHEX_ExergyDestruction extends HVACAgentBasedControl.BaseClasses.PartialCostFunction; parameter Real T_0 = 298.15 "Exergy reference temperature"; diff --git a/AixLib/Controls/HVACAgentBasedControl/CostFunctions/Exergy/MixingValveAndHEX_ExergyDestruction_Simplified.mo b/AixLib/Controls/HVACAgentBasedControl/CostFunctions/Exergy/MixingValveAndHEX_ExergyDestruction_Simplified.mo index 41d05a5475..d71cf21897 100644 --- a/AixLib/Controls/HVACAgentBasedControl/CostFunctions/Exergy/MixingValveAndHEX_ExergyDestruction_Simplified.mo +++ b/AixLib/Controls/HVACAgentBasedControl/CostFunctions/Exergy/MixingValveAndHEX_ExergyDestruction_Simplified.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.HVACAgentBasedControl.CostFunctions.Exergy; +within AixLib.Controls.HVACAgentBasedControl.CostFunctions.Exergy; model MixingValveAndHEX_ExergyDestruction_Simplified extends HVACAgentBasedControl.BaseClasses.PartialCostFunction; parameter Real T_0 = 298.15 "Exergy reference temperature"; diff --git a/AixLib/Controls/HVACAgentBasedControl/CostFunctions/PrimaryExergy/Boiler_PrimaryExergyDestruction_Simplified.mo b/AixLib/Controls/HVACAgentBasedControl/CostFunctions/PrimaryExergy/Boiler_PrimaryExergyDestruction_Simplified.mo index d58ec24b9d..6e7bf9fad6 100644 --- a/AixLib/Controls/HVACAgentBasedControl/CostFunctions/PrimaryExergy/Boiler_PrimaryExergyDestruction_Simplified.mo +++ b/AixLib/Controls/HVACAgentBasedControl/CostFunctions/PrimaryExergy/Boiler_PrimaryExergyDestruction_Simplified.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.HVACAgentBasedControl.CostFunctions.PrimaryExergy; +within AixLib.Controls.HVACAgentBasedControl.CostFunctions.PrimaryExergy; model Boiler_PrimaryExergyDestruction_Simplified extends HVACAgentBasedControl.BaseClasses.PartialCostFunction; parameter Real T_0 = 298.15 "Exergy reference temperature"; diff --git a/AixLib/Controls/HVACAgentBasedControl/CostFunctions/PrimaryExergy/HeatPump_PrimaryExergyDestruction_Cooling.mo b/AixLib/Controls/HVACAgentBasedControl/CostFunctions/PrimaryExergy/HeatPump_PrimaryExergyDestruction_Cooling.mo index 9fb6865d37..6124e719b4 100644 --- a/AixLib/Controls/HVACAgentBasedControl/CostFunctions/PrimaryExergy/HeatPump_PrimaryExergyDestruction_Cooling.mo +++ b/AixLib/Controls/HVACAgentBasedControl/CostFunctions/PrimaryExergy/HeatPump_PrimaryExergyDestruction_Cooling.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.HVACAgentBasedControl.CostFunctions.PrimaryExergy; +within AixLib.Controls.HVACAgentBasedControl.CostFunctions.PrimaryExergy; model HeatPump_PrimaryExergyDestruction_Cooling extends HVACAgentBasedControl.BaseClasses.PartialCostFunction; parameter Real T_0 = 298.15 "Exergy reference temperature"; @@ -61,10 +61,11 @@ model HeatPump_PrimaryExergyDestruction_Cooling annotation (Placement(transformation(extent={{-28,60},{-8,80}}))); Modelica.Blocks.Math.Add add3(k2=-1) annotation (Placement(transformation(extent={{-68,22},{-48,42}}))); - Modelica.Blocks.Tables.CombiTable2D PowerTable(table = tablePower) annotation(Placement(transformation(extent={{54,-62}, - {74,-42}}))); - Modelica.Blocks.Tables.CombiTable2D HeatFlowCondenserTable(table = tableHeatFlowCondenser) annotation(Placement(transformation(extent={{54,-94}, - {74,-74}}))); + Modelica.Blocks.Tables.CombiTable2Ds PowerTable(table=tablePower) + annotation (Placement(transformation(extent={{54,-62},{74,-42}}))); + Modelica.Blocks.Tables.CombiTable2Ds HeatFlowCondenserTable(table= + tableHeatFlowCondenser) + annotation (Placement(transformation(extent={{54,-94},{74,-74}}))); Modelica.Blocks.Math.Gain gain(k=PEF) annotation (Placement(transformation(extent={{8,60},{28,80}}))); equation diff --git a/AixLib/Controls/HVACAgentBasedControl/CostFunctions/PrimaryExergy/HeatPump_PrimaryExergyDestruction_Heating.mo b/AixLib/Controls/HVACAgentBasedControl/CostFunctions/PrimaryExergy/HeatPump_PrimaryExergyDestruction_Heating.mo index 0fe95e0190..734e301826 100644 --- a/AixLib/Controls/HVACAgentBasedControl/CostFunctions/PrimaryExergy/HeatPump_PrimaryExergyDestruction_Heating.mo +++ b/AixLib/Controls/HVACAgentBasedControl/CostFunctions/PrimaryExergy/HeatPump_PrimaryExergyDestruction_Heating.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.HVACAgentBasedControl.CostFunctions.PrimaryExergy; +within AixLib.Controls.HVACAgentBasedControl.CostFunctions.PrimaryExergy; model HeatPump_PrimaryExergyDestruction_Heating extends HVACAgentBasedControl.BaseClasses.PartialCostFunction; parameter Real T_0 = 298.15 "Exergy reference temperature"; @@ -57,10 +57,11 @@ model HeatPump_PrimaryExergyDestruction_Heating annotation (Placement(transformation(extent={{-20,-78},{0,-58}}))); Modelica.Blocks.Math.Product product1 annotation (Placement(transformation(extent={{0,-50},{20,-30}}))); - Modelica.Blocks.Tables.CombiTable2D HeatFlowCondenserTable(table = tableHeatFlowCondenser) annotation(Placement(transformation(extent={{54,-96}, - {74,-76}}))); - Modelica.Blocks.Tables.CombiTable2D PowerTable(table = tablePower) annotation(Placement(transformation(extent={{54,-64}, - {74,-44}}))); + Modelica.Blocks.Tables.CombiTable2Ds HeatFlowCondenserTable(table= + tableHeatFlowCondenser) + annotation (Placement(transformation(extent={{54,-96},{74,-76}}))); + Modelica.Blocks.Tables.CombiTable2Ds PowerTable(table=tablePower) + annotation (Placement(transformation(extent={{54,-64},{74,-44}}))); Modelica.Blocks.Math.Gain gain(k=PEF) annotation (Placement(transformation(extent={{2,62},{22,82}}))); equation diff --git a/AixLib/Controls/HVACAgentBasedControl/CostFunctions/PrimaryExergy/HeatingRod_PrimaryExergyDestruction_Simplified.mo b/AixLib/Controls/HVACAgentBasedControl/CostFunctions/PrimaryExergy/HeatingRod_PrimaryExergyDestruction_Simplified.mo index b297663c30..78074ed1e9 100644 --- a/AixLib/Controls/HVACAgentBasedControl/CostFunctions/PrimaryExergy/HeatingRod_PrimaryExergyDestruction_Simplified.mo +++ b/AixLib/Controls/HVACAgentBasedControl/CostFunctions/PrimaryExergy/HeatingRod_PrimaryExergyDestruction_Simplified.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.HVACAgentBasedControl.CostFunctions.PrimaryExergy; +within AixLib.Controls.HVACAgentBasedControl.CostFunctions.PrimaryExergy; model HeatingRod_PrimaryExergyDestruction_Simplified extends HVACAgentBasedControl.BaseClasses.PartialCostFunction; parameter Real T_0 = 298.15 "Exergy reference temperature"; diff --git a/AixLib/Controls/HVACAgentBasedControl/Examples/BookTrading/BookBuyerAgent.mo b/AixLib/Controls/HVACAgentBasedControl/Examples/BookTrading/BookBuyerAgent.mo index 9d290dd8ce..ffbf901500 100644 --- a/AixLib/Controls/HVACAgentBasedControl/Examples/BookTrading/BookBuyerAgent.mo +++ b/AixLib/Controls/HVACAgentBasedControl/Examples/BookTrading/BookBuyerAgent.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.HVACAgentBasedControl.Examples.BookTrading; +within AixLib.Controls.HVACAgentBasedControl.Examples.BookTrading; model BookBuyerAgent extends BaseClasses.PartialAgent; parameter Real[:,1] knownSellers = [30001; 30002; 30003] @@ -14,13 +14,13 @@ model BookBuyerAgent parameter Integer sampleTime = 20 "Period of time between two tries of the agent to buy the book"; - Modelica.StateGraph.InitialStep waiting(nIn=4) + Modelica.StateGraph.InitialStep waiting(nIn=4, nOut=1) annotation (Placement(transformation(extent={{-166,-138},{-146,-118}}))); - Modelica.StateGraph.Step composeRequest(nIn=3) + Modelica.StateGraph.Step composeRequest(nIn=3, nOut=1) annotation (Placement(transformation(extent={{-84,116},{-64,136}}))); - Modelica.StateGraph.Step collectProposal(nOut=2) + Modelica.StateGraph.Step collectProposal(nOut=2, nIn=1) annotation (Placement(transformation(extent={{10,50},{30,70}}))); - Modelica.StateGraph.Step composeBuy + Modelica.StateGraph.Step composeBuy(nIn=1, nOut=1) annotation (Placement(transformation(extent={{-12,-66},{8,-46}}))); Modelica.Blocks.Math.IntegerChange integerChange annotation (Placement( transformation(extent={{-158,72},{-138,92}}))); @@ -31,7 +31,7 @@ model BookBuyerAgent annotation (Placement(transformation(extent={{-144,-18},{-124,2}}))); Modelica.StateGraph.Transition transition(enableTimer=true, waitTime=0.1) annotation (Placement(transformation(extent={{-44,116},{-24,136}}))); - Modelica.StateGraph.Step check(nOut=2) + Modelica.StateGraph.Step check(nOut=2, nIn=1) annotation (Placement(transformation(extent={{-80,50},{-60,70}}))); Modelica.StateGraph.TransitionWithSignal newMessage annotation (Placement(transformation(extent={{90,116},{110,136}}))); @@ -43,16 +43,16 @@ model BookBuyerAgent annotation (Placement(transformation(extent={{58,50},{78,70}}))); Modelica.StateGraph.TransitionWithSignal notDone(enableTimer=true, waitTime=0.1) annotation (Placement(transformation(extent={{58,6},{78,26}}))); - Modelica.StateGraph.StepWithSignal sendRequest(nOut=2) + Modelica.StateGraph.StepWithSignal sendRequest(nOut=2, nIn=1) annotation (Placement(transformation(extent={{-2,116},{18,136}}))); - Modelica.StateGraph.StepWithSignal sendBuy(nOut=2) + Modelica.StateGraph.StepWithSignal sendBuy(nOut=2, nIn=1) annotation (Placement(transformation(extent={{54,-66},{74,-46}}))); - Modelica.StateGraph.Step check1(nOut=2) + Modelica.StateGraph.Step check1(nOut=2, nIn=1) annotation (Placement(transformation(extent={{-72,-140},{-52,-120}}))); Modelica.StateGraph.TransitionWithSignal confirmation(enableTimer=true, waitTime=0.1) annotation (Placement(transformation(extent={{0,-140},{20,-120}}))); - Modelica.StateGraph.Step setDone(nOut=2) + Modelica.StateGraph.Step setDone(nOut=2, nIn=1) annotation (Placement(transformation(extent={{40,-140},{60,-120}}))); Modelica.StateGraph.Transition transition1(enableTimer=true, waitTime=0.1) annotation (Placement(transformation(extent={{22,-66},{42,-46}}))); @@ -90,7 +90,7 @@ model BookBuyerAgent inner Modelica.StateGraph.StateGraphRoot stateGraphRoot annotation (Placement(transformation(extent={{-140,180},{-120,200}}))); - Modelica.StateGraph.Step stateOfOffers(nOut=2) + Modelica.StateGraph.Step stateOfOffers(nOut=2, nIn=1) annotation (Placement(transformation(extent={{-68,-66},{-48,-46}}))); Modelica.StateGraph.TransitionWithSignal transitionWithSignal1 annotation (Placement(transformation(extent={{-40,-46},{-20,-66}}))); @@ -104,7 +104,8 @@ model BookBuyerAgent Modelica.StateGraph.Transition abortAction1( enableTimer=true, waitTime=15) annotation (Placement(transformation(extent={{90,-48},{110,-28}}))); - Modelica.StateGraph.Step notServed(nIn=2) annotation (Placement( + Modelica.StateGraph.Step notServed(nIn=2, nOut=1) + annotation (Placement( transformation( extent={{-10,-10},{10,10}}, rotation=-90, diff --git a/AixLib/Controls/HVACAgentBasedControl/Examples/BookTrading/BookSellerAgent.mo b/AixLib/Controls/HVACAgentBasedControl/Examples/BookTrading/BookSellerAgent.mo index 9a0134a6c4..f9588783bb 100644 --- a/AixLib/Controls/HVACAgentBasedControl/Examples/BookTrading/BookSellerAgent.mo +++ b/AixLib/Controls/HVACAgentBasedControl/Examples/BookTrading/BookSellerAgent.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.HVACAgentBasedControl.Examples.BookTrading; +within AixLib.Controls.HVACAgentBasedControl.Examples.BookTrading; model BookSellerAgent extends BaseClasses.PartialAgent; Real[:,2] bookList( start= [3551551677.0,30; 3551551679.0,20; 3551551616.0, 20]); @@ -16,13 +16,13 @@ model BookSellerAgent Modelica.Blocks.Math.IntegerChange integerChange annotation (Placement( transformation(extent={{-174,-50},{-154,-30}}))); - Modelica.StateGraph.InitialStep waiting(nIn=2) + Modelica.StateGraph.InitialStep waiting(nIn=2, nOut=1) annotation (Placement(transformation(extent={{-180,-120},{-160,-100}}))); inner Modelica.StateGraph.StateGraphRoot stateGraphRoot annotation (Placement(transformation(extent={{-120,160},{-100,180}}))); Modelica.StateGraph.TransitionWithSignal newMessage annotation (Placement(transformation(extent={{-144,-120},{-124,-100}}))); - Modelica.StateGraph.Step checkPurpose(nOut=2) + Modelica.StateGraph.Step checkPurpose(nOut=2, nIn=1) annotation (Placement(transformation(extent={{-108,-120},{-88,-100}}))); Modelica.StateGraph.TransitionWithSignal OfferRequestsServer(enableTimer=true, waitTime=0.1) @@ -30,17 +30,17 @@ model BookSellerAgent Modelica.StateGraph.TransitionWithSignal PurchaseOrdersServer(enableTimer=true, waitTime=0.1) annotation (Placement(transformation(extent={{-120,0},{-100,20}}))); - Modelica.StateGraph.Step checkLibrary + Modelica.StateGraph.Step checkLibrary(nIn=1, nOut=1) annotation (Placement(transformation(extent={{-60,100},{-40,120}}))); - Modelica.StateGraph.Step composeResponse + Modelica.StateGraph.Step composeResponse(nIn=1, nOut=1) annotation (Placement(transformation(extent={{20,100},{40,120}}))); - Modelica.StateGraph.StepWithSignal sendResponse + Modelica.StateGraph.StepWithSignal sendResponse(nIn=1, nOut=1) annotation (Placement(transformation(extent={{100,100},{120,120}}))); - Modelica.StateGraph.Step checkLibrary1 + Modelica.StateGraph.Step checkLibrary1(nIn=1, nOut=1) annotation (Placement(transformation(extent={{-60,0},{-40,20}}))); - Modelica.StateGraph.Step composeResponse1 + Modelica.StateGraph.Step composeResponse1(nIn=1, nOut=1) annotation (Placement(transformation(extent={{20,0},{40,20}}))); - Modelica.StateGraph.StepWithSignal sendResponse1 + Modelica.StateGraph.StepWithSignal sendResponse1(nIn=1, nOut=1) annotation (Placement(transformation(extent={{100,0},{120,20}}))); Modelica.StateGraph.Transition transition(enableTimer=true, waitTime=0.1) annotation (Placement(transformation(extent={{-24,100},{-4,120}}))); diff --git a/AixLib/Controls/HVACAgentBasedControl/Examples/BookTrading/BookTrading.mo b/AixLib/Controls/HVACAgentBasedControl/Examples/BookTrading/BookTrading.mo index c2f6b18eb2..82ceae9fb5 100644 --- a/AixLib/Controls/HVACAgentBasedControl/Examples/BookTrading/BookTrading.mo +++ b/AixLib/Controls/HVACAgentBasedControl/Examples/BookTrading/BookTrading.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.HVACAgentBasedControl.Examples.BookTrading; +within AixLib.Controls.HVACAgentBasedControl.Examples.BookTrading; model BookTrading extends Modelica.Icons.Example; diff --git a/AixLib/Controls/HVACAgentBasedControl/Examples/BookTrading/NetworkCommunication1.mo b/AixLib/Controls/HVACAgentBasedControl/Examples/BookTrading/NetworkCommunication1.mo index a8e1ef6c4b..1937e58a6b 100644 --- a/AixLib/Controls/HVACAgentBasedControl/Examples/BookTrading/NetworkCommunication1.mo +++ b/AixLib/Controls/HVACAgentBasedControl/Examples/BookTrading/NetworkCommunication1.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.HVACAgentBasedControl.Examples.BookTrading; +within AixLib.Controls.HVACAgentBasedControl.Examples.BookTrading; model NetworkCommunication1 extends Modelica.Icons.Example; diff --git a/AixLib/Controls/HVACAgentBasedControl/Examples/BookTrading/NetworkCommunication2.mo b/AixLib/Controls/HVACAgentBasedControl/Examples/BookTrading/NetworkCommunication2.mo index 0e880dbbdd..f45fe08bbd 100644 --- a/AixLib/Controls/HVACAgentBasedControl/Examples/BookTrading/NetworkCommunication2.mo +++ b/AixLib/Controls/HVACAgentBasedControl/Examples/BookTrading/NetworkCommunication2.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.HVACAgentBasedControl.Examples.BookTrading; +within AixLib.Controls.HVACAgentBasedControl.Examples.BookTrading; model NetworkCommunication2 extends Modelica.Icons.Example; diff --git a/AixLib/Controls/HVACAgentBasedControl/Examples/BuildingHeatingSystems/BuildingHeating.mo b/AixLib/Controls/HVACAgentBasedControl/Examples/BuildingHeatingSystems/BuildingHeating.mo index c560aaa18b..4f706e5fe5 100644 --- a/AixLib/Controls/HVACAgentBasedControl/Examples/BuildingHeatingSystems/BuildingHeating.mo +++ b/AixLib/Controls/HVACAgentBasedControl/Examples/BuildingHeatingSystems/BuildingHeating.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.HVACAgentBasedControl.Examples.BuildingHeatingSystems; +within AixLib.Controls.HVACAgentBasedControl.Examples.BuildingHeatingSystems; model BuildingHeating extends Modelica.Icons.Example; parameter AixLib.DataBase.Weather.TRYWeatherBaseDataDefinition weatherDataDay = AixLib.DataBase.Weather.TRYWinterDay(); @@ -6,7 +6,8 @@ model BuildingHeating ThermalZones.ReducedOrder.ThermalZone.ThermalZone thermalZone(zoneParam= DataBase.ThermalZones.OfficePassiveHouse.OPH_1_OfficeNoHeaterCooler(), - redeclare package Medium = + redeclare + package Medium = Modelica.Media.Air.SimpleAir) annotation(Placement(transformation(extent={{-60,58}, {-34,84}}))); ThermalZones.ReducedOrder.ThermalZone.ThermalZone @@ -105,13 +106,12 @@ model BuildingHeating annotation (Placement(transformation(extent={{80,-22},{60,-2}}))); Modelica.Blocks.Continuous.LimPID PID1( yMax=1, - initType=Modelica.Blocks.Types.InitPID.InitialOutput, + initType=Modelica.Blocks.Types.Init.InitialOutput, k=0.1, Ti=1, Td=0.01, y_start=0.3, - yMin=0.1) - annotation (Placement(transformation(extent={{98,24},{78,44}}))); + yMin=0.1) annotation (Placement(transformation(extent={{98,24},{78,44}}))); AixLib.Fluid.Actuators.Valves.TwoWayLinear val( m_flow_nominal=1, dpValve_nominal(displayUnit="bar") = 10000, @@ -119,13 +119,12 @@ model BuildingHeating annotation (Placement(transformation(extent={{-20,-20},{-40,0}}))); Modelica.Blocks.Continuous.LimPID PID2( yMax=1, - initType=Modelica.Blocks.Types.InitPID.InitialOutput, + initType=Modelica.Blocks.Types.Init.InitialOutput, k=0.1, Ti=1, Td=0.01, y_start=0.3, - yMin=0.1) - annotation (Placement(transformation(extent={{-6,24},{-26,44}}))); + yMin=0.1) annotation (Placement(transformation(extent={{-6,24},{-26,44}}))); Modelica.Blocks.Sources.Constant internalGains[3](k={0,0,0}) annotation (Placement(transformation(extent={{-138,16},{-124,30}}))); Modelica.Blocks.Interfaces.RealOutput T_room(unit="K") "Temperature in room" diff --git a/AixLib/Controls/HVACAgentBasedControl/Examples/BuildingHeatingSystems/BuildingHeating_usePoke.mo b/AixLib/Controls/HVACAgentBasedControl/Examples/BuildingHeatingSystems/BuildingHeating_usePoke.mo index 7245fb0130..3de202c9ec 100644 --- a/AixLib/Controls/HVACAgentBasedControl/Examples/BuildingHeatingSystems/BuildingHeating_usePoke.mo +++ b/AixLib/Controls/HVACAgentBasedControl/Examples/BuildingHeatingSystems/BuildingHeating_usePoke.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.HVACAgentBasedControl.Examples.BuildingHeatingSystems; +within AixLib.Controls.HVACAgentBasedControl.Examples.BuildingHeatingSystems; model BuildingHeating_usePoke extends BuildingHeating( roomAgent(usePoke=true), diff --git a/AixLib/Controls/HVACAgentBasedControl/Examples/BuildingHeatingSystems/BuildingWithPV.mo b/AixLib/Controls/HVACAgentBasedControl/Examples/BuildingHeatingSystems/BuildingWithPV.mo index 0dcc39753a..3f8609d4f1 100644 --- a/AixLib/Controls/HVACAgentBasedControl/Examples/BuildingHeatingSystems/BuildingWithPV.mo +++ b/AixLib/Controls/HVACAgentBasedControl/Examples/BuildingHeatingSystems/BuildingWithPV.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.HVACAgentBasedControl.Examples.BuildingHeatingSystems; +within AixLib.Controls.HVACAgentBasedControl.Examples.BuildingHeatingSystems; model BuildingWithPV extends Modelica.Icons.Example; package Medium = AixLib.Media.Water; @@ -89,7 +89,7 @@ model BuildingWithPV G=2) annotation (Placement(transformation(extent={{100,14},{120,34}}))); Modelica.Blocks.Continuous.LimPID PID( yMax=1, - initType=Modelica.Blocks.Types.InitPID.InitialOutput, + initType=Modelica.Blocks.Types.Init.InitialOutput, k=0.1, Ti=1, Td=0.01, @@ -98,7 +98,7 @@ model BuildingWithPV annotation (Placement(transformation(extent={{-66,28},{-46,48}}))); Modelica.Blocks.Continuous.LimPID PID1( yMax=1, - initType=Modelica.Blocks.Types.InitPID.InitialOutput, + initType=Modelica.Blocks.Types.Init.InitialOutput, k=0.1, Ti=1, Td=0.01, diff --git a/AixLib/Controls/HVACAgentBasedControl/Examples/HVACAgentsCommunications/SimpleCommunication.mo b/AixLib/Controls/HVACAgentBasedControl/Examples/HVACAgentsCommunications/SimpleCommunication.mo index eed410a0f7..5142b493ec 100644 --- a/AixLib/Controls/HVACAgentBasedControl/Examples/HVACAgentsCommunications/SimpleCommunication.mo +++ b/AixLib/Controls/HVACAgentBasedControl/Examples/HVACAgentsCommunications/SimpleCommunication.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.HVACAgentBasedControl.Examples.HVACAgentsCommunications; +within AixLib.Controls.HVACAgentBasedControl.Examples.HVACAgentsCommunications; model SimpleCommunication extends Modelica.Icons.Example; diff --git a/AixLib/Controls/HVACAgentBasedControl/UsersGuide/Award.mo b/AixLib/Controls/HVACAgentBasedControl/UsersGuide/Award.mo index 64545a7492..a61649dc12 100644 --- a/AixLib/Controls/HVACAgentBasedControl/UsersGuide/Award.mo +++ b/AixLib/Controls/HVACAgentBasedControl/UsersGuide/Award.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.HVACAgentBasedControl.UsersGuide; +within AixLib.Controls.HVACAgentBasedControl.UsersGuide; class Award "Award" extends Modelica.Icons.Information; annotation (Documentation(info="

    diff --git a/AixLib/Controls/HVACAgentBasedControl/UsersGuide/Gettingstarted.mo b/AixLib/Controls/HVACAgentBasedControl/UsersGuide/Gettingstarted.mo index e2fb6df87c..396b4ce1c2 100644 --- a/AixLib/Controls/HVACAgentBasedControl/UsersGuide/Gettingstarted.mo +++ b/AixLib/Controls/HVACAgentBasedControl/UsersGuide/Gettingstarted.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.HVACAgentBasedControl.UsersGuide; +within AixLib.Controls.HVACAgentBasedControl.UsersGuide; class Gettingstarted "Getting started" extends Modelica.Icons.Information; annotation (Documentation(info="

    diff --git a/AixLib/Controls/HVACAgentBasedControl/UsersGuide/Overview.mo b/AixLib/Controls/HVACAgentBasedControl/UsersGuide/Overview.mo index 21b1d20df8..09a0ccd5e1 100644 --- a/AixLib/Controls/HVACAgentBasedControl/UsersGuide/Overview.mo +++ b/AixLib/Controls/HVACAgentBasedControl/UsersGuide/Overview.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.HVACAgentBasedControl.UsersGuide; +within AixLib.Controls.HVACAgentBasedControl.UsersGuide; class Overview "Overview" extends Modelica.Icons.Information; annotation (Documentation(info="

    diff --git a/AixLib/Controls/HVACAgentBasedControl/UsersGuide/Requirements.mo b/AixLib/Controls/HVACAgentBasedControl/UsersGuide/Requirements.mo index 9ed2d6f446..1a0243d77c 100644 --- a/AixLib/Controls/HVACAgentBasedControl/UsersGuide/Requirements.mo +++ b/AixLib/Controls/HVACAgentBasedControl/UsersGuide/Requirements.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.HVACAgentBasedControl.UsersGuide; +within AixLib.Controls.HVACAgentBasedControl.UsersGuide; class Requirements "Requirements" extends Modelica.Icons.Information; annotation (Documentation(info="

    diff --git a/AixLib/Controls/HeatPump/AntiLegionella.mo b/AixLib/Controls/HeatPump/AntiLegionella.mo index 1c2d56acf0..821ff222b7 100644 --- a/AixLib/Controls/HeatPump/AntiLegionella.mo +++ b/AixLib/Controls/HeatPump/AntiLegionella.mo @@ -1,10 +1,10 @@ -within AixLib.Controls.HeatPump; +within AixLib.Controls.HeatPump; model AntiLegionella "Control to avoid Legionella in the DHW" - parameter Modelica.SIunits.ThermodynamicTemperature TLegMin=333.15 + parameter Modelica.Units.SI.ThermodynamicTemperature TLegMin=333.15 "Temperature at which the legionella in DWH dies"; - parameter Modelica.SIunits.Time minTimeAntLeg + parameter Modelica.Units.SI.Time minTimeAntLeg "Minimal duration of antilegionella control"; parameter Boolean weekly=true "Switch between a daily or weekly trigger approach" annotation(Dialog(descriptionLabel=true), choices(choice=true "Weekly", diff --git a/AixLib/Controls/HeatPump/BaseClasses/InverterControlledHP.mo b/AixLib/Controls/HeatPump/BaseClasses/InverterControlledHP.mo index b014c25399..ef8f180fcb 100644 --- a/AixLib/Controls/HeatPump/BaseClasses/InverterControlledHP.mo +++ b/AixLib/Controls/HeatPump/BaseClasses/InverterControlledHP.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.HeatPump.BaseClasses; +within AixLib.Controls.HeatPump.BaseClasses; model InverterControlledHP "Converter model for an inverter / speed controlled HP modulating between 0 and 1" extends PartialTSetToNSet; parameter Real hys "Hysteresis of controller"; @@ -15,7 +15,7 @@ model InverterControlledHP "Converter model for an inverter / speed controlled H annotation (Placement(transformation(extent={{14,38},{34,58}}))); parameter Real k=0.1 "Gain of controller" annotation (Dialog(group="PI Values")); - parameter Modelica.SIunits.Time Ti=30 "Time constant of Integrator block" + parameter Modelica.Units.SI.Time Ti=30 "Time constant of Integrator block" annotation (Dialog(group="PI Values")); equation connect(TSet, onOffController.reference) annotation (Line(points={{-116,60},{ diff --git a/AixLib/Controls/HeatPump/BaseClasses/OnOffHP.mo b/AixLib/Controls/HeatPump/BaseClasses/OnOffHP.mo index 7847c4393c..8724a1352a 100644 --- a/AixLib/Controls/HeatPump/BaseClasses/OnOffHP.mo +++ b/AixLib/Controls/HeatPump/BaseClasses/OnOffHP.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.HeatPump.BaseClasses; +within AixLib.Controls.HeatPump.BaseClasses; model OnOffHP "Controller gives full speed or stop signal depending on temperature hysteresis" extends AixLib.Controls.HeatPump.BaseClasses.PartialTSetToNSet; parameter Real hys "Hysteresis of controller"; diff --git a/AixLib/Controls/HeatPump/BaseClasses/PartialTSetToNSet.mo b/AixLib/Controls/HeatPump/BaseClasses/PartialTSetToNSet.mo index daf9f20a4e..17265ce842 100644 --- a/AixLib/Controls/HeatPump/BaseClasses/PartialTSetToNSet.mo +++ b/AixLib/Controls/HeatPump/BaseClasses/PartialTSetToNSet.mo @@ -1,14 +1,16 @@ -within AixLib.Controls.HeatPump.BaseClasses; +within AixLib.Controls.HeatPump.BaseClasses; partial model PartialTSetToNSet "Partial model to convert set temperature to compressor speed of heat pump" parameter Boolean use_secHeaGen=false "True to choose a bivalent system" annotation(choices(checkBox=true)); // Heating limit temperature - parameter Modelica.SIunits.Temperature T_heaLim=293.15 - "Heating limit temperature. If the filtered outdoor air temperature surpasses this threshold, the device will be shut down" annotation(Dialog(group="Heating limit temperature")); - parameter Modelica.SIunits.Time movAveTime=300 - "Time span for building the average of the outdoor air temperature. Used for heating limit temperature" annotation (Dialog(group="Heating limit temperature")); + parameter Modelica.Units.SI.Temperature T_heaLim=293.15 + "Heating limit temperature. If the filtered outdoor air temperature surpasses this threshold, the device will be shut down" + annotation (Dialog(group="Heating limit temperature")); + parameter Modelica.Units.SI.Time movAveTime=300 + "Time span for building the average of the outdoor air temperature. Used for heating limit temperature" + annotation (Dialog(group="Heating limit temperature")); AixLib.Utilities.Logical.SmoothSwitch swiNullHP "If HP is off, zero is passed" annotation (Placement(transformation(extent={{66,-10},{86,10}}))); diff --git a/AixLib/Controls/HeatPump/BaseClasses/package.mo b/AixLib/Controls/HeatPump/BaseClasses/package.mo index 69cb183327..f7d1d151c4 100644 --- a/AixLib/Controls/HeatPump/BaseClasses/package.mo +++ b/AixLib/Controls/HeatPump/BaseClasses/package.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.HeatPump; +within AixLib.Controls.HeatPump; package BaseClasses "Package with base classes for the HeatPump controller" annotation (Icon(graphics={ diff --git a/AixLib/Controls/HeatPump/Examples/HeatPumpController.mo b/AixLib/Controls/HeatPump/Examples/HeatPumpController.mo index e1029e3d64..22ef9f3bbc 100644 --- a/AixLib/Controls/HeatPump/Examples/HeatPumpController.mo +++ b/AixLib/Controls/HeatPump/Examples/HeatPumpController.mo @@ -33,7 +33,7 @@ model HeatPumpController "Example for usage of heat pump controller" rotation=0, origin={-70,-96}))); Modelica.Blocks.Sources.Sine T_meas( - freqHz=1/3600, + f=1/3600, amplitude=6, offset=310) "Generates the measured temperature" annotation (Placement(transformation(extent={{-100,20},{-80,40}}))); diff --git a/AixLib/Controls/HeatPump/HPControl.mo b/AixLib/Controls/HeatPump/HPControl.mo index 9dae840e5d..31fb87e379 100644 --- a/AixLib/Controls/HeatPump/HPControl.mo +++ b/AixLib/Controls/HeatPump/HPControl.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.HeatPump; +within AixLib.Controls.HeatPump; model HPControl "Control block which makes sure the desired temperature is supplied by the HP" //General @@ -35,10 +35,10 @@ model HPControl //Anti Legionella parameter Boolean use_antLeg "True if Legionella Control is of relevance" annotation (Dialog(tab="Anti Legionella"),choices(checkBox=true)); - parameter Modelica.SIunits.ThermodynamicTemperature TLegMin=333.15 + parameter Modelica.Units.SI.ThermodynamicTemperature TLegMin=333.15 "Temperature at which the legionella in DWH dies" annotation (Dialog(tab="Anti Legionella", enable=use_antLeg)); - parameter Modelica.SIunits.Time minTimeAntLeg + parameter Modelica.Units.SI.Time minTimeAntLeg "Minimal duration of antilegionella control" annotation (Dialog(tab="Anti Legionella", enable=use_antLeg)); parameter Boolean weekly=true @@ -57,8 +57,8 @@ model HPControl trigWeekDay=trigWeekDay, trigHour=trigHour, yearRef=2017, - final zerTim=zerTim) if - use_antLeg + final zerTim=zerTim) + if use_antLeg annotation (Placement(transformation(extent={{-26,-14},{14,26}}))); Interfaces.VapourCompressionMachineControlBus sigBusHP annotation (Placement(transformation(extent={{-116,-72},{-88,-44}}))); diff --git a/AixLib/Controls/HeatPump/ModularHeatPumps/BaseClasses/PartialModularController.mo b/AixLib/Controls/HeatPump/ModularHeatPumps/BaseClasses/PartialModularController.mo index f837f99800..c05bcac4bc 100644 --- a/AixLib/Controls/HeatPump/ModularHeatPumps/BaseClasses/PartialModularController.mo +++ b/AixLib/Controls/HeatPump/ModularHeatPumps/BaseClasses/PartialModularController.mo @@ -35,19 +35,17 @@ partial model PartialModularController annotation(Dialog(tab="Controller",group="Proportional term"), HideResult=true); - parameter Modelica.SIunits.Time Ti[nCom] = fill(0.5,nCom) - "Time constant of integrator block" - annotation(Dialog(tab="Controller",group="Integral term"), - HideResult=true); + parameter Modelica.Units.SI.Time Ti[nCom]=fill(0.5, nCom) + "Time constant of integrator block" annotation (Dialog(tab="Controller", + group="Integral term"), HideResult=true); parameter Real Ni[nCom] = fill(0.9,nCom) "Ni*Ti is time constant of anti-windup compensation" annotation(Dialog(tab="Controller",group="Integral term"), HideResult=true); - parameter Modelica.SIunits.Time Td[nCom] = fill(0.1,nCom) - "Time constant of derivative block" - annotation(Dialog(tab="Controller",group="Derivative term"), - HideResult=true); + parameter Modelica.Units.SI.Time Td[nCom]=fill(0.1, nCom) + "Time constant of derivative block" annotation (Dialog(tab="Controller", + group="Derivative term"), HideResult=true); parameter Real Nd[nCom] = fill(10,nCom) "The higher Nd, the more ideal the derivative block" annotation(Dialog(tab="Controller",group="Derivative term"), @@ -71,11 +69,10 @@ partial model PartialModularController annotation(Dialog(tab="Controller",group="Controller limits"), HideResult=true); - parameter Modelica.Blocks.Types.InitPID initType[nCom]= - fill(Modelica.Blocks.Types.InitPID.DoNotUse_InitialIntegratorState,nCom) + parameter Modelica.Blocks.Types.Init initType[nCom]=fill(Modelica.Blocks.Types.Init.InitialState, + nCom) "Init: (1: no init, 2: steady state, 3: initial state, 4: initial output)" - annotation(Dialog(tab="Initialisation",group="General"), - HideResult=true); + annotation (Dialog(tab="Initialisation", group="General"), HideResult=true); parameter Real xi_start[nCom] = fill(0,nCom) "Initial or guess value value for integrator output (= integrator state)" annotation(Dialog(tab="Initialisation",group="Start values"), diff --git a/AixLib/Controls/HeatPump/SafetyControls/AntiFreeze.mo b/AixLib/Controls/HeatPump/SafetyControls/AntiFreeze.mo index 8c424cdcad..1e409fd5f2 100644 --- a/AixLib/Controls/HeatPump/SafetyControls/AntiFreeze.mo +++ b/AixLib/Controls/HeatPump/SafetyControls/AntiFreeze.mo @@ -1,10 +1,10 @@ -within AixLib.Controls.HeatPump.SafetyControls; +within AixLib.Controls.HeatPump.SafetyControls; model AntiFreeze "Model to prevent source from freezing" extends BaseClasses.PartialSafetyControl; parameter Boolean use_antFre=true "True if anti freeze control is part of safety control" annotation(choices(checkBox=true)); - parameter Modelica.SIunits.ThermodynamicTemperature TAntFre=276.15 + parameter Modelica.Units.SI.ThermodynamicTemperature TAntFre=276.15 "Limit temperature for anti freeze control" annotation (Dialog(enable=use_antFre)); parameter Real dTHys=2 @@ -15,8 +15,8 @@ model AntiFreeze "Model to prevent source from freezing" Modelica.Blocks.Logical.Hysteresis hysteresis( final uLow=TAntFre, final pre_y_start=true, - final uHigh=TAntFre + dTHys) if - use_antFre + final uHigh=TAntFre + dTHys) + if use_antFre annotation (Placement(transformation(extent={{-62,-18},{-38,6}}))); //assume that the initial temperature is high enough. Modelica.Blocks.Math.Min min if use_antFre diff --git a/AixLib/Controls/HeatPump/SafetyControls/BaseClasses/BoundaryMap.mo b/AixLib/Controls/HeatPump/SafetyControls/BaseClasses/BoundaryMap.mo index ce052463d8..259e8898e3 100644 --- a/AixLib/Controls/HeatPump/SafetyControls/BaseClasses/BoundaryMap.mo +++ b/AixLib/Controls/HeatPump/SafetyControls/BaseClasses/BoundaryMap.mo @@ -1,10 +1,11 @@ -within AixLib.Controls.HeatPump.SafetyControls.BaseClasses; +within AixLib.Controls.HeatPump.SafetyControls.BaseClasses; block BoundaryMap "Block which returns false if the input parameters are out of the given charasteristic map. For the boundaries of the y-input value, a dynamic hysteresis is used to ensure a used device will stay off a certain time after shutdown." extends AixLib.Controls.HeatPump.SafetyControls.BaseClasses.BoundaryMapIcon( final iconMin=-70, final iconMax=70); - parameter Real dx = 1 "Delta value used for both upper and lower hysteresis. Used to avoid state-events when used as a safety control."; + parameter Real dx "Delta value used for both upper and lower hysteresis. Used to avoid state events when used as a safety control." + annotation (Dialog(tab="Safety Control", group="Operational Envelope")); Modelica.Blocks.Interfaces.BooleanOutput noErr "If an error occurs, this will be false" annotation (Placement(transformation(extent={{100,-10},{120,10}}))); @@ -13,8 +14,9 @@ For the boundaries of the y-input value, a dynamic hysteresis is used to ensure Modelica.Blocks.Interfaces.RealInput y_in "Current value on y-Axis" annotation (Placement(transformation(extent={{-128,-74},{-100,-46}}))); - Modelica.Blocks.Tables.CombiTable1Ds uppCombiTable1Ds(final table=tableUpp, smoothness= - Modelica.Blocks.Types.Smoothness.LinearSegments, + Modelica.Blocks.Tables.CombiTable1Ds uppCombiTable1Ds( + final table=tableUpp_internal, + final smoothness= Modelica.Blocks.Types.Smoothness.LinearSegments, final tableOnFile=false) annotation (Placement(transformation(extent={{-48,68},{-28,88}}))); Modelica.Blocks.MathBoolean.Nor diff --git a/AixLib/Controls/HeatPump/SafetyControls/BaseClasses/BoundaryMapIcon.mo b/AixLib/Controls/HeatPump/SafetyControls/BaseClasses/BoundaryMapIcon.mo index d79d8f00de..f1b11984dc 100644 --- a/AixLib/Controls/HeatPump/SafetyControls/BaseClasses/BoundaryMapIcon.mo +++ b/AixLib/Controls/HeatPump/SafetyControls/BaseClasses/BoundaryMapIcon.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.HeatPump.SafetyControls.BaseClasses; +within AixLib.Controls.HeatPump.SafetyControls.BaseClasses; partial block BoundaryMapIcon "PartialModel for the icon of a boundary map" parameter Boolean use_opeEnvFroRec=true diff --git a/AixLib/Controls/HeatPump/SafetyControls/BaseClasses/PartialSafetyControl.mo b/AixLib/Controls/HeatPump/SafetyControls/BaseClasses/PartialSafetyControl.mo index 269c1075cd..9feea8e5b4 100644 --- a/AixLib/Controls/HeatPump/SafetyControls/BaseClasses/PartialSafetyControl.mo +++ b/AixLib/Controls/HeatPump/SafetyControls/BaseClasses/PartialSafetyControl.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.HeatPump.SafetyControls.BaseClasses; +within AixLib.Controls.HeatPump.SafetyControls.BaseClasses; partial block PartialSafetyControl "Base Block" Modelica.Blocks.Interfaces.RealInput nSet "Set value relative speed of compressor. Analog from 0 to 1" diff --git a/AixLib/Controls/HeatPump/SafetyControls/BaseClasses/RunPerHouBoundary.mo b/AixLib/Controls/HeatPump/SafetyControls/BaseClasses/RunPerHouBoundary.mo index c5a0290527..975c1bbf9c 100644 --- a/AixLib/Controls/HeatPump/SafetyControls/BaseClasses/RunPerHouBoundary.mo +++ b/AixLib/Controls/HeatPump/SafetyControls/BaseClasses/RunPerHouBoundary.mo @@ -1,8 +1,8 @@ -within AixLib.Controls.HeatPump.SafetyControls.BaseClasses; +within AixLib.Controls.HeatPump.SafetyControls.BaseClasses; block RunPerHouBoundary "Checks if a maximal run per hour value is in boundary" extends Modelica.Blocks.Interfaces.BooleanSISO; parameter Integer maxRunPer_h "Number of maximal on/off cycles per hour"; - parameter Modelica.SIunits.Time delayTime(displayUnit="h") = 3600 + parameter Modelica.Units.SI.Time delayTime(displayUnit="h") = 3600 "Delay time of output with respect to input signal"; Modelica.Blocks.Logical.LessThreshold runCouLesMax(threshold=maxRunPer_h) diff --git a/AixLib/Controls/HeatPump/SafetyControls/BaseClasses/TimeControl.mo b/AixLib/Controls/HeatPump/SafetyControls/BaseClasses/TimeControl.mo index 314fb59fe3..f05ce7933d 100644 --- a/AixLib/Controls/HeatPump/SafetyControls/BaseClasses/TimeControl.mo +++ b/AixLib/Controls/HeatPump/SafetyControls/BaseClasses/TimeControl.mo @@ -1,9 +1,9 @@ -within AixLib.Controls.HeatPump.SafetyControls.BaseClasses; +within AixLib.Controls.HeatPump.SafetyControls.BaseClasses; block TimeControl "Counts seconds a device is turned on and returns true if the time is inside given boundaries" extends Modelica.Blocks.Interfaces.BooleanSISO; - parameter Modelica.SIunits.Time minRunTime + parameter Modelica.Units.SI.Time minRunTime "Minimal time the device is turned on or off"; Modelica.Blocks.Logical.Timer runTim "Counts the seconds the heat pump is locked still" diff --git a/AixLib/Controls/HeatPump/SafetyControls/BaseClasses/package.mo b/AixLib/Controls/HeatPump/SafetyControls/BaseClasses/package.mo index ee25d617e7..42388032ce 100644 --- a/AixLib/Controls/HeatPump/SafetyControls/BaseClasses/package.mo +++ b/AixLib/Controls/HeatPump/SafetyControls/BaseClasses/package.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.HeatPump.SafetyControls; +within AixLib.Controls.HeatPump.SafetyControls; package BaseClasses "Package with base classes for AixLib.Controls.HeatPump.SafetyControls" diff --git a/AixLib/Controls/HeatPump/SafetyControls/DefrostControl.mo b/AixLib/Controls/HeatPump/SafetyControls/DefrostControl.mo index 13b853564e..886b08f3f4 100644 --- a/AixLib/Controls/HeatPump/SafetyControls/DefrostControl.mo +++ b/AixLib/Controls/HeatPump/SafetyControls/DefrostControl.mo @@ -1,18 +1,18 @@ -within AixLib.Controls.HeatPump.SafetyControls; +within AixLib.Controls.HeatPump.SafetyControls; block DefrostControl "Control block to ensure no frost limits heat flow at the evaporator" parameter Real minIceFac "Minimal value above which no defrost is necessary"; parameter Boolean use_chiller=true "True if defrost operates by changing mode to cooling. False to use an electrical heater" annotation(choices(checkBox=true)); - parameter Modelica.SIunits.Power calcPel_deFro + parameter Modelica.Units.SI.Power calcPel_deFro "Calculate how much eletrical energy is used to melt ice" annotation (Dialog(enable=not use_chiller)); parameter Real deltaIceFac = 0.1 "Bandwitdth for hystereses. If the icing factor is based on the duration of defrost, this value is necessary to avoid state-events."; Modelica.Blocks.Logical.Hysteresis iceFacGreMinHea( final uLow=minIceFac, final uHigh=minIceFac + deltaIceFac, - final pre_y_start=true) if - not use_chiller + final pre_y_start=true) + if not use_chiller "Check if icing factor is greater than a boundary" annotation (Placement( transformation( extent={{-8,-9},{8,9}}, @@ -24,12 +24,12 @@ block DefrostControl extent={{10,-10},{-10,10}}, rotation=-90, origin={0,110}))); - Modelica.Blocks.Sources.BooleanConstant conTrueNotUseChi(final k=true) if - not use_chiller + Modelica.Blocks.Sources.BooleanConstant conTrueNotUseChi(final k=true) + if not use_chiller "If ice is melted with an additional heater, HP can continue running" annotation (Placement(transformation(extent={{-36,-6},{-24,6}}))); - Modelica.Blocks.Sources.Constant constPel_deFro(final k=calcPel_deFro) if - not + Modelica.Blocks.Sources.Constant constPel_deFro(final k=calcPel_deFro) + if not use_chiller "Calculate how much eletrical energy is used to melt ice" annotation (Placement(transformation( extent={{-6,-6},{6,6}}, @@ -67,8 +67,8 @@ block DefrostControl Modelica.Blocks.Logical.Hysteresis iceFacGreMinChi( final uLow=minIceFac, final uHigh=minIceFac + deltaIceFac, - final pre_y_start=true) if - use_chiller + final pre_y_start=true) + if use_chiller "Check if icing factor is greater than a boundary" annotation (Placement( transformation( extent={{-8,-9},{8,9}}, @@ -77,12 +77,12 @@ block DefrostControl Modelica.Blocks.Logical.LogicalSwitch logicalSwitch "If a chiller is used to defrost, mode will be false" annotation (Placement(transformation(extent={{58,-42},{78,-22}}))); - Modelica.Blocks.Sources.BooleanConstant conFalseNotUseChi(final k=true) if - not + Modelica.Blocks.Sources.BooleanConstant conFalseNotUseChi(final k=true) + if not use_chiller "Just to omit warnings" annotation (Placement(transformation(extent={{28,-48},{38,-38}}))); - Modelica.Blocks.Sources.BooleanConstant conTrueUseChi(final k=false) if - use_chiller "Set mode to false to simulate the defrost cycle" + Modelica.Blocks.Sources.BooleanConstant conTrueUseChi(final k=false) + if use_chiller "Set mode to false to simulate the defrost cycle" annotation (Placement(transformation(extent={{28,-66},{38,-56}}))); equation connect(conOne.y, swiErr.u3) annotation (Line(points={{36.6,-6},{38,-6},{38,4}, diff --git a/AixLib/Controls/HeatPump/SafetyControls/OnOffControl.mo b/AixLib/Controls/HeatPump/SafetyControls/OnOffControl.mo index 0a5b7d621c..9c647cb8ac 100644 --- a/AixLib/Controls/HeatPump/SafetyControls/OnOffControl.mo +++ b/AixLib/Controls/HeatPump/SafetyControls/OnOffControl.mo @@ -1,16 +1,14 @@ -within AixLib.Controls.HeatPump.SafetyControls; +within AixLib.Controls.HeatPump.SafetyControls; model OnOffControl "Controlls if the minimal runtime, stoptime and max. runs per hour are inside given boundaries" parameter Boolean use_minRunTime "False if minimal runtime of HP is not considered" annotation(choices(checkBox=true)); - parameter Modelica.SIunits.Time minRunTime(displayUnit="min") - "Mimimum runtime of heat pump" - annotation (Dialog(enable=use_minRunTime)); + parameter Modelica.Units.SI.Time minRunTime(displayUnit="min") + "Mimimum runtime of heat pump" annotation (Dialog(enable=use_minRunTime)); parameter Boolean use_minLocTime "False if minimal locktime of HP is not considered" annotation(choices(checkBox=true)); - parameter Modelica.SIunits.Time minLocTime(displayUnit="min") - "Minimum lock time of heat pump" - annotation (Dialog(enable=use_minLocTime)); + parameter Modelica.Units.SI.Time minLocTime(displayUnit="min") + "Minimum lock time of heat pump" annotation (Dialog(enable=use_minLocTime)); parameter Boolean use_runPerHou "False if maximal runs per hour of HP are not considered" annotation(choices(checkBox=true)); parameter Integer maxRunPerHou "Maximal number of on/off cycles in one hour" @@ -27,13 +25,13 @@ model OnOffControl BaseClasses.RunPerHouBoundary runPerHouBoundary(final maxRunPer_h= maxRunPerHou, final delayTime=3600) if use_runPerHou annotation (Placement(transformation(extent={{-40,-80},{-20,-60}}))); - BaseClasses.TimeControl locTimControl(final minRunTime=minLocTime) if - use_minLocTime + BaseClasses.TimeControl locTimControl(final minRunTime=minLocTime) + if use_minLocTime annotation (Placement(transformation(extent={{-40,-24},{-20,-4}}))); Modelica.Blocks.Logical.Not notIsOn annotation (Placement(transformation(extent={{-66,-22},{-58,-14}}))); - BaseClasses.TimeControl runTimControl(final minRunTime=minRunTime) if - use_minRunTime + BaseClasses.TimeControl runTimControl(final minRunTime=minRunTime) + if use_minRunTime annotation (Placement(transformation(extent={{-40,52},{-20,72}}))); Modelica.Blocks.Logical.And andLoc annotation (Placement(transformation(extent={{28,-66},{40,-54}}))); diff --git a/AixLib/Controls/HeatPump/SafetyControls/OperationalEnvelope.mo b/AixLib/Controls/HeatPump/SafetyControls/OperationalEnvelope.mo index dea8a8993f..61e1d45c86 100644 --- a/AixLib/Controls/HeatPump/SafetyControls/OperationalEnvelope.mo +++ b/AixLib/Controls/HeatPump/SafetyControls/OperationalEnvelope.mo @@ -1,12 +1,17 @@ -within AixLib.Controls.HeatPump.SafetyControls; +within AixLib.Controls.HeatPump.SafetyControls; block OperationalEnvelope "Block which computes an error if the current values are outside of the given operatinal envelope" extends BaseClasses.PartialSafetyControl; extends BaseClasses.BoundaryMapIcon(final iconMin=-70, final iconMax=70); - parameter Boolean use_opeEnv - "False to allow HP to run out of operational envelope" annotation(choices(checkBox=true)); - + parameter Boolean use_opeEnv + "False to allow HP to run out of operational envelope" annotation(choices(checkBox=true)); + parameter Modelica.Units.SI.TemperatureDifference dTHyst=5 + "Temperature difference used for both upper and lower hysteresis in the operational envelope." + annotation (Dialog( + tab="Safety Control", + group="Operational Envelope", + enable=use_opeEnv)); Modelica.Blocks.Math.UnitConversions.To_degC toDegCT_ret_co annotation ( extent=[-88,38; -76,50], Placement(transformation(extent={{-82,-24},{ -70,-12}}))); @@ -16,8 +21,9 @@ block OperationalEnvelope BaseClasses.BoundaryMap boundaryMap( final tableUpp= tableUpp, final use_opeEnvFroRec=use_opeEnvFroRec, - final dataTable=dataTable) if - use_opeEnv + final dataTable=dataTable, + final dx=dTHyst) + if use_opeEnv annotation (Placement(transformation(extent={{-62,-28},{-4,22}}))); Modelica.Blocks.Sources.BooleanConstant booConOpeEnv(final k=true) if not use_opeEnv diff --git a/AixLib/Controls/HeatPump/SafetyControls/SafetyControl.mo b/AixLib/Controls/HeatPump/SafetyControls/SafetyControl.mo index 03575934e3..9a1fb21170 100644 --- a/AixLib/Controls/HeatPump/SafetyControls/SafetyControl.mo +++ b/AixLib/Controls/HeatPump/SafetyControls/SafetyControl.mo @@ -1,17 +1,17 @@ -within AixLib.Controls.HeatPump.SafetyControls; +within AixLib.Controls.HeatPump.SafetyControls; block SafetyControl "Block including all safety levels" extends BaseClasses.PartialSafetyControl; parameter Boolean use_minRunTime=true "False if minimal runtime of HP is not considered" annotation (Dialog(group="OnOffControl"), choices(checkBox=true)); - parameter Modelica.SIunits.Time minRunTime "Mimimum runtime of heat pump" - annotation (Dialog(group="OnOffControl",enable=use_minRunTime)); + parameter Modelica.Units.SI.Time minRunTime "Mimimum runtime of heat pump" + annotation (Dialog(group="OnOffControl", enable=use_minRunTime)); parameter Boolean use_minLocTime=true "False if minimal locktime of HP is not considered" annotation (Dialog(group="OnOffControl"), choices(checkBox=true)); - parameter Modelica.SIunits.Time minLocTime "Minimum lock time of heat pump" - annotation (Dialog(group="OnOffControl",enable=use_minLocTime)); + parameter Modelica.Units.SI.Time minLocTime "Minimum lock time of heat pump" + annotation (Dialog(group="OnOffControl", enable=use_minLocTime)); parameter Boolean use_runPerHou=true "False if maximal runs per hour HP are not considered" annotation (Dialog(group="OnOffControl"), choices(checkBox=true)); @@ -29,6 +29,9 @@ block SafetyControl "Block including all safety levels" choicesAllMatching=true); parameter Real tableUpp[:,2] "Upper boundary of envelope" annotation (Dialog(group="Operational Envelope", enable=use_opeEnv and not use_opeEnvFroRec)); + parameter Modelica.Units.SI.TemperatureDifference dTHystOperEnv=5 + "Temperature difference used for both upper and lower hysteresis in the operational envelope." + annotation (Dialog(group="Operational Envelope", enable=use_opeEnv)); parameter Boolean pre_n_start=true "Start value of pre(n) at initial time" annotation (Dialog(group="OnOffControl", descriptionLabel=true),choices(checkBox=true)); parameter Boolean use_deFro @@ -41,13 +44,13 @@ block SafetyControl "Block including all safety levels" "True if defrost operates by changing mode to cooling. False to use an electrical heater" annotation (Dialog(group="Defrost", enable=use_deFro), choices(checkBox=true)); - parameter Modelica.SIunits.Power calcPel_deFro + parameter Modelica.Units.SI.Power calcPel_deFro "Calculate how much eletrical energy is used to melt ice" annotation (Dialog(enable=not use_chiller and use_deFro, group="Defrost")); parameter Boolean use_antFre=true "True if anti freeze control is part of safety control" annotation (Dialog(group="Anti Freeze Control"), choices(checkBox=true)); - parameter Modelica.SIunits.ThermodynamicTemperature TantFre=276.15 + parameter Modelica.Units.SI.ThermodynamicTemperature TantFre=276.15 "Limit temperature for anti freeze control" annotation (Dialog(group="Anti Freeze Control", enable=use_antFre)); @@ -55,7 +58,8 @@ block SafetyControl "Block including all safety levels" final use_opeEnv=use_opeEnv, final tableUpp=tableUpp, final use_opeEnvFroRec=use_opeEnvFroRec, - final dataTable=dataTable) + final dataTable=dataTable, + final dTHyst=dTHystOperEnv) annotation (Placement(transformation(extent={{-10,-10},{14,12}}))); OnOffControl onOffController( final minRunTime=minRunTime, @@ -89,18 +93,18 @@ block SafetyControl "Block including all safety levels" origin={130,80}))); AntiFreeze antiFreeze(final TAntFre=TantFre, final use_antFre=use_antFre) annotation (Placement(transformation(extent={{24,-8},{48,12}}))); - Modelica.Blocks.Routing.BooleanPassThrough boolPasThrDef if - not use_deFro + Modelica.Blocks.Routing.BooleanPassThrough boolPasThrDef + if not use_deFro "No 2. Layer" annotation (Placement(transformation(extent={{-92,-50},{-76, -34}})), choicesAllMatching=true); - Modelica.Blocks.Interfaces.IntegerOutput ERR_opeEnv if - use_opeEnv annotation ( + Modelica.Blocks.Interfaces.IntegerOutput ERR_opeEnv + if use_opeEnv annotation ( Placement(transformation( extent={{-10,-10},{10,10}}, rotation=270, origin={60,-110}))); - Modelica.Blocks.Interfaces.IntegerOutput ERR_antFre if - use_antFre annotation ( + Modelica.Blocks.Interfaces.IntegerOutput ERR_antFre + if use_antFre annotation ( Placement(transformation( extent={{-10,-10},{10,10}}, rotation=270, diff --git a/AixLib/Controls/HeatPump/SafetyControls/package.mo b/AixLib/Controls/HeatPump/SafetyControls/package.mo index 6cb86f5452..bb4a35dc35 100644 --- a/AixLib/Controls/HeatPump/SafetyControls/package.mo +++ b/AixLib/Controls/HeatPump/SafetyControls/package.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.HeatPump; +within AixLib.Controls.HeatPump; package SafetyControls diff --git a/AixLib/Controls/Interfaces/BoilerControlBus.mo b/AixLib/Controls/Interfaces/BoilerControlBus.mo index 411f1cbc6a..6527909bc5 100644 --- a/AixLib/Controls/Interfaces/BoilerControlBus.mo +++ b/AixLib/Controls/Interfaces/BoilerControlBus.mo @@ -4,10 +4,10 @@ expandable connector BoilerControlBus extends Modelica.Icons.SignalBus; Boolean isOn "Switches Controller on and off"; -Modelica.SIunits.Temperature TAmbient "Ambient air temperature"; + Modelica.Units.SI.Temperature TAmbient "Ambient air temperature"; Boolean switchToNightMode "Switches the boiler to night mode"; -Modelica.SIunits.Power chemicalEnergyFlowRate - "Flow of primary (chemical) energy into boiler"; + Modelica.Units.SI.Power chemicalEnergyFlowRate + "Flow of primary (chemical) energy into boiler"; annotation ( Icon(coordinateSystem(preserveAspectRatio=false)), diff --git a/AixLib/Controls/Interfaces/CHPControlBus.mo b/AixLib/Controls/Interfaces/CHPControlBus.mo index ebb21286d0..3272534d75 100644 --- a/AixLib/Controls/Interfaces/CHPControlBus.mo +++ b/AixLib/Controls/Interfaces/CHPControlBus.mo @@ -11,110 +11,83 @@ expandable connector CHPControlBus RotationSpeed meaRotEng "Measured engines' speed" annotation(Dialog(tab="Operation point", group="Combustion Engine")); - Modelica.SIunits.Power meaFuePowEng + Modelica.Units.SI.Power meaFuePowEng "Needed fuel power at combustion engines'" - annotation(Dialog(tab="Operation point", - group="Combustion Engine")); - Modelica.SIunits.Power meaThePowEng + annotation (Dialog(tab="Operation point", group="Combustion Engine")); + Modelica.Units.SI.Power meaThePowEng "Thermal power output at combustion engines'" - annotation(Dialog(tab="Operation point", - group="Combustion Engine")); - Modelica.SIunits.Torque meaTorEng - "Engine torque at combustion engines'" - annotation(Dialog(tab="Operation point", - group="Combustion Engine")); - Modelica.SIunits.MassFlowRate meaMasFloFueEng + annotation (Dialog(tab="Operation point", group="Combustion Engine")); + Modelica.Units.SI.Torque meaTorEng "Engine torque at combustion engines'" + annotation (Dialog(tab="Operation point", group="Combustion Engine")); + Modelica.Units.SI.MassFlowRate meaMasFloFueEng "Fuel consumption at engines' inlets" - annotation(Dialog(tab="Operation point", - group="Combustion Engine")); - Modelica.SIunits.MassFlowRate meaMasFloAirEng + annotation (Dialog(tab="Operation point", group="Combustion Engine")); + Modelica.Units.SI.MassFlowRate meaMasFloAirEng "Air consumption at engines' inlets" - annotation(Dialog(tab="Operation point", - group="Combustion Engine")); - Modelica.SIunits.MassFlowRate meaMasFloCO2Eng + annotation (Dialog(tab="Operation point", group="Combustion Engine")); + Modelica.Units.SI.MassFlowRate meaMasFloCO2Eng "CO2 mass flow rates at engines' exhaust outlets" - annotation(Dialog(tab="Operation point", - group="Combustion Engine")); - Modelica.SIunits.SpecificHeatCapacity calMeaCpExh + annotation (Dialog(tab="Operation point", group="Combustion Engine")); + Modelica.Units.SI.SpecificHeatCapacity calMeaCpExh "Calculated mean specific heat capacity of the exhaust gas flow" annotation (Dialog(tab="Operation point", group="Combustion Engine")); - Modelica.SIunits.Temperature meaTemInEng + Modelica.Units.SI.Temperature meaTemInEng "Measured coolant temperature at engines' inlets" - annotation(Dialog(tab="Operation point", - group="Combustion Engine")); - Modelica.SIunits.Temperature meaTemOutEng + annotation (Dialog(tab="Operation point", group="Combustion Engine")); + Modelica.Units.SI.Temperature meaTemOutEng "Measured coolant temperature at engines' outlets" - annotation(Dialog(tab="Operation point", - group="Combustion Engine")); + annotation (Dialog(tab="Operation point", group="Combustion Engine")); // Definition of variables describing generators // - Modelica.SIunits.Power meaElPowGen - "Electric power at generators' clamps" - annotation(Dialog(tab="Operation point", - group="Generator")); - Modelica.SIunits.Current meaCurGen - "Electric current at generators' clamps" - annotation(Dialog(tab="Operation point", - group="Generator")); - Modelica.SIunits.Torque meaTorGen - "Generators' torque" - annotation(Dialog(tab="Operation point", - group="Generator")); + Modelica.Units.SI.Power meaElPowGen "Electric power at generators' clamps" + annotation (Dialog(tab="Operation point", group="Generator")); + Modelica.Units.SI.Current meaCurGen "Electric current at generators' clamps" + annotation (Dialog(tab="Operation point", group="Generator")); + Modelica.Units.SI.Torque meaTorGen "Generators' torque" + annotation (Dialog(tab="Operation point", group="Generator")); Real calEtaGen(unit="1") "Calculated generators' efficiency" annotation(Dialog(tab="Operation point", group="Generator")); - Modelica.SIunits.Power calThePowGen - "Thermal loss power" - annotation(Dialog(tab="Operation point", - group="Generator")); + Modelica.Units.SI.Power calThePowGen "Thermal loss power" + annotation (Dialog(tab="Operation point", group="Generator")); // Definition of variables describing exhaust heat exchangers // - Modelica.SIunits.Temperature meaTemExhHexOut + Modelica.Units.SI.Temperature meaTemExhHexOut "Measured exhaust gas temperatures at exhaust heat exchangers' outlets" - annotation (Dialog(tab="Operation point", - group="Exhaust Heat Exchanger")); - Modelica.SIunits.Temperature meaTemExhHexIn + annotation (Dialog(tab="Operation point", group="Exhaust Heat Exchanger")); + Modelica.Units.SI.Temperature meaTemExhHexIn "Measured exhaust gas temperatures at exhaust heat exchangers' inlets" - annotation (Dialog(tab="Operation point", - group="Exhaust Heat Exchanger")); - Modelica.SIunits.Power meaThePowOutHex + annotation (Dialog(tab="Operation point", group="Exhaust Heat Exchanger")); + Modelica.Units.SI.Power meaThePowOutHex "Measured thermal power of exhaust heat exchangers'" - annotation (Dialog(tab="Operation point", - group="Exhaust Heat Exchanger")); - Modelica.SIunits.MassFlowRate meaMasFloConHex + annotation (Dialog(tab="Operation point", group="Exhaust Heat Exchanger")); + Modelica.Units.SI.MassFlowRate meaMasFloConHex "Measured condensed water mass flow rates at exhaust heat exchangers' outlets" - annotation (Dialog(tab="Operation point", - group="Exhaust Heat Exchanger")); - Modelica.SIunits.Temperature meaTemInHex + annotation (Dialog(tab="Operation point", group="Exhaust Heat Exchanger")); + Modelica.Units.SI.Temperature meaTemInHex "Measured coolant temperature at exhaust heat exchangers' inlets" - annotation(Dialog(tab="Operation point", - group="Exhaust Heat Exchanger")); - Modelica.SIunits.Temperature meaTemOutHex + annotation (Dialog(tab="Operation point", group="Exhaust Heat Exchanger")); + Modelica.Units.SI.Temperature meaTemOutHex "Measured coolant temperature at exhaust heat exchangers' outlets" - annotation(Dialog(tab="Operation point", - group="Exhaust Heat Exchanger")); + annotation (Dialog(tab="Operation point", group="Exhaust Heat Exchanger")); // Definition of variables describing CHP units in general // - Modelica.SIunits.Power meaThePowChp + Modelica.Units.SI.Power meaThePowChp "Measured thermal power at CHP units' outlets" - annotation(Dialog(tab="Operation point", - group="CHP Unit")); - Modelica.SIunits.Temperature meaTemRetCooChp + annotation (Dialog(tab="Operation point", group="CHP Unit")); + Modelica.Units.SI.Temperature meaTemRetCooChp "Measured temperatures at CHP units' coolant return flow" - annotation(Dialog(tab="Operation point", - group="CHP Unit")); - Modelica.SIunits.Temperature meaTemSupCooChp + annotation (Dialog(tab="Operation point", group="CHP Unit")); + Modelica.Units.SI.Temperature meaTemSupCooChp "Measured temperatures at CHP units' coolant supply flow" - annotation(Dialog(tab="Operation point", - group="CHP Unit")); - Modelica.SIunits.VolumeFlowRate preVolFloHea + annotation (Dialog(tab="Operation point", group="CHP Unit")); + Modelica.Units.SI.VolumeFlowRate preVolFloHea "Prescribed coolant volume flow rate inside primary cooling circuit" - annotation (Dialog(tab="Operation point", - group="CHP Unit")); + annotation (Dialog(tab="Operation point", group="CHP Unit")); SpecificEmission calEmiCO2Chp "Calculated specific CO2 emissions of CHP units" annotation(Dialog(tab="Operation point", diff --git a/AixLib/Controls/Interfaces/FVUControlBus.mo b/AixLib/Controls/Interfaces/FVUControlBus.mo index 093c5e858a..7e420e018c 100644 --- a/AixLib/Controls/Interfaces/FVUControlBus.mo +++ b/AixLib/Controls/Interfaces/FVUControlBus.mo @@ -24,23 +24,23 @@ expandable connector FVUControlBus Real freshAirDamperOpening(min=0,max=1) "Relative opening of thefresh air damper (0..1)"; - Modelica.SIunits.ThermodynamicTemperature roomTemperature - "Room air temperature measurement"; + Modelica.Units.SI.ThermodynamicTemperature roomTemperature + "Room air temperature measurement"; - Modelica.SIunits.ThermodynamicTemperature outdoorTemperature - "Outdoor air temperature measurement"; + Modelica.Units.SI.ThermodynamicTemperature outdoorTemperature + "Outdoor air temperature measurement"; - Modelica.SIunits.ThermodynamicTemperature roomSetTemperature - "Room air set temperature measurement"; + Modelica.Units.SI.ThermodynamicTemperature roomSetTemperature + "Room air set temperature measurement"; Real co2Concentration(min=0) "CO2 concentration measurement in ppm"; - Modelica.SIunits.ThermodynamicTemperature mixTemperature - "Temperature measurement of the mixed circulation and fresh air streams"; + Modelica.Units.SI.ThermodynamicTemperature mixTemperature + "Temperature measurement of the mixed circulation and fresh air streams"; - Modelica.SIunits.ThermodynamicTemperature supplyTemperature - "Temperature measurement of the supply air streams"; + Modelica.Units.SI.ThermodynamicTemperature supplyTemperature + "Temperature measurement of the supply air streams"; diff --git a/AixLib/Controls/Interfaces/ModularSensorControlBus.mo b/AixLib/Controls/Interfaces/ModularSensorControlBus.mo index 3109d85cff..4f0ab1217e 100644 --- a/AixLib/Controls/Interfaces/ModularSensorControlBus.mo +++ b/AixLib/Controls/Interfaces/ModularSensorControlBus.mo @@ -24,93 +24,93 @@ expandable connector ModularSensorControlBus // Definition of variables describing expansion valves // - Modelica.SIunits.AbsolutePressure meaPreVal[nValSen] + Modelica.Units.SI.AbsolutePressure meaPreVal[nValSen] "Array of measured pressures at expansion valves' outlets" - annotation(Dialog(tab="Measurements",group="Expansion Valves")); - Modelica.SIunits.Temperature meaTemVal[nValSen] + annotation (Dialog(tab="Measurements", group="Expansion Valves")); + Modelica.Units.SI.Temperature meaTemVal[nValSen] "Array of measured temperatures at expansion valves' outlets" - annotation(Dialog(tab="Measurements",group="Expansion Valves")); - Modelica.SIunits.MassFlowRate meaMasFloVal[nValSen] + annotation (Dialog(tab="Measurements", group="Expansion Valves")); + Modelica.Units.SI.MassFlowRate meaMasFloVal[nValSen] "Array of measured mass flow rates at expansion valves' outlets" - annotation(Dialog(tab="Measurements",group="Expansion Valves")); + annotation (Dialog(tab="Measurements", group="Expansion Valves")); Real meaPhaVal[nValSen](unit="1") "Array of measured phases at expansion valves' outlets" annotation(Dialog(tab="Measurements",group="Expansion Valves")); // Definition of variables describing evaporators // - Modelica.SIunits.AbsolutePressure meaPreEva[nEvaSen] + Modelica.Units.SI.AbsolutePressure meaPreEva[nEvaSen] "Array of measured pressures at evaporators' outlets" - annotation(Dialog(tab="Measurements",group="Evaporators")); - Modelica.SIunits.Temperature meaTemEva[nEvaSen] + annotation (Dialog(tab="Measurements", group="Evaporators")); + Modelica.Units.SI.Temperature meaTemEva[nEvaSen] "Array of measured temperatures at evaporators' outlets" - annotation(Dialog(tab="Measurements",group="Evaporators")); - Modelica.SIunits.MassFlowRate meaMasFloEva[nEvaSen] + annotation (Dialog(tab="Measurements", group="Evaporators")); + Modelica.Units.SI.MassFlowRate meaMasFloEva[nEvaSen] "Array of measured mass flow rates at evaporators' outlets" - annotation(Dialog(tab="Measurements",group="Evaporators")); + annotation (Dialog(tab="Measurements", group="Evaporators")); Real meaPhaEva[nEvaSen](unit="1") "Array of measured phases at evaporators' outlets" annotation(Dialog(tab="Measurements",group="Evaporators")); // Definition of variables describing compressors // - Modelica.SIunits.AbsolutePressure meaPreCom[nComSen] + Modelica.Units.SI.AbsolutePressure meaPreCom[nComSen] "Array of measured pressures at compressors' outlets" - annotation(Dialog(tab="Measurements",group="Compressors")); - Modelica.SIunits.Temperature meaTemCom[nComSen] + annotation (Dialog(tab="Measurements", group="Compressors")); + Modelica.Units.SI.Temperature meaTemCom[nComSen] "Array of measured temperatures at compressors' outlets" - annotation(Dialog(tab="Measurements",group="Compressors")); - Modelica.SIunits.MassFlowRate meaMasFloCom[nComSen] + annotation (Dialog(tab="Measurements", group="Compressors")); + Modelica.Units.SI.MassFlowRate meaMasFloCom[nComSen] "Array of measured mass flow rates at compressors' outlets" - annotation(Dialog(tab="Measurements",group="Compressors")); + annotation (Dialog(tab="Measurements", group="Compressors")); Real meaPhaCom[nComSen](unit="1") "Array of measured phases at compressors' outlets" annotation(Dialog(tab="Measurements",group="Compressors")); // Definition of variables describing condensers // - Modelica.SIunits.AbsolutePressure meaPreCon[nConSen] + Modelica.Units.SI.AbsolutePressure meaPreCon[nConSen] "Array of measured pressures at expansion valves' outlets" - annotation(Dialog(tab="Measurements",group="Condensers")); - Modelica.SIunits.Temperature meaTemCon[nConSen] + annotation (Dialog(tab="Measurements", group="Condensers")); + Modelica.Units.SI.Temperature meaTemCon[nConSen] "Array of measured temperatures at expansion valves' outlets" - annotation(Dialog(tab="Measurements",group="Condensers")); - Modelica.SIunits.MassFlowRate meaMasFloCon[nConSen] + annotation (Dialog(tab="Measurements", group="Condensers")); + Modelica.Units.SI.MassFlowRate meaMasFloCon[nConSen] "Array of measured mass flow rates at expansion valves' outlets" - annotation(Dialog(tab="Measurements",group="Condensers")); + annotation (Dialog(tab="Measurements", group="Condensers")); Real meaPhaCon[nConSen](unit="1") "Array of measured phases at expansion valves' outlets" annotation(Dialog(tab="Measurements",group="Condensers")); // Definition of variables describing heat pumps sources // - Modelica.SIunits.AbsolutePressure meaPreEvaSou[nEvaSen] + Modelica.Units.SI.AbsolutePressure meaPreEvaSou[nEvaSen] "Array of measured pressures at source-sided evaporators' outlets" - annotation(Dialog(tab="Measurements",group="Sources")); - Modelica.SIunits.Temperature meaTemEvaSouInl[nEvaSen] + annotation (Dialog(tab="Measurements", group="Sources")); + Modelica.Units.SI.Temperature meaTemEvaSouInl[nEvaSen] "Array of measured temperatures at source-sided evaporators' inlets" - annotation(Dialog(tab="Measurements",group="Sources")); - Modelica.SIunits.Temperature meaTemEvaSouOut[nEvaSen] + annotation (Dialog(tab="Measurements", group="Sources")); + Modelica.Units.SI.Temperature meaTemEvaSouOut[nEvaSen] "Array of measured temperatures at source-sided evaporators' outlet" - annotation(Dialog(tab="Measurements",group="Sources")); - Modelica.SIunits.MassFlowRate meaMasFloEvaSou[nEvaSen] + annotation (Dialog(tab="Measurements", group="Sources")); + Modelica.Units.SI.MassFlowRate meaMasFloEvaSou[nEvaSen] "Array of measured mass flow rates source-sided at evaporators' outlets" - annotation(Dialog(tab="Measurements",group="Sources")); + annotation (Dialog(tab="Measurements", group="Sources")); // Definition of variables describing heat pumps sinks // - Modelica.SIunits.AbsolutePressure meaPreConSin[nConSen] + Modelica.Units.SI.AbsolutePressure meaPreConSin[nConSen] "Array of measured pressures at sink-sided expansion valves' outlets" - annotation(Dialog(tab="Measurements",group="Sinks")); - Modelica.SIunits.Temperature meaTemConSinInl[nConSen] + annotation (Dialog(tab="Measurements", group="Sinks")); + Modelica.Units.SI.Temperature meaTemConSinInl[nConSen] "Array of measured temperatures at sink-sided expansion valves' inlets" - annotation(Dialog(tab="Measurements",group="Sinks")); - Modelica.SIunits.Temperature meaTemConSinOut[nConSen] + annotation (Dialog(tab="Measurements", group="Sinks")); + Modelica.Units.SI.Temperature meaTemConSinOut[nConSen] "Array of measured temperatures at sink-sided expansion valves' outlets" - annotation(Dialog(tab="Measurements",group="Sinks")); - Modelica.SIunits.MassFlowRate meaMasFloConSin[nConSen] + annotation (Dialog(tab="Measurements", group="Sinks")); + Modelica.Units.SI.MassFlowRate meaMasFloConSin[nConSen] "Array of measured mass flow rates at sink-sided expansion valves' outlets" - annotation(Dialog(tab="Measurements",group="Sinks")); + annotation (Dialog(tab="Measurements", group="Sinks")); annotation (Documentation(revisions="

    • October 25, 2017, by Mirko Engelpracht:
      diff --git a/AixLib/Controls/Interfaces/VapourCompressionMachineControlBus.mo b/AixLib/Controls/Interfaces/VapourCompressionMachineControlBus.mo index e0453bf071..9cd30512d2 100644 --- a/AixLib/Controls/Interfaces/VapourCompressionMachineControlBus.mo +++ b/AixLib/Controls/Interfaces/VapourCompressionMachineControlBus.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.Interfaces; +within AixLib.Controls.Interfaces; expandable connector VapourCompressionMachineControlBus "Standard data bus with heat pump or chiller information" extends Modelica.Icons.SignalBus; @@ -12,31 +12,32 @@ extends Modelica.Icons.SignalBus; Boolean onOffMea "Measured value of device being on or off (relative speed greater than 0)" annotation (HideResult=false); - Modelica.SIunits.ThermodynamicTemperature TEvaInMea + Modelica.Units.SI.ThermodynamicTemperature TEvaInMea "Temperature of flow into evaporator"; - Modelica.SIunits.ThermodynamicTemperature TConInMea + Modelica.Units.SI.ThermodynamicTemperature TConInMea "Temperature of flow into condenser"; - Modelica.SIunits.ThermodynamicTemperature TEvaOutMea + Modelica.Units.SI.ThermodynamicTemperature TEvaOutMea "temperature of flow out of evaporator"; - Modelica.SIunits.ThermodynamicTemperature TConOutMea + Modelica.Units.SI.ThermodynamicTemperature TConOutMea "Temperature of flow out of condenser"; - Modelica.SIunits.Power PelMea "Total electrical active power"; + Modelica.Units.SI.Power PelMea "Total electrical active power"; - Modelica.SIunits.MassFlowRate m_flowEvaMea + Modelica.Units.SI.MassFlowRate m_flowEvaMea "Mass flow rate through evaporator"; - Modelica.SIunits.MassFlowRate m_flowConMea "Mass flow rate through condenser"; + Modelica.Units.SI.MassFlowRate m_flowConMea + "Mass flow rate through condenser"; Real CoPMea "Coefficient of performance"; - Modelica.SIunits.ThermodynamicTemperature TOdaMea "Outdoor air temperature"; - Modelica.SIunits.ThermodynamicTemperature TEvaAmbMea + Modelica.Units.SI.ThermodynamicTemperature TOdaMea "Outdoor air temperature"; + Modelica.Units.SI.ThermodynamicTemperature TEvaAmbMea "Ambient temperature on evaporator side"; - Modelica.SIunits.ThermodynamicTemperature TConAmbMea + Modelica.Units.SI.ThermodynamicTemperature TConAmbMea "Ambient temperature on condenser side"; Real iceFacMea(start=1) "Efficiency factor (0..1) to estimate influence of icing. 0 means no heat is transferred through heat exchanger (fully frozen). 1 means no icing/frosting." diff --git a/AixLib/Controls/SetPoints/Examples/OccupancySchedule.mo b/AixLib/Controls/SetPoints/Examples/OccupancySchedule.mo index 47c919e93f..81b0fcb9f0 100644 --- a/AixLib/Controls/SetPoints/Examples/OccupancySchedule.mo +++ b/AixLib/Controls/SetPoints/Examples/OccupancySchedule.mo @@ -10,21 +10,22 @@ model OccupancySchedule "Test model for occupancy schedule with look-ahead" __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Controls/SetPoints/Examples/OccupancySchedule.mos" "Simulate and plot"), Documentation(info=" -

      -Example that demonstrates the use of the occupancy schedule. -The figure below shows how the time until the next occupancy starts or ends -is decreased. The red line hits zero when the schedule indicates an occupied time, -and the blue line hits zero when the schedule indicates a non-occupied time. -

      -

      -\"Time -

      -", revisions=" -
        -
      • -November 21, 2011, by Michael Wetter:
        -Added documentation. -
      • -
      -")); +

      + Example that demonstrates the use of the occupancy schedule. + The figure below shows how the time until the next occupancy starts or ends + is decreased. The red line hits zero when the schedule indicates an occupied time, + and the blue line hits zero when the schedule indicates a non-occupied time. +

      +

      + \"Time +

      + ",revisions=" +
        +
      • + November 21, 2011, by Michael Wetter:
        + Added documentation. +
      • +
      + "), + __Dymola_LockedEditing="Model from IBPSA"); end OccupancySchedule; diff --git a/AixLib/Controls/SetPoints/Examples/SupplyReturnTemperatureReset.mo b/AixLib/Controls/SetPoints/Examples/SupplyReturnTemperatureReset.mo index a98e86e317..5425057512 100644 --- a/AixLib/Controls/SetPoints/Examples/SupplyReturnTemperatureReset.mo +++ b/AixLib/Controls/SetPoints/Examples/SupplyReturnTemperatureReset.mo @@ -45,29 +45,30 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Controls/SetPoints/Examples/SupplyReturnTemperatureReset.mos" "Simulate and plot"), Documentation(info=" -

      -Example that demonstrates the use of the hot water temperature reset -for a heating system. -The parameters of the block heaCur -are for a heating system with -60°C supply water temperature and -40°C return water temperature at -an outside temperature of --10°C and a room temperature of -20°C. The offset for the temperature reset is -8 Kelvin, i.e., above -12°C outside temperature, there is no heating load. -The figure below shows the computed supply and return water temperatures. -

      -

      -\"Supply -

      -", revisions=" -
        -
      • -November 21, 2011, by Michael Wetter:
        -Added documentation. -
      • -
      -")); +

      + Example that demonstrates the use of the hot water temperature reset + for a heating system. + The parameters of the block heaCur + are for a heating system with + 60°C supply water temperature and + 40°C return water temperature at + an outside temperature of + -10°C and a room temperature of + 20°C. The offset for the temperature reset is + 8 Kelvin, i.e., above + 12°C outside temperature, there is no heating load. + The figure below shows the computed supply and return water temperatures. +

      +

      + \"Supply +

      + ",revisions=" +
        +
      • + November 21, 2011, by Michael Wetter:
        + Added documentation. +
      • +
      + "), + __Dymola_LockedEditing="Model from IBPSA"); end SupplyReturnTemperatureReset; diff --git a/AixLib/Controls/SetPoints/Examples/Table.mo b/AixLib/Controls/SetPoints/Examples/Table.mo index ba5d73a1f6..5672083d0b 100644 --- a/AixLib/Controls/SetPoints/Examples/Table.mo +++ b/AixLib/Controls/SetPoints/Examples/Table.mo @@ -23,17 +23,18 @@ experiment(Tolerance=1e-6, StopTime=1.0), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Controls/SetPoints/Examples/Table.mos" "Simulate and plot"), Documentation(info=" -

      -Example that demonstrates the use of the block - -AixLib.Controls.SetPoints.Table. -

      -", revisions=" -
        -
      • -November 21, 2011, by Michael Wetter:
        -Added documentation. -
      • -
      -")); +

      + Example that demonstrates the use of the block + + AixLib.Controls.SetPoints.Table. +

      + ",revisions=" +
        +
      • + November 21, 2011, by Michael Wetter:
        + Added documentation. +
      • +
      + "), + __Dymola_LockedEditing="Model from IBPSA"); end Table; diff --git a/AixLib/Controls/SetPoints/Examples/package.mo b/AixLib/Controls/SetPoints/Examples/package.mo index ecb0ceb5be..6563839190 100644 --- a/AixLib/Controls/SetPoints/Examples/package.mo +++ b/AixLib/Controls/SetPoints/Examples/package.mo @@ -1,6 +1,7 @@ within AixLib.Controls.SetPoints; package Examples "Collection of models that illustrate model use and test models" extends Modelica.Icons.ExamplesPackage; + annotation (preferredView="info", Documentation(info="

      This package contains examples for the use of models that can be found in diff --git a/AixLib/Controls/SetPoints/Functions/HeatingCurveFunction.mo b/AixLib/Controls/SetPoints/Functions/HeatingCurveFunction.mo index ae356487b3..058f175af3 100644 --- a/AixLib/Controls/SetPoints/Functions/HeatingCurveFunction.mo +++ b/AixLib/Controls/SetPoints/Functions/HeatingCurveFunction.mo @@ -1,10 +1,10 @@ -within AixLib.Controls.SetPoints.Functions; +within AixLib.Controls.SetPoints.Functions; function HeatingCurveFunction "Linear function with a set temperature of 55degC at -20 degC outdoor air temperature" extends PartialBaseFct; - parameter Modelica.SIunits.TemperatureDifference TOffNig=10 + parameter Modelica.Units.SI.TemperatureDifference TOffNig=10 "Delta K for night mode of heating system"; - parameter Modelica.SIunits.ThermodynamicTemperature TDesign=328.15 + parameter Modelica.Units.SI.ThermodynamicTemperature TDesign=328.15 "Design temperature of heating system at -20 °C outside air temperature"; algorithm if isDay then diff --git a/AixLib/Controls/SetPoints/Functions/PartialBaseFct.mo b/AixLib/Controls/SetPoints/Functions/PartialBaseFct.mo index 9025d018d8..664afb3228 100644 --- a/AixLib/Controls/SetPoints/Functions/PartialBaseFct.mo +++ b/AixLib/Controls/SetPoints/Functions/PartialBaseFct.mo @@ -1,11 +1,13 @@ -within AixLib.Controls.SetPoints.Functions; +within AixLib.Controls.SetPoints.Functions; partial function PartialBaseFct "Base function of a heating curve" extends Modelica.Icons.Function; - input Modelica.SIunits.ThermodynamicTemperature T_oda "Outdoor air temperature"; - input Modelica.SIunits.ThermodynamicTemperature TRoom "Room temperature"; + input Modelica.Units.SI.ThermodynamicTemperature T_oda + "Outdoor air temperature"; + input Modelica.Units.SI.ThermodynamicTemperature TRoom "Room temperature"; input Boolean isDay "Boolean to evaulate if it is day or night"; - output Modelica.SIunits.ThermodynamicTemperature TSet "Set temperature for the heat generator"; + output Modelica.Units.SI.ThermodynamicTemperature TSet + "Set temperature for the heat generator"; annotation (Documentation(revisions="

      • diff --git a/AixLib/Controls/SetPoints/Functions/package.mo b/AixLib/Controls/SetPoints/Functions/package.mo index c4df7b040f..44316f18ac 100644 --- a/AixLib/Controls/SetPoints/Functions/package.mo +++ b/AixLib/Controls/SetPoints/Functions/package.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.SetPoints; +within AixLib.Controls.SetPoints; package Functions "Package with functions for pacakge AixLib.Controls.HeatPump" annotation (Documentation(revisions="
          diff --git a/AixLib/Controls/SetPoints/HeatingCurve.mo b/AixLib/Controls/SetPoints/HeatingCurve.mo index 9288422e15..f6cb78edf7 100644 --- a/AixLib/Controls/SetPoints/HeatingCurve.mo +++ b/AixLib/Controls/SetPoints/HeatingCurve.mo @@ -1,4 +1,4 @@ -within AixLib.Controls.SetPoints; +within AixLib.Controls.SetPoints; model HeatingCurve "Model of a heating curve" //General parameter Boolean use_tableData=true "Choose between tables or function to calculate TSet" annotation ( @@ -6,8 +6,9 @@ model HeatingCurve "Model of a heating curve" choice=true "Table Data", choice=false "Function", radioButtons=true)); - parameter Modelica.SIunits.ThermodynamicTemperature TOffset(displayUnit="K") = 0 - "Offset to heating curve temperature" annotation (Dialog(descriptionLabel = true)); + parameter Modelica.Units.SI.ThermodynamicTemperature TOffset(displayUnit="K") + = 0 "Offset to heating curve temperature" + annotation (Dialog(descriptionLabel=true)); //Function replaceable function HeatingCurveFunction = AixLib.Controls.SetPoints.Functions.PartialBaseFct "Function to calculate set temperature" annotation(Dialog(enable=not use_tableData), choicesAllMatching=True); @@ -21,8 +22,9 @@ model HeatingCurve "Model of a heating curve" //Dynamic room temperature parameter Boolean use_dynTRoom=true "If different room temperatures are required, set to true" annotation(choices(checkBox=true), Dialog( group="Dynamic room Temperature")); - parameter Modelica.SIunits.ThermodynamicTemperature TRoom_nominal=293.15 "Constant desired room temperature " - annotation (Dialog(group="Dynamic room Temperature",enable=not use_dynTRoom)); + parameter Modelica.Units.SI.ThermodynamicTemperature TRoom_nominal=293.15 + "Constant desired room temperature " annotation (Dialog(group= + "Dynamic room Temperature", enable=not use_dynTRoom)); //Day-Night Mode: parameter AixLib.Utilities.Time.Types.ZeroTime zerTim=AixLib.Utilities.Time.Types.ZeroTime.Custom "Enumeration for choosing how reference time (time = 0) should be defined" @@ -40,15 +42,17 @@ model HeatingCurve "Model of a heating curve" annotation (Placement(transformation(extent={{100,-10},{120,10}}))); protected - Modelica.Blocks.Tables.CombiTable2D tableDay( + Modelica.Blocks.Tables.CombiTable2Ds tableDay( final tableOnFile=false, final table=heatingCurveRecord.varFlowTempDay, - final smoothness=Modelica.Blocks.Types.Smoothness.LinearSegments) if use_tableData "Combi Table for day data"; + final smoothness=Modelica.Blocks.Types.Smoothness.LinearSegments) + if use_tableData "Combi Table for day data"; - Modelica.Blocks.Tables.CombiTable2D tableNight( + Modelica.Blocks.Tables.CombiTable2Ds tableNight( final tableOnFile=false, final table=heatingCurveRecord.varFlowTempNight, - final smoothness=Modelica.Blocks.Types.Smoothness.LinearSegments) if use_tableData "Combi Table for night data"; + final smoothness=Modelica.Blocks.Types.Smoothness.LinearSegments) + if use_tableData "Combi Table for night data"; Modelica.Blocks.Interfaces.RealOutput TSet_internal "Internal set temperature"; Modelica.Blocks.Sources.RealExpression TRoomExp(y=TRoom_nominal) "Real expression for room temperature"; diff --git a/AixLib/Controls/SetPoints/OccupancySchedule.mo b/AixLib/Controls/SetPoints/OccupancySchedule.mo index 7d1c8ce4b0..bbd53c9ecb 100644 --- a/AixLib/Controls/SetPoints/OccupancySchedule.mo +++ b/AixLib/Controls/SetPoints/OccupancySchedule.mo @@ -6,7 +6,7 @@ block OccupancySchedule "Occupancy schedule with look-ahead" "Occupancy table, each entry switching occupancy on or off"; parameter Boolean firstEntryOccupied = true "Set to true if first entry in occupancy denotes a changed from unoccupied to occupied"; - parameter Modelica.SIunits.Time period = 86400 "End time of periodicity"; + parameter Modelica.Units.SI.Time period=86400 "End time of periodicity"; Modelica.Blocks.Interfaces.RealOutput tNexNonOcc "Time until next non-occupancy" @@ -21,15 +21,15 @@ protected final parameter Integer nRow = size(occupancy,1) "Number of rows in the schedule"; - discrete Modelica.SIunits.Time tOcc "Time when next occupancy starts"; - discrete Modelica.SIunits.Time tNonOcc "Time when next non-occupancy starts"; - discrete Modelica.SIunits.Time tNext "Time of next switch in schedule"; + discrete Modelica.Units.SI.Time tOcc "Time when next occupancy starts"; + discrete Modelica.Units.SI.Time tNonOcc "Time when next non-occupancy starts"; + discrete Modelica.Units.SI.Time tNext "Time of next switch in schedule"; function getOutput "Get the next occupancy or non-occupancy outputs" extends Modelica.Icons.Function; - input Modelica.SIunits.Time t "Current model time"; - input Modelica.SIunits.Time period "Periodicity"; + input Modelica.Units.SI.Time t "Current model time"; + input Modelica.Units.SI.Time period "Periodicity"; input Real occupancy[nRow] "Occupancy table, each entry switching occupancy on or off"; input Boolean firstEntryOccupied @@ -37,11 +37,11 @@ protected input Integer nRow "Number of rows in the schedule"; - output Modelica.SIunits.Time tOcc "Time when next occupancy starts"; - output Modelica.SIunits.Time tNonOcc "Time when next non-occupancy starts"; + output Modelica.Units.SI.Time tOcc "Time when next occupancy starts"; + output Modelica.Units.SI.Time tNonOcc "Time when next non-occupancy starts"; output Boolean occupied "Outputs true if occupied at current time"; - output Modelica.SIunits.Time tNext "Time of next switch in schedule"; + output Modelica.Units.SI.Time tNext "Time of next switch in schedule"; protected Integer iPerSta @@ -163,79 +163,80 @@ equation color={0,0,255}), Text( extent={{34,74},{90,50}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="occupancy"), Text( extent={{32,16},{92,-16}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="non-occupancy"), Text( extent={{34,-44},{94,-76}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="occupied")}), defaultComponentName="occSch", Documentation(info=" -

          -This model outputs whether the building is currently occupied, -and how long it will take until the next time when the building -will be occupied or non-occupied. -The latter may be used, for example, to start a ventilation system -half an hour before occupancy starts in order to ventilate the room. -

          -

          -The occupancy is defined by a time schedule of the form -

          -
          -  occupancy = 3600*{7, 12, 14, 19}
          -
          -

          -This indicates that the occupancy is from 7:00 until 12:00 -and from 14:00 to 19:00. This will be repeated periodically. -The parameter periodicity defines the periodicity. -The period always starts at t=0 seconds. -

          -", revisions=" -
            -
          • -March 25, 2021, by Michael Wetter:
            -Integrated changes from Buildings for -AixLib, #1454. -
          • -
          • -February 26, 2021, by Michael Wetter:
            -Refactored implementation to use a function to compute the next time events.
            -This is a work-around for -Buildings, issue 2369. -
          • -
          • -October 30, 2017, by Michael Wetter:
            -Rewrote using equation rather than algorithm -and removed assertion.
            -This is for -issue 844. -
          • -
          • -September 11, 2012, by Michael Wetter:
            -Added pre operator in when clause and relaxed -tolerance in assert statement. -
          • -
          • -July 26, 2012, by Michael Wetter:
            -Fixed a bug that caused an error in the schedule if the simulation start time was negative or equal to the first entry in the schedule. -
          • -
          • -February 16, 2012, by Michael Wetter:
            -Removed parameter startTime. It was removed because startTime=0 -would imply that the schedule should not start for one day if the simulation were -to be started at t=-8760 seconds. -Fixed bug that prevented schedule to start when the simulation was started at a time that -is higher than endTime. -Renamed parameter endTime to period. -
          • -
          • -April 2, 2009, by Michael Wetter:
            -First implementation. -
          • -
          -")); +

          + This model outputs whether the building is currently occupied, + and how long it will take until the next time when the building + will be occupied or non-occupied. + The latter may be used, for example, to start a ventilation system + half an hour before occupancy starts in order to ventilate the room. +

          +

          + The occupancy is defined by a time schedule of the form +

          +
          +   occupancy = 3600*{7, 12, 14, 19}
          + 
          +

          + This indicates that the occupancy is from 7:00 until 12:00 + and from 14:00 to 19:00. This will be repeated periodically. + The parameter periodicity defines the periodicity. + The period always starts at t=0 seconds. +

          + ",revisions=" +
            +
          • + March 25, 2021, by Michael Wetter:
            + Integrated changes from Buildings for + IBPSA, #1454. +
          • +
          • + February 26, 2021, by Michael Wetter:
            + Refactored implementation to use a function to compute the next time events.
            + This is a work-around for + Buildings, issue 2369. +
          • +
          • + October 30, 2017, by Michael Wetter:
            + Rewrote using equation rather than algorithm + and removed assertion.
            + This is for + issue 844. +
          • +
          • + September 11, 2012, by Michael Wetter:
            + Added pre operator in when clause and relaxed + tolerance in assert statement. +
          • +
          • + July 26, 2012, by Michael Wetter:
            + Fixed a bug that caused an error in the schedule if the simulation start time was negative or equal to the first entry in the schedule. +
          • +
          • + February 16, 2012, by Michael Wetter:
            + Removed parameter startTime. It was removed because startTime=0 + would imply that the schedule should not start for one day if the simulation were + to be started at t=-8760 seconds. + Fixed bug that prevented schedule to start when the simulation was started at a time that + is higher than endTime. + Renamed parameter endTime to period. +
          • +
          • + April 2, 2009, by Michael Wetter:
            + First implementation. +
          • +
          + "), + __Dymola_LockedEditing="Model from IBPSA"); end OccupancySchedule; diff --git a/AixLib/Controls/SetPoints/SupplyReturnTemperatureReset.mo b/AixLib/Controls/SetPoints/SupplyReturnTemperatureReset.mo index 8cd5cdd3ff..91444cbd06 100644 --- a/AixLib/Controls/SetPoints/SupplyReturnTemperatureReset.mo +++ b/AixLib/Controls/SetPoints/SupplyReturnTemperatureReset.mo @@ -4,27 +4,26 @@ block SupplyReturnTemperatureReset extends Modelica.Blocks.Icons.Block; parameter Real m = 1.3 "Exponent for heat transfer"; - parameter Modelica.SIunits.Temperature TSup_nominal "Supply temperature" + parameter Modelica.Units.SI.Temperature TSup_nominal "Supply temperature" annotation (Dialog(group="Nominal conditions")); - parameter Modelica.SIunits.Temperature TRet_nominal "Return temperature" + parameter Modelica.Units.SI.Temperature TRet_nominal "Return temperature" annotation (Dialog(group="Nominal conditions")); - parameter Modelica.SIunits.Temperature TRoo_nominal = 293.15 - "Room temperature" - annotation (Dialog(group="Nominal conditions")); - parameter Modelica.SIunits.Temperature TOut_nominal "Outside temperature" + parameter Modelica.Units.SI.Temperature TRoo_nominal=293.15 + "Room temperature" annotation (Dialog(group="Nominal conditions")); + parameter Modelica.Units.SI.Temperature TOut_nominal "Outside temperature" annotation (Dialog(group="Nominal conditions")); parameter Boolean use_TRoo_in = false "Get the room temperature set point from the input connector" annotation(Evaluate=true, HideResult=true); - parameter Modelica.SIunits.Temperature TRoo = 293.15 + parameter Modelica.Units.SI.Temperature TRoo=293.15 "Fixed value of room temperature set point" - annotation(Dialog(enable = not use_TRoo_in)); - parameter Modelica.SIunits.TemperatureDifference dTOutHeaBal(displayUnit="K") = 8 - "Offset for heating curve"; + annotation (Dialog(enable=not use_TRoo_in)); + parameter Modelica.Units.SI.TemperatureDifference dTOutHeaBal(displayUnit="K")= + 8 "Offset for heating curve"; Modelica.Blocks.Interfaces.RealInput TRoo_in(final quantity="ThermodynamicTemperature", - final unit = "K", displayUnit = "degC", min=0) if - use_TRoo_in "Room air temperature set point" + final unit = "K", displayUnit = "degC", min=0) + if use_TRoo_in "Room air temperature set point" annotation (Placement(transformation(extent={{-139,-80},{-99,-40}}))); Modelica.Blocks.Interfaces.RealInput TOut(final quantity="ThermodynamicTemperature", @@ -45,9 +44,10 @@ protected final unit = "K", displayUnit = "degC", min=0) "Needed to connect to conditional connector"; Real qRel "Relative heating load = Q_flow/Q_flow_nominal"; - Modelica.SIunits.Temperature TOutOffSet + Modelica.Units.SI.Temperature TOutOffSet "Effective outside temperature for heat transfer (takes into account room heat gains)"; - parameter Modelica.SIunits.Temperature TOutOffSet_nominal = TOut_nominal + dTOutHeaBal + parameter Modelica.Units.SI.Temperature TOutOffSet_nominal=TOut_nominal + + dTOutHeaBal "Effective outside temperature for heat transfer at nominal conditions (takes into account room heat gains)"; equation @@ -65,53 +65,53 @@ equation annotation ( defaultComponentName="watRes", Documentation(info=" -

          -This block computes the set point temperatures for the -supply and return water temperature. -The set point for the room air temperature can either be specified -by a parameter, or it can be an input to the model. The latter allows -to use this model with systems that have night set back. -

          -

          -If used to reset the temperature in a heating system, -the parameter dTOutHeaBal can be used to shift the heating curve -to take into account that heat gains from solar, equipment and people -make up for some of the transmission losses. -For example, in energy efficient houses, the heating may not be switched on if -the outside air temperature is greater than -12°C, even if a room temperature of 20°C is required. -In such a situation, set dTOutHeaBal=20-12=8 Kelvin to -shift the heating curve. -

          -", revisions=" -
            -
          • -January 03, 2020, by Jianjun Hu:
            -Changed name from HotWaterTemperatureReset to -SupplyReturnTemperatureReset.
            -This is for -#1273. -
          • -
          • -May 29, 2014, by Michael Wetter:
            -Removed undesirable annotation Evaluate=true. -
          • -
          • -February 13, 2013, by Michael Wetter:
            -Corrected error that led to wrong results if the room air temperature is -different from its nominal value TRoo_nominal. -See ticket #74. -
          • -
          • -November 21, 2011, by Michael Wetter:
            -Improved documentation. -
          • -
          • -February 5, 2009 by Michael Wetter:
            -First implementation. -
          • -
          -"), Icon(graphics={ +

          + This block computes the set point temperatures for the + supply and return water temperature. + The set point for the room air temperature can either be specified + by a parameter, or it can be an input to the model. The latter allows + to use this model with systems that have night set back. +

          +

          + If used to reset the temperature in a heating system, + the parameter dTOutHeaBal can be used to shift the heating curve + to take into account that heat gains from solar, equipment and people + make up for some of the transmission losses. + For example, in energy efficient houses, the heating may not be switched on if + the outside air temperature is greater than + 12°C, even if a room temperature of 20°C is required. + In such a situation, set dTOutHeaBal=20-12=8 Kelvin to + shift the heating curve. +

          + ",revisions=" +
            +
          • + January 03, 2020, by Jianjun Hu:
            + Changed name from HotWaterTemperatureReset to + SupplyReturnTemperatureReset.
            + This is for + #1273. +
          • +
          • + May 29, 2014, by Michael Wetter:
            + Removed undesirable annotation Evaluate=true. +
          • +
          • + February 13, 2013, by Michael Wetter:
            + Corrected error that led to wrong results if the room air temperature is + different from its nominal value TRoo_nominal. + See ticket #74. +
          • +
          • + November 21, 2011, by Michael Wetter:
            + Improved documentation. +
          • +
          • + February 5, 2009 by Michael Wetter:
            + First implementation. +
          • +
          + "),Icon(graphics={ Polygon( points={{90,-82},{68,-74},{68,-90},{90,-82}}, lineColor={192,192,192}, @@ -134,19 +134,20 @@ First implementation. smooth=Smooth.Bezier), Text( extent={{-152,120},{-102,70}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="TOut"), Text( visible=use_TRoo_in, extent={{-152,-4},{-102,-54}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="TRoo"), Text( extent={{40,86},{90,36}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="TSup"), Text( extent={{42,-30},{92,-80}}, - lineColor={0,0,127}, - textString="TRet")})); + textColor={0,0,127}, + textString="TRet")}), + __Dymola_LockedEditing="Model from IBPSA"); end SupplyReturnTemperatureReset; diff --git a/AixLib/Controls/SetPoints/Table.mo b/AixLib/Controls/SetPoints/Table.mo index 86d080bc84..055c7bc170 100644 --- a/AixLib/Controls/SetPoints/Table.mo +++ b/AixLib/Controls/SetPoints/Table.mo @@ -16,14 +16,13 @@ protected size(table,1) "Number of rows"; final parameter Real[nRow,2] offsetVector = [zeros(nRow), offset*ones(nRow)] "Vector to take offset of output signal into account"; - Modelica.Blocks.Tables.CombiTable1D tab( - tableOnFile=false, - final table= (if constantExtrapolation then - cat(1, [table[1,1]-1, table[1,2]], - table, - [table[end,1]+1, table[end,2]]) else - table) - +offsetVector) "Table used for interpolation" + Modelica.Blocks.Tables.CombiTable1Dv tab(tableOnFile=false, final table=(if + constantExtrapolation then cat( + 1, + [table[1, 1] - 1,table[1, 2]], + table, + [table[end, 1] + 1,table[end, 2]]) else table) + offsetVector) + "Table used for interpolation" annotation (Placement(transformation(extent={{-20,-10},{2,10}}))); equation connect(u, tab.u[1]) annotation (Line( @@ -37,61 +36,61 @@ equation annotation ( defaultComponentName="tab", Documentation(info=" -

          -This block can be used to schedule a set-point by using piecewise linear functions. -For example, the instances -

          -
          -AixLib.Controls.SetPoints.Table tabLinExt(constantExtrapolation=false,
          -                                             table=[20, 0.0;
          -                                                    22, 0.5;
          -                                                    25, 0.5;
          -                                                    26, 1.0]);
          -AixLib.Controls.SetPoints.Table tabConExt(constantExtrapolation=true,
          -                                             table=[20, 0.0;
          -                                                    22, 0.5;
          -                                                    25, 0.5;
          -                                                    26, 1.0]);
          -
          -

          -will cause the following output: -

          -

          -\"Table -

          -

          -For the default setting constantExtrapolation=true, the -block outputs -y=y1+offset for u ≤ u1, and -y=yMax+offset for u ≥ uMax. -Otherwise, the table is linearly extrapolated with a constant derivative. -

          -

          -Note that the first column must be strictly increasing. -

          -", +

          + This block can be used to schedule a set-point by using piecewise linear functions. + For example, the instances +

          +
          + AixLib.Controls.SetPoints.Table tabLinExt(constantExtrapolation=false,
          +                                              table=[20, 0.0;
          +                                                     22, 0.5;
          +                                                     25, 0.5;
          +                                                     26, 1.0]);
          + AixLib.Controls.SetPoints.Table tabConExt(constantExtrapolation=true,
          +                                              table=[20, 0.0;
          +                                                     22, 0.5;
          +                                                     25, 0.5;
          +                                                     26, 1.0]);
          + 
          +

          + will cause the following output: +

          +

          + \"Table +

          +

          + For the default setting constantExtrapolation=true, the + block outputs + y=y1+offset for u ≤ u1, and + y=yMax+offset for u ≥ uMax. + Otherwise, the table is linearly extrapolated with a constant derivative. +

          +

          + Note that the first column must be strictly increasing. +

          + ", revisions=" -
            -
          • -August 30, 2016, by Michael Wetter:
            -Changed protected final parameter nCol to nRow.
            -This is for -issue 555. -
          • -
          • -April 5, 2011, by Michael Wetter:
            -Fixed wrong table declaration. -
          • -
          • -July 13, 2010, by Michael Wetter:
            -First implementation. -
          • -
          -"), +
            +
          • + August 30, 2016, by Michael Wetter:
            + Changed protected final parameter nCol to nRow.
            + This is for + issue 555. +
          • +
          • + April 5, 2011, by Michael Wetter:
            + Fixed wrong table declaration. +
          • +
          • + July 13, 2010, by Michael Wetter:
            + First implementation. +
          • +
          + "), Icon(graphics={ Text( extent={{-78,-45},{-40,-56}}, - lineColor={0,0,0}, + textColor={0,0,0}, textString="offset"), Line( points={{-42,-24},{-42,-74}}, @@ -105,7 +104,7 @@ First implementation. Line(points={{-82,64},{-82,-84}}, color={95,95,95}), Text( extent={{-80,88},{-39,68}}, - lineColor={0,0,0}, + textColor={0,0,0}, textString="y"), Polygon( points={{-82,86},{-88,64},{-76,64},{-82,86}}, @@ -120,7 +119,7 @@ First implementation. Line(points={{-92,-74},{80,-74}}, color={95,95,95}), Text( extent={{68,-84},{92,-95}}, - lineColor={0,0,0}, + textColor={0,0,0}, textString="u"), Polygon( points={{-42,-24},{-44,-34},{-39,-34},{-42,-24}}, @@ -135,5 +134,6 @@ First implementation. Line( points={{26,24},{77,24}}, color={0,0,255}, - thickness=0.5)})); + thickness=0.5)}), + __Dymola_LockedEditing="Model from IBPSA"); end Table; diff --git a/AixLib/Controls/SetPoints/Validation/OccupancyScheduleNegativeStartTime.mo b/AixLib/Controls/SetPoints/Validation/OccupancyScheduleNegativeStartTime.mo index e52576c360..25b8016f2c 100644 --- a/AixLib/Controls/SetPoints/Validation/OccupancyScheduleNegativeStartTime.mo +++ b/AixLib/Controls/SetPoints/Validation/OccupancyScheduleNegativeStartTime.mo @@ -18,16 +18,17 @@ model OccupancyScheduleNegativeStartTime __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Controls/SetPoints/Validation/OccupancyScheduleNegativeStartTime.mos" "Simulate and plot"), Documentation(info=" -

          -Example that validates the occupancy schedule -for a negative start time. -

          -", revisions=" -
            -
          • -October 30, 2017, by Michael Wetter:
            -First implementation. -
          • -
          -")); +

          + Example that validates the occupancy schedule + for a negative start time. +

          + ",revisions=" +
            +
          • + October 30, 2017, by Michael Wetter:
            + First implementation. +
          • +
          + "), + __Dymola_LockedEditing="Model from IBPSA"); end OccupancyScheduleNegativeStartTime; diff --git a/AixLib/Controls/SetPoints/Validation/OccupancySchedulePositiveStartTime.mo b/AixLib/Controls/SetPoints/Validation/OccupancySchedulePositiveStartTime.mo index f17dbf5632..b0423ba34a 100644 --- a/AixLib/Controls/SetPoints/Validation/OccupancySchedulePositiveStartTime.mo +++ b/AixLib/Controls/SetPoints/Validation/OccupancySchedulePositiveStartTime.mo @@ -9,17 +9,17 @@ model OccupancySchedulePositiveStartTime __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Controls/SetPoints/Validation/OccupancySchedulePositiveStartTime.mos" "Simulate and plot"), Documentation(info=" -

          -Example that validates the occupancy schedule -for a positive start time. -

          -", revisions=" -
            -
          • -October 30, 2017, by Michael Wetter:
            -First implementation. -
          • -
          -")); - +

          + Example that validates the occupancy schedule + for a positive start time. +

          + ",revisions=" +
            +
          • + October 30, 2017, by Michael Wetter:
            + First implementation. +
          • +
          + "), + __Dymola_LockedEditing="Model from IBPSA"); end OccupancySchedulePositiveStartTime; diff --git a/AixLib/Controls/SetPoints/package.mo b/AixLib/Controls/SetPoints/package.mo index eaa4fa3051..f4b5079d76 100644 --- a/AixLib/Controls/SetPoints/package.mo +++ b/AixLib/Controls/SetPoints/package.mo @@ -1,6 +1,7 @@ within AixLib.Controls; package SetPoints "Package with models for control set points" extends Modelica.Icons.VariantsPackage; + annotation (preferredView="info", Documentation(info=" This package contains component models to compute set points of control systems. For additional models, see also diff --git a/AixLib/Controls/VentilationController/BaseClasses/DEMA.mo b/AixLib/Controls/VentilationController/BaseClasses/DEMA.mo index 19fea76806..c01a80646c 100644 --- a/AixLib/Controls/VentilationController/BaseClasses/DEMA.mo +++ b/AixLib/Controls/VentilationController/BaseClasses/DEMA.mo @@ -16,8 +16,8 @@ protected annotation (Placement(transformation(extent={{60,-10},{80,10}}, rotation=0))); public - parameter Modelica.SIunits.Time period=86400*4; - parameter Modelica.SIunits.Time sampleTime=86400; + parameter Modelica.Units.SI.Time period=86400*4; + parameter Modelica.Units.SI.Time sampleTime=86400; parameter Real ystart=279.15 "Start value of EMA"; protected Modelica.Blocks.Continuous.CriticalDamping ExpAVG1( diff --git a/AixLib/Controls/VentilationController/BaseClasses/OptimalTempDeCarliHumidity.mo b/AixLib/Controls/VentilationController/BaseClasses/OptimalTempDeCarliHumidity.mo index 24f794ef8e..38196bc180 100644 --- a/AixLib/Controls/VentilationController/BaseClasses/OptimalTempDeCarliHumidity.mo +++ b/AixLib/Controls/VentilationController/BaseClasses/OptimalTempDeCarliHumidity.mo @@ -2,18 +2,18 @@ within AixLib.Controls.VentilationController.BaseClasses; model OptimalTempDeCarliHumidity "optimal operative Temperature according to Fanger and deCarli model including humidity evaluation" - import Modelica.SIunits.Conversions.from_degC; - import Modelica.SIunits.Conversions.to_degC; + import Modelica.Units.Conversions.from_degC; + import Modelica.Units.Conversions.to_degC; extends Modelica.Blocks.Interfaces.MIMO(nin=2, nout=3); // u is 1. ambient temperature and 2. relative humidity; y is Min and max temperatures according to input temperature - parameter Modelica.SIunits.TemperatureDifference cat=2 + parameter Modelica.Units.SI.TemperatureDifference cat=2 "offset for quality category. cat I: 1 K, cat. II: 2 K, cat. III: 3 K."; - Modelica.SIunits.ThermodynamicTemperature Topt; + Modelica.Units.SI.ThermodynamicTemperature Topt; protected - parameter Modelica.SIunits.Temperature Tclomax=from_degC(0) + parameter Modelica.Units.SI.Temperature Tclomax=from_degC(0) "mean outdoor air temperature when max clo value of 1.0 will be reached"; - parameter Modelica.SIunits.Temperature Tclomin=from_degC(27.778) + parameter Modelica.Units.SI.Temperature Tclomin=from_degC(27.778) "mean outdoor air temperature when min clo value of 0.5 will be reached"; equation diff --git a/AixLib/Controls/package.mo b/AixLib/Controls/package.mo index 5ccc75dcb0..a3fd901085 100644 --- a/AixLib/Controls/package.mo +++ b/AixLib/Controls/package.mo @@ -1,6 +1,7 @@ within AixLib; package Controls "Package with models for controls" extends Modelica.Icons.Package; + annotation ( preferredView="info", Documentation(info=" This package contains component models for controls. diff --git a/AixLib/DataBase/ActiveWalls/ActiveWallBaseDataDefinition.mo b/AixLib/DataBase/ActiveWalls/ActiveWallBaseDataDefinition.mo index 91650eab9c..a1a0b406bb 100644 --- a/AixLib/DataBase/ActiveWalls/ActiveWallBaseDataDefinition.mo +++ b/AixLib/DataBase/ActiveWalls/ActiveWallBaseDataDefinition.mo @@ -1,14 +1,19 @@ within AixLib.DataBase.ActiveWalls; record ActiveWallBaseDataDefinition "Base data definition for active walls" extends Modelica.Icons.Record; -parameter Modelica.SIunits.Temperature Temp_nom[3] "Nominal Temperatures T_flow, T_return, T_room / air "; -parameter Modelica.SIunits.HeatFlux q_dot_nom "nominal Power per square meter"; -parameter Modelica.SIunits.CoefficientOfHeatTransfer k_isolation "k_isolation of whole FH Layer"; -parameter Modelica.SIunits.CoefficientOfHeatTransfer k_top "Heat transfer coefficient for layers above tubes"; -parameter Modelica.SIunits.CoefficientOfHeatTransfer k_down "Heat transfer coefficient for layers underneath tubes"; + parameter Modelica.Units.SI.Temperature Temp_nom[3] + "Nominal Temperatures T_flow, T_return, T_room / air "; + parameter Modelica.Units.SI.HeatFlux q_dot_nom + "nominal Power per square meter"; + parameter Modelica.Units.SI.CoefficientOfHeatTransfer k_isolation + "k_isolation of whole FH Layer"; + parameter Modelica.Units.SI.CoefficientOfHeatTransfer k_top + "Heat transfer coefficient for layers above tubes"; + parameter Modelica.Units.SI.CoefficientOfHeatTransfer k_down + "Heat transfer coefficient for layers underneath tubes"; parameter Real VolumeWaterPerMeter(unit="l/m") "Water volume"; -parameter Modelica.SIunits.Length Spacing "Spacing of Pipe"; -parameter Modelica.SIunits.Emissivity eps "Emissivity of Floor"; + parameter Modelica.Units.SI.Length Spacing "Spacing of Pipe"; + parameter Modelica.Units.SI.Emissivity eps "Emissivity of Floor"; parameter AixLib.Fluid.HeatExchangers.ActiveWalls.BaseClasses.HeatCapacityPerArea C_ActivatedElement = 50000; parameter Real c_top_ratio; parameter Real PressureDropExponent; diff --git a/AixLib/DataBase/ActiveWalls/JocoKlimaBodenTOP2000_Parkett.mo b/AixLib/DataBase/ActiveWalls/JocoKlimaBodenTOP2000_Parkett.mo index 0ce5ad8844..57606f1de8 100644 --- a/AixLib/DataBase/ActiveWalls/JocoKlimaBodenTOP2000_Parkett.mo +++ b/AixLib/DataBase/ActiveWalls/JocoKlimaBodenTOP2000_Parkett.mo @@ -2,12 +2,12 @@ within AixLib.DataBase.ActiveWalls; record JocoKlimaBodenTOP2000_Parkett "Floor Heating Klima Boden TOP 2000 by Joco with parquet" -extends ActiveWallBaseDataDefinition( - Temp_nom=Modelica.SIunits.Conversions.from_degC({40,35,20}), + extends ActiveWallBaseDataDefinition( + Temp_nom=Modelica.Units.Conversions.from_degC({40,35,20}), q_dot_nom=80, k_isolation=1.25, - k_top=q_dot_nom/AixLib.Fluid.HeatExchangers.ActiveWalls.BaseClasses.logDT( - {Temp_nom[1],Temp_nom[2],(q_dot_nom/8.92)^(1/1.1) + Temp_nom[3]}), + k_top=q_dot_nom/AixLib.Fluid.HeatExchangers.ActiveWalls.BaseClasses.logDT({ + Temp_nom[1],Temp_nom[2],(q_dot_nom/8.92)^(1/1.1) + Temp_nom[3]}), k_down=(k_isolation^(-1) - k_top^(-1))^(-1), VolumeWaterPerMeter=0.13, Spacing=0.25, diff --git a/AixLib/DataBase/ActiveWalls/UponorComfortPanelHL_Cooling.mo b/AixLib/DataBase/ActiveWalls/UponorComfortPanelHL_Cooling.mo index 6f583a6e4a..6bd5d485a1 100644 --- a/AixLib/DataBase/ActiveWalls/UponorComfortPanelHL_Cooling.mo +++ b/AixLib/DataBase/ActiveWalls/UponorComfortPanelHL_Cooling.mo @@ -1,13 +1,13 @@ -within AixLib.DataBase.ActiveWalls; +within AixLib.DataBase.ActiveWalls; record UponorComfortPanelHL_Cooling "Ceiling cooling from Uponor Comfort panel HL" -extends ActiveWallBaseDataDefinition( - Temp_nom=Modelica.SIunits.Conversions.from_degC({16,20,26}), + extends ActiveWallBaseDataDefinition( + Temp_nom=Modelica.Units.Conversions.from_degC({16,20,26}), q_dot_nom=74, k_isolation=0.38, - k_top=q_dot_nom/AixLib.Fluid.HeatExchangers.ActiveWalls.BaseClasses.logDT( - {Temp_nom[1],Temp_nom[2],(q_dot_nom/8.92)^(1/1.1) + Temp_nom[3]}), + k_top=q_dot_nom/AixLib.Fluid.HeatExchangers.ActiveWalls.BaseClasses.logDT({ + Temp_nom[1],Temp_nom[2],(q_dot_nom/8.92)^(1/1.1) + Temp_nom[3]}), k_down=(k_isolation^(-1) - k_top^(-1))^(-1), VolumeWaterPerMeter=0.03848, Spacing=0.10, diff --git a/AixLib/DataBase/ActiveWalls/UponorComfortPanelHL_Heating.mo b/AixLib/DataBase/ActiveWalls/UponorComfortPanelHL_Heating.mo index 614519046b..5fdc63d168 100644 --- a/AixLib/DataBase/ActiveWalls/UponorComfortPanelHL_Heating.mo +++ b/AixLib/DataBase/ActiveWalls/UponorComfortPanelHL_Heating.mo @@ -1,13 +1,13 @@ -within AixLib.DataBase.ActiveWalls; +within AixLib.DataBase.ActiveWalls; record UponorComfortPanelHL_Heating "Ceiling heating from Uponor Comfort panel HL" -extends ActiveWallBaseDataDefinition( - Temp_nom=Modelica.SIunits.Conversions.from_degC({40,30,20}), + extends ActiveWallBaseDataDefinition( + Temp_nom=Modelica.Units.Conversions.from_degC({40,30,20}), q_dot_nom=100, k_isolation=0.38, - k_top=q_dot_nom/AixLib.Fluid.HeatExchangers.ActiveWalls.BaseClasses.logDT( - {Temp_nom[1],Temp_nom[2],(q_dot_nom/8.92)^(1/1.1) + Temp_nom[3]}), + k_top=q_dot_nom/AixLib.Fluid.HeatExchangers.ActiveWalls.BaseClasses.logDT({ + Temp_nom[1],Temp_nom[2],(q_dot_nom/8.92)^(1/1.1) + Temp_nom[3]}), k_down=(k_isolation^(-1) - k_top^(-1))^(-1), VolumeWaterPerMeter=0.03848, Spacing=0.10, diff --git a/AixLib/DataBase/Boiler/DayNightMode/HeatingCurvesDayNightBaseDataDefinition.mo b/AixLib/DataBase/Boiler/DayNightMode/HeatingCurvesDayNightBaseDataDefinition.mo index 815ce7c0bb..933166d5bd 100644 --- a/AixLib/DataBase/Boiler/DayNightMode/HeatingCurvesDayNightBaseDataDefinition.mo +++ b/AixLib/DataBase/Boiler/DayNightMode/HeatingCurvesDayNightBaseDataDefinition.mo @@ -2,8 +2,8 @@ within AixLib.DataBase.Boiler.DayNightMode; record HeatingCurvesDayNightBaseDataDefinition "Base data definition for heating curves for Day and Night" extends Modelica.Icons.Record; -import SI = Modelica.SIunits; -import SIconv = Modelica.SIunits.Conversions.NonSIunits; +import Modelica.Units.SI; +import SIconv = Modelica.Units.NonSI; parameter String name "Name of data set"; parameter Real varFlowTempDay[:,:] "Variable flow temperature during day time"; diff --git a/AixLib/DataBase/Boiler/DayNightMode/HeatingCurves_Vitotronic_Day23_Night10.mo b/AixLib/DataBase/Boiler/DayNightMode/HeatingCurves_Vitotronic_Day23_Night10.mo index 61292bbe10..d5a8e5e551 100644 --- a/AixLib/DataBase/Boiler/DayNightMode/HeatingCurves_Vitotronic_Day23_Night10.mo +++ b/AixLib/DataBase/Boiler/DayNightMode/HeatingCurves_Vitotronic_Day23_Night10.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Boiler.DayNightMode; +within AixLib.DataBase.Boiler.DayNightMode; record HeatingCurves_Vitotronic_Day23_Night10 "Heating Curves for Vitotronic Controller, TsetDay = 23degC, TsetNight = 10degC " extends HeatingCurvesDayNightBaseDataDefinition( diff --git a/AixLib/DataBase/Boiler/DayNightMode/HeatingCurves_Vitotronic_Day25_Night10.mo b/AixLib/DataBase/Boiler/DayNightMode/HeatingCurves_Vitotronic_Day25_Night10.mo index 2f4e01efaa..d608edf57b 100644 --- a/AixLib/DataBase/Boiler/DayNightMode/HeatingCurves_Vitotronic_Day25_Night10.mo +++ b/AixLib/DataBase/Boiler/DayNightMode/HeatingCurves_Vitotronic_Day25_Night10.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Boiler.DayNightMode; +within AixLib.DataBase.Boiler.DayNightMode; record HeatingCurves_Vitotronic_Day25_Night10 "Heating Curves for Vitotronic Controller, TsetDay = 25degC, TsetNight = 10degC " extends HeatingCurvesDayNightBaseDataDefinition( diff --git a/AixLib/DataBase/Boiler/General/BoilerTwoPointBaseDataDefinition.mo b/AixLib/DataBase/Boiler/General/BoilerTwoPointBaseDataDefinition.mo index a3aaa5fa4b..2737190e3a 100644 --- a/AixLib/DataBase/Boiler/General/BoilerTwoPointBaseDataDefinition.mo +++ b/AixLib/DataBase/Boiler/General/BoilerTwoPointBaseDataDefinition.mo @@ -2,7 +2,7 @@ within AixLib.DataBase.Boiler.General; record BoilerTwoPointBaseDataDefinition "Basic data for boiler with two point characteristic" extends Modelica.Icons.Record; - import SI = Modelica.SIunits; + import Modelica.Units.SI; parameter String name "Name of boiler"; diff --git a/AixLib/DataBase/Boiler/General/Boiler_Vitocrossal200_311kW.mo b/AixLib/DataBase/Boiler/General/Boiler_Vitocrossal200_311kW.mo index d7d4ccd736..9ddcdea1d6 100644 --- a/AixLib/DataBase/Boiler/General/Boiler_Vitocrossal200_311kW.mo +++ b/AixLib/DataBase/Boiler/General/Boiler_Vitocrossal200_311kW.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Boiler.General; +within AixLib.DataBase.Boiler.General; record Boiler_Vitocrossal200_311kW "Gas-fired condensing boiler Viessmann Vitocrossal200 311kW" extends BoilerTwoPointBaseDataDefinition( diff --git a/AixLib/DataBase/Boiler/WorkLoad/Buderus_GB202_40_30.mo b/AixLib/DataBase/Boiler/WorkLoad/Buderus_GB202_40_30.mo index a9e40a3acf..a30367c043 100644 --- a/AixLib/DataBase/Boiler/WorkLoad/Buderus_GB202_40_30.mo +++ b/AixLib/DataBase/Boiler/WorkLoad/Buderus_GB202_40_30.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Boiler.WorkLoad; +within AixLib.DataBase.Boiler.WorkLoad; record Buderus_GB202_40_30 "Buderus Logano Plus GB202 - Condensing Boiler - 40/30degC" extends WorkLoadBaseDataDefinition( diff --git a/AixLib/DataBase/Boiler/WorkLoad/Buderus_GB202_75_60.mo b/AixLib/DataBase/Boiler/WorkLoad/Buderus_GB202_75_60.mo index 23c0597f50..93e6db9d80 100644 --- a/AixLib/DataBase/Boiler/WorkLoad/Buderus_GB202_75_60.mo +++ b/AixLib/DataBase/Boiler/WorkLoad/Buderus_GB202_75_60.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Boiler.WorkLoad; +within AixLib.DataBase.Boiler.WorkLoad; record Buderus_GB202_75_60 "Buderus Logano Plus GB202 - Condensing Boiler - 75/60degC" extends WorkLoadBaseDataDefinition( diff --git a/AixLib/DataBase/CHP/CHPDataSimple/CHPBaseDataDefinition.mo b/AixLib/DataBase/CHP/CHPDataSimple/CHPBaseDataDefinition.mo index 870870f485..26b594b857 100644 --- a/AixLib/DataBase/CHP/CHPDataSimple/CHPBaseDataDefinition.mo +++ b/AixLib/DataBase/CHP/CHPDataSimple/CHPBaseDataDefinition.mo @@ -2,7 +2,7 @@ within AixLib.DataBase.CHP.CHPDataSimple; record CHPBaseDataDefinition "Basic CHP data" extends Modelica.Icons.Record; - import SI = Modelica.SIunits; + import Modelica.Units.SI; parameter SI.Volume vol[:] "Water volume of CHP"; parameter Real data_CHP[:,5]; diff --git a/AixLib/DataBase/CHP/CHPDataSimple/CHP_Cleanergy_C9G.mo b/AixLib/DataBase/CHP/CHPDataSimple/CHP_Cleanergy_C9G.mo index 7a4fb6521b..f07ca7e765 100644 --- a/AixLib/DataBase/CHP/CHPDataSimple/CHP_Cleanergy_C9G.mo +++ b/AixLib/DataBase/CHP/CHPDataSimple/CHP_Cleanergy_C9G.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.CHP.CHPDataSimple; +within AixLib.DataBase.CHP.CHPDataSimple; record CHP_Cleanergy_C9G "Cleanergy: mini BHKW C9G (8-25 kW thermal, Stirling engine for low caloric gas)" extends CHPDataSimple.CHPBaseDataDefinition( @@ -53,7 +53,10 @@ record CHP_Cleanergy_C9G

          Data Sheet (English, German)

          - +
          +
          + \"Data Sheet\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\ +

          diff --git a/AixLib/DataBase/CHP/CHPDataSimple/CHP_XRGI_9kWel.mo b/AixLib/DataBase/CHP/CHPDataSimple/CHP_XRGI_9kWel.mo index c086346571..c72d42af43 100644 --- a/AixLib/DataBase/CHP/CHPDataSimple/CHP_XRGI_9kWel.mo +++ b/AixLib/DataBase/CHP/CHPDataSimple/CHP_XRGI_9kWel.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.CHP.CHPDataSimple; +within AixLib.DataBase.CHP.CHPDataSimple; record CHP_XRGI_9kWel "Eco Power: mini BHKW XRGI 9 (12-20 kW thermal)" extends CHPDataSimple.CHPBaseDataDefinition( vol={3e-3}, @@ -42,7 +42,10 @@ record CHP_XRGI_9kWel "Eco Power: mini BHKW XRGI 9 (12-20 kW thermal)"

          Data Sheet (English, German)

          - +
          +
          + \"Data Sheet\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\ +

          @@ -252,7 +255,10 @@ record CHP_XRGI_9kWel "Eco Power: mini BHKW XRGI 9 (12-20 kW thermal)"

          - +
          +
          + \"Emmisions\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\ +

          diff --git a/AixLib/DataBase/CHP/CHPDataSimple/CHP_mini_ECO_POWER_3.mo b/AixLib/DataBase/CHP/CHPDataSimple/CHP_mini_ECO_POWER_3.mo index 122db88232..bfd8f0cc96 100644 --- a/AixLib/DataBase/CHP/CHPDataSimple/CHP_mini_ECO_POWER_3.mo +++ b/AixLib/DataBase/CHP/CHPDataSimple/CHP_mini_ECO_POWER_3.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.CHP.CHPDataSimple; +within AixLib.DataBase.CHP.CHPDataSimple; record CHP_mini_ECO_POWER_3 "Vaillant: mini BHKW eco Power 3 (Natural Gas)" extends CHPDataSimple.CHPBaseDataDefinition( vol={2.72e-3}, diff --git a/AixLib/DataBase/CHP/CHPDataSimple/CHP_mini_ECO_POWER_3_LiquidGas.mo b/AixLib/DataBase/CHP/CHPDataSimple/CHP_mini_ECO_POWER_3_LiquidGas.mo index 26d9ce71ae..8b7dba46e8 100644 --- a/AixLib/DataBase/CHP/CHPDataSimple/CHP_mini_ECO_POWER_3_LiquidGas.mo +++ b/AixLib/DataBase/CHP/CHPDataSimple/CHP_mini_ECO_POWER_3_LiquidGas.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.CHP.CHPDataSimple; +within AixLib.DataBase.CHP.CHPDataSimple; record CHP_mini_ECO_POWER_3_LiquidGas "Vaillant: mini BHKW eco Power 3 (Liquid gas)" extends CHPDataSimple.CHPBaseDataDefinition( diff --git a/AixLib/DataBase/CHP/CHPDataSimple/CHP_mini_ECO_POWER_5.mo b/AixLib/DataBase/CHP/CHPDataSimple/CHP_mini_ECO_POWER_5.mo index 14b49d0ab3..be3b080a3e 100644 --- a/AixLib/DataBase/CHP/CHPDataSimple/CHP_mini_ECO_POWER_5.mo +++ b/AixLib/DataBase/CHP/CHPDataSimple/CHP_mini_ECO_POWER_5.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.CHP.CHPDataSimple; +within AixLib.DataBase.CHP.CHPDataSimple; record CHP_mini_ECO_POWER_5 "Vaillant: mini BHKW eco Power 4.7 (Natural Gas)" extends CHPDataSimple.CHPBaseDataDefinition( vol={2.72e-3}, diff --git a/AixLib/DataBase/CHP/CHPDataSimple/CHP_mini_ECO_POWER_5_LiquidGas.mo b/AixLib/DataBase/CHP/CHPDataSimple/CHP_mini_ECO_POWER_5_LiquidGas.mo index dc305c66b2..4d1c9f41e9 100644 --- a/AixLib/DataBase/CHP/CHPDataSimple/CHP_mini_ECO_POWER_5_LiquidGas.mo +++ b/AixLib/DataBase/CHP/CHPDataSimple/CHP_mini_ECO_POWER_5_LiquidGas.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.CHP.CHPDataSimple; +within AixLib.DataBase.CHP.CHPDataSimple; record CHP_mini_ECO_POWER_5_LiquidGas "Vaillant: mini BHKW eco Power 4.7 (Liquid gas)" extends CHPDataSimple.CHPBaseDataDefinition( diff --git a/AixLib/DataBase/CHP/ModularCHPEngineData/CHPEngDataBaseRecord.mo b/AixLib/DataBase/CHP/ModularCHPEngineData/CHPEngDataBaseRecord.mo index 1c586c7beb..60a79a406c 100644 --- a/AixLib/DataBase/CHP/ModularCHPEngineData/CHPEngDataBaseRecord.mo +++ b/AixLib/DataBase/CHP/ModularCHPEngineData/CHPEngDataBaseRecord.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.CHP.ModularCHPEngineData; +within AixLib.DataBase.CHP.ModularCHPEngineData; record CHPEngDataBaseRecord "Base record for CHP engine data" extends Modelica.Icons.Record; @@ -16,27 +16,43 @@ record CHPEngDataBaseRecord "Base record for CHP engine data" constant Real z "Number of cylinders"; constant Real eps = if SIEngine then 12 else 21 "Compression ratio (default values are 12(SI) and 21(DI))"; constant Real i "Number of combustion for one operating cycle (1->two-stroke, 0.5->four-stroke)"; - constant Modelica.SIunits.Mass mEng = 70389*VEng+17.913 "Total dry weight of the engine block"; - constant Modelica.SIunits.Volume VEng = 0.25*hStr*Modelica.Constants.pi*dCyl^2*z "Engine displacement"; - constant Modelica.SIunits.Length hStr "Stroke"; - constant Modelica.SIunits.Length dCyl(min=0.01) "Cylinder diameter"; - constant Modelica.SIunits.Length ref_dCyl=0.091 "Reference cylinder diameter for friction calculation"; - constant Modelica.SIunits.Pressure ref_p_mfNominal = if SIEngine then 75000 else 110000 "Friction mean pressure of reference engine for calculation(dCyl=91mm & nEng=3000rpm & TEng=90°C)"; - constant Modelica.SIunits.Pressure p_meNominal = P_mecNominal/(i*nEngNominal*VEng) "Nominal mean effective cylinder pressure"; - constant Modelica.SIunits.Efficiency etaCHP "Nominal efficiency of the power unit referring to the fuel input"; - constant Modelica.SIunits.Efficiency etaGen = 0.92 "Generator efficiency"; - constant Modelica.SIunits.Power P_mecNominal = P_elNominal/etaGen "Mechanical power output of the engine at nominal operating point"; - constant Modelica.SIunits.Power P_FueNominal = (P_elNominal+Q_MaxHea)/etaCHP "Nominal fuel expenses"; - constant Modelica.SIunits.Power Q_MaxHea "Maximum of usable heat"; - constant Modelica.SIunits.Temperature T_ExhPowUniOut = 373.15 "Exhaust gas temperature after exhaust heat exchanger (default=100°C)"; + constant Modelica.Units.SI.Mass mEng=70389*VEng + 17.913 + "Total dry weight of the engine block"; + constant Modelica.Units.SI.Volume VEng=0.25*hStr*Modelica.Constants.pi*dCyl^2 + *z "Engine displacement"; + constant Modelica.Units.SI.Length hStr "Stroke"; + constant Modelica.Units.SI.Length dCyl(min=0.01) "Cylinder diameter"; + constant Modelica.Units.SI.Length ref_dCyl=0.091 + "Reference cylinder diameter for friction calculation"; + constant Modelica.Units.SI.Pressure ref_p_mfNominal=if SIEngine then 75000 + else 110000 + "Friction mean pressure of reference engine for calculation(dCyl=91mm & nEng=3000rpm & TEng=90°C)"; + constant Modelica.Units.SI.Pressure p_meNominal=P_mecNominal/(i*nEngNominal* + VEng) "Nominal mean effective cylinder pressure"; + constant Modelica.Units.SI.Efficiency etaCHP + "Nominal efficiency of the power unit referring to the fuel input"; + constant Modelica.Units.SI.Efficiency etaGen=0.92 "Generator efficiency"; + constant Modelica.Units.SI.Power P_mecNominal=P_elNominal/etaGen + "Mechanical power output of the engine at nominal operating point"; + constant Modelica.Units.SI.Power P_FueNominal=(P_elNominal + Q_MaxHea)/etaCHP + "Nominal fuel expenses"; + constant Modelica.Units.SI.Power Q_MaxHea "Maximum of usable heat"; + constant Modelica.Units.SI.Temperature T_ExhPowUniOut=373.15 + "Exhaust gas temperature after exhaust heat exchanger (default=100°C)"; //General CHP parameters - constant Modelica.SIunits.Diameter dExh = 0.0612+(Lambda*P_FueNominal)*10^(-7) "Exhaust pipe diameter for heat transfer calculation"; - constant Modelica.SIunits.Diameter dCoo = 0.0224+Q_MaxHea*2*10^(-7) "Coolant circle pipe diameter for heat transfer calculation"; - constant Modelica.SIunits.Thickness dInn "Thickness of the cylinder wall between combustion chamber and cooling circle (default value is 5mm)"; - constant Modelica.SIunits.MassFlowRate m_floCooNominal = 0.00003*Q_MaxHea-0.2043 "Nominal mass flow rate of coolant inside the engine cooling circle (default density of coolant is 1kg/l)"; - constant Modelica.SIunits.Pressure dp_Coo = 15000 "Pressure loss between coolant supply and return flow (default value is 0.15bar)"; + constant Modelica.Units.SI.Diameter dExh=0.0612 + (Lambda*P_FueNominal)*10^(-7) + "Exhaust pipe diameter for heat transfer calculation"; + constant Modelica.Units.SI.Diameter dCoo=0.0224 + Q_MaxHea*2*10^(-7) + "Coolant circle pipe diameter for heat transfer calculation"; + constant Modelica.Units.SI.Thickness dInn + "Thickness of the cylinder wall between combustion chamber and cooling circle (default value is 5mm)"; + constant Modelica.Units.SI.MassFlowRate m_floCooNominal=0.00003*Q_MaxHea - + 0.2043 + "Nominal mass flow rate of coolant inside the engine cooling circle (default density of coolant is 1kg/l)"; + constant Modelica.Units.SI.Pressure dp_Coo=15000 + "Pressure loss between coolant supply and return flow (default value is 0.15bar)"; //Electric power converter (as an induction machine) @@ -44,12 +60,15 @@ record CHPEngDataBaseRecord "Base record for CHP engine data" constant Real p=f_1/n0 "Number of pole pairs"; constant Real gearRatio=1 "Gear ratio: engine speed to generator speed (default=1)"; constant Boolean useHeat=false "Is the thermal loss energy of the elctric machine used?"; - constant Modelica.SIunits.Frequency n0=f_1/p "Idling speed of the electric machine"; - constant Modelica.SIunits.Frequency n_nominal "Rated rotor speed [1/s]"; - constant Modelica.SIunits.Frequency f_1 "Source frequency"; - constant Modelica.SIunits.Voltage U_1 "Rated voltage"; - constant Modelica.SIunits.Current I_elNominal=P_elNominal/(sqrt(3)*U_1*cosPhi) "Rated current"; - constant Modelica.SIunits.Power P_elNominal "Nominal electrical power of electric machine"; + constant Modelica.Units.SI.Frequency n0=f_1/p + "Idling speed of the electric machine"; + constant Modelica.Units.SI.Frequency n_nominal "Rated rotor speed [1/s]"; + constant Modelica.Units.SI.Frequency f_1 "Source frequency"; + constant Modelica.Units.SI.Voltage U_1 "Rated voltage"; + constant Modelica.Units.SI.Current I_elNominal=P_elNominal/(sqrt(3)*U_1* + cosPhi) "Rated current"; + constant Modelica.Units.SI.Power P_elNominal + "Nominal electrical power of electric machine"; annotation (Documentation(info="

          Overview diff --git a/AixLib/DataBase/CHP/ModularCHPEngineData/CHP_Vitoblock200_EM5_13.mo b/AixLib/DataBase/CHP/ModularCHPEngineData/CHP_Vitoblock200_EM5_13.mo index 3df3cfa912..24dcaa110c 100644 --- a/AixLib/DataBase/CHP/ModularCHPEngineData/CHP_Vitoblock200_EM5_13.mo +++ b/AixLib/DataBase/CHP/ModularCHPEngineData/CHP_Vitoblock200_EM5_13.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.CHP.ModularCHPEngineData; +within AixLib.DataBase.CHP.ModularCHPEngineData; record CHP_Vitoblock200_EM5_13 "Noch nicht möglich, da Brennwert-Nutzung(T_ExhPowUniOut=?<90°C) Ansonsten aktuell" extends AixLib.DataBase.CHP.ModularCHPEngineData.CHPEngDataBaseRecord( SIEngine=true, diff --git a/AixLib/DataBase/CHP/ModularCHPEngineMedia/CHPCombustionMixtureGasNasa.mo b/AixLib/DataBase/CHP/ModularCHPEngineMedia/CHPCombustionMixtureGasNasa.mo index 7162202822..e8f825eb6f 100644 --- a/AixLib/DataBase/CHP/ModularCHPEngineMedia/CHPCombustionMixtureGasNasa.mo +++ b/AixLib/DataBase/CHP/ModularCHPEngineMedia/CHPCombustionMixtureGasNasa.mo @@ -51,9 +51,9 @@ required from medium model \"" + mediumName + "\"."); MM = molarMass(state); h = h_TX(T, X); - R = data.R*X; - u = h - R*T; - d = p/(R*T); + R_s = data.R_s*X; + u =h - R_s*T; + d =p/(R_s*T); // connect state with BaseProperties state.T = T; state.p = p; @@ -107,8 +107,22 @@ required from medium model \"" + mediumName + "\"."); input MassFraction X[:]=reference_X "Mass fractions"; output ThermodynamicState state; algorithm - state := if size(X,1) == 0 then ThermodynamicState(p=d*(data.R*reference_X)*T,T=T,X=reference_X) else if size(X,1) == nX then ThermodynamicState(p=d*(data.R*X)*T,T=T,X=X) else - ThermodynamicState(p=d*(data.R*cat(1,X,{1-sum(X)}))*T,T=T, X=cat(1,X,{1-sum(X)})); + state :=if size(X, 1) == 0 then ThermodynamicState( + p=d*(data.R_s*reference_X)*T, + T=T, + X=reference_X) else if size(X, 1) == nX then ThermodynamicState( + p=d*(data.R_s*X)*T, + T=T, + X=X) else ThermodynamicState( + p=d*(data.R_s*cat( + 1, + X, + {1 - sum(X)}))*T, + T=T, + X=cat( + 1, + X, + {1 - sum(X)})); annotation(Inline=true,smoothOrder=2); end setState_dTX; @@ -148,7 +162,7 @@ required from medium model \"" + mediumName + "\"."); redeclare function extends density "Return density of ideal gas" algorithm - d := state.p/((state.X*data.R)*state.T); + d :=state.p/((state.X*data.R_s)*state.T); annotation(Inline = true, smoothOrder = 3); end density; @@ -196,7 +210,7 @@ required from medium model \"" + mediumName + "\"."); function h_TX "Return specific enthalpy" import Modelica.Media.Interfaces.Choices; extends Modelica.Icons.Function; - input Modelica.SIunits.Temperature T "Temperature"; + input Modelica.Units.SI.Temperature T "Temperature"; input MassFraction X[nX]=reference_X "Independent Mass fractions of gas mixture"; input Boolean exclEnthForm=excludeEnthalpyOfFormation @@ -204,10 +218,10 @@ required from medium model \"" + mediumName + "\"."); input Modelica.Media.Interfaces.Choices.ReferenceEnthalpy refChoice=referenceChoice "Choice of reference enthalpy"; - input Modelica.SIunits.SpecificEnthalpy h_off=h_offset - "User defined offset for reference enthalpy, if referenceChoice = UserDefined"; - output Modelica.SIunits.SpecificEnthalpy h - "Specific enthalpy at temperature T"; + input Modelica.Units.SI.SpecificEnthalpy h_off=h_offset + "User defined offset for reference enthalpy, if referenceChoice = UserDefined"; + output Modelica.Units.SI.SpecificEnthalpy h + "Specific enthalpy at temperature T"; algorithm h :=(if fixedX then reference_X else X)* {Modelica.Media.IdealGases.Common.Functions.h_T( @@ -218,15 +232,15 @@ required from medium model \"" + mediumName + "\"."); function h_TX_der "Return specific enthalpy derivative" import Modelica.Media.Interfaces.Choices; extends Modelica.Icons.Function; - input Modelica.SIunits.Temperature T "Temperature"; + input Modelica.Units.SI.Temperature T "Temperature"; input MassFraction X[nX] "Independent Mass fractions of gas mixture"; input Boolean exclEnthForm=excludeEnthalpyOfFormation "If true, enthalpy of formation Hf is not included in specific enthalpy h"; input Modelica.Media.Interfaces.Choices.ReferenceEnthalpy refChoice=referenceChoice "Choice of reference enthalpy"; - input Modelica.SIunits.SpecificEnthalpy h_off=h_offset - "User defined offset for reference enthalpy, if referenceChoice = UserDefined"; + input Modelica.Units.SI.SpecificEnthalpy h_off=h_offset + "User defined offset for reference enthalpy, if referenceChoice = UserDefined"; input Real dT "Temperature derivative"; input Real dX[nX] "Independent mass fraction derivative"; output Real h_der "Specific enthalpy at temperature T"; @@ -243,7 +257,7 @@ required from medium model \"" + mediumName + "\"."); redeclare function extends gasConstant "Return gasConstant" algorithm - R := data.R*state.X; + R_s := data.R_s*state.X; annotation(Inline = true, smoothOrder = 3); end gasConstant; @@ -258,14 +272,14 @@ required from medium model \"" + mediumName + "\"."); redeclare function extends specificHeatCapacityCv "Return specific heat capacity at constant volume from temperature and gas data" algorithm - cv := {Modelica.Media.IdealGases.Common.Functions.cp_T( - data[i], state.T) for i in 1:nX}*state.X -data.R*state.X; + cv :={Modelica.Media.IdealGases.Common.Functions.cp_T(data[i], state.T) + for i in 1:nX}*state.X - data.R_s*state.X; annotation(Inline=true, smoothOrder = 1); end specificHeatCapacityCv; function MixEntropy "Return mixing entropy of ideal gases / R" extends Modelica.Icons.Function; - input Modelica.SIunits.MoleFraction x[:] "Mole fraction of mixture"; + input Modelica.Units.SI.MoleFraction x[:] "Mole fraction of mixture"; output Real smix "Mixing entropy contribution, divided by gas constant"; algorithm smix := sum(if x[i] > Modelica.Constants.eps then -x[i]*Modelica.Math.log(x[i]) else @@ -616,14 +630,14 @@ end lowPressureThermalConductivity; input Modelica.Media.Interfaces.Choices.ReferenceEnthalpy refChoice=referenceChoice "Choice of reference enthalpy"; - input Modelica.SIunits.SpecificEnthalpy h_off=h_offset - "User defined offset for reference enthalpy, if referenceChoice = UserDefined"; + input Modelica.Units.SI.SpecificEnthalpy h_off=h_offset + "User defined offset for reference enthalpy, if referenceChoice = UserDefined"; output Temperature T "Temperature"; protected MassFraction[nX] Xfull = if size(X,1) == nX then X else cat(1,X,{1-sum(X)}); package Internal "Solve h(data,T) for T with given h (use only indirectly via temperature_phX)" - extends Modelica.Media.Common.OneNonLinearEquation; + extends ObsoleteModelica4.Media.Common.OneNonLinearEquation; redeclare record extends f_nonlinear_Data "Data to be passed to non-linear function" extends Modelica.Media.IdealGases.Common.DataRecord; @@ -655,7 +669,7 @@ end lowPressureThermalConductivity; MassFraction[nX] Xfull = if size(X,1) == nX then X else cat(1,X,{1-sum(X)}); package Internal "Solve h(data,T) for T with given h (use only indirectly via temperature_phX)" - extends Modelica.Media.Common.OneNonLinearEquation; + extends ObsoleteModelica4.Media.Common.OneNonLinearEquation; redeclare record extends f_nonlinear_Data "Data to be passed to non-linear function" extends Modelica.Media.IdealGases.Common.DataRecord; diff --git a/AixLib/DataBase/CHP/ModularCHPEngineMedia/CHPCoolantPropyleneGlycolWater.mo b/AixLib/DataBase/CHP/ModularCHPEngineMedia/CHPCoolantPropyleneGlycolWater.mo index 5f1442fba0..bc85a7d6bd 100644 --- a/AixLib/DataBase/CHP/ModularCHPEngineMedia/CHPCoolantPropyleneGlycolWater.mo +++ b/AixLib/DataBase/CHP/ModularCHPEngineMedia/CHPCoolantPropyleneGlycolWater.mo @@ -1,21 +1,20 @@ -within AixLib.DataBase.CHP.ModularCHPEngineMedia; +within AixLib.DataBase.CHP.ModularCHPEngineMedia; package CHPCoolantPropyleneGlycolWater "Package with model for propylene glycol - water with constant properties" extends Modelica.Media.Interfaces.PartialSimpleMedium( - mediumName="PropyleneGlycolWater(X_a = " - + String(X_a) + ", property_T = " - + String(property_T) + ")", - final cp_const=specificHeatCapacityCp_TX_a(T = property_T, X_a = X_a), + mediumName="PropyleneGlycolWater(X_a = " + String(X_a) + ", property_T = " + + String(property_T) + ")", + final cp_const=specificHeatCapacityCp_TX_a(T=property_T, X_a=X_a), final cv_const=cp_const, - final d_const=density_TX_a(T = property_T, X_a = X_a), - final eta_const=dynamicViscosity_TX_a(T = property_T, X_a = X_a), - final lambda_const=thermalConductivity_TX_a(T = property_T, X_a = X_a), + final d_const=density_TX_a(T=property_T, X_a=X_a), + final eta_const=dynamicViscosity_TX_a(T=property_T, X_a=X_a), + final lambda_const=thermalConductivity_TX_a(T=property_T, X_a=X_a), a_const=1484, - final T_min=fusionTemperature_TX_a(T = property_T, X_a = X_a), - T_max=Modelica.SIunits.Conversions.from_degC(100), + final T_min=fusionTemperature_TX_a(T=property_T, X_a=X_a), + T_max=Modelica.Units.Conversions.from_degC(100), T0=273.15, - MM_const=(X_a/simplePropyleneGlycolWaterConstants[1].molarMass + (1 - - X_a)/0.018015268)^(-1), + MM_const=(X_a/simplePropyleneGlycolWaterConstants[1].molarMass + (1 - X_a)/ + 0.018015268)^(-1), fluidConstants=simplePropyleneGlycolWaterConstants, p_default=300000, reference_p=300000, @@ -25,9 +24,9 @@ package CHPCoolantPropyleneGlycolWater Temperature(start=T_default), Density(start=d_const)); - constant Modelica.SIunits.Temperature property_T + constant Modelica.Units.SI.Temperature property_T "Temperature for evaluation of constant fluid properties"; - constant Modelica.SIunits.MassFraction X_a + constant Modelica.Units.SI.MassFraction X_a "Mass fraction of propylene glycol in water"; redeclare model BaseProperties "Base properties" @@ -39,14 +38,14 @@ package CHPCoolantPropyleneGlycolWater InputMassFraction[nXi] Xi=fill(0, 0) "Structurally independent mass fractions"; InputSpecificEnthalpy h "Specific enthalpy of medium"; - Modelica.SIunits.SpecificInternalEnergy u + Modelica.Units.SI.SpecificInternalEnergy u "Specific internal energy of medium"; - Modelica.SIunits.Density d=d_const "Density of medium"; - Modelica.SIunits.MassFraction[nX] X={1} + Modelica.Units.SI.Density d=d_const "Density of medium"; + Modelica.Units.SI.MassFraction[nX] X={1} "Mass fractions (= (component mass)/total mass m_i/m)"; - final Modelica.SIunits.SpecificHeatCapacity R=0 + final Modelica.Units.SI.SpecificHeatCapacity R_s=0 "Gas constant (of mixture if applicable)"; - final Modelica.SIunits.MolarMass MM=MM_const + final Modelica.Units.SI.MolarMass MM=MM_const "Molar mass (of mixture or single fluid)"; ThermodynamicState state "Thermodynamic state record for optional functions"; @@ -55,19 +54,17 @@ package CHPCoolantPropyleneGlycolWater annotation(Evaluate=true, Dialog(tab="Advanced")); final parameter Boolean standardOrderComponents=true "If true, and reducedX = true, the last element of X will be computed from the other ones"; - Modelica.SIunits.Conversions.NonSIunits.Temperature_degC T_degC= - Modelica.SIunits.Conversions.to_degC(T) - "Temperature of medium in [degC]"; - Modelica.SIunits.Conversions.NonSIunits.Pressure_bar p_bar= - Modelica.SIunits.Conversions.to_bar(p) + Modelica.Units.NonSI.Temperature_degC T_degC= + Modelica.Units.Conversions.to_degC(T) "Temperature of medium in [degC]"; + Modelica.Units.NonSI.Pressure_bar p_bar=Modelica.Units.Conversions.to_bar(p) "Absolute pressure of medium in [bar]"; // Local connector definition, used for equation balancing check - connector InputAbsolutePressure = input Modelica.SIunits.AbsolutePressure + connector InputAbsolutePressure = input Modelica.Units.SI.AbsolutePressure "Pressure as input signal connector"; - connector InputSpecificEnthalpy = input Modelica.SIunits.SpecificEnthalpy + connector InputSpecificEnthalpy = input Modelica.Units.SI.SpecificEnthalpy "Specific enthalpy as input signal connector"; - connector InputMassFraction = input Modelica.SIunits.MassFraction + connector InputMassFraction = input Modelica.Units.SI.MassFraction "Mass fraction as input signal connector"; equation @@ -97,9 +94,9 @@ required from medium model \"" + mediumName + "\". ")); end BaseProperties; protected - constant Modelica.SIunits.MassFraction X_a_min=0. + constant Modelica.Units.SI.MassFraction X_a_min=0. "Minimum allowed mass fraction of propylene glycol in water"; - constant Modelica.SIunits.MassFraction X_a_max=0.6 + constant Modelica.Units.SI.MassFraction X_a_max=0.6 "Maximum allowed mass fraction of propylene glycol in water"; // Fluid constants based on pure Propylene Glycol @@ -112,10 +109,9 @@ protected each molarMass=0.07609); // Coefficients for evaluation of physical properties - constant AixLib.Media.Antifreeze.BaseClasses.PropertyCoefficients - proCoe( + constant AixLib.Media.Antifreeze.BaseClasses.PropertyCoefficients proCoe( X_a_ref=0.307031, - T_ref=Modelica.SIunits.Conversions.from_degC(32.7083), + T_ref=Modelica.Units.Conversions.from_degC(32.7083), nX_a=6, nT={4,4,4,3,2,1}, nTot=18, @@ -139,9 +135,10 @@ protected replaceable function density_TX_a "Evaluate density of antifreeze-water mixture" extends Modelica.Icons.Function; - input Modelica.SIunits.Temperature T "Temperature of antifreeze-water mixture"; - input Modelica.SIunits.MassFraction X_a "Mass fraction of antifreeze"; - output Modelica.SIunits.Density d "Density of antifreeze-water mixture"; + input Modelica.Units.SI.Temperature T + "Temperature of antifreeze-water mixture"; + input Modelica.Units.SI.MassFraction X_a "Mass fraction of antifreeze"; + output Modelica.Units.SI.Density d "Density of antifreeze-water mixture"; algorithm d :=polynomialProperty( X_a, @@ -174,9 +171,11 @@ protected replaceable function dynamicViscosity_TX_a "Evaluate dynamic viscosity of antifreeze-water mixture" extends Modelica.Icons.Function; - input Modelica.SIunits.Temperature T "Temperature of antifreeze-water mixture"; - input Modelica.SIunits.MassFraction X_a "Mass fraction of antifreeze"; - output Modelica.SIunits.DynamicViscosity eta "Dynamic Viscosity of antifreeze-water mixture"; + input Modelica.Units.SI.Temperature T + "Temperature of antifreeze-water mixture"; + input Modelica.Units.SI.MassFraction X_a "Mass fraction of antifreeze"; + output Modelica.Units.SI.DynamicViscosity eta + "Dynamic Viscosity of antifreeze-water mixture"; algorithm eta :=1e-3*exp(polynomialProperty( X_a, @@ -208,11 +207,13 @@ protected replaceable function fusionTemperature_TX_a "Evaluate temperature of fusion of antifreeze-water mixture" extends Modelica.Icons.Function; - input Modelica.SIunits.Temperature T "Temperature of antifreeze-water mixture"; - input Modelica.SIunits.MassFraction X_a "Mass fraction of antifreeze"; - output Modelica.SIunits.Temperature Tf "Temperature of fusion of antifreeze-water mixture"; + input Modelica.Units.SI.Temperature T + "Temperature of antifreeze-water mixture"; + input Modelica.Units.SI.MassFraction X_a "Mass fraction of antifreeze"; + output Modelica.Units.SI.Temperature Tf + "Temperature of fusion of antifreeze-water mixture"; algorithm - Tf :=Modelica.SIunits.Conversions.from_degC(polynomialProperty( + Tf :=Modelica.Units.Conversions.from_degC(polynomialProperty( X_a, T, proCoe.a_Tf)); @@ -301,9 +302,11 @@ protected replaceable function specificHeatCapacityCp_TX_a "Evaluate specific heat capacity of antifreeze-water mixture" extends Modelica.Icons.Function; - input Modelica.SIunits.Temperature T "Temperature of antifreeze-water mixture"; - input Modelica.SIunits.MassFraction X_a "Mass fraction of antifreeze"; - output Modelica.SIunits.SpecificHeatCapacity cp "Specific heat capacity of antifreeze-water mixture"; + input Modelica.Units.SI.Temperature T + "Temperature of antifreeze-water mixture"; + input Modelica.Units.SI.MassFraction X_a "Mass fraction of antifreeze"; + output Modelica.Units.SI.SpecificHeatCapacity cp + "Specific heat capacity of antifreeze-water mixture"; algorithm cp :=polynomialProperty( X_a, @@ -335,9 +338,11 @@ protected replaceable function thermalConductivity_TX_a "Evaluate thermal conductivity of antifreeze-water mixture" extends Modelica.Icons.Function; - input Modelica.SIunits.Temperature T "Temperature of antifreeze-water mixture"; - input Modelica.SIunits.MassFraction X_a "Mass fraction of antifreeze"; - output Modelica.SIunits.ThermalConductivity lambda "Thermal conductivity of antifreeze-water mixture"; + input Modelica.Units.SI.Temperature T + "Temperature of antifreeze-water mixture"; + input Modelica.Units.SI.MassFraction X_a "Mass fraction of antifreeze"; + output Modelica.Units.SI.ThermalConductivity lambda + "Thermal conductivity of antifreeze-water mixture"; algorithm lambda :=polynomialProperty( X_a, diff --git a/AixLib/DataBase/CHP/ModularCHPEngineMedia/CombustionEngineFuelDataBaseRecord.mo b/AixLib/DataBase/CHP/ModularCHPEngineMedia/CombustionEngineFuelDataBaseRecord.mo index 7115dd8ed6..bb49beffd3 100644 --- a/AixLib/DataBase/CHP/ModularCHPEngineMedia/CombustionEngineFuelDataBaseRecord.mo +++ b/AixLib/DataBase/CHP/ModularCHPEngineMedia/CombustionEngineFuelDataBaseRecord.mo @@ -9,9 +9,13 @@ record CombustionEngineFuelDataBaseRecord //Base-Records for physical combustion calculations of natural gas out of (Nitrogen,Methane,Ethene,Ethane,Propane,n-Butane,n-Pentane,n-Hexane,Carbondioxide) parameter String substanceNames[:] = {"Nitrogen","Methane","Ethene","Ethane","Propane","n-Butane","n-Pentane","n-Hexane","Carbondioxide"}; - parameter Modelica.SIunits.MoleFraction Xi_mole[:] = {0, 0, 0, 0, 0, 0, 0, 0, 0} "Volumetric proportion of each fuel component"; - parameter Modelica.SIunits.MolarMass MMi[:] = {0.02802,0.01604,0.02805,0.03007,0.0441,0.05815,0.07215,0.08618,0.04401} "Molar mass of natural gas components"; - parameter Modelica.SIunits.SpecificEnergy H_Ui[:] = {0,50000000,50900000,47160000,46440000,45720000,45000000,44640000,0}; + parameter Modelica.Units.SI.MoleFraction Xi_mole[:]={0,0,0,0,0,0,0,0,0} + "Volumetric proportion of each fuel component"; + parameter Modelica.Units.SI.MolarMass MMi[:]={0.02802,0.01604,0.02805,0.03007, + 0.0441,0.05815,0.07215,0.08618,0.04401} + "Molar mass of natural gas components"; + parameter Modelica.Units.SI.SpecificEnergy H_Ui[:]={0,50000000,50900000, + 47160000,46440000,45720000,45000000,44640000,0}; parameter Real nue_C[size(MMi, 1)] = {0, 1, 2, 2, 3, 4, 5, 6, 1} "Number of carbon atoms for each gas component (for composition calculation)"; parameter Real nue_H[size(MMi, 1)] = {0, 4, 4, 6, 8, 10, 12, 14, 0} "Number of hydrogen atoms for each gas component (for composition calculation)"; parameter Real nue_O[size(MMi, 1)] = {0, 0, 0, 0, 0, 0, 0, 0, 2} "Number of oxygen atoms for each gas component (for composition calculation)"; @@ -20,10 +24,14 @@ record CombustionEngineFuelDataBaseRecord //Base-Data for combustion calculations with liquid fuels (sulfur is not considered) - parameter Modelica.SIunits.SpecificEnergy H_U = 0 "Calorific value of the liquid fuel based on VK1 by S.Pischinger"; - parameter Modelica.SIunits.MassFraction Xi_liq[:] = {0,0,0} "Elements mass fractions of carbon, hydrogen and oxygen"; - parameter Modelica.SIunits.MolarMass MMi_liq[:] = {0.012, 0.001, 0.016} "Molar mass of the main liquid fuel elements (C,H,O)"; - parameter Modelica.SIunits.MolarMass MM_liq = 0 "Total molar mass of the liquid fuel based on VK1 by S.Pischinger"; + parameter Modelica.Units.SI.SpecificEnergy H_U=0 + "Calorific value of the liquid fuel based on VK1 by S.Pischinger"; + parameter Modelica.Units.SI.MassFraction Xi_liq[:]={0,0,0} + "Elements mass fractions of carbon, hydrogen and oxygen"; + parameter Modelica.Units.SI.MolarMass MMi_liq[:]={0.012,0.001,0.016} + "Molar mass of the main liquid fuel elements (C,H,O)"; + parameter Modelica.Units.SI.MolarMass MM_liq=0 + "Total molar mass of the liquid fuel based on VK1 by S.Pischinger"; annotation (Icon(coordinateSystem(preserveAspectRatio=false)), Diagram( coordinateSystem(preserveAspectRatio=false))); diff --git a/AixLib/DataBase/CHP/ModularCHPEngineMedia/LiquidFuel_Diesel.mo b/AixLib/DataBase/CHP/ModularCHPEngineMedia/LiquidFuel_Diesel.mo index 311186a5f1..02f450a63f 100644 --- a/AixLib/DataBase/CHP/ModularCHPEngineMedia/LiquidFuel_Diesel.mo +++ b/AixLib/DataBase/CHP/ModularCHPEngineMedia/LiquidFuel_Diesel.mo @@ -23,7 +23,7 @@ package LiquidFuel_Diesel Fuel=DieselFuel() "Needed fuel data for combustion calculations" annotation (choicesAllMatching=true, Dialog(group="Natural gas type")); - import Modelica.SIunits.*; + import Modelica.Units.SI.*; constant Boolean isGas = Fuel.isGasoline "True = Gasoline fuel, False = Liquid fuel"; constant MolarMass MM = Fuel.MM_liq "Molar mass of the fuel"; diff --git a/AixLib/DataBase/CHP/ModularCHPEngineMedia/LiquidFuel_LPG.mo b/AixLib/DataBase/CHP/ModularCHPEngineMedia/LiquidFuel_LPG.mo index 601cd24904..c18d828d69 100644 --- a/AixLib/DataBase/CHP/ModularCHPEngineMedia/LiquidFuel_LPG.mo +++ b/AixLib/DataBase/CHP/ModularCHPEngineMedia/LiquidFuel_LPG.mo @@ -22,7 +22,7 @@ package LiquidFuel_LPG "Simple LPG fuel for CHP-engine combustion" Fuel=LPGFuel() "Needed fuel data for combustion calculations" annotation (choicesAllMatching=true, Dialog(group="Natural gas type")); - import Modelica.SIunits.*; + import Modelica.Units.SI.*; constant Boolean isGas = Fuel.isGasoline "True = Gasoline fuel, False = Liquid fuel"; constant MolarMass MM = Fuel.MM_liq "Molar mass of the fuel"; diff --git a/AixLib/DataBase/CHP/ModularCHPEngineMedia/LiquidFuel_Petrol.mo b/AixLib/DataBase/CHP/ModularCHPEngineMedia/LiquidFuel_Petrol.mo index 5b8dccf1fb..5aa3a76c97 100644 --- a/AixLib/DataBase/CHP/ModularCHPEngineMedia/LiquidFuel_Petrol.mo +++ b/AixLib/DataBase/CHP/ModularCHPEngineMedia/LiquidFuel_Petrol.mo @@ -22,7 +22,7 @@ package LiquidFuel_Petrol "Simple petrol fuel for CHP-engine combustion" Fuel=PetrolFuel() "Needed fuel data for combustion calculations" annotation (choicesAllMatching=true, Dialog(group="Natural gas type")); - import Modelica.SIunits.*; + import Modelica.Units.SI.*; constant Boolean isGas = Fuel.isGasoline "True = Gasoline fuel, False = Liquid fuel"; constant MolarMass MM = Fuel.MM_liq "Molar mass of the fuel"; diff --git a/AixLib/DataBase/CHP/ModularCHPEngineMedia/NaturalGasMixture_GeneralType.mo b/AixLib/DataBase/CHP/ModularCHPEngineMedia/NaturalGasMixture_GeneralType.mo index 25749c0613..758af35175 100644 --- a/AixLib/DataBase/CHP/ModularCHPEngineMedia/NaturalGasMixture_GeneralType.mo +++ b/AixLib/DataBase/CHP/ModularCHPEngineMedia/NaturalGasMixture_GeneralType.mo @@ -24,7 +24,7 @@ package NaturalGasMixture_GeneralType "Needed natural gas data for calculations, manual redefinition of volumetric proportions of the gas components (Xi_mole) required (default:{1/9,1/9,...})!" annotation (choicesAllMatching=true, Dialog(group="Natural gas type")); - import Modelica.SIunits.*; + import Modelica.Units.SI.*; constant Boolean isGas = Fuel.isGasoline "True = Gasoline fuel, False = Liquid fuel"; constant MoleFraction moleFractions_Gas[:] = Fuel.Xi_mole; diff --git a/AixLib/DataBase/CHP/ModularCHPEngineMedia/NaturalGasMixture_TypeAachen.mo b/AixLib/DataBase/CHP/ModularCHPEngineMedia/NaturalGasMixture_TypeAachen.mo index fd454c1468..206f0821a4 100644 --- a/AixLib/DataBase/CHP/ModularCHPEngineMedia/NaturalGasMixture_TypeAachen.mo +++ b/AixLib/DataBase/CHP/ModularCHPEngineMedia/NaturalGasMixture_TypeAachen.mo @@ -23,7 +23,7 @@ package NaturalGasMixture_TypeAachen Fuel=NaturalGasTypeAachen() "Needed natural gas data for calculations" annotation (choicesAllMatching=true, Dialog(group="Natural gas type")); - import Modelica.SIunits.*; + import Modelica.Units.SI.*; constant Boolean isGas = Fuel.isGasoline "True = Gasoline fuel, False = Liquid fuel"; constant MoleFraction moleFractions_Gas[:] = Fuel.Xi_mole; diff --git a/AixLib/DataBase/CHP/ModularCHPEngineMedia/NaturalGasMixture_TypeH.mo b/AixLib/DataBase/CHP/ModularCHPEngineMedia/NaturalGasMixture_TypeH.mo index 341b8cbf03..3d7cd668c6 100644 --- a/AixLib/DataBase/CHP/ModularCHPEngineMedia/NaturalGasMixture_TypeH.mo +++ b/AixLib/DataBase/CHP/ModularCHPEngineMedia/NaturalGasMixture_TypeH.mo @@ -23,7 +23,7 @@ package NaturalGasMixture_TypeH Fuel=NaturalGasTypeH() "Needed natural gas data for calculations" annotation (choicesAllMatching=true, Dialog(group="Natural gas type")); - import Modelica.SIunits.*; + import Modelica.Units.SI.*; constant Boolean isGas = Fuel.isGasoline "True = Gasoline fuel, False = Liquid fuel"; constant MoleFraction moleFractions_Gas[:] = Fuel.Xi_mole; diff --git a/AixLib/DataBase/CHP/ModularCHPEngineMedia/NaturalGasMixture_TypeL.mo b/AixLib/DataBase/CHP/ModularCHPEngineMedia/NaturalGasMixture_TypeL.mo index 33ec214086..90f95c9aa4 100644 --- a/AixLib/DataBase/CHP/ModularCHPEngineMedia/NaturalGasMixture_TypeL.mo +++ b/AixLib/DataBase/CHP/ModularCHPEngineMedia/NaturalGasMixture_TypeL.mo @@ -23,7 +23,7 @@ package NaturalGasMixture_TypeL Fuel=NaturalGasTypeL() "Needed natural gas data for calculations" annotation (choicesAllMatching=true, Dialog(group="Natural gas type")); - import Modelica.SIunits.*; + import Modelica.Units.SI.*; constant Boolean isGas = Fuel.isGasoline "True = Gasoline fuel, False = Liquid fuel"; constant MoleFraction moleFractions_Gas[:] = Fuel.Xi_mole; diff --git a/AixLib/DataBase/Chiller/ChillerBaseDataDefinition.mo b/AixLib/DataBase/Chiller/ChillerBaseDataDefinition.mo index d4ef79c61b..7fff97c5cf 100644 --- a/AixLib/DataBase/Chiller/ChillerBaseDataDefinition.mo +++ b/AixLib/DataBase/Chiller/ChillerBaseDataDefinition.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Chiller; +within AixLib.DataBase.Chiller; record ChillerBaseDataDefinition "Basic chiller data" extends AixLib.DataBase.HeatPump.HeatPumpBaseDataDefinition(tableQdot_con = tableQdot_eva); diff --git a/AixLib/DataBase/Chiller/EN14511/Vitocal200AWO201.mo b/AixLib/DataBase/Chiller/EN14511/Vitocal200AWO201.mo index 49ae123afa..c97aa2e771 100644 --- a/AixLib/DataBase/Chiller/EN14511/Vitocal200AWO201.mo +++ b/AixLib/DataBase/Chiller/EN14511/Vitocal200AWO201.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Chiller.EN14511; +within AixLib.DataBase.Chiller.EN14511; record Vitocal200AWO201 "Vitocal200AWO201Chilling" extends AixLib.DataBase.Chiller.ChillerBaseDataDefinition( tableP_ele=[0, 20, 25, 27, 30, 35; 7,1380.0, 1590.0, 1680.0, 1800.0, 1970.0; 18,950.0, 1060.0, 1130.0, 1200.0, 1350.0], diff --git a/AixLib/DataBase/Chiller/EN14511/package.mo b/AixLib/DataBase/Chiller/EN14511/package.mo index dc0bf5f009..a513e90dcc 100644 --- a/AixLib/DataBase/Chiller/EN14511/package.mo +++ b/AixLib/DataBase/Chiller/EN14511/package.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Chiller; +within AixLib.DataBase.Chiller; package EN14511 diff --git a/AixLib/DataBase/Chiller/PerformanceData/LookUpTable2D.mo b/AixLib/DataBase/Chiller/PerformanceData/LookUpTable2D.mo index 110dfcc043..d0ed39a62c 100644 --- a/AixLib/DataBase/Chiller/PerformanceData/LookUpTable2D.mo +++ b/AixLib/DataBase/Chiller/PerformanceData/LookUpTable2D.mo @@ -138,13 +138,13 @@ equation {0,0,127})); connect(sigBus.iceFacMea, proRedQEva.u1) annotation (Line( points={{1.075,104.07},{20,104.07},{20,-42},{72,-42},{72,-54.8},{71.6,-54.8}}, - color={255,204,51}, thickness=0.5), Text( string="%first", index=-1, extent={{6,3},{6,3}}, horizontalAlignment=TextAlignment.Left)); + connect(nTimesPel.y, Pel) annotation (Line(points={{-41,-18.7},{-41,-30},{0, -30},{0,-110}}, color={0,0,127})); connect(realCorr.y, nTimesSF.u2) annotation (Line(points={{-13,39.7},{-13, diff --git a/AixLib/DataBase/Chiller/package.mo b/AixLib/DataBase/Chiller/package.mo index c48201c00e..643b7333fa 100644 --- a/AixLib/DataBase/Chiller/package.mo +++ b/AixLib/DataBase/Chiller/package.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase; +within AixLib.DataBase; package Chiller "Collection of Chiller Database Records" extends Modelica.Icons.Package; diff --git a/AixLib/DataBase/HeatPump/EN14511/Vitocal200AWO201.mo b/AixLib/DataBase/HeatPump/EN14511/Vitocal200AWO201.mo index 468f63f50d..3924d9f2ce 100644 --- a/AixLib/DataBase/HeatPump/EN14511/Vitocal200AWO201.mo +++ b/AixLib/DataBase/HeatPump/EN14511/Vitocal200AWO201.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.HeatPump.EN14511; +within AixLib.DataBase.HeatPump.EN14511; record Vitocal200AWO201 "Vitocal200AWO201" extends AixLib.DataBase.HeatPump.HeatPumpBaseDataDefinition( diff --git a/AixLib/DataBase/HeatPump/Functions/Characteristics/CarnotFunction.mo b/AixLib/DataBase/HeatPump/Functions/Characteristics/CarnotFunction.mo index 71a578a3dd..06a7be44a4 100644 --- a/AixLib/DataBase/HeatPump/Functions/Characteristics/CarnotFunction.mo +++ b/AixLib/DataBase/HeatPump/Functions/Characteristics/CarnotFunction.mo @@ -1,8 +1,8 @@ -within AixLib.DataBase.HeatPump.Functions.Characteristics; +within AixLib.DataBase.HeatPump.Functions.Characteristics; function CarnotFunction "Function to emulate the polynomal approach of the Carnot_y heat pump model" extends PartialBaseFct; - parameter Modelica.SIunits.Power Pel_nominal=2000 + parameter Modelica.Units.SI.Power Pel_nominal=2000 "Constant nominal electric power"; parameter Real etaCarnot_nominal(unit="1") = 0.5 "Carnot effectiveness (=COP/COP_Carnot) used if use_eta_Carnot_nominal = true" @@ -12,7 +12,7 @@ function CarnotFunction "Coefficients for efficiency curve (need p(a=a, yPL=1)=1)" annotation (Dialog(group="Efficiency")); protected - Modelica.SIunits.Power Pel; + Modelica.Units.SI.Power Pel; Real COP; Real COP_carnot; Real etaPartLoad = AixLib.Utilities.Math.Functions.polynomial(a=a, x=N); diff --git a/AixLib/DataBase/HeatPump/Functions/Characteristics/ConstantCoP.mo b/AixLib/DataBase/HeatPump/Functions/Characteristics/ConstantCoP.mo index ace17bfc4b..e6766dc8be 100644 --- a/AixLib/DataBase/HeatPump/Functions/Characteristics/ConstantCoP.mo +++ b/AixLib/DataBase/HeatPump/Functions/Characteristics/ConstantCoP.mo @@ -6,7 +6,7 @@ function ConstantCoP "Constant CoP and constant electric power" T_eva, mFlow_eva, mFlow_con); - parameter Modelica.SIunits.Power powerCompressor=2000 + parameter Modelica.Units.SI.Power powerCompressor=2000 "Constant electric power input for compressor"; parameter Real CoP "Constant CoP"; algorithm diff --git a/AixLib/DataBase/HeatPump/Functions/Characteristics/ConstantQualityGrade.mo b/AixLib/DataBase/HeatPump/Functions/Characteristics/ConstantQualityGrade.mo index 40407d5a3c..9066692a2e 100644 --- a/AixLib/DataBase/HeatPump/Functions/Characteristics/ConstantQualityGrade.mo +++ b/AixLib/DataBase/HeatPump/Functions/Characteristics/ConstantQualityGrade.mo @@ -8,7 +8,7 @@ function ConstantQualityGrade mFlow_eva, mFlow_con); parameter Real qualityGrade=0.3 "Constant quality grade"; - parameter Modelica.SIunits.Power P_com=2000 + parameter Modelica.Units.SI.Power P_com=2000 "Constant electric power input for compressor"; protected Real CoP_C "Carnot CoP"; diff --git a/AixLib/DataBase/HeatPump/Functions/Characteristics/PolynomalApproach.mo b/AixLib/DataBase/HeatPump/Functions/Characteristics/PolynomalApproach.mo index 37ac032b4d..edac9b1cd5 100644 --- a/AixLib/DataBase/HeatPump/Functions/Characteristics/PolynomalApproach.mo +++ b/AixLib/DataBase/HeatPump/Functions/Characteristics/PolynomalApproach.mo @@ -1,10 +1,10 @@ -within AixLib.DataBase.HeatPump.Functions.Characteristics; +within AixLib.DataBase.HeatPump.Functions.Characteristics; function PolynomalApproach "Function to emulate the polynomal approach of the TRNSYS Type 401 heat pump model" extends PartialBaseFct; - parameter Modelica.SIunits.Power p[6] = {0,0,0,0,0,0} + parameter Modelica.Units.SI.Power p[6]={0,0,0,0,0,0} "Polynomal coefficient for the electrical power"; - parameter Modelica.SIunits.HeatFlowRate q[6] = {0,0,0,0,0,0} + parameter Modelica.Units.SI.HeatFlowRate q[6]={0,0,0,0,0,0} "Polynomal coefficient for the condenser heat flow"; protected diff --git a/AixLib/DataBase/HeatPump/Functions/IcingFactor/BasicIcingApproach.mo b/AixLib/DataBase/HeatPump/Functions/IcingFactor/BasicIcingApproach.mo index 828700d0ef..f6db42d97d 100644 --- a/AixLib/DataBase/HeatPump/Functions/IcingFactor/BasicIcingApproach.mo +++ b/AixLib/DataBase/HeatPump/Functions/IcingFactor/BasicIcingApproach.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.HeatPump.Functions.IcingFactor; +within AixLib.DataBase.HeatPump.Functions.IcingFactor; function BasicIcingApproach "A function which utilizes the outdoor air temperature and current heat flow from the evaporator" extends PartialBaseFct; diff --git a/AixLib/DataBase/HeatPump/Functions/IcingFactor/PartialBaseFct.mo b/AixLib/DataBase/HeatPump/Functions/IcingFactor/PartialBaseFct.mo index 75b6713352..3d82db0cea 100644 --- a/AixLib/DataBase/HeatPump/Functions/IcingFactor/PartialBaseFct.mo +++ b/AixLib/DataBase/HeatPump/Functions/IcingFactor/PartialBaseFct.mo @@ -1,10 +1,14 @@ -within AixLib.DataBase.HeatPump.Functions.IcingFactor; +within AixLib.DataBase.HeatPump.Functions.IcingFactor; partial function PartialBaseFct "Base function for all icing factor functions" extends Modelica.Icons.Function; - input Modelica.SIunits.ThermodynamicTemperature T_flow_ev "Evaporator supply temperature"; - input Modelica.SIunits.ThermodynamicTemperature T_ret_ev "Evaporator return temperature"; - input Modelica.SIunits.ThermodynamicTemperature T_oda "Outdoor air temperature"; - input Modelica.SIunits.MassFlowRate m_flow_ev "Mass flow rate at the evaporator"; + input Modelica.Units.SI.ThermodynamicTemperature T_flow_ev + "Evaporator supply temperature"; + input Modelica.Units.SI.ThermodynamicTemperature T_ret_ev + "Evaporator return temperature"; + input Modelica.Units.SI.ThermodynamicTemperature T_oda + "Outdoor air temperature"; + input Modelica.Units.SI.MassFlowRate m_flow_ev + "Mass flow rate at the evaporator"; output Real iceFac(min=0, max=1) "Efficiency factor (0..1) to estimate influence of icing. 0 means no heat is transferred through heat exchanger (fully frozen). 1 means no icing/frosting."; annotation (Documentation(revisions="
            diff --git a/AixLib/DataBase/HeatPump/Functions/IcingFactor/WetterAfjei1996.mo b/AixLib/DataBase/HeatPump/Functions/IcingFactor/WetterAfjei1996.mo index 6c1a265562..052a68d496 100644 --- a/AixLib/DataBase/HeatPump/Functions/IcingFactor/WetterAfjei1996.mo +++ b/AixLib/DataBase/HeatPump/Functions/IcingFactor/WetterAfjei1996.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.HeatPump.Functions.IcingFactor; +within AixLib.DataBase.HeatPump.Functions.IcingFactor; function WetterAfjei1996 "Correction of CoP (Icing, Defrost) according to Wetter,Afjei 1996" extends AixLib.DataBase.HeatPump.Functions.IcingFactor.PartialBaseFct; diff --git a/AixLib/DataBase/HeatPump/Functions/IcingFactor/package.mo b/AixLib/DataBase/HeatPump/Functions/IcingFactor/package.mo index bf2a30e7c7..5f96ccd1de 100644 --- a/AixLib/DataBase/HeatPump/Functions/IcingFactor/package.mo +++ b/AixLib/DataBase/HeatPump/Functions/IcingFactor/package.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.HeatPump.Functions; +within AixLib.DataBase.HeatPump.Functions; package IcingFactor "Package with functions to calculate current icing factor on evaporator" annotation (Documentation(revisions="
            • diff --git a/AixLib/DataBase/HeatPump/HeatPumpBaseDataDefinition.mo b/AixLib/DataBase/HeatPump/HeatPumpBaseDataDefinition.mo index 8071b51402..16925f7082 100644 --- a/AixLib/DataBase/HeatPump/HeatPumpBaseDataDefinition.mo +++ b/AixLib/DataBase/HeatPump/HeatPumpBaseDataDefinition.mo @@ -1,11 +1,11 @@ -within AixLib.DataBase.HeatPump; +within AixLib.DataBase.HeatPump; record HeatPumpBaseDataDefinition "Basic heat pump data" extends Modelica.Icons.Record; parameter Real tableQdot_con[:,:] "Heating power table; T in degC; Q_flow in W"; parameter Real tableP_ele[:,:] "Electrical power table; T in degC; Q_flow in W"; - parameter Modelica.SIunits.MassFlowRate mFlow_conNom + parameter Modelica.Units.SI.MassFlowRate mFlow_conNom "Nominal mass flow rate in condenser"; - parameter Modelica.SIunits.MassFlowRate mFlow_evaNom + parameter Modelica.Units.SI.MassFlowRate mFlow_evaNom "Nominal mass flow rate in evaporator"; parameter Real tableUppBou[:,2] "Points to define upper boundary for sink temperature"; diff --git a/AixLib/DataBase/HeatPump/PerformanceData/BaseClasses/PartialPerformanceData.mo b/AixLib/DataBase/HeatPump/PerformanceData/BaseClasses/PartialPerformanceData.mo index 1a5a5b4a90..488057c73a 100644 --- a/AixLib/DataBase/HeatPump/PerformanceData/BaseClasses/PartialPerformanceData.mo +++ b/AixLib/DataBase/HeatPump/PerformanceData/BaseClasses/PartialPerformanceData.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.HeatPump.PerformanceData.BaseClasses; +within AixLib.DataBase.HeatPump.PerformanceData.BaseClasses; partial model PartialPerformanceData "Model with a replaceable for different methods of data aggregation" diff --git a/AixLib/DataBase/HeatPump/PerformanceData/BaseClasses/package.mo b/AixLib/DataBase/HeatPump/PerformanceData/BaseClasses/package.mo index cc876ec990..5aaaa26c74 100644 --- a/AixLib/DataBase/HeatPump/PerformanceData/BaseClasses/package.mo +++ b/AixLib/DataBase/HeatPump/PerformanceData/BaseClasses/package.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.HeatPump.PerformanceData; +within AixLib.DataBase.HeatPump.PerformanceData; package BaseClasses "Package with partial classes of Performance Data" annotation (Icon(graphics={ Rectangle( diff --git a/AixLib/DataBase/HeatPump/PerformanceData/IcingBlock.mo b/AixLib/DataBase/HeatPump/PerformanceData/IcingBlock.mo index 97efb0b4a7..2a88484df3 100644 --- a/AixLib/DataBase/HeatPump/PerformanceData/IcingBlock.mo +++ b/AixLib/DataBase/HeatPump/PerformanceData/IcingBlock.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.HeatPump.PerformanceData; +within AixLib.DataBase.HeatPump.PerformanceData; model IcingBlock "Block which decreases evaporator power by an icing factor" AixLib.Utilities.Time.CalendarTime calTim(zerTim=zerTim, yearRef=yearRef); diff --git a/AixLib/DataBase/HeatPump/PerformanceData/LookUpTable2D.mo b/AixLib/DataBase/HeatPump/PerformanceData/LookUpTable2D.mo index 861b32e879..0d4e93604b 100644 --- a/AixLib/DataBase/HeatPump/PerformanceData/LookUpTable2D.mo +++ b/AixLib/DataBase/HeatPump/PerformanceData/LookUpTable2D.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.HeatPump.PerformanceData; +within AixLib.DataBase.HeatPump.PerformanceData; model LookUpTable2D "Performance data coming from manufacturer" extends AixLib.DataBase.HeatPump.PerformanceData.BaseClasses.PartialPerformanceData; diff --git a/AixLib/DataBase/HeatPump/PerformanceData/LookUpTableND.mo b/AixLib/DataBase/HeatPump/PerformanceData/LookUpTableND.mo index 774de84d0d..3b6a7f2375 100644 --- a/AixLib/DataBase/HeatPump/PerformanceData/LookUpTableND.mo +++ b/AixLib/DataBase/HeatPump/PerformanceData/LookUpTableND.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.HeatPump.PerformanceData; +within AixLib.DataBase.HeatPump.PerformanceData; model LookUpTableND "N-dimensional table with data for heat pump" extends AixLib.DataBase.HeatPump.PerformanceData.BaseClasses.PartialPerformanceData; diff --git a/AixLib/DataBase/HeatPump/PerformanceData/PolynomalApproach.mo b/AixLib/DataBase/HeatPump/PerformanceData/PolynomalApproach.mo index 77367c1d93..f4faa5ff85 100644 --- a/AixLib/DataBase/HeatPump/PerformanceData/PolynomalApproach.mo +++ b/AixLib/DataBase/HeatPump/PerformanceData/PolynomalApproach.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.HeatPump.PerformanceData; +within AixLib.DataBase.HeatPump.PerformanceData; model PolynomalApproach "Calculating heat pump data based on a polynomal approach" extends diff --git a/AixLib/DataBase/HeatPump/PerformanceData/VCLibMap.mo b/AixLib/DataBase/HeatPump/PerformanceData/VCLibMap.mo index 099e5a2f61..b115a67173 100644 --- a/AixLib/DataBase/HeatPump/PerformanceData/VCLibMap.mo +++ b/AixLib/DataBase/HeatPump/PerformanceData/VCLibMap.mo @@ -1,11 +1,11 @@ -within AixLib.DataBase.HeatPump.PerformanceData; +within AixLib.DataBase.HeatPump.PerformanceData; model VCLibMap "Multi-dimensional performance map encompasing choices of fluid and flowsheet based on steady state calculations using the Vapour Compression Library" extends BaseClasses.PartialPerformanceData; // Parameters Heat pump operation - parameter Modelica.SIunits.Power QCon_flow_nominal=5000 - "Nominal heating power of heat pump" annotation(Dialog(group= - "Heat pump specification")); + parameter Modelica.Units.SI.Power QCon_flow_nominal=5000 + "Nominal heating power of heat pump" + annotation (Dialog(group="Heat pump specification")); parameter String refrigerant="R410A" "Identifier for the refrigerant" annotation(Dialog(group= "Heat pump specification")); parameter String flowsheet="StandardFlowsheet" "Identifier for the flowsheet" annotation(Dialog(group= @@ -23,8 +23,12 @@ model VCLibMap parameter String tableName_QConNominal="Q_flow_con_nominal" "String identifier in sdf table for QConNominal" annotation (Dialog(tab="SDF File", group="Variable names")); parameter String tableName_mFlowEvaNominal="m_flow_eva" "String identifier in sdf table for mFlow_evaNominal" annotation (Dialog(tab="SDF File", group="Variable names")); parameter String tableName_mFlowConNominal="m_flow_con" "String identifier in sdf table for mFlow_conNominal" annotation (Dialog(tab="SDF File", group="Variable names")); - parameter Modelica.SIunits.Power Q_flowTableNom = SDF.Functions.readDatasetDouble(fileref, dataset_QflowNom, "W") - "Nominal heat flow in map. Doesn't need to be changed." annotation(Dialog(tab="SDF File", group="Variable names")); + parameter Modelica.Units.SI.Power Q_flowTableNom= + SDF.Functions.readDatasetDouble( + fileref, + dataset_QflowNom, + "W") "Nominal heat flow in map. Doesn't need to be changed." + annotation (Dialog(tab="SDF File", group="Variable names")); parameter Real minCOP=0.1 "Minimal possible COP value. Used to avoid division by zero error. Should never occur anyways if performance map is correctly created" annotation (Dialog(tab="Advanced")); @@ -103,13 +107,13 @@ model VCLibMap protected parameter String fileref = Modelica.Utilities.Files.loadResource(filename); - parameter Modelica.SIunits.MassFlowRate mFlow_evaNominal= + parameter Modelica.Units.SI.MassFlowRate mFlow_evaNominal= SDF.Functions.readDatasetDouble( fileref, dataset_mFlowEvaNominal, "kg/s") "Nominal mass flow rate"; - parameter Modelica.SIunits.MassFlowRate mFlow_conNominal= + parameter Modelica.Units.SI.MassFlowRate mFlow_conNominal= SDF.Functions.readDatasetDouble( fileref, dataset_mFlowConNominal, diff --git a/AixLib/DataBase/HeatPump/PerformanceData/calcCOP.mo b/AixLib/DataBase/HeatPump/PerformanceData/calcCOP.mo index 6baef1207a..9493e42f4f 100644 --- a/AixLib/DataBase/HeatPump/PerformanceData/calcCOP.mo +++ b/AixLib/DataBase/HeatPump/PerformanceData/calcCOP.mo @@ -1,9 +1,10 @@ -within AixLib.DataBase.HeatPump.PerformanceData; +within AixLib.DataBase.HeatPump.PerformanceData; model calcCOP "To calculate the COP or EER of a device, this model ensures no integration failure will happen" - parameter Modelica.SIunits.Power lowBouPel "If P_el falls below this value, COP will not be calculated"; - parameter Modelica.SIunits.Time aveTime=60 "Time span for average"; + parameter Modelica.Units.SI.Power lowBouPel + "If P_el falls below this value, COP will not be calculated"; + parameter Modelica.Units.SI.Time aveTime=60 "Time span for average"; Modelica.Blocks.Interfaces.RealInput Pel(final unit="W", final displayUnit= "kW") diff --git a/AixLib/DataBase/HeatPump/PerformanceData/package.mo b/AixLib/DataBase/HeatPump/PerformanceData/package.mo index f427ddd6cd..fb29c234d3 100644 --- a/AixLib/DataBase/HeatPump/PerformanceData/package.mo +++ b/AixLib/DataBase/HeatPump/PerformanceData/package.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.HeatPump; +within AixLib.DataBase.HeatPump; package PerformanceData "Different models used for a black box heat pump model" diff --git a/AixLib/DataBase/HeatPump/PerformanceData/package.order b/AixLib/DataBase/HeatPump/PerformanceData/package.order index b128d1c11c..3f4da3948b 100644 --- a/AixLib/DataBase/HeatPump/PerformanceData/package.order +++ b/AixLib/DataBase/HeatPump/PerformanceData/package.order @@ -1,7 +1,7 @@ -BaseClasses IcingBlock -VCLibMap LookUpTable2D LookUpTableND PolynomalApproach +VCLibMap calcCOP +BaseClasses diff --git a/AixLib/DataBase/Media/Refrigerants/BubbleDewStatePropertiesBaseDataDefinition.mo b/AixLib/DataBase/Media/Refrigerants/BubbleDewStatePropertiesBaseDataDefinition.mo index 932ee38be1..c21af81953 100644 --- a/AixLib/DataBase/Media/Refrigerants/BubbleDewStatePropertiesBaseDataDefinition.mo +++ b/AixLib/DataBase/Media/Refrigerants/BubbleDewStatePropertiesBaseDataDefinition.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Media.Refrigerants; +within AixLib.DataBase.Media.Refrigerants; record BubbleDewStatePropertiesBaseDataDefinition "Base data definition for fitting coefficients of thermodynamic state properties at bubble and dew line" @@ -111,158 +111,166 @@ record BubbleDewStatePropertiesBaseDataDefinition \"modelica://AixLib.Media.Refrigerants.Interfaces.TemplateHybridTwoPhaseMediumRecord\"> AixLib.Media.Refrigerants.Interfaces.TemplateHybridTwoPhaseMediumRecord:

              - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
              -

              - Saturation pressure -

              -
              -

              - \"Formula -

              -
              -

              - Saturation temperature -

              -
              -

              - \"Formula -

              -
              -

              - Bubble density -

              -
              -

              - \"Formula -

              -
              -

              - Dew density -

              -
              -

              - \"Formula -

              -
              -

              - Bubble Enthalpy -

              -
              -

              - \"Formula -

              -
              -

              - Dew Enthalpy -

              -
              -

              - \"Formula -

              -
              -

              - Bubble Entropy -

              -
              -

              - \"Formula -

              -
              -

              - Dew Entropy -

              -
              -

              - \"Formula -

              -
              +
              + \"Formulas for calculating saturation properties\" cellspacing=\"0\" + cellpadding=\"2\" border=\"1\" width=\"80%\" style= + \"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
              +

              + Saturation pressure +

              +
              +

              + \"Formula +

              +
              +

              + Saturation temperature +

              +
              +

              + \"Formula +

              +
              +

              + Bubble density +

              +
              +

              + \"Formula +

              +
              +

              + Dew density +

              +
              +

              + \"Formula +

              +
              +

              + Bubble Enthalpy +

              +
              +

              + \"Formula +

              +
              +

              + Dew Enthalpy +

              +
              +

              + \"Formula +

              +
              +

              + Bubble Entropy +

              +
              +

              + \"Formula +

              +
              +

              + Dew Entropy +

              +
              +

              + \"Formula +

              +
              +

              + As it can be seen, the fitted formulas consist basically of the + coefficient ei as well as of the parameters + Meani and Stdi. These coefficients are the + fitting coefficients and must be obtained during a fitting + procedure. While the fitting procedure, the formulas presented + above are fitted to external data (e.g. obtained from + measurements or external media libraries) and the fitting + coefficients are determined. +

              +

              + Assumptions and limitations +

              +

              + The fitting procedure is performed for a predefined range of + the external data that is given in terms of, for example, + temperature and pressure. As a consequence, the fitting + coefficients are also just valid within the predefined range of + external data. +

              +

              + References +

              +

              + Thorade, Matthis; Saadat, Ali (2012): HelmholtzMedia + - A fluid properties library. In: Proceedings of the 9th + International Modelica Conference; September 3-5; 2012; + Munich; Germany. Linköping University Electronic Press, S. 63–70. +

              +

              + Sangi, Roozbeh; Jahangiri, Pooyan; Klasing, Freerk; Streblow, + Rita; Müller, Dirk (2014): A Medium Model for the + Refrigerant Propane for Fast and Accurate Dynamic + Simulations. In: The 10th International Modelica + Conference. Lund, Sweden, March 10-12, 2014: Linköping + University Electronic Press (Linköping Electronic Conference + Proceedings), S. 1271–1275 +

              +
              -

              - As it can be seen, the fitted formulas consist basically of the - coefficient ei as well as of the parameters - Meani and Stdi. These coefficients are the - fitting coefficients and must be obtained during a fitting procedure. - While the fitting procedure, the formulas presented above are fitted - to external data (e.g. obtained from measurements or external media - libraries) and the fitting coefficients are determined. -

              -

              - Assumptions and limitations -

              -

              - The fitting procedure is performed for a predefined range of the - external data that is given in terms of, for example, temperature - and pressure. As a consequence, the fitting coefficients are also - just valid within the predefined range of external data. -

              -

              - References -

              -

              - Thorade, Matthis; Saadat, Ali (2012): HelmholtzMedia - A - fluid properties library. In: Proceedings of the 9th - International Modelica Conference; September 3-5; 2012; Munich; - Germany. Linköping University Electronic Press, S. 63–70. -

              -

              - Sangi, Roozbeh; Jahangiri, Pooyan; Klasing, Freerk; Streblow, Rita; - Müller, Dirk (2014): A - Medium Model for the Refrigerant Propane for Fast and Accurate - Dynamic Simulations. In: The 10th International Modelica - Conference. Lund, Sweden, March 10-12, 2014: Linköping University - Electronic Press (Linköping Electronic Conference Proceedings), S. - 1271–1275 -

              ")); end BubbleDewStatePropertiesBaseDataDefinition; diff --git a/AixLib/DataBase/Media/Refrigerants/HelmholtzEquationOfStateBaseDateDefinition.mo b/AixLib/DataBase/Media/Refrigerants/HelmholtzEquationOfStateBaseDateDefinition.mo index 1aab224d18..2b710edaf7 100644 --- a/AixLib/DataBase/Media/Refrigerants/HelmholtzEquationOfStateBaseDateDefinition.mo +++ b/AixLib/DataBase/Media/Refrigerants/HelmholtzEquationOfStateBaseDateDefinition.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Media.Refrigerants; +within AixLib.DataBase.Media.Refrigerants; record HelmholtzEquationOfStateBaseDateDefinition "Base data definition for fitting coefficients of the Helmholtz EoS" extends Modelica.Icons.Record; diff --git a/AixLib/DataBase/Media/Refrigerants/R134a/BDSP_IIR_P1_395_T233_370.mo b/AixLib/DataBase/Media/Refrigerants/R134a/BDSP_IIR_P1_395_T233_370.mo index ca2148a831..3db556f9b0 100644 --- a/AixLib/DataBase/Media/Refrigerants/R134a/BDSP_IIR_P1_395_T233_370.mo +++ b/AixLib/DataBase/Media/Refrigerants/R134a/BDSP_IIR_P1_395_T233_370.mo @@ -214,72 +214,77 @@ record BDSP_IIR_P1_395_T233_370 The provided coefficients are fitted to external data by Engelpracht and are valid within the following range

              - - - - - - - - - - - - - - - - +
              -

              - Parameter -

              -
              -

              - Minimum Value -

              -
              -

              - Maximum Value -

              -
              -

              - Pressure (p) in bar -

              -
              -

              - 1 -

              -
              -

              - 39.5 -

              -
              -

              - Temperature (T) in K -

              -
              -

              - 233.15 -

              -
              -

              - 370.15 -

              -
              +
              + \"Range of validiry\" cellspacing=\"0\" cellpadding=\"2\" border=\"1\" + width=\"30%\" style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + +
              +

              + Parameter +

              +
              +

              + Minimum Value +

              +
              +

              + Maximum Value +

              +
              +

              + Pressure (p) in bar +

              +
              +

              + 1 +

              +
              +

              + 39.5 +

              +
              +

              + Temperature (T) in K +

              +
              +

              + 233.15 +

              +
              +

              + 370.15 +

              +
              +

              + The reference point is defined as 200 kJ/kg and 1 kJ/kg/K, + respectively, for enthalpy and entropy for the saturated liquid + at 273.15 K. +

              +

              + References +

              +

              + Engelpracht, Mirko (2017): Development of modular and scalable + simulation models for heat pumps and chillers considering various + refrigerants. Master Thesis +

              +
              -

              - The reference point is defined as 200 kJ/kg and 1 kJ/kg/K, - respectively, for enthalpy and entropy for the saturated liquid at - 273.15 K. -

              -

              - References -

              -

              - Engelpracht, Mirko (2017): Development of modular and scalable - simulation models for heat pumps and chillers considering various - refrigerants. Master Thesis -

              ")); end BDSP_IIR_P1_395_T233_370; diff --git a/AixLib/DataBase/Media/Refrigerants/R134a/EoS_IIR_P1_395_T233_370.mo b/AixLib/DataBase/Media/Refrigerants/R134a/EoS_IIR_P1_395_T233_370.mo index abf528a912..307b5eeda8 100644 --- a/AixLib/DataBase/Media/Refrigerants/R134a/EoS_IIR_P1_395_T233_370.mo +++ b/AixLib/DataBase/Media/Refrigerants/R134a/EoS_IIR_P1_395_T233_370.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Media.Refrigerants.R134a; +within AixLib.DataBase.Media.Refrigerants.R134a; record EoS_IIR_P1_395_T233_370 "Record with fitting coefficients calculated for first implementation" extends AixLib.DataBase.Media.Refrigerants.HelmholtzEquationOfStateBaseDateDefinition( @@ -63,72 +63,77 @@ record EoS_IIR_P1_395_T233_370 The provided coefficients are fitted to external data by Engelpracht and are valid within the following range:

              - - - - - - - - - - - - - - - - +
              -

              - Parameter -

              -
              -

              - Minimum Value -

              -
              -

              - Maximum Value -

              -
              -

              - Pressure (p) in bar -

              -
              -

              - 1 -

              -
              -

              - 39.5 -

              -
              -

              - Temperature (T) in K -

              -
              -

              - 233.15 -

              -
              -

              - 370.15 -

              -
              +
              + \"Range of validiry\" cellspacing=\"0\" cellpadding=\"2\" border=\"1\" + width=\"30%\" style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + +
              +

              + Parameter +

              +
              +

              + Minimum Value +

              +
              +

              + Maximum Value +

              +
              +

              + Pressure (p) in bar +

              +
              +

              + 1 +

              +
              +

              + 39.5 +

              +
              +

              + Temperature (T) in K +

              +
              +

              + 233.15 +

              +
              +

              + 370.15 +

              +
              +

              + The reference point is defined as 200 kJ/kg and 1 kJ/kg/K, + respectively, for enthalpy and entropy for the saturated liquid + at 273.15 K. +

              +

              + References +

              +

              + Engelpracht, Mirko (2017): Development of modular and scalable + simulation models for heat pumps and chillers considering various + refrigerants. Master Thesis +

              +
              -

              - The reference point is defined as 200 kJ/kg and 1 kJ/kg/K, - respectively, for enthalpy and entropy for the saturated liquid at - 273.15 K. -

              -

              - References -

              -

              - Engelpracht, Mirko (2017): Development of modular and scalable - simulation models for heat pumps and chillers considering various - refrigerants. Master Thesis -

              ")); end EoS_IIR_P1_395_T233_370; diff --git a/AixLib/DataBase/Media/Refrigerants/R134a/TSP_IIR_P1_395_T233_370.mo b/AixLib/DataBase/Media/Refrigerants/R134a/TSP_IIR_P1_395_T233_370.mo index 5f0e755b2f..c5a0f5f0e1 100644 --- a/AixLib/DataBase/Media/Refrigerants/R134a/TSP_IIR_P1_395_T233_370.mo +++ b/AixLib/DataBase/Media/Refrigerants/R134a/TSP_IIR_P1_395_T233_370.mo @@ -205,72 +205,77 @@ record TSP_IIR_P1_395_T233_370 The provided coefficients are fitted to external data by Engelpracht and are valid within the following range:

              - - - - - - - - - - - - - - - - +
              -

              - Parameter -

              -
              -

              - Minimum Value -

              -
              -

              - Maximum Value -

              -
              -

              - Pressure (p) in bar -

              -
              -

              - 1 -

              -
              -

              - 39.5 -

              -
              -

              - Temperature (T) in K -

              -
              -

              - 233.15 -

              -
              -

              - 370.15 -

              -
              +
              + \"Range of validiry\" cellspacing=\"0\" cellpadding=\"2\" border=\"1\" + width=\"30%\" style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + +
              +

              + Parameter +

              +
              +

              + Minimum Value +

              +
              +

              + Maximum Value +

              +
              +

              + Pressure (p) in bar +

              +
              +

              + 1 +

              +
              +

              + 39.5 +

              +
              +

              + Temperature (T) in K +

              +
              +

              + 233.15 +

              +
              +

              + 370.15 +

              +
              +

              + The reference point is defined as 200 kJ/kg and 1 kJ/kg/K, + respectively, for enthalpy and entropy for the saturated liquid + at 273.15 K. +

              +

              + References +

              +

              + Engelpracht, Mirko (2017): Development of modular and scalable + simulation models for heat pumps and chillers considering various + refrigerants. Master Thesis +

              +
              -

              - The reference point is defined as 200 kJ/kg and 1 kJ/kg/K, - respectively, for enthalpy and entropy for the saturated liquid at - 273.15 K. -

              -

              - References -

              -

              - Engelpracht, Mirko (2017): Development of modular and scalable - simulation models for heat pumps and chillers considering various - refrigerants. Master Thesis -

              ")); end TSP_IIR_P1_395_T233_370; diff --git a/AixLib/DataBase/Media/Refrigerants/R290/BDSP_IIR_P05_30_T263_343.mo b/AixLib/DataBase/Media/Refrigerants/R290/BDSP_IIR_P05_30_T263_343.mo index 43ca1c0ea3..8094538750 100644 --- a/AixLib/DataBase/Media/Refrigerants/R290/BDSP_IIR_P05_30_T263_343.mo +++ b/AixLib/DataBase/Media/Refrigerants/R290/BDSP_IIR_P05_30_T263_343.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Media.Refrigerants.R290; +within AixLib.DataBase.Media.Refrigerants.R290; record BDSP_IIR_P05_30_T263_343 "Record with fitting coefficients taken from the Fast_Propane model" @@ -191,76 +191,82 @@ record BDSP_IIR_P05_30_T263_343 The provided coefficients are fitted to external data by Sangi et al. and are valid within the following range:

              - - - - - - - - - - - - - - - - +
              -

              - Parameter -

              -
              -

              - Minimum Value -

              -
              -

              - Maximum Value -

              -
              -

              - Pressure (p) in bar -

              -
              -

              - 0.5 -

              -
              -

              - 30 -

              -
              -

              - Temperature (T) in K -

              -
              -

              - 263.15 -

              -
              -

              - 343.15 -

              -
              +
              + \"Range of validiry\" cellspacing=\"0\" cellpadding=\"2\" border=\"1\" + width=\"30%\" style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + +
              +

              + Parameter +

              +
              +

              + Minimum Value +

              +
              +

              + Maximum Value +

              +
              +

              + Pressure (p) in bar +

              +
              +

              + 0.5 +

              +
              +

              + 30 +

              +
              +

              + Temperature (T) in K +

              +
              +

              + 263.15 +

              +
              +

              + 343.15 +

              +
              +

              + The reference point is defined as 200 kJ/kg and 1 kJ/kg/K, + respectively, for enthalpy and entropy for the saturated liquid + at 273.15 K. +

              +

              + References +

              +

              + Sangi, Roozbeh; Jahangiri, Pooyan; Klasing, Freerk; Streblow, + Rita; Müller, Dirk (2014): A Medium Model for the + Refrigerant Propane for Fast and Accurate Dynamic + Simulations. In: The 10th International Modelica + Conference. Lund, Sweden, March 10-12, 2014: Linköping + University Electronic Press (Linköping Electronic Conference + Proceedings), S. 1271–1275 +

              +
              -

              - The reference point is defined as 200 kJ/kg and 1 kJ/kg/K, - respectively, for enthalpy and entropy for the saturated liquid at - 273.15 K. -

              -

              - References -

              -

              - Sangi, Roozbeh; Jahangiri, Pooyan; Klasing, Freerk; Streblow, Rita; - Müller, Dirk (2014): A - Medium Model for the Refrigerant Propane for Fast and Accurate - Dynamic Simulations. In: The 10th International Modelica - Conference. Lund, Sweden, March 10-12, 2014: Linköping University - Electronic Press (Linköping Electronic Conference Proceedings), S. - 1271–1275 -

              ")); end BDSP_IIR_P05_30_T263_343; diff --git a/AixLib/DataBase/Media/Refrigerants/R290/EoS_IIR_P05_30_T263_343.mo b/AixLib/DataBase/Media/Refrigerants/R290/EoS_IIR_P05_30_T263_343.mo index cfd27ca635..b82a3ab9de 100644 --- a/AixLib/DataBase/Media/Refrigerants/R290/EoS_IIR_P05_30_T263_343.mo +++ b/AixLib/DataBase/Media/Refrigerants/R290/EoS_IIR_P05_30_T263_343.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Media.Refrigerants.R290; +within AixLib.DataBase.Media.Refrigerants.R290; record EoS_IIR_P05_30_T263_343 "Record with fitting coefficients taken from the Fast_Propane model" @@ -60,76 +60,82 @@ record EoS_IIR_P05_30_T263_343 The provided coefficients are fitted to external data by Sangi et al. and are valid within the following range:

              - - - - - - - - - - - - - - - - +
              -

              - Parameter -

              -
              -

              - Minimum Value -

              -
              -

              - Maximum Value -

              -
              -

              - Pressure (p) in bar -

              -
              -

              - 0.5 -

              -
              -

              - 30 -

              -
              -

              - Temperature (T) in K -

              -
              -

              - 263.15 -

              -
              -

              - 343.15 -

              -
              +
              + \"Range of validiry\" cellspacing=\"0\" cellpadding=\"2\" border=\"1\" + width=\"30%\" style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + +
              +

              + Parameter +

              +
              +

              + Minimum Value +

              +
              +

              + Maximum Value +

              +
              +

              + Pressure (p) in bar +

              +
              +

              + 0.5 +

              +
              +

              + 30 +

              +
              +

              + Temperature (T) in K +

              +
              +

              + 263.15 +

              +
              +

              + 343.15 +

              +
              +

              + The reference point is defined as 200 kJ/kg and 1 kJ/kg/K, + respectively, for enthalpy and entropy for the saturated liquid + at 273.15 K. +

              +

              + References +

              +

              + Sangi, Roozbeh; Jahangiri, Pooyan; Klasing, Freerk; Streblow, + Rita; Müller, Dirk (2014): A Medium Model for the + Refrigerant Propane for Fast and Accurate Dynamic + Simulations. In: The 10th International Modelica + Conference. Lund, Sweden, March 10-12, 2014: Linköping + University Electronic Press (Linköping Electronic Conference + Proceedings), S. 1271–1275 +

              +
              -

              - The reference point is defined as 200 kJ/kg and 1 kJ/kg/K, - respectively, for enthalpy and entropy for the saturated liquid at - 273.15 K. -

              -

              - References -

              -

              - Sangi, Roozbeh; Jahangiri, Pooyan; Klasing, Freerk; Streblow, Rita; - Müller, Dirk (2014): A - Medium Model for the Refrigerant Propane for Fast and Accurate - Dynamic Simulations. In: The 10th International Modelica - Conference. Lund, Sweden, March 10-12, 2014: Linköping University - Electronic Press (Linköping Electronic Conference Proceedings), S. - 1271–1275 -

              ")); end EoS_IIR_P05_30_T263_343; diff --git a/AixLib/DataBase/Media/Refrigerants/R290/TSP_IIR_P05_30_T263_343.mo b/AixLib/DataBase/Media/Refrigerants/R290/TSP_IIR_P05_30_T263_343.mo index e5ca234a2c..3d379cf463 100644 --- a/AixLib/DataBase/Media/Refrigerants/R290/TSP_IIR_P05_30_T263_343.mo +++ b/AixLib/DataBase/Media/Refrigerants/R290/TSP_IIR_P05_30_T263_343.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Media.Refrigerants.R290; +within AixLib.DataBase.Media.Refrigerants.R290; record TSP_IIR_P05_30_T263_343 "Record with fitting coefficients taken from the Fast_Propane model" @@ -131,76 +131,82 @@ record TSP_IIR_P05_30_T263_343 The provided coefficients are fitted to external data by Sangi et al. and are valid within the following range:

              - - - - - - - - - - - - - - - - +
              -

              - Parameter -

              -
              -

              - Minimum Value -

              -
              -

              - Maximum Value -

              -
              -

              - Pressure (p) in bar -

              -
              -

              - 0.5 -

              -
              -

              - 30 -

              -
              -

              - Temperature (T) in K -

              -
              -

              - 263.15 -

              -
              -

              - 343.15 -

              -
              +
              + \"Range of validiry\" cellspacing=\"0\" cellpadding=\"2\" border=\"1\" + width=\"30%\" style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + +
              +

              + Parameter +

              +
              +

              + Minimum Value +

              +
              +

              + Maximum Value +

              +
              +

              + Pressure (p) in bar +

              +
              +

              + 0.5 +

              +
              +

              + 30 +

              +
              +

              + Temperature (T) in K +

              +
              +

              + 263.15 +

              +
              +

              + 343.15 +

              +
              +

              + The reference point is defined as 200 kJ/kg and 1 kJ/kg/K, + respectively, for enthalpy and entropy for the saturated liquid + at 273.15 K. +

              +

              + References +

              +

              + Sangi, Roozbeh; Jahangiri, Pooyan; Klasing, Freerk; Streblow, + Rita; Müller, Dirk (2014): A Medium Model for the + Refrigerant Propane for Fast and Accurate Dynamic + Simulations. In: The 10th International Modelica + Conference. Lund, Sweden, March 10-12, 2014: Linköping + University Electronic Press (Linköping Electronic Conference + Proceedings), S. 1271–1275 +

              +
              -

              - The reference point is defined as 200 kJ/kg and 1 kJ/kg/K, - respectively, for enthalpy and entropy for the saturated liquid at - 273.15 K. -

              -

              - References -

              -

              - Sangi, Roozbeh; Jahangiri, Pooyan; Klasing, Freerk; Streblow, Rita; - Müller, Dirk (2014): A - Medium Model for the Refrigerant Propane for Fast and Accurate - Dynamic Simulations. In: The 10th International Modelica - Conference. Lund, Sweden, March 10-12, 2014: Linköping University - Electronic Press (Linköping Electronic Conference Proceedings), S. - 1271–1275 -

              ")); end TSP_IIR_P05_30_T263_343; diff --git a/AixLib/DataBase/Media/Refrigerants/R410a/BDSP_IIR_P1_48_T233_340.mo b/AixLib/DataBase/Media/Refrigerants/R410a/BDSP_IIR_P1_48_T233_340.mo index eb68d8f010..28e546e383 100644 --- a/AixLib/DataBase/Media/Refrigerants/R410a/BDSP_IIR_P1_48_T233_340.mo +++ b/AixLib/DataBase/Media/Refrigerants/R410a/BDSP_IIR_P1_48_T233_340.mo @@ -160,72 +160,77 @@ record BDSP_IIR_P1_48_T233_340 The provided coefficients are fitted to external data by Engelpracht and are valid within the following range:

              - - - - - - - - - - - - - - - - +
              -

              - Parameter -

              -
              -

              - Minimum Value -

              -
              -

              - Maximum Value -

              -
              -

              - Pressure (p) in bar -

              -
              -

              - 1 -

              -
              -

              - 48 -

              -
              -

              - Temperature (T) in K -

              -
              -

              - 233.15 -

              -
              -

              - 340.15 -

              -
              +
              + \"Range of validiry\" cellspacing=\"0\" cellpadding=\"2\" border=\"1\" + width=\"30%\" style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + +
              +

              + Parameter +

              +
              +

              + Minimum Value +

              +
              +

              + Maximum Value +

              +
              +

              + Pressure (p) in bar +

              +
              +

              + 1 +

              +
              +

              + 48 +

              +
              +

              + Temperature (T) in K +

              +
              +

              + 233.15 +

              +
              +

              + 340.15 +

              +
              +

              + The reference point is defined as 200 kJ/kg and 1 kJ/kg/K, + respectively, for enthalpy and entropy for the saturated liquid + at 273.15 K. +

              +

              + References +

              +

              + Engelpracht, Mirko (2017): Development of modular and scalable + simulation models for heat pumps and chillers considering various + refrigerants. Master Thesis +

              +
              -

              - The reference point is defined as 200 kJ/kg and 1 kJ/kg/K, - respectively, for enthalpy and entropy for the saturated liquid at - 273.15 K. -

              -

              - References -

              -

              - Engelpracht, Mirko (2017): Development of modular and scalable - simulation models for heat pumps and chillers considering various - refrigerants. Master Thesis -

              ")); end BDSP_IIR_P1_48_T233_340; diff --git a/AixLib/DataBase/Media/Refrigerants/R410a/EoS_IIR_P1_48_T233_340.mo b/AixLib/DataBase/Media/Refrigerants/R410a/EoS_IIR_P1_48_T233_340.mo index 125dde3fc8..26da0398b9 100644 --- a/AixLib/DataBase/Media/Refrigerants/R410a/EoS_IIR_P1_48_T233_340.mo +++ b/AixLib/DataBase/Media/Refrigerants/R410a/EoS_IIR_P1_48_T233_340.mo @@ -61,72 +61,77 @@ record EoS_IIR_P1_48_T233_340 The provided coefficients are fitted to external data by Engelpracht and are valid within the following range:

              - - - - - - - - - - - - - - - - +
              -

              - Parameter -

              -
              -

              - Minimum Value -

              -
              -

              - Maximum Value -

              -
              -

              - Pressure (p) in bar -

              -
              -

              - 1 -

              -
              -

              - 48 -

              -
              -

              - Temperature (T) in K -

              -
              -

              - 233.15 -

              -
              -

              - 340.15 -

              -
              +
              + \"Range of validiry\" cellspacing=\"0\" cellpadding=\"2\" border=\"1\" + width=\"30%\" style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + +
              +

              + Parameter +

              +
              +

              + Minimum Value +

              +
              +

              + Maximum Value +

              +
              +

              + Pressure (p) in bar +

              +
              +

              + 1 +

              +
              +

              + 48 +

              +
              +

              + Temperature (T) in K +

              +
              +

              + 233.15 +

              +
              +

              + 340.15 +

              +
              +

              + The reference point is defined as 200 kJ/kg and 1 kJ/kg/K, + respectively, for enthalpy and entropy for the saturated liquid + at 273.15 K. +

              +

              + References +

              +

              + Engelpracht, Mirko (2017): Development of modular and scalable + simulation models for heat pumps and chillers considering various + refrigerants. Master Thesis +

              +
              -

              - The reference point is defined as 200 kJ/kg and 1 kJ/kg/K, - respectively, for enthalpy and entropy for the saturated liquid at - 273.15 K. -

              -

              - References -

              -

              - Engelpracht, Mirko (2017): Development of modular and scalable - simulation models for heat pumps and chillers considering various - refrigerants. Master Thesis -

              ")); end EoS_IIR_P1_48_T233_340; diff --git a/AixLib/DataBase/Media/Refrigerants/R410a/TSP_IIR_P1_48_T233_340.mo b/AixLib/DataBase/Media/Refrigerants/R410a/TSP_IIR_P1_48_T233_340.mo index 7a7771730c..0c513d6a5f 100644 --- a/AixLib/DataBase/Media/Refrigerants/R410a/TSP_IIR_P1_48_T233_340.mo +++ b/AixLib/DataBase/Media/Refrigerants/R410a/TSP_IIR_P1_48_T233_340.mo @@ -211,72 +211,77 @@ record TSP_IIR_P1_48_T233_340 The provided coefficients are fitted to external data by Engelpracht and are valid within the following range:

              - - - - - - - - - - - - - - - - +
              -

              - Parameter -

              -
              -

              - Minimum Value -

              -
              -

              - Maximum Value -

              -
              -

              - Pressure (p) in bar -

              -
              -

              - 1 -

              -
              -

              - 48 -

              -
              -

              - Temperature (T) in K -

              -
              -

              - 233.15 -

              -
              -

              - 340.15 -

              -
              +
              + \"Range of validiry\" cellspacing=\"0\" cellpadding=\"2\" border=\"1\" + width=\"30%\" style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + +
              +

              + Parameter +

              +
              +

              + Minimum Value +

              +
              +

              + Maximum Value +

              +
              +

              + Pressure (p) in bar +

              +
              +

              + 1 +

              +
              +

              + 48 +

              +
              +

              + Temperature (T) in K +

              +
              +

              + 233.15 +

              +
              +

              + 340.15 +

              +
              +

              + The reference point is defined as 200 kJ/kg and 1 kJ/kg/K, + respectively, for enthalpy and entropy for the saturated liquid + at 273.15 K. +

              +

              + References +

              +

              + Engelpracht, Mirko (2017): Development of modular and scalable + simulation models for heat pumps and chillers considering various + refrigerants. Master Thesis +

              +
              -

              - The reference point is defined as 200 kJ/kg and 1 kJ/kg/K, - respectively, for enthalpy and entropy for the saturated liquid at - 273.15 K. -

              -

              - References -

              -

              - Engelpracht, Mirko (2017): Development of modular and scalable - simulation models for heat pumps and chillers considering various - refrigerants. Master Thesis -

              ")); end TSP_IIR_P1_48_T233_340; diff --git a/AixLib/DataBase/Media/Refrigerants/ThermodynamicStatePropertiesBaseDataDefinition.mo b/AixLib/DataBase/Media/Refrigerants/ThermodynamicStatePropertiesBaseDataDefinition.mo index 15f3dabcdc..9cacaa1ef9 100644 --- a/AixLib/DataBase/Media/Refrigerants/ThermodynamicStatePropertiesBaseDataDefinition.mo +++ b/AixLib/DataBase/Media/Refrigerants/ThermodynamicStatePropertiesBaseDataDefinition.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Media.Refrigerants; +within AixLib.DataBase.Media.Refrigerants; record ThermodynamicStatePropertiesBaseDataDefinition "Base data definition for fitting coefficients of thermodynamic state properties" @@ -131,159 +131,167 @@ record ThermodynamicStatePropertiesBaseDataDefinition \"modelica://AixLib.Media.Refrigerants.Interfaces.TemplateHybridTwoPhaseMediumRecord\"> AixLib.Media.Refrigerants.Interfaces.TemplateHybridTwoPhaseMediumRecord:

              - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
              -

              - Temperature_ph -

              -
              -

              - First Input -

              -
              -

              - - -

              -
              -

              - Second Input -

              -
              -

              - - -

              -
              -

              - Temperature_ps -

              -
              -

              - First Input -

              -
              -

              - - -

              -
              -

              - Second Input -

              -
              -

              - - -

              -
              -

              - Density_pT -

              -
              -

              - First Input -

              -
              -

              - - -

              -
              -

              - Second Input -

              -
              -

              - - -

              -
              -

              - Functional approach -

              -
              -

              - - -

              -
              +
              + \"Formulas for calculating thermodynamic properties\" cellspacing=\"0\" + cellpadding=\"3\" border=\"1\" width=\"80%\" style= + \"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
              +

              + Temperature_ph +

              +
              +

              + First Input +

              +
              +

              + + +

              +
              +

              + Second Input +

              +
              +

              + + +

              +
              +

              + Temperature_ps +

              +
              +

              + First Input +

              +
              +

              + + +

              +
              +

              + Second Input +

              +
              +

              + + +

              +
              +

              + Density_pT +

              +
              +

              + First Input +

              +
              +

              + + +

              +
              +

              + Second Input +

              +
              +

              + + +

              +
              +

              + Functional approach +

              +
              +

              + + +

              +
              +

              + As it can be seen, the fitted formulas consist basically of the + coefficient ci as well as of the parameters + Meani and Stdi. These coefficients are the + fitting coefficients and must be obtained during a fitting + procedure. While the fitting procedure, the formulas presented + above are fitted to external data (e.g. obtained from + measurements or external media libraries) and the fitting + coefficients are determined. +

              +

              + Assumptions and limitations +

              +

              + The fitting procedure is performed for a predefined range of + the external data that is given in terms of, for example, + temperature and pressure. As a consequence, the fitting + coefficients are also just valid within the predefined range of + external data. +

              +

              + References +

              +

              + Sangi, Roozbeh; Jahangiri, Pooyan; Klasing, Freerk; Streblow, + Rita; Müller, Dirk (2014): A Medium Model for the + Refrigerant Propane for Fast and Accurate Dynamic + Simulations. In: The 10th International Modelica + Conference. Lund, Sweden, March 10-12, 2014: Linköping + University Electronic Press (Linköping Electronic Conference + Proceedings), S. 1271–1275 +

              +
              -

              - As it can be seen, the fitted formulas consist basically of the - coefficient ci as well as of the parameters - Meani and Stdi. These coefficients are the - fitting coefficients and must be obtained during a fitting procedure. - While the fitting procedure, the formulas presented above are fitted - to external data (e.g. obtained from measurements or external media - libraries) and the fitting coefficients are determined. -

              -

              - Assumptions and limitations -

              -

              - The fitting procedure is performed for a predefined range of the - external data that is given in terms of, for example, temperature - and pressure. As a consequence, the fitting coefficients are also - just valid within the predefined range of external data. -

              -

              - References -

              -

              - Sangi, Roozbeh; Jahangiri, Pooyan; Klasing, Freerk; Streblow, Rita; - Müller, Dirk (2014): A - Medium Model for the Refrigerant Propane for Fast and Accurate - Dynamic Simulations. In: The 10th International Modelica - Conference. Lund, Sweden, March 10-12, 2014: Linköping University - Electronic Press (Linköping Electronic Conference Proceedings), S. - 1271–1275 -

              ")); end ThermodynamicStatePropertiesBaseDataDefinition; diff --git a/AixLib/DataBase/Pipes/InsulationBaseDataDefinition.mo b/AixLib/DataBase/Pipes/InsulationBaseDataDefinition.mo index ae8b23d265..20e19f27b5 100644 --- a/AixLib/DataBase/Pipes/InsulationBaseDataDefinition.mo +++ b/AixLib/DataBase/Pipes/InsulationBaseDataDefinition.mo @@ -2,7 +2,7 @@ within AixLib.DataBase.Pipes; record InsulationBaseDataDefinition "Definition of Parameter Values for insulation records" extends Modelica.Icons.Record; - import SI = Modelica.SIunits; + import Modelica.Units.SI; // Constant chemical Values assumed parameter Real factor diff --git a/AixLib/DataBase/Pipes/PipeBaseDataDefinition.mo b/AixLib/DataBase/Pipes/PipeBaseDataDefinition.mo index 842a74d14b..7063e43907 100644 --- a/AixLib/DataBase/Pipes/PipeBaseDataDefinition.mo +++ b/AixLib/DataBase/Pipes/PipeBaseDataDefinition.mo @@ -2,7 +2,7 @@ within AixLib.DataBase.Pipes; record PipeBaseDataDefinition "Base data definition of parameter values for pipes" extends Modelica.Icons.Record; - import SI = Modelica.SIunits; + import Modelica.Units.SI; // Constant chemical values assumed parameter SI.Diameter d_i "Inner pipe diameter"; diff --git a/AixLib/DataBase/Pumps/PumpPolynomialBased/Examples/testMaxMinHeightTable.mo b/AixLib/DataBase/Pumps/PumpPolynomialBased/Examples/testMaxMinHeightTable.mo index 88a5f90d8e..692c6a0830 100644 --- a/AixLib/DataBase/Pumps/PumpPolynomialBased/Examples/testMaxMinHeightTable.mo +++ b/AixLib/DataBase/Pumps/PumpPolynomialBased/Examples/testMaxMinHeightTable.mo @@ -17,13 +17,13 @@ model testMaxMinHeightTable annotation (Placement(transformation(extent={{40,10},{80,50}}))); Modelica.Blocks.Interfaces.RealOutput HminCurve annotation (Placement(transformation(extent={{40,-50},{80,-10}}))); - Modelica.Blocks.Tables.CombiTable1D maxMinTable( + Modelica.Blocks.Tables.CombiTable1Dv maxMinTable( columns={2,3}, tableName="NoName", tableOnFile=false, table=param.maxMinHeight) "Outputs static head (H). Maximum, minimum and freely selectable pump curve" - annotation (Placement(transformation(extent={{-11,-10},{9,10}}, rotation=0))); + annotation (Placement(transformation(extent={{-11,-10},{9,10}}, rotation=0))); initial equation assert( (sum(abs(param.maxMinHeight)) <> 0), diff --git a/AixLib/DataBase/Pumps/PumpPolynomialBased/Examples/testPumpSpeedCalculation.mo b/AixLib/DataBase/Pumps/PumpPolynomialBased/Examples/testPumpSpeedCalculation.mo index 87d8ad1edf..6ae4c28967 100644 --- a/AixLib/DataBase/Pumps/PumpPolynomialBased/Examples/testPumpSpeedCalculation.mo +++ b/AixLib/DataBase/Pumps/PumpPolynomialBased/Examples/testPumpSpeedCalculation.mo @@ -21,9 +21,9 @@ model testPumpSpeedCalculation parameter Real maxQ(unit="m3/h", displayUnit="m3/h") = param.maxMinHeight[ size(param.maxMinHeight, 1), 1]; - parameter Modelica.SIunits.Length maxHead = max(param.maxMinHeight[:, 2]) + parameter Modelica.Units.SI.Length maxHead=max(param.maxMinHeight[:, 2]) "maximum static head of the pump"; - parameter Modelica.SIunits.Length minHead = max(param.maxMinHeight[:, 3]) + parameter Modelica.Units.SI.Length minHead=max(param.maxMinHeight[:, 3]) "aprox. minimum static head of the pump"; Modelica.Blocks.Sources.TimeTable headTable(table=[ diff --git a/AixLib/DataBase/Pumps/PumpPolynomialBased/PumpBaseRecord.mo b/AixLib/DataBase/Pumps/PumpPolynomialBased/PumpBaseRecord.mo index 94718b3247..c9e599af99 100644 --- a/AixLib/DataBase/Pumps/PumpPolynomialBased/PumpBaseRecord.mo +++ b/AixLib/DataBase/Pumps/PumpPolynomialBased/PumpBaseRecord.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Pumps.PumpPolynomialBased; +within AixLib.DataBase.Pumps.PumpPolynomialBased; record PumpBaseRecord "Definition of pump data" extends Modelica.Icons.Record; // ***************************************************** @@ -10,17 +10,12 @@ record PumpBaseRecord "Definition of pump data" 5, 12, 0.75; 10, 0.5, 0.5] "maximum and minimum boundaries of pump (Q [m3/h], Hmax [m], Hmin [m])"; - parameter Modelica.SIunits.Conversions.NonSIunits.AngularVelocity_rpm[:, :] - maxMinSpeedCurves=[ - -1, nMax, nMin; - 0, nMax, nMin; - 5, 0.5*nMax, nMin; - 10, nMin, nMin] - "maximum and minimum boundaries of pump speed + parameter Modelica.Units.NonSI.AngularVelocity_rpm[:,:] maxMinSpeedCurves=[-1, + nMax,nMin; 0,nMax,nMin; 5,0.5*nMax,nMin; 10,nMin,nMin] "maximum and minimum boundaries of pump speed (Q [m3/h], nMax [rev/min], nMin [rev/min])"; - parameter Modelica.SIunits.Conversions.NonSIunits.AngularVelocity_rpm nMin=0 + parameter Modelica.Units.NonSI.AngularVelocity_rpm nMin=0 "minimum pump speed"; - parameter Modelica.SIunits.Conversions.NonSIunits.AngularVelocity_rpm nMax=0 + parameter Modelica.Units.NonSI.AngularVelocity_rpm nMax=0 "maximum pump speed"; // ***************************************************** diff --git a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN100.mo b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN100.mo index ba8ed5b4d3..9d9cfc1c7f 100644 --- a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN100.mo +++ b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN100.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Pumps.PumpPolynomialBased; +within AixLib.DataBase.Pumps.PumpPolynomialBased; record Pump_DN100 "Pump with head 1 to 34m and 378.24m^3/h volume flow" extends PumpBaseRecord( maxMinHeight=[ diff --git a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN100_H1_17.mo b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN100_H1_17.mo index cfc08034dd..f2278a8f1f 100644 --- a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN100_H1_17.mo +++ b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN100_H1_17.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Pumps.PumpPolynomialBased; +within AixLib.DataBase.Pumps.PumpPolynomialBased; record Pump_DN100_H1_17 "Pump with head 1 to 17m and 136.48m^3/h volume flow" extends PumpBaseRecord( maxMinHeight=[ diff --git a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN200.mo b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN200.mo index ba1f30920d..acc370f0fd 100644 --- a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN200.mo +++ b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN200.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Pumps.PumpPolynomialBased; +within AixLib.DataBase.Pumps.PumpPolynomialBased; record Pump_DN200 "Pump with head 1 to 18m and 590m^3/h volume flow" extends PumpBaseRecord( maxMinHeight=[ diff --git a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN25_H1_4_V3.mo b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN25_H1_4_V3.mo index 0338a81628..570a48339e 100644 --- a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN25_H1_4_V3.mo +++ b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN25_H1_4_V3.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Pumps.PumpPolynomialBased; +within AixLib.DataBase.Pumps.PumpPolynomialBased; record Pump_DN25_H1_4_V3 "Pump with head 1 to 4m and 3.17m^3/h volume flow" extends PumpBaseRecord( maxMinHeight=[ diff --git a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN25_H1_6_V4.mo b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN25_H1_6_V4.mo index 3c8b02fe42..91679cdf1c 100644 --- a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN25_H1_6_V4.mo +++ b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN25_H1_6_V4.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Pumps.PumpPolynomialBased; +within AixLib.DataBase.Pumps.PumpPolynomialBased; record Pump_DN25_H1_6_V4 "Pump with head 1 to 6m and 4.25m^3/h volume flow" extends PumpBaseRecord( maxMinHeight=[ diff --git a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN25_H1_6_V8.mo b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN25_H1_6_V8.mo index f7178456f8..c41081b350 100644 --- a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN25_H1_6_V8.mo +++ b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN25_H1_6_V8.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Pumps.PumpPolynomialBased; +within AixLib.DataBase.Pumps.PumpPolynomialBased; record Pump_DN25_H1_6_V8 "Pump with head 1 to 6m and 8.87m^3/h volume flow" extends PumpBaseRecord( diff --git a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN25_H1_8_V5.mo b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN25_H1_8_V5.mo index e9eaba913b..8128cfa5b1 100644 --- a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN25_H1_8_V5.mo +++ b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN25_H1_8_V5.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Pumps.PumpPolynomialBased; +within AixLib.DataBase.Pumps.PumpPolynomialBased; record Pump_DN25_H1_8_V5 "Pump with head 1 to 8m and 5m^3/h volume flow" extends PumpBaseRecord( diff --git a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN25_H1_8_V9.mo b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN25_H1_8_V9.mo index a8878152d9..dbc077f7ae 100644 --- a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN25_H1_8_V9.mo +++ b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN25_H1_8_V9.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Pumps.PumpPolynomialBased; +within AixLib.DataBase.Pumps.PumpPolynomialBased; record Pump_DN25_H1_8_V9 "Pump with head 1 to 8m and 9m^3/h volume flow" extends PumpBaseRecord( diff --git a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN30_H1_12_V13.mo b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN30_H1_12_V13.mo index 39a58a01e1..7e947d0375 100644 --- a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN30_H1_12_V13.mo +++ b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN30_H1_12_V13.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Pumps.PumpPolynomialBased; +within AixLib.DataBase.Pumps.PumpPolynomialBased; record Pump_DN30_H1_12_V13 "Pump with head 1 to 12m and 13.5m^3/h volume flow" extends PumpBaseRecord( diff --git a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN32.mo b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN32.mo index df99070e2b..caeae4f048 100644 --- a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN32.mo +++ b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN32.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Pumps.PumpPolynomialBased; +within AixLib.DataBase.Pumps.PumpPolynomialBased; record Pump_DN32 "Pump with head 1 to 24m and 22.34m^3/h volume flow" extends PumpBaseRecord( maxMinHeight=[ diff --git a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN40.mo b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN40.mo index b35a2c8fb9..afd7061d71 100644 --- a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN40.mo +++ b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN40.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Pumps.PumpPolynomialBased; +within AixLib.DataBase.Pumps.PumpPolynomialBased; record Pump_DN40 "Pump with head 1 to 12m and 21m^3/h volume flow" extends PumpBaseRecord( maxMinHeight=[ diff --git a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN40_H10.mo b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN40_H10.mo index e1b802be5f..0f8976fc0c 100644 --- a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN40_H10.mo +++ b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN40_H10.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Pumps.PumpPolynomialBased; +within AixLib.DataBase.Pumps.PumpPolynomialBased; record Pump_DN40_H10 "Pump with head 10m and 21m^3/h volume flow" extends PumpBaseRecord( maxMinHeight=[ diff --git a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN40_H1_12_V24.mo b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN40_H1_12_V24.mo index c919cf86ff..55668d1724 100644 --- a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN40_H1_12_V24.mo +++ b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN40_H1_12_V24.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Pumps.PumpPolynomialBased; +within AixLib.DataBase.Pumps.PumpPolynomialBased; record Pump_DN40_H1_12_V24 "Pump with head 1 to 12m and 24m^3/h volume flow" extends PumpBaseRecord( maxMinHeight=[ diff --git a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN40_H1_16_V29.mo b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN40_H1_16_V29.mo index 7cbd21c227..a6a5da0905 100644 --- a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN40_H1_16_V29.mo +++ b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN40_H1_16_V29.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Pumps.PumpPolynomialBased; +within AixLib.DataBase.Pumps.PumpPolynomialBased; record Pump_DN40_H1_16_V29 "Pump with head 1 to 16m and 28.9m^3/h volume flow" extends PumpBaseRecord( maxMinHeight=[ diff --git a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN40_H1_45.mo b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN40_H1_45.mo index 85bf32b628..fcc8e9b023 100644 --- a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN40_H1_45.mo +++ b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN40_H1_45.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Pumps.PumpPolynomialBased; +within AixLib.DataBase.Pumps.PumpPolynomialBased; record Pump_DN40_H1_45 "Pump with head 1 to 45m and 47.5m^3/h volume flow" extends PumpBaseRecord( maxMinHeight=[ diff --git a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN40_H1_8_V17.mo b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN40_H1_8_V17.mo index 63058dda71..c6febf6b82 100644 --- a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN40_H1_8_V17.mo +++ b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN40_H1_8_V17.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Pumps.PumpPolynomialBased; +within AixLib.DataBase.Pumps.PumpPolynomialBased; record Pump_DN40_H1_8_V17 "Pump with head 1 to 8m and 17.5m^3/h volume flow" extends PumpBaseRecord( maxMinHeight=[ diff --git a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN50.mo b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN50.mo index f8702c9e34..454c3f4e29 100644 --- a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN50.mo +++ b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN50.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Pumps.PumpPolynomialBased; +within AixLib.DataBase.Pumps.PumpPolynomialBased; record Pump_DN50 "Pump with head 1 to 12m and 43m^3/h volume flow" extends PumpBaseRecord( maxMinHeight=[ diff --git a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN50_H10.mo b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN50_H10.mo index b6b6a4c435..304ec00e25 100644 --- a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN50_H10.mo +++ b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN50_H10.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Pumps.PumpPolynomialBased; +within AixLib.DataBase.Pumps.PumpPolynomialBased; record Pump_DN50_H10 "Pump with head 10m and 32.23m^3/h volume flow" extends PumpBaseRecord( maxMinHeight=[ diff --git a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN50_H1_38.mo b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN50_H1_38.mo index cdfa7035aa..7db0b82ff5 100644 --- a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN50_H1_38.mo +++ b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN50_H1_38.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Pumps.PumpPolynomialBased; +within AixLib.DataBase.Pumps.PumpPolynomialBased; record Pump_DN50_H1_38 "Pump with head 1 to 38m and 52.14m^3/h volume flow" extends PumpBaseRecord( maxMinHeight=[ diff --git a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN50_H1_9_V29.mo b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN50_H1_9_V29.mo index d8c1b65516..0597b2fe06 100644 --- a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN50_H1_9_V29.mo +++ b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN50_H1_9_V29.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Pumps.PumpPolynomialBased; +within AixLib.DataBase.Pumps.PumpPolynomialBased; record Pump_DN50_H1_9_V29 "Pump with head 1 to 9m and 29.24m^3/h volume flow" extends PumpBaseRecord( maxMinHeight=[ diff --git a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN65.mo b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN65.mo index 978b41c51b..6f783b47e3 100644 --- a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN65.mo +++ b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN65.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Pumps.PumpPolynomialBased; +within AixLib.DataBase.Pumps.PumpPolynomialBased; record Pump_DN65 "Pump with head 1 to 32m and 100m^3/h volume flow" extends PumpBaseRecord( maxMinHeight=[ diff --git a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN65_H15.mo b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN65_H15.mo index f3cf896348..bf5fe46701 100644 --- a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN65_H15.mo +++ b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN65_H15.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Pumps.PumpPolynomialBased; +within AixLib.DataBase.Pumps.PumpPolynomialBased; record Pump_DN65_H15 "Pump with head 15m and 52.21m^3/h volume flow" extends PumpBaseRecord( maxMinHeight=[ diff --git a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN65_H1_12_V48.mo b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN65_H1_12_V48.mo index 85275748c8..9cb0e0d1c7 100644 --- a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN65_H1_12_V48.mo +++ b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN65_H1_12_V48.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Pumps.PumpPolynomialBased; +within AixLib.DataBase.Pumps.PumpPolynomialBased; record Pump_DN65_H1_12_V48 "Pump with head 1 to 12m and 47.88m^3/h volume flow" extends PumpBaseRecord( maxMinHeight=[ diff --git a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN65_H1_16_V26.mo b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN65_H1_16_V26.mo index 3532ee751e..b202147d7a 100644 --- a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN65_H1_16_V26.mo +++ b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN65_H1_16_V26.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Pumps.PumpPolynomialBased; +within AixLib.DataBase.Pumps.PumpPolynomialBased; record Pump_DN65_H1_16_V26 "Pump with head 1 to 16m and 26.23m^3/h volume flow" extends PumpBaseRecord( maxMinHeight=[ diff --git a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN65_H1_17.mo b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN65_H1_17.mo index ac0e620fd5..d7ed128779 100644 --- a/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN65_H1_17.mo +++ b/AixLib/DataBase/Pumps/PumpPolynomialBased/Pump_DN65_H1_17.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Pumps.PumpPolynomialBased; +within AixLib.DataBase.Pumps.PumpPolynomialBased; record Pump_DN65_H1_17 "Pump with head 1 to 17m and 67.9m^3/h volume flow" extends PumpBaseRecord( maxMinHeight=[ diff --git a/AixLib/DataBase/Radiators/RadiatorBaseDataDefinition.mo b/AixLib/DataBase/Radiators/RadiatorBaseDataDefinition.mo index 867eabb26c..0c872b9b2d 100644 --- a/AixLib/DataBase/Radiators/RadiatorBaseDataDefinition.mo +++ b/AixLib/DataBase/Radiators/RadiatorBaseDataDefinition.mo @@ -4,10 +4,10 @@ record RadiatorBaseDataDefinition "Base Data Definition for Radiators" parameter Real NominalPower(unit="W/m") "Nominal power of radiator per m at nominal temperatures" annotation (Dialog(group="Geometry")); - parameter Modelica.SIunits.Temperature RT_nom[3] + parameter Modelica.Units.SI.Temperature RT_nom[3] "Nominal temperatures (Tin, Tout, Tair) according to DIN-EN 442." annotation (Dialog(group="Geometry")); - parameter Modelica.SIunits.Pressure PressureDrop + parameter Modelica.Units.SI.Pressure PressureDrop "Pressure drop coefficient, delta_p[Pa] = PD*m_flow[kg/s]^2"; parameter Real Exponent "Radiator exponent" @@ -18,24 +18,19 @@ record RadiatorBaseDataDefinition "Base Data Definition for Radiators" parameter Real MassSteel(unit="kg/m") "Material mass of radiator per m" annotation (Dialog(group="Geometry")); -parameter Modelica.SIunits.Density DensitySteel=7900 - "Specific density of steel" - annotation (Dialog(group="Material")); - parameter Modelica.SIunits.SpecificHeatCapacity CapacitySteel=551 - "Specific heat capacity of steel" - annotation (Dialog(group="Material")); - parameter Modelica.SIunits.ThermalConductivity LambdaSteel=60 - "Thermal conductivity of steel" - annotation (Dialog(group="Material")); + parameter Modelica.Units.SI.Density DensitySteel=7900 + "Specific density of steel" annotation (Dialog(group="Material")); + parameter Modelica.Units.SI.SpecificHeatCapacity CapacitySteel=551 + "Specific heat capacity of steel" annotation (Dialog(group="Material")); + parameter Modelica.Units.SI.ThermalConductivity LambdaSteel=60 + "Thermal conductivity of steel" annotation (Dialog(group="Material")); parameter AixLib.Fluid.HeatExchangers.Radiators.BaseClasses.RadiatorTypes.RadiatorType Type "Type of radiator" annotation (Dialog(group="Geometry")); - parameter Modelica.SIunits.Length length - "Length of radiator"; - parameter Modelica.SIunits.Height height - "Height of radiator"; + parameter Modelica.Units.SI.Length length "Length of radiator"; + parameter Modelica.Units.SI.Height height "Height of radiator"; annotation (Documentation(info="

              Overview

              diff --git a/AixLib/DataBase/Radiators/Standard_MFD_WSchV1984_OneAppartment/Radiator_Bathroom.mo b/AixLib/DataBase/Radiators/Standard_MFD_WSchV1984_OneAppartment/Radiator_Bathroom.mo index 04d7d608a6..0770aef9f3 100644 --- a/AixLib/DataBase/Radiators/Standard_MFD_WSchV1984_OneAppartment/Radiator_Bathroom.mo +++ b/AixLib/DataBase/Radiators/Standard_MFD_WSchV1984_OneAppartment/Radiator_Bathroom.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Radiators.Standard_MFD_WSchV1984_OneAppartment; +within AixLib.DataBase.Radiators.Standard_MFD_WSchV1984_OneAppartment; record Radiator_Bathroom "ThermX2, Profil V (Kermi) Power=603W, L=700, H=300, Typ=22, {75,65,24}" extends AixLib.DataBase.Radiators.RadiatorBaseDataDefinition( diff --git a/AixLib/DataBase/Radiators/Standard_MFD_WSchV1984_OneAppartment/Radiator_Bedroom.mo b/AixLib/DataBase/Radiators/Standard_MFD_WSchV1984_OneAppartment/Radiator_Bedroom.mo index 281807aa84..f462b9e242 100644 --- a/AixLib/DataBase/Radiators/Standard_MFD_WSchV1984_OneAppartment/Radiator_Bedroom.mo +++ b/AixLib/DataBase/Radiators/Standard_MFD_WSchV1984_OneAppartment/Radiator_Bedroom.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Radiators.Standard_MFD_WSchV1984_OneAppartment; +within AixLib.DataBase.Radiators.Standard_MFD_WSchV1984_OneAppartment; record Radiator_Bedroom "ThermX2, Profil V (Kermi) Power=882W, L=1600, H=300, Typ=11, {75,65,20}" extends AixLib.DataBase.Radiators.RadiatorBaseDataDefinition( diff --git a/AixLib/DataBase/Radiators/Standard_MFD_WSchV1984_OneAppartment/Radiator_Children.mo b/AixLib/DataBase/Radiators/Standard_MFD_WSchV1984_OneAppartment/Radiator_Children.mo index 6960bb98e4..c2ccdb9bd3 100644 --- a/AixLib/DataBase/Radiators/Standard_MFD_WSchV1984_OneAppartment/Radiator_Children.mo +++ b/AixLib/DataBase/Radiators/Standard_MFD_WSchV1984_OneAppartment/Radiator_Children.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Radiators.Standard_MFD_WSchV1984_OneAppartment; +within AixLib.DataBase.Radiators.Standard_MFD_WSchV1984_OneAppartment; record Radiator_Children "ThermX2, Profil V (Kermi) Power=882W, L=1600, H=300, Typ=11, {75,65,20}" extends AixLib.DataBase.Radiators.RadiatorBaseDataDefinition( diff --git a/AixLib/DataBase/Radiators/Standard_MFD_WSchV1984_OneAppartment/Radiator_Kitchen.mo b/AixLib/DataBase/Radiators/Standard_MFD_WSchV1984_OneAppartment/Radiator_Kitchen.mo index 8ff129a61d..cfa33fb1d0 100644 --- a/AixLib/DataBase/Radiators/Standard_MFD_WSchV1984_OneAppartment/Radiator_Kitchen.mo +++ b/AixLib/DataBase/Radiators/Standard_MFD_WSchV1984_OneAppartment/Radiator_Kitchen.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Radiators.Standard_MFD_WSchV1984_OneAppartment; +within AixLib.DataBase.Radiators.Standard_MFD_WSchV1984_OneAppartment; record Radiator_Kitchen "ThermX2, Profil V (Kermi) Power=576W, L=800, H=300, Typ=12, {75,65,20}" extends AixLib.DataBase.Radiators.RadiatorBaseDataDefinition( diff --git a/AixLib/DataBase/Radiators/Standard_MFD_WSchV1984_OneAppartment/Radiator_Livingroom.mo b/AixLib/DataBase/Radiators/Standard_MFD_WSchV1984_OneAppartment/Radiator_Livingroom.mo index 335dd8917f..b19e689586 100644 --- a/AixLib/DataBase/Radiators/Standard_MFD_WSchV1984_OneAppartment/Radiator_Livingroom.mo +++ b/AixLib/DataBase/Radiators/Standard_MFD_WSchV1984_OneAppartment/Radiator_Livingroom.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Radiators.Standard_MFD_WSchV1984_OneAppartment; +within AixLib.DataBase.Radiators.Standard_MFD_WSchV1984_OneAppartment; record Radiator_Livingroom "ThermX2, Profil V (Kermi) Power=1267W, L=0.5, H=300, Typ=11, {75,65,20}" extends AixLib.DataBase.Radiators.RadiatorBaseDataDefinition( diff --git a/AixLib/DataBase/SolarElectric/SchuecoSPV170SME1.mo b/AixLib/DataBase/SolarElectric/SchuecoSPV170SME1.mo index 428596e0c2..845a258a18 100644 --- a/AixLib/DataBase/SolarElectric/SchuecoSPV170SME1.mo +++ b/AixLib/DataBase/SolarElectric/SchuecoSPV170SME1.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.SolarElectric; +within AixLib.DataBase.SolarElectric; record SchuecoSPV170SME1 "Schüco SPV 170 SME-1" extends AixLib.DataBase.SolarElectric.PVBaseDataDefinition( diff --git a/AixLib/DataBase/SolarElectric/package.mo b/AixLib/DataBase/SolarElectric/package.mo index 3219f66ed9..9e9efa6a13 100644 --- a/AixLib/DataBase/SolarElectric/package.mo +++ b/AixLib/DataBase/SolarElectric/package.mo @@ -3,57 +3,56 @@ package SolarElectric record PVBaseDataDefinition "Basic record of a PV module" extends Modelica.Icons.Record; - parameter Modelica.SIunits.Efficiency eta_0 - "Efficiency under standard conditions. If not found in data sheet, use eta_0 = ((V_mp0*I_mp0)/(1000*A_cel*n_ser))" - annotation(Dialog(group="General")); + parameter Modelica.Units.SI.Efficiency eta_0 + "Efficiency under standard conditions. If not found in data sheet, use eta_0 = ((V_mp0*I_mp0)/(1000*A_cel*n_ser))" + annotation (Dialog(group="General")); parameter Real n_ser "Number of cells connected in series on the PV panel" annotation(Dialog(group="General")); parameter Real n_par "Number of parallel cell circuits on the PV panel" annotation(Dialog(group="General")); - parameter Modelica.SIunits.Area A_cel - "Area of a single cell. If not found in data sheet, use A_cel = ((V_mp0*I_mp0)/(1000*eta_0))/n_ser" - annotation(Dialog(group="Cell specific: Geometrical data")); - parameter Modelica.SIunits.Area A_pan = A_cel*n_ser*n_par - "Area of one Panel, must not be confused with area of the whole module" - annotation(Dialog(group="Cell specific: Geometrical data")); - parameter Modelica.SIunits.Area A_mod - "Area of one module (housing)" - annotation(Dialog(group="Cell specific: Geometrical data")); - parameter Modelica.SIunits.Voltage V_oc0 - "Open circuit voltage under standard conditions" - annotation(Dialog(group="Cell specific: Electrical characteristics")); - parameter Modelica.SIunits.ElectricCurrent I_sc0 - "Short circuit current under standard conditions" - annotation(Dialog(group="Cell specific: Electrical characteristics")); - parameter Modelica.SIunits.Voltage V_mp0 - "MPP voltage under standard conditions" - annotation(Dialog(group="Cell specific: Electrical characteristics")); - parameter Modelica.SIunits.ElectricCurrent I_mp0 - "MPP current under standard conditions" - annotation(Dialog(group="Cell specific: Electrical characteristics")); - parameter Modelica.SIunits.Power P_mp0 - "MPP power of one PV module under standard conditions" - annotation(Dialog(group="Cell specific: Electrical characteristics")); + parameter Modelica.Units.SI.Area A_cel + "Area of a single cell. If not found in data sheet, use A_cel = ((V_mp0*I_mp0)/(1000*eta_0))/n_ser" + annotation (Dialog(group="Cell specific: Geometrical data")); + parameter Modelica.Units.SI.Area A_pan=A_cel*n_ser*n_par + "Area of one Panel, must not be confused with area of the whole module" + annotation (Dialog(group="Cell specific: Geometrical data")); + parameter Modelica.Units.SI.Area A_mod "Area of one module (housing)" + annotation (Dialog(group="Cell specific: Geometrical data")); + parameter Modelica.Units.SI.Voltage V_oc0 + "Open circuit voltage under standard conditions" + annotation (Dialog(group="Cell specific: Electrical characteristics")); + parameter Modelica.Units.SI.ElectricCurrent I_sc0 + "Short circuit current under standard conditions" + annotation (Dialog(group="Cell specific: Electrical characteristics")); + parameter Modelica.Units.SI.Voltage V_mp0 + "MPP voltage under standard conditions" + annotation (Dialog(group="Cell specific: Electrical characteristics")); + parameter Modelica.Units.SI.ElectricCurrent I_mp0 + "MPP current under standard conditions" + annotation (Dialog(group="Cell specific: Electrical characteristics")); + parameter Modelica.Units.SI.Power P_mp0 + "MPP power of one PV module under standard conditions" + annotation (Dialog(group="Cell specific: Electrical characteristics")); parameter Real TCoeff_Isc(unit = "A/K") "Temperature coefficient for short circuit current, >0. If not found in data sheet, use TCoeff_Isc=alpha_Isc*I_sc0 and type in alpha_Isc manually" annotation(Dialog(group="Cell specific: Electrical characteristics")); parameter Real TCoeff_Voc(unit = "V/K") "Temperature coefficient for open circuit voltage, <0. If not found in data sheet, use TCoeff_Voc=beta_Voc*V_oc0 and type in beta_Voc manually" annotation(Dialog(group="Cell specific: Electrical characteristics")); - parameter Modelica.SIunits.LinearTemperatureCoefficient alpha_Isc = TCoeff_Isc/I_sc0 - "Normalized temperature coefficient for short circuit current, >0" - annotation(Dialog(group="Cell specific: Electrical characteristics")); - parameter Modelica.SIunits.LinearTemperatureCoefficient beta_Voc = TCoeff_Voc/V_oc0 - "Normalized temperature coefficient for open circuit voltage, <0" - annotation(Dialog(group="Cell specific: Electrical characteristics")); - parameter Modelica.SIunits.LinearTemperatureCoefficient gamma_Pmp - "Normalized temperature coefficient for power at MPP" - annotation(Dialog(group="Cell specific: Electrical characteristics")); - parameter Modelica.SIunits.Temp_K T_NOCT - "Cell temperature under NOCT conditions" - annotation(Dialog(group="Cell specific: Electrical characteristics")); + parameter Modelica.Units.SI.LinearTemperatureCoefficient alpha_Isc=TCoeff_Isc + /I_sc0 "Normalized temperature coefficient for short circuit current, >0" + annotation (Dialog(group="Cell specific: Electrical characteristics")); + parameter Modelica.Units.SI.LinearTemperatureCoefficient beta_Voc=TCoeff_Voc/ + V_oc0 "Normalized temperature coefficient for open circuit voltage, <0" + annotation (Dialog(group="Cell specific: Electrical characteristics")); + parameter Modelica.Units.SI.LinearTemperatureCoefficient gamma_Pmp + "Normalized temperature coefficient for power at MPP" + annotation (Dialog(group="Cell specific: Electrical characteristics")); + parameter Modelica.Units.SI.Temperature T_NOCT + "Cell temperature under NOCT conditions" + annotation (Dialog(group="Cell specific: Electrical characteristics")); annotation (Icon(coordinateSystem(preserveAspectRatio=false)), Diagram(coordinateSystem( preserveAspectRatio=false))); end PVBaseDataDefinition; diff --git a/AixLib/DataBase/SolarElectric/package.order b/AixLib/DataBase/SolarElectric/package.order index 9f03635354..c2dea74488 100644 --- a/AixLib/DataBase/SolarElectric/package.order +++ b/AixLib/DataBase/SolarElectric/package.order @@ -1,7 +1,7 @@ -PVBaseDataDefinition AleoS24185 CanadianSolarCS6P250P +SchuecoSPV170SME1 SharpNUU235F2 ShellSP70 +PVBaseDataDefinition QPlusBFRG41285 -SchuecoSPV170SME1 diff --git a/AixLib/DataBase/SolarThermal/SolarThermalBaseDataDefinition.mo b/AixLib/DataBase/SolarThermal/SolarThermalBaseDataDefinition.mo index 49ef989f9d..479de7584d 100644 --- a/AixLib/DataBase/SolarThermal/SolarThermalBaseDataDefinition.mo +++ b/AixLib/DataBase/SolarThermal/SolarThermalBaseDataDefinition.mo @@ -2,7 +2,8 @@ within AixLib.DataBase.SolarThermal; record SolarThermalBaseDataDefinition "Base Data Definition for Solar thermal collectors" extends Modelica.Icons.Record; - parameter Modelica.SIunits.Efficiency eta_zero(max=1) "Conversion factor/Efficiency at Q = 0"; + parameter Modelica.Units.SI.Efficiency eta_zero(max=1) + "Conversion factor/Efficiency at Q = 0"; parameter Real c1(unit = "W/(m.m.K)") "Loss coefficient c1"; parameter Real c2(unit = "W/(m.m.K.K)") "Loss coefficient c2"; annotation(Documentation(revisions="
                diff --git a/AixLib/DataBase/Storage/BufferStorageBaseDataDefinition.mo b/AixLib/DataBase/Storage/BufferStorageBaseDataDefinition.mo index 2870a9d61e..3497fd1ccf 100644 --- a/AixLib/DataBase/Storage/BufferStorageBaseDataDefinition.mo +++ b/AixLib/DataBase/Storage/BufferStorageBaseDataDefinition.mo @@ -3,7 +3,7 @@ record BufferStorageBaseDataDefinition "Base data definition for Buffer storage records" extends Modelica.Icons.Record; ///////////input parameters//////////// - import SI = Modelica.SIunits; + import Modelica.Units.SI; parameter SI.Height hTank "Height of storage"; parameter SI.Height hLowerPortDemand "Height of lower demand port"; parameter SI.Height hUpperPortDemand "Height of upper demand port"; @@ -17,9 +17,9 @@ record BufferStorageBaseDataDefinition parameter SI.Diameter dTank "Inner diameter of storage"; parameter SI.Length sWall "Thickness of storage Wall"; parameter SI.Length sIns "Thickness of storage insulation"; - parameter Modelica.SIunits.ThermalConductivity lambdaWall + parameter Modelica.Units.SI.ThermalConductivity lambdaWall "thermal conductivity of storage wall"; - parameter Modelica.SIunits.ThermalConductivity lambdaIns + parameter Modelica.Units.SI.ThermalConductivity lambdaIns "thermal conductivity of storage insulation"; //parameter SI.CoefficientOfHeatTransfer alpha //"Coefficient of heat transfer air <-> insulation of tank"; @@ -38,8 +38,8 @@ record BufferStorageBaseDataDefinition parameter DataBase.Pipes.PipeBaseDataDefinition pipeHC2 "Type of Pipe for HR2"; - parameter Modelica.SIunits.Length lengthHC1 "Length of Pipe for HR1"; - parameter Modelica.SIunits.Length lengthHC2 "Length of Pipe for HR2"; + parameter Modelica.Units.SI.Length lengthHC1 "Length of Pipe for HR1"; + parameter Modelica.Units.SI.Length lengthHC2 "Length of Pipe for HR2"; annotation (Icon(graphics), Documentation(info="

                Overview diff --git a/AixLib/DataBase/ThermalZones/ZoneBaseRecord.mo b/AixLib/DataBase/ThermalZones/ZoneBaseRecord.mo index c7040ba0a9..c62db0548b 100644 --- a/AixLib/DataBase/ThermalZones/ZoneBaseRecord.mo +++ b/AixLib/DataBase/ThermalZones/ZoneBaseRecord.mo @@ -1,66 +1,94 @@ -within AixLib.DataBase.ThermalZones; +within AixLib.DataBase.ThermalZones; record ZoneBaseRecord "Base record definition for zone records" extends Modelica.Icons.Record; - parameter Modelica.SIunits.Temperature T_start "Initial temperature"; + parameter Modelica.Units.SI.Temperature T_start "Initial temperature"; parameter Boolean withAirCap = true "Consider capacity of indoor air"; - parameter Modelica.SIunits.Volume VAir "Air volume of the zone"; - parameter Modelica.SIunits.Area AZone "Net floor area of zone"; - parameter Modelica.SIunits.CoefficientOfHeatTransfer hRad "Coefficient of heat transfer for linearized radiation exchange between walls"; - parameter Modelica.SIunits.Angle lat "Latitude of zone location"; + parameter Modelica.Units.SI.Volume VAir "Air volume of the zone"; + parameter Modelica.Units.SI.Area AZone "Net floor area of zone"; + parameter Modelica.Units.SI.CoefficientOfHeatTransfer hRad + "Coefficient of heat transfer for linearized radiation exchange between walls"; + parameter Modelica.Units.SI.Angle lat "Latitude of zone location"; parameter Integer nOrientations(min=1) "Number of orientations"; - parameter Modelica.SIunits.Area AWin[nOrientations] + parameter Modelica.Units.SI.Area AWin[nOrientations] "Areas of windows by orientations"; - parameter Modelica.SIunits.Area ATransparent[nOrientations] + parameter Modelica.Units.SI.Area ATransparent[nOrientations] "Areas of transparent (solar radiation transmittend) elements by orientations"; - parameter Modelica.SIunits.CoefficientOfHeatTransfer hConWin "Convective coefficient of heat transfer of windows (indoor)"; - parameter Modelica.SIunits.ThermalResistance RWin "Resistor for windows"; - parameter Modelica.SIunits.TransmissionCoefficient gWin + parameter Modelica.Units.SI.CoefficientOfHeatTransfer hConWin + "Convective coefficient of heat transfer of windows (indoor)"; + parameter Modelica.Units.SI.ThermalResistance RWin "Resistor for windows"; + parameter Modelica.Units.SI.TransmissionCoefficient gWin "Total energy transmittance of windows"; - parameter Modelica.SIunits.CoefficientOfHeatTransfer UWin + parameter Modelica.Units.SI.CoefficientOfHeatTransfer UWin "Thermal transmission coefficient of windows"; parameter Real ratioWinConRad "Ratio for windows between convective and radiative heat emission"; - parameter Modelica.SIunits.Area AExt[nOrientations] "Areas of exterior walls by orientations"; - parameter Modelica.SIunits.CoefficientOfHeatTransfer hConExt "Convective coefficient of heat transfer for exterior walls (indoor)"; + parameter Modelica.Units.SI.Area AExt[nOrientations] + "Areas of exterior walls by orientations"; + parameter Modelica.Units.SI.CoefficientOfHeatTransfer hConExt + "Convective coefficient of heat transfer for exterior walls (indoor)"; parameter Integer nExt(min=1) "Number of RC-elements of exterior walls"; - parameter Modelica.SIunits.ThermalResistance RExt[nExt] "Resistances of exterior walls, from inside to outside"; - parameter Modelica.SIunits.ThermalResistance RExtRem "Resistance of remaining resistor RExtRem between capacity n and outside"; - parameter Modelica.SIunits.HeatCapacity CExt[nExt] "Heat capacities of exterior walls, from inside to outside"; - parameter Modelica.SIunits.Area AInt "Area of interior walls"; - parameter Modelica.SIunits.CoefficientOfHeatTransfer hConInt "Convective coefficient of heat transfer of interior walls (indoor)"; + parameter Modelica.Units.SI.ThermalResistance RExt[nExt] + "Resistances of exterior walls, from inside to outside"; + parameter Modelica.Units.SI.ThermalResistance RExtRem + "Resistance of remaining resistor RExtRem between capacity n and outside"; + parameter Modelica.Units.SI.HeatCapacity CExt[nExt] + "Heat capacities of exterior walls, from inside to outside"; + parameter Modelica.Units.SI.Area AInt "Area of interior walls"; + parameter Modelica.Units.SI.CoefficientOfHeatTransfer hConInt + "Convective coefficient of heat transfer of interior walls (indoor)"; parameter Integer nInt(min=1) "Number of RC-elements of interior walls"; - parameter Modelica.SIunits.ThermalResistance RInt[nInt] "Resistances of interior wall, from port to center"; - parameter Modelica.SIunits.HeatCapacity CInt[nInt] "Heat capacities of interior walls, from port to center"; - parameter Modelica.SIunits.Area AFloor "Area of floor plate"; - parameter Modelica.SIunits.CoefficientOfHeatTransfer hConFloor "Convective coefficient of heat transfer of floor plate (indoor)"; + parameter Modelica.Units.SI.ThermalResistance RInt[nInt] + "Resistances of interior wall, from port to center"; + parameter Modelica.Units.SI.HeatCapacity CInt[nInt] + "Heat capacities of interior walls, from port to center"; + parameter Modelica.Units.SI.Area AFloor "Area of floor plate"; + parameter Modelica.Units.SI.CoefficientOfHeatTransfer hConFloor + "Convective coefficient of heat transfer of floor plate (indoor)"; parameter Integer nFloor(min=1) "Number of RC-elements of floor plate"; - parameter Modelica.SIunits.ThermalResistance RFloor[nFloor] "Resistances of floor plate, from inside to outside"; - parameter Modelica.SIunits.ThermalResistance RFloorRem "Resistance of remaining resistor RFloorRem between capacity n and outside"; - parameter Modelica.SIunits.HeatCapacity CFloor[nFloor] "Heat capacities of floor plate, from inside to outside"; - parameter Modelica.SIunits.Area ARoof "Area of roof"; - parameter Modelica.SIunits.CoefficientOfHeatTransfer hConRoof "Convective coefficient of heat transfer of roof (indoor)"; + parameter Modelica.Units.SI.ThermalResistance RFloor[nFloor] + "Resistances of floor plate, from inside to outside"; + parameter Modelica.Units.SI.ThermalResistance RFloorRem + "Resistance of remaining resistor RFloorRem between capacity n and outside"; + parameter Modelica.Units.SI.HeatCapacity CFloor[nFloor] + "Heat capacities of floor plate, from inside to outside"; + parameter Modelica.Units.SI.Area ARoof "Area of roof"; + parameter Modelica.Units.SI.CoefficientOfHeatTransfer hConRoof + "Convective coefficient of heat transfer of roof (indoor)"; parameter Integer nRoof(min=1) "Number of RC-elements of roof"; - parameter Modelica.SIunits.ThermalResistance RRoof[nRoof] "Resistances of roof, from inside to outside"; - parameter Modelica.SIunits.ThermalResistance RRoofRem "Resistance of remaining resistor RRoofRem between capacity n and outside"; - parameter Modelica.SIunits.HeatCapacity CRoof[nRoof] "Heat capacities of roof, from inside to outside"; + parameter Modelica.Units.SI.ThermalResistance RRoof[nRoof] + "Resistances of roof, from inside to outside"; + parameter Modelica.Units.SI.ThermalResistance RRoofRem + "Resistance of remaining resistor RRoofRem between capacity n and outside"; + parameter Modelica.Units.SI.HeatCapacity CRoof[nRoof] + "Heat capacities of roof, from inside to outside"; parameter Integer nOrientationsRoof(min=1) "Number of orientations for roof"; - parameter Modelica.SIunits.Angle tiltRoof[nOrientationsRoof] "Tilts of roof"; - parameter Modelica.SIunits.Angle aziRoof[nOrientationsRoof] "Azimuths of roof"; + parameter Modelica.Units.SI.Angle tiltRoof[nOrientationsRoof] "Tilts of roof"; + parameter Modelica.Units.SI.Angle aziRoof[nOrientationsRoof] + "Azimuths of roof"; parameter Real wfRoof[nOrientationsRoof] "Weight factors of the roof"; - parameter Modelica.SIunits.Emissivity aRoof "Coefficient of absorption of roof (outdoor)"; + parameter Modelica.Units.SI.Emissivity aRoof + "Coefficient of absorption of roof (outdoor)"; - parameter Modelica.SIunits.Emissivity aExt "Coefficient of absorption of exterior walls (outdoor)"; - parameter Modelica.SIunits.Temperature TSoil "Temperature of soil"; - parameter Modelica.SIunits.CoefficientOfHeatTransfer hConWallOut "Exterior walls convective coefficient of heat transfer (outdoor)"; - parameter Modelica.SIunits.CoefficientOfHeatTransfer hRadWall "Coefficient of heat transfer for linearized radiation for exterior walls"; - parameter Modelica.SIunits.CoefficientOfHeatTransfer hConWinOut "Windows' convective coefficient of heat transfer (outdoor)"; - parameter Modelica.SIunits.CoefficientOfHeatTransfer hConRoofOut "Roof's convective coefficient of heat transfer (outdoor)"; - parameter Modelica.SIunits.CoefficientOfHeatTransfer hRadRoof "Coefficient of heat transfer for linearized radiation for roof"; - parameter Modelica.SIunits.Angle tiltExtWalls[nOrientations] "Tilts of exterior walls"; - parameter Modelica.SIunits.Angle aziExtWalls[nOrientations] "Azimuths of exterior walls"; + parameter Modelica.Units.SI.Emissivity aExt + "Coefficient of absorption of exterior walls (outdoor)"; + parameter Modelica.Units.SI.Temperature TSoil "Temperature of soil"; + parameter Modelica.Units.SI.CoefficientOfHeatTransfer hConWallOut + "Exterior walls convective coefficient of heat transfer (outdoor)"; + parameter Modelica.Units.SI.CoefficientOfHeatTransfer hRadWall + "Coefficient of heat transfer for linearized radiation for exterior walls"; + parameter Modelica.Units.SI.CoefficientOfHeatTransfer hConWinOut + "Windows' convective coefficient of heat transfer (outdoor)"; + parameter Modelica.Units.SI.CoefficientOfHeatTransfer hConRoofOut + "Roof's convective coefficient of heat transfer (outdoor)"; + parameter Modelica.Units.SI.CoefficientOfHeatTransfer hRadRoof + "Coefficient of heat transfer for linearized radiation for roof"; + parameter Modelica.Units.SI.Angle tiltExtWalls[nOrientations] + "Tilts of exterior walls"; + parameter Modelica.Units.SI.Angle aziExtWalls[nOrientations] + "Azimuths of exterior walls"; parameter Real wfWall[nOrientations] "Weight factors of the walls"; parameter Real wfWin[nOrientations] @@ -69,8 +97,7 @@ record ZoneBaseRecord "Base record definition for zone records" "Weight factor of the ground"; parameter Real specificPeople "people per squaremeter"; parameter Real activityDegree "acitivity degree of people in met"; - parameter Modelica.SIunits.HeatFlowRate fixedHeatFlowRatePersons - "Area specific heatflowrate by persons in case of temperature independent + parameter Modelica.Units.SI.HeatFlowRate fixedHeatFlowRatePersons "Area specific heatflowrate by persons in case of temperature independent calculation"; parameter Real ratioConvectiveHeatPeople "Ratio of convective heat from overall heat output for people"; @@ -79,7 +106,8 @@ record ZoneBaseRecord "Base record definition for zone records" parameter Real internalGainsMachinesSpecific "Heat Flux of machines"; parameter Real ratioConvectiveHeatMachines "Ratio of convective heat from overall heat output for machines"; - parameter Modelica.SIunits.HeatFlux lightingPowerSpecific "Heat flux of lighting"; + parameter Modelica.Units.SI.HeatFlux lightingPowerSpecific + "Heat flux of lighting"; parameter Real ratioConvectiveHeatLighting "Ratio of convective heat from overall heat output for lights"; parameter Boolean useConstantACHrate @@ -103,17 +131,16 @@ record ZoneBaseRecord "Base record definition for zone records" parameter Real hHeat "Upper limit controller output"; parameter Real lHeat "Lower limit controller output"; parameter Real KRHeat "Gain of the controller"; - parameter Modelica.SIunits.Time TNHeat "Time constant of the controller"; + parameter Modelica.Units.SI.Time TNHeat "Time constant of the controller"; parameter Boolean HeaterOn "Use heater component"; parameter Real hCool "Upper limit controller output"; parameter Real lCool "Lower limit controller output"; parameter Real KRCool "Gain of the controller"; - parameter Modelica.SIunits.Time TNCool - "Time constant of the controller"; + parameter Modelica.Units.SI.Time TNCool "Time constant of the controller"; parameter Boolean CoolerOn "Use chiller component"; - parameter Modelica.SIunits.Temperature TThresholdHeater + parameter Modelica.Units.SI.Temperature TThresholdHeater "Threshold temperature below ideal heater is used"; - parameter Modelica.SIunits.Temperature TThresholdCooler + parameter Modelica.Units.SI.Temperature TThresholdCooler "Threshold temperature above ideal cooler is used"; parameter Boolean withIdealThresholds "Sets if the threshold temperatures for ideal heater and cooler should diff --git a/AixLib/DataBase/ThermalZones/ZoneRecordDummy.mo b/AixLib/DataBase/ThermalZones/ZoneRecordDummy.mo index c42f572deb..a0e74e7217 100644 --- a/AixLib/DataBase/ThermalZones/ZoneRecordDummy.mo +++ b/AixLib/DataBase/ThermalZones/ZoneRecordDummy.mo @@ -2,6 +2,7 @@ within AixLib.DataBase.ThermalZones; record ZoneRecordDummy "This is a dummy record with non-physical parameter values." extends AixLib.DataBase.ThermalZones.ZoneBaseRecord( T_start=Modelica.Constants.eps, + withAirCap=true, VAir=Modelica.Constants.inf, AZone=Modelica.Constants.inf, hRad=Modelica.Constants.eps, diff --git a/AixLib/DataBase/Walls/Collections/BaseDataMultiWalls.mo b/AixLib/DataBase/Walls/Collections/BaseDataMultiWalls.mo index 5c6d06bada..adac1adad8 100644 --- a/AixLib/DataBase/Walls/Collections/BaseDataMultiWalls.mo +++ b/AixLib/DataBase/Walls/Collections/BaseDataMultiWalls.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.Collections; +within AixLib.DataBase.Walls.Collections; partial record BaseDataMultiWalls "Base class of record containing multiple wall type records" extends Modelica.Icons.Record; diff --git a/AixLib/DataBase/Walls/EnEV2009/Ceiling/CEattic_EnEV2009_SML_loHalf.mo b/AixLib/DataBase/Walls/EnEV2009/Ceiling/CEattic_EnEV2009_SML_loHalf.mo index c69f64029a..ab2cda4baf 100644 --- a/AixLib/DataBase/Walls/EnEV2009/Ceiling/CEattic_EnEV2009_SML_loHalf.mo +++ b/AixLib/DataBase/Walls/EnEV2009/Ceiling/CEattic_EnEV2009_SML_loHalf.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.EnEV2009.Ceiling; +within AixLib.DataBase.Walls.EnEV2009.Ceiling; record CEattic_EnEV2009_SML_loHalf "Ceiling towards attic after EnEV 2009, for building of type S (schwer), M (mittel) and L (leicht), lower half" extends WallBaseDataDefinition(n(min = 1) = 3 "Number of wall layers", d = {0.1, 0.0125, 0.015} diff --git a/AixLib/DataBase/Walls/EnEV2009/Ceiling/CEcellar_EnEV2009_SML_loHalf.mo b/AixLib/DataBase/Walls/EnEV2009/Ceiling/CEcellar_EnEV2009_SML_loHalf.mo index 58d55dfb16..1f01f70ba8 100644 --- a/AixLib/DataBase/Walls/EnEV2009/Ceiling/CEcellar_EnEV2009_SML_loHalf.mo +++ b/AixLib/DataBase/Walls/EnEV2009/Ceiling/CEcellar_EnEV2009_SML_loHalf.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.EnEV2009.Ceiling; +within AixLib.DataBase.Walls.EnEV2009.Ceiling; record CEcellar_EnEV2009_SML_loHalf "Ceiling cellar after EnEV 2009, for building of type S (schwer), M (mittel) and L (leicht), lower half" extends WallBaseDataDefinition(n(min = 1) = 3 "Number of wall layers", d = {0.02, 0.16, 0.06} diff --git a/AixLib/DataBase/Walls/EnEV2009/Ceiling/CEpartition_EnEV2009_L_loHalf.mo b/AixLib/DataBase/Walls/EnEV2009/Ceiling/CEpartition_EnEV2009_L_loHalf.mo index f38f4924fe..53b99ccdba 100644 --- a/AixLib/DataBase/Walls/EnEV2009/Ceiling/CEpartition_EnEV2009_L_loHalf.mo +++ b/AixLib/DataBase/Walls/EnEV2009/Ceiling/CEpartition_EnEV2009_L_loHalf.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.EnEV2009.Ceiling; +within AixLib.DataBase.Walls.EnEV2009.Ceiling; record CEpartition_EnEV2009_L_loHalf "Ceiling partition after EnEV 2009, for building of type L (leicht), lower half" // New Walls for Dymola 2012, the same number of layers as other mass clases diff --git a/AixLib/DataBase/Walls/EnEV2009/Ceiling/CEpartition_EnEV2009_SM_loHalf.mo b/AixLib/DataBase/Walls/EnEV2009/Ceiling/CEpartition_EnEV2009_SM_loHalf.mo index e20fe2fc31..1623f64e08 100644 --- a/AixLib/DataBase/Walls/EnEV2009/Ceiling/CEpartition_EnEV2009_SM_loHalf.mo +++ b/AixLib/DataBase/Walls/EnEV2009/Ceiling/CEpartition_EnEV2009_SM_loHalf.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.EnEV2009.Ceiling; +within AixLib.DataBase.Walls.EnEV2009.Ceiling; record CEpartition_EnEV2009_SM_loHalf "Ceiling partition after EnEV 2009, for building of type S (schwer) and M (mittel), lower half" extends WallBaseDataDefinition(n(min = 1) = 3 "Number of wall layers", d = {0.02, 0.16, 0.015} diff --git a/AixLib/DataBase/Walls/EnEV2009/Ceiling/ROsaddleAttic_EnEV2009_SML.mo b/AixLib/DataBase/Walls/EnEV2009/Ceiling/ROsaddleAttic_EnEV2009_SML.mo index a64c68421e..6dcd7b2e55 100644 --- a/AixLib/DataBase/Walls/EnEV2009/Ceiling/ROsaddleAttic_EnEV2009_SML.mo +++ b/AixLib/DataBase/Walls/EnEV2009/Ceiling/ROsaddleAttic_EnEV2009_SML.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.EnEV2009.Ceiling; +within AixLib.DataBase.Walls.EnEV2009.Ceiling; record ROsaddleAttic_EnEV2009_SML "Saddle roof in attic after EnEV 2009, for building of type S (schwer), M (mittel) and L (leicht)" extends WallBaseDataDefinition(n(min = 1) = 1 "Number of wall layers", d = {0.22} diff --git a/AixLib/DataBase/Walls/EnEV2009/Ceiling/ROsaddleRoom_EnEV2009_SML.mo b/AixLib/DataBase/Walls/EnEV2009/Ceiling/ROsaddleRoom_EnEV2009_SML.mo index 5d453db024..4c83a10c0c 100644 --- a/AixLib/DataBase/Walls/EnEV2009/Ceiling/ROsaddleRoom_EnEV2009_SML.mo +++ b/AixLib/DataBase/Walls/EnEV2009/Ceiling/ROsaddleRoom_EnEV2009_SML.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.EnEV2009.Ceiling; +within AixLib.DataBase.Walls.EnEV2009.Ceiling; record ROsaddleRoom_EnEV2009_SML "Saddle roof in room after EnEV 2009, for building of type S (schwer), M (mittel) and L (leicht)" extends WallBaseDataDefinition(n(min = 1) = 3 "Number of wall layers", d = {0.22, 0.0125, 0.015} diff --git a/AixLib/DataBase/Walls/EnEV2009/Floor/FLcellar_EnEV2009_SML_upHalf.mo b/AixLib/DataBase/Walls/EnEV2009/Floor/FLcellar_EnEV2009_SML_upHalf.mo index b40746b548..7f0abc3c55 100644 --- a/AixLib/DataBase/Walls/EnEV2009/Floor/FLcellar_EnEV2009_SML_upHalf.mo +++ b/AixLib/DataBase/Walls/EnEV2009/Floor/FLcellar_EnEV2009_SML_upHalf.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.EnEV2009.Floor; +within AixLib.DataBase.Walls.EnEV2009.Floor; record FLcellar_EnEV2009_SML_upHalf "Floor towards cellar after EnEV 2009, for building of type S (schwer), M (mittel) and L (leicht), upper half." extends WallBaseDataDefinition(n(min = 1) = 2 "Number of wall layers", d = {0.02, 0.06} diff --git a/AixLib/DataBase/Walls/EnEV2009/Floor/FLground_EnEV2009_SML.mo b/AixLib/DataBase/Walls/EnEV2009/Floor/FLground_EnEV2009_SML.mo index e1a8768de7..f221d828a6 100644 --- a/AixLib/DataBase/Walls/EnEV2009/Floor/FLground_EnEV2009_SML.mo +++ b/AixLib/DataBase/Walls/EnEV2009/Floor/FLground_EnEV2009_SML.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.EnEV2009.Floor; +within AixLib.DataBase.Walls.EnEV2009.Floor; record FLground_EnEV2009_SML "Floor towards ground after EnEV 2009, for building of type S (schwer), M (mittel) and L (leicht)" extends WallBaseDataDefinition(n(min = 1) = 4 "Number of wall layers", d = {0.06, 0.25, 0.04, 0.06} diff --git a/AixLib/DataBase/Walls/EnEV2009/Floor/FLground_EnEV2009_SML_loHalf.mo b/AixLib/DataBase/Walls/EnEV2009/Floor/FLground_EnEV2009_SML_loHalf.mo index 4c54254e54..c2663049c3 100644 --- a/AixLib/DataBase/Walls/EnEV2009/Floor/FLground_EnEV2009_SML_loHalf.mo +++ b/AixLib/DataBase/Walls/EnEV2009/Floor/FLground_EnEV2009_SML_loHalf.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.EnEV2009.Floor; +within AixLib.DataBase.Walls.EnEV2009.Floor; record FLground_EnEV2009_SML_loHalf "Floor towards ground (lower part) after EnEV 2009, for building of type S (schwer), M (mittel) and L (leicht)" extends WallBaseDataDefinition( n(min=1) = 3 "Number of wall layers", diff --git a/AixLib/DataBase/Walls/EnEV2009/Floor/FLground_EnEV2009_SML_upHalf.mo b/AixLib/DataBase/Walls/EnEV2009/Floor/FLground_EnEV2009_SML_upHalf.mo index 6dd56cfe13..4dc5e0a766 100644 --- a/AixLib/DataBase/Walls/EnEV2009/Floor/FLground_EnEV2009_SML_upHalf.mo +++ b/AixLib/DataBase/Walls/EnEV2009/Floor/FLground_EnEV2009_SML_upHalf.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.EnEV2009.Floor; +within AixLib.DataBase.Walls.EnEV2009.Floor; record FLground_EnEV2009_SML_upHalf "Floor towards ground (upper part) after EnEV 2009, for building of type S (schwer), M (mittel) and L (leicht)" extends WallBaseDataDefinition( n(min=1) = 2 "Number of wall layers", diff --git a/AixLib/DataBase/Walls/EnEV2009/Floor/FLpartition_EnEV2009_L_upHalf.mo b/AixLib/DataBase/Walls/EnEV2009/Floor/FLpartition_EnEV2009_L_upHalf.mo index 7de0a91b96..9db4eb0f41 100644 --- a/AixLib/DataBase/Walls/EnEV2009/Floor/FLpartition_EnEV2009_L_upHalf.mo +++ b/AixLib/DataBase/Walls/EnEV2009/Floor/FLpartition_EnEV2009_L_upHalf.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.EnEV2009.Floor; +within AixLib.DataBase.Walls.EnEV2009.Floor; record FLpartition_EnEV2009_L_upHalf "Floor partition after EnEV 2009, for building of typeL (leicht), upper half" extends WallBaseDataDefinition(n(min = 1) = 2 "Number of wall layers", d = {0.02, 0.06} diff --git a/AixLib/DataBase/Walls/EnEV2009/Floor/FLpartition_EnEV2009_SM_upHalf.mo b/AixLib/DataBase/Walls/EnEV2009/Floor/FLpartition_EnEV2009_SM_upHalf.mo index f6c33412de..463f728fc3 100644 --- a/AixLib/DataBase/Walls/EnEV2009/Floor/FLpartition_EnEV2009_SM_upHalf.mo +++ b/AixLib/DataBase/Walls/EnEV2009/Floor/FLpartition_EnEV2009_SM_upHalf.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.EnEV2009.Floor; +within AixLib.DataBase.Walls.EnEV2009.Floor; record FLpartition_EnEV2009_SM_upHalf "Floor partition after EnEV 2009, for building of type S (schwer) and M (mittel), upper half" extends WallBaseDataDefinition(n(min = 1) = 2 "Number of wall layers", d = {0.02, 0.06} diff --git a/AixLib/DataBase/Walls/EnEV2009/IW/IWload_EnEV2009_L_half.mo b/AixLib/DataBase/Walls/EnEV2009/IW/IWload_EnEV2009_L_half.mo index 78c6501110..37c8eae117 100644 --- a/AixLib/DataBase/Walls/EnEV2009/IW/IWload_EnEV2009_L_half.mo +++ b/AixLib/DataBase/Walls/EnEV2009/IW/IWload_EnEV2009_L_half.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.EnEV2009.IW; +within AixLib.DataBase.Walls.EnEV2009.IW; record IWload_EnEV2009_L_half "Inner wall load-bearing after EnEV 2009, for building of type L (leicht), only half" // New Walls for Dymola 2012, the same number of layers as other mass clases diff --git a/AixLib/DataBase/Walls/EnEV2009/IW/IWload_EnEV2009_M_half.mo b/AixLib/DataBase/Walls/EnEV2009/IW/IWload_EnEV2009_M_half.mo index ee21bf2084..3e3cbeadd4 100644 --- a/AixLib/DataBase/Walls/EnEV2009/IW/IWload_EnEV2009_M_half.mo +++ b/AixLib/DataBase/Walls/EnEV2009/IW/IWload_EnEV2009_M_half.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.EnEV2009.IW; +within AixLib.DataBase.Walls.EnEV2009.IW; record IWload_EnEV2009_M_half "Inner wall load-bearing after EnEV 2009, for building of type M (schwer), only half" extends WallBaseDataDefinition(n(min = 1) = 2 "Number of wall layers", d = {0.0875, 0.015} diff --git a/AixLib/DataBase/Walls/EnEV2009/IW/IWload_EnEV2009_S_half.mo b/AixLib/DataBase/Walls/EnEV2009/IW/IWload_EnEV2009_S_half.mo index cedb94f016..901cc6b0a9 100644 --- a/AixLib/DataBase/Walls/EnEV2009/IW/IWload_EnEV2009_S_half.mo +++ b/AixLib/DataBase/Walls/EnEV2009/IW/IWload_EnEV2009_S_half.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.EnEV2009.IW; +within AixLib.DataBase.Walls.EnEV2009.IW; record IWload_EnEV2009_S_half "Inner wall load-bearing after EnEV 2009, for building of type S (schwer), only half" extends WallBaseDataDefinition(n(min = 1) = 2 "Number of wall layers", d = {0.0875, 0.015} diff --git a/AixLib/DataBase/Walls/EnEV2009/IW/IWneighbour_EnEV2009_L_half.mo b/AixLib/DataBase/Walls/EnEV2009/IW/IWneighbour_EnEV2009_L_half.mo index 968dca89b9..fd5c22d030 100644 --- a/AixLib/DataBase/Walls/EnEV2009/IW/IWneighbour_EnEV2009_L_half.mo +++ b/AixLib/DataBase/Walls/EnEV2009/IW/IWneighbour_EnEV2009_L_half.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.EnEV2009.IW; +within AixLib.DataBase.Walls.EnEV2009.IW; record IWneighbour_EnEV2009_L_half "Inner wall towards neighbour after EnEV 2009, for building of type L (leicht), only half" // New Walls for Dymola 2012, the same number of layers as other mass clases diff --git a/AixLib/DataBase/Walls/EnEV2009/IW/IWneighbour_EnEV2009_M_half.mo b/AixLib/DataBase/Walls/EnEV2009/IW/IWneighbour_EnEV2009_M_half.mo index 975a5934da..4306b27448 100644 --- a/AixLib/DataBase/Walls/EnEV2009/IW/IWneighbour_EnEV2009_M_half.mo +++ b/AixLib/DataBase/Walls/EnEV2009/IW/IWneighbour_EnEV2009_M_half.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.EnEV2009.IW; +within AixLib.DataBase.Walls.EnEV2009.IW; record IWneighbour_EnEV2009_M_half "Inner wall towards neighbour after EnEV 2009, for building of type S (mitel), only half" extends WallBaseDataDefinition(n(min = 1) = 3 "Number of wall layers", d = {0.02, 0.175, 0.015} diff --git a/AixLib/DataBase/Walls/EnEV2009/IW/IWneighbour_EnEV2009_S_half.mo b/AixLib/DataBase/Walls/EnEV2009/IW/IWneighbour_EnEV2009_S_half.mo index f139c13b20..2802207d19 100644 --- a/AixLib/DataBase/Walls/EnEV2009/IW/IWneighbour_EnEV2009_S_half.mo +++ b/AixLib/DataBase/Walls/EnEV2009/IW/IWneighbour_EnEV2009_S_half.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.EnEV2009.IW; +within AixLib.DataBase.Walls.EnEV2009.IW; record IWneighbour_EnEV2009_S_half "Inner wall towards neighbour after EnEV 2009, for building of type S (schwer), only half" extends WallBaseDataDefinition(n(min = 1) = 3 "Number of wall layers", d = {0.02, 0.175, 0.015} diff --git a/AixLib/DataBase/Walls/EnEV2009/IW/IWsimple_EnEV2009_L_half.mo b/AixLib/DataBase/Walls/EnEV2009/IW/IWsimple_EnEV2009_L_half.mo index 92a65cac22..895398231a 100644 --- a/AixLib/DataBase/Walls/EnEV2009/IW/IWsimple_EnEV2009_L_half.mo +++ b/AixLib/DataBase/Walls/EnEV2009/IW/IWsimple_EnEV2009_L_half.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.EnEV2009.IW; +within AixLib.DataBase.Walls.EnEV2009.IW; record IWsimple_EnEV2009_L_half "Inner wall simple after EnEV, for building of type L (leicht), only half" // New Walls for Dymola 2012, the same number of layers as other mass clases diff --git a/AixLib/DataBase/Walls/EnEV2009/IW/IWsimple_EnEV2009_M_half.mo b/AixLib/DataBase/Walls/EnEV2009/IW/IWsimple_EnEV2009_M_half.mo index 2bbc8b28c3..616f510441 100644 --- a/AixLib/DataBase/Walls/EnEV2009/IW/IWsimple_EnEV2009_M_half.mo +++ b/AixLib/DataBase/Walls/EnEV2009/IW/IWsimple_EnEV2009_M_half.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.EnEV2009.IW; +within AixLib.DataBase.Walls.EnEV2009.IW; record IWsimple_EnEV2009_M_half "Inner wall simple after EnEV, for building of type M (mittel), only half" extends WallBaseDataDefinition(n(min = 1) = 2 "Number of wall layers", d = {0.0575, 0.015} diff --git a/AixLib/DataBase/Walls/EnEV2009/IW/IWsimple_EnEV2009_S_half.mo b/AixLib/DataBase/Walls/EnEV2009/IW/IWsimple_EnEV2009_S_half.mo index b9421d0fcb..dc8af905f5 100644 --- a/AixLib/DataBase/Walls/EnEV2009/IW/IWsimple_EnEV2009_S_half.mo +++ b/AixLib/DataBase/Walls/EnEV2009/IW/IWsimple_EnEV2009_S_half.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.EnEV2009.IW; +within AixLib.DataBase.Walls.EnEV2009.IW; record IWsimple_EnEV2009_S_half "Inner wall simple after EnEV 2009, for building of type S (schwer), only half" extends WallBaseDataDefinition(n(min = 1) = 2 "Number of wall layers", d = {0.0575, 0.015} diff --git a/AixLib/DataBase/Walls/EnEV2009/OW/OW_EnEV2009_L.mo b/AixLib/DataBase/Walls/EnEV2009/OW/OW_EnEV2009_L.mo index 0c9e1f93eb..603eb7c0b7 100644 --- a/AixLib/DataBase/Walls/EnEV2009/OW/OW_EnEV2009_L.mo +++ b/AixLib/DataBase/Walls/EnEV2009/OW/OW_EnEV2009_L.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.EnEV2009.OW; +within AixLib.DataBase.Walls.EnEV2009.OW; record OW_EnEV2009_L "outer wall after EnEV 2009, for building of type L (leicht)" extends WallBaseDataDefinition(n(min = 1) = 4 "Number of wall layers", d = {0.03, 0.02, 0.18, 0.0275} diff --git a/AixLib/DataBase/Walls/EnEV2009/OW/OW_EnEV2009_M.mo b/AixLib/DataBase/Walls/EnEV2009/OW/OW_EnEV2009_M.mo index 8a4ac7f941..7ef25506af 100644 --- a/AixLib/DataBase/Walls/EnEV2009/OW/OW_EnEV2009_M.mo +++ b/AixLib/DataBase/Walls/EnEV2009/OW/OW_EnEV2009_M.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.EnEV2009.OW; +within AixLib.DataBase.Walls.EnEV2009.OW; record OW_EnEV2009_M "outer wall after EnEV 2009, for building of type M (mittel)" extends WallBaseDataDefinition(n(min = 1) = 4 "Number of wall layers", d = {0.05, 0.06, 0.175, 0.015} diff --git a/AixLib/DataBase/Walls/EnEV2009/OW/OW_EnEV2009_M_MFD.mo b/AixLib/DataBase/Walls/EnEV2009/OW/OW_EnEV2009_M_MFD.mo index 4a1b566b52..701785ac9d 100644 --- a/AixLib/DataBase/Walls/EnEV2009/OW/OW_EnEV2009_M_MFD.mo +++ b/AixLib/DataBase/Walls/EnEV2009/OW/OW_EnEV2009_M_MFD.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.EnEV2009.OW; +within AixLib.DataBase.Walls.EnEV2009.OW; record OW_EnEV2009_M_MFD "outer wall after EnEV 2009, for building of type M (mittel), for MFD" extends WallBaseDataDefinition(n(min=1) = 4 "Number of wall layers", diff --git a/AixLib/DataBase/Walls/EnEV2009/OW/OW_EnEV2009_S.mo b/AixLib/DataBase/Walls/EnEV2009/OW/OW_EnEV2009_S.mo index 53a781331d..01e88369df 100644 --- a/AixLib/DataBase/Walls/EnEV2009/OW/OW_EnEV2009_S.mo +++ b/AixLib/DataBase/Walls/EnEV2009/OW/OW_EnEV2009_S.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.EnEV2009.OW; +within AixLib.DataBase.Walls.EnEV2009.OW; record OW_EnEV2009_S "outer wall after EnEV 2009, for building of type S (schwer)" extends WallBaseDataDefinition(n(min = 1) = 4 "Number of wall layers", d = {0.05, 0.1, 0.24, 0.015} diff --git a/AixLib/DataBase/Walls/EnEV2009/OW/OW_EnEV2009_S_MFD.mo b/AixLib/DataBase/Walls/EnEV2009/OW/OW_EnEV2009_S_MFD.mo index a1e45feaf1..fd0de0b253 100644 --- a/AixLib/DataBase/Walls/EnEV2009/OW/OW_EnEV2009_S_MFD.mo +++ b/AixLib/DataBase/Walls/EnEV2009/OW/OW_EnEV2009_S_MFD.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.EnEV2009.OW; +within AixLib.DataBase.Walls.EnEV2009.OW; record OW_EnEV2009_S_MFD "outer wall after EnEV 2009, for building of type S (schwer), for MFD" extends WallBaseDataDefinition(n(min=1) = 4 "Number of wall layers", diff --git a/AixLib/DataBase/Walls/WSchV1984/Ceiling/CEattic_WSchV1984_SML_loHalf.mo b/AixLib/DataBase/Walls/WSchV1984/Ceiling/CEattic_WSchV1984_SML_loHalf.mo index f448c5d0ed..840090df24 100644 --- a/AixLib/DataBase/Walls/WSchV1984/Ceiling/CEattic_WSchV1984_SML_loHalf.mo +++ b/AixLib/DataBase/Walls/WSchV1984/Ceiling/CEattic_WSchV1984_SML_loHalf.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1984.Ceiling; +within AixLib.DataBase.Walls.WSchV1984.Ceiling; record CEattic_WSchV1984_SML_loHalf "Ceiling towards attic after WSchV1984, for building of type S (schwer), M (mittel) and L (leicht), lower half" extends WallBaseDataDefinition(n(min = 1) = 3 "Number of wall layers", d = {0.08, 0.0125, 0.015} diff --git a/AixLib/DataBase/Walls/WSchV1984/Ceiling/CEcellar_WSchV1984_SML_loHalf.mo b/AixLib/DataBase/Walls/WSchV1984/Ceiling/CEcellar_WSchV1984_SML_loHalf.mo index f6a8386ad4..25c9f7db8a 100644 --- a/AixLib/DataBase/Walls/WSchV1984/Ceiling/CEcellar_WSchV1984_SML_loHalf.mo +++ b/AixLib/DataBase/Walls/WSchV1984/Ceiling/CEcellar_WSchV1984_SML_loHalf.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1984.Ceiling; +within AixLib.DataBase.Walls.WSchV1984.Ceiling; record CEcellar_WSchV1984_SML_loHalf "Ceiling cellar after WSchV1984, for building of type S (schwer), M (mittel) and L (leicht), lower half" extends WallBaseDataDefinition(n(min = 1) = 3 "Number of wall layers", d = {0.02, 0.16, 0.02} diff --git a/AixLib/DataBase/Walls/WSchV1984/Ceiling/CEpartition_WSchV1984_L_loHalf.mo b/AixLib/DataBase/Walls/WSchV1984/Ceiling/CEpartition_WSchV1984_L_loHalf.mo index 2fee60362a..cf4322f5eb 100644 --- a/AixLib/DataBase/Walls/WSchV1984/Ceiling/CEpartition_WSchV1984_L_loHalf.mo +++ b/AixLib/DataBase/Walls/WSchV1984/Ceiling/CEpartition_WSchV1984_L_loHalf.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1984.Ceiling; +within AixLib.DataBase.Walls.WSchV1984.Ceiling; record CEpartition_WSchV1984_L_loHalf "Ceiling partition after WSchV1984, for building of type L (leicht), lower half" // New Walls for Dymola 2012, the same number of layers as other mass clases diff --git a/AixLib/DataBase/Walls/WSchV1984/Ceiling/CEpartition_WSchV1984_SM_loHalf.mo b/AixLib/DataBase/Walls/WSchV1984/Ceiling/CEpartition_WSchV1984_SM_loHalf.mo index 5ef3979507..e076c25913 100644 --- a/AixLib/DataBase/Walls/WSchV1984/Ceiling/CEpartition_WSchV1984_SM_loHalf.mo +++ b/AixLib/DataBase/Walls/WSchV1984/Ceiling/CEpartition_WSchV1984_SM_loHalf.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1984.Ceiling; +within AixLib.DataBase.Walls.WSchV1984.Ceiling; record CEpartition_WSchV1984_SM_loHalf "Ceiling partition after WSchV1984, for building of type S (schwer) and M (mittel), lower half" extends WallBaseDataDefinition(n(min = 1) = 3 "Number of wall layers", d = {0.02, 0.16, 0.015} diff --git a/AixLib/DataBase/Walls/WSchV1984/Ceiling/ROsaddleAttic_WSchV1984_SML.mo b/AixLib/DataBase/Walls/WSchV1984/Ceiling/ROsaddleAttic_WSchV1984_SML.mo index 98304ca744..b4840a2a02 100644 --- a/AixLib/DataBase/Walls/WSchV1984/Ceiling/ROsaddleAttic_WSchV1984_SML.mo +++ b/AixLib/DataBase/Walls/WSchV1984/Ceiling/ROsaddleAttic_WSchV1984_SML.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1984.Ceiling; +within AixLib.DataBase.Walls.WSchV1984.Ceiling; record ROsaddleAttic_WSchV1984_SML "Saddle roof in attic after WSchV1984, for building of type S (schwer), M (mittel) and L (leicht)" extends WallBaseDataDefinition(n(min = 1) = 1 "Number of wall layers", d = {0.18} diff --git a/AixLib/DataBase/Walls/WSchV1984/Ceiling/ROsaddleRoom_WSchV1984_SML.mo b/AixLib/DataBase/Walls/WSchV1984/Ceiling/ROsaddleRoom_WSchV1984_SML.mo index 9f6a9e07fa..483e993ab9 100644 --- a/AixLib/DataBase/Walls/WSchV1984/Ceiling/ROsaddleRoom_WSchV1984_SML.mo +++ b/AixLib/DataBase/Walls/WSchV1984/Ceiling/ROsaddleRoom_WSchV1984_SML.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1984.Ceiling; +within AixLib.DataBase.Walls.WSchV1984.Ceiling; record ROsaddleRoom_WSchV1984_SML "Saddle roof in room after WSchV1984, for building of type S (schwer), M (mittel) and L (leicht)" extends WallBaseDataDefinition(n(min = 1) = 3 "Number of wall layers", d = {0.18, 0.0125, 0.015} diff --git a/AixLib/DataBase/Walls/WSchV1984/Floor/FLcellar_WSchV1984_SML_upHalf.mo b/AixLib/DataBase/Walls/WSchV1984/Floor/FLcellar_WSchV1984_SML_upHalf.mo index 9058ae8a25..a605d2a1a5 100644 --- a/AixLib/DataBase/Walls/WSchV1984/Floor/FLcellar_WSchV1984_SML_upHalf.mo +++ b/AixLib/DataBase/Walls/WSchV1984/Floor/FLcellar_WSchV1984_SML_upHalf.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1984.Floor; +within AixLib.DataBase.Walls.WSchV1984.Floor; record FLcellar_WSchV1984_SML_upHalf "Floor towards cellar after WSchV1984, for building of type S (schwer), M (mittel) and L (leicht), upper half." extends WallBaseDataDefinition(n(min = 1) = 2 "Number of wall layers", d = {0.02, 0.06} diff --git a/AixLib/DataBase/Walls/WSchV1984/Floor/FLground_WSchV1984_SML.mo b/AixLib/DataBase/Walls/WSchV1984/Floor/FLground_WSchV1984_SML.mo index bc61619e61..2e0b9d5231 100644 --- a/AixLib/DataBase/Walls/WSchV1984/Floor/FLground_WSchV1984_SML.mo +++ b/AixLib/DataBase/Walls/WSchV1984/Floor/FLground_WSchV1984_SML.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1984.Floor; +within AixLib.DataBase.Walls.WSchV1984.Floor; record FLground_WSchV1984_SML "Floor towards ground after WSchV1984, for building of type S (schwer), M (mittel) and L (leicht)" extends WallBaseDataDefinition(n(min = 1) = 4 "Number of wall layers", d = {0.02, 0.25, 0.04, 0.06} diff --git a/AixLib/DataBase/Walls/WSchV1984/Floor/FLground_WSchV1984_SML_loHalf.mo b/AixLib/DataBase/Walls/WSchV1984/Floor/FLground_WSchV1984_SML_loHalf.mo index b5c303a2b7..f44911f94f 100644 --- a/AixLib/DataBase/Walls/WSchV1984/Floor/FLground_WSchV1984_SML_loHalf.mo +++ b/AixLib/DataBase/Walls/WSchV1984/Floor/FLground_WSchV1984_SML_loHalf.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1984.Floor; +within AixLib.DataBase.Walls.WSchV1984.Floor; record FLground_WSchV1984_SML_loHalf "Floor towards ground (lower part) after WSchV1984, for building of type S (schwer), M (mittel) and L (leicht)" extends WallBaseDataDefinition( n(min=1) = 3 "Number of wall layers", diff --git a/AixLib/DataBase/Walls/WSchV1984/Floor/FLground_WSchV1984_SML_upHalf.mo b/AixLib/DataBase/Walls/WSchV1984/Floor/FLground_WSchV1984_SML_upHalf.mo index 4e60233b40..c6b6c62de2 100644 --- a/AixLib/DataBase/Walls/WSchV1984/Floor/FLground_WSchV1984_SML_upHalf.mo +++ b/AixLib/DataBase/Walls/WSchV1984/Floor/FLground_WSchV1984_SML_upHalf.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1984.Floor; +within AixLib.DataBase.Walls.WSchV1984.Floor; record FLground_WSchV1984_SML_upHalf "Floor towards ground (upper part) after WSchV1984, for building of type S (schwer), M (mittel) and L (leicht)" extends WallBaseDataDefinition( n(min=1) = 2 "Number of wall layers", diff --git a/AixLib/DataBase/Walls/WSchV1984/Floor/FLpartition_WSchV1984_L_upHalf.mo b/AixLib/DataBase/Walls/WSchV1984/Floor/FLpartition_WSchV1984_L_upHalf.mo index d1f515b2b0..9edc9c5c65 100644 --- a/AixLib/DataBase/Walls/WSchV1984/Floor/FLpartition_WSchV1984_L_upHalf.mo +++ b/AixLib/DataBase/Walls/WSchV1984/Floor/FLpartition_WSchV1984_L_upHalf.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1984.Floor; +within AixLib.DataBase.Walls.WSchV1984.Floor; record FLpartition_WSchV1984_L_upHalf "Floor partition after WSchV1984, for building of typeL (leicht), upper half" extends WallBaseDataDefinition(n(min = 1) = 2 "Number of wall layers", d = {0.02, 0.06} diff --git a/AixLib/DataBase/Walls/WSchV1984/Floor/FLpartition_WSchV1984_SM_upHalf.mo b/AixLib/DataBase/Walls/WSchV1984/Floor/FLpartition_WSchV1984_SM_upHalf.mo index d7cad71980..5eb29b7285 100644 --- a/AixLib/DataBase/Walls/WSchV1984/Floor/FLpartition_WSchV1984_SM_upHalf.mo +++ b/AixLib/DataBase/Walls/WSchV1984/Floor/FLpartition_WSchV1984_SM_upHalf.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1984.Floor; +within AixLib.DataBase.Walls.WSchV1984.Floor; record FLpartition_WSchV1984_SM_upHalf "Floor partition after WSchV1984, for building of type S (schwer) and M (mittel), upper half" extends WallBaseDataDefinition(n(min = 1) = 2 "Number of wall layers", d = {0.02, 0.06} diff --git a/AixLib/DataBase/Walls/WSchV1984/IW/IWload_WSchV1984_L_half.mo b/AixLib/DataBase/Walls/WSchV1984/IW/IWload_WSchV1984_L_half.mo index 68dbec006b..a5be159b5b 100644 --- a/AixLib/DataBase/Walls/WSchV1984/IW/IWload_WSchV1984_L_half.mo +++ b/AixLib/DataBase/Walls/WSchV1984/IW/IWload_WSchV1984_L_half.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1984.IW; +within AixLib.DataBase.Walls.WSchV1984.IW; record IWload_WSchV1984_L_half "Inner wall load-bearing after WSchV1984, for building of type L (leicht), only half" // New Walls for Dymola 2012, the same number of layers as other mass clases diff --git a/AixLib/DataBase/Walls/WSchV1984/IW/IWload_WSchV1984_M_half.mo b/AixLib/DataBase/Walls/WSchV1984/IW/IWload_WSchV1984_M_half.mo index c4fb7f44c7..12196fd005 100644 --- a/AixLib/DataBase/Walls/WSchV1984/IW/IWload_WSchV1984_M_half.mo +++ b/AixLib/DataBase/Walls/WSchV1984/IW/IWload_WSchV1984_M_half.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1984.IW; +within AixLib.DataBase.Walls.WSchV1984.IW; record IWload_WSchV1984_M_half "Inner wall load-bearing after WSchV1984, for building of type M (schwer), only half" extends WallBaseDataDefinition(n(min = 1) = 2 "Number of wall layers", d = {0.0875, 0.015} diff --git a/AixLib/DataBase/Walls/WSchV1984/IW/IWload_WSchV1984_S_half.mo b/AixLib/DataBase/Walls/WSchV1984/IW/IWload_WSchV1984_S_half.mo index 8fc765f9e4..3f10e21f3b 100644 --- a/AixLib/DataBase/Walls/WSchV1984/IW/IWload_WSchV1984_S_half.mo +++ b/AixLib/DataBase/Walls/WSchV1984/IW/IWload_WSchV1984_S_half.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1984.IW; +within AixLib.DataBase.Walls.WSchV1984.IW; record IWload_WSchV1984_S_half "Inner wall load-bearing after WSchV1984, for building of type S (schwer), only half" extends WallBaseDataDefinition(n(min = 1) = 2 "Number of wall layers", d = {0.0875, 0.015} diff --git a/AixLib/DataBase/Walls/WSchV1984/IW/IWneighbour_WSchV1984_L_half.mo b/AixLib/DataBase/Walls/WSchV1984/IW/IWneighbour_WSchV1984_L_half.mo index 1af6e67731..598365c31a 100644 --- a/AixLib/DataBase/Walls/WSchV1984/IW/IWneighbour_WSchV1984_L_half.mo +++ b/AixLib/DataBase/Walls/WSchV1984/IW/IWneighbour_WSchV1984_L_half.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1984.IW; +within AixLib.DataBase.Walls.WSchV1984.IW; record IWneighbour_WSchV1984_L_half "Inner wall towards neighbour after WSchV1984, for building of type L (leicht), only half" // New Walls for Dymola 2012, the same number of layers as other mass clases diff --git a/AixLib/DataBase/Walls/WSchV1984/IW/IWneighbour_WSchV1984_M_half.mo b/AixLib/DataBase/Walls/WSchV1984/IW/IWneighbour_WSchV1984_M_half.mo index 7eb1780449..993abaf1d0 100644 --- a/AixLib/DataBase/Walls/WSchV1984/IW/IWneighbour_WSchV1984_M_half.mo +++ b/AixLib/DataBase/Walls/WSchV1984/IW/IWneighbour_WSchV1984_M_half.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1984.IW; +within AixLib.DataBase.Walls.WSchV1984.IW; record IWneighbour_WSchV1984_M_half "Inner wall towards neighbour after WSchV1984, for building of type S (mitel), only half" extends WallBaseDataDefinition(n(min = 1) = 3 "Number of wall layers", d = {0.02, 0.175, 0.015} diff --git a/AixLib/DataBase/Walls/WSchV1984/IW/IWneighbour_WSchV1984_S_half.mo b/AixLib/DataBase/Walls/WSchV1984/IW/IWneighbour_WSchV1984_S_half.mo index 78c9c2f4d8..3dd396330e 100644 --- a/AixLib/DataBase/Walls/WSchV1984/IW/IWneighbour_WSchV1984_S_half.mo +++ b/AixLib/DataBase/Walls/WSchV1984/IW/IWneighbour_WSchV1984_S_half.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1984.IW; +within AixLib.DataBase.Walls.WSchV1984.IW; record IWneighbour_WSchV1984_S_half "Inner wall towards neighbour after WSchV1984, for building of type S (schwer), only half" extends WallBaseDataDefinition(n(min = 1) = 3 "Number of wall layers", d = {0.02, 0.175, 0.015} diff --git a/AixLib/DataBase/Walls/WSchV1984/IW/IWsimple_WSchV1984_L_half.mo b/AixLib/DataBase/Walls/WSchV1984/IW/IWsimple_WSchV1984_L_half.mo index 005f32d0f9..ddce4fc4bf 100644 --- a/AixLib/DataBase/Walls/WSchV1984/IW/IWsimple_WSchV1984_L_half.mo +++ b/AixLib/DataBase/Walls/WSchV1984/IW/IWsimple_WSchV1984_L_half.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1984.IW; +within AixLib.DataBase.Walls.WSchV1984.IW; record IWsimple_WSchV1984_L_half "Inner wall simple after WSchV1984, for building of type L (leicht), only half" // New Walls for Dymola 2012, the same number of layers as other mass clases diff --git a/AixLib/DataBase/Walls/WSchV1984/IW/IWsimple_WSchV1984_M_half.mo b/AixLib/DataBase/Walls/WSchV1984/IW/IWsimple_WSchV1984_M_half.mo index 2148afb51a..105369715b 100644 --- a/AixLib/DataBase/Walls/WSchV1984/IW/IWsimple_WSchV1984_M_half.mo +++ b/AixLib/DataBase/Walls/WSchV1984/IW/IWsimple_WSchV1984_M_half.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1984.IW; +within AixLib.DataBase.Walls.WSchV1984.IW; record IWsimple_WSchV1984_M_half "Inner wall simple after WSchV1984, for building of type M (mittel), only half" extends WallBaseDataDefinition(n(min = 1) = 2 "Number of wall layers", d = {0.0575, 0.015} diff --git a/AixLib/DataBase/Walls/WSchV1984/IW/IWsimple_WSchV1984_S_half.mo b/AixLib/DataBase/Walls/WSchV1984/IW/IWsimple_WSchV1984_S_half.mo index 2459cd1e41..82162cbbce 100644 --- a/AixLib/DataBase/Walls/WSchV1984/IW/IWsimple_WSchV1984_S_half.mo +++ b/AixLib/DataBase/Walls/WSchV1984/IW/IWsimple_WSchV1984_S_half.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1984.IW; +within AixLib.DataBase.Walls.WSchV1984.IW; record IWsimple_WSchV1984_S_half "Inner wall simple after WSchV1984, for building of type S (schwer), only half" extends WallBaseDataDefinition(n(min = 1) = 2 "Number of wall layers", d = {0.0575, 0.015} diff --git a/AixLib/DataBase/Walls/WSchV1984/OW/OW_WSchV1984_L.mo b/AixLib/DataBase/Walls/WSchV1984/OW/OW_WSchV1984_L.mo index bfd74af18d..07b7a35dd5 100644 --- a/AixLib/DataBase/Walls/WSchV1984/OW/OW_WSchV1984_L.mo +++ b/AixLib/DataBase/Walls/WSchV1984/OW/OW_WSchV1984_L.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1984.OW; +within AixLib.DataBase.Walls.WSchV1984.OW; record OW_WSchV1984_L "outer wall after WSchV1984, for building of type L (leicht)" // New Walls for Dymola 2012, the same number of layers as other mass clases diff --git a/AixLib/DataBase/Walls/WSchV1984/OW/OW_WSchV1984_M.mo b/AixLib/DataBase/Walls/WSchV1984/OW/OW_WSchV1984_M.mo index 4779295c15..74f99a62f3 100644 --- a/AixLib/DataBase/Walls/WSchV1984/OW/OW_WSchV1984_M.mo +++ b/AixLib/DataBase/Walls/WSchV1984/OW/OW_WSchV1984_M.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1984.OW; +within AixLib.DataBase.Walls.WSchV1984.OW; record OW_WSchV1984_M "outer wall after WSchV1984, for building of type M (mittel)" extends WallBaseDataDefinition(n(min = 1) = 4 "Number of wall layers", d = {0.05, 0.04, 0.18, 0.015} diff --git a/AixLib/DataBase/Walls/WSchV1984/OW/OW_WSchV1984_M_MFD.mo b/AixLib/DataBase/Walls/WSchV1984/OW/OW_WSchV1984_M_MFD.mo index fafc084cc4..bc37d1900f 100644 --- a/AixLib/DataBase/Walls/WSchV1984/OW/OW_WSchV1984_M_MFD.mo +++ b/AixLib/DataBase/Walls/WSchV1984/OW/OW_WSchV1984_M_MFD.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1984.OW; +within AixLib.DataBase.Walls.WSchV1984.OW; record OW_WSchV1984_M_MFD "outer wall after WSchV1984, for building of type S (schwer)" extends WallBaseDataDefinition( n(min=1) = 4 "Number of wall layers", diff --git a/AixLib/DataBase/Walls/WSchV1984/OW/OW_WSchV1984_S.mo b/AixLib/DataBase/Walls/WSchV1984/OW/OW_WSchV1984_S.mo index 1249404f6b..75f5cfa40b 100644 --- a/AixLib/DataBase/Walls/WSchV1984/OW/OW_WSchV1984_S.mo +++ b/AixLib/DataBase/Walls/WSchV1984/OW/OW_WSchV1984_S.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1984.OW; +within AixLib.DataBase.Walls.WSchV1984.OW; record OW_WSchV1984_S "outer wall after WSchV1984, for building of type S (schwer)" extends WallBaseDataDefinition(n(min = 1) = 4 "Number of wall layers", d = {0.05, 0.06, 0.175, 0.015} diff --git a/AixLib/DataBase/Walls/WSchV1984/OW/OW_WSchV1984_S_MFD.mo b/AixLib/DataBase/Walls/WSchV1984/OW/OW_WSchV1984_S_MFD.mo index 25e40e1579..dd5a986057 100644 --- a/AixLib/DataBase/Walls/WSchV1984/OW/OW_WSchV1984_S_MFD.mo +++ b/AixLib/DataBase/Walls/WSchV1984/OW/OW_WSchV1984_S_MFD.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1984.OW; +within AixLib.DataBase.Walls.WSchV1984.OW; record OW_WSchV1984_S_MFD "outer wall after WSchV1984, for building of type S (schwer), for MFD" extends WallBaseDataDefinition( n(min=1) = 4 "Number of wall layers", diff --git a/AixLib/DataBase/Walls/WSchV1995/Ceiling/CEattic_WSchV1995_SML_loHalf.mo b/AixLib/DataBase/Walls/WSchV1995/Ceiling/CEattic_WSchV1995_SML_loHalf.mo index 06f7f72f33..1077d6bbfa 100644 --- a/AixLib/DataBase/Walls/WSchV1995/Ceiling/CEattic_WSchV1995_SML_loHalf.mo +++ b/AixLib/DataBase/Walls/WSchV1995/Ceiling/CEattic_WSchV1995_SML_loHalf.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1995.Ceiling; +within AixLib.DataBase.Walls.WSchV1995.Ceiling; record CEattic_WSchV1995_SML_loHalf "Ceiling towards attic after WSchV1995, for building of type S (schwer), M (mittel) and L (leicht), lower half" extends WallBaseDataDefinition(n(min = 1) = 3 "Number of wall layers", d = {0.08, 0.0125, 0.015} diff --git a/AixLib/DataBase/Walls/WSchV1995/Ceiling/CEcellar_WSchV1995_SML_loHalf.mo b/AixLib/DataBase/Walls/WSchV1995/Ceiling/CEcellar_WSchV1995_SML_loHalf.mo index fbac8ded0a..7cd2cb1919 100644 --- a/AixLib/DataBase/Walls/WSchV1995/Ceiling/CEcellar_WSchV1995_SML_loHalf.mo +++ b/AixLib/DataBase/Walls/WSchV1995/Ceiling/CEcellar_WSchV1995_SML_loHalf.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1995.Ceiling; +within AixLib.DataBase.Walls.WSchV1995.Ceiling; record CEcellar_WSchV1995_SML_loHalf "Ceiling cellar after WSchV1995, for building of type S (schwer), M (mittel) and L (leicht), lower half" extends WallBaseDataDefinition(n(min = 1) = 3 "Number of wall layers", d = {0.02, 0.16, 0.02} diff --git a/AixLib/DataBase/Walls/WSchV1995/Ceiling/CEpartition_WSchV1995_L_loHalf.mo b/AixLib/DataBase/Walls/WSchV1995/Ceiling/CEpartition_WSchV1995_L_loHalf.mo index 0b971d4707..ad4ee2b5f1 100644 --- a/AixLib/DataBase/Walls/WSchV1995/Ceiling/CEpartition_WSchV1995_L_loHalf.mo +++ b/AixLib/DataBase/Walls/WSchV1995/Ceiling/CEpartition_WSchV1995_L_loHalf.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1995.Ceiling; +within AixLib.DataBase.Walls.WSchV1995.Ceiling; record CEpartition_WSchV1995_L_loHalf "Ceiling partition after WSchV1995, for building of type L (leicht), lower half" // New Walls for Dymola 2012, the same number of layers as other mass clases diff --git a/AixLib/DataBase/Walls/WSchV1995/Ceiling/CEpartition_WSchV1995_SM_loHalf.mo b/AixLib/DataBase/Walls/WSchV1995/Ceiling/CEpartition_WSchV1995_SM_loHalf.mo index 203618dfe8..8dd49991a3 100644 --- a/AixLib/DataBase/Walls/WSchV1995/Ceiling/CEpartition_WSchV1995_SM_loHalf.mo +++ b/AixLib/DataBase/Walls/WSchV1995/Ceiling/CEpartition_WSchV1995_SM_loHalf.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1995.Ceiling; +within AixLib.DataBase.Walls.WSchV1995.Ceiling; record CEpartition_WSchV1995_SM_loHalf "Ceiling partition after WSchV1995, for building of type S (schwer) and M (mittel), lower half" extends WallBaseDataDefinition(n(min = 1) = 3 "Number of wall layers", d = {0.02, 0.16, 0.015} diff --git a/AixLib/DataBase/Walls/WSchV1995/Ceiling/ROsaddleAttic_WSchV1995_SML.mo b/AixLib/DataBase/Walls/WSchV1995/Ceiling/ROsaddleAttic_WSchV1995_SML.mo index 35e87330b9..bf37b5c52a 100644 --- a/AixLib/DataBase/Walls/WSchV1995/Ceiling/ROsaddleAttic_WSchV1995_SML.mo +++ b/AixLib/DataBase/Walls/WSchV1995/Ceiling/ROsaddleAttic_WSchV1995_SML.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1995.Ceiling; +within AixLib.DataBase.Walls.WSchV1995.Ceiling; record ROsaddleAttic_WSchV1995_SML "Saddle roof in attic after WSchV1995, for building of type S (schwer), M (mittel) and L (leicht)" extends WallBaseDataDefinition(n(min = 1) = 1 "Number of wall layers", d = {0.18} diff --git a/AixLib/DataBase/Walls/WSchV1995/Ceiling/ROsaddleRoom_WSchV1995_SML.mo b/AixLib/DataBase/Walls/WSchV1995/Ceiling/ROsaddleRoom_WSchV1995_SML.mo index ba2fc9f6d3..32519eb83d 100644 --- a/AixLib/DataBase/Walls/WSchV1995/Ceiling/ROsaddleRoom_WSchV1995_SML.mo +++ b/AixLib/DataBase/Walls/WSchV1995/Ceiling/ROsaddleRoom_WSchV1995_SML.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1995.Ceiling; +within AixLib.DataBase.Walls.WSchV1995.Ceiling; record ROsaddleRoom_WSchV1995_SML "Saddle roof in room after WSchV1995, for building of type S (schwer), M (mittel) and L (leicht)" extends WallBaseDataDefinition(n(min = 1) = 3 "Number of wall layers", d = {0.18, 0.0125, 0.015} diff --git a/AixLib/DataBase/Walls/WSchV1995/Floor/FLcellar_WSchV1995_SML_upHalf.mo b/AixLib/DataBase/Walls/WSchV1995/Floor/FLcellar_WSchV1995_SML_upHalf.mo index 9c03326077..b6e71aaeea 100644 --- a/AixLib/DataBase/Walls/WSchV1995/Floor/FLcellar_WSchV1995_SML_upHalf.mo +++ b/AixLib/DataBase/Walls/WSchV1995/Floor/FLcellar_WSchV1995_SML_upHalf.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1995.Floor; +within AixLib.DataBase.Walls.WSchV1995.Floor; record FLcellar_WSchV1995_SML_upHalf "Floor towards cellar after WSchV1995, for building of type S (schwer), M (mittel) and L (leicht), upper half." extends WallBaseDataDefinition(n(min = 1) = 2 "Number of wall layers", d = {0.02, 0.06} diff --git a/AixLib/DataBase/Walls/WSchV1995/Floor/FLground_WSchV1995_SML.mo b/AixLib/DataBase/Walls/WSchV1995/Floor/FLground_WSchV1995_SML.mo index 13aad211e0..0c4ce6c29b 100644 --- a/AixLib/DataBase/Walls/WSchV1995/Floor/FLground_WSchV1995_SML.mo +++ b/AixLib/DataBase/Walls/WSchV1995/Floor/FLground_WSchV1995_SML.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1995.Floor; +within AixLib.DataBase.Walls.WSchV1995.Floor; record FLground_WSchV1995_SML "Floor towards ground after WSchV1995, for building of type S (schwer), M (mittel) and L (leicht)" extends WallBaseDataDefinition(n(min = 1) = 4 "Number of wall layers", d = {0.04, 0.25, 0.04, 0.06} diff --git a/AixLib/DataBase/Walls/WSchV1995/Floor/FLground_WSchV1995_SML_loHalf.mo b/AixLib/DataBase/Walls/WSchV1995/Floor/FLground_WSchV1995_SML_loHalf.mo index f03283e5aa..f49c695bb9 100644 --- a/AixLib/DataBase/Walls/WSchV1995/Floor/FLground_WSchV1995_SML_loHalf.mo +++ b/AixLib/DataBase/Walls/WSchV1995/Floor/FLground_WSchV1995_SML_loHalf.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1995.Floor; +within AixLib.DataBase.Walls.WSchV1995.Floor; record FLground_WSchV1995_SML_loHalf "Floor towards ground (lower part) after WSchV1995, for building of type S (schwer), M (mittel) and L (leicht)" extends WallBaseDataDefinition( n(min=1) = 3 "Number of wall layers", diff --git a/AixLib/DataBase/Walls/WSchV1995/Floor/FLground_WSchV1995_SML_upHalf.mo b/AixLib/DataBase/Walls/WSchV1995/Floor/FLground_WSchV1995_SML_upHalf.mo index afe22e4b1d..cfef66ebea 100644 --- a/AixLib/DataBase/Walls/WSchV1995/Floor/FLground_WSchV1995_SML_upHalf.mo +++ b/AixLib/DataBase/Walls/WSchV1995/Floor/FLground_WSchV1995_SML_upHalf.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1995.Floor; +within AixLib.DataBase.Walls.WSchV1995.Floor; record FLground_WSchV1995_SML_upHalf "Floor towards ground (upper part) after WSchV1995, for building of type S (schwer), M (mittel) and L (leicht)" extends WallBaseDataDefinition( n(min=1) = 2 "Number of wall layers", diff --git a/AixLib/DataBase/Walls/WSchV1995/Floor/FLpartition_WSchV1995_L_upHalf.mo b/AixLib/DataBase/Walls/WSchV1995/Floor/FLpartition_WSchV1995_L_upHalf.mo index de4099e58b..a6b1276fae 100644 --- a/AixLib/DataBase/Walls/WSchV1995/Floor/FLpartition_WSchV1995_L_upHalf.mo +++ b/AixLib/DataBase/Walls/WSchV1995/Floor/FLpartition_WSchV1995_L_upHalf.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1995.Floor; +within AixLib.DataBase.Walls.WSchV1995.Floor; record FLpartition_WSchV1995_L_upHalf "Floor partition after WSchV1995, for building of typeL (leicht), upper half" extends WallBaseDataDefinition(n(min = 1) = 2 "Number of wall layers", d = {0.02, 0.06} diff --git a/AixLib/DataBase/Walls/WSchV1995/Floor/FLpartition_WSchV1995_SM_upHalf.mo b/AixLib/DataBase/Walls/WSchV1995/Floor/FLpartition_WSchV1995_SM_upHalf.mo index fc7117143a..a8fe5ac29a 100644 --- a/AixLib/DataBase/Walls/WSchV1995/Floor/FLpartition_WSchV1995_SM_upHalf.mo +++ b/AixLib/DataBase/Walls/WSchV1995/Floor/FLpartition_WSchV1995_SM_upHalf.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1995.Floor; +within AixLib.DataBase.Walls.WSchV1995.Floor; record FLpartition_WSchV1995_SM_upHalf "Floor partition after WSchV1995, for building of type S (schwer) and M (mittel), upper half" extends WallBaseDataDefinition(n(min = 1) = 2 "Number of wall layers", d = {0.02, 0.06} diff --git a/AixLib/DataBase/Walls/WSchV1995/IW/IWload_WSchV1995_L_half.mo b/AixLib/DataBase/Walls/WSchV1995/IW/IWload_WSchV1995_L_half.mo index 2ac1e7238b..a08367d1ca 100644 --- a/AixLib/DataBase/Walls/WSchV1995/IW/IWload_WSchV1995_L_half.mo +++ b/AixLib/DataBase/Walls/WSchV1995/IW/IWload_WSchV1995_L_half.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1995.IW; +within AixLib.DataBase.Walls.WSchV1995.IW; record IWload_WSchV1995_L_half "Inner wall load-bearing after WSchV1995, for building of type L (leicht), only half" // New Walls for Dymola 2012, the same number of layers as other mass clases diff --git a/AixLib/DataBase/Walls/WSchV1995/IW/IWload_WSchV1995_M_half.mo b/AixLib/DataBase/Walls/WSchV1995/IW/IWload_WSchV1995_M_half.mo index a505d63373..bc1e5c08a1 100644 --- a/AixLib/DataBase/Walls/WSchV1995/IW/IWload_WSchV1995_M_half.mo +++ b/AixLib/DataBase/Walls/WSchV1995/IW/IWload_WSchV1995_M_half.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1995.IW; +within AixLib.DataBase.Walls.WSchV1995.IW; record IWload_WSchV1995_M_half "Inner wall load-bearing after WSchV1995, for building of type M (schwer), only half" extends WallBaseDataDefinition(n(min = 1) = 2 "Number of wall layers", d = {0.0875, 0.015} diff --git a/AixLib/DataBase/Walls/WSchV1995/IW/IWload_WSchV1995_S_half.mo b/AixLib/DataBase/Walls/WSchV1995/IW/IWload_WSchV1995_S_half.mo index b359296633..f6b875b140 100644 --- a/AixLib/DataBase/Walls/WSchV1995/IW/IWload_WSchV1995_S_half.mo +++ b/AixLib/DataBase/Walls/WSchV1995/IW/IWload_WSchV1995_S_half.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1995.IW; +within AixLib.DataBase.Walls.WSchV1995.IW; record IWload_WSchV1995_S_half "Inner wall load-bearing after WSchV1995, for building of type S (schwer), only half" extends WallBaseDataDefinition(n(min = 1) = 2 "Number of wall layers", d = {0.0875, 0.015} diff --git a/AixLib/DataBase/Walls/WSchV1995/IW/IWneighbour_WSchV1995_L_half.mo b/AixLib/DataBase/Walls/WSchV1995/IW/IWneighbour_WSchV1995_L_half.mo index 7e662e5b47..4d375ef182 100644 --- a/AixLib/DataBase/Walls/WSchV1995/IW/IWneighbour_WSchV1995_L_half.mo +++ b/AixLib/DataBase/Walls/WSchV1995/IW/IWneighbour_WSchV1995_L_half.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1995.IW; +within AixLib.DataBase.Walls.WSchV1995.IW; record IWneighbour_WSchV1995_L_half "Inner wall towards neighbour after WSchV1995, for building of type L (leicht), only half" // New Walls for Dymola 2012, the same number of layers as other mass clases diff --git a/AixLib/DataBase/Walls/WSchV1995/IW/IWneighbour_WSchV1995_M_half.mo b/AixLib/DataBase/Walls/WSchV1995/IW/IWneighbour_WSchV1995_M_half.mo index 45065370c1..adef4caf93 100644 --- a/AixLib/DataBase/Walls/WSchV1995/IW/IWneighbour_WSchV1995_M_half.mo +++ b/AixLib/DataBase/Walls/WSchV1995/IW/IWneighbour_WSchV1995_M_half.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1995.IW; +within AixLib.DataBase.Walls.WSchV1995.IW; record IWneighbour_WSchV1995_M_half "Inner wall towards neighbour after WSchV1995, for building of type S (mitel), only half" extends WallBaseDataDefinition(n(min = 1) = 3 "Number of wall layers", d = {0.02, 0.175, 0.015} diff --git a/AixLib/DataBase/Walls/WSchV1995/IW/IWneighbour_WSchV1995_S_half.mo b/AixLib/DataBase/Walls/WSchV1995/IW/IWneighbour_WSchV1995_S_half.mo index 6c40728008..07f229a697 100644 --- a/AixLib/DataBase/Walls/WSchV1995/IW/IWneighbour_WSchV1995_S_half.mo +++ b/AixLib/DataBase/Walls/WSchV1995/IW/IWneighbour_WSchV1995_S_half.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1995.IW; +within AixLib.DataBase.Walls.WSchV1995.IW; record IWneighbour_WSchV1995_S_half "Inner wall towards neighbour after WSchV1995, for building of type S (schwer), only half" extends WallBaseDataDefinition(n(min = 1) = 3 "Number of wall layers", d = {0.02, 0.175, 0.015} diff --git a/AixLib/DataBase/Walls/WSchV1995/IW/IWsimple_WSchV1995_L_half.mo b/AixLib/DataBase/Walls/WSchV1995/IW/IWsimple_WSchV1995_L_half.mo index 6046707157..c08018bec6 100644 --- a/AixLib/DataBase/Walls/WSchV1995/IW/IWsimple_WSchV1995_L_half.mo +++ b/AixLib/DataBase/Walls/WSchV1995/IW/IWsimple_WSchV1995_L_half.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1995.IW; +within AixLib.DataBase.Walls.WSchV1995.IW; record IWsimple_WSchV1995_L_half "Inner wall simple after WSchV1995, for building of type L (leicht), only half" // New Walls for Dymola 2012, the same number of layers as other mass clases diff --git a/AixLib/DataBase/Walls/WSchV1995/IW/IWsimple_WSchV1995_M_half.mo b/AixLib/DataBase/Walls/WSchV1995/IW/IWsimple_WSchV1995_M_half.mo index 77b580df71..cad45b6b26 100644 --- a/AixLib/DataBase/Walls/WSchV1995/IW/IWsimple_WSchV1995_M_half.mo +++ b/AixLib/DataBase/Walls/WSchV1995/IW/IWsimple_WSchV1995_M_half.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1995.IW; +within AixLib.DataBase.Walls.WSchV1995.IW; record IWsimple_WSchV1995_M_half "Inner wall simple after WSchV1995, for building of type M (mittel), only half" extends WallBaseDataDefinition(n(min = 1) = 2 "Number of wall layers", d = {0.0575, 0.015} diff --git a/AixLib/DataBase/Walls/WSchV1995/IW/IWsimple_WSchV1995_S_half.mo b/AixLib/DataBase/Walls/WSchV1995/IW/IWsimple_WSchV1995_S_half.mo index 39c83b8f3f..f855d0706f 100644 --- a/AixLib/DataBase/Walls/WSchV1995/IW/IWsimple_WSchV1995_S_half.mo +++ b/AixLib/DataBase/Walls/WSchV1995/IW/IWsimple_WSchV1995_S_half.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1995.IW; +within AixLib.DataBase.Walls.WSchV1995.IW; record IWsimple_WSchV1995_S_half "Inner wall simple after WSchV1995, for building of type S (schwer), only half" extends WallBaseDataDefinition(n(min = 1) = 2 "Number of wall layers", d = {0.0575, 0.015} diff --git a/AixLib/DataBase/Walls/WSchV1995/OW/OW_WSchV1995_L.mo b/AixLib/DataBase/Walls/WSchV1995/OW/OW_WSchV1995_L.mo index a2916197a3..d19ebd36f9 100644 --- a/AixLib/DataBase/Walls/WSchV1995/OW/OW_WSchV1995_L.mo +++ b/AixLib/DataBase/Walls/WSchV1995/OW/OW_WSchV1995_L.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1995.OW; +within AixLib.DataBase.Walls.WSchV1995.OW; record OW_WSchV1995_L "outer wall after WSchV1995, for building of type L (leicht)" // New Walls for Dymola 2012, the same number of layers as other mass clases diff --git a/AixLib/DataBase/Walls/WSchV1995/OW/OW_WSchV1995_M.mo b/AixLib/DataBase/Walls/WSchV1995/OW/OW_WSchV1995_M.mo index 03935bd38b..06a32e4ce3 100644 --- a/AixLib/DataBase/Walls/WSchV1995/OW/OW_WSchV1995_M.mo +++ b/AixLib/DataBase/Walls/WSchV1995/OW/OW_WSchV1995_M.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1995.OW; +within AixLib.DataBase.Walls.WSchV1995.OW; record OW_WSchV1995_M "outer wall after WSchV1995, for building of type M (mittel)" extends WallBaseDataDefinition(n(min = 1) = 4 "Number of wall layers", d = {0.05, 0.04, 0.18, 0.015} diff --git a/AixLib/DataBase/Walls/WSchV1995/OW/OW_WSchV1995_M_MFD.mo b/AixLib/DataBase/Walls/WSchV1995/OW/OW_WSchV1995_M_MFD.mo index 850986e31d..203d76ddc9 100644 --- a/AixLib/DataBase/Walls/WSchV1995/OW/OW_WSchV1995_M_MFD.mo +++ b/AixLib/DataBase/Walls/WSchV1995/OW/OW_WSchV1995_M_MFD.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1995.OW; +within AixLib.DataBase.Walls.WSchV1995.OW; record OW_WSchV1995_M_MFD "outer wall after WSchV1995, for building of type M (mittel), for MFD" extends WallBaseDataDefinition(n(min=1) = 4 "Number of wall layers", diff --git a/AixLib/DataBase/Walls/WSchV1995/OW/OW_WSchV1995_S.mo b/AixLib/DataBase/Walls/WSchV1995/OW/OW_WSchV1995_S.mo index c24be96187..15d60c786f 100644 --- a/AixLib/DataBase/Walls/WSchV1995/OW/OW_WSchV1995_S.mo +++ b/AixLib/DataBase/Walls/WSchV1995/OW/OW_WSchV1995_S.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1995.OW; +within AixLib.DataBase.Walls.WSchV1995.OW; record OW_WSchV1995_S "outer wall after WSchV1995, for building of type S (schwer)" extends WallBaseDataDefinition(n(min = 1) = 4 "Number of wall layers", d = {0.05, 0.06, 0.175, 0.015} diff --git a/AixLib/DataBase/Walls/WSchV1995/OW/OW_WSchV1995_S_MFD.mo b/AixLib/DataBase/Walls/WSchV1995/OW/OW_WSchV1995_S_MFD.mo index d8c53d115f..08e0a4f60f 100644 --- a/AixLib/DataBase/Walls/WSchV1995/OW/OW_WSchV1995_S_MFD.mo +++ b/AixLib/DataBase/Walls/WSchV1995/OW/OW_WSchV1995_S_MFD.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase.Walls.WSchV1995.OW; +within AixLib.DataBase.Walls.WSchV1995.OW; record OW_WSchV1995_S_MFD "outer wall after WSchV1995, for building of type S (schwer), for MFD" extends WallBaseDataDefinition(n(min=1) = 4 "Number of wall layers", diff --git a/AixLib/DataBase/Walls/WallBaseDataDefinition.mo b/AixLib/DataBase/Walls/WallBaseDataDefinition.mo index a284241d46..9a7482726c 100644 --- a/AixLib/DataBase/Walls/WallBaseDataDefinition.mo +++ b/AixLib/DataBase/Walls/WallBaseDataDefinition.mo @@ -5,21 +5,19 @@ record WallBaseDataDefinition "Wall base data definition" parameter Integer n(min = 1) "Number of wall layers" annotation(Dialog(tab = "Wall", group = "Wall parameters")); - parameter Modelica.SIunits.Length d[n] - "Thickness of wall layers" - annotation(Dialog(tab = "Wall", group = "Layer parameters")); - parameter Modelica.SIunits.Density rho[n] - "Density of wall layers" - annotation(Dialog(tab = "Wall", group = "Layer parameters")); - parameter Modelica.SIunits.ThermalConductivity lambda[n] + parameter Modelica.Units.SI.Length d[n] "Thickness of wall layers" + annotation (Dialog(tab="Wall", group="Layer parameters")); + parameter Modelica.Units.SI.Density rho[n] "Density of wall layers" + annotation (Dialog(tab="Wall", group="Layer parameters")); + parameter Modelica.Units.SI.ThermalConductivity lambda[n] "Thermal conductivity of wall layers" - annotation(Dialog(tab = "Wall", group = "Wall parameters")); - parameter Modelica.SIunits.SpecificHeatCapacity c[n] + annotation (Dialog(tab="Wall", group="Wall parameters")); + parameter Modelica.Units.SI.SpecificHeatCapacity c[n] "Specific heat capacity of wall layers" - annotation(Dialog(tab = "Wall", group = "Wall parameters")); - parameter Modelica.SIunits.Emissivity eps = 0.95 + annotation (Dialog(tab="Wall", group="Wall parameters")); + parameter Modelica.Units.SI.Emissivity eps=0.95 "Emissivity of inner wall surface" - annotation(Dialog(tab = "Wall", group = "Wall parameters")); + annotation (Dialog(tab="Wall", group="Wall parameters")); annotation ( defaultComponentPrefixes="parameter", Documentation(info = "

                diff --git a/AixLib/DataBase/Weather/SurfaceOrientation/SurfaceOrientationBaseDataDefinition.mo b/AixLib/DataBase/Weather/SurfaceOrientation/SurfaceOrientationBaseDataDefinition.mo index 48eea9b3d7..79932e74ae 100644 --- a/AixLib/DataBase/Weather/SurfaceOrientation/SurfaceOrientationBaseDataDefinition.mo +++ b/AixLib/DataBase/Weather/SurfaceOrientation/SurfaceOrientationBaseDataDefinition.mo @@ -3,8 +3,8 @@ record SurfaceOrientationBaseDataDefinition extends Modelica.Icons.Record; parameter Integer nSurfaces; parameter String[nSurfaces] name; - parameter Modelica.SIunits.Conversions.NonSIunits.Angle_deg[nSurfaces] Azimut; - parameter Modelica.SIunits.Conversions.NonSIunits.Angle_deg[nSurfaces] Tilt; + parameter Modelica.Units.NonSI.Angle_deg[nSurfaces] Azimut; + parameter Modelica.Units.NonSI.Angle_deg[nSurfaces] Tilt; annotation(Documentation(info = "

                Overview

                diff --git a/AixLib/DataBase/Weather/SurfaceOrientation/SurfaceOrientationData_NE_SE_SW_NW_Hor.mo b/AixLib/DataBase/Weather/SurfaceOrientation/SurfaceOrientationData_NE_SE_SW_NW_Hor.mo index ea1c5d6da6..4e8f930763 100644 --- a/AixLib/DataBase/Weather/SurfaceOrientation/SurfaceOrientationData_NE_SE_SW_NW_Hor.mo +++ b/AixLib/DataBase/Weather/SurfaceOrientation/SurfaceOrientationData_NE_SE_SW_NW_Hor.mo @@ -14,7 +14,10 @@ record SurfaceOrientationData_NE_SE_SW_NW_Hor

                Data in this set:

                - +
                +
                + \"Data\" cellspacing=\"2\" cellpadding=\"0\" border=\"0\ +

                diff --git a/AixLib/DataBase/Weather/SurfaceOrientation/SurfaceOrientationData_N_E_S_W_Hor.mo b/AixLib/DataBase/Weather/SurfaceOrientation/SurfaceOrientationData_N_E_S_W_Hor.mo index dc143de44b..2bac867734 100644 --- a/AixLib/DataBase/Weather/SurfaceOrientation/SurfaceOrientationData_N_E_S_W_Hor.mo +++ b/AixLib/DataBase/Weather/SurfaceOrientation/SurfaceOrientationData_N_E_S_W_Hor.mo @@ -14,7 +14,10 @@ record SurfaceOrientationData_N_E_S_W_Hor

                Data in this set:

                - +
                +
                + \"Data\" cellspacing=\"2\" cellpadding=\"0\" border=\"0\ +

                diff --git a/AixLib/DataBase/Weather/SurfaceOrientation/SurfaceOrientationData_N_E_S_W_RoofN_Roof_S.mo b/AixLib/DataBase/Weather/SurfaceOrientation/SurfaceOrientationData_N_E_S_W_RoofN_Roof_S.mo index f4ed549143..2602ff4cec 100644 --- a/AixLib/DataBase/Weather/SurfaceOrientation/SurfaceOrientationData_N_E_S_W_RoofN_Roof_S.mo +++ b/AixLib/DataBase/Weather/SurfaceOrientation/SurfaceOrientationData_N_E_S_W_RoofN_Roof_S.mo @@ -15,7 +15,10 @@ record SurfaceOrientationData_N_E_S_W_RoofN_Roof_S

                Data in this set:

                - +
                + or other required elements. + thead: [ 1, "
                + \"Data\" cellspacing=\"2\" cellpadding=\"0\" border=\"0\ +

                diff --git a/AixLib/DataBase/WindowsDoors/Simple/OWBaseDataDefinition_Simple.mo b/AixLib/DataBase/WindowsDoors/Simple/OWBaseDataDefinition_Simple.mo index 13dd992f94..c1c9aaa1c5 100644 --- a/AixLib/DataBase/WindowsDoors/Simple/OWBaseDataDefinition_Simple.mo +++ b/AixLib/DataBase/WindowsDoors/Simple/OWBaseDataDefinition_Simple.mo @@ -2,7 +2,7 @@ within AixLib.DataBase.WindowsDoors.Simple; record OWBaseDataDefinition_Simple "Window base definition" extends Modelica.Icons.Record; - parameter Modelica.SIunits.CoefficientOfHeatTransfer Uw + parameter Modelica.Units.SI.CoefficientOfHeatTransfer Uw "Thermal transmission coefficient of whole window: glass + frame"; parameter Real frameFraction(min=0.0, max=1.0) = 0.2 "frame fraction from total fenestration area"; diff --git a/AixLib/DataBase/WindowsDoors/package.mo b/AixLib/DataBase/WindowsDoors/package.mo index 2167fc44e9..871bafec52 100644 --- a/AixLib/DataBase/WindowsDoors/package.mo +++ b/AixLib/DataBase/WindowsDoors/package.mo @@ -1,4 +1,4 @@ -within AixLib.DataBase; +within AixLib.DataBase; package WindowsDoors "Windows and doors definition package" extends Modelica.Icons.Package; diff --git a/AixLib/Electrical/Machines/InductionMachine.mo b/AixLib/Electrical/Machines/InductionMachine.mo index 99a3fba44f..bd7eac8d64 100644 --- a/AixLib/Electrical/Machines/InductionMachine.mo +++ b/AixLib/Electrical/Machines/InductionMachine.mo @@ -4,35 +4,40 @@ model InductionMachine import AixLib; extends Modelica.Electrical.Machines.Icons.TransientMachine; - parameter Modelica.SIunits.Frequency n0=f_1/p + parameter Modelica.Units.SI.Frequency n0=f_1/p "Idling speed of the electric machine" annotation (Dialog(group="Machine specifications")); - parameter Modelica.SIunits.Frequency n_nominal=1530/60 "Rated rotor speed" + parameter Modelica.Units.SI.Frequency n_nominal=1530/60 "Rated rotor speed" annotation (Dialog(group="Machine specifications")); - parameter Modelica.SIunits.Frequency f_1=50 "Frequency" + parameter Modelica.Units.SI.Frequency f_1=50 "Frequency" annotation (Dialog(group="Machine specifications")); - parameter Modelica.SIunits.Voltage U_1=400 "Rated voltage" + parameter Modelica.Units.SI.Voltage U_1=400 "Rated voltage" annotation (Dialog(group="Machine specifications")); - parameter Modelica.SIunits.Current I_elNominal=P_elNominal/(sqrt(3)*U_1* - cosPhi) "Rated current" + parameter Modelica.Units.SI.Current I_elNominal=P_elNominal/(sqrt(3)*U_1* + cosPhi) "Rated current" annotation (Dialog(group="Machine specifications")); - parameter Modelica.SIunits.Current I_1_start=if P_Mec_nominal<=15000 then 7.2*I_elNominal else 8*I_elNominal + parameter Modelica.Units.SI.Current I_1_start=if P_Mec_nominal <= 15000 then + 7.2*I_elNominal else 8*I_elNominal "Motor start current (realistic factors used from DIN VDE 2650/2651)" - annotation (Dialog( tab="Calculations")); - parameter Modelica.SIunits.Power P_elNominal=15000 + annotation (Dialog(tab="Calculations")); + parameter Modelica.Units.SI.Power P_elNominal=15000 "Nominal electrical power of electric machine" annotation (Dialog(group="Machine specifications")); - parameter Modelica.SIunits.Power P_Mec_nominal=P_elNominal*(1+s_nominal/0.22) "Nominal mechanical power of electric machine" + parameter Modelica.Units.SI.Power P_Mec_nominal=P_elNominal*(1 + s_nominal/ + 0.22) "Nominal mechanical power of electric machine" annotation (Dialog(tab="Calculations")); - parameter Modelica.SIunits.Torque M_nominal=P_Mec_nominal/(2*Modelica.Constants.pi*n_nominal) "Nominal torque of electric machine" + parameter Modelica.Units.SI.Torque M_nominal=P_Mec_nominal/(2*Modelica.Constants.pi + *n_nominal) "Nominal torque of electric machine" annotation (Dialog(tab="Calculations")); - parameter Modelica.SIunits.Torque M_til=2*M_nominal "Tilting torque of electric machine (realistic factor used from DIN VDE 2650/2651)" + parameter Modelica.Units.SI.Torque M_til=2*M_nominal + "Tilting torque of electric machine (realistic factor used from DIN VDE 2650/2651)" annotation (Dialog(tab="Calculations")); - parameter Modelica.SIunits.Torque M_start=if P_Mec_nominal<=4000 then 1.6*M_nominal - elseif P_Mec_nominal>=22000 then 1*M_nominal else 1.25*M_nominal - "Starting torque of electric machine (realistic factor used from DIN VDE 2650/2651)" + parameter Modelica.Units.SI.Torque M_start=if P_Mec_nominal <= 4000 then 1.6* + M_nominal elseif P_Mec_nominal >= 22000 then 1*M_nominal else 1.25* + M_nominal + "Starting torque of electric machine (realistic factor used from DIN VDE 2650/2651)" annotation (Dialog(tab="Calculations")); - parameter Modelica.SIunits.Inertia J_Gen=1 + parameter Modelica.Units.SI.Inertia J_Gen=1 "Moment of inertia of the electric machine (default=0.5kg.m2)" annotation (Dialog(group="Calibration")); parameter Real s_nominal=abs(1-n_nominal*p/f_1) "Nominal slip of electric machine" @@ -50,13 +55,14 @@ model InductionMachine parameter Real gearRatio=1 "Transmission ratio (engine speed / generator speed)" annotation (Dialog(group="Machine specifications")); - Modelica.SIunits.Frequency n=inertia.w/(2*Modelica.Constants.pi) "Speed of machine rotor [1/s]"; - Modelica.SIunits.Current I_1 "Electric current of machine stator"; - Modelica.SIunits.Power P_E "Electrical power at the electric machine"; - Modelica.SIunits.Power P_Mec "Mechanical power at the electric machine"; - Modelica.SIunits.Power CalQ_Loss + Modelica.Units.SI.Frequency n=inertia.w/(2*Modelica.Constants.pi) + "Speed of machine rotor [1/s]"; + Modelica.Units.SI.Current I_1 "Electric current of machine stator"; + Modelica.Units.SI.Power P_E "Electrical power at the electric machine"; + Modelica.Units.SI.Power P_Mec "Mechanical power at the electric machine"; + Modelica.Units.SI.Power CalQ_Loss "Calculated heat flow from electric machine"; - Modelica.SIunits.Torque M "Torque at electric machine"; + Modelica.Units.SI.Torque M "Torque at electric machine"; Real s=1-n*p/f_1 "Current slip of electric machine"; Real eta "Total efficiency of the electric machine (as motor)"; Real calI_1 = 1/(1+((k-1)/((s_nominal^2)-k))*((s^2)+rho1*abs(s)+rho0)); diff --git a/AixLib/Electrical/Machines/PVInverterRMS.mo b/AixLib/Electrical/Machines/PVInverterRMS.mo index f49c9e0cad..43f4d4743a 100644 --- a/AixLib/Electrical/Machines/PVInverterRMS.mo +++ b/AixLib/Electrical/Machines/PVInverterRMS.mo @@ -1,8 +1,8 @@ within AixLib.Electrical.Machines; model PVInverterRMS "Inverter model including system management" - parameter Modelica.SIunits.Power uMax2 - "Upper limits of input signals (MaxOutputPower)"; + parameter Modelica.Units.SI.Power uMax2 + "Upper limits of input signals (MaxOutputPower)"; Modelica.Blocks.Interfaces.RealOutput PVPowerRmsW( final quantity="Power", final unit="W") diff --git a/AixLib/Electrical/Machines/package.order b/AixLib/Electrical/Machines/package.order index 8a92aaa593..18c980048e 100644 --- a/AixLib/Electrical/Machines/package.order +++ b/AixLib/Electrical/Machines/package.order @@ -1,4 +1,3 @@ InductionMachine PVInverterRMS Examples -PVInverterRMS diff --git a/AixLib/Electrical/PVSystem/BaseClasses/CellTemperatureOpenRack.mo b/AixLib/Electrical/PVSystem/BaseClasses/CellTemperatureOpenRack.mo index ce7accf931..8d4a9b11d7 100644 --- a/AixLib/Electrical/PVSystem/BaseClasses/CellTemperatureOpenRack.mo +++ b/AixLib/Electrical/PVSystem/BaseClasses/CellTemperatureOpenRack.mo @@ -5,8 +5,8 @@ model CellTemperatureOpenRack extends AixLib.Electrical.PVSystem.BaseClasses.PartialCellTemperature; - final parameter Modelica.SIunits.Temperature T_a_0 = 293.15 - "Reference ambient temperature"; + final parameter Modelica.Units.SI.Temperature T_a_0=293.15 + "Reference ambient temperature"; final parameter Real coeff_trans_abs = 0.9 "Module specific coefficient as a product of transmission and absorption. It is usually unknown and set to 0.9 in literature"; diff --git a/AixLib/Electrical/PVSystem/BaseClasses/IVCharacteristics5pAnalytical.mo b/AixLib/Electrical/PVSystem/BaseClasses/IVCharacteristics5pAnalytical.mo index 3233163e17..11a5070fae 100644 --- a/AixLib/Electrical/PVSystem/BaseClasses/IVCharacteristics5pAnalytical.mo +++ b/AixLib/Electrical/PVSystem/BaseClasses/IVCharacteristics5pAnalytical.mo @@ -7,13 +7,13 @@ extends PartialIVCharacteristics; // Main parameters under standard conditions - Modelica.SIunits.ElectricCurrent I_ph0 + Modelica.Units.SI.ElectricCurrent I_ph0 "Photo current under standard conditions"; - Modelica.SIunits.ElectricCurrent I_s0 + Modelica.Units.SI.ElectricCurrent I_s0 "Saturation current under standard conditions"; - Modelica.SIunits.Resistance R_s0 + Modelica.Units.SI.Resistance R_s0 "Series resistance under standard conditions"; - Modelica.SIunits.Resistance R_sh0 + Modelica.Units.SI.Resistance R_sh0 "Shunt resistance under standard conditions"; Real a_0(unit = "V") "Modified diode ideality factor under standard conditions"; @@ -30,42 +30,34 @@ extends PartialIVCharacteristics; "Boltzmann's constant"; constant Real q( unit = "A.s")= 1.602176620924561e-19 "Electron charge"; - parameter Modelica.SIunits.Energy E_g0=1.79604e-19 + parameter Modelica.Units.SI.Energy E_g0=1.79604e-19 "Band gap energy under standard conditions for Si"; parameter Real C=0.0002677 "Band gap temperature coefficient for Si"; - Modelica.SIunits.ElectricCurrent I_mp( start = 0.5*I_mp0) - "MPP current"; + Modelica.Units.SI.ElectricCurrent I_mp(start=0.5*I_mp0) "MPP current"; - Modelica.SIunits.Voltage V_mp - "MPP voltage"; + Modelica.Units.SI.Voltage V_mp "MPP voltage"; - Modelica.SIunits.Energy E_g - "Band gap energy"; + Modelica.Units.SI.Energy E_g "Band gap energy"; - Modelica.SIunits.ElectricCurrent I_s - "Saturation current"; + Modelica.Units.SI.ElectricCurrent I_s "Saturation current"; - Modelica.SIunits.ElectricCurrent I_ph - "Photo current"; + Modelica.Units.SI.ElectricCurrent I_ph "Photo current"; - Modelica.SIunits.Resistance R_s - "Series resistance"; + Modelica.Units.SI.Resistance R_s "Series resistance"; - Modelica.SIunits.Resistance R_sh - "Shunt resistance"; + Modelica.Units.SI.Resistance R_sh "Shunt resistance"; Real a(final unit = "V", start = 1.3) "Modified diode ideality factor"; - Modelica.SIunits.Power P_mod - "Output power of one PV module"; + Modelica.Units.SI.Power P_mod "Output power of one PV module"; Real w(final unit = "1", start = 0) "MPP auxiliary correlation coefficient"; - Modelica.SIunits.Voltage V_oc + Modelica.Units.SI.Voltage V_oc "Open circuit voltage under operating conditions"; equation diff --git a/AixLib/Electrical/PVSystem/BaseClasses/PVRadiationHorizontal.mo b/AixLib/Electrical/PVSystem/BaseClasses/PVRadiationHorizontal.mo index e5d7319001..d096159ef9 100644 --- a/AixLib/Electrical/PVSystem/BaseClasses/PVRadiationHorizontal.mo +++ b/AixLib/Electrical/PVSystem/BaseClasses/PVRadiationHorizontal.mo @@ -1,4 +1,4 @@ -within AixLib.Electrical.PVSystem.BaseClasses; +within AixLib.Electrical.PVSystem.BaseClasses; model PVRadiationHorizontal "PV radiation and absorptance model - input: total irradiance on horizontal plane" parameter Real lat(final quantity = "Angle", @@ -84,9 +84,9 @@ model PVRadiationHorizontal "PV radiation and absorptance model - input: total i Real airMasMod(final unit="1", min=0) "Air mass modifier"; - Modelica.SIunits.Angle incAngGro "Incidence angle for ground reflection"; + Modelica.Units.SI.Angle incAngGro "Incidence angle for ground reflection"; - Modelica.SIunits.Angle incAngDif "Incidence angle for diffuse radiation"; + Modelica.Units.SI.Angle incAngDif "Incidence angle for diffuse radiation"; Real incAngMod(final unit="1", min=0) "Incidence angle modifier"; @@ -95,11 +95,12 @@ model PVRadiationHorizontal "PV radiation and absorptance model - input: total i Real incAngModDif(final unit="1", min=0) "Incidence angle modifier for diffuse radiation"; - Modelica.SIunits.Angle refAng "Angle of refraction"; + Modelica.Units.SI.Angle refAng "Angle of refraction"; - Modelica.SIunits.Angle refAngGro "Angle of refraction for ground reflection"; + Modelica.Units.SI.Angle refAngGro "Angle of refraction for ground reflection"; - Modelica.SIunits.Angle refAngDif "Angle of refraction for diffuse irradiation"; + Modelica.Units.SI.Angle refAngDif + "Angle of refraction for diffuse irradiation"; Real tau(final unit="1", min=0) "Transmittance of the cover system"; @@ -114,8 +115,7 @@ model PVRadiationHorizontal "PV radiation and absorptance model - input: total i "Ratio of irradiance on tilted surface to horizontal surface"; - Modelica.SIunits.Angle zen - "Zenith angle"; + Modelica.Units.SI.Angle zen "Zenith angle"; AixLib.BoundaryConditions.SolarGeometry.BaseClasses.SolarHourAngle solHouAng diff --git a/AixLib/Electrical/PVSystem/BaseClasses/PartialCellTemperature.mo b/AixLib/Electrical/PVSystem/BaseClasses/PartialCellTemperature.mo index 94b1630032..ca2b618871 100644 --- a/AixLib/Electrical/PVSystem/BaseClasses/PartialCellTemperature.mo +++ b/AixLib/Electrical/PVSystem/BaseClasses/PartialCellTemperature.mo @@ -9,10 +9,10 @@ partial model PartialCellTemperature "PV Panel data definition" annotation (choicesAllMatching); - final parameter Modelica.SIunits.Efficiency eta_0=data.eta_0 + final parameter Modelica.Units.SI.Efficiency eta_0=data.eta_0 "Efficiency under standard conditions"; - final parameter Modelica.SIunits.Temp_K T_NOCT=data.T_NOCT + final parameter Modelica.Units.SI.Temperature T_NOCT=data.T_NOCT "Cell temperature under NOCT conditions"; final parameter Real radNOCT(final quantity="Irradiance", diff --git a/AixLib/Electrical/PVSystem/BaseClasses/package.mo b/AixLib/Electrical/PVSystem/BaseClasses/package.mo index a59034db24..96769ede3d 100644 --- a/AixLib/Electrical/PVSystem/BaseClasses/package.mo +++ b/AixLib/Electrical/PVSystem/BaseClasses/package.mo @@ -20,32 +20,32 @@ package BaseClasses // Parameters from module data sheet - final parameter Modelica.SIunits.Efficiency eta_0=data.eta_0 - "Efficiency under standard conditions"; + final parameter Modelica.Units.SI.Efficiency eta_0=data.eta_0 + "Efficiency under standard conditions"; final parameter Real n_ser=data.n_ser "Number of cells connected in series on the PV panel"; - final parameter Modelica.SIunits.Area A_pan = data.A_pan - "Area of one Panel, must not be confused with area of the whole module"; + final parameter Modelica.Units.SI.Area A_pan=data.A_pan + "Area of one Panel, must not be confused with area of the whole module"; - final parameter Modelica.SIunits.Area A_mod = data.A_mod - "Area of one module (housing)"; + final parameter Modelica.Units.SI.Area A_mod=data.A_mod + "Area of one module (housing)"; - final parameter Modelica.SIunits.Voltage V_oc0=data.V_oc0 - "Open circuit voltage under standard conditions"; + final parameter Modelica.Units.SI.Voltage V_oc0=data.V_oc0 + "Open circuit voltage under standard conditions"; - final parameter Modelica.SIunits.ElectricCurrent I_sc0=data.I_sc0 - "Short circuit current under standard conditions"; + final parameter Modelica.Units.SI.ElectricCurrent I_sc0=data.I_sc0 + "Short circuit current under standard conditions"; - final parameter Modelica.SIunits.Voltage V_mp0=data.V_mp0 - "MPP voltage under standard conditions"; + final parameter Modelica.Units.SI.Voltage V_mp0=data.V_mp0 + "MPP voltage under standard conditions"; - final parameter Modelica.SIunits.ElectricCurrent I_mp0=data.I_mp0 - "MPP current under standard conditions"; + final parameter Modelica.Units.SI.ElectricCurrent I_mp0=data.I_mp0 + "MPP current under standard conditions"; - final parameter Modelica.SIunits.Power P_Max = data.P_mp0*1.05 - "Maximal power of one PV module under standard conditions. P_MPP with 5 % tolerance. This is used to limit DCOutputPower."; + final parameter Modelica.Units.SI.Power P_Max=data.P_mp0*1.05 + "Maximal power of one PV module under standard conditions. P_MPP with 5 % tolerance. This is used to limit DCOutputPower."; final parameter Real TCoeff_Isc(unit = "A/K")=data.TCoeff_Isc "Temperature coefficient for short circuit current, >0"; @@ -53,17 +53,17 @@ package BaseClasses final parameter Real TCoeff_Voc(unit = "V/K")=data.TCoeff_Voc "Temperature coefficient for open circuit voltage, <0"; - final parameter Modelica.SIunits.LinearTemperatureCoefficient alpha_Isc= data.alpha_Isc - "Normalized temperature coefficient for short circuit current, >0"; + final parameter Modelica.Units.SI.LinearTemperatureCoefficient alpha_Isc=data.alpha_Isc + "Normalized temperature coefficient for short circuit current, >0"; - final parameter Modelica.SIunits.LinearTemperatureCoefficient beta_Voc = data.beta_Voc - "Normalized temperature coefficient for open circuit voltage, <0"; + final parameter Modelica.Units.SI.LinearTemperatureCoefficient beta_Voc=data.beta_Voc + "Normalized temperature coefficient for open circuit voltage, <0"; - final parameter Modelica.SIunits.LinearTemperatureCoefficient gamma_Pmp=data.gamma_Pmp - "Normalized temperature coefficient for power at MPP"; + final parameter Modelica.Units.SI.LinearTemperatureCoefficient gamma_Pmp=data.gamma_Pmp + "Normalized temperature coefficient for power at MPP"; - final parameter Modelica.SIunits.Temp_K T_c0=25+273.15 - "Thermodynamic cell temperature under standard conditions"; + final parameter Modelica.Units.SI.Temperature T_c0=25 + 273.15 + "Thermodynamic cell temperature under standard conditions"; Modelica.Blocks.Interfaces.RealOutput DCOutputPower( diff --git a/AixLib/Electrical/PVSystem/BaseClasses/package.order b/AixLib/Electrical/PVSystem/BaseClasses/package.order index 3559d1aa1c..67066ffeb1 100644 --- a/AixLib/Electrical/PVSystem/BaseClasses/package.order +++ b/AixLib/Electrical/PVSystem/BaseClasses/package.order @@ -1,8 +1,8 @@ -PartialIVCharacteristics -IVCharacteristics5pAnalytical -PartialCellTemperature -CellTemperatureOpenRack CellTemperatureMountingCloseToGround CellTemperatureMountingContactToGround -Wsimple +CellTemperatureOpenRack +IVCharacteristics5pAnalytical PVRadiationHorizontal +PartialCellTemperature +Wsimple +PartialIVCharacteristics diff --git a/AixLib/Electrical/PVSystem/Examples/ExamplePVSystem.mo b/AixLib/Electrical/PVSystem/Examples/ExamplePVSystem.mo index a028042752..b83bd11f9e 100644 --- a/AixLib/Electrical/PVSystem/Examples/ExamplePVSystem.mo +++ b/AixLib/Electrical/PVSystem/Examples/ExamplePVSystem.mo @@ -45,7 +45,9 @@ equation points={{-80,0},{-34,0},{-34,0.72},{-10.16,0.72}}, color={255,204,51}, thickness=0.5)); - annotation (experiment(StopTime=31536000, Interval=900), Documentation(info="

                + annotation (experiment(StopTime=31536000, Tolerance=1e-06, Algorithm="dassl"), + __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Electrical/Examples/ExamplePVSystem.mos" "Simulate and plot"), + Documentation(info="

                Simulation to test the PVSystem model.

                diff --git a/AixLib/Electrical/PVSystem/PVSystem.mo b/AixLib/Electrical/PVSystem/PVSystem.mo index 3f950c150c..6222ea0177 100644 --- a/AixLib/Electrical/PVSystem/PVSystem.mo +++ b/AixLib/Electrical/PVSystem/PVSystem.mo @@ -1,4 +1,4 @@ -within AixLib.Electrical.PVSystem; +within AixLib.Electrical.PVSystem; model PVSystem "Model that determines the DC performance of a Silicium-based PV array" @@ -19,23 +19,20 @@ model PVSystem parameter Real n_mod "Number of connected PV modules"; - parameter Modelica.SIunits.Angle til - "Surface's tilt angle (0:flat)" - annotation (Dialog(tab="Mounting")); - parameter Modelica.SIunits.Angle azi - "Surface's azimut angle (0:South)" - annotation (Dialog(tab="Mounting")); - parameter Modelica.SIunits.Angle lat - "Location's Latitude" - annotation (Dialog(tab="Location")); - parameter Modelica.SIunits.Angle lon - "Location's Longitude" - annotation (Dialog(tab="Location")); + parameter Modelica.Units.SI.Angle til "Surface's tilt angle (0:flat)" + annotation (Dialog(tab="Mounting")); + parameter Modelica.Units.SI.Angle azi "Surface's azimut angle (0:South)" + annotation (Dialog(tab="Mounting")); + parameter Modelica.Units.SI.Angle lat "Location's Latitude" + annotation (Dialog(tab="Location")); + parameter Modelica.Units.SI.Angle lon "Location's Longitude" + annotation (Dialog(tab="Location")); parameter Real alt(final quantity="Length", final unit="m") "Site altitude in Meters, default= 1" annotation (Dialog(tab="Location")); - parameter Modelica.SIunits.Time timZon(displayUnit="h") - "Time zone. Should be equal with timZon in ReaderTMY3, if PVSystem and ReaderTMY3 are used together." annotation (Dialog(tab="Location")); + parameter Modelica.Units.SI.Time timZon(displayUnit="h") + "Time zone. Should be equal with timZon in ReaderTMY3, if PVSystem and ReaderTMY3 are used together." + annotation (Dialog(tab="Location")); parameter Real groRef(final unit="1") = 0.2 "Ground reflectance (default=0.2) Urban environment: 0.14 - 0.22 diff --git a/AixLib/Electrical/PVSystem/Validation/ValidationPVSystem.mo b/AixLib/Electrical/PVSystem/Validation/ValidationPVSystem.mo index 434becbf94..1488d80d2a 100644 --- a/AixLib/Electrical/PVSystem/Validation/ValidationPVSystem.mo +++ b/AixLib/Electrical/PVSystem/Validation/ValidationPVSystem.mo @@ -1,4 +1,4 @@ -within AixLib.Electrical.PVSystem.Validation; +within AixLib.Electrical.PVSystem.Validation; model ValidationPVSystem "Validation with empirical data from NIST for the date of 14.06.2016" extends Modelica.Icons.Example; @@ -80,8 +80,9 @@ equation experiment( StartTime=28684800, StopTime=28771200, - Interval=60, - __Dymola_Algorithm="Dassl"), + Tolerance=1e-06, + Algorithm="dassl"), + __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Electrical/Validation/ValidationPVSystem.mos" "Simulate and plot"), Documentation(info="

                The PVSystem model is validaded with empirical data from: https://pvdata.nist.gov/ diff --git a/AixLib/Fluid/Actuators/BaseClasses/ActuatorSignal.mo b/AixLib/Fluid/Actuators/BaseClasses/ActuatorSignal.mo index 54adf6df59..429679d5a1 100644 --- a/AixLib/Fluid/Actuators/BaseClasses/ActuatorSignal.mo +++ b/AixLib/Fluid/Actuators/BaseClasses/ActuatorSignal.mo @@ -2,18 +2,21 @@ within AixLib.Fluid.Actuators.BaseClasses; model ActuatorSignal "Partial model that implements the filtered opening for valves and dampers" + constant Integer order(min=1) = 2 "Order of filter"; + parameter Boolean use_inputFilter=true "= true, if opening is filtered with a 2nd order CriticalDamping filter" annotation(Dialog(tab="Dynamics", group="Filtered opening")); - parameter Modelica.SIunits.Time riseTime=120 + parameter Modelica.Units.SI.Time riseTime=120 "Rise time of the filter (time to reach 99.6 % of an opening step)" - annotation(Dialog(tab="Dynamics", group="Filtered opening",enable=use_inputFilter)); - parameter Integer order(min=1) = 2 "Order of filter" - annotation(Dialog(tab="Dynamics", group="Filtered opening",enable=use_inputFilter)); + annotation (Dialog( + tab="Dynamics", + group="Filtered opening", + enable=use_inputFilter)); parameter Modelica.Blocks.Types.Init init=Modelica.Blocks.Types.Init.InitialOutput "Type of initialization (no init/steady state/initial state/initial output)" annotation(Dialog(tab="Dynamics", group="Filtered opening",enable=use_inputFilter)); - parameter Real y_start=1 "Initial value of output" + parameter Real y_start=1 "Initial position of actuator" annotation(Dialog(tab="Dynamics", group="Filtered opening",enable=use_inputFilter)); Modelica.Blocks.Interfaces.RealInput y(min=0, max=1) @@ -31,6 +34,9 @@ model ActuatorSignal // Classes used to implement the filtered opening protected + final parameter Modelica.Units.SI.Frequency fCut=5/(2*Modelica.Constants.pi* + riseTime) "Cut-off frequency of filter"; + parameter Boolean casePreInd = false "In case of PressureIndependent the model I/O is modified" annotation(Evaluate=true); @@ -41,30 +47,23 @@ protected annotation (Placement(transformation(extent={{40,78},{60,98}}), iconTransformation(extent={{60,50},{80,70}}))); - Modelica.Blocks.Continuous.Filter filter( - final order=order, - f_cut=5/(2*Modelica.Constants.pi*riseTime), - final init=init, - final y_start=y_start, - final analogFilter=Modelica.Blocks.Types.AnalogFilter.CriticalDamping, - final filterType=Modelica.Blocks.Types.FilterType.LowPass, - x(each stateSelect=StateSelect.always, - each start=0)) if - use_inputFilter - "Second order filter to approximate valve opening time, and to improve numerics" + AixLib.Fluid.BaseClasses.ActuatorFilter filter( + final n=order, + final f=fCut, + final normalized=true, + final initType=init, + final y_start=y_start) if use_inputFilter + "Second order filter to approximate actuator opening time, and to improve numerics" annotation (Placement(transformation(extent={{6,81},{20,95}}))); equation - connect(filter.y, y_filtered) annotation (Line( - points={{20.7,88},{50,88}}, - color={0,0,127})); + connect(filter.y, y_filtered) + annotation (Line(points={{20.7,88},{50,88}}, color={0,0,127})); if use_inputFilter then - connect(y, filter.u) annotation (Line( - points={{1.11022e-15,120},{1.11022e-15,88},{4.6,88}}, - color={0,0,127})); - connect(filter.y, y_internal) annotation (Line( - points={{20.7,88},{30,88},{30,70},{50,70}}, - color={0,0,127})); + connect(y, filter.u) annotation (Line(points={{1.11022e-15,120},{1.11022e-15, + 88},{4.6,88}}, color={0,0,127})); + connect(filter.y, y_internal) annotation (Line(points={{20.7,88},{30,88},{30, + 70},{50,70}}, color={0,0,127})); else connect(y, y_internal) annotation (Line( points={{1.11022e-15,120},{0,120},{0,70},{50,70}}, @@ -94,75 +93,79 @@ equation Text( visible=use_inputFilter, extent={{-20,94},{22,48}}, - lineColor={0,0,0}, + textColor={0,0,0}, fillColor={135,135,135}, fillPattern=FillPattern.Solid, textString="M", textStyle={TextStyle.Bold}), Text( extent={{-40,126},{-160,76}}, - lineColor={0,0,0}, + textColor={0,0,0}, textString=DynamicSelect("", String(y, format=".2f")))}), Documentation(info=" -

                -This model implements the filter that is used to approximate the travel -time of the actuator. -Models that extend this model use the signal -y_actual to obtain the -current position of the actuator. -

                -

                -The filter order can be changed to modify the transient response -of the actuator. -

                -

                -See - -AixLib.Fluid.Actuators.UsersGuide -for a description of the filter. -

                -", revisions=" -
                  -
                • -April 6, 2020, by Antoine Gautier:
                  -Add the boolean parameter casePreInd.
                  -This is needed for the computation of the damper opening in - -AixLib.Fluid.Actuators.Dampers.PressureIndependent. -
                • -
                • -February 21, 2020, by Michael Wetter:
                  -Changed icon to display its operating state.
                  -This is for -#1294. -
                • -
                • -November 14, 2019, by Michael Wetter:
                  -Set start attribute for filter.x.
                  -This is for -#1252. -
                • -
                • -October 25, 2019, by Jianjun Hu:
                  -Improved icon graphics annotation. This is for -#1225. -
                • -
                • -February 16, 2018, by Filip Jorissen:
                  -Propagated parameter order.
                  -This is for -#891. -
                • -
                • -March 24, 2017, by Michael Wetter:
                  -Renamed filteredInput to use_inputFilter.
                  -This is for -#665. -
                • -
                • -February 14, 2012 by Michael Wetter:
                  -First implementation. -
                • -
                -")); +

                + This model implements the filter that is used to approximate the travel + time of the actuator. + Models that extend this model use the signal + y_actual to obtain the + current position of the actuator. +

                +

                + See + + AixLib.Fluid.Actuators.UsersGuide + for a description of the filter. +

                + ",revisions=" +
                  +
                • + June 10, 2021, by Michael Wetter:
                  + Changed implementation of the filter and changed the parameter order to a constant + as most users need not change this value.
                  + This is for + #1498. +
                • +
                • + April 6, 2020, by Antoine Gautier:
                  + Add the boolean parameter casePreInd.
                  + This is needed for the computation of the damper opening in + + AixLib.Fluid.Actuators.Dampers.PressureIndependent. +
                • +
                • + February 21, 2020, by Michael Wetter:
                  + Changed icon to display its operating state.
                  + This is for + #1294. +
                • +
                • + November 14, 2019, by Michael Wetter:
                  + Set start attribute for filter.x.
                  + This is for + #1252. +
                • +
                • + October 25, 2019, by Jianjun Hu:
                  + Improved icon graphics annotation. This is for + #1225. +
                • +
                • + February 16, 2018, by Filip Jorissen:
                  + Propagated parameter order.
                  + This is for + #891. +
                • +
                • + March 24, 2017, by Michael Wetter:
                  + Renamed filteredInput to use_inputFilter.
                  + This is for + #665. +
                • +
                • + February 14, 2012 by Michael Wetter:
                  + First implementation. +
                • +
                + "), + __Dymola_LockedEditing="Model from IBPSA"); end ActuatorSignal; diff --git a/AixLib/Fluid/Actuators/BaseClasses/Examples/EqualPercentageDerivativeCheck.mo b/AixLib/Fluid/Actuators/BaseClasses/Examples/EqualPercentageDerivativeCheck.mo index 7bb26cffde..88f94f869a 100644 --- a/AixLib/Fluid/Actuators/BaseClasses/Examples/EqualPercentageDerivativeCheck.mo +++ b/AixLib/Fluid/Actuators/BaseClasses/Examples/EqualPercentageDerivativeCheck.mo @@ -17,17 +17,18 @@ equation annotation(experiment(Tolerance=1e-6, StartTime=0, StopTime=1.0), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Actuators/BaseClasses/Examples/EqualPercentageDerivativeCheck.mos" "Simulate and plot"), Documentation(info=" -

                -This example checks whether the function derivative -is implemented correctly. If the derivative implementation -is not correct, the model will stop with an assert statement. -

                -", revisions=" -
                  -
                • -June 6, 2008, by Michael Wetter:
                  -First implementation. -
                • -
                -")); +

                + This example checks whether the function derivative + is implemented correctly. If the derivative implementation + is not correct, the model will stop with an assert statement. +

                + ",revisions=" +
                  +
                • + June 6, 2008, by Michael Wetter:
                  + First implementation. +
                • +
                + "), + __Dymola_LockedEditing="Model from IBPSA"); end EqualPercentageDerivativeCheck; diff --git a/AixLib/Fluid/Actuators/BaseClasses/PartialDamperExponential.mo b/AixLib/Fluid/Actuators/BaseClasses/PartialDamperExponential.mo index eb6d8890b1..2e10d2959e 100644 --- a/AixLib/Fluid/Actuators/BaseClasses/PartialDamperExponential.mo +++ b/AixLib/Fluid/Actuators/BaseClasses/PartialDamperExponential.mo @@ -6,26 +6,26 @@ partial model PartialDamperExponential final m_flow_turbulent=if use_deltaM then deltaM * m_flow_nominal else eta_default*ReC*sqrt(A)*facRouDuc); extends AixLib.Fluid.Actuators.BaseClasses.ActuatorSignal; - parameter Modelica.SIunits.PressureDifference dpDamper_nominal(displayUnit="Pa") - "Pressure drop of fully open damper at nominal mass flow rate" - annotation(Dialog(group = "Nominal condition")); - parameter Modelica.SIunits.PressureDifference dpFixed_nominal(displayUnit="Pa") = 0 + parameter Modelica.Units.SI.PressureDifference dpDamper_nominal(displayUnit= + "Pa") "Pressure drop of fully open damper at nominal mass flow rate" + annotation (Dialog(group="Nominal condition")); + parameter Modelica.Units.SI.PressureDifference dpFixed_nominal(displayUnit= + "Pa") = 0 "Pressure drop of duct and resistances other than the damper in series, at nominal mass flow rate" - annotation(Dialog(group = "Nominal condition")); + annotation (Dialog(group="Nominal condition")); parameter Boolean use_deltaM = true "Set to true to use deltaM for turbulent transition, else ReC is used"; parameter Real deltaM = 0.3 "Fraction of nominal mass flow rate where transition to turbulent occurs" annotation(Dialog(enable=use_deltaM)); - final parameter Modelica.SIunits.Velocity v_nominal= - (2 / rho_default / k1 * dpDamper_nominal)^0.5 - "Nominal face velocity"; - final parameter Modelica.SIunits.Area A=m_flow_nominal/rho_default/v_nominal + final parameter Modelica.Units.SI.Velocity v_nominal=(2/rho_default/k1* + dpDamper_nominal)^0.5 "Nominal face velocity"; + final parameter Modelica.Units.SI.Area A=m_flow_nominal/rho_default/v_nominal "Face area"; parameter Boolean roundDuct = false "Set to true for round duct, false for square cross section" annotation(Dialog(enable=not use_deltaM)); - parameter Real ReC=4000 "Reynolds number where transition to turbulent starts" + parameter Real ReC=4000 "Reynolds number where transition to turbulence starts" annotation(Dialog(enable=not use_deltaM)); parameter Real a(unit="1")=-1.51 "Coefficient a for damper characteristics" annotation(Dialog(tab="Damper coefficients")); @@ -121,158 +121,164 @@ equation yU=yU); k = if dpFixed_nominal > Modelica.Constants.eps then sqrt(1/(1/kFixed^2 + 1/kDam^2)) else kDam; annotation(Documentation(info=" -

                -Partial model for air dampers with exponential opening characteristics. -This is the base model for air dampers. -The model implements the functions that relate the opening signal and the -flow coefficient. -The model also defines parameters that are used by different air damper -models. -

                -

                -The model is as in ASHRAE 825-RP except that a control signal of -y=0 means the damper is closed, and y=1 means -the damper is open. -This is opposite of the implementation of ASHRAE 825-RP, but used here -for consistency within this library. -

                -

                -For yL < y < yU, the damper characteristics is: -

                -

                - kd(y) = exp(a+b (1-y)) -

                -

                -where kd is the loss coefficient (total pressure drop divided -by dynamic pressure) and y is the fractional opening. -

                -

                -Outside this range, the damper characteristics is defined by a quadratic polynomial that -matches the damper resistance at y=0 and y=yL or -y=yU and y=1, respectively. -In addition, the polynomials are such that kd(y) is differentiable in -y and the derivative is continuous. -

                -

                -The damper characteristics is then used to compute the flow coefficient k(y) as: -

                -

                -k(y) = (2 ρ ⁄ kd(y))1/2 A -

                -

                -where A is the face area, which is computed using the nominal -mass flow rate m_flow_nominal, the nominal velocity -v_nominal and the density of the medium. -

                -

                -ASHRAE 825-RP lists the following parameter values as typical (note that the -default values in the model correspond to opposed blades). -
                -

                - - - - - - - - - - - - - - - - - - - -
                opposed bladessingle blades
                yL15/9015/90
                yU55/9065/90
                k10.2 to 0.50.2 to 0.5
                a-1.51-1.51
                b0.105*900.0842*90
                -

                -(The loss coefficient in fully closed position k0 is computed based on the leakage coefficient -and the coefficient in fully open position.) -

                -

                References

                -

                -P. Haves, L. K. Norford, M. DeSimone and L. Mei, -A Standard Simulation Testbed for the Evaluation of Control Algorithms & Strategies, -ASHRAE Final Report 825-RP, Atlanta, GA. -

                -", +

                + Partial model for air dampers with exponential opening characteristics. + This is the base model for air dampers. + The model implements the functions that relate the opening signal and the + flow coefficient. + The model also defines parameters that are used by different air damper + models. +

                +

                + The model is as in ASHRAE 825-RP except that a control signal of + y=0 means the damper is closed, and y=1 means + the damper is open. + This is opposite of the implementation of ASHRAE 825-RP, but used here + for consistency within this library. +

                +

                + For yL < y < yU, the damper characteristics is: +

                +

                + kd(y) = exp(a+b (1-y)) +

                +

                + where kd is the loss coefficient (total pressure drop divided + by dynamic pressure) and y is the fractional opening. +

                +

                + Outside this range, the damper characteristics is defined by a quadratic polynomial that + matches the damper resistance at y=0 and y=yL or + y=yU and y=1, respectively. + In addition, the polynomials are such that kd(y) is differentiable in + y and the derivative is continuous. +

                +

                + The damper characteristics is then used to compute the flow coefficient k(y) as: +

                +

                + k(y) = (2 ρ ⁄ kd(y))1/2 A +

                +

                + where A is the face area, which is computed using the nominal + mass flow rate m_flow_nominal, the nominal velocity + v_nominal and the density of the medium. +

                +

                + ASHRAE 825-RP lists the following parameter values as typical (note that the + default values in the model correspond to opposed blades). +
                +

                + + + + + + + + + + + + + + + + + + + +
                opposed bladessingle blades
                yL15/9015/90
                yU55/9065/90
                k10.2 to 0.50.2 to 0.5
                a-1.51-1.51
                b0.105*900.0842*90
                +

                + (The loss coefficient in fully closed position k0 is computed based on the leakage coefficient + and the coefficient in fully open position.) +

                +

                References

                +

                + P. Haves, L. K. Norford, M. DeSimone and L. Mei, + A Standard Simulation Testbed for the Evaluation of Control Algorithms & Strategies, + ASHRAE Final Report 825-RP, Atlanta, GA. +

                + ", revisions=" -
                  -
                • -December 23, 2019, by Antoine Gautier:
                  -Removed the equations involving m_flow and dp that now need -to be added in each derived damper model.
                  -Added the declaration of dpDamper_nominal and dpFixed_nominal.
                  -Replaced k0 by leakage coefficient.
                  -Modified the limiting values for k0 and k1.
                  -This is for -#1188. -
                • -
                • -March 22, 2017, by Michael Wetter:
                  -Added back v_nominal, but set the assignment of A -to be final. This allows scaling the model with m_flow_nominal, -which is generally known in the flow leg, -and v_nominal, for which a default value can be specified.
                  -This is for -#544. -
                • -
                • -October 12, 2016 by David Blum:
                  -Removed parameter v_nominal and variable area, -to simplify parameterization of the model. -Also added assertion statements upon initialization -for parameters k0 and k1 so that they fall within -suggested ranges found in ASHRAE 825-RP. This is for -#544. -
                • -
                • -January 27, 2015 by Michael Wetter:
                  -Set Evaluate=true for use_constant_density. -This is a structural parameter. Adding this annotation leads to fewer -numerical Jacobians for -Buildings.Examples.VAVReheat.ClosedLoop -with -Buildings.Media.PerfectGases.MoistAirUnsaturated. -
                • -
                • -December 14, 2012 by Michael Wetter:
                  -Renamed protected parameters for consistency with the naming conventions. -
                • -
                • -January 16, 2012 by Michael Wetter:
                  -To simplify object inheritance tree, revised base classes -AixLib.Fluid.BaseClasses.PartialResistance, -AixLib.Fluid.Actuators.BaseClasses.PartialTwoWayValve, -AixLib.Fluid.Actuators.BaseClasses.PartialDamperExponential, -AixLib.Fluid.Actuators.BaseClasses.PartialActuator -and model -AixLib.Fluid.FixedResistances.PressureDrop. -
                • -
                • -August 5, 2011, by Michael Wetter:
                  -Moved linearized pressure drop equation from the function body to the equation -section. With the previous implementation, -the symbolic processor may not rearrange the equations, which can lead -to coupled equations instead of an explicit solution. -
                • -
                • -June 22, 2008 by Michael Wetter:
                  -Extended range of control signal from 0 to 1 by implementing the function - -exponentialDamper. -
                • -
                • -June 10, 2008 by Michael Wetter:
                  -First implementation. -
                • -
                -"), +
                  +
                • + September 21, 2021, by Michael Wetter:
                  + Corrected typo in comments.
                  + This is for + #1525. +
                • +
                • + December 23, 2019, by Antoine Gautier:
                  + Removed the equations involving m_flow and dp that now need + to be added in each derived damper model.
                  + Added the declaration of dpDamper_nominal and dpFixed_nominal.
                  + Replaced k0 by leakage coefficient.
                  + Modified the limiting values for k0 and k1.
                  + This is for + #1188. +
                • +
                • + March 22, 2017, by Michael Wetter:
                  + Added back v_nominal, but set the assignment of A + to be final. This allows scaling the model with m_flow_nominal, + which is generally known in the flow leg, + and v_nominal, for which a default value can be specified.
                  + This is for + #544. +
                • +
                • + October 12, 2016 by David Blum:
                  + Removed parameter v_nominal and variable area, + to simplify parameterization of the model. + Also added assertion statements upon initialization + for parameters k0 and k1 so that they fall within + suggested ranges found in ASHRAE 825-RP. This is for + #544. +
                • +
                • + January 27, 2015 by Michael Wetter:
                  + Set Evaluate=true for use_constant_density. + This is a structural parameter. Adding this annotation leads to fewer + numerical Jacobians for + Buildings.Examples.VAVReheat.ClosedLoop + with + Buildings.Media.PerfectGases.MoistAirUnsaturated. +
                • +
                • + December 14, 2012 by Michael Wetter:
                  + Renamed protected parameters for consistency with the naming conventions. +
                • +
                • + January 16, 2012 by Michael Wetter:
                  + To simplify object inheritance tree, revised base classes + AixLib.Fluid.BaseClasses.PartialResistance, + AixLib.Fluid.Actuators.BaseClasses.PartialTwoWayValve, + AixLib.Fluid.Actuators.BaseClasses.PartialDamperExponential, + AixLib.Fluid.Actuators.BaseClasses.PartialActuator + and model + AixLib.Fluid.FixedResistances.PressureDrop. +
                • +
                • + August 5, 2011, by Michael Wetter:
                  + Moved linearized pressure drop equation from the function body to the equation + section. With the previous implementation, + the symbolic processor may not rearrange the equations, which can lead + to coupled equations instead of an explicit solution. +
                • +
                • + June 22, 2008 by Michael Wetter:
                  + Extended range of control signal from 0 to 1 by implementing the function + + exponentialDamper. +
                • +
                • + June 10, 2008 by Michael Wetter:
                  + First implementation. +
                • +
                + "), Icon(graphics={Line( points={{0,100},{0,-24}}), Rectangle( @@ -284,5 +290,6 @@ First implementation. extent={{-100,22},{100,-24}}, lineColor={0,0,0}, fillPattern=FillPattern.HorizontalCylinder, - fillColor={0,127,255})})); + fillColor={0,127,255})}), + __Dymola_LockedEditing="Model from IBPSA"); end PartialDamperExponential; diff --git a/AixLib/Fluid/Actuators/BaseClasses/PartialThreeWayValve.mo b/AixLib/Fluid/Actuators/BaseClasses/PartialThreeWayValve.mo index ce1110a25b..d7f108618b 100644 --- a/AixLib/Fluid/Actuators/BaseClasses/PartialThreeWayValve.mo +++ b/AixLib/Fluid/Actuators/BaseClasses/PartialThreeWayValve.mo @@ -38,10 +38,11 @@ partial model PartialThreeWayValve "Partial three way valve" constant Boolean homotopyInitialization = true "= true, use homotopy method" annotation(HideResult=true); - parameter Modelica.SIunits.PressureDifference dpFixed_nominal[2](each displayUnit="Pa", - each min=0) = {0, 0} + parameter Modelica.Units.SI.PressureDifference dpFixed_nominal[2]( + each displayUnit="Pa", + each min=0) = {0,0} "Nominal pressure drop of pipes and other equipment in flow legs at port_1 and port_3" - annotation(Dialog(group="Nominal condition")); + annotation (Dialog(group="Nominal condition")); parameter Real fraK(min=0, max=1) = 0.7 "Fraction Kv(port_3→port_2)/Kv(port_1→port_2)"; @@ -122,110 +123,111 @@ equation visible=not use_inputFilter, points={{0,100},{0,40}})}), Documentation(info=" -

                -Partial model of a three way valve. This is the base model for valves -with different opening characteristics, such as linear, equal percentage -or quick opening. The three way valve model consists of a mixer where -valves are placed in two of the flow legs. The third flow leg -has no friction. -The flow coefficient Kv for flow from port_1 → port_2 is -a parameter. -The flow coefficient for the bypass flow from port_3 → port_2 -is computed as -

                -
                -         Kv(port_3 → port_2)
                -  fraK = ----------------------
                -         Kv(port_1 → port_2)
                -
                -

                -where 0 < fraK ≤ 1 is a parameter with a default value -of fraK=0.7. -

                -

                -Since this model uses two way valves to construct a three way valve, see - -AixLib.Fluid.Actuators.BaseClasses.PartialTwoWayValve -for details regarding the valve implementation. -

                -", revisions=" -
                  -
                • -April 14, 2020, by Michael Wetter:
                  -Changed homotopyInitialization to a constant.
                  -This is for -AixLib, #1341. -
                • -
                • -November 5, 2019, by Michael Wetter:
                  -Moved assignment of leakage from -AixLib.Fluid.Actuators.BaseClasses.PartialThreeWayValve -to the parent classes.
                  -This is for -#1227. -
                • -
                • -October 25, 2019, by Jianjun Hu:
                  -Improved icon graphics annotation. This is for -#1225. -
                • -
                • -March 24, 2017, by Michael Wetter:
                  -Renamed filteredInput to use_inputFilter.
                  -This is for -#665. -
                • -
                • -January 22, 2016, by Michael Wetter:
                  -Corrected type declaration of pressure difference. -This is -for #404. -
                • -
                • -December 17, 2015, by Michael Wetter:
                  -Removed assignment redeclare final package Medium=Medium -as this is now done in the base class. -This is for - -https://github.com/lbl-srg/modelica-buildings/issues/475. -
                • -
                • -November 23, 2015 by Filip Jorissen:
                  -Corrected valve leakage value to avoid warnings. -
                • -
                • -February 28, 2013, by Michael Wetter:
                  -Reformulated assignment of parameters. -Removed default value for dpValve_nominal, as this -parameter has the attribute fixed=false for some values -of CvData. In this case, assigning a value is not allowed. -Corrected wrong documentation of parameter fraK(min=0, max=1) = 0.7. -The documenation was -Fraction Kv(port_1→port_2)/Kv(port_3→port_2) instead of -Fraction Kv(port_3→port_2)/Kv(port_1→port_2). -Because the parameter set correctly its attributes min=0 and max=1, -instances of this model used the correct value. -
                • -
                • -April 12, 2012 by Michael Wetter:
                  -Removed duplicate declaration of m_flow_nominal. -
                • -
                • -February 20, 2012 by Michael Wetter:
                  -Renamed parameter dp_nominal to dpValve_nominal, -and added new parameter dpFixed_nominal=0. -See - -AixLib.Fluid.Actuators.UsersGuide. -
                • -
                • -March 25, 2011, by Michael Wetter:
                  -Added homotopy method. -
                • -
                • -June 3, 2008 by Michael Wetter:
                  -First implementation. -
                • -
                -")); +

                + Partial model of a three way valve. This is the base model for valves + with different opening characteristics, such as linear, equal percentage + or quick opening. The three way valve model consists of a mixer where + valves are placed in two of the flow legs. The third flow leg + has no friction. + The flow coefficient Kv for flow from port_1 → port_2 is + a parameter. + The flow coefficient for the bypass flow from port_3 → port_2 + is computed as +

                +
                +          Kv(port_3 → port_2)
                +   fraK = ----------------------
                +          Kv(port_1 → port_2)
                + 
                +

                + where 0 < fraK ≤ 1 is a parameter with a default value + of fraK=0.7. +

                +

                + Since this model uses two way valves to construct a three way valve, see + + AixLib.Fluid.Actuators.BaseClasses.PartialTwoWayValve + for details regarding the valve implementation. +

                + ",revisions=" +
                  +
                • + April 14, 2020, by Michael Wetter:
                  + Changed homotopyInitialization to a constant.
                  + This is for + IBPSA, #1341. +
                • +
                • + November 5, 2019, by Michael Wetter:
                  + Moved assignment of leakage from + AixLib.Fluid.Actuators.BaseClasses.PartialThreeWayValve + to the parent classes.
                  + This is for + #1227. +
                • +
                • + October 25, 2019, by Jianjun Hu:
                  + Improved icon graphics annotation. This is for + #1225. +
                • +
                • + March 24, 2017, by Michael Wetter:
                  + Renamed filteredInput to use_inputFilter.
                  + This is for + #665. +
                • +
                • + January 22, 2016, by Michael Wetter:
                  + Corrected type declaration of pressure difference. + This is + for #404. +
                • +
                • + December 17, 2015, by Michael Wetter:
                  + Removed assignment redeclare final package Medium=Medium + as this is now done in the base class. + This is for + + https://github.com/lbl-srg/modelica-buildings/issues/475. +
                • +
                • + November 23, 2015 by Filip Jorissen:
                  + Corrected valve leakage value to avoid warnings. +
                • +
                • + February 28, 2013, by Michael Wetter:
                  + Reformulated assignment of parameters. + Removed default value for dpValve_nominal, as this + parameter has the attribute fixed=false for some values + of CvData. In this case, assigning a value is not allowed. + Corrected wrong documentation of parameter fraK(min=0, max=1) = 0.7. + The documenation was + Fraction Kv(port_1→port_2)/Kv(port_3→port_2) instead of + Fraction Kv(port_3→port_2)/Kv(port_1→port_2). + Because the parameter set correctly its attributes min=0 and max=1, + instances of this model used the correct value. +
                • +
                • + April 12, 2012 by Michael Wetter:
                  + Removed duplicate declaration of m_flow_nominal. +
                • +
                • + February 20, 2012 by Michael Wetter:
                  + Renamed parameter dp_nominal to dpValve_nominal, + and added new parameter dpFixed_nominal=0. + See + + AixLib.Fluid.Actuators.UsersGuide. +
                • +
                • + March 25, 2011, by Michael Wetter:
                  + Added homotopy method. +
                • +
                • + June 3, 2008 by Michael Wetter:
                  + First implementation. +
                • +
                + "), + __Dymola_LockedEditing="Model from IBPSA"); end PartialThreeWayValve; diff --git a/AixLib/Fluid/Actuators/BaseClasses/PartialTwoWayValve.mo b/AixLib/Fluid/Actuators/BaseClasses/PartialTwoWayValve.mo index 21d7c09d1d..e89a8dafd0 100644 --- a/AixLib/Fluid/Actuators/BaseClasses/PartialTwoWayValve.mo +++ b/AixLib/Fluid/Actuators/BaseClasses/PartialTwoWayValve.mo @@ -10,9 +10,10 @@ partial model PartialTwoWayValve "Partial model for a two way valve" rhoStd=Medium.density_pTX(101325, 273.15+4, Medium.X_default)); extends AixLib.Fluid.Actuators.BaseClasses.ActuatorSignal; - parameter Modelica.SIunits.PressureDifference dpFixed_nominal(displayUnit="Pa", min=0) = 0 - "Pressure drop of pipe and other resistances that are in series" - annotation(Dialog(group = "Nominal condition")); + parameter Modelica.Units.SI.PressureDifference dpFixed_nominal( + displayUnit="Pa", + min=0) = 0 "Pressure drop of pipe and other resistances that are in series" + annotation (Dialog(group="Nominal condition")); parameter Real l(min=1e-10, max=1) = 0.0001 "Valve leakage, l=Kv(y=0)/Kv(y=1)"; @@ -54,196 +55,197 @@ initial equation visible=not use_inputFilter, points={{0,100},{0,40}})}), Documentation(info=" -

                -Partial model for a two way valve. This is the base model for valves -with different opening characteristics, such as linear, equal percentage, -quick opening or pressure-independent. -

                -

                -To prevent the derivative d/dP (m_flow) to be infinite near -the origin, this model linearizes the pressure drop versus flow relation -ship. The region in which it is linearized is parameterized by -

                -
                -  m_turbulent_flow = deltaM * m_flow_nominal
                -
                -

                -Because the parameterization contains Kv_SI, the values for -deltaM and dp_nominal need not be changed if the valve size -changes. -

                -

                -In contrast to the model in -Modelica.Fluid, this model uses the parameter Kv_SI, -which is the flow coefficient in SI units, i.e., -it is the ratio between mass flow rate in kg/s and square root -of pressure drop in Pa. -

                -

                Options

                -

                -This model allows different parameterization of the flow resistance. -The different parameterizations are described in - -AixLib.Fluid.Actuators.BaseClasses.ValveParameters. -

                -

                Implementation

                -

                -The two way valve models are implemented using this partial model, as opposed to using -different functions for the valve opening characteristics, because -each valve opening characteristics has different parameters. -

                -", +

                + Partial model for a two way valve. This is the base model for valves + with different opening characteristics, such as linear, equal percentage, + quick opening or pressure-independent. +

                +

                + To prevent the derivative d/dP (m_flow) to be infinite near + the origin, this model linearizes the pressure drop versus flow relation + ship. The region in which it is linearized is parameterized by +

                +
                +   m_turbulent_flow = deltaM * m_flow_nominal
                + 
                +

                + Because the parameterization contains Kv_SI, the values for + deltaM and dp_nominal need not be changed if the valve size + changes. +

                +

                + In contrast to the model in + Modelica.Fluid, this model uses the parameter Kv_SI, + which is the flow coefficient in SI units, i.e., + it is the ratio between mass flow rate in kg/s and square root + of pressure drop in Pa. +

                +

                Options

                +

                + This model allows different parameterization of the flow resistance. + The different parameterizations are described in + + AixLib.Fluid.Actuators.BaseClasses.ValveParameters. +

                +

                Implementation

                +

                + The two way valve models are implemented using this partial model, as opposed to using + different functions for the valve opening characteristics, because + each valve opening characteristics has different parameters. +

                + ", revisions=" -
                  - -
                • -April 2, 2020, by Filip Jorissen:
                  -Added model name in assert message.
                  -This is for -#1334. -
                • -
                • -February 21, 2020, by Michael Wetter:
                  -Changed icon to display its operating stage.
                  -This is for -#1294. -
                • -
                • -November 9, 2019, by Filip Jorissen:
                  -Removed assert for phi>-0.2 -since the valve control input is now lower limited -to zero. -See -issue 1223. -
                • -
                • -October 25, 2019, by Jianjun Hu:
                  -Improved icon graphics annotation. This is for -#1225. -
                • -
                • -March 24, 2017, by Michael Wetter:
                  -Renamed filteredInput to use_inputFilter.
                  -This is for -#665. -
                • -
                • -November 16, 2017, by Michael Wetter:
                  -Relaxed assertion on phi.
                  -This is for -#592. -
                • -
                • -October 27, 2016, by Filip Jorissen:
                  -Added assert for phi > 0. -This fixes a bug that caused valves to behave -like pumps for negative control signals. -This is for -#558. -
                • -
                • -April 23, 2016, by Michael Wetter:
                  -Changed test in assertion from dpFixed_nominal > -Modelica.Constants.small -to -dpFixed_nominal > -Modelica.Constants.eps. -Otherwise, JModelica evaluates it as true in - -AixLib.Fluid.Actuators.Valves.Examples.TwoWayValves. -See also -https://trac.jmodelica.org/ticket/4932. -This is for -Buildings, issue 510. -
                • -
                • -January 22, 2016, by Michael Wetter:
                  -Corrected type declaration of pressure difference. -This is -for #404. -
                • -
                • -January 29, 2015, by Filip Jorissen:
                  -Moved the governing equations to - -PartialTwoWayValveKv -in order to be able to extend from this partial in - -TwoWayPressureIndependent -
                • -
                • -August 8, 2014, by Michael Wetter:
                  -Reformulated the computation of k to make the model -work in OpenModelica. -
                • -
                • -April 4, 2014, by Michael Wetter:
                  -Added keyword input to variable phi -to require models that extend this model to provide a binding equation. -This is done to use the same modeling concept as is used for example in - -AixLib.Fluid.Interfaces.StaticTwoPortHeatMassExchanger. -
                • -
                • -March 27, 2014 by Michael Wetter:
                  -Revised model for implementation of new valve model that computes the flow function -based on a table. -
                • -
                • -March 20, 2013, by Michael Wetter:
                  -Set dp(nominal=6000) as the previous formulation gives an error during model check -in Dymola 2014. The reason is that the previous formulation used dpValve_nominal, which -is not known at translation time. -
                • -
                • -February 28, 2013, by Michael Wetter:
                  -Reformulated assignment of parameters. -Removed default value for dpValve_nominal, as this -parameter has the attribute fixed=false for some values -of CvData. In this case, assigning a value is not allowed. -Changed assignment of nominal attribute of dp to avoid assigning -a non-literal value. -
                • -
                • -February 20, 2012 by Michael Wetter:
                  -Renamed parameter dp_nominal to dpValve_nominal, -and added new parameter dpFixed_nominal. -See - -AixLib.Fluid.Actuators.UsersGuide. -
                • -
                • -January 16, 2012 by Michael Wetter:
                  -To simplify object inheritance tree, revised base classes -AixLib.Fluid.BaseClasses.PartialResistance, -AixLib.Fluid.Actuators.BaseClasses.PartialTwoWayValve, -AixLib.Fluid.Actuators.BaseClasses.PartialDamperExponential, -AixLib.Fluid.Actuators.BaseClasses.PartialActuator -and model -AixLib.Fluid.FixedResistances.PressureDrop. -
                • -
                • -August 12, 2011 by Michael Wetter:
                  -Added assert statement to prevent l=0 due to the -implementation of - -AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_m_flow. -
                • -
                • -April 4, 2011 by Michael Wetter:
                  -Revised implementation to use new base class for actuators. -
                • -
                • -February 18, 2009 by Michael Wetter:
                  -Implemented parameterization of flow coefficient as in -Modelica.Fluid. -
                • -
                • -August 15, 2008 by Michael Wetter:
                  -Set valve leakage to nonzero value. -
                • -
                • -June 3, 2008 by Michael Wetter:
                  -First implementation. -
                • -
                -")); +
                  + +
                • + April 2, 2020, by Filip Jorissen:
                  + Added model name in assert message.
                  + This is for + #1334. +
                • +
                • + February 21, 2020, by Michael Wetter:
                  + Changed icon to display its operating stage.
                  + This is for + #1294. +
                • +
                • + November 9, 2019, by Filip Jorissen:
                  + Removed assert for phi>-0.2 + since the valve control input is now lower limited + to zero. + See + issue 1223. +
                • +
                • + October 25, 2019, by Jianjun Hu:
                  + Improved icon graphics annotation. This is for + #1225. +
                • +
                • + March 24, 2017, by Michael Wetter:
                  + Renamed filteredInput to use_inputFilter.
                  + This is for + #665. +
                • +
                • + November 16, 2017, by Michael Wetter:
                  + Relaxed assertion on phi.
                  + This is for + #592. +
                • +
                • + October 27, 2016, by Filip Jorissen:
                  + Added assert for phi > 0. + This fixes a bug that caused valves to behave + like pumps for negative control signals. + This is for + #558. +
                • +
                • + April 23, 2016, by Michael Wetter:
                  + Changed test in assertion from dpFixed_nominal > -Modelica.Constants.small + to + dpFixed_nominal > -Modelica.Constants.eps. + Otherwise, JModelica evaluates it as true in + + AixLib.Fluid.Actuators.Valves.Examples.TwoWayValves. + See also + https://trac.jmodelica.org/ticket/4932. + This is for + Buildings, issue 510. +
                • +
                • + January 22, 2016, by Michael Wetter:
                  + Corrected type declaration of pressure difference. + This is + for #404. +
                • +
                • + January 29, 2015, by Filip Jorissen:
                  + Moved the governing equations to + + PartialTwoWayValveKv + in order to be able to extend from this partial in + + TwoWayPressureIndependent +
                • +
                • + August 8, 2014, by Michael Wetter:
                  + Reformulated the computation of k to make the model + work in OpenModelica. +
                • +
                • + April 4, 2014, by Michael Wetter:
                  + Added keyword input to variable phi + to require models that extend this model to provide a binding equation. + This is done to use the same modeling concept as is used for example in + + AixLib.Fluid.Interfaces.StaticTwoPortHeatMassExchanger. +
                • +
                • + March 27, 2014 by Michael Wetter:
                  + Revised model for implementation of new valve model that computes the flow function + based on a table. +
                • +
                • + March 20, 2013, by Michael Wetter:
                  + Set dp(nominal=6000) as the previous formulation gives an error during model check + in Dymola 2014. The reason is that the previous formulation used dpValve_nominal, which + is not known at translation time. +
                • +
                • + February 28, 2013, by Michael Wetter:
                  + Reformulated assignment of parameters. + Removed default value for dpValve_nominal, as this + parameter has the attribute fixed=false for some values + of CvData. In this case, assigning a value is not allowed. + Changed assignment of nominal attribute of dp to avoid assigning + a non-literal value. +
                • +
                • + February 20, 2012 by Michael Wetter:
                  + Renamed parameter dp_nominal to dpValve_nominal, + and added new parameter dpFixed_nominal. + See + + AixLib.Fluid.Actuators.UsersGuide. +
                • +
                • + January 16, 2012 by Michael Wetter:
                  + To simplify object inheritance tree, revised base classes + AixLib.Fluid.BaseClasses.PartialResistance, + AixLib.Fluid.Actuators.BaseClasses.PartialTwoWayValve, + AixLib.Fluid.Actuators.BaseClasses.PartialDamperExponential, + AixLib.Fluid.Actuators.BaseClasses.PartialActuator + and model + AixLib.Fluid.FixedResistances.PressureDrop. +
                • +
                • + August 12, 2011 by Michael Wetter:
                  + Added assert statement to prevent l=0 due to the + implementation of + + AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_m_flow. +
                • +
                • + April 4, 2011 by Michael Wetter:
                  + Revised implementation to use new base class for actuators. +
                • +
                • + February 18, 2009 by Michael Wetter:
                  + Implemented parameterization of flow coefficient as in + Modelica.Fluid. +
                • +
                • + August 15, 2008 by Michael Wetter:
                  + Set valve leakage to nonzero value. +
                • +
                • + June 3, 2008 by Michael Wetter:
                  + First implementation. +
                • +
                + "), + __Dymola_LockedEditing="Model from IBPSA"); end PartialTwoWayValve; diff --git a/AixLib/Fluid/Actuators/BaseClasses/PartialTwoWayValveKv.mo b/AixLib/Fluid/Actuators/BaseClasses/PartialTwoWayValveKv.mo index 438c7dbc66..4cd0973818 100644 --- a/AixLib/Fluid/Actuators/BaseClasses/PartialTwoWayValveKv.mo +++ b/AixLib/Fluid/Actuators/BaseClasses/PartialTwoWayValveKv.mo @@ -38,39 +38,40 @@ equation end if; // linearized annotation ( Documentation(info=" -

                -Partial model for valves with different opening characteristics, -such as linear, equal percentage or quick opening. This partial extends from - -AixLib.Fluid.Actuators.BaseClasses.PartialTwoWayValve -and also contains the governing equations for these three two way valve models. -

                -

                Implementation

                -

                -Models that extend this model need to provide a binding equation -for the flow function phi. -An example of such a code can be found in - -AixLib.Fluid.Actuators.Valves.TwoWayLinear. -

                -", +

                + Partial model for valves with different opening characteristics, + such as linear, equal percentage or quick opening. This partial extends from + + AixLib.Fluid.Actuators.BaseClasses.PartialTwoWayValve + and also contains the governing equations for these three two way valve models. +

                +

                Implementation

                +

                + Models that extend this model need to provide a binding equation + for the flow function phi. + An example of such a code can be found in + + AixLib.Fluid.Actuators.Valves.TwoWayLinear. +

                + ", revisions=" -
                  -
                • -October 25, 2019, by Jianjun Hu:
                  -Removed icon graphics annotation. This is for -#1225. -
                • -
                • -March 24, 2017, by Michael Wetter:
                  -Renamed filteredInput to use_inputFilter.
                  -This is for -#665. -
                • -
                • -January 29, 2015 by Filip Jorissen:
                  -First implementation. -
                • -
                -")); +
                  +
                • + October 25, 2019, by Jianjun Hu:
                  + Removed icon graphics annotation. This is for + #1225. +
                • +
                • + March 24, 2017, by Michael Wetter:
                  + Renamed filteredInput to use_inputFilter.
                  + This is for + #665. +
                • +
                • + January 29, 2015 by Filip Jorissen:
                  + First implementation. +
                • +
                + "), + __Dymola_LockedEditing="Model from IBPSA"); end PartialTwoWayValveKv; diff --git a/AixLib/Fluid/Actuators/BaseClasses/ValveParameters.mo b/AixLib/Fluid/Actuators/BaseClasses/ValveParameters.mo index e4278aafba..2ee3fc59fa 100644 --- a/AixLib/Fluid/Actuators/BaseClasses/ValveParameters.mo +++ b/AixLib/Fluid/Actuators/BaseClasses/ValveParameters.mo @@ -14,29 +14,25 @@ partial model ValveParameters "Model with parameters for valves" "Cv (US) flow coefficient [USG/min/(psi)^(1/2)]" annotation(Dialog(group = "Flow Coefficient", enable = (CvData==AixLib.Fluid.Types.CvTypes.Cv))); - parameter Modelica.SIunits.Area Av( - fixed= if CvData==AixLib.Fluid.Types.CvTypes.Av then true else false) - "Av (metric) flow coefficient" - annotation(Dialog(group = "Flow Coefficient", - enable = (CvData==AixLib.Fluid.Types.CvTypes.Av))); + parameter Modelica.Units.SI.Area Av(fixed=if CvData == AixLib.Fluid.Types.CvTypes.Av + then true else false) "Av (metric) flow coefficient" annotation ( + Dialog(group="Flow Coefficient", enable=(CvData == AixLib.Fluid.Types.CvTypes.Av))); parameter Real deltaM = 0.02 "Fraction of nominal flow rate where linearization starts, if y=1" annotation(Dialog(group="Pressure-flow linearization")); - parameter Modelica.SIunits.MassFlowRate m_flow_nominal - "Nominal mass flow rate" - annotation(Dialog(group = "Nominal condition")); - parameter Modelica.SIunits.PressureDifference dpValve_nominal( - displayUnit="Pa", - min=0, - fixed= if CvData==AixLib.Fluid.Types.CvTypes.OpPoint then true else false) + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal + "Nominal mass flow rate" annotation (Dialog(group="Nominal condition")); + parameter Modelica.Units.SI.PressureDifference dpValve_nominal( + displayUnit="Pa", + min=0, + fixed=if CvData == AixLib.Fluid.Types.CvTypes.OpPoint then true else false) "Nominal pressure drop of fully open valve, used if CvData=AixLib.Fluid.Types.CvTypes.OpPoint" - annotation(Dialog(group="Nominal condition", - enable = (CvData==AixLib.Fluid.Types.CvTypes.OpPoint))); + annotation (Dialog(group="Nominal condition", enable=(CvData == AixLib.Fluid.Types.CvTypes.OpPoint))); - parameter Modelica.SIunits.Density rhoStd + parameter Modelica.Units.SI.Density rhoStd "Inlet density for which valve coefficients are defined" - annotation(Dialog(group="Nominal condition", tab="Advanced")); + annotation (Dialog(group="Nominal condition", tab="Advanced")); protected parameter Real Kv_SI( @@ -65,7 +61,7 @@ initial equation dpValve_nominal = (m_flow_nominal/Kv_SI)^2; else assert(CvData == AixLib.Fluid.Types.CvTypes.Av, "Invalid value for CvData. -Obtained CvData = " + String(CvData) + "."); + Obtained CvData = "+ String(CvData) + "."); Kv_SI = Av*sqrt(rhoStd); Kv = Kv_SI/(rhoStd/3600/sqrt(1E5)); Cv = Kv_SI/(rhoStd*0.0631/1000/sqrt(6895)); @@ -73,88 +69,89 @@ Obtained CvData = " + String(CvData) + "."); end if; annotation (Documentation(info=" -

                -Model that computes the flow coefficients of valves. This base class allows the following modeling options, -which have been adapted from the valve implementation -in -Modelica.Fluid -to specify the valve flow coefficient in fully open conditions: -

                -
                  -
                • CvData = AixLib.Fluid.Types.CvTypes.Av: the flow coefficient is given by the metric Av coefficient (m^2).
                • -
                • CvData = AixLib.Fluid.Types.CvTypes.Kv: the flow coefficient is given by the metric Kv coefficient (m^3/h).
                • -
                • CvData = AixLib.Fluid.Types.CvTypes.Cv: the flow coefficient is given by the US Cv coefficient (USG/min).
                • -
                • CvData = AixLib.Fluid.Types.CvTypes.OpPoint: the flow is computed from the nominal operating point specified by dp_nominal and m_flow_nominal.
                • -
                -

                -The treatment of parameters Kv and Cv is -explained in detail in the -Users Guide. -

                -

                -In contrast to the model in -Modelica.Fluid, this model uses the protected parameter Kv_SI, -which is the flow coefficient in SI units, i.e., -it is the ratio between mass flow rate in kg/s and square root -of pressure drop in Pa. -The value of Kv_SI is computed based on the parameters -Av, -Kv, -Cv, or, if -CvData = AixLib.Fluid.Types.CvTypes.OpPoint, based on -m_flow_nominal and dpValve_nominal. -Conversely, if -CvData <> AixLib.Fluid.Types.CvTypes.OpPoint, then -dpValve_nominal is computed based on -Av, -Kv, or -Cv, and the nominal mass flow rate m_flow_nominal. -Therefore, if -CvData <> AixLib.Fluid.Types.CvTypes.OpPoint, -then specifying a value for dpValve_nominal is a syntax error. -

                -", revisions=" -
                  -
                • -January 22, 2016, by Michael Wetter:
                  -Corrected type declaration of pressure difference. -This is -for #404. -
                • -
                • -August 12, 2014, by Michael Wetter:
                  -Changed attribute min of dpValve_nominal -to 0. -This is needed as for example in - -AixLib.Fluid.Actuators.Valves.Examples.TwoWayValveTable, -dpValve_nominal=0. -
                • -
                • -August 8, 2014, by Michael Wetter:
                  -Changed the initial algorithm to an initial equation -section. Otherwise, OpenModelica attempts to solve for the parameter -values using numerical iteration, and fails in doing so. -
                • -
                • -May 29, 2014, by Michael Wetter:
                  -Removed undesirable annotation Evaluate=true. -
                • -
                • -March 25, 2013, by Michael Wetter:
                  -Removed stray backslash in write statement. -
                • -
                • -February 28, 2013, by Michael Wetter:
                  -Reformulated assignment of parameters, and removed Kv_SI as -a public parameter because it is always computed based on other parameters. -This change avoids a translation error in Dymola 2014 beta1 in -the pedantic mode, and a translation warning otherwise. -
                • -
                • -February 18, 2009 by Michael Wetter:
                  -First implementation. -
                • -
                -")); +

                + Model that computes the flow coefficients of valves. This base class allows the following modeling options, + which have been adapted from the valve implementation + in + Modelica.Fluid + to specify the valve flow coefficient in fully open conditions: +

                +
                  +
                • CvData = AixLib.Fluid.Types.CvTypes.Av: the flow coefficient is given by the metric Av coefficient (m^2).
                • +
                • CvData = AixLib.Fluid.Types.CvTypes.Kv: the flow coefficient is given by the metric Kv coefficient (m^3/h).
                • +
                • CvData = AixLib.Fluid.Types.CvTypes.Cv: the flow coefficient is given by the US Cv coefficient (USG/min).
                • +
                • CvData = AixLib.Fluid.Types.CvTypes.OpPoint: the flow is computed from the nominal operating point specified by dp_nominal and m_flow_nominal.
                • +
                +

                + The treatment of parameters Kv and Cv is + explained in detail in the + Users Guide. +

                +

                + In contrast to the model in + Modelica.Fluid, this model uses the protected parameter Kv_SI, + which is the flow coefficient in SI units, i.e., + it is the ratio between mass flow rate in kg/s and square root + of pressure drop in Pa. + The value of Kv_SI is computed based on the parameters + Av, + Kv, + Cv, or, if + CvData = AixLib.Fluid.Types.CvTypes.OpPoint, based on + m_flow_nominal and dpValve_nominal. + Conversely, if + CvData <> AixLib.Fluid.Types.CvTypes.OpPoint, then + dpValve_nominal is computed based on + Av, + Kv, or + Cv, and the nominal mass flow rate m_flow_nominal. + Therefore, if + CvData <> AixLib.Fluid.Types.CvTypes.OpPoint, + then specifying a value for dpValve_nominal is a syntax error. +

                + ",revisions=" +
                  +
                • + January 22, 2016, by Michael Wetter:
                  + Corrected type declaration of pressure difference. + This is + for #404. +
                • +
                • + August 12, 2014, by Michael Wetter:
                  + Changed attribute min of dpValve_nominal + to 0. + This is needed as for example in + + AixLib.Fluid.Actuators.Valves.Examples.TwoWayValveTable, + dpValve_nominal=0. +
                • +
                • + August 8, 2014, by Michael Wetter:
                  + Changed the initial algorithm to an initial equation + section. Otherwise, OpenModelica attempts to solve for the parameter + values using numerical iteration, and fails in doing so. +
                • +
                • + May 29, 2014, by Michael Wetter:
                  + Removed undesirable annotation Evaluate=true. +
                • +
                • + March 25, 2013, by Michael Wetter:
                  + Removed stray backslash in write statement. +
                • +
                • + February 28, 2013, by Michael Wetter:
                  + Reformulated assignment of parameters, and removed Kv_SI as + a public parameter because it is always computed based on other parameters. + This change avoids a translation error in Dymola 2014 beta1 in + the pedantic mode, and a translation warning otherwise. +
                • +
                • + February 18, 2009 by Michael Wetter:
                  + First implementation. +
                • +
                + "), + __Dymola_LockedEditing="Model from IBPSA"); end ValveParameters; diff --git a/AixLib/Fluid/Actuators/BaseClasses/der_equalPercentage.mo b/AixLib/Fluid/Actuators/BaseClasses/der_equalPercentage.mo index 347c5fee5b..af7085f180 100644 --- a/AixLib/Fluid/Actuators/BaseClasses/der_equalPercentage.mo +++ b/AixLib/Fluid/Actuators/BaseClasses/der_equalPercentage.mo @@ -37,29 +37,30 @@ algorithm end if; annotation ( Documentation(info=" -

                -This function computes the derivative of the opening characteristics of an equal percentage valve. -

                -The function is the derivative of - -AixLib.Fluid.Actuators.BaseClasses.equalPercentage. -

                -", +

                + This function computes the derivative of the opening characteristics of an equal percentage valve. +

                + The function is the derivative of + + AixLib.Fluid.Actuators.BaseClasses.equalPercentage. +

                + ", revisions=" -
                  -
                • -March 30, 2011 by Michael Wetter:
                  -Removed inputs for which no derivative is implemented from the argument list, and added -zeroDerivative keyword in function that calls this function. -
                • -
                • -February 4, 2010 by Michael Wetter:
                  -Fixed implementation of derivative function. -
                • -
                • -June 6, 2008 by Michael Wetter:
                  -First implementation. -
                • -
                -")); +
                  +
                • + March 30, 2011 by Michael Wetter:
                  + Removed inputs for which no derivative is implemented from the argument list, and added + zeroDerivative keyword in function that calls this function. +
                • +
                • + February 4, 2010 by Michael Wetter:
                  + Fixed implementation of derivative function. +
                • +
                • + June 6, 2008 by Michael Wetter:
                  + First implementation. +
                • +
                + "), + __Dymola_LockedEditing="Model from IBPSA"); end der_equalPercentage; diff --git a/AixLib/Fluid/Actuators/BaseClasses/equalPercentage.mo b/AixLib/Fluid/Actuators/BaseClasses/equalPercentage.mo index fc4e21465d..afeabc60a1 100644 --- a/AixLib/Fluid/Actuators/BaseClasses/equalPercentage.mo +++ b/AixLib/Fluid/Actuators/BaseClasses/equalPercentage.mo @@ -37,35 +37,36 @@ algorithm end if; annotation ( Documentation(info=" -

                -This function computes the opening characteristics of an equal percentage valve. -

                -The function is used by the model - -AixLib.Fluid.Actuators.Valves.TwoWayEqualPercentage. -

                -For y < delta/2, the valve characteristics is linear. For y > 3*delta/2 -the valve characteristics is equal percentage. In between, a cubic spline is used to ensure -that the valve characteristics is once continuously differentiable with respect to y. -

                -", +

                + This function computes the opening characteristics of an equal percentage valve. +

                + The function is used by the model + + AixLib.Fluid.Actuators.Valves.TwoWayEqualPercentage. +

                + For y < delta/2, the valve characteristics is linear. For y > 3*delta/2 + the valve characteristics is equal percentage. In between, a cubic spline is used to ensure + that the valve characteristics is once continuously differentiable with respect to y. +

                + ", revisions=" -
                  -
                • -April 11, 2016 by Michael Wetter:
                  -Corrected wrong hyperlink in documentation for -issue 450. -
                • -
                • -March 30, 2011 by Michael Wetter:
                  -Added zeroDerivative keyword. -
                • -
                • -June 5, 2008 by Michael Wetter:
                  -First implementation. -
                • -
                -"), +
                  +
                • + April 11, 2016 by Michael Wetter:
                  + Corrected wrong hyperlink in documentation for + issue 450. +
                • +
                • + March 30, 2011 by Michael Wetter:
                  + Added zeroDerivative keyword. +
                • +
                • + June 5, 2008 by Michael Wetter:
                  + First implementation. +
                • +
                + "), smoothOrder=1, -derivative(zeroDerivative=R, zeroDerivative=l, zeroDerivative=delta)=der_equalPercentage); +derivative(zeroDerivative=R, zeroDerivative=l, zeroDerivative=delta)=der_equalPercentage, + __Dymola_LockedEditing="Model from IBPSA"); end equalPercentage; diff --git a/AixLib/Fluid/Actuators/BaseClasses/exponentialDamper.mo b/AixLib/Fluid/Actuators/BaseClasses/exponentialDamper.mo index f996d1eb88..f857735445 100644 --- a/AixLib/Fluid/Actuators/BaseClasses/exponentialDamper.mo +++ b/AixLib/Fluid/Actuators/BaseClasses/exponentialDamper.mo @@ -29,51 +29,52 @@ algorithm end if; annotation ( Documentation(info=" -

                -This function computes the opening characteristics of an exponential damper. -

                -The function is used by the model - -AixLib.Fluid.Actuators.Dampers.Exponential. -

                -For yL < y < yU, the damper characteristics is -

                -

                - kd(y) = exp(a+b (1-y)). -

                -

                -Outside this range, the damper characteristic is defined by a quadratic polynomial. -

                -

                -Note that this implementation returns sqrt(kd(y)) instead of kd(y). -This is done for numerical reason since otherwise kd(y) may be an iteration -variable, which may cause a lot of warnings and slower convergence if the solver -attempts kd(y) < 0 during the iterative solution procedure. -

                -", +

                + This function computes the opening characteristics of an exponential damper. +

                + The function is used by the model + + AixLib.Fluid.Actuators.Dampers.Exponential. +

                + For yL < y < yU, the damper characteristics is +

                +

                + kd(y) = exp(a+b (1-y)). +

                +

                + Outside this range, the damper characteristic is defined by a quadratic polynomial. +

                +

                + Note that this implementation returns sqrt(kd(y)) instead of kd(y). + This is done for numerical reason since otherwise kd(y) may be an iteration + variable, which may cause a lot of warnings and slower convergence if the solver + attempts kd(y) < 0 during the iterative solution procedure. +

                + ", revisions=" -
                  -
                • -April 14, 2014 by Michael Wetter:
                  -Improved documentation. -
                • -
                • -July 1, 2011 by Michael Wetter:
                  -Added constraint to control input to avoid using a number outside -0 and 1 in case that the control input -has a numerical integration error. -
                • -
                • -April 4, 2010 by Michael Wetter:
                  -Reformulated implementation. The new implementation computes -sqrt(kTheta). This avoid having kTheta in -the iteration variables, which caused warnings when the solver attempted -kTheta < 0. -
                • -
                • -June 22, 2008 by Michael Wetter:
                  -First implementation. -
                • -
                -"), smoothOrder=1); +
                  +
                • + April 14, 2014 by Michael Wetter:
                  + Improved documentation. +
                • +
                • + July 1, 2011 by Michael Wetter:
                  + Added constraint to control input to avoid using a number outside + 0 and 1 in case that the control input + has a numerical integration error. +
                • +
                • + April 4, 2010 by Michael Wetter:
                  + Reformulated implementation. The new implementation computes + sqrt(kTheta). This avoid having kTheta in + the iteration variables, which caused warnings when the solver attempted + kTheta < 0. +
                • +
                • + June 22, 2008 by Michael Wetter:
                  + First implementation. +
                • +
                + "), smoothOrder=1, + __Dymola_LockedEditing="Model from IBPSA"); end exponentialDamper; diff --git a/AixLib/Fluid/Actuators/Dampers/Examples/Damper.mo b/AixLib/Fluid/Actuators/Dampers/Examples/Damper.mo index bb1b4a1206..ac91902523 100644 --- a/AixLib/Fluid/Actuators/Dampers/Examples/Damper.mo +++ b/AixLib/Fluid/Actuators/Dampers/Examples/Damper.mo @@ -92,21 +92,22 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Actuators/Dampers/Examples/Damper.mos" "Simulate and plot"), Documentation(info=" -

                -Test model for exponential and linear air dampers. -The air dampers are connected to models for constant inlet and outlet -pressures. The control signal of the dampers is a ramp. -

                -", revisions=" -
                  -
                • -March 21, 2017 by David Blum:
                  -Added Linear damper models lin, preIndFrom_dp, and preInd. -
                • -
                • -July 20, 2007 by Michael Wetter:
                  -First implementation. -
                • -
                -")); +

                + Test model for exponential and linear air dampers. + The air dampers are connected to models for constant inlet and outlet + pressures. The control signal of the dampers is a ramp. +

                + ",revisions=" +
                  +
                • + March 21, 2017 by David Blum:
                  + Added Linear damper models lin, preIndFrom_dp, and preInd. +
                • +
                • + July 20, 2007 by Michael Wetter:
                  + First implementation. +
                • +
                + "), + __Dymola_LockedEditing="Model from IBPSA"); end Damper; diff --git a/AixLib/Fluid/Actuators/Dampers/Examples/MixingBox.mo b/AixLib/Fluid/Actuators/Dampers/Examples/MixingBox.mo index 031c0de8bb..c07a8cc117 100644 --- a/AixLib/Fluid/Actuators/Dampers/Examples/MixingBox.mo +++ b/AixLib/Fluid/Actuators/Dampers/Examples/MixingBox.mo @@ -81,17 +81,18 @@ equation "Simulate and plot"), experiment(Tolerance=1e-6, StopTime=240), Documentation(info=" -

                -Test model for the economizer mixing box. -The economizer mixing box is exposed to time varying pressure boundary -conditions and input signals. -

                -", revisions=" -
                  -
                • -February 23, 2010 by Michael Wetter:
                  -First implementation. -
                • -
                -")); +

                + Test model for the economizer mixing box. + The economizer mixing box is exposed to time varying pressure boundary + conditions and input signals. +

                + ",revisions=" +
                  +
                • + February 23, 2010 by Michael Wetter:
                  + First implementation. +
                • +
                + "), + __Dymola_LockedEditing="Model from IBPSA"); end MixingBox; diff --git a/AixLib/Fluid/Actuators/Dampers/Examples/VAVBoxExponential.mo b/AixLib/Fluid/Actuators/Dampers/Examples/VAVBoxExponential.mo index 4fff5c98df..789330a99a 100644 --- a/AixLib/Fluid/Actuators/Dampers/Examples/VAVBoxExponential.mo +++ b/AixLib/Fluid/Actuators/Dampers/Examples/VAVBoxExponential.mo @@ -74,24 +74,25 @@ equation "Simulate and plot"), experiment(Tolerance=1e-6, StopTime=240), Documentation(info=" -

                -Test model for the variable air volume flow box. -The model has two flow legs, both are connected to models for constant inlet and outlet -pressures. -The top flow leg has a flow resistance and an air damper, and -the bottom flow leg combines both of these resistances into one model. -Both flow legs have identical mass flow rates, except at very small -flow rates. The reason for this difference is that the equations -are regularized for numerical reasons, and combining the two components -within one component leads to a slightly different equation for the -regularization. -

                -", revisions=" -
                  -
                • -July 20, 2007 by Michael Wetter:
                  -First implementation. -
                • -
                -")); +

                + Test model for the variable air volume flow box. + The model has two flow legs, both are connected to models for constant inlet and outlet + pressures. + The top flow leg has a flow resistance and an air damper, and + the bottom flow leg combines both of these resistances into one model. + Both flow legs have identical mass flow rates, except at very small + flow rates. The reason for this difference is that the equations + are regularized for numerical reasons, and combining the two components + within one component leads to a slightly different equation for the + regularization. +

                + ",revisions=" +
                  +
                • + July 20, 2007 by Michael Wetter:
                  + First implementation. +
                • +
                + "), + __Dymola_LockedEditing="Model from IBPSA"); end VAVBoxExponential; diff --git a/AixLib/Fluid/Actuators/Dampers/Examples/package.mo b/AixLib/Fluid/Actuators/Dampers/Examples/package.mo index 6189bf3c0c..7ed165ab41 100644 --- a/AixLib/Fluid/Actuators/Dampers/Examples/package.mo +++ b/AixLib/Fluid/Actuators/Dampers/Examples/package.mo @@ -1,6 +1,7 @@ within AixLib.Fluid.Actuators.Dampers; package Examples "Collection of models that illustrate model use and test models" extends Modelica.Icons.ExamplesPackage; + annotation (preferredView="info", Documentation(info="

                This package contains examples for the use of models that can be found in diff --git a/AixLib/Fluid/Actuators/Dampers/Exponential.mo b/AixLib/Fluid/Actuators/Dampers/Exponential.mo index f005c916aa..9c72bef5ea 100644 --- a/AixLib/Fluid/Actuators/Dampers/Exponential.mo +++ b/AixLib/Fluid/Actuators/Dampers/Exponential.mo @@ -34,93 +34,100 @@ equation annotation ( defaultComponentName="damExp", Documentation(info=" -

                -Model of two flow resistances in series: -

                -
                  -
                • -one resistance has a fixed flow coefficient; -
                • -
                • -the other resistance represents a damper whose flow coefficient is an -exponential function of the opening angle. -
                • -
                -

                -The lumped flow coefficient k(y) (function of the fractional opening -y) is used to compute the mass flow rate versus pressure drop relation as: -

                -

                - ṁ = sign(Δp) k(y) √ Δp   -

                -

                -with regularization near the origin. -

                -For a description of the damper opening characteristics and typical -parameter values, see the partial model - -AixLib.Fluid.Actuators.BaseClasses.PartialDamperExponential. -

                -", revisions=" -
                  -
                • -April 12, 2021, by Michael Wetter:
                  -Guarded against division by zero if the pressure equation is removed. -This then leads to a more meaningful error message.
                  -This is for -AixLib, #1243. -
                • -
                • -December 23, 2019, by Antoine Gautier:
                  -Added the pressure drop calculation as it is no longer in the base class.
                  -This is for -AixLib, #1188. -
                • -
                • -March 22, 2017, by Michael Wetter:
                  -Updated documentation. -
                • -
                • -April 14, 2014 by Michael Wetter:
                  -Improved documentation. -
                • -
                • -September 26, 2013 by Michael Wetter:
                  -Moved assignment of kDam_default and kThetaSqRt_default -from initial algorithm to the variable declaration, to avoid a division -by zero in OpenModelica. -
                • -
                • -December 14, 2012 by Michael Wetter:
                  -Renamed protected parameters for consistency with the naming conventions. -
                • -
                • -June 22, 2008 by Michael Wetter:
                  -Extended range of control signal from 0 to 1 by implementing the function - -AixLib.Fluid.Actuators.BaseClasses.exponentialDamper. -
                • -
                • -June 10, 2008 by Michael Wetter:
                  -Introduced new partial base class, - -PartialDamperExponential. -
                • -
                • -June 30, 2007 by Michael Wetter:
                  -Introduced new partial base class, -PartialActuator. -
                • -
                • -July 27, 2007 by Michael Wetter:
                  -Introduced partial base class. -
                • -
                • -July 20, 2007 by Michael Wetter:
                  -First implementation. -
                • -
                -"), Icon(coordinateSystem(preserveAspectRatio=true, extent={{-100,-100}, +

                + Model of two flow resistances in series: +

                +
                  +
                • + one resistance has a fixed flow coefficient; +
                • +
                • + the other resistance represents a damper whose flow coefficient is an + exponential function of the opening angle. +
                • +
                +

                + The lumped flow coefficient k(y) (function of the fractional opening + y) is used to compute the mass flow rate versus pressure drop relation as: +

                +

                + ṁ = sign(Δp) k(y) √ Δp   +

                +

                + with regularization near the origin. +

                + For a description of the damper opening characteristics and typical + parameter values, see the partial model + + AixLib.Fluid.Actuators.BaseClasses.PartialDamperExponential. +

                + ",revisions=" +
                  +
                • + June 10, 2021, by Michael Wetter:
                  + Changed implementation of the filter and changed the parameter order to a constant + as most users need not change this value.
                  + This is for + #1498. +
                • +
                • + April 12, 2021, by Michael Wetter:
                  + Guarded against division by zero if the pressure equation is removed. + This then leads to a more meaningful error message.
                  + This is for + IBPSA, #1243. +
                • +
                • + December 23, 2019, by Antoine Gautier:
                  + Added the pressure drop calculation as it is no longer in the base class.
                  + This is for + IBPSA, #1188. +
                • +
                • + March 22, 2017, by Michael Wetter:
                  + Updated documentation. +
                • +
                • + April 14, 2014 by Michael Wetter:
                  + Improved documentation. +
                • +
                • + September 26, 2013 by Michael Wetter:
                  + Moved assignment of kDam_default and kThetaSqRt_default + from initial algorithm to the variable declaration, to avoid a division + by zero in OpenModelica. +
                • +
                • + December 14, 2012 by Michael Wetter:
                  + Renamed protected parameters for consistency with the naming conventions. +
                • +
                • + June 22, 2008 by Michael Wetter:
                  + Extended range of control signal from 0 to 1 by implementing the function + + AixLib.Fluid.Actuators.BaseClasses.exponentialDamper. +
                • +
                • + June 10, 2008 by Michael Wetter:
                  + Introduced new partial base class, + + PartialDamperExponential. +
                • +
                • + June 30, 2007 by Michael Wetter:
                  + Introduced new partial base class, + PartialActuator. +
                • +
                • + July 27, 2007 by Michael Wetter:
                  + Introduced partial base class. +
                • +
                • + July 20, 2007 by Michael Wetter:
                  + First implementation. +
                • +
                + "),Icon(coordinateSystem(preserveAspectRatio=true, extent={{-100,-100}, {100,100}}), graphics={ Rectangle( extent={{-100,22},{100,-24}}, @@ -132,5 +139,6 @@ First implementation. fillPattern=FillPattern.Solid), Polygon( points={{-22,-32},{26,10},{26,-2},{-22,-44},{-22,-32}}, lineColor={0,0,0}, - fillPattern=FillPattern.Solid)})); + fillPattern=FillPattern.Solid)}), + __Dymola_LockedEditing="Model from IBPSA"); end Exponential; diff --git a/AixLib/Fluid/Actuators/Dampers/MixingBox.mo b/AixLib/Fluid/Actuators/Dampers/MixingBox.mo index 60e95d41cc..985e4e5d82 100644 --- a/AixLib/Fluid/Actuators/Dampers/MixingBox.mo +++ b/AixLib/Fluid/Actuators/Dampers/MixingBox.mo @@ -20,37 +20,43 @@ model MixingBox "Outside air mixing box with interlocked air dampers" "Set to true for round duct, false for square cross section" annotation(Dialog(enable=not use_deltaM)); parameter Real ReC=4000 - "Reynolds number where transition to turbulent starts" + "Reynolds number where transition to turbulence starts" annotation(Dialog(enable=not use_deltaM)); - parameter Modelica.SIunits.MassFlowRate mOut_flow_nominal + parameter Modelica.Units.SI.MassFlowRate mOut_flow_nominal "Mass flow rate outside air damper" annotation (Dialog(group="Nominal condition")); - parameter Modelica.SIunits.PressureDifference dpDamOut_nominal(min=0, displayUnit="Pa") - "Pressure drop of damper in outside air leg" - annotation (Dialog(group="Nominal condition")); - parameter Modelica.SIunits.PressureDifference dpFixOut_nominal(min=0, displayUnit="Pa")=0 + parameter Modelica.Units.SI.PressureDifference dpDamOut_nominal(min=0, + displayUnit="Pa") "Pressure drop of damper in outside air leg" + annotation (Dialog(group="Nominal condition")); + parameter Modelica.Units.SI.PressureDifference dpFixOut_nominal( + min=0, + displayUnit="Pa") = 0 "Pressure drop of duct and other resistances in outside air leg" - annotation (Dialog(group="Nominal condition")); + annotation (Dialog(group="Nominal condition")); - parameter Modelica.SIunits.MassFlowRate mRec_flow_nominal + parameter Modelica.Units.SI.MassFlowRate mRec_flow_nominal "Mass flow rate recirculation air damper" annotation (Dialog(group="Nominal condition")); - parameter Modelica.SIunits.PressureDifference dpDamRec_nominal(min=0, displayUnit="Pa") - "Pressure drop of damper in recirculation air leg" - annotation (Dialog(group="Nominal condition")); - parameter Modelica.SIunits.PressureDifference dpFixRec_nominal(min=0, displayUnit="Pa")=0 + parameter Modelica.Units.SI.PressureDifference dpDamRec_nominal(min=0, + displayUnit="Pa") "Pressure drop of damper in recirculation air leg" + annotation (Dialog(group="Nominal condition")); + parameter Modelica.Units.SI.PressureDifference dpFixRec_nominal( + min=0, + displayUnit="Pa") = 0 "Pressure drop of duct and other resistances in recirculation air leg" - annotation (Dialog(group="Nominal condition")); + annotation (Dialog(group="Nominal condition")); - parameter Modelica.SIunits.MassFlowRate mExh_flow_nominal + parameter Modelica.Units.SI.MassFlowRate mExh_flow_nominal "Mass flow rate exhaust air damper" annotation (Dialog(group="Nominal condition")); - parameter Modelica.SIunits.PressureDifference dpDamExh_nominal(min=0, displayUnit="Pa") - "Pressure drop of damper in exhaust air leg" - annotation (Dialog(group="Nominal condition")); - parameter Modelica.SIunits.PressureDifference dpFixExh_nominal(min=0, displayUnit="Pa")=0 + parameter Modelica.Units.SI.PressureDifference dpDamExh_nominal(min=0, + displayUnit="Pa") "Pressure drop of damper in exhaust air leg" + annotation (Dialog(group="Nominal condition")); + parameter Modelica.Units.SI.PressureDifference dpFixExh_nominal( + min=0, + displayUnit="Pa") = 0 "Pressure drop of duct and other resistances in exhaust air leg" - annotation (Dialog(group="Nominal condition")); + annotation (Dialog(group="Nominal condition")); parameter Boolean from_dp=true "= true, use m_flow = f(dp) else dp = f(m_flow)" @@ -252,7 +258,7 @@ equation fillPattern=FillPattern.Solid), Text( extent={{22,132},{48,110}}, - lineColor={0,0,127}, + textColor={0,0,127}, fillColor={0,0,0}, fillPattern=FillPattern.Solid, textString="y"), @@ -285,73 +291,87 @@ equation points={{0,40},{0,10},{0,12}}, color={0,0,255}), Text( extent={{-50,-84},{48,-132}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString= "%name")}), defaultComponentName="eco", Documentation(revisions=" -
                  -
                • -December 23, 2019, by Antoine Gautier:
                  -Updated parameter bindings consistently with refactoring of - -AixLib.Fluid.Actuators.BaseClasses.PartialDamperExponential.
                  -This is for -#1188. -
                • -
                • -January 18, 2019, by Jianjun Hu:
                  -Limited the media choice to moist air only. -See #1050. -
                • -
                • -March 24, 2017, by Michael Wetter:
                  -Renamed filteredInput to use_inputFilter.
                  -This is for -#665. -
                • -
                • -March 22, 2017, by Michael Wetter:
                  -Removed the assignments of AOut, AExh and ARec as these are done in the damper instance using -a final assignment of the parameter. -This allows scaling the model with m_flow_nominal, -which is generally known in the flow leg, -and v_nominal, for which a default value can be specified.
                  -This is for -#544. -
                • -
                • -January 22, 2016, by Michael Wetter:
                  -Corrected type declaration of pressure difference. -This is -for #404. -
                • -
                • -December 14, 2012 by Michael Wetter:
                  -Renamed protected parameters for consistency with the naming conventions. -
                • -
                • -February 14, 2012 by Michael Wetter:
                  -Added filter to approximate the travel time of the actuator. -
                • -
                • -February 3, 2012, by Michael Wetter:
                  -Removed assignment of m_flow_small as it is no -longer used in its base class. -
                • -
                • -February 23, 2010 by Michael Wetter:
                  -First implementation. -
                • -
                -", info=" -

                -Model of an outside air mixing box with exponential dampers. -Set y=0 to close the outside air and exhaust air dampers. -See - -AixLib.Fluid.Actuators.Dampers.Exponential -for the description of the exponential damper model. -

                -")); +
                  +
                • + September 21, 2021, by Michael Wetter:
                  + Corrected typo in comments.
                  + This is for + #1525. +
                • +
                • + June 10, 2021, by Michael Wetter:
                  + Changed implementation of the filter and changed the parameter order to a constant + as most users need not change this value.
                  + This is for + #1498. +
                • +
                • + December 23, 2019, by Antoine Gautier:
                  + Updated parameter bindings consistently with refactoring of + + AixLib.Fluid.Actuators.BaseClasses.PartialDamperExponential.
                  + This is for + #1188. +
                • +
                • + January 18, 2019, by Jianjun Hu:
                  + Limited the media choice to moist air only. + See #1050. +
                • +
                • + March 24, 2017, by Michael Wetter:
                  + Renamed filteredInput to use_inputFilter.
                  + This is for + #665. +
                • +
                • + March 22, 2017, by Michael Wetter:
                  + Removed the assignments of AOut, AExh and ARec as these are done in the damper instance using + a final assignment of the parameter. + This allows scaling the model with m_flow_nominal, + which is generally known in the flow leg, + and v_nominal, for which a default value can be specified.
                  + This is for + #544. +
                • +
                • + January 22, 2016, by Michael Wetter:
                  + Corrected type declaration of pressure difference. + This is + for #404. +
                • +
                • + December 14, 2012 by Michael Wetter:
                  + Renamed protected parameters for consistency with the naming conventions. +
                • +
                • + February 14, 2012 by Michael Wetter:
                  + Added filter to approximate the travel time of the actuator. +
                • +
                • + February 3, 2012, by Michael Wetter:
                  + Removed assignment of m_flow_small as it is no + longer used in its base class. +
                • +
                • + February 23, 2010 by Michael Wetter:
                  + First implementation. +
                • +
                + ",info=" +

                + Model of an outside air mixing box with exponential dampers. + Set y=0 to close the outside air and exhaust air dampers. + See + + AixLib.Fluid.Actuators.Dampers.Exponential + for the description of the exponential damper model. +

                + "), + __Dymola_LockedEditing="Model from IBPSA"); end MixingBox; diff --git a/AixLib/Fluid/Actuators/Dampers/PressureIndependent.mo b/AixLib/Fluid/Actuators/Dampers/PressureIndependent.mo index 08efd6b3eb..a4456819d0 100644 --- a/AixLib/Fluid/Actuators/Dampers/PressureIndependent.mo +++ b/AixLib/Fluid/Actuators/Dampers/PressureIndependent.mo @@ -13,16 +13,15 @@ model PressureIndependent parameter Real deltax(unit="1", min=1E-5) = 0.02 "Transition interval for flow rate" annotation(Dialog(tab="Advanced")); protected - Real kSquInv - "Square inverse of flow coefficient (damper plus fixed resistance)"; - Real kDamSquInv - "Square inverse of flow coefficient (damper only)"; - parameter Real y_min = 2E-2 + constant Real y_min = 2E-2 "Minimum value of control signal before zeroing of the opening"; - parameter Integer sizeSupSplBnd = 5 + constant Integer sizeSupSplBnd = 5 "Number of support points on each quadratic domain for spline interpolation"; - parameter Integer sizeSupSpl = 2 * sizeSupSplBnd + 3 + constant Integer sizeSupSpl = 2 * sizeSupSplBnd + 3 "Total number of support points for spline interpolation"; + constant Real y2dd = 0 + "Second derivative at second support point"; + parameter Real[sizeSupSpl] ySupSpl_raw = cat( 1, linspace(1, yU, sizeSupSplBnd), @@ -44,19 +43,30 @@ protected "Parameter for avoiding unnecessary computations"; parameter Real coeff2 = 1/coeff1 "Parameter for avoiding unnecessary computations"; - constant Real y2dd = 0 - "Second derivative at second support point"; - Modelica.SIunits.MassFlowRate m_flow_set - "Requested mass flow rate"; - Modelica.SIunits.PressureDifference dp_min(displayUnit="Pa") + + Real kSquInv + "Square inverse of flow coefficient (damper plus fixed resistance)"; + Real kDamSquInv + "Square inverse of flow coefficient (damper only)"; + + Modelica.Units.SI.MassFlowRate m_flow_set "Requested mass flow rate"; + Modelica.Units.SI.PressureDifference dp_min(displayUnit="Pa") "Minimum pressure difference required for delivering requested mass flow rate"; - Modelica.SIunits.PressureDifference dp_x, dp_x1, dp_x2, dp_y2, dp_y1 + Modelica.Units.SI.PressureDifference dp_x; + Modelica.Units.SI.PressureDifference dp_x1; + Modelica.Units.SI.PressureDifference dp_x2; + Modelica.Units.SI.PressureDifference dp_y2; + Modelica.Units.SI.PressureDifference dp_y1 "Support points for interpolation flow functions"; - Modelica.SIunits.MassFlowRate m_flow_x, m_flow_x1, m_flow_x2, m_flow_y2, m_flow_y1 + Modelica.Units.SI.MassFlowRate m_flow_x; + Modelica.Units.SI.MassFlowRate m_flow_x1; + Modelica.Units.SI.MassFlowRate m_flow_x2; + Modelica.Units.SI.MassFlowRate m_flow_y2; + Modelica.Units.SI.MassFlowRate m_flow_y1 "Support points for interpolation flow functions"; - Modelica.SIunits.MassFlowRate m_flow_smooth + Modelica.Units.SI.MassFlowRate m_flow_smooth "Smooth interpolation result between two flow regimes"; - Modelica.SIunits.PressureDifference dp_smooth + Modelica.Units.SI.PressureDifference dp_smooth "Smooth interpolation result between two flow regimes"; Real y_actual_smooth(final unit="1") "Fractional opening computed based on m_flow_smooth and dp"; @@ -64,20 +74,22 @@ protected function basicFlowFunction_dp_m_flow "Inverse of flow function that computes that computes the square inverse of flow coefficient" extends Modelica.Icons.Function; - input Modelica.SIunits.MassFlowRate m_flow - "Mass flow rate in design flow direction"; - input Modelica.SIunits.PressureDifference dp - "Pressure difference between port_a and port_b (= port_a.p - port_b.p)"; - input Modelica.SIunits.MassFlowRate m_flow_small - "Minimum value of mass flow rate guarding against k=(0)/sqrt(dp)"; - input Modelica.SIunits.PressureDifference dp_small - "Minimum value of pressure drop guarding against k=m_flow/(0)"; + input Modelica.Units.SI.MassFlowRate m_flow + "Mass flow rate in design flow direction"; + input Modelica.Units.SI.PressureDifference dp + "Pressure difference between port_a and port_b (= port_a.p - port_b.p)"; + input Modelica.Units.SI.MassFlowRate m_flow_small + "Minimum value of mass flow rate guarding against k=(0)/sqrt(dp)"; + input Modelica.Units.SI.PressureDifference dp_small + "Minimum value of pressure drop guarding against k=m_flow/(0)"; output Real kSquInv "Square inverse of flow coefficient"; protected - Modelica.SIunits.PressureDifference dpPos= - AixLib.Utilities.Math.Functions.smoothMax(dp, -dp, dp_small) - "Regularized absolute value of pressure drop"; + Modelica.Units.SI.PressureDifference dpPos= + AixLib.Utilities.Math.Functions.smoothMax( + dp, + -dp, + dp_small) "Regularized absolute value of pressure drop"; Real mSqu_flow = AixLib.Utilities.Math.Functions.smoothMax( m_flow^2, m_flow_small^2, m_flow_small^2) "Regularized square value of mass flow rate"; @@ -122,8 +134,13 @@ end exponentialDamper_inv; initial equation (kSupSpl, idx_sorted) = Modelica.Math.Vectors.sort(kSupSpl_raw, ascending=true); - ySupSpl = ySupSpl_raw[idx_sorted]; - invSplDer = AixLib.Utilities.Math.Functions.splineDerivatives(x=kSupSpl, y=ySupSpl); + // The sum below is a trick to avoid in OPTIMICA the warning + // Variable array index in equation can result in slow simulation time. + // This warning was issued for the formulation ySupSpl = ySupSpl_raw[idx_sorted]; + for i in 1:sizeSupSpl loop + ySupSpl[i] = sum((if k == idx_sorted[i] then ySupSpl_raw[k] else 0) for k in 1:sizeSupSpl); + end for; + invSplDer = AixLib.Utilities.Math.Functions.splineDerivatives(x=kSupSpl_raw, y=ySupSpl_raw); equation // From TwoWayPressureIndependent valve model m_flow_set = m_flow_nominal*phi; @@ -257,80 +274,94 @@ equation annotation ( defaultComponentName="damPreInd", Documentation(info=" -

                -Model for an air damper whose airflow is proportional to the input signal, assuming -that at y = 1, m_flow = m_flow_nominal. This is unless the pressure difference -dp is too low, -in which case a kDam = m_flow_nominal/sqrt(dp_nominal) characteristic is used. -

                -

                -The model is similar to - -AixLib.Fluid.Actuators.Valves.TwoWayPressureIndependent, -except for adaptations for damper parameters. -Please see that documentation for more information. -

                -

                Computation of the damper opening

                -

                -The fractional opening of the damper is computed by -

                -
                  -
                • -inverting the quadratic flow function to compute the flow coefficient -from the flow rate and the pressure drop values (under the assumption -of a turbulent flow regime); -
                • -
                • -inverting the exponential characteristics to compute the fractional opening -from the loss coefficient value (directly derived from the flow coefficient). -
                • -
                -

                -The quadratic interpolation used outside the exponential domain in the function - -AixLib.Fluid.Actuators.BaseClasses.exponentialDamper -yields a local extremum. -Therefore, the formal inversion of the function is not possible. -A cubic spline is used instead to fit the inverse of the damper characteristics. -The central domain of the characteritics having a monotonous exponential profile, its -inverse can be properly approximated with three equidistant support points. -However, the quadratic functions used outside of the exponential domain can have -various profiles depending on the damper coefficients. -Therefore, five linearly distributed support points are used on each side domain to -ensure a good fit of the inverse. -

                -

                -Note that below a threshold value of the input control signal (fixed at 0.02), -the fractional opening is forced to zero and no more related to the actual -flow coefficient of the damper. -This avoids steep transients of the computed opening while transitioning from reverse flow. -This is to be considered as a modeling workaround (avoiding the introduction of -an additional state variable) to prevent control chattering during -shut off operation where the pressure difference at the damper boundaries -can vary between slightly positive and negative values due to outdoor pressure -variations. -

                -", +

                + Model for an air damper whose airflow is proportional to the input signal, assuming + that at y = 1, m_flow = m_flow_nominal. This is unless the pressure difference + dp is too low, + in which case a kDam = m_flow_nominal/sqrt(dp_nominal) characteristic is used. +

                +

                + The model is similar to + + AixLib.Fluid.Actuators.Valves.TwoWayPressureIndependent, + except for adaptations for damper parameters. + Please see that documentation for more information. +

                +

                Computation of the damper opening

                +

                + The fractional opening of the damper is computed by +

                +
                  +
                • + inverting the quadratic flow function to compute the flow coefficient + from the flow rate and the pressure drop values (under the assumption + of a turbulent flow regime); +
                • +
                • + inverting the exponential characteristics to compute the fractional opening + from the loss coefficient value (directly derived from the flow coefficient). +
                • +
                +

                + The quadratic interpolation used outside the exponential domain in the function + + AixLib.Fluid.Actuators.BaseClasses.exponentialDamper + yields a local extremum. + Therefore, the formal inversion of the function is not possible. + A cubic spline is used instead to fit the inverse of the damper characteristics. + The central domain of the characteritics having a monotonous exponential profile, its + inverse can be properly approximated with three equidistant support points. + However, the quadratic functions used outside of the exponential domain can have + various profiles depending on the damper coefficients. + Therefore, five linearly distributed support points are used on each side domain to + ensure a good fit of the inverse. +

                +

                + Note that below a threshold value of the input control signal (fixed at 0.02), + the fractional opening is forced to zero and no more related to the actual + flow coefficient of the damper. + This avoids steep transients of the computed opening while transitioning from reverse flow. + This is to be considered as a modeling workaround (avoiding the introduction of + an additional state variable) to prevent control chattering during + shut off operation where the pressure difference at the damper boundaries + can vary between slightly positive and negative values due to outdoor pressure + variations. +

                + ", revisions=" - -"), +
                  +
                • + August 11, 2021, by Michael Wetter:
                  + Reformulated initial equation section to avoid warning in OPTIMICA about + variable array index.
                  + This is for + IBPSA #1513. +
                • +
                • + June 10, 2021, by Michael Wetter:
                  + Changed implementation of the filter and changed the parameter order to a constant + as most users need not change this value.
                  + This is for + IBPSA #1498. +
                • +
                • + April 6, 2020, by Antoine Gautier:
                  + Added the computation of the damper opening. +
                • +
                • + December 23, 2019 by Antoine Gautier:
                  + Refactored as the model can now extend directly + + AixLib.Fluid.Actuators.BaseClasses.PartialDamperExponential.
                  + This is for + IBPSA #1188. +
                • +
                • + March 21, 2017 by David Blum:
                  + First implementation. +
                • +
                + "), Icon(graphics={Line( points={{0,100},{0,-24}}), Rectangle( @@ -342,5 +373,6 @@ First implementation. extent={{-100,22},{100,-24}}, lineColor={0,0,0}, fillPattern=FillPattern.HorizontalCylinder, - fillColor={0,127,255})})); + fillColor={0,127,255})}), + __Dymola_LockedEditing="Model from IBPSA"); end PressureIndependent; diff --git a/AixLib/Fluid/Actuators/Dampers/VAVBoxExponential.mo b/AixLib/Fluid/Actuators/Dampers/VAVBoxExponential.mo index bcc74849da..03bc6a43e8 100644 --- a/AixLib/Fluid/Actuators/Dampers/VAVBoxExponential.mo +++ b/AixLib/Fluid/Actuators/Dampers/VAVBoxExponential.mo @@ -8,8 +8,8 @@ model VAVBoxExponential "set to true if dp_nominal includes the pressure loss of the open damper" annotation(Dialog(group = "Nominal condition")); protected - parameter Modelica.SIunits.PressureDifference dpDamOpe_nominal(displayUnit="Pa")= - k1*m_flow_nominal^2/2/Medium.density(sta_default)/A^2 + parameter Modelica.Units.SI.PressureDifference dpDamOpe_nominal(displayUnit= + "Pa") = k1*m_flow_nominal^2/2/Medium.density(sta_default)/A^2 "Pressure drop of fully open damper at nominal flow rate"; parameter Real kResSqu(unit="kg.m", fixed=false) "Resistance coefficient for fixed resistance element"; diff --git a/AixLib/Fluid/Actuators/Dampers/Validation/PressureIndependent.mo b/AixLib/Fluid/Actuators/Dampers/Validation/PressureIndependent.mo index 0b162600cf..795237427e 100644 --- a/AixLib/Fluid/Actuators/Dampers/Validation/PressureIndependent.mo +++ b/AixLib/Fluid/Actuators/Dampers/Validation/PressureIndependent.mo @@ -4,10 +4,9 @@ model PressureIndependent extends Modelica.Icons.Example; package Medium = AixLib.Media.Air "Medium model for air"; - parameter Modelica.SIunits.PressureDifference dp_nominal( - displayUnit="Pa") = 10 - "Damper nominal pressure drop"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal=1 + parameter Modelica.Units.SI.PressureDifference dp_nominal(displayUnit="Pa")= + 10 "Damper nominal pressure drop"; + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=1 "Damper nominal mass flow rate"; AixLib.Fluid.Actuators.Dampers.Exponential damExp( redeclare final package Medium = Medium, @@ -47,10 +46,11 @@ model PressureIndependent final m_flow_nominal=m_flow_nominal) "Damper with exponential opening characteristics" annotation (Placement(transformation(extent={{0,-90},{20,-70}}))); - Controls.Continuous.LimPID conPID(k=10, + Controls.Continuous.LimPID conPID( + k=10, Ti=0.001, controllerType=Modelica.Blocks.Types.SimpleController.PID, - initType=Modelica.Blocks.Types.InitPID.InitialState) + initType=Modelica.Blocks.Types.Init.InitialState) "Discharge flow rate controller" annotation (Placement(transformation(extent={{-70,-70},{-50,-50}}))); Sensors.MassFlowRate senMasFlo( @@ -123,52 +123,53 @@ __Dymola_Commands( file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Actuators/Dampers/Validation/PressureIndependent.mos" "Simulate and plot"), Documentation(info=" -

                -This model validates - -AixLib.Fluid.Actuators.Dampers.PressureIndependent -by comparing it with -

                -
                  -
                • -an exponential damper model which opening is the one computed by the -pressure independent model, see damExp, -
                • -
                • -an exponential damper model which opening is computed by a PI controller -tracking the same discharge mass flow rate, see damExpPI. -
                • -
                -

                -The simulation consists in exposing these three models to -

                  -
                1. -a first increase in the pressure drop at the damper boundaries, from negative -to positive values, with a zero input control signal, -
                2. -
                3. -a consecutive increase of input control signal, from zero to one, with a -constant pressure drop at the damper boundaries, -
                4. -
                5. -an eventual decrease in the pressure drop, from positive to negative values, -with an input control signal equal to one. -
                6. -
                -

                -One can notice a small variation of the computed damper opening in the last -transient around flow reversal. -This is because the expression of the flow coefficient as a function of the -mass flow rate and pressure drop is ill-defined near zero flow rate and -the damper opening value results from the regularization process. -

                -", revisions=" -
                  -
                • -April 5, 2020 by Antoine Gautier:
                  -First implementation. -
                • -
                -"), - Diagram(coordinateSystem(extent={{-120,-120},{120,120}}))); +

                + This model validates + + AixLib.Fluid.Actuators.Dampers.PressureIndependent + by comparing it with +

                +
                  +
                • + an exponential damper model which opening is the one computed by the + pressure independent model, see damExp, +
                • +
                • + an exponential damper model which opening is computed by a PI controller + tracking the same discharge mass flow rate, see damExpPI. +
                • +
                +

                + The simulation consists in exposing these three models to +

                  +
                1. + a first increase in the pressure drop at the damper boundaries, from negative + to positive values, with a zero input control signal, +
                2. +
                3. + a consecutive increase of input control signal, from zero to one, with a + constant pressure drop at the damper boundaries, +
                4. +
                5. + an eventual decrease in the pressure drop, from positive to negative values, + with an input control signal equal to one. +
                6. +
                +

                + One can notice a small variation of the computed damper opening in the last + transient around flow reversal. + This is because the expression of the flow coefficient as a function of the + mass flow rate and pressure drop is ill-defined near zero flow rate and + the damper opening value results from the regularization process. +

                + ",revisions=" +
                  +
                • + April 5, 2020 by Antoine Gautier:
                  + First implementation. +
                • +
                + "), + Diagram(coordinateSystem(extent={{-120,-120},{120,120}})), + __Dymola_LockedEditing="Model from IBPSA"); end PressureIndependent; diff --git a/AixLib/Fluid/Actuators/Motors/Examples/IdealMotor.mo b/AixLib/Fluid/Actuators/Motors/Examples/IdealMotor.mo index 4848c79080..2f31584ee7 100644 --- a/AixLib/Fluid/Actuators/Motors/Examples/IdealMotor.mo +++ b/AixLib/Fluid/Actuators/Motors/Examples/IdealMotor.mo @@ -15,18 +15,19 @@ experiment(Tolerance=1e-6, StopTime=600), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Actuators/Motors/Examples/IdealMotor.mos" "Simulate and plot"), Documentation(info=" -

                -Test model for the ideal motor with hysteresis model. -The motor receives at its control input a time-varying signal. -It adjusts its position whenever the input signal differs -from the current position by more than the hysteresis. -

                -", revisions=" -
                  -
                • -September 8, 2008 by Michael Wetter:
                  -First implementation. -
                • -
                -")); +

                + Test model for the ideal motor with hysteresis model. + The motor receives at its control input a time-varying signal. + It adjusts its position whenever the input signal differs + from the current position by more than the hysteresis. +

                + ",revisions=" +
                  +
                • + September 8, 2008 by Michael Wetter:
                  + First implementation. +
                • +
                + "), + __Dymola_LockedEditing="Model from IBPSA"); end IdealMotor; diff --git a/AixLib/Fluid/Actuators/Motors/Examples/package.mo b/AixLib/Fluid/Actuators/Motors/Examples/package.mo index 9adcecac32..337a069107 100644 --- a/AixLib/Fluid/Actuators/Motors/Examples/package.mo +++ b/AixLib/Fluid/Actuators/Motors/Examples/package.mo @@ -1,6 +1,7 @@ within AixLib.Fluid.Actuators.Motors; package Examples "Collection of models that illustrate model use and test models" extends Modelica.Icons.ExamplesPackage; + annotation (preferredView="info", Documentation(info="

                This package contains examples for the use of models that can be found in diff --git a/AixLib/Fluid/Actuators/Motors/IdealMotor.mo b/AixLib/Fluid/Actuators/Motors/IdealMotor.mo index 9e7c988d7f..fd82cd0783 100644 --- a/AixLib/Fluid/Actuators/Motors/IdealMotor.mo +++ b/AixLib/Fluid/Actuators/Motors/IdealMotor.mo @@ -3,8 +3,8 @@ model IdealMotor "Ideal motor model with hysteresis" extends Modelica.Blocks.Interfaces.SISO; parameter Real delta(min=0, max=0.5) = 0.05 "Hysteresis"; - parameter Modelica.SIunits.Time tOpe(min=0) = 120 "Opening time"; - parameter Modelica.SIunits.Time tClo(min=0) = tOpe "Closing time"; + parameter Modelica.Units.SI.Time tOpe(min=0) = 120 "Opening time"; + parameter Modelica.Units.SI.Time tClo(min=0) = tOpe "Closing time"; parameter Real y_start(min=0, max=1) = 0.5 "Start position"; Modelica.Blocks.Logical.Hysteresis uppHys(final uLow=0, uHigh=delta, @@ -73,45 +73,45 @@ equation annotation ( defaultComponentName="mot", Documentation(info=" -

                -Ideal actuator motor model with hysteresis and finite actuation speed. -If the current actuator position y is below (or above) the -input signal u by an amount bigger than the hysteresis -delta, then the position y is increased (decreased) -until it reaches u. -The output y is bounded between 0 and 1. -

                -

                -Note: This model can introduce state events which increase the computation time. -For a more efficient implementation that approximates a motor, set in -the valve or damper model the parameter use_inputFilter=true -instead of using this motor model. -See also - -AixLib.Fluid.Actuators.UsersGuide. -

                -", revisions=" -
                  -
                • -March 24, 2017, by Michael Wetter:
                  -Renamed filteredInput to use_inputFilter.
                  -This is for -#665. -
                • -
                • -September 8, 2008 by Michael Wetter:
                  -Added to instance int the attribute -y(stateSelect=StateSelect.always). Without this attribute, -the model -AixLib.Fluid.Examples.TwoWayValves sets y=3 -which is consistent with this model. -
                • -
                • -September 8, 2008 by Michael Wetter:
                  -First implementation. -
                • -
                -"), Icon(graphics={ +

                + Ideal actuator motor model with hysteresis and finite actuation speed. + If the current actuator position y is below (or above) the + input signal u by an amount bigger than the hysteresis + delta, then the position y is increased (decreased) + until it reaches u. + The output y is bounded between 0 and 1. +

                +

                + Note: This model can introduce state events which increase the computation time. + For a more efficient implementation that approximates a motor, set in + the valve or damper model the parameter use_inputFilter=true + instead of using this motor model. + See also + + AixLib.Fluid.Actuators.UsersGuide. +

                + ",revisions=" +
                  +
                • + March 24, 2017, by Michael Wetter:
                  + Renamed filteredInput to use_inputFilter.
                  + This is for + #665. +
                • +
                • + September 8, 2008 by Michael Wetter:
                  + Added to instance int the attribute + y(stateSelect=StateSelect.always). Without this attribute, + the model + AixLib.Fluid.Examples.TwoWayValves sets y=3 + which is consistent with this model. +
                • +
                • + September 8, 2008 by Michael Wetter:
                  + First implementation. +
                • +
                + "),Icon(graphics={ Line(points={{-8,-86},{-8,68}}, color={192,192,192}), Polygon( points={{-7,85},{-15,63},{1,63},{-7,85}}, @@ -126,11 +126,11 @@ First implementation. fillPattern=FillPattern.Solid), Text( extent={{66,-26},{94,-48}}, - lineColor={160,160,164}, + textColor={160,160,164}, textString="u-y"), Text( extent={{-3,83},{50,65}}, - lineColor={160,160,164}, + textColor={160,160,164}, textString="v"), Line( points={{-80,-74},{-8,-74}}, @@ -158,11 +158,11 @@ First implementation. thickness=0.5), Text( extent={{19,-35},{44,-18}}, - lineColor={0,0,0}, + textColor={0,0,0}, textString="+delta"), Text( extent={{-63,-18},{-40,-2}}, - lineColor={0,0,0}, + textColor={0,0,0}, textString="-delta"), Line( points={{-8,22},{-8,-74}}, @@ -172,16 +172,17 @@ First implementation. thickness=0.5), Text( extent={{-37,12},{-10,32}}, - lineColor={0,0,0}, + textColor={0,0,0}, textString="vOpen"), Text( extent={{-4,-86},{30,-64}}, - lineColor={0,0,0}, + textColor={0,0,0}, textString="vClose"), Line( points={{-20,-13},{-30,-18},{-20,-23}}, thickness=0.5), Line( points={{6,-13},{16,-18},{6,-23}}, - thickness=0.5)})); + thickness=0.5)}), + __Dymola_LockedEditing="Model from IBPSA"); end IdealMotor; diff --git a/AixLib/Fluid/Actuators/Motors/package.mo b/AixLib/Fluid/Actuators/Motors/package.mo index 93ee5ea686..0fc6476b61 100644 --- a/AixLib/Fluid/Actuators/Motors/package.mo +++ b/AixLib/Fluid/Actuators/Motors/package.mo @@ -1,6 +1,7 @@ within AixLib.Fluid.Actuators; package Motors "Package with motor models for valves and dampers" extends Modelica.Icons.VariantsPackage; + annotation (preferredView="info", Documentation(info=" This package contains component models for motors that may be used with the actuator models in diff --git a/AixLib/Fluid/Actuators/Valves/Data/EqualPercentage.mo b/AixLib/Fluid/Actuators/Valves/Data/EqualPercentage.mo new file mode 100644 index 0000000000..b7ae47b0f1 --- /dev/null +++ b/AixLib/Fluid/Actuators/Valves/Data/EqualPercentage.mo @@ -0,0 +1,19 @@ +within AixLib.Fluid.Actuators.Valves.Data; +record EqualPercentage = + Generic ( + y = {0,0.01,0.1,0.3,0.5,0.7,0.9,1}, + phi = {0.0001,0.018,0.03,0.065,0.141,0.31,0.68,1}) "Equal percentage opening curve" + annotation ( +defaultComponentName="datValLin", +defaultComponentPrefixes="parameter", +Documentation(info="

                + Equal percentage valve opening characteristics with a normalized + leakage flow rate of 0.0001. +

                +", revisions=" +
                  +
                • June 09, 2020, by Alexander Kümpel:
                  + First implementation. +
                • +
                +")); diff --git a/AixLib/Fluid/Actuators/Valves/Data/Generic.mo b/AixLib/Fluid/Actuators/Valves/Data/Generic.mo index 66fc74ba26..f83ca5fc32 100644 --- a/AixLib/Fluid/Actuators/Valves/Data/Generic.mo +++ b/AixLib/Fluid/Actuators/Valves/Data/Generic.mo @@ -9,27 +9,28 @@ record Generic "Generic record for valve parameters" defaultComponentName="datVal", defaultComponentPrefixes="parameter", Documentation(info=" -

                -This is a generic record for the normalized volume flow -rates for different valve opening positions. -See the documentation of - -AixLib.Fluid.Actuators.Valves.Data -for how to use this record. -

                -", +

                + This is a generic record for the normalized volume flow + rates for different valve opening positions. + See the documentation of + + AixLib.Fluid.Actuators.Valves.Data + for how to use this record. +

                + ", revisions=" -
                  -
                • -December 12, 2014, by Michael Wetter:
                  -Added annotation defaultComponentPrefixes=\"parameter\" -so that the parameter keyword is added when dragging -the record into a model. -
                • -
                • -March 27, 2014, by Michael Wetter:
                  -First implementation. -
                • -
                -")); +
                  +
                • + December 12, 2014, by Michael Wetter:
                  + Added annotation defaultComponentPrefixes=\"parameter\" + so that the parameter keyword is added when dragging + the record into a model. +
                • +
                • + March 27, 2014, by Michael Wetter:
                  + First implementation. +
                • +
                + "), + __Dymola_LockedEditing="Model from IBPSA"); end Generic; diff --git a/AixLib/Fluid/Actuators/Valves/Data/GenericThreeWay.mo b/AixLib/Fluid/Actuators/Valves/Data/GenericThreeWay.mo new file mode 100644 index 0000000000..926daf1851 --- /dev/null +++ b/AixLib/Fluid/Actuators/Valves/Data/GenericThreeWay.mo @@ -0,0 +1,26 @@ +within AixLib.Fluid.Actuators.Valves.Data; +record GenericThreeWay "Generic record for 3 way valve parameters" + extends Modelica.Icons.Record; + parameter AixLib.Fluid.Actuators.Valves.Data.Generic a_ab + "Valve characteristics for gate A to AB"; + parameter AixLib.Fluid.Actuators.Valves.Data.Generic b_ab + "Valve characteristics for gate B to AB"; + annotation ( +defaultComponentName="datVal", +defaultComponentPrefixes="parameter", +Documentation(info="

                + This is a generic record for three way valve that includes two + records for the gate A-AB and B-AB. The records define the normalized + volume flow rates for different valve opening positions. See the + documentation of AixLib.Fluid.Actuators.Valves.Data + for how to use this record. +

                +", +revisions="
                  +
                • June 09, 2020, by Alexander Kümpel:
                  + First implementation. +
                • +
                +")); +end GenericThreeWay; diff --git a/AixLib/Fluid/Actuators/Valves/Data/Linear.mo b/AixLib/Fluid/Actuators/Valves/Data/Linear.mo index 99a705f4ad..797ea5acac 100644 --- a/AixLib/Fluid/Actuators/Valves/Data/Linear.mo +++ b/AixLib/Fluid/Actuators/Valves/Data/Linear.mo @@ -6,28 +6,29 @@ record Linear = Generic ( defaultComponentName="datValLin", defaultComponentPrefixes="parameter", Documentation(info=" -

                -Linear valve opening characteristics with -a normalized leakage flow rate of 0.0001. -

                -

                -Note: This record is only for demonstration, -as the implementation in - -AixLib.Fluid.Actuators.Valves.TwoWayLinear -is more efficient. -

                -", revisions=" -
                  -
                • -December 12, 2014, by Michael Wetter:
                  -Added annotation defaultComponentPrefixes=\"parameter\" -so that the parameter keyword is added when dragging -the record into a model. -
                • -
                • -March 27, 2014, by Michael Wetter:
                  -First implementation. -
                • -
                -")); +

                + Linear valve opening characteristics with + a normalized leakage flow rate of 0.0001. +

                +

                + Note: This record is only for demonstration, + as the implementation in + + AixLib.Fluid.Actuators.Valves.TwoWayLinear + is more efficient. +

                + ",revisions=" +
                  +
                • + December 12, 2014, by Michael Wetter:
                  + Added annotation defaultComponentPrefixes=\"parameter\" + so that the parameter keyword is added when dragging + the record into a model. +
                • +
                • + March 27, 2014, by Michael Wetter:
                  + First implementation. +
                • +
                + "), + __Dymola_LockedEditing="Model from IBPSA"); diff --git a/AixLib/Fluid/Actuators/Valves/Data/LinearEqualPercentage.mo b/AixLib/Fluid/Actuators/Valves/Data/LinearEqualPercentage.mo new file mode 100644 index 0000000000..538fba9f07 --- /dev/null +++ b/AixLib/Fluid/Actuators/Valves/Data/LinearEqualPercentage.mo @@ -0,0 +1,24 @@ +within AixLib.Fluid.Actuators.Valves.Data; +record LinearEqualPercentage = + GenericThreeWay(a_ab = EqualPercentage(), b_ab=Linear()) + "Linear-equal percentage valve characteristic for three way valve" + annotation ( +defaultComponentName="datValLin", +defaultComponentPrefixes="parameter", +Documentation(info="

                + Linear valve opening characteristics with a normalized leakage flow + rate of 0.0001. +

                +

                + Note: This record is only for demonstration, as the + implementation in AixLib.Fluid.Actuators.Valves.TwoWayLinear + is more efficient. +

                +", revisions=" +
                  +
                • June 09, 2020, by Alexander Kümpel:
                  + First implementation. +
                • +
                +")); diff --git a/AixLib/Fluid/Actuators/Valves/Data/LinearLinear.mo b/AixLib/Fluid/Actuators/Valves/Data/LinearLinear.mo new file mode 100644 index 0000000000..5ce586378f --- /dev/null +++ b/AixLib/Fluid/Actuators/Valves/Data/LinearLinear.mo @@ -0,0 +1,23 @@ +within AixLib.Fluid.Actuators.Valves.Data; +record LinearLinear = GenericThreeWay(a_ab = Linear(), b_ab=Linear()) + "Linear-linear valve characteristic for three way valve" + annotation ( +defaultComponentName="datValLin", +defaultComponentPrefixes="parameter", +Documentation(info="

                + Linear valve opening characteristics with a normalized leakage flow + rate of 0.0001. +

                +

                + Note: This record is only for demonstration, as the + implementation in AixLib.Fluid.Actuators.Valves.TwoWayLinear + is more efficient. +

                +", revisions=" +
                  +
                • June 09, 2020, by Alexander Kümpel:
                  + First implementation. +
                • +
                +")); diff --git a/AixLib/Fluid/Actuators/Valves/Data/package.order b/AixLib/Fluid/Actuators/Valves/Data/package.order index b1684775c1..6224f776b5 100644 --- a/AixLib/Fluid/Actuators/Valves/Data/package.order +++ b/AixLib/Fluid/Actuators/Valves/Data/package.order @@ -1,2 +1,6 @@ +EqualPercentage Generic +GenericThreeWay Linear +LinearEqualPercentage +LinearLinear diff --git a/AixLib/Fluid/Actuators/Valves/Examples/MixingValveBackwardDirection.mo b/AixLib/Fluid/Actuators/Valves/Examples/MixingValveBackwardDirection.mo index 3776bfd40d..fa770263af 100644 --- a/AixLib/Fluid/Actuators/Valves/Examples/MixingValveBackwardDirection.mo +++ b/AixLib/Fluid/Actuators/Valves/Examples/MixingValveBackwardDirection.mo @@ -21,7 +21,8 @@ model MixingValveBackwardDirection riseTime=100, redeclare package Medium = Medium) annotation (Placement(transformation(extent={{-6,-10},{-26,10}}))); AixLib.Fluid.Sensors.TemperatureTwoPort - temperatureSensorMixed(redeclare package Medium = + temperatureSensorMixed(redeclare + package Medium = Medium, m_flow_nominal=1) annotation (Placement(transformation(extent={{-76,-10},{-56,10}}))); AixLib.Fluid.Sensors.MassFlowRate massFlowSensorMixed(redeclare package Medium = diff --git a/AixLib/Fluid/Actuators/Valves/Examples/MixingValveForwardDirection.mo b/AixLib/Fluid/Actuators/Valves/Examples/MixingValveForwardDirection.mo index 3e5319642a..992c181c63 100644 --- a/AixLib/Fluid/Actuators/Valves/Examples/MixingValveForwardDirection.mo +++ b/AixLib/Fluid/Actuators/Valves/Examples/MixingValveForwardDirection.mo @@ -40,7 +40,8 @@ model MixingValveForwardDirection Modelica.Blocks.Sources.Step step(startTime=100, height=0.7) annotation (Placement(transformation(extent={{38,-54},{18,-34}}))); AixLib.Fluid.Sensors.TemperatureTwoPort - temperatureSensorMixed(redeclare package Medium = + temperatureSensorMixed(redeclare + package Medium = Medium, m_flow_nominal=1) annotation (Placement(transformation(extent={{-2,-10},{18,10}}))); AixLib.Fluid.Sensors.MassFlowRate massFlowSensorMixed(redeclare package Medium = diff --git a/AixLib/Fluid/Actuators/Valves/Examples/ThreeWayValves.mo b/AixLib/Fluid/Actuators/Valves/Examples/ThreeWayValves.mo index ee58760cf9..5729015cbe 100644 --- a/AixLib/Fluid/Actuators/Valves/Examples/ThreeWayValves.mo +++ b/AixLib/Fluid/Actuators/Valves/Examples/ThreeWayValves.mo @@ -107,28 +107,29 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Actuators/Valves/Examples/ThreeWayValves.mos" "Simulate and plot"), Documentation(info=" -

                -Test model for three way valves. Note that the -leakage flow rate has been set to a large value -and the rangeability to a small value -for better visualization of the valve characteristics. -To use common values, use the default values. -

                -", revisions=" -
                  -
                • -December 17, 2019, by Alexander Kümpel:
                  -Added AixLib.Fluid.Actuators.Valves.ThreeWayTable -to example. -
                • -
                • -February 28, 2013, by Michael Wetter:
                  -Added default value for dpValve_nominal. -
                • -
                • -June 16, 2008 by Michael Wetter:
                  -First implementation. -
                • -
                -")); +

                + Test model for three way valves. Note that the + leakage flow rate has been set to a large value + and the rangeability to a small value + for better visualization of the valve characteristics. + To use common values, use the default values. +

                + ",revisions=" +
                  +
                • + December 17, 2019, by Alexander Kümpel:
                  + Added AixLib.Fluid.Actuators.Valves.ThreeWayTable + to example. +
                • +
                • + February 28, 2013, by Michael Wetter:
                  + Added default value for dpValve_nominal. +
                • +
                • + June 16, 2008 by Michael Wetter:
                  + First implementation. +
                • +
                + "), + __Dymola_LockedEditing="Model from IBPSA"); end ThreeWayValves; diff --git a/AixLib/Fluid/Actuators/Valves/Examples/TwoWayValvePressureIndependent.mo b/AixLib/Fluid/Actuators/Valves/Examples/TwoWayValvePressureIndependent.mo index b0e3cc7f9e..80b4cb10ed 100644 --- a/AixLib/Fluid/Actuators/Valves/Examples/TwoWayValvePressureIndependent.mo +++ b/AixLib/Fluid/Actuators/Valves/Examples/TwoWayValvePressureIndependent.mo @@ -98,14 +98,15 @@ __Dymola_Commands(file= "modelica://AixLib/Resources/Scripts/Dymola/Fluid/Actuators/Valves/Examples/TwoWayValvePressureIndependent.mos" "Simulate and plot"), Documentation(info=" -

                Test model for pressure independent valves. Note that the leakage at full mass flow rate (l2) has been set to a large value for better visualization of the valve characteristics. To use common values, use the default values.

                -

                The parameter filterOpening is set to false, as this model is used to plot the flow at different opening signals without taking into account the travel time of the actuator.

                -", revisions=" -
                  -
                • -January 29, 2015 by Filip Jorissen:
                  -First implementation. -
                • -
                -")); +

                Test model for pressure independent valves. Note that the leakage at full mass flow rate (l2) has been set to a large value for better visualization of the valve characteristics. To use common values, use the default values.

                +

                The parameter filterOpening is set to false, as this model is used to plot the flow at different opening signals without taking into account the travel time of the actuator.

                + ",revisions=" +
                  +
                • + January 29, 2015 by Filip Jorissen:
                  + First implementation. +
                • +
                + "), + __Dymola_LockedEditing="Model from IBPSA"); end TwoWayValvePressureIndependent; diff --git a/AixLib/Fluid/Actuators/Valves/Examples/TwoWayValveTable.mo b/AixLib/Fluid/Actuators/Valves/Examples/TwoWayValveTable.mo index 623dc9fb92..e09f5984b7 100644 --- a/AixLib/Fluid/Actuators/Valves/Examples/TwoWayValveTable.mo +++ b/AixLib/Fluid/Actuators/Valves/Examples/TwoWayValveTable.mo @@ -91,49 +91,50 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Actuators/Valves/Examples/TwoWayValveTable.mos" "Simulate and plot"), Documentation(info=" -

                -Test model for a two way valve in which a table is used to specify the -opening characteristics. -The valve has the following opening characteristics, which is taken from a test case -of the IEA EBC Annex 60 project. -

                - - - - - - -
                y0 0.1667 0.3333 0.5 0.6667 1
                Kv0 0.19 0.35 0.45 0.5 0.65
                -

                -The Kv value is the volume flow rate in m3/h at a pressure difference -of 1 bar. -Hence, the Kv value of the fully open valve is Kv=0.65. -

                -

                -Plotting the variables kv.y versus y.y shows that the valve -reproduces the Kv values shown in the above table. -

                -

                -\"image\" -

                -

                -The parameter filterOpening is set to false, -as this model is used to plot the flow at different opening signals -without taking into account the travel time of the actuator. -

                -", revisions=" -
                  -
                • -August 12, 2014 by Michael Wetter:
                  -Added parameter keyword to datVal, -as this is needed to asssign datVal to a parameter -in the instance valTab. -This also avoids an error in OpenModelica. -
                • -
                • -April 2, 2014 by Michael Wetter:
                  -First implementation. -
                • -
                -")); +

                + Test model for a two way valve in which a table is used to specify the + opening characteristics. + The valve has the following opening characteristics, which is taken from a test case + of the IEA EBC Annex 60 project. +

                + + + + + + +
                y0 0.1667 0.3333 0.5 0.6667 1
                Kv0 0.19 0.35 0.45 0.5 0.65
                +

                + The Kv value is the volume flow rate in m3/h at a pressure difference + of 1 bar. + Hence, the Kv value of the fully open valve is Kv=0.65. +

                +

                + Plotting the variables kv.y versus y.y shows that the valve + reproduces the Kv values shown in the above table. +

                +

                + \"image\" +

                +

                + The parameter filterOpening is set to false, + as this model is used to plot the flow at different opening signals + without taking into account the travel time of the actuator. +

                + ",revisions=" +
                  +
                • + August 12, 2014 by Michael Wetter:
                  + Added parameter keyword to datVal, + as this is needed to asssign datVal to a parameter + in the instance valTab. + This also avoids an error in OpenModelica. +
                • +
                • + April 2, 2014 by Michael Wetter:
                  + First implementation. +
                • +
                + "), + __Dymola_LockedEditing="Model from IBPSA"); end TwoWayValveTable; diff --git a/AixLib/Fluid/Actuators/Valves/Examples/TwoWayValves.mo b/AixLib/Fluid/Actuators/Valves/Examples/TwoWayValves.mo index fd1cd3fddd..449186423f 100644 --- a/AixLib/Fluid/Actuators/Valves/Examples/TwoWayValves.mo +++ b/AixLib/Fluid/Actuators/Valves/Examples/TwoWayValves.mo @@ -124,39 +124,40 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Actuators/Valves/Examples/TwoWayValves.mos" "Simulate and plot"), Documentation(info=" -

                -Test model for two way valves. Note that the -leakage flow rate has been set to a large value -and the rangeability to a small value -for better visualization of the valve characteristics. -To use common values, use the default values. -

                -

                -The parameter filterOpening is set to false, -as this model is used to plot the flow at different opening signals -without taking into account the travel time of the actuator. -

                -", revisions=" -
                  -
                • -July 8, 2018, by Filip Jorissen:
                  -Added butterfly valve -for #975. -
                • -
                • -January 29, 2015, by Filip Jorissen:
                  -Added pressure-independent valve. -
                • -
                • -February 28, 2013, by Michael Wetter:
                  -Added default value for dpValve_nominal. -
                • -
                • -June 16, 2008 by Michael Wetter:
                  -First implementation. -
                • -
                -"), +

                + Test model for two way valves. Note that the + leakage flow rate has been set to a large value + and the rangeability to a small value + for better visualization of the valve characteristics. + To use common values, use the default values. +

                +

                + The parameter filterOpening is set to false, + as this model is used to plot the flow at different opening signals + without taking into account the travel time of the actuator. +

                + ",revisions=" +
                  +
                • + July 8, 2018, by Filip Jorissen:
                  + Added butterfly valve + for #975. +
                • +
                • + January 29, 2015, by Filip Jorissen:
                  + Added pressure-independent valve. +
                • +
                • + February 28, 2013, by Michael Wetter:
                  + Added default value for dpValve_nominal. +
                • +
                • + June 16, 2008 by Michael Wetter:
                  + First implementation. +
                • +
                + "), Diagram(coordinateSystem(extent={{-100,-140},{100,120}})), - Icon(coordinateSystem(extent={{-100,-140},{100,120}}))); + Icon(coordinateSystem(extent={{-100,-140},{100,120}})), + __Dymola_LockedEditing="Model from IBPSA"); end TwoWayValves; diff --git a/AixLib/Fluid/Actuators/Valves/Examples/TwoWayValvesMotor.mo b/AixLib/Fluid/Actuators/Valves/Examples/TwoWayValvesMotor.mo index cadc8e992c..48223810bc 100644 --- a/AixLib/Fluid/Actuators/Valves/Examples/TwoWayValvesMotor.mo +++ b/AixLib/Fluid/Actuators/Valves/Examples/TwoWayValvesMotor.mo @@ -106,34 +106,35 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Actuators/Valves/Examples/TwoWayValvesMotor.mos" "Simulate and plot"), Documentation(info=" -

                -Test model for two way valves. Note that the -leakage flow rate has been set to a large value -and the rangeability to a small value -for better visualization of the valve characteristics. -To use common values, use the default values. -

                -

                -All valves are connected to a model of a motor with -hysteresis. A more efficient implementation that approximates -a motor but lacks hysteresis would be to -set the valve parameter use_inputFilter=true instead -of using the motor model. -

                -", revisions=" -
                  -
                • -January 29, 2015, by Filip Jorissen:
                  -Added pressure-independent valve. -
                • -
                • -February 28, 2013, by Michael Wetter:
                  -Added default value for dpValve_nominal. -
                • -
                • -June 16, 2008 by Michael Wetter:
                  -First implementation. -
                • -
                -")); +

                + Test model for two way valves. Note that the + leakage flow rate has been set to a large value + and the rangeability to a small value + for better visualization of the valve characteristics. + To use common values, use the default values. +

                +

                + All valves are connected to a model of a motor with + hysteresis. A more efficient implementation that approximates + a motor but lacks hysteresis would be to + set the valve parameter use_inputFilter=true instead + of using the motor model. +

                + ",revisions=" +
                  +
                • + January 29, 2015, by Filip Jorissen:
                  + Added pressure-independent valve. +
                • +
                • + February 28, 2013, by Michael Wetter:
                  + Added default value for dpValve_nominal. +
                • +
                • + June 16, 2008 by Michael Wetter:
                  + First implementation. +
                • +
                + "), + __Dymola_LockedEditing="Model from IBPSA"); end TwoWayValvesMotor; diff --git a/AixLib/Fluid/Actuators/Valves/Examples/TwoWayValvesTable.mo b/AixLib/Fluid/Actuators/Valves/Examples/TwoWayValvesTable.mo index f54692b2ab..a019f0ba5a 100644 --- a/AixLib/Fluid/Actuators/Valves/Examples/TwoWayValvesTable.mo +++ b/AixLib/Fluid/Actuators/Valves/Examples/TwoWayValvesTable.mo @@ -63,31 +63,32 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Actuators/Valves/Examples/TwoWayValvesTable.mos" "Simulate and plot"), Documentation(info=" -

                -Test model for two way valves. -The instance valTab has a linear opening characteristics -based on a table, while valLin also has a linear opening -characteristics that is directly implemented in the model. -For practical applications in which valves with linear opening characteristics -are used, one should use valLin rather -than valTab as valLin is a more efficient -implementation. -

                -

                -This test demonstrates that both valves have, as expected, the same -mass flow rate for the whole range of the opening signal. -

                -

                -The parameter filterOpening is set to false, -as this model is used to plot the flow at different opening signals -without taking into account the travel time of the actuator. -

                -", revisions=" -
                  -
                • -March 26, 2014 by Michael Wetter:
                  -First implementation. -
                • -
                -")); +

                + Test model for two way valves. + The instance valTab has a linear opening characteristics + based on a table, while valLin also has a linear opening + characteristics that is directly implemented in the model. + For practical applications in which valves with linear opening characteristics + are used, one should use valLin rather + than valTab as valLin is a more efficient + implementation. +

                +

                + This test demonstrates that both valves have, as expected, the same + mass flow rate for the whole range of the opening signal. +

                +

                + The parameter filterOpening is set to false, + as this model is used to plot the flow at different opening signals + without taking into account the travel time of the actuator. +

                + ",revisions=" +
                  +
                • + March 26, 2014 by Michael Wetter:
                  + First implementation. +
                • +
                + "), + __Dymola_LockedEditing="Model from IBPSA"); end TwoWayValvesTable; diff --git a/AixLib/Fluid/Actuators/Valves/ExpansionValves/BaseClasses/PartialExpansionValve.mo b/AixLib/Fluid/Actuators/Valves/ExpansionValves/BaseClasses/PartialExpansionValve.mo index 858bfdb43b..746824c25c 100644 --- a/AixLib/Fluid/Actuators/Valves/ExpansionValves/BaseClasses/PartialExpansionValve.mo +++ b/AixLib/Fluid/Actuators/Valves/ExpansionValves/BaseClasses/PartialExpansionValve.mo @@ -1,44 +1,38 @@ -within AixLib.Fluid.Actuators.Valves.ExpansionValves.BaseClasses; +within AixLib.Fluid.Actuators.Valves.ExpansionValves.BaseClasses; partial model PartialExpansionValve "Base model for all expansion valve models" // Definition of parameters // - parameter Modelica.SIunits.Area AVal = 2.5e-6 + parameter Modelica.Units.SI.Area AVal=2.5e-6 "Cross-sectional area of the valve when it is fully opened" - annotation(Dialog(group="Geometry")); - parameter Modelica.SIunits.Diameter dInlPip = 7.5e-3 + annotation (Dialog(group="Geometry")); + parameter Modelica.Units.SI.Diameter dInlPip=7.5e-3 "Diameter of the pipe at valve's inlet" - annotation(Dialog(group="Geometry")); + annotation (Dialog(group="Geometry")); parameter Boolean useInpFil = true "= true, if transient behaviour of valve opening or closing is computed" annotation(Dialog(group="Transient behaviour")); - parameter Modelica.SIunits.Time risTim = 0.5 + parameter Modelica.Units.SI.Time risTim=0.5 "Time until valve opening reaches 99.6 % of its set value" - annotation(Dialog( - enable = useInpFil, - group="Transient behaviour")); + annotation (Dialog(enable=useInpFil, group="Transient behaviour")); parameter Utilities.Types.CalcProc calcProc=Utilities.Types.CalcProc.nominal "Chose predefined calculation method for flow coefficient" annotation (Dialog(tab="Flow Coefficient")); - parameter Modelica.SIunits.MassFlowRate mFlowNom = m_flow_nominal - "Mass flow at nominal conditions" - annotation(Dialog( - tab="Flow Coefficient", - group="Nominal calculation", - enable=if ((calcProc == Utilities.Types.CalcProc.nominal) or ( - calcProc == Utilities.Types.CalcProc.flowCoefficient)) then true - else false)); - parameter Modelica.SIunits.PressureDifference dpNom = 15e5 - "Pressure drop at nominal conditions" - annotation(Dialog( - tab="Flow Coefficient", - group="Nominal calculation", - enable=if ((calcProc == Utilities.Types.CalcProc.nominal) or ( - calcProc == Utilities.Types.CalcProc.flowCoefficient)) then true - else false)); + parameter Modelica.Units.SI.MassFlowRate mFlowNom=m_flow_nominal + "Mass flow at nominal conditions" annotation (Dialog( + tab="Flow Coefficient", + group="Nominal calculation", + enable=if ((calcProc == Utilities.Types.CalcProc.nominal) or (calcProc + == Utilities.Types.CalcProc.flowCoefficient)) then true else false)); + parameter Modelica.Units.SI.PressureDifference dpNom=15e5 + "Pressure drop at nominal conditions" annotation (Dialog( + tab="Flow Coefficient", + group="Nominal calculation", + enable=if ((calcProc == Utilities.Types.CalcProc.nominal) or (calcProc + == Utilities.Types.CalcProc.flowCoefficient)) then true else false)); // Definition of model describing flow coefficient // @@ -124,8 +118,8 @@ partial model PartialExpansionValve final filterType=Modelica.Blocks.Types.FilterType.LowPass, order=2, f_cut=5/(2*Modelica.Constants.pi*risTim), - x(each stateSelect=StateSelect.always)) if - useInpFil + x(each stateSelect=StateSelect.always)) + if useInpFil "Second order filter to approximate valve opening or closing time" annotation (Placement(transformation( extent={{-30,59},{-10,80}}))); @@ -136,16 +130,15 @@ partial model PartialExpansionValve protected - Modelica.SIunits.Area AThr - "Current cross-sectional area of the valve"; + Modelica.Units.SI.Area AThr "Current cross-sectional area of the valve"; Real opening(unit="1") "Current valve's opening"; - Modelica.SIunits.Density dInl = Medium.density(staInl) + Modelica.Units.SI.Density dInl=Medium.density(staInl) "Density at valves's inlet conditions"; - Modelica.SIunits.AbsolutePressure pInl = port_a.p + Modelica.Units.SI.AbsolutePressure pInl=port_a.p "Pressure of the fluid at inlet conditions"; - Modelica.SIunits.AbsolutePressure pOut = port_b.p + Modelica.Units.SI.AbsolutePressure pOut=port_b.p "Pressure of the fluid at outlet conditions"; @@ -297,112 +290,119 @@ equation In the following, these modeling approaches are characterised shortly:

                - - - - - - - - - - - - - - - - - - - - - +
                - Approach - - Formula - - Comment -
                - Linear - - ṁ = C Avalve dp - - Used for testing or initialisation -
                - Nominal - - ṁ = ṁnominal / dpnominal - Avalve dp - - Used mainly for initialisation -
                - Flow coefficient - - ṁ = C Avalve sqrt(2 ρinlet - dp) - - Chosen by default and follows from Bernoulli's law -
                +
                + \"Modelling approaches\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + + + + + + +
                + Approach + + Formula + + Comment +
                + Linear + + ṁ = C Avalve dp + + Used for testing or initialisation +
                + Nominal + + ṁ = ṁnominal / dpnominal + Avalve dp + + Used mainly for initialisation +
                + Flow coefficient + + ṁ = C Avalve sqrt(2 ρinlet + dp) + + Chosen by default and follows from Bernoulli's law +
                +

                + For the third approach (i.e. flow coefficient), different + calculation models are stored in + AixLib.Fluid.Actuators.Valves.ExpansionValves.Utilities.Choices.FlowCoefficient. + Therefore, the calculation procedure of the flow coefficient C is + introduced as replaceable model and must by defined by the User. +

                +

                + Transient behaviour +

                +

                + The base model has a parameter useInpFil that is + used to model the valve's transient behaviour while opening or + closing. Generally, this approach uses the same modeling attempt + as the stat-up and shut-down transients introtuced for flow + machines (see AixLib.Fluid.Movers.UsersGuide). + Therefore, just the parameter's affections are presented here: +

                +
                  +
                1. If useInpFil=false, then the input signal + opeSet.y is equal to the valve's opening degree. Thus, a + step change in the input signal causes a step change in the + opening degree. +
                2. +
                3. If useInpFil=true, which is the default, then + the opening degree is equal to the output of a filter. This + filter is implemented as a 2nd order differential equation. Thus, + a step change in the fan input signal will cause a gradual change + in the opening degree. The filter has a parameter + risTim, which by default is set to 1 second. + The rise time is the time required to reach 99.6% of the + full opening degree, or,if the ventil is closed, to reach a + opening degree of 0.4%. +
                4. +
                +

                + References +

                +

                + In the following, some general references are given for + information about modelling expansion valves. The modelling + approach presented here is alligned to the modelling approaches + presented in the literature: +

                +

                + Li, W. (2013): Simplified + modeling analysis ofmass flow characteristics in electronic + expansion valve. In: Applied Thermal Engineering + 53(1), S. 8–12 +

                +

                + X. Cao, Z.-Y. Li, L.-L. Shao and C.-L. Zhang (2016): Refrigerant + flow through electronic expansion valve: Experiment and neural + network modeling. In: Applied Thermal Engineering 92, + S. 210–218 +

                +
                -

                - For the third approach (i.e. flow coefficient), different calculation - models are stored in - AixLib.Fluid.Actuators.Valves.ExpansionValves.Utilities.Choices.FlowCoefficient. - Therefore, the calculation procedure of the flow coefficient C is - introduced as replaceable model and must by defined by the User. -

                -

                - Transient behaviour -

                -

                - The base model has a parameter useInpFil that is used to - model the valve's transient behaviour while opening or closing. - Generally, this approach uses the same modeling attempt as the - stat-up and shut-down transients introtuced for flow machines (see - AixLib.Fluid.Movers.UsersGuide). - Therefore, just the parameter's affections are presented here: -

                -
                  -
                1. If useInpFil=false, then the input signal - opeSet.y is equal to the valve's opening degree. Thus, a - step change in the input signal causes a step change in the opening - degree. -
                2. -
                3. If useInpFil=true, which is the default, then the - opening degree is equal to the output of a filter. This filter is - implemented as a 2nd order differential equation. Thus, a step change - in the fan input signal will cause a gradual change in the opening - degree. The filter has a parameter risTim, which by - default is set to 1 second. The rise time is the time required - to reach 99.6% of the full opening degree, or,if the ventil is - closed, to reach a opening degree of 0.4%. -
                4. -
                -

                - References -

                -

                - In the following, some general references are given for information - about modelling expansion valves. The modelling approach presented - here is alligned to the modelling approaches presented in the - literature: -

                -

                - Li, W. (2013): Simplified - modeling analysis ofmass flow characteristics in electronic expansion - valve. In: Applied Thermal Engineering 53(1), S. 8–12 -

                -

                - X. Cao, Z.-Y. Li, L.-L. Shao and C.-L. Zhang (2016): Refrigerant - flow through electronic expansion valve: Experiment and neural - network modeling. In: Applied Thermal Engineering 92, S. - 210–218 -

                ")); end PartialExpansionValve; diff --git a/AixLib/Fluid/Actuators/Valves/ExpansionValves/BaseClasses/PartialFlowCoefficient.mo b/AixLib/Fluid/Actuators/Valves/ExpansionValves/BaseClasses/PartialFlowCoefficient.mo index 769897d088..ffc891b233 100644 --- a/AixLib/Fluid/Actuators/Valves/ExpansionValves/BaseClasses/PartialFlowCoefficient.mo +++ b/AixLib/Fluid/Actuators/Valves/ExpansionValves/BaseClasses/PartialFlowCoefficient.mo @@ -11,18 +11,18 @@ partial model PartialFlowCoefficient input Real opening(unit="1") "Current valve's opening"; - input Modelica.SIunits.Area AVal + input Modelica.Units.SI.Area AVal "Cross-sectional area of the expansion valve"; - input Modelica.SIunits.Diameter dInlPip + input Modelica.Units.SI.Diameter dInlPip "Diameter of the pipe at valve's inlet"; input Medium.ThermodynamicState staInl "Thermodynamic state at valve's inlet conditions"; input Medium.ThermodynamicState staOut "Thermodynamic state at valve's outlet conditions"; - input Modelica.SIunits.AbsolutePressure pInl + input Modelica.Units.SI.AbsolutePressure pInl "Pressure at valves's inlet conditions"; - input Modelica.SIunits.AbsolutePressure pOut + input Modelica.Units.SI.AbsolutePressure pOut "Pressure at valves's outlet conditions"; // Definition of base variables @@ -61,107 +61,112 @@ partial model PartialFlowCoefficient AixLib.Fluid.Actuators.Valves.ExpansionValves.Utilities.FlowCoefficient. These inputs and outputs are summarised below:

                - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
                - Type - - Name - - Comment -
                - input - - AVal - - Cross-sectional area of the expansion valve -
                - input - - dInlPip - - Diameter of the pipe at valve's inlet -
                - input - - opening - - Valve's degree of opening -
                - input - - staInl - - Thermodynamic state at valve's inlet conditions -
                - input - - staOut - - Thermodynamic state at valve's out conditions -
                - input - - pInl - - Pressure at valve's inlet -
                - input - - pOut - - Pressure at valve's outlet -
                - output - - C - - Flow coefficient -
                +
                + \"Inputs and outputs\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                + Type + + Name + + Comment +
                + input + + AVal + + Cross-sectional area of the expansion valve +
                + input + + dInlPip + + Diameter of the pipe at valve's inlet +
                + input + + opening + + Valve's degree of opening +
                + input + + staInl + + Thermodynamic state at valve's inlet conditions +
                + input + + staOut + + Thermodynamic state at valve's out conditions +
                + input + + pInl + + Pressure at valve's inlet +
                + input + + pOut + + Pressure at valve's outlet +
                + output + + C + + Flow coefficient +
                +
                ")); end PartialFlowCoefficient; diff --git a/AixLib/Fluid/Actuators/Valves/ExpansionValves/BaseClasses/PartialModularExpansionVavles.mo b/AixLib/Fluid/Actuators/Valves/ExpansionValves/BaseClasses/PartialModularExpansionVavles.mo index 78eee1f1c0..76708b1052 100644 --- a/AixLib/Fluid/Actuators/Valves/ExpansionValves/BaseClasses/PartialModularExpansionVavles.mo +++ b/AixLib/Fluid/Actuators/Valves/ExpansionValves/BaseClasses/PartialModularExpansionVavles.mo @@ -35,38 +35,35 @@ partial model PartialModularExpansionVavles // Definition of parameters describing the expansion valves // - parameter Modelica.SIunits.Area AVal[nVal] = fill(2e-6, nVal) + parameter Modelica.Units.SI.Area AVal[nVal]=fill(2e-6, nVal) "Cross-sectional areas of the valves when they are fully opened" - annotation(Dialog(tab="Expansion valves",group="Geometry"), - HideResult=not show_parVal); - parameter Modelica.SIunits.Diameter dInlPip[nVal] = fill(7.5e-3, nVal) - "Diameters of the pipes at valves' inlets" - annotation(Dialog(tab="Expansion valves",group="Geometry"), - HideResult=not show_parVal); + annotation (Dialog(tab="Expansion valves", group="Geometry"), HideResult= + not show_parVal); + parameter Modelica.Units.SI.Diameter dInlPip[nVal]=fill(7.5e-3, nVal) + "Diameters of the pipes at valves' inlets" annotation (Dialog(tab= + "Expansion valves", group="Geometry"), HideResult=not show_parVal); parameter Boolean useInpFil[nVal] = fill(false, nVal) "= true, if transient behaviours of valves opening or closing are computed" annotation(Dialog(tab="Expansion valves",group="Transient behaviour"), HideResult=not show_parVal); - parameter Modelica.SIunits.Time risTim[nVal] = fill(0.5, nVal) - "Time until valves opening reach 99.6 % of the set values" - annotation(Dialog(tab="Expansion valves",group="Transient behaviour"), - HideResult=not show_parVal); + parameter Modelica.Units.SI.Time risTim[nVal]=fill(0.5, nVal) + "Time until valves opening reach 99.6 % of the set values" annotation ( + Dialog(tab="Expansion valves", group="Transient behaviour"), HideResult= + not show_parVal); parameter Utilities.Types.CalcProc calcProc[nVal]=fill(Utilities.Types.CalcProc.flowCoefficient, nVal) "Chose predefined calculation method for flow coefficients" annotation (Dialog(tab="Expansion valves", group="Flow Coefficient"), HideResult=not show_parVal); - parameter Modelica.SIunits.MassFlowRate mFlowNom[nVal]= - {m_flow_nominal/sum(AVal)*AVal[i] for i in 1:nVal} - "Mass flow at nominal conditions" - annotation(Dialog(tab="Expansion valves",group="Flow Coefficient"), - HideResult=not show_parVal); - parameter Modelica.SIunits.PressureDifference dpNom[nVal]= - fill(dp_nominal, nVal) - "Pressure drop at nominal conditions" - annotation(Dialog(tab="Expansion valves",group="Flow Coefficient"), - HideResult=not show_parVal); + parameter Modelica.Units.SI.MassFlowRate mFlowNom[nVal]={m_flow_nominal/sum( + AVal)*AVal[i] for i in 1:nVal} "Mass flow at nominal conditions" + annotation (Dialog(tab="Expansion valves", group="Flow Coefficient"), + HideResult=not show_parVal); + parameter Modelica.Units.SI.PressureDifference dpNom[nVal]=fill(dp_nominal, + nVal) "Pressure drop at nominal conditions" annotation (Dialog(tab= + "Expansion valves", group="Flow Coefficient"), HideResult=not + show_parVal); replaceable model FlowCoefficient = Utilities.FlowCoefficient.SpecifiedFlowCoefficients.ConstantFlowCoefficient @@ -139,18 +136,16 @@ partial model PartialModularExpansionVavles "Gain of controller" annotation(Dialog(tab="Controller", group="PID setup"), HideResult=not show_parCon); - parameter Modelica.SIunits.Time Ti[nVal] = fill(0.5,nVal) - "Time constant of integrator block" - annotation(Dialog(tab="Controller", group="PID setup"), - HideResult=not show_parCon); + parameter Modelica.Units.SI.Time Ti[nVal]=fill(0.5, nVal) + "Time constant of integrator block" annotation (Dialog(tab="Controller", + group="PID setup"), HideResult=not show_parCon); parameter Real Ni[nVal] = fill(0.9,nVal) "Ni*Ti is time constant of anti-windup compensation" annotation(Dialog(tab="Controller", group="PID setup"), HideResult=not show_parCon); - parameter Modelica.SIunits.Time Td[nVal] = fill(0.1,nVal) - "Time constant of derivative block" - annotation(Dialog(tab="Controller", group="PID setup"), - HideResult=not show_parCon); + parameter Modelica.Units.SI.Time Td[nVal]=fill(0.1, nVal) + "Time constant of derivative block" annotation (Dialog(tab="Controller", + group="PID setup"), HideResult=not show_parCon); parameter Real Nd[nVal] = fill(10,nVal) "The higher Nd, the more ideal the derivative block" annotation(Dialog(tab="Controller", group="PID setup"), @@ -173,11 +168,11 @@ partial model PartialModularExpansionVavles annotation(Dialog(tab="Controller", group="Weighting and limits"), HideResult=not show_parCon); - parameter Modelica.Blocks.Types.InitPID initType[nVal]= - fill(Modelica.Blocks.Types.InitPID.DoNotUse_InitialIntegratorState,nVal) + parameter Modelica.Blocks.Types.Init initType[nVal]=fill(Modelica.Blocks.Types.Init.InitialState, + nVal) "Init: (1: no init, 2: steady state, 3: initial state, 4: initial output)" - annotation(Dialog(tab="Advanced", group="Initialisation Controller"), - HideResult=not show_parCon); + annotation (Dialog(tab="Advanced", group="Initialisation Controller"), + HideResult=not show_parCon); parameter Real xi_start[nVal]=fill(0, nVal) "Initial or guess value value for integrator output (= integrator state)" annotation(Dialog(tab="Advanced", group="Initialisation Controller"), diff --git a/AixLib/Fluid/Actuators/Valves/ExpansionValves/Examples/BaseModelStaticHeatPumps.mo b/AixLib/Fluid/Actuators/Valves/ExpansionValves/Examples/BaseModelStaticHeatPumps.mo index b9b544848c..15aa10f69d 100644 --- a/AixLib/Fluid/Actuators/Valves/ExpansionValves/Examples/BaseModelStaticHeatPumps.mo +++ b/AixLib/Fluid/Actuators/Valves/ExpansionValves/Examples/BaseModelStaticHeatPumps.mo @@ -22,29 +22,28 @@ model BaseModelStaticHeatPumps // Definition of parameters describing boundary conditions // - parameter Modelica.SIunits.TemperatureDifference dTPinEva=2 + parameter Modelica.Units.SI.TemperatureDifference dTPinEva=2 "Pinch temperature at evaporator's outlet" annotation (Dialog(tab="General", group="Evaporator")); - parameter Modelica.SIunits.TemperatureDifference dTSupHea=1 + parameter Modelica.Units.SI.TemperatureDifference dTSupHea=1 "Superheating of working fluid" annotation (Dialog(tab="General", group="Evaporator")); - parameter Modelica.SIunits.TemperatureDifference dTPinCond=2 + parameter Modelica.Units.SI.TemperatureDifference dTPinCond=2 "Pinch temperature at condenser's outlet" annotation (Dialog(tab="General", group="Condenser")); - parameter Modelica.SIunits.TemperatureDifference dTSubCool=4 + parameter Modelica.Units.SI.TemperatureDifference dTSubCool=4 "Supercooling of working fluid" annotation (Dialog(tab="General", group="Condenser")); - parameter Modelica.SIunits.Density dSec=1000 + parameter Modelica.Units.SI.Density dSec=1000 "Constant density of secondary fluid" annotation (Dialog(tab="General", group="Condenser")); - parameter Modelica.SIunits.SpecificHeatCapacity cpSec=4.1813e3 + parameter Modelica.Units.SI.SpecificHeatCapacity cpSec=4.1813e3 "Constant specific heat capacity of secondary fluid" annotation (Dialog(tab="General", group="Condenser")); - parameter Modelica.SIunits.VolumeFlowRate - V_flowSec=(0.776 + 0.781 + 0.44)/3/3600 - "Constant volume flow of secondary fluid" + parameter Modelica.Units.SI.VolumeFlowRate V_flowSec=(0.776 + 0.781 + 0.44)/3 + /3600 "Constant volume flow of secondary fluid" annotation (Dialog(tab="General", group="Condenser")); // Definition of variables describing boundary conditions @@ -94,12 +93,10 @@ model BaseModelStaticHeatPumps Modelica.Blocks.Continuous.LimPID conPID( k=0.001, - limitsAtInit=true, Ti=10, controllerType=Modelica.Blocks.Types.SimpleController.P, yMax=1, - yMin=0.05) - "PID controller to set valves' openings" + yMin=0.05) "PID controller to set valves' openings" annotation (Placement(transformation(extent={{-60,20},{-40,40}}))); Modelica.Blocks.Sources.RealExpression inpCurSpeEnt(y=eva.hInl) "Expressions describing current specific enthalpy" @@ -160,12 +157,12 @@ protected // parameter Integer nPorts = 1; - parameter Modelica.SIunits.TemperatureDifference dTPin = 5 + parameter Modelica.Units.SI.TemperatureDifference dTPin=5 "Pinch temperature at evaporator's outlet" - annotation(Dialog(tab="General",group="Evaporator")); - parameter Modelica.SIunits.TemperatureDifference dTSupHea = 1 + annotation (Dialog(tab="General", group="Evaporator")); + parameter Modelica.Units.SI.TemperatureDifference dTSupHea=1 "Superheating of working fluid" - annotation(Dialog(tab="General",group="Evaporator")); + annotation (Dialog(tab="General", group="Evaporator")); // Definition of parameters describing assumptions // @@ -247,25 +244,20 @@ protected public - Modelica.SIunits.AbsolutePressure pSat + Modelica.Units.SI.AbsolutePressure pSat "Absolute pressure at evaporator's outlet"; - Modelica.SIunits.Temperature TSat - "Saturation temperature"; + Modelica.Units.SI.Temperature TSat "Saturation temperature"; - Modelica.SIunits.SpecificEnthalpy hInl + Modelica.Units.SI.SpecificEnthalpy hInl "Specific enthalpy at evaporator's inlet"; - Modelica.SIunits.SpecificEnthalpy hOut + Modelica.Units.SI.SpecificEnthalpy hOut "Specific enthalpy at evaporator's outlet"; - Modelica.SIunits.Temperature TOut - "Temperature at evaporator's outlet"; + Modelica.Units.SI.Temperature TOut "Temperature at evaporator's outlet"; - Modelica.SIunits.Temperature TAmb - "Temperature of ambient"; + Modelica.Units.SI.Temperature TAmb "Temperature of ambient"; - Modelica.SIunits.MassFlowRate m_flow - "Mass flow rate"; - Modelica.SIunits.HeatFlowRate Q_flow - "Cooling capacity"; + Modelica.Units.SI.MassFlowRate m_flow "Mass flow rate"; + Modelica.Units.SI.HeatFlowRate Q_flow "Cooling capacity"; equation @@ -390,22 +382,22 @@ protected // Definition of parameters describing condenser // - parameter Modelica.SIunits.TemperatureDifference dTPin = 5 + parameter Modelica.Units.SI.TemperatureDifference dTPin=5 "Pinch temperature at condenser's outlet" - annotation(Dialog(tab="General",group="Condenser")); - parameter Modelica.SIunits.TemperatureDifference dTSubCool = 8 + annotation (Dialog(tab="General", group="Condenser")); + parameter Modelica.Units.SI.TemperatureDifference dTSubCool=8 "Supercooling of working fluid" - annotation(Dialog(tab="General",group="Condenser")); + annotation (Dialog(tab="General", group="Condenser")); - parameter Modelica.SIunits.Density dSec = 1000 + parameter Modelica.Units.SI.Density dSec=1000 "Constant density of secondary fluid" - annotation(Dialog(tab="General",group="Condenser")); - parameter Modelica.SIunits.SpecificHeatCapacity cpSec = 4.1813e3 + annotation (Dialog(tab="General", group="Condenser")); + parameter Modelica.Units.SI.SpecificHeatCapacity cpSec=4.1813e3 "Constant specific heat capacity of secondary fluid" - annotation(Dialog(tab="General",group="Condenser")); - parameter Modelica.SIunits.VolumeFlowRate V_flowSec = (0.776+0.781+0.44)/3/3600 - "Constant volume flow of secondary fluid" - annotation(Dialog(tab="General",group="Condenser")); + annotation (Dialog(tab="General", group="Condenser")); + parameter Modelica.Units.SI.VolumeFlowRate V_flowSec=(0.776 + 0.781 + 0.44) + /3/3600 "Constant volume flow of secondary fluid" + annotation (Dialog(tab="General", group="Condenser")); // Definition of parameters describing assumptions // @@ -473,26 +465,21 @@ protected annotation (Placement(transformation(extent={{-90,-8},{-70,12}}))); public - Modelica.SIunits.AbsolutePressure pSat + Modelica.Units.SI.AbsolutePressure pSat "Absolute pressure at condenser's outlet"; - Modelica.SIunits.Temperature TSat - "Saturation temperature"; + Modelica.Units.SI.Temperature TSat "Saturation temperature"; - Modelica.SIunits.Temperature TOut - "Temperature at condenser's outlet"; - Modelica.SIunits.SpecificEnthalpy hOut + Modelica.Units.SI.Temperature TOut "Temperature at condenser's outlet"; + Modelica.Units.SI.SpecificEnthalpy hOut "Specific enthalpy at condenser's outlet"; - Modelica.SIunits.MassFlowRate m_flow - "Mass flow rate"; - Modelica.SIunits.HeatFlowRate Q_flow - "Heat capacity"; + Modelica.Units.SI.MassFlowRate m_flow "Mass flow rate"; + Modelica.Units.SI.HeatFlowRate Q_flow "Heat capacity"; - Modelica.SIunits.MassFlowRate m_flowSec + Modelica.Units.SI.MassFlowRate m_flowSec "Mass flow rate of secondary fluid"; - Modelica.SIunits.Temperature TFlo - "Temperature flow at heat capacity"; - Modelica.SIunits.Temperature TRetFlo + Modelica.Units.SI.Temperature TFlo "Temperature flow at heat capacity"; + Modelica.Units.SI.Temperature TRetFlo "Temperature return flow at heat capacity"; equation diff --git a/AixLib/Fluid/Actuators/Valves/ExpansionValves/Examples/ExpansionValveMassFlowRate.mo b/AixLib/Fluid/Actuators/Valves/ExpansionValves/Examples/ExpansionValveMassFlowRate.mo index ded28797b7..76cc87f46d 100644 --- a/AixLib/Fluid/Actuators/Valves/ExpansionValves/Examples/ExpansionValveMassFlowRate.mo +++ b/AixLib/Fluid/Actuators/Valves/ExpansionValves/Examples/ExpansionValveMassFlowRate.mo @@ -10,15 +10,15 @@ model ExpansionValveMassFlowRate Modelica.Media.R134a.R134a_ph "Actual medium of the compressor"; - parameter Modelica.SIunits.Temperature TInl = 343.15 + parameter Modelica.Units.SI.Temperature TInl=343.15 "Actual temperature at inlet conditions"; - parameter Modelica.SIunits.AbsolutePressure pOut= - Medium.pressure(Medium.setDewState(Medium.setSat_T(TOut))) + parameter Modelica.Units.SI.AbsolutePressure pOut=Medium.pressure( + Medium.setDewState(Medium.setSat_T(TOut))) "Actual set point of the compressor's outlet pressure"; - parameter Modelica.SIunits.Temperature TOut = 278.15 + parameter Modelica.Units.SI.Temperature TOut=278.15 "Actual temperature at outlet conditions"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal = 0.1 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=0.1 "Nominal mass flow rate"; // Define components @@ -31,10 +31,9 @@ model ExpansionValveMassFlowRate "Source of constant mass flow and temperature" annotation (Placement(transformation(extent={{-80,-10},{-60,10}}))); Modelica.Blocks.Sources.Sine valOpe( - freqHz=1, + f=1, amplitude=0.3, - offset=0.7) - "Input signal to prediscribe expansion valve's opening" + offset=0.7) "Input signal to prediscribe expansion valve's opening" annotation (Placement(transformation(extent={{-80,40},{-60,60}}))); SimpleExpansionValves.IsenthalpicExpansionValve linearValve( redeclare package Medium = Medium, diff --git a/AixLib/Fluid/Actuators/Valves/ExpansionValves/Examples/ExpansionValvePressureDifference.mo b/AixLib/Fluid/Actuators/Valves/ExpansionValves/Examples/ExpansionValvePressureDifference.mo index a531963e58..00ef673735 100644 --- a/AixLib/Fluid/Actuators/Valves/ExpansionValves/Examples/ExpansionValvePressureDifference.mo +++ b/AixLib/Fluid/Actuators/Valves/ExpansionValves/Examples/ExpansionValvePressureDifference.mo @@ -10,18 +10,18 @@ model ExpansionValvePressureDifference Modelica.Media.R134a.R134a_ph "Actual medium of the compressor"; - parameter Modelica.SIunits.AbsolutePressure pInl= - Medium.pressure(Medium.setBubbleState(Medium.setSat_T(TInl+5))) + parameter Modelica.Units.SI.AbsolutePressure pInl=Medium.pressure( + Medium.setBubbleState(Medium.setSat_T(TInl + 5))) "Actual pressure at inlet conditions"; - parameter Modelica.SIunits.Temperature TInl = 348.15 + parameter Modelica.Units.SI.Temperature TInl=348.15 "Actual temperature at inlet conditions"; - parameter Modelica.SIunits.AbsolutePressure pOut= - Medium.pressure(Medium.setDewState(Medium.setSat_T(TOut))) + parameter Modelica.Units.SI.AbsolutePressure pOut=Medium.pressure( + Medium.setDewState(Medium.setSat_T(TOut))) "Actual set point of the compressor's outlet pressure"; - parameter Modelica.SIunits.Temperature TOut = 278.15 + parameter Modelica.Units.SI.Temperature TOut=278.15 "Actual temperature at outlet conditions"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal = 0.1 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=0.1 "Nominal mass flow rate"; // Define components @@ -35,9 +35,8 @@ model ExpansionValvePressureDifference annotation (Placement(transformation(extent={{-80,-10},{-60,10}}))); Modelica.Blocks.Sources.Sine valOpe( amplitude=0.45, - freqHz=1, - offset=0.5) - "Input signal to prediscribe expansion valve's opening" + f=1, + offset=0.5) "Input signal to prediscribe expansion valve's opening" annotation (Placement(transformation(extent={{-80,40},{-60,60}}))); SimpleExpansionValves.IsenthalpicExpansionValve linearValve( redeclare package Medium = Medium, diff --git a/AixLib/Fluid/Actuators/Valves/ExpansionValves/Examples/ModularExpansionValvesMassFlowRate.mo b/AixLib/Fluid/Actuators/Valves/ExpansionValves/Examples/ModularExpansionValvesMassFlowRate.mo index 4e9c774791..75557301cb 100644 --- a/AixLib/Fluid/Actuators/Valves/ExpansionValves/Examples/ModularExpansionValvesMassFlowRate.mo +++ b/AixLib/Fluid/Actuators/Valves/ExpansionValves/Examples/ModularExpansionValvesMassFlowRate.mo @@ -12,15 +12,15 @@ model ModularExpansionValvesMassFlowRate parameter Integer nVal = 3 "Number of valves - each valve will be connected to an individual port_b"; - parameter Modelica.SIunits.AbsolutePressure pInl= - Medium.pressure(Medium.setBubbleState(Medium.setSat_T(TInl+5))) + parameter Modelica.Units.SI.AbsolutePressure pInl=Medium.pressure( + Medium.setBubbleState(Medium.setSat_T(TInl + 5))) "Current pressure at inlet conditions"; - parameter Modelica.SIunits.Temperature TInl = 348.15 + parameter Modelica.Units.SI.Temperature TInl=348.15 "Current temperature at inlet conditions"; - parameter Modelica.SIunits.AbsolutePressure pOut= - Medium.pressure(Medium.setDewState(Medium.setSat_T(TOut))) + parameter Modelica.Units.SI.AbsolutePressure pOut=Medium.pressure( + Medium.setDewState(Medium.setSat_T(TOut))) "Current set point of the compressor's outlet pressure"; - parameter Modelica.SIunits.Temperature TOut = 278.15 + parameter Modelica.Units.SI.Temperature TOut=278.15 "Current temperature at outlet conditions"; // Definition of models @@ -82,10 +82,9 @@ model ModularExpansionValvesMassFlowRate "Replicating the valves' opening signal" annotation (Placement(transformation(extent={{40,40},{20,60}}))); Modelica.Blocks.Sources.Sine valOpe( - freqHz=1, + f=1, amplitude=0.45, - offset=0.5) - "Input signal to prediscribe expansion valve's opening" + offset=0.5) "Input signal to prediscribe expansion valve's opening" annotation (Placement(transformation(extent={{80,16},{60,36}}))); Modelica.Blocks.Routing.Replicator repInt(nout=nVal) "Replicating the internal set signal" diff --git a/AixLib/Fluid/Actuators/Valves/ExpansionValves/Examples/ModularExpansionValvesPressureDifference.mo b/AixLib/Fluid/Actuators/Valves/ExpansionValves/Examples/ModularExpansionValvesPressureDifference.mo index 70bc1bb4a4..ca8d9f9827 100644 --- a/AixLib/Fluid/Actuators/Valves/ExpansionValves/Examples/ModularExpansionValvesPressureDifference.mo +++ b/AixLib/Fluid/Actuators/Valves/ExpansionValves/Examples/ModularExpansionValvesPressureDifference.mo @@ -12,15 +12,15 @@ model ModularExpansionValvesPressureDifference parameter Integer nVal = 3 "Number of valves - each valve will be connected to an individual port_b"; - parameter Modelica.SIunits.AbsolutePressure pInl= - Medium.pressure(Medium.setBubbleState(Medium.setSat_T(TInl+5))) + parameter Modelica.Units.SI.AbsolutePressure pInl=Medium.pressure( + Medium.setBubbleState(Medium.setSat_T(TInl + 5))) "Current pressure at inlet conditions"; - parameter Modelica.SIunits.Temperature TInl = 348.15 + parameter Modelica.Units.SI.Temperature TInl=348.15 "Current temperature at inlet conditions"; - parameter Modelica.SIunits.AbsolutePressure pOut= - Medium.pressure(Medium.setDewState(Medium.setSat_T(TOut))) + parameter Modelica.Units.SI.AbsolutePressure pOut=Medium.pressure( + Medium.setDewState(Medium.setSat_T(TOut))) "Current set point of the compressor's outlet pressure"; - parameter Modelica.SIunits.Temperature TOut = 278.15 + parameter Modelica.Units.SI.Temperature TOut=278.15 "Current temperature at outlet conditions"; // Definition of models @@ -79,10 +79,9 @@ Sources.MassFlowSource_T source( "Replicating the valves' opening signal" annotation (Placement(transformation(extent={{40,40},{20,60}}))); Modelica.Blocks.Sources.Sine valOpe( - freqHz=1, + f=1, amplitude=0.45, - offset=0.5) - "Input signal to prediscribe expansion valve's opening" + offset=0.5) "Input signal to prediscribe expansion valve's opening" annotation (Placement(transformation(extent={{80,16},{60,36}}))); Modelica.Blocks.Routing.Replicator repInt(nout=nVal) "Replicating the internal set signal" diff --git a/AixLib/Fluid/Actuators/Valves/ExpansionValves/Examples/StaticHeatPumpBoundaries.mo b/AixLib/Fluid/Actuators/Valves/ExpansionValves/Examples/StaticHeatPumpBoundaries.mo index 8b701ecff1..6dd3f9f2be 100644 --- a/AixLib/Fluid/Actuators/Valves/ExpansionValves/Examples/StaticHeatPumpBoundaries.mo +++ b/AixLib/Fluid/Actuators/Valves/ExpansionValves/Examples/StaticHeatPumpBoundaries.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Actuators.Valves.ExpansionValves.Examples; +within AixLib.Fluid.Actuators.Valves.ExpansionValves.Examples; model StaticHeatPumpBoundaries "Base model to test expansion valve using static heat pump boundaries" extends Modelica.Icons.Example; @@ -22,29 +22,28 @@ model StaticHeatPumpBoundaries // Definition of parameters describing boundary conditions // - parameter Modelica.SIunits.TemperatureDifference dTPinEva=2 + parameter Modelica.Units.SI.TemperatureDifference dTPinEva=2 "Pinch temperature at evaporator's outlet" annotation (Dialog(tab="General", group="Evaporator")); - parameter Modelica.SIunits.TemperatureDifference dTSupHea=1 + parameter Modelica.Units.SI.TemperatureDifference dTSupHea=1 "Superheating of working fluid" annotation (Dialog(tab="General", group="Evaporator")); - parameter Modelica.SIunits.TemperatureDifference dTPinCond=2 + parameter Modelica.Units.SI.TemperatureDifference dTPinCond=2 "Pinch temperature at condenser's outlet" annotation (Dialog(tab="General", group="Condenser")); - parameter Modelica.SIunits.TemperatureDifference dTSubCool=4 + parameter Modelica.Units.SI.TemperatureDifference dTSubCool=4 "Supercooling of working fluid" annotation (Dialog(tab="General", group="Condenser")); - parameter Modelica.SIunits.Density dSec=1000 + parameter Modelica.Units.SI.Density dSec=1000 "Constant density of secondary fluid" annotation (Dialog(tab="General", group="Condenser")); - parameter Modelica.SIunits.SpecificHeatCapacity cpSec=4.1813e3 + parameter Modelica.Units.SI.SpecificHeatCapacity cpSec=4.1813e3 "Constant specific heat capacity of secondary fluid" annotation (Dialog(tab="General", group="Condenser")); - parameter Modelica.SIunits.VolumeFlowRate - V_flowSec=(0.776 + 0.781 + 0.44)/3/3600 - "Constant volume flow of secondary fluid" + parameter Modelica.Units.SI.VolumeFlowRate V_flowSec=(0.776 + 0.781 + 0.44)/3 + /3600 "Constant volume flow of secondary fluid" annotation (Dialog(tab="General", group="Condenser")); // Definition of variables describing boundary conditions @@ -94,12 +93,10 @@ model StaticHeatPumpBoundaries Modelica.Blocks.Continuous.LimPID conPID( k=0.001, - limitsAtInit=true, Ti=10, controllerType=Modelica.Blocks.Types.SimpleController.P, yMax=1, - yMin=0.05) - "PID controller to set valves' openings" + yMin=0.05) "PID controller to set valves' openings" annotation (Placement(transformation(extent={{-60,20},{-40,40}}))); Modelica.Blocks.Sources.RealExpression inpCurSpeEnt(y=eva.hInl) "Expressions describing current specific enthalpy" @@ -160,12 +157,12 @@ protected // parameter Integer nPorts = 1; - parameter Modelica.SIunits.TemperatureDifference dTPin = 5 + parameter Modelica.Units.SI.TemperatureDifference dTPin=5 "Pinch temperature at evaporator's outlet" - annotation(Dialog(tab="General",group="Evaporator")); - parameter Modelica.SIunits.TemperatureDifference dTSupHea = 1 + annotation (Dialog(tab="General", group="Evaporator")); + parameter Modelica.Units.SI.TemperatureDifference dTSupHea=1 "Superheating of working fluid" - annotation(Dialog(tab="General",group="Evaporator")); + annotation (Dialog(tab="General", group="Evaporator")); // Definition of parameters describing assumptions // @@ -246,25 +243,20 @@ protected annotation (Placement(transformation(extent={{-96,-8},{-76,12}}))); public - Modelica.SIunits.AbsolutePressure pSat + Modelica.Units.SI.AbsolutePressure pSat "Absolute pressure at evaporator's outlet"; - Modelica.SIunits.Temperature TSat - "Saturation temperature"; + Modelica.Units.SI.Temperature TSat "Saturation temperature"; - Modelica.SIunits.SpecificEnthalpy hInl + Modelica.Units.SI.SpecificEnthalpy hInl "Specific enthalpy at evaporator's inlet"; - Modelica.SIunits.SpecificEnthalpy hOut + Modelica.Units.SI.SpecificEnthalpy hOut "Specific enthalpy at evaporator's outlet"; - Modelica.SIunits.Temperature TOut - "Temperature at evaporator's outlet"; + Modelica.Units.SI.Temperature TOut "Temperature at evaporator's outlet"; - Modelica.SIunits.Temperature TAmb - "Temperature of ambient"; + Modelica.Units.SI.Temperature TAmb "Temperature of ambient"; - Modelica.SIunits.MassFlowRate m_flow - "Mass flow rate"; - Modelica.SIunits.HeatFlowRate Q_flow - "Cooling capacity"; + Modelica.Units.SI.MassFlowRate m_flow "Mass flow rate"; + Modelica.Units.SI.HeatFlowRate Q_flow "Cooling capacity"; equation // Connection of ports @@ -388,22 +380,22 @@ protected // Definition of parameters describing condenser // - parameter Modelica.SIunits.TemperatureDifference dTPin = 5 + parameter Modelica.Units.SI.TemperatureDifference dTPin=5 "Pinch temperature at condenser's outlet" - annotation(Dialog(tab="General",group="Condenser")); - parameter Modelica.SIunits.TemperatureDifference dTSubCool = 8 + annotation (Dialog(tab="General", group="Condenser")); + parameter Modelica.Units.SI.TemperatureDifference dTSubCool=8 "Supercooling of working fluid" - annotation(Dialog(tab="General",group="Condenser")); + annotation (Dialog(tab="General", group="Condenser")); - parameter Modelica.SIunits.Density dSec = 1000 + parameter Modelica.Units.SI.Density dSec=1000 "Constant density of secondary fluid" - annotation(Dialog(tab="General",group="Condenser")); - parameter Modelica.SIunits.SpecificHeatCapacity cpSec = 4.1813e3 + annotation (Dialog(tab="General", group="Condenser")); + parameter Modelica.Units.SI.SpecificHeatCapacity cpSec=4.1813e3 "Constant specific heat capacity of secondary fluid" - annotation(Dialog(tab="General",group="Condenser")); - parameter Modelica.SIunits.VolumeFlowRate V_flowSec = (0.776+0.781+0.44)/3/3600 - "Constant volume flow of secondary fluid" - annotation(Dialog(tab="General",group="Condenser")); + annotation (Dialog(tab="General", group="Condenser")); + parameter Modelica.Units.SI.VolumeFlowRate V_flowSec=(0.776 + 0.781 + 0.44) + /3/3600 "Constant volume flow of secondary fluid" + annotation (Dialog(tab="General", group="Condenser")); // Definition of parameters describing assumptions // @@ -471,26 +463,21 @@ protected annotation (Placement(transformation(extent={{-90,-8},{-70,12}}))); public - Modelica.SIunits.AbsolutePressure pSat + Modelica.Units.SI.AbsolutePressure pSat "Absolute pressure at condenser's outlet"; - Modelica.SIunits.Temperature TSat - "Saturation temperature"; + Modelica.Units.SI.Temperature TSat "Saturation temperature"; - Modelica.SIunits.Temperature TOut - "Temperature at condenser's outlet"; - Modelica.SIunits.SpecificEnthalpy hOut + Modelica.Units.SI.Temperature TOut "Temperature at condenser's outlet"; + Modelica.Units.SI.SpecificEnthalpy hOut "Specific enthalpy at condenser's outlet"; - Modelica.SIunits.MassFlowRate m_flow - "Mass flow rate"; - Modelica.SIunits.HeatFlowRate Q_flow - "Heat capacity"; + Modelica.Units.SI.MassFlowRate m_flow "Mass flow rate"; + Modelica.Units.SI.HeatFlowRate Q_flow "Heat capacity"; - Modelica.SIunits.MassFlowRate m_flowSec + Modelica.Units.SI.MassFlowRate m_flowSec "Mass flow rate of secondary fluid"; - Modelica.SIunits.Temperature TFlo - "Temperature flow at heat capacity"; - Modelica.SIunits.Temperature TRetFlo + Modelica.Units.SI.Temperature TFlo "Temperature flow at heat capacity"; + Modelica.Units.SI.Temperature TRetFlo "Temperature return flow at heat capacity"; equation diff --git a/AixLib/Fluid/Actuators/Valves/ExpansionValves/Examples/package.order b/AixLib/Fluid/Actuators/Valves/ExpansionValves/Examples/package.order index 70b986bf2c..9b6d894e1e 100644 --- a/AixLib/Fluid/Actuators/Valves/ExpansionValves/Examples/package.order +++ b/AixLib/Fluid/Actuators/Valves/ExpansionValves/Examples/package.order @@ -1,6 +1,6 @@ +BaseModelStaticHeatPumps ExpansionValveMassFlowRate ExpansionValvePressureDifference ModularExpansionValvesMassFlowRate ModularExpansionValvesPressureDifference StaticHeatPumpBoundaries -BaseModelStaticHeatPumps diff --git a/AixLib/Fluid/Actuators/Valves/ExpansionValves/ModularExpansionValves/ModularExpansionValvesSensors.mo b/AixLib/Fluid/Actuators/Valves/ExpansionValves/ModularExpansionValves/ModularExpansionValvesSensors.mo index 0f698e84e9..15e368294e 100644 --- a/AixLib/Fluid/Actuators/Valves/ExpansionValves/ModularExpansionValves/ModularExpansionValvesSensors.mo +++ b/AixLib/Fluid/Actuators/Valves/ExpansionValves/ModularExpansionValves/ModularExpansionValvesSensors.mo @@ -6,41 +6,37 @@ model ModularExpansionValvesSensors // Definition of parameters // - parameter Modelica.SIunits.Time tau = 1 - "Time constant at nominal flow rate" - annotation(Dialog(tab="General",group="Sensors"), - HideResult=not show_parSen); + parameter Modelica.Units.SI.Time tau=1 "Time constant at nominal flow rate" + annotation (Dialog(tab="General", group="Sensors"), HideResult=not + show_parSen); parameter Boolean transferHeat = false "if true, temperature T converges towards TAmb when no flow" annotation(Dialog(tab="General",group="Sensors"), HideResult=not show_parSen); - parameter Modelica.SIunits.Temperature TAmb = Medium.T_default - "Fixed ambient temperature for heat transfer" - annotation(Dialog(tab="General",group="Sensors"), - HideResult=not show_parSen); - parameter Modelica.SIunits.Time tauHeaTra = 1200 - "Time constant for heat transfer, default 20 minutes" - annotation(Dialog(tab="General",group="Sensors"), - HideResult=not show_parSen); + parameter Modelica.Units.SI.Temperature TAmb=Medium.T_default + "Fixed ambient temperature for heat transfer" annotation (Dialog(tab= + "General", group="Sensors"), HideResult=not show_parSen); + parameter Modelica.Units.SI.Time tauHeaTra=1200 + "Time constant for heat transfer, default 20 minutes" annotation (Dialog( + tab="General", group="Sensors"), HideResult=not show_parSen); parameter Modelica.Blocks.Types.Init initTypeSen= Modelica.Blocks.Types.Init.InitialState "Type of initialization (InitialState and InitialOutput are identical)" annotation(Dialog(tab="Advanced",group="Initialisation Sensors"), HideResult=not show_parSen); - parameter Modelica.SIunits.Temperature T_start = Medium.T_default - "Initial or guess value of output (= state)" - annotation(Dialog(tab="Advanced",group="Initialisation Sensors"), - HideResult=not show_parSen); - parameter Modelica.SIunits.SpecificEnthalpy h_out_start= + parameter Modelica.Units.SI.Temperature T_start=Medium.T_default + "Initial or guess value of output (= state)" annotation (Dialog(tab= + "Advanced", group="Initialisation Sensors"), HideResult=not + show_parSen); + parameter Modelica.Units.SI.SpecificEnthalpy h_out_start= Medium.specificEnthalpy_pTX( p=Medium.p_default, T=Medium.T_default, - X=Medium.X_default) - "Initial or guess value of output (= state)" - annotation(Dialog(tab="Advanced",group="Initialisation Sensors"), - HideResult=not show_parSen); + X=Medium.X_default) "Initial or guess value of output (= state)" + annotation (Dialog(tab="Advanced", group="Initialisation Sensors"), + HideResult=not show_parSen); parameter Boolean show_parSen = false "= true, if sensors' input parameters are shown in results" diff --git a/AixLib/Fluid/Actuators/Valves/ExpansionValves/UsersGuide/Approaches.mo b/AixLib/Fluid/Actuators/Valves/ExpansionValves/UsersGuide/Approaches.mo index 183f50c350..dd6acb0e34 100644 --- a/AixLib/Fluid/Actuators/Valves/ExpansionValves/UsersGuide/Approaches.mo +++ b/AixLib/Fluid/Actuators/Valves/ExpansionValves/UsersGuide/Approaches.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Actuators.Valves.ExpansionValves.UsersGuide; +within AixLib.Fluid.Actuators.Valves.ExpansionValves.UsersGuide; class Approaches "Approaches implemented in the library" extends Modelica.Icons.Information; @@ -29,184 +29,196 @@ C*Avalve*sqrt(2*ρinlet*dp). Calculation procedures presented in the litarture have some variables in commen and these variables are presented below:

                - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                - Variable - - Comment -
                - A - - Cross-sectional flow area -
                - dinlet - - Diameter of the pipe at valve's inlet -
                - pinlet - - Pressure at valve's inlet -
                - poutlet - - Pressure at valve's outlet -
                - ρinlet - - Density at valve's inlet -
                - ρoutlet - - Density at valve's outlet -
                - Tinlet - - Temperature at valve's inlet -
                - μinlet - - Dynamic viscosity at valve's inlet -
                - σinlet - - Surface tension at valve's inlet -
                - Coutlet - - Specific heat capacity at valve's outlet -
                - hfg - - Heat of vaparisation -
                -

                - Polynomial flow coefficient models -

                -

                - Actually, two polynomial approaches are implemented in this package. - To add further calculation procedures, just add its name in - AixLib.Fluid.Actuators.Valves.ExpansionValves.Utilities.Choices - and expand the if-structure defined in - AixLib.Fluid.Actuators.Valves.ExpansionValves.Utilities.FlowCoefficient.PolynomialFlowCoefficient.
                -

                - - - - - - - - - - - - - - - - - - - - - - - - - +
                - Reference - - Formula - - Refrigerants - - Validity Tcondensing - - Validity Tevaporating - - Validity Tsubcooling -
                - ShanweiEtAl2005 - - C = a1*A + a2*ρinlet + a3*ρoutlet + - a4*Tsubcooling + a5*dclearance + - a6*(pinlet- poutlet) - - R22, R407C, R410A - - 40 - 50 °C - - 0 - 10 °C - - 1.5 - 10 °C -
                - Li2013 - - C = a1 + a2*opening + a3*opening^2 + - a4*opening*(Tsubcooling/Tcrit) + - a5*(Tsubcooling/Tcrit) + - a6*(Tsubcooling/Tcrit)^2 - - R22, R407C, R410A - - 30 - 50 °C - - 0 - 30 °C - - 1.5 - 15 °C -
                +
                + \"Commen variables\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                + Variable + + Comment +
                + A + + Cross-sectional flow area +
                + dinlet + + Diameter of the pipe at valve's inlet +
                + pinlet + + Pressure at valve's inlet +
                + poutlet + + Pressure at valve's outlet +
                + ρinlet + + Density at valve's inlet +
                + ρoutlet + + Density at valve's outlet +
                + Tinlet + + Temperature at valve's inlet +
                + μinlet + + Dynamic viscosity at valve's inlet +
                + σinlet + + Surface tension at valve's inlet +
                + Coutlet + + Specific heat capacity at valve's outlet +
                + hfg + + Heat of vaparisation +
                +

                + Polynomial flow coefficient models +

                +

                + Actually, two polynomial approaches are implemented in this + package. To add further calculation procedures, just add its name + in + AixLib.Fluid.Actuators.Valves.ExpansionValves.Utilities.Choices + and expand the if-structure defined in + AixLib.Fluid.Actuators.Valves.ExpansionValves.Utilities.FlowCoefficient.PolynomialFlowCoefficient.
                +

                + + +
                + \"Polynomial approaches\" border=\"1\" cellspacing=\"0\" + cellpadding=\"2\" style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + + + + + + + + + + +
                + Reference + + Formula + + Refrigerants + + Validity Tcondensing + + Validity Tevaporating + + Validity Tsubcooling +
                + ShanweiEtAl2005 + + C = a1*A + a2*ρinlet + + a3*ρoutlet + a4*Tsubcooling + + a5*dclearance + a6*(pinlet- + poutlet) + + R22, R407C, R410A + + 40 - 50 °C + + 0 - 10 °C + + 1.5 - 10 °C +
                + Li2013 + + C = a1 + a2*opening + a3*opening^2 + + a4*opening*(Tsubcooling/Tcrit) + + a5*(Tsubcooling/Tcrit) + + a6*(Tsubcooling/Tcrit)^2 + + R22, R407C, R410A + + 30 - 50 °C + + 0 - 30 °C + + 1.5 - 15 °C +
                +
                +
                ")); end PolynomialApproach; @@ -237,207 +249,218 @@ C*Avalve*sqrt(2*ρinlet*dp). Calculation procedures presented in the litarture have some variables in commen and these variables are presented below:

                - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                - Variable - - Comment -
                - A - - Cross-sectional flow area -
                - dinlet - - Diameter of the pipe at valve's inlet -
                - pinlet - - Pressure at valve's inlet -
                - poutlet - - Pressure at valve's outlet -
                - ρinlet - - Density at valve's inlet -
                - ρoutlet - - Density at valve's outlet -
                - Tinlet - - Temperature at valve's inlet -
                - μinlet - - Dynamic viscosity at valve's inlet -
                - σinlet - - Surface tension at valve's inlet -
                - Coutlet - - Specific heat capacity at valve's outlet -
                - hfg - - Heat of vaparisation -
                -

                - Power flow coefficient models -

                -

                - Actually, three power approaches are implemented in this package. To - add further calculation procedures, just add its name in - AixLib.Fluid.Actuators.Valves.ExpansionValves.Utilities.Choices - and expand the if-structure defined in - AixLib.Fluid.Actuators.Valves.ExpansionValves.Utilities.FlowCoefficient.PolynomialFlowCoefficient.
                -

                - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
                - Reference - - Formula - - Refrigerants - - Validity Tcondensing - - Validity Tevaporating - - Validity Tsubcooling -
                - ShanweiEtAl2005 - - C = a * a * (A/dclearance^2)^b1 * - ((pinlet-poutlet)/pcrit)^b2 * - (Tcrit/Tsubcooling)^b3 * - (rhoinlet/rhooutlet)^b4 * - (quality)^b5 - - R22, R407C, R410A - - 40 - 50 °C - - 0 - 10 °C - - 1.5 - 10 °C -
                - ZhifangAndOu2008 - - C = a * ((pinlet-poutlet) * - sqrt(A)/σinlet)^b1 * - (dinlet*sqrt(ρinlet * - pinlet)/μinlet)^b2 - - R134a - - 31 - 67.17 °C - - no information - - 0 - 20 °C -
                - Li2013 - - C = a * (opening)^b1 * - (Tsubcooling/Tcrit)^b2 - - R22, R407C, R410A - - 30 - 50 °C - - 0 - 30 °C - - 1.5 - 15 °C -
                +
                + \"Commen variables\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                + Variable + + Comment +
                + A + + Cross-sectional flow area +
                + dinlet + + Diameter of the pipe at valve's inlet +
                + pinlet + + Pressure at valve's inlet +
                + poutlet + + Pressure at valve's outlet +
                + ρinlet + + Density at valve's inlet +
                + ρoutlet + + Density at valve's outlet +
                + Tinlet + + Temperature at valve's inlet +
                + μinlet + + Dynamic viscosity at valve's inlet +
                + σinlet + + Surface tension at valve's inlet +
                + Coutlet + + Specific heat capacity at valve's outlet +
                + hfg + + Heat of vaparisation +
                +

                + Power flow coefficient models +

                +

                + Actually, three power approaches are implemented in this package. + To add further calculation procedures, just add its name in + + AixLib.Fluid.Actuators.Valves.ExpansionValves.Utilities.Choices + and expand the if-structure defined in + AixLib.Fluid.Actuators.Valves.ExpansionValves.Utilities.FlowCoefficient.PolynomialFlowCoefficient.
                +

                + + +
                + \"Power approaches\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                + Reference + + Formula + + Refrigerants + + Validity Tcondensing + + Validity Tevaporating + + Validity Tsubcooling +
                + ShanweiEtAl2005 + + C = a * a * (A/dclearance^2)^b1 * + ((pinlet-poutlet)/pcrit)^b2 + * (Tcrit/Tsubcooling)^b3 * + (rhoinlet/rhooutlet)^b4 * + (quality)^b5 + + R22, R407C, R410A + + 40 - 50 °C + + 0 - 10 °C + + 1.5 - 10 °C +
                + ZhifangAndOu2008 + + C = a * ((pinlet-poutlet) * + sqrt(A)/σinlet)^b1 * + (dinlet*sqrt(ρinlet * + pinlet)/μinlet)^b2 + + R134a + + 31 - 67.17 °C + + no information + + 0 - 20 °C +
                + Li2013 + + C = a * (opening)^b1 * + (Tsubcooling/Tcrit)^b2 + + R22, R407C, R410A + + 30 - 50 °C + + 0 - 30 °C + + 1.5 - 15 °C +
                +
                +
                ")); end PowerApproach; @@ -469,133 +492,139 @@ cellpadding=\"2\" style=\"border-collapse:collapse;\"> In the following, these modeling approaches are characterised shortly:

                - - - - - - - - - - - - - - - - - - - - - +
                - Approach - - Formula - - Comment -
                - Linear - - ṁ = C*Avalve*dp - - Used for testing or initialisation -
                - Nominal - - ṁ = ṁnominal/dpnominal * - Avalve*dp - - Used mainly for initialisation -
                - Flow coefficient - - ṁ = - C*Avalve*sqrt(2*ρinlet*dp) - - Chosen by default and follows from Bernoulli's law -
                +
                + \"Modelling approaches\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + + + + + + +
                + Approach + + Formula + + Comment +
                + Linear + + ṁ = C*Avalve*dp + + Used for testing or initialisation +
                + Nominal + + ṁ = ṁnominal/dpnominal * + Avalve*dp + + Used mainly for initialisation +
                + Flow coefficient + + ṁ = + C*Avalve*sqrt(2*ρinlet*dp) + + Chosen by default and follows from Bernoulli's law +
                +

                + For the third approach (i.e. flow coefficient), different + calculation models are stored in + AixLib.Fluid.Actuators.Valves.ExpansionValves.Utilities.Choices.FlowCoefficient. + Therefore, the calculation procedure of the flow coefficient C is + introduced as replaceable model and must by defined by the User. + Further information is given in the following sections: +

                +
                  +
                1. + + Polynomial approaches +
                2. +
                3. + + Power approaches +
                4. +
                +

                + Naming and abbreviations +

                +

                + In the following, a guideline of naming flow coefficient models + is summarised: +

                +

                + Approach of calculating flow coefficient _ Valid + refrigerants _ Type of expansion valve _ Diameter + of cross-sectional area of expansion valve +

                +
                  +
                1. + Approach: Approach of calculating flow coefficient, e.g. + polynomial or power. +
                2. +
                3. + Refrigerant: Refrigerants the flow coefficent model is + valid for, e.g. R134a or R410a. +
                4. +
                5. + Type: Type of expansion valve, e.g. electric expansion + valve (EEV). +
                6. +
                7. + Diameter: Diameter of the cross-sectional area of + expansion valves if it is fully opened, e.g. 1.6 mm. +
                8. +
                +

                + Transient behaviour +

                +

                + All expansion valve models have a parameter + useInpFil that is used to model the valve's + transient behaviour while opening or closing. Generally, this + approach uses the same modeling attempt as the stat-up and + shut-down transients introtuced for flow machines (see AixLib.Fluid.Movers.UsersGuide). + Therefore, just the parameter's affections are presented here: +

                +
                  +
                1. If useInpFil=false, then the input signal + opeSet.y is equal to the valve's opening degree. Thus, a + step change in the input signal causes a step change in the + opening degree. +
                2. +
                3. If useInpFil=true, which is the default, then + the opening degree is equal to the output of a filter. This + filter is implemented as a 2nd order differential equation. Thus, + a step change in the fan input signal will cause a gradual change + in the opening degree. The filter has a parameter + risTim, which by default is set to 1 second. + The rise time is the time required to reach 99.6% of the + full opening degree, or,if the ventil is closed, to reach a + opening degree of 0.4%. +
                4. +
                +
                -

                - For the third approach (i.e. flow coefficient), different calculation - models are stored in - AixLib.Fluid.Actuators.Valves.ExpansionValves.Utilities.Choices.FlowCoefficient. - Therefore, the calculation procedure of the flow coefficient C is - introduced as replaceable model and must by defined by the User. - Further information is given in the following sections: -

                -
                  -
                1. - - Polynomial approaches -
                2. -
                3. - - Power approaches -
                4. -
                -

                - Naming and abbreviations -

                -

                - In the following, a guideline of naming flow coefficient models is - summarised: -

                -

                - Approach of calculating flow coefficient _ Valid - refrigerants _ Type of expansion valve _ Diameter of - cross-sectional area of expansion valve -

                -
                  -
                1. - Approach: Approach of calculating flow coefficient, e.g. - polynomial or power. -
                2. -
                3. - Refrigerant: Refrigerants the flow coefficent model is valid - for, e.g. R134a or R410a. -
                4. -
                5. - Type: Type of expansion valve, e.g. electric expansion valve - (EEV). -
                6. -
                7. - Diameter: Diameter of the cross-sectional area of expansion - valves if it is fully opened, e.g. 1.6 mm. -
                8. -
                -

                - Transient behaviour -

                -

                - All expansion valve models have a parameter useInpFil - that is used to model the valve's transient behaviour while opening - or closing. Generally, this approach uses the same modeling attempt - as the stat-up and shut-down transients introtuced for flow machines - (see AixLib.Fluid.Movers.UsersGuide). - Therefore, just the parameter's affections are presented here: -

                -
                  -
                1. If useInpFil=false, then the input signal - opeSet.y is equal to the valve's opening degree. Thus, a - step change in the input signal causes a step change in the opening - degree. -
                2. -
                3. If useInpFil=true, which is the default, then the - opening degree is equal to the output of a filter. This filter is - implemented as a 2nd order differential equation. Thus, a step change - in the fan input signal will cause a gradual change in the opening - degree. The filter has a parameter risTim, which by - default is set to 1 second. The rise time is the time required - to reach 99.6% of the full opening degree, or,if the ventil is - closed, to reach a opening degree of 0.4%. -
                4. -
                ")); end Approaches; diff --git a/AixLib/Fluid/Actuators/Valves/ExpansionValves/UsersGuide/References.mo b/AixLib/Fluid/Actuators/Valves/ExpansionValves/UsersGuide/References.mo index 4f937954a6..ebd9f408f3 100644 --- a/AixLib/Fluid/Actuators/Valves/ExpansionValves/UsersGuide/References.mo +++ b/AixLib/Fluid/Actuators/Valves/ExpansionValves/UsersGuide/References.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Actuators.Valves.ExpansionValves.UsersGuide; +within AixLib.Fluid.Actuators.Valves.ExpansionValves.UsersGuide; class References "References" extends Modelica.Icons.References; diff --git a/AixLib/Fluid/Actuators/Valves/ExpansionValves/Utilities/FlowCoefficient/PolynomialFlowCoefficient.mo b/AixLib/Fluid/Actuators/Valves/ExpansionValves/Utilities/FlowCoefficient/PolynomialFlowCoefficient.mo index cdf7a91144..7d8a79b172 100644 --- a/AixLib/Fluid/Actuators/Valves/ExpansionValves/Utilities/FlowCoefficient/PolynomialFlowCoefficient.mo +++ b/AixLib/Fluid/Actuators/Valves/ExpansionValves/Utilities/FlowCoefficient/PolynomialFlowCoefficient.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Actuators.Valves.ExpansionValves.Utilities.FlowCoefficient; +within AixLib.Fluid.Actuators.Valves.ExpansionValves.Utilities.FlowCoefficient; model PolynomialFlowCoefficient "Model describing flow coefficient based on polynomial approach" extends BaseClasses.PartialFlowCoefficient; @@ -19,10 +19,9 @@ model PolynomialFlowCoefficient annotation(Dialog(group="Modelling approach", enable=false)); - parameter Modelica.SIunits.Diameter dCle = 0.02e-3 - "Clearance diameter dCle = d_inner - d_needle" - annotation(Dialog(group="Further geometry data", - enable=if (polyMod == Types.PolynomialModels.ShanweiEtAl2005) + parameter Modelica.Units.SI.Diameter dCle=0.02e-3 + "Clearance diameter dCle = d_inner - d_needle" annotation (Dialog(group= + "Further geometry data", enable=if (polyMod == Types.PolynomialModels.ShanweiEtAl2005) then true else false)); parameter Real pDifRat = 0.84 "Pressure differential ratio factor depending on valve moddeld" @@ -154,89 +153,96 @@ equation AixLib.Fluid.Actuators.Valves.ExpansionValves.Utilities.Choices and expand the if-structure.

                - - - - - - - - - - - - - - - - - - - - - - - - - +
                - Reference - - Formula - - Refrigerants - - Validity Tcondensing - - Validity Tevaporating - - Validity Tsubcooling -
                - ShanweiEtAl2005 - - C = a1*A + a2*ρinlet + a3*ρoutlet + - a4*Tsubcooling + a5*dclearance + - a6*(pinlet- poutlet) - - R22, R407C, R410A - - 40 - 50 °C - - 0 - 10 °C - - 1.5 - 10 °C -
                - Li2013 - - C = a1 + a2*opening + a3*opening^2 + - a4*opening*(Tsubcooling/Tcrit) + - a5*(Tsubcooling/Tcrit) + - a6*(Tsubcooling/Tcrit)^2 - - R22, R407C, R410A - - 30 - 50 °C - - 0 - 30 °C - - 1.5 - 15 °C -
                +
                + \"Polynomial approaches\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + + + + + + + + + + +
                + Reference + + Formula + + Refrigerants + + Validity Tcondensing + + Validity Tevaporating + + Validity Tsubcooling +
                + ShanweiEtAl2005 + + C = a1*A + a2*ρinlet + a3*ρoutlet + + a4*Tsubcooling + a5*dclearance + + a6*(pinlet- poutlet) + + R22, R407C, R410A + + 40 - 50 °C + + 0 - 10 °C + + 1.5 - 10 °C +
                + Li2013 + + C = a1 + a2*opening + a3*opening^2 + + a4*opening*(Tsubcooling/Tcrit) + + a5*(Tsubcooling/Tcrit) + + a6*(Tsubcooling/Tcrit)^2 + + R22, R407C, R410A + + 30 - 50 °C + + 0 - 30 °C + + 1.5 - 15 °C +
                +

                + References +

                +

                + M. Shanwei, Z. Chuan, C. Jiangping and C. Zhiujiu. (2005): + Experimental + research on refrigerant mass flow coefficient of electronic + expansion valve. In: Applied Thermal Engineering + 25(14), S. 2351–2366 +

                +

                + Li, W. (2013): Simplified + modeling analysis ofmass flow characteristics in electronic + expansion valve. In: Applied Thermal Engineering + 53(1), S. 8–12 +

                +
                -

                - References -

                -

                - M. Shanwei, Z. Chuan, C. Jiangping and C. Zhiujiu. (2005): Experimental - research on refrigerant mass flow coefficient of electronic expansion - valve. In: Applied Thermal Engineering 25(14), S. - 2351–2366 -

                -

                - Li, W. (2013): Simplified - modeling analysis ofmass flow characteristics in electronic expansion - valve. In: Applied Thermal Engineering 53(1), S. 8–12 -

                ")); end PolynomialFlowCoefficient; diff --git a/AixLib/Fluid/Actuators/Valves/ExpansionValves/Utilities/FlowCoefficient/PowerFlowCoefficient.mo b/AixLib/Fluid/Actuators/Valves/ExpansionValves/Utilities/FlowCoefficient/PowerFlowCoefficient.mo index 7275dfceba..17becf6d61 100644 --- a/AixLib/Fluid/Actuators/Valves/ExpansionValves/Utilities/FlowCoefficient/PowerFlowCoefficient.mo +++ b/AixLib/Fluid/Actuators/Valves/ExpansionValves/Utilities/FlowCoefficient/PowerFlowCoefficient.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Actuators.Valves.ExpansionValves.Utilities.FlowCoefficient; +within AixLib.Fluid.Actuators.Valves.ExpansionValves.Utilities.FlowCoefficient; model PowerFlowCoefficient "Model describing flow coefficient based on power approach" extends BaseClasses.PartialFlowCoefficient; @@ -19,11 +19,10 @@ model PowerFlowCoefficient annotation(Dialog(group="Modelling approach", enable=false)); - parameter Modelica.SIunits.Diameter dCle = 0.02e-3 - "Clearance diameter dCle = d_inner - d_needle" - annotation(Dialog(group="Further geometry data", - enable=if (powMod == Types.PowerModels.ShanweiEtAl2005) then - true else false)); + parameter Modelica.Units.SI.Diameter dCle=0.02e-3 + "Clearance diameter dCle = d_inner - d_needle" annotation (Dialog(group= + "Further geometry data", enable=if (powMod == Types.PowerModels.ShanweiEtAl2005) + then true else false)); parameter Real pDifRat = 0.84 "Pressure differential ratio factor depending on valve moddeld" annotation(Dialog(group="Further geometry data", @@ -162,119 +161,126 @@ equation AixLib.Fluid.Actuators.Valves.ExpansionValves.Utilities.Choices and expand the if-structure.

                - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
                - Reference - - Formula - - Refrigerants - - Validity Tcondensing - - Validity Tevaporating - - Validity Tsubcooling -
                - ShanweiEtAl2005 - - C = a * a * (A/dclearance^2)^b1 * - ((pinlet-poutlet)/pcrit)^b2 * - (Tcrit/Tsubcooling)^b3 * - (rhoinlet/rhooutlet)^b4 * - (quality)^b5 - - R22, R407C, R410A - - 40 - 50 °C - - 0 - 10 °C - - 1.5 - 10 °C -
                - ZhifangAndOu2008 - - C = a * ((pinlet-poutlet) * - sqrt(A)/σinlet)^b1 * - (dinlet*sqrt(ρinlet * - pinlet)/μinlet)^b2 - - R134a - - 31 - 67.17 °C - - no information - - 0 - 20 °C -
                - Li2013 - - C = a * (opening)^b1 * - (Tsubcooling/Tcrit)^b2 - - R22, R407C, R410A - - 30 - 50 °C - - 0 - 30 °C - - 1.5 - 15 °C -
                +
                + \"Power approaches\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                + Reference + + Formula + + Refrigerants + + Validity Tcondensing + + Validity Tevaporating + + Validity Tsubcooling +
                + ShanweiEtAl2005 + + C = a * a * (A/dclearance^2)^b1 * + ((pinlet-poutlet)/pcrit)^b2 + * (Tcrit/Tsubcooling)^b3 * + (rhoinlet/rhooutlet)^b4 * + (quality)^b5 + + R22, R407C, R410A + + 40 - 50 °C + + 0 - 10 °C + + 1.5 - 10 °C +
                + ZhifangAndOu2008 + + C = a * ((pinlet-poutlet) * + sqrt(A)/σinlet)^b1 * + (dinlet*sqrt(ρinlet * + pinlet)/μinlet)^b2 + + R134a + + 31 - 67.17 °C + + no information + + 0 - 20 °C +
                + Li2013 + + C = a * (opening)^b1 * + (Tsubcooling/Tcrit)^b2 + + R22, R407C, R410A + + 30 - 50 °C + + 0 - 30 °C + + 1.5 - 15 °C +
                +

                + References +

                +

                + M. Shanwei, Z. Chuan, C. Jiangping and C. Zhiujiu. (2005): + Experimental + research on refrigerant mass flow coefficient of electronic + expansion valve. In: Applied Thermal Engineering + 25(14), S. 2351–2366 +

                +

                + X. Zhifang, S. Lin and O. Hongfei. (2008): Refrigerant + flow characteristics of electronic expansion valve based on + thermodynamic analysis and experiment. In: Applied Thermal + Engineering 28(2), S. 2381–243 +

                +

                + Li, W. (2013): Simplified + modeling analysis ofmass flow characteristics in electronic + expansion valve. In: Applied Thermal Engineering + 53(1), S. 8–12 +

                +
                -

                - References -

                -

                - M. Shanwei, Z. Chuan, C. Jiangping and C. Zhiujiu. (2005): Experimental - research on refrigerant mass flow coefficient of electronic expansion - valve. In: Applied Thermal Engineering 25(14), S. - 2351–2366 -

                -

                - X. Zhifang, S. Lin and O. Hongfei. (2008): Refrigerant - flow characteristics of electronic expansion valve based on - thermodynamic analysis and experiment. In: Applied Thermal - Engineering 28(2), S. 2381–243 -

                -

                - Li, W. (2013): Simplified - modeling analysis ofmass flow characteristics in electronic expansion - valve. In: Applied Thermal Engineering 53(1), S. 8–12 -

                ")); end PowerFlowCoefficient; diff --git a/AixLib/Fluid/Actuators/Valves/ExpansionValves/Utilities/FlowCoefficient/SpecifiedFlowCoefficients/Buck_R22R407CR410A_EEV_15_22.mo b/AixLib/Fluid/Actuators/Valves/ExpansionValves/Utilities/FlowCoefficient/SpecifiedFlowCoefficients/Buck_R22R407CR410A_EEV_15_22.mo index 107f274786..8ce8d2f1f6 100644 --- a/AixLib/Fluid/Actuators/Valves/ExpansionValves/Utilities/FlowCoefficient/SpecifiedFlowCoefficients/Buck_R22R407CR410A_EEV_15_22.mo +++ b/AixLib/Fluid/Actuators/Valves/ExpansionValves/Utilities/FlowCoefficient/SpecifiedFlowCoefficients/Buck_R22R407CR410A_EEV_15_22.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Actuators.Valves.ExpansionValves.Utilities.FlowCoefficient.SpecifiedFlowCoefficients; +within AixLib.Fluid.Actuators.Valves.ExpansionValves.Utilities.FlowCoefficient.SpecifiedFlowCoefficients; model Buck_R22R407CR410A_EEV_15_22 "Buckingham - Similitude for R22, R407C, R410A - EEV - 1.5 mm to 2.2 mm " extends PowerFlowCoefficient( @@ -18,62 +18,68 @@ model Buck_R22R407CR410A_EEV_15_22 This model contains a calculation procedure for flow coefficients presented by Shanwei et al. (2005).

                - - - - - - - - - - - - - - - - - +
                - Reference - - Formula - - Refrigerants - - Validity Tcondensing - - Validity Tevaporating - - Validity Tsubcooling -
                - ShanweiEtAl2005 - - C = a * a * (A/dclearance^2)^b1 * - ((pinlet-poutlet)/pcrit)^b2 * - (Tcrit/Tsubcooling)^b3 * - (rhoinlet/rhooutlet)^b4 * - (quality)^b5 - - R22, R407C, R410A - - 40 - 50 °C - - 0 - 10 °C - - 1.5 - 10 °C -
                +
                + \"Power approaches\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + + +
                + Reference + + Formula + + Refrigerants + + Validity Tcondensing + + Validity Tevaporating + + Validity Tsubcooling +
                + ShanweiEtAl2005 + + C = a * a * (A/dclearance^2)^b1 * + ((pinlet-poutlet)/pcrit)^b2 + * (Tcrit/Tsubcooling)^b3 * + (rhoinlet/rhooutlet)^b4 * + (quality)^b5 + + R22, R407C, R410A + + 40 - 50 °C + + 0 - 10 °C + + 1.5 - 10 °C +
                +

                + References +

                +

                + M. Shanwei, Z. Chuan, C. Jiangping and C. Zhiujiu. (2005): + Experimental + research on refrigerant mass flow coefficient of electronic + expansion valve. In: Applied Thermal Engineering + 25(14), S. 2351–2366 +

                +
                -

                - References -

                -

                - M. Shanwei, Z. Chuan, C. Jiangping and C. Zhiujiu. (2005): Experimental - research on refrigerant mass flow coefficient of electronic expansion - valve. In: Applied Thermal Engineering 25(14), S. - 2351–2366 -

                ")); end Buck_R22R407CR410A_EEV_15_22; diff --git a/AixLib/Fluid/Actuators/Valves/ExpansionValves/Utilities/FlowCoefficient/SpecifiedFlowCoefficients/Buck_R22R407CR410A_EEV_16_18.mo b/AixLib/Fluid/Actuators/Valves/ExpansionValves/Utilities/FlowCoefficient/SpecifiedFlowCoefficients/Buck_R22R407CR410A_EEV_16_18.mo index e301395163..135ce32a6c 100644 --- a/AixLib/Fluid/Actuators/Valves/ExpansionValves/Utilities/FlowCoefficient/SpecifiedFlowCoefficients/Buck_R22R407CR410A_EEV_16_18.mo +++ b/AixLib/Fluid/Actuators/Valves/ExpansionValves/Utilities/FlowCoefficient/SpecifiedFlowCoefficients/Buck_R22R407CR410A_EEV_16_18.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Actuators.Valves.ExpansionValves.Utilities.FlowCoefficient.SpecifiedFlowCoefficients; +within AixLib.Fluid.Actuators.Valves.ExpansionValves.Utilities.FlowCoefficient.SpecifiedFlowCoefficients; model Buck_R22R407CR410A_EEV_16_18 "Buckingham - Similitude for R22, R407C, R410A - EEV - 1.6 mm to 1.8 mm " extends PowerFlowCoefficient( @@ -18,58 +18,64 @@ model Buck_R22R407CR410A_EEV_16_18 This model contains a calculation procedure for flow coefficients presented by Li (2013).

                - - - - - - - - - - - - - - - - - +
                - Reference - - Formula - - Refrigerants - - Validity Tcondensing - - Validity Tevaporating - - Validity Tsubcooling -
                - Li2013 - - C = a * (opening)^b1 * - (Tsubcooling/Tcrit)^b2 - - R22, R407C, R410A - - 30 - 50 °C - - 0 - 30 °C - - 1.5 - 15 °C -
                +
                + \"Power approaches\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + + +
                + Reference + + Formula + + Refrigerants + + Validity Tcondensing + + Validity Tevaporating + + Validity Tsubcooling +
                + Li2013 + + C = a * (opening)^b1 * + (Tsubcooling/Tcrit)^b2 + + R22, R407C, R410A + + 30 - 50 °C + + 0 - 30 °C + + 1.5 - 15 °C +
                +

                + References +

                +

                + Li, W. (2013): Simplified + modeling analysis ofmass flow characteristics in electronic + expansion valve. In: Applied Thermal Engineering + 53(1), S. 8–12 +

                +
                -

                - References -

                -

                - Li, W. (2013): Simplified - modeling analysis ofmass flow characteristics in electronic expansion - valve. In: Applied Thermal Engineering 53(1), S. 8–12 -

                ")); end Buck_R22R407CR410A_EEV_16_18; diff --git a/AixLib/Fluid/Actuators/Valves/ExpansionValves/Utilities/FlowCoefficient/SpecifiedFlowCoefficients/Poly_R22R407CR410A_EEV_15_22.mo b/AixLib/Fluid/Actuators/Valves/ExpansionValves/Utilities/FlowCoefficient/SpecifiedFlowCoefficients/Poly_R22R407CR410A_EEV_15_22.mo index ff86c03510..b7c98de07a 100644 --- a/AixLib/Fluid/Actuators/Valves/ExpansionValves/Utilities/FlowCoefficient/SpecifiedFlowCoefficients/Poly_R22R407CR410A_EEV_15_22.mo +++ b/AixLib/Fluid/Actuators/Valves/ExpansionValves/Utilities/FlowCoefficient/SpecifiedFlowCoefficients/Poly_R22R407CR410A_EEV_15_22.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Actuators.Valves.ExpansionValves.Utilities.FlowCoefficient.SpecifiedFlowCoefficients; +within AixLib.Fluid.Actuators.Valves.ExpansionValves.Utilities.FlowCoefficient.SpecifiedFlowCoefficients; model Poly_R22R407CR410A_EEV_15_22 "Polynomial - Similitude for R22, R407C, R410A - EEV - 1.5 mm to 2.2 mm" extends PolynomialFlowCoefficient( @@ -18,60 +18,66 @@ model Poly_R22R407CR410A_EEV_15_22 This model contains a calculation procedure for flow coefficients presented by Shanwei et al. (2005).

                - - - - - - - - - - - - - - - - - +
                - Reference - - Formula - - Refrigerants - - Validity Tcondensing - - Validity Tevaporating - - Validity Tsubcooling -
                - ShanweiEtAl2005 - - C = a1*A + a2*ρinlet + a3*ρoutlet + - a4*Tsubcooling + a5*dclearance + - a6*(pinlet- poutlet) - - R22, R407C, R410A - - 40 - 50 °C - - 0 - 10 °C - - 1.5 - 10 °C -
                +
                + \"Power approaches\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + + +
                + Reference + + Formula + + Refrigerants + + Validity Tcondensing + + Validity Tevaporating + + Validity Tsubcooling +
                + ShanweiEtAl2005 + + C = a1*A + a2*ρinlet + a3*ρoutlet + + a4*Tsubcooling + a5*dclearance + + a6*(pinlet- poutlet) + + R22, R407C, R410A + + 40 - 50 °C + + 0 - 10 °C + + 1.5 - 10 °C +
                +

                + References +

                +

                + M. Shanwei, Z. Chuan, C. Jiangping and C. Zhiujiu. (2005): + Experimental + research on refrigerant mass flow coefficient of electronic + expansion valve. In: Applied Thermal Engineering + 25(14), S. 2351–2366 +

                +
                -

                - References -

                -

                - M. Shanwei, Z. Chuan, C. Jiangping and C. Zhiujiu. (2005): Experimental - research on refrigerant mass flow coefficient of electronic expansion - valve. In: Applied Thermal Engineering 25(14), S. - 2351–2366 -

                ")); end Poly_R22R407CR410A_EEV_15_22; diff --git a/AixLib/Fluid/Actuators/Valves/ExpansionValves/Utilities/FlowCoefficient/SpecifiedFlowCoefficients/Poly_R22_EEV_16.mo b/AixLib/Fluid/Actuators/Valves/ExpansionValves/Utilities/FlowCoefficient/SpecifiedFlowCoefficients/Poly_R22_EEV_16.mo index c1cdd11b86..25dce5d637 100644 --- a/AixLib/Fluid/Actuators/Valves/ExpansionValves/Utilities/FlowCoefficient/SpecifiedFlowCoefficients/Poly_R22_EEV_16.mo +++ b/AixLib/Fluid/Actuators/Valves/ExpansionValves/Utilities/FlowCoefficient/SpecifiedFlowCoefficients/Poly_R22_EEV_16.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Actuators.Valves.ExpansionValves.Utilities.FlowCoefficient.SpecifiedFlowCoefficients; +within AixLib.Fluid.Actuators.Valves.ExpansionValves.Utilities.FlowCoefficient.SpecifiedFlowCoefficients; model Poly_R22_EEV_16 "Polynomial - R22 - EEV - 1.6 mm" extends PolynomialFlowCoefficient( final polyMod=Types.PolynomialModels.Li2013, @@ -17,60 +17,66 @@ model Poly_R22_EEV_16 "Polynomial - R22 - EEV - 1.6 mm" This model contains a calculation procedure for flow coefficients presented by Li (2013).

                - - - - - - - - - - - - - - - - - +
                - Reference - - Formula - - Refrigerants - - Validity Tcondensing - - Validity Tevaporating - - Validity Tsubcooling -
                - Li2013 - - C = a1 + a2*opening + a3*opening^2 + - a4*opening*(Tsubcooling/Tcrit) + - a5*(Tsubcooling/Tcrit) + - a6*(Tsubcooling/Tcrit)^2 - - R22 - - 30 - 50 °C - - 0 - 30 °C - - 1.5 - 15 °C -
                +
                + \"Power approaches\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + + +
                + Reference + + Formula + + Refrigerants + + Validity Tcondensing + + Validity Tevaporating + + Validity Tsubcooling +
                + Li2013 + + C = a1 + a2*opening + a3*opening^2 + + a4*opening*(Tsubcooling/Tcrit) + + a5*(Tsubcooling/Tcrit) + + a6*(Tsubcooling/Tcrit)^2 + + R22 + + 30 - 50 °C + + 0 - 30 °C + + 1.5 - 15 °C +
                +

                + References +

                +

                + Li, W. (2013): Simplified + modeling analysis ofmass flow characteristics in electronic + expansion valve. In: Applied Thermal Engineering + 53(1), S. 8–12 +

                +
                -

                - References -

                -

                - Li, W. (2013): Simplified - modeling analysis ofmass flow characteristics in electronic expansion - valve. In: Applied Thermal Engineering 53(1), S. 8–12 -

                ")); end Poly_R22_EEV_16; diff --git a/AixLib/Fluid/Actuators/Valves/ExpansionValves/Utilities/FlowCoefficient/SpecifiedFlowCoefficients/Poly_R407c_EEV_18.mo b/AixLib/Fluid/Actuators/Valves/ExpansionValves/Utilities/FlowCoefficient/SpecifiedFlowCoefficients/Poly_R407c_EEV_18.mo index c524876c8d..b51a6f9581 100644 --- a/AixLib/Fluid/Actuators/Valves/ExpansionValves/Utilities/FlowCoefficient/SpecifiedFlowCoefficients/Poly_R407c_EEV_18.mo +++ b/AixLib/Fluid/Actuators/Valves/ExpansionValves/Utilities/FlowCoefficient/SpecifiedFlowCoefficients/Poly_R407c_EEV_18.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Actuators.Valves.ExpansionValves.Utilities.FlowCoefficient.SpecifiedFlowCoefficients; +within AixLib.Fluid.Actuators.Valves.ExpansionValves.Utilities.FlowCoefficient.SpecifiedFlowCoefficients; model Poly_R407c_EEV_18 "Polynomial - R407c - EEV - 1.8 mm" extends PolynomialFlowCoefficient( final polyMod=Types.PolynomialModels.Li2013, @@ -17,60 +17,66 @@ model Poly_R407c_EEV_18 "Polynomial - R407c - EEV - 1.8 mm" This model contains a calculation procedure for flow coefficients presented by Li (2013).

                - - - - - - - - - - - - - - - - - +
                - Reference - - Formula - - Refrigerants - - Validity Tcondensing - - Validity Tevaporating - - Validity Tsubcooling -
                - Li2013 - - C = a1 + a2*opening + a3*opening^2 + - a4*opening*(Tsubcooling/Tcrit) + - a5*(Tsubcooling/Tcrit) + - a6*(Tsubcooling/Tcrit)^2 - - R407C - - 30 - 50 °C - - 0 - 30 °C - - 1.5 - 15 °C -
                +
                + \"Power approaches\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + + +
                + Reference + + Formula + + Refrigerants + + Validity Tcondensing + + Validity Tevaporating + + Validity Tsubcooling +
                + Li2013 + + C = a1 + a2*opening + a3*opening^2 + + a4*opening*(Tsubcooling/Tcrit) + + a5*(Tsubcooling/Tcrit) + + a6*(Tsubcooling/Tcrit)^2 + + R407C + + 30 - 50 °C + + 0 - 30 °C + + 1.5 - 15 °C +
                +

                + References +

                +

                + Li, W. (2013): Simplified + modeling analysis ofmass flow characteristics in electronic + expansion valve. In: Applied Thermal Engineering + 53(1), S. 8–12 +

                +
                -

                - References -

                -

                - Li, W. (2013): Simplified - modeling analysis ofmass flow characteristics in electronic expansion - valve. In: Applied Thermal Engineering 53(1), S. 8–12 -

                ")); end Poly_R407c_EEV_18; diff --git a/AixLib/Fluid/Actuators/Valves/ExpansionValves/Utilities/FlowCoefficient/SpecifiedFlowCoefficients/Poly_R410a_EEV_18.mo b/AixLib/Fluid/Actuators/Valves/ExpansionValves/Utilities/FlowCoefficient/SpecifiedFlowCoefficients/Poly_R410a_EEV_18.mo index 5996386be1..2ead6fa8ec 100644 --- a/AixLib/Fluid/Actuators/Valves/ExpansionValves/Utilities/FlowCoefficient/SpecifiedFlowCoefficients/Poly_R410a_EEV_18.mo +++ b/AixLib/Fluid/Actuators/Valves/ExpansionValves/Utilities/FlowCoefficient/SpecifiedFlowCoefficients/Poly_R410a_EEV_18.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Actuators.Valves.ExpansionValves.Utilities.FlowCoefficient.SpecifiedFlowCoefficients; +within AixLib.Fluid.Actuators.Valves.ExpansionValves.Utilities.FlowCoefficient.SpecifiedFlowCoefficients; model Poly_R410a_EEV_18 "Polynomial - R410a - EEV - 1.8 mm" extends PolynomialFlowCoefficient( final polyMod=Types.PolynomialModels.Li2013, @@ -17,60 +17,66 @@ model Poly_R410a_EEV_18 "Polynomial - R410a - EEV - 1.8 mm" This model contains a calculation procedure for flow coefficients presented by Li (2013).

                - - - - - - - - - - - - - - - - - +
                - Reference - - Formula - - Refrigerants - - Validity Tcondensing - - Validity Tevaporating - - Validity Tsubcooling -
                - Li2013 - - C = a1 + a2*opening + a3*opening^2 + - a4*opening*(Tsubcooling/Tcrit) + - a5*(Tsubcooling/Tcrit) + - a6*(Tsubcooling/Tcrit)^2 - - R410A - - 30 - 50 °C - - 0 - 30 °C - - 1.5 - 15 °C -
                +
                + \"Power approaches\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + + +
                + Reference + + Formula + + Refrigerants + + Validity Tcondensing + + Validity Tevaporating + + Validity Tsubcooling +
                + Li2013 + + C = a1 + a2*opening + a3*opening^2 + + a4*opening*(Tsubcooling/Tcrit) + + a5*(Tsubcooling/Tcrit) + + a6*(Tsubcooling/Tcrit)^2 + + R410A + + 30 - 50 °C + + 0 - 30 °C + + 1.5 - 15 °C +
                +

                + References +

                +

                + Li, W. (2013): Simplified + modeling analysis ofmass flow characteristics in electronic + expansion valve. In: Applied Thermal Engineering + 53(1), S. 8–12 +

                +
                -

                - References -

                -

                - Li, W. (2013): Simplified - modeling analysis ofmass flow characteristics in electronic expansion - valve. In: Applied Thermal Engineering 53(1), S. 8–12 -

                ")); end Poly_R410a_EEV_18; diff --git a/AixLib/Fluid/Actuators/Valves/ExpansionValves/Utilities/FlowCoefficient/SpecifiedFlowCoefficients/Power_R134a_EEV_15.mo b/AixLib/Fluid/Actuators/Valves/ExpansionValves/Utilities/FlowCoefficient/SpecifiedFlowCoefficients/Power_R134a_EEV_15.mo index 9be85415c9..d2a7894302 100644 --- a/AixLib/Fluid/Actuators/Valves/ExpansionValves/Utilities/FlowCoefficient/SpecifiedFlowCoefficients/Power_R134a_EEV_15.mo +++ b/AixLib/Fluid/Actuators/Valves/ExpansionValves/Utilities/FlowCoefficient/SpecifiedFlowCoefficients/Power_R134a_EEV_15.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Actuators.Valves.ExpansionValves.Utilities.FlowCoefficient.SpecifiedFlowCoefficients; +within AixLib.Fluid.Actuators.Valves.ExpansionValves.Utilities.FlowCoefficient.SpecifiedFlowCoefficients; model Power_R134a_EEV_15 "Power - R134a - EEV - 1.5 mm" extends PowerFlowCoefficient( final powMod=Types.PowerModels.ZhifangAndOu2008, @@ -16,61 +16,66 @@ model Power_R134a_EEV_15 "Power - R134a - EEV - 1.5 mm" This model contains a calculation procedure for flow coefficients presented by Zhifang et al. (2008).

                - - - - - - - - - - - - - - - - - +
                - Reference - - Formula - - Refrigerants - - Validity Tcondensing - - Validity Tevaporating - - Validity Tsubcooling -
                - ZhifangAndOu2008 - - C = a * ((pinlet-poutlet) * - sqrt(A)/σinlet)^b1 * - (dinlet*sqrt(ρinlet * - pinlet)/μinlet)^b2 - - R134a - - 31 - 67.17 °C - - no information - - 0 - 20 °C -
                +
                + \"Power approaches\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + + +
                + Reference + + Formula + + Refrigerants + + Validity Tcondensing + + Validity Tevaporating + + Validity Tsubcooling +
                + ZhifangAndOu2008 + + C = a * ((pinlet-poutlet) * + sqrt(A)/σinlet)^b1 * + (dinlet*sqrt(ρinlet * + pinlet)/μinlet)^b2 + + R134a + + 31 - 67.17 °C + + no information + + 0 - 20 °C +
                +

                + References +

                +

                + X. Zhifang, S. Lin and O. Hongfei. (2008): Refrigerant + flow characteristics of electronic expansion valve based on + thermodynamic analysis and experiment. In: Applied Thermal + Engineering 28(2), S. 2381–243 +

                +
                -

                - References -

                -

                - X. Zhifang, S. Lin and O. Hongfei. (2008): Refrigerant - flow characteristics of electronic expansion valve based on - thermodynamic analysis and experiment. In: Applied Thermal - Engineering 28(2), S. 2381–243 -

                ")); end Power_R134a_EEV_15; diff --git a/AixLib/Fluid/Actuators/Valves/ExpansionValves/Utilities/FlowCoefficient/package.mo b/AixLib/Fluid/Actuators/Valves/ExpansionValves/Utilities/FlowCoefficient/package.mo index 5bfe49af05..4a28e4bc08 100644 --- a/AixLib/Fluid/Actuators/Valves/ExpansionValves/Utilities/FlowCoefficient/package.mo +++ b/AixLib/Fluid/Actuators/Valves/ExpansionValves/Utilities/FlowCoefficient/package.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Actuators.Valves.ExpansionValves.Utilities; +within AixLib.Fluid.Actuators.Valves.ExpansionValves.Utilities; package FlowCoefficient "Package that contains models describing different flow coefficients" extends Modelica.Icons.Package; @@ -46,146 +46,153 @@ package FlowCoefficient "Package that contains models describing different flow Calculation procedures presented in the litarture have some variables in commen and these variables are presented below:

                - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
                - Variable - - Comment -
                - A - - Cross-sectional flow area -
                - dinlet - - Diameter of the pipe at valve's inlet -
                - pinlet - - Pressure at valve's inlet -
                - poutlet - - Pressure at valve's outlet -
                - ρinlet - - Density at valve's inlet -
                - ρoutlet - - Density at valve's outlet -
                - Tinlet - - Temperature at valve's inlet -
                - μinlet - - Dynamic viscosity at valve's inlet -
                - σinlet - - Surface tension at valve's inlet -
                - Coutlet - - Specific heat capacity at valve's outlet -
                - hfg - - Heat of vaparisation -
                +
                + \"Commen variables\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                + Variable + + Comment +
                + A + + Cross-sectional flow area +
                + dinlet + + Diameter of the pipe at valve's inlet +
                + pinlet + + Pressure at valve's inlet +
                + poutlet + + Pressure at valve's outlet +
                + ρinlet + + Density at valve's inlet +
                + ρoutlet + + Density at valve's outlet +
                + Tinlet + + Temperature at valve's inlet +
                + μinlet + + Dynamic viscosity at valve's inlet +
                + σinlet + + Surface tension at valve's inlet +
                + Coutlet + + Specific heat capacity at valve's outlet +
                + hfg + + Heat of vaparisation +
                +

                + Moreover, two approaches can be identified in general: A + polynomial and a power approach. The characteristics of these + approaches are presented below. +

                +

                + Polynomial approaches +

                +

                + A generic polynomial approach is presented below:
                +
                + C = corFact * sum(a[i]*P[i]^b[i] for i in 1:nT)
                +
                + Actually, two polynomial approaches are implemented in this + package. +

                +

                + Power approaches +

                +

                + A generic power approach is presented below:
                +
                + C = corFact * a * product(P[i]^b[i] for i in + 1:nT)
                +
                + Actually, thee power approaches are implemented in this package. +

                +

                + References +

                +

                + X. Zhifang, S. Lin and O. Hongfei. (2008): Refrigerant + flow characteristics of electronic expansion valve based on + thermodynamic analysis and experiment. In: Applied Thermal + Engineering 28(2), S. 238–243 +

                +

                + Q. Ye, J. Chen and Z. Chen. (2007): Experimental + investigation of R407c and R410a flow through electronic + expansion valve. In: Energy Conversion andManagement + 48(5), S. 1624–1630 +

                +
                -

                - Moreover, two approaches can be identified in general: A polynomial - and a power approach. The characteristics of these approaches are - presented below. -

                -

                - Polynomial approaches -

                -

                - A generic polynomial approach is presented below:
                -
                - C = corFact * sum(a[i]*P[i]^b[i] for i in 1:nT)
                -
                - Actually, two polynomial approaches are implemented in this package. -

                -

                - Power approaches -

                -

                - A generic power approach is presented below:
                -
                - C = corFact * a * product(P[i]^b[i] for i in 1:nT)
                -
                - Actually, thee power approaches are implemented in this package. -

                -

                - References -

                -

                - X. Zhifang, S. Lin and O. Hongfei. (2008): Refrigerant - flow characteristics of electronic expansion valve based on - thermodynamic analysis and experiment. In: Applied Thermal - Engineering 28(2), S. 238–243 -

                -

                - Q. Ye, J. Chen and Z. Chen. (2007): Experimental - investigation of R407c and R410a flow through electronic expansion - valve. In: Energy Conversion andManagement 48(5), S. - 1624–1630 -

                ")); end FlowCoefficient; diff --git a/AixLib/Fluid/Actuators/Valves/ExpansionValves/Utilities/ModularSensors.mo b/AixLib/Fluid/Actuators/Valves/ExpansionValves/Utilities/ModularSensors.mo index 4c566ac5d7..4b147cca07 100644 --- a/AixLib/Fluid/Actuators/Valves/ExpansionValves/Utilities/ModularSensors.mo +++ b/AixLib/Fluid/Actuators/Valves/ExpansionValves/Utilities/ModularSensors.mo @@ -5,35 +5,32 @@ model ModularSensors // Definition of parameters // - parameter Modelica.SIunits.Time tau = 1 - "Time constant at nominal flow rate" - annotation(Dialog(tab="Sensors",group="General")); + parameter Modelica.Units.SI.Time tau=1 "Time constant at nominal flow rate" + annotation (Dialog(tab="Sensors", group="General")); parameter Boolean transferHeat=false "if true, temperature T converges towards TAmb when no flow" annotation(Dialog(tab="Sensors",group="Temperature sensor")); - parameter Modelica.SIunits.Temperature TAmb=Medium.T_default + parameter Modelica.Units.SI.Temperature TAmb=Medium.T_default "Fixed ambient temperature for heat transfer" - annotation(Dialog(tab="Sensors",group="Temperature sensor")); - parameter Modelica.SIunits.Time tauHeaTra=1200 + annotation (Dialog(tab="Sensors", group="Temperature sensor")); + parameter Modelica.Units.SI.Time tauHeaTra=1200 "Time constant for heat transfer, default 20 minutes" - annotation(Dialog(tab="Sensors",group="Temperature sensor")); + annotation (Dialog(tab="Sensors", group="Temperature sensor")); parameter Modelica.Blocks.Types.Init initType= Modelica.Blocks.Types.Init.InitialState "Type of initialization (InitialState and InitialOutput are identical)" annotation(Dialog(tab="Sensors",group="Initialisation")); - parameter Modelica.SIunits.Temperature T_start= - Medium.T_default + parameter Modelica.Units.SI.Temperature T_start=Medium.T_default "Initial or guess value of output (= state)" - annotation(Dialog(tab="Sensors",group="Initialisation")); - parameter Modelica.SIunits.SpecificEnthalpy h_out_start= - Medium.specificEnthalpy_pTX( - p=Medium.p_default, - T=Medium.T_default, - X=Medium.X_default) - "Initial or guess value of output (= state)" - annotation(Dialog(tab="Sensors",group="Initialisation")); + annotation (Dialog(tab="Sensors", group="Initialisation")); + parameter Modelica.Units.SI.SpecificEnthalpy h_out_start= + Medium.specificEnthalpy_pTX( + p=Medium.p_default, + T=Medium.T_default, + X=Medium.X_default) "Initial or guess value of output (= state)" + annotation (Dialog(tab="Sensors", group="Initialisation")); // Extensions // @@ -44,9 +41,9 @@ model ModularSensors Medium.SaturationProperties satPro[nPorts] "Saturation states for each fluid port"; - Modelica.SIunits.SpecificEnthalpy bubEnt[nPorts] + Modelica.Units.SI.SpecificEnthalpy bubEnt[nPorts] "Bubble enthalpies for each fluid port"; - Modelica.SIunits.SpecificEnthalpy dewEnt[nPorts] + Modelica.Units.SI.SpecificEnthalpy dewEnt[nPorts] "Dew enthalpies for each fluid port"; Real pTriCri[nPorts] "Trigger to check if medium exceeds critical pressure"; diff --git a/AixLib/Fluid/Actuators/Valves/ThreeWayEqualPercentageLinear.mo b/AixLib/Fluid/Actuators/Valves/ThreeWayEqualPercentageLinear.mo index 4b2b94414e..68cd548c12 100644 --- a/AixLib/Fluid/Actuators/Valves/ThreeWayEqualPercentageLinear.mo +++ b/AixLib/Fluid/Actuators/Valves/ThreeWayEqualPercentageLinear.mo @@ -25,69 +25,83 @@ equation annotation ( Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100, -100},{100,100}}), graphics={Text( extent={{-72,24},{-34,-20}}, - lineColor=DynamicSelect({255,255,255}, (1-y)*{255,255,255}), + textColor=DynamicSelect({255,255,255}, (1-y)*{255,255,255}), fillPattern=FillPattern.Solid, textString="%%")}), defaultComponentName="val", Documentation(info=" -

                -Three way valve with equal percentage characteristics -between port_1 and port_2 -and linear opening characteristic between port_3 and port_2. -Such opening characteristics were typical for valves from Landis & Gyr (now -Siemens). -

                -This model is based on the partial valve models - -AixLib.Fluid.Actuators.BaseClasses.PartialThreeWayValve and - -AixLib.Fluid.Actuators.BaseClasses.PartialTwoWayValve. -See - -AixLib.Fluid.Actuators.BaseClasses.PartialThreeWayValve -for the implementation of the three way valve -and see - -AixLib.Fluid.Actuators.BaseClasses.PartialTwoWayValve -for the implementation of the regularization near the origin. -

                -", +

                + Three way valve with equal percentage characteristics + between port_1 and port_2 + and linear opening characteristic between port_3 and port_2. + Such opening characteristics were typical for valves from Landis & Gyr (now + Siemens). +

                + This model is based on the partial valve models + + AixLib.Fluid.Actuators.BaseClasses.PartialThreeWayValve and + + AixLib.Fluid.Actuators.BaseClasses.PartialTwoWayValve. + See + + AixLib.Fluid.Actuators.BaseClasses.PartialThreeWayValve + for the implementation of the three way valve + and see + + AixLib.Fluid.Actuators.BaseClasses.PartialTwoWayValve + for the implementation of the regularization near the origin. +

                + ", revisions=" -
                  -
                • -February 21, 2020, by Michael Wetter:
                  -Changed icon to display its operating stage.
                  -This is for -#1294. -
                • -
                • -November 5, 2019, by Michael Wetter:
                  -Moved assignment of leakage from -AixLib.Fluid.Actuators.BaseClasses.PartialThreeWayValve -to the parent classes.
                  -This is for -#1227. -
                • -
                • -February 20, 2012 by Michael Wetter:
                  -Renamed parameter dp_nominal to dpValve_nominal, -and added new parameter dpFixed_nominal. -See - -AixLib.Fluid.Actuators.UsersGuide. -
                • -
                • -February 14, 2012 by Michael Wetter:
                  -Added filter to approximate the travel time of the actuator. -
                • -
                • -March 25, 2011, by Michael Wetter:
                  -Added homotopy method. -
                • -
                • -June 16, 2008 by Michael Wetter:
                  -First implementation. -
                • -
                -")); +
                  +
                • + March 7, 2022, by Michael Wetter:
                  + Set final massDynamics=energyDynamics.
                  + This is for + #1542. +
                • +
                • + June 10, 2021, by Michael Wetter:
                  + Changed implementation of the filter and changed the parameter order to a constant + as most users need not change this value.
                  + This is for + #1498. +
                • +
                • + February 21, 2020, by Michael Wetter:
                  + Changed icon to display its operating stage.
                  + This is for + #1294. +
                • +
                • + November 5, 2019, by Michael Wetter:
                  + Moved assignment of leakage from + AixLib.Fluid.Actuators.BaseClasses.PartialThreeWayValve + to the parent classes.
                  + This is for + #1227. +
                • +
                • + February 20, 2012 by Michael Wetter:
                  + Renamed parameter dp_nominal to dpValve_nominal, + and added new parameter dpFixed_nominal. + See + + AixLib.Fluid.Actuators.UsersGuide. +
                • +
                • + February 14, 2012 by Michael Wetter:
                  + Added filter to approximate the travel time of the actuator. +
                • +
                • + March 25, 2011, by Michael Wetter:
                  + Added homotopy method. +
                • +
                • + June 16, 2008 by Michael Wetter:
                  + First implementation. +
                • +
                + "), + __Dymola_LockedEditing="Model from IBPSA"); end ThreeWayEqualPercentageLinear; diff --git a/AixLib/Fluid/Actuators/Valves/ThreeWayLinear.mo b/AixLib/Fluid/Actuators/Valves/ThreeWayLinear.mo index 158a6eb19a..6d6a01432e 100644 --- a/AixLib/Fluid/Actuators/Valves/ThreeWayLinear.mo +++ b/AixLib/Fluid/Actuators/Valves/ThreeWayLinear.mo @@ -17,54 +17,68 @@ equation color={0,0,127})); annotation (defaultComponentName="val", Documentation(info=" -

                -Three way valve with linear opening characteristic. -

                -This model is based on the partial valve models - -AixLib.Fluid.Actuators.BaseClasses.PartialThreeWayValve and - -AixLib.Fluid.Actuators.BaseClasses.PartialTwoWayValve. -See - -AixLib.Fluid.Actuators.BaseClasses.PartialThreeWayValve -for the implementation of the three way valve -and see - -AixLib.Fluid.Actuators.BaseClasses.PartialTwoWayValve -for the implementation of the regularization near the origin. -

                -", +

                + Three way valve with linear opening characteristic. +

                + This model is based on the partial valve models + + AixLib.Fluid.Actuators.BaseClasses.PartialThreeWayValve and + + AixLib.Fluid.Actuators.BaseClasses.PartialTwoWayValve. + See + + AixLib.Fluid.Actuators.BaseClasses.PartialThreeWayValve + for the implementation of the three way valve + and see + + AixLib.Fluid.Actuators.BaseClasses.PartialTwoWayValve + for the implementation of the regularization near the origin. +

                + ", revisions=" -
                  -
                • -November 5, 2019, by Michael Wetter:
                  -Moved assignment of leakage from -AixLib.Fluid.Actuators.BaseClasses.PartialThreeWayValve -to the parent classes.
                  -This is for -#1227. -
                • -
                • -February 20, 2012 by Michael Wetter:
                  -Renamed parameter dp_nominal to dpValve_nominal, -and added new parameter dpFixed_nominal. -See - -AixLib.Fluid.Actuators.UsersGuide. -
                • -
                • -February 14, 2012 by Michael Wetter:
                  -Added filter to approximate the travel time of the actuator. -
                • -
                • -March 25, 2011, by Michael Wetter:
                  -Added homotopy method. -
                • -
                • -June 16, 2008 by Michael Wetter:
                  -First implementation. -
                • -
                -")); +
                  +
                • + March 7, 2022, by Michael Wetter:
                  + Set final massDynamics=energyDynamics.
                  + This is for + #1542. +
                • +
                • + June 10, 2021, by Michael Wetter:
                  + Changed implementation of the filter and changed the parameter order to a constant + as most users need not change this value.
                  + This is for + #1498. +
                • +
                • + November 5, 2019, by Michael Wetter:
                  + Moved assignment of leakage from + AixLib.Fluid.Actuators.BaseClasses.PartialThreeWayValve + to the parent classes.
                  + This is for + #1227. +
                • +
                • + February 20, 2012 by Michael Wetter:
                  + Renamed parameter dp_nominal to dpValve_nominal, + and added new parameter dpFixed_nominal. + See + + AixLib.Fluid.Actuators.UsersGuide. +
                • +
                • + February 14, 2012 by Michael Wetter:
                  + Added filter to approximate the travel time of the actuator. +
                • +
                • + March 25, 2011, by Michael Wetter:
                  + Added homotopy method. +
                • +
                • + June 16, 2008 by Michael Wetter:
                  + First implementation. +
                • +
                + "), + __Dymola_LockedEditing="Model from IBPSA"); end ThreeWayLinear; diff --git a/AixLib/Fluid/Actuators/Valves/ThreeWayTable.mo b/AixLib/Fluid/Actuators/Valves/ThreeWayTable.mo index 1d8b1facbe..efe9ed1b17 100644 --- a/AixLib/Fluid/Actuators/Valves/ThreeWayTable.mo +++ b/AixLib/Fluid/Actuators/Valves/ThreeWayTable.mo @@ -22,107 +22,120 @@ equation annotation (Line(points={{50,70},{88,70},{88,34},{-50,34},{-50,12}}, color={0,0,127})); annotation (defaultComponentName="val", Documentation(info=" -

                -Three way valve with table-specified opening characteristics. -A separate characteristic for each flow path is used. -

                -

                -Each flow path uses an instance of the model - -AixLib.Fluid.Actuators.Valves.TwoWayTable. -Therefore, this model needs to be parameterized the same way as - -AixLib.Fluid.Actuators.Valves.TwoWayTable. -Specifically, -the mass flow rate for the fully open valve is determined based -on the value of the parameter CvData. -For the different valve positions y ∈ [0, 1], this nominal flow rate is -scaled by the values of the parameter -flowCharacteristics1 and flowCharacteristics3, respectively. -These parameters declare a table of the form -

                - - - - - - - -
                y 0 ... 1
                φ l ... 1
                -

                -where l = Kv(y=0)/Kv(y=1) > 0 is the valve leakage. -The first row is the valve opening, and the second row is the -mass flow rate, relative to the mass flow rate of the fully open -valve, under the assumption of a constant pressure difference across the -valve. -A suggested value for the valve leakage is l=0.0001. -If l = 0, then this model will replace it with -l = 10-8 for numerical reasons. -For example, if a valve has Kv=0.5 [m3/h/bar1/2] and -a linear opening characteristics and -a valve leakage of l=0.0001, then one would set -

                -
                - CvData=AixLib.Fluid.Types.CvTypes.Kv
                - Kv = 0.5
                - flowCharacteristics1(y={0,1}, phi={0.0001,1})
                - flowCharacteristics3(y={0,1}, phi={0.0001,1})
                -
                -

                -Note, however, that - -AixLib.Fluid.Actuators.Valves.ThreeWayLinear provides a more -efficient implementation for this simple case. -

                -

                -The parameters flowCharacteristics1 and flowCharacteristics3 must meet the following -requirements, otherwise the model stops with an error: -

                -
                  -
                • -Their arrays -y and phi -must be strictly monotonic increasing. -
                • -
                • -The first value must satisfy -y[1]=0, and -phi[1] must be equal to the -leakage flow rate, which must be bigger than zero. -Otherwise, a default value of 1E-8 is used. -
                • -
                • -The last values must satisfy -y[end]=1 and -phi[end]=1. -
                • -
                -

                -This model is based on the partial valve model - -AixLib.Fluid.Actuators.BaseClasses.PartialTwoWayValve. -Check this model for more information, such -as the regularization near the origin. -

                -

                -For an example that specifies an opening characteristics, see - -AixLib.Fluid.Actuators.Valves.Examples.TwoWayValveTable. -

                - -", +

                + Three way valve with table-specified opening characteristics. + A separate characteristic for each flow path is used. +

                +

                + Each flow path uses an instance of the model + + AixLib.Fluid.Actuators.Valves.TwoWayTable. + Therefore, this model needs to be parameterized the same way as + + AixLib.Fluid.Actuators.Valves.TwoWayTable. + Specifically, + the mass flow rate for the fully open valve is determined based + on the value of the parameter CvData. + For the different valve positions y ∈ [0, 1], this nominal flow rate is + scaled by the values of the parameter + flowCharacteristics1 and flowCharacteristics3, respectively. + These parameters declare a table of the form +

                + + + + + + + +
                y 0 ... 1
                φ l ... 1
                +

                + where l = Kv(y=0)/Kv(y=1) > 0 is the valve leakage. + The first row is the valve opening, and the second row is the + mass flow rate, relative to the mass flow rate of the fully open + valve, under the assumption of a constant pressure difference across the + valve. + A suggested value for the valve leakage is l=0.0001. + If l = 0, then this model will replace it with + l = 10-8 for numerical reasons. + For example, if a valve has Kv=0.5 [m3/h/bar1/2] and + a linear opening characteristics and + a valve leakage of l=0.0001, then one would set +

                +
                +  CvData=AixLib.Fluid.Types.CvTypes.Kv
                +  Kv = 0.5
                +  flowCharacteristics1(y={0,1}, phi={0.0001,1})
                +  flowCharacteristics3(y={0,1}, phi={0.0001,1})
                + 
                +

                + Note, however, that + + AixLib.Fluid.Actuators.Valves.ThreeWayLinear provides a more + efficient implementation for this simple case. +

                +

                + The parameters flowCharacteristics1 and flowCharacteristics3 must meet the following + requirements, otherwise the model stops with an error: +

                +
                  +
                • + Their arrays + y and phi + must be strictly monotonic increasing. +
                • +
                • + The first value must satisfy + y[1]=0, and + phi[1] must be equal to the + leakage flow rate, which must be bigger than zero. + Otherwise, a default value of 1E-8 is used. +
                • +
                • + The last values must satisfy + y[end]=1 and + phi[end]=1. +
                • +
                +

                + This model is based on the partial valve model + + AixLib.Fluid.Actuators.BaseClasses.PartialTwoWayValve. + Check this model for more information, such + as the regularization near the origin. +

                +

                + For an example that specifies an opening characteristics, see + + AixLib.Fluid.Actuators.Valves.Examples.TwoWayValveTable. +

                + + ", revisions=" -
                  -
                • -November 28, 2019, by Michael Wetter:
                  -Revised implementation. -
                • -
                • -November 15, 2019, by Alexander Kümpel:
                  -First implementation. -
                • -
                -"), +
                  +
                • + March 7, 2022, by Michael Wetter:
                  + Set final massDynamics=energyDynamics.
                  + This is for + #1542. +
                • +
                • + June 10, 2021, by Michael Wetter:
                  + Changed implementation of the filter and changed the parameter order to a constant + as most users need not change this value.
                  + This is for + #1498. +
                • +
                • + November 28, 2019, by Michael Wetter:
                  + Revised implementation. +
                • +
                • + November 15, 2019, by Alexander Kümpel:
                  + First implementation. +
                • +
                + "), Icon(graphics={ Rectangle( origin={-80,-79}, @@ -136,5 +149,6 @@ First implementation. Line( points={{-92,-76},{-68,-76}}), Line( - points={{-92,-84},{-68,-84}})})); + points={{-92,-84},{-68,-84}})}), + __Dymola_LockedEditing="Model from IBPSA"); end ThreeWayTable; diff --git a/AixLib/Fluid/Actuators/Valves/TwoWayButterfly.mo b/AixLib/Fluid/Actuators/Valves/TwoWayButterfly.mo index eb31dbacf8..48c20c03c3 100644 --- a/AixLib/Fluid/Actuators/Valves/TwoWayButterfly.mo +++ b/AixLib/Fluid/Actuators/Valves/TwoWayButterfly.mo @@ -45,41 +45,49 @@ model TwoWayButterfly annotation ( defaultComponentName="valBut", Documentation(info=" -

                -Two way valve with the flow characteristic of a typical butterfly valve as listed below. -

                -

                -\"Butterfly -

                -

                Implementation

                -

                -The model assigns a Kv based on the table at -mydatabook.org. -The Kv values listed in the parameter Kvs are reasonable assumptions, -but the actual value can depend much on the design of the specific valve. -Moreover, the Kv values for DN value smaller than DN 150 are a quadratic extrapolation -from the value at DN 150. -

                -", +

                + Two way valve with the flow characteristic of a typical butterfly valve as listed below. +

                +

                + \"Butterfly +

                +

                Implementation

                +

                + The model assigns a Kv based on the table at + mydatabook.org. + The Kv values listed in the parameter Kvs are reasonable assumptions, + but the actual value can depend much on the design of the specific valve. + Moreover, the Kv values for DN value smaller than DN 150 are a quadratic extrapolation + from the value at DN 150. +

                + ", revisions=" -
                  -
                • -December 22, 2020 by Michael Wetter:
                  -Add parameter Kvs. -
                • -
                • -December 20, 2020 by Filip Jorissen:
                  -Revised implementation with default Kv computation. -
                • -
                • -July 8, 2018 by Filip Jorissen:
                  -First implementation. -
                • -
                -"), +
                  +
                • + June 10, 2021, by Michael Wetter:
                  + Changed implementation of the filter and changed the parameter order to a constant + as most users need not change this value.
                  + This is for + #1498. +
                • +
                • + December 22, 2020 by Michael Wetter:
                  + Add parameter Kvs. +
                • +
                • + December 20, 2020 by Filip Jorissen:
                  + Revised implementation with default Kv computation. +
                • +
                • + July 8, 2018 by Filip Jorissen:
                  + First implementation. +
                • +
                + "), Icon(graphics={Ellipse( extent={{-16,18},{16,-14}}, lineColor={0,0,0}, fillColor={0,0,0}, - fillPattern=FillPattern.Solid)})); + fillPattern=FillPattern.Solid)}), + __Dymola_LockedEditing="Model from IBPSA"); end TwoWayButterfly; diff --git a/AixLib/Fluid/Actuators/Valves/TwoWayEqualPercentage.mo b/AixLib/Fluid/Actuators/Valves/TwoWayEqualPercentage.mo index 4ae571464c..2621ee976b 100644 --- a/AixLib/Fluid/Actuators/Valves/TwoWayEqualPercentage.mo +++ b/AixLib/Fluid/Actuators/Valves/TwoWayEqualPercentage.mo @@ -28,76 +28,84 @@ initial equation annotation ( defaultComponentName="val", Documentation(info=" -

                -Two way valve with an equal percentage valve opening characteristic. -

                -This model is based on the partial valve model - -AixLib.Fluid.Actuators.BaseClasses.PartialTwoWayValve. -Check this model for more information, such -as the regularization near the origin. -

                -", revisions=" -
                  -
                • -August 7, 2020, by Ettore Zanetti:
                  -changed the computation of phi using -max(0.1*l, . ) to avoid -phi=0. -See -issue 1376. -
                • -
                • -February 21, 2020, by Michael Wetter:
                  -Changed icon to display its operating state.
                  -This is for -#1294. -
                • -
                • -November 9, 2019, by Filip Jorissen:
                  -Guarded the computation of phi using -max(0, . ) to avoid -negative phi. -See -issue 1223. -
                • -
                • -April 4, 2014, by Michael Wetter:
                  -Moved the assignment of the flow function phi -to the model instantiation because in its base class, -the keyword input -has been added to the variable phi. -
                • -
                • -March 27, 2014 by Michael Wetter:
                  -Revised model for implementation of new valve model that computes the flow function -based on a table. -
                • -
                • -February 20, 2012 by Michael Wetter:
                  -Renamed parameter dp_nominal to dpValve_nominal, -and added new parameter dpFixed_nominal. -See - -AixLib.Fluid.Actuators.UsersGuide. -
                • -
                • -February 14, 2012 by Michael Wetter:
                  -Added filter to approximate the travel time of the actuator. -
                • -
                • -March 25, 2011, by Michael Wetter:
                  -Added homotopy method. -
                • -
                • -June 5, 2008 by Michael Wetter:
                  -First implementation. -
                • -
                -"), Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100}, +

                + Two way valve with an equal percentage valve opening characteristic. +

                + This model is based on the partial valve model + + AixLib.Fluid.Actuators.BaseClasses.PartialTwoWayValve. + Check this model for more information, such + as the regularization near the origin. +

                + ",revisions=" +
                  +
                • + June 10, 2021, by Michael Wetter:
                  + Changed implementation of the filter and changed the parameter order to a constant + as most users need not change this value.
                  + This is for + #1498. +
                • +
                • + August 7, 2020, by Ettore Zanetti:
                  + changed the computation of phi using + max(0.1*l, . ) to avoid + phi=0. + See + issue 1376. +
                • +
                • + February 21, 2020, by Michael Wetter:
                  + Changed icon to display its operating state.
                  + This is for + #1294. +
                • +
                • + November 9, 2019, by Filip Jorissen:
                  + Guarded the computation of phi using + max(0, . ) to avoid + negative phi. + See + issue 1223. +
                • +
                • + April 4, 2014, by Michael Wetter:
                  + Moved the assignment of the flow function phi + to the model instantiation because in its base class, + the keyword input + has been added to the variable phi. +
                • +
                • + March 27, 2014 by Michael Wetter:
                  + Revised model for implementation of new valve model that computes the flow function + based on a table. +
                • +
                • + February 20, 2012 by Michael Wetter:
                  + Renamed parameter dp_nominal to dpValve_nominal, + and added new parameter dpFixed_nominal. + See + + AixLib.Fluid.Actuators.UsersGuide. +
                • +
                • + February 14, 2012 by Michael Wetter:
                  + Added filter to approximate the travel time of the actuator. +
                • +
                • + March 25, 2011, by Michael Wetter:
                  + Added homotopy method. +
                • +
                • + June 5, 2008 by Michael Wetter:
                  + First implementation. +
                • +
                + "),Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100}, {100,100}}), graphics={Text( extent={{-74,20},{-36,-24}}, - lineColor=DynamicSelect({255,255,255}, (1-y)*{255,255,255}), + textColor=DynamicSelect({255,255,255}, (1-y)*{255,255,255}), fillPattern=FillPattern.Solid, - textString="%%")})); + textString="%%")}), + __Dymola_LockedEditing="Model from IBPSA"); end TwoWayEqualPercentage; diff --git a/AixLib/Fluid/Actuators/Valves/TwoWayLinear.mo b/AixLib/Fluid/Actuators/Valves/TwoWayLinear.mo index 2db6a1e973..f7f4ece5af 100644 --- a/AixLib/Fluid/Actuators/Valves/TwoWayLinear.mo +++ b/AixLib/Fluid/Actuators/Valves/TwoWayLinear.mo @@ -9,58 +9,66 @@ initial equation annotation ( defaultComponentName="val", Documentation(info=" -

                -Two way valve with linear opening characteristic. -

                -This model is based on the partial valve model - -AixLib.Fluid.Actuators.BaseClasses.PartialTwoWayValve. -Check this model for more information, such -as the regularization near the origin. -

                -", +

                + Two way valve with linear opening characteristic. +

                + This model is based on the partial valve model + + AixLib.Fluid.Actuators.BaseClasses.PartialTwoWayValve. + Check this model for more information, such + as the regularization near the origin. +

                + ", revisions=" -
                  -
                • -August 7, 2020, by Ettore Zanetti:
                  -changed the computation of phi using -max(0.1*l, . ) to avoid -phi=0. -See -issue 1376. -
                • -
                • -November 9, 2019, by Filip Jorissen:
                  -Guarded the computation of phi using -max(0, . ) to avoid -negative phi. -See -issue 1223. -
                • -
                • -April 4, 2014, by Michael Wetter:
                  -Moved the assignment of the flow function phi -to the model instantiation because in its base class, -the keyword input -has been added to the variable phi. -
                • -
                • -March 27, 2014 by Michael Wetter:
                  -Revised model for implementation of new valve model that computes the flow function -based on a table. -
                • -
                • -February 20, 2012 by Michael Wetter:
                  -Renamed parameter dp_nominal to dpValve_nominal, -and added new parameter dpFixed_nominal=0. -See - -AixLib.Fluid.Actuators.UsersGuide. -
                • -
                • -June 3, 2008 by Michael Wetter:
                  -First implementation. -
                • -
                -")); +
                  +
                • + June 10, 2021, by Michael Wetter:
                  + Changed implementation of the filter and changed the parameter order to a constant + as most users need not change this value.
                  + This is for + #1498. +
                • +
                • + August 7, 2020, by Ettore Zanetti:
                  + changed the computation of phi using + max(0.1*l, . ) to avoid + phi=0. + See + issue 1376. +
                • +
                • + November 9, 2019, by Filip Jorissen:
                  + Guarded the computation of phi using + max(0, . ) to avoid + negative phi. + See + issue 1223. +
                • +
                • + April 4, 2014, by Michael Wetter:
                  + Moved the assignment of the flow function phi + to the model instantiation because in its base class, + the keyword input + has been added to the variable phi. +
                • +
                • + March 27, 2014 by Michael Wetter:
                  + Revised model for implementation of new valve model that computes the flow function + based on a table. +
                • +
                • + February 20, 2012 by Michael Wetter:
                  + Renamed parameter dp_nominal to dpValve_nominal, + and added new parameter dpFixed_nominal=0. + See + + AixLib.Fluid.Actuators.UsersGuide. +
                • +
                • + June 3, 2008 by Michael Wetter:
                  + First implementation. +
                • +
                + "), + __Dymola_LockedEditing="Model from IBPSA"); end TwoWayLinear; diff --git a/AixLib/Fluid/Actuators/Valves/TwoWayPolynomial.mo b/AixLib/Fluid/Actuators/Valves/TwoWayPolynomial.mo index 8aeeec04d1..5e1adcd85b 100644 --- a/AixLib/Fluid/Actuators/Valves/TwoWayPolynomial.mo +++ b/AixLib/Fluid/Actuators/Valves/TwoWayPolynomial.mo @@ -20,56 +20,64 @@ initial equation for i in 0:nP/2 loop assert(sum({c[j+1]*j*(i/nP)^(j-1) for j in 1:size(c, 1) - 1})>=0, "The provided valve polynomial coefficients - do not lead to a strictly increasing characteristic for y=" + String(i/nP)+ ". This is not allowed."); + do not lead to a strictly increasing characteristic for y="+ String(i/nP)+ ". This is not allowed."); end for; end if; assert(c[1]>=0, "The provided valve polynomial coefficients do not lead to - a valve opening that is larger than or equal to zero for a control signal of zero."); + a valve opening that is larger than or equal to zero for a control signal of zero."); assert(sum(c)<=1.1, "The provided valve polynomial coefficients do not lead to - a valve opening that is smaller than or equal to one for a control signal of one."); + a valve opening that is smaller than or equal to one for a control signal of one."); annotation ( defaultComponentName="val", Documentation(info=" -

                -Two way valve with polynomial opening characteristic. -The polynomial coefficients are defined using parameter c. -The elements of c are coefficients for increasing powers of y, -starting with the power 0, which corresponds to a fixed offset. -This valve model can be used to implement valves with a custom -opening characteristic, such as a combination -of a linear and an equal percentage characteristic. -

                -

                -This model is based on the partial valve model - -AixLib.Fluid.Actuators.BaseClasses.PartialTwoWayValve. -Check this model for more information, such -as the regularization near the origin. -

                -", +

                + Two way valve with polynomial opening characteristic. + The polynomial coefficients are defined using parameter c. + The elements of c are coefficients for increasing powers of y, + starting with the power 0, which corresponds to a fixed offset. + This valve model can be used to implement valves with a custom + opening characteristic, such as a combination + of a linear and an equal percentage characteristic. +

                +

                + This model is based on the partial valve model + + AixLib.Fluid.Actuators.BaseClasses.PartialTwoWayValve. + Check this model for more information, such + as the regularization near the origin. +

                + ", revisions=" -
                  -
                • -August 7, 2020, by Ettore Zanetti:
                  -changed the computation of phi using -max(0.1*l, . ) to avoid -phi=0. -See -issue 1376. -
                • -
                • -November 9, 2019, by Filip Jorissen:
                  -Guarded the computation of phi using -max(0, . ) to avoid -negative phi. -See -issue 1223. -
                • -
                • -September 30, 2017 by Filip Jorissen:
                  -First implementation. -
                • -
                -")); +
                  +
                • + June 10, 2021, by Michael Wetter:
                  + Changed implementation of the filter and changed the parameter order to a constant + as most users need not change this value.
                  + This is for + #1498. +
                • +
                • + August 7, 2020, by Ettore Zanetti:
                  + changed the computation of phi using + max(0.1*l, . ) to avoid + phi=0. + See + issue 1376. +
                • +
                • + November 9, 2019, by Filip Jorissen:
                  + Guarded the computation of phi using + max(0, . ) to avoid + negative phi. + See + issue 1223. +
                • +
                • + September 30, 2017 by Filip Jorissen:
                  + First implementation. +
                • +
                + "), + __Dymola_LockedEditing="Model from IBPSA"); end TwoWayPolynomial; diff --git a/AixLib/Fluid/Actuators/Valves/TwoWayPressureIndependent.mo b/AixLib/Fluid/Actuators/Valves/TwoWayPressureIndependent.mo index d355e546f4..da26bfe7f4 100644 --- a/AixLib/Fluid/Actuators/Valves/TwoWayPressureIndependent.mo +++ b/AixLib/Fluid/Actuators/Valves/TwoWayPressureIndependent.mo @@ -18,17 +18,24 @@ protected "Parameter for avoiding unnecessary computations"; constant Real y2dd = 0 "Second derivative at second support point"; - Modelica.SIunits.MassFlowRate m_flow_set - "Requested mass flow rate"; - Modelica.SIunits.PressureDifference dp_min(displayUnit="Pa") + Modelica.Units.SI.MassFlowRate m_flow_set "Requested mass flow rate"; + Modelica.Units.SI.PressureDifference dp_min(displayUnit="Pa") "Minimum pressure difference required for delivering requested mass flow rate"; - Modelica.SIunits.PressureDifference dp_x, dp_x1, dp_x2, dp_y2, dp_y1 + Modelica.Units.SI.PressureDifference dp_x; + Modelica.Units.SI.PressureDifference dp_x1; + Modelica.Units.SI.PressureDifference dp_x2; + Modelica.Units.SI.PressureDifference dp_y2; + Modelica.Units.SI.PressureDifference dp_y1 "Support points for interpolation flow functions"; - Modelica.SIunits.MassFlowRate m_flow_x, m_flow_x1, m_flow_x2, m_flow_y2, m_flow_y1 + Modelica.Units.SI.MassFlowRate m_flow_x; + Modelica.Units.SI.MassFlowRate m_flow_x1; + Modelica.Units.SI.MassFlowRate m_flow_x2; + Modelica.Units.SI.MassFlowRate m_flow_y2; + Modelica.Units.SI.MassFlowRate m_flow_y1 "Support points for interpolation flow functions"; - Modelica.SIunits.MassFlowRate m_flow_smooth + Modelica.Units.SI.MassFlowRate m_flow_smooth "Smooth interpolation result between two flow regimes"; - Modelica.SIunits.PressureDifference dp_smooth + Modelica.Units.SI.PressureDifference dp_smooth "Smooth interpolation result between two flow regimes"; equation @@ -151,124 +158,132 @@ equation end if; annotation (defaultComponentName="val", Documentation(info=" -

                -Two way valve with a pressure-independent valve opening characteristic. -The mass flow rate is controlled such that it is nearly equal to its -set point y*m_flow_nominal, unless the pressure -dp is too low, in which case a regular Kv -characteristic is used. -

                -

                Main equations

                -

                -First the minimum pressure head dp_min -required for delivering the requested mass flow rate -y*m_flow_nominal is computed. If -dp > dp_min then the requested mass flow -rate is supplied. If dp < dp_min then -m_flow = Kv/sqrt(dp). Transition between -these two flow regimes happens in a smooth way. -

                -

                Typical use and important parameters

                -

                -This model is configured by setting m_flow_nominal -to the mass flow rate that the valve should supply when it is -completely open, i.e., y = 1. The pressure drop corresponding -to this working point can be set using dpValve_nominal, -or using a Kv, Cv or Av -value. The parameter dpValve_fixed can be used to add -additional pressure drops, although in this valve it is equivalent to -add these to dpValve_nominal. -

                -

                -The parameter l2 represents the non-ideal -leakage behaviour of this valve for high pressures. -It is assumed that the mass flow rate will rise beyond -the requested mass flow rate y*m_flow_nominal -if dp > dpValve_nominal+dpFixed_nominal. -The parameter l2 represents the slope -of this rise: -d(m_flow)/d(dp) = l2* m_flow_nominal/dp_nominal. -In the ideal case l2=0, but -this may introduce singularities, for instance when -connecting this component with a fixed mass flow source. -

                -

                Options

                -

                -Parameter deltax sets the duration of -the transition region between the two flow regimes -as a fraction of dp_nominal or m_flow_nominal, -depending on the value of from_dp. -

                -

                Implementation

                -

                -Note that the result in the transition region when -using from_dp = true is not identical to -the result when using from_dp = false. -

                -

                -Variables *_y1 and *_y2 -serve a dual use. -They are used to -1) compute the support points at *_x1 and *_x2, -which should not depend on m_flow or dp and -2) to compute the flow functions when outside of this regime, -which does depend on m_flow or dp. -Min and max functions are therefore used such that one equation -can serve both puroposes. -

                -", +

                + Two way valve with a pressure-independent valve opening characteristic. + The mass flow rate is controlled such that it is nearly equal to its + set point y*m_flow_nominal, unless the pressure + dp is too low, in which case a regular Kv + characteristic is used. +

                +

                Main equations

                +

                + First the minimum pressure head dp_min + required for delivering the requested mass flow rate + y*m_flow_nominal is computed. If + dp > dp_min then the requested mass flow + rate is supplied. If dp < dp_min then + m_flow = Kv/sqrt(dp). Transition between + these two flow regimes happens in a smooth way. +

                +

                Typical use and important parameters

                +

                + This model is configured by setting m_flow_nominal + to the mass flow rate that the valve should supply when it is + completely open, i.e., y = 1. The pressure drop corresponding + to this working point can be set using dpValve_nominal, + or using a Kv, Cv or Av + value. The parameter dpValve_fixed can be used to add + additional pressure drops, although in this valve it is equivalent to + add these to dpValve_nominal. +

                +

                + The parameter l2 represents the non-ideal + leakage behaviour of this valve for high pressures. + It is assumed that the mass flow rate will rise beyond + the requested mass flow rate y*m_flow_nominal + if dp > dpValve_nominal+dpFixed_nominal. + The parameter l2 represents the slope + of this rise: + d(m_flow)/d(dp) = l2* m_flow_nominal/dp_nominal. + In the ideal case l2=0, but + this may introduce singularities, for instance when + connecting this component with a fixed mass flow source. +

                +

                Options

                +

                + Parameter deltax sets the duration of + the transition region between the two flow regimes + as a fraction of dp_nominal or m_flow_nominal, + depending on the value of from_dp. +

                +

                Implementation

                +

                + Note that the result in the transition region when + using from_dp = true is not identical to + the result when using from_dp = false. +

                +

                + Variables *_y1 and *_y2 + serve a dual use. + They are used to + 1) compute the support points at *_x1 and *_x2, + which should not depend on m_flow or dp and + 2) to compute the flow functions when outside of this regime, + which does depend on m_flow or dp. + Min and max functions are therefore used such that one equation + can serve both puroposes. +

                + ", revisions=" -
                  -
                • -August 7, 2020, by Ettore Zanetti:
                  -changed the computation of phi using -max(0.1*l, . ) to avoid -phi=0. -See -issue 1376. -
                • -
                • -November 9, 2019, by Filip Jorissen:
                  -Guarded the computation of phi using -max(0, . ) to avoid -negative phi. -See -issue 1223. -
                • -
                • -October 25, 2019, by Jianjun Hu:
                  -Removed icon graphics annotation. This is for -#1225. -
                • -
                • -April 14, 2017, by Filip Jorissen:
                  -Revised implementation using cubicHermite -such that it does not have a local maximum -and such that it is C2-continuous. -See #156. -
                • -
                • -March 24, 2017, by Michael Wetter:
                  -Renamed filteredInput to use_inputFilter.
                  -This is for -#665. -
                • -
                • -March 15, 2016, by Michael Wetter:
                  -Replaced spliceFunction with regStep. -This is for -issue 300. -
                • -
                • -January 22, 2016, by Michael Wetter:
                  -Corrected type declaration of pressure difference. -This is -for #404. -
                • -
                • -January 29, 2015, by Filip Jorissen:
                  -First implementation. -
                • -
                -")); +
                  +
                • + June 10, 2021, by Michael Wetter:
                  + Changed implementation of the filter and changed the parameter order to a constant + as most users need not change this value.
                  + This is for + #1498. +
                • +
                • + August 7, 2020, by Ettore Zanetti:
                  + changed the computation of phi using + max(0.1*l, . ) to avoid + phi=0. + See + issue 1376. +
                • +
                • + November 9, 2019, by Filip Jorissen:
                  + Guarded the computation of phi using + max(0, . ) to avoid + negative phi. + See + issue 1223. +
                • +
                • + October 25, 2019, by Jianjun Hu:
                  + Removed icon graphics annotation. This is for + #1225. +
                • +
                • + April 14, 2017, by Filip Jorissen:
                  + Revised implementation using cubicHermite + such that it does not have a local maximum + and such that it is C2-continuous. + See #156. +
                • +
                • + March 24, 2017, by Michael Wetter:
                  + Renamed filteredInput to use_inputFilter.
                  + This is for + #665. +
                • +
                • + March 15, 2016, by Michael Wetter:
                  + Replaced spliceFunction with regStep. + This is for + issue 300. +
                • +
                • + January 22, 2016, by Michael Wetter:
                  + Corrected type declaration of pressure difference. + This is + for #404. +
                • +
                • + January 29, 2015, by Filip Jorissen:
                  + First implementation. +
                • +
                + "), + __Dymola_LockedEditing="Model from IBPSA"); end TwoWayPressureIndependent; diff --git a/AixLib/Fluid/Actuators/Valves/TwoWayQuickOpening.mo b/AixLib/Fluid/Actuators/Valves/TwoWayQuickOpening.mo index ff99880a8e..77e5a72a15 100644 --- a/AixLib/Fluid/Actuators/Valves/TwoWayQuickOpening.mo +++ b/AixLib/Fluid/Actuators/Valves/TwoWayQuickOpening.mo @@ -25,63 +25,71 @@ initial equation annotation ( defaultComponentName="val", Documentation(info=" -

                -Two way valve with a power function for the valve opening characteristic. -Valves that need to open quickly typically have such a valve characteristics. -

                -This model is based on the partial valve model - -AixLib.Fluid.Actuators.BaseClasses.PartialTwoWayValve. -Check this model for more information, such -as the regularization near the origin. -

                -", +

                + Two way valve with a power function for the valve opening characteristic. + Valves that need to open quickly typically have such a valve characteristics. +

                + This model is based on the partial valve model + + AixLib.Fluid.Actuators.BaseClasses.PartialTwoWayValve. + Check this model for more information, such + as the regularization near the origin. +

                + ", revisions=" -
                  -
                • -August 7, 2020, by Ettore Zanetti:
                  -changed the computation of phi using -max(0.1*l, . ) to avoid -phi=0. -See -issue 1376. -
                • -
                • -November 9, 2019, by Filip Jorissen:
                  -Guarded the computation of phi using -max(0, . ) to avoid -negative phi. -See -issue 1223. -
                • -
                • -April 4, 2014, by Michael Wetter:
                  -Moved the assignment of the flow function phi -to the model instantiation because in its base class, -the keyword input -has been added to the variable phi. -
                • -
                • -March 27, 2014 by Michael Wetter:
                  -Revised model for implementation of new valve model that computes the flow function -based on a table. -
                • -
                • -February 20, 2012 by Michael Wetter:
                  -Renamed parameter dp_nominal to dpValve_nominal, -and added new parameter dpFixed_nominal=0. -See - -AixLib.Fluid.Actuators.UsersGuide. -
                • -
                • -March 25, 2011, by Michael Wetter:
                  -Added homotopy method. -
                • -
                • -June 3, 2008 by Michael Wetter:
                  -First implementation. -
                • -
                -")); +
                  +
                • + June 10, 2021, by Michael Wetter:
                  + Changed implementation of the filter and changed the parameter order to a constant + as most users need not change this value.
                  + This is for + #1498. +
                • +
                • + August 7, 2020, by Ettore Zanetti:
                  + changed the computation of phi using + max(0.1*l, . ) to avoid + phi=0. + See + issue 1376. +
                • +
                • + November 9, 2019, by Filip Jorissen:
                  + Guarded the computation of phi using + max(0, . ) to avoid + negative phi. + See + issue 1223. +
                • +
                • + April 4, 2014, by Michael Wetter:
                  + Moved the assignment of the flow function phi + to the model instantiation because in its base class, + the keyword input + has been added to the variable phi. +
                • +
                • + March 27, 2014 by Michael Wetter:
                  + Revised model for implementation of new valve model that computes the flow function + based on a table. +
                • +
                • + February 20, 2012 by Michael Wetter:
                  + Renamed parameter dp_nominal to dpValve_nominal, + and added new parameter dpFixed_nominal=0. + See + + AixLib.Fluid.Actuators.UsersGuide. +
                • +
                • + March 25, 2011, by Michael Wetter:
                  + Added homotopy method. +
                • +
                • + June 3, 2008 by Michael Wetter:
                  + First implementation. +
                • +
                + "), + __Dymola_LockedEditing="Model from IBPSA"); end TwoWayQuickOpening; diff --git a/AixLib/Fluid/Actuators/Valves/TwoWayTable.mo b/AixLib/Fluid/Actuators/Valves/TwoWayTable.mo index 460db25b88..5796879999 100644 --- a/AixLib/Fluid/Actuators/Valves/TwoWayTable.mo +++ b/AixLib/Fluid/Actuators/Valves/TwoWayTable.mo @@ -11,9 +11,9 @@ model TwoWayTable "Two way valve with table-specified flow characteristics" // 1/k^2, the flowCharacteristics.phi[1] must not be zero. // We therefore set a lower bound. protected - Modelica.Blocks.Tables.CombiTable1D phiLooUp( + Modelica.Blocks.Tables.CombiTable1Dv phiLooUp( final tableOnFile=false, - final table=[flowCharacteristics.y, cat( + final table=[flowCharacteristics.y,cat( 1, {max(flowCharacteristics.phi[1], 1E-8)}, {flowCharacteristics.phi[i] for i in 2:size(flowCharacteristics.phi, 1)})], @@ -49,126 +49,133 @@ equation annotation ( defaultComponentName="val", Documentation(info=" -

                -Two way valve with opening characteristic that is configured through -a table. -

                -

                -The mass flow rate for the fully open valve is determined based -on the value of the parameter CvData. -For the different valve positions y ∈ [0, 1], this nominal flow rate is -scaled by the values of the parameter -flowCharacteristics. -The parameter flowCharacteristics declares a table of the form -

                - - - - - - - -
                y 0 ... 1
                φ l ... 1
                -

                -where l = Kv(y=0)/Kv(y=1) > 0 is the valve leakage. -The first row is the valve opening, and the second row is the -mass flow rate, relative to the mass flow rate of the fully open -valve, under the assumption of a constant pressure difference across the -valve. -A suggested value for the valve leakage is l=0.0001. -If l = 0, then this model will replace it with -l = 10-8 for numerical reasons. -For example, if a valve has Kv=0.5 [m3/h/bar1/2] and -a linear opening characteristics and -a valve leakage of l=0.0001, then one would set -

                -
                - CvData=AixLib.Fluid.Types.CvTypes.Kv
                - Kv = 0.5
                - flowCharacteristics(y={0,1}, phi={0.0001,1})
                - 
                -

                -Note, however, that - -AixLib.Fluid.Actuators.Valves.TwoWayLinear provides a more -efficient implementation for this simple case. -

                -

                -The parameter flowCharacteristics must meet the following -requirements, otherwise the model stops with an error: -

                -
                  -
                • -Their arrays -y and phi -must be strictly monotonic increasing. -
                • -
                • -The first value must satisfy -y[1]=0, and -phi[1] must be equal to the -leakage flow rate, which must be bigger than zero. -Otherwise, a default value of 1E-8 is used. -
                • -
                • -The last values must satisfy -y[end]=1 and -phi[end]=1. -
                • -
                -

                -This model is based on the partial valve model - -AixLib.Fluid.Actuators.BaseClasses.PartialTwoWayValve. -Check this model for more information, such -as the regularization near the origin. -

                -

                -For an example that specifies an opening characteristics, see - -AixLib.Fluid.Actuators.Valves.Examples.TwoWayValveTable. -

                -", revisions=" -
                  -
                • -August 7, 2020, by Ettore Zanetti:
                  -changed the computation of phi using -max(0.1*l, . ) to avoid -phi=0. -See -issue 1376. -
                • -
                • -November 9, 2019, by Filip Jorissen:
                  -Guarded the computation of phi using -max(0, . ) to avoid -negative phi. -See -issue 1223. -
                • -
                • -January 26, 2016, by Michael Wetter:
                  -Removed equality comparison for Real in the -assert statements as this is not allowed in Modelica. -
                • -
                • -August 12, 2014, by Michael Wetter:
                  -Removed the end keyword when accessing array elements, -as this language construct caused an error in OpenModelica. -
                • -
                • -April 4, 2014, by Michael Wetter:
                  -Moved the assignment of the flow function phi -to the model instantiation because in its base class, -the keyword input -has been added to the variable phi. -
                • -
                • -March 26, 2014 by Michael Wetter:
                  -First implementation. -
                • -
                -"), +

                + Two way valve with opening characteristic that is configured through + a table. +

                +

                + The mass flow rate for the fully open valve is determined based + on the value of the parameter CvData. + For the different valve positions y ∈ [0, 1], this nominal flow rate is + scaled by the values of the parameter + flowCharacteristics. + The parameter flowCharacteristics declares a table of the form +

                + + + + + + + +
                y 0 ... 1
                φ l ... 1
                +

                + where l = Kv(y=0)/Kv(y=1) > 0 is the valve leakage. + The first row is the valve opening, and the second row is the + mass flow rate, relative to the mass flow rate of the fully open + valve, under the assumption of a constant pressure difference across the + valve. + A suggested value for the valve leakage is l=0.0001. + If l = 0, then this model will replace it with + l = 10-8 for numerical reasons. + For example, if a valve has Kv=0.5 [m3/h/bar1/2] and + a linear opening characteristics and + a valve leakage of l=0.0001, then one would set +

                +
                +  CvData=AixLib.Fluid.Types.CvTypes.Kv
                +  Kv = 0.5
                +  flowCharacteristics(y={0,1}, phi={0.0001,1})
                +  
                +

                + Note, however, that + + AixLib.Fluid.Actuators.Valves.TwoWayLinear provides a more + efficient implementation for this simple case. +

                +

                + The parameter flowCharacteristics must meet the following + requirements, otherwise the model stops with an error: +

                +
                  +
                • + Their arrays + y and phi + must be strictly monotonic increasing. +
                • +
                • + The first value must satisfy + y[1]=0, and + phi[1] must be equal to the + leakage flow rate, which must be bigger than zero. + Otherwise, a default value of 1E-8 is used. +
                • +
                • + The last values must satisfy + y[end]=1 and + phi[end]=1. +
                • +
                +

                + This model is based on the partial valve model + + AixLib.Fluid.Actuators.BaseClasses.PartialTwoWayValve. + Check this model for more information, such + as the regularization near the origin. +

                +

                + For an example that specifies an opening characteristics, see + + AixLib.Fluid.Actuators.Valves.Examples.TwoWayValveTable. +

                + ",revisions=" +
                  +
                • + June 10, 2021, by Michael Wetter:
                  + Changed implementation of the filter and changed the parameter order to a constant + as most users need not change this value.
                  + This is for + #1498. +
                • +
                • + August 7, 2020, by Ettore Zanetti:
                  + changed the computation of phi using + max(0.1*l, . ) to avoid + phi=0. + See + issue 1376. +
                • +
                • + November 9, 2019, by Filip Jorissen:
                  + Guarded the computation of phi using + max(0, . ) to avoid + negative phi. + See + issue 1223. +
                • +
                • + January 26, 2016, by Michael Wetter:
                  + Removed equality comparison for Real in the + assert statements as this is not allowed in Modelica. +
                • +
                • + August 12, 2014, by Michael Wetter:
                  + Removed the end keyword when accessing array elements, + as this language construct caused an error in OpenModelica. +
                • +
                • + April 4, 2014, by Michael Wetter:
                  + Moved the assignment of the flow function phi + to the model instantiation because in its base class, + the keyword input + has been added to the variable phi. +
                • +
                • + March 26, 2014 by Michael Wetter:
                  + First implementation. +
                • +
                + "), Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100, 100}}), graphics={ Rectangle( @@ -183,5 +190,6 @@ First implementation. Line( points={{-56,-74},{-56,-96}}), Line( - points={{-68,-82},{-44,-82}})})); + points={{-68,-82},{-44,-82}})}), + __Dymola_LockedEditing="Model from IBPSA"); end TwoWayTable; diff --git a/AixLib/Fluid/Actuators/Valves/Validation/ThreeWayValveParameterization.mo b/AixLib/Fluid/Actuators/Valves/Validation/ThreeWayValveParameterization.mo index ad9a8672e4..29e698baed 100644 --- a/AixLib/Fluid/Actuators/Valves/Validation/ThreeWayValveParameterization.mo +++ b/AixLib/Fluid/Actuators/Valves/Validation/ThreeWayValveParameterization.mo @@ -4,9 +4,9 @@ model ThreeWayValveParameterization extends Modelica.Icons.Example; package Medium = AixLib.Media.Water "Medium in the component"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal = 0.4 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=0.4 "Design mass flow rate"; - parameter Modelica.SIunits.PressureDifference dp_nominal = 4500 + parameter Modelica.Units.SI.PressureDifference dp_nominal=4500 "Design pressure drop"; parameter Real Kv_SI = m_flow_nominal/sqrt(dp_nominal) @@ -16,12 +16,13 @@ model ThreeWayValveParameterization "Kv (metric) flow coefficient [m3/h/(bar)^(1/2)]"; parameter Real Cv = Kv_SI/(rhoStd*0.0631/1000/sqrt(6895)) "Cv (US) flow coefficient [USG/min/(psi)^(1/2)]"; - parameter Modelica.SIunits.Area Av = Kv_SI/sqrt(rhoStd) + parameter Modelica.Units.SI.Area Av=Kv_SI/sqrt(rhoStd) "Av (metric) flow coefficient"; - parameter Modelica.SIunits.Density rhoStd= - Medium.density_pTX(101325, 273.15+4, Medium.X_default) - "Standard density"; + parameter Modelica.Units.SI.Density rhoStd=Medium.density_pTX( + 101325, + 273.15 + 4, + Medium.X_default) "Standard density"; AixLib.Fluid.Actuators.Valves.ThreeWayEqualPercentageLinear valOPPoi( redeclare package Medium = Medium, @@ -153,17 +154,18 @@ equation "Simulate and plot"), Diagram(coordinateSystem(extent={{-100,-140},{140,140}})), Documentation(info=" -

                -This model test the parameterization of three-way valves. -All valves are sized equally, but use different configuration options. -Therefore, the valves have all the same mass flow rate. -

                -", revisions=" -
                  -
                • -June 7, 2017, by Michael Wetter:
                  -First implementation. -
                • -
                -")); +

                + This model test the parameterization of three-way valves. + All valves are sized equally, but use different configuration options. + Therefore, the valves have all the same mass flow rate. +

                + ",revisions=" +
                  +
                • + June 7, 2017, by Michael Wetter:
                  + First implementation. +
                • +
                + "), + __Dymola_LockedEditing="Model from IBPSA"); end ThreeWayValveParameterization; diff --git a/AixLib/Fluid/Actuators/Valves/Validation/TwoWayValveParameterization.mo b/AixLib/Fluid/Actuators/Valves/Validation/TwoWayValveParameterization.mo index 59217778f4..22c4390228 100644 --- a/AixLib/Fluid/Actuators/Valves/Validation/TwoWayValveParameterization.mo +++ b/AixLib/Fluid/Actuators/Valves/Validation/TwoWayValveParameterization.mo @@ -6,9 +6,9 @@ model TwoWayValveParameterization package Medium = AixLib.Media.Water; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal = 0.4 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=0.4 "Design mass flow rate"; - parameter Modelica.SIunits.PressureDifference dp_nominal = 4500 + parameter Modelica.Units.SI.PressureDifference dp_nominal=4500 "Design pressure drop"; parameter Real Kv_SI = m_flow_nominal/sqrt(dp_nominal) @@ -18,12 +18,13 @@ model TwoWayValveParameterization "Kv (metric) flow coefficient [m3/h/(bar)^(1/2)]"; parameter Real Cv = Kv_SI/(rhoStd*0.0631/1000/sqrt(6895)) "Cv (US) flow coefficient [USG/min/(psi)^(1/2)]"; - parameter Modelica.SIunits.Area Av = Kv_SI/sqrt(rhoStd) + parameter Modelica.Units.SI.Area Av=Kv_SI/sqrt(rhoStd) "Av (metric) flow coefficient"; - parameter Modelica.SIunits.Density rhoStd= - Medium.density_pTX(101325, 273.15+4, Medium.X_default) - "Standard density"; + parameter Modelica.Units.SI.Density rhoStd=Medium.density_pTX( + 101325, + 273.15 + 4, + Medium.X_default) "Standard density"; AixLib.Fluid.Actuators.Valves.TwoWayLinear valOPPoi( redeclare package Medium = Medium, @@ -135,33 +136,34 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Actuators/Valves/Validation/TwoWayValveParameterization.mos" "Simulate and plot"), Documentation(info=" -

                -Test model for two way valves. This model tests the -different parameterization of the valve model. -All valves have the same mass flow rates. -

                -", revisions=" -
                  -
                • -June 7, 2017, by Michael Wetter:
                  -Removed assertion blocks, exposed common parameters, -and added a valve that uses Av as the parameter. -
                • -
                • -April 1, 2013, by Michael Wetter:
                  -Removed the valve from Modelica.Fluid to allow a successful check -of the model in the pedantic mode in Dymola 2014. -
                • -
                • -March 1, 2013, by Michael Wetter:
                  -Removed assignment of dpValve_nominal if -CvData <> AixLib.Fluid.Types.CvTypes.OpPoint, -as in this case, it is computed by the model. -
                • -
                • -February 18, 2009 by Michael Wetter:
                  -First implementation. -
                • -
                -")); +

                + Test model for two way valves. This model tests the + different parameterization of the valve model. + All valves have the same mass flow rates. +

                + ",revisions=" +
                  +
                • + June 7, 2017, by Michael Wetter:
                  + Removed assertion blocks, exposed common parameters, + and added a valve that uses Av as the parameter. +
                • +
                • + April 1, 2013, by Michael Wetter:
                  + Removed the valve from Modelica.Fluid to allow a successful check + of the model in the pedantic mode in Dymola 2014. +
                • +
                • + March 1, 2013, by Michael Wetter:
                  + Removed assignment of dpValve_nominal if + CvData <> AixLib.Fluid.Types.CvTypes.OpPoint, + as in this case, it is computed by the model. +
                • +
                • + February 18, 2009 by Michael Wetter:
                  + First implementation. +
                • +
                + "), + __Dymola_LockedEditing="Model from IBPSA"); end TwoWayValveParameterization; diff --git a/AixLib/Fluid/Actuators/Valves/Validation/package.mo b/AixLib/Fluid/Actuators/Valves/Validation/package.mo index d423fe4f32..94911a046b 100644 --- a/AixLib/Fluid/Actuators/Valves/Validation/package.mo +++ b/AixLib/Fluid/Actuators/Valves/Validation/package.mo @@ -1,4 +1,3 @@ - within AixLib.Fluid.Actuators.Valves; package Validation "Collection of validation models" extends Modelica.Icons.ExamplesPackage; diff --git a/AixLib/Fluid/Actuators/Valves/package.mo b/AixLib/Fluid/Actuators/Valves/package.mo index 8688510af9..14db02eeda 100644 --- a/AixLib/Fluid/Actuators/Valves/package.mo +++ b/AixLib/Fluid/Actuators/Valves/package.mo @@ -1,6 +1,7 @@ within AixLib.Fluid.Actuators; package Valves "Package with valve models" extends Modelica.Icons.VariantsPackage; + annotation (preferredView="info", Documentation(info=" This package contains component models for two- and three-way valves. For motor models, see diff --git a/AixLib/Fluid/Actuators/package.mo b/AixLib/Fluid/Actuators/package.mo index 7c9614bf4f..c27c39269d 100644 --- a/AixLib/Fluid/Actuators/package.mo +++ b/AixLib/Fluid/Actuators/package.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid; +within AixLib.Fluid; package Actuators "Package with actuator models such as valves and dampers" extends Modelica.Icons.VariantsPackage; diff --git a/AixLib/Fluid/BaseClasses/ActuatorFilter.mo b/AixLib/Fluid/BaseClasses/ActuatorFilter.mo new file mode 100644 index 0000000000..9038be7785 --- /dev/null +++ b/AixLib/Fluid/BaseClasses/ActuatorFilter.mo @@ -0,0 +1,110 @@ +within AixLib.Fluid.BaseClasses; +block ActuatorFilter + "Filter used for actuators of valves, dampers and movers" + import Modelica.Blocks.Types.Init; + extends Modelica.Blocks.Interfaces.SISO; + + constant Integer n=2 "Order of filter"; + parameter Modelica.Units.SI.Frequency f(start=1) "Cut-off frequency"; + parameter Boolean normalized = true + "= true, if amplitude at f_cut is 3 dB, otherwise unmodified filter"; + parameter Modelica.Blocks.Types.Init initType=Modelica.Blocks.Types.Init.NoInit + "Type of initialization (1: no init, 2: steady state, 3: initial state, 4: initial output)" + annotation ( + Evaluate=true, + Dialog(group="Initialization")); + parameter Real x_start[n]=zeros(n) "Initial or guess values of states" + annotation (Dialog(group="Initialization")); + parameter Real y_start=0.0 + "Initial value of output (remaining states are in steady state)" + annotation(Dialog(enable=initType == Init.InitialOutput, group= + "Initialization")); + + parameter Real u_nominal = 1 "Magnitude of input"; + + Real x[n](each final stateSelect=StateSelect.never) = u_nom*s + "Transformed filter states"; + + +protected + final parameter Real u_nom = if abs(u_nominal-1) < 1E-12 then 1-1E-12 else u_nominal + "Magnitude of input (set to a value different from 1 to avoid elimination by symbolic processing)"; + + parameter Real alpha=if normalized then sqrt(2^(1/n) - 1) else 1.0 + "Frequency correction factor for normalized filter"; + parameter Real w_u=2*Modelica.Constants.pi*f/alpha/u_nom; + + Real s[n](start=x_start/u_nom) "Filter states"; + +initial equation + if initType == Init.SteadyState then + der(s) = zeros(n); + elseif initType == Init.InitialState then + s = x_start/u_nom; + elseif initType == Init.InitialOutput then + y = y_start; + der(s[1:n - 1]) = zeros(n - 1); + end if; + +equation + der(s[1]) = (u - u_nom*s[1])*w_u; + for i in 2:n loop + der(s[i]) = (u_nom*s[i - 1] - u_nom*s[i])*w_u; + end for; + y =u_nom*s[n]; + + annotation ( + defaultComponentName="act", + Icon( + coordinateSystem(preserveAspectRatio=true, + extent={{-100.0,-100.0},{100.0,100.0}}), + graphics={ + Line(points={{-80.6897,77.6256},{-80.6897,-90.3744}}, + color={192,192,192}), + Polygon(lineColor={192,192,192}, + fillColor={192,192,192}, + fillPattern=FillPattern.Solid, + points={{-79.7044,90.6305},{-87.7044,68.6305},{-71.7044,68.6305},{-79.7044,90.6305}}), + Line(points={{-90.0,-80.0},{82.0,-80.0}}, + color={192,192,192}), + Polygon(lineColor={192,192,192}, + fillColor={192,192,192}, + fillPattern=FillPattern.Solid, + points={{90.0,-80.0},{68.0,-72.0},{68.0,-88.0},{90.0,-80.0}}), + Line(origin = {-17.976,-6.521}, + points = {{96.962,55.158},{16.42,50.489},{-18.988,18.583},{-32.024,-53.479},{-62.024,-73.479}}, + color = {0,0,127}, + smooth = Smooth.Bezier), + Text(textColor={192,192,192}, + extent={{-70.0,48.0},{26.0,94.0}}, + textString="%n"), + Text(extent={{8.0,-146.0},{8.0,-106.0}}, + textString="f=%f")}), + Diagram(coordinateSystem(preserveAspectRatio=true, extent={{-100,-100},{ + 100,100}})), + Documentation(info=" +

                + This block implements a filter that is used to approximate the actuators + of valves, dampers and fans. +

                +

                Implementation

                +

                + The implementation is based on + + Modelica.Blocks.Continuous.CriticalDamping. + It differs from that model in that the internal state of the filter s + is transformed using x = u_nominal*s. + It turns out that this transformation leads to smaller system of nonlinear equations if u_nominal ≠ 0, see + IBPSA, #1498 + for a discussion. + ",revisions=" +

                  +
                • + July 22, 2021, by Michael Wetter:
                  + First implementation for + IBPSA, #1498 +
                • +
                + "), + __Dymola_LockedEditing="Model from IBPSA"); +end ActuatorFilter; diff --git a/AixLib/Fluid/BaseClasses/FlowModels/Validation/BasicFlowFunction_dp_DerivativeCheck.mo b/AixLib/Fluid/BaseClasses/FlowModels/Validation/BasicFlowFunction_dp_DerivativeCheck.mo index c5f078d31d..54eeb1809c 100644 --- a/AixLib/Fluid/BaseClasses/FlowModels/Validation/BasicFlowFunction_dp_DerivativeCheck.mo +++ b/AixLib/Fluid/BaseClasses/FlowModels/Validation/BasicFlowFunction_dp_DerivativeCheck.mo @@ -6,19 +6,19 @@ model BasicFlowFunction_dp_DerivativeCheck constant Real gain = 2 "Gain for computing the mass flow rate"; parameter Real k = 0.35 "Flow coefficient"; - parameter Modelica.SIunits.MassFlowRate m_flow_turbulent = 0.36 + parameter Modelica.Units.SI.MassFlowRate m_flow_turbulent=0.36 "Mass flow rate where transition to turbulent flow occurs"; - Modelica.SIunits.MassFlowRate m_flow "Mass flow rate"; - Modelica.SIunits.MassFlowRate m_flow_comp "Comparison value for m_flow"; - Modelica.SIunits.PressureDifference dp "Pressure drop"; - Modelica.SIunits.MassFlowRate err "Integration error"; + Modelica.Units.SI.MassFlowRate m_flow "Mass flow rate"; + Modelica.Units.SI.MassFlowRate m_flow_comp "Comparison value for m_flow"; + Modelica.Units.SI.PressureDifference dp "Pressure drop"; + Modelica.Units.SI.MassFlowRate err "Integration error"; initial equation m_flow = m_flow_comp; equation dp = time*gain; m_flow = AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_dp( dp=dp, - k= k, + k = k, m_flow_turbulent=m_flow_turbulent); der(m_flow) = der(m_flow_comp); err = m_flow-m_flow_comp; @@ -31,28 +31,29 @@ experiment( __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/BaseClasses/FlowModels/Validation/BasicFlowFunction_dp_DerivativeCheck.mos" "Simulate and plot"), Documentation(info=" -

                -This model validates the implementation of - -AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_dp -and its first order derivative - -AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_dp_der. -If the derivative implementation is wrong, the simulation will stop with an error. -

                -", +

                + This model validates the implementation of + + AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_dp + and its first order derivative + + AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_dp_der. + If the derivative implementation is wrong, the simulation will stop with an error. +

                + ", revisions=" -
                  -
                • -January 22, 2016, by Michael Wetter:
                  -Corrected type declaration of pressure difference. -This is -for #404. -
                • -
                • -July 29, 2015, by Michael Wetter:
                  -First implementation. -
                • -
                -")); +
                  +
                • + January 22, 2016, by Michael Wetter:
                  + Corrected type declaration of pressure difference. + This is + for #404. +
                • +
                • + July 29, 2015, by Michael Wetter:
                  + First implementation. +
                • +
                + "), + __Dymola_LockedEditing="Model from IBPSA"); end BasicFlowFunction_dp_DerivativeCheck; diff --git a/AixLib/Fluid/BaseClasses/FlowModels/Validation/BasicFlowFunction_dp_DerivativeCheck2.mo b/AixLib/Fluid/BaseClasses/FlowModels/Validation/BasicFlowFunction_dp_DerivativeCheck2.mo index ed98345a87..cc59dc8ccc 100644 --- a/AixLib/Fluid/BaseClasses/FlowModels/Validation/BasicFlowFunction_dp_DerivativeCheck2.mo +++ b/AixLib/Fluid/BaseClasses/FlowModels/Validation/BasicFlowFunction_dp_DerivativeCheck2.mo @@ -4,16 +4,16 @@ model BasicFlowFunction_dp_DerivativeCheck2 extends Modelica.Icons.Example; parameter Real k = 0.35 "Flow coefficient"; - parameter Modelica.SIunits.MassFlowRate m_flow_turbulent = 0.36 + parameter Modelica.Units.SI.MassFlowRate m_flow_turbulent=0.36 "Mass flow rate where transition to turbulent flow occurs"; - Modelica.SIunits.MassFlowRate m_flow "Mass flow rate"; - Modelica.SIunits.MassFlowRate m_flow_comp "Comparison value for m_flow"; + Modelica.Units.SI.MassFlowRate m_flow "Mass flow rate"; + Modelica.Units.SI.MassFlowRate m_flow_comp "Comparison value for m_flow"; Real der_m_flow(unit="kg/s2") "1st order derivative of mass flow rate"; Real der_m_flow_comp(unit="kg/s2") "2nd order derivative of comparison value for m_flow"; - Modelica.SIunits.PressureDifference dp "Pressure drop"; - Modelica.SIunits.MassFlowRate err_m_flow "Integration error for m_flow"; + Modelica.Units.SI.PressureDifference dp "Pressure drop"; + Modelica.Units.SI.MassFlowRate err_m_flow "Integration error for m_flow"; Real err_der_m_flow(unit="kg/s2") "Integration error for der_m_flow"; initial equation m_flow = m_flow_comp; @@ -26,7 +26,7 @@ equation m_flow = AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_dp( dp=dp, - k= k, + k = k, m_flow_turbulent=m_flow_turbulent); // Equate first and second order derivatives @@ -47,37 +47,38 @@ experiment( __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/BaseClasses/FlowModels/Validation/BasicFlowFunction_dp_DerivativeCheck2.mos" "Simulate and plot"), Documentation(info=" -

                -This model validates the implementation of - -AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_dp -and its second order derivative - -AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_dp_der2. -If the derivative implementation is wrong, the simulation will stop with an error. -

                -

                Implementation

                -

                -The pressure drop dp is increased non-linearly in order -for the first and second derivatives in - -AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_dp_der2 -to be non-zero during part of the simulation. This will ensure -full code coverage of this function. -

                -", +

                + This model validates the implementation of + + AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_dp + and its second order derivative + + AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_dp_der2. + If the derivative implementation is wrong, the simulation will stop with an error. +

                +

                Implementation

                +

                + The pressure drop dp is increased non-linearly in order + for the first and second derivatives in + + AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_dp_der2 + to be non-zero during part of the simulation. This will ensure + full code coverage of this function. +

                + ", revisions=" -
                  -
                • -January 22, 2016, by Michael Wetter:
                  -Corrected type declaration of pressure difference. -This is -for #404. -
                • -
                • -July 29, 2015, by Michael Wetter:
                  -First implementation. -
                • -
                -")); +
                  +
                • + January 22, 2016, by Michael Wetter:
                  + Corrected type declaration of pressure difference. + This is + for #404. +
                • +
                • + July 29, 2015, by Michael Wetter:
                  + First implementation. +
                • +
                + "), + __Dymola_LockedEditing="Model from IBPSA"); end BasicFlowFunction_dp_DerivativeCheck2; diff --git a/AixLib/Fluid/BaseClasses/FlowModels/Validation/BasicFlowFunction_m_flow_DerivativeCheck.mo b/AixLib/Fluid/BaseClasses/FlowModels/Validation/BasicFlowFunction_m_flow_DerivativeCheck.mo index a57081f9c4..bcd615f015 100644 --- a/AixLib/Fluid/BaseClasses/FlowModels/Validation/BasicFlowFunction_m_flow_DerivativeCheck.mo +++ b/AixLib/Fluid/BaseClasses/FlowModels/Validation/BasicFlowFunction_m_flow_DerivativeCheck.mo @@ -6,19 +6,19 @@ model BasicFlowFunction_m_flow_DerivativeCheck constant Real gain = 0.5 "Gain for computing the mass flow rate"; parameter Real k = 0.35 "Flow coefficient"; - parameter Modelica.SIunits.MassFlowRate m_flow_turbulent = 0.36 + parameter Modelica.Units.SI.MassFlowRate m_flow_turbulent=0.36 "Mass flow rate where transition to turbulent flow occurs"; - Modelica.SIunits.MassFlowRate m_flow "Mass flow rate"; - Modelica.SIunits.PressureDifference dp "Pressure drop"; - Modelica.SIunits.PressureDifference dp_comp "Comparison value for dp"; - Modelica.SIunits.PressureDifference err "Integration error"; + Modelica.Units.SI.MassFlowRate m_flow "Mass flow rate"; + Modelica.Units.SI.PressureDifference dp "Pressure drop"; + Modelica.Units.SI.PressureDifference dp_comp "Comparison value for dp"; + Modelica.Units.SI.PressureDifference err "Integration error"; initial equation dp = dp_comp; equation m_flow = time*gain; dp = AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_m_flow( m_flow=m_flow, - k= k, + k = k, m_flow_turbulent=m_flow_turbulent); der(dp) = der(dp_comp); err = dp-dp_comp; @@ -30,28 +30,29 @@ experiment(StartTime=-2, __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/BaseClasses/FlowModels/Validation/BasicFlowFunction_m_flow_DerivativeCheck.mos" "Simulate and plot"), Documentation(info=" -

                -This model validates the implementation of - -AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_m_flow -and its first order derivative - -AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_m_flow_der. -If the derivative implementation is wrong, the simulation will stop with an error. -

                -", +

                + This model validates the implementation of + + AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_m_flow + and its first order derivative + + AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_m_flow_der. + If the derivative implementation is wrong, the simulation will stop with an error. +

                + ", revisions=" -
                  -
                • -January 22, 2016, by Michael Wetter:
                  -Corrected type declaration of pressure difference. -This is -for #404. -
                • -
                • -July 29, 2015, by Michael Wetter:
                  -First implementation. -
                • -
                -")); +
                  +
                • + January 22, 2016, by Michael Wetter:
                  + Corrected type declaration of pressure difference. + This is + for #404. +
                • +
                • + July 29, 2015, by Michael Wetter:
                  + First implementation. +
                • +
                + "), + __Dymola_LockedEditing="Model from IBPSA"); end BasicFlowFunction_m_flow_DerivativeCheck; diff --git a/AixLib/Fluid/BaseClasses/FlowModels/Validation/BasicFlowFunction_m_flow_DerivativeCheck2.mo b/AixLib/Fluid/BaseClasses/FlowModels/Validation/BasicFlowFunction_m_flow_DerivativeCheck2.mo index 137c18d961..140edc23f7 100644 --- a/AixLib/Fluid/BaseClasses/FlowModels/Validation/BasicFlowFunction_m_flow_DerivativeCheck2.mo +++ b/AixLib/Fluid/BaseClasses/FlowModels/Validation/BasicFlowFunction_m_flow_DerivativeCheck2.mo @@ -9,17 +9,17 @@ model BasicFlowFunction_m_flow_DerivativeCheck2 threShold=1e-3) "Block for checking integration error"; parameter Real k = 0.35 "Flow coefficient"; - parameter Modelica.SIunits.MassFlowRate m_flow_turbulent = 0.36 + parameter Modelica.Units.SI.MassFlowRate m_flow_turbulent=0.36 "Mass flow rate where transition to turbulent flow occurs"; - Modelica.SIunits.PressureDifference dp "Pressure drop"; - Modelica.SIunits.PressureDifference dp_comp "Comparison value for dp"; + Modelica.Units.SI.PressureDifference dp "Pressure drop"; + Modelica.Units.SI.PressureDifference dp_comp "Comparison value for dp"; Real der_dp(unit="Pa/s") "1st order derivative of pressure drop"; Real der_dp_comp(unit="Pa/s") "2nd order derivative of comparison value for pressure drop"; - Modelica.SIunits.MassFlowRate m_flow "Mass flow rate"; + Modelica.Units.SI.MassFlowRate m_flow "Mass flow rate"; - Modelica.SIunits.PressureDifference err_dp "Integration error for dp"; + Modelica.Units.SI.PressureDifference err_dp "Integration error for dp"; Real err_der_dp(unit="Pa/s") "Integration error for der_dp"; initial equation dp = dp_comp; @@ -57,31 +57,32 @@ experiment( __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/BaseClasses/FlowModels/Validation/BasicFlowFunction_m_flow_DerivativeCheck2.mos" "Simulate and plot"), Documentation(info=" -

                -This model validates the implementation of - -AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_m_flow -and its second order derivative - -AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_m_flow_der2. -If the derivative implementation is wrong, the simulation will stop with an error. -

                -

                Implementation

                -

                -The mass flow rate m_flow is increased non-linearly in order -for the first and second derivatives in - -AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_m_flow_der2 -to be non-zero during part of the simulation. This will ensure -full code coverage of this function. -

                -", +

                + This model validates the implementation of + + AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_m_flow + and its second order derivative + + AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_m_flow_der2. + If the derivative implementation is wrong, the simulation will stop with an error. +

                +

                Implementation

                +

                + The mass flow rate m_flow is increased non-linearly in order + for the first and second derivatives in + + AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_m_flow_der2 + to be non-zero during part of the simulation. This will ensure + full code coverage of this function. +

                + ", revisions=" -
                  -
                • -July 29, 2015, by Michael Wetter:
                  -First implementation. -
                • -
                -")); +
                  +
                • + July 29, 2015, by Michael Wetter:
                  + First implementation. +
                • +
                + "), + __Dymola_LockedEditing="Model from IBPSA"); end BasicFlowFunction_m_flow_DerivativeCheck2; diff --git a/AixLib/Fluid/BaseClasses/FlowModels/Validation/InverseFlowFunctions.mo b/AixLib/Fluid/BaseClasses/FlowModels/Validation/InverseFlowFunctions.mo index 2c176d95af..473356713a 100644 --- a/AixLib/Fluid/BaseClasses/FlowModels/Validation/InverseFlowFunctions.mo +++ b/AixLib/Fluid/BaseClasses/FlowModels/Validation/InverseFlowFunctions.mo @@ -1,15 +1,16 @@ within AixLib.Fluid.BaseClasses.FlowModels.Validation; model InverseFlowFunctions "Test model for flow function and its inverse" extends Modelica.Icons.Example; - Modelica.SIunits.MassFlowRate m_flow; - Modelica.SIunits.PressureDifference dp(displayUnit="Pa") "Pressure difference"; - Modelica.SIunits.PressureDifference dpCalc(displayUnit="Pa") + Modelica.Units.SI.MassFlowRate m_flow; + Modelica.Units.SI.PressureDifference dp(displayUnit="Pa") + "Pressure difference"; + Modelica.Units.SI.PressureDifference dpCalc(displayUnit="Pa") "Pressure difference computed by the flow functions"; - Modelica.SIunits.Pressure deltaDp(displayUnit="Pa") + Modelica.Units.SI.Pressure deltaDp(displayUnit="Pa") "Pressure difference between input and output to the functions"; - Modelica.SIunits.Time dTime= 2; + Modelica.Units.SI.Time dTime=2; parameter Real k = 0.5; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal = 1 "Nominal flow rate"; + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=1 "Nominal flow rate"; equation dp = (time-0.5)/dTime * 20; m_flow=FlowModels.basicFlowFunction_dp(dp=dp, k=k, m_flow_turbulent=m_flow_nominal*0.3); @@ -20,34 +21,35 @@ experiment(Tolerance=1e-06, StopTime=1), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/BaseClasses/FlowModels/Validation/InverseFlowFunctions.mos" "Simulate and plot"), Documentation(info=" -

                -This model tests the inverse formulation of the flow functions. -The pressure difference dp and dpCalc need to -be equal up to the solver tolerance, except for a small neighborhood -around the origin. In this neighborhood around the origin, the functions - -AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_dp -and - -AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_m_flow -are not invertible. -

                -", revisions=" -
                  -
                • -January 22, 2016, by Michael Wetter:
                  -Corrected type declaration of pressure difference. -This is -for #404. -
                • -
                • -August 8, 2012, by Michael Wetter:
                  -Updated documentation. -
                • -
                • -July 12, 2012, by Michael Wetter:
                  -First implementation. -
                • -
                -")); +

                + This model tests the inverse formulation of the flow functions. + The pressure difference dp and dpCalc need to + be equal up to the solver tolerance, except for a small neighborhood + around the origin. In this neighborhood around the origin, the functions + + AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_dp + and + + AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_m_flow + are not invertible. +

                + ",revisions=" +
                  +
                • + January 22, 2016, by Michael Wetter:
                  + Corrected type declaration of pressure difference. + This is + for #404. +
                • +
                • + August 8, 2012, by Michael Wetter:
                  + Updated documentation. +
                • +
                • + July 12, 2012, by Michael Wetter:
                  + First implementation. +
                • +
                + "), + __Dymola_LockedEditing="Model from IBPSA"); end InverseFlowFunctions; diff --git a/AixLib/Fluid/BaseClasses/FlowModels/Validation/InvertingBasicFlowFunction_dp.mo b/AixLib/Fluid/BaseClasses/FlowModels/Validation/InvertingBasicFlowFunction_dp.mo index 15d54076b2..c24743dfab 100644 --- a/AixLib/Fluid/BaseClasses/FlowModels/Validation/InvertingBasicFlowFunction_dp.mo +++ b/AixLib/Fluid/BaseClasses/FlowModels/Validation/InvertingBasicFlowFunction_dp.mo @@ -4,11 +4,12 @@ model InvertingBasicFlowFunction_dp extends Modelica.Icons.Example; parameter Real k = 0.5 "Flow coefficient"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal = 1.5 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=1.5 "Nominal mass flow rate"; - Modelica.SIunits.MassFlowRate m_flow "Mass flow rate"; - Modelica.SIunits.PressureDifference dp(displayUnit="Pa", start=0) "Pressure difference"; + Modelica.Units.SI.MassFlowRate m_flow "Mass flow rate"; + Modelica.Units.SI.PressureDifference dp(displayUnit="Pa", start=0) + "Pressure difference"; equation m_flow = 4*(time-0.5); m_flow = FlowModels.basicFlowFunction_dp(dp=dp, k=k, m_flow_turbulent=m_flow_nominal*0.3); @@ -18,34 +19,35 @@ experiment(Tolerance=1e-6, StopTime=1.0), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/BaseClasses/FlowModels/Validation/InvertingBasicFlowFunction_dp.mos" "Simulate and plot"), Documentation(info=" -

                -This model tests whether the Modelica translator substitutes the -inverse function for - -AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_dp. -Specifically, this function declares in its annotation section -that its inverse is provided by - -AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_m_flow. -Translating this model should therefore give no nonlinear equations -after the symbolic manipulation. -

                -", revisions=" -
                  -
                • -January 25, 2019, by Michael Wetter:
                  -Added start value to avoid warning in JModelica. -
                • -
                • -January 22, 2016, by Michael Wetter:
                  -Corrected type declaration of pressure difference. -This is -for #404. -
                • -
                • -August 5, 2015, by Michael Wetter:
                  -First implementation. -
                • -
                -")); +

                + This model tests whether the Modelica translator substitutes the + inverse function for + + AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_dp. + Specifically, this function declares in its annotation section + that its inverse is provided by + + AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_m_flow. + Translating this model should therefore give no nonlinear equations + after the symbolic manipulation. +

                + ",revisions=" +
                  +
                • + January 25, 2019, by Michael Wetter:
                  + Added start value to avoid warning in JModelica. +
                • +
                • + January 22, 2016, by Michael Wetter:
                  + Corrected type declaration of pressure difference. + This is + for #404. +
                • +
                • + August 5, 2015, by Michael Wetter:
                  + First implementation. +
                • +
                + "), + __Dymola_LockedEditing="Model from IBPSA"); end InvertingBasicFlowFunction_dp; diff --git a/AixLib/Fluid/BaseClasses/FlowModels/Validation/InvertingBasicFlowFunction_m_flow.mo b/AixLib/Fluid/BaseClasses/FlowModels/Validation/InvertingBasicFlowFunction_m_flow.mo index 9ea4bf0d9b..cf694edc28 100644 --- a/AixLib/Fluid/BaseClasses/FlowModels/Validation/InvertingBasicFlowFunction_m_flow.mo +++ b/AixLib/Fluid/BaseClasses/FlowModels/Validation/InvertingBasicFlowFunction_m_flow.mo @@ -4,11 +4,12 @@ model InvertingBasicFlowFunction_m_flow extends Modelica.Icons.Example; parameter Real k = 0.5 "Flow coefficient"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal = 0.5 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=0.5 "Nominal mass flow rate"; - Modelica.SIunits.MassFlowRate m_flow(start=0) "Mass flow rate"; - Modelica.SIunits.PressureDifference dp(displayUnit="Pa") "Pressure difference"; + Modelica.Units.SI.MassFlowRate m_flow(start=0) "Mass flow rate"; + Modelica.Units.SI.PressureDifference dp(displayUnit="Pa") + "Pressure difference"; equation dp = 4*(time-0.5); dp = FlowModels.basicFlowFunction_m_flow(m_flow=m_flow, k=k, m_flow_turbulent=m_flow_nominal*0.3); @@ -18,34 +19,35 @@ experiment(Tolerance=1e-6, StopTime=1.0), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/BaseClasses/FlowModels/Validation/InvertingBasicFlowFunction_m_flow.mos" "Simulate and plot"), Documentation(info=" -

                -This model tests whether the Modelica translator substitutes the -inverse function for - -AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_m_flow. -Specifically, this function declares in its annotation section -that its inverse is provided by - -AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_dp. -Translating this model should therefore give no nonlinear equations -after the symbolic manipulation. -

                -", revisions=" -
                  -
                • -January 25, 2019, by Michael Wetter:
                  -Added start value to avoid warning in JModelica. -
                • -
                • -January 22, 2016, by Michael Wetter:
                  -Corrected type declaration of pressure difference. -This is -for #404. -
                • -
                • -August 5, 2015, by Michael Wetter:
                  -First implementation. -
                • -
                -")); +

                + This model tests whether the Modelica translator substitutes the + inverse function for + + AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_m_flow. + Specifically, this function declares in its annotation section + that its inverse is provided by + + AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_dp. + Translating this model should therefore give no nonlinear equations + after the symbolic manipulation. +

                + ",revisions=" +
                  +
                • + January 25, 2019, by Michael Wetter:
                  + Added start value to avoid warning in JModelica. +
                • +
                • + January 22, 2016, by Michael Wetter:
                  + Corrected type declaration of pressure difference. + This is + for #404. +
                • +
                • + August 5, 2015, by Michael Wetter:
                  + First implementation. +
                • +
                + "), + __Dymola_LockedEditing="Model from IBPSA"); end InvertingBasicFlowFunction_m_flow; diff --git a/AixLib/Fluid/BaseClasses/FlowModels/basicFlowFunction_dp.mo b/AixLib/Fluid/BaseClasses/FlowModels/basicFlowFunction_dp.mo index c38ad3e6ac..efb6779b42 100644 --- a/AixLib/Fluid/BaseClasses/FlowModels/basicFlowFunction_dp.mo +++ b/AixLib/Fluid/BaseClasses/FlowModels/basicFlowFunction_dp.mo @@ -2,16 +2,16 @@ within AixLib.Fluid.BaseClasses.FlowModels; function basicFlowFunction_dp "Function that computes mass flow rate for given pressure drop" - input Modelica.SIunits.PressureDifference dp(displayUnit="Pa") + input Modelica.Units.SI.PressureDifference dp(displayUnit="Pa") "Pressure difference between port_a and port_b (= port_a.p - port_b.p)"; input Real k(min=0, unit="") "Flow coefficient, k=m_flow/sqrt(dp), with unit=(kg.m)^(1/2)"; - input Modelica.SIunits.MassFlowRate m_flow_turbulent(min=0) + input Modelica.Units.SI.MassFlowRate m_flow_turbulent(min=0) "Mass flow rate where transition to turbulent flow occurs"; - output Modelica.SIunits.MassFlowRate m_flow + output Modelica.Units.SI.MassFlowRate m_flow "Mass flow rate in design flow direction"; protected - Modelica.SIunits.PressureDifference dp_turbulent = (m_flow_turbulent/k)^2 + Modelica.Units.SI.PressureDifference dp_turbulent=(m_flow_turbulent/k)^2 "Pressure where flow changes to turbulent"; Real dpNorm=dp/dp_turbulent "Normalised pressure difference"; @@ -33,101 +33,102 @@ algorithm color={0,0,255}, thickness=1), Text( extent={{-40,-40},{40,-80}}, - lineColor={0,0,0}, + textColor={0,0,0}, fillPattern=FillPattern.Sphere, fillColor={232,0,0}, textString="%name")}), Documentation(info=" -

                -Function that computes the pressure drop of flow elements as -

                -

                - m = sign(Δp) k √ Δp   -

                -

                -with regularization near the origin. -Therefore, the flow coefficient is -

                -

                - k = m ⁄ √ Δp   -

                -

                -The input m_flow_turbulent determines the location of the regularization. -

                -", revisions=" -
                  -
                • -November 9, 2019, by Filip Jorissen:
                  -Added smooth(2, . ) for avoiding -a warning in the check valve model.
                  -See #1240. -
                • -
                • -January 4, 2019, by Michael Wetter:
                  -Set `Inline=false`.
                  -See #1070. -
                • -
                • -May 1, 2017, by Filip Jorissen:
                  -Revised implementation such that -basicFlowFunction_dp -is C2 continuous. -See #725. -
                • -
                • -March 19, 2016, by Michael Wetter:
                  -Added abs function for -AixLib.Fluid.FixedResistances.Validation.PressureDropsExplicit -to work in OpenModelica. -See -OpenModelica ticket 3778. -
                • -
                • -January 22, 2016, by Michael Wetter:
                  -Corrected type declaration of pressure difference. -This is -for #404. -
                • -
                • -July 28, 2015, by Michael Wetter:
                  -Removed double declaration of smooth(..) and smoothOrder -and changed Inline=true to LateInline=true. -This is for -issue 301. -
                • -
                • -July 15, 2015, by Filip Jorissen:
                  -New, more efficient implementation based on regularisation using simple polynomial. -Expanded common subexpressions for function inlining to be possible. -Set Inline=true for inlining to occur. -This is for -#279. -
                • -
                • -January 9, 2014, by Michael Wetter:
                  -Correct revision section, of which there were two. -
                • -
                • -August 10, 2011, by Michael Wetter:
                  -Removed if-then optimization that set m_flow=0 if dp=0, -as this causes the derivative to be discontinuous at dp=0. -
                • -
                • -August 4, 2011, by Michael Wetter:
                  -Removed option to use a linear function. The linear implementation is now done -in models that call this function. With the previous implementation, -the symbolic processor may not rearrange the equations, which can lead -to coupled equations instead of an explicit solution. -
                • -
                • -March 29, 2010 by Michael Wetter:
                  -Changed implementation to allow k=0, which is -the case for a closed valve with no leakage -
                • -
                • -April 13, 2009, by Michael Wetter:
                  -First implementation. -
                • -
                -")); +

                + Function that computes the pressure drop of flow elements as +

                +

                + m = sign(Δp) k √ Δp   +

                +

                + with regularization near the origin. + Therefore, the flow coefficient is +

                +

                + k = m ⁄ √ Δp   +

                +

                + The input m_flow_turbulent determines the location of the regularization. +

                + ",revisions=" +
                  +
                • + November 9, 2019, by Filip Jorissen:
                  + Added smooth(2, . ) for avoiding + a warning in the check valve model.
                  + See #1240. +
                • +
                • + January 4, 2019, by Michael Wetter:
                  + Set `Inline=false`.
                  + See #1070. +
                • +
                • + May 1, 2017, by Filip Jorissen:
                  + Revised implementation such that + basicFlowFunction_dp + is C2 continuous. + See #725. +
                • +
                • + March 19, 2016, by Michael Wetter:
                  + Added abs function for + AixLib.Fluid.FixedResistances.Validation.PressureDropsExplicit + to work in OpenModelica. + See + OpenModelica ticket 3778. +
                • +
                • + January 22, 2016, by Michael Wetter:
                  + Corrected type declaration of pressure difference. + This is + for #404. +
                • +
                • + July 28, 2015, by Michael Wetter:
                  + Removed double declaration of smooth(..) and smoothOrder + and changed Inline=true to LateInline=true. + This is for + issue 301. +
                • +
                • + July 15, 2015, by Filip Jorissen:
                  + New, more efficient implementation based on regularisation using simple polynomial. + Expanded common subexpressions for function inlining to be possible. + Set Inline=true for inlining to occur. + This is for + #279. +
                • +
                • + January 9, 2014, by Michael Wetter:
                  + Correct revision section, of which there were two. +
                • +
                • + August 10, 2011, by Michael Wetter:
                  + Removed if-then optimization that set m_flow=0 if dp=0, + as this causes the derivative to be discontinuous at dp=0. +
                • +
                • + August 4, 2011, by Michael Wetter:
                  + Removed option to use a linear function. The linear implementation is now done + in models that call this function. With the previous implementation, + the symbolic processor may not rearrange the equations, which can lead + to coupled equations instead of an explicit solution. +
                • +
                • + March 29, 2010 by Michael Wetter:
                  + Changed implementation to allow k=0, which is + the case for a closed valve with no leakage +
                • +
                • + April 13, 2009, by Michael Wetter:
                  + First implementation. +
                • +
                + "), + __Dymola_LockedEditing="Model from IBPSA"); end basicFlowFunction_dp; diff --git a/AixLib/Fluid/BaseClasses/FlowModels/basicFlowFunction_dp_der.mo b/AixLib/Fluid/BaseClasses/FlowModels/basicFlowFunction_dp_der.mo index 5af66f2fab..c807a7ce5b 100644 --- a/AixLib/Fluid/BaseClasses/FlowModels/basicFlowFunction_dp_der.mo +++ b/AixLib/Fluid/BaseClasses/FlowModels/basicFlowFunction_dp_der.mo @@ -3,18 +3,18 @@ function basicFlowFunction_dp_der "1st derivative of function that computes mass flow rate for given pressure drop" extends Modelica.Icons.Function; - input Modelica.SIunits.PressureDifference dp(displayUnit="Pa") + input Modelica.Units.SI.PressureDifference dp(displayUnit="Pa") "Pressure difference between port_a and port_b (= port_a.p - port_b.p)"; input Real k(min=0, unit="") "Flow coefficient, k=m_flow/sqrt(dp), with unit=(kg.m)^(1/2)"; - input Modelica.SIunits.MassFlowRate m_flow_turbulent(min=0) + input Modelica.Units.SI.MassFlowRate m_flow_turbulent(min=0) "Mass flow rate where transition to turbulent flow occurs"; input Real dp_der "Derivative of pressure difference between port_a and port_b (= port_a.p - port_b.p)"; output Real m_flow_der(unit="kg/s2") "Derivative of mass flow rate in design flow direction"; protected - Modelica.SIunits.PressureDifference dp_turbulent = (m_flow_turbulent/k)^2 + Modelica.Units.SI.PressureDifference dp_turbulent=(m_flow_turbulent/k)^2 "Pressure where flow changes to turbulent"; Real dpNormSq=(dp/dp_turbulent)^2 "Square of normalised pressure difference"; @@ -27,46 +27,47 @@ algorithm derivative(order=2, zeroDerivative=k, zeroDerivative=m_flow_turbulent)= AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_dp_der2, Documentation(info=" -

                -Function that implements the first order derivative of - -AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_dp -with respect to the mass flow rate. -

                -", +

                + Function that implements the first order derivative of + + AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_dp + with respect to the mass flow rate. +

                + ", revisions=" -
                  -
                • -January 4, 2019, by Michael Wetter:
                  -Set `Inline=false`.
                  -See #1070. -
                • -
                • -May 1, 2017, by Filip Jorissen:
                  -Revised implementation such that - -AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_dp -is C2 continuous. -See #725. -
                • -
                • -April 14, 2017, by Filip Jorissen:
                  -Changed implementation such that it cannot lead to square roots -of negative numbers and reduced the number of required operations. -This is -for #723. -
                • -
                • -January 22, 2016, by Michael Wetter:
                  -Corrected type declaration of pressure difference. -This is -for #404. -
                • -
                • -July 29, 2015, by Michael Wetter:
                  -First implementation to avoid in Dymola 2016 the warning -\"Differentiating ... under the assumption that it is continuous at switching\". -
                • -
                -")); +
                  +
                • + January 4, 2019, by Michael Wetter:
                  + Set `Inline=false`.
                  + See #1070. +
                • +
                • + May 1, 2017, by Filip Jorissen:
                  + Revised implementation such that + + AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_dp + is C2 continuous. + See #725. +
                • +
                • + April 14, 2017, by Filip Jorissen:
                  + Changed implementation such that it cannot lead to square roots + of negative numbers and reduced the number of required operations. + This is + for #723. +
                • +
                • + January 22, 2016, by Michael Wetter:
                  + Corrected type declaration of pressure difference. + This is + for #404. +
                • +
                • + July 29, 2015, by Michael Wetter:
                  + First implementation to avoid in Dymola 2016 the warning + \"Differentiating ... under the assumption that it is continuous at switching\". +
                • +
                + "), + __Dymola_LockedEditing="Model from IBPSA"); end basicFlowFunction_dp_der; diff --git a/AixLib/Fluid/BaseClasses/FlowModels/basicFlowFunction_dp_der2.mo b/AixLib/Fluid/BaseClasses/FlowModels/basicFlowFunction_dp_der2.mo index 74f8b1eb34..d645bc9db9 100644 --- a/AixLib/Fluid/BaseClasses/FlowModels/basicFlowFunction_dp_der2.mo +++ b/AixLib/Fluid/BaseClasses/FlowModels/basicFlowFunction_dp_der2.mo @@ -3,11 +3,11 @@ function basicFlowFunction_dp_der2 "2nd derivative of flow function2nd derivative of function that computes mass flow rate for given pressure drop" extends Modelica.Icons.Function; - input Modelica.SIunits.PressureDifference dp(displayUnit="Pa") + input Modelica.Units.SI.PressureDifference dp(displayUnit="Pa") "Pressure difference between port_a and port_b (= port_a.p - port_b.p)"; input Real k(min=0, unit="") "Flow coefficient, k=m_flow/sqrt(dp), with unit=(kg.m)^(1/2)"; - input Modelica.SIunits.MassFlowRate m_flow_turbulent(min=0) + input Modelica.Units.SI.MassFlowRate m_flow_turbulent(min=0) "Mass flow rate where transition to turbulent flow occurs"; input Real dp_der "1st derivative of pressure difference between port_a and port_b (= port_a.p - port_b.p)"; @@ -16,7 +16,7 @@ function basicFlowFunction_dp_der2 output Real m_flow_der2 "2nd derivative of mass flow rate in design flow direction"; protected - Modelica.SIunits.PressureDifference dp_turbulent = (m_flow_turbulent/k)^2 + Modelica.Units.SI.PressureDifference dp_turbulent=(m_flow_turbulent/k)^2 "Pressure where flow changes to turbulent"; Real dpNorm=dp/dp_turbulent "Normalised pressure difference"; @@ -32,39 +32,40 @@ algorithm annotation (smoothOrder=0, Inline=false, Documentation(info=" -

                -Function that implements the second order derivative of - -AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_dp -with respect to the mass flow rate. -

                -", +

                + Function that implements the second order derivative of + + AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_dp + with respect to the mass flow rate. +

                + ", revisions=" -
                  -
                • -January 4, 2019, by Michael Wetter:
                  -Set `Inline=false`.
                  -See #1070. -
                • -
                • -May 1, 2017, by Filip Jorissen:
                  -Revised implementation such that - -AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_dp -is C2 continuous. -See #725. -
                • -
                • -January 22, 2016, by Michael Wetter:
                  -Corrected type declaration of pressure difference. -This is -for #404. -
                • -
                • -July 29, 2015, by Michael Wetter:
                  -First implementation to avoid in Dymola 2016 the warning -\"Differentiating ... under the assumption that it is continuous at switching\". -
                • -
                -")); +
                  +
                • + January 4, 2019, by Michael Wetter:
                  + Set `Inline=false`.
                  + See #1070. +
                • +
                • + May 1, 2017, by Filip Jorissen:
                  + Revised implementation such that + + AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_dp + is C2 continuous. + See #725. +
                • +
                • + January 22, 2016, by Michael Wetter:
                  + Corrected type declaration of pressure difference. + This is + for #404. +
                • +
                • + July 29, 2015, by Michael Wetter:
                  + First implementation to avoid in Dymola 2016 the warning + \"Differentiating ... under the assumption that it is continuous at switching\". +
                • +
                + "), + __Dymola_LockedEditing="Model from IBPSA"); end basicFlowFunction_dp_der2; diff --git a/AixLib/Fluid/BaseClasses/FlowModels/basicFlowFunction_m_flow.mo b/AixLib/Fluid/BaseClasses/FlowModels/basicFlowFunction_m_flow.mo index 5269660782..92e626ae66 100644 --- a/AixLib/Fluid/BaseClasses/FlowModels/basicFlowFunction_m_flow.mo +++ b/AixLib/Fluid/BaseClasses/FlowModels/basicFlowFunction_m_flow.mo @@ -2,16 +2,16 @@ within AixLib.Fluid.BaseClasses.FlowModels; function basicFlowFunction_m_flow "Function that computes pressure drop for given mass flow rate" - input Modelica.SIunits.MassFlowRate m_flow + input Modelica.Units.SI.MassFlowRate m_flow "Mass flow rate in design flow direction"; input Real k(unit="") "Flow coefficient, k=m_flow/sqrt(dp), with unit=(kg.m)^(1/2)"; - input Modelica.SIunits.MassFlowRate m_flow_turbulent(min=0) + input Modelica.Units.SI.MassFlowRate m_flow_turbulent(min=0) "Mass flow rate where transition to turbulent flow occurs"; - output Modelica.SIunits.PressureDifference dp(displayUnit="Pa") + output Modelica.Units.SI.PressureDifference dp(displayUnit="Pa") "Pressure difference between port_a and port_b (= port_a.p - port_b.p)"; protected - Modelica.SIunits.PressureDifference dp_turbulent = (m_flow_turbulent/k)^2 + Modelica.Units.SI.PressureDifference dp_turbulent=(m_flow_turbulent/k)^2 "Pressure where flow changes to turbulent"; Real m_flowNorm = m_flow/m_flow_turbulent "Normalised mass flow rate"; @@ -35,87 +35,88 @@ algorithm color={0,0,255}, thickness=1), Text( extent={{-40,-40},{40,-80}}, - lineColor={0,0,0}, + textColor={0,0,0}, fillPattern=FillPattern.Sphere, fillColor={232,0,0}, textString="%name")}), Documentation(info=" -

                -Function that computes the pressure drop of flow elements as -

                -

                - Δp = sign(m) (m ⁄ k)2 -

                -

                -with regularization near the origin. -Therefore, the flow coefficient is -

                -

                - k = m ⁄ √ Δp   -

                -

                -The input m_flow_turbulent determines the location of the regularization. -

                -", +

                + Function that computes the pressure drop of flow elements as +

                +

                + Δp = sign(m) (m ⁄ k)2 +

                +

                + with regularization near the origin. + Therefore, the flow coefficient is +

                +

                + k = m ⁄ √ Δp   +

                +

                + The input m_flow_turbulent determines the location of the regularization. +

                + ", revisions=" -
                  -
                • -December 9, 2019, by Michael Wetter:
                  -Added smooth(2, . ), similar to - -AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_dp.
                  -See #1240. -
                • -
                • -January 4, 2019, by Michael Wetter:
                  -Set `Inline=false`.
                  -See #1070. -
                • -
                • -May 1, 2017, by Filip Jorissen:
                  -Revised implementation such that - -AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_m_flow -is C2 continuous. -See #725. -
                • -
                • -January 22, 2016, by Michael Wetter:
                  -Corrected type declaration of pressure difference. -This is -for #404. -
                • -
                • -July 28, 2015, by Michael Wetter:
                  -Removed double declaration of smooth(..) and smoothOrder -and changed Inline=true to LateInline=true. -This is for -issue 301. -
                • -
                • -July 15, 2015, by Filip Jorissen:
                  -New, more efficient implementation based on regularisation using simple polynomial. -Expanded common subexpressions for function inlining to be possible. -Set Inline=true for inlining to occur. -This is for -#279. -
                • -
                • -August 10, 2011, by Michael Wetter:
                  -Removed if-then optimization that set dp=0 if m_flow=0, -as this causes the derivative to be discontinuous at m_flow=0. -
                • -
                • -August 4, 2011, by Michael Wetter:
                  -Removed option to use a linear function. The linear implementation is now done -in models that call this function. With the previous implementation, -the symbolic processor may not rearrange the equations, which can lead -to coupled equations instead of an explicit solution. -
                • -
                • -April 13, 2009, by Michael Wetter:
                  -First implementation. -
                • -
                -")); +
                  +
                • + December 9, 2019, by Michael Wetter:
                  + Added smooth(2, . ), similar to + + AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_dp.
                  + See #1240. +
                • +
                • + January 4, 2019, by Michael Wetter:
                  + Set `Inline=false`.
                  + See #1070. +
                • +
                • + May 1, 2017, by Filip Jorissen:
                  + Revised implementation such that + + AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_m_flow + is C2 continuous. + See #725. +
                • +
                • + January 22, 2016, by Michael Wetter:
                  + Corrected type declaration of pressure difference. + This is + for #404. +
                • +
                • + July 28, 2015, by Michael Wetter:
                  + Removed double declaration of smooth(..) and smoothOrder + and changed Inline=true to LateInline=true. + This is for + issue 301. +
                • +
                • + July 15, 2015, by Filip Jorissen:
                  + New, more efficient implementation based on regularisation using simple polynomial. + Expanded common subexpressions for function inlining to be possible. + Set Inline=true for inlining to occur. + This is for + #279. +
                • +
                • + August 10, 2011, by Michael Wetter:
                  + Removed if-then optimization that set dp=0 if m_flow=0, + as this causes the derivative to be discontinuous at m_flow=0. +
                • +
                • + August 4, 2011, by Michael Wetter:
                  + Removed option to use a linear function. The linear implementation is now done + in models that call this function. With the previous implementation, + the symbolic processor may not rearrange the equations, which can lead + to coupled equations instead of an explicit solution. +
                • +
                • + April 13, 2009, by Michael Wetter:
                  + First implementation. +
                • +
                + "), + __Dymola_LockedEditing="Model from IBPSA"); end basicFlowFunction_m_flow; diff --git a/AixLib/Fluid/BaseClasses/FlowModels/basicFlowFunction_m_flow_der.mo b/AixLib/Fluid/BaseClasses/FlowModels/basicFlowFunction_m_flow_der.mo index e8c9f38f76..25a49c2fd1 100644 --- a/AixLib/Fluid/BaseClasses/FlowModels/basicFlowFunction_m_flow_der.mo +++ b/AixLib/Fluid/BaseClasses/FlowModels/basicFlowFunction_m_flow_der.mo @@ -3,18 +3,18 @@ function basicFlowFunction_m_flow_der "1st derivative of function that computes pressure drop for given mass flow rate" extends Modelica.Icons.Function; - input Modelica.SIunits.MassFlowRate m_flow + input Modelica.Units.SI.MassFlowRate m_flow "Mass flow rate in design flow direction"; input Real k(unit="") "Flow coefficient, k=m_flow/sqrt(dp), with unit=(kg.m)^(1/2)"; - input Modelica.SIunits.MassFlowRate m_flow_turbulent(min=0) + input Modelica.Units.SI.MassFlowRate m_flow_turbulent(min=0) "Mass flow rate where transition to turbulent flow occurs"; input Real m_flow_der(unit="kg/s2") "Derivative of mass flow rate in design flow direction"; output Real dp_der "Derivative of pressure difference between port_a and port_b (= port_a.p - port_b.p)"; protected - Modelica.SIunits.PressureDifference dp_turbulent = (m_flow_turbulent/k)^2 + Modelica.Units.SI.PressureDifference dp_turbulent=(m_flow_turbulent/k)^2 "Pressure where flow changes to turbulent"; Real m_flowNormSq = (m_flow/m_flow_turbulent)^2 "Square of normalised mass flow rate"; @@ -28,33 +28,34 @@ algorithm derivative(order=2, zeroDerivative=k, zeroDerivative=m_flow_turbulent)= AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_m_flow_der2, Documentation(info=" -

                -Function that implements the first order derivative of - -AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_m_flow -with respect to the mass flow rate. -

                -", +

                + Function that implements the first order derivative of + + AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_m_flow + with respect to the mass flow rate. +

                + ", revisions=" -
                  -
                • -January 4, 2019, by Michael Wetter:
                  -Set `Inline=false`.
                  -See #1070. -
                • -
                • -May 1, 2017, by Filip Jorissen:
                  -Revised implementation such that - -AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_m_flow -is C2 continuous. -See #725. -
                • -
                • -July 29, 2015, by Michael Wetter:
                  -First implementation to avoid in Dymola 2016 the warning -\"Differentiating ... under the assumption that it is continuous at switching\". -
                • -
                -")); +
                  +
                • + January 4, 2019, by Michael Wetter:
                  + Set `Inline=false`.
                  + See #1070. +
                • +
                • + May 1, 2017, by Filip Jorissen:
                  + Revised implementation such that + + AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_m_flow + is C2 continuous. + See #725. +
                • +
                • + July 29, 2015, by Michael Wetter:
                  + First implementation to avoid in Dymola 2016 the warning + \"Differentiating ... under the assumption that it is continuous at switching\". +
                • +
                + "), + __Dymola_LockedEditing="Model from IBPSA"); end basicFlowFunction_m_flow_der; diff --git a/AixLib/Fluid/BaseClasses/FlowModels/basicFlowFunction_m_flow_der2.mo b/AixLib/Fluid/BaseClasses/FlowModels/basicFlowFunction_m_flow_der2.mo index 5f43e8a172..ed90259e91 100644 --- a/AixLib/Fluid/BaseClasses/FlowModels/basicFlowFunction_m_flow_der2.mo +++ b/AixLib/Fluid/BaseClasses/FlowModels/basicFlowFunction_m_flow_der2.mo @@ -3,11 +3,11 @@ function basicFlowFunction_m_flow_der2 "2nd derivative of function that computes pressure drop for given mass flow rate" extends Modelica.Icons.Function; - input Modelica.SIunits.MassFlowRate m_flow + input Modelica.Units.SI.MassFlowRate m_flow "Mass flow rate in design flow direction"; input Real k(unit="") "Flow coefficient, k=m_flow/sqrt(dp), with unit=(kg.m)^(1/2)"; - input Modelica.SIunits.MassFlowRate m_flow_turbulent(min=0) + input Modelica.Units.SI.MassFlowRate m_flow_turbulent(min=0) "Mass flow rate where transition to turbulent flow occurs"; input Real m_flow_der(unit="kg/s2") "1st derivative of mass flow rate in design flow direction"; @@ -16,7 +16,7 @@ function basicFlowFunction_m_flow_der2 output Real dp_der2 "2nd derivative of pressure difference between port_a and port_b (= port_a.p - port_b.p)"; protected - Modelica.SIunits.PressureDifference dp_turbulent = (m_flow_turbulent/k)^2 + Modelica.Units.SI.PressureDifference dp_turbulent=(m_flow_turbulent/k)^2 "Pressure where flow changes to turbulent"; Real m_flowNorm = m_flow/m_flow_turbulent "Normalised mass flow rate"; @@ -32,38 +32,39 @@ algorithm annotation (smoothOrder=0, Inline=false, Documentation(info=" -

                -Function that implements the second order derivative of - -AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_m_flow -with respect to the mass flow rate. -

                -", +

                + Function that implements the second order derivative of + + AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_m_flow + with respect to the mass flow rate. +

                + ", revisions=" -
                  -
                • -January 4, 2019, by Michael Wetter:
                  -Set `Inline=false`.
                  -See #1070. -
                • -
                • -May 1, 2017, by Filip Jorissen:
                  -Revised implementation such that - -AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_dp -is C2 continuous. -See #725. -
                • -
                • -January 22, 2016, by Michael Wetter:
                  -Corrected type declaration of pressure difference. -This is -for #404. -
                • -
                • -July 29, 2015, by Michael Wetter:
                  -First implementation. -
                • -
                -")); +
                  +
                • + January 4, 2019, by Michael Wetter:
                  + Set `Inline=false`.
                  + See #1070. +
                • +
                • + May 1, 2017, by Filip Jorissen:
                  + Revised implementation such that + + AixLib.Fluid.BaseClasses.FlowModels.basicFlowFunction_dp + is C2 continuous. + See #725. +
                • +
                • + January 22, 2016, by Michael Wetter:
                  + Corrected type declaration of pressure difference. + This is + for #404. +
                • +
                • + July 29, 2015, by Michael Wetter:
                  + First implementation. +
                • +
                + "), + __Dymola_LockedEditing="Model from IBPSA"); end basicFlowFunction_m_flow_der2; diff --git a/AixLib/Fluid/BaseClasses/IndexMassFraction.mo b/AixLib/Fluid/BaseClasses/IndexMassFraction.mo index 25fde20bf1..058ff8440c 100644 --- a/AixLib/Fluid/BaseClasses/IndexMassFraction.mo +++ b/AixLib/Fluid/BaseClasses/IndexMassFraction.mo @@ -20,36 +20,37 @@ initial equation + "Change medium model to one that has '" + substanceName + "' as a substance."); annotation (Documentation(info=" -

                -This block computes the index that the subtance with name -substanceName has in the mass fraction vector X. -If the medium model has no component called substanceName, -then the block writes an error message and terminates the simulation. -

                -

                -This block is used for example to obtain the index of the subtance 'water' -to obtain the water vapor concentration, or to measure any other mass fraction. -

                -", revisions=" -
                  -
                • -November 14, 2019, by Michael Wetter:
                  -Rewrote assignment of i_x to avoid a variable array index.
                  -This is for #1250. -
                • -
                • -January 18, 2019, by Jianjun Hu:
                  -Limited the media choice to moist air only. -See #1050. -
                • -
                • -August 31, 2013, by Michael Wetter:
                  -Revised the model and added the parameter substanceName. -
                • -
                • -December 18, 2012, by Michael Wetter:
                  -First implementation. -
                • -
                -")); +

                + This block computes the index that the subtance with name + substanceName has in the mass fraction vector X. + If the medium model has no component called substanceName, + then the block writes an error message and terminates the simulation. +

                +

                + This block is used for example to obtain the index of the subtance 'water' + to obtain the water vapor concentration, or to measure any other mass fraction. +

                + ",revisions=" +
                  +
                • + November 14, 2019, by Michael Wetter:
                  + Rewrote assignment of i_x to avoid a variable array index.
                  + This is for #1250. +
                • +
                • + January 18, 2019, by Jianjun Hu:
                  + Limited the media choice to moist air only. + See #1050. +
                • +
                • + August 31, 2013, by Michael Wetter:
                  + Revised the model and added the parameter substanceName. +
                • +
                • + December 18, 2012, by Michael Wetter:
                  + First implementation. +
                • +
                + "), + __Dymola_LockedEditing="Model from IBPSA"); end IndexMassFraction; diff --git a/AixLib/Fluid/BaseClasses/MassFlowRateMultiplier.mo b/AixLib/Fluid/BaseClasses/MassFlowRateMultiplier.mo index 2cd4c1ee59..bd61a66549 100644 --- a/AixLib/Fluid/BaseClasses/MassFlowRateMultiplier.mo +++ b/AixLib/Fluid/BaseClasses/MassFlowRateMultiplier.mo @@ -25,33 +25,33 @@ equation port_b.C_outflow = inStream(port_a.C_outflow); annotation (Documentation(info=" -

                -This model multiplies the mass flow rate so that -0 = port_b.m_flow + k * port_a.m_flow. -

                -

                -The specific enthalpy, the species concentration and the trace substance concentration -remain unchanged. -Therefore, this model does not conserve mass or energy. -It is used in - -AixLib.Fluid.Geothermal.Borefields.BaseClasses.PartialBorefield -and also in the Buildings library -to avoid having to instantiate circuits in parallel, with each -having the same mass flow rate and temperatures. -

                -", revisions=" -
                  -
                • -March 27, 2013, by Michael Wetter:
                  -Changed implementation to extend from Modelica.Fluid. -
                • -
                • -June 27, 2012, by Michael Wetter:
                  -First implementation. -
                • -
                -"), Icon(graphics={ +

                + This model multiplies the mass flow rate so that + 0 = port_b.m_flow + k * port_a.m_flow. +

                +

                + The specific enthalpy, the species concentration and the trace substance concentration + remain unchanged. + Therefore, this model does not conserve mass or energy. + It is used in + + AixLib.Fluid.Geothermal.Borefields.BaseClasses.PartialBorefield + and also in the Buildings library + to avoid having to instantiate circuits in parallel, with each + having the same mass flow rate and temperatures. +

                + ",revisions=" +
                  +
                • + March 27, 2013, by Michael Wetter:
                  + Changed implementation to extend from Modelica.Fluid. +
                • +
                • + June 27, 2012, by Michael Wetter:
                  + First implementation. +
                • +
                + "),Icon(graphics={ Rectangle( extent={{-100,100},{100,-100}}, fillColor={255,237,228}, @@ -63,5 +63,6 @@ First implementation. lineColor={0,0,255}, smooth=Smooth.None, fillColor={0,0,255}, - fillPattern=FillPattern.Solid)})); + fillPattern=FillPattern.Solid)}), + __Dymola_LockedEditing="Model from IBPSA"); end MassFlowRateMultiplier; diff --git a/AixLib/Fluid/BaseClasses/PartialInnerCycle.mo b/AixLib/Fluid/BaseClasses/PartialInnerCycle.mo index f7f8876570..a0951502fc 100644 --- a/AixLib/Fluid/BaseClasses/PartialInnerCycle.mo +++ b/AixLib/Fluid/BaseClasses/PartialInnerCycle.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.BaseClasses; +within AixLib.Fluid.BaseClasses; partial model PartialInnerCycle "Blackbox model of refrigerant cycle of a vapour compression machine (heat pump or chiller)" diff --git a/AixLib/Fluid/BaseClasses/PartialResistance.mo b/AixLib/Fluid/BaseClasses/PartialResistance.mo index aa5c03a461..b85be0e099 100644 --- a/AixLib/Fluid/BaseClasses/PartialResistance.mo +++ b/AixLib/Fluid/BaseClasses/PartialResistance.mo @@ -16,26 +16,28 @@ partial model PartialResistance "Partial model for a hydraulic resistance" "= true, use m_flow = f(dp) else dp = f(m_flow)" annotation (Evaluate=true, Dialog(tab="Advanced")); - parameter Modelica.SIunits.PressureDifference dp_nominal(displayUnit="Pa") + parameter Modelica.Units.SI.PressureDifference dp_nominal(displayUnit="Pa") "Pressure drop at nominal mass flow rate" - annotation(Dialog(group = "Nominal condition")); + annotation (Dialog(group="Nominal condition")); parameter Boolean linearized = false "= true, use linear relation between m_flow and dp for any flow rate" annotation(Evaluate=true, Dialog(tab="Advanced")); - parameter Modelica.SIunits.MassFlowRate m_flow_turbulent(min=0) + parameter Modelica.Units.SI.MassFlowRate m_flow_turbulent(min=0) "Turbulent flow if |m_flow| >= m_flow_turbulent"; protected parameter Medium.ThermodynamicState sta_default= Medium.setState_pTX(T=Medium.T_default, p=Medium.p_default, X=Medium.X_default); - parameter Modelica.SIunits.DynamicViscosity eta_default=Medium.dynamicViscosity(sta_default) + parameter Modelica.Units.SI.DynamicViscosity eta_default= + Medium.dynamicViscosity(sta_default) "Dynamic viscosity, used to compute transition to turbulent flow regime"; - final parameter Modelica.SIunits.MassFlowRate m_flow_nominal_pos = abs(m_flow_nominal) - "Absolute value of nominal flow rate"; - final parameter Modelica.SIunits.PressureDifference dp_nominal_pos(displayUnit="Pa") = abs(dp_nominal) + final parameter Modelica.Units.SI.MassFlowRate m_flow_nominal_pos=abs( + m_flow_nominal) "Absolute value of nominal flow rate"; + final parameter Modelica.Units.SI.PressureDifference dp_nominal_pos( + displayUnit="Pa") = abs(dp_nominal) "Absolute value of nominal pressure difference"; initial equation assert(homotopyInitialization, "In " + getInstanceName() + @@ -90,149 +92,150 @@ equation pattern=LinePattern.None)}), defaultComponentName="res", Documentation(info=" -

                -Partial model for a flow resistance, possible with variable flow coefficient. -Models that extend this class need to implement an equation that relates -m_flow and dp, and they need to assign the parameter -m_flow_turbulent. -

                -

                -See for example - -AixLib.Fluid.FixedResistances.PressureDrop for a model that extends -this base class. -

                -", revisions=" -
                  -
                • -April 14, 2020, by Michael Wetter:
                  -Changed homotopyInitialization to a constant.
                  -This is for -AixLib, #1341. -
                • -
                • -February 26, 2020, by Michael Wetter:
                  -Changed icon to display its operating state.
                  -This is for -#1294. -
                • -
                • -October 25, 2019, by Jianjun Hu:
                  -Improved icon graphics annotation. This is for -#1225. -
                • -
                • -November 3, 2016, by Michael Wetter:
                  -Removed start value for pressure difference -to simplify the parameter window.
                  -This is for -#552. -
                • -
                • -January 26, 2016, by Michael Wetter:
                  -Avoided assignment of dp(nominal=0) if dp_nominal_pos = 0 -and of m_flow(nominal=0) if m_flow_nominal_pos = 0 -as nominal values are not allowed to be zero. -
                • -
                • -January 22, 2016, by Michael Wetter:
                  -Corrected type declaration of pressure difference. -This is -for #404. -
                • -
                • -August 15, 2015, by Filip Jorissen:
                  -Implemented more efficient computation of port_a.Xi_outflow, -port_a.h_outflow -and port_a.C_outflow when allowFlowReversal=false. -This is for -#281. -
                • -
                • -January 13, 2015, by Marcus Fuchs:
                  -Revised revisions section (there were two revisions statements) -
                • -
                • -November 20, 2014 by Michael Wetter:
                  -Removed start attribute for m_flow -as this is already set in its base class. -
                • -
                • -October 8, 2013 by Michael Wetter:
                  -Removed propagation of show_V_flow -to base class as it has no longer this parameter. -
                • -
                • -December 14, 2012 by Michael Wetter:
                  -Renamed protected parameters for consistency with the naming conventions. -
                • -
                • -February 12, 2012, by Michael Wetter:
                  -Removed duplicate declaration of m_flow_nominal. -
                • -
                • -February 3, 2012, by Michael Wetter:
                  -Made assignment of m_flow_small final as it is no -longer used in the base class. -
                • -
                • -January 16, 2012, by Michael Wetter:
                  -To simplify object inheritance tree, revised base classes -AixLib.Fluid.BaseClasses.PartialResistance, -AixLib.Fluid.Actuators.BaseClasses.PartialTwoWayValve, -AixLib.Fluid.Actuators.BaseClasses.PartialDamperExponential, -AixLib.Fluid.Actuators.BaseClasses.PartialActuator -and model -AixLib.Fluid.FixedResistances.PressureDrop. -
                • -
                • -August 5, 2011, by Michael Wetter:
                  -Moved linearized pressure drop equation from the function body to the equation -section. With the previous implementation, -the symbolic processor may not rearrange the equations, which can lead -to coupled equations instead of an explicit solution. -
                • -
                • -June 20, 2011, by Michael Wetter:
                  -Set start values for m_flow and dp to zero, since -most HVAC systems start at zero flow. With this change, the start values -appear in the GUI and can be set by the user. -
                • -
                • -April 2, 2011 by Michael Wetter:
                  -Added m_flow_nominal_pos and dp_nominal_pos to allow -providing negative nominal values which will be used, for example, to set start -values of flow splitters which may have negative flow rates and pressure drop -at the initial condition. -
                • -
                • -March 27, 2011, by Michael Wetter:
                  -Added homotopy operator. -
                • -
                • -March 23, 2011 by Michael Wetter:
                  -Added homotopy operator. -
                • -
                • -March 30, 2010 by Michael Wetter:
                  -Changed base classes to allow easier initialization. -
                • -
                • -April 13, 2009, by Michael Wetter:
                  -Extracted pressure drop computation and implemented it in the -new model - -AixLib.Fluid.BaseClasses.FlowModels.BasicFlowModel. -
                • -
                • -September 18, 2008, by Michael Wetter:
                  -Added equations for the mass balance of extra species flow, -i.e., C and mC_flow. -
                • -
                • -July 20, 2007 by Michael Wetter:
                  -First implementation. -
                • -
                -")); +

                + Partial model for a flow resistance, possible with variable flow coefficient. + Models that extend this class need to implement an equation that relates + m_flow and dp, and they need to assign the parameter + m_flow_turbulent. +

                +

                + See for example + + AixLib.Fluid.FixedResistances.PressureDrop for a model that extends + this base class. +

                + ",revisions=" +
                  +
                • + April 14, 2020, by Michael Wetter:
                  + Changed homotopyInitialization to a constant.
                  + This is for + IBPSA, #1341. +
                • +
                • + February 26, 2020, by Michael Wetter:
                  + Changed icon to display its operating state.
                  + This is for + #1294. +
                • +
                • + October 25, 2019, by Jianjun Hu:
                  + Improved icon graphics annotation. This is for + #1225. +
                • +
                • + November 3, 2016, by Michael Wetter:
                  + Removed start value for pressure difference + to simplify the parameter window.
                  + This is for + #552. +
                • +
                • + January 26, 2016, by Michael Wetter:
                  + Avoided assignment of dp(nominal=0) if dp_nominal_pos = 0 + and of m_flow(nominal=0) if m_flow_nominal_pos = 0 + as nominal values are not allowed to be zero. +
                • +
                • + January 22, 2016, by Michael Wetter:
                  + Corrected type declaration of pressure difference. + This is + for #404. +
                • +
                • + August 15, 2015, by Filip Jorissen:
                  + Implemented more efficient computation of port_a.Xi_outflow, + port_a.h_outflow + and port_a.C_outflow when allowFlowReversal=false. + This is for + #281. +
                • +
                • + January 13, 2015, by Marcus Fuchs:
                  + Revised revisions section (there were two revisions statements) +
                • +
                • + November 20, 2014 by Michael Wetter:
                  + Removed start attribute for m_flow + as this is already set in its base class. +
                • +
                • + October 8, 2013 by Michael Wetter:
                  + Removed propagation of show_V_flow + to base class as it has no longer this parameter. +
                • +
                • + December 14, 2012 by Michael Wetter:
                  + Renamed protected parameters for consistency with the naming conventions. +
                • +
                • + February 12, 2012, by Michael Wetter:
                  + Removed duplicate declaration of m_flow_nominal. +
                • +
                • + February 3, 2012, by Michael Wetter:
                  + Made assignment of m_flow_small final as it is no + longer used in the base class. +
                • +
                • + January 16, 2012, by Michael Wetter:
                  + To simplify object inheritance tree, revised base classes + AixLib.Fluid.BaseClasses.PartialResistance, + AixLib.Fluid.Actuators.BaseClasses.PartialTwoWayValve, + AixLib.Fluid.Actuators.BaseClasses.PartialDamperExponential, + AixLib.Fluid.Actuators.BaseClasses.PartialActuator + and model + AixLib.Fluid.FixedResistances.PressureDrop. +
                • +
                • + August 5, 2011, by Michael Wetter:
                  + Moved linearized pressure drop equation from the function body to the equation + section. With the previous implementation, + the symbolic processor may not rearrange the equations, which can lead + to coupled equations instead of an explicit solution. +
                • +
                • + June 20, 2011, by Michael Wetter:
                  + Set start values for m_flow and dp to zero, since + most HVAC systems start at zero flow. With this change, the start values + appear in the GUI and can be set by the user. +
                • +
                • + April 2, 2011 by Michael Wetter:
                  + Added m_flow_nominal_pos and dp_nominal_pos to allow + providing negative nominal values which will be used, for example, to set start + values of flow splitters which may have negative flow rates and pressure drop + at the initial condition. +
                • +
                • + March 27, 2011, by Michael Wetter:
                  + Added homotopy operator. +
                • +
                • + March 23, 2011 by Michael Wetter:
                  + Added homotopy operator. +
                • +
                • + March 30, 2010 by Michael Wetter:
                  + Changed base classes to allow easier initialization. +
                • +
                • + April 13, 2009, by Michael Wetter:
                  + Extracted pressure drop computation and implemented it in the + new model + + AixLib.Fluid.BaseClasses.FlowModels.BasicFlowModel. +
                • +
                • + September 18, 2008, by Michael Wetter:
                  + Added equations for the mass balance of extra species flow, + i.e., C and mC_flow. +
                • +
                • + July 20, 2007 by Michael Wetter:
                  + First implementation. +
                • +
                + "), + __Dymola_LockedEditing="Model from IBPSA"); end PartialResistance; diff --git a/AixLib/Fluid/BaseClasses/PartialReversibleVapourCompressionMachine.mo b/AixLib/Fluid/BaseClasses/PartialReversibleVapourCompressionMachine.mo index 22867e0fb1..4cf93d15c0 100644 --- a/AixLib/Fluid/BaseClasses/PartialReversibleVapourCompressionMachine.mo +++ b/AixLib/Fluid/BaseClasses/PartialReversibleVapourCompressionMachine.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.BaseClasses; +within AixLib.Fluid.BaseClasses; partial model PartialReversibleVapourCompressionMachine "Grey-box model for reversible heat pumps and chillers using a black-box to simulate the refrigeration cycle" extends AixLib.Fluid.Interfaces.PartialFourPortInterface( @@ -30,18 +30,17 @@ partial model PartialReversibleVapourCompressionMachine parameter Boolean use_autoCalc=false "Enable automatic estimation of volumes and mass flows?" annotation(choices(checkBox=true), Dialog(descriptionLabel=true)); - parameter Modelica.SIunits.Power Q_useNominal(start=0) + parameter Modelica.Units.SI.Power Q_useNominal(start=0) "Nominal usable heat flow of the vapour compression machine (HP: Heating; Chiller: Cooling)" - annotation (Dialog(enable= - use_autoCalc)); + annotation (Dialog(enable=use_autoCalc)); parameter Real scalingFactor=1 "Scaling-factor of vapour compression machine"; parameter Boolean use_refIne=true "Consider the inertia of the refrigerant cycle" annotation(choices(checkBox=true), Dialog( group="Refrigerant inertia")); - parameter Modelica.SIunits.Frequency refIneFre_constant - "Cut off frequency for inertia of refrigerant cycle" - annotation (Dialog(enable=use_refIne, group="Refrigerant inertia"),Evaluate=true); + parameter Modelica.Units.SI.Frequency refIneFre_constant + "Cut off frequency for inertia of refrigerant cycle" annotation (Dialog( + enable=use_refIne, group="Refrigerant inertia"), Evaluate=true); parameter Integer nthOrder=3 "Order of refrigerant cycle interia" annotation (Dialog(enable= use_refIne, group="Refrigerant inertia")); parameter Boolean useBusConnectorOnly = false "Set true to use bus connector for modeSet, nSet and iceFac input" @@ -49,17 +48,21 @@ partial model PartialReversibleVapourCompressionMachine //Condenser - parameter Modelica.SIunits.MassFlowRate mFlow_conNominal + parameter Modelica.Units.SI.MassFlowRate mFlow_conNominal "Manual input of the nominal mass flow rate (if not automatically calculated)" - annotation (Dialog(group="Parameters", tab="Condenser", enable=not - use_autoCalc), Evaluate=true); - parameter Modelica.SIunits.Volume VCon + annotation (Dialog( + group="Parameters", + tab="Condenser", + enable=not use_autoCalc), Evaluate=true); + parameter Modelica.Units.SI.Volume VCon "Manual input of the condenser volume (if not automatically calculated)" - annotation (Evaluate=true,Dialog(group="Parameters", tab="Condenser", enable=not - use_autoCalc)); - parameter Modelica.SIunits.PressureDifference dpCon_nominal - "Pressure drop at nominal mass flow rate" - annotation (Dialog(group="Flow resistance", tab="Condenser"), Evaluate=true); + annotation (Evaluate=true, Dialog( + group="Parameters", + tab="Condenser", + enable=not use_autoCalc)); + parameter Modelica.Units.SI.PressureDifference dpCon_nominal + "Pressure drop at nominal mass flow rate" annotation (Dialog(group= + "Flow resistance", tab="Condenser"), Evaluate=true); parameter Real deltaM_con=0.1 "Fraction of nominal mass flow rate where transition to turbulent occurs" annotation (Dialog(tab="Condenser", group="Flow resistance")); @@ -67,30 +70,40 @@ partial model PartialReversibleVapourCompressionMachine "If heat losses at capacitor side are considered or not" annotation (Dialog(group="Heat Losses", tab="Condenser"), choices(checkBox=true)); - parameter Modelica.SIunits.HeatCapacity CCon - "Heat capacity of Condenser (= cp*m). If you want to neglace the dry mass of the condenser, you can set this value to zero" annotation (Evaluate=true,Dialog(group="Heat Losses", - tab="Condenser", + parameter Modelica.Units.SI.HeatCapacity CCon + "Heat capacity of Condenser (= cp*m). If you want to neglace the dry mass of the condenser, you can set this value to zero" + annotation (Evaluate=true, Dialog( + group="Heat Losses", + tab="Condenser", enable=use_conCap)); - parameter Modelica.SIunits.ThermalConductance GConOut + parameter Modelica.Units.SI.ThermalConductance GConOut "Constant parameter for heat transfer to the ambient. Represents a sum of thermal resistances such as conductance, insulation and natural convection. If you want to simulate a condenser with additional dry mass but without external heat losses, set the value to zero" - annotation (Evaluate=true,Dialog(group="Heat Losses", tab="Condenser", + annotation (Evaluate=true, Dialog( + group="Heat Losses", + tab="Condenser", enable=use_conCap)); - parameter Modelica.SIunits.ThermalConductance GConIns + parameter Modelica.Units.SI.ThermalConductance GConIns "Constant parameter for heat transfer to heat exchangers capacity. Represents a sum of thermal resistances such as forced convection and conduction inside of the capacity" - annotation (Evaluate=true,Dialog(group="Heat Losses", tab="Condenser", + annotation (Evaluate=true, Dialog( + group="Heat Losses", + tab="Condenser", enable=use_conCap)); //Evaporator - parameter Modelica.SIunits.MassFlowRate mFlow_evaNominal + parameter Modelica.Units.SI.MassFlowRate mFlow_evaNominal "Manual input of the nominal mass flow rate (if not automatically calculated)" - annotation (Dialog(group="Parameters", tab="Evaporator", enable=not - use_autoCalc), Evaluate=true); - parameter Modelica.SIunits.Volume VEva + annotation (Dialog( + group="Parameters", + tab="Evaporator", + enable=not use_autoCalc), Evaluate=true); + parameter Modelica.Units.SI.Volume VEva "Manual input of the evaporator volume (if not automatically calculated)" - annotation (Evaluate=true,Dialog(group="Parameters", tab="Evaporator", enable=not - use_autoCalc)); - parameter Modelica.SIunits.PressureDifference dpEva_nominal - "Pressure drop at nominal mass flow rate" - annotation (Dialog(group="Flow resistance", tab="Evaporator"),Evaluate=true); + annotation (Evaluate=true, Dialog( + group="Parameters", + tab="Evaporator", + enable=not use_autoCalc)); + parameter Modelica.Units.SI.PressureDifference dpEva_nominal + "Pressure drop at nominal mass flow rate" annotation (Dialog(group= + "Flow resistance", tab="Evaporator"), Evaluate=true); parameter Real deltaM_eva=0.1 "Fraction of nominal mass flow rate where transition to turbulent occurs" annotation (Dialog(tab="Evaporator", group="Flow resistance")); @@ -98,20 +111,26 @@ partial model PartialReversibleVapourCompressionMachine "If heat losses at capacitor side are considered or not" annotation (Dialog(group="Heat Losses", tab="Evaporator"), choices(checkBox=true)); - parameter Modelica.SIunits.HeatCapacity CEva + parameter Modelica.Units.SI.HeatCapacity CEva "Heat capacity of Evaporator (= cp*m). If you want to neglace the dry mass of the evaporator, you can set this value to zero" - annotation (Evaluate=true,Dialog(group="Heat Losses", tab="Evaporator", + annotation (Evaluate=true, Dialog( + group="Heat Losses", + tab="Evaporator", enable=use_evaCap)); - parameter Modelica.SIunits.ThermalConductance GEvaOut + parameter Modelica.Units.SI.ThermalConductance GEvaOut "Constant parameter for heat transfer to the ambient. Represents a sum of thermal resistances such as conductance, insulation and natural convection. If you want to simulate a evaporator with additional dry mass but without external heat losses, set the value to zero" - annotation (Evaluate=true,Dialog(group="Heat Losses", tab="Evaporator", + annotation (Evaluate=true, Dialog( + group="Heat Losses", + tab="Evaporator", enable=use_evaCap)); - parameter Modelica.SIunits.ThermalConductance GEvaIns + parameter Modelica.Units.SI.ThermalConductance GEvaIns "Constant parameter for heat transfer to heat exchangers capacity. Represents a sum of thermal resistances such as forced convection and conduction inside of the capacity" - annotation (Evaluate=true,Dialog(group="Heat Losses", tab="Evaporator", + annotation (Evaluate=true, Dialog( + group="Heat Losses", + tab="Evaporator", enable=use_evaCap)); //Assumptions - parameter Modelica.SIunits.Time tauSenT=1 + parameter Modelica.Units.SI.Time tauSenT=1 "Time constant at nominal flow rate (use tau=0 for steady-state sensor, but see user guide for potential problems)" annotation (Dialog(tab="Assumptions", group="Temperature sensors")); parameter Boolean transferHeat=true @@ -123,18 +142,30 @@ partial model PartialReversibleVapourCompressionMachine parameter Boolean allowFlowReversalCon=true "= false to simplify equations, assuming, but not enforcing, no flow reversal" annotation (Dialog(group="Condenser", tab="Assumptions")); - parameter Modelica.SIunits.Time tauHeaTraEva=1200 + parameter Modelica.Units.SI.Time tauHeaTraEva=1200 "Time constant for heat transfer in temperature sensors in evaporator, default 20 minutes" - annotation (Dialog(tab="Assumptions", group="Temperature sensors",enable=transferHeat), Evaluate=true); - parameter Modelica.SIunits.Temperature TAmbEva_nominal=273.15 + annotation (Dialog( + tab="Assumptions", + group="Temperature sensors", + enable=transferHeat), Evaluate=true); + parameter Modelica.Units.SI.Temperature TAmbEva_nominal=273.15 "Fixed ambient temperature for heat transfer of sensors at the evaporator side" - annotation (Dialog(tab="Assumptions", group="Temperature sensors",enable=transferHeat)); - parameter Modelica.SIunits.Time tauHeaTraCon=1200 + annotation (Dialog( + tab="Assumptions", + group="Temperature sensors", + enable=transferHeat)); + parameter Modelica.Units.SI.Time tauHeaTraCon=1200 "Time constant for heat transfer in temperature sensors in condenser, default 20 minutes" - annotation (Dialog(tab="Assumptions", group="Temperature sensors",enable=transferHeat),Evaluate=true); - parameter Modelica.SIunits.Temperature TAmbCon_nominal=291.15 + annotation (Dialog( + tab="Assumptions", + group="Temperature sensors", + enable=transferHeat), Evaluate=true); + parameter Modelica.Units.SI.Temperature TAmbCon_nominal=291.15 "Fixed ambient temperature for heat transfer of sensors at the condenser side" - annotation (Dialog(tab="Assumptions", group="Temperature sensors",enable=transferHeat)); + annotation (Dialog( + tab="Assumptions", + group="Temperature sensors", + enable=transferHeat)); //Initialization parameter Modelica.Blocks.Types.Init initType=Modelica.Blocks.Types.Init.InitialState @@ -146,9 +177,10 @@ partial model PartialReversibleVapourCompressionMachine parameter Modelica.Media.Interfaces.Types.Temperature TCon_start=Medium_con.T_default "Start value of temperature" annotation (Evaluate=true,Dialog(tab="Initialization", group="Condenser")); - parameter Modelica.SIunits.Temperature TConCap_start=Medium_con.T_default - "Initial temperature of heat capacity of condenser" - annotation (Dialog(tab="Initialization", group="Condenser", + parameter Modelica.Units.SI.Temperature TConCap_start=Medium_con.T_default + "Initial temperature of heat capacity of condenser" annotation (Dialog( + tab="Initialization", + group="Condenser", enable=use_conCap)); parameter Modelica.Media.Interfaces.Types.MassFraction XCon_start[Medium_con.nX]= Medium_con.X_default "Start value of mass fractions m_i/m" @@ -159,9 +191,10 @@ partial model PartialReversibleVapourCompressionMachine parameter Modelica.Media.Interfaces.Types.Temperature TEva_start=Medium_eva.T_default "Start value of temperature" annotation (Evaluate=true,Dialog(tab="Initialization", group="Evaporator")); - parameter Modelica.SIunits.Temperature TEvaCap_start=Medium_eva.T_default - "Initial temperature of heat capacity at evaporator" - annotation (Dialog(tab="Initialization", group="Evaporator", + parameter Modelica.Units.SI.Temperature TEvaCap_start=Medium_eva.T_default + "Initial temperature of heat capacity at evaporator" annotation (Dialog( + tab="Initialization", + group="Evaporator", enable=use_evaCap)); parameter Modelica.Media.Interfaces.Types.MassFraction XEva_start[Medium_eva.nX]= Medium_eva.X_default "Start value of mass fractions m_i/m" @@ -206,7 +239,6 @@ partial model PartialReversibleVapourCompressionMachine final X_start=XCon_start, final from_dp=from_dp, final homotopyInitialization=homotopyInitialization, - final massDynamics=massDynamics, final energyDynamics=energyDynamics, final is_con=true, final V=VCon_final*scalingFactor, @@ -229,7 +261,6 @@ partial model PartialReversibleVapourCompressionMachine final X_start=XEva_start, final from_dp=from_dp, final homotopyInitialization=homotopyInitialization, - final massDynamics=massDynamics, final energyDynamics=energyDynamics, final is_con=false, final V=VEva_final*scalingFactor, @@ -246,15 +277,15 @@ partial model PartialReversibleVapourCompressionMachine final n=nthOrder, final f=refIneFre_constant, final x_start=x_start, - final y_start=yRefIne_start) if - use_refIne + final y_start=yRefIne_start) + if use_refIne "This n-th order block represents the inertia of the refrigerant cycle and delays the heat flow" annotation (Placement(transformation( extent={{6,6},{-6,-6}}, rotation=90, origin={-14,-52}))); - Modelica.Blocks.Routing.RealPassThrough realPassThroughnSetCon if - not use_refIne + Modelica.Blocks.Routing.RealPassThrough realPassThroughnSetCon + if not use_refIne "Use default nSet value" annotation (Placement(transformation( extent={{-6,-6},{6,6}}, rotation=90, @@ -265,8 +296,8 @@ partial model PartialReversibleVapourCompressionMachine final n=nthOrder, final f=refIneFre_constant, final x_start=x_start, - final y_start=yRefIne_start) if - use_refIne + final y_start=yRefIne_start) + if use_refIne "This n-th order block represents the inertia of the refrigerant cycle and delays the heat flow" annotation (Placement(transformation( extent={{-6,-6},{6,6}}, @@ -282,14 +313,14 @@ partial model PartialReversibleVapourCompressionMachine extent={{-16,-16},{16,16}}, rotation=90, origin={-76,-136}))); - Modelica.Thermal.HeatTransfer.Sources.PrescribedTemperature varTempOutEva if - use_evaCap "Foreces heat losses according to ambient temperature" + Modelica.Thermal.HeatTransfer.Sources.PrescribedTemperature varTempOutEva + if use_evaCap "Foreces heat losses according to ambient temperature" annotation (Placement(transformation( extent={{-8,-8},{8,8}}, rotation=0, origin={-32,-110}))); - Modelica.Thermal.HeatTransfer.Sources.PrescribedTemperature varTempOutCon if - use_conCap "Foreces heat losses according to ambient temperature" + Modelica.Thermal.HeatTransfer.Sources.PrescribedTemperature varTempOutCon + if use_conCap "Foreces heat losses according to ambient temperature" annotation (Placement(transformation( extent={{-8,-8},{8,8}}, rotation=0, @@ -402,17 +433,31 @@ partial model PartialReversibleVapourCompressionMachine rotation=180, origin={-66,-28}))); protected - parameter Modelica.SIunits.MassFlowRate autoCalc_mFlow_min = 0.3 "Realistic mass flow minimum for simulation plausibility"; - parameter Modelica.SIunits.Volume autoCalc_Vmin = 0.003 "Realistic volume minimum for simulation plausibility"; + parameter Modelica.Units.SI.MassFlowRate autoCalc_mFlow_min=0.3 + "Realistic mass flow minimum for simulation plausibility"; + parameter Modelica.Units.SI.Volume autoCalc_Vmin=0.003 + "Realistic volume minimum for simulation plausibility"; - parameter Modelica.SIunits.MassFlowRate autoCalc_mFlow_eva = if machineType then max(0.00004*Q_useNominal - 0.3177, autoCalc_mFlow_min) else max(0.00005*Q_useNominal - 0.5662, autoCalc_mFlow_min); - parameter Modelica.SIunits.MassFlowRate autoCalc_mFlow_con = if machineType then max(0.00004*Q_useNominal - 0.6162, autoCalc_mFlow_min) else max(0.00005*Q_useNominal + 0.3161, autoCalc_mFlow_min); - parameter Modelica.SIunits.MassFlowRate mFlow_evaNominal_final=if use_autoCalc then autoCalc_mFlow_eva else mFlow_evaNominal; - parameter Modelica.SIunits.MassFlowRate mFlow_conNominal_final=if use_autoCalc then autoCalc_mFlow_con else mFlow_conNominal; - parameter Modelica.SIunits.Volume autoCalc_VEva = if machineType then max(0.0000001*Q_useNominal - 0.0075, autoCalc_Vmin) else max(0.0000001*Q_useNominal - 0.0066, autoCalc_Vmin); - parameter Modelica.SIunits.Volume autoCalc_VCon = if machineType then max(0.0000001*Q_useNominal - 0.0094, autoCalc_Vmin) else max(0.0000002*Q_useNominal - 0.0084, autoCalc_Vmin); - parameter Modelica.SIunits.Volume VEva_final=if use_autoCalc then autoCalc_VEva else VEva; - parameter Modelica.SIunits.Volume VCon_final=if use_autoCalc then autoCalc_VCon else VCon; + parameter Modelica.Units.SI.MassFlowRate autoCalc_mFlow_eva=if machineType + then max(0.00004*Q_useNominal - 0.3177, autoCalc_mFlow_min) else max( + 0.00005*Q_useNominal - 0.5662, autoCalc_mFlow_min); + parameter Modelica.Units.SI.MassFlowRate autoCalc_mFlow_con=if machineType + then max(0.00004*Q_useNominal - 0.6162, autoCalc_mFlow_min) else max( + 0.00005*Q_useNominal + 0.3161, autoCalc_mFlow_min); + parameter Modelica.Units.SI.MassFlowRate mFlow_evaNominal_final=if + use_autoCalc then autoCalc_mFlow_eva else mFlow_evaNominal; + parameter Modelica.Units.SI.MassFlowRate mFlow_conNominal_final=if + use_autoCalc then autoCalc_mFlow_con else mFlow_conNominal; + parameter Modelica.Units.SI.Volume autoCalc_VEva=if machineType then max( + 0.0000001*Q_useNominal - 0.0075, autoCalc_Vmin) else max(0.0000001* + Q_useNominal - 0.0066, autoCalc_Vmin); + parameter Modelica.Units.SI.Volume autoCalc_VCon=if machineType then max( + 0.0000001*Q_useNominal - 0.0094, autoCalc_Vmin) else max(0.0000002* + Q_useNominal - 0.0084, autoCalc_Vmin); + parameter Modelica.Units.SI.Volume VEva_final=if use_autoCalc then + autoCalc_VEva else VEva; + parameter Modelica.Units.SI.Volume VCon_final=if use_autoCalc then + autoCalc_VCon else VCon; equation diff --git a/AixLib/Fluid/BaseClasses/PartialThreeWayResistance.mo b/AixLib/Fluid/BaseClasses/PartialThreeWayResistance.mo index ed09bf8a9f..a644948ec3 100644 --- a/AixLib/Fluid/BaseClasses/PartialThreeWayResistance.mo +++ b/AixLib/Fluid/BaseClasses/PartialThreeWayResistance.mo @@ -2,6 +2,7 @@ within AixLib.Fluid.BaseClasses; partial model PartialThreeWayResistance "Flow splitter with partial resistance model at each port" extends AixLib.Fluid.Interfaces.LumpedVolumeDeclarations( + final massDynamics=energyDynamics, final mSenFac=1); Modelica.Fluid.Interfaces.FluidPort_a port_1( @@ -26,14 +27,16 @@ partial model PartialThreeWayResistance "Third port, can be either inlet or outlet" annotation (Placement(transformation(extent={{-10,-110},{10,-90}}))); - parameter Modelica.SIunits.Time tau=10 + parameter Modelica.Units.SI.Time tau=10 "Time constant at nominal flow for dynamic energy and momentum balance" - annotation(Dialog(tab="Dynamics", group="Nominal condition", - enable=not energyDynamics == Modelica.Fluid.Types.Dynamics.SteadyState)); - parameter Modelica.SIunits.MassFlowRate mDyn_flow_nominal + annotation (Dialog( + tab="Dynamics", + group="Nominal condition", + enable=not energyDynamics == Modelica.Fluid.Types.Dynamics.SteadyState)); + parameter Modelica.Units.SI.MassFlowRate mDyn_flow_nominal "Nominal mass flow rate for dynamic momentum and energy balance" - annotation(Dialog(tab="Dynamics", group="Equations", - enable=not energyDynamics == Modelica.Fluid.Types.Dynamics.SteadyState)); + annotation (Dialog(tab="Dynamics", group="Conservation equations", + enable=not energyDynamics == Modelica.Fluid.Types.Dynamics.SteadyState)); parameter Boolean from_dp = true "= true, use m_flow = f(dp) else dp = f(m_flow)" @@ -50,9 +53,9 @@ partial model PartialThreeWayResistance parameter Boolean verifyFlowReversal = false "=true, to assert that the flow does not reverse when portFlowDirection_* does not equal Bidirectional" annotation(Dialog(tab="Advanced")); - parameter Modelica.SIunits.MassFlowRate m_flow_small + parameter Modelica.Units.SI.MassFlowRate m_flow_small "Small mass flow rate for checking flow reversal" - annotation(Dialog(tab="Advanced",enable=verifyFlowReversal)); + annotation (Dialog(tab="Advanced", enable=verifyFlowReversal)); replaceable AixLib.Fluid.Interfaces.PartialTwoPortInterface res1 @@ -83,20 +86,18 @@ partial model PartialThreeWayResistance final tau=tau, final m_flow_nominal=mDyn_flow_nominal, final energyDynamics=energyDynamics, - final massDynamics=massDynamics, final p_start=p_start, final T_start=T_start, final X_start=X_start, final C_start=C_start, final allowFlowReversal=true, - final prescribedHeatFlowRate=false) if - have_controlVolume "Fluid volume to break algebraic loop" + final prescribedHeatFlowRate=false) + if have_controlVolume "Fluid volume to break algebraic loop" annotation (Placement(transformation(extent={{-10,0},{10,20}}))); protected parameter Boolean have_controlVolume= - energyDynamics <> Modelica.Fluid.Types.Dynamics.SteadyState or - massDynamics <> Modelica.Fluid.Types.Dynamics.SteadyState + energyDynamics <> Modelica.Fluid.Types.Dynamics.SteadyState "Boolean flag used to remove conditional components"; Modelica.Fluid.Interfaces.FluidPort_a port_internal( @@ -108,49 +109,49 @@ initial equation portFlowDirection_2<>Modelica.Fluid.Types.PortFlowDirection.Leaving or portFlowDirection_3<>Modelica.Fluid.Types.PortFlowDirection.Leaving, "In " + getInstanceName() + ": All ports are configured to - Modelica.Fluid.Types.PortFlowDirection.Leaving, which is non-physical."); + Modelica.Fluid.Types.PortFlowDirection.Leaving, which is non-physical."); assert(portFlowDirection_1<>Modelica.Fluid.Types.PortFlowDirection.Entering or portFlowDirection_2<>Modelica.Fluid.Types.PortFlowDirection.Entering or portFlowDirection_3<>Modelica.Fluid.Types.PortFlowDirection.Entering, "In " + getInstanceName() + ": All ports are configured to - Modelica.Fluid.Types.PortFlowDirection.Entering, which is non-physical."); + Modelica.Fluid.Types.PortFlowDirection.Entering, which is non-physical."); equation if verifyFlowReversal then if portFlowDirection_1==Modelica.Fluid.Types.PortFlowDirection.Entering then assert(port_1.m_flow> -m_flow_small, "In " + getInstanceName() + ": - Flow is leaving port_1 despite portFlowDirection_1=PortFlowDirection.Entering, since m_flow=" + + Flow is leaving port_1 despite portFlowDirection_1=PortFlowDirection.Entering, since m_flow="+ String(port_1.m_flow) + "<-"+String(m_flow_small)); end if; if portFlowDirection_1==Modelica.Fluid.Types.PortFlowDirection.Leaving then assert(port_1.m_flow< m_flow_small, "In " + getInstanceName() + ": - Flow is entering port_1 despite portFlowDirection_1=PortFlowDirection.Leaving, since m_flow=" + + Flow is entering port_1 despite portFlowDirection_1=PortFlowDirection.Leaving, since m_flow="+ String(port_1.m_flow) + ">"+String(m_flow_small)); end if; if portFlowDirection_2==Modelica.Fluid.Types.PortFlowDirection.Entering then assert(port_2.m_flow> -m_flow_small, "In " + getInstanceName() + ": - Flow is leaving port_2 despite portFlowDirection_2=PortFlowDirection.Entering, since m_flow=" + + Flow is leaving port_2 despite portFlowDirection_2=PortFlowDirection.Entering, since m_flow="+ String(port_2.m_flow) + "<-"+String(m_flow_small)); end if; if portFlowDirection_2==Modelica.Fluid.Types.PortFlowDirection.Leaving then assert(port_2.m_flow< m_flow_small, "In " + getInstanceName() + ": - Flow is entering port_2 despite portFlowDirection_2=PortFlowDirection.Leaving, since m_flow=" + + Flow is entering port_2 despite portFlowDirection_2=PortFlowDirection.Leaving, since m_flow="+ String(port_2.m_flow) + ">"+String(m_flow_small)); end if; if portFlowDirection_3==Modelica.Fluid.Types.PortFlowDirection.Entering then assert(port_3.m_flow> -m_flow_small, "In " + getInstanceName() + ": - Flow is leaving port_3 despite portFlowDirection_3=PortFlowDirection.Entering, since m_flow=" + + Flow is leaving port_3 despite portFlowDirection_3=PortFlowDirection.Entering, since m_flow="+ String(port_3.m_flow) + "<-"+String(m_flow_small)); end if; if portFlowDirection_3==Modelica.Fluid.Types.PortFlowDirection.Leaving then assert(port_3.m_flow< m_flow_small, - "In " + getInstanceName() + ": - Flow is entering port_3 despite portFlowDirection_3=PortFlowDirection.Leaving, since m_flow=" + + "In " + getInstanceName() + ": + Flow is entering port_3 despite portFlowDirection_3=PortFlowDirection.Leaving, since m_flow="+ String(port_3.m_flow) + ">"+String(m_flow_small)); end if; end if; @@ -229,85 +230,91 @@ equation end if; annotation ( Documentation(info=" -

                -Partial model for flow resistances with three ports such as a -flow mixer/splitter or a three way valve. -

                -

                -If energyDynamics ≠ Modelica.Fluid.Types.Dynamics.SteadyState, -then at the junction of the three flows, -a mixing volume will be present. This will introduce a dynamic energy and momentum -balance, which often breaks algebraic loops. -The time constant of the mixing volume is determined by the parameter tau. -

                -", revisions=" -
                  -
                • -March 22, 2020, by Filip Jorissen:
                  -Corrected error message of asserts that verify whether flow reversal occurs when -verifyFlowReversal=true and portFlowDirection<>Bidirectional. -See #1327. -
                • -
                • -July 7, 2018, by Filip Jorissen:
                  -Added asserts that verify whether flow reversal occurs when -verifyFlowReversal=true and portFlowDirection<>Bidirectional. -See #963. -
                • -
                • -July 8, 2018, by Filip Jorissen:
                  -Added nominal value of h_outflow in FluidPorts. -See #977. -
                • -
                • -March 30, 2018, by Filip Jorissen:
                  -Added graphical illustrations for the values of portFlowDirection. -Added asserts that verify the consistency of -the values of portFlowDirection. -See #902. -
                • -
                • -February 22, 2016, by Michael Wetter:
                  -Conditionally removed control volume vol, and added the conditional connnector -port_internal. -This was already done when the parameter dynamicBalance was present, but -was updated wrong when this parameter was removed. -Without these conditional components, the regression test for -AixLib.Fluid.Examples.ResistanceVolumeFlowReversal fails to simulate. -
                • -
                • -December 17, 2015, by Michael Wetter:
                  -Added assignment redeclare final package Medium=Medium -as this is required for OpenModelica. -This is for - -https://github.com/lbl-srg/modelica-buildings/issues/475. -
                • -
                • -February 20, 2016, by Ruben Baetens:
                  -Removal of dynamicBalance as parameter for massDynamics and energyDynamics. -
                • -
                • -April 13 2015, by Filip Jorissen:
                  -Exposed options for flow reversal to users and added corresponding implementation. -
                • -
                • -March 23 2010, by Michael Wetter:
                  -Changed start values from system.p_start or (code T_start) -to Medium.p_default. -
                • -
                • -September 18, 2008 by Michael Wetter:
                  -Replaced splitter model with a fluid port since the -splitter model in Modelica.Fluid 1.0 beta does not transport -mC_flow. -
                • -
                • -June 11, 2008 by Michael Wetter:
                  -First implementation. -
                • -
                -"), Icon(graphics={ +

                + Partial model for flow resistances with three ports such as a + flow mixer/splitter or a three way valve. +

                +

                + If energyDynamics ≠ Modelica.Fluid.Types.Dynamics.SteadyState, + then at the junction of the three flows, + a mixing volume will be present. This will introduce a dynamic energy and momentum + balance, which often breaks algebraic loops. + The time constant of the mixing volume is determined by the parameter tau. +

                + ",revisions=" +
                  +
                • + March 7, 2022, by Michael Wetter:
                  + Set final massDynamics=energyDynamics.
                  + This is for + #1542. +
                • +
                • + March 22, 2020, by Filip Jorissen:
                  + Corrected error message of asserts that verify whether flow reversal occurs when + verifyFlowReversal=true and portFlowDirection<>Bidirectional. + See #1327. +
                • +
                • + July 7, 2018, by Filip Jorissen:
                  + Added asserts that verify whether flow reversal occurs when + verifyFlowReversal=true and portFlowDirection<>Bidirectional. + See #963. +
                • +
                • + July 8, 2018, by Filip Jorissen:
                  + Added nominal value of h_outflow in FluidPorts. + See #977. +
                • +
                • + March 30, 2018, by Filip Jorissen:
                  + Added graphical illustrations for the values of portFlowDirection. + Added asserts that verify the consistency of + the values of portFlowDirection. + See #902. +
                • +
                • + February 22, 2016, by Michael Wetter:
                  + Conditionally removed control volume vol, and added the conditional connnector + port_internal. + This was already done when the parameter dynamicBalance was present, but + was updated wrong when this parameter was removed. + Without these conditional components, the regression test for + AixLib.Fluid.Examples.ResistanceVolumeFlowReversal fails to simulate. +
                • +
                • + December 17, 2015, by Michael Wetter:
                  + Added assignment redeclare final package Medium=Medium + as this is required for OpenModelica. + This is for + + https://github.com/lbl-srg/modelica-buildings/issues/475. +
                • +
                • + February 20, 2016, by Ruben Baetens:
                  + Removal of dynamicBalance as parameter for massDynamics and energyDynamics. +
                • +
                • + April 13 2015, by Filip Jorissen:
                  + Exposed options for flow reversal to users and added corresponding implementation. +
                • +
                • + March 23 2010, by Michael Wetter:
                  + Changed start values from system.p_start or (code T_start) + to Medium.p_default. +
                • +
                • + September 18, 2008 by Michael Wetter:
                  + Replaced splitter model with a fluid port since the + splitter model in Modelica.Fluid 1.0 beta does not transport + mC_flow. +
                • +
                • + June 11, 2008 by Michael Wetter:
                  + First implementation. +
                • +
                + "),Icon(graphics={ Polygon( points={{104,28},{124,20},{104,12},{104,28}}, lineColor={0,128,255}, @@ -347,5 +354,6 @@ First implementation. fillPattern=FillPattern.Solid, visible=portFlowDirection_3==Modelica.Fluid.Types.PortFlowDirection.Leaving, origin={26,-125}, - rotation=90)})); + rotation=90)}), + __Dymola_LockedEditing="Model from IBPSA"); end PartialThreeWayResistance; diff --git a/AixLib/Fluid/BaseClasses/Validation/ActuatorFilter.mo b/AixLib/Fluid/BaseClasses/Validation/ActuatorFilter.mo new file mode 100644 index 0000000000..4d9508f1e3 --- /dev/null +++ b/AixLib/Fluid/BaseClasses/Validation/ActuatorFilter.mo @@ -0,0 +1,66 @@ +within AixLib.Fluid.BaseClasses.Validation; +model ActuatorFilter "Validation model for the actuator filter" + extends Modelica.Icons.Example; + + parameter Modelica.Units.SI.Time riseTime=10 "Cut-off frequency of filter"; + final parameter Modelica.Units.SI.Frequency fCut=5/(2*Modelica.Constants.pi* + riseTime) "Cut-off frequency of filter"; + + AixLib.Fluid.BaseClasses.ActuatorFilter act_1(f=fCut, initType=Modelica.Blocks.Types.Init.InitialState) + "Filter with u_nominal not set" + annotation (Placement(transformation(extent={{20,-20},{40,0}}))); + AixLib.Fluid.BaseClasses.ActuatorFilter act_2(f=fCut, initType=Modelica.Blocks.Types.Init.InitialState) + "Filter with u_nominal set to 100" + annotation (Placement(transformation(extent={{20,-60},{40,-40}}))); + Modelica.Blocks.Math.Gain gain(k=100) "Gain for input signal" + annotation (Placement(transformation(extent={{-20,-60},{0,-40}}))); + Modelica.Blocks.Sources.Step step(startTime=0) + annotation (Placement(transformation(extent={{-80,20},{-60,40}}))); + AixLib.Fluid.BaseClasses.ActuatorFilter act_y_start05( + f=fCut, + initType=Modelica.Blocks.Types.Init.InitialOutput, + y_start=0.5) "Filter with initial start value for output" + annotation (Placement(transformation(extent={{20,60},{40,80}}))); + AixLib.Fluid.BaseClasses.ActuatorFilter act_y_start1( + f=fCut, + initType=Modelica.Blocks.Types.Init.InitialOutput, + y_start=1) "Filter with initial start value for output" + annotation (Placement(transformation(extent={{20,20},{40,40}}))); +equation + connect(act_2.u, gain.y) + annotation (Line(points={{18,-50},{1,-50}}, color={0,0,127})); + connect(step.y, act_1.u) + annotation (Line(points={{-59,30},{-28,30},{-28,-10},{18,-10}}, + color={0,0,127})); + connect(step.y, gain.u) annotation (Line(points={{-59,30},{-28,30},{-28,-50},{ + -22,-50}}, color={0,0,127})); + connect(act_y_start05.u, step.y) annotation (Line(points={{18,70},{-28,70},{-28, + 30},{-59,30}}, color={0,0,127})); + connect(act_y_start1.u, step.y) + annotation (Line(points={{18,30},{-59,30}}, color={0,0,127})); + annotation ( + __Dymola_Commands(file= + "modelica://AixLib/Resources/Scripts/Dymola/Fluid/BaseClasses/Validation/ActuatorFilter.mos" + "Simulate and plot"), + experiment( + StopTime=20, + Tolerance=1e-06), + Documentation(info=" +

                + This example validates + + AixLib.Fluid.BaseClasses.ActuatorFilter. + The validation is done for different settings of u_nominal and for + different start values of the filter output. +

                + ",revisions=" +
                  +
                • + July 22, 2021, by Michael Wetter:
                  + First implementation for + IBPSA, #1498 +
                • +
                + "), + __Dymola_LockedEditing="Model from IBPSA"); +end ActuatorFilter; diff --git a/AixLib/Fluid/BaseClasses/Validation/MassFlowRateMultiplier.mo b/AixLib/Fluid/BaseClasses/Validation/MassFlowRateMultiplier.mo index 8ea30af770..12ba555d2e 100644 --- a/AixLib/Fluid/BaseClasses/Validation/MassFlowRateMultiplier.mo +++ b/AixLib/Fluid/BaseClasses/Validation/MassFlowRateMultiplier.mo @@ -39,17 +39,18 @@ equation "Simulate and plot"), experiment(Tolerance=1e-6, StartTime=0.0, StopTime=10.0), Documentation(info=" -

                -This example demonstrates the use of - -AixLib.Fluid.BaseClasses.MassFlowRateMultiplier. -

                -", revisions=" -
                  -
                • -July 19, 2018, by Massimo Cimmino:
                  -First implementation. -
                • -
                -")); +

                + This example demonstrates the use of + + AixLib.Fluid.BaseClasses.MassFlowRateMultiplier. +

                + ",revisions=" +
                  +
                • + July 19, 2018, by Massimo Cimmino:
                  + First implementation. +
                • +
                + "), + __Dymola_LockedEditing="Model from IBPSA"); end MassFlowRateMultiplier; diff --git a/AixLib/Fluid/BaseClasses/Validation/package.order b/AixLib/Fluid/BaseClasses/Validation/package.order index 7e80f36502..5bce6d6e2d 100644 --- a/AixLib/Fluid/BaseClasses/Validation/package.order +++ b/AixLib/Fluid/BaseClasses/Validation/package.order @@ -1 +1,2 @@ +ActuatorFilter MassFlowRateMultiplier diff --git a/AixLib/Fluid/BaseClasses/package.mo b/AixLib/Fluid/BaseClasses/package.mo index 4ff4d4ec6f..54b852f25e 100644 --- a/AixLib/Fluid/BaseClasses/package.mo +++ b/AixLib/Fluid/BaseClasses/package.mo @@ -1,6 +1,7 @@ within AixLib.Fluid; package BaseClasses "Package with base classes for AixLib.Fluid" extends Modelica.Icons.BasesPackage; + annotation (preferredView="info", Documentation(info="

                This package contains base classes that are used to construct the models in diff --git a/AixLib/Fluid/BaseClasses/package.order b/AixLib/Fluid/BaseClasses/package.order index 4e01a9e65f..9b1e2b66fd 100644 --- a/AixLib/Fluid/BaseClasses/package.order +++ b/AixLib/Fluid/BaseClasses/package.order @@ -1,3 +1,4 @@ +ActuatorFilter IndexMassFraction MassFlowRateMultiplier PartialInnerCycle diff --git a/AixLib/Fluid/BoilerCHP/BaseClasses/CondensingBoilerEfficiency.mo b/AixLib/Fluid/BoilerCHP/BaseClasses/CondensingBoilerEfficiency.mo index 95227ac216..842b5cb9b3 100644 --- a/AixLib/Fluid/BoilerCHP/BaseClasses/CondensingBoilerEfficiency.mo +++ b/AixLib/Fluid/BoilerCHP/BaseClasses/CondensingBoilerEfficiency.mo @@ -1,15 +1,14 @@ -within AixLib.Fluid.BoilerCHP.BaseClasses; +within AixLib.Fluid.BoilerCHP.BaseClasses; model CondensingBoilerEfficiency "Model for temperature depending efficiency of a condensing boiler" parameter Real lambda=0.01 "Offset variable of weighting coefficients sigmas"; - parameter Modelica.SIunits.Temperature T_nom=343.15 - "Nominal temperature"; - parameter Modelica.SIunits.Temperature T_part=308.15 + parameter Modelica.Units.SI.Temperature T_nom=343.15 "Nominal temperature"; + parameter Modelica.Units.SI.Temperature T_part=308.15 "Intermediate temperature"; - parameter Modelica.SIunits.Efficiency eta_nom=1 + parameter Modelica.Units.SI.Efficiency eta_nom=1 "Nominal net heating value efficiency"; - parameter Modelica.SIunits.Efficiency eta_int=1 + parameter Modelica.Units.SI.Efficiency eta_int=1 "Intermediate net heating value efficiency"; parameter Real eta_max=1.11 "Ratio gross (high) heating value / net (low) heating value defined according to the fuel"; @@ -20,7 +19,11 @@ model CondensingBoilerEfficiency Real sigmaSens; Real sigmaCond; Real etaRP; - Modelica.SIunits.Temperature Tc(start=360, max=380, min=323, nominal=360) + Modelica.Units.SI.Temperature Tc( + start=360, + max=380, + min=323, + nominal=360) "Temperature of Sensitive and Latent characteristic intersection"; //start value is important: equation below has two solutions diff --git a/AixLib/Fluid/BoilerCHP/BaseClasses/Controllers/ControllerOnOffModularCHP.mo b/AixLib/Fluid/BoilerCHP/BaseClasses/Controllers/ControllerOnOffModularCHP.mo index 2ef5f9ac29..443557091f 100644 --- a/AixLib/Fluid/BoilerCHP/BaseClasses/Controllers/ControllerOnOffModularCHP.mo +++ b/AixLib/Fluid/BoilerCHP/BaseClasses/Controllers/ControllerOnOffModularCHP.mo @@ -6,7 +6,7 @@ model ControllerOnOffModularCHP CHPEngineModel=DataBase.CHP.ModularCHPEngineData.CHP_ECPowerXRGI15() "CHP engine data for calculations" annotation (choicesAllMatching=true, Dialog(group="Unit properties")); - parameter Modelica.SIunits.Time startTimeChp=0 + parameter Modelica.Units.SI.Time startTimeChp=0 "Start time for discontinous simulation tests to heat the Chp unit up to the prescribed return temperature"; parameter Real modTab[:,2]=[0.0,0.8; 7200,0.8; 7200,0.93; 10800,0.93; 10800, 0.62; 14400,0.62; 14400,0.8; 18000,0.8; 18000,0.0] diff --git a/AixLib/Fluid/BoilerCHP/BaseClasses/Controllers/DelayedOnOffController.mo b/AixLib/Fluid/BoilerCHP/BaseClasses/Controllers/DelayedOnOffController.mo index a26bf3124d..6d276c8ec1 100644 --- a/AixLib/Fluid/BoilerCHP/BaseClasses/Controllers/DelayedOnOffController.mo +++ b/AixLib/Fluid/BoilerCHP/BaseClasses/Controllers/DelayedOnOffController.mo @@ -1,14 +1,13 @@ within AixLib.Fluid.BoilerCHP.BaseClasses.Controllers; model DelayedOnOffController "CHP On/Off controller" - parameter Modelica.SIunits.Temperature maxTReturn + parameter Modelica.Units.SI.Temperature maxTReturn "Maximum return temperature"; - parameter Modelica.SIunits.ThermodynamicTemperature minDeltaT + parameter Modelica.Units.SI.ThermodynamicTemperature minDeltaT "Minimum flow and return temperature difference"; - parameter Modelica.SIunits.ThermodynamicTemperature TFlowRange + parameter Modelica.Units.SI.ThermodynamicTemperature TFlowRange "Range of the flow temperature"; - parameter Modelica.SIunits.Time delayTime - "On/Off delay time"; + parameter Modelica.Units.SI.Time delayTime "On/Off delay time"; parameter Boolean initialOutput=false "Initial output"; parameter Real delayUnit diff --git a/AixLib/Fluid/BoilerCHP/BaseClasses/Controllers/ExternalControlNightDayHC.mo b/AixLib/Fluid/BoilerCHP/BaseClasses/Controllers/ExternalControlNightDayHC.mo index 5d777b9261..2a9609cb4f 100644 --- a/AixLib/Fluid/BoilerCHP/BaseClasses/Controllers/ExternalControlNightDayHC.mo +++ b/AixLib/Fluid/BoilerCHP/BaseClasses/Controllers/ExternalControlNightDayHC.mo @@ -11,15 +11,15 @@ model ExternalControlNightDayHC parameter Real declination "Declination" annotation (Dialog( group= "Heating curves")); - parameter Modelica.SIunits.TemperatureDifference Tdelta_Max + parameter Modelica.Units.SI.TemperatureDifference Tdelta_Max "Difference from set flow temperature over which boiler stops" - annotation ( Dialog(group = "OnOff")); - parameter Modelica.SIunits.TemperatureDifference Tdelta_Min + annotation (Dialog(group="OnOff")); + parameter Modelica.Units.SI.TemperatureDifference Tdelta_Min "Difference from set flow temperature under which boiler starts" - annotation ( Dialog(group = "OnOff")); - parameter Modelica.SIunits.Time Fb + annotation (Dialog(group="OnOff")); + parameter Modelica.Units.SI.Time Fb "Period of time for increased set temperature" - annotation ( Dialog(group = "Day/Night Mode")); + annotation (Dialog(group="Day/Night Mode")); parameter Real FA "Increment for increased set temperature" annotation ( Dialog(group = "Day/Night Mode")); @@ -60,12 +60,10 @@ model ExternalControlNightDayHC annotation (Placement(transformation(extent={{-84,48},{-76.5,55.5}}))); protected - Modelica.Blocks.Tables.CombiTable2D flowTempNight( - final table=paramHC.varFlowTempNight) + Modelica.Blocks.Tables.CombiTable2Ds flowTempNight(final table=paramHC.varFlowTempNight) "Table for setting the flow temperature during night according to the outside temperature" annotation (Placement(transformation(extent={{-49.5,49.5},{-31.5,67.5}}))); - Modelica.Blocks.Tables.CombiTable2D flowTempDay( - final table=paramHC.varFlowTempDay) + Modelica.Blocks.Tables.CombiTable2Ds flowTempDay(final table=paramHC.varFlowTempDay) "Table for setting the flow temperature druing day according to the outside temperature" annotation (Placement(transformation(extent={{-49.5,22.5},{-31.5,40.5}}))); Modelica.Blocks.Math.UnitConversions.To_degC to_degC diff --git a/AixLib/Fluid/BoilerCHP/BaseClasses/Controllers/InternalControl.mo b/AixLib/Fluid/BoilerCHP/BaseClasses/Controllers/InternalControl.mo index 36d7bb728a..9a880f7426 100644 --- a/AixLib/Fluid/BoilerCHP/BaseClasses/Controllers/InternalControl.mo +++ b/AixLib/Fluid/BoilerCHP/BaseClasses/Controllers/InternalControl.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.BoilerCHP.BaseClasses.Controllers; +within AixLib.Fluid.BoilerCHP.BaseClasses.Controllers; model InternalControl "Internal control model for boiler" parameter AixLib.DataBase.Boiler.General.BoilerTwoPointBaseDataDefinition @@ -8,9 +8,9 @@ model InternalControl "Internal control model for boiler" choicesAllMatching = true); parameter Real KR "Gain of boiler heater"; - parameter Modelica.SIunits.Time TN + parameter Modelica.Units.SI.Time TN "Time constant of boiler heater (T>0 required)"; - parameter Modelica.SIunits.Time riseTime + parameter Modelica.Units.SI.Time riseTime "Rise/fall time for step input(T>0 required)"; parameter Modelica.Fluid.Types.Dynamics energyDynamics=Modelica.Fluid.Types.Dynamics.DynamicFreeInitial "Type of energy balance: dynamic (3 initialization options) or steady state" @@ -80,7 +80,7 @@ model InternalControl "Internal control model for boiler" energyDynamics) "For secondary energy consumption" annotation (Placement(transformation(extent={{30,82.5},{49.5,103.5}}))); - Modelica.Blocks.Tables.CombiTable1D efficiencyTable( + Modelica.Blocks.Tables.CombiTable1Dv efficiencyTable( final tableOnFile=false, final table=paramBoiler.eta, final columns={2}, diff --git a/AixLib/Fluid/BoilerCHP/BaseClasses/Controllers/PIController.mo b/AixLib/Fluid/BoilerCHP/BaseClasses/Controllers/PIController.mo index 1b46e656bd..206bfa023b 100644 --- a/AixLib/Fluid/BoilerCHP/BaseClasses/Controllers/PIController.mo +++ b/AixLib/Fluid/BoilerCHP/BaseClasses/Controllers/PIController.mo @@ -3,8 +3,7 @@ model PIController "Two coupled PI controllers for CHP control" parameter Real Kc "Gain of the controller"; - parameter Modelica.SIunits.Time Tc - "Time constant (T>0 required)"; + parameter Modelica.Units.SI.Time Tc "Time constant (T>0 required)"; parameter Real minCapacity "Minimum controller output in load operation"; diff --git a/AixLib/Fluid/BoilerCHP/BaseClasses/PartialHeatGenerator.mo b/AixLib/Fluid/BoilerCHP/BaseClasses/PartialHeatGenerator.mo index 2d2811c618..07865642f6 100644 --- a/AixLib/Fluid/BoilerCHP/BaseClasses/PartialHeatGenerator.mo +++ b/AixLib/Fluid/BoilerCHP/BaseClasses/PartialHeatGenerator.mo @@ -2,22 +2,22 @@ within AixLib.Fluid.BoilerCHP.BaseClasses; partial model PartialHeatGenerator "Partial model for heat generators" extends AixLib.Fluid.Interfaces.PartialTwoPortInterface; - parameter Modelica.SIunits.Time tau=1 + parameter Modelica.Units.SI.Time tau=1 "Time constant of the temperature sensors at nominal flow rate" annotation (Dialog(tab="Advanced", group="Sensor Properties")); parameter Modelica.Blocks.Types.Init initType=Modelica.Blocks.Types.Init.InitialState "Type of initialization (InitialState and InitialOutput are identical)" annotation (Dialog(tab="Advanced", group="Sensor Properties")); - parameter Modelica.SIunits.Temperature T_start=Medium.T_default + parameter Modelica.Units.SI.Temperature T_start=Medium.T_default "Initial or guess value of output (= state)" annotation (Dialog(tab="Advanced", group="Initialization")); parameter Boolean transferHeat=false "If true, temperature T converges towards TAmb when no flow" annotation (Dialog(tab="Advanced", group="Sensor Properties")); - parameter Modelica.SIunits.Temperature TAmb=Medium.T_default + parameter Modelica.Units.SI.Temperature TAmb=Medium.T_default "Fixed ambient temperature for heat transfer" annotation (Dialog(tab="Advanced", group="Sensor Properties")); - parameter Modelica.SIunits.Time tauHeaTra=1200 + parameter Modelica.Units.SI.Time tauHeaTra=1200 "Time constant for heat transfer, default 20 minutes" annotation (Dialog(tab="Advanced", group="Sensor Properties")); parameter Modelica.Media.Interfaces.Types.AbsolutePressure dp_start=0 @@ -30,19 +30,20 @@ partial model PartialHeatGenerator "Partial model for heat generators" "Start value of pressure" annotation (Dialog(tab="Advanced", group="Initialization")); - parameter Modelica.SIunits.PressureDifference dp_nominal=m_flow_nominal ^ 2 * a / (rho_default ^ 2) - "Pressure drop at nominal mass flow rate"; + parameter Modelica.Units.SI.PressureDifference dp_nominal=m_flow_nominal^2*a/ + (rho_default^2) "Pressure drop at nominal mass flow rate" + annotation (Dialog(group="Nominal condition")); parameter Boolean from_dp=false "= true, use m_flow = f(dp) else dp = f(m_flow)" annotation (Dialog(tab="Advanced", group="Pressure drop")); - parameter Modelica.SIunits.Density rho_default = 1000 "Default density of medium. Value assumes water"; parameter Boolean linearized=false "= true, use linear relation between m_flow and dp for any flow rate" annotation (Dialog(tab="Advanced", group="Pressure drop")); parameter Real deltaM=0.3 "Fraction of nominal mass flow rate where transition to turbulent occurs" annotation (Dialog(tab="Advanced", group="Pressure drop")); - parameter Real a "Coefficient of old approach from model Modelica.Fluid.Fittings.GenericResistances.VolumeFlowRate. Recalculated to dp_nominal based on IBPSA approach."; + parameter Real a "Coefficient of old approach from model Modelica.Fluid.Fittings.GenericResistances.VolumeFlowRate. Recalculated to dp_nominal based on IBPSA approach." + annotation (Dialog(tab="Advanced", group="Pressure drop")); Sensors.TemperatureTwoPort senTCold( redeclare final package Medium = Medium, final tau=tau, @@ -95,12 +96,14 @@ partial model PartialHeatGenerator "Partial model for heat generators" final m_flow_nominal=m_flow_nominal, final show_T=false, final allowFlowReversal=allowFlowReversal, - final from_dp=from_dp, - final dp_nominal=dp_nominal, - final linearized=linearized, - final deltaM=deltaM) + final dp_nominal=dp_nominal) "Pressure drop" annotation (Placement(transformation(extent={{-20,-90},{0,-70}}))); + parameter Modelica.Units.SI.Density rho_default=Medium.density_pTX( + Medium.p_default, + Medium.T_default, + Medium.X_default) "Density used for parameterization of pressure curve" + annotation (Dialog(tab="Advanced", group="Pressure drop")); equation connect(port_a, senTCold.port_a) annotation (Line(points={{-100,0},{-90,0},{-90, diff --git a/AixLib/Fluid/BoilerCHP/Boiler.mo b/AixLib/Fluid/BoilerCHP/Boiler.mo index 2df4cf3273..e7893f53cf 100644 --- a/AixLib/Fluid/BoilerCHP/Boiler.mo +++ b/AixLib/Fluid/BoilerCHP/Boiler.mo @@ -1,8 +1,8 @@ -within AixLib.Fluid.BoilerCHP; +within AixLib.Fluid.BoilerCHP; model Boiler "Boiler with internal and external control" extends AixLib.Fluid.BoilerCHP.BaseClasses.PartialHeatGenerator(a=paramBoiler.pressureDrop, - vol(energyDynamics=energyDynamics, - V=paramBoiler.volume)); + vol(energyDynamics=energyDynamics, + V=paramBoiler.volume)); parameter AixLib.DataBase.Boiler.General.BoilerTwoPointBaseDataDefinition paramBoiler @@ -17,24 +17,24 @@ model Boiler "Boiler with internal and external control" parameter Real KR=1 "Gain of Boiler heater" annotation (Dialog(tab = "General", group = "Boiler type")); - parameter Modelica.SIunits.Time TN=0.1 + parameter Modelica.Units.SI.Time TN=0.1 "Time Constant of boiler heater (T>0 required)" - annotation (Dialog(tab = "General", group = "Boiler type")); - parameter Modelica.SIunits.Time riseTime=30 + annotation (Dialog(tab="General", group="Boiler type")); + parameter Modelica.Units.SI.Time riseTime=30 "Rise/Fall time for step input(T>0 required)" - annotation (Dialog(tab = "General", group = "Boiler type")); + annotation (Dialog(tab="General", group="Boiler type")); parameter Real declination=1.1 "Declination" annotation(Dialog(tab="External Control")); - parameter Modelica.SIunits.TemperatureDifference Tdelta_Max=2 + parameter Modelica.Units.SI.TemperatureDifference Tdelta_Max=2 "Difference from set flow temperature over which boiler stops" - annotation(Dialog(tab="External Control")); - parameter Modelica.SIunits.TemperatureDifference Tdelta_Min=2 + annotation (Dialog(tab="External Control")); + parameter Modelica.Units.SI.TemperatureDifference Tdelta_Min=2 "Difference from set flow temperature under which boiler starts" - annotation(Dialog(tab="External Control")); - parameter Modelica.SIunits.Time Fb=3600 + annotation (Dialog(tab="External Control")); + parameter Modelica.Units.SI.Time Fb=3600 "Period of time for increased set temperature" - annotation(Dialog(tab="External Control")); + annotation (Dialog(tab="External Control")); parameter Real FA=0.2 "Increment for increased set temperature" annotation(Dialog(tab="External Control")); diff --git a/AixLib/Fluid/BoilerCHP/BoilerNoControl.mo b/AixLib/Fluid/BoilerCHP/BoilerNoControl.mo index 394d873050..fab8e9103d 100644 --- a/AixLib/Fluid/BoilerCHP/BoilerNoControl.mo +++ b/AixLib/Fluid/BoilerCHP/BoilerNoControl.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.BoilerCHP; +within AixLib.Fluid.BoilerCHP; model BoilerNoControl "Boiler model with physics only" extends AixLib.Fluid.BoilerCHP.BaseClasses.PartialHeatGenerator(a=paramBoiler.pressureDrop, vol(energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, @@ -7,13 +7,13 @@ model BoilerNoControl "Boiler model with physics only" parameter AixLib.DataBase.Boiler.General.BoilerTwoPointBaseDataDefinition paramBoiler "Parameters for Boiler" annotation (Dialog(tab="General", group= "Boiler type"), choicesAllMatching=true); - parameter Modelica.SIunits.ThermalConductance G=0.003*Q_nom/50 + parameter Modelica.Units.SI.ThermalConductance G=0.003*Q_nom/50 "Constant thermal conductance to environment(G=Q_loss/dT)"; - parameter Modelica.SIunits.HeatCapacity C=1.5*Q_nom + parameter Modelica.Units.SI.HeatCapacity C=1.5*Q_nom "Heat capacity of metal (J/K)"; - parameter Modelica.SIunits.Volume V=paramBoiler.volume "Volume"; + parameter Modelica.Units.SI.Volume V=paramBoiler.volume "Volume"; - parameter Modelica.SIunits.Power Q_nom=paramBoiler.Q_nom + parameter Modelica.Units.SI.Power Q_nom=paramBoiler.Q_nom "Nominal heating power"; Modelica.Thermal.HeatTransfer.Components.HeatCapacitor internalCapacity( @@ -58,7 +58,7 @@ model BoilerNoControl "Boiler model with physics only" Placement(transformation(extent={{30,-30},{50,-10}}), iconTransformation( extent={{58,-60},{78,-40}}))); - Modelica.Blocks.Tables.CombiTable1D efficiencyTableLoadDepending( + Modelica.Blocks.Tables.CombiTable1Dv efficiencyTableLoadDepending( final tableOnFile=false, final table=etaLoadBased, final columns={2}, @@ -88,7 +88,7 @@ model BoilerNoControl "Boiler model with physics only" extent={{-10,-10},{10,10}}, rotation=0, origin={10,50}))); - Modelica.Blocks.Tables.CombiTable1D efficiencyTableLoadDepending1( + Modelica.Blocks.Tables.CombiTable1Dv efficiencyTableLoadDepending1( final tableOnFile=false, final table=etaTempBased, final columns={2}, diff --git a/AixLib/Fluid/BoilerCHP/CHP.mo b/AixLib/Fluid/BoilerCHP/CHP.mo index 2b561bab45..359ad641ed 100644 --- a/AixLib/Fluid/BoilerCHP/CHP.mo +++ b/AixLib/Fluid/BoilerCHP/CHP.mo @@ -1,7 +1,7 @@ within AixLib.Fluid.BoilerCHP; model CHP "Table based CHP model" extends AixLib.Fluid.BoilerCHP.BaseClasses.PartialHeatGenerator(a=1e10, - vol(V=param.vol[1])); + vol(V=param.vol[1])); parameter AixLib.DataBase.CHP.CHPDataSimple.CHPBaseDataDefinition param "CHP data set" @@ -20,24 +20,22 @@ model CHP "Table based CHP model" parameter Boolean ctrlStrategy = true "True for flow-, false for return- temperature control strategy" annotation(Dialog(group="Control system")); - parameter Modelica.SIunits.TemperatureDifference minDeltaT = 10 + parameter Modelica.Units.SI.TemperatureDifference minDeltaT=10 "Minimum flow and return temperature difference" - annotation(Dialog(group="Control system")); - parameter Modelica.SIunits.TemperatureDifference TFlowRange = 2 + annotation (Dialog(group="Control system")); + parameter Modelica.Units.SI.TemperatureDifference TFlowRange=2 "Range of allowable flow temperature" - annotation(Dialog(group="Control system")); - parameter Modelica.SIunits.Time delayTime = 3600 - "Shutdown/Startup delay" - annotation(Dialog(group="Control system")); + annotation (Dialog(group="Control system")); + parameter Modelica.Units.SI.Time delayTime=3600 "Shutdown/Startup delay" + annotation (Dialog(group="Control system")); parameter Real Kc = 1 "Gain of the controller" annotation(Dialog(group="Control system")); - parameter Modelica.SIunits.Time Tc=60 - "Time Constant (T>0 required)" - annotation(Dialog(group="Control system")); - parameter Modelica.SIunits.Time delayUnit = 60 + parameter Modelica.Units.SI.Time Tc=60 "Time Constant (T>0 required)" + annotation (Dialog(group="Control system")); + parameter Modelica.Units.SI.Time delayUnit=60 "Delay measurement of the controller output" - annotation(Dialog(group="Control system")); + annotation (Dialog(group="Control system")); Modelica.Blocks.Interfaces.RealInput TSet( final quantity="ThermodynamicTemperature", final unit="K", diff --git a/AixLib/Fluid/BoilerCHP/CHPNoControl.mo b/AixLib/Fluid/BoilerCHP/CHPNoControl.mo new file mode 100644 index 0000000000..1f158678ad --- /dev/null +++ b/AixLib/Fluid/BoilerCHP/CHPNoControl.mo @@ -0,0 +1,229 @@ +within AixLib.Fluid.BoilerCHP; +model CHPNoControl + "Table based CHP model without an internal controller" + extends AixLib.Fluid.BoilerCHP.BaseClasses.PartialHeatGenerator(a=1e10, vol( + energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, + massDynamics=Modelica.Fluid.Types.Dynamics.DynamicFreeInitial, + V=param.vol[1])); + + parameter AixLib.DataBase.CHP.CHPDataSimple.CHPBaseDataDefinition param + "CHP data set" + annotation (choicesAllMatching=true, Dialog(group="Unit properties")); + parameter Real minCapacity = 0 + "Minimum allowable working capacity (unit [-])" + annotation(Dialog(group="Unit properties")); + parameter Modelica.Units.SI.ThermalConductance G=0.003*param.data_CHP[end, 3] + /50 "Constant thermal conductance to environment(G=Q_loss/dT)"; + parameter Modelica.Units.SI.HeatCapacity C=1.5*param.data_CHP[end, 3] + "Heat capacity of metal (J/K)"; + + Modelica.Blocks.Interfaces.RealInput u_rel( + final unit="1") "Relative" annotation (Placement( + transformation(extent={{-126,66},{-100,94}}, rotation=0), + iconTransformation(extent={{-80,-70},{-60,-50}}))); + Modelica.Blocks.Interfaces.RealOutput electricalPower( + final quantity="Power", final unit="W") + "Electrical power" + annotation (Placement( + transformation( + origin={20,110}, + extent={{-10,-10},{10,10}}, + rotation=90), iconTransformation( + extent={{-10,-10},{10,10}}, + rotation=90, + origin={-50,90}))); + Modelica.Blocks.Interfaces.RealOutput thermalPower(final unit="W") + "Thermal power" + annotation (Placement( + transformation( + origin={36,110}, + extent={{-10,-10},{10,10}}, + rotation=90), iconTransformation( + extent={{-10,-10},{10,10}}, + rotation=90, + origin={-20,90}))); + Modelica.Blocks.Interfaces.RealOutput fuelInput(final unit="W") + "Fuel input" + annotation (Placement(transformation( + origin={51,110}, + extent={{-10,-11},{10,11}}, + rotation=90), iconTransformation( + extent={{-10,-11},{10,11}}, + rotation=90, + origin={20,90}))); + Modelica.Blocks.Interfaces.RealOutput fuelConsumption + "Fuel consumption" + annotation (Placement(transformation( + origin={66,110}, + extent={{-10,-10},{10,10}}, + rotation=90), iconTransformation( + extent={{-10,-10},{10,10}}, + rotation=90, + origin={50,90}))); + Modelica.Blocks.Tables.CombiTable1Ds combiTable1Ds( + tableName="NoName", + fileName="NoName", + final table=param.data_CHP) + "Time table to read CHP performance data" + annotation (Placement(transformation(extent={{40,40},{60,60}}, rotation=0))); + Modelica.Blocks.Math.Gain gain(final k=1000) "Conversion factor" + annotation (Placement(transformation(extent={{6,-6},{-6,6}}, + rotation=90, + origin={-60,-4}))); + + Modelica.Blocks.Nonlinear.Limiter limiter(final uMax=1, final uMin= + minCapacity) + "Limits the rel power between 0 and 1" + annotation (Placement(transformation(extent={{-60,40},{-40,60}}))); + Modelica.Blocks.Math.Gain gain4(final k=1000) + "Conversion factor" + annotation (Placement(transformation(extent={{4,-4},{-4,4}}, + rotation=270, + origin={66,90}))); + Modelica.Blocks.Math.Gain gain1(final k=1000) + "Conversion factor" + annotation (Placement(transformation(extent={{4,-4},{-4,4}}, + rotation=270, + origin={20,90}))); + Modelica.Blocks.Math.Gain gain2(final k=1000) + "Conversion factor" + annotation (Placement(transformation(extent={{4,-4},{-4,4}}, + rotation=270, + origin={36,90}))); + Modelica.Blocks.Math.Gain gain3(final k=1000) + "Conversion factor" + annotation (Placement(transformation(extent={{4,-4},{-4,4}}, + rotation=270, + origin={50,90}))); + Modelica.Blocks.Interfaces.RealOutput T_out + "Outflow temperature of the passing fluid" annotation (Placement(transformation( + extent={{100,50},{120,70}}), iconTransformation(extent={{62,22},{82,42}}))); + Modelica.Blocks.Interfaces.RealOutput T_in "Inflow temperature of the passing fluid" + annotation (Placement(transformation(extent={{100,30},{120,50}}), + iconTransformation(extent={{62,48},{82,68}}))); + Modelica.Blocks.Math.Gain toPercent(final k=100) "Conversion factor" + annotation (Placement(transformation( + extent={{6,-6},{-6,6}}, + rotation=180, + origin={12,50}))); + Modelica.Thermal.HeatTransfer.Components.HeatCapacitor internalCapacity(final C=C, + T(start=T_start)) "Boiler thermal capacity (dry weight)" + annotation (Placement(transformation( + extent={{-10,10},{10,-10}}, + rotation=90, + origin={2,-40}))); + Modelica.Thermal.HeatTransfer.Components.ThermalConductor ConductanceToEnv(final G=G) + "Thermal resistance of the boiler casing" annotation ( + Placement(transformation( + extent={{10,-10},{-10,10}}, + rotation=180, + origin={-30,-20}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_b T_amb "Heat port for heat losses to ambient" annotation ( + Placement(transformation(extent={{30,-30},{50,-10}}), iconTransformation( + extent={{58,-60},{78,-40}}))); +equation + + + connect(combiTable1Ds.y[2], gain.u) annotation (Line(points={{61,50},{76,50},{ + 76,3.2},{-60,3.2}}, color={0,0,127})); + connect(gain.y, heater.Q_flow) annotation (Line(points={{-60,-10.6},{-60,-40}}, + color={0,0,127})); + connect(combiTable1Ds.y[4], gain4.u) + annotation (Line(points={{61,50},{66,50},{66,85.2}}, color={0,0,127})); + connect(gain4.y, fuelConsumption) + annotation (Line(points={{66,94.4},{66,110}}, color={0,0,127})); + connect(gain1.u, combiTable1Ds.y[1]) annotation (Line(points={{20,85.2},{20,76}, + {66,76},{66,50},{61,50}}, color={0,0,127})); + connect(gain2.u, combiTable1Ds.y[2]) annotation (Line(points={{36,85.2},{36,76}, + {66,76},{66,50},{61,50}}, color={0,0,127})); + connect(gain3.u, combiTable1Ds.y[3]) annotation (Line(points={{50,85.2},{50,76}, + {66,76},{66,50},{61,50}}, color={0,0,127})); + connect(senTHot.T,T_out) annotation (Line(points={{40,-69},{40,-60},{84,-60}, + {84,60},{110,60}}, color={0,0,127})); + connect(senTCold.T,T_in) annotation (Line(points={{-70,-69},{-70,-100},{110,-100}, + {110,40}}, color={0,0,127})); + connect(limiter.u, u_rel) annotation (Line(points={{-62,50},{-80,50},{-80,80}, + {-113,80}}, color={0,0,127})); + connect(limiter.y, toPercent.u) + annotation (Line(points={{-39,50},{4.8,50}}, color={0,0,127})); + connect(toPercent.y, combiTable1Ds.u) + annotation (Line(points={{18.6,50},{38,50}}, color={0,0,127})); + connect(vol.heatPort,internalCapacity. port) + annotation (Line(points={{-50,-70},{-50,-40},{-8,-40}}, color={191,0,0})); + connect(ConductanceToEnv.port_b,T_amb) + annotation (Line(points={{-20,-20},{40,-20}}, color={191,0,0})); + connect(ConductanceToEnv.port_a, vol.heatPort) + annotation (Line(points={{-40,-20},{-50,-20},{-50,-70}}, color={191,0,0})); + connect(gain1.y, electricalPower) + annotation (Line(points={{20,94.4},{20,110}}, color={0,0,127})); + connect(gain2.y, thermalPower) + annotation (Line(points={{36,94.4},{36,110}}, color={0,0,127})); + connect(gain3.y, fuelInput) annotation (Line(points={{50,94.4},{50,102},{50, + 110},{51,110}}, color={0,0,127})); + annotation (Icon(coordinateSystem(preserveAspectRatio=false), graphics={Text( + extent={{-50,58},{50,18}}, + lineColor={255,255,255}, + fillPattern=FillPattern.HorizontalCylinder, + fillColor={175,175,175}, + textString="CHP", + textStyle={TextStyle.Bold}), + Rectangle( + extent={{-12,6},{12,-36}}, + lineColor={0,0,0}, + fillColor={255,255,255}, + fillPattern=FillPattern.Solid), + Polygon( + points={{-10,-16},{-10,-36},{-8,-30},{8,-30},{10,-36},{10,-16},{-10,-16}}, + lineColor={0,0,0}, + fillColor={215,215,215}, + fillPattern=FillPattern.Solid), + Ellipse( + extent={{-2,-26},{4,-32}}, + lineColor={0,0,0}, + fillColor={135,135,135}, + fillPattern=FillPattern.Solid), + Ellipse( + extent={{-18,-54},{-8,-64}}, + lineColor={0,0,0}, + fillColor={135,135,135}, + fillPattern=FillPattern.Solid), + Polygon( + points={{-2,-30},{-14,-54},{-10,-56},{0,-32},{-2,-30}}, + lineColor={0,0,0}, + fillColor={135,135,135}, + fillPattern=FillPattern.Solid), + Polygon( + points={{-4.5,-15.5},{-8,-10},{0,4},{6,-4},{10,-4},{8,-8},{8,-12},{5.5, + -15.5},{-4.5,-15.5}}, + lineColor={0,0,0}, + fillPattern=FillPattern.Sphere, + fillColor={255,127,0}), + Polygon( + points={{-4.5,-13.5},{0,-4},{6,-10},{2,-14},{-4.5,-13.5}}, + lineColor={255,255,170}, + fillColor={255,255,170}, + fillPattern=FillPattern.Solid)}), Diagram( + coordinateSystem(preserveAspectRatio=false)), + Documentation(info="

                + Overview +

                +

                + A table based combined heat and power (CHP) model. The input is the + relative part load rate [0...1]. +

                +

                + Concept +

                +

                + The dimension of thermal and electrical power outputs and fuel input + as well as the electricity profile should be in kW. The dimension of + fuel consumption depends on the user's data. +

                +", +revisions="
                  +
                • August 31, 2020, by Alexander Kümpel:
                  + First implementation. +
                • +
                +")); +end CHPNoControl; diff --git a/AixLib/Fluid/BoilerCHP/Data.mo b/AixLib/Fluid/BoilerCHP/Data.mo index 83138591cd..2a98ebff73 100644 --- a/AixLib/Fluid/BoilerCHP/Data.mo +++ b/AixLib/Fluid/BoilerCHP/Data.mo @@ -7,9 +7,12 @@ package Data record EngineMaterialData extends Modelica.Icons.Record; - constant Modelica.SIunits.ThermalConductivity lambda = 44.5 "Thermal conductivity of the engine block material (default value is 44.5)"; - constant Modelica.SIunits.Density rhoEngWall = 7200 "Density of the the engine block material (default value is 72000)"; - constant Modelica.SIunits.SpecificHeatCapacity c = 535 "Specific heat capacity of the cylinder wall material (default value is 535)"; + constant Modelica.Units.SI.ThermalConductivity lambda=44.5 + "Thermal conductivity of the engine block material (default value is 44.5)"; + constant Modelica.Units.SI.Density rhoEngWall=7200 + "Density of the the engine block material (default value is 72000)"; + constant Modelica.Units.SI.SpecificHeatCapacity c=535 + "Specific heat capacity of the cylinder wall material (default value is 535)"; annotation (Documentation(revisions="
                • diff --git a/AixLib/Fluid/BoilerCHP/Examples/BoilerNoControlSystem.mo b/AixLib/Fluid/BoilerCHP/Examples/BoilerNoControlSystem.mo index b30e8e0a87..a354d416f4 100644 --- a/AixLib/Fluid/BoilerCHP/Examples/BoilerNoControlSystem.mo +++ b/AixLib/Fluid/BoilerCHP/Examples/BoilerNoControlSystem.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.BoilerCHP.Examples; +within AixLib.Fluid.BoilerCHP.Examples; model BoilerNoControlSystem "Example that illustrates the use of the boiler model without control" extends Modelica.Icons.Example; diff --git a/AixLib/Fluid/BoilerCHP/Examples/BoilerSystem.mo b/AixLib/Fluid/BoilerCHP/Examples/BoilerSystem.mo index cfcedae17d..67d4ae2802 100644 --- a/AixLib/Fluid/BoilerCHP/Examples/BoilerSystem.mo +++ b/AixLib/Fluid/BoilerCHP/Examples/BoilerSystem.mo @@ -45,10 +45,9 @@ model BoilerSystem "Example that illustrates use of boiler model" annotation (Placement(transformation(extent={{-30,-50},{-10,-30}}))); Modelica.Blocks.Sources.Sine sine( amplitude=5, - freqHz=1/86400, + f=1/86400, phase=4.7123889803847, - offset=273.15) - "Ambient air temperature" + offset=273.15) "Ambient air temperature" annotation (Placement(transformation(extent={{-60,60},{-40,80}}))); Modelica.Blocks.Sources.BooleanConstant isNight(k=false) "No night-setback" diff --git a/AixLib/Fluid/BoilerCHP/Examples/CHPSystemNoControl.mo b/AixLib/Fluid/BoilerCHP/Examples/CHPSystemNoControl.mo new file mode 100644 index 0000000000..5d0db3567c --- /dev/null +++ b/AixLib/Fluid/BoilerCHP/Examples/CHPSystemNoControl.mo @@ -0,0 +1,67 @@ +within AixLib.Fluid.BoilerCHP.Examples; +model CHPSystemNoControl "Example that illustrates use of CHPNoControl model" + extends Modelica.Icons.Example; + package Medium = AixLib.Media.Water + annotation (choicesAllMatching=true); + CHPNoControl + combinedHeatPower( + redeclare package Medium = Medium, + m_flow_nominal=0.02, + param=DataBase.CHP.CHPDataSimple.CHP_FMB_65_GSK()) "CHP" + annotation (Placement(transformation(extent={{-10,-10},{10,10}}))); + Modelica.Fluid.Sources.MassFlowSource_T source( + redeclare package Medium = Medium, + use_T_in=true, + nPorts=1, + m_flow=0.5) + "Source" + annotation (Placement(transformation(extent={{-60,-10},{-40,10}}))); + Modelica.Fluid.Sources.Boundary_pT sink( + nPorts=1, redeclare package Medium = Medium) + "Sink" + annotation (Placement(transformation(extent={{60,-10},{40,10}}))); + Modelica.Blocks.Sources.Trapezoid trapezoid( + rising=7200, + width=7200, + falling=7200, + period=28800, + offset=313.15, + amplitude=50, + startTime=7200) + "Source temperature" + annotation (Placement(transformation(extent={{-100,-6},{-80,14}}))); + Modelica.Blocks.Sources.Ramp TSet(duration=200, startTime=10) + "Set temperature" + annotation (Placement(transformation(extent={{-40,-38},{-20,-18}}))); + +equation + connect(source.ports[1],combinedHeatPower. port_a) + annotation (Line(points={{-40,0},{-25,0},{-10,0}}, color={0,127,255})); + connect(combinedHeatPower.port_b, sink.ports[1]) + annotation (Line(points={{10,0},{26,0},{40,0}}, color={0,127,255})); + connect(trapezoid.y, source.T_in) + annotation (Line(points={{-79,4},{-62,4}}, color={0,0,127})); + connect(TSet.y, combinedHeatPower.u_rel) annotation (Line(points={{-19,-28},{ + -16,-28},{-16,-6},{-7,-6}}, + color={0,0,127})); + annotation (Documentation(info="

                  + Overview +

                  +

                  + The simulation illustrates the behavior of AixLib.Fluid.BoilerCHP.CHPNoControl + in different conditions. Inlet and outlet temperature as well as the + electrical and thermal power of the CHP can be observed. +

                  +", + revisions="
                    +
                  • August 31, 2020, by Alexander Kümpel:
                    + First implementation. +
                  • +
                  +"), +experiment(Tolerance=1e-6, StopTime=300, Interval=60), + __Dymola_Commands(file= + "Resources/Scripts/Dymola/Fluid/BoilerCHP/Examples/CHPSystemNoControl.mos" + "Simulate and Plot")); +end CHPSystemNoControl; diff --git a/AixLib/Fluid/BoilerCHP/Examples/ModularCHPSystem.mo b/AixLib/Fluid/BoilerCHP/Examples/ModularCHPSystem.mo index 0ec0bc58ec..6c8d09f6aa 100644 --- a/AixLib/Fluid/BoilerCHP/Examples/ModularCHPSystem.mo +++ b/AixLib/Fluid/BoilerCHP/Examples/ModularCHPSystem.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.BoilerCHP.Examples; +within AixLib.Fluid.BoilerCHP.Examples; model ModularCHPSystem "Example of the modular CHP power unit model inside a heating circuit" extends Modelica.Icons.Example; @@ -25,10 +25,10 @@ model ModularCHPSystem AixLib.Fluid.BoilerCHP.Data.ModularCHP.EngineMaterial_CastIron() "Thermal engine material data for calculations" annotation (choicesAllMatching=true, Dialog(group="Unit properties")); - parameter Modelica.SIunits.Temperature T_amb=293.15 + parameter Modelica.Units.SI.Temperature T_amb=293.15 "Default ambient temperature" annotation (Dialog(group="Ambient Parameters")); - parameter Modelica.SIunits.AbsolutePressure p_amb=101325 + parameter Modelica.Units.SI.AbsolutePressure p_amb=101325 "Default ambient pressure" annotation (Dialog(group="Ambient Parameters")); parameter Real s_til=abs((cHP_PowerUnit.cHP_PowerUnit.inductionMachine.s_nominal *(cHP_PowerUnit.cHP_PowerUnit.inductionMachine.M_til/cHP_PowerUnit.cHP_PowerUnit.inductionMachine.M_nominal) @@ -45,42 +45,46 @@ model ModularCHPSystem "Calibration factor for electric power output (default=1)" annotation (Dialog(tab="Calibration parameters", group="Fast calibration - Electric power and fuel usage")); - parameter Modelica.SIunits.ThermalConductance GEngToCoo=33 + parameter Modelica.Units.SI.ThermalConductance GEngToCoo=33 "Thermal conductance of engine housing from the cylinder wall to the water cooling channels" - annotation (Dialog(tab="Calibration parameters",group= + annotation (Dialog(tab="Calibration parameters", group= "Fast calibration - Thermal power output")); - parameter Modelica.SIunits.ThermalConductance GCooExhHex=400 + parameter Modelica.Units.SI.ThermalConductance GCooExhHex=400 "Thermal conductance of the coolant heat exchanger at nominal flow" - annotation (Dialog(tab="Calibration parameters",group="Fast calibration - Thermal power output")); - parameter Modelica.SIunits.HeatCapacity CExhHex=50000 + annotation (Dialog(tab="Calibration parameters", group= + "Fast calibration - Thermal power output")); + parameter Modelica.Units.SI.HeatCapacity CExhHex=50000 "Heat capacity of exhaust heat exchanger(default= 4000 J/K)" annotation ( - Dialog(tab="Calibration parameters",group= + Dialog(tab="Calibration parameters", group= "Advanced calibration parameters")); - parameter Modelica.SIunits.Mass Cal_mEng=0 + parameter Modelica.Units.SI.Mass Cal_mEng=0 "Added engine mass for calibration purposes of the system´s thermal inertia" - annotation (Dialog(tab="Calibration parameters",group="Advanced calibration parameters")); - parameter Modelica.SIunits.Area A_surExhHea=100 - "Surface for exhaust heat transfer" - annotation (Dialog(tab="Calibration parameters",group="Advanced calibration parameters")); - parameter Modelica.SIunits.MassFlowRate m_flow_Coo=0.4 - "Nominal mass flow rate of coolant inside the engine cooling circle" annotation ( - Dialog(tab="Calibration parameters",group= + annotation (Dialog(tab="Calibration parameters", group= + "Advanced calibration parameters")); + parameter Modelica.Units.SI.Area A_surExhHea=100 + "Surface for exhaust heat transfer" annotation (Dialog(tab= + "Calibration parameters", group="Advanced calibration parameters")); + parameter Modelica.Units.SI.MassFlowRate m_flow_Coo=0.4 + "Nominal mass flow rate of coolant inside the engine cooling circle" + annotation (Dialog(tab="Calibration parameters", group= "Advanced calibration parameters")); - parameter Modelica.SIunits.Thickness dInn=0.01 + parameter Modelica.Units.SI.Thickness dInn=0.01 "Typical value for the thickness of the cylinder wall (between combustion chamber and cooling circle)" - annotation (Dialog(tab="Calibration parameters",group="Fast calibration - Thermal power output")); - parameter Modelica.SIunits.ThermalConductance GEngToAmb=2 + annotation (Dialog(tab="Calibration parameters", group= + "Fast calibration - Thermal power output")); + parameter Modelica.Units.SI.ThermalConductance GEngToAmb=2 "Thermal conductance from engine housing to the surrounding air" - annotation (Dialog(tab="Calibration parameters",group="Advanced calibration parameters")); - parameter Modelica.SIunits.ThermalConductance GAmb=10 - "Constant heat transfer coefficient of engine housing to ambient" annotation ( - Dialog(tab="Calibration parameters",group= + annotation (Dialog(tab="Calibration parameters", group= + "Advanced calibration parameters")); + parameter Modelica.Units.SI.ThermalConductance GAmb=10 + "Constant heat transfer coefficient of engine housing to ambient" + annotation (Dialog(tab="Calibration parameters", group= "Advanced calibration parameters")); parameter Real modTab[:,2]=[0.0,0.8; 7200,0.8; 7200,0.93; 10800,0.93; 10800,0.62; 14400,0.62; 14400,0.8; 18000,0.8; 18000,0.0] "Table for unit modulation (time = first column; modulation factors = second column)" annotation (Dialog(tab="Calibration parameters", group="Fast calibration - Electric power and fuel usage")); - parameter Modelica.SIunits.Temperature T_HeaRet=303.15 + parameter Modelica.Units.SI.Temperature T_HeaRet=303.15 "Constant heating circuit return temperature" annotation (Dialog(tab="Engine Cooling Circle")); parameter Boolean ConTec=true @@ -105,17 +109,17 @@ model ModularCHPSystem mCool_flow_small=0.005 "Small coolant mass flow rate for regularization of zero flow" annotation (Dialog(tab="Advanced", group="Assumptions")); - parameter Modelica.SIunits.Efficiency eps=0.9 "Heat exchanger effectiveness" + parameter Modelica.Units.SI.Efficiency eps=0.9 "Heat exchanger effectiveness" annotation (Dialog(tab="Calibration parameters", group= "Advanced calibration parameters")); - Modelica.SIunits.MassFlowRate m_flow_HeaCir=if not VolCon then CHPEngineModel.m_floCooNominal - else V_flow_HeaCir*senDen.d + Modelica.Units.SI.MassFlowRate m_flow_HeaCir=if not VolCon then + CHPEngineModel.m_floCooNominal else V_flow_HeaCir*senDen.d "Nominal mass flow rate inside the heating circuit" annotation (Dialog(tab="Engine Cooling Circle")); - Modelica.SIunits.VolumeFlowRate V_flow_HeaCir=0.3/3600 - "Nominal volume flow rate inside the heating circuit" annotation (Dialog(tab= - "Engine Cooling Circle")); + Modelica.Units.SI.VolumeFlowRate V_flow_HeaCir=0.3/3600 + "Nominal volume flow rate inside the heating circuit" + annotation (Dialog(tab="Engine Cooling Circle")); Modelica.Fluid.Sources.MassFlowSource_T source( use_T_in=true, @@ -178,9 +182,9 @@ protected DataBase.CHP.ModularCHPEngineMedia.CHPFlueGasLambdaOnePlus constrainedby DataBase.CHP.ModularCHPEngineMedia.CHPCombustionMixtureGasNasa "Exhaust gas medium model used in the CHP plant" annotation(choicesAllMatching=true); - parameter Modelica.SIunits.Mass mEng=CHPEngineModel.mEng + Cal_mEng - "Total engine mass for heat capacity calculation" - annotation (Dialog(tab="Calibration parameters",group="Advanced calibration parameters")); + parameter Modelica.Units.SI.Mass mEng=CHPEngineModel.mEng + Cal_mEng + "Total engine mass for heat capacity calculation" annotation (Dialog(tab= + "Calibration parameters", group="Advanced calibration parameters")); equation connect(source.T_in, tempFlowHeating.y) annotation (Line(points={{-62,4},{-68, diff --git a/AixLib/Fluid/BoilerCHP/Examples/package.order b/AixLib/Fluid/BoilerCHP/Examples/package.order index 0c3bc309a3..ff7b5c97af 100644 --- a/AixLib/Fluid/BoilerCHP/Examples/package.order +++ b/AixLib/Fluid/BoilerCHP/Examples/package.order @@ -1,5 +1,6 @@ BoilerNoControlSystem BoilerSystem CHPSystem +CHPSystemNoControl HeatGeneratorNoControllSystem ModularCHPSystem diff --git a/AixLib/Fluid/BoilerCHP/HeatGeneratorNoControl.mo b/AixLib/Fluid/BoilerCHP/HeatGeneratorNoControl.mo index d786aa0891..86212bde56 100644 --- a/AixLib/Fluid/BoilerCHP/HeatGeneratorNoControl.mo +++ b/AixLib/Fluid/BoilerCHP/HeatGeneratorNoControl.mo @@ -35,7 +35,7 @@ model HeatGeneratorNoControl "Simple heat generator without control" extent={{-10,-10},{10,10}}, rotation=90, origin={40,90}))); - parameter Modelica.SIunits.Volume V + parameter Modelica.Units.SI.Volume V "Volume of the heat exchanger inside the heat generator"; parameter Real coeffPresLoss "Pressure loss coefficient of the heat generator"; diff --git a/AixLib/Fluid/BoilerCHP/ModularCHP/BaseClasses/BaseClassComponents/GasolineEngineChp_EngineHousing.mo b/AixLib/Fluid/BoilerCHP/ModularCHP/BaseClasses/BaseClassComponents/GasolineEngineChp_EngineHousing.mo index a3986ee78f..cff2002936 100644 --- a/AixLib/Fluid/BoilerCHP/ModularCHP/BaseClasses/BaseClassComponents/GasolineEngineChp_EngineHousing.mo +++ b/AixLib/Fluid/BoilerCHP/ModularCHP/BaseClasses/BaseClassComponents/GasolineEngineChp_EngineHousing.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.BoilerCHP.ModularCHP.BaseClasses.BaseClassComponents; +within AixLib.Fluid.BoilerCHP.ModularCHP.BaseClasses.BaseClassComponents; class GasolineEngineChp_EngineHousing "Engine housing as a simple two layer wall." @@ -7,7 +7,7 @@ class GasolineEngineChp_EngineHousing constrainedby DataBase.CHP.ModularCHPEngineMedia.CHPCombustionMixtureGasNasa "Exhaust gas medium model used in the CHP plant" annotation(choicesAllMatching=true); - parameter Modelica.SIunits.Thickness dInn=0.005 + parameter Modelica.Units.SI.Thickness dInn=0.005 "Typical value for the thickness of the cylinder wall (between combustion chamber and cooling circle)" annotation (Dialog(tab="Calibration properties")); parameter AixLib.Fluid.BoilerCHP.Data.ModularCHP.EngineMaterialData @@ -15,55 +15,53 @@ class GasolineEngineChp_EngineHousing "Thermal engine material data for calculations (most common is cast iron)" annotation (choicesAllMatching=true, Dialog(tab="Structure", group= "Material Properties")); - constant Modelica.SIunits.ThermalConductivity lambda=EngMatData.lambda - "Thermal conductivity of the engine block material" annotation (Dialog(tab="Structure", group="Material Properties")); - constant Modelica.SIunits.Density rhoEngWall=EngMatData.rhoEngWall - "Density of the the engine block material" annotation (Dialog(tab="Structure", group="Material Properties")); - constant Modelica.SIunits.SpecificHeatCapacity c=EngMatData.c - "Specific heat capacity of the cylinder wall material" annotation (Dialog(tab="Structure", group="Material Properties")); + constant Modelica.Units.SI.ThermalConductivity lambda=EngMatData.lambda + "Thermal conductivity of the engine block material" + annotation (Dialog(tab="Structure", group="Material Properties")); + constant Modelica.Units.SI.Density rhoEngWall=EngMatData.rhoEngWall + "Density of the the engine block material" + annotation (Dialog(tab="Structure", group="Material Properties")); + constant Modelica.Units.SI.SpecificHeatCapacity c=EngMatData.c + "Specific heat capacity of the cylinder wall material" + annotation (Dialog(tab="Structure", group="Material Properties")); constant Real z "Number of engine cylinders" annotation (Dialog(tab="Structure", group="Engine Properties")); - constant Modelica.SIunits.Thickness dCyl - "Engine cylinder diameter" + constant Modelica.Units.SI.Thickness dCyl "Engine cylinder diameter" annotation (Dialog(tab="Structure", group="Engine Properties")); - constant Modelica.SIunits.Thickness hStr - "Engine stroke" + constant Modelica.Units.SI.Thickness hStr "Engine stroke" annotation (Dialog(tab="Structure", group="Engine Properties")); constant Real eps "Engine compression ratio" annotation (Dialog(tab="Structure", group="Engine Properties")); - parameter Modelica.SIunits.Mass mEng - "Total engine mass" + parameter Modelica.Units.SI.Mass mEng "Total engine mass" annotation (Dialog(tab="Structure", group="Engine Properties")); - parameter Modelica.SIunits.ThermalConductance GEngToAmb=0.23 + parameter Modelica.Units.SI.ThermalConductance GEngToAmb=0.23 "Thermal conductance from engine housing to the surrounding air" - annotation (Dialog(tab="Thermal")); - parameter Modelica.SIunits.Temperature T_Amb=298.15 - "Ambient temperature" + annotation (Dialog(tab="Thermal")); + parameter Modelica.Units.SI.Temperature T_Amb=298.15 "Ambient temperature" annotation (Dialog(tab="Thermal")); Real nEng "Current engine speed" annotation (Dialog(tab="Structure", group="Engine Properties")); - Modelica.SIunits.ThermalConductance CalT_Exh - "Calculation variable for the temperature of the exhaust gas"; - Modelica.SIunits.Temperature T_Com + Modelica.Units.SI.ThermalConductance CalT_Exh + "Calculation variable for the temperature of the exhaust gas"; + Modelica.Units.SI.Temperature T_Com "Calculated maximum combustion temperature inside the engine" - annotation (Dialog(tab="Thermal")); - Modelica.SIunits.Temperature T_CylWall - "Temperature of cylinder wall"; + annotation (Dialog(tab="Thermal")); + Modelica.Units.SI.Temperature T_CylWall "Temperature of cylinder wall"; /* Modelica.SIunits.Temperature T_LogMeanCool "Mean logarithmic coolant temperature" annotation (Dialog(tab="Thermal")); */ - Modelica.SIunits.Temperature T_Exh - "Inlet temperature of exhaust gas" annotation (Dialog(group="Thermal")); - Modelica.SIunits.Temperature T_ExhPowUniOut - "Outlet temperature of exhaust gas" - annotation (Dialog(tab="Thermal")); + Modelica.Units.SI.Temperature T_Exh "Inlet temperature of exhaust gas" + annotation (Dialog(group="Thermal")); + Modelica.Units.SI.Temperature T_ExhPowUniOut + "Outlet temperature of exhaust gas" annotation (Dialog(tab="Thermal")); type RotationSpeed=Real(final unit="1/s", min=0); - Modelica.SIunits.MassFlowRate m_Exh - "Mass flow rate of exhaust gas" annotation (Dialog(tab="Thermal")); - Modelica.SIunits.SpecificHeatCapacity meanCpExh - "Mean specific heat capacity of the exhaust gas" annotation (Dialog(tab="Thermal")); + Modelica.Units.SI.MassFlowRate m_Exh "Mass flow rate of exhaust gas" + annotation (Dialog(tab="Thermal")); + Modelica.Units.SI.SpecificHeatCapacity meanCpExh + "Mean specific heat capacity of the exhaust gas" + annotation (Dialog(tab="Thermal")); Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a port_amb "Heat port to ambient" annotation ( @@ -140,30 +138,31 @@ class GasolineEngineChp_EngineHousing origin={0,122}))); protected - constant Modelica.SIunits.Area A_WInn=z*(Modelica.Constants.pi*dCyl*(dCyl/2 + hStr*(1 + 1/(eps - 1)))) + constant Modelica.Units.SI.Area A_WInn=z*(Modelica.Constants.pi*dCyl*(dCyl/2 + + hStr*(1 + 1/(eps - 1)))) "Area of heat transporting surface from cylinder wall to outer engine block" annotation (Dialog(tab="Structure")); - parameter Modelica.SIunits.Mass mEngWall=A_WInn*rhoEngWall*dInn + parameter Modelica.Units.SI.Mass mEngWall=A_WInn*rhoEngWall*dInn "Calculated mass of cylinder wall between combustion chamber and cooling circle" annotation (Dialog(tab="Structure")); - parameter Modelica.SIunits.Mass mEngBlo=mEng - mEngWall + parameter Modelica.Units.SI.Mass mEngBlo=mEng - mEngWall "Calculated mass of the remaining engine body" annotation (Dialog(tab="Structure")); - parameter Modelica.SIunits.Thickness dOut=mEngBlo/A_WInn/rhoEngWall + parameter Modelica.Units.SI.Thickness dOut=mEngBlo/A_WInn/rhoEngWall "Thickness of outer wall of the remaining engine body" annotation (Dialog(tab="Structure")); - parameter Modelica.SIunits.HeatCapacity CEngWall=dInn*A_WInn*rhoEngWall*c + parameter Modelica.Units.SI.HeatCapacity CEngWall=dInn*A_WInn*rhoEngWall*c "Heat capacity of cylinder wall between combustion chamber and cooling circle" annotation (Dialog(tab="Thermal")); - parameter Modelica.SIunits.HeatCapacity CEngBlo=dOut*A_WInn*rhoEngWall*c + parameter Modelica.Units.SI.HeatCapacity CEngBlo=dOut*A_WInn*rhoEngWall*c "Heat capacity of the remaining engine body" annotation (Dialog(tab="Thermal")); - parameter Modelica.SIunits.ThermalConductance GInnWall=lambda*A_WInn/dInn - "Thermal conductance of the inner engine wall" + parameter Modelica.Units.SI.ThermalConductance GInnWall=lambda*A_WInn/dInn + "Thermal conductance of the inner engine wall" + annotation (Dialog(tab="Thermal")); + parameter Modelica.Units.SI.ThermalConductance GEngBlo=lambda*A_WInn/dOut + "Thermal conductance of the remaining engine body" annotation (Dialog(tab="Thermal")); - parameter Modelica.SIunits.ThermalConductance GEngBlo=lambda*A_WInn/dOut - "Thermal conductance of the remaining engine body" - annotation (Dialog(tab="Thermal")); equation diff --git a/AixLib/Fluid/BoilerCHP/ModularCHP/BaseClasses/BaseClassComponents/GasolineEngineChp_EngineHousing_CylToInnerWall.mo b/AixLib/Fluid/BoilerCHP/ModularCHP/BaseClasses/BaseClassComponents/GasolineEngineChp_EngineHousing_CylToInnerWall.mo index d3b44153b0..ee3ec5805b 100644 --- a/AixLib/Fluid/BoilerCHP/ModularCHP/BaseClasses/BaseClassComponents/GasolineEngineChp_EngineHousing_CylToInnerWall.mo +++ b/AixLib/Fluid/BoilerCHP/ModularCHP/BaseClasses/BaseClassComponents/GasolineEngineChp_EngineHousing_CylToInnerWall.mo @@ -1,15 +1,16 @@ within AixLib.Fluid.BoilerCHP.ModularCHP.BaseClasses.BaseClassComponents; model GasolineEngineChp_EngineHousing_CylToInnerWall - parameter Modelica.SIunits.ThermalConductance GInnWall=lambda*A_WInn/dInn - "Thermal conductance of the inner engine wall" - annotation (Dialog(group="Thermal")); - parameter Modelica.SIunits.Thickness dInn=0.005 + parameter Modelica.Units.SI.ThermalConductance GInnWall=lambda*A_WInn/dInn + "Thermal conductance of the inner engine wall" + annotation (Dialog(group="Thermal")); + parameter Modelica.Units.SI.Thickness dInn=0.005 "Typical value for the thickness of the cylinder wall (between combustion chamber and cooling circle)" annotation (Dialog(tab="Structure Calculations")); - parameter Modelica.SIunits.ThermalConductivity lambda=44.5 - "Thermal conductivity of the engine block material" annotation (Dialog(tab="Structure", group="Material Properties")); - parameter Modelica.SIunits.Area A_WInn + parameter Modelica.Units.SI.ThermalConductivity lambda=44.5 + "Thermal conductivity of the engine block material" + annotation (Dialog(tab="Structure", group="Material Properties")); + parameter Modelica.Units.SI.Area A_WInn "Area of heat transporting surface from cylinder wall to outer engine block" annotation (Dialog(tab="Structure Calculations")); parameter Real z=4 diff --git a/AixLib/Fluid/BoilerCHP/ModularCHP/BaseClasses/BaseClassComponents/GasolineEngineChp_EngineHousing_EngineBlock.mo b/AixLib/Fluid/BoilerCHP/ModularCHP/BaseClasses/BaseClassComponents/GasolineEngineChp_EngineHousing_EngineBlock.mo index 4974453e4e..0d9eaa8457 100644 --- a/AixLib/Fluid/BoilerCHP/ModularCHP/BaseClasses/BaseClassComponents/GasolineEngineChp_EngineHousing_EngineBlock.mo +++ b/AixLib/Fluid/BoilerCHP/ModularCHP/BaseClasses/BaseClassComponents/GasolineEngineChp_EngineHousing_EngineBlock.mo @@ -1,42 +1,45 @@ within AixLib.Fluid.BoilerCHP.ModularCHP.BaseClasses.BaseClassComponents; model GasolineEngineChp_EngineHousing_EngineBlock - parameter Modelica.SIunits.HeatCapacity CEngBlo=dOut*A_WInn*rhoEngWall*c + parameter Modelica.Units.SI.HeatCapacity CEngBlo=dOut*A_WInn*rhoEngWall*c "Heat capacity of the remaining engine body" annotation (Dialog(group="Thermal")); - parameter Modelica.SIunits.ThermalConductance GEngToAmb=0.23 - "Thermal conductance from the engine block to the ambient" annotation (Dialog(group="Thermal")); - parameter Modelica.SIunits.ThermalConductance GInnWall=lambda*A_WInn/dInn - "Thermal conductance of the inner engine wall" - annotation (Dialog(group="Thermal")); - parameter Modelica.SIunits.ThermalConductance GEngBlo=lambda*A_WInn/dOut - "Thermal conductance of the outer engine wall" - annotation (Dialog(group="Thermal")); - parameter Modelica.SIunits.Temperature T_Amb=298.15 - "Ambient temperature" + parameter Modelica.Units.SI.ThermalConductance GEngToAmb=0.23 + "Thermal conductance from the engine block to the ambient" + annotation (Dialog(group="Thermal")); + parameter Modelica.Units.SI.ThermalConductance GInnWall=lambda*A_WInn/dInn + "Thermal conductance of the inner engine wall" + annotation (Dialog(group="Thermal")); + parameter Modelica.Units.SI.ThermalConductance GEngBlo=lambda*A_WInn/dOut + "Thermal conductance of the outer engine wall" + annotation (Dialog(group="Thermal")); + parameter Modelica.Units.SI.Temperature T_Amb=298.15 "Ambient temperature" annotation (Dialog(tab="Thermal")); - parameter Modelica.SIunits.Thickness dInn=0.005 + parameter Modelica.Units.SI.Thickness dInn=0.005 "Typical value for the thickness of the cylinder wall (between combustion chamber and cooling circle)" annotation (Dialog(tab="Structure Calculations")); - parameter Modelica.SIunits.Thickness dOut=mEngBlo/A_WInn/rhoEngWall + parameter Modelica.Units.SI.Thickness dOut=mEngBlo/A_WInn/rhoEngWall "Thickness of outer wall of the remaining engine body" annotation (Dialog(tab="Structure Calculations")); - parameter Modelica.SIunits.ThermalConductivity lambda=44.5 - "Thermal conductivity of the engine block material" annotation (Dialog(tab="Structure", group="Material Properties")); - parameter Modelica.SIunits.Density rhoEngWall=72000 - "Density of the the engine block material" annotation (Dialog(tab="Structure", group="Material Properties")); - parameter Modelica.SIunits.SpecificHeatCapacity c=535 - "Specific heat capacity of the cylinder wall material" annotation (Dialog(tab="Structure", group="Material Properties")); - parameter Modelica.SIunits.Area A_WInn + parameter Modelica.Units.SI.ThermalConductivity lambda=44.5 + "Thermal conductivity of the engine block material" + annotation (Dialog(tab="Structure", group="Material Properties")); + parameter Modelica.Units.SI.Density rhoEngWall=72000 + "Density of the the engine block material" + annotation (Dialog(tab="Structure", group="Material Properties")); + parameter Modelica.Units.SI.SpecificHeatCapacity c=535 + "Specific heat capacity of the cylinder wall material" + annotation (Dialog(tab="Structure", group="Material Properties")); + parameter Modelica.Units.SI.Area A_WInn "Area of heat transporting surface from cylinder wall to outer engine block" annotation (Dialog(tab="Structure Calculations")); parameter Real z annotation (Dialog(tab="Structure", group="Engine Properties")); - parameter Modelica.SIunits.Mass mEngBlo=mEng - mEngWall + parameter Modelica.Units.SI.Mass mEngBlo=mEng - mEngWall annotation (Dialog(tab="Structure Calculations")); - parameter Modelica.SIunits.Mass mEng - annotation (Dialog(tab="Structure", group="Engine Properties")); - parameter Modelica.SIunits.Mass mEngWall=A_WInn*rhoEngWall*dInn + parameter Modelica.Units.SI.Mass mEng + annotation (Dialog(tab="Structure", group="Engine Properties")); + parameter Modelica.Units.SI.Mass mEngWall=A_WInn*rhoEngWall*dInn annotation (Dialog(tab="Structure Calculations")); Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a port_a "Heat port to engine block" annotation ( diff --git a/AixLib/Fluid/BoilerCHP/ModularCHP/BaseClasses/BaseClassComponents/GasolineEngineChp_EngineModel.mo b/AixLib/Fluid/BoilerCHP/ModularCHP/BaseClasses/BaseClassComponents/GasolineEngineChp_EngineModel.mo index cb05ed47ab..e53fe64d77 100644 --- a/AixLib/Fluid/BoilerCHP/ModularCHP/BaseClasses/BaseClassComponents/GasolineEngineChp_EngineModel.mo +++ b/AixLib/Fluid/BoilerCHP/ModularCHP/BaseClasses/BaseClassComponents/GasolineEngineChp_EngineModel.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.BoilerCHP.ModularCHP.BaseClasses.BaseClassComponents; +within AixLib.Fluid.BoilerCHP.ModularCHP.BaseClasses.BaseClassComponents; model GasolineEngineChp_EngineModel "Internal combustion engine model for CHP-applications." import AixLib; @@ -21,37 +21,52 @@ model GasolineEngineChp_EngineModel CHPEngData=DataBase.CHP.ModularCHPEngineData.CHP_SenerTecDachsG5_5() "Needed engine data for calculations" annotation (choicesAllMatching=true, Dialog(group="Unit properties")); - constant Modelica.SIunits.Volume VCyl = CHPEngData.VEng/CHPEngData.z "Cylinder displacement"; + constant Modelica.Units.SI.Volume VCyl=CHPEngData.VEng/CHPEngData.z + "Cylinder displacement"; type RotationSpeed=Real(final unit="1/s", min=0); constant RotationSpeed nEngNominal = 25.583 "Nominal engine speed at operating point"; - constant Modelica.SIunits.Power P_mecNominal = CHPEngData.P_mecNominal "Mecanical power output at nominal operating point"; - parameter Modelica.SIunits.Temperature T_Amb=298.15 "Ambient temperature (matches to fuel and combustion air temperature)"; + constant Modelica.Units.SI.Power P_mecNominal=CHPEngData.P_mecNominal + "Mecanical power output at nominal operating point"; + parameter Modelica.Units.SI.Temperature T_Amb=298.15 + "Ambient temperature (matches to fuel and combustion air temperature)"; type GasConstant=Real(final unit="J/(mol.K)"); constant GasConstant R = 8.31446 "Gasconstant for calculation purposes"; constant Real QuoDCyl = CHPEngData.QuoDCyl; constant Boolean FuelType = Medium1.isGas "True = Gasoline fuel, False = Liquid fuel"; - constant Modelica.SIunits.MassFlowRate m_MaxExh=CHPEngData.P_FueNominal/H_U*(1 - + Lambda*L_St) + constant Modelica.Units.SI.MassFlowRate m_MaxExh=CHPEngData.P_FueNominal/H_U* + (1 + Lambda*L_St) "Maximal exhaust gas flow based on the fuel and combustion properties"; - constant Modelica.SIunits.Mass m_FueEngRot=CHPEngData.P_FueNominal*60/(H_U* + constant Modelica.Units.SI.Mass m_FueEngRot=CHPEngData.P_FueNominal*60/(H_U* CHPEngData.nEngMax*CHPEngData.i) "Injected fuel mass per engine rotation(presumed as constant)"; - constant Modelica.SIunits.Pressure p_Amb = 101325 "Ambient pressure"; - constant Modelica.SIunits.Pressure p_mi = p_mfNominal+p_meNominal "Constant indicated mean effective cylinder pressure"; - constant Modelica.SIunits.Pressure p_meNominal = CHPEngData.p_meNominal "Nominal mean effective cylinder pressure"; - constant Modelica.SIunits.Pressure ref_p_mfNominal = CHPEngData.ref_p_mfNominal "Friction mean pressure of reference engine for calculation(dCyl=91mm & nEng=3000rpm & TEng=90°C)"; - constant Modelica.SIunits.Pressure p_mfNominal=ref_p_mfNominal*QuoDCyl^(-0.3) "Nominal friction mean pressure"; - constant Modelica.SIunits.Temperature T_ExhOut = CHPEngData.T_ExhPowUniOut "Assumed exhaust gas outlet temperature of the CHP unit for heat calculations"; - constant Modelica.SIunits.SpecificEnergy H_U = Medium1.H_U "Specific calorific value of the fuel"; + constant Modelica.Units.SI.Pressure p_Amb=101325 "Ambient pressure"; + constant Modelica.Units.SI.Pressure p_mi=p_mfNominal + p_meNominal + "Constant indicated mean effective cylinder pressure"; + constant Modelica.Units.SI.Pressure p_meNominal=CHPEngData.p_meNominal + "Nominal mean effective cylinder pressure"; + constant Modelica.Units.SI.Pressure ref_p_mfNominal=CHPEngData.ref_p_mfNominal + "Friction mean pressure of reference engine for calculation(dCyl=91mm & nEng=3000rpm & TEng=90°C)"; + constant Modelica.Units.SI.Pressure p_mfNominal=ref_p_mfNominal*QuoDCyl^(-0.3) + "Nominal friction mean pressure"; + constant Modelica.Units.SI.Temperature T_ExhOut=CHPEngData.T_ExhPowUniOut + "Assumed exhaust gas outlet temperature of the CHP unit for heat calculations"; + constant Modelica.Units.SI.SpecificEnergy H_U=Medium1.H_U + "Specific calorific value of the fuel"; constant Real Lambda=CHPEngData.Lambda "Combustion air ratio"; constant Real L_St = Medium1.L_st "Stoichiometric air consumption per mass fuel"; constant Real l_Min = L_St*MM_Fuel/MM_Air "Minimum molar air consumption per mole fuel"; - constant Modelica.SIunits.MolarMass MM_Fuel = Medium1.MM "Molar mass of the fuel"; - constant Modelica.SIunits.MolarMass MM_Air = Medium2.MM "Molar mass of the combustion air"; - constant Modelica.SIunits.MolarMass MM_ComExh[:] = Medium3.data[:].MM "Molar masses of the combustion products: N2, O2, H2O, CO2"; + constant Modelica.Units.SI.MolarMass MM_Fuel=Medium1.MM + "Molar mass of the fuel"; + constant Modelica.Units.SI.MolarMass MM_Air=Medium2.MM + "Molar mass of the combustion air"; + constant Modelica.Units.SI.MolarMass MM_ComExh[:]=Medium3.data[:].MM + "Molar masses of the combustion products: N2, O2, H2O, CO2"; constant Real expFacCpComExh[:] = {0.11, 0.15, 0.20, 0.30} "Exponential factor for calculating the specific heat capacity of N2, O2, H2O, CO2"; - constant Modelica.SIunits.SpecificHeatCapacity cpRefComExh[:] = {1000, 900, 1750, 840} "Specific heat capacities of the combustion products at reference state at 0°C"; - constant Modelica.SIunits.Temperature RefT_Com = 1473.15 "Reference combustion temperature for calculation purposes"; + constant Modelica.Units.SI.SpecificHeatCapacity cpRefComExh[:]={1000,900,1750, + 840} + "Specific heat capacities of the combustion products at reference state at 0°C"; + constant Modelica.Units.SI.Temperature RefT_Com=1473.15 + "Reference combustion temperature for calculation purposes"; // Exhaust composition for gasoline fuels @@ -64,39 +79,52 @@ model GasolineEngineChp_EngineModel else Medium1.Fuel.Xi_liq[1]*Medium1.MM/Medium1.Fuel.MMi_liq[1] "Exhaust: Number of molecules CO2 per mole of fuel"; constant Real n_ComExh[:] = {n_N2Exh, n_O2Exh, n_H2OExh, n_CO2Exh}; constant Real n_Exh = sum(n_ComExh[j] for j in 1:size(n_ComExh, 1)) "Number of exhaust gas molecules per mole of fuel"; - constant Modelica.SIunits.MolarMass MM_Exh = sum(n_ComExh[i]*MM_ComExh[i] for i in 1:size(n_ComExh, 1))/sum(n_ComExh[i] for i in 1:size(n_ComExh, 1)) - "Molar mass of the exhaust gas"; - constant Modelica.SIunits.MassFraction X_N2Exh = MM_ComExh[1]*n_ComExh[1]/(MM_Exh*n_Exh) "Mass fraction of N2 in the exhaust gas"; - constant Modelica.SIunits.MassFraction X_O2Exh = MM_ComExh[2]*n_ComExh[2]/(MM_Exh*n_Exh) "Mass fraction of O2 in the exhaust gas"; - constant Modelica.SIunits.MassFraction X_H2OExh = MM_ComExh[3]*n_ComExh[3]/(MM_Exh*n_Exh) "Mass fraction of H2O in the exhaust gas"; - constant Modelica.SIunits.MassFraction X_CO2Exh = MM_ComExh[4]*n_ComExh[4]/(MM_Exh*n_Exh) "Mass fraction of CO2 in the exhaust gas"; - constant Modelica.SIunits.MassFraction Xi_Exh[size(n_ComExh, 1)] = {X_N2Exh, X_O2Exh, X_H2OExh, X_CO2Exh}; + constant Modelica.Units.SI.MolarMass MM_Exh=sum(n_ComExh[i]*MM_ComExh[i] for + i in 1:size(n_ComExh, 1))/sum(n_ComExh[i] for i in 1:size(n_ComExh, 1)) + "Molar mass of the exhaust gas"; + constant Modelica.Units.SI.MassFraction X_N2Exh=MM_ComExh[1]*n_ComExh[1]/( + MM_Exh*n_Exh) "Mass fraction of N2 in the exhaust gas"; + constant Modelica.Units.SI.MassFraction X_O2Exh=MM_ComExh[2]*n_ComExh[2]/( + MM_Exh*n_Exh) "Mass fraction of O2 in the exhaust gas"; + constant Modelica.Units.SI.MassFraction X_H2OExh=MM_ComExh[3]*n_ComExh[3]/( + MM_Exh*n_Exh) "Mass fraction of H2O in the exhaust gas"; + constant Modelica.Units.SI.MassFraction X_CO2Exh=MM_ComExh[4]*n_ComExh[4]/( + MM_Exh*n_Exh) "Mass fraction of CO2 in the exhaust gas"; + constant Modelica.Units.SI.MassFraction Xi_Exh[size(n_ComExh, 1)]={X_N2Exh, + X_O2Exh,X_H2OExh,X_CO2Exh}; Boolean SwitchOnOff=true "Operation switch of the CHP unit (true=On, false=Off)" annotation (Dialog(group="Modulation")); RotationSpeed nEng(min=0) "Current engine speed"; - Modelica.SIunits.MassFlowRate m_flow_Exh "Mass flow rate of exhaust gas"; - Modelica.SIunits.MassFlowRate m_flow_CO2Exh + Modelica.Units.SI.MassFlowRate m_flow_Exh "Mass flow rate of exhaust gas"; + Modelica.Units.SI.MassFlowRate m_flow_CO2Exh "Mass flow rate of CO2 in the exhaust gas"; - Modelica.SIunits.MassFlowRate m_flow_Fue(min=0) "Mass flow rate of fuel"; - Modelica.SIunits.MassFlowRate m_flow_Air(min=0) + Modelica.Units.SI.MassFlowRate m_flow_Fue(min=0) "Mass flow rate of fuel"; + Modelica.Units.SI.MassFlowRate m_flow_Air(min=0) "Mass flow rate of combustion air"; - Modelica.SIunits.SpecificHeatCapacity meanCpComExh[size(n_ComExh, 1)] "Calculated specific heat capacities of the exhaust gas components for the calculated combustion temperature"; - Modelica.SIunits.SpecificHeatCapacity meanCpExh "Calculated specific heat capacity of the exhaust gas for the calculated combustion temperature"; - Modelica.SIunits.SpecificEnergy h_Exh = 1000*(-286 + 1.011*T_ExhCHPOut - 27.29*Lambda + 0.000136*T_ExhCHPOut^2 - 0.0255*T_ExhCHPOut*Lambda + 6.425*Lambda^2) "Specific enthalpy of the exhaust gas"; - Modelica.SIunits.Power P_eff "Effective(mechanical) engine power"; - Modelica.SIunits.Power P_Fue(min=0) = m_flow_Fue*H_U + Modelica.Units.SI.SpecificHeatCapacity meanCpComExh[size(n_ComExh, 1)] + "Calculated specific heat capacities of the exhaust gas components for the calculated combustion temperature"; + Modelica.Units.SI.SpecificHeatCapacity meanCpExh + "Calculated specific heat capacity of the exhaust gas for the calculated combustion temperature"; + Modelica.Units.SI.SpecificEnergy h_Exh=1000*(-286 + 1.011*T_ExhCHPOut - 27.29 + *Lambda + 0.000136*T_ExhCHPOut^2 - 0.0255*T_ExhCHPOut*Lambda + 6.425* + Lambda^2) "Specific enthalpy of the exhaust gas"; + Modelica.Units.SI.Power P_eff "Effective(mechanical) engine power"; + Modelica.Units.SI.Power P_Fue(min=0) = m_flow_Fue*H_U "Fuel expenses at operating point"; - Modelica.SIunits.Power H_Exh "Enthalpy stream of the exhaust gas"; - Modelica.SIunits.Power CalQ_therm "Calculated heat from engine combustion"; - Modelica.SIunits.Power Q_therm(min=0) "Total heat from engine combustion"; - Modelica.SIunits.Torque Mmot "Calculated engine torque"; - Modelica.SIunits.Temperature T_logEngCool=356.15 "Logarithmic mean temperature of coolant inside the engine" - annotation(Dialog(group="Parameters")); - Modelica.SIunits.Temperature T_Com(start=T_Amb) "Temperature of the combustion gases"; - Modelica.SIunits.Temperature T_ExhCHPOut=383.15 "Exhaust gas outlet temperature of CHP unit" - annotation(Dialog(group="Parameters")); + Modelica.Units.SI.Power H_Exh "Enthalpy stream of the exhaust gas"; + Modelica.Units.SI.Power CalQ_therm "Calculated heat from engine combustion"; + Modelica.Units.SI.Power Q_therm(min=0) "Total heat from engine combustion"; + Modelica.Units.SI.Torque Mmot "Calculated engine torque"; + Modelica.Units.SI.Temperature T_logEngCool=356.15 + "Logarithmic mean temperature of coolant inside the engine" + annotation (Dialog(group="Parameters")); + Modelica.Units.SI.Temperature T_Com(start=T_Amb) + "Temperature of the combustion gases"; + Modelica.Units.SI.Temperature T_ExhCHPOut=383.15 + "Exhaust gas outlet temperature of CHP unit" + annotation (Dialog(group="Parameters")); Real modFac=1 "Modulation factor for energy outuput control of the Chp unit" annotation (Dialog(group="Modulation")); @@ -107,8 +135,11 @@ model GasolineEngineChp_EngineModel Real A2 = -4.35*10^(-8)+1.12*10^(-9)*(T_logEngCool-273.15)-4.79*10^(-12)*(T_logEngCool-273.15)^2; Real B0 = -2.625*10^(-3)+3.75*10^(-7)*(nEng*60)+1.75*10^(-5)*(T_logEngCool-273.15)+2.5*10^(-9)*(T_logEngCool-273.15)*(nEng*60); Real B1 = 8.95*10^(-3)+1.5*10^(-7)*(nEng*60)+7*10^(-6)*(T_logEngCool-273.15)-10^(-9)*(T_logEngCool-273.15)*(nEng*60); - Modelica.SIunits.Pressure p_mf = p_mfNominal*((A0+A1*(nEng*60)+A2*(nEng*60)^2)+(B0+B1*(p_meNominal/100000))) "Current friction mean pressure at operating point"; - Modelica.SIunits.Pressure p_me = (modFac*p_mi)-p_mf "Current mean effective pressure at operating point"; + Modelica.Units.SI.Pressure p_mf=p_mfNominal*((A0 + A1*(nEng*60) + A2*(nEng*60) + ^2) + (B0 + B1*(p_meNominal/100000))) + "Current friction mean pressure at operating point"; + Modelica.Units.SI.Pressure p_me=(modFac*p_mi) - p_mf + "Current mean effective pressure at operating point"; Real etaMec = p_me/p_mi "Current percentage of usable mechanical power compared to inner cylinder power from combustion"; Modelica.Fluid.Interfaces.FluidPort_b port_exh(redeclare package Medium = diff --git a/AixLib/Fluid/BoilerCHP/ModularCHP/BaseClasses/CHP_ElectricMachine.mo b/AixLib/Fluid/BoilerCHP/ModularCHP/BaseClasses/CHP_ElectricMachine.mo index 17bf94f142..49fe505e2b 100644 --- a/AixLib/Fluid/BoilerCHP/ModularCHP/BaseClasses/CHP_ElectricMachine.mo +++ b/AixLib/Fluid/BoilerCHP/ModularCHP/BaseClasses/CHP_ElectricMachine.mo @@ -9,38 +9,39 @@ model CHP_ElectricMachine "Needed engine data for calculations" annotation (choicesAllMatching=true, Dialog(group="Unit properties")); - parameter Modelica.SIunits.Frequency n0=CHPEngData.n0 + parameter Modelica.Units.SI.Frequency n0=CHPEngData.n0 "Idling speed of the electric machine" annotation (Dialog(group="Machine specifications")); - parameter Modelica.SIunits.Frequency n_nominal=CHPEngData.n_nominal - "Rated rotor speed" + parameter Modelica.Units.SI.Frequency n_nominal=CHPEngData.n_nominal + "Rated rotor speed" annotation (Dialog(group="Machine specifications")); + parameter Modelica.Units.SI.Frequency f_1=CHPEngData.f_1 "Frequency" annotation (Dialog(group="Machine specifications")); - parameter Modelica.SIunits.Frequency f_1=CHPEngData.f_1 - "Frequency" + parameter Modelica.Units.SI.Voltage U_1=CHPEngData.U_1 "Rated voltage" annotation (Dialog(group="Machine specifications")); - parameter Modelica.SIunits.Voltage U_1=CHPEngData.U_1 - "Rated voltage" - annotation (Dialog(group="Machine specifications")); - parameter Modelica.SIunits.Current I_elNominal=CHPEngData.I_elNominal - "Rated current" - annotation (Dialog(group="Machine specifications")); - parameter Modelica.SIunits.Current I_1_start=if P_Mec_nominal<=15000 then 7.2*I_elNominal else 8*I_elNominal + parameter Modelica.Units.SI.Current I_elNominal=CHPEngData.I_elNominal + "Rated current" annotation (Dialog(group="Machine specifications")); + parameter Modelica.Units.SI.Current I_1_start=if P_Mec_nominal <= 15000 then + 7.2*I_elNominal else 8*I_elNominal "Motor start current (realistic factors used from DIN VDE 2650/2651)" - annotation (Dialog( tab="Calculations")); - parameter Modelica.SIunits.Power P_elNominal=CHPEngData.P_elNominal + annotation (Dialog(tab="Calculations")); + parameter Modelica.Units.SI.Power P_elNominal=CHPEngData.P_elNominal "Nominal electrical power of electric machine" annotation (Dialog(group="Machine specifications")); - parameter Modelica.SIunits.Power P_Mec_nominal=P_elNominal*(1+s_nominal/0.22) "Nominal mechanical power of electric machine" + parameter Modelica.Units.SI.Power P_Mec_nominal=P_elNominal*(1 + s_nominal/ + 0.22) "Nominal mechanical power of electric machine" annotation (Dialog(tab="Calculations")); - parameter Modelica.SIunits.Torque M_nominal=P_Mec_nominal/(2*Modelica.Constants.pi*n_nominal) "Nominal torque of electric machine" + parameter Modelica.Units.SI.Torque M_nominal=P_Mec_nominal/(2*Modelica.Constants.pi + *n_nominal) "Nominal torque of electric machine" annotation (Dialog(tab="Calculations")); - parameter Modelica.SIunits.Torque M_til=2*M_nominal "Tilting torque of electric machine (realistic factor used from DIN VDE 2650/2651)" + parameter Modelica.Units.SI.Torque M_til=2*M_nominal + "Tilting torque of electric machine (realistic factor used from DIN VDE 2650/2651)" annotation (Dialog(tab="Calculations")); - parameter Modelica.SIunits.Torque M_start=if P_Mec_nominal<=4000 then 1.6*M_nominal - elseif P_Mec_nominal>=22000 then 1*M_nominal else 1.25*M_nominal - "Starting torque of electric machine (realistic factor used from DIN VDE 2650/2651)" + parameter Modelica.Units.SI.Torque M_start=if P_Mec_nominal <= 4000 then 1.6* + M_nominal elseif P_Mec_nominal >= 22000 then 1*M_nominal else 1.25* + M_nominal + "Starting torque of electric machine (realistic factor used from DIN VDE 2650/2651)" annotation (Dialog(tab="Calculations")); - parameter Modelica.SIunits.Inertia J_Gen=1 + parameter Modelica.Units.SI.Inertia J_Gen=1 "Moment of inertia of the electric machine (default=1kg.m2)" annotation (Dialog(group="Calibration")); parameter Boolean useHeat=CHPEngData.useHeat @@ -64,16 +65,17 @@ model CHP_ElectricMachine "Transmission ratio (engine speed / generator speed)" annotation (Dialog(group="Machine specifications")); - Modelica.SIunits.Frequency n=inertia.w/(2*Modelica.Constants.pi) "Speed of machine rotor [1/s]"; - Modelica.SIunits.Current I_1 "Electric current of machine stator"; - Modelica.SIunits.Power P_E "Electrical power at the electric machine"; - Modelica.SIunits.Power P_Mec "Mechanical power at the electric machine"; - Modelica.SIunits.Power CalQ_Loss + Modelica.Units.SI.Frequency n=inertia.w/(2*Modelica.Constants.pi) + "Speed of machine rotor [1/s]"; + Modelica.Units.SI.Current I_1 "Electric current of machine stator"; + Modelica.Units.SI.Power P_E "Electrical power at the electric machine"; + Modelica.Units.SI.Power P_Mec "Mechanical power at the electric machine"; + Modelica.Units.SI.Power CalQ_Loss "Calculated heat flow from electric machine"; - Modelica.SIunits.Power Q_Therm=if useHeat then CalQ_Loss else 0 + Modelica.Units.SI.Power Q_Therm=if useHeat then CalQ_Loss else 0 "Heat flow from electric machine" annotation (Dialog(group="Machine specifications")); - Modelica.SIunits.Torque M "Torque at electric machine"; + Modelica.Units.SI.Torque M "Torque at electric machine"; Real s=1-n*p/f_1 "Current slip of electric machine"; Real eta "Total efficiency of the electric machine (as motor)"; Real calI_1 = 1/(1+((k-1)/((s_nominal^2)-k))*((s^2)+rho1*abs(s)+rho0)); diff --git a/AixLib/Fluid/BoilerCHP/ModularCHP/BaseClasses/ExhaustHeatExchanger.mo b/AixLib/Fluid/BoilerCHP/ModularCHP/BaseClasses/ExhaustHeatExchanger.mo index 598facc467..24c1372f07 100644 --- a/AixLib/Fluid/BoilerCHP/ModularCHP/BaseClasses/ExhaustHeatExchanger.mo +++ b/AixLib/Fluid/BoilerCHP/ModularCHP/BaseClasses/ExhaustHeatExchanger.mo @@ -27,16 +27,16 @@ model ExhaustHeatExchanger CHPEngData=DataBase.CHP.ModularCHPEngineData.CHP_ECPowerXRGI15() "Needed engine data for calculations" annotation (choicesAllMatching=true, Dialog(group="Unit properties")); - parameter Modelica.SIunits.Time tau=1 + parameter Modelica.Units.SI.Time tau=1 "Time constant of the temperature sensors at nominal flow rate" annotation (Dialog(tab="Advanced", group="Sensor Properties")); parameter Modelica.Blocks.Types.Init initType=Modelica.Blocks.Types.Init.InitialState "Type of initialization (InitialState and InitialOutput are identical)" annotation (Dialog(tab="Advanced", group="Sensor Properties")); - parameter Modelica.SIunits.Temperature T1_start=T_Amb + parameter Modelica.Units.SI.Temperature T1_start=T_Amb "Initial or guess value of output (= state)" annotation (Dialog(tab="Advanced", group="Initialization")); - parameter Modelica.SIunits.Temperature T2_start=T_Amb + parameter Modelica.Units.SI.Temperature T2_start=T_Amb "Initial or guess value of output (= state)" annotation (Dialog(tab="Advanced", group="Initialization")); parameter Modelica.Media.Interfaces.Types.AbsolutePressure p1_start=p_Amb @@ -51,21 +51,22 @@ model ExhaustHeatExchanger parameter Boolean ConTec=false "Is condensing technology used and should latent heat be considered?" annotation (Dialog(tab="Advanced", group="Condensing technology")); - parameter Modelica.SIunits.Temperature T_Amb=298.15 + parameter Modelica.Units.SI.Temperature T_Amb=298.15 "Fixed ambient temperature for heat transfer" annotation (Dialog(group="Ambient Properties")); - parameter Modelica.SIunits.Area A_surExhHea=50 - "Surface for exhaust heat transfer" annotation (Dialog(tab="Calibration parameters")); - parameter Modelica.SIunits.Length d_iExh=CHPEngData.dExh + parameter Modelica.Units.SI.Area A_surExhHea=50 + "Surface for exhaust heat transfer" + annotation (Dialog(tab="Calibration parameters")); + parameter Modelica.Units.SI.Length d_iExh=CHPEngData.dExh "Inner diameter of exhaust pipe" annotation (Dialog(group="Nominal condition")); - parameter Modelica.SIunits.ThermalConductance GAmb=5 + parameter Modelica.Units.SI.ThermalConductance GAmb=5 "Constant thermal conductance of material" annotation (Dialog(tab="Calibration parameters")); - parameter Modelica.SIunits.ThermalConductance GCoo=850 + parameter Modelica.Units.SI.ThermalConductance GCoo=850 "Constant thermal conductance of material" annotation (Dialog(tab="Calibration parameters")); - parameter Modelica.SIunits.HeatCapacity CExhHex=4000 + parameter Modelica.Units.SI.HeatCapacity CExhHex=4000 "Heat capacity of exhaust heat exchanger(default= 4000 J/K)" annotation (Dialog(tab="Calibration parameters")); parameter Modelica.Media.Interfaces.Types.AbsolutePressure p_Amb=101325 @@ -75,29 +76,27 @@ model ExhaustHeatExchanger CHPEngData.dp_Coo "Guess value of dp = port_a.p - port_b.p" annotation (Dialog(tab="Advanced", group="Initialization")); - parameter Modelica.SIunits.Time tauHeaTra=1200 + parameter Modelica.Units.SI.Time tauHeaTra=1200 "Time constant for heat transfer, default 20 minutes" annotation (Dialog(tab="Advanced", group="Sensor Properties")); parameter Modelica.Media.Interfaces.PartialMedium.MassFlowRate m_flow_start=0 "Guess value of m_flow = port_a.m_flow" annotation (Dialog(tab="Advanced", group="Initialization")); - constant Modelica.SIunits.MolarMass M_H2O=0.01802 - "Molar mass of water"; + constant Modelica.Units.SI.MolarMass M_H2O=0.01802 "Molar mass of water"; //Antoine-Parameters needed for the calculation of the saturation vapor pressure xSat_H2OExhDry constant Real A=11.7621; constant Real B=3874.61; constant Real C=229.73; - parameter Modelica.SIunits.Length l_ExhHex=1 + parameter Modelica.Units.SI.Length l_ExhHex=1 "Length of the exhaust pipe inside the exhaust heat exchanger" annotation ( Dialog(tab="Calibration parameters", group="Engine parameters")); - parameter Modelica.SIunits.PressureDifference dp_CooExhHex=CHPEngData.dp_Coo + parameter Modelica.Units.SI.PressureDifference dp_CooExhHex=CHPEngData.dp_Coo "Pressure drop at nominal mass flow rate inside the coolant circle " annotation (Dialog(group="Nominal condition")); - parameter Modelica.SIunits.MolarMass M_Exh=1200 - "Molar mass of the exhaust gas" - annotation (Dialog(group="Thermal")); + parameter Modelica.Units.SI.MolarMass M_Exh=1200 + "Molar mass of the exhaust gas" annotation (Dialog(group="Thermal")); Real QuoT_ExhInOut=senTExhHot.T/senTExhCold.T "Quotient of exhaust gas in and outgoing temperature"; @@ -107,35 +106,43 @@ model ExhaustHeatExchanger "Water load of the exhaust gas"; Real xSat_H2OExhDry "Saturation water load of the exhaust gas"; - Modelica.SIunits.MassFlowRate m_H2OExh + Modelica.Units.SI.MassFlowRate m_H2OExh "Mass flow of water in the exhaust gas"; - Modelica.SIunits.MassFlowRate m_ExhDry - "Mass flow of dry exhaust gas"; - Modelica.SIunits.MassFlowRate m_ConH2OExh - "Mass flow of condensing water"; - Modelica.SIunits.AbsolutePressure pExh + Modelica.Units.SI.MassFlowRate m_ExhDry "Mass flow of dry exhaust gas"; + Modelica.Units.SI.MassFlowRate m_ConH2OExh "Mass flow of condensing water"; + Modelica.Units.SI.AbsolutePressure pExh "Pressure in the exhaust gas stream (assuming ambient conditions)"; - Modelica.SIunits.AbsolutePressure pSatH2OExh + Modelica.Units.SI.AbsolutePressure pSatH2OExh "Saturation vapor pressure of the exhaust gas water"; - Modelica.SIunits.SpecificEnthalpy deltaH_Vap + Modelica.Units.SI.SpecificEnthalpy deltaH_Vap "Specific enthalpy of vaporization (empirical formula based on table data)"; - Modelica.SIunits.SpecificHeatCapacity meanCpExh=cHPExhHexBus.calMeaCpExh + Modelica.Units.SI.SpecificHeatCapacity meanCpExh=cHPExhHexBus.calMeaCpExh "Calculated specific heat capacity of the exhaust gas for the calculated combustion temperature" - annotation (Dialog(group = "Thermal")); - Modelica.SIunits.HeatFlowRate Q_Gen=cHPExhHexBus.calThePowGen + annotation (Dialog(group="Thermal")); + Modelica.Units.SI.HeatFlowRate Q_Gen=cHPExhHexBus.calThePowGen "Calculated loss heat from the induction machine" - annotation (Dialog(group = "Thermal")); - Modelica.SIunits.Temperature T_LogMeanExh + annotation (Dialog(group="Thermal")); + Modelica.Units.SI.Temperature T_LogMeanExh "Mean logarithmic temperature of exhaust gas"; //Calculation of the thermodynamic state of the exhaust gas inlet used by the convective heat transfer model Medium1.ThermodynamicState state1 = Medium1.setState_pTX(senTExhHot.port_b.p,T_LogMeanExh,senTExhHot.port_b.Xi_outflow); - Modelica.SIunits.SpecificEnthalpy h1_in = Medium1.specificEnthalpy(state1); - Modelica.SIunits.DynamicViscosity eta1_in = Medium1.dynamicViscosity(state1); - Modelica.SIunits.Density rho1_in = Medium1.density_phX(state1.p,h1_in,state1.X); - Modelica.SIunits.Velocity v1_in = senMasFloExh.m_flow/(Modelica.Constants.pi*rho1_in*d_iExh^2/4); - Modelica.SIunits.ThermalConductivity lambda1_in = Medium1.thermalConductivity(state1); - Modelica.SIunits.ReynoldsNumber Re1_in = Modelica.Fluid.Pipes.BaseClasses.CharacteristicNumbers.ReynoldsNumber(v1_in,rho1_in,eta1_in,d_iExh); + Modelica.Units.SI.SpecificEnthalpy h1_in=Medium1.specificEnthalpy(state1); + Modelica.Units.SI.DynamicViscosity eta1_in=Medium1.dynamicViscosity(state1); + Modelica.Units.SI.Density rho1_in=Medium1.density_phX( + state1.p, + h1_in, + state1.X); + Modelica.Units.SI.Velocity v1_in=senMasFloExh.m_flow/(Modelica.Constants.pi* + rho1_in*d_iExh^2/4); + Modelica.Units.SI.ThermalConductivity lambda1_in=Medium1.thermalConductivity( + state1); + Modelica.Units.SI.ReynoldsNumber Re1_in= + Modelica.Fluid.Pipes.BaseClasses.CharacteristicNumbers.ReynoldsNumber( + v1_in, + rho1_in, + eta1_in, + d_iExh); Modelica.Blocks.Sources.RealExpression machineIsOff(y=0) "Calculated heat from generator losses" @@ -285,9 +292,9 @@ model ExhaustHeatExchanger iconTransformation(extent={{-110,-10},{-90,10}}))); protected - parameter Modelica.SIunits.Volume VExhHex=l_ExhHex/4*Modelica.Constants.pi* - d_iExh^2 - "Exhaust gas volume inside the exhaust heat exchanger" annotation(Dialog(tab="Calibration parameters",group="Engine parameters")); + parameter Modelica.Units.SI.Volume VExhHex=l_ExhHex/4*Modelica.Constants.pi* + d_iExh^2 "Exhaust gas volume inside the exhaust heat exchanger" + annotation (Dialog(tab="Calibration parameters", group="Engine parameters")); equation //Calculation of water condensation and its usable latent heat diff --git a/AixLib/Fluid/BoilerCHP/ModularCHP/BaseClasses/GasolineEngineChp.mo b/AixLib/Fluid/BoilerCHP/ModularCHP/BaseClasses/GasolineEngineChp.mo index c1ca9fa99d..ea29701a06 100644 --- a/AixLib/Fluid/BoilerCHP/ModularCHP/BaseClasses/GasolineEngineChp.mo +++ b/AixLib/Fluid/BoilerCHP/ModularCHP/BaseClasses/GasolineEngineChp.mo @@ -21,16 +21,16 @@ model GasolineEngineChp AixLib.Fluid.BoilerCHP.Data.ModularCHP.EngineMaterial_CastIron() "Thermal engine material data for calculations" annotation (choicesAllMatching=true, Dialog(group="Unit properties")); - parameter Modelica.SIunits.Temperature T_amb=298.15 + parameter Modelica.Units.SI.Temperature T_amb=298.15 "Default ambient temperature" annotation (Dialog(group="Ambient Parameters")); - parameter Modelica.SIunits.Mass mEng=CHPEngineModel.mEng + parameter Modelica.Units.SI.Mass mEng=CHPEngineModel.mEng "Total engine mass for heat capacity calculation" annotation (Dialog(tab="Engine Cooling Circle")); - parameter Modelica.SIunits.Thickness dInn=0.005 + parameter Modelica.Units.SI.Thickness dInn=0.005 "Typical value for the thickness of the cylinder wall (between combustion chamber and cooling circle)" annotation (Dialog(tab="Engine Cooling Circle")); - parameter Modelica.SIunits.ThermalConductance GEngToAmb=0.23 + parameter Modelica.Units.SI.ThermalConductance GEngToAmb=0.23 "Thermal conductance from engine housing to the surrounding air" annotation (Dialog(tab="Engine Cooling Circle")); @@ -105,13 +105,14 @@ protected Real modFac=cHPEngBus.modFac "Modulation factor for energy outuput control of the Chp unit " annotation (Dialog(group="Engine Parameters")); - Modelica.SIunits.Temperature T_logEngCoo=(cHPEngBus.meaTemInEng + cHPEngBus.meaTemOutEng) + Modelica.Units.SI.Temperature T_logEngCoo=(cHPEngBus.meaTemInEng + cHPEngBus.meaTemOutEng) /2 "Logarithmic mean temperature of coolant inside the engine" annotation (Dialog(group="Engine Parameters")); - Modelica.SIunits.Temperature T_ExhCHPOut=cHPEngBus.meaTemExhHexOut + Modelica.Units.SI.Temperature T_ExhCHPOut=cHPEngBus.meaTemExhHexOut "Exhaust gas outlet temperature of CHP unit" annotation (Dialog(group="Engine Parameters")); - Modelica.SIunits.Temperature T_Exh=engineToCoolant.T_Exh "Calculated mean temperature of the exhaust gas inside the cylinders" + Modelica.Units.SI.Temperature T_Exh=engineToCoolant.T_Exh + "Calculated mean temperature of the exhaust gas inside the cylinders" annotation (Dialog(group="Thermal")); equation diff --git a/AixLib/Fluid/BoilerCHP/ModularCHP/BaseClasses/ModularCHP_PowerUnit.mo b/AixLib/Fluid/BoilerCHP/ModularCHP/BaseClasses/ModularCHP_PowerUnit.mo index fb75b1da93..2cde3c2314 100644 --- a/AixLib/Fluid/BoilerCHP/ModularCHP/BaseClasses/ModularCHP_PowerUnit.mo +++ b/AixLib/Fluid/BoilerCHP/ModularCHP/BaseClasses/ModularCHP_PowerUnit.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.BoilerCHP.ModularCHP.BaseClasses; +within AixLib.Fluid.BoilerCHP.ModularCHP.BaseClasses; model ModularCHP_PowerUnit "Model of modular CHP power unit" import AixLib; @@ -19,10 +19,10 @@ model ModularCHP_PowerUnit "Model of modular CHP power unit" AixLib.Fluid.BoilerCHP.Data.ModularCHP.EngineMaterial_CastIron() "Thermal engine material data for calculations" annotation (choicesAllMatching=true, Dialog(group="Unit properties")); - parameter Modelica.SIunits.Temperature T_amb=298.15 + parameter Modelica.Units.SI.Temperature T_amb=298.15 "Default ambient temperature" annotation (Dialog(group="Ambient Parameters")); - parameter Modelica.SIunits.AbsolutePressure p_amb=101325 + parameter Modelica.Units.SI.AbsolutePressure p_amb=101325 "Default ambient pressure" annotation (Dialog(group="Ambient Parameters")); /* Modelica.SIunits.Temperature T_CoolRet=exhaustHeatExchanger_Experimental_New.senTCooCold.T "Coolant return temperature"; @@ -39,35 +39,35 @@ model ModularCHP_PowerUnit "Model of modular CHP power unit" "Calibration factor for electric power output (default=1)" annotation (Dialog(tab="Calibration parameters", group="Fast calibration - Electric power and fuel usage")); - parameter Modelica.SIunits.ThermalConductance GEngToCoo=33 + parameter Modelica.Units.SI.ThermalConductance GEngToCoo=33 "Thermal conductance of engine housing from the cylinder wall to the water cooling channels" - annotation (Dialog(tab="Calibration parameters",group= + annotation (Dialog(tab="Calibration parameters", group= "Fast calibration - Thermal power output")); - parameter Modelica.SIunits.ThermalConductance GCooExhHex=400 + parameter Modelica.Units.SI.ThermalConductance GCooExhHex=400 "Thermal conductance of exhaust heat exchanger to cooling circuit" - annotation (Dialog(tab="Calibration parameters",group= + annotation (Dialog(tab="Calibration parameters", group= "Fast calibration - Thermal power output")); - parameter Modelica.SIunits.Mass mEng=CHPEngineModel.mEng - "Total engine mass for heat capacity calculation" - annotation (Dialog(tab="Calibration parameters",group="Advanced calibration parameters")); - parameter Modelica.SIunits.HeatCapacity CExhHex=50000 + parameter Modelica.Units.SI.Mass mEng=CHPEngineModel.mEng + "Total engine mass for heat capacity calculation" annotation (Dialog(tab= + "Calibration parameters", group="Advanced calibration parameters")); + parameter Modelica.Units.SI.HeatCapacity CExhHex=50000 "Heat capacity of exhaust heat exchanger(default= 4000 J/K)" annotation ( - Dialog(tab="Calibration parameters",group= + Dialog(tab="Calibration parameters", group= "Advanced calibration parameters")); - parameter Modelica.SIunits.Thickness dInn=0.01 + parameter Modelica.Units.SI.Thickness dInn=0.01 "Typical value for the thickness of the cylinder wall (between combustion chamber and cooling circle)" - annotation (Dialog(tab="Calibration parameters",group="Fast calibration - Thermal power output")); - parameter Modelica.SIunits.ThermalConductance GEngToAmb=0.23 + annotation (Dialog(tab="Calibration parameters", group= + "Fast calibration - Thermal power output")); + parameter Modelica.Units.SI.ThermalConductance GEngToAmb=0.23 "Thermal conductance from engine housing to the surrounding air" - annotation (Dialog(tab="Calibration parameters",group= + annotation (Dialog(tab="Calibration parameters", group= "Advanced calibration parameters")); - parameter Modelica.SIunits.ThermalConductance GAmb=5 + parameter Modelica.Units.SI.ThermalConductance GAmb=5 "Constant thermal conductance of material" annotation (Dialog(tab= - "Calibration parameters", - group="Advanced calibration parameters")); - parameter Modelica.SIunits.Area A_surExhHea=50 - "Surface for exhaust heat transfer" - annotation (Dialog(tab="Calibration parameters",group="Advanced calibration parameters")); + "Calibration parameters", group="Advanced calibration parameters")); + parameter Modelica.Units.SI.Area A_surExhHea=50 + "Surface for exhaust heat transfer" annotation (Dialog(tab= + "Calibration parameters", group="Advanced calibration parameters")); parameter Modelica.Media.Interfaces.PartialMedium.MassFlowRate m_flow= CHPEngineModel.m_floCooNominal "Nominal mass flow rate of coolant inside the engine cooling circle" annotation (Dialog(tab= @@ -93,25 +93,25 @@ model ModularCHP_PowerUnit "Model of modular CHP power unit" "Small coolant mass flow rate for regularization of zero flow" annotation (Dialog(tab="Advanced", group="Assumptions")); - Modelica.SIunits.Power Q_Therm=if (submodelCooling.heatPort_outside.Q_flow + - exhaustHeatExchanger.pipeCoolant.heatPort_outside.Q_flow) > 10 then + Modelica.Units.SI.Power Q_Therm=if (submodelCooling.heatPort_outside.Q_flow + + exhaustHeatExchanger.pipeCoolant.heatPort_outside.Q_flow) > 10 then submodelCooling.heatPort_outside.Q_flow + exhaustHeatExchanger.pipeCoolant.heatPort_outside.Q_flow else 1 "Thermal power output of the CHP unit"; - Modelica.SIunits.Power P_Mech=gasolineEngineChp.cHPCombustionEngine.P_eff + Modelica.Units.SI.Power P_Mech=gasolineEngineChp.cHPCombustionEngine.P_eff "Mechanical power output of the CHP unit"; - Modelica.SIunits.Power P_El=-inductionMachine.P_E + Modelica.Units.SI.Power P_El=-inductionMachine.P_E "Electrical power output of the CHP unit"; - Modelica.SIunits.Power P_Fuel=if (gasolineEngineChp.cHPEngBus.isOn) then + Modelica.Units.SI.Power P_Fuel=if (gasolineEngineChp.cHPEngBus.isOn) then m_flow_Fue*Medium_Fuel.H_U else 0 "CHP fuel expenses"; - Modelica.SIunits.Power Q_TotUnused=gasolineEngineChp.cHPCombustionEngine.Q_therm + Modelica.Units.SI.Power Q_TotUnused=gasolineEngineChp.cHPCombustionEngine.Q_therm - gasolineEngineChp.engineToCoolant.actualHeatFlowEngine.Q_flow + exhaustHeatExchanger.volExhaust.heatPort.Q_flow "Total heat error of the CHP unit"; - Modelica.SIunits.MassFlowRate m_flow_CO2=gasolineEngineChp.cHPCombustionEngine.m_flow_CO2Exh + Modelica.Units.SI.MassFlowRate m_flow_CO2=gasolineEngineChp.cHPCombustionEngine.m_flow_CO2Exh "CO2 emission output rate"; - Modelica.SIunits.MassFlowRate m_flow_Fue=if (gasolineEngineChp.cHPCombustionEngine.m_flow_Fue) - > 0.0001 then gasolineEngineChp.cHPCombustionEngine.m_flow_Fue else 0.0001 - "Fuel consumption rate of CHP unit"; + Modelica.Units.SI.MassFlowRate m_flow_Fue=if (gasolineEngineChp.cHPCombustionEngine.m_flow_Fue) + > 0.0001 then gasolineEngineChp.cHPCombustionEngine.m_flow_Fue else + 0.0001 "Fuel consumption rate of CHP unit"; type SpecificEmission=Real(final unit="g/(kW.h)", min=0.0001); SpecificEmission b_CO2=if noEvent(abs(Q_Therm + P_El) > 0) then 3600000000.0 * m_flow_CO2/(Q_Therm + P_El) else 0 diff --git a/AixLib/Fluid/BoilerCHP/ModularCHP/BaseClasses/SubmodelCooling.mo b/AixLib/Fluid/BoilerCHP/ModularCHP/BaseClasses/SubmodelCooling.mo index b609570432..22d25a3334 100644 --- a/AixLib/Fluid/BoilerCHP/ModularCHP/BaseClasses/SubmodelCooling.mo +++ b/AixLib/Fluid/BoilerCHP/ModularCHP/BaseClasses/SubmodelCooling.mo @@ -13,7 +13,7 @@ model SubmodelCooling parameter Modelica.Media.Interfaces.PartialMedium.MassFlowRate m_flow= CHPEngineModel.m_floCooNominal "Nominal mass flow rate of coolant inside the engine cooling circle" annotation (Dialog(tab="Engine Cooling Circle")); - parameter Modelica.SIunits.ThermalConductance GEngToCoo=45 + parameter Modelica.Units.SI.ThermalConductance GEngToCoo=45 "Thermal conductance of engine housing from the cylinder wall to the water cooling channels" annotation (Dialog(tab="Engine Cooling Circle", group= "Calibration Parameters")); diff --git a/AixLib/Fluid/BoilerCHP/ModularCHP/ModularCHPIntegrated.mo b/AixLib/Fluid/BoilerCHP/ModularCHP/ModularCHPIntegrated.mo index 611e50b074..f6acbce7b5 100644 --- a/AixLib/Fluid/BoilerCHP/ModularCHP/ModularCHPIntegrated.mo +++ b/AixLib/Fluid/BoilerCHP/ModularCHP/ModularCHPIntegrated.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.BoilerCHP.ModularCHP; +within AixLib.Fluid.BoilerCHP.ModularCHP; model ModularCHPIntegrated "Modular combined heat and power system model integrated into a heating circuit" import AixLib; @@ -26,10 +26,10 @@ model ModularCHPIntegrated AixLib.Fluid.BoilerCHP.Data.ModularCHP.EngineMaterial_CastIron() "Thermal engine material data for calculations" annotation (choicesAllMatching=true, Dialog(group="Unit properties")); - parameter Modelica.SIunits.Temperature T_amb=293.15 + parameter Modelica.Units.SI.Temperature T_amb=293.15 "Default ambient temperature" annotation (Dialog(group="Ambient Parameters")); - parameter Modelica.SIunits.AbsolutePressure p_amb=101325 + parameter Modelica.Units.SI.AbsolutePressure p_amb=101325 "Default ambient pressure" annotation (Dialog(group="Ambient Parameters")); parameter Real s_til=abs((cHP_PowerUnit.inductionMachine.s_nominal*( cHP_PowerUnit.inductionMachine.M_til/cHP_PowerUnit.inductionMachine.M_nominal) @@ -44,38 +44,40 @@ model ModularCHPIntegrated "Calibration factor for electric power output (default=1)" annotation (Dialog(tab="Calibration parameters", group="Fast calibration - Electric power and fuel usage")); - parameter Modelica.SIunits.ThermalConductance GEngToCoo=33 + parameter Modelica.Units.SI.ThermalConductance GEngToCoo=33 "Thermal conductance of engine housing from the cylinder wall to the water cooling channels" - annotation (Dialog(tab="Calibration parameters",group= + annotation (Dialog(tab="Calibration parameters", group= "Fast calibration - Thermal power output")); - parameter Modelica.SIunits.ThermalConductance GCooExhHex=400 + parameter Modelica.Units.SI.ThermalConductance GCooExhHex=400 "Thermal conductance of the coolant heat exchanger at nominal flow" - annotation (Dialog(tab="Calibration parameters",group= + annotation (Dialog(tab="Calibration parameters", group= "Fast calibration - Thermal power output")); - parameter Modelica.SIunits.HeatCapacity CExhHex=50000 + parameter Modelica.Units.SI.HeatCapacity CExhHex=50000 "Heat capacity of exhaust heat exchanger(default= 4000 J/K)" annotation ( - Dialog(tab="Calibration parameters",group= + Dialog(tab="Calibration parameters", group= "Advanced calibration parameters")); - parameter Modelica.SIunits.Mass Cal_mEng=0 + parameter Modelica.Units.SI.Mass Cal_mEng=0 "Added engine mass for calibration purposes of the system´s thermal inertia" - annotation (Dialog(tab="Calibration parameters",group="Advanced calibration parameters")); - parameter Modelica.SIunits.Area A_surExhHea=100 - "Surface for exhaust heat transfer" - annotation (Dialog(tab="Calibration parameters",group="Advanced calibration parameters")); - parameter Modelica.SIunits.MassFlowRate m_flow_Coo=0.4 - "Nominal mass flow rate of coolant inside the engine cooling circle" annotation ( - Dialog(tab="Calibration parameters",group= + annotation (Dialog(tab="Calibration parameters", group= "Advanced calibration parameters")); - parameter Modelica.SIunits.Thickness dInn=0.01 + parameter Modelica.Units.SI.Area A_surExhHea=100 + "Surface for exhaust heat transfer" annotation (Dialog(tab= + "Calibration parameters", group="Advanced calibration parameters")); + parameter Modelica.Units.SI.MassFlowRate m_flow_Coo=0.4 + "Nominal mass flow rate of coolant inside the engine cooling circle" + annotation (Dialog(tab="Calibration parameters", group= + "Advanced calibration parameters")); + parameter Modelica.Units.SI.Thickness dInn=0.01 "Typical value for the thickness of the cylinder wall (between combustion chamber and cooling circle)" - annotation (Dialog(tab="Calibration parameters",group="Fast calibration - Thermal power output")); - parameter Modelica.SIunits.ThermalConductance GEngToAmb=2 + annotation (Dialog(tab="Calibration parameters", group= + "Fast calibration - Thermal power output")); + parameter Modelica.Units.SI.ThermalConductance GEngToAmb=2 "Thermal conductance from engine housing to the surrounding air" - annotation (Dialog(tab="Calibration parameters",group= + annotation (Dialog(tab="Calibration parameters", group= "Advanced calibration parameters")); - parameter Modelica.SIunits.ThermalConductance GAmb=10 - "Constant heat transfer coefficient of engine housing to ambient" annotation ( - Dialog(tab="Calibration parameters",group= + parameter Modelica.Units.SI.ThermalConductance GAmb=10 + "Constant heat transfer coefficient of engine housing to ambient" + annotation (Dialog(tab="Calibration parameters", group= "Advanced calibration parameters")); parameter Real modTab[:,2]=[0.0,0.8; 7200,0.8; 7200,0.93; 10800,0.93; 10800,0.62; 14400,0.62; 14400,0.8; 18000,0.8; 18000,0.0] @@ -102,17 +104,22 @@ model ModularCHPIntegrated "Small coolant mass flow rate for regularization of zero flow" annotation (Dialog(tab="Advanced", group="Assumptions")); - Modelica.SIunits.Temperature T_Ret=temRetFlo.T "Coolant return temperature"; - Modelica.SIunits.Temperature T_Sup=temSupFlo.T "Coolant supply temperature"; - Modelica.SIunits.Power Q_Therm_th=cHP_PowerUnit.Q_Therm "Thermal power output of the CHP unit to the coolant media"; - Modelica.SIunits.Power Q_Therm=coolantHex.Q2_flow "Effective thermal power output of the CHP unit to the heating circuit"; - Modelica.SIunits.Power P_Mech=cHP_PowerUnit.P_Mech "Mechanical power output of the CHP unit"; - Modelica.SIunits.Power P_El=cHP_PowerUnit.P_El "Electrical power output of the CHP unit"; - Modelica.SIunits.Power P_Fuel=cHP_PowerUnit.P_Fuel "CHP fuel expenses"; - Modelica.SIunits.Power Q_TotUnused=cHP_PowerUnit.Q_TotUnused "Total heat error of the CHP unit"; - Modelica.SIunits.MassFlowRate m_flow_CO2=cHP_PowerUnit.m_flow_CO2 + Modelica.Units.SI.Temperature T_Ret=temRetFlo.T "Coolant return temperature"; + Modelica.Units.SI.Temperature T_Sup=temSupFlo.T "Coolant supply temperature"; + Modelica.Units.SI.Power Q_Therm_th=cHP_PowerUnit.Q_Therm + "Thermal power output of the CHP unit to the coolant media"; + Modelica.Units.SI.Power Q_Therm=coolantHex.Q2_flow + "Effective thermal power output of the CHP unit to the heating circuit"; + Modelica.Units.SI.Power P_Mech=cHP_PowerUnit.P_Mech + "Mechanical power output of the CHP unit"; + Modelica.Units.SI.Power P_El=cHP_PowerUnit.P_El + "Electrical power output of the CHP unit"; + Modelica.Units.SI.Power P_Fuel=cHP_PowerUnit.P_Fuel "CHP fuel expenses"; + Modelica.Units.SI.Power Q_TotUnused=cHP_PowerUnit.Q_TotUnused + "Total heat error of the CHP unit"; + Modelica.Units.SI.MassFlowRate m_flow_CO2=cHP_PowerUnit.m_flow_CO2 "CO2 emission output rate"; - Modelica.SIunits.MassFlowRate m_flow_Fue=cHP_PowerUnit.m_flow_Fue + Modelica.Units.SI.MassFlowRate m_flow_Fue=cHP_PowerUnit.m_flow_Fue "Fuel consumption rate of CHP unit"; Real FueUtiRate = cHP_PowerUnit.FueUtiRate "Fuel utilization rate of the CHP unit"; Real PowHeatRatio = cHP_PowerUnit.PowHeatRatio "Power to heat ration of the CHP unit"; @@ -210,9 +217,9 @@ protected DataBase.CHP.ModularCHPEngineMedia.CHPFlueGasLambdaOnePlus constrainedby DataBase.CHP.ModularCHPEngineMedia.CHPCombustionMixtureGasNasa "Exhaust gas medium model used in the CHP plant" annotation(choicesAllMatching=true); - parameter Modelica.SIunits.Mass mEng=CHPEngineModel.mEng + Cal_mEng - "Total engine mass for heat capacity calculation" - annotation (Dialog(tab="Calibration parameters",group="Advanced calibration parameters")); + parameter Modelica.Units.SI.Mass mEng=CHPEngineModel.mEng + Cal_mEng + "Total engine mass for heat capacity calculation" annotation (Dialog(tab= + "Calibration parameters", group="Advanced calibration parameters")); equation connect(coolantHex.port_a2, temRetFlo.port_b) diff --git a/AixLib/Fluid/BoilerCHP/package.order b/AixLib/Fluid/BoilerCHP/package.order index 728e0d87d2..4371221ff9 100644 --- a/AixLib/Fluid/BoilerCHP/package.order +++ b/AixLib/Fluid/BoilerCHP/package.order @@ -1,6 +1,7 @@ Boiler BoilerNoControl CHP +CHPNoControl HeatGeneratorNoControl ModularCHP Data diff --git a/AixLib/Fluid/Chillers/BaseClasses/Carnot.mo b/AixLib/Fluid/Chillers/BaseClasses/Carnot.mo index a58d55ae1d..5aa4e30516 100644 --- a/AixLib/Fluid/Chillers/BaseClasses/Carnot.mo +++ b/AixLib/Fluid/Chillers/BaseClasses/Carnot.mo @@ -7,18 +7,17 @@ partial model Carnot constant Boolean homotopyInitialization = true "= true, use homotopy method" annotation(HideResult=true); - parameter Modelica.SIunits.HeatFlowRate QEva_flow_nominal(max=0) + parameter Modelica.Units.SI.HeatFlowRate QEva_flow_nominal(max=0) "Nominal cooling heat flow rate (QEva_flow_nominal < 0)" annotation (Dialog(group="Nominal condition")); - parameter Modelica.SIunits.HeatFlowRate QCon_flow_nominal(min=0) - "Nominal heating flow rate" - annotation (Dialog(group="Nominal condition")); + parameter Modelica.Units.SI.HeatFlowRate QCon_flow_nominal(min=0) + "Nominal heating flow rate" annotation (Dialog(group="Nominal condition")); - parameter Modelica.SIunits.TemperatureDifference dTEva_nominal( - final max=0) = -10 "Temperature difference evaporator outlet-inlet" + parameter Modelica.Units.SI.TemperatureDifference dTEva_nominal(final max=0)= + -10 "Temperature difference evaporator outlet-inlet" annotation (Dialog(group="Nominal condition")); - parameter Modelica.SIunits.TemperatureDifference dTCon_nominal( - final min=0) = 10 "Temperature difference condenser outlet-inlet" + parameter Modelica.Units.SI.TemperatureDifference dTCon_nominal(final min=0)= + 10 "Temperature difference condenser outlet-inlet" annotation (Dialog(group="Nominal condition")); // Efficiency @@ -35,10 +34,10 @@ partial model Carnot "Coefficient of performance at TEva_nominal and TCon_nominal, used if use_eta_Carnot_nominal = false" annotation (Dialog(group="Efficiency", enable=not use_eta_Carnot_nominal)); - parameter Modelica.SIunits.Temperature TCon_nominal = 303.15 + parameter Modelica.Units.SI.Temperature TCon_nominal=303.15 "Condenser temperature used to compute COP_nominal if use_eta_Carnot_nominal=false" annotation (Dialog(group="Efficiency", enable=not use_eta_Carnot_nominal)); - parameter Modelica.SIunits.Temperature TEva_nominal = 278.15 + parameter Modelica.Units.SI.Temperature TEva_nominal=278.15 "Evaporator temperature used to compute COP_nominal if use_eta_Carnot_nominal=false" annotation (Dialog(group="Efficiency", enable=not use_eta_Carnot_nominal)); @@ -46,18 +45,20 @@ partial model Carnot "Coefficients for efficiency curve (need p(a=a, yPL=1)=1)" annotation (Dialog(group="Efficiency")); - parameter Modelica.SIunits.Pressure dp1_nominal(displayUnit="Pa") + parameter Modelica.Units.SI.Pressure dp1_nominal(displayUnit="Pa") "Pressure difference over condenser" annotation (Dialog(group="Nominal condition")); - parameter Modelica.SIunits.Pressure dp2_nominal(displayUnit="Pa") + parameter Modelica.Units.SI.Pressure dp2_nominal(displayUnit="Pa") "Pressure difference over evaporator" annotation (Dialog(group="Nominal condition")); - parameter Modelica.SIunits.TemperatureDifference TAppCon_nominal(min=0) = if cp1_default < 1500 then 5 else 2 + parameter Modelica.Units.SI.TemperatureDifference TAppCon_nominal(min=0)= + if cp1_default < 1500 then 5 else 2 "Temperature difference between refrigerant and working fluid outlet in condenser" annotation (Dialog(group="Efficiency")); - parameter Modelica.SIunits.TemperatureDifference TAppEva_nominal(min=0) = if cp2_default < 1500 then 5 else 2 + parameter Modelica.Units.SI.TemperatureDifference TAppEva_nominal(min=0)= + if cp2_default < 1500 then 5 else 2 "Temperature difference between refrigerant and working fluid outlet in evaporator" annotation (Dialog(group="Efficiency")); @@ -82,17 +83,17 @@ partial model Carnot "Fraction of nominal flow rate where flow transitions to laminar" annotation (Dialog(tab="Flow resistance", group="Evaporator")); - parameter Modelica.SIunits.Time tau1=60 + parameter Modelica.Units.SI.Time tau1=60 "Time constant at nominal flow rate (used if energyDynamics1 <> Modelica.Fluid.Types.Dynamics.SteadyState)" annotation (Dialog(tab="Dynamics", group="Condenser")); - parameter Modelica.SIunits.Time tau2=60 + parameter Modelica.Units.SI.Time tau2=60 "Time constant at nominal flow rate (used if energyDynamics2 <> Modelica.Fluid.Types.Dynamics.SteadyState)" annotation (Dialog(tab="Dynamics", group="Evaporator")); - parameter Modelica.SIunits.Temperature T1_start=Medium1.T_default + parameter Modelica.Units.SI.Temperature T1_start=Medium1.T_default "Initial or guess value of set point" annotation (Dialog(tab="Dynamics", group="Condenser")); - parameter Modelica.SIunits.Temperature T2_start=Medium2.T_default + parameter Modelica.Units.SI.Temperature T2_start=Medium2.T_default "Initial or guess value of set point" annotation (Dialog(tab="Dynamics", group="Evaporator")); @@ -136,19 +137,19 @@ partial model Carnot x2=TConAct - TEvaAct, deltaX=0.25) "Carnot efficiency"; - Modelica.SIunits.Temperature TConAct(start=TCon_nominal + TAppCon_nominal)= - Medium1.temperature(staB1) + QCon_flow/QCon_flow_nominal*TAppCon_nominal + Modelica.Units.SI.Temperature TConAct(start=TCon_nominal + TAppCon_nominal)= + Medium1.temperature(staB1) + QCon_flow/QCon_flow_nominal*TAppCon_nominal "Condenser temperature used to compute efficiency, taking into account pinch temperature between fluid and refrigerant"; - Modelica.SIunits.Temperature TEvaAct(start=TEva_nominal - TAppEva_nominal)= - Medium2.temperature(staB2) - QEva_flow/QEva_flow_nominal*TAppEva_nominal + Modelica.Units.SI.Temperature TEvaAct(start=TEva_nominal - TAppEva_nominal)= + Medium2.temperature(staB2) - QEva_flow/QEva_flow_nominal*TAppEva_nominal "Evaporator temperature used to compute efficiency, taking into account pinch temperature between fluid and refrigerant"; protected constant Boolean COP_is_for_cooling "Set to true if the specified COP is for cooling"; - parameter Real etaCarnot_nominal_internal(unit="1") = + parameter Real etaCarnot_nominal_internal(unit="1")= if use_eta_Carnot_nominal then etaCarnot_nominal else COP_nominal/ @@ -157,31 +158,31 @@ protected // For Carnot_y, computing etaPL = f(yPL) introduces a nonlinear equation. // The parameter below avoids this if a = {1}. - final parameter Boolean evaluate_etaPL = + final parameter Boolean evaluate_etaPL= not ((size(a, 1) == 1 and abs(a[1] - 1) < Modelica.Constants.eps)) "Flag, true if etaPL should be computed as it depends on yPL" annotation(Evaluate=true); - final parameter Modelica.SIunits.Temperature TUseAct_nominal= - if COP_is_for_cooling - then TEva_nominal - TAppEva_nominal - else TCon_nominal + TAppCon_nominal + final parameter Modelica.Units.SI.Temperature TUseAct_nominal=if + COP_is_for_cooling then TEva_nominal - TAppEva_nominal else TCon_nominal + + TAppCon_nominal "Nominal evaporator temperature for chiller or condenser temperature for heat pump, taking into account pinch temperature between fluid and refrigerant"; - Modelica.SIunits.Temperature TUseAct=if COP_is_for_cooling then TEvaAct else TConAct + Modelica.Units.SI.Temperature TUseAct=if COP_is_for_cooling then TEvaAct + else TConAct "Temperature of useful heat (evaporator for chiller, condenser for heat pump), taking into account pinch temperature between fluid and refrigerant"; - final parameter Modelica.SIunits.SpecificHeatCapacity cp1_default= - Medium1.specificHeatCapacityCp(Medium1.setState_pTX( - p = Medium1.p_default, - T = Medium1.T_default, - X = Medium1.X_default)) + final parameter Modelica.Units.SI.SpecificHeatCapacity cp1_default= + Medium1.specificHeatCapacityCp(Medium1.setState_pTX( + p=Medium1.p_default, + T=Medium1.T_default, + X=Medium1.X_default)) "Specific heat capacity of medium 1 at default medium state"; - final parameter Modelica.SIunits.SpecificHeatCapacity cp2_default= - Medium2.specificHeatCapacityCp(Medium2.setState_pTX( - p = Medium2.p_default, - T = Medium2.T_default, - X = Medium2.X_default)) + final parameter Modelica.Units.SI.SpecificHeatCapacity cp2_default= + Medium2.specificHeatCapacityCp(Medium2.setState_pTX( + p=Medium2.p_default, + T=Medium2.T_default, + X=Medium2.X_default)) "Specific heat capacity of medium 2 at default medium state"; Medium1.ThermodynamicState staA1 = Medium1.setState_phX( @@ -329,100 +330,101 @@ equation Line(points={{0,-70},{0,-90},{100,-90}}, color={0,0,255}), Line(points={{62,0},{100,0}}, color={0,0,255})}), Documentation(info=" -

                  -This is the base class for the Carnot chiller and the Carnot heat pump -whose coefficient of performance COP changes -with temperatures in the same way as the Carnot efficiency changes. -

                  -

                  -The model allows to either specify the Carnot effectivness -ηCarnot,0, or -a COP0 -at the nominal conditions, together with -the evaporator temperature Teva,0 and -the condenser temperature Tcon,0, in which -case the model computes the Carnot effectivness as -

                  -

                  Carnot,0 = - COP0 -⁄ (Tuse,0 ⁄ (Tcon,0-Teva,0)), -

                  -

                  -where -Tuse is the temperature of the the useful heat, -e.g., the evaporator temperature for a chiller or the condenser temperature -for a heat pump. -

                  -

                  -The COP is computed as the product -

                  -

                  - COP = ηCarnot,0 COPCarnot ηPL, -

                  -

                  -where COPCarnot is the Carnot efficiency and -ηPL is the part load efficiency, expressed using -a polynomial. -This polynomial has the form -

                  -

                  - ηPL = a1 + a2 y + a3 y2 + ... -

                  -

                  -where y ∈ [0, 1] is -either the part load for cooling in case of a chiller, or the part load of heating in -case of a heat pump, and the coefficients ai -are declared by the parameter a. -

                  -

                  Implementation

                  -

                  -To make this base class applicable to chiller or heat pumps, it uses -the boolean constant COP_is_for_cooling. -Depending on its value, the equations for the coefficient of performance -and the part load ratio are set up. -

                  -", revisions=" -
                    -
                  • -April 14, 2020, by Michael Wetter:
                    -Changed homotopyInitialization to a constant.
                    -This is for -AixLib, #1341. -
                  • -
                  • -September 12, 2019, by Michael Wetter:
                    -Corrected value of evaluate_etaPL and how it is used. -This correction only affects protected variables and does not affect the results.
                    -This is for -#1200. -
                  • -
                  • -June 16, 2017, by Michael Wetter:
                    -Added temperature difference between fluids in condenser and evaporator -for computation of nominal COP and effectiveness.
                    -This is for -#698. -
                  • -
                  • -March 28, 2017, by Felix Buenning:
                    -Added temperature difference between fluids in condenser and evaporator. -The difference is based on discussions with Emerson Climate Technologies.
                    -This is for -#698. -
                  • -
                  • -January 2, 2017, by Filip Jorissen:
                    -Removed option for choosing what temperature -should be used to compute the Carnot efficiency. -This is for - -issue 497. -
                  • -
                  • -January 26, 2016, by Michael Wetter:
                    -First implementation of this base class. -
                  • -
                  -")); +

                  + This is the base class for the Carnot chiller and the Carnot heat pump + whose coefficient of performance COP changes + with temperatures in the same way as the Carnot efficiency changes. +

                  +

                  + The model allows to either specify the Carnot effectivness + ηCarnot,0, or + a COP0 + at the nominal conditions, together with + the evaporator temperature Teva,0 and + the condenser temperature Tcon,0, in which + case the model computes the Carnot effectivness as +

                  +

                  + ηCarnot,0 = + COP0 + ⁄ (Tuse,0 ⁄ (Tcon,0-Teva,0)), +

                  +

                  + where + Tuse is the temperature of the the useful heat, + e.g., the evaporator temperature for a chiller or the condenser temperature + for a heat pump. +

                  +

                  + The COP is computed as the product +

                  +

                  + COP = ηCarnot,0 COPCarnot ηPL, +

                  +

                  + where COPCarnot is the Carnot efficiency and + ηPL is the part load efficiency, expressed using + a polynomial. + This polynomial has the form +

                  +

                  + ηPL = a1 + a2 y + a3 y2 + ... +

                  +

                  + where y ∈ [0, 1] is + either the part load for cooling in case of a chiller, or the part load of heating in + case of a heat pump, and the coefficients ai + are declared by the parameter a. +

                  +

                  Implementation

                  +

                  + To make this base class applicable to chiller or heat pumps, it uses + the boolean constant COP_is_for_cooling. + Depending on its value, the equations for the coefficient of performance + and the part load ratio are set up. +

                  + ",revisions=" +
                    +
                  • + April 14, 2020, by Michael Wetter:
                    + Changed homotopyInitialization to a constant.
                    + This is for + IBPSA, #1341. +
                  • +
                  • + September 12, 2019, by Michael Wetter:
                    + Corrected value of evaluate_etaPL and how it is used. + This correction only affects protected variables and does not affect the results.
                    + This is for + #1200. +
                  • +
                  • + June 16, 2017, by Michael Wetter:
                    + Added temperature difference between fluids in condenser and evaporator + for computation of nominal COP and effectiveness.
                    + This is for + #698. +
                  • +
                  • + March 28, 2017, by Felix Buenning:
                    + Added temperature difference between fluids in condenser and evaporator. + The difference is based on discussions with Emerson Climate Technologies.
                    + This is for + #698. +
                  • +
                  • + January 2, 2017, by Filip Jorissen:
                    + Removed option for choosing what temperature + should be used to compute the Carnot efficiency. + This is for + + issue 497. +
                  • +
                  • + January 26, 2016, by Michael Wetter:
                    + First implementation of this base class. +
                  • +
                  + "), + __Dymola_LockedEditing="Model from IBPSA"); end Carnot; diff --git a/AixLib/Fluid/Chillers/BaseClasses/PartialCarnot_T.mo b/AixLib/Fluid/Chillers/BaseClasses/PartialCarnot_T.mo index bdd2a74be4..abf4e75fcb 100644 --- a/AixLib/Fluid/Chillers/BaseClasses/PartialCarnot_T.mo +++ b/AixLib/Fluid/Chillers/BaseClasses/PartialCarnot_T.mo @@ -12,19 +12,20 @@ equation annotation (Line(points={{61,0},{110,0},{110,0}}, color={0,0,127})); annotation ( Documentation(info=" -

                  -This is a partial model of a chiller whose coefficient of performance (COP) changes -with temperatures in the same way as the Carnot efficiency changes. -This base class is used for the Carnot chiller and Carnot heat pump -that uses the compressor part load ratio as the control signal. -

                  -", +

                  + This is a partial model of a chiller whose coefficient of performance (COP) changes + with temperatures in the same way as the Carnot efficiency changes. + This base class is used for the Carnot chiller and Carnot heat pump + that uses the compressor part load ratio as the control signal. +

                  + ", revisions=" -
                    -
                  • -January 26, 2016, by Michael Wetter:
                    -First implementation of this base class. -
                  • -
                  -")); +
                    +
                  • + January 26, 2016, by Michael Wetter:
                    + First implementation of this base class. +
                  • +
                  + "), + __Dymola_LockedEditing="Model from IBPSA"); end PartialCarnot_T; diff --git a/AixLib/Fluid/Chillers/BaseClasses/PartialCarnot_y.mo b/AixLib/Fluid/Chillers/BaseClasses/PartialCarnot_y.mo index 7f08789519..835994d8f1 100644 --- a/AixLib/Fluid/Chillers/BaseClasses/PartialCarnot_y.mo +++ b/AixLib/Fluid/Chillers/BaseClasses/PartialCarnot_y.mo @@ -14,7 +14,6 @@ partial model PartialCarnot_y final tau=tau1, final T_start=T1_start, final energyDynamics=energyDynamics, - final massDynamics=energyDynamics, final homotopyInitialization=homotopyInitialization, final Q_flow_nominal=QCon_flow_nominal), redeclare HeatExchangers.HeaterCooler_u eva( @@ -25,11 +24,10 @@ partial model PartialCarnot_y final tau=tau2, final T_start=T2_start, final energyDynamics=energyDynamics, - final massDynamics=energyDynamics, final homotopyInitialization=homotopyInitialization, final Q_flow_nominal=QEva_flow_nominal)); - parameter Modelica.SIunits.Power P_nominal(min=0) + parameter Modelica.Units.SI.Power P_nominal(min=0) "Nominal compressor power (at y=1)" annotation (Dialog(group="Nominal condition")); @@ -38,10 +36,10 @@ partial model PartialCarnot_y annotation (Placement(transformation(extent={{-140,70},{-100,110}}))); protected - Modelica.SIunits.HeatFlowRate QCon_flow_internal(start=QCon_flow_nominal)= + Modelica.Units.SI.HeatFlowRate QCon_flow_internal(start=QCon_flow_nominal)= P - QEva_flow_internal "Condenser heat input"; - Modelica.SIunits.HeatFlowRate QEva_flow_internal(start=QEva_flow_nominal)= - if COP_is_for_cooling then -COP * P else (1-COP)*P "Evaporator heat input"; + Modelica.Units.SI.HeatFlowRate QEva_flow_internal(start=QEva_flow_nominal)= + if COP_is_for_cooling then -COP*P else (1 - COP)*P "Evaporator heat input"; Modelica.Blocks.Sources.RealExpression yEva_flow_in( y=QEva_flow_internal/QEva_flow_nominal) @@ -145,89 +143,90 @@ equation fillPattern=FillPattern.Solid), Text( extent={{-130,128},{-78,106}}, - lineColor={0,0,127}, + textColor={0,0,127}, fillColor={255,255,255}, fillPattern=FillPattern.Solid, textString="y"), Text(extent={{66,28},{116,14}}, textString="P", - lineColor={0,0,127}), + textColor={0,0,127}), Line(points={{-100,90},{-80,90},{-80,14},{22,14}}, color={0,0,255}), Line(points={{62,0},{100,0}}, color={0,0,255})}), defaultComponentName="chi", Documentation(info=" -

                  -This is a partial model of a chiller whose coefficient of performance (COP) changes -with temperatures in the same way as the Carnot efficiency changes. -This base class is used for the Carnot chiller and Carnot heat pump -that uses the leaving fluid temperature as the control signal. -

                  -", +

                  + This is a partial model of a chiller whose coefficient of performance (COP) changes + with temperatures in the same way as the Carnot efficiency changes. + This base class is used for the Carnot chiller and Carnot heat pump + that uses the leaving fluid temperature as the control signal. +

                  + ", revisions=" -
                    -
                  • -June 15, 2017, by Michael Wetter:
                    -Added min attribute to parameter P_nominal. -
                  • -
                  • -January 26, 2016, by Michael Wetter:
                    -Implemented in the Annex 60 library the models -AixLib.Fluid.Chillers.Carnot_y -and -AixLib.Fluid.HeatPumps.Carnot_y -and refactored these models to use the same base class.
                    -Implemented the removal of the flow direction dependency of -staA1, staB1, staA2 and staB2 as the -efficiency of the Carnot machine should only be computed in the design flow direction, -as corrected by Damien Picard. -
                  • -
                  • -December 18, 2015, by Michael Wetter:
                    -Corrected wrong computation of staB1 and staB2 -which mistakenly used the inStream operator -for the configuration without flow reversal. -This is for - -issue 476. -
                  • -
                  • -November 25, 2015 by Michael Wetter:
                    -Changed sign convention for dTEva_nominal to be consistent with -other models. -The model will still work with the old values for dTEva_nominal, -but it will write a warning so that users can transition their models. -
                    -Corrected assert statement for the efficiency curve. -This is for - -issue 468. -
                  • -
                  • -September 3, 2015 by Michael Wetter:
                    -Expanded documentation. -
                  • -
                  • -May 6, 2015 by Michael Wetter:
                    -Added prescribedHeatFlowRate=true for vol2. -
                  • -
                  • -October 9, 2013 by Michael Wetter:
                    -Reimplemented the computation of the port states to avoid using -the conditionally removed variables sta_a1, -sta_a2, sta_b1 and sta_b2. -
                  • -
                  • -May 10, 2013 by Michael Wetter:
                    -Added electric power P as an output signal. -
                  • -
                  • -October 11, 2010 by Michael Wetter:
                    -Fixed bug in energy balance. -
                  • -
                  • -March 3, 2009 by Michael Wetter:
                    -First implementation. -
                  • -
                  -")); +
                    +
                  • + June 15, 2017, by Michael Wetter:
                    + Added min attribute to parameter P_nominal. +
                  • +
                  • + January 26, 2016, by Michael Wetter:
                    + Implemented in the Annex 60 library the models + AixLib.Fluid.Chillers.Carnot_y + and + AixLib.Fluid.HeatPumps.Carnot_y + and refactored these models to use the same base class.
                    + Implemented the removal of the flow direction dependency of + staA1, staB1, staA2 and staB2 as the + efficiency of the Carnot machine should only be computed in the design flow direction, + as corrected by Damien Picard. +
                  • +
                  • + December 18, 2015, by Michael Wetter:
                    + Corrected wrong computation of staB1 and staB2 + which mistakenly used the inStream operator + for the configuration without flow reversal. + This is for + + issue 476. +
                  • +
                  • + November 25, 2015 by Michael Wetter:
                    + Changed sign convention for dTEva_nominal to be consistent with + other models. + The model will still work with the old values for dTEva_nominal, + but it will write a warning so that users can transition their models. +
                    + Corrected assert statement for the efficiency curve. + This is for + + issue 468. +
                  • +
                  • + September 3, 2015 by Michael Wetter:
                    + Expanded documentation. +
                  • +
                  • + May 6, 2015 by Michael Wetter:
                    + Added prescribedHeatFlowRate=true for vol2. +
                  • +
                  • + October 9, 2013 by Michael Wetter:
                    + Reimplemented the computation of the port states to avoid using + the conditionally removed variables sta_a1, + sta_a2, sta_b1 and sta_b2. +
                  • +
                  • + May 10, 2013 by Michael Wetter:
                    + Added electric power P as an output signal. +
                  • +
                  • + October 11, 2010 by Michael Wetter:
                    + Fixed bug in energy balance. +
                  • +
                  • + March 3, 2009 by Michael Wetter:
                    + First implementation. +
                  • +
                  + "), + __Dymola_LockedEditing="Model from IBPSA"); end PartialCarnot_y; diff --git a/AixLib/Fluid/Chillers/Carnot_TEva.mo b/AixLib/Fluid/Chillers/Carnot_TEva.mo index 44211b55cb..f4442513cc 100644 --- a/AixLib/Fluid/Chillers/Carnot_TEva.mo +++ b/AixLib/Fluid/Chillers/Carnot_TEva.mo @@ -26,8 +26,7 @@ model Carnot_TEva final energyDynamics=energyDynamics, final homotopyInitialization=homotopyInitialization)); - parameter Modelica.SIunits.HeatFlowRate QEva_flow_min( - max=0) = -Modelica.Constants.inf + parameter Modelica.Units.SI.HeatFlowRate QEva_flow_min(max=0) = -Modelica.Constants.inf "Maximum heat flow rate for cooling (negative)"; Modelica.Blocks.Interfaces.RealInput TSet(unit="K") @@ -63,125 +62,126 @@ equation {100,100}}), graphics={ Text( extent={{-148,156},{-92,114}}, - lineColor={0,0,127}, + textColor={0,0,127}, fillColor={255,255,255}, fillPattern=FillPattern.Solid, textString="TEva"), Line(points={{-100,90},{-80,90},{-80,-56}}, color={0,0,255})}), defaultComponentName="chi", Documentation(info=" -

                  -This is a model of a chiller whose coefficient of performance COP changes -with temperatures in the same way as the Carnot efficiency changes. -The control input is the setpoint of the evaporator leaving temperature, which -is met exactly at steady state if the chiller has sufficient capacity. -

                  -

                  -The model allows to either specify the Carnot effectivness -ηCarnot,0, or -a COP0 -at the nominal conditions, together with -the evaporator temperature Teva,0 and -the condenser temperature Tcon,0, in which -case the model computes the Carnot effectivness as -

                  -

                  Carnot,0 = - COP0 -⁄ (Teva,0 ⁄ (Tcon,0-Teva,0)). -

                  -

                  -On the Advanced tab, a user can specify the temperatures that -will be used as the evaporator and condenser temperature. -

                  -

                  -During the simulation, the chiller COP is computed as the product -

                  -

                  - COP = ηCarnot,0 COPCarnot ηPL, -

                  -

                  -where COPCarnot is the Carnot efficiency and -ηPL is a polynomial in the cooling part load ratio yPL -that can be used to take into account a change in COP at part load -conditions. -This polynomial has the form -

                  -

                  - ηPL = a1 + a2 yPL + a3 yPL2 + ... -

                  -

                  -where the coefficients ai -are declared by the parameter a. -

                  -

                  -On the Dynamics tag, the model can be parametrized to compute a transient -or steady-state response. -The transient response of the model is computed using a first -order differential equation for the evaporator and condenser fluid volumes. -The chiller outlet temperatures are equal to the temperatures of these lumped volumes. -

                  -

                  Typical use and important parameters

                  -

                  -When using this component, make sure that the condenser has sufficient mass flow rate. -Based on the evaporator mass flow rate, temperature difference and the efficiencies, -the model computes how much heat will be added to the condenser. -If the mass flow rate is too small, very high outlet temperatures can result. -

                  -

                  -The evaporator heat flow rate QEva_flow_nominal is used to assign -the default value for the mass flow rates, which are used for the pressure drop -calculations. -It is also used to compute the part load efficiency. -Hence, make sure that QEva_flow_nominal is set to a reasonable value. -

                  -

                  -The maximum cooling capacity is set by the parameter QEva_flow_min, -which is by default set to negative infinity. -

                  -

                  -The coefficient of performance depends on the -evaporator and condenser leaving temperature -since otherwise the second law of thermodynamics may be violated. -

                  -

                  Notes

                  -

                  -For a similar model that can be used as a heat pump, see - -AixLib.Fluid.HeatPumps.Examples.Carnot_TCon. -

                  -", +

                  + This is a model of a chiller whose coefficient of performance COP changes + with temperatures in the same way as the Carnot efficiency changes. + The control input is the setpoint of the evaporator leaving temperature, which + is met exactly at steady state if the chiller has sufficient capacity. +

                  +

                  + The model allows to either specify the Carnot effectivness + ηCarnot,0, or + a COP0 + at the nominal conditions, together with + the evaporator temperature Teva,0 and + the condenser temperature Tcon,0, in which + case the model computes the Carnot effectivness as +

                  +

                  + ηCarnot,0 = + COP0 + ⁄ (Teva,0 ⁄ (Tcon,0-Teva,0)). +

                  +

                  + On the Advanced tab, a user can specify the temperatures that + will be used as the evaporator and condenser temperature. +

                  +

                  + During the simulation, the chiller COP is computed as the product +

                  +

                  + COP = ηCarnot,0 COPCarnot ηPL, +

                  +

                  + where COPCarnot is the Carnot efficiency and + ηPL is a polynomial in the cooling part load ratio yPL + that can be used to take into account a change in COP at part load + conditions. + This polynomial has the form +

                  +

                  + ηPL = a1 + a2 yPL + a3 yPL2 + ... +

                  +

                  + where the coefficients ai + are declared by the parameter a. +

                  +

                  + On the Dynamics tag, the model can be parametrized to compute a transient + or steady-state response. + The transient response of the model is computed using a first + order differential equation for the evaporator and condenser fluid volumes. + The chiller outlet temperatures are equal to the temperatures of these lumped volumes. +

                  +

                  Typical use and important parameters

                  +

                  + When using this component, make sure that the condenser has sufficient mass flow rate. + Based on the evaporator mass flow rate, temperature difference and the efficiencies, + the model computes how much heat will be added to the condenser. + If the mass flow rate is too small, very high outlet temperatures can result. +

                  +

                  + The evaporator heat flow rate QEva_flow_nominal is used to assign + the default value for the mass flow rates, which are used for the pressure drop + calculations. + It is also used to compute the part load efficiency. + Hence, make sure that QEva_flow_nominal is set to a reasonable value. +

                  +

                  + The maximum cooling capacity is set by the parameter QEva_flow_min, + which is by default set to negative infinity. +

                  +

                  + The coefficient of performance depends on the + evaporator and condenser leaving temperature + since otherwise the second law of thermodynamics may be violated. +

                  +

                  Notes

                  +

                  + For a similar model that can be used as a heat pump, see + + AixLib.Fluid.HeatPumps.Examples.Carnot_TCon. +

                  + ", revisions=" -
                    -
                  • -May 8, 2017, by Michael Wetter:
                    -Replaced model that interfaces with fluid stream.
                    -This is for - -AixLib, #763. -
                  • -
                  • -January 2, 2017, by Filip Jorissen:
                    -Removed parameters -effInpEva and effInpCon -and updated documentation. -This is for - -issue 497. -
                  • -
                  • -August 8, 2016, by Michael Wetter:
                    -Changed default temperature to compute COP to be the leaving temperature as -use of the entering temperature can violate the 2nd law if the temperature -lift is small.
                    -This is for - -Annex 60, issue 497. -
                  • -
                  • -November 25, 2015 by Michael Wetter:
                    -First implementation. -
                  • -
                  -")); +
                    +
                  • + May 8, 2017, by Michael Wetter:
                    + Replaced model that interfaces with fluid stream.
                    + This is for + + AixLib, #763. +
                  • +
                  • + January 2, 2017, by Filip Jorissen:
                    + Removed parameters + effInpEva and effInpCon + and updated documentation. + This is for + + issue 497. +
                  • +
                  • + August 8, 2016, by Michael Wetter:
                    + Changed default temperature to compute COP to be the leaving temperature as + use of the entering temperature can violate the 2nd law if the temperature + lift is small.
                    + This is for + + Annex 60, issue 497. +
                  • +
                  • + November 25, 2015 by Michael Wetter:
                    + First implementation. +
                  • +
                  + "), + __Dymola_LockedEditing="Model from IBPSA"); end Carnot_TEva; diff --git a/AixLib/Fluid/Chillers/Carnot_y.mo b/AixLib/Fluid/Chillers/Carnot_y.mo index d3adf9b980..2df9e6f33f 100644 --- a/AixLib/Fluid/Chillers/Carnot_y.mo +++ b/AixLib/Fluid/Chillers/Carnot_y.mo @@ -7,160 +7,161 @@ model Carnot_y annotation ( defaultComponentName="chi", Documentation(info=" -

                  -This is model of a chiller whose coefficient of performance COP changes -with temperatures in the same way as the Carnot efficiency changes. -The input signal y is the control signal for the compressor. -

                  -

                  -The model allows to either specify the Carnot effectivness -ηCarnot,0, or -a COP0 -at the nominal conditions, together with -the evaporator temperature Teva,0 and -the condenser temperature Tcon,0, in which -case the model computes the Carnot effectivness as -

                  -

                  Carnot,0 = - COP0 -⁄ (Teva,0 ⁄ (Tcon,0-Teva,0)). -

                  -

                  -The chiller COP is computed as the product -

                  -

                  - COP = ηCarnot,0 COPCarnot ηPL, -

                  -

                  -where COPCarnot is the Carnot efficiency and -ηPL is a polynomial in the cooling part load ratio yPL -that can be used to take into account a change in COP at part load -conditions. -This polynomial has the form -

                  -

                  - ηPL = a1 + a2 yPL + a3 yPL2 + ... -

                  -

                  -where the coefficients ai -are declared by the parameter a. -

                  -

                  -On the Dynamics tag, the model can be parametrized to compute a transient -or steady-state response. -The transient response of the model is computed using a first -order differential equation for the evaporator and condenser fluid volumes. -The chiller outlet temperatures are equal to the temperatures of these lumped volumes. -

                  -

                  Typical use and important parameters

                  -

                  -When using this component, make sure that the evaporator and the condenser have sufficient mass flow rate. -Based on the mass flow rates, the compressor power, temperature difference and the efficiencies, -the model computes how much heat will be added to the condenser and removed at the evaporator. -If the mass flow rates are too small, very high temperature differences can result. -

                  -

                  -The evaporator heat flow rate QEva_flow_nominal is used to assign -the default value for the mass flow rates, which are used for the pressure drop -calculations. -It is also used to compute the part load efficiency. -Hence, make sure that QEva_flow_nominal is set to a reasonable value. -

                  -

                  -The maximum cooling capacity is set by the parameter QEva_flow_min, -which is by default set to negative infinity. -

                  -

                  -The coefficient of performance depends on the -evaporator and condenser leaving temperature -since otherwise the second law of thermodynamics may be violated. -

                  -

                  Notes

                  -

                  -For a similar model that can be used as a heat pump, see -AixLib.Fluid.HeatPumps.Carnot_y. -

                  -", +

                  + This is model of a chiller whose coefficient of performance COP changes + with temperatures in the same way as the Carnot efficiency changes. + The input signal y is the control signal for the compressor. +

                  +

                  + The model allows to either specify the Carnot effectivness + ηCarnot,0, or + a COP0 + at the nominal conditions, together with + the evaporator temperature Teva,0 and + the condenser temperature Tcon,0, in which + case the model computes the Carnot effectivness as +

                  +

                  + ηCarnot,0 = + COP0 + ⁄ (Teva,0 ⁄ (Tcon,0-Teva,0)). +

                  +

                  + The chiller COP is computed as the product +

                  +

                  + COP = ηCarnot,0 COPCarnot ηPL, +

                  +

                  + where COPCarnot is the Carnot efficiency and + ηPL is a polynomial in the cooling part load ratio yPL + that can be used to take into account a change in COP at part load + conditions. + This polynomial has the form +

                  +

                  + ηPL = a1 + a2 yPL + a3 yPL2 + ... +

                  +

                  + where the coefficients ai + are declared by the parameter a. +

                  +

                  + On the Dynamics tag, the model can be parametrized to compute a transient + or steady-state response. + The transient response of the model is computed using a first + order differential equation for the evaporator and condenser fluid volumes. + The chiller outlet temperatures are equal to the temperatures of these lumped volumes. +

                  +

                  Typical use and important parameters

                  +

                  + When using this component, make sure that the evaporator and the condenser have sufficient mass flow rate. + Based on the mass flow rates, the compressor power, temperature difference and the efficiencies, + the model computes how much heat will be added to the condenser and removed at the evaporator. + If the mass flow rates are too small, very high temperature differences can result. +

                  +

                  + The evaporator heat flow rate QEva_flow_nominal is used to assign + the default value for the mass flow rates, which are used for the pressure drop + calculations. + It is also used to compute the part load efficiency. + Hence, make sure that QEva_flow_nominal is set to a reasonable value. +

                  +

                  + The maximum cooling capacity is set by the parameter QEva_flow_min, + which is by default set to negative infinity. +

                  +

                  + The coefficient of performance depends on the + evaporator and condenser leaving temperature + since otherwise the second law of thermodynamics may be violated. +

                  +

                  Notes

                  +

                  + For a similar model that can be used as a heat pump, see + AixLib.Fluid.HeatPumps.Carnot_y. +

                  + ", revisions=" -
                    -
                  • -January 2, 2017, by Filip Jorissen:
                    -Removed parameters -effInpEva and effInpCon -and updated documentation. -This is for - -issue 497. -
                  • -
                  • -August 8, 2016, by Michael Wetter:
                    -Changed default temperature to compute COP to be the leaving temperature as -use of the entering temperature can violate the 2nd law if the temperature -lift is small.
                    -This is for - -Annex 60, issue 497. -
                  • -
                  • -January 26, 2016, by Michael Wetter:
                    -Refactored model to use the same base class as -AixLib.Fluid.HeatPumps.Carnot_y. -
                    -Changed part load efficiency to depend on cooling part load ratio rather than on the compressor -part load ratio.
                    -Changed sign convention of dTEva_nominal to be negative rather than positive. -For positive values, the simulation will stop with an assertion. -
                  • -
                  • -December 18, 2015, by Michael Wetter:
                    -Corrected wrong computation of staB1 and staB2 -which mistakenly used the inStream operator -for the configuration without flow reversal. -This is for - -issue 476. -
                  • -
                  • -November 25, 2015 by Michael Wetter:
                    -Changed sign convention for dTEva_nominal to be consistent with -other models. -The model will still work with the old values for dTEva_nominal, -but it will write a warning so that users can transition their models. -
                    -Corrected assert statement for the efficiency curve. -This is for - -issue 468. -
                  • -
                  • -September 3, 2015 by Michael Wetter:
                    -Expanded documentation. -
                  • -
                  • -May 6, 2015 by Michael Wetter:
                    -Added prescribedHeatFlowRate=true for vol2. -
                  • -
                  • -October 9, 2013 by Michael Wetter:
                    -Reimplemented the computation of the port states to avoid using -the conditionally removed variables sta_a1, -sta_a2, sta_b1 and sta_b2. -
                  • -
                  • -May 10, 2013 by Michael Wetter:
                    -Added electric power P as an output signal. -
                  • -
                  • -October 11, 2010 by Michael Wetter:
                    -Fixed bug in energy balance. -
                  • -
                  • -March 3, 2009 by Michael Wetter:
                    -First implementation. -
                  • -
                  -"), +
                    +
                  • + January 2, 2017, by Filip Jorissen:
                    + Removed parameters + effInpEva and effInpCon + and updated documentation. + This is for + + issue 497. +
                  • +
                  • + August 8, 2016, by Michael Wetter:
                    + Changed default temperature to compute COP to be the leaving temperature as + use of the entering temperature can violate the 2nd law if the temperature + lift is small.
                    + This is for + + Annex 60, issue 497. +
                  • +
                  • + January 26, 2016, by Michael Wetter:
                    + Refactored model to use the same base class as + AixLib.Fluid.HeatPumps.Carnot_y. +
                    + Changed part load efficiency to depend on cooling part load ratio rather than on the compressor + part load ratio.
                    + Changed sign convention of dTEva_nominal to be negative rather than positive. + For positive values, the simulation will stop with an assertion. +
                  • +
                  • + December 18, 2015, by Michael Wetter:
                    + Corrected wrong computation of staB1 and staB2 + which mistakenly used the inStream operator + for the configuration without flow reversal. + This is for + + issue 476. +
                  • +
                  • + November 25, 2015 by Michael Wetter:
                    + Changed sign convention for dTEva_nominal to be consistent with + other models. + The model will still work with the old values for dTEva_nominal, + but it will write a warning so that users can transition their models. +
                    + Corrected assert statement for the efficiency curve. + This is for + + issue 468. +
                  • +
                  • + September 3, 2015 by Michael Wetter:
                    + Expanded documentation. +
                  • +
                  • + May 6, 2015 by Michael Wetter:
                    + Added prescribedHeatFlowRate=true for vol2. +
                  • +
                  • + October 9, 2013 by Michael Wetter:
                    + Reimplemented the computation of the port states to avoid using + the conditionally removed variables sta_a1, + sta_a2, sta_b1 and sta_b2. +
                  • +
                  • + May 10, 2013 by Michael Wetter:
                    + Added electric power P as an output signal. +
                  • +
                  • + October 11, 2010 by Michael Wetter:
                    + Fixed bug in energy balance. +
                  • +
                  • + March 3, 2009 by Michael Wetter:
                    + First implementation. +
                  • +
                  + "), Icon(graphics={ - Line(points={{0,-70},{0,-90},{100,-90}}, color={0,0,255})})); + Line(points={{0,-70},{0,-90},{100,-90}}, color={0,0,255})}), + __Dymola_LockedEditing="Model from IBPSA"); end Carnot_y; diff --git a/AixLib/Fluid/Chillers/Examples/Carnot_TEva.mo b/AixLib/Fluid/Chillers/Examples/Carnot_TEva.mo index dcc2eb4a75..18f6240ff2 100644 --- a/AixLib/Fluid/Chillers/Examples/Carnot_TEva.mo +++ b/AixLib/Fluid/Chillers/Examples/Carnot_TEva.mo @@ -5,16 +5,15 @@ model Carnot_TEva package Medium1 = AixLib.Media.Water "Medium model"; package Medium2 = AixLib.Media.Water "Medium model"; - parameter Modelica.SIunits.TemperatureDifference dTEva_nominal=-10 + parameter Modelica.Units.SI.TemperatureDifference dTEva_nominal=-10 "Temperature difference evaporator outlet-inlet"; - parameter Modelica.SIunits.TemperatureDifference dTCon_nominal=10 + parameter Modelica.Units.SI.TemperatureDifference dTCon_nominal=10 "Temperature difference condenser outlet-inlet"; parameter Real COPc_nominal = 3 "Chiller COP"; - parameter Modelica.SIunits.HeatFlowRate QEva_flow_nominal = -100E3 + parameter Modelica.Units.SI.HeatFlowRate QEva_flow_nominal=-100E3 "Evaporator heat flow rate"; - parameter Modelica.SIunits.MassFlowRate m2_flow_nominal= - QEva_flow_nominal/dTEva_nominal/4200 - "Nominal mass flow rate at chilled water side"; + parameter Modelica.Units.SI.MassFlowRate m2_flow_nominal=QEva_flow_nominal/ + dTEva_nominal/4200 "Nominal mass flow rate at chilled water side"; AixLib.Fluid.Chillers.Carnot_TEva chi( redeclare package Medium1 = Medium1, @@ -68,8 +67,8 @@ model Carnot_TEva Modelica.Blocks.Math.Add QCon_flow(k2=-1) "Condenser heat flow rate" annotation (Placement(transformation(extent={{48,-50},{68,-30}}))); - final parameter Modelica.SIunits.SpecificHeatCapacity cp1_default= - Medium1.specificHeatCapacityCp(Medium1.setState_pTX( + final parameter Modelica.Units.SI.SpecificHeatCapacity cp1_default= + Medium1.specificHeatCapacityCp(Medium1.setState_pTX( Medium1.p_default, Medium1.T_default, Medium1.X_default)) @@ -105,25 +104,26 @@ __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Chiller "Simulate and plot"), Documentation( info=" -

                  -Example that simulates a chiller whose efficiency is scaled based on the -Carnot cycle. -The chiller takes as an input the evaporator leaving water temperature. -The condenser mass flow rate is computed in such a way that it has -a temperature difference equal to dTEva_nominal. -

                  -", +

                  + Example that simulates a chiller whose efficiency is scaled based on the + Carnot cycle. + The chiller takes as an input the evaporator leaving water temperature. + The condenser mass flow rate is computed in such a way that it has + a temperature difference equal to dTEva_nominal. +

                  + ", revisions=" -
                    -
                  • -May 15, 2019, by Jianjun Hu:
                    -Replaced fluid source. This is for - #1072. -
                  • -
                  • -November 25, 2015, by Michael Wetter:
                    -First implementation. -
                  • -
                  -")); +
                    +
                  • + May 15, 2019, by Jianjun Hu:
                    + Replaced fluid source. This is for + #1072. +
                  • +
                  • + November 25, 2015, by Michael Wetter:
                    + First implementation. +
                  • +
                  + "), + __Dymola_LockedEditing="Model from IBPSA"); end Carnot_TEva; diff --git a/AixLib/Fluid/Chillers/Examples/Carnot_y.mo b/AixLib/Fluid/Chillers/Examples/Carnot_y.mo index 72b0b9b6ae..2df2de4dd8 100644 --- a/AixLib/Fluid/Chillers/Examples/Carnot_y.mo +++ b/AixLib/Fluid/Chillers/Examples/Carnot_y.mo @@ -4,19 +4,19 @@ model Carnot_y "Test model for chiller based on Carnot_y efficiency" package Medium1 = AixLib.Media.Water "Medium model"; package Medium2 = AixLib.Media.Water "Medium model"; - parameter Modelica.SIunits.Power P_nominal=10E3 + parameter Modelica.Units.SI.Power P_nominal=10E3 "Nominal compressor power (at y=1)"; - parameter Modelica.SIunits.TemperatureDifference dTEva_nominal=-10 + parameter Modelica.Units.SI.TemperatureDifference dTEva_nominal=-10 "Temperature difference evaporator outlet-inlet"; - parameter Modelica.SIunits.TemperatureDifference dTCon_nominal=10 + parameter Modelica.Units.SI.TemperatureDifference dTCon_nominal=10 "Temperature difference condenser outlet-inlet"; parameter Real COPc_nominal = 3 "Chiller COP"; - parameter Modelica.SIunits.MassFlowRate m2_flow_nominal= - -P_nominal*COPc_nominal/dTEva_nominal/4200 + parameter Modelica.Units.SI.MassFlowRate m2_flow_nominal=-P_nominal* + COPc_nominal/dTEva_nominal/4200 "Nominal mass flow rate at chilled water side"; - parameter Modelica.SIunits.MassFlowRate m1_flow_nominal= - m2_flow_nominal*(COPc_nominal+1)/COPc_nominal + parameter Modelica.Units.SI.MassFlowRate m1_flow_nominal=m2_flow_nominal*( + COPc_nominal + 1)/COPc_nominal "Nominal mass flow rate at condenser water wide"; AixLib.Fluid.Chillers.Carnot_y chi( @@ -111,36 +111,37 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Chillers/Examples/Carnot_y.mos" "Simulate and plot"), Documentation(revisions=" -
                    -
                  • -May 15, 2019, by Jianjun Hu:
                    -Replaced fluid source. This is for - #1072. -
                  • -
                  • -November 25, 2015 by Michael Wetter:
                    -Changed sign of dTEva_nominal to be consistent. -
                  • -
                  • -December 22, 2014 by Michael Wetter:
                    -Removed Modelica.Fluid.System -to address issue -#311. -
                  • -
                  • -March 26, 2013 by Michael Wetter:
                    -Removed assignment of parameter that had attribute fixed=false. -
                  • -
                  • -March 3, 2009 by Michael Wetter:
                    -First implementation. -
                  • -
                  -", info=" -

                  -Example that simulates a chiller whose efficiency is scaled based on the -Carnot cycle. -The chiller control signal is the compressor speed. -

                  -")); +
                    +
                  • + May 15, 2019, by Jianjun Hu:
                    + Replaced fluid source. This is for + #1072. +
                  • +
                  • + November 25, 2015 by Michael Wetter:
                    + Changed sign of dTEva_nominal to be consistent. +
                  • +
                  • + December 22, 2014 by Michael Wetter:
                    + Removed Modelica.Fluid.System + to address issue + #311. +
                  • +
                  • + March 26, 2013 by Michael Wetter:
                    + Removed assignment of parameter that had attribute fixed=false. +
                  • +
                  • + March 3, 2009 by Michael Wetter:
                    + First implementation. +
                  • +
                  + ",info=" +

                  + Example that simulates a chiller whose efficiency is scaled based on the + Carnot cycle. + The chiller control signal is the compressor speed. +

                  + "), + __Dymola_LockedEditing="Model from IBPSA"); end Carnot_y; diff --git a/AixLib/Fluid/Chillers/Examples/Chiller.mo b/AixLib/Fluid/Chillers/Examples/Chiller.mo index f058527ca9..0c55920aa2 100644 --- a/AixLib/Fluid/Chillers/Examples/Chiller.mo +++ b/AixLib/Fluid/Chillers/Examples/Chiller.mo @@ -14,7 +14,8 @@ model Chiller "Example for the reversible chiller model." nPorts=1) "Ideal mass flow source at the inlet of the sink side" annotation (Placement(transformation(extent={{-54,-58},{-34,-38}}))); - Sources.Boundary_pT sinkSideFixedBoundary( redeclare package Medium = + Sources.Boundary_pT sinkSideFixedBoundary( redeclare + package Medium = Medium_sin, nPorts=1) "Fixed boundary at the outlet of the sink side" annotation (Placement( transformation( @@ -78,7 +79,7 @@ model Chiller "Example for the reversible chiller model." rotation=0, origin={54,-38}))); Modelica.Blocks.Sources.Sine sine( - freqHz=1/3600, + f=1/3600, amplitude=500, offset=500, phase=3.1415926535898) diff --git a/AixLib/Fluid/Chillers/Examples/package.mo b/AixLib/Fluid/Chillers/Examples/package.mo index 1941322a13..505c017dd3 100644 --- a/AixLib/Fluid/Chillers/Examples/package.mo +++ b/AixLib/Fluid/Chillers/Examples/package.mo @@ -1,6 +1,7 @@ within AixLib.Fluid.Chillers; package Examples "Collection of models that illustrate model use and test models" extends Modelica.Icons.ExamplesPackage; + annotation (preferredView="info", Documentation(info="

                  This package contains examples for the use of models that can be found in diff --git a/AixLib/Fluid/Chillers/Validation/CarnotVerifyCOP.mo b/AixLib/Fluid/Chillers/Validation/CarnotVerifyCOP.mo index 88e84ab249..248594836d 100644 --- a/AixLib/Fluid/Chillers/Validation/CarnotVerifyCOP.mo +++ b/AixLib/Fluid/Chillers/Validation/CarnotVerifyCOP.mo @@ -7,36 +7,35 @@ model CarnotVerifyCOP parameter Real COP_nominal = 3 "Coefficient of performance"; - parameter Modelica.SIunits.Temperature TCon_nominal = 273.15+30 + parameter Modelica.Units.SI.Temperature TCon_nominal=273.15 + 30 "Nominal condensor temperature"; - parameter Modelica.SIunits.Temperature TEva_nominal = 273.15 + 5 + parameter Modelica.Units.SI.Temperature TEva_nominal=273.15 + 5 "Nominal evaporator temperature"; - parameter Modelica.SIunits.HeatFlowRate QEva_flow_nominal=-10E3 + parameter Modelica.Units.SI.HeatFlowRate QEva_flow_nominal=-10E3 "Nominal evaporator heat flow rate (QEva_flow_nominal < 0)"; - parameter Modelica.SIunits.HeatFlowRate QCon_flow_nominal=-QEva_flow_nominal * (1+1/COP_nominal) + parameter Modelica.Units.SI.HeatFlowRate QCon_flow_nominal=-QEva_flow_nominal + *(1 + 1/COP_nominal) "Nominal condenser heat flow rate (QCon_flow_nominal > 0)"; - parameter Modelica.SIunits.TemperatureDifference dTEva_nominal=-10 + parameter Modelica.Units.SI.TemperatureDifference dTEva_nominal=-10 "Temperature difference evaporator outlet-inlet"; - parameter Modelica.SIunits.TemperatureDifference dTCon_nominal=10 + parameter Modelica.Units.SI.TemperatureDifference dTCon_nominal=10 "Temperature difference condenser outlet-inlet"; - parameter Modelica.SIunits.MassFlowRate mCon_flow_nominal= - QCon_flow_nominal/cp_default/dTCon_nominal - "Nominal mass flow rate at condenser"; + parameter Modelica.Units.SI.MassFlowRate mCon_flow_nominal=QCon_flow_nominal/ + cp_default/dTCon_nominal "Nominal mass flow rate at condenser"; - parameter Modelica.SIunits.MassFlowRate mEva_flow_nominal= - QEva_flow_nominal/cp_default/dTEva_nominal - "Nominal mass flow rate of evaporator"; + parameter Modelica.Units.SI.MassFlowRate mEva_flow_nominal=QEva_flow_nominal/ + cp_default/dTEva_nominal "Nominal mass flow rate of evaporator"; - final parameter Modelica.SIunits.SpecificHeatCapacity cp_default= - Medium.specificHeatCapacityCp(Medium.setState_pTX( - p = Medium.p_default, - T = Medium.T_default, - X = Medium.X_default)) + final parameter Modelica.Units.SI.SpecificHeatCapacity cp_default= + Medium.specificHeatCapacityCp(Medium.setState_pTX( + p=Medium.p_default, + T=Medium.T_default, + X=Medium.X_default)) "Specific heat capacity of medium 1 at default medium state"; Carnot_TEva chi_TEva( @@ -156,18 +155,19 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Chillers/Validation/CarnotVerifyCOP.mos" "Simulate and plot"), Documentation(info=" -

                  -This example verifies that the coefficient of performance is identical -to the one specified for the nominal operating point if the current -operating conditions are the same as the nominal conditions. -It thus verifies the correct deviation of the nominal parameters. -

                  -", revisions=" -
                    -
                  • -June 15, 2017, by Michael Wetter:
                    -First implementation. -
                  • -
                  -")); +

                  + This example verifies that the coefficient of performance is identical + to the one specified for the nominal operating point if the current + operating conditions are the same as the nominal conditions. + It thus verifies the correct deviation of the nominal parameters. +

                  + ",revisions=" +
                    +
                  • + June 15, 2017, by Michael Wetter:
                    + First implementation. +
                  • +
                  + "), + __Dymola_LockedEditing="Model from IBPSA"); end CarnotVerifyCOP; diff --git a/AixLib/Fluid/Chillers/Validation/CarnotVerifyEtaCarnot.mo b/AixLib/Fluid/Chillers/Validation/CarnotVerifyEtaCarnot.mo index 24aa423aa7..62237dcfb6 100644 --- a/AixLib/Fluid/Chillers/Validation/CarnotVerifyEtaCarnot.mo +++ b/AixLib/Fluid/Chillers/Validation/CarnotVerifyEtaCarnot.mo @@ -8,46 +8,45 @@ model CarnotVerifyEtaCarnot parameter Real etaCarnot_nominal=0.315046 "Carnot effectiveness (=COP/COP_Carnot) used if use_eta_Carnot_nominal = true"; - parameter Modelica.SIunits.TemperatureDifference TAppCon_nominal=2 + parameter Modelica.Units.SI.TemperatureDifference TAppCon_nominal=2 "Temperature difference between refrigerant and working fluid outlet in condenser"; - parameter Modelica.SIunits.TemperatureDifference TAppEva_nominal=2 + parameter Modelica.Units.SI.TemperatureDifference TAppEva_nominal=2 "Temperature difference between refrigerant and working fluid outlet in evaporator"; parameter Real COP_nominal = etaCarnot_nominal * (TEva_nominal-TAppEva_nominal)/ (TCon_nominal + TAppCon_nominal - (TEva_nominal-TAppEva_nominal)) "Coefficient of performance"; - parameter Modelica.SIunits.Temperature TCon_nominal = 273.15+30 + parameter Modelica.Units.SI.Temperature TCon_nominal=273.15 + 30 "Nominal condensor temperature"; - parameter Modelica.SIunits.Temperature TEva_nominal = 273.15 + 5 + parameter Modelica.Units.SI.Temperature TEva_nominal=273.15 + 5 "Nominal evaporator temperature"; - parameter Modelica.SIunits.HeatFlowRate QEva_flow_nominal=-10E3 + parameter Modelica.Units.SI.HeatFlowRate QEva_flow_nominal=-10E3 "Nominal evaporator heat flow rate (QEva_flow_nominal < 0)"; - parameter Modelica.SIunits.HeatFlowRate QCon_flow_nominal=-QEva_flow_nominal * (1+1/COP_nominal) + parameter Modelica.Units.SI.HeatFlowRate QCon_flow_nominal=-QEva_flow_nominal + *(1 + 1/COP_nominal) "Nominal condenser heat flow rate (QCon_flow_nominal > 0)"; - parameter Modelica.SIunits.TemperatureDifference dTEva_nominal=-10 + parameter Modelica.Units.SI.TemperatureDifference dTEva_nominal=-10 "Temperature difference evaporator outlet-inlet"; - parameter Modelica.SIunits.TemperatureDifference dTCon_nominal=10 + parameter Modelica.Units.SI.TemperatureDifference dTCon_nominal=10 "Temperature difference condenser outlet-inlet"; - parameter Modelica.SIunits.MassFlowRate mCon_flow_nominal= - QCon_flow_nominal/cp_default/dTCon_nominal - "Nominal mass flow rate at condenser"; + parameter Modelica.Units.SI.MassFlowRate mCon_flow_nominal=QCon_flow_nominal/ + cp_default/dTCon_nominal "Nominal mass flow rate at condenser"; - parameter Modelica.SIunits.MassFlowRate mEva_flow_nominal= - QEva_flow_nominal/cp_default/dTEva_nominal - "Nominal mass flow rate of evaporator"; + parameter Modelica.Units.SI.MassFlowRate mEva_flow_nominal=QEva_flow_nominal/ + cp_default/dTEva_nominal "Nominal mass flow rate of evaporator"; - final parameter Modelica.SIunits.SpecificHeatCapacity cp_default= - Medium.specificHeatCapacityCp(Medium.setState_pTX( - p = Medium.p_default, - T = Medium.T_default, - X = Medium.X_default)) + final parameter Modelica.Units.SI.SpecificHeatCapacity cp_default= + Medium.specificHeatCapacityCp(Medium.setState_pTX( + p=Medium.p_default, + T=Medium.T_default, + X=Medium.X_default)) "Specific heat capacity of medium 1 at default medium state"; Carnot_TEva chi_TEva( @@ -170,19 +169,20 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Chillers/Validation/CarnotVerifyEtaCarnot.mos" "Simulate and plot"), Documentation(info=" -

                  -This example verifies that the coefficient of performance is identical -to the one specified for the nominal operating point if the current -operating conditions are the same as the nominal conditions. -It thus verifies the correct deviation of the nominal parameters -for the situation where the Carnot effectiveness is specified as a parameter. -

                  -", revisions=" -
                    -
                  • -June 15, 2017, by Michael Wetter:
                    -First implementation. -
                  • -
                  -")); +

                  + This example verifies that the coefficient of performance is identical + to the one specified for the nominal operating point if the current + operating conditions are the same as the nominal conditions. + It thus verifies the correct deviation of the nominal parameters + for the situation where the Carnot effectiveness is specified as a parameter. +

                  + ",revisions=" +
                    +
                  • + June 15, 2017, by Michael Wetter:
                    + First implementation. +
                  • +
                  + "), + __Dymola_LockedEditing="Model from IBPSA"); end CarnotVerifyEtaCarnot; diff --git a/AixLib/Fluid/Chillers/Validation/Carnot_TEva_2ndLaw.mo b/AixLib/Fluid/Chillers/Validation/Carnot_TEva_2ndLaw.mo index 1b9c5b461f..95ad7f5b1e 100644 --- a/AixLib/Fluid/Chillers/Validation/Carnot_TEva_2ndLaw.mo +++ b/AixLib/Fluid/Chillers/Validation/Carnot_TEva_2ndLaw.mo @@ -5,19 +5,19 @@ model Carnot_TEva_2ndLaw package Medium = AixLib.Media.Water "Medium model"; - parameter Modelica.SIunits.TemperatureDifference dTEva_nominal=-4 + parameter Modelica.Units.SI.TemperatureDifference dTEva_nominal=-4 "Temperature difference evaporator outlet-inlet"; - parameter Modelica.SIunits.TemperatureDifference dTCon_nominal=4 + parameter Modelica.Units.SI.TemperatureDifference dTCon_nominal=4 "Temperature difference condenser outlet-inlet"; parameter Real COPc_nominal = 3 "Chiller COP"; - parameter Modelica.SIunits.HeatFlowRate QEva_flow_nominal = -100E3 + parameter Modelica.Units.SI.HeatFlowRate QEva_flow_nominal=-100E3 "Evaporator heat flow rate"; - final parameter Modelica.SIunits.MassFlowRate m2_flow_nominal= - QEva_flow_nominal/dTEva_nominal/4200 + final parameter Modelica.Units.SI.MassFlowRate m2_flow_nominal= + QEva_flow_nominal/dTEva_nominal/4200 "Nominal mass flow rate at chilled water side"; - final parameter Modelica.SIunits.MassFlowRate m1_flow_nominal= - -m2_flow_nominal/dTCon_nominal*dTEva_nominal + final parameter Modelica.Units.SI.MassFlowRate m1_flow_nominal=- + m2_flow_nominal/dTCon_nominal*dTEva_nominal "Nominal mass flow rate at condeser water side"; Modelica.Blocks.Sources.Constant TEvaIn(k=273.15 + 20) @@ -56,15 +56,15 @@ protected replaceable package Medium2 = Modelica.Media.Interfaces.PartialMedium "Medium model"; - parameter Modelica.SIunits.TemperatureDifference dTEva_nominal + parameter Modelica.Units.SI.TemperatureDifference dTEva_nominal "Temperature difference evaporator outlet-inlet"; - parameter Modelica.SIunits.TemperatureDifference dTCon_nominal + parameter Modelica.Units.SI.TemperatureDifference dTCon_nominal "Temperature difference condenser outlet-inlet"; - parameter Modelica.SIunits.HeatFlowRate QEva_flow_nominal + parameter Modelica.Units.SI.HeatFlowRate QEva_flow_nominal "Evaporator heat flow rate"; - parameter Modelica.SIunits.MassFlowRate m1_flow_nominal + parameter Modelica.Units.SI.MassFlowRate m1_flow_nominal "Nominal mass flow rate at condeser water side"; - parameter Modelica.SIunits.MassFlowRate m2_flow_nominal + parameter Modelica.Units.SI.MassFlowRate m2_flow_nominal "Nominal mass flow rate at chilled water side"; AixLib.Fluid.Sources.MassFlowSource_T sou1( @@ -150,8 +150,8 @@ protected origin={152,-46}))); equation assert(SGen_flow > 0, "Entropy generated is zero or negative, which violates the 2nd law. - This is because the model is configured to use the inlet temperatures - to compute the Carnot efficiency, which can lead to non-physical results.", + This is because the model is configured to use the inlet temperatures + to compute the Carnot efficiency, which can lead to non-physical results.", level = AssertionLevel.warning); connect(SIn_flow.y, dS_flow.u1) annotation (Line(points={{81,50},{88,50},{88,46},{98,46}}, @@ -219,30 +219,31 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Chillers/Validation/Carnot_TEva_2ndLaw.mos" "Simulate and plot"), Documentation(info=" -

                  -This example verifies that the 2nd law of thermodynamics is not violated -despite of a very small temperature lift. -

                  -", revisions=" -
                    -
                  • -May 15, 2019, by Jianjun Hu:
                    -Replaced fluid source. This is for - #1072. -
                  • -
                  • -January 9, 2017, by Michael Wetter:
                    -Renamed internal protected class Chiller to be upper-case. -
                  • -
                  • -January 3, 2017, by Michael Wetter:
                    -Updated model because the option to use the inlet temperatures to compute the COP -has been removed. -
                  • -
                  • -November 18, 2016, by Michael Wetter:
                    -First implementation. -
                  • -
                  -")); +

                  + This example verifies that the 2nd law of thermodynamics is not violated + despite of a very small temperature lift. +

                  + ",revisions=" +
                    +
                  • + May 15, 2019, by Jianjun Hu:
                    + Replaced fluid source. This is for + #1072. +
                  • +
                  • + January 9, 2017, by Michael Wetter:
                    + Renamed internal protected class Chiller to be upper-case. +
                  • +
                  • + January 3, 2017, by Michael Wetter:
                    + Updated model because the option to use the inlet temperatures to compute the COP + has been removed. +
                  • +
                  • + November 18, 2016, by Michael Wetter:
                    + First implementation. +
                  • +
                  + "), + __Dymola_LockedEditing="Model from IBPSA"); end Carnot_TEva_2ndLaw; diff --git a/AixLib/Fluid/Chillers/Validation/Carnot_TEva_HighTemperature.mo b/AixLib/Fluid/Chillers/Validation/Carnot_TEva_HighTemperature.mo index 02106c7574..4ce628943f 100644 --- a/AixLib/Fluid/Chillers/Validation/Carnot_TEva_HighTemperature.mo +++ b/AixLib/Fluid/Chillers/Validation/Carnot_TEva_HighTemperature.mo @@ -15,23 +15,24 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Chillers/Validation/Carnot_TEva_HighTemperature.mos" "Simulate and plot"), Documentation(info=" -

                  -This example extends from - -AixLib.Fluid.Chillers.Examples.Carnot_TEva -but increases the set point for the leaving evaporator temperature -to be above its inlet temperature, in which case the model provides no cooling. -Towards the end of the simulation, the inlet temperature of the evaporator is increased -to be above the condenser temperature. In this domain, the model requires cooling -again. While this is not a meaningful operating point for the model, the example -verifies that it robustly simulates this regime. -

                  -", revisions=" -
                    -
                  • -February 10, 2016, by Michael Wetter:
                    -First implementation. -
                  • -
                  -")); +

                  + This example extends from + + AixLib.Fluid.Chillers.Examples.Carnot_TEva + but increases the set point for the leaving evaporator temperature + to be above its inlet temperature, in which case the model provides no cooling. + Towards the end of the simulation, the inlet temperature of the evaporator is increased + to be above the condenser temperature. In this domain, the model requires cooling + again. While this is not a meaningful operating point for the model, the example + verifies that it robustly simulates this regime. +

                  + ",revisions=" +
                    +
                  • + February 10, 2016, by Michael Wetter:
                    + First implementation. +
                  • +
                  + "), + __Dymola_LockedEditing="Model from IBPSA"); end Carnot_TEva_HighTemperature; diff --git a/AixLib/Fluid/Chillers/Validation/Carnot_TEva_LimitedCapacity.mo b/AixLib/Fluid/Chillers/Validation/Carnot_TEva_LimitedCapacity.mo index fb78f805e5..f0f033e417 100644 --- a/AixLib/Fluid/Chillers/Validation/Carnot_TEva_LimitedCapacity.mo +++ b/AixLib/Fluid/Chillers/Validation/Carnot_TEva_LimitedCapacity.mo @@ -7,18 +7,19 @@ model Carnot_TEva_LimitedCapacity __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Chillers/Validation/Carnot_TEva_LimitedCapacity.mos" "Simulate and plot"), Documentation(info=" -

                  -This example extends from - -AixLib.Fluid.Chillers.Examples.Carnot_TEva -but limits the cooling capacity. -

                  -", revisions=" -
                    -
                  • -February 10, 2016, by Michael Wetter:
                    -First implementation. -
                  • -
                  -")); +

                  + This example extends from + + AixLib.Fluid.Chillers.Examples.Carnot_TEva + but limits the cooling capacity. +

                  + ",revisions=" +
                    +
                  • + February 10, 2016, by Michael Wetter:
                    + First implementation. +
                  • +
                  + "), + __Dymola_LockedEditing="Model from IBPSA"); end Carnot_TEva_LimitedCapacity; diff --git a/AixLib/Fluid/Chillers/Validation/Carnot_TEva_etaPL.mo b/AixLib/Fluid/Chillers/Validation/Carnot_TEva_etaPL.mo index f2e5885a87..918befc50c 100644 --- a/AixLib/Fluid/Chillers/Validation/Carnot_TEva_etaPL.mo +++ b/AixLib/Fluid/Chillers/Validation/Carnot_TEva_etaPL.mo @@ -8,18 +8,19 @@ model Carnot_TEva_etaPL __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Chillers/Validation/Carnot_TEva_etaPL.mos" "Simulate and plot"), Documentation(info=" -

                  -This example extends from - -AixLib.Fluid.Chillers.Examples.Carnot_TEva -but has a part load efficiency that varies with the load. -

                  -", revisions=" -
                    -
                  • -February 10, 2016, by Michael Wetter:
                    -First implementation. -
                  • -
                  -")); +

                  + This example extends from + + AixLib.Fluid.Chillers.Examples.Carnot_TEva + but has a part load efficiency that varies with the load. +

                  + ",revisions=" +
                    +
                  • + February 10, 2016, by Michael Wetter:
                    + First implementation. +
                  • +
                  + "), + __Dymola_LockedEditing="Model from IBPSA"); end Carnot_TEva_etaPL; diff --git a/AixLib/Fluid/Chillers/Validation/Carnot_TEva_reverseFlow.mo b/AixLib/Fluid/Chillers/Validation/Carnot_TEva_reverseFlow.mo index 1da2824eb7..4189468279 100644 --- a/AixLib/Fluid/Chillers/Validation/Carnot_TEva_reverseFlow.mo +++ b/AixLib/Fluid/Chillers/Validation/Carnot_TEva_reverseFlow.mo @@ -5,18 +5,17 @@ model Carnot_TEva_reverseFlow package Medium1 = AixLib.Media.Water "Medium model"; package Medium2 = AixLib.Media.Water "Medium model"; - parameter Modelica.SIunits.TemperatureDifference dTEva_nominal=-10 + parameter Modelica.Units.SI.TemperatureDifference dTEva_nominal=-10 "Temperature difference evaporator inlet-outlet"; - parameter Modelica.SIunits.TemperatureDifference dTCon_nominal=10 + parameter Modelica.Units.SI.TemperatureDifference dTCon_nominal=10 "Temperature difference condenser outlet-inlet"; parameter Real COPc_nominal = 3 "Chiller COP"; - parameter Modelica.SIunits.HeatFlowRate QEva_flow_nominal = -100E3 + parameter Modelica.Units.SI.HeatFlowRate QEva_flow_nominal=-100E3 "Evaporator heat flow rate"; - parameter Modelica.SIunits.MassFlowRate m2_flow_nominal= - QEva_flow_nominal/dTEva_nominal/4200 - "Nominal mass flow rate at chilled water side"; - parameter Modelica.SIunits.MassFlowRate m1_flow_nominal= - m2_flow_nominal*(COPc_nominal+1)/COPc_nominal + parameter Modelica.Units.SI.MassFlowRate m2_flow_nominal=QEva_flow_nominal/ + dTEva_nominal/4200 "Nominal mass flow rate at chilled water side"; + parameter Modelica.Units.SI.MassFlowRate m1_flow_nominal=m2_flow_nominal*( + COPc_nominal + 1)/COPc_nominal "Nominal mass flow rate at condenser water wide"; AixLib.Fluid.Chillers.Carnot_TEva chi( @@ -71,8 +70,8 @@ model Carnot_TEva_reverseFlow Modelica.Blocks.Math.Add QCon_flow(k2=-1) "Condenser heat flow rate" annotation (Placement(transformation(extent={{40,-50},{60,-30}}))); - final parameter Modelica.SIunits.SpecificHeatCapacity cp1_default= - Medium1.specificHeatCapacityCp(Medium1.setState_pTX( + final parameter Modelica.Units.SI.SpecificHeatCapacity cp1_default= + Medium1.specificHeatCapacityCp(Medium1.setState_pTX( Medium1.p_default, Medium1.T_default, Medium1.X_default)) @@ -118,28 +117,29 @@ __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Chiller "Simulate and plot"), Documentation( info=" -

                  -Example that simulates a chiller whose efficiency is scaled based on the -Carnot cycle. -The chiller takes as an input the evaporator leaving water temperature. -The condenser mass flow rate is computed in such a way that it has -a temperature difference equal to dTEva_nominal. -

                  -

                  -This example checks the correct behavior if a mass flow rate attains zero. -

                  -", +

                  + Example that simulates a chiller whose efficiency is scaled based on the + Carnot cycle. + The chiller takes as an input the evaporator leaving water temperature. + The condenser mass flow rate is computed in such a way that it has + a temperature difference equal to dTEva_nominal. +

                  +

                  + This example checks the correct behavior if a mass flow rate attains zero. +

                  + ", revisions=" -
                    -
                  • -May 15, 2019, by Jianjun Hu:
                    -Replaced fluid source. This is for - #1072. -
                  • -
                  • -November 25, 2015, by Michael Wetter:
                    -First implementation. -
                  • -
                  -")); +
                    +
                  • + May 15, 2019, by Jianjun Hu:
                    + Replaced fluid source. This is for + #1072. +
                  • +
                  • + November 25, 2015, by Michael Wetter:
                    + First implementation. +
                  • +
                  + "), + __Dymola_LockedEditing="Model from IBPSA"); end Carnot_TEva_reverseFlow; diff --git a/AixLib/Fluid/Chillers/Validation/Carnot_y_etaPL.mo b/AixLib/Fluid/Chillers/Validation/Carnot_y_etaPL.mo index 3362afb49f..647f562278 100644 --- a/AixLib/Fluid/Chillers/Validation/Carnot_y_etaPL.mo +++ b/AixLib/Fluid/Chillers/Validation/Carnot_y_etaPL.mo @@ -7,18 +7,19 @@ model Carnot_y_etaPL __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Chillers/Validation/Carnot_y_etaPL.mos" "Simulate and plot"), Documentation(info=" -

                  -This example extends from - -AixLib.Fluid.Chillers.Examples.Carnot_y -but uses a part load efficiency curve that is different from 1. -

                  -", revisions=" -
                    -
                  • -February 10, 2016, by Michael Wetter:
                    -First implementation. -
                  • -
                  -")); +

                  + This example extends from + + AixLib.Fluid.Chillers.Examples.Carnot_y + but uses a part load efficiency curve that is different from 1. +

                  + ",revisions=" +
                    +
                  • + February 10, 2016, by Michael Wetter:
                    + First implementation. +
                  • +
                  + "), + __Dymola_LockedEditing="Model from IBPSA"); end Carnot_y_etaPL; diff --git a/AixLib/Fluid/Chillers/package.mo b/AixLib/Fluid/Chillers/package.mo index a13982eb49..8b50131426 100644 --- a/AixLib/Fluid/Chillers/package.mo +++ b/AixLib/Fluid/Chillers/package.mo @@ -1,6 +1,7 @@ within AixLib.Fluid; package Chillers "Package with chiller models" extends Modelica.Icons.VariantsPackage; + annotation (preferredView="info", Documentation(info="

                  This package contains component models for chillers. diff --git a/AixLib/Fluid/Delays/DelayFirstOrder.mo b/AixLib/Fluid/Delays/DelayFirstOrder.mo index 5ea6b809d9..8f50fbfbcc 100644 --- a/AixLib/Fluid/Delays/DelayFirstOrder.mo +++ b/AixLib/Fluid/Delays/DelayFirstOrder.mo @@ -1,56 +1,65 @@ within AixLib.Fluid.Delays; model DelayFirstOrder "Delay element, approximated by a first order differential equation" - extends AixLib.Fluid.MixingVolumes.MixingVolume(final V=V_nominal, - final mSenFac=1); + extends AixLib.Fluid.MixingVolumes.MixingVolume( + final V=V_nominal, + final massDynamics=energyDynamics, + final mSenFac=1); - parameter Modelica.SIunits.Time tau = 60 "Time constant at nominal flow" + parameter Modelica.Units.SI.Time tau=60 "Time constant at nominal flow" annotation (Dialog(tab="Dynamics", group="Nominal condition")); protected - parameter Modelica.SIunits.Volume V_nominal = m_flow_nominal*tau/rho_default + parameter Modelica.Units.SI.Volume V_nominal=m_flow_nominal*tau/rho_default "Volume of delay element"; annotation ( Icon(coordinateSystem(preserveAspectRatio=true, extent={{-100,-100},{100, 100}}), graphics={ Text( extent={{-70,-26},{70,-66}}, - lineColor={255,255,255}, + textColor={255,255,255}, textString="tau=%tau")}), defaultComponentName="del", Documentation(info=" -

                  -This model approximates a transport delay using a first order differential equations. -

                  -

                  -The model consists of a mixing volume with two ports. The size of the -mixing volume is such that at the nominal mass flow rate -m_flow_nominal, -the time constant of the volume is equal to the parameter tau. -

                  -

                  -The heat flux connector is optional, it need not be connnected. -

                  -", +

                  + This model approximates a transport delay using a first order differential equations. +

                  +

                  + The model consists of a mixing volume with two ports. The size of the + mixing volume is such that at the nominal mass flow rate + m_flow_nominal, + the time constant of the volume is equal to the parameter tau. +

                  +

                  + The heat flux connector is optional, it need not be connnected. +

                  + ", revisions=" -
                    -
                  • -September 14, 2013, by Michael Wetter:
                    -Renamed V0 to V_nominal to use consistent notation. -
                  • -
                  • -September 24, 2008, by Michael Wetter:
                    -Changed base class from Modelica.Fluid to AixLib library. -This was done to track the auxiliary species flow mC_flow. -
                  • -
                  • -September 4, 2008, by Michael Wetter:
                    -Fixed bug in assignment of parameter sta0. -The earlier implementation -required temperature to be a state, which is not always the case. -
                  • -
                  • -March 17, 2008, by Michael Wetter:
                    -First implementation. -
                  • -
                  -")); +
                    +
                  • + March 7, 2022, by Michael Wetter:
                    + Set final massDynamics=energyDynamics.
                    + This is for + #1542. +
                  • +
                  • + September 14, 2013, by Michael Wetter:
                    + Renamed V0 to V_nominal to use consistent notation. +
                  • +
                  • + September 24, 2008, by Michael Wetter:
                    + Changed base class from Modelica.Fluid to AixLib library. + This was done to track the auxiliary species flow mC_flow. +
                  • +
                  • + September 4, 2008, by Michael Wetter:
                    + Fixed bug in assignment of parameter sta0. + The earlier implementation + required temperature to be a state, which is not always the case. +
                  • +
                  • + March 17, 2008, by Michael Wetter:
                    + First implementation. +
                  • +
                  + "), + __Dymola_LockedEditing="Model from IBPSA"); end DelayFirstOrder; diff --git a/AixLib/Fluid/Delays/Examples/Delay.mo b/AixLib/Fluid/Delays/Examples/Delay.mo index 8efbabc307..4df2cdb28c 100644 --- a/AixLib/Fluid/Delays/Examples/Delay.mo +++ b/AixLib/Fluid/Delays/Examples/Delay.mo @@ -61,5 +61,6 @@ equation color={0,127,255})); annotation (experiment(Tolerance=1e-6, StopTime=300), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Delays/Examples/Delay.mos" - "Simulate and plot")); + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end Delay; diff --git a/AixLib/Fluid/Delays/Examples/package.mo b/AixLib/Fluid/Delays/Examples/package.mo index 07b7d7b6f0..8e476a3d41 100644 --- a/AixLib/Fluid/Delays/Examples/package.mo +++ b/AixLib/Fluid/Delays/Examples/package.mo @@ -1,6 +1,7 @@ within AixLib.Fluid.Delays; package Examples "Collection of models that illustrate model use and test models" extends Modelica.Icons.ExamplesPackage; + annotation (preferredView="info", Documentation(info="

                  This package contains examples for the use of models that can be found in diff --git a/AixLib/Fluid/Delays/package.mo b/AixLib/Fluid/Delays/package.mo index 069558ad7d..38e6b522ee 100644 --- a/AixLib/Fluid/Delays/package.mo +++ b/AixLib/Fluid/Delays/package.mo @@ -1,6 +1,7 @@ within AixLib.Fluid; package Delays "Package with delay models" extends Modelica.Icons.VariantsPackage; + annotation (preferredView="info", Documentation(info="

                  This package contains component models for transport delays in diff --git a/AixLib/Fluid/DistrictHeatingCooling/Demands/ClosedLoop/DHCSubstationHeatPumpChiller.mo b/AixLib/Fluid/DistrictHeatingCooling/Demands/ClosedLoop/DHCSubstationHeatPumpChiller.mo index 80b3220194..042376f2e3 100644 --- a/AixLib/Fluid/DistrictHeatingCooling/Demands/ClosedLoop/DHCSubstationHeatPumpChiller.mo +++ b/AixLib/Fluid/DistrictHeatingCooling/Demands/ClosedLoop/DHCSubstationHeatPumpChiller.mo @@ -6,44 +6,46 @@ model DHCSubstationHeatPumpChiller "Medium model for water" annotation (choicesAllMatching = true); - parameter Modelica.SIunits.Pressure dp_nominal(displayUnit="Pa")=30000 + parameter Modelica.Units.SI.Pressure dp_nominal(displayUnit="Pa") = 30000 "Nominal pressure drop"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal = max(max((heaDem_max/(cp_default*deltaT_heaSecSet)),-cooDem_max/(cp_default*deltaT_cooSecSet)),0.0001) + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=max(max((heaDem_max/( + cp_default*deltaT_heaSecSet)), -cooDem_max/(cp_default*deltaT_cooSecSet)), + 0.0001) "Nominal mass flow rate based on max. demand and set temperature difference"; - parameter Modelica.SIunits.HeatFlowRate heaDem_max + parameter Modelica.Units.SI.HeatFlowRate heaDem_max "Maximum heat demand for scaling of heatpump in Watt" - annotation (Dialog(tab = "General", group = "Building System")); + annotation (Dialog(tab="General", group="Building System")); - parameter Modelica.SIunits.HeatFlowRate cooDem_max + parameter Modelica.Units.SI.HeatFlowRate cooDem_max "Maximum cooling demand for scaling of chiller in Watt (negative values)" - annotation (Dialog(tab = "General", group = "Building System")); + annotation (Dialog(tab="General", group="Building System")); - parameter Modelica.SIunits.Temperature T_heaSecSet = 273.15 + 55 + parameter Modelica.Units.SI.Temperature T_heaSecSet=273.15 + 55 "Set supply temperature for space heating on secondary side (building system)" - annotation (Dialog(tab = "General", group = "Building System")); + annotation (Dialog(tab="General", group="Building System")); - parameter Modelica.SIunits.Temperature deltaT_heaSecSet + parameter Modelica.Units.SI.TemperatureDifference deltaT_heaSecSet "Set temperature difference for heating on secondary site (building system)" - annotation (Dialog(tab = "General", group = "Building System")); + annotation (Dialog(tab="General", group="Building System")); - parameter Modelica.SIunits.Temperature T_cooSecSet = 273.15 + 12 + parameter Modelica.Units.SI.Temperature T_cooSecSet=273.15 + 12 "Set supply temperature for cooling on secondary side (building system)" - annotation (Dialog(tab = "General", group = "Building System")); + annotation (Dialog(tab="General", group="Building System")); - parameter Modelica.SIunits.Temperature deltaT_cooSecSet + parameter Modelica.Units.SI.Temperature deltaT_cooSecSet "Set temperature difference for cooling on secondary site (building system)" - annotation (Dialog(tab = "General", group = "Building System")); + annotation (Dialog(tab="General", group="Building System")); - parameter Modelica.SIunits.Temperature deltaT_heaPriSet + parameter Modelica.Units.SI.Temperature deltaT_heaPriSet "Set temperature difference for heating on primary site (grid)" - annotation (Dialog(tab = "General", group = "Grid")); + annotation (Dialog(tab="General", group="Grid")); - parameter Modelica.SIunits.Temperature deltaT_cooPriSet + parameter Modelica.Units.SI.Temperature deltaT_cooPriSet "Set temperature difference for cooling on primary site (grid)" - annotation (Dialog(tab = "General", group = "Grid")); + annotation (Dialog(tab="General", group="Grid")); AixLib.Fluid.Delays.DelayFirstOrder vol( nPorts=2, @@ -209,8 +211,8 @@ protected T=Medium.T_default, p=Medium.p_default, X=Medium.X_default[1:Medium.nXi]) "Medium state at default properties"; - final parameter Modelica.SIunits.SpecificHeatCapacity cp_default= - Medium.specificHeatCapacityCp(sta_default) + final parameter Modelica.Units.SI.SpecificHeatCapacity cp_default= + Medium.specificHeatCapacityCp(sta_default) "Specific heat capacity of the fluid"; diff --git a/AixLib/Fluid/DistrictHeatingCooling/Demands/ClosedLoop/DHCSubstationHeatPumpDirectCooling.mo b/AixLib/Fluid/DistrictHeatingCooling/Demands/ClosedLoop/DHCSubstationHeatPumpDirectCooling.mo index b9dbd49439..81afc84521 100644 --- a/AixLib/Fluid/DistrictHeatingCooling/Demands/ClosedLoop/DHCSubstationHeatPumpDirectCooling.mo +++ b/AixLib/Fluid/DistrictHeatingCooling/Demands/ClosedLoop/DHCSubstationHeatPumpDirectCooling.mo @@ -5,33 +5,33 @@ model DHCSubstationHeatPumpDirectCooling "Substation model for bidirctional low- replaceable package Medium = Modelica.Media.Interfaces.PartialMedium "Medium model for water" annotation (choicesAllMatching = true); - parameter Modelica.SIunits.Pressure dp_nominal(displayUnit="Pa")=30000 + parameter Modelica.Units.SI.Pressure dp_nominal(displayUnit="Pa") = 30000 "Nominal pressure drop"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal = m_flow_nominal + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=m_flow_nominal "Nominal mass flow rate" - annotation (Dialog(tab = "General", group = "Building System")); + annotation (Dialog(tab="General", group="Building System")); - parameter Modelica.SIunits.HeatFlowRate heaDem_max + parameter Modelica.Units.SI.HeatFlowRate heaDem_max "Maximum heat demand for scaling of heat pump" - annotation (Dialog(tab = "General", group = "Building System")); + annotation (Dialog(tab="General", group="Building System")); - parameter Modelica.SIunits.Temperature deltaT_heaSecSet = 10 + parameter Modelica.Units.SI.Temperature deltaT_heaSecSet=10 "Set temperature difference for heating on secondary site (building system)" - annotation (Dialog(tab = "General", group = "Building System")); + annotation (Dialog(tab="General", group="Building System")); - parameter Modelica.SIunits.Temperature T_heaSecSet = 273.15 + 55 + parameter Modelica.Units.SI.Temperature T_heaSecSet=273.15 + 55 "Set supply temperature for space heating on secondary side (building)" - annotation (Dialog(tab = "General", group = "Building System")); + annotation (Dialog(tab="General", group="Building System")); - parameter Modelica.SIunits.Temperature T_heaPriSet = 273.15 + 22 + parameter Modelica.Units.SI.Temperature T_heaPriSet=273.15 + 22 "Set temperature of primary side (warm line of grid)" - annotation (Dialog(tab = "General", group = "Grid")); - parameter Modelica.SIunits.Temperature T_cooPriSet = 273.15 + 12 + annotation (Dialog(tab="General", group="Grid")); + parameter Modelica.Units.SI.Temperature T_cooPriSet=273.15 + 12 "Set temperature of primary side (cold line of grid)" - annotation (Dialog(tab = "General", group = "Grid")); + annotation (Dialog(tab="General", group="Grid")); @@ -183,8 +183,8 @@ protected T=Medium.T_default, p=Medium.p_default, X=Medium.X_default[1:Medium.nXi]) "Medium state at default properties"; - final parameter Modelica.SIunits.SpecificHeatCapacity cp_default= - Medium.specificHeatCapacityCp(sta_default) + final parameter Modelica.Units.SI.SpecificHeatCapacity cp_default= + Medium.specificHeatCapacityCp(sta_default) "Specific heat capacity of the fluid"; equation diff --git a/AixLib/Fluid/DistrictHeatingCooling/Demands/Examples/OpenLoopHeatPumpCarnot.mo b/AixLib/Fluid/DistrictHeatingCooling/Demands/Examples/OpenLoopHeatPumpCarnot.mo index 72dc4c9254..487e87c190 100644 --- a/AixLib/Fluid/DistrictHeatingCooling/Demands/Examples/OpenLoopHeatPumpCarnot.mo +++ b/AixLib/Fluid/DistrictHeatingCooling/Demands/Examples/OpenLoopHeatPumpCarnot.mo @@ -3,7 +3,7 @@ model OpenLoopHeatPumpCarnot "A small open loop example with a heat pump in the substation" extends Modelica.Icons.Example; - parameter Modelica.SIunits.Temperature T_amb = 283.15 + parameter Modelica.Units.SI.Temperature T_amb=283.15 "Ambient temperature around pipes"; package Medium = AixLib.Media.Specialized.Water.ConstantProperties_pT ( @@ -30,7 +30,6 @@ model OpenLoopHeatPumpCarnot rotation=180, origin={0,-60}))); FixedResistances.PlugFlowPipe pipeSupply( - nPorts=1, redeclare package Medium = Medium, dh=0.05, length=50, @@ -41,7 +40,6 @@ model OpenLoopHeatPumpCarnot rotation=270, origin={60,0}))); FixedResistances.PlugFlowPipe pipeReturn( - nPorts=1, redeclare package Medium = Medium, dh=0.05, length=50, @@ -75,8 +73,8 @@ model OpenLoopHeatPumpCarnot origin={-80,-80}))); Modelica.Blocks.Sources.Sine sine( amplitude=12000, - freqHz=1/10000, - offset=24000) "A sine wave for varying heat demands" annotation (Placement( + f=1/10000, + offset=24000) "A sine wave for varying heat demands" annotation (Placement( transformation( extent={{-10,-10},{10,10}}, rotation=90, @@ -89,11 +87,11 @@ model OpenLoopHeatPumpCarnot equation connect(sourceIdeal.port_b, pipeSupply.port_a) annotation (Line(points={{10,60},{60,60},{60,10}}, color={0,127,255})); - connect(pipeSupply.ports_b[1], demand.port_a) + connect(pipeSupply.port_b, demand.port_a) annotation (Line(points={{60,-10},{60,-60},{10,-60}}, color={0,127,255})); connect(demand.port_b, pipeReturn.port_a) annotation (Line(points={{-10,-60},{ -60,-60},{-60,-10}}, color={0,127,255})); - connect(pipeReturn.ports_b[1], sourceIdeal.port_a) + connect(pipeReturn.port_b, sourceIdeal.port_a) annotation (Line(points={{-60,10},{-60,60},{-10,60}}, color={0,127,255})); connect(TSet.y, sourceIdeal.TIn) annotation (Line(points={{-20,77},{-20,67},{-10.6,67}}, color={0,0,127})); diff --git a/AixLib/Fluid/DistrictHeatingCooling/Demands/Examples/OpenLoopVarTSupplyDp.mo b/AixLib/Fluid/DistrictHeatingCooling/Demands/Examples/OpenLoopVarTSupplyDp.mo index bafe23c744..659244e72d 100644 --- a/AixLib/Fluid/DistrictHeatingCooling/Demands/Examples/OpenLoopVarTSupplyDp.mo +++ b/AixLib/Fluid/DistrictHeatingCooling/Demands/Examples/OpenLoopVarTSupplyDp.mo @@ -3,7 +3,7 @@ model OpenLoopVarTSupplyDp "A small open loop example with a Substation with variable dT for fixed return temperature" extends Modelica.Icons.Example; - parameter Modelica.SIunits.Temperature T_amb = 283.15 + parameter Modelica.Units.SI.Temperature T_amb=283.15 "Ambient temperature around pipes"; package Medium = AixLib.Media.Specialized.Water.ConstantProperties_pT ( @@ -27,7 +27,6 @@ model OpenLoopVarTSupplyDp rotation=180, origin={-2,-60}))); FixedResistances.PlugFlowPipe pipeSupply( - nPorts=1, redeclare package Medium = Medium, dh=0.05, length=50, @@ -38,7 +37,6 @@ model OpenLoopVarTSupplyDp rotation=270, origin={60,0}))); FixedResistances.PlugFlowPipe pipeReturn( - nPorts=1, redeclare package Medium = Medium, dh=0.05, length=50, @@ -72,8 +70,8 @@ model OpenLoopVarTSupplyDp origin={-80,-80}))); Modelica.Blocks.Sources.Sine sine( amplitude=12000, - freqHz=1/10000, - offset=24000) "A sine wave for varying heat demands" annotation (Placement( + f=1/10000, + offset=24000) "A sine wave for varying heat demands" annotation (Placement( transformation( extent={{-10,-10},{10,10}}, rotation=90, @@ -86,11 +84,11 @@ model OpenLoopVarTSupplyDp equation connect(sourceIdeal.port_b, pipeSupply.port_a) annotation (Line(points={{10,60},{60,60},{60,10}}, color={0,127,255})); - connect(pipeSupply.ports_b[1], demand.port_a) + connect(pipeSupply.port_b, demand.port_a) annotation (Line(points={{60,-10},{60,-60},{8,-60}}, color={0,127,255})); connect(demand.port_b, pipeReturn.port_a) annotation (Line(points={{-12,-60},{ -60,-60},{-60,-10}}, color={0,127,255})); - connect(pipeReturn.ports_b[1], sourceIdeal.port_a) + connect(pipeReturn.port_b, sourceIdeal.port_a) annotation (Line(points={{-60,10},{-60,60},{-10,60}}, color={0,127,255})); connect(TSet.y, sourceIdeal.TIn) annotation (Line(points={{-20,77},{-20,67},{-10.6,67}}, color={0,0,127})); diff --git a/AixLib/Fluid/DistrictHeatingCooling/Demands/Examples/OpenLoopVarTSupplyDpBypass.mo b/AixLib/Fluid/DistrictHeatingCooling/Demands/Examples/OpenLoopVarTSupplyDpBypass.mo index 01bd3cca0c..0dd6fdf155 100644 --- a/AixLib/Fluid/DistrictHeatingCooling/Demands/Examples/OpenLoopVarTSupplyDpBypass.mo +++ b/AixLib/Fluid/DistrictHeatingCooling/Demands/Examples/OpenLoopVarTSupplyDpBypass.mo @@ -3,7 +3,7 @@ model OpenLoopVarTSupplyDpBypass "A small open loop example with a Substation with variable dT for fixed return temperature" extends Modelica.Icons.Example; - parameter Modelica.SIunits.Temperature T_amb = 283.15 + parameter Modelica.Units.SI.Temperature T_amb=283.15 "Ambient temperature around pipes"; package Medium = AixLib.Media.Specialized.Water.ConstantProperties_pT ( @@ -29,7 +29,6 @@ model OpenLoopVarTSupplyDpBypass rotation=180, origin={0,-60}))); FixedResistances.PlugFlowPipe pipeSupply( - nPorts=1, redeclare package Medium = Medium, dh=0.05, length=50, @@ -40,7 +39,6 @@ model OpenLoopVarTSupplyDpBypass rotation=270, origin={60,0}))); FixedResistances.PlugFlowPipe pipeReturn( - nPorts=1, redeclare package Medium = Medium, dh=0.05, length=50, @@ -74,8 +72,8 @@ model OpenLoopVarTSupplyDpBypass origin={-80,-80}))); Modelica.Blocks.Sources.Sine sine( amplitude=12000, - freqHz=1/10000, - offset=24000) "A sine wave for varying heat demands" annotation (Placement( + f=1/10000, + offset=24000) "A sine wave for varying heat demands" annotation (Placement( transformation( extent={{-10,-10},{10,10}}, rotation=90, @@ -88,11 +86,11 @@ model OpenLoopVarTSupplyDpBypass equation connect(sourceIdeal.port_b, pipeSupply.port_a) annotation (Line(points={{10,60},{60,60},{60,10}}, color={0,127,255})); - connect(pipeSupply.ports_b[1], demand.port_a) + connect(pipeSupply.port_b, demand.port_a) annotation (Line(points={{60,-10},{60,-60},{10,-60}}, color={0,127,255})); connect(demand.port_b, pipeReturn.port_a) annotation (Line(points={{-10,-60},{ -60,-60},{-60,-10}}, color={0,127,255})); - connect(pipeReturn.ports_b[1], sourceIdeal.port_a) + connect(pipeReturn.port_b, sourceIdeal.port_a) annotation (Line(points={{-60,10},{-60,60},{-10,60}}, color={0,127,255})); connect(TSet.y, sourceIdeal.TIn) annotation (Line(points={{-20,77},{-20,67},{-10.6,67}}, color={0,0,127})); diff --git a/AixLib/Fluid/DistrictHeatingCooling/Demands/Examples/OpenLoopVarTSupplyDpFixedTempDifferenceBypass.mo b/AixLib/Fluid/DistrictHeatingCooling/Demands/Examples/OpenLoopVarTSupplyDpFixedTempDifferenceBypass.mo index df52909ecf..4fd679e959 100644 --- a/AixLib/Fluid/DistrictHeatingCooling/Demands/Examples/OpenLoopVarTSupplyDpFixedTempDifferenceBypass.mo +++ b/AixLib/Fluid/DistrictHeatingCooling/Demands/Examples/OpenLoopVarTSupplyDpFixedTempDifferenceBypass.mo @@ -3,7 +3,7 @@ model OpenLoopVarTSupplyDpFixedTempDifferenceBypass "A small open loop example with a Substation with variable supply temperature and fixed dT" extends Modelica.Icons.Example; - parameter Modelica.SIunits.Temperature T_amb = 283.15 + parameter Modelica.Units.SI.Temperature T_amb=283.15 "Ambient temperature around pipes"; package Medium = AixLib.Media.Specialized.Water.ConstantProperties_pT ( @@ -29,7 +29,6 @@ model OpenLoopVarTSupplyDpFixedTempDifferenceBypass rotation=180, origin={0,-66}))); FixedResistances.PlugFlowPipe pipeSupply( - nPorts=1, redeclare package Medium = Medium, dh=0.05, length=50, @@ -40,7 +39,6 @@ model OpenLoopVarTSupplyDpFixedTempDifferenceBypass rotation=270, origin={60,0}))); FixedResistances.PlugFlowPipe pipeReturn( - nPorts=1, redeclare package Medium = Medium, dh=0.05, length=50, @@ -74,8 +72,8 @@ model OpenLoopVarTSupplyDpFixedTempDifferenceBypass origin={-80,-80}))); Modelica.Blocks.Sources.Sine sine( amplitude=12000, - freqHz=1/10000, - offset=24000) "A sine wave for varying heat demands" annotation (Placement( + f=1/10000, + offset=24000) "A sine wave for varying heat demands" annotation (Placement( transformation( extent={{-10,-10},{10,10}}, rotation=90, @@ -88,13 +86,13 @@ model OpenLoopVarTSupplyDpFixedTempDifferenceBypass equation connect(sourceIdeal.port_b, pipeSupply.port_a) annotation (Line(points={{10,60},{60,60},{60,10}}, color={0,127,255})); - connect(pipeSupply.ports_b[1], demand.port_a) + connect(pipeSupply.port_b, demand.port_a) annotation (Line(points={{60,-10},{60,-58.2222},{10,-58.2222}}, color={0,127,255})); connect(demand.port_b, pipeReturn.port_a) annotation (Line(points={{-10, -58.2222},{-60,-58.2222},{-60,-10}}, color={0,127,255})); - connect(pipeReturn.ports_b[1], sourceIdeal.port_a) + connect(pipeReturn.port_b, sourceIdeal.port_a) annotation (Line(points={{-60,10},{-60,60},{-10,60}}, color={0,127,255})); connect(TSet.y, sourceIdeal.TIn) annotation (Line(points={{-20,77},{-20,67},{-10.6,67}}, color={0,0,127})); diff --git a/AixLib/Fluid/DistrictHeatingCooling/Demands/OpenLoop/HeatPumpCarnot.mo b/AixLib/Fluid/DistrictHeatingCooling/Demands/OpenLoop/HeatPumpCarnot.mo index 450a842836..6e08aac203 100644 --- a/AixLib/Fluid/DistrictHeatingCooling/Demands/OpenLoop/HeatPumpCarnot.mo +++ b/AixLib/Fluid/DistrictHeatingCooling/Demands/OpenLoop/HeatPumpCarnot.mo @@ -11,31 +11,28 @@ model HeatPumpCarnot "Substation with a heat pump carnot model" "Medium in the building heating system" annotation (choicesAllMatching = true); - parameter Modelica.SIunits.HeatFlowRate Q_flow_nominal + parameter Modelica.Units.SI.HeatFlowRate Q_flow_nominal "Nominal heat flow rate added to medium"; - parameter Modelica.SIunits.TemperatureDifference dTDesign( - displayUnit="K") + parameter Modelica.Units.SI.TemperatureDifference dTDesign(displayUnit="K") "Design temperature difference for the heat pump on its district heating side"; - parameter Modelica.SIunits.Temperature TReturn - "Fixed return temperature"; + parameter Modelica.Units.SI.Temperature TReturn "Fixed return temperature"; - parameter Modelica.SIunits.TemperatureDifference dTBuilding( - displayUnit="K") + parameter Modelica.Units.SI.TemperatureDifference dTBuilding(displayUnit="K") "Design temperature difference for the building's heating system"; - parameter Modelica.SIunits.Temperature TSupplyBuilding + parameter Modelica.Units.SI.Temperature TSupplyBuilding "Fixed supply temperature for the building heating system"; - parameter Modelica.SIunits.Pressure dp_nominal(displayUnit="Pa")=30000 + parameter Modelica.Units.SI.Pressure dp_nominal(displayUnit="Pa") = 30000 "Pressure difference at nominal flow rate" - annotation(Dialog(group="Design parameter")); + annotation (Dialog(group="Design parameter")); parameter Real deltaM=0.1 "Fraction of nominal flow rate where flow transitions to laminar" annotation (Dialog(tab="Flow resistance")); - parameter Modelica.SIunits.Time tau=30 + parameter Modelica.Units.SI.Time tau=30 "Time constant at nominal flow (if energyDynamics <> SteadyState)" annotation (Dialog(tab="Dynamics")); parameter Modelica.Fluid.Types.Dynamics energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyState @@ -50,11 +47,11 @@ protected T=Medium.T_default, p=Medium.p_default, X=Medium.X_default[1:Medium.nXi]) "Medium state at default properties"; - final parameter Modelica.SIunits.SpecificHeatCapacity cp_default= - Medium.specificHeatCapacityCp(sta_default) + final parameter Modelica.Units.SI.SpecificHeatCapacity cp_default= + Medium.specificHeatCapacityCp(sta_default) "Specific heat capacity of the fluid in the district heating system"; - final parameter Modelica.SIunits.SpecificHeatCapacity cp_default_building= - MediumBuilding.specificHeatCapacityCp(sta_default) + final parameter Modelica.Units.SI.SpecificHeatCapacity cp_default_building= + MediumBuilding.specificHeatCapacityCp(sta_default) "Specific heat capacity of the fluid in the building heating system"; public diff --git a/AixLib/Fluid/DistrictHeatingCooling/Demands/OpenLoop/VarTSupplyDp.mo b/AixLib/Fluid/DistrictHeatingCooling/Demands/OpenLoop/VarTSupplyDp.mo index f23eed32a7..050ab1bc9c 100644 --- a/AixLib/Fluid/DistrictHeatingCooling/Demands/OpenLoop/VarTSupplyDp.mo +++ b/AixLib/Fluid/DistrictHeatingCooling/Demands/OpenLoop/VarTSupplyDp.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.DistrictHeatingCooling.Demands.OpenLoop; +within AixLib.Fluid.DistrictHeatingCooling.Demands.OpenLoop; model VarTSupplyDp "Substation with variable dT for fixed return temperature" extends AixLib.Fluid.Interfaces.PartialTwoPortInterface( @@ -7,24 +7,22 @@ model VarTSupplyDp final allowFlowReversal=false, final m_flow_nominal = Q_flow_nominal/cp_default/dTDesign); - parameter Modelica.SIunits.HeatFlowRate Q_flow_nominal + parameter Modelica.Units.SI.HeatFlowRate Q_flow_nominal "Nominal heat flow rate added to medium"; - parameter Modelica.SIunits.TemperatureDifference dTDesign( - displayUnit="K") + parameter Modelica.Units.SI.TemperatureDifference dTDesign(displayUnit="K") "Design temperature difference for the substation's heat exchanger"; - parameter Modelica.SIunits.Temperature TReturn - "Fixed return temperature"; + parameter Modelica.Units.SI.Temperature TReturn "Fixed return temperature"; - parameter Modelica.SIunits.Pressure dp_nominal(displayUnit="Pa")=30000 + parameter Modelica.Units.SI.Pressure dp_nominal(displayUnit="Pa") = 30000 "Pressure difference at nominal flow rate" - annotation(Dialog(group="Design parameter")); + annotation (Dialog(group="Design parameter")); parameter Real deltaM=0.1 "Fraction of nominal flow rate where flow transitions to laminar" annotation (Dialog(tab="Flow resistance")); - parameter Modelica.SIunits.Time tau=30 + parameter Modelica.Units.SI.Time tau=30 "Time constant at nominal flow (if energyDynamics <> SteadyState)" annotation (Dialog(tab="Dynamics")); parameter Modelica.Fluid.Types.Dynamics energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyState @@ -39,8 +37,8 @@ protected T=Medium.T_default, p=Medium.p_default, X=Medium.X_default[1:Medium.nXi]) "Medium state at default properties"; - final parameter Modelica.SIunits.SpecificHeatCapacity cp_default= - Medium.specificHeatCapacityCp(sta_default) + final parameter Modelica.Units.SI.SpecificHeatCapacity cp_default= + Medium.specificHeatCapacityCp(sta_default) "Specific heat capacity of the fluid"; public diff --git a/AixLib/Fluid/DistrictHeatingCooling/Demands/OpenLoop/VarTSupplyDpBypass.mo b/AixLib/Fluid/DistrictHeatingCooling/Demands/OpenLoop/VarTSupplyDpBypass.mo index 33220eba95..e3fa261ac2 100644 --- a/AixLib/Fluid/DistrictHeatingCooling/Demands/OpenLoop/VarTSupplyDpBypass.mo +++ b/AixLib/Fluid/DistrictHeatingCooling/Demands/OpenLoop/VarTSupplyDpBypass.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.DistrictHeatingCooling.Demands.OpenLoop; +within AixLib.Fluid.DistrictHeatingCooling.Demands.OpenLoop; model VarTSupplyDpBypass "Substation with variable dT for fixed return temperature" extends AixLib.Fluid.Interfaces.PartialTwoPortInterface( @@ -7,24 +7,22 @@ model VarTSupplyDpBypass final allowFlowReversal=false, final m_flow_nominal = Q_flow_nominal/cp_default/dTDesign); - parameter Modelica.SIunits.HeatFlowRate Q_flow_nominal + parameter Modelica.Units.SI.HeatFlowRate Q_flow_nominal "Nominal heat flow rate added to medium"; - parameter Modelica.SIunits.TemperatureDifference dTDesign( - displayUnit="K") + parameter Modelica.Units.SI.TemperatureDifference dTDesign(displayUnit="K") "Design temperature difference for the substation's heat exchanger"; - parameter Modelica.SIunits.Temperature TReturn - "Fixed return temperature"; + parameter Modelica.Units.SI.Temperature TReturn "Fixed return temperature"; - parameter Modelica.SIunits.Pressure dp_nominal(displayUnit="Pa")=30000 + parameter Modelica.Units.SI.Pressure dp_nominal(displayUnit="Pa") = 30000 "Pressure difference at nominal flow rate" - annotation(Dialog(group="Design parameter")); + annotation (Dialog(group="Design parameter")); parameter Real deltaM=0.1 "Fraction of nominal flow rate where flow transitions to laminar" annotation (Dialog(tab="Flow resistance")); - parameter Modelica.SIunits.Time tau=30 + parameter Modelica.Units.SI.Time tau=30 "Time constant at nominal flow (if energyDynamics <> SteadyState)" annotation (Dialog(tab="Dynamics")); parameter Modelica.Fluid.Types.Dynamics energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyState @@ -34,7 +32,7 @@ model VarTSupplyDpBypass "Type of mass balance: dynamic (3 initialization options) or steady state" annotation (Dialog(tab="Dynamics")); - parameter Modelica.SIunits.MassFlowRate m_flo_bypass + parameter Modelica.Units.SI.MassFlowRate m_flo_bypass "Minimum bypass flow through substation"; protected @@ -42,8 +40,8 @@ protected T=Medium.T_default, p=Medium.p_default, X=Medium.X_default[1:Medium.nXi]) "Medium state at default properties"; - final parameter Modelica.SIunits.SpecificHeatCapacity cp_default= - Medium.specificHeatCapacityCp(sta_default) + final parameter Modelica.Units.SI.SpecificHeatCapacity cp_default= + Medium.specificHeatCapacityCp(sta_default) "Specific heat capacity of the fluid"; public diff --git a/AixLib/Fluid/DistrictHeatingCooling/Demands/OpenLoop/VarTSupplyDpFixedTempDifferenceBypass.mo b/AixLib/Fluid/DistrictHeatingCooling/Demands/OpenLoop/VarTSupplyDpFixedTempDifferenceBypass.mo index d3393589c2..e08d00d5d3 100644 --- a/AixLib/Fluid/DistrictHeatingCooling/Demands/OpenLoop/VarTSupplyDpFixedTempDifferenceBypass.mo +++ b/AixLib/Fluid/DistrictHeatingCooling/Demands/OpenLoop/VarTSupplyDpFixedTempDifferenceBypass.mo @@ -7,21 +7,20 @@ model VarTSupplyDpFixedTempDifferenceBypass final allowFlowReversal=false, final m_flow_nominal = Q_flow_nominal/cp_default/dTDesign); - parameter Modelica.SIunits.HeatFlowRate Q_flow_nominal + parameter Modelica.Units.SI.HeatFlowRate Q_flow_nominal "Nominal heat flow rate added to medium"; - parameter Modelica.SIunits.TemperatureDifference dTDesign( - displayUnit="K") + parameter Modelica.Units.SI.TemperatureDifference dTDesign(displayUnit="K") "Constant temperature difference for the substation's heat exchanger"; - parameter Modelica.SIunits.Pressure dp_nominal(displayUnit="Pa")=30000 + parameter Modelica.Units.SI.Pressure dp_nominal(displayUnit="Pa") = 30000 "Pressure difference at nominal flow rate" - annotation(Dialog(group="Design parameter")); + annotation (Dialog(group="Design parameter")); parameter Real deltaM=0.1 "Fraction of nominal flow rate where flow transitions to laminar" annotation (Dialog(tab="Flow resistance")); - parameter Modelica.SIunits.Time tau=30 + parameter Modelica.Units.SI.Time tau=30 "Time constant at nominal flow (if energyDynamics <> SteadyState)" annotation (Dialog(tab="Dynamics")); parameter Modelica.Fluid.Types.Dynamics energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyState @@ -31,7 +30,7 @@ model VarTSupplyDpFixedTempDifferenceBypass "Type of mass balance: dynamic (3 initialization options) or steady state" annotation (Dialog(tab="Dynamics")); - parameter Modelica.SIunits.MassFlowRate m_flo_bypass + parameter Modelica.Units.SI.MassFlowRate m_flo_bypass "Minimum bypass flow through substation"; protected @@ -39,8 +38,8 @@ protected T=Medium.T_default, p=Medium.p_default, X=Medium.X_default[1:Medium.nXi]) "Medium state at default properties"; - final parameter Modelica.SIunits.SpecificHeatCapacity cp_default= - Medium.specificHeatCapacityCp(sta_default) + final parameter Modelica.Units.SI.SpecificHeatCapacity cp_default= + Medium.specificHeatCapacityCp(sta_default) "Specific heat capacity of the fluid"; public diff --git a/AixLib/Fluid/DistrictHeatingCooling/Pipes/BaseClassesStatic/StaticCore.mo b/AixLib/Fluid/DistrictHeatingCooling/Pipes/BaseClassesStatic/StaticCore.mo index 99c7f9d5e0..bdb3d2e9b6 100644 --- a/AixLib/Fluid/DistrictHeatingCooling/Pipes/BaseClassesStatic/StaticCore.mo +++ b/AixLib/Fluid/DistrictHeatingCooling/Pipes/BaseClassesStatic/StaticCore.mo @@ -3,23 +3,23 @@ model StaticCore "Pipe model using static conditions" extends AixLib.Fluid.Interfaces.PartialTwoPort; - parameter Modelica.SIunits.Length dh + parameter Modelica.Units.SI.Length dh "Hydraulic diameter (assuming a round cross section area)"; - parameter Modelica.SIunits.Velocity v_nominal + parameter Modelica.Units.SI.Velocity v_nominal "Velocity at m_flow_nominal (used to compute default value for hydraulic diameter dh)" - annotation(Dialog(group="Nominal condition")); + annotation (Dialog(group="Nominal condition")); - parameter Modelica.SIunits.Length length(min=0) "Pipe length"; + parameter Modelica.Units.SI.Length length(min=0) "Pipe length"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal(min=0) + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal(min=0) "Nominal mass flow rate" annotation (Dialog(group="Nominal condition")); - parameter Modelica.SIunits.MassFlowRate m_flow_small(min=0) = 1E-4*abs( + parameter Modelica.Units.SI.MassFlowRate m_flow_small(min=0) = 1E-4*abs( m_flow_nominal) "Small mass flow rate for regularization of zero flow" annotation (Dialog(tab="Advanced")); - parameter Modelica.SIunits.Height roughness=2.5e-5 + parameter Modelica.Units.SI.Height roughness=2.5e-5 "Average height of surface asperities (default: smooth steel pipe)" annotation (Dialog(group="Geometry")); @@ -35,18 +35,18 @@ model StaticCore parameter Boolean from_dp=false "= true, use m_flow = f(dp) else dp = f(m_flow)" annotation (Evaluate=true, Dialog(tab="Advanced")); - parameter Modelica.SIunits.Length thickness(min=0) "Pipe wall thickness"; + parameter Modelica.Units.SI.Length thickness(min=0) "Pipe wall thickness"; - parameter Modelica.SIunits.Temperature T_start_in=Medium.T_default + parameter Modelica.Units.SI.Temperature T_start_in=Medium.T_default "Initialization temperature at pipe inlet" annotation (Dialog(tab="Initialization")); - parameter Modelica.SIunits.Temperature T_start_out=Medium.T_default + parameter Modelica.Units.SI.Temperature T_start_out=Medium.T_default "Initialization temperature at pipe outlet" annotation (Dialog(tab="Initialization")); parameter Boolean initDelay=false "Initialize delay for a constant mass flow rate if true, otherwise start from 0" annotation (Dialog(tab="Initialization")); - parameter Modelica.SIunits.MassFlowRate m_flow_start=0 + parameter Modelica.Units.SI.MassFlowRate m_flow_start=0 annotation (Dialog(tab="Initialization", enable=initDelay)); parameter Real ReC=4000 @@ -115,7 +115,7 @@ model StaticCore annotation (Placement(transformation(extent={{-10,90},{10,110}}))); protected - parameter Modelica.SIunits.Density rho_default=Medium.density_pTX( + parameter Modelica.Units.SI.Density rho_default=Medium.density_pTX( p=Medium.p_default, T=Medium.T_default, X=Medium.X_default) diff --git a/AixLib/Fluid/DistrictHeatingCooling/Pipes/BaseClassesStatic/StaticTransportDelay.mo b/AixLib/Fluid/DistrictHeatingCooling/Pipes/BaseClassesStatic/StaticTransportDelay.mo index 48ee4e4f88..f7a1d2bff6 100644 --- a/AixLib/Fluid/DistrictHeatingCooling/Pipes/BaseClassesStatic/StaticTransportDelay.mo +++ b/AixLib/Fluid/DistrictHeatingCooling/Pipes/BaseClassesStatic/StaticTransportDelay.mo @@ -1,30 +1,30 @@ within AixLib.Fluid.DistrictHeatingCooling.Pipes.BaseClassesStatic; model StaticTransportDelay "Delay time for given current velocity" - parameter Modelica.SIunits.Length length "Pipe length"; - parameter Modelica.SIunits.Length dh + parameter Modelica.Units.SI.Length length "Pipe length"; + parameter Modelica.Units.SI.Length dh "Hydraulic diameter (assuming a round cross section area)"; - parameter Modelica.SIunits.Density rho "Standard density of fluid"; + parameter Modelica.Units.SI.Density rho "Standard density of fluid"; parameter Boolean initDelay=false "Initialize delay for a constant m_flow_start if true, otherwise start from 0" annotation (Dialog(group="Initialization")); - parameter Modelica.SIunits.MassFlowRate m_flow_start=0 + parameter Modelica.Units.SI.MassFlowRate m_flow_start=0 "Initialization of mass flow rate to calculate initial time delay" annotation (Dialog(group="Initialization", enable=initDelay)); - parameter Modelica.SIunits.MassFlowRate m_flow_nominal(min=0) + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal(min=0) "Nominal mass flow rate" annotation (Dialog(group="Nominal condition")); - final parameter Modelica.SIunits.Time t_in_start= - if initDelay and (abs(m_flow_start) > 1E-10*m_flow_nominal) - then min(length/m_flow_start*(rho*dh^2/4*Modelica.Constants.pi), 0) else 0 + final parameter Modelica.Units.SI.Time t_in_start=if initDelay and (abs( + m_flow_start) > 1E-10*m_flow_nominal) then min(length/m_flow_start*(rho* + dh^2/4*Modelica.Constants.pi), 0) else 0 "Initial value of input time at inlet"; - final parameter Modelica.SIunits.Time t_out_start= - if initDelay and (abs(m_flow_start) > 1E-10*m_flow_nominal) - then min(-length/m_flow_start*(rho*dh^2/4*Modelica.Constants.pi), 0) else 0 + final parameter Modelica.Units.SI.Time t_out_start=if initDelay and (abs( + m_flow_start) > 1E-10*m_flow_nominal) then min(-length/m_flow_start*(rho* + dh^2/4*Modelica.Constants.pi), 0) else 0 "Initial value of input time at outlet"; - Modelica.SIunits.Velocity velocity "Flow velocity within pipe"; + Modelica.Units.SI.Velocity velocity "Flow velocity within pipe"; Modelica.Blocks.Interfaces.RealInput m_flow "Mass flow of fluid" annotation ( Placement(transformation(extent={{-140,-20},{-100,20}}), diff --git a/AixLib/Fluid/DistrictHeatingCooling/Pipes/DHCPipe.mo b/AixLib/Fluid/DistrictHeatingCooling/Pipes/DHCPipe.mo index ab68cb0c44..3da3ace663 100644 --- a/AixLib/Fluid/DistrictHeatingCooling/Pipes/DHCPipe.mo +++ b/AixLib/Fluid/DistrictHeatingCooling/Pipes/DHCPipe.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.DistrictHeatingCooling.Pipes; +within AixLib.Fluid.DistrictHeatingCooling.Pipes; model DHCPipe "Generic pipe model for DHC applications" extends AixLib.Fluid.Interfaces.PartialTwoPortVector(show_T=true); @@ -14,61 +14,62 @@ model DHCPipe "Generic pipe model for DHC applications" "= true, use m_flow = f(dp) else dp = f(m_flow)" annotation (Dialog(tab="Advanced")); - parameter Modelica.SIunits.Length dh=sqrt(4*m_flow_nominal/rho_default/v_nominal/Modelica.Constants.pi) + parameter Modelica.Units.SI.Length dh=sqrt(4*m_flow_nominal/rho_default/ + v_nominal/Modelica.Constants.pi) "Hydraulic diameter (assuming a round cross section area)" annotation (Dialog(group="Material")); - parameter Modelica.SIunits.Velocity v_nominal = 1.5 + parameter Modelica.Units.SI.Velocity v_nominal=1.5 "Velocity at m_flow_nominal (used to compute default value for hydraulic diameter dh)" - annotation(Dialog(group="Nominal condition")); + annotation (Dialog(group="Nominal condition")); parameter Real ReC=4000 "Reynolds number where transition to turbulent starts"; - parameter Modelica.SIunits.Height roughness=2.5e-5 + parameter Modelica.Units.SI.Height roughness=2.5e-5 "Average height of surface asperities (default: smooth steel pipe)" annotation (Dialog(group="Material")); - parameter Modelica.SIunits.Length length "Pipe length" + parameter Modelica.Units.SI.Length length "Pipe length" annotation (Dialog(group="Material")); - parameter Modelica.SIunits.MassFlowRate m_flow_nominal + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal "Nominal mass flow rate" annotation (Dialog(group="Nominal condition")); - parameter Modelica.SIunits.MassFlowRate m_flow_small = 1E-4*abs( - m_flow_nominal) "Small mass flow rate for regularization of zero flow" + parameter Modelica.Units.SI.MassFlowRate m_flow_small=1E-4*abs(m_flow_nominal) + "Small mass flow rate for regularization of zero flow" annotation (Dialog(tab="Advanced")); - parameter Modelica.SIunits.Length dIns + parameter Modelica.Units.SI.Length dIns "Thickness of pipe insulation, used to compute R" annotation (Dialog(group="Thermal resistance")); - parameter Modelica.SIunits.ThermalConductivity kIns + parameter Modelica.Units.SI.ThermalConductivity kIns "Heat conductivity of pipe insulation, used to compute R" annotation (Dialog(group="Thermal resistance")); - parameter Modelica.SIunits.SpecificHeatCapacity cPip=2300 + parameter Modelica.Units.SI.SpecificHeatCapacity cPip=2300 "Specific heat of pipe wall material. 2300 for PE, 500 for steel" annotation (Dialog(group="Material")); - parameter Modelica.SIunits.Density rhoPip(displayUnit="kg/m3")=930 + parameter Modelica.Units.SI.Density rhoPip(displayUnit="kg/m3") = 930 "Density of pipe wall material. 930 for PE, 8000 for steel" annotation (Dialog(group="Material")); - parameter Modelica.SIunits.Length thickness = 0.0035 - "Pipe wall thickness" + parameter Modelica.Units.SI.Length thickness=0.0035 "Pipe wall thickness" annotation (Dialog(group="Material")); - parameter Modelica.SIunits.Temperature T_start_in(start=Medium.T_default)= + parameter Modelica.Units.SI.Temperature T_start_in(start=Medium.T_default)= Medium.T_default "Initialization temperature at pipe inlet" annotation (Dialog(tab="Initialization")); - parameter Modelica.SIunits.Temperature T_start_out(start=Medium.T_default)= - T_start_in "Initialization temperature at pipe outlet" + parameter Modelica.Units.SI.Temperature T_start_out(start=Medium.T_default)= + T_start_in "Initialization temperature at pipe outlet" annotation (Dialog(tab="Initialization")); parameter Boolean initDelay(start=false) = false "Initialize delay for a constant mass flow rate if true, otherwise start from 0" annotation (Dialog(tab="Initialization")); - parameter Modelica.SIunits.MassFlowRate m_flow_start=0 "Initial value of mass flow rate through pipe" + parameter Modelica.Units.SI.MassFlowRate m_flow_start=0 + "Initial value of mass flow rate through pipe" annotation (Dialog(tab="Initialization", enable=initDelay)); parameter Real R(unit="(m.K)/W")=1/(kIns*2*Modelica.Constants.pi/ @@ -95,24 +96,25 @@ model DHCPipe "Generic pipe model for DHC applications" //"ERDWÄRMEKOLLEKTOR" zur wärmetechnischen Beurteilung von Wärmequellen, //Wärmesenken und Wärme-/Kältespeichern" by Bernd Glück --> move to docu - parameter Modelica.SIunits.Density rho_soi = 1630 "Density of material/soil" - annotation(Dialog(tab="Soil", enable=use_soil)); + parameter Modelica.Units.SI.Density rho_soi=1630 "Density of material/soil" + annotation (Dialog(tab="Soil", enable=use_soil)); - parameter Modelica.SIunits.SpecificHeatCapacity c = 1046 + parameter Modelica.Units.SI.SpecificHeatCapacity c=1046 "Specific heat capacity of material/soil" - annotation(Dialog(tab="Soil", enable=use_soil)); - parameter Modelica.SIunits.Length thickness_soi = 0.6 "thickness of soil layer for heat loss calulcation" - annotation(Dialog(tab="Soil", enable=use_soil)); + annotation (Dialog(tab="Soil", enable=use_soil)); + parameter Modelica.Units.SI.Length thickness_soi=0.6 + "thickness of soil layer for heat loss calulcation" + annotation (Dialog(tab="Soil", enable=use_soil)); - parameter Modelica.SIunits.ThermalConductivity lambda = 1.5 + parameter Modelica.Units.SI.ThermalConductivity lambda=1.5 "Heat conductivity of material/soil" - annotation(Dialog(tab="Soil", enable=use_soil)); + annotation (Dialog(tab="Soil", enable=use_soil)); - final parameter Modelica.SIunits.Length d_in = dh + 2 * thickness "Inner diameter of pipe" - annotation(Dialog(tab="Soil", enable=use_soil)); + final parameter Modelica.Units.SI.Length d_in=dh + 2*thickness + "Inner diameter of pipe" annotation (Dialog(tab="Soil", enable=use_soil)); - final parameter Modelica.SIunits.Temperature T0=289.15 "Initial temperature" - annotation(Dialog(tab="Soil")); + final parameter Modelica.Units.SI.Temperature T0=289.15 "Initial temperature" + annotation (Dialog(tab="Soil")); parameter Modelica.Fluid.Types.Dynamics energyDynamics=Modelica.Fluid.Types.Dynamics.DynamicFreeInitial "Type of energy balance: dynamic (3 initialization options) or steady state" @@ -220,10 +222,10 @@ model DHCPipe "Generic pipe model for DHC applications" protected - parameter Modelica.SIunits.HeatCapacity CPip= - length*((dh + 2*thickness)^2 - dh^2)*Modelica.Constants.pi/4*cPip*rhoPip "Heat capacity of pipe wall"; + parameter Modelica.Units.SI.HeatCapacity CPip=length*((dh + 2*thickness)^2 - + dh^2)*Modelica.Constants.pi/4*cPip*rhoPip "Heat capacity of pipe wall"; - final parameter Modelica.SIunits.Volume VEqu=CPip/(rho_default*cp_default) + final parameter Modelica.Units.SI.Volume VEqu=CPip/(rho_default*cp_default) "Equivalent water volume to represent pipe wall thermal inertia"; parameter Medium.ThermodynamicState sta_default=Medium.setState_pTX( @@ -231,7 +233,7 @@ protected p=Medium.p_default, X=Medium.X_default) "Default medium state"; - parameter Modelica.SIunits.SpecificHeatCapacity cp_default= + parameter Modelica.Units.SI.SpecificHeatCapacity cp_default= Medium.specificHeatCapacityCp(state=sta_default) "Heat capacity of medium"; @@ -239,17 +241,19 @@ protected rho_default*Modelica.Constants.pi*(dh/2)^2*cp_default "Thermal capacity per unit length of water in pipe"; - parameter Modelica.SIunits.Density rho_default=Medium.density_pTX( + parameter Modelica.Units.SI.Density rho_default=Medium.density_pTX( p=Medium.p_default, T=Medium.T_default, X=Medium.X_default) "Default density (e.g., rho_liquidWater = 995, rho_air = 1.2)" annotation (Dialog(group="Advanced")); - Modelica.SIunits.Velocity v_med "Velocity of the medium in the pipe"; + Modelica.Units.SI.Velocity v_med "Velocity of the medium in the pipe"; - Modelica.SIunits.Heat Q_los(start=0.0, fixed=true) "Integrated heat loss of the pipe"; - Modelica.SIunits.Heat Q_gai(start=0.0, fixed=true) "Integrated heat gain of the pipe"; + Modelica.Units.SI.Heat Q_los(start=0.0, fixed=true) + "Integrated heat loss of the pipe"; + Modelica.Units.SI.Heat Q_gai(start=0.0, fixed=true) + "Integrated heat gain of the pipe"; public FixedResistances.HydraulicResistance hydRes( @@ -263,14 +267,14 @@ public linearized=linearized, m_flow_start=m_flow_start) if use_zeta annotation (Placement(transformation(extent={{-60,10},{-40,30}}))); - Modelica.Thermal.HeatTransfer.Components.ThermalCollector thePasThr(final m=1) if - not use_soil "Thermal pass through if there is no soil activated" + Modelica.Thermal.HeatTransfer.Components.ThermalCollector thePasThr(final m=1) + if not use_soil "Thermal pass through if there is no soil activated" annotation (Placement(transformation( extent={{-10,-10},{10,10}}, rotation=180, origin={-16,54}))); - Interfaces.PassThroughMedium pasThrMed(redeclare package Medium = Medium) if - not use_zeta + Interfaces.PassThroughMedium pasThrMed(redeclare package Medium = Medium) + if not use_zeta annotation (Placement(transformation(extent={{-60,-30},{-40,-10}}))); equation //calculation of the flow velocity of water in the pipes diff --git a/AixLib/Fluid/DistrictHeatingCooling/Pipes/PlugFlowPipeEmbedded.mo b/AixLib/Fluid/DistrictHeatingCooling/Pipes/PlugFlowPipeEmbedded.mo index a76192ee93..51b9f7f8c4 100644 --- a/AixLib/Fluid/DistrictHeatingCooling/Pipes/PlugFlowPipeEmbedded.mo +++ b/AixLib/Fluid/DistrictHeatingCooling/Pipes/PlugFlowPipeEmbedded.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.DistrictHeatingCooling.Pipes; +within AixLib.Fluid.DistrictHeatingCooling.Pipes; model PlugFlowPipeEmbedded "Embedded pipe model using spatialDistribution for temperature delay" @@ -16,61 +16,62 @@ model PlugFlowPipeEmbedded "= true, use m_flow = f(dp) else dp = f(m_flow)" annotation (Dialog(tab="Advanced")); - parameter Modelica.SIunits.Length dh=sqrt(4*m_flow_nominal/rho_default/v_nominal/Modelica.Constants.pi) + parameter Modelica.Units.SI.Length dh=sqrt(4*m_flow_nominal/rho_default/ + v_nominal/Modelica.Constants.pi) "Hydraulic diameter (assuming a round cross section area)" annotation (Dialog(group="Material")); - parameter Modelica.SIunits.Velocity v_nominal = 1.5 + parameter Modelica.Units.SI.Velocity v_nominal=1.5 "Velocity at m_flow_nominal (used to compute default value for hydraulic diameter dh)" - annotation(Dialog(group="Nominal condition")); + annotation (Dialog(group="Nominal condition")); parameter Real ReC=4000 "Reynolds number where transition to turbulent starts"; - parameter Modelica.SIunits.Height roughness=2.5e-5 + parameter Modelica.Units.SI.Height roughness=2.5e-5 "Average height of surface asperities (default: smooth steel pipe)" annotation (Dialog(group="Material")); - parameter Modelica.SIunits.Length length "Pipe length" + parameter Modelica.Units.SI.Length length "Pipe length" annotation (Dialog(group="Material")); - parameter Modelica.SIunits.MassFlowRate m_flow_nominal + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal "Nominal mass flow rate" annotation (Dialog(group="Nominal condition")); - parameter Modelica.SIunits.MassFlowRate m_flow_small = 1E-4*abs( - m_flow_nominal) "Small mass flow rate for regularization of zero flow" + parameter Modelica.Units.SI.MassFlowRate m_flow_small=1E-4*abs(m_flow_nominal) + "Small mass flow rate for regularization of zero flow" annotation (Dialog(tab="Advanced")); - parameter Modelica.SIunits.Length dIns + parameter Modelica.Units.SI.Length dIns "Thickness of pipe insulation, used to compute R" annotation (Dialog(group="Thermal resistance")); - parameter Modelica.SIunits.ThermalConductivity kIns + parameter Modelica.Units.SI.ThermalConductivity kIns "Heat conductivity of pipe insulation, used to compute R" annotation (Dialog(group="Thermal resistance")); - parameter Modelica.SIunits.SpecificHeatCapacity cPip=2300 + parameter Modelica.Units.SI.SpecificHeatCapacity cPip=2300 "Specific heat of pipe wall material. 2300 for PE, 500 for steel" annotation (Dialog(group="Material")); - parameter Modelica.SIunits.Density rhoPip(displayUnit="kg/m3")=930 + parameter Modelica.Units.SI.Density rhoPip(displayUnit="kg/m3") = 930 "Density of pipe wall material. 930 for PE, 8000 for steel" annotation (Dialog(group="Material")); - parameter Modelica.SIunits.Length thickness = 0.0035 - "Pipe wall thickness" + parameter Modelica.Units.SI.Length thickness=0.0035 "Pipe wall thickness" annotation (Dialog(group="Material")); - parameter Modelica.SIunits.Temperature T_start_in(start=Medium.T_default)= + parameter Modelica.Units.SI.Temperature T_start_in(start=Medium.T_default) = Medium.T_default "Initialization temperature at pipe inlet" annotation (Dialog(tab="Initialization")); - parameter Modelica.SIunits.Temperature T_start_out(start=Medium.T_default)= - T_start_in "Initialization temperature at pipe outlet" + parameter Modelica.Units.SI.Temperature T_start_out(start=Medium.T_default) + = T_start_in "Initialization temperature at pipe outlet" annotation (Dialog(tab="Initialization")); parameter Boolean initDelay(start=false) = false "Initialize delay for a constant mass flow rate if true, otherwise start from 0" annotation (Dialog(tab="Initialization")); - parameter Modelica.SIunits.MassFlowRate m_flow_start=0 "Initial value of mass flow rate through pipe" + parameter Modelica.Units.SI.MassFlowRate m_flow_start=0 + "Initial value of mass flow rate through pipe" annotation (Dialog(tab="Initialization", enable=initDelay)); parameter Real R(unit="(m.K)/W")=1/(kIns*2*Modelica.Constants.pi/ @@ -97,27 +98,26 @@ model PlugFlowPipeEmbedded //"ERDWÄRMEKOLLEKTOR" zur wärmetechnischen Beurteilung von Wärmequellen, //Wärmesenken und Wärme-/Kältespeichern" by Bernd Glück - parameter Modelica.SIunits.Density rho_soi = 1630 "Density of material/soil" - annotation(Dialog(tab="Soil")); + parameter Modelica.Units.SI.Density rho_soi=1630 "Density of material/soil" + annotation (Dialog(tab="Soil")); - parameter Modelica.SIunits.SpecificHeatCapacity c = 1046 - "Specific heat capacity of material/soil" - annotation(Dialog(tab="Soil")); - parameter Modelica.SIunits.Length thickness_soi = 0.6 "thickness of soil layer for heat loss calulcation" - annotation(Dialog(tab="Soil")); + parameter Modelica.Units.SI.SpecificHeatCapacity c=1046 + "Specific heat capacity of material/soil" annotation (Dialog(tab="Soil")); + parameter Modelica.Units.SI.Length thickness_soi=0.6 + "thickness of soil layer for heat loss calulcation" + annotation (Dialog(tab="Soil")); - parameter Modelica.SIunits.ThermalConductivity lambda = 1.5 - "Heat conductivity of material/soil" - annotation(Dialog(tab="Soil")); + parameter Modelica.Units.SI.ThermalConductivity lambda=1.5 + "Heat conductivity of material/soil" annotation (Dialog(tab="Soil")); - final parameter Modelica.SIunits.Length d_in = dh + 2 * thickness "Inner diameter of pipe" - annotation(Dialog(tab="Soil")); + final parameter Modelica.Units.SI.Length d_in=dh + 2*thickness + "Inner diameter of pipe" annotation (Dialog(tab="Soil")); final parameter Integer nParallel = 1 "Number of identical parallel pipes" annotation(Dialog(tab="Soil")); - final parameter Modelica.SIunits.Temperature T0=289.15 "Initial temperature" - annotation(Dialog(tab="Soil")); + final parameter Modelica.Units.SI.Temperature T0=289.15 "Initial temperature" + annotation (Dialog(tab="Soil")); - Modelica.SIunits.Velocity v_med "Velocity of the medium in the pipe"; + Modelica.Units.SI.Velocity v_med "Velocity of the medium in the pipe"; AixLib.Fluid.DistrictHeatingCooling.Pipes.PlugFlowPipeZeta plugFlowPipeZeta( redeclare final package Medium = Medium, @@ -175,10 +175,10 @@ model PlugFlowPipeEmbedded protected - parameter Modelica.SIunits.HeatCapacity CPip= - length*((dh + 2*thickness)^2 - dh^2)*Modelica.Constants.pi/4*cPip*rhoPip "Heat capacity of pipe wall"; + parameter Modelica.Units.SI.HeatCapacity CPip=length*((dh + 2*thickness)^2 - + dh^2)*Modelica.Constants.pi/4*cPip*rhoPip "Heat capacity of pipe wall"; - final parameter Modelica.SIunits.Volume VEqu=CPip/(rho_default*cp_default) + final parameter Modelica.Units.SI.Volume VEqu=CPip/(rho_default*cp_default) "Equivalent medium volume to represent pipe wall thermal inertia"; parameter Medium.ThermodynamicState sta_default=Medium.setState_pTX( @@ -186,7 +186,7 @@ protected p=Medium.p_default, X=Medium.X_default) "Default medium state"; - parameter Modelica.SIunits.SpecificHeatCapacity cp_default= + parameter Modelica.Units.SI.SpecificHeatCapacity cp_default= Medium.specificHeatCapacityCp(state=sta_default) "Heat capacity of medium"; @@ -194,7 +194,7 @@ protected rho_default*Modelica.Constants.pi*(dh/2)^2*cp_default "Thermal capacity per unit length of medium in pipe"; - parameter Modelica.SIunits.Density rho_default=Medium.density_pTX( + parameter Modelica.Units.SI.Density rho_default=Medium.density_pTX( p=Medium.p_default, T=Medium.T_default, X=Medium.X_default) diff --git a/AixLib/Fluid/DistrictHeatingCooling/Pipes/PlugFlowPipeZeta.mo b/AixLib/Fluid/DistrictHeatingCooling/Pipes/PlugFlowPipeZeta.mo index 03140c9aab..534405568f 100644 --- a/AixLib/Fluid/DistrictHeatingCooling/Pipes/PlugFlowPipeZeta.mo +++ b/AixLib/Fluid/DistrictHeatingCooling/Pipes/PlugFlowPipeZeta.mo @@ -11,61 +11,62 @@ model PlugFlowPipeZeta "= true, use m_flow = f(dp) else dp = f(m_flow)" annotation (Dialog(tab="Advanced")); - parameter Modelica.SIunits.Length dh=sqrt(4*m_flow_nominal/rho_default/v_nominal/Modelica.Constants.pi) + parameter Modelica.Units.SI.Length dh=sqrt(4*m_flow_nominal/rho_default/ + v_nominal/Modelica.Constants.pi) "Hydraulic diameter (assuming a round cross section area)" annotation (Dialog(group="Material")); - parameter Modelica.SIunits.Velocity v_nominal = 1.5 + parameter Modelica.Units.SI.Velocity v_nominal=1.5 "Velocity at m_flow_nominal (used to compute default value for hydraulic diameter dh)" - annotation(Dialog(group="Nominal condition")); + annotation (Dialog(group="Nominal condition")); parameter Real ReC=4000 "Reynolds number where transition to turbulent starts"; - parameter Modelica.SIunits.Height roughness=2.5e-5 + parameter Modelica.Units.SI.Height roughness=2.5e-5 "Average height of surface asperities (default: smooth steel pipe)" annotation (Dialog(group="Material")); - parameter Modelica.SIunits.Length length "Pipe length" + parameter Modelica.Units.SI.Length length "Pipe length" annotation (Dialog(group="Material")); - parameter Modelica.SIunits.MassFlowRate m_flow_nominal + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal "Nominal mass flow rate" annotation (Dialog(group="Nominal condition")); - parameter Modelica.SIunits.MassFlowRate m_flow_small = 1E-4*abs( - m_flow_nominal) "Small mass flow rate for regularization of zero flow" + parameter Modelica.Units.SI.MassFlowRate m_flow_small=1E-4*abs(m_flow_nominal) + "Small mass flow rate for regularization of zero flow" annotation (Dialog(tab="Advanced")); - parameter Modelica.SIunits.Length dIns + parameter Modelica.Units.SI.Length dIns "Thickness of pipe insulation, used to compute R" annotation (Dialog(group="Thermal resistance")); - parameter Modelica.SIunits.ThermalConductivity kIns + parameter Modelica.Units.SI.ThermalConductivity kIns "Heat conductivity of pipe insulation, used to compute R" annotation (Dialog(group="Thermal resistance")); - parameter Modelica.SIunits.SpecificHeatCapacity cPip=2300 + parameter Modelica.Units.SI.SpecificHeatCapacity cPip=2300 "Specific heat of pipe wall material. 2300 for PE, 500 for steel" annotation (Dialog(group="Material")); - parameter Modelica.SIunits.Density rhoPip(displayUnit="kg/m3")=930 + parameter Modelica.Units.SI.Density rhoPip(displayUnit="kg/m3") = 930 "Density of pipe wall material. 930 for PE, 8000 for steel" annotation (Dialog(group="Material")); - parameter Modelica.SIunits.Length thickness = 0.0035 - "Pipe wall thickness" + parameter Modelica.Units.SI.Length thickness=0.0035 "Pipe wall thickness" annotation (Dialog(group="Material")); - parameter Modelica.SIunits.Temperature T_start_in(start=Medium.T_default)= + parameter Modelica.Units.SI.Temperature T_start_in(start=Medium.T_default) = Medium.T_default "Initialization temperature at pipe inlet" annotation (Dialog(tab="Initialization")); - parameter Modelica.SIunits.Temperature T_start_out(start=Medium.T_default)= - T_start_in "Initialization temperature at pipe outlet" + parameter Modelica.Units.SI.Temperature T_start_out(start=Medium.T_default) + = T_start_in "Initialization temperature at pipe outlet" annotation (Dialog(tab="Initialization")); parameter Boolean initDelay(start=false) = false "Initialize delay for a constant mass flow rate if true, otherwise start from 0" annotation (Dialog(tab="Initialization")); - parameter Modelica.SIunits.MassFlowRate m_flow_start=0 "Initial value of mass flow rate through pipe" + parameter Modelica.Units.SI.MassFlowRate m_flow_start=0 + "Initial value of mass flow rate through pipe" annotation (Dialog(tab="Initialization", enable=initDelay)); parameter Real R(unit="(m.K)/W")=1/(kIns*2*Modelica.Constants.pi/ @@ -88,7 +89,7 @@ model PlugFlowPipeZeta "= true, use linear relation between m_flow and dp for any flow rate" annotation(Evaluate=true, Dialog(tab="Advanced")); - Modelica.SIunits.Velocity v_med "Velocity of the medium in the pipe"; + Modelica.Units.SI.Velocity v_med "Velocity of the medium in the pipe"; Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a heatPort "Heat transfer to or from surroundings (heat loss from pipe results in a positive heat flow)" @@ -135,10 +136,10 @@ model PlugFlowPipeZeta annotation (Placement(transformation(extent={{60,20},{80,40}}))); protected - parameter Modelica.SIunits.HeatCapacity CPip= - length*((dh + 2*thickness)^2 - dh^2)*Modelica.Constants.pi/4*cPip*rhoPip "Heat capacity of pipe wall"; + parameter Modelica.Units.SI.HeatCapacity CPip=length*((dh + 2*thickness)^2 - + dh^2)*Modelica.Constants.pi/4*cPip*rhoPip "Heat capacity of pipe wall"; - final parameter Modelica.SIunits.Volume VEqu=CPip/(rho_default*cp_default) + final parameter Modelica.Units.SI.Volume VEqu=CPip/(rho_default*cp_default) "Equivalent medium volume to represent pipe wall thermal inertia"; parameter Medium.ThermodynamicState sta_default=Medium.setState_pTX( @@ -146,7 +147,7 @@ protected p=Medium.p_default, X=Medium.X_default) "Default medium state"; - parameter Modelica.SIunits.SpecificHeatCapacity cp_default= + parameter Modelica.Units.SI.SpecificHeatCapacity cp_default= Medium.specificHeatCapacityCp(state=sta_default) "Heat capacity of medium"; @@ -154,7 +155,7 @@ protected rho_default*Modelica.Constants.pi*(dh/2)^2*cp_default "Thermal capacity per unit length of medium in pipe"; - parameter Modelica.SIunits.Density rho_default=Medium.density_pTX( + parameter Modelica.Units.SI.Density rho_default=Medium.density_pTX( p=Medium.p_default, T=Medium.T_default, X=Medium.X_default) diff --git a/AixLib/Fluid/DistrictHeatingCooling/Pipes/StaticPipe.mo b/AixLib/Fluid/DistrictHeatingCooling/Pipes/StaticPipe.mo index 1a6150c98d..09ae7f1ff5 100644 --- a/AixLib/Fluid/DistrictHeatingCooling/Pipes/StaticPipe.mo +++ b/AixLib/Fluid/DistrictHeatingCooling/Pipes/StaticPipe.mo @@ -11,61 +11,62 @@ model StaticPipe "= true, use m_flow = f(dp) else dp = f(m_flow)" annotation (Dialog(tab="Advanced")); - parameter Modelica.SIunits.Length dh=sqrt(4*m_flow_nominal/rho_default/v_nominal/Modelica.Constants.pi) + parameter Modelica.Units.SI.Length dh=sqrt(4*m_flow_nominal/rho_default/ + v_nominal/Modelica.Constants.pi) "Hydraulic diameter (assuming a round cross section area)" annotation (Dialog(group="Material")); - parameter Modelica.SIunits.Velocity v_nominal = 1.5 + parameter Modelica.Units.SI.Velocity v_nominal=1.5 "Velocity at m_flow_nominal (used to compute default value for hydraulic diameter dh)" - annotation(Dialog(group="Nominal condition")); + annotation (Dialog(group="Nominal condition")); parameter Real ReC=4000 "Reynolds number where transition to turbulent starts"; - parameter Modelica.SIunits.Height roughness=2.5e-5 + parameter Modelica.Units.SI.Height roughness=2.5e-5 "Average height of surface asperities (default: smooth steel pipe)" annotation (Dialog(group="Material")); - parameter Modelica.SIunits.Length length "Pipe length" + parameter Modelica.Units.SI.Length length "Pipe length" annotation (Dialog(group="Material")); - parameter Modelica.SIunits.MassFlowRate m_flow_nominal + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal "Nominal mass flow rate" annotation (Dialog(group="Nominal condition")); - parameter Modelica.SIunits.MassFlowRate m_flow_small = 1E-4*abs( - m_flow_nominal) "Small mass flow rate for regularization of zero flow" + parameter Modelica.Units.SI.MassFlowRate m_flow_small=1E-4*abs(m_flow_nominal) + "Small mass flow rate for regularization of zero flow" annotation (Dialog(tab="Advanced")); - parameter Modelica.SIunits.Length dIns + parameter Modelica.Units.SI.Length dIns "Thickness of pipe insulation, used to compute R" annotation (Dialog(group="Thermal resistance")); - parameter Modelica.SIunits.ThermalConductivity kIns + parameter Modelica.Units.SI.ThermalConductivity kIns "Heat conductivity of pipe insulation, used to compute R" annotation (Dialog(group="Thermal resistance")); - parameter Modelica.SIunits.SpecificHeatCapacity cPip=2300 + parameter Modelica.Units.SI.SpecificHeatCapacity cPip=2300 "Specific heat of pipe wall material. 2300 for PE, 500 for steel" annotation (Dialog(group="Material")); - parameter Modelica.SIunits.Density rhoPip(displayUnit="kg/m3")=930 + parameter Modelica.Units.SI.Density rhoPip(displayUnit="kg/m3") = 930 "Density of pipe wall material. 930 for PE, 8000 for steel" annotation (Dialog(group="Material")); - parameter Modelica.SIunits.Length thickness = 0.0035 - "Pipe wall thickness" + parameter Modelica.Units.SI.Length thickness=0.0035 "Pipe wall thickness" annotation (Dialog(group="Material")); - parameter Modelica.SIunits.Temperature T_start_in(start=Medium.T_default)= + parameter Modelica.Units.SI.Temperature T_start_in(start=Medium.T_default) = Medium.T_default "Initialization temperature at pipe inlet" annotation (Dialog(tab="Initialization")); - parameter Modelica.SIunits.Temperature T_start_out(start=Medium.T_default)= - T_start_in "Initialization temperature at pipe outlet" + parameter Modelica.Units.SI.Temperature T_start_out(start=Medium.T_default) + = T_start_in "Initialization temperature at pipe outlet" annotation (Dialog(tab="Initialization")); parameter Boolean initDelay(start=false) = false "Initialize delay for a constant mass flow rate if true, otherwise start from 0" annotation (Dialog(tab="Initialization")); - parameter Modelica.SIunits.MassFlowRate m_flow_start=0 "Initial value of mass flow rate through pipe" + parameter Modelica.Units.SI.MassFlowRate m_flow_start=0 + "Initial value of mass flow rate through pipe" annotation (Dialog(tab="Initialization", enable=initDelay)); parameter Real R(unit="(m.K)/W")=1/(kIns*2*Modelica.Constants.pi/ @@ -88,7 +89,7 @@ model StaticPipe "= true, use linear relation between m_flow and dp for any flow rate" annotation(Evaluate=true, Dialog(tab="Advanced")); - Modelica.SIunits.Velocity v_med "Velocity of the medium in the pipe"; + Modelica.Units.SI.Velocity v_med "Velocity of the medium in the pipe"; Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a heatPort @@ -136,10 +137,10 @@ model StaticPipe annotation (Placement(transformation(extent={{60,20},{80,40}}))); protected - parameter Modelica.SIunits.HeatCapacity CPip= - length*((dh + 2*thickness)^2 - dh^2)*Modelica.Constants.pi/4*cPip*rhoPip "Heat capacity of pipe wall"; + parameter Modelica.Units.SI.HeatCapacity CPip=length*((dh + 2*thickness)^2 - + dh^2)*Modelica.Constants.pi/4*cPip*rhoPip "Heat capacity of pipe wall"; - final parameter Modelica.SIunits.Volume VEqu=CPip/(rho_default*cp_default) + final parameter Modelica.Units.SI.Volume VEqu=CPip/(rho_default*cp_default) "Equivalent medium volume to represent pipe wall thermal inertia"; parameter Medium.ThermodynamicState sta_default=Medium.setState_pTX( @@ -147,7 +148,7 @@ protected p=Medium.p_default, X=Medium.X_default) "Default medium state"; - parameter Modelica.SIunits.SpecificHeatCapacity cp_default= + parameter Modelica.Units.SI.SpecificHeatCapacity cp_default= Medium.specificHeatCapacityCp(state=sta_default) "Heat capacity of medium"; @@ -155,7 +156,7 @@ protected rho_default*Modelica.Constants.pi*(dh/2)^2*cp_default "Thermal capacity per unit length of medium in pipe"; - parameter Modelica.SIunits.Density rho_default=Medium.density_pTX( + parameter Modelica.Units.SI.Density rho_default=Medium.density_pTX( p=Medium.p_default, T=Medium.T_default, X=Medium.X_default) diff --git a/AixLib/Fluid/DistrictHeatingCooling/Supplies/ClosedLoop/DHCSupplyHeaterCoolerStorage.mo b/AixLib/Fluid/DistrictHeatingCooling/Supplies/ClosedLoop/DHCSupplyHeaterCoolerStorage.mo index c1842e4f87..629ee19d54 100644 --- a/AixLib/Fluid/DistrictHeatingCooling/Supplies/ClosedLoop/DHCSupplyHeaterCoolerStorage.mo +++ b/AixLib/Fluid/DistrictHeatingCooling/Supplies/ClosedLoop/DHCSupplyHeaterCoolerStorage.mo @@ -5,13 +5,13 @@ model DHCSupplyHeaterCoolerStorage replaceable package Medium = Modelica.Media.Interfaces.PartialMedium "Medium model for water" annotation (choicesAllMatching = true); - parameter Modelica.SIunits.Pressure dp_nominal(displayUnit="Pa")=30000 - "Nominal pressure drop"; + parameter Modelica.Units.SI.Pressure dp_nominal(displayUnit="Pa") = 30000 + "Nominal pressure drop"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal = m_flow_nominal + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=m_flow_nominal "Nominal mass flow rate"; - parameter Modelica.SIunits.Volume V_Tank "Volume of thermal storage tank"; + parameter Modelica.Units.SI.Volume V_Tank "Volume of thermal storage tank"; Modelica.Fluid.Interfaces.FluidPort_a port_a(redeclare package Medium = Medium) diff --git a/AixLib/Fluid/DistrictHeatingCooling/Supplies/Examples/DHCSupplyHeaterCoolerStorage.mo b/AixLib/Fluid/DistrictHeatingCooling/Supplies/Examples/DHCSupplyHeaterCoolerStorage.mo index 908c0cb1b9..fd1ac84ab7 100644 --- a/AixLib/Fluid/DistrictHeatingCooling/Supplies/Examples/DHCSupplyHeaterCoolerStorage.mo +++ b/AixLib/Fluid/DistrictHeatingCooling/Supplies/Examples/DHCSupplyHeaterCoolerStorage.mo @@ -8,7 +8,8 @@ model DHCSupplyHeaterCoolerStorage V_Tank=500) annotation (Placement(transformation(extent={{-92,4},{-72,24}}))); Demands.ClosedLoop.DHCSubstationHeatPumpDirectCooling substation1( - redeclare package Medium = + redeclare + package Medium = Medium, m_flow_nominal=5, heaDem_max=10000, @@ -20,7 +21,8 @@ model DHCSupplyHeaterCoolerStorage rotation=-90, origin={-16,-14}))); Demands.ClosedLoop.DHCSubstationHeatPumpDirectCooling substation2( - redeclare package Medium = + redeclare + package Medium = Medium, m_flow_nominal=5, heaDem_max=10000, @@ -37,24 +39,21 @@ model DHCSupplyHeaterCoolerStorage m_flow_nominal=5, dIns=0.001, kIns=0.04, - redeclare package Medium = Medium, - nPorts=2) annotation (Placement(transformation(extent={{-60,4},{-40,24}}))); + redeclare package Medium = Medium) annotation (Placement(transformation(extent={{-60,4},{-40,24}}))); AixLib.Fluid.FixedResistances.PlugFlowPipe plugFlowPipe1( dh=0.2, length=5, m_flow_nominal=5, dIns=0.001, kIns=0.04, - redeclare package Medium = Medium, - nPorts=1) annotation (Placement(transformation(extent={{-2,6},{18,26}}))); + redeclare package Medium = Medium) annotation (Placement(transformation(extent={{-2,6},{18,26}}))); AixLib.Fluid.FixedResistances.PlugFlowPipe plugFlowPipe2( dh=0.2, length=5, m_flow_nominal=5, dIns=0.001, kIns=0.04, - redeclare package Medium = Medium, - nPorts=1) + redeclare package Medium = Medium) annotation (Placement(transformation(extent={{20,-54},{0,-34}}))); AixLib.Fluid.FixedResistances.PlugFlowPipe plugFlowPipe3( dh=0.2, @@ -62,8 +61,7 @@ model DHCSupplyHeaterCoolerStorage m_flow_nominal=5, dIns=0.001, kIns=0.04, - redeclare package Medium = Medium, - nPorts=1) + redeclare package Medium = Medium) annotation (Placement(transformation(extent={{-40,-54},{-60,-34}}))); Modelica.Blocks.Sources.Constant T_HotLineSet(k=16 + 273.15) annotation (Placement(transformation(extent={{-126,58},{-106,78}}))); @@ -89,20 +87,20 @@ equation Line(points={{-105,38},{-104,38},{-104,22},{-92.7273,22}}, color={0,0,127})); connect(T_HotLineSet.y, DHCSupplyHeaterCoolerStorage.T_cooSet) annotation ( Line(points={{-105,68},{-100,68},{-100,19},{-92.7273,19}}, color={0,0,127})); - connect(plugFlowPipe1.ports_b[1], substation2.port_a) annotation (Line(points={{18,16}, + connect(plugFlowPipe1.port_b, substation2.port_a) annotation (Line(points={{18,16}, {40,16},{40,-6}}, color={0,127,255})); connect(plugFlowPipe2.port_a, substation2.port_b) annotation (Line(points={{20,-44}, {40,-44},{40,-26}}, color={0,127,255})); - connect(plugFlowPipe.ports_b[1], plugFlowPipe1.port_a) annotation (Line( - points={{-40,12},{-22,12},{-22,16},{-2,16}}, color={0,127,255})); - connect(plugFlowPipe.ports_b[2], substation1.port_a) annotation (Line(points={{-40,16}, - {-16,16},{-16,-4}}, color={0, + connect(plugFlowPipe.port_b, plugFlowPipe1.port_a) annotation (Line( + points={{-40,14},{-22,14},{-22,16},{-2,16}}, color={0,127,255})); + connect(plugFlowPipe.port_b, substation1.port_a) annotation (Line(points={{-40,14}, + {-16,14},{-16,-4}}, color={0, 127,255})); - connect(plugFlowPipe3.port_a, plugFlowPipe2.ports_b[1]) + connect(plugFlowPipe3.port_a, plugFlowPipe2.port_b) annotation (Line(points={{-40,-44},{0,-44}}, color={0,127,255})); connect(substation1.port_b, plugFlowPipe3.port_a) annotation (Line(points={{-16,-24}, {-16,-44},{-40,-44}}, color={0,127,255})); - connect(DHCSupplyHeaterCoolerStorage.port_a, plugFlowPipe3.ports_b[1]) + connect(DHCSupplyHeaterCoolerStorage.port_a, plugFlowPipe3.port_b) annotation (Line(points={{-92,14},{-128,14},{-128,-44},{-60,-44}}, color={0, 127,255})); annotation ( diff --git a/AixLib/Fluid/DistrictHeatingCooling/Supplies/OpenLoop/SourceIdeal.mo b/AixLib/Fluid/DistrictHeatingCooling/Supplies/OpenLoop/SourceIdeal.mo index 04243f8f4b..b54e39e4c6 100644 --- a/AixLib/Fluid/DistrictHeatingCooling/Supplies/OpenLoop/SourceIdeal.mo +++ b/AixLib/Fluid/DistrictHeatingCooling/Supplies/OpenLoop/SourceIdeal.mo @@ -4,11 +4,9 @@ model SourceIdeal extends BaseClasses.Supplies.OpenLoop.PartialSupply(senT_return( allowFlowReversal=true)); - parameter Modelica.SIunits.AbsolutePressure pReturn - "Fixed return pressure"; + parameter Modelica.Units.SI.AbsolutePressure pReturn "Fixed return pressure"; - parameter Modelica.SIunits.Temperature TReturn - "Fixed return temperature"; + parameter Modelica.Units.SI.Temperature TReturn "Fixed return temperature"; AixLib.Fluid.Sources.Boundary_pT source( redeclare package Medium = Medium, diff --git a/AixLib/Fluid/Examples/FlowSystem/Basic.mo b/AixLib/Fluid/Examples/FlowSystem/Basic.mo index bcd69c1fbd..e007c4665b 100644 --- a/AixLib/Fluid/Examples/FlowSystem/Basic.mo +++ b/AixLib/Fluid/Examples/FlowSystem/Basic.mo @@ -109,8 +109,7 @@ model Basic "Example implementation of flow system" Modelica.Blocks.Sources.Sine sine( amplitude=0.5, offset=0.5, - freqHz=0.001) - "Valve control signal" + f=0.001) "Valve control signal" annotation (Placement(transformation(extent={{-140,20},{-120,40}}))); AixLib.Fluid.Actuators.Valves.ThreeWayLinear valSouth( redeclare package Medium = Medium, @@ -431,29 +430,29 @@ equation fillPattern=FillPattern.Solid), Text( extent={{-110,86},{-94,74}}, - lineColor={28,108,200}, + textColor={28,108,200}, textString="X4"), Text( extent={{-24,86},{-8,74}}, - lineColor={28,108,200}, + textColor={28,108,200}, textString="X8"), Text( extent={{8,86},{24,74}}, - lineColor={28,108,200}, + textColor={28,108,200}, textString="X4"), Text( extent={{96,86},{112,74}}, - lineColor={28,108,200}, + textColor={28,108,200}, textString="X8"), Text( extent={{-66,122},{-36,130}}, - lineColor={28,108,200}, + textColor={28,108,200}, fillColor={215,215,215}, fillPattern=FillPattern.Solid, textString="South"), Text( extent={{34,122},{64,130}}, - lineColor={28,108,200}, + textColor={28,108,200}, fillColor={215,215,215}, fillPattern=FillPattern.Solid, textString="North"), @@ -469,70 +468,70 @@ equation fillPattern=FillPattern.Solid), Text( extent={{-64,-156},{-34,-148}}, - lineColor={28,108,200}, + textColor={28,108,200}, fillColor={215,215,215}, fillPattern=FillPattern.Solid, textString="Heat"), Text( extent={{36,-156},{66,-148}}, - lineColor={28,108,200}, + textColor={28,108,200}, fillColor={215,215,215}, fillPattern=FillPattern.Solid, textString="Cold")}), experiment( Tolerance=1e-6, StopTime=1000), Documentation(info=" -

                  -Example model demonstrating the use of the AixLib components in a larger system. -This model is extended in - -AixLib.Fluid.Examples.FlowSystem.Simplified1, - -AixLib.Fluid.Examples.FlowSystem.Simplified2, - -AixLib.Fluid.Examples.FlowSystem.Simplified3. -In these examples, the flow network is simplified in three steps, which reduces the size of algebraic loops. -

                  -

                  -The system model is for a hydronic system with a hot and cold water production device, -each having its own circulation pump. -The warm and cold supply water temperatures are selected by switching the bottom two-way valves. -The building consists of a west and east wing. -Each wing has multiple zones that are heated or cooled using the hydronic system. -Each wing has a north and south section with a different supply temperature, -which is controlled using two main three way valves. -In total there are therefore four supply pipes, -which are each connected to four or eight emission devices in the zones. -The flow through the emission devices is controlled using two way valves. -The emission device itself also generates a pressure drop, -represented by components tabsX. -Note that the emission devices are in the real building -cooling and heating concrete slabs, but this simplified example -only models their flow resistance. -The control model consists of dummy inputs. -

                  -", revisions=" -
                    -
                  • -January 11, 2019 by Michael Wetter:
                    -Removed each statements.
                    -This is for -#1079. -
                  • -
                  • -May 8, 2017, by Michael Wetter:
                    -Updated heater model.
                    -This is for - -AixLib, #763. -
                  • -
                  • -October 7, 2016, by Filip Jorissen:
                    -First implementation. -
                  • -
                  -"), - __Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/Examples/FlowSystem/Basic.mos" - "Simulate and plot")); +

                  + Example model demonstrating the use of the AixLib components in a larger system. + This model is extended in + + AixLib.Fluid.Examples.FlowSystem.Simplified1, + + AixLib.Fluid.Examples.FlowSystem.Simplified2, + + AixLib.Fluid.Examples.FlowSystem.Simplified3. + In these examples, the flow network is simplified in three steps, which reduces the size of algebraic loops. +

                  +

                  + The system model is for a hydronic system with a hot and cold water production device, + each having its own circulation pump. + The warm and cold supply water temperatures are selected by switching the bottom two-way valves. + The building consists of a west and east wing. + Each wing has multiple zones that are heated or cooled using the hydronic system. + Each wing has a north and south section with a different supply temperature, + which is controlled using two main three way valves. + In total there are therefore four supply pipes, + which are each connected to four or eight emission devices in the zones. + The flow through the emission devices is controlled using two way valves. + The emission device itself also generates a pressure drop, + represented by components tabsX. + Note that the emission devices are in the real building + cooling and heating concrete slabs, but this simplified example + only models their flow resistance. + The control model consists of dummy inputs. +

                  + ",revisions=" +
                    +
                  • + January 11, 2019 by Michael Wetter:
                    + Removed each statements.
                    + This is for + #1079. +
                  • +
                  • + May 8, 2017, by Michael Wetter:
                    + Updated heater model.
                    + This is for + + AixLib, #763. +
                  • +
                  • + October 7, 2016, by Filip Jorissen:
                    + First implementation. +
                  • +
                  + "), + __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Examples/FlowSystem/Basic.mos" + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end Basic; diff --git a/AixLib/Fluid/Examples/FlowSystem/Simplified1.mo b/AixLib/Fluid/Examples/FlowSystem/Simplified1.mo index 688637768f..3903784066 100644 --- a/AixLib/Fluid/Examples/FlowSystem/Simplified1.mo +++ b/AixLib/Fluid/Examples/FlowSystem/Simplified1.mo @@ -10,25 +10,25 @@ model Simplified1 "Aggregated pressure drops" valNorth1(each dpFixed_nominal=50000), valNorth2(each dpFixed_nominal=50000)); annotation (Documentation(info=" -

                  -The model is simplified: series pressure drop components are aggregated into the valve model. -

                  -", revisions=" -
                    -
                  • -September 22, 2017, by Filip Jorissen:
                    -Revised simulation duration since otherwise -the model only operates in the laminar region. -See #825. -
                  • -
                  • -October 7, 2016, by Filip Jorissen:
                    -First implementation. -
                  • -
                  -"), +

                  + The model is simplified: series pressure drop components are aggregated into the valve model. +

                  + ",revisions=" +
                    +
                  • + September 22, 2017, by Filip Jorissen:
                    + Revised simulation duration since otherwise + the model only operates in the laminar region. + See #825. +
                  • +
                  • + October 7, 2016, by Filip Jorissen:
                    + First implementation. +
                  • +
                  + "), experiment(StopTime=1000, Tolerance=1e-06), -__Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/Examples/FlowSystem/Simplified1.mos" - "Simulate and plot")); +__Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Examples/FlowSystem/Simplified1.mos" + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end Simplified1; diff --git a/AixLib/Fluid/Examples/FlowSystem/Simplified2.mo b/AixLib/Fluid/Examples/FlowSystem/Simplified2.mo index d65d6c0581..3b7d6b915f 100644 --- a/AixLib/Fluid/Examples/FlowSystem/Simplified2.mo +++ b/AixLib/Fluid/Examples/FlowSystem/Simplified2.mo @@ -6,23 +6,23 @@ model Simplified2 "Using from_dp" valNorth1(each from_dp=true), valNorth2(each from_dp=true)); annotation (Documentation(info=" -

                  -The model is simplified: using from_dp to find more efficient tearing variables. -

                  -", revisions=" -
                    -
                  • -December 14, 2016, by Michael Wetter:
                    -Added missing each keyword. -
                  • -
                  • -October 7, 2016, by Filip Jorissen:
                    -First implementation. -
                  • -
                  -"), +

                  + The model is simplified: using from_dp to find more efficient tearing variables. +

                  + ",revisions=" +
                    +
                  • + December 14, 2016, by Michael Wetter:
                    + Added missing each keyword. +
                  • +
                  • + October 7, 2016, by Filip Jorissen:
                    + First implementation. +
                  • +
                  + "), experiment(Tolerance=1e-6, StopTime=1000), -__Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/Examples/FlowSystem/Simplified2.mos" - "Simulate and plot")); +__Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Examples/FlowSystem/Simplified2.mos" + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end Simplified2; diff --git a/AixLib/Fluid/Examples/FlowSystem/Simplified3.mo b/AixLib/Fluid/Examples/FlowSystem/Simplified3.mo index 12b69a2d35..4ccb025684 100644 --- a/AixLib/Fluid/Examples/FlowSystem/Simplified3.mo +++ b/AixLib/Fluid/Examples/FlowSystem/Simplified3.mo @@ -6,20 +6,20 @@ model Simplified3 "Neglecting pressure drop in splitters" spl3(dp_nominal={0,0,0}), spl2(dp_nominal={1000,0,0})); annotation (Documentation(info=" -

                  -The model is further simplified by removing some small pressure drops in the bypass. -This allows the solver to identify sub-circuits. -

                  -", revisions=" -
                    -
                  • -October 7, 2016, by Filip Jorissen:
                    -First implementation. -
                  • -
                  -"), +

                  + The model is further simplified by removing some small pressure drops in the bypass. + This allows the solver to identify sub-circuits. +

                  + ",revisions=" +
                    +
                  • + October 7, 2016, by Filip Jorissen:
                    + First implementation. +
                  • +
                  + "), experiment(Tolerance=1e-6, StopTime=1000), -__Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/Examples/FlowSystem/Simplified3.mos" - "Simulate and plot")); +__Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Examples/FlowSystem/Simplified3.mos" + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end Simplified3; diff --git a/AixLib/Fluid/Examples/FlowSystem/Simplified4.mo b/AixLib/Fluid/Examples/FlowSystem/Simplified4.mo index 16c9d5b3b1..3c688f6955 100644 --- a/AixLib/Fluid/Examples/FlowSystem/Simplified4.mo +++ b/AixLib/Fluid/Examples/FlowSystem/Simplified4.mo @@ -5,11 +5,9 @@ model Simplified4 "Removed valve dynamics" valSouth(use_inputFilter=false), pmpNorth( energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyState, - massDynamics=Modelica.Fluid.Types.Dynamics.SteadyState, use_inputFilter=false), pmpSouth( energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyState, - massDynamics=Modelica.Fluid.Types.Dynamics.SteadyState, use_inputFilter=false), valSouth1(each use_inputFilter=false), valSouth2(each use_inputFilter=false), @@ -20,29 +18,29 @@ model Simplified4 "Removed valve dynamics" valCoo(use_inputFilter=false), valHea(use_inputFilter=false)); annotation (Documentation(info=" -

                  -The model is further simplified by removing the valve and pump control dynamics. -

                  -", revisions=" -
                    -
                  • -January 12, 2019 by Michael Wetter:
                    -Removed each statements.
                    -This is for -#1079. -
                  • -
                  • -December 14, 2016, by Michael Wetter:
                    -Added missing each keywords. -
                  • -
                  • -October 7, 2016, by Filip Jorissen:
                    -First implementation. -
                  • -
                  -"), +

                  + The model is further simplified by removing the valve and pump control dynamics. +

                  + ",revisions=" +
                    +
                  • + January 12, 2019 by Michael Wetter:
                    + Removed each statements.
                    + This is for + #1079. +
                  • +
                  • + December 14, 2016, by Michael Wetter:
                    + Added missing each keywords. +
                  • +
                  • + October 7, 2016, by Filip Jorissen:
                    + First implementation. +
                  • +
                  + "), experiment(Tolerance=1e-6, StopTime=1000), -__Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/Examples/FlowSystem/Simplified4.mos" - "Simulate and plot")); +__Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Examples/FlowSystem/Simplified4.mos" + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end Simplified4; diff --git a/AixLib/Fluid/Examples/FlowSystem/Simplified5.mo b/AixLib/Fluid/Examples/FlowSystem/Simplified5.mo index 82ee818918..5e21a69f19 100644 --- a/AixLib/Fluid/Examples/FlowSystem/Simplified5.mo +++ b/AixLib/Fluid/Examples/FlowSystem/Simplified5.mo @@ -9,26 +9,26 @@ model Simplified5 "Removed most mass/energy dynamics" pumpHea(energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyState), heater(energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial)); annotation (Documentation(info=" -

                  -The model is further simplified by setting the mass dynamics and energy dynamics -of most models to be steady state. -Note that by default, the mass dynamics is set to the same configuration -as the energy dynamics. -

                  -", revisions=" -
                    -
                  • -December 14, 2016, by Michael Wetter:
                    -Removed superfluous assignment of mass dynamics. -
                  • -
                  • -October 7, 2016, by Filip Jorissen:
                    -First implementation. -
                  • -
                  -"), +

                  + The model is further simplified by setting the mass dynamics and energy dynamics + of most models to be steady state. + Note that by default, the mass dynamics is set to the same configuration + as the energy dynamics. +

                  + ",revisions=" +
                    +
                  • + December 14, 2016, by Michael Wetter:
                    + Removed superfluous assignment of mass dynamics. +
                  • +
                  • + October 7, 2016, by Filip Jorissen:
                    + First implementation. +
                  • +
                  + "), experiment(Tolerance=1e-6, StopTime=1000), -__Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/Examples/FlowSystem/Simplified5.mos" - "Simulate and plot")); +__Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Examples/FlowSystem/Simplified5.mos" + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end Simplified5; diff --git a/AixLib/Fluid/Examples/FlowSystem/Simplified6.mo b/AixLib/Fluid/Examples/FlowSystem/Simplified6.mo index 7566545026..ce19bb9c44 100644 --- a/AixLib/Fluid/Examples/FlowSystem/Simplified6.mo +++ b/AixLib/Fluid/Examples/FlowSystem/Simplified6.mo @@ -21,23 +21,23 @@ model Simplified6 "Set allowFlowReversal=false" valCoo(allowFlowReversal=false), valHea(allowFlowReversal=false)); annotation (Documentation(info=" -

                  -The model is further simplified by setting allowFlowReversal=false. -

                  -", revisions=" -
                    -
                  • -December 14, 2016, by Michael Wetter:
                    -Added missing each keywords. -
                  • -
                  • -October 7, 2016, by Filip Jorissen:
                    -First implementation. -
                  • -
                  -"), +

                  + The model is further simplified by setting allowFlowReversal=false. +

                  + ",revisions=" +
                    +
                  • + December 14, 2016, by Michael Wetter:
                    + Added missing each keywords. +
                  • +
                  • + October 7, 2016, by Filip Jorissen:
                    + First implementation. +
                  • +
                  + "), experiment(Tolerance=1e-6, StopTime=1000), -__Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/Examples/FlowSystem/Simplified6.mos" - "Simulate and plot")); +__Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Examples/FlowSystem/Simplified6.mos" + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end Simplified6; diff --git a/AixLib/Fluid/Examples/GeothermalHeatPump/BaseClasses/GeothermalHeatPumpBase.mo b/AixLib/Fluid/Examples/GeothermalHeatPump/BaseClasses/GeothermalHeatPumpBase.mo index 46fe7a4022..f104829a76 100644 --- a/AixLib/Fluid/Examples/GeothermalHeatPump/BaseClasses/GeothermalHeatPumpBase.mo +++ b/AixLib/Fluid/Examples/GeothermalHeatPump/BaseClasses/GeothermalHeatPumpBase.mo @@ -5,10 +5,10 @@ partial model GeothermalHeatPumpBase replaceable package Medium = AixLib.Media.Water "Medium model used for hydronic components"; - parameter Modelica.SIunits.Temperature T_start_cold = 300 + parameter Modelica.Units.SI.Temperature T_start_cold=300 "Initial temperature of cold components"; - parameter Modelica.SIunits.Temperature T_start_hot=300 + parameter Modelica.Units.SI.Temperature T_start_hot=300 "Initial temperature of warm components"; replaceable AixLib.Fluid.Interfaces.PartialTwoPortTransport PeakLoadDevice( @@ -16,22 +16,31 @@ partial model GeothermalHeatPumpBase AixLib.Fluid.Interfaces.PartialTwoPort annotation (Placement(transformation(extent={{108,-56},{120,-44}}))); - Storage.Storage coldStorage( + Storage.BufferStorage + coldStorage( redeclare package Medium = Medium, + redeclare package MediumHC1 = Medium, + redeclare package MediumHC2 = Medium, + m1_flow_nominal=m_flow_nominal_layer, + m2_flow_nominal=m_flow_nominal_layer, + mHC1_flow_nominal=m_flow_nominal_HE, + useHeatingCoil2=false, + useHeatingRod=false, + redeclare DataBase.Storage.Generic_New_2000l data( + hTank=1.5, + hUpperPortDemand=1.45, + hUpperPortSupply=1.45, + hHC1Up=1.45, + dTank=1, + sIns=0.2, + lambdaIns=0.075, + hTS2=1.45), n=5, - lambda_ins=0.075, - s_ins=0.2, hConIn=100, hConOut=10, - k_HE=300, - h=1.5, - V_HE=0.02, - A_HE=7, - d=1, - m_flow_nominal_layer=m_flow_nominal_layer, - m_flow_nominal_HE=m_flow_nominal_HE, - T_start=T_start_cold) - "Storage tank for buffering cold demand" annotation (Placement(transformation(extent={{52,-14},{24,20}}))); + hConHC1=500) + "Storage tank for buffering cold demand" annotation (Placement(transformation(extent={{24,-14}, + {52,20}}))); FixedResistances.PressureDrop resistanceColdStorage( redeclare package Medium = Medium, m_flow_nominal=0.5, @@ -77,22 +86,30 @@ partial model GeothermalHeatPumpBase extent={{-6,-7},{6,7}}, rotation=90, origin={-60,1}))); - Storage.Storage heatStorage( + Storage.BufferStorage + heatStorage( redeclare package Medium = Medium, + redeclare package MediumHC1 = Medium, + redeclare package MediumHC2 = Medium, + m1_flow_nominal=m_flow_nominal_layer, + m2_flow_nominal=m_flow_nominal_layer, + mHC1_flow_nominal=m_flow_nominal_HE, + useHeatingCoil2=false, + useHeatingRod=false, + redeclare DataBase.Storage.Generic_New_2000l data( + hTank=1.5, + hUpperPortDemand=1.45, + hUpperPortSupply=1.45, + hHC1Up=1.45, + dTank=1, + sIns=0.2, + lambdaIns=0.075, + hTS2=1.45), n=5, - lambda_ins=0.075, - s_ins=0.2, hConIn=100, hConOut=10, - k_HE=300, - A_HE=3, - h=1, - V_HE=0.01, - d=1, - m_flow_nominal_layer=m_flow_nominal_layer, - m_flow_nominal_HE=m_flow_nominal_HE, - T_start=T_start_hot) "Storage tank for buffering heat demand" - annotation (Placement(transformation(extent={{52,-96},{24,-62}}))); + hConHC1=500) "Storage tank for buffering heat demand" + annotation (Placement(transformation(extent={{24,-96},{52,-62}}))); FixedResistances.PressureDrop resistanceHeatStorage( redeclare package Medium = Medium, m_flow_nominal=0.5, @@ -200,9 +217,9 @@ partial model GeothermalHeatPumpBase extent={{-14,17},{14,-17}}, rotation=90, origin={-25,5.99998}))); - parameter Modelica.SIunits.MassFlowRate m_flow_nominal_layer=0.5 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal_layer=0.5 "Nominal mass flow rate in layers of storages"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal_HE=0.5 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal_HE=0.5 "Nominal mass flow rate of heat exchanger layers of storages"; equation @@ -227,25 +244,12 @@ equation color={0,127,255}, smooth=Smooth.None)); - connect(coldStorage.port_a_consumer, pumpColdConsumer.port_a) annotation ( - Line(points={{38,-14},{38,-14},{38,-20},{58,-20}}, color={0,127,255})); connect(pumpColdConsumer.port_b, resistanceColdConsumerFlow.port_a) annotation (Line(points={{72,-20},{80,-20}}, color={0,127,255})); connect(pumpHeatConsumer.port_b, resistanceHeatConsumerFlow.port_a) annotation (Line(points={{72,-50},{80,-50}}, color={0,127,255})); - connect(heatStorage.port_b_consumer, pumpHeatConsumer.port_a) annotation ( - Line(points={{38,-62},{38,-62},{38,-50},{58,-50}}, color={0,127,255})); - connect(resistanceColdConsumerReturn.port_b, coldStorage.port_b_consumer) - annotation (Line(points={{80,32},{38,32},{38,20}}, color={0,127,255})); - connect(resistanceHeatConsumerReturn.port_b, heatStorage.port_a_consumer) - annotation (Line(points={{80,-106},{80,-106},{38,-106},{38,-96}}, color={0,127, - 255})); connect(pumpEvaporator.port_b, resistanceColdStorage.port_a) annotation (Line( points={{-8.88178e-016,36},{-8.88178e-016,38},{-28,38}}, color={0,127,255})); - connect(coldStorage.port_a_heatGenerator, pumpEvaporator.port_a) annotation ( - Line(points={{26.24,17.96},{20,17.96},{20,36},{14,36}}, color={0,127,255})); - connect(heatStorage.port_b_heatGenerator, pumpCondenser.port_a) annotation ( - Line(points={{26.24,-92.6},{16,-92.6},{16,-98},{6,-98}}, color={0,127,255})); connect(pumpCondenser.port_b, resistanceHeatStorage.port_a) annotation (Line( points={{-8,-98},{-18,-98},{-18,-84}}, color={0,127,255})); connect(pumpGeothermalSource.port_b, resistanceGeothermalSource.port_a) @@ -254,8 +258,6 @@ equation annotation (Line(points={{-96,-54},{-146,-54}}, color={0,127,255})); connect(resistanceHeatConsumerFlow.port_b, PeakLoadDevice.port_a) annotation ( Line(points={{94,-50},{102,-50},{108,-50}}, color={0,127,255})); - connect(heatPump.port_b1, heatStorage.port_a_heatGenerator) annotation (Line( - points={{-16.5,20},{6,20},{6,-64.04},{26.24,-64.04}}, color={0,127,255})); connect(heatPump.port_b1, geothField_sink1.ports[1]) annotation (Line(points={{-16.5, 20},{-16,20},{-16,28},{-146,28},{-146,27.2}}, color={0,127,255})); connect(valveHeatStorage.port_b, heatPump.port_a1) annotation (Line(points={{-18, @@ -263,8 +265,6 @@ equation connect(heatPump.port_b2, geothField_sink1.ports[2]) annotation (Line(points={ {-33.5,-8.00001},{-88,-8.00001},{-88,24.8},{-146,24.8}}, color={0,127, 255})); - connect(coldStorage.port_b_heatGenerator, heatPump.port_b2) annotation (Line( - points={{26.24,-10.6},{-33.5,-10.6},{-33.5,-8.00001}}, color={0,127,255})); connect(heatPump.port_a2, valveHeatSource.port_b) annotation (Line(points={{-33.5, 20},{-44,20},{-44,7},{-60,7}}, color={0,127,255})); connect(heatPump.port_a2, valveColdStorage.port_b) annotation (Line(points={{-33.5, @@ -279,6 +279,24 @@ equation index=-1, extent={{-3,-6},{-3,-6}}, horizontalAlignment=TextAlignment.Right)); + connect(coldStorage.fluidportBottom1, pumpColdConsumer.port_a) annotation ( + Line(points={{33.275,-14.34},{33.275,-20},{58,-20}}, color={0,127,255})); + connect(coldStorage.fluidportTop1, resistanceColdConsumerReturn.port_b) + annotation (Line(points={{33.1,20.17},{33.1,32},{80,32}}, color={0,127,255})); + connect(heatPump.port_b2, coldStorage.portHC1Out) annotation (Line(points={{ + -33.5,-8.00002},{-33.5,-22},{16,-22},{16,7.42},{23.825,7.42}}, color= + {0,127,255})); + connect(pumpEvaporator.port_a, coldStorage.portHC1In) annotation (Line(points= + {{14,36},{18,36},{18,12.69},{23.65,12.69}}, color={0,127,255})); + connect(pumpCondenser.port_a, heatStorage.portHC1Out) annotation (Line(points= + {{6,-98},{16,-98},{16,-74.58},{23.825,-74.58}}, color={0,127,255})); + connect(heatPump.port_b1, heatStorage.portHC1In) annotation (Line(points={{ + -16.5,20},{8,20},{8,-69.31},{23.65,-69.31}}, color={0,127,255})); + connect(heatStorage.fluidportTop2, pumpHeatConsumer.port_a) annotation (Line( + points={{42.375,-61.83},{42.375,-50},{58,-50}}, color={0,127,255})); + connect(resistanceHeatConsumerReturn.port_b, heatStorage.fluidportBottom2) + annotation (Line(points={{80,-106},{42.025,-106},{42.025,-96.17}}, color={0, + 127,255})); annotation (Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-160, -120},{160,80}})), Icon(coordinateSystem( preserveAspectRatio=false, extent={{-160,-120},{160,80}})), diff --git a/AixLib/Fluid/Examples/GeothermalHeatPump/Components/BaseClasses/BoilerBase.mo b/AixLib/Fluid/Examples/GeothermalHeatPump/Components/BaseClasses/BoilerBase.mo index 137f2b272f..789c255d40 100644 --- a/AixLib/Fluid/Examples/GeothermalHeatPump/Components/BaseClasses/BoilerBase.mo +++ b/AixLib/Fluid/Examples/GeothermalHeatPump/Components/BaseClasses/BoilerBase.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Examples.GeothermalHeatPump.Components.BaseClasses; +within AixLib.Fluid.Examples.GeothermalHeatPump.Components.BaseClasses; partial model BoilerBase "Base class containing the simple boiler model as peak load device" extends Interfaces.PartialTwoPort; diff --git a/AixLib/Fluid/Examples/GeothermalHeatPump/Control/PumpControlBus.mo b/AixLib/Fluid/Examples/GeothermalHeatPump/Control/PumpControlBus.mo index 142c27a316..f83ebf7e40 100644 --- a/AixLib/Fluid/Examples/GeothermalHeatPump/Control/PumpControlBus.mo +++ b/AixLib/Fluid/Examples/GeothermalHeatPump/Control/PumpControlBus.mo @@ -3,15 +3,15 @@ expandable connector PumpControlBus "Bus for all the pump set points in the geothermal heat pump" extends Modelica.Icons.SignalBus; - Modelica.SIunits.Pressure p_pumpGeothermalSource + Modelica.Units.SI.Pressure p_pumpGeothermalSource "Pressure set point of pump moving fluid from geothermal source into system"; - Modelica.SIunits.Pressure p_pumpCondenser + Modelica.Units.SI.Pressure p_pumpCondenser "Pressure set point of pump moving fluid from storage tank to condenser of heat pump"; - Modelica.SIunits.Pressure p_pumpEvaporator + Modelica.Units.SI.Pressure p_pumpEvaporator "Pressure set point of pump moving fluid from storage tank to evaporator of heat pump"; - Modelica.SIunits.Pressure p_pumpColdConsumer + Modelica.Units.SI.Pressure p_pumpColdConsumer "Pressure set point of pump moving fluid from storage tank to cold consumers"; - Modelica.SIunits.Pressure p_pumpHeatConsumer + Modelica.Units.SI.Pressure p_pumpHeatConsumer "Pressure set point of pump moving fluid from storage tank to heat consumers"; annotation ( diff --git a/AixLib/Fluid/Examples/GeothermalHeatPump/Control/geothermalFieldController.mo b/AixLib/Fluid/Examples/GeothermalHeatPump/Control/geothermalFieldController.mo index b86be8c8c2..f0a82a8f5a 100644 --- a/AixLib/Fluid/Examples/GeothermalHeatPump/Control/geothermalFieldController.mo +++ b/AixLib/Fluid/Examples/GeothermalHeatPump/Control/geothermalFieldController.mo @@ -1,14 +1,14 @@ -within AixLib.Fluid.Examples.GeothermalHeatPump.Control; +within AixLib.Fluid.Examples.GeothermalHeatPump.Control; model geothermalFieldController "Controls the heat exchange with a heat or cold source by setting two valves" - parameter Modelica.SIunits.Temperature temperature_low=273.15 + 40 + parameter Modelica.Units.SI.Temperature temperature_low=273.15 + 40 "Lower temperature threshold for hysteresis"; - parameter Modelica.SIunits.Temperature temperature_high=273.15 + 45 + parameter Modelica.Units.SI.Temperature temperature_high=273.15 + 45 "Upper temperature threshold for hysteresis"; parameter Boolean warmSide=true "true = hysteresis with negation = for warm side"; - parameter Modelica.SIunits.Time delayTime=10 + parameter Modelica.Units.SI.Time delayTime=10 "Time delay between opening of valve 1 and 2"; Modelica.Blocks.Logical.Switch switch diff --git a/AixLib/Fluid/Examples/GeothermalHeatPump/GeothermalHeatPump.mo b/AixLib/Fluid/Examples/GeothermalHeatPump/GeothermalHeatPump.mo index 48c7a36bd0..48be7fd6ae 100644 --- a/AixLib/Fluid/Examples/GeothermalHeatPump/GeothermalHeatPump.mo +++ b/AixLib/Fluid/Examples/GeothermalHeatPump/GeothermalHeatPump.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Examples.GeothermalHeatPump; +within AixLib.Fluid.Examples.GeothermalHeatPump; model GeothermalHeatPump "Example of a geothermal heat pump system" extends Modelica.Icons.Example; @@ -67,12 +67,12 @@ model GeothermalHeatPump "Example of a geothermal heat pump system" origin={154,-106}))); Sources.Boundary_pT coldConsumerReturn(redeclare package Medium = Medium, nPorts=1, - T=290.15) "Source representing cold consumer" + T=287.15) "Source representing cold consumer" annotation (Placement(transformation( extent={{-6,-6},{6,6}}, rotation=180, origin={154,32}))); - Modelica.Blocks.Sources.Constant pressureDifference(k=20000) + Modelica.Blocks.Sources.Constant pressureDifference(k=60000) "Pressure difference used for all pumps" annotation ( Placement(transformation( extent={{-6,-6},{6,6}}, @@ -81,14 +81,15 @@ model GeothermalHeatPump "Example of a geothermal heat pump system" Controls.HeatPump.HPControllerOnOff hPControllerOnOff(bandwidth=5) "Controls the temperature in the heat storage by switching the heat pump on or off" annotation (Placement(transformation(extent={{-78,62},{-58,82}}))); - Modelica.Blocks.Sources.Constant TStorageSet(k=273.15 + 35) + Modelica.Blocks.Sources.Constant TStorageSet(k=273.15 + 45) "Set point of upper heat storage temperature" annotation (Placement(transformation(extent={{-160,0},{-148,12}}))); Control.geothermalFieldController geothermalFieldControllerCold( - temperature_low=273.15 + 6, temperature_high=273.15 + 8) + temperature_low=273.15 + 8, temperature_high=273.15 + 10) "Controls the heat exchange with the geothermal field and the heat storage" - annotation (Placement(transformation(extent={{-100,28},{-84,44}}))); - Control.geothermalFieldController geothermalFieldControllerHeat + annotation (Placement(transformation(extent={{-102,28},{-86,44}}))); + Control.geothermalFieldController geothermalFieldControllerHeat( + temperature_low=308.15, temperature_high=313.15) "Controls the heat exchange with the geothermal field and the heat storage" annotation (Placement(transformation(extent={{-100,-34},{-84,-18}}))); equation @@ -126,13 +127,13 @@ equation annotation (Line(points={{112.77,-56.54},{112.77,-118},{-26,-118},{-26,-100}, {-71.5,-100},{-71.5,-119.5}}, color={0,0,127})); connect(getTStorageLower.y,geothermalFieldControllerCold. temperature) - annotation (Line(points={{-139,52},{-108,52},{-108,36},{-100,36}}, + annotation (Line(points={{-139,52},{-108,52},{-108,36},{-102,36}}, color={0,0,127})); connect(geothermalFieldControllerCold.valveOpening1, valveColdStorage.y) - annotation (Line(points={{-83.04,40.8},{-82,40.8},{-82,54},{-52,54},{-52, + annotation (Line(points={{-85.04,40.8},{-82,40.8},{-82,54},{-52,54},{-52, 46.4}}, color={0,0,127})); connect(geothermalFieldControllerCold.valveOpening2, valveHeatSource.y) - annotation (Line(points={{-83.04,31.2},{-82,31.2},{-82,1},{-68.4,1}}, color= + annotation (Line(points={{-85.04,31.2},{-82,31.2},{-82,1},{-68.4,1}}, color= {0,0,127})); connect(getTStorageUpper.y,geothermalFieldControllerHeat. temperature) annotation (Line(points={{-139,68},{-120,68},{-120,-26},{-100,-26}}, color= @@ -150,7 +151,7 @@ equation -147.4,6},{-130,6},{-130,76},{-78,76}}, color={0,0,127})); connect(getTStorageUpper.y, hPControllerOnOff.TMea) annotation (Line(points={{-139,68},{-78,68}}, color={0,0,127})); - annotation (experiment(Tolerance=1e-6, StopTime=86400), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Examples/GeothermalHeatPump.mos" + annotation (experiment(Tolerance=1e-6, StartTime=0, StopTime=86400), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Examples/GeothermalHeatPump.mos" "Simulate and plot"), Documentation(revisions="
                  • May 5, 2021 by Fabian Wüllhorst:
                    diff --git a/AixLib/Fluid/Examples/Performance/BaseClasses/Example1.mo b/AixLib/Fluid/Examples/Performance/BaseClasses/Example1.mo index 82d3c61bd2..9af2f8b2a4 100644 --- a/AixLib/Fluid/Examples/Performance/BaseClasses/Example1.mo +++ b/AixLib/Fluid/Examples/Performance/BaseClasses/Example1.mo @@ -97,37 +97,38 @@ equation annotation (Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-100,-20},{100, 100}}), graphics), Documentation(info=" -

                    -This partial model is extended by - -AixLib.Fluid.Examples.Performance.Example1v1 -and - -AixLib.Fluid.Examples.Performance.Example1v2 -and is created to avoid errors in the implementation of the two depending examples. -

                    -", revisions=" -
                      -
                    • -May 8, 2017, by Michael Wetter:
                      -Updated heater model.
                      -This is for - -AixLib, #763. -
                    • -
                    • -February 22, 2016, by Michael Wetter:
                      -Removed parameter dynamicBalance for -issue 411. -
                    • -
                    • -July 14, 2015, by Michael Wetter:
                      -Revised documentation. -
                    • -
                    • -April 17, 2015, by Filip Jorissen:
                      -First implementation. -
                    • -
                    -")); +

                    + This partial model is extended by + + AixLib.Fluid.Examples.Performance.Example1v1 + and + + AixLib.Fluid.Examples.Performance.Example1v2 + and is created to avoid errors in the implementation of the two depending examples. +

                    + ",revisions=" +
                      +
                    • + May 8, 2017, by Michael Wetter:
                      + Updated heater model.
                      + This is for + + AixLib, #763. +
                    • +
                    • + February 22, 2016, by Michael Wetter:
                      + Removed parameter dynamicBalance for + issue 411. +
                    • +
                    • + July 14, 2015, by Michael Wetter:
                      + Revised documentation. +
                    • +
                    • + April 17, 2015, by Filip Jorissen:
                      + First implementation. +
                    • +
                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end Example1; diff --git a/AixLib/Fluid/Examples/Performance/Example1v1.mo b/AixLib/Fluid/Examples/Performance/Example1v1.mo index 0bff7327a6..ccbe17576b 100644 --- a/AixLib/Fluid/Examples/Performance/Example1v1.mo +++ b/AixLib/Fluid/Examples/Performance/Example1v1.mo @@ -18,96 +18,96 @@ equation fillPattern=FillPattern.Solid, fillColor={0,0,255})}), Documentation(info=" -

                    -This model demonstrates the impact of the allowFlowReversal -and from_dp parameters on the sizes of nonlinear algebraic loops. -The user can change the parameter value in the respective -BooleanConstant blocks and rerun the simulation to compare the performance. -The results are also demonstrated below for nRes.k = 20, -the number of parallel branches, which contain one pressure drop element each. -

                    -

                    -These results were generated using Dymola 2015FD01 64 bit on Ubuntu 14.04. -

                    -

                    Default case:

                    -

                    -AllowFlowReversal = true and from_dp = false -

                    -

                    -Sizes of nonlinear systems of equations: {6, 21, 46} -

                    -

                    -Sizes after manipulation of the nonlinear systems: {1, 19, 22} -

                    -

                    Change 1:

                    -

                    -AllowFlowReversal = false and from_dp = false -

                    -

                    -Sizes of nonlinear systems of equations: {6, 21} -

                    -

                    -Sizes after manipulation of the nonlinear systems: {1, 19} -

                    -

                    Change 2:

                    -

                    -AllowFlowReversal = false and from_dp = true -

                    -

                    -Sizes of nonlinear systems of equations: {6, 21} -

                    -

                    -Sizes after manipulation of the nonlinear systems: {1, 1} -

                    -

                    -These changes also have a significant impact on the computational speed. -

                    -

                    -Following script can be used in Dymola to compare the CPU times. -For this script to work, make sure that Dymola stores at least 4 results. -

                    -

                    - -cpuOld=OutputCPUtime;
                    -evaluateOld=Evaluate;
                    -OutputCPUtime:=true;
                    -simulateModel(\"AixLib.Fluid.Examples.Performance.Example1v1(allowFlowReversal.k=true, from_dp.k=false)\", stopTime=10000, numberOfIntervals=10, method=\"dassl\", resultFile=\"Example1v1\");
                    -simulateModel(\"AixLib.Fluid.Examples.Performance.Example1v2(from_dp.k=true, allowFlowReversal.k=true)\", stopTime=10000, numberOfIntervals=10, method=\"dassl\", resultFile=\"Example1v2\");
                    -simulateModel(\"AixLib.Fluid.Examples.Performance.Example1v1(allowFlowReversal.k=false, from_dp.k=false)\", stopTime=10000, numberOfIntervals=10, method=\"dassl\", resultFile=\"Example1v1\");
                    -simulateModel(\"AixLib.Fluid.Examples.Performance.Example1v1(allowFlowReversal.k=false, from_dp.k=true)\", stopTime=10000, numberOfIntervals=10, method=\"dassl\", resultFile=\"Example1v1\");
                    -createPlot(id=1, position={15, 10, 592, 421}, range={0.0, 10000.0, -0.01, 0.35}, autoscale=false, grid=true);
                    -plotExpression(apply(Example1v1[end-2].CPUtime), false, \"Default case\", 1);
                    -plotExpression(apply(Example1v2[end].CPUtime), false, \"Adding dummy states\", 1);
                    -plotExpression(apply(Example1v1[end-1].CPUtime), false, \"allowFlowReversal=false\", 1);
                    -plotExpression(apply(Example1v1[end].CPUtime), false, \"allowFlowReversal=false, from_dp=true\", 1);
                    -OutputCPUtime=cpuOld;
                    -Evaluate=evaluateOld;
                    -

                    -

                    -See Jorissen et al. (2015) for a discussion. -

                    -

                    References

                    -
                      -
                    • -Filip Jorissen, Michael Wetter and Lieve Helsen.
                      -Simulation speed analysis and improvements of Modelica -models for building energy simulation.
                      -Submitted: 11th Modelica Conference. Paris, France. Sep. 2015. -
                    • -
                    -", revisions=" -
                      -
                    • -July 14, 2015, by Michael Wetter:
                      -Revised documentation. -
                    • -
                    • -April 17, 2015, by Filip Jorissen:
                      -First implementation. -
                    • -
                    -"), - __Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/Examples/Performance/Example1v1.mos" - "Simulate and plot")); +

                    + This model demonstrates the impact of the allowFlowReversal + and from_dp parameters on the sizes of nonlinear algebraic loops. + The user can change the parameter value in the respective + BooleanConstant blocks and rerun the simulation to compare the performance. + The results are also demonstrated below for nRes.k = 20, + the number of parallel branches, which contain one pressure drop element each. +

                    +

                    + These results were generated using Dymola 2015FD01 64 bit on Ubuntu 14.04. +

                    +

                    Default case:

                    +

                    + AllowFlowReversal = true and from_dp = false +

                    +

                    + Sizes of nonlinear systems of equations: {6, 21, 46} +

                    +

                    + Sizes after manipulation of the nonlinear systems: {1, 19, 22} +

                    +

                    Change 1:

                    +

                    + AllowFlowReversal = false and from_dp = false +

                    +

                    + Sizes of nonlinear systems of equations: {6, 21} +

                    +

                    + Sizes after manipulation of the nonlinear systems: {1, 19} +

                    +

                    Change 2:

                    +

                    + AllowFlowReversal = false and from_dp = true +

                    +

                    + Sizes of nonlinear systems of equations: {6, 21} +

                    +

                    + Sizes after manipulation of the nonlinear systems: {1, 1} +

                    +

                    + These changes also have a significant impact on the computational speed. +

                    +

                    + Following script can be used in Dymola to compare the CPU times. + For this script to work, make sure that Dymola stores at least 4 results. +

                    +

                    + + cpuOld=OutputCPUtime;
                    + evaluateOld=Evaluate;
                    + OutputCPUtime:=true;
                    + simulateModel(\"AixLib.Fluid.Examples.Performance.Example1v1(allowFlowReversal.k=true, from_dp.k=false)\", stopTime=10000, numberOfIntervals=10, method=\"dassl\", resultFile=\"Example1v1\");
                    + simulateModel(\"AixLib.Fluid.Examples.Performance.Example1v2(from_dp.k=true, allowFlowReversal.k=true)\", stopTime=10000, numberOfIntervals=10, method=\"dassl\", resultFile=\"Example1v2\");
                    + simulateModel(\"AixLib.Fluid.Examples.Performance.Example1v1(allowFlowReversal.k=false, from_dp.k=false)\", stopTime=10000, numberOfIntervals=10, method=\"dassl\", resultFile=\"Example1v1\");
                    + simulateModel(\"AixLib.Fluid.Examples.Performance.Example1v1(allowFlowReversal.k=false, from_dp.k=true)\", stopTime=10000, numberOfIntervals=10, method=\"dassl\", resultFile=\"Example1v1\");
                    + createPlot(id=1, position={15, 10, 592, 421}, range={0.0, 10000.0, -0.01, 0.35}, autoscale=false, grid=true);
                    + plotExpression(apply(Example1v1[end-2].CPUtime), false, \"Default case\", 1);
                    + plotExpression(apply(Example1v2[end].CPUtime), false, \"Adding dummy states\", 1);
                    + plotExpression(apply(Example1v1[end-1].CPUtime), false, \"allowFlowReversal=false\", 1);
                    + plotExpression(apply(Example1v1[end].CPUtime), false, \"allowFlowReversal=false, from_dp=true\", 1);
                    + OutputCPUtime=cpuOld;
                    + Evaluate=evaluateOld;
                    +

                    +

                    + See Jorissen et al. (2015) for a discussion. +

                    +

                    References

                    +
                      +
                    • + Filip Jorissen, Michael Wetter and Lieve Helsen.
                      + Simulation speed analysis and improvements of Modelica + models for building energy simulation.
                      + Submitted: 11th Modelica Conference. Paris, France. Sep. 2015. +
                    • +
                    + ",revisions=" +
                      +
                    • + July 14, 2015, by Michael Wetter:
                      + Revised documentation. +
                    • +
                    • + April 17, 2015, by Filip Jorissen:
                      + First implementation. +
                    • +
                    + "), + __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Examples/Performance/Example1v1.mos" + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end Example1v1; diff --git a/AixLib/Fluid/Examples/Performance/Example1v2.mo b/AixLib/Fluid/Examples/Performance/Example1v2.mo index 3ba0603f76..7181f3d3d3 100644 --- a/AixLib/Fluid/Examples/Performance/Example1v2.mo +++ b/AixLib/Fluid/Examples/Performance/Example1v2.mo @@ -1,7 +1,7 @@ within AixLib.Fluid.Examples.Performance; model Example1v2 "Example 1 model with mixing volume" extends AixLib.Fluid.Examples.Performance.BaseClasses.Example1; - parameter Modelica.SIunits.Time tau=10 "Time constant at nominal flow"; + parameter Modelica.Units.SI.Time tau=10 "Time constant at nominal flow"; Fluid.Delays.DelayFirstOrder[nRes.k] vol( redeclare each package Medium = Medium, @@ -28,57 +28,57 @@ equation Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-100,-20},{100, 100}}), graphics), Documentation(info=" -

                    -This example is an extension of - -AixLib.Fluid.Examples.Performance.Example1v1 -and demonstrates the use of -mixing volumes for decoupling the algebraic loop that solves for the enthalpy of the system. -

                    -

                    Example1v1:

                    -

                    -Sizes of nonlinear systems of equations: {6, 21, 46} -

                    -

                    -Sizes after manipulation of the nonlinear systems: {1, 19, 22} -

                    -

                    Example1v2 using mixing volumes:

                    -

                    -Sizes of nonlinear systems of equations: {6, 21, 4} -

                    -

                    -Sizes after manipulation of the nonlinear systems: {1, 19, 1} -

                    -

                    -See Jorissen et al. (2015) for a discussion. -

                    -

                    References

                    -
                      -
                    • -Filip Jorissen, Michael Wetter and Lieve Helsen.
                      -Simulation speed analysis and improvements of Modelica -models for building energy simulation.
                      -Submitted: 11th Modelica Conference. Paris, France. Sep. 2015. -
                    • -
                    -", revisions=" -
                      -
                    • -August 31, 2015, by Michael Wetter:
                      -Added missing each in declaration of the energy balance -for the volume. -
                    • -
                    • -July 14, 2015, by Michael Wetter:
                      -Revised documentation. -
                    • -
                    • -April 17, 2015, by Filip Jorissen:
                      -First implementation. -
                    • -
                    -"), - __Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/Examples/Performance/Example1v2.mos" - "Simulate and plot")); +

                    + This example is an extension of + + AixLib.Fluid.Examples.Performance.Example1v1 + and demonstrates the use of + mixing volumes for decoupling the algebraic loop that solves for the enthalpy of the system. +

                    +

                    Example1v1:

                    +

                    + Sizes of nonlinear systems of equations: {6, 21, 46} +

                    +

                    + Sizes after manipulation of the nonlinear systems: {1, 19, 22} +

                    +

                    Example1v2 using mixing volumes:

                    +

                    + Sizes of nonlinear systems of equations: {6, 21, 4} +

                    +

                    + Sizes after manipulation of the nonlinear systems: {1, 19, 1} +

                    +

                    + See Jorissen et al. (2015) for a discussion. +

                    +

                    References

                    +
                      +
                    • + Filip Jorissen, Michael Wetter and Lieve Helsen.
                      + Simulation speed analysis and improvements of Modelica + models for building energy simulation.
                      + Submitted: 11th Modelica Conference. Paris, France. Sep. 2015. +
                    • +
                    + ",revisions=" +
                      +
                    • + August 31, 2015, by Michael Wetter:
                      + Added missing each in declaration of the energy balance + for the volume. +
                    • +
                    • + July 14, 2015, by Michael Wetter:
                      + Revised documentation. +
                    • +
                    • + April 17, 2015, by Filip Jorissen:
                      + First implementation. +
                    • +
                    + "), + __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Examples/Performance/Example1v2.mos" + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end Example1v2; diff --git a/AixLib/Fluid/Examples/Performance/Example2.mo b/AixLib/Fluid/Examples/Performance/Example2.mo index 0fb62af6bd..920cb5ff18 100644 --- a/AixLib/Fluid/Examples/Performance/Example2.mo +++ b/AixLib/Fluid/Examples/Performance/Example2.mo @@ -3,9 +3,9 @@ model Example2 "Example 2 model with series pressure components" extends Modelica.Icons.Example; package Medium = Modelica.Media.Water.ConstantPropertyLiquidWater; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal=1 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=1 "Nominal mass flow rate"; - parameter Modelica.SIunits.PressureDifference dp_nominal=1 + parameter Modelica.Units.SI.PressureDifference dp_nominal=1 "Pressure drop at nominal mass flow rate"; Fluid.Movers.FlowControlled_dp pump_dp( redeclare package Medium = Medium, @@ -59,72 +59,72 @@ equation -40},{40,60}}), graphics), experiment(Tolerance=1e-6, StopTime=20), Documentation(info=" -

                    -This example demonstrates that the use of the parameter from_dp -can be important for reducing the size of algebraic loops in hydraulic -circuits with many pressure drop components connected in series and -a pump setting the pressure head. -

                    -

                    -If from_dp=true, we obtain:
                    - -Sizes of nonlinear systems of equations: {7}
                    -Sizes after manipulation of the nonlinear systems: {5}
                    -If from_dp=false, we obtain:
                    -Sizes of nonlinear systems of equations: {7}
                    -Sizes after manipulation of the nonlinear systems: {1}
                    -

                    -

                    -This can have a large impact on computational speed. -

                    -

                    -Following script can be used in Dymola to compare the CPU times. -

                    -

                    - -cpuOld=OutputCPUtime;
                    -evaluateOld=Evaluate;
                    -OutputCPUtime:=true;
                    -simulateModel(\"AixLib.Fluid.Examples.Performance.Example2(from_dp.k=false)\", stopTime=10000, numberOfIntervals=10, method=\"dassl\", resultFile=\"Example2\");
                    -simulateModel(\"AixLib.Fluid.Examples.Performance.Example2(from_dp.k=true)\", stopTime=10000, numberOfIntervals=10, method=\"dassl\", resultFile=\"Example2\");
                    -createPlot(id=1, position={15, 10, 592, 421}, range={0.0, 10000.0, -0.01, 25}, autoscale=false, grid=true);
                    -plotExpression(apply(Example2[end-1].CPUtime), false, \"from_dp=false\", 1);
                    -plotExpression(apply(Example2[end].CPUtime), false, \"from_dp=true\", 1);
                    -OutputCPUtime=cpuOld;
                    -Evaluate=evaluateOld;
                    -
                    -

                    -

                    -See Jorissen et al. (2015) for a discussion. -

                    -

                    References

                    -
                      -
                    • -Filip Jorissen, Michael Wetter and Lieve Helsen.
                      -Simulation speed analysis and improvements of Modelica -models for building energy simulation.
                      -Submitted: 11th Modelica Conference. Paris, France. Sep. 2015. -
                    • -
                    -", revisions=" -
                      -
                    • -January 22, 2016, by Michael Wetter:
                      -Corrected type declaration of pressure difference. -This is -for #404. -
                    • -
                    • -July 14, 2015, by Michael Wetter:
                      -Revised documentation. -
                    • -
                    • -May 20, 2015, by Filip Jorissen:
                      -First implementation. -
                    • -
                    -"), - __Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/Examples/Performance/Example2.mos" - "Simulate and plot")); +

                    + This example demonstrates that the use of the parameter from_dp + can be important for reducing the size of algebraic loops in hydraulic + circuits with many pressure drop components connected in series and + a pump setting the pressure head. +

                    +

                    + If from_dp=true, we obtain:
                    + + Sizes of nonlinear systems of equations: {7}
                    + Sizes after manipulation of the nonlinear systems: {5}
                    + If from_dp=false, we obtain:
                    + Sizes of nonlinear systems of equations: {7}
                    + Sizes after manipulation of the nonlinear systems: {1}
                    +

                    +

                    + This can have a large impact on computational speed. +

                    +

                    + Following script can be used in Dymola to compare the CPU times. +

                    +

                    + + cpuOld=OutputCPUtime;
                    + evaluateOld=Evaluate;
                    + OutputCPUtime:=true;
                    + simulateModel(\"AixLib.Fluid.Examples.Performance.Example2(from_dp.k=false)\", stopTime=10000, numberOfIntervals=10, method=\"dassl\", resultFile=\"Example2\");
                    + simulateModel(\"AixLib.Fluid.Examples.Performance.Example2(from_dp.k=true)\", stopTime=10000, numberOfIntervals=10, method=\"dassl\", resultFile=\"Example2\");
                    + createPlot(id=1, position={15, 10, 592, 421}, range={0.0, 10000.0, -0.01, 25}, autoscale=false, grid=true);
                    + plotExpression(apply(Example2[end-1].CPUtime), false, \"from_dp=false\", 1);
                    + plotExpression(apply(Example2[end].CPUtime), false, \"from_dp=true\", 1);
                    + OutputCPUtime=cpuOld;
                    + Evaluate=evaluateOld;
                    +
                    +

                    +

                    + See Jorissen et al. (2015) for a discussion. +

                    +

                    References

                    +
                      +
                    • + Filip Jorissen, Michael Wetter and Lieve Helsen.
                      + Simulation speed analysis and improvements of Modelica + models for building energy simulation.
                      + Submitted: 11th Modelica Conference. Paris, France. Sep. 2015. +
                    • +
                    + ",revisions=" +
                      +
                    • + January 22, 2016, by Michael Wetter:
                      + Corrected type declaration of pressure difference. + This is + for #404. +
                    • +
                    • + July 14, 2015, by Michael Wetter:
                      + Revised documentation. +
                    • +
                    • + May 20, 2015, by Filip Jorissen:
                      + First implementation. +
                    • +
                    + "), + __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Examples/Performance/Example2.mos" + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end Example2; diff --git a/AixLib/Fluid/Examples/Performance/Example3.mo b/AixLib/Fluid/Examples/Performance/Example3.mo index 22278e353e..ee1af3018b 100644 --- a/AixLib/Fluid/Examples/Performance/Example3.mo +++ b/AixLib/Fluid/Examples/Performance/Example3.mo @@ -4,9 +4,9 @@ model Example3 extends Modelica.Icons.Example; package Medium = Modelica.Media.Water.ConstantPropertyLiquidWater; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal=1 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=1 "Nominal mass flow rate"; - parameter Modelica.SIunits.PressureDifference dp_nominal=1 + parameter Modelica.Units.SI.PressureDifference dp_nominal=1 "Pressure drop at nominal mass flow rate"; Fluid.Movers.FlowControlled_m_flow pump( redeclare package Medium = Medium, @@ -74,66 +74,66 @@ equation -60},{60,40}}), graphics), experiment(Tolerance=1e-6, StopTime=20), Documentation(revisions=" -
                      -
                    • -January 22, 2016, by Michael Wetter:
                      -Corrected type declaration of pressure difference. -This is -for #404. -
                    • -
                    • -July 14, 2015, by Michael Wetter:
                      -Revised documentation. -
                    • -
                    • -April 17, 2015, by Filip Jorissen:
                      -First implementation. -
                    • -
                    -", info=" -

                    -This example demonstrates the importance of merging -pressure drop components that are connected in series, -into one pressure drop component. -Parameter mergeDp.k can be used to merge two components -that are connected in series. -Parameter from_dp also has an influence of the computational speed. -

                    -

                    -Following script can be used in Dymola to compare the CPU times. -For this script to work, make sure that Dymola stores at least 4 results. -

                    -

                    - -cpuOld=OutputCPUtime;
                    -evaluateOld=Evaluate;
                    -OutputCPUtime:=true;
                    -simulateModel(\"AixLib.Fluid.Examples.Performance.Example3(from_dp.k=false, mergeDp.k=false, nRes.k=10)\", stopTime=1000, numberOfIntervals=10, method=\"dassl\", resultFile=\"Example3\");
                    -simulateModel(\"AixLib.Fluid.Examples.Performance.Example3(from_dp.k=false, mergeDp.k=true, nRes.k=10)\", stopTime=1000, numberOfIntervals=10, method=\"dassl\", resultFile=\"Example3\");
                    -simulateModel(\"AixLib.Fluid.Examples.Performance.Example3(from_dp.k=true, mergeDp.k=false, nRes.k=10)\", stopTime=1000, numberOfIntervals=10, method=\"dassl\", resultFile=\"Example3\");
                    -simulateModel(\"AixLib.Fluid.Examples.Performance.Example3(from_dp.k=true, mergeDp.k=true, nRes.k=10)\", stopTime=1000, numberOfIntervals=10, method=\"dassl\", resultFile=\"Example3\");
                    -createPlot(id=1, position={15, 10, 592, 421}, range={0.0, 1000.0, -0.01, 8}, autoscale=false, grid=true);
                    -plotExpression(apply(Example3[end-3].CPUtime), false, \"from_dp=false, mergeDp=false\", 1);
                    -plotExpression(apply(Example3[end-2].CPUtime), false, \"from_dp=false, mergeDp=true\", 1);
                    -plotExpression(apply(Example3[end-1].CPUtime), false, \"from_dp=true, mergeDp=false\", 1);
                    -plotExpression(apply(Example3[end].CPUtime), false, \"from_dp=true, mergeDp=true\", 1);
                    -OutputCPUtime=cpuOld;
                    -Evaluate=evaluateOld;
                    -

                    -

                    -See Jorissen et al. (2015) for a discussion. -

                    -

                    References

                    -
                      -
                    • -Filip Jorissen, Michael Wetter and Lieve Helsen.
                      -Simulation speed analysis and improvements of Modelica -models for building energy simulation.
                      -Submitted: 11th Modelica Conference. Paris, France. Sep. 2015. -
                    • -
                    -"), - __Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/Examples/Performance/Example3.mos" - "Simulate and plot")); +
                      +
                    • + January 22, 2016, by Michael Wetter:
                      + Corrected type declaration of pressure difference. + This is + for #404. +
                    • +
                    • + July 14, 2015, by Michael Wetter:
                      + Revised documentation. +
                    • +
                    • + April 17, 2015, by Filip Jorissen:
                      + First implementation. +
                    • +
                    + ",info=" +

                    + This example demonstrates the importance of merging + pressure drop components that are connected in series, + into one pressure drop component. + Parameter mergeDp.k can be used to merge two components + that are connected in series. + Parameter from_dp also has an influence of the computational speed. +

                    +

                    + Following script can be used in Dymola to compare the CPU times. + For this script to work, make sure that Dymola stores at least 4 results. +

                    +

                    + + cpuOld=OutputCPUtime;
                    + evaluateOld=Evaluate;
                    + OutputCPUtime:=true;
                    + simulateModel(\"AixLib.Fluid.Examples.Performance.Example3(from_dp.k=false, mergeDp.k=false, nRes.k=10)\", stopTime=1000, numberOfIntervals=10, method=\"dassl\", resultFile=\"Example3\");
                    + simulateModel(\"AixLib.Fluid.Examples.Performance.Example3(from_dp.k=false, mergeDp.k=true, nRes.k=10)\", stopTime=1000, numberOfIntervals=10, method=\"dassl\", resultFile=\"Example3\");
                    + simulateModel(\"AixLib.Fluid.Examples.Performance.Example3(from_dp.k=true, mergeDp.k=false, nRes.k=10)\", stopTime=1000, numberOfIntervals=10, method=\"dassl\", resultFile=\"Example3\");
                    + simulateModel(\"AixLib.Fluid.Examples.Performance.Example3(from_dp.k=true, mergeDp.k=true, nRes.k=10)\", stopTime=1000, numberOfIntervals=10, method=\"dassl\", resultFile=\"Example3\");
                    + createPlot(id=1, position={15, 10, 592, 421}, range={0.0, 1000.0, -0.01, 8}, autoscale=false, grid=true);
                    + plotExpression(apply(Example3[end-3].CPUtime), false, \"from_dp=false, mergeDp=false\", 1);
                    + plotExpression(apply(Example3[end-2].CPUtime), false, \"from_dp=false, mergeDp=true\", 1);
                    + plotExpression(apply(Example3[end-1].CPUtime), false, \"from_dp=true, mergeDp=false\", 1);
                    + plotExpression(apply(Example3[end].CPUtime), false, \"from_dp=true, mergeDp=true\", 1);
                    + OutputCPUtime=cpuOld;
                    + Evaluate=evaluateOld;
                    +

                    +

                    + See Jorissen et al. (2015) for a discussion. +

                    +

                    References

                    +
                      +
                    • + Filip Jorissen, Michael Wetter and Lieve Helsen.
                      + Simulation speed analysis and improvements of Modelica + models for building energy simulation.
                      + Submitted: 11th Modelica Conference. Paris, France. Sep. 2015. +
                    • +
                    + "), + __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Examples/Performance/Example3.mos" + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end Example3; diff --git a/AixLib/Fluid/Examples/Performance/Example4.mo b/AixLib/Fluid/Examples/Performance/Example4.mo index b753c3290b..bc71c643a7 100644 --- a/AixLib/Fluid/Examples/Performance/Example4.mo +++ b/AixLib/Fluid/Examples/Performance/Example4.mo @@ -6,13 +6,12 @@ model Example4 "Example 4 model of simple condensing heat exchanger" parameter Boolean allowFlowReversal=false "= false to simplify equations, assuming, but not enforcing, no flow reversal"; - Modelica.SIunits.MassFlowRate m_condens = min(0, -vol.ports[1].m_flow*(bou.X[1] - xSat.X[1])) - "Water vapor mass flow rate"; + Modelica.Units.SI.MassFlowRate m_condens=min(0, -vol.ports[1].m_flow*(bou.X[1] + - xSat.X[1])) "Water vapor mass flow rate"; Fluid.MixingVolumes.MixingVolumeMoistAir vol( nPorts=2, ports(m_flow(min={0,-Modelica.Constants.inf})), redeclare package Medium = Medium, - massDynamics=Modelica.Fluid.Types.Dynamics.SteadyState, m_flow_nominal=1, V=1, energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyState, @@ -107,60 +106,60 @@ equation color={0,127,255})); annotation (Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-80,-20}, {80,60}}), graphics), Documentation(revisions=" -
                      -
                    • -April 12, 2017, by Michael Wetter:
                      -Removed connection that is no longer needed.
                      -This is for issue -Buildings #704. -
                    • -
                    • -July 28, 2015, by Michael Wetter:
                      -Moved assignment of m_condens from equation section to -declaration to avoid graphical and textual equations. -
                    • -
                    • -July 14, 2015, by Michael Wetter:
                      -Revised documentation. -
                    • -
                    • -April 17, 2015, by Filip Jorissen:
                      -First implementation. -
                    • -
                    -", info=" -

                    -This example generates a non-linear algebraic loop -that consists of 12 equations before manipulation. -This loop can be decoupled and removed by changing the equation -

                    -
                    -port_a.m_flow + port_b.m_flow = -mWat_flow;
                    -
                    -

                    -in - -AixLib.Fluid.Interfaces.StaticTwoPortConservationEquation -to -

                    -
                    -port_a.m_flow + port_b.m_flow = 0;
                    -
                    -

                    -See Jorissen et al. (2015) for a discussion. -

                    -

                    References

                    -
                      -
                    • -Filip Jorissen, Michael Wetter and Lieve Helsen.
                      -Simulation speed analysis and improvements of Modelica -models for building energy simulation.
                      -Submitted: 11th Modelica Conference. Paris, France. Sep. 2015. -
                    • -
                    -"), +
                      +
                    • + April 12, 2017, by Michael Wetter:
                      + Removed connection that is no longer needed.
                      + This is for issue + Buildings #704. +
                    • +
                    • + July 28, 2015, by Michael Wetter:
                      + Moved assignment of m_condens from equation section to + declaration to avoid graphical and textual equations. +
                    • +
                    • + July 14, 2015, by Michael Wetter:
                      + Revised documentation. +
                    • +
                    • + April 17, 2015, by Filip Jorissen:
                      + First implementation. +
                    • +
                    + ",info=" +

                    + This example generates a non-linear algebraic loop + that consists of 12 equations before manipulation. + This loop can be decoupled and removed by changing the equation +

                    +
                    + port_a.m_flow + port_b.m_flow = -mWat_flow;
                    + 
                    +

                    + in + + AixLib.Fluid.Interfaces.StaticTwoPortConservationEquation + to +

                    +
                    + port_a.m_flow + port_b.m_flow = 0;
                    + 
                    +

                    + See Jorissen et al. (2015) for a discussion. +

                    +

                    References

                    +
                      +
                    • + Filip Jorissen, Michael Wetter and Lieve Helsen.
                      + Simulation speed analysis and improvements of Modelica + models for building energy simulation.
                      + Submitted: 11th Modelica Conference. Paris, France. Sep. 2015. +
                    • +
                    + "), experiment(Tolerance=1e-6, StopTime=20), -__Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/Examples/Performance/Example4.mos" - "Simulate and plot")); +__Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Examples/Performance/Example4.mos" + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end Example4; diff --git a/AixLib/Fluid/Examples/Performance/Example5.mo b/AixLib/Fluid/Examples/Performance/Example5.mo index 98d545d14f..6b9a6c0ab0 100644 --- a/AixLib/Fluid/Examples/Performance/Example5.mo +++ b/AixLib/Fluid/Examples/Performance/Example5.mo @@ -18,64 +18,64 @@ equation annotation (Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-120, -40},{40,60}}), graphics={Text( extent={{-62,24},{-18,-4}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="See code")}), experiment(Tolerance=1e-6, StopTime=20), Documentation(revisions=" -
                      -
                    • -July 14, 2015, by Michael Wetter:
                      -Revised documentation. -
                    • -
                    • -April 17, 2015, by Filip Jorissen:
                      -First implementation. -
                    • -
                    -", info=" -

                    -This example illustrates the impact of -Modelica code formulations on the C-code. -

                    -

                    -Compare the C-code in dsmodel.c when setting the parameter -efficient to true or false -and when adding annotation(Evaluate=true) to the parameter efficient. -

                    -

                    -This produces: -

                    -

                    Efficient = false and Evaluate = false

                    -
                    -helpvar[0] = sin(Time);
                    -F_[0] = helpvar[0]*(IF DP_[0] THEN W_[0] ELSE DP_[1]+DP_[2]+DP_[3]);
                    -
                    -

                    Efficient = false and Evaluate = true

                    -
                    -helpvar[0] = sin(Time);
                    -F_[0] = helpvar[0]*(DP_[0]+DP_[1]+DP_[2]);
                    -
                    -

                    Efficient = true and Evaluate = true

                    -
                    -helpvar[0] = sin(Time);
                    -F_[0] = helpvar[0]*W_[1];
                    -
                    -

                    -The last option requires much less operations to be performed and is therefore more efficient. -

                    -

                    -See Jorissen et al. (2015) for a discussion. -

                    -

                    References

                    -
                      -
                    • -Filip Jorissen, Michael Wetter and Lieve Helsen.
                      -Simulation speed analysis and improvements of Modelica -models for building energy simulation.
                      -Submitted: 11th Modelica Conference. Paris, France. Sep. 2015. -
                    • -
                    -"), __Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/Examples/Performance/Example5.mos" - "Simulate and plot")); +
                      +
                    • + July 14, 2015, by Michael Wetter:
                      + Revised documentation. +
                    • +
                    • + April 17, 2015, by Filip Jorissen:
                      + First implementation. +
                    • +
                    + ",info=" +

                    + This example illustrates the impact of + Modelica code formulations on the C-code. +

                    +

                    + Compare the C-code in dsmodel.c when setting the parameter + efficient to true or false + and when adding annotation(Evaluate=true) to the parameter efficient. +

                    +

                    + This produces: +

                    +

                    Efficient = false and Evaluate = false

                    +
                    + helpvar[0] = sin(Time);
                    + F_[0] = helpvar[0]*(IF DP_[0] THEN W_[0] ELSE DP_[1]+DP_[2]+DP_[3]);
                    + 
                    +

                    Efficient = false and Evaluate = true

                    +
                    + helpvar[0] = sin(Time);
                    + F_[0] = helpvar[0]*(DP_[0]+DP_[1]+DP_[2]);
                    + 
                    +

                    Efficient = true and Evaluate = true

                    +
                    + helpvar[0] = sin(Time);
                    + F_[0] = helpvar[0]*W_[1];
                    + 
                    +

                    + The last option requires much less operations to be performed and is therefore more efficient. +

                    +

                    + See Jorissen et al. (2015) for a discussion. +

                    +

                    References

                    +
                      +
                    • + Filip Jorissen, Michael Wetter and Lieve Helsen.
                      + Simulation speed analysis and improvements of Modelica + models for building energy simulation.
                      + Submitted: 11th Modelica Conference. Paris, France. Sep. 2015. +
                    • +
                    + "),__Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Examples/Performance/Example5.mos" + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end Example5; diff --git a/AixLib/Fluid/Examples/Performance/Example6.mo b/AixLib/Fluid/Examples/Performance/Example6.mo index 65d7012a4e..b423c8c67c 100644 --- a/AixLib/Fluid/Examples/Performance/Example6.mo +++ b/AixLib/Fluid/Examples/Performance/Example6.mo @@ -24,80 +24,80 @@ equation annotation (Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-120, -40},{40,60}}), graphics={Text( extent={{-62,24},{-18,-4}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="See code")}), experiment( Tolerance=1e-6, StopTime=100), Documentation(revisions=" -
                      -
                    • -April 11, 2016 by Michael Wetter:
                      -Corrected wrong hyperlink in documentation for -issue 450. -
                    • -
                    • -July 14, 2015, by Michael Wetter:
                      -Revised documentation. -
                    • -
                    • -April 17, 2015, by Filip Jorissen:
                      -First implementation. -
                    • -
                    -", info=" -

                    This example, together with - -AixLib.Fluid.Examples.Performance.Example7, -illustrates the overhead -generated by divisions by parameters. See Jorissen et al. (2015) for a complementary discussion. -

                    -

                    -Running the following commands allows comparing the CPU times of the two models, -disregarding as much as possible the influence of the integrator: -

                    -
                    -simulateModel(\"AixLib.Fluid.Examples.PerformanceExamples.Example6\", stopTime=100, numberOfIntervals=1, method=\"Rkfix4\", fixedstepsize=0.001, resultFile=\"Example6\");
                    -simulateModel(\"AixLib.Fluid.Examples.PerformanceExamples.Example7\", stopTime=100, numberOfIntervals=1, method=\"Rkfix4\", fixedstepsize=0.001, resultFile=\"Example7\");
                    -
                    -

                    -Comparing the CPU times indicates a speed improvement of 56%. -This difference almost disappears when adding annotation(Evaluate=true) -to R and C. -

                    -

                    -In dsmodel.c we find: -

                    -
                    -DynamicsSection
                    -W_[2] = divmacro(X_[0]-X_[1],\"T[1]-T[2]\",DP_[0],\"R\");
                    -F_[0] = divmacro(W_[1]-W_[2],\"Q_flow[1]-Q_flow[2]\",DP_[1],\"C\");
                    -
                    -

                    -This suggests that the parameter division needs to be handled during -each function evaluation, probably causing the increased overhead. -

                    -

                    -The following command allows comparing the CPU times objectively. -

                    -

                    - -simulateModel(\"AixLib.Fluid.Examples.Performance.Example6\", stopTime=100, numberOfIntervals=1, method=\"Euler\", fixedstepsize=0.001, resultFile=\"Example6\"); - -

                    -

                    -See Jorissen et al. (2015) for a discussion. -

                    -

                    References

                    -
                      -
                    • -Filip Jorissen, Michael Wetter and Lieve Helsen.
                      -Simulation speed analysis and improvements of Modelica -models for building energy simulation.
                      -Submitted: 11th Modelica Conference. Paris, France. Sep. 2015. -
                    • -
                    -"), - __Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/Examples/Performance/Example6.mos" - "Simulate and plot")); +
                      +
                    • + April 11, 2016 by Michael Wetter:
                      + Corrected wrong hyperlink in documentation for + issue 450. +
                    • +
                    • + July 14, 2015, by Michael Wetter:
                      + Revised documentation. +
                    • +
                    • + April 17, 2015, by Filip Jorissen:
                      + First implementation. +
                    • +
                    + ",info=" +

                    This example, together with + + AixLib.Fluid.Examples.Performance.Example7, + illustrates the overhead + generated by divisions by parameters. See Jorissen et al. (2015) for a complementary discussion. +

                    +

                    + Running the following commands allows comparing the CPU times of the two models, + disregarding as much as possible the influence of the integrator: +

                    +
                    + simulateModel(\"AixLib.Fluid.Examples.PerformanceExamples.Example6\", stopTime=100, numberOfIntervals=1, method=\"Rkfix4\", fixedstepsize=0.001, resultFile=\"Example6\");
                    + simulateModel(\"AixLib.Fluid.Examples.PerformanceExamples.Example7\", stopTime=100, numberOfIntervals=1, method=\"Rkfix4\", fixedstepsize=0.001, resultFile=\"Example7\");
                    + 
                    +

                    + Comparing the CPU times indicates a speed improvement of 56%. + This difference almost disappears when adding annotation(Evaluate=true) + to R and C. +

                    +

                    + In dsmodel.c we find: +

                    +
                    + DynamicsSection
                    + W_[2] = divmacro(X_[0]-X_[1],\"T[1]-T[2]\",DP_[0],\"R\");
                    + F_[0] = divmacro(W_[1]-W_[2],\"Q_flow[1]-Q_flow[2]\",DP_[1],\"C\");
                    + 
                    +

                    + This suggests that the parameter division needs to be handled during + each function evaluation, probably causing the increased overhead. +

                    +

                    + The following command allows comparing the CPU times objectively. +

                    +

                    + + simulateModel(\"AixLib.Fluid.Examples.Performance.Example6\", stopTime=100, numberOfIntervals=1, method=\"Euler\", fixedstepsize=0.001, resultFile=\"Example6\"); + +

                    +

                    + See Jorissen et al. (2015) for a discussion. +

                    +

                    References

                    +
                      +
                    • + Filip Jorissen, Michael Wetter and Lieve Helsen.
                      + Simulation speed analysis and improvements of Modelica + models for building energy simulation.
                      + Submitted: 11th Modelica Conference. Paris, France. Sep. 2015. +
                    • +
                    + "), + __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Examples/Performance/Example6.mos" + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end Example6; diff --git a/AixLib/Fluid/Examples/Performance/Example7.mo b/AixLib/Fluid/Examples/Performance/Example7.mo index 4974efd90f..90dd478a50 100644 --- a/AixLib/Fluid/Examples/Performance/Example7.mo +++ b/AixLib/Fluid/Examples/Performance/Example7.mo @@ -20,34 +20,34 @@ equation annotation (Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-120, -40},{40,60}}), graphics={Text( extent={{-62,24},{-18,-4}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="See code")}), experiment( Tolerance=1e-6, StopTime=100), Documentation(revisions=" -
                      -
                    • -April 11, 2016 by Michael Wetter:
                      -Corrected wrong hyperlink in documentation for -issue 450. -
                    • -
                    • -July 14, 2015, by Michael Wetter:
                      -Revised documentation. -
                    • -
                    • -April 17, 2015, by Filip Jorissen:
                      -First implementation. -
                    • -
                    -", info=" -

                    -See - -AixLib.Fluid.Examples.Performance.Example6 for the documentation. -

                    -"), - __Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/Examples/Performance/Example7.mos" - "Simulate and plot")); +
                      +
                    • + April 11, 2016 by Michael Wetter:
                      + Corrected wrong hyperlink in documentation for + issue 450. +
                    • +
                    • + July 14, 2015, by Michael Wetter:
                      + Revised documentation. +
                    • +
                    • + April 17, 2015, by Filip Jorissen:
                      + First implementation. +
                    • +
                    + ",info=" +

                    + See + + AixLib.Fluid.Examples.Performance.Example6 for the documentation. +

                    + "), + __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Examples/Performance/Example7.mos" + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end Example7; diff --git a/AixLib/Fluid/Examples/Performance/Example8.mo b/AixLib/Fluid/Examples/Performance/Example8.mo index 77e6ebaacd..e8ab71e005 100644 --- a/AixLib/Fluid/Examples/Performance/Example8.mo +++ b/AixLib/Fluid/Examples/Performance/Example8.mo @@ -7,35 +7,35 @@ model Example8 "Common subexpression elimination example" annotation (Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-120, -40},{40,60}}), graphics={Text( extent={{-62,24},{-18,-4}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="See code")}), experiment( Tolerance=1e-6, StopTime=50), Documentation(revisions=" -
                      -
                    • -July 14, 2015, by Michael Wetter:
                      -Revised documentation. -
                    • -
                    • -June 18, 2015, by Filip Jorissen:
                      -First implementation. -
                    • -
                    -", info=" -

                    -This is a very simple example demonstrating common subexpression elimination. -The Dymola generated C-code of this model is: -

                    -
                    -W_[0] = sin(Time+1);
                    -W_[1] = W_[0];
                    -
                    -

                    -Hence, the sine and addition are evaluated once only, which is more efficient. -

                    -"), - __Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/Examples/Performance/Example8.mos" - "Simulate and plot")); +
                      +
                    • + July 14, 2015, by Michael Wetter:
                      + Revised documentation. +
                    • +
                    • + June 18, 2015, by Filip Jorissen:
                      + First implementation. +
                    • +
                    + ",info=" +

                    + This is a very simple example demonstrating common subexpression elimination. + The Dymola generated C-code of this model is: +

                    +
                    + W_[0] = sin(Time+1);
                    + W_[1] = W_[0];
                    + 
                    +

                    + Hence, the sine and addition are evaluated once only, which is more efficient. +

                    + "), + __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Examples/Performance/Example8.mos" + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end Example8; diff --git a/AixLib/Fluid/Examples/Performance/PressureDrop/ParallelDp.mo b/AixLib/Fluid/Examples/Performance/PressureDrop/ParallelDp.mo index a6ce272f35..2a6ca0cf8a 100644 --- a/AixLib/Fluid/Examples/Performance/PressureDrop/ParallelDp.mo +++ b/AixLib/Fluid/Examples/Performance/PressureDrop/ParallelDp.mo @@ -4,9 +4,9 @@ model ParallelDp extends Modelica.Icons.Example; package Medium = AixLib.Media.Air; parameter Integer nRes(min=2) = 10 "Number of resistances"; - parameter Modelica.SIunits.PressureDifference dp_nominal=1 + parameter Modelica.Units.SI.PressureDifference dp_nominal=1 "Pressure drop at nominal mass flow rate"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal=1 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=1 "Nominal mass flow rate"; Sources.Boundary_pT sou( @@ -47,22 +47,22 @@ equation annotation (Line(points={{-10,0},{-20,0},{-40,0}}, color={0,127,255})); annotation ( Documentation(revisions=" -
                      -
                    • -May 26, 2017, by Filip Jorissen:
                      -First implementation. -
                    • -
                    -", info=" -

                    -Example model that demonstrates how translation statistics -depend on the type of boundary conditions, -the parallel or series configuration of the components -and the value of parameter from_dp. -

                    -"), +
                      +
                    • + May 26, 2017, by Filip Jorissen:
                      + First implementation. +
                    • +
                    + ",info=" +

                    + Example model that demonstrates how translation statistics + depend on the type of boundary conditions, + the parallel or series configuration of the components + and the value of parameter from_dp. +

                    + "), experiment(Tolerance=1e-6, StopTime=1), - __Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/Examples/Performance/PressureDrop/ParallelDp.mos" - "Simulate and plot")); + __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Examples/Performance/PressureDrop/ParallelDp.mos" + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end ParallelDp; diff --git a/AixLib/Fluid/Examples/Performance/PressureDrop/ParallelDpOptimised.mo b/AixLib/Fluid/Examples/Performance/PressureDrop/ParallelDpOptimised.mo index b9977434f9..c1bc61b87e 100644 --- a/AixLib/Fluid/Examples/Performance/PressureDrop/ParallelDpOptimised.mo +++ b/AixLib/Fluid/Examples/Performance/PressureDrop/ParallelDpOptimised.mo @@ -3,20 +3,21 @@ model ParallelDpOptimised "Parallel connection with prescribed pressure difference and optimised parameters" extends ParallelDp(resParallel(each from_dp=true)); annotation (Documentation(revisions=" -
                      -
                    • -May 26, 2017, by Filip Jorissen:
                      -First implementation. -
                    • -
                    -", info=" -

                    -Example model that demonstrates how translation statistics -depend on the type of boundary conditions, -the parallel or series configuration of the components -and the value of parameter from_dp. -

                    -"), experiment(Tolerance=1e-6, StopTime=1), __Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/Examples/Performance/PressureDrop/ParallelDpOptimised.mos" - "Simulate and plot")); +
                      +
                    • + May 26, 2017, by Filip Jorissen:
                      + First implementation. +
                    • +
                    + ",info=" +

                    + Example model that demonstrates how translation statistics + depend on the type of boundary conditions, + the parallel or series configuration of the components + and the value of parameter from_dp. +

                    + "),experiment(Tolerance=1e-6, StopTime=1), + __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Examples/Performance/PressureDrop/ParallelDpOptimised.mos" + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end ParallelDpOptimised; diff --git a/AixLib/Fluid/Examples/Performance/PressureDrop/ParallelFlow.mo b/AixLib/Fluid/Examples/Performance/PressureDrop/ParallelFlow.mo index b9aced1fe4..5c4bf86728 100644 --- a/AixLib/Fluid/Examples/Performance/PressureDrop/ParallelFlow.mo +++ b/AixLib/Fluid/Examples/Performance/PressureDrop/ParallelFlow.mo @@ -4,9 +4,9 @@ model ParallelFlow extends Modelica.Icons.Example; package Medium = AixLib.Media.Air; parameter Integer nRes(min=2) = 10 "Number of resistances"; - parameter Modelica.SIunits.PressureDifference dp_nominal=1 + parameter Modelica.Units.SI.PressureDifference dp_nominal=1 "Pressure drop at nominal mass flow rate"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal=1 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=1 "Nominal mass flow rate"; Sources.MassFlowSource_T sou( @@ -46,22 +46,22 @@ equation connect(pulse_m_flow.y, sou.m_flow_in) annotation (Line(points={{-79,8},{-62,8}}, color={0,0,127})); annotation ( Documentation(revisions=" -
                      -
                    • -May 26, 2017, by Filip Jorissen:
                      -First implementation. -
                    • -
                    -", info=" -

                    -Example model that demonstrates how translation statistics -depend on the type of boundary conditions, -the parallel or series configuration of the components -and the value of parameter from_dp. -

                    -"), +
                      +
                    • + May 26, 2017, by Filip Jorissen:
                      + First implementation. +
                    • +
                    + ",info=" +

                    + Example model that demonstrates how translation statistics + depend on the type of boundary conditions, + the parallel or series configuration of the components + and the value of parameter from_dp. +

                    + "), experiment(Tolerance=1e-6, StopTime=1), - __Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/Examples/Performance/PressureDrop/ParallelFlow.mos" - "Simulate and plot")); + __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Examples/Performance/PressureDrop/ParallelFlow.mos" + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end ParallelFlow; diff --git a/AixLib/Fluid/Examples/Performance/PressureDrop/ParallelFlowOptimised.mo b/AixLib/Fluid/Examples/Performance/PressureDrop/ParallelFlowOptimised.mo index 632f50bb89..2b51775d60 100644 --- a/AixLib/Fluid/Examples/Performance/PressureDrop/ParallelFlowOptimised.mo +++ b/AixLib/Fluid/Examples/Performance/PressureDrop/ParallelFlowOptimised.mo @@ -4,20 +4,20 @@ model ParallelFlowOptimised extends ParallelFlow( resParallel(each from_dp=true)); annotation (Documentation(revisions=" -
                      -
                    • -May 26, 2017, by Filip Jorissen:
                      -First implementation. -
                    • -
                    -", info=" -

                    -Example model that demonstrates how translation statistics -depend on the type of boundary conditions, -the parallel or series configuration of the components -and the value of parameter from_dp. -

                    -"), experiment(Tolerance=1e-6, StopTime=1), __Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/Examples/Performance/PressureDrop/ParallelFlowOptimised.mos" - "Simulate and plot")); +
                      +
                    • + May 26, 2017, by Filip Jorissen:
                      + First implementation. +
                    • +
                    + ",info=" +

                    + Example model that demonstrates how translation statistics + depend on the type of boundary conditions, + the parallel or series configuration of the components + and the value of parameter from_dp. +

                    + "),experiment(Tolerance=1e-6, StopTime=1), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Examples/Performance/PressureDrop/ParallelFlowOptimised.mos" + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end ParallelFlowOptimised; diff --git a/AixLib/Fluid/Examples/Performance/PressureDrop/SeriesDp.mo b/AixLib/Fluid/Examples/Performance/PressureDrop/SeriesDp.mo index aa3bced38a..d314afceb8 100644 --- a/AixLib/Fluid/Examples/Performance/PressureDrop/SeriesDp.mo +++ b/AixLib/Fluid/Examples/Performance/PressureDrop/SeriesDp.mo @@ -4,9 +4,9 @@ model SeriesDp extends Modelica.Icons.Example; package Medium = AixLib.Media.Air; parameter Integer nRes(min=2) = 10 "Number of resistances"; - parameter Modelica.SIunits.PressureDifference dp_nominal=1 + parameter Modelica.Units.SI.PressureDifference dp_nominal=1 "Pressure drop at nominal mass flow rate"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal=1 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=1 "Nominal mass flow rate"; Sources.Boundary_pT sou( @@ -45,22 +45,22 @@ equation annotation (Line(points={{-10,0},{-20,0},{-40,0}}, color={0,127,255})); annotation ( Documentation(revisions=" -
                      -
                    • -May 26, 2017, by Filip Jorissen:
                      -First implementation. -
                    • -
                    -", info=" -

                    -Example model that demonstrates how translation statistics -depend on the type of boundary conditions, -the parallel or series configuration of the components -and the value of parameter from_dp. -

                    -"), +
                      +
                    • + May 26, 2017, by Filip Jorissen:
                      + First implementation. +
                    • +
                    + ",info=" +

                    + Example model that demonstrates how translation statistics + depend on the type of boundary conditions, + the parallel or series configuration of the components + and the value of parameter from_dp. +

                    + "), experiment(Tolerance=1e-6, StopTime=1), - __Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/Examples/Performance/PressureDrop/SeriesDp.mos" - "Simulate and plot")); + __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Examples/Performance/PressureDrop/SeriesDp.mos" + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end SeriesDp; diff --git a/AixLib/Fluid/Examples/Performance/PressureDrop/SeriesDpOptimised.mo b/AixLib/Fluid/Examples/Performance/PressureDrop/SeriesDpOptimised.mo index b58f7854c5..bcb15aed11 100644 --- a/AixLib/Fluid/Examples/Performance/PressureDrop/SeriesDpOptimised.mo +++ b/AixLib/Fluid/Examples/Performance/PressureDrop/SeriesDpOptimised.mo @@ -4,20 +4,20 @@ model SeriesDpOptimised extends SeriesDp( resSeries(each from_dp=false)); annotation (Documentation(revisions=" -
                      -
                    • -May 26, 2017, by Filip Jorissen:
                      -First implementation. -
                    • -
                    -", info=" -

                    -Example model that demonstrates how translation statistics -depend on the type of boundary conditions, -the parallel or series configuration of the components -and the value of parameter from_dp. -

                    -"), experiment(Tolerance=1e-6, StopTime=1), __Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/Examples/Performance/PressureDrop/SeriesDpOptimised.mos" - "Simulate and plot")); +
                      +
                    • + May 26, 2017, by Filip Jorissen:
                      + First implementation. +
                    • +
                    + ",info=" +

                    + Example model that demonstrates how translation statistics + depend on the type of boundary conditions, + the parallel or series configuration of the components + and the value of parameter from_dp. +

                    + "),experiment(Tolerance=1e-6, StopTime=1), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Examples/Performance/PressureDrop/SeriesDpOptimised.mos" + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end SeriesDpOptimised; diff --git a/AixLib/Fluid/Examples/Performance/PressureDrop/SeriesFlow.mo b/AixLib/Fluid/Examples/Performance/PressureDrop/SeriesFlow.mo index e0be8094e4..41649c28e4 100644 --- a/AixLib/Fluid/Examples/Performance/PressureDrop/SeriesFlow.mo +++ b/AixLib/Fluid/Examples/Performance/PressureDrop/SeriesFlow.mo @@ -4,9 +4,9 @@ model SeriesFlow extends Modelica.Icons.Example; package Medium = AixLib.Media.Air; parameter Integer nRes(min=2) = 10 "Number of resistances"; - parameter Modelica.SIunits.PressureDifference dp_nominal=1 + parameter Modelica.Units.SI.PressureDifference dp_nominal=1 "Pressure drop at nominal mass flow rate"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal=1 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=1 "Nominal mass flow rate"; Sources.MassFlowSource_T sou( @@ -44,22 +44,22 @@ equation connect(sou.m_flow_in, pulse_p.y) annotation (Line(points={{-62,8},{-62,8},{ -79,8}}, color={0,0,127})); annotation ( Documentation(revisions=" -
                      -
                    • -May 26, 2017, by Filip Jorissen:
                      -First implementation. -
                    • -
                    -", info=" -

                    -Example model that demonstrates how translation statistics -depend on the type of boundary conditions, -the parallel or series configuration of the components -and the value of parameter from_dp. -

                    -"), +
                      +
                    • + May 26, 2017, by Filip Jorissen:
                      + First implementation. +
                    • +
                    + ",info=" +

                    + Example model that demonstrates how translation statistics + depend on the type of boundary conditions, + the parallel or series configuration of the components + and the value of parameter from_dp. +

                    + "), experiment(Tolerance=1e-06, StopTime=1), - __Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/Examples/Performance/PressureDrop/SeriesFlow.mos" - "Simulate and plot")); + __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Examples/Performance/PressureDrop/SeriesFlow.mos" + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end SeriesFlow; diff --git a/AixLib/Fluid/Examples/Performance/PressureDrop/SeriesFlowOptimised.mo b/AixLib/Fluid/Examples/Performance/PressureDrop/SeriesFlowOptimised.mo index 6cc42eea1e..5cfdc7dde4 100644 --- a/AixLib/Fluid/Examples/Performance/PressureDrop/SeriesFlowOptimised.mo +++ b/AixLib/Fluid/Examples/Performance/PressureDrop/SeriesFlowOptimised.mo @@ -3,20 +3,20 @@ model SeriesFlowOptimised "Series connection with prescribed flow and optimised parameters" extends SeriesFlow(resSeries(each from_dp=false)); annotation (Documentation(revisions=" -
                      -
                    • -May 26, 2017, by Filip Jorissen:
                      -First implementation. -
                    • -
                    -", info=" -

                    -Example model that demonstrates how translation statistics -depend on the type of boundary conditions, -the parallel or series configuration of the components -and the value of parameter from_dp. -

                    -"), experiment(Tolerance=1e-6, StopTime=1), __Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/Examples/Performance/PressureDrop/SeriesFlowOptimised.mos" - "Simulate and plot")); +
                      +
                    • + May 26, 2017, by Filip Jorissen:
                      + First implementation. +
                    • +
                    + ",info=" +

                    + Example model that demonstrates how translation statistics + depend on the type of boundary conditions, + the parallel or series configuration of the components + and the value of parameter from_dp. +

                    + "),experiment(Tolerance=1e-6, StopTime=1), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Examples/Performance/PressureDrop/SeriesFlowOptimised.mos" + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end SeriesFlowOptimised; diff --git a/AixLib/Fluid/Examples/Performance/PressureDrop/SeriesParallelDp.mo b/AixLib/Fluid/Examples/Performance/PressureDrop/SeriesParallelDp.mo index bc281eb58a..382902c4bf 100644 --- a/AixLib/Fluid/Examples/Performance/PressureDrop/SeriesParallelDp.mo +++ b/AixLib/Fluid/Examples/Performance/PressureDrop/SeriesParallelDp.mo @@ -4,9 +4,9 @@ model SeriesParallelDp extends Modelica.Icons.Example; package Medium = AixLib.Media.Air; parameter Integer nRes(min=2) = 10 "Number of resistances"; - parameter Modelica.SIunits.PressureDifference dp_nominal=1 + parameter Modelica.Units.SI.PressureDifference dp_nominal=1 "Pressure drop at nominal mass flow rate"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal=1 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=1 "Nominal mass flow rate"; Sources.Boundary_pT sou( @@ -56,22 +56,22 @@ equation connect(pulse_m_flow.y, sou.p_in) annotation (Line(points={{-79,8},{-62,8}}, color={0,0,127})); annotation ( Documentation(revisions=" -
                      -
                    • -May 26, 2017, by Filip Jorissen:
                      -First implementation. -
                    • -
                    -", info=" -

                    -Example model that demonstrates how translation statistics -depend on the type of boundary conditions, -the parallel or series configuration of the components -and the value of parameter from_dp. -

                    -"), +
                      +
                    • + May 26, 2017, by Filip Jorissen:
                      + First implementation. +
                    • +
                    + ",info=" +

                    + Example model that demonstrates how translation statistics + depend on the type of boundary conditions, + the parallel or series configuration of the components + and the value of parameter from_dp. +

                    + "), experiment(Tolerance=1e-6, StopTime=1), - __Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/Examples/Performance/PressureDrop/SeriesParallelDp.mos" - "Simulate and plot")); + __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Examples/Performance/PressureDrop/SeriesParallelDp.mos" + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end SeriesParallelDp; diff --git a/AixLib/Fluid/Examples/Performance/PressureDrop/SeriesParallelDpOptimised.mo b/AixLib/Fluid/Examples/Performance/PressureDrop/SeriesParallelDpOptimised.mo index 5c086b073f..d66cfda66d 100644 --- a/AixLib/Fluid/Examples/Performance/PressureDrop/SeriesParallelDpOptimised.mo +++ b/AixLib/Fluid/Examples/Performance/PressureDrop/SeriesParallelDpOptimised.mo @@ -5,20 +5,20 @@ model SeriesParallelDpOptimised res2(from_dp=true), resParallel(each from_dp=true)); annotation (Documentation(revisions=" -
                      -
                    • -May 26, 2017, by Filip Jorissen:
                      -First implementation. -
                    • -
                    -", info=" -

                    -Example model that demonstrates how translation statistics -depend on the type of boundary conditions, -the parallel or series configuration of the components -and the value of parameter from_dp. -

                    -"), experiment(Tolerance=1e-6, StopTime=1), __Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/Examples/Performance/PressureDrop/SeriesParallelDpOptimised.mos" - "Simulate and plot")); +
                      +
                    • + May 26, 2017, by Filip Jorissen:
                      + First implementation. +
                    • +
                    + ",info=" +

                    + Example model that demonstrates how translation statistics + depend on the type of boundary conditions, + the parallel or series configuration of the components + and the value of parameter from_dp. +

                    + "),experiment(Tolerance=1e-6, StopTime=1), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Examples/Performance/PressureDrop/SeriesParallelDpOptimised.mos" + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end SeriesParallelDpOptimised; diff --git a/AixLib/Fluid/Examples/Performance/PressureDrop/SeriesParallelFlow.mo b/AixLib/Fluid/Examples/Performance/PressureDrop/SeriesParallelFlow.mo index b4a2532d22..97e8499206 100644 --- a/AixLib/Fluid/Examples/Performance/PressureDrop/SeriesParallelFlow.mo +++ b/AixLib/Fluid/Examples/Performance/PressureDrop/SeriesParallelFlow.mo @@ -4,9 +4,9 @@ model SeriesParallelFlow extends Modelica.Icons.Example; package Medium = AixLib.Media.Air; parameter Integer nRes(min=2) = 10 "Number of resistances"; - parameter Modelica.SIunits.PressureDifference dp_nominal=1 + parameter Modelica.Units.SI.PressureDifference dp_nominal=1 "Pressure drop at nominal mass flow rate"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal=1 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=1 "Nominal mass flow rate"; Sources.MassFlowSource_T sou( @@ -54,22 +54,22 @@ equation connect(res2.port_b, sin.ports[1]) annotation (Line(points={{50,0},{65,0},{80,0}}, color={0,127,255})); annotation ( Documentation(revisions=" -
                      -
                    • -May 26, 2017, by Filip Jorissen:
                      -First implementation. -
                    • -
                    -", info=" -

                    -Example model that demonstrates how translation statistics -depend on the type of boundary conditions, -the parallel or series configuration of the components -and the value of parameter from_dp. -

                    -"), +
                      +
                    • + May 26, 2017, by Filip Jorissen:
                      + First implementation. +
                    • +
                    + ",info=" +

                    + Example model that demonstrates how translation statistics + depend on the type of boundary conditions, + the parallel or series configuration of the components + and the value of parameter from_dp. +

                    + "), experiment(Tolerance=1e-6, StopTime=1), - __Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/Examples/Performance/PressureDrop/SeriesParallelFlow.mos" - "Simulate and plot")); + __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Examples/Performance/PressureDrop/SeriesParallelFlow.mos" + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end SeriesParallelFlow; diff --git a/AixLib/Fluid/Examples/Performance/PressureDrop/SeriesParallelFlowOptimised.mo b/AixLib/Fluid/Examples/Performance/PressureDrop/SeriesParallelFlowOptimised.mo index dc46727556..ae351c0cc5 100644 --- a/AixLib/Fluid/Examples/Performance/PressureDrop/SeriesParallelFlowOptimised.mo +++ b/AixLib/Fluid/Examples/Performance/PressureDrop/SeriesParallelFlowOptimised.mo @@ -5,20 +5,20 @@ model SeriesParallelFlowOptimised res2(from_dp=false), resParallel(each from_dp=true)); annotation (Documentation(revisions=" -
                      -
                    • -May 26, 2017, by Filip Jorissen:
                      -First implementation. -
                    • -
                    -", info=" -

                    -Example model that demonstrates how translation statistics -depend on the type of boundary conditions, -the parallel or series configuration of the components -and the value of parameter from_dp. -

                    -"), experiment(Tolerance=1e-6, StopTime=1), __Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/Examples/Performance/PressureDrop/SeriesParallelFlowOptimised.mos" - "Simulate and plot")); +
                      +
                    • + May 26, 2017, by Filip Jorissen:
                      + First implementation. +
                    • +
                    + ",info=" +

                    + Example model that demonstrates how translation statistics + depend on the type of boundary conditions, + the parallel or series configuration of the components + and the value of parameter from_dp. +

                    + "),experiment(Tolerance=1e-6, StopTime=1), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Examples/Performance/PressureDrop/SeriesParallelFlowOptimised.mos" + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end SeriesParallelFlowOptimised; diff --git a/AixLib/Fluid/Examples/ResistanceVolumeFlowReversal.mo b/AixLib/Fluid/Examples/ResistanceVolumeFlowReversal.mo index de3289c232..cc7319c8fd 100644 --- a/AixLib/Fluid/Examples/ResistanceVolumeFlowReversal.mo +++ b/AixLib/Fluid/Examples/ResistanceVolumeFlowReversal.mo @@ -57,7 +57,6 @@ model ResistanceVolumeFlowReversal each m_flow_nominal=m_flow_nominal/nRes.k, each nPorts=2, each energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyState, - each massDynamics=Modelica.Fluid.Types.Dynamics.SteadyState, each allowFlowReversal=true) "Mixing volumes for enthalpy circuit" annotation (Placement(transformation(extent={{60,-66},{40,-46}}))); equation @@ -101,86 +100,87 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Examples/ResistanceVolumeFlowReversal.mos" "Simulate and plot"), Documentation(info=" -

                    -This model demonstrates the impact of the allowFlowReversal parameter on the size -of nonlinear systems of equations. The user can change the parameter value in the allowFlowReversal -block and rerun the simulation. The results are also demonstrated below for nRes.k = 10, -which is the number of parallel branches containing one pressure drop element and one mixing volume each. -

                    -

                    -This model was created to demonstrate the influence of a new implementation of - -AixLib.Fluid.Interfaces.ConservationEquation. -The old implementation used the actualStream() function -whereas the new implementation uses the semiLinear() -function. This change allows Dymola to exploit knowledge about the min and max attributes -of m_flow. -When Dymola knows in which way the medium will flow, nonlinear systems can be simplified or completely removed. -This is illustrated by the results below. -See issue 216 for a discussion. -

                    -

                    -Note that Dymola 2015FD01 can only reliable solve the last case. For the other -two cases the Newton solver of the nonlinear system does not converge. -

                    -

                    -These results were generated using Dymola 2015FD01 64 bit on Ubuntu 14.04 -and with Evaluate=false. -

                    -

                    -ResistanceVolumeFlowReversal = true -

                    -

                    -Sizes of nonlinear systems of equations: {6, 11, 56}
                    -Sizes after manipulation of the nonlinear systems: {1, 9, 12} -

                    -

                    -ResistanceVolumeFlowReversal = false -

                    -

                    -Old implementation -

                    -

                    -Sizes of nonlinear systems of equations: {6, 11, 44}
                    -Sizes after manipulation of the nonlinear systems: {1, 9, 11} -

                    -

                    -New implementation -

                    -

                    -Sizes of nonlinear systems of equations: {6, 11, 4}
                    -Sizes after manipulation of the nonlinear systems: {1, 9, 1} -

                    -", revisions=" -
                      -
                    • -September 21, 2017, by Michael Wetter:
                      -Corrected parameterization to be independent of k.
                      -This is for - -AixLib, #825. -
                    • -
                    • -May 8, 2017, by Michael Wetter:
                      -Updated heater model.
                      -This is for - -AixLib, #763. -
                    • -
                    • -April 11, 2016 by Michael Wetter:
                      -Corrected wrong hyperlink in documentation for -issue 450. -
                    • -
                    • -February 22, 2016, by Michael Wetter:
                      -Removed parameter dynamicBalance for -issue 411. -
                    • -
                    • -April 17, 2015, by Filip Jorissen:
                      -First implementation. -
                    • -
                    -")); +

                    + This model demonstrates the impact of the allowFlowReversal parameter on the size + of nonlinear systems of equations. The user can change the parameter value in the allowFlowReversal + block and rerun the simulation. The results are also demonstrated below for nRes.k = 10, + which is the number of parallel branches containing one pressure drop element and one mixing volume each. +

                    +

                    + This model was created to demonstrate the influence of a new implementation of + + AixLib.Fluid.Interfaces.ConservationEquation. + The old implementation used the actualStream() function + whereas the new implementation uses the semiLinear() + function. This change allows Dymola to exploit knowledge about the min and max attributes + of m_flow. + When Dymola knows in which way the medium will flow, nonlinear systems can be simplified or completely removed. + This is illustrated by the results below. + See issue 216 for a discussion. +

                    +

                    + Note that Dymola 2015FD01 can only reliable solve the last case. For the other + two cases the Newton solver of the nonlinear system does not converge. +

                    +

                    + These results were generated using Dymola 2015FD01 64 bit on Ubuntu 14.04 + and with Evaluate=false. +

                    +

                    + ResistanceVolumeFlowReversal = true +

                    +

                    + Sizes of nonlinear systems of equations: {6, 11, 56}
                    + Sizes after manipulation of the nonlinear systems: {1, 9, 12} +

                    +

                    + ResistanceVolumeFlowReversal = false +

                    +

                    + Old implementation +

                    +

                    + Sizes of nonlinear systems of equations: {6, 11, 44}
                    + Sizes after manipulation of the nonlinear systems: {1, 9, 11} +

                    +

                    + New implementation +

                    +

                    + Sizes of nonlinear systems of equations: {6, 11, 4}
                    + Sizes after manipulation of the nonlinear systems: {1, 9, 1} +

                    + ",revisions=" +
                      +
                    • + September 21, 2017, by Michael Wetter:
                      + Corrected parameterization to be independent of k.
                      + This is for + + AixLib, #825. +
                    • +
                    • + May 8, 2017, by Michael Wetter:
                      + Updated heater model.
                      + This is for + + AixLib, #763. +
                    • +
                    • + April 11, 2016 by Michael Wetter:
                      + Corrected wrong hyperlink in documentation for + issue 450. +
                    • +
                    • + February 22, 2016, by Michael Wetter:
                      + Removed parameter dynamicBalance for + issue 411. +
                    • +
                    • + April 17, 2015, by Filip Jorissen:
                      + First implementation. +
                    • +
                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end ResistanceVolumeFlowReversal; diff --git a/AixLib/Fluid/Examples/SimpleHouse.mo b/AixLib/Fluid/Examples/SimpleHouse.mo index a11b757ca2..dc4dfa01a0 100644 --- a/AixLib/Fluid/Examples/SimpleHouse.mo +++ b/AixLib/Fluid/Examples/SimpleHouse.mo @@ -6,18 +6,18 @@ model SimpleHouse package MediumAir = AixLib.Media.Air; package MediumWater = AixLib.Media.Water; - parameter Modelica.SIunits.Area A_wall = 100 "Wall area"; - parameter Modelica.SIunits.Area A_win = 5 "Window area"; + parameter Modelica.Units.SI.Area A_wall=100 "Wall area"; + parameter Modelica.Units.SI.Area A_win=5 "Window area"; parameter Real g_win(min=0, max=1, unit="1") = 0.3 "Solar heat gain coefficient of window"; - parameter Modelica.SIunits.Volume V_zone = A_wall*3 "Wall area"; - parameter Modelica.SIunits.HeatFlowRate QHea_nominal = 700 + parameter Modelica.Units.SI.Volume V_zone=A_wall*3 "Wall area"; + parameter Modelica.Units.SI.HeatFlowRate QHea_nominal=700 "Nominal capacity of heating system"; - parameter Modelica.SIunits.MassFlowRate mWat_flow_nominal=QHea_nominal/10/4200 - "Nominal mass flow rate for water loop"; - parameter Modelica.SIunits.MassFlowRate mAir_flow_nominal=V_zone*2*1.2/3600 + parameter Modelica.Units.SI.MassFlowRate mWat_flow_nominal=QHea_nominal/10/ + 4200 "Nominal mass flow rate for water loop"; + parameter Modelica.Units.SI.MassFlowRate mAir_flow_nominal=V_zone*2*1.2/3600 "Nominal mass flow rate for air loop"; - parameter Modelica.SIunits.PressureDifference dpAir_nominal=200 + parameter Modelica.Units.SI.PressureDifference dpAir_nominal=200 "Pressure drop at nominal mass flow rate for air loop"; parameter Boolean allowFlowReversal=false "= false because flow will not reverse in these circuits"; @@ -257,7 +257,7 @@ equation pattern=LinePattern.None), Text( extent={{-78,182},{-212,198}}, - lineColor={0,0,127}, + textColor={0,0,127}, fillColor={255,213,170}, fillPattern=FillPattern.Solid, textString="Cooling and ventilation"), @@ -268,77 +268,78 @@ equation pattern=LinePattern.None), Text( extent={{98,20},{32,38}}, - lineColor={0,0,127}, + textColor={0,0,127}, fillColor={255,213,170}, fillPattern=FillPattern.Solid, textString="Wall"), Text( extent={{-148,-86},{-214,-68}}, - lineColor={0,0,127}, + textColor={0,0,127}, fillColor={255,213,170}, fillPattern=FillPattern.Solid, textString="Heating"), Text( extent={{-154,20},{-212,38}}, - lineColor={0,0,127}, + textColor={0,0,127}, fillColor={255,213,170}, fillPattern=FillPattern.Solid, textString="Weather")}), experiment(Tolerance=1e-06, StopTime=3.1536e+07), Documentation(revisions=" -
                      -
                    • -May 8, 2017, by Michael Wetter:
                      -Updated heater model.
                      -This is for - -AixLib, #763. -
                    • -
                    • -November 10, 2016, by Michael Wetter:
                      -Connected supply air temperature to outdoor air temperature, -added cooling to supply air, -changed capacity of heating system, switched heating pump off when heater is off, -and added proportional controller for the air damper.
                      -This is -for #584. -
                    • -
                    • -September 9, 2016, by Michael Wetter:
                      -Corrected error in window model, as the solar heat gain was -not multiplied with the window area. Dymola 2017 reported this -error due to mismatching units of W/m2 and W. -
                    • -
                    • -June 23, 2016, by Michael Wetter:
                      -Changed graphical annotation. -
                    • -
                    • -March 11, 2016, by Michael Wetter:
                      -Corrected wrong limits for hysAir so that -uLow < uHigh. -This is -for #429. -
                    • -
                    • -January 22, 2016, by Michael Wetter:
                      -Corrected type declaration of pressure difference. -This is -for #404. -
                    • -
                    • -September 19, 2015, by Filip Jorissen:
                      -First implementation. -
                    • -
                    -", info=" -

                    -This model contains a simple model of a house -with a heating system, ventilation and weather boundary conditions. -It servers as a demonstration case of how the AixLib library can be used. -

                    -"), +
                      +
                    • + May 8, 2017, by Michael Wetter:
                      + Updated heater model.
                      + This is for + + AixLib, #763. +
                    • +
                    • + November 10, 2016, by Michael Wetter:
                      + Connected supply air temperature to outdoor air temperature, + added cooling to supply air, + changed capacity of heating system, switched heating pump off when heater is off, + and added proportional controller for the air damper.
                      + This is + for #584. +
                    • +
                    • + September 9, 2016, by Michael Wetter:
                      + Corrected error in window model, as the solar heat gain was + not multiplied with the window area. Dymola 2017 reported this + error due to mismatching units of W/m2 and W. +
                    • +
                    • + June 23, 2016, by Michael Wetter:
                      + Changed graphical annotation. +
                    • +
                    • + March 11, 2016, by Michael Wetter:
                      + Corrected wrong limits for hysAir so that + uLow < uHigh. + This is + for #429. +
                    • +
                    • + January 22, 2016, by Michael Wetter:
                      + Corrected type declaration of pressure difference. + This is + for #404. +
                    • +
                    • + September 19, 2015, by Filip Jorissen:
                      + First implementation. +
                    • +
                    + ",info=" +

                    + This model contains a simple model of a house + with a heating system, ventilation and weather boundary conditions. + It servers as a demonstration case of how the AixLib library can be used. +

                    + "), __Dymola_Commands(file= "modelica://AixLib/Resources/Scripts/Dymola/Fluid/Examples/SimpleHouse.mos" - "Simulate and plot")); + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end SimpleHouse; diff --git a/AixLib/Fluid/Examples/package.order b/AixLib/Fluid/Examples/package.order index 95932beedb..31d406bbbf 100644 --- a/AixLib/Fluid/Examples/package.order +++ b/AixLib/Fluid/Examples/package.order @@ -1,5 +1,3 @@ -PumpRadiatorThermostaticValve -PumpRadiatorValve ResistanceVolumeFlowReversal SimpleHouse FlowSystem diff --git a/AixLib/Fluid/FMI/Adaptors/Examples/ThermalZoneHVACNoExhaust.mo b/AixLib/Fluid/FMI/Adaptors/Examples/ThermalZoneHVACNoExhaust.mo index 228fa352f9..a2aab06a14 100644 --- a/AixLib/Fluid/FMI/Adaptors/Examples/ThermalZoneHVACNoExhaust.mo +++ b/AixLib/Fluid/FMI/Adaptors/Examples/ThermalZoneHVACNoExhaust.mo @@ -10,12 +10,12 @@ model ThermalZoneHVACNoExhaust "Adaptor for an HVAC system that is exposed through an FMI interface" annotation (Placement(transformation(extent={{20,0},{40,20}}))); - parameter Modelica.SIunits.HeatFlowRate Q_flow_nominal = 30*6*6 + parameter Modelica.Units.SI.HeatFlowRate Q_flow_nominal=30*6*6 "Nominal heat loss of the room"; - parameter Modelica.SIunits.Volume VRoo = 6*6*2.7 "Room volume"; + parameter Modelica.Units.SI.Volume VRoo=6*6*2.7 "Room volume"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal=VRoo*2*1.2/3600 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=VRoo*2*1.2/3600 "Nominal mass flow rate"; AixLib.Fluid.FMI.Adaptors.ThermalZone con( @@ -151,62 +151,63 @@ equation lineColor={0,0,127}, horizontalAlignment=TextAlignment.Left, textString="Simplified model of -an HVAC system -in Modelica that could -be exposed as an FMU"), + an HVAC system + in Modelica that could + be exposed as an FMU"), Text( extent={{90,118},{128,94}}, pattern=LinePattern.None, lineColor={0,0,127}, horizontalAlignment=TextAlignment.Left, textString="Simplified model of -a thermal zone that -may be in an FMU -(but is here for simplicity -also implemented in Modelica)")}), + a thermal zone that + may be in an FMU + (but is here for simplicity + also implemented in Modelica)")}), Documentation(info=" -

                    -This example demonstrates how to -use the adaptors - -AixLib.Fluid.FMI.Adaptors.HVAC -and - -AixLib.Fluid.FMI.Adaptors.ThermalZone -

                    -

                    -On the left hand side is an HVAC system with supply and return air stream. -These are all connected to the adaptor. -On the right of the adaptor is a simple room model, approximated by a volume with -first order dynamics and heat loss to the ambient. -

                    -

                    -Note that the there is zero net air flow into and out of the volume vol -because the adaptor hvacAda conserves mass. Hence, any infiltration or -exfiltration needs to be -connected to the adaptor hvacAda, rather than the volume vol. -

                    -", revisions=" -
                      -
                    • -March 11, 2020, by Michael Wetter:
                      -Removed fontSize in annotation.
                      -This is for -#1318. -
                    • -
                    • -November 29, 2016, by Michael Wetter:
                      -Added separate signal for outdoor temperature used by HVAC system. This is -to improve clarity regarding what signals are exchanged, see also -#598. -
                    • -
                    • -June 29, 2016, by Michael Wetter:
                      -First implementation. -
                    • -
                    -"), +

                    + This example demonstrates how to + use the adaptors + + AixLib.Fluid.FMI.Adaptors.HVAC + and + + AixLib.Fluid.FMI.Adaptors.ThermalZone +

                    +

                    + On the left hand side is an HVAC system with supply and return air stream. + These are all connected to the adaptor. + On the right of the adaptor is a simple room model, approximated by a volume with + first order dynamics and heat loss to the ambient. +

                    +

                    + Note that the there is zero net air flow into and out of the volume vol + because the adaptor hvacAda conserves mass. Hence, any infiltration or + exfiltration needs to be + connected to the adaptor hvacAda, rather than the volume vol. +

                    + ",revisions=" +
                      +
                    • + March 11, 2020, by Michael Wetter:
                      + Removed fontSize in annotation.
                      + This is for + #1318. +
                    • +
                    • + November 29, 2016, by Michael Wetter:
                      + Added separate signal for outdoor temperature used by HVAC system. This is + to improve clarity regarding what signals are exchanged, see also + #598. +
                    • +
                    • + June 29, 2016, by Michael Wetter:
                      + First implementation. +
                    • +
                    + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/Adaptors/Examples/ThermalZoneHVACNoExhaust.mos" "Simulate and plot"), - experiment(Tolerance=1e-6, StopTime=172800)); + experiment(Tolerance=1e-6, StopTime=172800), + __Dymola_LockedEditing="Model from IBPSA"); end ThermalZoneHVACNoExhaust; diff --git a/AixLib/Fluid/FMI/Adaptors/Examples/ThermalZoneHVACWithExhaust.mo b/AixLib/Fluid/FMI/Adaptors/Examples/ThermalZoneHVACWithExhaust.mo index 3ca7ad2a66..3a35958b8c 100644 --- a/AixLib/Fluid/FMI/Adaptors/Examples/ThermalZoneHVACWithExhaust.mo +++ b/AixLib/Fluid/FMI/Adaptors/Examples/ThermalZoneHVACWithExhaust.mo @@ -28,30 +28,31 @@ equation annotation ( Documentation(info=" -

                    -This example demonstrates how to -use the adaptors - -AixLib.Fluid.FMI.Adaptors.HVAC -and - -AixLib.Fluid.FMI.Adaptors.ThermalZone -

                    -

                    -It is identical to - -AixLib.Fluid.FMI.Adaptors.Examples.ThermalZoneHVACNoExhaust -except that it adds a forced exhaust air stream. -

                    -", revisions=" -
                      -
                    • -June 29, 2016, by Michael Wetter:
                      -First implementation. -
                    • -
                    -"), +

                    + This example demonstrates how to + use the adaptors + + AixLib.Fluid.FMI.Adaptors.HVAC + and + + AixLib.Fluid.FMI.Adaptors.ThermalZone +

                    +

                    + It is identical to + + AixLib.Fluid.FMI.Adaptors.Examples.ThermalZoneHVACNoExhaust + except that it adds a forced exhaust air stream. +

                    + ",revisions=" +
                      +
                    • + June 29, 2016, by Michael Wetter:
                      + First implementation. +
                    • +
                    + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/Adaptors/Examples/ThermalZoneHVACWithExhaust.mos" "Simulate and plot"), - experiment(Tolerance=1e-6, StopTime=172800)); + experiment(Tolerance=1e-6, StopTime=172800), + __Dymola_LockedEditing="Model from IBPSA"); end ThermalZoneHVACWithExhaust; diff --git a/AixLib/Fluid/FMI/Adaptors/HVAC.mo b/AixLib/Fluid/FMI/Adaptors/HVAC.mo index 361424ea01..a44c68aff9 100644 --- a/AixLib/Fluid/FMI/Adaptors/HVAC.mo +++ b/AixLib/Fluid/FMI/Adaptors/HVAC.mo @@ -35,8 +35,8 @@ model HVAC rotation=90, origin={-60,-120}))); Modelica.Blocks.Interfaces.RealOutput X_wZon[nPorts]( - each final unit="kg/kg") if - Medium.nXi > 0 + each final unit="kg/kg") + if Medium.nXi > 0 "Water mass fraction per total air mass of the backward flowing medium in the connector outlet" annotation (Placement(transformation(extent={{20,20},{-20,-20}}, rotation=90, @@ -79,8 +79,8 @@ protected annotation (Placement(transformation(extent={{-80,-10},{-60,10}}))); AixLib.Fluid.FMI.BaseClasses.X_w_toX x_w_toX( - redeclare final package Medium = Medium) if - Medium.nXi > 0 "Conversion from X_w to X" + redeclare final package Medium = Medium) + if Medium.nXi > 0 "Conversion from X_w to X" annotation (Placement(transformation(extent={{40,-40},{20,-20}}))); Modelica.Blocks.Sources.RealExpression hSup[nPorts]( @@ -90,14 +90,14 @@ protected RealVectorExpression XiSup[nPorts]( each final n = Medium.nXi, - final y={inStream(ports[i].Xi_outflow) for i in 1:nPorts}) if - Medium.nXi > 0 "Water vapor concentration of supply air" + final y={inStream(ports[i].Xi_outflow) for i in 1:nPorts}) + if Medium.nXi > 0 "Water vapor concentration of supply air" annotation (Placement(transformation(extent={{-40,30},{-20,50}}))); RealVectorExpression CSup[nPorts]( each final n=Medium.nC, - final y={inStream(ports[i].C_outflow) for i in 1:nPorts}) if - Medium.nC > 0 "Trace substance concentration of supply air" + final y={inStream(ports[i].C_outflow) for i in 1:nPorts}) + if Medium.nC > 0 "Trace substance concentration of supply air" annotation (Placement(transformation(extent={{-40,10},{-20,30}}))); /////////////////////////////////////////////////////////////////////////// @@ -128,18 +128,18 @@ protected borderPattern=BorderPattern.Raised), Text( extent={{-96,15},{96,-15}}, - lineColor={0,0,0}, + textColor={0,0,0}, textString="%y"), Text( extent={{-150,90},{140,50}}, textString="%name", - lineColor={0,0,255})}), Documentation(info=" -

                    -The (time varying) vector Real output signal of this block can be defined in its -parameter menu via variable y. The purpose is to support the -easy definition of vector-valued Real expressions in a block diagram. -

                    -")); + textColor={0,0,255})}), Documentation(info=" +

                    + The (time varying) vector Real output signal of this block can be defined in its + parameter menu via variable y. The purpose is to support the + easy definition of vector-valued Real expressions in a block diagram. +

                    + ")); end RealVectorExpression; @@ -197,7 +197,7 @@ equation Text( extent={{-150,110},{150,150}}, textString="%name", - lineColor={0,0,255}), + textColor={0,0,255}), Rectangle( extent={{-90,20},{40,14}}, lineColor={0,0,0}, @@ -231,7 +231,7 @@ equation fillPattern=FillPattern.Solid), Text( extent={{-92,-42},{-6,-98}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="[%nPorts]", horizontalAlignment=TextAlignment.Left), Ellipse( @@ -249,108 +249,109 @@ equation Bitmap(extent={{-96,52},{-24,108}},fileName= "modelica://AixLib/Resources/Images/Fluid/FMI/modelica_icon.png")}), Documentation(info=" -

                    -Adaptor that can be used to connect an HVAC system (with acausal ports) -to input/output signals, which then can be exposed in an FMI interface. -

                    -

                    -The adaptor has a vector of fluid ports called ports. -The supply and return air ducts need to be connected to these ports. -Also, if a thermal zone has interzonal air exchange or air infiltration, -these flow paths also need be connected to ports. -

                    -

                    -This model outputs at the port fluPor the mass flow rate for -each flow that is connected to ports, together with its -temperature, water vapor mass fraction per total mass of the air (not per kg dry -air), and trace substances. These quantities are always as if the flow -enters the room, even if the flow is zero or negative. -If a medium has no moisture, e.g., if Medium.nXi=0, or -if it has no trace substances, e.g., if Medium.nC=0, then -the output signal for these properties are removed. -These quantities are always as if the flow -enters the room, even if the flow is zero or negative. -Thus, a thermal zone model that uses these signals to compute the -heat added by the HVAC system need to implement an equation such as -

                    -

                    -Qsen = max(0, ṁsup)   cp   (Tsup - Tair,zon), -

                    -

                    -where -Qsen is the sensible heat flow rate added to the thermal zone, -sup is the supply air mass flow rate from -the port fluPor (which is negative if it is an exhaust), -cp is the specific heat capacity at constant pressure, -Tsup is the supply air temperature and -Tair,zon is the zone air temperature. -Note that without the max(·, ·) function, the energy -balance would be wrong. -

                    -

                    -The output signals of this model are the zone air temperature, -the water vapor mass fraction per total mass of the air (unless Medium.nXi=0) -and trace substances (unless Medium.nC=0). -These output connectors can be used to connect to a controller. -These values are obtained from the fluid stream(s) that flow into this component -at the port fluPor, e.g., from the connector -fluPor.backward. -Note that there are nPorts of these signals. -For a completely mixed room, they will all have the same value, but -for a room with non-uniform temperatures, they can have different values. -

                    -

                    Assumption and limitations

                    -

                    -The mass flow rates at ports sum to zero, hence this -model conserves mass. -

                    -

                    -This model does not impose any pressure, other than setting the pressure -of all fluid connections to ports to be equal. -The reason is that setting a pressure can lead to non-physical system models, -for example if a mass flow rate is imposed and the HVAC system is connected -to a model that sets a pressure boundary condition such as - -AixLib.Fluid.Sources.Outside. -Also, setting a pressure would make it impossible to use multiple instances -of this model (one for each thermal zone) and build in Modelica an airflow network -model with pressure driven mass flow rates. -

                    -

                    -The model has no pressure drop. Hence, the pressure drop -of an air diffuser or of an exhaust grill need to be modelled -in models that are connected to ports. -

                    -

                    Typical use and important parameters

                    -

                    -See - -AixLib.Fluid.FMI.ExportContainers.HVACZone -for a model that uses this model. -

                    -", revisions=" -
                      -
                    • -January 18, 2019, by Jianjun Hu:
                      -Limited the media choice to moist air only. -See #1050. -
                    • -
                    • -September 13, 2017, by Michael Wetter:
                      -Removed erroneous each. -
                    • -
                    • -October 4, 2016, by Michael Wetter:
                      -Corrected assignment of quantity in CZon. -
                    • -
                    • -June 29, 2016, by Michael Wetter:
                      -Revised implementation. -
                    • -
                    • -April 14, 2016, by Michael Wetter:
                      -First implementation. -
                    • -
                    -")); +

                    + Adaptor that can be used to connect an HVAC system (with acausal ports) + to input/output signals, which then can be exposed in an FMI interface. +

                    +

                    + The adaptor has a vector of fluid ports called ports. + The supply and return air ducts need to be connected to these ports. + Also, if a thermal zone has interzonal air exchange or air infiltration, + these flow paths also need be connected to ports. +

                    +

                    + This model outputs at the port fluPor the mass flow rate for + each flow that is connected to ports, together with its + temperature, water vapor mass fraction per total mass of the air (not per kg dry + air), and trace substances. These quantities are always as if the flow + enters the room, even if the flow is zero or negative. + If a medium has no moisture, e.g., if Medium.nXi=0, or + if it has no trace substances, e.g., if Medium.nC=0, then + the output signal for these properties are removed. + These quantities are always as if the flow + enters the room, even if the flow is zero or negative. + Thus, a thermal zone model that uses these signals to compute the + heat added by the HVAC system need to implement an equation such as +

                    +

                    + Qsen = max(0, ṁsup)   cp   (Tsup - Tair,zon), +

                    +

                    + where + Qsen is the sensible heat flow rate added to the thermal zone, + sup is the supply air mass flow rate from + the port fluPor (which is negative if it is an exhaust), + cp is the specific heat capacity at constant pressure, + Tsup is the supply air temperature and + Tair,zon is the zone air temperature. + Note that without the max(·, ·) function, the energy + balance would be wrong. +

                    +

                    + The output signals of this model are the zone air temperature, + the water vapor mass fraction per total mass of the air (unless Medium.nXi=0) + and trace substances (unless Medium.nC=0). + These output connectors can be used to connect to a controller. + These values are obtained from the fluid stream(s) that flow into this component + at the port fluPor, e.g., from the connector + fluPor.backward. + Note that there are nPorts of these signals. + For a completely mixed room, they will all have the same value, but + for a room with non-uniform temperatures, they can have different values. +

                    +

                    Assumption and limitations

                    +

                    + The mass flow rates at ports sum to zero, hence this + model conserves mass. +

                    +

                    + This model does not impose any pressure, other than setting the pressure + of all fluid connections to ports to be equal. + The reason is that setting a pressure can lead to non-physical system models, + for example if a mass flow rate is imposed and the HVAC system is connected + to a model that sets a pressure boundary condition such as + + AixLib.Fluid.Sources.Outside. + Also, setting a pressure would make it impossible to use multiple instances + of this model (one for each thermal zone) and build in Modelica an airflow network + model with pressure driven mass flow rates. +

                    +

                    + The model has no pressure drop. Hence, the pressure drop + of an air diffuser or of an exhaust grill need to be modelled + in models that are connected to ports. +

                    +

                    Typical use and important parameters

                    +

                    + See + + AixLib.Fluid.FMI.ExportContainers.HVACZone + for a model that uses this model. +

                    + ",revisions=" +
                      +
                    • + January 18, 2019, by Jianjun Hu:
                      + Limited the media choice to moist air only. + See #1050. +
                    • +
                    • + September 13, 2017, by Michael Wetter:
                      + Removed erroneous each. +
                    • +
                    • + October 4, 2016, by Michael Wetter:
                      + Corrected assignment of quantity in CZon. +
                    • +
                    • + June 29, 2016, by Michael Wetter:
                      + Revised implementation. +
                    • +
                    • + April 14, 2016, by Michael Wetter:
                      + First implementation. +
                    • +
                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end HVAC; diff --git a/AixLib/Fluid/FMI/Adaptors/Inlet.mo b/AixLib/Fluid/FMI/Adaptors/Inlet.mo index c7774fc365..39469b8c88 100644 --- a/AixLib/Fluid/FMI/Adaptors/Inlet.mo +++ b/AixLib/Fluid/FMI/Adaptors/Inlet.mo @@ -26,8 +26,8 @@ model Inlet "Adaptor for connecting a fluid inlet to the FMI interface" annotation (Placement( transformation(extent={{90,-10},{110,10}}), iconTransformation(extent={{90,-10}, {110,10}}))); - AixLib.Fluid.FMI.Interfaces.PressureOutput p if - use_p_in "Pressure" + AixLib.Fluid.FMI.Interfaces.PressureOutput p + if use_p_in "Pressure" annotation ( Placement( transformation( @@ -107,7 +107,7 @@ equation Text( extent={{-150,110},{150,150}}, textString="%name", - lineColor={0,0,255}), + textColor={0,0,255}), Line( points={{-100,0},{-60,0}}, color={0,0,255}), @@ -128,7 +128,7 @@ equation fillPattern=FillPattern.Solid), Text( extent={{-20,6},{14,-12}}, - lineColor={255,0,0}, + textColor={255,0,0}, fillColor={255,0,0}, fillPattern=FillPattern.Solid, textString="m"), @@ -139,64 +139,65 @@ equation fillPattern=FillPattern.Solid), Text( extent={{-120,34},{-98,16}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="inlet"), Line( points={{0,-100},{0,-60}}, color={0,127,127}), Text( extent={{2,-76},{24,-94}}, - lineColor={0,127,127}, + textColor={0,127,127}, visible=use_p_in, textString="p")}), Documentation(info=" -

                    -Model that is used to connect an input signal to a fluid port. -The model needs to be used in conjunction with an instance of - -AixLib.Fluid.FMI.Adaptors.Outlet in order for -fluid mass flow rate and pressure to be properly assigned to -the acausal fluid models. -

                    -

                    -See - -AixLib.Fluid.FMI.ExportContainers.PartialTwoPort -or - -AixLib.Fluid.FMI.ExportContainers.Examples.FMUs.ResistanceVolume -for how to use this model. -

                    -", revisions=" -
                      -
                    • -January 18, 2019, by Jianjun Hu:
                      -Limited the media choice to moist air and water. -See #1050. -
                    • -
                    • -November 8, 2016, by Michael Wetter:
                      -Corrected wrong argument type in function call of Medium.temperature_phX and -Medium.specificEnthalpy_pTX. -
                    • -
                    • -October 23, 2016, by Michael Wetter:
                      -Changed type of pressure output connector. -
                    • -
                    • -April 29, 2015, by Michael Wetter:
                      -Redesigned to conditionally remove the pressure connector -if use_p_in=false. -
                    • -
                    • -April 15, 2015 by Michael Wetter:
                      -Changed connector variable to be temperature instead of -specific enthalpy. -
                    • -
                    • -January 21, 2014 by Michael Wetter:
                      -First implementation. -
                    • -
                    -")); +

                    + Model that is used to connect an input signal to a fluid port. + The model needs to be used in conjunction with an instance of + + AixLib.Fluid.FMI.Adaptors.Outlet in order for + fluid mass flow rate and pressure to be properly assigned to + the acausal fluid models. +

                    +

                    + See + + AixLib.Fluid.FMI.ExportContainers.PartialTwoPort + or + + AixLib.Fluid.FMI.ExportContainers.Examples.FMUs.ResistanceVolume + for how to use this model. +

                    + ",revisions=" +
                      +
                    • + January 18, 2019, by Jianjun Hu:
                      + Limited the media choice to moist air and water. + See #1050. +
                    • +
                    • + November 8, 2016, by Michael Wetter:
                      + Corrected wrong argument type in function call of Medium.temperature_phX and + Medium.specificEnthalpy_pTX. +
                    • +
                    • + October 23, 2016, by Michael Wetter:
                      + Changed type of pressure output connector. +
                    • +
                    • + April 29, 2015, by Michael Wetter:
                      + Redesigned to conditionally remove the pressure connector + if use_p_in=false. +
                    • +
                    • + April 15, 2015 by Michael Wetter:
                      + Changed connector variable to be temperature instead of + specific enthalpy. +
                    • +
                    • + January 21, 2014 by Michael Wetter:
                      + First implementation. +
                    • +
                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end Inlet; diff --git a/AixLib/Fluid/FMI/Adaptors/Outlet.mo b/AixLib/Fluid/FMI/Adaptors/Outlet.mo index 06c6043f06..fe1524d535 100644 --- a/AixLib/Fluid/FMI/Adaptors/Outlet.mo +++ b/AixLib/Fluid/FMI/Adaptors/Outlet.mo @@ -28,8 +28,8 @@ model Outlet "Adaptor for connecting a fluid outlet to the FMI interface" transformation(extent={{-110,-10},{-90,10}}), iconTransformation(extent={{-110, -10},{-90,10}}))); - AixLib.Fluid.FMI.Interfaces.PressureInput p if - use_p_in "Pressure to be sent to outlet" + AixLib.Fluid.FMI.Interfaces.PressureInput p + if use_p_in "Pressure to be sent to outlet" annotation ( Placement(transformation( extent={{-20,-20},{20,20}}, @@ -109,7 +109,7 @@ equation Text( extent={{-150,110},{150,150}}, textString="%name", - lineColor={0,0,255}), + textColor={0,0,255}), Line( points={{60,0},{100,0}}, color={0,0,255}), @@ -120,7 +120,7 @@ equation fillColor={0,127,255}), Text( extent={{66,40},{100,0}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="outlet"), Line( points={{0,-60},{0,-100}}, @@ -129,52 +129,53 @@ equation visible=use_p_in), Text( extent={{10,-64},{44,-104}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="p", visible=use_p_in)}), Documentation(info=" -

                    -Model that is used to connect a fluid port with an output signal. -The model needs to be used in conjunction with an instance of - -AixLib.Fluid.FMI.Adaptors.Inlet in order for -fluid mass flow rate and pressure to be properly assigned to -the acausal fluid models. -

                    -

                    -See - -AixLib.Fluid.FMI.ExportContainers.PartialTwoPort -or - -AixLib.Fluid.FMI.ExportContainers.Examples.FMUs.ResistanceVolume -for how to use this model. -

                    -", revisions=" -
                      -
                    • -January 18, 2019, by Jianjun Hu:
                      -Limited the media choice to moist air and water. -See #1050. -
                    • -
                    • -November 8, 2016, by Michael Wetter:
                      -Corrected wrong argument type in function call of Medium.temperature_phX. -
                    • -
                    • -April 29, 2015, by Michael Wetter:
                      -Redesigned to conditionally remove the pressure connector -if use_p_in=false. -
                    • -
                    • -April 15, 2015 by Michael Wetter:
                      -Changed connector variable to be temperature instead of -specific enthalpy. -
                    • -
                    • -January 21, 2014 by Michael Wetter:
                      -First implementation. -
                    • -
                    -")); +

                    + Model that is used to connect a fluid port with an output signal. + The model needs to be used in conjunction with an instance of + + AixLib.Fluid.FMI.Adaptors.Inlet in order for + fluid mass flow rate and pressure to be properly assigned to + the acausal fluid models. +

                    +

                    + See + + AixLib.Fluid.FMI.ExportContainers.PartialTwoPort + or + + AixLib.Fluid.FMI.ExportContainers.Examples.FMUs.ResistanceVolume + for how to use this model. +

                    + ",revisions=" +
                      +
                    • + January 18, 2019, by Jianjun Hu:
                      + Limited the media choice to moist air and water. + See #1050. +
                    • +
                    • + November 8, 2016, by Michael Wetter:
                      + Corrected wrong argument type in function call of Medium.temperature_phX. +
                    • +
                    • + April 29, 2015, by Michael Wetter:
                      + Redesigned to conditionally remove the pressure connector + if use_p_in=false. +
                    • +
                    • + April 15, 2015 by Michael Wetter:
                      + Changed connector variable to be temperature instead of + specific enthalpy. +
                    • +
                    • + January 21, 2014 by Michael Wetter:
                      + First implementation. +
                    • +
                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end Outlet; diff --git a/AixLib/Fluid/FMI/Adaptors/ThermalZone.mo b/AixLib/Fluid/FMI/Adaptors/ThermalZone.mo index 2641b5311d..c43e39750f 100644 --- a/AixLib/Fluid/FMI/Adaptors/ThermalZone.mo +++ b/AixLib/Fluid/FMI/Adaptors/ThermalZone.mo @@ -31,21 +31,21 @@ model ThermalZone protected x_i_toX_w x_i_toX( - redeclare final package Medium = Medium) if - Medium.nXi > 0 "Conversion from x_i to X_w" + redeclare final package Medium = Medium) + if Medium.nXi > 0 "Conversion from x_i to X_w" annotation (Placement(transformation(extent={{-20,-30},{-40,-10}}))); RealVectorExpression XiSup( final n=Medium.nXi, - final y=inStream(ports[1].Xi_outflow)) if - Medium.nXi > 0 + final y=inStream(ports[1].Xi_outflow)) + if Medium.nXi > 0 "Water vapor concentration of supply air" annotation (Placement(transformation(extent={{20,-30},{0,-10}}))); RealVectorExpression CSup( final n=Medium.nC, - final y=inStream(ports[1].C_outflow)) if - Medium.nC > 0 "Trace substance concentration of supply air" + final y=inStream(ports[1].C_outflow)) + if Medium.nC > 0 "Trace substance concentration of supply air" annotation (Placement(transformation(extent={{20,-70},{0,-50}}))); Sources.MassFlowSource_T bou[nPorts]( @@ -108,25 +108,25 @@ protected borderPattern=BorderPattern.Raised), Text( extent={{-96,15},{96,-15}}, - lineColor={0,0,0}, + textColor={0,0,0}, textString="%y"), Text( extent={{-150,90},{140,50}}, textString="%name", - lineColor={0,0,255})}), Documentation(info=" -

                    -The (time varying) vector Real output signal of this block can be defined in its -parameter menu via variable y. The purpose is to support the -easy definition of vector-valued Real expressions in a block diagram. -

                    -", revisions=" -
                      -
                    • -April 27, 2016, by Thierry S. Nouidui:
                      -First implementation. -
                    • -
                    -")); + textColor={0,0,255})}), Documentation(info=" +

                    + The (time varying) vector Real output signal of this block can be defined in its + parameter menu via variable y. The purpose is to support the + easy definition of vector-valued Real expressions in a block diagram. +

                    + ",revisions=" +
                      +
                    • + April 27, 2016, by Thierry S. Nouidui:
                      + First implementation. +
                    • +
                    + ")); end RealVectorExpression; block x_i_toX_w "Conversion from Xi to X" @@ -136,8 +136,8 @@ First implementation. Modelica.Media.Interfaces.PartialMedium "Medium model within the source" annotation (choices( choice(redeclare package Medium = AixLib.Media.Air "Moist air"))); - Modelica.Blocks.Interfaces.RealInput Xi[Medium.nXi](each final unit="kg/kg") if - Medium.nXi > 0 "Water vapor concentration in kg/kg total air" + Modelica.Blocks.Interfaces.RealInput Xi[Medium.nXi](each final unit="kg/kg") + if Medium.nXi > 0 "Water vapor concentration in kg/kg total air" annotation (Placement(transformation(extent={{-140,-20},{-100,20}}), iconTransformation(extent={{-140,-20},{-100,20}}))); @@ -163,32 +163,32 @@ First implementation. X_w_internal = sum(Xi_internal); connect( X_w, X_w_internal) annotation (Documentation(revisions=" -
                      -
                    • -January 18, 2019, by Jianjun Hu:
                      -Limited the media choice to moist air only. -See #1050. -
                    • -
                    • -November 8, 2016, by Michael Wetter:
                      -Removed wrong usage of each keyword. -
                    • -
                    • -April 27, 2016, by Thierry S. Nouidui:
                      -First implementation. -
                    • -
                    -", info=" -

                    -Block that converts a vector input for the water mass fraction Xi -to a scalar output X. -This is needed for models in which a scalar input signal Xi that -may be conditionally removed is to be connected to a model with a vector -input X, because the conversion from scalar to vector -needs to access the conditional connector, but conditional connectors -can only be used in connect statements. -

                    -")); +
                      +
                    • + January 18, 2019, by Jianjun Hu:
                      + Limited the media choice to moist air only. + See #1050. +
                    • +
                    • + November 8, 2016, by Michael Wetter:
                      + Removed wrong usage of each keyword. +
                    • +
                    • + April 27, 2016, by Thierry S. Nouidui:
                      + First implementation. +
                    • +
                    + ",info=" +

                    + Block that converts a vector input for the water mass fraction Xi + to a scalar output X. + This is needed for models in which a scalar input signal Xi that + may be conditionally removed is to be connected to a model with a vector + input X, because the conversion from scalar to vector + needs to access the conditional connector, but conditional connectors + can only be used in connect statements. +

                    + ")); end x_i_toX_w; initial equation @@ -259,7 +259,7 @@ equation Text( extent={{-146,104},{150,140}}, textString="%name", - lineColor={0,0,255}), + textColor={0,0,255}), Polygon( points={{100,-100},{-102,100},{-102,-100},{100,-100}}, lineColor={0,0,0}, @@ -329,73 +329,74 @@ equation fillPattern=FillPattern.Solid), Text( extent={{-2,-20},{84,-76}}, - lineColor={0,0,127}, + textColor={0,0,127}, horizontalAlignment=TextAlignment.Right, textString="[%nPorts]")}), Documentation(info=" -

                    -Adaptor that can be used to connect a model of a thermal zone (with acausal ports) -to input/output signals, which can be exposed in an FMI interface. -

                    -

                    -This model has a vector fluPor with dimension nPorts -which can be exposed at the FMI interface for the connecting the HVAC system. -These connectors contain for each fluid inlet the mass flow rate, the temperature, -the water vapor mass fraction per total mass of the air (unless Medium.nXi=0), -and the trace substances (unless Medium.nC=0). -

                    - -

                    -The connector ports can be used to connect the model with a thermal zone. -The number of connections to ports must -be equal to nPorts. -

                    - -

                    Assumption and limitations

                    -

                    -The mass flow rates at ports sum to zero, hence this -model conserves mass. If the mass flow rates at fluPor -do not sum to zero, then this model stops with an error. -

                    -

                    -This model does not impose any pressure, other than setting the pressure -of all fluid connections to ports to be equal. -The reason is that setting a pressure can lead to non-physical system models, -for example if a mass flow rate is imposed and the HVAC system is connected -to a model that sets a pressure boundary condition such as - -AixLib.Fluid.Sources.Outside. -Also, setting a pressure would make it impossible to use multiple instances -of this model (one for each thermal zone) and build in Modelica an airflow network -model with pressure driven mass flow rates. -

                    -

                    -The model has no pressure drop. -

                    - -

                    Typical use

                    -

                    -See - -AixLib.Fluid.FMI.ExportContainers.ThermalZone - -for a model that uses this model. -

                    -", revisions=" -
                      -
                    • -January 18, 2019, by Jianjun Hu:
                      -Limited the media choice to moist air only. -See #1050. -
                    • -
                    • -June 29, 2016, by Michael Wetter:
                      -Revised implementation and documentation. -
                    • -
                    • -April 27, 2016, by Thierry S. Nouidui:
                      -First implementation. -
                    • -
                    -")); +

                    + Adaptor that can be used to connect a model of a thermal zone (with acausal ports) + to input/output signals, which can be exposed in an FMI interface. +

                    +

                    + This model has a vector fluPor with dimension nPorts + which can be exposed at the FMI interface for the connecting the HVAC system. + These connectors contain for each fluid inlet the mass flow rate, the temperature, + the water vapor mass fraction per total mass of the air (unless Medium.nXi=0), + and the trace substances (unless Medium.nC=0). +

                    + +

                    + The connector ports can be used to connect the model with a thermal zone. + The number of connections to ports must + be equal to nPorts. +

                    + +

                    Assumption and limitations

                    +

                    + The mass flow rates at ports sum to zero, hence this + model conserves mass. If the mass flow rates at fluPor + do not sum to zero, then this model stops with an error. +

                    +

                    + This model does not impose any pressure, other than setting the pressure + of all fluid connections to ports to be equal. + The reason is that setting a pressure can lead to non-physical system models, + for example if a mass flow rate is imposed and the HVAC system is connected + to a model that sets a pressure boundary condition such as + + AixLib.Fluid.Sources.Outside. + Also, setting a pressure would make it impossible to use multiple instances + of this model (one for each thermal zone) and build in Modelica an airflow network + model with pressure driven mass flow rates. +

                    +

                    + The model has no pressure drop. +

                    + +

                    Typical use

                    +

                    + See + + AixLib.Fluid.FMI.ExportContainers.ThermalZone + + for a model that uses this model. +

                    + ",revisions=" +
                      +
                    • + January 18, 2019, by Jianjun Hu:
                      + Limited the media choice to moist air only. + See #1050. +
                    • +
                    • + June 29, 2016, by Michael Wetter:
                      + Revised implementation and documentation. +
                    • +
                    • + April 27, 2016, by Thierry S. Nouidui:
                      + First implementation. +
                    • +
                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end ThermalZone; diff --git a/AixLib/Fluid/FMI/BaseClasses/X_w_toX.mo b/AixLib/Fluid/FMI/BaseClasses/X_w_toX.mo index d22bca7000..bebd398102 100644 --- a/AixLib/Fluid/FMI/BaseClasses/X_w_toX.mo +++ b/AixLib/Fluid/FMI/BaseClasses/X_w_toX.mo @@ -6,8 +6,8 @@ block X_w_toX "Conversion from Xi to X" Modelica.Media.Interfaces.PartialMedium "Medium in the component" annotation (choices( choice(redeclare package Medium = AixLib.Media.Air "Moist air"))); - Modelica.Blocks.Interfaces.RealInput X_w(final unit="kg/kg") if - Medium.nXi > 0 "Water mass fraction per total air mass" + Modelica.Blocks.Interfaces.RealInput X_w(final unit="kg/kg") + if Medium.nXi > 0 "Water mass fraction per total air mass" annotation (Placement(transformation(extent={{-140,-20},{-100,20}}))); Modelica.Blocks.Interfaces.RealOutput X[Medium.nX]( each final unit="kg/kg", @@ -25,32 +25,33 @@ equation // Assign vector to output connector X = if Medium.nX == 1 then ones(Medium.nX) else cat(1, {X_w_internal}, {1-X_w_internal}); annotation (Documentation(revisions=" -
                      -
                    • -January 18, 2019, by Jianjun Hu:
                      -Limited the media choice to moist air only. -See #1050. -
                    • -
                    • -March 17, 2017, by Michael Wetter:
                      -Changed assignment of X.
                      -This is for -Annex 60, #675. -
                    • -
                    • -April 15, 2016, by Michael Wetter:
                      -First implementation. -
                    • -
                    -", info=" -

                    -Block that converts a scalar input for the water mass fraction Xi -to a vector output X. -This is needed for models in which a scalar input signal Xi that -may be conditionally removed is to be connected to a model with a vector -input X, because the conversion from scalar to vector -needs to access the conditional connector, but conditional connectors -can only be used in connect statements. -

                    -")); +
                      +
                    • + January 18, 2019, by Jianjun Hu:
                      + Limited the media choice to moist air only. + See #1050. +
                    • +
                    • + March 17, 2017, by Michael Wetter:
                      + Changed assignment of X.
                      + This is for + Annex 60, #675. +
                    • +
                    • + April 15, 2016, by Michael Wetter:
                      + First implementation. +
                    • +
                    + ",info=" +

                    + Block that converts a scalar input for the water mass fraction Xi + to a vector output X. + This is needed for models in which a scalar input signal Xi that + may be conditionally removed is to be connected to a model with a vector + input X, because the conversion from scalar to vector + needs to access the conditional connector, but conditional connectors + can only be used in connect statements. +

                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end X_w_toX; diff --git a/AixLib/Fluid/FMI/BaseClasses/hOut_toT.mo b/AixLib/Fluid/FMI/BaseClasses/hOut_toT.mo index b74790a18c..3a25ece8c1 100644 --- a/AixLib/Fluid/FMI/BaseClasses/hOut_toT.mo +++ b/AixLib/Fluid/FMI/BaseClasses/hOut_toT.mo @@ -9,8 +9,8 @@ block hOut_toT "Conversion from h to T" Modelica.Blocks.Interfaces.RealInput h(final unit="J/kg") "Specific enthalpy" annotation (Placement(transformation(extent={{-140,20},{-100,60}}))); - Modelica.Blocks.Interfaces.RealInput Xi[Medium.nXi](each final unit="kg/kg") if - Medium.nXi > 0 "Water vapor concentration in kg/kg total air" + Modelica.Blocks.Interfaces.RealInput Xi[Medium.nXi](each final unit="kg/kg") + if Medium.nXi > 0 "Water vapor concentration in kg/kg total air" annotation (Placement(transformation(extent={{-140,-60},{-100,-20}}))); Modelica.Blocks.Interfaces.RealOutput T(final unit="K", @@ -34,20 +34,21 @@ equation X=Xi_internal); annotation (Documentation(revisions=" -
                      -
                    • -January 18, 2019, by Jianjun Hu:
                      -Limited the media choice to moist air only. -See #1050. -
                    • -
                    • -April 28, 2016, by Thierry S. Nouidui:
                      -First implementation. -
                    • -
                    -", info=" -

                    -Block that converts enthalpy to temperature. -

                    -")); +
                      +
                    • + January 18, 2019, by Jianjun Hu:
                      + Limited the media choice to moist air only. + See #1050. +
                    • +
                    • + April 28, 2016, by Thierry S. Nouidui:
                      + First implementation. +
                    • +
                    + ",info=" +

                    + Block that converts enthalpy to temperature. +

                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end hOut_toT; diff --git a/AixLib/Fluid/FMI/Conversion/AirToOutlet.mo b/AixLib/Fluid/FMI/Conversion/AirToOutlet.mo index 27a6788cb0..beb9ae7f34 100644 --- a/AixLib/Fluid/FMI/Conversion/AirToOutlet.mo +++ b/AixLib/Fluid/FMI/Conversion/AirToOutlet.mo @@ -44,8 +44,8 @@ block AirToOutlet Modelica.Blocks.Interfaces.RealOutput TAirZon( final unit="K", - displayUnit="degC") if - allowFlowReversal + displayUnit="degC") + if allowFlowReversal "Temperature of the backward flowing medium in the connector outlet" annotation (Placement( visible=allowFloWReserval, @@ -57,8 +57,8 @@ block AirToOutlet rotation=90, origin={-60,-120}))); Modelica.Blocks.Interfaces.RealOutput X_wZon( - final unit="kg/kg") if - Medium.nXi > 0 and allowFlowReversal + final unit="kg/kg") + if Medium.nXi > 0 and allowFlowReversal "Water mass fraction per total air mass of the backward flowing medium in the connector outlet" annotation (Placement( visible=allowFloWReserval, @@ -70,8 +70,8 @@ block AirToOutlet rotation=90, origin={0,-120}))); Modelica.Blocks.Interfaces.RealOutput CZon[Medium.nC]( - final quantity=Medium.extraPropertiesNames) if - allowFlowReversal + final quantity=Medium.extraPropertiesNames) + if allowFlowReversal "Trace substances of the backward flowing medium in the connector outlet" annotation (Placement( visible=allowFloWReserval, @@ -107,8 +107,8 @@ protected "Internal connector for zone water vapor mass fraction"; Modelica.Blocks.Interfaces.RealOutput X_wZon_internal2( - final unit="kg/kg") = 0 if - Medium.nXi == 0 or not allowFlowReversal + final unit="kg/kg") = 0 + if Medium.nXi == 0 or not allowFlowReversal "Internal connector for zone water vapor mass fraction, required if X_wZon is removed"; Modelica.Blocks.Interfaces.RealOutput CZon_internal[Medium.nC] "Internal connector for trace substances"; @@ -159,52 +159,52 @@ equation connect(outlet.backward, bacPro_internal); annotation (defaultComponentName = "con", Documentation(info=" -

                    -Block that takes real inputs for properties of an air-based HVAC -system and converts them to an outlet connector of type - -AixLib.Fluid.FMI.Interfaces.Outlet. -

                    -

                    -See - -AixLib.Fluid.FMI.Adaptors.HVAC -for its usage. -

                    -", revisions=" -
                      -
                    • -January 18, 2019, by Jianjun Hu:
                      -Limited the media choice to moist air only. -See #1050. -
                    • -
                    • -November 8, 2016, by Michael Wetter:
                      -Corrected wrong argument type in function call of Medium.temperature_phX. -
                    • -
                    • -April 20, 2016, by Michael Wetter:
                      -First implementation. -
                    • -
                    -"), +

                    + Block that takes real inputs for properties of an air-based HVAC + system and converts them to an outlet connector of type + + AixLib.Fluid.FMI.Interfaces.Outlet. +

                    +

                    + See + + AixLib.Fluid.FMI.Adaptors.HVAC + for its usage. +

                    + ",revisions=" +
                      +
                    • + January 18, 2019, by Jianjun Hu:
                      + Limited the media choice to moist air only. + See #1050. +
                    • +
                    • + November 8, 2016, by Michael Wetter:
                      + Corrected wrong argument type in function call of Medium.temperature_phX. +
                    • +
                    • + April 20, 2016, by Michael Wetter:
                      + First implementation. +
                    • +
                    + "), Icon(graphics={ Text( extent={{-98,52},{-66,26}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="h"), Text( extent={{-92,94},{-28,68}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="m_flow"), Text( extent={{-104,-26},{-40,-52}}, - lineColor={0,0,127}, + textColor={0,0,127}, visible=Medium.nXi > 0, textString="Xi"), Text( extent={{-104,-64},{-40,-90}}, - lineColor={0,0,127}, + textColor={0,0,127}, visible=Medium.nC > 0, textString="C"), Polygon( @@ -227,5 +227,6 @@ First implementation. fillColor={0,0,255}, fillPattern=FillPattern.Solid, origin={-4,-58}, - rotation=270)})); + rotation=270)}), + __Dymola_LockedEditing="Model from IBPSA"); end AirToOutlet; diff --git a/AixLib/Fluid/FMI/Conversion/InletToAir.mo b/AixLib/Fluid/FMI/Conversion/InletToAir.mo index d3acbfbfed..80e2ebf6b5 100644 --- a/AixLib/Fluid/FMI/Conversion/InletToAir.mo +++ b/AixLib/Fluid/FMI/Conversion/InletToAir.mo @@ -20,8 +20,8 @@ block InletToAir Modelica.Blocks.Interfaces.RealInput TAirZon( final unit="K", - displayUnit="degC") if - allowFlowReversal + displayUnit="degC") + if allowFlowReversal "Zone air temperature" annotation (Placement( visible=allowFloWReserval, @@ -33,8 +33,8 @@ block InletToAir rotation=90, origin={-60,-120}))); Modelica.Blocks.Interfaces.RealInput X_wZon( - final unit="kg/kg") if - Medium.nXi > 0 and allowFlowReversal + final unit="kg/kg") + if Medium.nXi > 0 and allowFlowReversal "Zone air water mass fraction per total air mass" annotation (Placement( visible=allowFloWReserval, @@ -46,8 +46,8 @@ block InletToAir rotation=90, origin={0,-120}))); Modelica.Blocks.Interfaces.RealInput CZon[Medium.nC]( - final quantity=Medium.extraPropertiesNames) if - allowFlowReversal + final quantity=Medium.extraPropertiesNames) + if allowFlowReversal "Zone air trace substances" annotation (Placement( visible=allowFloWReserval, @@ -66,8 +66,8 @@ block InletToAir Modelica.Blocks.Interfaces.RealOutput T(final unit="K") "Temperature of the inlet" annotation (Placement(transformation(extent={{100,20},{140,60}}))); - Modelica.Blocks.Interfaces.RealOutput X_w(final unit="kg/kg") if - Medium.nXi > 0 + Modelica.Blocks.Interfaces.RealOutput X_w(final unit="kg/kg") + if Medium.nXi > 0 "Water mass fraction per total air mass of the inlet" annotation (Placement(transformation(extent={{100,-60},{140,-20}}))); @@ -91,8 +91,8 @@ protected "Internal connector for zone water vapor mass fraction"; Modelica.Blocks.Interfaces.RealInput X_wZon_internal2( - final unit="kg/kg") = 0 if - Medium.nXi == 0 or not allowFlowReversal + final unit="kg/kg") = 0 + if Medium.nXi == 0 or not allowFlowReversal "Internal connector for zone water vapor mass fraction, required if X_wZon is removed"; Modelica.Blocks.Interfaces.RealInput CZon_internal[Medium.nC] "Internal connector for trace substances"; @@ -131,79 +131,79 @@ equation annotation (defaultComponentName = "con", Documentation(info=" -

                    -Block that takes an inlet connector of type - -AixLib.Fluid.FMI.Interfaces.Inlet - -and converts -it to real outputs for properties of an air-based -HVAC system. -

                    -

                    -The output signal m_flow is equal to -inlet.m_flow, whereas the output signals -T, X_w and C -are set the the properties -inlet.forward. -Similarly, the properties of -inlet.backward are set the the values -of the input signals -TAirZon, X_wZon and CZon. -

                    -

                    -If allowFlowReversal = true, -input signal connectors are enabled that are used -to set the fluid properties for backflow in the connector -inlet.backward. -This can be used if this block is used to connect an HVAC -system to a thermal zone, in which case the supply air -properties are in the connector -inlet.forward, -and the return air properties are in the connector -inlet.backward. -

                    -

                    -See - -AixLib.Fluid.FMI.Adaptors.ThermalZone -for its usage. -

                    -", revisions=" -
                      -
                    • -January 18, 2019, by Jianjun Hu:
                      -Limited the media choice to moist air only. -See #1050. -
                    • -
                    • -June 28, 2016, by Michael Wetter:
                      -Revised implementation to allow flow out of the -thermal zone, for example to model the return -air flow. -
                    • -
                    • -April 27, 2016, by Thierry S. Nouidui:
                      -First implementation. -
                    • -
                    -"), +

                    + Block that takes an inlet connector of type + + AixLib.Fluid.FMI.Interfaces.Inlet + + and converts + it to real outputs for properties of an air-based + HVAC system. +

                    +

                    + The output signal m_flow is equal to + inlet.m_flow, whereas the output signals + T, X_w and C + are set the the properties + inlet.forward. + Similarly, the properties of + inlet.backward are set the the values + of the input signals + TAirZon, X_wZon and CZon. +

                    +

                    + If allowFlowReversal = true, + input signal connectors are enabled that are used + to set the fluid properties for backflow in the connector + inlet.backward. + This can be used if this block is used to connect an HVAC + system to a thermal zone, in which case the supply air + properties are in the connector + inlet.forward, + and the return air properties are in the connector + inlet.backward. +

                    +

                    + See + + AixLib.Fluid.FMI.Adaptors.ThermalZone + for its usage. +

                    + ",revisions=" +
                      +
                    • + January 18, 2019, by Jianjun Hu:
                      + Limited the media choice to moist air only. + See #1050. +
                    • +
                    • + June 28, 2016, by Michael Wetter:
                      + Revised implementation to allow flow out of the + thermal zone, for example to model the return + air flow. +
                    • +
                    • + April 27, 2016, by Thierry S. Nouidui:
                      + First implementation. +
                    • +
                    + "), Icon(graphics={ Text( extent={{58,60},{90,34}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="T"), Text( extent={{20,96},{84,70}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="m_flow"), Text( extent={{28,-26},{92,-52}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="X_w"), Text( extent={{36,-66},{100,-92}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="C"), Line(points={{-80,0},{40,0}}, color={191,0,0}), Polygon( @@ -214,7 +214,7 @@ First implementation. Text( visible=allowFlowReversal, extent={{-78,-70},{-46,-96}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="T"), Text( visible=allowFlowReversal and Medium.nXi > 0, @@ -233,5 +233,6 @@ First implementation. visible=allowFlowReversal, points={{-76,-16},{-34,-36},{-8,-66}}, color={0,0,255}, - smooth=Smooth.Bezier)})); + smooth=Smooth.Bezier)}), + __Dymola_LockedEditing="Model from IBPSA"); end InletToAir; diff --git a/AixLib/Fluid/FMI/Conversion/Validation/AirToOutlet.mo b/AixLib/Fluid/FMI/Conversion/Validation/AirToOutlet.mo index 9d0e1581f2..f739a89f63 100644 --- a/AixLib/Fluid/FMI/Conversion/Validation/AirToOutlet.mo +++ b/AixLib/Fluid/FMI/Conversion/Validation/AirToOutlet.mo @@ -63,26 +63,27 @@ equation -14,-78},{-2,-78}}, color={0,0,127})); annotation ( Documentation(info=" -

                    -This example validates the conversion model - -AixLib.Fluid.FMI.Conversion.AirToOutlet -for the situation without reverse flow. -

                    -

                    -The conversion elements all have either a dry or -moist air medium, with our without trace substances, -in order to test all combinations of air. -

                    -", revisions=" -
                      -
                    • -April 20, 2016 by Michael Wetter:
                      -First implementation. -
                    • -
                    -"), +

                    + This example validates the conversion model + + AixLib.Fluid.FMI.Conversion.AirToOutlet + for the situation without reverse flow. +

                    +

                    + The conversion elements all have either a dry or + moist air medium, with our without trace substances, + in order to test all combinations of air. +

                    + ",revisions=" +
                      +
                    • + April 20, 2016 by Michael Wetter:
                      + First implementation. +
                    • +
                    + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/Conversion/Validation/AirToOutlet.mos" "Simulate and plot"), - experiment(Tolerance=1e-6, StopTime=1.0)); + experiment(Tolerance=1e-6, StopTime=1.0), + __Dymola_LockedEditing="Model from IBPSA"); end AirToOutlet; diff --git a/AixLib/Fluid/FMI/Conversion/Validation/AirToOutletFlowReversal.mo b/AixLib/Fluid/FMI/Conversion/Validation/AirToOutletFlowReversal.mo index 39d83f6d06..e976e89680 100644 --- a/AixLib/Fluid/FMI/Conversion/Validation/AirToOutletFlowReversal.mo +++ b/AixLib/Fluid/FMI/Conversion/Validation/AirToOutletFlowReversal.mo @@ -78,26 +78,27 @@ equation connect(bouDryAirWithC.inlet, conDryAirWithC.outlet) annotation (Line(points={{39,-70},{21,-70}}, color={0,0,255})); annotation (Documentation(info=" -

                    -This example is identical to - -AixLib.Fluid.FMI.Conversion.Validation.AirToOutlet, -except that it has reverse flow. -This tests whether the fluid properties from -the upstream media are correctly converted to -the output signals of - -AixLib.Fluid.FMI.Conversion.AirToOutlet. -

                    -", revisions=" -
                      -
                    • -June 29, 2016 by Michael Wetter:
                      -First implementation. -
                    • -
                    -"), +

                    + This example is identical to + + AixLib.Fluid.FMI.Conversion.Validation.AirToOutlet, + except that it has reverse flow. + This tests whether the fluid properties from + the upstream media are correctly converted to + the output signals of + + AixLib.Fluid.FMI.Conversion.AirToOutlet. +

                    + ",revisions=" +
                      +
                    • + June 29, 2016 by Michael Wetter:
                      + First implementation. +
                    • +
                    + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/Conversion/Validation/AirToOutletFlowReversal.mos" "Simulate and plot"), - experiment(Tolerance=1e-6, StopTime=1.0)); + experiment(Tolerance=1e-6, StopTime=1.0), + __Dymola_LockedEditing="Model from IBPSA"); end AirToOutletFlowReversal; diff --git a/AixLib/Fluid/FMI/Conversion/Validation/InletToAirDryAir.mo b/AixLib/Fluid/FMI/Conversion/Validation/InletToAirDryAir.mo index 8fd53490cf..67c37a2dda 100644 --- a/AixLib/Fluid/FMI/Conversion/Validation/InletToAirDryAir.mo +++ b/AixLib/Fluid/FMI/Conversion/Validation/InletToAirDryAir.mo @@ -4,22 +4,23 @@ model InletToAirDryAir extends AixLib.Fluid.FMI.Conversion.Validation.InletToAirMoistAir( redeclare replaceable package Medium = Modelica.Media.Air.SimpleAir); annotation (Documentation(info=" -

                    -This validation test is identical to - -AixLib.Fluid.FMI.Conversion.Validation.InletToAirMoistAir -except that it uses a medium model without moisture. -Hence, it tests whether the water vapor connectors are correctly removed. -

                    -", revisions=" -
                      -
                    • -June 29, 2016, by Michael Wetter:
                      -First implementation. -
                    • -
                    -"), +

                    + This validation test is identical to + + AixLib.Fluid.FMI.Conversion.Validation.InletToAirMoistAir + except that it uses a medium model without moisture. + Hence, it tests whether the water vapor connectors are correctly removed. +

                    + ",revisions=" +
                      +
                    • + June 29, 2016, by Michael Wetter:
                      + First implementation. +
                    • +
                    + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/Conversion/Validation/InletToAirDryAir.mos" "Simulate and plot"), - experiment(Tolerance=1e-6, StopTime=1.0)); + experiment(Tolerance=1e-6, StopTime=1.0), + __Dymola_LockedEditing="Model from IBPSA"); end InletToAirDryAir; diff --git a/AixLib/Fluid/FMI/Conversion/Validation/InletToAirDryAirCO2.mo b/AixLib/Fluid/FMI/Conversion/Validation/InletToAirDryAirCO2.mo index 5bd2d33bde..b2a99b28fe 100644 --- a/AixLib/Fluid/FMI/Conversion/Validation/InletToAirDryAirCO2.mo +++ b/AixLib/Fluid/FMI/Conversion/Validation/InletToAirDryAirCO2.mo @@ -4,22 +4,23 @@ model InletToAirDryAirCO2 extends AixLib.Fluid.FMI.Conversion.Validation.InletToAirMoistAirCO2( redeclare replaceable package Medium = Modelica.Media.Air.SimpleAir(extraPropertiesNames={"CO2"})); annotation (Documentation(info=" -

                    -This validation test is identical to - -AixLib.Fluid.FMI.Conversion.Validation.InletToAirMoistAirCO2 -except that it uses a medium model without moisture. -Hence, it tests whether the water vapor connectors are correctly removed. -

                    -", revisions=" -
                      -
                    • -June 29, 2016, by Michael Wetter:
                      -First implementation. -
                    • -
                    -"), +

                    + This validation test is identical to + + AixLib.Fluid.FMI.Conversion.Validation.InletToAirMoistAirCO2 + except that it uses a medium model without moisture. + Hence, it tests whether the water vapor connectors are correctly removed. +

                    + ",revisions=" +
                      +
                    • + June 29, 2016, by Michael Wetter:
                      + First implementation. +
                    • +
                    + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/Conversion/Validation/InletToAirDryAirCO2.mos" "Simulate and plot"), - experiment(Tolerance=1e-6, StopTime=1.0)); + experiment(Tolerance=1e-6, StopTime=1.0), + __Dymola_LockedEditing="Model from IBPSA"); end InletToAirDryAirCO2; diff --git a/AixLib/Fluid/FMI/Conversion/Validation/InletToAirMoistAir.mo b/AixLib/Fluid/FMI/Conversion/Validation/InletToAirMoistAir.mo index 0aeea43c3d..3dcb12b2f5 100644 --- a/AixLib/Fluid/FMI/Conversion/Validation/InletToAirMoistAir.mo +++ b/AixLib/Fluid/FMI/Conversion/Validation/InletToAirMoistAir.mo @@ -29,8 +29,8 @@ model InletToAirMoistAir annotation (Placement(transformation(extent={{-80,30},{-60,50}}))); Modelica.Blocks.Sources.Constant X_w_in(k=0.01) "Inlet mass fraction" annotation (Placement(transformation(extent={{-80,-50},{-60,-30}}))); - Modelica.Blocks.Sources.Constant C[Medium.nC](each k=0.01) if - Medium.nC > 0 "Trace substances for forward flow" + Modelica.Blocks.Sources.Constant C[Medium.nC](each k=0.01) + if Medium.nC > 0 "Trace substances for forward flow" annotation (Placement(transformation(extent={{-80,-90},{-60,-70}}))); AixLib.Fluid.FMI.Conversion.InletToAir conAirRevFlo(redeclare package Medium = Medium, allowFlowReversal=true) @@ -81,32 +81,33 @@ equation {64,-52},{30,-52},{30,-42}}, color={0,0,127})); annotation ( Documentation(info=" -

                    -This example validates the conversion model - -AixLib.Fluid.FMI.Conversion.InletToAir -. -The medium used is - -AixLib.Media.Air - -without trace substances. -The top model has no reverse flow, whereas the -bottom model has reverse flow. -

                    -", revisions=" -
                      -
                    • -June 29, 2016, by Michael Wetter:
                      -Added validation test for reverse flow. -
                    • -
                    • -April 28, 2016 by Thierry S. Nouidui:
                      -First implementation. -
                    • -
                    -"), +

                    + This example validates the conversion model + + AixLib.Fluid.FMI.Conversion.InletToAir + . + The medium used is + + AixLib.Media.Air + + without trace substances. + The top model has no reverse flow, whereas the + bottom model has reverse flow. +

                    + ",revisions=" +
                      +
                    • + June 29, 2016, by Michael Wetter:
                      + Added validation test for reverse flow. +
                    • +
                    • + April 28, 2016 by Thierry S. Nouidui:
                      + First implementation. +
                    • +
                    + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/Conversion/Validation/InletToAirMoistAir.mos" "Simulate and plot"), - experiment(Tolerance=1e-6, StopTime=1.0)); + experiment(Tolerance=1e-6, StopTime=1.0), + __Dymola_LockedEditing="Model from IBPSA"); end InletToAirMoistAir; diff --git a/AixLib/Fluid/FMI/Conversion/Validation/InletToAirMoistAirCO2.mo b/AixLib/Fluid/FMI/Conversion/Validation/InletToAirMoistAirCO2.mo index 4a6a00259d..c1073f8589 100644 --- a/AixLib/Fluid/FMI/Conversion/Validation/InletToAirMoistAirCO2.mo +++ b/AixLib/Fluid/FMI/Conversion/Validation/InletToAirMoistAirCO2.mo @@ -11,30 +11,31 @@ equation {36,-70},{36,-42}}, color={0,0,127})); annotation ( Documentation(info=" -

                    -This example validates the conversion model - -AixLib.Fluid.FMI.Conversion.InletToAir -. -It is identical to - -AixLib.Fluid.FMI.Conversion.Validation.InletToAirMoistAir -except that -the medium has C02 trace substances. -

                    -", revisions=" -
                      -
                    • -June 29, 2016, by Michael Wetter:
                      -Added validation test for reverse flow. -
                    • -
                    • -April 28, 2016 by Thierry S. Nouidui:
                      -First implementation. -
                    • -
                    -"), +

                    + This example validates the conversion model + + AixLib.Fluid.FMI.Conversion.InletToAir + . + It is identical to + + AixLib.Fluid.FMI.Conversion.Validation.InletToAirMoistAir + except that + the medium has C02 trace substances. +

                    + ",revisions=" +
                      +
                    • + June 29, 2016, by Michael Wetter:
                      + Added validation test for reverse flow. +
                    • +
                    • + April 28, 2016 by Thierry S. Nouidui:
                      + First implementation. +
                    • +
                    + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/Conversion/Validation/InletToAirMoistAirCO2.mos" "Simulate and plot"), - experiment(Tolerance=1e-6, StopTime=1.0)); + experiment(Tolerance=1e-6, StopTime=1.0), + __Dymola_LockedEditing="Model from IBPSA"); end InletToAirMoistAirCO2; diff --git a/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/Fan.mo b/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/Fan.mo index fa53be70ca..9c72cb9d09 100644 --- a/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/Fan.mo +++ b/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/Fan.mo @@ -8,10 +8,10 @@ block Fan "Declaration of an FMU that exports a fan" false, energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyState)); - parameter Modelica.SIunits.MassFlowRate m_flow_nominal=0.01 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=0.01 "Nominal mass flow rate"; - parameter Modelica.SIunits.PressureDifference dp_nominal(displayUnit="Pa")=500 - "Pressure drop at nominal mass flow rate"; + parameter Modelica.Units.SI.PressureDifference dp_nominal(displayUnit="Pa")= + 500 "Pressure drop at nominal mass flow rate"; Modelica.Blocks.Interfaces.RealInput dp_in(min=0, final unit="Pa") "Prescribed pressure rise" @@ -28,33 +28,33 @@ equation smooth=Smooth.None)); annotation ( Documentation(info=" -

                    -This example demonstrates how to export an FMU with a fluid flow component. -The FMU has an instance of - -AixLib.Fluid.Movers.FlowControlled_dp. -

                    -

                    -See - -AixLib.Fluid.FMI.UsersGuide for why there is no model that exports - -AixLib.Fluid.Movers.FlowControlled_m_flow. -

                    -", revisions=" -
                      -
                    • -January 22, 2016, by Michael Wetter:
                      -Corrected type declaration of pressure difference. -This is -for #404. -
                    • -
                    • -November 3, 2014 by Michael Wetter:
                      -First implementation. -
                    • -
                    -"), +

                    + This example demonstrates how to export an FMU with a fluid flow component. + The FMU has an instance of + + AixLib.Fluid.Movers.FlowControlled_dp. +

                    +

                    + See + + AixLib.Fluid.FMI.UsersGuide for why there is no model that exports + + AixLib.Fluid.Movers.FlowControlled_m_flow. +

                    + ",revisions=" +
                      +
                    • + January 22, 2016, by Michael Wetter:
                      + Corrected type declaration of pressure difference. + This is + for #404. +
                    • +
                    • + November 3, 2014 by Michael Wetter:
                      + First implementation. +
                    • +
                    + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/ExportContainers/Examples/FMUs/Fan.mos" "Export FMU"), Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}), @@ -74,5 +74,6 @@ __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/Exp lineColor={0,0,0}, pattern=LinePattern.None, fillPattern=FillPattern.HorizontalCylinder, - fillColor={255,255,255})})); + fillColor={255,255,255})}), + __Dymola_LockedEditing="Model from IBPSA"); end Fan; diff --git a/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/FlowSplitter_u.mo b/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/FlowSplitter_u.mo index f0bd3b6589..5722b1deb6 100644 --- a/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/FlowSplitter_u.mo +++ b/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/FlowSplitter_u.mo @@ -7,20 +7,21 @@ block FlowSplitter_u "Declaration of an FMU that exports a flow splitter" allowFlowReversal(start=false)); annotation ( Documentation(info=" -

                    -This example demonstrates how to export an FMU with a fluid flow component. -The FMU is an instance of - -AixLib.Fluid.FMI.FlowSplitter_u. -

                    -", revisions=" -
                      -
                    • -November 20, 2014 by Michael Wetter:
                      -First implementation. -
                    • -
                    -"), +

                    + This example demonstrates how to export an FMU with a fluid flow component. + The FMU is an instance of + + AixLib.Fluid.FMI.FlowSplitter_u. +

                    + ",revisions=" +
                      +
                    • + November 20, 2014 by Michael Wetter:
                      + First implementation. +
                    • +
                    + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/ExportContainers/Examples/FMUs/FlowSplitter_u.mos" - "Export FMU")); + "Export FMU"), + __Dymola_LockedEditing="Model from IBPSA"); end FlowSplitter_u; diff --git a/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/HVACZone.mo b/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/HVACZone.mo index 2717c6d6fc..1b2527bba8 100644 --- a/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/HVACZone.mo +++ b/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/HVACZone.mo @@ -16,43 +16,45 @@ block HVACZone parameter Real eps = 0.8 "Heat recovery effectiveness"; ///////////////////////////////////////////////////////// - // Air temperatures at design conditions - parameter Modelica.SIunits.Temperature TASup_nominal = 273.15+18 + // Design air conditions + parameter Modelica.Units.SI.Temperature TASup_nominal=291.15 "Nominal air temperature supplied to room"; - parameter Modelica.SIunits.Temperature TRooSet = 273.15+24 + parameter Modelica.Units.SI.DimensionlessRatio wASup_nominal=0.012 + "Nominal air humidity ratio supplied to room [kg/kg] assuming 90% relative humidity"; + parameter Modelica.Units.SI.Temperature TRooSet=297.15 "Nominal room air temperature"; - parameter Modelica.SIunits.Temperature TOut_nominal = 273.15+30 + parameter Modelica.Units.SI.Temperature TOut_nominal=303.15 "Design outlet air temperature"; - parameter Modelica.SIunits.Temperature THeaRecLvg= - TOut_nominal - eps*(TOut_nominal-TRooSet) - "Air temperature leaving the heat recovery"; + parameter Modelica.Units.SI.Temperature THeaRecLvg=TOut_nominal - eps*( + TOut_nominal - TRooSet) "Air temperature leaving the heat recovery"; + parameter Modelica.Units.SI.DimensionlessRatio wHeaRecLvg=0.0135 + "Air humidity ratio leaving the heat recovery [kg/kg]"; ///////////////////////////////////////////////////////// // Cooling loads and air mass flow rates parameter Real UA(unit="W/K") = 10E3 "Average UA-value of the room"; - parameter Modelica.SIunits.HeatFlowRate QRooInt_flow= - 1000 "Internal heat gains of the room"; - parameter Modelica.SIunits.HeatFlowRate QRooC_flow_nominal= - -QRooInt_flow-UA/30*(TOut_nominal-TRooSet) - "Nominal cooling load of the room"; - parameter Modelica.SIunits.MassFlowRate mA_flow_nominal= - 1.3*QRooC_flow_nominal/1006/(TASup_nominal-TRooSet) + parameter Modelica.Units.SI.HeatFlowRate QRooInt_flow=1000 + "Internal heat gains of the room"; + parameter Modelica.Units.SI.HeatFlowRate QRooC_flow_nominal=-QRooInt_flow - + UA/30*(TOut_nominal - TRooSet) "Nominal cooling load of the room"; + parameter Modelica.Units.SI.MassFlowRate mA_flow_nominal=1.3* + QRooC_flow_nominal/1006/(TASup_nominal - TRooSet) "Nominal air mass flow rate, increased by factor 1.3 to allow for recovery after temperature setback"; - parameter Modelica.SIunits.TemperatureDifference dTFan = 2 + parameter Modelica.Units.SI.TemperatureDifference dTFan=2 "Estimated temperature raise across fan that needs to be made up by the cooling coil"; - parameter Modelica.SIunits.HeatFlowRate QCoiC_flow_nominal=4* - (QRooC_flow_nominal + mA_flow_nominal*(TASup_nominal-THeaRecLvg-dTFan)*1006) - "Cooling load of coil, taking into account economizer, and increased due to latent heat removal"; + parameter Modelica.Units.SI.HeatFlowRate QCoiC_flow_nominal=mA_flow_nominal*( + TASup_nominal - THeaRecLvg - dTFan)*1006 + mA_flow_nominal*(wASup_nominal + - wHeaRecLvg)*2458.3e3 + "Cooling load of coil, taking into account outside air sensible and latent heat removal"; ///////////////////////////////////////////////////////// // Water temperatures and mass flow rates - parameter Modelica.SIunits.Temperature TWSup_nominal = 273.15+16 + parameter Modelica.Units.SI.Temperature TWSup_nominal=285.15 "Water supply temperature"; - parameter Modelica.SIunits.Temperature TWRet_nominal = 273.15+12 + parameter Modelica.Units.SI.Temperature TWRet_nominal=289.15 "Water return temperature"; - parameter Modelica.SIunits.MassFlowRate mW_flow_nominal= - QCoiC_flow_nominal/(TWRet_nominal-TWSup_nominal)/4200 - "Nominal water mass flow rate"; + parameter Modelica.Units.SI.MassFlowRate mW_flow_nominal=-QCoiC_flow_nominal/ + (TWRet_nominal - TWSup_nominal)/4200 "Nominal water mass flow rate"; ///////////////////////////////////////////////////////// // HVAC models Modelica.Blocks.Sources.Constant zero(k=0) "Zero output signal" @@ -247,58 +249,66 @@ equation {160,160}}), graphics={ Text( extent={{-24,-132},{26,-152}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="TOut")}), Diagram( coordinateSystem(preserveAspectRatio=false, extent={{-160,-160},{160,160}})), Documentation(info=" -

                    -This example demonstrates how to export a model of an HVAC system -that only provides convective cooling to a single thermal zone. - - -

                    -

                    -The example extends from - -AixLib.Fluid.FMI.ExportContainers.HVACZone - -which provides the input and output signals that are needed to interface -the acausal HVAC system model with causal connectors of FMI. -The instance hvacAda is the HVAC adapter -that contains on the left a fluid port, and on the right signal ports -which are then used to connect at the top-level of the model to signal -ports which are exposed at the FMU interface. -

                    -", revisions=" -
                      -
                    • -May 15, 2019, by Jianjun Hu:
                      -Replaced fluid source. This is for - #1072. -
                    • -
                    • -November 11, 2016, by Michael Wetter:
                      -Made the cooling coil replaceable because the Buildings library -uses the model for validation with a cooling coil model that is not -in the Annex 60 library. -
                    • -
                    • -April 16, 2016 by Michael Wetter:
                      -First implementation. -
                    • -
                    -"), +

                    + This example demonstrates how to export a model of an HVAC system + that only provides convective cooling to a single thermal zone. + + +

                    +

                    + The example extends from + + AixLib.Fluid.FMI.ExportContainers.HVACZone + + which provides the input and output signals that are needed to interface + the acausal HVAC system model with causal connectors of FMI. + The instance hvacAda is the HVAC adapter + that contains on the left a fluid port, and on the right signal ports + which are then used to connect at the top-level of the model to signal + ports which are exposed at the FMU interface. +

                    + ",revisions=" +
                      +
                    • + September 21, 2021 by David Blum:
                      + Correct supply and return water parameterization.
                      + Use explicit calculation of sensible and latent load to determine design load + on cooling coil.
                      + This is for #2624. +
                    • +
                    • + May 15, 2019, by Jianjun Hu:
                      + Replaced fluid source. This is for + #1072. +
                    • +
                    • + November 11, 2016, by Michael Wetter:
                      + Made the cooling coil replaceable because the Buildings library + uses the model for validation with a cooling coil model that is not + in the Annex 60 library. +
                    • +
                    • + April 16, 2016 by Michael Wetter:
                      + First implementation. +
                    • +
                    + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/ExportContainers/Examples/FMUs/HVACZone.mos" - "Export FMU")); + "Export FMU"), + __Dymola_LockedEditing="Model from IBPSA"); end HVACZone; diff --git a/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/HVACZones.mo b/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/HVACZones.mo index 79e8efde07..20242cbffa 100644 --- a/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/HVACZones.mo +++ b/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/HVACZones.mo @@ -13,49 +13,51 @@ block HVACZones "= true to allow flow reversal, false restricts to design direction (inlet -> outlet)" annotation(Dialog(tab="Assumptions"), Evaluate=true); - // parameter Modelica.SIunits.Volume V=6*10*3 "Room volume"; + // parameter Modelica.Units.SI.Volume V=6*10*3 "Room volume"; ////////////////////////////////////////////////////////// // Heat recovery effectiveness parameter Real eps = 0.8 "Heat recovery effectiveness"; ///////////////////////////////////////////////////////// - // Air temperatures at design conditions - parameter Modelica.SIunits.Temperature TASup_nominal = 273.15+18 + // Design air conditions + parameter Modelica.Units.SI.Temperature TASup_nominal=291.15 "Nominal air temperature supplied to room"; - parameter Modelica.SIunits.Temperature TRooSet = 273.15+24 + parameter Modelica.Units.SI.DimensionlessRatio wASup_nominal=0.012 + "Nominal air humidity ratio supplied to room [kg/kg] assuming 90% relative humidity"; + parameter Modelica.Units.SI.Temperature TRooSet=297.15 "Nominal room air temperature"; - parameter Modelica.SIunits.Temperature TOut_nominal = 273.15+30 + parameter Modelica.Units.SI.Temperature TOut_nominal=303.15 "Design outlet air temperature"; - parameter Modelica.SIunits.Temperature THeaRecLvg= - TOut_nominal - eps*(TOut_nominal-TRooSet) - "Air temperature leaving the heat recovery"; + parameter Modelica.Units.SI.Temperature THeaRecLvg=TOut_nominal - eps*( + TOut_nominal - TRooSet) "Air temperature leaving the heat recovery"; + parameter Modelica.Units.SI.DimensionlessRatio wHeaRecLvg=0.0135 + "Air humidity ratio leaving the heat recovery [kg/kg]"; ///////////////////////////////////////////////////////// // Cooling loads and air mass flow rates parameter Real UA(unit="W/K") = 10E3 "Average UA-value of the room"; - parameter Modelica.SIunits.HeatFlowRate QRooInt_flow= - 1000 "Internal heat gains of the room"; - parameter Modelica.SIunits.HeatFlowRate QRooC_flow_nominal= - -QRooInt_flow-UA/30*(TOut_nominal-TRooSet) - "Nominal cooling load of the room"; - parameter Modelica.SIunits.MassFlowRate mA_flow_nominal= - 1.3*QRooC_flow_nominal/1006/(TASup_nominal-TRooSet) + parameter Modelica.Units.SI.HeatFlowRate QRooInt_flow=1000 + "Internal heat gains of the room"; + parameter Modelica.Units.SI.HeatFlowRate QRooC_flow_nominal=-QRooInt_flow - + UA/30*(TOut_nominal - TRooSet) "Nominal cooling load of the room"; + parameter Modelica.Units.SI.MassFlowRate mA_flow_nominal=1.3* + QRooC_flow_nominal/1006/(TASup_nominal - TRooSet) "Nominal air mass flow rate, increased by factor 1.3 to allow for recovery after temperature setback"; - parameter Modelica.SIunits.TemperatureDifference dTFan = 2 + parameter Modelica.Units.SI.TemperatureDifference dTFan=2 "Estimated temperature raise across fan that needs to be made up by the cooling coil"; - parameter Modelica.SIunits.HeatFlowRate QCoiC_flow_nominal=4* - (QRooC_flow_nominal + mA_flow_nominal*(TASup_nominal-THeaRecLvg-dTFan)*1006) - "Cooling load of coil, taking into account economizer, and increased due to latent heat removal"; + parameter Modelica.Units.SI.HeatFlowRate QCoiC_flow_nominal=mA_flow_nominal*( + TASup_nominal - THeaRecLvg - dTFan)*1006 + mA_flow_nominal*(wASup_nominal + - wHeaRecLvg)*2458.3e3 + "Cooling load of coil, taking into account outside air sensible and latent heat removal"; ///////////////////////////////////////////////////////// // Water temperatures and mass flow rates - parameter Modelica.SIunits.Temperature TWSup_nominal = 273.15+16 + parameter Modelica.Units.SI.Temperature TWSup_nominal=285.15 "Water supply temperature"; - parameter Modelica.SIunits.Temperature TWRet_nominal = 273.15+12 + parameter Modelica.Units.SI.Temperature TWRet_nominal=289.15 "Water return temperature"; - parameter Modelica.SIunits.MassFlowRate mW_flow_nominal= - QCoiC_flow_nominal/(TWRet_nominal-TWSup_nominal)/4200 - "Nominal water mass flow rate"; + parameter Modelica.Units.SI.MassFlowRate mW_flow_nominal=-QCoiC_flow_nominal/ + (TWRet_nominal - TWSup_nominal)/4200 "Nominal water mass flow rate"; ///////////////////////////////////////////////////////// // HVAC models Modelica.Blocks.Sources.Constant zer[nZon](each k=0) "Zero output signal" @@ -300,53 +302,61 @@ equation {160,180}}), graphics={ Text( extent={{-24,-132},{26,-152}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="TOut")}), Diagram( coordinateSystem(preserveAspectRatio=false, extent={{-160,-160},{160,180}})), Documentation(info=" -

                    -This example demonstrates how to export a model of an HVAC system -that only provides convective cooling to two thermal zones. -The example is similar to - -AixLib.Fluid.FMI.ExportContainers.Examples.FMUs.HVACZone -except that is serves two thermal zones rather than one. -

                    -

                    -The example extends from - -AixLib.Fluid.FMI.ExportContainers.HVACZones - -which provides the input and output signals that are needed to interface -the acausal HVAC system model with causal connectors of FMI. -The instance hvacAda is the HVAC adapter -that contains on the left a fluid port, and on the right signal ports -which are then used to connect at the top-level of the model to signal -ports which are exposed at the FMU interface. -

                    -", revisions=" -
                      -
                    • -May 15, 2019, by Jianjun Hu:
                      -Replaced fluid source. This is for - #1072. -
                    • -
                    • -April 4, 2017, by Michael Wetter:
                      -Removed import statement. -
                    • -
                    • -November 11, 2016, by Michael Wetter:
                      -Made the cooling coil replaceable because the Buildings library -uses the model for validation with a cooling coil model that is not -in the Annex 60 library. -
                    • -
                    • -April 16, 2016 by Michael Wetter:
                      -First implementation. -
                    • -
                    -"), +

                    + This example demonstrates how to export a model of an HVAC system + that only provides convective cooling to two thermal zones. + The example is similar to + + AixLib.Fluid.FMI.ExportContainers.Examples.FMUs.HVACZone + except that is serves two thermal zones rather than one. +

                    +

                    + The example extends from + + AixLib.Fluid.FMI.ExportContainers.HVACZones + + which provides the input and output signals that are needed to interface + the acausal HVAC system model with causal connectors of FMI. + The instance hvacAda is the HVAC adapter + that contains on the left a fluid port, and on the right signal ports + which are then used to connect at the top-level of the model to signal + ports which are exposed at the FMU interface. +

                    + ",revisions=" +
                      +
                    • + September 21, 2021 by David Blum:
                      + Correct supply and return water parameterization.
                      + Use explicit calculation of sensible and latent load to determine design load + on cooling coil.
                      + This is for #2624. +
                    • +
                    • + May 15, 2019, by Jianjun Hu:
                      + Replaced fluid source. This is for + #1072. +
                    • +
                    • + April 4, 2017, by Michael Wetter:
                      + Removed import statement. +
                    • +
                    • + November 11, 2016, by Michael Wetter:
                      + Made the cooling coil replaceable because the Buildings library + uses the model for validation with a cooling coil model that is not + in the Annex 60 library. +
                    • +
                    • + April 16, 2016 by Michael Wetter:
                      + First implementation. +
                    • +
                    + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/ExportContainers/Examples/FMUs/HVACZones.mos" - "Export FMU")); + "Export FMU"), + __Dymola_LockedEditing="Model from IBPSA"); end HVACZones; diff --git a/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/HeaterCooler_u.mo b/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/HeaterCooler_u.mo index 1d894d6c66..483beff164 100644 --- a/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/HeaterCooler_u.mo +++ b/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/HeaterCooler_u.mo @@ -7,14 +7,13 @@ block HeaterCooler_u final m_flow_nominal=m_flow_nominal, final dp_nominal=if use_p_in then dp_nominal else 0, final Q_flow_nominal=Q_flow_nominal, - massDynamics=Modelica.Fluid.Types.Dynamics.SteadyState, energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyState)); - parameter Modelica.SIunits.MassFlowRate m_flow_nominal=0.01 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=0.01 "Nominal mass flow rate"; - parameter Modelica.SIunits.PressureDifference dp_nominal(displayUnit="Pa")=0 - "Pressure"; - parameter Modelica.SIunits.HeatFlowRate Q_flow_nominal=100 + parameter Modelica.Units.SI.PressureDifference dp_nominal(displayUnit="Pa")= + 0 "Pressure"; + parameter Modelica.Units.SI.HeatFlowRate Q_flow_nominal=100 "Heat flow rate at u=1, positive for heating"; Modelica.Blocks.Interfaces.RealInput u(min=0, max=1, unit="1") "Control input" @@ -26,34 +25,40 @@ equation smooth=Smooth.None)); annotation ( Documentation(info=" -

                    -This example demonstrates how to export an FMU with a heater -that takes as an input signal the normalized heat flow rate. -The FMU has an instance of - -AixLib.Fluid.HeatExchangers.HeaterCooler_u. -

                    -

                    -The mass dynamics has been set to -massDynamics=Modelica.Fluid.Types.Dynamics.SteadyState. -See the -user's guide -for the rationale. -

                    -", revisions=" -
                      -
                    • -January 22, 2016, by Michael Wetter:
                      -Corrected type declaration of pressure difference. -This is -for #404. -
                    • -
                    • -November 3, 2014 by Michael Wetter:
                      -First implementation. -
                    • -
                    -"), +

                    + This example demonstrates how to export an FMU with a heater + that takes as an input signal the normalized heat flow rate. + The FMU has an instance of + + AixLib.Fluid.HeatExchangers.HeaterCooler_u. +

                    +

                    + The mass dynamics has been set to + massDynamics=Modelica.Fluid.Types.Dynamics.SteadyState. + See the + user's guide + for the rationale. +

                    + ",revisions=" +
                      +
                    • + March 7, 2022, by Michael Wetter:
                      + Removed massDynamics.
                      + This is for + #1542. +
                    • +
                    • + January 22, 2016, by Michael Wetter:
                      + Corrected type declaration of pressure difference. + This is + for #404. +
                    • +
                    • + November 3, 2014 by Michael Wetter:
                      + First implementation. +
                    • +
                    + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/ExportContainers/Examples/FMUs/HeaterCooler_u.mos" "Export FMU"), Icon(graphics={ @@ -90,7 +95,7 @@ __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/Exp fillPattern=FillPattern.Solid), Text( extent={{-54,-12},{56,-72}}, - lineColor={255,255,255}, + textColor={255,255,255}, textString="Q=%Q_flow_nominal"), Rectangle( extent={{-100,61},{-68,58}}, @@ -100,6 +105,7 @@ __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/Exp fillPattern=FillPattern.Solid), Text( extent={{-104,94},{-60,66}}, - lineColor={0,0,255}, - textString="u")})); + textColor={0,0,255}, + textString="u")}), + __Dymola_LockedEditing="Model from IBPSA"); end HeaterCooler_u; diff --git a/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/Heater_T.mo b/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/Heater_T.mo index 3a5aa2277f..bc5f6312a8 100644 --- a/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/Heater_T.mo +++ b/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/Heater_T.mo @@ -9,14 +9,14 @@ block Heater_T final QMax_flow=QMax_flow, final energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyState)); - parameter Modelica.SIunits.HeatFlowRate QMax_flow=Modelica.Constants.inf + parameter Modelica.Units.SI.HeatFlowRate QMax_flow=Modelica.Constants.inf "Maximum heat flow rate for heating (positive)"; - parameter Modelica.SIunits.HeatFlowRate QMin_flow=-Modelica.Constants.inf + parameter Modelica.Units.SI.HeatFlowRate QMin_flow=-Modelica.Constants.inf "Maximum heat flow rate for cooling (negative)"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal=0.01 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=0.01 "Nominal mass flow rate"; - parameter Modelica.SIunits.PressureDifference dp_nominal(displayUnit="Pa")=0 - "Pressure"; + parameter Modelica.Units.SI.PressureDifference dp_nominal(displayUnit="Pa")= + 0 "Pressure"; Modelica.Blocks.Interfaces.RealInput TSet(unit="K", displayUnit="degC") "Set point temperature of the fluid that leaves port_b" @@ -36,34 +36,34 @@ equation color={0,0,127}, smooth=Smooth.None)); annotation ( Documentation(info=" -

                    -This example demonstrates how to export an FMU with a heater -that takes as an input signal the leaving fluid temperature. -The FMU has an instance of - -AixLib.Fluid.HeatExchangers.PrescribedOutlet. -

                    -", revisions=" -
                      -
                    • -May 8, 2017, by Michael Wetter:
                      -Updated heater model.
                      -This is for - -AixLib, #763. -
                    • -
                    • -January 22, 2016, by Michael Wetter:
                      -Corrected type declaration of pressure difference. -This is -for #404. -
                    • -
                    • -November 20, 2014 by Michael Wetter:
                      -First implementation. -
                    • -
                    -"), +

                    + This example demonstrates how to export an FMU with a heater + that takes as an input signal the leaving fluid temperature. + The FMU has an instance of + + AixLib.Fluid.HeatExchangers.PrescribedOutlet. +

                    + ",revisions=" +
                      +
                    • + May 8, 2017, by Michael Wetter:
                      + Updated heater model.
                      + This is for + + AixLib, #763. +
                    • +
                    • + January 22, 2016, by Michael Wetter:
                      + Corrected type declaration of pressure difference. + This is + for #404. +
                    • +
                    • + November 20, 2014 by Michael Wetter:
                      + First implementation. +
                    • +
                    + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/ExportContainers/Examples/FMUs/Heater_T.mos" "Export FMU"), Icon(graphics={ @@ -106,7 +106,7 @@ __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/Exp fillPattern=FillPattern.Solid), Text( extent={{-56,74},{54,14}}, - lineColor={255,255,255}, + textColor={255,255,255}, textString="TSet"), Rectangle( extent={{-100,61},{-68,58}}, @@ -116,14 +116,15 @@ __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/Exp fillPattern=FillPattern.Solid), Text( extent={{-104,94},{-60,66}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="T"), Text( extent={{64,92},{108,64}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="Q"), Text( extent={{26,-28},{70,-74}}, - lineColor={255,255,255}, - textString="+")})); + textColor={255,255,255}, + textString="+")}), + __Dymola_LockedEditing="Model from IBPSA"); end Heater_T; diff --git a/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/Humidifier_u.mo b/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/Humidifier_u.mo index 2bee35fe17..9468334513 100644 --- a/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/Humidifier_u.mo +++ b/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/Humidifier_u.mo @@ -7,16 +7,15 @@ block Humidifier_u final m_flow_nominal=m_flow_nominal, final dp_nominal=if use_p_in then dp_nominal else 0, final mWat_flow_nominal=mWat_flow_nominal, - massDynamics=Modelica.Fluid.Types.Dynamics.SteadyState, final energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyState)); - parameter Modelica.SIunits.MassFlowRate m_flow_nominal=0.01 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=0.01 "Nominal mass flow rate"; - parameter Modelica.SIunits.PressureDifference dp_nominal(displayUnit="Pa")=0 - "Pressure"; + parameter Modelica.Units.SI.PressureDifference dp_nominal(displayUnit="Pa")= + 0 "Pressure"; - parameter Modelica.SIunits.MassFlowRate mWat_flow_nominal=0.01*0.005 + parameter Modelica.Units.SI.MassFlowRate mWat_flow_nominal=0.01*0.005 "Water mass flow rate at u=1, positive for humidification"; Modelica.Blocks.Interfaces.RealInput u(min=0, max=1, unit="1") @@ -29,41 +28,41 @@ equation smooth=Smooth.None)); annotation ( Documentation(info=" -

                    -This example demonstrates how to export an FMU with a humidifier -that takes as an input signal the normalized mass flow rate of water that -will be added to the medium. -The FMU has an instance of - -AixLib.Fluid.Humidifiers.Humidifier_u. -

                    -

                    -The mass dynamics has been set to -massDynamics=Modelica.Fluid.Types.Dynamics.SteadyState. -See the -user's guide -for the rationale. -

                    -", revisions=" -
                      -
                    • -April 12, 2017, by Michael Wetter:
                      -Removed temperature that is no longer needed.
                      -This is for issue -Buildings #704. -
                    • -
                    • -January 22, 2016, by Michael Wetter:
                      -Corrected type declaration of pressure difference. -This is -for #404. -
                    • -
                    • -April 29, 2015 by Michael Wetter:
                      -First implementation. -
                    • -
                    -"), +

                    + This example demonstrates how to export an FMU with a humidifier + that takes as an input signal the normalized mass flow rate of water that + will be added to the medium. + The FMU has an instance of + + AixLib.Fluid.Humidifiers.Humidifier_u. +

                    +

                    + The mass dynamics has been set to + massDynamics=Modelica.Fluid.Types.Dynamics.SteadyState. + See the + user's guide + for the rationale. +

                    + ",revisions=" +
                      +
                    • + April 12, 2017, by Michael Wetter:
                      + Removed temperature that is no longer needed.
                      + This is for issue + Buildings #704. +
                    • +
                    • + January 22, 2016, by Michael Wetter:
                      + Corrected type declaration of pressure difference. + This is + for #404. +
                    • +
                    • + April 29, 2015 by Michael Wetter:
                      + First implementation. +
                    • +
                    + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/ExportContainers/Examples/FMUs/Humidifier_u.mos" "Export FMU"), Icon(graphics={ @@ -100,7 +99,7 @@ __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/Exp fillPattern=FillPattern.Solid), Text( extent={{-54,-12},{56,-72}}, - lineColor={255,255,255}, + textColor={255,255,255}, textString="Q=%Q_flow_nominal"), Rectangle( extent={{-100,61},{-68,58}}, @@ -110,6 +109,7 @@ __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/Exp fillPattern=FillPattern.Solid), Text( extent={{-104,94},{-60,66}}, - lineColor={0,0,255}, - textString="u")})); + textColor={0,0,255}, + textString="u")}), + __Dymola_LockedEditing="Model from IBPSA"); end Humidifier_u; diff --git a/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/IdealSource_m_flow.mo b/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/IdealSource_m_flow.mo index d1b77a5cdb..c17fddfda8 100644 --- a/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/IdealSource_m_flow.mo +++ b/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/IdealSource_m_flow.mo @@ -12,7 +12,7 @@ block IdealSource_m_flow "Declaration of an FMU that exports a mass flow source equation assert(abs(inlet.m_flow-outlet.m_flow) < 1E-2, "The mass flow rate of port_a and port_b is not conserved. - This indicates a wrong configuration of your system model."); + This indicates a wrong configuration of your system model."); outlet.m_flow = m_flow_in; // We use connect statements @@ -27,22 +27,22 @@ equation annotation ( Documentation(info=" -

                    -This example demonstrates how to export an FMU that sets the mass flow rate. -

                    -", revisions=" -
                      -
                    • -September 24, 2015 by Michael Wetter:
                      -Changed assignment of pressure to a connect statement -because the pressure can be conditionally removed. -
                    • -
                    • -November 3, 2014 by Michael Wetter:
                      -First implementation. -
                    • -
                    -"), +

                    + This example demonstrates how to export an FMU that sets the mass flow rate. +

                    + ",revisions=" +
                      +
                    • + September 24, 2015 by Michael Wetter:
                      + Changed assignment of pressure to a connect statement + because the pressure can be conditionally removed. +
                    • +
                    • + November 3, 2014 by Michael Wetter:
                      + First implementation. +
                    • +
                    + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/ExportContainers/Examples/FMUs/IdealSource_m_flow.mos" "Export FMU"), Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100, @@ -54,7 +54,7 @@ __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/Exp fillPattern=FillPattern.HorizontalCylinder), Text( extent={{-94,110},{-50,52}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="m_flow"), Ellipse( extent={{-16,18},{24,-22}}, @@ -66,5 +66,6 @@ __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/Exp lineColor={0,0,0}, pattern=LinePattern.None, fillPattern=FillPattern.HorizontalCylinder, - fillColor={255,255,255})})); + fillColor={255,255,255})}), + __Dymola_LockedEditing="Model from IBPSA"); end IdealSource_m_flow; diff --git a/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/MixingVolume.mo b/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/MixingVolume.mo index d6110bb726..86c88dbc31 100644 --- a/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/MixingVolume.mo +++ b/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/MixingVolume.mo @@ -3,8 +3,8 @@ block MixingVolume "Declaration of an FMU that exports a control volume" extends AixLib.Fluid.FMI.ExportContainers.PartialTwoPort( redeclare package Medium = AixLib.Media.Air); - parameter Modelica.SIunits.Volume V=1 "Volume"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal=0.01 + parameter Modelica.Units.SI.Volume V=1 "Volume"; + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=0.01 "Nominal mass flow rate"; protected @@ -50,28 +50,28 @@ equation annotation ( defaultComponentName="vol", Documentation(info=" -

                    -This example demonstrates how to export an FMU with a -control volume. -The FMU has an instance of - -AixLib.Fluid.MixingVolumes.MixingVolume. -

                    -

                    -The mass dynamics has been set to -massDynamics=Modelica.Fluid.Types.Dynamics.SteadyState. -See the -user's guide -for the rationale. -

                    -", revisions=" -
                      -
                    • -November 21, 2014 by Michael Wetter:
                      -First implementation. -
                    • -
                    -"), +

                    + This example demonstrates how to export an FMU with a + control volume. + The FMU has an instance of + + AixLib.Fluid.MixingVolumes.MixingVolume. +

                    +

                    + The mass dynamics has been set to + massDynamics=Modelica.Fluid.Types.Dynamics.SteadyState. + See the + user's guide + for the rationale. +

                    + ",revisions=" +
                      +
                    • + November 21, 2014 by Michael Wetter:
                      + First implementation. +
                    • +
                    + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/ExportContainers/Examples/FMUs/MixingVolume.mos" "Export FMU"), Icon(graphics={ @@ -84,5 +84,6 @@ __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/Exp extent={{-26,30},{40,-36}}, lineColor={0,0,0}, fillPattern=FillPattern.Sphere, - fillColor={170,213,255})})); + fillColor={170,213,255})}), + __Dymola_LockedEditing="Model from IBPSA"); end MixingVolume; diff --git a/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/PressureDrop.mo b/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/PressureDrop.mo index c765f3ab6f..ff7e80bae1 100644 --- a/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/PressureDrop.mo +++ b/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/PressureDrop.mo @@ -6,32 +6,32 @@ block PressureDrop AixLib.Fluid.FixedResistances.PressureDrop com(final m_flow_nominal= m_flow_nominal, final dp_nominal=if use_p_in then dp_nominal else 0)); - parameter Modelica.SIunits.MassFlowRate m_flow_nominal=0.01 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=0.01 "Nominal mass flow rate"; - parameter Modelica.SIunits.PressureDifference dp_nominal(displayUnit="Pa")=100 - "Pressure drop at nominal mass flow rate"; + parameter Modelica.Units.SI.PressureDifference dp_nominal(displayUnit="Pa")= + 100 "Pressure drop at nominal mass flow rate"; annotation ( Documentation(info=" -

                    -This example demonstrates how to export an FMU with a fluid flow component. -The FMU has an instance of - -AixLib.Fluid.FixedResistances.PressureDrop. -

                    -", revisions=" -
                      -
                    • -January 22, 2016, by Michael Wetter:
                      -Corrected type declaration of pressure difference. -This is -for #404. -
                    • -
                    • -November 3, 2014 by Michael Wetter:
                      -First implementation. -
                    • -
                    -"), +

                    + This example demonstrates how to export an FMU with a fluid flow component. + The FMU has an instance of + + AixLib.Fluid.FixedResistances.PressureDrop. +

                    + ",revisions=" +
                      +
                    • + January 22, 2016, by Michael Wetter:
                      + Corrected type declaration of pressure difference. + This is + for #404. +
                    • +
                    • + November 3, 2014 by Michael Wetter:
                      + First implementation. +
                    • +
                    + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/ExportContainers/Examples/FMUs/PressureDrop.mos" "Export FMU"), Icon(graphics={ @@ -44,5 +44,6 @@ __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/Exp extent={{-100,14},{100,-16}}, lineColor={0,0,0}, fillColor={0,127,255}, - fillPattern=FillPattern.HorizontalCylinder)})); + fillPattern=FillPattern.HorizontalCylinder)}), + __Dymola_LockedEditing="Model from IBPSA"); end PressureDrop; diff --git a/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/ResistanceVolume.mo b/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/ResistanceVolume.mo index c7881e9f57..ff436b7fde 100644 --- a/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/ResistanceVolume.mo +++ b/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/ResistanceVolume.mo @@ -4,14 +4,14 @@ block ResistanceVolume extends AixLib.Fluid.FMI.ExportContainers.PartialTwoPort( redeclare package Medium = AixLib.Media.Air); - parameter Modelica.SIunits.Volume V=1 "Volume"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal=0.01 + parameter Modelica.Units.SI.Volume V=1 "Volume"; + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=0.01 "Nominal mass flow rate"; - parameter Modelica.SIunits.PressureDifference dp_nominal=100 + parameter Modelica.Units.SI.PressureDifference dp_nominal=100 "Nominal pressure drop"; - Modelica.Blocks.Sources.RealExpression dpCom(y=res.port_a.p - res.port_b.p) if - use_p_in "Pressure drop of the component" + Modelica.Blocks.Sources.RealExpression dpCom(y=res.port_a.p - res.port_b.p) + if use_p_in "Pressure drop of the component" annotation (Placement(transformation(extent={{-40,-90},{-20,-70}}))); protected @@ -79,36 +79,36 @@ equation color={0,127,255}, smooth=Smooth.None)); annotation (Documentation(info=" -

                    -This example demonstrates how to export an FMU with a -flow resistance and a control volume. -The FMU has an instance of - -AixLib.Fluid.FixedResistances.PressureDrop and - -AixLib.Fluid.MixingVolumes.MixingVolume. -

                    -

                    -The mass dynamics has been set to -massDynamics=Modelica.Fluid.Types.Dynamics.SteadyState. -See the -user's guide -for the rationale. -

                    -", revisions=" -
                      -
                    • -January 22, 2016, by Michael Wetter:
                      -Corrected type declaration of pressure difference. -This is -for #404. -
                    • -
                    • -November 8, 2014 by Michael Wetter:
                      -First implementation. -
                    • -
                    -"), +

                    + This example demonstrates how to export an FMU with a + flow resistance and a control volume. + The FMU has an instance of + + AixLib.Fluid.FixedResistances.PressureDrop and + + AixLib.Fluid.MixingVolumes.MixingVolume. +

                    +

                    + The mass dynamics has been set to + massDynamics=Modelica.Fluid.Types.Dynamics.SteadyState. + See the + user's guide + for the rationale. +

                    + ",revisions=" +
                      +
                    • + January 22, 2016, by Michael Wetter:
                      + Corrected type declaration of pressure difference. + This is + for #404. +
                    • +
                    • + November 8, 2014 by Michael Wetter:
                      + First implementation. +
                    • +
                    + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/ExportContainers/Examples/FMUs/ResistanceVolume.mos" "Export FMU"), Icon(graphics={ @@ -126,5 +126,6 @@ __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/Exp extent={{18,32},{84,-34}}, lineColor={0,0,0}, fillPattern=FillPattern.Sphere, - fillColor={170,213,255})})); + fillColor={170,213,255})}), + __Dymola_LockedEditing="Model from IBPSA"); end ResistanceVolume; diff --git a/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/ThermalZone.mo b/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/ThermalZone.mo index bfae517a6a..f9459ec2f5 100644 --- a/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/ThermalZone.mo +++ b/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/ThermalZone.mo @@ -7,26 +7,25 @@ model ThermalZone replaceable package MediumA = AixLib.Media.Air "Medium for air"; - parameter Modelica.SIunits.Volume V=6*10*3 "Room volume"; + parameter Modelica.Units.SI.Volume V=6*10*3 "Room volume"; ///////////////////////////////////////////////////////// // Air temperatures at design conditions - parameter Modelica.SIunits.Temperature TASup_nominal = 273.15+18 + parameter Modelica.Units.SI.Temperature TASup_nominal=273.15 + 18 "Nominal air temperature supplied to room"; - parameter Modelica.SIunits.Temperature TRooSet = 273.15+24 + parameter Modelica.Units.SI.Temperature TRooSet=273.15 + 24 "Nominal room air temperature"; - parameter Modelica.SIunits.Temperature TOut_nominal = 273.15+30 + parameter Modelica.Units.SI.Temperature TOut_nominal=273.15 + 30 "Design outlet air temperature"; ///////////////////////////////////////////////////////// // Cooling loads and air mass flow rates - parameter Modelica.SIunits.HeatFlowRate QRooInt_flow= - 1000 "Internal heat gains of the room"; - parameter Modelica.SIunits.HeatFlowRate QRooC_flow_nominal= - -QRooInt_flow-10E3/30*(TOut_nominal-TRooSet) - "Nominal cooling load of the room"; - parameter Modelica.SIunits.MassFlowRate mA_flow_nominal= - 1.3*QRooC_flow_nominal/1006/(TASup_nominal-TRooSet) + parameter Modelica.Units.SI.HeatFlowRate QRooInt_flow=1000 + "Internal heat gains of the room"; + parameter Modelica.Units.SI.HeatFlowRate QRooC_flow_nominal=-QRooInt_flow - + 10E3/30*(TOut_nominal - TRooSet) "Nominal cooling load of the room"; + parameter Modelica.Units.SI.MassFlowRate mA_flow_nominal=1.3* + QRooC_flow_nominal/1006/(TASup_nominal - TRooSet) "Nominal air mass flow rate, increased by factor 1.3 to allow for recovery after temperature setback"; BoundaryConditions.WeatherData.ReaderTMY3 weaDat( @@ -116,7 +115,7 @@ equation {160,180}}), graphics={ Text( extent={{-22,-112},{28,-132}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="TOut")}), Diagram( coordinateSystem(preserveAspectRatio=false, extent={{-160,-140},{160,180}}), graphics={ @@ -131,67 +130,68 @@ equation lineColor={0,0,127}, horizontalAlignment=TextAlignment.Left, textString="Simplified model of -a thermal zone.")}), + a thermal zone.")}), Documentation(info=" -

                    -This example demonstrates how to export a model -that contains one thermal zone with convective heat input from the -HVAC system only. The thermal zone is connected to an adaptor so that -it can be coupled -to an air-based HVAC system. - -

                    -

                    -The example extends from - -AixLib.Fluid.FMI.ExportContainers.ThermalZone - -which provides -the input and output signals that are needed to interface -the acausal thermal zone model with causal connectors of FMI. -The instance theZonAda is the thermal zone adaptor -that contains on the right a fluid port, and on -the left signal ports which are then used to connect at -the top-level of the model to signal ports which are -exposed at the FMU interface. -

                    -", revisions=" -
                      -
                    • -March 11, 2020, by Michael Wetter:
                      -Removed fontSize in annotation.
                      -This is for -#1318. -
                    • -
                    • -December 4, 2017, by Michael Wetter:
                      -Added call to Modelica.Utilities.Files.loadResource -for weather data file.
                      -This is for -#867. -
                    • -
                    • -April 12, 2017, by Michael Wetter:
                      -Removed temperature that is no longer needed.
                      -This is for issue -Buildings #704. -
                    • -
                    • -September 20, 2016, by Thierry S. Nouidui:
                      -Revised implementation and added mass flow rate sensors -to connect the thermal zone adaptor to the thermal zone. -
                    • -
                    • -April 28, 2016, by Thierry S. Nouidui:
                      -First implementation. -
                    • -
                    -"), +

                    + This example demonstrates how to export a model + that contains one thermal zone with convective heat input from the + HVAC system only. The thermal zone is connected to an adaptor so that + it can be coupled + to an air-based HVAC system. + +

                    +

                    + The example extends from + + AixLib.Fluid.FMI.ExportContainers.ThermalZone + + which provides + the input and output signals that are needed to interface + the acausal thermal zone model with causal connectors of FMI. + The instance theZonAda is the thermal zone adaptor + that contains on the right a fluid port, and on + the left signal ports which are then used to connect at + the top-level of the model to signal ports which are + exposed at the FMU interface. +

                    + ",revisions=" +
                      +
                    • + March 11, 2020, by Michael Wetter:
                      + Removed fontSize in annotation.
                      + This is for + #1318. +
                    • +
                    • + December 4, 2017, by Michael Wetter:
                      + Added call to Modelica.Utilities.Files.loadResource + for weather data file.
                      + This is for + #867. +
                    • +
                    • + April 12, 2017, by Michael Wetter:
                      + Removed temperature that is no longer needed.
                      + This is for issue + Buildings #704. +
                    • +
                    • + September 20, 2016, by Thierry S. Nouidui:
                      + Revised implementation and added mass flow rate sensors + to connect the thermal zone adaptor to the thermal zone. +
                    • +
                    • + April 28, 2016, by Thierry S. Nouidui:
                      + First implementation. +
                    • +
                    + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/ExportContainers/Examples/FMUs/ThermalZone.mos" - "Export FMU")); + "Export FMU"), + __Dymola_LockedEditing="Model from IBPSA"); end ThermalZone; diff --git a/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/ThermalZones.mo b/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/ThermalZones.mo index f20ceea0d7..6191af2275 100644 --- a/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/ThermalZones.mo +++ b/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/ThermalZones.mo @@ -8,26 +8,25 @@ model ThermalZones replaceable package MediumA = AixLib.Media.Air "Medium for air"; - parameter Modelica.SIunits.Volume V=6*10*3 "Room volume"; + parameter Modelica.Units.SI.Volume V=6*10*3 "Room volume"; ///////////////////////////////////////////////////////// // Air temperatures at design conditions - parameter Modelica.SIunits.Temperature TASup_nominal = 273.15+18 + parameter Modelica.Units.SI.Temperature TASup_nominal=273.15 + 18 "Nominal air temperature supplied to room"; - parameter Modelica.SIunits.Temperature TRooSet = 273.15+24 + parameter Modelica.Units.SI.Temperature TRooSet=273.15 + 24 "Nominal room air temperature"; - parameter Modelica.SIunits.Temperature TOut_nominal = 273.15+30 + parameter Modelica.Units.SI.Temperature TOut_nominal=273.15 + 30 "Design outlet air temperature"; ///////////////////////////////////////////////////////// // Cooling loads and air mass flow rates - parameter Modelica.SIunits.HeatFlowRate QRooInt_flow= - 1000 "Internal heat gains of the room"; - parameter Modelica.SIunits.HeatFlowRate QRooC_flow_nominal= - -QRooInt_flow-10E3/30*(TOut_nominal-TRooSet) - "Nominal cooling load of the room"; - parameter Modelica.SIunits.MassFlowRate mA_flow_nominal= - 1.3*QRooC_flow_nominal/1006/(TASup_nominal-TRooSet) + parameter Modelica.Units.SI.HeatFlowRate QRooInt_flow=1000 + "Internal heat gains of the room"; + parameter Modelica.Units.SI.HeatFlowRate QRooC_flow_nominal=-QRooInt_flow - + 10E3/30*(TOut_nominal - TRooSet) "Nominal cooling load of the room"; + parameter Modelica.Units.SI.MassFlowRate mA_flow_nominal=1.3* + QRooC_flow_nominal/1006/(TASup_nominal - TRooSet) "Nominal air mass flow rate, increased by factor 1.3 to allow for recovery after temperature setback"; BoundaryConditions.WeatherData.ReaderTMY3 weaDat( @@ -153,7 +152,7 @@ equation {160,180}}), graphics={ Text( extent={{-22,-112},{28,-132}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="TOut")}), Diagram( coordinateSystem(preserveAspectRatio=false, extent={{-160,-140},{160,180}}), graphics={ @@ -168,8 +167,8 @@ equation lineColor={0,0,127}, horizontalAlignment=TextAlignment.Left, textString="Very simplified -model of -a thermal zone."), + model of + a thermal zone."), Rectangle( extent={{20,0},{112,-126}}, fillColor={215,215,215}, @@ -181,56 +180,57 @@ a thermal zone."), lineColor={0,0,127}, horizontalAlignment=TextAlignment.Left, textString="Very simplified -model of -a thermal zone.")}), + model of + a thermal zone.")}), Documentation(info=" -

                    -This example demonstrates how to export a model -that contains two thermal zones with convective heat input from the -HVAC system only. The thermal zones are connected to an adaptor so that -they can be coupled -to an air-based HVAC system. - -

                    -

                    -The example extends from - -AixLib.Fluid.FMI.ExportContainers.ThermalZones -which provides -the input and output signals that are needed to interface -the acausal thermal zone models with causal connectors of FMI. -The instance theZonAda is the thermal zone adaptor -that contains on the right a fluid port, and on -the left signal ports which are then used to connect at -the top-level of the model to signal ports which are -exposed at the FMU interface. -

                    -", revisions=" -
                      -
                    • -March 11, 2020, by Michael Wetter:
                      -Removed fontSize in annotation.
                      -This is for -#1318. -
                    • -
                    • -December 4, 2017, by Michael Wetter:
                      -Added call to Modelica.Utilities.Files.loadResource -for weather data file.
                      -This is for -#867. -
                    • -
                    • -September 14, 2016, by Michael Wetter:
                      -First implementation. -
                    • -
                    -"), +

                    + This example demonstrates how to export a model + that contains two thermal zones with convective heat input from the + HVAC system only. The thermal zones are connected to an adaptor so that + they can be coupled + to an air-based HVAC system. + +

                    +

                    + The example extends from + + AixLib.Fluid.FMI.ExportContainers.ThermalZones + which provides + the input and output signals that are needed to interface + the acausal thermal zone models with causal connectors of FMI. + The instance theZonAda is the thermal zone adaptor + that contains on the right a fluid port, and on + the left signal ports which are then used to connect at + the top-level of the model to signal ports which are + exposed at the FMU interface. +

                    + ",revisions=" +
                      +
                    • + March 11, 2020, by Michael Wetter:
                      + Removed fontSize in annotation.
                      + This is for + #1318. +
                    • +
                    • + December 4, 2017, by Michael Wetter:
                      + Added call to Modelica.Utilities.Files.loadResource + for weather data file.
                      + This is for + #867. +
                    • +
                    • + September 14, 2016, by Michael Wetter:
                      + First implementation. +
                    • +
                    + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/ExportContainers/Examples/FMUs/ThermalZones.mos" - "Export FMU")); + "Export FMU"), + __Dymola_LockedEditing="Model from IBPSA"); end ThermalZones; diff --git a/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/TwoPortPassThrough.mo b/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/TwoPortPassThrough.mo index d1578136a0..bf94a489c9 100644 --- a/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/TwoPortPassThrough.mo +++ b/AixLib/Fluid/FMI/ExportContainers/Examples/FMUs/TwoPortPassThrough.mo @@ -11,20 +11,20 @@ equation smooth=Smooth.None)); annotation ( Documentation(info=" -

                    -This example demonstrates how to export an FMU -that simply passes all its inputs to its outputs. -Such an FMU could for example be used in a block diagram as a place-holder -for another FMU that provides an actual implementation of a component. -

                    -", revisions=" -
                      -
                    • -April 16, 2015 by Michael Wetter:
                      -First implementation. -
                    • -
                    -"), +

                    + This example demonstrates how to export an FMU + that simply passes all its inputs to its outputs. + Such an FMU could for example be used in a block diagram as a place-holder + for another FMU that provides an actual implementation of a component. +

                    + ",revisions=" +
                      +
                    • + April 16, 2015 by Michael Wetter:
                      + First implementation. +
                    • +
                    + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/ExportContainers/Examples/FMUs/TwoPortPassThrough.mos" "Export FMU"), Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100, @@ -35,5 +35,6 @@ __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/Exp smooth=Smooth.None), Line( points={{-100,0},{100,0}}, color={0,0,255}, - smooth=Smooth.None)})); + smooth=Smooth.None)}), + __Dymola_LockedEditing="Model from IBPSA"); end TwoPortPassThrough; diff --git a/AixLib/Fluid/FMI/ExportContainers/HVACZone.mo b/AixLib/Fluid/FMI/ExportContainers/HVACZone.mo index a0e90dac12..d82d546d77 100644 --- a/AixLib/Fluid/FMI/ExportContainers/HVACZone.mo +++ b/AixLib/Fluid/FMI/ExportContainers/HVACZone.mo @@ -51,24 +51,24 @@ equation lineColor={0,0,0}), Text( extent={{104,72},{154,52}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="TRad", horizontalAlignment=TextAlignment.Left), Text( extent={{100,-28},{150,-48}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="QRad"), Text( extent={{100,-78},{150,-98}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="QCon"), Text( extent={{100,-128},{150,-148}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="QLat"), Text( extent={{-72,252},{70,146}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="%name"), Rectangle( extent={{-144,-24},{36,-34}}, @@ -109,127 +109,128 @@ equation Line(points={{-88,66},{-124,-56}}, color={0,0,0})}), Diagram( coordinateSystem(preserveAspectRatio=false, extent={{-160,-160},{160,160}})), Documentation(info=" -

                    -Model that is used as a container for an HVAC system that is -to be exported as an FMU and that serves a single zone. -

                    -

                    Typical use and important parameters

                    -

                    -To use this model as a container for an FMU, extend -from this model, rather than instantiate it, -and add your HVAC system. By extending from this model, the top-level -signal connectors on the right stay at the top-level, and hence -will be visible at the FMI interface. -The example - -AixLib.Fluid.FMI.ExportContainers.Examples.FMUs.HVACZone -shows how a simple HVAC system can be implemented and exported as -an FMU. - -

                    -

                    -The conversion between the fluid ports and signal ports is done -in the HVAC adapter hvacAda. -This adapter has a vector of fluid ports called ports. -The supply and return air ducts, including any resistance model for the inlet -diffusor or exhaust grill, need to be connected to these ports. -Also, if a thermal zone has interzonal air exchange or air infiltration, -these flows need to be connected to ports. -This model outputs at the port fluPor the mass flow rate for -each flow that is connected to ports, together with its -temperature, water vapor mass fraction per total mass of the air (not per kg dry -air), and trace substances. These quantities are always as if the flow -enters the room, even if the flow is zero or negative. -If a medium has no moisture, e.g., if Medium.nXi=0, or -if it has no trace substances, e.g., if Medium.nC=0, then -the output signal for these properties are removed. -These quantities are always as if the flow -enters the room, even if the flow is zero or negative. -Thus, a thermal zone model that uses these signals to compute the -heat added by the HVAC system needs to implement an equation such as -

                    -

                    -Qsen = max(0, ṁsup)   cp   (Tsup - Tair,zon), -

                    -

                    -where -Qsen is the sensible heat flow rate added to the thermal zone, -sup is the supply air mass flow rate from -the port fluPor (which is negative if it is an exhaust), -cp is the specific heat capacity at constant pressure, -Tsup is the supply air temperature and -Tair,zon is the zone air temperature. -Note that without the max(·, ·), the energy -balance would be wrong. -

                    -

                    -The input signals of this model are the zone radiative temperature. -The the zone air temperature, -the water vapor mass fraction per total mass of the air (unless Medium.nXi=0) -and trace substances (unless Medium.nC=0) are obtained from the connector -fluPor.backward. -The outflowing fluid stream(s) at the port ports will be at the -states obtained from fluPor.backward. -All fluid streams at port ports are at the same -pressure. -For convenience, the instance hvacAda also outputs the -properties obtained from fluPor.backward. These can be used -to connect a controller. The properties are available for each flow path in -fluPor.backward. For a thermal zone with mixed air, these are -all equal, while for a stratified room model, they can be different. -

                    - -

                    -See - -AixLib.Fluid.FMI.ExportContainers.Examples.FMUs.HVACZone -for a model that uses this model. -

                    -

                    -For models that multiple thermal zones connected to the HVAC system, -use the model - -AixLib.Fluid.FMI.ExportContainers.HVACZones. -

                    -

                    Assumption and limitations

                    -

                    -The mass flow rates at ports sum to zero, hence this -model conserves mass. -

                    -

                    -This model does not impose any pressure, other than setting the pressure -of all fluid connections to ports to be equal. -The reason is that setting a pressure can lead to non-physical system models, -for example if a mass flow rate is imposed and the HVAC system is connected -to a model that sets a pressure boundary condition such as - -AixLib.Fluid.Sources.Outside. -Also, setting a pressure would make it impossible to use multiple instances -of this model (one for each thermal zone) and build in Modelica an airflow network -model with pressure driven mass flow rates. -

                    -

                    -The model has no pressure drop. Hence, the pressure drop -of an air diffuser or of an exhaust grill needs to be modelled -in models that are connected to ports. -

                    -", revisions=" -
                      -
                    • -January 18, 2019, by Jianjun Hu:
                      -Limited the media choice to moist air only. -See #1050. -
                    • -
                    • -April 15, 2016, by Michael Wetter:
                      -First implementation. -
                    • -
                    -")); +

                    + Model that is used as a container for an HVAC system that is + to be exported as an FMU and that serves a single zone. +

                    +

                    Typical use and important parameters

                    +

                    + To use this model as a container for an FMU, extend + from this model, rather than instantiate it, + and add your HVAC system. By extending from this model, the top-level + signal connectors on the right stay at the top-level, and hence + will be visible at the FMI interface. + The example + + AixLib.Fluid.FMI.ExportContainers.Examples.FMUs.HVACZone + shows how a simple HVAC system can be implemented and exported as + an FMU. + +

                    +

                    + The conversion between the fluid ports and signal ports is done + in the HVAC adapter hvacAda. + This adapter has a vector of fluid ports called ports. + The supply and return air ducts, including any resistance model for the inlet + diffusor or exhaust grill, need to be connected to these ports. + Also, if a thermal zone has interzonal air exchange or air infiltration, + these flows need to be connected to ports. + This model outputs at the port fluPor the mass flow rate for + each flow that is connected to ports, together with its + temperature, water vapor mass fraction per total mass of the air (not per kg dry + air), and trace substances. These quantities are always as if the flow + enters the room, even if the flow is zero or negative. + If a medium has no moisture, e.g., if Medium.nXi=0, or + if it has no trace substances, e.g., if Medium.nC=0, then + the output signal for these properties are removed. + These quantities are always as if the flow + enters the room, even if the flow is zero or negative. + Thus, a thermal zone model that uses these signals to compute the + heat added by the HVAC system needs to implement an equation such as +

                    +

                    + Qsen = max(0, ṁsup)   cp   (Tsup - Tair,zon), +

                    +

                    + where + Qsen is the sensible heat flow rate added to the thermal zone, + sup is the supply air mass flow rate from + the port fluPor (which is negative if it is an exhaust), + cp is the specific heat capacity at constant pressure, + Tsup is the supply air temperature and + Tair,zon is the zone air temperature. + Note that without the max(·, ·), the energy + balance would be wrong. +

                    +

                    + The input signals of this model are the zone radiative temperature. + The the zone air temperature, + the water vapor mass fraction per total mass of the air (unless Medium.nXi=0) + and trace substances (unless Medium.nC=0) are obtained from the connector + fluPor.backward. + The outflowing fluid stream(s) at the port ports will be at the + states obtained from fluPor.backward. + All fluid streams at port ports are at the same + pressure. + For convenience, the instance hvacAda also outputs the + properties obtained from fluPor.backward. These can be used + to connect a controller. The properties are available for each flow path in + fluPor.backward. For a thermal zone with mixed air, these are + all equal, while for a stratified room model, they can be different. +

                    + +

                    + See + + AixLib.Fluid.FMI.ExportContainers.Examples.FMUs.HVACZone + for a model that uses this model. +

                    +

                    + For models that multiple thermal zones connected to the HVAC system, + use the model + + AixLib.Fluid.FMI.ExportContainers.HVACZones. +

                    +

                    Assumption and limitations

                    +

                    + The mass flow rates at ports sum to zero, hence this + model conserves mass. +

                    +

                    + This model does not impose any pressure, other than setting the pressure + of all fluid connections to ports to be equal. + The reason is that setting a pressure can lead to non-physical system models, + for example if a mass flow rate is imposed and the HVAC system is connected + to a model that sets a pressure boundary condition such as + + AixLib.Fluid.Sources.Outside. + Also, setting a pressure would make it impossible to use multiple instances + of this model (one for each thermal zone) and build in Modelica an airflow network + model with pressure driven mass flow rates. +

                    +

                    + The model has no pressure drop. Hence, the pressure drop + of an air diffuser or of an exhaust grill needs to be modelled + in models that are connected to ports. +

                    + ",revisions=" +
                      +
                    • + January 18, 2019, by Jianjun Hu:
                      + Limited the media choice to moist air only. + See #1050. +
                    • +
                    • + April 15, 2016, by Michael Wetter:
                      + First implementation. +
                    • +
                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end HVACZone; diff --git a/AixLib/Fluid/FMI/ExportContainers/HVACZones.mo b/AixLib/Fluid/FMI/ExportContainers/HVACZones.mo index 648001dc42..04dde52ec4 100644 --- a/AixLib/Fluid/FMI/ExportContainers/HVACZones.mo +++ b/AixLib/Fluid/FMI/ExportContainers/HVACZones.mo @@ -61,23 +61,23 @@ equation lineColor={0,0,0}), Text( extent={{104,76},{154,56}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="TRad"), Text( extent={{100,-28},{150,-48}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="QRad"), Text( extent={{100,-78},{150,-98}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="QCon"), Text( extent={{106,-128},{156,-148}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="QLat"), Text( extent={{-72,252},{70,146}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="%name"), Rectangle( extent={{-144,-24},{80,-32}}, @@ -153,148 +153,149 @@ equation coordinateSystem(preserveAspectRatio=false, extent={{-160,-160},{160,160}}), graphics={Text( extent={{104,152},{118,146}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="[%nZon, %nPorts]")}), Documentation(info=" -

                    -Model that is used as a container for an HVAC system that is -to be exported as an FMU and that serves multiple zones. -

                    -

                    Typical use and important parameters

                    -

                    -To use this model as a container for an FMU, simply extend -from this model, rather than instantiate it, -and add your HVAC system. By extending from this model, the top-level -signal connectors on the right stay at the top-level, and hence -will be visible at the FMI interface. -The example - -AixLib.Fluid.FMI.ExportContainers.Examples.FMUs.HVACZones -shows how a simple HVAC system that serves two rooms can be implemented and exported as -an FMU. - -

                    -

                    -The following two parameters need to be assigned by the user: -Set nZon to the number of thermal zones to which the -FMU will be connected. -Set nPorts to the largest number of fluid ports -that the thermal zones has. For example, -if nZon=2 and zone 1 has one inlet and one outlet -(hence it has 2 ports), -and zone 2 has one inlets and two outlets -(hence it has 3 ports), then -set nPorts=3. This will add more fluid ports than are needed -for zone 1, but this causes no overhead if they are not connected. -

                    -

                    -The conversion between the fluid ports and signal ports is done -in the HVAC adapter hvacAda. -This adapter has a vector of fluid ports called ports. -The supply and return air ducts, including any resistance model for the inlet -diffusor or exhaust grill, need to be connected to these ports. -Also, if a thermal zone has interzonal air exchange or air infiltration, -these flows need to be connected to ports. -This model outputs at the port fluPor the mass flow rate for -each flow that is connected to ports, together with its -temperature, water vapor mass fraction per total mass of the air (not per kg dry -air), and trace substances. These quantities are always as if the flow -enters the room, even if the flow is zero or negative. -If a medium has no moisture, e.g., if Medium.nXi=0, or -if it has no trace substances, e.g., if Medium.nC=0, then -the output signal for these properties are removed. -These quantities are always as if the flow -enters the room, even if the flow is zero or negative. -Thus, a thermal zone model that uses these signals to compute the -heat added by the HVAC system need to implement an equation such as -

                    -

                    -Qsen = max(0, ṁsup)   cp   (Tsup - Tair,zon), -

                    -

                    -where -Qsen is the sensible heat flow rate added to the thermal zone, -sup is the supply air mass flow rate from -the port fluPor (which is negative if it is an exhaust), -cp is the specific heat capacity at constant pressure, -Tsup is the supply air temperature and -Tair,zon is the zone air temperature. -Note that without the max(·, ·), the energy -balance would be wrong. -

                    - -

                    -The input signals of this model are the radiative temperature of each zone. -The the zone air temperatures, -the water vapor mass fractions per total mass of the air (unless Medium.nXi=0) -and trace substances (unless Medium.nC=0) are obtained from the connector -fluPor.backward. -The outflowing fluid stream(s) at the port ports will be at the -states obtained from fluPor.backward. -For any given izon ∈ {1, ..., nzon}, -for each iports ∈ {1, ..., nports} -all fluid streams at port ports[izon, iports] are at the same -pressure. -For convenience, the instance hvacAda also outputs the -properties obtained from fluPor.backward. These can be used -to connect a controller. The properties are available for each flow path in -fluPor.backward. For a thermal zone with mixed air, these are -all equal, while for a stratified room model, they can be different. -

                    -

                    -See - -AixLib.Fluid.FMI.ExportContainers.Examples.FMUs.HVACZones -for a model that uses this model. -

                    -

                    -For models that only have one thermal zone connected to the HVAC system, -use the simpler model - -AixLib.Fluid.FMI.ExportContainers.HVACZone. -

                    -

                    Assumption and limitations

                    -

                    -The mass flow rates at ports sum to zero, hence this -model conserves mass for each thermal zone. -

                    -

                    -This model does not impose any pressure, other than, -for any given izon ∈ {1, ..., nzon} and -for each j,k ∈ {1, ..., nports}, -setting the pressure of ports[izon, j].p = ports[izon, k].p -to be the same. -The reason is that setting a pressure can lead to non-physical system models, -for example if a mass flow rate is imposed and the HVAC system is connected -to a model that sets a pressure boundary condition such as - -AixLib.Fluid.Sources.Outside. -Also, setting a pressure would make it impossible to use multiple instances -of this model (one for each thermal zone) and build in Modelica an airflow network -model with pressure driven mass flow rates. -

                    -

                    -The model has no pressure drop. Hence, the pressure drop -of an air diffuser or of an exhaust grill needs to be modelled -in models that are connected to ports. -

                    -", revisions=" -
                      -
                    • -January 18, 2019, by Jianjun Hu:
                      -Limited the media choice to moist air only. -See #1050. -
                    • -
                    • -May 25, 2016, by Michael Wetter:
                      -First implementation. -
                    • -
                    -")); +

                    + Model that is used as a container for an HVAC system that is + to be exported as an FMU and that serves multiple zones. +

                    +

                    Typical use and important parameters

                    +

                    + To use this model as a container for an FMU, simply extend + from this model, rather than instantiate it, + and add your HVAC system. By extending from this model, the top-level + signal connectors on the right stay at the top-level, and hence + will be visible at the FMI interface. + The example + + AixLib.Fluid.FMI.ExportContainers.Examples.FMUs.HVACZones + shows how a simple HVAC system that serves two rooms can be implemented and exported as + an FMU. + +

                    +

                    + The following two parameters need to be assigned by the user: + Set nZon to the number of thermal zones to which the + FMU will be connected. + Set nPorts to the largest number of fluid ports + that the thermal zones has. For example, + if nZon=2 and zone 1 has one inlet and one outlet + (hence it has 2 ports), + and zone 2 has one inlets and two outlets + (hence it has 3 ports), then + set nPorts=3. This will add more fluid ports than are needed + for zone 1, but this causes no overhead if they are not connected. +

                    +

                    + The conversion between the fluid ports and signal ports is done + in the HVAC adapter hvacAda. + This adapter has a vector of fluid ports called ports. + The supply and return air ducts, including any resistance model for the inlet + diffusor or exhaust grill, need to be connected to these ports. + Also, if a thermal zone has interzonal air exchange or air infiltration, + these flows need to be connected to ports. + This model outputs at the port fluPor the mass flow rate for + each flow that is connected to ports, together with its + temperature, water vapor mass fraction per total mass of the air (not per kg dry + air), and trace substances. These quantities are always as if the flow + enters the room, even if the flow is zero or negative. + If a medium has no moisture, e.g., if Medium.nXi=0, or + if it has no trace substances, e.g., if Medium.nC=0, then + the output signal for these properties are removed. + These quantities are always as if the flow + enters the room, even if the flow is zero or negative. + Thus, a thermal zone model that uses these signals to compute the + heat added by the HVAC system need to implement an equation such as +

                    +

                    + Qsen = max(0, ṁsup)   cp   (Tsup - Tair,zon), +

                    +

                    + where + Qsen is the sensible heat flow rate added to the thermal zone, + sup is the supply air mass flow rate from + the port fluPor (which is negative if it is an exhaust), + cp is the specific heat capacity at constant pressure, + Tsup is the supply air temperature and + Tair,zon is the zone air temperature. + Note that without the max(·, ·), the energy + balance would be wrong. +

                    + +

                    + The input signals of this model are the radiative temperature of each zone. + The the zone air temperatures, + the water vapor mass fractions per total mass of the air (unless Medium.nXi=0) + and trace substances (unless Medium.nC=0) are obtained from the connector + fluPor.backward. + The outflowing fluid stream(s) at the port ports will be at the + states obtained from fluPor.backward. + For any given izon ∈ {1, ..., nzon}, + for each iports ∈ {1, ..., nports} + all fluid streams at port ports[izon, iports] are at the same + pressure. + For convenience, the instance hvacAda also outputs the + properties obtained from fluPor.backward. These can be used + to connect a controller. The properties are available for each flow path in + fluPor.backward. For a thermal zone with mixed air, these are + all equal, while for a stratified room model, they can be different. +

                    +

                    + See + + AixLib.Fluid.FMI.ExportContainers.Examples.FMUs.HVACZones + for a model that uses this model. +

                    +

                    + For models that only have one thermal zone connected to the HVAC system, + use the simpler model + + AixLib.Fluid.FMI.ExportContainers.HVACZone. +

                    +

                    Assumption and limitations

                    +

                    + The mass flow rates at ports sum to zero, hence this + model conserves mass for each thermal zone. +

                    +

                    + This model does not impose any pressure, other than, + for any given izon ∈ {1, ..., nzon} and + for each j,k ∈ {1, ..., nports}, + setting the pressure of ports[izon, j].p = ports[izon, k].p + to be the same. + The reason is that setting a pressure can lead to non-physical system models, + for example if a mass flow rate is imposed and the HVAC system is connected + to a model that sets a pressure boundary condition such as + + AixLib.Fluid.Sources.Outside. + Also, setting a pressure would make it impossible to use multiple instances + of this model (one for each thermal zone) and build in Modelica an airflow network + model with pressure driven mass flow rates. +

                    +

                    + The model has no pressure drop. Hence, the pressure drop + of an air diffuser or of an exhaust grill needs to be modelled + in models that are connected to ports. +

                    + ",revisions=" +
                      +
                    • + January 18, 2019, by Jianjun Hu:
                      + Limited the media choice to moist air only. + See #1050. +
                    • +
                    • + May 25, 2016, by Michael Wetter:
                      + First implementation. +
                    • +
                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end HVACZones; diff --git a/AixLib/Fluid/FMI/ExportContainers/PartialTwoPort.mo b/AixLib/Fluid/FMI/ExportContainers/PartialTwoPort.mo index 35bf67de15..03d037a44b 100644 --- a/AixLib/Fluid/FMI/ExportContainers/PartialTwoPort.mo +++ b/AixLib/Fluid/FMI/ExportContainers/PartialTwoPort.mo @@ -40,37 +40,38 @@ partial block PartialTwoPort fillColor={255,255,255}), Text( extent={{-151,147},{149,107}}, - lineColor={0,0,255}, + textColor={0,0,255}, fillPattern=FillPattern.HorizontalCylinder, fillColor={0,127,255}, textString="%name")}), Documentation(info=" -

                    -Partial model that can be used to export thermofluid flow models as an FMU. -This model only declares the inlet and outlet ports, the medium and -whether flow reversal is allowed. -

                    -

                    -See - -AixLib.Fluid.FMI.ExportContainers.Examples.FMUs.ResistanceVolume -for a block that extends this partial block. -

                    -", revisions=" -
                      -
                    • -January 18, 2019, by Jianjun Hu:
                      -Limited the media choice. -See #1050. -
                    • -
                    • -April 29, 2015, by Michael Wetter:
                      -Redesigned to conditionally remove the pressure connector -if use_p_in=false. -
                    • -
                    • -November 8, 2014, by Michael Wetter:
                      -First implementation. -
                    • -
                    -")); +

                    + Partial model that can be used to export thermofluid flow models as an FMU. + This model only declares the inlet and outlet ports, the medium and + whether flow reversal is allowed. +

                    +

                    + See + + AixLib.Fluid.FMI.ExportContainers.Examples.FMUs.ResistanceVolume + for a block that extends this partial block. +

                    + ",revisions=" +
                      +
                    • + January 18, 2019, by Jianjun Hu:
                      + Limited the media choice. + See #1050. +
                    • +
                    • + April 29, 2015, by Michael Wetter:
                      + Redesigned to conditionally remove the pressure connector + if use_p_in=false. +
                    • +
                    • + November 8, 2014, by Michael Wetter:
                      + First implementation. +
                    • +
                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end PartialTwoPort; diff --git a/AixLib/Fluid/FMI/ExportContainers/ReplaceableTwoPort.mo b/AixLib/Fluid/FMI/ExportContainers/ReplaceableTwoPort.mo index 9c87fe0f7b..66eb5827fe 100644 --- a/AixLib/Fluid/FMI/ExportContainers/ReplaceableTwoPort.mo +++ b/AixLib/Fluid/FMI/ExportContainers/ReplaceableTwoPort.mo @@ -9,8 +9,8 @@ block ReplaceableTwoPort "Component that holds the actual model" annotation (Placement(transformation(extent={{-10,-10},{10,10}}))); - Modelica.Blocks.Sources.RealExpression dpCom(y=com.port_a.p - com.port_b.p) if - use_p_in "Pressure drop of the component" + Modelica.Blocks.Sources.RealExpression dpCom(y=com.port_a.p - com.port_b.p) + if use_p_in "Pressure drop of the component" annotation (Placement(transformation(extent={{-40,-90},{-20,-70}}))); protected @@ -26,8 +26,8 @@ protected final use_p_in=use_p_in) "Boundary component for outlet" annotation (Placement(transformation(extent={{60,-10},{80,10}}))); - Modelica.Blocks.Math.Feedback pOut if - use_p_in "Pressure at component outlet" + Modelica.Blocks.Math.Feedback pOut + if use_p_in "Pressure at component outlet" annotation (Placement(transformation(extent={{-10,-70},{10,-50}}))); equation connect(pOut.u1, bouIn.p) annotation (Line( @@ -59,45 +59,46 @@ equation color={0,0,127}, smooth=Smooth.None)); annotation ( Documentation(info=" -

                    -Block that serves as a container to export a thermofluid flow component. -This block contains a replaceable model com that needs to -be redeclared to export any model that has as its base class - -AixLib.Fluid.Interfaces.PartialTwoPort. -This allows exporting a large variety of thermofluid flow models -with a simple redeclare. -

                    -

                    -See for example - -AixLib.Fluid.FMI.ExportContainers.Examples.FMUs.PressureDrop -or - -AixLib.Fluid.FMI.ExportContainers.Examples.FMUs.HeaterCooler_u -for how to use this block. -

                    -

                    -Note that this block must not be used if the instance com -sets a constant pressure. In such a situation, use - -AixLib.Fluid.FMI.ExportContainers.PartialTwoPort -together with - -AixLib.Fluid.FMI.Adaptors.Inlet -and - -AixLib.Fluid.FMI.Adaptors.Outlet -and set the pressure to be equal to the port p of - -AixLib.Fluid.FMI.Adaptors.Outlet. -

                    -", revisions=" -
                      -
                    • -November 8, 2014, by Michael Wetter:
                      -First implementation. -
                    • -
                    -")); +

                    + Block that serves as a container to export a thermofluid flow component. + This block contains a replaceable model com that needs to + be redeclared to export any model that has as its base class + + AixLib.Fluid.Interfaces.PartialTwoPort. + This allows exporting a large variety of thermofluid flow models + with a simple redeclare. +

                    +

                    + See for example + + AixLib.Fluid.FMI.ExportContainers.Examples.FMUs.PressureDrop + or + + AixLib.Fluid.FMI.ExportContainers.Examples.FMUs.HeaterCooler_u + for how to use this block. +

                    +

                    + Note that this block must not be used if the instance com + sets a constant pressure. In such a situation, use + + AixLib.Fluid.FMI.ExportContainers.PartialTwoPort + together with + + AixLib.Fluid.FMI.Adaptors.Inlet + and + + AixLib.Fluid.FMI.Adaptors.Outlet + and set the pressure to be equal to the port p of + + AixLib.Fluid.FMI.Adaptors.Outlet. +

                    + ",revisions=" +
                      +
                    • + November 8, 2014, by Michael Wetter:
                      + First implementation. +
                    • +
                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end ReplaceableTwoPort; diff --git a/AixLib/Fluid/FMI/ExportContainers/ThermalZone.mo b/AixLib/Fluid/FMI/ExportContainers/ThermalZone.mo index e641650f6f..3070507f69 100644 --- a/AixLib/Fluid/FMI/ExportContainers/ThermalZone.mo +++ b/AixLib/Fluid/FMI/ExportContainers/ThermalZone.mo @@ -37,7 +37,7 @@ equation fillPattern=FillPattern.Solid), Text( extent={{-64,270},{78,164}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="%name"), Rectangle( extent={{-62,100},{80,-62}}, @@ -57,149 +57,150 @@ equation fillPattern=FillPattern.Solid)}), Diagram( coordinateSystem(preserveAspectRatio=false, extent={{-160,-140},{160,180}})), Documentation(info=" -

                    -Model that is used as a container for a single thermal zone -that is to be exported as an FMU. -

                    -

                    Typical use and important parameters

                    -

                    -To use this model as a container for an FMU, extend -from this model, rather than instantiate it, -add your thermal zone and a vector of mass flow rate sensors. -By extending from this model, the top-level -signal connectors on the left stay at the top-level, and hence -will be visible at the FMI interface. -

                    - -Note that -
                      -
                    • -The vector of mass flow rate sensors is used to connect -the thermal zone adapter and your thermal zone. -
                    • -
                    • -The vector of mass flow rate sensors must have the size nPorts. -
                    • -
                    • -All fluid ports of the mass flow rate sensor must be connected. -
                    • -
                    • -If the vector of mass flow rate sensors is not used, and your themal zone -has fluid ports which are autosized, then a direct connection between -the thermal zone adpater theZonAda and your thermal -zone will be rejected. The reason is because autosized fluid ports -can only be connected to vector of ports whose sizes are literal. -
                    • -
                    - -

                    -The example - -AixLib.Fluid.FMI.ExportContainers.Examples.FMUs.ThermalZone -shows how a simple thermal zone can be implemented and exported as -an FMU. - -

                    - -

                    -The conversion between the fluid ports and signal ports is done -in the thermal zone adapter theZonAda. -This adapter has a vector of fluid ports called ports[nPorts] -which needs to be connected to the air volume of the thermal zone. -At this port, air exchanged between the thermal zone, the HVAC system -and any infiltration flow paths. -

                    -

                    -This model has input signals fluPor[nPorts], which carry -the mass flow rate for each flow that is connected to ports, together with its -temperature, water vapor mass fraction per total mass of the air (not per kg dry -air), and trace substances. These quantities are always as if the flow -enters the room, even if the flow is zero or negative. -If a medium has no moisture, e.g., if Medium.nXi=0, or -if it has no trace substances, e.g., if Medium.nC=0, then -the output signal for these properties are removed. -Thus, a thermal zone model that uses these signals to compute the -heat added by the HVAC system need to implement an equation such as -

                    -

                    -Qsen = max(0, ṁsup)   cp   (Tsup - Tair,zon), -

                    -

                    -where -Qsen is the sensible heat flow rate added to the thermal zone, -sup is the supply air mass flow rate from -the port fluPor (which is negative if it is an exhaust), -cp is the specific heat capacity at constant pressure, -Tsup is the supply air temperature and -Tair,zon is the zone air temperature. -Note that without the max(·, ·), the energy -balance would be wrong. -For example, - -the control volumes in - -AixLib.Fluid.MixingVolumes -implement such a max(·, ·) function. -

                    -

                    -The zone air temperature, -the water vapor mass fraction per total mass of the air (unless Medium.nXi=0) -and trace substances (unless Medium.nC=0) -can be obtained from the outupt connector -fluPor.backward. -These signals are the same as the inflowing fluid stream(s) -at the port theAdaZon.ports[1:nPorts]. -The fluid connector ports[nPorts] has a prescribed mass flow rate, but -it does not set any pressure. -

                    -

                    -This model has a user-defined parameter nPorts -which sets the number of fluid ports, which in turn is used -for the ports fluPor and ports. -All nPorts -ports[1:nPorts] need to be connected as demonstrated in the example - -AixLib.Fluid.FMI.ExportContainers.Examples.FMUs.ThermalZone. -

                    -

                    - -

                    -", revisions=" -
                      -
                    • -January 18, 2019, by Jianjun Hu:
                      -Limited the media choice to moist air. -See #1050. -
                    • -
                    • -September 20, 2016, by Thierry S. Nouidui:
                      -Revised documentation to explain the rationale -of needing mass flow rate sensors. -
                    • -
                    • -June 29, 2016, by Michael Wetter:
                      -Revised implementation and documentation. -
                    • -
                    • -April 27, 2016, by Thierry S. Nouidui:
                      -First implementation. -
                    • -
                    -")); +

                    + Model that is used as a container for a single thermal zone + that is to be exported as an FMU. +

                    +

                    Typical use and important parameters

                    +

                    + To use this model as a container for an FMU, extend + from this model, rather than instantiate it, + add your thermal zone and a vector of mass flow rate sensors. + By extending from this model, the top-level + signal connectors on the left stay at the top-level, and hence + will be visible at the FMI interface. +

                    + + Note that +
                      +
                    • + The vector of mass flow rate sensors is used to connect + the thermal zone adapter and your thermal zone. +
                    • +
                    • + The vector of mass flow rate sensors must have the size nPorts. +
                    • +
                    • + All fluid ports of the mass flow rate sensor must be connected. +
                    • +
                    • + If the vector of mass flow rate sensors is not used, and your themal zone + has fluid ports which are autosized, then a direct connection between + the thermal zone adpater theZonAda and your thermal + zone will be rejected. The reason is because autosized fluid ports + can only be connected to vector of ports whose sizes are literal. +
                    • +
                    + +

                    + The example + + AixLib.Fluid.FMI.ExportContainers.Examples.FMUs.ThermalZone + shows how a simple thermal zone can be implemented and exported as + an FMU. + +

                    + +

                    + The conversion between the fluid ports and signal ports is done + in the thermal zone adapter theZonAda. + This adapter has a vector of fluid ports called ports[nPorts] + which needs to be connected to the air volume of the thermal zone. + At this port, air exchanged between the thermal zone, the HVAC system + and any infiltration flow paths. +

                    +

                    + This model has input signals fluPor[nPorts], which carry + the mass flow rate for each flow that is connected to ports, together with its + temperature, water vapor mass fraction per total mass of the air (not per kg dry + air), and trace substances. These quantities are always as if the flow + enters the room, even if the flow is zero or negative. + If a medium has no moisture, e.g., if Medium.nXi=0, or + if it has no trace substances, e.g., if Medium.nC=0, then + the output signal for these properties are removed. + Thus, a thermal zone model that uses these signals to compute the + heat added by the HVAC system need to implement an equation such as +

                    +

                    + Qsen = max(0, ṁsup)   cp   (Tsup - Tair,zon), +

                    +

                    + where + Qsen is the sensible heat flow rate added to the thermal zone, + sup is the supply air mass flow rate from + the port fluPor (which is negative if it is an exhaust), + cp is the specific heat capacity at constant pressure, + Tsup is the supply air temperature and + Tair,zon is the zone air temperature. + Note that without the max(·, ·), the energy + balance would be wrong. + For example, + + the control volumes in + + AixLib.Fluid.MixingVolumes + implement such a max(·, ·) function. +

                    +

                    + The zone air temperature, + the water vapor mass fraction per total mass of the air (unless Medium.nXi=0) + and trace substances (unless Medium.nC=0) + can be obtained from the outupt connector + fluPor.backward. + These signals are the same as the inflowing fluid stream(s) + at the port theAdaZon.ports[1:nPorts]. + The fluid connector ports[nPorts] has a prescribed mass flow rate, but + it does not set any pressure. +

                    +

                    + This model has a user-defined parameter nPorts + which sets the number of fluid ports, which in turn is used + for the ports fluPor and ports. + All nPorts + ports[1:nPorts] need to be connected as demonstrated in the example + + AixLib.Fluid.FMI.ExportContainers.Examples.FMUs.ThermalZone. +

                    +

                    + +

                    + ",revisions=" +
                      +
                    • + January 18, 2019, by Jianjun Hu:
                      + Limited the media choice to moist air. + See #1050. +
                    • +
                    • + September 20, 2016, by Thierry S. Nouidui:
                      + Revised documentation to explain the rationale + of needing mass flow rate sensors. +
                    • +
                    • + June 29, 2016, by Michael Wetter:
                      + Revised implementation and documentation. +
                    • +
                    • + April 27, 2016, by Thierry S. Nouidui:
                      + First implementation. +
                    • +
                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end ThermalZone; diff --git a/AixLib/Fluid/FMI/ExportContainers/ThermalZones.mo b/AixLib/Fluid/FMI/ExportContainers/ThermalZones.mo index 768acbdb74..d0457a7f55 100644 --- a/AixLib/Fluid/FMI/ExportContainers/ThermalZones.mo +++ b/AixLib/Fluid/FMI/ExportContainers/ThermalZones.mo @@ -46,7 +46,7 @@ equation fillPattern=FillPattern.Solid), Text( extent={{-64,270},{78,164}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="%name"), Rectangle( extent={{-68,140},{74,52}}, @@ -88,159 +88,160 @@ equation coordinateSystem(preserveAspectRatio=false, extent={{-160,-140},{160,180}}), graphics={Text( extent={{-118,172},{-104,166}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="[%nZon, %nPorts]")}), Documentation(info=" -

                    -Model that is used as a container for a multiple thermal zones -that are to be exported as an FMU. -

                    -

                    Typical use and important parameters

                    -

                    -To use this model as a container for an FMU, extend -from this model, rather than instantiate it, -add your thermal zones. For each thermal zone, -add a vector of mass flow rate sensors. -By extending from this model, the top-level -signal connectors on the left stay at the top-level, and hence -will be visible at the FMI interface. -

                    - -Note that -
                      -
                    • -A vector of mass flow rate sensors is used to connect -one element of the thermal zone adapter with one thermal zone. -
                    • -
                    • -The size of the thermal zone adapter must be the same as the number -of vectors of mass flow rate sensors. -
                    • -
                    • -The vector of mass flow rate sensors must have the size nPorts. -
                    • -
                    • -All fluid ports of the mass flow rate sensor must be connected. -
                    • -
                    • -If mass flow rate sensors are not used, and your themal zone -has fluid ports which are autosized, then a direct connection between -an element of the thermal zone adpater theZonAda and your thermal -zone will be rejected. The reason is because autosized fluid ports -can only be connected to vector of ports whose sizes are literal. -
                    • -
                    - -

                    -The example - -AixLib.Fluid.FMI.ExportContainers.Examples.FMUs.ThermalZones -shows how multiple simple thermal zones can be implemented and exported as -an FMU. - -

                    - -

                    -The conversion between the fluid ports and signal ports is done -in the thermal zone adapter theZonAda[nZon]. -This adapter has a vector of fluid ports called ports[nPorts] -which needs to be connected to the air volume of the thermal zones. -At this port, air exchanged between the thermal zones, the HVAC system -and any infiltration flow paths. -

                    -

                    -This model has input signals fluPor[nZon, nPorts] which carry -the mass flow rate for each flow that is connected to ports[1:nPorts] -for the respective zone, together with its -temperature, water vapor mass fraction per total mass of the air (not per kg dry -air), and trace substances. These quantities are always as if the flow -enters the respective room, even if the flow is zero or negative. -If a medium has no moisture, e.g., if Medium.nXi=0, or -if it has no trace substances, e.g., if Medium.nC=0, then -the output signal for these properties are removed. -Thus, a thermal zone model that uses these signals to compute the -heat added by the HVAC system need to implement an equation such as -

                    -

                    -Qsen = max(0, ṁsup)   cp   (Tsup - Tair,zon), -

                    -

                    -where -Qsen is the sensible heat flow rate added to the thermal zone, -sup is the supply air mass flow rate from -the port fluPor (which is negative if it is an exhaust), -cp is the specific heat capacity at constant pressure, -Tsup is the supply air temperature and -Tair,zon is the zone air temperature. -Note that without the max(·, ·), the energy -balance would be wrong. -For example, - -the control volumes in - -AixLib.Fluid.MixingVolumes -implement such a max(·, ·) function. -

                    -

                    -For each zone, its air temperature, -water vapor mass fraction per total mass of the air (unless Medium.nXi=0) -and trace substances (unless Medium.nC=0) -can be obtained from the outupt connector -fluPor[1:nZon].backward. -These signals are the same as the inflowing fluid stream(s) -at the port theAdaZon[1:nZon].ports[1:nPorts]. -The fluid connector ports[nPorts] has a prescribed mass flow rate, but -it does not set any pressure. -

                    -

                    -This model has a user-defined parameter nPorts -which sets the number of fluid ports, which in turn is used -for the ports fluPor and ports. -All zones must have the same number of fluid ports nPorts. -All nPorts -ports[1:nPorts] need to be connected as demonstrated in the example - -AixLib.Fluid.FMI.ExportContainers.Examples.FMUs.ThermalZones. -

                    -

                    - -

                    -", revisions=" -
                      -
                    • -January 18, 2019, by Jianjun Hu:
                      -Limited the media choice to moist air. -See #1050. -
                    • -
                    • -September 20, 2016, by Thierry S. Nouidui:
                      -Revised documentation to explain the rationale -of needing mass flow rate sensors. -
                    • -
                    • -June 29, 2016, by Michael Wetter:
                      -Revised implementation and documentation. -
                    • -
                    • -April 27, 2016, by Thierry S. Nouidui:
                      -First implementation. -
                    • -
                    -")); +

                    + Model that is used as a container for a multiple thermal zones + that are to be exported as an FMU. +

                    +

                    Typical use and important parameters

                    +

                    + To use this model as a container for an FMU, extend + from this model, rather than instantiate it, + add your thermal zones. For each thermal zone, + add a vector of mass flow rate sensors. + By extending from this model, the top-level + signal connectors on the left stay at the top-level, and hence + will be visible at the FMI interface. +

                    + + Note that +
                      +
                    • + A vector of mass flow rate sensors is used to connect + one element of the thermal zone adapter with one thermal zone. +
                    • +
                    • + The size of the thermal zone adapter must be the same as the number + of vectors of mass flow rate sensors. +
                    • +
                    • + The vector of mass flow rate sensors must have the size nPorts. +
                    • +
                    • + All fluid ports of the mass flow rate sensor must be connected. +
                    • +
                    • + If mass flow rate sensors are not used, and your themal zone + has fluid ports which are autosized, then a direct connection between + an element of the thermal zone adpater theZonAda and your thermal + zone will be rejected. The reason is because autosized fluid ports + can only be connected to vector of ports whose sizes are literal. +
                    • +
                    + +

                    + The example + + AixLib.Fluid.FMI.ExportContainers.Examples.FMUs.ThermalZones + shows how multiple simple thermal zones can be implemented and exported as + an FMU. + +

                    + +

                    + The conversion between the fluid ports and signal ports is done + in the thermal zone adapter theZonAda[nZon]. + This adapter has a vector of fluid ports called ports[nPorts] + which needs to be connected to the air volume of the thermal zones. + At this port, air exchanged between the thermal zones, the HVAC system + and any infiltration flow paths. +

                    +

                    + This model has input signals fluPor[nZon, nPorts] which carry + the mass flow rate for each flow that is connected to ports[1:nPorts] + for the respective zone, together with its + temperature, water vapor mass fraction per total mass of the air (not per kg dry + air), and trace substances. These quantities are always as if the flow + enters the respective room, even if the flow is zero or negative. + If a medium has no moisture, e.g., if Medium.nXi=0, or + if it has no trace substances, e.g., if Medium.nC=0, then + the output signal for these properties are removed. + Thus, a thermal zone model that uses these signals to compute the + heat added by the HVAC system need to implement an equation such as +

                    +

                    + Qsen = max(0, ṁsup)   cp   (Tsup - Tair,zon), +

                    +

                    + where + Qsen is the sensible heat flow rate added to the thermal zone, + sup is the supply air mass flow rate from + the port fluPor (which is negative if it is an exhaust), + cp is the specific heat capacity at constant pressure, + Tsup is the supply air temperature and + Tair,zon is the zone air temperature. + Note that without the max(·, ·), the energy + balance would be wrong. + For example, + + the control volumes in + + AixLib.Fluid.MixingVolumes + implement such a max(·, ·) function. +

                    +

                    + For each zone, its air temperature, + water vapor mass fraction per total mass of the air (unless Medium.nXi=0) + and trace substances (unless Medium.nC=0) + can be obtained from the outupt connector + fluPor[1:nZon].backward. + These signals are the same as the inflowing fluid stream(s) + at the port theAdaZon[1:nZon].ports[1:nPorts]. + The fluid connector ports[nPorts] has a prescribed mass flow rate, but + it does not set any pressure. +

                    +

                    + This model has a user-defined parameter nPorts + which sets the number of fluid ports, which in turn is used + for the ports fluPor and ports. + All zones must have the same number of fluid ports nPorts. + All nPorts + ports[1:nPorts] need to be connected as demonstrated in the example + + AixLib.Fluid.FMI.ExportContainers.Examples.FMUs.ThermalZones. +

                    +

                    + +

                    + ",revisions=" +
                      +
                    • + January 18, 2019, by Jianjun Hu:
                      + Limited the media choice to moist air. + See #1050. +
                    • +
                    • + September 20, 2016, by Thierry S. Nouidui:
                      + Revised documentation to explain the rationale + of needing mass flow rate sensors. +
                    • +
                    • + June 29, 2016, by Michael Wetter:
                      + Revised implementation and documentation. +
                    • +
                    • + April 27, 2016, by Thierry S. Nouidui:
                      + First implementation. +
                    • +
                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end ThermalZones; diff --git a/AixLib/Fluid/FMI/ExportContainers/Validation/FMUs/HVACThermalZoneAir1.mo b/AixLib/Fluid/FMI/ExportContainers/Validation/FMUs/HVACThermalZoneAir1.mo index 943572280d..edde246825 100644 --- a/AixLib/Fluid/FMI/ExportContainers/Validation/FMUs/HVACThermalZoneAir1.mo +++ b/AixLib/Fluid/FMI/ExportContainers/Validation/FMUs/HVACThermalZoneAir1.mo @@ -48,20 +48,21 @@ equation annotation (Line(points={{40,140},{50,140},{60,140}}, color={0,127,255})); annotation ( Documentation(info=" -

                    -This example validates that - -AixLib.Fluid.FMI.ExportContainers.HVACZone -exports correctly as an FMU. -

                    -", revisions=" -
                      -
                    • -April 14, 2016 by Michael Wetter:
                      -First implementation. -
                    • -
                    -"), +

                    + This example validates that + + AixLib.Fluid.FMI.ExportContainers.HVACZone + exports correctly as an FMU. +

                    + ",revisions=" +
                      +
                    • + April 14, 2016 by Michael Wetter:
                      + First implementation. +
                    • +
                    + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/ExportContainers/Validation/FMUs/HVACThermalZoneAir1.mos" - "Export FMU")); + "Export FMU"), + __Dymola_LockedEditing="Model from IBPSA"); end HVACThermalZoneAir1; diff --git a/AixLib/Fluid/FMI/ExportContainers/Validation/FMUs/HVACThermalZoneAir2.mo b/AixLib/Fluid/FMI/ExportContainers/Validation/FMUs/HVACThermalZoneAir2.mo index e56cc80ada..ef4dff3ad6 100644 --- a/AixLib/Fluid/FMI/ExportContainers/Validation/FMUs/HVACThermalZoneAir2.mo +++ b/AixLib/Fluid/FMI/ExportContainers/Validation/FMUs/HVACThermalZoneAir2.mo @@ -4,20 +4,21 @@ block HVACThermalZoneAir2 "Validation model for the convective HVAC system" redeclare package Medium = AixLib.Media.Air(extraPropertiesNames={"CO2"})); annotation ( Documentation(info=" -

                    -This example validates that - -AixLib.Fluid.FMI.ExportContainers.HVACZone -exports correctly as an FMU. -

                    -", revisions=" -
                      -
                    • -April 14, 2016 by Michael Wetter:
                      -First implementation. -
                    • -
                    -"), +

                    + This example validates that + + AixLib.Fluid.FMI.ExportContainers.HVACZone + exports correctly as an FMU. +

                    + ",revisions=" +
                      +
                    • + April 14, 2016 by Michael Wetter:
                      + First implementation. +
                    • +
                    + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/ExportContainers/Validation/FMUs/HVACThermalZoneAir2.mos" - "Export FMU")); + "Export FMU"), + __Dymola_LockedEditing="Model from IBPSA"); end HVACThermalZoneAir2; diff --git a/AixLib/Fluid/FMI/ExportContainers/Validation/FMUs/HVACThermalZoneAir3.mo b/AixLib/Fluid/FMI/ExportContainers/Validation/FMUs/HVACThermalZoneAir3.mo index d2e2219113..15c67cbc5e 100644 --- a/AixLib/Fluid/FMI/ExportContainers/Validation/FMUs/HVACThermalZoneAir3.mo +++ b/AixLib/Fluid/FMI/ExportContainers/Validation/FMUs/HVACThermalZoneAir3.mo @@ -4,20 +4,21 @@ block HVACThermalZoneAir3 "Validation model for the convective HVAC system" redeclare package Medium = AixLib.Media.Air(extraPropertiesNames={"CO2", "VOC", "CH2O"})); annotation ( Documentation(info=" -

                    -This example validates that - -AixLib.Fluid.FMI.ExportContainers.HVACZone -exports correctly as an FMU. -

                    -", revisions=" -
                      -
                    • -April 14, 2016 by Michael Wetter:
                      -First implementation. -
                    • -
                    -"), +

                    + This example validates that + + AixLib.Fluid.FMI.ExportContainers.HVACZone + exports correctly as an FMU. +

                    + ",revisions=" +
                      +
                    • + April 14, 2016 by Michael Wetter:
                      + First implementation. +
                    • +
                    + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/ExportContainers/Validation/FMUs/HVACThermalZoneAir3.mos" - "Export FMU")); + "Export FMU"), + __Dymola_LockedEditing="Model from IBPSA"); end HVACThermalZoneAir3; diff --git a/AixLib/Fluid/FMI/ExportContainers/Validation/FMUs/HVACThermalZoneSimpleAir1.mo b/AixLib/Fluid/FMI/ExportContainers/Validation/FMUs/HVACThermalZoneSimpleAir1.mo index 590574a347..0a2b67dba5 100644 --- a/AixLib/Fluid/FMI/ExportContainers/Validation/FMUs/HVACThermalZoneSimpleAir1.mo +++ b/AixLib/Fluid/FMI/ExportContainers/Validation/FMUs/HVACThermalZoneSimpleAir1.mo @@ -5,20 +5,21 @@ block HVACThermalZoneSimpleAir1 redeclare package Medium = Modelica.Media.Air.SimpleAir); annotation ( Documentation(info=" -

                    -This example validates that - -AixLib.Fluid.FMI.ExportContainers.HVACZone -exports correctly as an FMU. -

                    -", revisions=" -
                      -
                    • -April 14, 2016 by Michael Wetter:
                      -First implementation. -
                    • -
                    -"), +

                    + This example validates that + + AixLib.Fluid.FMI.ExportContainers.HVACZone + exports correctly as an FMU. +

                    + ",revisions=" +
                      +
                    • + April 14, 2016 by Michael Wetter:
                      + First implementation. +
                    • +
                    + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/ExportContainers/Validation/FMUs/HVACThermalZoneSimpleAir1.mos" - "Export FMU")); + "Export FMU"), + __Dymola_LockedEditing="Model from IBPSA"); end HVACThermalZoneSimpleAir1; diff --git a/AixLib/Fluid/FMI/ExportContainers/Validation/FMUs/HVACThermalZoneSimpleAir2.mo b/AixLib/Fluid/FMI/ExportContainers/Validation/FMUs/HVACThermalZoneSimpleAir2.mo index 5564e81262..76a04c3d3f 100644 --- a/AixLib/Fluid/FMI/ExportContainers/Validation/FMUs/HVACThermalZoneSimpleAir2.mo +++ b/AixLib/Fluid/FMI/ExportContainers/Validation/FMUs/HVACThermalZoneSimpleAir2.mo @@ -5,20 +5,21 @@ block HVACThermalZoneSimpleAir2 redeclare package Medium = Modelica.Media.Air.SimpleAir(extraPropertiesNames={"CO2"})); annotation ( Documentation(info=" -

                    -This example validates that - -AixLib.Fluid.FMI.ExportContainers.HVACZone -exports correctly as an FMU. -

                    -", revisions=" -
                      -
                    • -April 14, 2016 by Michael Wetter:
                      -First implementation. -
                    • -
                    -"), +

                    + This example validates that + + AixLib.Fluid.FMI.ExportContainers.HVACZone + exports correctly as an FMU. +

                    + ",revisions=" +
                      +
                    • + April 14, 2016 by Michael Wetter:
                      + First implementation. +
                    • +
                    + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/ExportContainers/Validation/FMUs/HVACThermalZoneSimpleAir2.mos" - "Export FMU")); + "Export FMU"), + __Dymola_LockedEditing="Model from IBPSA"); end HVACThermalZoneSimpleAir2; diff --git a/AixLib/Fluid/FMI/ExportContainers/Validation/FMUs/HVACThermalZoneSimpleAir3.mo b/AixLib/Fluid/FMI/ExportContainers/Validation/FMUs/HVACThermalZoneSimpleAir3.mo index e8d1cd1654..14e68f334e 100644 --- a/AixLib/Fluid/FMI/ExportContainers/Validation/FMUs/HVACThermalZoneSimpleAir3.mo +++ b/AixLib/Fluid/FMI/ExportContainers/Validation/FMUs/HVACThermalZoneSimpleAir3.mo @@ -5,20 +5,21 @@ block HVACThermalZoneSimpleAir3 redeclare package Medium = Modelica.Media.Air.SimpleAir(extraPropertiesNames={"CO2", "VOC", "CH2O"})); annotation ( Documentation(info=" -

                    -This example validates that - -AixLib.Fluid.FMI.ExportContainers.HVACZone -exports correctly as an FMU. -

                    -", revisions=" -
                      -
                    • -April 14, 2016 by Michael Wetter:
                      -First implementation. -
                    • -
                    -"), +

                    + This example validates that + + AixLib.Fluid.FMI.ExportContainers.HVACZone + exports correctly as an FMU. +

                    + ",revisions=" +
                      +
                    • + April 14, 2016 by Michael Wetter:
                      + First implementation. +
                    • +
                    + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/ExportContainers/Validation/FMUs/HVACThermalZoneSimpleAir3.mos" - "Export FMU")); + "Export FMU"), + __Dymola_LockedEditing="Model from IBPSA"); end HVACThermalZoneSimpleAir3; diff --git a/AixLib/Fluid/FMI/ExportContainers/Validation/FMUs/ThermalZoneAir1.mo b/AixLib/Fluid/FMI/ExportContainers/Validation/FMUs/ThermalZoneAir1.mo index 9a7f1ca6ee..e6e9fa61fb 100644 --- a/AixLib/Fluid/FMI/ExportContainers/Validation/FMUs/ThermalZoneAir1.mo +++ b/AixLib/Fluid/FMI/ExportContainers/Validation/FMUs/ThermalZoneAir1.mo @@ -4,26 +4,25 @@ block ThermalZoneAir1 "Validation of simple thermal zone" redeclare package Medium = AixLib.Media.Air, nPorts = 2); - parameter Modelica.SIunits.Volume V=6*10*3 "Room volume"; + parameter Modelica.Units.SI.Volume V=6*10*3 "Room volume"; ///////////////////////////////////////////////////////// // Air temperatures at design conditions - parameter Modelica.SIunits.Temperature TASup_nominal = 273.15+18 + parameter Modelica.Units.SI.Temperature TASup_nominal=273.15 + 18 "Nominal air temperature supplied to room"; - parameter Modelica.SIunits.Temperature TRooSet = 273.15+24 + parameter Modelica.Units.SI.Temperature TRooSet=273.15 + 24 "Nominal room air temperature"; - parameter Modelica.SIunits.Temperature TOut_nominal = 273.15+30 + parameter Modelica.Units.SI.Temperature TOut_nominal=273.15 + 30 "Design outlet air temperature"; ///////////////////////////////////////////////////////// // Cooling loads and air mass flow rates - parameter Modelica.SIunits.HeatFlowRate QRooInt_flow= - 1000 "Internal heat gains of the room"; - parameter Modelica.SIunits.HeatFlowRate QRooC_flow_nominal= - -QRooInt_flow-10E3/30*(TOut_nominal-TRooSet) - "Nominal cooling load of the room"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal= - 1.3*QRooC_flow_nominal/1006/(TASup_nominal-TRooSet) + parameter Modelica.Units.SI.HeatFlowRate QRooInt_flow=1000 + "Internal heat gains of the room"; + parameter Modelica.Units.SI.HeatFlowRate QRooC_flow_nominal=-QRooInt_flow - + 10E3/30*(TOut_nominal - TRooSet) "Nominal cooling load of the room"; + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=1.3* + QRooC_flow_nominal/1006/(TASup_nominal - TRooSet) "Nominal air mass flow rate, increased by factor 1.3 to allow for recovery after temperature setback"; Modelica.Blocks.Interfaces.RealOutput TOut(final unit="K") @@ -104,30 +103,31 @@ equation {160,180}}), graphics={ Text( extent={{-26,176},{24,156}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="TOut")}), Diagram( coordinateSystem(preserveAspectRatio=false, extent={{-160,-140},{160,180}})), Documentation(info=" -

                    -This example validates that - -AixLib.Fluid.FMI.ExportContainers.ThermalZone - -exports correctly as an FMU. -

                    -", revisions=" -
                      -
                    • -September 20, 2016, by Thierry S. Nouidui:
                      -Revised implementation and added mass flow rate sensors -to connect the thermal zone adaptor to the thermal zone. -
                    • -
                    • -April 28, 2016, by Thierry S. Nouidui:
                      -First implementation. -
                    • -
                    -"), +

                    + This example validates that + + AixLib.Fluid.FMI.ExportContainers.ThermalZone + + exports correctly as an FMU. +

                    + ",revisions=" +
                      +
                    • + September 20, 2016, by Thierry S. Nouidui:
                      + Revised implementation and added mass flow rate sensors + to connect the thermal zone adaptor to the thermal zone. +
                    • +
                    • + April 28, 2016, by Thierry S. Nouidui:
                      + First implementation. +
                    • +
                    + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/ExportContainers/Validation/FMUs/ThermalZoneAir1.mos" - "Export FMU")); + "Export FMU"), + __Dymola_LockedEditing="Model from IBPSA"); end ThermalZoneAir1; diff --git a/AixLib/Fluid/FMI/ExportContainers/Validation/FMUs/ThermalZoneAir2.mo b/AixLib/Fluid/FMI/ExportContainers/Validation/FMUs/ThermalZoneAir2.mo index 1d06582f1d..c2cfc2ed2c 100644 --- a/AixLib/Fluid/FMI/ExportContainers/Validation/FMUs/ThermalZoneAir2.mo +++ b/AixLib/Fluid/FMI/ExportContainers/Validation/FMUs/ThermalZoneAir2.mo @@ -3,21 +3,22 @@ block ThermalZoneAir2 "Validation of simple thermal zone" extends AixLib.Fluid.FMI.ExportContainers.Validation.FMUs.ThermalZoneAir1( redeclare package Medium = AixLib.Media.Air(extraPropertiesNames={"CO2"})); annotation (Documentation(info=" -

                    -This example validates that - -AixLib.Fluid.FMI.ExportContainers.ThermalZone - -exports correctly as an FMU. -

                    -", revisions=" -
                      -
                    • -May 03, 2016, by Thierry S. Nouidui:
                      -First implementation. -
                    • -
                    -"), +

                    + This example validates that + + AixLib.Fluid.FMI.ExportContainers.ThermalZone + + exports correctly as an FMU. +

                    + ",revisions=" +
                      +
                    • + May 03, 2016, by Thierry S. Nouidui:
                      + First implementation. +
                    • +
                    + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/ExportContainers/Validation/FMUs/ThermalZoneAir2.mos" - "Export FMU")); + "Export FMU"), + __Dymola_LockedEditing="Model from IBPSA"); end ThermalZoneAir2; diff --git a/AixLib/Fluid/FMI/ExportContainers/Validation/FMUs/ThermalZoneAir3.mo b/AixLib/Fluid/FMI/ExportContainers/Validation/FMUs/ThermalZoneAir3.mo index cb1cd5b729..de973f2163 100644 --- a/AixLib/Fluid/FMI/ExportContainers/Validation/FMUs/ThermalZoneAir3.mo +++ b/AixLib/Fluid/FMI/ExportContainers/Validation/FMUs/ThermalZoneAir3.mo @@ -3,21 +3,22 @@ block ThermalZoneAir3 "Validation of simple thermal zone" extends AixLib.Fluid.FMI.ExportContainers.Validation.FMUs.ThermalZoneAir1( redeclare package Medium = AixLib.Media.Air(extraPropertiesNames={"CO2", "VOC", "CH2O"})); annotation (Documentation(info=" -

                    -This example validates that - -AixLib.Fluid.FMI.ExportContainers.ThermalZone - -exports correctly as an FMU. -

                    -", revisions=" -
                      -
                    • -May 03, 2016, by Thierry S. Nouidui:
                      -First implementation. -
                    • -
                    -"), +

                    + This example validates that + + AixLib.Fluid.FMI.ExportContainers.ThermalZone + + exports correctly as an FMU. +

                    + ",revisions=" +
                      +
                    • + May 03, 2016, by Thierry S. Nouidui:
                      + First implementation. +
                    • +
                    + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/ExportContainers/Validation/FMUs/ThermalZoneAir3.mos" - "Export FMU")); + "Export FMU"), + __Dymola_LockedEditing="Model from IBPSA"); end ThermalZoneAir3; diff --git a/AixLib/Fluid/FMI/ExportContainers/Validation/FMUs/ThermalZoneSimpleAir1.mo b/AixLib/Fluid/FMI/ExportContainers/Validation/FMUs/ThermalZoneSimpleAir1.mo index a9d52bf29d..f5ee900d82 100644 --- a/AixLib/Fluid/FMI/ExportContainers/Validation/FMUs/ThermalZoneSimpleAir1.mo +++ b/AixLib/Fluid/FMI/ExportContainers/Validation/FMUs/ThermalZoneSimpleAir1.mo @@ -3,21 +3,22 @@ block ThermalZoneSimpleAir1 "Validation of simple thermal zone" extends AixLib.Fluid.FMI.ExportContainers.Validation.FMUs.ThermalZoneAir1( redeclare package Medium = Modelica.Media.Air.SimpleAir); annotation (Documentation(info=" -

                    -This example validates that - -AixLib.Fluid.FMI.ExportContainers.ThermalZone - -exports correctly as an FMU. -

                    -", revisions=" -
                      -
                    • -May 03, 2016, by Thierry S. Nouidui:
                      -First implementation. -
                    • -
                    -"), +

                    + This example validates that + + AixLib.Fluid.FMI.ExportContainers.ThermalZone + + exports correctly as an FMU. +

                    + ",revisions=" +
                      +
                    • + May 03, 2016, by Thierry S. Nouidui:
                      + First implementation. +
                    • +
                    + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/ExportContainers/Validation/FMUs/ThermalZoneSimpleAir1.mos" - "Export FMU")); + "Export FMU"), + __Dymola_LockedEditing="Model from IBPSA"); end ThermalZoneSimpleAir1; diff --git a/AixLib/Fluid/FMI/ExportContainers/Validation/FMUs/ThermalZoneSimpleAir2.mo b/AixLib/Fluid/FMI/ExportContainers/Validation/FMUs/ThermalZoneSimpleAir2.mo index 40f1b2c492..cba9f6deab 100644 --- a/AixLib/Fluid/FMI/ExportContainers/Validation/FMUs/ThermalZoneSimpleAir2.mo +++ b/AixLib/Fluid/FMI/ExportContainers/Validation/FMUs/ThermalZoneSimpleAir2.mo @@ -3,21 +3,22 @@ block ThermalZoneSimpleAir2 "Validation of simple thermal zone" extends AixLib.Fluid.FMI.ExportContainers.Validation.FMUs.ThermalZoneAir1( redeclare package Medium = Modelica.Media.Air.SimpleAir(extraPropertiesNames={"CO2"})); annotation (Documentation(info=" -

                    -This example validates that - -AixLib.Fluid.FMI.ExportContainers.ThermalZone - -exports correctly as an FMU. -

                    -", revisions=" -
                      -
                    • -May 03, 2016, by Thierry S. Nouidui:
                      -First implementation. -
                    • -
                    -"), +

                    + This example validates that + + AixLib.Fluid.FMI.ExportContainers.ThermalZone + + exports correctly as an FMU. +

                    + ",revisions=" +
                      +
                    • + May 03, 2016, by Thierry S. Nouidui:
                      + First implementation. +
                    • +
                    + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/ExportContainers/Validation/FMUs/ThermalZoneSimpleAir2.mos" - "Export FMU")); + "Export FMU"), + __Dymola_LockedEditing="Model from IBPSA"); end ThermalZoneSimpleAir2; diff --git a/AixLib/Fluid/FMI/ExportContainers/Validation/FMUs/ThermalZoneSimpleAir3.mo b/AixLib/Fluid/FMI/ExportContainers/Validation/FMUs/ThermalZoneSimpleAir3.mo index 8b33c0f6f6..ee47f57ce3 100644 --- a/AixLib/Fluid/FMI/ExportContainers/Validation/FMUs/ThermalZoneSimpleAir3.mo +++ b/AixLib/Fluid/FMI/ExportContainers/Validation/FMUs/ThermalZoneSimpleAir3.mo @@ -3,21 +3,22 @@ block ThermalZoneSimpleAir3 "Validation of simple thermal zone" extends AixLib.Fluid.FMI.ExportContainers.Validation.FMUs.ThermalZoneAir1( redeclare package Medium = Modelica.Media.Air.SimpleAir(extraPropertiesNames={"CO2", "VOC", "CH2O"})); annotation (Documentation(info=" -

                    -This example validates that - -AixLib.Fluid.FMI.ExportContainers.ThermalZone - -exports correctly as an FMU. -

                    -", revisions=" -
                      -
                    • -May 03, 2016, by Thierry S. Nouidui:
                      -First implementation. -
                    • -
                    -"), +

                    + This example validates that + + AixLib.Fluid.FMI.ExportContainers.ThermalZone + + exports correctly as an FMU. +

                    + ",revisions=" +
                      +
                    • + May 03, 2016, by Thierry S. Nouidui:
                      + First implementation. +
                    • +
                    + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/ExportContainers/Validation/FMUs/ThermalZoneSimpleAir3.mos" - "Export FMU")); + "Export FMU"), + __Dymola_LockedEditing="Model from IBPSA"); end ThermalZoneSimpleAir3; diff --git a/AixLib/Fluid/FMI/FlowSplitter_u.mo b/AixLib/Fluid/FMI/FlowSplitter_u.mo index 3fd0b32888..35e7a2f8a2 100644 --- a/AixLib/Fluid/FMI/FlowSplitter_u.mo +++ b/AixLib/Fluid/FMI/FlowSplitter_u.mo @@ -13,8 +13,8 @@ block FlowSplitter_u "Model of a flow splitter that can be exported as an FMU" X_a=0.40) "Propylene glycol water, 40% mass fraction"))); - parameter Modelica.SIunits.MassFlowRate m_flow_nominal[nout]( - each min=0) "Nominal mass flow rate for each outlet"; + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal[nout](each min=0) + "Nominal mass flow rate for each outlet"; parameter Boolean allowFlowReversal = true "= true to allow flow reversal, false restricts to design direction (inlet -> outlet)" annotation(Dialog(tab="Assumptions"), Evaluate=true); @@ -41,8 +41,8 @@ block FlowSplitter_u "Model of a flow splitter that can be exported as an FMU" annotation (Placement(transformation(extent={{-140,60},{-100,100}}), iconTransformation(extent={{-120,70},{-100,90}}))); protected - final parameter Modelica.SIunits.MassFlowRate mAve_flow_nominal= - sum(m_flow_nominal)/nout "Average nominal mass flow rate"; + final parameter Modelica.Units.SI.MassFlowRate mAve_flow_nominal=sum( + m_flow_nominal)/nout "Average nominal mass flow rate"; protected AixLib.Fluid.FMI.Interfaces.FluidProperties bacPro_internal( redeclare final package Medium = Medium) @@ -81,7 +81,7 @@ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100}, {100,100}}), graphics={ Text( extent={{-100,98},{-60,60}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="u"), Rectangle( extent={{-100,14},{-22,-10}}, @@ -127,59 +127,60 @@ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100}, fillPattern=FillPattern.HorizontalCylinder)}), Documentation( info=" -

                    -Block that takes as an input the inflowing fluid at the port inlet -and a vector of control signals for the mass flow rates u. -The mass flow of all outlet ports i -is set to the value of u[i] m_flow_nominal[i]. -If the inflowing mass flow rate at the port inlet is not equal -to the sum of u[i] m_flow_in[i], the simulation stops with an assert. -

                    -

                    Assumptions and limitations

                    -

                    -The mass flow rates at all outlet ports must be non-negative. -Reverse flow is not yet implemented. -If either of these limitations are violated, then -the model stops with an error. -

                    -", revisions=" -
                      -
                    • -January 18, 2019, by Jianjun Hu:
                      -Limited the media choice. -See #1050. -
                    • -
                    • -June 9, 2016, by Thierry S. Nouidui:
                      -Removed assert() statement which was triggered -when the model was exported as an FMU -depending on the execution sequence of the master algorithm. -
                    • -
                    • -May 27, 2016, by Michael Wetter:
                      -Replaced outlet[i].forward = inlet.forward; -with a connect statement as -accesses to composite components other than records are not allowed. -This was done for JModelica compliance. -
                    • -
                    • -July 28, 2015, by Thierry S. Nouidui:
                      -Corrected wrong assert statement. -
                    • -
                    • -April 29, 2015, by Michael Wetter:
                      -Redesigned to conditionally remove the pressure connector -if use_p_in=false. -
                    • -
                    • -April 15, 2015 by Michael Wetter:
                      -Changed connector variable to be temperature instead of -specific enthalpy. -
                    • -
                    • -November 20, 2014, by Michael Wetter:
                      -First implementation. -
                    • -
                    -")); +

                    + Block that takes as an input the inflowing fluid at the port inlet + and a vector of control signals for the mass flow rates u. + The mass flow of all outlet ports i + is set to the value of u[i] m_flow_nominal[i]. + If the inflowing mass flow rate at the port inlet is not equal + to the sum of u[i] m_flow_in[i], the simulation stops with an assert. +

                    +

                    Assumptions and limitations

                    +

                    + The mass flow rates at all outlet ports must be non-negative. + Reverse flow is not yet implemented. + If either of these limitations are violated, then + the model stops with an error. +

                    + ",revisions=" +
                      +
                    • + January 18, 2019, by Jianjun Hu:
                      + Limited the media choice. + See #1050. +
                    • +
                    • + June 9, 2016, by Thierry S. Nouidui:
                      + Removed assert() statement which was triggered + when the model was exported as an FMU + depending on the execution sequence of the master algorithm. +
                    • +
                    • + May 27, 2016, by Michael Wetter:
                      + Replaced outlet[i].forward = inlet.forward; + with a connect statement as + accesses to composite components other than records are not allowed. + This was done for JModelica compliance. +
                    • +
                    • + July 28, 2015, by Thierry S. Nouidui:
                      + Corrected wrong assert statement. +
                    • +
                    • + April 29, 2015, by Michael Wetter:
                      + Redesigned to conditionally remove the pressure connector + if use_p_in=false. +
                    • +
                    • + April 15, 2015 by Michael Wetter:
                      + Changed connector variable to be temperature instead of + specific enthalpy. +
                    • +
                    • + November 20, 2014, by Michael Wetter:
                      + First implementation. +
                    • +
                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end FlowSplitter_u; diff --git a/AixLib/Fluid/FMI/Interfaces/FluidProperties.mo b/AixLib/Fluid/FMI/Interfaces/FluidProperties.mo index 92ad1c06f6..a4e24acff3 100644 --- a/AixLib/Fluid/FMI/Interfaces/FluidProperties.mo +++ b/AixLib/Fluid/FMI/Interfaces/FluidProperties.mo @@ -13,60 +13,61 @@ connector FluidProperties "Type definition for fluid properties" Medium.Temperature T "Temperature"; - AixLib.Fluid.FMI.Interfaces.MassFractionConnector X_w if - Medium.nXi > 0 "Water vapor mass fractions per kg total air"; + AixLib.Fluid.FMI.Interfaces.MassFractionConnector X_w + if Medium.nXi > 0 "Water vapor mass fractions per kg total air"; Medium.ExtraProperty C[Medium.nC] "Properties c_i/m"; annotation (Documentation(info=" -

                    -This is a connector that declares the following fluid properties: -

                    -
                      -
                    • -The temperature T. -
                    • -
                    • -The mass fraction of water vapor X_w per kg of total air, -unless Medium.nXi=0. -Note that the mass fraction is not per kg of dry air, but rather -per kg of total air as is customary in Modelica. -
                    • -
                    • -The trace substances -C, -unless Medium.nC=0. -
                    • -
                    -

                    -These quantities are used in the connectors - -AixLib.Fluid.FMI.Interfaces.Inlet -and - -AixLib.Fluid.FMI.Interfaces.Outlet. -

                    -

                    -Note that none of these quantities is declared to be an -input or output, because the role -is reversed whether the properties are in inlet or -outlet connector. -

                    -", revisions=" -
                      -
                    • -January 18, 2019, by Jianjun Hu:
                      -Limited the media choice. -See #1050. -
                    • -
                    • -April 15, 2015 by Michael Wetter:
                      -Changed connector variable to be temperature instead of -specific enthalpy. -
                    • -
                    • -November 8, 2014 by Michael Wetter:
                      -First implementation. -
                    • -
                    -")); +

                    + This is a connector that declares the following fluid properties: +

                    +
                      +
                    • + The temperature T. +
                    • +
                    • + The mass fraction of water vapor X_w per kg of total air, + unless Medium.nXi=0. + Note that the mass fraction is not per kg of dry air, but rather + per kg of total air as is customary in Modelica. +
                    • +
                    • + The trace substances + C, + unless Medium.nC=0. +
                    • +
                    +

                    + These quantities are used in the connectors + + AixLib.Fluid.FMI.Interfaces.Inlet + and + + AixLib.Fluid.FMI.Interfaces.Outlet. +

                    +

                    + Note that none of these quantities is declared to be an + input or output, because the role + is reversed whether the properties are in inlet or + outlet connector. +

                    + ",revisions=" +
                      +
                    • + January 18, 2019, by Jianjun Hu:
                      + Limited the media choice. + See #1050. +
                    • +
                    • + April 15, 2015 by Michael Wetter:
                      + Changed connector variable to be temperature instead of + specific enthalpy. +
                    • +
                    • + November 8, 2014 by Michael Wetter:
                      + First implementation. +
                    • +
                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end FluidProperties; diff --git a/AixLib/Fluid/FMI/Interfaces/Inlet.mo b/AixLib/Fluid/FMI/Interfaces/Inlet.mo index c05e320fb5..a0c587a5bd 100644 --- a/AixLib/Fluid/FMI/Interfaces/Inlet.mo +++ b/AixLib/Fluid/FMI/Interfaces/Inlet.mo @@ -21,14 +21,14 @@ connector Inlet "Connector for fluid inlet" input Medium.MassFlowRate m_flow "Mass flow rate from the connection point into the component"; - AixLib.Fluid.FMI.Interfaces.PressureInput p if - use_p_in "Thermodynamic pressure in the connection point"; + AixLib.Fluid.FMI.Interfaces.PressureInput p + if use_p_in "Thermodynamic pressure in the connection point"; input AixLib.Fluid.FMI.Interfaces.FluidProperties forward( redeclare final package Medium = Medium) "Inflowing properties"; output AixLib.Fluid.FMI.Interfaces.FluidProperties backward( - redeclare final package Medium = Medium) if - allowFlowReversal "Outflowing properties"; + redeclare final package Medium = Medium) + if allowFlowReversal "Outflowing properties"; annotation (defaultComponentName="inlet", Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100}, @@ -40,83 +40,84 @@ annotation (defaultComponentName="inlet", fillColor={0,0,255}), Text( extent={{-58,134},{48,94}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="%name")}), Documentation(info=" -

                    -This is a connector for a fluid inlet. -The connector takes as an input the -following quantities: -

                    -
                      -
                    • -The mass flow rate m_flow. -
                    • -
                    • -The pressure p, -unless use_p_in=false. -
                    • -
                    • -The temperature of the inflowing fluid -forward.T, -e.g., the temperature of the fluid that streams out of the component if m_flow > 0. -
                    • -
                    • -The mass fraction of the inflowing fluid -forward.Xi, -unless Medium.nXi=0. -
                    • -
                    • -The trace substances of the inflowing fluid -forward.C, -unless Medium.nC=0. -
                    • -
                    -

                    -If allowFlowReversal = true, -the connector also outputs the following quantities. -

                    -
                      -
                    • -The temperature of the outflowing fluid -backward.T, -e.g., if m_flow ≤ 0. -
                    • -
                    • -The mass fraction of the outflowing fluid -backward.Xi, -unless Medium.nXi=0. -
                    • -
                    • -The trace substances of the outflowing fluid -backward.C, -unless Medium.nC=0. -
                    • -
                    -

                    -If allowFlowReversal = false, then these outputs are not present. -

                    -", revisions=" -
                      -
                    • -January 18, 2019, by Jianjun Hu:
                      -Limited the media choice. -See #1050. -
                    • -
                    • -April 29, 2015, by Michael Wetter:
                      -Redesigned to conditionally remove the pressure connector -if use_p_in=false. -
                    • -
                    • -April 15, 2015 by Michael Wetter:
                      -Changed connector variable to be temperature instead of -specific enthalpy. -
                    • -
                    • -November 8, 2014 by Michael Wetter:
                      -First implementation. -
                    • -
                    -")); +

                    + This is a connector for a fluid inlet. + The connector takes as an input the + following quantities: +

                    +
                      +
                    • + The mass flow rate m_flow. +
                    • +
                    • + The pressure p, + unless use_p_in=false. +
                    • +
                    • + The temperature of the inflowing fluid + forward.T, + e.g., the temperature of the fluid that streams out of the component if m_flow > 0. +
                    • +
                    • + The mass fraction of the inflowing fluid + forward.Xi, + unless Medium.nXi=0. +
                    • +
                    • + The trace substances of the inflowing fluid + forward.C, + unless Medium.nC=0. +
                    • +
                    +

                    + If allowFlowReversal = true, + the connector also outputs the following quantities. +

                    +
                      +
                    • + The temperature of the outflowing fluid + backward.T, + e.g., if m_flow ≤ 0. +
                    • +
                    • + The mass fraction of the outflowing fluid + backward.Xi, + unless Medium.nXi=0. +
                    • +
                    • + The trace substances of the outflowing fluid + backward.C, + unless Medium.nC=0. +
                    • +
                    +

                    + If allowFlowReversal = false, then these outputs are not present. +

                    + ",revisions=" +
                      +
                    • + January 18, 2019, by Jianjun Hu:
                      + Limited the media choice. + See #1050. +
                    • +
                    • + April 29, 2015, by Michael Wetter:
                      + Redesigned to conditionally remove the pressure connector + if use_p_in=false. +
                    • +
                    • + April 15, 2015 by Michael Wetter:
                      + Changed connector variable to be temperature instead of + specific enthalpy. +
                    • +
                    • + November 8, 2014 by Michael Wetter:
                      + First implementation. +
                    • +
                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end Inlet; diff --git a/AixLib/Fluid/FMI/Interfaces/MassFractionConnector.mo b/AixLib/Fluid/FMI/Interfaces/MassFractionConnector.mo index d6df6196b2..3d6c1e1070 100644 --- a/AixLib/Fluid/FMI/Interfaces/MassFractionConnector.mo +++ b/AixLib/Fluid/FMI/Interfaces/MassFractionConnector.mo @@ -1,6 +1,6 @@ within AixLib.Fluid.FMI.Interfaces; connector MassFractionConnector = - Modelica.SIunits.MassFraction + Modelica.Units.SI.MassFraction "Connector for mass fraction of water vapor per kg total mass" annotation ( defaultComponentName="X_w", @@ -14,28 +14,29 @@ connector MassFractionConnector = extent={{-100.0,-100.0},{100.0,100.0}}), graphics={ Text( - lineColor={0,127,127}, + textColor={0,127,127}, extent={{-10.0,60.0},{-10.0,85.0}}, textString="%name")}), Documentation(info=" -

                    -Connector with variable of type Modelica.SIunits.MassFraction. -Note that the mass fraction is in kg water vapor per total mass -of air, rathern than per kg of dry air. -

                    -

                    -This connector has been implemented to conditionally remove -the mass fraction if the medium has only one species. -While this could have been done using a vector of mass fractions -with zero length, as is used in fluid connectors, -this implemantation uses a scalar to avoid vectorized inputs -and outputs of FMUs. -

                    -", revisions=" -
                      -
                    • -April 29,2015, by Michael Wetter:
                      -First implementation. -
                    • -
                    -")); +

                    + Connector with variable of type Modelica.Units.SI.MassFraction. + Note that the mass fraction is in kg water vapor per total mass + of air, rathern than per kg of dry air. +

                    +

                    + This connector has been implemented to conditionally remove + the mass fraction if the medium has only one species. + While this could have been done using a vector of mass fractions + with zero length, as is used in fluid connectors, + this implemantation uses a scalar to avoid vectorized inputs + and outputs of FMUs. +

                    + ",revisions=" +
                      +
                    • + April 29,2015, by Michael Wetter:
                      + First implementation. +
                    • +
                    + "), + __Dymola_LockedEditing="Model from IBPSA"); diff --git a/AixLib/Fluid/FMI/Interfaces/Outlet.mo b/AixLib/Fluid/FMI/Interfaces/Outlet.mo index 521594bae9..f8650f7ec0 100644 --- a/AixLib/Fluid/FMI/Interfaces/Outlet.mo +++ b/AixLib/Fluid/FMI/Interfaces/Outlet.mo @@ -21,12 +21,12 @@ connector Outlet "Connector for fluid outlet" output Medium.MassFlowRate m_flow "Mass flow rate from the connection point into the component"; - AixLib.Fluid.FMI.Interfaces.PressureOutput p if - use_p_in "Thermodynamic pressure in the connection point"; + AixLib.Fluid.FMI.Interfaces.PressureOutput p + if use_p_in "Thermodynamic pressure in the connection point"; input AixLib.Fluid.FMI.Interfaces.FluidProperties backward( - redeclare final package Medium = Medium) if - allowFlowReversal "Inflowing properties"; + redeclare final package Medium = Medium) + if allowFlowReversal "Inflowing properties"; output AixLib.Fluid.FMI.Interfaces.FluidProperties forward( redeclare final package Medium = Medium) "Outflowing properties"; @@ -41,84 +41,85 @@ connector Outlet "Connector for fluid outlet" fillColor={255,255,255}), Text( extent={{-58,134},{48,94}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="%name")}), Documentation(info=" -

                    -This is a connector for a fluid outlet. -The connector produces as an output the -following quantities: -

                    -
                      -
                    • -The mass flow rate m_flow. -
                    • -
                    • -The pressure p, -unless use_p_in=false. -
                    • -
                    • -The temperature of the inflowing fluid -forward.T, -e.g., the temperature of the fluid that streams out of the component if m_flow > 0. -
                    • -
                    • -The mass fraction of the inflowing fluid -forward.Xi, -unless Medium.nXi=0. -
                    • -
                    • -The trace substances of the inflowing fluid -forward.C, -unless Medium.nC=0. -
                    • -
                    -

                    -If allowFlowReversal = true, -the connector requires as input the following quantities. -

                    -
                      -
                    • -The temperature of the outflowing fluid -backward.T, -e.g., if m_flow ≤ 0. -
                    • -
                    • -The mass fraction of the outflowing fluid -backward.Xi, -unless Medium.nXi=0. -
                    • -
                    • -The trace substances of the outflowing fluid -backward.C, -unless Medium.nC=0. -
                    • -
                    -

                    -If allowFlowReversal = false, then these inputs are not present -and hence not required to be provided. -

                    -", revisions=" -
                      -
                    • -January 18, 2019, by Jianjun Hu:
                      -Limited the media choice. -See #1050. -
                    • -
                    • -April 29, 2015, by Michael Wetter:
                      -Redesigned to conditionally remove the pressure connector -if use_p_in=false. -
                    • -
                    • -April 15, 2015 by Michael Wetter:
                      -Changed connector variable to be temperature instead of -specific enthalpy. -
                    • -
                    • -November 8, 2014 by Michael Wetter:
                      -First implementation. -
                    • -
                    -")); +

                    + This is a connector for a fluid outlet. + The connector produces as an output the + following quantities: +

                    +
                      +
                    • + The mass flow rate m_flow. +
                    • +
                    • + The pressure p, + unless use_p_in=false. +
                    • +
                    • + The temperature of the inflowing fluid + forward.T, + e.g., the temperature of the fluid that streams out of the component if m_flow > 0. +
                    • +
                    • + The mass fraction of the inflowing fluid + forward.Xi, + unless Medium.nXi=0. +
                    • +
                    • + The trace substances of the inflowing fluid + forward.C, + unless Medium.nC=0. +
                    • +
                    +

                    + If allowFlowReversal = true, + the connector requires as input the following quantities. +

                    +
                      +
                    • + The temperature of the outflowing fluid + backward.T, + e.g., if m_flow ≤ 0. +
                    • +
                    • + The mass fraction of the outflowing fluid + backward.Xi, + unless Medium.nXi=0. +
                    • +
                    • + The trace substances of the outflowing fluid + backward.C, + unless Medium.nC=0. +
                    • +
                    +

                    + If allowFlowReversal = false, then these inputs are not present + and hence not required to be provided. +

                    + ",revisions=" +
                      +
                    • + January 18, 2019, by Jianjun Hu:
                      + Limited the media choice. + See #1050. +
                    • +
                    • + April 29, 2015, by Michael Wetter:
                      + Redesigned to conditionally remove the pressure connector + if use_p_in=false. +
                    • +
                    • + April 15, 2015 by Michael Wetter:
                      + Changed connector variable to be temperature instead of + specific enthalpy. +
                    • +
                    • + November 8, 2014 by Michael Wetter:
                      + First implementation. +
                    • +
                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end Outlet; diff --git a/AixLib/Fluid/FMI/Interfaces/PressureInput.mo b/AixLib/Fluid/FMI/Interfaces/PressureInput.mo index ecda81c5c5..6a066c901f 100644 --- a/AixLib/Fluid/FMI/Interfaces/PressureInput.mo +++ b/AixLib/Fluid/FMI/Interfaces/PressureInput.mo @@ -1,6 +1,7 @@ within AixLib.Fluid.FMI.Interfaces; connector PressureInput = - input Modelica.SIunits.AbsolutePressure(displayUnit="Pa") + input Modelica.Units.SI.AbsolutePressure ( + displayUnit="Pa") "Connector for pressure input" annotation ( defaultComponentName="p", @@ -24,20 +25,21 @@ connector PressureInput = fillPattern=FillPattern.Solid, points={{0.0,50.0},{100.0,0.0},{0.0,-50.0},{0.0,50.0}}), Text( - lineColor={0,127,127}, + textColor={0,127,127}, extent={{-10.0,60.0},{-10.0,85.0}}, textString="%name")}), Documentation(info=" -

                    -Connector with one input signal of type Modelica.SIunits.AbsolutePressure. -This connector has been implemented to conditionally remove -the pressure if no pressure drop calculation is requested. -

                    -", revisions=" -
                      -
                    • -April 29,2015, by Michael Wetter:
                      -First implementation. -
                    • -
                    -")); +

                    + Connector with one input signal of type Modelica.Units.SI.AbsolutePressure. + This connector has been implemented to conditionally remove + the pressure if no pressure drop calculation is requested. +

                    + ",revisions=" +
                      +
                    • + April 29,2015, by Michael Wetter:
                      + First implementation. +
                    • +
                    + "), + __Dymola_LockedEditing="Model from IBPSA"); diff --git a/AixLib/Fluid/FMI/Interfaces/PressureOutput.mo b/AixLib/Fluid/FMI/Interfaces/PressureOutput.mo index c4b9545bda..bd44b56015 100644 --- a/AixLib/Fluid/FMI/Interfaces/PressureOutput.mo +++ b/AixLib/Fluid/FMI/Interfaces/PressureOutput.mo @@ -1,6 +1,7 @@ within AixLib.Fluid.FMI.Interfaces; connector PressureOutput = - output Modelica.SIunits.AbsolutePressure(displayUnit="Pa") + output Modelica.Units.SI.AbsolutePressure ( + displayUnit="Pa") "Connector for pressure output" annotation ( defaultComponentName="p", @@ -23,20 +24,21 @@ connector PressureOutput = fillPattern=FillPattern.Solid, points={{-100.0,50.0},{0.0,0.0},{-100.0,-50.0}}), Text( - lineColor={0,127,127}, + textColor={0,127,127}, extent={{30.0,60.0},{30.0,110.0}}, textString="%name")}), Documentation(info=" -

                    -Connector with one output signal of type Modelica.SIunits.AbsolutePressure. -This connector has been implemented to conditionally remove -the pressure if no pressure drop calculation is requested. -

                    -", revisions=" -
                      -
                    • -April 29,2015, by Michael Wetter:
                      -First implementation. -
                    • -
                    -")); +

                    + Connector with one output signal of type Modelica.Units.SI.AbsolutePressure. + This connector has been implemented to conditionally remove + the pressure if no pressure drop calculation is requested. +

                    + ",revisions=" +
                      +
                    • + April 29,2015, by Michael Wetter:
                      + First implementation. +
                    • +
                    + "), + __Dymola_LockedEditing="Model from IBPSA"); diff --git a/AixLib/Fluid/FMI/Sink_T.mo b/AixLib/Fluid/FMI/Sink_T.mo index 562f02fc2f..105874e65b 100644 --- a/AixLib/Fluid/FMI/Sink_T.mo +++ b/AixLib/Fluid/FMI/Sink_T.mo @@ -20,8 +20,8 @@ model Sink_T min=0) "Prescribed boundary temperature" annotation (Placement(transformation(extent={{-140,60},{-100,100}}))); - Modelica.Blocks.Interfaces.RealInput X_w_in(unit="1") if - Medium.nXi > 0 "Prescribed boundary composition" + Modelica.Blocks.Interfaces.RealInput X_w_in(unit="1") + if Medium.nXi > 0 "Prescribed boundary composition" annotation (Placement(transformation(extent={{-140,10},{-100,50}}), iconTransformation(extent={{-140,10},{-100,50}}))); @@ -35,8 +35,8 @@ model Sink_T final allowFlowReversal=allowFlowReversal, final use_p_in=use_p_in) "Fluid port" annotation (Placement(transformation(extent={{120,-10},{100,10}}))); - AixLib.Fluid.FMI.Interfaces.PressureOutput p if - use_p_in "Pressure" + AixLib.Fluid.FMI.Interfaces.PressureOutput p + if use_p_in "Pressure" annotation ( Placement(transformation( extent={{-10,-10},{10,10}}, @@ -89,54 +89,55 @@ equation fillPattern=FillPattern.Solid, fillColor={255,255,255}), Text( extent={{-98,-90},{-62,-72}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="P", visible=use_p_in)}), Documentation(info=" -

                    -Model of a sink that takes as an input the medium properties -temperature, mass fractions (if Medium.nXi > 0) -and trace substances (if Medium.nC > 0). -These properties are used during reverse flow. -

                    -

                    -For a system of components with the connectors of the - -AixLib.Fluid.FMI -package, this component is required to set the medium properties -for the reverse flow. -

                    -

                    -If the parameter use_p_in is set to true, -then the model has an output connector p. -This can be used to obtain the pressure of the sink, which -may be needed to iteratively solve for the mass flow rate. -

                    -", revisions=" -
                      -
                    • -January 18, 2019, by Jianjun Hu:
                      -Limited the media choice to moist air and water. -See #1050. -
                    • -
                    • -April 29, 2015, by Michael Wetter:
                      -Redesigned to conditionally remove the pressure connector -if use_p_in=false. -
                    • -
                    • -April 29, 2015, by Michael Wetter:
                      -Added pressure output signal which is needed to solve for algebraic loops. -
                    • -
                    • -April 15, 2015 by Michael Wetter:
                      -Changed connector variable to be temperature instead of -specific enthalpy. -
                    • -
                    • -November 8, 2014, by Michael Wetter:
                      -First implementation. -
                    • -
                    -")); +

                    + Model of a sink that takes as an input the medium properties + temperature, mass fractions (if Medium.nXi > 0) + and trace substances (if Medium.nC > 0). + These properties are used during reverse flow. +

                    +

                    + For a system of components with the connectors of the + + AixLib.Fluid.FMI + package, this component is required to set the medium properties + for the reverse flow. +

                    +

                    + If the parameter use_p_in is set to true, + then the model has an output connector p. + This can be used to obtain the pressure of the sink, which + may be needed to iteratively solve for the mass flow rate. +

                    + ",revisions=" +
                      +
                    • + January 18, 2019, by Jianjun Hu:
                      + Limited the media choice to moist air and water. + See #1050. +
                    • +
                    • + April 29, 2015, by Michael Wetter:
                      + Redesigned to conditionally remove the pressure connector + if use_p_in=false. +
                    • +
                    • + April 29, 2015, by Michael Wetter:
                      + Added pressure output signal which is needed to solve for algebraic loops. +
                    • +
                    • + April 15, 2015 by Michael Wetter:
                      + Changed connector variable to be temperature instead of + specific enthalpy. +
                    • +
                    • + November 8, 2014, by Michael Wetter:
                      + First implementation. +
                    • +
                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end Sink_T; diff --git a/AixLib/Fluid/FMI/Source_T.mo b/AixLib/Fluid/FMI/Source_T.mo index 1c66c5a161..b6f5f5fb37 100644 --- a/AixLib/Fluid/FMI/Source_T.mo +++ b/AixLib/Fluid/FMI/Source_T.mo @@ -20,8 +20,8 @@ model Source_T annotation (Placement(transformation(extent={{-140,80},{-100,120}}), iconTransformation(extent={{-140,80},{-100,120}}))); - AixLib.Fluid.FMI.Interfaces.PressureInput p_in if - use_p_in "Prescribed boundary pressure" + AixLib.Fluid.FMI.Interfaces.PressureInput p_in + if use_p_in "Prescribed boundary pressure" annotation (Placement(transformation(extent={{-140,28},{-100,68}}), iconTransformation(extent={{-140,28},{-100,68}}))); Modelica.Blocks.Interfaces.RealInput T_in(unit="K", @@ -29,8 +29,8 @@ model Source_T min=0) "Prescribed boundary temperature" annotation (Placement(transformation(extent={{-140,-20},{-100,20}}))); - Modelica.Blocks.Interfaces.RealInput X_w_in(unit="1") if - Medium.nXi > 0 "Prescribed boundary composition" + Modelica.Blocks.Interfaces.RealInput X_w_in(unit="1") + if Medium.nXi > 0 "Prescribed boundary composition" annotation (Placement(transformation(extent={{-140,-70},{-100,-30}}), iconTransformation(extent={{-140,-70},{-100,-30}}))); @@ -82,48 +82,49 @@ equation fillPattern=FillPattern.Solid, fillColor={255,255,255}), Text( extent={{-94,60},{94,-58}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="m_flow -p")}), + p")}), Documentation(info=" -

                    -Model of a source that takes as an input the mass flow rate, -pressure and the medium properties -temperature, mass fractions (if Medium.nXi > 0) -and trace substances (if Medium.nC > 0). -

                    -

                    -For a system of components with the connectors of the - -AixLib.Fluid.FMI -package, this component is required to set the pressure -and the mass flow rate of the system. -

                    -", revisions=" -
                      -
                    • -January 18, 2019, by Jianjun Hu:
                      -Limited the media choice to moist air only. -See #1050. -
                    • -
                    • -October 15, 2016, by Michael Wetter:
                      -Removed redundant connection. -
                    • -
                    • -April 29, 2015, by Michael Wetter:
                      -Redesigned to conditionally remove the pressure connector -if use_p_in=false. -
                    • -
                    • -April 15, 2015 by Michael Wetter:
                      -Changed connector variable to be temperature instead of -specific enthalpy. -
                    • -
                    • -November 8, 2014, by Michael Wetter:
                      -First implementation. -
                    • -
                    -")); +

                    + Model of a source that takes as an input the mass flow rate, + pressure and the medium properties + temperature, mass fractions (if Medium.nXi > 0) + and trace substances (if Medium.nC > 0). +

                    +

                    + For a system of components with the connectors of the + + AixLib.Fluid.FMI + package, this component is required to set the pressure + and the mass flow rate of the system. +

                    + ",revisions=" +
                      +
                    • + January 18, 2019, by Jianjun Hu:
                      + Limited the media choice to moist air only. + See #1050. +
                    • +
                    • + October 15, 2016, by Michael Wetter:
                      + Removed redundant connection. +
                    • +
                    • + April 29, 2015, by Michael Wetter:
                      + Redesigned to conditionally remove the pressure connector + if use_p_in=false. +
                    • +
                    • + April 15, 2015 by Michael Wetter:
                      + Changed connector variable to be temperature instead of + specific enthalpy. +
                    • +
                    • + November 8, 2014, by Michael Wetter:
                      + First implementation. +
                    • +
                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end Source_T; diff --git a/AixLib/Fluid/FMI/Validation/FlowSplitter_u.mo b/AixLib/Fluid/FMI/Validation/FlowSplitter_u.mo index babfce0c67..7d49e2bfb2 100644 --- a/AixLib/Fluid/FMI/Validation/FlowSplitter_u.mo +++ b/AixLib/Fluid/FMI/Validation/FlowSplitter_u.mo @@ -3,7 +3,7 @@ model FlowSplitter_u "Flow splitter" extends Modelica.Icons.Example; package Medium = AixLib.Media.Air "Medium model"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal=0.1 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=0.1 "Nominal mass flow rate"; parameter Boolean use_p_in = false @@ -35,8 +35,8 @@ model FlowSplitter_u "Flow splitter" Modelica.Blocks.Sources.Constant X_w_in(k=0.01) "Inlet mass fraction" annotation (Placement(transformation(extent={{-80,-30},{-60,-10}}))); - Modelica.Blocks.Sources.Constant C[Medium.nC](each k=0.01) if - Medium.nC > 0 "Trace substances for forward flow" + Modelica.Blocks.Sources.Constant C[Medium.nC](each k=0.01) + if Medium.nC > 0 "Trace substances for forward flow" annotation (Placement(transformation(extent={{-80,-60},{-60,-40}}))); ExportContainers.Examples.FMUs.FlowSplitter_u floSpl( redeclare package Medium = Medium, @@ -78,22 +78,23 @@ equation smooth=Smooth.None)); annotation (Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-120, -100},{140,100}}), graphics), Documentation(info=" -

                    -This example demonstrates how to configure a model with a flow splitter. -

                    -

                    -For this example, the model is not exported as an FMU. However, the -thermofluid flow models are wrapped using input/output blocks. -

                    -", revisions=" -
                      -
                    • -July 28, 2015, by Thierry S. Nouidui:
                      -First implementation. -
                    • -
                    -"), +

                    + This example demonstrates how to configure a model with a flow splitter. +

                    +

                    + For this example, the model is not exported as an FMU. However, the + thermofluid flow models are wrapped using input/output blocks. +

                    + ",revisions=" +
                      +
                    • + July 28, 2015, by Thierry S. Nouidui:
                      + First implementation. +
                    • +
                    + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/Validation/FlowSplitter_u.mos" "Simulate and plot"), - experiment(Tolerance=1e-6, StopTime=1.0)); + experiment(Tolerance=1e-6, StopTime=1.0), + __Dymola_LockedEditing="Model from IBPSA"); end FlowSplitter_u; diff --git a/AixLib/Fluid/FMI/Validation/HeaterFan.mo b/AixLib/Fluid/FMI/Validation/HeaterFan.mo index 4f1cc5eb3b..58f200f75f 100644 --- a/AixLib/Fluid/FMI/Validation/HeaterFan.mo +++ b/AixLib/Fluid/FMI/Validation/HeaterFan.mo @@ -4,11 +4,11 @@ model HeaterFan extends Modelica.Icons.Example; package Medium = AixLib.Media.Air "Medium model"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal=Q_flow_nominal/1000/10 - "Nominal mass flow rate"; - parameter Modelica.SIunits.PressureDifference dp_nominal(displayUnit="Pa")=2000 - "Pressure"; - parameter Modelica.SIunits.HeatFlowRate Q_flow_nominal = 1000 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=Q_flow_nominal/1000/ + 10 "Nominal mass flow rate"; + parameter Modelica.Units.SI.PressureDifference dp_nominal(displayUnit="Pa")= + 2000 "Pressure"; + parameter Modelica.Units.SI.HeatFlowRate Q_flow_nominal=1000 "Heat flow rate at u=1, positive for heating"; parameter Boolean use_p_in = true @@ -64,12 +64,12 @@ model HeaterFan "Moisture mass fraction for back flow" annotation (Placement(transformation(extent={{120,-6},{100,14}}))); - Modelica.Blocks.Sources.Constant CBac[Medium.nC](each k=0.01) if - Medium.nC > 0 "Trace substances for back flow" + Modelica.Blocks.Sources.Constant CBac[Medium.nC](each k=0.01) + if Medium.nC > 0 "Trace substances for back flow" annotation (Placement(transformation(extent={{120,-60},{100,-40}}))); - Modelica.Blocks.Sources.Constant C[Medium.nC](each k=0.01) if - Medium.nC > 0 "Trace substances for forward flow" + Modelica.Blocks.Sources.Constant C[Medium.nC](each k=0.01) + if Medium.nC > 0 "Trace substances for forward flow" annotation (Placement(transformation(extent={{-100,-70},{-80,-50}}))); equation connect(uHea.y, hea.u) annotation (Line( @@ -126,39 +126,40 @@ equation smooth=Smooth.None)); annotation (Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-120, -100},{140,100}}), graphics), Documentation(info=" -

                    -This example demonstrates how to configure a model with a heater -and a fan that causes a pressure rise in the air stream. -Note that the mass flow rate and the absolute pressure are -set by the component sou. -Therefore, the fan simply increases the pressure of the medium, -and it also computes how much power is needed for this pressure rise, -which is an input to the fan model. -

                    -

                    -For a model with that computes the mass flow rate based on the pressure drop, see - -AixLib.Fluid.FMI.Validation.HeaterFanPressureDriven. -

                    -

                    -For this example, the models are not exported as FMUs. However, the -thermofluid flow models are wrapped using input/output blocks. -

                    -", revisions=" -
                      -
                    • -January 22, 2016, by Michael Wetter:
                      -Corrected type declaration of pressure difference. -This is -for #404. -
                    • -
                    • -November 8, 2014, by Michael Wetter:
                      -First implementation. -
                    • -
                    -"), +

                    + This example demonstrates how to configure a model with a heater + and a fan that causes a pressure rise in the air stream. + Note that the mass flow rate and the absolute pressure are + set by the component sou. + Therefore, the fan simply increases the pressure of the medium, + and it also computes how much power is needed for this pressure rise, + which is an input to the fan model. +

                    +

                    + For a model with that computes the mass flow rate based on the pressure drop, see + + AixLib.Fluid.FMI.Validation.HeaterFanPressureDriven. +

                    +

                    + For this example, the models are not exported as FMUs. However, the + thermofluid flow models are wrapped using input/output blocks. +

                    + ",revisions=" +
                      +
                    • + January 22, 2016, by Michael Wetter:
                      + Corrected type declaration of pressure difference. + This is + for #404. +
                    • +
                    • + November 8, 2014, by Michael Wetter:
                      + First implementation. +
                    • +
                    + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/Validation/HeaterFan.mos" "Simulate and plot"), - experiment(Tolerance=1e-6, StopTime=1.0)); + experiment(Tolerance=1e-6, StopTime=1.0), + __Dymola_LockedEditing="Model from IBPSA"); end HeaterFan; diff --git a/AixLib/Fluid/FMI/Validation/HeaterFanPressureDriven.mo b/AixLib/Fluid/FMI/Validation/HeaterFanPressureDriven.mo index 5dea1e68b3..ba2c12e7c6 100644 --- a/AixLib/Fluid/FMI/Validation/HeaterFanPressureDriven.mo +++ b/AixLib/Fluid/FMI/Validation/HeaterFanPressureDriven.mo @@ -4,11 +4,11 @@ model HeaterFanPressureDriven extends Modelica.Icons.Example; package Medium = AixLib.Media.Air "Medium model"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal=Q_flow_nominal/1000/10 - "Nominal mass flow rate"; - parameter Modelica.SIunits.PressureDifference dp_nominal(displayUnit="Pa")=2000 - "Pressure"; - parameter Modelica.SIunits.HeatFlowRate Q_flow_nominal = 1000 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=Q_flow_nominal/1000/ + 10 "Nominal mass flow rate"; + parameter Modelica.Units.SI.PressureDifference dp_nominal(displayUnit="Pa")= + 2000 "Pressure"; + parameter Modelica.Units.SI.HeatFlowRate Q_flow_nominal=1000 "Heat flow rate at u=1, positive for heating"; constant Boolean use_p_in = true @@ -62,12 +62,12 @@ model HeaterFanPressureDriven "Moisture mass fraction for back flow" annotation (Placement(transformation(extent={{120,-10},{100,10}}))); - Modelica.Blocks.Sources.Constant CBac[Medium.nC](each k=0.01) if - Medium.nC > 0 "Trace substances for back flow" + Modelica.Blocks.Sources.Constant CBac[Medium.nC](each k=0.01) + if Medium.nC > 0 "Trace substances for back flow" annotation (Placement(transformation(extent={{120,-60},{100,-40}}))); - Modelica.Blocks.Sources.Constant C[Medium.nC](each k=0.01) if - Medium.nC > 0 "Trace substances for forward flow" + Modelica.Blocks.Sources.Constant C[Medium.nC](each k=0.01) + if Medium.nC > 0 "Trace substances for forward flow" annotation (Placement(transformation(extent={{-100,-70},{-80,-50}}))); Modelica.Blocks.Math.InverseBlockConstraints invBloCon "Block to set up residual function for nonlinear system of equation for pressure drop and mass flow rate" @@ -135,41 +135,42 @@ equation smooth=Smooth.None)); annotation (Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-120, -100},{140,100}}), graphics), Documentation(info=" -

                    -This example demonstrates how to configure a model with a heater -and a fan that causes a pressure rise in the air stream. -The fan increases the pressure of the medium, -and it also computes how much power is needed for this pressure rise, -which is an input to the fan model. -

                    -

                    -The component invBloCon at the bottom of the model sets up -an equality constraint on the pressure between the sink and the source. -It also outputs a signal for the mass flow rate. Hence, this component is -used to declare how to break the algebraic loop in this signal flow diagram. -For a model with prescribed mass flow rate, see - -AixLib.Fluid.FMI.Validation.HeaterFan. -

                    -

                    -For this example, the models are not exported as FMUs. However, the -thermofluid flow models are wrapped using input/output blocks. -

                    -", revisions=" -
                      -
                    • -January 22, 2016, by Michael Wetter:
                      -Corrected type declaration of pressure difference. -This is -for #404. -
                    • -
                    • -November 8, 2014, by Michael Wetter:
                      -First implementation. -
                    • -
                    -"), +

                    + This example demonstrates how to configure a model with a heater + and a fan that causes a pressure rise in the air stream. + The fan increases the pressure of the medium, + and it also computes how much power is needed for this pressure rise, + which is an input to the fan model. +

                    +

                    + The component invBloCon at the bottom of the model sets up + an equality constraint on the pressure between the sink and the source. + It also outputs a signal for the mass flow rate. Hence, this component is + used to declare how to break the algebraic loop in this signal flow diagram. + For a model with prescribed mass flow rate, see + + AixLib.Fluid.FMI.Validation.HeaterFan. +

                    +

                    + For this example, the models are not exported as FMUs. However, the + thermofluid flow models are wrapped using input/output blocks. +

                    + ",revisions=" +
                      +
                    • + January 22, 2016, by Michael Wetter:
                      + Corrected type declaration of pressure difference. + This is + for #404. +
                    • +
                    • + November 8, 2014, by Michael Wetter:
                      + First implementation. +
                    • +
                    + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/Validation/HeaterFanPressureDriven.mos" "Simulate and plot"), - experiment(Tolerance=1e-6, StopTime=1.0)); + experiment(Tolerance=1e-6, StopTime=1.0), + __Dymola_LockedEditing="Model from IBPSA"); end HeaterFanPressureDriven; diff --git a/AixLib/Fluid/FMI/Validation/HeaterFan_noReverseFlow.mo b/AixLib/Fluid/FMI/Validation/HeaterFan_noReverseFlow.mo index beb8da6f01..2862545807 100644 --- a/AixLib/Fluid/FMI/Validation/HeaterFan_noReverseFlow.mo +++ b/AixLib/Fluid/FMI/Validation/HeaterFan_noReverseFlow.mo @@ -11,11 +11,11 @@ model HeaterFan_noReverseFlow "= true to use a pressure from connector, false to output Medium.p_default" annotation(Evaluate=true); - parameter Modelica.SIunits.MassFlowRate m_flow_nominal=Q_flow_nominal/1000/10 - "Nominal mass flow rate"; - parameter Modelica.SIunits.PressureDifference dp_nominal(displayUnit="Pa")=2000 - "Pressure"; - parameter Modelica.SIunits.HeatFlowRate Q_flow_nominal = 1000 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=Q_flow_nominal/1000/ + 10 "Nominal mass flow rate"; + parameter Modelica.Units.SI.PressureDifference dp_nominal(displayUnit="Pa")= + 2000 "Pressure"; + parameter Modelica.Units.SI.HeatFlowRate Q_flow_nominal=1000 "Heat flow rate at u=1, positive for heating"; ExportContainers.Examples.FMUs.Fan floMac( @@ -59,8 +59,8 @@ model HeaterFan_noReverseFlow Modelica.Blocks.Sources.Constant X_w_in(k=0.01) "Inlet mass fraction" annotation (Placement(transformation(extent={{-60,-30},{-40,-10}}))); - Modelica.Blocks.Sources.Constant C[Medium.nC](each k=0.01) if - Medium.nC > 0 "Trace substances for forward flow" + Modelica.Blocks.Sources.Constant C[Medium.nC](each k=0.01) + if Medium.nC > 0 "Trace substances for forward flow" annotation (Placement(transformation(extent={{-60,-70},{-40,-50}}))); equation connect(uHea.y, hea.u) annotation (Line( @@ -100,35 +100,36 @@ equation color={0,0,127}, smooth=Smooth.None)); annotation(Documentation(info=" -

                    -This example demonstrates how to configure a model with a heater -and a fan that causes a pressure rise in the air stream. -The model is identical with - -AixLib.Fluid.FMI.Validation.HeaterFan -except that reverse flow is not allowed due to the parameter -allowFlowReversal=false. -Consequently, the connectors for the fluid properties for the reverse flow -are removed, and the blocks on the right hand side of the model - -AixLib.Fluid.FMI.Validation.HeaterFan -have been deleted. -

                    -", revisions=" -
                      -
                    • -January 22, 2016, by Michael Wetter:
                      -Corrected type declaration of pressure difference. -This is -for #404. -
                    • -
                    • -November 8, 2014, by Michael Wetter:
                      -First implementation. -
                    • -
                    -"), +

                    + This example demonstrates how to configure a model with a heater + and a fan that causes a pressure rise in the air stream. + The model is identical with + + AixLib.Fluid.FMI.Validation.HeaterFan + except that reverse flow is not allowed due to the parameter + allowFlowReversal=false. + Consequently, the connectors for the fluid properties for the reverse flow + are removed, and the blocks on the right hand side of the model + + AixLib.Fluid.FMI.Validation.HeaterFan + have been deleted. +

                    + ",revisions=" +
                      +
                    • + January 22, 2016, by Michael Wetter:
                      + Corrected type declaration of pressure difference. + This is + for #404. +
                    • +
                    • + November 8, 2014, by Michael Wetter:
                      + First implementation. +
                    • +
                    + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FMI/Validation/HeaterFan_noReverseFlow.mos" "Simulate and plot"), - experiment(Tolerance=1e-6, StopTime=1.0)); + experiment(Tolerance=1e-6, StopTime=1.0), + __Dymola_LockedEditing="Model from IBPSA"); end HeaterFan_noReverseFlow; diff --git a/AixLib/Fluid/FixedResistances/BaseClasses/PlugFlow.mo b/AixLib/Fluid/FixedResistances/BaseClasses/PlugFlow.mo index 64b29954a9..ec2e71f525 100644 --- a/AixLib/Fluid/FixedResistances/BaseClasses/PlugFlow.mo +++ b/AixLib/Fluid/FixedResistances/BaseClasses/PlugFlow.mo @@ -3,51 +3,50 @@ model PlugFlow "Lossless pipe model with spatialDistribution plug flow implementation" extends AixLib.Fluid.Interfaces.PartialTwoPort; - parameter Modelica.SIunits.Length dh + parameter Modelica.Units.SI.Length dh "Hydraulic diameter (assuming a round cross section area)"; - parameter Modelica.SIunits.Length length(min=0) "Pipe length"; - final parameter Modelica.SIunits.Area A=Modelica.Constants.pi*(dh/2)^2 + parameter Modelica.Units.SI.Length length(min=0) "Pipe length"; + final parameter Modelica.Units.SI.Area A=Modelica.Constants.pi*(dh/2)^2 "Cross-sectional area of pipe"; parameter Medium.MassFlowRate m_flow_small "Small mass flow rate for regularization of zero flow" annotation(Dialog(tab = "Advanced")); - parameter Modelica.SIunits.Temperature T_start_in=Medium.T_default + parameter Modelica.Units.SI.Temperature T_start_in=Medium.T_default "Initial temperature in pipe at inlet" annotation (Dialog(group="Initialization")); - parameter Modelica.SIunits.Temperature T_start_out=Medium.T_default + parameter Modelica.Units.SI.Temperature T_start_out=Medium.T_default "Initial temperature in pipe at outlet" annotation (Dialog(group="Initialization")); - Modelica.SIunits.Length x + Modelica.Units.SI.Length x "Spatial coordinate for spatialDistribution operator"; - Modelica.SIunits.Velocity v "Flow velocity of medium in pipe"; + Modelica.Units.SI.Velocity v "Flow velocity of medium in pipe"; - Modelica.SIunits.VolumeFlowRate V_flow= - port_a.m_flow/Modelica.Fluid.Utilities.regStep(port_a.m_flow, - Medium.density( - Medium.setState_phX( - p = port_a.p, - h = inStream(port_a.h_outflow), - X = inStream(port_a.Xi_outflow))), - Medium.density( - Medium.setState_phX( - p = port_b.p, - h = inStream(port_b.h_outflow), - X = inStream(port_b.Xi_outflow))), - m_flow_small) + Modelica.Units.SI.VolumeFlowRate V_flow=port_a.m_flow/ + Modelica.Fluid.Utilities.regStep( + port_a.m_flow, + Medium.density(Medium.setState_phX( + p=port_a.p, + h=inStream(port_a.h_outflow), + X=inStream(port_a.Xi_outflow))), + Medium.density(Medium.setState_phX( + p=port_b.p, + h=inStream(port_b.h_outflow), + X=inStream(port_b.Xi_outflow))), + m_flow_small) "Volume flow rate at inflowing port (positive when flow from port_a to port_b)"; protected - parameter Modelica.SIunits.SpecificEnthalpy h_ini_in=Medium.specificEnthalpy( + parameter Modelica.Units.SI.SpecificEnthalpy h_ini_in=Medium.specificEnthalpy( Medium.setState_pTX( T=T_start_in, p=Medium.p_default, X=Medium.X_default)) "For initialization of spatialDistribution inlet"; - parameter Modelica.SIunits.SpecificEnthalpy h_ini_out=Medium.specificEnthalpy( - Medium.setState_pTX( + parameter Modelica.Units.SI.SpecificEnthalpy h_ini_out= + Medium.specificEnthalpy(Medium.setState_pTX( T=T_start_out, p=Medium.p_default, X=Medium.X_default)) "For initialization of spatialDistribution outlet"; @@ -126,54 +125,55 @@ equation fillPattern=FillPattern.HorizontalCylinder, fillColor={175,175,175})}), Documentation(revisions=" -
                      -
                    • -October 20, 2017, by Michael Wetter:
                      -Deleted various parameters and variables that were not used. -
                      -Revised documentation to follow the guidelines. -
                    • -
                    • -May 19, 2016 by Marcus Fuchs:
                      -Remove condition on show_V_flow for calculation of -V_flow to conform with pedantic checking. -
                    • -
                    • -October 10, 2015 by Marcus Fuchs:
                      -Copy Icon from KUL implementation and rename model. -
                    • -
                    • -June 23, 2015 by Marcus Fuchs:
                      -First implementation. -
                    • -
                    -", info=" -

                    -Model that computes the temperature propagation of -a fluid flow through a pipe, idealized as a plug flow. -

                    -

                    Main equation

                    -

                    -The transport delay is computed using the one-dimensional wave equation -without source or sink terms, -

                    -∂z(x,t)/∂t + v(t) ∂z(x,t)/∂x = 0, -

                    -

                    where z(x,t) is the spatial distribution as a function of time of any -property z of the fluid. -For the temperature propagation, z will be replaced by T. -

                    -

                    Assumptions

                    -

                    -This model is based on the following assumptions: -

                    -
                      -
                    • -Axial diffusion in water is assumed to be negligibe. -
                    • -
                    • -The water temperature is assumed uniform in a cross section. -
                    • -
                    -")); +
                      +
                    • + October 20, 2017, by Michael Wetter:
                      + Deleted various parameters and variables that were not used. +
                      + Revised documentation to follow the guidelines. +
                    • +
                    • + May 19, 2016 by Marcus Fuchs:
                      + Remove condition on show_V_flow for calculation of + V_flow to conform with pedantic checking. +
                    • +
                    • + October 10, 2015 by Marcus Fuchs:
                      + Copy Icon from KUL implementation and rename model. +
                    • +
                    • + June 23, 2015 by Marcus Fuchs:
                      + First implementation. +
                    • +
                    + ",info=" +

                    + Model that computes the temperature propagation of + a fluid flow through a pipe, idealized as a plug flow. +

                    +

                    Main equation

                    +

                    + The transport delay is computed using the one-dimensional wave equation + without source or sink terms, +

                    + ∂z(x,t)/∂t + v(t) ∂z(x,t)/∂x = 0, +

                    +

                    where z(x,t) is the spatial distribution as a function of time of any + property z of the fluid. + For the temperature propagation, z will be replaced by T. +

                    +

                    Assumptions

                    +

                    + This model is based on the following assumptions: +

                    +
                      +
                    • + Axial diffusion in water is assumed to be negligibe. +
                    • +
                    • + The water temperature is assumed uniform in a cross section. +
                    • +
                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end PlugFlow; diff --git a/AixLib/Fluid/FixedResistances/BaseClasses/PlugFlowCore.mo b/AixLib/Fluid/FixedResistances/BaseClasses/PlugFlowCore.mo index 32b865b7f0..93efbe6a03 100644 --- a/AixLib/Fluid/FixedResistances/BaseClasses/PlugFlowCore.mo +++ b/AixLib/Fluid/FixedResistances/BaseClasses/PlugFlowCore.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.FixedResistances.BaseClasses; +within AixLib.Fluid.FixedResistances.BaseClasses; model PlugFlowCore "Pipe model using spatialDistribution for temperature delay with modified delay tracker" extends AixLib.Fluid.Interfaces.PartialTwoPort; @@ -6,23 +6,23 @@ model PlugFlowCore constant Boolean homotopyInitialization = true "= true, use homotopy method" annotation(HideResult=true); - parameter Modelica.SIunits.Length dh + parameter Modelica.Units.SI.Length dh "Hydraulic diameter (assuming a round cross section area)"; - parameter Modelica.SIunits.Velocity v_nominal + parameter Modelica.Units.SI.Velocity v_nominal "Velocity at m_flow_nominal (used to compute default value for hydraulic diameter dh)" annotation(Dialog(group="Nominal condition")); - parameter Modelica.SIunits.Length length(min=0) "Pipe length"; + parameter Modelica.Units.SI.Length length(min=0) "Pipe length"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal(min=0) + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal(min=0) "Nominal mass flow rate" annotation (Dialog(group="Nominal condition")); - parameter Modelica.SIunits.MassFlowRate m_flow_small(min=0) = 1E-4*abs( + parameter Modelica.Units.SI.MassFlowRate m_flow_small(min=0) = 1E-4*abs( m_flow_nominal) "Small mass flow rate for regularization of zero flow" annotation (Dialog(tab="Advanced")); - parameter Modelica.SIunits.Height roughness=2.5e-5 + parameter Modelica.Units.SI.Height roughness=2.5e-5 "Average height of surface asperities (default: smooth steel pipe)" annotation (Dialog(group="Geometry")); @@ -39,18 +39,18 @@ model PlugFlowCore parameter Boolean from_dp=false "= true, use m_flow = f(dp) else dp = f(m_flow)" annotation (Evaluate=true, Dialog(tab="Advanced")); - parameter Modelica.SIunits.Length thickness(min=0) "Pipe wall thickness"; + parameter Modelica.Units.SI.Length thickness(min=0) "Pipe wall thickness"; - parameter Modelica.SIunits.Temperature T_start_in=Medium.T_default + parameter Modelica.Units.SI.Temperature T_start_in=Medium.T_default "Initialization temperature at pipe inlet" annotation (Dialog(tab="Initialization")); - parameter Modelica.SIunits.Temperature T_start_out=Medium.T_default + parameter Modelica.Units.SI.Temperature T_start_out=Medium.T_default "Initialization temperature at pipe outlet" annotation (Dialog(tab="Initialization")); parameter Boolean initDelay=false "Initialize delay for a constant mass flow rate if true, otherwise start from 0" annotation (Dialog(tab="Initialization")); - parameter Modelica.SIunits.MassFlowRate m_flow_start=0 + parameter Modelica.Units.SI.MassFlowRate m_flow_start=0 annotation (Dialog(tab="Initialization", enable=initDelay)); parameter Real ReC=4000 @@ -128,7 +128,7 @@ model PlugFlowCore annotation (Placement(transformation(extent={{-10,90},{10,110}}))); protected - parameter Modelica.SIunits.Density rho_default=Medium.density_pTX( + parameter Modelica.Units.SI.Density rho_default=Medium.density_pTX( p=Medium.p_default, T=Medium.T_default, X=Medium.X_default) @@ -204,72 +204,76 @@ equation lineColor={0,0,0}, fillPattern=FillPattern.HorizontalCylinder, fillColor={215,202,187})}), - Documentation(revisions=" -
                      -
                    • -April 14, 2020, by Michael Wetter:
                      -Changed homotopyInitialization to a constant.
                      -This is for -AixLib, #1341. -
                    • -
                    • -October 20, 2017, by Michael Wetter:
                      -Replaced model that lumps flow resistance and transport delays -with two separate models, as these are physically distinct processes. -This also avoids one more layer of models. -
                      -Revised variable names and documentation to follow guidelines. -
                    • -
                    • -July 4, 2016 by Bram van der Heijde:
                      -Introduce pipVol. -
                    • -
                    • -October 10, 2015 by Marcus Fuchs:
                      -Copy Icon from KUL implementation and rename model. -Replace resistance and temperature delay by an adiabatic pipe. -
                    • -
                    • -September, 2015 by Marcus Fuchs:
                      First implementation. -
                    • + Documentation(revisions="
                        +
                      • April 14, 2020, by Michael Wetter:
                        + Changed homotopyInitialization to a constant.
                        + This is for AixLib, + #1341. +
                      • +
                      • October 20, 2017, by Michael Wetter:
                        + Replaced model that lumps flow resistance and transport delays with + two separate models, as these are physically distinct processes. + This also avoids one more layer of models.
                        + Revised variable names and documentation to follow guidelines. +
                      • +
                      • July 4, 2016 by Bram van der Heijde:
                        + Introduce pipVol. +
                      • +
                      • October 10, 2015 by Marcus Fuchs:
                        + Copy Icon from KUL implementation and rename model. Replace + resistance and temperature delay by an adiabatic pipe. +
                      • +
                      • September, 2015 by Marcus Fuchs:
                        + First implementation. +
                      -", info=" +",info="

                      -Pipe with heat loss using the time delay based heat losses and plug flow -for the transport delay of the fluid. + Pipe with heat loss using the time delay based heat losses and plug + flow for the transport delay of the fluid.

                      -

                      Implementation

                      +

                      + Implementation +

                      -The -spatialDistribution operator is used for the temperature wave propagation -through the length of the pipe. This operator is contained in -BaseClasses.PlugFlow. + The spatialDistribution operator is used for the + temperature wave propagation through the length of the pipe. This + operator is contained in BaseClasses.PlugFlow.

                      -This model does not include thermal inertia of the pipe wall. -The wall inertia is implemented in -PlugFlowPipe, which uses this model. -
                      -The removal of the thermal inertia with a mixing volume can be desirable in the -case where mixing volumes are added manually at the pipe junctions. + This model does not include thermal inertia of the pipe wall. The + wall inertia is implemented in PlugFlowPipe, + which uses this model.
                      + The removal of the thermal inertia with a mixing volume can be + desirable in the case where mixing volumes are added manually at the + pipe junctions.

                      -The model - -PlugFlowHeatLoss -implements a heat loss in design direction, but leaves the enthalpy unchanged -in opposite flow direction. Therefore it is used in front of and behind the time delay. + The model + PlugFlowHeatLoss implements a heat loss in design direction, but + leaves the enthalpy unchanged in opposite flow direction. Therefore + it is used in front of and behind the time delay.

                      -

                      References

                      +

                      + References +

                      -Full details on the model implementation and experimental validation can be found -in: + Full details on the model implementation and experimental validation + can be found in:

                      -van der Heijde, B., Fuchs, M., Ribas Tugores, C., Schweiger, G., Sartor, K., Basciotti, D., Müller, -D., Nytsch-Geusen, C., Wetter, M. and Helsen, L. (2017).
                      -Dynamic equation-based thermo-hydraulic pipe model for district heating and cooling systems.
                      -Energy Conversion and Management, vol. 151, p. 158-169. -doi: 10.1016/j.enconman.2017.08.072.

                      + van der Heijde, B., Fuchs, M., Ribas Tugores, C., Schweiger, G., + Sartor, K., Basciotti, D., Müller, D., Nytsch-Geusen, C., Wetter, M. + and Helsen, L. (2017).
                      + Dynamic equation-based thermo-hydraulic pipe model for district + heating and cooling systems.
                      + Energy Conversion and Management, vol. 151, p. 158-169. + doi: + 10.1016/j.enconman.2017.08.072 . +

                      ")); end PlugFlowCore; diff --git a/AixLib/Fluid/FixedResistances/BaseClasses/PlugFlowHeatLoss.mo b/AixLib/Fluid/FixedResistances/BaseClasses/PlugFlowHeatLoss.mo index 507be89acf..08170a2f09 100644 --- a/AixLib/Fluid/FixedResistances/BaseClasses/PlugFlowHeatLoss.mo +++ b/AixLib/Fluid/FixedResistances/BaseClasses/PlugFlowHeatLoss.mo @@ -11,11 +11,12 @@ model PlugFlowHeatLoss parameter Real R(unit="(m.K)/W") "Thermal resistance per unit length from fluid to boundary temperature"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal "Nominal mass flow rate"; - parameter Modelica.SIunits.Temperature T_start - "Initial output temperature"; + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal + "Nominal mass flow rate"; + parameter Modelica.Units.SI.Temperature T_start "Initial output temperature"; - final parameter Modelica.SIunits.Time tau_char=R*C "Characteristic delay time"; + final parameter Modelica.Units.SI.Time tau_char=R*C + "Characteristic delay time"; Modelica.Blocks.Interfaces.RealInput tau(unit="s") "Time delay at pipe level" annotation (Placement(transformation( @@ -26,18 +27,18 @@ model PlugFlowHeatLoss "Heat port to connect environment (negative if heat is lost to ambient)" annotation (Placement(transformation(extent={{-10,90},{10,110}}))); - Modelica.SIunits.Temperature T_a_inflow(start=T_start) + Modelica.Units.SI.Temperature T_a_inflow(start=T_start) "Temperature at port_a for inflowing fluid"; - Modelica.SIunits.Temperature T_b_outflow(start=T_start) + Modelica.Units.SI.Temperature T_b_outflow(start=T_start) "Temperature at port_b for outflowing fluid"; - Modelica.SIunits.Temperature TAmb=heatPort.T "Environment temperature"; + Modelica.Units.SI.Temperature TAmb=heatPort.T "Environment temperature"; protected parameter Medium.ThermodynamicState sta_default=Medium.setState_pTX( T=Medium.T_default, p=Medium.p_default, X=Medium.X_default) "Default medium state"; - parameter Modelica.SIunits.SpecificHeatCapacity cp_default= + parameter Modelica.Units.SI.SpecificHeatCapacity cp_default= Medium.specificHeatCapacityCp(state=sta_default) "Heat capacity of medium"; @@ -86,77 +87,78 @@ equation fillColor={238,46,47}, fillPattern=FillPattern.Solid)}), Documentation(info=" -

                      -Component that calculates the heat losses at the end of a plug flow pipe -when the flow goes in the design direction. -

                      -

                      Main equations

                      -

                      -The governing equations are -

                      -

                      -Tout = Tb + (Tin - Tb) -exp((tout - tin)/tauchar) -

                      -

                      -with -

                      -

                      -tauchar = R C -

                      -

                      Assumptions and limitations

                      -

                      -This model is based on the following assumptions: -

                      -
                        -
                      • The water temperature is uniform in the cross section.
                      • -
                      • There is no axial heat transfer in the water or surrounding.
                      • -
                      • The boundary temperature along the pipe is uniform.
                      • -
                      • Heat losses are steady-state.
                      • -
                      -

                      Implementation

                      -

                      -Heat losses are only considered in design flow direction. -For heat loss consideration in both directions, use one of these models at -both ends of a - -AixLib.Fluid.FixedResistances.BaseClasses.PlugFlow model. -The outlet temperature is calculated as in the equation above, -using the inlet temperature at port_a and the instantaneous -time delay and boundary temperature. -The boundary temperature can be either the air temperature -or the undisturbed ground temperature, depending on the definition of the -thermal resistance R. -

                      -

                      -This component requires the delay time and the instantaneous ambient temperature -as an input. -This component is to be used in single pipes or in more advanced configurations -where no influence from other pipes is considered.

                      -", +

                      + Component that calculates the heat losses at the end of a plug flow pipe + when the flow goes in the design direction. +

                      +

                      Main equations

                      +

                      + The governing equations are +

                      +

                      + Tout = Tb + (Tin - Tb) + exp((tout - tin)/tauchar) +

                      +

                      + with +

                      +

                      + tauchar = R C +

                      +

                      Assumptions and limitations

                      +

                      + This model is based on the following assumptions: +

                      +
                        +
                      • The water temperature is uniform in the cross section.
                      • +
                      • There is no axial heat transfer in the water or surrounding.
                      • +
                      • The boundary temperature along the pipe is uniform.
                      • +
                      • Heat losses are steady-state.
                      • +
                      +

                      Implementation

                      +

                      + Heat losses are only considered in design flow direction. + For heat loss consideration in both directions, use one of these models at + both ends of a + + AixLib.Fluid.FixedResistances.BaseClasses.PlugFlow model. + The outlet temperature is calculated as in the equation above, + using the inlet temperature at port_a and the instantaneous + time delay and boundary temperature. + The boundary temperature can be either the air temperature + or the undisturbed ground temperature, depending on the definition of the + thermal resistance R. +

                      +

                      + This component requires the delay time and the instantaneous ambient temperature + as an input. + This component is to be used in single pipes or in more advanced configurations + where no influence from other pipes is considered.

                      + ", revisions=" -
                        -
                      • -December 6, 2017, by Michael Wetter:
                        -Reformulated call to medium function.
                        -This is for - -issue 869. -
                      • -
                      • -October 20, 2017, by Michael Wetter:
                        -Revised implementation to avoid graphical and textual modeling. -Revised variable names and documentation to follow guidelines. -
                      • -
                      • -November 6, 2015 by Bram van der Heijde:
                        -Make time delay input instead of calculation inside this model. -
                      • -
                      • -September, 2015 by Marcus Fuchs:
                        -First implementation.
                      • -
                      -"), +
                        +
                      • + December 6, 2017, by Michael Wetter:
                        + Reformulated call to medium function.
                        + This is for + + issue 869. +
                      • +
                      • + October 20, 2017, by Michael Wetter:
                        + Revised implementation to avoid graphical and textual modeling. + Revised variable names and documentation to follow guidelines. +
                      • +
                      • + November 6, 2015 by Bram van der Heijde:
                        + Make time delay input instead of calculation inside this model. +
                      • +
                      • + September, 2015 by Marcus Fuchs:
                        + First implementation.
                      • +
                      + "), Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100, - 100}}))); + 100}})), + __Dymola_LockedEditing="Model from IBPSA"); end PlugFlowHeatLoss; diff --git a/AixLib/Fluid/FixedResistances/BaseClasses/PlugFlowPipe.mo b/AixLib/Fluid/FixedResistances/BaseClasses/PlugFlowPipe.mo new file mode 100644 index 0000000000..00892a32a2 --- /dev/null +++ b/AixLib/Fluid/FixedResistances/BaseClasses/PlugFlowPipe.mo @@ -0,0 +1,495 @@ +within AixLib.Fluid.FixedResistances.BaseClasses; +model PlugFlowPipe + "Pipe model using spatialDistribution for temperature delay" + extends AixLib.Fluid.Interfaces.PartialTwoPortInterface( + m_flow(start=m_flow_start)); + + constant Boolean homotopyInitialization = true "= true, use homotopy method" + annotation(HideResult=true); + + parameter Boolean from_dp=false + "= true, use m_flow = f(dp) else dp = f(m_flow)" + annotation (Dialog(tab="Advanced")); + + parameter Boolean have_pipCap=true + "= true, a mixing volume is added that corresponds + to the heat capacity of the pipe wall" + annotation (Dialog(tab="Advanced")); + parameter Boolean have_symmetry=true + "= false, the mixing volume is only on port_b, + which improve performances, but reduces dynamic accuracy." + annotation (Dialog(tab="Advanced", enable=have_pipCap)); + + parameter Modelica.Units.SI.Length dh=sqrt(4*m_flow_nominal/rho_default/ + v_nominal/Modelica.Constants.pi) + "Hydraulic diameter (assuming a round cross section area)" + annotation (Dialog(group="Material")); + + parameter Modelica.Units.SI.Velocity v_nominal=1.5 + "Velocity at m_flow_nominal (used to compute default value for hydraulic diameter dh)" + annotation (Dialog(group="Nominal condition")); + + parameter Real ReC=4000 + "Reynolds number where transition to turbulence starts"; + + parameter Modelica.Units.SI.Height roughness=2.5e-5 + "Average height of surface asperities (default: smooth steel pipe)" + annotation (Dialog(group="Material")); + + parameter Modelica.Units.SI.Length length "Pipe length" + annotation (Dialog(group="Material")); + + parameter Modelica.Units.SI.Length dIns + "Thickness of pipe insulation, used to compute R" + annotation (Dialog(group="Thermal resistance")); + + parameter Modelica.Units.SI.ThermalConductivity kIns + "Heat conductivity of pipe insulation, used to compute R" + annotation (Dialog(group="Thermal resistance")); + + parameter Modelica.Units.SI.SpecificHeatCapacity cPip=2300 + "Specific heat of pipe wall material. 2300 for PE, 500 for steel" + annotation (Dialog(group="Material", enable=have_pipCap)); + + parameter Modelica.Units.SI.Density rhoPip(displayUnit="kg/m3") = 930 + "Density of pipe wall material. 930 for PE, 8000 for steel" + annotation (Dialog(group="Material", enable=have_pipCap)); + + parameter Modelica.Units.SI.Length thickness=0.0035 "Pipe wall thickness" + annotation (Dialog(group="Material")); + + parameter Modelica.Units.SI.Temperature T_start_in(start=Medium.T_default)= + Medium.T_default "Initialization temperature at pipe inlet" + annotation (Dialog(tab="Initialization")); + parameter Modelica.Units.SI.Temperature T_start_out(start=Medium.T_default)= + T_start_in "Initialization temperature at pipe outlet" + annotation (Dialog(tab="Initialization")); + parameter Boolean initDelay = false + "Initialize delay for a constant mass flow rate if true, otherwise start from 0" + annotation (Dialog(tab="Initialization")); + parameter Modelica.Units.SI.MassFlowRate m_flow_start=0 + "Initial value of mass flow rate through pipe" + annotation (Dialog(tab="Initialization", enable=initDelay)); + + parameter Real R(unit="(m.K)/W")=1/(kIns*2*Modelica.Constants.pi/ + Modelica.Math.log((dh/2 + thickness + dIns)/(dh/2 + thickness))) + "Thermal resistance per unit length from fluid to boundary temperature" + annotation (Dialog(group="Thermal resistance")); + + parameter Real fac=1 + "Factor to take into account flow resistance of bends etc., + fac=dp_nominal/dpStraightPipe_nominal"; + + parameter Boolean linearized = false + "= true, use linear relation between m_flow and dp for any flow rate" + annotation(Evaluate=true, Dialog(tab="Advanced")); + + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a heatPort + "Heat transfer to or from surroundings (positive if pipe is colder than surrounding)" + annotation (Placement(transformation(extent={{-10,90},{10,110}}))); + + // QEnv_flow is introduced because in discretized pipes, heatPort.Q_flow must be summed over all ports. + // By introducing this variable, both models have the same variable. + Modelica.Units.SI.HeatFlowRate QEnv_flow=heatPort.Q_flow + "Heat transfer to or from surroundings (positive if pipe is colder than surrounding)"; + + Modelica.Units.SI.Velocity v=del.v "Flow velocity of medium in pipe"; + + replaceable AixLib.Fluid.FixedResistances.HydraulicDiameter res( + final dh=dh, + final from_dp=from_dp, + final length=length, + final roughness=roughness, + final fac=fac, + final ReC=ReC, + final v_nominal=v_nominal, + final homotopyInitialization=homotopyInitialization, + final linearized=linearized, + dp(nominal=fac*200*length)) constrainedby + AixLib.Fluid.Interfaces.PartialTwoPortInterface( + redeclare final package Medium = Medium, + final m_flow_nominal=m_flow_nominal, + final allowFlowReversal=allowFlowReversal, + final show_T=false) + "Pressure drop calculation for this pipe" + annotation (Placement(transformation(extent={{-10,-10},{10,10}}, + rotation=0, + origin={0,40}))); + +protected + parameter Modelica.Units.SI.HeatCapacity CPip=length*((dh + 2*thickness)^2 - + dh^2)*Modelica.Constants.pi/4*cPip*rhoPip "Heat capacity of pipe wall"; + + final parameter Modelica.Units.SI.Volume VEqu=if have_symmetry then CPip/( + rho_default*cp_default)/2 else CPip/(rho_default*cp_default) + "Equivalent water volume to represent pipe wall thermal inertia"; + + parameter Medium.ThermodynamicState sta_default=Medium.setState_pTX( + T=Medium.T_default, + p=Medium.p_default, + X=Medium.X_default) "Default medium state"; + + parameter Modelica.Units.SI.SpecificHeatCapacity cp_default= + Medium.specificHeatCapacityCp(state=sta_default) + "Heat capacity of medium"; + + parameter Real C(unit="J/(K.m)")= + rho_default*Modelica.Constants.pi*(dh/2)^2*cp_default + "Thermal capacity per unit length of water in pipe"; + + parameter Modelica.Units.SI.Density rho_default=Medium.density_pTX( + p=Medium.p_default, + T=Medium.T_default, + X=Medium.X_default) + "Default density (e.g., rho_liquidWater = 995, rho_air = 1.2)" + annotation (Dialog(group="Advanced")); + + parameter Boolean have_pipCap_a = have_pipCap and have_symmetry; + + BaseClasses.PlugFlow del( + redeclare final package Medium = Medium, + final m_flow_small=m_flow_small, + final dh=dh, + final length=length, + final allowFlowReversal=allowFlowReversal, + final T_start_in=T_start_in, + final T_start_out=T_start_out) + "Model for temperature wave propagation" + annotation (Placement(transformation(extent={{20,30},{40,50}}))); + BaseClasses.PlugFlowHeatLoss heaLos_a( + redeclare final package Medium = Medium, + final C=C, + final R=R, + final m_flow_small=m_flow_small, + final T_start=T_start_in, + final m_flow_nominal=m_flow_nominal, + final m_flow_start=m_flow_start, + final show_T=false, + final show_V_flow=false) "Heat loss for flow from port_b to port_a" + annotation (Placement(transformation(extent={{-40,-10},{-60,10}}))); + BaseClasses.PlugFlowHeatLoss heaLos_b( + redeclare final package Medium = Medium, + final C=C, + final R=R, + final m_flow_small=m_flow_small, + final T_start=T_start_out, + final m_flow_nominal=m_flow_nominal, + final m_flow_start=m_flow_start, + final show_T=false, + final show_V_flow=false) "Heat loss for flow from port_a to port_b" + annotation (Placement(transformation(extent={{40,-10},{60,10}}))); + Sensors.MassFlowRate senMasFlo( + redeclare final package Medium = Medium) + "Mass flow sensor" + annotation (Placement(transformation(extent={{-40,50},{-20,30}}))); + BaseClasses.PlugFlowTransportDelay timDel( + final length=length, + final dh=dh, + final rho=rho_default, + final initDelay=initDelay, + final m_flow_nominal=m_flow_nominal, + final m_flow_start=m_flow_start) "Time delay" + annotation (Placement(transformation(extent={{-10,-50},{10,-30}}))); + + // In the volume, below, we scale down V and use + // mSenFac. Otherwise, for air, we would get very large volumes + // which affect the delay of water vapor and contaminants. + // See also AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.TransportWaterAir + // for why mSenFac is 10 and not 1000, as this gives more reasonable + // temperature step response + Fluid.MixingVolumes.MixingVolume vol_b( + redeclare final package Medium = Medium, + final m_flow_nominal=m_flow_nominal, + final V=if rho_default > 500 then VEqu else VEqu/1000, + final nPorts=2, + final T_start=T_start_out, + final energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, + final mSenFac=if rho_default > 500 then 1 else 10) if have_pipCap + "Control volume connected to port_b. + Represents equivalent pipe wall thermal capacity." + annotation (Placement(transformation(extent={{70,20},{90,40}}))); + LosslessPipe noMixPip_b( + redeclare final package Medium = Medium, + final m_flow_nominal=m_flow_nominal, + final m_flow_small=m_flow_small, + final allowFlowReversal=allowFlowReversal) if not have_pipCap + "Lossless pipe for connecting the outlet port when have_pipCap=false" + annotation (Placement(transformation(extent={{70,-30},{90,-10}}))); + + MixingVolumes.MixingVolume vol_a( + redeclare final package Medium = Medium, + final m_flow_nominal=m_flow_nominal, + final V=if rho_default > 500 then VEqu else VEqu/1000, + final nPorts=2, + final T_start=T_start_out, + final energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, + final mSenFac=if rho_default > 500 then 1 else 10) if have_pipCap_a + "Control volume connected to port_a. + Represents equivalent pipe wall thermal capacity." + annotation (Placement(transformation(extent={{-90,20},{-70,40}}))); + LosslessPipe noMixPip_a( + redeclare final package Medium = Medium, + final m_flow_nominal=m_flow_nominal, + final m_flow_small=m_flow_small, + final allowFlowReversal=allowFlowReversal) if not have_pipCap_a + "Lossless pipe for connecting the outlet port when have_pipCap=false + or have_symmetry=false" + annotation (Placement(transformation(extent={{-90,-30},{-70,-10}}))); + +initial equation + assert(homotopyInitialization, "In " + getInstanceName() + + ": The constant homotopyInitialization has been modified from its default + value. This constant will be removed in future releases.", + level = AssertionLevel.warning); + +equation + + connect(senMasFlo.m_flow,timDel. m_flow) + annotation (Line(points={{-30,29},{-30,-40},{-12,-40}}, + color={0,0,127}, + smooth=Smooth.None)); + connect(timDel.tauRev,heaLos_a. tau) + annotation (Line(points={{11,-36},{16,-36},{16,-20},{-32,-20}, + {-32,16},{-44,16},{-44,10}}, color={0,0,127})); + connect(timDel.tau,heaLos_b. tau) + annotation (Line(points={{11,-44},{34,-44},{34,18},{44,18},{44,10}}, + color={0,0,127})); + connect(heaLos_a.port_a,senMasFlo. port_a) + annotation (Line(points={{-40,0},{-20,0},{-20,20},{-44,20}, + {-44,40},{-40,40}},color={0,127,255})); + connect(del.port_a,res. port_b) + annotation (Line(points={{20,40},{10,40}}, + color={0,127,255})); + connect(senMasFlo.port_b,res. port_a) + annotation (Line(points={{-20,40},{-10,40}}, + color={0,127,255})); + connect(heaLos_b.port_a,del. port_b) + annotation (Line(points={{40,0},{20,0},{20,20},{44,20},{44,40},{40,40}}, + color={0,127,255})); + connect(heaLos_b.heatPort, heatPort) + annotation (Line(points={{50,10},{50,86},{0,86},{0,100}}, + color={191,0,0})); + connect(heaLos_a.heatPort, heatPort) + annotation (Line(points={{-50,10},{-50,86},{0,86},{0,100}}, + color={191,0,0})); + + connect(heaLos_b.port_b, vol_b.ports[1]) + annotation (Line(points={{60,0},{78,0},{78,20}}, color={0,127,255})); + connect(vol_b.ports[2], port_b) + annotation (Line(points={{82,20},{82,0},{100,0}}, color={0,127,255})); + connect(heaLos_b.port_b, noMixPip_b.port_a) + annotation (Line(points={{60,0},{66,0},{66,-20},{70,-20}}, + color={0,127,255})); + connect(noMixPip_b.port_b, port_b) + annotation (Line(points={{90,-20},{94,-20},{94,0},{100,0}}, + color={0,127,255})); + + connect(port_a, vol_a.ports[1]) + annotation (Line(points={{-100,0},{-82,0},{-82,20}}, color={0,127,255})); + connect(vol_a.ports[2], heaLos_a.port_b) + annotation (Line(points={{-78,20},{-78,0},{-60,0}}, color={0,127,255})); + connect(port_a, noMixPip_a.port_a) annotation (Line(points={{-100,0},{-94,0},{ + -94,-20},{-90,-20}}, color={0,127,255})); + connect(noMixPip_a.port_b, heaLos_a.port_b) annotation (Line(points={{-70,-20}, + {-64,-20},{-64,0},{-60,0}}, color={0,127,255})); + annotation ( + Line(points={{70,20},{72,20},{72,0},{100,0}}, color={0,127,255}), + Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{ + 100,100}})), + Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100, + 100}}), graphics={ + Rectangle( + extent={{-100,40},{100,-40}}, + lineColor={0,0,0}, + fillPattern=FillPattern.HorizontalCylinder, + fillColor={192,192,192}), + Rectangle( + extent={{-100,30},{100,-30}}, + lineColor={0,0,0}, + fillPattern=FillPattern.HorizontalCylinder, + fillColor={0,127,255}), + Rectangle( + extent={{-100,50},{100,40}}, + lineColor={175,175,175}, + fillColor={255,255,255}, + fillPattern=FillPattern.Backward), + Rectangle( + extent={{-100,-40},{100,-50}}, + lineColor={175,175,175}, + fillColor={255,255,255}, + fillPattern=FillPattern.Backward), + Polygon( + points={{0,90},{40,62},{20,62},{20,38},{-20,38},{-20,62},{-40,62},{0, + 90}}, + lineColor={0,0,0}, + fillColor={238,46,47}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{-30,30},{28,-30}}, + lineColor={0,0,0}, + fillPattern=FillPattern.HorizontalCylinder, + fillColor={215,202,187}), + Text( + extent={{-102,-76},{98,-104}}, + textColor={0,0,0}, + textString="d = %dh"), + Text( + extent={{-100,-56},{100,-74}}, + textColor={0,0,0}, + textString="L = %length")}), + Documentation(revisions=" +
                        +
                      • + October 15, 2021, by Michael Wetter:
                        + Moved model to BaseClasses. This allows + AixLib.Fluid.FixedResistances.PlugFlowPipe + to redeclare the resistance as final, thereby avoiding that a GUI presents this instance + to users as a replaceable class. +
                      • +
                      • + October 05, 2021, by Baptiste Ravache:
                        + Made model symmetrical and extends from + + AixLib.Fluid.Interfaces.PartialTwoPortInterface. +
                      • +
                      • + September 14, 2021, by Michael Wetter:
                        + Made most instances protected and exposed main variables of interest. +
                      • +
                      • + July 9, 2021, by Baptiste Ravache:
                        + Replaced the vectorized outlet port ports_b with + a single outlet port port_b.
                        + Expanded the core pipe model that was previously a component. + This is for + IBPSA, #1494.
                        + This change is not backward compatible.
                        + The previous classes definitions were moved to + + AixLib.Obsolete.Fluid.FixedResistances.PlugFlowPipe. + + AixLib.Obsolete.Fluid.FixedResistances.BaseClasses.PlugFlowCore. +
                      • +
                      • + April 14, 2020, by Michael Wetter:
                        + Changed homotopyInitialization to a constant.
                        + This is for + IBPSA, #1341. +
                      • +
                      • + March 6, 2020, by Jelger Jansen:
                        + Revised calculation of thermal resistance R + by using correct radiuses. + See #1310. +
                      • +
                      • + October 23, 2017, by Michael Wetter:
                        + Revised variable names and documentation to follow guidelines. + Corrected malformed hyperlinks. +
                      • +
                      • + July 4, 2016 by Bram van der Heijde:
                        + Introduce pipVol. +
                      • +
                      • + October 10, 2015 by Marcus Fuchs:
                        + Copy Icon from KUL implementation and rename model. + Replace resistance and temperature delay by an adiabatic pipe. +
                      • +
                      • September, 2015 by Marcus Fuchs:
                        + First implementation. +
                      • +
                      + ",info=" +

                      + Pipe with heat loss using the time delay based heat losses and transport + of the fluid using a plug flow model, applicable for simulation of long + pipes such as in district heating and cooling systems.

                      +

                      + This model takes into account transport delay along the pipe length idealized + as a plug flow. + The model also includes thermal inertia of the pipe wall. +

                      +

                      Implementation

                      +

                      + The + spatialDistribution operator is used for the temperature wave propagation + through the length of the pipe. This operator is contained in + + AixLib.Fluid.FixedResistances.BaseClasses.PlugFlow. +

                      +

                      + The model + + AixLib.Fluid.FixedResistances.BaseClasses.PlugFlowHeatLoss + implements a heat loss in design direction, but leaves the enthalpy unchanged + in opposite flow direction. Therefore it is used in front of and behind the time delay. +

                      +

                      + The pressure drop is implemented using + + AixLib.Fluid.FixedResistances.HydraulicDiameter. + This instance is replaceable to allow + + AixLib.Fluid.FixedResistances.PlugFlowPipeDiscretized + to compute the pressure drop only once rather than for each segment. +

                      +

                      + The thermal capacity of the pipe wall is implemented as a mixing volume + of the fluid in the pipe, of which the thermal capacity is equal to that + of the pipe wall material. + In addition, this mixing volume allows the hydraulic separation of subsequent pipes. +
                      + The mixing volume is either split between the inlet and outlet ports + (port_a and port_b) or lumped in at the outlet (port_b) + if have_symmetry is set to false. + This mixing volume can be removed from this model with the Boolean parameter + have_pipCap, in cases where the pipe wall heat capacity + is negligible and a state is not needed at the pipe outlet + (see the note below about numerical Jacobians). +

                      +

                      + Note that in order to model a branched network it is recommended to use + + AixLib.Fluid.FixedResistances.Junction at each junction and to configure + that junction model with a state + (energyDynamics <> Modelica.Fluid.Types.Dynamics.SteadyState), + see for instance + + AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.PlugFlowAIT. + This will avoid the numerical Jacobian that is otherwise created when + the inlet ports of two instances of the plug flow model are connected together. +

                      +

                      Assumptions

                      +
                        +
                      • + Heat losses are for steady-state operation. +
                      • +
                      • + The axial heat diffusion in the fluid, the pipe wall and the ground are neglected. +
                      • +
                      • + The boundary temperature is uniform. +
                      • +
                      • + The thermal inertia of the pipe wall material is lumped on the side of the pipe + that is connected to port_b. +
                      • +
                      +

                      References

                      +

                      + Full details on the model implementation and experimental validation can be found + in: +

                      +

                      + van der Heijde, B., Fuchs, M., Ribas Tugores, C., Schweiger, G., Sartor, K., + Basciotti, D., Müller, D., Nytsch-Geusen, C., Wetter, M. and Helsen, L. + (2017).
                      + Dynamic equation-based thermo-hydraulic pipe model for district heating and + cooling systems.
                      + Energy Conversion and Management, vol. 151, p. 158-169. + doi: + 10.1016/j.enconman.2017.08.072.

                      + "), + __Dymola_LockedEditing="Model from IBPSA"); +end PlugFlowPipe; diff --git a/AixLib/Fluid/FixedResistances/BaseClasses/PlugFlowTransportDelay.mo b/AixLib/Fluid/FixedResistances/BaseClasses/PlugFlowTransportDelay.mo index 75457342eb..65aca26a40 100644 --- a/AixLib/Fluid/FixedResistances/BaseClasses/PlugFlowTransportDelay.mo +++ b/AixLib/Fluid/FixedResistances/BaseClasses/PlugFlowTransportDelay.mo @@ -1,34 +1,35 @@ within AixLib.Fluid.FixedResistances.BaseClasses; model PlugFlowTransportDelay "Delay time for given normalized velocity" - parameter Modelica.SIunits.Length length "Pipe length"; - parameter Modelica.SIunits.Length dh + parameter Modelica.Units.SI.Length length "Pipe length"; + parameter Modelica.Units.SI.Length dh "Hydraulic diameter (assuming a round cross section area)"; - parameter Modelica.SIunits.Density rho "Standard density of fluid"; + parameter Modelica.Units.SI.Density rho "Standard density of fluid"; parameter Boolean initDelay=false "Initialize delay for a constant m_flow_start if true, otherwise start from 0" annotation (Dialog(group="Initialization")); - parameter Modelica.SIunits.MassFlowRate m_flow_start=0 + parameter Modelica.Units.SI.MassFlowRate m_flow_start=0 "Initialization of mass flow rate to calculate initial time delay" annotation (Dialog(group="Initialization", enable=initDelay)); - parameter Modelica.SIunits.MassFlowRate m_flow_nominal(min=0) + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal(min=0) "Nominal mass flow rate" annotation (Dialog(group="Nominal condition")); - final parameter Modelica.SIunits.Time t_in_start= - if initDelay and (abs(m_flow_start) > 1E-10*m_flow_nominal) - then min(length/m_flow_start*(rho*dh^2/4*Modelica.Constants.pi), 0) else 0 + final parameter Modelica.Units.SI.Time t_in_start=if initDelay and (abs( + m_flow_start) > 1E-10*m_flow_nominal) then min(length/m_flow_start*(rho* + dh^2/4*Modelica.Constants.pi), 0) else 0 "Initial value of input time at inlet"; - final parameter Modelica.SIunits.Time t_out_start= - if initDelay and (abs(m_flow_start) > 1E-10*m_flow_nominal) - then min(-length/m_flow_start*(rho*dh^2/4*Modelica.Constants.pi), 0) else 0 + final parameter Modelica.Units.SI.Time t_out_start=if initDelay and (abs( + m_flow_start) > 1E-10*m_flow_nominal) then min(-length/m_flow_start*(rho* + dh^2/4*Modelica.Constants.pi), 0) else 0 "Initial value of input time at outlet"; - - Modelica.SIunits.Time time_out_rev "Reverse flow direction output time"; - Modelica.SIunits.Time time_out_des "Design flow direction output time"; + final parameter Real conUM(unit="1/kg") = 4/rho/dh/dh/Modelica.Constants.pi/length + "Constant to convert mass flow rate into velocity normalized by the pipe length"; + Modelica.Units.SI.Time time_out_rev "Reverse flow direction output time"; + Modelica.Units.SI.Time time_out_des "Design flow direction output time"; Real x(start=0) "Spatial coordinate for spatialDistribution operator"; - Modelica.SIunits.Frequency u "Normalized fluid velocity (1/s)"; + Real u(unit="1/s") "Normalized fluid velocity (1/s)"; Modelica.Blocks.Interfaces.RealInput m_flow "Mass flow of fluid" annotation ( Placement(transformation(extent={{-140,-20},{-100,20}}), @@ -41,15 +42,15 @@ model PlugFlowTransportDelay "Delay time for given normalized velocity" annotation (Placement(transformation(extent={{100,30},{120,50}}))); protected - parameter Modelica.SIunits.Time t0(fixed = false) "Start time of the simulation"; + parameter Modelica.Units.SI.Time t0(fixed=false) + "Start time of the simulation"; initial equation x = 0; t0 = time; equation - u = m_flow/(rho*(dh^2)/4*Modelica.Constants.pi)/length; - + u = m_flow * conUM; der(x) = u; (time_out_rev, time_out_des) = spatialDistribution( time, @@ -87,87 +88,85 @@ equation -47.2},{88,-24.8},{96,0}}, smooth=Smooth.Bezier), Text( extent={{20,100},{82,30}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="PDE"), Text( extent={{-82,-30},{-20,-100}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="tau"), Text( extent={{-100,140},{100,100}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="%name")}), Documentation(info=" -

                      -Calculates time delay at both sides of the pipe as the difference between the -current simulation time and the inlet time of the fluid at both ends of the pipe. -

                      -

                      Main equation

                      -

                      -∂z(x,t)/∂t + v(t) ∂z(x,t)/∂x = 0, -

                      -

                      -where z(x,t) is the spatial distribution as a function of time of any -property z of the fluid. For the inlet time propagation, z will -be replaced by the inlet time of the fluid tin. -

                      -

                      Implementation

                      -

                      -The inlet time is approached as a fluid property and its propagation follows -the one-dimensional wave equation, implemented using the spatialDistribution -function. This components requires the mass flow through the pipe and the pipe -dimensions in order to derive information about the fluid propagation. -

                      -

                      -The component calculates the delay time at both in/outlet ports of the pipe -and therefore has two outlets. During forward flow, only the forward - -AixLib.Fluid.FixedResistances.BaseClasses.PlugFlowTransportDelay component in - -AixLib.Fluid.FixedResistances.BaseClasses.PlugFlowCore -will be active and uses the forward output of PlugFlowTransportDelay. -During reverse, the opposite is true and only the reverse output is used. -

                      -

                      Assumption

                      -

                      It is assumed that no axial mixing takes place in the pipe.

                      -", revisions=" -
                        -
                      • -December 2, 2020, by Philipp Mehrfeld:
                        -Corrected calculation of tau and tauRev to be be -only positive.
                        -This is for -#1427. -
                      • -
                      • -December 14, 2018, by Michael Wetter:
                        -Corrected argument of spatialDistribution operator to be a parameter -expression.
                        -This is for -#1055. -
                      • -
                      • -September 9, 2016 by Bram van der Heijde:
                        -Rename from PDETime_massFlowMod to PlugFlowTransportDelayMod -
                      • -
                      • -December 2015 by Carles Ribas Tugores:
                        -Modification in delay calculation to fix issues. -
                      • -
                      • -November 6, 2015 by Bram van der Heijde:
                        -Adapted flow parameter to mass flow rate instead of velocity. -This change should also fix the reverse and zero flow issues. -
                      • -
                      • -October 13, 2015 by Marcus Fuchs:
                        -Use abs() of normalized velocity input in order to avoid negative -delay times. -
                      • -
                      • -July 2015 by Arnout Aertgeerts:
                        -First implementation. -
                      • -
                      -")); +

                      + Calculates time delay at both sides of the pipe as the difference between the + current simulation time and the inlet time of the fluid at both ends of the pipe. +

                      +

                      Main equation

                      +

                      + ∂z(x,t)/∂t + v(t) ∂z(x,t)/∂x = 0, +

                      +

                      + where z(x,t) is the spatial distribution as a function of time of any + property z of the fluid. For the inlet time propagation, z will + be replaced by the inlet time of the fluid tin. +

                      +

                      Implementation

                      +

                      + The inlet time is approached as a fluid property and its propagation follows + the one-dimensional wave equation, implemented using the spatialDistribution + function. This components requires the mass flow through the pipe and the pipe + dimensions in order to derive information about the fluid propagation. +

                      +

                      + The component calculates the delay time at the inlet and the outlet port of the pipe. + For the forward flow, the time delay is exposed at the output tau, + and for the backward flow, the time delay is exposed at the output tauRev. +

                      +

                      Assumption

                      +

                      + No axial mixing takes place in the pipe. +

                      + ",revisions=" +
                        +
                      • + December 2, 2020, by Philipp Mehrfeld:
                        + Corrected calculation of tau and tauRev to be be + only positive.
                        + This is for + #1427. +
                      • +
                      • + December 14, 2018, by Michael Wetter:
                        + Corrected argument of spatialDistribution operator to be a parameter + expression.
                        + This is for + #1055. +
                      • +
                      • + September 9, 2016 by Bram van der Heijde:
                        + Rename from PDETime_massFlowMod to PlugFlowTransportDelayMod +
                      • +
                      • + December 2015 by Carles Ribas Tugores:
                        + Modification in delay calculation to fix issues. +
                      • +
                      • + November 6, 2015 by Bram van der Heijde:
                        + Adapted flow parameter to mass flow rate instead of velocity. + This change should also fix the reverse and zero flow issues. +
                      • +
                      • + October 13, 2015 by Marcus Fuchs:
                        + Use abs() of normalized velocity input in order to avoid negative + delay times. +
                      • +
                      • + July 2015 by Arnout Aertgeerts:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end PlugFlowTransportDelay; diff --git a/AixLib/Fluid/FixedResistances/BaseClasses/Validation/PlugFlowCore.mo b/AixLib/Fluid/FixedResistances/BaseClasses/Validation/PlugFlowCore.mo deleted file mode 100644 index d420f28500..0000000000 --- a/AixLib/Fluid/FixedResistances/BaseClasses/Validation/PlugFlowCore.mo +++ /dev/null @@ -1,128 +0,0 @@ -within AixLib.Fluid.FixedResistances.BaseClasses.Validation; -model PlugFlowCore "Simple example of plug flow pipe core" - extends Modelica.Icons.Example; - replaceable package Medium = AixLib.Media.Water "Medium in pipes" - annotation ( - choicesAllMatching=true); - parameter Modelica.SIunits.Length dh=0.1 - "Hydraulic diameter (assuming a round cross section area)"; - parameter Modelica.SIunits.Length dIns = 0.05 - "Thickness of pipe insulation"; - parameter Modelica.SIunits.ThermalConductivity kIns= 0.028 - "Heat conductivity of pipe insulation"; - - parameter Modelica.SIunits.SpecificHeatCapacity cPip=500 - "Specific heat of pipe wall material. 2300 for PE, 500 for steel"; - parameter Modelica.SIunits.Density rhoPip=8000 - "Density of pipe wall material. 930 for PE, 8000 for steel"; - - parameter Real R=1/(kIns*2*Modelica.Constants.pi/ - Modelica.Math.log((dh/2 + dIns)/(dh/2))) - "Thermal resistance per unit length from fluid to boundary temperature"; - - parameter Real C=rho_default*Modelica.Constants.pi*( - dh/2)^2*cp_default "Thermal capacity per unit length of water in pipe"; - - parameter Modelica.SIunits.Density rho_default=Medium.density_pTX( - p=Medium.p_default, - T=Medium.T_default, - X=Medium.X_default) - "Default density (e.g., rho_liquidWater = 995, rho_air = 1.2)" - annotation (Dialog(group="Advanced")); - - parameter Medium.ThermodynamicState sta_default=Medium.setState_pTX( - T=Medium.T_default, - p=Medium.p_default, - X=Medium.X_default) "Default medium state"; - - parameter Modelica.SIunits.SpecificHeatCapacity cp_default= - Medium.specificHeatCapacityCp(state=sta_default) - "Heat capacity of medium"; - - Modelica.Blocks.Sources.Ramp Tin( - height=20, - duration=0, - offset=273.15 + 50, - startTime=100) "Ramp temperature signal" - annotation (Placement(transformation(extent={{-92,-6},{-72,14}}))); - Sources.Boundary_pT sin( - redeclare package Medium = Medium, - T=273.15 + 10, - nPorts=1, - p(displayUnit="Pa") = 101325) "Pressure boundary condition" - annotation (Placement(transformation(extent={{82,-10},{62,10}}))); - AixLib.Fluid.FixedResistances.BaseClasses.PlugFlowCore pip( - redeclare package Medium = Medium, - from_dp=true, - dh=0.1, - length=100, - m_flow_nominal=1, - roughness=2.5e-5, - thickness=0.0032, - initDelay=true, - m_flow_start=1, - R=R, - C=C, - v_nominal=1.5, - T_start_in=323.15, - T_start_out=323.15) "Pipe" - annotation (Placement(transformation(extent={{0,-10},{20,10}}))); - Modelica.Thermal.HeatTransfer.Sources.FixedTemperature bou(T=283.15) - "Fixed temperature boundary condition" - annotation (Placement(transformation(extent={{-40,60},{-20,80}}))); - AixLib.Fluid.Sources.MassFlowSource_T sou( - nPorts=1, - redeclare package Medium = Medium, - use_T_in=true, - m_flow=3) "Flow source" - annotation (Placement(transformation(extent={{-60,-10},{-40,10}}))); - - AixLib.Fluid.Sensors.TemperatureTwoPort senTemOut( - redeclare package Medium = Medium, - m_flow_nominal=1, - T_start=323.15) "Temperature sensor" - annotation (Placement(transformation(extent={{30,-10},{50,10}}))); - AixLib.Fluid.Sensors.TemperatureTwoPort senTemIn( - redeclare package Medium = Medium, - m_flow_nominal=1, - T_start=323.15) "Temperature sensor" - annotation (Placement(transformation(extent={{-30,-10},{-10,10}}))); -equation - connect(bou.port, pip.heatPort) - annotation (Line(points={{-20,70},{10,70},{10,10}}, color={191,0,0})); - connect(Tin.y, sou.T_in) - annotation (Line(points={{-71,4},{-62,4}}, color={0,0,127})); - connect(senTemOut.port_b, sin.ports[1]) - annotation (Line(points={{50,0},{62,0}}, color={0,127,255})); - connect(sou.ports[1], senTemIn.port_a) - annotation (Line(points={{-40,0},{-30,0}}, color={0,127,255})); - connect(senTemIn.port_b, pip.port_a) - annotation (Line(points={{-10,0},{0,0}}, color={0,127,255})); - connect(pip.port_b, senTemOut.port_a) - annotation (Line(points={{20,0},{30,0}}, color={0,127,255})); - annotation ( - __Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/FixedResistances/BaseClasses/Validation/PlugFlowCore.mos" - "Simulate and Plot"), - experiment(StopTime=1000, Tolerance=1e-006), - Documentation(info=" -

                      -Basic test of model - -AixLib.Fluid.FixedResistances.BaseClasses.PlugFlowCore. -This test includes an inlet temperature step under a constant mass flow rate. -

                      -", revisions=" -
                        -
                      • -October 23, 2017, by Michael Wetter:
                        -Corrected wrong hyperlink, updated example for new set of parameters that -are exposed by the pipe model. -
                      • -
                      • -September 8, 2017 by Bram van der Heijde:
                        -First implementation. -
                      • -
                      -")); -end PlugFlowCore; diff --git a/AixLib/Fluid/FixedResistances/BaseClasses/Validation/package.mo b/AixLib/Fluid/FixedResistances/BaseClasses/Validation/package.mo deleted file mode 100644 index d8adbb6955..0000000000 --- a/AixLib/Fluid/FixedResistances/BaseClasses/Validation/package.mo +++ /dev/null @@ -1,21 +0,0 @@ - -within AixLib.Fluid.FixedResistances.BaseClasses; -package Validation "Collection of validation models" - extends Modelica.Icons.ExamplesPackage; - -annotation (preferredView="info", Documentation(info=" -

                      -This package contains validation models for the classes in - -AixLib.Fluid.FixedResistances.BaseClasses. -

                      -

                      -Note that most validation models contain simple input data -which may not be realistic, but for which the correct -output can be obtained through an analytic solution. -The examples plot various outputs, which have been verified against these -solutions. These model outputs are stored as reference data and -used for continuous validation whenever models in the library change. -

                      -")); -end Validation; diff --git a/AixLib/Fluid/FixedResistances/BaseClasses/Validation/package.order b/AixLib/Fluid/FixedResistances/BaseClasses/Validation/package.order deleted file mode 100644 index de00bc67cf..0000000000 --- a/AixLib/Fluid/FixedResistances/BaseClasses/Validation/package.order +++ /dev/null @@ -1 +0,0 @@ -PlugFlowCore diff --git a/AixLib/Fluid/FixedResistances/BaseClasses/package.mo b/AixLib/Fluid/FixedResistances/BaseClasses/package.mo index d9c97a4f50..f5b161ff51 100644 --- a/AixLib/Fluid/FixedResistances/BaseClasses/package.mo +++ b/AixLib/Fluid/FixedResistances/BaseClasses/package.mo @@ -1,6 +1,7 @@ within AixLib.Fluid.FixedResistances; package BaseClasses "Package with base classes for AixLib.Fluid.FixedResistances" extends Modelica.Icons.BasesPackage; + annotation (preferredView="info", Documentation(info="

                      This package contains base classes that are used to construct the models in diff --git a/AixLib/Fluid/FixedResistances/BaseClasses/package.order b/AixLib/Fluid/FixedResistances/BaseClasses/package.order index d3b83e36fc..06493b07b5 100644 --- a/AixLib/Fluid/FixedResistances/BaseClasses/package.order +++ b/AixLib/Fluid/FixedResistances/BaseClasses/package.order @@ -1,5 +1,5 @@ PlugFlow -PlugFlowCore PlugFlowHeatLoss +PlugFlowPipe PlugFlowTransportDelay -Validation +PlugFlowCore diff --git a/AixLib/Fluid/FixedResistances/CheckValve.mo b/AixLib/Fluid/FixedResistances/CheckValve.mo index eac16809f7..ad0e3489a7 100644 --- a/AixLib/Fluid/FixedResistances/CheckValve.mo +++ b/AixLib/Fluid/FixedResistances/CheckValve.mo @@ -10,14 +10,14 @@ model CheckValve "Check valve that avoids flow reversal" extends AixLib.Fluid.Actuators.BaseClasses.ValveParameters( rhoStd=Medium.density_pTX(101325, 273.15 + 4, Medium.X_default)); - parameter Modelica.SIunits.PressureDifference dpFixed_nominal( - displayUnit="Pa", min=0) = 0 - "Pressure drop of pipe and other resistances that are in series" + parameter Modelica.Units.SI.PressureDifference dpFixed_nominal( + displayUnit="Pa", + min=0) = 0 "Pressure drop of pipe and other resistances that are in series" annotation (Dialog(group="Nominal condition")); - parameter Modelica.SIunits.PressureDifference dpValve_closing = dpValve_nominal/2 - "Pressure drop when the check valve starts to close" - annotation(Dialog(group="Nominal condition")); + parameter Modelica.Units.SI.PressureDifference dpValve_closing= + dpValve_nominal/2 "Pressure drop when the check valve starts to close" + annotation (Dialog(group="Nominal condition")); parameter Real l(min=1e-10, max=1)=0.001 "Valve leakage, l=Kv(y=0)/Kv(y=1)"; @@ -26,11 +26,11 @@ model CheckValve "Check valve that avoids flow reversal" m_flow_nominal/sqrt(dpFixed_nominal) else 0 "Flow coefficient of fixed resistance that may be in series with valve, - k=m_flow/sqrt(dp), with unit=(kg.m)^(1/2)."; + k=m_flow/sqrt(dp), with unit=(kg.m)^(1/2)."; Real k(min=Modelica.Constants.small) "Flow coefficient of valve and pipe in series in allowed/forward direction, - k=m_flow/sqrt(dp), with unit=(kg.m)^(1/2)."; + k=m_flow/sqrt(dp), with unit=(kg.m)^(1/2)."; protected Real a @@ -43,7 +43,7 @@ protected initial equation assert(dpFixed_nominal > -Modelica.Constants.eps, "In " + getInstanceName() + ": We require dpFixed_nominal >= 0. - Received dpFixed_nominal = " + String(dpFixed_nominal) + " Pa."); + Received dpFixed_nominal = "+ String(dpFixed_nominal) + " Pa."); assert(l > -Modelica.Constants.eps, "In " + getInstanceName() + ": We require l >= 0. Received l = " + String(l)); equation @@ -101,65 +101,66 @@ equation lineThickness=0.5)}), defaultComponentName="cheVal", Documentation(info=" -

                      -Implementation of a hydraulic check valve. -Note that the small reverse flows can still occur with this model. -

                      -

                      Main equations

                      -

                      -The basic flow function -

                      -

                      - m = sign(Δp) k √ Δp  , -

                      -

                      -with regularization near the origin, is used to compute the pressure drop. -The flow coefficient -

                      -

                      - k = m ⁄ √ Δp   -

                      -

                      -is increased from l*KV_Si to KV_Si, -where KV_Si is equal to Kv but in SI units. -Therefore, the flow coefficient k is set to a value close to zero for negative pressure differences, thereby -restricting reverse flow to a small value. -The flow coefficient k saturates to its maximum value at the pressure dpValve_closing. -For larger pressure drops, the pressure drop is a quadratic function of the flow rate. -

                      -

                      Typical use and important parameters

                      -

                      -The parameters m_flow_nominal and dpValve_nominal -determine the flow coefficient of the check valve when it is fully opened. -A typical value for a nominal flow rate of 1 m/s is -dpValve_nominal = 3400 Pa. -The leakage ratio l determines the minimum flow coefficient, -for negative pressure differences. -The parameter dpFixed_nominal allows to include a series -pressure drop with a fixed flow coefficient into the model. -The parameter dpValve_closing determines when the -flow coefficient starts to increase, -which is typically in the order of dpValve_nominal. -

                      -

                      Implementation

                      -

                      -The check valve implementation approximates the physics -where a forward pressure difference opens the valve such that -the valve opening increases, causing a growing orifice area -and thus increasing the flow coefficient. -Near dp=dpValve_closing, the valve is fully open and the flow coefficient saturates -to the flow coefficient value determined by dpValve_nominal and m_flow_nominal. -For typical valve diameters, the check valve is only fully open -near nominal mass flow rate. Therefore, the model sets dpValve_closing=dpValve_nominal/2 -by default. -

                      -", revisions=" -
                        -
                      • -September 16, 2019, by Kristoff Six and Filip Jorissen:
                        -Implementation of a hydraulic check valve. This is for -issue 1198. -
                      • -
                      -")); +

                      + Implementation of a hydraulic check valve. + Note that the small reverse flows can still occur with this model. +

                      +

                      Main equations

                      +

                      + The basic flow function +

                      +

                      + m = sign(Δp) k √ Δp  , +

                      +

                      + with regularization near the origin, is used to compute the pressure drop. + The flow coefficient +

                      +

                      + k = m ⁄ √ Δp   +

                      +

                      + is increased from l*KV_Si to KV_Si, + where KV_Si is equal to Kv but in SI units. + Therefore, the flow coefficient k is set to a value close to zero for negative pressure differences, thereby + restricting reverse flow to a small value. + The flow coefficient k saturates to its maximum value at the pressure dpValve_closing. + For larger pressure drops, the pressure drop is a quadratic function of the flow rate. +

                      +

                      Typical use and important parameters

                      +

                      + The parameters m_flow_nominal and dpValve_nominal + determine the flow coefficient of the check valve when it is fully opened. + A typical value for a nominal flow rate of 1 m/s is + dpValve_nominal = 3400 Pa. + The leakage ratio l determines the minimum flow coefficient, + for negative pressure differences. + The parameter dpFixed_nominal allows to include a series + pressure drop with a fixed flow coefficient into the model. + The parameter dpValve_closing determines when the + flow coefficient starts to increase, + which is typically in the order of dpValve_nominal. +

                      +

                      Implementation

                      +

                      + The check valve implementation approximates the physics + where a forward pressure difference opens the valve such that + the valve opening increases, causing a growing orifice area + and thus increasing the flow coefficient. + Near dp=dpValve_closing, the valve is fully open and the flow coefficient saturates + to the flow coefficient value determined by dpValve_nominal and m_flow_nominal. + For typical valve diameters, the check valve is only fully open + near nominal mass flow rate. Therefore, the model sets dpValve_closing=dpValve_nominal/2 + by default. +

                      + ",revisions=" +
                        +
                      • + September 16, 2019, by Kristoff Six and Filip Jorissen:
                        + Implementation of a hydraulic check valve. This is for + issue 1198. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end CheckValve; diff --git a/AixLib/Fluid/FixedResistances/Examples/CheckValve.mo b/AixLib/Fluid/FixedResistances/Examples/CheckValve.mo index 8c76916a6a..c063178277 100644 --- a/AixLib/Fluid/FixedResistances/Examples/CheckValve.mo +++ b/AixLib/Fluid/FixedResistances/Examples/CheckValve.mo @@ -78,20 +78,20 @@ equation connect(checkValve_m_flow.port_b, sin.ports[3]) annotation (Line(points={{10,-40}, {30,-40},{30,-2.66667}}, color={0,127,255})); annotation (experiment(Tolerance=1e-06, StopTime=1), - __Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/FixedResistances/Examples/CheckValve.mos" + __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FixedResistances/Examples/CheckValve.mos" "Simulate and plot"), Documentation(revisions=" -
                        -
                      • -September 16, 2019, by Kristoff Six and Filip Jorissen:
                        -Implementation of a hydraulic check valve. This is for -issue 1198. -
                      • -
                      -", info=" -

                      -Example model for the use of a hydraulic check valve. -

                      -")); +
                        +
                      • + September 16, 2019, by Kristoff Six and Filip Jorissen:
                        + Implementation of a hydraulic check valve. This is for + issue 1198. +
                      • +
                      + ",info=" +

                      + Example model for the use of a hydraulic check valve. +

                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end CheckValve; diff --git a/AixLib/Fluid/FixedResistances/Examples/FlowJunction.mo b/AixLib/Fluid/FixedResistances/Examples/FlowJunction.mo index ef0ce4c4ac..0c72f9a9fe 100644 --- a/AixLib/Fluid/FixedResistances/Examples/FlowJunction.mo +++ b/AixLib/Fluid/FixedResistances/Examples/FlowJunction.mo @@ -95,28 +95,29 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FixedResistances/Examples/FlowJunction.mos" "Simulate and plot"), Documentation(info=" -

                      -This model demonstrates the use of the flow junction model -for different flow directions. -The example is configured such that the flow changes its direction in -each flow leg between t = 0 seconds to t = 100 seconds. -

                      -", revisions=" -
                        -
                      • -November 2, 2017, by Michael Wetter:
                        -Removed import statement. -
                      • -
                      • -October 14, 2017 by Michael Wetter:
                        -Updated documentation and added to Annex 60 library.
                        -This is for -issue 451. -
                      • -
                      • -July 20, 2007 by Michael Wetter:
                        -First implementation. -
                      • -
                      -")); +

                      + This model demonstrates the use of the flow junction model + for different flow directions. + The example is configured such that the flow changes its direction in + each flow leg between t = 0 seconds to t = 100 seconds. +

                      + ",revisions=" +
                        +
                      • + November 2, 2017, by Michael Wetter:
                        + Removed import statement. +
                      • +
                      • + October 14, 2017 by Michael Wetter:
                        + Updated documentation and added to Annex 60 library.
                        + This is for + issue 451. +
                      • +
                      • + July 20, 2007 by Michael Wetter:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end FlowJunction; diff --git a/AixLib/Fluid/FixedResistances/Examples/GenericPipe.mo b/AixLib/Fluid/FixedResistances/Examples/GenericPipe.mo index f5321a2a04..6031306f39 100644 --- a/AixLib/Fluid/FixedResistances/Examples/GenericPipe.mo +++ b/AixLib/Fluid/FixedResistances/Examples/GenericPipe.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.FixedResistances.Examples; +within AixLib.Fluid.FixedResistances.Examples; model GenericPipe extends Modelica.Icons.Example; diff --git a/AixLib/Fluid/FixedResistances/Examples/HydraulicDiameter.mo b/AixLib/Fluid/FixedResistances/Examples/HydraulicDiameter.mo index 5ef86bc44d..8ed1c7c80e 100644 --- a/AixLib/Fluid/FixedResistances/Examples/HydraulicDiameter.mo +++ b/AixLib/Fluid/FixedResistances/Examples/HydraulicDiameter.mo @@ -62,22 +62,23 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FixedResistances/Examples/HydraulicDiameter.mos" "Simulate and plot"), Documentation(info=" -

                      -Example model for a fixed resistance that takes as a parameter the hydraulic diameter. -

                      -", revisions=" -
                        -
                      • -September 21, 2018, by Michael Wetter:
                        -Updated example to add a large diameter pipe, and to use water. -This is for -#1026. -
                      • -
                      • -December 1, 2016, by Michael Wetter:
                        -First implementation for -#480. -
                      • -
                      -")); +

                      + Example model for a fixed resistance that takes as a parameter the hydraulic diameter. +

                      + ",revisions=" +
                        +
                      • + September 21, 2018, by Michael Wetter:
                        + Updated example to add a large diameter pipe, and to use water. + This is for + #1026. +
                      • +
                      • + December 1, 2016, by Michael Wetter:
                        + First implementation for + #480. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end HydraulicDiameter; diff --git a/AixLib/Fluid/FixedResistances/Examples/PlugFlowPipe.mo b/AixLib/Fluid/FixedResistances/Examples/PlugFlowPipe.mo index 66818fa555..aa4bdac249 100644 --- a/AixLib/Fluid/FixedResistances/Examples/PlugFlowPipe.mo +++ b/AixLib/Fluid/FixedResistances/Examples/PlugFlowPipe.mo @@ -3,81 +3,143 @@ model PlugFlowPipe "Simple example of plug flow pipe" extends Modelica.Icons.Example; replaceable package Medium = AixLib.Media.Water "Medium in the pipe" annotation ( choicesAllMatching=true); + + final parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=3 + "Mass flow rate"; + Modelica.Blocks.Sources.Ramp Tin( height=20, duration=0, offset=273.15 + 50, startTime=100) "Ramp pressure signal" - annotation (Placement(transformation(extent={{-92,-6},{-72,14}}))); + annotation (Placement(transformation(extent={{-100,-10},{-80,10}}))); Sources.Boundary_pT sin( redeclare package Medium = Medium, T=273.15 + 10, - nPorts=1, + nPorts=2, p(displayUnit="Pa") = 101325) "Pressure boundary condition" - annotation (Placement(transformation(extent={{82,-10},{62,10}}))); + annotation (Placement(transformation(extent={{100,-10},{80,10}}))); AixLib.Fluid.FixedResistances.PlugFlowPipe pip( redeclare package Medium = Medium, - nPorts=1, dh=0.1, length=100, dIns=0.05, kIns=0.028, - m_flow_nominal=1, + m_flow_nominal=m_flow_nominal, cPip=500, thickness=0.0032, initDelay=true, - m_flow_start=1, + m_flow_start=m_flow_nominal, rhoPip=8000, T_start_in=323.15, T_start_out=323.15) "Pipe" - annotation (Placement(transformation(extent={{0,-10},{20,10}}))); - Modelica.Thermal.HeatTransfer.Sources.FixedTemperature bou(T=283.15) + annotation (Placement(transformation(extent={{0,10},{20,30}}))); + Modelica.Thermal.HeatTransfer.Sources.FixedTemperature bou[2](each T=283.15) "Boundary temperature" annotation (Placement(transformation(extent={{-40,60},{-20,80}}))); AixLib.Fluid.Sources.MassFlowSource_T sou( - nPorts=1, redeclare package Medium = Medium, use_T_in=true, - m_flow=3) "Flow source" - annotation (Placement(transformation(extent={{-60,-10},{-40,10}}))); + m_flow=m_flow_nominal, + nPorts=1) "Flow source" + annotation (Placement(transformation(extent={{-60,10},{-40,30}}))); AixLib.Fluid.Sensors.TemperatureTwoPort senTemOut( redeclare package Medium = Medium, - m_flow_nominal=1, + m_flow_nominal=m_flow_nominal, + tau=0, T_start=323.15) "Temperature sensor" - annotation (Placement(transformation(extent={{30,-10},{50,10}}))); + annotation (Placement(transformation(extent={{40,10},{60,30}}))); AixLib.Fluid.Sensors.TemperatureTwoPort senTemIn( redeclare package Medium = Medium, - m_flow_nominal=1, + m_flow_nominal=m_flow_nominal, + tau=0, T_start=323.15) "Temperature sensor" - annotation (Placement(transformation(extent={{-30,-10},{-10,10}}))); + annotation (Placement(transformation(extent={{-30,10},{-10,30}}))); + Sensors.TemperatureTwoPort senTemInNoMix( + redeclare package Medium = Medium, + m_flow_nominal=m_flow_nominal, + tau=0, + T_start=323.15) "Temperature sensor" + annotation (Placement(transformation(extent={{-30,-30},{-10,-10}}))); + AixLib.Fluid.FixedResistances.PlugFlowPipe pipNoMix( + have_pipCap=false, + redeclare package Medium = Medium, + dh=0.1, + length=100, + dIns=0.05, + kIns=0.028, + m_flow_nominal=m_flow_nominal, + cPip=500, + thickness=0.0032, + initDelay=true, + m_flow_start=m_flow_nominal, + rhoPip=8000, + T_start_in=323.15, + T_start_out=323.15) "Pipe" + annotation (Placement(transformation(extent={{0,-30},{20,-10}}))); + Sensors.TemperatureTwoPort senTemOutNoMix( + redeclare package Medium = Medium, + m_flow_nominal=m_flow_nominal, + tau=0, + T_start=323.15) "Temperature sensor" + annotation (Placement(transformation(extent={{40,-30},{60,-10}}))); + Sources.MassFlowSource_T souNoMix( + redeclare package Medium = Medium, + use_T_in=true, + m_flow=m_flow_nominal, + nPorts=1) "Flow source" + annotation (Placement(transformation(extent={{-60,-30},{-40,-10}}))); equation - connect(bou.port, pip.heatPort) - annotation (Line(points={{-20,70},{10,70},{10,10}}, color={191,0,0})); connect(Tin.y, sou.T_in) - annotation (Line(points={{-71,4},{-62,4}}, color={0,0,127})); - connect(pip.ports_b[1], senTemOut.port_a) - annotation (Line(points={{20,0},{30,0}}, color={0,127,255})); + annotation (Line(points={{-79,0},{-68,0},{-68,24},{-62,24}}, + color={0,0,127})); + connect(pip.port_b, senTemOut.port_a) + annotation (Line(points={{20,20},{40,20}}, + color={0,127,255})); connect(senTemOut.port_b, sin.ports[1]) - annotation (Line(points={{50,0},{62,0}}, color={0,127,255})); - connect(sou.ports[1], senTemIn.port_a) - annotation (Line(points={{-40,0},{-30,0}}, color={0,127,255})); + annotation (Line(points={{60,20},{76,20},{76,-1},{80,-1}}, + color={0,127,255})); connect(senTemIn.port_b, pip.port_a) - annotation (Line(points={{-10,0},{0,0}}, color={0,127,255})); + annotation (Line(points={{-10,20},{0,20}}, + color={0,127,255})); + connect(senTemInNoMix.port_b, pipNoMix.port_a) + annotation (Line(points={{-10,-20},{0,-20}}, color={0,127,255})); + connect(pipNoMix.port_b, senTemOutNoMix.port_a) + annotation (Line(points={{20,-20},{40,-20}}, color={0,127,255})); + connect(senTemOutNoMix.port_b, sin.ports[2]) annotation (Line(points={{60,-20}, + {76,-20},{76,1},{80,1}}, color={0,127,255})); + connect(bou[1].port, pip.heatPort) + annotation (Line(points={{-20,70},{-4,70},{-4,40},{10,40},{10,30}}, + color={191,0,0})); + connect(bou[2].port, pipNoMix.heatPort) annotation (Line(points={{-20,70},{-4, + 70},{-4,0},{10,0},{10,-10}}, color={191,0,0})); + connect(sou.ports[1], senTemIn.port_a) annotation (Line(points={{-40,20},{-30, + 20}}, color={0,127,255})); + connect(souNoMix.ports[1], senTemInNoMix.port_a) + annotation (Line(points={{-40,-20},{-30,-20}}, color={0,127,255})); + connect(Tin.y, souNoMix.T_in) annotation (Line(points={{-79,0},{-68,0},{-68, + -16},{-62,-16}}, + color={0,0,127})); annotation ( - __Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/FixedResistances/Examples/PlugFlowPipe.mos" + __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FixedResistances/Examples/PlugFlowPipe.mos" "Simulate and Plot"), experiment(StopTime=1000, Tolerance=1e-006), Documentation(info=" -

                      Basic test of model - -AixLib.Fluid.FixedResistances.PlugFlowPipe. -This test includes an inlet temperature step under a constant mass flow rate. -

                      -", revisions=" -
                        -
                      • September 8, 2017 by Bram van der Heijde
                        First implementation
                      • -
                      -")); +

                      Basic test of model + + AixLib.Fluid.FixedResistances.PlugFlowPipe with and without outlet mixing volume. + This test includes an inlet temperature step under a constant mass flow rate. +

                      + ",revisions=" +
                        +
                      • July 27, 2021 by Baptiste Ravache
                        Add case without mixing volume
                      • +
                      +
                        +
                      • September 8, 2017 by Bram van der Heijde
                        First implementation
                      • +
                      + "), + Diagram(coordinateSystem(extent={{-120,-100},{120,100}})), + Icon(coordinateSystem(extent={{-100,-100},{100,100}})), + __Dymola_LockedEditing="Model from IBPSA"); end PlugFlowPipe; diff --git a/AixLib/Fluid/FixedResistances/Examples/PlugFlowPipeDiscretized.mo b/AixLib/Fluid/FixedResistances/Examples/PlugFlowPipeDiscretized.mo new file mode 100644 index 0000000000..40f75969da --- /dev/null +++ b/AixLib/Fluid/FixedResistances/Examples/PlugFlowPipeDiscretized.mo @@ -0,0 +1,87 @@ +within AixLib.Fluid.FixedResistances.Examples; +model PlugFlowPipeDiscretized "Simple example of discretized plug flow pipe" + extends Modelica.Icons.Example; + replaceable package Medium = AixLib.Media.Water "Medium in the pipe" annotation ( + choicesAllMatching=true); + + parameter Integer nSeg=10 "Number of pipe segments"; + + Modelica.Blocks.Sources.Ramp Tin( + height=20, + duration=0, + offset=273.15 + 50, + startTime=100) "Ramp pressure signal" + annotation (Placement(transformation(extent={{-92,-6},{-72,14}}))); + Sources.Boundary_pT sin( + redeclare package Medium = Medium, + T=273.15 + 10, + nPorts=1, + p(displayUnit="Pa") = 101325) "Pressure boundary condition" + annotation (Placement(transformation(extent={{82,-10},{62,10}}))); + AixLib.Fluid.FixedResistances.PlugFlowPipeDiscretized pip( + redeclare package Medium = Medium, + nSeg=nSeg, + dh=0.1, + totLen=100, + dIns=0.05, + kIns=0.028, + m_flow_nominal=10, + thickness=0.0032, + initDelay=true, + T_start_in=fill(323.15, nSeg)) "Pipe segments" + annotation (Placement(transformation(extent={{0,-10},{20,10}}))); + Modelica.Thermal.HeatTransfer.Sources.FixedTemperature + bou[nSeg](T={283.15 + 2 * i for i in 1:nSeg}) + "Boundary temperature" + annotation (Placement(transformation(extent={{-40,60},{-20,80}}))); + AixLib.Fluid.Sources.MassFlowSource_T sou( + nPorts=1, + redeclare package Medium = Medium, + use_T_in=true, + m_flow=10) + "Flow source" + annotation (Placement(transformation(extent={{-60,-10},{-40,10}}))); + + AixLib.Fluid.Sensors.TemperatureTwoPort senTemOut( + redeclare package Medium = Medium, + m_flow_nominal=1, + T_start=323.15) "Temperature sensor" + annotation (Placement(transformation(extent={{30,-10},{50,10}}))); + AixLib.Fluid.Sensors.TemperatureTwoPort senTemIn( + redeclare package Medium = Medium, + m_flow_nominal=1, + T_start=323.15) "Temperature sensor" + annotation (Placement(transformation(extent={{-30,-10},{-10,10}}))); +equation + connect(Tin.y, sou.T_in) + annotation (Line(points={{-71,4},{-62,4}}, color={0,0,127})); + connect(senTemOut.port_b, sin.ports[1]) + annotation (Line(points={{50,0},{62,0}}, color={0,127,255})); + connect(sou.ports[1], senTemIn.port_a) + annotation (Line(points={{-40,0},{-30,0}}, color={0,127,255})); + connect(senTemIn.port_b, pip.port_a) + annotation (Line(points={{-10,0},{0,0}}, color={0,127,255})); + connect(bou.port, pip.heatPorts) + annotation (Line(points={{-20,70},{10,70},{10,10}}, color={191,0,0})); + connect(pip.port_b, senTemOut.port_a) + annotation (Line(points={{20,0},{30,0}}, color={0,127,255})); + annotation ( + __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FixedResistances/Examples/PlugFlowPipeDiscretized.mos" + "Simulate and Plot"), + experiment(StopTime=1000, Tolerance=1e-006), + Documentation(info=" +

                      Basic test of model + + AixLib.Fluid.FixedResistances.PlugFlowPipeDiscretized. + This test includes an inlet temperature step under a constant mass flow rate. +

                      + ",revisions=" +
                        +
                      • + July 9, 2021, by Baptiste Ravache:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); +end PlugFlowPipeDiscretized; diff --git a/AixLib/Fluid/FixedResistances/Examples/PressureDrop.mo b/AixLib/Fluid/FixedResistances/Examples/PressureDrop.mo index 90001809a4..3a2dfc66ed 100644 --- a/AixLib/Fluid/FixedResistances/Examples/PressureDrop.mo +++ b/AixLib/Fluid/FixedResistances/Examples/PressureDrop.mo @@ -48,17 +48,18 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FixedResistances/Examples/PressureDrop.mos" "Simulate and plot"), Documentation(info=" -

                      -Example model for a fixed resistance that takes as a parameter the -pressure drop at nominal condition. -

                      -", revisions=" -
                        -
                      • -December 1, 2016, by Michael Wetter:
                        -First implementation for -#480. -
                      • -
                      -")); +

                      + Example model for a fixed resistance that takes as a parameter the + pressure drop at nominal condition. +

                      + ",revisions=" +
                        +
                      • + December 1, 2016, by Michael Wetter:
                        + First implementation for + #480. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end PressureDrop; diff --git a/AixLib/Fluid/FixedResistances/Examples/SimplePipe.mo b/AixLib/Fluid/FixedResistances/Examples/SimplePipe.mo index 26d2e2f34b..2480198155 100644 --- a/AixLib/Fluid/FixedResistances/Examples/SimplePipe.mo +++ b/AixLib/Fluid/FixedResistances/Examples/SimplePipe.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.FixedResistances.Examples; +within AixLib.Fluid.FixedResistances.Examples; model SimplePipe extends Modelica.Icons.Example; @@ -30,7 +30,7 @@ model SimplePipe nNodes=4, dh=0.028, length=10, - lambda=400, + lambda=0.035, thickness=0.001, T_start=323.15, m_flow_nominal=0.5, @@ -63,8 +63,8 @@ equation annotation (Line(points={{40,0},{68,0}}, color={0,127,255})); connect(Tin.y, Source.T_in) annotation (Line(points={{-81,4},{-70,4}}, color={0,0,127})); - connect(simplePipe.heatPorts, fixedTemp.port) annotation (Line(points={{0,5.2}, - {-4,5.2},{-4,38},{-20,38},{-20,50}}, color={127,0,0})); + connect(simplePipe.heatPorts, fixedTemp.port) annotation (Line(points={{0,5.2},{0,50},{-20,50}}, + color={127,0,0})); annotation (Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-100, -100},{100,100}})), Documentation(info="

                      Overview diff --git a/AixLib/Fluid/FixedResistances/Examples/package.order b/AixLib/Fluid/FixedResistances/Examples/package.order index eec7d9be04..8cc73e0487 100644 --- a/AixLib/Fluid/FixedResistances/Examples/package.order +++ b/AixLib/Fluid/FixedResistances/Examples/package.order @@ -5,5 +5,6 @@ GenericPipe HydraulicDiameter Pipe PlugFlowPipe +PlugFlowPipeDiscretized PressureDrop SimplePipe diff --git a/AixLib/Fluid/FixedResistances/GenericPipe.mo b/AixLib/Fluid/FixedResistances/GenericPipe.mo index 46f23092f3..1a6f079d21 100644 --- a/AixLib/Fluid/FixedResistances/GenericPipe.mo +++ b/AixLib/Fluid/FixedResistances/GenericPipe.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.FixedResistances; +within AixLib.Fluid.FixedResistances; model GenericPipe "Pipe model that includes several selectable pipe models" @@ -12,7 +12,7 @@ model GenericPipe AixLib.DataBase.Pipes.Copper.Copper_6x1() "Pipe type" annotation (choicesAllMatching=true, Dialog(group="Parameters")); - parameter Modelica.SIunits.Length length(min=0) "Pipe length"; + parameter Modelica.Units.SI.Length length(min=0) "Pipe length"; parameter Boolean withInsulation=true "Pipe with or without insulation" annotation (Dialog(group="Heat Transfer"),choices(checkBox=true)); @@ -22,10 +22,11 @@ model GenericPipe parameter Boolean withConvection=true "convectional heat transfer" annotation (Dialog(group="Heat Transfer"),choices(checkBox=true)); - parameter Modelica.SIunits.CoefficientOfHeatTransfer hCon=4 - "Convection heat transfer coeffient" annotation (choicesAllMatching=true, Dialog(enable=withConvection==true,group="Heat Transfer")); + parameter Modelica.Units.SI.CoefficientOfHeatTransfer hCon=4 + "Convection heat transfer coeffient" annotation (choicesAllMatching=true, + Dialog(enable=withConvection == true, group="Heat Transfer")); - parameter Modelica.SIunits.MassFlowRate m_flow_nominal(min=0) + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal(min=0) "Nominal mass flow rate" annotation (Dialog(group="Nominal condition")); // Advanced @@ -34,9 +35,9 @@ model GenericPipe parameter Real ReC=2300 "Reynolds number where transition to turbulent starts" annotation (Dialog(tab="Advanced")); - parameter Modelica.SIunits.Height roughness=2.5e-5 + parameter Modelica.Units.SI.Height roughness=2.5e-5 "Average height of surface asperities (default: smooth steel pipe)" - annotation (Dialog(tab="Advanced")); + annotation (Dialog(tab="Advanced")); parameter Integer nNodes=3 "Spatial segmentation for SimplePipe" annotation (Dialog(tab="Advanced", enable=pipeModel=="SimplePipe")); // Assumptions @@ -48,7 +49,7 @@ model GenericPipe annotation (Evaluate=true, Dialog(tab="Dynamics", group="Equations")); // Initialization - parameter Modelica.SIunits.Temperature T_start=Medium.T_default + parameter Modelica.Units.SI.Temperature T_start=Medium.T_default "Initialization temperature at pipe inlet" annotation (Dialog(tab="Initialization")); @@ -67,7 +68,7 @@ model GenericPipe final thickness=(parameterPipe.d_o - parameterPipe.d_i)/2, final T_start_in=T_start, final T_start_out=T_start, - final fac=fac, nPorts=1) if pipeModel == "PlugFlowPipe" + final fac=fac) if pipeModel == "PlugFlowPipe" annotation (Placement(transformation(extent={{-10,-70},{10,-50}}))); SimplePipe simplePipe( redeclare final package Medium = Medium, @@ -89,8 +90,8 @@ model GenericPipe final massDynamics=massDynamics) if pipeModel == "SimplePipe" annotation (Placement(transformation(extent={{-10,-30},{10,-10}}))); Modelica.Thermal.HeatTransfer.Components.ThermalCollector thermalCollector( - final m=nNodes) if - pipeModel == "SimplePipe" + final m=nNodes) + if pipeModel == "SimplePipe" annotation (Placement(transformation(extent={{-10,-10},{10,10}}, rotation=180, origin={0,14}))); @@ -115,13 +116,13 @@ model GenericPipe rotation=270, origin={0,70}))); - Modelica.Thermal.HeatTransfer.Components.ThermalCollector thermalPassthroughInsulation(final m=1) if - not withInsulation annotation (Placement(transformation( + Modelica.Thermal.HeatTransfer.Components.ThermalCollector thermalPassthroughInsulation(final m=1) + if not withInsulation annotation (Placement(transformation( extent={{-10,-10},{10,10}}, rotation=180, origin={-32,42}))); - Modelica.Thermal.HeatTransfer.Components.ThermalCollector thermalPassthroughConvection(final m=1) if - not withConvection annotation (Placement(transformation( + Modelica.Thermal.HeatTransfer.Components.ThermalCollector thermalPassthroughConvection(final m=1) + if not withConvection annotation (Placement(transformation( extent={{-10,-10},{10,10}}, rotation=180, origin={-32,70}))); @@ -146,7 +147,7 @@ equation points={{-10,-60},{-80,-60},{-80,0},{-100,0}}, color={0,127,255}, pattern=LinePattern.Dash)); - connect(plugFlowPipe.ports_b[1], port_b) annotation (Line( + connect(plugFlowPipe.port_b, port_b) annotation (Line( points={{10,-60},{80,-60},{80,0},{100,0}}, color={0,127,255}, pattern=LinePattern.Dash)); diff --git a/AixLib/Fluid/FixedResistances/HydraulicDiameter.mo b/AixLib/Fluid/FixedResistances/HydraulicDiameter.mo index 582d9efa89..8e2f0513d0 100644 --- a/AixLib/Fluid/FixedResistances/HydraulicDiameter.mo +++ b/AixLib/Fluid/FixedResistances/HydraulicDiameter.mo @@ -4,43 +4,46 @@ model HydraulicDiameter "Fixed flow resistance with hydraulic diameter and m_flo final deltaM = eta_default*dh/4*Modelica.Constants.pi*ReC/m_flow_nominal_pos, final dp_nominal=fac*dpStraightPipe_nominal); - parameter Modelica.SIunits.Length dh=sqrt(4*m_flow_nominal/rho_default/v_nominal/Modelica.Constants.pi) + parameter Modelica.Units.SI.Length dh=sqrt(4*m_flow_nominal/rho_default/ + v_nominal/Modelica.Constants.pi) "Hydraulic diameter (assuming a round cross section area)"; - parameter Modelica.SIunits.Length length "Length of the pipe"; + parameter Modelica.Units.SI.Length length "Length of the pipe"; parameter Real ReC(min=0)=4000 - "Reynolds number where transition to turbulent starts"; + "Reynolds number where transition to turbulence starts"; - parameter Modelica.SIunits.Velocity v_nominal = if rho_default < 500 then 1.5 else 0.15 + parameter Modelica.Units.SI.Velocity v_nominal=if rho_default < 500 then 1.5 + else 0.15 "Velocity at m_flow_nominal (used to compute default value for hydraulic diameter dh)" - annotation(Dialog(group="Nominal condition")); + annotation (Dialog(group="Nominal condition")); - parameter Modelica.SIunits.Length roughness(min=0) = 2.5e-5 + parameter Modelica.Units.SI.Length roughness(min=0) = 2.5e-5 "Absolute roughness of pipe, with a default for a smooth steel pipe (dummy if use_roughness = false)"; parameter Real fac(min=1) = 2 "Factor to take into account resistance of bends etc., fac=dp_nominal/dpStraightPipe_nominal"; - final parameter Modelica.SIunits.PressureDifference dpStraightPipe_nominal(displayUnit="Pa")= - Modelica.Fluid.Pipes.BaseClasses.WallFriction.Detailed.pressureLoss_m_flow( - m_flow=m_flow_nominal, - rho_a=rho_default, - rho_b=rho_default, - mu_a=mu_default, - mu_b=mu_default, - length=length, - diameter=dh, - roughness=roughness, - m_flow_small=m_flow_small) + final parameter Modelica.Units.SI.PressureDifference dpStraightPipe_nominal( + displayUnit="Pa")= + Modelica.Fluid.Pipes.BaseClasses.WallFriction.Detailed.pressureLoss_m_flow( + m_flow=m_flow_nominal, + rho_a=rho_default, + rho_b=rho_default, + mu_a=mu_default, + mu_b=mu_default, + length=length, + diameter=dh, + roughness=roughness, + m_flow_small=m_flow_small) "Pressure loss of a straight pipe at m_flow_nominal"; - Modelica.SIunits.Velocity v = m_flow/(rho_default*ARound) + Modelica.Units.SI.Velocity v=m_flow/(rho_default*ARound) "Flow velocity (assuming a round cross section area)"; protected - parameter Modelica.SIunits.Area ARound = dh^2*Modelica.Constants.pi/4 - "Cross sectional area (assuming a round cross section area)"; + parameter Modelica.Units.SI.Area ARound=dh^2*Modelica.Constants.pi/4 + "Cross sectional area (assuming a round cross section area)"; parameter Medium.ThermodynamicState state_default= Medium.setState_pTX( @@ -48,140 +51,147 @@ protected p=Medium.p_default, X=Medium.X_default[1:Medium.nXi]) "Default state"; - parameter Modelica.SIunits.Density rho_default = Medium.density(state_default) + parameter Modelica.Units.SI.Density rho_default=Medium.density(state_default) "Density at nominal condition"; - parameter Modelica.SIunits.DynamicViscosity mu_default = Medium.dynamicViscosity( - state_default) + parameter Modelica.Units.SI.DynamicViscosity mu_default= + Medium.dynamicViscosity(state_default) "Dynamic viscosity at nominal condition"; annotation (defaultComponentName="res", Documentation(info=" -

                      -This is a model of a flow resistance with a fixed flow coefficient. -The mass flow rate is computed as -

                      -

                      -ṁ = k -√ΔP, -

                      -

                      -where -k is a constant and -ΔP is the pressure drop. -The constant k is equal to -k=m_flow_nominal/sqrt(dp_nominal), -where m_flow_nominal is a parameter. -

                      -

                      Assumptions

                      -

                      -In the region -abs(m_flow) < m_flow_turbulent, -the square root is replaced by a differentiable function -with finite slope. -The value of m_flow_turbulent is -computed as -m_flow_turbulent = eta_nominal*dh/4*π*ReC, -where -eta_nominal is the dynamic viscosity, obtained from -the medium model. The parameter -dh is the hydraulic diameter and -ReC=4000 is the critical Reynolds number, which both -can be set by the user. -

                      -

                      Important parameters

                      -

                      -By default, the pressure drop at nominal flow rate is computed as -

                      -
                      -dp_nominal = fac * dpStraightPipe_nominal,
                      -
                      -

                      -where dpStraightPipe_nominal is a parameter that is automatically computed -based on the -nominal mass flow rate, hydraulic diameter, pipe roughness and medium properties. -The hydraulic diameter dh is by default -computed based on the flow velocity v_nominal and the nominal -mass flow rate m_flow_nominal. Hence, users should change the -default values of dh or v_nominal -if they are not applicable for their model. -

                      -

                      -The factor fac takes into account additional resistances such as -for bends. The default value of 2 can be changed by the user. -

                      -

                      -The parameter from_dp is used to determine -whether the mass flow rate is computed as a function of the -pressure drop (if from_dp=true), or vice versa. -This setting can affect the size of the nonlinear system of equations. -

                      -

                      -If the parameter linearized is set to true, -then the pressure drop is computed as a linear function of the -mass flow rate. -

                      -

                      -Setting allowFlowReversal=false can lead to simpler -equations. However, this should only be set to false -if one can guarantee that the flow never reverses its direction. -This can be difficult to guarantee, as pressure imbalance after -the initialization, or due to medium expansion and contraction, -can lead to reverse flow. -

                      -

                      -If the parameter -show_T is set to true, -then the model will compute the -temperature at its ports. Note that this can lead to state events -when the mass flow rate approaches zero, -which can increase computing time. -

                      -

                      Notes

                      -

                      -For more detailed models that compute the actual flow friction, -models from the package - -Modelica.Fluid -can be used and combined with models from the -AixLib library. -

                      -

                      -For a model that uses dp_nominal as a parameter rather than -geoemetric data, use - -AixLib.Fluid.FixedResistances.PressureDrop. -

                      -

                      Implementation

                      -

                      -The pressure drop is computed by calling a function in the package - -AixLib.Fluid.BaseClasses.FlowModels, -This package contains regularized implementations of the equation -

                      -

                      - m = sign(Δp) k √ Δp   -

                      -

                      -and its inverse function. -

                      -

                      -To decouple the energy equation from the mass equations, -the pressure drop is a function of the mass flow rate, -and not the volume flow rate. -This leads to simpler equations. -

                      -", revisions=" -
                        -
                      • -December 1, 2016, by Michael Wetter:
                        -First implementation for -#480. -
                      • -
                      -"), +

                      + This is a model of a flow resistance with a fixed flow coefficient. + The mass flow rate is computed as +

                      +

                      + ṁ = k + √ΔP, +

                      +

                      + where + k is a constant and + ΔP is the pressure drop. + The constant k is equal to + k=m_flow_nominal/sqrt(dp_nominal), + where m_flow_nominal is a parameter. +

                      +

                      Assumptions

                      +

                      + In the region + abs(m_flow) < m_flow_turbulent, + the square root is replaced by a differentiable function + with finite slope. + The value of m_flow_turbulent is + computed as + m_flow_turbulent = eta_nominal*dh/4*π*ReC, + where + eta_nominal is the dynamic viscosity, obtained from + the medium model. The parameter + dh is the hydraulic diameter and + ReC=4000 is the critical Reynolds number, which both + can be set by the user. +

                      +

                      Important parameters

                      +

                      + By default, the pressure drop at nominal flow rate is computed as +

                      +
                      + dp_nominal = fac * dpStraightPipe_nominal,
                      + 
                      +

                      + where dpStraightPipe_nominal is a parameter that is automatically computed + based on the + nominal mass flow rate, hydraulic diameter, pipe roughness and medium properties. + The hydraulic diameter dh is by default + computed based on the flow velocity v_nominal and the nominal + mass flow rate m_flow_nominal. Hence, users should change the + default values of dh or v_nominal + if they are not applicable for their model. +

                      +

                      + The factor fac takes into account additional resistances such as + for bends. The default value of 2 can be changed by the user. +

                      +

                      + The parameter from_dp is used to determine + whether the mass flow rate is computed as a function of the + pressure drop (if from_dp=true), or vice versa. + This setting can affect the size of the nonlinear system of equations. +

                      +

                      + If the parameter linearized is set to true, + then the pressure drop is computed as a linear function of the + mass flow rate. +

                      +

                      + Setting allowFlowReversal=false can lead to simpler + equations. However, this should only be set to false + if one can guarantee that the flow never reverses its direction. + This can be difficult to guarantee, as pressure imbalance after + the initialization, or due to medium expansion and contraction, + can lead to reverse flow. +

                      +

                      + If the parameter + show_T is set to true, + then the model will compute the + temperature at its ports. Note that this can lead to state events + when the mass flow rate approaches zero, + which can increase computing time. +

                      +

                      Notes

                      +

                      + For more detailed models that compute the actual flow friction, + models from the package + + Modelica.Fluid + can be used and combined with models from the + AixLib library. +

                      +

                      + For a model that uses dp_nominal as a parameter rather than + geoemetric data, use + + AixLib.Fluid.FixedResistances.PressureDrop. +

                      +

                      Implementation

                      +

                      + The pressure drop is computed by calling a function in the package + + AixLib.Fluid.BaseClasses.FlowModels, + This package contains regularized implementations of the equation +

                      +

                      + m = sign(Δp) k √ Δp   +

                      +

                      + and its inverse function. +

                      +

                      + To decouple the energy equation from the mass equations, + the pressure drop is a function of the mass flow rate, + and not the volume flow rate. + This leads to simpler equations. +

                      + ",revisions=" +
                        +
                      • + September 21, 2021, by Michael Wetter:
                        + Corrected typo in comments.
                        + This is for + #1525. +
                      • +
                      • + December 1, 2016, by Michael Wetter:
                        + First implementation for + #480. +
                      • +
                      + "), Icon(graphics={Text( extent={{-40,18},{38,-20}}, - lineColor={255,255,255}, - textString="dh")})); + textColor={255,255,255}, + textString="dh")}), + __Dymola_LockedEditing="Model from IBPSA"); end HydraulicDiameter; diff --git a/AixLib/Fluid/FixedResistances/HydraulicResistance.mo b/AixLib/Fluid/FixedResistances/HydraulicResistance.mo index 05ffb7983d..934f257b23 100644 --- a/AixLib/Fluid/FixedResistances/HydraulicResistance.mo +++ b/AixLib/Fluid/FixedResistances/HydraulicResistance.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.FixedResistances; +within AixLib.Fluid.FixedResistances; model HydraulicResistance "Simple model for a hydraulic resistance using a pressure loss factor" extends AixLib.Fluid.BaseClasses.PartialResistance( @@ -13,8 +13,8 @@ model HydraulicResistance parameter Real zeta(min=0, unit="") "Pressure loss factor for flow of port_a -> port_b"; - parameter Modelica.SIunits.Diameter diameter "Diameter of component"; - parameter Modelica.SIunits.PressureDifference dp_start(displayUnit="Pa") = 0 + parameter Modelica.Units.SI.Diameter diameter "Diameter of component"; + parameter Modelica.Units.SI.PressureDifference dp_start(displayUnit="Pa") = 0 "Guess value of dp = port_a.p - port_b.p" annotation (Dialog(tab="Advanced")); parameter Medium.MassFlowRate m_flow_start=0 @@ -27,15 +27,15 @@ protected D=diameter, zeta=zeta) "Calculate loss coefficient based on diameter and zeta"; - parameter Modelica.SIunits.PressureDifference dp_small=1E-4*abs(dp_nominal) + parameter Modelica.Units.SI.PressureDifference dp_small=1E-4*abs(dp_nominal) "Small pressure difference for regularization of zero pressure difference"; - parameter Modelica.SIunits.Density rho_default=Medium.density_pTX( + parameter Modelica.Units.SI.Density rho_default=Medium.density_pTX( p=Medium.p_default, T=Medium.T_default, X=Medium.X_default[1:Medium.nXi]) "Density at nominal condition"; - Modelica.SIunits.Density rho_a "Density of the fluid at port_a"; - Modelica.SIunits.Density rho_b "Density of the fluid at port_b"; + Modelica.Units.SI.Density rho_a "Density of the fluid at port_a"; + Modelica.Units.SI.Density rho_b "Density of the fluid at port_b"; initial equation assert(m_flow_nominal_pos > 0, diff --git a/AixLib/Fluid/FixedResistances/Junction.mo b/AixLib/Fluid/FixedResistances/Junction.mo index df05e1206b..a6d4663f67 100644 --- a/AixLib/Fluid/FixedResistances/Junction.mo +++ b/AixLib/Fluid/FixedResistances/Junction.mo @@ -29,13 +29,13 @@ model Junction constant Boolean homotopyInitialization = true "= true, use homotopy method" annotation(HideResult=true); - parameter Modelica.SIunits.MassFlowRate[3] m_flow_nominal + parameter Modelica.Units.SI.MassFlowRate[3] m_flow_nominal "Mass flow rate. Set negative at outflowing ports." - annotation(Dialog(group = "Nominal condition")); + annotation (Dialog(group="Nominal condition")); - parameter Modelica.SIunits.Pressure[3] dp_nominal(each displayUnit = "Pa") + parameter Modelica.Units.SI.Pressure[3] dp_nominal(each displayUnit="Pa") "Pressure drop at nominal mass flow rate, set to zero or negative number at outflowing ports." - annotation(Dialog(group = "Nominal condition")); + annotation (Dialog(group="Nominal condition")); parameter Real deltaM(min=0) = 0.3 "Fraction of nominal mass flow rate where transition to turbulent occurs" @@ -67,7 +67,7 @@ initial equation fillColor={0,128,255}), Text( extent={{-151,142},{149,102}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="%name"), Rectangle( extent=DynamicSelect({{-100,10},{-100,10}}, {{-100,10},{-100+100*min(1, max(0, port_1.m_flow*3/(abs(m_flow_nominal[1])+abs(m_flow_nominal[2])+abs(m_flow_nominal[3])))),-10}}), @@ -112,113 +112,114 @@ initial equation fillPattern=FillPattern.Solid)}), defaultComponentName="jun", Documentation(info=" -

                      -Model of a flow junction with an optional fixed resistance in each flow leg -and an optional mixing volume at the junction. -

                      -

                      -The pressure drop is implemented using the model - -AixLib.Fluid.FixedResistances.PressureDrop. -If its nominal pressure drop is set to zero, then the pressure drop -model will be removed. -For example, the pressure drop declaration -

                      -
                      -  m_flow_nominal={ 0.1, 0.1,  -0.2},
                      -  dp_nominal =   {500,    0, -6000}
                      -
                      -

                      -would model a flow mixer that has the nominal flow rates and associated pressure drops -as shown in the figure below. Note that port_3 is set to negative values. -The negative values indicate that at the nominal conditions, fluid is leaving the component. -

                      -

                      -\"image\" -

                      -

                      -If -energyDynamics <> Modelica.Fluid.Types.Dynamics.SteadyState, -then at the flow junction, a fluid volume is modeled. -The fluid volume is implemented using the model - -AixLib.Fluid.Delays.DelayFirstOrder. -The fluid volume has the size -

                      -
                      -  V = sum(abs(m_flow_nominal[:])/3)*tau/rho_nominal
                      -
                      -

                      -where tau is a parameter and rho_nominal is the density -of the medium in the volume at nominal condition. -Setting energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial -can help reducing the size of the nonlinear -system of equations. -

                      -", revisions=" -
                        -
                      • -April 14, 2020, by Michael Wetter:
                        -Changed homotopyInitialization to a constant.
                        -This is for -AixLib, #1341. -
                      • -
                      • -February 26, 2020, by Michael Wetter:
                        -Changed icon to display its operating state.
                        -This is for -#1294. -
                      • -
                      • -March 26, 2018 by Filip Jorissen:
                        -Removed final allowFlowReversal=true from all resistances -since this overrides the default simplification when the flow -is not bidirectional. -This change can lead to smaller algebraic loops. -This is for -issue 898. -
                      • -
                      • -December 1, 2016, by Michael Wetter:
                        -Renamed model from SplitterFixedResistanceDpM to -FlowJunction and removed the parameters -use_dh, dh and ReC.
                        -This is for -issue 451. -
                      • -
                      • -October 14, 2016 by Michael Wetter:
                        -Added to Annex 60 library.
                        -Updated comment for parameter use_dh.
                        -This is for -issue 451. -
                      • -
                      • -Removed parameter dynamicBalance that overwrote the setting -of energyDynamics and massDynamics. -This is for - -Annex 60, issue 411. -
                      • -
                      • -February 1, 2012 by Michael Wetter:
                        -Expanded documentation. -
                      • -
                      • -August 4, 2011 by Michael Wetter:
                        -Added final allowFlowReversal=true to all resistances since it is impractical -to avoid flow reversal in large flow networks where such a setting may be useful. -
                      • -
                      • -June 11, 2008 by Michael Wetter:
                        -Based class on - -AixLib.Fluid.BaseClasses.PartialThreeWayFixedResistance. -
                      • -
                      • -July 20, 2007 by Michael Wetter:
                        -First implementation. -
                      • -
                      -")); +

                      + Model of a flow junction with an optional fixed resistance in each flow leg + and an optional mixing volume at the junction. +

                      +

                      + The pressure drop is implemented using the model + + AixLib.Fluid.FixedResistances.PressureDrop. + If its nominal pressure drop is set to zero, then the pressure drop + model will be removed. + For example, the pressure drop declaration +

                      +
                      +   m_flow_nominal={ 0.1, 0.1,  -0.2},
                      +   dp_nominal =   {500,    0, -6000}
                      + 
                      +

                      + would model a flow mixer that has the nominal flow rates and associated pressure drops + as shown in the figure below. Note that port_3 is set to negative values. + The negative values indicate that at the nominal conditions, fluid is leaving the component. +

                      +

                      + \"image\" +

                      +

                      + If + energyDynamics <> Modelica.Fluid.Types.Dynamics.SteadyState, + then at the flow junction, a fluid volume is modeled. + The fluid volume is implemented using the model + + AixLib.Fluid.Delays.DelayFirstOrder. + The fluid volume has the size +

                      +
                      +   V = sum(abs(m_flow_nominal[:])/3)*tau/rho_nominal
                      + 
                      +

                      + where tau is a parameter and rho_nominal is the density + of the medium in the volume at nominal condition. + Setting energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial + can help reducing the size of the nonlinear + system of equations. +

                      + ",revisions=" +
                        +
                      • + April 14, 2020, by Michael Wetter:
                        + Changed homotopyInitialization to a constant.
                        + This is for + IBPSA, #1341. +
                      • +
                      • + February 26, 2020, by Michael Wetter:
                        + Changed icon to display its operating state.
                        + This is for + #1294. +
                      • +
                      • + March 26, 2018 by Filip Jorissen:
                        + Removed final allowFlowReversal=true from all resistances + since this overrides the default simplification when the flow + is not bidirectional. + This change can lead to smaller algebraic loops. + This is for + issue 898. +
                      • +
                      • + December 1, 2016, by Michael Wetter:
                        + Renamed model from SplitterFixedResistanceDpM to + FlowJunction and removed the parameters + use_dh, dh and ReC.
                        + This is for + issue 451. +
                      • +
                      • + October 14, 2016 by Michael Wetter:
                        + Added to Annex 60 library.
                        + Updated comment for parameter use_dh.
                        + This is for + issue 451. +
                      • +
                      • + Removed parameter dynamicBalance that overwrote the setting + of energyDynamics and massDynamics. + This is for + + Annex 60, issue 411. +
                      • +
                      • + February 1, 2012 by Michael Wetter:
                        + Expanded documentation. +
                      • +
                      • + August 4, 2011 by Michael Wetter:
                        + Added final allowFlowReversal=true to all resistances since it is impractical + to avoid flow reversal in large flow networks where such a setting may be useful. +
                      • +
                      • + June 11, 2008 by Michael Wetter:
                        + Based class on + + AixLib.Fluid.BaseClasses.PartialThreeWayFixedResistance. +
                      • +
                      • + July 20, 2007 by Michael Wetter:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end Junction; diff --git a/AixLib/Fluid/FixedResistances/LosslessPipe.mo b/AixLib/Fluid/FixedResistances/LosslessPipe.mo index 2c3ee7df15..3d11ebe74c 100644 --- a/AixLib/Fluid/FixedResistances/LosslessPipe.mo +++ b/AixLib/Fluid/FixedResistances/LosslessPipe.mo @@ -31,31 +31,32 @@ equation fillColor={217,236,255})}), defaultComponentName="pip", Documentation(info=" -

                      -Model of a pipe with no flow resistance, no heat loss and no transport delay. -This model can be used to replace a replaceable pipe model -in flow legs in which no friction should be modeled. -This is for example done in the outlet port of the -base class for three way valves, - -AixLib.Fluid.Actuators.BaseClasses.PartialThreeWayValve. -

                      -", +

                      + Model of a pipe with no flow resistance, no heat loss and no transport delay. + This model can be used to replace a replaceable pipe model + in flow legs in which no friction should be modeled. + This is for example done in the outlet port of the + base class for three way valves, + + AixLib.Fluid.Actuators.BaseClasses.PartialThreeWayValve. +

                      + ", revisions=" -
                        -
                      • -June 23, 2018, by Filip Jorissen:
                        -Implementation is now more efficient for allowFlowReversal=false. -See #949. -
                      • -
                      • -October 8, 2013, by Michael Wetter:
                        -Removed parameter show_V_flow. -
                      • -
                      • -June 13, 2008 by Michael Wetter:
                        -First implementation. -
                      • -
                      -")); +
                        +
                      • + June 23, 2018, by Filip Jorissen:
                        + Implementation is now more efficient for allowFlowReversal=false. + See #949. +
                      • +
                      • + October 8, 2013, by Michael Wetter:
                        + Removed parameter show_V_flow. +
                      • +
                      • + June 13, 2008 by Michael Wetter:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end LosslessPipe; diff --git a/AixLib/Fluid/FixedResistances/Pipe.mo b/AixLib/Fluid/FixedResistances/Pipe.mo index 91a87edaa0..d1f9c1f037 100644 --- a/AixLib/Fluid/FixedResistances/Pipe.mo +++ b/AixLib/Fluid/FixedResistances/Pipe.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.FixedResistances; +within AixLib.Fluid.FixedResistances; model Pipe "Discretized DynamicPipe with heat loss to ambient" extends Interfaces.PartialTwoPort; import Modelica.Fluid.Types.ModelStructure; @@ -8,21 +8,23 @@ model Pipe "Discretized DynamicPipe with heat loss to ambient" parameter Integer nParallel = 1 "Number of identical parallel pipes" annotation(Dialog(group = "Geometry")); - parameter Modelica.SIunits.Length length=1 "Length" - annotation(Dialog(group = "Geometry")); + parameter Modelica.Units.SI.Length length=1 "Length" + annotation (Dialog(group="Geometry")); parameter Boolean isCircular = true "=true if cross sectional area is circular" annotation(Dialog(group = "Geometry")); - parameter Modelica.SIunits.Diameter diameter=parameterPipe.d_i - "Diameter of circular pipe" annotation(Dialog, enable = isCircular); - parameter Modelica.SIunits.Area crossArea=Modelica.Constants.pi* - diameter*diameter/4 "Inner cross section area" annotation(Dialog(group = "Geometry")); - parameter Modelica.SIunits.Length perimeter=Modelica.Constants.pi* - diameter "Inner perimeter" annotation(Dialog(group = "Geometry")); - parameter Modelica.SIunits.Height roughness=2.5e-5 - "Average height of surface asperities (default: smooth steel pipe)" annotation(Dialog(group = "Geometry")); + parameter Modelica.Units.SI.Diameter diameter=parameterPipe.d_i + "Diameter of circular pipe" annotation (Dialog, enable=isCircular); + parameter Modelica.Units.SI.Area crossArea=Modelica.Constants.pi*diameter* + diameter/4 "Inner cross section area" + annotation (Dialog(group="Geometry")); + parameter Modelica.Units.SI.Length perimeter=Modelica.Constants.pi*diameter + "Inner perimeter" annotation (Dialog(group="Geometry")); + parameter Modelica.Units.SI.Height roughness=2.5e-5 + "Average height of surface asperities (default: smooth steel pipe)" + annotation (Dialog(group="Geometry")); - parameter Modelica.SIunits.Length height_ab=0 - "Height(port_b)-Height(port_a)" annotation(Dialog(group = "Static head")); + parameter Modelica.Units.SI.Length height_ab=0 + "Height(port_b)-Height(port_a)" annotation (Dialog(group="Static head")); replaceable model FlowModel = Modelica.Fluid.Pipes.BaseClasses.FlowModels.DetailedPipeFlow @@ -53,7 +55,8 @@ model Pipe "Discretized DynamicPipe with heat loss to ambient" constrainedby Modelica.Fluid.Pipes.BaseClasses.HeatTransfer.PartialFlowHeatTransfer "Wall heat transfer" annotation (Dialog(tab="Heat transfer",enable=use_HeatTransfer),choicesAllMatching=true); - parameter Modelica.SIunits.CoefficientOfHeatTransfer hCon_i=1000 "Heat tranfer coefficient from fluid to pipe wall"; + parameter Modelica.Units.SI.CoefficientOfHeatTransfer hCon_i=1000 + "Heat tranfer coefficient from fluid to pipe wall"; parameter AixLib.DataBase.Pipes.PipeBaseDataDefinition parameterPipe= AixLib.DataBase.Pipes.Copper.Copper_6x1() "Pipe type" annotation (choicesAllMatching=true, Dialog(tab="Heat transfer")); @@ -61,8 +64,9 @@ model Pipe "Discretized DynamicPipe with heat loss to ambient" AixLib.DataBase.Pipes.Insulation.Iso50pc() "Insulation Type" annotation (choicesAllMatching=true, Dialog(tab="Heat transfer")); - parameter Modelica.SIunits.CoefficientOfHeatTransfer hCon=8 "Heat transfer coefficient to ambient" - annotation (Dialog(tab="Heat transfer", enable=Heat_Loss_To_Ambient)); + parameter Modelica.Units.SI.CoefficientOfHeatTransfer hCon=8 + "Heat transfer coefficient to ambient" + annotation (Dialog(tab="Heat transfer", enable=Heat_Loss_To_Ambient)); Utilities.HeatTransfer.CylindricHeatTransfer PipeWall[nNodes]( rho=fill(parameterPipe.d, nNodes), c=fill(parameterPipe.c, nNodes), @@ -83,7 +87,7 @@ model Pipe "Discretized DynamicPipe with heat loss to ambient" lambda=fill(parameterIso.lambda, nNodes), T0=fill(T_start, nNodes), rho=fill(parameterIso.d, nNodes), - each nParallel=nParallel) if withInsulation + each nParallel=nParallel) if withInsulation annotation (Placement(transformation(extent={{-20,-8},{0,12}}))); Modelica.Fluid.Pipes.DynamicPipe pipe( @@ -115,7 +119,8 @@ model Pipe "Discretized DynamicPipe with heat loss to ambient" useLumpedPressure=useLumpedPressure, useInnerPortProperties=useInnerPortProperties, redeclare model HeatTransfer = - Modelica.Fluid.Pipes.BaseClasses.HeatTransfer.ConstantFlowHeatTransfer ( alpha0=hCon_i)) + Modelica.Fluid.Pipes.BaseClasses.HeatTransfer.ConstantFlowHeatTransfer + ( alpha0=hCon_i)) annotation (Placement(transformation(extent={{-20,-46},{0,-26}}))); // Parameter Tab "Initialisation" @@ -173,26 +178,26 @@ protected public AixLib.Utilities.HeatTransfer.HeatConv heatConv[nNodes](hCon=fill(hCon, nNodes), A= - Modelica.Constants.pi*PipeWall.d_out*length/nNodes*nParallel) if - Heat_Loss_To_Ambient and not withInsulation and not isEmbedded "Convection from pipe wall" + Modelica.Constants.pi*PipeWall.d_out*length/nNodes*nParallel) + if Heat_Loss_To_Ambient and not withInsulation and not isEmbedded "Convection from pipe wall" annotation (Placement(transformation( extent={{-10,-10},{10,10}}, rotation=270, origin={24,26}))); AixLib.Utilities.HeatTransfer.HeatConv heatConv_withInsulation[nNodes](hCon=fill(hCon, nNodes), A= - Modelica.Constants.pi*Insulation.d_out*length/nNodes*nParallel) if - (Heat_Loss_To_Ambient and withInsulation and not isEmbedded) "Convection from insulation" + Modelica.Constants.pi*Insulation.d_out*length/nNodes*nParallel) + if (Heat_Loss_To_Ambient and withInsulation and not isEmbedded) "Convection from insulation" annotation (Placement(transformation( extent={{-10,-10},{10,10}}, rotation=270, origin={50,26}))); - Utilities.HeatTransfer.HeatToRad twoStar_RadEx[nNodes](eps=fill(eps, nNodes), A=Modelica.Constants.pi*PipeWall.d_out*length/nNodes*nParallel) if - Heat_Loss_To_Ambient and not isEmbedded "Radiation" annotation (Placement(transformation( + Utilities.HeatTransfer.HeatToRad twoStar_RadEx[nNodes](eps=fill(eps, nNodes), A=Modelica.Constants.pi*PipeWall.d_out*length/nNodes*nParallel) + if Heat_Loss_To_Ambient and not isEmbedded "Radiation" annotation (Placement(transformation( extent={{-10,-10},{10,10}}, rotation=90, origin={-58,28}))); -parameter Modelica.SIunits.Emissivity eps = 0.8 "Emissivity" - annotation (Dialog(tab="Heat transfer", enable = Heat_Loss_To_Ambient)); + parameter Modelica.Units.SI.Emissivity eps=0.8 "Emissivity" + annotation (Dialog(tab="Heat transfer", enable=Heat_Loss_To_Ambient)); Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a heatPort_outside annotation (Placement(transformation(extent={{26,72}, {46,92}}), iconTransformation(extent={{6,46},{26,66}}))); @@ -203,8 +208,8 @@ parameter Modelica.SIunits.Emissivity eps = 0.8 "Emissivity" origin={36,58}))); AixLib.Utilities.Interfaces.RadPort Star if Heat_Loss_To_Ambient and not isEmbedded annotation (Placement(transformation(extent={{-70,74},{-50,94}}), iconTransformation(extent={{-24,46},{-4,66}}))); - Modelica.Thermal.HeatTransfer.Components.ThermalCollector thermalCollector_Star(m=nNodes) if - Heat_Loss_To_Ambient and not isEmbedded annotation (Placement(transformation(extent={{-10,-10},{10,10}}, + Modelica.Thermal.HeatTransfer.Components.ThermalCollector thermalCollector_Star(m=nNodes) + if Heat_Loss_To_Ambient and not isEmbedded annotation (Placement(transformation(extent={{-10,-10},{10,10}}, rotation=180, origin={-60,58}))); protected diff --git a/AixLib/Fluid/FixedResistances/PlugFlowPipe.mo b/AixLib/Fluid/FixedResistances/PlugFlowPipe.mo index b4b47c869a..a391701fa2 100644 --- a/AixLib/Fluid/FixedResistances/PlugFlowPipe.mo +++ b/AixLib/Fluid/FixedResistances/PlugFlowPipe.mo @@ -1,175 +1,19 @@ within AixLib.Fluid.FixedResistances; model PlugFlowPipe "Pipe model using spatialDistribution for temperature delay" - extends AixLib.Fluid.Interfaces.PartialTwoPortVector; + extends AixLib.Fluid.FixedResistances.BaseClasses.PlugFlowPipe( + redeclare final AixLib.Fluid.FixedResistances.HydraulicDiameter res( + final dh=dh, + final from_dp=from_dp, + final length=length, + final roughness=roughness, + final fac=fac, + final ReC=ReC, + final v_nominal=v_nominal, + final homotopyInitialization=homotopyInitialization, + final linearized=linearized, + dp(nominal=fac*200*length))); - constant Boolean homotopyInitialization = true "= true, use homotopy method" - annotation(HideResult=true); - - parameter Boolean from_dp=false - "= true, use m_flow = f(dp) else dp = f(m_flow)" - annotation (Dialog(tab="Advanced")); - - parameter Modelica.SIunits.Length dh=sqrt(4*m_flow_nominal/rho_default/v_nominal/Modelica.Constants.pi) - "Hydraulic diameter (assuming a round cross section area)" - annotation (Dialog(group="Material")); - - parameter Modelica.SIunits.Velocity v_nominal = 1.5 - "Velocity at m_flow_nominal (used to compute default value for hydraulic diameter dh)" - annotation(Dialog(group="Nominal condition")); - - parameter Real ReC=4000 - "Reynolds number where transition to turbulent starts"; - - parameter Modelica.SIunits.Height roughness=2.5e-5 - "Average height of surface asperities (default: smooth steel pipe)" - annotation (Dialog(group="Material")); - - parameter Modelica.SIunits.Length length "Pipe length" - annotation (Dialog(group="Material")); - - parameter Modelica.SIunits.MassFlowRate m_flow_nominal - "Nominal mass flow rate" annotation (Dialog(group="Nominal condition")); - - parameter Modelica.SIunits.MassFlowRate m_flow_small = 1E-4*abs( - m_flow_nominal) "Small mass flow rate for regularization of zero flow" - annotation (Dialog(tab="Advanced")); - - parameter Modelica.SIunits.Length dIns - "Thickness of pipe insulation, used to compute R" - annotation (Dialog(group="Thermal resistance")); - - parameter Modelica.SIunits.ThermalConductivity kIns - "Heat conductivity of pipe insulation, used to compute R" - annotation (Dialog(group="Thermal resistance")); - - parameter Modelica.SIunits.SpecificHeatCapacity cPip=2300 - "Specific heat of pipe wall material. 2300 for PE, 500 for steel" - annotation (Dialog(group="Material")); - - parameter Modelica.SIunits.Density rhoPip(displayUnit="kg/m3")=930 - "Density of pipe wall material. 930 for PE, 8000 for steel" - annotation (Dialog(group="Material")); - - parameter Modelica.SIunits.Length thickness = 0.0035 - "Pipe wall thickness" - annotation (Dialog(group="Material")); - - parameter Modelica.SIunits.Temperature T_start_in(start=Medium.T_default)= - Medium.T_default "Initialization temperature at pipe inlet" - annotation (Dialog(tab="Initialization")); - parameter Modelica.SIunits.Temperature T_start_out(start=Medium.T_default)= - T_start_in "Initialization temperature at pipe outlet" - annotation (Dialog(tab="Initialization")); - parameter Boolean initDelay(start=false) = false - "Initialize delay for a constant mass flow rate if true, otherwise start from 0" - annotation (Dialog(tab="Initialization")); - parameter Modelica.SIunits.MassFlowRate m_flow_start=0 "Initial value of mass flow rate through pipe" - annotation (Dialog(tab="Initialization", enable=initDelay)); - - parameter Real R(unit="(m.K)/W")=1/(kIns*2*Modelica.Constants.pi/ - Modelica.Math.log((dh/2 + thickness + dIns)/(dh/2 + thickness))) - "Thermal resistance per unit length from fluid to boundary temperature" - annotation (Dialog(group="Thermal resistance")); - - parameter Real fac=1 - "Factor to take into account flow resistance of bends etc., fac=dp_nominal/dpStraightPipe_nominal"; - - parameter Boolean linearized = false - "= true, use linear relation between m_flow and dp for any flow rate" - annotation(Evaluate=true, Dialog(tab="Advanced")); - - Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a heatPort - "Heat transfer to or from surroundings (heat loss from pipe results in a positive heat flow)" - annotation (Placement(transformation(extent={{-10,90},{10,110}}))); - - AixLib.Fluid.FixedResistances.BaseClasses.PlugFlowCore cor( - redeclare final package Medium = Medium, - final dh=dh, - final v_nominal=v_nominal, - final length=length, - final C=C, - final R=R, - final m_flow_small=m_flow_small, - final m_flow_nominal=m_flow_nominal, - final T_start_in=T_start_in, - final T_start_out=T_start_out, - final m_flow_start=m_flow_start, - final initDelay=initDelay, - final from_dp=from_dp, - final fac=fac, - final ReC=ReC, - final thickness=thickness, - final roughness=roughness, - final allowFlowReversal=allowFlowReversal, - final homotopyInitialization=homotopyInitialization, - final linearized=linearized) - "Describing the pipe behavior" - annotation (Placement(transformation(extent={{-10,-10},{10,10}}))); - - // In the volume, below, we scale down V and use - // mSenFac. Otherwise, for air, we would get very large volumes - // which affect the delay of water vapor and contaminants. - // See also AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.TransportWaterAir - // for why mSenFac is 10 and not 1000, as this gives more reasonable - // temperature step response - Fluid.MixingVolumes.MixingVolume vol( - redeclare final package Medium = Medium, - final m_flow_nominal=m_flow_nominal, - final V=if rho_default > 500 then VEqu else VEqu/1000, - final nPorts=nPorts + 1, - final T_start=T_start_out, - final energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, - final mSenFac = if rho_default > 500 then 1 else 10) - "Control volume connected to ports_b. Represents equivalent pipe wall thermal capacity." - annotation (Placement(transformation(extent={{60,20},{80,40}}))); - -protected - parameter Modelica.SIunits.HeatCapacity CPip= - length*((dh + 2*thickness)^2 - dh^2)*Modelica.Constants.pi/4*cPip*rhoPip "Heat capacity of pipe wall"; - - final parameter Modelica.SIunits.Volume VEqu=CPip/(rho_default*cp_default) - "Equivalent water volume to represent pipe wall thermal inertia"; - - parameter Medium.ThermodynamicState sta_default=Medium.setState_pTX( - T=Medium.T_default, - p=Medium.p_default, - X=Medium.X_default) "Default medium state"; - - parameter Modelica.SIunits.SpecificHeatCapacity cp_default= - Medium.specificHeatCapacityCp(state=sta_default) - "Heat capacity of medium"; - - parameter Real C(unit="J/(K.m)")= - rho_default*Modelica.Constants.pi*(dh/2)^2*cp_default - "Thermal capacity per unit length of water in pipe"; - - parameter Modelica.SIunits.Density rho_default=Medium.density_pTX( - p=Medium.p_default, - T=Medium.T_default, - X=Medium.X_default) - "Default density (e.g., rho_liquidWater = 995, rho_air = 1.2)" - annotation (Dialog(group="Advanced")); - -initial equation - assert(homotopyInitialization, "In " + getInstanceName() + - ": The constant homotopyInitialization has been modified from its default value. This constant will be removed in future releases.", - level = AssertionLevel.warning); - -equation - for i in 1:nPorts loop - connect(vol.ports[i + 1], ports_b[i]) - annotation (Line(points={{70,20},{72,20},{72,6},{72,0},{100,0}}, - color={0,127,255})); - end for; - connect(cor.heatPort, heatPort) - annotation (Line(points={{0,10},{0,10},{0,100}}, color={191,0,0})); - - connect(cor.port_b, vol.ports[1]) - annotation (Line(points={{10,0},{70,0},{70,20}}, color={0,127,255})); - - connect(cor.port_a, port_a) - annotation (Line(points={{-10,0},{-56,0},{-100,0}}, color={0,127,255})); annotation ( Line(points={{70,20},{72,20},{72,0},{100,0}}, color={0,127,255}), Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{ @@ -208,109 +52,126 @@ equation fillPattern=FillPattern.HorizontalCylinder, fillColor={215,202,187}), Text( - extent={{-100,-72},{100,-88}}, - lineColor={0,0,0}, - textString="L = %length -d = %dh")}), + extent={{-102,-76},{98,-104}}, + textColor={0,0,0}, + textString="d = %dh"), + Text( + extent={{-100,-56},{100,-74}}, + textColor={0,0,0}, + textString="L = %length")}), Documentation(revisions=" -
                        -
                      • -April 14, 2020, by Michael Wetter:
                        -Changed homotopyInitialization to a constant.
                        -This is for -AixLib, #1341. -
                      • -
                      • -March 6, 2020, by Jelger Jansen:
                        -Revised calculation of thermal resistance R -by using correct radiuses. -See #1310. -
                      • -
                      • -October 23, 2017, by Michael Wetter:
                        -Revised variable names and documentation to follow guidelines. -Corrected malformed hyperlinks. -
                      • -
                      • -July 4, 2016 by Bram van der Heijde:
                        -Introduce pipVol. -
                      • -
                      • -October 10, 2015 by Marcus Fuchs:
                        -Copy Icon from KUL implementation and rename model. -Replace resistance and temperature delay by an adiabatic pipe. -
                      • -
                      • September, 2015 by Marcus Fuchs:
                        -First implementation. -
                      • -
                      -", info=" -

                      -Pipe with heat loss using the time delay based heat losses and transport -of the fluid using a plug flow model, applicable for simulation of long -pipes such as in district heating and cooling systems.

                      -

                      -This model takes into account transport delay along the pipe length idealized -as a plug flow. -The model also includes thermal inertia of the pipe wall. -

                      -

                      Implementation

                      -

                      Heat losses are implemented by - -AixLib.Fluid.FixedResistances.BaseClasses.PlugFlowHeatLoss -at each end of the pipe (see - -AixLib.Fluid.FixedResistances.BaseClasses.PlugFlowCore). -Depending on the flow direction, the temperature difference due to heat losses -is subtracted at the right fluid port. -

                      -

                      -The pressure drop is implemented using - -AixLib.Fluid.FixedResistances.HydraulicDiameter. -

                      -

                      -The thermal capacity of the pipe wall is implemented as a mixing volume -of the fluid in the pipe, of which the thermal capacity -is equal to that of the pipe wall material. -In addition, this mixing volume allows the hydraulic separation of subsequent pipes. -Thanks to the vectorized implementation of the (design) outlet port, -splits and junctions of pipes can be handled in a numerically efficient way. -
                      -This mixing volume is not present in the -PlugFlowCore model, -which can be used in cases where mixing volumes at pipe junctions need to -be added manually. -

                      -

                      Assumptions

                      -
                        -
                      • -Heat losses are for steady-state operation. -
                      • -
                      • -The axial heat diffusion in the fluid, the pipe wall and the ground are neglected. -
                      • -
                      • -The boundary temperature is uniform. -
                      • -
                      • -The thermal inertia of the pipe wall material is lumped on the side of the pipe -that is connected to ports_b. -
                      • -
                      -

                      References

                      -

                      -Full details on the model implementation and experimental validation can be found -in: -

                      -

                      -van der Heijde, B., Fuchs, M., Ribas Tugores, C., Schweiger, G., Sartor, K., -Basciotti, D., Müller, D., Nytsch-Geusen, C., Wetter, M. and Helsen, L. -(2017).
                      -Dynamic equation-based thermo-hydraulic pipe model for district heating and -cooling systems.
                      -Energy Conversion and Management, vol. 151, p. 158-169. -doi: -10.1016/j.enconman.2017.08.072.

                      -")); + + ",info=" +

                      + Pipe with heat loss using the time delay based heat losses and transport + of the fluid using a plug flow model, applicable for simulation of long + pipes such as in district heating and cooling systems.

                      +

                      + This model takes into account transport delay along the pipe length idealized + as a plug flow. + The model also includes thermal inertia of the pipe wall. +

                      +

                      Implementation

                      +

                      + The + spatialDistribution operator is used for the temperature wave propagation + through the length of the pipe. This operator is contained in + + AixLib.Fluid.FixedResistances.BaseClasses.PlugFlow. +

                      +

                      + The model + + AixLib.Fluid.FixedResistances.BaseClasses.PlugFlowHeatLoss + implements a heat loss in design direction, but leaves the enthalpy unchanged + in opposite flow direction. Therefore it is used in front of and behind the time delay. +

                      +

                      + The pressure drop is implemented using + + AixLib.Fluid.FixedResistances.HydraulicDiameter. +

                      +

                      + The thermal capacity of the pipe wall is implemented as a mixing volume + of the fluid in the pipe, of which the thermal capacity is equal to that + of the pipe wall material. + In addition, this mixing volume allows the hydraulic separation of subsequent pipes. +
                      + The mixing volume is either split between the inlet and outlet ports + (port_a and port_b) or lumped in at the outlet (port_b) + if have_symmetry is set to false. + This mixing volume can be removed from this model with the Boolean parameter + have_pipCap, in cases where the pipe wall heat capacity + is negligible and a state is not needed at the pipe outlet + (see the note below about numerical Jacobians). +

                      +

                      + Note that in order to model a branched network it is recommended to use + + AixLib.Fluid.FixedResistances.Junction at each junction and to configure + that junction model with a state + (energyDynamics <> Modelica.Fluid.Types.Dynamics.SteadyState), + see for instance + + AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.PlugFlowAIT. + This will avoid the numerical Jacobian that is otherwise created when + the inlet ports of two instances of the plug flow model are connected together. +

                      +

                      Assumptions

                      +
                        +
                      • + Heat losses are for steady-state operation. +
                      • +
                      • + The axial heat diffusion in the fluid, the pipe wall and the ground are neglected. +
                      • +
                      • + The boundary temperature is uniform. +
                      • +
                      • + The thermal inertia of the pipe wall material is lumped on the side of the pipe + that is connected to port_b. +
                      • +
                      +

                      References

                      +

                      + Full details on the model implementation and experimental validation can be found + in: +

                      +

                      + van der Heijde, B., Fuchs, M., Ribas Tugores, C., Schweiger, G., Sartor, K., + Basciotti, D., Müller, D., Nytsch-Geusen, C., Wetter, M. and Helsen, L. + (2017).
                      + Dynamic equation-based thermo-hydraulic pipe model for district heating and + cooling systems.
                      + Energy Conversion and Management, vol. 151, p. 158-169. + doi: + 10.1016/j.enconman.2017.08.072.

                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end PlugFlowPipe; diff --git a/AixLib/Fluid/FixedResistances/PlugFlowPipeDiscretized.mo b/AixLib/Fluid/FixedResistances/PlugFlowPipeDiscretized.mo new file mode 100644 index 0000000000..ce2870ad61 --- /dev/null +++ b/AixLib/Fluid/FixedResistances/PlugFlowPipeDiscretized.mo @@ -0,0 +1,278 @@ +within AixLib.Fluid.FixedResistances; +model PlugFlowPipeDiscretized + "Discretized pipe model using spatialDistribution for temperature delay" + extends AixLib.Fluid.Interfaces.PartialTwoPort; + + constant Boolean homotopyInitialization = true "= true, use homotopy method" + annotation(HideResult=true); + + parameter Integer nSeg(min=1) = 1 "Number of axial segment"; + + parameter Boolean from_dp=false + "= true, use m_flow = f(dp) else dp = f(m_flow)" + annotation (Dialog(tab="Advanced")); + + parameter Boolean have_pipCap=true + "= true, a mixing volume is added to each segment that corresponds + to the heat capacity of the pipe segment wall" + annotation (Dialog(tab="Advanced")); + parameter Boolean have_symmetry=true + "= false, the mixing volume is only on port_b of each segment, + which improve performances, but reduces dynamic accuracy" + annotation (Dialog(tab="Advanced", enable=have_pipCap)); + + parameter Modelica.Units.SI.Length dh "Hydraulic diameter" + annotation (Dialog(group="Material")); + + parameter Real ReC=4000 + "Reynolds number where transition to turbulence starts"; + + parameter Modelica.Units.SI.Height roughness=2.5e-5 + "Average height of surface asperities (default: smooth steel pipe)" + annotation (Dialog(group="Material")); + parameter Modelica.Units.SI.Length totLen=sum(segLen) + "Total pipe length (used to compute segment length)" + annotation (Dialog(group="Material")); + parameter Modelica.Units.SI.Length segLen[nSeg]=fill(totLen/nSeg, nSeg) + "Pipe segment length" annotation (Dialog(group="Material")); + + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal + "Nominal mass flow rate" annotation (Dialog(group="Nominal condition")); + + parameter Modelica.Units.SI.Length dIns + "Thickness of pipe insulation, used to compute R" + annotation (Dialog(group="Thermal resistance")); + parameter Modelica.Units.SI.ThermalConductivity kIns + "Heat conductivity of pipe insulation, used to compute R" + annotation (Dialog(group="Thermal resistance")); + + parameter Modelica.Units.SI.Length thickness=0.0035 "Pipe wall thickness" + annotation (Dialog(group="Material")); + parameter Modelica.Units.SI.SpecificHeatCapacity cPip=2300 + "Specific heat of pipe wall material. 2300 for PE, 500 for steel" + annotation (Dialog(group="Material")); + parameter Modelica.Units.SI.Density rhoPip(displayUnit="kg/m3") = 930 + "Density of pipe wall material. 930 for PE, 8000 for steel" + annotation (Dialog(group="Material")); + + parameter Modelica.Units.SI.Temperature T_start_in[nSeg]=fill(Medium.T_default, + nSeg) "Initialization temperature at pipe inlet" + annotation (Dialog(tab="Initialization")); + parameter Modelica.Units.SI.Temperature T_start_out[nSeg]=T_start_in + "Initialization temperature at pipe outlet" + annotation (Dialog(tab="Initialization")); + parameter Boolean initDelay = false + "Initialize delay for a constant mass flow rate if true, otherwise start from 0" + annotation (Dialog(tab="Initialization")); + parameter Modelica.Units.SI.MassFlowRate m_flow_start=0 + "Initial value of mass flow rate through pipe" + annotation (Dialog(tab="Initialization", enable=initDelay)); + + parameter Real fac=1 + "Factor to take into account flow resistance of bends etc., fac=dp_nominal/dpStraightPipe_nominal"; + + parameter Modelica.Units.SI.MassFlowRate m_flow_small=1E-4*abs(m_flow_nominal) + "Small mass flow rate for regularization of zero flow" + annotation (Dialog(tab="Advanced")); + parameter Boolean linearized = false + "= true, use linear relation between m_flow and dp for any flow rate" + annotation(Evaluate=true, Dialog(tab="Advanced")); + + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a heatPorts[nSeg] + "Heat transfer to or from surrounding for each pipe segment (positive if pipe is colder than surrounding)" + annotation (Placement(transformation(extent={{-10,90},{10,110}}))); + + Modelica.Units.SI.HeatFlowRate QEnv_flow=sum(heatPorts.Q_flow) + "Heat transfer to or from surroundings of total pipe length (positive if pipe is colder than surrounding)"; + + Modelica.Units.SI.PressureDifference dp(displayUnit="Pa") = res.dp + "Pressure difference between port_a and port_b"; + + Modelica.Units.SI.MassFlowRate m_flow=port_a.m_flow + "Mass flow rate from port_a to port_b (m_flow > 0 is design flow direction)"; + + final parameter Modelica.Units.SI.Velocity v_nominal=m_flow_nominal/(APip* + rho_default) "Velocity at m_flow_nominal"; + + Modelica.Units.SI.Velocity v=pipSeg[1].v "Flow velocity of medium in pipe"; + + FixedResistances.HydraulicDiameter res( + redeclare final package Medium = Medium, + final m_flow_nominal=m_flow_nominal, + final dh=dh, + final from_dp=from_dp, + final length=totLen, + final roughness=roughness, + final fac=fac, + final ReC=ReC, + final v_nominal=v_nominal, + final allowFlowReversal=allowFlowReversal, + final show_T=false, + final homotopyInitialization=homotopyInitialization, + final linearized=linearized, + dp(nominal= if rho_default > 500 then totLen * fac * 200 else totLen * fac * 2)) + "Pressure drop calculation for this pipe" + annotation (Placement(transformation(extent={{60,-10},{80,10}}))); + +protected + parameter Modelica.Units.SI.Length rInt=dh/2 "Pipe interior radius"; + + parameter Modelica.Units.SI.Area APip=Modelica.Constants.pi*rInt^2 + "Pipe hydraulic cross-sectional area"; + + parameter Modelica.Units.SI.Density rho_default=Medium.density_pTX( + p=Medium.p_default, + T=Medium.T_default, + X=Medium.X_default) + "Default density (e.g., rho_liquidWater = 995, rho_air = 1.2)"; + + AixLib.Fluid.FixedResistances.BaseClasses.PlugFlowPipe pipSeg[nSeg]( + redeclare each final package Medium = Medium, + redeclare each final FixedResistances.LosslessPipe res, + final length=segLen, + final T_start_in=T_start_in, + final T_start_out=T_start_out, + each final dIns=dIns, + each final kIns=kIns, + each final cPip=cPip, + each final rhoPip=rhoPip, + each final dh=dh, + each final v_nominal=v_nominal, + each final allowFlowReversal=allowFlowReversal, + each final m_flow_nominal=m_flow_nominal, + each final thickness=thickness, + each final m_flow_small=m_flow_small, + each final initDelay=initDelay, + each final have_pipCap=have_pipCap, + each final have_symmetry=have_symmetry) + "Pipe segments" + annotation (Placement(transformation(extent={{-10,-10},{10,10}}))); + +equation + connect(res.port_b, port_b) + annotation (Line(points={{80,0},{100,0}}, color={0,127,255})); + + for i in 2:nSeg loop + connect(pipSeg[i-1].port_b, pipSeg[i].port_a); + end for; + + connect(pipSeg.heatPort, heatPorts) + annotation (Line(points={{0,10},{0,100}}, color={191,0,0})); + connect(pipSeg[nSeg].port_b, res.port_a) + annotation (Line(points={{10,0},{60,0}}, color={0,127,255})); + connect(port_a, pipSeg[1].port_a) + annotation (Line(points={{-100,0},{-10,0}}, color={0,127,255})); + annotation ( + Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{ + 100,100}})), + Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100, + 100}}), graphics={ + Text( + extent={{-100,-72},{100,-88}}, + textColor={0,0,0}, + textString="L[ ] = %segLen d = %dh"), + Rectangle( + extent={{-100,40},{0,-40}}, + lineColor={0,0,0}, + fillPattern=FillPattern.HorizontalCylinder, + fillColor={192,192,192}), + Rectangle( + extent={{-100,30},{0,-30}}, + lineColor={0,0,0}, + fillPattern=FillPattern.HorizontalCylinder, + fillColor={0,127,255}), + Rectangle( + extent={{-100,50},{0,40}}, + lineColor={175,175,175}, + fillColor={255,255,255}, + fillPattern=FillPattern.Backward), + Rectangle( + extent={{-100,-40},{0,-50}}, + lineColor={175,175,175}, + fillColor={255,255,255}, + fillPattern=FillPattern.Backward), + Rectangle( + extent={{-64,30},{-34,-30}}, + lineColor={0,0,0}, + fillPattern=FillPattern.HorizontalCylinder, + fillColor={215,202,187}), + Rectangle( + extent={{0,40},{100,-40}}, + lineColor={0,0,0}, + fillPattern=FillPattern.HorizontalCylinder, + fillColor={192,192,192}), + Rectangle( + extent={{0,30},{100,-30}}, + lineColor={0,0,0}, + fillPattern=FillPattern.HorizontalCylinder, + fillColor={0,127,255}), + Rectangle( + extent={{0,50},{100,40}}, + lineColor={175,175,175}, + fillColor={255,255,255}, + fillPattern=FillPattern.Backward), + Rectangle( + extent={{0,-40},{100,-50}}, + lineColor={175,175,175}, + fillColor={255,255,255}, + fillPattern=FillPattern.Backward), + Rectangle( + extent={{36,30},{66,-30}}, + lineColor={0,0,0}, + fillPattern=FillPattern.HorizontalCylinder, + fillColor={215,202,187}), + Line( + points={{0,60},{0,-60}}, + color={0,0,0}, + thickness=1, + pattern=LinePattern.Dash), + Rectangle( + extent={{-56,58},{-44,46}}, + pattern=LinePattern.None, + lineThickness=1, + fillPattern=FillPattern.Solid, + fillColor={162,29,33}, + lineColor={0,0,0}), + Rectangle( + extent={{44,58},{56,46}}, + pattern=LinePattern.None, + lineThickness=1, + fillPattern=FillPattern.Solid, + fillColor={162,29,33}, + lineColor={0,0,0}), + Line( + points={{-50,52},{-50,70},{50,70},{50,54}}, + color={162,29,33}, + thickness=0.5), + Line( + points={{0,100},{0,70}}, + color={162,29,33}, + thickness=0.5)}), + Documentation(revisions=" +
                        +
                      • + May 17, 2021, by Baptiste Ravache:
                        + First implementation. +
                      • +
                      + ",info=" +

                      + Wrapper around + AixLib.Fluid.FixedResistances.PlugFlowPipe which allows to specify nSeg + successive segments of pipes (connected in series). +

                      +

                      + This wrapper simplifies use-cases where different segments of the same + pipe might have different boundary conditions. This would be the case, + for instance, for sufficiently long stretches of buried pipes. +

                      +

                      + To reduce coupled nonlinear equations, the pipe flow resistance + is aggregated to a single instance of + + AixLib.Fluid.FixedResistances.HydraulicDiameter rather than being + instantiated separately for each segment. +

                      + "), + __Dymola_LockedEditing="Model from IBPSA"); +end PlugFlowPipeDiscretized; diff --git a/AixLib/Fluid/FixedResistances/PressureDrop.mo b/AixLib/Fluid/FixedResistances/PressureDrop.mo index d47aa10642..40b0b1b34b 100644 --- a/AixLib/Fluid/FixedResistances/PressureDrop.mo +++ b/AixLib/Fluid/FixedResistances/PressureDrop.mo @@ -74,184 +74,185 @@ equation annotation (defaultComponentName="res", Documentation(info=" -

                      -Model of a flow resistance with a fixed flow coefficient. -The mass flow rate is -

                      -

                      -ṁ = k -√ΔP, -

                      -

                      -where -k is a constant and -ΔP is the pressure drop. -The constant k is equal to -k=m_flow_nominal/sqrt(dp_nominal), -where m_flow_nominal and dp_nominal -are parameters. -

                      -

                      Assumptions

                      -

                      -In the region -abs(m_flow) < m_flow_turbulent, -the square root is replaced by a differentiable function -with finite slope. -The value of m_flow_turbulent is -computed as -m_flow_turbulent = deltaM * abs(m_flow_nominal), -where deltaM=0.3 and -m_flow_nominal are parameters that can be set by the user. -

                      -

                      -The figure below shows the pressure drop for the parameters -m_flow_nominal=5 kg/s, -dp_nominal=10 Pa and -deltaM=0.3. -

                      -

                      -\"image\" -

                      -

                      Important parameters

                      -

                      -The parameter from_dp is used to determine -whether the mass flow rate is computed as a function of the -pressure drop (if from_dp=true), or vice versa. -This setting can affect the size of the nonlinear system of equations. -

                      -

                      -If the parameter linearized is set to true, -then the pressure drop is computed as a linear function of the -mass flow rate. -

                      -

                      -Setting allowFlowReversal=false can lead to simpler -equations. However, this should only be set to false -if one can guarantee that the flow never reverses its direction. -This can be difficult to guarantee, as pressure imbalance after -the initialization, or due to medium expansion and contraction, -can lead to reverse flow. -

                      -

                      -If the parameter -show_T is set to true, -then the model will compute the -temperature at its ports. Note that this can lead to state events -when the mass flow rate approaches zero, -which can increase computing time. -

                      -

                      Notes

                      -

                      -For more detailed models that compute the actual flow friction, -models from the package - -Modelica.Fluid -can be used and combined with models from the -AixLib library. -

                      -

                      -For a model that uses the hydraulic parameter and flow velocity at nominal conditions -as a parameter, use - -AixLib.Fluid.FixedResistances.HydraulicDiameter. -

                      -

                      Implementation

                      -

                      -The pressure drop is computed by calling a function in the package - -AixLib.Fluid.BaseClasses.FlowModels, -This package contains regularized implementations of the equation -

                      -

                      - m = sign(Δp) k √ Δp   -

                      -

                      -and its inverse function. -

                      -

                      -To decouple the energy equation from the mass equations, -the pressure drop is a function of the mass flow rate, -and not the volume flow rate. -This leads to simpler equations. -

                      -", revisions=" -
                        -
                      • -September 21, 2018, by Michael Wetter:
                        -Decrease value of deltaM(min=...) attribute. -See #1026. -
                      • -
                      • -February 3, 2018, by Filip Jorissen:
                        -Revised implementation of pressure drop equation -such that it depends on from_dp -when linearized=true. -See #884. -
                      • -
                      • -December 1, 2016, by Michael Wetter:
                        -Simplified model by removing the geometry dependent parameters into the new -model - -AixLib.Fluid.FixedResistances.HydraulicDiameter. -
                      • -
                      • -November 23, 2016, by Filip Jorissen:
                        -Removed dp_nominal and -m_flow_nominal labels from icon. -
                      • -
                      • -October 14, 2016, by Michael Wetter:
                        -Updated comment for parameter use_dh. -
                      • -
                      • -November 26, 2014, by Michael Wetter:
                        -Added the required annotation(Evaluate=true) so -that the system of nonlinear equations in - -AixLib.Fluid.FixedResistances.Validation.PressureDropsExplicit -remains the same. -
                      • -
                      • -November 20, 2014, by Michael Wetter:
                        -Rewrote the warning message using an assert with -AssertionLevel.warning -as this is the proper way to write warnings in Modelica. -
                      • -
                      • -August 5, 2014, by Michael Wetter:
                        -Corrected error in documentation of computation of k. -
                      • -
                      • -May 29, 2014, by Michael Wetter:
                        -Removed undesirable annotation Evaluate=true. -
                      • -
                      • -October 8, 2013, by Michael Wetter:
                        -Removed parameter show_V_flow. -
                      • -
                      • -December 14, 2012 by Michael Wetter:
                        -Renamed protected parameters for consistency with the naming conventions. -
                      • -
                      • -January 16, 2012 by Michael Wetter:
                        -To simplify object inheritance tree, revised base classes -AixLib.Fluid.BaseClasses.PartialResistance, -AixLib.Fluid.Actuators.BaseClasses.PartialTwoWayValve, -AixLib.Fluid.Actuators.BaseClasses.PartialDamperExponential, -AixLib.Fluid.Actuators.BaseClasses.PartialActuator -and model -AixLib.Fluid.FixedResistances.PressureDrop. -
                      • -
                      • -May 30, 2008 by Michael Wetter:
                        -Added parameters use_dh and deltaM for easier parameterization. -
                      • -
                      • -July 20, 2007 by Michael Wetter:
                        -First implementation. -
                      • -
                      -")); +

                      + Model of a flow resistance with a fixed flow coefficient. + The mass flow rate is +

                      +

                      + ṁ = k + √ΔP, +

                      +

                      + where + k is a constant and + ΔP is the pressure drop. + The constant k is equal to + k=m_flow_nominal/sqrt(dp_nominal), + where m_flow_nominal and dp_nominal + are parameters. +

                      +

                      Assumptions

                      +

                      + In the region + abs(m_flow) < m_flow_turbulent, + the square root is replaced by a differentiable function + with finite slope. + The value of m_flow_turbulent is + computed as + m_flow_turbulent = deltaM * abs(m_flow_nominal), + where deltaM=0.3 and + m_flow_nominal are parameters that can be set by the user. +

                      +

                      + The figure below shows the pressure drop for the parameters + m_flow_nominal=5 kg/s, + dp_nominal=10 Pa and + deltaM=0.3. +

                      +

                      + \"image\" +

                      +

                      Important parameters

                      +

                      + The parameter from_dp is used to determine + whether the mass flow rate is computed as a function of the + pressure drop (if from_dp=true), or vice versa. + This setting can affect the size of the nonlinear system of equations. +

                      +

                      + If the parameter linearized is set to true, + then the pressure drop is computed as a linear function of the + mass flow rate. +

                      +

                      + Setting allowFlowReversal=false can lead to simpler + equations. However, this should only be set to false + if one can guarantee that the flow never reverses its direction. + This can be difficult to guarantee, as pressure imbalance after + the initialization, or due to medium expansion and contraction, + can lead to reverse flow. +

                      +

                      + If the parameter + show_T is set to true, + then the model will compute the + temperature at its ports. Note that this can lead to state events + when the mass flow rate approaches zero, + which can increase computing time. +

                      +

                      Notes

                      +

                      + For more detailed models that compute the actual flow friction, + models from the package + + Modelica.Fluid + can be used and combined with models from the + AixLib library. +

                      +

                      + For a model that uses the hydraulic parameter and flow velocity at nominal conditions + as a parameter, use + + AixLib.Fluid.FixedResistances.HydraulicDiameter. +

                      +

                      Implementation

                      +

                      + The pressure drop is computed by calling a function in the package + + AixLib.Fluid.BaseClasses.FlowModels, + This package contains regularized implementations of the equation +

                      +

                      + m = sign(Δp) k √ Δp   +

                      +

                      + and its inverse function. +

                      +

                      + To decouple the energy equation from the mass equations, + the pressure drop is a function of the mass flow rate, + and not the volume flow rate. + This leads to simpler equations. +

                      + ",revisions=" +
                        +
                      • + September 21, 2018, by Michael Wetter:
                        + Decrease value of deltaM(min=...) attribute. + See #1026. +
                      • +
                      • + February 3, 2018, by Filip Jorissen:
                        + Revised implementation of pressure drop equation + such that it depends on from_dp + when linearized=true. + See #884. +
                      • +
                      • + December 1, 2016, by Michael Wetter:
                        + Simplified model by removing the geometry dependent parameters into the new + model + + AixLib.Fluid.FixedResistances.HydraulicDiameter. +
                      • +
                      • + November 23, 2016, by Filip Jorissen:
                        + Removed dp_nominal and + m_flow_nominal labels from icon. +
                      • +
                      • + October 14, 2016, by Michael Wetter:
                        + Updated comment for parameter use_dh. +
                      • +
                      • + November 26, 2014, by Michael Wetter:
                        + Added the required annotation(Evaluate=true) so + that the system of nonlinear equations in + + AixLib.Fluid.FixedResistances.Validation.PressureDropsExplicit + remains the same. +
                      • +
                      • + November 20, 2014, by Michael Wetter:
                        + Rewrote the warning message using an assert with + AssertionLevel.warning + as this is the proper way to write warnings in Modelica. +
                      • +
                      • + August 5, 2014, by Michael Wetter:
                        + Corrected error in documentation of computation of k. +
                      • +
                      • + May 29, 2014, by Michael Wetter:
                        + Removed undesirable annotation Evaluate=true. +
                      • +
                      • + October 8, 2013, by Michael Wetter:
                        + Removed parameter show_V_flow. +
                      • +
                      • + December 14, 2012 by Michael Wetter:
                        + Renamed protected parameters for consistency with the naming conventions. +
                      • +
                      • + January 16, 2012 by Michael Wetter:
                        + To simplify object inheritance tree, revised base classes + AixLib.Fluid.BaseClasses.PartialResistance, + AixLib.Fluid.Actuators.BaseClasses.PartialTwoWayValve, + AixLib.Fluid.Actuators.BaseClasses.PartialDamperExponential, + AixLib.Fluid.Actuators.BaseClasses.PartialActuator + and model + AixLib.Fluid.FixedResistances.PressureDrop. +
                      • +
                      • + May 30, 2008 by Michael Wetter:
                        + Added parameters use_dh and deltaM for easier parameterization. +
                      • +
                      • + July 20, 2007 by Michael Wetter:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end PressureDrop; diff --git a/AixLib/Fluid/FixedResistances/SimplePipe.mo b/AixLib/Fluid/FixedResistances/SimplePipe.mo index 980ee33aa9..e9ec245de4 100644 --- a/AixLib/Fluid/FixedResistances/SimplePipe.mo +++ b/AixLib/Fluid/FixedResistances/SimplePipe.mo @@ -1,19 +1,19 @@ -within AixLib.Fluid.FixedResistances; +within AixLib.Fluid.FixedResistances; model SimplePipe "Simple pipe model with n discrete elements" extends AixLib.Fluid.Interfaces.PartialTwoPort; parameter Integer nNodes(min=1) = 2 "Spatial segmentation"; - parameter Modelica.SIunits.Length dh + parameter Modelica.Units.SI.Length dh "Inner/hydraulic diameter (assuming a round cross section area)"; parameter Boolean withHeattransfer=true "True, if heat transfer to ambient" annotation (Dialog(group="Material"), choices(checkBox=true)); - parameter Modelica.SIunits.Length length(min=0) "Pipe length"; + parameter Modelica.Units.SI.Length length(min=0) "Pipe length"; - parameter Modelica.SIunits.MassFlowRate m_flow_small(min=0) = 1E-4*abs( + parameter Modelica.Units.SI.MassFlowRate m_flow_small(min=0) = 1E-4*abs( m_flow_nominal) "Small mass flow rate for regularization of zero flow" annotation (Dialog(tab="Advanced")); @@ -25,30 +25,33 @@ model SimplePipe "Simple pipe model with n discrete elements" "Reynolds number where transition to turbulent starts" annotation (Dialog(group="Material")); - parameter Modelica.SIunits.Height roughness=2.5e-5 + parameter Modelica.Units.SI.Height roughness=2.5e-5 "Average height of surface asperities (default: smooth steel pipe)" annotation (Dialog(group="Material")); // Material for heattransfer - parameter Modelica.SIunits.ThermalConductivity lambda=370 - "Heat conductivity of pipe material" annotation (Dialog(group="Material", enable = withHeattransfer)); - parameter Modelica.SIunits.SpecificHeatCapacity c=1600 - "Specific heat capacity of pipe material" annotation (Dialog(group="Material", enable = withHeattransfer)); - parameter Modelica.SIunits.Density rho=1000 "Density of pipe material" - annotation (Dialog(group="Material", enable = withHeattransfer)); + parameter Modelica.Units.SI.ThermalConductivity lambda=370 + "Heat conductivity of pipe material" + annotation (Dialog(group="Material", enable=withHeattransfer)); + parameter Modelica.Units.SI.SpecificHeatCapacity c=1600 + "Specific heat capacity of pipe material" + annotation (Dialog(group="Material", enable=withHeattransfer)); + parameter Modelica.Units.SI.Density rho=1000 "Density of pipe material" + annotation (Dialog(group="Material", enable=withHeattransfer)); parameter Boolean from_dp=false "= true, use m_flow = f(dp) else dp = f(m_flow)" annotation (Evaluate=true, Dialog(tab="Advanced")); - parameter Modelica.SIunits.Length thickness(min=0)=0.001 "Pipe wall thickness" - annotation (Dialog(group="Material", enable = withHeattransfer)); + parameter Modelica.Units.SI.Length thickness(min=0) = 0.001 + "Pipe wall thickness" + annotation (Dialog(group="Material", enable=withHeattransfer)); - parameter Modelica.SIunits.Temperature T_start=Medium.T_default + parameter Modelica.Units.SI.Temperature T_start=Medium.T_default "Initialization temperature at pipe inlet" annotation (Dialog(tab="Initialization")); - parameter Modelica.SIunits.MassFlowRate m_flow_nominal(min=0) + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal(min=0) "Nominal mass flow rate" annotation (Dialog(group="Nominal condition")); @@ -92,7 +95,7 @@ model SimplePipe "Simple pipe model with n discrete elements" each final T_start=T_start, each final m_flow_nominal=m_flow_nominal, each final allowFlowReversal=allowFlowReversal, - each final V=dh^2*length*Modelica.Constants.pi/4, + each final V=dh^2*length/nNodes*Modelica.Constants.pi/4, each nPorts=2) annotation (Placement(transformation(extent={{10,0},{30,20}}))); Utilities.HeatTransfer.CylindricHeatTransfer PipeWall[nNodes]( each final energyDynamics=energyDynamics, diff --git a/AixLib/Fluid/FixedResistances/Validation/FlowJunctionSteadyState.mo b/AixLib/Fluid/FixedResistances/Validation/FlowJunctionSteadyState.mo index d6b18d51ef..bef098fe32 100644 --- a/AixLib/Fluid/FixedResistances/Validation/FlowJunctionSteadyState.mo +++ b/AixLib/Fluid/FixedResistances/Validation/FlowJunctionSteadyState.mo @@ -92,27 +92,28 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FixedResistances/Validation/FlowJunctionSteadyState.mos" "Simulate and plot"), Documentation(info=" -

                      -This model validates the use of the splitter and mixer model -for different flow directions. -The example is configured such that the flow changes its direction in -each flow leg between t = 0 seconds to t = 100 seconds. -The splitter model has been configured as a steady-state model. -

                      -", revisions=" -
                        -
                      • -January 18, 2017, by Michael Wetter:
                        -Changed spl.m_flow_nominal, boundary condition and enabled sensor dynamics.
                        -This is for -issue 657. -
                      • -
                      • -October 14, 2016, by Michael Wetter:
                        -First implementation.
                        -This is for -issue 451. -
                      • -
                      -")); +

                      + This model validates the use of the splitter and mixer model + for different flow directions. + The example is configured such that the flow changes its direction in + each flow leg between t = 0 seconds to t = 100 seconds. + The splitter model has been configured as a steady-state model. +

                      + ",revisions=" +
                        +
                      • + January 18, 2017, by Michael Wetter:
                        + Changed spl.m_flow_nominal, boundary condition and enabled sensor dynamics.
                        + This is for + issue 657. +
                      • +
                      • + October 14, 2016, by Michael Wetter:
                        + First implementation.
                        + This is for + issue 451. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end FlowJunctionSteadyState; diff --git a/AixLib/Fluid/FixedResistances/Validation/FlowJunctionSteadyStateNoPressureDrop.mo b/AixLib/Fluid/FixedResistances/Validation/FlowJunctionSteadyStateNoPressureDrop.mo index 2ccae0e5ef..b8fc10378d 100644 --- a/AixLib/Fluid/FixedResistances/Validation/FlowJunctionSteadyStateNoPressureDrop.mo +++ b/AixLib/Fluid/FixedResistances/Validation/FlowJunctionSteadyStateNoPressureDrop.mo @@ -88,28 +88,29 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FixedResistances/Validation/FlowJunctionSteadyStateNoPressureDrop.mos" "Simulate and plot"), Documentation(info=" -

                      -This model validates the use of the splitter and mixer model -for different flow directions. -The example is configured such that the flow changes its direction in -each flow leg between t = 0 seconds to t = 100 seconds. -The splitter model has been configured as a steady-state model, -with no flow resistance. -

                      -", revisions=" -
                        -
                      • -January 18, 2017, by Michael Wetter:
                        -Changed spl.m_flow_nominal, boundary condition and enabled sensor dynamics.
                        -This is for -issue 657. -
                      • -
                      • -October 14, 2016, by Michael Wetter:
                        -First implementation.
                        -This is for -issue 451. -
                      • -
                      -")); +

                      + This model validates the use of the splitter and mixer model + for different flow directions. + The example is configured such that the flow changes its direction in + each flow leg between t = 0 seconds to t = 100 seconds. + The splitter model has been configured as a steady-state model, + with no flow resistance. +

                      + ",revisions=" +
                        +
                      • + January 18, 2017, by Michael Wetter:
                        + Changed spl.m_flow_nominal, boundary condition and enabled sensor dynamics.
                        + This is for + issue 657. +
                      • +
                      • + October 14, 2016, by Michael Wetter:
                        + First implementation.
                        + This is for + issue 451. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end FlowJunctionSteadyStateNoPressureDrop; diff --git a/AixLib/Fluid/FixedResistances/Validation/LosslessPipe.mo b/AixLib/Fluid/FixedResistances/Validation/LosslessPipe.mo index 4f438a2644..3a0c0b3f4d 100644 --- a/AixLib/Fluid/FixedResistances/Validation/LosslessPipe.mo +++ b/AixLib/Fluid/FixedResistances/Validation/LosslessPipe.mo @@ -46,16 +46,17 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FixedResistances/Validation/LosslessPipe.mos" "Simulate and plot"), Documentation(info=" -

                      -Validation model for a the pipe model with no friction and no heat loss. -

                      -", revisions=" -
                        -
                      • -December 1, 2016, by Michael Wetter:
                        -First implementation for -#480. -
                      • -
                      -")); +

                      + Validation model for a the pipe model with no friction and no heat loss. +

                      + ",revisions=" +
                        +
                      • + December 1, 2016, by Michael Wetter:
                        + First implementation for + #480. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end LosslessPipe; diff --git a/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/Data/BaseClasses/PipeDataBaseDefinition.mo b/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/Data/BaseClasses/PipeDataBaseDefinition.mo index 6ff8208439..2a28eaaeac 100644 --- a/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/Data/BaseClasses/PipeDataBaseDefinition.mo +++ b/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/Data/BaseClasses/PipeDataBaseDefinition.mo @@ -6,37 +6,38 @@ partial record PipeDataBaseDefinition parameter String filNam "Name of data file"; annotation(Documentation(info=" -

                      -Defines basic record of experimental data with n measured points. -The first column corresponds to time, further columns to measured data. -

                      -", +

                      + Defines basic record of experimental data with n measured points. + The first column corresponds to time, further columns to measured data. +

                      + ", revisions=" -
                        -
                      • -March 7, 2020, by Michael Wetter:
                        -Replaced measured data from specification in Modelica file to external table, -as this reduces the computing time.
                        -This is for - #1289. -
                      • -
                      • -Januar 19, 2016 by Carles Ribas:
                        -Move experiment documentation to the -specific model. Add parameter n to facilitate use of extends clause. -
                      • -
                      • -October 14, 2015 by Kevin Sartor:
                        -Add documentation about the test bench and how is conducted the experiment -
                      • -
                      • -October 12, 2015 by Marcus Fuchs:
                        -Add rudimentary documentation and integrate into experimental pipe package -
                      • -
                      • -October 7, 2015 by Kevin Sartor:
                        -First implementation. -
                      • -
                      -")); +
                        +
                      • + March 7, 2020, by Michael Wetter:
                        + Replaced measured data from specification in Modelica file to external table, + as this reduces the computing time.
                        + This is for + #1289. +
                      • +
                      • + Januar 19, 2016 by Carles Ribas:
                        + Move experiment documentation to the + specific model. Add parameter n to facilitate use of extends clause. +
                      • +
                      • + October 14, 2015 by Kevin Sartor:
                        + Add documentation about the test bench and how is conducted the experiment +
                      • +
                      • + October 12, 2015 by Marcus Fuchs:
                        + Add rudimentary documentation and integrate into experimental pipe package +
                      • +
                      • + October 7, 2015 by Kevin Sartor:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end PipeDataBaseDefinition; diff --git a/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/Data/BaseClasses/PipeDataULg.mo b/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/Data/BaseClasses/PipeDataULg.mo index 8ce823c5a5..84552757ba 100644 --- a/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/Data/BaseClasses/PipeDataULg.mo +++ b/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/Data/BaseClasses/PipeDataULg.mo @@ -1,74 +1,75 @@ -within AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.Data.BaseClasses; +within AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.Data.BaseClasses; partial record PipeDataULg "Base class for ULg experimental data" extends PipeDataBaseDefinition; - parameter Modelica.SIunits.Temp_C T_start_in = 20 + parameter Modelica.Units.NonSI.Temperature_degC T_start_in=20 "Initial temperature at inlet"; - parameter Modelica.SIunits.Temp_C T_start_out = 20 + parameter Modelica.Units.NonSI.Temperature_degC T_start_out=20 "Initial temperature at outlet"; - parameter Modelica.SIunits.MassFlowRate m_flowIni = 0 + parameter Modelica.Units.SI.MassFlowRate m_flowIni=0 "Mass flow initialization"; annotation (Documentation(info=" -

                      -This record contains information of an aproximately 15 minutes long test bench -carried out at the University of Liège. -

                      - -

                      Data structure

                      -

                      Column 1: Time in s

                      -

                      Column 2: Mass flow rate in kg/s

                      -

                      Column 3: Outlet pipe temperature in °C

                      -

                      Column 4: Outlet water temperature in °C

                      -

                      Column 5: Inlet pipe temperature in °C

                      -

                      Column 6: Inlet water temperature in °C

                      - -

                      Test procedure

                      -

                      -Before to perform a test, the water city network is pushed inside -the approximately 39 meter long studied pipe during about 10 minutes -to be sure that it is at the same temperature. -During this time period, valves V3 and V1 are opened, the boiler is off and -the valve V2 is closed. -

                      -

                      -Then, the valve V1 is closed and the valve V2 and V3 are opened. -The boiler is started to reach the setpoint hot water temperature. -When the temperature setpoint is achieved, data starts to be recorded, -the valve V1 is opened and the valve V2 is closed at the same time -to supply the studied pipe in hot water. -After the outlet pipe temperature is stabilized, the boiler is shut off. -

                      -

                      -During the test, the ambient temperature is equal to 18°C and -the mass flow rate is set to 1.245 kg/s.

                      - -

                      Test bench schematic

                      -

                      \"Schematic

                      -

                      Notice: length are approximate

                      - -

                      Pipe characteristics

                      - -
                        -
                      • Metal density about 7800 kg/m3
                      • -
                      • Specific heat capacity about 480 J/kg/K
                      • -
                      • Thickness 3.91 mm (Outer diameter 0.0603 m)
                      • -
                      • Inner diameter: 0.05248 m
                      • -
                      • Roughness is currently neglected
                      • -
                      • Initial temperature of the pipe is considered equal -to the initial temperature of the water (cooling before test) -
                      • -
                      • Heat transfer coefficient between the pipe and the ambient is assumed -at 5 W/m2K (from internal model) due to insulation. -The pipe is insulated by Tubolit 60/13 (13mm of thickness) whose -nominal thermal coefficient is inferior 0.04. -Notice the insulation is quite aged therefore -the nominal thermal coefficient could be higher -
                      • -
                      • -Heat transfer coefficient between water and pipe is a function of -the fluid temperature (determined by EES software). -
                      • -
                      - -")); +

                      + This record contains information of an aproximately 15 minutes long test bench + carried out at the University of Liège. +

                      + +

                      Data structure

                      +

                      Column 1: Time in s

                      +

                      Column 2: Mass flow rate in kg/s

                      +

                      Column 3: Outlet pipe temperature in °C

                      +

                      Column 4: Outlet water temperature in °C

                      +

                      Column 5: Inlet pipe temperature in °C

                      +

                      Column 6: Inlet water temperature in °C

                      + +

                      Test procedure

                      +

                      + Before to perform a test, the water city network is pushed inside + the approximately 39 meter long studied pipe during about 10 minutes + to be sure that it is at the same temperature. + During this time period, valves V3 and V1 are opened, the boiler is off and + the valve V2 is closed. +

                      +

                      + Then, the valve V1 is closed and the valve V2 and V3 are opened. + The boiler is started to reach the setpoint hot water temperature. + When the temperature setpoint is achieved, data starts to be recorded, + the valve V1 is opened and the valve V2 is closed at the same time + to supply the studied pipe in hot water. + After the outlet pipe temperature is stabilized, the boiler is shut off. +

                      +

                      + During the test, the ambient temperature is equal to 18°C and + the mass flow rate is set to 1.245 kg/s.

                      + +

                      Test bench schematic

                      +

                      \"Schematic

                      +

                      Notice: length are approximate

                      + +

                      Pipe characteristics

                      + +
                        +
                      • Metal density about 7800 kg/m3
                      • +
                      • Specific heat capacity about 480 J/kg/K
                      • +
                      • Thickness 3.91 mm (Outer diameter 0.0603 m)
                      • +
                      • Inner diameter: 0.05248 m
                      • +
                      • Roughness is currently neglected
                      • +
                      • Initial temperature of the pipe is considered equal + to the initial temperature of the water (cooling before test) +
                      • +
                      • Heat transfer coefficient between the pipe and the ambient is assumed + at 5 W/m2K (from internal model) due to insulation. + The pipe is insulated by Tubolit 60/13 (13mm of thickness) whose + nominal thermal coefficient is inferior 0.04. + Notice the insulation is quite aged therefore + the nominal thermal coefficient could be higher +
                      • +
                      • + Heat transfer coefficient between water and pipe is a function of + the fluid temperature (determined by EES software). +
                      • +
                      + + "), + __Dymola_LockedEditing="Model from IBPSA"); end PipeDataULg; diff --git a/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/Data/PipeDataAIT151218.mo b/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/Data/PipeDataAIT151218.mo index 6ca40e8069..8120018c35 100644 --- a/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/Data/PipeDataAIT151218.mo +++ b/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/Data/PipeDataAIT151218.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.Data; +within AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.Data; record PipeDataAIT151218 "Experimental data from AIT monitoring data December 18, 2015" extends BaseClasses.PipeDataBaseDefinition( @@ -6,57 +6,58 @@ record PipeDataAIT151218 final filNam = Modelica.Utilities.Files.loadResource( "modelica://AixLib/Resources/Data/Fluid/FixedResistances/Validation/PlugFlowPipes/PipeDataAIT151218.mos")); annotation (Documentation(revisions=" -
                        -
                      • -March 7, 2020, by Michael Wetter:
                        -Replaced measured data from specification in Modelica file to external table, -as this reduces the computing time.
                        -This is for - #1289. -
                      • -
                      • -December 18, 2015 by Daniele Basciotti:
                        -First implementation. -
                      • -
                      -", info=" -

                      Overview

                      -

                      This record contains data of a real disitrict heating network for week-long period (23-29 Januar 2009) monitored by the Austrian Institut for Technology.

                      -

                      Pipes are layed underground - -

                      Data structure

                      -

                      Column 1: Time in s

                      -

                      Column 2: Temperature in point 1 in K

                      -

                      Column 3: Temperature in point 2 in K

                      -

                      Column 4: Temperature in point 3 in K

                      -

                      Column 5: Temperature in point 4 in K

                      -

                      Column 6: Mass flow rate in point 1 in kg/s

                      -

                      Column 7: Mass flow rate in point 2 in kg/s

                      -

                      Column 8: Mass flow rate in point 3 in kg/s

                      -

                      Column 9: Mass flow rate in point 4 in kg/s

                      -

                      Column 10: Outdoor temperature in K

                      - -

                      Test procedure

                      -Information at several points of the district heating network is recorded during a week. - -

                      Test bench schematic

                      -

                      \"Schematic -

                      - -

                      -Notice that length are approximated -

                      - -

                      Pipe characteristics

                      -
                        -
                      • Inner diameter: 0.0825 m (DN080)
                      • -
                      • Outer diameter: 0.0889 m (stell wall thickness 3.2 mm)
                      • -
                      • Casing diameter: 0.18 m
                      • -
                      • Insulation material: Polyurethane
                      • -
                      • Heat conductivity of insulation material: 0.024 W/(m K) (average value at 50 °C)
                      • -
                      • Length specific pipe's heat loss coefficient: 0.208 W/(m K)
                      • -
                      • Wall roughness coefficient: 0.1 mm
                      • -
                      - -")); +
                        +
                      • + March 7, 2020, by Michael Wetter:
                        + Replaced measured data from specification in Modelica file to external table, + as this reduces the computing time.
                        + This is for + #1289. +
                      • +
                      • + December 18, 2015 by Daniele Basciotti:
                        + First implementation. +
                      • +
                      + ",info=" +

                      Overview

                      +

                      This record contains data of a real disitrict heating network for week-long period (23-29 Januar 2009) monitored by the Austrian Institut for Technology.

                      +

                      Pipes are layed underground + +

                      Data structure

                      +

                      Column 1: Time in s

                      +

                      Column 2: Temperature in point 1 in K

                      +

                      Column 3: Temperature in point 2 in K

                      +

                      Column 4: Temperature in point 3 in K

                      +

                      Column 5: Temperature in point 4 in K

                      +

                      Column 6: Mass flow rate in point 1 in kg/s

                      +

                      Column 7: Mass flow rate in point 2 in kg/s

                      +

                      Column 8: Mass flow rate in point 3 in kg/s

                      +

                      Column 9: Mass flow rate in point 4 in kg/s

                      +

                      Column 10: Outdoor temperature in K

                      + +

                      Test procedure

                      + Information at several points of the district heating network is recorded during a week. + +

                      Test bench schematic

                      +

                      \"Schematic +

                      + +

                      + Notice that length are approximated +

                      + +

                      Pipe characteristics

                      +
                        +
                      • Inner diameter: 0.0825 m (DN080)
                      • +
                      • Outer diameter: 0.0889 m (stell wall thickness 3.2 mm)
                      • +
                      • Casing diameter: 0.18 m
                      • +
                      • Insulation material: Polyurethane
                      • +
                      • Heat conductivity of insulation material: 0.024 W/(m K) (average value at 50 °C)
                      • +
                      • Length specific pipe's heat loss coefficient: 0.208 W/(m K)
                      • +
                      • Wall roughness coefficient: 0.1 mm
                      • +
                      + + "), + __Dymola_LockedEditing="Model from IBPSA"); end PipeDataAIT151218; diff --git a/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/Data/PipeDataULg150801.mo b/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/Data/PipeDataULg150801.mo index 8ace4648d5..648d5c6a50 100644 --- a/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/Data/PipeDataULg150801.mo +++ b/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/Data/PipeDataULg150801.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.Data; +within AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.Data; record PipeDataULg150801 "Experimental data from ULg's pipe test bench from August 1" extends AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.Data.BaseClasses.PipeDataULg( @@ -9,34 +9,35 @@ record PipeDataULg150801 final filNam = Modelica.Utilities.Files.loadResource( "modelica://AixLib/Resources/Data/Fluid/FixedResistances/Validation/PlugFlowPipes/PipeDataULg150801.mos")); annotation (Documentation(revisions=" -
                        -
                      • -March 7, 2020, by Michael Wetter:
                        -Replaced measured data from specification in Modelica file to external table, -as this reduces the computing time.
                        -This is for - #1289. -
                      • -
                      • -October 14, 2015 by Kevin Sartor:
                        -Add some information about the test. -
                      • -
                      • -October 12, 2015 by Marcus Fuchs:
                        -Add rudimentary documentation and integrate into experimental pipe package -
                      • -
                      • -October 7, 2015 by Kevin Sartor:
                        -First implementation. -
                      • -
                      -", info=" -

                      -This data record contains the experimental data from the -long test bench carried out at the University of Liège. -See -AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.Data.BaseClasses.PipeDataULg -for more information. -

                      -")); +
                        +
                      • + March 7, 2020, by Michael Wetter:
                        + Replaced measured data from specification in Modelica file to external table, + as this reduces the computing time.
                        + This is for + #1289. +
                      • +
                      • + October 14, 2015 by Kevin Sartor:
                        + Add some information about the test. +
                      • +
                      • + October 12, 2015 by Marcus Fuchs:
                        + Add rudimentary documentation and integrate into experimental pipe package +
                      • +
                      • + October 7, 2015 by Kevin Sartor:
                        + First implementation. +
                      • +
                      + ",info=" +

                      + This data record contains the experimental data from the + long test bench carried out at the University of Liège. + See + AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.Data.BaseClasses.PipeDataULg + for more information. +

                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end PipeDataULg150801; diff --git a/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/Data/PipeDataULg151202.mo b/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/Data/PipeDataULg151202.mo index e2ed1be4d5..fd07dc72b2 100644 --- a/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/Data/PipeDataULg151202.mo +++ b/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/Data/PipeDataULg151202.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.Data; +within AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.Data; record PipeDataULg151202 "Experimental data from ULg's pipe test bench from December 2, 2015" extends AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.Data.BaseClasses.PipeDataULg( @@ -9,34 +9,35 @@ record PipeDataULg151202 final filNam = Modelica.Utilities.Files.loadResource( "modelica://AixLib/Resources/Data/Fluid/FixedResistances/Validation/PlugFlowPipes/PipeDataULg151202.mos")); annotation (Documentation(revisions=" -
                        -
                      • -March 7, 2020, by Michael Wetter:
                        -Replaced measured data from specification in Modelica file to external table, -as this reduces the computing time.
                        -This is for - #1289. -
                      • -
                      • -October 14, 2015 by Kevin Sartor:
                        -Add some information about the test. -
                      • -
                      • -October 12, 2015 by Marcus Fuchs:
                        -Add rudimentary documentation and integrate into experimental pipe package -
                      • -
                      • -October 7, 2015 by Kevin Sartor:
                        -First implementation. -
                      • -
                      -", info=" -

                      -This data record contains the experimental data from the -long test bench carried out at the University of Liège. -See -AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.Data.BaseClasses.PipeDataULg -for more information. -

                      -")); +
                        +
                      • + March 7, 2020, by Michael Wetter:
                        + Replaced measured data from specification in Modelica file to external table, + as this reduces the computing time.
                        + This is for + #1289. +
                      • +
                      • + October 14, 2015 by Kevin Sartor:
                        + Add some information about the test. +
                      • +
                      • + October 12, 2015 by Marcus Fuchs:
                        + Add rudimentary documentation and integrate into experimental pipe package +
                      • +
                      • + October 7, 2015 by Kevin Sartor:
                        + First implementation. +
                      • +
                      + ",info=" +

                      + This data record contains the experimental data from the + long test bench carried out at the University of Liège. + See + AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.Data.BaseClasses.PipeDataULg + for more information. +

                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end PipeDataULg151202; diff --git a/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/Data/PipeDataULg151204_1.mo b/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/Data/PipeDataULg151204_1.mo index 14f54c0fcd..5617bf1b2e 100644 --- a/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/Data/PipeDataULg151204_1.mo +++ b/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/Data/PipeDataULg151204_1.mo @@ -1,7 +1,7 @@ -within AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.Data; +within AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.Data; record PipeDataULg151204_1 "Experimental data from ULg's pipe test bench from December 4, 2015 (1); - increase followed by a decrease in temperature" + increase followed by a decrease in temperature" extends AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.Data.BaseClasses.PipeDataULg( T_start_out=14.0, T_start_in=14.0, @@ -10,34 +10,35 @@ record PipeDataULg151204_1 final filNam = Modelica.Utilities.Files.loadResource( "modelica://AixLib/Resources/Data/Fluid/FixedResistances/Validation/PlugFlowPipes/PipeDataULg151204_1.mos")); annotation (Documentation(revisions=" -
                        -
                      • -March 7, 2020, by Michael Wetter:
                        -Replaced measured data from specification in Modelica file to external table, -as this reduces the computing time.
                        -This is for - #1289. -
                      • -
                      • -October 14, 2015 by Kevin Sartor:
                        -Add some information about the test. -
                      • -
                      • -October 12, 2015 by Marcus Fuchs:
                        -Add rudimentary documentation and integrate into experimental pipe package -
                      • -
                      • -October 7, 2015 by Kevin Sartor:
                        -First implementation. -
                      • -
                      -", info=" -

                      -This data record contains the experimental data from the -long test bench carried out at the University of Liège. -See -AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.Data.BaseClasses.PipeDataULg -for more information. -

                      -")); +
                        +
                      • + March 7, 2020, by Michael Wetter:
                        + Replaced measured data from specification in Modelica file to external table, + as this reduces the computing time.
                        + This is for + #1289. +
                      • +
                      • + October 14, 2015 by Kevin Sartor:
                        + Add some information about the test. +
                      • +
                      • + October 12, 2015 by Marcus Fuchs:
                        + Add rudimentary documentation and integrate into experimental pipe package +
                      • +
                      • + October 7, 2015 by Kevin Sartor:
                        + First implementation. +
                      • +
                      + ",info=" +

                      + This data record contains the experimental data from the + long test bench carried out at the University of Liège. + See + AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.Data.BaseClasses.PipeDataULg + for more information. +

                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end PipeDataULg151204_1; diff --git a/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/Data/PipeDataULg151204_2.mo b/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/Data/PipeDataULg151204_2.mo index f47c47ed32..bfa7ae280d 100644 --- a/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/Data/PipeDataULg151204_2.mo +++ b/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/Data/PipeDataULg151204_2.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.Data; +within AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.Data; record PipeDataULg151204_2 "Experimental data from ULg's pipe test bench from December 4, 2015 (2)" extends AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.Data.BaseClasses.PipeDataULg( @@ -9,34 +9,35 @@ record PipeDataULg151204_2 final filNam = Modelica.Utilities.Files.loadResource( "modelica://AixLib/Resources/Data/Fluid/FixedResistances/Validation/PlugFlowPipes/PipeDataULg151204_2.mos")); annotation (Documentation(revisions=" -
                        -
                      • -March 7, 2020, by Michael Wetter:
                        -Replaced measured data from specification in Modelica file to external table, -as this reduces the computing time.
                        -This is for - #1289. -
                      • -
                      • -October 14, 2015 by Kevin Sartor:
                        -Add some information about the test. -
                      • -
                      • -October 12, 2015 by Marcus Fuchs:
                        -Add rudimentary documentation and integrate into experimental pipe package -
                      • -
                      • -October 7, 2015 by Kevin Sartor:
                        -First implementation. -
                      • -
                      -", info=" -

                      -This data record contains the experimental data from the -long test bench carried out at the University of Liège. -See -AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.Data.BaseClasses.PipeDataULg -for more information. -

                      -")); +
                        +
                      • + March 7, 2020, by Michael Wetter:
                        + Replaced measured data from specification in Modelica file to external table, + as this reduces the computing time.
                        + This is for + #1289. +
                      • +
                      • + October 14, 2015 by Kevin Sartor:
                        + Add some information about the test. +
                      • +
                      • + October 12, 2015 by Marcus Fuchs:
                        + Add rudimentary documentation and integrate into experimental pipe package +
                      • +
                      • + October 7, 2015 by Kevin Sartor:
                        + First implementation. +
                      • +
                      + ",info=" +

                      + This data record contains the experimental data from the + long test bench carried out at the University of Liège. + See + AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.Data.BaseClasses.PipeDataULg + for more information. +

                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end PipeDataULg151204_2; diff --git a/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/Data/PipeDataULg151204_4.mo b/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/Data/PipeDataULg151204_4.mo index 82058148c6..788fac8974 100644 --- a/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/Data/PipeDataULg151204_4.mo +++ b/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/Data/PipeDataULg151204_4.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.Data; +within AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.Data; record PipeDataULg151204_4 "Experimental data from ULg's pipe test bench from December 4, 2015 (4); an increase followed by a decrease temperature" extends AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.Data.BaseClasses.PipeDataULg( @@ -9,34 +9,35 @@ record PipeDataULg151204_4 final filNam = Modelica.Utilities.Files.loadResource( "modelica://AixLib/Resources/Data/Fluid/FixedResistances/Validation/PlugFlowPipes/PipeDataULg151204_4.mos")); annotation (Documentation(revisions=" -
                        -
                      • -March 7, 2020, by Michael Wetter:
                        -Replaced measured data from specification in Modelica file to external table, -as this reduces the computing time.
                        -This is for - #1289. -
                      • -
                      • -October 14, 2015 by Kevin Sartor:
                        -Add some information about the test. -
                      • -
                      • -October 12, 2015 by Marcus Fuchs:
                        -Add rudimentary documentation and integrate into experimental pipe package -
                      • -
                      • -October 7, 2015 by Kevin Sartor:
                        -First implementation. -
                      • -
                      -", info=" -

                      -This data record contains the experimental data from the -long test bench carried out at the University of Liège. -See -AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.Data.BaseClasses.PipeDataULg -for more information. -

                      -")); +
                        +
                      • + March 7, 2020, by Michael Wetter:
                        + Replaced measured data from specification in Modelica file to external table, + as this reduces the computing time.
                        + This is for + #1289. +
                      • +
                      • + October 14, 2015 by Kevin Sartor:
                        + Add some information about the test. +
                      • +
                      • + October 12, 2015 by Marcus Fuchs:
                        + Add rudimentary documentation and integrate into experimental pipe package +
                      • +
                      • + October 7, 2015 by Kevin Sartor:
                        + First implementation. +
                      • +
                      + ",info=" +

                      + This data record contains the experimental data from the + long test bench carried out at the University of Liège. + See + AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.Data.BaseClasses.PipeDataULg + for more information. +

                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end PipeDataULg151204_4; diff --git a/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/Data/PipeDataULg160104_2.mo b/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/Data/PipeDataULg160104_2.mo index 69e1c35628..1dbc22637b 100644 --- a/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/Data/PipeDataULg160104_2.mo +++ b/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/Data/PipeDataULg160104_2.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.Data; +within AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.Data; record PipeDataULg160104_2 "Experimental data from ULg's pipe test bench from 4 January 2016. Low mass flow" extends AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.Data.BaseClasses.PipeDataULg( T_start_out=15.0, @@ -8,34 +8,35 @@ record PipeDataULg160104_2 "Experimental data from ULg's pipe test bench from 4 final filNam = Modelica.Utilities.Files.loadResource( "modelica://AixLib/Resources/Data/Fluid/FixedResistances/Validation/PlugFlowPipes/PipeDataULg160104_2.mos")); annotation (Documentation(revisions=" -
                        -
                      • -March 7, 2020, by Michael Wetter:
                        -Replaced measured data from specification in Modelica file to external table, -as this reduces the computing time.
                        -This is for - #1289. -
                      • -
                      • -October 14, 2015 by Kevin Sartor:
                        -Add some information about the test. -
                      • -
                      • -October 12, 2015 by Marcus Fuchs:
                        -Add rudimentary documentation and integrate into experimental pipe package -
                      • -
                      • -October 7, 2015 by Kevin Sartor:
                        -First implementation. -
                      • -
                      -", info=" -

                      -This data record contains the experimental data from the -long test bench carried out at the University of Liège. -See -AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.Data.BaseClasses.PipeDataULg -for more information. -

                      -")); +
                        +
                      • + March 7, 2020, by Michael Wetter:
                        + Replaced measured data from specification in Modelica file to external table, + as this reduces the computing time.
                        + This is for + #1289. +
                      • +
                      • + October 14, 2015 by Kevin Sartor:
                        + Add some information about the test. +
                      • +
                      • + October 12, 2015 by Marcus Fuchs:
                        + Add rudimentary documentation and integrate into experimental pipe package +
                      • +
                      • + October 7, 2015 by Kevin Sartor:
                        + First implementation. +
                      • +
                      + ",info=" +

                      + This data record contains the experimental data from the + long test bench carried out at the University of Liège. + See + AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.Data.BaseClasses.PipeDataULg + for more information. +

                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end PipeDataULg160104_2; diff --git a/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/Data/PipeDataULg160118_1.mo b/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/Data/PipeDataULg160118_1.mo index 9f70fc85e2..36c93404dc 100644 --- a/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/Data/PipeDataULg160118_1.mo +++ b/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/Data/PipeDataULg160118_1.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.Data; +within AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.Data; record PipeDataULg160118_1 "Experimental data from ULg's pipe test bench from January 18, 2016" extends AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.Data.BaseClasses.PipeDataULg( @@ -9,34 +9,35 @@ record PipeDataULg160118_1 final filNam = Modelica.Utilities.Files.loadResource( "modelica://AixLib/Resources/Data/Fluid/FixedResistances/Validation/PlugFlowPipes/PipeDataULg160118_1.mos")); annotation (Documentation(revisions=" -
                        -
                      • -March 7, 2020, by Michael Wetter:
                        -Replaced measured data from specification in Modelica file to external table, -as this reduces the computing time.
                        -This is for - #1289. -
                      • -
                      • -October 14, 2015 by Kevin Sartor:
                        -Add some information about the test. -
                      • -
                      • -October 12, 2015 by Marcus Fuchs:
                        -Add rudimentary documentation and integrate into experimental pipe package -
                      • -
                      • -October 7, 2015 by Kevin Sartor:
                        -First implementation. -
                      • -
                      -", info=" -

                      -This data record contains the experimental data from the -long test bench carried out at the University of Liège. -See -AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.Data.BaseClasses.PipeDataULg -for more information. -

                      -")); +
                        +
                      • + March 7, 2020, by Michael Wetter:
                        + Replaced measured data from specification in Modelica file to external table, + as this reduces the computing time.
                        + This is for + #1289. +
                      • +
                      • + October 14, 2015 by Kevin Sartor:
                        + Add some information about the test. +
                      • +
                      • + October 12, 2015 by Marcus Fuchs:
                        + Add rudimentary documentation and integrate into experimental pipe package +
                      • +
                      • + October 7, 2015 by Kevin Sartor:
                        + First implementation. +
                      • +
                      + ",info=" +

                      + This data record contains the experimental data from the + long test bench carried out at the University of Liège. + See + AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.Data.BaseClasses.PipeDataULg + for more information. +

                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end PipeDataULg160118_1; diff --git a/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/Data/TestData.mo b/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/Data/TestData.mo index 53289b61de..ed558d2da8 100644 --- a/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/Data/TestData.mo +++ b/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/Data/TestData.mo @@ -15,26 +15,27 @@ equation annotation (experiment(StopTime=603900, Interval=900, Tolerance=1e-6), Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-40,-40},{60,40}})), Documentation(info=" -

                      Model used to visualize and check data of district heating networks

                      -", revisions=" -
                        -
                      • -March 7, 2020, by Michael Wetter:
                        -Replaced measured data from specification in Modelica file to external table, -as this reduces the computing time.
                        -This is for - #1289. -
                      • -
                      • -January 19, 2016 by Carles Ribas:
                        -Use replaceable data and addition of .mos file. -
                      • -
                      • -December 18, 2015 by Daniele Basciotti:
                        -First implementation. -
                      • -
                      -"),__Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/FixedResistances/Validation/PlugFlowPipes/Data/TestData.mos" - "Simulate and plot")); +

                      Model used to visualize and check data of district heating networks

                      + ", revisions=" +
                        +
                      • + March 7, 2020, by Michael Wetter:
                        + Replaced measured data from specification in Modelica file to external table, + as this reduces the computing time.
                        + This is for + #1289. +
                      • +
                      • + January 19, 2016 by Carles Ribas:
                        + Use replaceable data and addition of .mos file. +
                      • +
                      • + December 18, 2015 by Daniele Basciotti:
                        + First implementation. +
                      • +
                      + "), + __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FixedResistances/Validation/PlugFlowPipes/Data/TestData.mos" + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end TestData; diff --git a/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/FlowReversal.mo b/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/FlowReversal.mo index e504ec487c..cacd4cf640 100644 --- a/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/FlowReversal.mo +++ b/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/FlowReversal.mo @@ -11,12 +11,11 @@ model FlowReversal Sources.Boundary_pT sin( redeclare package Medium = Medium, nPorts=1, - p(displayUnit="Pa") = 101325, + p(displayUnit="bar") = 500000, T=313.15) "Pressure boundary condition" annotation (Placement(transformation(extent={{82,-10},{62,10}}))); AixLib.Fluid.FixedResistances.PlugFlowPipe pip( redeclare package Medium = Medium, - nPorts=1, dIns=0.05, kIns=0.028, cPip=500, @@ -28,7 +27,7 @@ model FlowReversal v_nominal=2, T_start_in=293.15, T_start_out=293.15) "Pipe" - annotation (Placement(transformation(extent={{0,-10},{20,10}}))); + annotation (Placement(transformation(extent={{2,-10},{22,10}}))); AixLib.Fluid.Sources.MassFlowSource_T sou( nPorts=1, redeclare package Medium = Medium, @@ -52,31 +51,36 @@ model FlowReversal "Temperature sensor" annotation (Placement(transformation(extent={{-30,-10},{-10,10}}))); equation - connect(pip.ports_b[1], senTemOut.port_a) - annotation (Line(points={{20,0},{30,0}}, color={0,127,255})); + connect(pip.port_b, senTemOut.port_a) + annotation (Line(points={{22,0},{30,0}}, color={0,127,255})); connect(senTemOut.port_b, sin.ports[1]) annotation (Line(points={{50,0},{62,0}}, color={0,127,255})); connect(sou.ports[1], senTemIn.port_a) annotation (Line(points={{-40,0},{-30,0}}, color={0,127,255})); connect(senTemIn.port_b, pip.port_a) - annotation (Line(points={{-10,0},{0,0}}, color={0,127,255})); + annotation (Line(points={{-10,0},{2,0}}, color={0,127,255})); connect(m_flow.y, sou.m_flow_in) annotation (Line(points={{-71,8},{-62,8}}, color={0,0,127})); annotation ( - __Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/FixedResistances/Validation/PlugFlowPipes/FlowReversal.mos" + __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FixedResistances/Validation/PlugFlowPipes/FlowReversal.mos" "Simulate and Plot"), experiment(StopTime=150, Tolerance=1e-006), Documentation(info=" -

                      -Validation model in which water flows into the pipe and then the flow is reversed. -

                      -", revisions=" -
                        -
                      • -October 25, 2017, by Michael Wetter:
                        -First implementation. -
                      • -
                      -")); +

                      + Validation model in which water flows into the pipe and then the flow is reversed. +

                      + ",revisions=" +
                        +
                      • + July 12, 2021, by Baptiste Ravache:
                        + Changed outlet boundary pressure to avoid negative + pressure at the inlet when flow is reversed. +
                      • +
                      • + October 25, 2017, by Michael Wetter:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end FlowReversal; diff --git a/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/MSLAIT.mo b/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/MSLAIT.mo index 885370d4b8..d110a8e9cb 100644 --- a/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/MSLAIT.mo +++ b/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/MSLAIT.mo @@ -87,11 +87,11 @@ model MSLAIT origin={124,-8}))); inner Modelica.Fluid.System system annotation (Placement(transformation(extent={{-140,140},{-120,160}}))); - parameter Modelica.SIunits.ThermalResistance R= - 1/(2*kIns*Modelica.Constants.pi)*log(0.18/0.0899) + 1/(2*2.4*Modelica.Constants.pi)*log(2/0.18) + parameter Modelica.Units.SI.ThermalResistance R=1/(2*kIns*Modelica.Constants.pi) + *log(0.18/0.0899) + 1/(2*2.4*Modelica.Constants.pi)*log(2/0.18) "Thermal resistance of main pipes"; - parameter Modelica.SIunits.ThermalResistance R80= - 1/(2*0.024*Modelica.Constants.pi)*log(0.07/0.0337) + 1/(2*2.4*Modelica.Constants.pi)*log(2/0.07) + parameter Modelica.Units.SI.ThermalResistance R80=1/(2*0.024*Modelica.Constants.pi) + *log(0.07/0.0337) + 1/(2*2.4*Modelica.Constants.pi)*log(2/0.07) "Thermal resistance of service pipes"; Modelica.Thermal.HeatTransfer.Components.ThermalResistor res0[pip0.nNodes](each R= @@ -250,12 +250,10 @@ model MSLAIT extent={{-10,-10},{10,10}}, rotation=90, origin={-22,62}))); - parameter Modelica.SIunits.ThermalConductivity kIns=0.024 + parameter Modelica.Units.SI.ThermalConductivity kIns=0.024 "Heat conductivity of pipe insulation material"; - parameter Modelica.SIunits.Length dIns=0.045 - "Thickness of pipe insulation"; - parameter Modelica.SIunits.Diameter diameter=0.089 - "Outer diameter of pipe"; + parameter Modelica.Units.SI.Length dIns=0.045 "Thickness of pipe insulation"; + parameter Modelica.Units.SI.Diameter diameter=0.089 "Outer diameter of pipe"; Fluid.Sensors.TemperatureTwoPort senTem_p2(redeclare package Medium = Medium, m_flow_nominal=m_flow_nominal, @@ -295,9 +293,9 @@ model MSLAIT rotation=90, origin={42,80}))); - parameter Modelica.SIunits.MassFlowRate m_flow_nominal=1 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=1 "Nominal mass flow rate, used for regularization near zero flow"; - parameter Modelica.SIunits.Time tauHeaTra=6500 + parameter Modelica.Units.SI.Time tauHeaTra=6500 "Time constant for heat transfer, default 20 minutes"; Fluid.Sources.MassFlowSource_T Point5( @@ -443,93 +441,93 @@ equation experiment( StopTime=603900, Tolerance=1e-006), - __Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/FixedResistances/Validation/PlugFlowPipes/MSLAIT.mos" + __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FixedResistances/Validation/PlugFlowPipes/MSLAIT.mos" "Simulate and plot"), Documentation(info=" -

                      -The example contains - -experimental data from a real district heating network. -This data is used to validate this library's - -AixLib.Fluid.FixedResistances.PlugFlowPipe in - -AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.PlugFlowAIT. -This model compares its performance with the original Modelica Standard Library -pipes, using one discretization element per unit length of pipe. -For a coarser discretization, please refer to - -MSLAIT2Nodes. -

                      -

                      -Note that these three models are identical, except for the pipe model that is used: -

                      - -

                      -This comparison between different discretization levels and pipe models is made -to check the influence of the discretization and pipe model on computation time -and simulation accuracy. -

                      -

                      The pipes' temperatures are not initialized, thus results of outflow -temperature before approximately the first 10000 seconds should not be considered. -

                      -

                      Test bench schematic

                      -

                      \"Schematic

                      -

                      Calibration

                      -

                      To calculate the length specific thermal resistance R of the -pipe, the thermal resistance of the surrounding ground is added.

                      -

                      -R=1/(0.208)+1/(2   lambda_g   Modelica.Constants.pi)   log(1/0.18)

                      -

                      -Where the thermal conductivity of the ground lambda_g = 2.4 W/(m K). -

                      -", revisions=" -
                        -
                      • -March 7, 2020, by Michael Wetter:
                        -Replaced measured data from specification in Modelica file to external table, -as this reduces the computing time.
                        -This is for - #1289. -
                      • -
                      • -May 15, 2019, by Jianjun Hu:
                        -Replaced fluid source. This is for - #1072. -
                      • -
                      • November 28, 2016 by Bram van der Heijde:
                        Remove pipVol. -
                      • -
                      • August 24, 2016 by Bram van der Heijde:
                        -Implement validation with MSL pipes for comparison, based on AIT validation. -
                      • -
                      • -July 4, 2016 by Bram van der Heijde:
                        Added parameters to test the -influence of allowFlowReversal and the presence of explicit volumes in the pipe. -
                      • -
                      • January 26, 2016 by Carles Ribas:
                        First implementation.
                      • -
                      -")); +

                      + The example contains + + experimental data from a real district heating network. + This data is used to validate this library's + + AixLib.Fluid.FixedResistances.PlugFlowPipe in + + AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.PlugFlowAIT. + This model compares its performance with the original Modelica Standard Library + pipes, using one discretization element per unit length of pipe. + For a coarser discretization, please refer to + + MSLAIT2Nodes. +

                      +

                      + Note that these three models are identical, except for the pipe model that is used: +

                      + +

                      + This comparison between different discretization levels and pipe models is made + to check the influence of the discretization and pipe model on computation time + and simulation accuracy. +

                      +

                      The pipes' temperatures are not initialized, thus results of outflow + temperature before approximately the first 10000 seconds should not be considered. +

                      +

                      Test bench schematic

                      +

                      \"Schematic

                      +

                      Calibration

                      +

                      To calculate the length specific thermal resistance R of the + pipe, the thermal resistance of the surrounding ground is added.

                      +

                      + R=1/(0.208)+1/(2   lambda_g   Modelica.Constants.pi)   log(1/0.18)

                      +

                      + Where the thermal conductivity of the ground lambda_g = 2.4 W/(m K). +

                      + ",revisions=" +
                        +
                      • + March 7, 2020, by Michael Wetter:
                        + Replaced measured data from specification in Modelica file to external table, + as this reduces the computing time.
                        + This is for + #1289. +
                      • +
                      • + May 15, 2019, by Jianjun Hu:
                        + Replaced fluid source. This is for + #1072. +
                      • +
                      • November 28, 2016 by Bram van der Heijde:
                        Remove pipVol. +
                      • +
                      • August 24, 2016 by Bram van der Heijde:
                        + Implement validation with MSL pipes for comparison, based on AIT validation. +
                      • +
                      • + July 4, 2016 by Bram van der Heijde:
                        Added parameters to test the + influence of allowFlowReversal and the presence of explicit volumes in the pipe. +
                      • +
                      • January 26, 2016 by Carles Ribas:
                        First implementation.
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end MSLAIT; diff --git a/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/MSLAIT2Nodes.mo b/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/MSLAIT2Nodes.mo index e692cd2740..0118b74f3b 100644 --- a/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/MSLAIT2Nodes.mo +++ b/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/MSLAIT2Nodes.mo @@ -249,12 +249,10 @@ model MSLAIT2Nodes extent={{-10,-10},{10,10}}, rotation=90, origin={-28,68}))); - parameter Modelica.SIunits.ThermalConductivity kIns=0.024 + parameter Modelica.Units.SI.ThermalConductivity kIns=0.024 "Heat conductivity"; - parameter Modelica.SIunits.Length dIns=0.045 - "Thickness of pipe insulation"; - parameter Modelica.SIunits.Diameter diameter=0.089 - "Outer diameter of pipe"; + parameter Modelica.Units.SI.Length dIns=0.045 "Thickness of pipe insulation"; + parameter Modelica.Units.SI.Diameter diameter=0.089 "Outer diameter of pipe"; Fluid.Sensors.TemperatureTwoPort senTem_p2(redeclare package Medium = Medium, m_flow_nominal=m_flow_nominal, @@ -294,9 +292,9 @@ model MSLAIT2Nodes rotation=90, origin={18,112}))); - parameter Modelica.SIunits.MassFlowRate m_flow_nominal=1 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=1 "Nominal mass flow rate, used for regularization near zero flow"; - parameter Modelica.SIunits.Time tauHeaTra=6500 + parameter Modelica.Units.SI.Time tauHeaTra=6500 "Time constant for heat transfer, default 20 minutes"; Modelica.Blocks.Logical.Switch switch @@ -436,90 +434,90 @@ equation Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-160,-160},{ 220,200}})), experiment(StopTime=603900, Tolerance=1e-006), - __Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/FixedResistances/Validation/PlugFlowPipes/MSLAIT2Nodes.mos" + __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FixedResistances/Validation/PlugFlowPipes/MSLAIT2Nodes.mos" "Simulate and plot"), Documentation(info=" -

                      The example contains - -experimental data from a real district heating network. -This data is used to validate this library's -plug flow pipe model -in -AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.PlugFlowAIT. -

                      -

                      -Note that these three models are identical, except for the pipe model that is used: -

                      - -

                      -This comparison between different discretization levels and pipe models is made -to check the influence of the discretization and pipe model on computation time -and simulation accuracy. -

                      -

                      The pipes' temperatures are not initialized, thus results of outflow temperature -before approximately the first 10000 seconds should not be considered. -

                      -

                      Test bench schematic

                      -

                      \"Schematic

                      -

                      Calibration

                      -

                      -To calculate the length specific thermal resistance R of the pipe, -the thermal resistance of the surrounding ground is added. -

                      -

                      -R=1/(0.208)+1/(2   lambdag Modelica.Constants.pi)   log(1/0.18) -

                      -

                      -Where the thermal conductivity of the ground lambda_g = 2.4 W/(m K). -

                      -", revisions=" -
                        -
                      • -March 7, 2020, by Michael Wetter:
                        -Replaced measured data from specification in Modelica file to external table, -as this reduces the computing time.
                        -This is for - #1289. -
                      • -
                      • -May 15, 2019, by Jianjun Hu:
                        -Replaced fluid source. This is for - #1072. -
                      • -
                      • November 28, 2016 by Bram van der Heijde:
                        Remove pipVol. -
                      • -
                      • -August 24, 2016 by Bram van der Heijde:
                        -Implement validation with MSL pipes for comparison, based on AIT validation. -
                      • -
                      • -July 4, 2016 by Bram van der Heijde:
                        Added parameters to test the -influence of allowFlowReversal and the presence of explicit volumes in the pipe. -
                      • -
                      • January 26, 2016 by Carles Ribas:
                        First implementation.
                      • -
                      -")); +

                      The example contains + + experimental data from a real district heating network. + This data is used to validate this library's + plug flow pipe model + in + AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.PlugFlowAIT. +

                      +

                      + Note that these three models are identical, except for the pipe model that is used: +

                      + +

                      + This comparison between different discretization levels and pipe models is made + to check the influence of the discretization and pipe model on computation time + and simulation accuracy. +

                      +

                      The pipes' temperatures are not initialized, thus results of outflow temperature + before approximately the first 10000 seconds should not be considered. +

                      +

                      Test bench schematic

                      +

                      \"Schematic

                      +

                      Calibration

                      +

                      + To calculate the length specific thermal resistance R of the pipe, + the thermal resistance of the surrounding ground is added. +

                      +

                      + R=1/(0.208)+1/(2   lambdag Modelica.Constants.pi)   log(1/0.18) +

                      +

                      + Where the thermal conductivity of the ground lambda_g = 2.4 W/(m K). +

                      + ",revisions=" +
                        +
                      • + March 7, 2020, by Michael Wetter:
                        + Replaced measured data from specification in Modelica file to external table, + as this reduces the computing time.
                        + This is for + #1289. +
                      • +
                      • + May 15, 2019, by Jianjun Hu:
                        + Replaced fluid source. This is for + #1072. +
                      • +
                      • November 28, 2016 by Bram van der Heijde:
                        Remove pipVol. +
                      • +
                      • + August 24, 2016 by Bram van der Heijde:
                        + Implement validation with MSL pipes for comparison, based on AIT validation. +
                      • +
                      • + July 4, 2016 by Bram van der Heijde:
                        Added parameters to test the + influence of allowFlowReversal and the presence of explicit volumes in the pipe. +
                      • +
                      • January 26, 2016 by Carles Ribas:
                        First implementation.
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end MSLAIT2Nodes; diff --git a/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/PlugFlowAIT.mo b/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/PlugFlowAIT.mo index e9253df8ef..ab785406f9 100644 --- a/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/PlugFlowAIT.mo +++ b/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/PlugFlowAIT.mo @@ -3,7 +3,7 @@ model PlugFlowAIT "Validation pipe against data from Austrian Institute of Technology" extends Modelica.Icons.Example; package Medium = AixLib.Media.Water; - parameter Modelica.SIunits.Length Lcap=1 + parameter Modelica.Units.SI.Length Lcap=1 "Length over which transient effects typically take place"; parameter Real R80(unit="(m.K)/W")=1/(2*0.024*Modelica.Constants.pi) *log(0.07/0.0337) + 1/(2*2.4*Modelica.Constants.pi)*log(2/0.07) "Thermal resistance per unit length of service pipes"; @@ -12,12 +12,12 @@ model PlugFlowAIT "Flag to decide whether volumes are included at the end points of the pipe"; parameter Boolean allowFlowReversal=true "= true to allow flow reversal, false restricts to design direction (port_a -> port_b)"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal=1 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=1 "Nominal mass flow rate, used for regularization near zero flow"; - parameter Modelica.SIunits.Time tauHeaTra=6500 + parameter Modelica.Units.SI.Time tauHeaTra=6500 "Time constant for heat transfer, default 20 minutes"; - parameter Modelica.SIunits.Length thickness=0.0032 "Pipe wall thickness"; + parameter Modelica.Units.SI.Length thickness=0.0032 "Pipe wall thickness"; Fluid.Sources.MassFlowSource_T Point1( redeclare package Medium = Medium, @@ -60,7 +60,6 @@ model PlugFlowAIT kIns=0.024, length=115, allowFlowReversal=allowFlowReversal, - nPorts=2, m_flow_nominal=0.3, R=1/(2*0.024*Modelica.Constants.pi)*log(0.18/0.0899) + 1/(2*2.4*Modelica.Constants.pi) *log(2/0.18), @@ -69,7 +68,7 @@ model PlugFlowAIT rhoPip=8000, initDelay=false, m_flow_start=0) "Pipe 1" - annotation (Placement(transformation(extent={{50,0},{30,20}}))); + annotation (Placement(transformation(extent={{60,0},{40,20}}))); PlugFlowPipe pip4( dh = 0.0337 - 2*0.0032, redeclare package Medium = Medium, @@ -79,7 +78,6 @@ model PlugFlowAIT allowFlowReversal=allowFlowReversal, m_flow_nominal=0.3, thickness=thickness, - nPorts=2, R=R80, cPip=500, rhoPip=8000, @@ -97,7 +95,6 @@ model PlugFlowAIT kIns=0.024, dIns=0.045, allowFlowReversal=allowFlowReversal, - nPorts=2, m_flow_nominal=0.3, R=1/(2*0.024*Modelica.Constants.pi)*log(0.18/0.0899) + 1/(2*2.4*Modelica.Constants.pi) *log(2/0.18), @@ -114,7 +111,6 @@ model PlugFlowAIT dIns=0.045, kIns=0.024, allowFlowReversal=allowFlowReversal, - nPorts=1, m_flow_nominal=0.3, thickness=thickness, dh=0.0337 - 2*0.0032, @@ -134,7 +130,6 @@ model PlugFlowAIT dIns=0.045, kIns=0.024, allowFlowReversal=allowFlowReversal, - nPorts=1, m_flow_nominal=0.3, thickness=thickness, dh=0.0337 - 2*0.0032, @@ -210,7 +205,6 @@ model PlugFlowAIT kIns=0.024, length=20, allowFlowReversal=allowFlowReversal, - nPorts=2, m_flow_nominal=0.3, R=1/(2*0.024*Modelica.Constants.pi)*log(0.18/0.0899) + 1/(2*2.4*Modelica.Constants.pi) *log(2/0.18), @@ -261,6 +255,32 @@ model PlugFlowAIT rotation=180, origin={46,56}))); + AixLib.Fluid.FixedResistances.Junction splPip1( + redeclare package Medium = Medium, + m_flow_nominal={pip1.m_flow_nominal,pip5.m_flow_nominal,pip4.m_flow_nominal}, + energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, + dp_nominal(each displayUnit="Pa") = {0,0,0}, + portFlowDirection_1=if allowFlowReversal then Modelica.Fluid.Types.PortFlowDirection.Bidirectional + else Modelica.Fluid.Types.PortFlowDirection.Entering, + portFlowDirection_2=if allowFlowReversal then Modelica.Fluid.Types.PortFlowDirection.Bidirectional + else Modelica.Fluid.Types.PortFlowDirection.Leaving, + portFlowDirection_3=if allowFlowReversal then Modelica.Fluid.Types.PortFlowDirection.Bidirectional + else Modelica.Fluid.Types.PortFlowDirection.Leaving) + "Splitter coming out of pip1" + annotation (Placement(transformation(extent={{30,20},{10,0}}))); + AixLib.Fluid.FixedResistances.Junction splPip2( + redeclare package Medium = Medium, + m_flow_nominal={pip5.m_flow_nominal,pip2.m_flow_nominal,pip3.m_flow_nominal}, + energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, + dp_nominal(each displayUnit="Pa") = {0,0,0}, + portFlowDirection_1=if allowFlowReversal then Modelica.Fluid.Types.PortFlowDirection.Bidirectional + else Modelica.Fluid.Types.PortFlowDirection.Entering, + portFlowDirection_2=if allowFlowReversal then Modelica.Fluid.Types.PortFlowDirection.Bidirectional + else Modelica.Fluid.Types.PortFlowDirection.Leaving, + portFlowDirection_3=if allowFlowReversal then Modelica.Fluid.Types.PortFlowDirection.Bidirectional + else Modelica.Fluid.Types.PortFlowDirection.Leaving) + "Splitter coming out of pip5" + annotation (Placement(transformation(extent={{-30,0},{-50,20}}))); equation connect(m_flow_p3.y, Point3.m_flow_in) annotation (Line( points={{-62,-110},{-58,-110},{-58,-94}}, @@ -280,12 +300,12 @@ equation smooth=Smooth.None)); connect(DataReader.y[9], prescribedTemperature.T) annotation (Line(points={{21,-130},{38,-130}}, color={0,0,127})); - connect(pip4.heatPort, pip1.heatPort) annotation (Line(points={{20,40},{20,40}, - {40,40},{40,20}}, color={191,0,0})); - connect(pip1.heatPort, pip0.heatPort) annotation (Line(points={{40,20},{40,26}, + connect(pip4.heatPort, pip1.heatPort) annotation (Line(points={{20,40},{50,40}, + {50,20}}, color={191,0,0})); + connect(pip1.heatPort, pip0.heatPort) annotation (Line(points={{50,20},{50,26}, {100,26},{100,-10},{90,-10}}, color={191,0,0})); - connect(pip1.heatPort, pip2.heatPort) annotation (Line(points={{40,20},{40,26}, + connect(pip1.heatPort, pip2.heatPort) annotation (Line(points={{50,20},{50,26}, {-78,26}}, color={191,0,0})); connect(pip5.heatPort, pip2.heatPort) annotation (Line(points={{-10,20},{-10,26}, {-78,26}}, color={191,0,0})); @@ -316,29 +336,21 @@ equation connect(lessThreshold.u, m_flow_p4.y) annotation (Line(points={{93.6,128},{ 100,128},{100,140},{114,140}}, color={0,0,127})); - connect(pip1.port_a, pip0.ports_b[1]) - annotation (Line(points={{50,10},{78,10},{78,0}}, color={0,127,255})); - connect(pip1.ports_b[1], pip4.port_a) - annotation (Line(points={{30,8},{10,8},{10,30}}, color={0,127,255})); - connect(pip5.port_a, pip1.ports_b[2]) - annotation (Line(points={{0,10},{30,10},{30,12}}, color={0,127,255})); - connect(pip4.ports_b[1], senTem_p4.port_a) - annotation (Line(points={{8,50},{8,70}}, color={0,127,255})); - connect(Point5.ports[1], pip4.ports_b[2]) annotation (Line(points={{36,56},{ - 36,56},{12,56},{12,50}}, color={0,127,255})); - connect(pip5.ports_b[1], senTemIn_p2.port_b) - annotation (Line(points={{-20,8},{-60,8}}, color={0,127,255})); - connect(pip3.port_a, pip5.ports_b[2]) - annotation (Line(points={{-50,-10},{-50,12},{-20,12}}, - color={0,127,255})); + connect(pip1.port_a, pip0.port_b) + annotation (Line(points={{60,10},{80,10},{80,0}}, color={0,127,255})); + connect(pip4.port_b, senTem_p4.port_a) + annotation (Line(points={{10,50},{10,60},{8,60},{8,70}}, + color={0,127,255})); + connect(Point5.ports[1], pip4.port_b) annotation (Line(points={{36,56},{36,56}, + {10,56},{10,50}}, color={0,127,255})); connect(senTemIn_p2.port_a, pip2.port_a) annotation (Line(points={{-80,8},{-88,8},{-88,16}}, color={0,127,255})); - connect(pip2.ports_b[1], senTem_p2.port_a) + connect(pip2.port_b, senTem_p2.port_a) annotation (Line(points={{-88,36},{-88,46}}, color={0,127,255})); - connect(pip3.ports_b[1], senTem_p3.port_a) annotation (Line(points={{-50,-30}, + connect(pip3.port_b, senTem_p3.port_a) annotation (Line(points={{-50,-30}, {-50,-40}}, color={0,127,255})); - connect(ExcludedBranch.ports[1], pip0.ports_b[2]) annotation (Line(points={{82,30}, - {82,0}}, color={0,127,255})); + connect(ExcludedBranch.ports[1], pip0.port_b) annotation (Line(points={{82,30}, + {82,16},{82,0},{80,0}}, color={0,127,255})); connect(switch1.y, Point5.m_flow_in) annotation (Line(points={{109,64},{58,64}}, color={0,0,127})); connect(m_flow_p4.y, switch1.u3) annotation (Line(points={{114,140},{100,140}, @@ -348,84 +360,96 @@ equation connect(lessThreshold.y, switch1.u2) annotation (Line(points={{75.2,128},{66, 128},{66,104},{140,104},{140,64},{132,64}}, color={255,0,255})); + connect(pip5.port_a, splPip1.port_2) + annotation (Line(points={{0,10},{10,10}},color={0,127,255})); + connect(pip1.port_b, splPip1.port_1) + annotation (Line(points={{40,10},{30,10}}, color={0,127,255})); + connect(splPip1.port_3, pip4.port_a) annotation (Line(points={{20,20},{20,24}, + {10,24},{10,30}}, color={0,127,255})); + connect(senTemIn_p2.port_b, splPip2.port_2) + annotation (Line(points={{-60,8},{-60,10},{-50,10}}, color={0,127,255})); + connect(pip5.port_b, splPip2.port_1) + annotation (Line(points={{-20,10},{-30,10}}, color={0,127,255})); + connect(pip3.port_a, splPip2.port_3) annotation (Line(points={{-50,-10},{-50,-4}, + {-40,-4},{-40,0}}, color={0,127,255})); annotation ( experiment( StopTime=603900, Interval=900, Tolerance=1e-006), - __Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/FixedResistances/Validation/PlugFlowPipes/PlugFlowAIT.mos" + __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FixedResistances/Validation/PlugFlowPipes/PlugFlowAIT.mos" "Simulate and plot"), Diagram(coordinateSystem(extent={{-120,-160},{160,160}})), Documentation(info=" -

                      -The example contains -experimental data from a real district heating network. -

                      -

                      The pipes' temperatures are not initialized. Therefore, results of -outflow temperature before approximately the first 10000 seconds should not be -considered. -

                      -

                      -Note that these three models are identical, except for the pipe model that is used: -

                      - -

                      -This comparison between different discretization levels and pipe models is made -to check the influence of the discretization and pipe model on computation time -and simulation accuracy. -

                      -

                      Test bench schematic

                      -

                      \"Schematic -

                      -

                      Calibration

                      -

                      To calculate the length specific thermal resistance R of the pipe, -the thermal resistance of the surrounding ground is added, which yields

                      -

                      -R=1/(0.208)+1/(2   lambda_g   Modelica.Constants.pi)   log(1/0.18),

                      -

                      where the thermal conductivity of the ground lambda_g = 2.4 W/(m K). -

                      -", revisions=" -
                        -
                      • -March 7, 2020, by Michael Wetter:
                        -Replaced measured data from specification in Modelica file to external table, -as this reduces the computing time.
                        -This is for - #1289. -
                      • -
                      • -May 15, 2019, by Jianjun Hu:
                        -Replaced fluid source. This is for - #1072. -
                      • -
                      • July 4, 2016 by Bram van der Heijde:
                        Added parameters to test the -influence of allowFlowReversal and the presence of explicit volumes in the pipe. -
                      • -
                      • January 26, 2016 by Carles Ribas:
                        First implementation.
                      • -
                      -")); +

                      + The example contains + experimental data from a real district heating network. +

                      +

                      The pipes' temperatures are not initialized. Therefore, results of + outflow temperature before approximately the first 10000 seconds should not be + considered. +

                      +

                      + Note that these three models are identical, except for the pipe model that is used: +

                      + +

                      + This comparison between different discretization levels and pipe models is made + to check the influence of the discretization and pipe model on computation time + and simulation accuracy. +

                      +

                      Test bench schematic

                      +

                      \"Schematic +

                      +

                      Calibration

                      +

                      To calculate the length specific thermal resistance R of the pipe, + the thermal resistance of the surrounding ground is added, which yields

                      +

                      + R=1/(0.208)+1/(2   lambda_g   Modelica.Constants.pi)   log(1/0.18),

                      +

                      where the thermal conductivity of the ground lambda_g = 2.4 W/(m K). +

                      + ",revisions=" +
                        +
                      • + March 7, 2020, by Michael Wetter:
                        + Replaced measured data from specification in Modelica file to external table, + as this reduces the computing time.
                        + This is for + #1289. +
                      • +
                      • + May 15, 2019, by Jianjun Hu:
                        + Replaced fluid source. This is for + #1072. +
                      • +
                      • July 4, 2016 by Bram van der Heijde:
                        Added parameters to test the + influence of allowFlowReversal and the presence of explicit volumes in the pipe. +
                      • +
                      • January 26, 2016 by Carles Ribas:
                        First implementation.
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end PlugFlowAIT; diff --git a/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/PlugFlowULg.mo b/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/PlugFlowULg.mo index 4277c40672..a19312bac0 100644 --- a/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/PlugFlowULg.mo +++ b/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/PlugFlowULg.mo @@ -1,15 +1,15 @@ -within AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes; +within AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes; model PlugFlowULg "Validation against data from Université de Liège" extends Modelica.Icons.Example; package Medium = AixLib.Media.Water; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal=1 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=1 "Nominal mass flow rate, used for regularization near zero flow"; - parameter Modelica.SIunits.Temperature T_start_in=pipeDataULg.T_start_in + 273.15 - "Initial temperature at pipe inlet"; - parameter Modelica.SIunits.Temperature T_start_out=pipeDataULg.T_start_out + 273.15 - "Initial temperature at pipe outlet"; - parameter Modelica.SIunits.SpecificHeatCapacity cp_default= + parameter Modelica.Units.SI.Temperature T_start_in=pipeDataULg.T_start_in + + 273.15 "Initial temperature at pipe inlet"; + parameter Modelica.Units.SI.Temperature T_start_out=pipeDataULg.T_start_out + + 273.15 "Initial temperature at pipe outlet"; + parameter Modelica.Units.SI.SpecificHeatCapacity cp_default= Medium.specificHeatCapacityCp(state=sta_default) "Heat capacity of medium"; parameter Medium.ThermodynamicState sta_default=Medium.setState_pTX( @@ -94,7 +94,6 @@ model PlugFlowULg "Validation against data from Université de Liège" T_start_in=T_start_in, R=((1/(2*pipe.kIns)*log((0.0603/2 + pipe.dIns)/(0.0603/2))) + 1/(5*(0.0603 + 2*pipe.dIns)))/Modelica.Constants.pi, - nPorts=1, initDelay=true, m_flow_start=pipeDataULg.m_flowIni, cPip=500, @@ -149,7 +148,7 @@ equation 0}}, color={0,127,255})); connect(senTem_out.port_a, senEntOut.port_b) annotation (Line(points={{-160,0},{-140,0}}, color={0,127,255})); - connect(senEntOut.port_a, pipe.ports_b[1]) + connect(senEntOut.port_a, pipe.port_b) annotation (Line(points={{-120,0},{-100,0}}, color={0,127,255})); connect(pipe.port_a, senEntIn.port_b) annotation (Line(points={{-80,0},{-62,0}}, color={0,127,255})); @@ -180,54 +179,55 @@ equation annotation (Line(points={{78,66},{-130,66},{-130,11}}, color={0,0,127})); annotation ( Documentation(info=" -

                      -The example contains -experimental data from a real district heating network. -

                      -

                      -This model compares the results with the original Modelica Standard Library pipes. -

                      -

                      The pipes' temperatures are not initialized. Therefore, results of -outflow temperature before approximately the first 10000 seconds should not be -considered. -

                      -

                      Test bench schematic

                      -

                      \"Schematic

                      -

                      Calibration

                      -

                      -There are some uncertainties about the heat loss coefficient between pipe and -surrounding air as well as regarding the heat conductivity of the insulation -material. -With the -given data, the length specific thermal resistance is R = 2.164 -((m K)/W), calculated as follows: -

                      -

                      -R=((1/(2*pipe.kIns)*log((0.0603+2*pipe.dIns)/(0.0603)))+1/(5*(0.0603+2*pipe.dIns)))/Modelica.Constants.pi

                      -

                      -U = 1/R = 0.462 W/(m K)

                      -", revisions=" -
                        -
                      • -March 7, 2020, by Michael Wetter:
                        -Replaced measured data from specification in Modelica file to external table, -as this reduces the computing time.
                        -This is for - #1289. -
                      • -
                      • -November 24, 2016 by Bram van der Heijde:
                        Add pipe thickness for wall -capacity calculation and expand documentation section.
                      • -
                      • April 2, 2016 by Bram van der Heijde:
                        Change thermal conductivity and -put boundary condition in K. -
                      • -
                      • Januar 26, 2016 by Carles Ribas:
                        First implementation. -
                      • -
                      -"), +

                      + The example contains + experimental data from a real district heating network. +

                      +

                      + This model compares the results with the original Modelica Standard Library pipes. +

                      +

                      The pipes' temperatures are not initialized. Therefore, results of + outflow temperature before approximately the first 10000 seconds should not be + considered. +

                      +

                      Test bench schematic

                      +

                      \"Schematic

                      +

                      Calibration

                      +

                      + There are some uncertainties about the heat loss coefficient between pipe and + surrounding air as well as regarding the heat conductivity of the insulation + material. + With the + given data, the length specific thermal resistance is R = 2.164 + ((m K)/W), calculated as follows: +

                      +

                      + R=((1/(2*pipe.kIns)*log((0.0603+2*pipe.dIns)/(0.0603)))+1/(5*(0.0603+2*pipe.dIns)))/Modelica.Constants.pi

                      +

                      + U = 1/R = 0.462 W/(m K)

                      + ",revisions=" +
                        +
                      • + March 7, 2020, by Michael Wetter:
                        + Replaced measured data from specification in Modelica file to external table, + as this reduces the computing time.
                        + This is for + #1289. +
                      • +
                      • + November 24, 2016 by Bram van der Heijde:
                        Add pipe thickness for wall + capacity calculation and expand documentation section.
                      • +
                      • April 2, 2016 by Bram van der Heijde:
                        Change thermal conductivity and + put boundary condition in K. +
                      • +
                      • Januar 26, 2016 by Carles Ribas:
                        First implementation. +
                      • +
                      + "), experiment(StopTime=875, Tolerance=1e-006), - __Dymola_Commands(file="Resources/Scripts/Dymola/Fluid/FixedResistances/Validation/PlugFlowPipes/PlugFlowULg.mos" + __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FixedResistances/Validation/PlugFlowPipes/PlugFlowULg.mos" "Simulate and plot"), - Diagram(coordinateSystem(extent={{-260,-120},{260,120}}))); + Diagram(coordinateSystem(extent={{-260,-120},{260,120}})), + __Dymola_LockedEditing="Model from IBPSA"); end PlugFlowULg; diff --git a/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/TransportWaterAir.mo b/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/TransportWaterAir.mo index d985d5fecd..f02181629f 100644 --- a/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/TransportWaterAir.mo +++ b/AixLib/Fluid/FixedResistances/Validation/PlugFlowPipes/TransportWaterAir.mo @@ -6,7 +6,7 @@ model TransportWaterAir package MediumA = AixLib.Media.Air(extraPropertiesNames={"CO2"}) "Medium in the duct"; - parameter Modelica.SIunits.Length length=20 "Pipe length"; + parameter Modelica.Units.SI.Length length=20 "Pipe length"; Modelica.Blocks.Sources.Step Tin( startTime=100, @@ -22,7 +22,6 @@ model TransportWaterAir annotation (Placement(transformation(extent={{82,16},{62,36}}))); AixLib.Fluid.FixedResistances.PlugFlowPipe pip( redeclare package Medium = MediumW, - nPorts=1, dIns=0.05, kIns=0.028, m_flow_nominal=1, @@ -62,7 +61,6 @@ model TransportWaterAir "Pressure boundary condition" annotation (Placement(transformation(extent={{80,-80},{60,-60}}))); PlugFlowPipe duc( - nPorts=1, dIns=0.05, kIns=0.028, m_flow_nominal=1, @@ -112,7 +110,7 @@ equation connect(Tin.y, sou.T_in) annotation (Line(points={{-71,30},{-62,30}}, color={0,0,127})); - connect(pip.ports_b[1], senTemOutW.port_a) + connect(pip.port_b, senTemOutW.port_a) annotation (Line(points={{20,26},{30,26}}, color={0,127,255})); connect(senTemOutW.port_b, sin.ports[1]) annotation (Line(points={{50,26},{62,26}}, color={0,127,255})); @@ -122,7 +120,7 @@ equation connect(senTemIn.port_b, pip.port_a) annotation (Line(points={{-10,26},{0,26}}, color={0,127,255})); - connect(duc.ports_b[1],senTemOutA. port_a) + connect(duc.port_b,senTemOutA. port_a) annotation (Line(points={{18,-70},{28,-70}}, color={0,127,255})); connect(senTemOutA.port_b, sin1.ports[1]) annotation (Line(points={{48,-70},{60,-70}}, color={0,127,255})); @@ -138,22 +136,22 @@ equation connect(Tin.y, sou1.T_in) annotation (Line(points={{-71,30},{-68,30},{-68,-66}, {-64,-66}}, color={0,0,127})); annotation ( - __Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/FixedResistances/Validation/PlugFlowPipes/TransportWaterAir.mos" + __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FixedResistances/Validation/PlugFlowPipes/TransportWaterAir.mos" "Simulate and Plot"), experiment(StopTime=1000, Tolerance=1e-006), Documentation(info=" -

                      -Validation model in which a step input is applied to -the transport of air and water with a species concentration. -

                      -", revisions=" -
                        -
                      • -October 25, 2017 by Michael Wetter:
                        -First implementation. -
                      • -
                      -"), - Diagram(coordinateSystem(extent={{-100,-140},{100,100}}))); +

                      + Validation model in which a step input is applied to + the transport of air and water with a species concentration. +

                      + ",revisions=" +
                        +
                      • + October 25, 2017 by Michael Wetter:
                        + First implementation. +
                      • +
                      + "), + Diagram(coordinateSystem(extent={{-100,-140},{100,100}})), + __Dymola_LockedEditing="Model from IBPSA"); end TransportWaterAir; diff --git a/AixLib/Fluid/FixedResistances/Validation/PressureDropsExplicit.mo b/AixLib/Fluid/FixedResistances/Validation/PressureDropsExplicit.mo index d11d075773..f9c201c88e 100644 --- a/AixLib/Fluid/FixedResistances/Validation/PressureDropsExplicit.mo +++ b/AixLib/Fluid/FixedResistances/Validation/PressureDropsExplicit.mo @@ -230,15 +230,16 @@ experiment(StartTime=-1, Tolerance=1e-6, StopTime=1.0), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FixedResistances/Validation/PressureDropsExplicit.mos" "Simulate and plot"), Documentation(info=" -

                      -This model tests multiple flow resistances in series. -

                      -", revisions=" -
                        -
                      • -July 20, 2007 by Michael Wetter:
                        -First implementation. -
                      • -
                      -")); +

                      + This model tests multiple flow resistances in series. +

                      + ",revisions=" +
                        +
                      • + July 20, 2007 by Michael Wetter:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end PressureDropsExplicit; diff --git a/AixLib/Fluid/FixedResistances/Validation/PressureDropsExplicitLinearized.mo b/AixLib/Fluid/FixedResistances/Validation/PressureDropsExplicitLinearized.mo index a60580f65c..6f0b35523a 100644 --- a/AixLib/Fluid/FixedResistances/Validation/PressureDropsExplicitLinearized.mo +++ b/AixLib/Fluid/FixedResistances/Validation/PressureDropsExplicitLinearized.mo @@ -15,16 +15,16 @@ experiment(StartTime=-1, Tolerance=1e-6, StopTime=1.0), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FixedResistances/Validation/PressureDropsExplicitLinearized.mos" "Simulate and plot"), Documentation(info=" -

                      -This model tests multiple linearized flow resistances in series. -

                      -", revisions=" -
                        -
                      • -December 1, 2016, by Michael Wetter:
                        -First implementation. -
                      • -
                      -")); - +

                      + This model tests multiple linearized flow resistances in series. +

                      + ",revisions=" +
                        +
                      • + December 1, 2016, by Michael Wetter:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end PressureDropsExplicitLinearized; diff --git a/AixLib/Fluid/FixedResistances/Validation/PressureDropsParallel.mo b/AixLib/Fluid/FixedResistances/Validation/PressureDropsParallel.mo index 3295875ca0..0c5ff4c4cd 100644 --- a/AixLib/Fluid/FixedResistances/Validation/PressureDropsParallel.mo +++ b/AixLib/Fluid/FixedResistances/Validation/PressureDropsParallel.mo @@ -88,15 +88,16 @@ equation annotation (experiment(Tolerance=1e-6, StopTime=1.0), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FixedResistances/Validation/PressureDropsParallel.mos" "Simulate and plot"), Documentation(info=" -

                      -This model tests two resistances in parallel. -

                      -", revisions=" -
                        -
                      • -July 20, 2007 by Michael Wetter:
                        -First implementation. -
                      • -
                      -")); +

                      + This model tests two resistances in parallel. +

                      + ",revisions=" +
                        +
                      • + July 20, 2007 by Michael Wetter:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end PressureDropsParallel; diff --git a/AixLib/Fluid/FixedResistances/Validation/PressureDropsSeries.mo b/AixLib/Fluid/FixedResistances/Validation/PressureDropsSeries.mo index 46bf721754..477f8ca0b7 100644 --- a/AixLib/Fluid/FixedResistances/Validation/PressureDropsSeries.mo +++ b/AixLib/Fluid/FixedResistances/Validation/PressureDropsSeries.mo @@ -6,7 +6,7 @@ model PressureDropsSeries "Test of multiple resistances in series" parameter Integer nRes(min=2) = 10 "Number of resistances"; - parameter Modelica.SIunits.PressureDifference dp_nominal = 5 + parameter Modelica.Units.SI.PressureDifference dp_nominal=5 "Nominal pressure drop for each resistance"; Modelica.Blocks.Sources.Ramp P( @@ -54,15 +54,16 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/FixedResistances/Validation/PressureDropsSeries.mos" "Simulate and plot"), Documentation(info=" -

                      -This model tests multiple resistances in series. -

                      -", revisions=" -
                        -
                      • -July 20, 2007 by Michael Wetter:
                        -First implementation. -
                      • -
                      -")); +

                      + This model tests multiple resistances in series. +

                      + ",revisions=" +
                        +
                      • + July 20, 2007 by Michael Wetter:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end PressureDropsSeries; diff --git a/AixLib/Fluid/FixedResistances/package.mo b/AixLib/Fluid/FixedResistances/package.mo index 21a14ceb34..894f1c9827 100644 --- a/AixLib/Fluid/FixedResistances/package.mo +++ b/AixLib/Fluid/FixedResistances/package.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid; +within AixLib.Fluid; package FixedResistances "Package with models for fixed flow resistances" extends Modelica.Icons.VariantsPackage; diff --git a/AixLib/Fluid/FixedResistances/package.order b/AixLib/Fluid/FixedResistances/package.order index 31d1618c89..308eca1d36 100644 --- a/AixLib/Fluid/FixedResistances/package.order +++ b/AixLib/Fluid/FixedResistances/package.order @@ -6,6 +6,7 @@ Junction LosslessPipe Pipe PlugFlowPipe +PlugFlowPipeDiscretized PressureDrop SimplePipe Examples diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Examples/InternalHEXOneUTube.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Examples/InternalHEXOneUTube.mo index 04e94d7c17..1b6f307ecd 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Examples/InternalHEXOneUTube.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Examples/InternalHEXOneUTube.mo @@ -5,7 +5,7 @@ model InternalHEXOneUTube parameter Integer nSeg(min=1) = 10 "Number of segments to use in vertical discretization of the boreholes"; - parameter Modelica.SIunits.Length hSeg = borFieDat.conDat.hBor/nSeg + parameter Modelica.Units.SI.Length hSeg=borFieDat.conDat.hBor/nSeg "Length of the internal heat exchanger"; package Medium = Modelica.Media.Water.ConstantPropertyLiquidWater; @@ -88,18 +88,19 @@ equation "modelica://AixLib/Resources/Scripts/Dymola/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Examples/InternalHEXOneUTube.mos" "Simulate and plot"), Documentation(info=" -This example simulates the interior thermal behavior of a single U-tube borehole segment. -", revisions=" -
                        -
                      • -May 15, 2019, by Jianjun Hu:
                        -Replaced fluid source FixedBoundary with Boundary_pT. This is for - #1072. -
                      • -
                      • -June 2018, by Damien Picard:
                        -First implementation. -
                      • -
                      -")); + This example simulates the interior thermal behavior of a single U-tube borehole segment. + ",revisions=" +
                        +
                      • + May 15, 2019, by Jianjun Hu:
                        + Replaced fluid source FixedBoundary with Boundary_pT. This is for + #1072. +
                      • +
                      • + June 2018, by Damien Picard:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end InternalHEXOneUTube; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Examples/InternalHEXTwoUTube.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Examples/InternalHEXTwoUTube.mo index 639775d004..9f94dcd369 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Examples/InternalHEXTwoUTube.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Examples/InternalHEXTwoUTube.mo @@ -5,7 +5,7 @@ model InternalHEXTwoUTube parameter Integer nSeg(min=1) = 10 "Number of segments to use in vertical discretization of the boreholes"; - parameter Modelica.SIunits.Length hSeg = borFieDat.conDat.hBor/nSeg + parameter Modelica.Units.SI.Length hSeg=borFieDat.conDat.hBor/nSeg "Length of the internal heat exchanger"; package Medium = Modelica.Media.Water.ConstantPropertyLiquidWater; @@ -116,18 +116,19 @@ equation "modelica://AixLib/Resources/Scripts/Dymola/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Examples/InternalHEXTwoUTube.mos" "Simulate and plot"), Documentation(info=" -This example simulates the interior thermal behavior of a double U-tube borehole segment. -", revisions=" -
                        -
                      • -May 15, 2019, by Jianjun Hu:
                        -Replaced fluid source FixedBoundary with Boundary_pT. This is for - #1072. -
                      • -
                      • -June 2018, by Damien Picard:
                        -First implementation. -
                      • -
                      -")); + This example simulates the interior thermal behavior of a double U-tube borehole segment. + ",revisions=" +
                        +
                      • + May 15, 2019, by Jianjun Hu:
                        + Replaced fluid source FixedBoundary with Boundary_pT. This is for + #1072. +
                      • +
                      • + June 2018, by Damien Picard:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end InternalHEXTwoUTube; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Examples/InternalResistancesOneUTube.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Examples/InternalResistancesOneUTube.mo index 619e05b117..cb539317c2 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Examples/InternalResistancesOneUTube.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Examples/InternalResistancesOneUTube.mo @@ -4,12 +4,15 @@ model InternalResistancesOneUTube "Validation of InternalResistancesOneUTube" parameter Integer nSeg(min=1) = 10 "Number of segments to use in vertical discretization of the boreholes"; - parameter Modelica.SIunits.Length hSeg = borFieDat.conDat.hBor/nSeg + parameter Modelica.Units.SI.Length hSeg=borFieDat.conDat.hBor/nSeg "Length of the internal heat exchanger"; - parameter Modelica.SIunits.ThermalResistance Rgb_val=0.0430511 "Grout node to borehole wall thermal resistance"; - parameter Modelica.SIunits.ThermalResistance Rgg_val=0.00605573 "Grout node to grout node thermal resistance"; - parameter Modelica.SIunits.ThermalResistance RCondGro_val=0.14285 "Pipe to grout node thermal resistance"; - parameter Modelica.SIunits.Temperature T_start=298.15 "Initial temperature"; + parameter Modelica.Units.SI.ThermalResistance Rgb_val=0.0430511 + "Grout node to borehole wall thermal resistance"; + parameter Modelica.Units.SI.ThermalResistance Rgg_val=0.00605573 + "Grout node to grout node thermal resistance"; + parameter Modelica.Units.SI.ThermalResistance RCondGro_val=0.14285 + "Pipe to grout node thermal resistance"; + parameter Modelica.Units.SI.Temperature T_start=298.15 "Initial temperature"; AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.BaseClasses.InternalResistancesOneUTube intRes1UTub( @@ -59,16 +62,17 @@ equation "modelica://AixLib/Resources/Scripts/Dymola/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Examples/InternalResistancesOneUTube.mos" "Simulate and plot"), Documentation(info=" - This example tests the implementation of - -AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.BaseClasses.InternalResistancesOneUTube -for the dynamic behavior of the filling material in a single U-tube borehole. -", revisions=" -
                        -
                      • -July 19, 2018, by Massimo Cimmino:
                        -First implementation. -
                      • -
                      -")); + This example tests the implementation of + + AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.BaseClasses.InternalResistancesOneUTube + for the dynamic behavior of the filling material in a single U-tube borehole. + ",revisions=" +
                        +
                      • + July 19, 2018, by Massimo Cimmino:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end InternalResistancesOneUTube; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Examples/InternalResistancesTwoUTube.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Examples/InternalResistancesTwoUTube.mo index d459e61c33..439e4a2cc4 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Examples/InternalResistancesTwoUTube.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Examples/InternalResistancesTwoUTube.mo @@ -4,14 +4,17 @@ model InternalResistancesTwoUTube "Validation of InternalResistancesTwoUTube" parameter Integer nSeg(min=1) = 10 "Number of segments to use in vertical discretization of the boreholes"; - parameter Modelica.SIunits.Length hSeg = borFieDat.conDat.hBor/nSeg + parameter Modelica.Units.SI.Length hSeg=borFieDat.conDat.hBor/nSeg "Length of the internal heat exchanger"; - parameter Modelica.SIunits.ThermalResistance Rgb_val=0.572601 "Grout node to borehole wall thermal resistance"; - parameter Modelica.SIunits.ThermalResistance Rgg1_val=0.0406121 "Grout node to grout node thermal resistance"; - parameter Modelica.SIunits.ThermalResistance Rgg2_val=0.216904 + parameter Modelica.Units.SI.ThermalResistance Rgb_val=0.572601 + "Grout node to borehole wall thermal resistance"; + parameter Modelica.Units.SI.ThermalResistance Rgg1_val=0.0406121 + "Grout node to grout node thermal resistance"; + parameter Modelica.Units.SI.ThermalResistance Rgg2_val=0.216904 "Thermal resistance between two grout nodes opposite to each other"; - parameter Modelica.SIunits.ThermalResistance RCondGro_val=0.195099 "Pipe to grout node thermal resistance"; - parameter Modelica.SIunits.Temperature T_start=298.15 "Initial temperature"; + parameter Modelica.Units.SI.ThermalResistance RCondGro_val=0.195099 + "Pipe to grout node thermal resistance"; + parameter Modelica.Units.SI.Temperature T_start=298.15 "Initial temperature"; Modelica.Thermal.HeatTransfer.Sources.FixedTemperature TWal(T=T_start) "Borehole wall temperature" @@ -73,16 +76,17 @@ equation "modelica://AixLib/Resources/Scripts/Dymola/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Examples/InternalResistancesTwoUTube.mos" "Simulate and plot"), Documentation(info=" -This example tests the implementation of - -AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.BaseClasses.InternalResistancesTwoUTube -for the dynamic behavior of the filling material in a double U-tube borehole. -", revisions=" -
                        -
                      • -July 19, 2018, by Massimo Cimmino:
                        -First implementation. -
                      • -
                      -")); + This example tests the implementation of + + AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.BaseClasses.InternalResistancesTwoUTube + for the dynamic behavior of the filling material in a double U-tube borehole. + ",revisions=" +
                        +
                      • + July 19, 2018, by Massimo Cimmino:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end InternalResistancesTwoUTube; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/Validation/ConvectionResistanceCircularPipe.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/Validation/ConvectionResistanceCircularPipe.mo index 8ef1633772..68f941e72e 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/Validation/ConvectionResistanceCircularPipe.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/Validation/ConvectionResistanceCircularPipe.mo @@ -3,23 +3,23 @@ model ConvectionResistanceCircularPipe "Validation of the correlation used to evaluate the convection resistance in circular pipes" extends Modelica.Icons.Example; - parameter Modelica.SIunits.Height hSeg = 1.0 "Height of the element"; - parameter Modelica.SIunits.Radius rTub = 0.02 "Tube radius"; - parameter Modelica.SIunits.Length eTub = 0.002 "Tube thickness"; + parameter Modelica.Units.SI.Height hSeg=1.0 "Height of the element"; + parameter Modelica.Units.SI.Radius rTub=0.02 "Tube radius"; + parameter Modelica.Units.SI.Length eTub=0.002 "Tube thickness"; // thermal properties - parameter Modelica.SIunits.ThermalConductivity kMed = 0.6 + parameter Modelica.Units.SI.ThermalConductivity kMed=0.6 "Thermal conductivity of the fluid"; - parameter Modelica.SIunits.DynamicViscosity muMed = 1.002e-3 + parameter Modelica.Units.SI.DynamicViscosity muMed=1.002e-3 "Dynamic viscosity of the fluid"; - parameter Modelica.SIunits.SpecificHeatCapacity cpMed = 4182 + parameter Modelica.Units.SI.SpecificHeatCapacity cpMed=4182 "Specific heat capacity of the fluid"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal = 1 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=1 "Nominal mass flow rate"; Real Re "Reynolds number"; Real Nu "Reynolds number"; - Modelica.SIunits.MassFlowRate m_flow "Mass flow rate"; - Modelica.SIunits.ThermalResistance RConv "Convection resistance"; + Modelica.Units.SI.MassFlowRate m_flow "Mass flow rate"; + Modelica.Units.SI.ThermalResistance RConv "Convection resistance"; equation @@ -41,22 +41,23 @@ equation "modelica://AixLib/Resources/Scripts/Dymola/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/Validation/ConvectionResistanceCircularPipe.mos" "Simulate and plot"), Documentation(info=" -

                      -This example validates the implementation of - -AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.BaseClasses.Functions.convectionResistanceCircularPipe -for the evaluation of the convection thermal resistance in circular pipes. -

                      -

                      -In this validation case, the fluid mass flow rate increases with time so that -Re = t. -

                      -", revisions=" -
                        -
                      • -June 21, 2018, by Massimo Cimmino:
                        -First implementation. -
                      • -
                      -")); +

                      + This example validates the implementation of + + AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.BaseClasses.Functions.convectionResistanceCircularPipe + for the evaluation of the convection thermal resistance in circular pipes. +

                      +

                      + In this validation case, the fluid mass flow rate increases with time so that + Re = t. +

                      + ",revisions=" +
                        +
                      • + June 21, 2018, by Massimo Cimmino:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end ConvectionResistanceCircularPipe; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/Validation/InternalResistancesOneUTube.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/Validation/InternalResistancesOneUTube.mo index 994c86c4ff..da6053348d 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/Validation/InternalResistancesOneUTube.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/Validation/InternalResistancesOneUTube.mo @@ -7,39 +7,39 @@ model InternalResistancesOneUTube // Geometry of the borehole parameter Real Rb(unit="(m.K)/W") = 0.0 "Borehole thermal resistance (Not used)"; - parameter Modelica.SIunits.Height hSeg = 1.0 "Height of the element"; - parameter Modelica.SIunits.Radius rBor = 0.07 "Radius of the borehole"; + parameter Modelica.Units.SI.Height hSeg=1.0 "Height of the element"; + parameter Modelica.Units.SI.Radius rBor=0.07 "Radius of the borehole"; // Geometry of the pipe - parameter Modelica.SIunits.Radius rTub = 0.02 "Radius of the tube"; - parameter Modelica.SIunits.Length eTub = 0.002 "Thickness of the tubes"; - parameter Modelica.SIunits.Length sha = 0.03 + parameter Modelica.Units.SI.Radius rTub=0.02 "Radius of the tube"; + parameter Modelica.Units.SI.Length eTub=0.002 "Thickness of the tubes"; + parameter Modelica.Units.SI.Length sha=0.03 "Shank spacing, defined as the distance between the center of a pipe and the center of the borehole"; // Thermal properties (Solids) - parameter Modelica.SIunits.ThermalConductivity kFil = 1.5 + parameter Modelica.Units.SI.ThermalConductivity kFil=1.5 "Thermal conductivity of the grout"; - parameter Modelica.SIunits.ThermalConductivity kSoi = 2.5 + parameter Modelica.Units.SI.ThermalConductivity kSoi=2.5 "Thermal conductivity of the soi"; - parameter Modelica.SIunits.ThermalConductivity kTub = 0.4 + parameter Modelica.Units.SI.ThermalConductivity kTub=0.4 "Thermal conductivity of the tube"; // Thermal properties (Fluid) - parameter Modelica.SIunits.ThermalConductivity kMed = 0.6 + parameter Modelica.Units.SI.ThermalConductivity kMed=0.6 "Thermal conductivity of the fluid"; - parameter Modelica.SIunits.DynamicViscosity muMed = 1.0e-3 + parameter Modelica.Units.SI.DynamicViscosity muMed=1.0e-3 "Dynamic viscosity of the fluid"; - parameter Modelica.SIunits.SpecificHeatCapacity cpMed = 4180.0 + parameter Modelica.Units.SI.SpecificHeatCapacity cpMed=4180.0 "Specific heat capacity of the fluid"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal = 0.25 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=0.25 "Nominal mass flow rate"; // Outputs parameter Real x(fixed=false) "Capacity location"; - parameter Modelica.SIunits.ThermalResistance Rgb(fixed=false) + parameter Modelica.Units.SI.ThermalResistance Rgb(fixed=false) "Thermal resistance between grout zone and borehole wall"; - parameter Modelica.SIunits.ThermalResistance Rgg(fixed=false) + parameter Modelica.Units.SI.ThermalResistance Rgg(fixed=false) "Thermal resistance between the two grout zones"; - parameter Modelica.SIunits.ThermalResistance RCondGro(fixed=false) + parameter Modelica.Units.SI.ThermalResistance RCondGro(fixed=false) "Thermal resistance between: pipe wall to capacity in grout"; initial equation @@ -65,19 +65,20 @@ initial equation "Simulate and plot"), experiment(Tolerance=1e-6, StopTime=1.0), Documentation(info=" -

                      -This example validates the implementation of - -AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.BaseClasses.Functions.internalResistancesOneUTube -for the evaluation of the internal thermal resistances of a single U-tube -borehole. -

                      -", revisions=" -
                        -
                      • -June 21, 2018, by Massimo Cimmino:
                        -First implementation. -
                      • -
                      -")); +

                      + This example validates the implementation of + + AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.BaseClasses.Functions.internalResistancesOneUTube + for the evaluation of the internal thermal resistances of a single U-tube + borehole. +

                      + ",revisions=" +
                        +
                      • + June 21, 2018, by Massimo Cimmino:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end InternalResistancesOneUTube; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/Validation/InternalResistancesOneUTubeNegative.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/Validation/InternalResistancesOneUTubeNegative.mo index 1060d96679..216adb374f 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/Validation/InternalResistancesOneUTubeNegative.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/Validation/InternalResistancesOneUTubeNegative.mo @@ -6,39 +6,39 @@ model InternalResistancesOneUTubeNegative // Geometry of the borehole parameter Real Rb(unit="(m.K)/W") = 0.0 "Borehole thermal resistance (Not used)"; - parameter Modelica.SIunits.Height hSeg = 1.0 "Height of the element"; - parameter Modelica.SIunits.Radius rBor = 0.07 "Radius of the borehole"; + parameter Modelica.Units.SI.Height hSeg=1.0 "Height of the element"; + parameter Modelica.Units.SI.Radius rBor=0.07 "Radius of the borehole"; // Geometry of the pipe - parameter Modelica.SIunits.Radius rTub = 0.02 "Radius of the tube"; - parameter Modelica.SIunits.Length eTub = 0.002 "Thickness of the tubes"; - parameter Modelica.SIunits.Length sha = 0.05 + parameter Modelica.Units.SI.Radius rTub=0.02 "Radius of the tube"; + parameter Modelica.Units.SI.Length eTub=0.002 "Thickness of the tubes"; + parameter Modelica.Units.SI.Length sha=0.05 "Shank spacing, defined as the distance between the center of a pipe and the center of the borehole"; // Thermal properties (Solids) - parameter Modelica.SIunits.ThermalConductivity kFil = 1.5 + parameter Modelica.Units.SI.ThermalConductivity kFil=1.5 "Thermal conductivity of the grout"; - parameter Modelica.SIunits.ThermalConductivity kSoi = 2.5 + parameter Modelica.Units.SI.ThermalConductivity kSoi=2.5 "Thermal conductivity of the soi"; - parameter Modelica.SIunits.ThermalConductivity kTub = 0.4 + parameter Modelica.Units.SI.ThermalConductivity kTub=0.4 "Thermal conductivity of the tube"; // Thermal properties (Fluid) - parameter Modelica.SIunits.ThermalConductivity kMed = 0.6 + parameter Modelica.Units.SI.ThermalConductivity kMed=0.6 "Thermal conductivity of the fluid"; - parameter Modelica.SIunits.DynamicViscosity muMed = 1.0e-3 + parameter Modelica.Units.SI.DynamicViscosity muMed=1.0e-3 "Dynamic viscosity of the fluid"; - parameter Modelica.SIunits.SpecificHeatCapacity cpMed = 4180.0 + parameter Modelica.Units.SI.SpecificHeatCapacity cpMed=4180.0 "Specific heat capacity of the fluid"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal = 0.25 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=0.25 "Nominal mass flow rate"; // Outputs parameter Real x(fixed=false) "Capacity location"; - parameter Modelica.SIunits.ThermalResistance Rgb(fixed=false) + parameter Modelica.Units.SI.ThermalResistance Rgb(fixed=false) "Thermal resistance between grout zone and borehole wall"; - parameter Modelica.SIunits.ThermalResistance Rgg(fixed=false) + parameter Modelica.Units.SI.ThermalResistance Rgg(fixed=false) "Thermal resistance between the two grout zones"; - parameter Modelica.SIunits.ThermalResistance RCondGro(fixed=false) + parameter Modelica.Units.SI.ThermalResistance RCondGro(fixed=false) "Thermal resistance between: pipe wall to capacity in grout"; initial equation @@ -64,24 +64,25 @@ initial equation "Simulate and plot"), experiment(Tolerance=1e-6, StopTime=1.0), Documentation(info=" -

                      -This example validates the implementation of - -AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.BaseClasses.Functions.internalResistancesOneUTube -for the evaluation of the internal thermal resistances of a single U-tube -borehole. -

                      -

                      -In this case, the shank spacing is defined such that the pipes are close to the -borehole wall, rendering the short-circuit thermal resistances negative. The -capacity location x is then automatically set to zero. -

                      -", revisions=" -
                        -
                      • -June 21, 2018, by Massimo Cimmino:
                        -First implementation. -
                      • -
                      -")); +

                      + This example validates the implementation of + + AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.BaseClasses.Functions.internalResistancesOneUTube + for the evaluation of the internal thermal resistances of a single U-tube + borehole. +

                      +

                      + In this case, the shank spacing is defined such that the pipes are close to the + borehole wall, rendering the short-circuit thermal resistances negative. The + capacity location x is then automatically set to zero. +

                      + ",revisions=" +
                        +
                      • + June 21, 2018, by Massimo Cimmino:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end InternalResistancesOneUTubeNegative; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/Validation/InternalResistancesTwoUTube.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/Validation/InternalResistancesTwoUTube.mo index 780b49146c..06d6456981 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/Validation/InternalResistancesTwoUTube.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/Validation/InternalResistancesTwoUTube.mo @@ -6,41 +6,41 @@ model InternalResistancesTwoUTube // Geometry of the borehole parameter Real Rb(unit="(m.K)/W") = 0.0 "Borehole thermal resistance (Not used)"; - parameter Modelica.SIunits.Height hSeg = 1.0 "Height of the element"; - parameter Modelica.SIunits.Radius rBor = 0.07 "Radius of the borehole"; + parameter Modelica.Units.SI.Height hSeg=1.0 "Height of the element"; + parameter Modelica.Units.SI.Radius rBor=0.07 "Radius of the borehole"; // Geometry of the pipe - parameter Modelica.SIunits.Radius rTub = 0.02 "Radius of the tube"; - parameter Modelica.SIunits.Length eTub = 0.002 "Thickness of the tubes"; - parameter Modelica.SIunits.Length sha = 0.025 + parameter Modelica.Units.SI.Radius rTub=0.02 "Radius of the tube"; + parameter Modelica.Units.SI.Length eTub=0.002 "Thickness of the tubes"; + parameter Modelica.Units.SI.Length sha=0.025 "Shank spacing, defined as the distance between the center of a pipe and the center of the borehole"; // Thermal properties (Solids) - parameter Modelica.SIunits.ThermalConductivity kFil = 0.5 + parameter Modelica.Units.SI.ThermalConductivity kFil=0.5 "Thermal conductivity of the grout"; - parameter Modelica.SIunits.ThermalConductivity kSoi = 2.5 + parameter Modelica.Units.SI.ThermalConductivity kSoi=2.5 "Thermal conductivity of the soi"; - parameter Modelica.SIunits.ThermalConductivity kTub = 0.4 + parameter Modelica.Units.SI.ThermalConductivity kTub=0.4 "Thermal conductivity of the tube"; // Thermal properties (Fluid) - parameter Modelica.SIunits.ThermalConductivity kMed = 0.6 + parameter Modelica.Units.SI.ThermalConductivity kMed=0.6 "Thermal conductivity of the fluid"; - parameter Modelica.SIunits.DynamicViscosity muMed = 1.0e-3 + parameter Modelica.Units.SI.DynamicViscosity muMed=1.0e-3 "Dynamic viscosity of the fluid"; - parameter Modelica.SIunits.SpecificHeatCapacity cpMed = 4180.0 + parameter Modelica.Units.SI.SpecificHeatCapacity cpMed=4180.0 "Specific heat capacity of the fluid"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal = 0.25 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=0.25 "Nominal mass flow rate"; // Outputs parameter Real x(fixed=false) "Capacity location"; - parameter Modelica.SIunits.ThermalResistance Rgb(fixed=false) + parameter Modelica.Units.SI.ThermalResistance Rgb(fixed=false) "Thermal resistance between grout zone and borehole wall"; - parameter Modelica.SIunits.ThermalResistance Rgg1(fixed=false) + parameter Modelica.Units.SI.ThermalResistance Rgg1(fixed=false) "Thermal resistance between the two adjacent grout zones"; - parameter Modelica.SIunits.ThermalResistance Rgg2(fixed=false) + parameter Modelica.Units.SI.ThermalResistance Rgg2(fixed=false) "Thermal resistance between the two opposite grout zones"; - parameter Modelica.SIunits.ThermalResistance RCondGro(fixed=false) + parameter Modelica.Units.SI.ThermalResistance RCondGro(fixed=false) "Thermal resistance between: pipe wall to capacity in grout"; initial equation @@ -66,19 +66,20 @@ initial equation "Simulate and plot"), experiment(Tolerance=1e-6, StopTime=1.0), Documentation(info=" -

                      -This example validates the implementation of - -AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.BaseClasses.Functions.internalResistancesTwoUTube -for the evaluation of the internal thermal resistances of a double U-tube -borehole. -

                      -", revisions=" -
                        -
                      • -June 21, 2018, by Massimo Cimmino:
                        -First implementation. -
                      • -
                      -")); +

                      + This example validates the implementation of + + AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.BaseClasses.Functions.internalResistancesTwoUTube + for the evaluation of the internal thermal resistances of a double U-tube + borehole. +

                      + ",revisions=" +
                        +
                      • + June 21, 2018, by Massimo Cimmino:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end InternalResistancesTwoUTube; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/Validation/InternalResistancesTwoUTubeNegative.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/Validation/InternalResistancesTwoUTubeNegative.mo index 3674e97a80..1e3728ea1f 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/Validation/InternalResistancesTwoUTubeNegative.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/Validation/InternalResistancesTwoUTubeNegative.mo @@ -6,41 +6,41 @@ model InternalResistancesTwoUTubeNegative // Geometry of the borehole parameter Real Rb(unit="(m.K)/W") = 0.0 "Borehole thermal resistance (Not used)"; - parameter Modelica.SIunits.Height hSeg = 1.0 "Height of the element"; - parameter Modelica.SIunits.Radius rBor = 0.07 "Radius of the borehole"; + parameter Modelica.Units.SI.Height hSeg=1.0 "Height of the element"; + parameter Modelica.Units.SI.Radius rBor=0.07 "Radius of the borehole"; // Geometry of the pipe - parameter Modelica.SIunits.Radius rTub = 0.02 "Radius of the tube"; - parameter Modelica.SIunits.Length eTub = 0.002 "Thickness of the tubes"; - parameter Modelica.SIunits.Length sha = 0.05 + parameter Modelica.Units.SI.Radius rTub=0.02 "Radius of the tube"; + parameter Modelica.Units.SI.Length eTub=0.002 "Thickness of the tubes"; + parameter Modelica.Units.SI.Length sha=0.05 "Shank spacing, defined as the distance between the center of a pipe and the center of the borehole"; // Thermal properties (Solids) - parameter Modelica.SIunits.ThermalConductivity kFil = 1.5 + parameter Modelica.Units.SI.ThermalConductivity kFil=1.5 "Thermal conductivity of the grout"; - parameter Modelica.SIunits.ThermalConductivity kSoi = 2.5 + parameter Modelica.Units.SI.ThermalConductivity kSoi=2.5 "Thermal conductivity of the soi"; - parameter Modelica.SIunits.ThermalConductivity kTub = 0.4 + parameter Modelica.Units.SI.ThermalConductivity kTub=0.4 "Thermal conductivity of the tube"; // Thermal properties (Fluid) - parameter Modelica.SIunits.ThermalConductivity kMed = 0.6 + parameter Modelica.Units.SI.ThermalConductivity kMed=0.6 "Thermal conductivity of the fluid"; - parameter Modelica.SIunits.DynamicViscosity muMed = 1.0e-3 + parameter Modelica.Units.SI.DynamicViscosity muMed=1.0e-3 "Dynamic viscosity of the fluid"; - parameter Modelica.SIunits.SpecificHeatCapacity cpMed = 4180.0 + parameter Modelica.Units.SI.SpecificHeatCapacity cpMed=4180.0 "Specific heat capacity of the fluid"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal = 0.25 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=0.25 "Nominal mass flow rate"; // Outputs parameter Real x(fixed=false) "Capacity location"; - parameter Modelica.SIunits.ThermalResistance Rgb(fixed=false) + parameter Modelica.Units.SI.ThermalResistance Rgb(fixed=false) "Thermal resistance between grout zone and borehole wall"; - parameter Modelica.SIunits.ThermalResistance Rgg1(fixed=false) + parameter Modelica.Units.SI.ThermalResistance Rgg1(fixed=false) "Thermal resistance between the two adjacent grout zones"; - parameter Modelica.SIunits.ThermalResistance Rgg2(fixed=false) + parameter Modelica.Units.SI.ThermalResistance Rgg2(fixed=false) "Thermal resistance between the two opposite grout zones"; - parameter Modelica.SIunits.ThermalResistance RCondGro(fixed=false) + parameter Modelica.Units.SI.ThermalResistance RCondGro(fixed=false) "Thermal resistance between: pipe wall to capacity in grout"; initial equation @@ -66,24 +66,25 @@ initial equation "Simulate and plot"), experiment(Tolerance=1e-6, StopTime=1.0), Documentation(info=" -

                      -This example validates the implementation of - -AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.BaseClasses.Functions.internalResistancesTwoUTube -for the evaluation of the internal thermal resistances of a double U-tube -borehole. -

                      -

                      -In this case, the shank spacing is defined such that the pipes are close to the -borehole wall, rendering the short-circuit thermal resistances negative. The -capacity location x is then automatically set to zero. -

                      -", revisions=" -
                        -
                      • -June 21, 2018, by Massimo Cimmino:
                        -First implementation. -
                      • -
                      -")); +

                      + This example validates the implementation of + + AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.BaseClasses.Functions.internalResistancesTwoUTube + for the evaluation of the internal thermal resistances of a double U-tube + borehole. +

                      +

                      + In this case, the shank spacing is defined such that the pipes are close to the + borehole wall, rendering the short-circuit thermal resistances negative. The + capacity location x is then automatically set to zero. +

                      + ",revisions=" +
                        +
                      • + June 21, 2018, by Massimo Cimmino:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end InternalResistancesTwoUTubeNegative; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/Validation/MultipoleThermalResistances_OneUTube.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/Validation/MultipoleThermalResistances_OneUTube.mo index 1d8f9fc33c..aab3a8d335 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/Validation/MultipoleThermalResistances_OneUTube.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/Validation/MultipoleThermalResistances_OneUTube.mo @@ -5,21 +5,21 @@ model MultipoleThermalResistances_OneUTube parameter Integer nPip=2 "Number of pipes"; parameter Integer J=3 "Number of multipoles"; - parameter Modelica.SIunits.Position[nPip] xPip={0.03, -0.03} + parameter Modelica.Units.SI.Position[nPip] xPip={0.03,-0.03} "x-Coordinates of pipes"; - parameter Modelica.SIunits.Position[nPip] yPip={0.00, 0.02} + parameter Modelica.Units.SI.Position[nPip] yPip={0.00,0.02} "y-Coordinates of pipes"; - parameter Modelica.SIunits.Radius rBor=0.07 "Borehole radius"; - parameter Modelica.SIunits.Radius[nPip] rPip=fill(0.02, nPip) + parameter Modelica.Units.SI.Radius rBor=0.07 "Borehole radius"; + parameter Modelica.Units.SI.Radius[nPip] rPip=fill(0.02, nPip) "Outter radius of pipes"; - parameter Modelica.SIunits.ThermalConductivity kFil=1.5 + parameter Modelica.Units.SI.ThermalConductivity kFil=1.5 "Thermal conductivity of grouting material"; - parameter Modelica.SIunits.ThermalConductivity kSoi=2.5 + parameter Modelica.Units.SI.ThermalConductivity kSoi=2.5 "Thermal conductivity of soil material"; parameter Real[nPip] RFluPip(each unit="(m.K)/W")= fill(1.2/(2*Modelica.Constants.pi*kFil), nPip) "Fluid to pipe wall thermal resistances"; - parameter Modelica.SIunits.Temperature TBor=0 + parameter Modelica.Units.SI.Temperature TBor=0 "Average borehole wall temperature"; parameter Real[nPip,nPip] RDelta_Ref(each unit="(m.K)/W")= @@ -44,29 +44,30 @@ equation "Simulate and plot"), experiment(Tolerance=1e-6, StopTime=1.0), Documentation(info=" -

                      -This example validates the implementation of - -AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.BaseClasses.Functions.multipoleThermalResistances -for the evaluation of the borehole thermal resistances. -

                      -

                      -The multipole method is used to evaluate thermal resistances for a single U-tube -borehole with asymmetrically positionned pipes. Results are compared to -reference values given in Claesson and Hellström (2011). -

                      -

                      References

                      -

                      -Claesson, J., & Hellström, G. (2011). Multipole method to calculate -borehole thermal resistances in a borehole heat exchanger. HVAC&R -Research, 17(6), 895-911. -

                      -", revisions=" -
                        -
                      • -June 21, 2018, by Massimo Cimmino:
                        -First implementation. -
                      • -
                      -")); +

                      + This example validates the implementation of + + AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.BaseClasses.Functions.multipoleThermalResistances + for the evaluation of the borehole thermal resistances. +

                      +

                      + The multipole method is used to evaluate thermal resistances for a single U-tube + borehole with asymmetrically positionned pipes. Results are compared to + reference values given in Claesson and Hellström (2011). +

                      +

                      References

                      +

                      + Claesson, J., & Hellström, G. (2011). Multipole method to calculate + borehole thermal resistances in a borehole heat exchanger. HVAC&R + Research, 17(6), 895-911. +

                      + ",revisions=" +
                        +
                      • + June 21, 2018, by Massimo Cimmino:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end MultipoleThermalResistances_OneUTube; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/Validation/MultipoleThermalResistances_TwoUTube.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/Validation/MultipoleThermalResistances_TwoUTube.mo index 17ee6a0f08..591f9f5f3f 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/Validation/MultipoleThermalResistances_TwoUTube.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/Validation/MultipoleThermalResistances_TwoUTube.mo @@ -5,21 +5,21 @@ model MultipoleThermalResistances_TwoUTube parameter Integer nPip=4 "Number of pipes"; parameter Integer J=3 "Number of multipoles"; - parameter Modelica.SIunits.Position[nPip] xPip={0.03, -0.03, -0.03, 0.03} + parameter Modelica.Units.SI.Position[nPip] xPip={0.03,-0.03,-0.03,0.03} "x-Coordinates of pipes"; - parameter Modelica.SIunits.Position[nPip] yPip={0.03, 0.03, -0.03, -0.03} + parameter Modelica.Units.SI.Position[nPip] yPip={0.03,0.03,-0.03,-0.03} "y-Coordinates of pipes"; - parameter Modelica.SIunits.Radius rBor=0.07 "Borehole radius"; - parameter Modelica.SIunits.Radius[nPip] rPip=fill(0.02, nPip) + parameter Modelica.Units.SI.Radius rBor=0.07 "Borehole radius"; + parameter Modelica.Units.SI.Radius[nPip] rPip=fill(0.02, nPip) "Outter radius of pipes"; - parameter Modelica.SIunits.ThermalConductivity kFil=1.5 + parameter Modelica.Units.SI.ThermalConductivity kFil=1.5 "Thermal conductivity of grouting material"; - parameter Modelica.SIunits.ThermalConductivity kSoi=2.5 + parameter Modelica.Units.SI.ThermalConductivity kSoi=2.5 "Thermal conductivity of soil material"; parameter Real[nPip] RFluPip(each unit="(m.K)/W")= fill(1.2/(2*Modelica.Constants.pi*kFil), nPip) "Fluid to pipe wall thermal resistances"; - parameter Modelica.SIunits.Temperature TBor=0 + parameter Modelica.Units.SI.Temperature TBor=0 "Average borehole wall temperature"; parameter Real[nPip,nPip] RDelta_Ref(each unit="(m.K)/W")= @@ -50,29 +50,30 @@ equation "Simulate and plot"), experiment(Tolerance=1e-6, StopTime=1.0), Documentation(info=" -

                      -This example validates the implementation of - -AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.BaseClasses.Functions.multipoleThermalResistances -for the evaluation of the borehole thermal resistances. -

                      -

                      -The multipole method is used to evaluate thermal resistances for a double U-tube -borehole with symmetrically positionned pipes. Results are compared to -reference values given in Claesson (2012). -

                      -

                      References

                      -

                      -Claesson, J. (2012). Multipole method to calculate borehole thermal resistances. -Mathematical report. Department of Building Physics, Lund University, Box 118, -SE-221 00 Lund, Sweden. 128 pages. -

                      -", revisions=" -
                        -
                      • -June 21, 2018, by Massimo Cimmino:
                        -First implementation. -
                      • -
                      -")); +

                      + This example validates the implementation of + + AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.BaseClasses.Functions.multipoleThermalResistances + for the evaluation of the borehole thermal resistances. +

                      +

                      + The multipole method is used to evaluate thermal resistances for a double U-tube + borehole with symmetrically positionned pipes. Results are compared to + reference values given in Claesson (2012). +

                      +

                      References

                      +

                      + Claesson, J. (2012). Multipole method to calculate borehole thermal resistances. + Mathematical report. Department of Building Physics, Lund University, Box 118, + SE-221 00 Lund, Sweden. 128 pages. +

                      + ",revisions=" +
                        +
                      • + June 21, 2018, by Massimo Cimmino:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end MultipoleThermalResistances_TwoUTube; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/convectionResistanceCircularPipe.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/convectionResistanceCircularPipe.mo index e5689e8524..f3066daec5 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/convectionResistanceCircularPipe.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/convectionResistanceCircularPipe.mo @@ -1,34 +1,39 @@ within AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.BaseClasses.Functions; function convectionResistanceCircularPipe "Thermal resistance from the fluid in pipes and the grout zones (Bauer et al. 2011)" + extends Modelica.Icons.Function; // Geometry of the borehole - input Modelica.SIunits.Height hSeg "Height of the element"; - input Modelica.SIunits.Radius rTub "Tube radius"; - input Modelica.SIunits.Length eTub "Tube thickness"; + input Modelica.Units.SI.Height hSeg "Height of the element"; + input Modelica.Units.SI.Radius rTub "Tube radius"; + input Modelica.Units.SI.Length eTub "Tube thickness"; // thermal properties - input Modelica.SIunits.ThermalConductivity kMed + input Modelica.Units.SI.ThermalConductivity kMed "Thermal conductivity of the fluid"; - input Modelica.SIunits.DynamicViscosity muMed + input Modelica.Units.SI.DynamicViscosity muMed "Dynamic viscosity of the fluid"; - input Modelica.SIunits.SpecificHeatCapacity cpMed + input Modelica.Units.SI.SpecificHeatCapacity cpMed "Specific heat capacity of the fluid"; - input Modelica.SIunits.MassFlowRate m_flow "Mass flow rate"; - input Modelica.SIunits.MassFlowRate m_flow_nominal "Nominal mass flow rate"; + input Modelica.Units.SI.MassFlowRate m_flow "Mass flow rate"; + input Modelica.Units.SI.MassFlowRate m_flow_nominal "Nominal mass flow rate"; // Outputs - output Modelica.SIunits.ThermalResistance RFluPip + output Modelica.Units.SI.ThermalResistance RFluPip "Convection resistance (or conduction in fluid if no mass flow)"; protected - parameter Modelica.SIunits.Radius rTub_in = rTub - eTub - "Pipe inner radius"; - Modelica.SIunits.CoefficientOfHeatTransfer h + parameter Modelica.Units.SI.Radius rTub_in=rTub - eTub "Pipe inner radius"; + Modelica.Units.SI.CoefficientOfHeatTransfer h "Convective heat transfer coefficient of the fluid"; Real k(unit="s/kg") "Coefficient used in the computation of the convective heat transfer coefficient"; - Modelica.SIunits.MassFlowRate m_flow_abs = AixLib.Utilities.Math.Functions.spliceFunction(m_flow,-m_flow,m_flow,m_flow_nominal/30); + Modelica.Units.SI.MassFlowRate m_flow_abs= + AixLib.Utilities.Math.Functions.spliceFunction( + m_flow, + -m_flow, + m_flow, + m_flow_nominal/30); Real Re "Reynolds number"; Real NuTurb "Nusselt at Re=2400"; Real Nu "Nusselt"; @@ -60,54 +65,55 @@ algorithm RFluPip := 1/(2*Modelica.Constants.pi*rTub_in*hSeg*h); annotation (Diagram(graphics), Documentation(info=" -

                      -This model computes the convection resistance in the pipes of a borehole segment -with heigth hSeg using correlations suggested by Bergman et al. (2011). -

                      -

                      -If the flow is laminar (Re ≤ 2300, with Re being the Reynolds number of the flow), -the Nusselt number of the flow is assumed to be constant at 3.66. If the flow is turbulent (Re > 2300), -the correlation of Dittus-Boelter is used to find the convection heat transfer coefficient as -

                      -

                      - Nu = 0.023   Re0.8   Prn, -

                      -

                      -where Nu is the Nusselt number and -Pr is the Prandlt number. -A value of n=0.35 is used, as the reference uses n=0.4 for heating and -n=0.3 for cooling. To ensure that the function is continuously differentiable, -a smooth transition between the laminar and turbulent values is created for the -range 2300 < Re < 2400. -

                      -

                      References

                      -

                      -Bergman, T. L., Incropera, F. P., DeWitt, D. P., & Lavine, A. S. (2011). Fundamentals of heat and mass -transfer (7th ed.). New York: John Wiley & Sons. -

                      -", revisions=" -
                        -
                      • -July 10, 2018, by Alex Laferrière:
                        -Added laminar flow and smooth laminar-turbulent transition. -Revised documentation. -
                      • -
                      • -February 14, 2014, by Michael Wetter:
                        -Removed unused input rBor. -Revised documentation. -
                      • -
                      • -January 24, 2014, by Michael Wetter:
                        -Revised implementation. -Changed cpFluid to cpMed to use consistent notation. -Added regularization for computation of convective heat transfer coefficient to -avoid an event and a non-differentiability. -
                      • -
                      • -January 23, 2014, by Damien Picard:
                        -First implementation. -
                      • -
                      -")); +

                      + This model computes the convection resistance in the pipes of a borehole segment + with heigth hSeg using correlations suggested by Bergman et al. (2011). +

                      +

                      + If the flow is laminar (Re ≤ 2300, with Re being the Reynolds number of the flow), + the Nusselt number of the flow is assumed to be constant at 3.66. If the flow is turbulent (Re > 2300), + the correlation of Dittus-Boelter is used to find the convection heat transfer coefficient as +

                      +

                      + Nu = 0.023   Re0.8   Prn, +

                      +

                      + where Nu is the Nusselt number and + Pr is the Prandlt number. + A value of n=0.35 is used, as the reference uses n=0.4 for heating and + n=0.3 for cooling. To ensure that the function is continuously differentiable, + a smooth transition between the laminar and turbulent values is created for the + range 2300 < Re < 2400. +

                      +

                      References

                      +

                      + Bergman, T. L., Incropera, F. P., DeWitt, D. P., & Lavine, A. S. (2011). Fundamentals of heat and mass + transfer (7th ed.). New York: John Wiley & Sons. +

                      + ",revisions=" +
                        +
                      • + July 10, 2018, by Alex Laferrière:
                        + Added laminar flow and smooth laminar-turbulent transition. + Revised documentation. +
                      • +
                      • + February 14, 2014, by Michael Wetter:
                        + Removed unused input rBor. + Revised documentation. +
                      • +
                      • + January 24, 2014, by Michael Wetter:
                        + Revised implementation. + Changed cpFluid to cpMed to use consistent notation. + Added regularization for computation of convective heat transfer coefficient to + avoid an event and a non-differentiability. +
                      • +
                      • + January 23, 2014, by Damien Picard:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end convectionResistanceCircularPipe; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/internalResistancesOneUTube.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/internalResistancesOneUTube.mo index baafbc8123..06382879a1 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/internalResistancesOneUTube.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/internalResistancesOneUTube.mo @@ -5,22 +5,22 @@ function internalResistancesOneUTube AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.BaseClasses.Functions.partialInternalResistances; // Outputs - output Modelica.SIunits.ThermalResistance Rgb + output Modelica.Units.SI.ThermalResistance Rgb "Thermal resistance between grout zone and borehole wall"; - output Modelica.SIunits.ThermalResistance Rgg + output Modelica.Units.SI.ThermalResistance Rgg "Thermal resistance between the two grout zones"; - output Modelica.SIunits.ThermalResistance RCondGro + output Modelica.Units.SI.ThermalResistance RCondGro "Thermal resistance between: pipe wall to capacity in grout"; protected Real[2,2] RDelta(each unit="(m.K)/W") "Delta-circuit thermal resistances"; Real[2,2] R(each unit="(m.K)/W") "Internal thermal resistances"; - Modelica.SIunits.Position[2] xPip = {-sha, sha} "x-Coordinates of pipes"; - Modelica.SIunits.Position[2] yPip = {0., 0.} "y-Coordinates of pipes"; - Modelica.SIunits.Radius[2] rPip = {rTub, rTub} "Outer radius of pipes"; + Modelica.Units.SI.Position[2] xPip={-sha,sha} "x-Coordinates of pipes"; + Modelica.Units.SI.Position[2] yPip={0.,0.} "y-Coordinates of pipes"; + Modelica.Units.SI.Radius[2] rPip={rTub,rTub} "Outer radius of pipes"; Real[2] RFluPip(each unit="(m.K)/W") = {RCondPipe+RConv, RCondPipe+RConv} "Fluid to pipe wall thermal resistances"; - Modelica.SIunits.ThermalResistance Rg + Modelica.Units.SI.ThermalResistance Rg "Thermal resistance between outer borehole wall and one tube"; - Modelica.SIunits.ThermalResistance Rar + Modelica.Units.SI.ThermalResistance Rar "Thermal resistance between the two pipe outer walls"; Real Ra(unit="(m.K)/W") @@ -81,75 +81,76 @@ algorithm i := i + 1; end while; end if; - assert(test, + assert(test, "In " + getInstanceName() + ":\n" + "Maximum number of iterations exceeded. Check the borehole geometry. - The tubes may be too close to the borehole wall. - Input to the function - AixLib.Fluid.HeatExchangers.Boreholes.BaseClasses.singleUTubeResistances - is - hSeg = " + String(hSeg) + " m - rBor = " + String(rBor) + " m - rTub = " + String(rTub) + " m - eTub = " + String(eTub) + " m - kSoi = " + String(kSoi) + " W/m/K - kFil = " + String(kFil) + " W/m/K - kTub = " + String(kTub) + " W/m/K - i = " + String(i) + " - Computed x = " + String(x) + " K/W - Rgb = " + String(Rgb) + " K/W - Rgg = " + String(Rgg) + " K/W"); + The tubes may be too close to the borehole wall. + Input to the function + AixLib.Fluid.HeatExchangers.Boreholes.BaseClasses.singleUTubeResistances + is + hSeg = "+ String(hSeg) + " m + rBor = "+ String(rBor) + " m + rTub = "+ String(rTub) + " m + eTub = "+ String(eTub) + " m + kSoi = "+ String(kSoi) + " W/m/K + kFil = "+ String(kFil) + " W/m/K + kTub = "+ String(kTub) + " W/m/K + i = " + String(i) + " + Computed x = "+ String(x) + " K/W + Rgb = "+ String(Rgb) + " K/W + Rgg = "+ String(Rgg) + " K/W"); - if printDebug then - Modelica.Utilities.Streams.print(" - Rb = " + String(Rb_internal) + " m K / W - RCondPipe = "+ String(RCondPipe) + " m K / W - RConv = " +String(RConv) +"m K / W - hSeg = " + String(hSeg) + " m - Rg = "+String(Rg) + " K / W - Ra = " + String(Ra) + " m K / W - x = " + String(x) + " - i = " + String(i)); - end if; - annotation (Diagram(graphics), Documentation(info=" -

                      -This model computes the different thermal resistances present in a single-U-tube borehole -using the method of Bauer et al. (2011). -It also computes the fluid-to-ground thermal resistance Rb -and the grout-to-grout thermal resistance Ra -as defined by Claesson and Hellstrom (2011) using the multipole method. -

                      - -

                      References

                      -

                      J. Claesson and G. Hellstrom. -Multipole method to calculate borehole thermal resistances in a borehole heat exchanger. - -HVAC&R Research, -17(6): 895-911, 2011.

                      -

                      D. Bauer, W. Heidemann, H. Müller-Steinhagen, and H.-J. G. Diersch. -Thermal resistance and capacity models for borehole heat exchangers. -International Journal of Energy Research, 35:312–320, 2011.

                      -", revisions=" -
                        -
                      • -July 18, 2018 by Massimo Cimmino:
                        -Implemented multipole method. -
                      • -
                      • -February 14, 2014 by Michael Wetter:
                        -Added an assert statement to test for non-physical values. -
                      • -
                      • -February 12, 2014, by Damien Picard:
                        -Remove the flow dependency of the resistances, as this function calculates the conduction resistances only. -
                      • -
                      • -January 24, 2014, by Michael Wetter:
                        -Revised implementation. -
                      • -
                      • -January 23, 2014, by Damien Picard:
                        -First implementation. -
                      • -
                      -")); +annotation ( + Documentation(info=" +

                      + This model computes the different thermal resistances present in a single-U-tube borehole + using the method of Bauer et al. (2011). + It also computes the fluid-to-ground thermal resistance Rb + and the grout-to-grout thermal resistance Ra + as defined by Claesson and Hellstrom (2011) using the multipole method. +

                      + +

                      References

                      +

                      J. Claesson and G. Hellstrom. + Multipole method to calculate borehole thermal resistances in a borehole heat exchanger. + + HVAC&R Research, + 17(6): 895-911, 2011.

                      +

                      D. Bauer, W. Heidemann, H. Müller-Steinhagen, and H.-J. G. Diersch. + Thermal resistance and capacity models for borehole heat exchangers. + International Journal of Energy Research, 35:312–320, 2011.

                      + ",revisions=" +
                        +
                      • + February 7, 2022, by Michael Wetter:
                        + Changed function to be pure.
                        + This is for + IBPSA, #1582. +
                      • +
                      • + December 11, 2021, by Michael Wetter:
                        + Added impure declaration for MSL 4.0.0. +
                      • +
                      • + July 18, 2018 by Massimo Cimmino:
                        + Implemented multipole method. +
                      • +
                      • + February 14, 2014 by Michael Wetter:
                        + Added an assert statement to test for non-physical values. +
                      • +
                      • + February 12, 2014, by Damien Picard:
                        + Remove the flow dependency of the resistances, as this function calculates the conduction resistances only. +
                      • +
                      • + January 24, 2014, by Michael Wetter:
                        + Revised implementation. +
                      • +
                      • + January 23, 2014, by Damien Picard:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end internalResistancesOneUTube; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/internalResistancesTwoUTube.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/internalResistancesTwoUTube.mo index df0fd39408..100f41eece 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/internalResistancesTwoUTube.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/internalResistancesTwoUTube.mo @@ -5,30 +5,31 @@ function internalResistancesTwoUTube AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.BaseClasses.Functions.partialInternalResistances; // Outputs - output Modelica.SIunits.ThermalResistance Rgb + output Modelica.Units.SI.ThermalResistance Rgb "Thermal resistance between a grout capacity and the borehole wall, as defined by Bauer et al (2010)"; - output Modelica.SIunits.ThermalResistance Rgg1 + output Modelica.Units.SI.ThermalResistance Rgg1 "Thermal resistance between two neightbouring grout capacities, as defined by Bauer et al (2010)"; - output Modelica.SIunits.ThermalResistance Rgg2 + output Modelica.Units.SI.ThermalResistance Rgg2 "Thermal resistance between two grout capacities opposite to each other, as defined by Bauer et al (2010)"; - output Modelica.SIunits.ThermalResistance RCondGro + output Modelica.Units.SI.ThermalResistance RCondGro "Thermal resistance between a pipe wall and the grout capacity, as defined by Bauer et al (2010)"; protected Real[4,4] RDelta(each unit="(m.K)/W") "Delta-circuit thermal resistances"; Real[4,4] R(each unit="(m.K)/W") "Internal thermal resistances"; - Modelica.SIunits.Position[4] xPip = {-sha, sha, 0., 0.} "x-Coordinates of pipes"; - Modelica.SIunits.Position[4] yPip = {0., 0., -sha, sha} "y-Coordinates of pipes"; - Modelica.SIunits.Radius[4] rPip = {rTub, rTub, rTub, rTub} "Outer radius of pipes"; + Modelica.Units.SI.Position[4] xPip={-sha,sha,0.,0.} "x-Coordinates of pipes"; + Modelica.Units.SI.Position[4] yPip={0.,0.,-sha,sha} "y-Coordinates of pipes"; + Modelica.Units.SI.Radius[4] rPip={rTub,rTub,rTub,rTub} + "Outer radius of pipes"; Real[4] RFluPip(each unit="(m.K)/W") = {RCondPipe+RConv, RCondPipe+RConv, RCondPipe+RConv, RCondPipe+RConv} "Fluid to pipe wall thermal resistances"; Real Ra( unit="(m.K)/W") "Grout-to-grout resistance (2D) as defined by Hellstrom. Interaction between the different grout parts"; - Modelica.SIunits.ThermalResistance Rg + Modelica.Units.SI.ThermalResistance Rg "Thermal resistance between outer borehole wall and one tube"; - Modelica.SIunits.ThermalResistance Rar1 + Modelica.Units.SI.ThermalResistance Rar1 "Thermal resistance between the two closest pipe outer walls"; - Modelica.SIunits.ThermalResistance Rar2 + Modelica.Units.SI.ThermalResistance Rar2 "Thermal resistance between the two farthest pipe outer walls"; algorithm @@ -87,76 +88,77 @@ algorithm i := i + 1; end while; end if; - assert(test, + assert(test, "In " + getInstanceName() + ":\n" + "Maximum number of iterations exceeded. Check the borehole geometry. - The tubes may be too close to the borehole wall. - Input to the function - AixLib.Fluid.HeatExchangers.Boreholes.BaseClasses.doubleUTubeResistances - is - hSeg = " + String(hSeg) + " m - rBor = " + String(rBor) + " m - rTub = " + String(rTub) + " m - eTub = " + String(eTub) + " m - sha = " + String(sha) + " m - kSoi = " + String(kSoi) + " W/m/K - kFil = " + String(kFil) + " W/m/K - kTub = " + String(kTub) + " W/m/K - Computed x = " + String(x) + " m - Rgb = " + String(Rgb) + " K/W - Rgg1 = " + String(Rgg1) + " K/W - Rgg2 = " + String(Rgg2) + " K/W"); - - if printDebug then - Modelica.Utilities.Streams.print(" - Rb = " + String(Rb_internal) + " m K / W - RCondPipe = "+ String(RCondPipe) + " m K / W - RConv = " +String(RConv) +"m K / W - hSeg = " + String(hSeg) + " m - Rg = "+String(Rg) + " K / W - Ra = " + String(Ra) + " m K / W - x = " + String(x) + " - i = " + String(i)); - end if; - annotation (Diagram(graphics), Documentation(info=" -

                      -This model computes the different thermal resistances present in a double U-tube -borehole using the method of Bauer et al. (2011). -It also computes the fluid-to-ground thermal resistance Rb -and the grout-to-grout thermal resistance Ra -as defined by Claesson and Hellstrom (2011) using the multipole method. -

                      - -

                      References

                      -

                      J. Claesson and G. Hellstrom. -Multipole method to calculate borehole thermal resistances in a borehole heat exchanger. - -HVAC&R Research, -17(6): 895-911, 2011.

                      -

                      D. Bauer, W. Heidemann, H. Müller-Steinhagen, and H.-J. G. Diersch. -Thermal resistance and capacity models for borehole heat exchangers. -International Journal of Energy Research, 35:312–320, 2011.

                      -", revisions=" -
                        -
                      • -July 18, 2018 by Massimo Cimmino:
                        -Implemented multipole method. -
                      • -
                      • -February 14, 2014 by Michael Wetter:
                        -Added an assert statement to test for non-physical values. -
                      • -
                      • -February 12, 2014, by Damien Picard:
                        -Remove the flow dependency of the resistances, as this function calculates the conduction resistances only. -
                      • -
                      • -January 24, 2014, by Michael Wetter:
                        -Revised implementation. -
                      • -
                      • -January 23, 2014, by Damien Picard:
                        -First implementation. -
                      • -
                      -")); + The tubes may be too close to the borehole wall. + Input to the function + AixLib.Fluid.HeatExchangers.Boreholes.BaseClasses.doubleUTubeResistances + is + hSeg = "+ String(hSeg) + " m + rBor = "+ String(rBor) + " m + rTub = "+ String(rTub) + " m + eTub = "+ String(eTub) + " m + sha = "+ String(sha) + " m + kSoi = "+ String(kSoi) + " W/m/K + kFil = "+ String(kFil) + " W/m/K + kTub = "+ String(kTub) + " W/m/K + Computed x = "+ String(x) + " m + Rgb = "+ String(Rgb) + " K/W + Rgg1 = "+ String(Rgg1) + " K/W + Rgg2 = "+ String(Rgg2) + " K/W"); + +annotation ( + Documentation(info=" +

                      + This model computes the different thermal resistances present in a double U-tube + borehole using the method of Bauer et al. (2011). + It also computes the fluid-to-ground thermal resistance Rb + and the grout-to-grout thermal resistance Ra + as defined by Claesson and Hellstrom (2011) using the multipole method. +

                      + +

                      References

                      +

                      J. Claesson and G. Hellstrom. + Multipole method to calculate borehole thermal resistances in a borehole heat exchanger. + + HVAC&R Research, + 17(6): 895-911, 2011.

                      +

                      D. Bauer, W. Heidemann, H. Müller-Steinhagen, and H.-J. G. Diersch. + Thermal resistance and capacity models for borehole heat exchangers. + International Journal of Energy Research, 35:312–320, 2011.

                      + ",revisions=" +
                        +
                      • + February 7, 2022, by Michael Wetter:
                        + Changed function to be pure.
                        + This is for + IBPSA, #1582. +
                      • +
                      • + December 11, 2021, by Michael Wetter:
                        + Added impure declaration for MSL 4.0.0. +
                      • +
                      • + July 18, 2018 by Massimo Cimmino:
                        + Implemented multipole method. +
                      • +
                      • + February 14, 2014 by Michael Wetter:
                        + Added an assert statement to test for non-physical values. +
                      • +
                      • + February 12, 2014, by Damien Picard:
                        + Remove the flow dependency of the resistances, as this function calculates the conduction resistances only. +
                      • +
                      • + January 24, 2014, by Michael Wetter:
                        + Revised implementation. +
                      • +
                      • + January 23, 2014, by Damien Picard:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end internalResistancesTwoUTube; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/multipoleFluidTemperature.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/multipoleFluidTemperature.mo index b874122e51..d056b54d47 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/multipoleFluidTemperature.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/multipoleFluidTemperature.mo @@ -4,19 +4,21 @@ function multipoleFluidTemperature "Fluid temperatures from multipole solution" input Integer nPip "Number of pipes"; input Integer J "Number of multipoles"; - input Modelica.SIunits.Position xPip[nPip] "x-Coordinates of pipes"; - input Modelica.SIunits.Position yPip[nPip] "y-Coordinates of pipes"; + input Modelica.Units.SI.Position xPip[nPip] "x-Coordinates of pipes"; + input Modelica.Units.SI.Position yPip[nPip] "y-Coordinates of pipes"; input Real QPip_flow[nPip](each unit="W/m") "Heat flow in pipes"; - input Modelica.SIunits.Temperature TBor "Average borehole wall temperature"; - input Modelica.SIunits.Radius rBor "Borehole radius"; - input Modelica.SIunits.Radius rPip[nPip] "Outter radius of pipes"; - input Modelica.SIunits.ThermalConductivity kFil "Thermal conductivity of grouting material"; - input Modelica.SIunits.ThermalConductivity kSoi "Thermal conductivity of soil material"; + input Modelica.Units.SI.Temperature TBor "Average borehole wall temperature"; + input Modelica.Units.SI.Radius rBor "Borehole radius"; + input Modelica.Units.SI.Radius rPip[nPip] "Outter radius of pipes"; + input Modelica.Units.SI.ThermalConductivity kFil + "Thermal conductivity of grouting material"; + input Modelica.Units.SI.ThermalConductivity kSoi + "Thermal conductivity of soil material"; input Real RFluPip[nPip](each unit="(m.K)/W") "Fluid to pipe wall thermal resistances"; input Real eps=1.0e-5 "Iteration relative accuracy"; input Integer it_max=100 "Maximum number of iterations"; - output Modelica.SIunits.Temperature TFlu[nPip] "Fluid temperature in pipes"; + output Modelica.Units.SI.Temperature TFlu[nPip] "Fluid temperature in pipes"; protected Real pikFil(unit="(m.K)/W")=1/(2*Modelica.Constants.pi*kFil) "Coefficient based on grout thermal conductivity"; @@ -36,7 +38,7 @@ protected Real R0[nPip,nPip](each unit="(m.K)/W") "Line source approximation of thermal resistances"; Complex deltaTFlu "Fluid temperature difference with line source approximation"; Real rbm "Intermediate coefficient"; - Modelica.SIunits.Distance dz "Pipe to pipe distance"; + Modelica.Units.SI.Distance dz "Pipe to pipe distance"; Real coeff[nPip,J] "Coefficient for multiplication with matrix F_mk"; Real diff "Difference in subsequent multipole evaluations"; Real diff_max "Maximum difference in subsequent multipole evaluations"; @@ -49,13 +51,13 @@ algorithm // Thermal resistance matrix from 0th order multipole for i in 1:nPip loop zPip_i := Complex(xPip[i], yPip[i]); - rbm := rBor^2/(rBor^2 - Modelica.ComplexMath.'abs'(zPip_i)^2); + rbm :=rBor^2/(rBor^2 - Modelica.ComplexMath.abs(zPip_i)^2); R0[i, i] := pikFil*(log(rBor/rPip[i]) + betaPip[i] + sigma*log(rbm)); for j in 1:nPip loop zPip_j := Complex(xPip[j], yPip[j]); if i <> j then - dz := Modelica.ComplexMath.'abs'(zPip_i - zPip_j); - rbm := rBor^2/Modelica.ComplexMath.'abs'(rBor^2 - zPip_j* + dz :=Modelica.ComplexMath.abs(zPip_i - zPip_j); + rbm :=rBor^2/Modelica.ComplexMath.abs(rBor^2 - zPip_j* Modelica.ComplexMath.conj(zPip_i)); R0[i, j] := pikFil*(log(rBor/dz) + sigma*log(rbm)); end if; @@ -103,10 +105,8 @@ algorithm for k in 1:J loop P_nj := Complex(PRea[m, k], PIma[m, k]); P_nj_new := Complex(PRea_new[m, k], PIma_new[m, k]); - diff_max := max(diff_max, - Modelica.ComplexMath.'abs'(P_nj_new - P_nj)); - diff_min := min(diff_min, - Modelica.ComplexMath.'abs'(P_nj_new - P_nj)); + diff_max :=max(diff_max, Modelica.ComplexMath.abs(P_nj_new - P_nj)); + diff_min :=min(diff_min, Modelica.ComplexMath.abs(P_nj_new - P_nj)); end for; end for; diff := diff_max - diff_min; @@ -144,20 +144,21 @@ algorithm end if; annotation (Documentation(info=" -

                      This model evaluates the fluid temperatures using the multipole method of Claesson and Hellstrom (2011). -

                      -

                      References

                      -

                      J. Claesson and G. Hellstrom. -Multipole method to calculate borehole thermal resistances in a borehole heat exchanger. - -HVAC&R Research, -17(6): 895-911, 2011.

                      -", revisions=" -
                        -
                      • -February 12, 2018, by Massimo Cimmino:
                        -First implementation. -
                      • -
                      -")); +

                      This model evaluates the fluid temperatures using the multipole method of Claesson and Hellstrom (2011). +

                      +

                      References

                      +

                      J. Claesson and G. Hellstrom. + Multipole method to calculate borehole thermal resistances in a borehole heat exchanger. + + HVAC&R Research, + 17(6): 895-911, 2011.

                      + ",revisions=" +
                        +
                      • + February 12, 2018, by Massimo Cimmino:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end multipoleFluidTemperature; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/multipoleFmk.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/multipoleFmk.mo index 9aef234805..bbc0581b94 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/multipoleFmk.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/multipoleFmk.mo @@ -7,12 +7,14 @@ function multipoleFmk "Complex matrix F_mk from Claesson and Hellstrom (2011)" input Real QPip_flow[nPip](each unit="W/m") "Heat flow in pipes"; input Real PRea[nPip,J] "Multipoles (Real part)"; input Real PIma[nPip,J] "Multipoles (Imaginary part)"; - input Modelica.SIunits.Radius rBor "Borehole radius"; - input Modelica.SIunits.Radius rPip[nPip] "Outter radius of pipes"; - input Modelica.SIunits.Position xPip[nPip] "x-Coordinates of pipes"; - input Modelica.SIunits.Position yPip[nPip] "y-Coordinates of pipes"; - input Modelica.SIunits.ThermalConductivity kFil "Thermal conductivity of grouting material"; - input Modelica.SIunits.ThermalConductivity kSoi "Thermal conductivity of soil material"; + input Modelica.Units.SI.Radius rBor "Borehole radius"; + input Modelica.Units.SI.Radius rPip[nPip] "Outter radius of pipes"; + input Modelica.Units.SI.Position xPip[nPip] "x-Coordinates of pipes"; + input Modelica.Units.SI.Position yPip[nPip] "y-Coordinates of pipes"; + input Modelica.Units.SI.ThermalConductivity kFil + "Thermal conductivity of grouting material"; + input Modelica.Units.SI.ThermalConductivity kSoi + "Thermal conductivity of soil material"; output Real FRea[nPip,J] "Multipole coefficients"; output Real FIma[nPip,J] "Multipole coefficients"; @@ -66,20 +68,21 @@ algorithm end for; annotation (Documentation(info=" -

                      This model evaluates the complex coefficient matrix F_mk from Claesson and Hellstrom (2011). -

                      -

                      References

                      -

                      J. Claesson and G. Hellstrom. -Multipole method to calculate borehole thermal resistances in a borehole heat exchanger. - -HVAC&R Research, -17(6): 895-911, 2011.

                      -", revisions=" -
                        -
                      • -February 12, 2018, by Massimo Cimmino:
                        -First implementation. -
                      • -
                      -")); +

                      This model evaluates the complex coefficient matrix F_mk from Claesson and Hellstrom (2011). +

                      +

                      References

                      +

                      J. Claesson and G. Hellstrom. + Multipole method to calculate borehole thermal resistances in a borehole heat exchanger. + + HVAC&R Research, + 17(6): 895-911, 2011.

                      + ",revisions=" +
                        +
                      • + February 12, 2018, by Massimo Cimmino:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end multipoleFmk; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/multipoleThermalResistances.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/multipoleThermalResistances.mo index 1ee4ba105f..0cd559d745 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/multipoleThermalResistances.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/multipoleThermalResistances.mo @@ -5,21 +5,24 @@ function multipoleThermalResistances input Integer nPip "Number of pipes"; input Integer J "Number of multipoles"; - input Modelica.SIunits.Position xPip[nPip] "x-Coordinates of pipes"; - input Modelica.SIunits.Position yPip[nPip] "y-Coordinates of pipes"; - input Modelica.SIunits.Radius rBor "Borehole radius"; - input Modelica.SIunits.Radius rPip[nPip] "Outter radius of pipes"; - input Modelica.SIunits.ThermalConductivity kFil "Thermal conductivity of grouting material"; - input Modelica.SIunits.ThermalConductivity kSoi "Thermal conductivity of soil material"; + input Modelica.Units.SI.Position xPip[nPip] "x-Coordinates of pipes"; + input Modelica.Units.SI.Position yPip[nPip] "y-Coordinates of pipes"; + input Modelica.Units.SI.Radius rBor "Borehole radius"; + input Modelica.Units.SI.Radius rPip[nPip] "Outter radius of pipes"; + input Modelica.Units.SI.ThermalConductivity kFil + "Thermal conductivity of grouting material"; + input Modelica.Units.SI.ThermalConductivity kSoi + "Thermal conductivity of soil material"; input Real RFluPip[nPip](each unit="(m.K)/W") "Fluid to pipe wall thermal resistances"; - input Modelica.SIunits.Temperature TBor=0 "Average borehole wall temperature"; + input Modelica.Units.SI.Temperature TBor=0 + "Average borehole wall temperature"; output Real RDelta[nPip,nPip](each unit="(m.K)/W") "Delta-circuit thermal resistances"; output Real R[nPip,nPip](each unit="(m.K)/W") "Internal thermal resistances"; protected Real QPip_flow[nPip](each unit="W/m") "Pipe heat transfer rates"; - Modelica.SIunits.Temperature TFlu[nPip] "Fluid temperatures"; + Modelica.Units.SI.Temperature TFlu[nPip] "Fluid temperatures"; Real K[nPip,nPip](each unit="W/(m.K)") "Internal thermal conductances"; algorithm @@ -64,20 +67,21 @@ algorithm end for; annotation (Documentation(info=" -

                      This model evaluates the delta-circuit borehole thermal resistances using the multipole method of Claesson and Hellstrom (2011). -

                      -

                      References

                      -

                      J. Claesson and G. Hellstrom. -Multipole method to calculate borehole thermal resistances in a borehole heat exchanger. - -HVAC&R Research, -17(6): 895-911, 2011.

                      -", revisions=" -
                        -
                      • -February 12, 2018, by Massimo Cimmino:
                        -First implementation. -
                      • -
                      -")); +

                      This model evaluates the delta-circuit borehole thermal resistances using the multipole method of Claesson and Hellstrom (2011). +

                      +

                      References

                      +

                      J. Claesson and G. Hellstrom. + Multipole method to calculate borehole thermal resistances in a borehole heat exchanger. + + HVAC&R Research, + 17(6): 895-911, 2011.

                      + ",revisions=" +
                        +
                      • + February 12, 2018, by Massimo Cimmino:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end multipoleThermalResistances; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/partialInternalResistances.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/partialInternalResistances.mo index cf434c22a4..9adc1296e0 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/partialInternalResistances.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/Functions/partialInternalResistances.mo @@ -7,31 +7,28 @@ partial function partialInternalResistances input Boolean use_Rb = false "True if the value Rb should be used instead of calculated"; input Real Rb(unit="(m.K)/W") "Borehole thermal resistance"; - input Modelica.SIunits.Height hSeg "Height of the element"; - input Modelica.SIunits.Radius rBor "Radius of the borehole"; + input Modelica.Units.SI.Height hSeg "Height of the element"; + input Modelica.Units.SI.Radius rBor "Radius of the borehole"; // Geometry of the pipe - input Modelica.SIunits.Radius rTub "Radius of the tube"; - input Modelica.SIunits.Length eTub "Thickness of the tubes"; - input Modelica.SIunits.Length sha + input Modelica.Units.SI.Radius rTub "Radius of the tube"; + input Modelica.Units.SI.Length eTub "Thickness of the tubes"; + input Modelica.Units.SI.Length sha "Shank spacing, defined as the distance between the center of a pipe and the center of the borehole"; // Thermal properties - input Modelica.SIunits.ThermalConductivity kFil + input Modelica.Units.SI.ThermalConductivity kFil "Thermal conductivity of the grout"; - input Modelica.SIunits.ThermalConductivity kSoi + input Modelica.Units.SI.ThermalConductivity kSoi "Thermal conductivity of the soi"; - input Modelica.SIunits.ThermalConductivity kTub + input Modelica.Units.SI.ThermalConductivity kTub "Thermal conductivity of the tube"; - input Modelica.SIunits.ThermalConductivity kMed + input Modelica.Units.SI.ThermalConductivity kMed "Thermal conductivity of the fluid"; - input Modelica.SIunits.DynamicViscosity muMed + input Modelica.Units.SI.DynamicViscosity muMed "Dynamic viscosity of the fluid"; - input Modelica.SIunits.SpecificHeatCapacity cpMed + input Modelica.Units.SI.SpecificHeatCapacity cpMed "Specific heat capacity of the fluid"; - input Modelica.SIunits.MassFlowRate m_flow_nominal "Nominal mass flow rate"; - - input Boolean printDebug=false - "Print resistances values in log for debug purposes."; + input Modelica.Units.SI.MassFlowRate m_flow_nominal "Nominal mass flow rate"; // Outputs output Real x "Capacity location"; @@ -65,33 +62,41 @@ protected Integer i=1 "Loop counter"; - annotation (Diagram(graphics), Documentation(info=" -

                      -This partial function defines the common inputs to functions that calculate -the borehole internal resistances. -

                      -", revisions=" -
                        -
                      • -July 18, 2018 by Massimo Cimmino:
                        -Implemented multipole method. -
                      • -
                      • -February 14, 2014 by Michael Wetter:
                        -Added an assert statement to test for non-physical values. -
                      • -
                      • -February 12, 2014, by Damien Picard:
                        -Remove the flow dependency of the resistances, as this function calculates the conduction resistances only. -
                      • -
                      • -January 24, 2014, by Michael Wetter:
                        -Revised implementation. -
                      • -
                      • -January 23, 2014, by Damien Picard:
                        -First implementation. -
                      • -
                      -")); +annotation ( + Documentation(info=" +

                      + This partial function defines the common inputs to functions that calculate + the borehole internal resistances. +

                      + ",revisions=" +
                        +
                      • + February 28, 2022, by Massimo Cimmino:
                        + Changed function to be pure.
                        + This is for + IBPSA, #1582. +
                      • +
                      • + July 18, 2018 by Massimo Cimmino:
                        + Implemented multipole method. +
                      • +
                      • + February 14, 2014 by Michael Wetter:
                        + Added an assert statement to test for non-physical values. +
                      • +
                      • + February 12, 2014, by Damien Picard:
                        + Remove the flow dependency of the resistances, as this function calculates the conduction resistances only. +
                      • +
                      • + January 24, 2014, by Michael Wetter:
                        + Revised implementation. +
                      • +
                      • + January 23, 2014, by Damien Picard:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end partialInternalResistances; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/InternalHEXOneUTube.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/InternalHEXOneUTube.mo index ebf4ca2bf8..59d5ba509c 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/InternalHEXOneUTube.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/InternalHEXOneUTube.mo @@ -12,14 +12,14 @@ model InternalHEXOneUTube final tau2=VTubSeg*rho2_nominal/m2_flow_nominal, redeclare final AixLib.Fluid.MixingVolumes.MixingVolume vol1( final energyDynamics=energyDynamics, - final massDynamics=massDynamics, + final massDynamics=energyDynamics, final prescribedHeatFlowRate=false, final m_flow_small=m1_flow_small, final V=VTubSeg, final mSenFac=mSenFac), redeclare final AixLib.Fluid.MixingVolumes.MixingVolume vol2( final energyDynamics=energyDynamics, - final massDynamics=massDynamics, + final massDynamics=energyDynamics, final prescribedHeatFlowRate=false, final m_flow_small=m2_flow_small, final V=VTubSeg, @@ -92,13 +92,12 @@ initial equation kMed=kMed, muMed=muMed, cpMed=cpMed, - m_flow_nominal=m1_flow_nominal, - printDebug=false); + m_flow_nominal=m1_flow_nominal); equation assert(borFieDat.conDat.borCon == AixLib.Fluid.Geothermal.Borefields.Types.BoreholeConfiguration.SingleUTube, - "This model should be used for single U-type borefield, not double U-type. - Check that the conDat record has been correctly parametrized"); + "This model should be used for single U-type borefield, not double U-type. + Check that the conDat record has been correctly parametrized"); connect(RVol2.y, RConv2.Rc) annotation (Line(points={{-79,-8},{-60,-8},{-40, -8},{-40,-28},{-12,-28}}, color={0,0,127})); @@ -128,63 +127,78 @@ equation fillColor={0,0,255}, fillPattern=FillPattern.Solid)}), Documentation(info=" -

                      -Model for the heat transfer between the fluid and within the borehole filling -for a single borehole segment. -This model computes the dynamic response of the fluid in the tubes, -the heat transfer between the fluid and the borehole filling, -and the heat storage within the fluid and the borehole filling. -

                      -

                      -This model computes the different thermal resistances present -in a single-U-tube borehole using the method of Bauer et al. (2011) -and computing explicitely the fluid-to-ground thermal resistance -Rb and the -grout-to-grout resistance -Ra as defined by Claesson and Hellstrom (2011) -using the multipole method. -

                      -

                      References

                      -

                      J. Claesson and G. Hellstrom. -Multipole method to calculate borehole thermal resistances in a borehole heat exchanger. - -HVAC&R Research, -17(6): 895-911, 2011.

                      -

                      -D. Bauer, W. Heidemann, H. Müller-Steinhagen, and H.-J. G. Diersch. - -Thermal resistance and capacity models for borehole heat exchangers -. -International Journal Of Energy Research, 35:312-320, 2011. -

                      -", revisions=" -
                        -
                      • -July 10, 2018, by Alex Laferrière:
                        -Updated documentation following major changes to the AixLib.Fluid.HeatExchangers.Ground package. -Additionally, implemented a partial InternalHex model. -
                      • -
                      • -June 18, 2014, by Michael Wetter:
                        -Added initialization for temperatures and derivatives of capFil1 -and capFil2 to avoid a warning during translation. -
                      • -
                      • -February 14, 2014, by Michael Wetter:
                        -Removed unused parameters B0 and B1. -
                      • -
                      • -January 24, 2014, by Michael Wetter:
                        -Revised implementation, added comments, replaced -HeatTransfer.Windows.BaseClasses.ThermalConductor -with resistance models from the Modelica Standard Library. -
                      • -
                      • -January 23, 2014, by Damien Picard:
                        -First implementation. -
                      • -
                      -"), +

                      + Model for the heat transfer between the fluid and within the borehole filling + for a single borehole segment. + This model computes the dynamic response of the fluid in the tubes, + the heat transfer between the fluid and the borehole filling, + and the heat storage within the fluid and the borehole filling. +

                      +

                      + This model computes the different thermal resistances present + in a single-U-tube borehole using the method of Bauer et al. (2011) + and computing explicitely the fluid-to-ground thermal resistance + Rb and the + grout-to-grout resistance + Ra as defined by Claesson and Hellstrom (2011) + using the multipole method. +

                      +

                      References

                      +

                      J. Claesson and G. Hellstrom. + Multipole method to calculate borehole thermal resistances in a borehole heat exchanger. + + HVAC&R Research, + 17(6): 895-911, 2011.

                      +

                      + D. Bauer, W. Heidemann, H. Müller-Steinhagen, and H.-J. G. Diersch. + + Thermal resistance and capacity models for borehole heat exchangers + . + International Journal Of Energy Research, 35:312-320, 2011. +

                      + ",revisions=" +
                        +
                      • + March 7, 2022, by Michael Wetter:
                        + Removed massDynamics.
                        + This is for + #1542. +
                      • +
                      • + February 28, 2022, by Massimo Cimmino:
                        + Removed printDebug parameter from call to + + AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.BaseClasses.Functions.internalResistancesOneUTube.
                        + This is for + IBPSA, #1582. +
                      • +
                      • + July 10, 2018, by Alex Laferrière:
                        + Updated documentation following major changes to the AixLib.Fluid.HeatExchangers.Ground package. + Additionally, implemented a partial InternalHex model. +
                      • +
                      • + June 18, 2014, by Michael Wetter:
                        + Added initialization for temperatures and derivatives of capFil1 + and capFil2 to avoid a warning during translation. +
                      • +
                      • + February 14, 2014, by Michael Wetter:
                        + Removed unused parameters B0 and B1. +
                      • +
                      • + January 24, 2014, by Michael Wetter:
                        + Revised implementation, added comments, replaced + HeatTransfer.Windows.BaseClasses.ThermalConductor + with resistance models from the Modelica Standard Library. +
                      • +
                      • + January 23, 2014, by Damien Picard:
                        + First implementation. +
                      • +
                      + "), Diagram(coordinateSystem(preserveAspectRatio=false, initialScale=0.1), - graphics)); + graphics), + __Dymola_LockedEditing="Model from IBPSA"); end InternalHEXOneUTube; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/InternalHEXTwoUTube.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/InternalHEXTwoUTube.mo index 7095583d7c..9c5a4ce83c 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/InternalHEXTwoUTube.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/InternalHEXTwoUTube.mo @@ -19,7 +19,7 @@ model InternalHEXTwoUTube final tau4=VTubSeg*rho4_nominal/m4_flow_nominal, vol1( final energyDynamics=energyDynamics, - final massDynamics=massDynamics, + final massDynamics=energyDynamics, final prescribedHeatFlowRate=false, final allowFlowReversal=allowFlowReversal1, final m_flow_small=m1_flow_small, @@ -27,14 +27,14 @@ model InternalHEXTwoUTube final mSenFac=mSenFac), vol2( final energyDynamics=energyDynamics, - final massDynamics=massDynamics, + final massDynamics=energyDynamics, final prescribedHeatFlowRate=false, final m_flow_small=m2_flow_small, final V=VTubSeg, final mSenFac=mSenFac), vol3( final energyDynamics=energyDynamics, - final massDynamics=massDynamics, + final massDynamics=energyDynamics, final prescribedHeatFlowRate=false, final allowFlowReversal=allowFlowReversal3, final m_flow_small=m3_flow_small, @@ -42,7 +42,7 @@ model InternalHEXTwoUTube final mSenFac=mSenFac), vol4( final energyDynamics=energyDynamics, - final massDynamics=massDynamics, + final massDynamics=energyDynamics, final prescribedHeatFlowRate=false, final m_flow_small=m4_flow_small, final V=VTubSeg, @@ -153,14 +153,13 @@ initial equation kMed=kMed, muMed=muMed, cpMed=cpMed, - m_flow_nominal=m1_flow_nominal, - printDebug=false); + m_flow_nominal=m1_flow_nominal); equation assert(borFieDat.conDat.borCon == AixLib.Fluid.Geothermal.Borefields.Types.BoreholeConfiguration.DoubleUTubeParallel or borFieDat.conDat.borCon == AixLib.Fluid.Geothermal.Borefields.Types.BoreholeConfiguration.DoubleUTubeSeries, "This model should be used for double U-type borefield, not single U-type. - Check that the conDat record has been correctly parametrized"); + Check that the conDat record has been correctly parametrized"); connect(RVol1.y, RConv1.Rc) annotation (Line( points={{-30.7,64},{-34,64},{-34,46},{-8,46}}, color={0,0,127}, @@ -223,62 +222,77 @@ equation fillColor={0,0,255}, fillPattern=FillPattern.Solid)}), Documentation(info=" -

                      -Model for the heat transfer between the fluid and within the borehole filling. -This model computes the dynamic response of the fluid in the tubes, -the heat transfer between the fluid and the borehole filling, -and the heat storage within the fluid and the borehole filling. -

                      -

                      -This model computes the different thermal resistances present -in a single-U-tube borehole using the method of Bauer et al. (2011) -and computing explicitely the fluid-to-ground thermal resistance -Rb and the -grout-to-grout resistance -Ra as defined by Claesson and Hellstrom (2011) -using the multipole method. -

                      -

                      References

                      -

                      J. Claesson and G. Hellstrom. -Multipole method to calculate borehole thermal resistances in a borehole heat exchanger. - -HVAC&R Research, -17(6): 895-911, 2011.

                      -

                      -D. Bauer, W. Heidemann, H. Müller-Steinhagen, and H.-J. G. Diersch. - -Thermal resistance and capacity models for borehole heat exchangers -. -International Journal Of Energy Research, 35:312-320, 2011. -

                      -", revisions=" -
                        -
                      • -July 10, 2018, by Alex Laferrière:
                        -Updated documentation following major changes to the AixLib.Fluid.HeatExchangers.Ground package. -Additionally, implemented a partial InternalHex model. -
                      • -
                      • -June 18, 2014, by Michael Wetter:
                        -Added initialization for temperatures and derivatives of capFil1 -and capFil2 to avoid a warning during translation. -
                      • -
                      • -February 14, 2014, by Michael Wetter:
                        -Removed unused parameters B0 and B1. -
                      • -
                      • -January 24, 2014, by Michael Wetter:
                        -Revised implementation, added comments, replaced -HeatTransfer.Windows.BaseClasses.ThermalConductor -with resistance models from the Modelica Standard Library. -
                      • -
                      • -January 23, 2014, by Damien Picard:
                        -First implementation. -
                      • -
                      -"), +

                      + Model for the heat transfer between the fluid and within the borehole filling. + This model computes the dynamic response of the fluid in the tubes, + the heat transfer between the fluid and the borehole filling, + and the heat storage within the fluid and the borehole filling. +

                      +

                      + This model computes the different thermal resistances present + in a single-U-tube borehole using the method of Bauer et al. (2011) + and computing explicitely the fluid-to-ground thermal resistance + Rb and the + grout-to-grout resistance + Ra as defined by Claesson and Hellstrom (2011) + using the multipole method. +

                      +

                      References

                      +

                      J. Claesson and G. Hellstrom. + Multipole method to calculate borehole thermal resistances in a borehole heat exchanger. + + HVAC&R Research, + 17(6): 895-911, 2011.

                      +

                      + D. Bauer, W. Heidemann, H. Müller-Steinhagen, and H.-J. G. Diersch. + + Thermal resistance and capacity models for borehole heat exchangers + . + International Journal Of Energy Research, 35:312-320, 2011. +

                      + ",revisions=" +
                        +
                      • + March 7, 2022, by Michael Wetter:
                        + Removed massDynamics.
                        + This is for + #1542. +
                      • +
                      • + February 28, 2022, by Massimo Cimmino:
                        + Removed printDebug parameter from call to + + AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.BaseClasses.Functions.internalResistancesTwoUTube.
                        + This is for + IBPSA, #1582. +
                      • +
                      • + July 10, 2018, by Alex Laferrière:
                        + Updated documentation following major changes to the AixLib.Fluid.HeatExchangers.Ground package. + Additionally, implemented a partial InternalHex model. +
                      • +
                      • + June 18, 2014, by Michael Wetter:
                        + Added initialization for temperatures and derivatives of capFil1 + and capFil2 to avoid a warning during translation. +
                      • +
                      • + February 14, 2014, by Michael Wetter:
                        + Removed unused parameters B0 and B1. +
                      • +
                      • + January 24, 2014, by Michael Wetter:
                        + Revised implementation, added comments, replaced + HeatTransfer.Windows.BaseClasses.ThermalConductor + with resistance models from the Modelica Standard Library. +
                      • +
                      • + January 23, 2014, by Damien Picard:
                        + First implementation. +
                      • +
                      + "), Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100, - 100}}), graphics)); + 100}}), graphics), + __Dymola_LockedEditing="Model from IBPSA"); end InternalHEXTwoUTube; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/InternalResistancesOneUTube.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/InternalResistancesOneUTube.mo index 5f4c062bf9..b570003f0a 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/InternalResistancesOneUTube.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/InternalResistancesOneUTube.mo @@ -4,9 +4,11 @@ model InternalResistancesOneUTube extends AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.BaseClasses.PartialInternalResistances; - parameter Modelica.SIunits.ThermalResistance Rgg_val "Thermal resistance between the two grout zones"; - parameter Modelica.SIunits.HeatCapacity Co_fil=borFieDat.filDat.dFil*borFieDat.filDat.cFil*hSeg*Modelica.Constants.pi - *(borFieDat.conDat.rBor^2 - 2*borFieDat.conDat.rTub^2) + parameter Modelica.Units.SI.ThermalResistance Rgg_val + "Thermal resistance between the two grout zones"; + parameter Modelica.Units.SI.HeatCapacity Co_fil=borFieDat.filDat.dFil* + borFieDat.filDat.cFil*hSeg*Modelica.Constants.pi*(borFieDat.conDat.rBor^2 + - 2*borFieDat.conDat.rTub^2) "Heat capacity of the whole filling material"; Modelica.Thermal.HeatTransfer.Components.ThermalResistor Rpg1(R=RCondGro_val) @@ -22,8 +24,8 @@ model InternalResistancesOneUTube Modelica.Thermal.HeatTransfer.Components.HeatCapacitor capFil1( C=Co_fil/2, T(start=T_start, fixed=(energyDynamics == Modelica.Fluid.Types.Dynamics.FixedInitial)), - der_T(fixed=(energyDynamics == Modelica.Fluid.Types.Dynamics.SteadyStateInitial))) if - dynFil + der_T(fixed=(energyDynamics == Modelica.Fluid.Types.Dynamics.SteadyStateInitial))) + if dynFil "Heat capacity of the filling material" annotation (Placement( transformation( extent={{-10,-10},{10,10}}, @@ -32,8 +34,8 @@ model InternalResistancesOneUTube Modelica.Thermal.HeatTransfer.Components.HeatCapacitor capFil2( C=Co_fil/2, T(start=T_start, fixed=(energyDynamics == Modelica.Fluid.Types.Dynamics.FixedInitial)), - der_T(fixed=(energyDynamics == Modelica.Fluid.Types.Dynamics.SteadyStateInitial))) if - dynFil + der_T(fixed=(energyDynamics == Modelica.Fluid.Types.Dynamics.SteadyStateInitial))) + if dynFil "Heat capacity of the filling material" annotation (Placement( transformation( extent={{-10,10},{10,-10}}, @@ -79,47 +81,48 @@ equation annotation ( Documentation(info=" -

                      -This model simulates the internal thermal resistance network of a borehole segment in -the case of a single U-tube borehole using the method of Bauer et al. (2011) -and computing explicitely the fluid-to-ground thermal resistance -Rb and the -grout-to-grout resistance -Ra as defined by Claesson and Hellstrom (2011) -using the multipole method. -

                      -

                      References

                      -

                      J. Claesson and G. Hellstrom. -Multipole method to calculate borehole thermal resistances in a borehole heat exchanger. - -HVAC&R Research, -17(6): 895-911, 2011.

                      -

                      -D. Bauer, W. Heidemann, H. Müller-Steinhagen, and H.-J. G. Diersch. - -Thermal resistance and capacity models for borehole heat exchangers -. -International Journal Of Energy Research, 35:312-320, 2011. -

                      -", revisions=" -
                        -
                      • -July 5, 2018, by Alex Laferrière:
                        -Extended the model from a partial class. -
                      • -
                      • -June, 2018, by Damien Picard:
                        -First implementation. -
                      • -
                      -"), Icon(graphics={ +

                      + This model simulates the internal thermal resistance network of a borehole segment in + the case of a single U-tube borehole using the method of Bauer et al. (2011) + and computing explicitely the fluid-to-ground thermal resistance + Rb and the + grout-to-grout resistance + Ra as defined by Claesson and Hellstrom (2011) + using the multipole method. +

                      +

                      References

                      +

                      J. Claesson and G. Hellstrom. + Multipole method to calculate borehole thermal resistances in a borehole heat exchanger. + + HVAC&R Research, + 17(6): 895-911, 2011.

                      +

                      + D. Bauer, W. Heidemann, H. Müller-Steinhagen, and H.-J. G. Diersch. + + Thermal resistance and capacity models for borehole heat exchangers + . + International Journal Of Energy Research, 35:312-320, 2011. +

                      + ",revisions=" +
                        +
                      • + July 5, 2018, by Alex Laferrière:
                        + Extended the model from a partial class. +
                      • +
                      • + June, 2018, by Damien Picard:
                        + First implementation. +
                      • +
                      + "),Icon(graphics={ Line( points={{-2,100}}, color={0,0,0}, thickness=1), Text( extent={{-100,144},{100,106}}, - lineColor={0,0,255}, + textColor={0,0,255}, fillPattern=FillPattern.HorizontalCylinder, fillColor={0,127,255}, - textString="%name")})); + textString="%name")}), + __Dymola_LockedEditing="Model from IBPSA"); end InternalResistancesOneUTube; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/InternalResistancesTwoUTube.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/InternalResistancesTwoUTube.mo index 07d51ca8bf..2b1695b91f 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/InternalResistancesTwoUTube.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/InternalResistancesTwoUTube.mo @@ -4,12 +4,13 @@ model InternalResistancesTwoUTube extends AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.BaseClasses.PartialInternalResistances; - parameter Modelica.SIunits.ThermalResistance Rgg1_val + parameter Modelica.Units.SI.ThermalResistance Rgg1_val "Thermal resistance between two neightbouring grout capacities, as defined by Bauer et al (2010)"; - parameter Modelica.SIunits.ThermalResistance Rgg2_val + parameter Modelica.Units.SI.ThermalResistance Rgg2_val "Thermal resistance between two grout capacities opposite to each other, as defined by Bauer et al (2010)"; - parameter Modelica.SIunits.HeatCapacity Co_fil=borFieDat.filDat.dFil*borFieDat.filDat.cFil*hSeg*Modelica.Constants.pi - *(borFieDat.conDat.rBor^2 - 4*borFieDat.conDat.rTub^2) + parameter Modelica.Units.SI.HeatCapacity Co_fil=borFieDat.filDat.dFil* + borFieDat.filDat.cFil*hSeg*Modelica.Constants.pi*(borFieDat.conDat.rBor^2 + - 4*borFieDat.conDat.rTub^2) "Heat capacity of the whole filling material"; Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a port_3 @@ -91,7 +92,7 @@ model InternalResistancesTwoUTube Modelica.Thermal.HeatTransfer.Components.HeatCapacitor capFil1(T(start= T_start, fixed=(energyDynamics == Modelica.Fluid.Types.Dynamics.FixedInitial)), der_T(fixed=(energyDynamics == Modelica.Fluid.Types.Dynamics.SteadyStateInitial)), - C=Co_fil/4) if dynFil "Heat capacity of the filling material" + C=Co_fil/4) if dynFil "Heat capacity of the filling material" annotation (Placement(transformation(extent={{-8,-8}, {8,8}}, rotation=90, @@ -99,13 +100,13 @@ model InternalResistancesTwoUTube Modelica.Thermal.HeatTransfer.Components.HeatCapacitor capFil2(T(start= T_start, fixed=(energyDynamics == Modelica.Fluid.Types.Dynamics.FixedInitial)), der_T(fixed=(energyDynamics == Modelica.Fluid.Types.Dynamics.SteadyStateInitial)), - C=Co_fil/4) if dynFil "Heat capacity of the filling material" + C=Co_fil/4) if dynFil "Heat capacity of the filling material" annotation (Placement(transformation(extent={{58,8},{ 74,24}}))); Modelica.Thermal.HeatTransfer.Components.HeatCapacitor capFil3(T(start= T_start, fixed=(energyDynamics == Modelica.Fluid.Types.Dynamics.FixedInitial)), der_T(fixed=(energyDynamics == Modelica.Fluid.Types.Dynamics.SteadyStateInitial)), - C=Co_fil/4) if dynFil "Heat capacity of the filling material" + C=Co_fil/4) if dynFil "Heat capacity of the filling material" annotation (Placement(transformation(extent={{-8,-8}, {8,8}}, rotation=90, @@ -113,7 +114,7 @@ model InternalResistancesTwoUTube Modelica.Thermal.HeatTransfer.Components.HeatCapacitor capFil4(T(start= T_start, fixed=(energyDynamics == Modelica.Fluid.Types.Dynamics.FixedInitial)), der_T(fixed=(energyDynamics == Modelica.Fluid.Types.Dynamics.SteadyStateInitial)), - C=Co_fil/4) if dynFil "Heat capacity of the filling material" + C=Co_fil/4) if dynFil "Heat capacity of the filling material" annotation (Placement(transformation(extent={{-82,20}, {-66,36}}))); equation @@ -211,44 +212,45 @@ equation rotation=135, thickness=0.5), Text( extent={{-100,144},{100,106}}, - lineColor={0,0,255}, + textColor={0,0,255}, fillPattern=FillPattern.HorizontalCylinder, fillColor={0,127,255}, textString="%name")}), Diagram( coordinateSystem(preserveAspectRatio=false)), Documentation(info=" -

                      -This model simulates the internal thermal resistance network of a borehole segment in -the case of a double U-tube borehole using the method of Bauer et al. (2011) -and computing explicitely the fluid-to-ground thermal resistance -Rb and the -grout-to-grout resistance -Ra as defined by Claesson and Hellstrom (2011) -using the multipole method. -

                      -

                      References

                      -

                      J. Claesson and G. Hellstrom. -Multipole method to calculate borehole thermal resistances in a borehole heat exchanger. - -HVAC&R Research, -17(6): 895-911, 2011.

                      -

                      -D. Bauer, W. Heidemann, H. Müller-Steinhagen, and H.-J. G. Diersch. - -Thermal resistance and capacity models for borehole heat exchangers -. -International Journal Of Energy Research, 35:312-320, 2011. -

                      -", revisions=" -
                        -
                      • -July 5, 2018, by Alex Laferrière:
                        -Extended the model from a partial class. -
                      • -
                      • -June, 2018, by Damien Picard:
                        -First implementation. -
                      • -
                      -")); +

                      + This model simulates the internal thermal resistance network of a borehole segment in + the case of a double U-tube borehole using the method of Bauer et al. (2011) + and computing explicitely the fluid-to-ground thermal resistance + Rb and the + grout-to-grout resistance + Ra as defined by Claesson and Hellstrom (2011) + using the multipole method. +

                      +

                      References

                      +

                      J. Claesson and G. Hellstrom. + Multipole method to calculate borehole thermal resistances in a borehole heat exchanger. + + HVAC&R Research, + 17(6): 895-911, 2011.

                      +

                      + D. Bauer, W. Heidemann, H. Müller-Steinhagen, and H.-J. G. Diersch. + + Thermal resistance and capacity models for borehole heat exchangers + . + International Journal Of Energy Research, 35:312-320, 2011. +

                      + ",revisions=" +
                        +
                      • + July 5, 2018, by Alex Laferrière:
                        + Extended the model from a partial class. +
                      • +
                      • + June, 2018, by Damien Picard:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end InternalResistancesTwoUTube; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/PartialBorehole.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/PartialBorehole.mo index 1e02c43182..eec84d53c1 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/PartialBorehole.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/PartialBorehole.mo @@ -21,18 +21,16 @@ partial model PartialBorehole parameter Integer nSeg(min=1) = 10 "Number of segments to use in vertical discretization of the boreholes"; - parameter Modelica.SIunits.Temperature TGro_start[nSeg] - "Start value of grout temperature" - annotation (Dialog(tab="Initialization")); + parameter Modelica.Units.SI.Temperature TGro_start[nSeg] + "Start value of grout temperature" annotation (Dialog(tab="Initialization")); - parameter Modelica.SIunits.Temperature TFlu_start[nSeg] = TGro_start - "Start value of fluid temperature" - annotation (Dialog(tab="Initialization")); + parameter Modelica.Units.SI.Temperature TFlu_start[nSeg]=TGro_start + "Start value of fluid temperature" annotation (Dialog(tab="Initialization")); // Assumptions parameter Modelica.Fluid.Types.Dynamics energyDynamics=Modelica.Fluid.Types.Dynamics.DynamicFreeInitial "Type of energy balance: dynamic (3 initialization options) or steady state" - annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Equations")); + annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Conservation equations")); // Initialization parameter Medium.AbsolutePressure p_start = Medium.p_default @@ -50,26 +48,26 @@ partial model PartialBorehole annotation (Placement(transformation(extent={{-10,90},{10,110}}))); annotation(Documentation(info=" -

                      -Partial model to implement models simulating geothermal U-tube boreholes modeled -as several borehole segments, with a uniform borehole wall boundary condition. -

                      -", revisions=" -
                        -
                      • -January 18, 2019, by Jianjun Hu:
                        -Limited the media choice to water and glycolWater. -See #1050. -
                      • -
                      • -July 5, 2018, by Alex Laferrière:
                        -First implementation of partial model. -
                      • -
                      • -July 2014, by Damien Picard:
                        -First implementation. -
                      -"), +

                      + Partial model to implement models simulating geothermal U-tube boreholes modeled + as several borehole segments, with a uniform borehole wall boundary condition. +

                      + ",revisions=" +
                        +
                      • + January 18, 2019, by Jianjun Hu:
                        + Limited the media choice to water and glycolWater. + See #1050. +
                      • +
                      • + July 5, 2018, by Alex Laferrière:
                        + First implementation of partial model. +
                      • +
                      • + July 2014, by Damien Picard:
                        + First implementation. +
                      + "), Icon(coordinateSystem( preserveAspectRatio=true, extent={{-100,-100},{100,100}}, @@ -108,5 +106,6 @@ Icon(coordinateSystem( extent={{64,76},{74,-84}}, lineColor={0,0,0}, fillColor={192,192,192}, - fillPattern=FillPattern.Backward)})); + fillPattern=FillPattern.Backward)}), + __Dymola_LockedEditing="Model from IBPSA"); end PartialBorehole; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/PartialInternalHEX.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/PartialInternalHEX.mo index 1b2820c52e..5aa9c01e29 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/PartialInternalHEX.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/PartialInternalHEX.mo @@ -18,31 +18,30 @@ partial model PartialInternalHEX parameter Boolean dynFil=true "Set to false to remove the dynamics of the filling material" annotation (Dialog(tab="Dynamics")); - parameter Modelica.SIunits.Length hSeg + parameter Modelica.Units.SI.Length hSeg "Length of the internal heat exchanger"; - parameter Modelica.SIunits.Volume VTubSeg = hSeg*Modelica.Constants.pi*(borFieDat.conDat.rTub-borFieDat.conDat.eTub)^2 + parameter Modelica.Units.SI.Volume VTubSeg=hSeg*Modelica.Constants.pi*( + borFieDat.conDat.rTub - borFieDat.conDat.eTub)^2 "Fluid volume in each tube"; - parameter Modelica.SIunits.Temperature TFlu_start - "Start value of fluid temperature" - annotation (Dialog(tab="Initialization")); - parameter Modelica.SIunits.Temperature TGro_start - "Start value of grout temperature" - annotation (Dialog(tab="Initialization")); + parameter Modelica.Units.SI.Temperature TFlu_start + "Start value of fluid temperature" annotation (Dialog(tab="Initialization")); + parameter Modelica.Units.SI.Temperature TGro_start + "Start value of grout temperature" annotation (Dialog(tab="Initialization")); Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a port_wall "Thermal connection for borehole wall" annotation (Placement(transformation(extent={{-10,90},{10,110}}))); protected - parameter Modelica.SIunits.SpecificHeatCapacity cpMed= + parameter Modelica.Units.SI.SpecificHeatCapacity cpMed= Medium.specificHeatCapacityCp(Medium.setState_pTX( Medium.p_default, Medium.T_default, Medium.X_default)) "Specific heat capacity of the fluid"; - parameter Modelica.SIunits.ThermalConductivity kMed= + parameter Modelica.Units.SI.ThermalConductivity kMed= Medium.thermalConductivity(Medium.setState_pTX( Medium.p_default, Medium.T_default, Medium.X_default)) "Thermal conductivity of the fluid"; - parameter Modelica.SIunits.DynamicViscosity muMed=Medium.dynamicViscosity( + parameter Modelica.Units.SI.DynamicViscosity muMed=Medium.dynamicViscosity( Medium.setState_pTX( Medium.p_default, Medium.T_default, @@ -56,8 +55,8 @@ initial equation assert(borFieDat.conDat.rBor > borFieDat.conDat.xC + borFieDat.conDat.rTub and 0 < borFieDat.conDat.xC - borFieDat.conDat.rTub, "The borehole geometry is not physical. Check the borefield data record - to ensure that the shank spacing is larger than the outer tube radius - and that the borehole radius is sufficiently large."); + to ensure that the shank spacing is larger than the outer tube radius + and that the borehole radius is sufficiently large."); annotation (Icon(coordinateSystem(preserveAspectRatio=false), graphics={ Rectangle( extent={{-70,80},{70,-80}}, @@ -67,57 +66,58 @@ initial equation fillPattern=FillPattern.Solid)}), Diagram( coordinateSystem(preserveAspectRatio=false)), Documentation(info=" -

                      -Partial model to implement models simulating the thermal and fluid behaviour of a borehole segment. -

                      -

                      -The thermodynamic properties of the fluid circulating in the borehole are calculated -as protected parameters in this partial model: cp (cpMed), -k (kMed) and μ (muMed). Additionally, the -following parameters are already declared as protected parameters and thus do not -need to be declared in models which extend this partial model: -

                      -
                        -
                      • -Rgb_val (Thermal resistance between grout zone and borehole wall) -
                      • -
                      • -RCondGro_val (Thermal resistance between pipe wall and capacity in grout) -
                      • -
                      • -x (Grout capacity location) -
                      • -
                      -", revisions=" -
                        -
                      • -January 18, 2019, by Jianjun Hu:
                        -Limited the media choice to water and glycolWater. -See #1050. -
                      • -
                      • -July 10, 2018, by Alex Laferrière:
                        -First implementation of partial model. -
                      • -
                      • -June 18, 2014, by Michael Wetter:
                        -Added initialization for temperatures and derivatives of capFil1 -and capFil2 to avoid a warning during translation. -
                      • -
                      • -February 14, 2014, by Michael Wetter:
                        -Removed unused parameters B0 and B1. -
                      • -
                      • -January 24, 2014, by Michael Wetter:
                        -Revised implementation, added comments, replaced -HeatTransfer.Windows.BaseClasses.ThermalConductor -with resistance models from the Modelica Standard Library. -
                      • -
                      • -January 23, 2014, by Damien Picard:
                        -First implementation. -
                      • -
                      -")); +

                      + Partial model to implement models simulating the thermal and fluid behaviour of a borehole segment. +

                      +

                      + The thermodynamic properties of the fluid circulating in the borehole are calculated + as protected parameters in this partial model: cp (cpMed), + k (kMed) and μ (muMed). Additionally, the + following parameters are already declared as protected parameters and thus do not + need to be declared in models which extend this partial model: +

                      +
                        +
                      • + Rgb_val (Thermal resistance between grout zone and borehole wall) +
                      • +
                      • + RCondGro_val (Thermal resistance between pipe wall and capacity in grout) +
                      • +
                      • + x (Grout capacity location) +
                      • +
                      + ",revisions=" +
                        +
                      • + January 18, 2019, by Jianjun Hu:
                        + Limited the media choice to water and glycolWater. + See #1050. +
                      • +
                      • + July 10, 2018, by Alex Laferrière:
                        + First implementation of partial model. +
                      • +
                      • + June 18, 2014, by Michael Wetter:
                        + Added initialization for temperatures and derivatives of capFil1 + and capFil2 to avoid a warning during translation. +
                      • +
                      • + February 14, 2014, by Michael Wetter:
                        + Removed unused parameters B0 and B1. +
                      • +
                      • + January 24, 2014, by Michael Wetter:
                        + Revised implementation, added comments, replaced + HeatTransfer.Windows.BaseClasses.ThermalConductor + with resistance models from the Modelica Standard Library. +
                      • +
                      • + January 23, 2014, by Damien Picard:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end PartialInternalHEX; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/PartialInternalResistances.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/PartialInternalResistances.mo index dc7ce89961..f9660da905 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/PartialInternalResistances.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/BaseClasses/PartialInternalResistances.mo @@ -1,19 +1,19 @@ within AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.BaseClasses; partial model PartialInternalResistances "Partial model to implement borehole segment internal resistance models" - parameter Modelica.SIunits.Length hSeg + parameter Modelica.Units.SI.Length hSeg "Length of the internal heat exchanger"; - parameter Modelica.SIunits.Temperature T_start + parameter Modelica.Units.SI.Temperature T_start "Initial temperature of the filling material"; parameter Data.Borefield.Template borFieDat "Borefield data" annotation (Placement(transformation(extent={{-100,-100},{-80,-80}}))); - parameter Modelica.SIunits.ThermalResistance Rgb_val + parameter Modelica.Units.SI.ThermalResistance Rgb_val "Thermal resistance between grout zone and borehole wall"; - parameter Modelica.SIunits.ThermalResistance RCondGro_val + parameter Modelica.Units.SI.ThermalResistance RCondGro_val "Thermal resistance between: pipe wall to capacity in grout"; parameter Modelica.Fluid.Types.Dynamics energyDynamics=Modelica.Fluid.Types.Dynamics.DynamicFreeInitial "Type of energy balance: dynamic (3 initialization options) or steady state" - annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Equations")); + annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Conservation equations")); parameter Boolean dynFil=true "Set to false to remove the dynamics of the filling material." annotation (Dialog(tab="Dynamics")); @@ -53,24 +53,25 @@ partial model PartialInternalResistances thickness=0.5)}), Diagram( coordinateSystem(preserveAspectRatio=false)), Documentation(info=" -

                      -Partial model to implement the inner resistance network of a borehole segment. -

                      -

                      -The partial model uses a thermal port representing a uniform borehole wall for -that segment, and at least two other thermal ports (one for each tube going through the borehole -segment). -

                      -", revisions=" -
                        -
                      • -July 5, 2018, by Alex Laferrière:
                        -First implementation of partial class. -
                      • -
                      • -June, 2018, by Damien Picard:
                        -First implementation. -
                      • -
                      -")); +

                      + Partial model to implement the inner resistance network of a borehole segment. +

                      +

                      + The partial model uses a thermal port representing a uniform borehole wall for + that segment, and at least two other thermal ports (one for each tube going through the borehole + segment). +

                      + ",revisions=" +
                        +
                      • + July 5, 2018, by Alex Laferrière:
                        + First implementation of partial class. +
                      • +
                      • + June, 2018, by Damien Picard:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end PartialInternalResistances; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/Examples/BaseClasses/PartialBorehole.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/Examples/BaseClasses/PartialBorehole.mo index f27806ce3d..eebb05be42 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/Examples/BaseClasses/PartialBorehole.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/Examples/BaseClasses/PartialBorehole.mo @@ -4,7 +4,7 @@ partial model PartialBorehole "Partial model for borehole example models" parameter Integer nSeg(min=1) = 10 "Number of segments to use in vertical discretization of the boreholes"; - parameter Modelica.SIunits.Temperature T_start = 273.15 + 22 + parameter Modelica.Units.SI.Temperature T_start=273.15 + 22 "Initial soil temperature"; parameter AixLib.Fluid.Geothermal.Borefields.Data.Borefield.Example @@ -70,17 +70,18 @@ equation connect(borHol.port_wall, preTem.port) annotation (Line(points={{1.77636e-15,14}, {0,14},{0,70},{-40,70}}, color={191,0,0})); annotation(Documentation(info=" -

                      -This partial model is used for examples using boreholes models which extend - -AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.Examples.BaseClasses.PartialBorehole. -

                      -", revisions=" -
                        -
                      • -July 9, 2018, by Alex Laferrière:
                        -First implementation. -
                      • -
                      -")); +

                      + This partial model is used for examples using boreholes models which extend + + AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.Examples.BaseClasses.PartialBorehole. +

                      + ",revisions=" +
                        +
                      • + July 9, 2018, by Alex Laferrière:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end PartialBorehole; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/Examples/BoreholeDynamics.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/Examples/BoreholeDynamics.mo index 43dccf1edf..1950b6d7db 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/Examples/BoreholeDynamics.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/Examples/BoreholeDynamics.mo @@ -5,7 +5,7 @@ model BoreholeDynamics "Example model for different borehole models and dynamics parameter Integer nSeg(min=1) = 10 "Number of segments to use in vertical discretization of the boreholes"; - parameter Modelica.SIunits.Temperature T_start = 273.15 + 22 + parameter Modelica.Units.SI.Temperature T_start=273.15 + 22 "Initial soil temperature"; AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.OneUTube @@ -291,24 +291,24 @@ equation annotation (experiment(Tolerance=1e-6, StopTime=15000), Diagram( coordinateSystem(preserveAspectRatio=false, extent={{-120,-160},{120,120}})), - __Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/Examples/BoreholeDynamics.mos" + __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/Examples/BoreholeDynamics.mos" "Simulate and Plot"), Documentation(info=" -

                      -This example illustrates different borehole models using different mass -and energy dynamics. -

                      -", revisions=" -
                        -
                      • -July 10, 2018, by Alex Laferrière:
                        -Removed ground heat transfer models so the example focuses on the boreholes. -
                      • -
                      • -February, 2018, by Damien Picard:
                        -First implementation. -
                      • -
                      -")); +

                      + This example illustrates different borehole models using different mass + and energy dynamics. +

                      + ",revisions=" +
                        +
                      • + July 10, 2018, by Alex Laferrière:
                        + Removed ground heat transfer models so the example focuses on the boreholes. +
                      • +
                      • + February, 2018, by Damien Picard:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end BoreholeDynamics; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/Examples/BoreholeOneUTube.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/Examples/BoreholeOneUTube.mo index a5232de6c3..71c5f4d948 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/Examples/BoreholeOneUTube.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/Examples/BoreholeOneUTube.mo @@ -9,31 +9,31 @@ model BoreholeOneUTube "Test for the single U-tube borehole model" energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial)); annotation ( - __Dymola_Commands( file= - "Resources/Scripts/Dymola/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/Examples/BoreholeOneUTube.mos" + __Dymola_Commands( file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/Examples/BoreholeOneUTube.mos" "Simulate and plot"), Diagram(coordinateSystem(preserveAspectRatio=false,extent={{-100,-100},{100, 100}})), Documentation(info=" -

                      -This example illustrates the use of the - -AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.OneUTubes -model. It simulates the behavior of a borehole with a prescribed -borehole wall temperature boundary condition. -

                      -", revisions=" -
                        -
                      • -July 10, 2018, by Alex Laferrière:
                        -Adjusted the example following major changes to the AixLib.Fluid.HeatExchangers.Ground package. -Additionally, implemented a partial example model. -
                      • -
                      • -August 30, 2011, by Pierre Vigouroux:
                        -First implementation. -
                      • -
                      -"), - experiment(Tolerance=1e-6, StopTime=360000)); +

                      + This example illustrates the use of the + + AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.OneUTubes + model. It simulates the behavior of a borehole with a prescribed + borehole wall temperature boundary condition. +

                      + ",revisions=" +
                        +
                      • + July 10, 2018, by Alex Laferrière:
                        + Adjusted the example following major changes to the AixLib.Fluid.HeatExchangers.Ground package. + Additionally, implemented a partial example model. +
                      • +
                      • + August 30, 2011, by Pierre Vigouroux:
                        + First implementation. +
                      • +
                      + "), + experiment(Tolerance=1e-6, StopTime=360000), + __Dymola_LockedEditing="Model from IBPSA"); end BoreholeOneUTube; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/Examples/BoreholeTwoUTube.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/Examples/BoreholeTwoUTube.mo index 95ddfb3f79..2c7ae07d0a 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/Examples/BoreholeTwoUTube.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/Examples/BoreholeTwoUTube.mo @@ -9,28 +9,28 @@ model BoreholeTwoUTube "Test for the double U-tube borehole model" borCon=AixLib.Fluid.Geothermal.Borefields.Types.BoreholeConfiguration.DoubleUTubeParallel))); annotation (experiment(Tolerance=1e-6, StopTime=360000), - __Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/Examples/BoreholeTwoUTube.mos" + __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/Examples/BoreholeTwoUTube.mos" "Simulate and Plot"), Documentation(info=" -

                      -This example illustrates the use of the - -AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.TwoUTube -model. It simulates the behavior of a borehole with a prescribed -borehole wall boundary condition. -

                      -", revisions=" -
                        -
                      • -July 10, 2018, by Alex Laferrière:
                        -Adjusted the example following major changes to the AixLib.Fluid.HeatExchangers.Ground package. -Additionally, implemented a partial example model. -
                      • -
                      • -August 30, 2011, by Pierre Vigouroux:
                        -First implementation. -
                      • -
                      -")); +

                      + This example illustrates the use of the + + AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.TwoUTube + model. It simulates the behavior of a borehole with a prescribed + borehole wall boundary condition. +

                      + ",revisions=" +
                        +
                      • + July 10, 2018, by Alex Laferrière:
                        + Adjusted the example following major changes to the AixLib.Fluid.HeatExchangers.Ground package. + Additionally, implemented a partial example model. +
                      • +
                      • + August 30, 2011, by Pierre Vigouroux:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end BoreholeTwoUTube; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/OneUTube.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/OneUTube.mo index 16b0a66f51..137b378393 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/OneUTube.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/OneUTube.mo @@ -87,37 +87,38 @@ equation grid={2,2}, initialScale=0.5), graphics={Text( extent={{60,72},{84,58}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="")}), Documentation(info=" -

                      -Model of a single U-tube borehole heat exchanger. -The borehole heat exchanger is vertically discretized into -nseg elements of height -h=hBor⁄nseg. -Each segment contains a model for the heat transfer in the borehole, -with a uniform borehole wall boundary temperature given by the -port_wall port. -

                      -

                      -The heat transfer in the borehole is computed using a convective heat transfer -coefficient that depends on the fluid velocity, a heat resistance between the -two pipes, and a heat resistance between the pipes and the borehole wall. -The heat capacity of the fluid and the heat capacity of the grout are taken -into account. The vertical heat flow is assumed to be zero. -

                      -", revisions=" -
                        -
                      • -July 2018, by Alex Laferrière:
                        -Following major changes to the structure of the AixLib.Fluid.HeatExchangers.Ground package, -the documentation has been changed to reflect the new role of this model. -Additionally, this model now extends a partial borehole model. -
                      • -
                      • -July 2014, by Damien Picard:
                        -First implementation. -
                      • -
                      -")); +

                      + Model of a single U-tube borehole heat exchanger. + The borehole heat exchanger is vertically discretized into + nseg elements of height + h=hBor⁄nseg. + Each segment contains a model for the heat transfer in the borehole, + with a uniform borehole wall boundary temperature given by the + port_wall port. +

                      +

                      + The heat transfer in the borehole is computed using a convective heat transfer + coefficient that depends on the fluid velocity, a heat resistance between the + two pipes, and a heat resistance between the pipes and the borehole wall. + The heat capacity of the fluid and the heat capacity of the grout are taken + into account. The vertical heat flow is assumed to be zero. +

                      + ",revisions=" +
                        +
                      • + July 2018, by Alex Laferrière:
                        + Following major changes to the structure of the AixLib.Fluid.HeatExchangers.Ground package, + the documentation has been changed to reflect the new role of this model. + Additionally, this model now extends a partial borehole model. +
                      • +
                      • + July 2014, by Damien Picard:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end OneUTube; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/TwoUTube.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/TwoUTube.mo index 6a612e0dc0..230df77905 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/TwoUTube.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/TwoUTube.mo @@ -167,40 +167,41 @@ equation grid={2,2}, initialScale=0.5), graphics={Text( extent={{60,72},{84,58}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString=""), Text( extent={{50,-32},{90,-38}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="")}), Documentation(info=" -

                      -Model of a double U-tube borehole heat exchanger. -The borehole heat exchanger is vertically discretized into -nseg elements of height -h=hBor⁄nseg. -Each segment contains a model for the heat transfer in the borehole, -with a uniform borehole wall boundary temperature given by the -port_wall port. -

                      -

                      -The heat transfer in the borehole is computed using a convective heat transfer -coefficient that depends on the fluid velocity, a heat resistance between each -pair of pipes, and a heat resistance between the pipes and the borehole wall. -The heat capacity of the fluid and the heat capacity of the grout are taken -into account. The vertical heat flow is assumed to be zero. -

                      -", revisions=" -
                        -
                      • -July 2018, by Alex Laferrière:
                        -Following major changes to the structure of the AixLib.Fluid.HeatExchangers.Ground package, -the documentation has been changed to reflect the new role of this model. -Additionally, this model now extends a partial borehole model. -
                      • -
                      • -July 2014, by Damien Picard:
                        -First implementation. -
                      • -
                      -")); +

                      + Model of a double U-tube borehole heat exchanger. + The borehole heat exchanger is vertically discretized into + nseg elements of height + h=hBor⁄nseg. + Each segment contains a model for the heat transfer in the borehole, + with a uniform borehole wall boundary temperature given by the + port_wall port. +

                      +

                      + The heat transfer in the borehole is computed using a convective heat transfer + coefficient that depends on the fluid velocity, a heat resistance between each + pair of pipes, and a heat resistance between the pipes and the borehole wall. + The heat capacity of the fluid and the heat capacity of the grout are taken + into account. The vertical heat flow is assumed to be zero. +

                      + ",revisions=" +
                        +
                      • + July 2018, by Alex Laferrière:
                        + Following major changes to the structure of the AixLib.Fluid.HeatExchangers.Ground package, + the documentation has been changed to reflect the new role of this model. + Additionally, this model now extends a partial borehole model. +
                      • +
                      • + July 2014, by Damien Picard:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end TwoUTube; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/Cylindrical.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/Cylindrical.mo index 917ef305f3..7143615790 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/Cylindrical.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/Cylindrical.mo @@ -4,14 +4,14 @@ model Cylindrical parameter AixLib.Fluid.Geothermal.Borefields.Data.Soil.Template soiDat annotation (Placement(transformation(extent={{-100,-100},{-80,-80}}))); - parameter Modelica.SIunits.Height h "Height of the cylinder"; - parameter Modelica.SIunits.Radius r_a "Internal radius"; - parameter Modelica.SIunits.Radius r_b "External radius"; + parameter Modelica.Units.SI.Height h "Height of the cylinder"; + parameter Modelica.Units.SI.Radius r_a "Internal radius"; + parameter Modelica.Units.SI.Radius r_b "External radius"; parameter Integer nSta(min=1) = 10 "Number of state variables"; - parameter Modelica.SIunits.Temperature TInt_start + parameter Modelica.Units.SI.Temperature TInt_start "Initial temperature at port_a, used if steadyStateInitial = false" annotation (Dialog(group="Initialization", enable=not steadyStateInitial)); - parameter Modelica.SIunits.Temperature TExt_start + parameter Modelica.Units.SI.Temperature TExt_start "Initial temperature at port_b, used if steadyStateInitial = false" annotation (Dialog(group="Initialization", enable=not steadyStateInitial)); parameter Boolean steadyStateInitial=false @@ -20,8 +20,8 @@ model Cylindrical parameter Real gridFac(min=1) = 2 "Grid factor for spacing"; - parameter Modelica.SIunits.Radius r[nSta + 1](each fixed=false) - "Radius to the boundary of the i-th domain"; + parameter Modelica.Units.SI.Radius r[nSta + 1](each fixed=false) + "Radius to the boundary of the i-th domain"; Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a port_a(T(start=TInt_start)) "Heat port at surface a" annotation (Placement(transformation(extent={{-110, @@ -30,31 +30,30 @@ model Cylindrical "Heat port at surface b" annotation (Placement(transformation(extent={{90,-10}, {110,10}},rotation=0))); - Modelica.SIunits.Temperature T[nSta]( - start={TInt_start + - (TExt_start - TInt_start)/Modelica.Math.log(r_b/r_a)* - Modelica.Math.log((r_a + (r_b - r_a)/(nSta)*(i - 0.5))/r_a) for i in 1:nSta}) + Modelica.Units.SI.Temperature T[nSta](start={TInt_start + (TExt_start - + TInt_start)/Modelica.Math.log(r_b/r_a)*Modelica.Math.log((r_a + (r_b - + r_a)/(nSta)*(i - 0.5))/r_a) for i in 1:nSta}) "Temperature of the states"; - Modelica.SIunits.TemperatureDifference dT "port_a.T - port_b.T"; + Modelica.Units.SI.TemperatureDifference dT "port_a.T - port_b.T"; - Modelica.SIunits.HeatFlowRate Q_flow[nSta + 1] + Modelica.Units.SI.HeatFlowRate Q_flow[nSta + 1] "Heat flow rate from state i to i+1"; protected - parameter Modelica.SIunits.Radius rC[nSta](each fixed=false) + parameter Modelica.Units.SI.Radius rC[nSta](each fixed=false) "Radius to the center of the i-th domain"; - final parameter Modelica.SIunits.SpecificHeatCapacity c=soiDat.cSoi + final parameter Modelica.Units.SI.SpecificHeatCapacity c=soiDat.cSoi "Specific heat capacity"; - final parameter Modelica.SIunits.ThermalConductivity k=soiDat.kSoi + final parameter Modelica.Units.SI.ThermalConductivity k=soiDat.kSoi "Thermal conductivity of the material"; - final parameter Modelica.SIunits.Density d=soiDat.dSoi + final parameter Modelica.Units.SI.Density d=soiDat.dSoi "Density of the material"; - parameter Modelica.SIunits.ThermalConductance G[nSta + 1](each fixed=false) + parameter Modelica.Units.SI.ThermalConductance G[nSta + 1](each fixed=false) "Heat conductance between the temperature nodes"; - parameter Modelica.SIunits.HeatCapacity C[nSta](each fixed=false) + parameter Modelica.Units.SI.HeatCapacity C[nSta](each fixed=false) "Heat capacity of each state"; parameter Real gridFac_sum(fixed=false); @@ -170,15 +169,15 @@ equation fillPattern=FillPattern.Solid), Text( extent={{-110,-74},{-26,-86}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="%r_a"), Text( extent={{-22,-62},{20,-76}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="%nSta"), Text( extent={{16,-76},{102,-88}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="%r_b"), Polygon( points={{-50,60},{-38,34},{-32,0},{-36,-30},{-50,-60},{-62,-60},{-48, @@ -196,74 +195,75 @@ equation fillColor={175,175,175}), Text( extent={{-100,100},{100,60}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="%name")}), defaultComponentName="lay", Documentation(info=" -

                      -Model for radial heat transfer in a hollow cylinder. -

                      -

                      -If the heat capacity of the material is non-zero, then this model computes transient heat conduction, i.e., it -computes a numerical approximation to the solution of the heat equation -

                      -

                      - ρ c ( ∂ T(r,t) ⁄ ∂t ) = - k ( ∂² T(r,t) ⁄ ∂r² + 1 ⁄ r   ∂ T(r,t) ⁄ ∂r ), -

                      -

                      -where -ρ -is the mass density, -c -is the specific heat capacity per unit mass, -T -is the temperature at location r and time t and -k is the heat conductivity. -At the locations r=ra and r=rb, -the temperature and heat flow rate are equal to the -temperature and heat flow rate of the heat ports. -

                      -

                      -If the heat capacity of the material is set to zero, then steady-state heat flow is computed using -

                      -

                      - Q = 2 π k (Ta-Tb)⁄ ln(ra ⁄ rb), -

                      -

                      -where -ra is the internal radius, -rb is the external radius, -Ta is the temperature at port a and -Tb is the temperature at port b. -

                      -

                      Implementation

                      -

                      -To spatially discretize the heat equation, the construction is -divided into compartments with nSta ≥ 1 state variables. -The state variables are connected to each other through thermal conductors. -There is also a thermal conductor -between the surfaces and the outermost state variables. Thus, to obtain -the surface temperature, use port_a.T (or port_b.T) -and not the variable T[1]. -

                      -", revisions=" -
                        -
                      • -January, 2014, by Damien Picard:
                        -Modify the discretization of the cilindrical layer so that the first three layers have an equal thickness the following an exponentionally growing thickness. -This follows the guidelines of Eskilson (P. Eskilson. Thermal analysis of heat extraction -boreholes. PhD thesis, Dep. of Mathematical -Physics, University of Lund, Sweden, 1987). -
                      • -
                      • -March 9, 2012, by Michael Wetter:
                        -Removed protected variable der_T as it is not required. -
                      • -
                      • -April 14 2011, by Pierre Vigouroux:
                        -First implementation. -
                      • -
                      -")); +

                      + Model for radial heat transfer in a hollow cylinder. +

                      +

                      + If the heat capacity of the material is non-zero, then this model computes transient heat conduction, i.e., it + computes a numerical approximation to the solution of the heat equation +

                      +

                      + ρ c ( ∂ T(r,t) ⁄ ∂t ) = + k ( ∂² T(r,t) ⁄ ∂r² + 1 ⁄ r   ∂ T(r,t) ⁄ ∂r ), +

                      +

                      + where + ρ + is the mass density, + c + is the specific heat capacity per unit mass, + T + is the temperature at location r and time t and + k is the heat conductivity. + At the locations r=ra and r=rb, + the temperature and heat flow rate are equal to the + temperature and heat flow rate of the heat ports. +

                      +

                      + If the heat capacity of the material is set to zero, then steady-state heat flow is computed using +

                      +

                      + Q = 2 π k (Ta-Tb)⁄ ln(ra ⁄ rb), +

                      +

                      + where + ra is the internal radius, + rb is the external radius, + Ta is the temperature at port a and + Tb is the temperature at port b. +

                      +

                      Implementation

                      +

                      + To spatially discretize the heat equation, the construction is + divided into compartments with nSta ≥ 1 state variables. + The state variables are connected to each other through thermal conductors. + There is also a thermal conductor + between the surfaces and the outermost state variables. Thus, to obtain + the surface temperature, use port_a.T (or port_b.T) + and not the variable T[1]. +

                      + ",revisions=" +
                        +
                      • + January, 2014, by Damien Picard:
                        + Modify the discretization of the cilindrical layer so that the first three layers have an equal thickness the following an exponentionally growing thickness. + This follows the guidelines of Eskilson (P. Eskilson. Thermal analysis of heat extraction + boreholes. PhD thesis, Dep. of Mathematical + Physics, University of Lund, Sweden, 1987). +
                      • +
                      • + March 9, 2012, by Michael Wetter:
                        + Removed protected variable der_T as it is not required. +
                      • +
                      • + April 14 2011, by Pierre Vigouroux:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end Cylindrical; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/GroundTemperatureResponse.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/GroundTemperatureResponse.mo index 031e9299c3..c73ab51b30 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/GroundTemperatureResponse.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/GroundTemperatureResponse.mo @@ -1,7 +1,7 @@ within AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer; model GroundTemperatureResponse "Model calculating discrete load aggregation" - parameter Modelica.SIunits.Time tLoaAgg(final min = Modelica.Constants.eps)=3600 - "Time resolution of load aggregation"; + parameter Modelica.Units.SI.Time tLoaAgg(final min=Modelica.Constants.eps)= + 3600 "Time resolution of load aggregation"; parameter Integer nCel(min=1)=5 "Number of cells per aggregation level"; parameter Boolean forceGFunCalc = false "Set to true to force the thermal response to be calculated at the start instead of checking whether it has been pre-computed"; @@ -41,9 +41,8 @@ protected nTimSho=nTimSho, nTimLon=nTimLon, ttsMax=ttsMax) "String with encrypted g-function arguments"; - parameter Modelica.SIunits.Time timFin= - (borFieDat.conDat.hBor^2/(9*borFieDat.soiDat.aSoi))*ttsMax - "Final time for g-function calculation"; + parameter Modelica.Units.SI.Time timFin=(borFieDat.conDat.hBor^2/(9*borFieDat.soiDat.aSoi)) + *ttsMax "Final time for g-function calculation"; parameter Integer i(min=1)= AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.LoadAggregation.countAggregationCells( lvlBas=lvlBas, @@ -53,28 +52,30 @@ protected "Number of aggregation cells"; final parameter Real[nTimTot,2] timSer(each fixed=false) "g-function input from matrix, with the second column as temperature Tstep"; - final parameter Modelica.SIunits.Time t_start(fixed=false) "Simulation start time"; - final parameter Modelica.SIunits.Time[i] nu(each fixed=false) + final parameter Modelica.Units.SI.Time t_start(fixed=false) + "Simulation start time"; + final parameter Modelica.Units.SI.Time[i] nu(each fixed=false) "Time vector for load aggregation"; final parameter Real[i] kappa(each fixed=false) "Weight factor for each aggregation cell"; final parameter Real[i] rCel(each fixed=false) "Cell widths"; - discrete Modelica.SIunits.HeatFlowRate[i] QAgg_flow + discrete Modelica.Units.SI.HeatFlowRate[i] QAgg_flow "Vector of aggregated loads"; - discrete Modelica.SIunits.HeatFlowRate[i] QAggShi_flow + discrete Modelica.Units.SI.HeatFlowRate[i] QAggShi_flow "Shifted vector of aggregated loads"; discrete Integer curCel "Current occupied cell"; - discrete Modelica.SIunits.TemperatureDifference delTBor0 + discrete Modelica.Units.SI.TemperatureDifference delTBor0 "Previous time step's temperature difference current borehole wall temperature minus initial borehole temperature"; discrete Real derDelTBor0(unit="K/s") "Derivative of wall temperature change from previous time steps"; final parameter Real dTStepdt(fixed=false) "Time derivative of g/(2*pi*H*Nb*ks) within most recent cell"; - Modelica.SIunits.Heat U "Accumulated heat flow from all boreholes"; - discrete Modelica.SIunits.Heat U_old "Accumulated heat flow from all boreholes at last aggregation step"; + Modelica.Units.SI.Heat U "Accumulated heat flow from all boreholes"; + discrete Modelica.Units.SI.Heat U_old + "Accumulated heat flow from all boreholes at last aggregation step"; initial equation QAgg_flow = zeros(i); @@ -177,170 +178,171 @@ equation fillPattern=FillPattern.Solid), Text( extent={{-151,147},{149,107}}, - lineColor={0,0,255}, + textColor={0,0,255}, fillPattern=FillPattern.HorizontalCylinder, fillColor={0,127,255}, textString="%name")}), Diagram( coordinateSystem(preserveAspectRatio=false)), Documentation(info=" -

                      -This model calculates the ground temperature response to obtain the temperature -at the borehole wall in a geothermal system where heat is being injected into or -extracted from the ground. -

                      -

                      -A load-aggregation scheme based on that developed by Claesson and Javed (2012) is -used to calculate the borehole wall temperature response with the temporal superposition -of ground thermal loads. In its base form, the -load-aggregation scheme uses fixed-length aggregation cells to agglomerate -thermal load history together, with more distant cells (denoted with a higher cell and vector index) -representing more distant thermal history. The more distant the thermal load, the -less impactful it is on the borehole wall temperature change at the current time step. -Each cell has an aggregation time associated to it denoted by nu, -which corresponds to the simulation time (since the beginning of heat injection or -extraction) at which the cell will begin shifting its thermal load to more distant -cells. To determine nu, cells have a temporal size rcel -(rcel in this model) -which follows the exponential growth -

                      -

                      -\"image\" -

                      -

                      -where nCel is the number of consecutive cells which can have the same size. -Decreasing rcel will generally decrease calculation times, at the cost of -precision in the temporal superposition. rcel is expressed in multiples -of the aggregation time resolution (via the parameter tLoaAgg). -Then, nu may be expressed as the sum of all rcel values -(multiplied by the aggregation time resolution) up to and including that cell in question. -

                      -

                      -To determine the weighting factors, the borefield's temperature -step response at the borefield wall is determined as -

                      -

                      -\"image\" -

                      -

                      -where g(·) is the borefield's thermal response factor known as the g-function, -H is the total length of all boreholes and ks is the thermal -conductivity of the soil. The weighting factors kappa (κ in the equation below) -for a given cell i are then expressed as follows. -

                      -

                      -\"image\" -

                      -

                      -where ν refers to the vector nu in this model and -Tstep0)=0. -

                      -

                      -At every aggregation time step, a time event is generated to perform the load aggregation steps. -First, the thermal load is shifted. When shifting between cells of different size, total -energy is conserved. This operation is illustred in the figure below by Cimmino (2014). -

                      -

                      -\"image\" -

                      -

                      -After the cell-shifting operation is performed, the first aggregation cell has its -value set to the average thermal load since the last aggregation step. -Temporal superposition is then applied by means -of a scalar product between the aggregated thermal loads QAgg_flow and the -weighting factors κ. -

                      -

                      -Due to Modelica's variable time steps, the load aggregation scheme is modified by separating -the thermal response between the current aggregation time step and everything preceding it. -This is done according to -

                      -

                      -\"image\" -
                      -\"image\" -

                      -

                      -where Tb is the borehole wall temperature, -Tg -is the undisturbed ground temperature, -Q is the ground thermal load per borehole length and h = g/(2 π ks) -is a temperature response factor based on the g-function. tk -is the last discrete aggregation time step, meaning that the current time t -satisfies tk≤t≤tk+1. -Δtagg(=tk+1-tk) is the -parameter tLoaAgg in the present model. -

                      -

                      -Thus, -ΔTb*(t) -is the borehole wall temperature change due to the thermal history prior to the current -aggregation step. At every aggregation time step, load aggregation and temporal superposition -are used to calculate its discrete value. Assuming no heat injection or extraction until -tk+1, this term is assumed to have a linear -time derivative, which is given by the difference between ΔTb*(tk+1) -(the temperature change from load history at the next discrete aggregation time step, which -is constant over the duration of the ongoing aggregation time step) and the total -temperature change at the last aggregation time step, ΔTb(t). -

                      -

                      -\"image\" -

                      -

                      -The second term ΔTb,q(t) concerns the ongoing aggregation time step. -To obtain the time derivative of this term, the thermal response factor h is assumed -to vary linearly over the course of an aggregation time step. Therefore, because -the ongoing aggregation time step always concerns the first aggregation cell, its derivative (denoted -by the parameter dTStepdt in this model) can be calculated as -kappa[1], the first value in the kappa vector, -divided by the aggregation time step Δt. -The derivative of the temperature change at the borehole wall is then expressed -as the multiplication of dTStepdt (which only needs to be -calculated once at the start of the simulation) and the heat flow Q at -the borehole wall. -

                      -

                      -\"image\" -

                      -

                      -\"image\" -

                      -

                      -With the two terms in the expression of ΔTb(t) expressed -as time derivatives, ΔTb(t) can itself also be -expressed as its time derivative and implemented as such directly in the Modelica -equations block with the der() operator. -

                      -

                      -\"image\" -
                      -\"image\" -

                      -

                      -This load aggregation scheme is validated in - -AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.Validation.Analytic_20Years. -

                      -

                      References

                      -

                      -Cimmino, M. 2014. Développement et validation expérimentale de facteurs de réponse -thermique pour champs de puits géothermiques, -Ph.D. Thesis, École Polytechnique de Montréal. -

                      -

                      -Claesson, J. and Javed, S. 2012. A load-aggregation method to calculate extraction temperatures of borehole heat exchangers. ASHRAE Transactions 118(1): 530-539. -

                      -", revisions=" -
                        -
                      • -August 30, 2018, by Michael Wetter:
                        -Refactored model to compute the temperature difference relative to the initial temperature, -because the model is independent of the initial temperature. -
                      • -
                      • -April 5, 2018, by Alex Laferrière:
                        -First implementation. -
                      • -
                      -")); +

                      + This model calculates the ground temperature response to obtain the temperature + at the borehole wall in a geothermal system where heat is being injected into or + extracted from the ground. +

                      +

                      + A load-aggregation scheme based on that developed by Claesson and Javed (2012) is + used to calculate the borehole wall temperature response with the temporal superposition + of ground thermal loads. In its base form, the + load-aggregation scheme uses fixed-length aggregation cells to agglomerate + thermal load history together, with more distant cells (denoted with a higher cell and vector index) + representing more distant thermal history. The more distant the thermal load, the + less impactful it is on the borehole wall temperature change at the current time step. + Each cell has an aggregation time associated to it denoted by nu, + which corresponds to the simulation time (since the beginning of heat injection or + extraction) at which the cell will begin shifting its thermal load to more distant + cells. To determine nu, cells have a temporal size rcel + (rcel in this model) + which follows the exponential growth +

                      +

                      + \"image\" +

                      +

                      + where nCel is the number of consecutive cells which can have the same size. + Decreasing rcel will generally decrease calculation times, at the cost of + precision in the temporal superposition. rcel is expressed in multiples + of the aggregation time resolution (via the parameter tLoaAgg). + Then, nu may be expressed as the sum of all rcel values + (multiplied by the aggregation time resolution) up to and including that cell in question. +

                      +

                      + To determine the weighting factors, the borefield's temperature + step response at the borefield wall is determined as +

                      +

                      + \"image\" +

                      +

                      + where g(·) is the borefield's thermal response factor known as the g-function, + H is the total length of all boreholes and ks is the thermal + conductivity of the soil. The weighting factors kappa (κ in the equation below) + for a given cell i are then expressed as follows. +

                      +

                      + \"image\" +

                      +

                      + where ν refers to the vector nu in this model and + Tstep0)=0. +

                      +

                      + At every aggregation time step, a time event is generated to perform the load aggregation steps. + First, the thermal load is shifted. When shifting between cells of different size, total + energy is conserved. This operation is illustred in the figure below by Cimmino (2014). +

                      +

                      + \"image\" +

                      +

                      + After the cell-shifting operation is performed, the first aggregation cell has its + value set to the average thermal load since the last aggregation step. + Temporal superposition is then applied by means + of a scalar product between the aggregated thermal loads QAgg_flow and the + weighting factors κ. +

                      +

                      + Due to Modelica's variable time steps, the load aggregation scheme is modified by separating + the thermal response between the current aggregation time step and everything preceding it. + This is done according to +

                      +

                      + \"image\" +
                      + \"image\" +

                      +

                      + where Tb is the borehole wall temperature, + Tg + is the undisturbed ground temperature, + Q is the ground thermal load per borehole length and h = g/(2 π ks) + is a temperature response factor based on the g-function. tk + is the last discrete aggregation time step, meaning that the current time t + satisfies tk≤t≤tk+1. + Δtagg(=tk+1-tk) is the + parameter tLoaAgg in the present model. +

                      +

                      + Thus, + ΔTb*(t) + is the borehole wall temperature change due to the thermal history prior to the current + aggregation step. At every aggregation time step, load aggregation and temporal superposition + are used to calculate its discrete value. Assuming no heat injection or extraction until + tk+1, this term is assumed to have a linear + time derivative, which is given by the difference between ΔTb*(tk+1) + (the temperature change from load history at the next discrete aggregation time step, which + is constant over the duration of the ongoing aggregation time step) and the total + temperature change at the last aggregation time step, ΔTb(t). +

                      +

                      + \"image\" +

                      +

                      + The second term ΔTb,q(t) concerns the ongoing aggregation time step. + To obtain the time derivative of this term, the thermal response factor h is assumed + to vary linearly over the course of an aggregation time step. Therefore, because + the ongoing aggregation time step always concerns the first aggregation cell, its derivative (denoted + by the parameter dTStepdt in this model) can be calculated as + kappa[1], the first value in the kappa vector, + divided by the aggregation time step Δt. + The derivative of the temperature change at the borehole wall is then expressed + as the multiplication of dTStepdt (which only needs to be + calculated once at the start of the simulation) and the heat flow Q at + the borehole wall. +

                      +

                      + \"image\" +

                      +

                      + \"image\" +

                      +

                      + With the two terms in the expression of ΔTb(t) expressed + as time derivatives, ΔTb(t) can itself also be + expressed as its time derivative and implemented as such directly in the Modelica + equations block with the der() operator. +

                      +

                      + \"image\" +
                      + \"image\" +

                      +

                      + This load aggregation scheme is validated in + + AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.Validation.Analytic_20Years. +

                      +

                      References

                      +

                      + Cimmino, M. 2014. Développement et validation expérimentale de facteurs de réponse + thermique pour champs de puits géothermiques, + Ph.D. Thesis, École Polytechnique de Montréal. +

                      +

                      + Claesson, J. and Javed, S. 2012. A load-aggregation method to calculate extraction temperatures of borehole heat exchangers. ASHRAE Transactions 118(1): 530-539. +

                      + ",revisions=" +
                        +
                      • + August 30, 2018, by Michael Wetter:
                        + Refactored model to compute the temperature difference relative to the initial temperature, + because the model is independent of the initial temperature. +
                      • +
                      • + April 5, 2018, by Alex Laferrière:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end GroundTemperatureResponse; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/Validation/AggregationCellTimes.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/Validation/AggregationCellTimes.mo index 927f3a5896..d50ea58af0 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/Validation/AggregationCellTimes.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/Validation/AggregationCellTimes.mo @@ -4,12 +4,15 @@ model AggregationCellTimes extends Modelica.Icons.Example; parameter Integer i = 6 "Number of aggregation cells"; - parameter Modelica.SIunits.Time tLoaAgg=10 "Time resolution of load aggregation"; - final parameter Modelica.SIunits.Time[i] nu(each fixed=false) + parameter Modelica.Units.SI.Time tLoaAgg=10 + "Time resolution of load aggregation"; + final parameter Modelica.Units.SI.Time[i] nu(each fixed=false) "Time vector for load aggregation"; - final parameter Modelica.SIunits.Time[i] rCel(each fixed=false) "Cell widths"; + final parameter Modelica.Units.SI.Time[i] rCel(each fixed=false) + "Cell widths"; - Modelica.SIunits.Time nu_error,rCel_error "Error on chosen values"; + Modelica.Units.SI.Time nu_error; + Modelica.Units.SI.Time rCel_error "Error on chosen values"; initial equation (nu,rCel) = AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.LoadAggregation.aggregationCellTimes( @@ -27,18 +30,19 @@ annotation (experiment(Tolerance=1e-6, StopTime=1.0), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/Validation/AggregationCellTimes.mos" "Simulate and plot"), Documentation(info=" -

                      -This validation case builds the aggregation vectors (rCel and nu) -for a fictional case with 6 cells, built in 3 layers of 2 cells which double in size -each level. The timFin input to the function called is lower than the aggregation -time of the 6th cell, and the 6th cell must therefore be truncated from a size of 4 to a size of 2. -

                      -", revisions=" -
                        -
                      • -July 18, 2018, by Alex Laferrière:
                        -First implementation. -
                      • -
                      -")); +

                      + This validation case builds the aggregation vectors (rCel and nu) + for a fictional case with 6 cells, built in 3 layers of 2 cells which double in size + each level. The timFin input to the function called is lower than the aggregation + time of the 6th cell, and the 6th cell must therefore be truncated from a size of 4 to a size of 2. +

                      + ",revisions=" +
                        +
                      • + July 18, 2018, by Alex Laferrière:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end AggregationCellTimes; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/Validation/AggregationWeightingFactors.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/Validation/AggregationWeightingFactors.mo index 12f9767577..3fc2746d44 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/Validation/AggregationWeightingFactors.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/Validation/AggregationWeightingFactors.mo @@ -11,7 +11,7 @@ model AggregationWeightingFactors 6.27297603019976, 2.43435015306157e-05; 9.21672932384307, 3.00295537091117e-05] "Complete time matrix with TStep"; - Modelica.SIunits.ThermalResistance[10] kappa + Modelica.Units.SI.ThermalResistance[10] kappa "Weight factor for each aggregation cell"; equation @@ -25,20 +25,21 @@ annotation (experiment(Tolerance=1e-6, StopTime=1.0), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/Validation/AggregationWeightingFactors.mos" "Simulate and plot"), Documentation(info=" -

                      -This validation case uses the first few values of a borehole temperature reponse -time series to construct the weighting factors kappa. The aggregation -cells are chosen such that there is a change in levels (and therefore a doubling -in the size of the cells) from cell 5 to 6. Therefore, kappa[5] is lower than -kappa[4] and kappa[7] is lower than kappa[6], but -kappa[6] is higher than kappa[5]. -

                      -", revisions=" -
                        -
                      • -July 18, 2018, by Alex Laferrière:
                        -First implementation. -
                      • -
                      -")); +

                      + This validation case uses the first few values of a borehole temperature reponse + time series to construct the weighting factors kappa. The aggregation + cells are chosen such that there is a change in levels (and therefore a doubling + in the size of the cells) from cell 5 to 6. Therefore, kappa[5] is lower than + kappa[4] and kappa[7] is lower than kappa[6], but + kappa[6] is higher than kappa[5]. +

                      + ",revisions=" +
                        +
                      • + July 18, 2018, by Alex Laferrière:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end AggregationWeightingFactors; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/Validation/CountAggregationCells.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/Validation/CountAggregationCells.mo index a427572973..f0ddacb453 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/Validation/CountAggregationCells.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/Validation/CountAggregationCells.mo @@ -15,18 +15,19 @@ annotation (experiment(Tolerance=1e-6, StopTime=1.0), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/Validation/CountAggregationCells.mos" "Simulate and plot"), Documentation(info=" -

                      -This validation case counts the required length of the aggregation vectors for the -same fictional case as in - -AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.LoadAggregation.Validation.AggregationCellTimes. -

                      -", revisions=" -
                        -
                      • -July 18, 2018, by Alex Laferrière:
                        -First implementation. -
                      • -
                      -")); +

                      + This validation case counts the required length of the aggregation vectors for the + same fictional case as in + + AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.LoadAggregation.Validation.AggregationCellTimes. +

                      + ",revisions=" +
                        +
                      • + July 18, 2018, by Alex Laferrière:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end CountAggregationCells; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/Validation/ShiftAggregationCells.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/Validation/ShiftAggregationCells.mo index 60651d3105..ece9de0f7f 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/Validation/ShiftAggregationCells.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/Validation/ShiftAggregationCells.mo @@ -3,7 +3,7 @@ model ShiftAggregationCells "This validation case test the cell shifting procedu extends Modelica.Icons.Example; discrete Integer curCel "Current occupied cell"; - discrete Modelica.SIunits.HeatFlowRate[5] QAggShi_flow + discrete Modelica.Units.SI.HeatFlowRate[5] QAggShi_flow "Shifted vector of aggregated loads"; initial equation @@ -24,24 +24,25 @@ annotation (experiment(StartTime=3.5,StopTime=5.5,Tolerance=1e-6), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/Validation/ShiftAggregationCells.mos" "Simulate and plot"), Documentation(info=" -

                      -This validation case replicates the load-shifting procedure illustred in the figure below by Cimmino (2014). -

                      -

                      -\"image\" -

                      -

                      References

                      -

                      -Cimmino, M. 2014. Développement et validation expérimentale de facteurs de réponse -thermique pour champs de puits géothermiques, -Ph.D. Thesis, École Polytechnique de Montréal. -

                      -", revisions=" -
                        -
                      • -July 18, 2018, by Alex Laferrière:
                        -First implementation. -
                      • -
                      -")); +

                      + This validation case replicates the load-shifting procedure illustred in the figure below by Cimmino (2014). +

                      +

                      + \"image\" +

                      +

                      References

                      +

                      + Cimmino, M. 2014. Développement et validation expérimentale de facteurs de réponse + thermique pour champs de puits géothermiques, + Ph.D. Thesis, École Polytechnique de Montréal. +

                      + ",revisions=" +
                        +
                      • + July 18, 2018, by Alex Laferrière:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end ShiftAggregationCells; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/Validation/TemperatureResponseMatrix.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/Validation/TemperatureResponseMatrix.mo index 2f8d937b15..4b7103d44e 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/Validation/TemperatureResponseMatrix.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/Validation/TemperatureResponseMatrix.mo @@ -3,8 +3,8 @@ model TemperatureResponseMatrix "This validation case test the calculation, writing and reading of the temperature step response" extends Modelica.Icons.Example; - parameter Modelica.SIunits.Time timSer[26+50,2]= - AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.LoadAggregation.temperatureResponseMatrix( + parameter Modelica.Units.SI.Time timSer[26 + 50,2]= + AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.LoadAggregation.temperatureResponseMatrix( nBor=1, cooBor={{0,0}}, hBor=150, @@ -15,11 +15,11 @@ model TemperatureResponseMatrix nSeg=12, nTimSho=26, nTimLon=50, - nTimTot=26+50, + nTimTot=26 + 50, ttsMax=exp(5), sha="TemperatureResponseMatrix_validation", forceGFunCalc=true) "Resulting temperature response matrix"; - Modelica.SIunits.ThermalResistance TStep "Temperature step response"; + Modelica.Units.SI.ThermalResistance TStep "Temperature step response"; equation TStep = Modelica.Math.Vectors.interpolate(timSer[:,1],timSer[:,2],time); @@ -28,18 +28,19 @@ annotation (experiment(StopTime=31536000,Tolerance=1e-6), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/Validation/TemperatureResponseMatrix.mos" "Simulate and plot"), Documentation(info=" -

                      -This validation case calculates the g-function for a defined single borehole, turns it -into a temperature step response, saves it as "TemperatureResponseMatrix_validationTStep.mat", -reads this .mat file and shows the evolution of the temperature step reponse over -the course of the first year. -

                      -", revisions=" -
                        -
                      • -July 18, 2018, by Alex Laferrière:
                        -First implementation. -
                      • -
                      -")); +

                      + This validation case calculates the g-function for a defined single borehole, turns it + into a temperature step response, saves it as "TemperatureResponseMatrix_validationTStep.mat", + reads this .mat file and shows the evolution of the temperature step reponse over + the course of the first year. +

                      + ",revisions=" +
                        +
                      • + July 18, 2018, by Alex Laferrière:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end TemperatureResponseMatrix; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/Validation/TemporalSuperposition.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/Validation/TemporalSuperposition.mo index 27da5161f7..4bee95222f 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/Validation/TemporalSuperposition.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/Validation/TemporalSuperposition.mo @@ -2,12 +2,13 @@ within AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.LoadAggregati model TemporalSuperposition "This validation case applies temporal superposition with truncated vectors" extends Modelica.Icons.Example; - parameter Modelica.SIunits.TemperatureDifference supPos = AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.LoadAggregation.temporalSuperposition( + parameter Modelica.Units.SI.TemperatureDifference supPos= + AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.LoadAggregation.temporalSuperposition( i=6, QAgg_flow={2,1e6,3,1e6,1e6}, kappa={0.4,0,0.2,1,0}, curCel=3) "Temporal superposition"; - Modelica.SIunits.TemperatureDifference supPosErr; + Modelica.Units.SI.TemperatureDifference supPosErr; equation supPosErr = abs((2*0.4+3*0.2)-supPos); @@ -16,18 +17,19 @@ annotation (experiment(Tolerance=1e-6, StopTime=1.0), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/Validation/TemporalSuperposition.mos" "Simulate and plot"), Documentation(info=" -

                      -This validation case uses a fictional load profile and weighting factors to ensure -that the temporal superposition is correctly done. The curCel input to -the function called truncates the vectors involved in the scalar product such that -the large load in the QAgg_flow vector mustn't affect the final result. -

                      -", revisions=" -
                        -
                      • -July 18, 2018, by Alex Laferrière:
                        -First implementation. -
                      • -
                      -")); +

                      + This validation case uses a fictional load profile and weighting factors to ensure + that the temporal superposition is correctly done. The curCel input to + the function called truncates the vectors involved in the scalar product such that + the large load in the QAgg_flow vector mustn't affect the final result. +

                      + ",revisions=" +
                        +
                      • + July 18, 2018, by Alex Laferrière:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end TemporalSuperposition; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/aggregationCellTimes.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/aggregationCellTimes.mo index eecba2bf74..c5dc471d08 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/aggregationCellTimes.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/aggregationCellTimes.mo @@ -6,10 +6,11 @@ function aggregationCellTimes input Integer i "Size of time vector"; input Real lvlBas "Base for growth between each level, e.g. 2"; input Integer nCel "Number of cells of same size per level"; - input Modelica.SIunits.Time tLoaAgg(final min=Modelica.Constants.small) "Time resolution of load aggregation"; - input Modelica.SIunits.Time timFin "Total simulation max length"; + input Modelica.Units.SI.Time tLoaAgg(final min=Modelica.Constants.small) + "Time resolution of load aggregation"; + input Modelica.Units.SI.Time timFin "Total simulation max length"; - output Modelica.SIunits.Time nu[i] "Time vector nu of size i"; + output Modelica.Units.SI.Time nu[i] "Time vector nu of size i"; output Real rCel[i](each unit="1") "Cell width vector of size i"; protected @@ -31,22 +32,23 @@ algorithm end if; annotation (Documentation(info=" -

                      Simultaneously constructs both the nu vector, which is the -aggregation time of each cell, and the rCel vector, which -is the temporal size of each cell normalized with the time resolution of load -aggregation tLoaAgg. -

                      -", revisions=" -
                        -
                      • -July 15, 2018, by Michael Wetter:
                        -Added min=Modelica.Constants.small to tLoaAgg -so that a tool can infer that this quantity is non-zero. -
                      • -
                      • -March 5, 2018, by Alex Laferrière:
                        -First implementation. -
                      • -
                      -")); +

                      Simultaneously constructs both the nu vector, which is the + aggregation time of each cell, and the rCel vector, which + is the temporal size of each cell normalized with the time resolution of load + aggregation tLoaAgg. +

                      + ",revisions=" +
                        +
                      • + July 15, 2018, by Michael Wetter:
                        + Added min=Modelica.Constants.small to tLoaAgg + so that a tool can infer that this quantity is non-zero. +
                      • +
                      • + March 5, 2018, by Alex Laferrière:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end aggregationCellTimes; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/aggregationWeightingFactors.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/aggregationWeightingFactors.mo index d6b61ccbf6..d8c83146c9 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/aggregationWeightingFactors.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/aggregationWeightingFactors.mo @@ -5,14 +5,18 @@ function aggregationWeightingFactors input Integer i "Size of aggregation vector"; input Integer nTimTot "Size of g-function time table"; - input Modelica.SIunits.ThermalResistance TStep[nTimTot,2] "Time matrix with TStep"; - input Modelica.SIunits.Time nu[i] "Aggregation time vector nu"; + input Modelica.Units.SI.ThermalResistance TStep[nTimTot,2] + "Time matrix with TStep"; + input Modelica.Units.SI.Time nu[i] "Aggregation time vector nu"; - output Modelica.SIunits.ThermalResistance kappa[i] "Weighting factors vector"; + output Modelica.Units.SI.ThermalResistance kappa[i] + "Weighting factors vector"; protected - Modelica.SIunits.ThermalResistance prevT "Interpolated value of TStep at previous cell"; - Modelica.SIunits.ThermalResistance curT "Interpolated value of TStep at current cell"; + Modelica.Units.SI.ThermalResistance prevT + "Interpolated value of TStep at previous cell"; + Modelica.Units.SI.ThermalResistance curT + "Interpolated value of TStep at current cell"; Integer curInt "Integer to select data interval"; Real[size(TStep[:,1], 1)] d(each unit="K/J") "Derivatives at the support points"; @@ -63,18 +67,19 @@ algorithm end for; annotation (Documentation(info=" -

                      -This function uses spline interpolation to construct the weighting factors -vector kappa using the aggregation times nu and the -temperature step reponse (a time-series in the form of a matrix) of the -borefield as an input. -

                      -", revisions=" -
                        -
                      • -March 5, 2018, by Alex Laferrière:
                        -First implementation. -
                      • -
                      -")); +

                      + This function uses spline interpolation to construct the weighting factors + vector kappa using the aggregation times nu and the + temperature step reponse (a time-series in the form of a matrix) of the + borefield as an input. +

                      + ",revisions=" +
                        +
                      • + March 5, 2018, by Alex Laferrière:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end aggregationWeightingFactors; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/countAggregationCells.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/countAggregationCells.mo index ab54cac886..8824d4600f 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/countAggregationCells.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/countAggregationCells.mo @@ -5,14 +5,14 @@ function countAggregationCells input Real lvlBas "Base for growth between each level, e.g. 2"; input Integer nCel(min=1) "Number of cells of same size per level"; - input Modelica.SIunits.Time timFin "Total simulation max length"; - input Modelica.SIunits.Time tLoaAgg "Time resolution of load aggregation"; + input Modelica.Units.SI.Time timFin "Total simulation max length"; + input Modelica.Units.SI.Time tLoaAgg "Time resolution of load aggregation"; output Integer i(min=1) "Size of aggregation vectors"; protected - Modelica.SIunits.Duration width_i "Width of current aggregation cell"; - Modelica.SIunits.Time nu_i "End time of current aggregation cell"; + Modelica.Units.SI.Duration width_i "Width of current aggregation cell"; + Modelica.Units.SI.Time nu_i "End time of current aggregation cell"; algorithm assert(timFin > 0, "Total simulation time must be bigger than 0."); @@ -27,22 +27,23 @@ algorithm end while; annotation (Documentation(info=" -

                      -Function that counts the required length of the aggregation time vector -nu and of the weighting factor vectors kappa based on -the maximum time for calculations related to the ground temperature response. -

                      -", revisions=" -
                        -
                      • -July 15, 2018, by Michael Wetter:
                        -Added min=1 to nCel -so that a tool can infer that this quantity is non-zero. -
                      • -
                      • -March 5, 2018, by Alex Laferrière:
                        -First implementation. -
                      • -
                      -")); +

                      + Function that counts the required length of the aggregation time vector + nu and of the weighting factor vectors kappa based on + the maximum time for calculations related to the ground temperature response. +

                      + ",revisions=" +
                        +
                      • + July 15, 2018, by Michael Wetter:
                        + Added min=1 to nCel + so that a tool can infer that this quantity is non-zero. +
                      • +
                      • + March 5, 2018, by Alex Laferrière:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end countAggregationCells; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/shiftAggregationCells.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/shiftAggregationCells.mo index 491c8da862..76bb0ef8cf 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/shiftAggregationCells.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/shiftAggregationCells.mo @@ -4,13 +4,15 @@ function shiftAggregationCells extends Modelica.Icons.Function; input Integer i "Number of aggregation cells"; - input Modelica.SIunits.HeatFlowRate QAgg_flow[i] "Vector of aggregated loads"; + input Modelica.Units.SI.HeatFlowRate QAgg_flow[i] + "Vector of aggregated loads"; input Real rCel[i](each min=Modelica.Constants.small) "Aggregation cell widths"; - input Modelica.SIunits.Time nu[i] "Cell aggregation times"; - input Modelica.SIunits.Time curTim "Current simulation time"; + input Modelica.Units.SI.Time nu[i] "Cell aggregation times"; + input Modelica.Units.SI.Time curTim "Current simulation time"; output Integer curCel "Current occupied aggregation cell"; - output Modelica.SIunits.HeatFlowRate QAggShi_flow[i] "Shifted vector of aggregated loads"; + output Modelica.Units.SI.HeatFlowRate QAggShi_flow[i] + "Shifted vector of aggregated loads"; algorithm curCel := 1; @@ -31,23 +33,24 @@ algorithm QAggShi_flow[1] := 0; annotation (Documentation(info=" -

                      -Performs the shifting operation which propagates the thermal load history -towards the more distant aggregation cells, and then sets the current cell's -value at 0. Additionally, this function also outputs the last filled load -aggregation cell. -

                      -", revisions=" -
                        -
                      • -July 15, 2018, by Michael Wetter:
                        -Added min=Modelica.Constants.small to rCel -so that a tool can infer that this quantity is non-zero. -
                      • -
                      • -March 5, 2018, by Alex Laferrière:
                        -First implementation. -
                      • -
                      -")); +

                      + Performs the shifting operation which propagates the thermal load history + towards the more distant aggregation cells, and then sets the current cell's + value at 0. Additionally, this function also outputs the last filled load + aggregation cell. +

                      + ",revisions=" +
                        +
                      • + July 15, 2018, by Michael Wetter:
                        + Added min=Modelica.Constants.small to rCel + so that a tool can infer that this quantity is non-zero. +
                      • +
                      • + March 5, 2018, by Alex Laferrière:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end shiftAggregationCells; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/temperatureResponseMatrix.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/temperatureResponseMatrix.mo index 47b4071068..f84a2f22c9 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/temperatureResponseMatrix.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/temperatureResponseMatrix.mo @@ -1,16 +1,15 @@ within AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.LoadAggregation; -function temperatureResponseMatrix +impure function temperatureResponseMatrix "Reads and possibly writes a matrix with a time series of the borefield's temperature response" extends Modelica.Icons.Function; input Integer nBor "Number of boreholes"; input Real cooBor[nBor, 2] "Borehole coordinates"; - input Modelica.SIunits.Height hBor "Borehole length"; - input Modelica.SIunits.Height dBor "Borehole buried depth"; - input Modelica.SIunits.Radius rBor "Borehole radius"; - input Modelica.SIunits.ThermalDiffusivity aSoi - "Thermal diffusivity of soil"; - input Modelica.SIunits.ThermalConductivity kSoi + input Modelica.Units.SI.Height hBor "Borehole length"; + input Modelica.Units.SI.Height dBor "Borehole buried depth"; + input Modelica.Units.SI.Radius rBor "Borehole radius"; + input Modelica.Units.SI.ThermalDiffusivity aSoi "Thermal diffusivity of soil"; + input Modelica.Units.SI.ThermalConductivity kSoi "Thermal conductivity of soil"; input Integer nSeg "Number of line source segments per borehole"; input Integer nTimSho "Number of time steps in short time region"; @@ -21,11 +20,12 @@ function temperatureResponseMatrix input Boolean forceGFunCalc "Set to true to force the thermal response to be calculated at the start"; - output Modelica.SIunits.ThermalResistance TStep[nTimTot, 2] "Temperature step-response time series"; + output Modelica.Units.SI.ThermalResistance TStep[nTimTot,2] + "Temperature step-response time series"; protected String pathSave "Path of the folder used to save the g-function"; - Modelica.SIunits.Time[nTimTot] tGFun "g-function evaluation times"; + Modelica.Units.SI.Time[nTimTot] tGFun "g-function evaluation times"; Real[nTimTot] gFun "g-function vector"; Boolean writegFun = false "True if g-function was succesfully written to file"; @@ -69,38 +69,43 @@ algorithm ncol=2); annotation (Documentation(info=" -

                      -This function uses the parameters required to calculate the borefield's thermal -response to build a SHA1-encrypted string unique to the borefield in question. -Then, if the forceGFunCalc input is true or if -there is no .mat file with the SHA1 hash as its filename in the -tmp/temperatureResponseMatrix folder, -the thermal response will be calculated and written as a -.mat file. Otherwise, the -thermal response will simply be read from the -.mat file. In the .mat file, the data -is saved in a matrix with the name TStep, where the first column is -the time (in seconds) and the second column is the temperature step response, -which is the g-function divided by 2 π H ksoi, with -H being the borehole length and ksoi being the thermal -conductivity of the soil. -

                      -", revisions=" -
                        -
                      • -August 27, 2018, by Michael Wetter:
                        -Changed name of temporary directory so that it is clear for users -that this is a temporary directory. -
                      • -
                      • -July 15, 2018, by Michael Wetter:
                        -Changed implementation to use matrix read and write from -the Modelica Standard Library. -
                      • -
                      • -March 5, 2018, by Alex Laferrière:
                        -First implementation. -
                      • -
                      -")); +

                      + This function uses the parameters required to calculate the borefield's thermal + response to build a SHA1-encrypted string unique to the borefield in question. + Then, if the forceGFunCalc input is true or if + there is no .mat file with the SHA1 hash as its filename in the + tmp/temperatureResponseMatrix folder, + the thermal response will be calculated and written as a + .mat file. Otherwise, the + thermal response will simply be read from the + .mat file. In the .mat file, the data + is saved in a matrix with the name TStep, where the first column is + the time (in seconds) and the second column is the temperature step response, + which is the g-function divided by 2 π H ksoi, with + H being the borehole length and ksoi being the thermal + conductivity of the soil. +

                      + ",revisions=" +
                        +
                      • + December 11, 2021, by Michael Wetter:
                        + Added impure declaration for MSL 4.0.0. +
                      • +
                      • + August 27, 2018, by Michael Wetter:
                        + Changed name of temporary directory so that it is clear for users + that this is a temporary directory. +
                      • +
                      • + July 15, 2018, by Michael Wetter:
                        + Changed implementation to use matrix read and write from + the Modelica Standard Library. +
                      • +
                      • + March 5, 2018, by Alex Laferrière:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end temperatureResponseMatrix; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/temporalSuperposition.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/temporalSuperposition.mo index 5451f2f54d..0b54259d08 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/temporalSuperposition.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/LoadAggregation/temporalSuperposition.mo @@ -4,13 +4,13 @@ function temporalSuperposition extends Modelica.Icons.Function; input Integer i "Number of aggregation cells"; - input Modelica.SIunits.HeatFlowRate QAgg_flow[i] + input Modelica.Units.SI.HeatFlowRate QAgg_flow[i] "Vector of aggregated loads"; - input Modelica.SIunits.ThermalResistance kappa[i] + input Modelica.Units.SI.ThermalResistance kappa[i] "Weighting factors for each aggregation cell"; input Integer curCel "Current occupied aggregation cell"; - output Modelica.SIunits.TemperatureDifference deltaTb "Delta T at wall"; + output Modelica.Units.SI.TemperatureDifference deltaTb "Delta T at wall"; algorithm deltaTb := QAgg_flow[1:curCel]*kappa[1:curCel]; @@ -18,19 +18,20 @@ algorithm annotation ( Inline=true, Documentation(info=" -

                      -Performs the temporal superposition operation to obtain the temperature change -at the borehole wall at the current time step, which is the scalar product of -the aggregated load vector and the kappa step response vector. To -avoid unnecessary calculations, the current aggregation cell in the simulation -is used to truncate the values from the vectors that are not required. -

                      -", revisions=" -
                        -
                      • -March 5, 2018, by Alex Laferrière:
                        -First implementation. -
                      • -
                      -")); +

                      + Performs the temporal superposition operation to obtain the temperature change + at the borehole wall at the current time step, which is the scalar product of + the aggregated load vector and the kappa step response vector. To + avoid unnecessary calculations, the current aggregation cell in the simulation + is used to truncate the values from the vectors that are not required. +

                      + ",revisions=" +
                        +
                      • + March 5, 2018, by Alex Laferrière:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end temporalSuperposition; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/CylindricalHeatSource.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/CylindricalHeatSource.mo index 89218ed19c..1ab4f54bfb 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/CylindricalHeatSource.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/CylindricalHeatSource.mo @@ -2,11 +2,12 @@ within AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.ThermalRespon model CylindricalHeatSource "Test case for cylindrical heat source" extends Modelica.Icons.Example; - parameter Modelica.SIunits.ThermalDiffusivity aSoi = 1.0e-6 "Ground thermal diffusivity"; - parameter Modelica.SIunits.Radius rSource = 0.075 "Radius of cylinder source"; - parameter Modelica.SIunits.Radius[5] r = {rSource, 2*rSource, 5*rSource, 10*rSource, 20*rSource} - "Radial position of evaluation of the solution"; - Modelica.SIunits.Time t "Time"; + parameter Modelica.Units.SI.ThermalDiffusivity aSoi=1.0e-6 + "Ground thermal diffusivity"; + parameter Modelica.Units.SI.Radius rSource=0.075 "Radius of cylinder source"; + parameter Modelica.Units.SI.Radius[5] r={rSource,2*rSource,5*rSource,10* + rSource,20*rSource} "Radial position of evaluation of the solution"; + Modelica.Units.SI.Time t "Time"; Real[5] G "Cylindrical heat source solution"; equation @@ -25,16 +26,17 @@ equation "Simulate and plot"), experiment(Tolerance=1e-6, StopTime=15.0), Documentation(info=" -

                      -This example demonstrates the use of the function for the evaluation of the -cylindrical heat source solution. -

                      -", revisions=" -
                        -
                      • -June 11, 2018, by Massimo Cimmino:
                        -First implementation. -
                      • -
                      -")); +

                      + This example demonstrates the use of the function for the evaluation of the + cylindrical heat source solution. +

                      + ",revisions=" +
                        +
                      • + June 11, 2018, by Massimo Cimmino:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end CylindricalHeatSource; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/CylindricalHeatSource_Integrand.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/CylindricalHeatSource_Integrand.mo index fff4c118a4..9a13ca163d 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/CylindricalHeatSource_Integrand.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/CylindricalHeatSource_Integrand.mo @@ -23,16 +23,17 @@ equation "Simulate and plot"), experiment(Tolerance=1e-6, StartTime=0.01, StopTime=15.0), Documentation(info=" -

                      -This example demonstrates the evaluation of the -cylindrical heat source integrand function. -

                      -", revisions=" -
                        -
                      • -July 17, 2018, by Massimo Cimmino:
                        -First implementation. -
                      • -
                      -")); +

                      + This example demonstrates the evaluation of the + cylindrical heat source integrand function. +

                      + ",revisions=" +
                        +
                      • + July 17, 2018, by Massimo Cimmino:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end CylindricalHeatSource_Integrand; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/FiniteLineSource.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/FiniteLineSource.mo index 9d88179070..da7f7ad1a0 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/FiniteLineSource.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/FiniteLineSource.mo @@ -2,17 +2,18 @@ within AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.ThermalRespon model FiniteLineSource "Test case for finite line source" extends Modelica.Icons.Example; - parameter Modelica.SIunits.ThermalDiffusivity aSoi = 1.0e-6 "Ground thermal diffusivity"; - parameter Modelica.SIunits.Distance[2] r = {0.075, 7.0} + parameter Modelica.Units.SI.ThermalDiffusivity aSoi=1.0e-6 + "Ground thermal diffusivity"; + parameter Modelica.Units.SI.Distance[2] r={0.075,7.0} "Radial position of evaluation of the solution"; - parameter Modelica.SIunits.Height len1 = 12.5 "Length of emitting source"; - parameter Modelica.SIunits.Height burDep1 = 29.0 + parameter Modelica.Units.SI.Height len1=12.5 "Length of emitting source"; + parameter Modelica.Units.SI.Height burDep1=29.0 "Buried depth of emitting source"; - parameter Modelica.SIunits.Height[7] len2 = {12.5, 8.0, 15.0, 14.0, 6.0, 20.0, 3.0} + parameter Modelica.Units.SI.Height[7] len2={12.5,8.0,15.0,14.0,6.0,20.0,3.0} "Length of receiving line"; - parameter Modelica.SIunits.Height[7] burDep2 = {29.0, 25.0, 34.0, 2.0, 32.0, 27.0, 44.0} - "Buried depth of receiving line"; - Modelica.SIunits.Time t "Time"; + parameter Modelica.Units.SI.Height[7] burDep2={29.0,25.0,34.0,2.0,32.0,27.0, + 44.0} "Buried depth of receiving line"; + Modelica.Units.SI.Time t "Time"; Real[2,7] hRea "Finite line source solution (Real part)"; Real[2,7] hMir "Finite line source solution (Mirror part)"; Real[2,7] h "Finite line source solution"; @@ -58,17 +59,18 @@ equation "Simulate and plot"), experiment(Tolerance=1e-6, StopTime=20.0), Documentation(info=" -

                      -This example demonstrates the use of the function for the evaluation of the -finite line source solution. The solution is evaluated at different positions -and averaged over different lengths around line heat sources. -

                      -", revisions=" -
                        -
                      • -June 12, 2018, by Massimo Cimmino:
                        -First implementation. -
                      • -
                      -")); +

                      + This example demonstrates the use of the function for the evaluation of the + finite line source solution. The solution is evaluated at different positions + and averaged over different lengths around line heat sources. +

                      + ",revisions=" +
                        +
                      • + June 12, 2018, by Massimo Cimmino:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end FiniteLineSource; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/FiniteLineSource_Erfint.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/FiniteLineSource_Erfint.mo index 739f53045b..bc3f279e0d 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/FiniteLineSource_Erfint.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/FiniteLineSource_Erfint.mo @@ -23,16 +23,17 @@ equation "Simulate and plot"), experiment(Tolerance=1e-6, StartTime=0.0, StopTime=15.0), Documentation(info=" -

                      -This example demonstrates the evaluation of the -integral of the error function. -

                      -", revisions=" -
                        -
                      • -July 17, 2018, by Massimo Cimmino:
                        -First implementation. -
                      • -
                      -")); +

                      + This example demonstrates the evaluation of the + integral of the error function. +

                      + ",revisions=" +
                        +
                      • + July 17, 2018, by Massimo Cimmino:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end FiniteLineSource_Erfint; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/FiniteLineSource_Integrand.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/FiniteLineSource_Integrand.mo index 93e9e44732..1fab6f92cf 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/FiniteLineSource_Integrand.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/FiniteLineSource_Integrand.mo @@ -3,11 +3,14 @@ model FiniteLineSource_Integrand "Test case for finite line source integrand function" extends Modelica.Icons.Example; - parameter Modelica.SIunits.Distance dis = 0.075 "Radial distance between borehole axes"; - parameter Modelica.SIunits.Height len1 = 150.0 "Length of emitting borehole"; - parameter Modelica.SIunits.Height burDep1 = 4.0 "Buried depth of emitting borehole"; - parameter Modelica.SIunits.Height len2 = 150.0 "Length of receiving borehole"; - parameter Modelica.SIunits.Height burDep2 = 4.0 "Buried depth of receiving borehole"; + parameter Modelica.Units.SI.Distance dis=0.075 + "Radial distance between borehole axes"; + parameter Modelica.Units.SI.Height len1=150.0 "Length of emitting borehole"; + parameter Modelica.Units.SI.Height burDep1=4.0 + "Buried depth of emitting borehole"; + parameter Modelica.Units.SI.Height len2=150.0 "Length of receiving borehole"; + parameter Modelica.Units.SI.Height burDep2=4.0 + "Buried depth of receiving borehole"; Real u "Integration variable"; Real y "Finite line source integrand"; @@ -27,16 +30,17 @@ equation "Simulate and plot"), experiment(Tolerance=1e-6, StartTime=0.01, StopTime=15.0), Documentation(info=" -

                      -This example demonstrates the evaluation of the -finite line source integrand function. -

                      -", revisions=" -
                        -
                      • -July 17, 2018, by Massimo Cimmino:
                        -First implementation. -
                      • -
                      -")); +

                      + This example demonstrates the evaluation of the + finite line source integrand function. +

                      + ",revisions=" +
                        +
                      • + July 17, 2018, by Massimo Cimmino:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end FiniteLineSource_Integrand; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/FiniteLineSource_Integrand_Length.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/FiniteLineSource_Integrand_Length.mo index e355768e54..77696bb3df 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/FiniteLineSource_Integrand_Length.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/FiniteLineSource_Integrand_Length.mo @@ -4,12 +4,13 @@ model FiniteLineSource_Integrand_Length extends Modelica.Icons.Example; parameter Real dis_over_len = 0.0005 "Radial distance between borehole axes"; - parameter Modelica.SIunits.Height len150 = 150.0 "Length of emitting borehole"; - parameter Modelica.SIunits.Height len75 = 75.0 "Length of emitting borehole"; - parameter Modelica.SIunits.Height len25 = 25.0 "Length of emitting borehole"; - parameter Modelica.SIunits.Height len5 = 5.0 "Length of emitting borehole"; - parameter Modelica.SIunits.Height len1 = 1.0 "Length of emitting borehole"; - parameter Modelica.SIunits.Height burDep = 4. "Buried depth of emitting borehole"; + parameter Modelica.Units.SI.Height len150=150.0 "Length of emitting borehole"; + parameter Modelica.Units.SI.Height len75=75.0 "Length of emitting borehole"; + parameter Modelica.Units.SI.Height len25=25.0 "Length of emitting borehole"; + parameter Modelica.Units.SI.Height len5=5.0 "Length of emitting borehole"; + parameter Modelica.Units.SI.Height len1=1.0 "Length of emitting borehole"; + parameter Modelica.Units.SI.Height burDep=4. + "Buried depth of emitting borehole"; Real u "Integration variable"; Real logy150 "Logarithm of finite line source integrand"; Real logy75 "Logarithm of finite line source integrand"; @@ -66,16 +67,17 @@ equation "Simulate and plot"), experiment(Tolerance=1e-6, StartTime=0.01, StopTime=500.0), Documentation(info=" -

                      -This example demonstrates the evaluation of the -finite line source integrand function. -

                      -", revisions=" -
                        -
                      • -March 15, 2019, by Massimo Cimmino:
                        -First implementation. -
                      • -
                      -")); +

                      + This example demonstrates the evaluation of the + finite line source integrand function. +

                      + ",revisions=" +
                        +
                      • + March 15, 2019, by Massimo Cimmino:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end FiniteLineSource_Integrand_Length; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/GFunction_100boreholes.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/GFunction_100boreholes.mo index 844c243e27..67a97aecf3 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/GFunction_100boreholes.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/GFunction_100boreholes.mo @@ -4,12 +4,13 @@ model GFunction_100boreholes extends Modelica.Icons.Example; parameter Integer nBor = 100 "Number of boreholes"; - parameter Modelica.SIunits.Position cooBor[nBor, 2] = {{7.5*mod(i-1,10), 7.5*floor((i-1)/10)} for i in 1:nBor} - "Coordinates of boreholes"; - parameter Modelica.SIunits.Height hBor = 150 "Borehole length"; - parameter Modelica.SIunits.Height dBor = 4 "Borehole buried depth"; - parameter Modelica.SIunits.Radius rBor = 0.075 "Borehole radius"; - parameter Modelica.SIunits.ThermalDiffusivity aSoi = 1e-6 "Ground thermal diffusivity used in g-function evaluation"; + parameter Modelica.Units.SI.Position cooBor[nBor,2]={{7.5*mod(i - 1, 10),7.5* + floor((i - 1)/10)} for i in 1:nBor} "Coordinates of boreholes"; + parameter Modelica.Units.SI.Height hBor=150 "Borehole length"; + parameter Modelica.Units.SI.Height dBor=4 "Borehole buried depth"; + parameter Modelica.Units.SI.Radius rBor=0.075 "Borehole radius"; + parameter Modelica.Units.SI.ThermalDiffusivity aSoi=1e-6 + "Ground thermal diffusivity used in g-function evaluation"; parameter Integer nSeg = 12 "Number of line source segments per borehole"; parameter Integer nTimSho = 26 "Number of time steps in short time region"; parameter Integer nTimLon = 50 "Number of time steps in long time region"; @@ -18,18 +19,19 @@ model GFunction_100boreholes final parameter Integer nTimTot=nTimSho+nTimLon; final parameter Real[nTimTot] gFun(each fixed=false); final parameter Real[nTimTot] lntts(each fixed=false); - final parameter Modelica.SIunits.Time[nTimTot] tGFun(each fixed=false); + final parameter Modelica.Units.SI.Time[nTimTot] tGFun(each fixed=false); final parameter Real[nTimTot] dspline(each fixed=false); Real gFun_int "Interpolated value of g-function"; Real lntts_int "Non-dimensional logarithmic time for interpolation"; discrete Integer k "Current interpolation interval"; - discrete Modelica.SIunits.Time t1 "Previous value of time for interpolation"; - discrete Modelica.SIunits.Time t2 "Next value of time for interpolation"; + discrete Modelica.Units.SI.Time t1 "Previous value of time for interpolation"; + discrete Modelica.Units.SI.Time t2 "Next value of time for interpolation"; discrete Real gFun1 "Previous g-function value for interpolation"; discrete Real gFun2 "Next g-function value for interpolation"; - parameter Modelica.SIunits.Time ts = hBor^2/(9*aSoi) "Bore field characteristic time"; + parameter Modelica.Units.SI.Time ts=hBor^2/(9*aSoi) + "Bore field characteristic time"; initial equation // Evaluate g-function for the specified bore field configuration @@ -81,17 +83,18 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/GFunction_100boreholes.mos" "Simulate and plot"), Documentation(info=" -

                      -This example checks the implementation of functions that evaluate the -g-function of a borefield of 100 boreholes in a 10 by 10 configuration. -

                      -", +

                      + This example checks the implementation of functions that evaluate the + g-function of a borefield of 100 boreholes in a 10 by 10 configuration. +

                      + ", revisions=" -
                        -
                      • -March 20, 2018, by Massimo Cimmino:
                        -First implementation. -
                      • -
                      -")); +
                        +
                      • + March 20, 2018, by Massimo Cimmino:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end GFunction_100boreholes; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/GFunction_1borehole_5meters.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/GFunction_1borehole_5meters.mo index 46be013ef2..6af34e42e4 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/GFunction_1borehole_5meters.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/GFunction_1borehole_5meters.mo @@ -4,12 +4,13 @@ model GFunction_1borehole_5meters extends Modelica.Icons.Example; parameter Integer nBor = 1 "Number of boreholes"; - parameter Modelica.SIunits.Position cooBor[nBor, 2] = {{5.*mod(i-1,3), 5.*floor((i-1)/3)} for i in 1:nBor} - "Coordinates of boreholes"; - parameter Modelica.SIunits.Height hBor = 5 "Borehole length"; - parameter Modelica.SIunits.Height dBor = 1 "Borehole buried depth"; - parameter Modelica.SIunits.Radius rBor = 0.075 "Borehole radius"; - parameter Modelica.SIunits.ThermalDiffusivity aSoi = 1e-6 "Ground thermal diffusivity used in g-function evaluation"; + parameter Modelica.Units.SI.Position cooBor[nBor,2]={{5.*mod(i - 1, 3),5.* + floor((i - 1)/3)} for i in 1:nBor} "Coordinates of boreholes"; + parameter Modelica.Units.SI.Height hBor=5 "Borehole length"; + parameter Modelica.Units.SI.Height dBor=1 "Borehole buried depth"; + parameter Modelica.Units.SI.Radius rBor=0.075 "Borehole radius"; + parameter Modelica.Units.SI.ThermalDiffusivity aSoi=1e-6 + "Ground thermal diffusivity used in g-function evaluation"; parameter Integer nSeg = 12 "Number of line source segments per borehole"; parameter Integer nTimSho = 26 "Number of time steps in short time region"; parameter Integer nTimLon = 50 "Number of time steps in long time region"; @@ -18,18 +19,19 @@ model GFunction_1borehole_5meters final parameter Integer nTimTot=nTimSho+nTimLon; final parameter Real[nTimTot] gFun(each fixed=false); final parameter Real[nTimTot] lntts(each fixed=false); - final parameter Modelica.SIunits.Time[nTimTot] tGFun(each fixed=false); + final parameter Modelica.Units.SI.Time[nTimTot] tGFun(each fixed=false); final parameter Real[nTimTot] dspline(each fixed=false); Real gFun_int "Interpolated value of g-function"; Real lntts_int "Non-dimensional logarithmic time for interpolation"; discrete Integer k "Current interpolation interval"; - discrete Modelica.SIunits.Time t1 "Previous value of time for interpolation"; - discrete Modelica.SIunits.Time t2 "Next value of time for interpolation"; + discrete Modelica.Units.SI.Time t1 "Previous value of time for interpolation"; + discrete Modelica.Units.SI.Time t2 "Next value of time for interpolation"; discrete Real gFun1 "Previous g-function value for interpolation"; discrete Real gFun2 "Next g-function value for interpolation"; - parameter Modelica.SIunits.Time ts = hBor^2/(9*aSoi) "Bore field characteristic time"; + parameter Modelica.Units.SI.Time ts=hBor^2/(9*aSoi) + "Bore field characteristic time"; initial equation // Evaluate g-function for the specified bore field configuration @@ -81,17 +83,18 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/GFunction_1borehole_5meters.mos" "Simulate and plot"), Documentation(info=" -

                      -This example checks the implementation of functions that evaluate the -g-function of a borefield of 100 boreholes in a 1 configuration. -

                      -", +

                      + This example checks the implementation of functions that evaluate the + g-function of a borefield of 100 boreholes in a 1 configuration. +

                      + ", revisions=" -
                        -
                      • -March 15, 2019, by Massimo Cimmino:
                        -First implementation. -
                      • -
                      -")); +
                        +
                      • + March 15, 2019, by Massimo Cimmino:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end GFunction_1borehole_5meters; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/GFunction_SmallScaleValidation.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/GFunction_SmallScaleValidation.mo index 005fbf5b25..f6c6e36614 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/GFunction_SmallScaleValidation.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/GFunction_SmallScaleValidation.mo @@ -6,12 +6,16 @@ model GFunction_SmallScaleValidation parameter AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.Validation.BaseClasses.SmallScale_Borefield borFieDat "Record of borehole configuration data"; parameter Integer nBor = borFieDat.conDat.nBor "Number of boreholes"; - parameter Modelica.SIunits.Position cooBor[nBor, 2] = borFieDat.conDat.cooBor + parameter Modelica.Units.SI.Position cooBor[nBor,2]=borFieDat.conDat.cooBor "Coordinates of boreholes"; - parameter Modelica.SIunits.Height hBor = borFieDat.conDat.hBor "Borehole length"; - parameter Modelica.SIunits.Height dBor = borFieDat.conDat.dBor "Borehole buried depth"; - parameter Modelica.SIunits.Radius rBor = borFieDat.conDat.rBor "Borehole radius"; - parameter Modelica.SIunits.ThermalDiffusivity aSoi = borFieDat.soiDat.kSoi/(borFieDat.soiDat.dSoi*borFieDat.soiDat.cSoi) + parameter Modelica.Units.SI.Height hBor=borFieDat.conDat.hBor + "Borehole length"; + parameter Modelica.Units.SI.Height dBor=borFieDat.conDat.dBor + "Borehole buried depth"; + parameter Modelica.Units.SI.Radius rBor=borFieDat.conDat.rBor + "Borehole radius"; + parameter Modelica.Units.SI.ThermalDiffusivity aSoi=borFieDat.soiDat.kSoi/( + borFieDat.soiDat.dSoi*borFieDat.soiDat.cSoi) "Ground thermal diffusivity used in g-function evaluation"; parameter Integer nSeg = 12 "Number of line source segments per borehole"; parameter Integer nTimSho = 26 "Number of time steps in short time region"; @@ -21,18 +25,19 @@ model GFunction_SmallScaleValidation final parameter Integer nTimTot=nTimSho+nTimLon; final parameter Real[nTimTot] gFun(each fixed=false); final parameter Real[nTimTot] lntts(each fixed=false); - final parameter Modelica.SIunits.Time[nTimTot] tGFun(each fixed=false); + final parameter Modelica.Units.SI.Time[nTimTot] tGFun(each fixed=false); final parameter Real[nTimTot] dspline(each fixed=false); Real gFun_int "Interpolated value of g-function"; Real lntts_int "Non-dimensional logarithmic time for interpolation"; discrete Integer k "Current interpolation interval"; - discrete Modelica.SIunits.Time t1 "Previous value of time for interpolation"; - discrete Modelica.SIunits.Time t2 "Next value of time for interpolation"; + discrete Modelica.Units.SI.Time t1 "Previous value of time for interpolation"; + discrete Modelica.Units.SI.Time t2 "Next value of time for interpolation"; discrete Real gFun1 "Previous g-function value for interpolation"; discrete Real gFun2 "Next g-function value for interpolation"; - parameter Modelica.SIunits.Time ts = hBor^2/(9*aSoi) "Bore field characteristic time"; + parameter Modelica.Units.SI.Time ts=hBor^2/(9*aSoi) + "Bore field characteristic time"; initial equation // Evaluate g-function for the specified bore field configuration @@ -84,23 +89,24 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/GFunction_SmallScaleValidation.mos" "Simulate and plot"), Documentation(info=" -

                      -This example checks the implementation of functions that evaluate the -g-function of the borehole used in the small-scale experiment of Cimmino and -Bernier (2015). -

                      -

                      References

                      -

                      -Cimmino, M. and Bernier, M. 2015. Experimental determination of the -g-functions of a small-scale geothermal borehole. Geothermics 56: 60-71. -

                      -", +

                      + This example checks the implementation of functions that evaluate the + g-function of the borehole used in the small-scale experiment of Cimmino and + Bernier (2015). +

                      +

                      References

                      +

                      + Cimmino, M. and Bernier, M. 2015. Experimental determination of the + g-functions of a small-scale geothermal borehole. Geothermics 56: 60-71. +

                      + ", revisions=" -
                        -
                      • -July 18, 2018, by Massimo Cimmino:
                        -First implementation. -
                      • -
                      -")); +
                        +
                      • + July 18, 2018, by Massimo Cimmino:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end GFunction_SmallScaleValidation; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/InfiniteLineSource.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/InfiniteLineSource.mo index 54c54384a5..1b28f71099 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/InfiniteLineSource.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/InfiniteLineSource.mo @@ -2,11 +2,12 @@ within AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.ThermalRespon model InfiniteLineSource "Test case for infinite line source" extends Modelica.Icons.Example; - parameter Modelica.SIunits.ThermalDiffusivity aSoi = 1.0e-6 "Ground thermal diffusivity"; - parameter Modelica.SIunits.Radius rSource = 0.075 "Minimum radius"; - parameter Modelica.SIunits.Radius[5] r = {rSource, 2*rSource, 5*rSource, 10*rSource, 20*rSource} - "Radial position of evaluation of the solution"; - Modelica.SIunits.Time t "Time"; + parameter Modelica.Units.SI.ThermalDiffusivity aSoi=1.0e-6 + "Ground thermal diffusivity"; + parameter Modelica.Units.SI.Radius rSource=0.075 "Minimum radius"; + parameter Modelica.Units.SI.Radius[5] r={rSource,2*rSource,5*rSource,10* + rSource,20*rSource} "Radial position of evaluation of the solution"; + Modelica.Units.SI.Time t "Time"; Real[5] E "Infinite line source solution"; equation @@ -23,16 +24,17 @@ equation "Simulate and plot"), experiment(Tolerance=1e-6, StopTime=15.0), Documentation(info=" -

                      -This example demonstrates the use of the function for the evaluation of the -infinite line source solution. -

                      -", revisions=" -
                        -
                      • -June 12, 2018, by Massimo Cimmino:
                        -First implementation. -
                      • -
                      -")); +

                      + This example demonstrates the use of the function for the evaluation of the + infinite line source solution. +

                      + ",revisions=" +
                        +
                      • + June 12, 2018, by Massimo Cimmino:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end InfiniteLineSource; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/ShaGFunction.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/ShaGFunction.mo index ccfafd5874..fffc9902ac 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/ShaGFunction.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/ShaGFunction.mo @@ -32,16 +32,17 @@ annotation (experiment(Tolerance=1e-6, StopTime=1.0), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/ShaGFunction.mos" "Simulate and plot"), Documentation(info=" -

                      -This example uses a typical single borehole to test the SHA1-encryption of the -arguments required to determine the borehole's thermal response factor. -

                      -", revisions=" -
                        -
                      • -July 18, 2018, by Alex Laferrière:
                        -First implementation. -
                      • -
                      -")); +

                      + This example uses a typical single borehole to test the SHA1-encryption of the + arguments required to determine the borehole's thermal response factor. +

                      + ",revisions=" +
                        +
                      • + July 18, 2018, by Alex Laferrière:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end ShaGFunction; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/TimeGeometric.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/TimeGeometric.mo index 07e546d901..f2c1af07b0 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/TimeGeometric.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/Validation/TimeGeometric.mo @@ -3,11 +3,12 @@ model TimeGeometric "Test case for geometric expansion of time vector" extends Modelica.Icons.Example; - parameter Modelica.SIunits.Duration dt = 2.0 "Minimum time step"; - parameter Modelica.SIunits.Time t_max = 20.0 "Maximum value of time"; + parameter Modelica.Units.SI.Duration dt=2.0 "Minimum time step"; + parameter Modelica.Units.SI.Time t_max=20.0 "Maximum value of time"; parameter Integer nTim = 5 "Number of time values"; - final parameter Modelica.SIunits.Time[nTim] t(each fixed=false) "Time vector"; + final parameter Modelica.Units.SI.Time[nTim] t(each fixed=false) + "Time vector"; initial equation t = AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.ThermalResponseFactors.timeGeometric( @@ -21,16 +22,17 @@ initial equation "Simulate and plot"), experiment(Tolerance=1e-6, StopTime=1.0), Documentation(info=" -

                      -This example demonstrates the construction of vector of geometrically expanding -time values. -

                      -", revisions=" -
                        -
                      • -July 17, 2018, by Massimo Cimmino:
                        -First implementation. -
                      • -
                      -")); +

                      + This example demonstrates the construction of vector of geometrically expanding + time values. +

                      + ",revisions=" +
                        +
                      • + July 17, 2018, by Massimo Cimmino:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end TimeGeometric; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/cylindricalHeatSource.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/cylindricalHeatSource.mo index 79fbcb86c7..328f5b2752 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/cylindricalHeatSource.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/cylindricalHeatSource.mo @@ -3,10 +3,10 @@ function cylindricalHeatSource "Cylindrical heat source solution from Carslaw and Jaeger" extends Modelica.Icons.Function; - input Modelica.SIunits.Time t "Time"; - input Modelica.SIunits.ThermalDiffusivity aSoi "Ground thermal diffusivity"; - input Modelica.SIunits.Distance dis "Radial distance between borehole axes"; - input Modelica.SIunits.Radius rBor "Radius of emitting borehole"; + input Modelica.Units.SI.Time t "Time"; + input Modelica.Units.SI.ThermalDiffusivity aSoi "Ground thermal diffusivity"; + input Modelica.Units.SI.Distance dis "Radial distance between borehole axes"; + input Modelica.Units.SI.Radius rBor "Radius of emitting borehole"; output Real G "Thermal response factor of borehole 1 on borehole 2"; @@ -26,41 +26,42 @@ algorithm annotation ( Inline=true, Documentation(info=" -

                      -This function evaluates the cylindrical heat source solution. This solution -gives the relation between the constant heat transfer rate (per unit length) -injected by a cylindrical heat source of infinite length and the temperature -raise in the medium. The cylindrical heat source solution is defined by -

                      -

                      -\"image\" -

                      -

                      -where ΔT(t,r) is the temperature raise after a time t of -constant heat injection and at a distance r from the cylindrical source, -Q' is the heat injection rate per unit length, ks is -the soil thermal conductivity, Fo is the Fourier number, -aSois is the ground thermal diffusivity, -rb is the radius of the cylindrical source and G -is the cylindrical heat source solution. -

                      -

                      -The cylindrical heat source solution is given by: -

                      -

                      -\"image\" -

                      -

                      -The integral is solved numerically, with the integrand defined in - -AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.ThermalResponseFactors.cylindricalHeatSource_Integrand. -

                      -", revisions=" -
                        -
                      • -March 22, 2018 by Massimo Cimmino:
                        -First implementation. -
                      • -
                      -")); +

                      + This function evaluates the cylindrical heat source solution. This solution + gives the relation between the constant heat transfer rate (per unit length) + injected by a cylindrical heat source of infinite length and the temperature + raise in the medium. The cylindrical heat source solution is defined by +

                      +

                      + \"image\" +

                      +

                      + where ΔT(t,r) is the temperature raise after a time t of + constant heat injection and at a distance r from the cylindrical source, + Q' is the heat injection rate per unit length, ks is + the soil thermal conductivity, Fo is the Fourier number, + aSois is the ground thermal diffusivity, + rb is the radius of the cylindrical source and G + is the cylindrical heat source solution. +

                      +

                      + The cylindrical heat source solution is given by: +

                      +

                      + \"image\" +

                      +

                      + The integral is solved numerically, with the integrand defined in + + AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.ThermalResponseFactors.cylindricalHeatSource_Integrand. +

                      + ",revisions=" +
                        +
                      • + March 22, 2018 by Massimo Cimmino:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end cylindricalHeatSource; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/cylindricalHeatSource_Integrand.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/cylindricalHeatSource_Integrand.mo index da315590fc..a58e4a8d82 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/cylindricalHeatSource_Integrand.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/cylindricalHeatSource_Integrand.mo @@ -18,17 +18,18 @@ algorithm annotation ( Inline=true, Documentation(info=" -

                      -Integrand of the cylindrical heat source solution for use in - -AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.ThermalResponseFactors.cylindricalHeatSource. -

                      -", revisions=" -
                        -
                      • -March 22, 2018 by Massimo Cimmino:
                        -First implementation. -
                      • -
                      -")); +

                      + Integrand of the cylindrical heat source solution for use in + + AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.ThermalResponseFactors.cylindricalHeatSource. +

                      + ",revisions=" +
                        +
                      • + March 22, 2018 by Massimo Cimmino:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end cylindricalHeatSource_Integrand; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/finiteLineSource.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/finiteLineSource.mo index 489b6ec199..b7114fadaf 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/finiteLineSource.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/finiteLineSource.mo @@ -3,13 +3,13 @@ function finiteLineSource "Finite line source solution of Claesson and Javed" extends Modelica.Icons.Function; - input Modelica.SIunits.Time t "Time"; - input Modelica.SIunits.ThermalDiffusivity aSoi "Ground thermal diffusivity"; - input Modelica.SIunits.Distance dis "Radial distance between borehole axes"; - input Modelica.SIunits.Height len1 "Length of emitting borehole"; - input Modelica.SIunits.Height burDep1 "Buried depth of emitting borehole"; - input Modelica.SIunits.Height len2 "Length of receiving borehole"; - input Modelica.SIunits.Height burDep2 "Buried depth of receiving borehole"; + input Modelica.Units.SI.Time t "Time"; + input Modelica.Units.SI.ThermalDiffusivity aSoi "Ground thermal diffusivity"; + input Modelica.Units.SI.Distance dis "Radial distance between borehole axes"; + input Modelica.Units.SI.Height len1 "Length of emitting borehole"; + input Modelica.Units.SI.Height burDep1 "Buried depth of emitting borehole"; + input Modelica.Units.SI.Height len2 "Length of receiving borehole"; + input Modelica.Units.SI.Height burDep2 "Buried depth of receiving borehole"; input Boolean includeRealSource = true "True if contribution of real source is included"; input Boolean includeMirrorSource = true "True if contribution of mirror source is included"; @@ -19,9 +19,9 @@ protected Real lowBou(unit="m-1") "Lower bound of integration"; // Upper bound is infinite Real uppBou(unit="m-1") = max(100.0, 10.0/dis) "Upper bound of integration"; - Modelica.SIunits.Distance disMin + Modelica.Units.SI.Distance disMin "Minimum distance between sources and receiving line"; - Modelica.SIunits.Time timTre "Time treshold for evaluation of the solution"; + Modelica.Units.SI.Time timTre "Time treshold for evaluation of the solution"; algorithm @@ -82,52 +82,53 @@ algorithm annotation ( Documentation(info=" -

                      -This function evaluates the finite line source solution. This solution -gives the relation between the constant heat transfer rate (per unit length) -injected by a line source of finite length H1 buried at a -distance D1 from a constant temperature surface -(T=0) and the average temperature raise over a line of finite length -H2 buried at a distance D2 from the constant -temperature surface. -The finite line source solution is defined by: -

                      -

                      -\"image\" -

                      -

                      -where ΔT1-2(t,r,H1,D1,H2,D2) -is the temperature raise after a time t of constant heat injection and at -a distance r from the line heat source, Q' is the heat injection -rate per unit length, ks is the soil thermal conductivity and -hFLS is the finite line source solution. -

                      -

                      -The finite line source solution is given by: -

                      -

                      -\"image\" -

                      -

                      -where αs is the ground thermal diffusivity and -erfint is the integral of the error function, defined in -AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.ThermalResponseFactors.finiteLineSource_erfint. -The integral is solved numerically, with the integrand defined in -AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.ThermalResponseFactors.finiteLineSource_Integrand. -

                      -", revisions=" -
                        -
                      • -March 17, 2019, by Massimo Cimmino:
                        -Modified the upper bound of integration to avoid underestimating the value of -the integral. -This is for -AixLib, issue 1107. -
                      • -
                      • -March 22, 2018 by Massimo Cimmino:
                        -First implementation. -
                      • -
                      -")); +

                      + This function evaluates the finite line source solution. This solution + gives the relation between the constant heat transfer rate (per unit length) + injected by a line source of finite length H1 buried at a + distance D1 from a constant temperature surface + (T=0) and the average temperature raise over a line of finite length + H2 buried at a distance D2 from the constant + temperature surface. + The finite line source solution is defined by: +

                      +

                      + \"image\" +

                      +

                      + where ΔT1-2(t,r,H1,D1,H2,D2) + is the temperature raise after a time t of constant heat injection and at + a distance r from the line heat source, Q' is the heat injection + rate per unit length, ks is the soil thermal conductivity and + hFLS is the finite line source solution. +

                      +

                      + The finite line source solution is given by: +

                      +

                      + \"image\" +

                      +

                      + where αs is the ground thermal diffusivity and + erfint is the integral of the error function, defined in + AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.ThermalResponseFactors.finiteLineSource_erfint. + The integral is solved numerically, with the integrand defined in + AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.ThermalResponseFactors.finiteLineSource_Integrand. +

                      + ",revisions=" +
                        +
                      • + March 17, 2019, by Massimo Cimmino:
                        + Modified the upper bound of integration to avoid underestimating the value of + the integral. + This is for + IBPSA, issue 1107. +
                      • +
                      • + March 22, 2018 by Massimo Cimmino:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end finiteLineSource; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/finiteLineSource_Erfint.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/finiteLineSource_Erfint.mo index 593d7738ef..81ef68b7cb 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/finiteLineSource_Erfint.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/finiteLineSource_Erfint.mo @@ -8,18 +8,19 @@ algorithm annotation ( Inline=true, Documentation(info=" -

                      -This function evaluates the integral of the error function, given by: -

                      -

                      -\"image\" -

                      -", revisions=" -
                        -
                      • -March 22, 2018 by Massimo Cimmino:
                        -First implementation. -
                      • -
                      -")); +

                      + This function evaluates the integral of the error function, given by: +

                      +

                      + \"image\" +

                      + ",revisions=" +
                        +
                      • + March 22, 2018 by Massimo Cimmino:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end finiteLineSource_Erfint; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/finiteLineSource_Integrand.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/finiteLineSource_Integrand.mo index b89ec9c208..a063968d0f 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/finiteLineSource_Integrand.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/finiteLineSource_Integrand.mo @@ -4,11 +4,11 @@ function finiteLineSource_Integrand extends Modelica.Icons.Function; input Real u(unit="1/m") "Integration variable"; - input Modelica.SIunits.Distance dis "Radial distance between borehole axes"; - input Modelica.SIunits.Height len1 "Length of emitting borehole"; - input Modelica.SIunits.Height burDep1 "Buried depth of emitting borehole"; - input Modelica.SIunits.Height len2 "Length of receiving borehole"; - input Modelica.SIunits.Height burDep2 "Buried depth of receiving borehole"; + input Modelica.Units.SI.Distance dis "Radial distance between borehole axes"; + input Modelica.Units.SI.Height len1 "Length of emitting borehole"; + input Modelica.Units.SI.Height burDep1 "Buried depth of emitting borehole"; + input Modelica.Units.SI.Height len2 "Length of receiving borehole"; + input Modelica.Units.SI.Height burDep2 "Buried depth of receiving borehole"; input Boolean includeRealSource = true "true if contribution of real source is included"; input Boolean includeMirrorSource = true "true if contribution of mirror source is included"; @@ -46,21 +46,22 @@ algorithm annotation ( Documentation(info=" -

                      -Integrand of the cylindrical heat source solution for use in - -AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.ThermalResponseFactors.finiteLineSource. -

                      -", revisions=" -
                        -
                      • -August 23, 2018 by Michael Wetter:
                        -Reformulated function to use sum. -
                      • -
                      • -March 22, 2018 by Massimo Cimmino:
                        -First implementation. -
                      • -
                      -")); +

                      + Integrand of the cylindrical heat source solution for use in + + AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.ThermalResponseFactors.finiteLineSource. +

                      + ",revisions=" +
                        +
                      • + August 23, 2018 by Michael Wetter:
                        + Reformulated function to use sum. +
                      • +
                      • + March 22, 2018 by Massimo Cimmino:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end finiteLineSource_Integrand; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/gFunction.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/gFunction.mo index 007155daf7..2a7bb3d0c1 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/gFunction.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/gFunction.mo @@ -3,34 +3,41 @@ function gFunction "Evaluate the g-function of a bore field" extends Modelica.Icons.Function; input Integer nBor "Number of boreholes"; - input Modelica.SIunits.Position cooBor[nBor, 2] "Coordinates of boreholes"; - input Modelica.SIunits.Height hBor "Borehole length"; - input Modelica.SIunits.Height dBor "Borehole buried depth"; - input Modelica.SIunits.Radius rBor "Borehole radius"; - input Modelica.SIunits.ThermalDiffusivity aSoi "Ground thermal diffusivity used in g-function evaluation"; + input Modelica.Units.SI.Position cooBor[nBor,2] "Coordinates of boreholes"; + input Modelica.Units.SI.Height hBor "Borehole length"; + input Modelica.Units.SI.Height dBor "Borehole buried depth"; + input Modelica.Units.SI.Radius rBor "Borehole radius"; + input Modelica.Units.SI.ThermalDiffusivity aSoi + "Ground thermal diffusivity used in g-function evaluation"; input Integer nSeg "Number of line source segments per borehole"; input Integer nTimSho "Number of time steps in short time region"; input Integer nTimLon "Number of time steps in long time region"; input Real ttsMax "Maximum adimensional time for gfunc calculation"; input Real relTol = 0.02 "Relative tolerance on distance between boreholes"; - output Modelica.SIunits.Time tGFun[nTimSho+nTimLon] "Time of g-function evaluation"; + output Modelica.Units.SI.Time tGFun[nTimSho + nTimLon] + "Time of g-function evaluation"; output Real g[nTimSho+nTimLon] "g-function"; protected - Modelica.SIunits.Time ts = hBor^2/(9*aSoi) "Characteristic time"; - Modelica.SIunits.Time tSho_min = 1 "Minimum time for short time calculations"; - Modelica.SIunits.Time tSho_max = 3600 "Maximum time for short time calculations"; - Modelica.SIunits.Time tLon_min = tSho_max "Minimum time for long time calculations"; - Modelica.SIunits.Time tLon_max = ts*ttsMax "Maximum time for long time calculations"; - Modelica.SIunits.Time tSho[nTimSho] "Time vector for short time calculations"; - Modelica.SIunits.Time tLon[nTimLon] "Time vector for long time calculations"; - Modelica.SIunits.Distance dis "Separation distance between boreholes"; - Modelica.SIunits.Distance dis_mn "Separation distance for comparison"; - Modelica.SIunits.Radius rLin=0.0005*hBor "Radius for evaluation of same-borehole line source solutions"; + Modelica.Units.SI.Time ts=hBor^2/(9*aSoi) "Characteristic time"; + Modelica.Units.SI.Time tSho_min=1 "Minimum time for short time calculations"; + Modelica.Units.SI.Time tSho_max=3600 + "Maximum time for short time calculations"; + Modelica.Units.SI.Time tLon_min=tSho_max + "Minimum time for long time calculations"; + Modelica.Units.SI.Time tLon_max=ts*ttsMax + "Maximum time for long time calculations"; + Modelica.Units.SI.Time tSho[nTimSho] + "Time vector for short time calculations"; + Modelica.Units.SI.Time tLon[nTimLon] "Time vector for long time calculations"; + Modelica.Units.SI.Distance dis "Separation distance between boreholes"; + Modelica.Units.SI.Distance dis_mn "Separation distance for comparison"; + Modelica.Units.SI.Radius rLin=0.0005*hBor + "Radius for evaluation of same-borehole line source solutions"; Real hSegRea[nSeg] "Real part of the FLS solution"; Real hSegMir[2*nSeg-1] "Mirror part of the FLS solution"; - Modelica.SIunits.Height dSeg "Buried depth of borehole segment"; + Modelica.Units.SI.Height dSeg "Buried depth of borehole segment"; Integer Done[nBor, nBor] "Matrix for tracking of FLS evaluations"; Real A[nSeg*nBor+1, nSeg*nBor+1] "Coefficient matrix for system of equations"; Real B[nSeg*nBor+1] "Coefficient vector for system of equations"; @@ -188,94 +195,95 @@ algorithm annotation ( Documentation(info=" -

                      -This function implements the g-function evaluation method introduced by -Cimmino and Bernier (see: Cimmino and Bernier (2014), and Cimmino (2018)) based -on the g-function function concept first introduced by Eskilson (1987). -The g-function gives the relation between the variation of the borehole -wall temperature at a time t and the heat extraction and injection rates -at all times preceding time t as -

                      -

                      -\"image\" -

                      -

                      -where Tb is the borehole wall temperature, -Tg is the undisturbed ground temperature, Q is the -heat injection rate into the ground through the borehole wall per unit borehole -length, ks is the soil thermal conductivity and g is -the g-function. -

                      -

                      -The g-function is constructed from the combination of the combination of -the finite line source (FLS) solution (see - -AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.ThermalResponseFactors.finiteLineSource), -the cylindrical heat source (CHS) solution (see - -AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.ThermalResponseFactors.cylindricalHeatSource), -and the infinite line source (ILS) solution (see - -AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.ThermalResponseFactors.infiniteLineSource). -To obtain the g-function of a bore field, each borehole is divided into a -series of nSeg segments of equal length, each modeled as a line -source of finite length. The finite line source solution is superimposed in -space to obtain a system of equations that gives the relation between the heat -injection rate at each of the segments and the borehole wall temperature at each -of the segments. The system is solved to obtain the uniform borehole wall -temperature required at any time to maintain a constant total heat injection -rate (Qtot = 2πksHtot) into the bore -field. The uniform borehole wall temperature is then equal to the finite line -source based g-function. -

                      -

                      -Since this g-function is based on line sources of heat, rather than -cylinders, the g-function is corrected to consider the cylindrical -geometry. The correction factor is then the difference between the cylindrical -heat source solution and the infinite line source solution, as proposed by -Li et al. (2014) as -

                      -

                      -g(t) = gFLS + (gCHS - gILS) -

                      -

                      Implementation

                      -

                      -The calculation of the g-function is separated into two regions: the -short-time region and the long-time region. In the short-time region, -corresponding to times t < 1 hour, heat interaction between boreholes -and axial variations of heat injection rate are not considered. The -g-function is calculated using only one borehole and one segment. In the -long-time region, corresponding to times t > 1 hour, all boreholes -are represented as series of nSeg line segments and the -g-function is evaluated as described above. -

                      -

                      References

                      -

                      -Cimmino, M. and Bernier, M. 2014. A semi-analytical method to generate -g-functions for geothermal bore fields. International Journal of Heat and -Mass Transfer 70: 641-650. -

                      -

                      -Cimmino, M. 2018. Fast calculation of the g-functions of geothermal borehole -fields using similarities in the evaluation of the finite line source -solution. Journal of Building Performance Simulation. DOI: -10.1080/19401493.2017.1423390. -

                      -

                      -Eskilson, P. 1987. Thermal analysis of heat extraction boreholes. Ph.D. -Thesis. Department of Mathematical Physics. University of Lund. Sweden. -

                      -

                      -Li, M., Li, P., Chan, V. and Lai, A.C.K. 2014. Full-scale temperature -response function (G-function) for heat transfer by borehole heat exchangers -(GHEs) from sub-hour to decades. Applied Energy 136: 197-205. -

                      -", revisions=" -
                        -
                      • -March 22, 2018 by Massimo Cimmino:
                        -First implementation. -
                      • -
                      -")); +

                      + This function implements the g-function evaluation method introduced by + Cimmino and Bernier (see: Cimmino and Bernier (2014), and Cimmino (2018)) based + on the g-function function concept first introduced by Eskilson (1987). + The g-function gives the relation between the variation of the borehole + wall temperature at a time t and the heat extraction and injection rates + at all times preceding time t as +

                      +

                      + \"image\" +

                      +

                      + where Tb is the borehole wall temperature, + Tg is the undisturbed ground temperature, Q is the + heat injection rate into the ground through the borehole wall per unit borehole + length, ks is the soil thermal conductivity and g is + the g-function. +

                      +

                      + The g-function is constructed from the combination of the combination of + the finite line source (FLS) solution (see + + AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.ThermalResponseFactors.finiteLineSource), + the cylindrical heat source (CHS) solution (see + + AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.ThermalResponseFactors.cylindricalHeatSource), + and the infinite line source (ILS) solution (see + + AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.ThermalResponseFactors.infiniteLineSource). + To obtain the g-function of a bore field, each borehole is divided into a + series of nSeg segments of equal length, each modeled as a line + source of finite length. The finite line source solution is superimposed in + space to obtain a system of equations that gives the relation between the heat + injection rate at each of the segments and the borehole wall temperature at each + of the segments. The system is solved to obtain the uniform borehole wall + temperature required at any time to maintain a constant total heat injection + rate (Qtot = 2πksHtot) into the bore + field. The uniform borehole wall temperature is then equal to the finite line + source based g-function. +

                      +

                      + Since this g-function is based on line sources of heat, rather than + cylinders, the g-function is corrected to consider the cylindrical + geometry. The correction factor is then the difference between the cylindrical + heat source solution and the infinite line source solution, as proposed by + Li et al. (2014) as +

                      +

                      + g(t) = gFLS + (gCHS - gILS) +

                      +

                      Implementation

                      +

                      + The calculation of the g-function is separated into two regions: the + short-time region and the long-time region. In the short-time region, + corresponding to times t < 1 hour, heat interaction between boreholes + and axial variations of heat injection rate are not considered. The + g-function is calculated using only one borehole and one segment. In the + long-time region, corresponding to times t > 1 hour, all boreholes + are represented as series of nSeg line segments and the + g-function is evaluated as described above. +

                      +

                      References

                      +

                      + Cimmino, M. and Bernier, M. 2014. A semi-analytical method to generate + g-functions for geothermal bore fields. International Journal of Heat and + Mass Transfer 70: 641-650. +

                      +

                      + Cimmino, M. 2018. Fast calculation of the g-functions of geothermal borehole + fields using similarities in the evaluation of the finite line source + solution. Journal of Building Performance Simulation. DOI: + 10.1080/19401493.2017.1423390. +

                      +

                      + Eskilson, P. 1987. Thermal analysis of heat extraction boreholes. Ph.D. + Thesis. Department of Mathematical Physics. University of Lund. Sweden. +

                      +

                      + Li, M., Li, P., Chan, V. and Lai, A.C.K. 2014. Full-scale temperature + response function (G-function) for heat transfer by borehole heat exchangers + (GHEs) from sub-hour to decades. Applied Energy 136: 197-205. +

                      + ",revisions=" +
                        +
                      • + March 22, 2018 by Massimo Cimmino:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end gFunction; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/infiniteLineSource.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/infiniteLineSource.mo index 46a96166fc..e711e6c261 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/infiniteLineSource.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/infiniteLineSource.mo @@ -17,39 +17,40 @@ algorithm annotation ( Inline=true, Documentation(info=" -

                      -This function evaluates the infinite line source solution. This solution gives -the relation between the constant heat transfer rate (per unit length) injected -by a line heat source of infinite length and the temperature raise in the -medium. The infinite line source solution is defined by -

                      -

                      -\"image\" -

                      -

                      -where ΔT(t,r) is the temperature raise after a time t of -constant heat injection and at a distance r from the line source, -Q' is the heat injection rate per unit length, ks is -the soil thermal conductivity and hILS is the infinite line -source solution. -

                      -

                      -The infinite line source solution is given by the exponential integral -

                      -

                      -\"image\" -

                      -

                      -where αs is the ground thermal diffusivity. The -exponential integral is implemented in -AixLib.Utilities.Math.Functions.exponentialIntegralE1. -

                      -", revisions=" -
                        -
                      • -March 22, 2018 by Massimo Cimmino:
                        -First implementation. -
                      • -
                      -")); +

                      + This function evaluates the infinite line source solution. This solution gives + the relation between the constant heat transfer rate (per unit length) injected + by a line heat source of infinite length and the temperature raise in the + medium. The infinite line source solution is defined by +

                      +

                      + \"image\" +

                      +

                      + where ΔT(t,r) is the temperature raise after a time t of + constant heat injection and at a distance r from the line source, + Q' is the heat injection rate per unit length, ks is + the soil thermal conductivity and hILS is the infinite line + source solution. +

                      +

                      + The infinite line source solution is given by the exponential integral +

                      +

                      + \"image\" +

                      +

                      + where αs is the ground thermal diffusivity. The + exponential integral is implemented in + AixLib.Utilities.Math.Functions.exponentialIntegralE1. +

                      + ",revisions=" +
                        +
                      • + March 22, 2018 by Massimo Cimmino:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end infiniteLineSource; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/shaGFunction.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/shaGFunction.mo index 24c31d9660..7c9934fe82 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/shaGFunction.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/shaGFunction.mo @@ -3,11 +3,12 @@ function shaGFunction "Returns a SHA1 encryption of the formatted arguments for the g-function generation" extends Modelica.Icons.Function; input Integer nBor "Number of boreholes"; - input Modelica.SIunits.Position cooBor[nBor, 2] "Coordinates of boreholes"; - input Modelica.SIunits.Height hBor "Borehole length"; - input Modelica.SIunits.Height dBor "Borehole buried depth"; - input Modelica.SIunits.Radius rBor "Borehole radius"; - input Modelica.SIunits.ThermalDiffusivity aSoi "Ground thermal diffusivity used in g-function evaluation"; + input Modelica.Units.SI.Position cooBor[nBor,2] "Coordinates of boreholes"; + input Modelica.Units.SI.Height hBor "Borehole length"; + input Modelica.Units.SI.Height dBor "Borehole buried depth"; + input Modelica.Units.SI.Radius rBor "Borehole radius"; + input Modelica.Units.SI.ThermalDiffusivity aSoi + "Ground thermal diffusivity used in g-function evaluation"; input Integer nSeg "Number of line source segments per borehole"; input Integer nTimSho "Number of time steps in short time region"; input Integer nTimLon "Number of time steps in long time region"; @@ -37,42 +38,43 @@ algorithm annotation ( Inline=false, Documentation(info=" -

                      -This function returns the SHA1 encryption of its arguments. -

                      -

                      Implementation

                      -

                      -Each argument is formatted in exponential notation -with four significant digits, for example 1.234e+001, with no spaces or -other separating characters between each argument value. -To prevent too long strings that can cause buffer overflows, -the sha encoding of each argument is computed and added to the next string that -is parsed. -

                      -

                      -The SHA1 encryption is computed using -AixLib.Utilities.Cryptographics.sha. -

                      -", revisions=" -
                        -
                      • -November 1, 2019 by Michael Wetter:
                        -Declared string as a constant due to JModelica's tigther type checking. -See #1230. -
                      • -
                      • -September 11, 2018, by Michael Wetter:
                        -Refactored implementation to avoid buffer overflow. -
                      • -
                      • -September 11, 2018 by Damien Picard:
                        -Split long strings into small strings to avoid buffer overflow. -See #1018. -
                      • -
                      • -June 22, 2018 by Alex Laferrière:
                        -First implementation. -
                      • -
                      -")); +

                      + This function returns the SHA1 encryption of its arguments. +

                      +

                      Implementation

                      +

                      + Each argument is formatted in exponential notation + with four significant digits, for example 1.234e+001, with no spaces or + other separating characters between each argument value. + To prevent too long strings that can cause buffer overflows, + the sha encoding of each argument is computed and added to the next string that + is parsed. +

                      +

                      + The SHA1 encryption is computed using + AixLib.Utilities.Cryptographics.sha. +

                      + ",revisions=" +
                        +
                      • + November 1, 2019 by Michael Wetter:
                        + Declared string as a constant due to JModelica's tigther type checking. + See #1230. +
                      • +
                      • + September 11, 2018, by Michael Wetter:
                        + Refactored implementation to avoid buffer overflow. +
                      • +
                      • + September 11, 2018 by Damien Picard:
                        + Split long strings into small strings to avoid buffer overflow. + See #1018. +
                      • +
                      • + June 22, 2018 by Alex Laferrière:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end shaGFunction; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/timeGeometric.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/timeGeometric.mo index 1e845f115d..5ac408e6d6 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/timeGeometric.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/ThermalResponseFactors/timeGeometric.mo @@ -2,8 +2,8 @@ within AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.ThermalRespon function timeGeometric "Geometric expansion of time steps" extends Modelica.Icons.Function; - input Modelica.SIunits.Duration dt "Minimum time step"; - input Modelica.SIunits.Time t_max "Maximum value of time"; + input Modelica.Units.SI.Duration dt "Minimum time step"; + input Modelica.Units.SI.Time t_max "Maximum value of time"; input Integer nTim "Number of time values"; output Real t[nTim] "Time vector"; @@ -37,31 +37,32 @@ algorithm end if; annotation ( Documentation(info=" -

                      -This function attemps to build a vector of length nTim with a geometric -expansion of the time variable between dt and t_max. -

                      -

                      -If t_max > nTim*dt, then a geometrically expanding vector is built as -

                      -

                      -t = [dt, dt*(1-r2)/(1-r), ... , dt*(1-rn)/(1-r), ... , tmax], -

                      -

                      -where r is the geometric expansion factor. -

                      -

                      -If t_max < nTim*dt, then a linearly expanding vector is built as -

                      -

                      -t = [dt, 2*dt, ... , n*dt, ... , nTim*dt] -

                      -", revisions=" -
                        -
                      • -June 28, 2018 by Massimo Cimmino:
                        -First implementation. -
                      • -
                      -")); +

                      + This function attemps to build a vector of length nTim with a geometric + expansion of the time variable between dt and t_max. +

                      +

                      + If t_max > nTim*dt, then a geometrically expanding vector is built as +

                      +

                      + t = [dt, dt*(1-r2)/(1-r), ... , dt*(1-rn)/(1-r), ... , tmax], +

                      +

                      + where r is the geometric expansion factor. +

                      +

                      + If t_max < nTim*dt, then a linearly expanding vector is built as +

                      +

                      + t = [dt, 2*dt, ... , n*dt, ... , nTim*dt] +

                      + ",revisions=" +
                        +
                      • + June 28, 2018 by Massimo Cimmino:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end timeGeometric; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/Validation/Analytic_20Years.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/Validation/Analytic_20Years.mo index 7ad7e3cfff..3b0f8965c2 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/Validation/Analytic_20Years.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/Validation/Analytic_20Years.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.Validation; +within AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.Validation; model Analytic_20Years "Long term validation of ground temperature response model" extends Modelica.Icons.Example; @@ -91,29 +91,30 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/Validation/Analytic_20Years.mos" "Simulate and plot"), Documentation(info=" -

                      -This validation case applies the asymetrical synthetic load profile developed -by Pinel (2003) over a 20 year period by directly injecting the heat at the -borehole wall in the ground temperature response model. The difference between -the resulting borehole wall temperature and the same temperature precalculated -by using a fast Fourier transform is calculated with the add -component. The fast Fourier transform calculation was done using the same -g-function as was calculated by - -AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.ThermalResponseFactors.gFunction. -

                      -

                      References

                      -

                      -Pinel, P. 2003. Amélioration, validation et implantation d’un algorithme de calcul -pour évaluer le transfert thermique dans les puits verticaux de systèmes de pompes à chaleur géothermiques, -M.A.Sc. Thesis, École Polytechnique de Montréal. -

                      -", revisions=" -
                        -
                      • -March 5, 2018, by Alex Laferrière:
                        -First implementation. -
                      • -
                      -")); +

                      + This validation case applies the asymetrical synthetic load profile developed + by Pinel (2003) over a 20 year period by directly injecting the heat at the + borehole wall in the ground temperature response model. The difference between + the resulting borehole wall temperature and the same temperature precalculated + by using a fast Fourier transform is calculated with the add + component. The fast Fourier transform calculation was done using the same + g-function as was calculated by + + AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.ThermalResponseFactors.gFunction. +

                      +

                      References

                      +

                      + Pinel, P. 2003. Amélioration, validation et implantation d’un algorithme de calcul + pour évaluer le transfert thermique dans les puits verticaux de systèmes de pompes à chaleur géothermiques, + M.A.Sc. Thesis, École Polytechnique de Montréal. +

                      + ",revisions=" +
                        +
                      • + March 5, 2018, by Alex Laferrière:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end Analytic_20Years; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/Validation/BaseClasses/SmallScale_Borefield.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/Validation/BaseClasses/SmallScale_Borefield.mo index 434d8b9590..52c8d70f07 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/Validation/BaseClasses/SmallScale_Borefield.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/Validation/BaseClasses/SmallScale_Borefield.mo @@ -12,27 +12,28 @@ record SmallScale_Borefield defaultComponentName="borFieDat", Documentation( info=" -

                      -This record contains the borefield data of the Cimmino and -Bernier (2015) experiment. -

                      -

                      References

                      -

                      -Cimmino, M. and Bernier, M. 2015. Experimental determination of the -g-functions of a small-scale geothermal borehole. Geothermics 56: 60-71. -

                      -", +

                      + This record contains the borefield data of the Cimmino and + Bernier (2015) experiment. +

                      +

                      References

                      +

                      + Cimmino, M. and Bernier, M. 2015. Experimental determination of the + g-functions of a small-scale geothermal borehole. Geothermics 56: 60-71. +

                      + ", revisions=" -
                        -
                      • -July 15, 2018, by Michael Wetter:
                        -Revised implementation, added defaultComponentPrefixes and -defaultComponentName. -
                      • -
                      • -June 28, 2018, by Massimo Cimmino:
                        -First implementation. -
                      • -
                      -")); +
                        +
                      • + July 15, 2018, by Michael Wetter:
                        + Revised implementation, added defaultComponentPrefixes and + defaultComponentName. +
                      • +
                      • + June 28, 2018, by Massimo Cimmino:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end SmallScale_Borefield; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/Validation/BaseClasses/SmallScale_Configuration.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/Validation/BaseClasses/SmallScale_Configuration.mo index 6f1fb3cb6c..3df2ff9f0d 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/Validation/BaseClasses/SmallScale_Configuration.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/Validation/BaseClasses/SmallScale_Configuration.mo @@ -21,29 +21,30 @@ defaultComponentPrefixes="parameter", defaultComponentName="conDat", Documentation( info=" -

                      -This record contains the configuration data of the Cimmino and -Bernier (2015) experiment. Since the model is not adapted to the simulation of -small scale boreholes, the borehole dimensions are multiplied by a factor 375 -to obtain a scaled-up 150.0 m long borehole. -

                      -

                      References

                      -

                      -Cimmino, M. and Bernier, M. 2015. Experimental determination of the -g-functions of a small-scale geothermal borehole. Geothermics 56: 60-71. -

                      -", +

                      + This record contains the configuration data of the Cimmino and + Bernier (2015) experiment. Since the model is not adapted to the simulation of + small scale boreholes, the borehole dimensions are multiplied by a factor 375 + to obtain a scaled-up 150.0 m long borehole. +

                      +

                      References

                      +

                      + Cimmino, M. and Bernier, M. 2015. Experimental determination of the + g-functions of a small-scale geothermal borehole. Geothermics 56: 60-71. +

                      + ", revisions=" -
                        -
                      • -July 15, 2018, by Michael Wetter:
                        -Revised implementation, added defaultComponentPrefixes and -defaultComponentName. -
                      • -
                      • -June 28, 2018, by Massimo Cimmino:
                        -First implementation. -
                      • -
                      -")); +
                        +
                      • + July 15, 2018, by Michael Wetter:
                        + Revised implementation, added defaultComponentPrefixes and + defaultComponentName. +
                      • +
                      • + June 28, 2018, by Massimo Cimmino:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end SmallScale_Configuration; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/Validation/BaseClasses/SmallScale_Filling.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/Validation/BaseClasses/SmallScale_Filling.mo index 75d0a651b1..ad641756fa 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/Validation/BaseClasses/SmallScale_Filling.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/Validation/BaseClasses/SmallScale_Filling.mo @@ -11,25 +11,26 @@ record SmallScale_Filling defaultComponentName="filDat", Documentation( info=" -

                      This record contains the filling data of the Cimmino and -Bernier (2015) experiment.

                      -

                      References

                      -

                      -Cimmino, M. and Bernier, M. 2015. Experimental determination of the -g-functions of a small-scale geothermal borehole. Geothermics 56: 60-71. -

                      -", +

                      This record contains the filling data of the Cimmino and + Bernier (2015) experiment.

                      +

                      References

                      +

                      + Cimmino, M. and Bernier, M. 2015. Experimental determination of the + g-functions of a small-scale geothermal borehole. Geothermics 56: 60-71. +

                      + ", revisions=" -
                        -
                      • -July 15, 2018, by Michael Wetter:
                        -Revised implementation, added defaultComponentPrefixes and -defaultComponentName. -
                      • -
                      • -June 28, 2018, by Massimo Cimmino:
                        -First implementation. -
                      • -
                      -")); +
                        +
                      • + July 15, 2018, by Michael Wetter:
                        + Revised implementation, added defaultComponentPrefixes and + defaultComponentName. +
                      • +
                      • + June 28, 2018, by Massimo Cimmino:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end SmallScale_Filling; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/Validation/BaseClasses/SmallScale_Soil.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/Validation/BaseClasses/SmallScale_Soil.mo index a31ad73775..d6b69b8163 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/Validation/BaseClasses/SmallScale_Soil.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/Validation/BaseClasses/SmallScale_Soil.mo @@ -11,26 +11,27 @@ record SmallScale_Soil defaultComponentName="soiDat", Documentation( info=" -

                      -This record contains the soil data of the Cimmino and Bernier (2015) experiment. -

                      -

                      References

                      -

                      -Cimmino, M. and Bernier, M. 2015. Experimental determination of the -g-functions of a small-scale geothermal borehole. Geothermics 56: 60-71. -

                      -", +

                      + This record contains the soil data of the Cimmino and Bernier (2015) experiment. +

                      +

                      References

                      +

                      + Cimmino, M. and Bernier, M. 2015. Experimental determination of the + g-functions of a small-scale geothermal borehole. Geothermics 56: 60-71. +

                      + ", revisions=" -
                        -
                      • -July 15, 2018, by Michael Wetter:
                        -Revised implementation, added defaultComponentPrefixes and -defaultComponentName. -
                      • -
                      • -June 28, 2018, by Massimo Cimmino:
                        -First implementation. -
                      • -
                      -")); +
                        +
                      • + July 15, 2018, by Michael Wetter:
                        + Revised implementation, added defaultComponentPrefixes and + defaultComponentName. +
                      • +
                      • + June 28, 2018, by Massimo Cimmino:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end SmallScale_Soil; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/Validation/BaseClasses/package.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/Validation/BaseClasses/package.mo index 09f8c3b760..4fe3dd24fc 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/Validation/BaseClasses/package.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/Validation/BaseClasses/package.mo @@ -1,6 +1,7 @@ within AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.Validation; package BaseClasses "Package with base classes for AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.Validation" extends Modelica.Icons.BasesPackage; + annotation (preferredView="info", Documentation(info="

                      This package contains base classes that are used to construct the models in diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/Validation/Cylindrical.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/Validation/Cylindrical.mo index 0d81bca377..bbe27d752f 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/Validation/Cylindrical.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/Validation/Cylindrical.mo @@ -3,7 +3,7 @@ model Cylindrical "Comparison of the Cylindrical with the GroundTemperatureResponse" extends Modelica.Icons.Example; - parameter Modelica.SIunits.Temperature T_start = 295.15 + parameter Modelica.Units.SI.Temperature T_start=295.15 "Initial soil temperature"; parameter AixLib.Fluid.Geothermal.Borefields.Data.Borefield.Template borFieDat= AixLib.Fluid.Geothermal.Borefields.Validation.BaseClasses.SandBox_Borefield() @@ -49,22 +49,23 @@ equation "Simulate and plot"), experiment(Tolerance=1e-6, StopTime=360000.0), Documentation(info=" -

                      -This example demonstrates the use of - -AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.Cylindrical. -

                      -

                      -After a short delay, a constant heat flow rate is applied to the inner surface -of a cylindrical ground layer while the outer surface is kept at a constant -temperature. -

                      -", revisions=" -
                        -
                      • -June 13, 2018, by Damien Picard:
                        -First implementation. -
                      • -
                      -")); +

                      + This example demonstrates the use of + + AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.Cylindrical. +

                      +

                      + After a short delay, a constant heat flow rate is applied to the inner surface + of a cylindrical ground layer while the outer surface is kept at a constant + temperature. +

                      + ",revisions=" +
                        +
                      • + June 13, 2018, by Damien Picard:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end Cylindrical; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/Validation/FiniteDifference_1Week.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/Validation/FiniteDifference_1Week.mo index 3407a6d481..ef91ded6cf 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/Validation/FiniteDifference_1Week.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/Validation/FiniteDifference_1Week.mo @@ -3,7 +3,7 @@ model FiniteDifference_1Week "Short term validation of ground temperature response model" extends Modelica.Icons.Example; - parameter Modelica.SIunits.Temperature T_start = 283.15 + parameter Modelica.Units.SI.Temperature T_start=283.15 "Initial soil temperature"; AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.Cylindrical soi( final steadyStateInitial=false, @@ -47,7 +47,7 @@ model FiniteDifference_1Week annotation (Placement(transformation(extent={{-90,-88},{-70,-68}}))); Modelica.Blocks.Sources.Sine sine( - freqHz=1/(24*3600), + f=1/(24*3600), startTime=21600, amplitude=1e8) "Heat flow signal" annotation (Placement(transformation(extent={{-92,-10},{-72,10}}))); @@ -108,27 +108,28 @@ equation "Simulate and plot"), experiment(Tolerance=1e-6, StopTime=604800.0), Documentation(info=" -

                      -This example validates the implementation of - -AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.GroundTemperatureResponse -for the evaluation of the borehole wall temperature at a short time scale. -

                      -

                      -After a short delay, a sinusoidal heat flow rate is applied to borehole heat -exchanger. The temperature at the borehole wall evaluated with - -AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.GroundTemperatureResponse -is compared to the temperature obtained with - -AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.Cylindrical -

                      -", revisions=" -
                        -
                      • -June 13, 2018, by Massimo Cimmino:
                        -First implementation. -
                      • -
                      -")); +

                      + This example validates the implementation of + + AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.GroundTemperatureResponse + for the evaluation of the borehole wall temperature at a short time scale. +

                      +

                      + After a short delay, a sinusoidal heat flow rate is applied to borehole heat + exchanger. The temperature at the borehole wall evaluated with + + AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.GroundTemperatureResponse + is compared to the temperature obtained with + + AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.Cylindrical +

                      + ",revisions=" +
                        +
                      • + June 13, 2018, by Massimo Cimmino:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end FiniteDifference_1Week; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/Validation/Measured_SmallScale.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/Validation/Measured_SmallScale.mo index b8ccaceaff..4722a3b9f6 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/Validation/Measured_SmallScale.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/Validation/Measured_SmallScale.mo @@ -56,41 +56,42 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Geothermal/Borefields/BaseClasses/HeatTransfer/Validation/Measured_SmallScale.mos" "Simulate and plot"), Documentation(info=" -

                      -This validation case simulates the experiment of Cimmino and Bernier (2015). -The experiment consists in the injection of heat at an average rate of 8.67 W -in a 0.40 m long borehole over a period of 168 h. Borehole wall tempratures -were measured by a series of 22 thermocouples welded to the stainless steel -pipe that contains the borehole and acts as the borehole wall. -

                      -

                      -Since the model is not adapted to the simulation of small scale boreholes, the -borehole dimensions are multiplied by a factor 375 to obtain a scaled-up 150.0 m -long borehole. The time values of the experimental data are then multiplied by a -factor 3752. The predicted borehole wall temperature is compared to -the experimental data. -

                      -

                      -A sharp increase in the rate of change of the borehole wall temperature is -observed at t=500 years. This is caused by a sudden change in the rate -of heat injected to the fluid at the same moment. The simulated borehole wall -temperature is more affected the measured borehole wall temperature since the -validation model does not consider the dynamics of the borehole and the fluid, -and that heat is directly injected at the borehole wall. In the experiment, the -sudden change in heat injection rate was dampened by the circulating fluid, the -borehole filling material, and the measurement apparatus. -

                      -

                      References

                      -

                      -Cimmino, M. and Bernier, M. 2015. Experimental determination of the -g-functions of a small-scale geothermal borehole. Geothermics 56: 60-71. -

                      -", revisions=" -
                        -
                      • -July 18, 2018, by Massimo Cimmino:
                        -First implementation. -
                      • -
                      -")); +

                      + This validation case simulates the experiment of Cimmino and Bernier (2015). + The experiment consists in the injection of heat at an average rate of 8.67 W + in a 0.40 m long borehole over a period of 168 h. Borehole wall tempratures + were measured by a series of 22 thermocouples welded to the stainless steel + pipe that contains the borehole and acts as the borehole wall. +

                      +

                      + Since the model is not adapted to the simulation of small scale boreholes, the + borehole dimensions are multiplied by a factor 375 to obtain a scaled-up 150.0 m + long borehole. The time values of the experimental data are then multiplied by a + factor 3752. The predicted borehole wall temperature is compared to + the experimental data. +

                      +

                      + A sharp increase in the rate of change of the borehole wall temperature is + observed at t=500 years. This is caused by a sudden change in the rate + of heat injected to the fluid at the same moment. The simulated borehole wall + temperature is more affected the measured borehole wall temperature since the + validation model does not consider the dynamics of the borehole and the fluid, + and that heat is directly injected at the borehole wall. In the experiment, the + sudden change in heat injection rate was dampened by the circulating fluid, the + borehole filling material, and the measurement apparatus. +

                      +

                      References

                      +

                      + Cimmino, M. and Bernier, M. 2015. Experimental determination of the + g-functions of a small-scale geothermal borehole. Geothermics 56: 60-71. +

                      + ",revisions=" +
                        +
                      • + July 18, 2018, by Massimo Cimmino:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end Measured_SmallScale; diff --git a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/PartialBorefield.mo b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/PartialBorefield.mo index e9ef88f633..2e39e593d6 100644 --- a/AixLib/Fluid/Geothermal/Borefields/BaseClasses/PartialBorefield.mo +++ b/AixLib/Fluid/Geothermal/Borefields/BaseClasses/PartialBorefield.mo @@ -24,7 +24,7 @@ partial model PartialBorefield // Assumptions parameter Modelica.Fluid.Types.Dynamics energyDynamics=Modelica.Fluid.Types.Dynamics.DynamicFreeInitial "Type of energy balance: dynamic (3 initialization options) or steady state" - annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Equations")); + annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Conservation equations")); // Initialization parameter Medium.AbsolutePressure p_start = Medium.p_default @@ -32,7 +32,8 @@ partial model PartialBorefield annotation(Dialog(tab = "Initialization")); // Simulation parameters - parameter Modelica.SIunits.Time tLoaAgg=300 "Time resolution of load aggregation"; + parameter Modelica.Units.SI.Time tLoaAgg=300 + "Time resolution of load aggregation"; parameter Integer nCel(min=1)=5 "Number of cells per aggregation level"; parameter Integer nSeg(min=1)=10 "Number of segments to use in vertical discretization of the boreholes"; @@ -45,23 +46,22 @@ partial model PartialBorefield annotation (choicesAllMatching=true,Placement(transformation(extent={{-80,-80},{-60,-60}}))); // Temperature gradient in undisturbed soil - parameter Modelica.SIunits.Temperature TExt0_start=283.15 + parameter Modelica.Units.SI.Temperature TExt0_start=283.15 "Initial far field temperature" annotation (Dialog(tab="Initialization", group="Soil")); - parameter Modelica.SIunits.Temperature TExt_start[nSeg]= - {if z[i] >= z0 then TExt0_start + (z[i] - z0)*dT_dz else TExt0_start for i in 1:nSeg} + parameter Modelica.Units.SI.Temperature TExt_start[nSeg]={if z[i] >= z0 then + TExt0_start + (z[i] - z0)*dT_dz else TExt0_start for i in 1:nSeg} "Temperature of the undisturbed ground" annotation (Dialog(tab="Initialization", group="Soil")); - parameter Modelica.SIunits.Temperature TGro_start[nSeg]=TExt_start + parameter Modelica.Units.SI.Temperature TGro_start[nSeg]=TExt_start "Start value of grout temperature" annotation (Dialog(tab="Initialization", group="Filling material")); - parameter Modelica.SIunits.Temperature TFlu_start[nSeg]=TGro_start - "Start value of fluid temperature" - annotation (Dialog(tab="Initialization")); + parameter Modelica.Units.SI.Temperature TFlu_start[nSeg]=TGro_start + "Start value of fluid temperature" annotation (Dialog(tab="Initialization")); - parameter Modelica.SIunits.Height z0=10 + parameter Modelica.Units.SI.Height z0=10 "Depth below which the temperature gradient starts" annotation (Dialog(tab="Initialization", group="Temperature profile")); parameter Real dT_dz(final unit="K/m", min=0) = 0.01 @@ -111,7 +111,8 @@ partial model PartialBorefield annotation (Placement(transformation(extent={{-10,-50},{10,-30}}))); protected - parameter Modelica.SIunits.Height z[nSeg]={borFieDat.conDat.hBor/nSeg*(i - 0.5) for i in 1:nSeg} + parameter Modelica.Units.SI.Height z[nSeg]={borFieDat.conDat.hBor/nSeg*(i - + 0.5) for i in 1:nSeg} "Distance from the surface to the considered segment"; AixLib.Fluid.BaseClasses.MassFlowRateMultiplier masFloDiv( @@ -272,72 +273,73 @@ equation fillPattern=FillPattern.Forward)}), Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100, 100}})),Documentation(info=" -

                      -This model simulates a borefield containing one or multiple boreholes -using the parameters in the borFieDat record. -

                      -

                      -Heat transfer to the soil is modeled using only one borehole heat exchanger -(To be added in an extended model). The -fluid mass flow rate into the borehole is divided to reflect the per-borehole -fluid mass flow rate. The borehole model calculates the dynamics within the -borehole itself using an axial discretization and a resistance-capacitance -network for the internal thermal resistances between the individual pipes and -between each pipe and the borehole wall. -

                      -

                      -The thermal interaction between the borehole wall and the surrounding soil -is modeled using - -AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.GroundTemperatureResponse, -which uses a cell-shifting load aggregation technique to calculate the borehole wall -temperature after calculating and/or read (from a previous calculation) the borefield's thermal response factor. -

                      -", revisions=" -
                        -
                      • -April 9, 2021, by Michael Wetter:
                        -Corrected placement of each keyword.
                        -See Buidings, PR #2440. -
                      • -
                      • -August 25, 2020, by Filip Jorissen:
                        -Switched port connections for masFloDiv. -See #41. -
                      • -
                      • -March 24, 2020, by Damien Picard:
                        -Propagated flowReversal into masFloDiv and masFloMul. -
                      • -
                      • -June 7, 2019, by Massimo Cimmino:
                        -Converted instances that are not of interest to user to be protected. -
                      • -
                      • -June 4, 2019, by Massimo Cimmino:
                        -Added an output for the average borehole wall temperature. -See -#1107. -
                      • -
                      • -April 11, 2019, by Filip Jorissen:
                        -Added choicesAllMatching for borFieDat. -See #1117. -
                      • -
                      • -January 18, 2019, by Jianjun Hu:
                        -Limited the media choice to water and glycolWater. -See #1050. -
                      • -
                      • -July 2018, by Alex Laferrière:
                        -Changed into a partial model and changed documentation to reflect the new approach -used by the borefield models. -
                      • -
                      • -July 2014, by Damien Picard:
                        -First implementation. -
                      • -
                      -")); +

                      + This model simulates a borefield containing one or multiple boreholes + using the parameters in the borFieDat record. +

                      +

                      + Heat transfer to the soil is modeled using only one borehole heat exchanger + (To be added in an extended model). The + fluid mass flow rate into the borehole is divided to reflect the per-borehole + fluid mass flow rate. The borehole model calculates the dynamics within the + borehole itself using an axial discretization and a resistance-capacitance + network for the internal thermal resistances between the individual pipes and + between each pipe and the borehole wall. +

                      +

                      + The thermal interaction between the borehole wall and the surrounding soil + is modeled using + + AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.GroundTemperatureResponse, + which uses a cell-shifting load aggregation technique to calculate the borehole wall + temperature after calculating and/or read (from a previous calculation) the borefield's thermal response factor. +

                      + ",revisions=" +
                        +
                      • + April 9, 2021, by Michael Wetter:
                        + Corrected placement of each keyword.
                        + See Buildings, PR #2440. +
                      • +
                      • + August 25, 2020, by Filip Jorissen:
                        + Switched port connections for masFloDiv. + See #41. +
                      • +
                      • + March 24, 2020, by Damien Picard:
                        + Propagated flowReversal into masFloDiv and masFloMul. +
                      • +
                      • + June 7, 2019, by Massimo Cimmino:
                        + Converted instances that are not of interest to user to be protected. +
                      • +
                      • + June 4, 2019, by Massimo Cimmino:
                        + Added an output for the average borehole wall temperature. + See + #1107. +
                      • +
                      • + April 11, 2019, by Filip Jorissen:
                        + Added choicesAllMatching for borFieDat. + See #1117. +
                      • +
                      • + January 18, 2019, by Jianjun Hu:
                        + Limited the media choice to water and glycolWater. + See #1050. +
                      • +
                      • + July 2018, by Alex Laferrière:
                        + Changed into a partial model and changed documentation to reflect the new approach + used by the borefield models. +
                      • +
                      • + July 2014, by Damien Picard:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end PartialBorefield; diff --git a/AixLib/Fluid/Geothermal/Borefields/Data/Borefield/Example.mo b/AixLib/Fluid/Geothermal/Borefields/Data/Borefield/Example.mo index 58aa5c80b7..407d35fa54 100644 --- a/AixLib/Fluid/Geothermal/Borefields/Data/Borefield/Example.mo +++ b/AixLib/Fluid/Geothermal/Borefields/Data/Borefield/Example.mo @@ -11,22 +11,23 @@ defaultComponentPrefixes="parameter", defaultComponentName="borFieDat", Documentation( info=" -

                      This record presents an example on how to define borefield records -using the template in - -AixLib.Fluid.Geothermal.Borefields.Data.Borefield.Template.

                      -", +

                      This record presents an example on how to define borefield records + using the template in + + AixLib.Fluid.Geothermal.Borefields.Data.Borefield.Template.

                      + ", revisions=" -
                        -
                      • -July 15, 2018, by Michael Wetter:
                        -Revised implementation, added defaultComponentPrefixes and -defaultComponentName. -
                      • -
                      • -June 28, 2018, by Damien Picard:
                        -First implementation. -
                      • -
                      -")); +
                        +
                      • + July 15, 2018, by Michael Wetter:
                        + Revised implementation, added defaultComponentPrefixes and + defaultComponentName. +
                      • +
                      • + June 28, 2018, by Damien Picard:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end Example; diff --git a/AixLib/Fluid/Geothermal/Borefields/Data/Borefield/Template.mo b/AixLib/Fluid/Geothermal/Borefields/Data/Borefield/Template.mo index 889ad3982e..063b19c50d 100644 --- a/AixLib/Fluid/Geothermal/Borefields/Data/Borefield/Template.mo +++ b/AixLib/Fluid/Geothermal/Borefields/Data/Borefield/Template.mo @@ -14,23 +14,24 @@ record Template defaultComponentName="borFieDat", Documentation( info=" -

                      -This record is a template for the records in - -AixLib.Fluid.Geothermal.Borefields.Data.Borefield. -

                      -", +

                      + This record is a template for the records in + + AixLib.Fluid.Geothermal.Borefields.Data.Borefield. +

                      + ", revisions=" -
                        -
                      • -July 15, 2018, by Michael Wetter:
                        -Revised implementation, added defaultComponentPrefixes and -defaultComponentName. -
                      • -
                      • -June 28, 2018, by Damien Picard:
                        -First implementation. -
                      • -
                      -")); +
                        +
                      • + July 15, 2018, by Michael Wetter:
                        + Revised implementation, added defaultComponentPrefixes and + defaultComponentName. +
                      • +
                      • + June 28, 2018, by Damien Picard:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end Template; diff --git a/AixLib/Fluid/Geothermal/Borefields/Data/Configuration/Example.mo b/AixLib/Fluid/Geothermal/Borefields/Data/Configuration/Example.mo index bbb0e6e00a..4d9c34bacd 100644 --- a/AixLib/Fluid/Geothermal/Borefields/Data/Configuration/Example.mo +++ b/AixLib/Fluid/Geothermal/Borefields/Data/Configuration/Example.mo @@ -19,24 +19,25 @@ record Example defaultComponentName="conDat", Documentation( info=" -

                      -This record presents an example for how to define configuration data records -using the template in - -AixLib.Fluid.Geothermal.Borefields.Data.Configuration.Template. -

                      -", +

                      + This record presents an example for how to define configuration data records + using the template in + + AixLib.Fluid.Geothermal.Borefields.Data.Configuration.Template. +

                      + ", revisions=" -
                        -
                      • -July 15, 2018, by Michael Wetter:
                        -Revised implementation, added defaultComponentPrefixes and -defaultComponentName. -
                      • -
                      • -June 28, 2018, by Damien Picard:
                        -First implementation. -
                      • -
                      -")); +
                        +
                      • + July 15, 2018, by Michael Wetter:
                        + Revised implementation, added defaultComponentPrefixes and + defaultComponentName. +
                      • +
                      • + June 28, 2018, by Damien Picard:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end Example; diff --git a/AixLib/Fluid/Geothermal/Borefields/Data/Configuration/Template.mo b/AixLib/Fluid/Geothermal/Borefields/Data/Configuration/Template.mo index d920b98d50..1eaf4ef577 100644 --- a/AixLib/Fluid/Geothermal/Borefields/Data/Configuration/Template.mo +++ b/AixLib/Fluid/Geothermal/Borefields/Data/Configuration/Template.mo @@ -11,48 +11,48 @@ record Template parameter Real Rb(unit="(m.K)/W") = 0.0 "Borehole thermal resistance Rb. Only to fill in if known" annotation(Dialog(enable=use_Rb)); - parameter Modelica.SIunits.MassFlowRate mBor_flow_nominal + parameter Modelica.Units.SI.MassFlowRate mBor_flow_nominal "Nominal mass flow rate per borehole" annotation (Dialog(group="Nominal condition")); - parameter Modelica.SIunits.MassFlowRate mBorFie_flow_nominal = mBor_flow_nominal*nBor - "Nominal mass flow of borefield" + parameter Modelica.Units.SI.MassFlowRate mBorFie_flow_nominal= + mBor_flow_nominal*nBor "Nominal mass flow of borefield" annotation (Dialog(group="Nominal condition")); - parameter Modelica.SIunits.Pressure dp_nominal(displayUnit="Pa") + parameter Modelica.Units.SI.Pressure dp_nominal(displayUnit="Pa") "Pressure losses for the entire borefield" annotation (Dialog(group="Nominal condition")); //------------------------- Geometrical parameters --------------------------- - parameter Modelica.SIunits.Height hBor "Total height of the borehole" + parameter Modelica.Units.SI.Height hBor "Total height of the borehole" annotation (Dialog(group="Borehole")); - parameter Modelica.SIunits.Radius rBor "Radius of the borehole" + parameter Modelica.Units.SI.Radius rBor "Radius of the borehole" annotation (Dialog(group="Borehole")); - parameter Modelica.SIunits.Height dBor "Borehole buried depth" + parameter Modelica.Units.SI.Height dBor "Borehole buried depth" annotation (Dialog(group="Borehole")); parameter Integer nBor = size(cooBor, 1) "Total number of boreholes" annotation (Dialog(group="Borehole")); - parameter Modelica.SIunits.Length[:,2] cooBor + parameter Modelica.Units.SI.Length[:,2] cooBor "Cartesian coordinates of the boreholes in meters" annotation (Dialog(group="Borehole")); // -- Tube - parameter Modelica.SIunits.Radius rTub "Outer radius of the tubes" - annotation (Dialog(group="Tubes")); - parameter Modelica.SIunits.ThermalConductivity kTub "Thermal conductivity of the tube" + parameter Modelica.Units.SI.Radius rTub "Outer radius of the tubes" annotation (Dialog(group="Tubes")); + parameter Modelica.Units.SI.ThermalConductivity kTub + "Thermal conductivity of the tube" annotation (Dialog(group="Tubes")); - parameter Modelica.SIunits.Length eTub "Thickness of a tube" + parameter Modelica.Units.SI.Length eTub "Thickness of a tube" annotation (Dialog(group="Tubes")); - parameter Modelica.SIunits.Length xC + parameter Modelica.Units.SI.Length xC "Shank spacing, defined as the distance between the center of a pipe and the center of the borehole" annotation (Dialog(group="Tubes")); //------------------------- Advanced parameters ------------------------------ /*--------Flow: */ - parameter Modelica.SIunits.MassFlowRate mBor_flow_small(min=0) = 1E-4*abs(mBor_flow_nominal) - "Small mass flow rate for regularization of zero flow" + parameter Modelica.Units.SI.MassFlowRate mBor_flow_small(min=0) = 1E-4*abs( + mBor_flow_nominal) "Small mass flow rate for regularization of zero flow" annotation (Dialog(tab="Advanced")); annotation ( @@ -60,23 +60,24 @@ record Template defaultComponentName="conDat", Documentation( info=" -

                      -This record is a template for the records in - -AixLib.Fluid.Geothermal.Borefields.Data.Configuration. -

                      -", +

                      + This record is a template for the records in + + AixLib.Fluid.Geothermal.Borefields.Data.Configuration. +

                      + ", revisions=" -
                        -
                      • -July 15, 2018, by Michael Wetter:
                        -Revised implementation, added defaultComponentPrefixes and -defaultComponentName. -
                      • -
                      • -June 28, 2018, by Damien Picard:
                        -First implementation. -
                      • -
                      -")); +
                        +
                      • + July 15, 2018, by Michael Wetter:
                        + Revised implementation, added defaultComponentPrefixes and + defaultComponentName. +
                      • +
                      • + June 28, 2018, by Damien Picard:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end Template; diff --git a/AixLib/Fluid/Geothermal/Borefields/Data/Filling/Bentonite.mo b/AixLib/Fluid/Geothermal/Borefields/Data/Filling/Bentonite.mo index 28c185af9f..339624ffdf 100644 --- a/AixLib/Fluid/Geothermal/Borefields/Data/Filling/Bentonite.mo +++ b/AixLib/Fluid/Geothermal/Borefields/Data/Filling/Bentonite.mo @@ -11,21 +11,22 @@ record Bentonite defaultComponentName="filDat", Documentation( info=" -

                      -This filling data record contains the heat transfer properties of bentonite. -

                      -", +

                      + This filling data record contains the heat transfer properties of bentonite. +

                      + ", revisions=" -
                        -
                      • -July 15, 2018, by Michael Wetter:
                        -Revised implementation, added defaultComponentPrefixes and -defaultComponentName. -
                      • -
                      • -June 28, 2018, by Damien Picard:
                        -First implementation. -
                      • -
                      -")); +
                        +
                      • + July 15, 2018, by Michael Wetter:
                        + Revised implementation, added defaultComponentPrefixes and + defaultComponentName. +
                      • +
                      • + June 28, 2018, by Damien Picard:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end Bentonite; diff --git a/AixLib/Fluid/Geothermal/Borefields/Data/Filling/Template.mo b/AixLib/Fluid/Geothermal/Borefields/Data/Filling/Template.mo index 05e39e687a..998fdcae0b 100644 --- a/AixLib/Fluid/Geothermal/Borefields/Data/Filling/Template.mo +++ b/AixLib/Fluid/Geothermal/Borefields/Data/Filling/Template.mo @@ -2,38 +2,39 @@ within AixLib.Fluid.Geothermal.Borefields.Data.Filling; record Template "Template for filling data records" extends Modelica.Icons.Record; - parameter Modelica.SIunits.ThermalConductivity kFil + parameter Modelica.Units.SI.ThermalConductivity kFil "Thermal conductivity of the borehole filling material"; - parameter Modelica.SIunits.SpecificHeatCapacity cFil + parameter Modelica.Units.SI.SpecificHeatCapacity cFil "Specific heat capacity of the borehole filling material"; - parameter Modelica.SIunits.Density dFil(displayUnit="kg/m3") + parameter Modelica.Units.SI.Density dFil(displayUnit="kg/m3") "Density of the borehole filling material"; parameter Boolean steadyState = (cFil < Modelica.Constants.eps or dFil < Modelica.Constants.eps) "Flag, if true, then material is computed using steady-state heat conduction" annotation(Evaluate=true); - final parameter Modelica.SIunits.ThermalDiffusivity aFil = kFil/(dFil*cFil) + final parameter Modelica.Units.SI.ThermalDiffusivity aFil=kFil/(dFil*cFil) "Heat diffusion coefficient of the borehole filling material"; annotation ( defaultComponentPrefixes="parameter", defaultComponentName="filDat", Documentation( info=" -

                      This record is a template for the records in - -AixLib.Fluid.Geothermal.Borefields.Data.Filling.

                      -", +

                      This record is a template for the records in + + AixLib.Fluid.Geothermal.Borefields.Data.Filling.

                      + ", revisions=" -
                        -
                      • -July 15, 2018, by Michael Wetter:
                        -Revised implementation, added defaultComponentPrefixes and -defaultComponentName. -Corrected check of real variable against zero which is not allowed in Modelica. -
                      • -
                      • -June 28, 2018, by Damien Picard:
                        -First implementation. -
                      • -
                      -")); +
                        +
                      • + July 15, 2018, by Michael Wetter:
                        + Revised implementation, added defaultComponentPrefixes and + defaultComponentName. + Corrected check of real variable against zero which is not allowed in Modelica. +
                      • +
                      • + June 28, 2018, by Damien Picard:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end Template; diff --git a/AixLib/Fluid/Geothermal/Borefields/Data/Soil/SandStone.mo b/AixLib/Fluid/Geothermal/Borefields/Data/Soil/SandStone.mo index 673f76d8c3..c3f29228df 100644 --- a/AixLib/Fluid/Geothermal/Borefields/Data/Soil/SandStone.mo +++ b/AixLib/Fluid/Geothermal/Borefields/Data/Soil/SandStone.mo @@ -11,29 +11,30 @@ record SandStone defaultComponentName="soiDat", Documentation( info=" -

                      -This soil data record contains the heat transfer properties of sandstone. -

                      -", +

                      + This soil data record contains the heat transfer properties of sandstone. +

                      + ", revisions=" -
                        -
                      • -December 21, 2018, by Jianjun Hu:
                        -Changed the default properties based on Table 4 in the - -McQuay geothermal heat pump design manual. -See #1062. -
                      • - -
                      • -July 15, 2018, by Michael Wetter:
                        -Revised implementation, added defaultComponentPrefixes and -defaultComponentName. -
                      • -
                      • -June 28, 2018, by Damien Picard:
                        -First implementation. -
                      • -
                      -")); +
                        +
                      • + December 21, 2018, by Jianjun Hu:
                        + Changed the default properties based on Table 4 in the + + McQuay geothermal heat pump design manual. + See #1062. +
                      • + +
                      • + July 15, 2018, by Michael Wetter:
                        + Revised implementation, added defaultComponentPrefixes and + defaultComponentName. +
                      • +
                      • + June 28, 2018, by Damien Picard:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end SandStone; diff --git a/AixLib/Fluid/Geothermal/Borefields/Data/Soil/Template.mo b/AixLib/Fluid/Geothermal/Borefields/Data/Soil/Template.mo index 0e83dd33b0..782d091f1e 100644 --- a/AixLib/Fluid/Geothermal/Borefields/Data/Soil/Template.mo +++ b/AixLib/Fluid/Geothermal/Borefields/Data/Soil/Template.mo @@ -2,40 +2,41 @@ within AixLib.Fluid.Geothermal.Borefields.Data.Soil; record Template "Template for soil data records" extends Modelica.Icons.Record; - parameter Modelica.SIunits.ThermalConductivity kSoi + parameter Modelica.Units.SI.ThermalConductivity kSoi "Thermal conductivity of the soil material"; - parameter Modelica.SIunits.SpecificHeatCapacity cSoi + parameter Modelica.Units.SI.SpecificHeatCapacity cSoi "Specific heat capacity of the soil material"; - parameter Modelica.SIunits.Density dSoi(displayUnit="kg/m3") + parameter Modelica.Units.SI.Density dSoi(displayUnit="kg/m3") "Density of the soil material"; parameter Boolean steadyState = (cSoi < Modelica.Constants.eps or dSoi < Modelica.Constants.eps) "Flag, if true, then material is computed using steady-state heat conduction" annotation(Evaluate=true); - final parameter Modelica.SIunits.ThermalDiffusivity aSoi=kSoi/(dSoi*cSoi) + final parameter Modelica.Units.SI.ThermalDiffusivity aSoi=kSoi/(dSoi*cSoi) "Heat diffusion coefficient of the soil material"; annotation ( defaultComponentPrefixes="parameter", defaultComponentName="soiDat", Documentation( info=" -

                      -This record is a template for the records in - -AixLib.Fluid.Geothermal.Borefields.Data.Soil. -

                      -", +

                      + This record is a template for the records in + + AixLib.Fluid.Geothermal.Borefields.Data.Soil. +

                      + ", revisions=" -
                        -
                      • -July 15, 2018, by Michael Wetter:
                        -Revised implementation, added defaultComponentPrefixes and -defaultComponentName. -Corrected check of real variable against zero which is not allowed in Modelica. -
                      • -
                      • -June28, 2018, by Damien Picard:
                        -First implementation. -
                      • -
                      -")); +
                        +
                      • + July 15, 2018, by Michael Wetter:
                        + Revised implementation, added defaultComponentPrefixes and + defaultComponentName. + Corrected check of real variable against zero which is not allowed in Modelica. +
                      • +
                      • + June28, 2018, by Damien Picard:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end Template; diff --git a/AixLib/Fluid/Geothermal/Borefields/Examples/Borefields.mo b/AixLib/Fluid/Geothermal/Borefields/Examples/Borefields.mo index b67435d49e..ae55aaf354 100644 --- a/AixLib/Fluid/Geothermal/Borefields/Examples/Borefields.mo +++ b/AixLib/Fluid/Geothermal/Borefields/Examples/Borefields.mo @@ -5,11 +5,10 @@ model Borefields package Medium = AixLib.Media.Water; - parameter Modelica.SIunits.Time tLoaAgg=300 + parameter Modelica.Units.SI.Time tLoaAgg=300 "Time resolution of load aggregation"; - parameter Modelica.SIunits.Temperature TGro = 283.15 - "Ground temperature"; + parameter Modelica.Units.SI.Temperature TGro=283.15 "Ground temperature"; AixLib.Fluid.Geothermal.Borefields.TwoUTubes borFie2UTubPar( redeclare package Medium = Medium, borFieDat=borFie2UTubParDat, @@ -160,28 +159,29 @@ equation annotation (Line(points={{10,-60},{40,-60}}, color={0,127,255})); connect(TUTubOut.port_b, sin.ports[1]) annotation (Line(points={{60,-60},{70,-60}}, color={0,127,255})); - annotation (__Dymola_Commands(file="Resources/Scripts/Dymola/Fluid/Geothermal/Borefields/Examples/Borefields.mos" + annotation (__Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Geothermal/Borefields/Examples/Borefields.mos" "Simulate and plot"), Documentation(info=" -

                      -This example shows three different borefields, each with a different configuration -(single U-tube, double U-tube in parallel, and double U-tube in series) and compares -the thermal behaviour of the circulating fluid in each case. -

                      -", +

                      + This example shows three different borefields, each with a different configuration + (single U-tube, double U-tube in parallel, and double U-tube in series) and compares + the thermal behaviour of the circulating fluid in each case. +

                      + ", revisions=" -
                        -
                      • -April 8, 2021, by Michael Wetter:
                        -Added missing parameter keyword.
                        -For AixLib, issue 1464. -
                      • -
                      • -June 2018, by Damien Picard:
                        -First implementation. -
                      • -
                      -"), +
                        +
                      • + April 8, 2021, by Michael Wetter:
                        + Added missing parameter keyword.
                        + For IBPSA, issue 1464. +
                      • +
                      • + June 2018, by Damien Picard:
                        + First implementation. +
                      • +
                      + "), experiment( - StopTime=36000,Tolerance=1e-6)); + StopTime=36000,Tolerance=1e-6), + __Dymola_LockedEditing="Model from IBPSA"); end Borefields; diff --git a/AixLib/Fluid/Geothermal/Borefields/Examples/RectangularBorefield.mo b/AixLib/Fluid/Geothermal/Borefields/Examples/RectangularBorefield.mo index 58256eb5fa..8ba3cbcdf1 100644 --- a/AixLib/Fluid/Geothermal/Borefields/Examples/RectangularBorefield.mo +++ b/AixLib/Fluid/Geothermal/Borefields/Examples/RectangularBorefield.mo @@ -4,25 +4,25 @@ model RectangularBorefield "Example model of a rectangular borefield" package Medium = AixLib.Media.Water "Medium model"; - parameter Modelica.SIunits.Time tLoaAgg=300 + parameter Modelica.Units.SI.Time tLoaAgg=300 "Time resolution of load aggregation"; - parameter Modelica.SIunits.Temperature TGro = 283.15 - "Ground temperature"; - parameter Modelica.SIunits.Velocity v_nominal = 1 "Nominal velocity"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal = nBorHol*v_nominal*rTub^2*3.14*1000 - "Nominal mass flow rate"; - parameter Modelica.SIunits.Pressure dpBorFie_nominal = (hBor+(xBorFie+yBorFie)/2)*2 - "Pressure losses for the entire borefield"; - parameter Modelica.SIunits.Pressure dpHex_nominal = 10000 "Pressure drop heat exchanger"; - parameter Modelica.SIunits.Pressure dp_nominal = dpBorFie_nominal + dpHex_nominal - "Total pressure drop"; + parameter Modelica.Units.SI.Temperature TGro=283.15 "Ground temperature"; + parameter Modelica.Units.SI.Velocity v_nominal=1 "Nominal velocity"; + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=nBorHol*v_nominal* + rTub^2*3.14*1000 "Nominal mass flow rate"; + parameter Modelica.Units.SI.Pressure dpBorFie_nominal=(hBor + (xBorFie + + yBorFie)/2)*2 "Pressure losses for the entire borefield"; + parameter Modelica.Units.SI.Pressure dpHex_nominal=10000 + "Pressure drop heat exchanger"; + parameter Modelica.Units.SI.Pressure dp_nominal=dpBorFie_nominal + + dpHex_nominal "Total pressure drop"; - parameter Modelica.SIunits.Height hBor = 100 "Total height of the borehole"; - parameter Modelica.SIunits.Radius rTub = 0.02 "Outer radius of the tubes"; - parameter Modelica.SIunits.Length xBorFie = 10 "Borefield length"; - parameter Modelica.SIunits.Length yBorFie = 30 "Borefield width"; - parameter Modelica.SIunits.Length dBorHol = 5 "Distance between two boreholes"; + parameter Modelica.Units.SI.Height hBor=100 "Total height of the borehole"; + parameter Modelica.Units.SI.Radius rTub=0.02 "Outer radius of the tubes"; + parameter Modelica.Units.SI.Length xBorFie=10 "Borefield length"; + parameter Modelica.Units.SI.Length yBorFie=30 "Borefield width"; + parameter Modelica.Units.SI.Length dBorHol=5 "Distance between two boreholes"; final parameter Integer nXBorHol = integer((xBorFie+dBorHol)/dBorHol) "Number of boreholes in x-direction"; final parameter Integer nYBorHol = integer((yBorFie+dBorHol)/dBorHol) "Number of boreholes in y-direction"; @@ -75,7 +75,6 @@ model RectangularBorefield "Example model of a rectangular borefield" addPowerToMedium=false, use_inputFilter=false, energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyState, - massDynamics=Modelica.Fluid.Types.Dynamics.SteadyState, inputType=AixLib.Fluid.Types.InputType.Constant, m_flow_nominal=borFieDat.conDat.mBorFie_flow_nominal, allowFlowReversal=false) @@ -105,29 +104,30 @@ equation connect(pum.port_a, bou.ports[1]) annotation (Line(points={{0,0},{0,-60},{-40,-60}}, color={0,127,255})); annotation (Documentation(info=" -

                      -This example model illustrates how to configure the layout -of the boreholes for a rectangular borefield. -The configuration is -

                      -
                      -cooBor = {{dBorHol*mod((i-1),nXBorHol), dBorHol*floor((i-1)/nXBorHol)} for i in 1:nBorHol}
                      -
                      -

                      -where dBorHol is the distance between the boreholes, -nXBorHol is the number of boreholes in the x-direction, and -nBorHol is the total number of boreholes. -

                      -", revisions=" -
                        -
                      • -September 10, 2018, by Michael Wetter:
                        -First implementation. -
                      • -
                      -"), -__Dymola_Commands(file="Resources/Scripts/Dymola/Fluid/Geothermal/Borefields/Examples/RectangularBorefield.mos" +

                      + This example model illustrates how to configure the layout + of the boreholes for a rectangular borefield. + The configuration is +

                      +
                      + cooBor = {{dBorHol*mod((i-1),nXBorHol), dBorHol*floor((i-1)/nXBorHol)} for i in 1:nBorHol}
                      + 
                      +

                      + where dBorHol is the distance between the boreholes, + nXBorHol is the number of boreholes in the x-direction, and + nBorHol is the total number of boreholes. +

                      + ",revisions=" +
                        +
                      • + September 10, 2018, by Michael Wetter:
                        + First implementation. +
                      • +
                      + "), +__Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Geothermal/Borefields/Examples/RectangularBorefield.mos" "Simulate and plot"), experiment( - StopTime=2678400,Tolerance=1e-6)); + StopTime=2678400,Tolerance=1e-6), + __Dymola_LockedEditing="Model from IBPSA"); end RectangularBorefield; diff --git a/AixLib/Fluid/Geothermal/Borefields/OneUTube.mo b/AixLib/Fluid/Geothermal/Borefields/OneUTube.mo index 12614bdb7d..674eb6e7c2 100644 --- a/AixLib/Fluid/Geothermal/Borefields/OneUTube.mo +++ b/AixLib/Fluid/Geothermal/Borefields/OneUTube.mo @@ -7,29 +7,30 @@ model OneUTube annotation ( defaultComponentName="borFie", Documentation(info=" -

                      -This model simulates a borefield containing one or many single U-tube boreholes -using the parameters in the borFieDat record. -

                      -

                      -Heat transfer to the soil is modeled using only one borehole heat exchanger. The -fluid mass flow rate into the borehole is divided to reflect the per-borehole -fluid mass flow rate. The borehole model calculates the dynamics within the -borehole itself using an axial discretization and a resistance-capacitance -network for the internal thermal resistances between the individual pipes and -between each pipe and the borehole wall. -

                      -", revisions=" -
                        -
                      • -July 2018, by Alex Laferrière:
                        -Extended partial model and changed documentation to reflect the new approach -used by the borefield models. -
                      • -
                      • -July 2014, by Damien Picard:
                        -First implementation. -
                      • -
                      -")); +

                      + This model simulates a borefield containing one or many single U-tube boreholes + using the parameters in the borFieDat record. +

                      +

                      + Heat transfer to the soil is modeled using only one borehole heat exchanger. The + fluid mass flow rate into the borehole is divided to reflect the per-borehole + fluid mass flow rate. The borehole model calculates the dynamics within the + borehole itself using an axial discretization and a resistance-capacitance + network for the internal thermal resistances between the individual pipes and + between each pipe and the borehole wall. +

                      + ",revisions=" +
                        +
                      • + July 2018, by Alex Laferrière:
                        + Extended partial model and changed documentation to reflect the new approach + used by the borefield models. +
                      • +
                      • + July 2014, by Damien Picard:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end OneUTube; diff --git a/AixLib/Fluid/Geothermal/Borefields/TwoUTubes.mo b/AixLib/Fluid/Geothermal/Borefields/TwoUTubes.mo index bc05b29a7f..941f6ff92e 100644 --- a/AixLib/Fluid/Geothermal/Borefields/TwoUTubes.mo +++ b/AixLib/Fluid/Geothermal/Borefields/TwoUTubes.mo @@ -6,29 +6,30 @@ model TwoUTubes annotation ( defaultComponentName="borFie", Documentation(info=" -

                      -This model simulates a borefield containing one or many double U-tube boreholes -using the parameters in the borFieDat record. -

                      -

                      -Heat transfer to the soil is modeled using only one borehole heat exchanger. The -fluid mass flow rate into the borehole is divided to reflect the per-borehole -fluid mass flow rate. The borehole model calculates the dynamics within the -borehole itself using an axial discretization and a resistance-capacitance -network for the internal thermal resistances between the individual pipes and -between each pipe and the borehole wall. -

                      -", revisions=" -
                        -
                      • -July 2018, by Alex Laferrière:
                        -Extended partial model and changed documentation to reflect the new approach -used by the borefield models. -
                      • -
                      • -July 2014, by Damien Picard:
                        -First implementation. -
                      • -
                      -")); +

                      + This model simulates a borefield containing one or many double U-tube boreholes + using the parameters in the borFieDat record. +

                      +

                      + Heat transfer to the soil is modeled using only one borehole heat exchanger. The + fluid mass flow rate into the borehole is divided to reflect the per-borehole + fluid mass flow rate. The borehole model calculates the dynamics within the + borehole itself using an axial discretization and a resistance-capacitance + network for the internal thermal resistances between the individual pipes and + between each pipe and the borehole wall. +

                      + ",revisions=" +
                        +
                      • + July 2018, by Alex Laferrière:
                        + Extended partial model and changed documentation to reflect the new approach + used by the borefield models. +
                      • +
                      • + July 2014, by Damien Picard:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end TwoUTubes; diff --git a/AixLib/Fluid/Geothermal/Borefields/Types.mo b/AixLib/Fluid/Geothermal/Borefields/Types.mo index a3b97e61f2..48e1084eba 100644 --- a/AixLib/Fluid/Geothermal/Borefields/Types.mo +++ b/AixLib/Fluid/Geothermal/Borefields/Types.mo @@ -11,31 +11,32 @@ package Types "Package with type definitions" "Double U-tube configuration with pipes connected in series") "Enumaration to define the borehole configurations" annotation (Documentation(info=" -

                      -Enumeration that defines the pipe configuration in the borehole. -

                      -

                      -The following pipe configurations are available in this enumeration: -

                      - - - - - - -
                      EnumerationDescription
                      SingleUTubeSingle U-tube configuration
                      DoubleUTubeParallelDouble U-tube configuration with pipes connected in parallel
                      DoubleUTubeSeriesDouble U-tube configuration with pipes connected in series
                      -", - revisions=" -
                        -
                      • -July 15, 2018, by Michael Wetter:
                        -First implementation. -
                      • -
                      -")); - annotation (preferredView="info", Documentation(info="

                      - This package contains type definitions. + Enumeration that defines the pipe configuration in the borehole.

                      +

                      + The following pipe configurations are available in this enumeration: +

                      + + + + + + +
                      EnumerationDescription
                      SingleUTubeSingle U-tube configuration
                      DoubleUTubeParallelDouble U-tube configuration with pipes connected in parallel
                      DoubleUTubeSeriesDouble U-tube configuration with pipes connected in series
                      + ", + revisions=" +
                        +
                      • + July 15, 2018, by Michael Wetter:
                        + First implementation. +
                      • +
                      ")); + annotation (preferredView="info", Documentation(info=" +

                      + This package contains type definitions. +

                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end Types; diff --git a/AixLib/Fluid/Geothermal/Borefields/Validation/BaseClasses/ConstantHeatInjection_100Boreholes_Borefield.mo b/AixLib/Fluid/Geothermal/Borefields/Validation/BaseClasses/ConstantHeatInjection_100Boreholes_Borefield.mo index c9273ff5f8..b80e559329 100644 --- a/AixLib/Fluid/Geothermal/Borefields/Validation/BaseClasses/ConstantHeatInjection_100Boreholes_Borefield.mo +++ b/AixLib/Fluid/Geothermal/Borefields/Validation/BaseClasses/ConstantHeatInjection_100Boreholes_Borefield.mo @@ -10,16 +10,17 @@ defaultComponentPrefixes="parameter", defaultComponentName="borFieDat", Documentation( info=" -

                      -This record contains the borefield data of a field of 100 boreholes. -

                      -", +

                      + This record contains the borefield data of a field of 100 boreholes. +

                      + ", revisions=" -
                        -
                      • -May 27, 2018, by Massimo Cimmino:
                        -First implementation. -
                      • -
                      -")); +
                        +
                      • + May 27, 2018, by Massimo Cimmino:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end ConstantHeatInjection_100Boreholes_Borefield; diff --git a/AixLib/Fluid/Geothermal/Borefields/Validation/BaseClasses/ConstantHeatInjection_100Boreholes_Configuration.mo b/AixLib/Fluid/Geothermal/Borefields/Validation/BaseClasses/ConstantHeatInjection_100Boreholes_Configuration.mo index 4343d3151e..23b31b1b23 100644 --- a/AixLib/Fluid/Geothermal/Borefields/Validation/BaseClasses/ConstantHeatInjection_100Boreholes_Configuration.mo +++ b/AixLib/Fluid/Geothermal/Borefields/Validation/BaseClasses/ConstantHeatInjection_100Boreholes_Configuration.mo @@ -18,16 +18,17 @@ record ConstantHeatInjection_100Boreholes_Configuration defaultComponentName="conDat", Documentation( info=" -

                      -This record contains the configuration data of a field of 100 boreholes. -

                      -", +

                      + This record contains the configuration data of a field of 100 boreholes. +

                      + ", revisions=" -
                        -
                      • -May 27, 2018, by Massimo Cimmino:
                        -First implementation. -
                      • -
                      -")); +
                        +
                      • + May 27, 2018, by Massimo Cimmino:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end ConstantHeatInjection_100Boreholes_Configuration; diff --git a/AixLib/Fluid/Geothermal/Borefields/Validation/BaseClasses/ConstantHeatInjection_100Boreholes_Filling.mo b/AixLib/Fluid/Geothermal/Borefields/Validation/BaseClasses/ConstantHeatInjection_100Boreholes_Filling.mo index 973fbb31e0..fcf6452a0d 100644 --- a/AixLib/Fluid/Geothermal/Borefields/Validation/BaseClasses/ConstantHeatInjection_100Boreholes_Filling.mo +++ b/AixLib/Fluid/Geothermal/Borefields/Validation/BaseClasses/ConstantHeatInjection_100Boreholes_Filling.mo @@ -10,16 +10,17 @@ record ConstantHeatInjection_100Boreholes_Filling defaultComponentName="filDat", Documentation( info=" -

                      -This record contains the filling data of a field of 100 boreholes. -

                      -", +

                      + This record contains the filling data of a field of 100 boreholes. +

                      + ", revisions=" -
                        -
                      • -May 27, 2018, by Massimo Cimmino:
                        -First implementation. -
                      • -
                      -")); +
                        +
                      • + May 27, 2018, by Massimo Cimmino:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end ConstantHeatInjection_100Boreholes_Filling; diff --git a/AixLib/Fluid/Geothermal/Borefields/Validation/BaseClasses/ConstantHeatInjection_100Boreholes_Soil.mo b/AixLib/Fluid/Geothermal/Borefields/Validation/BaseClasses/ConstantHeatInjection_100Boreholes_Soil.mo index a8e1f2a833..82ada7607b 100644 --- a/AixLib/Fluid/Geothermal/Borefields/Validation/BaseClasses/ConstantHeatInjection_100Boreholes_Soil.mo +++ b/AixLib/Fluid/Geothermal/Borefields/Validation/BaseClasses/ConstantHeatInjection_100Boreholes_Soil.mo @@ -10,16 +10,17 @@ record ConstantHeatInjection_100Boreholes_Soil defaultComponentName="soiDat", Documentation( info=" -

                      -This record contains the soil data of a field of 100 boreholes. -

                      -", +

                      + This record contains the soil data of a field of 100 boreholes. +

                      + ", revisions=" -
                        -
                      • -May 27, 2018, by Massimo Cimmino:
                        -First implementation. -
                      • -
                      -")); +
                        +
                      • + May 27, 2018, by Massimo Cimmino:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end ConstantHeatInjection_100Boreholes_Soil; diff --git a/AixLib/Fluid/Geothermal/Borefields/Validation/BaseClasses/SandBox_Borefield.mo b/AixLib/Fluid/Geothermal/Borefields/Validation/BaseClasses/SandBox_Borefield.mo index 1f5564a1c8..a2961a9a0b 100644 --- a/AixLib/Fluid/Geothermal/Borefields/Validation/BaseClasses/SandBox_Borefield.mo +++ b/AixLib/Fluid/Geothermal/Borefields/Validation/BaseClasses/SandBox_Borefield.mo @@ -12,27 +12,28 @@ record SandBox_Borefield defaultComponentName="borFieDat", Documentation( info=" -

                      -This record contains the borefield data of the Beier et al. (2011) experiment. -

                      -

                      References

                      -

                      -Beier, R.A., Smith, M.D. and Spitler, J.D. 2011. Reference data sets for -vertical borehole ground heat exchanger models and thermal response test -analysis. Geothermics 40: 79-85. -

                      -", +

                      + This record contains the borefield data of the Beier et al. (2011) experiment. +

                      +

                      References

                      +

                      + Beier, R.A., Smith, M.D. and Spitler, J.D. 2011. Reference data sets for + vertical borehole ground heat exchanger models and thermal response test + analysis. Geothermics 40: 79-85. +

                      + ", revisions=" -
                        -
                      • -July 15, 2018, by Michael Wetter:
                        -Revised implementation, added defaultComponentPrefixes and -defaultComponentName. -
                      • -
                      • -June 28, 2018, by Damien Picard:
                        -First implementation. -
                      • -
                      -")); +
                        +
                      • + July 15, 2018, by Michael Wetter:
                        + Revised implementation, added defaultComponentPrefixes and + defaultComponentName. +
                      • +
                      • + June 28, 2018, by Damien Picard:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end SandBox_Borefield; diff --git a/AixLib/Fluid/Geothermal/Borefields/Validation/BaseClasses/SandBox_Configuration.mo b/AixLib/Fluid/Geothermal/Borefields/Validation/BaseClasses/SandBox_Configuration.mo index bea4be5e81..970d3c12d7 100644 --- a/AixLib/Fluid/Geothermal/Borefields/Validation/BaseClasses/SandBox_Configuration.mo +++ b/AixLib/Fluid/Geothermal/Borefields/Validation/BaseClasses/SandBox_Configuration.mo @@ -22,27 +22,28 @@ record SandBox_Configuration defaultComponentName="conDat", Documentation( info=" -

                      -This record contains the configuration data of the Beier et al. (2011) experiment. -

                      -

                      References

                      -

                      -Beier, R.A., Smith, M.D. and Spitler, J.D. 2011. Reference data sets for -vertical borehole ground heat exchanger models and thermal response test -analysis. Geothermics 40: 79-85. -

                      -", +

                      + This record contains the configuration data of the Beier et al. (2011) experiment. +

                      +

                      References

                      +

                      + Beier, R.A., Smith, M.D. and Spitler, J.D. 2011. Reference data sets for + vertical borehole ground heat exchanger models and thermal response test + analysis. Geothermics 40: 79-85. +

                      + ", revisions=" -
                        -
                      • -July 15, 2018, by Michael Wetter:
                        -Revised implementation, added defaultComponentPrefixes and -defaultComponentName. -
                      • -
                      • -June 28, 2018, by Damien Picard:
                        -First implementation. -
                      • -
                      -")); +
                        +
                      • + July 15, 2018, by Michael Wetter:
                        + Revised implementation, added defaultComponentPrefixes and + defaultComponentName. +
                      • +
                      • + June 28, 2018, by Damien Picard:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end SandBox_Configuration; diff --git a/AixLib/Fluid/Geothermal/Borefields/Validation/BaseClasses/SandBox_Filling.mo b/AixLib/Fluid/Geothermal/Borefields/Validation/BaseClasses/SandBox_Filling.mo index 18b7f5aa50..d4278a22b6 100644 --- a/AixLib/Fluid/Geothermal/Borefields/Validation/BaseClasses/SandBox_Filling.mo +++ b/AixLib/Fluid/Geothermal/Borefields/Validation/BaseClasses/SandBox_Filling.mo @@ -11,27 +11,28 @@ record SandBox_Filling defaultComponentName="filDat", Documentation( info=" -

                      -This record contains the filling data of the Beier et al. (2011) experiment. -

                      -

                      References

                      -

                      -Beier, R.A., Smith, M.D. and Spitler, J.D. 2011. Reference data sets for -vertical borehole ground heat exchanger models and thermal response test -analysis. Geothermics 40: 79-85. -

                      -", +

                      + This record contains the filling data of the Beier et al. (2011) experiment. +

                      +

                      References

                      +

                      + Beier, R.A., Smith, M.D. and Spitler, J.D. 2011. Reference data sets for + vertical borehole ground heat exchanger models and thermal response test + analysis. Geothermics 40: 79-85. +

                      + ", revisions=" -
                        -
                      • -July 15, 2018, by Michael Wetter:
                        -Revised implementation, added defaultComponentPrefixes and -defaultComponentName. -
                      • -
                      • -June 28, 2018, by Damien Picard:
                        -First implementation. -
                      • -
                      -")); +
                        +
                      • + July 15, 2018, by Michael Wetter:
                        + Revised implementation, added defaultComponentPrefixes and + defaultComponentName. +
                      • +
                      • + June 28, 2018, by Damien Picard:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end SandBox_Filling; diff --git a/AixLib/Fluid/Geothermal/Borefields/Validation/BaseClasses/SandBox_Soil.mo b/AixLib/Fluid/Geothermal/Borefields/Validation/BaseClasses/SandBox_Soil.mo index 75f19a80ea..53956299c3 100644 --- a/AixLib/Fluid/Geothermal/Borefields/Validation/BaseClasses/SandBox_Soil.mo +++ b/AixLib/Fluid/Geothermal/Borefields/Validation/BaseClasses/SandBox_Soil.mo @@ -11,27 +11,28 @@ record SandBox_Soil defaultComponentName="soiDat", Documentation( info=" -

                      -This record contains the soil data of the Beier et al. (2011) experiment. -

                      -

                      References

                      -

                      -Beier, R.A., Smith, M.D. and Spitler, J.D. 2011. Reference data sets for -vertical borehole ground heat exchanger models and thermal response test -analysis. Geothermics 40: 79-85. -

                      -", +

                      + This record contains the soil data of the Beier et al. (2011) experiment. +

                      +

                      References

                      +

                      + Beier, R.A., Smith, M.D. and Spitler, J.D. 2011. Reference data sets for + vertical borehole ground heat exchanger models and thermal response test + analysis. Geothermics 40: 79-85. +

                      + ", revisions=" -
                        -
                      • -July 15, 2018, by Michael Wetter:
                        -Revised implementation, added defaultComponentPrefixes and -defaultComponentName. -
                      • -
                      • -June 28, 2018, by Damien Picard:
                        -First implementation. -
                      • -
                      -")); +
                        +
                      • + July 15, 2018, by Michael Wetter:
                        + Revised implementation, added defaultComponentPrefixes and + defaultComponentName. +
                      • +
                      • + June 28, 2018, by Damien Picard:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end SandBox_Soil; diff --git a/AixLib/Fluid/Geothermal/Borefields/Validation/BaseClasses/package.mo b/AixLib/Fluid/Geothermal/Borefields/Validation/BaseClasses/package.mo index 67f1c2fc84..a6674f8225 100644 --- a/AixLib/Fluid/Geothermal/Borefields/Validation/BaseClasses/package.mo +++ b/AixLib/Fluid/Geothermal/Borefields/Validation/BaseClasses/package.mo @@ -1,6 +1,7 @@ within AixLib.Fluid.Geothermal.Borefields.Validation; package BaseClasses "Package with base classes for AixLib.Fluid.Geothermal.Borefields.Validation" extends Modelica.Icons.BasesPackage; + annotation (preferredView="info", Documentation(info="

                      This package contains base classes that are used to construct the models in diff --git a/AixLib/Fluid/Geothermal/Borefields/Validation/ConstantHeatInjection_100Boreholes.mo b/AixLib/Fluid/Geothermal/Borefields/Validation/ConstantHeatInjection_100Boreholes.mo index ed59f6bfd3..87cfeaa7b2 100644 --- a/AixLib/Fluid/Geothermal/Borefields/Validation/ConstantHeatInjection_100Boreholes.mo +++ b/AixLib/Fluid/Geothermal/Borefields/Validation/ConstantHeatInjection_100Boreholes.mo @@ -4,7 +4,7 @@ model ConstantHeatInjection_100Boreholes extends Modelica.Icons.Example; package Medium = AixLib.Media.Water; - parameter Modelica.SIunits.Temperature T_start = 273.15 + parameter Modelica.Units.SI.Temperature T_start=273.15 "Initial temperature of the soil"; AixLib.Fluid.Geothermal.Borefields.OneUTube borHol( @@ -22,7 +22,6 @@ model ConstantHeatInjection_100Boreholes addPowerToMedium=false, use_inputFilter=false, energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyState, - massDynamics=Modelica.Fluid.Types.Dynamics.SteadyState, m_flow_nominal=borFieDat.conDat.mBorFie_flow_nominal, nominalValuesDefineDefaultPressureCurve=true, inputType=AixLib.Fluid.Types.InputType.Constant) @@ -81,39 +80,39 @@ equation connect(hea.u, heaRat.y) annotation (Line(points={{-52,-14},{-60,-14},{-60,20}, {-67,20}}, color={0,0,127})); annotation (experiment(Tolerance=1e-6, StopTime=31536.0E+06), - __Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/Geothermal/Borefields/Validation/ConstantHeatInjection_100Boreholes.mos" + __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Geothermal/Borefields/Validation/ConstantHeatInjection_100Boreholes.mos" "Simulate and Plot"), Documentation(info=" -

                      -This validation case simulates a borefield of 100 boreholes on a square 10 by 10 -grid. -

                      -

                      -The heat injection rate in the borefield is constant and equal to -2*pi*kSoi*hBor*nBor. In this case, the borehole wall temperature -variation corresponds to the g-function of the borefield, as evaluated in - -AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.ThermalResponseFactors.Validation.GFunction_100boreholes. -

                      -", revisions=" -
                        -
                      • -April 8, 2021, by Michael Wetter:
                        -Added missing parameter keyword.
                        -For AixLib, issue 1464. -
                      • -
                      • -June 24, 2019, by Michael Wetter:
                        -Changed StopTime from integer to floating point.
                        -This is for -issue 1163. -
                      • -
                      • -May 27, 2019, by Massimo Cimmino:
                        -First implementation. -
                      • -
                      -"), - Diagram(coordinateSystem(extent={{-120,-120},{120,120}}))); +

                      + This validation case simulates a borefield of 100 boreholes on a square 10 by 10 + grid. +

                      +

                      + The heat injection rate in the borefield is constant and equal to + 2*pi*kSoi*hBor*nBor. In this case, the borehole wall temperature + variation corresponds to the g-function of the borefield, as evaluated in + + AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.ThermalResponseFactors.Validation.GFunction_100boreholes. +

                      + ",revisions=" +
                        +
                      • + April 8, 2021, by Michael Wetter:
                        + Added missing parameter keyword.
                        + For IBPSA, issue 1464. +
                      • +
                      • + June 24, 2019, by Michael Wetter:
                        + Changed StopTime from integer to floating point.
                        + This is for + issue 1163. +
                      • +
                      • + May 27, 2019, by Massimo Cimmino:
                        + First implementation. +
                      • +
                      + "), + Diagram(coordinateSystem(extent={{-120,-120},{120,120}})), + __Dymola_LockedEditing="Model from IBPSA"); end ConstantHeatInjection_100Boreholes; diff --git a/AixLib/Fluid/Geothermal/Borefields/Validation/Sandbox.mo b/AixLib/Fluid/Geothermal/Borefields/Validation/Sandbox.mo index 278e8bfe63..c6018b7616 100644 --- a/AixLib/Fluid/Geothermal/Borefields/Validation/Sandbox.mo +++ b/AixLib/Fluid/Geothermal/Borefields/Validation/Sandbox.mo @@ -3,7 +3,7 @@ model Sandbox "Validation of BorefieldOneUTube based on the experiment of Beier extends Modelica.Icons.Example; package Medium = AixLib.Media.Water; - parameter Modelica.SIunits.Temperature T_start = 273.15 + 22.09 + parameter Modelica.Units.SI.Temperature T_start=273.15 + 22.09 "Initial temperature of the sandbox"; // mSenFac is set to its numerical value because it is a constant in the borehole model. @@ -31,7 +31,6 @@ model Sandbox "Validation of BorefieldOneUTube based on the experiment of Beier addPowerToMedium=false, use_inputFilter=false, energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyState, - massDynamics=Modelica.Fluid.Types.Dynamics.SteadyState, m_flow_nominal=borFieDat.conDat.mBorFie_flow_nominal, nominalValuesDefineDefaultPressureCurve=true, inputType=AixLib.Fluid.Types.InputType.Constant) @@ -93,52 +92,52 @@ equation -14},{-52,-14}}, color={0,0,127})); annotation (experiment(Tolerance=1e-6, StopTime=186360), - __Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/Geothermal/Borefields/Validation/Sandbox.mos" + __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Geothermal/Borefields/Validation/Sandbox.mos" "Simulate and Plot"), Documentation(info=" -

                      -This validation case simulates the experiment of Beier et al. (2011). Measured -experimental data is taken from the reference. -

                      -

                      -The experiment consists in the injection of heat at an average rate of 1142 W -in a 18 m long borehole over a period 52 h. Dimensions and thermal properties -reported by Beier et al. (2011) are used in the model. The authors conducted -multiple independent measurements of soil thermal conductivity. The average of -reported values (2.88 W/m-K) is used here. Finally, the filling material thermal -capacity and density was not reported. Values were chosen from the estimated -volumetric heat capacity used by Pasquier and Marcotte (2014). -

                      -

                      -The construction of the borehole is non-conventional: the borehole is -contained within an aluminum pipe that acts as the borehole wall. As this -modifies the thermal resistances inside the borehole, the values evaluated by -the multipole method are modified to obtain the effective borehole thermal -resistance reported by Beier et al. (2011). -

                      References

                      -

                      -Beier, R.A., Smith, M.D. and Spitler, J.D. 2011. Reference data sets for -vertical borehole ground heat exchanger models and thermal response test -analysis. Geothermics 40: 79-85. -

                      -

                      -Pasquier, P., and Marcotte, D. 2014. Joint use of quasi-3D response model and -spectral method to simulate borehole heat exchanger. Geothermics 51: -281-299. -

                      -", revisions=" -
                        -
                      • -April 8, 2021, by Michael Wetter:
                        -Added missing parameter keyword.
                        -For AixLib, issue 1464. -
                      • -
                      • -July 18, 2018, by Massimo Cimmino:
                        -First implementation. -
                      • -
                      -"), - Diagram(coordinateSystem(extent={{-120,-120},{120,120}}))); +

                      + This validation case simulates the experiment of Beier et al. (2011). Measured + experimental data is taken from the reference. +

                      +

                      + The experiment consists in the injection of heat at an average rate of 1142 W + in a 18 m long borehole over a period 52 h. Dimensions and thermal properties + reported by Beier et al. (2011) are used in the model. The authors conducted + multiple independent measurements of soil thermal conductivity. The average of + reported values (2.88 W/m-K) is used here. Finally, the filling material thermal + capacity and density was not reported. Values were chosen from the estimated + volumetric heat capacity used by Pasquier and Marcotte (2014). +

                      +

                      + The construction of the borehole is non-conventional: the borehole is + contained within an aluminum pipe that acts as the borehole wall. As this + modifies the thermal resistances inside the borehole, the values evaluated by + the multipole method are modified to obtain the effective borehole thermal + resistance reported by Beier et al. (2011). +

                      References

                      +

                      + Beier, R.A., Smith, M.D. and Spitler, J.D. 2011. Reference data sets for + vertical borehole ground heat exchanger models and thermal response test + analysis. Geothermics 40: 79-85. +

                      +

                      + Pasquier, P., and Marcotte, D. 2014. Joint use of quasi-3D response model and + spectral method to simulate borehole heat exchanger. Geothermics 51: + 281-299. +

                      + ",revisions=" +
                        +
                      • + April 8, 2021, by Michael Wetter:
                        + Added missing parameter keyword.
                        + For IBPSA, issue 1464. +
                      • +
                      • + July 18, 2018, by Massimo Cimmino:
                        + First implementation. +
                      • +
                      + "), + Diagram(coordinateSystem(extent={{-120,-120},{120,120}})), + __Dymola_LockedEditing="Model from IBPSA"); end Sandbox; diff --git a/AixLib/Fluid/Geothermal/Borefields/package.mo b/AixLib/Fluid/Geothermal/Borefields/package.mo index fd2a949587..42f5d7d080 100644 --- a/AixLib/Fluid/Geothermal/Borefields/package.mo +++ b/AixLib/Fluid/Geothermal/Borefields/package.mo @@ -1,6 +1,7 @@ within AixLib.Fluid.Geothermal; package Borefields "Package with borefield models" extends Modelica.Icons.VariantsPackage; + annotation (preferredView="info", Documentation(info="

                      Package with models for geothermal borefields. diff --git a/AixLib/Fluid/Geothermal/package.mo b/AixLib/Fluid/Geothermal/package.mo index 05640866ef..31669910e3 100644 --- a/AixLib/Fluid/Geothermal/package.mo +++ b/AixLib/Fluid/Geothermal/package.mo @@ -1,6 +1,7 @@ within AixLib.Fluid; package Geothermal "Package with models for geothermal heat exchange" extends Modelica.Icons.VariantsPackage; + annotation (preferredView="info", Documentation(info="

                      Package with models for geothermal heat exchange. diff --git a/AixLib/Fluid/HeatExchangers/ActiveBeams/BaseClasses/Convector.mo b/AixLib/Fluid/HeatExchangers/ActiveBeams/BaseClasses/Convector.mo index 323a1a90c6..9ae1d7e03b 100644 --- a/AixLib/Fluid/HeatExchangers/ActiveBeams/BaseClasses/Convector.mo +++ b/AixLib/Fluid/HeatExchangers/ActiveBeams/BaseClasses/Convector.mo @@ -15,17 +15,14 @@ model Convector "Heat exchanger for the water stream" parameter Integer nBeams(min=1) "Number of beams in parallel"; - parameter Modelica.SIunits.Time tau = 30 + parameter Modelica.Units.SI.Time tau=30 "Time constant at nominal flow (if energyDynamics <> SteadyState)" - annotation (Dialog(tab = "Dynamics", group="Nominal condition")); + annotation (Dialog(tab="Dynamics", group="Nominal condition")); // Dynamics parameter Modelica.Fluid.Types.Dynamics energyDynamics=Modelica.Fluid.Types.Dynamics.DynamicFreeInitial "Type of energy balance: dynamic (3 initialization options) or steady state" - annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Equations")); - parameter Modelica.Fluid.Types.Dynamics massDynamics=energyDynamics - "Type of mass balance: dynamic (3 initialization options) or steady state" - annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Equations")); + annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Conservation equations")); // Initialization parameter Medium.AbsolutePressure p_start = Medium.p_default @@ -68,7 +65,6 @@ protected final tau=tau, final homotopyInitialization=homotopyInitialization, final energyDynamics=energyDynamics, - final massDynamics=massDynamics, final p_start=p_start, final T_start=T_start, final X_start=X_start, @@ -142,35 +138,42 @@ equation fillPattern=FillPattern.VerticalCylinder, fillColor={95,95,95})}), defaultComponentName="con", Documentation(info=" -

                      -In cooling mode, this model adds heat to the water stream. The heat added is equal to: -

                      -

                      -QBeam = Qrated fΔT fSA fW -

                      -

                      -In heating mode, the heat is removed from the water stream. -

                      -", revisions=" -
                        -
                      • -April 14, 2020, by Michael Wetter:
                        -Changed homotopyInitialization to a constant.
                        -This is for -AixLib, #1341. -
                      • -
                      • -November 2, 2016, by Michael Wetter:
                        -Made assignment of senTem.y final. -
                      • -
                      • -June 13, 2016, by Michael Wetter:
                        -Revised implementation. -
                      • -
                      • -May 20, 2016, by Alessandro Maccarini:
                        -First implementation. -
                      • -
                      -")); +

                      + In cooling mode, this model adds heat to the water stream. The heat added is equal to: +

                      +

                      + QBeam = Qrated fΔT fSA fW +

                      +

                      + In heating mode, the heat is removed from the water stream. +

                      + ",revisions=" +
                        +
                      • + March 3, 2022, by Michael Wetter:
                        + Removed massDynamics.
                        + This is for + issue 1542. +
                      • +
                      • + April 14, 2020, by Michael Wetter:
                        + Changed homotopyInitialization to a constant.
                        + This is for + IBPSA, #1341. +
                      • +
                      • + November 2, 2016, by Michael Wetter:
                        + Made assignment of senTem.y final. +
                      • +
                      • + June 13, 2016, by Michael Wetter:
                        + Revised implementation. +
                      • +
                      • + May 20, 2016, by Alessandro Maccarini:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end Convector; diff --git a/AixLib/Fluid/HeatExchangers/ActiveBeams/BaseClasses/DerivativesCubicSpline.mo b/AixLib/Fluid/HeatExchangers/ActiveBeams/BaseClasses/DerivativesCubicSpline.mo index 89f413b48a..36c92234b2 100644 --- a/AixLib/Fluid/HeatExchangers/ActiveBeams/BaseClasses/DerivativesCubicSpline.mo +++ b/AixLib/Fluid/HeatExchangers/ActiveBeams/BaseClasses/DerivativesCubicSpline.mo @@ -41,28 +41,28 @@ algorithm annotation ( defaultComponentName="cubSpl", Documentation(info=" -

                      -This model calculates the output based on the cubic hermite interpolation -and linear extrapolation of predefined values. The predefined values must create a monotone curve. -

                      -", revisions=" -
                        -
                      • -December 15, 2016, by Michael Wetter:
                        -Removed wrong annotations.
                        -This is for -#629. -
                      • -
                      • -June 13, 2016, by Michael Wetter:
                        -Revised implementation. -
                      • -
                      • -May 20, 2016, by Alessandro Maccarini:
                        -First implementation. -
                      • -
                      -"), +

                      + This model calculates the output based on the cubic hermite interpolation + and linear extrapolation of predefined values. The predefined values must create a monotone curve. +

                      + ",revisions=" +
                        +
                      • + December 15, 2016, by Michael Wetter:
                        + Removed wrong annotations.
                        + This is for + #629. +
                      • +
                      • + June 13, 2016, by Michael Wetter:
                        + Revised implementation. +
                      • +
                      • + May 20, 2016, by Alessandro Maccarini:
                        + First implementation. +
                      • +
                      + "), Icon(graphics={ Line(points={{46,-76},{46,58}}, color={192,192,192}), @@ -79,5 +79,6 @@ First implementation. points={{-82,-72},{-40,-72},{-18,-56},{-6,-32},{0,-8},{14,26},{32,46}, {46,50},{80,50}}, color={0,0,0}, - smooth=Smooth.Bezier)})); + smooth=Smooth.Bezier)}), + __Dymola_LockedEditing="Model from IBPSA"); end DerivativesCubicSpline; diff --git a/AixLib/Fluid/HeatExchangers/ActiveBeams/BaseClasses/Examples/Convector.mo b/AixLib/Fluid/HeatExchangers/ActiveBeams/BaseClasses/Examples/Convector.mo index a1bad3317c..6ac1d0a66d 100644 --- a/AixLib/Fluid/HeatExchangers/ActiveBeams/BaseClasses/Examples/Convector.mo +++ b/AixLib/Fluid/HeatExchangers/ActiveBeams/BaseClasses/Examples/Convector.mo @@ -49,27 +49,28 @@ equation annotation (experiment(Tolerance=1e-6, StopTime=10),__Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/HeatExchangers/ActiveBeams/BaseClasses/Examples/Convector.mos" "Simulate and plot"), Documentation(info=" -

                      -The example tests the implementation of - -AixLib.Fluid.HeatExchangers.ActiveBeams.BaseClasses.Convector. -The room air temperature and the water mass flow rate are constant while the air flow rate varys with a ramp. -

                      -", revisions=" -
                        -
                      • -May 15, 2019, by Jianjun Hu:
                        -Replaced fluid source. This is for - #1072. -
                      • -
                      • -June 13, 2016, by Michael Wetter:
                        -Revised implementation. -
                      • -
                      • -May 20, 2016, by Alessandro Maccarini:
                        -First implementation. -
                      • -
                      -")); +

                      + The example tests the implementation of + + AixLib.Fluid.HeatExchangers.ActiveBeams.BaseClasses.Convector. + The room air temperature and the water mass flow rate are constant while the air flow rate varys with a ramp. +

                      + ",revisions=" +
                        +
                      • + May 15, 2019, by Jianjun Hu:
                        + Replaced fluid source. This is for + #1072. +
                      • +
                      • + June 13, 2016, by Michael Wetter:
                        + Revised implementation. +
                      • +
                      • + May 20, 2016, by Alessandro Maccarini:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end Convector; diff --git a/AixLib/Fluid/HeatExchangers/ActiveBeams/BaseClasses/Examples/DerivateCubicSpline.mo b/AixLib/Fluid/HeatExchangers/ActiveBeams/BaseClasses/Examples/DerivateCubicSpline.mo index 480d0e32dc..d80055bdd7 100644 --- a/AixLib/Fluid/HeatExchangers/ActiveBeams/BaseClasses/Examples/DerivateCubicSpline.mo +++ b/AixLib/Fluid/HeatExchangers/ActiveBeams/BaseClasses/Examples/DerivateCubicSpline.mo @@ -2,7 +2,7 @@ within AixLib.Fluid.HeatExchangers.ActiveBeams.BaseClasses.Examples; model DerivateCubicSpline extends Modelica.Icons.Example; - Modelica.Blocks.Sources.Clock clock "Clock" + Modelica.Blocks.Sources.ContinuousClock clock "Clock" annotation (Placement(transformation(extent={{-60,-10},{-40,10}}))); AixLib.Fluid.HeatExchangers.ActiveBeams.BaseClasses.DerivativesCubicSpline cubSpl "Derivatives of cubic spline" @@ -13,23 +13,24 @@ equation annotation (experiment(Tolerance=1e-6, StopTime=1.0),__Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/HeatExchangers/ActiveBeams/BaseClasses/Examples/DerivateCubicSpline.mos" "Simulate and plot"), Documentation(info=" -

                      -The example tests the implementation of - -AixLib.Fluid.HeatExchangers.ActiveBeams.BaseClasses.DerivativesCubicSpline. -Default vectors are: x=[0,0.5,1] and y=[0,0.75,1]. -Input to the model is the simulation time. -

                      -", revisions=" -
                        -
                      • -June 13, 2016, by Michael Wetter:
                        -Revised implementation. -
                      • -
                      • -May 20, 2016, by Alessandro Maccarini:
                        -First implementation. -
                      • -
                      -")); +

                      + The example tests the implementation of + + AixLib.Fluid.HeatExchangers.ActiveBeams.BaseClasses.DerivativesCubicSpline. + Default vectors are: x=[0,0.5,1] and y=[0,0.75,1]. + Input to the model is the simulation time. +

                      + ",revisions=" +
                        +
                      • + June 13, 2016, by Michael Wetter:
                        + Revised implementation. +
                      • +
                      • + May 20, 2016, by Alessandro Maccarini:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end DerivateCubicSpline; diff --git a/AixLib/Fluid/HeatExchangers/ActiveBeams/BaseClasses/Examples/ModificationFactor.mo b/AixLib/Fluid/HeatExchangers/ActiveBeams/BaseClasses/Examples/ModificationFactor.mo index 335b18c3a6..bad97853f6 100644 --- a/AixLib/Fluid/HeatExchangers/ActiveBeams/BaseClasses/Examples/ModificationFactor.mo +++ b/AixLib/Fluid/HeatExchangers/ActiveBeams/BaseClasses/Examples/ModificationFactor.mo @@ -38,21 +38,22 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/HeatExchangers/ActiveBeams/BaseClasses/Examples/ModificationFactor.mos" "Simulate and plot"), Documentation(info=" -

                      -This example tests the implementation of - -AixLib.Fluid.HeatExchangers.ActiveBeams.BaseClasses.ModificationFactor. -

                      -", revisions=" -
                        -
                      • -June 13, 2016, by Michael Wetter:
                        -Revised implementation. -
                      • -
                      • -May 20, 2016, by Alessandro Maccarini:
                        -First implementation. -
                      • -
                      -")); +

                      + This example tests the implementation of + + AixLib.Fluid.HeatExchangers.ActiveBeams.BaseClasses.ModificationFactor. +

                      + ",revisions=" +
                        +
                      • + June 13, 2016, by Michael Wetter:
                        + Revised implementation. +
                      • +
                      • + May 20, 2016, by Alessandro Maccarini:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end ModificationFactor; diff --git a/AixLib/Fluid/HeatExchangers/ActiveBeams/BaseClasses/ModificationFactor.mo b/AixLib/Fluid/HeatExchangers/ActiveBeams/BaseClasses/ModificationFactor.mo index eb6ac25bd3..45ef406346 100644 --- a/AixLib/Fluid/HeatExchangers/ActiveBeams/BaseClasses/ModificationFactor.mo +++ b/AixLib/Fluid/HeatExchangers/ActiveBeams/BaseClasses/ModificationFactor.mo @@ -105,30 +105,31 @@ equation {60,-40},{60,-2.8},{64,-2.8}}, color={0,0,127})); annotation ( defaultComponentName="mod", Documentation(info=" -

                      -This model determines the three modification factors described in - -AixLib.Fluid.HeatExchangers.ActiveBeams.UsersGuide -by comparing the actual values of air mass flow rate, -water mass flow rate and room-water temperature difference with the nominal values. -The three modification factors are then multiplied. -Input to this model are the total mass flow rates of all parallel beams combined. -

                      -", revisions=" -
                        -
                      • -June 13, 2016, by Michael Wetter:
                        -Revised implementation. -
                      • -
                      • -May 20, 2016, by Alessandro Maccarini:
                        -First implementation. -
                      • -
                      -"), +

                      + This model determines the three modification factors described in + + AixLib.Fluid.HeatExchangers.ActiveBeams.UsersGuide + by comparing the actual values of air mass flow rate, + water mass flow rate and room-water temperature difference with the nominal values. + The three modification factors are then multiplied. + Input to this model are the total mass flow rates of all parallel beams combined. +

                      + ",revisions=" +
                        +
                      • + June 13, 2016, by Michael Wetter:
                        + Revised implementation. +
                      • +
                      • + May 20, 2016, by Alessandro Maccarini:
                        + First implementation. +
                      • +
                      + "), Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100, 100}}), graphics={Text( extent={{100,100},{-100,-100}}, - lineColor={0,0,0}, - textString="f")})); + textColor={0,0,0}, + textString="f")}), + __Dymola_LockedEditing="Model from IBPSA"); end ModificationFactor; diff --git a/AixLib/Fluid/HeatExchangers/ActiveBeams/Cooling.mo b/AixLib/Fluid/HeatExchangers/ActiveBeams/Cooling.mo index 0850da7e57..c262a3bd36 100644 --- a/AixLib/Fluid/HeatExchangers/ActiveBeams/Cooling.mo +++ b/AixLib/Fluid/HeatExchangers/ActiveBeams/Cooling.mo @@ -28,9 +28,9 @@ model Cooling "Active beam unit for cooling" "= true to allow flow reversal in air circuit, false restricts to design direction (port_a -> port_b)" annotation(Dialog(tab="Assumptions"), Evaluate=true); - parameter Modelica.SIunits.Time tau = 30 + parameter Modelica.Units.SI.Time tau=30 "Time constant at nominal flow (if energyDynamics <> SteadyState)" - annotation (Dialog(tab = "Dynamics", group="Nominal condition")); + annotation (Dialog(tab="Dynamics", group="Nominal condition")); // Flow resistance parameter Boolean from_dpWat = false @@ -47,10 +47,7 @@ model Cooling "Active beam unit for cooling" // Dynamics parameter Modelica.Fluid.Types.Dynamics energyDynamics=Modelica.Fluid.Types.Dynamics.DynamicFreeInitial "Type of energy balance: dynamic (3 initialization options) or steady state" - annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Equations")); - parameter Modelica.Fluid.Types.Dynamics massDynamics=energyDynamics - "Type of mass balance: dynamic (3 initialization options) or steady state" - annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Equations")); + annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Conservation equations")); // Initialization parameter MediumWat.AbsolutePressure pWatCoo_start = MediumWat.p_default @@ -70,7 +67,7 @@ model Cooling "Active beam unit for cooling" // Diagnostics parameter Boolean show_T = false "= true, if actual temperature at port is computed" - annotation( + annotation ( Dialog(tab="Advanced", group="Diagnostics"), HideResult=true); @@ -108,23 +105,23 @@ model Cooling "Active beam unit for cooling" MediumWat.ThermodynamicState staWatCoo_a= MediumWat.setState_phX(watCoo_a.p, noEvent(actualStream(watCoo_a.h_outflow)), - noEvent(actualStream(watCoo_a.Xi_outflow))) if - show_T "Medium properties in port watCoo_a"; + noEvent(actualStream(watCoo_a.Xi_outflow))) + if show_T "Medium properties in port watCoo_a"; MediumWat.ThermodynamicState staWatCoo_b= MediumWat.setState_phX(watCoo_b.p, noEvent(actualStream(watCoo_b.h_outflow)), - noEvent(actualStream(watCoo_b.Xi_outflow))) if - show_T "Medium properties in port watCoo_b"; + noEvent(actualStream(watCoo_b.Xi_outflow))) + if show_T "Medium properties in port watCoo_b"; MediumAir.ThermodynamicState staAir_a= MediumAir.setState_phX(air_a.p, noEvent(actualStream(air_a.h_outflow)), - noEvent(actualStream(air_a.Xi_outflow))) if - show_T "Medium properties in port air_a"; + noEvent(actualStream(air_a.Xi_outflow))) + if show_T "Medium properties in port air_a"; MediumAir.ThermodynamicState staAir_b= MediumAir.setState_phX(air_b.p, noEvent(actualStream(air_b.h_outflow)), - noEvent(actualStream(air_b.Xi_outflow))) if - show_T "Medium properties in port air_b"; + noEvent(actualStream(air_b.Xi_outflow))) + if show_T "Medium properties in port air_b"; Modelica.Thermal.HeatTransfer.Sources.PrescribedHeatFlow heaToRoo( final alpha=0) @@ -135,11 +132,11 @@ model Cooling "Active beam unit for cooling" origin={0,-36}))); // Pressure drop - Modelica.SIunits.PressureDifference dpWatCoo(displayUnit="Pa") = watCoo_a.p - watCoo_b.p - "Pressure difference watCoo_a minus watCoo_b"; + Modelica.Units.SI.PressureDifference dpWatCoo(displayUnit="Pa") = watCoo_a.p + - watCoo_b.p "Pressure difference watCoo_a minus watCoo_b"; - Modelica.SIunits.PressureDifference dpAir(displayUnit="Pa") = air_a.p - air_b.p - "Pressure difference air_a minus air_b"; + Modelica.Units.SI.PressureDifference dpAir(displayUnit="Pa") = air_a.p - + air_b.p "Pressure difference air_a minus air_b"; FixedResistances.PressureDrop res( redeclare final package Medium = MediumAir, @@ -160,7 +157,6 @@ protected final deltaM=deltaMWat, final tau=tau, final energyDynamics=energyDynamics, - final massDynamics=massDynamics, final p_start=pWatCoo_start, final T_start=TWatCoo_start, final nBeams=nBeams) "Cooling beam" @@ -210,7 +206,7 @@ equation annotation (Line(points={{10,60},{140,60}}, color={0,127,255})); connect(conCoo.Q_flow, sum.u[1]) annotation (Line(points={{11,67},{20,67},{20, 30},{38,30}}, color={0,0,127})); - connect(senTemRooAir.T, conCoo.TRoo) annotation (Line(points={{-40,-40},{-50,-40}, + connect(senTemRooAir.T, conCoo.TRoo) annotation (Line(points={{-41,-40},{-50,-40}, {-50,54},{-12,54}}, color={0,0,127})); connect(air_a, res.port_a) @@ -260,7 +256,7 @@ equation fillPattern=FillPattern.Solid), Text( extent={{-149,141},{151,101}}, - lineColor={0,0,255}, + textColor={0,0,255}, fillPattern=FillPattern.HorizontalCylinder, fillColor={0,127,255}, textString="%name"), @@ -272,68 +268,75 @@ defaultComponentName="actBea", Diagram(coordinateSystem( preserveAspectRatio=false, extent={{-140,-120},{140,120}})), Documentation(info=" -

                      -Model of an active beam, based on the EnergyPlus beam model AirTerminal:SingleDuct:ConstantVolume:FourPipeBeam. -

                      -

                      -This model operates only in cooling mode. For a model that operates in both heating and cooling mode, -use -AixLib.Fluid.HeatExchangers.ActiveBeams.CoolingAndHeating. -

                      -

                      -For a description of the equations, see the - -User's Guide. -

                      -

                      -Performance data are available from - -AixLib.Fluid.HeatExchangers.ActiveBeams.Data. -

                      -

                      References

                      -
                        -
                      • -DOE(2015) EnergyPlus documentation v8.4.0 - Engineering Reference. -
                      • -
                      -", revisions=" -
                        -
                      • -March 30, 2021, by Michael Wetter:
                        -Added annotation HideResult=true.
                        -This is for -AixLib, #1459. -
                      • -
                      • -April 14, 2020, by Michael Wetter:
                        -Changed homotopyInitialization to a constant.
                        -This is for -AixLib, #1341. -
                      • -
                      • -January 18, 2019, by Jianjun Hu:
                        -Limited the media choice. -See #1050. -
                      • -
                      • -November 3, 2016, by Michael Wetter:
                        -Set final alpha=0 for prescribed heat flow rate. -
                      • -
                      • -September 17, 2016, by Michael Wetter:
                        -Corrected wrong annotation to avoid an error in the pedantic model check -in Dymola 2017 FD01 beta2.
                        -This is for -issue 557. -
                      • -
                      • -June 14, 2016, by Michael Wetter:
                        -Revised implementation. -
                      • -
                      • -May 20, 2016, by Alessandro Maccarini:
                        -First implementation. -
                      • -
                      -")); +

                      + Model of an active beam, based on the EnergyPlus beam model AirTerminal:SingleDuct:ConstantVolume:FourPipeBeam. +

                      +

                      + This model operates only in cooling mode. For a model that operates in both heating and cooling mode, + use + AixLib.Fluid.HeatExchangers.ActiveBeams.CoolingAndHeating. +

                      +

                      + For a description of the equations, see the + + User's Guide. +

                      +

                      + Performance data are available from + + AixLib.Fluid.HeatExchangers.ActiveBeams.Data. +

                      +

                      References

                      +
                        +
                      • + DOE(2015) EnergyPlus documentation v8.4.0 - Engineering Reference. +
                      • +
                      + ",revisions=" +
                        +
                      • + March 3, 2022, by Michael Wetter:
                        + Removed massDynamics.
                        + This is for + issue 1542. +
                      • +
                      • + March 30, 2021, by Michael Wetter:
                        + Added annotation HideResult=true.
                        + This is for + IBPSA, #1459. +
                      • +
                      • + April 14, 2020, by Michael Wetter:
                        + Changed homotopyInitialization to a constant.
                        + This is for + IBPSA, #1341. +
                      • +
                      • + January 18, 2019, by Jianjun Hu:
                        + Limited the media choice. + See #1050. +
                      • +
                      • + November 3, 2016, by Michael Wetter:
                        + Set final alpha=0 for prescribed heat flow rate. +
                      • +
                      • + September 17, 2016, by Michael Wetter:
                        + Corrected wrong annotation to avoid an error in the pedantic model check + in Dymola 2017 FD01 beta2.
                        + This is for + issue 557. +
                      • +
                      • + June 14, 2016, by Michael Wetter:
                        + Revised implementation. +
                      • +
                      • + May 20, 2016, by Alessandro Maccarini:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end Cooling; diff --git a/AixLib/Fluid/HeatExchangers/ActiveBeams/CoolingAndHeating.mo b/AixLib/Fluid/HeatExchangers/ActiveBeams/CoolingAndHeating.mo index 68fa4f795b..a292356800 100644 --- a/AixLib/Fluid/HeatExchangers/ActiveBeams/CoolingAndHeating.mo +++ b/AixLib/Fluid/HeatExchangers/ActiveBeams/CoolingAndHeating.mo @@ -33,17 +33,17 @@ model CoolingAndHeating "Active beam unit for heating and cooling" MediumWat.ThermodynamicState staHea_a= MediumWat.setState_phX(watHea_a.p, noEvent(actualStream(watHea_a.h_outflow)), - noEvent(actualStream(watHea_a.Xi_outflow))) if - show_T "Medium properties in port watHea_a"; + noEvent(actualStream(watHea_a.Xi_outflow))) + if show_T "Medium properties in port watHea_a"; MediumWat.ThermodynamicState staHea_b= MediumWat.setState_phX(watHea_b.p, noEvent(actualStream(watHea_b.h_outflow)), - noEvent(actualStream(watHea_b.Xi_outflow))) if - show_T "Medium properties in port watHea_b"; + noEvent(actualStream(watHea_b.Xi_outflow))) + if show_T "Medium properties in port watHea_b"; - Modelica.SIunits.PressureDifference dpWatHea(displayUnit="Pa") = watHea_a.p - watHea_b.p - "Pressure difference between watHea_a and watHea_b"; + Modelica.Units.SI.PressureDifference dpWatHea(displayUnit="Pa") = watHea_a.p + - watHea_b.p "Pressure difference between watHea_a and watHea_b"; protected BaseClasses.Convector conHea( @@ -58,7 +58,6 @@ protected final deltaM=deltaMWat, final tau=tau, final energyDynamics=energyDynamics, - final massDynamics=massDynamics, final p_start=pWatHea_start, final T_start=TWatHea_start, final nBeams=nBeams) "Heating beam" @@ -72,14 +71,13 @@ initial equation assert(perHea.dT.r_dT[1]<=0.000001 and perHea.dT.f[1]<=0.00001, "Performance curve perHea.dT must pass through (0,0)."); - equation connect(conHea.port_b, watHea_b) annotation (Line(points={{10,0},{140,0}}, color={0,127,255})); connect(conHea.Q_flow, sum.u[2]) annotation (Line(points={{11,7},{20,7},{20,30},{38,30}}, color={0,0,127})); connect(conHea.TRoo, senTemRooAir.T) annotation (Line(points={{-12,-6},{-26,-6}, - {-50,-6},{-50,-40},{-40,-40}}, color={0,0,127})); + {-50,-6},{-50,-40},{-41,-40}}, color={0,0,127})); connect(watHea_a, conHea.port_a) annotation (Line(points={{-140,0},{-76,0},{-10,0}}, color={0,127,255})); connect(conHea.mAir_flow, senFloAir.m_flow) annotation (Line(points={{-12,4}, @@ -112,33 +110,34 @@ equation Line(points={{-112,0},{-66,0},{-82,10}}, color={255,0,0}), Line(points={{-66,0},{-82,-8}}, color={255,0,0})}), Documentation(info=" -

                      -This model is identical to - -AixLib.Fluid.HeatExchangers.ActiveBeams.Cooling, -except that an additional water stream and convector is added to allow for heating -in addition to cooling. -

                      -

                      -For a description of the equations, see the - -User's Guide. -

                      -

                      -Performance data are available from - -AixLib.Fluid.HeatExchangers.ActiveBeams.Data. -

                      -", revisions=" -
                        -
                      • -June 14, 2016, by Michael Wetter:
                        -Revised implementation. -
                      • -
                      • -May 20, 2016, by Alessandro Maccarini:
                        -First implementation. -
                      • -
                      -")); +

                      + This model is identical to + + AixLib.Fluid.HeatExchangers.ActiveBeams.Cooling, + except that an additional water stream and convector is added to allow for heating + in addition to cooling. +

                      +

                      + For a description of the equations, see the + + User's Guide. +

                      +

                      + Performance data are available from + + AixLib.Fluid.HeatExchangers.ActiveBeams.Data. +

                      + ",revisions=" +
                        +
                      • + June 14, 2016, by Michael Wetter:
                        + Revised implementation. +
                      • +
                      • + May 20, 2016, by Alessandro Maccarini:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end CoolingAndHeating; diff --git a/AixLib/Fluid/HeatExchangers/ActiveBeams/Data/BaseClasses/AirFlow.mo b/AixLib/Fluid/HeatExchangers/ActiveBeams/Data/BaseClasses/AirFlow.mo index e1a91668f9..5603d3f188 100644 --- a/AixLib/Fluid/HeatExchangers/ActiveBeams/Data/BaseClasses/AirFlow.mo +++ b/AixLib/Fluid/HeatExchangers/ActiveBeams/Data/BaseClasses/AirFlow.mo @@ -7,27 +7,28 @@ record AirFlow "Record for primary air parameters" "Normalized performance factor at these flow rates"; annotation (Documentation(info=" -

                      -Data record for performance data that describe the air volume flow rate versus -the change in the rate of heating or cooling. -

                      -

                      -The normamlized volume flow rate rV must be strictly increasing, i.e., -rVi < rVi+1. -Both vectors, rV and f -must have the same size. -

                      -", +

                      + Data record for performance data that describe the air volume flow rate versus + the change in the rate of heating or cooling. +

                      +

                      + The normamlized volume flow rate rV must be strictly increasing, i.e., + rVi < rVi+1. + Both vectors, rV and f + must have the same size. +

                      + ", revisions=" -
                        -
                      • -June 13, 2016, by Michael Wetter:
                        -Revised implementation. -
                      • -
                      • -May 20, 2016, by Alessandro Maccarini:
                        -First implementation. -
                      • -
                      -")); +
                        +
                      • + June 13, 2016, by Michael Wetter:
                        + Revised implementation. +
                      • +
                      • + May 20, 2016, by Alessandro Maccarini:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end AirFlow; diff --git a/AixLib/Fluid/HeatExchangers/ActiveBeams/Data/BaseClasses/TemperatureDifference.mo b/AixLib/Fluid/HeatExchangers/ActiveBeams/Data/BaseClasses/TemperatureDifference.mo index 9fd1a5ecf9..4b276b0858 100644 --- a/AixLib/Fluid/HeatExchangers/ActiveBeams/Data/BaseClasses/TemperatureDifference.mo +++ b/AixLib/Fluid/HeatExchangers/ActiveBeams/Data/BaseClasses/TemperatureDifference.mo @@ -3,49 +3,50 @@ record TemperatureDifference "Record for temperature difference" extends Modelica.Icons.Record; parameter Real r_dT[:](each min=0, each final unit="1") "Normalized temperature difference, e.g., temperature difference at - user-selected operating points divided by nominal temperature difference. - Must be positive."; + user-selected operating points divided by nominal temperature difference. + Must be positive."; parameter Real f[size(r_dT, 1)](each min=0, each final unit="1") "Normalized performance factor at these normalized temperature differences"; annotation (Documentation(info=" -

                      -Data record for performance data that describe the normalized -temperature difference -versus the change in the rate of heating or cooling. -The normalized temperature difference is defined as -

                      -

                      -rΔTi= -ΔTi ⁄ ΔTnominal -= -(Twi-Tz) -⁄ -(Tw,nominal-Tz), -

                      -

                      -where -Twi is the water inlet temperature, -Tz is the zone air temperature and -Tw,nominal is the nominal water inlet temperature. -

                      -

                      -The normalized temperature difference rΔT must be strictly increasing, i.e., -rΔTi < rΔTi+1. -Both vectors, rΔT and f -must have the same size. -

                      -", +

                      + Data record for performance data that describe the normalized + temperature difference + versus the change in the rate of heating or cooling. + The normalized temperature difference is defined as +

                      +

                      + rΔTi= + ΔTi ⁄ ΔTnominal + = + (Twi-Tz) + ⁄ + (Tw,nominal-Tz), +

                      +

                      + where + Twi is the water inlet temperature, + Tz is the zone air temperature and + Tw,nominal is the nominal water inlet temperature. +

                      +

                      + The normalized temperature difference rΔT must be strictly increasing, i.e., + rΔTi < rΔTi+1. + Both vectors, rΔT and f + must have the same size. +

                      + ", revisions=" -
                        -
                      • -June 13, 2016, by Michael Wetter:
                        -Revised implementation. -
                      • -
                      • -May 20, 2016, by Alessandro Maccarini:
                        -First implementation. -
                      • -
                      -")); +
                        +
                      • + June 13, 2016, by Michael Wetter:
                        + Revised implementation. +
                      • +
                      • + May 20, 2016, by Alessandro Maccarini:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end TemperatureDifference; diff --git a/AixLib/Fluid/HeatExchangers/ActiveBeams/Data/BaseClasses/WaterFlow.mo b/AixLib/Fluid/HeatExchangers/ActiveBeams/Data/BaseClasses/WaterFlow.mo index 970b3be009..5cfbf4c57b 100644 --- a/AixLib/Fluid/HeatExchangers/ActiveBeams/Data/BaseClasses/WaterFlow.mo +++ b/AixLib/Fluid/HeatExchangers/ActiveBeams/Data/BaseClasses/WaterFlow.mo @@ -7,27 +7,28 @@ record WaterFlow "Record for water parameters" "Normalized performance factor at these flow rates"; annotation (Documentation(info=" -

                      -Data record for performance data that describe the water volume flow rate versus -the change in the rate of heating or cooling. -

                      -

                      -The normamlized volume flow rate rV must be strictly increasing, i.e., -rVi < rVi+1. -Both vectors, rV and f -must have the same size. -

                      -", +

                      + Data record for performance data that describe the water volume flow rate versus + the change in the rate of heating or cooling. +

                      +

                      + The normamlized volume flow rate rV must be strictly increasing, i.e., + rVi < rVi+1. + Both vectors, rV and f + must have the same size. +

                      + ", revisions=" -
                        -
                      • -June 13, 2016, by Michael Wetter:
                        -Revised implementation. -
                      • -
                      • -May 20, 2016, by Alessandro Maccarini:
                        -First implementation. -
                      • -
                      -")); +
                        +
                      • + June 13, 2016, by Michael Wetter:
                        + Revised implementation. +
                      • +
                      • + May 20, 2016, by Alessandro Maccarini:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end WaterFlow; diff --git a/AixLib/Fluid/HeatExchangers/ActiveBeams/Data/Generic.mo b/AixLib/Fluid/HeatExchangers/ActiveBeams/Data/Generic.mo index 616cef1ca6..e86a8bf560 100644 --- a/AixLib/Fluid/HeatExchangers/ActiveBeams/Data/Generic.mo +++ b/AixLib/Fluid/HeatExchangers/ActiveBeams/Data/Generic.mo @@ -15,43 +15,43 @@ record Generic "Generic data record for active beam" f={0,0.5,1}) "Performance data for normalized temperature difference room minus water inlet"; - parameter Modelica.SIunits.MassFlowRate mAir_flow_nominal + parameter Modelica.Units.SI.MassFlowRate mAir_flow_nominal "Nominal air mass flow rate per beam" annotation (Dialog(group="Nominal condition")); - parameter Modelica.SIunits.MassFlowRate mWat_flow_nominal + parameter Modelica.Units.SI.MassFlowRate mWat_flow_nominal "Nominal water mass flow rate per beam" annotation (Dialog(group="Nominal condition")); - parameter Modelica.SIunits.PressureDifference dpWat_nominal(displayUnit="Pa") + parameter Modelica.Units.SI.PressureDifference dpWat_nominal(displayUnit="Pa") "Water-side nominal pressure drop per beam" annotation (Dialog(group="Nominal condition")); - parameter Modelica.SIunits.PressureDifference dpAir_nominal(displayUnit="Pa") + parameter Modelica.Units.SI.PressureDifference dpAir_nominal(displayUnit="Pa") "Air-side nominal pressure drop" annotation (Dialog(group="Nominal condition")); - parameter Modelica.SIunits.TemperatureDifference dT_nominal + parameter Modelica.Units.SI.TemperatureDifference dT_nominal "Nominal temperature difference water inlet minus room air" annotation (Dialog(group="Nominal condition")); - parameter Modelica.SIunits.HeatFlowRate Q_flow_nominal - "Nominal capacity per beam" - annotation (Dialog(group="Nominal condition")); + parameter Modelica.Units.SI.HeatFlowRate Q_flow_nominal + "Nominal capacity per beam" annotation (Dialog(group="Nominal condition")); annotation (defaultComponentName="per", Documentation(revisions=" -
                        -
                      • -June 13, 2016, by Michael Wetter:
                        -Revised implementation. -
                      • -
                      • -May 20, 2016, by Alessandro Maccarini:
                        -First implementation. -
                      • -
                      -", info=" -

                      -Performance data for a generic active beam. -

                      -")); +
                        +
                      • + June 13, 2016, by Michael Wetter:
                        + Revised implementation. +
                      • +
                      • + May 20, 2016, by Alessandro Maccarini:
                        + First implementation. +
                      • +
                      + ",info=" +

                      + Performance data for a generic active beam. +

                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end Generic; diff --git a/AixLib/Fluid/HeatExchangers/ActiveBeams/Data/Trox.mo b/AixLib/Fluid/HeatExchangers/ActiveBeams/Data/Trox.mo index 97d8136ebf..061a026c10 100644 --- a/AixLib/Fluid/HeatExchangers/ActiveBeams/Data/Trox.mo +++ b/AixLib/Fluid/HeatExchangers/ActiveBeams/Data/Trox.mo @@ -21,21 +21,21 @@ package Trox "Performance data for Trox" "Performance data for Trox DID 632A for cooling mode" annotation ( Documentation(revisions=" -
                        -
                      • -June 13, 2016, by Michael Wetter:
                        -Revised implementation. -
                      • -
                      • -May 20, 2016, by Alessandro Maccarini:
                        -First implementation. -
                      • -
                      -", info=" -

                      -Performance data for Trox active beam for cooling mode. -

                      -")); +
                        +
                      • + June 13, 2016, by Michael Wetter:
                        + Revised implementation. +
                      • +
                      • + May 20, 2016, by Alessandro Maccarini:
                        + First implementation. +
                      • +
                      + ",info=" +

                      + Performance data for Trox active beam for cooling mode. +

                      + ")); record DID632A_nozzleH_length6ft_heating = @@ -59,26 +59,27 @@ Performance data for Trox active beam for cooling mode. "Performance data for Trox DID 632A for heating mode" annotation ( Documentation(revisions=" -
                        -
                      • -June 13, 2016, by Michael Wetter:
                        -Revised implementation. -
                      • -
                      • -May 20, 2016, by Alessandro Maccarini:
                        -First implementation. -
                      • -
                      -", info=" -

                      -Performance data for Trox active beam for heating mode. -

                      -")); +
                        +
                      • + June 13, 2016, by Michael Wetter:
                        + Revised implementation. +
                      • +
                      • + May 20, 2016, by Alessandro Maccarini:
                        + First implementation. +
                      • +
                      + ",info=" +

                      + Performance data for Trox active beam for heating mode. +

                      + ")); annotation (Documentation(revisions="", info=" -

                      -Package with performance data for active beams from Trox. -

                      -")); +

                      + Package with performance data for active beams from Trox. +

                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end Trox; diff --git a/AixLib/Fluid/HeatExchangers/ActiveBeams/Examples/CoolingAndHeating.mo b/AixLib/Fluid/HeatExchangers/ActiveBeams/Examples/CoolingAndHeating.mo index 108f027656..3b50e9ef53 100644 --- a/AixLib/Fluid/HeatExchangers/ActiveBeams/Examples/CoolingAndHeating.mo +++ b/AixLib/Fluid/HeatExchangers/ActiveBeams/Examples/CoolingAndHeating.mo @@ -62,7 +62,7 @@ model CoolingAndHeating nPorts=1) "Sink hot water" annotation (Placement(transformation(extent={{100,50},{80,70}}))); Modelica.Blocks.Sources.Sine sine( - freqHz=1/86400, + f=1/86400, amplitude=1, phase=-1.5707963267949) "Source for thermal loads" annotation (Placement(transformation(extent={{-110,-70},{-90,-50}}))); @@ -141,36 +141,37 @@ equation "Simulate and plot"), Icon(coordinateSystem(extent={{-120,-120},{120,120}})), Documentation(info=" -

                      -This example tests the implementation of - -AixLib.Fluid.HeatExchangers.ActiveBeams.CoolingAndHeating -for both heating and cooling mode. An air volume is maintained at a temperature between 22°C and -25°C by two controllers that regulate the water flow rate in the active beam. -

                      -", revisions=" -
                        -
                      • -May 15, 2019, by Jianjun Hu:
                        -Replaced fluid source. This is for - #1072. -
                      • -
                      • -June 25, 2016, by Michael Wetter:
                        -Changed medium start temperature to avoid conflicting -start values of the same precedence in Dymola 2016. -See - -issue 485. -
                      • -
                      • -June 14, 2016, by Michael Wetter:
                        -Revised implementation. -
                      • -
                      • -May 20, 2016, by Alessandro Maccarini:
                        -First implementation. -
                      • -
                      -")); +

                      + This example tests the implementation of + + AixLib.Fluid.HeatExchangers.ActiveBeams.CoolingAndHeating + for both heating and cooling mode. An air volume is maintained at a temperature between 22°C and + 25°C by two controllers that regulate the water flow rate in the active beam. +

                      + ",revisions=" +
                        +
                      • + May 15, 2019, by Jianjun Hu:
                        + Replaced fluid source. This is for + #1072. +
                      • +
                      • + June 25, 2016, by Michael Wetter:
                        + Changed medium start temperature to avoid conflicting + start values of the same precedence in Dymola 2016. + See + + issue 485. +
                      • +
                      • + June 14, 2016, by Michael Wetter:
                        + Revised implementation. +
                      • +
                      • + May 20, 2016, by Alessandro Maccarini:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end CoolingAndHeating; diff --git a/AixLib/Fluid/HeatExchangers/ActiveBeams/Examples/CoolingOnly.mo b/AixLib/Fluid/HeatExchangers/ActiveBeams/Examples/CoolingOnly.mo index d2a6411f4d..a29b199e37 100644 --- a/AixLib/Fluid/HeatExchangers/ActiveBeams/Examples/CoolingOnly.mo +++ b/AixLib/Fluid/HeatExchangers/ActiveBeams/Examples/CoolingOnly.mo @@ -52,7 +52,7 @@ model CoolingOnly "Room air temperature sensor" annotation (Placement(transformation(extent={{-20,-40},{-40,-20}}))); Modelica.Blocks.Sources.Sine sine( - freqHz=1/86400, + f=1/86400, amplitude=1, phase=-1.5707963267949) "Source for thermal loads" annotation (Placement(transformation(extent={{-110,-70},{-90,-50}}))); @@ -108,27 +108,28 @@ equation "Simulate and plot"), Icon(coordinateSystem(extent={{-120,-120},{120,120}})), Documentation(info=" -

                      -This example tests the implementation of -AixLib.Fluid.HeatExchangers.ActiveBeams.Cooling. -An air volume is maintained at a temperature below 25°C by a controller -that regulates the water flow rate in the active beam. -

                      -", revisions=" -
                        -
                      • -May 15, 2019, by Jianjun Hu:
                        -Replaced fluid source. This is for - #1072. -
                      • -
                      • -June 14, 2016, by Michael Wetter:
                        -Revised implementation. -
                      • -
                      • -May 20, 2016, by Alessandro Maccarini:
                        -First implementation. -
                      • -
                      -")); +

                      + This example tests the implementation of + AixLib.Fluid.HeatExchangers.ActiveBeams.Cooling. + An air volume is maintained at a temperature below 25°C by a controller + that regulates the water flow rate in the active beam. +

                      + ",revisions=" +
                        +
                      • + May 15, 2019, by Jianjun Hu:
                        + Replaced fluid source. This is for + #1072. +
                      • +
                      • + June 14, 2016, by Michael Wetter:
                        + Revised implementation. +
                      • +
                      • + May 20, 2016, by Alessandro Maccarini:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end CoolingOnly; diff --git a/AixLib/Fluid/HeatExchangers/ActiveBeams/Examples/HeatingOnly.mo b/AixLib/Fluid/HeatExchangers/ActiveBeams/Examples/HeatingOnly.mo index 545a133f9a..7f4519e107 100644 --- a/AixLib/Fluid/HeatExchangers/ActiveBeams/Examples/HeatingOnly.mo +++ b/AixLib/Fluid/HeatExchangers/ActiveBeams/Examples/HeatingOnly.mo @@ -60,7 +60,7 @@ model HeatingOnly nPorts=1) "Sink for hot water" annotation (Placement(transformation(extent={{100,50},{80,70}}))); Modelica.Blocks.Sources.Sine sine( - freqHz=1/86400, + f=1/86400, amplitude=1, phase=-1.5707963267949) "Source for thermal loads" annotation (Placement(transformation(extent={{-110,-70},{-90,-50}}))); @@ -121,27 +121,28 @@ equation "Simulate and plot"), Icon(coordinateSystem(extent={{-120,-120},{120,120}})), Documentation(info=" -

                      -This example tests the implementation of -AixLib.Fluid.HeatExchangers.ActiveBeams.CoolingAndHeating, but operates it only in heating mode. -An air volume is maintained at a temperature above 22°C by a controller -that regulates the water flow rate in the active beam. -

                      -", revisions=" -
                        -
                      • -May 15, 2019, by Jianjun Hu:
                        -Replaced fluid source. This is for - #1072. -
                      • -
                      • -June 14, 2016, by Michael Wetter:
                        -Revised implementation. -
                      • -
                      • -May 20, 2016, by Alessandro Maccarini:
                        -First implementation. -
                      • -
                      -")); +

                      + This example tests the implementation of + AixLib.Fluid.HeatExchangers.ActiveBeams.CoolingAndHeating, but operates it only in heating mode. + An air volume is maintained at a temperature above 22°C by a controller + that regulates the water flow rate in the active beam. +

                      + ",revisions=" +
                        +
                      • + May 15, 2019, by Jianjun Hu:
                        + Replaced fluid source. This is for + #1072. +
                      • +
                      • + June 14, 2016, by Michael Wetter:
                        + Revised implementation. +
                      • +
                      • + May 20, 2016, by Alessandro Maccarini:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end HeatingOnly; diff --git a/AixLib/Fluid/HeatExchangers/ActiveBeams/Validation/NumberOfBeams.mo b/AixLib/Fluid/HeatExchangers/ActiveBeams/Validation/NumberOfBeams.mo index 59487f2e83..f88be3a703 100644 --- a/AixLib/Fluid/HeatExchangers/ActiveBeams/Validation/NumberOfBeams.mo +++ b/AixLib/Fluid/HeatExchangers/ActiveBeams/Validation/NumberOfBeams.mo @@ -184,33 +184,34 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/HeatExchangers/ActiveBeams/Validation/NumberOfBeams.mos" "Simulate and plot"), Documentation(info=" -

                      -This model validates the scaling of the heat tranfer and pressure drop for -nBeams > 1. -

                      -

                      -It uses two instances of - -AixLib.Fluid.HeatExchangers.ActiveBeams.CoolingAndHeating, -one with -nBeams = 1 and one with -nBeams = 10. -

                      -", revisions=" -
                        -
                      • -May 15, 2019, by Jianjun Hu:
                        -Replaced fluid source. This is for - #1072. -
                      • -
                      • -June 14, 2016, by Michael Wetter:
                        -Revised implementation. -
                      • -
                      • -May 20, 2016, by Alessandro Maccarini:
                        -First implementation. -
                      • -
                      -")); +

                      + This model validates the scaling of the heat tranfer and pressure drop for + nBeams > 1. +

                      +

                      + It uses two instances of + + AixLib.Fluid.HeatExchangers.ActiveBeams.CoolingAndHeating, + one with + nBeams = 1 and one with + nBeams = 10. +

                      + ",revisions=" +
                        +
                      • + May 15, 2019, by Jianjun Hu:
                        + Replaced fluid source. This is for + #1072. +
                      • +
                      • + June 14, 2016, by Michael Wetter:
                        + Revised implementation. +
                      • +
                      • + May 20, 2016, by Alessandro Maccarini:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end NumberOfBeams; diff --git a/AixLib/Fluid/HeatExchangers/ActiveBeams/Validation/NumberOfBeamsDynamics.mo b/AixLib/Fluid/HeatExchangers/ActiveBeams/Validation/NumberOfBeamsDynamics.mo index 3ae0e7b26e..efb1601ae8 100644 --- a/AixLib/Fluid/HeatExchangers/ActiveBeams/Validation/NumberOfBeamsDynamics.mo +++ b/AixLib/Fluid/HeatExchangers/ActiveBeams/Validation/NumberOfBeamsDynamics.mo @@ -24,21 +24,21 @@ experiment(Tolerance=1e-6, StopTime=500), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/HeatExchangers/ActiveBeams/Validation/NumberOfBeamsDynamics.mos" "Simulate and plot"), Documentation(info=" -

                      -This model validates whether the transient response is indeed -independent of the number of beams. -The model is similar to - -AixLib.Fluid.HeatExchangers.ActiveBeams.Validation.NumberOfBeams, -except that it is configured with a dynamic balance and non-default initial conditions. -

                      -", revisions=" -
                        -
                      • -June 24, 2016, by Michael Wetter:
                        -First implementation. -
                      • -
                      -")); - +

                      + This model validates whether the transient response is indeed + independent of the number of beams. + The model is similar to + + AixLib.Fluid.HeatExchangers.ActiveBeams.Validation.NumberOfBeams, + except that it is configured with a dynamic balance and non-default initial conditions. +

                      + ",revisions=" +
                        +
                      • + June 24, 2016, by Michael Wetter:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end NumberOfBeamsDynamics; diff --git a/AixLib/Fluid/HeatExchangers/ActiveWalls/BaseClasses/HeatConductionSegment.mo b/AixLib/Fluid/HeatExchangers/ActiveWalls/BaseClasses/HeatConductionSegment.mo index fcaa5f819b..890e109c2b 100644 --- a/AixLib/Fluid/HeatExchangers/ActiveWalls/BaseClasses/HeatConductionSegment.mo +++ b/AixLib/Fluid/HeatExchangers/ActiveWalls/BaseClasses/HeatConductionSegment.mo @@ -1,11 +1,11 @@ within AixLib.Fluid.HeatExchangers.ActiveWalls.BaseClasses; model HeatConductionSegment -parameter Modelica.SIunits.ThermalConductance kA + parameter Modelica.Units.SI.ThermalConductance kA "Constant thermal conductance of material"; -parameter Modelica.SIunits.HeatCapacity mc_p + parameter Modelica.Units.SI.HeatCapacity mc_p "Heat capacity of element (= cp*m)"; -parameter Modelica.SIunits.Temperature T0 "Initial Temperature of element"; + parameter Modelica.Units.SI.Temperature T0 "Initial Temperature of element"; Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a port_a annotation (Placement(transformation(extent={{-108,-8},{-74,26}}))); diff --git a/AixLib/Fluid/HeatExchangers/ActiveWalls/BaseClasses/PanelHeatingSegment.mo b/AixLib/Fluid/HeatExchangers/ActiveWalls/BaseClasses/PanelHeatingSegment.mo index bb060c7cf9..be0fb304e3 100644 --- a/AixLib/Fluid/HeatExchangers/ActiveWalls/BaseClasses/PanelHeatingSegment.mo +++ b/AixLib/Fluid/HeatExchangers/ActiveWalls/BaseClasses/PanelHeatingSegment.mo @@ -6,17 +6,18 @@ extends Modelica.Fluid.Interfaces.PartialTwoPort; parameter Boolean isFloor = true; -parameter Modelica.SIunits.Area A "Area of Floor part"; + parameter Modelica.Units.SI.Area A "Area of Floor part"; -parameter Modelica.SIunits.Emissivity eps=0.95 "Emissivity"; + parameter Modelica.Units.SI.Emissivity eps=0.95 "Emissivity"; -parameter Modelica.SIunits.Temperature T0=Modelica.SIunits.Conversions.from_degC(20) + parameter Modelica.Units.SI.Temperature T0= + Modelica.Units.Conversions.from_degC(20) "Initial temperature, in degrees Celsius"; -parameter Modelica.SIunits.Volume VWater "Volume of Water in m^3"; + parameter Modelica.Units.SI.Volume VWater "Volume of Water in m^3"; -parameter Modelica.SIunits.CoefficientOfHeatTransfer kTop; -parameter Modelica.SIunits.CoefficientOfHeatTransfer kDown; + parameter Modelica.Units.SI.CoefficientOfHeatTransfer kTop; + parameter Modelica.Units.SI.CoefficientOfHeatTransfer kDown; parameter HeatCapacityPerArea cTop; parameter HeatCapacityPerArea cDown; @@ -29,10 +30,11 @@ parameter HeatCapacityPerArea cDown; choice=3 "Custom hCon (constant)", radioButtons=true)); - parameter Modelica.SIunits.CoefficientOfHeatTransfer hCon_const=2.5 "Constant heat transfer coefficient" - annotation (Dialog(group="Heat convection", - descriptionLabel=true, - enable=if calcMethod == 3 then true else false)); + parameter Modelica.Units.SI.CoefficientOfHeatTransfer hCon_const=2.5 + "Constant heat transfer coefficient" annotation (Dialog( + group="Heat convection", + descriptionLabel=true, + enable=if calcMethod == 3 then true else false)); Modelica.Fluid.Vessels.ClosedVolume vol( redeclare package Medium = Medium, diff --git a/AixLib/Fluid/HeatExchangers/ActiveWalls/BaseClasses/PressureDropPH.mo b/AixLib/Fluid/HeatExchangers/ActiveWalls/BaseClasses/PressureDropPH.mo index 0d894273a6..89430089a8 100644 --- a/AixLib/Fluid/HeatExchangers/ActiveWalls/BaseClasses/PressureDropPH.mo +++ b/AixLib/Fluid/HeatExchangers/ActiveWalls/BaseClasses/PressureDropPH.mo @@ -7,7 +7,7 @@ model PressureDropPH "Pressure drop coefficient, delta_p[Pa] = tubeLength*m*m_flow[kg/s]^n"; parameter Real n = 1.7 "Pressure drop exponent, delta_p[Pa] = tubeLength*m*m_flow[kg/s]^n"; - parameter Modelica.SIunits.Length tubeLength = 10 "total length of tube"; + parameter Modelica.Units.SI.Length tubeLength=10 "total length of tube"; equation // Isenthalpic state transformation (no storage and no loss of energy) diff --git a/AixLib/Fluid/HeatExchangers/ActiveWalls/BaseClasses/logDT.mo b/AixLib/Fluid/HeatExchangers/ActiveWalls/BaseClasses/logDT.mo index c9edb43a0c..6f95ce55f6 100644 --- a/AixLib/Fluid/HeatExchangers/ActiveWalls/BaseClasses/logDT.mo +++ b/AixLib/Fluid/HeatExchangers/ActiveWalls/BaseClasses/logDT.mo @@ -3,8 +3,8 @@ function logDT import Modelica.Math.log; -input Modelica.SIunits.Temperature Temp_in[3]; -output Modelica.SIunits.Temperature Temp_out; + input Modelica.Units.SI.Temperature Temp_in[3]; + output Modelica.Units.SI.Temperature Temp_out; algorithm Temp_out :=(Temp_in[1] - Temp_in[2])/log((Temp_in[1] - Temp_in[3])/(Temp_in[2] - diff --git a/AixLib/Fluid/HeatExchangers/ActiveWalls/Distributor.mo b/AixLib/Fluid/HeatExchangers/ActiveWalls/Distributor.mo index 5a9f2f2a86..7fe1f1a1f3 100644 --- a/AixLib/Fluid/HeatExchangers/ActiveWalls/Distributor.mo +++ b/AixLib/Fluid/HeatExchangers/ActiveWalls/Distributor.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.HeatExchangers.ActiveWalls; +within AixLib.Fluid.HeatExchangers.ActiveWalls; model Distributor "Heating circuit distributor for underfloor heating systems" extends AixLib.Fluid.Interfaces.LumpedVolumeDeclarations; @@ -6,10 +6,10 @@ model Distributor "Heating circuit distributor for underfloor heating systems" parameter Integer n(min=1) "Number of underfloor heating circuits / registers" annotation (Dialog(connectorSizing=true, group="General")); - parameter Modelica.SIunits.MassFlowRate m_flow_nominal + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal "Nominal mass flow rate" annotation (Dialog(group="General")); - parameter Modelica.SIunits.Time tau=10 + parameter Modelica.Units.SI.Time tau=10 "Time constant at nominal flow (if energyDynamics <> SteadyState)" annotation (Dialog(tab="Dynamics", group="Nominal condition")); @@ -58,7 +58,8 @@ model Distributor "Heating circuit distributor for underfloor heating systems" each final C_nominal=C_nominal, final allowFlowReversal=allowFlowReversal) annotation (Placement( transformation(extent={{-10,-20},{10,0}}, rotation=0))); - Modelica.Fluid.Interfaces.FluidPorts_b flowPorts[n](redeclare each final package Medium = + Modelica.Fluid.Interfaces.FluidPorts_b flowPorts[n](redeclare each final + package Medium = Medium) annotation (Placement( visible=true, transformation( @@ -69,7 +70,8 @@ model Distributor "Heating circuit distributor for underfloor heating systems" origin={0,60}, extent={{-6,-24},{6,24}}, rotation=90))); - Modelica.Fluid.Interfaces.FluidPorts_a returnPorts[n](redeclare each final package Medium = + Modelica.Fluid.Interfaces.FluidPorts_a returnPorts[n](redeclare each final + package Medium = Medium) annotation (Placement( visible=true, transformation( @@ -86,7 +88,7 @@ protected T=Medium.T_default, p=Medium.p_default, X=Medium.X_default); - parameter Modelica.SIunits.Density rho_default=Medium.density(sta_default) + parameter Modelica.Units.SI.Density rho_default=Medium.density(sta_default) "Density, used to compute fluid volume"; equation connect(mainFlow, vol_flow.ports[1]) annotation (Line(points={{-60,32},{-46,32}, diff --git a/AixLib/Fluid/HeatExchangers/ActiveWalls/Examples/PanelHeatingMultiple.mo b/AixLib/Fluid/HeatExchangers/ActiveWalls/Examples/PanelHeatingMultiple.mo index 3df0b36e61..54dd2e3722 100644 --- a/AixLib/Fluid/HeatExchangers/ActiveWalls/Examples/PanelHeatingMultiple.mo +++ b/AixLib/Fluid/HeatExchangers/ActiveWalls/Examples/PanelHeatingMultiple.mo @@ -4,26 +4,32 @@ model PanelHeatingMultiple replaceable package Medium = Modelica.Media.Water.ConstantPropertyLiquidWater "Medium in the system" annotation(choicesAllMatching = true); - parameter Modelica.SIunits.Area panelHeatingArea = 10 "Area of heating panels"; + parameter Modelica.Units.SI.Area panelHeatingArea=10 "Area of heating panels"; Distributor distributor(redeclare package Medium = Medium, m_flow_nominal=0.5, n=6) annotation (Placement(transformation(extent={{-32,-20},{8,20}}))); - AixLib.Fluid.HeatExchangers.ActiveWalls.PanelHeating panelheating_1D_Dis1(redeclare package Medium = Medium, A= + AixLib.Fluid.HeatExchangers.ActiveWalls.PanelHeating panelheating_1D_Dis1(redeclare + package Medium = Medium, A= panelHeatingArea) annotation (Placement(transformation(extent={{56,64},{84,76}}))); - AixLib.Fluid.HeatExchangers.ActiveWalls.PanelHeating panelheating_1D_Dis2(redeclare package Medium = Medium, A= + AixLib.Fluid.HeatExchangers.ActiveWalls.PanelHeating panelheating_1D_Dis2(redeclare + package Medium = Medium, A= panelHeatingArea) annotation (Placement(transformation(extent={{56,34},{84,46}}))); - AixLib.Fluid.HeatExchangers.ActiveWalls.PanelHeating panelheating_1D_Dis3(redeclare package Medium = Medium, A= + AixLib.Fluid.HeatExchangers.ActiveWalls.PanelHeating panelheating_1D_Dis3(redeclare + package Medium = Medium, A= panelHeatingArea) annotation (Placement(transformation(extent={{56,6},{84,18}}))); - AixLib.Fluid.HeatExchangers.ActiveWalls.PanelHeating panelheating_1D_Dis4(redeclare package Medium = Medium, A= + AixLib.Fluid.HeatExchangers.ActiveWalls.PanelHeating panelheating_1D_Dis4(redeclare + package Medium = Medium, A= panelHeatingArea) annotation (Placement(transformation(extent={{56,-22},{84,-10}}))); - AixLib.Fluid.HeatExchangers.ActiveWalls.PanelHeating panelheating_1D_Dis5(redeclare package Medium = Medium, A= + AixLib.Fluid.HeatExchangers.ActiveWalls.PanelHeating panelheating_1D_Dis5(redeclare + package Medium = Medium, A= panelHeatingArea) annotation (Placement(transformation(extent={{56,-52},{84,-40}}))); - AixLib.Fluid.HeatExchangers.ActiveWalls.PanelHeating panelheating_1D_Dis6(redeclare package Medium = Medium, A= + AixLib.Fluid.HeatExchangers.ActiveWalls.PanelHeating panelheating_1D_Dis6(redeclare + package Medium = Medium, A= panelHeatingArea) annotation (Placement(transformation(extent={{56,-80},{84,-68}}))); Modelica.Fluid.Sources.MassFlowSource_T boundary( diff --git a/AixLib/Fluid/HeatExchangers/ActiveWalls/PanelHeating.mo b/AixLib/Fluid/HeatExchangers/ActiveWalls/PanelHeating.mo index 2f447ae4d8..83599b44a7 100644 --- a/AixLib/Fluid/HeatExchangers/ActiveWalls/PanelHeating.mo +++ b/AixLib/Fluid/HeatExchangers/ActiveWalls/PanelHeating.mo @@ -16,9 +16,10 @@ model PanelHeating parameter Integer dis(min=1) = 5 "Number of Discreatisation Layers"; - parameter Modelica.SIunits.Area A "Area of floor / heating panel part"; + parameter Modelica.Units.SI.Area A "Area of floor / heating panel part"; - parameter Modelica.SIunits.Temperature T0=Modelica.SIunits.Conversions.from_degC(20) + parameter Modelica.Units.SI.Temperature T0= + Modelica.Units.Conversions.from_degC(20) "Initial temperature, in degrees Celsius"; parameter Integer calcMethod=2 "Calculation method for convective heat transfer coefficient at surface" annotation (Dialog(group="Heat convection", @@ -28,12 +29,13 @@ model PanelHeating choice=3 "Custom hCon (constant)", radioButtons=true)); - parameter Modelica.SIunits.CoefficientOfHeatTransfer hCon_const=2.5 "Custom convective heat transfer coefficient" - annotation (Dialog(group="Heat convection", - descriptionLabel=true, - enable=if calcMethod == 3 then true else false)); + parameter Modelica.Units.SI.CoefficientOfHeatTransfer hCon_const=2.5 + "Custom convective heat transfer coefficient" annotation (Dialog( + group="Heat convection", + descriptionLabel=true, + enable=if calcMethod == 3 then true else false)); - final parameter Modelica.SIunits.Emissivity eps=floorHeatingType.eps + final parameter Modelica.Units.SI.Emissivity eps=floorHeatingType.eps "Emissivity"; final parameter Real cTopRatio(min=0,max=1)= floorHeatingType.c_top_ratio; @@ -47,11 +49,11 @@ model PanelHeating final parameter BaseClasses.HeatCapacityPerArea cDown=cFloorHeating * (1-cTopRatio); - final parameter Modelica.SIunits.Length tubeLength=A/floorHeatingType.Spacing; + final parameter Modelica.Units.SI.Length tubeLength=A/floorHeatingType.Spacing; - final parameter Modelica.SIunits.Volume VWater= - Modelica.SIunits.Conversions.from_litre(floorHeatingType.VolumeWaterPerMeter*tubeLength) - "Volume of Water"; + final parameter Modelica.Units.SI.Volume VWater= + Modelica.Units.Conversions.from_litre(floorHeatingType.VolumeWaterPerMeter + *tubeLength) "Volume of Water"; // ACCORDING TO GLUECK, Bauteilaktivierung 1999 @@ -60,11 +62,11 @@ model PanelHeating // (floorHeatingType.q_dot_nom/8.92)^(1/1.1) + floorHeatingType.Temp_nom[3] // else floorHeatingType.q_dot_nom/6.7 + floorHeatingType.Temp_nom[3]; - final parameter Modelica.SIunits.CoefficientOfHeatTransfer - kTop_nominal=floorHeatingType.k_top; + final parameter Modelica.Units.SI.CoefficientOfHeatTransfer kTop_nominal= + floorHeatingType.k_top; - final parameter Modelica.SIunits.CoefficientOfHeatTransfer - kDown_nominal = floorHeatingType.k_down; + final parameter Modelica.Units.SI.CoefficientOfHeatTransfer kDown_nominal= + floorHeatingType.k_down; Modelica.Fluid.Sensors.TemperatureTwoPort TFlow(redeclare package Medium = Medium) diff --git a/AixLib/Fluid/HeatExchangers/BaseClasses/Examples/HACoilInside.mo b/AixLib/Fluid/HeatExchangers/BaseClasses/Examples/HACoilInside.mo index cf4de3d4cb..2a789af8cd 100644 --- a/AixLib/Fluid/HeatExchangers/BaseClasses/Examples/HACoilInside.mo +++ b/AixLib/Fluid/HeatExchangers/BaseClasses/Examples/HACoilInside.mo @@ -3,13 +3,13 @@ model HACoilInside "Test model for HACoilInside" extends Modelica.Icons.Example; Modelica.Blocks.Sources.Sine sine( - freqHz=0.1, + f=0.1, amplitude=0.063, offset=0.063) "Mass flow rate" annotation (Placement(transformation(extent={{-80,-10},{-60,10}}))); Modelica.Blocks.Sources.Sine sine1( amplitude=10, - freqHz=0.1, + f=0.1, offset=273.15 + 50) "Temperature" annotation (Placement(transformation(extent={{-80,20},{-60,40}}))); AixLib.Fluid.HeatExchangers.BaseClasses.HACoilInside hASin( @@ -31,16 +31,17 @@ equation "Simulate and plot"), experiment(Tolerance=1e-6, StopTime=15), Documentation(info=" -

                      - Test model for - AixLib.Fluid.HeatExchanger.BaseClassess.HACoilInside. -

                      - ", revisions=" -
                        -
                      • -May 11, 2013, by Michael Wetter:
                        -First version. -
                      • -
                      -")); +

                      + Test model for + AixLib.Fluid.HeatExchanger.BaseClassess.HACoilInside. +

                      + ",revisions=" +
                        +
                      • + May 11, 2013, by Michael Wetter:
                        + First version. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end HACoilInside; diff --git a/AixLib/Fluid/HeatExchangers/BaseClasses/Examples/HADryCoil.mo b/AixLib/Fluid/HeatExchangers/BaseClasses/Examples/HADryCoil.mo index b090a07efe..1924e54b39 100644 --- a/AixLib/Fluid/HeatExchangers/BaseClasses/Examples/HADryCoil.mo +++ b/AixLib/Fluid/HeatExchangers/BaseClasses/Examples/HADryCoil.mo @@ -77,16 +77,17 @@ equation experiment(StopTime=80.0, Tolerance=1E-6), Documentation(info=" -

                      -Test model for -AixLib.Fluid.HeatExchangers.BaseClasses.HADryCoil. -

                      -", revisions=" -
                        -
                      • -April 9, 2017, by Michael Wetter:
                        -First version. -
                      • -
                      -")); +

                      + Test model for + AixLib.Fluid.HeatExchangers.BaseClasses.HADryCoil. +

                      + ",revisions=" +
                        +
                      • + April 9, 2017, by Michael Wetter:
                        + First version. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end HADryCoil; diff --git a/AixLib/Fluid/HeatExchangers/BaseClasses/Examples/HANaturalCylinder.mo b/AixLib/Fluid/HeatExchangers/BaseClasses/Examples/HANaturalCylinder.mo index e9172dafef..ad9a15044f 100644 --- a/AixLib/Fluid/HeatExchangers/BaseClasses/Examples/HANaturalCylinder.mo +++ b/AixLib/Fluid/HeatExchangers/BaseClasses/Examples/HANaturalCylinder.mo @@ -34,9 +34,10 @@ equation "Simulate and plot"), experiment(Tolerance=1e-6, StopTime=250), Documentation(info=" -

                      - Test model for - AixLib.Fluid.HeatExchangers.BaseClasses.HANaturalCylinder. -

                      - ")); +

                      + Test model for + AixLib.Fluid.HeatExchangers.BaseClasses.HANaturalCylinder. +

                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end HANaturalCylinder; diff --git a/AixLib/Fluid/HeatExchangers/BaseClasses/HACoilInside.mo b/AixLib/Fluid/HeatExchangers/BaseClasses/HACoilInside.mo index 3ec2d03e37..90bd9ad99d 100644 --- a/AixLib/Fluid/HeatExchangers/BaseClasses/HACoilInside.mo +++ b/AixLib/Fluid/HeatExchangers/BaseClasses/HACoilInside.mo @@ -2,8 +2,9 @@ within AixLib.Fluid.HeatExchangers.BaseClasses; model HACoilInside "Calculates the hA value for water inside a coil" extends Modelica.Blocks.Icons.Block; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal "Water mass flow rate" - annotation(Dialog(tab="General", group="Nominal condition")); + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal + "Water mass flow rate" + annotation (Dialog(tab="General", group="Nominal condition")); Modelica.Blocks.Interfaces.RealInput m_flow(unit="kg/s") "Mass flow rate" annotation (Placement(transformation(extent={{-120,-50},{-100,-30}}))); @@ -14,15 +15,14 @@ model HACoilInside "Calculates the hA value for water inside a coil" "Inside convective heat transfer" annotation (Placement(transformation( extent={{100,-10},{120,10}}))); - parameter Modelica.SIunits.ThermalConductance hA_nominal(min=0) + parameter Modelica.Units.SI.ThermalConductance hA_nominal(min=0) "Convective heat transfer coefficient" - annotation(Dialog(tab="General", group="Nominal condition")); + annotation (Dialog(tab="General", group="Nominal condition")); parameter Real n(min=0, max=1)=0.85 "Water-side exponent for convective heat transfer coefficient, h proportional to m_flow^n"; - parameter Modelica.SIunits.Temperature T_nominal= - Modelica.SIunits.Conversions.from_degC(20) - "Nominal water temperature" - annotation(Dialog(tab="General", group="Nominal condition")); + parameter Modelica.Units.SI.Temperature T_nominal= + Modelica.Units.Conversions.from_degC(20) "Nominal water temperature" + annotation (Dialog(tab="General", group="Nominal condition")); parameter Boolean flowDependent=true "Set to false to make hA independent of mass flow rate" annotation(Dialog(tab="Advanced", group="Modeling detail"), Evaluate=true); @@ -38,9 +38,8 @@ protected Real fm "Fraction of actual to nominal mass flow rate"; initial equation - s = if temperatureDependent then - 0.014/(1+0.014*Modelica.SIunits.Conversions.to_degC(T_nominal)) else - 1; + s =if temperatureDependent then 0.014/(1 + 0.014* + Modelica.Units.Conversions.to_degC(T_nominal)) else 1; equation fm = if flowDependent then m_flow / m_flow_nominal else 1; x = if temperatureDependent then 1 + s * (T-T_nominal) else 1; @@ -56,28 +55,28 @@ equation annotation ( defaultComponentName="HASin", Documentation(info=" -

                      -Model for convective heat transfer coefficients inside a coil. -Optionally, the convective heat transfer coefficient can -be computed as a function of temperature and mass flow rate. -

                      -", +

                      + Model for convective heat transfer coefficients inside a coil. + Optionally, the convective heat transfer coefficient can + be computed as a function of temperature and mass flow rate. +

                      + ", revisions=" -
                        -
                      • -May 10, 2013, by Michael Wetter:
                        -Revised and simplified the implementation. -
                      • -
                      • -February 26, 2013, by Peter Grant:
                        -First implementation. -
                      • -
                      -"), +
                        +
                      • + May 10, 2013, by Michael Wetter:
                        + Revised and simplified the implementation. +
                      • +
                      • + February 26, 2013, by Peter Grant:
                        + First implementation. +
                      • +
                      + "), Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100, 100}}), graphics={ Text( extent={{-66,88},{60,-2}}, - lineColor={0,0,0}, + textColor={0,0,0}, fillColor={255,255,255}, fillPattern=FillPattern.Solid, textString="hA"), @@ -92,5 +91,6 @@ First implementation. fillColor={255,255,255}, fillPattern=FillPattern.Solid), Line(points={{-52,-40},{56,-40},{44,-32}}, color={175,175,175}), - Line(points={{56,-40},{44,-48}}, color={175,175,175})})); + Line(points={{56,-40},{44,-48}}, color={175,175,175})}), + __Dymola_LockedEditing="Model from IBPSA"); end HACoilInside; diff --git a/AixLib/Fluid/HeatExchangers/BaseClasses/HADryCoil.mo b/AixLib/Fluid/HeatExchangers/BaseClasses/HADryCoil.mo index b1e735222b..2df74d6d92 100644 --- a/AixLib/Fluid/HeatExchangers/BaseClasses/HADryCoil.mo +++ b/AixLib/Fluid/HeatExchangers/BaseClasses/HADryCoil.mo @@ -3,15 +3,16 @@ model HADryCoil "Sensible convective heat transfer model for air to water coil" extends Modelica.Blocks.Icons.Block; - parameter Modelica.SIunits.ThermalConductance UA_nominal(min=0) + parameter Modelica.Units.SI.ThermalConductance UA_nominal(min=0) "Thermal conductance at nominal flow" - annotation(Dialog(tab="General", group="Nominal condition")); + annotation (Dialog(tab="General", group="Nominal condition")); - parameter Modelica.SIunits.MassFlowRate m_flow_nominal_w + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal_w "Water mass flow rate" - annotation(Dialog(tab="General", group="Nominal condition")); - parameter Modelica.SIunits.MassFlowRate m_flow_nominal_a "Air mass flow rate" - annotation(Dialog(tab="General", group="Nominal condition")); + annotation (Dialog(tab="General", group="Nominal condition")); + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal_a + "Air mass flow rate" + annotation (Dialog(tab="General", group="Nominal condition")); Modelica.Blocks.Interfaces.RealInput m1_flow(final unit="kg/s") "Mass flow rate medium 1" annotation (Placement(transformation(extent={{-120,60},{-100,80}}))); @@ -32,22 +33,24 @@ model HADryCoil parameter Real r_nominal(min=0)=0.5 "Ratio between air-side and water-side convective heat transfer coefficient" annotation(Dialog(tab="General", group="Nominal condition")); - parameter Modelica.SIunits.ThermalConductance hA_nominal_w(min=0)=UA_nominal * (r_nominal+1)/r_nominal + parameter Modelica.Units.SI.ThermalConductance hA_nominal_w(min=0)= + UA_nominal*(r_nominal + 1)/r_nominal "Water side convective heat transfer coefficient" - annotation(Dialog(tab="General", group="Nominal condition")); - parameter Modelica.SIunits.ThermalConductance hA_nominal_a(min=0)=r_nominal * hA_nominal_w + annotation (Dialog(tab="General", group="Nominal condition")); + parameter Modelica.Units.SI.ThermalConductance hA_nominal_a(min=0)= + r_nominal*hA_nominal_w "Air side convective heat transfer coefficient, including fin resistance" - annotation(Dialog(tab="General", group="Nominal condition")); + annotation (Dialog(tab="General", group="Nominal condition")); parameter Real n_w(min=0, max=1)=0.85 "Water-side exponent for convective heat transfer coefficient, h~m_flow^n"; parameter Real n_a(min=0, max=1)=0.8 "Air-side exponent for convective heat transfer coefficient, h~m_flow^n"; - parameter Modelica.SIunits.Temperature T0_w= - Modelica.SIunits.Conversions.from_degC(20) "Water temperature" - annotation(Dialog(tab="General", group="Nominal condition")); - parameter Modelica.SIunits.Temperature T0_a= - Modelica.SIunits.Conversions.from_degC(20) "Air temperature" - annotation(Dialog(tab="General", group="Nominal condition")); + parameter Modelica.Units.SI.Temperature T0_w= + Modelica.Units.Conversions.from_degC(20) "Water temperature" + annotation (Dialog(tab="General", group="Nominal condition")); + parameter Modelica.Units.SI.Temperature T0_a= + Modelica.Units.Conversions.from_degC(20) "Air temperature" + annotation (Dialog(tab="General", group="Nominal condition")); parameter Boolean waterSideFlowDependent=true "Set to false to make water-side hA independent of mass flow rate" annotation(Dialog(tab="Advanced", group="Modeling detail"), Evaluate=true); @@ -70,9 +73,8 @@ protected Real fm_w "Fraction of actual to nominal mass flow rate"; Real fm_a "Fraction of actual to nominal mass flow rate"; initial equation - s_w = if waterSideTemperatureDependent then - 0.014/(1+0.014*Modelica.SIunits.Conversions.to_degC(T0_w)) else - 1; + s_w =if waterSideTemperatureDependent then 0.014/(1 + 0.014* + Modelica.Units.Conversions.to_degC(T0_w)) else 1; equation fm_w = if waterSideFlowDependent then m1_flow / m_flow_nominal_w else 1; @@ -98,62 +100,62 @@ equation hA_2 = x_a * hA_nominal_a; end if; annotation (Documentation(info=" -

                      -Model for sensible convective heat transfer coefficients for an air to water coil. -

                      -

                      -This model computes the convective heat transfer coefficient -for an air to water coil. -The parameters allow a user to enable or disable, individually -for each medium, the mass flow and/or the temperature dependence -of the convective heat transfer coefficients. -For a detailed explanation of the equation, see -the references below. -

                      -

                      References

                      - -", +

                      + Model for sensible convective heat transfer coefficients for an air to water coil. +

                      +

                      + This model computes the convective heat transfer coefficient + for an air to water coil. + The parameters allow a user to enable or disable, individually + for each medium, the mass flow and/or the temperature dependence + of the convective heat transfer coefficients. + For a detailed explanation of the equation, see + the references below. +

                      +

                      References

                      + + ", revisions=" -
                        -
                      • -April 9, 2017, by Michael Wetter:
                        -Corrected coefficient in Taylor expansion of x_a.
                        -This is for -#698. -
                      • -
                      • -June 8, 2010, by Michael Wetter:
                        -Fixed bug in computation of s_w. -The old implementation used the current inlet water temperature instead -of the design condition that corresponds to UA_nominal. -
                      • -
                      • -April 16, 2008, by Michael Wetter:
                        -First implementation. -
                      • -
                      -"), +
                        +
                      • + April 9, 2017, by Michael Wetter:
                        + Corrected coefficient in Taylor expansion of x_a.
                        + This is for + #698. +
                      • +
                      • + June 8, 2010, by Michael Wetter:
                        + Fixed bug in computation of s_w. + The old implementation used the current inlet water temperature instead + of the design condition that corresponds to UA_nominal. +
                      • +
                      • + April 16, 2008, by Michael Wetter:
                        + First implementation. +
                      • +
                      + "), Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100, 100}}), graphics={ Text( extent={{-60,90},{66,0}}, - lineColor={0,0,0}, + textColor={0,0,0}, fillColor={255,255,255}, fillPattern=FillPattern.Solid, textString="hA"), @@ -216,5 +218,6 @@ First implementation. extent={{30,-66},{50,-88}}, lineColor={0,0,0}, fillColor={0,0,0}, - fillPattern=FillPattern.Solid)})); + fillPattern=FillPattern.Solid)}), + __Dymola_LockedEditing="Model from IBPSA"); end HADryCoil; diff --git a/AixLib/Fluid/HeatExchangers/BaseClasses/HANaturalCylinder.mo b/AixLib/Fluid/HeatExchangers/BaseClasses/HANaturalCylinder.mo index fe9b725c7f..df6903e431 100644 --- a/AixLib/Fluid/HeatExchangers/BaseClasses/HANaturalCylinder.mo +++ b/AixLib/Fluid/HeatExchangers/BaseClasses/HANaturalCylinder.mo @@ -4,18 +4,18 @@ model HANaturalCylinder extends Modelica.Blocks.Icons.Block; replaceable package Medium = Modelica.Media.Interfaces.PartialMedium "Medium inside the tank"; - parameter Modelica.SIunits.Diameter ChaLen + parameter Modelica.Units.SI.Diameter ChaLen "Characteristic length of the cylinder"; - parameter Modelica.SIunits.ThermalConductance hA_nominal(min=0) + parameter Modelica.Units.SI.ThermalConductance hA_nominal(min=0) "Convective heat transfer coefficient" - annotation(Dialog(tab="General", group="Nominal condition")); - parameter Modelica.SIunits.Temperature TFlu_nominal + annotation (Dialog(tab="General", group="Nominal condition")); + parameter Modelica.Units.SI.Temperature TFlu_nominal "Fluid temperature at hA_nominal" - annotation(Dialog(tab="General", group="Nominal condition")); - parameter Modelica.SIunits.Temperature TSur_nominal + annotation (Dialog(tab="General", group="Nominal condition")); + parameter Modelica.Units.SI.Temperature TSur_nominal "Surface temperature at hA_nominal" - annotation(Dialog(tab="General", group="Nominal condition")); + annotation (Dialog(tab="General", group="Nominal condition")); Modelica.Blocks.Interfaces.RealInput TSur(unit = "K") "Temperature of the external surface of the heat exchanger" @@ -33,12 +33,12 @@ protected "isobaricExpansionCoefficient"; parameter Real nu_nominal(unit = "m2/s", fixed=false) "Kinematic viscosity of the medium"; - parameter Modelica.SIunits.DynamicViscosity mu_nominal(fixed=false) + parameter Modelica.Units.SI.DynamicViscosity mu_nominal(fixed=false) "Dynamic viscosity of the medium"; - parameter Modelica.SIunits.Density rho_nominal(fixed=false) + parameter Modelica.Units.SI.Density rho_nominal(fixed=false) "Density of the medium"; - parameter Modelica.SIunits.ThermalConductivity k_nominal(fixed=false) + parameter Modelica.Units.SI.ThermalConductivity k_nominal(fixed=false) "Thermal conductivity of the fluid"; parameter Real Ra_nominal(fixed=false) "Rayleigh number"; @@ -47,16 +47,16 @@ protected parameter Real h_nominal(unit="W/(m2.K)", fixed=false) "Convection coefficient"; - parameter Modelica.SIunits.Area A(fixed=false) + parameter Modelica.Units.SI.Area A(fixed=false) "Surface area, deduced from hA_nominal, fluid temperatures and characteristic length"; - Modelica.SIunits.ThermalConductivity k "Thermal conductivity of the fluid"; + Modelica.Units.SI.ThermalConductivity k "Thermal conductivity of the fluid"; Real Gr "Grashof number"; Real B(unit="1/K") "isobaricExpansionCoefficient"; Real nu(unit = "m2/s") "Kinematic viscosity of the medium"; - Modelica.SIunits.DynamicViscosity mu "Dynamic viscosity of the medium"; - Modelica.SIunits.Density rho "Density of the medium"; - constant Modelica.SIunits.Acceleration g= Modelica.Constants.g_n + Modelica.Units.SI.DynamicViscosity mu "Dynamic viscosity of the medium"; + Modelica.Units.SI.Density rho "Density of the medium"; + constant Modelica.Units.SI.Acceleration g=Modelica.Constants.g_n "Acceleration due to gravity"; Medium.ThermodynamicState state @@ -66,7 +66,7 @@ protected Real Nusselt "Nusselt number"; function nusselt - input Modelica.SIunits.ThermalConductivity k "Thermal conductivity"; + input Modelica.Units.SI.ThermalConductivity k "Thermal conductivity"; input Real Pr "Prandlt number"; input Real Ra "Rayleigh number"; output Real Nu(min=0) "Nusselt number"; @@ -134,62 +134,62 @@ equation hA = h*A; annotation ( defaultComponentName="hNat", Documentation(info=" -

                      - This model calculates the convection coefficient h for natural convection - from a cylinder submerged in fluid. h is calcualted using Eq 9.34 from - Incropera and DeWitt (1996). - Output of the block is the hA value. -

                      -

                      - The Nusselt number is computed as -

                      -

                      - NuD = (0.6 + (0.387 RaD(1/6))/(1+(0.559 Pr) - (9/16))(8/27))2); -

                      -

                      - where NuD is the Nusselt number, RaD is the - Rayleigh number and - Pr is the Prandtl number.
                      - This correclation is accurate for RaD less than 1012. -

                      -

                      - h is then calculated from the Nusselt number. The equation is -

                      -

                      - h = NuD k/D -

                      -

                      - where k is the thermal conductivity of the fluid and D is the diameter - of the submerged cylinder. -

                      -

                      References

                      -

                      - Fundamentals of Heat and Mass Transfer (Fourth Edition), Frank Incropera and David - DeWitt, John Wiley and Sons, 1996 -

                      - ", revisions=" -
                        -
                      • -August 29, 2014 by Michael Wetter:
                        -Refactored function calls for medium properties. -
                      • -
                      • -May 10, 2013 by Michael Wetter:
                        -Revised implementation to use hA_nominal as a parameter, and compute the -associated surface area A. This revision was required to have a consistent -computation of the hA values inside and outside of the coil in the -heat exchanger model of the water tank. -
                      • -
                      • -February 26, 2013 by Peter Grant:
                        -First implementation. -
                      • -
                      -"), +

                      + This model calculates the convection coefficient h for natural convection + from a cylinder submerged in fluid. h is calcualted using Eq 9.34 from + Incropera and DeWitt (1996). + Output of the block is the hA value. +

                      +

                      + The Nusselt number is computed as +

                      +

                      + NuD = (0.6 + (0.387 RaD(1/6))/(1+(0.559 Pr) + (9/16))(8/27))2); +

                      +

                      + where NuD is the Nusselt number, RaD is the + Rayleigh number and + Pr is the Prandtl number.
                      + This correclation is accurate for RaD less than 1012. +

                      +

                      + h is then calculated from the Nusselt number. The equation is +

                      +

                      + h = NuD k/D +

                      +

                      + where k is the thermal conductivity of the fluid and D is the diameter + of the submerged cylinder. +

                      +

                      References

                      +

                      + Fundamentals of Heat and Mass Transfer (Fourth Edition), Frank Incropera and David + DeWitt, John Wiley and Sons, 1996 +

                      + ",revisions=" +
                        +
                      • + August 29, 2014 by Michael Wetter:
                        + Refactored function calls for medium properties. +
                      • +
                      • + May 10, 2013 by Michael Wetter:
                        + Revised implementation to use hA_nominal as a parameter, and compute the + associated surface area A. This revision was required to have a consistent + computation of the hA values inside and outside of the coil in the + heat exchanger model of the water tank. +
                      • +
                      • + February 26, 2013 by Peter Grant:
                        + First implementation. +
                      • +
                      + "), Icon(graphics={ Text( extent={{-66,88},{60,-2}}, - lineColor={0,0,0}, + textColor={0,0,0}, fillColor={255,255,255}, fillPattern=FillPattern.Solid, textString="hA"), @@ -243,5 +243,6 @@ First implementation. Line( points={{42,-18},{46,-38},{36,-52},{48,-72},{40,-86}}, color={175,175,175}, - smooth=Smooth.Bezier)})); + smooth=Smooth.Bezier)}), + __Dymola_LockedEditing="Model from IBPSA"); end HANaturalCylinder; diff --git a/AixLib/Fluid/HeatExchangers/BaseClasses/Internal.mo b/AixLib/Fluid/HeatExchangers/BaseClasses/Internal.mo index 58af3ec0a7..754988e595 100644 --- a/AixLib/Fluid/HeatExchangers/BaseClasses/Internal.mo +++ b/AixLib/Fluid/HeatExchangers/BaseClasses/Internal.mo @@ -1,6 +1,6 @@ within AixLib.Fluid.HeatExchangers.BaseClasses; package Internal "Solve f(x, data) for x with given f" - extends Modelica.Media.Common.OneNonLinearEquation; + extends ObsoleteModelica4.Media.Common.OneNonLinearEquation; redeclare function extends f_nonlinear algorithm diff --git a/AixLib/Fluid/HeatExchangers/BaseClasses/PartialEffectiveness.mo b/AixLib/Fluid/HeatExchangers/BaseClasses/PartialEffectiveness.mo index 79e64bed92..3cb9fb5342 100644 --- a/AixLib/Fluid/HeatExchangers/BaseClasses/PartialEffectiveness.mo +++ b/AixLib/Fluid/HeatExchangers/BaseClasses/PartialEffectiveness.mo @@ -14,30 +14,28 @@ partial model PartialEffectiveness fra_a2 * Medium2.temperature(state_a2_inflow) + fra_b2 * Medium2.temperature(state_b2_inflow) else Medium2.temperature(state_a2_inflow) "Inlet temperature medium 2"; - Modelica.SIunits.ThermalConductance C1_flow = abs(m1_flow)* - ( if allowFlowReversal1 then - fra_a1 * Medium1.specificHeatCapacityCp(state_a1_inflow) + - fra_b1 * Medium1.specificHeatCapacityCp(state_b1_inflow) else - Medium1.specificHeatCapacityCp(state_a1_inflow)) + Modelica.Units.SI.ThermalConductance C1_flow=abs(m1_flow)*(if + allowFlowReversal1 then fra_a1*Medium1.specificHeatCapacityCp( + state_a1_inflow) + fra_b1*Medium1.specificHeatCapacityCp(state_b1_inflow) + else Medium1.specificHeatCapacityCp(state_a1_inflow)) "Heat capacity flow rate medium 1"; - Modelica.SIunits.ThermalConductance C2_flow = abs(m2_flow)* - ( if allowFlowReversal2 then - fra_a2 * Medium2.specificHeatCapacityCp(state_a2_inflow) + - fra_b2 * Medium2.specificHeatCapacityCp(state_b2_inflow) else - Medium2.specificHeatCapacityCp(state_a2_inflow)) + Modelica.Units.SI.ThermalConductance C2_flow=abs(m2_flow)*(if + allowFlowReversal2 then fra_a2*Medium2.specificHeatCapacityCp( + state_a2_inflow) + fra_b2*Medium2.specificHeatCapacityCp(state_b2_inflow) + else Medium2.specificHeatCapacityCp(state_a2_inflow)) "Heat capacity flow rate medium 2"; - Modelica.SIunits.ThermalConductance CMin_flow(min=0) = min(C1_flow, C2_flow) + Modelica.Units.SI.ThermalConductance CMin_flow(min=0) = min(C1_flow, C2_flow) "Minimum heat capacity flow rate"; - Modelica.SIunits.HeatFlowRate QMax_flow = CMin_flow*(T_in2 - T_in1) + Modelica.Units.SI.HeatFlowRate QMax_flow=CMin_flow*(T_in2 - T_in1) "Maximum heat flow rate into medium 1"; protected parameter Real delta=1E-3 "Parameter used for smoothing"; - parameter Modelica.SIunits.SpecificHeatCapacity cp1_default(fixed=false) + parameter Modelica.Units.SI.SpecificHeatCapacity cp1_default(fixed=false) "Specific heat capacity of medium 1 at default medium state"; - parameter Modelica.SIunits.SpecificHeatCapacity cp2_default(fixed=false) + parameter Modelica.Units.SI.SpecificHeatCapacity cp2_default(fixed=false) "Specific heat capacity of medium 2 at default medium state"; - parameter Modelica.SIunits.ThermalConductance CMin_flow_small(fixed=false) + parameter Modelica.Units.SI.ThermalConductance CMin_flow_small(fixed=false) "Small value for smoothing of minimum heat capacity flow rate"; Real fra_a1(min=0, max=1) = if allowFlowReversal1 then Modelica.Fluid.Utilities.regStep( @@ -83,82 +81,83 @@ initial equation fillColor={95,95,95}, fillPattern=FillPattern.Solid)}), Documentation(info=" -

                      -Partial model to implement heat exchanger models. -

                      -

                      -Classes that extend this model need to implement heat and -mass balance equations in a form like -

                      -
                      -  // transferred heat
                      -  Q1_flow = eps * QMax_flow;
                      -  // no heat loss to ambient
                      -  0 = Q1_flow + Q2_flow;
                      -  // no mass exchange
                      -  mXi1_flow = zeros(Medium1.nXi);
                      -  mXi2_flow = zeros(Medium2.nXi);
                      -
                      -

                      -Thus, if medium 1 is heated in this device, then Q1_flow > 0 -and QMax_flow > 0. -

                      -", revisions=" -
                        -
                      • -February 21, 2019, by Filip Jorissen:
                        -Revised implementation of all equations -such that a binding equation is used. -I.e. we set the variable value at the variable definition -instead of using the equation section. -This allows overwriting the equation -when extending the model.
                        -See -#1102. -
                      • -
                      • -April 30, 2018, by Filip Jorissen:
                        -Set prescribedHeatFlowRate1=true and -prescribedHeatFlowRate2=true.
                        -See -#907. -
                      • -
                      • -June 9, 2015 by Michael Wetter:
                        -Changed type of T_in1 and T_in2 -to Medium1.Temperature and Medium2.Temperature -to avoid an error because of conflicting start values if - -Buildings.Examples.ChillerPlant.BaseClasses.Controls.Examples.ChillerSetPointControl -is translated using pedantic mode in Dymola 2016. -This is for -#426. -
                      • -
                      • -October 8, 2011, by Michael Wetter:
                        -Set show_T=false to avoid state events near zero flow. -
                      • -
                      • -August 31, 2011, by Michael Wetter:
                        -Removed unused variables gai1 and gai2. -
                      • -
                      • -February 12, 2010, by Michael Wetter:
                        -Changed model structure to implement effectiveness-NTU model. -
                      • -
                      • -January 28, 2010, by Michael Wetter:
                        -Added regularization near zero flow. -
                      • -
                      • -October 2, 2009, by Michael Wetter:
                        -Changed computation of inlet temperatures to use -state_*_inflow which is already known in base class. -
                      • -
                      • -April 28, 2008, by Michael Wetter:
                        -First implementation. -
                      • -
                      -")); +

                      + Partial model to implement heat exchanger models. +

                      +

                      + Classes that extend this model need to implement heat and + mass balance equations in a form like +

                      +
                      +   // transferred heat
                      +   Q1_flow = eps * QMax_flow;
                      +   // no heat loss to ambient
                      +   0 = Q1_flow + Q2_flow;
                      +   // no mass exchange
                      +   mXi1_flow = zeros(Medium1.nXi);
                      +   mXi2_flow = zeros(Medium2.nXi);
                      + 
                      +

                      + Thus, if medium 1 is heated in this device, then Q1_flow > 0 + and QMax_flow > 0. +

                      + ",revisions=" +
                        +
                      • + February 21, 2019, by Filip Jorissen:
                        + Revised implementation of all equations + such that a binding equation is used. + I.e. we set the variable value at the variable definition + instead of using the equation section. + This allows overwriting the equation + when extending the model.
                        + See + #1102. +
                      • +
                      • + April 30, 2018, by Filip Jorissen:
                        + Set prescribedHeatFlowRate1=true and + prescribedHeatFlowRate2=true.
                        + See + #907. +
                      • +
                      • + June 9, 2015 by Michael Wetter:
                        + Changed type of T_in1 and T_in2 + to Medium1.Temperature and Medium2.Temperature + to avoid an error because of conflicting start values if + + Buildings.Examples.ChillerPlant.BaseClasses.Controls.Examples.ChillerSetPointControl + is translated using pedantic mode in Dymola 2016. + This is for + #426. +
                      • +
                      • + October 8, 2011, by Michael Wetter:
                        + Set show_T=false to avoid state events near zero flow. +
                      • +
                      • + August 31, 2011, by Michael Wetter:
                        + Removed unused variables gai1 and gai2. +
                      • +
                      • + February 12, 2010, by Michael Wetter:
                        + Changed model structure to implement effectiveness-NTU model. +
                      • +
                      • + January 28, 2010, by Michael Wetter:
                        + Added regularization near zero flow. +
                      • +
                      • + October 2, 2009, by Michael Wetter:
                        + Changed computation of inlet temperatures to use + state_*_inflow which is already known in base class. +
                      • +
                      • + April 28, 2008, by Michael Wetter:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end PartialEffectiveness; diff --git a/AixLib/Fluid/HeatExchangers/BaseClasses/PartialEffectivenessNTU.mo b/AixLib/Fluid/HeatExchangers/BaseClasses/PartialEffectivenessNTU.mo index b333d62fa7..3e166c6fff 100644 --- a/AixLib/Fluid/HeatExchangers/BaseClasses/PartialEffectivenessNTU.mo +++ b/AixLib/Fluid/HeatExchangers/BaseClasses/PartialEffectivenessNTU.mo @@ -19,32 +19,31 @@ model PartialEffectivenessNTU annotation (Evaluate=true, Dialog(group="Nominal thermal performance")); - parameter Modelica.SIunits.HeatFlowRate Q_flow_nominal(fixed=use_Q_flow_nominal) + parameter Modelica.Units.SI.HeatFlowRate Q_flow_nominal(fixed= + use_Q_flow_nominal) "Nominal heat flow rate (positive for heat transfer from 1 to 2)" - annotation (Dialog(group="Nominal thermal performance", - enable=use_Q_flow_nominal)); - parameter Modelica.SIunits.Temperature T_a1_nominal(fixed=use_Q_flow_nominal) - "Nominal temperature at port a1" - annotation (Dialog(group="Nominal thermal performance", - enable=use_Q_flow_nominal)); - parameter Modelica.SIunits.Temperature T_a2_nominal(fixed=use_Q_flow_nominal) - "Nominal temperature at port a2" - annotation (Dialog(group="Nominal thermal performance", - enable=use_Q_flow_nominal)); + annotation (Dialog(group="Nominal thermal performance", enable= + use_Q_flow_nominal)); + parameter Modelica.Units.SI.Temperature T_a1_nominal(fixed=use_Q_flow_nominal) + "Nominal temperature at port a1" annotation (Dialog(group= + "Nominal thermal performance", enable=use_Q_flow_nominal)); + parameter Modelica.Units.SI.Temperature T_a2_nominal(fixed=use_Q_flow_nominal) + "Nominal temperature at port a2" annotation (Dialog(group= + "Nominal thermal performance", enable=use_Q_flow_nominal)); parameter Real eps_nominal(fixed=not use_Q_flow_nominal) "Nominal heat transfer effectiveness" annotation (Dialog(group="Nominal thermal performance", enable=not use_Q_flow_nominal)); - input Modelica.SIunits.ThermalConductance UA "UA value"; + input Modelica.Units.SI.ThermalConductance UA "UA value"; Real eps(min=0, max=1) "Heat exchanger effectiveness"; // NTU has been removed as NTU goes to infinity as CMin goes to zero. // This quantity is not good for modeling. // Real NTU(min=0) "Number of transfer units"; - final parameter Modelica.SIunits.ThermalConductance UA_nominal(fixed=false) + final parameter Modelica.Units.SI.ThermalConductance UA_nominal(fixed=false) "Nominal UA value"; final parameter Real NTU_nominal(min=0, fixed=false) "Nominal number of transfer units"; @@ -59,25 +58,25 @@ protected p=Medium2.p_default, X=Medium2.X_default[1:Medium2.nXi]) "Default state for medium 2"; - parameter Modelica.SIunits.SpecificHeatCapacity cp1_nominal(fixed=false) + parameter Modelica.Units.SI.SpecificHeatCapacity cp1_nominal(fixed=false) "Specific heat capacity of medium 1 at nominal condition"; - parameter Modelica.SIunits.SpecificHeatCapacity cp2_nominal(fixed=false) + parameter Modelica.Units.SI.SpecificHeatCapacity cp2_nominal(fixed=false) "Specific heat capacity of medium 2 at nominal condition"; - parameter Modelica.SIunits.ThermalConductance C1_flow_nominal(fixed=false) + parameter Modelica.Units.SI.ThermalConductance C1_flow_nominal(fixed=false) "Nominal capacity flow rate of Medium 1"; - parameter Modelica.SIunits.ThermalConductance C2_flow_nominal(fixed=false) + parameter Modelica.Units.SI.ThermalConductance C2_flow_nominal(fixed=false) "Nominal capacity flow rate of Medium 2"; - parameter Modelica.SIunits.ThermalConductance CMin_flow_nominal(fixed=false) + parameter Modelica.Units.SI.ThermalConductance CMin_flow_nominal(fixed=false) "Minimal capacity flow rate at nominal condition"; - parameter Modelica.SIunits.ThermalConductance CMax_flow_nominal(fixed=false) + parameter Modelica.Units.SI.ThermalConductance CMax_flow_nominal(fixed=false) "Maximum capacity flow rate at nominal condition"; parameter Real Z_nominal( min=0, max=1, fixed=false) "Ratio of capacity flow rate at nominal condition"; - parameter Modelica.SIunits.Temperature T_b1_nominal(fixed=false) + parameter Modelica.Units.SI.Temperature T_b1_nominal(fixed=false) "Nominal temperature at port b1"; - parameter Modelica.SIunits.Temperature T_b2_nominal(fixed=false) + parameter Modelica.Units.SI.Temperature T_b2_nominal(fixed=false) "Nominal temperature at port b2"; parameter flo flowRegime_nominal(fixed=false) "Heat exchanger flow regime at nominal flow rates"; @@ -189,79 +188,80 @@ equation fillPattern=FillPattern.Solid)}), defaultComponentName="hex", Documentation(info=" -

                      -Partial model of a heat exchanger without humidity condensation. -This model transfers heat in the amount of -

                      -

                      - Q = Qmax ε
                      - ε = f(NTU, Z, flowRegime), -

                      -

                      -where -Qmax is the maximum heat that can be transferred, -ε is the heat transfer effectiveness, -NTU is the Number of Transfer Units, -Z is the ratio of minimum to maximum capacity flow rate and -flowRegime is the heat exchanger flow regime. -such as -parallel flow, cross flow or counter flow. -

                      -

                      -The flow regimes depend on the heat exchanger configuration. All configurations -defined in - -AixLib.Fluid.Types.HeatExchangerConfiguration -are supported. -

                      -

                      -Models that extend from this partial model need to provide an assignment -for UA. -

                      -", revisions=" -
                        -
                      • -February 25, 2021 by Baptiste Ravache:
                        -Added a warning for when Q_flow_nominal is specified with the wrong sign. -
                      • -
                      • -January 10, 2018 by Michael Wetter:
                        -Removed variable Z that is not used. -This is for -issue 1328. -
                      • -
                      • -January 10, 2018 by Filip Jorissen:
                        -Corrected an error where the value of NTU was assigned to Z. -This is for -issue 1328. -
                      • -
                      • -February 27, 2016 by Michael Wetter:
                        -Introduced sta1_default and sta2_default -to enable translation under OpenModelica. -Removed max=1 attribute for Z. This is needed as near -zero flow, Z can be larger than one due to the regularization. -As Z is not used in this model other than for reporting, this bound -need not be enforced (and the calculation of eps is fine at these small flow rates). -This is for -issue 490. -
                      • -
                      • -April 29, 2014 by Michael Wetter:
                        -Changed assert statement to avoid comparing -enumeration with an integer, which triggers a warning -in Dymola 2015. -
                      • -
                      • -July 30, 2013 by Michael Wetter:
                        -Updated model to use new variable mWat_flow -in the base class. -
                      • -
                      • -February 12, 2010, by Michael Wetter:
                        -First implementation. -
                      • -
                      -")); +

                      + Partial model of a heat exchanger without humidity condensation. + This model transfers heat in the amount of +

                      +

                      + Q = Qmax ε
                      + ε = f(NTU, Z, flowRegime), +

                      +

                      + where + Qmax is the maximum heat that can be transferred, + ε is the heat transfer effectiveness, + NTU is the Number of Transfer Units, + Z is the ratio of minimum to maximum capacity flow rate and + flowRegime is the heat exchanger flow regime. + such as + parallel flow, cross flow or counter flow. +

                      +

                      + The flow regimes depend on the heat exchanger configuration. All configurations + defined in + + AixLib.Fluid.Types.HeatExchangerConfiguration + are supported. +

                      +

                      + Models that extend from this partial model need to provide an assignment + for UA. +

                      + ",revisions=" +
                        +
                      • + February 25, 2021 by Baptiste Ravache:
                        + Added a warning for when Q_flow_nominal is specified with the wrong sign. +
                      • +
                      • + January 10, 2018 by Michael Wetter:
                        + Removed variable Z that is not used. + This is for + issue 1328. +
                      • +
                      • + January 10, 2018 by Filip Jorissen:
                        + Corrected an error where the value of NTU was assigned to Z. + This is for + issue 1328. +
                      • +
                      • + February 27, 2016 by Michael Wetter:
                        + Introduced sta1_default and sta2_default + to enable translation under OpenModelica. + Removed max=1 attribute for Z. This is needed as near + zero flow, Z can be larger than one due to the regularization. + As Z is not used in this model other than for reporting, this bound + need not be enforced (and the calculation of eps is fine at these small flow rates). + This is for + issue 490. +
                      • +
                      • + April 29, 2014 by Michael Wetter:
                        + Changed assert statement to avoid comparing + enumeration with an integer, which triggers a warning + in Dymola 2015. +
                      • +
                      • + July 30, 2013 by Michael Wetter:
                        + Updated model to use new variable mWat_flow + in the base class. +
                      • +
                      • + February 12, 2010, by Michael Wetter:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end PartialEffectivenessNTU; diff --git a/AixLib/Fluid/HeatExchangers/BaseClasses/PartialPrescribedOutlet.mo b/AixLib/Fluid/HeatExchangers/BaseClasses/PartialPrescribedOutlet.mo index 9ea264935e..d958c33a5a 100644 --- a/AixLib/Fluid/HeatExchangers/BaseClasses/PartialPrescribedOutlet.mo +++ b/AixLib/Fluid/HeatExchangers/BaseClasses/PartialPrescribedOutlet.mo @@ -8,13 +8,14 @@ partial model PartialPrescribedOutlet constant Boolean homotopyInitialization = true "= true, use homotopy method" annotation(HideResult=true); - parameter Modelica.SIunits.MassFlowRate m_flow_nominal - "Nominal mass flow rate, used for regularization near zero flow" - annotation(Dialog(group = "Nominal condition")); + // Dynamics + parameter Modelica.Fluid.Types.Dynamics energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyState + "Type of energy balance: dynamic (3 initialization options) or steady state" + annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Conservation equations")); - parameter Modelica.SIunits.Time tau(min=0) = 10 - "Time constant at nominal flow rate (used if energyDynamics or massDynamics not equal Modelica.Fluid.Types.Dynamics.SteadyState)" - annotation(Dialog(tab = "Dynamics")); + parameter Modelica.Units.SI.Time tau(min=0) = 10 + "Time constant at nominal flow rate (used if energyDynamics not equal Modelica.Fluid.Types.Dynamics.SteadyState)" + annotation (Dialog(tab="Dynamics", enable=energyDynamics <> Modelica.Fluid.Types.Dynamics.SteadyState)); protected AixLib.Fluid.FixedResistances.PressureDrop preDro( @@ -31,6 +32,7 @@ protected AixLib.Fluid.Interfaces.PrescribedOutlet outCon( redeclare final package Medium = Medium, + final energyDynamics=energyDynamics, final allowFlowReversal=allowFlowReversal, final m_flow_small=m_flow_small, final show_T=false, @@ -68,42 +70,52 @@ equation fillPattern=FillPattern.Solid)}), defaultComponentName="hea", Documentation(info=" -

                      -Base class for model for an ideal heater, cooler, humidifier or dehumidifier -with a prescribed outlet conditions. -

                      -

                      -Models that extend this model need to configure the instance outCon -and connect its input signals, in they are enabled. -

                      -", +

                      + Base class for model for an ideal heater, cooler, humidifier or dehumidifier + with a prescribed outlet conditions. +

                      +

                      + Models that extend this model need to configure the instance outCon + and connect its input signals, in they are enabled. +

                      + ", revisions=" -
                        -
                      • -April 14, 2020, by Michael Wetter:
                        -Changed homotopyInitialization to a constant.
                        -This is for -AixLib, #1341. -
                      • -
                      • -May 3, 2017, by Michael Wetter:
                        -Updated protected model for -#763. -
                      • -
                      • -December 1, 2016, by Michael Wetter:
                        -Updated model as use_dh is no longer a parameter in the pressure drop model.
                        -This is for -#480. -
                      • -
                      • -November 11, 2014, by Michael Wetter:
                        -Revised implementation. -
                      • -
                      • -March 19, 2014, by Christoph Nytsch-Geusen:
                        -First implementation. -
                      • -
                      -")); +
                        +
                      • + March 10, 2022, by Michael Wetter:
                        + Propagated energyDynamics from instance outCon. +
                      • +
                      • + April 29, 2021, by Michael Wetter:
                        + Removed duplicate declaration of m_flow_nominal which is already + declared in the base class.
                        +
                      • +
                      • + April 14, 2020, by Michael Wetter:
                        + Changed homotopyInitialization to a constant.
                        + This is for + IBPSA, #1341. +
                      • +
                      • + May 3, 2017, by Michael Wetter:
                        + Updated protected model for + #763. +
                      • +
                      • + December 1, 2016, by Michael Wetter:
                        + Updated model as use_dh is no longer a parameter in the pressure drop model.
                        + This is for + #480. +
                      • +
                      • + November 11, 2014, by Michael Wetter:
                        + Revised implementation. +
                      • +
                      • + March 19, 2014, by Christoph Nytsch-Geusen:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end PartialPrescribedOutlet; diff --git a/AixLib/Fluid/HeatExchangers/BaseClasses/WetCoilDryRegime.mo b/AixLib/Fluid/HeatExchangers/BaseClasses/WetCoilDryRegime.mo new file mode 100644 index 0000000000..7ec3871d00 --- /dev/null +++ b/AixLib/Fluid/HeatExchangers/BaseClasses/WetCoilDryRegime.mo @@ -0,0 +1,97 @@ +within AixLib.Fluid.HeatExchangers.BaseClasses; +model WetCoilDryRegime + "Fully dry coil model" + + // - water + input Modelica.Units.SI.ThermalConductance UAWat "UA for water side"; + input Modelica.Units.SI.MassFlowRate mWat_flow "Mass flow rate for water"; + input Modelica.Units.SI.MassFlowRate mWatNonZer_flow(min=Modelica.Constants.eps) + "Mass flow rate for water, bounded away from zero"; + + input Modelica.Units.SI.SpecificHeatCapacity cpWat + "Specific heat capacity of water"; + input Modelica.Units.SI.Temperature TWatIn "Water temperature at inlet"; + // -- air + input Modelica.Units.SI.ThermalConductance UAAir "UA for air side"; + input Modelica.Units.SI.MassFlowRate mAir_flow(min=Modelica.Constants.eps) + "Mass flow rate of air"; + input Modelica.Units.SI.MassFlowRate mAirNonZer_flow(min=Modelica.Constants.eps) + "Mass flow rate for air, bounded away from zero"; + input Modelica.Units.SI.SpecificHeatCapacity cpAir + "Specific heat capacity of moist air at constant pressure"; + input Modelica.Units.SI.Temperature TAirIn "Temperature of air at inlet"; + // -- misc. + input AixLib.Fluid.Types.HeatExchangerFlowRegime cfg + "Flow regime of the heat exchanger"; + input Modelica.Units.SI.MassFlowRate mAir_flow_nominal + "Nominal mass flow rate for air"; + input Modelica.Units.SI.MassFlowRate mWat_flow_nominal + "Nominal mass flow rate for water"; + + parameter Real delta = 1E-3 "Small value used for smoothing"; + + output Modelica.Units.SI.HeatFlowRate QTot_flow + "Heat transferred from water to air"; + output Modelica.Units.SI.Temperature TWatOut "Temperature of water at outlet"; + output Modelica.Units.SI.Temperature TAirOut + "Temperature of air at the outlet"; + output Real eps(min=0, max=1, unit="1") + "Effectiveness for heat exchanger"; + Modelica.Units.SI.ThermalConductance CWat_flow=mWat_flow*cpWat + "Capacitance rate of water"; + Modelica.Units.SI.ThermalConductance CAir_flow=mAir_flow*cpAir + "Capacitance rate of air"; + Modelica.Units.SI.ThermalConductance CMin_flow_nominal=min(mAir_flow_nominal* + cpAir, mWat_flow_nominal*cpWat) "Minimum capacity rate"; + Modelica.Units.SI.ThermalConductance CMax_flow_nominal=max(mAir_flow_nominal* + cpAir, mWat_flow_nominal*cpWat) "Maximum capacity rate"; + Modelica.Units.SI.ThermalConductance CMin_flow= + AixLib.Utilities.Math.Functions.smoothMin( + x1=CAir_flow, + x2=CWat_flow, + deltaX=1E-3*(CMax_flow_nominal - CMin_flow_nominal)) + "Minimum capacity rate"; + Modelica.Units.SI.ThermalConductance UA "Overall heat transfer coefficient"; + output Modelica.Units.SI.Temperature TSurAirOut + "Surface Temperature at air outlet"; +equation + UA = 1/ (1 / UAAir + 1 / UAWat); + + eps=epsilon_C( + UA=UA, + C1_flow=CWat_flow, + C2_flow=CAir_flow, + flowRegime=Integer(cfg), + CMin_flow_nominal= CMin_flow_nominal, + CMax_flow_nominal=CMax_flow_nominal, + delta= delta); + + QTot_flow = eps*CMin_flow*(TAirIn-TWatIn); + TAirOut=TAirIn-QTot_flow/(mAirNonZer_flow*cpAir); + TWatOut=TWatIn+QTot_flow/(mWatNonZer_flow*cpWat); + TSurAirOut = (TAirOut * UAAir + TWatIn * UAWat) / (UAAir + UAWat); + + annotation (Icon(coordinateSystem(preserveAspectRatio=false), graphics={ + Rectangle( + extent={{-100,100},{100,-100}}, + lineColor={28,108,200}, + fillColor={255,213,170}, + fillPattern=FillPattern.Solid)}), Diagram( + coordinateSystem(preserveAspectRatio=false)), + Documentation(revisions=" +
                        +
                      • + Jan 21, 2021, by Donghun Kim:
                        First implementation. +
                      • +
                      + ",info=" +

                      This model implements the calculation for a 100% dry coil.

                      +

                      + See + + AixLib.Fluid.HeatExchangers.DryCoilEffectivenessNTU + for documentation. +

                      + "), + __Dymola_LockedEditing="Model from IBPSA"); +end WetCoilDryRegime; diff --git a/AixLib/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo b/AixLib/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo new file mode 100644 index 0000000000..3fcb5b4d84 --- /dev/null +++ b/AixLib/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo @@ -0,0 +1,421 @@ +within AixLib.Fluid.HeatExchangers.BaseClasses; +model WetCoilDryWetRegime + "Model implementing the switching algorithm of the TK-fuzzy model for cooling coil application" + + parameter Modelica.Units.SI.MassFlowRate mWat_flow_nominal(min=0) + "Nominal mass flow rate for water" + annotation (Dialog(group="Nominal condition")); + parameter Modelica.Units.SI.MassFlowRate mAir_flow_nominal(min=0) + "Nominal mass flow rate for air" + annotation (Dialog(group="Nominal condition")); + + input Real Qfac(final unit="1") + "Smoothing factor to prevent division-by-zero"; + + input AixLib.Fluid.Types.HeatExchangerFlowRegime cfg= + AixLib.Fluid.Types.HeatExchangerFlowRegime.CounterFlow + "Heat exchanger configuration"; + + // -- Water + Modelica.Blocks.Interfaces.RealInput UAWat( + final quantity="ThermalConductance", + final unit="W/K") + "Product of heat transfer coefficient times area for water side" + annotation (Placement(transformation(extent={{-160,100},{-140,120}}), + iconTransformation(extent={{-160,100},{-140,120}}))); + Modelica.Blocks.Interfaces.RealInput mWat_flow( + quantity="MassFlowRate", + min = 0, + final unit="kg/s") + "Mass flow rate for water" + annotation (Placement(transformation(extent={{-160,80},{-140,100}}), + iconTransformation(extent={{-160,80},{-140,100}}))); + Modelica.Blocks.Interfaces.RealInput cpWat( + final quantity="SpecificHeatCapacity", + final unit="J/(kg.K)") + "Inlet water temperature" + annotation (Placement(transformation(extent={{-160,60},{-140,80}}), + iconTransformation(extent={{-160,60},{-140,80}}))); + Modelica.Blocks.Interfaces.RealInput TWatIn( + final quantity="ThermodynamicTemperature", + final unit="K", + min = 200, + start = 288.15, + nominal = 300, + displayUnit="degC") + "Inlet water temperature" + annotation (Placement(transformation(extent={{-160,40},{-140,60}}), + iconTransformation(extent={{-160,40},{-140,60}}))); + // -- Air + Modelica.Blocks.Interfaces.RealInput UAAir( + final quantity="ThermalConductance", + final unit="W/K") + "Product of heat transfer coefficient times area for air side" + annotation (Placement(transformation(extent={{-160,-120},{-140,-100}}), + iconTransformation(extent={{-160,-120},{-140,-100}}))); + Modelica.Blocks.Interfaces.RealInput mAir_flow( + quantity="MassFlowRate", + min = 0, + final unit="kg/s") + "Mass flow rate for air" + annotation (Placement(transformation(extent={{-160,-100},{-140,-80}}), + iconTransformation(extent={{-160,-100},{-140,-80}}))); + Modelica.Blocks.Interfaces.RealInput cpAir( + final quantity="SpecificHeatCapacity", + final unit="J/(kg.K)") + "Inlet specific heat capacity (at constant pressure)" + annotation (Placement( + transformation(extent={{-160,-80},{-140,-60}}), iconTransformation( + extent={{-160,-80},{-140,-60}}))); + Modelica.Blocks.Interfaces.RealInput TAirIn( + final quantity="ThermodynamicTemperature", + final unit="K", + min = 200, + start = 288.15, + nominal = 300, + displayUnit="degC") + "Inlet air temperature" + annotation (Placement(transformation(extent={{-160,-60},{-140,-40}}), + iconTransformation(extent={{-160,-60},{-140,-40}}))); + Modelica.Blocks.Interfaces.RealInput hAirIn( + final quantity="SpecificEnergy", + final unit="J/kg") + "Inlet air enthalpy" + annotation ( + Placement(transformation(extent={{-160,-40},{-140,-20}}), + iconTransformation(extent={{-160,-40},{-140,-20}}))); + Modelica.Blocks.Interfaces.RealInput pAir( + final quantity="Pressure", + final unit="Pa", + displayUnit="bar", + min=70000, + nominal = 1e5) + "Inlet air absolute pressure" + annotation (Placement(transformation(extent={{-160,-20},{-140,0}}), + iconTransformation(extent={{-160,-20},{-140,0}}))); + Modelica.Blocks.Interfaces.RealInput X_wAirIn( + min=0, + max=1, + unit="1") + "Mass fraction of water in inlet air (kg water/kg total air)" + annotation ( + Placement(transformation(extent={{-160,0},{-140,20}}), iconTransformation( + extent={{-160,0},{-140,20}}))); + + Modelica.Blocks.Interfaces.RealOutput QTot_flow( + final quantity="Power", + final unit="W") + "Total heat transfer from water into air, negative for cooling" + annotation ( + Placement(transformation(extent={{-10,-10},{10,10}}, + rotation=0, + origin={150,-20}))); + Modelica.Blocks.Interfaces.RealOutput QSen_flow( + final quantity="Power", + final unit="W") + "Sensible heat transfer from water into air, negative for cooling" + annotation ( + Placement(transformation(extent={{-10,-10},{10,10}}, + rotation=0, + origin={150,-60}))); + Modelica.Units.SI.HeatFlowRate QLat_flow "Latent heat transfer rate"; + + Modelica.Blocks.Interfaces.RealOutput mCon_flow( + quantity="MassFlowRate", + final unit="kg/s") + "Mass flow of the condensate, negative for dehumidification" + annotation ( + Placement(transformation(extent={{-10,-10},{10,10}}, + rotation=0, + origin={150,-100}))); + AixLib.Fluid.HeatExchangers.BaseClasses.WetCoilDryRegime fullyDry( + final UAWat=UAWat, + final mWat_flow=mWat_flow, + final cpWat=cpWat, + final TWatIn=TWatIn, + final UAAir=UAAir, + final mAir_flow=mAir_flow, + final mWatNonZer_flow=mWatNonZer_flow, + final mAirNonZer_flow=mAirNonZer_flow, + final cpAir=cpAir, + final TAirIn=TAirIn, + final cfg=cfg, + final mAir_flow_nominal=mAir_flow_nominal, + final mWat_flow_nominal=mWat_flow_nominal) "Fully-dry coil model"; + + AixLib.Fluid.HeatExchangers.BaseClasses.WetCoilWetRegime fullyWet( + final UAWat=UAWat, + final mWat_flow=mWat_flow, + final cpWat=cpWat, + final TWatIn=TWatIn, + final UAAir=UAAir, + final mAir_flow=mAir_flow, + final mWatNonZer_flow=mWatNonZer_flow, + final mAirNonZer_flow=mAirNonZer_flow, + final cpAir=cpAir, + final TAirIn=TAirIn, + final cfg=cfg, + final mAir_flow_nominal=mAir_flow_nominal, + final mWat_flow_nominal=mWat_flow_nominal, + final pAir=pAir, + final X_wAirIn=X_wAirIn) "Fully-wet coil model"; + + Real dryFra(final unit="1", min=0, max=1) + "Dry fraction, 0.3 means condensation occurs at 30% heat exchange length from air inlet"; +protected + Modelica.Units.SI.MassFlowRate mAirNonZer_flow(min=Modelica.Constants.eps)= + AixLib.Utilities.Math.Functions.smoothMax( + x1=mAir_flow, + x2=1E-3*mAir_flow_nominal, + deltaX=0.25E-3*mAir_flow_nominal) "Mass flow rate of air"; + Modelica.Units.SI.MassFlowRate mWatNonZer_flow(min=Modelica.Constants.eps)= + AixLib.Utilities.Math.Functions.smoothMax( + x1=mWat_flow, + x2=1E-3*mWat_flow_nominal, + deltaX=0.25E-3*mWat_flow_nominal) "Mass flow rate of water"; + + Modelica.Units.SI.Temperature TAirInDewPoi + "Dew point temperature of incoming air"; + + AixLib.Utilities.Psychrometrics.pW_X pWIn( + final X_w=X_wAirIn, + final p_in=pAir); + AixLib.Utilities.Psychrometrics.TDewPoi_pW TDewIn( + final p_w=pWIn.p_w); + + //-- Values for fuzzy logics + Real mu_FW(final unit="1", min=0, max=1), mu_FD(unit="1",min=0, max=1) + "Membership functions for Fully-Wet and Fully-Dry conditions"; + Real w_FW(final unit="1", min=0, max=1), w_FD(unit="1",min=0, max=1) + "Normalized weight functions for Fully-Wet and Fully-Dry conditions"; + +equation + + TAirInDewPoi=TDewIn.T; + + mu_FW= AixLib.Utilities.Math.Functions.spliceFunction( + pos=0,neg=1,x=fullyWet.TSurAirIn-TAirInDewPoi, + deltax=AixLib.Utilities.Math.Functions.smoothMax( + abs(fullyDry.TSurAirOut-fullyWet.TSurAirIn), 1e-2,1e-3)); + + mu_FD= AixLib.Utilities.Math.Functions.spliceFunction( + pos=1,neg=0,x=fullyDry.TSurAirOut-TAirInDewPoi, + deltax=AixLib.Utilities.Math.Functions.smoothMax( + abs(fullyDry.TSurAirOut-fullyWet.TSurAirIn), 1e-2,1e-3)); + + w_FW=mu_FW/(mu_FW+mu_FD); + w_FD=mu_FD/(mu_FW+mu_FD); + + QTot_flow= -(w_FW*fullyWet.QTot_flow+w_FD*fullyDry.QTot_flow)*Qfac; + QSen_flow= -(w_FW*fullyWet.QSen_flow+w_FD*fullyDry.QTot_flow)*Qfac; + dryFra= w_FD; + + QLat_flow=QTot_flow-QSen_flow; + mCon_flow=QLat_flow/AixLib.Utilities.Psychrometrics.Constants.h_fg*Qfac; + annotation (Icon(coordinateSystem(preserveAspectRatio=false, extent={{-140,-120}, + {140,120}}), graphics={ + Rectangle( + extent={{-140,120},{140,-120}}, + lineColor={0,0,0}, + lineThickness=0.5, + pattern=LinePattern.Dot, + fillColor={236,236,236}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{20,40},{100,-40}}, + lineColor={28,108,200}, + fillColor={170,227,255}, + fillPattern=FillPattern.Forward), + Text( + extent={{24,36},{96,2}}, + textStyle={TextStyle.Bold}, + pattern=LinePattern.None, + textString="WET", + lineColor={0,0,0}), + Line( + points={{20,0},{120,0}}, + color={28,108,200}, + thickness=1, + pattern=LinePattern.Dash), + Ellipse( + extent={{72,0},{66,-6}}, + lineColor={28,108,200}, + fillColor={170,255,255}, + fillPattern=FillPattern.Solid), + Ellipse( + extent={{82,-4},{76,-10}}, + lineColor={28,108,200}, + fillColor={170,255,255}, + fillPattern=FillPattern.Solid), + Ellipse( + extent={{96,0},{88,-8}}, + lineColor={28,108,200}, + fillColor={170,255,255}, + fillPattern=FillPattern.Solid), + Ellipse( + extent={{64,-4},{58,-10}}, + lineColor={28,108,200}, + fillColor={170,255,255}, + fillPattern=FillPattern.Solid), + Ellipse( + extent={{54,0},{48,-6}}, + lineColor={28,108,200}, + fillColor={170,255,255}, + fillPattern=FillPattern.Solid), + Ellipse( + extent={{42,-4},{36,-10}}, + lineColor={28,108,200}, + fillColor={170,255,255}, + fillPattern=FillPattern.Solid), + Ellipse( + extent={{32,0},{24,-8}}, + lineColor={28,108,200}, + fillColor={170,255,255}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{-60,40},{20,-40}}, + lineColor={28,108,200}, + fillColor={255,213,170}, + fillPattern=FillPattern.Forward), + Text( + extent={{-16,-4},{56,-38}}, + textStyle={TextStyle.Bold}, + textString="CALCS", + pattern=LinePattern.None), + Line( + points={{-80,0},{20,0}}, + color={28,108,200}, + thickness=1, + pattern=LinePattern.Dash), + Text( + extent={{-56,36},{16,2}}, + textStyle={TextStyle.Bold}, + textString="DRY", + pattern=LinePattern.None), + Text( + extent={{-22,60},{58,40}}, + textColor={28,108,200}, + fillColor={170,170,255}, + fillPattern=FillPattern.Forward, + textString="Water", + textStyle={TextStyle.Italic}), + Text( + extent={{-20,-40},{60,-60}}, + textColor={28,108,200}, + fillColor={170,170,255}, + fillPattern=FillPattern.Forward, + textString="Air", + textStyle={TextStyle.Italic}), + Text( + extent={{-116,-104},{-116,-116}}, + textColor={28,108,200}, + horizontalAlignment=TextAlignment.Left, + textString="hA"), + Text( + extent={{-116,116},{-116,104}}, + textColor={28,108,200}, + horizontalAlignment=TextAlignment.Left, + textString="hA"), + Text( + extent={{-116,96},{-116,84}}, + textColor={28,108,200}, + horizontalAlignment=TextAlignment.Left, + textString="masFlo"), + Text( + extent={{-116,76},{-116,64}}, + textColor={28,108,200}, + horizontalAlignment=TextAlignment.Left, + textString="cp"), + Text( + extent={{-116,56},{-116,44}}, + textColor={28,108,200}, + horizontalAlignment=TextAlignment.Left, + textString="T_in"), + Text( + extent={{-116,-84},{-116,-96}}, + textColor={28,108,200}, + horizontalAlignment=TextAlignment.Left, + textString="masFlo"), + Text( + extent={{-116,-64},{-116,-76}}, + textColor={28,108,200}, + horizontalAlignment=TextAlignment.Left, + textString="cp"), + Text( + extent={{-116,-44},{-116,-56}}, + textColor={28,108,200}, + horizontalAlignment=TextAlignment.Left, + textString="T_in"), + Text( + extent={{-116,-24},{-116,-36}}, + textColor={28,108,200}, + horizontalAlignment=TextAlignment.Left, + textString="h_in"), + Text( + extent={{-116,-4},{-116,-16}}, + textColor={28,108,200}, + horizontalAlignment=TextAlignment.Left, + textString="p_in"), + Text( + extent={{-116,16},{-116,4}}, + textColor={28,108,200}, + horizontalAlignment=TextAlignment.Left, + textString="w_in"), + Text( + extent={{120,-12},{120,-24}}, + textColor={28,108,200}, + textString="QTot_flow"), + Text( + extent={{104,-94},{104,-106}}, + textColor={28,108,200}, + textString="mCon_flow"), + Text( + extent={{118,-52},{118,-64}}, + textColor={28,108,200}, + textString="QSen")}), Diagram( + coordinateSystem(preserveAspectRatio=false, extent={{-140,-120},{140,120}})), + Documentation(revisions=" +
                        +
                      • + Jan 21, 2021, by Donghun Kim:
                        First implementation. +
                      • +
                      + ",info=" +

                      + This model implements the switching algorithm for the dry and wet regime. +

                      +

                      + The switching criteria for (counter-flow) cooling coil modes are as follows.

                      +

                      + R1: If the coil surface temperature at the air inlet is lower than the dew-point + temperature at the inlet to the coil, then the cooling coil surface is fully-wet.

                      +

                      + R2: If the surface temperature at the air outlet section is higher than + the dew-point temperature of the air at the inlet, then the cooling coil surface is fully-dry.

                      +

                      + At each point of a simulation time step, the fuzzy-modeling approach determines + the weights for R1 and R2 respectively (namely μFW and μFD) + from the dew-point and coil surface temperatures.

                      +

                      + It calculates total and sensible heat transfer rates according to the weights as follows. +

                      +

                      + Q̇totFDtot,FDFW Qtot,FW +

                      +

                      + Q̇senFDsen,FDFW Qsen,FW +

                      +

                      + The fuzzy-modeling ensures μFW + μFD = 1, + μFW >=0 and μFD >=0, which means the fuzzy + model outcomes of sen and tot are always convex combinations of heat transfer + rates for fully-dry and fully-wet modes and therefore are always bounded by them. +

                      +

                      + The modeling approach also results in n-th order differentiable model + depending on the selection of the underlying membership functions. This cooling + coil model is once continuously differentiable at the mode switches. +

                      + "), + __Dymola_LockedEditing="Model from IBPSA"); +end WetCoilDryWetRegime; diff --git a/AixLib/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo b/AixLib/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo new file mode 100644 index 0000000000..bd987e22f4 --- /dev/null +++ b/AixLib/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo @@ -0,0 +1,216 @@ +within AixLib.Fluid.HeatExchangers.BaseClasses; +model WetCoilUARated + "Model that calculates the UA-value from cooling coil data at rated conditions." + + replaceable package MediumA=AixLib.Media.Air + constrainedby Modelica.Media.Interfaces.PartialMedium + "Air-side medium"; + replaceable package MediumW=AixLib.Media.Water + constrainedby Modelica.Media.Interfaces.PartialMedium + "Water-side medium"; + + parameter Boolean use_Q_flow_nominal = false + "Set to true to specify Q_flow_nominal and inlet conditions, or to false to specify UA_nominal" + annotation ( + Evaluate=true, + Dialog(group="Nominal thermal performance")); + parameter Modelica.Units.SI.HeatFlowRate QTot_flow + "Nominal heat flow rate (positive for heat transfer from 1 to 2)"; + parameter Modelica.Units.SI.Temperature TAirIn + "Air inlet temperature at a rated condition"; + + parameter Modelica.Units.SI.MassFraction X_wAirIn + "Mass fraction of water in inlet air at a rated condition"; + parameter Modelica.Units.SI.Temperature TWatIn + "Water inlet temperature at a rated condition"; + + parameter Modelica.Units.SI.MassFlowRate mAir_flow + "Air mass flow rate at a rated condition"; + parameter Modelica.Units.SI.MassFlowRate mWat_flow + "Water mass flow rate at a rated condition"; + parameter Modelica.Units.SI.ThermalConductance UA + "Overall heat transfer coefficient for a fully dry condition"; + parameter Real r_nominal(min=0, max=1) + "Ratio between air-side and water-side convective heat transfer at nominal condition"; + +protected + constant Modelica.Units.SI.SpecificEnthalpy hfg=AixLib.Utilities.Psychrometrics.Constants.h_fg + "Enthapy of vaporization of water"; + constant Modelica.Units.SI.SpecificEnthalpy hUnit=1 + "Physical dimension of specific enthalpy used for a unit conversion"; + constant Modelica.Units.SI.Temperature TUnit=1 + "Physical dimension of temperature used for a unit conversion"; + constant Modelica.Units.SI.SpecificHeatCapacity cpUnit=1 + "Physical dimension of specific heat capacity used for a unit conversion"; + parameter Modelica.Units.SI.Temperature TAirOut(fixed=false) + "Air outlet temperature at a rated condition"; + parameter Modelica.Units.SI.Temperature TWatOut=TWatIn - QTot_flow/cpWat/ + mWat_flow "Water outlet temperature at a rated condition"; + parameter Modelica.Units.SI.SpecificEnthalpy hAirIn= + MediumA.specificEnthalpy_pTX( + p=MediumA.p_default, + T=TAirIn, + X={X_wAirIn,1 - X_wAirIn}) + "Enthalpy of incoming moist air at a rated condition"; + parameter MediumA.ThermodynamicState staAir=MediumA.setState_phX( + p=MediumA.p_default, h=hAirIn, X={X_wAirIn, 1-X_wAirIn}) + "Inlet air thermodynamic state"; + parameter Modelica.Units.SI.SpecificHeatCapacity cpAir= + MediumA.specificHeatCapacityCp(staAir) + "Isobaric specific heat capacity of air"; + parameter Modelica.Units.SI.SpecificEnthalpy hAirOut=hAirIn + QTot_flow/ + mAir_flow "Enthalpy of outgoing moist air at a rated condition"; + parameter Modelica.Units.SI.SpecificEnthalpy hWatIn= + MediumW.specificEnthalpy_pTX( + p=MediumW.p_default, + T=TWatIn, + X=MediumW.X_default) + "Enthalpy of incoming moist air at a rated condition"; + parameter MediumW.ThermodynamicState staWat=MediumW.setState_phX( + p=MediumW.p_default, h=hWatIn, X=MediumW.X_default) + "Inlet water thermodynamic state"; + parameter Modelica.Units.SI.SpecificHeatCapacity cpWat= + MediumW.specificHeatCapacityCp(staWat) + "Isobaric specific heat capacity of water"; + parameter Modelica.Units.SI.SpecificHeatCapacity cpEff(fixed=false, min=0) "Effective specific heat: change in saturated moist air enthalpy with respect to + temperature along the saturation line between inlet and outlet water temperatures"; + parameter Modelica.Units.SI.SpecificEnthalpy LMED(fixed=false) + "Log mean enthalpy difference"; + parameter Modelica.Units.SI.MassFlowRate UASta( + fixed=false, + min=0, + start=1/(1/10 + 1/20)) + "Overall heat transfer coefficient for enthalpy difference"; + parameter Modelica.Units.SI.ThermalConductance UAAir( + min=0, + start=10, + fixed=false) + "Air side convective heat transfer coefficient, including fin resistance"; + parameter Modelica.Units.SI.ThermalConductance UAWat( + min=0, + start=20, + fixed=false) "Water side convective heat transfer coefficient"; + parameter Boolean isFulDry(fixed=false) + "Indicator of the fully-dry coil regime"; + parameter Boolean isFulWet(fixed=false) + "Indicator of the fully-wet coil regime"; + parameter Modelica.Units.SI.AbsolutePressure pSatTWatIn= + AixLib.Utilities.Psychrometrics.Functions.saturationPressure(TWatIn) + "Saturation pressure of water at the water inlet temperature"; + parameter Modelica.Units.SI.MassFraction X_wSatTWatIn= + AixLib.Utilities.Psychrometrics.Functions.X_pSatpphi( + pSat=pSatTWatIn, + p=MediumA.p_default, + phi=1) + "Mass fraction of water in saturated moist air at the water inlet temperature"; + parameter Modelica.Units.SI.SpecificEnthalpy hSatTWatIn= + AixLib.Media.Air.specificEnthalpy_pTX( + p=MediumA.p_default, + T=TWatIn, + X={X_wSatTWatIn,1 - X_wSatTWatIn}) + "Enthalpy of saturated moist air at the water inlet temperature"; + parameter Modelica.Units.SI.AbsolutePressure pSatTWatOut= + AixLib.Utilities.Psychrometrics.Functions.saturationPressure(TWatOut) + "Saturation pressure of water at the water oulet temperature"; + parameter Modelica.Units.SI.MassFraction X_wSatTWatOut= + AixLib.Utilities.Psychrometrics.Functions.X_pSatpphi( + pSat=pSatTWatOut, + p=MediumA.p_default, + phi=1) + "Mass fraction of water in saturated moist air at the water outlet temperature"; + parameter Modelica.Units.SI.SpecificEnthalpy hSatTWatOut= + AixLib.Media.Air.specificEnthalpy_pTX( + p=MediumA.p_default, + T=TWatOut, + X={X_wSatTWatOut,1 - X_wSatTWatOut}) + "Enthalpy of saturated moist air at the water oulet temperature"; +initial equation + isFulDry = if use_Q_flow_nominal then (X_wSatTWatIn >= X_wAirIn) else true; + isFulWet = if use_Q_flow_nominal then (X_wSatTWatOut <= X_wAirIn) else true; + assert( + not use_Q_flow_nominal or + hAirOut >= hSatTWatIn and hAirIn >= hSatTWatOut or + hAirOut <= hSatTWatIn and hAirIn <= hSatTWatOut, + "In " + getInstanceName() + + ": The moist air enthalpy at the coil inlet or outlet is unrealistically low. " + + "Check the rated conditions."); + assert( + isFulDry or isFulWet, + "In " + getInstanceName() + + ": The nominal conditions correspond to a partially-wet coil regime. " + + "The modeling uncertainty under such conditions has not been assessed. " + + "Rather specify nominal conditions in fully-dry or fully-wet regime.", + level=AssertionLevel.warning); + if use_Q_flow_nominal then + if isFulDry then + TAirOut = TAirIn + QTot_flow / mAir_flow / cpAir; + LMED = (if abs(TWatIn - TAirOut - (TWatOut - TAirIn)) < Modelica.Constants.small then + TWatIn - TAirOut else AixLib.Fluid.HeatExchangers.BaseClasses.lmtd( + TWatIn, + TWatOut, + TAirIn, + TAirOut)) / TUnit * hUnit; + QTot_flow=LMED*UASta; + cpEff = 0; + UA = UASta*cpUnit; + else //fully wet + // calculation of overall UAsta based on log mean enthalpy difference + LMED = (if abs(hSatTWatIn - hAirOut - (hSatTWatOut - hAirIn)) < Modelica.Constants.small then + (hSatTWatIn - hAirOut)/hUnit*TUnit else + AixLib.Fluid.HeatExchangers.BaseClasses.lmtd( + hSatTWatIn/hUnit*TUnit, + hSatTWatOut/hUnit*TUnit, + hAirIn/hUnit*TUnit, + hAirOut/hUnit*TUnit)) / TUnit * hUnit; + QTot_flow=LMED*UASta; + cpEff= (hSatTWatOut-hSatTWatIn)/(TWatOut-TWatIn); + UASta = (UAAir/cpAir)/(1 + (cpEff*UAAir)/(cpAir*UAWat)); + // Dummy value. + TAirOut=MediumA.T_default; + end if; + else + // Dummy values. + TAirIn=MediumA.T_default; + TAirOut=MediumA.T_default; + X_wAirIn=MediumA.X_default[1]; + TWatIn=MediumA.T_default; + TWatOut=MediumA.T_default; + hAirIn=MediumA.h_default; + hAirOut=MediumA.h_default; + LMED=hUnit; + -QTot_flow=LMED*UASta; + cpEff= 0; + end if; + + UAWat = UAAir / r_nominal; + UA = 1/ (1/UAAir + 1/UAWat); + + annotation (Icon(coordinateSystem(preserveAspectRatio=false), + graphics={ + Rectangle( + extent={{100,-98},{-100,100}}, + lineColor={0,0,0}, + fillColor={255,255,255}, + fillPattern=FillPattern.Solid)}), Diagram( + coordinateSystem(preserveAspectRatio=false)), + Documentation(revisions=" +
                        +
                      • + February 18, 2021 by Donghun Kim:
                        + First implementation +
                      • +
                      + ",info=" +

                      + This model calculates the overall heat transfer coefficient, i.e., + UA-value, from cooling coil data at rated conditions. +

                      +

                      + The main limitation of the current implementation is that the rated + conditions should correspond to a fully-dry or a fully-wet coil regime. + The modeling uncertainty yielded by partially-wet rated conditions + has not been assessed yet. +

                      + "), + __Dymola_LockedEditing="Model from IBPSA"); +end WetCoilUARated; diff --git a/AixLib/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo b/AixLib/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo new file mode 100644 index 0000000000..7a3f740a67 --- /dev/null +++ b/AixLib/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo @@ -0,0 +1,256 @@ +within AixLib.Fluid.HeatExchangers.BaseClasses; +model WetCoilWetRegime + "Fully wet coil model using esilon_C.mo function" + constant Real cpEff0=2050 "Used for scaling"; + constant Real cpWat0=4200 "Used for scaling"; + parameter Real delta = 1E-3 "Small value used for smoothing"; + constant Modelica.Units.SI.SpecificHeatCapacity cpDum=1 + "Dummy cp to eliminate the warning message of the unit mismatch when using the eps-NTU model for the wet coil"; + constant Modelica.Units.SI.TemperatureDifference dTWat=0.1 + "Temperature differential used to compute the finite difference of the saturated specific enthalpy"; + parameter Real tau=6*60 + "Time constant for state estimation: introduced to avoid the algebraic loop of the wet coil equations"; + + // - water + input Modelica.Units.SI.ThermalConductance UAWat "UA for water side"; + input Modelica.Units.SI.MassFlowRate mWat_flow "Mass flow rate of water"; + input Modelica.Units.SI.MassFlowRate mWatNonZer_flow + "Non-zero mass flow rate of water"; + input Modelica.Units.SI.SpecificHeatCapacity cpWat + "Specific heat capacity of water"; + input Modelica.Units.SI.Temperature TWatIn "Water temperature at inlet"; + input Modelica.Units.SI.MassFlowRate mWat_flow_nominal + "Mass flow rate of water at nominal conditions"; + // -- air + input Modelica.Units.SI.Pressure pAir "Pressure on air-side of coil"; + input Modelica.Units.SI.ThermalConductance UAAir "UA for air side"; + input Modelica.Units.SI.MassFlowRate mAir_flow "Mass flow rate of air"; + input Modelica.Units.SI.MassFlowRate mAirNonZer_flow + "Non-zero mass flow rate of water"; + input Modelica.Units.SI.SpecificHeatCapacity cpAir + "Specific heat capacity of moist air at constant pressure"; + input Modelica.Units.SI.Temperature TAirIn "Temperature of air at inlet"; + input Modelica.Units.SI.MassFraction X_wAirIn + "Mass fraction of water in moist air at inlet"; + input AixLib.Fluid.Types.HeatExchangerFlowRegime cfg + "Configuration of the heat exchanger"; + input Modelica.Units.SI.MassFlowRate mAir_flow_nominal + "Mass flow rate of air at nominal conditions"; + + Modelica.Units.SI.SpecificEnthalpy hAirIn + "Specific enthalpy of air at inlet conditions"; + AixLib.Utilities.Psychrometrics.hSat_pTSat hSatWatInM(p=pAir,TSat=TWatIn) + "Model to calculate saturated specific enthalpy of air at water inlet temperature"; + Modelica.Units.SI.SpecificEnthalpy hSatWatIn + "Saturated specific enthalpy of air at water inlet temperature"; + AixLib.Utilities.Psychrometrics.hSat_pTSat hSatWatIn_dT_M(p=pAir,TSat=TWatIn+dTWat) + "Model to calculate derivative of saturated specific enthalpy of air at water inlet temperature"; + Modelica.Units.SI.SpecificHeatCapacity dhSatdTWatIn + "Finite difference of saturated moist air enthalpy at water inlet temperature"; + Real NonZerDelWatTem + "Regularization water temperature difference between inlet and outlet"; + + Modelica.Units.SI.SpecificEnthalpy hAirOut + "Specific enthalpy of moist air at the air outlet"; + AixLib.Utilities.Psychrometrics.hSat_pTSat hSatWatOutM(p=pAir,TSat=TWatOutEst) + "Model to calculate saturated specific enthalpy of air at water outlet temperature"; + Modelica.Units.SI.SpecificEnthalpy hSatWatOut + "Saturated specific enthalpy of air at water outlet temperature"; + + Modelica.Units.SI.Temperature TSurEff + "Effective surface temperature of the coil to split sensible and latent heat from total heat transfer rate"; + + Modelica.Units.SI.SpecificEnthalpy hSatSurEff + "Enthalpy of saturated moist air at the effective surface temperature"; + + AixLib.Utilities.Psychrometrics.hSat_pTSat hSatSurEffM(p=pAir,TSat=TSurEff) + "An object to calculate the saturated enthalpy of moist air at the coil surface temperature"; + AixLib.Utilities.Psychrometrics.hSat_pTSat hSatSurEffMinM(p=pAir,TSat=273.15+1) + "An object to calculate a lower bound of the saturated enthalpy of moist + air at the coil surface temperature"; + + Modelica.Units.SI.SpecificHeatCapacity cpEff "Effective specific heat: change in enthalpy with respect to temperature + along the saturation line at the local water temperature"; + + Modelica.Units.SI.MassFlowRate UASta + "Overall mass transfer coefficient for dry coil"; + + Real NTUAirSta(unit="1") + "Number of transfer units for air-side only (NTU_a*)"; + + Real epsSta(start=0.66, unit="1") + "Effectiveness for heat exchanger (e*)"; + + Modelica.Units.SI.MassFlowRate CStaMin + "Min of product of mass flow rates and specific heats; analogous to Cmin"; + + Modelica.Units.SI.MassFlowRate CStaMin_flow_nominal=min(mAir_flow_nominal, + mWat_flow_nominal*cpEff0/cpWat0) + "Analogus to CMin_flow_nominal, only for a regularization"; + Modelica.Units.SI.MassFlowRate CStaMax_flow_nominal=max(mAir_flow_nominal, + mWat_flow_nominal*cpEff0/cpWat0) + "Analogus to CMax_flow_nominal, only for a regularization"; + Modelica.Units.SI.MassFlowRate deltaCStaMin=delta*min(mAir_flow_nominal, + mWat_flow_nominal*cpEff0/cpWat0) + "Min of product of mass flow rates and specific heats, analogous to Cmin"; + Modelica.Units.SI.Temperature TWatOutEst + "State estimation of temperature of water at outlet"; + + output Modelica.Units.SI.HeatFlowRate QTot_flow + "Total heat flow from water to air stream"; + output Modelica.Units.SI.HeatFlowRate QSen_flow + "Sensible heat flow from water to air stream"; + output Modelica.Units.SI.Temperature TWatOut + "Temperature at the water outlet"; + output Modelica.Units.SI.Temperature TSurAirIn + "Coil surface temperature at the air inlet"; + output Modelica.Units.SI.Temperature TAirOut "Temperature at the air outlet"; +initial equation + TWatOutEst=0.5*(TWatIn+ TAirIn); + +equation + + hAirIn=AixLib.Media.Air.specificEnthalpy_pTX( + p=pAir,T=TAirIn,X={X_wAirIn,1-X_wAirIn}); + hSatWatIn=hSatWatInM.hSat; + dhSatdTWatIn=(hSatWatIn_dT_M.hSat-hSatWatInM.hSat)/dTWat; + hSatWatOut= hSatWatOutM.hSat; + NonZerDelWatTem=AixLib.Utilities.Math.Functions.regNonZeroPower( + x=TWatOutEst-TWatIn,n=1,delta=0.1); + cpEff = AixLib.Utilities.Math.Functions.smoothMax( + (hSatWatOut - hSatWatIn)/NonZerDelWatTem, + dhSatdTWatIn, + cpEff0*delta); + + CStaMin=AixLib.Utilities.Math.Functions.smoothMin( + mAir_flow, + mWat_flow*cpWat/cpEff, + deltaCStaMin/4); + + UASta = (UAAir/cpAir)/(1 + (cpEff*UAAir)/(cpAir*UAWat)); + + epsSta=epsilon_C( + UA=UASta*cpDum, + C1_flow=mWat_flow*cpWat/cpEff*cpDum, + C2_flow=mAir_flow*cpDum, + flowRegime=Integer(cfg), + CMin_flow_nominal=CStaMin_flow_nominal*cpDum, + CMax_flow_nominal=CStaMax_flow_nominal*cpDum, + delta=delta); + + QTot_flow = epsSta*CStaMin*(hAirIn - hSatWatIn); + + QTot_flow = mAir_flow*(hAirIn- hAirOut); + TWatOut=TWatIn+QTot_flow/(mWatNonZer_flow*cpWat); + + NTUAirSta = UAAir/(mAir_flow*cpAir); + + hSatSurEff = AixLib.Utilities.Math.Functions.smoothMax( + x1 = hSatSurEffMinM.hSat, + x2 = hAirIn +(hAirOut - hAirIn) / (1 - exp(-NTUAirSta)), + deltaX = delta*1E4); // NTUAirSta is bounded as long as UAAir>0 due to the regularization of mAir_flow + + hSatSurEffM.hSat=hSatSurEff; + TAirOut = TSurEff +(TAirIn - TSurEff)*exp(-NTUAirSta); + QSen_flow= AixLib.Utilities.Math.Functions.smoothMin( + x1 = mAir_flow*cpAir*(TAirIn-TAirOut), + x2 = QTot_flow, + deltaX = delta*mWatNonZer_flow*cpWat0*5); // the last term is only for regularization with DTWater=5oC + + TSurAirIn = (TAirIn * UAAir + TWatOut * UAWat) / (UAWat + UAAir); + der(TWatOutEst)=-1/tau*TWatOutEst+1/tau*TWatOut; + +annotation (Icon(graphics={ + Rectangle( + extent={{-100,100},{100,-100}}, + lineColor={28,108,200}, + fillColor={170,213,255}, + fillPattern=FillPattern.Solid)}), Documentation(revisions=" +
                        +
                      • + Jan 21, 2021, by Donghun Kim:
                        First implementation. +
                      • +
                      + ",info=" +

                      + This model implements the calculation for a 100% wet coil. +

                      +

                      + The equations from Braun (1988) and Mitchell and Braun (2012a and b), + which are essentially the extension of the ε-NTU approach to + simultaneous sensible and latent heat transfer, are utilized. +

                      +

                      + The mathematical equations are analogous to that of the sensible heat exchanger. + However, the key distinction is that the heat transfer is driven by an enthalpy difference + not by an temperature difference. This change in the driving potential results in re-defining + capacitances and heat transfer coefficients accordingly. +

                      + +

                      + The total heat transfer rate is expressed as +

                      +

                      + Qtot=ε* C*min + (hair,in-hsat(Twat,in)), +

                      +

                      + where ε*=f(Cr*,NTU*) and f is the same ε-NTU relationships + (depending on the heat exchanger configuration) for the sensible heat exchanger. +

                      +

                      + hair,in and hsat(Twat,in) are + the specific enthalpies of the incoming moist air and saturated moist air + at the water inlet temperature. +

                      +

                      + The capacitances of water and air streams are defined as +

                      +

                      C*air=mair and + C*wat=mwatcp,wat/csat, +

                      +

                      + where csat is an specific heat capacity, which indicates the sensitivity + of the enthalpy of the staturated moist air w.r.t. the temperature, and is defined + here as csat=(hsat(Twat,out)-hsat(Twat,in)) + /(Twat,out-Twat,in). +

                      +

                      + The capacitance ratio and minimum capacitance are naturally defined as +

                      +

                      Cr*=min(C*air,C*wat)/max(C*air,C*wat) + and C*min=min(C*air,C*wat). +

                      +


                      + The number of transfer unit for the wet-coil is defined as NTU*=UA*/C*min, where +

                      +

                      + UA*=1/(1/(UAair/cp,air)+1/(UAwat/csat). +

                      + +

                      References

                      +

                      + Braun, James E. 1988. + "Methodologies for the Design and Control of Central Cooling Plants". + PhD Thesis. University of Wisconsin - Madison. + Available + + online. +

                      +

                      + Mitchell, John W., and James E. Braun. 2012a. + Principles of heating, ventilation, and air conditioning in buildings. + Hoboken, N.J.: Wiley. +

                      +

                      + Mitchell, John W., and James E. Braun. 2012b. + "Supplementary Material Chapter 2: Heat Exchangers for Cooling Applications". + Excerpt from Principles of heating, ventilation, and air conditioning in buildings. + Hoboken, N.J.: Wiley. + Available + + online. +

                      + "), + __Dymola_LockedEditing="Model from IBPSA"); +end WetCoilWetRegime; diff --git a/AixLib/Fluid/HeatExchangers/BaseClasses/determineWaterIndex.mo b/AixLib/Fluid/HeatExchangers/BaseClasses/determineWaterIndex.mo new file mode 100644 index 0000000000..a4506dfb33 --- /dev/null +++ b/AixLib/Fluid/HeatExchangers/BaseClasses/determineWaterIndex.mo @@ -0,0 +1,48 @@ +within AixLib.Fluid.HeatExchangers.BaseClasses; +function determineWaterIndex + "Determine the index of water in a 2-component medium model" + input String[:] substanceNames "Names of substances of media"; + output Integer idxWat "Index of water"; +protected + Boolean found(fixed=false) "Flag, used for error checking"; + Integer N = size(substanceNames, 1) "Number of substances"; +algorithm + found:=false; + idxWat := 1; + for i in 1:N loop + if Modelica.Utilities.Strings.isEqual( + string1=substanceNames[i], + string2="water", + caseSensitive=false) then + idxWat := i; + found := true; + end if; + end for; + assert(found, + "Did not find medium species 'water' in the medium model. " + + "Change medium model."); + annotation (Documentation(revisions=" +
                        +
                      • + April 19, 2017, by Michael Wetter:
                        + Removed assertion as function is valid also for other values than N==2. +
                      • +
                      • + March 17, 2017, by Michael O'Keefe:
                        + First implementation. +
                      • +
                      + ",info=" +

                      + Given an array of strings representing substance names, this function returns + the integer index of the substance named \"water\" (case-insensitive). +

                      + +

                      + This function is useful to automate lookup up the index of water within a media + so as to avoid hard-coding or guessing what the index will be. Typically, this + function would be run once at initialization time. +

                      + "), + __Dymola_LockedEditing="Model from IBPSA"); +end determineWaterIndex; diff --git a/AixLib/Fluid/HeatExchangers/BaseClasses/dynamicViscosityWater.mo b/AixLib/Fluid/HeatExchangers/BaseClasses/dynamicViscosityWater.mo index 45499aec22..4a835a6d89 100644 --- a/AixLib/Fluid/HeatExchangers/BaseClasses/dynamicViscosityWater.mo +++ b/AixLib/Fluid/HeatExchangers/BaseClasses/dynamicViscosityWater.mo @@ -1,7 +1,7 @@ within AixLib.Fluid.HeatExchangers.BaseClasses; function dynamicViscosityWater "Returns the dynamic viscosity for water" - input Modelica.SIunits.Temperature T "Thermodynamic state record"; - output Modelica.SIunits.DynamicViscosity mu "Dynamic viscosity"; + input Modelica.Units.SI.Temperature T "Thermodynamic state record"; + output Modelica.Units.SI.DynamicViscosity mu "Dynamic viscosity"; algorithm mu := ((2.86651*10^(-5))*T^4-0.039376307*T^3+20.32805026*T^2- 4680.303158*T+406389.0375)*10^(-6); @@ -10,22 +10,23 @@ algorithm //John Wiley & Sons, 1996 annotation(Documentation(info = " -

                      -This function is used to identify the dynamic viscosity of water at a given temperature. -The function used is a fourth order polynomial fit to data from Incropera and Dewitt (1996). -

                      -

                      References

                      -

                      -Fundamentals of Heat and Mass Transfer (Fourth Edition), Frank Incropera and David P. Dewitt, -John Wiley & Sons, 1996 -

                      -", +

                      + This function is used to identify the dynamic viscosity of water at a given temperature. + The function used is a fourth order polynomial fit to data from Incropera and Dewitt (1996). +

                      +

                      References

                      +

                      + Fundamentals of Heat and Mass Transfer (Fourth Edition), Frank Incropera and David P. Dewitt, + John Wiley & Sons, 1996 +

                      + ", revisions=" -
                        -
                      • -May 7, 2013 by Peter Grant:
                        -First implementation. -
                      • -
                      -")); +
                        +
                      • + May 7, 2013 by Peter Grant:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end dynamicViscosityWater; diff --git a/AixLib/Fluid/HeatExchangers/BaseClasses/epsilon_C.mo b/AixLib/Fluid/HeatExchangers/BaseClasses/epsilon_C.mo index 06a91d3b05..cd216e2446 100644 --- a/AixLib/Fluid/HeatExchangers/BaseClasses/epsilon_C.mo +++ b/AixLib/Fluid/HeatExchangers/BaseClasses/epsilon_C.mo @@ -1,30 +1,30 @@ within AixLib.Fluid.HeatExchangers.BaseClasses; function epsilon_C "Computes heat exchanger effectiveness for given capacity flow rates and heat exchanger flow regime" - input Modelica.SIunits.ThermalConductance UA "UA value"; - input Modelica.SIunits.ThermalConductance C1_flow + input Modelica.Units.SI.ThermalConductance UA "UA value"; + input Modelica.Units.SI.ThermalConductance C1_flow "Enthalpy flow rate medium 1"; - input Modelica.SIunits.ThermalConductance C2_flow + input Modelica.Units.SI.ThermalConductance C2_flow "Enthalpy flow rate medium 2"; input Integer flowRegime "Heat exchanger flow regime, see AixLib.Fluid.Types.HeatExchangerFlowRegime"; - input Modelica.SIunits.ThermalConductance CMin_flow_nominal + input Modelica.Units.SI.ThermalConductance CMin_flow_nominal "Minimum enthalpy flow rate at nominal condition"; - input Modelica.SIunits.ThermalConductance CMax_flow_nominal + input Modelica.Units.SI.ThermalConductance CMax_flow_nominal "Maximum enthalpy flow rate at nominal condition"; input Real delta = 1E-3 "Small value used for smoothing"; output Real eps(min=0, max=1) "Heat exchanger effectiveness"; protected - Modelica.SIunits.ThermalConductance deltaCMin + Modelica.Units.SI.ThermalConductance deltaCMin "Small number for capacity flow rate"; - Modelica.SIunits.ThermalConductance deltaCMax + Modelica.Units.SI.ThermalConductance deltaCMax "Small number for capacity flow rate"; - Modelica.SIunits.ThermalConductance CMin_flow "Minimum capacity flow rate"; - Modelica.SIunits.ThermalConductance CMax_flow "Maximum capacity flow rate"; - Modelica.SIunits.ThermalConductance CMinNZ_flow + Modelica.Units.SI.ThermalConductance CMin_flow "Minimum capacity flow rate"; + Modelica.Units.SI.ThermalConductance CMax_flow "Maximum capacity flow rate"; + Modelica.Units.SI.ThermalConductance CMinNZ_flow "Minimum capacity flow rate, bounded away from zero"; - Modelica.SIunits.ThermalConductance CMaxNZ_flow + Modelica.Units.SI.ThermalConductance CMaxNZ_flow "Maximum capacity flow rate, bounded away from zero"; Real gaiEps(min=0, max=1) "Gain used to force UA to zero for very small flow rates"; @@ -78,47 +78,48 @@ algorithm Inline=false, smoothOrder=1, Documentation(info=" -

                      -This function computes the heat exchanger effectiveness, -the Number of Transfer Units, and the capacity flow ratio -for given capacity flow rates. -

                      -

                      -The implementation allows for zero flow rate. -As CMin_flow crosses delta*CMin_flow_nominal from above, -the Number of Transfer Units and the heat exchanger effectiveness go to zero. -

                      -

                      -The different options for the flow regime are declared in - -AixLib.Fluid.Types.HeatExchangerFlowRegime. -

                      -", +

                      + This function computes the heat exchanger effectiveness, + the Number of Transfer Units, and the capacity flow ratio + for given capacity flow rates. +

                      +

                      + The implementation allows for zero flow rate. + As CMin_flow crosses delta*CMin_flow_nominal from above, + the Number of Transfer Units and the heat exchanger effectiveness go to zero. +

                      +

                      + The different options for the flow regime are declared in + + AixLib.Fluid.Types.HeatExchangerFlowRegime. +

                      + ", revisions=" -
                        -
                      • -January 10, 2018, by Michael Wetter:
                        -Removed outputs Z and NTU as they are not used by other models. -Removed if statement that can cause a discontinuous derivative. -
                      • -
                      • -July 7, 2014, by Michael Wetter:
                        -Changed the type of the input flowRegime from -AixLib.Fluid.Types.HeatExchangerFlowRegime -to Integer. -This was done to have the same argument list as - -AixLib.Fluid.HeatExchangers.BaseClasses.epsilon_ntuZ, -in which the type had to be changed. -
                      • -
                      • -July 6, 2014, by Michael Wetter:
                        -Removed unused import statement. -
                      • -
                      • -February 20, 2010, by Michael Wetter:
                        -First implementation. -
                      • -
                      -")); +
                        +
                      • + January 10, 2018, by Michael Wetter:
                        + Removed outputs Z and NTU as they are not used by other models. + Removed if statement that can cause a discontinuous derivative. +
                      • +
                      • + July 7, 2014, by Michael Wetter:
                        + Changed the type of the input flowRegime from + AixLib.Fluid.Types.HeatExchangerFlowRegime + to Integer. + This was done to have the same argument list as + + AixLib.Fluid.HeatExchangers.BaseClasses.epsilon_ntuZ, + in which the type had to be changed. +
                      • +
                      • + July 6, 2014, by Michael Wetter:
                        + Removed unused import statement. +
                      • +
                      • + February 20, 2010, by Michael Wetter:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end epsilon_C; diff --git a/AixLib/Fluid/HeatExchangers/BaseClasses/epsilon_ntuZ.mo b/AixLib/Fluid/HeatExchangers/BaseClasses/epsilon_ntuZ.mo index 270081574e..b4928f4c97 100644 --- a/AixLib/Fluid/HeatExchangers/BaseClasses/epsilon_ntuZ.mo +++ b/AixLib/Fluid/HeatExchangers/BaseClasses/epsilon_ntuZ.mo @@ -49,39 +49,40 @@ algorithm inverse(NTU=AixLib.Fluid.HeatExchangers.BaseClasses.ntu_epsilonZ(eps=eps, Z=Z, flowRegime=flowRegime)), smoothOrder=1, Documentation(info=" -

                      -This function computes the heat exchanger effectiveness for a given number of transfer units, capacity flow ratio and heat exchanger flow regime. -The different options for the flow regime are declared in - -AixLib.Fluid.Types.HeatExchangerFlowRegime. -

                      -", +

                      + This function computes the heat exchanger effectiveness for a given number of transfer units, capacity flow ratio and heat exchanger flow regime. + The different options for the flow regime are declared in + + AixLib.Fluid.Types.HeatExchangerFlowRegime. +

                      + ", revisions=" -
                        -
                      • -September 28, 2016, by Massimo Cimmino:
                        -Added case for constant temperature phase change on one side of -the heat exchanger. -
                      • -
                      • -July 7, 2014, by Michael Wetter:
                        -Changed the type of the input flowRegime from -AixLib.Fluid.Types.HeatExchangerFlowRegime -to Integer. -This was required because this argument is passed in Dymola 2015 in the function - -AixLib.Fluid.HeatExchangers.BaseClasses.epsilon_C -as an integer. Without this change, a translation warning occurs. -
                      • -
                      • -September 25, 2013, by Michael Wetter:
                        -Changed test in the assert statement as OpenModelica -had an error when comparing enumerations with integers. -
                      • -
                      • -February 11, 2010, by Michael Wetter:
                        -First implementation. -
                      • -
                      -")); +
                        +
                      • + September 28, 2016, by Massimo Cimmino:
                        + Added case for constant temperature phase change on one side of + the heat exchanger. +
                      • +
                      • + July 7, 2014, by Michael Wetter:
                        + Changed the type of the input flowRegime from + AixLib.Fluid.Types.HeatExchangerFlowRegime + to Integer. + This was required because this argument is passed in Dymola 2015 in the function + + AixLib.Fluid.HeatExchangers.BaseClasses.epsilon_C + as an integer. Without this change, a translation warning occurs. +
                      • +
                      • + September 25, 2013, by Michael Wetter:
                        + Changed test in the assert statement as OpenModelica + had an error when comparing enumerations with integers. +
                      • +
                      • + February 11, 2010, by Michael Wetter:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end epsilon_ntuZ; diff --git a/AixLib/Fluid/HeatExchangers/BaseClasses/isobaricExpansionCoefficientWater.mo b/AixLib/Fluid/HeatExchangers/BaseClasses/isobaricExpansionCoefficientWater.mo index 3177c14639..baa9ad5a8d 100644 --- a/AixLib/Fluid/HeatExchangers/BaseClasses/isobaricExpansionCoefficientWater.mo +++ b/AixLib/Fluid/HeatExchangers/BaseClasses/isobaricExpansionCoefficientWater.mo @@ -1,7 +1,7 @@ within AixLib.Fluid.HeatExchangers.BaseClasses; function isobaricExpansionCoefficientWater "Returns the isobaric expansion coefficient for water" - input Modelica.SIunits.Temperature T "Thermodynamic state record"; + input Modelica.Units.SI.Temperature T "Thermodynamic state record"; output Real beta( unit="1/K") "Dynamic viscosity"; algorithm beta := (-8.53296*10^(-6)*T^4+0.011562287*T^3-5.88800657*T^2+ @@ -11,23 +11,24 @@ algorithm //John Wiley & Sons, 1996 annotation(Documentation(info = " -

                      -This function is used to identify the isobaric expansion coefficient of water at a -given temperature. The function used is a fourth order polynomial fit to data from -Incropera and Dewitt (1996). -

                      -

                      References

                      -

                      -Fundamentals of Heat and Mass Transfer (Fourth Edition), Frank Incropera and David P. -Dewitt, John Wiley & Sons, 1996 -

                      -", +

                      + This function is used to identify the isobaric expansion coefficient of water at a + given temperature. The function used is a fourth order polynomial fit to data from + Incropera and Dewitt (1996). +

                      +

                      References

                      +

                      + Fundamentals of Heat and Mass Transfer (Fourth Edition), Frank Incropera and David P. + Dewitt, John Wiley & Sons, 1996 +

                      + ", revisions=" -
                        -
                      • -May 7, 2013 by Peter Grant:
                        -First implementation. -
                      • -
                      -")); +
                        +
                      • + May 7, 2013 by Peter Grant:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end isobaricExpansionCoefficientWater; diff --git a/AixLib/Fluid/HeatExchangers/BaseClasses/lmtd.mo b/AixLib/Fluid/HeatExchangers/BaseClasses/lmtd.mo new file mode 100644 index 0000000000..b03458c678 --- /dev/null +++ b/AixLib/Fluid/HeatExchangers/BaseClasses/lmtd.mo @@ -0,0 +1,41 @@ +within AixLib.Fluid.HeatExchangers.BaseClasses; +function lmtd "Log-mean temperature difference" + input Modelica.Units.SI.Temperature T_a1 "Temperature at port a1"; + input Modelica.Units.SI.Temperature T_b1 "Temperature at port b1"; + input Modelica.Units.SI.Temperature T_a2 "Temperature at port a2"; + input Modelica.Units.SI.Temperature T_b2 "Temperature at port b2"; + output Modelica.Units.SI.TemperatureDifference lmtd + "Log-mean temperature difference"; +protected + Modelica.Units.SI.TemperatureDifference dT1 "Temperature difference side 1"; + Modelica.Units.SI.TemperatureDifference dT2 "Temperature difference side 2"; +algorithm + dT1 :=T_a1 - T_b2; + dT2 :=T_b1 - T_a2; + lmtd :=(dT2 - dT1)/Modelica.Math.log(dT2/dT1); +annotation (preferredView="info", +Documentation(info=" +

                      + This function computes the log mean temperature difference of a heat exchanger. +

                      +

                      + Note that the implementation requires the temperature differences Ta1 - Tb2 and + Tb1 - Ta2 to be not equal to each other. +

                      + ", +revisions=" +
                        +
                      • + November 30, 2020, by Michael Wetter:
                        + Updated documentation.
                        + This is for + Buildings, #2268. +
                      • +
                      • + May 28, 2010, by Michael Wetter:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); +end lmtd; diff --git a/AixLib/Fluid/HeatExchangers/BaseClasses/ntu_epsilonZ.mo b/AixLib/Fluid/HeatExchangers/BaseClasses/ntu_epsilonZ.mo index 29a3d47574..6b17d827ef 100644 --- a/AixLib/Fluid/HeatExchangers/BaseClasses/ntu_epsilonZ.mo +++ b/AixLib/Fluid/HeatExchangers/BaseClasses/ntu_epsilonZ.mo @@ -18,11 +18,10 @@ protected input Real eps(min=0, max=0.999) "Heat exchanger effectiveness"; input Real Z(min=0, max=1) "Ratio of capacity flow rate (CMin/CMax)"; - protected - + protected Real NTUExp "Auxiliary variable"; - algorithm + algorithm NTUExp := u^(-0.22); y := 1 - Modelica.Math.exp( ( Modelica.Math.exp( - u * Z * NTUExp) - 1) / (Z * NTUExp))-eps; end epsilon_ntuZ_crossFlowUnmixed; @@ -32,9 +31,9 @@ algorithm a := Z+1; assert(eps < 1/a, "Invalid input data. eps > 1/(1+Z) is physically not possible for parallel flow. - Received eps = " + String(eps) + " - Z = " + String(Z) + " - 1/(Z+1) = " + String(1/a)); + Received eps = "+ String(eps) + " + Z = "+ String(Z) + " + 1/(Z+1) = "+ String(1/a)); NTU := -(Modelica.Math.log(1-eps*a))/(a); elseif (flowRegime == Integer(f.CounterFlow)) then// counter flow // a is constraining Z since eps is not defined for Z=1. @@ -87,60 +86,61 @@ algorithm inverse(eps=AixLib.Fluid.HeatExchangers.BaseClasses.epsilon_ntuZ(NTU=NTU, Z=Z, flowRegime=flowRegime)), smoothOrder=1, Documentation(info=" -

                      -This function computes the number of transfer units for a given heat exchanger effectiveness, -capacity flow ratio and heat exchanger flow regime. -The different options for the flow regime are declared in - -AixLib.Fluid.Types.HeatExchangerFlowRegime. -

                      -

                      -Note that for the flow regime CrossFlowUnmixed, computing the -function requires the numerical solution of an equation in one variable. -This is handled internally and not exposed to the global solver. -

                      -", +

                      + This function computes the number of transfer units for a given heat exchanger effectiveness, + capacity flow ratio and heat exchanger flow regime. + The different options for the flow regime are declared in + + AixLib.Fluid.Types.HeatExchangerFlowRegime. +

                      +

                      + Note that for the flow regime CrossFlowUnmixed, computing the + function requires the numerical solution of an equation in one variable. + This is handled internally and not exposed to the global solver. +

                      + ", revisions=" -
                        -
                      • -February 28, 2020, by Michael Wetter:
                        -Replaced call to Media.Common.OneNonLinearEquation to use - -Modelica.Math.Nonlinear.solveOneNonlinearEquation -because Media.Common.OneNonLinearEquation will be obsolete in MSL 4.0.0.
                        -This is for -issue 1299. -
                      • -
                      • -September 28, 2016, by Massimo Cimmino:
                        -Added case for constant temperature phase change on one side of -the heat exchanger. -
                      • -
                      • -July 7, 2014, by Michael Wetter:
                        -Changed the type of the input flowRegime from -AixLib.Fluid.Types.HeatExchangerFlowRegime -to Integer. -This was done to have the same argument list as - -AixLib.Fluid.HeatExchangers.BaseClasses.epsilon_ntuZ, -in which the type had to be changed. -
                      • -
                      • -April 29, 2013, by Michael Wetter:
                        -Added dummy argument to function call of Internal.solve -to avoid a warning during model check in Dymola 2015. -
                      • -
                      • -August 10, 2011, by Michael Wetter:
                        -Changed implementation to use -Modelica.Media.Common.OneNonLinearEquation instead of -AixLib.Utilities.Math.BaseClasses.OneNonLinearEquation. -
                      • -
                      • -February 11, 2010, by Michael Wetter:
                        -First implementation. -
                      • -
                      -")); +
                        +
                      • + February 28, 2020, by Michael Wetter:
                        + Replaced call to Media.Common.OneNonLinearEquation to use + + Modelica.Math.Nonlinear.solveOneNonlinearEquation + because Media.Common.OneNonLinearEquation will be obsolete in MSL 4.0.0.
                        + This is for + issue 1299. +
                      • +
                      • + September 28, 2016, by Massimo Cimmino:
                        + Added case for constant temperature phase change on one side of + the heat exchanger. +
                      • +
                      • + July 7, 2014, by Michael Wetter:
                        + Changed the type of the input flowRegime from + AixLib.Fluid.Types.HeatExchangerFlowRegime + to Integer. + This was done to have the same argument list as + + AixLib.Fluid.HeatExchangers.BaseClasses.epsilon_ntuZ, + in which the type had to be changed. +
                      • +
                      • + April 29, 2013, by Michael Wetter:
                        + Added dummy argument to function call of Internal.solve + to avoid a warning during model check in Dymola 2015. +
                      • +
                      • + August 10, 2011, by Michael Wetter:
                        + Changed implementation to use + Modelica.Media.Common.OneNonLinearEquation instead of + AixLib.Utilities.Math.BaseClasses.OneNonLinearEquation. +
                      • +
                      • + February 11, 2010, by Michael Wetter:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end ntu_epsilonZ; diff --git a/AixLib/Fluid/HeatExchangers/BaseClasses/package.order b/AixLib/Fluid/HeatExchangers/BaseClasses/package.order index 7f6a2c043b..5c8cd66e3b 100644 --- a/AixLib/Fluid/HeatExchangers/BaseClasses/package.order +++ b/AixLib/Fluid/HeatExchangers/BaseClasses/package.order @@ -5,10 +5,16 @@ Internal PartialEffectiveness PartialEffectivenessNTU PartialPrescribedOutlet +WetCoilDryRegime +WetCoilDryWetRegime +WetCoilUARated +WetCoilWetRegime +determineWaterIndex dynamicViscosityWater epsilon_C epsilon_ntuZ isobaricExpansionCoefficientWater +lmtd ntu_epsilonZ prandtlNumberWater Examples diff --git a/AixLib/Fluid/HeatExchangers/BaseClasses/prandtlNumberWater.mo b/AixLib/Fluid/HeatExchangers/BaseClasses/prandtlNumberWater.mo index b1476094f5..df6cc8fd1e 100644 --- a/AixLib/Fluid/HeatExchangers/BaseClasses/prandtlNumberWater.mo +++ b/AixLib/Fluid/HeatExchangers/BaseClasses/prandtlNumberWater.mo @@ -1,6 +1,6 @@ within AixLib.Fluid.HeatExchangers.BaseClasses; function prandtlNumberWater "Returns the Prandtl number for water" - input Modelica.SIunits.Temperature T "Thermodynamic state record"; + input Modelica.Units.SI.Temperature T "Thermodynamic state record"; output Real Pr "Prandtl number"; algorithm Pr := ((2.55713*10^(-7))*T^4-0.000350293*T^3+0.180259651*T^2- @@ -10,23 +10,24 @@ algorithm //John Wiley & Sons, 1996 annotation(Documentation(info = " -

                      -This function is used to identify the Prandtl number of water at a given temperature. -The function used is a fourth order polynomial fit to data from Incropera and Dewitt -(1996). -

                      -

                      References

                      -

                      -Fundamentals of Heat and Mass Transfer (Fourth Edition), Frank Incropera and David P. -Dewitt, John Wiley & Sons, 1996 -

                      -", +

                      + This function is used to identify the Prandtl number of water at a given temperature. + The function used is a fourth order polynomial fit to data from Incropera and Dewitt + (1996). +

                      +

                      References

                      +

                      + Fundamentals of Heat and Mass Transfer (Fourth Edition), Frank Incropera and David P. + Dewitt, John Wiley & Sons, 1996 +

                      + ", revisions=" -
                        -
                      • -May 7, 2013 by Peter Grant:
                        -First implementation. -
                      • -
                      -")); +
                        +
                      • + May 7, 2013 by Peter Grant:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end prandtlNumberWater; diff --git a/AixLib/Fluid/HeatExchangers/ConstantEffectiveness.mo b/AixLib/Fluid/HeatExchangers/ConstantEffectiveness.mo index 4c46935329..01aa5f22cd 100644 --- a/AixLib/Fluid/HeatExchangers/ConstantEffectiveness.mo +++ b/AixLib/Fluid/HeatExchangers/ConstantEffectiveness.mo @@ -10,7 +10,7 @@ model ConstantEffectiveness "Heat exchanger with constant effectiveness" mWat1_flow = 0, mWat2_flow = 0); - parameter Modelica.SIunits.Efficiency eps(max=1) = 0.8 + parameter Modelica.Units.SI.Efficiency eps(max=1) = 0.8 "Heat exchanger effectiveness"; annotation (Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100, @@ -21,55 +21,56 @@ model ConstantEffectiveness "Heat exchanger with constant effectiveness" fillColor={95,95,95}, fillPattern=FillPattern.Solid), Text( extent={{-56,-12},{54,-72}}, - lineColor={255,255,255}, + textColor={255,255,255}, textString="eps=%eps")}), preferredView="info", defaultComponentName="hex", Documentation(info=" -

                      -Model for a heat exchanger with constant effectiveness. -

                      -

                      -This model transfers heat in the amount of -

                      -

                      - Q = Qmax ε, -

                      -

                      -where ε is a constant effectiveness and -Qmax is the maximum heat that can be transferred. -

                      -

                      -For a heat and moisture exchanger, use - -AixLib.Fluid.MassExchangers.ConstantEffectiveness -instead of this model. -

                      -", +

                      + Model for a heat exchanger with constant effectiveness. +

                      +

                      + This model transfers heat in the amount of +

                      +

                      + Q = Qmax ε, +

                      +

                      + where ε is a constant effectiveness and + Qmax is the maximum heat that can be transferred. +

                      +

                      + For a heat and moisture exchanger, use + + AixLib.Fluid.MassExchangers.ConstantEffectiveness + instead of this model. +

                      + ", revisions=" -
                        -
                      • -August 13, 2013 by Michael Wetter:
                        -Corrected error in the documentation. -
                      • -
                      • -July 30, 2013 by Michael Wetter:
                        -Updated model to use new variable mWat_flow -in the base class. -
                      • -
                      • -January 28, 2010, by Michael Wetter:
                        -Added regularization near zero flow. -
                      • -
                      • -October 2, 2009, by Michael Wetter:
                        -Changed computation of inlet temperatures to use -state_*_inflow which is already known in base class. -
                      • -
                      • -April 28, 2008, by Michael Wetter:
                        -First implementation. -
                      • -
                      -")); +
                        +
                      • + August 13, 2013 by Michael Wetter:
                        + Corrected error in the documentation. +
                      • +
                      • + July 30, 2013 by Michael Wetter:
                        + Updated model to use new variable mWat_flow + in the base class. +
                      • +
                      • + January 28, 2010, by Michael Wetter:
                        + Added regularization near zero flow. +
                      • +
                      • + October 2, 2009, by Michael Wetter:
                        + Changed computation of inlet temperatures to use + state_*_inflow which is already known in base class. +
                      • +
                      • + April 28, 2008, by Michael Wetter:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end ConstantEffectiveness; diff --git a/AixLib/Fluid/HeatExchangers/DryCoilEffectivenessNTU.mo b/AixLib/Fluid/HeatExchangers/DryCoilEffectivenessNTU.mo index 969c331646..a0d470e938 100644 --- a/AixLib/Fluid/HeatExchangers/DryCoilEffectivenessNTU.mo +++ b/AixLib/Fluid/HeatExchangers/DryCoilEffectivenessNTU.mo @@ -36,49 +36,50 @@ equation preferredView="info", defaultComponentName="hex", Documentation(info=" -

                      -Model of a coil without humidity condensation. -This model transfers heat in the amount of -

                      -

                      - Q̇ = Q̇max ε
                      - ε = f(NTU, Z, flowRegime), -

                      -

                      -where -max is the maximum heat that can be transferred, -ε is the heat transfer effectiveness, -NTU is the Number of Transfer Units, -Z is the ratio of minimum to maximum capacity flow rate and -flowRegime is the heat exchanger flow regime. -such as -parallel flow, cross flow or counter flow. -

                      -

                      -The flow regimes depend on the heat exchanger configuration. All configurations -defined in - -AixLib.Fluid.Types.HeatExchangerConfiguration -are supported. -

                      -

                      -The convective heat transfer coefficients scale proportional to -(ṁ/ṁ0)n, where - is the mass flow rate, -0 is the nominal mass flow rate, and -n=0.8 on the air-side and n=0.85 on the water side. -

                      -

                      -For a heat and moisture exchanger, use - -AixLib.Fluid.MassExchangers.ConstantEffectiveness. -

                      -", revisions=" -
                        -
                      • -September 25, 2018, by Michael Wetter:
                        -Refactored model to use a common base class. -
                      • -
                      -")); +

                      + Model of a coil without humidity condensation. + This model transfers heat in the amount of +

                      +

                      + Q̇ = Q̇max ε
                      + ε = f(NTU, Z, flowRegime), +

                      +

                      + where + max is the maximum heat that can be transferred, + ε is the heat transfer effectiveness, + NTU is the Number of Transfer Units, + Z is the ratio of minimum to maximum capacity flow rate and + flowRegime is the heat exchanger flow regime. + such as + parallel flow, cross flow or counter flow. +

                      +

                      + The flow regimes depend on the heat exchanger configuration. All configurations + defined in + + AixLib.Fluid.Types.HeatExchangerConfiguration + are supported. +

                      +

                      + The convective heat transfer coefficients scale proportional to + (ṁ/ṁ0)n, where + is the mass flow rate, + 0 is the nominal mass flow rate, and + n=0.8 on the air-side and n=0.85 on the water side. +

                      +

                      + For a heat and moisture exchanger, use + + AixLib.Fluid.MassExchangers.ConstantEffectiveness. +

                      + ",revisions=" +
                        +
                      • + September 25, 2018, by Michael Wetter:
                        + Refactored model to use a common base class. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end DryCoilEffectivenessNTU; diff --git a/AixLib/Fluid/HeatExchangers/DynamicHX.mo b/AixLib/Fluid/HeatExchangers/DynamicHX.mo index bc08fcaea8..0cc7d2780a 100644 --- a/AixLib/Fluid/HeatExchangers/DynamicHX.mo +++ b/AixLib/Fluid/HeatExchangers/DynamicHX.mo @@ -1,21 +1,24 @@ -within AixLib.Fluid.HeatExchangers; +within AixLib.Fluid.HeatExchangers; model DynamicHX "Simple dynamic heat exchanger model" extends Interfaces.FourPortHeatExchanger; - parameter Modelica.SIunits.Time tau_C = 10 "Time constant of heat capacity at nominal heat flow and temperature difference." - annotation(Dialog(tab = "Dynamics",group = "Nominal condition")); - parameter Modelica.SIunits.TemperatureDifference dT_nom "Temperature difference at nominal conditions (used to calculate Gc)" annotation(Dialog(group = "Heat Transfer")); + parameter Modelica.Units.SI.Time tau_C=10 + "Time constant of heat capacity at nominal heat flow and temperature difference." + annotation (Dialog(tab="Dynamics", group="Nominal condition")); + parameter Modelica.Units.SI.TemperatureDifference dT_nom + "Temperature difference at nominal conditions (used to calculate Gc)" + annotation (Dialog(group="Heat Transfer")); Modelica.Thermal.HeatTransfer.Components.HeatCapacitor heatCapacitor[nNodes]( each final C=Q_nom/dT_nom*tau_C/nNodes, each final T(fixed=true, start=TCapacity_start)) annotation (Placement(transformation(extent={{-10,0},{10,20}}))); - parameter Modelica.SIunits.HeatFlowRate Q_nom "Temperature difference at nominal conditions (used to calculate Gc)" annotation(Dialog(group = "Heat Transfer")); - parameter Modelica.SIunits.Temperature TCapacity_start=(T1_start + T2_start)/2 + parameter Modelica.Units.SI.HeatFlowRate Q_nom "Temperature difference at nominal conditions (used to calculate Gc)" annotation(Dialog(group = "Heat Transfer")); + parameter Modelica.Units.SI.Temperature TCapacity_start=(T1_start + T2_start)/2 "Start value of temperature" annotation(Dialog(tab="Initialization", group="Heat capacity")); - parameter Modelica.Blocks.Interfaces.RealInput Gc1(unit="W/K") = Q_nom/dT_nom*2/nNodes + parameter Modelica.Units.SI.ThermalConductance Gc1 = Q_nom/dT_nom*2/nNodes "Signal representing the convective thermal conductance in [W/K]" annotation(Dialog(group = "Heat Transfer")); - parameter Modelica.Blocks.Interfaces.RealInput Gc2(unit="W/K") = Q_nom/dT_nom*2/nNodes + parameter Modelica.Units.SI.ThermalConductance Gc2 = Q_nom/dT_nom*2/nNodes "Signal representing the convective thermal conductance in [W/K]" annotation(Dialog(group = "Heat Transfer")); Modelica.Blocks.Sources.RealExpression Gc1_Expression[nNodes]( each final y=Gc1) diff --git a/AixLib/Fluid/HeatExchangers/EvaporatorCondenser.mo b/AixLib/Fluid/HeatExchangers/EvaporatorCondenser.mo index a24a5af2ad..7163b1475f 100644 --- a/AixLib/Fluid/HeatExchangers/EvaporatorCondenser.mo +++ b/AixLib/Fluid/HeatExchangers/EvaporatorCondenser.mo @@ -5,11 +5,11 @@ model EvaporatorCondenser AixLib.Fluid.MixingVolumes.MixingVolume vol(final prescribedHeatFlowRate=false)); - parameter Modelica.SIunits.ThermalConductance UA + parameter Modelica.Units.SI.ThermalConductance UA "Thermal conductance of heat exchanger"; - parameter Modelica.SIunits.ThermalConductance UA_small=UA/10 + parameter Modelica.Units.SI.ThermalConductance UA_small=UA/10 "Small thermal conductance for regularisation of heat transfer " - annotation(Dialog(tab = "Advanced")); + annotation (Dialog(tab="Advanced")); Modelica.Blocks.Interfaces.RealOutput Q_flow(unit="W") "Heat added to the fluid" @@ -22,19 +22,18 @@ model EvaporatorCondenser annotation (Placement(transformation(extent={{-5,-55},{5,-65}}), iconTransformation(extent={{-5,-55},{5,-65}}))); - Modelica.SIunits.Efficiency NTU = UA / - (AixLib.Utilities.Math.Functions.smoothMax(abs(port_a.m_flow),m_flow_small,m_flow_small)*cp_default) - "Number of transfer units of heat exchanger"; + Modelica.Units.SI.Efficiency NTU=UA/(AixLib.Utilities.Math.Functions.smoothMax( + abs(port_a.m_flow), + m_flow_small, + m_flow_small)*cp_default) "Number of transfer units of heat exchanger"; - Modelica.SIunits.Efficiency eps= - AixLib.Utilities.Math.Functions.smoothMin( + Modelica.Units.SI.Efficiency eps=AixLib.Utilities.Math.Functions.smoothMin( AixLib.Fluid.HeatExchangers.BaseClasses.epsilon_ntuZ( - NTU, - 0, - Integer(AixLib.Fluid.Types.HeatExchangerFlowRegime.ConstantTemperaturePhaseChange)), + NTU, + 0, + Integer(AixLib.Fluid.Types.HeatExchangerFlowRegime.ConstantTemperaturePhaseChange)), 0.999, - 1.0e-4) - "Effectiveness of heat exchanger"; + 1.0e-4) "Effectiveness of heat exchanger"; Modelica.Blocks.Sources.RealExpression UAeff( final y=AixLib.Utilities.Math.Functions.smoothMax( @@ -45,9 +44,9 @@ model EvaporatorCondenser annotation (Placement(transformation(extent={{-88,-80},{-68,-60}}))); protected - parameter Modelica.SIunits.SpecificHeatCapacity cp_default= - Medium.specificHeatCapacityCp(sta_default) - "Density, used to compute fluid volume"; + parameter Modelica.Units.SI.SpecificHeatCapacity cp_default= + Medium.specificHeatCapacityCp(sta_default) + "Density, used to compute fluid volume"; Modelica.Thermal.HeatTransfer.Sensors.HeatFlowSensor heaFlo "Heat flow sensor" @@ -90,50 +89,57 @@ equation fillPattern=FillPattern.Solid), Text( extent={{72,94},{116,66}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="Q_flow")}), defaultComponentName="evaCon", Documentation(info=" -

                      -Model for a constant temperature evaporator or condenser based on a ε-NTU -heat exchanger model. -

                      -

                      -The heat exchanger effectiveness is calculated from the number of transfer units -(NTU): -

                      -

                      -ε = 1 - exp(UA ⁄ (ṁ cp)) -

                      -

                      -Optionally, this model can have a flow resistance. -If no flow resistance is requested, set dp_nominal=0. -

                      -

                      Limitations

                      -

                      -This model does not consider any superheating or supercooling on the refrigerant -side. The refrigerant is considered to exchange heat at a constant temperature -throughout the heat exchanger. -

                      -", +

                      + Model for a constant temperature evaporator or condenser based on a ε-NTU + heat exchanger model. +

                      +

                      + The heat exchanger effectiveness is calculated from the number of transfer units + (NTU): +

                      +

                      + ε = 1 - exp(UA ⁄ (ṁ cp)) +

                      +

                      + Optionally, this model can have a flow resistance. + If no flow resistance is requested, set dp_nominal=0. +

                      +

                      Limitations

                      +

                      + This model does not consider any superheating or supercooling on the refrigerant + side. The refrigerant is considered to exchange heat at a constant temperature + throughout the heat exchanger. +

                      + ", revisions=" -
                        -
                      • -May 27, 2017, by Filip Jorissen:
                        -Regularised heat transfer around zero flow.
                        -This is for -#769. -
                      • -
                      • -April 12, 2017, by Michael Wetter:
                        -Corrected invalid syntax for computing the specific heat capacity.
                        -This is for -#707. -
                      • -
                      • -October 11, 2016, by Massimo Cimmino:
                        -First implementation. -
                      • -
                      -")); +
                        +
                      • + March 7, 2022, by Michael Wetter:
                        + Removed massDynamics.
                        + This is for + #1542. +
                      • +
                      • + May 27, 2017, by Filip Jorissen:
                        + Regularised heat transfer around zero flow.
                        + This is for + #769. +
                      • +
                      • + April 12, 2017, by Michael Wetter:
                        + Corrected invalid syntax for computing the specific heat capacity.
                        + This is for + #707. +
                      • +
                      • + October 11, 2016, by Massimo Cimmino:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end EvaporatorCondenser; diff --git a/AixLib/Fluid/HeatExchangers/EvaporatorCondenserWithCapacity.mo b/AixLib/Fluid/HeatExchangers/EvaporatorCondenserWithCapacity.mo index a2950e4292..828f83c3da 100644 --- a/AixLib/Fluid/HeatExchangers/EvaporatorCondenserWithCapacity.mo +++ b/AixLib/Fluid/HeatExchangers/EvaporatorCondenserWithCapacity.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.HeatExchangers; +within AixLib.Fluid.HeatExchangers; model EvaporatorCondenserWithCapacity extends AixLib.Fluid.Interfaces.TwoPortHeatMassExchanger( redeclare final AixLib.Fluid.MixingVolumes.MixingVolume vol( @@ -9,18 +9,18 @@ model EvaporatorCondenserWithCapacity parameter Boolean is_con "Type of heat exchanger" annotation (Dialog( descriptionLabel = true),choices(choice=true "Condenser", choice=false "Evaporator", radioButtons=true)); - parameter Modelica.SIunits.Volume V "Volume in condenser"; + parameter Modelica.Units.SI.Volume V "Volume in condenser"; parameter Boolean use_cap=true "False if capacity and heat losses are neglected" annotation (Dialog(group="Heat losses"),choices(checkBox=true)); - parameter Modelica.SIunits.HeatCapacity C "Capacity of heat exchanger. If you want to neglace the dry mass of the heat exchanger, you can set this value to zero" + parameter Modelica.Units.SI.HeatCapacity C + "Capacity of heat exchanger. If you want to neglace the dry mass of the heat exchanger, you can set this value to zero" annotation (Dialog(group="Heat losses", enable=use_cap)); - parameter Modelica.SIunits.Temperature TCap_start=Medium.T_default + parameter Modelica.Units.SI.Temperature TCap_start=Medium.T_default "Initial temperature of heat capacity" annotation (Dialog(tab="Initialization", group="Capacity")); - Modelica.SIunits.ThermalConductance GOut + Modelica.Units.SI.ThermalConductance GOut "Formular for calculation of heat transfer coefficient on the outside. If you want to simulate a heat exchanger with additional dry mass but without external heat losses, set the value to zero" - annotation (Dialog(group= - "Heat losses", enable=use_cap)); + annotation (Dialog(group="Heat losses", enable=use_cap)); Modelica.Blocks.Interfaces.RealOutput GInn "Formular for calculation of heat transfer coefficient on the inside" annotation (Dialog(group= diff --git a/AixLib/Fluid/HeatExchangers/Examples/AirHeater_T.mo b/AixLib/Fluid/HeatExchangers/Examples/AirHeater_T.mo index f7c0286fe6..be126c2e2b 100644 --- a/AixLib/Fluid/HeatExchangers/Examples/AirHeater_T.mo +++ b/AixLib/Fluid/HeatExchangers/Examples/AirHeater_T.mo @@ -32,46 +32,47 @@ equation connect(mov.port_b, hea.port_a) annotation (Line(points={{-50,-40},{-35,-40}, {-20,-40}}, color={0,127,255})); annotation ( Documentation(info=" -

                      -This example illustrates how to use the heater model that takes as an -input the leaving fluid temperature. -

                      -

                      -The model consist of an air volume with heat loss to the ambient. -The set point of the air temperature is different between night and day. -The heater tracks the set point temperature, except for the periods in -which the air temperature is above the set point. -

                      -

                      -See - -AixLib.Fluid.HeatExchangers.Examples.AirHeater_u -for a model that takes the heating power as an input. -

                      -", revisions=" -
                        -
                      • -May 8, 2017, by Michael Wetter:
                        -Updated heater model.
                        -This is for - -AixLib, #763. -
                      • -
                      • -January 6, 2015, by Michael Wetter:
                        -Revised implementation. -
                      • -
                      • -November 12, 2014, by Michael Wetter:
                        -First implementation. -
                      • -
                      -"), +

                      + This example illustrates how to use the heater model that takes as an + input the leaving fluid temperature. +

                      +

                      + The model consist of an air volume with heat loss to the ambient. + The set point of the air temperature is different between night and day. + The heater tracks the set point temperature, except for the periods in + which the air temperature is above the set point. +

                      +

                      + See + + AixLib.Fluid.HeatExchangers.Examples.AirHeater_u + for a model that takes the heating power as an input. +

                      + ",revisions=" +
                        +
                      • + May 8, 2017, by Michael Wetter:
                        + Updated heater model.
                        + This is for + + AixLib, #763. +
                      • +
                      • + January 6, 2015, by Michael Wetter:
                        + Revised implementation. +
                      • +
                      • + November 12, 2014, by Michael Wetter:
                        + First implementation. +
                      • +
                      + "), __Dymola_Commands(file= "modelica://AixLib/Resources/Scripts/Dymola/Fluid/HeatExchangers/Examples/AirHeater_T.mos" "Simulate and plot"), experiment( StopTime=172800, Tolerance=1e-08), Diagram(coordinateSystem(extent={{-100,-100},{120,100}})), - Icon(coordinateSystem(extent={{-100,-100},{120,100}}))); + Icon(coordinateSystem(extent={{-100,-100},{120,100}})), + __Dymola_LockedEditing="Model from IBPSA"); end AirHeater_T; diff --git a/AixLib/Fluid/HeatExchangers/Examples/AirHeater_u.mo b/AixLib/Fluid/HeatExchangers/Examples/AirHeater_u.mo index 37ddff19be..39e4391735 100644 --- a/AixLib/Fluid/HeatExchangers/Examples/AirHeater_u.mo +++ b/AixLib/Fluid/HeatExchangers/Examples/AirHeater_u.mo @@ -25,41 +25,41 @@ equation connect(mov.port_b, hea.port_a) annotation (Line(points={{-50,-40},{-36,-40}, {-20,-40}}, color={0,127,255})); annotation ( Documentation(info=" -

                      -This example illustrates how to use the heater model that takes as an -input the heat added to the medium. -

                      -

                      -The model consist of an air volume with heat loss to the ambient. -The set point of the air temperature is different between night and day. -The heater tracks the set point temperature, except for the periods in -which the air temperature is above the set point. -

                      -

                      -See - -AixLib.Fluid.HeatExchangers.Examples.AirHeater_T -for a model that takes the leaving air temperature as an input. -

                      -", revisions=" -
                        -
                      • -May 8, 2017, by Michael Wetter:
                        -Updated heater model.
                        -This is for - -AixLib, #763. -
                      • -
                      • -January 6, 2015, by Michael Wetter:
                        -Revised implementation. -
                      • -
                      • -November 12, 2014, by Michael Wetter:
                        -First implementation. -
                      • -
                      -"), +

                      + This example illustrates how to use the heater model that takes as an + input the heat added to the medium. +

                      +

                      + The model consist of an air volume with heat loss to the ambient. + The set point of the air temperature is different between night and day. + The heater tracks the set point temperature, except for the periods in + which the air temperature is above the set point. +

                      +

                      + See + + AixLib.Fluid.HeatExchangers.Examples.AirHeater_T + for a model that takes the leaving air temperature as an input. +

                      + ",revisions=" +
                        +
                      • + May 8, 2017, by Michael Wetter:
                        + Updated heater model.
                        + This is for + + AixLib, #763. +
                      • +
                      • + January 6, 2015, by Michael Wetter:
                        + Revised implementation. +
                      • +
                      • + November 12, 2014, by Michael Wetter:
                        + First implementation. +
                      • +
                      + "), __Dymola_Commands(file= "modelica://AixLib/Resources/Scripts/Dymola/Fluid/HeatExchangers/Examples/AirHeater_u.mos" "Simulate and plot"), experiment( @@ -67,5 +67,6 @@ First implementation. Tolerance=1e-6), Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{ 120,100}})), - Icon(coordinateSystem(extent={{-100,-100},{120,100}}))); + Icon(coordinateSystem(extent={{-100,-100},{120,100}})), + __Dymola_LockedEditing="Model from IBPSA"); end AirHeater_u; diff --git a/AixLib/Fluid/HeatExchangers/Examples/BaseClasses/EffectivenessNTUMassFlow.mo b/AixLib/Fluid/HeatExchangers/Examples/BaseClasses/EffectivenessNTUMassFlow.mo index 3890a4bd56..6ff9d74f17 100644 --- a/AixLib/Fluid/HeatExchangers/Examples/BaseClasses/EffectivenessNTUMassFlow.mo +++ b/AixLib/Fluid/HeatExchangers/Examples/BaseClasses/EffectivenessNTUMassFlow.mo @@ -4,20 +4,20 @@ partial model EffectivenessNTUMassFlow package Medium1 = AixLib.Media.Water "Medium model for water"; package Medium2 = AixLib.Media.Air "Medium model for air"; - parameter Modelica.SIunits.Temperature T_a1_nominal=5 + 273.15 + parameter Modelica.Units.SI.Temperature T_a1_nominal=5 + 273.15 "Nominal water inlet temperature"; - parameter Modelica.SIunits.Temperature T_b1_nominal=10 + 273.15 + parameter Modelica.Units.SI.Temperature T_b1_nominal=10 + 273.15 "Nominal water outlet temperature"; - parameter Modelica.SIunits.Temperature T_a2_nominal=30 + 273.15 + parameter Modelica.Units.SI.Temperature T_a2_nominal=30 + 273.15 "Nominal air inlet temperature"; - parameter Modelica.SIunits.Temperature T_b2_nominal=15 + 273.15 + parameter Modelica.Units.SI.Temperature T_b2_nominal=15 + 273.15 "Nominal air outlet temperature"; - parameter Modelica.SIunits.HeatFlowRate Q_flow_nominal = m1_flow_nominal*4200*(T_a1_nominal-T_b1_nominal) - "Nominal heat transfer"; - parameter Modelica.SIunits.MassFlowRate m1_flow_nominal=0.1 + parameter Modelica.Units.SI.HeatFlowRate Q_flow_nominal=m1_flow_nominal*4200* + (T_a1_nominal - T_b1_nominal) "Nominal heat transfer"; + parameter Modelica.Units.SI.MassFlowRate m1_flow_nominal=0.1 "Nominal mass flow rate medium 1"; - parameter Modelica.SIunits.MassFlowRate m2_flow_nominal=m1_flow_nominal*4200/ - 1000*(T_a1_nominal - T_b1_nominal)/(T_b2_nominal - T_a2_nominal) + parameter Modelica.Units.SI.MassFlowRate m2_flow_nominal=m1_flow_nominal*4200 + /1000*(T_a1_nominal - T_b1_nominal)/(T_b2_nominal - T_a2_nominal) "Nominal mass flow rate medium 2"; AixLib.Fluid.Sources.MassFlowSource_T sin_2( redeclare package Medium = Medium2, @@ -98,5 +98,6 @@ equation color={0,0,127}, smooth=Smooth.None)); annotation (Diagram(coordinateSystem(preserveAspectRatio=false,extent={{-100, - -100},{200,200}}), graphics)); + -100},{200,200}}), graphics), + __Dymola_LockedEditing="Model from IBPSA"); end EffectivenessNTUMassFlow; diff --git a/AixLib/Fluid/HeatExchangers/Examples/BaseClasses/Heater.mo b/AixLib/Fluid/HeatExchangers/Examples/BaseClasses/Heater.mo index ac6070d75d..ae3f30e873 100644 --- a/AixLib/Fluid/HeatExchangers/Examples/BaseClasses/Heater.mo +++ b/AixLib/Fluid/HeatExchangers/Examples/BaseClasses/Heater.mo @@ -4,11 +4,11 @@ partial model Heater "Base class for example model for the heater and cooler" replaceable package Medium = Modelica.Media.Interfaces.PartialMedium "Medium model"; - parameter Modelica.SIunits.Volume V = 6*6*2.7 "Volume"; + parameter Modelica.Units.SI.Volume V=6*6*2.7 "Volume"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal = V*1.2*6/3600 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=V*1.2*6/3600 "Nominal mass flow rate"; - parameter Modelica.SIunits.HeatFlowRate Q_flow_nominal = 30*6*6 + parameter Modelica.Units.SI.HeatFlowRate Q_flow_nominal=30*6*6 "Nominal heat loss of the room"; AixLib.Fluid.MixingVolumes.MixingVolume vol( @@ -106,55 +106,56 @@ equation -20},{52.6667,-10}}, color={0,127,255})); annotation ( Documentation(info=" -

                      -This partial model is used to construct the models - -AixLib.Fluid.HeatExchangers.Examples.AirHeater_T -and - -AixLib.Fluid.HeatExchangers.Examples.AirHeater_u and -the similar models - -AixLib.Fluid.HeatExchangers.Examples.WaterHeater_T -and - -AixLib.Fluid.HeatExchangers.Examples.WaterHeater_u. -It consists of a volume with heat loss to the ambient, -a fan, -a set point for the temperature of the volume and a PI controller. -

                      -

                      -The instance bou is required to set a reference pressure -for system models in which the fluid is modelled as an incompressible fluid, -and it also is required to account for a variation of density of the fluid. -

                      -", revisions=" -
                        -
                      • -May 15, 2019, by Jianjun Hu:
                        -Replaced fluid source. This is for - #1072. -
                      • -
                      • -May 8, 2017, by Michael Wetter:
                        -Updated model for new heater model.
                        -This is for - -AixLib, #763. -
                      • -
                      • February 20, 2016, by Ruben Baetens:
                        -Removal of dynamicBalance as parameter for massDynamics and energyDynamics. -
                      • -
                      • -January 6, 2015, by Michael Wetter:
                        -Revised implementation. -
                      • -
                      • -November 12, 2014, by Michael Wetter:
                        -First implementation. -
                      • -
                      -"), Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-100, +

                      + This partial model is used to construct the models + + AixLib.Fluid.HeatExchangers.Examples.AirHeater_T + and + + AixLib.Fluid.HeatExchangers.Examples.AirHeater_u and + the similar models + + AixLib.Fluid.HeatExchangers.Examples.WaterHeater_T + and + + AixLib.Fluid.HeatExchangers.Examples.WaterHeater_u. + It consists of a volume with heat loss to the ambient, + a fan, + a set point for the temperature of the volume and a PI controller. +

                      +

                      + The instance bou is required to set a reference pressure + for system models in which the fluid is modelled as an incompressible fluid, + and it also is required to account for a variation of density of the fluid. +

                      + ",revisions=" +
                        +
                      • + May 15, 2019, by Jianjun Hu:
                        + Replaced fluid source. This is for + #1072. +
                      • +
                      • + May 8, 2017, by Michael Wetter:
                        + Updated model for new heater model.
                        + This is for + + AixLib, #763. +
                      • +
                      • February 20, 2016, by Ruben Baetens:
                        + Removal of dynamicBalance as parameter for massDynamics and energyDynamics. +
                      • +
                      • + January 6, 2015, by Michael Wetter:
                        + Revised implementation. +
                      • +
                      • + November 12, 2014, by Michael Wetter:
                        + First implementation. +
                      • +
                      + "),Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-100, -100},{120,100}})), - Icon(coordinateSystem(extent={{-100,-100},{120,100}}))); + Icon(coordinateSystem(extent={{-100,-100},{120,100}})), + __Dymola_LockedEditing="Model from IBPSA"); end Heater; diff --git a/AixLib/Fluid/HeatExchangers/Examples/DryCoilEffectivenessNTUMassFlow.mo b/AixLib/Fluid/HeatExchangers/Examples/DryCoilEffectivenessNTUMassFlow.mo index 83e3693a9d..56d1c2f6d3 100644 --- a/AixLib/Fluid/HeatExchangers/Examples/DryCoilEffectivenessNTUMassFlow.mo +++ b/AixLib/Fluid/HeatExchangers/Examples/DryCoilEffectivenessNTUMassFlow.mo @@ -58,18 +58,19 @@ __Dymola_Commands(file= "modelica://AixLib/Resources/Scripts/Dymola/Fluid/HeatExchangers/Examples/DryCoilEffectivenessNTUMassFlow.mos" "Simulate and plot"), Documentation(info=" -

                      -This model tests - -AixLib.Fluid.HeatExchangers.DryCoilEffectivenessNTU -for different mass flow rates. -

                      -", revisions=" -
                        -
                      • -February 12, 2010, by Michael Wetter:
                        -First implementation. -
                      • -
                      -")); +

                      + This model tests + + AixLib.Fluid.HeatExchangers.DryCoilEffectivenessNTU + for different mass flow rates. +

                      + ",revisions=" +
                        +
                      • + February 12, 2010, by Michael Wetter:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end DryCoilEffectivenessNTUMassFlow; diff --git a/AixLib/Fluid/HeatExchangers/Examples/DryCoilEffectivenessNTUPControl.mo b/AixLib/Fluid/HeatExchangers/Examples/DryCoilEffectivenessNTUPControl.mo index 5e1d172b6c..765883ef39 100644 --- a/AixLib/Fluid/HeatExchangers/Examples/DryCoilEffectivenessNTUPControl.mo +++ b/AixLib/Fluid/HeatExchangers/Examples/DryCoilEffectivenessNTUPControl.mo @@ -5,17 +5,18 @@ model DryCoilEffectivenessNTUPControl package Medium1 = AixLib.Media.Water "Medium model for water"; package Medium2 = AixLib.Media.Air "Medium model for air"; - parameter Modelica.SIunits.Temperature T_a1_nominal = 60+273.15 + parameter Modelica.Units.SI.Temperature T_a1_nominal=60 + 273.15 "Temperature at nominal conditions as port a1"; - parameter Modelica.SIunits.Temperature T_b1_nominal = 50+273.15 + parameter Modelica.Units.SI.Temperature T_b1_nominal=50 + 273.15 "Temperature at nominal conditions as port b1"; - parameter Modelica.SIunits.Temperature T_a2_nominal = 20+273.15 + parameter Modelica.Units.SI.Temperature T_a2_nominal=20 + 273.15 "Temperature at nominal conditions as port a2"; - parameter Modelica.SIunits.Temperature T_b2_nominal = 40+273.15 + parameter Modelica.Units.SI.Temperature T_b2_nominal=40 + 273.15 "Temperature at nominal conditions as port b2"; - parameter Modelica.SIunits.MassFlowRate m1_flow_nominal = 5 + parameter Modelica.Units.SI.MassFlowRate m1_flow_nominal=5 "Nominal mass flow rate medium 1"; - parameter Modelica.SIunits.MassFlowRate m2_flow_nominal = m1_flow_nominal*4200/1000*(T_a1_nominal-T_b1_nominal)/(T_b2_nominal-T_a2_nominal) + parameter Modelica.Units.SI.MassFlowRate m2_flow_nominal=m1_flow_nominal*4200 + /1000*(T_a1_nominal - T_b1_nominal)/(T_b2_nominal - T_a2_nominal) "Nominal mass flow rate medium 2"; AixLib.Fluid.Sources.Boundary_pT sin_2( @@ -129,32 +130,33 @@ __Dymola_Commands(file= "modelica://AixLib/Resources/Scripts/Dymola/Fluid/HeatExchangers/Examples/DryCoilEffectivenessNTUPControl.mos" "Simulate and plot"), Documentation(info=" -

                      -This model demonstrates the use of - -AixLib.Fluid.HeatExchangers.DryCoilEffectivenessNTU. -The valve on the water-side is regulated to track a setpoint temperature -for the air outlet. -

                      -", +

                      + This model demonstrates the use of + + AixLib.Fluid.HeatExchangers.DryCoilEffectivenessNTU. + The valve on the water-side is regulated to track a setpoint temperature + for the air outlet. +

                      + ", revisions=" -
                        -
                      • -December 22, 2014 by Michael Wetter:
                        -Removed Modelica.Fluid.System -to address issue -#311. -
                      • -
                      • -July 3, 2014, by Michael Wetter:
                        -Changed pressure sink to mass flow rate sink to avoid an overdetermined -by consistent set of initial conditions. -
                      • -
                      • -March 1, 2013, by Michael Wetter:
                        -Added nominal pressure drop for valve as -this parameter no longer has a default value. -
                      • -
                      -")); +
                        +
                      • + December 22, 2014 by Michael Wetter:
                        + Removed Modelica.Fluid.System + to address issue + #311. +
                      • +
                      • + July 3, 2014, by Michael Wetter:
                        + Changed pressure sink to mass flow rate sink to avoid an overdetermined + by consistent set of initial conditions. +
                      • +
                      • + March 1, 2013, by Michael Wetter:
                        + Added nominal pressure drop for valve as + this parameter no longer has a default value. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end DryCoilEffectivenessNTUPControl; diff --git a/AixLib/Fluid/HeatExchangers/Examples/DynamicHX.mo b/AixLib/Fluid/HeatExchangers/Examples/DynamicHX.mo index 82829701fa..f4c02af046 100644 --- a/AixLib/Fluid/HeatExchangers/Examples/DynamicHX.mo +++ b/AixLib/Fluid/HeatExchangers/Examples/DynamicHX.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.HeatExchangers.Examples; +within AixLib.Fluid.HeatExchangers.Examples; model DynamicHX "Model that demonstrates use of a simple dynamic heat exchanger" package Medium1 = AixLib.Media.Water "Medium model"; diff --git a/AixLib/Fluid/HeatExchangers/Examples/WaterCooler_T.mo b/AixLib/Fluid/HeatExchangers/Examples/WaterCooler_T.mo index 9fc081e66a..ea0ee28e4f 100644 --- a/AixLib/Fluid/HeatExchangers/Examples/WaterCooler_T.mo +++ b/AixLib/Fluid/HeatExchangers/Examples/WaterCooler_T.mo @@ -40,37 +40,37 @@ equation connect(mov.port_b,coo. port_a) annotation (Line(points={{-50,-40},{-35,-40}, {-20,-40}}, color={0,127,255})); annotation ( Documentation(info=" -

                      -This example illustrates how to use the sensible cooler model that takes as an -input the leaving fluid temperature. -

                      -

                      -The model consist of a water volume with heat gain from the ambient. -The set point of the water temperature is different between night and day. -The heater tracks the set point temperature, except for the periods in -which the water temperature is above the set point. -

                      -

                      -See - -AixLib.Fluid.HeatExchangers.Examples.WaterHeater_u -for a model that takes the heating power as an input. -

                      -", revisions=" -
                        -
                      • -May 8, 2017, by Michael Wetter:
                        -Updated heater model.
                        -This is for - -AixLib, #763. -
                      • -
                      • -May 3, 2017, by Michael Wetter:
                        -First implementation. -
                      • -
                      -"), +

                      + This example illustrates how to use the sensible cooler model that takes as an + input the leaving fluid temperature. +

                      +

                      + The model consist of a water volume with heat gain from the ambient. + The set point of the water temperature is different between night and day. + The heater tracks the set point temperature, except for the periods in + which the water temperature is above the set point. +

                      +

                      + See + + AixLib.Fluid.HeatExchangers.Examples.WaterHeater_u + for a model that takes the heating power as an input. +

                      + ",revisions=" +
                        +
                      • + May 8, 2017, by Michael Wetter:
                        + Updated heater model.
                        + This is for + + AixLib, #763. +
                      • +
                      • + May 3, 2017, by Michael Wetter:
                        + First implementation. +
                      • +
                      + "), __Dymola_Commands(file= "modelica://AixLib/Resources/Scripts/Dymola/Fluid/HeatExchangers/Examples/WaterCooler_T.mos" "Simulate and plot"), experiment( @@ -78,5 +78,6 @@ First implementation. Tolerance=1e-8), Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{120, 100}})), - Icon(coordinateSystem(extent={{-100,-100},{120,100}}))); + Icon(coordinateSystem(extent={{-100,-100},{120,100}})), + __Dymola_LockedEditing="Model from IBPSA"); end WaterCooler_T; diff --git a/AixLib/Fluid/HeatExchangers/Examples/WaterHeater_T.mo b/AixLib/Fluid/HeatExchangers/Examples/WaterHeater_T.mo index 6be3c480a0..f489f232d5 100644 --- a/AixLib/Fluid/HeatExchangers/Examples/WaterHeater_T.mo +++ b/AixLib/Fluid/HeatExchangers/Examples/WaterHeater_T.mo @@ -35,38 +35,38 @@ equation connect(mov.port_b, hea.port_a) annotation (Line(points={{-50,-40},{-20,-40}}, color={0,127,255})); annotation ( Documentation(info=" -

                      -This example illustrates how to use the heater model that takes as an -input the leaving fluid temperature. -

                      -

                      -The model consist of a water volume with heat loss to the ambient. -The set point of the water temperature is different between night and day. -The heater tracks the set point temperature, except for the periods in -which the water temperature is above the set point. -

                      -

                      -See - -AixLib.Fluid.HeatExchangers.Examples.WaterHeater_u -for a model that takes the heating power as an input. -

                      -", revisions=" -
                        -
                      • -January 27, 2016, by Michael Wetter;
                        -Removed algorithm specification in experiment annotation. -
                      • -
                      • -January 6, 2015, by Michael Wetter:
                        -Revised implementation. -
                      • -
                      • -March 16, 2015, by Michael Wetter:
                        -First implementation. -
                      • -
                      -"), +

                      + This example illustrates how to use the heater model that takes as an + input the leaving fluid temperature. +

                      +

                      + The model consist of a water volume with heat loss to the ambient. + The set point of the water temperature is different between night and day. + The heater tracks the set point temperature, except for the periods in + which the water temperature is above the set point. +

                      +

                      + See + + AixLib.Fluid.HeatExchangers.Examples.WaterHeater_u + for a model that takes the heating power as an input. +

                      + ",revisions=" +
                        +
                      • + January 27, 2016, by Michael Wetter;
                        + Removed algorithm specification in experiment annotation. +
                      • +
                      • + January 6, 2015, by Michael Wetter:
                        + Revised implementation. +
                      • +
                      • + March 16, 2015, by Michael Wetter:
                        + First implementation. +
                      • +
                      + "), __Dymola_Commands(file= "modelica://AixLib/Resources/Scripts/Dymola/Fluid/HeatExchangers/Examples/WaterHeater_T.mos" "Simulate and plot"), experiment( @@ -74,5 +74,6 @@ First implementation. Tolerance=1e-6), Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{ 120,100}})), - Icon(coordinateSystem(extent={{-100,-100},{120,100}}))); + Icon(coordinateSystem(extent={{-100,-100},{120,100}})), + __Dymola_LockedEditing="Model from IBPSA"); end WaterHeater_T; diff --git a/AixLib/Fluid/HeatExchangers/Examples/WaterHeater_u.mo b/AixLib/Fluid/HeatExchangers/Examples/WaterHeater_u.mo index a9a84f9f52..16d6bd46c5 100644 --- a/AixLib/Fluid/HeatExchangers/Examples/WaterHeater_u.mo +++ b/AixLib/Fluid/HeatExchangers/Examples/WaterHeater_u.mo @@ -30,45 +30,45 @@ equation connect(mov.port_b, hea.port_a) annotation (Line(points={{-50,-40},{-20,-40}}, color={0,127,255})); annotation ( Documentation(info=" -

                      -This example illustrates how to use the heater model that takes as an -input the heat added to the medium. -

                      -

                      -The model consist of a water volume with heat loss to the ambient. -The set point of the water temperature is different between night and day. -The heater tracks the set point temperature, except for the periods in -which the water temperature is above the set point. -

                      -

                      -See - -AixLib.Fluid.HeatExchangers.Examples.WaterHeater_T -for a model that takes the leaving water temperature as an input. -

                      -", revisions=" -
                        -
                      • -May 8, 2017, by Michael Wetter:
                        -Updated heater model.
                        -This is for - -AixLib, #763. -
                      • -
                      • -January 27, 2016, by Michael Wetter;
                        -Removed algorithm specification in experiment annotation. -
                      • -
                      • -January 6, 2015, by Michael Wetter:
                        -Revised implementation. -
                      • -
                      • -March 16, 2015, by Michael Wetter:
                        -First implementation. -
                      • -
                      -"), +

                      + This example illustrates how to use the heater model that takes as an + input the heat added to the medium. +

                      +

                      + The model consist of a water volume with heat loss to the ambient. + The set point of the water temperature is different between night and day. + The heater tracks the set point temperature, except for the periods in + which the water temperature is above the set point. +

                      +

                      + See + + AixLib.Fluid.HeatExchangers.Examples.WaterHeater_T + for a model that takes the leaving water temperature as an input. +

                      + ",revisions=" +
                        +
                      • + May 8, 2017, by Michael Wetter:
                        + Updated heater model.
                        + This is for + + AixLib, #763. +
                      • +
                      • + January 27, 2016, by Michael Wetter;
                        + Removed algorithm specification in experiment annotation. +
                      • +
                      • + January 6, 2015, by Michael Wetter:
                        + Revised implementation. +
                      • +
                      • + March 16, 2015, by Michael Wetter:
                        + First implementation. +
                      • +
                      + "), __Dymola_Commands(file= "modelica://AixLib/Resources/Scripts/Dymola/Fluid/HeatExchangers/Examples/WaterHeater_u.mos" "Simulate and plot"), experiment( @@ -76,5 +76,6 @@ First implementation. Tolerance=1e-6), Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{ 120,100}})), - Icon(coordinateSystem(extent={{-100,-100},{120,100}}))); + Icon(coordinateSystem(extent={{-100,-100},{120,100}})), + __Dymola_LockedEditing="Model from IBPSA"); end WaterHeater_u; diff --git a/AixLib/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTUMassFlow.mo b/AixLib/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTUMassFlow.mo new file mode 100644 index 0000000000..41e1564cf3 --- /dev/null +++ b/AixLib/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTUMassFlow.mo @@ -0,0 +1,84 @@ +within AixLib.Fluid.HeatExchangers.Examples; +model WetCoilEffectivenessNTUMassFlow + "Model that tests the wet coil effectiveness-NTU model with variable mass flow rates" + extends Modelica.Icons.Example; + extends + AixLib.Fluid.HeatExchangers.Examples.BaseClasses.EffectivenessNTUMassFlow( + sou_1(nPorts=1), + sin_1(nPorts=1), + sou_2(nPorts=1), + sin_2(nPorts=1)); + + AixLib.Fluid.HeatExchangers.WetCoilEffectivenessNTU hex( + redeclare package Medium1 = Medium1, + redeclare package Medium2 = Medium2, + m1_flow_nominal=m1_flow_nominal, + m2_flow_nominal=m2_flow_nominal, + dp2_nominal(displayUnit="Pa") = 200, + dp1_nominal(displayUnit="Pa") = 3000, + UA_nominal=Q_flow_nominal/AixLib.Fluid.HeatExchangers.BaseClasses.lmtd( + T_a1_nominal, + T_b1_nominal, + T_a2_nominal, + T_b2_nominal), + show_T=true, + energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyState) + "Heat exchanger" + annotation (Placement(transformation(extent={{80,20},{100,40}}))); + + Sensors.RelativeHumidityTwoPort senRelHum( + redeclare package Medium = Medium2, + m_flow_nominal=m2_flow_nominal) + "Relative humidity sensor" + annotation (Placement(transformation(extent={{60,14},{40,34}}))); + +equation + connect(sou_1.ports[1], hex.port_a1) annotation (Line( + points={{18,62},{60,62},{60,36},{80,36}}, + color={0,127,255}, + smooth=Smooth.None)); + connect(hex.port_b1, sin_1.ports[1]) annotation (Line( + points={{100,36},{108,36},{108,60},{120,60}}, + color={0,127,255}, + smooth=Smooth.None)); + connect(hex.port_a2, sou_2.ports[1]) annotation (Line( + points={{100,24},{118,24}}, + color={0,127,255}, + smooth=Smooth.None)); + connect(hex.port_b2, senRelHum.port_a) annotation (Line( + points={{80,24},{60,24}}, + color={0,127,255}, + smooth=Smooth.None)); + connect(senRelHum.port_b, sin_2.ports[1]) annotation (Line( + points={{40,24},{20,24}}, + color={0,127,255}, + smooth=Smooth.None)); + annotation ( + experiment(Tolerance=1E-6, StopTime=3600), + __Dymola_Commands( + file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTUMassFlow.mos" + "Simulate and plot"), + Diagram(coordinateSystem(preserveAspectRatio=true, + extent={{-100, -100},{200,200}})), + Documentation(revisions=" +
                        +
                      • + March 17, 2017, by Michael O'Keefe:
                        + First implementation. +
                      • +
                      + ",info=" +

                      + This example is similar to + + AixLib.Fluid.HeatExchangers.Examples.DryCoilEffectivenessNTUMassFlow + except that the coil model + + AixLib.Fluid.HeatExchangers.DryCoilEffectivenessNTU + is replaced here by + + AixLib.Fluid.HeatExchangers.WetCoilEffectivenessNTU. +

                      + "), + __Dymola_LockedEditing="Model from IBPSA"); +end WetCoilEffectivenessNTUMassFlow; diff --git a/AixLib/Fluid/HeatExchangers/Examples/package.order b/AixLib/Fluid/HeatExchangers/Examples/package.order index a71dab8214..047b4c51b4 100644 --- a/AixLib/Fluid/HeatExchangers/Examples/package.order +++ b/AixLib/Fluid/HeatExchangers/Examples/package.order @@ -1,10 +1,11 @@ -AirHeater_T -AirHeater_u -DryCoilEffectivenessNTUMassFlow -DryCoilEffectivenessNTUPControl -DynamicHX -HeatingRod -WaterCooler_T -WaterHeater_T -WaterHeater_u -BaseClasses +AirHeater_T +AirHeater_u +DryCoilEffectivenessNTUMassFlow +DryCoilEffectivenessNTUPControl +DynamicHX +HeatingRod +WaterCooler_T +WaterHeater_T +WaterHeater_u +WetCoilEffectivenessNTUMassFlow +BaseClasses diff --git a/AixLib/Fluid/HeatExchangers/HeaterCooler_u.mo b/AixLib/Fluid/HeatExchangers/HeaterCooler_u.mo index 71edf50418..f7b40ea489 100644 --- a/AixLib/Fluid/HeatExchangers/HeaterCooler_u.mo +++ b/AixLib/Fluid/HeatExchangers/HeaterCooler_u.mo @@ -4,7 +4,7 @@ model HeaterCooler_u "Heater or cooler with prescribed heat flow rate" redeclare final AixLib.Fluid.MixingVolumes.MixingVolume vol( final prescribedHeatFlowRate=true)); - parameter Modelica.SIunits.HeatFlowRate Q_flow_nominal + parameter Modelica.Units.SI.HeatFlowRate Q_flow_nominal "Heat flow rate at u=1, positive for heating"; Modelica.Blocks.Interfaces.RealInput u(unit="1") "Control input" annotation (Placement(transformation( @@ -59,7 +59,7 @@ equation fillPattern=FillPattern.Solid), Text( extent={{-56,-12},{54,-72}}, - lineColor={255,255,255}, + textColor={255,255,255}, textString="Q=%Q_flow_nominal"), Rectangle( extent={{-100,60},{-70,58}}, @@ -69,107 +69,114 @@ equation fillPattern=FillPattern.Solid), Text( extent={{-122,106},{-78,78}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="u"), Text( extent={{72,96},{116,68}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="Q_flow")}), defaultComponentName="hea", Documentation(info=" -

                      -Model for an ideal heater or cooler with prescribed heat flow rate to the medium. -

                      -

                      -This model adds heat in the amount of Q_flow = u Q_flow_nominal to the medium. -The input signal u and the nominal heat flow rate Q_flow_nominal -can be positive or negative. A positive value of Q_flow means -heating, and negative means cooling. -

                      -

                      -The outlet conditions at port_a are not affected by this model, -other than for a possible pressure difference due to flow friction. -

                      -

                      -Optionally, this model can have a flow resistance. -Set dp_nominal = 0 to disable the flow friction calculation. -

                      -

                      -For a model that uses as an input the fluid temperature leaving at -port_b, use - -AixLib.Fluid.HeatExchangers.PrescribedOutlet -

                      -

                      Limitations

                      -

                      -This model does not affect the humidity of the air. Therefore, -if used to cool air below the dew point temperature, the water mass fraction -will not change. -

                      -

                      Validation

                      -

                      -The model has been validated against the analytical solution in -the example - -AixLib.Fluid.HeatExchangers.Validation.HeaterCooler_u. -

                      -", +

                      + Model for an ideal heater or cooler with prescribed heat flow rate to the medium. +

                      +

                      + This model adds heat in the amount of Q_flow = u Q_flow_nominal to the medium. + The input signal u and the nominal heat flow rate Q_flow_nominal + can be positive or negative. A positive value of Q_flow means + heating, and negative means cooling. +

                      +

                      + The outlet conditions at port_a are not affected by this model, + other than for a possible pressure difference due to flow friction. +

                      +

                      + Optionally, this model can have a flow resistance. + Set dp_nominal = 0 to disable the flow friction calculation. +

                      +

                      + For a model that uses as an input the fluid temperature leaving at + port_b, use + + AixLib.Fluid.HeatExchangers.PrescribedOutlet +

                      +

                      Limitations

                      +

                      + This model does not affect the humidity of the air. Therefore, + if used to cool air below the dew point temperature, the water mass fraction + will not change. +

                      +

                      Validation

                      +

                      + The model has been validated against the analytical solution in + the example + + AixLib.Fluid.HeatExchangers.Validation.HeaterCooler_u. +

                      + ", revisions=" -
                        -
                      • -November 3, 2016, by Michael Wetter:
                        -Set preHea(final alpha=0) as this allows to simplify the -system of equations.
                        -This is for -#570. -
                      • -
                      • -November 19, 2015, by Michael Wetter:
                        -Removed assignment of parameter -showDesignFlowDirection in extends statement. -This is for -#349. -
                      • -
                      • -May 6, 2015, by Michael Wetter:
                        -Set prescribedHeatFlowRate=true. -This is for issue - -#412. -
                      • -
                      • -May 1, 2015, by Marcus Fuchs:
                        -Corrected typo in documentation. -
                      • -
                      • -November 12, 2014, by Michael Wetter:
                        -Added output signal Q_flow so that it has -the same output ports as - -AixLib.Fluid.HeatExchangers.Validation.PrescribedOutlet. -
                      • -
                      • -September 11, 2014, by Christoph Nytsch-Geusen:
                        -Renaming class to HeaterCooler_u. -
                      • -
                      • -October 15, 2013, by Michael Wetter:
                        -Redeclared the control volume to be final so that it does not show -anymore in the parameter window. -
                      • -
                      • -July 11, 2011, by Michael Wetter:
                        -Redeclared fluid volume as final. This prevents the fluid volume model -to appear in the dialog window. -
                      • -
                      • -May 24, 2011, by Michael Wetter:
                        -Changed base class to allow using the model as a dynamic or a steady-state model. -
                      • -
                      • -April 17, 2008, by Michael Wetter:
                        -First implementation. -
                      • -
                      -")); +
                        +
                      • + March 7, 2022, by Michael Wetter:
                        + Removed massDynamics.
                        + This is for + #1542. +
                      • +
                      • + November 3, 2016, by Michael Wetter:
                        + Set preHea(final alpha=0) as this allows to simplify the + system of equations.
                        + This is for + #570. +
                      • +
                      • + November 19, 2015, by Michael Wetter:
                        + Removed assignment of parameter + showDesignFlowDirection in extends statement. + This is for + #349. +
                      • +
                      • + May 6, 2015, by Michael Wetter:
                        + Set prescribedHeatFlowRate=true. + This is for issue + + #412. +
                      • +
                      • + May 1, 2015, by Marcus Fuchs:
                        + Corrected typo in documentation. +
                      • +
                      • + November 12, 2014, by Michael Wetter:
                        + Added output signal Q_flow so that it has + the same output ports as + + AixLib.Fluid.HeatExchangers.Validation.PrescribedOutlet. +
                      • +
                      • + September 11, 2014, by Christoph Nytsch-Geusen:
                        + Renaming class to HeaterCooler_u. +
                      • +
                      • + October 15, 2013, by Michael Wetter:
                        + Redeclared the control volume to be final so that it does not show + anymore in the parameter window. +
                      • +
                      • + July 11, 2011, by Michael Wetter:
                        + Redeclared fluid volume as final. This prevents the fluid volume model + to appear in the dialog window. +
                      • +
                      • + May 24, 2011, by Michael Wetter:
                        + Changed base class to allow using the model as a dynamic or a steady-state model. +
                      • +
                      • + April 17, 2008, by Michael Wetter:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end HeaterCooler_u; diff --git a/AixLib/Fluid/HeatExchangers/Heater_T.mo b/AixLib/Fluid/HeatExchangers/Heater_T.mo index a80d3c3b43..27c4a884fb 100644 --- a/AixLib/Fluid/HeatExchangers/Heater_T.mo +++ b/AixLib/Fluid/HeatExchangers/Heater_T.mo @@ -8,23 +8,14 @@ model Heater_T "Heater with prescribed outlet temperature" final mWatMin_flow = 0, final use_TSet = true, final use_X_wSet = false, - final energyDynamics = energyDynamics, - final massDynamics = Modelica.Fluid.Types.Dynamics.SteadyState, final T_start=T_start, final X_start=Medium.X_default)); - parameter Modelica.SIunits.HeatFlowRate QMax_flow(min=0) = Modelica.Constants.inf - "Maximum heat flow rate for heating (positive)" - annotation (Evaluate=true); + parameter Modelica.Units.SI.HeatFlowRate QMax_flow(min=0) = Modelica.Constants.inf + "Maximum heat flow rate for heating (positive)" annotation (Evaluate=true); - parameter Modelica.SIunits.Temperature T_start=Medium.T_default - "Start value of temperature" - annotation(Dialog(tab = "Initialization")); - - // Dynamics - parameter Modelica.Fluid.Types.Dynamics energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyState - "Type of energy balance: dynamic (3 initialization options) or steady state" - annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Equations")); + parameter Modelica.Units.SI.Temperature T_start=Medium.T_default + "Start value of temperature" annotation (Dialog(tab="Initialization")); Modelica.Blocks.Interfaces.RealInput TSet( unit="K", @@ -46,93 +37,93 @@ equation annotation ( defaultComponentName="hea", Documentation(info=" -

                      -Model for an ideal heater that controls its outlet temperature to -a prescribed outlet temperature. -

                      -

                      -This model forces the outlet temperature at port_b to be -no lower than the temperature of the input signal -TSet, subject to optional limits on the -capacity. -By default, the model has unlimited heating capacity. -

                      -

                      -The output signal Q_flow is the heat added -to the medium if the mass flow rate is from port_a to port_b. -If the flow is reversed, then Q_flow=0. -

                      -

                      -The outlet conditions at port_a are not affected by this model, -other than for a possible pressure difference due to flow friction. -

                      -

                      -If the parameter energyDynamics is different from -Modelica.Fluid.Types.Dynamics.SteadyState, -the component models the dynamic response using a first order differential equation. -The time constant of the component is equal to the parameter tau. -This time constant is adjusted based on the mass flow rate using -

                      -

                      eff = τ |ṁ| ⁄ ṁnom -

                      -

                      -where -τeff is the effective time constant for the given mass flow rate - and -τ is the time constant at the nominal mass flow rate -nom. -This type of dynamics is equal to the dynamics that a completely mixed -control volume would have. -

                      -

                      -Optionally, this model can have a flow resistance. -Set dp_nominal = 0 to disable the flow friction calculation. -

                      -

                      -For a similar model that is a sensible cooling device, use - -AixLib.Fluid.HeatExchangers.SensibleCooler_T. -For a model that uses a control signal u ∈ [0, 1] and multiplies -this with the nominal heating or cooling power, use - -AixLib.Fluid.HeatExchangers.HeaterCooler_u - -

                      -

                      Limitations

                      -

                      -If the flow is from port_b to port_a, -then the enthalpy of the medium is not affected by this model. -

                      -

                      Validation

                      -

                      -The model has been validated against the analytical solution in -the examples - -AixLib.Fluid.HeatExchangers.Validation.PrescribedOutlet -and - -AixLib.Fluid.HeatExchangers.Validation.PrescribedOutlet_dynamic. -

                      -", +

                      + Model for an ideal heater that controls its outlet temperature to + a prescribed outlet temperature. +

                      +

                      + This model forces the outlet temperature at port_b to be + no lower than the temperature of the input signal + TSet, subject to optional limits on the + capacity. + By default, the model has unlimited heating capacity. +

                      +

                      + The output signal Q_flow is the heat added + to the medium if the mass flow rate is from port_a to port_b. + If the flow is reversed, then Q_flow=0. +

                      +

                      + The outlet conditions at port_a are not affected by this model, + other than for a possible pressure difference due to flow friction. +

                      +

                      + If the parameter energyDynamics is different from + Modelica.Fluid.Types.Dynamics.SteadyState, + the component models the dynamic response using a first order differential equation. + The time constant of the component is equal to the parameter tau. + This time constant is adjusted based on the mass flow rate using +

                      +

                      + τeff = τ |ṁ| ⁄ ṁnom +

                      +

                      + where + τeff is the effective time constant for the given mass flow rate + and + τ is the time constant at the nominal mass flow rate + nom. + This type of dynamics is equal to the dynamics that a completely mixed + control volume would have. +

                      +

                      + Optionally, this model can have a flow resistance. + Set dp_nominal = 0 to disable the flow friction calculation. +

                      +

                      + For a similar model that is a sensible cooling device, use + + AixLib.Fluid.HeatExchangers.SensibleCooler_T. + For a model that uses a control signal u ∈ [0, 1] and multiplies + this with the nominal heating or cooling power, use + + AixLib.Fluid.HeatExchangers.HeaterCooler_u + +

                      +

                      Limitations

                      +

                      + If the flow is from port_b to port_a, + then the enthalpy of the medium is not affected by this model. +

                      +

                      Validation

                      +

                      + The model has been validated against the analytical solution in + the examples + + AixLib.Fluid.HeatExchangers.Validation.PrescribedOutlet + and + + AixLib.Fluid.HeatExchangers.Validation.PrescribedOutlet_dynamic. +

                      + ", revisions=" -
                        -
                      • -September 10, 2018, by Michael Wetter:
                        -Corrected missing propagation of initial conditions.
                        -This is for - -AixLib, #1016. -
                      • -
                      • -May 3, 2017, by Michael Wetter:
                        -First implementation.
                        -This is for - -AixLib, #763. -
                      • -
                      -"), +
                        +
                      • + September 10, 2018, by Michael Wetter:
                        + Corrected missing propagation of initial conditions.
                        + This is for + + AixLib, #1016. +
                      • +
                      • + May 3, 2017, by Michael Wetter:
                        + First implementation.
                        + This is for + + AixLib, #763. +
                      • +
                      + "), Icon(graphics={ Rectangle( extent={{-70,60},{70,-60}}, @@ -142,7 +133,7 @@ AixLib, #763. fillPattern=FillPattern.Solid), Text( extent={{18,-6},{62,-52}}, - lineColor={255,255,255}, + textColor={255,255,255}, textString="+"), Rectangle( extent={{70,82},{100,78}}, @@ -158,11 +149,11 @@ AixLib, #763. fillPattern=FillPattern.Solid), Text( extent={{-110,102},{-74,84}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="T"), Text( extent={{26,108},{94,84}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="Q_flow"), Rectangle( extent={{66,60},{70,82}}, @@ -181,5 +172,6 @@ AixLib, #763. lineColor={0,0,0}, fillColor={255,255,255}, fillPattern=FillPattern.Solid), - Line(points={{-64,34},{-52,44},{-64,54}}, color={0,0,0})})); + Line(points={{-64,34},{-52,44},{-64,54}}, color={0,0,0})}), + __Dymola_LockedEditing="Model from IBPSA"); end Heater_T; diff --git a/AixLib/Fluid/HeatExchangers/HeatingRod.mo b/AixLib/Fluid/HeatExchangers/HeatingRod.mo index f185415c04..a941645d2f 100644 --- a/AixLib/Fluid/HeatExchangers/HeatingRod.mo +++ b/AixLib/Fluid/HeatExchangers/HeatingRod.mo @@ -7,9 +7,10 @@ model HeatingRod final V=V, final prescribedHeatFlowRate=true)); - parameter Modelica.SIunits.HeatFlowRate Q_flow_nominal + parameter Modelica.Units.SI.HeatFlowRate Q_flow_nominal "Heat flow rate at u=1, positive for heating"; - parameter Modelica.SIunits.Volume V=m_flow_nominal*tau/rho_default "Volume of heat exchanger"; + parameter Modelica.Units.SI.Volume V=m_flow_nominal*tau/rho_default + "Volume of heat exchanger"; parameter Real eta "Efficiency of the heating rod"; // Count switches @@ -31,8 +32,8 @@ model HeatingRod final y_start=0) if use_countNumSwi "To count on-off cycles" annotation (Placement(transformation(extent={{68,-68},{86,-52}}))); - Modelica.Blocks.Sources.IntegerConstant integerConstant(final k=1) if - use_countNumSwi + Modelica.Blocks.Sources.IntegerConstant integerConstant(final k=1) + if use_countNumSwi annotation (Placement(transformation(extent={{38,-68},{54,-52}}))); Modelica.Blocks.Interfaces.IntegerOutput numSwi if use_countNumSwi "Number of on switches " diff --git a/AixLib/Fluid/HeatExchangers/PrescribedOutlet.mo b/AixLib/Fluid/HeatExchangers/PrescribedOutlet.mo index 7d28f6356b..90fd439685 100644 --- a/AixLib/Fluid/HeatExchangers/PrescribedOutlet.mo +++ b/AixLib/Fluid/HeatExchangers/PrescribedOutlet.mo @@ -10,39 +10,28 @@ model PrescribedOutlet final QMax_flow = QMax_flow, final QMin_flow = QMin_flow, final mWatMax_flow = mWatMax_flow, - final mWatMin_flow = mWatMin_flow, - final energyDynamics = energyDynamics, - final massDynamics = massDynamics)); + final mWatMin_flow = mWatMin_flow)); - parameter Modelica.SIunits.HeatFlowRate QMax_flow(min=0) = Modelica.Constants.inf + parameter Modelica.Units.SI.HeatFlowRate QMax_flow(min=0) = Modelica.Constants.inf "Maximum heat flow rate for heating (positive)" annotation (Evaluate=true, Dialog(enable=use_TSet)); - parameter Modelica.SIunits.HeatFlowRate QMin_flow(max=0) = -Modelica.Constants.inf + parameter Modelica.Units.SI.HeatFlowRate QMin_flow(max=0) = -Modelica.Constants.inf "Maximum heat flow rate for cooling (negative)" annotation (Evaluate=true, Dialog(enable=use_TSet)); - parameter Modelica.SIunits.MassFlowRate mWatMax_flow(min=0) = Modelica.Constants.inf + parameter Modelica.Units.SI.MassFlowRate mWatMax_flow(min=0) = Modelica.Constants.inf "Maximum water mass flow rate addition (positive)" annotation (Evaluate=true, Dialog(enable=use_X_wSet)); - parameter Modelica.SIunits.MassFlowRate mWatMin_flow(max=0) = -Modelica.Constants.inf + parameter Modelica.Units.SI.MassFlowRate mWatMin_flow(max=0) = -Modelica.Constants.inf "Maximum water mass flow rate removal (negative)" annotation (Evaluate=true, Dialog(enable=use_X_wSet)); - parameter Modelica.SIunits.Temperature T_start = Medium.T_default + parameter Modelica.Units.SI.Temperature T_start=Medium.T_default "Start value of temperature" - annotation(Dialog(tab = "Initialization", enable=use_TSet)); - parameter Modelica.SIunits.MassFraction X_start[Medium.nX] = Medium.X_default - "Start value of mass fractions m_i/m" - annotation (Dialog(tab="Initialization", enable=use_X_wSet and Medium.nXi > 0)); - - // Dynamics - parameter Modelica.Fluid.Types.Dynamics energyDynamics = Modelica.Fluid.Types.Dynamics.SteadyState - "Type of energy balance: dynamic (3 initialization options) or steady state" - annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Equations", enable=use_TSet)); - - parameter Modelica.Fluid.Types.Dynamics massDynamics = energyDynamics - "Type of mass balance: dynamic (3 initialization options) or steady state" - annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Equations", enable=use_X_wSet)); + annotation (Dialog(tab="Initialization", enable=use_TSet)); + parameter Modelica.Units.SI.MassFraction X_start[Medium.nX]=Medium.X_default + "Start value of mass fractions m_i/m" annotation (Dialog(tab= + "Initialization", enable=use_X_wSet and Medium.nXi > 0)); parameter Boolean use_TSet = true "Set to false to disable temperature set point" @@ -94,12 +83,12 @@ equation Line(points={{-64,34},{-52,44},{-64,54}}, color={0,0,0}), Text( extent={{-98,64},{-76,42}}, - lineColor={0,0,127}, + textColor={0,0,127}, visible=use_X_wSet, textString="X_w"), Text( extent={{-106,102},{-74,88}}, - lineColor={0,0,127}, + textColor={0,0,127}, visible=use_TSet, textString="T"), Rectangle( @@ -137,7 +126,7 @@ equation fillPattern=FillPattern.Solid), Text( extent={{74,72},{120,44}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="mWat_flow"), Rectangle( extent={{70,41},{100,38}}, @@ -147,115 +136,122 @@ equation fillPattern=FillPattern.Solid), Text( extent={{72,108},{120,92}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="Q_flow")}), defaultComponentName="preOut", Documentation(info=" -

                      -Model that allows specifying the temperature and mass fraction of the fluid -that leaves the model from port_b. -

                      -

                      -This model forces the outlet temperature at port_b to be equal to the temperature -of the input signal TSet, subject to optional limits on the -heating or cooling capacity QMax_flow ≥ 0 and QMin_flow ≤ 0. -Similarly than for the temperature, -this model also forces the outlet water mass fraction at port_b to be -no lower than the -input signal X_wSet, subject to optional limits on the -maximum water vapor mass flow rate that is added, as -described by the parameter mWatMax_flow. -By default, the model has unlimited capacity, but control of temperature -and humidity can be subject to capacity limits, or be disabled. -

                      -

                      -The output signal Q_flow is the heat added (for heating) or subtracted (for cooling) -to the medium if the flow rate is from port_a to port_b. -If the flow is reversed, then Q_flow=0. -

                      -

                      -The outlet conditions at port_a are not affected by this model. -

                      -

                      -If the parameter energyDynamics is not equal to -Modelica.Fluid.Types.Dynamics.SteadyState, -the component models the dynamic response using a first order differential equation. -The time constant of the component is equal to the parameter tau. -This time constant is adjusted based on the mass flow rate using -

                      -

                      eff = τ |ṁ| ⁄ ṁnom -

                      -

                      -where -τeff is the effective time constant for the given mass flow rate - and -τ is the time constant at the nominal mass flow rate -nom. -This type of dynamics is equal to the dynamics that a completely mixed -control volume would have. -

                      -

                      -Optionally, this model can have a flow resistance. -If no flow resistance is requested, set dp_nominal=0. -

                      -

                      -For a model that uses a control signal u ∈ [0, 1] and multiplies -this with the nominal heating or cooling power, use - -AixLib.Fluid.HeatExchangers.HeaterCooler_u - -

                      -

                      Limitations

                      -

                      -This model only adds or removes heat or water vapor for the flow from -port_a to port_b. -The enthalpy of the reverse flow is not affected by this model. -

                      -

                      -If this model is used to cool air below the dew point temperature, the water mass fraction -will not change. -

                      -

                      -Note that for use_TSet = false, the enthalpy of the leaving fluid -will not be changed, even if moisture is added. The enthalpy added (or removed) -by the change in humidity is neglected. To properly account for change in enthalpy -due to humidification, use instead - -AixLib.Fluid.Humidifiers.SprayAirWasher_X. -

                      -

                      Validation

                      -

                      -The model has been validated against the analytical solution in -the examples - -AixLib.Fluid.HeatExchangers.Validation.PrescribedOutlet -and - -AixLib.Fluid.HeatExchangers.Validation.PrescribedOutlet_dynamic. -

                      -", +

                      + Model that allows specifying the temperature and mass fraction of the fluid + that leaves the model from port_b. +

                      +

                      + This model forces the outlet temperature at port_b to be equal to the temperature + of the input signal TSet, subject to optional limits on the + heating or cooling capacity QMax_flow ≥ 0 and QMin_flow ≤ 0. + Similarly than for the temperature, + this model also forces the outlet water mass fraction at port_b to be + no lower than the + input signal X_wSet, subject to optional limits on the + maximum water vapor mass flow rate that is added, as + described by the parameter mWatMax_flow. + By default, the model has unlimited capacity, but control of temperature + and humidity can be subject to capacity limits, or be disabled. +

                      +

                      + The output signal Q_flow is the heat added (for heating) or subtracted (for cooling) + to the medium if the flow rate is from port_a to port_b. + If the flow is reversed, then Q_flow=0. +

                      +

                      + The outlet conditions at port_a are not affected by this model. +

                      +

                      + If the parameter energyDynamics is not equal to + Modelica.Fluid.Types.Dynamics.SteadyState, + the component models the dynamic response using a first order differential equation. + The time constant of the component is equal to the parameter tau. + This time constant is adjusted based on the mass flow rate using +

                      +

                      + τeff = τ |ṁ| ⁄ ṁnom +

                      +

                      + where + τeff is the effective time constant for the given mass flow rate + and + τ is the time constant at the nominal mass flow rate + nom. + This type of dynamics is equal to the dynamics that a completely mixed + control volume would have. +

                      +

                      + Optionally, this model can have a flow resistance. + If no flow resistance is requested, set dp_nominal=0. +

                      +

                      + For a model that uses a control signal u ∈ [0, 1] and multiplies + this with the nominal heating or cooling power, use + + AixLib.Fluid.HeatExchangers.HeaterCooler_u + +

                      +

                      Limitations

                      +

                      + This model only adds or removes heat or water vapor for the flow from + port_a to port_b. + The enthalpy of the reverse flow is not affected by this model. +

                      +

                      + If this model is used to cool air below the dew point temperature, the water mass fraction + will not change. +

                      +

                      + Note that for use_TSet = false, the enthalpy of the leaving fluid + will not be changed, even if moisture is added. The enthalpy added (or removed) + by the change in humidity is neglected. To properly account for change in enthalpy + due to humidification, use instead + + AixLib.Fluid.Humidifiers.SprayAirWasher_X. +

                      +

                      Validation

                      +

                      + The model has been validated against the analytical solution in + the examples + + AixLib.Fluid.HeatExchangers.Validation.PrescribedOutlet + and + + AixLib.Fluid.HeatExchangers.Validation.PrescribedOutlet_dynamic. +

                      + ", revisions=" -
                        -
                      • -May 3, 2017, by Michael Wetter:
                        -Updated protected model for -#763. -
                      • -
                      • -December 1, 2016, by Michael Wetter:
                        -Updated model as use_dh is no longer a parameter in the pressure drop model.
                        -This is for -#480. -
                      • -
                      • -November 11, 2014, by Michael Wetter:
                        -Revised implementation. -
                      • -
                      • -March 19, 2014, by Christoph Nytsch-Geusen:
                        -First implementation. -
                      • -
                      -")); +
                        +
                      • + March 3, 2022, by Michael Wetter:
                        + Removed massDynamics.
                        + This is for + issue 1542. +
                      • +
                      • + May 3, 2017, by Michael Wetter:
                        + Updated protected model for + #763. +
                      • +
                      • + December 1, 2016, by Michael Wetter:
                        + Updated model as use_dh is no longer a parameter in the pressure drop model.
                        + This is for + #480. +
                      • +
                      • + November 11, 2014, by Michael Wetter:
                        + Revised implementation. +
                      • +
                      • + March 19, 2014, by Christoph Nytsch-Geusen:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end PrescribedOutlet; diff --git a/AixLib/Fluid/HeatExchangers/Radiators/BaseClasses/HeatConvRadiator.mo b/AixLib/Fluid/HeatExchangers/Radiators/BaseClasses/HeatConvRadiator.mo index d26a431846..3a2d817c84 100644 --- a/AixLib/Fluid/HeatExchangers/Radiators/BaseClasses/HeatConvRadiator.mo +++ b/AixLib/Fluid/HeatExchangers/Radiators/BaseClasses/HeatConvRadiator.mo @@ -7,8 +7,7 @@ model HeatConvRadiator parameter Real dT_nom "Nominal temperature difference"; parameter Real kA=(1-s_eff)*NominalPower/dT_nom^n; Real alpha_t; - Modelica.SIunits.Conversions.NonSIunits.Temperature_degC posDiff= - noEvent(abs(port_b.T - port_a.T)) + Modelica.Units.NonSI.Temperature_degC posDiff=noEvent(abs(port_b.T - port_a.T)) "Positive temperature difference"; Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a port_a annotation (Placement(transformation(extent={{-100,-10},{-80,10}}))); diff --git a/AixLib/Fluid/HeatExchangers/Radiators/BaseClasses/MultiLayerThermalDelta.mo b/AixLib/Fluid/HeatExchangers/Radiators/BaseClasses/MultiLayerThermalDelta.mo index f98b3d55da..508f1e0742 100644 --- a/AixLib/Fluid/HeatExchangers/Radiators/BaseClasses/MultiLayerThermalDelta.mo +++ b/AixLib/Fluid/HeatExchangers/Radiators/BaseClasses/MultiLayerThermalDelta.mo @@ -6,8 +6,7 @@ model MultiLayerThermalDelta "multi layers of heat exchanger" extends AixLib.Fluid.Interfaces.PartialTwoPortInterface; extends AixLib.Fluid.Interfaces.LumpedVolumeDeclarations(each final C_nominal=fill(1E-2, Medium.nC), each final C_start=fill(0, Medium.nC)); - parameter Modelica.SIunits.Mass M_Radiator - "Mass of radiator"; + parameter Modelica.Units.SI.Mass M_Radiator "Mass of radiator"; parameter calcT.Temp calc_dT "Select calculation method of excess temperature"; parameter @@ -18,21 +17,19 @@ model MultiLayerThermalDelta "multi layers of heat exchanger" parameter Real n "Radiator exponent" annotation (Dialog(tab="Geometry and Material", group="Geometry")); - parameter Modelica.SIunits.Density DensitySteel=DensitySteel + parameter Modelica.Units.SI.Density DensitySteel=DensitySteel "Specific density of steel, in kg/m3" annotation (Dialog(tab="Geometry and Material", group="Material")); - parameter Modelica.SIunits.SpecificHeatCapacity CapacitySteel=CapacitySteel + parameter Modelica.Units.SI.SpecificHeatCapacity CapacitySteel=CapacitySteel "Specific heat capacity of steel, in J/kgK" annotation (Dialog(tab="Geometry and Material", group="Material")); - parameter Modelica.SIunits.ThermalConductivity LambdaSteel=LambdaSteel + parameter Modelica.Units.SI.ThermalConductivity LambdaSteel=LambdaSteel "Thermal conductivity of steel, in W/mK" annotation (Dialog(tab="Geometry and Material", group="Material")); - parameter Modelica.SIunits.Length length - "Length of radiator, in m" + parameter Modelica.Units.SI.Length length "Length of radiator, in m" annotation (Dialog(tab="Geometry and Material", group="Geometry")); - parameter Modelica.SIunits.Volume Vol_Water - "Water volume inside layer"; + parameter Modelica.Units.SI.Volume Vol_Water "Water volume inside layer"; parameter Real s_eff=Type[1] "Radiative coefficient"; parameter Real Q_dot_nom_i @@ -41,12 +38,9 @@ model MultiLayerThermalDelta "multi layers of heat exchanger" "Nominal access temperature"; parameter Real delta_nom "Nominal Radiation temperature"; - parameter Modelica.SIunits.Emissivity eps - "Emissivity"; - parameter Modelica.SIunits.Area A - "Area of radiator layer"; - parameter Modelica.SIunits.Length d - "Thickness of radiator wall"; + parameter Modelica.Units.SI.Emissivity eps "Emissivity"; + parameter Modelica.Units.SI.Area A "Area of radiator layer"; + parameter Modelica.Units.SI.Length d "Thickness of radiator wall"; parameter Modelica.Fluid.Types.Dynamics initDynamicsWall=Modelica.Fluid.Types.Dynamics.DynamicFreeInitial "Like energyDynamics, but SteadyState leeds to same behavior as DynamicFreeInitial" diff --git a/AixLib/Fluid/HeatExchangers/Radiators/BaseClasses/RadiatorWall.mo b/AixLib/Fluid/HeatExchangers/Radiators/BaseClasses/RadiatorWall.mo index 4ccb087cbc..12e5a72d97 100644 --- a/AixLib/Fluid/HeatExchangers/Radiators/BaseClasses/RadiatorWall.mo +++ b/AixLib/Fluid/HeatExchangers/Radiators/BaseClasses/RadiatorWall.mo @@ -4,20 +4,17 @@ class RadiatorWall "Simple one layer wall" parameter Modelica.Fluid.Types.Dynamics initDynamics=Modelica.Fluid.Types.Dynamics.DynamicFreeInitial "Like energyDynamics, but SteadyState leeds to same behavior as DynamicFreeInitial" annotation(Evaluate=true, Dialog(tab="Initialization")); - parameter Modelica.SIunits.Thickness d - "Thickness" + parameter Modelica.Units.SI.Thickness d "Thickness" annotation (Dialog(group="Structure")); - parameter Modelica.SIunits.ThermalConductivity lambda - "Thermal conductivity" annotation (Dialog(group="Structure")); - parameter Modelica.SIunits.HeatCapacity C - "Heat capacity of radiator wall"; - parameter Modelica.SIunits.SpecificHeatCapacity c - "Specific heat capacity" annotation (Dialog(group="Structure")); - parameter Modelica.SIunits.Temperature T0 - "Initial temperature" annotation (Dialog(group="Thermal")); - parameter Modelica.SIunits.Area A - "Area of radiator surface"; - parameter Modelica.SIunits.ThermalConductance G=lambda*A/d; + parameter Modelica.Units.SI.ThermalConductivity lambda "Thermal conductivity" + annotation (Dialog(group="Structure")); + parameter Modelica.Units.SI.HeatCapacity C "Heat capacity of radiator wall"; + parameter Modelica.Units.SI.SpecificHeatCapacity c "Specific heat capacity" + annotation (Dialog(group="Structure")); + parameter Modelica.Units.SI.Temperature T0 "Initial temperature" + annotation (Dialog(group="Thermal")); + parameter Modelica.Units.SI.Area A "Area of radiator surface"; + parameter Modelica.Units.SI.ThermalConductance G=lambda*A/d; Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a port_a annotation (Placement(transformation(extent={{-104,-8},{-84,12}}))); Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_b port_b diff --git a/AixLib/Fluid/HeatExchangers/Radiators/BaseClasses/package.order b/AixLib/Fluid/HeatExchangers/Radiators/BaseClasses/package.order index e1338c0e42..049da99ee9 100644 --- a/AixLib/Fluid/HeatExchangers/Radiators/BaseClasses/package.order +++ b/AixLib/Fluid/HeatExchangers/Radiators/BaseClasses/package.order @@ -5,4 +5,3 @@ PressureDropRadiator RadiatorTypes RadiatorWall calcHeaterExcessTemp -RadiatorTypes diff --git a/AixLib/Fluid/HeatExchangers/Radiators/Examples/Radiator.mo b/AixLib/Fluid/HeatExchangers/Radiators/Examples/Radiator.mo index 5faa6658d9..45d9fa0209 100644 --- a/AixLib/Fluid/HeatExchangers/Radiators/Examples/Radiator.mo +++ b/AixLib/Fluid/HeatExchangers/Radiators/Examples/Radiator.mo @@ -16,7 +16,7 @@ model Radiator "Example for EBC radiator" selectable=true, radiatorType=AixLib.DataBase.Radiators.RadiatorBaseDataDefinition( NominalPower=496, - RT_nom=Modelica.SIunits.Conversions.from_degC({55,45,20}), + RT_nom=Modelica.Units.Conversions.from_degC({55,45,20}), PressureDrop=1017878, Exponent=1.2776, VolumeWater=3.6, diff --git a/AixLib/Fluid/HeatExchangers/Radiators/Examples/RadiatorEN442_2.mo b/AixLib/Fluid/HeatExchangers/Radiators/Examples/RadiatorEN442_2.mo index 8bad591d30..041854850a 100644 --- a/AixLib/Fluid/HeatExchangers/Radiators/Examples/RadiatorEN442_2.mo +++ b/AixLib/Fluid/HeatExchangers/Radiators/Examples/RadiatorEN442_2.mo @@ -2,17 +2,16 @@ within AixLib.Fluid.HeatExchangers.Radiators.Examples; model RadiatorEN442_2 "Test model for radiator" extends Modelica.Icons.Example; package Medium = AixLib.Media.Water "Medium model"; - parameter Modelica.SIunits.Temperature TRoo = 20+273.15 "Room temperature" + parameter Modelica.Units.SI.Temperature TRoo=20 + 273.15 "Room temperature" annotation (Evaluate=false); - parameter Modelica.SIunits.Power Q_flow_nominal = 500 "Nominal power"; - parameter Modelica.SIunits.Temperature T_a_nominal=313.15 + parameter Modelica.Units.SI.Power Q_flow_nominal=500 "Nominal power"; + parameter Modelica.Units.SI.Temperature T_a_nominal=313.15 "Radiator inlet temperature at nominal condition"; - parameter Modelica.SIunits.Temperature T_b_nominal = 303.15 + parameter Modelica.Units.SI.Temperature T_b_nominal=303.15 "Radiator outlet temperature at nominal condition"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal= - Q_flow_nominal/(T_a_nominal-T_b_nominal)/Medium.cp_const - "Nominal mass flow rate"; - parameter Modelica.SIunits.PressureDifference dp_nominal = 3000 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=Q_flow_nominal/( + T_a_nominal - T_b_nominal)/Medium.cp_const "Nominal mass flow rate"; + parameter Modelica.Units.SI.PressureDifference dp_nominal=3000 "Pressure drop at m_flow_nominal"; AixLib.Fluid.Sources.Boundary_pT sou( @@ -106,28 +105,29 @@ equation "Simulate and plot"), experiment(Tolerance=1e-6, StopTime=10800), Documentation(info=" -This test model compares the radiator model when -used as a steady-state and a dynamic model. -", revisions=" -
                        -
                      • -January 22, 2016, by Michael Wetter:
                        -Corrected type declaration of pressure difference. -This is -for #404. -
                      • -
                      • -June 5, 2015 by Michael Wetter:
                        -Removed annotation(Evaluate=true) from instances -T_a_nominal and T_b_nominal -to avoid the warning about non-literal nominal values. -This fixes -#128. -
                      • -
                      • -January 30, 2009 by Michael Wetter:
                        -First implementation. -
                      • -
                      -")); + This test model compares the radiator model when + used as a steady-state and a dynamic model. + ",revisions=" +
                        +
                      • + January 22, 2016, by Michael Wetter:
                        + Corrected type declaration of pressure difference. + This is + for #404. +
                      • +
                      • + June 5, 2015 by Michael Wetter:
                        + Removed annotation(Evaluate=true) from instances + T_a_nominal and T_b_nominal + to avoid the warning about non-literal nominal values. + This fixes + #128. +
                      • +
                      • + January 30, 2009 by Michael Wetter:
                        + First implementation. +
                      • +
                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end RadiatorEN442_2; diff --git a/AixLib/Fluid/HeatExchangers/Radiators/Radiator.mo b/AixLib/Fluid/HeatExchangers/Radiators/Radiator.mo index 2c30e10393..8ba3adcc56 100644 --- a/AixLib/Fluid/HeatExchangers/Radiators/Radiator.mo +++ b/AixLib/Fluid/HeatExchangers/Radiators/Radiator.mo @@ -1,6 +1,7 @@ -within AixLib.Fluid.HeatExchangers.Radiators; +within AixLib.Fluid.HeatExchangers.Radiators; model Radiator "Radiator multilayer model" - import Modelica.SIunits; + import SIunits = + Modelica.Units.SI; import calcT = AixLib.Fluid.HeatExchangers.Radiators.BaseClasses.CalcExcessTemp; extends AixLib.Fluid.Interfaces.PartialTwoPortInterface; @@ -63,19 +64,17 @@ model Radiator "Radiator multilayer model" "Height of raditor, in m" annotation (Dialog(tab="Geometry and Material", group="Geometry", enable=not selectable)); - parameter Modelica.SIunits.Area A=2*length*height - "Radiator surface area" + parameter Modelica.Units.SI.Area A=2*length*height "Radiator surface area" annotation (Dialog(tab="Geometry and Material", group="Material")); - parameter Modelica.SIunits.Length d=0.025 "Thickness of radiator wall" + parameter Modelica.Units.SI.Length d=0.025 "Thickness of radiator wall" annotation (Dialog(tab="Geometry and Material", group="Material")); - parameter Modelica.SIunits.Emissivity eps=0.95 "Emissivity" + parameter Modelica.Units.SI.Emissivity eps=0.95 "Emissivity" annotation (Dialog(tab="Geometry and Material", group="Material")); - parameter SIunits.Temperature RT_nom[3]= - (if selectable then radiatorType.RT_nom - else Modelica.SIunits.Conversions.from_degC({75,65,20})) + parameter SIunits.Temperature RT_nom[3]=(if selectable then radiatorType.RT_nom + else Modelica.Units.Conversions.from_degC({75,65,20})) "Nominal temperatures (TIn, TOut, TAir) according to DIN-EN 442." - annotation (Dialog(group="Miscellaneous",enable=not selectable)); + annotation (Dialog(group="Miscellaneous", enable=not selectable)); parameter Real PD = (if selectable then radiatorType.PressureDrop else 548208) "Pressure drop coefficient, delta_p[Pa] = PD*m_flow[kg/s]^2" annotation (Dialog(group="Miscellaneous", enable=not selectable)); @@ -284,605 +283,669 @@ equation from the temperatures at in- and outlet  of the radiator.

                      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                      -

                      - Type -

                      -
                      -

                      - Fraction of convective transport -

                      -
                      -

                      - Fraction of radiative transport -

                      -
                      -

                      - SectionalRadiator -

                      -

                      - Simple (vertical) sectional radiator -

                      -
                      -

                      - 0.70 -

                      -
                      -

                      - 0.30 -

                      -
                      -

                      - PanelRadiator10 -

                      -

                      - 10 -- Panel radiator (single panel) without convection device -

                      -
                      -

                      - 0.50 -

                      -
                      -

                      - 0.50 -

                      -
                      -

                      - PanelRadiator11 -

                      -

                      - 11 -- Panel radiator (single panel) with one convection device -

                      -
                      -

                      - 0.65 -

                      -
                      -

                      - 0.35 -

                      -
                      -

                      - PanelRadiator12 -

                      -

                      - 12 -- Panel radiator (single panel) with two convection devices -

                      -
                      -

                      - 0.75 -

                      -
                      -

                      - 0.25 -

                      -
                      -

                      - PanelRadiator20 -

                      -

                      - 20 -- Panel radiator (two panels) without convection device -

                      -
                      -

                      - 0.65 -

                      -
                      -

                      - 0.35 -

                      -
                      -

                      - PanelRadiator21 -

                      -

                      - 21 -- Panel radiator (two panels) with one convection device -

                      -
                      -

                      - 0.80 -

                      -
                      -

                      - 0.20 -

                      -
                      -

                      - PanelRadiator22 -

                      -

                      - 22 -- Panel radiator (two panels) with two convection devices -

                      -
                      -

                      - 0.85 -

                      -
                      -

                      - 0.15 -

                      -
                      -

                      - PanelRadiator30 -

                      -

                      - 30 -- Panel radiator (three panels) without convection device -

                      -
                      -

                      - 0.80 -

                      -
                      -

                      - 0.20 -

                      -
                      -

                      - PanelRadiator31 -

                      -

                      - 31 -- Panel radiator (three panels) with one convection device -

                      -
                      -

                      - 0.85 -

                      -
                      -

                      - 0.15 -

                      -
                      -

                      - PanelRadiator32 -

                      -

                      - 32 -- Panel radiator (three panels) with two or more convection - devices -

                      -
                      -

                      - 0.90 -

                      -
                      -

                      - 0.10 -

                      -
                      -

                      - ConvectorHeaterUncovered -

                      -

                      - Convector heater without cover -

                      -
                      -

                      - 0.95 -

                      -
                      -

                      - 0.05 -

                      -
                      -

                      - ConvectorHeaterCovered -

                      -

                      - Convector heater with cover -

                      -
                      -

                      - 1.00 -

                      -
                      -

                      - - no radiative transport - -

                      -
                      -

                      -
                      - The Height H of the radiator is discretized in N single Layers, as - shown in Figure 1 -

                      -

                      -
                      - \"Multilayer -

                      -

                      - Figure 1: Multilayer Model of radiator -

                      -

                      - For every layer the equation (1) is solved. -

                      - - - - - - - - - -
                      -

                      -
                      - \"Equation -

                      -
                      -

                      -
                      - (1) -

                      -
                      -

                      -
                      - The total heat emission consists of a convective and a radiative - part. -

                      - - - - - - - - - - - - - - - - - -
                      -

                      - \"Total -

                      -
                      -

                      -
                      - (2) -

                      -
                      -

                      - \"Convective -

                      -
                      -

                      -
                      - (3) -

                      -
                      -

                      - \"Radiative -

                      -
                      -

                      -
                      - (4) -

                      -
                      -

                      -
                      - The convective heat emission is proportional to \"delta . The radiative heat emission is proportional to - \"delta\"  =(T_L + DeltaT)^4-TR^4 (T_L: Room Temperature, - DeltaT: heater excess temperature, T_R: radiative temperature). -

                      - - - - - - - - - - - - - +
                      -

                      - \"Convective -

                      -
                      -

                      -
                      - (5) -

                      -
                      -

                      - \"Radiative -

                      -
                      -

                      -
                      - (6) -

                      -
                      +
                      + \"heat emission\" cellspacing=\"0\" cellpadding=\"2\" border= \"1\"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                      +

                      + Type +

                      +
                      +

                      + Fraction of convective transport +

                      +
                      +

                      + Fraction of radiative transport +

                      +
                      +

                      + SectionalRadiator +

                      +

                      + Simple (vertical) sectional radiator +

                      +
                      +

                      + 0.70 +

                      +
                      +

                      + 0.30 +

                      +
                      +

                      + PanelRadiator10 +

                      +

                      + 10 -- Panel radiator (single panel) without convection + device +

                      +
                      +

                      + 0.50 +

                      +
                      +

                      + 0.50 +

                      +
                      +

                      + PanelRadiator11 +

                      +

                      + 11 -- Panel radiator (single panel) with one convection + device +

                      +
                      +

                      + 0.65 +

                      +
                      +

                      + 0.35 +

                      +
                      +

                      + PanelRadiator12 +

                      +

                      + 12 -- Panel radiator (single panel) with two convection + devices +

                      +
                      +

                      + 0.75 +

                      +
                      +

                      + 0.25 +

                      +
                      +

                      + PanelRadiator20 +

                      +

                      + 20 -- Panel radiator (two panels) without convection device +

                      +
                      +

                      + 0.65 +

                      +
                      +

                      + 0.35 +

                      +
                      +

                      + PanelRadiator21 +

                      +

                      + 21 -- Panel radiator (two panels) with one convection + device +

                      +
                      +

                      + 0.80 +

                      +
                      +

                      + 0.20 +

                      +
                      +

                      + PanelRadiator22 +

                      +

                      + 22 -- Panel radiator (two panels) with two convection + devices +

                      +
                      +

                      + 0.85 +

                      +
                      +

                      + 0.15 +

                      +
                      +

                      + PanelRadiator30 +

                      +

                      + 30 -- Panel radiator (three panels) without convection + device +

                      +
                      +

                      + 0.80 +

                      +
                      +

                      + 0.20 +

                      +
                      +

                      + PanelRadiator31 +

                      +

                      + 31 -- Panel radiator (three panels) with one convection + device +

                      +
                      +

                      + 0.85 +

                      +
                      +

                      + 0.15 +

                      +
                      +

                      + PanelRadiator32 +

                      +

                      + 32 -- Panel radiator (three panels) with two or more + convection devices +

                      +
                      +

                      + 0.90 +

                      +
                      +

                      + 0.10 +

                      +
                      +

                      + ConvectorHeaterUncovered +

                      +

                      + Convector heater without cover +

                      +
                      +

                      + 0.95 +

                      +
                      +

                      + 0.05 +

                      +
                      +

                      + ConvectorHeaterCovered +

                      +

                      + Convector heater with cover +

                      +
                      +

                      + 1.00 +

                      +
                      +

                      + - no radiative transport - +

                      +
                      +

                      +
                      + The Height H of the radiator is discretized in N single Layers, + as shown in Figure 1 +

                      +

                      +
                      + \"Multilayer +

                      +

                      + Figure 1: Multilayer Model of radiator +

                      +

                      + For every layer the equation (1) is solved. +

                      + + +
                      + \"equation for multilayer\" cellspacing=\"0\" cellpadding= \"2\" + border=\"1\"> + + + + + + + + + +
                      +

                      +
                      + \"Equation +

                      +
                      +

                      +
                      + (1) +

                      +
                      +

                      +
                      + The total heat emission consists of a convective and a + radiative part. +

                      + + +
                      + \"heat emission conv and rad\" cellspacing=\"0\" + cellpadding=\"2\" border=\"1\"> + + + + + + + + + + + + + + + + + +
                      +

                      + \"Total +

                      +
                      +

                      +
                      + (2) +

                      +
                      +

                      + \"Convective +

                      +
                      +

                      +
                      + (3) +

                      +
                      +

                      + \"Radiative +

                      +
                      +

                      +
                      + (4) +

                      +
                      +

                      +
                      + The convective heat emission is proportional to \"delta . The radiative heat emission is + proportional to \"delta\"  =(T_L + DeltaT)^4-TR^4 (T_L: Room + Temperature, DeltaT: heater excess temperature, T_R: + radiative temperature). +

                      + + +
                      + \"heat emission conv\" cellspacing=\"0\" cellpadding=\"2\" + border=\"1\"> + + + + + + + + + + + + + +
                      +

                      + \"Convective +

                      +
                      +

                      +
                      + (5) +

                      +
                      +

                      + \"Radiative +

                      +
                      +

                      +
                      + (6) +

                      +
                      +

                      +
                      + The heat emission of the radiator depends on the + heater excess temperature. In the model it is + possible to choose between: +

                      + + +
                      + \"heat emission excess temperature\" cellspacing=\"0\" + cellpadding=\"2\" border=\"1\"> + + + + + + + + + + + + + + + + + + + + + + + + + + +
                      +

                      + Method +

                      +
                      +

                      + Formula +

                      +
                      +

                      + arithmetic heater excess temperature +

                      +
                      +

                      + + +

                      +
                      +

                      +
                      + (7) +

                      +
                      +

                      + logarithmic heater excess temperature +

                      +
                      +

                      + + +

                      +
                      +

                      +
                      + (8) +

                      +
                      +

                      + exponential heater excess temperature + according to [2] +

                      +
                      +

                      + + +

                      +
                      +

                      +
                      + (9) +

                      +
                      +

                      + Due to stability reasons and accuracy at small + heating medium flow, an exponential calculation + of the heater excess temperture is recommended. + The function \"calcHeaterExcessTemp \" regularize + the discontinuities in equation (9). +

                      +

                      + The radiator exponent according to DIN 442 is + valid for the total heat emission. the radiative + heat emission part grows larger. This is + considered by the following formulas: +

                      + + +
                      + \"radiator exponent\" cellspacing=\"0\" + cellpadding=\"2\" border=\"1\"> + + + + + + + + + + + + + +
                      +

                      + \"Radiator +

                      +
                      +

                      +
                      + (10) +

                      +
                      +

                      + \"Radiator +

                      +
                      +

                      +
                      + (11) +

                      +
                      +

                      + The modified convective exponent is + calculated by (11). The region of + discontinuity in eq. (11) has not yet been + regulized, so a constant radiator exponent is + used for now. +

                      +

                      + In the model the heat emission is calculated + according to eq. (5), (6) for every layer and + the respective power is connected to the romm + via the thermal ports. A varHeatSource + (inPort=total heat emission) is connected via + a thermal port to the enthalpie flow of the + heating medium and the stored heat in the + radiator mass. +

                      +

                      + The pressure loss is calculated with equation + (12). +

                      + + +
                      + \"pressure loss\" cellspacing=\"0\" + cellpadding=\"2\" border= \"1\"> + + + + + +
                      +

                      + \"delta +

                      +
                      +

                      +
                      + (12) +

                      +
                      +

                      + References +

                      +

                      + The coefficient k in eq. (12) is + calculated from manufacturer data and is + a part of the record for radiator_type. +

                      +

                      + Knowing the heat load of the room, an + appropriate radiator can be choosen out + of a Radiator DataBase via a record. But + it is also possible to simulate with + arbitrary parameters. +

                      +

                      + The thermal part of the model is adapted + from [3] and [1]. +

                      +
                        +
                      • [1] Glück, Bernd: Wärmeübertragung - + Wärmeabgabe von Raumheizflächen und + Rohren, 1990 +
                      • +
                      • [2] Nadler,Norbert: Die Wärmeleistung + von Raumheizkörpern in expliziter + Darstellung, In: HLH Lüftung/Klima - + Heizung/Sanitär - Gebäudetechnik 11, + S.621 - 624, 1991 +
                      • +
                      • [3] Tritschler, Markus: Bewertung der + Genauigkeit von Heizkostenverteilern, + Dissertation, Uni Stuttart, 1999 +
                      • +
                      +
                      +
                      +
                      +
                      +
                      +
                      +
                      -

                      -
                      - The heat emission of the radiator depends on the heater excess - temperature. In the model it is possible to choose between: -

                      - - - - - - - - - - - - - - - - - - - - - - - - - - -
                      -

                      - Method -

                      -
                      -

                      - Formula -

                      -
                      -

                      - arithmetic heater excess temperature -

                      -
                      -

                      - \"arithmetic -

                      -
                      -

                      -
                      - (7) -

                      -
                      -

                      - logarithmic heater excess temperature -

                      -
                      -

                      - \"logarithmic -

                      -
                      -

                      -
                      - (8) -

                      -
                      -

                      - exponential heater excess temperature according to [2] -

                      -
                      -

                      - \"exponential -

                      -
                      -

                      -
                      - (9) -

                      -
                      -

                      - Due to stability reasons and accuracy at small heating medium flow, - an exponential calculation of the heater excess temperture is - recommended. The function \"calcHeaterExcessTemp \" regularize the - discontinuities in equation (9). -

                      -

                      - The radiator exponent according to DIN 442 is valid for the total - heat emission. the radiative heat emission part grows larger. This is - considered by the following formulas: -

                      - - - - - - - - - - - - - -
                      -

                      - \"Radiator -

                      -
                      -

                      -
                      - (10) -

                      -
                      -

                      - \"Radiator -

                      -
                      -

                      -
                      - (11) -

                      -
                      -

                      - The modified convective exponent is calculated by (11). The region of - discontinuity in eq. (11) has not yet been regulized, so a constant - radiator exponent is used for now. -

                      -

                      - In the model the heat emission is calculated according to eq. (5), - (6) for every layer and the respective power is connected to the romm - via the thermal ports. A varHeatSource (inPort=total heat emission) - is connected via a thermal port to the enthalpie flow of the heating - medium and the stored heat in the radiator mass. -

                      -

                      - The pressure loss is calculated with equation (12). -

                      - - - - - -
                      -

                      - \"delta -

                      -
                      -

                      -
                      - (12) -

                      -
                      -

                      - References -

                      -

                      - The coefficient k in eq. (12) is calculated from manufacturer data - and is a part of the record for radiator_type. -

                      -

                      - Knowing the heat load of the room, an appropriate radiator can be - choosen out of a Radiator DataBase via a record. But it is also - possible to simulate with arbitrary parameters. -

                      -

                      - The thermal part of the model is adapted from [3] and [1]. -

                      -
                        -
                      • [1] Glück, Bernd: Wärmeübertragung - Wärmeabgabe von - Raumheizflächen und Rohren, 1990 -
                      • -
                      • [2] Nadler,Norbert: Die Wärmeleistung von Raumheizkörpern in - expliziter Darstellung, In: HLH Lüftung/Klima - Heizung/Sanitär - - Gebäudetechnik 11, S.621 - 624, 1991 -
                      • -
                      • [3] Tritschler, Markus: Bewertung der Genauigkeit von - Heizkostenverteilern, Dissertation, Uni Stuttart, 1999 -
                      • -
                      ", revisions="
                      • diff --git a/AixLib/Fluid/HeatExchangers/Radiators/RadiatorEN442_2.mo b/AixLib/Fluid/HeatExchangers/Radiators/RadiatorEN442_2.mo index f7b83dd981..ece7c91267 100644 --- a/AixLib/Fluid/HeatExchangers/Radiators/RadiatorEN442_2.mo +++ b/AixLib/Fluid/HeatExchangers/Radiators/RadiatorEN442_2.mo @@ -8,7 +8,8 @@ model RadiatorEN442_2 "Dynamic radiator for space heating" final C_start = fill(0, Medium.nC), final C_nominal = fill(1E-2, Medium.nC), final mSenFac = 1 + 500*mDry/(VWat*cp_nominal*Medium.density( - Medium.setState_pTX(Medium.p_default, Medium.T_default, Medium.X_default)))); + Medium.setState_pTX(Medium.p_default, Medium.T_default, Medium.X_default))), + final massDynamics=energyDynamics); constant Boolean homotopyInitialization = true "= true, use homotopy method" annotation(HideResult=true); @@ -18,29 +19,29 @@ model RadiatorEN442_2 "Dynamic radiator for space heating" parameter Real fraRad(min=0, max=1) = 0.35 "Fraction radiant heat transfer"; // Assumptions - parameter Modelica.SIunits.Power Q_flow_nominal + parameter Modelica.Units.SI.Power Q_flow_nominal "Nominal heating power (positive for heating)" - annotation(Dialog(group="Nominal condition")); - parameter Modelica.SIunits.Temperature T_a_nominal + annotation (Dialog(group="Nominal condition")); + parameter Modelica.Units.SI.Temperature T_a_nominal "Water inlet temperature at nominal condition" - annotation(Dialog(group="Nominal condition")); - parameter Modelica.SIunits.Temperature T_b_nominal + annotation (Dialog(group="Nominal condition")); + parameter Modelica.Units.SI.Temperature T_b_nominal "Water outlet temperature at nominal condition" - annotation(Dialog(group="Nominal condition")); - parameter Modelica.SIunits.Temperature TAir_nominal = 293.15 + annotation (Dialog(group="Nominal condition")); + parameter Modelica.Units.SI.Temperature TAir_nominal=293.15 "Air temperature at nominal condition" - annotation(Dialog(group="Nominal condition")); - parameter Modelica.SIunits.Temperature TRad_nominal = TAir_nominal + annotation (Dialog(group="Nominal condition")); + parameter Modelica.Units.SI.Temperature TRad_nominal=TAir_nominal "Radiative temperature at nominal condition" - annotation(Dialog(group="Nominal condition")); + annotation (Dialog(group="Nominal condition")); parameter Real n = 1.24 "Exponent for heat transfer"; - parameter Modelica.SIunits.Volume VWat = 5.8E-6*abs(Q_flow_nominal) - "Water volume of radiator" - annotation(Dialog(tab = "Dynamics", enable = not (energyDynamics == Modelica.Fluid.Types.Dynamics.SteadyState))); - parameter Modelica.SIunits.Mass mDry = 0.0263*abs(Q_flow_nominal) + parameter Modelica.Units.SI.Volume VWat=5.8E-6*abs(Q_flow_nominal) + "Water volume of radiator" annotation (Dialog(tab="Dynamics", enable=not ( + energyDynamics == Modelica.Fluid.Types.Dynamics.SteadyState))); + parameter Modelica.Units.SI.Mass mDry=0.0263*abs(Q_flow_nominal) "Dry mass of radiator that will be lumped to water heat capacity" - annotation(Dialog(tab = "Dynamics", enable = not (energyDynamics == Modelica.Fluid.Types.Dynamics.SteadyState))); + annotation (Dialog(tab="Dynamics", enable=not (energyDynamics == Modelica.Fluid.Types.Dynamics.SteadyState))); parameter Real deltaM(min=0.01) = 0.3 "Fraction of nominal mass flow rate where transition to turbulent occurs" annotation(Evaluate=true, @@ -51,19 +52,19 @@ model RadiatorEN442_2 "Dynamic radiator for space heating" "= true, use m_flow = f(dp) else dp = f(m_flow)" annotation (Evaluate=true, Dialog(tab="Advanced")); - parameter Modelica.SIunits.PressureDifference dp_nominal(displayUnit="Pa") = 0 - "Pressure drop at nominal mass flow rate" - annotation(Dialog(group = "Nominal condition")); + parameter Modelica.Units.SI.PressureDifference dp_nominal(displayUnit="Pa")= + 0 "Pressure drop at nominal mass flow rate" + annotation (Dialog(group="Nominal condition")); parameter Boolean linearized = false "= true, use linear relation between m_flow and dp for any flow rate" annotation(Evaluate=true, Dialog(tab="Advanced")); // Heat flow rates - Modelica.SIunits.HeatFlowRate QCon_flow = heatPortCon.Q_flow + Modelica.Units.SI.HeatFlowRate QCon_flow=heatPortCon.Q_flow "Heat input into the water due to convective heat transfer with room air"; - Modelica.SIunits.HeatFlowRate QRad_flow = heatPortRad.Q_flow + Modelica.Units.SI.HeatFlowRate QRad_flow=heatPortRad.Q_flow "Heat input into the water due to radiative heat transfer with room"; - Modelica.SIunits.HeatFlowRate Q_flow = QCon_flow + QRad_flow + Modelica.Units.SI.HeatFlowRate Q_flow=QCon_flow + QRad_flow "Heat input into the water"; // Heat ports @@ -80,7 +81,7 @@ model RadiatorEN442_2 "Dynamic radiator for space heating" each V=VWat/nEle, each final m_flow_nominal = m_flow_nominal, each final energyDynamics=energyDynamics, - each final massDynamics=massDynamics, + each final massDynamics=energyDynamics, each final p_start=p_start, each final T_start=T_start, each final X_start=X_start, @@ -88,28 +89,31 @@ model RadiatorEN442_2 "Dynamic radiator for space heating" each final mSenFac=mSenFac) "Volume for fluid stream" annotation (Placement(transformation(extent={{-9,0},{11,-20}}))); protected - parameter Modelica.SIunits.SpecificHeatCapacity cp_nominal= - Medium.specificHeatCapacityCp( - Medium.setState_pTX(Medium.p_default, T_a_nominal, Medium.X_default)) - "Specific heat capacity at nominal conditions"; - parameter Modelica.SIunits.HeatFlowRate QEle_flow_nominal[nEle]( - each fixed=false, each start=Q_flow_nominal/nEle) + parameter Modelica.Units.SI.SpecificHeatCapacity cp_nominal= + Medium.specificHeatCapacityCp(Medium.setState_pTX( + Medium.p_default, + T_a_nominal, + Medium.X_default)) "Specific heat capacity at nominal conditions"; + parameter Modelica.Units.SI.HeatFlowRate QEle_flow_nominal[nEle](each fixed= + false, each start=Q_flow_nominal/nEle) "Nominal heating power of each element"; - parameter Modelica.SIunits.Temperature TWat_nominal[nEle]( - each fixed=false, - start={T_a_nominal - i/nEle * (T_a_nominal-T_b_nominal) for i in 1:nEle}) + parameter Modelica.Units.SI.Temperature TWat_nominal[nEle](each fixed=false, + start={T_a_nominal - i/nEle*(T_a_nominal - T_b_nominal) for i in 1:nEle}) "Water temperature in each element at nominal conditions"; - parameter Modelica.SIunits.TemperatureDifference[nEle] dTRad_nominal( - each fixed=false, start={T_a_nominal - i/nEle * (T_a_nominal-T_b_nominal) - TRad_nominal - for i in 1:nEle}) + parameter Modelica.Units.SI.TemperatureDifference[nEle] dTRad_nominal(each + fixed=false, start={T_a_nominal - i/nEle*(T_a_nominal - T_b_nominal) - + TRad_nominal for i in 1:nEle}) "Temperature difference for radiative heat transfer at nominal conditions"; - parameter Modelica.SIunits.TemperatureDifference[nEle] dTCon_nominal( - each fixed=false, start={T_a_nominal - i/nEle * (T_a_nominal-T_b_nominal) - TAir_nominal - for i in 1:nEle}) + parameter Modelica.Units.SI.TemperatureDifference[nEle] dTCon_nominal(each + fixed=false, start={T_a_nominal - i/nEle*(T_a_nominal - T_b_nominal) - + TAir_nominal for i in 1:nEle}) "Temperature difference for convective heat transfer at nominal conditions"; - parameter Modelica.SIunits.ThermalConductance UAEle(fixed=false, min=0, - start=Q_flow_nominal/((T_a_nominal+T_b_nominal)/2-((1-fraRad)*TAir_nominal+fraRad*TRad_nominal))/nEle) + parameter Modelica.Units.SI.ThermalConductance UAEle( + fixed=false, + min=0, + start=Q_flow_nominal/((T_a_nominal + T_b_nominal)/2 - ((1 - fraRad)* + TAir_nominal + fraRad*TRad_nominal))/nEle) "UA value at nominal condition for each element"; final parameter Real k = if T_b_nominal > TAir_nominal then 1 else -1 @@ -124,10 +128,10 @@ protected "Heat input into radiator from radiative heat transfer" annotation (Placement(transformation(extent={{-48,-80},{-28,-60}}))); - Modelica.SIunits.TemperatureDifference dTCon[nEle] = {heatPortCon.T - vol[i].T for i in 1:nEle} - "Temperature difference for convective heat transfer"; - Modelica.SIunits.TemperatureDifference dTRad[nEle] = {heatPortRad.T - vol[i].T for i in 1:nEle} - "Temperature difference for radiative heat transfer"; + Modelica.Units.SI.TemperatureDifference dTCon[nEle]={heatPortCon.T - vol[i].T + for i in 1:nEle} "Temperature difference for convective heat transfer"; + Modelica.Units.SI.TemperatureDifference dTRad[nEle]={heatPortRad.T - vol[i].T + for i in 1:nEle} "Temperature difference for radiative heat transfer"; Modelica.Blocks.Sources.RealExpression QCon[nEle](y={if homotopyInitialization then homotopy(actual=(1 - fraRad) * UAEle * (heatPortCon.T - vol[i].T) * @@ -231,13 +235,13 @@ equation points={{-28,-70},{-20,-70},{-20,-10},{-9,-10}}, color={191,0,0})); connect(vol[nEle].ports[2], port_b) annotation (Line( - points={{3,5.55112e-16},{27.25,5.55112e-16},{27.25,1.11022e-15},{51.5,1.11022e-15}, - {51.5,5.55112e-16},{100,5.55112e-16}}, + points={{2,5.55112e-16},{27.25,5.55112e-16},{27.25,1.11022e-15},{51.5, + 1.11022e-15},{51.5,5.55112e-16},{100,5.55112e-16}}, color={0,127,255})); for i in 1:nEle-1 loop connect(vol[i].ports[2], vol[i+1].ports[1]) annotation (Line( - points={{3,5.55112e-16},{2,5.55112e-16},{2,1.11022e-15},{1,1.11022e-15}, - {1,5.55112e-16},{-1,5.55112e-16}}, + points={{2,5.55112e-16},{2,5.55112e-16},{2,1.11022e-15},{1,1.11022e-15}, + {1,5.55112e-16},{0,5.55112e-16}}, color={0,127,255})); end for; connect(QCon.y, preCon.Q_flow) annotation (Line( @@ -267,7 +271,7 @@ equation connect(res.port_a, port_a) annotation (Line(points={{-60,0},{-80,0},{-100,0}}, color={0,127,255})); connect(res.port_b, vol[1].ports[1]) - annotation (Line(points={{-40,0},{-1,0}}, color={0,127,255})); + annotation (Line(points={{-40,0},{0,0}}, color={0,127,255})); annotation ( Icon(graphics={ Ellipse( extent={{-20,22},{20,-20}}, @@ -309,167 +313,174 @@ equation points={{66,60},{66,-60}})}), defaultComponentName="rad", Documentation(info=" -

                        -This is a model of a radiator that can be used as a dynamic or steady-state model. -The required parameters are data that are typically available from -manufacturers that follow the European Norm EN 442-2. -

                        -

                        -However, to allow for varying mass flow rates, the transferred heat is computed -using a discretization along the water flow path, and heat is exchanged between -each compartment and a uniform room air and radiation temperature. -This discretization is different from the computation in EN 442-2, which -may yield water outlet temperatures that are below -the room temperature at low mass flow rates. -Furthermore, rather than using only one room temperature, this model uses -a room air and room radiation temperature. -

                        -

                        -The transferred heat is modeled as follows: -Let N denote the number of elements used to discretize the radiator model. -For each element i ∈ {1, … , N}, -the convective and radiative heat transfer -Qic and -Qir -from the radiator to the room is -

                        -

                        - Qic = sign(Ti-Ta) - (1-fr) UA ⁄ N |Ti-Ta|n -

                        - Qir = sign(Ti-Tr) - fr UA ⁄ N |Ti-Tr|n -

                        -

                        -where -Ti is the water temperature of the element, -Ta is the temperature of the room air, -Tr is the radiative temperature, -0 < fr < 1 is the fraction of radiant to total heat transfer, -UA is the UA-value of the radiator, -and -n is an exponent for the heat transfer. -The model computes the UA-value by numerically solving the above equations -for given -nominal heating power, nominal temperatures, fraction radiant to total heat transfer -and exponent for heat transfer. -

                        -

                        -The parameter energyDynamics (in the Assumptions tab), -determines whether the model computes the dynamic or the steady-state response. -For the transient response, heat storage is computed using a -finite volume approach for the -water and the metal mass, which are both assumed to be at the same -temperature. -

                        -

                        -The default parameters for the heat capacities are valid for a flat plate radiator without fins, -with one plate of water carying fluid, and a height of 0.42 meters. -

                        -", revisions=" -
                          -
                        • -April 14, 2020, by Michael Wetter:
                          -Changed homotopyInitialization to a constant.
                          -This is for -AixLib, #1341. -
                        • -
                        • -February 21, 2020, by Michael Wetter:
                          -Changed icon to display its operating state.
                          -This is for -#1294. -
                        • -
                        • -November 17, 2016, by Filip Jorissen:
                          -Added pressure drop equations and parameters.
                          -This is for -#586. -
                        • -
                        • -November 3, 2016, by Michael Wetter:
                          -Set preHea(final alpha=0) as this allows to simplify the -system of equations.
                          -This is for -#570. -
                        • -
                        • -March 17, 2016, by Michael Wetter:
                          -Reformulated model to reduce the dimension of the nonlinear system of equations. -This is for -#435. -
                        • -
                        • -November 19, 2015, by Michael Wetter:
                          -Removed assignment of parameter -showDesignFlowDirection in extends statement. -This is for -#349. -
                        • -
                        • -April 11, 2015, by Filip Jorissen:
                          -Propagated vol.massDynamics to -top level parameter massDynamics instead of energyDynamics. -
                        • -
                        • -November 25, 2014, by Carles Ribas Tugores:
                          -Interchange position of fraRad parameter and the complementary (1-fraRad) -in the equation used to calculate the nominal heating power of each element, QEle_flow_nominal[i]. -
                        • -
                        • -October 29, 2014, by Michael Wetter:
                          -Made assignment of mFactor final, and changed computation of -density to use default medium states as are also used to compute the -specific heat capacity. -
                        • -
                        • -October 21, 2014, by Filip Jorissen:
                          -Added parameter mFactor and removed thermal capacity -which can lead to an index reduction. -
                        • -
                        • -May 29, 2014, by Michael Wetter:
                          -Removed undesirable annotation Evaluate=true. -
                        • -
                        • -October 8, 2013 by Michael Wetter:
                          -Removed conditional statement in the declaration of the parameter -mDry, as this is incorrect syntax. -
                        • -
                        • -September 26, 2013 by Michael Wetter:
                          -Reformulated implementation to avoid mixing textual and graphical -declarations in the equation section. -
                        • -
                        • -April 4, 2011 by Michael Wetter:
                          -Changed the implementation to use - -AixLib.Utilities.Math.Functions.regNonZeroPower. -This allows formulating the model without any non-differentiable function -inside the equation section. -
                        • -
                        • -April 2, 2011 by Michael Wetter:
                          -Added homotopy operator. -
                        • -
                        • -February 11, 2011 by Michael Wetter:
                          -Revised the initialization to ensure that at the nominal conditions, the -amount of transferred heat is excatly the same as the specified nominal power. -In the previous implementation, the UA-value was computed using a simplified -expression for the temperature difference, leading to a slightly different amount -of heat transfer. -
                        • -
                        • -February 4, 2011 by Michael Wetter:
                          -Simplified implementation. -
                        • -
                        • -January 30, 2009 by Michael Wetter:
                          -First implementation. -
                        • -
                        -"), - Diagram(graphics={Rectangle(extent={{-62,78},{-46,50}}, lineColor={28,108,200})})); +

                        + This is a model of a radiator that can be used as a dynamic or steady-state model. + The required parameters are data that are typically available from + manufacturers that follow the European Norm EN 442-2. +

                        +

                        + However, to allow for varying mass flow rates, the transferred heat is computed + using a discretization along the water flow path, and heat is exchanged between + each compartment and a uniform room air and radiation temperature. + This discretization is different from the computation in EN 442-2, which + may yield water outlet temperatures that are below + the room temperature at low mass flow rates. + Furthermore, rather than using only one room temperature, this model uses + a room air and room radiation temperature. +

                        +

                        + The transferred heat is modeled as follows: + Let N denote the number of elements used to discretize the radiator model. + For each element i ∈ {1, … , N}, + the convective and radiative heat transfer + Qic and + Qir + from the radiator to the room is +

                        +

                        + Qic = sign(Ti-Ta) + (1-fr) UA ⁄ N |Ti-Ta|n +

                        + Qir = sign(Ti-Tr) + fr UA ⁄ N |Ti-Tr|n +

                        +

                        + where + Ti is the water temperature of the element, + Ta is the temperature of the room air, + Tr is the radiative temperature, + 0 < fr < 1 is the fraction of radiant to total heat transfer, + UA is the UA-value of the radiator, + and + n is an exponent for the heat transfer. + The model computes the UA-value by numerically solving the above equations + for given + nominal heating power, nominal temperatures, fraction radiant to total heat transfer + and exponent for heat transfer. +

                        +

                        + The parameter energyDynamics (in the Assumptions tab), + determines whether the model computes the dynamic or the steady-state response. + For the transient response, heat storage is computed using a + finite volume approach for the + water and the metal mass, which are both assumed to be at the same + temperature. +

                        +

                        + The default parameters for the heat capacities are valid for a flat plate radiator without fins, + with one plate of water carying fluid, and a height of 0.42 meters. +

                        + ",revisions=" +
                          +
                        • + March 7, 2022, by Michael Wetter:
                          + Set final massDynamics=energyDynamics.
                          + This is for + #1542. +
                        • +
                        • + April 14, 2020, by Michael Wetter:
                          + Changed homotopyInitialization to a constant.
                          + This is for + IBPSA, #1341. +
                        • +
                        • + February 21, 2020, by Michael Wetter:
                          + Changed icon to display its operating state.
                          + This is for + #1294. +
                        • +
                        • + November 17, 2016, by Filip Jorissen:
                          + Added pressure drop equations and parameters.
                          + This is for + #586. +
                        • +
                        • + November 3, 2016, by Michael Wetter:
                          + Set preHea(final alpha=0) as this allows to simplify the + system of equations.
                          + This is for + #570. +
                        • +
                        • + March 17, 2016, by Michael Wetter:
                          + Reformulated model to reduce the dimension of the nonlinear system of equations. + This is for + #435. +
                        • +
                        • + November 19, 2015, by Michael Wetter:
                          + Removed assignment of parameter + showDesignFlowDirection in extends statement. + This is for + #349. +
                        • +
                        • + April 11, 2015, by Filip Jorissen:
                          + Propagated vol.massDynamics to + top level parameter massDynamics instead of energyDynamics. +
                        • +
                        • + November 25, 2014, by Carles Ribas Tugores:
                          + Interchange position of fraRad parameter and the complementary (1-fraRad) + in the equation used to calculate the nominal heating power of each element, QEle_flow_nominal[i]. +
                        • +
                        • + October 29, 2014, by Michael Wetter:
                          + Made assignment of mFactor final, and changed computation of + density to use default medium states as are also used to compute the + specific heat capacity. +
                        • +
                        • + October 21, 2014, by Filip Jorissen:
                          + Added parameter mFactor and removed thermal capacity + which can lead to an index reduction. +
                        • +
                        • + May 29, 2014, by Michael Wetter:
                          + Removed undesirable annotation Evaluate=true. +
                        • +
                        • + October 8, 2013 by Michael Wetter:
                          + Removed conditional statement in the declaration of the parameter + mDry, as this is incorrect syntax. +
                        • +
                        • + September 26, 2013 by Michael Wetter:
                          + Reformulated implementation to avoid mixing textual and graphical + declarations in the equation section. +
                        • +
                        • + April 4, 2011 by Michael Wetter:
                          + Changed the implementation to use + + AixLib.Utilities.Math.Functions.regNonZeroPower. + This allows formulating the model without any non-differentiable function + inside the equation section. +
                        • +
                        • + April 2, 2011 by Michael Wetter:
                          + Added homotopy operator. +
                        • +
                        • + February 11, 2011 by Michael Wetter:
                          + Revised the initialization to ensure that at the nominal conditions, the + amount of transferred heat is excatly the same as the specified nominal power. + In the previous implementation, the UA-value was computed using a simplified + expression for the temperature difference, leading to a slightly different amount + of heat transfer. +
                        • +
                        • + February 4, 2011 by Michael Wetter:
                          + Simplified implementation. +
                        • +
                        • + January 30, 2009 by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), + Diagram(graphics={Rectangle(extent={{-62,78},{-46,50}}, lineColor={28,108,200})}), + __Dymola_LockedEditing="Model from IBPSA"); end RadiatorEN442_2; diff --git a/AixLib/Fluid/HeatExchangers/SensibleCooler_T.mo b/AixLib/Fluid/HeatExchangers/SensibleCooler_T.mo index dab512fc39..0c34563a87 100644 --- a/AixLib/Fluid/HeatExchangers/SensibleCooler_T.mo +++ b/AixLib/Fluid/HeatExchangers/SensibleCooler_T.mo @@ -9,23 +9,14 @@ model SensibleCooler_T final mWatMin_flow = 0, final use_TSet = true, final use_X_wSet = false, - final energyDynamics = energyDynamics, - final massDynamics = Modelica.Fluid.Types.Dynamics.SteadyState, final T_start=T_start, final X_start=Medium.X_default)); - parameter Modelica.SIunits.HeatFlowRate QMin_flow(max=0) = -Modelica.Constants.inf - "Maximum heat flow rate for cooling (negative)" - annotation (Evaluate=true); + parameter Modelica.Units.SI.HeatFlowRate QMin_flow(max=0) = -Modelica.Constants.inf + "Maximum heat flow rate for cooling (negative)" annotation (Evaluate=true); - parameter Modelica.SIunits.Temperature T_start=Medium.T_default - "Start value of temperature" - annotation(Dialog(tab = "Initialization")); - - // Dynamics - parameter Modelica.Fluid.Types.Dynamics energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyState - "Type of energy balance: dynamic (3 initialization options) or steady state" - annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Equations")); + parameter Modelica.Units.SI.Temperature T_start=Medium.T_default + "Start value of temperature" annotation (Dialog(tab="Initialization")); Modelica.Blocks.Interfaces.RealInput TSet( unit="K", @@ -46,97 +37,97 @@ equation annotation ( defaultComponentName="coo", Documentation(info=" -

                        -Model for an ideal sensible-only cooler that controls its outlet temperature to -a prescribed outlet temperature. -

                        -

                        -This model forces the outlet temperature at port_b to be -no higher than the temperature of the input signal -TSet, subject to optional limits on the -capacity. -By default, the model has unlimited cooling capacity. -

                        -

                        -The output signal Q_flow ≤ 0 is the heat added -to the medium if the mass flow rate is from port_a to port_b. -If the flow is reversed, then Q_flow=0. -

                        -

                        -The outlet conditions at port_a are not affected by this model, -other than for a possible pressure difference due to flow friction. -

                        -

                        -If the parameter energyDynamics is different from -Modelica.Fluid.Types.Dynamics.SteadyState, -the component models the dynamic response using a first order differential equation. -The time constant of the component is equal to the parameter tau. -This time constant is adjusted based on the mass flow rate using -

                        -

                        eff = τ |ṁ| ⁄ ṁnom -

                        -

                        -where -τeff is the effective time constant for the given mass flow rate - and -τ is the time constant at the nominal mass flow rate -nom. -This type of dynamics is equal to the dynamics that a completely mixed -control volume would have. -

                        -

                        -Optionally, this model can have a flow resistance. -Set dp_nominal = 0 to disable the flow friction calculation. -

                        -

                        -For a similar model that is a heater, use - -AixLib.Fluid.HeatExchangers.Heater_T. -For a model that uses a control signal u ∈ [0, 1] and multiplies -this with the nominal heating or cooling power, use - -AixLib.Fluid.HeatExchangers.HeaterCooler_u. -

                        -

                        Limitations

                        -

                        -If the flow is from port_b to port_a, -then the enthalpy of the medium is not affected by this model. -

                        -

                        -This model does not affect the humidity of the air. Therefore, -if used to cool air below the dew point temperature, the water mass fraction -will not change. -

                        -

                        Validation

                        -

                        -The model has been validated against the analytical solution in -the examples - -AixLib.Fluid.HeatExchangers.Validation.PrescribedOutlet -and - -AixLib.Fluid.HeatExchangers.Validation.PrescribedOutlet_dynamic. -

                        -", +

                        + Model for an ideal sensible-only cooler that controls its outlet temperature to + a prescribed outlet temperature. +

                        +

                        + This model forces the outlet temperature at port_b to be + no higher than the temperature of the input signal + TSet, subject to optional limits on the + capacity. + By default, the model has unlimited cooling capacity. +

                        +

                        + The output signal Q_flow ≤ 0 is the heat added + to the medium if the mass flow rate is from port_a to port_b. + If the flow is reversed, then Q_flow=0. +

                        +

                        + The outlet conditions at port_a are not affected by this model, + other than for a possible pressure difference due to flow friction. +

                        +

                        + If the parameter energyDynamics is different from + Modelica.Fluid.Types.Dynamics.SteadyState, + the component models the dynamic response using a first order differential equation. + The time constant of the component is equal to the parameter tau. + This time constant is adjusted based on the mass flow rate using +

                        +

                        + τeff = τ |ṁ| ⁄ ṁnom +

                        +

                        + where + τeff is the effective time constant for the given mass flow rate + and + τ is the time constant at the nominal mass flow rate + nom. + This type of dynamics is equal to the dynamics that a completely mixed + control volume would have. +

                        +

                        + Optionally, this model can have a flow resistance. + Set dp_nominal = 0 to disable the flow friction calculation. +

                        +

                        + For a similar model that is a heater, use + + AixLib.Fluid.HeatExchangers.Heater_T. + For a model that uses a control signal u ∈ [0, 1] and multiplies + this with the nominal heating or cooling power, use + + AixLib.Fluid.HeatExchangers.HeaterCooler_u. +

                        +

                        Limitations

                        +

                        + If the flow is from port_b to port_a, + then the enthalpy of the medium is not affected by this model. +

                        +

                        + This model does not affect the humidity of the air. Therefore, + if used to cool air below the dew point temperature, the water mass fraction + will not change. +

                        +

                        Validation

                        +

                        + The model has been validated against the analytical solution in + the examples + + AixLib.Fluid.HeatExchangers.Validation.PrescribedOutlet + and + + AixLib.Fluid.HeatExchangers.Validation.PrescribedOutlet_dynamic. +

                        + ", revisions=" -
                          -
                        • -September 10, 2018, by Michael Wetter:
                          -Corrected missing propagation of initial conditions.
                          -This is for - -AixLib, #1016. -
                        • -
                        • -May 3, 2017, by Michael Wetter:
                          -First implementation.
                          -This is for - -AixLib, #763. -
                        • -
                        -"), +
                          +
                        • + September 10, 2018, by Michael Wetter:
                          + Corrected missing propagation of initial conditions.
                          + This is for + + AixLib, #1016. +
                        • +
                        • + May 3, 2017, by Michael Wetter:
                          + First implementation.
                          + This is for + + AixLib, #763. +
                        • +
                        + "), Icon(graphics={ Rectangle( extent={{-70,60},{70,-60}}, @@ -146,7 +137,7 @@ AixLib, #763. fillPattern=FillPattern.Solid), Text( extent={{20,-10},{64,-56}}, - lineColor={255,255,255}, + textColor={255,255,255}, textString="-"), Rectangle( extent={{-64,34},{-34,54}}, @@ -156,7 +147,7 @@ AixLib, #763. Line(points={{-64,34},{-52,44},{-64,54}}, color={0,0,0}), Text( extent={{26,108},{94,84}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="Q_flow"), Rectangle( extent={{70,82},{100,78}}, @@ -184,6 +175,7 @@ AixLib, #763. fillPattern=FillPattern.Solid), Text( extent={{-110,102},{-74,84}}, - lineColor={0,0,127}, - textString="T")})); + textColor={0,0,127}, + textString="T")}), + __Dymola_LockedEditing="Model from IBPSA"); end SensibleCooler_T; diff --git a/AixLib/Fluid/HeatExchangers/Validation/ConstantEffectiveness.mo b/AixLib/Fluid/HeatExchangers/Validation/ConstantEffectiveness.mo index 96e1fbe381..ace9b8bbe4 100644 --- a/AixLib/Fluid/HeatExchangers/Validation/ConstantEffectiveness.mo +++ b/AixLib/Fluid/HeatExchangers/Validation/ConstantEffectiveness.mo @@ -114,18 +114,19 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/ConstantEffectiveness.mos" "Simulate and plot"), Documentation(info=" -

                        -This model tests - -AixLib.Fluid.HeatExchangers.ConstantEffectiveness -for different inlet conditions. -

                        -", revisions=" -
                          -
                        • -April 28, 2008, by Michael Wetter:
                          -First implementation. -
                        • -
                        -")); +

                        + This model tests + + AixLib.Fluid.HeatExchangers.ConstantEffectiveness + for different inlet conditions. +

                        + ",revisions=" +
                          +
                        • + April 28, 2008, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end ConstantEffectiveness; diff --git a/AixLib/Fluid/HeatExchangers/Validation/DryCoilEffectivenessNTU.mo b/AixLib/Fluid/HeatExchangers/Validation/DryCoilEffectivenessNTU.mo index 0b6bee239b..25e0c05aa4 100644 --- a/AixLib/Fluid/HeatExchangers/Validation/DryCoilEffectivenessNTU.mo +++ b/AixLib/Fluid/HeatExchangers/Validation/DryCoilEffectivenessNTU.mo @@ -6,18 +6,20 @@ model DryCoilEffectivenessNTU package Medium1 = AixLib.Media.Water; package Medium2 = AixLib.Media.Air; - parameter Modelica.SIunits.SpecificHeatCapacity cp1= - Medium1.specificHeatCapacityCp( - Medium1.setState_pTX(Medium1.p_default, Medium1.T_default, Medium1.X_default)) - "Specific heat capacity of medium 2"; - parameter Modelica.SIunits.SpecificHeatCapacity cp2= - Medium2.specificHeatCapacityCp( - Medium2.setState_pTX(Medium2.p_default, Medium2.T_default, Medium2.X_default)) - "Specific heat capacity of medium 2"; - parameter Modelica.SIunits.MassFlowRate m1_flow = 5 + parameter Modelica.Units.SI.SpecificHeatCapacity cp1= + Medium1.specificHeatCapacityCp(Medium1.setState_pTX( + Medium1.p_default, + Medium1.T_default, + Medium1.X_default)) "Specific heat capacity of medium 2"; + parameter Modelica.Units.SI.SpecificHeatCapacity cp2= + Medium2.specificHeatCapacityCp(Medium2.setState_pTX( + Medium2.p_default, + Medium2.T_default, + Medium2.X_default)) "Specific heat capacity of medium 2"; + parameter Modelica.Units.SI.MassFlowRate m1_flow=5 "Nominal mass flow rate medium 1"; - parameter Modelica.SIunits.MassFlowRate m2_flow = m1_flow*cp1/ - cp2 "Nominal mass flow rate medium 2"; + parameter Modelica.Units.SI.MassFlowRate m2_flow=m1_flow*cp1/cp2 + "Nominal mass flow rate medium 2"; AixLib.Fluid.Sources.Boundary_pT sin_2( redeclare package Medium = Medium2, @@ -250,24 +252,25 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/DryCoilEffectivenessNTU.mos" "Simulate and plot"), Documentation(info=" -

                        -This model tests - -AixLib.Fluid.HeatExchangers.DryCoilEffectivenessNTU -for different inlet conditions. -

                        -", revisions=" -
                          -
                        • -December 22, 2014 by Michael Wetter:
                          -Removed Modelica.Fluid.System -to address issue -#311. -
                        • -
                        • -February 12, 2010, by Michael Wetter:
                          -First implementation. -
                        • -
                        -")); +

                        + This model tests + + AixLib.Fluid.HeatExchangers.DryCoilEffectivenessNTU + for different inlet conditions. +

                        + ",revisions=" +
                          +
                        • + December 22, 2014 by Michael Wetter:
                          + Removed Modelica.Fluid.System + to address issue + #311. +
                        • +
                        • + February 12, 2010, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end DryCoilEffectivenessNTU; diff --git a/AixLib/Fluid/HeatExchangers/Validation/EvaporatorCondenser.mo b/AixLib/Fluid/HeatExchangers/Validation/EvaporatorCondenser.mo index 5d4a345c37..69ccbd1581 100644 --- a/AixLib/Fluid/HeatExchangers/Validation/EvaporatorCondenser.mo +++ b/AixLib/Fluid/HeatExchangers/Validation/EvaporatorCondenser.mo @@ -4,7 +4,7 @@ model EvaporatorCondenser "Test model for the evaporator or condenser model" package Medium = AixLib.Media.Water "Medium model"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal = 0.01 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=0.01 "Nominal mass flow rate"; Modelica.Thermal.HeatTransfer.Sources.FixedTemperature ref(T=283.15) @@ -33,7 +33,6 @@ model EvaporatorCondenser "Test model for the evaporator or condenser model" m_flow(start=0.1), dp(start=10), UA=100, - massDynamics=Modelica.Fluid.Types.Dynamics.SteadyState, dp_nominal=0, tau=5, energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyState, @@ -69,23 +68,24 @@ equation experiment( Tolerance=1e-6, StopTime=100), Documentation(info=" -

                        -Model that demonstrates the use of the - -AixLib.Fluid.HeatExchangers.EvaporatorCondenser model. -

                        -

                        -The fluid flow rate is increased from ṁ = 0.01 kg/s to -ṁ = 0.10 kg/s over 100 seconds. As a result, the heat exchanger -effectiveness and the fluid temperature difference in the heat exchanger -decrease. -

                        -", revisions=" -
                          -
                        • -October 11, 2016, by Massimo Cimmino:
                          -First implementation. -
                        • -
                        -")); +

                        + Model that demonstrates the use of the + + AixLib.Fluid.HeatExchangers.EvaporatorCondenser model. +

                        +

                        + The fluid flow rate is increased from ṁ = 0.01 kg/s to + ṁ = 0.10 kg/s over 100 seconds. As a result, the heat exchanger + effectiveness and the fluid temperature difference in the heat exchanger + decrease. +

                        + ",revisions=" +
                          +
                        • + October 11, 2016, by Massimo Cimmino:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end EvaporatorCondenser; diff --git a/AixLib/Fluid/HeatExchangers/Validation/HeaterCooler_u.mo b/AixLib/Fluid/HeatExchangers/Validation/HeaterCooler_u.mo index 8156e2cce6..8a0189b4b5 100644 --- a/AixLib/Fluid/HeatExchangers/Validation/HeaterCooler_u.mo +++ b/AixLib/Fluid/HeatExchangers/Validation/HeaterCooler_u.mo @@ -5,8 +5,8 @@ model HeaterCooler_u "Model that demonstrates the ideal heater model" package Medium = AixLib.Media.Air; - parameter Modelica.SIunits.MassFlowRate - m_flow_nominal=3000/1000/20 "Nominal mass flow rate"; + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=3000/1000/20 + "Nominal mass flow rate"; AixLib.Fluid.Sources.Boundary_pT sin( redeclare package Medium = Medium, @@ -108,32 +108,33 @@ equation 200}}), graphics), __Dymola_Commands(file= "modelica://AixLib/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/HeaterCooler_u.mos" "Simulate and plot"), Documentation(info=" -

                        -Model that demonstrates the use of an ideal heater. -Both heater models are identical, except that one model is configured -as a steady-state model, whereas the other is configured as a dynamic model. -Both heaters add heat to the medium to track a set-point for the outlet -temperature. -

                        -", revisions=" -
                          -
                        • -September 11, 2014, by Christoph Nytsch-Geusen:
                          -Rename experiment to HetaterColler_u -in the Annex 60 library. -
                        • -
                        • -September 19, 2013, by Michael Wetter:
                          -Removed fan with a prescribed mass flow source for inclusion of the test model -in the Annex 60 library. -
                        • -
                        • -July 11, 2011, by Michael Wetter:
                          -First implementation. -
                        • -
                        -"), +

                        + Model that demonstrates the use of an ideal heater. + Both heater models are identical, except that one model is configured + as a steady-state model, whereas the other is configured as a dynamic model. + Both heaters add heat to the medium to track a set-point for the outlet + temperature. +

                        + ",revisions=" +
                          +
                        • + September 11, 2014, by Christoph Nytsch-Geusen:
                          + Rename experiment to HetaterColler_u + in the Annex 60 library. +
                        • +
                        • + September 19, 2013, by Michael Wetter:
                          + Removed fan with a prescribed mass flow source for inclusion of the test model + in the Annex 60 library. +
                        • +
                        • + July 11, 2011, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), experiment( StopTime=1200, - Tolerance=1e-6)); + Tolerance=1e-6), + __Dymola_LockedEditing="Model from IBPSA"); end HeaterCooler_u; diff --git a/AixLib/Fluid/HeatExchangers/Validation/PrescribedOutlet.mo b/AixLib/Fluid/HeatExchangers/Validation/PrescribedOutlet.mo index b2fd4845c0..6c0fda4036 100644 --- a/AixLib/Fluid/HeatExchangers/Validation/PrescribedOutlet.mo +++ b/AixLib/Fluid/HeatExchangers/Validation/PrescribedOutlet.mo @@ -3,7 +3,7 @@ model PrescribedOutlet "Model that demonstrates the ideal heater/cooler model for a prescribed outlet temperature, configured as steady-state" extends Modelica.Icons.Example; package Medium = AixLib.Media.Water; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal=0.1 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=0.1 "Nominal mass flow rate"; AixLib.Fluid.Sources.Boundary_pT sin( redeclare package Medium = Medium, @@ -155,36 +155,37 @@ equation __Dymola_Commands(file= "modelica://AixLib/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/PrescribedOutlet.mos" "Simulate and plot"), Documentation(info=" -

                        -Model that demonstrates the use of an ideal heater and an ideal cooler. -

                        -

                        -The heater model has a capacity of Q_flow_max = 1.0e4 Watts and -the cooler model has a capacitiy of Q_flow_min = -1000 Watts. -Hence, both only track their set point of the outlet temperature during certain times. -There is also a heater and cooler with unlimited capacity. -

                        -

                        -At t=1000 second, the flow reverses its direction. -

                        -

                        -Each flow leg has the same mass flow rate. There are three mass flow sources -as using one source only would yield a nonlinear system of equations that -needs to be solved to determine the mass flow rate distribution. -

                        -", revisions=" -
                          -
                        • -October 21, 2014, by Michael Wetter:
                          -Revised example to test reverse flow and zero flow transition. -
                        • -
                        • -March 19, 2014, by Christoph Nytsch-Geusen:
                          -First implementation. -
                        • -
                        -"), +

                        + Model that demonstrates the use of an ideal heater and an ideal cooler. +

                        +

                        + The heater model has a capacity of Q_flow_max = 1.0e4 Watts and + the cooler model has a capacitiy of Q_flow_min = -1000 Watts. + Hence, both only track their set point of the outlet temperature during certain times. + There is also a heater and cooler with unlimited capacity. +

                        +

                        + At t=1000 second, the flow reverses its direction. +

                        +

                        + Each flow leg has the same mass flow rate. There are three mass flow sources + as using one source only would yield a nonlinear system of equations that + needs to be solved to determine the mass flow rate distribution. +

                        + ",revisions=" +
                          +
                        • + October 21, 2014, by Michael Wetter:
                          + Revised example to test reverse flow and zero flow transition. +
                        • +
                        • + March 19, 2014, by Christoph Nytsch-Geusen:
                          + First implementation. +
                        • +
                        + "), experiment( StopTime=1200, - Tolerance=1e-6)); + Tolerance=1e-6), + __Dymola_LockedEditing="Model from IBPSA"); end PrescribedOutlet; diff --git a/AixLib/Fluid/HeatExchangers/Validation/PrescribedOutlet_dynamic.mo b/AixLib/Fluid/HeatExchangers/Validation/PrescribedOutlet_dynamic.mo index d21fad9bb3..af6af897aa 100644 --- a/AixLib/Fluid/HeatExchangers/Validation/PrescribedOutlet_dynamic.mo +++ b/AixLib/Fluid/HeatExchangers/Validation/PrescribedOutlet_dynamic.mo @@ -10,26 +10,27 @@ model PrescribedOutlet_dynamic __Dymola_Commands(file= "modelica://AixLib/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/PrescribedOutlet_dynamic.mos" "Simulate and plot"), Documentation(info=" -

                        -Model that demonstrates the use of an ideal heater and an ideal cooler, configured as dynamic models. -

                        -

                        -This example is identical to - -AixLib.Fluid.HeatExchangers.Validation.PrescribedOutlet -except that the heater and cooler models are configured to have a -time constant of 60 seconds at nominal flow rate. -At lower flow rate, the time constant increases proportional to the mass flow rate. -

                        -", revisions=" -
                          -
                        • -October 21, 2014, by Michael Wetter:
                          -First implementation. -
                        • -
                        -"), +

                        + Model that demonstrates the use of an ideal heater and an ideal cooler, configured as dynamic models. +

                        +

                        + This example is identical to + + AixLib.Fluid.HeatExchangers.Validation.PrescribedOutlet + except that the heater and cooler models are configured to have a + time constant of 60 seconds at nominal flow rate. + At lower flow rate, the time constant increases proportional to the mass flow rate. +

                        + ",revisions=" +
                          +
                        • + October 21, 2014, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), experiment( StopTime=1200, - Tolerance=1e-6)); + Tolerance=1e-6), + __Dymola_LockedEditing="Model from IBPSA"); end PrescribedOutlet_dynamic; diff --git a/AixLib/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo b/AixLib/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo new file mode 100644 index 0000000000..d56518e75e --- /dev/null +++ b/AixLib/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo @@ -0,0 +1,236 @@ +within AixLib.Fluid.HeatExchangers.Validation; +model WetCoilEffectivenessNTU + "Model that validates the wet coil effectiveness-NTU model" + extends Modelica.Icons.Example; + + package Medium_W = AixLib.Media.Water; + package Medium_A = AixLib.Media.Air; + + constant Modelica.Units.SI.AbsolutePressure pAtm=101325 + "Atmospheric pressure"; + + parameter Modelica.Units.SI.Temperature T_a1_nominal= + Modelica.Units.Conversions.from_degF(42) "Inlet water temperature"; + parameter Modelica.Units.SI.Temperature T_a2_nominal= + Modelica.Units.Conversions.from_degF(80) "Inlet air temperature"; + parameter Modelica.Units.SI.Temperature T_b1_nominal=273.15 + 11.0678 + "Outlet water temperature in fully wet conditions"; + parameter Modelica.Units.SI.Temperature T_b2_nominal=273.15 + 13.5805 + "Outlet air temperature in fully wet conditions"; + final parameter Modelica.Units.SI.HeatFlowRate Q_flow_nominal=m1_flow_nominal + *4186*(T_a1_nominal - T_b1_nominal); + parameter Real X_w_a2_nominal = 0.0173 + "Inlet water mass fraction in fully wet conditions"; + parameter Modelica.Units.SI.ThermalConductance UA_nominal=4748 + "Total thermal conductance at nominal flow, from textbook"; + parameter Modelica.Units.SI.MassFlowRate m1_flow_nominal=3.78 + "Nominal mass flow rate of water"; + parameter Modelica.Units.SI.MassFlowRate m2_flow_nominal=2.646 + "Nominal mass flow rate of air"; + parameter Types.HeatExchangerConfiguration hexCon= + Types.HeatExchangerConfiguration.CounterFlow + "Heat exchanger configuration"; + AixLib.Fluid.Sources.Boundary_pT sinAir( + redeclare package Medium = Medium_A, + use_p_in=false, + nPorts=2) + "Air sink" + annotation (Placement(transformation(extent={{-180,-32},{-160,-12}}))); + Sources.MassFlowSource_T souAir( + redeclare package Medium = Medium_A, + m_flow=m2_flow_nominal, + T=T_a2_nominal, + use_Xi_in=true, + nPorts=1) + "Air source" + annotation (Placement(transformation(extent={{140,-30},{120,-10}}))); + AixLib.Fluid.Sources.Boundary_pT sinWat( + redeclare package Medium = Medium_W, + nPorts=2) + "Sink for water" + annotation (Placement(transformation(extent={{50,50},{30,70}}))); + AixLib.Utilities.Psychrometrics.ToTotalAir conversion + annotation (Placement(transformation(extent={{190,-50},{170,-30}}))); + Sensors.RelativeHumidityTwoPort relHumIn(redeclare package Medium = Medium_A, + m_flow_nominal=m2_flow_nominal) "Inlet relative humidity" + annotation (Placement(transformation(extent={{40,-30},{20,-10}}))); + Sensors.TemperatureTwoPort TDryBulIn(redeclare package Medium = Medium_A, + m_flow_nominal=m2_flow_nominal) "Inlet dry bulb temperature" + annotation (Placement(transformation(extent={{70,-30},{50,-10}}))); + Modelica.Blocks.Sources.RealExpression pAir(y=pAtm) "Air pressure" + annotation (Placement(transformation(extent={{140,-2},{120,22}}))); + AixLib.Utilities.Psychrometrics.TWetBul_TDryBulXi wetBulIn(redeclare package + Medium = Medium_A) "Computation of wet bulb temperature" + annotation (Placement(transformation(extent={{120,30},{140,50}}))); + Sensors.MassFractionTwoPort senMasFraIn(redeclare package Medium = Medium_A, + m_flow_nominal=m2_flow_nominal) "Water mass fraction of entering air" + annotation (Placement(transformation(extent={{110,-30},{90,-10}}))); + Sensors.MassFractionTwoPort senMasFraOut(redeclare package Medium = Medium_A, + m_flow_nominal=m2_flow_nominal) "Water mass fraction of leaving air" + annotation (Placement(transformation(extent={{-110,30},{-130,50}}))); + Sensors.TemperatureTwoPort TDryBulOut(redeclare package Medium = Medium_A, + m_flow_nominal=m2_flow_nominal) "Dry bulb temperature of leaving air" + annotation (Placement(transformation(extent={{-50,30},{-70,50}}))); + AixLib.Utilities.Psychrometrics.TWetBul_TDryBulXi wetBulOut(redeclare package + Medium = Medium_A) "Computation of wet bulb temperature" + annotation (Placement(transformation(extent={{-40,-50},{-20,-30}}))); + Modelica.Blocks.Sources.RealExpression pAir1(y=pAtm) "Air pressure" + annotation (Placement(transformation(extent={{-100,-72},{-80,-48}}))); + AixLib.Fluid.HeatExchangers.WetCoilEffectivenessNTU hexWetNTU( + redeclare package Medium1 = Medium_W, + redeclare package Medium2 = Medium_A, + UA_nominal=UA_nominal, + m1_flow_nominal=m1_flow_nominal, + m2_flow_nominal=m2_flow_nominal, + dp2_nominal=0, + dp1_nominal=0, + configuration=hexCon, + show_T=true) "Effectiveness-NTU coil model (parameterized with nominal UA)" + annotation (Placement(transformation(extent={{-30,44},{-10,64}}))); + Sources.MassFlowSource_T souWat1( + redeclare package Medium = Medium_W, + m_flow=m1_flow_nominal, + T=T_a1_nominal, + nPorts=1) + "Source for water" + annotation (Placement(transformation(extent={{-180,50},{-160,70}}))); + Sensors.RelativeHumidityTwoPort relHumOut_eps(redeclare package Medium = + Medium_A, m_flow_nominal=m2_flow_nominal) "Outlet relative humidity" + annotation (Placement(transformation(extent={{-80,30},{-100,50}}))); + AixLib.Fluid.HeatExchangers.WetCoilEffectivenessNTU hexWetNTU_TX( + redeclare package Medium1 = Medium_W, + redeclare package Medium2 = Medium_A, + use_Q_flow_nominal=true, + Q_flow_nominal=Q_flow_nominal, + T_a2_nominal=T_a2_nominal, + w_a2_nominal=X_w_a2_nominal/(1 - X_w_a2_nominal), + T_a1_nominal=T_a1_nominal, + m1_flow_nominal=m1_flow_nominal, + m2_flow_nominal=m2_flow_nominal, + dp2_nominal=0, + dp1_nominal=0, + configuration=hexCon, + show_T=true) + "Effectiveness-NTU coil model (parameterized with nominal T and X)" + annotation (Placement(transformation(extent={{-30,-4},{-10,16}}))); + Sources.MassFlowSource_T souAir1( + redeclare package Medium = Medium_A, + m_flow=m2_flow_nominal, + T=T_a2_nominal, + use_Xi_in=true, + nPorts=1) + "Air source" + annotation (Placement(transformation(extent={{140,-70},{120,-50}}))); + Sources.MassFlowSource_T souWat2( + redeclare package Medium = Medium_W, + m_flow=m1_flow_nominal, + T=T_a1_nominal, + nPorts=1) + "Source for water" + annotation (Placement(transformation(extent={{-180,10},{-160,30}}))); + Modelica.Blocks.Sources.CombiTimeTable w_a2(table=[0,0.0035383; 1,0.01765], + timeScale=1000) + "Absolute humidity of entering air" + annotation (Placement(transformation(extent={{196,6},{176,26}}))); +equation + connect(pAir.y, wetBulIn.p) annotation (Line(points={{119,10},{112,10},{112, + 32},{119,32}}, color={0,0,127})); + connect(pAir1.y, wetBulOut.p) annotation (Line(points={{-79,-60},{-50,-60},{ + -50,-48},{-41,-48}},color={0,0,127})); + connect(senMasFraOut.port_b, sinAir.ports[1]) + annotation (Line(points={{-130,40},{-140,40},{-140,-20},{-160,-20}}, + color={0,127,255})); + connect(TDryBulOut.T, wetBulOut.TDryBul) + annotation (Line(points={{-60,51},{-60,54},{-44,54},{-44,-32},{-41,-32}}, + color={0,0,127})); + connect(senMasFraOut.X, wetBulOut.Xi[1]) annotation (Line(points={{-120,51},{ + -120,54},{-134,54},{-134,-40},{-41,-40}}, color={0,0,127})); + connect(souAir.ports[1], senMasFraIn.port_a) + annotation (Line(points={{120,-20},{110,-20}}, color={0,127,255})); + connect(senMasFraIn.port_b, TDryBulIn.port_a) + annotation (Line(points={{90,-20},{70,-20}}, color={0,127,255})); + connect(senMasFraIn.X, wetBulIn.Xi[1]) + annotation (Line(points={{100,-9},{100,40},{119,40}}, color={0,0,127})); + connect(TDryBulIn.T, wetBulIn.TDryBul) + annotation (Line(points={{60,-9},{60,48},{119,48}},color={0,0,127})); + connect(TDryBulIn.port_b, relHumIn.port_a) + annotation (Line(points={{50,-20},{40,-20}}, color={0,127,255})); + connect(souWat1.ports[1], hexWetNTU.port_a1) annotation (Line(points={{-160,60}, + {-30,60}}, color={0,127,255})); + connect(hexWetNTU.port_b1, sinWat.ports[1]) annotation (Line(points={{-10,60}, + {16,60},{16,62},{30,62}}, + color={0,127,255})); + connect(hexWetNTU.port_b2, TDryBulOut.port_a) annotation (Line(points={{-30,48}, + {-40,48},{-40,40},{-50,40}}, color={0,127,255})); + connect(hexWetNTU.port_a2, relHumIn.port_b) annotation (Line(points={{-10,48}, + {10,48},{10,-20},{20,-20}}, + color={0,127,255})); + connect(TDryBulOut.port_b, relHumOut_eps.port_a) annotation (Line(points={{-70,40}, + {-80,40}}, color={0,127,255})); + connect(relHumOut_eps.port_b, senMasFraOut.port_a) + annotation (Line(points={{-100,40},{-110,40}}, + color={0,127,255})); + connect(hexWetNTU_TX.port_b1, sinWat.ports[2]) annotation (Line(points={{-10,12}, + {20,12},{20,58},{30,58}}, color={0,127,255})); + connect(souAir1.ports[1], hexWetNTU_TX.port_a2) annotation (Line(points={{120,-60}, + {0,-60},{0,0},{-10,0}}, color={0,127,255})); + connect(sinAir.ports[2], hexWetNTU_TX.port_b2) annotation (Line(points={{-160, + -24},{-138,-24},{-138,0},{-30,0}}, color={0,127,255})); + connect(souWat2.ports[1], hexWetNTU_TX.port_a1) annotation (Line(points={{-160,20}, + {-40,20},{-40,12},{-30,12}}, color={0,127,255})); + connect(w_a2.y[1], conversion.XiDry) annotation (Line(points={{175,16},{172, + 16},{172,-10},{196,-10},{196,-40},{191,-40}}, color={0,0,127})); + connect(conversion.XiTotalAir, souAir.Xi_in[1]) annotation (Line(points={{169,-40}, + {158,-40},{158,-24},{142,-24}}, color={0,0,127})); + connect(conversion.XiTotalAir, souAir1.Xi_in[1]) annotation (Line(points={{169,-40}, + {154,-40},{154,-64},{142,-64}}, color={0,0,127})); + annotation (Diagram(coordinateSystem(preserveAspectRatio=true, + extent={{-200,-120},{200,120}})), + experiment( + StopTime=1000, + Tolerance=1e-06), + __Dymola_Commands( + file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos" + "Simulate and plot"), + Documentation(info=" +

                        + This model duplicates an example from Mitchell and Braun 2012, example SM-2-1 + (Mitchell and Braun 2012) to validate a single case for the + + AixLib.Fluid.HeatExchangers.WetCoilEffectivenessNTU + model. +

                        +

                        Validation

                        +

                        + The example simulates a wet coil with constant air + and water inlet temperature and mass flow rate, and an increasing air inlet + humidity which triggers the transition from a fully-dry to a fully-wet regime. + The reference used for validation is the published experimental data. +

                        +

                        + Note that the outlet air relative humidity may slightly exceed 100% when using + the epsilon-NTU model. +

                        +

                        References

                        +

                        + Mitchell, John W., and James E. Braun. 2012. + \"Supplementary Material Chapter 2: Heat Exchangers for Cooling Applications\". + Excerpt from Principles of heating, ventilation, and air conditioning in buildings. + Hoboken, N.J.: Wiley. Available online: + + http://bcs.wiley.com/he-bcs/Books?action=index&itemId=0470624574&bcsId=7185 +

                        + ",revisions=" +
                          +
                        • + April 19, 2017, by Michael Wetter:
                          + Revised model to avoid mixing textual equations and connect statements. +
                        • +
                        • + March 17, 2017, by Michael O'Keefe:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); +end WetCoilEffectivenessNTU; diff --git a/AixLib/Fluid/HeatExchangers/Validation/package.order b/AixLib/Fluid/HeatExchangers/Validation/package.order index 157113a911..dd9eb40678 100644 --- a/AixLib/Fluid/HeatExchangers/Validation/package.order +++ b/AixLib/Fluid/HeatExchangers/Validation/package.order @@ -4,3 +4,4 @@ EvaporatorCondenser HeaterCooler_u PrescribedOutlet PrescribedOutlet_dynamic +WetCoilEffectivenessNTU diff --git a/AixLib/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo b/AixLib/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo new file mode 100644 index 0000000000..0007ad10df --- /dev/null +++ b/AixLib/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo @@ -0,0 +1,632 @@ +within AixLib.Fluid.HeatExchangers; +model WetCoilEffectivenessNTU + "Heat exchanger with effectiveness - NTU relation and with moisture condensation" + extends AixLib.Fluid.Interfaces.PartialFourPortInterface( + redeclare replaceable package Medium2 = AixLib.Media.Air); + extends AixLib.Fluid.Interfaces.FourPortFlowResistanceParameters( + final computeFlowResistance1=true, + final computeFlowResistance2=true); + + import con = AixLib.Fluid.Types.HeatExchangerConfiguration; + import flo = AixLib.Fluid.Types.HeatExchangerFlowRegime; + + parameter AixLib.Fluid.Types.HeatExchangerConfiguration configuration= + con.CounterFlow + "Heat exchanger configuration"; + parameter Real r_nominal=2/3 + "Ratio between air-side and water-side convective heat transfer coefficient"; + + parameter Boolean use_Q_flow_nominal = false + "Set to true to specify Q_flow_nominal and inlet conditions, or to false to specify UA_nominal" + annotation ( + Evaluate=true, + Dialog(group="Nominal thermal performance")); + + parameter Modelica.Units.SI.HeatFlowRate Q_flow_nominal(fixed= + use_Q_flow_nominal) + "Nominal heat flow rate (positive for heat transfer from 1 to 2)" + annotation (Dialog(group="Nominal thermal performance", enable= + use_Q_flow_nominal)); + parameter Modelica.Units.SI.Temperature T_a1_nominal(fixed=use_Q_flow_nominal) + "Water inlet temperature at a rated condition" annotation (Dialog(group= + "Nominal thermal performance", enable=use_Q_flow_nominal)); + parameter Modelica.Units.SI.Temperature T_a2_nominal(fixed=use_Q_flow_nominal) + "Air inlet temperature at a rated condition" annotation (Dialog(group= + "Nominal thermal performance", enable=use_Q_flow_nominal)); + parameter Modelica.Units.SI.MassFraction w_a2_nominal(start=0.01, fixed= + use_Q_flow_nominal) + "Humidity ratio of inlet air at a rated condition (in kg/kg dry air)" + annotation (Dialog(group="Nominal thermal performance", enable= + use_Q_flow_nominal)); + + parameter Modelica.Units.SI.ThermalConductance UA_nominal( + fixed=not use_Q_flow_nominal, + min=0, + start=1/(1/10 + 1/20)) + "Thermal conductance at nominal flow, used to compute heat capacity" + annotation (Dialog(group="Nominal thermal performance", enable=not + use_Q_flow_nominal)); + + // Dynamics + parameter Modelica.Fluid.Types.Dynamics energyDynamics= + Modelica.Fluid.Types.Dynamics.SteadyState + "Type of energy balance: dynamic (3 initialization options) or steady state" + annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Conservation equations")); + + Modelica.Units.SI.HeatFlowRate Q1_flow=-dryWetCalcs.QTot_flow + "Heat input into water stream (positive if air is cooled)"; + Modelica.Units.SI.HeatFlowRate Q2_flow=dryWetCalcs.QTot_flow + "Total heat input into air stream (negative if air is cooled)"; + Modelica.Units.SI.HeatFlowRate QSen2_flow=dryWetCalcs.QSen_flow + "Sensible heat input into air stream (negative if air is cooled)"; + Modelica.Units.SI.HeatFlowRate QLat2_flow=AixLib.Utilities.Psychrometrics.Constants.h_fg + *mWat_flow "Latent heat input into air (negative if air is dehumidified)"; + Real SHR( + min=0, + max=1, + unit="1") = QSen2_flow / + noEvent(if (Q2_flow > 1E-6 or Q2_flow < -1E-6) then Q2_flow else 1) + "Sensible to total heat ratio"; + Modelica.Units.SI.MassFlowRate mWat_flow=dryWetCalcs.mCon_flow + "Water flow rate of condensate removed from the air stream"; + + Real dryFra(final unit="1", min=0, max=1) = dryWetCalcs.dryFra + "Dry fraction, 0.3 means condensation occurs at 30% heat exchange length from air inlet"; +protected + final parameter Modelica.Units.SI.MassFraction X_w_a2_nominal=w_a2_nominal/(1 + + w_a2_nominal) + "Water mass fraction of inlet air at a rated condition (in kg/kg total air)"; + + parameter Boolean waterSideFlowDependent=true + "Set to false to make water-side hA independent of mass flow rate" + annotation (Dialog(tab="Heat transfer")); + parameter Boolean airSideFlowDependent=true + "Set to false to make air-side hA independent of mass flow rate" + annotation (Dialog(tab="Heat transfer")); + parameter Boolean waterSideTemperatureDependent=false + "Set to false to make water-side hA independent of temperature" + annotation (Dialog(tab="Heat transfer")); + parameter Boolean airSideTemperatureDependent=false + "Set to false to make air-side hA independent of temperature" + annotation (Dialog(tab="Heat transfer")); + + Real delta=1E-2 + "Parameter for normalization"; + Real delta1=1E-1 + "Parameter for normalization"; + Real fac1 = AixLib.Utilities.Math.Functions.smoothMin( + (1/delta * m1_flow/m1_flow_nominal)^2,1,delta1); + Real fac2 = AixLib.Utilities.Math.Functions.smoothMin( + (1/delta * m2_flow/m2_flow_nominal)^2,1,delta1); + Real Qfac = fac1*fac2; + + AixLib.Fluid.HeatExchangers.BaseClasses.WetCoilUARated UAFroRated( + final use_Q_flow_nominal=use_Q_flow_nominal, + final QTot_flow=Q_flow_nominal, + final UA=UA_nominal, + final r_nominal=r_nominal, + final TAirIn=T_a2_nominal, + final X_wAirIn=X_w_a2_nominal, + final TWatIn=T_a1_nominal, + final mAir_flow=m2_flow_nominal, + final mWat_flow=m1_flow_nominal) + "Model that computes UA_nominal"; + + AixLib.Fluid.HeatExchangers.HeaterCooler_u heaCoo( + redeclare final package Medium = Medium1, + final dp_nominal = dp1_nominal, + final m_flow_nominal = m1_flow_nominal, + final energyDynamics = energyDynamics, + final Q_flow_nominal=-1, + u(final unit="W")) + "Heat exchange with water stream" + annotation (Placement(transformation(extent={{60,50},{80,70}}))); + + AixLib.Fluid.Humidifiers.Humidifier_u heaCooHum_u( + redeclare final package Medium = Medium2, + final mWat_flow_nominal = 1, + final dp_nominal = dp2_nominal, + final m_flow_nominal = m2_flow_nominal, + final energyDynamics = energyDynamics, + u(final unit="kg/s")) + "Heat and moisture exchange with air stream" + annotation (Placement(transformation(extent={{-60,-70},{-80,-50}}))); + AixLib.Fluid.HeatExchangers.BaseClasses.HADryCoil hA( + final UA_nominal = UA_nominal, + final m_flow_nominal_a = m2_flow_nominal, + final m_flow_nominal_w = m1_flow_nominal, + final waterSideTemperatureDependent = waterSideTemperatureDependent, + final waterSideFlowDependent = waterSideFlowDependent, + final airSideTemperatureDependent = airSideTemperatureDependent, + final airSideFlowDependent = airSideFlowDependent, + r_nominal = r_nominal) + "Model for convective heat transfer coefficient" + annotation (Placement(transformation(extent={{-68,-13},{-50,9}}))); + AixLib.Fluid.HeatExchangers.BaseClasses.WetCoilDryWetRegime dryWetCalcs( + fullyWet(hAirOut(start=Medium2.h_default)), + final cfg=flowRegime, + final mWat_flow_nominal=m1_flow_nominal, + final mAir_flow_nominal=m2_flow_nominal, + final Qfac=Qfac) + "Dry/wet calculations block" + annotation (Placement(transformation(extent={{-20,-40},{60,40}}))); + + Modelica.Blocks.Sources.RealExpression cp_a1Exp( + final y=Medium1.specificHeatCapacityCp(state_a1_inflow)) + "Expression for cp of air" + annotation (Placement(transformation(extent={{-44,18},{-30,30}}))); + Modelica.Blocks.Sources.RealExpression XWat_a2Exp( + final y = if allowFlowReversal2 + then + fra_a2 * state_a2_inflow.X[nWat] + fra_b2 * state_b2_inflow.X[nWat] + else + state_a2_inflow.X[nWat]) + "Expression for XWat" + annotation (Placement(transformation(extent={{-44,-2},{-30,10}}))); + Modelica.Blocks.Sources.RealExpression p_a2Exp( + final y = port_a2.p) + "Pressure at port a2" + annotation (Placement(transformation(extent={{-44,-10},{-30,2}}))); + Modelica.Blocks.Sources.RealExpression h_a2Exp( + final y = if allowFlowReversal2 + then + fra_a2 * Medium2.specificEnthalpy(state_a2_inflow) + + fra_b2 * Medium2.specificEnthalpy(state_b2_inflow) + else + Medium2.specificEnthalpy(state_a2_inflow)) + "Specific enthalpy at port a2" + annotation (Placement(transformation(extent={{-44,-18},{-30,-6}}))); + Modelica.Blocks.Sources.RealExpression cp_a2Exp(final y= + Medium2.specificHeatCapacityCp(state_a2_inflow)) + "Specific heat capacity at port a2" + annotation (Placement(transformation(extent={{-44,-30},{-30,-18}}))); + Modelica.Blocks.Sources.RealExpression TIn_a1Exp( + final y = if allowFlowReversal1 + then + fra_a1 * Medium1.temperature(state_a1_inflow) + + fra_b1 * Medium1.temperature(state_b1_inflow) + else + Medium1.temperature(state_a1_inflow)) + "Temperature at port a1" + annotation (Placement(transformation(extent={{-98,16},{-84,28}}))); + Modelica.Blocks.Sources.RealExpression TIn_a2Exp( + final y = if allowFlowReversal2 + then + fra_a2 * Medium2.temperature(state_a2_inflow) + + fra_b2 * Medium2.temperature(state_b2_inflow) + else + Medium2.temperature(state_a2_inflow)) + "Temperature at port a2" + annotation (Placement(transformation(extent={{-98,-8},{-84,4}}))); + Modelica.Blocks.Sources.RealExpression m_flow_a1Exp( + final y=AixLib.Utilities.Math.Functions.regNonZeroPower( + x=port_a1.m_flow,n=1,delta=delta*m1_flow_nominal)) + "Absolute value of mass flow rate on water side" + annotation (Placement(transformation(extent={{-98,30},{-84,42}}))); + Modelica.Blocks.Sources.RealExpression m_flow_a2Exp( + final y=AixLib.Utilities.Math.Functions.regNonZeroPower( + x=port_a2.m_flow,n=1,delta=delta*m2_flow_nominal)) + "Absolute value of mass flow rate on air side" + annotation (Placement(transformation(extent={{-98,-36},{-84,-24}}))); + final parameter Integer nWat= + AixLib.Fluid.HeatExchangers.BaseClasses.determineWaterIndex( + Medium2.substanceNames) + "Index of water"; + parameter flo flowRegime_nominal(fixed=false) + "Heat exchanger flow regime at nominal flow rates"; + flo flowRegime(fixed=false, start=flowRegime_nominal) + "Heat exchanger flow regime"; + + Modelica.Thermal.HeatTransfer.Sources.PrescribedHeatFlow preHea + "Prescribed heat flow" + annotation (Placement(transformation(extent={{20,-90},{0,-70}}))); + Real fra_a1(min=0, max=1) = if allowFlowReversal1 + then Modelica.Fluid.Utilities.regStep( + m1_flow, + 1, + 0, + m1_flow_small) + else 1 + "Fraction of incoming state taken from port a2 + (used to avoid excessive calls to regStep)"; + Real fra_b1(min=0, max=1) = if allowFlowReversal1 + then 1-fra_a1 + else 0 + "Fraction of incoming state taken from port b2 + (used to avoid excessive calls to regStep)"; + Real fra_a2(min=0, max=1) = if allowFlowReversal2 + then Modelica.Fluid.Utilities.regStep( + m2_flow, + 1, + 0, + m2_flow_small) + else 1 + "Fraction of incoming state taken from port a2 + (used to avoid excessive calls to regStep)"; + Real fra_b2(min=0, max=1) = if allowFlowReversal2 + then 1-fra_a2 + else 0 + "Fraction of incoming state taken from port b2 + (used to avoid excessive calls to regStep)"; + + Modelica.Units.SI.ThermalConductance C1_flow=abs(m1_flow)*(if + allowFlowReversal1 then fra_a1*Medium1.specificHeatCapacityCp( + state_a1_inflow) + fra_b1*Medium1.specificHeatCapacityCp(state_b1_inflow) + else Medium1.specificHeatCapacityCp(state_a1_inflow)) + "Heat capacity flow rate medium 1"; + Modelica.Units.SI.ThermalConductance C2_flow=abs(m2_flow)*(if + allowFlowReversal2 then fra_a2*Medium2.specificHeatCapacityCp( + state_a2_inflow) + fra_b2*Medium2.specificHeatCapacityCp(state_b2_inflow) + else Medium2.specificHeatCapacityCp(state_a2_inflow)) + "Heat capacity flow rate medium 2"; + parameter Modelica.Units.SI.SpecificHeatCapacity cp1_nominal(fixed=false) + "Specific heat capacity of medium 1 at nominal condition"; + parameter Modelica.Units.SI.SpecificHeatCapacity cp2_nominal(fixed=false) + "Specific heat capacity of medium 2 at nominal condition"; + parameter Modelica.Units.SI.ThermalConductance C1_flow_nominal(fixed=false) + "Nominal capacity flow rate of Medium 1"; + parameter Modelica.Units.SI.ThermalConductance C2_flow_nominal(fixed=false) + "Nominal capacity flow rate of Medium 2"; + final parameter Medium1.ThermodynamicState sta1_default = Medium1.setState_phX( + h=Medium1.h_default, + p=Medium1.p_default, + X=Medium1.X_default[1:Medium1.nXi]) "Default state for medium 1"; + final parameter Medium2.ThermodynamicState sta2_default = Medium2.setState_phX( + h=Medium2.h_default, + p=Medium2.p_default, + X=Medium2.X_default[1:Medium2.nXi]) "Default state for medium 2"; + +initial equation + cp1_nominal = Medium1.specificHeatCapacityCp(sta1_default); + cp2_nominal = Medium2.specificHeatCapacityCp(sta2_default); + C1_flow_nominal = m1_flow_nominal*cp1_nominal; + C2_flow_nominal = m2_flow_nominal*cp2_nominal; + if (configuration == con.CrossFlowStream1MixedStream2Unmixed) then + flowRegime_nominal = if (C1_flow_nominal < C2_flow_nominal) + then + flo.CrossFlowCMinMixedCMaxUnmixed + else + flo.CrossFlowCMinUnmixedCMaxMixed; + elseif (configuration == con.CrossFlowStream1UnmixedStream2Mixed) then + flowRegime_nominal = if (C1_flow_nominal < C2_flow_nominal) + then + flo.CrossFlowCMinUnmixedCMaxMixed + else + flo.CrossFlowCMinMixedCMaxUnmixed; + elseif (configuration == con.ParallelFlow) then + flowRegime_nominal = flo.ParallelFlow; + elseif (configuration == con.CounterFlow) then + flowRegime_nominal = flo.CounterFlow; + elseif (configuration == con.CrossFlowUnmixed) then + flowRegime_nominal = flo.CrossFlowUnmixed; + else + // Invalid flow regime. Assign a value to flowRegime_nominal, and stop with an assert + flowRegime_nominal = flo.CrossFlowUnmixed; + assert(configuration >= con.ParallelFlow and + configuration <= con.CrossFlowStream1UnmixedStream2Mixed, + "Invalid heat exchanger configuration."); + end if; + +equation + // Assign the flow regime for the given heat exchanger configuration and + // mass flow rates + if (configuration == con.ParallelFlow) then + flowRegime = if (C1_flow*C2_flow >= 0) + then + flo.ParallelFlow + else + flo.CounterFlow; + elseif (configuration == con.CounterFlow) then + flowRegime = if (C1_flow*C2_flow >= 0) + then + flo.CounterFlow + else + flo.ParallelFlow; + elseif (configuration == con.CrossFlowUnmixed) then + flowRegime = flo.CrossFlowUnmixed; + elseif (configuration == con.CrossFlowStream1MixedStream2Unmixed) then + flowRegime = if (C1_flow < C2_flow) + then + flo.CrossFlowCMinMixedCMaxUnmixed + else + flo.CrossFlowCMinUnmixedCMaxMixed; + else + // have ( configuration == con.CrossFlowStream1UnmixedStream2Mixed) + flowRegime = if (C1_flow < C2_flow) + then + flo.CrossFlowCMinUnmixedCMaxMixed + else + flo.CrossFlowCMinMixedCMaxUnmixed; + end if; + + connect(heaCoo.port_b, port_b1) annotation (Line(points={{80,60},{80,60},{100,60}},color={0,127,255}, + thickness=1)); + connect(heaCooHum_u.port_b, port_b2) annotation (Line( + points={{-80,-60},{-90,-60},{-100,-60}}, + color={0,127,255}, + thickness=1)); + connect(hA.hA_1, dryWetCalcs.UAWat) annotation (Line(points={{-49.1,5.7},{-46, + 5.7},{-46,36.6667},{-22.8571,36.6667}}, color={0,0,127})); + connect(hA.hA_2, dryWetCalcs.UAAir) annotation (Line(points={{-49.1,-9.7},{ + -46,-9.7},{-46,-36},{-46,-36.6667},{-22.8571,-36.6667}}, + color={0,0,127})); + connect(cp_a1Exp.y, dryWetCalcs.cpWat) annotation (Line(points={{-29.3,24},{ + -22.8571,24},{-22.8571,23.3333}}, + color={0,0,127})); + connect(XWat_a2Exp.y, dryWetCalcs.X_wAirIn) annotation (Line(points={{-29.3,4}, + {-22.8571,4},{-22.8571,3.33333}}, color={0,0,127})); + connect(p_a2Exp.y, dryWetCalcs.pAir) annotation (Line(points={{-29.3,-4},{ + -22.8571,-4},{-22.8571,-3.33333}}, + color={0,0,127})); + connect(h_a2Exp.y, dryWetCalcs.hAirIn) annotation (Line(points={{-29.3,-12},{ + -22,-12},{-22,-10},{-22.8571,-10}}, + color={0,0,127})); + connect(cp_a2Exp.y, dryWetCalcs.cpAir) annotation (Line(points={{-29.3,-24},{ + -22.8571,-24},{-22.8571,-23.3333}}, + color={0,0,127})); + connect(TIn_a1Exp.y, hA.T_1) annotation (Line(points={{-83.3,22},{-80,22},{-80, + 1.3},{-68.9,1.3}}, color={0,0,127})); + connect(TIn_a1Exp.y, dryWetCalcs.TWatIn) annotation (Line(points={{-83.3,22}, + {-50,22},{-50,16.6667},{-22.8571,16.6667}}, color={0,0,127})); + connect(TIn_a2Exp.y, hA.T_2) annotation (Line(points={{-83.3,-2},{-76,-2},{-76, + -5.3},{-68.9,-5.3}}, color={0,0,127})); + connect(TIn_a2Exp.y, dryWetCalcs.TAirIn) annotation (Line(points={{-83.3,-2}, + {-76,-2},{-76,-16.6667},{-22.8571,-16.6667}}, color={0,0,127})); + connect(m_flow_a1Exp.y, hA.m1_flow) annotation (Line(points={{-83.3,36},{-76,36}, + {-76,5.7},{-68.9,5.7}}, color={0,0,127})); + connect(m_flow_a1Exp.y, dryWetCalcs.mWat_flow) annotation (Line(points={{-83.3, + 36},{-50,36},{-50,30},{-22.8571,30}}, color={0,0,127})); + connect(port_a1, heaCoo.port_a) annotation (Line( + points={{-100,60},{-20,60},{60,60}}, + color={0,127,255}, + thickness=1)); + connect(m_flow_a2Exp.y, hA.m2_flow) annotation (Line(points={{-83.3,-30},{-80, + -30},{-80,-9.7},{-68.9,-9.7}}, + color={0,0,127})); + connect(m_flow_a2Exp.y, dryWetCalcs.mAir_flow) annotation (Line(points={{-83.3, + -30},{-22.8571,-30}}, color={0,0,127})); + connect(port_a2, heaCooHum_u.port_a) annotation (Line( + points={{100,-60},{20,-60},{-60,-60}}, + color={0,127,255}, + thickness=1)); + connect(preHea.port, heaCooHum_u.heatPort) annotation (Line(points={{0,-80},{-40, + -80},{-40,-66},{-60,-66}}, color={191,0,0})); + connect(dryWetCalcs.QTot_flow, heaCoo.u) annotation (Line(points={{62.8571, + -6.66667},{80,-6.66667},{80,44},{40,44},{40,66},{58,66}}, + color={0,0,127})); + connect(dryWetCalcs.mCon_flow, heaCooHum_u.u) annotation (Line(points={{62.8571, + -33.3333},{70,-33.3333},{70,-54},{-59,-54}}, color={0,0,127})); + connect(preHea.Q_flow, dryWetCalcs.QTot_flow) annotation (Line(points={{20,-80}, + {44,-80},{80,-80},{80,-6.66667},{62.8571,-6.66667}}, + color={0,0,127})); + annotation ( + defaultComponentName="hexWetNtu", + Icon(graphics={ + Rectangle( + extent={{-70,80},{70,-80}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={95,95,95}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{36,80},{40,-80}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,0,0}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{-40,80},{-36,-80}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,0,0}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{-2,80},{2,-80}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,0,0}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{-100,-55},{101,-65}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,127,0}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{-98,65},{103,55}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,0,255}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{-70,80},{70,-80}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={95,95,95}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{-100,-55},{101,-65}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,127,0}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{-98,65},{103,55}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,0,255}, + fillPattern=FillPattern.Solid), + Polygon( + points={{46,-62},{44,-72},{50,-76},{58,-72},{56,-62},{50,-50},{46,-62}}, + lineColor={0,0,255}, + fillColor={0,0,255}, + fillPattern=FillPattern.Solid, + smooth=Smooth.Bezier), + Polygon( + points={{24,-52},{22,-62},{28,-66},{36,-62},{34,-52},{28,-40},{24,-52}}, + lineColor={0,0,255}, + fillColor={0,0,255}, + fillPattern=FillPattern.Solid, + smooth=Smooth.Bezier), + Polygon( + points={{0,-48},{-2,-58},{4,-62},{12,-58},{10,-48},{4,-36},{0,-48}}, + lineColor={0,0,255}, + fillColor={0,0,255}, + fillPattern=FillPattern.Solid, + smooth=Smooth.Bezier), + Polygon( + points={{-18,-64},{-20,-74},{-14,-78},{-6,-74},{-8,-64},{-14,-52},{ + -18,-64}}, + lineColor={0,0,255}, + fillColor={0,0,255}, + fillPattern=FillPattern.Solid, + smooth=Smooth.Bezier), + Polygon( + points={{-40,-50},{-42,-60},{-36,-64},{-28,-60},{-30,-50},{-36,-38},{ + -40,-50}}, + lineColor={0,0,255}, + fillColor={0,0,255}, + fillPattern=FillPattern.Solid, + smooth=Smooth.Bezier), + Polygon( + points={{-58,-62},{-60,-72},{-54,-76},{-46,-72},{-48,-62},{-54,-50},{ + -58,-62}}, + lineColor={0,0,255}, + fillColor={0,0,255}, + fillPattern=FillPattern.Solid, + smooth=Smooth.Bezier)}), + Diagram(graphics={Text( + extent={{44,84},{86,76}}, + textColor={28,108,200}, + textString="Water Side", + textStyle={TextStyle.Italic}, + horizontalAlignment=TextAlignment.Left), + Text( + extent={{-42,-80},{0,-88}}, + textColor={28,108,200}, + textStyle={TextStyle.Italic}, + horizontalAlignment=TextAlignment.Left, + textString="Air Side")}), + Documentation(info=" +

                        + This model describes a cooling coil applicable for fully-dry, + partially-wet, and fully-wet regimes. + The model is developed for counter flow heat exchangers but is also applicable + for the cross-flow configuration, although in the latter case it is recommended + to have more than four tube rows (Elmahdy and Mitalas, 1977 and Braun, 1988). + The model can also be used for a heat exchanger which acts as both heating coil + (for some period of time) and cooling coil (for the others). + However, it is not recommended to use this model for heating coil only or for + cooling coil with no water condensation because for these situations, + + AixLib.Fluid.HeatExchangers.DryCoilEffectivenessNTU + computes faster. +

                        +

                        Main equations

                        +

                        + The coil model consists of two-equation sets, one for the fully-dry mode and + the other for the fully-wet mode. For the fully-dry mode, the ε-NTU + approach (Elmahdy and Mitalas, 1977) is used. + For the fully-wet mode, equations from Braun (1988) and Mitchell and Braun (2012a and b), + which are essentially the extension of the ε-NTU approach to simultaneous sensible + and latent heat transfer, are utilized. + The equation sets are switched depending on the switching criteria described below + that determines the right mode based on a coil surface temperature and dew-point + temperature for the air at the inlet of the coil. + The transition regime between the two modes, which represents the partially-wet and + partially-dry coil, is approximated by employing a fuzzy modeling approach, + so-called Takagi-Sugeno fuzzy modeling (Takagi and Sugeno, 1985), which provides a + continuously differentiable model that can cover all fully-dry, partially-wet, + and fully-wet regimes. +

                        +

                        The switching rules are:

                        +
                          +
                        • R1: If the coil surface temperature at the air inlet is lower than the + dew-point temperature of air at inlet, then the cooling coil surface is fully-wet. +
                        • +
                        • + R2: If the coil surface temperature at the air outlet is higher than the + dew-point temperature of air at inlet, then the cooling coil surface is fully-dry. +
                        • +
                        • + R3: If any of the conditions in R1 or R2 is not satisfied, then the cooling coil + surface is partially wet. +
                        • +
                        +

                        + For more detailed descriptions of the fully-wet coil model and the fuzzy modeling approach, + see + + AixLib.Fluid.HeatExchangers.BaseClasses.WetCoilWetRegime. + and + + AixLib.Fluid.HeatExchangers.BaseClasses.WetCoilDryWetRegime. +

                        +

                        Assumptions and limitations

                        +

                        This model contains the following assumptions and limitations:

                        +

                        Medium 2 must be air due to the use of various psychrometric functions.

                        +

                        + When parameterizing this model with rated conditions (with the parameter + use_UA_nominal set to false), those should + correspond to a fully-dry or a fully-wet coil regime, because + the model uncertainty yielded by partially-wet rated conditions + has not been assessed yet. +

                        +

                        The model uses steady-state physics. That is, no dynamics associated + with water and coil materials are considered.

                        +

                        The Lewis number, which relates the mass transfer coefficient to the heat transfer + coefficient, is assumed to be 1.

                        +

                        The model is not suitable for a cross-flow heat exchanger of which the number + of passes is less than four.

                        +

                        Validation

                        +

                        Validation results can be found in + + AixLib.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU. +

                        References

                        +

                        Braun, James E. 1988. + "Methodologies for the Design and Control of + Central Cooling Plants". + PhD Thesis. University of Wisconsin - Madison. + Available + + online. +

                        +

                        Mitchell, John W., and James E. Braun. 2012a. + Principles of heating, ventilation, and air conditioning in buildings. + Hoboken, N.J.: Wiley.

                        +

                        Mitchell, John W., and James E. Braun. 2012b. + "Supplementary Material Chapter 2: Heat Exchangers for Cooling Applications". + Excerpt from Principles of heating, ventilation, and air conditioning in buildings. + Hoboken, N.J.: Wiley. + Available + + online. +

                        +

                        Elmahdy, A.H. and Mitalas, G.P. 1977. + "A Simple Model for Cooling and Dehumidifying Coils for Use + In Calculating Energy Requirements for Buildings". + ASHRAE Transactions. Vol.83. Part 2. pp. 103-117.

                        +

                        Takagi, T. and Sugeno, M., 1985. + Fuzzy identification of systems and its applications to modeling and control. +  IEEE transactions on systems, man, and cybernetics, (1), pp.116-132.

                        + ", revisions=" +
                          +
                        • + March 3, 2022, by Michael Wetter:
                          + Removed massDynamics.
                          + This is for + issue 1542. +
                        • +
                        • + November 2, 2021, by Michael Wetter:
                          + Corrected unit assignment during the model instantiation.
                          + This is for issue 2710. +
                        • +
                        • + Jan 21, 2021, by Donghun Kim:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); +end WetCoilEffectivenessNTU; diff --git a/AixLib/Fluid/HeatExchangers/package.order b/AixLib/Fluid/HeatExchangers/package.order index fe95184ea1..63698d2bcc 100644 --- a/AixLib/Fluid/HeatExchangers/package.order +++ b/AixLib/Fluid/HeatExchangers/package.order @@ -1,16 +1,17 @@ -ConstantEffectiveness -DryCoilEffectivenessNTU -DynamicHX -EvaporatorCondenser -EvaporatorCondenserWithCapacity -HeaterCooler_u -Heater_T -HeatingRod -PrescribedOutlet -SensibleCooler_T -ActiveBeams -ActiveWalls -Radiators -Examples -Validation -BaseClasses +ConstantEffectiveness +DryCoilEffectivenessNTU +DynamicHX +EvaporatorCondenser +EvaporatorCondenserWithCapacity +HeaterCooler_u +Heater_T +HeatingRod +PrescribedOutlet +SensibleCooler_T +WetCoilEffectivenessNTU +ActiveBeams +ActiveWalls +Radiators +Examples +Validation +BaseClasses diff --git a/AixLib/Fluid/HeatPumps/BaseClasses/InnerCycle_HeatPump.mo b/AixLib/Fluid/HeatPumps/BaseClasses/InnerCycle_HeatPump.mo index 86e79f9021..b1317606f6 100644 --- a/AixLib/Fluid/HeatPumps/BaseClasses/InnerCycle_HeatPump.mo +++ b/AixLib/Fluid/HeatPumps/BaseClasses/InnerCycle_HeatPump.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.HeatPumps.BaseClasses; +within AixLib.Fluid.HeatPumps.BaseClasses; model InnerCycle_HeatPump "Blackbox model of refrigerant cycle of a heat pump" extends AixLib.Fluid.BaseClasses.PartialInnerCycle; diff --git a/AixLib/Fluid/HeatPumps/BaseClasses/PartialWaterToWater.mo b/AixLib/Fluid/HeatPumps/BaseClasses/PartialWaterToWater.mo index 3acb8b2230..4fd7004a73 100644 --- a/AixLib/Fluid/HeatPumps/BaseClasses/PartialWaterToWater.mo +++ b/AixLib/Fluid/HeatPumps/BaseClasses/PartialWaterToWater.mo @@ -19,23 +19,23 @@ partial model PartialWaterToWater parameter Real scaling_factor = 1.0 "Scaling factor for heat pump capacity"; - parameter Modelica.SIunits.ThermalConductance UACon + parameter Modelica.Units.SI.ThermalConductance UACon "Thermal conductance of condenser"; - parameter Modelica.SIunits.ThermalConductance UAEva + parameter Modelica.Units.SI.ThermalConductance UAEva "Thermal conductance of evaporator"; - parameter Modelica.SIunits.Time tau1=60 + parameter Modelica.Units.SI.Time tau1=60 "Time constant at nominal flow rate (used if energyDynamics1 <> Modelica.Fluid.Types.Dynamics.SteadyState)" annotation (Dialog(tab="Dynamics", group="Condenser")); - parameter Modelica.SIunits.Time tau2=60 + parameter Modelica.Units.SI.Time tau2=60 "Time constant at nominal flow rate (used if energyDynamics2 <> Modelica.Fluid.Types.Dynamics.SteadyState)" annotation (Dialog(tab="Dynamics", group="Evaporator")); - parameter Modelica.SIunits.Temperature T1_start=Medium1.T_default + parameter Modelica.Units.SI.Temperature T1_start=Medium1.T_default "Initial or guess value of set point" annotation (Dialog(tab="Dynamics", group="Condenser")); - parameter Modelica.SIunits.Temperature T2_start=Medium2.T_default + parameter Modelica.Units.SI.Temperature T2_start=Medium2.T_default "Initial or guess value of set point" annotation (Dialog(tab="Dynamics", group="Evaporator")); @@ -47,12 +47,12 @@ partial model PartialWaterToWater parameter Boolean enable_temperature_protection = true "Enable temperature protection" annotation(Evaluate=true, Dialog(group="Temperature protection")); - parameter Modelica.SIunits.Temperature TConMax = ref.TCri-5 - "Upper bound for condenser temperature" - annotation(Dialog(enable=enable_temperature_protection, group="Temperature protection")); - parameter Modelica.SIunits.Temperature TEvaMin = 275.15 - "Lower bound for evaporator temperature" - annotation(Dialog(enable=enable_temperature_protection, group="Temperature protection")); + parameter Modelica.Units.SI.Temperature TConMax=ref.TCri - 5 + "Upper bound for condenser temperature" annotation (Dialog(enable= + enable_temperature_protection, group="Temperature protection")); + parameter Modelica.Units.SI.Temperature TEvaMin=275.15 + "Lower bound for evaporator temperature" annotation (Dialog(enable= + enable_temperature_protection, group="Temperature protection")); parameter Real dTHys(unit="K",min=0) = 5 "Hysteresis interval width" annotation(Dialog(enable=enable_temperature_protection, group="Temperature protection")); @@ -64,13 +64,13 @@ partial model PartialWaterToWater Modelica.Blocks.Interfaces.BooleanOutput errNegTemDif if enable_temperature_protection "if true, compressor disabled since condenser temperature is below evaporator temperature"; - Modelica.Blocks.Interfaces.RealInput y(final unit = "1") if - enable_variable_speed == true + Modelica.Blocks.Interfaces.RealInput y(final unit = "1") + if enable_variable_speed == true "Modulating signal for compressor frequency, equal to 1 at full load condition" annotation (Placement(transformation(extent={{-140,10},{-100,50}}))); - Modelica.Blocks.Interfaces.IntegerInput stage if - enable_variable_speed == false + Modelica.Blocks.Interfaces.IntegerInput stage + if enable_variable_speed == false "Current stage of the heat pump, equal to 1 at full load condition" annotation (Placement(transformation(extent={{-140,10},{-100,50}}))); @@ -136,12 +136,12 @@ partial model PartialWaterToWater origin={50,-6}))); protected - Modelica.Blocks.Math.IntegerToReal intToRea if - enable_variable_speed == false "Conversion for stage signal" + Modelica.Blocks.Math.IntegerToReal intToRea + if enable_variable_speed == false "Conversion for stage signal" annotation (Placement(transformation(extent={{-80,-40},{-60,-20}}))); - Modelica.Blocks.Nonlinear.Limiter lim(final uMin=0, final uMax=1) if - enable_variable_speed == false "Limiter for control signal" + Modelica.Blocks.Nonlinear.Limiter lim(final uMin=0, final uMax=1) + if enable_variable_speed == false "Limiter for control signal" annotation (Placement(transformation(extent={{-50,-40},{-30,-20}}))); Compressors.BaseClasses.TemperatureProtection temPro( @@ -302,40 +302,41 @@ equation Line(points={{62,0},{100,0}}, color={0,0,255})}), defaultComponentName="heaPum", Documentation(info=" -

                        -Partial model for a water to water heat pump, as detailed in Jin (2002). The -model for the compressor is a partial model and needs to be replaced by one of the -compressor models in - -AixLib.Fluid.HeatPumps.Compressors. -

                        -

                        References

                        -

                        -H. Jin. - -Parameter estimation based models of water source heat pumps. - -PhD Thesis. Oklahoma State University. Stillwater, Oklahoma, USA. 2012. -

                        -", revisions=" -
                          -
                        • -April 14, 2020, by Michael Wetter:
                          -Changed homotopyInitialization to a constant.
                          -This is for -AixLib, #1341. -
                        • -
                        • -May 30, 2017, by Filip Jorissen:
                          -Added temperature protection block and -set energyDynamics=DynamicFreeInitial. -See -#769. -
                        • -
                        • -October 17, 2016, by Massimo Cimmino:
                          -First implementation. -
                        • -
                        -")); +

                        + Partial model for a water to water heat pump, as detailed in Jin (2002). The + model for the compressor is a partial model and needs to be replaced by one of the + compressor models in + + AixLib.Fluid.HeatPumps.Compressors. +

                        +

                        References

                        +

                        + H. Jin. + + Parameter estimation based models of water source heat pumps. + + PhD Thesis. Oklahoma State University. Stillwater, Oklahoma, USA. 2002. +

                        + ",revisions=" +
                          +
                        • + April 14, 2020, by Michael Wetter:
                          + Changed homotopyInitialization to a constant.
                          + This is for + IBPSA, #1341. +
                        • +
                        • + May 30, 2017, by Filip Jorissen:
                          + Added temperature protection block and + set energyDynamics=DynamicFreeInitial. + See + #769. +
                        • +
                        • + October 17, 2016, by Massimo Cimmino:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end PartialWaterToWater; diff --git a/AixLib/Fluid/HeatPumps/Calibration/BaseClasses/PartialWaterToWater.mo b/AixLib/Fluid/HeatPumps/Calibration/BaseClasses/PartialWaterToWater.mo index f31eb961a9..894b31244c 100644 --- a/AixLib/Fluid/HeatPumps/Calibration/BaseClasses/PartialWaterToWater.mo +++ b/AixLib/Fluid/HeatPumps/Calibration/BaseClasses/PartialWaterToWater.mo @@ -11,20 +11,20 @@ model PartialWaterToWater replaceable package ref = AixLib.Media.Refrigerants.R410A "Refrigerant model"; - parameter Modelica.SIunits.MassFlowRate m1_flow_nominal + parameter Modelica.Units.SI.MassFlowRate m1_flow_nominal "Nominal mass flow rate on condenser side"; - parameter Modelica.SIunits.MassFlowRate m2_flow_nominal + parameter Modelica.Units.SI.MassFlowRate m2_flow_nominal "Nominal mass flow rate on evaporator side"; - parameter Modelica.SIunits.Pressure dp1_nominal = 1000 + parameter Modelica.Units.SI.Pressure dp1_nominal=1000 "Pressure drop at nominal mass flow rate on condenser side"; - parameter Modelica.SIunits.Pressure dp2_nominal = 1000 + parameter Modelica.Units.SI.Pressure dp2_nominal=1000 "Pressure drop at nominal mass flow rate on evaporator side"; - parameter Modelica.SIunits.ThermalConductance UACon + parameter Modelica.Units.SI.ThermalConductance UACon "Thermal conductance of condenser"; - parameter Modelica.SIunits.ThermalConductance UAEva + parameter Modelica.Units.SI.ThermalConductance UAEva "Thermal conductance of evaporator"; Modelica.Blocks.Sources.CombiTimeTable calDat( @@ -104,23 +104,24 @@ equation -100},{100,100}})), Diagram( coordinateSystem(preserveAspectRatio=false, extent={{-140,-100},{100, 100}})), preferredView="info",Documentation(info=" -

                        -Base class for the calibration of water to water heat pump models. -

                        -

                        -Source and load temperatures and flow rates are read from an external time table. -

                        -", revisions=" -
                          -
                        • -May 15, 2019, by Jianjun Hu:
                          -Replaced fluid source. This is for - #1072. -
                        • -
                        • -October 31, 2016, by Massimo Cimmino:
                          -First implementation. -
                        • -
                        -")); +

                        + Base class for the calibration of water to water heat pump models. +

                        +

                        + Source and load temperatures and flow rates are read from an external time table. +

                        + ",revisions=" +
                          +
                        • + May 15, 2019, by Jianjun Hu:
                          + Replaced fluid source. This is for + #1072. +
                        • +
                        • + October 31, 2016, by Massimo Cimmino:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end PartialWaterToWater; diff --git a/AixLib/Fluid/HeatPumps/Calibration/ScrollWaterToWater.mo b/AixLib/Fluid/HeatPumps/Calibration/ScrollWaterToWater.mo index e4d3d06158..e9dfc672f4 100644 --- a/AixLib/Fluid/HeatPumps/Calibration/ScrollWaterToWater.mo +++ b/AixLib/Fluid/HeatPumps/Calibration/ScrollWaterToWater.mo @@ -28,62 +28,63 @@ model ScrollWaterToWater parameter Real volRat(min = 1.0, unit = "1") = 2.0 "Built-in volume ratio"; - parameter Modelica.SIunits.VolumeFlowRate V_flow_nominal(min = 0) = 0.009 + parameter Modelica.Units.SI.VolumeFlowRate V_flow_nominal(min=0) = 0.009 "Refrigerant volume flow rate at suction"; - parameter Modelica.SIunits.MassFlowRate leaCoe(min = 0) = 0.03 + parameter Modelica.Units.SI.MassFlowRate leaCoe(min=0) = 0.03 "Leakage coefficient"; - parameter Modelica.SIunits.Efficiency etaEle = 0.696 + parameter Modelica.Units.SI.Efficiency etaEle=0.696 "Electro-mechanical efficiency of the compressor"; - parameter Modelica.SIunits.Power PLos(min = 0) = 500.0 + parameter Modelica.Units.SI.Power PLos(min=0) = 500.0 "Constant part of the compressor power losses"; - parameter Modelica.SIunits.TemperatureDifference dTSup(min = 0) = 10.0 + parameter Modelica.Units.SI.TemperatureDifference dTSup(min=0) = 10.0 "Superheating at compressor suction"; annotation (Icon(coordinateSystem(preserveAspectRatio=false, extent={{-140,-100}, {100,100}})), Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-140,-100},{100,100}}), graphics={Text(extent={{-88,92},{-64,90}}, - lineColor={28,108,200})}), + textColor={28,108,200})}), preferredView="info", __Dymola_Commands(file= "modelica://AixLib/Resources/Scripts/Dymola/Fluid/HeatPumps/Calibration/ScrollWaterToWater.mos" "Simulate and plot"), experiment(Tolerance=1e-6, StopTime=142), Documentation(info=" -

                        -Calibration model for the calibration of models for water to water heat pump -with scroll compressor. -

                        -

                        -Source and load temperatures and flow rates are read from an external time -table. -

                        -

                        -This model is called from the Python code that computes heat pump model -parameters from the performance data. -Heat pump model parameters are obtained through an optimization procedure that -minimizes the difference between the modeled and tabulated (from the -manufacturers) capacity and power input of the heat pump. -

                        -

                        -The optimization is done using a Python implementation of the heat pump model, -found in AixLib/Resources/src/fluid/heatpumps/calibration/. -Heat pump model parameters are verified using this modelica model after their -evaluation by the Python code. -

                        -

                        -Documentation for the Python code is in the directory -AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html. -

                        -", revisions=" -
                          -
                        • -October 31, 2016, by Massimo Cimmino:
                          -First implementation. -
                        • -
                        -")); +

                        + Calibration model for the calibration of models for water to water heat pump + with scroll compressor. +

                        +

                        + Source and load temperatures and flow rates are read from an external time + table. +

                        +

                        + This model is called from the Python code that computes heat pump model + parameters from the performance data. + Heat pump model parameters are obtained through an optimization procedure that + minimizes the difference between the modeled and tabulated (from the + manufacturers) capacity and power input of the heat pump. +

                        +

                        + The optimization is done using a Python implementation of the heat pump model, + found in AixLib/Resources/src/fluid/heatpumps/calibration/. + Heat pump model parameters are verified using this modelica model after their + evaluation by the Python code. +

                        +

                        + Documentation for the Python code is in the directory + AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html. +

                        + ",revisions=" +
                          +
                        • + October 31, 2016, by Massimo Cimmino:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end ScrollWaterToWater; diff --git a/AixLib/Fluid/HeatPumps/Carnot_TCon.mo b/AixLib/Fluid/HeatPumps/Carnot_TCon.mo index 1481992263..bb4f501d79 100644 --- a/AixLib/Fluid/HeatPumps/Carnot_TCon.mo +++ b/AixLib/Fluid/HeatPumps/Carnot_TCon.mo @@ -26,8 +26,7 @@ model Carnot_TCon final homotopyInitialization=homotopyInitialization, final Q_flow_nominal=QEva_flow_nominal)); - parameter Modelica.SIunits.HeatFlowRate QCon_flow_max( - min=0) = Modelica.Constants.inf + parameter Modelica.Units.SI.HeatFlowRate QCon_flow_max(min=0) = Modelica.Constants.inf "Maximum heat flow rate for heating (positive)"; Modelica.Blocks.Interfaces.RealInput TSet(unit="K") @@ -67,7 +66,7 @@ equation graphics={ Text( extent={{-148,156},{-92,114}}, - lineColor={0,0,127}, + textColor={0,0,127}, fillColor={255,255,255}, fillPattern=FillPattern.Solid, textString="TCon"), @@ -75,107 +74,108 @@ equation color={0,0,255})}), defaultComponentName="heaPum", Documentation(info=" -

                        -This is a model of a heat pump whose coefficient of performance COP changes -with temperatures in the same way as the Carnot efficiency changes. -The control input is the setpoint of the condenser leaving temperature, which -is met exactly at steady state if the heat pump has sufficient capacity. -

                        -

                        -The model allows to either specify the Carnot effectivness -ηCarnot,0, or -a COP0 -at the nominal conditions, together with -the evaporator temperature Teva,0 and -the condenser temperature Tcon,0, in which -case the model computes the Carnot effectivness as -

                        -

                        Carnot,0 = - COP0 -⁄ (Tcon,0 ⁄ (Tcon,0-Teva,0)). -

                        -

                        -The heat pump COP is computed as the product -

                        -

                        - COP = ηCarnot,0 COPCarnot ηPL, -

                        -

                        -where COPCarnot is the Carnot efficiency and -ηPL is a polynomial in heating part load ratio yPL -that can be used to take into account a change in COP at part load -conditions. -This polynomial has the form -

                        -

                        - ηPL = a1 + a2 yPL + a3 yPL2 + ... -

                        -

                        -where the coefficients ai -are declared by the parameter a. -

                        -

                        -On the Dynamics tag, the model can be parametrized to compute a transient -or steady-state response. -The transient response of the model is computed using a first -order differential equation for the evaporator and condenser fluid volumes. -The heat pump outlet temperatures are equal to the temperatures of these lumped volumes. -

                        -

                        Typical use and important parameters

                        -

                        -When using this component, make sure that the condenser has sufficient mass flow rate. -Based on the evaporator mass flow rate, temperature difference and the efficiencies, -the model computes how much heat will be removed by to the evaporator. -If the mass flow rate is too small, very low outlet temperatures can result, possibly below freezing. -

                        -

                        -The condenser heat flow rate QCon_flow_nominal is used to assign -the default value for the mass flow rates, which are used for the pressure drop -calculations. -It is also used to compute the part load efficiency. -Hence, make sure that QCon_flow_nominal is set to a reasonable value. -

                        -

                        -The maximum heating capacity is set by the parameter QCon_flow_max, -which is by default set to infinity. -

                        -

                        -The coefficient of performance depends on the -evaporator and condenser leaving temperature -since otherwise the second law of thermodynamics may be violated. -

                        -

                        Notes

                        -

                        -For a similar model that can be used as a chiller, see - -AixLib.Fluid.Chillers.Examples.Carnot_TEva. -

                        -", +

                        + This is a model of a heat pump whose coefficient of performance COP changes + with temperatures in the same way as the Carnot efficiency changes. + The control input is the setpoint of the condenser leaving temperature, which + is met exactly at steady state if the heat pump has sufficient capacity. +

                        +

                        + The model allows to either specify the Carnot effectivness + ηCarnot,0, or + a COP0 + at the nominal conditions, together with + the evaporator temperature Teva,0 and + the condenser temperature Tcon,0, in which + case the model computes the Carnot effectivness as +

                        +

                        + ηCarnot,0 = + COP0 + ⁄ (Tcon,0 ⁄ (Tcon,0-Teva,0)). +

                        +

                        + The heat pump COP is computed as the product +

                        +

                        + COP = ηCarnot,0 COPCarnot ηPL, +

                        +

                        + where COPCarnot is the Carnot efficiency and + ηPL is a polynomial in heating part load ratio yPL + that can be used to take into account a change in COP at part load + conditions. + This polynomial has the form +

                        +

                        + ηPL = a1 + a2 yPL + a3 yPL2 + ... +

                        +

                        + where the coefficients ai + are declared by the parameter a. +

                        +

                        + On the Dynamics tag, the model can be parametrized to compute a transient + or steady-state response. + The transient response of the model is computed using a first + order differential equation for the evaporator and condenser fluid volumes. + The heat pump outlet temperatures are equal to the temperatures of these lumped volumes. +

                        +

                        Typical use and important parameters

                        +

                        + When using this component, make sure that the condenser has sufficient mass flow rate. + Based on the evaporator mass flow rate, temperature difference and the efficiencies, + the model computes how much heat will be removed by to the evaporator. + If the mass flow rate is too small, very low outlet temperatures can result, possibly below freezing. +

                        +

                        + The condenser heat flow rate QCon_flow_nominal is used to assign + the default value for the mass flow rates, which are used for the pressure drop + calculations. + It is also used to compute the part load efficiency. + Hence, make sure that QCon_flow_nominal is set to a reasonable value. +

                        +

                        + The maximum heating capacity is set by the parameter QCon_flow_max, + which is by default set to infinity. +

                        +

                        + The coefficient of performance depends on the + evaporator and condenser leaving temperature + since otherwise the second law of thermodynamics may be violated. +

                        +

                        Notes

                        +

                        + For a similar model that can be used as a chiller, see + + AixLib.Fluid.Chillers.Examples.Carnot_TEva. +

                        + ", revisions=" -
                          -
                        • -January 3, 2017, by Michael Wetter:
                          -Removed parameters -effInpEva and effInpCon -and updated documentation. -This is for - -issue 497. -
                        • -
                        • -August 8, 2016, by Michael Wetter:
                          -Changed default temperature to compute COP to be the leaving temperature as -use of the entering temperature can violate the 2nd law if the temperature -lift is small.
                          -This is for - -Annex 60, issue 497. -
                        • -
                        • -November 25, 2015 by Michael Wetter:
                          -First implementation. -
                        • -
                        -")); +
                          +
                        • + January 3, 2017, by Michael Wetter:
                          + Removed parameters + effInpEva and effInpCon + and updated documentation. + This is for + + issue 497. +
                        • +
                        • + August 8, 2016, by Michael Wetter:
                          + Changed default temperature to compute COP to be the leaving temperature as + use of the entering temperature can violate the 2nd law if the temperature + lift is small.
                          + This is for + + Annex 60, issue 497. +
                        • +
                        • + November 25, 2015 by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end Carnot_TCon; diff --git a/AixLib/Fluid/HeatPumps/Carnot_y.mo b/AixLib/Fluid/HeatPumps/Carnot_y.mo index 4e7276920c..ce6b4561ba 100644 --- a/AixLib/Fluid/HeatPumps/Carnot_y.mo +++ b/AixLib/Fluid/HeatPumps/Carnot_y.mo @@ -9,164 +9,165 @@ initial equation annotation ( defaultComponentName="heaPum", Documentation(info=" -

                        -This is model of a heat pump whose coefficient of performance COP changes -with temperatures in the same way as the Carnot efficiency changes. -The input signal y is the control signal for the compressor. -

                        -

                        -The model allows to either specify the Carnot effectivness -ηCarnot,0, or -a COP0 -at the nominal conditions, together with -the evaporator temperature Teva,0 and -the condenser temperature Tcon,0, in which -case the model computes the Carnot effectivness as -

                        -

                        Carnot,0 = - COP0 -⁄ (Tcon,0 ⁄ (Tcon,0-Teva,0)). -

                        -

                        -The heat pump COP is computed as the product -

                        -

                        - COP = ηCarnot,0 COPCarnot ηPL, -

                        -

                        -where COPCarnot is the Carnot efficiency and -ηPL is a polynomial in the heating part load ratio yPL -that can be used to take into account a change in COP at part load -conditions. -This polynomial has the form -

                        -

                        - ηPL = a1 + a2 yPL + a3 yPL2 + ... -

                        -

                        -where the coefficients ai are declared by the parameter a. -

                        -

                        -On the Dynamics tag, the model can be parametrized to compute a transient -or steady-state response. -The transient response of the model is computed using a first -order differential equation for the evaporator and condenser fluid volumes. -The heat pump outlet temperatures are equal to the temperatures of these lumped volumes. -

                        -

                        Typical use and important parameters

                        -

                        -When using this component, make sure that the evaporator and the condenser have sufficient mass flow rate. -Based on the mass flow rates, the compressor power, temperature difference and the efficiencies, -the model computes how much heat will be added to the condenser and removed at the evaporator. -If the mass flow rates are too small, very high temperature differences can result. -

                        -

                        -The condenser heat flow rate QCon_flow_nominal is used to assign -the default value for the mass flow rates, which are used for the pressure drop -calculations. -It is also used to compute the part load efficiency. -Hence, make sure that QCon_flow_nominal is set to a reasonable value. -

                        -

                        -The maximum heating capacity is set by the parameter QCon_flow_max, -which is by default set to infinity. -

                        -

                        -The coefficient of performance depends on the -evaporator and condenser leaving temperature -since otherwise the second law of thermodynamics may be violated. -

                        -

                        Notes

                        -

                        -For a similar model that can be used as a chiller, see -AixLib.Fluid.Chillers.Carnot_y. -

                        -", +

                        + This is model of a heat pump whose coefficient of performance COP changes + with temperatures in the same way as the Carnot efficiency changes. + The input signal y is the control signal for the compressor. +

                        +

                        + The model allows to either specify the Carnot effectivness + ηCarnot,0, or + a COP0 + at the nominal conditions, together with + the evaporator temperature Teva,0 and + the condenser temperature Tcon,0, in which + case the model computes the Carnot effectivness as +

                        +

                        + ηCarnot,0 = + COP0 + ⁄ (Tcon,0 ⁄ (Tcon,0-Teva,0)). +

                        +

                        + The heat pump COP is computed as the product +

                        +

                        + COP = ηCarnot,0 COPCarnot ηPL, +

                        +

                        + where COPCarnot is the Carnot efficiency and + ηPL is a polynomial in the heating part load ratio yPL + that can be used to take into account a change in COP at part load + conditions. + This polynomial has the form +

                        +

                        + ηPL = a1 + a2 yPL + a3 yPL2 + ... +

                        +

                        + where the coefficients ai are declared by the parameter a. +

                        +

                        + On the Dynamics tag, the model can be parametrized to compute a transient + or steady-state response. + The transient response of the model is computed using a first + order differential equation for the evaporator and condenser fluid volumes. + The heat pump outlet temperatures are equal to the temperatures of these lumped volumes. +

                        +

                        Typical use and important parameters

                        +

                        + When using this component, make sure that the evaporator and the condenser have sufficient mass flow rate. + Based on the mass flow rates, the compressor power, temperature difference and the efficiencies, + the model computes how much heat will be added to the condenser and removed at the evaporator. + If the mass flow rates are too small, very high temperature differences can result. +

                        +

                        + The condenser heat flow rate QCon_flow_nominal is used to assign + the default value for the mass flow rates, which are used for the pressure drop + calculations. + It is also used to compute the part load efficiency. + Hence, make sure that QCon_flow_nominal is set to a reasonable value. +

                        +

                        + The maximum heating capacity is set by the parameter QCon_flow_max, + which is by default set to infinity. +

                        +

                        + The coefficient of performance depends on the + evaporator and condenser leaving temperature + since otherwise the second law of thermodynamics may be violated. +

                        +

                        Notes

                        +

                        + For a similar model that can be used as a chiller, see + AixLib.Fluid.Chillers.Carnot_y. +

                        + ", revisions=" -
                          -
                        • -January 3, 2017, by Michael Wetter:
                          -Removed parameters -effInpEva and effInpCon -and updated documentation. -This is for - -issue 497. -
                        • -
                        • -August 8, 2016, by Michael Wetter:
                          -Changed default temperature to compute COP to be the leaving temperature as -use of the entering temperature can violate the 2nd law if the temperature -lift is small.
                          -This is for - -Annex 60, issue 497. -
                        • -
                        • -January 26, 2016, by Michael Wetter:
                          -Refactored model to use the same base class as -AixLib.Fluid.Chillers.Carnot_y.
                          -Changed part load efficiency to depend on heating part load ratio rather than on the compressor -part load ratio. -
                        • -
                        • -January 20, 2015, by Damien Picard:
                          -Add Carnot model to Annex 60 from the Buildings library.
                          -Removed the flow direction dependency of -staA1, staB1, staA2 and staB2 as the -efficiency of the Carnot machine should only be computed in the design flow direction.
                          -
                        • -
                        • -December 18, 2015, by Michael Wetter:
                          -Corrected wrong computation of staB1 and staB2 -which mistakenly used the inStream operator -for the configuration without flow reversal. -This is for - -issue 476. -
                        • -
                        • -November 25, 2015 by Michael Wetter:
                          -Changed sign convention for dTEva_nominal to be consistent with -other models. -The model will still work with the old values for dTEva_nominal, -but it will write a warning so that users can transition their models. -
                          -Corrected assert statement for the efficiency curve. -This is for - -issue 468. -
                        • -
                        • -September 3, 2015 by Michael Wetter:
                          -Expanded documentation. -
                        • -
                        • -May 6, 2015 by Michael Wetter:
                          -Added prescribedHeatFlowRate=true for vol2. -
                        • -
                        • -October 9, 2013 by Michael Wetter:
                          -Reimplemented the computation of the port states to avoid using -the conditionally removed variables sta_a1, -sta_a2, sta_b1 and sta_b2. -
                        • -
                        • -May 10, 2013 by Michael Wetter:
                          -Added electric power P as an output signal. -
                        • -
                        • -October 11, 2010 by Michael Wetter:
                          -Fixed bug in energy balance. -
                        • -
                        • -March 3, 2009 by Michael Wetter:
                          -First implementation. -
                        • -
                        -"), +
                          +
                        • + January 3, 2017, by Michael Wetter:
                          + Removed parameters + effInpEva and effInpCon + and updated documentation. + This is for + + issue 497. +
                        • +
                        • + August 8, 2016, by Michael Wetter:
                          + Changed default temperature to compute COP to be the leaving temperature as + use of the entering temperature can violate the 2nd law if the temperature + lift is small.
                          + This is for + + Annex 60, issue 497. +
                        • +
                        • + January 26, 2016, by Michael Wetter:
                          + Refactored model to use the same base class as + AixLib.Fluid.Chillers.Carnot_y.
                          + Changed part load efficiency to depend on heating part load ratio rather than on the compressor + part load ratio. +
                        • +
                        • + January 20, 2015, by Damien Picard:
                          + Add Carnot model to Annex 60 from the Buildings library.
                          + Removed the flow direction dependency of + staA1, staB1, staA2 and staB2 as the + efficiency of the Carnot machine should only be computed in the design flow direction.
                          +
                        • +
                        • + December 18, 2015, by Michael Wetter:
                          + Corrected wrong computation of staB1 and staB2 + which mistakenly used the inStream operator + for the configuration without flow reversal. + This is for + + issue 476. +
                        • +
                        • + November 25, 2015 by Michael Wetter:
                          + Changed sign convention for dTEva_nominal to be consistent with + other models. + The model will still work with the old values for dTEva_nominal, + but it will write a warning so that users can transition their models. +
                          + Corrected assert statement for the efficiency curve. + This is for + + issue 468. +
                        • +
                        • + September 3, 2015 by Michael Wetter:
                          + Expanded documentation. +
                        • +
                        • + May 6, 2015 by Michael Wetter:
                          + Added prescribedHeatFlowRate=true for vol2. +
                        • +
                        • + October 9, 2013 by Michael Wetter:
                          + Reimplemented the computation of the port states to avoid using + the conditionally removed variables sta_a1, + sta_a2, sta_b1 and sta_b2. +
                        • +
                        • + May 10, 2013 by Michael Wetter:
                          + Added electric power P as an output signal. +
                        • +
                        • + October 11, 2010 by Michael Wetter:
                          + Fixed bug in energy balance. +
                        • +
                        • + March 3, 2009 by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), Icon(graphics={ Line(points={{0,68},{0,90},{90,90},{90,90},{100,90}}, - color={0,0,255})})); + color={0,0,255})}), + __Dymola_LockedEditing="Model from IBPSA"); end Carnot_y; diff --git a/AixLib/Fluid/HeatPumps/Compressors/BaseClasses/PartialCompressor.mo b/AixLib/Fluid/HeatPumps/Compressors/BaseClasses/PartialCompressor.mo index 223fbe2091..fb65b926b6 100644 --- a/AixLib/Fluid/HeatPumps/Compressors/BaseClasses/PartialCompressor.mo +++ b/AixLib/Fluid/HeatPumps/Compressors/BaseClasses/PartialCompressor.mo @@ -26,31 +26,30 @@ partial model PartialCompressor "Partial compressor model" annotation (Placement(transformation(extent={{100,50},{120,70}}, rotation=-90))); - Modelica.SIunits.SpecificEnthalpy hEva + Modelica.Units.SI.SpecificEnthalpy hEva "Specific enthalpy of saturated vapor at evaporator temperature"; - Modelica.SIunits.SpecificEnthalpy hCon + Modelica.Units.SI.SpecificEnthalpy hCon "Specific enthalpy of saturated liquid at condenser temperature"; - Modelica.SIunits.AbsolutePressure pEva(start = 100e3) + Modelica.Units.SI.AbsolutePressure pEva(start=100e3) "Pressure of saturated vapor at evaporator temperature"; - Modelica.SIunits.AbsolutePressure pCon(start = 1000e3) + Modelica.Units.SI.AbsolutePressure pCon(start=1000e3) "Pressure of saturated liquid at condenser temperature"; - Modelica.SIunits.AbsolutePressure pDis(start = 1000e3) + Modelica.Units.SI.AbsolutePressure pDis(start=1000e3) "Discharge pressure of the compressor"; - Modelica.SIunits.AbsolutePressure pSuc(start = 100e3) + Modelica.Units.SI.AbsolutePressure pSuc(start=100e3) "Suction pressure of the compressor"; - Modelica.SIunits.Temperature TSuc - "Temperature at suction of the compressor"; + Modelica.Units.SI.Temperature TSuc "Temperature at suction of the compressor"; Boolean isOn(fixed=false) "State of the compressor, true if turned on"; - Modelica.SIunits.SpecificVolume vSuc(start = 1e-4, min = 0) + Modelica.Units.SI.SpecificVolume vSuc(start=1e-4, min=0) "Specific volume of the refrigerant at suction of the compressor"; protected @@ -72,31 +71,31 @@ equation // Saturation pressure of refrigerant vapor at condenser temperature pCon = ref.pressureSatVap_T(port_b.T); - // Specific enthaply of saturated liquid refrigerant at condenser temperature + // Specific enthalpy of saturated liquid refrigerant at condenser temperature hCon = ref.enthalpySatLiq_T(port_b.T); // Saturation pressure of refrigerant vapor at evaporator temperature pEva = ref.pressureSatVap_T(port_a.T); - // Specific enthaply of saturated refrigerant vapor at evaporator temperature + // Specific enthalpy of saturated refrigerant vapor at evaporator temperature hEva = ref.enthalpySatVap_T(port_a.T); // Assert statements to verify that the refrigerant temperatures are within // bounds of the property data in the refrigerant package assert(port_b.T > ref.T_min and port_b.T < ref.TCri, "Condensing temperature must be above the minimum refrigerant temperature - and below the critical temperature."); + and below the critical temperature."); assert(port_a.T > ref.T_min and port_a.T < ref.TCri, "Evaporating temperature must be above the minimum refrigerant temperature - and below the critical temperature."); + and below the critical temperature."); annotation ( Icon(coordinateSystem(preserveAspectRatio=false,extent={{-100,-100}, {100,100}}), graphics={ Text(extent={{62,-82},{72,-98}}, textString="P", - lineColor={0,0,127}), + textColor={0,0,127}), Text(extent={{62,98},{72,82}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="y"), Polygon( points={{-70,-80},{-70,80},{70,60},{70,-60},{-70,-80}}, @@ -114,57 +113,58 @@ equation Line(points={{60,58},{60,100}}, color={0,0,0}), Text( extent={{-149,-114},{151,-154}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="%name")}), defaultComponentName="com", Documentation(info=" -

                        -This is the base class for the compressor model. -

                        -

                        -The model evaluates the evaporating pressure of the refrigerant peva, -the specific enthalpy of the evaporating saturated refrigerant vapor heva, -the condensing pressure of the refrigerant pcon -and the specific enthalpy of the condensing saturated liquid refrigerant hcond -at the evaporating temperature Teva = port_a.T -and condensing temperature Tcon = port_b.T. -

                        -

                        -Thermodynamic properties are evaluated from functions contained in the specified refrigerant package. -

                        -

                        Assumptions and limitations

                        -

                        -The model assumes isothermal condensation and evaporation, therefore -refrigerant mass flow is not accounted for and heat ports are used instead of fluid ports. -

                        -", revisions=" -
                          -
                        • -May 30, 2017, by Filip Jorissen:
                          -Removed pressure_error as -this is replaced by - -AixLib.Fluid.HeatPumps.Compressors.BaseClasses.TemperatureProtection. -See #769. -
                        • -
                        • -May 26, 2017, by Michael Wetter and Thierry Nouidui:
                          -Reformulated isOn to use the same construct as the hysteresis block, -and to work around a JModelica limitation.
                          -This is for -#774. -
                        • -
                        • -April 25, 2017, by Michael Wetter:
                          -Reformulated when conditions and moved common assignments -to this base class.
                          -This is for -#739. -
                        • -
                        • -November 11, 2016, by Massimo Cimmino:
                          -First implementation of this base class. -
                        • -
                        -")); +

                        + This is the base class for the compressor model. +

                        +

                        + The model evaluates the evaporating pressure of the refrigerant peva, + the specific enthalpy of the evaporating saturated refrigerant vapor heva, + the condensing pressure of the refrigerant pcon + and the specific enthalpy of the condensing saturated liquid refrigerant hcond + at the evaporating temperature Teva = port_a.T + and condensing temperature Tcon = port_b.T. +

                        +

                        + Thermodynamic properties are evaluated from functions contained in the specified refrigerant package. +

                        +

                        Assumptions and limitations

                        +

                        + The model assumes isothermal condensation and evaporation, therefore + refrigerant mass flow is not accounted for and heat ports are used instead of fluid ports. +

                        + ",revisions=" +
                          +
                        • + May 30, 2017, by Filip Jorissen:
                          + Removed pressure_error as + this is replaced by + + AixLib.Fluid.HeatPumps.Compressors.BaseClasses.TemperatureProtection. + See #769. +
                        • +
                        • + May 26, 2017, by Michael Wetter and Thierry Nouidui:
                          + Reformulated isOn to use the same construct as the hysteresis block, + and to work around a JModelica limitation.
                          + This is for + #774. +
                        • +
                        • + April 25, 2017, by Michael Wetter:
                          + Reformulated when conditions and moved common assignments + to this base class.
                          + This is for + #739. +
                        • +
                        • + November 11, 2016, by Massimo Cimmino:
                          + First implementation of this base class. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end PartialCompressor; diff --git a/AixLib/Fluid/HeatPumps/Compressors/BaseClasses/TemperatureProtection.mo b/AixLib/Fluid/HeatPumps/Compressors/BaseClasses/TemperatureProtection.mo index 861931f6ef..196eabf41c 100644 --- a/AixLib/Fluid/HeatPumps/Compressors/BaseClasses/TemperatureProtection.mo +++ b/AixLib/Fluid/HeatPumps/Compressors/BaseClasses/TemperatureProtection.mo @@ -2,9 +2,9 @@ within AixLib.Fluid.HeatPumps.Compressors.BaseClasses; model TemperatureProtection "Temperature protection for heat pump compressor" extends Modelica.Blocks.Icons.Block; - parameter Modelica.SIunits.Temperature TConMax + parameter Modelica.Units.SI.Temperature TConMax "Upper bound for condenser temperature"; - parameter Modelica.SIunits.Temperature TEvaMin + parameter Modelica.Units.SI.Temperature TEvaMin "Lower bound for evaporator temperature"; parameter Real dTHys( final unit="K", @@ -136,32 +136,33 @@ equation connect(notCon.u, hysHig.y) annotation (Line(points={{61.6,50},{14,50},{14,-30}, {1,-30}}, color={255,0,255})); annotation ( Documentation(revisions=" -
                          -
                        • -May 30, 2017, by Filip Jorissen:
                          -First implementation. -See #769. -
                        • -
                        -", +
                          +
                        • + May 30, 2017, by Filip Jorissen:
                          + First implementation. + See #769. +
                        • +
                        + ", info=" -

                        -Temperature protection block for heat pumps. -This block overrides the heat pump control -signal when the condenser temperature is too high, -the evaporator temperature is too low, -or the temperature difference between -the condenser and evaporator is negative. -

                        -

                        Typical use and important parameters

                        -

                        -Temperature bounds are set using TConMax -and TEvaMin. -

                        -

                        Options

                        -

                        -Parameter dTHys may be used -to change the hysteresis interval. -

                        -")); +

                        + Temperature protection block for heat pumps. + This block overrides the heat pump control + signal when the condenser temperature is too high, + the evaporator temperature is too low, + or the temperature difference between + the condenser and evaporator is negative. +

                        +

                        Typical use and important parameters

                        +

                        + Temperature bounds are set using TConMax + and TEvaMin. +

                        +

                        Options

                        +

                        + Parameter dTHys may be used + to change the hysteresis interval. +

                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end TemperatureProtection; diff --git a/AixLib/Fluid/HeatPumps/Compressors/BaseClasses/Validation/TemperatureProtection.mo b/AixLib/Fluid/HeatPumps/Compressors/BaseClasses/Validation/TemperatureProtection.mo index 44439ecd13..781a4cfe48 100644 --- a/AixLib/Fluid/HeatPumps/Compressors/BaseClasses/Validation/TemperatureProtection.mo +++ b/AixLib/Fluid/HeatPumps/Compressors/BaseClasses/Validation/TemperatureProtection.mo @@ -7,12 +7,12 @@ model TemperatureProtection temPro(TConMax=313.15, TEvaMin=278.15) "Temperature protection block" annotation (Placement(transformation(extent={{-20,0},{0,20}}))); Modelica.Blocks.Sources.Cosine TEva( - freqHz=1, + f=1, amplitude=10, offset=283.15) "Evaporator temperature" annotation (Placement(transformation(extent={{-80,-40},{-60,-20}}))); Modelica.Blocks.Sources.Cosine TCon( - freqHz=1.2, + f=1.2, offset=303.15, amplitude=20) "Condenser temperature" annotation (Placement(transformation(extent={{-80,40},{-60,60}}))); @@ -27,18 +27,19 @@ equation annotation (Line(points={{-59,10},{-40,10},{-22,10}}, color={0,0,127})); annotation ( Documentation(info=" -

                        -Model that tests temperature protection functionality. -

                        -", revisions=" -
                          -
                        • -May 31, 2017, by Filip Jorissen:
                          -First implementation. -
                        • -
                        -"), +

                        + Model that tests temperature protection functionality. +

                        + ",revisions=" +
                          +
                        • + May 31, 2017, by Filip Jorissen:
                          + First implementation. +
                        • +
                        + "), __Dymola_Commands(file= "modelica://AixLib/Resources/Scripts/Dymola/Fluid/HeatPumps/Compressors/BaseClasses/Validation/TemperatureProtection.mos" "Simulate and plot"), - experiment(StopTime=5, Tolerance=1e-06)); + experiment(StopTime=5, Tolerance=1e-06), + __Dymola_LockedEditing="Model from IBPSA"); end TemperatureProtection; diff --git a/AixLib/Fluid/HeatPumps/Compressors/ReciprocatingCompressor.mo b/AixLib/Fluid/HeatPumps/Compressors/ReciprocatingCompressor.mo index 6305622140..6dd8fc4d0d 100644 --- a/AixLib/Fluid/HeatPumps/Compressors/ReciprocatingCompressor.mo +++ b/AixLib/Fluid/HeatPumps/Compressors/ReciprocatingCompressor.mo @@ -3,37 +3,33 @@ model ReciprocatingCompressor "Model for a reciprocating compressor, based on Jin (2002)" extends AixLib.Fluid.HeatPumps.Compressors.BaseClasses.PartialCompressor; - parameter Modelica.SIunits.VolumeFlowRate pisDis - "Piston displacement"; + parameter Modelica.Units.SI.VolumeFlowRate pisDis "Piston displacement"; parameter Real cleFac( min = 0, final unit = "1") "Clearance factor"; - parameter Modelica.SIunits.Efficiency etaEle + parameter Modelica.Units.SI.Efficiency etaEle "Electro-mechanical efficiency of the compressor"; - parameter Modelica.SIunits.Power PLos(min = 0) + parameter Modelica.Units.SI.Power PLos(min=0) "Constant part of the compressor power losses"; - parameter Modelica.SIunits.AbsolutePressure pDro + parameter Modelica.Units.SI.AbsolutePressure pDro "Pressure drop at suction and discharge of the compressor"; - parameter Modelica.SIunits.TemperatureDifference dTSup(min = 0) + parameter Modelica.Units.SI.TemperatureDifference dTSup(min=0) "Superheating at compressor suction"; - Modelica.SIunits.MassFlowRate m_flow - "Refrigerant mass flow rate"; + Modelica.Units.SI.MassFlowRate m_flow "Refrigerant mass flow rate"; - Modelica.SIunits.Power PThe - "Theoretical power consumed by the compressor"; + Modelica.Units.SI.Power PThe "Theoretical power consumed by the compressor"; - Modelica.SIunits.Efficiency COP(start=5) - "Heating COP of the compressor"; + Modelica.Units.SI.Efficiency COP(start=5) "Heating COP of the compressor"; protected - Modelica.SIunits.IsentropicExponent k(start = 1.2) + Modelica.Units.SI.IsentropicExponent k(start=1.2) "Isentropic exponent of the refrigerant"; Real pisDis_norm @@ -78,56 +74,57 @@ equation annotation (defaultComponentName="scrCom", Documentation(info=" -

                        -Model for a reciprocating processor, as detailed in Jin (2002). The rate of heat transferred to the evaporator is given by: -

                        -

                        -Q̇Eva = ṁref ( hVap(TEva) - hLiq(TCon) ). -

                        -

                        -The power consumed by the compressor is given by a linear efficiency relation: -

                        -

                        -P = PTheoretical / η + PLoss,constant. -

                        -

                        -Variable speed is acheived by multiplying the full load piston displacement -by the normalized compressor speed. The power and heat transfer rates are forced -to zero if the resulting heat pump state has higher evaporating pressure than -condensing pressure. -

                        -

                        Assumptions and limitations

                        -

                        -The compression process is assumed isentropic. The thermal energy -of superheating is ignored in the evaluation of the heat transferred to the refrigerant -in the evaporator. There is no supercooling. -

                        -

                        References

                        -

                        -H. Jin. - -Parameter estimation based models of water source heat pumps. - -PhD Thesis. Oklahoma State University. Stillwater, Oklahoma, USA. 2012. -

                        -", revisions=" - -")); +

                        + Model for a reciprocating processor, as detailed in Jin (2002). The rate of heat transferred to the evaporator is given by: +

                        +

                        + Q̇Eva = ṁref ( hVap(TEva) - hLiq(TCon) ). +

                        +

                        + The power consumed by the compressor is given by a linear efficiency relation: +

                        +

                        + P = PTheoretical / η + PLoss,constant. +

                        +

                        + Variable speed is acheived by multiplying the full load piston displacement + by the normalized compressor speed. The power and heat transfer rates are forced + to zero if the resulting heat pump state has higher evaporating pressure than + condensing pressure. +

                        +

                        Assumptions and limitations

                        +

                        + The compression process is assumed isentropic. The thermal energy + of superheating is ignored in the evaluation of the heat transferred to the refrigerant + in the evaporator. There is no supercooling. +

                        +

                        References

                        +

                        + H. Jin. + + Parameter estimation based models of water source heat pumps. + + PhD Thesis. Oklahoma State University. Stillwater, Oklahoma, USA. 2002. +

                        + ",revisions=" + + "), + __Dymola_LockedEditing="Model from IBPSA"); end ReciprocatingCompressor; diff --git a/AixLib/Fluid/HeatPumps/Compressors/ScrollCompressor.mo b/AixLib/Fluid/HeatPumps/Compressors/ScrollCompressor.mo index 75048c4e24..ee83a308e5 100644 --- a/AixLib/Fluid/HeatPumps/Compressors/ScrollCompressor.mo +++ b/AixLib/Fluid/HeatPumps/Compressors/ScrollCompressor.mo @@ -8,40 +8,36 @@ model ScrollCompressor final unit = "1") "Built-in volume ratio"; - parameter Modelica.SIunits.VolumeFlowRate V_flow_nominal(min=0) + parameter Modelica.Units.SI.VolumeFlowRate V_flow_nominal(min=0) "Refrigerant volume flow rate at suction at full load conditions"; - parameter Modelica.SIunits.MassFlowRate leaCoe( - min = 0) + parameter Modelica.Units.SI.MassFlowRate leaCoe(min=0) "Leakage mass flow rate at a pressure ratio of 1"; - parameter Modelica.SIunits.Efficiency etaEle + parameter Modelica.Units.SI.Efficiency etaEle "Electro-mechanical efficiency of the compressor"; - parameter Modelica.SIunits.Power PLos(min = 0) + parameter Modelica.Units.SI.Power PLos(min=0) "Constant part of the compressor power losses"; - parameter Modelica.SIunits.TemperatureDifference dTSup(min = 0) + parameter Modelica.Units.SI.TemperatureDifference dTSup(min=0) "Superheating at compressor suction"; - Modelica.SIunits.MassFlowRate m_flow - "Refrigerant mass flow rate"; + Modelica.Units.SI.MassFlowRate m_flow "Refrigerant mass flow rate"; - Modelica.SIunits.MassFlowRate mLea_flow "Refrigerant leakage mass flow rate"; + Modelica.Units.SI.MassFlowRate mLea_flow "Refrigerant leakage mass flow rate"; - Modelica.SIunits.Power PThe - "Theoretical power consumed by the compressor"; + Modelica.Units.SI.Power PThe "Theoretical power consumed by the compressor"; - Modelica.SIunits.Efficiency COP(start=5) - "Heating COP of the compressor"; + Modelica.Units.SI.Efficiency COP(start=5) "Heating COP of the compressor"; protected - Modelica.SIunits.IsentropicExponent k(start = 1.2) + Modelica.Units.SI.IsentropicExponent k(start=1.2) "Isentropic exponent of the refrigerant"; Real v_norm "Normalized refrigerant volume flow rate at - suction at part load conditions"; + suction at part load conditions"; Real PRInt(start = 2.0) "Built-in pressure ratio"; @@ -101,56 +97,57 @@ equation annotation ( defaultComponentName="scrCom", Documentation(info=" -

                        -Model for a scroll processor, as detailed in Jin (2002). The rate of heat transferred to the evaporator is given by: -

                        -

                        -Q̇Eva = ṁref ( hVap(TEva) - hLiq(TCon) ). -

                        -

                        -The power consumed by the compressor is given by a linear efficiency relation: -

                        -

                        -P = PTheoretical / η + PLoss,constant. -

                        -

                        -Variable speed is achieved by multiplying the full load suction volume flow rate -by the normalized compressor speed. The power and heat transfer rates are forced -to zero if the resulting heat pump state has higher evaporating pressure than -condensing pressure. -

                        -

                        Assumptions and limitations

                        -

                        -The compression process is assumed isentropic. The thermal energy -of superheating is ignored in the evaluation of the heat transferred to the refrigerant -in the evaporator. There is no supercooling. -

                        -

                        References

                        -

                        -H. Jin. - -Parameter estimation based models of water source heat pumps. - -PhD Thesis. Oklahoma State University. Stillwater, Oklahoma, USA. 2012. -

                        -", revisions=" - -")); +

                        + Model for a scroll processor, as detailed in Jin (2002). The rate of heat transferred to the evaporator is given by: +

                        +

                        + Q̇Eva = ṁref ( hVap(TEva) - hLiq(TCon) ). +

                        +

                        + The power consumed by the compressor is given by a linear efficiency relation: +

                        +

                        + P = PTheoretical / η + PLoss,constant. +

                        +

                        + Variable speed is achieved by multiplying the full load suction volume flow rate + by the normalized compressor speed. The power and heat transfer rates are forced + to zero if the resulting heat pump state has higher evaporating pressure than + condensing pressure. +

                        +

                        Assumptions and limitations

                        +

                        + The compression process is assumed isentropic. The thermal energy + of superheating is ignored in the evaluation of the heat transferred to the refrigerant + in the evaporator. There is no supercooling. +

                        +

                        References

                        +

                        + H. Jin. + + Parameter estimation based models of water source heat pumps. + + PhD Thesis. Oklahoma State University. Stillwater, Oklahoma, USA. 2002. +

                        + ",revisions=" + + "), + __Dymola_LockedEditing="Model from IBPSA"); end ScrollCompressor; diff --git a/AixLib/Fluid/HeatPumps/Compressors/Validation/ReciprocatingCompressor.mo b/AixLib/Fluid/HeatPumps/Compressors/Validation/ReciprocatingCompressor.mo index 53c58440a6..e1d06756b7 100644 --- a/AixLib/Fluid/HeatPumps/Compressors/Validation/ReciprocatingCompressor.mo +++ b/AixLib/Fluid/HeatPumps/Compressors/Validation/ReciprocatingCompressor.mo @@ -40,18 +40,19 @@ equation experiment( Tolerance=1e-6, StopTime=100), Documentation(info=" -

                        -Model that demonstrates the use of the ReciprocatingCompressor model. -

                        -

                        -The compressor power, condenser heat transfer rate and evaporator heat transfer rate are calculated for given refrigerant temperatures. -

                        -", revisions=" -
                          -
                        • -October 17, 2016, by Massimo Cimmino:
                          -First implementation. -
                        • -
                        -")); +

                        + Model that demonstrates the use of the ReciprocatingCompressor model. +

                        +

                        + The compressor power, condenser heat transfer rate and evaporator heat transfer rate are calculated for given refrigerant temperatures. +

                        + ",revisions=" +
                          +
                        • + October 17, 2016, by Massimo Cimmino:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end ReciprocatingCompressor; diff --git a/AixLib/Fluid/HeatPumps/Compressors/Validation/ReciprocatingCompressor_ZeroInput.mo b/AixLib/Fluid/HeatPumps/Compressors/Validation/ReciprocatingCompressor_ZeroInput.mo index 73d7723d1d..c533e7cec3 100644 --- a/AixLib/Fluid/HeatPumps/Compressors/Validation/ReciprocatingCompressor_ZeroInput.mo +++ b/AixLib/Fluid/HeatPumps/Compressors/Validation/ReciprocatingCompressor_ZeroInput.mo @@ -40,19 +40,20 @@ equation experiment( Tolerance=1e-6, StopTime=100), Documentation(info=" -

                        -Model that demonstrates the use of the ReciprocatingCompressor model. -

                        -

                        -The compressor power, condenser heat transfer rate and evaporator heat transfer -rate are calculated for zero control input to compressor. -

                        -", revisions=" -
                          -
                        • -December 5, 2016, by Massimo Cimmino:
                          -First implementation. -
                        • -
                        -")); +

                        + Model that demonstrates the use of the ReciprocatingCompressor model. +

                        +

                        + The compressor power, condenser heat transfer rate and evaporator heat transfer + rate are calculated for zero control input to compressor. +

                        + ",revisions=" +
                          +
                        • + December 5, 2016, by Massimo Cimmino:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end ReciprocatingCompressor_ZeroInput; diff --git a/AixLib/Fluid/HeatPumps/Compressors/Validation/ScrollCompressor.mo b/AixLib/Fluid/HeatPumps/Compressors/Validation/ScrollCompressor.mo index 714b8a7092..eb862e5fb2 100644 --- a/AixLib/Fluid/HeatPumps/Compressors/Validation/ScrollCompressor.mo +++ b/AixLib/Fluid/HeatPumps/Compressors/Validation/ScrollCompressor.mo @@ -40,18 +40,19 @@ equation experiment( Tolerance=1e-6, StopTime=100), Documentation(info=" -

                        -Model that demonstrates the use of the ScrollCompressor model. -

                        -

                        -The compressor power, condenser heat transfer rate and evaporator heat transfer rate are calculated for given refrigerant temperatures. -

                        -", revisions=" -
                          -
                        • -October 17, 2016, by Massimo Cimmino:
                          -First implementation. -
                        • -
                        -")); +

                        + Model that demonstrates the use of the ScrollCompressor model. +

                        +

                        + The compressor power, condenser heat transfer rate and evaporator heat transfer rate are calculated for given refrigerant temperatures. +

                        + ",revisions=" +
                          +
                        • + October 17, 2016, by Massimo Cimmino:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end ScrollCompressor; diff --git a/AixLib/Fluid/HeatPumps/Compressors/Validation/ScrollCompressor_ZeroInput.mo b/AixLib/Fluid/HeatPumps/Compressors/Validation/ScrollCompressor_ZeroInput.mo index b875530c17..0161742cce 100644 --- a/AixLib/Fluid/HeatPumps/Compressors/Validation/ScrollCompressor_ZeroInput.mo +++ b/AixLib/Fluid/HeatPumps/Compressors/Validation/ScrollCompressor_ZeroInput.mo @@ -40,19 +40,20 @@ equation experiment( Tolerance=1e-6, StopTime=100), Documentation(info=" -

                        -Model that demonstrates the use of the ScrollCompressor model. -

                        -

                        -The compressor power, condenser heat transfer rate and evaporator heat transfer -rate are calculated for zero control input to compressor. -

                        -", revisions=" -
                          -
                        • -December 5, 2016, by Massimo Cimmino:
                          -First implementation. -
                        • -
                        -")); +

                        + Model that demonstrates the use of the ScrollCompressor model. +

                        +

                        + The compressor power, condenser heat transfer rate and evaporator heat transfer + rate are calculated for zero control input to compressor. +

                        + ",revisions=" +
                          +
                        • + December 5, 2016, by Massimo Cimmino:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end ScrollCompressor_ZeroInput; diff --git a/AixLib/Fluid/HeatPumps/Compressors/Validation/package.mo b/AixLib/Fluid/HeatPumps/Compressors/Validation/package.mo index a48cd85e80..c1b124b801 100644 --- a/AixLib/Fluid/HeatPumps/Compressors/Validation/package.mo +++ b/AixLib/Fluid/HeatPumps/Compressors/Validation/package.mo @@ -2,6 +2,7 @@ within AixLib.Fluid.HeatPumps.Compressors; package Validation "Collection of models that validate the compressor models" extends Modelica.Icons.ExamplesPackage; + annotation (preferredView="info", Documentation(info="

                        This package contains validation models for the classes in @@ -17,5 +18,4 @@ solutions. These model outputs are stored as reference data and used for continuous validation whenever models in the library change.

                        ")); - end Validation; diff --git a/AixLib/Fluid/HeatPumps/Compressors/package.mo b/AixLib/Fluid/HeatPumps/Compressors/package.mo index c324cb39f8..27cd14c2f6 100644 --- a/AixLib/Fluid/HeatPumps/Compressors/package.mo +++ b/AixLib/Fluid/HeatPumps/Compressors/package.mo @@ -2,10 +2,10 @@ within AixLib.Fluid.HeatPumps; package Compressors "Package with compressor models" extends Modelica.Icons.VariantsPackage; + annotation (preferredView="info", Documentation(info="

                        This package contains components models for compressors.

                        ")); - end Compressors; diff --git a/AixLib/Fluid/HeatPumps/Data/BaseClasses/HeatPumps.mo b/AixLib/Fluid/HeatPumps/Data/BaseClasses/HeatPumps.mo index 42dc0466de..1cad0f7642 100644 --- a/AixLib/Fluid/HeatPumps/Data/BaseClasses/HeatPumps.mo +++ b/AixLib/Fluid/HeatPumps/Data/BaseClasses/HeatPumps.mo @@ -3,23 +3,22 @@ partial record HeatPumps "Base record for calibrated heat pump models" extends Modelica.Icons.Record; - parameter Modelica.SIunits.Efficiency etaEle + parameter Modelica.Units.SI.Efficiency etaEle "Electro-mechanical efficiency of the compressor" annotation (Dialog(group="Compressor")); - parameter Modelica.SIunits.Power PLos(min = 0) + parameter Modelica.Units.SI.Power PLos(min=0) "Constant part of the compressor power losses" annotation (Dialog(group="Compressor")); - parameter Modelica.SIunits.TemperatureDifference dTSup(min = 0) - "Superheating at compressor suction" - annotation (Dialog(group="Evaporator")); + parameter Modelica.Units.SI.TemperatureDifference dTSup(min=0) + "Superheating at compressor suction" annotation (Dialog(group="Evaporator")); - parameter Modelica.SIunits.ThermalConductance UACon + parameter Modelica.Units.SI.ThermalConductance UACon "Thermal conductance of condenser between water and refrigerant" annotation (Dialog(group="Condenser")); - parameter Modelica.SIunits.ThermalConductance UAEva + parameter Modelica.Units.SI.ThermalConductance UAEva "Thermal conductance of evaporator between water and refrigerant" annotation (Dialog(group="Evaporator")); @@ -27,29 +26,30 @@ partial record HeatPumps defaultComponentName="datHeaPum", preferredView="info", Documentation(info=" -

                        -This is the base record for heat pump models. -

                        -", +

                        + This is the base record for heat pump models. +

                        + ", revisions=" -
                          -
                        • -December 6, 2016, by Massimo Cimmino:
                          -First implementation. -
                        • -
                        -"), +
                          +
                        • + December 6, 2016, by Massimo Cimmino:
                          + First implementation. +
                        • +
                        + "), Icon(graphics={ Text( extent={{-95,53},{-12,-2}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="etaEle"), Text( extent={{-95,-9},{-48,-48}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="PLos"), Text( extent={{-95,-49},{-12,-104}}, - lineColor={0,0,255}, - textString="dTSup")})); + textColor={0,0,255}, + textString="dTSup")}), + __Dymola_LockedEditing="Model from IBPSA"); end HeatPumps; diff --git a/AixLib/Fluid/HeatPumps/Data/ReciprocatingWaterToWater/Generic.mo b/AixLib/Fluid/HeatPumps/Data/ReciprocatingWaterToWater/Generic.mo index 8d5ac6324e..c6ba0c8983 100644 --- a/AixLib/Fluid/HeatPumps/Data/ReciprocatingWaterToWater/Generic.mo +++ b/AixLib/Fluid/HeatPumps/Data/ReciprocatingWaterToWater/Generic.mo @@ -2,15 +2,14 @@ within AixLib.Fluid.HeatPumps.Data.ReciprocatingWaterToWater; record Generic "Record for reciprocating water to water heat pump" extends BaseClasses.HeatPumps; - parameter Modelica.SIunits.VolumeFlowRate pisDis - "Piston displacement" + parameter Modelica.Units.SI.VolumeFlowRate pisDis "Piston displacement" annotation (Dialog(group="Compressor")); parameter Real cleFac(min = 0, unit = "1") "Clearance factor" annotation (Dialog(group="Compressor")); - parameter Modelica.SIunits.AbsolutePressure pDro + parameter Modelica.Units.SI.AbsolutePressure pDro "Pressure drop at suction and discharge of the compressor" annotation (Dialog(group="Compressor")); @@ -19,17 +18,17 @@ record Generic "Record for reciprocating water to water heat pump" defaultComponentName="datHeaPum", preferredView="info", Documentation(info=" -

                        -This is the base record for reciprocating water to water heat pump models. -

                        -", +

                        + This is the base record for reciprocating water to water heat pump models. +

                        + ", revisions=" -
                          -
                        • -December 6, 2016, by Massimo Cimmino:
                          -First implementation. -
                        • -
                        -")); - +
                          +
                        • + December 6, 2016, by Massimo Cimmino:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end Generic; diff --git a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Generic.mo b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Generic.mo index 3144112519..f58d8da1c1 100644 --- a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Generic.mo +++ b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Generic.mo @@ -8,12 +8,11 @@ record Generic "Record for scroll water to water heat pump" "Built-in volume ratio" annotation (Dialog(group="Compressor")); - parameter Modelica.SIunits.VolumeFlowRate V_flow_nominal(min=0) + parameter Modelica.Units.SI.VolumeFlowRate V_flow_nominal(min=0) "Refrigerant volume flow rate at suction" annotation (Dialog(group="Compressor")); - parameter Modelica.SIunits.MassFlowRate leaCoe(min = 0) - "Leakage coefficient" + parameter Modelica.Units.SI.MassFlowRate leaCoe(min=0) "Leakage coefficient" annotation (Dialog(group="Compressor")); annotation ( @@ -21,17 +20,17 @@ record Generic "Record for scroll water to water heat pump" defaultComponentName="datHeaPum", preferredView="info", Documentation(info=" -

                        -This is the base record for scroll water to water heat pump models. -

                        -", +

                        + This is the base record for scroll water to water heat pump models. +

                        + ", revisions=" -
                          -
                        • -December 6, 2016, by Massimo Cimmino:
                          -First implementation. -
                        • -
                        -")); - +
                          +
                        • + December 6, 2016, by Massimo Cimmino:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end Generic; diff --git a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Carrier_50PSW122_38kW_4_29COP_R410A.mo b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Carrier_50PSW122_38kW_4_29COP_R410A.mo index 82cb3c3576..8fe564ee8a 100644 --- a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Carrier_50PSW122_38kW_4_29COP_R410A.mo +++ b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Carrier_50PSW122_38kW_4_29COP_R410A.mo @@ -10,20 +10,20 @@ record Carrier_50PSW122_38kW_4_29COP_R410A = UACon = 9021.05488178, UAEva = 7132.41759701) "Calibrated parameters for Carrier 50PSW122" - annotation ( defaultComponentPrefixes = "parameter", defaultComponentName="datHeaPum", preferredView="info", Documentation(info=" -

                        -Calibrated parameters for Carrier 50PSW122. -

                        -", revisions=" -
                          -
                        • -March 6, 2017, by Massimo Cimmino:
                          -Calibrated parameters. -
                        • -
                        -")); +

                        + Calibrated parameters for Carrier 50PSW122. +

                        + ",revisions=" +
                          +
                        • + March 6, 2017, by Massimo Cimmino:
                          + Calibrated parameters. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); diff --git a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Carrier_50PSW180_52kW_4_50COP_R410A.mo b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Carrier_50PSW180_52kW_4_50COP_R410A.mo index 17644cfb81..ab8387dc6b 100644 --- a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Carrier_50PSW180_52kW_4_50COP_R410A.mo +++ b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Carrier_50PSW180_52kW_4_50COP_R410A.mo @@ -10,20 +10,20 @@ record Carrier_50PSW180_52kW_4_50COP_R410A = UACon = 8707.82060032, UAEva = 7982.84714185) "Calibrated parameters for Carrier 50PSW180" - annotation ( defaultComponentPrefixes = "parameter", defaultComponentName="datHeaPum", preferredView="info", Documentation(info=" -

                        -Calibrated parameters for Carrier 50PSW180. -

                        -", revisions=" -
                          -
                        • -March 6, 2017, by Massimo Cimmino:
                          -Calibrated parameters. -
                        • -
                        -")); +

                        + Calibrated parameters for Carrier 50PSW180. +

                        + ",revisions=" +
                          +
                        • + March 6, 2017, by Massimo Cimmino:
                          + Calibrated parameters. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); diff --git a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Carrier_50PSW210_70kW_4_40COP_R410A.mo b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Carrier_50PSW210_70kW_4_40COP_R410A.mo index 937296935b..d032af6abb 100644 --- a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Carrier_50PSW210_70kW_4_40COP_R410A.mo +++ b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Carrier_50PSW210_70kW_4_40COP_R410A.mo @@ -10,20 +10,20 @@ record Carrier_50PSW210_70kW_4_40COP_R410A = UACon = 14926.2266407, UAEva = 14718.9494319) "Calibrated parameters for Carrier 50PSW210" - annotation ( defaultComponentPrefixes = "parameter", defaultComponentName="datHeaPum", preferredView="info", Documentation(info=" -

                        -Calibrated parameters for Carrier 50PSW210. -

                        -", revisions=" -
                          -
                        • -March 6, 2017, by Massimo Cimmino:
                          -Calibrated parameters. -
                        • -
                        -")); +

                        + Calibrated parameters for Carrier 50PSW210. +

                        + ",revisions=" +
                          +
                        • + March 6, 2017, by Massimo Cimmino:
                          + Calibrated parameters. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); diff --git a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Carrier_50PSW240_93kW_4_40COP_R410A.mo b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Carrier_50PSW240_93kW_4_40COP_R410A.mo index 41674e685a..0da9959fb7 100644 --- a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Carrier_50PSW240_93kW_4_40COP_R410A.mo +++ b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Carrier_50PSW240_93kW_4_40COP_R410A.mo @@ -10,20 +10,20 @@ record Carrier_50PSW240_93kW_4_40COP_R410A = UACon = 15632.3350979, UAEva = 11572.8594812) "Calibrated parameters for Carrier 50PSW240" - annotation ( defaultComponentPrefixes = "parameter", defaultComponentName="datHeaPum", preferredView="info", Documentation(info=" -

                        -Calibrated parameters for Carrier 50PSW240. -

                        -", revisions=" -
                          -
                        • -March 6, 2017, by Massimo Cimmino:
                          -Calibrated parameters. -
                        • -
                        -")); +

                        + Calibrated parameters for Carrier 50PSW240. +

                        + ",revisions=" +
                          +
                        • + March 6, 2017, by Massimo Cimmino:
                          + Calibrated parameters. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); diff --git a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Carrier_50PSW360_105kW_4_50COP_R410A.mo b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Carrier_50PSW360_105kW_4_50COP_R410A.mo index 6e28636b8b..612d068651 100644 --- a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Carrier_50PSW360_105kW_4_50COP_R410A.mo +++ b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Carrier_50PSW360_105kW_4_50COP_R410A.mo @@ -10,20 +10,20 @@ record Carrier_50PSW360_105kW_4_50COP_R410A = UACon = 16612.2868599, UAEva = 15988.0119559) "Calibrated parameters for Carrier 50PSW360" - annotation ( defaultComponentPrefixes = "parameter", defaultComponentName="datHeaPum", preferredView="info", Documentation(info=" -

                        -Calibrated parameters for Carrier 50PSW360. -

                        -", revisions=" -
                          -
                        • -March 6, 2017, by Massimo Cimmino:
                          -Calibrated parameters. -
                        • -
                        -")); +

                        + Calibrated parameters for Carrier 50PSW360. +

                        + ",revisions=" +
                          +
                        • + March 6, 2017, by Massimo Cimmino:
                          + Calibrated parameters. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); diff --git a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Carrier_50PSW420_140kW_4_40COP_R410A.mo b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Carrier_50PSW420_140kW_4_40COP_R410A.mo index 0d75a0531f..482b54d467 100644 --- a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Carrier_50PSW420_140kW_4_40COP_R410A.mo +++ b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Carrier_50PSW420_140kW_4_40COP_R410A.mo @@ -10,20 +10,20 @@ record Carrier_50PSW420_140kW_4_40COP_R410A = UACon = 22875.6244158, UAEva = 20395.4876127) "Calibrated parameters for Carrier 50PSW420" - annotation ( defaultComponentPrefixes = "parameter", defaultComponentName="datHeaPum", preferredView="info", Documentation(info=" -

                        -Calibrated parameters for Carrier 50PSW420. -

                        -", revisions=" -
                          -
                        • -March 6, 2017, by Massimo Cimmino:
                          -Calibrated parameters. -
                        • -
                        -")); +

                        + Calibrated parameters for Carrier 50PSW420. +

                        + ",revisions=" +
                          +
                        • + March 6, 2017, by Massimo Cimmino:
                          + Calibrated parameters. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); diff --git a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/ClimateMaster_TMW036_12kW_4_90COP_R410A.mo b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/ClimateMaster_TMW036_12kW_4_90COP_R410A.mo index b95715c1a4..007db3c2f8 100644 --- a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/ClimateMaster_TMW036_12kW_4_90COP_R410A.mo +++ b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/ClimateMaster_TMW036_12kW_4_90COP_R410A.mo @@ -10,20 +10,20 @@ record ClimateMaster_TMW036_12kW_4_90COP_R410A = UACon = 2434.90888536, UAEva = 925.546637632) "Calibrated parameters for ClimateMaster TMW036" - annotation ( defaultComponentPrefixes = "parameter", defaultComponentName="datHeaPum", preferredView="info", Documentation(info=" -

                        -Calibrated parameters for ClimateMaster TMW036. -

                        -", revisions=" -
                          -
                        • -March 6, 2017, by Massimo Cimmino:
                          -Calibrated parameters. -
                        • -
                        -")); +

                        + Calibrated parameters for ClimateMaster TMW036. +

                        + ",revisions=" +
                          +
                        • + March 6, 2017, by Massimo Cimmino:
                          + Calibrated parameters. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); diff --git a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/ClimateMaster_TMW060_21kW_4_60COP_R410A.mo b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/ClimateMaster_TMW060_21kW_4_60COP_R410A.mo index 2aa6719860..ae7fb00c4f 100644 --- a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/ClimateMaster_TMW060_21kW_4_60COP_R410A.mo +++ b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/ClimateMaster_TMW060_21kW_4_60COP_R410A.mo @@ -10,20 +10,20 @@ record ClimateMaster_TMW060_21kW_4_60COP_R410A = UACon = 6976.43602782, UAEva = 1012.57723222) "Calibrated parameters for ClimateMaster TMW060" - annotation ( defaultComponentPrefixes = "parameter", defaultComponentName="datHeaPum", preferredView="info", Documentation(info=" -

                        -Calibrated parameters for ClimateMaster TMW060. -

                        -", revisions=" -
                          -
                        • -March 6, 2017, by Massimo Cimmino:
                          -Calibrated parameters. -
                        • -
                        -")); +

                        + Calibrated parameters for ClimateMaster TMW060. +

                        + ",revisions=" +
                          +
                        • + March 6, 2017, by Massimo Cimmino:
                          + Calibrated parameters. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); diff --git a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/ClimateMaster_TMW120_42kW_4_50COP_R410A.mo b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/ClimateMaster_TMW120_42kW_4_50COP_R410A.mo index 3c00f5204f..66df55b680 100644 --- a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/ClimateMaster_TMW120_42kW_4_50COP_R410A.mo +++ b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/ClimateMaster_TMW120_42kW_4_50COP_R410A.mo @@ -10,20 +10,20 @@ record ClimateMaster_TMW120_42kW_4_50COP_R410A = UACon = 11851.7167307, UAEva = 2121.46076035) "Calibrated parameters for ClimateMaster TMW120" - annotation ( defaultComponentPrefixes = "parameter", defaultComponentName="datHeaPum", preferredView="info", Documentation(info=" -

                        -Calibrated parameters for ClimateMaster TMW120. -

                        -", revisions=" -
                          -
                        • -March 6, 2017, by Massimo Cimmino:
                          -Calibrated parameters. -
                        • -
                        -")); +

                        + Calibrated parameters for ClimateMaster TMW120. +

                        + ",revisions=" +
                          +
                        • + March 6, 2017, by Massimo Cimmino:
                          + Calibrated parameters. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); diff --git a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/ClimateMaster_TMW170_48kW_4_30COP_R410A.mo b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/ClimateMaster_TMW170_48kW_4_30COP_R410A.mo index 12fcbaac6d..7bf709e16e 100644 --- a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/ClimateMaster_TMW170_48kW_4_30COP_R410A.mo +++ b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/ClimateMaster_TMW170_48kW_4_30COP_R410A.mo @@ -10,20 +10,20 @@ record ClimateMaster_TMW170_48kW_4_30COP_R410A = UACon = 7127.67902377, UAEva = 6702.69056458) "Calibrated parameters for ClimateMaster TMW170" - annotation ( defaultComponentPrefixes = "parameter", defaultComponentName="datHeaPum", preferredView="info", Documentation(info=" -

                        -Calibrated parameters for ClimateMaster TMW170. -

                        -", revisions=" -
                          -
                        • -March 6, 2017, by Massimo Cimmino:
                          -Calibrated parameters. -
                        • -
                        -")); +

                        + Calibrated parameters for ClimateMaster TMW170. +

                        + ",revisions=" +
                          +
                        • + March 6, 2017, by Massimo Cimmino:
                          + Calibrated parameters. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); diff --git a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/ClimateMaster_TMW340_98kW_4_40COP_R410A.mo b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/ClimateMaster_TMW340_98kW_4_40COP_R410A.mo index f353863c61..a963f1e345 100644 --- a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/ClimateMaster_TMW340_98kW_4_40COP_R410A.mo +++ b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/ClimateMaster_TMW340_98kW_4_40COP_R410A.mo @@ -10,20 +10,20 @@ record ClimateMaster_TMW340_98kW_4_40COP_R410A = UACon = 14154.9112764, UAEva = 13705.1289797) "Calibrated parameters for ClimateMaster TMW340" - annotation ( defaultComponentPrefixes = "parameter", defaultComponentName="datHeaPum", preferredView="info", Documentation(info=" -

                        -Calibrated parameters for ClimateMaster TMW340. -

                        -", revisions=" -
                          -
                        • -March 6, 2017, by Massimo Cimmino:
                          -Calibrated parameters. -
                        • -
                        -")); +

                        + Calibrated parameters for ClimateMaster TMW340. +

                        + ",revisions=" +
                          +
                        • + March 6, 2017, by Massimo Cimmino:
                          + Calibrated parameters. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); diff --git a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Daikin_WRA036_13kW_4_50COP_R410A.mo b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Daikin_WRA036_13kW_4_50COP_R410A.mo index 4a835e5415..8c0d61ef7a 100644 --- a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Daikin_WRA036_13kW_4_50COP_R410A.mo +++ b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Daikin_WRA036_13kW_4_50COP_R410A.mo @@ -10,20 +10,20 @@ record Daikin_WRA036_13kW_4_50COP_R410A = UACon = 2854.56883514, UAEva = 14984.5402787) "Calibrated parameters for Daikin WRA036" - annotation ( defaultComponentPrefixes = "parameter", defaultComponentName="datHeaPum", preferredView="info", Documentation(info=" -

                        -Calibrated parameters for Daikin WRA036. -

                        -", revisions=" -
                          -
                        • -March 6, 2017, by Massimo Cimmino:
                          -Calibrated parameters. -
                        • -
                        -")); +

                        + Calibrated parameters for Daikin WRA036. +

                        + ",revisions=" +
                          +
                        • + March 6, 2017, by Massimo Cimmino:
                          + Calibrated parameters. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); diff --git a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Daikin_WRA048_16kW_4_60COP_R410A.mo b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Daikin_WRA048_16kW_4_60COP_R410A.mo index 0e17ffabce..a53ca3808d 100644 --- a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Daikin_WRA048_16kW_4_60COP_R410A.mo +++ b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Daikin_WRA048_16kW_4_60COP_R410A.mo @@ -10,20 +10,20 @@ record Daikin_WRA048_16kW_4_60COP_R410A = UACon = 2860.44257631, UAEva = 17688.743889) "Calibrated parameters for Daikin WRA048" - annotation ( defaultComponentPrefixes = "parameter", defaultComponentName="datHeaPum", preferredView="info", Documentation(info=" -

                        -Calibrated parameters for Daikin WRA048. -

                        -", revisions=" -
                          -
                        • -March 6, 2017, by Massimo Cimmino:
                          -Calibrated parameters. -
                        • -
                        -")); +

                        + Calibrated parameters for Daikin WRA048. +

                        + ",revisions=" +
                          +
                        • + March 6, 2017, by Massimo Cimmino:
                          + Calibrated parameters. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); diff --git a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Daikin_WRA060_19kW_4_50COP_R410A.mo b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Daikin_WRA060_19kW_4_50COP_R410A.mo index c7a28e7ca7..8a27b05914 100644 --- a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Daikin_WRA060_19kW_4_50COP_R410A.mo +++ b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Daikin_WRA060_19kW_4_50COP_R410A.mo @@ -10,20 +10,20 @@ record Daikin_WRA060_19kW_4_50COP_R410A = UACon = 3132.54953048, UAEva = 22163.5117527) "Calibrated parameters for Daikin WRA060" - annotation ( defaultComponentPrefixes = "parameter", defaultComponentName="datHeaPum", preferredView="info", Documentation(info=" -

                        -Calibrated parameters for Daikin WRA060. -

                        -", revisions=" -
                          -
                        • -March 6, 2017, by Massimo Cimmino:
                          -Calibrated parameters. -
                        • -
                        -")); +

                        + Calibrated parameters for Daikin WRA060. +

                        + ",revisions=" +
                          +
                        • + March 6, 2017, by Massimo Cimmino:
                          + Calibrated parameters. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); diff --git a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Daikin_WRA072_24kW_4_30COP_R410A.mo b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Daikin_WRA072_24kW_4_30COP_R410A.mo index 366a9d58fe..e27dc9ba1b 100644 --- a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Daikin_WRA072_24kW_4_30COP_R410A.mo +++ b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Daikin_WRA072_24kW_4_30COP_R410A.mo @@ -10,20 +10,20 @@ record Daikin_WRA072_24kW_4_30COP_R410A = UACon = 3112.7917639, UAEva = 29257.8652993) "Calibrated parameters for Daikin WRA072" - annotation ( defaultComponentPrefixes = "parameter", defaultComponentName="datHeaPum", preferredView="info", Documentation(info=" -

                        -Calibrated parameters for Daikin WRA072. -

                        -", revisions=" -
                          -
                        • -March 6, 2017, by Massimo Cimmino:
                          -Calibrated parameters. -
                        • -
                        -")); +

                        + Calibrated parameters for Daikin WRA072. +

                        + ",revisions=" +
                          +
                        • + March 6, 2017, by Massimo Cimmino:
                          + Calibrated parameters. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); diff --git a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Daikin_WRA120_37kW_4_40COP_R410A.mo b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Daikin_WRA120_37kW_4_40COP_R410A.mo index 265eb70906..adca2b1624 100644 --- a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Daikin_WRA120_37kW_4_40COP_R410A.mo +++ b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Daikin_WRA120_37kW_4_40COP_R410A.mo @@ -10,20 +10,20 @@ record Daikin_WRA120_37kW_4_40COP_R410A = UACon = 6395.36493022, UAEva = 43952.8437636) "Calibrated parameters for Daikin WRA120" - annotation ( defaultComponentPrefixes = "parameter", defaultComponentName="datHeaPum", preferredView="info", Documentation(info=" -

                        -Calibrated parameters for Daikin WRA120. -

                        -", revisions=" -
                          -
                        • -March 6, 2017, by Massimo Cimmino:
                          -Calibrated parameters. -
                        • -
                        -")); +

                        + Calibrated parameters for Daikin WRA120. +

                        + ",revisions=" +
                          +
                        • + March 6, 2017, by Massimo Cimmino:
                          + Calibrated parameters. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); diff --git a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Daikin_WRA150_49kW_4_70COP_R410A.mo b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Daikin_WRA150_49kW_4_70COP_R410A.mo index 6a78bd6ea6..d16a8e15d8 100644 --- a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Daikin_WRA150_49kW_4_70COP_R410A.mo +++ b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Daikin_WRA150_49kW_4_70COP_R410A.mo @@ -10,20 +10,20 @@ record Daikin_WRA150_49kW_4_70COP_R410A = UACon = 10364.1606457, UAEva = 52300.8714734) "Calibrated parameters for Daikin WRA150" - annotation ( defaultComponentPrefixes = "parameter", defaultComponentName="datHeaPum", preferredView="info", Documentation(info=" -

                        -Calibrated parameters for Daikin WRA150. -

                        -", revisions=" -
                          -
                        • -March 6, 2017, by Massimo Cimmino:
                          -Calibrated parameters. -
                        • -
                        -")); +

                        + Calibrated parameters for Daikin WRA150. +

                        + ",revisions=" +
                          +
                        • + March 6, 2017, by Massimo Cimmino:
                          + Calibrated parameters. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); diff --git a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Daikin_WRA180_63kW_4_50COP_R410A.mo b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Daikin_WRA180_63kW_4_50COP_R410A.mo index 71d0835635..8e36c3888e 100644 --- a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Daikin_WRA180_63kW_4_50COP_R410A.mo +++ b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Daikin_WRA180_63kW_4_50COP_R410A.mo @@ -10,20 +10,20 @@ record Daikin_WRA180_63kW_4_50COP_R410A = UACon = 11553.9351864, UAEva = 83881.3683749) "Calibrated parameters for Daikin WRA180" - annotation ( defaultComponentPrefixes = "parameter", defaultComponentName="datHeaPum", preferredView="info", Documentation(info=" -

                        -Calibrated parameters for Daikin WRA180. -

                        -", revisions=" -
                          -
                        • -March 6, 2017, by Massimo Cimmino:
                          -Calibrated parameters. -
                        • -
                        -")); +

                        + Calibrated parameters for Daikin WRA180. +

                        + ",revisions=" +
                          +
                        • + March 6, 2017, by Massimo Cimmino:
                          + Calibrated parameters. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); diff --git a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Daikin_WRA240_79kW_4_40COP_R410A.mo b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Daikin_WRA240_79kW_4_40COP_R410A.mo index 94b7d2b3a2..5b4e745c35 100644 --- a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Daikin_WRA240_79kW_4_40COP_R410A.mo +++ b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Daikin_WRA240_79kW_4_40COP_R410A.mo @@ -10,20 +10,20 @@ record Daikin_WRA240_79kW_4_40COP_R410A = UACon = 12615.4293459, UAEva = 94620.7400986) "Calibrated parameters for Daikin WRA240" - annotation ( defaultComponentPrefixes = "parameter", defaultComponentName="datHeaPum", preferredView="info", Documentation(info=" -

                        -Calibrated parameters for Daikin WRA240. -

                        -", revisions=" -
                          -
                        • -March 6, 2017, by Massimo Cimmino:
                          -Calibrated parameters. -
                        • -
                        -")); +

                        + Calibrated parameters for Daikin WRA240. +

                        + ",revisions=" +
                          +
                        • + March 6, 2017, by Massimo Cimmino:
                          + Calibrated parameters. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); diff --git a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Daikin_WRA300_93kW_4_60COP_R410A.mo b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Daikin_WRA300_93kW_4_60COP_R410A.mo index 3d2cbe08e0..7338bed837 100644 --- a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Daikin_WRA300_93kW_4_60COP_R410A.mo +++ b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Daikin_WRA300_93kW_4_60COP_R410A.mo @@ -10,20 +10,20 @@ record Daikin_WRA300_93kW_4_60COP_R410A = UACon = 16784.7393136, UAEva = 114049.474787) "Calibrated parameters for Daikin WRA300" - annotation ( defaultComponentPrefixes = "parameter", defaultComponentName="datHeaPum", preferredView="info", Documentation(info=" -

                        -Calibrated parameters for Daikin WRA300. -

                        -", revisions=" -
                          -
                        • -March 6, 2017, by Massimo Cimmino:
                          -Calibrated parameters. -
                        • -
                        -")); +

                        + Calibrated parameters for Daikin WRA300. +

                        + ",revisions=" +
                          +
                        • + March 6, 2017, by Massimo Cimmino:
                          + Calibrated parameters. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); diff --git a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Daikin_WRA360_116kW_4_60COP_R410A.mo b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Daikin_WRA360_116kW_4_60COP_R410A.mo index 7c15b5b077..5fda7313a0 100644 --- a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Daikin_WRA360_116kW_4_60COP_R410A.mo +++ b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Daikin_WRA360_116kW_4_60COP_R410A.mo @@ -10,20 +10,20 @@ record Daikin_WRA360_116kW_4_60COP_R410A = UACon = 25362.0976534, UAEva = 196974.891726) "Calibrated parameters for Daikin WRA360" - annotation ( defaultComponentPrefixes = "parameter", defaultComponentName="datHeaPum", preferredView="info", Documentation(info=" -

                        -Calibrated parameters for Daikin WRA360. -

                        -", revisions=" -
                          -
                        • -March 6, 2017, by Massimo Cimmino:
                          -Calibrated parameters. -
                        • -
                        -")); +

                        + Calibrated parameters for Daikin WRA360. +

                        + ",revisions=" +
                          +
                        • + March 6, 2017, by Massimo Cimmino:
                          + Calibrated parameters. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); diff --git a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Daikin_WRA420_137kW_4_50COP_R410A.mo b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Daikin_WRA420_137kW_4_50COP_R410A.mo index f7aa7772eb..0221ac740e 100644 --- a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Daikin_WRA420_137kW_4_50COP_R410A.mo +++ b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Daikin_WRA420_137kW_4_50COP_R410A.mo @@ -10,20 +10,20 @@ record Daikin_WRA420_137kW_4_50COP_R410A = UACon = 24801.5921552, UAEva = 297902.470363) "Calibrated parameters for Daikin WRA420" - annotation ( defaultComponentPrefixes = "parameter", defaultComponentName="datHeaPum", preferredView="info", Documentation(info=" -

                        -Calibrated parameters for Daikin WRA420. -

                        -", revisions=" -
                          -
                        • -March 6, 2017, by Massimo Cimmino:
                          -Calibrated parameters. -
                        • -
                        -")); +

                        + Calibrated parameters for Daikin WRA420. +

                        + ",revisions=" +
                          +
                        • + March 6, 2017, by Massimo Cimmino:
                          + Calibrated parameters. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); diff --git a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Trane_EXW060_21kW_4_30COP_R410A.mo b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Trane_EXW060_21kW_4_30COP_R410A.mo index 41737ef039..4cdbf1695c 100644 --- a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Trane_EXW060_21kW_4_30COP_R410A.mo +++ b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Trane_EXW060_21kW_4_30COP_R410A.mo @@ -10,20 +10,20 @@ record Trane_EXW060_21kW_4_30COP_R410A = UACon = 3260.47025405, UAEva = 41007.3610647) "Calibrated parameters for Trane EXW060" - annotation ( defaultComponentPrefixes = "parameter", defaultComponentName="datHeaPum", preferredView="info", Documentation(info=" -

                        -Calibrated parameters for Trane EXW060. -

                        -", revisions=" -
                          -
                        • -March 6, 2017, by Massimo Cimmino:
                          -Calibrated parameters. -
                        • -
                        -")); +

                        + Calibrated parameters for Trane EXW060. +

                        + ",revisions=" +
                          +
                        • + March 6, 2017, by Massimo Cimmino:
                          + Calibrated parameters. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); diff --git a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Trane_EXW120_40kW_3_90COP_R410A.mo b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Trane_EXW120_40kW_3_90COP_R410A.mo index eb9eddb6fa..bcedaa5df2 100644 --- a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Trane_EXW120_40kW_3_90COP_R410A.mo +++ b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Trane_EXW120_40kW_3_90COP_R410A.mo @@ -10,20 +10,20 @@ record Trane_EXW120_40kW_3_90COP_R410A = UACon = 4233.2477479, UAEva = 38367.2250194) "Calibrated parameters for Trane EXW120" - annotation ( defaultComponentPrefixes = "parameter", defaultComponentName="datHeaPum", preferredView="info", Documentation(info=" -

                        -Calibrated parameters for Trane EXW120. -

                        -", revisions=" -
                          -
                        • -March 6, 2017, by Massimo Cimmino:
                          -Calibrated parameters. -
                        • -
                        -")); +

                        + Calibrated parameters for Trane EXW120. +

                        + ",revisions=" +
                          +
                        • + March 6, 2017, by Massimo Cimmino:
                          + Calibrated parameters. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); diff --git a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Trane_EXW240_76kW_4_10COP_R410A.mo b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Trane_EXW240_76kW_4_10COP_R410A.mo index e307ffa3ec..3f346d5141 100644 --- a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Trane_EXW240_76kW_4_10COP_R410A.mo +++ b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Trane_EXW240_76kW_4_10COP_R410A.mo @@ -10,20 +10,20 @@ record Trane_EXW240_76kW_4_10COP_R410A = UACon = 14814.6977543, UAEva = 97189.7265209) "Calibrated parameters for Trane EXW240" - annotation ( defaultComponentPrefixes = "parameter", defaultComponentName="datHeaPum", preferredView="info", Documentation(info=" -

                        -Calibrated parameters for Trane EXW240. -

                        -", revisions=" -
                          -
                        • -March 6, 2017, by Massimo Cimmino:
                          -Calibrated parameters. -
                        • -
                        -")); +

                        + Calibrated parameters for Trane EXW240. +

                        + ",revisions=" +
                          +
                        • + March 6, 2017, by Massimo Cimmino:
                          + Calibrated parameters. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); diff --git a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Viessmann_BW301A21_28kW_5_94COP_R410A.mo b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Viessmann_BW301A21_28kW_5_94COP_R410A.mo index 33684036cb..c1110d02c1 100644 --- a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Viessmann_BW301A21_28kW_5_94COP_R410A.mo +++ b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Viessmann_BW301A21_28kW_5_94COP_R410A.mo @@ -15,7 +15,8 @@ record Viessmann_BW301A21_28kW_5_94COP_R410A = defaultComponentName="datHeaPum", preferredView="info", Documentation(info=" -

                        -Generated by Filip Jorissen on 2017-05-19. -

                        -")); +

                        + Generated by Filip Jorissen on 2017-05-19. +

                        + "), + __Dymola_LockedEditing="Model from IBPSA"); diff --git a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Viessmann_BW301A29_37kW_6_0COP_R410A.mo b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Viessmann_BW301A29_37kW_6_0COP_R410A.mo index 51cb68feb4..24a9159538 100644 --- a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Viessmann_BW301A29_37kW_6_0COP_R410A.mo +++ b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Viessmann_BW301A29_37kW_6_0COP_R410A.mo @@ -15,7 +15,8 @@ record Viessmann_BW301A29_37kW_6_0COP_R410A = defaultComponentName="datHeaPum", preferredView="info", Documentation(info=" -

                        -Generated by Filip Jorissen on 2017-05-19. -

                        -")); +

                        + Generated by Filip Jorissen on 2017-05-19. +

                        + "), + __Dymola_LockedEditing="Model from IBPSA"); diff --git a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Viessmann_BW301A45_58kW_5_50COP_R410A.mo b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Viessmann_BW301A45_58kW_5_50COP_R410A.mo index 828789df93..2c00f46080 100644 --- a/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Viessmann_BW301A45_58kW_5_50COP_R410A.mo +++ b/AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/Heating/Viessmann_BW301A45_58kW_5_50COP_R410A.mo @@ -15,7 +15,8 @@ record Viessmann_BW301A45_58kW_5_50COP_R410A = defaultComponentName="datHeaPum", preferredView="info", Documentation(info=" -

                        -Generated by Filip Jorissen on 2017-05-19. -

                        -")); +

                        + Generated by Filip Jorissen on 2017-05-19. +

                        + "), + __Dymola_LockedEditing="Model from IBPSA"); diff --git a/AixLib/Fluid/HeatPumps/Examples/Carnot_TCon.mo b/AixLib/Fluid/HeatPumps/Examples/Carnot_TCon.mo index b9b373f8e1..3c0803290f 100644 --- a/AixLib/Fluid/HeatPumps/Examples/Carnot_TCon.mo +++ b/AixLib/Fluid/HeatPumps/Examples/Carnot_TCon.mo @@ -5,14 +5,14 @@ model Carnot_TCon package Medium1 = AixLib.Media.Water "Medium model"; package Medium2 = AixLib.Media.Water "Medium model"; - parameter Modelica.SIunits.TemperatureDifference dTEva_nominal=-5 + parameter Modelica.Units.SI.TemperatureDifference dTEva_nominal=-5 "Temperature difference evaporator inlet-outlet"; - parameter Modelica.SIunits.TemperatureDifference dTCon_nominal=10 + parameter Modelica.Units.SI.TemperatureDifference dTCon_nominal=10 "Temperature difference condenser outlet-inlet"; - parameter Modelica.SIunits.HeatFlowRate QCon_flow_nominal = 100E3 + parameter Modelica.Units.SI.HeatFlowRate QCon_flow_nominal=100E3 "Evaporator heat flow rate"; - parameter Modelica.SIunits.MassFlowRate m1_flow_nominal= - QCon_flow_nominal/dTCon_nominal/4200 "Nominal mass flow rate at condenser"; + parameter Modelica.Units.SI.MassFlowRate m1_flow_nominal=QCon_flow_nominal/ + dTCon_nominal/4200 "Nominal mass flow rate at condenser"; AixLib.Fluid.HeatPumps.Carnot_TCon heaPum( redeclare package Medium1 = Medium1, @@ -60,8 +60,8 @@ model Carnot_TCon nPorts=1) annotation (Placement(transformation(extent={{60,28},{40,48}}))); - final parameter Modelica.SIunits.SpecificHeatCapacity cp2_default= - Medium2.specificHeatCapacityCp(Medium2.setState_pTX( + final parameter Modelica.Units.SI.SpecificHeatCapacity cp2_default= + Medium2.specificHeatCapacityCp(Medium2.setState_pTX( Medium2.p_default, Medium2.T_default, Medium2.X_default)) @@ -95,25 +95,26 @@ __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/HeatPum "Simulate and plot"), Documentation( info=" -

                        -Example that simulates a chiller whose efficiency is scaled based on the -Carnot cycle. -The chiller takes as an input the evaporator leaving water temperature. -The condenser mass flow rate is computed in such a way that it has -a temperature difference equal to dTEva_nominal. -

                        -", +

                        + Example that simulates a chiller whose efficiency is scaled based on the + Carnot cycle. + The chiller takes as an input the evaporator leaving water temperature. + The condenser mass flow rate is computed in such a way that it has + a temperature difference equal to dTEva_nominal. +

                        + ", revisions=" -
                          -
                        • -May 2, 2019, by Jianjun Hu:
                          -Replaced fluid source. This is for - #1072. -
                        • -
                        • -November 25, 2015, by Michael Wetter:
                          -First implementation. -
                        • -
                        -")); +
                          +
                        • + May 2, 2019, by Jianjun Hu:
                          + Replaced fluid source. This is for + #1072. +
                        • +
                        • + November 25, 2015, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end Carnot_TCon; diff --git a/AixLib/Fluid/HeatPumps/Examples/Carnot_y.mo b/AixLib/Fluid/HeatPumps/Examples/Carnot_y.mo index 0aad05b912..4739f81aa0 100644 --- a/AixLib/Fluid/HeatPumps/Examples/Carnot_y.mo +++ b/AixLib/Fluid/HeatPumps/Examples/Carnot_y.mo @@ -5,17 +5,17 @@ model Carnot_y "Test model for heat pump based on Carnot efficiency" package Medium2 = AixLib.Media.Water "Medium model"; parameter Real COP_nominal = 6 "Nominal COP"; - parameter Modelica.SIunits.Power P_nominal=10E3 + parameter Modelica.Units.SI.Power P_nominal=10E3 "Nominal compressor power (at y=1)"; - parameter Modelica.SIunits.TemperatureDifference dTEva_nominal=-10 + parameter Modelica.Units.SI.TemperatureDifference dTEva_nominal=-10 "Temperature difference evaporator outlet-inlet"; - parameter Modelica.SIunits.TemperatureDifference dTCon_nominal=10 + parameter Modelica.Units.SI.TemperatureDifference dTCon_nominal=10 "Temperature difference condenser outlet-inlet"; - parameter Modelica.SIunits.MassFlowRate m2_flow_nominal= - -P_nominal*(COP_nominal-1)/cp2_default/dTEva_nominal + parameter Modelica.Units.SI.MassFlowRate m2_flow_nominal=-P_nominal*( + COP_nominal - 1)/cp2_default/dTEva_nominal "Nominal mass flow rate at chilled water side"; - parameter Modelica.SIunits.MassFlowRate m1_flow_nominal= - P_nominal*COP_nominal/cp1_default/dTCon_nominal + parameter Modelica.Units.SI.MassFlowRate m1_flow_nominal=P_nominal* + COP_nominal/cp1_default/dTCon_nominal "Nominal mass flow rate at condenser water wide"; AixLib.Fluid.HeatPumps.Carnot_y heaPum( redeclare package Medium1 = Medium1, @@ -70,15 +70,15 @@ model Carnot_y "Test model for heat pump based on Carnot efficiency" startTime=900, offset=273.15 + 15) "Evaporator inlet temperature" annotation (Placement(transformation(extent={{50,-40},{70,-20}}))); - final parameter Modelica.SIunits.SpecificHeatCapacity cp1_default= - Medium1.specificHeatCapacityCp(Medium1.setState_pTX( + final parameter Modelica.Units.SI.SpecificHeatCapacity cp1_default= + Medium1.specificHeatCapacityCp(Medium1.setState_pTX( Medium1.p_default, Medium1.T_default, Medium1.X_default)) "Specific heat capacity of medium 2 at default medium state"; - final parameter Modelica.SIunits.SpecificHeatCapacity cp2_default= - Medium2.specificHeatCapacityCp(Medium2.setState_pTX( + final parameter Modelica.Units.SI.SpecificHeatCapacity cp2_default= + Medium2.specificHeatCapacityCp(Medium2.setState_pTX( Medium2.p_default, Medium2.T_default, Medium2.X_default)) @@ -116,36 +116,37 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/HeatPumps/Examples/Carnot_y.mos" "Simulate and plot"), Documentation(revisions=" -
                          -
                        • -May 15, 2019, by Jianjun Hu:
                          -Replaced fluid source. This is for - #1072. -
                        • -
                        • -November 25, 2015 by Michael Wetter:
                          -Changed sign of dTEva_nominal to be consistent. -
                        • -
                        • -December 22, 2014 by Michael Wetter:
                          -Removed Modelica.Fluid.System -to address issue -#311. -
                        • -
                        • -March 26, 2013 by Michael Wetter:
                          -Removed assignment of parameter that had attribute fixed=false. -
                        • -
                        • -March 3, 2009 by Michael Wetter:
                          -First implementation. -
                        • -
                        -", info=" -

                        -Example that simulates a heat pump whose efficiency is scaled based on the -Carnot cycle. -The control signal of the heat pump is the compressor speed. -

                        -")); +
                          +
                        • + May 15, 2019, by Jianjun Hu:
                          + Replaced fluid source. This is for + #1072. +
                        • +
                        • + November 25, 2015 by Michael Wetter:
                          + Changed sign of dTEva_nominal to be consistent. +
                        • +
                        • + December 22, 2014 by Michael Wetter:
                          + Removed Modelica.Fluid.System + to address issue + #311. +
                        • +
                        • + March 26, 2013 by Michael Wetter:
                          + Removed assignment of parameter that had attribute fixed=false. +
                        • +
                        • + March 3, 2009 by Michael Wetter:
                          + First implementation. +
                        • +
                        + ",info=" +

                        + Example that simulates a heat pump whose efficiency is scaled based on the + Carnot cycle. + The control signal of the heat pump is the compressor speed. +

                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end Carnot_y; diff --git a/AixLib/Fluid/HeatPumps/Examples/HeatPump.mo b/AixLib/Fluid/HeatPumps/Examples/HeatPump.mo index 02fe50dc18..184793fe7a 100644 --- a/AixLib/Fluid/HeatPumps/Examples/HeatPump.mo +++ b/AixLib/Fluid/HeatPumps/Examples/HeatPump.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.HeatPumps.Examples; +within AixLib.Fluid.HeatPumps.Examples; model HeatPump "Example for the reversible heat pump model." extends Modelica.Icons.Example; @@ -99,7 +99,7 @@ model HeatPump "Example for the reversible heat pump model." rotation=90, origin={7,29}))); Modelica.Blocks.Sources.Sine sine( - freqHz=1/3600, + f=1/3600, amplitude=3000, offset=3000) annotation (Placement(transformation(extent={{76,26},{84,34}}))); diff --git a/AixLib/Fluid/HeatPumps/Examples/ScrollWaterToWater_OneRoomRadiator.mo b/AixLib/Fluid/HeatPumps/Examples/ScrollWaterToWater_OneRoomRadiator.mo index ed4bec4805..f7c4fb8e3b 100644 --- a/AixLib/Fluid/HeatPumps/Examples/ScrollWaterToWater_OneRoomRadiator.mo +++ b/AixLib/Fluid/HeatPumps/Examples/ScrollWaterToWater_OneRoomRadiator.mo @@ -7,19 +7,18 @@ model ScrollWaterToWater_OneRoomRadiator replaceable package MediumW = AixLib.Media.Water "Medium model for water"; - parameter Modelica.SIunits.HeatFlowRate Q_flow_nominal = 20000 + parameter Modelica.Units.SI.HeatFlowRate Q_flow_nominal=20000 "Nominal heat flow rate of radiator"; - parameter Modelica.SIunits.Temperature TRadSup_nominal = 273.15+50 + parameter Modelica.Units.SI.Temperature TRadSup_nominal=273.15 + 50 "Radiator nominal supply water temperature"; - parameter Modelica.SIunits.Temperature TRadRet_nominal = 273.15+45 + parameter Modelica.Units.SI.Temperature TRadRet_nominal=273.15 + 45 "Radiator nominal return water temperature"; - parameter Modelica.SIunits.MassFlowRate mHeaPum_flow_nominal= - Q_flow_nominal/4200/5 - "Heat pump nominal mass flow rate"; - parameter Modelica.SIunits.Volume V=6*10*3 "Room volume"; - parameter Modelica.SIunits.MassFlowRate mA_flow_nominal = V*1.2*6/3600 + parameter Modelica.Units.SI.MassFlowRate mHeaPum_flow_nominal=Q_flow_nominal/ + 4200/5 "Heat pump nominal mass flow rate"; + parameter Modelica.Units.SI.Volume V=6*10*3 "Room volume"; + parameter Modelica.Units.SI.MassFlowRate mA_flow_nominal=V*1.2*6/3600 "Nominal mass flow rate"; - parameter Modelica.SIunits.HeatFlowRate QRooInt_flow = 4000 + parameter Modelica.Units.SI.HeatFlowRate QRooInt_flow=4000 "Internal heat gains of the room"; //------------------------------------------------------------------------------// @@ -72,7 +71,6 @@ model ScrollWaterToWater_OneRoomRadiator AixLib.Fluid.Movers.FlowControlled_m_flow pumHeaPum( redeclare package Medium = MediumW, m_flow_nominal=mHeaPum_flow_nominal, - y_start=1, m_flow_start=0.85, T_start=TRadSup_nominal, nominalValuesDefineDefaultPressureCurve=true, @@ -127,7 +125,6 @@ model ScrollWaterToWater_OneRoomRadiator AixLib.Fluid.Movers.FlowControlled_m_flow pumHeaPumSou( redeclare package Medium = MediumW, - y_start=1, m_flow_start=0.85, m_flow_nominal=mHeaPum_flow_nominal, nominalValuesDefineDefaultPressureCurve=true, @@ -290,40 +287,46 @@ equation connect(preSou.ports[1], temRet.port_b) annotation (Line(points={{70,-120},{60, -120},{60,-30}}, color={0,127,255})); annotation (Documentation(info=" -

                        -Example that simulates one room equipped with a radiator. Hot water is produced -by a 24 kW nominal capacity heat pump. The source side water temperature to the -heat pump is constant at 10°C. -

                        -

                        -The heat pump is turned on when the room temperature falls below -19°C and turned -off when the room temperature rises above 21°C. -

                        -", revisions=" -
                          -
                        • -April 21, 2021, by Michael Wetter:
                          -Corrected error in calculation of design mass flow rate.
                          -This is for -#2458. -
                        • -
                        • -May 2, 2019, by Jianjun Hu:
                          -Replaced fluid source. This is for - #1072. -
                        • -
                        • -March 3, 2017, by Michael Wetter:
                          -Changed mass flow test to use a hysteresis as a threshold test -can cause chattering. -
                        • -
                        • -January 27, 2017, by Massimo Cimmino:
                          -First implementation. -
                        • -
                        -"), +

                        + Example that simulates one room equipped with a radiator. Hot water is produced + by a 24 kW nominal capacity heat pump. The source side water temperature to the + heat pump is constant at 10°C. +

                        +

                        + The heat pump is turned on when the room temperature falls below + 19°C and turned + off when the room temperature rises above 21°C. +

                        + ",revisions=" +
                          +
                        • + July 22, 2021, by Michael Wetter:
                          + Removed assignments pumHeaPum(y_start=1) and pumHeaPumSou(y_start=1).
                          + This is for + #1498. +
                        • +
                        • + April 21, 2021, by Michael Wetter:
                          + Corrected error in calculation of design mass flow rate.
                          + This is for + #2458. +
                        • +
                        • + May 2, 2019, by Jianjun Hu:
                          + Replaced fluid source. This is for + #1072. +
                        • +
                        • + March 3, 2017, by Michael Wetter:
                          + Changed mass flow test to use a hysteresis as a threshold test + can cause chattering. +
                        • +
                        • + January 27, 2017, by Massimo Cimmino:
                          + First implementation. +
                        • +
                        + "), Diagram(coordinateSystem(preserveAspectRatio=false,extent={{-240,-220},{100, 100}})), __Dymola_Commands(file= @@ -331,5 +334,6 @@ First implementation. "Simulate and plot"), experiment( StopTime=172800, - Tolerance=1e-08)); + Tolerance=1e-08), + __Dymola_LockedEditing="Model from IBPSA"); end ScrollWaterToWater_OneRoomRadiator; diff --git a/AixLib/Fluid/HeatPumps/Examples/package.mo b/AixLib/Fluid/HeatPumps/Examples/package.mo index 38ac7d52e8..3f1563bb1d 100644 --- a/AixLib/Fluid/HeatPumps/Examples/package.mo +++ b/AixLib/Fluid/HeatPumps/Examples/package.mo @@ -1,6 +1,7 @@ within AixLib.Fluid.HeatPumps; package Examples "Collection of models that illustrate model use and test models" extends Modelica.Icons.ExamplesPackage; + annotation (preferredView="info", Documentation(info="

                        This package contains examples for the use of models that can be found in diff --git a/AixLib/Fluid/HeatPumps/HeatPump.mo b/AixLib/Fluid/HeatPumps/HeatPump.mo index 0fc1415bf4..2e8a63325a 100644 --- a/AixLib/Fluid/HeatPumps/HeatPump.mo +++ b/AixLib/Fluid/HeatPumps/HeatPump.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.HeatPumps; +within AixLib.Fluid.HeatPumps; model HeatPump "Grey-box model for reversible heat pumps using a black-box to simulate the refrigeration cycle" extends AixLib.Fluid.BaseClasses.PartialReversibleVapourCompressionMachine( diff --git a/AixLib/Fluid/HeatPumps/ReciprocatingWaterToWater.mo b/AixLib/Fluid/HeatPumps/ReciprocatingWaterToWater.mo index 986e1c5377..128bcc4d44 100644 --- a/AixLib/Fluid/HeatPumps/ReciprocatingWaterToWater.mo +++ b/AixLib/Fluid/HeatPumps/ReciprocatingWaterToWater.mo @@ -23,77 +23,78 @@ model ReciprocatingWaterToWater iconTransformation(extent={{100,-100},{120,-80}})), defaultComponentName="heaPum", Documentation(info=" -

                        -Model for a water to water heat pump with a reciprocating compressor, as -described in Jin (2002). The thermodynamic heat pump cycle is represented below. -

                        -

                        -\"image\" -

                        -

                        -The rate of heat transferred to the evaporator is given by: -

                        -

                        -Q̇Eva = ṁref ( hVap(TEva) - hLiq(TCon) ). -

                        -

                        -The power consumed by the compressor is given by a linear efficiency relation: -

                        -

                        -P = PTheoretical / η + PLoss,constant. -

                        -

                        -Heat transfer in the evaporator and condenser is calculated using an -ε-NTU method, assuming constant refrigerant temperature and constant heat -transfer coefficient between fluid and refrigerant. -

                        -

                        -Variable speed is acheived by multiplying the full load piston displacement -by the normalized compressor speed. The power and heat transfer rates are forced -to zero if the resulting heat pump state has higher evaporating pressure than -condensing pressure. -

                        -

                        Options

                        -

                        -Parameters TConMax and TEvaMin -may be used to set an upper or lower bound for the -condenser and evaporator. -The compressor is disabled when these conditions -are not satisfied, or when the -evaporator temperature is larger -than the condenser temperature. -This mimics the temperature protection -of heat pumps and moreover it avoids -non-converging algebraic loops of equations, -or freezing of evaporator medium. -This option can be disabled by setting -enable_temperature_protection = false. -

                        -

                        Assumptions and limitations

                        -

                        -The compression process is assumed isentropic. The thermal energy -of superheating is ignored in the evaluation of the heat transferred to the refrigerant -in the evaporator. There is no supercooling. -

                        -

                        References

                        -

                        -H. Jin. - -Parameter estimation based models of water source heat pumps. - -PhD Thesis. Oklahoma State University. Stillwater, Oklahoma, USA. 2012. -

                        -", revisions=" -
                          -
                        • -May 30, 2017, by Filip Jorissen:
                          -Revised documentation for temperature protection. -See #769. -
                        • -
                        • -November 14, 2016, by Massimo Cimmino:
                          -First implementation. -
                        • -
                        -")); +

                        + Model for a water to water heat pump with a reciprocating compressor, as + described in Jin (2002). The thermodynamic heat pump cycle is represented below. +

                        +

                        + \"image\" +

                        +

                        + The rate of heat transferred to the evaporator is given by: +

                        +

                        + Q̇Eva = ṁref ( hVap(TEva) - hLiq(TCon) ). +

                        +

                        + The power consumed by the compressor is given by a linear efficiency relation: +

                        +

                        + P = PTheoretical / η + PLoss,constant. +

                        +

                        + Heat transfer in the evaporator and condenser is calculated using an + ε-NTU method, assuming constant refrigerant temperature and constant heat + transfer coefficient between fluid and refrigerant. +

                        +

                        + Variable speed is acheived by multiplying the full load piston displacement + by the normalized compressor speed. The power and heat transfer rates are forced + to zero if the resulting heat pump state has higher evaporating pressure than + condensing pressure. +

                        +

                        Options

                        +

                        + Parameters TConMax and TEvaMin + may be used to set an upper or lower bound for the + condenser and evaporator. + The compressor is disabled when these conditions + are not satisfied, or when the + evaporator temperature is larger + than the condenser temperature. + This mimics the temperature protection + of heat pumps and moreover it avoids + non-converging algebraic loops of equations, + or freezing of evaporator medium. + This option can be disabled by setting + enable_temperature_protection = false. +

                        +

                        Assumptions and limitations

                        +

                        + The compression process is assumed isentropic. The thermal energy + of superheating is ignored in the evaluation of the heat transferred to the refrigerant + in the evaporator. There is no supercooling. +

                        +

                        References

                        +

                        + H. Jin. + + Parameter estimation based models of water source heat pumps. + + PhD Thesis. Oklahoma State University. Stillwater, Oklahoma, USA. 2002. +

                        + ",revisions=" +
                          +
                        • + May 30, 2017, by Filip Jorissen:
                          + Revised documentation for temperature protection. + See #769. +
                        • +
                        • + November 14, 2016, by Massimo Cimmino:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end ReciprocatingWaterToWater; diff --git a/AixLib/Fluid/HeatPumps/ScrollWaterToWater.mo b/AixLib/Fluid/HeatPumps/ScrollWaterToWater.mo index 7cdfea153d..db0c74585f 100644 --- a/AixLib/Fluid/HeatPumps/ScrollWaterToWater.mo +++ b/AixLib/Fluid/HeatPumps/ScrollWaterToWater.mo @@ -21,87 +21,88 @@ model ScrollWaterToWater iconTransformation(extent={{100,-100},{120,-80}})), defaultComponentName="heaPum", Documentation(info=" -

                        -Model for a water to water heat pump with a scroll compressor, as described -in Jin (2002). The thermodynamic heat pump cycle is represented below. -

                        -

                        -\"image\" -

                        -

                        -The rate of heat transferred to the evaporator is given by: -

                        -

                        -Q̇Eva = ṁref ( hVap(TEva) - hLiq(TCon) ). -

                        -

                        -The power consumed by the compressor is given by a linear efficiency relation: -

                        -

                        -P = PTheoretical / η + PLoss,constant. -

                        -

                        -Heat transfer in the evaporator and condenser is calculated using an -ε-NTU method, assuming constant refrigerant temperature and constant heat -transfer coefficient between fluid and refrigerant. -

                        -

                        -Variable speed is achieved by multiplying the full load suction volume flow rate -by the normalized compressor speed. The power and heat transfer rates are forced -to zero if the resulting heat pump state has higher evaporating pressure than -condensing pressure. -

                        -

                        -The model parameters are obtained by calibration of the heat pump model to -manufacturer performance data. Calibrated model parameters for various heat -pumps from different manufacturers are found in - -AixLib.Fluid.HeatPumps.Data.ScrollWaterToWater. The calibrated model is -located in - -AixLib.Fluid.HeatPumps.Calibration.ScrollWaterToWater. -

                        -

                        Options

                        -

                        -Parameters TConMax and TEvaMin -may be used to set an upper or lower bound for the -condenser and evaporator. -The compressor is disabled when these conditions -are not satisfied, or when the -evaporator temperature is larger -than the condenser temperature. -This mimics the temperature protection -of heat pumps and moreover it avoids -non-converging algebraic loops of equations, -or freezing of evaporator medium. -This option can be disabled by setting -enable_temperature_protection = false. -

                        -

                        Assumptions and limitations

                        -

                        -The compression process is assumed isentropic. The thermal energy -of superheating is ignored in the evaluation of the heat transferred to the refrigerant -in the evaporator. There is no supercooling. -

                        -

                        References

                        -

                        -H. Jin. - -Parameter estimation based models of water source heat pumps. - -PhD Thesis. Oklahoma State University. Stillwater, Oklahoma, USA. 2012. -

                        -", revisions=" -
                          -
                        • -May 30, 2017, by Filip Jorissen:
                          -Revised documentation for temperature protection. -See #769. -
                        • -
                        • -November 11, 2016, by Massimo Cimmino:
                          -First implementation. -
                        • -
                        -")); +

                        + Model for a water to water heat pump with a scroll compressor, as described + in Jin (2002). The thermodynamic heat pump cycle is represented below. +

                        +

                        + \"image\" +

                        +

                        + The rate of heat transferred to the evaporator is given by: +

                        +

                        + Q̇Eva = ṁref ( hVap(TEva) - hLiq(TCon) ). +

                        +

                        + The power consumed by the compressor is given by a linear efficiency relation: +

                        +

                        + P = PTheoretical / η + PLoss,constant. +

                        +

                        + Heat transfer in the evaporator and condenser is calculated using an + ε-NTU method, assuming constant refrigerant temperature and constant heat + transfer coefficient between fluid and refrigerant. +

                        +

                        + Variable speed is achieved by multiplying the full load suction volume flow rate + by the normalized compressor speed. The power and heat transfer rates are forced + to zero if the resulting heat pump state has higher evaporating pressure than + condensing pressure. +

                        +

                        + The model parameters are obtained by calibration of the heat pump model to + manufacturer performance data. Calibrated model parameters for various heat + pumps from different manufacturers are found in + + AixLib.Fluid.HeatPumps.Data.ScrollWaterToWater. The calibrated model is + located in + + AixLib.Fluid.HeatPumps.Calibration.ScrollWaterToWater. +

                        +

                        Options

                        +

                        + Parameters TConMax and TEvaMin + may be used to set an upper or lower bound for the + condenser and evaporator. + The compressor is disabled when these conditions + are not satisfied, or when the + evaporator temperature is larger + than the condenser temperature. + This mimics the temperature protection + of heat pumps and moreover it avoids + non-converging algebraic loops of equations, + or freezing of evaporator medium. + This option can be disabled by setting + enable_temperature_protection = false. +

                        +

                        Assumptions and limitations

                        +

                        + The compression process is assumed isentropic. The thermal energy + of superheating is ignored in the evaluation of the heat transferred to the refrigerant + in the evaporator. There is no supercooling. +

                        +

                        References

                        +

                        + H. Jin. + + Parameter estimation based models of water source heat pumps. + + PhD Thesis. Oklahoma State University. Stillwater, Oklahoma, USA. 2002. +

                        + ",revisions=" +
                          +
                        • + May 30, 2017, by Filip Jorissen:
                          + Revised documentation for temperature protection. + See #769. +
                        • +
                        • + November 11, 2016, by Massimo Cimmino:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end ScrollWaterToWater; diff --git a/AixLib/Fluid/HeatPumps/Validation/Carnot_TCon_LimitedCapacity.mo b/AixLib/Fluid/HeatPumps/Validation/Carnot_TCon_LimitedCapacity.mo index 3d0c143c2e..9ef91665fb 100644 --- a/AixLib/Fluid/HeatPumps/Validation/Carnot_TCon_LimitedCapacity.mo +++ b/AixLib/Fluid/HeatPumps/Validation/Carnot_TCon_LimitedCapacity.mo @@ -6,18 +6,19 @@ model Carnot_TCon_LimitedCapacity __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/HeatPumps/Validation/Carnot_TCon_LimitedCapacity.mos" "Simulate and plot"), Documentation(info=" -

                        -This example extends from - -AixLib.Fluid.HeatPumps.Examples.Carnot_TCon -but limits the heating capacity. -

                        -", revisions=" -
                          -
                        • -February 5, 2016, by Michael Wetter:
                          -First implementation. -
                        • -
                        -")); +

                        + This example extends from + + AixLib.Fluid.HeatPumps.Examples.Carnot_TCon + but limits the heating capacity. +

                        + ",revisions=" +
                          +
                        • + February 5, 2016, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end Carnot_TCon_LimitedCapacity; diff --git a/AixLib/Fluid/HeatPumps/Validation/Carnot_TCon_LowTemperature.mo b/AixLib/Fluid/HeatPumps/Validation/Carnot_TCon_LowTemperature.mo index 95a9ae0bc1..2a700e7c2e 100644 --- a/AixLib/Fluid/HeatPumps/Validation/Carnot_TCon_LowTemperature.mo +++ b/AixLib/Fluid/HeatPumps/Validation/Carnot_TCon_LowTemperature.mo @@ -15,23 +15,24 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/HeatPumps/Validation/Carnot_TCon_LowTemperature.mos" "Simulate and plot"), Documentation(info=" -

                        -This example extends from - -AixLib.Fluid.HeatPumps.Examples.Carnot_TCon -but decreases the set point for the leaving condenser temperature -to be below its inlet temperature, in which case the model provides no heating. -Towards the end of the simulation, the inlet temperature of the condenser is decreased -to be below the evaporator temperature. In this domain, the model requires cooling -again. While this is not a meaningful operating point for the model, the example -verifies that it robustly simulates this regime. -

                        -", revisions=" -
                          -
                        • -February 10, 2016, by Michael Wetter:
                          -First implementation. -
                        • -
                        -")); +

                        + This example extends from + + AixLib.Fluid.HeatPumps.Examples.Carnot_TCon + but decreases the set point for the leaving condenser temperature + to be below its inlet temperature, in which case the model provides no heating. + Towards the end of the simulation, the inlet temperature of the condenser is decreased + to be below the evaporator temperature. In this domain, the model requires cooling + again. While this is not a meaningful operating point for the model, the example + verifies that it robustly simulates this regime. +

                        + ",revisions=" +
                          +
                        • + February 10, 2016, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end Carnot_TCon_LowTemperature; diff --git a/AixLib/Fluid/HeatPumps/Validation/Carnot_TCon_etaPL.mo b/AixLib/Fluid/HeatPumps/Validation/Carnot_TCon_etaPL.mo index ea07af85f4..4aeda707ae 100644 --- a/AixLib/Fluid/HeatPumps/Validation/Carnot_TCon_etaPL.mo +++ b/AixLib/Fluid/HeatPumps/Validation/Carnot_TCon_etaPL.mo @@ -8,18 +8,19 @@ model Carnot_TCon_etaPL __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/HeatPumps/Validation/Carnot_TCon_etaPL.mos" "Simulate and plot"), Documentation(info=" -

                        -This example extends from - -AixLib.Fluid.HeatPumps.Examples.Carnot_TCon -but has a part load efficiency that varies with the load. -

                        -", revisions=" -
                          -
                        • -February 10, 2016, by Michael Wetter:
                          -First implementation. -
                        • -
                        -")); +

                        + This example extends from + + AixLib.Fluid.HeatPumps.Examples.Carnot_TCon + but has a part load efficiency that varies with the load. +

                        + ",revisions=" +
                          +
                        • + February 10, 2016, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end Carnot_TCon_etaPL; diff --git a/AixLib/Fluid/HeatPumps/Validation/Carnot_TCon_reverseFlow.mo b/AixLib/Fluid/HeatPumps/Validation/Carnot_TCon_reverseFlow.mo index bac2a2cc5b..88c7d1ab9f 100644 --- a/AixLib/Fluid/HeatPumps/Validation/Carnot_TCon_reverseFlow.mo +++ b/AixLib/Fluid/HeatPumps/Validation/Carnot_TCon_reverseFlow.mo @@ -5,21 +5,21 @@ model Carnot_TCon_reverseFlow package Medium1 = AixLib.Media.Water "Medium model"; package Medium2 = AixLib.Media.Water "Medium model"; - parameter Modelica.SIunits.TemperatureDifference dTEva_nominal=-10 + parameter Modelica.Units.SI.TemperatureDifference dTEva_nominal=-10 "Temperature difference evaporator inlet-outlet"; - parameter Modelica.SIunits.TemperatureDifference dTCon_nominal=10 + parameter Modelica.Units.SI.TemperatureDifference dTCon_nominal=10 "Temperature difference condenser outlet-inlet"; - parameter Modelica.SIunits.HeatFlowRate QCon_flow_nominal = 100E3 + parameter Modelica.Units.SI.HeatFlowRate QCon_flow_nominal=100E3 "Evaporator heat flow rate"; - parameter Modelica.SIunits.MassFlowRate m1_flow_nominal= - QCon_flow_nominal/dTCon_nominal/4200 "Nominal mass flow rate at condenser"; + parameter Modelica.Units.SI.MassFlowRate m1_flow_nominal=QCon_flow_nominal/ + dTCon_nominal/4200 "Nominal mass flow rate at condenser"; Modelica.Blocks.Sources.Constant TConLvg(k=273.15 + 40) "Control signal for condenser leaving temperature" annotation (Placement(transformation(extent={{-50,30},{-30,50}}))); - final parameter Modelica.SIunits.SpecificHeatCapacity cp2_default= - Medium2.specificHeatCapacityCp(Medium2.setState_pTX( + final parameter Modelica.Units.SI.SpecificHeatCapacity cp2_default= + Medium2.specificHeatCapacityCp(Medium2.setState_pTX( Medium2.p_default, Medium2.T_default, Medium2.X_default)) @@ -101,28 +101,29 @@ __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/HeatPum "Simulate and plot"), Documentation( info=" -

                        -Example that simulates a heat pump whose efficiency is scaled based on the -Carnot cycle. -The heat pump takes as an input the condenser leaving water temperature. -The condenser mass flow rate is computed in such a way that it has -a temperature difference equal to dTCon_nominal. -

                        -

                        -This example checks the correct behavior if a mass flow rate attains zero. -

                        -", +

                        + Example that simulates a heat pump whose efficiency is scaled based on the + Carnot cycle. + The heat pump takes as an input the condenser leaving water temperature. + The condenser mass flow rate is computed in such a way that it has + a temperature difference equal to dTCon_nominal. +

                        +

                        + This example checks the correct behavior if a mass flow rate attains zero. +

                        + ", revisions=" -
                          -
                        • -May 15, 2019, by Jianjun Hu:
                          -Replaced fluid source. This is for - #1072. -
                        • -
                        • -November 25, 2015, by Michael Wetter:
                          -First implementation. -
                        • -
                        -")); +
                          +
                        • + May 15, 2019, by Jianjun Hu:
                          + Replaced fluid source. This is for + #1072. +
                        • +
                        • + November 25, 2015, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end Carnot_TCon_reverseFlow; diff --git a/AixLib/Fluid/HeatPumps/Validation/Carnot_y_etaCar.mo b/AixLib/Fluid/HeatPumps/Validation/Carnot_y_etaCar.mo index 58dddc30ce..5a16dc3585 100644 --- a/AixLib/Fluid/HeatPumps/Validation/Carnot_y_etaCar.mo +++ b/AixLib/Fluid/HeatPumps/Validation/Carnot_y_etaCar.mo @@ -9,18 +9,19 @@ model Carnot_y_etaCar __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/HeatPumps/Validation/Carnot_y_etaCar.mos" "Simulate and plot"), Documentation(info=" -

                        -This example extends from - -AixLib.Fluid.HeatPumps.Examples.Carnot_y -but uses the parameter etaCar instead of COP_nominal. -

                        -", revisions=" -
                          -
                        • -February 5, 2016, by Michael Wetter:
                          -First implementation. -
                        • -
                        -")); +

                        + This example extends from + + AixLib.Fluid.HeatPumps.Examples.Carnot_y + but uses the parameter etaCar instead of COP_nominal. +

                        + ",revisions=" +
                          +
                        • + February 5, 2016, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end Carnot_y_etaCar; diff --git a/AixLib/Fluid/HeatPumps/Validation/Carnot_y_etaPL.mo b/AixLib/Fluid/HeatPumps/Validation/Carnot_y_etaPL.mo index 0e8f680038..7c5f12e860 100644 --- a/AixLib/Fluid/HeatPumps/Validation/Carnot_y_etaPL.mo +++ b/AixLib/Fluid/HeatPumps/Validation/Carnot_y_etaPL.mo @@ -9,19 +9,19 @@ model Carnot_y_etaPL __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/HeatPumps/Validation/Carnot_y_etaPL.mos" "Simulate and plot"), Documentation(info=" -

                        -This example extends from - -AixLib.Fluid.HeatPumps.Examples.Carnot_y -but uses a part load efficiency curve that is different from 1. -

                        -", revisions=" -
                          -
                        • -February 10, 2016, by Michael Wetter:
                          -First implementation. -
                        • -
                        -")); - +

                        + This example extends from + + AixLib.Fluid.HeatPumps.Examples.Carnot_y + but uses a part load efficiency curve that is different from 1. +

                        + ",revisions=" +
                          +
                        • + February 10, 2016, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end Carnot_y_etaPL; diff --git a/AixLib/Fluid/HeatPumps/Validation/ReciprocatingWaterToWater_Dynamic.mo b/AixLib/Fluid/HeatPumps/Validation/ReciprocatingWaterToWater_Dynamic.mo index 919b6f6037..44716be078 100644 --- a/AixLib/Fluid/HeatPumps/Validation/ReciprocatingWaterToWater_Dynamic.mo +++ b/AixLib/Fluid/HeatPumps/Validation/ReciprocatingWaterToWater_Dynamic.mo @@ -5,14 +5,14 @@ model ReciprocatingWaterToWater_Dynamic package Medium1 = AixLib.Media.Water "Medium model"; package Medium2 = AixLib.Media.Water "Medium model"; - parameter Modelica.SIunits.MassFlowRate m1_flow_nominal = 0.47 + parameter Modelica.Units.SI.MassFlowRate m1_flow_nominal=0.47 "Nominal mass flow rate on the condenser side"; - parameter Modelica.SIunits.MassFlowRate m2_flow_nominal = 0.47 + parameter Modelica.Units.SI.MassFlowRate m2_flow_nominal=0.47 "Nominal mass flow rate on the evaporator side"; - parameter Modelica.SIunits.MassFlowRate flowSource = 0.79 + parameter Modelica.Units.SI.MassFlowRate flowSource=0.79 "Mass flow rate on the condenser side"; - parameter Modelica.SIunits.MassFlowRate flowLoad = 0.47 + parameter Modelica.Units.SI.MassFlowRate flowLoad=0.47 "Mass flow rate on the evaporator side"; AixLib.Fluid.Sources.Boundary_pT sin2( @@ -165,28 +165,29 @@ equation experiment( Tolerance=1e-6, StopTime=1000), Documentation(info=" -

                        -Model that demonstrates the use of the - -AixLib.Fluid.HeatPumps.ReciprocatingWaterToWater heat pump model. This -validation case also tests the stage input to the heat pump models. -

                        -

                        -With constant inlet source and load water temperatures, the heat pumps cycle on -and off. The apparent capacity of the dynamic model is compared to the -steady-state model and to the condenser heat transfer rate. -

                        -", revisions=" -
                          -
                        • -May 15, 2019, by Jianjun Hu:
                          -Replaced fluid source. This is for - #1072. -
                        • -
                        • -November 14, 2016, by Massimo Cimmino:
                          -First implementation. -
                        • -
                        -")); +

                        + Model that demonstrates the use of the + + AixLib.Fluid.HeatPumps.ReciprocatingWaterToWater heat pump model. This + validation case also tests the stage input to the heat pump models. +

                        +

                        + With constant inlet source and load water temperatures, the heat pumps cycle on + and off. The apparent capacity of the dynamic model is compared to the + steady-state model and to the condenser heat transfer rate. +

                        + ",revisions=" +
                          +
                        • + May 15, 2019, by Jianjun Hu:
                          + Replaced fluid source. This is for + #1072. +
                        • +
                        • + November 14, 2016, by Massimo Cimmino:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end ReciprocatingWaterToWater_Dynamic; diff --git a/AixLib/Fluid/HeatPumps/Validation/ReciprocatingWaterToWater_ScalingFactor.mo b/AixLib/Fluid/HeatPumps/Validation/ReciprocatingWaterToWater_ScalingFactor.mo index 2143ac5de5..71ddbe670e 100644 --- a/AixLib/Fluid/HeatPumps/Validation/ReciprocatingWaterToWater_ScalingFactor.mo +++ b/AixLib/Fluid/HeatPumps/Validation/ReciprocatingWaterToWater_ScalingFactor.mo @@ -5,14 +5,14 @@ model ReciprocatingWaterToWater_ScalingFactor package Medium1 = AixLib.Media.Water "Medium model"; package Medium2 = AixLib.Media.Water "Medium model"; - parameter Modelica.SIunits.MassFlowRate m1_flow_nominal = 0.47 + parameter Modelica.Units.SI.MassFlowRate m1_flow_nominal=0.47 "Nominal mass flow rate on the condenser side"; - parameter Modelica.SIunits.MassFlowRate m2_flow_nominal = 0.47 + parameter Modelica.Units.SI.MassFlowRate m2_flow_nominal=0.47 "Nominal mass flow rate on the evaporator side"; - parameter Modelica.SIunits.MassFlowRate flowSource = 0.79 + parameter Modelica.Units.SI.MassFlowRate flowSource=0.79 "Mass flow rate on the condenser side"; - parameter Modelica.SIunits.MassFlowRate flowLoad = 0.47 + parameter Modelica.Units.SI.MassFlowRate flowLoad=0.47 "Mass flow rate on the evaporator side"; parameter Real scaling_factor = 2.41 @@ -170,28 +170,29 @@ equation experiment( Tolerance=1e-6, StopTime=1000), Documentation(info=" -

                        -Model that demonstrates the use of the - -AixLib.Fluid.HeatPumps.ReciprocatingWaterToWater heat pump model. This -validation case also tests the stage input to the heat pump models. -

                        -

                        -With constant inlet source and load water temperatures, the heat pumps cycle on -and off. The capacity of the scaled heat pump model is compared to the -capacity of the non-scaled heat pump model. -

                        -", revisions=" -
                          -
                        • -May 15, 2019, by Jianjun Hu:
                          -Replaced fluid source. This is for - #1072. -
                        • -
                        • -December 5, 2016, by Massimo Cimmino:
                          -First implementation. -
                        • -
                        -")); +

                        + Model that demonstrates the use of the + + AixLib.Fluid.HeatPumps.ReciprocatingWaterToWater heat pump model. This + validation case also tests the stage input to the heat pump models. +

                        +

                        + With constant inlet source and load water temperatures, the heat pumps cycle on + and off. The capacity of the scaled heat pump model is compared to the + capacity of the non-scaled heat pump model. +

                        + ",revisions=" +
                          +
                        • + May 15, 2019, by Jianjun Hu:
                          + Replaced fluid source. This is for + #1072. +
                        • +
                        • + December 5, 2016, by Massimo Cimmino:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end ReciprocatingWaterToWater_ScalingFactor; diff --git a/AixLib/Fluid/HeatPumps/Validation/ReciprocatingWaterToWater_Static.mo b/AixLib/Fluid/HeatPumps/Validation/ReciprocatingWaterToWater_Static.mo index a8401f7095..3c25b32b29 100644 --- a/AixLib/Fluid/HeatPumps/Validation/ReciprocatingWaterToWater_Static.mo +++ b/AixLib/Fluid/HeatPumps/Validation/ReciprocatingWaterToWater_Static.mo @@ -5,14 +5,14 @@ model ReciprocatingWaterToWater_Static package Medium1 = AixLib.Media.Water "Medium model"; package Medium2 = AixLib.Media.Water "Medium model"; - parameter Modelica.SIunits.MassFlowRate m1_flow_nominal = 0.47 + parameter Modelica.Units.SI.MassFlowRate m1_flow_nominal=0.47 "Nominal mass flow rate on the condenser side"; - parameter Modelica.SIunits.MassFlowRate m2_flow_nominal = 0.47 + parameter Modelica.Units.SI.MassFlowRate m2_flow_nominal=0.47 "Nominal mass flow rate on the evaporator side"; - parameter Modelica.SIunits.MassFlowRate flowSource = 0.79 + parameter Modelica.Units.SI.MassFlowRate flowSource=0.79 "Mass flow rate on the condenser side"; - parameter Modelica.SIunits.MassFlowRate flowLoad = 0.47 + parameter Modelica.Units.SI.MassFlowRate flowLoad=0.47 "Mass flow rate on the evaporator side"; AixLib.Fluid.HeatPumps.ReciprocatingWaterToWater heaPum( @@ -105,27 +105,28 @@ equation experiment( Tolerance=1e-6, StopTime=1000), Documentation(info=" -

                        -Model that demonstrates the use of the - -AixLib.Fluid.HeatPumps.ReciprocatingWaterToWater heat pump model. -

                        -

                        -The heat pump power, condenser heat transfer rate and evaporator heat transfer -rate are calculated for given water temperatures and flow rates on the -evaporator and condenser sides. -

                        -", revisions=" -
                          -
                        • -May 15, 2019, by Jianjun Hu:
                          -Replaced fluid source. This is for - #1072. -
                        • -
                        • -October 18, 2016, by Massimo Cimmino:
                          -First implementation. -
                        • -
                        -")); +

                        + Model that demonstrates the use of the + + AixLib.Fluid.HeatPumps.ReciprocatingWaterToWater heat pump model. +

                        +

                        + The heat pump power, condenser heat transfer rate and evaporator heat transfer + rate are calculated for given water temperatures and flow rates on the + evaporator and condenser sides. +

                        + ",revisions=" +
                          +
                        • + May 15, 2019, by Jianjun Hu:
                          + Replaced fluid source. This is for + #1072. +
                        • +
                        • + October 18, 2016, by Massimo Cimmino:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end ReciprocatingWaterToWater_Static; diff --git a/AixLib/Fluid/HeatPumps/Validation/ReciprocatingWaterToWater_VariableSpeed.mo b/AixLib/Fluid/HeatPumps/Validation/ReciprocatingWaterToWater_VariableSpeed.mo index fea1412bc5..637674ea28 100644 --- a/AixLib/Fluid/HeatPumps/Validation/ReciprocatingWaterToWater_VariableSpeed.mo +++ b/AixLib/Fluid/HeatPumps/Validation/ReciprocatingWaterToWater_VariableSpeed.mo @@ -5,14 +5,14 @@ model ReciprocatingWaterToWater_VariableSpeed package Medium1 = AixLib.Media.Water "Medium model"; package Medium2 = AixLib.Media.Water "Medium model"; - parameter Modelica.SIunits.MassFlowRate m1_flow_nominal = 0.47 + parameter Modelica.Units.SI.MassFlowRate m1_flow_nominal=0.47 "Nominal mass flow rate on the condenser side"; - parameter Modelica.SIunits.MassFlowRate m2_flow_nominal = 0.47 + parameter Modelica.Units.SI.MassFlowRate m2_flow_nominal=0.47 "Nominal mass flow rate on the evaporator side"; - parameter Modelica.SIunits.MassFlowRate flowSource = 0.79 + parameter Modelica.Units.SI.MassFlowRate flowSource=0.79 "Mass flow rate on the condenser side"; - parameter Modelica.SIunits.MassFlowRate flowLoad = 0.47 + parameter Modelica.Units.SI.MassFlowRate flowLoad=0.47 "Mass flow rate on the evaporator side"; AixLib.Fluid.Sources.Boundary_pT sin2( @@ -107,30 +107,31 @@ equation experiment( Tolerance=1e-6, StopTime=2000), Documentation(info=" -

                        -Model that demonstrates the use of the - -AixLib.Fluid.HeatPumps.ReciprocatingWaterToWater heat pump model. -

                        -

                        -With constant inlet source and load water temperatures, the compressor frequency -is increased linearly to its full load value and then ramped down to zero. -

                        -", revisions=" -
                          -
                        • -May 15, 2019, by Jianjun Hu:
                          -Replaced fluid source. This is for - #1072. -
                        • -
                        • -April 25, 2017, by Michael Wetter:
                          -Changed input signal from ramp to a trapezoid to test switching it off. -
                        • -
                        • -November 14, 2016, by Massimo Cimmino:
                          -First implementation. -
                        • -
                        -")); +

                        + Model that demonstrates the use of the + + AixLib.Fluid.HeatPumps.ReciprocatingWaterToWater heat pump model. +

                        +

                        + With constant inlet source and load water temperatures, the compressor frequency + is increased linearly to its full load value and then ramped down to zero. +

                        + ",revisions=" +
                          +
                        • + May 15, 2019, by Jianjun Hu:
                          + Replaced fluid source. This is for + #1072. +
                        • +
                        • + April 25, 2017, by Michael Wetter:
                          + Changed input signal from ramp to a trapezoid to test switching it off. +
                        • +
                        • + November 14, 2016, by Massimo Cimmino:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end ReciprocatingWaterToWater_VariableSpeed; diff --git a/AixLib/Fluid/HeatPumps/Validation/ScrollWaterToWater_Dynamic.mo b/AixLib/Fluid/HeatPumps/Validation/ScrollWaterToWater_Dynamic.mo index 7f1591621f..c1621f42b3 100644 --- a/AixLib/Fluid/HeatPumps/Validation/ScrollWaterToWater_Dynamic.mo +++ b/AixLib/Fluid/HeatPumps/Validation/ScrollWaterToWater_Dynamic.mo @@ -5,14 +5,14 @@ model ScrollWaterToWater_Dynamic package Medium1 = AixLib.Media.Water "Medium model"; package Medium2 = AixLib.Media.Water "Medium model"; - parameter Modelica.SIunits.MassFlowRate m1_flow_nominal = 0.47 + parameter Modelica.Units.SI.MassFlowRate m1_flow_nominal=0.47 "Nominal mass flow rate on the condenser side"; - parameter Modelica.SIunits.MassFlowRate m2_flow_nominal = 0.47 + parameter Modelica.Units.SI.MassFlowRate m2_flow_nominal=0.47 "Nominal mass flow rate on the evaporator side"; - parameter Modelica.SIunits.MassFlowRate flowSource = 0.79 + parameter Modelica.Units.SI.MassFlowRate flowSource=0.79 "Mass flow rate on the condenser side"; - parameter Modelica.SIunits.MassFlowRate flowLoad = 0.47 + parameter Modelica.Units.SI.MassFlowRate flowLoad=0.47 "Mass flow rate on the evaporator side"; AixLib.Fluid.Sources.Boundary_pT sin2( @@ -159,28 +159,29 @@ equation experiment( Tolerance=1e-6, StopTime=1000), Documentation(info=" -

                        -Model that demonstrates the use of the - -AixLib.Fluid.HeatPumps.ScrollWaterToWater heat pump model. This -validation case also tests the stage input to the heat pump models. -

                        -

                        -With constant inlet source and load water temperatures, the heat pumps cycle on -and off. The apparent capacity of the dynamic model is compared to the -steady-state model and to the condenser heat transfer rate. -

                        -", revisions=" -
                          -
                        • -May 15, 2019, by Jianjun Hu:
                          -Replaced fluid source. This is for - #1072. -
                        • -
                        • -November 11, 2016, by Massimo Cimmino:
                          -First implementation. -
                        • -
                        -")); +

                        + Model that demonstrates the use of the + + AixLib.Fluid.HeatPumps.ScrollWaterToWater heat pump model. This + validation case also tests the stage input to the heat pump models. +

                        +

                        + With constant inlet source and load water temperatures, the heat pumps cycle on + and off. The apparent capacity of the dynamic model is compared to the + steady-state model and to the condenser heat transfer rate. +

                        + ",revisions=" +
                          +
                        • + May 15, 2019, by Jianjun Hu:
                          + Replaced fluid source. This is for + #1072. +
                        • +
                        • + November 11, 2016, by Massimo Cimmino:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end ScrollWaterToWater_Dynamic; diff --git a/AixLib/Fluid/HeatPumps/Validation/ScrollWaterToWater_ScalingFactor.mo b/AixLib/Fluid/HeatPumps/Validation/ScrollWaterToWater_ScalingFactor.mo index 2dba0bfb1a..7d283c2787 100644 --- a/AixLib/Fluid/HeatPumps/Validation/ScrollWaterToWater_ScalingFactor.mo +++ b/AixLib/Fluid/HeatPumps/Validation/ScrollWaterToWater_ScalingFactor.mo @@ -5,14 +5,14 @@ model ScrollWaterToWater_ScalingFactor package Medium1 = AixLib.Media.Water "Medium model"; package Medium2 = AixLib.Media.Water "Medium model"; - parameter Modelica.SIunits.MassFlowRate m1_flow_nominal = 0.47 + parameter Modelica.Units.SI.MassFlowRate m1_flow_nominal=0.47 "Nominal mass flow rate on the condenser side"; - parameter Modelica.SIunits.MassFlowRate m2_flow_nominal = 0.47 + parameter Modelica.Units.SI.MassFlowRate m2_flow_nominal=0.47 "Nominal mass flow rate on the evaporator side"; - parameter Modelica.SIunits.MassFlowRate flowSource = 0.79 + parameter Modelica.Units.SI.MassFlowRate flowSource=0.79 "Mass flow rate on the condenser side"; - parameter Modelica.SIunits.MassFlowRate flowLoad = 0.47 + parameter Modelica.Units.SI.MassFlowRate flowLoad=0.47 "Mass flow rate on the evaporator side"; parameter Real scaling_factor = 2.41 @@ -168,28 +168,29 @@ equation experiment( Tolerance=1e-6, StopTime=1000), Documentation(info=" -

                        -Model that demonstrates the use of the - -AixLib.Fluid.HeatPumps.ScrollWaterToWater heat pump model. This -validation case also tests the stage input to the heat pump models. -

                        -

                        -With constant inlet source and load water temperatures, the heat pumps cycle on -and off. The capacity of the scaled heat pump model is compared to the -capacity of the non-scaled heat pump model. -

                        -", revisions=" -
                          -
                        • -May 15, 2019, by Jianjun Hu:
                          -Replaced fluid source. This is for - #1072. -
                        • -
                        • -December 5, 2016, by Massimo Cimmino:
                          -First implementation. -
                        • -
                        -")); +

                        + Model that demonstrates the use of the + + AixLib.Fluid.HeatPumps.ScrollWaterToWater heat pump model. This + validation case also tests the stage input to the heat pump models. +

                        +

                        + With constant inlet source and load water temperatures, the heat pumps cycle on + and off. The capacity of the scaled heat pump model is compared to the + capacity of the non-scaled heat pump model. +

                        + ",revisions=" +
                          +
                        • + May 15, 2019, by Jianjun Hu:
                          + Replaced fluid source. This is for + #1072. +
                        • +
                        • + December 5, 2016, by Massimo Cimmino:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end ScrollWaterToWater_ScalingFactor; diff --git a/AixLib/Fluid/HeatPumps/Validation/ScrollWaterToWater_Static.mo b/AixLib/Fluid/HeatPumps/Validation/ScrollWaterToWater_Static.mo index 556534d495..fc1690a864 100644 --- a/AixLib/Fluid/HeatPumps/Validation/ScrollWaterToWater_Static.mo +++ b/AixLib/Fluid/HeatPumps/Validation/ScrollWaterToWater_Static.mo @@ -5,14 +5,14 @@ model ScrollWaterToWater_Static package Medium1 = AixLib.Media.Water "Medium model"; package Medium2 = AixLib.Media.Water "Medium model"; - parameter Modelica.SIunits.MassFlowRate m1_flow_nominal = 0.47 + parameter Modelica.Units.SI.MassFlowRate m1_flow_nominal=0.47 "Nominal mass flow rate on the condenser side"; - parameter Modelica.SIunits.MassFlowRate m2_flow_nominal = 0.47 + parameter Modelica.Units.SI.MassFlowRate m2_flow_nominal=0.47 "Nominal mass flow rate on the evaporator side"; - parameter Modelica.SIunits.MassFlowRate flowSource = 0.79 + parameter Modelica.Units.SI.MassFlowRate flowSource=0.79 "Mass flow rate on the condenser side"; - parameter Modelica.SIunits.MassFlowRate flowLoad = 0.47 + parameter Modelica.Units.SI.MassFlowRate flowLoad=0.47 "Mass flow rate on the evaporator side"; AixLib.Fluid.Sources.Boundary_pT sin2( @@ -103,27 +103,28 @@ equation experiment( Tolerance=1e-6, StopTime=1000), Documentation(info=" -

                        -Model that demonstrates the use of the - -AixLib.Fluid.HeatPumps.ScrollWaterToWater heat pump model. -

                        -

                        -The heat pump power, condenser heat transfer rate and evaporator heat transfer -rate are calculated for given water temperatures and flow rates on the -evaporator and condenser sides. -

                        -", revisions=" -
                          -
                        • -May 15, 2019, by Jianjun Hu:
                          -Replaced fluid source. This is for - #1072. -
                        • -
                        • -October 18, 2016, by Massimo Cimmino:
                          -First implementation. -
                        • -
                        -")); +

                        + Model that demonstrates the use of the + + AixLib.Fluid.HeatPumps.ScrollWaterToWater heat pump model. +

                        +

                        + The heat pump power, condenser heat transfer rate and evaporator heat transfer + rate are calculated for given water temperatures and flow rates on the + evaporator and condenser sides. +

                        + ",revisions=" +
                          +
                        • + May 15, 2019, by Jianjun Hu:
                          + Replaced fluid source. This is for + #1072. +
                        • +
                        • + October 18, 2016, by Massimo Cimmino:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end ScrollWaterToWater_Static; diff --git a/AixLib/Fluid/HeatPumps/Validation/ScrollWaterToWater_TemperatureProtection.mo b/AixLib/Fluid/HeatPumps/Validation/ScrollWaterToWater_TemperatureProtection.mo index be0f428ef8..663fb6bbfc 100644 --- a/AixLib/Fluid/HeatPumps/Validation/ScrollWaterToWater_TemperatureProtection.mo +++ b/AixLib/Fluid/HeatPumps/Validation/ScrollWaterToWater_TemperatureProtection.mo @@ -5,14 +5,14 @@ model ScrollWaterToWater_TemperatureProtection package Medium1 = AixLib.Media.Water "Medium model"; package Medium2 = AixLib.Media.Water "Medium model"; - parameter Modelica.SIunits.MassFlowRate m1_flow_nominal = 0.47 + parameter Modelica.Units.SI.MassFlowRate m1_flow_nominal=0.47 "Nominal mass flow rate on the condenser side"; - parameter Modelica.SIunits.MassFlowRate m2_flow_nominal = 0.47 + parameter Modelica.Units.SI.MassFlowRate m2_flow_nominal=0.47 "Nominal mass flow rate on the evaporator side"; - parameter Modelica.SIunits.MassFlowRate flowSource = 0.79 + parameter Modelica.Units.SI.MassFlowRate flowSource=0.79 "Mass flow rate on the condenser side"; - parameter Modelica.SIunits.MassFlowRate flowLoad = 0.47 + parameter Modelica.Units.SI.MassFlowRate flowLoad=0.47 "Mass flow rate on the evaporator side"; AixLib.Fluid.Sources.Boundary_pT sin2( @@ -69,17 +69,15 @@ model ScrollWaterToWater_TemperatureProtection annotation (Placement(transformation(extent={{-10,-10},{10,10}}))); Modelica.Blocks.Sources.Sine yLoa( startTime=250, - freqHz=1/600, + f=1/600, amplitude=30, offset=313.15) "Load side fluid temperature" annotation (Placement(transformation(extent={{-100,-10},{-80,10}}))); - Modelica.Blocks.Sources.Cosine - ySou( + Modelica.Blocks.Sources.Cosine ySou( startTime=0, amplitude=20, offset=293.15, - freqHz=1/400) - "Source side fluid temperature" + f=1/400) "Source side fluid temperature" annotation (Placement(transformation(extent={{100,-38},{80,-18}}))); equation connect(mSou.y, sou.m_flow_in) @@ -106,27 +104,28 @@ equation experiment( Tolerance=1e-6, StopTime=1000), Documentation(info=" -

                        -Model that demonstrates the temperature protection implementation of the - -AixLib.Fluid.HeatPumps.ScrollWaterToWater heat pump model. -

                        -

                        -The heat pump is disabled when the evaporator and condenser temperature -requirements are not satisfied. -

                        -", revisions=" -
                          -
                        • -May 15, 2019, by Jianjun Hu:
                          -Replaced fluid source. This is for - #1072. -
                        • -
                        • -May 30, 2017, by Filip Jorissen:
                          -First implementation. -See #769. -
                        • -
                        -")); +

                        + Model that demonstrates the temperature protection implementation of the + + AixLib.Fluid.HeatPumps.ScrollWaterToWater heat pump model. +

                        +

                        + The heat pump is disabled when the evaporator and condenser temperature + requirements are not satisfied. +

                        + ",revisions=" +
                          +
                        • + May 15, 2019, by Jianjun Hu:
                          + Replaced fluid source. This is for + #1072. +
                        • +
                        • + May 30, 2017, by Filip Jorissen:
                          + First implementation. + See #769. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end ScrollWaterToWater_TemperatureProtection; diff --git a/AixLib/Fluid/HeatPumps/Validation/ScrollWaterToWater_VariableSpeed.mo b/AixLib/Fluid/HeatPumps/Validation/ScrollWaterToWater_VariableSpeed.mo index 4ecd40eb37..8177c4f72a 100644 --- a/AixLib/Fluid/HeatPumps/Validation/ScrollWaterToWater_VariableSpeed.mo +++ b/AixLib/Fluid/HeatPumps/Validation/ScrollWaterToWater_VariableSpeed.mo @@ -5,14 +5,14 @@ model ScrollWaterToWater_VariableSpeed package Medium1 = AixLib.Media.Water "Medium model"; package Medium2 = AixLib.Media.Water "Medium model"; - parameter Modelica.SIunits.MassFlowRate m1_flow_nominal = 0.47 + parameter Modelica.Units.SI.MassFlowRate m1_flow_nominal=0.47 "Nominal mass flow rate on the condenser side"; - parameter Modelica.SIunits.MassFlowRate m2_flow_nominal = 0.47 + parameter Modelica.Units.SI.MassFlowRate m2_flow_nominal=0.47 "Nominal mass flow rate on the evaporator side"; - parameter Modelica.SIunits.MassFlowRate flowSource = 0.79 + parameter Modelica.Units.SI.MassFlowRate flowSource=0.79 "Mass flow rate on the condenser side"; - parameter Modelica.SIunits.MassFlowRate flowLoad = 0.47 + parameter Modelica.Units.SI.MassFlowRate flowLoad=0.47 "Mass flow rate on the evaporator side"; AixLib.Fluid.Sources.Boundary_pT sin2( @@ -99,26 +99,27 @@ equation experiment( Tolerance=1e-6, StopTime=1000), Documentation(info=" -

                        -Model that demonstrates the use of the - -AixLib.Fluid.HeatPumps.ScrollWaterToWater heat pump model. -

                        -

                        -With constant inlet source and load water temperatures, the compressor frequency -is increased linearly to its full load value. -

                        -", revisions=" -
                          -
                        • -May 15, 2019, by Jianjun Hu:
                          -Replaced fluid source. This is for - #1072. -
                        • -
                        • -November 11, 2016, by Massimo Cimmino:
                          -First implementation. -
                        • -
                        -")); +

                        + Model that demonstrates the use of the + + AixLib.Fluid.HeatPumps.ScrollWaterToWater heat pump model. +

                        +

                        + With constant inlet source and load water temperatures, the compressor frequency + is increased linearly to its full load value. +

                        + ",revisions=" +
                          +
                        • + May 15, 2019, by Jianjun Hu:
                          + Replaced fluid source. This is for + #1072. +
                        • +
                        • + November 11, 2016, by Massimo Cimmino:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end ScrollWaterToWater_VariableSpeed; diff --git a/AixLib/Fluid/HeatPumps/package.mo b/AixLib/Fluid/HeatPumps/package.mo index e14b977690..bbcc6d92aa 100644 --- a/AixLib/Fluid/HeatPumps/package.mo +++ b/AixLib/Fluid/HeatPumps/package.mo @@ -1,10 +1,10 @@ within AixLib.Fluid; package HeatPumps "Package with models for heat pumps" extends Modelica.Icons.VariantsPackage; + annotation (preferredView="info", Documentation(info="

                        This package contains component models for heat pumps.

                        ")); - end HeatPumps; diff --git a/AixLib/Fluid/Humidifiers/Examples/GenericHumidifier_u.mo b/AixLib/Fluid/Humidifiers/Examples/GenericHumidifier_u.mo index f281ee1079..497a38cfcd 100644 --- a/AixLib/Fluid/Humidifiers/Examples/GenericHumidifier_u.mo +++ b/AixLib/Fluid/Humidifiers/Examples/GenericHumidifier_u.mo @@ -1,12 +1,12 @@ -within AixLib.Fluid.Humidifiers.Examples; +within AixLib.Fluid.Humidifiers.Examples; model GenericHumidifier_u "Model that demonstrates the steam and adiabtic humidifier" extends Modelica.Icons.Example; package Medium = AixLib.Media.Air; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal= - 3000/1000/20 "Nominal mass flow rate"; + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=3000/1000/20 + "Nominal mass flow rate"; AixLib.Fluid.Sources.MassFlowSource_T sou( redeclare package Medium = Medium, diff --git a/AixLib/Fluid/Humidifiers/Examples/Humidifier_u.mo b/AixLib/Fluid/Humidifiers/Examples/Humidifier_u.mo index 655ce4afe3..68b536f031 100644 --- a/AixLib/Fluid/Humidifiers/Examples/Humidifier_u.mo +++ b/AixLib/Fluid/Humidifiers/Examples/Humidifier_u.mo @@ -5,8 +5,8 @@ model Humidifier_u "Model that demonstrates the ideal humidifier model" package Medium = AixLib.Media.Air; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal= - 3000/1000/20 "Nominal mass flow rate"; + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=3000/1000/20 + "Nominal mass flow rate"; AixLib.Fluid.Sources.MassFlowSource_T sou( redeclare package Medium = Medium, @@ -42,7 +42,6 @@ model Humidifier_u "Model that demonstrates the ideal humidifier model" dp_nominal=6000, mWat_flow_nominal=m_flow_nominal*0.005, energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, - massDynamics=Modelica.Fluid.Types.Dynamics.SteadyState, T_start=303.15) "Dynamic model of the humidifier" annotation (Placement(transformation(extent={{0,-20},{20,0}}))); AixLib.Fluid.Sensors.TemperatureTwoPort senTem2(redeclare package Medium = @@ -106,29 +105,30 @@ equation "modelica://AixLib/Resources/Scripts/Dymola/Fluid/Humidifiers/Examples/Humidifier_u.mos" "Simulate and plot"), Documentation(info=" -

                        -Model that demonstrates the use of an ideal humidifier. -Both humidifer models are identical, except that one model is configured -as a steady-state model, whereas the other is configured as a dynamic model. -Both humidifiers add water to the medium to track a set-point for the outlet -temperature using adiabatic cooling. -The temperature of the water that is added to the medium is determined by -the parameter T of the humidifier models. -

                        -", revisions=" -
                          -
                        • -April 23, 2013, by Michael Wetter:
                          -Added flow resistance at the outlet of the humidifier to avoid a numerical derivative, -and changed model to use a prescribed mass flow rate. -
                        • -
                        • -July 11, 2011, by Michael Wetter:
                          -First implementation. -
                        • -
                        -"), +

                        + Model that demonstrates the use of an ideal humidifier. + Both humidifer models are identical, except that one model is configured + as a steady-state model, whereas the other is configured as a dynamic model. + Both humidifiers add water to the medium to track a set-point for the outlet + temperature using adiabatic cooling. + The temperature of the water that is added to the medium is determined by + the parameter T of the humidifier models. +

                        + ",revisions=" +
                          +
                        • + April 23, 2013, by Michael Wetter:
                          + Added flow resistance at the outlet of the humidifier to avoid a numerical derivative, + and changed model to use a prescribed mass flow rate. +
                        • +
                        • + July 11, 2011, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), experiment( StopTime=1200, - Tolerance=1e-06)); + Tolerance=1e-06), + __Dymola_LockedEditing="Model from IBPSA"); end Humidifier_u; diff --git a/AixLib/Fluid/Humidifiers/GenericHumidifier_u.mo b/AixLib/Fluid/Humidifiers/GenericHumidifier_u.mo index 2b57a4bcac..8d7deeb678 100644 --- a/AixLib/Fluid/Humidifiers/GenericHumidifier_u.mo +++ b/AixLib/Fluid/Humidifiers/GenericHumidifier_u.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Humidifiers; +within AixLib.Fluid.Humidifiers; model GenericHumidifier_u "Steam or adiabatic humidifier with relative mass flow rate as input" extends AixLib.Fluid.Interfaces.TwoPortHeatMassExchanger( @@ -7,16 +7,21 @@ model GenericHumidifier_u redeclare final AixLib.Fluid.MixingVolumes.MixingVolumeMoistAir vol( final prescribedHeatFlowRate=true)); - parameter Modelica.SIunits.MassFlowRate mWat_flow_nominal + parameter Modelica.Units.SI.MassFlowRate mWat_flow_nominal "Water mass flow rate at u=1, positive for humidification"; - parameter Modelica.SIunits.Temperature TLiqWat_in "Temperature of liquid water that is vaporized"; + parameter Modelica.Units.SI.Temperature TLiqWat_in + "Temperature of liquid water that is vaporized"; parameter Boolean steamHumidifier=true "True: steam humidifier, false: adiabatic (water) humidifier"; parameter Boolean TVapFixed = true "True: fixed vaporization temperature, false: vaporization temperature from pressure" annotation (Dialog(enable=steamHumidifier, tab = "Advanced", group = "Vaporization")); - parameter Modelica.SIunits.Temperature TVap=373.15 "Vaporization temperature of steam" annotation (Dialog(enable=TVapFixed and steamHumidifier,tab = "Advanced", group = "Vaporization")); + parameter Modelica.Units.SI.Temperature TVap=373.15 + "Vaporization temperature of steam" annotation (Dialog( + enable=TVapFixed and steamHumidifier, + tab="Advanced", + group="Vaporization")); Modelica.Blocks.Interfaces.RealInput u(unit="1") "Control input" annotation (Placement(transformation( diff --git a/AixLib/Fluid/Humidifiers/Humidifier_u.mo b/AixLib/Fluid/Humidifiers/Humidifier_u.mo index 6167f12e1b..092715e3cc 100644 --- a/AixLib/Fluid/Humidifiers/Humidifier_u.mo +++ b/AixLib/Fluid/Humidifiers/Humidifier_u.mo @@ -7,7 +7,7 @@ model Humidifier_u redeclare final AixLib.Fluid.MixingVolumes.MixingVolumeMoistAir vol( final prescribedHeatFlowRate=true)); - parameter Modelica.SIunits.MassFlowRate mWat_flow_nominal + parameter Modelica.Units.SI.MassFlowRate mWat_flow_nominal "Water mass flow rate at u=1, positive for humidification"; Modelica.Blocks.Interfaces.RealInput u(unit="1") "Control input" @@ -54,7 +54,7 @@ equation fillPattern=FillPattern.Solid), Text( extent={{-114,104},{-70,76}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="u"), Rectangle( visible=use_T_in, @@ -94,7 +94,7 @@ equation fillPattern=FillPattern.Solid), Text( extent={{30,112},{96,58}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="mWat_flow"), Polygon( points={{42,10},{54,2},{54,2},{42,-4},{42,-2},{50,2},{50,2},{42,8},{ @@ -110,83 +110,90 @@ equation fillPattern=FillPattern.Solid)}), defaultComponentName="hum", Documentation(info=" -

                        -Model for an air humidifier or dehumidifier. -

                        -

                        -This model adds (or removes) moisture from the air stream. -The amount of exchanged moisture is equal to -

                        -

                        -ṁwat = u ṁwat,nom, -

                        -

                        -where u is the control input signal and -wat,nom is equal to the parameter mWat_flow_nominal. -The parameter mWat_flow_nominal can be positive or negative. -If wat is positive, then moisture is added -to the air stream, otherwise it is removed. -

                        -

                        -If the heat port heatPort is unconnected, then the enthalpy of the -air that flows through the device remains unchanged, e.g., the humidification -is adiabatic. To change the enthalpy of the air, add heat flow to the connector -heatPort. -

                        -", +

                        + Model for an air humidifier or dehumidifier. +

                        +

                        + This model adds (or removes) moisture from the air stream. + The amount of exchanged moisture is equal to +

                        +

                        + ṁwat = u ṁwat,nom, +

                        +

                        + where u is the control input signal and + wat,nom is equal to the parameter mWat_flow_nominal. + The parameter mWat_flow_nominal can be positive or negative. + If wat is positive, then moisture is added + to the air stream, otherwise it is removed. +

                        +

                        + If the heat port heatPort is unconnected, then the enthalpy of the + air that flows through the device remains unchanged, e.g., the humidification + is adiabatic. To change the enthalpy of the air, add heat flow to the connector + heatPort. +

                        + ", revisions=" -
                          -
                        • -April 12, 2017, by Michael Wetter:
                          -Removed parameters use_T_in and T. -This removes the optional specification of temperature through the parameter T -or the input connector T_in. -Exposed the heat port of the control volume to allow adding heat, -for example, to use the model as a steam humidifier.
                          -This is for issue - -Buildings #704. -
                        • -
                        • -May 6, 2015, by Michael Wetter:
                          -Set prescribedHeatFlowRate=true. -This is for issue - -#412. -
                        • -
                        • -May 29, 2014, by Michael Wetter:
                          -Removed undesirable annotation Evaluate=true. -
                        • -
                        • -February 11, 2014 by Michael Wetter:
                          -Corrected issue #197 -which led to twice the amount of latent heat being added to the fluid stream. -
                        • -
                        • -October 14, 2013 by Michael Wetter:
                          -Constrained medium to be a subclass of -Modelica.Media.Interfaces.PartialCondensingGases, -as this base class declares the function -enthalpyOfCondensingGas. -
                        • -
                        • -July 30, 2013 by Michael Wetter:
                          -Updated model to use new variable mWat_flow -in the base class. -
                        • -
                        • -May 24, 2011, by Michael Wetter:
                          -Changed base class to allow using the model as a dynamic or a steady-state model. -
                        • -
                        • -April 14, 2010, by Michael Wetter:
                          -Converted temperature input to a conditional connector. -
                        • -
                        • -April 17, 2008, by Michael Wetter:
                          -First implementation. -
                        • -
                        -")); +
                          +
                        • + March 7, 2022, by Michael Wetter:
                          + Removed massDynamics.
                          + This is for + #1542. +
                        • +
                        • + April 12, 2017, by Michael Wetter:
                          + Removed parameters use_T_in and T. + This removes the optional specification of temperature through the parameter T + or the input connector T_in. + Exposed the heat port of the control volume to allow adding heat, + for example, to use the model as a steam humidifier.
                          + This is for issue + + Buildings #704. +
                        • +
                        • + May 6, 2015, by Michael Wetter:
                          + Set prescribedHeatFlowRate=true. + This is for issue + + #412. +
                        • +
                        • + May 29, 2014, by Michael Wetter:
                          + Removed undesirable annotation Evaluate=true. +
                        • +
                        • + February 11, 2014 by Michael Wetter:
                          + Corrected issue #197 + which led to twice the amount of latent heat being added to the fluid stream. +
                        • +
                        • + October 14, 2013 by Michael Wetter:
                          + Constrained medium to be a subclass of + Modelica.Media.Interfaces.PartialCondensingGases, + as this base class declares the function + enthalpyOfCondensingGas. +
                        • +
                        • + July 30, 2013 by Michael Wetter:
                          + Updated model to use new variable mWat_flow + in the base class. +
                        • +
                        • + May 24, 2011, by Michael Wetter:
                          + Changed base class to allow using the model as a dynamic or a steady-state model. +
                        • +
                        • + April 14, 2010, by Michael Wetter:
                          + Converted temperature input to a conditional connector. +
                        • +
                        • + April 17, 2008, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end Humidifier_u; diff --git a/AixLib/Fluid/Humidifiers/SprayAirWasher_X.mo b/AixLib/Fluid/Humidifiers/SprayAirWasher_X.mo index 1c826afa78..aa2d18e99c 100644 --- a/AixLib/Fluid/Humidifiers/SprayAirWasher_X.mo +++ b/AixLib/Fluid/Humidifiers/SprayAirWasher_X.mo @@ -12,23 +12,16 @@ model SprayAirWasher_X final QMax_flow = Modelica.Constants.inf, final QMin_flow = -Modelica.Constants.inf, final mWatMax_flow = mWatMax_flow, - final mWatMin_flow = 0, - final energyDynamics = Modelica.Fluid.Types.Dynamics.SteadyState, - final massDynamics = massDynamics)); + final mWatMin_flow = 0)); - parameter Modelica.SIunits.MassFlowRate mWatMax_flow(min=0) = Modelica.Constants.inf + parameter Modelica.Units.SI.MassFlowRate mWatMax_flow(min=0) = Modelica.Constants.inf "Maximum water mass flow rate addition (positive)" annotation (Evaluate=true); - parameter Modelica.SIunits.MassFraction X_start[Medium.nX] = Medium.X_default + parameter Modelica.Units.SI.MassFraction X_start[Medium.nX]=Medium.X_default "Start value of mass fractions m_i/m" annotation (Dialog(tab="Initialization")); - // Dynamics - parameter Modelica.Fluid.Types.Dynamics massDynamics = Modelica.Fluid.Types.Dynamics.SteadyState - "Type of mass balance: dynamic (3 initialization options) or steady state" - annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Equations")); - // Set maximum to a high value to avoid users mistakenly entering relative humidity. Modelica.Blocks.Interfaces.RealInput X_w( unit="1", @@ -42,12 +35,11 @@ model SprayAirWasher_X annotation (Placement(transformation(extent={{100,50},{120,70}}))); protected - constant Modelica.SIunits.SpecificEnthalpy hSte = Medium.enthalpyOfLiquid(T=283.15) - "Enthalpy of water at 10 degree Celsius"; + constant Modelica.Units.SI.SpecificEnthalpy hSte=Medium.enthalpyOfLiquid(T= + 283.15) "Enthalpy of water at 10 degree Celsius"; - Modelica.SIunits.SpecificEnthalpy hLea= - inStream(port_a.h_outflow) + - {hSte} * (port_b.Xi_outflow - inStream(port_a.Xi_outflow)) + Modelica.Units.SI.SpecificEnthalpy hLea=inStream(port_a.h_outflow) + {hSte}*( + port_b.Xi_outflow - inStream(port_a.Xi_outflow)) "Approximation of leaving enthalpy, based on dh/dx=h_fg"; Modelica.Blocks.Sources.RealExpression TLea(y= @@ -75,11 +67,11 @@ equation fillPattern=FillPattern.Solid), Text( extent={{-100,98},{-64,80}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="X_w"), Text( extent={{32,116},{98,62}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="mWat_flow"), Rectangle( extent={{-100,62},{-70,58}}, @@ -124,85 +116,90 @@ equation fillPattern=FillPattern.Solid)}), defaultComponentName="hum", Documentation(info=" -

                        -Model for a spray air washer with a prescribed outlet water vapor mass fraction -in kg/kg total air. -

                        -

                        -This model forces the outlet water mass fraction at port_b to be -no lower than the -input signal X_wSet, subject to optional limits on the -maximum water vapor mass flow rate that is added, as -described by the parameter mWatMax_flow. -By default, the model has unlimited capacity. -

                        -

                        -The output signal mWat_flow ≥ 0 is the moisture added -to the medium if the flow rate is from port_a to port_b. -If the flow is reversed, then mWat_flow = 0. -The outlet specific enthalpy at port_b is increased by -the enthalpy of liquid water at 10°C times the mass of water that was added. -Therefore, the temperature of the leaving fluid is below the inlet temperature. -

                        -

                        -The outlet conditions at port_a are not affected by this model, -other than for a possible pressure difference due to flow friction. -

                        -

                        -If the parameter energyDynamics is different from -Modelica.Fluid.Types.Dynamics.SteadyState, -the component models the dynamic response using a first order differential equation. -The time constant of the component is equal to the parameter tau. -This time constant is adjusted based on the mass flow rate using -

                        -

                        eff = τ |ṁ| ⁄ ṁnom -

                        -

                        -where -τeff is the effective time constant for the given mass flow rate - and -τ is the time constant at the nominal mass flow rate -nom. -This type of dynamics is equal to the dynamics that a completely mixed -control volume would have. -

                        -

                        -Optionally, this model can have a flow resistance. -Set dp_nominal = 0 to disable the flow friction calculation. -

                        -

                        -For a model that uses a control signal u ∈ [0, 1] and multiplies -this with the nominal water mass flow rate, use - -AixLib.Fluid.Humidifiers.Humidifier_u - -

                        -

                        Limitations

                        -

                        -This model only adds water vapor for the flow from -port_a to port_b. -The water vapor of the reverse flow is not affected by this model. -

                        -

                        -This model does not affect the enthalpy of the air. Therefore, -if water is added, the temperature will decrease, e.g., the humidification -is adiabatic. -

                        -", +

                        + Model for a spray air washer with a prescribed outlet water vapor mass fraction + in kg/kg total air. +

                        +

                        + This model forces the outlet water mass fraction at port_b to be + no lower than the + input signal X_wSet, subject to optional limits on the + maximum water vapor mass flow rate that is added, as + described by the parameter mWatMax_flow. + By default, the model has unlimited capacity. +

                        +

                        + The output signal mWat_flow ≥ 0 is the moisture added + to the medium if the flow rate is from port_a to port_b. + If the flow is reversed, then mWat_flow = 0. + The outlet specific enthalpy at port_b is increased by + the enthalpy of liquid water at 10°C times the mass of water that was added. + Therefore, the temperature of the leaving fluid is below the inlet temperature. +

                        +

                        + The outlet conditions at port_a are not affected by this model, + other than for a possible pressure difference due to flow friction. +

                        +

                        + If the parameter energyDynamics is different from + Modelica.Fluid.Types.Dynamics.SteadyState, + the component models the dynamic response using a first order differential equation. + The time constant of the component is equal to the parameter tau. + This time constant is adjusted based on the mass flow rate using +

                        +

                        + τeff = τ |ṁ| ⁄ ṁnom +

                        +

                        + where + τeff is the effective time constant for the given mass flow rate + and + τ is the time constant at the nominal mass flow rate + nom. + This type of dynamics is equal to the dynamics that a completely mixed + control volume would have. +

                        +

                        + Optionally, this model can have a flow resistance. + Set dp_nominal = 0 to disable the flow friction calculation. +

                        +

                        + For a model that uses a control signal u ∈ [0, 1] and multiplies + this with the nominal water mass flow rate, use + + AixLib.Fluid.Humidifiers.Humidifier_u + +

                        +

                        Limitations

                        +

                        + This model only adds water vapor for the flow from + port_a to port_b. + The water vapor of the reverse flow is not affected by this model. +

                        +

                        + This model does not affect the enthalpy of the air. Therefore, + if water is added, the temperature will decrease, e.g., the humidification + is adiabatic. +

                        + ", revisions=" -
                          -
                        • -December 14, 2018, by Michael Wetter:
                          -Restricted base class for medium to one that implements -the function enthalpyOfLiquid.
                          -This is for -#1057. -
                        • -
                        • -May 3, 2017, by Michael Wetter:
                          -First implementation. -
                        • -
                        -")); +
                          +
                        • + March 8, 2022, by Michael Wetter:
                          + Renamed parameter massDynamics to energyDynamics for consistency with other models. +
                        • +
                        • + December 14, 2018, by Michael Wetter:
                          + Restricted base class for medium to one that implements + the function enthalpyOfLiquid.
                          + This is for + #1057. +
                        • +
                        • + May 3, 2017, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end SprayAirWasher_X; diff --git a/AixLib/Fluid/Humidifiers/SteamHumidifier_X.mo b/AixLib/Fluid/Humidifiers/SteamHumidifier_X.mo index 29b62441a5..f048679bb4 100644 --- a/AixLib/Fluid/Humidifiers/SteamHumidifier_X.mo +++ b/AixLib/Fluid/Humidifiers/SteamHumidifier_X.mo @@ -10,23 +10,16 @@ model SteamHumidifier_X final QMax_flow = Modelica.Constants.inf, final QMin_flow = -Modelica.Constants.inf, final mWatMax_flow = mWatMax_flow, - final mWatMin_flow = 0, - final energyDynamics = Modelica.Fluid.Types.Dynamics.SteadyState, - final massDynamics = massDynamics)); + final mWatMin_flow = 0)); - parameter Modelica.SIunits.MassFlowRate mWatMax_flow(min=0) = Modelica.Constants.inf + parameter Modelica.Units.SI.MassFlowRate mWatMax_flow(min=0) = Modelica.Constants.inf "Maximum water mass flow rate addition (positive)" annotation (Evaluate=true); - parameter Modelica.SIunits.MassFraction X_start[Medium.nX] = Medium.X_default + parameter Modelica.Units.SI.MassFraction X_start[Medium.nX]=Medium.X_default "Start value of mass fractions m_i/m" annotation (Dialog(tab="Initialization")); - // Dynamics - parameter Modelica.Fluid.Types.Dynamics massDynamics = Modelica.Fluid.Types.Dynamics.SteadyState - "Type of mass balance: dynamic (3 initialization options) or steady state" - annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Equations")); - // Set maximum to a high value to avoid users mistakenly entering relative humidity. Modelica.Blocks.Interfaces.RealInput X_w( unit="1", @@ -43,12 +36,12 @@ model SteamHumidifier_X "Heat flow rate added to the fluid (if flow is from port_a to port_b)" annotation (Placement(transformation(extent={{100,70},{120,90}}))); protected - constant Modelica.SIunits.SpecificEnthalpy hSte = Medium.enthalpyOfCondensingGas(T=373.15) + constant Modelica.Units.SI.SpecificEnthalpy hSte= + Medium.enthalpyOfCondensingGas(T=373.15) "Enthalpy of steam at 100 degree Celsius"; - Modelica.SIunits.SpecificEnthalpy hLea= - inStream(port_a.h_outflow) + - {hSte} * (port_b.Xi_outflow - inStream(port_a.Xi_outflow)) + Modelica.Units.SI.SpecificEnthalpy hLea=inStream(port_a.h_outflow) + {hSte}*( + port_b.Xi_outflow - inStream(port_a.Xi_outflow)) "Approximation of leaving enthalpy, based on dh/dx=h_fg"; Modelica.Blocks.Sources.RealExpression TLea(y= @@ -77,11 +70,11 @@ equation fillPattern=FillPattern.Solid), Text( extent={{-100,98},{-64,80}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="X_w"), Text( extent={{72,68},{138,14}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="mWat_flow"), Rectangle( extent={{-100,62},{-70,58}}, @@ -138,7 +131,7 @@ equation fillPattern=FillPattern.Solid), Text( extent={{72,108},{120,92}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="Q_flow"), Polygon( points={{56,-26},{44,-34},{44,-34},{56,-40},{56,-38},{48,-34},{48,-34}, @@ -199,73 +192,78 @@ equation pattern=LinePattern.None)}), defaultComponentName="hum", Documentation(info=" -

                        -Model for a steam humidifier with a prescribed outlet water vapor mass fraction -in kg/kg total air. -

                        -

                        -This model forces the outlet water mass fraction at port_b to be -no lower than the -input signal X_wSet, subject to optional limits on the -maximum water vapor mass flow rate that is added, as -described by the parameter mWatMax_flow. -By default, the model has unlimited capacity. -

                        -

                        -The output signal mWat_flow ≥ 0 is the moisture added -to the medium if the flow rate is from port_a to port_b. -If the flow is reversed, then mWat_flow = 0. -The outlet specific enthalpy at port_b is increased by -the enthalpy of steam at 100°C times the mass of steam that was added. -Therefore, the temperature of the leaving fluid is slightly above the inlet temperature. -

                        -

                        -The outlet conditions at port_a are not affected by this model, -other than for a possible pressure difference due to flow friction. -

                        -

                        -If the parameter energyDynamics is different from -Modelica.Fluid.Types.Dynamics.SteadyState, -the component models the dynamic response using a first order differential equation. -The time constant of the component is equal to the parameter tau. -This time constant is adjusted based on the mass flow rate using -

                        -

                        eff = τ |ṁ| ⁄ ṁnom -

                        -

                        -where -τeff is the effective time constant for the given mass flow rate - and -τ is the time constant at the nominal mass flow rate -nom. -This type of dynamics is equal to the dynamics that a completely mixed -control volume would have. -

                        -

                        -Optionally, this model can have a flow resistance. -Set dp_nominal = 0 to disable the flow friction calculation. -

                        -

                        -For a model that uses a control signal u ∈ [0, 1] and multiplies -this with the nominal water mass flow rate, use - -AixLib.Fluid.Humidifiers.Humidifier_u - -

                        -

                        Limitations

                        -

                        -This model only adds water vapor for the flow from -port_a to port_b. -The water vapor of the reverse flow is not affected by this model. -

                        -", +

                        + Model for a steam humidifier with a prescribed outlet water vapor mass fraction + in kg/kg total air. +

                        +

                        + This model forces the outlet water mass fraction at port_b to be + no lower than the + input signal X_wSet, subject to optional limits on the + maximum water vapor mass flow rate that is added, as + described by the parameter mWatMax_flow. + By default, the model has unlimited capacity. +

                        +

                        + The output signal mWat_flow ≥ 0 is the moisture added + to the medium if the flow rate is from port_a to port_b. + If the flow is reversed, then mWat_flow = 0. + The outlet specific enthalpy at port_b is increased by + the enthalpy of steam at 100°C times the mass of steam that was added. + Therefore, the temperature of the leaving fluid is slightly above the inlet temperature. +

                        +

                        + The outlet conditions at port_a are not affected by this model, + other than for a possible pressure difference due to flow friction. +

                        +

                        + If the parameter energyDynamics is different from + Modelica.Fluid.Types.Dynamics.SteadyState, + the component models the dynamic response using a first order differential equation. + The time constant of the component is equal to the parameter tau. + This time constant is adjusted based on the mass flow rate using +

                        +

                        + τeff = τ |ṁ| ⁄ ṁnom +

                        +

                        + where + τeff is the effective time constant for the given mass flow rate + and + τ is the time constant at the nominal mass flow rate + nom. + This type of dynamics is equal to the dynamics that a completely mixed + control volume would have. +

                        +

                        + Optionally, this model can have a flow resistance. + Set dp_nominal = 0 to disable the flow friction calculation. +

                        +

                        + For a model that uses a control signal u ∈ [0, 1] and multiplies + this with the nominal water mass flow rate, use + + AixLib.Fluid.Humidifiers.Humidifier_u + +

                        +

                        Limitations

                        +

                        + This model only adds water vapor for the flow from + port_a to port_b. + The water vapor of the reverse flow is not affected by this model. +

                        + ", revisions=" -
                          -
                        • -May 10, 2017, by Michael Wetter:
                          -First implementation. -
                        • -
                        -")); +
                          +
                        • + March 8, 2022, by Michael Wetter:
                          + Renamed parameter massDynamics to energyDynamics for consistency with other models. +
                        • +
                        • + May 10, 2017, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end SteamHumidifier_X; diff --git a/AixLib/Fluid/Humidifiers/Validation/SprayAirWasher_X.mo b/AixLib/Fluid/Humidifiers/Validation/SprayAirWasher_X.mo index 54dd1d1f21..0e90f551af 100644 --- a/AixLib/Fluid/Humidifiers/Validation/SprayAirWasher_X.mo +++ b/AixLib/Fluid/Humidifiers/Validation/SprayAirWasher_X.mo @@ -5,11 +5,11 @@ model SprayAirWasher_X package Medium = AixLib.Media.Air; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal = 0.1 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=0.1 "Nominal mass flow rate"; - parameter Modelica.SIunits.MassFlowRate mWat_flow_nominal = m_flow_nominal * 0.004 - "Maximum humidification water mass flow rate"; + parameter Modelica.Units.SI.MassFlowRate mWat_flow_nominal=m_flow_nominal* + 0.004 "Maximum humidification water mass flow rate"; AixLib.Fluid.Sources.Boundary_pT sin( redeclare package Medium = Medium, @@ -21,7 +21,7 @@ model SprayAirWasher_X replaceable AixLib.Fluid.Humidifiers.SprayAirWasher_X hum( mWatMax_flow=mWat_flow_nominal, - massDynamics=Modelica.Fluid.Types.Dynamics.SteadyState) + energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyState) constrainedby AixLib.Fluid.Humidifiers.SprayAirWasher_X( redeclare package Medium = Medium, m_flow_nominal=m_flow_nominal, @@ -71,27 +71,28 @@ equation __Dymola_Commands(file= "modelica://AixLib/Resources/Scripts/Dymola/Fluid/Humidifiers/Validation/SprayAirWasher_X.mos" "Simulate and plot"), Documentation(info=" -

                        -Model that validates the use of a spray air washer -configured as a steady-state model with limits on the maximum water mass flow rate -that is added to the air stream. -

                        -", revisions=" -
                          -
                        • -April 29, 2021, by Michael Wetter:
                          -Reformulated constraint of replaceable model to avoid access of -component that is not in constraining type.
                          -This is for -AixLib, #1473. -
                        • -
                        • -May 3, 2017, by Michael Wetter:
                          -First implementation. -
                        • -
                        -"), +

                        + Model that validates the use of a spray air washer + configured as a steady-state model with limits on the maximum water mass flow rate + that is added to the air stream. +

                        + ",revisions=" +
                          +
                        • + April 29, 2021, by Michael Wetter:
                          + Reformulated constraint of replaceable model to avoid access of + component that is not in constraining type.
                          + This is for + IBPSA, #1473. +
                        • +
                        • + May 3, 2017, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), experiment( StopTime=1080, - Tolerance=1e-6)); + Tolerance=1e-6), + __Dymola_LockedEditing="Model from IBPSA"); end SprayAirWasher_X; diff --git a/AixLib/Fluid/Humidifiers/Validation/SprayAirWasher_X_dynamic.mo b/AixLib/Fluid/Humidifiers/Validation/SprayAirWasher_X_dynamic.mo index 2c2f310dbe..7e3a52a1d5 100644 --- a/AixLib/Fluid/Humidifiers/Validation/SprayAirWasher_X_dynamic.mo +++ b/AixLib/Fluid/Humidifiers/Validation/SprayAirWasher_X_dynamic.mo @@ -4,26 +4,27 @@ model SprayAirWasher_X_dynamic extends AixLib.Fluid.Humidifiers.Validation.SprayAirWasher_X( hum( mWatMax_flow=mWat_flow_nominal, - massDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial)); + energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial)); annotation ( __Dymola_Commands(file= "modelica://AixLib/Resources/Scripts/Dymola/Fluid/Humidifiers/Validation/SprayAirWasher_X_dynamic.mos" "Simulate and plot"), Documentation(info=" -

                        -Model that validates the use of a spray air washer -configured as a dynamic model with limits on the maximum water mass flow rate -that is added to the air stream. -

                        -", revisions=" -
                          -
                        • -May 3, 2017, by Michael Wetter:
                          -First implementation. -
                        • -
                        -"), +

                        + Model that validates the use of a spray air washer + configured as a dynamic model with limits on the maximum water mass flow rate + that is added to the air stream. +

                        + ",revisions=" +
                          +
                        • + May 3, 2017, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), experiment( StopTime=1080, - Tolerance=1e-6)); + Tolerance=1e-6), + __Dymola_LockedEditing="Model from IBPSA"); end SprayAirWasher_X_dynamic; diff --git a/AixLib/Fluid/Humidifiers/Validation/SteamHumidifier_X.mo b/AixLib/Fluid/Humidifiers/Validation/SteamHumidifier_X.mo index 376d8742b4..f9672d5cfc 100644 --- a/AixLib/Fluid/Humidifiers/Validation/SteamHumidifier_X.mo +++ b/AixLib/Fluid/Humidifiers/Validation/SteamHumidifier_X.mo @@ -3,32 +3,32 @@ model SteamHumidifier_X "Model that demonstrates the steam humidifier model, configured as steady-state model" extends AixLib.Fluid.Humidifiers.Validation.SprayAirWasher_X( redeclare AixLib.Fluid.Humidifiers.SteamHumidifier_X hum( - mWatMax_flow=mWat_flow_nominal, - massDynamics=Modelica.Fluid.Types.Dynamics.SteadyState)); + mWatMax_flow=mWat_flow_nominal)); annotation ( __Dymola_Commands(file= "modelica://AixLib/Resources/Scripts/Dymola/Fluid/Humidifiers/Validation/SteamHumidifier_X.mos" "Simulate and plot"), Documentation(info=" -

                        -Model that validates the use of a spray air washer -configured as a steady-state model with limits on the maximum water mass flow rate -that is added to the air stream. -

                        -", revisions=" -
                          -
                        • -November 3, 2017, by Michael Wetter:
                          -Removed import statement.
                          -This is for #852. -
                        • -
                        • -May 3, 2017, by Michael Wetter:
                          -First implementation. -
                        • -
                        -"), +

                        + Model that validates the use of a spray air washer + configured as a steady-state model with limits on the maximum water mass flow rate + that is added to the air stream. +

                        + ",revisions=" +
                          +
                        • + November 3, 2017, by Michael Wetter:
                          + Removed import statement.
                          + This is for #852. +
                        • +
                        • + May 3, 2017, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), experiment( StopTime=1080, - Tolerance=1e-6)); + Tolerance=1e-6), + __Dymola_LockedEditing="Model from IBPSA"); end SteamHumidifier_X; diff --git a/AixLib/Fluid/Humidifiers/Validation/SteamHumidifier_X_dynamic.mo b/AixLib/Fluid/Humidifiers/Validation/SteamHumidifier_X_dynamic.mo index fe68aa0eae..2b5ca991f2 100644 --- a/AixLib/Fluid/Humidifiers/Validation/SteamHumidifier_X_dynamic.mo +++ b/AixLib/Fluid/Humidifiers/Validation/SteamHumidifier_X_dynamic.mo @@ -4,26 +4,27 @@ model SteamHumidifier_X_dynamic extends AixLib.Fluid.Humidifiers.Validation.SprayAirWasher_X( redeclare AixLib.Fluid.Humidifiers.SteamHumidifier_X hum( mWatMax_flow=mWat_flow_nominal, - massDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial)); + energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial)); annotation ( __Dymola_Commands(file= "modelica://AixLib/Resources/Scripts/Dymola/Fluid/Humidifiers/Validation/SteamHumidifier_X_dynamic.mos" "Simulate and plot"), Documentation(info=" -

                        -Model that validates the use of a spray air washer -configured as a dynamic model with limits on the maximum water mass flow rate -that is added to the air stream. -

                        -", revisions=" -
                          -
                        • -May 3, 2017, by Michael Wetter:
                          -First implementation. -
                        • -
                        -"), +

                        + Model that validates the use of a spray air washer + configured as a dynamic model with limits on the maximum water mass flow rate + that is added to the air stream. +

                        + ",revisions=" +
                          +
                        • + May 3, 2017, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), experiment( StopTime=1080, - Tolerance=1e-6)); + Tolerance=1e-6), + __Dymola_LockedEditing="Model from IBPSA"); end SteamHumidifier_X_dynamic; diff --git a/AixLib/Fluid/Interfaces/ConservationEquation.mo b/AixLib/Fluid/Interfaces/ConservationEquation.mo index 29a6a15a9d..0a17baf0af 100644 --- a/AixLib/Fluid/Interfaces/ConservationEquation.mo +++ b/AixLib/Fluid/Interfaces/ConservationEquation.mo @@ -26,11 +26,11 @@ model ConservationEquation "Lumped volume with mass and energy balance" "Sensible plus latent heat flow rate transferred into the medium" annotation (Placement(transformation(extent={{-140,40},{-100,80}}))); Modelica.Blocks.Interfaces.RealInput mWat_flow(final quantity="MassFlowRate", - unit="kg/s") if - use_mWat_flow "Moisture mass flow rate added to the medium" + unit="kg/s") + if use_mWat_flow "Moisture mass flow rate added to the medium" annotation (Placement(transformation(extent={{-140,0},{-100,40}}))); - Modelica.Blocks.Interfaces.RealInput[Medium.nC] C_flow if - use_C_flow "Trace substance mass flow rate added to the medium" + Modelica.Blocks.Interfaces.RealInput[Medium.nC] C_flow + if use_C_flow "Trace substance mass flow rate added to the medium" annotation (Placement(transformation(extent={{-140,-60},{-100,-20}}))); // Outputs that are needed in models that use this model @@ -83,56 +83,51 @@ model ConservationEquation "Lumped volume with mass and energy balance" X(start=X_start), d(start=rho_start)) "Medium properties"; - Modelica.SIunits.Energy U(start=fluidVolume*rho_start* - Medium.specificInternalEnergy(Medium.setState_pTX( - T=T_start, - p=p_start, - X=X_start[1:Medium.nXi])) + - (T_start - Medium.reference_T)*CSen, - nominal = 1E5) "Internal energy of fluid"; - - Modelica.SIunits.Mass m( - start=fluidVolume*rho_start, - stateSelect=if massDynamics == Modelica.Fluid.Types.Dynamics.SteadyState - then StateSelect.default else StateSelect.prefer) - "Mass of fluid"; - - Modelica.SIunits.Mass[Medium.nXi] mXi( - start=fluidVolume*rho_start*X_start[1:Medium.nXi]) - "Masses of independent components in the fluid"; - Modelica.SIunits.Mass[Medium.nC] mC( - start=fluidVolume*rho_start*C_start) + Modelica.Units.SI.Energy U(start=fluidVolume*rho_start* + Medium.specificInternalEnergy(Medium.setState_pTX( + T=T_start, + p=p_start, + X=X_start[1:Medium.nXi])) + (T_start - Medium.reference_T)*CSen, + nominal=1E5) "Internal energy of fluid"; + + Modelica.Units.SI.Mass m(start=fluidVolume*rho_start, stateSelect=if + massDynamics == Modelica.Fluid.Types.Dynamics.SteadyState then + StateSelect.default else StateSelect.prefer) "Mass of fluid"; + + Modelica.Units.SI.Mass[Medium.nXi] mXi(start=fluidVolume*rho_start*X_start[1: + Medium.nXi]) "Masses of independent components in the fluid"; + Modelica.Units.SI.Mass[Medium.nC] mC(start=fluidVolume*rho_start*C_start) "Masses of trace substances in the fluid"; // C need to be added here because unlike for Xi, which has medium.Xi, // there is no variable medium.C Medium.ExtraProperty C[Medium.nC](nominal=C_nominal) "Trace substance mixture content"; - Modelica.SIunits.MassFlowRate mb_flow "Mass flows across boundaries"; - Modelica.SIunits.MassFlowRate[Medium.nXi] mbXi_flow + Modelica.Units.SI.MassFlowRate mb_flow "Mass flows across boundaries"; + Modelica.Units.SI.MassFlowRate[Medium.nXi] mbXi_flow "Substance mass flows across boundaries"; Medium.ExtraPropertyFlowRate[Medium.nC] mbC_flow "Trace substance mass flows across boundaries"; - Modelica.SIunits.EnthalpyFlowRate Hb_flow + Modelica.Units.SI.EnthalpyFlowRate Hb_flow "Enthalpy flow across boundaries or energy source/sink"; // Parameters that need to be defined by an extending class - parameter Modelica.SIunits.Volume fluidVolume "Volume"; - final parameter Modelica.SIunits.HeatCapacity CSen= - (mSenFac - 1)*rho_default*cp_default*fluidVolume + parameter Modelica.Units.SI.Volume fluidVolume "Volume"; + final parameter Modelica.Units.SI.HeatCapacity CSen=(mSenFac - 1)*rho_default + *cp_default*fluidVolume "Aditional heat capacity for implementing mFactor"; protected Medium.EnthalpyFlowRate ports_H_flow[nPorts]; - Modelica.SIunits.MassFlowRate ports_mXi_flow[nPorts,Medium.nXi]; + Modelica.Units.SI.MassFlowRate ports_mXi_flow[nPorts,Medium.nXi]; Medium.ExtraPropertyFlowRate ports_mC_flow[nPorts,Medium.nC]; - parameter Modelica.SIunits.SpecificHeatCapacity cp_default= - Medium.specificHeatCapacityCp(state=state_default) + parameter Modelica.Units.SI.SpecificHeatCapacity cp_default= + Medium.specificHeatCapacityCp(state=state_default) "Heat capacity, to compute additional dry mass"; - parameter Modelica.SIunits.Density rho_start=Medium.density( - Medium.setState_pTX( - T=T_start, - p=p_start, - X=X_start[1:Medium.nXi])) "Density, used to compute fluid mass"; + parameter Modelica.Units.SI.Density rho_start=Medium.density( + Medium.setState_pTX( + T=T_start, + p=p_start, + X=X_start[1:Medium.nXi])) "Density, used to compute fluid mass"; // Parameter for avoiding extra overhead calculations when CSen==0 final parameter Boolean computeCSen = abs(mSenFac-1) > Modelica.Constants.eps @@ -142,8 +137,8 @@ protected p=Medium.p_default, X=Medium.X_default[1:Medium.nXi]) "Medium state at default values"; // Density at medium default values, used to compute the size of control volumes - final parameter Modelica.SIunits.Density rho_default=Medium.density( - state=state_default) "Density, used to compute fluid mass"; + final parameter Modelica.Units.SI.Density rho_default=Medium.density(state= + state_default) "Density, used to compute fluid mass"; // Parameter that is used to construct the vector mXi_flow final parameter Real s[Medium.nXi] = {if Modelica.Utilities.Strings.isEqual( string1=Medium.substanceNames[i], @@ -151,9 +146,11 @@ protected caseSensitive=false) then 1 else 0 for i in 1:Medium.nXi} "Vector with zero everywhere except where species is"; - parameter Modelica.SIunits.SpecificEnthalpy hStart= - Medium.specificEnthalpy_pTX(p_start, T_start, X_start) - "Start value for specific enthalpy"; + parameter Modelica.Units.SI.SpecificEnthalpy hStart= + Medium.specificEnthalpy_pTX( + p_start, + T_start, + X_start) "Start value for specific enthalpy"; // Set _simplify_mWat_flow == false for Glycol47; otherwise Dymola 2018FD01 // cannot differentiate the equations. @@ -170,19 +167,19 @@ initial equation // Assert that the substance with name 'water' has been found. assert(Medium.nXi == 0 or abs(sum(s)-1) < 1e-5, "In " + getInstanceName() + ": - If Medium.nXi > 1, then substance 'water' must be present for one component of '" + If Medium.nXi > 1, then substance 'water' must be present for one component of '" + Medium.mediumName + "'. - Check medium model."); + Check medium model."); // Make sure that if energyDynamics is SteadyState, then // massDynamics is also SteadyState. // Otherwise, the system of ordinary differential equations may be inconsistent. if energyDynamics == Modelica.Fluid.Types.Dynamics.SteadyState then assert(massDynamics == energyDynamics, "In " + getInstanceName() + ": - If 'massDynamics == Modelica.Fluid.Types.Dynamics.SteadyState', then it is - required that 'energyDynamics==Modelica.Fluid.Types.Dynamics.SteadyState'. - Otherwise, the system of equations may not be consistent. - You need to select other parameter values."); + If 'massDynamics == Modelica.Fluid.Types.Dynamics.SteadyState', then it is + required that 'energyDynamics==Modelica.Fluid.Types.Dynamics.SteadyState'. + Otherwise, the system of equations may not be consistent. + You need to select other parameter values."); end if; // initialization of balances @@ -327,374 +324,374 @@ equation mCOut=mC; annotation ( Documentation(info=" -

                        -Basic model for an ideally mixed fluid volume with the ability to store mass and energy. -It implements a dynamic or a steady-state conservation equation for energy and mass fractions. -The model has zero pressure drop between its ports. -

                        -

                        -If the constant simplify_mWat_flow = true then adding -moisture does not increase the mass of the volume or the leaving mass flow rate. -It does however change the mass fraction medium.Xi. -This allows to decouple the moisture balance from the pressure drop equations. -If simplify_mWat_flow = false, then -the outlet mass flow rate is -mout = min (1 + Δ Xw), -where -Δ Xw is the change in water vapor mass -fraction across the component. In this case, -this component couples -the energy calculation to the -pressure drop versus mass flow rate calculations. -However, in typical building HVAC systems, -Δ Xw < 0.005 kg/kg. -Hence, by tolerating a relative error of 0.005 in the mass balance, -one can decouple these equations. -Decoupling these equations avoids having -to compute the energy balance of the humidifier -and its upstream components when solving for the -pressure drop of downstream components. -Therefore, the default value is simplify_mWat_flow = true. -

                        -

                        Typical use and important parameters

                        -

                        -Set the parameter use_mWat_flow_in=true to enable an -input connector for mWat_flow. -Otherwise, the model uses mWat_flow = 0. -

                        -

                        -If the constant simplify_mWat_flow = true, which is its default value, -then the equation -

                        -
                        -  port_a.m_flow + port_b.m_flow = - mWat_flow;
                        -
                        -

                        -is simplified as -

                        -
                        -  port_a.m_flow + port_b.m_flow = 0;
                        -
                        -

                        -This causes an error in the mass balance of about 0.5%, but generally leads to -simpler equations because the pressure drop equations are then decoupled from the -mass exchange in this component. -The model - -AixLib.Fluid.MixingVolumes.Validation.MixingVolumeAdiabaticCooling -shows that the relative error on the temperature difference between these -two options of simplify_mWat_flow is less than -0.1%. -

                        - -

                        Implementation

                        -

                        -When extending or instantiating this model, the input -fluidVolume, which is the actual volume occupied by the fluid, -needs to be assigned. -For most components, this can be set to a parameter. -

                        -Input connectors of the model are -
                          -
                        • -Q_flow, which is the sensible plus latent heat flow rate added to the medium, -
                        • -
                        • -mWat_flow, which is the moisture mass flow rate added to the medium, and -
                        • -
                        • -C_flow, which is the trace substance mass flow rate added to the medium. -
                        • -
                        - -

                        -The model can be used as a dynamic model or as a steady-state model. -However, for a steady-state model with exactly two fluid ports connected, -the model - -AixLib.Fluid.Interfaces.StaticTwoPortConservationEquation -provides a more efficient implementation. -

                        -

                        -For a model that instantiates this model, see - -AixLib.Fluid.MixingVolumes.MixingVolume. -

                        -", revisions=" -
                          -
                        • -April 26, 2019, by Filip Jorissen:
                          -Returning getInstanceName() in asserts. -This is for 1133. -
                        • -
                        • -April 16, 2019, by Michael Wetter:
                          -Changed computation of computeCSen to avoid the volume to become -a structural parameter.
                          -This is for AixLib, issue 1122. -
                        • -
                        • -April 16, 2018, by Michael Wetter:
                          -Reformulated mass calculation so that Dymola can differentiate the equations.
                          -This is for AixLib, issue 910. -
                        • -
                        • -November 3, 2017, by Michael Wetter:
                          -Set start attributes.
                          -This is for 727. -
                        • -
                        • -October 19, 2017, by Michael Wetter:
                          -Changed initialization of pressure from a constant to a parameter.
                          -This is for -Buildings, issue 1013. -
                        • -
                        • -January 27, 2017, by Michael Wetter:
                          -Added stateSelect for mass m.
                          -This is for -Buildings, #642. -
                        • -
                        • -December 22, 2016, by Michael Wetter:
                          -Set nominal value for U.
                          -This is for 637. -
                        • -
                        • -February 19, 2016 by Filip Jorissen:
                          -Added outputs UOut, mOut, mXiOut, mCOut for being able to -check conservation of quantities. -This is for -issue 247. -
                        • -
                        • -January 17, 2016, by Michael Wetter:
                          -Added parameter use_C_flow and converted C_flow -to a conditionally removed connector. -This is for -#372. -
                        • -
                        • -December 16, 2015, by Michael Wetter:
                          -Added C_flow to the steady-state trace substance balance, -and removed the units of C_flow to allow for PPM. -
                        • -
                        • -December 2, 2015, by Filip Jorissen:
                          -Added input C_flow and code for handling trace substance insertions. -
                        • -
                        • -September 3, 2015, by Filip Jorissen and Michael Wetter:
                          -Revised implementation for allowing moisture mass flow rate -to be approximated using parameter simplify_mWat_flow. -This may lead to smaller algebraic loops. -This is for -#247. -
                        • -
                        • -July 17, 2015, by Michael Wetter:
                          -Added constant simplify_mWat_flow to remove dependencies of the pressure drop -calculation on the moisture balance. -
                        • -
                        • -June 5, 2015 by Michael Wetter:
                          -Removed preferredMediumStates= false in -the instance medium as the default -is already false. -This is for -#260. -
                        • -
                        • -June 5, 2015 by Filip Jorissen:
                          -Removed
                          -Xi(start=X_start[1:Medium.nXi],
                          -       each stateSelect=if (not (substanceDynamics == Modelica.Fluid.Types.Dynamics.SteadyState))
                          -       then StateSelect.prefer else StateSelect.default),
                          -
                          -and set -preferredMediumStates = false -because the previous declaration led to more equations and -translation problems in large models. -This is for -#260. -
                        • -
                        • -June 5, 2015, by Michael Wetter:
                          -Moved assignment of dynBal.U.start -from instance dynBal of PartialMixingVolume -to this model implementation. -This is required for a pedantic model check in Dymola 2016. -It addresses - -issue 266. -This revison also renames the protected variable -rho_nominal to rho_start -as it depends on the start values and not the nominal values. -
                        • -
                        • -May 22, 2015 by Michael Wetter:
                          -Removed
                          -p(stateSelect=if not (massDynamics == Modelica.Fluid.Types.Dynamics.SteadyState)
                          -then StateSelect.prefer else StateSelect.default)
                          -
                          -because the previous declaration led to the translation error -
                          -The model requires derivatives of some inputs as listed below:
                          -1 inlet.m_flow
                          -1 inlet.p
                          -
                          -when translating -Buildings.Fluid.FMI.ExportContainers.Examples.FMUs.HeaterCooler_u -with a dynamic energy balance. -
                        • -
                        • -May 6, 2015, by Michael Wetter:
                          -Corrected documentation. -
                        • -
                        • -April 13, 2015, by Filip Jorissen:
                          -Now using semiLinear() function for calculation of -ports_H_flow. This enables Dymola to simplify based on -the min and max attribute of the mass flow rate. -
                        • -
                        • -February 16, 2015, by Filip Jorissen:
                          -Fixed SteadyState massDynamics implementation for compressible media. -Mass m is now constant. -
                        • -
                        • -February 5, 2015, by Michael Wetter:
                          -Changed initalize_p from a parameter to a -constant. This is only required in finite volume models -of heat exchangers (to avoid consistent but redundant initial conditions) -and hence it should be set as a constant. -
                        • -
                        • -February 3, 2015, by Michael Wetter:
                          -Removed stateSelect.prefer for temperature. -This is for -#160. -
                        • -
                        • -October 21, 2014, by Filip Jorissen:
                          -Added parameter mFactor to increase the thermal capacity. -
                        • -
                        • -October 6, 2014, by Michael Wetter:
                          -Changed medium declaration in ports to be final. -
                        • -
                        • -October 6, 2014, by Michael Wetter:
                          -Set start attributes in medium to avoid in OpenModelica the warning -alias set with several free start values. -
                        • -
                        • -October 3, 2014, by Michael Wetter:
                          -Changed assignment of nominal value to avoid in OpenModelica the warning -alias set with different nominal values. -
                        • -
                        • -July 3, 2014, by Michael Wetter:
                          -Added parameter initialize_p. This is required -to enable the coil models to initialize the pressure in the first -volume, but not in the downstream volumes. Otherwise, -the initial equations will be overdetermined, but consistent. -This change was done to avoid a long information message that appears -when translating models. -
                        • -
                        • -May 29, 2014, by Michael Wetter:
                          -Removed undesirable annotation Evaluate=true. -
                        • -
                        • -February 11, 2014 by Michael Wetter:
                          -Improved documentation for Q_flow input. -
                        • -
                        • -September 17, 2013 by Michael Wetter:
                          -Added start value for hOut. -
                        • -
                        • -September 10, 2013 by Michael Wetter:
                          -Removed unrequired parameter i_w.
                          -Corrected the syntax error -Medium.ExtraProperty C[Medium.nC](each nominal=C_nominal) -to -Medium.ExtraProperty C[Medium.nC](nominal=C_nominal) -because C_nominal is a vector. -This syntax error caused a compilation error in OpenModelica. -
                        • -
                        • -July 30, 2013 by Michael Wetter:
                          -Changed connector mXi_flow[Medium.nXi] -to a scalar input connector mWat_flow. -The reason is that mXi_flow does not allow -to compute the other components in mX_flow and -therefore leads to an ambiguous use of the model. -By only requesting mWat_flow, the mass balance -and species balance can be implemented correctly. -
                        • -
                        • -March 27, 2013 by Michael Wetter:
                          -Removed wrong unit attribute of COut, -and added min and max attributes for XiOut. -
                        • -
                        • -July 31, 2011 by Michael Wetter:
                          -Added test to stop model translation if the setting for -energyBalance and massBalance -can lead to inconsistent equations. -
                        • -
                        • -July 26, 2011 by Michael Wetter:
                          -Removed the option to use h_start, as this -is not needed for building simulation. -Also removed the reference to Modelica.Fluid.System. -Moved parameters and medium to - -AixLib.Fluid.Interfaces.LumpedVolumeDeclarations. -
                        • -
                        • -July 14, 2011 by Michael Wetter:
                          -Added start value for medium density. -
                        • -
                        • -March 29, 2011 by Michael Wetter:
                          -Changed default value for substanceDynamics and -traceDynamics from energyDynamics -to massDynamics. -
                        • -
                        • -September 28, 2010 by Michael Wetter:
                          -Changed array index for nominal value of Xi. -
                        • -
                        • -September 13, 2010 by Michael Wetter:
                          -Set nominal attributes for medium based on default medium values. -
                        • -
                        • -July 30, 2010 by Michael Wetter:
                          -Added parameter C_nominal which is used as the nominal attribute for C. -Without this value, the ODE solver gives wrong results for concentrations around 1E-7. -
                        • -
                        • -March 21, 2010 by Michael Wetter:
                          -Changed pressure start value from system.p_start -to Medium.p_default since HVAC models may have water and -air, which are typically at different pressures. -
                        • -
                        • February 6, 2010 by Michael Wetter:
                          -Added to Medium.BaseProperties the initialization -X(start=X_start[1:Medium.nX]). Previously, the initialization -was only done for Xi but not for X, which caused the -medium to be initialized to reference_X, ignoring the value of X_start. -
                        • -
                        • October 12, 2009 by Michael Wetter:
                          -Implemented first version in Buildings library, based on model from -Modelica.Fluid 1.0. -
                        • -
                        -"), +

                        + Basic model for an ideally mixed fluid volume with the ability to store mass and energy. + It implements a dynamic or a steady-state conservation equation for energy and mass fractions. + The model has zero pressure drop between its ports. +

                        +

                        + If the constant simplify_mWat_flow = true then adding + moisture does not increase the mass of the volume or the leaving mass flow rate. + It does however change the mass fraction medium.Xi. + This allows to decouple the moisture balance from the pressure drop equations. + If simplify_mWat_flow = false, then + the outlet mass flow rate is + mout = min (1 + Δ Xw), + where + Δ Xw is the change in water vapor mass + fraction across the component. In this case, + this component couples + the energy calculation to the + pressure drop versus mass flow rate calculations. + However, in typical building HVAC systems, + Δ Xw < 0.005 kg/kg. + Hence, by tolerating a relative error of 0.005 in the mass balance, + one can decouple these equations. + Decoupling these equations avoids having + to compute the energy balance of the humidifier + and its upstream components when solving for the + pressure drop of downstream components. + Therefore, the default value is simplify_mWat_flow = true. +

                        +

                        Typical use and important parameters

                        +

                        + Set the parameter use_mWat_flow_in=true to enable an + input connector for mWat_flow. + Otherwise, the model uses mWat_flow = 0. +

                        +

                        + If the constant simplify_mWat_flow = true, which is its default value, + then the equation +

                        +
                        +   port_a.m_flow + port_b.m_flow = - mWat_flow;
                        + 
                        +

                        + is simplified as +

                        +
                        +   port_a.m_flow + port_b.m_flow = 0;
                        + 
                        +

                        + This causes an error in the mass balance of about 0.5%, but generally leads to + simpler equations because the pressure drop equations are then decoupled from the + mass exchange in this component. + The model + + AixLib.Fluid.MixingVolumes.Validation.MixingVolumeAdiabaticCooling + shows that the relative error on the temperature difference between these + two options of simplify_mWat_flow is less than + 0.1%. +

                        + +

                        Implementation

                        +

                        + When extending or instantiating this model, the input + fluidVolume, which is the actual volume occupied by the fluid, + needs to be assigned. + For most components, this can be set to a parameter. +

                        + Input connectors of the model are +
                          +
                        • + Q_flow, which is the sensible plus latent heat flow rate added to the medium, +
                        • +
                        • + mWat_flow, which is the moisture mass flow rate added to the medium, and +
                        • +
                        • + C_flow, which is the trace substance mass flow rate added to the medium. +
                        • +
                        + +

                        + The model can be used as a dynamic model or as a steady-state model. + However, for a steady-state model with exactly two fluid ports connected, + the model + + AixLib.Fluid.Interfaces.StaticTwoPortConservationEquation + provides a more efficient implementation. +

                        +

                        + For a model that instantiates this model, see + + AixLib.Fluid.MixingVolumes.MixingVolume. +

                        + ",revisions=" +
                          +
                        • + April 26, 2019, by Filip Jorissen:
                          + Returning getInstanceName() in asserts. + This is for 1133. +
                        • +
                        • + April 16, 2019, by Michael Wetter:
                          + Changed computation of computeCSen to avoid the volume to become + a structural parameter.
                          + This is for IBPSA, issue 1122. +
                        • +
                        • + April 16, 2018, by Michael Wetter:
                          + Reformulated mass calculation so that Dymola can differentiate the equations.
                          + This is for IBPSA, issue 910. +
                        • +
                        • + November 3, 2017, by Michael Wetter:
                          + Set start attributes.
                          + This is for 727. +
                        • +
                        • + October 19, 2017, by Michael Wetter:
                          + Changed initialization of pressure from a constant to a parameter.
                          + This is for + Buildings, issue 1013. +
                        • +
                        • + January 27, 2017, by Michael Wetter:
                          + Added stateSelect for mass m.
                          + This is for + Buildings, #642. +
                        • +
                        • + December 22, 2016, by Michael Wetter:
                          + Set nominal value for U.
                          + This is for 637. +
                        • +
                        • + February 19, 2016 by Filip Jorissen:
                          + Added outputs UOut, mOut, mXiOut, mCOut for being able to + check conservation of quantities. + This is for + issue 247. +
                        • +
                        • + January 17, 2016, by Michael Wetter:
                          + Added parameter use_C_flow and converted C_flow + to a conditionally removed connector. + This is for + #372. +
                        • +
                        • + December 16, 2015, by Michael Wetter:
                          + Added C_flow to the steady-state trace substance balance, + and removed the units of C_flow to allow for PPM. +
                        • +
                        • + December 2, 2015, by Filip Jorissen:
                          + Added input C_flow and code for handling trace substance insertions. +
                        • +
                        • + September 3, 2015, by Filip Jorissen and Michael Wetter:
                          + Revised implementation for allowing moisture mass flow rate + to be approximated using parameter simplify_mWat_flow. + This may lead to smaller algebraic loops. + This is for + #247. +
                        • +
                        • + July 17, 2015, by Michael Wetter:
                          + Added constant simplify_mWat_flow to remove dependencies of the pressure drop + calculation on the moisture balance. +
                        • +
                        • + June 5, 2015 by Michael Wetter:
                          + Removed preferredMediumStates= false in + the instance medium as the default + is already false. + This is for + #260. +
                        • +
                        • + June 5, 2015 by Filip Jorissen:
                          + Removed
                          + Xi(start=X_start[1:Medium.nXi],
                          +        each stateSelect=if (not (substanceDynamics == Modelica.Fluid.Types.Dynamics.SteadyState))
                          +        then StateSelect.prefer else StateSelect.default),
                          + 
                          + and set + preferredMediumStates = false + because the previous declaration led to more equations and + translation problems in large models. + This is for + #260. +
                        • +
                        • + June 5, 2015, by Michael Wetter:
                          + Moved assignment of dynBal.U.start + from instance dynBal of PartialMixingVolume + to this model implementation. + This is required for a pedantic model check in Dymola 2016. + It addresses + + issue 266. + This revison also renames the protected variable + rho_nominal to rho_start + as it depends on the start values and not the nominal values. +
                        • +
                        • + May 22, 2015 by Michael Wetter:
                          + Removed
                          + p(stateSelect=if not (massDynamics == Modelica.Fluid.Types.Dynamics.SteadyState)
                          + then StateSelect.prefer else StateSelect.default)
                          + 
                          + because the previous declaration led to the translation error +
                          + The model requires derivatives of some inputs as listed below:
                          + 1 inlet.m_flow
                          + 1 inlet.p
                          + 
                          + when translating + Buildings.Fluid.FMI.ExportContainers.Examples.FMUs.HeaterCooler_u + with a dynamic energy balance. +
                        • +
                        • + May 6, 2015, by Michael Wetter:
                          + Corrected documentation. +
                        • +
                        • + April 13, 2015, by Filip Jorissen:
                          + Now using semiLinear() function for calculation of + ports_H_flow. This enables Dymola to simplify based on + the min and max attribute of the mass flow rate. +
                        • +
                        • + February 16, 2015, by Filip Jorissen:
                          + Fixed SteadyState massDynamics implementation for compressible media. + Mass m is now constant. +
                        • +
                        • + February 5, 2015, by Michael Wetter:
                          + Changed initalize_p from a parameter to a + constant. This is only required in finite volume models + of heat exchangers (to avoid consistent but redundant initial conditions) + and hence it should be set as a constant. +
                        • +
                        • + February 3, 2015, by Michael Wetter:
                          + Removed stateSelect.prefer for temperature. + This is for + #160. +
                        • +
                        • + October 21, 2014, by Filip Jorissen:
                          + Added parameter mFactor to increase the thermal capacity. +
                        • +
                        • + October 6, 2014, by Michael Wetter:
                          + Changed medium declaration in ports to be final. +
                        • +
                        • + October 6, 2014, by Michael Wetter:
                          + Set start attributes in medium to avoid in OpenModelica the warning + alias set with several free start values. +
                        • +
                        • + October 3, 2014, by Michael Wetter:
                          + Changed assignment of nominal value to avoid in OpenModelica the warning + alias set with different nominal values. +
                        • +
                        • + July 3, 2014, by Michael Wetter:
                          + Added parameter initialize_p. This is required + to enable the coil models to initialize the pressure in the first + volume, but not in the downstream volumes. Otherwise, + the initial equations will be overdetermined, but consistent. + This change was done to avoid a long information message that appears + when translating models. +
                        • +
                        • + May 29, 2014, by Michael Wetter:
                          + Removed undesirable annotation Evaluate=true. +
                        • +
                        • + February 11, 2014 by Michael Wetter:
                          + Improved documentation for Q_flow input. +
                        • +
                        • + September 17, 2013 by Michael Wetter:
                          + Added start value for hOut. +
                        • +
                        • + September 10, 2013 by Michael Wetter:
                          + Removed unrequired parameter i_w.
                          + Corrected the syntax error + Medium.ExtraProperty C[Medium.nC](each nominal=C_nominal) + to + Medium.ExtraProperty C[Medium.nC](nominal=C_nominal) + because C_nominal is a vector. + This syntax error caused a compilation error in OpenModelica. +
                        • +
                        • + July 30, 2013 by Michael Wetter:
                          + Changed connector mXi_flow[Medium.nXi] + to a scalar input connector mWat_flow. + The reason is that mXi_flow does not allow + to compute the other components in mX_flow and + therefore leads to an ambiguous use of the model. + By only requesting mWat_flow, the mass balance + and species balance can be implemented correctly. +
                        • +
                        • + March 27, 2013 by Michael Wetter:
                          + Removed wrong unit attribute of COut, + and added min and max attributes for XiOut. +
                        • +
                        • + July 31, 2011 by Michael Wetter:
                          + Added test to stop model translation if the setting for + energyBalance and massBalance + can lead to inconsistent equations. +
                        • +
                        • + July 26, 2011 by Michael Wetter:
                          + Removed the option to use h_start, as this + is not needed for building simulation. + Also removed the reference to Modelica.Fluid.System. + Moved parameters and medium to + + AixLib.Fluid.Interfaces.LumpedVolumeDeclarations. +
                        • +
                        • + July 14, 2011 by Michael Wetter:
                          + Added start value for medium density. +
                        • +
                        • + March 29, 2011 by Michael Wetter:
                          + Changed default value for substanceDynamics and + traceDynamics from energyDynamics + to massDynamics. +
                        • +
                        • + September 28, 2010 by Michael Wetter:
                          + Changed array index for nominal value of Xi. +
                        • +
                        • + September 13, 2010 by Michael Wetter:
                          + Set nominal attributes for medium based on default medium values. +
                        • +
                        • + July 30, 2010 by Michael Wetter:
                          + Added parameter C_nominal which is used as the nominal attribute for C. + Without this value, the ODE solver gives wrong results for concentrations around 1E-7. +
                        • +
                        • + March 21, 2010 by Michael Wetter:
                          + Changed pressure start value from system.p_start + to Medium.p_default since HVAC models may have water and + air, which are typically at different pressures. +
                        • +
                        • February 6, 2010 by Michael Wetter:
                          + Added to Medium.BaseProperties the initialization + X(start=X_start[1:Medium.nX]). Previously, the initialization + was only done for Xi but not for X, which caused the + medium to be initialized to reference_X, ignoring the value of X_start. +
                        • +
                        • October 12, 2009 by Michael Wetter:
                          + Implemented first version in Buildings library, based on model from + Modelica.Fluid 1.0. +
                        • +
                        + "), Icon(graphics={ Rectangle( extent={{-100,100},{100,-100}}, fillColor={135,135,135}, @@ -702,11 +699,11 @@ Implemented first version in Buildings library, based on model from pattern=LinePattern.None), Text( extent={{-89,17},{-54,34}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="mWat_flow"), Text( extent={{-89,52},{-54,69}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="Q_flow"), Line(points={{-56,-73},{81,-73}}, color={255,255,255}), Line(points={{-42,55},{-42,-84}}, color={255,255,255}), @@ -726,6 +723,7 @@ Implemented first version in Buildings library, based on model from smooth=Smooth.Bezier), Text( extent={{-155,-120},{145,-160}}, - lineColor={0,0,255}, - textString="%name")})); + textColor={0,0,255}, + textString="%name")}), + __Dymola_LockedEditing="Model from IBPSA"); end ConservationEquation; diff --git a/AixLib/Fluid/Interfaces/EightPort.mo b/AixLib/Fluid/Interfaces/EightPort.mo index 8d03e62153..67d0abeb46 100644 --- a/AixLib/Fluid/Interfaces/EightPort.mo +++ b/AixLib/Fluid/Interfaces/EightPort.mo @@ -55,35 +55,35 @@ partial model EightPort "Partial model with eight ports" "= true to allow flow reversal in medium 4, false restricts to design direction (port_a -> port_b)" annotation(Dialog(tab="Assumptions"), Evaluate=true); - parameter Modelica.SIunits.SpecificEnthalpy h_outflow_a1_start = Medium1.h_default + parameter Modelica.Units.SI.SpecificEnthalpy h_outflow_a1_start=Medium1.h_default "Start value for enthalpy flowing out of port a1" annotation (Dialog(tab="Advanced", group="Initialization")); - parameter Modelica.SIunits.SpecificEnthalpy h_outflow_b1_start = Medium1.h_default + parameter Modelica.Units.SI.SpecificEnthalpy h_outflow_b1_start=Medium1.h_default "Start value for enthalpy flowing out of port b1" annotation (Dialog(tab="Advanced", group="Initialization")); - parameter Modelica.SIunits.SpecificEnthalpy h_outflow_a2_start = Medium2.h_default + parameter Modelica.Units.SI.SpecificEnthalpy h_outflow_a2_start=Medium2.h_default "Start value for enthalpy flowing out of port a2" annotation (Dialog(tab="Advanced", group="Initialization")); - parameter Modelica.SIunits.SpecificEnthalpy h_outflow_b2_start = Medium2.h_default + parameter Modelica.Units.SI.SpecificEnthalpy h_outflow_b2_start=Medium2.h_default "Start value for enthalpy flowing out of port b2" annotation (Dialog(tab="Advanced", group="Initialization")); - parameter Modelica.SIunits.SpecificEnthalpy h_outflow_a3_start = Medium3.h_default + parameter Modelica.Units.SI.SpecificEnthalpy h_outflow_a3_start=Medium3.h_default "Start value for enthalpy flowing out of port a1" annotation (Dialog(tab="Advanced", group="Initialization")); - parameter Modelica.SIunits.SpecificEnthalpy h_outflow_b3_start = Medium3.h_default + parameter Modelica.Units.SI.SpecificEnthalpy h_outflow_b3_start=Medium3.h_default "Start value for enthalpy flowing out of port b1" annotation (Dialog(tab="Advanced", group="Initialization")); - parameter Modelica.SIunits.SpecificEnthalpy h_outflow_a4_start = Medium4.h_default + parameter Modelica.Units.SI.SpecificEnthalpy h_outflow_a4_start=Medium4.h_default "Start value for enthalpy flowing out of port a1" annotation (Dialog(tab="Advanced", group="Initialization")); - parameter Modelica.SIunits.SpecificEnthalpy h_outflow_b4_start = Medium4.h_default + parameter Modelica.Units.SI.SpecificEnthalpy h_outflow_b4_start=Medium4.h_default "Start value for enthalpy flowing out of port b1" annotation (Dialog(tab="Advanced", group="Initialization")); @@ -144,30 +144,31 @@ partial model EightPort "Partial model with eight ports" annotation ( preferredView="info", Documentation(info=" -

                        This model defines an interface for components with eight ports. The parameters allowFlowReversal1, - allowFlowReversal2, allowFlowReversal3 and allowFlowReversal4 -may be used by models that extend this model to treat flow reversal.

                        -

                        This model is identical to Modelica.Fluid.Interfaces.PartialTwoPort, except that it has eight ports.

                        -", revisions=" -
                          -
                        • -January 18, 2019, by Jianjun Hu:
                          -Limited the media choice. -See #1050. -
                        • -
                        • July 2014, by Damien Picard:
                          First implementation.
                        • -
                        -"), +

                        This model defines an interface for components with eight ports. The parameters allowFlowReversal1, + allowFlowReversal2, allowFlowReversal3 and allowFlowReversal4 + may be used by models that extend this model to treat flow reversal.

                        +

                        This model is identical to Modelica.Fluid.Interfaces.PartialTwoPort, except that it has eight ports.

                        + ",revisions=" +
                          +
                        • + January 18, 2019, by Jianjun Hu:
                          + Limited the media choice. + See #1050. +
                        • +
                        • July 2014, by Damien Picard:
                          First implementation.
                        • +
                        + "), Icon(coordinateSystem( preserveAspectRatio=false, extent={{-100,-100},{100,100}}, grid={1,1}), graphics={Text( extent={{-151,147},{149,107}}, - lineColor={0,0,255}, + textColor={0,0,255}, fillPattern=FillPattern.HorizontalCylinder, fillColor={0,127,255}, textString="%name")}), Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{ 100,100}}), - graphics)); + graphics), + __Dymola_LockedEditing="Model from IBPSA"); end EightPort; diff --git a/AixLib/Fluid/Interfaces/EightPortFlowResistanceParameters.mo b/AixLib/Fluid/Interfaces/EightPortFlowResistanceParameters.mo index 6efed453f0..28a8e6a72f 100644 --- a/AixLib/Fluid/Interfaces/EightPortFlowResistanceParameters.mo +++ b/AixLib/Fluid/Interfaces/EightPortFlowResistanceParameters.mo @@ -10,8 +10,8 @@ record EightPortFlowResistanceParameters "= true, use m_flow = f(dp) else dp = f(m_flow)" annotation (Evaluate=true, Dialog(enable = computeFlowResistance1, tab="Flow resistance", group="Medium 1")); - parameter Modelica.SIunits.Pressure dp1_nominal(min=0, displayUnit="Pa") - "Pressure" annotation(Dialog(group = "Nominal condition")); + parameter Modelica.Units.SI.Pressure dp1_nominal(min=0, displayUnit="Pa") + "Pressure" annotation (Dialog(group="Nominal condition")); parameter Boolean linearizeFlowResistance1 = false "= true, use linear relation between m_flow and dp for any flow rate" annotation(Dialog(enable = computeFlowResistance1, @@ -28,8 +28,8 @@ record EightPortFlowResistanceParameters "= true, use m_flow = f(dp) else dp = f(m_flow)" annotation (Evaluate=true, Dialog(enable = computeFlowResistance2, tab="Flow resistance", group="Medium 2")); - parameter Modelica.SIunits.Pressure dp2_nominal(min=0, displayUnit="Pa") - "Pressure" annotation(Dialog(group = "Nominal condition")); + parameter Modelica.Units.SI.Pressure dp2_nominal(min=0, displayUnit="Pa") + "Pressure" annotation (Dialog(group="Nominal condition")); parameter Boolean linearizeFlowResistance2 = false "= true, use linear relation between m_flow and dp for any flow rate" annotation(Dialog(enable = computeFlowResistance2, @@ -46,8 +46,8 @@ record EightPortFlowResistanceParameters "= true, use m_flow = f(dp) else dp = f(m_flow)" annotation (Evaluate=true, Dialog(enable = computeFlowResistance3, tab="Flow resistance", group="Medium 3")); - parameter Modelica.SIunits.Pressure dp3_nominal(min=0, displayUnit="Pa") - "Pressure" annotation(Dialog(group = "Nominal condition")); + parameter Modelica.Units.SI.Pressure dp3_nominal(min=0, displayUnit="Pa") + "Pressure" annotation (Dialog(group="Nominal condition")); parameter Boolean linearizeFlowResistance3 = false "= true, use linear relation between m_flow and dp for any flow rate" annotation(Dialog(enable = computeFlowResistance3, @@ -64,8 +64,8 @@ record EightPortFlowResistanceParameters "= true, use m_flow = f(dp) else dp = f(m_flow)" annotation (Evaluate=true, Dialog(enable = computeFlowResistance4, tab="Flow resistance", group="Medium 4")); - parameter Modelica.SIunits.Pressure dp4_nominal(min=0, displayUnit="Pa") - "Pressure" annotation(Dialog(group = "Nominal condition")); + parameter Modelica.Units.SI.Pressure dp4_nominal(min=0, displayUnit="Pa") + "Pressure" annotation (Dialog(group="Nominal condition")); parameter Boolean linearizeFlowResistance4 = false "= true, use linear relation between m_flow and dp for any flow rate" annotation(Dialog(enable = computeFlowResistance4, @@ -77,22 +77,23 @@ record EightPortFlowResistanceParameters annotation (preferredView="info", Documentation(info=" -

                        -This class contains parameters that are used to -compute the pressure drop in components that have four fluid streams. -Note that the nominal mass flow rate is not declared here because -the model - -PartialHeightPortInterface -already declares it. -

                        -", +

                        + This class contains parameters that are used to + compute the pressure drop in components that have four fluid streams. + Note that the nominal mass flow rate is not declared here because + the model + + PartialHeightPortInterface + already declares it. +

                        + ", revisions=" -
                          -
                        • -January 28, 2015, by Damien Picard:
                          -First implementation. -
                        • -
                        -")); +
                          +
                        • + January 28, 2015, by Damien Picard:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end EightPortFlowResistanceParameters; diff --git a/AixLib/Fluid/Interfaces/EightPortHeatMassExchanger.mo b/AixLib/Fluid/Interfaces/EightPortHeatMassExchanger.mo index 1ebe8e1cea..f807497f3b 100644 --- a/AixLib/Fluid/Interfaces/EightPortHeatMassExchanger.mo +++ b/AixLib/Fluid/Interfaces/EightPortHeatMassExchanger.mo @@ -17,22 +17,19 @@ model EightPortHeatMassExchanger constant Boolean homotopyInitialization = true "= true, use homotopy method" annotation(HideResult=true); - parameter Modelica.SIunits.Time tau1 = 30 "Time constant at nominal flow" - annotation (Dialog(tab = "Dynamics", group="Nominal condition")); - parameter Modelica.SIunits.Time tau2 = 30 "Time constant at nominal flow" - annotation (Dialog(tab = "Dynamics", group="Nominal condition")); - parameter Modelica.SIunits.Time tau3 = 30 "Time constant at nominal flow" - annotation (Dialog(tab = "Dynamics", group="Nominal condition")); - parameter Modelica.SIunits.Time tau4 = 30 "Time constant at nominal flow" - annotation (Dialog(tab = "Dynamics", group="Nominal condition")); + parameter Modelica.Units.SI.Time tau1=30 "Time constant at nominal flow" + annotation (Dialog(tab="Dynamics", group="Nominal condition")); + parameter Modelica.Units.SI.Time tau2=30 "Time constant at nominal flow" + annotation (Dialog(tab="Dynamics", group="Nominal condition")); + parameter Modelica.Units.SI.Time tau3=30 "Time constant at nominal flow" + annotation (Dialog(tab="Dynamics", group="Nominal condition")); + parameter Modelica.Units.SI.Time tau4=30 "Time constant at nominal flow" + annotation (Dialog(tab="Dynamics", group="Nominal condition")); // Assumptions parameter Modelica.Fluid.Types.Dynamics energyDynamics=Modelica.Fluid.Types.Dynamics.DynamicFreeInitial "Formulation of energy balance" - annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Equations")); - parameter Modelica.Fluid.Types.Dynamics massDynamics=energyDynamics - "Formulation of mass balance" - annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Equations")); + annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Conservation equations")); // Initialization parameter Medium1.AbsolutePressure p1_start = Medium1.p_default @@ -107,13 +104,13 @@ model EightPortHeatMassExchanger "Nominal value of trace substances. (Set to typical order of magnitude.)" annotation (Dialog(tab="Initialization", group = "Medium 4", enable=Medium4.nC > 0)); - Modelica.SIunits.HeatFlowRate Q1_flow = vol1.heatPort.Q_flow + Modelica.Units.SI.HeatFlowRate Q1_flow=vol1.heatPort.Q_flow "Heat flow rate into medium 1"; - Modelica.SIunits.HeatFlowRate Q2_flow = vol2.heatPort.Q_flow + Modelica.Units.SI.HeatFlowRate Q2_flow=vol2.heatPort.Q_flow "Heat flow rate into medium 2"; - Modelica.SIunits.HeatFlowRate Q3_flow = vol3.heatPort.Q_flow + Modelica.Units.SI.HeatFlowRate Q3_flow=vol3.heatPort.Q_flow "Heat flow rate into medium 1"; - Modelica.SIunits.HeatFlowRate Q4_flow = vol4.heatPort.Q_flow + Modelica.Units.SI.HeatFlowRate Q4_flow=vol4.heatPort.Q_flow "Heat flow rate into medium 2"; AixLib.Fluid.MixingVolumes.MixingVolume vol1( @@ -125,7 +122,7 @@ model EightPortHeatMassExchanger then energyDynamics else Modelica.Fluid.Types.Dynamics.SteadyState, massDynamics=if tau1 > Modelica.Constants.eps - then massDynamics else + then energyDynamics else Modelica.Fluid.Types.Dynamics.SteadyState, final p_start=p1_start, final T_start=T1_start, @@ -142,7 +139,7 @@ model EightPortHeatMassExchanger then energyDynamics else Modelica.Fluid.Types.Dynamics.SteadyState, massDynamics=if tau2 > Modelica.Constants.eps - then massDynamics else + then energyDynamics else Modelica.Fluid.Types.Dynamics.SteadyState, final p_start=p2_start, final T_start=T2_start, @@ -160,7 +157,7 @@ model EightPortHeatMassExchanger then energyDynamics else Modelica.Fluid.Types.Dynamics.SteadyState, massDynamics=if tau3 > Modelica.Constants.eps - then massDynamics else + then energyDynamics else Modelica.Fluid.Types.Dynamics.SteadyState, final p_start=p3_start, final T_start=T3_start, @@ -181,7 +178,7 @@ model EightPortHeatMassExchanger then energyDynamics else Modelica.Fluid.Types.Dynamics.SteadyState, massDynamics=if tau4 > Modelica.Constants.eps - then massDynamics else + then energyDynamics else Modelica.Fluid.Types.Dynamics.SteadyState, final p_start=p4_start, final T_start=T4_start, @@ -242,36 +239,40 @@ model EightPortHeatMassExchanger protected parameter Medium1.ThermodynamicState sta1_nominal=Medium1.setState_pTX( T=Medium1.T_default, p=Medium1.p_default, X=Medium1.X_default); - parameter Modelica.SIunits.Density rho1_nominal=Medium1.density(sta1_nominal) + parameter Modelica.Units.SI.Density rho1_nominal=Medium1.density(sta1_nominal) "Density, used to compute fluid volume"; parameter Medium2.ThermodynamicState sta2_nominal=Medium2.setState_pTX( T=Medium2.T_default, p=Medium2.p_default, X=Medium2.X_default); - parameter Modelica.SIunits.Density rho2_nominal=Medium2.density(sta2_nominal) + parameter Modelica.Units.SI.Density rho2_nominal=Medium2.density(sta2_nominal) "Density, used to compute fluid volume"; parameter Medium1.ThermodynamicState sta3_nominal=Medium3.setState_pTX( T=Medium3.T_default, p=Medium3.p_default, X=Medium3.X_default); - parameter Modelica.SIunits.Density rho3_nominal=Medium3.density(sta3_nominal) + parameter Modelica.Units.SI.Density rho3_nominal=Medium3.density(sta3_nominal) "Density, used to compute fluid volume"; parameter Medium4.ThermodynamicState sta4_nominal=Medium4.setState_pTX( T=Medium4.T_default, p=Medium4.p_default, X=Medium4.X_default); - parameter Modelica.SIunits.Density rho4_nominal=Medium4.density(sta4_nominal) + parameter Modelica.Units.SI.Density rho4_nominal=Medium4.density(sta4_nominal) "Density, used to compute fluid volume"; parameter Medium1.ThermodynamicState sta1_start=Medium1.setState_pTX( T=T1_start, p=p1_start, X=X1_start); - parameter Modelica.SIunits.SpecificEnthalpy h1_outflow_start = Medium1.specificEnthalpy(sta1_start) + parameter Modelica.Units.SI.SpecificEnthalpy h1_outflow_start= + Medium1.specificEnthalpy(sta1_start) "Start value for outflowing enthalpy"; parameter Medium2.ThermodynamicState sta2_start=Medium2.setState_pTX( T=T2_start, p=p2_start, X=X2_start); - parameter Modelica.SIunits.SpecificEnthalpy h2_outflow_start = Medium2.specificEnthalpy(sta2_start) + parameter Modelica.Units.SI.SpecificEnthalpy h2_outflow_start= + Medium2.specificEnthalpy(sta2_start) "Start value for outflowing enthalpy"; parameter Medium3.ThermodynamicState sta3_start=Medium3.setState_pTX( T=T3_start, p=p3_start, X=X3_start); - parameter Modelica.SIunits.SpecificEnthalpy h3_outflow_start = Medium3.specificEnthalpy(sta3_start) + parameter Modelica.Units.SI.SpecificEnthalpy h3_outflow_start= + Medium3.specificEnthalpy(sta3_start) "Start value for outflowing enthalpy"; parameter Medium4.ThermodynamicState sta4_start=Medium4.setState_pTX( T=T4_start, p=p4_start, X=X4_start); - parameter Modelica.SIunits.SpecificEnthalpy h4_outflow_start = Medium4.specificEnthalpy(sta4_start) + parameter Modelica.Units.SI.SpecificEnthalpy h4_outflow_start= + Medium4.specificEnthalpy(sta4_start) "Start value for outflowing enthalpy"; initial algorithm @@ -279,49 +280,29 @@ initial algorithm assert((energyDynamics == Modelica.Fluid.Types.Dynamics.SteadyState) or tau1 > Modelica.Constants.eps, "The parameter tau1, or the volume of the model from which tau may be derived, is unreasonably small. - You need to set energyDynamics == Modelica.Fluid.Types.Dynamics.SteadyState to model steady-state. - Received tau1 = " + String(tau1) + "\n"); - assert((massDynamics == Modelica.Fluid.Types.Dynamics.SteadyState) or - tau1 > Modelica.Constants.eps, -"The parameter tau1, or the volume of the model from which tau may be derived, is unreasonably small. - You need to set massDynamics == Modelica.Fluid.Types.Dynamics.SteadyState to model steady-state. - Received tau1 = " + String(tau1) + "\n"); + You need to set energyDynamics == Modelica.Fluid.Types.Dynamics.SteadyState to model steady-state. + Received tau1 = "+ String(tau1) + "\n"); // Check for tau2 assert((energyDynamics == Modelica.Fluid.Types.Dynamics.SteadyState) or tau2 > Modelica.Constants.eps, "The parameter tau2, or the volume of the model from which tau may be derived, is unreasonably small. - You need to set energyDynamics == Modelica.Fluid.Types.Dynamics.SteadyState to model steady-state. - Received tau2 = " + String(tau2) + "\n"); - assert((massDynamics == Modelica.Fluid.Types.Dynamics.SteadyState) or - tau2 > Modelica.Constants.eps, -"The parameter tau2, or the volume of the model from which tau may be derived, is unreasonably small. - You need to set massDynamics == Modelica.Fluid.Types.Dynamics.SteadyState to model steady-state. - Received tau2 = " + String(tau2) + "\n"); + You need to set energyDynamics == Modelica.Fluid.Types.Dynamics.SteadyState to model steady-state. + Received tau2 = "+ String(tau2) + "\n"); // Check for tau1 assert((energyDynamics == Modelica.Fluid.Types.Dynamics.SteadyState) or tau3 > Modelica.Constants.eps, "The parameter tau3, or the volume of the model from which tau may be derived, is unreasonably small. - You need to set energyDynamics == Modelica.Fluid.Types.Dynamics.SteadyState to model steady-state. - Received tau3 = " + String(tau3) + "\n"); - assert((massDynamics == Modelica.Fluid.Types.Dynamics.SteadyState) or - tau3 > Modelica.Constants.eps, -"The parameter tau3, or the volume of the model from which tau may be derived, is unreasonably small. - You need to set massDynamics == Modelica.Fluid.Types.Dynamics.SteadyState to model steady-state. - Received tau3 = " + String(tau3) + "\n"); + You need to set energyDynamics == Modelica.Fluid.Types.Dynamics.SteadyState to model steady-state. + Received tau3 = "+ String(tau3) + "\n"); // Check for tau2 assert((energyDynamics == Modelica.Fluid.Types.Dynamics.SteadyState) or tau4 > Modelica.Constants.eps, "The parameter tau4, or the volume of the model from which tau may be derived, is unreasonably small. - You need to set energyDynamics == Modelica.Fluid.Types.Dynamics.SteadyState to model steady-state. - Received tau4 = " + String(tau4) + "\n"); - assert((massDynamics == Modelica.Fluid.Types.Dynamics.SteadyState) or - tau4 > Modelica.Constants.eps, -"The parameter tau4, or the volume of the model from which tau may be derived, is unreasonably small. - You need to set massDynamics == Modelica.Fluid.Types.Dynamics.SteadyState to model steady-state. - Received tau4 = " + String(tau4) + "\n"); + You need to set energyDynamics == Modelica.Fluid.Types.Dynamics.SteadyState to model steady-state. + Received tau4 = "+ String(tau4) + "\n"); assert(homotopyInitialization, "In " + getInstanceName() + ": The constant homotopyInitialization has been modified from its default value. This constant will be removed in future releases.", @@ -329,7 +310,7 @@ initial algorithm equation connect(vol1.ports[2], port_b1) annotation (Line( - points={{2,80},{100,80}}, + points={{1,80},{100,80}}, color={0,127,255}, smooth=Smooth.None)); connect(port_a1, preDro1.port_a) annotation (Line( @@ -337,7 +318,7 @@ equation color={0,127,255}, smooth=Smooth.None)); connect(preDro1.port_b, vol1.ports[1]) annotation (Line( - points={{-60,80},{-2,80}}, + points={{-60,80},{-1,80}}, color={0,127,255}, smooth=Smooth.None)); connect(port_a2, preDro2.port_a) annotation (Line( @@ -349,11 +330,11 @@ equation color={0,127,255}, smooth=Smooth.None)); connect(preDro4.port_b, vol4.ports[1]) annotation (Line( - points={{66,-80},{-58,-80},{-58,-10}}, + points={{66,-80},{-59,-80},{-59,-10}}, color={0,127,255}, smooth=Smooth.None)); connect(port_b4, vol4.ports[2]) annotation (Line( - points={{-100,-80},{-62,-80},{-62,-10}}, + points={{-100,-80},{-61,-80},{-61,-10}}, color={0,127,255}, smooth=Smooth.None)); connect(port_a3, preDro3.port_a) annotation (Line( @@ -361,44 +342,44 @@ equation color={0,127,255}, smooth=Smooth.None)); connect(preDro3.port_b, vol3.ports[1]) annotation (Line( - points={{-70,-32},{-54,-32},{-54,-76},{-2,-76},{-2,-70}}, + points={{-70,-32},{-54,-32},{-54,-76},{-1,-76},{-1,-70}}, color={0,127,255}, smooth=Smooth.None)); connect(port_b3, vol3.ports[2]) annotation (Line( - points={{100,-30},{90,-30},{90,-66},{62,-66},{62,-76},{2,-76},{2,-70}}, + points={{100,-30},{90,-30},{90,-66},{62,-66},{62,-76},{1,-76},{1,-70}}, color={0,127,255}, smooth=Smooth.None)); connect(port_b2, vol2.ports[1]) annotation (Line( - points={{-100,30},{58,30},{58,10}}, + points={{-100,30},{59,30},{59,10}}, color={0,127,255}, smooth=Smooth.None)); connect(preDro2.port_b, vol2.ports[2]) annotation (Line( - points={{70,30},{62,30},{62,10}}, + points={{70,30},{61,30},{61,10}}, color={0,127,255}, smooth=Smooth.None)); annotation ( Documentation(info=" -

                        This component transports four fluid streams between eight ports. It provides the basic model for implementing a dynamic heat exchanger.

                        -

                        The model can be used as-is, although there will be no heat or mass transfer between the four fluid streams. To add heat transfer, heat flow can be added to the heat port of the four volumes.

                        -

                        Implementation

                        -

                        The variable names follow the conventions used in Modelica.Fluid.Examples.HeatExchanger.BaseClasses.BasicHX.

                        -", revisions=" -
                          -
                        • -April 14, 2020, by Michael Wetter:
                          -Changed homotopyInitialization to a constant.
                          -This is for -AixLib, #1341. -
                        • -
                        • -July 18, 2018, by Massimo Cimmino:
                          -Remove start values of m_flow and dp variables. -
                        • -
                        -
                          -
                        • July 2014, by Damien Picard:
                          First implementation.
                        • -
                        -"), +

                        This component transports four fluid streams between eight ports. It provides the basic model for implementing a dynamic heat exchanger.

                        +

                        The model can be used as-is, although there will be no heat or mass transfer between the four fluid streams. To add heat transfer, heat flow can be added to the heat port of the four volumes.

                        +

                        Implementation

                        +

                        The variable names follow the conventions used in Modelica.Fluid.Examples.HeatExchanger.BaseClasses.BasicHX.

                        + ",revisions=" +
                          +
                        • + April 14, 2020, by Michael Wetter:
                          + Changed homotopyInitialization to a constant.
                          + This is for + IBPSA, #1341. +
                        • +
                        • + July 18, 2018, by Massimo Cimmino:
                          + Remove start values of m_flow and dp variables. +
                        • +
                        +
                          +
                        • July 2014, by Damien Picard:
                          First implementation.
                        • +
                        + "), Icon(coordinateSystem( preserveAspectRatio=false, extent={{-100,-100},{100,100}}, @@ -434,5 +415,6 @@ Remove start values of m_flow and dp variables. fillColor={0,0,0}, fillPattern=FillPattern.Solid)}), Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{ - 100,100}}), graphics)); + 100,100}}), graphics), + __Dymola_LockedEditing="Model from IBPSA"); end EightPortHeatMassExchanger; diff --git a/AixLib/Fluid/Interfaces/Examples/BaseClasses/PrescribedOutletState.mo b/AixLib/Fluid/Interfaces/Examples/BaseClasses/PrescribedOutletState.mo index 4c028a0619..96dd6f9d52 100644 --- a/AixLib/Fluid/Interfaces/Examples/BaseClasses/PrescribedOutletState.mo +++ b/AixLib/Fluid/Interfaces/Examples/BaseClasses/PrescribedOutletState.mo @@ -4,7 +4,7 @@ partial model PrescribedOutletState "Test model for prescribed outlet state" replaceable package Medium = AixLib.Media.Air constrainedby Modelica.Media.Interfaces.PartialMedium "Medium model"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal=0.1 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=0.1 "Nominal mass flow rate"; AixLib.Fluid.Sources.Boundary_pT sin( @@ -148,37 +148,38 @@ equation annotation (Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-140, -120},{120,160}})), Documentation(info=" -

                        -Model that is used as the base class for models that -demonstrates the use of an ideal heater and an ideal cooler, -or an ideal humidifier and dehumidifier. -

                        -

                        -The model on the top has almost unlimited positive capacity (Q_flow_nominal = 1.0e10 Watts), -and hence its outlet temperature always reaches the set points. -

                        -

                        -The model in the middle has a limited negative capacitiy (Q_flow_nominal = 1000 Watts), and hence -its outlet state reaches only a limited value corresponding to its -maximum negative capacity. -

                        -

                        -The model at the bottom has unlimited capacity. -

                        -

                        -At t=1000 second, the flow reverses its direction. -

                        -

                        -Each flow leg has the same mass flow rate. There are three mass flow sources -as using one source only would yield a nonlinear system of equations that -needs to be solved to determine the mass flow rate distribution. -

                        -", revisions=" -
                          -
                        • -May 3, 2017, by Michael Wetter:
                          -First implementation. -
                        • -
                        -")); +

                        + Model that is used as the base class for models that + demonstrates the use of an ideal heater and an ideal cooler, + or an ideal humidifier and dehumidifier. +

                        +

                        + The model on the top has almost unlimited positive capacity (Q_flow_nominal = 1.0e10 Watts), + and hence its outlet temperature always reaches the set points. +

                        +

                        + The model in the middle has a limited negative capacitiy (Q_flow_nominal = 1000 Watts), and hence + its outlet state reaches only a limited value corresponding to its + maximum negative capacity. +

                        +

                        + The model at the bottom has unlimited capacity. +

                        +

                        + At t=1000 second, the flow reverses its direction. +

                        +

                        + Each flow leg has the same mass flow rate. There are three mass flow sources + as using one source only would yield a nonlinear system of equations that + needs to be solved to determine the mass flow rate distribution. +

                        + ",revisions=" +
                          +
                        • + May 3, 2017, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end PrescribedOutletState; diff --git a/AixLib/Fluid/Interfaces/Examples/ConservationEquation.mo b/AixLib/Fluid/Interfaces/Examples/ConservationEquation.mo index 48db12cdaf..13d3ea030e 100644 --- a/AixLib/Fluid/Interfaces/Examples/ConservationEquation.mo +++ b/AixLib/Fluid/Interfaces/Examples/ConservationEquation.mo @@ -92,27 +92,28 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Interfaces/Examples/ConservationEquation.mos" "Simulate and plot"), Documentation(info=" -

                        -Model that tests the conservation equations that are used -for the heat and mass balance. -

                        -", +

                        + Model that tests the conservation equations that are used + for the heat and mass balance. +

                        + ", revisions=" -
                          -
                        • -June 23, 2018, by Filip Jorissen:
                          -Added prescribedHeatFlowRate=true since -this model prescribes the heat flow rate. -
                        • -
                        • -January 22, 2016 by Michael Wetter:
                          -Updated model to use the new parameter use_mWat_flow -rather than sensibleOnly. -
                        • -
                        • -September 11, 2013, by Michael Wetter:
                          -First implementation. -
                        • -
                        -")); +
                          +
                        • + June 23, 2018, by Filip Jorissen:
                          + Added prescribedHeatFlowRate=true since + this model prescribes the heat flow rate. +
                        • +
                        • + January 22, 2016 by Michael Wetter:
                          + Updated model to use the new parameter use_mWat_flow + rather than sensibleOnly. +
                        • +
                        • + September 11, 2013, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end ConservationEquation; diff --git a/AixLib/Fluid/Interfaces/Examples/EightPortHeatMassExchanger.mo b/AixLib/Fluid/Interfaces/Examples/EightPortHeatMassExchanger.mo index 3f621c4eae..dcd6f08700 100644 --- a/AixLib/Fluid/Interfaces/Examples/EightPortHeatMassExchanger.mo +++ b/AixLib/Fluid/Interfaces/Examples/EightPortHeatMassExchanger.mo @@ -3,7 +3,7 @@ model EightPortHeatMassExchanger "EightPortHeatMassExchanger example model" extends Modelica.Icons.Example; package Medium = AixLib.Media.Water; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal=1 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=1 "Nominal mass flow rate"; Sources.Boundary_pT sin( redeclare package Medium = Medium, nPorts=4) @@ -101,20 +101,20 @@ equation connect(eigPor.port_a4, sin.ports[4]) annotation (Line(points={{10,2},{16,2}, {16,-50},{3,-50}}, color={0,127,255})); annotation ( Documentation(info=" -

                        -This example model demonstrates the use of the -EightPortHeatMassExchanger model. -

                        -", revisions=" -
                          -
                        • -July 18, 2018, by Massimo Cimmino:
                          -First implementation. -
                        • -
                        -"), +

                        + This example model demonstrates the use of the + EightPortHeatMassExchanger model. +

                        + ",revisions=" +
                          +
                        • + July 18, 2018, by Massimo Cimmino:
                          + First implementation. +
                        • +
                        + "), experiment(Tolerance=1e-6, StopTime=5), -__Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/Interfaces/Examples/EightPortHeatMassExchanger.mos" - "Simulate and plot")); +__Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Interfaces/Examples/EightPortHeatMassExchanger.mos" + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end EightPortHeatMassExchanger; diff --git a/AixLib/Fluid/Interfaces/Examples/FourPortHeatMassExchanger.mo b/AixLib/Fluid/Interfaces/Examples/FourPortHeatMassExchanger.mo index 62aa754d4b..62a75fec9b 100644 --- a/AixLib/Fluid/Interfaces/Examples/FourPortHeatMassExchanger.mo +++ b/AixLib/Fluid/Interfaces/Examples/FourPortHeatMassExchanger.mo @@ -3,7 +3,7 @@ model FourPortHeatMassExchanger "FourPortHeatMassExchanger example model" extends Modelica.Icons.Example; package Medium = AixLib.Media.Water; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal=1 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=1 "Nominal mass flow rate"; AixLib.Fluid.Interfaces.FourPortHeatMassExchanger fouPor( @@ -59,20 +59,20 @@ equation connect(ram_T.y, sou1.T_in) annotation (Line(points={{-69,0},{-66,0},{-66,14}, {-62,14}}, color={0,0,127})); annotation ( Documentation(info=" -

                        -This example model demonstrates the used of the -FourPortHeatMassExchanger model. -

                        -", revisions=" -
                          -
                        • -January 2, 2017, by Filip Jorissen:
                          -First implementation. -
                        • -
                        -"), +

                        + This example model demonstrates the used of the + FourPortHeatMassExchanger model. +

                        + ",revisions=" +
                          +
                        • + January 2, 2017, by Filip Jorissen:
                          + First implementation. +
                        • +
                        + "), experiment(Tolerance=1e-6, StopTime=5), -__Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/Interfaces/Examples/FourPortHeatMassExchanger.mos" - "Simulate and plot")); +__Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Interfaces/Examples/FourPortHeatMassExchanger.mos" + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end FourPortHeatMassExchanger; diff --git a/AixLib/Fluid/Interfaces/Examples/HeaterCooler_u.mo b/AixLib/Fluid/Interfaces/Examples/HeaterCooler_u.mo index 5259c252ae..4a80ce8de9 100644 --- a/AixLib/Fluid/Interfaces/Examples/HeaterCooler_u.mo +++ b/AixLib/Fluid/Interfaces/Examples/HeaterCooler_u.mo @@ -10,8 +10,7 @@ model HeaterCooler_u Q_flow_nominal=5000, m_flow_nominal=0.5, dp_nominal=200, - energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, - massDynamics=Modelica.Fluid.Types.Dynamics.DynamicFreeInitial) + energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial) "Heater and cooler" annotation (Placement( transformation(extent={{-14,90},{6,110}}))); Modelica.Blocks.Sources.Constant TDb(k=293.15) "Drybulb temperature" @@ -63,8 +62,7 @@ model HeaterCooler_u Q_flow_nominal=5000, m_flow_nominal=0.5, dp_nominal=200, - energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, - massDynamics=Modelica.Fluid.Types.Dynamics.DynamicFreeInitial) + energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial) "Heater and cooler" annotation (Placement( transformation(extent={{-14,-30},{6,-10}}))); AixLib.Fluid.FixedResistances.PressureDrop res_2( @@ -107,8 +105,7 @@ model HeaterCooler_u Q_flow_nominal=5000, m_flow_nominal=0.5, dp_nominal=200, - energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, - massDynamics=Modelica.Fluid.Types.Dynamics.DynamicFreeInitial) + energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial) "Heater and cooler" annotation (Placement( transformation(extent={{-10,-190},{10,-170}}))); AixLib.Fluid.FixedResistances.PressureDrop res_1( @@ -134,8 +131,7 @@ model HeaterCooler_u Q_flow_nominal=5000, m_flow_nominal=0.5, dp_nominal=200, - energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, - massDynamics=Modelica.Fluid.Types.Dynamics.DynamicFreeInitial) + energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial) "Heater and cooler" annotation (Placement( transformation(extent={{-10,-330},{10,-310}}))); AixLib.Fluid.FixedResistances.PressureDrop res_6( @@ -301,34 +297,34 @@ equation connect(gain.y, hea7.u) annotation (Line(points={{-29,184},{-20,184},{-20, -314},{-14,-314},{-12,-314}}, color={0,0,127})); connect(sin_1.ports[1], res_12.port_a) annotation (Line( - points={{-148,145},{-124,145},{-124,144},{-100,144}}, + points={{-148,140.5},{-124,140.5},{-124,144},{-100,144}}, color={0,127,255})); connect(sin_1.ports[2], res_3.port_a) annotation (Line( - points={{-148,143},{-124,143},{-124,32},{-100,32}}, + points={{-148,141.5},{-124,141.5},{-124,32},{-100,32}}, color={0,127,255})); connect(sou_1.ports[1], res_11.port_a) annotation (Line( - points={{-150,103},{-125,103},{-125,100},{-100,100}}, + points={{-150,98.5},{-125,98.5},{-125,100},{-100,100}}, color={0,127,255})); connect(sou_1.ports[2], res_2.port_a) annotation (Line( - points={{-150,101},{-128,101},{-128,-20},{-100,-20}}, + points={{-150,99.5},{-128,99.5},{-128,-20},{-100,-20}}, color={0,127,255})); connect(sin_1.ports[3], res_1.port_a) annotation (Line( - points={{-148,141},{-128,141},{-128,-180},{-100,-180}}, + points={{-148,142.5},{-128,142.5},{-128,-180},{-100,-180}}, color={0,127,255})); connect(sin_1.ports[4], res_6.port_a) annotation (Line( - points={{-148,139},{-128,139},{-128,-320},{-100,-320}}, + points={{-148,143.5},{-128,143.5},{-128,-320},{-100,-320}}, color={0,127,255})); connect(sou_1.ports[3], res_5.port_a) annotation (Line( - points={{-150,99},{-124,99},{-124,-120},{-100,-120}}, + points={{-150,100.5},{-124,100.5},{-124,-120},{-100,-120}}, color={0,127,255})); connect(sou_1.ports[4], res_7.port_a) annotation (Line( - points={{-150,97},{-124,97},{-124,-260},{-100,-260}}, + points={{-150,101.5},{-124,101.5},{-124,-260},{-100,-260}}, color={0,127,255})); connect(mix1.ports[1], res_4.port_a) annotation (Line( - points={{70,-20},{110,-20},{110,32},{100,32}}, + points={{71,-20},{110,-20},{110,32},{100,32}}, color={0,127,255})); connect(mix2.ports[1], res_8.port_a) annotation (Line( - points={{68,-320},{106,-320},{106,-260},{100,-260}}, + points={{69,-320},{106,-320},{106,-260},{100,-260}}, color={0,127,255})); connect(senTem1a.T,che1. u1) annotation (Line( points={{-40,108.8},{-40,122},{140,122},{140,176},{158,176}}, @@ -421,7 +417,7 @@ equation points={{6,-20},{20,-20}}, color={0,127,255})); connect(senTem3b.port_b, mix1.ports[2]) annotation (Line( - points={{40,-20},{74,-20}}, + points={{40,-20},{73,-20}}, color={0,127,255})); connect(hea4.port_b, senTem4b.port_a) annotation (Line( points={{40,32},{50,32}}, @@ -469,7 +465,7 @@ equation points={{60,-260},{80,-260}}, color={0,127,255})); connect(mix2.ports[2], senTem7b.port_b) annotation (Line( - points={{72,-320},{40,-320}}, + points={{71,-320},{40,-320}}, color={0,127,255})); connect(senTem7b.port_a, hea7.port_b) annotation (Line( points={{20,-320},{10,-320}}, @@ -483,55 +479,56 @@ equation annotation(Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-200, -400},{200,240}}), graphics={Text( extent={{32,232},{160,190}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="Temperature check"), Text( extent={{-188,-20},{-38,-84}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="Same system as above, but with flow reversed")}), experiment(Tolerance=1e-6, StopTime=3600), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Interfaces/Examples/HeaterCooler_u.mos" "Simulate and plot"), Documentation(info=" -

                        Model that tests the basic class that is used for the heater models. -It adds and removes heat for forward and reverse flow. -The top and bottom models should give similar results, -although the sign of the temperature difference over the components -differ because of the reverse flow. -The model computes differences in results that are expected to be -close to each other after the initial transients decayed. -All temperature sensors are configured as steady-state sensors to avoid -differences in temperature due to the dynamic response of the sensor. -

                        -", +

                        Model that tests the basic class that is used for the heater models. + It adds and removes heat for forward and reverse flow. + The top and bottom models should give similar results, + although the sign of the temperature difference over the components + differ because of the reverse flow. + The model computes differences in results that are expected to be + close to each other after the initial transients decayed. + All temperature sensors are configured as steady-state sensors to avoid + differences in temperature due to the dynamic response of the sensor. +

                        + ", revisions=" -
                          -
                        • -November 2, 2016, by Michael Wetter:
                          -Changed assertions to blocks that compute the difference, -and added the difference to the regression results.
                          -This is for -issue 564. -
                        • -
                        • -May 30, 2014, by Michael Wetter:
                          -Changed initialization of mass dynamics to avoid overspecified system -of equations if the medium model is incompressible. -
                        • -
                        • -January 24, 2013, by Michael Wetter:
                          -Increased parameter startTime of the assert block -and set initial conditions to -Modelica.Fluid.Types.Dynamics.FixedInitial. -
                        • -
                        • -July 11, 2011, by Michael Wetter:
                          -Changed model to sensors with two fluid ports. -Moved model to AixLib.Fluid.Interfaces.Examples. -
                        • -
                        • -April 17, 2008, by Michael Wetter:
                          -First implementation. -
                        • -
                        -")); +
                          +
                        • + November 2, 2016, by Michael Wetter:
                          + Changed assertions to blocks that compute the difference, + and added the difference to the regression results.
                          + This is for + issue 564. +
                        • +
                        • + May 30, 2014, by Michael Wetter:
                          + Changed initialization of mass dynamics to avoid overspecified system + of equations if the medium model is incompressible. +
                        • +
                        • + January 24, 2013, by Michael Wetter:
                          + Increased parameter startTime of the assert block + and set initial conditions to + Modelica.Fluid.Types.Dynamics.FixedInitial. +
                        • +
                        • + July 11, 2011, by Michael Wetter:
                          + Changed model to sensors with two fluid ports. + Moved model to AixLib.Fluid.Interfaces.Examples. +
                        • +
                        • + April 17, 2008, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end HeaterCooler_u; diff --git a/AixLib/Fluid/Interfaces/Examples/Humidifier_u.mo b/AixLib/Fluid/Interfaces/Examples/Humidifier_u.mo index 140fc88981..819b90a419 100644 --- a/AixLib/Fluid/Interfaces/Examples/Humidifier_u.mo +++ b/AixLib/Fluid/Interfaces/Examples/Humidifier_u.mo @@ -3,7 +3,7 @@ model Humidifier_u extends Modelica.Icons.Example; package Medium = AixLib.Media.Air; - parameter Modelica.SIunits.MassFlowRate mWat_flow_nominal = 0.001 + parameter Modelica.Units.SI.MassFlowRate mWat_flow_nominal=0.001 "Nominal water mass flow rate"; Humidifier hea1(redeclare package Medium = Medium, @@ -11,8 +11,7 @@ model Humidifier_u mWat_flow_nominal=mWat_flow_nominal, dp_nominal=50, show_T=true, - energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, - massDynamics=Modelica.Fluid.Types.Dynamics.DynamicFreeInitial) + energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial) "Heater and cooler" annotation (Placement( transformation(extent={{-54,92},{-34,112}}))); Modelica.Blocks.Sources.Constant TDb(k=293.15) "Drybulb temperature" @@ -66,8 +65,7 @@ model Humidifier_u mWat_flow_nominal=mWat_flow_nominal, dp_nominal=50, show_T=true, - energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, - massDynamics=Modelica.Fluid.Types.Dynamics.DynamicFreeInitial) + energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial) "Heater and cooler" annotation (Placement( transformation(extent={{-54,12},{-34,32}}))); AixLib.Fluid.FixedResistances.PressureDrop res_2( @@ -133,8 +131,7 @@ model Humidifier_u mWat_flow_nominal=mWat_flow_nominal, dp_nominal=50, show_T=true, - energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, - massDynamics=Modelica.Fluid.Types.Dynamics.DynamicFreeInitial) + energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial) "Heater and cooler" annotation (Placement( transformation(extent={{-54,-110},{-34,-90}}))); AixLib.Fluid.FixedResistances.PressureDrop res_1( @@ -162,8 +159,7 @@ model Humidifier_u mWat_flow_nominal=mWat_flow_nominal, dp_nominal=50, show_T=true, - energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, - massDynamics=Modelica.Fluid.Types.Dynamics.DynamicFreeInitial) + energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial) "Heater and cooler" annotation (Placement( transformation(extent={{-54,-190},{-34,-170}}))); AixLib.Fluid.FixedResistances.PressureDrop res_6( @@ -345,9 +341,9 @@ equation 102}}, color={0,127,255})); connect(u.y, hea1.u) annotation (Line(points={{-127,184},{-64,184},{-64,108},{ - -56,108}}, color={0,0,127})); + -55,108}}, color={0,0,127})); connect(gain.y, hea2.u) annotation (Line(points={{-29,184},{-22,184},{-22,150}, - {-14,150}}, color={0,0,127})); + {-13,150}}, color={0,0,127})); connect(u.y, gain.u) annotation (Line(points={{-127,184},{-52,184}}, color={0, 0,127})); connect(res_12.port_b, hea2.port_a) annotation (Line(points={{-80,144},{-12, @@ -356,9 +352,9 @@ equation color={0,127,255})); connect(u.y, hea3.u) annotation (Line(points={{-127,184},{-64,184},{-64,28},{ - -56,28}}, color={0,0,127})); + -55,28}}, color={0,0,127})); connect(gain.y, hea4.u) annotation (Line(points={{-29,184},{-22,184},{-22,70}, - {-14,70}}, color={0,0,127})); + {-13,70}}, color={0,0,127})); connect(res_3.port_b, hea4.port_a) annotation (Line(points={{-80,64},{-12,64}}, color={0,127,255})); connect(hea4.port_b, res_4.port_b) annotation (Line(points={{8,64},{20,64},{ @@ -429,13 +425,13 @@ equation annotation (Line(points={{145,-260},{152,-260},{152, -256},{158,-256}}, color={0,0,127})); connect(u.y, hea6.u) annotation (Line(points={{-127,184},{-70,184},{-70,-52}, - {-14,-52}}, color={0,0,127})); + {-13,-52}}, color={0,0,127})); connect(u.y, hea8.u) annotation (Line(points={{-127,184},{-70,184},{-70,-132}, - {-14,-132}}, color={0,0,127})); + {-13,-132}}, color={0,0,127})); connect(gain.y, hea5.u) annotation (Line(points={{-29,184},{-26,184},{-26,-80}, - {-60,-80},{-60,-94},{-56,-94}}, color={0,0,127})); + {-60,-80},{-60,-94},{-55,-94}}, color={0,0,127})); connect(gain.y, hea7.u) annotation (Line(points={{-29,184},{-26,184},{-26, - -160},{-64,-160},{-64,-174},{-56,-174}}, color={0,0,127})); + -160},{-64,-160},{-64,-174},{-55,-174}}, color={0,0,127})); connect(y21.y,che11. u1) annotation (Line(points={{325,160},{334,160},{334,156}, {338,156}}, color={0,0,127})); @@ -497,103 +493,104 @@ equation annotation (Line(points={{325,-260},{332,-260},{332, -256},{338,-256}}, color={0,0,127})); connect(sin_1.ports[1], res_12.port_a) annotation (Line( - points={{-148,147},{-106,147},{-106,144},{-100,144}}, + points={{-148,142.5},{-106,142.5},{-106,144},{-100,144}}, color={0,127,255})); connect(sin_1.ports[2], res_3.port_a) annotation (Line( - points={{-148,145},{-124,145},{-124,64},{-100,64}}, + points={{-148,143.5},{-124,143.5},{-124,64},{-100,64}}, color={0,127,255})); connect(sou_1.ports[1], res_11.port_a) annotation (Line( - points={{-148,105},{-107,105},{-107,102},{-100,102}}, + points={{-148,100.5},{-107,100.5},{-107,102},{-100,102}}, color={0,127,255})); connect(sou_1.ports[2], res_2.port_a) annotation (Line( - points={{-148,103},{-126,103},{-126,22},{-100,22}}, + points={{-148,101.5},{-126,101.5},{-126,22},{-100,22}}, color={0,127,255})); connect(sin_1.ports[3], res_1.port_a) annotation (Line( - points={{-148,143},{-130,143},{-130,-100},{-100,-100}}, + points={{-148,144.5},{-130,144.5},{-130,-100},{-100,-100}}, color={0,127,255})); connect(sin_1.ports[4], res_6.port_a) annotation (Line( - points={{-148,141},{-132,141},{-132,-180},{-100,-180}}, + points={{-148,145.5},{-132,145.5},{-132,-180},{-100,-180}}, color={0,127,255})); connect(sou_1.ports[3], res_5.port_a) annotation (Line( - points={{-148,101},{-140,101},{-140,-58},{-100,-58}}, + points={{-148,102.5},{-140,102.5},{-140,-58},{-100,-58}}, color={0,127,255})); connect(sou_1.ports[4], res_7.port_a) annotation (Line( - points={{-148,99},{-142,99},{-142,-138},{-100,-138}}, + points={{-148,103.5},{-142,103.5},{-142,-138},{-100,-138}}, color={0,127,255})); connect(hea3.port_b, mix1.ports[1]) annotation (Line( - points={{-34,22},{-12,22}}, + points={{-34,22},{-11,22}}, color={0,127,255})); connect(mix1.ports[2], res_4.port_a) annotation (Line( - points={{-8,22},{20,22},{20,30}}, + points={{-9,22},{20,22},{20,30}}, color={0,127,255})); connect(hea7.port_b, mix2.ports[1]) annotation (Line( - points={{-34,-180},{-12,-180}}, + points={{-34,-180},{-11,-180}}, color={0,127,255})); connect(mix2.ports[2], res_8.port_a) annotation (Line( - points={{-8,-180},{20,-180},{20,-172}}, + points={{-9,-180},{20,-180},{20,-172}}, color={0,127,255})); annotation(Diagram(coordinateSystem(preserveAspectRatio=true, extent={{-200, -320},{360,200}}), graphics={ Text( extent={{30,204},{158,162}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="Temperature check"), Text( extent={{220,198},{330,168}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="Humidity check"), Text( extent={{-198,-4},{-6,-38}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="Same models as above, but flow is reversed")}), experiment(Tolerance=1e-7, StopTime=3600), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Interfaces/Examples/Humidifier_u.mos" "Simulate and plot"), Documentation(info=" -

                        -Model that tests the basic class that is used for the humidifier model. -It adds and removes water for forward and reverse flow. -The top and bottom models should give similar results, although -the sign of the humidity difference over the components differ -because of the reverse flow. -The model computes differences of results that -are expected to be close to each other after the -initial transients decayed.

                        -", +

                        + Model that tests the basic class that is used for the humidifier model. + It adds and removes water for forward and reverse flow. + The top and bottom models should give similar results, although + the sign of the humidity difference over the components differ + because of the reverse flow. + The model computes differences of results that + are expected to be close to each other after the + initial transients decayed.

                        + ", revisions=" -
                          -
                        • -November 2, 2016, by Michael Wetter:
                          -Changed assertions to blocks that compute the difference, -and added the difference to the regression results.
                          -This is for -issue 564. -
                        • -
                        • -May 30, 2014, by Michael Wetter:
                          -Changed initialization of mass dynamics to avoid overspecified system -of equations if the medium model is incompressible. -
                        • -
                        • -October 9, 2013, by Michael Wetter:
                          -Introduced protected model Humidifier so that states at -the fluid ports can be computed without having to use a conditionally -removed variable. This is required for the model to pass the model check in -Dymola 2014 FD01 beta3 with Advanced.PedanticModelica=true;. -
                        • -
                        • -January 24, 2013, by Michael Wetter:
                          -Set initial conditions to -Modelica.Fluid.Types.Dynamics.FixedInitial. -
                        • -
                        • -July 11, 2011, by Michael Wetter:
                          -Moved model to AixLib.Fluid.Interfaces.Examples. -
                        • -
                        • -April 18, 2008, by Michael Wetter:
                          -First implementation. -
                        • -
                        -")); +
                          +
                        • + November 2, 2016, by Michael Wetter:
                          + Changed assertions to blocks that compute the difference, + and added the difference to the regression results.
                          + This is for + issue 564. +
                        • +
                        • + May 30, 2014, by Michael Wetter:
                          + Changed initialization of mass dynamics to avoid overspecified system + of equations if the medium model is incompressible. +
                        • +
                        • + October 9, 2013, by Michael Wetter:
                          + Introduced protected model Humidifier so that states at + the fluid ports can be computed without having to use a conditionally + removed variable. This is required for the model to pass the model check in + Dymola 2014 FD01 beta3 with Advanced.PedanticModelica=true;. +
                        • +
                        • + January 24, 2013, by Michael Wetter:
                          + Set initial conditions to + Modelica.Fluid.Types.Dynamics.FixedInitial. +
                        • +
                        • + July 11, 2011, by Michael Wetter:
                          + Moved model to AixLib.Fluid.Interfaces.Examples. +
                        • +
                        • + April 18, 2008, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end Humidifier_u; diff --git a/AixLib/Fluid/Interfaces/Examples/PrescribedOutlet.mo b/AixLib/Fluid/Interfaces/Examples/PrescribedOutlet.mo index a23ece62c5..92269f5040 100644 --- a/AixLib/Fluid/Interfaces/Examples/PrescribedOutlet.mo +++ b/AixLib/Fluid/Interfaces/Examples/PrescribedOutlet.mo @@ -26,24 +26,25 @@ equation __Dymola_Commands(file= "modelica://AixLib/Resources/Scripts/Dymola/Fluid/Interfaces/Examples/PrescribedOutlet.mos" "Simulate and plot"), Documentation(info=" -

                        -Model that demonstrates - -AixLib.Fluid.Interfaces.PrescribedOutlet -with mass fraction setpoint. -

                        -", revisions=" -
                          -
                        • -May 3, 2017, by Michael Wetter:
                          -Refactored model to allow X_wSet as an input.
                          -This is for -#763. -
                        • -
                        • -November 11, 2014, by Michael Wetter:
                          -First implementation. -
                        • -
                        -")); +

                        + Model that demonstrates + + AixLib.Fluid.Interfaces.PrescribedOutlet + with mass fraction setpoint. +

                        + ",revisions=" +
                          +
                        • + May 3, 2017, by Michael Wetter:
                          + Refactored model to allow X_wSet as an input.
                          + This is for + #763. +
                        • +
                        • + November 11, 2014, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end PrescribedOutlet; diff --git a/AixLib/Fluid/Interfaces/Examples/PrescribedOutlet_TSetOnly.mo b/AixLib/Fluid/Interfaces/Examples/PrescribedOutlet_TSetOnly.mo index bdd508e2ae..32928546f0 100644 --- a/AixLib/Fluid/Interfaces/Examples/PrescribedOutlet_TSetOnly.mo +++ b/AixLib/Fluid/Interfaces/Examples/PrescribedOutlet_TSetOnly.mo @@ -24,24 +24,25 @@ equation __Dymola_Commands(file= "modelica://AixLib/Resources/Scripts/Dymola/Fluid/Interfaces/Examples/PrescribedOutlet_TSetOnly.mos" "Simulate and plot"), Documentation(info=" -

                        -Model that demonstrates - -AixLib.Fluid.Interfaces.PrescribedOutlet -with temperature setpoint. -

                        -", revisions=" -
                          -
                        • -May 3, 2017, by Michael Wetter:
                          -Refactored model to allow X_wSet as an input.
                          -This is for -#763. -
                        • -
                        • -November 11, 2014, by Michael Wetter:
                          -First implementation. -
                        • -
                        -")); +

                        + Model that demonstrates + + AixLib.Fluid.Interfaces.PrescribedOutlet + with temperature setpoint. +

                        + ",revisions=" +
                          +
                        • + May 3, 2017, by Michael Wetter:
                          + Refactored model to allow X_wSet as an input.
                          + This is for + #763. +
                        • +
                        • + November 11, 2014, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end PrescribedOutlet_TSetOnly; diff --git a/AixLib/Fluid/Interfaces/Examples/PrescribedOutlet_Water.mo b/AixLib/Fluid/Interfaces/Examples/PrescribedOutlet_Water.mo index e25e4ea9d1..167e4aee46 100644 --- a/AixLib/Fluid/Interfaces/Examples/PrescribedOutlet_Water.mo +++ b/AixLib/Fluid/Interfaces/Examples/PrescribedOutlet_Water.mo @@ -26,24 +26,25 @@ equation __Dymola_Commands(file= "modelica://AixLib/Resources/Scripts/Dymola/Fluid/Interfaces/Examples/PrescribedOutlet_Water.mos" "Simulate and plot"), Documentation(info=" -

                        -Model that demonstrates - -AixLib.Fluid.Interfaces.PrescribedOutlet -with temperature setpoint and water as the medium. -

                        -", revisions=" -
                          -
                        • -May 3, 2017, by Michael Wetter:
                          -Refactored model to allow X_wSet as an input.
                          -This is for -#763. -
                        • -
                        • -November 11, 2014, by Michael Wetter:
                          -First implementation. -
                        • -
                        -")); +

                        + Model that demonstrates + + AixLib.Fluid.Interfaces.PrescribedOutlet + with temperature setpoint and water as the medium. +

                        + ",revisions=" +
                          +
                        • + May 3, 2017, by Michael Wetter:
                          + Refactored model to allow X_wSet as an input.
                          + This is for + #763. +
                        • +
                        • + November 11, 2014, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end PrescribedOutlet_Water; diff --git a/AixLib/Fluid/Interfaces/Examples/PrescribedOutlet_X_wSetOnly.mo b/AixLib/Fluid/Interfaces/Examples/PrescribedOutlet_X_wSetOnly.mo index c66bbf7aa9..4439202fbf 100644 --- a/AixLib/Fluid/Interfaces/Examples/PrescribedOutlet_X_wSetOnly.mo +++ b/AixLib/Fluid/Interfaces/Examples/PrescribedOutlet_X_wSetOnly.mo @@ -26,24 +26,25 @@ equation __Dymola_Commands(file= "modelica://AixLib/Resources/Scripts/Dymola/Fluid/Interfaces/Examples/PrescribedOutlet_X_wSetOnly.mos" "Simulate and plot"), Documentation(info=" -

                        -Model that demonstrates - -AixLib.Fluid.Interfaces.PrescribedOutlet -with mass fraction setpoint. -

                        -", revisions=" -
                          -
                        • -May 3, 2017, by Michael Wetter:
                          -Refactored model to allow X_wSet as an input.
                          -This is for -#763. -
                        • -
                        • -November 11, 2014, by Michael Wetter:
                          -First implementation. -
                        • -
                        -")); +

                        + Model that demonstrates + + AixLib.Fluid.Interfaces.PrescribedOutlet + with mass fraction setpoint. +

                        + ",revisions=" +
                          +
                        • + May 3, 2017, by Michael Wetter:
                          + Refactored model to allow X_wSet as an input.
                          + This is for + #763. +
                        • +
                        • + November 11, 2014, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end PrescribedOutlet_X_wSetOnly; diff --git a/AixLib/Fluid/Interfaces/Examples/ReverseFlowHumidifier.mo b/AixLib/Fluid/Interfaces/Examples/ReverseFlowHumidifier.mo index 7e244ed204..8e8ef328de 100644 --- a/AixLib/Fluid/Interfaces/Examples/ReverseFlowHumidifier.mo +++ b/AixLib/Fluid/Interfaces/Examples/ReverseFlowHumidifier.mo @@ -168,56 +168,57 @@ experiment(Tolerance=1e-6, StopTime=1), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Interfaces/Examples/ReverseFlowHumidifier.mos" "Simulate and plot"), Documentation(info=" -This model tests whether the results for a humidifer are -identical for forward flow and reverse flow. -", revisions=" -
                          -
                        • -September 20, 2020, by Michael Wetter:
                          -Updated model to use one port temperature sensor from Modelica Standard Library.
                          -This is for - #1399. -
                        • -
                        • -May 2, 2019, by Jianjun Hu:
                          -Replaced fluid source. This is for - #1072. -
                        • -
                        • -April 12, 2017, by Michael Wetter:
                          -Removed temperature connection that is no longer needed.
                          -This is for issue -Buildings #704. -
                        • -
                        • -November 2, 2016, by Michael Wetter:
                          -Changed assertions to blocks that compute the difference, -and added the difference to the regression results.
                          -This is for -issue 564. -
                        • -
                        • -October 9, 2013, by Michael Wetter:
                          -Replaced -Modelica.Fluid.Sources.FixedBoundary -with -AixLib.Fluid.Sources.FixedBoundary -as otherwise, the pedantic model check fails in -Dymola 2014 FD01 beta3. -
                        • -
                        • -July 5, 2013, by Michael Wetter:
                          -Changed one instance of Modelica.Fluid.Sources.MassFlowSource_T, -that was connected to the two fluid streams, -to two instances, each having half the mass flow rate. -This is required for the model to work with Modelica 3.2.1 due to the -change introduced in -ticket #739. -
                        • -
                        • -August 19, 2010, by Michael Wetter:
                          -First implementation based on a model from Giuliano Fontanella. -
                        • -
                        -")); + This model tests whether the results for a humidifer are + identical for forward flow and reverse flow. + ",revisions=" +
                          +
                        • + September 20, 2020, by Michael Wetter:
                          + Updated model to use one port temperature sensor from Modelica Standard Library.
                          + This is for + #1399. +
                        • +
                        • + May 2, 2019, by Jianjun Hu:
                          + Replaced fluid source. This is for + #1072. +
                        • +
                        • + April 12, 2017, by Michael Wetter:
                          + Removed temperature connection that is no longer needed.
                          + This is for issue + Buildings #704. +
                        • +
                        • + November 2, 2016, by Michael Wetter:
                          + Changed assertions to blocks that compute the difference, + and added the difference to the regression results.
                          + This is for + issue 564. +
                        • +
                        • + October 9, 2013, by Michael Wetter:
                          + Replaced + Modelica.Fluid.Sources.FixedBoundary + with + AixLib.Fluid.Sources.FixedBoundary + as otherwise, the pedantic model check fails in + Dymola 2014 FD01 beta3. +
                        • +
                        • + July 5, 2013, by Michael Wetter:
                          + Changed one instance of Modelica.Fluid.Sources.MassFlowSource_T, + that was connected to the two fluid streams, + to two instances, each having half the mass flow rate. + This is required for the model to work with Modelica 3.2.1 due to the + change introduced in + ticket #739. +
                        • +
                        • + August 19, 2010, by Michael Wetter:
                          + First implementation based on a model from Giuliano Fontanella. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end ReverseFlowHumidifier; diff --git a/AixLib/Fluid/Interfaces/Examples/ReverseFlowMassExchanger.mo b/AixLib/Fluid/Interfaces/Examples/ReverseFlowMassExchanger.mo index 1f32aa3512..acc0dff7bd 100644 --- a/AixLib/Fluid/Interfaces/Examples/ReverseFlowMassExchanger.mo +++ b/AixLib/Fluid/Interfaces/Examples/ReverseFlowMassExchanger.mo @@ -282,58 +282,59 @@ __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Interfa Diagram(coordinateSystem(preserveAspectRatio=true, extent={{-400,-200},{200, 200}})), Documentation(info=" -

                        -This model tests whether the results for a mass exchanger are -identical for forward flow and reverse flow. -

                        -

                        -Note that if the latent heat transfer effectiveness is non-zero, then -the results will differ. The reason is that the maximum capacity stream -is computed using the mass flow rates at port_a1 -and port_a2. For reverse flow, they are not equal if -moisture is added to the mass flow rate. Using an average mass flow rate -in computing the heat and moisture transfer would lead to identical results, -but it would introduce additional nonlinear equations that need to be solved. -Therefore, the model uses the mass flow rates at port_a1 -and port_a2. -

                        -

                        -Note: This problem fails to translate in Dymola 2012 due to an error in Dymola's support -of stream connector. This bug will be corrected in future versions of Dymola. -

                        -", revisions=" -
                          -
                        • -September 20, 2020, by Michael Wetter:
                          -Updated model to use one port temperature sensor from Modelica Standard Library.
                          -This is for - #1399. -
                        • -
                        • -May 2, 2019, by Jianjun Hu:
                          -Replaced fluid source. This is for - #1072. -
                        • -
                        • -November 2, 2016, by Michael Wetter:
                          -Changed assertions to blocks that compute the difference, -and added the difference to the regression results.
                          -This is for -issue 564. -
                        • -
                        • -October 9, 2013, by Michael Wetter:
                          -Replaced -Modelica.Fluid.Sources.FixedBoundary -with -AixLib.Fluid.Sources.FixedBoundary -as otherwise, the pedantic model check fails in -Dymola 2014 FD01 beta3. -
                        • -
                        • -August 19, 2010, by Michael Wetter:
                          -First implementation. -
                        • -
                        -")); +

                        + This model tests whether the results for a mass exchanger are + identical for forward flow and reverse flow. +

                        +

                        + Note that if the latent heat transfer effectiveness is non-zero, then + the results will differ. The reason is that the maximum capacity stream + is computed using the mass flow rates at port_a1 + and port_a2. For reverse flow, they are not equal if + moisture is added to the mass flow rate. Using an average mass flow rate + in computing the heat and moisture transfer would lead to identical results, + but it would introduce additional nonlinear equations that need to be solved. + Therefore, the model uses the mass flow rates at port_a1 + and port_a2. +

                        +

                        + Note: This problem fails to translate in Dymola 2012 due to an error in Dymola's support + of stream connector. This bug will be corrected in future versions of Dymola. +

                        + ",revisions=" +
                          +
                        • + September 20, 2020, by Michael Wetter:
                          + Updated model to use one port temperature sensor from Modelica Standard Library.
                          + This is for + #1399. +
                        • +
                        • + May 2, 2019, by Jianjun Hu:
                          + Replaced fluid source. This is for + #1072. +
                        • +
                        • + November 2, 2016, by Michael Wetter:
                          + Changed assertions to blocks that compute the difference, + and added the difference to the regression results.
                          + This is for + issue 564. +
                        • +
                        • + October 9, 2013, by Michael Wetter:
                          + Replaced + Modelica.Fluid.Sources.FixedBoundary + with + AixLib.Fluid.Sources.FixedBoundary + as otherwise, the pedantic model check fails in + Dymola 2014 FD01 beta3. +
                        • +
                        • + August 19, 2010, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end ReverseFlowMassExchanger; diff --git a/AixLib/Fluid/Interfaces/Examples/StaticTwoPortConservationEquation.mo b/AixLib/Fluid/Interfaces/Examples/StaticTwoPortConservationEquation.mo index cca6f3dc47..4fec280577 100644 --- a/AixLib/Fluid/Interfaces/Examples/StaticTwoPortConservationEquation.mo +++ b/AixLib/Fluid/Interfaces/Examples/StaticTwoPortConservationEquation.mo @@ -105,25 +105,26 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Interfaces/Examples/StaticTwoPortConservationEquation.mos" "Simulate and plot"), Documentation(info=" -

                        -Model that tests the conservation equations that are used -for the heat and mass balance. -The instances have either water or air, and either allow or prohibit -flow reversal. -This example tests the implementation of the steady-state balance. -

                        -", +

                        + Model that tests the conservation equations that are used + for the heat and mass balance. + The instances have either water or air, and either allow or prohibit + flow reversal. + This example tests the implementation of the steady-state balance. +

                        + ", revisions=" -
                          -
                        • -January 22, 2016 by Michael Wetter:
                          -Updated model to use the new parameter use_mWat_flow -rather than sensibleOnly. -
                        • -
                        • -July 17, 2015, by Michael Wetter:
                          -First implementation. -
                        • -
                        -")); +
                          +
                        • + January 22, 2016 by Michael Wetter:
                          + Updated model to use the new parameter use_mWat_flow + rather than sensibleOnly. +
                        • +
                        • + July 17, 2015, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end StaticTwoPortConservationEquation; diff --git a/AixLib/Fluid/Interfaces/FourPortFlowResistanceParameters.mo b/AixLib/Fluid/Interfaces/FourPortFlowResistanceParameters.mo index fb63cdff7c..25983fab91 100644 --- a/AixLib/Fluid/Interfaces/FourPortFlowResistanceParameters.mo +++ b/AixLib/Fluid/Interfaces/FourPortFlowResistanceParameters.mo @@ -10,10 +10,9 @@ record FourPortFlowResistanceParameters "= true, use m_flow = f(dp) else dp = f(m_flow)" annotation (Evaluate=true, Dialog(enable = computeFlowResistance1, tab="Flow resistance", group="Medium 1")); - parameter Modelica.SIunits.PressureDifference dp1_nominal(min=0, - displayUnit="Pa") - "Pressure difference" - annotation(Dialog(group = "Nominal condition")); + parameter Modelica.Units.SI.PressureDifference dp1_nominal(min=0, displayUnit= + "Pa") "Pressure difference" + annotation (Dialog(group="Nominal condition")); parameter Boolean linearizeFlowResistance1 = false "= true, use linear relation between m_flow and dp for any flow rate" annotation(Dialog(enable = computeFlowResistance1, @@ -30,10 +29,9 @@ record FourPortFlowResistanceParameters "= true, use m_flow = f(dp) else dp = f(m_flow)" annotation (Evaluate=true, Dialog(enable = computeFlowResistance2, tab="Flow resistance", group="Medium 2")); - parameter Modelica.SIunits.PressureDifference dp2_nominal(min=0, - displayUnit="Pa") - "Pressure difference" - annotation(Dialog(group = "Nominal condition")); + parameter Modelica.Units.SI.PressureDifference dp2_nominal(min=0, displayUnit= + "Pa") "Pressure difference" + annotation (Dialog(group="Nominal condition")); parameter Boolean linearizeFlowResistance2 = false "= true, use linear relation between m_flow and dp for any flow rate" annotation(Dialog(enable = computeFlowResistance2, @@ -44,28 +42,29 @@ record FourPortFlowResistanceParameters tab="Flow resistance", group="Medium 2")); annotation (preferredView="info", Documentation(info=" -

                        -This class contains parameters that are used to -compute the pressure drop in components that have two fluid streams. -Note that the nominal mass flow rate is not declared here because -the model - -PartialFourPortInterface -already declares it. -

                        -", +

                        + This class contains parameters that are used to + compute the pressure drop in components that have two fluid streams. + Note that the nominal mass flow rate is not declared here because + the model + + PartialFourPortInterface + already declares it. +

                        + ", revisions=" -
                          -
                        • -January 22, 2016, by Michael Wetter:
                          -Corrected type declaration of pressure difference. -This is -for #404. -
                        • -
                        • -April 13, 2009, by Michael Wetter:
                          -First implementation. -
                        • -
                        -")); +
                          +
                        • + January 22, 2016, by Michael Wetter:
                          + Corrected type declaration of pressure difference. + This is + for #404. +
                        • +
                        • + April 13, 2009, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end FourPortFlowResistanceParameters; diff --git a/AixLib/Fluid/Interfaces/FourPortHeatExchanger.mo b/AixLib/Fluid/Interfaces/FourPortHeatExchanger.mo index a8d9e0e98c..b5dcece099 100644 --- a/AixLib/Fluid/Interfaces/FourPortHeatExchanger.mo +++ b/AixLib/Fluid/Interfaces/FourPortHeatExchanger.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Interfaces; +within AixLib.Fluid.Interfaces; model FourPortHeatExchanger "Model transporting two fluid streams between four ports with storing mass or energy in n volumes" extends AixLib.Fluid.Interfaces.PartialFourPortInterface( @@ -11,10 +11,10 @@ model FourPortHeatExchanger parameter Integer nNodes(min=1) = 2 "Spatial segmentation"; - parameter Modelica.SIunits.Time tau1 = 30 "Time constant at nominal flow" - annotation (Dialog(tab = "Dynamics", group="Nominal condition")); - parameter Modelica.SIunits.Time tau2 = 30 "Time constant at nominal flow" - annotation (Dialog(tab = "Dynamics", group="Nominal condition")); + parameter Modelica.Units.SI.Time tau1=30 "Time constant at nominal flow" + annotation (Dialog(tab="Dynamics", group="Nominal condition")); + parameter Modelica.Units.SI.Time tau2=30 "Time constant at nominal flow" + annotation (Dialog(tab="Dynamics", group="Nominal condition")); // Advanced constant Boolean homotopyInitialization = true "= true, use homotopy method" @@ -65,9 +65,9 @@ model FourPortHeatExchanger "Nominal value of trace substances. (Set to typical order of magnitude.)" annotation (Dialog(tab="Initialization", group = "Medium 2", enable=Medium2.nC > 0)); - Modelica.SIunits.HeatFlowRate Q1_flow = sum(vol1.heatPort.Q_flow) + Modelica.Units.SI.HeatFlowRate Q1_flow=sum(vol1.heatPort.Q_flow) "Heat flow rate into medium 1"; - Modelica.SIunits.HeatFlowRate Q2_flow = sum(vol2.heatPort.Q_flow) + Modelica.Units.SI.HeatFlowRate Q2_flow=sum(vol2.heatPort.Q_flow) "Heat flow rate into medium 2"; replaceable AixLib.Fluid.MixingVolumes.BaseClasses.MixingVolumeHeatPort vol1[nNodes]( @@ -141,20 +141,22 @@ model FourPortHeatExchanger protected parameter Medium1.ThermodynamicState sta1_nominal=Medium1.setState_pTX( T=Medium1.T_default, p=Medium1.p_default, X=Medium1.X_default); - parameter Modelica.SIunits.Density rho1_nominal=Medium1.density(sta1_nominal) + parameter Modelica.Units.SI.Density rho1_nominal=Medium1.density(sta1_nominal) "Density, used to compute fluid volume"; parameter Medium2.ThermodynamicState sta2_nominal=Medium2.setState_pTX( T=Medium2.T_default, p=Medium2.p_default, X=Medium2.X_default); - parameter Modelica.SIunits.Density rho2_nominal=Medium2.density(sta2_nominal) + parameter Modelica.Units.SI.Density rho2_nominal=Medium2.density(sta2_nominal) "Density, used to compute fluid volume"; parameter Medium1.ThermodynamicState sta1_start=Medium1.setState_pTX( T=T1_start, p=p1_start, X=X1_start); - parameter Modelica.SIunits.SpecificEnthalpy h1_outflow_start = Medium1.specificEnthalpy(sta1_start) + parameter Modelica.Units.SI.SpecificEnthalpy h1_outflow_start= + Medium1.specificEnthalpy(sta1_start) "Start value for outflowing enthalpy"; parameter Medium2.ThermodynamicState sta2_start=Medium2.setState_pTX( T=T2_start, p=p2_start, X=X2_start); - parameter Modelica.SIunits.SpecificEnthalpy h2_outflow_start = Medium2.specificEnthalpy(sta2_start) + parameter Modelica.Units.SI.SpecificEnthalpy h2_outflow_start= + Medium2.specificEnthalpy(sta2_start) "Start value for outflowing enthalpy"; initial equation diff --git a/AixLib/Fluid/Interfaces/FourPortHeatMassExchanger.mo b/AixLib/Fluid/Interfaces/FourPortHeatMassExchanger.mo index d75515231e..09760c7e06 100644 --- a/AixLib/Fluid/Interfaces/FourPortHeatMassExchanger.mo +++ b/AixLib/Fluid/Interfaces/FourPortHeatMassExchanger.mo @@ -12,18 +12,15 @@ model FourPortHeatMassExchanger constant Boolean homotopyInitialization = true "= true, use homotopy method" annotation(HideResult=true); - parameter Modelica.SIunits.Time tau1 = 30 "Time constant at nominal flow" - annotation (Dialog(tab = "Dynamics", group="Nominal condition")); - parameter Modelica.SIunits.Time tau2 = 30 "Time constant at nominal flow" - annotation (Dialog(tab = "Dynamics", group="Nominal condition")); + parameter Modelica.Units.SI.Time tau1=30 "Time constant at nominal flow" + annotation (Dialog(tab="Dynamics", group="Nominal condition")); + parameter Modelica.Units.SI.Time tau2=30 "Time constant at nominal flow" + annotation (Dialog(tab="Dynamics", group="Nominal condition")); // Assumptions parameter Modelica.Fluid.Types.Dynamics energyDynamics=Modelica.Fluid.Types.Dynamics.DynamicFreeInitial "Type of energy balance: dynamic (3 initialization options) or steady state" - annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Equations")); - parameter Modelica.Fluid.Types.Dynamics massDynamics=energyDynamics - "Type of mass balance: dynamic (3 initialization options) or steady state" - annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Equations")); + annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Conservation equations")); // Initialization parameter Medium1.AbsolutePressure p1_start = Medium1.p_default @@ -62,9 +59,9 @@ model FourPortHeatMassExchanger "Nominal value of trace substances. (Set to typical order of magnitude.)" annotation (Dialog(tab="Initialization", group = "Medium 2", enable=Medium2.nC > 0)); - Modelica.SIunits.HeatFlowRate Q1_flow = vol1.heatPort.Q_flow + Modelica.Units.SI.HeatFlowRate Q1_flow=vol1.heatPort.Q_flow "Heat flow rate into medium 1"; - Modelica.SIunits.HeatFlowRate Q2_flow = vol2.heatPort.Q_flow + Modelica.Units.SI.HeatFlowRate Q2_flow=vol2.heatPort.Q_flow "Heat flow rate into medium 2"; replaceable AixLib.Fluid.MixingVolumes.BaseClasses.MixingVolumeHeatPort vol1 @@ -79,7 +76,7 @@ model FourPortHeatMassExchanger then energyDynamics else Modelica.Fluid.Types.Dynamics.SteadyState, massDynamics=if tau1 > Modelica.Constants.eps - then massDynamics else + then energyDynamics else Modelica.Fluid.Types.Dynamics.SteadyState, final p_start=p1_start, final T_start=T1_start, @@ -102,7 +99,7 @@ model FourPortHeatMassExchanger then energyDynamics else Modelica.Fluid.Types.Dynamics.SteadyState, massDynamics=if tau2 > Modelica.Constants.eps - then massDynamics else + then energyDynamics else Modelica.Fluid.Types.Dynamics.SteadyState, final p_start=p2_start, final T_start=T2_start, @@ -141,20 +138,22 @@ model FourPortHeatMassExchanger protected parameter Medium1.ThermodynamicState sta1_nominal=Medium1.setState_pTX( T=Medium1.T_default, p=Medium1.p_default, X=Medium1.X_default); - parameter Modelica.SIunits.Density rho1_nominal=Medium1.density(sta1_nominal) + parameter Modelica.Units.SI.Density rho1_nominal=Medium1.density(sta1_nominal) "Density, used to compute fluid volume"; parameter Medium2.ThermodynamicState sta2_nominal=Medium2.setState_pTX( T=Medium2.T_default, p=Medium2.p_default, X=Medium2.X_default); - parameter Modelica.SIunits.Density rho2_nominal=Medium2.density(sta2_nominal) + parameter Modelica.Units.SI.Density rho2_nominal=Medium2.density(sta2_nominal) "Density, used to compute fluid volume"; parameter Medium1.ThermodynamicState sta1_start=Medium1.setState_pTX( T=T1_start, p=p1_start, X=X1_start); - parameter Modelica.SIunits.SpecificEnthalpy h1_outflow_start = Medium1.specificEnthalpy(sta1_start) + parameter Modelica.Units.SI.SpecificEnthalpy h1_outflow_start= + Medium1.specificEnthalpy(sta1_start) "Start value for outflowing enthalpy"; parameter Medium2.ThermodynamicState sta2_start=Medium2.setState_pTX( T=T2_start, p=p2_start, X=X2_start); - parameter Modelica.SIunits.SpecificEnthalpy h2_outflow_start = Medium2.specificEnthalpy(sta2_start) + parameter Modelica.Units.SI.SpecificEnthalpy h2_outflow_start= + Medium2.specificEnthalpy(sta2_start) "Start value for outflowing enthalpy"; initial equation @@ -162,25 +161,15 @@ initial equation assert((energyDynamics == Modelica.Fluid.Types.Dynamics.SteadyState) or tau1 > Modelica.Constants.eps, "The parameter tau1, or the volume of the model from which tau may be derived, is unreasonably small. - You need to set energyDynamics == Modelica.Fluid.Types.Dynamics.SteadyState to model steady-state. - Received tau1 = " + String(tau1) + "\n"); - assert((massDynamics == Modelica.Fluid.Types.Dynamics.SteadyState) or - tau1 > Modelica.Constants.eps, -"The parameter tau1, or the volume of the model from which tau may be derived, is unreasonably small. - You need to set massDynamics == Modelica.Fluid.Types.Dynamics.SteadyState to model steady-state. - Received tau1 = " + String(tau1) + "\n"); + You need to set energyDynamics == Modelica.Fluid.Types.Dynamics.SteadyState to model steady-state. + Received tau1 = "+ String(tau1) + "\n"); // Check for tau2 assert((energyDynamics == Modelica.Fluid.Types.Dynamics.SteadyState) or tau2 > Modelica.Constants.eps, "The parameter tau2, or the volume of the model from which tau may be derived, is unreasonably small. - You need to set energyDynamics == Modelica.Fluid.Types.Dynamics.SteadyState to model steady-state. - Received tau2 = " + String(tau2) + "\n"); - assert((massDynamics == Modelica.Fluid.Types.Dynamics.SteadyState) or - tau2 > Modelica.Constants.eps, -"The parameter tau2, or the volume of the model from which tau may be derived, is unreasonably small. - You need to set massDynamics == Modelica.Fluid.Types.Dynamics.SteadyState to model steady-state. - Received tau2 = " + String(tau2) + "\n"); + You need to set energyDynamics == Modelica.Fluid.Types.Dynamics.SteadyState to model steady-state. + Received tau2 = "+ String(tau2) + "\n"); assert(homotopyInitialization, "In " + getInstanceName() + ": The constant homotopyInitialization has been modified from its default value. This constant will be removed in future releases.", @@ -207,157 +196,163 @@ equation color={0,127,255})); annotation ( Documentation(info=" -

                        -This component transports two fluid streams between four ports. -It provides the basic model for implementing a dynamic heat exchanger. -

                        -

                        -The model can be used as-is, although there will be no heat or mass transfer -between the two fluid streams. -To add heat transfer, heat flow can be added to the heat port of the two volumes. -See for example - -AixLib.Fluid.Chillers.Carnot_y. -To add moisture input into (or moisture output from) volume vol2, -the model can be replaced with - -AixLib.Fluid.MixingVolumes.MixingVolumeMoistAir. -

                        -

                        Implementation

                        -

                        -The variable names follow the conventions used in - -Modelica.Fluid.Examples.HeatExchanger.BaseClasses.BasicHX. -

                        -", revisions=" -
                          -
                        • -April 14, 2020, by Michael Wetter:
                          -Changed homotopyInitialization to a constant.
                          -This is for -AixLib, #1341. -
                        • -
                        • -October 23, 2017, by Michael Wetter:
                          -Made volume vol1 replaceable. This is required for -Buildings, issue 1013. -
                        • -
                        • -December 1, 2016, by Michael Wetter:
                          -Updated model as use_dh is no longer a parameter in the pressure drop model.
                          -This is for -#480. -
                        • -
                        • -April 11, 2016 by Michael Wetter:
                          -Corrected wrong hyperlink in documentation for -issue 450. -
                        • -
                        • -January 26, 2016, by Michael Wetter:
                          -Set quantity attributes. -
                        • -
                        • -November 13, 2015, by Michael Wetter:
                          -Changed assignments of start values in extends statement. -This is for issue -#299. -
                        • -
                        • -June 2, 2015, by Filip Jorissen:
                          -Removed final modifier from mSenFac in -vol1 and vol2. -This is for issue -#258. -
                        • -
                        • -May 6, 2015, by Michael Wetter:
                          -Added missing propagation of allowFlowReversal to -instances vol1 and vol2. -This is for issue -#412. -
                        • -
                        • -October 6, 2014, by Michael Wetter:
                          -Changed medium declaration in pressure drop elements to be final. -
                        • -
                        • -May 28, 2014, by Michael Wetter:
                          -Removed annotation(Evaluate=true) for parameters tau1 -and tau2. -This is needed to allow changing the time constant after translation. -
                        • -
                        • -November 12, 2013, by Michael Wetter:
                          -Removed import Modelica.Constants statement. -
                        • -
                        • -October 8, 2013, by Michael Wetter:
                          -Removed parameter show_V_flow. -
                        • -
                        • -September 26, 2013, by Michael Wetter:
                          -Removed unrequired sum operator. -
                        • -
                        • -February 6, 2012, by Michael Wetter:
                          -Updated documentation. -
                        • -
                        • -February 3, 2012, by Michael Wetter:
                          -Removed assignment of m_flow_small as it is no -longer used in its base class. -
                        • -
                        • -July 29, 2011, by Michael Wetter: -
                            -
                          • -Changed values of -h_outflow_a1_start, -h_outflow_b1_start, -h_outflow_a2_start and -h_outflow_b2_start, and -declared them as final. -
                          • -
                          • -Set nominal values for vol1.C and vol2.C. -
                          • -
                          -
                        • -
                        • -July 11, 2011, by Michael Wetter:
                          -Changed parameterization of fluid volume so that steady-state balance is -used when tau = 0. -
                        • -
                        • -March 25, 2011, by Michael Wetter:
                          -Added homotopy operator. -
                        • -
                        • -April 13, 2009, by Michael Wetter:
                          -Added model to compute flow friction. -
                        • -
                        • -September 10, 2008 by Michael Wetter:
                          -Added stateSelect=StateSelect.always for temperature of volume 1. -
                        • -
                        • -Changed temperature sensor from Celsius to Kelvin. -Unit conversion should be made during output -processing. -
                        • -
                        • -August 5, 2008, by Michael Wetter:
                          -Replaced instances of Delays.DelayFirstOrder with instances of -MixingVolumes.MixingVolume. This allows to extract liquid for a condensing cooling -coil model. -
                        • -
                        • -March 25, 2008, by Michael Wetter:
                          -First implementation. -
                        • -
                        -"), +

                        + This component transports two fluid streams between four ports. + It provides the basic model for implementing a dynamic heat exchanger. +

                        +

                        + The model can be used as-is, although there will be no heat or mass transfer + between the two fluid streams. + To add heat transfer, heat flow can be added to the heat port of the two volumes. + See for example + + AixLib.Fluid.Chillers.Carnot_y. + To add moisture input into (or moisture output from) volume vol2, + the model can be replaced with + + AixLib.Fluid.MixingVolumes.MixingVolumeMoistAir. +

                        +

                        Implementation

                        +

                        + The variable names follow the conventions used in + + Modelica.Fluid.Examples.HeatExchanger.BaseClasses.BasicHX. +

                        + ",revisions=" +
                          +
                        • + March 3, 2022, by Michael Wetter:
                          + Removed massDynamics.
                          + This is for + issue 1542. +
                        • +
                        • + April 14, 2020, by Michael Wetter:
                          + Changed homotopyInitialization to a constant.
                          + This is for + IBPSA, #1341. +
                        • +
                        • + October 23, 2017, by Michael Wetter:
                          + Made volume vol1 replaceable. This is required for + Buildings, issue 1013. +
                        • +
                        • + December 1, 2016, by Michael Wetter:
                          + Updated model as use_dh is no longer a parameter in the pressure drop model.
                          + This is for + #480. +
                        • +
                        • + April 11, 2016 by Michael Wetter:
                          + Corrected wrong hyperlink in documentation for + issue 450. +
                        • +
                        • + January 26, 2016, by Michael Wetter:
                          + Set quantity attributes. +
                        • +
                        • + November 13, 2015, by Michael Wetter:
                          + Changed assignments of start values in extends statement. + This is for issue + #299. +
                        • +
                        • + June 2, 2015, by Filip Jorissen:
                          + Removed final modifier from mSenFac in + vol1 and vol2. + This is for issue + #258. +
                        • +
                        • + May 6, 2015, by Michael Wetter:
                          + Added missing propagation of allowFlowReversal to + instances vol1 and vol2. + This is for issue + #412. +
                        • +
                        • + October 6, 2014, by Michael Wetter:
                          + Changed medium declaration in pressure drop elements to be final. +
                        • +
                        • + May 28, 2014, by Michael Wetter:
                          + Removed annotation(Evaluate=true) for parameters tau1 + and tau2. + This is needed to allow changing the time constant after translation. +
                        • +
                        • + November 12, 2013, by Michael Wetter:
                          + Removed import Modelica.Constants statement. +
                        • +
                        • + October 8, 2013, by Michael Wetter:
                          + Removed parameter show_V_flow. +
                        • +
                        • + September 26, 2013, by Michael Wetter:
                          + Removed unrequired sum operator. +
                        • +
                        • + February 6, 2012, by Michael Wetter:
                          + Updated documentation. +
                        • +
                        • + February 3, 2012, by Michael Wetter:
                          + Removed assignment of m_flow_small as it is no + longer used in its base class. +
                        • +
                        • + July 29, 2011, by Michael Wetter: +
                            +
                          • + Changed values of + h_outflow_a1_start, + h_outflow_b1_start, + h_outflow_a2_start and + h_outflow_b2_start, and + declared them as final. +
                          • +
                          • + Set nominal values for vol1.C and vol2.C. +
                          • +
                          +
                        • +
                        • + July 11, 2011, by Michael Wetter:
                          + Changed parameterization of fluid volume so that steady-state balance is + used when tau = 0. +
                        • +
                        • + March 25, 2011, by Michael Wetter:
                          + Added homotopy operator. +
                        • +
                        • + April 13, 2009, by Michael Wetter:
                          + Added model to compute flow friction. +
                        • +
                        • + September 10, 2008 by Michael Wetter:
                          + Added stateSelect=StateSelect.always for temperature of volume 1. +
                        • +
                        • + Changed temperature sensor from Celsius to Kelvin. + Unit conversion should be made during output + processing. +
                        • +
                        • + August 5, 2008, by Michael Wetter:
                          + Replaced instances of Delays.DelayFirstOrder with instances of + MixingVolumes.MixingVolume. This allows to extract liquid for a condensing cooling + coil model. +
                        • +
                        • + March 25, 2008, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), Icon(coordinateSystem( preserveAspectRatio=false, extent={{-100,-100},{100,100}}, @@ -379,5 +374,6 @@ First implementation. lineColor={0,0,255}, pattern=LinePattern.None, fillColor={0,0,0}, - fillPattern=FillPattern.Solid)})); + fillPattern=FillPattern.Solid)}), + __Dymola_LockedEditing="Model from IBPSA"); end FourPortHeatMassExchanger; diff --git a/AixLib/Fluid/Interfaces/LumpedVolumeDeclarations.mo b/AixLib/Fluid/Interfaces/LumpedVolumeDeclarations.mo index 946eb8e3e3..2f2cfcc8a0 100644 --- a/AixLib/Fluid/Interfaces/LumpedVolumeDeclarations.mo +++ b/AixLib/Fluid/Interfaces/LumpedVolumeDeclarations.mo @@ -1,5 +1,5 @@ within AixLib.Fluid.Interfaces; -record LumpedVolumeDeclarations "Declarations for lumped volumes" +block LumpedVolumeDeclarations "Declarations for lumped volumes" replaceable package Medium = Modelica.Media.Interfaces.PartialMedium "Medium in the component" annotation (choices( @@ -14,16 +14,16 @@ record LumpedVolumeDeclarations "Declarations for lumped volumes" // Assumptions parameter Modelica.Fluid.Types.Dynamics energyDynamics=Modelica.Fluid.Types.Dynamics.DynamicFreeInitial "Type of energy balance: dynamic (3 initialization options) or steady state" - annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Equations")); + annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Conservation equations")); parameter Modelica.Fluid.Types.Dynamics massDynamics=energyDynamics - "Type of mass balance: dynamic (3 initialization options) or steady state" - annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Equations")); + "Type of mass balance: dynamic (3 initialization options) or steady state, must be steady state if energyDynamics is steady state" + annotation(Evaluate=true, Dialog(tab = "Advanced", group="Dynamics")); final parameter Modelica.Fluid.Types.Dynamics substanceDynamics=energyDynamics "Type of independent mass fraction balance: dynamic (3 initialization options) or steady state" - annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Equations")); + annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Conservation equations")); final parameter Modelica.Fluid.Types.Dynamics traceDynamics=energyDynamics "Type of trace substance balance: dynamic (3 initialization options) or steady state" - annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Equations")); + annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Conservation equations")); // Initialization parameter Medium.AbsolutePressure p_start = Medium.p_default @@ -48,72 +48,97 @@ record LumpedVolumeDeclarations "Declarations for lumped volumes" "Factor for scaling the sensible thermal mass of the volume" annotation(Dialog(tab="Dynamics")); + // The parameter below is evaluated by OCT during compilation, and + // if false, the assert statement won't be optimized away during + // code generation. +protected + final parameter Boolean wrongEnergyMassBalanceConfiguration= + not (energyDynamics <> Modelica.Fluid.Types.Dynamics.SteadyState or + massDynamics == Modelica.Fluid.Types.Dynamics.SteadyState) + "True if configuration of energy and mass balance is wrong." + annotation(Evaluate=true); +initial equation + if wrongEnergyMassBalanceConfiguration then + assert(not wrongEnergyMassBalanceConfiguration, + "In " + getInstanceName() + + ": energyDynamics is selected as steady state, and therefore massDynamics must also be steady-state."); + end if; + annotation (preferredView="info", Documentation(info=" -

                        -This class contains parameters and medium properties -that are used in the lumped volume model, and in models that extend the -lumped volume model. -

                        -

                        -These parameters are used for example by - -AixLib.Fluid.Interfaces.ConservationEquation, - -AixLib.Fluid.MixingVolumes.MixingVolume and - -AixLib.Fluid.HeatExchangers.Radiators.RadiatorEN442_2. -

                        -", +

                        + This class contains parameters and medium properties + that are used in the lumped volume model, and in models that extend the + lumped volume model. +

                        +

                        + These parameters are used for example by + + AixLib.Fluid.Interfaces.ConservationEquation, + + AixLib.Fluid.MixingVolumes.MixingVolume and + + AixLib.Fluid.HeatExchangers.Radiators.RadiatorEN442_2. +

                        + ", revisions=" -
                          -
                        • -January 18, 2019, by Jianjun Hu:
                          -Limited the media choice. -See #1050. -
                        • -
                        • -November 9, 2018 by Michael Wetter:
                          -Limited choices of media that are displayed in the pull down menu of -graphical editors.
                          -This is for -issue 1050. -
                        • -
                        • -April 11, 2016 by Michael Wetter:
                          -Corrected wrong hyperlink in documentation for -issue 450. -
                        • -
                        • -January 26, 2016, by Michael Wetter:
                          -Added quantity=Medium.substanceNames for X_start. -
                        • -
                        • -October 21, 2014, by Filip Jorissen:
                          -Added parameter mFactor to increase the thermal capacity. -
                        • -
                        • -August 2, 2011, by Michael Wetter:
                          -Set substanceDynamics and traceDynamics to final -and equal to energyDynamics, -as there is no need to make them different from energyDynamics. -
                        • -
                        • -August 1, 2011, by Michael Wetter:
                          -Changed default value for energyDynamics to -Modelica.Fluid.Types.Dynamics.DynamicFreeInitial because -Modelica.Fluid.Types.Dynamics.SteadyStateInitial leads -to high order DAE that Dymola cannot reduce. -
                        • -
                        • -July 31, 2011, by Michael Wetter:
                          -Changed default value for energyDynamics to -Modelica.Fluid.Types.Dynamics.SteadyStateInitial. -
                        • -
                        • -April 13, 2009, by Michael Wetter:
                          -First implementation. -
                        • -
                        -")); +
                          +
                        • + March 3, 2022, by Michael Wetter:
                          + Moved massDynamics to Advanced tab, + added assertion for correct combination of energy and mass dynamics and + changed type from record to block.
                          + This is for + issue 1542. +
                        • +
                        • + January 18, 2019, by Jianjun Hu:
                          + Limited the media choice. + See #1050. +
                        • +
                        • + November 9, 2018 by Michael Wetter:
                          + Limited choices of media that are displayed in the pull down menu of + graphical editors.
                          + This is for + issue 1050. +
                        • +
                        • + April 11, 2016 by Michael Wetter:
                          + Corrected wrong hyperlink in documentation for + issue 450. +
                        • +
                        • + January 26, 2016, by Michael Wetter:
                          + Added quantity=Medium.substanceNames for X_start. +
                        • +
                        • + October 21, 2014, by Filip Jorissen:
                          + Added parameter mFactor to increase the thermal capacity. +
                        • +
                        • + August 2, 2011, by Michael Wetter:
                          + Set substanceDynamics and traceDynamics to final + and equal to energyDynamics, + as there is no need to make them different from energyDynamics. +
                        • +
                        • + August 1, 2011, by Michael Wetter:
                          + Changed default value for energyDynamics to + Modelica.Fluid.Types.Dynamics.DynamicFreeInitial because + Modelica.Fluid.Types.Dynamics.SteadyStateInitial leads + to high order DAE that Dymola cannot reduce. +
                        • +
                        • + July 31, 2011, by Michael Wetter:
                          + Changed default value for energyDynamics to + Modelica.Fluid.Types.Dynamics.SteadyStateInitial. +
                        • +
                        • + April 13, 2009, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end LumpedVolumeDeclarations; diff --git a/AixLib/Fluid/Interfaces/PartialEightPortInterface.mo b/AixLib/Fluid/Interfaces/PartialEightPortInterface.mo index 1a4ed5be11..a51617d46a 100644 --- a/AixLib/Fluid/Interfaces/PartialEightPortInterface.mo +++ b/AixLib/Fluid/Interfaces/PartialEightPortInterface.mo @@ -2,18 +2,14 @@ within AixLib.Fluid.Interfaces; partial model PartialEightPortInterface "Partial model transporting fluid between eight ports without storing mass or energy" extends AixLib.Fluid.Interfaces.EightPort; - parameter Modelica.SIunits.MassFlowRate m1_flow_nominal(min=0) - "Nominal mass flow rate" - annotation(Dialog(group = "Nominal condition")); - parameter Modelica.SIunits.MassFlowRate m2_flow_nominal(min=0) - "Nominal mass flow rate" - annotation(Dialog(group = "Nominal condition")); - parameter Modelica.SIunits.MassFlowRate m3_flow_nominal(min=0) - "Nominal mass flow rate" - annotation(Dialog(group = "Nominal condition")); - parameter Modelica.SIunits.MassFlowRate m4_flow_nominal(min=0) - "Nominal mass flow rate" - annotation(Dialog(group = "Nominal condition")); + parameter Modelica.Units.SI.MassFlowRate m1_flow_nominal(min=0) + "Nominal mass flow rate" annotation (Dialog(group="Nominal condition")); + parameter Modelica.Units.SI.MassFlowRate m2_flow_nominal(min=0) + "Nominal mass flow rate" annotation (Dialog(group="Nominal condition")); + parameter Modelica.Units.SI.MassFlowRate m3_flow_nominal(min=0) + "Nominal mass flow rate" annotation (Dialog(group="Nominal condition")); + parameter Modelica.Units.SI.MassFlowRate m4_flow_nominal(min=0) + "Nominal mass flow rate" annotation (Dialog(group="Nominal condition")); parameter Medium1.MassFlowRate m1_flow_small(min=0) = 1E-4*abs(m1_flow_nominal) "Small mass flow rate for regularization of zero flow" @@ -31,68 +27,111 @@ partial model PartialEightPortInterface // Diagnostics parameter Boolean show_T = false "= true, if actual temperature at port is computed" - annotation( + annotation ( Dialog(tab="Advanced", group="Diagnostics"), HideResult=true); Medium1.MassFlowRate m1_flow = port_a1.m_flow "Mass flow rate from port_a1 to port_b1 (m1_flow > 0 is design flow direction)"; - Modelica.SIunits.Pressure dp1(displayUnit="Pa") + Modelica.Units.SI.Pressure dp1(displayUnit="Pa") = port_a1.p - port_b1.p "Pressure difference between port_a1 and port_b1"; Medium2.MassFlowRate m2_flow = port_a2.m_flow "Mass flow rate from port_a2 to port_b2 (m2_flow > 0 is design flow direction)"; - Modelica.SIunits.Pressure dp2(displayUnit="Pa") + Modelica.Units.SI.Pressure dp2(displayUnit="Pa") = port_a2.p - port_b2.p "Pressure difference between port_a2 and port_b2"; Medium3.MassFlowRate m3_flow = port_a3.m_flow "Mass flow rate from port_a3 to port_b3 (m3_flow > 0 is design flow direction)"; - Modelica.SIunits.Pressure dp3(displayUnit="Pa") + Modelica.Units.SI.Pressure dp3(displayUnit="Pa") = port_a3.p - port_b3.p "Pressure difference between port_a3 and port_b3"; Medium4.MassFlowRate m4_flow = port_a4.m_flow "Mass flow rate from port_a4 to port_b4 (m4_flow > 0 is design flow direction)"; - Modelica.SIunits.Pressure dp4(displayUnit="Pa") + Modelica.Units.SI.Pressure dp4(displayUnit="Pa") = port_a4.p - port_b4.p "Pressure difference between port_a4 and port_b4"; Medium1.ThermodynamicState sta_a1= + if allowFlowReversal1 then Medium1.setState_phX(port_a1.p, - noEvent(actualStream(port_a1.h_outflow)), - noEvent(actualStream(port_a1.Xi_outflow))) if - show_T "Medium properties in port_a1"; + noEvent(actualStream(port_a1.h_outflow)), + noEvent(actualStream(port_a1.Xi_outflow))) + else + Medium1.setState_phX(port_a1.p, + inStream(port_a1.h_outflow), + inStream(port_a1.Xi_outflow)) + if show_T "Medium properties in port_a1"; Medium1.ThermodynamicState sta_b1= + if allowFlowReversal1 then + Medium1.setState_phX(port_b1.p, + noEvent(actualStream(port_b1.h_outflow)), + noEvent(actualStream(port_b1.Xi_outflow))) + else Medium1.setState_phX(port_b1.p, - noEvent(actualStream(port_b1.h_outflow)), - noEvent(actualStream(port_b1.Xi_outflow))) if - show_T "Medium properties in port_b1"; + port_b1.h_outflow, + port_b1.Xi_outflow) + if show_T "Medium properties in port_b1"; + Medium2.ThermodynamicState sta_a2= + if allowFlowReversal2 then + Medium2.setState_phX(port_a2.p, + noEvent(actualStream(port_a2.h_outflow)), + noEvent(actualStream(port_a2.Xi_outflow))) + else Medium2.setState_phX(port_a2.p, - noEvent(actualStream(port_a2.h_outflow)), - noEvent(actualStream(port_a2.Xi_outflow))) if - show_T "Medium properties in port_a2"; + inStream(port_a2.h_outflow), + inStream(port_a2.Xi_outflow)) + if show_T "Medium properties in port_a2"; Medium2.ThermodynamicState sta_b2= + if allowFlowReversal2 then Medium2.setState_phX(port_b2.p, - noEvent(actualStream(port_b2.h_outflow)), - noEvent(actualStream(port_b2.Xi_outflow))) if - show_T "Medium properties in port_b2"; + noEvent(actualStream(port_b2.h_outflow)), + noEvent(actualStream(port_b2.Xi_outflow))) + else + Medium2.setState_phX(port_b2.p, + port_b2.h_outflow, + port_b2.Xi_outflow) + if show_T "Medium properties in port_b2"; - Medium3.ThermodynamicState sta_a3= + Medium3.ThermodynamicState sta_a3= + if allowFlowReversal3 then + Medium3.setState_phX(port_a3.p, + noEvent(actualStream(port_a3.h_outflow)), + noEvent(actualStream(port_a3.Xi_outflow))) + else Medium3.setState_phX(port_a3.p, - noEvent(actualStream(port_a3.h_outflow)), - noEvent(actualStream(port_a3.Xi_outflow))) if - show_T "Medium properties in port_a3"; + inStream(port_a3.h_outflow), + inStream(port_a3.Xi_outflow)) + if show_T "Medium properties in port_a3"; Medium3.ThermodynamicState sta_b3= + if allowFlowReversal3 then + Medium3.setState_phX(port_b3.p, + noEvent(actualStream(port_b3.h_outflow)), + noEvent(actualStream(port_b3.Xi_outflow))) + else Medium3.setState_phX(port_b3.p, - noEvent(actualStream(port_b3.h_outflow)), - noEvent(actualStream(port_b3.Xi_outflow))) if - show_T "Medium properties in port_b3"; + port_b3.h_outflow, + port_b3.Xi_outflow) + if show_T "Medium properties in port_b3"; + Medium4.ThermodynamicState sta_a4= + if allowFlowReversal4 then + Medium4.setState_phX(port_a4.p, + noEvent(actualStream(port_a4.h_outflow)), + noEvent(actualStream(port_a4.Xi_outflow))) + else Medium4.setState_phX(port_a4.p, - noEvent(actualStream(port_a4.h_outflow)), - noEvent(actualStream(port_a4.Xi_outflow))) if - show_T "Medium properties in port_a4"; + inStream(port_a4.h_outflow), + inStream(port_a4.Xi_outflow)) + if show_T "Medium properties in port_a4"; Medium4.ThermodynamicState sta_b4= + if allowFlowReversal4 then + Medium4.setState_phX(port_b4.p, + noEvent(actualStream(port_b4.h_outflow)), + noEvent(actualStream(port_b4.Xi_outflow))) + else Medium4.setState_phX(port_b4.p, - noEvent(actualStream(port_b4.h_outflow)), - noEvent(actualStream(port_b4.Xi_outflow))) if - show_T "Medium properties in port_b4"; + port_b4.h_outflow, + port_b4.Xi_outflow) + if show_T "Medium properties in port_b4"; + protected Medium1.ThermodynamicState state_a1_inflow= Medium1.setState_phX(port_a1.p, inStream(port_a1.h_outflow), inStream(port_a1.Xi_outflow)) @@ -118,43 +157,58 @@ protected Medium4.ThermodynamicState state_b4_inflow= Medium4.setState_phX(port_b4.p, inStream(port_b4.h_outflow), inStream(port_b4.Xi_outflow)) "state for medium inflowing through port_b4"; -equation - dp1 = port_a1.p - port_b1.p; - dp2 = port_a2.p - port_b2.p; - dp3 = port_a3.p - port_b3.p; - dp4 = port_a4.p - port_b4.p; + + annotation ( preferredView="info", Documentation(info=" -

                        -This component defines the interface for models that transport four fluid streams between eight ports. -It is similar to AixLib.Fluid.Interfaces.PartialTwoPortInterface, -but it has eight ports instead of two.

                        -

                        -The model is used by other models in this package that add heat transfer, -mass transfer and pressure drop equations. -

                        -", revisions=" -
                          -
                        • -March 30, 2021, by Michael Wetter:
                          -Added annotation HideResult=true.
                          -This is for -AixLib, #1459. -
                        • -
                        • -July 12, 2019, by Michael Wetter:
                          -Corrected wrong medium in declaration of m4_flow. -
                        • -
                        • -July 2014, by Damien Picard:
                          -First implementation. -
                        • -
                        -"), +

                        + This component defines the interface for models that transport four fluid streams between eight ports. + It is similar to AixLib.Fluid.Interfaces.PartialTwoPortInterface, + but it has eight ports instead of two.

                        +

                        + The model is used by other models in this package that add heat transfer, + mass transfer and pressure drop equations. +

                        + ",revisions=" +
                          +
                        • + February 3, 2022, by Michael Wetter:
                          + If allowFlowReversal==false, removed noEvent() declaration + for sta_a and for sta_b because the variable is either + already used with inStream() in the computation of state_*_inflow, + or the result of a variable of the model that already may generate an event.
                          + This is for + IBPSA, #1578. +
                        • +
                        • + February 2, 2022, by Hongxiang Fu:
                          + If allowFlowReversal==false, replaced actualStream() + with inStream() for sta_a and + removed actualStream() for sta_b.
                          + This is for + IBPSA, #1578. +
                        • +
                        • + March 30, 2021, by Michael Wetter:
                          + Added annotation HideResult=true.
                          + This is for + IBPSA, #1459. +
                        • +
                        • + July 12, 2019, by Michael Wetter:
                          + Corrected wrong medium in declaration of m4_flow. +
                        • +
                        • + July 2014, by Damien Picard:
                          + First implementation. +
                        • +
                        + "), Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{ 100,100}}), graphics), Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100, - 100}}), graphics)); + 100}}), graphics), + __Dymola_LockedEditing="Model from IBPSA"); end PartialEightPortInterface; diff --git a/AixLib/Fluid/Interfaces/PartialFourPort.mo b/AixLib/Fluid/Interfaces/PartialFourPort.mo index 3f33220449..f92c80d06d 100644 --- a/AixLib/Fluid/Interfaces/PartialFourPort.mo +++ b/AixLib/Fluid/Interfaces/PartialFourPort.mo @@ -58,99 +58,99 @@ partial model PartialFourPort "Partial model with four ports" annotation ( preferredView="info", Documentation(info=" -

                        -This model defines an interface for components with four ports. -The parameters allowFlowReversal1 and -allowFlowReversal2 may be used by models that extend -this model to treat flow reversal. -

                        -

                        -This model is identical to - -Modelica.Fluid.Interfaces.PartialTwoPort, except for the -fowllowing: -

                        -
                          -
                        1. it has four ports, and -
                        2. -
                        3. -the parameters port_a_exposesState, -port_b_exposesState and -showDesignFlowDirection -are not implemented. -
                        4. -
                        -", revisions=" -
                          -
                        • -April 6, 2020, by Filip Jorissen:
                          -Added arrows to the icon indicating the intended flow direction -when allowFlowReversal=false. -See #1336. -
                        • -
                        • -January 18, 2019, by Jianjun Hu:
                          -Limited the media choice. -See #1050. -
                        • -
                        • -July 8, 2018, by Filip Jorissen:
                          -Added nominal value of h_outflow in FluidPorts. -See #977. -
                        • -
                        • -November 12, 2015, by Michael Wetter:
                          -Renamed model from FourPort to -PartialFourPort. -Removed parameters -h_outflow_a1_start, -h_outflow_b1_start, -h_outflow_a2_start and -h_outflow_b2_start. -This is for issue -#299. -
                        • -
                        • -October 30, 2015, by Matthis Thorade:
                          -Added partial keyword to model declaration. -
                        • -
                        • -October 6, 2014, by Michael Wetter:
                          -Changed medium declaration in ports to be final. -
                        • -
                        • -October 3, 2014, by Michael Wetter:
                          -Changed assignment of nominal value to avoid in OpenModelica the warning -alias set with different nominal values. -
                        • -
                        • -November 12, 2013, by Michael Wetter:
                          -Removed import Modelica.Constants statement. -
                        • -
                        • -September 26, 2013 by Michael Wetter:
                          -Added missing each keyword in declaration of nominal value for -Xi_outflow. -
                        • -
                        • -September 17, 2010 by Michael Wetter:
                          -Fixed bug: The start value for port_b1.h_outflow -was set to h_outflow_b2_start instead of h_outflow_b1_start. -
                        • -
                        • -February 26, 2010 by Michael Wetter:
                          -Added start values for outflowing enthalpy because they -are often iteration variables in nonlinear equation systems. -
                        • -
                        -"), +

                        + This model defines an interface for components with four ports. + The parameters allowFlowReversal1 and + allowFlowReversal2 may be used by models that extend + this model to treat flow reversal. +

                        +

                        + This model is identical to + + Modelica.Fluid.Interfaces.PartialTwoPort, except for the + fowllowing: +

                        +
                          +
                        1. it has four ports, and +
                        2. +
                        3. + the parameters port_a_exposesState, + port_b_exposesState and + showDesignFlowDirection + are not implemented. +
                        4. +
                        + ",revisions=" +
                          +
                        • + April 6, 2020, by Filip Jorissen:
                          + Added arrows to the icon indicating the intended flow direction + when allowFlowReversal=false. + See #1336. +
                        • +
                        • + January 18, 2019, by Jianjun Hu:
                          + Limited the media choice. + See #1050. +
                        • +
                        • + July 8, 2018, by Filip Jorissen:
                          + Added nominal value of h_outflow in FluidPorts. + See #977. +
                        • +
                        • + November 12, 2015, by Michael Wetter:
                          + Renamed model from FourPort to + PartialFourPort. + Removed parameters + h_outflow_a1_start, + h_outflow_b1_start, + h_outflow_a2_start and + h_outflow_b2_start. + This is for issue + #299. +
                        • +
                        • + October 30, 2015, by Matthis Thorade:
                          + Added partial keyword to model declaration. +
                        • +
                        • + October 6, 2014, by Michael Wetter:
                          + Changed medium declaration in ports to be final. +
                        • +
                        • + October 3, 2014, by Michael Wetter:
                          + Changed assignment of nominal value to avoid in OpenModelica the warning + alias set with different nominal values. +
                        • +
                        • + November 12, 2013, by Michael Wetter:
                          + Removed import Modelica.Constants statement. +
                        • +
                        • + September 26, 2013 by Michael Wetter:
                          + Added missing each keyword in declaration of nominal value for + Xi_outflow. +
                        • +
                        • + September 17, 2010 by Michael Wetter:
                          + Fixed bug: The start value for port_b1.h_outflow + was set to h_outflow_b2_start instead of h_outflow_b1_start. +
                        • +
                        • + February 26, 2010 by Michael Wetter:
                          + Added start values for outflowing enthalpy because they + are often iteration variables in nonlinear equation systems. +
                        • +
                        + "), Icon(coordinateSystem( preserveAspectRatio=true, extent={{-100,-100},{100,100}}, grid={1,1}), graphics={ Text( extent={{-151,147},{149,107}}, - lineColor={0,0,255}, + textColor={0,0,255}, fillPattern=FillPattern.HorizontalCylinder, fillColor={0,127,255}, textString="%name"), @@ -169,5 +169,6 @@ are often iteration variables in nonlinear equation systems. fillPattern=FillPattern.Solid, visible=not allowFlowReversal2, origin={-79,-50}, - rotation=360)})); + rotation=360)}), + __Dymola_LockedEditing="Model from IBPSA"); end PartialFourPort; diff --git a/AixLib/Fluid/Interfaces/PartialFourPortInterface.mo b/AixLib/Fluid/Interfaces/PartialFourPortInterface.mo index be45b17193..3518c81456 100644 --- a/AixLib/Fluid/Interfaces/PartialFourPortInterface.mo +++ b/AixLib/Fluid/Interfaces/PartialFourPortInterface.mo @@ -2,12 +2,10 @@ within AixLib.Fluid.Interfaces; partial model PartialFourPortInterface "Partial model transporting fluid between two ports without storing mass or energy" extends AixLib.Fluid.Interfaces.PartialFourPort; - parameter Modelica.SIunits.MassFlowRate m1_flow_nominal(min=0) - "Nominal mass flow rate" - annotation(Dialog(group = "Nominal condition")); - parameter Modelica.SIunits.MassFlowRate m2_flow_nominal(min=0) - "Nominal mass flow rate" - annotation(Dialog(group = "Nominal condition")); + parameter Modelica.Units.SI.MassFlowRate m1_flow_nominal(min=0) + "Nominal mass flow rate" annotation (Dialog(group="Nominal condition")); + parameter Modelica.Units.SI.MassFlowRate m2_flow_nominal(min=0) + "Nominal mass flow rate" annotation (Dialog(group="Nominal condition")); parameter Medium1.MassFlowRate m1_flow_small(min=0) = 1E-4*abs(m1_flow_nominal) "Small mass flow rate for regularization of zero flow" annotation(Dialog(tab = "Advanced")); @@ -17,41 +15,63 @@ partial model PartialFourPortInterface // Diagnostics parameter Boolean show_T = false "= true, if actual temperature at port is computed" - annotation( + annotation ( Dialog(tab="Advanced", group="Diagnostics"), HideResult=true); Medium1.MassFlowRate m1_flow = port_a1.m_flow "Mass flow rate from port_a1 to port_b1 (m1_flow > 0 is design flow direction)"; - Modelica.SIunits.PressureDifference dp1(displayUnit="Pa") = port_a1.p - port_b1.p + Modelica.Units.SI.PressureDifference dp1(displayUnit="Pa") = port_a1.p - port_b1.p "Pressure difference between port_a1 and port_b1"; Medium2.MassFlowRate m2_flow = port_a2.m_flow "Mass flow rate from port_a2 to port_b2 (m2_flow > 0 is design flow direction)"; - Modelica.SIunits.PressureDifference dp2(displayUnit="Pa") = port_a2.p - port_b2.p + Modelica.Units.SI.PressureDifference dp2(displayUnit="Pa") = port_a2.p - port_b2.p "Pressure difference between port_a2 and port_b2"; Medium1.ThermodynamicState sta_a1= + if allowFlowReversal1 then Medium1.setState_phX(port_a1.p, - noEvent(actualStream(port_a1.h_outflow)), - noEvent(actualStream(port_a1.Xi_outflow))) if - show_T "Medium properties in port_a1"; + noEvent(actualStream(port_a1.h_outflow)), + noEvent(actualStream(port_a1.Xi_outflow))) + else + Medium1.setState_phX(port_a1.p, + inStream(port_a1.h_outflow), + inStream(port_a1.Xi_outflow)) + if show_T "Medium properties in port_a1"; Medium1.ThermodynamicState sta_b1= + if allowFlowReversal1 then + Medium1.setState_phX(port_b1.p, + noEvent(actualStream(port_b1.h_outflow)), + noEvent(actualStream(port_b1.Xi_outflow))) + else Medium1.setState_phX(port_b1.p, - noEvent(actualStream(port_b1.h_outflow)), - noEvent(actualStream(port_b1.Xi_outflow))) if - show_T "Medium properties in port_b1"; + port_b1.h_outflow, + port_b1.Xi_outflow) + if show_T "Medium properties in port_b1"; + Medium2.ThermodynamicState sta_a2= + if allowFlowReversal2 then Medium2.setState_phX(port_a2.p, - noEvent(actualStream(port_a2.h_outflow)), - noEvent(actualStream(port_a2.Xi_outflow))) if - show_T "Medium properties in port_a2"; + noEvent(actualStream(port_a2.h_outflow)), + noEvent(actualStream(port_a2.Xi_outflow))) + else + Medium2.setState_phX(port_a2.p, + inStream(port_a2.h_outflow), + inStream(port_a2.Xi_outflow)) + if show_T "Medium properties in port_a2"; Medium2.ThermodynamicState sta_b2= + if allowFlowReversal2 then + Medium2.setState_phX(port_b2.p, + noEvent(actualStream(port_b2.h_outflow)), + noEvent(actualStream(port_b2.Xi_outflow))) + else Medium2.setState_phX(port_b2.p, - noEvent(actualStream(port_b2.h_outflow)), - noEvent(actualStream(port_b2.Xi_outflow))) if - show_T "Medium properties in port_b2"; + port_b2.h_outflow, + port_b2.Xi_outflow) + if show_T "Medium properties in port_b2"; + protected Medium1.ThermodynamicState state_a1_inflow= Medium1.setState_phX(port_a1.p, inStream(port_a1.h_outflow), inStream(port_a1.Xi_outflow)) @@ -69,125 +89,143 @@ protected annotation ( preferredView="info", Documentation(info=" -

                        -This component defines the interface for models that -transport two fluid streams between four ports. -It is similar to - -AixLib.Fluid.Interfaces.PartialTwoPortInterface, -but it has four ports instead of two. -

                        -

                        -The model is used by other models in this package that add heat transfer, -mass transfer and pressure drop equations. -

                        -", revisions=" -
                          -
                        • -March 30, 2021, by Michael Wetter:
                          -Added annotation HideResult=true.
                          -This is for -AixLib, #1459. -
                        • -
                        • -November 3, 2016, by Michael Wetter:
                          -Moved computation of pressure drop to variable assignment so that -the model won't mix graphical with textual modeling if used as a base -class for a graphically implemented model. -
                        • -
                        • -November 3, 2016, by Michael Wetter:
                          -Removed start values for mass flow rate and pressure difference -to simplify the parameter window.
                          -This is for -#552. -
                        • -
                        • -January 22, 2016, by Michael Wetter:
                          -Corrected type declaration of pressure difference. -This is -for #404. -
                        • -
                        • -November 13, 2013 by Michael Wetter:
                          -Removed assignment of min and max -attributes of port mass flow rates, as this is already -done in the base class. -
                        • -
                        • -November 12, 2013 by Michael Wetter:
                          -Removed import Modelica.Constants; statement. -
                        • -
                        • -November 11, 2013 by Michael Wetter:
                          -Removed the parameter homotopyInitialization -as it is no longer used in this model. -
                        • -
                        • -November 10, 2013 by Michael Wetter:
                          -In the computation of sta_a1, -sta_a2, sta_b1 and sta_b2, -removed the branch that uses the homotopy operator. -The rational is that these variables are conditionally enables (because -of ... if show_T). Therefore, the Modelica Language Specification -does not allow for these variables to be used in any equation. Hence, -the use of the homotopy operator is not needed here. -
                        • -
                        • -October 10, 2013 by Michael Wetter:
                          -Added noEvent to the computation of the states at the port. -This is correct, because the states are only used for reporting, but not -to compute any other variable. -Use of the states to compute other variables would violate the Modelica -language, as conditionally removed variables must not be used in any equation. -
                        • -
                        • -October 8, 2013 by Michael Wetter:
                          -Removed the computation of V_flow and removed the parameter -show_V_flow. -The reason is that the computation of V_flow required -the use of sta_a (to compute the density), -but sta_a is also a variable that is conditionally -enabled. However, this was not correct Modelica syntax as conditional variables -can only be used in a connect -statement, not in an assignment. Dymola 2014 FD01 beta3 is checking -for this incorrect syntax. Hence, V_flow was removed as its -conditional implementation would require a rather cumbersome implementation -that uses a new connector that carries the state of the medium. -
                        • -
                        • -April 26, 2013 by Marco Bonvini:
                          -Moved the definitions of dp1 and dp2 because they cause some problem with PyFMI. -
                        • -
                        • -March 27, 2012 by Michael Wetter:
                          -Replaced the erroneous function call Medium.density with -Medium1.density and Medium2.density. -Changed condition to remove sta_a1 and sta_a2 to also -compute the states at the inlet port if show_V_flow=true. -The previous implementation resulted in a translation error -if show_V_flow=true, but worked correctly otherwise -because the erroneous function call is removed if show_V_flow=false. -
                        • -
                        • -March 27, 2011 by Michael Wetter:
                          -Added homotopy operator. -
                        • -
                        • -March 21, 2010 by Michael Wetter:
                          -Changed pressure start value from system.p_start -to Medium.p_default since HVAC models may have water and -air, which are typically at different pressures. -
                        • -
                        • -September 19, 2008 by Michael Wetter:
                          -Added equations for the mass balance of extra species flow, -i.e., C and mC_flow. -
                        • -
                        • -April 28, 2008, by Michael Wetter:
                          -First implementation. -
                        • -
                        -")); +

                        + This component defines the interface for models that + transport two fluid streams between four ports. + It is similar to + + AixLib.Fluid.Interfaces.PartialTwoPortInterface, + but it has four ports instead of two. +

                        +

                        + The model is used by other models in this package that add heat transfer, + mass transfer and pressure drop equations. +

                        + ",revisions=" +
                          +
                        • + February 3, 2022, by Michael Wetter:
                          + If allowFlowReversal==false, removed noEvent() declaration + for sta_a and for sta_b because the variable is either + already used with inStream() in the computation of state_*_inflow, + or the result of a variable of the model that already may generate an event.
                          + This is for + IBPSA, #1578. +
                        • +
                        • + February 2, 2022, by Hongxiang Fu:
                          + If allowFlowReversal==false, replaced actualStream() + with inStream() for sta_a and + removed actualStream() for sta_b.
                          + This is for + IBPSA, #1578. +
                        • +
                        • + March 30, 2021, by Michael Wetter:
                          + Added annotation HideResult=true.
                          + This is for + IBPSA, #1459. +
                        • +
                        • + November 3, 2016, by Michael Wetter:
                          + Moved computation of pressure drop to variable assignment so that + the model won't mix graphical with textual modeling if used as a base + class for a graphically implemented model. +
                        • +
                        • + November 3, 2016, by Michael Wetter:
                          + Removed start values for mass flow rate and pressure difference + to simplify the parameter window.
                          + This is for + #552. +
                        • +
                        • + January 22, 2016, by Michael Wetter:
                          + Corrected type declaration of pressure difference. + This is + for #404. +
                        • +
                        • + November 13, 2013 by Michael Wetter:
                          + Removed assignment of min and max + attributes of port mass flow rates, as this is already + done in the base class. +
                        • +
                        • + November 12, 2013 by Michael Wetter:
                          + Removed import Modelica.Constants; statement. +
                        • +
                        • + November 11, 2013 by Michael Wetter:
                          + Removed the parameter homotopyInitialization + as it is no longer used in this model. +
                        • +
                        • + November 10, 2013 by Michael Wetter:
                          + In the computation of sta_a1, + sta_a2, sta_b1 and sta_b2, + removed the branch that uses the homotopy operator. + The rational is that these variables are conditionally enables (because + of ... if show_T). Therefore, the Modelica Language Specification + does not allow for these variables to be used in any equation. Hence, + the use of the homotopy operator is not needed here. +
                        • +
                        • + October 10, 2013 by Michael Wetter:
                          + Added noEvent to the computation of the states at the port. + This is correct, because the states are only used for reporting, but not + to compute any other variable. + Use of the states to compute other variables would violate the Modelica + language, as conditionally removed variables must not be used in any equation. +
                        • +
                        • + October 8, 2013 by Michael Wetter:
                          + Removed the computation of V_flow and removed the parameter + show_V_flow. + The reason is that the computation of V_flow required + the use of sta_a (to compute the density), + but sta_a is also a variable that is conditionally + enabled. However, this was not correct Modelica syntax as conditional variables + can only be used in a connect + statement, not in an assignment. Dymola 2014 FD01 beta3 is checking + for this incorrect syntax. Hence, V_flow was removed as its + conditional implementation would require a rather cumbersome implementation + that uses a new connector that carries the state of the medium. +
                        • +
                        • + April 26, 2013 by Marco Bonvini:
                          + Moved the definitions of dp1 and dp2 because they cause some problem with PyFMI. +
                        • +
                        • + March 27, 2012 by Michael Wetter:
                          + Replaced the erroneous function call Medium.density with + Medium1.density and Medium2.density. + Changed condition to remove sta_a1 and sta_a2 to also + compute the states at the inlet port if show_V_flow=true. + The previous implementation resulted in a translation error + if show_V_flow=true, but worked correctly otherwise + because the erroneous function call is removed if show_V_flow=false. +
                        • +
                        • + March 27, 2011 by Michael Wetter:
                          + Added homotopy operator. +
                        • +
                        • + March 21, 2010 by Michael Wetter:
                          + Changed pressure start value from system.p_start + to Medium.p_default since HVAC models may have water and + air, which are typically at different pressures. +
                        • +
                        • + September 19, 2008 by Michael Wetter:
                          + Added equations for the mass balance of extra species flow, + i.e., C and mC_flow. +
                        • +
                        • + April 28, 2008, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end PartialFourPortInterface; diff --git a/AixLib/Fluid/Interfaces/PartialFourPortParallel.mo b/AixLib/Fluid/Interfaces/PartialFourPortParallel.mo index c9c9938c7f..8d64e8e4e8 100644 --- a/AixLib/Fluid/Interfaces/PartialFourPortParallel.mo +++ b/AixLib/Fluid/Interfaces/PartialFourPortParallel.mo @@ -59,47 +59,48 @@ partial model PartialFourPortParallel annotation ( preferredView="info", Documentation(info=" -

                        -This model defines an interface for components with four ports -in which flows occur in parallel. -The parameters allowFlowReversal1 and allowFlowReversal2 -may be used by models that extend this model to treat flow reversal. -

                        -

                        -This model is identical to -Modelica.Fluid.Interfaces.PartialTwoPort, -except for the following:

                        -
                          -
                        1. it has four ports, and
                        2. -
                        3. the parameter showDesignFlowDirection is not implemented. -
                        4. -
                        -", revisions=" -
                          -
                        • -January 18, 2019, by Jianjun Hu:
                          -Limited the media choice. -See #1050. -
                        • -
                        • -July 8, 2018, by Filip Jorissen:
                          -Added nominal value of h_outflow in FluidPorts. -See #977. -
                        • -
                        • February 18, 2016 by Bram van der Heijde:
                          -First implementation, adapted from - -AixLib.Fluid.Interfaces.PartialFourPort. -
                        • -
                        -"), +

                        + This model defines an interface for components with four ports + in which flows occur in parallel. + The parameters allowFlowReversal1 and allowFlowReversal2 + may be used by models that extend this model to treat flow reversal. +

                        +

                        + This model is identical to + Modelica.Fluid.Interfaces.PartialTwoPort, + except for the following:

                        +
                          +
                        1. it has four ports, and
                        2. +
                        3. the parameter showDesignFlowDirection is not implemented. +
                        4. +
                        + ",revisions=" +
                          +
                        • + January 18, 2019, by Jianjun Hu:
                          + Limited the media choice. + See #1050. +
                        • +
                        • + July 8, 2018, by Filip Jorissen:
                          + Added nominal value of h_outflow in FluidPorts. + See #977. +
                        • +
                        • February 18, 2016 by Bram van der Heijde:
                          + First implementation, adapted from + + AixLib.Fluid.Interfaces.PartialFourPort. +
                        • +
                        + "), Icon(coordinateSystem( preserveAspectRatio=true, extent={{-100,-100},{100,100}}, grid={1,1}), graphics={Text( extent={{-151,147},{149,107}}, - lineColor={0,0,255}, + textColor={0,0,255}, fillPattern=FillPattern.HorizontalCylinder, fillColor={0,127,255}, - textString="%name")})); + textString="%name")}), + __Dymola_LockedEditing="Model from IBPSA"); end PartialFourPortParallel; diff --git a/AixLib/Fluid/Interfaces/PartialModularPort_a.mo b/AixLib/Fluid/Interfaces/PartialModularPort_a.mo index d0b266154f..106abf1b7d 100644 --- a/AixLib/Fluid/Interfaces/PartialModularPort_a.mo +++ b/AixLib/Fluid/Interfaces/PartialModularPort_a.mo @@ -24,15 +24,15 @@ partial model PartialModularPort_a // Definition of parameters describing initialisation and numeric limits // - parameter Modelica.SIunits.PressureDifference dp_start = 1e5 + parameter Modelica.Units.SI.PressureDifference dp_start=1e5 "Guess value of pressure difference for subcomponents" - annotation(Dialog(tab = "Advanced",group="Initialisation medium")); + annotation (Dialog(tab="Advanced", group="Initialisation medium")); parameter Medium.MassFlowRate m_flow_start = 0.5*m_flow_nominal "Guess value of m_flow = sum(ports_a.m_flow)" annotation(Dialog(tab = "Advanced",group="Initialisation medium")); - parameter Modelica.SIunits.PressureDifference dp_nominal = 7.5e5 + parameter Modelica.Units.SI.PressureDifference dp_nominal=7.5e5 "Pressure drop at nominal conditions" - annotation(Dialog(tab = "Advanced",group="Numeric limitations")); + annotation (Dialog(tab="Advanced", group="Numeric limitations")); parameter Medium.MassFlowRate m_flow_nominal = 0.1 "Nominal mass flow rate" annotation(Dialog(tab = "Advanced",group="Numeric limitations")); diff --git a/AixLib/Fluid/Interfaces/PartialModularPort_b.mo b/AixLib/Fluid/Interfaces/PartialModularPort_b.mo index c630fd2560..e96b30d41d 100644 --- a/AixLib/Fluid/Interfaces/PartialModularPort_b.mo +++ b/AixLib/Fluid/Interfaces/PartialModularPort_b.mo @@ -24,15 +24,15 @@ partial model PartialModularPort_b // Definition of parameters describing initialisation and numeric limits // - parameter Modelica.SIunits.PressureDifference dp_start = 1e5 + parameter Modelica.Units.SI.PressureDifference dp_start=1e5 "Guess value of pressure difference for subcomponents" - annotation(Dialog(tab = "Advanced",group="Initialisation medium")); + annotation (Dialog(tab="Advanced", group="Initialisation medium")); parameter Medium.MassFlowRate m_flow_start = 0.5*m_flow_nominal "Guess value of m_flow = port_a.m_flow" annotation(Dialog(tab = "Advanced",group="Initialisation medium")); - parameter Modelica.SIunits.PressureDifference dp_nominal = 7.5e5 + parameter Modelica.Units.SI.PressureDifference dp_nominal=7.5e5 "Pressure drop at nominal conditions" - annotation(Dialog(tab = "Advanced",group="Numeric limitations")); + annotation (Dialog(tab="Advanced", group="Numeric limitations")); parameter Medium.MassFlowRate m_flow_nominal = 0.1 "Nominal mass flow rate" annotation(Dialog(tab = "Advanced",group="Numeric limitations")); diff --git a/AixLib/Fluid/Interfaces/PartialTwoPort.mo b/AixLib/Fluid/Interfaces/PartialTwoPort.mo index 345de4c1f6..6f3fecd40b 100644 --- a/AixLib/Fluid/Interfaces/PartialTwoPort.mo +++ b/AixLib/Fluid/Interfaces/PartialTwoPort.mo @@ -30,66 +30,66 @@ partial model PartialTwoPort "Partial component with two ports" annotation ( Documentation(info=" -

                        -This partial model defines an interface for components with two ports. -The treatment of the design flow direction and of flow reversal are predefined based on the parameter allowFlowReversal. -The component may transport fluid and may have internal storage for a given fluid Medium. -

                        -

                        Implementation

                        -

                        -This model is similar to - -Modelica.Fluid.Interfaces.PartialTwoPort -but it does not use the outer system declaration. -This declaration is omitted as in building energy simulation, -many models use multiple media, an in practice, -users have not used this global definition to assign parameters. -

                        -", revisions=" -
                          -
                        • -January 18, 2019, by Jianjun Hu:
                          -Limited the media choice. -See #1050. -
                        • -
                        • -July 8, 2018, by Filip Jorissen:
                          -Added nominal value of h_outflow in FluidPorts. -See #977. -
                        • -
                        • -November 19, 2015, by Michael Wetter:
                          -Removed parameters -port_a_exposesState and -port_b_exposesState -for #351 -and -showDesignFlowDirection -for #349. -
                        • -
                        • -November 13, 2015, by Michael Wetter:
                          -Assinged start attribute for leaving -enthalpy at port_a and port_b. -This was done to make the model similar to - -AixLib.Fluid.Interfaces.PartialFourPort. -
                        • -
                        • -November 12, 2015, by Michael Wetter:
                          -Removed import statement. -
                        • -
                        • -October 21, 2014, by Michael Wetter:
                          -Revised implementation. -Declared medium in ports to be final. -
                        • -
                        • -October 20, 2014, by Filip Jorisson:
                          -First implementation. -
                        • -
                        -"), +

                        + This partial model defines an interface for components with two ports. + The treatment of the design flow direction and of flow reversal are predefined based on the parameter allowFlowReversal. + The component may transport fluid and may have internal storage for a given fluid Medium. +

                        +

                        Implementation

                        +

                        + This model is similar to + + Modelica.Fluid.Interfaces.PartialTwoPort + but it does not use the outer system declaration. + This declaration is omitted as in building energy simulation, + many models use multiple media, an in practice, + users have not used this global definition to assign parameters. +

                        + ",revisions=" +
                          +
                        • + January 18, 2019, by Jianjun Hu:
                          + Limited the media choice. + See #1050. +
                        • +
                        • + July 8, 2018, by Filip Jorissen:
                          + Added nominal value of h_outflow in FluidPorts. + See #977. +
                        • +
                        • + November 19, 2015, by Michael Wetter:
                          + Removed parameters + port_a_exposesState and + port_b_exposesState + for #351 + and + showDesignFlowDirection + for #349. +
                        • +
                        • + November 13, 2015, by Michael Wetter:
                          + Assinged start attribute for leaving + enthalpy at port_a and port_b. + This was done to make the model similar to + + AixLib.Fluid.Interfaces.PartialFourPort. +
                        • +
                        • + November 12, 2015, by Michael Wetter:
                          + Removed import statement. +
                        • +
                        • + October 21, 2014, by Michael Wetter:
                          + Revised implementation. + Declared medium in ports to be final. +
                        • +
                        • + October 20, 2014, by Filip Jorisson:
                          + First implementation. +
                        • +
                        + "), Icon(coordinateSystem( preserveAspectRatio=true, extent={{-100,-100},{100,100}}), graphics={ @@ -105,6 +105,7 @@ First implementation. visible=not allowFlowReversal), Text( extent={{-149,-114},{151,-154}}, - lineColor={0,0,255}, - textString="%name")})); + textColor={0,0,255}, + textString="%name")}), + __Dymola_LockedEditing="Model from IBPSA"); end PartialTwoPort; diff --git a/AixLib/Fluid/Interfaces/PartialTwoPortInterface.mo b/AixLib/Fluid/Interfaces/PartialTwoPortInterface.mo index 0187eab176..0d032b82ac 100644 --- a/AixLib/Fluid/Interfaces/PartialTwoPortInterface.mo +++ b/AixLib/Fluid/Interfaces/PartialTwoPortInterface.mo @@ -5,177 +5,198 @@ partial model PartialTwoPortInterface port_a(p(start=Medium.p_default)), port_b(p(start=Medium.p_default))); - parameter Modelica.SIunits.MassFlowRate m_flow_nominal - "Nominal mass flow rate" - annotation(Dialog(group = "Nominal condition")); - parameter Modelica.SIunits.MassFlowRate m_flow_small(min=0) = 1E-4*abs(m_flow_nominal) - "Small mass flow rate for regularization of zero flow" - annotation(Dialog(tab = "Advanced")); + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal + "Nominal mass flow rate" annotation (Dialog(group="Nominal condition")); + parameter Modelica.Units.SI.MassFlowRate m_flow_small(min=0) = 1E-4*abs( + m_flow_nominal) "Small mass flow rate for regularization of zero flow" + annotation (Dialog(tab="Advanced")); // Diagnostics parameter Boolean show_T = false "= true, if actual temperature at port is computed" - annotation( + annotation ( Dialog(tab="Advanced", group="Diagnostics"), HideResult=true); - Modelica.SIunits.MassFlowRate m_flow(start=_m_flow_start) = port_a.m_flow + Modelica.Units.SI.MassFlowRate m_flow(start=_m_flow_start) = port_a.m_flow "Mass flow rate from port_a to port_b (m_flow > 0 is design flow direction)"; - Modelica.SIunits.PressureDifference dp(start=_dp_start, displayUnit="Pa") = port_a.p - port_b.p + Modelica.Units.SI.PressureDifference dp( + start=_dp_start, + displayUnit="Pa") = port_a.p - port_b.p "Pressure difference between port_a and port_b"; Medium.ThermodynamicState sta_a= + if allowFlowReversal then Medium.setState_phX(port_a.p, noEvent(actualStream(port_a.h_outflow)), - noEvent(actualStream(port_a.Xi_outflow))) if - show_T "Medium properties in port_a"; + noEvent(actualStream(port_a.Xi_outflow))) + else + Medium.setState_phX(port_a.p, + noEvent(inStream(port_a.h_outflow)), + noEvent(inStream(port_a.Xi_outflow))) + if show_T "Medium properties in port_a"; Medium.ThermodynamicState sta_b= + if allowFlowReversal then Medium.setState_phX(port_b.p, noEvent(actualStream(port_b.h_outflow)), - noEvent(actualStream(port_b.Xi_outflow))) if - show_T "Medium properties in port_b"; + noEvent(actualStream(port_b.Xi_outflow))) + else + Medium.setState_phX(port_b.p, + noEvent(port_b.h_outflow), + noEvent(port_b.Xi_outflow)) + if show_T "Medium properties in port_b"; protected - final parameter Modelica.SIunits.MassFlowRate _m_flow_start = 0 - "Start value for m_flow, used to avoid a warning if not set in m_flow, and to avoid m_flow.start in parameter window"; - final parameter Modelica.SIunits.PressureDifference _dp_start(displayUnit="Pa") = 0 - "Start value for dp, used to avoid a warning if not set in dp, and to avoid dp.start in parameter window"; + final parameter Modelica.Units.SI.MassFlowRate _m_flow_start=0 + "Start value for m_flow, used to avoid a warning if not set in m_flow, and to avoid m_flow.start in parameter window"; + final parameter Modelica.Units.SI.PressureDifference _dp_start(displayUnit= + "Pa") = 0 + "Start value for dp, used to avoid a warning if not set in dp, and to avoid dp.start in parameter window"; annotation ( preferredView="info", Documentation(info=" -

                        -This component defines the interface for models that -transports a fluid between two ports. It is similar to - -Modelica.Fluid.Interfaces.PartialTwoPortTransport, but it does not -include the species balance -

                        -
                        -  port_b.Xi_outflow = inStream(port_a.Xi_outflow);
                        -
                        -

                        -Thus, it can be used as a base class for a heat and mass transfer component -

                        -

                        -The model is used by other models in this package that add heat transfer, -mass transfer and pressure drop equations. See for example - -AixLib.Fluid.Interfaces.StaticTwoPortHeatMassExchanger. -

                        -", revisions=" -
                          -
                        • -March 30, 2021, by Michael Wetter:
                          -Added annotation HideResult=true.
                          -This is for -AixLib, #1459. -
                        • -
                        • -November 3, 2016, by Michael Wetter:
                          -Renamed protected parameter m_flow_start to avoid -a name clash with - -AixLib.Fluid.Movers.FlowControlled_m_flow -which leads to an error as the definition were different, -and also renamed protected parameter dp_start. -This is for -#552 -
                          -Moved computation of pressure drop to variable assignment so that -the model won't mix graphical with textual modeling if used as a base -class for a graphically implemented model. -
                        • -
                        • -November 3, 2016, by Michael Wetter:
                          -Removed start values for mass flow rate and pressure difference -to simplify the parameter window.
                          -This is for -#552. -
                        • -
                        • -January 22, 2016, by Michael Wetter:
                          -Corrected type declaration of pressure difference. -This is -for #404. -
                        • -
                        • -October 3, 2014, by Michael Wetter:
                          -Changed assignment of nominal value to avoid in OpenModelica the warning -alias set with different nominal values. -
                        • -
                        • -November 12, 2013 by Michael Wetter:
                          -Removed import Modelica.Constants; statement. -
                        • -
                        • -November 11, 2013 by Michael Wetter:
                          -Removed the parameter homotopyInitialization -as it is no longer used in this model. -
                        • -
                        • -November 10, 2013 by Michael Wetter:
                          -In the computation of sta_a and sta_b, -removed the branch that uses the homotopy operator. -The rational is that these variables are conditionally enables (because -of ... if show_T). Therefore, the Modelica Language Specification -does not allow for these variables to be used in any equation. Hence, -the use of the homotopy operator is not needed here. -
                        • -
                        • -October 10, 2013 by Michael Wetter:
                          -Added noEvent to the computation of the states at the port. -This is correct, because the states are only used for reporting, but not -to compute any other variable. -Use of the states to compute other variables would violate the Modelica -language, as conditionally removed variables must not be used in any equation. -
                        • -
                        • -October 8, 2013 by Michael Wetter:
                          -Removed the computation of V_flow and removed the parameter -show_V_flow. -The reason is that the computation of V_flow required -the use of sta_a (to compute the density), -but sta_a is also a variable that is conditionally -enabled. However, this was not correct Modelica syntax as conditional variables -can only be used in a connect -statement, not in an assignment. Dymola 2014 FD01 beta3 is checking -for this incorrect syntax. Hence, V_flow was removed as its -conditional implementation would require a rather cumbersome implementation -that uses a new connector that carries the state of the medium. -
                        • -
                        • -April 26, 2013 by Marco Bonvini:
                          -Moved the definition of dp because it causes some problem with PyFMI. -
                        • -
                        • -March 27, 2012 by Michael Wetter:
                          -Changed condition to remove sta_a to also -compute the state at the inlet port if show_V_flow=true. -The previous implementation resulted in a translation error -if show_V_flow=true, but worked correctly otherwise -because the erroneous function call is removed if show_V_flow=false. -
                        • -
                        • -March 27, 2011 by Michael Wetter:
                          -Added homotopy operator. -
                        • -
                        • -March 21, 2010 by Michael Wetter:
                          -Changed pressure start value from system.p_start -to Medium.p_default since HVAC models may have water and -air, which are typically at different pressures. -
                        • -
                        • -September 19, 2008 by Michael Wetter:
                          -Added equations for the mass balance of extra species flow, -i.e., C and mC_flow. -
                        • -
                        • -March 11, 2008, by Michael Wetter:
                          -First implementation. -
                        • -
                        -")); +

                        + This component defines the interface for models that + transports a fluid between two ports. It is similar to + + Modelica.Fluid.Interfaces.PartialTwoPortTransport, but it does not + include the species balance +

                        +
                        +   port_b.Xi_outflow = inStream(port_a.Xi_outflow);
                        + 
                        +

                        + Thus, it can be used as a base class for a heat and mass transfer component +

                        +

                        + The model is used by other models in this package that add heat transfer, + mass transfer and pressure drop equations. See for example + + AixLib.Fluid.Interfaces.StaticTwoPortHeatMassExchanger. +

                        + ",revisions=" +
                          +
                        • + February 2, 2022, by Hongxiang Fu:
                          + If allowFlowReversal==false, replaced actualStream() + with inStream() for sta_a and + removed actualStream() for sta_b.
                          + This is for + IBPSA, #1578. +
                        • +
                        • + March 30, 2021, by Michael Wetter:
                          + Added annotation HideResult=true.
                          + This is for + IBPSA, #1459. +
                        • +
                        • + November 3, 2016, by Michael Wetter:
                          + Renamed protected parameter m_flow_start to avoid + a name clash with + + AixLib.Fluid.Movers.FlowControlled_m_flow + which leads to an error as the definition were different, + and also renamed protected parameter dp_start. + This is for + #552 +
                          + Moved computation of pressure drop to variable assignment so that + the model won't mix graphical with textual modeling if used as a base + class for a graphically implemented model. +
                        • +
                        • + November 3, 2016, by Michael Wetter:
                          + Removed start values for mass flow rate and pressure difference + to simplify the parameter window.
                          + This is for + #552. +
                        • +
                        • + January 22, 2016, by Michael Wetter:
                          + Corrected type declaration of pressure difference. + This is + for #404. +
                        • +
                        • + October 3, 2014, by Michael Wetter:
                          + Changed assignment of nominal value to avoid in OpenModelica the warning + alias set with different nominal values. +
                        • +
                        • + November 12, 2013 by Michael Wetter:
                          + Removed import Modelica.Constants; statement. +
                        • +
                        • + November 11, 2013 by Michael Wetter:
                          + Removed the parameter homotopyInitialization + as it is no longer used in this model. +
                        • +
                        • + November 10, 2013 by Michael Wetter:
                          + In the computation of sta_a and sta_b, + removed the branch that uses the homotopy operator. + The rational is that these variables are conditionally enables (because + of ... if show_T). Therefore, the Modelica Language Specification + does not allow for these variables to be used in any equation. Hence, + the use of the homotopy operator is not needed here. +
                        • +
                        • + October 10, 2013 by Michael Wetter:
                          + Added noEvent to the computation of the states at the port. + This is correct, because the states are only used for reporting, but not + to compute any other variable. + Use of the states to compute other variables would violate the Modelica + language, as conditionally removed variables must not be used in any equation. +
                        • +
                        • + October 8, 2013 by Michael Wetter:
                          + Removed the computation of V_flow and removed the parameter + show_V_flow. + The reason is that the computation of V_flow required + the use of sta_a (to compute the density), + but sta_a is also a variable that is conditionally + enabled. However, this was not correct Modelica syntax as conditional variables + can only be used in a connect + statement, not in an assignment. Dymola 2014 FD01 beta3 is checking + for this incorrect syntax. Hence, V_flow was removed as its + conditional implementation would require a rather cumbersome implementation + that uses a new connector that carries the state of the medium. +
                        • +
                        • + April 26, 2013 by Marco Bonvini:
                          + Moved the definition of dp because it causes some problem with PyFMI. +
                        • +
                        • + March 27, 2012 by Michael Wetter:
                          + Changed condition to remove sta_a to also + compute the state at the inlet port if show_V_flow=true. + The previous implementation resulted in a translation error + if show_V_flow=true, but worked correctly otherwise + because the erroneous function call is removed if show_V_flow=false. +
                        • +
                        • + March 27, 2011 by Michael Wetter:
                          + Added homotopy operator. +
                        • +
                        • + March 21, 2010 by Michael Wetter:
                          + Changed pressure start value from system.p_start + to Medium.p_default since HVAC models may have water and + air, which are typically at different pressures. +
                        • +
                        • + September 19, 2008 by Michael Wetter:
                          + Added equations for the mass balance of extra species flow, + i.e., C and mC_flow. +
                        • +
                        • + March 11, 2008, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end PartialTwoPortInterface; diff --git a/AixLib/Fluid/Interfaces/PartialTwoPortTransport.mo b/AixLib/Fluid/Interfaces/PartialTwoPortTransport.mo index a301a06667..80ddcbf5d2 100644 --- a/AixLib/Fluid/Interfaces/PartialTwoPortTransport.mo +++ b/AixLib/Fluid/Interfaces/PartialTwoPortTransport.mo @@ -6,9 +6,9 @@ partial model PartialTwoPortTransport // Advanced // Note: value of dp_start shall be refined by derived model, // based on local dp_nominal - parameter Modelica.SIunits.PressureDifference dp_start(displayUnit="Pa") = 0 + parameter Modelica.Units.SI.PressureDifference dp_start(displayUnit="Pa") = 0 "Guess value of dp = port_a.p - port_b.p" - annotation(Dialog(tab = "Advanced")); + annotation (Dialog(tab="Advanced")); parameter Medium.MassFlowRate m_flow_start = 0 "Guess value of m_flow = port_a.m_flow" annotation(Dialog(tab = "Advanced")); @@ -21,12 +21,12 @@ partial model PartialTwoPortTransport // Diagnostics parameter Boolean show_T = true "= true, if temperatures at port_a and port_b are computed" - annotation( + annotation ( Dialog(tab="Advanced", group="Diagnostics"), HideResult=true); parameter Boolean show_V_flow = true "= true, if volume flow rate at inflowing port is computed" - annotation( + annotation ( Dialog(tab="Advanced", group="Diagnostics"), HideResult=true); @@ -34,23 +34,21 @@ partial model PartialTwoPortTransport Medium.MassFlowRate m_flow( min=if allowFlowReversal then -Modelica.Constants.inf else 0, start = m_flow_start) "Mass flow rate in design flow direction"; - Modelica.SIunits.PressureDifference dp(start=dp_start, - displayUnit="Pa") + Modelica.Units.SI.PressureDifference dp(start=dp_start, displayUnit="Pa") "Pressure difference between port_a and port_b (= port_a.p - port_b.p)"; - Modelica.SIunits.VolumeFlowRate V_flow= - m_flow/Modelica.Fluid.Utilities.regStep(m_flow, - Medium.density( - Medium.setState_phX( - p = port_a.p, - h = inStream(port_a.h_outflow), - X = inStream(port_a.Xi_outflow))), - Medium.density( - Medium.setState_phX( - p = port_b.p, - h = inStream(port_b.h_outflow), - X = inStream(port_b.Xi_outflow))), - m_flow_small) if show_V_flow + Modelica.Units.SI.VolumeFlowRate V_flow=m_flow/ + Modelica.Fluid.Utilities.regStep( + m_flow, + Medium.density(Medium.setState_phX( + p=port_a.p, + h=inStream(port_a.h_outflow), + X=inStream(port_a.Xi_outflow))), + Medium.density(Medium.setState_phX( + p=port_b.p, + h=inStream(port_b.h_outflow), + X=inStream(port_b.Xi_outflow))), + m_flow_small) if show_V_flow "Volume flow rate at inflowing port (positive when flow from port_a to port_b)"; Medium.Temperature port_a_T= @@ -94,94 +92,95 @@ equation annotation ( Documentation(info=" -

                        -This component transports fluid between its two ports, without storing mass or energy. -Energy may be exchanged with the environment though, e.g., in the form of work. -PartialTwoPortTransport is intended as base class for devices like orifices, valves and simple fluid machines.

                        -

                        -Three equations need to be added by an extending class using this component: -

                        -
                          -
                        • The momentum balance specifying the relationship between the pressure drop dp and the mass flow rate m_flow,
                        • -
                        • port_b.h_outflow for flow in design direction, and
                        • -
                        • port_a.h_outflow for flow in reverse direction.
                        • -
                        -

                        -Moreover appropriate values shall be assigned to the following parameters: -

                        -
                          -
                        • dp_start for a guess of the pressure drop
                        • -
                        • m_flow_small for regularization of zero flow.
                        • -
                        -

                        Implementation

                        -

                        -This is similar to - -Modelica.Fluid.Interfaces.PartialTwoPortTransport -except that it does not use the outer system declaration. -This declaration is omitted as in building energy simulation, -many models use multiple media, an in practice, -users have not used this global definition to assign parameters. -

                        -", revisions=" -
                          -
                        • -March 30, 2021, by Michael Wetter:
                          -Added annotation HideResult=true.
                          -This is for -AixLib, #1459. -
                        • -
                        • -September 15, 2016, by Michael Wetter:
                          -Removed wrong annotation, which caused an error in the pedantic model check -of Dymola 2017 FD01. -This is -for #516. -
                        • -
                        • -January 22, 2016, by Henning Francke:
                          -Corrected type declaration of pressure. -This is -for #404. -
                        • -
                        • -November 19, 2015, by Michael Wetter:
                          -Removed assignments of parameters -port_a_exposesState and -port_b_exposesState in base class. -This is -for #351. -
                        • -
                        • -August 15, 2015, by Filip Jorissen:
                          -Implemented more efficient computation of port_a.Xi_outflow -and port_a.C_outflow when allowFlowReversal=false. -This is for -#305. -
                        • -
                        • -June 6, 2015, by Michael Wetter:
                          -Removed protected conditional variables state_a and state_b, -as they were used outside of a connect statement, which causes an -error during pedantic model check in Dymola 2016. -This fixes -#128. -
                        • -
                        • -April 1, 2015, by Michael Wetter:
                          -Made computation of state_a and state_p -conditional on show_T or show_V_flow. -This avoids computing temperature from enthalpy if temperature is -a state of the medium, and the result is not used. -
                        • -
                        • -October 21, 2014, by Michael Wetter:
                          -Revised implementation. -
                        • -
                        • -October 20, 2014, by Filip Jorisson:
                          -First implementation. -
                        • -
                        -")); +

                        + This component transports fluid between its two ports, without storing mass or energy. + Energy may be exchanged with the environment though, e.g., in the form of work. + PartialTwoPortTransport is intended as base class for devices like orifices, valves and simple fluid machines.

                        +

                        + Three equations need to be added by an extending class using this component: +

                        +
                          +
                        • The momentum balance specifying the relationship between the pressure drop dp and the mass flow rate m_flow,
                        • +
                        • port_b.h_outflow for flow in design direction, and
                        • +
                        • port_a.h_outflow for flow in reverse direction.
                        • +
                        +

                        + Moreover appropriate values shall be assigned to the following parameters: +

                        +
                          +
                        • dp_start for a guess of the pressure drop
                        • +
                        • m_flow_small for regularization of zero flow.
                        • +
                        +

                        Implementation

                        +

                        + This is similar to + + Modelica.Fluid.Interfaces.PartialTwoPortTransport + except that it does not use the outer system declaration. + This declaration is omitted as in building energy simulation, + many models use multiple media, an in practice, + users have not used this global definition to assign parameters. +

                        + ",revisions=" +
                          +
                        • + March 30, 2021, by Michael Wetter:
                          + Added annotation HideResult=true.
                          + This is for + IBPSA, #1459. +
                        • +
                        • + September 15, 2016, by Michael Wetter:
                          + Removed wrong annotation, which caused an error in the pedantic model check + of Dymola 2017 FD01. + This is + for #516. +
                        • +
                        • + January 22, 2016, by Henning Francke:
                          + Corrected type declaration of pressure. + This is + for #404. +
                        • +
                        • + November 19, 2015, by Michael Wetter:
                          + Removed assignments of parameters + port_a_exposesState and + port_b_exposesState in base class. + This is + for #351. +
                        • +
                        • + August 15, 2015, by Filip Jorissen:
                          + Implemented more efficient computation of port_a.Xi_outflow + and port_a.C_outflow when allowFlowReversal=false. + This is for + #305. +
                        • +
                        • + June 6, 2015, by Michael Wetter:
                          + Removed protected conditional variables state_a and state_b, + as they were used outside of a connect statement, which causes an + error during pedantic model check in Dymola 2016. + This fixes + #128. +
                        • +
                        • + April 1, 2015, by Michael Wetter:
                          + Made computation of state_a and state_p + conditional on show_T or show_V_flow. + This avoids computing temperature from enthalpy if temperature is + a state of the medium, and the result is not used. +
                        • +
                        • + October 21, 2014, by Michael Wetter:
                          + Revised implementation. +
                        • +
                        • + October 20, 2014, by Filip Jorisson:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end PartialTwoPortTransport; diff --git a/AixLib/Fluid/Interfaces/PartialTwoPortVector.mo b/AixLib/Fluid/Interfaces/PartialTwoPortVector.mo index 1fc934508b..06fa0c526a 100644 --- a/AixLib/Fluid/Interfaces/PartialTwoPortVector.mo +++ b/AixLib/Fluid/Interfaces/PartialTwoPortVector.mo @@ -34,98 +34,98 @@ partial model PartialTwoPortVector "Partial component with two ports, one of whi // Diagnostics parameter Boolean show_T = false "= true, if actual temperature at port is computed" - annotation( + annotation ( Dialog(tab="Advanced", group="Diagnostics"), HideResult=true); Medium.ThermodynamicState sta_a= Medium.setState_phX(port_a.p, noEvent(actualStream(port_a.h_outflow)), - noEvent(actualStream(port_a.Xi_outflow))) if - show_T "Medium properties in port_a"; + noEvent(actualStream(port_a.Xi_outflow))) + if show_T "Medium properties in port_a"; Medium.ThermodynamicState sta_b[nPorts]= Medium.setState_phX(ports_b.p, noEvent(actualStream(ports_b.h_outflow)), - noEvent(actualStream(ports_b.Xi_outflow))) if - show_T "Medium properties in ports_b"; + noEvent(actualStream(ports_b.Xi_outflow))) + if show_T "Medium properties in ports_b"; annotation ( Documentation(info=" -

                        -This partial model defines an interface for components with two ports, -of which one is vectorized. -

                        -

                        -The treatment of the design flow direction and of flow reversal are -determined based on the parameter allowFlowReversal. -The component may transport fluid and may have internal storage. -

                        -

                        Implementation

                        -

                        -This model is similar to - -Modelica.Fluid.Interfaces.PartialTwoPort -but it does not use the outer system declaration. -This declaration is omitted as in building energy simulation, -many models use multiple media, and in practice, -users have not used this global definition to assign parameters. -

                        -", revisions=" -
                          -
                        • -March 30, 2021, by Michael Wetter:
                          -Added annotation HideResult=true.
                          -This is for -AixLib, #1459. -
                        • -
                        • -January 31, 2019, by Michael Mans:
                          -Added optional temperature state calculation as diagnostics option. -See #1092. -
                        • -
                        • -January 18, 2019, by Jianjun Hu:
                          -Limited the media choice. -See #1050. -
                        • -
                        • -July 8, 2018, by Filip Jorissen:
                          -Added nominal value of h_outflow in FluidPorts. -See #977. -
                        • -
                        • -November 19, 2015, by Michael Wetter:
                          -Removed parameters -port_a_exposesState and -port_b_exposesState -for #351 -and -showDesignFlowDirection -for #349. -
                        • -
                        • -November 13, 2015, by Michael Wetter:
                          -Assinged start attribute for leaving -enthalpy at port_a and port_b. -This was done to make the model similar to - -AixLib.Fluid.Interfaces.PartialFourPort. -
                        • -
                        • -November 12, 2015, by Michael Wetter:
                          -Removed import statement. -
                        • -
                        • -October 21, 2014, by Michael Wetter:
                          -Revised implementation. -Declared medium in ports to be final. -
                        • -
                        • -October 20, 2014, by Filip Jorisson:
                          -First implementation. -
                        • -
                        -"), +

                        + This partial model defines an interface for components with two ports, + of which one is vectorized. +

                        +

                        + The treatment of the design flow direction and of flow reversal are + determined based on the parameter allowFlowReversal. + The component may transport fluid and may have internal storage. +

                        +

                        Implementation

                        +

                        + This model is similar to + + Modelica.Fluid.Interfaces.PartialTwoPort + but it does not use the outer system declaration. + This declaration is omitted as in building energy simulation, + many models use multiple media, and in practice, + users have not used this global definition to assign parameters. +

                        + ",revisions=" +
                          +
                        • + March 30, 2021, by Michael Wetter:
                          + Added annotation HideResult=true.
                          + This is for + IBPSA, #1459. +
                        • +
                        • + January 31, 2019, by Michael Mans:
                          + Added optional temperature state calculation as diagnostics option. + See #1092. +
                        • +
                        • + January 18, 2019, by Jianjun Hu:
                          + Limited the media choice. + See #1050. +
                        • +
                        • + July 8, 2018, by Filip Jorissen:
                          + Added nominal value of h_outflow in FluidPorts. + See #977. +
                        • +
                        • + November 19, 2015, by Michael Wetter:
                          + Removed parameters + port_a_exposesState and + port_b_exposesState + for #351 + and + showDesignFlowDirection + for #349. +
                        • +
                        • + November 13, 2015, by Michael Wetter:
                          + Assinged start attribute for leaving + enthalpy at port_a and port_b. + This was done to make the model similar to + + AixLib.Fluid.Interfaces.PartialFourPort. +
                        • +
                        • + November 12, 2015, by Michael Wetter:
                          + Removed import statement. +
                        • +
                        • + October 21, 2014, by Michael Wetter:
                          + Revised implementation. + Declared medium in ports to be final. +
                        • +
                        • + October 20, 2014, by Filip Jorisson:
                          + First implementation. +
                        • +
                        + "), Icon(coordinateSystem(preserveAspectRatio=true, extent={{-100,-100},{100,100}}), graphics={ Polygon( @@ -140,8 +140,9 @@ First implementation. visible=not allowFlowReversal), Text( extent={{-149,-114},{151,-154}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="%name")}), Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100, - 100}}))); + 100}})), + __Dymola_LockedEditing="Model from IBPSA"); end PartialTwoPortVector; diff --git a/AixLib/Fluid/Interfaces/PrescribedOutlet.mo b/AixLib/Fluid/Interfaces/PrescribedOutlet.mo index a137f498e1..5e8ffe726b 100644 --- a/AixLib/Fluid/Interfaces/PrescribedOutlet.mo +++ b/AixLib/Fluid/Interfaces/PrescribedOutlet.mo @@ -3,42 +3,34 @@ model PrescribedOutlet "Component that assigns the outlet fluid property at port_a based on an input signal" extends AixLib.Fluid.Interfaces.PartialTwoPortInterface; - parameter Modelica.SIunits.HeatFlowRate QMax_flow(min=0) = Modelica.Constants.inf + parameter Modelica.Units.SI.HeatFlowRate QMax_flow(min=0) = Modelica.Constants.inf "Maximum heat flow rate for heating (positive)" annotation (Evaluate=true, Dialog(enable=use_TSet)); - parameter Modelica.SIunits.HeatFlowRate QMin_flow(max=0) = -Modelica.Constants.inf + parameter Modelica.Units.SI.HeatFlowRate QMin_flow(max=0) = -Modelica.Constants.inf "Maximum heat flow rate for cooling (negative)" annotation (Evaluate=true, Dialog(enable=use_TSet)); - parameter Modelica.SIunits.MassFlowRate mWatMax_flow(min=0) = Modelica.Constants.inf + parameter Modelica.Units.SI.MassFlowRate mWatMax_flow(min=0) = Modelica.Constants.inf "Maximum water mass flow rate addition (positive)" annotation (Evaluate=true, Dialog(enable=use_X_wSet)); - parameter Modelica.SIunits.MassFlowRate mWatMin_flow(max=0) = -Modelica.Constants.inf + parameter Modelica.Units.SI.MassFlowRate mWatMin_flow(max=0) = -Modelica.Constants.inf "Maximum water mass flow rate removal (negative)" annotation (Evaluate=true, Dialog(enable=use_X_wSet)); - parameter Modelica.SIunits.MassFlowRate m_flow_nominal - "Nominal mass flow rate, used for regularization near zero flow" - annotation(Dialog(group = "Nominal condition")); - - parameter Modelica.SIunits.Time tau(min=0) = 10 - "Time constant at nominal flow rate (used if energyDynamics or massDynamics not equal Modelica.Fluid.Types.Dynamics.SteadyState)" - annotation(Dialog(tab = "Dynamics")); - parameter Modelica.SIunits.Temperature T_start=Medium.T_default + parameter Modelica.Units.SI.Time tau(min=0) = 10 + "Time constant at nominal flow rate (used if energyDynamics not equal Modelica.Fluid.Types.Dynamics.SteadyState)" + annotation (Dialog(tab="Dynamics")); + parameter Modelica.Units.SI.Temperature T_start=Medium.T_default "Start value of temperature" - annotation(Dialog(tab = "Initialization", enable=use_TSet)); - parameter Modelica.SIunits.MassFraction X_start[Medium.nX] = Medium.X_default - "Start value of mass fractions m_i/m" - annotation (Dialog(tab="Initialization", enable=use_X_wSet and Medium.nXi > 0)); + annotation (Dialog(tab="Initialization", enable=use_TSet)); + parameter Modelica.Units.SI.MassFraction X_start[Medium.nX]=Medium.X_default + "Start value of mass fractions m_i/m" annotation (Dialog(tab= + "Initialization", enable=use_X_wSet and Medium.nXi > 0)); // Dynamics parameter Modelica.Fluid.Types.Dynamics energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyState "Type of energy balance: dynamic (3 initialization options) or steady state" - annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Equations", enable=use_TSet)); - - parameter Modelica.Fluid.Types.Dynamics massDynamics=energyDynamics - "Type of mass balance: dynamic (3 initialization options) or steady state" - annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Equations", enable=use_X_wSet)); + annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Conservation equations", enable=use_TSet)); parameter Boolean use_TSet = true "Set to false to disable temperature set point" @@ -73,12 +65,11 @@ model PrescribedOutlet annotation (Placement(transformation(extent={{100,30},{120,50}}))); protected - parameter Modelica.SIunits.SpecificHeatCapacity cp_default= - Medium.specificHeatCapacityCp( - Medium.setState_pTX( - p=Medium.p_default, - T=Medium.T_default, - X=Medium.X_default)) "Specific heat capacity at default medium state"; + parameter Modelica.Units.SI.SpecificHeatCapacity cp_default= + Medium.specificHeatCapacityCp(Medium.setState_pTX( + p=Medium.p_default, + T=Medium.T_default, + X=Medium.X_default)) "Specific heat capacity at default medium state"; parameter Boolean restrictHeat = QMax_flow < Modelica.Constants.inf/10.0 "Flag, true if maximum heating power is restricted" @@ -94,35 +85,34 @@ protected "Flag, true if maximum dehumidification is restricted" annotation(Evaluate = true); - parameter Modelica.SIunits.SpecificEnthalpy deltaH= - cp_default*1E-6 + parameter Modelica.Units.SI.SpecificEnthalpy deltaH=cp_default*1E-6 "Small value for deltaH used for regularization"; - parameter Modelica.SIunits.MassFraction deltaXi = 1E-6 + parameter Modelica.Units.SI.MassFraction deltaXi=1E-6 "Small mass fraction used for regularization"; - Modelica.SIunits.MassFlowRate m_flow_pos + Modelica.Units.SI.MassFlowRate m_flow_pos "Mass flow rate, or zero if reverse flow"; - Modelica.SIunits.MassFlowRate m_flow_non_zero + Modelica.Units.SI.MassFlowRate m_flow_non_zero "Mass flow rate bounded away from zero"; - Modelica.SIunits.SpecificEnthalpy hSet + Modelica.Units.SI.SpecificEnthalpy hSet "Set point for enthalpy leaving port_b"; - Modelica.SIunits.Temperature T + Modelica.Units.SI.Temperature T "Temperature of outlet state assuming unlimited capacity and taking dynamics into account"; - Modelica.SIunits.MassFraction Xi + Modelica.Units.SI.MassFraction Xi "Water vapor mass fraction of outlet state assuming unlimited capacity and taking dynamics into account"; - Modelica.SIunits.MassFraction Xi_instream[Medium.nXi] + Modelica.Units.SI.MassFraction Xi_instream[Medium.nXi] "Instreaming water vapor mass fraction at port_a"; - Modelica.SIunits.MassFraction Xi_outflow + Modelica.Units.SI.MassFraction Xi_outflow "Outstreaming water vapor mass fraction at port_a"; - Modelica.SIunits.SpecificEnthalpy dhAct + Modelica.Units.SI.SpecificEnthalpy dhAct "Actual enthalpy difference from port_a to port_b"; Real dXiAct(final unit="1") @@ -151,9 +141,9 @@ initial equation end if; if use_X_wSet then - if massDynamics == Modelica.Fluid.Types.Dynamics.SteadyStateInitial then + if energyDynamics == Modelica.Fluid.Types.Dynamics.SteadyStateInitial then der(Xi) = 0; - elseif massDynamics == Modelica.Fluid.Types.Dynamics.FixedInitial then + elseif energyDynamics == Modelica.Fluid.Types.Dynamics.FixedInitial then Xi = X_start[1]; end if; end if; @@ -161,13 +151,8 @@ initial equation assert((energyDynamics == Modelica.Fluid.Types.Dynamics.SteadyState) or tau > Modelica.Constants.eps, "The parameter tau, or the volume of the model from which tau may be derived, is unreasonably small. - You need to set energyDynamics == Modelica.Fluid.Types.Dynamics.SteadyState to model steady-state. - Received tau = " + String(tau) + "\n"); - assert((massDynamics == Modelica.Fluid.Types.Dynamics.SteadyState) or - tau > Modelica.Constants.eps, -"The parameter tau, or the volume of the model from which tau may be derived, is unreasonably small. - You need to set massDynamics == Modelica.Fluid.Types.Dynamics.SteadyState to model steady-state. - Received tau = " + String(tau) + "\n"); + You need to set energyDynamics == Modelica.Fluid.Types.Dynamics.SteadyState to model steady-state. + Received tau = "+ String(tau) + "\n"); if use_X_wSet then assert(Medium.nX > 1, "If use_X_wSet = true, require a medium with water vapor, such as AixLib.Media.Air"); @@ -184,8 +169,7 @@ equation end if; connect(X_wSet, X_wSet_internal); - if (use_TSet and energyDynamics == Modelica.Fluid.Types.Dynamics.SteadyState) or - (use_X_wSet and massDynamics == Modelica.Fluid.Types.Dynamics.SteadyState) then + if ((use_TSet or use_X_wSet) and energyDynamics == Modelica.Fluid.Types.Dynamics.SteadyState) then mNor_flow = port_a.m_flow/m_flow_nominal; k = Modelica.Fluid.Utilities.regStep(x=port_a.m_flow, y1= mNor_flow, @@ -202,7 +186,7 @@ equation T = TSet_internal; end if; - if use_X_wSet and massDynamics <> Modelica.Fluid.Types.Dynamics.SteadyState then + if use_X_wSet and energyDynamics <> Modelica.Fluid.Types.Dynamics.SteadyState then der(Xi) = (X_wSet_internal-Xi)*k/tau; else Xi = X_wSet_internal; @@ -357,12 +341,12 @@ equation fillPattern=FillPattern.Solid), Text( extent={{-98,64},{-76,42}}, - lineColor={0,0,127}, + textColor={0,0,127}, visible=use_X_wSet, textString="X_w"), Text( extent={{74,72},{120,44}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="mWat_flow"), Rectangle( extent={{-70,60},{70,-60}}, @@ -391,7 +375,7 @@ equation fillPattern=FillPattern.Solid), Text( extent={{-106,102},{-74,88}}, - lineColor={0,0,127}, + textColor={0,0,127}, visible=use_TSet, textString="T"), Rectangle( @@ -403,7 +387,7 @@ equation fillPattern=FillPattern.Solid), Text( extent={{72,108},{120,92}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="Q_flow"), Rectangle( extent={{70,82},{100,78}}, @@ -425,70 +409,81 @@ equation fillColor={0,0,127}, fillPattern=FillPattern.Solid)}), Documentation(info=" -

                        -This model sets the temperature or the water vapor mass fraction -of the medium that leaves port_a -to the value given by the input TSet or X_wSet, -subject to optional limitations on the capacity -for heating and cooling, or limitations on the humidification or dehumidification -moisture mass flow rate. -Also, optionally the model allows to take into account first order dynamics. -

                        -

                        -If the parameters energyDynamics or -massDynamics are not equal to -Modelica.Fluid.Types.Dynamics.SteadyState, -the component models the dynamic response using a first order differential equation. -The time constant of the component is equal to the parameter tau. -This time constant is adjusted based on the mass flow rate using -

                        -

                        eff = τ |ṁ| ⁄ ṁnom -

                        -

                        -where -τeff is the effective time constant for the given mass flow rate - and -τ is the time constant at the nominal mass flow rate -nom. -This type of dynamics is equal to the dynamics that a completely mixed -control volume would have. -

                        -

                        -This model has no pressure drop. -See -AixLib.Fluid.HeatExchangers.PrescribedOutlet -for a model that instantiates this model and that has a pressure drop. -

                        -

                        -In case of reverse flow, -the fluid that leaves port_a has the same -properties as the fluid that enters port_b. -

                        -", revisions=" -
                          -
                        • -March 19, 2018, by Michael Wetter:
                          -Added bugfix as the old model did not track TSet and X_wSet -simultaneously.
                          -This is for -#893. -
                        • -
                        • -May 3, 2017, by Michael Wetter:
                          -Refactored model to allow X_wSet as an input.
                          -This is for -#763. -
                        • -
                        • -January 26, 2016, by Michael Wetter:
                          -Removed inequality comparison of real numbers in restrictCool -and in restrictHeat as this is not allowed in Modelica. -
                        • -
                        • -November 10, 2014, by Michael Wetter:
                          -First implementation. -
                        • -
                        -")); +

                        + This model sets the temperature or the water vapor mass fraction + of the medium that leaves port_a + to the value given by the input TSet or X_wSet, + subject to optional limitations on the capacity + for heating and cooling, or limitations on the humidification or dehumidification + moisture mass flow rate. + Also, optionally the model allows to take into account first order dynamics. +

                        +

                        + If the parameters energyDynamics is not equal to + Modelica.Fluid.Types.Dynamics.SteadyState, + the component models the dynamic response using a first order differential equation. + The time constant of the component is equal to the parameter tau. + This time constant is adjusted based on the mass flow rate using +

                        +

                        + τeff = τ |ṁ| ⁄ ṁnom +

                        +

                        + where + τeff is the effective time constant for the given mass flow rate + and + τ is the time constant at the nominal mass flow rate + nom. + This type of dynamics is equal to the dynamics that a completely mixed + control volume would have. +

                        +

                        + This model has no pressure drop. + See + AixLib.Fluid.HeatExchangers.PrescribedOutlet + for a model that instantiates this model and that has a pressure drop. +

                        +

                        + In case of reverse flow, + the fluid that leaves port_a has the same + properties as the fluid that enters port_b. +

                        + ",revisions=" +
                          +
                        • + March 3, 2022, by Michael Wetter:
                          + Removed massDynamics.
                          + This is for + issue 1542. +
                        • +
                        • + April 29, 2021, by Michael Wetter:
                          + Removed duplicate declaration of m_flow_nominal which is already + declared in the base class.
                          +
                        • +
                        • + March 19, 2018, by Michael Wetter:
                          + Added bugfix as the old model did not track TSet and X_wSet + simultaneously.
                          + This is for + #893. +
                        • +
                        • + May 3, 2017, by Michael Wetter:
                          + Refactored model to allow X_wSet as an input.
                          + This is for + #763. +
                        • +
                        • + January 26, 2016, by Michael Wetter:
                          + Removed inequality comparison of real numbers in restrictCool + and in restrictHeat as this is not allowed in Modelica. +
                        • +
                        • + November 10, 2014, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end PrescribedOutlet; diff --git a/AixLib/Fluid/Interfaces/StaticFourPortHeatMassExchanger.mo b/AixLib/Fluid/Interfaces/StaticFourPortHeatMassExchanger.mo index 378764aa10..80068b4c14 100644 --- a/AixLib/Fluid/Interfaces/StaticFourPortHeatMassExchanger.mo +++ b/AixLib/Fluid/Interfaces/StaticFourPortHeatMassExchanger.mo @@ -15,12 +15,12 @@ model StaticFourPortHeatMassExchanger annotation(HideResult=true); // Q1_flow is sensible plus latent heat flow rate - input Modelica.SIunits.HeatFlowRate Q1_flow + input Modelica.Units.SI.HeatFlowRate Q1_flow "Heat transferred into the medium 1"; input Medium1.MassFlowRate mWat1_flow "Moisture mass flow rate added to the medium 1"; // Q2_flow is sensible plus latent heat flow rate - input Modelica.SIunits.HeatFlowRate Q2_flow + input Modelica.Units.SI.HeatFlowRate Q2_flow "Heat transferred into the medium 2"; input Medium2.MassFlowRate mWat2_flow "Moisture mass flow rate added to the medium 2"; @@ -74,131 +74,131 @@ equation annotation ( preferredView="info", Documentation(info=" -

                        -This component transports two fluid streams between four ports, without -storing mass or energy. It is similar to - -AixLib.Fluid.Interfaces.StaticTwoPortHeatMassExchanger, -but it has four ports instead of two. -

                        -

                        -If dpN_nominal > Modelica.Constants.eps, -where N denotes the fluid 1 or 2, -then the model computes -pressure drop due to flow friction in the respective fluid stream. -The pressure drop is defined by a quadratic function that goes through -the point (mN_flow_nominal, dpN_nominal). -At |mN_flow| < deltaMN * mN_flow_nominal, -the pressure drop vs. flow relation is linearized. -If the parameter linearizeFlowResistanceN is set to true, -then the whole pressure drop vs. flow resistance curve is linearized. -

                        - -

                        Implementation

                        -

                        -This model uses inputs and constants that need to be set by models -that extend or instantiate this model. -The following inputs need to be assigned, where N denotes 1 or -2:

                        -
                          -
                        • -QN_flow, which is the sensible and latent heat flow rate added to the medium N. -
                        • -
                        • -mWatN_flow, which is the moisture mass flow rate added to the medium N. -
                        • -
                        -

                        -Set the constant sensibleOnlyN=true if the model that extends -or instantiates this model sets mWatN_flow = 0. -

                        -

                        - Note that the model does not implement 0 = Q1_flow + Q2_flow or - 0 = mXi1_flow + mXi2_flow. If there is no heat or mass transfer - with the environment, then a model that extends this model needs to provide these - equations. -

                        -", revisions=" -
                          -
                        • -April 14, 2020, by Michael Wetter:
                          -Changed homotopyInitialization to a constant.
                          -This is for -AixLib, #1341. -
                        • -
                        • -April 11, 2017, by Michael Wetter:
                          -Updated documentation to make clear that Q1_flow and Q2_flow -include latent heat flow rate.
                          -This is for issue -Buildings #704. -
                        • -
                        • -January 22, 2016 by Michael Wetter:
                          -Removed assignment of sensibleOnly in bal1 and bal2 -as this constant has been removed in - -AixLib.Fluid.Interfaces.StaticTwoPortHeatMassExchanger. -
                        • -
                        • -November 13, 2013 by Michael Wetter:
                          -Added parameter homotopyInitialization as -it has been removed in the base class. -
                        • -
                        • -November 13, 2013, by Michael Wetter:
                          -Removed import Modelica.Constants; statement. -
                        • -
                        • -October 8, 2013, by Michael Wetter:
                          -Removed parameter show_V_flow. -
                        • -
                        • -July 30, 2013 by Michael Wetter:
                          -Changed connector mXi_flow[Medium.nXi] -to a scalar input connector mWat_flow. -The reason is that mXi_flow does not allow -to compute the other components in mX_flow and -therefore leads to an ambiguous use of the model. -By only requesting mWat_flow, the mass balance -and species balance can be implemented correctly. -
                        • -
                        • -March 29, 2011, by Michael Wetter:
                          -Changed energy and mass balance to avoid a division by zero if m_flow=0. -
                        • -
                        • -March 27, 2011, by Michael Wetter:
                          -Added homotopy operator. -
                        • -
                        • -August 19, 2010, by Michael Wetter:
                          -Fixed bug in energy and moisture balance that affected results if a component -adds or removes moisture to the air stream. -In the old implementation, the enthalpy and species -outflow at port_b was multiplied with the mass flow rate at -port_a. The old implementation led to small errors that were proportional -to the amount of moisture change. For example, if the moisture added by the component -was 0.005 kg/kg, then the error was 0.5%. -Also, the results for forward flow and reverse flow differed by this amount. -With the new implementation, the energy and moisture balance is exact. -
                        • -
                        • -March 22, 2010, by Michael Wetter:
                          -Added constants sensibleOnly1 and -sensibleOnly2 to -simplify species balance equations. -
                        • -
                        • -April 13, 2009, by Michael Wetter:
                          -Added model to compute flow friction. -
                        • -
                        • -March 25, 2008, by Michael Wetter:
                          -First implementation. -
                        • -
                        -"), +

                        + This component transports two fluid streams between four ports, without + storing mass or energy. It is similar to + + AixLib.Fluid.Interfaces.StaticTwoPortHeatMassExchanger, + but it has four ports instead of two. +

                        +

                        + If dpN_nominal > Modelica.Constants.eps, + where N denotes the fluid 1 or 2, + then the model computes + pressure drop due to flow friction in the respective fluid stream. + The pressure drop is defined by a quadratic function that goes through + the point (mN_flow_nominal, dpN_nominal). + At |mN_flow| < deltaMN * mN_flow_nominal, + the pressure drop vs. flow relation is linearized. + If the parameter linearizeFlowResistanceN is set to true, + then the whole pressure drop vs. flow resistance curve is linearized. +

                        + +

                        Implementation

                        +

                        + This model uses inputs and constants that need to be set by models + that extend or instantiate this model. + The following inputs need to be assigned, where N denotes 1 or + 2:

                        +
                          +
                        • + QN_flow, which is the sensible and latent heat flow rate added to the medium N. +
                        • +
                        • + mWatN_flow, which is the moisture mass flow rate added to the medium N. +
                        • +
                        +

                        + Set the constant sensibleOnlyN=true if the model that extends + or instantiates this model sets mWatN_flow = 0. +

                        +

                        + Note that the model does not implement 0 = Q1_flow + Q2_flow or + 0 = mXi1_flow + mXi2_flow. If there is no heat or mass transfer + with the environment, then a model that extends this model needs to provide these + equations. +

                        + ",revisions=" +
                          +
                        • + April 14, 2020, by Michael Wetter:
                          + Changed homotopyInitialization to a constant.
                          + This is for + IBPSA, #1341. +
                        • +
                        • + April 11, 2017, by Michael Wetter:
                          + Updated documentation to make clear that Q1_flow and Q2_flow + include latent heat flow rate.
                          + This is for issue + Buildings #704. +
                        • +
                        • + January 22, 2016 by Michael Wetter:
                          + Removed assignment of sensibleOnly in bal1 and bal2 + as this constant has been removed in + + AixLib.Fluid.Interfaces.StaticTwoPortHeatMassExchanger. +
                        • +
                        • + November 13, 2013 by Michael Wetter:
                          + Added parameter homotopyInitialization as + it has been removed in the base class. +
                        • +
                        • + November 13, 2013, by Michael Wetter:
                          + Removed import Modelica.Constants; statement. +
                        • +
                        • + October 8, 2013, by Michael Wetter:
                          + Removed parameter show_V_flow. +
                        • +
                        • + July 30, 2013 by Michael Wetter:
                          + Changed connector mXi_flow[Medium.nXi] + to a scalar input connector mWat_flow. + The reason is that mXi_flow does not allow + to compute the other components in mX_flow and + therefore leads to an ambiguous use of the model. + By only requesting mWat_flow, the mass balance + and species balance can be implemented correctly. +
                        • +
                        • + March 29, 2011, by Michael Wetter:
                          + Changed energy and mass balance to avoid a division by zero if m_flow=0. +
                        • +
                        • + March 27, 2011, by Michael Wetter:
                          + Added homotopy operator. +
                        • +
                        • + August 19, 2010, by Michael Wetter:
                          + Fixed bug in energy and moisture balance that affected results if a component + adds or removes moisture to the air stream. + In the old implementation, the enthalpy and species + outflow at port_b was multiplied with the mass flow rate at + port_a. The old implementation led to small errors that were proportional + to the amount of moisture change. For example, if the moisture added by the component + was 0.005 kg/kg, then the error was 0.5%. + Also, the results for forward flow and reverse flow differed by this amount. + With the new implementation, the energy and moisture balance is exact. +
                        • +
                        • + March 22, 2010, by Michael Wetter:
                          + Added constants sensibleOnly1 and + sensibleOnly2 to + simplify species balance equations. +
                        • +
                        • + April 13, 2009, by Michael Wetter:
                          + Added model to compute flow friction. +
                        • +
                        • + March 25, 2008, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), Icon(coordinateSystem( preserveAspectRatio=false, extent={{-100,-100},{100,100}}, @@ -220,5 +220,6 @@ First implementation. lineColor={0,0,255}, pattern=LinePattern.None, fillColor={0,0,0}, - fillPattern=FillPattern.Solid)})); + fillPattern=FillPattern.Solid)}), + __Dymola_LockedEditing="Model from IBPSA"); end StaticFourPortHeatMassExchanger; diff --git a/AixLib/Fluid/Interfaces/StaticTwoPortConservationEquation.mo b/AixLib/Fluid/Interfaces/StaticTwoPortConservationEquation.mo index 4850bc9cb3..c9c3f5e94a 100644 --- a/AixLib/Fluid/Interfaces/StaticTwoPortConservationEquation.mo +++ b/AixLib/Fluid/Interfaces/StaticTwoPortConservationEquation.mo @@ -21,11 +21,11 @@ model StaticTwoPortConservationEquation "Sensible plus latent heat flow rate transferred into the medium" annotation (Placement(transformation(extent={{-140,60},{-100,100}}))); Modelica.Blocks.Interfaces.RealInput mWat_flow(final quantity="MassFlowRate", - unit="kg/s") if - use_mWat_flow "Moisture mass flow rate added to the medium" + unit="kg/s") + if use_mWat_flow "Moisture mass flow rate added to the medium" annotation (Placement(transformation(extent={{-140,20},{-100,60}}))); - Modelica.Blocks.Interfaces.RealInput[Medium.nC] C_flow if - use_C_flow "Trace substance mass flow rate added to the medium" + Modelica.Blocks.Interfaces.RealInput[Medium.nC] C_flow + if use_C_flow "Trace substance mass flow rate added to the medium" annotation (Placement(transformation(extent={{-140,-60},{-100,-20}}))); // Outputs that are needed in models that extend this model @@ -64,7 +64,7 @@ protected Real m_flowInv(unit="s/kg") "Regularization of 1/m_flow of port_a"; - Modelica.SIunits.MassFlowRate mXi_flow[Medium.nXi] + Modelica.Units.SI.MassFlowRate mXi_flow[Medium.nXi] "Mass flow rates of independent substances added to the medium"; // Parameters for inverseXRegularized. @@ -95,10 +95,10 @@ protected p=Medium.p_default, X=Medium.X_default[1:Medium.nXi]) "Medium state at default values"; // Density at medium default values, used to compute the size of control volumes - final parameter Modelica.SIunits.SpecificHeatCapacity cp_default= - Medium.specificHeatCapacityCp(state=state_default) + final parameter Modelica.Units.SI.SpecificHeatCapacity cp_default= + Medium.specificHeatCapacityCp(state=state_default) "Specific heat capacity, used to verify energy conservation"; - constant Modelica.SIunits.TemperatureDifference dTMax(min=1) = 200 + constant Modelica.Units.SI.TemperatureDifference dTMax(min=1) = 200 "Maximum temperature difference across the StaticTwoPortConservationEquation"; // Conditional connectors Modelica.Blocks.Interfaces.RealInput mWat_flow_internal(unit="kg/s") @@ -143,13 +143,13 @@ equation if prescribedHeatFlowRate then assert(noEvent( abs(Q_flow) < dTMax*cp_default*max(m_flow_small/1E3, abs(m_flow))), "In " + getInstanceName() + ": - The heat flow rate equals " + String(Q_flow) + + The heat flow rate equals "+ String(Q_flow) + " W and the mass flow rate equals " + String(m_flow) + " kg/s, - which results in a temperature difference " + + which results in a temperature difference "+ String(abs(Q_flow)/ (cp_default*max(m_flow_small/1E3, abs(m_flow)))) + " K > dTMax=" +String(dTMax) + " K. - This may indicate that energy is not conserved for small mass flow rates. - The implementation may require prescribedHeatFlowRate = false."); + This may indicate that energy is not conserved for small mass flow rates. + The implementation may require prescribedHeatFlowRate = false."); end if; if allowFlowReversal then @@ -251,339 +251,339 @@ equation annotation ( preferredView="info", Documentation(info=" -

                        -This model transports fluid between its two ports, without storing mass or energy. -It implements a steady-state conservation equation for energy and mass fractions. -The model has zero pressure drop between its ports. -

                        - -

                        Typical use and important parameters

                        -

                        -Set the parameter use_mWat_flow_in=true to enable an -input connector for mWat_flow. -Otherwise, the model uses mWat_flow = 0. -

                        -

                        -If the constant simplify_mWat_flow = true, which is its default value, -then the equation -

                        -
                        -  port_a.m_flow + port_b.m_flow = - mWat_flow;
                        -
                        -

                        -is simplified as -

                        -
                        -  port_a.m_flow + port_b.m_flow = 0;
                        -
                        -

                        -This causes an error in the mass balance of about 0.5%, but generally leads to -simpler equations because the pressure drop equations are then decoupled from the -mass exchange in this component. -

                        - -

                        -To increase the numerical robustness of the model, the constant -prescribedHeatFlowRate can be set. -Use the following settings: -

                        -
                          -
                        • Set prescribedHeatFlowRate=true if the only means of heat transfer -at the heatPort is a prescribed heat flow rate that -is not a function of the temperature difference -between the medium and an ambient temperature. Examples include an ideal electrical heater, -a pump that rejects heat into the fluid stream, or a chiller that removes heat based on a performance curve. -If the heatPort is not connected, then set prescribedHeatFlowRate=true as -in this case, heatPort.Q_flow=0. -
                        • -
                        • Set prescribedHeatFlowRate=false if there is heat flow at the heatPort -computed as K * (T-heatPort.T), for some temperature T and some conductance K, -which may itself be a function of temperature or mass flow rate.
                          -If there is a combination of K * (T-heatPort.T) and a prescribed heat flow rate, -for example a solar collector that dissipates heat to the ambient and receives heat from -the solar radiation, then set prescribedHeatFlowRate=false. -
                        • -
                        -

                        -If prescribedHeatFlow=true, then energy and mass balance -equations are formulated to guard against numerical problems near -zero flow that can occur if Q_flow or m_flow -are the results of an iterative solver. -

                        -

                        Implementation

                        -

                        -Input connectors of the model are -

                        -
                          -
                        • -Q_flow, which is the sensible plus latent heat flow rate added to the medium, -
                        • -
                        • -mWat_flow, which is the moisture mass flow rate added to the medium, and -
                        • -
                        • -C_flow, which is the trace substance mass flow rate added to the medium. -
                        • -
                        - -

                        -The model can only be used as a steady-state model with two fluid ports. -For a model with a dynamic balance, and more fluid ports, use - -AixLib.Fluid.Interfaces.ConservationEquation. -

                        -", +

                        + This model transports fluid between its two ports, without storing mass or energy. + It implements a steady-state conservation equation for energy and mass fractions. + The model has zero pressure drop between its ports. +

                        + +

                        Typical use and important parameters

                        +

                        + Set the parameter use_mWat_flow_in=true to enable an + input connector for mWat_flow. + Otherwise, the model uses mWat_flow = 0. +

                        +

                        + If the constant simplify_mWat_flow = true, which is its default value, + then the equation +

                        +
                        +   port_a.m_flow + port_b.m_flow = - mWat_flow;
                        + 
                        +

                        + is simplified as +

                        +
                        +   port_a.m_flow + port_b.m_flow = 0;
                        + 
                        +

                        + This causes an error in the mass balance of about 0.5%, but generally leads to + simpler equations because the pressure drop equations are then decoupled from the + mass exchange in this component. +

                        + +

                        + To increase the numerical robustness of the model, the constant + prescribedHeatFlowRate can be set. + Use the following settings: +

                        +
                          +
                        • Set prescribedHeatFlowRate=true if the only means of heat transfer + at the heatPort is a prescribed heat flow rate that + is not a function of the temperature difference + between the medium and an ambient temperature. Examples include an ideal electrical heater, + a pump that rejects heat into the fluid stream, or a chiller that removes heat based on a performance curve. + If the heatPort is not connected, then set prescribedHeatFlowRate=true as + in this case, heatPort.Q_flow=0. +
                        • +
                        • Set prescribedHeatFlowRate=false if there is heat flow at the heatPort + computed as K * (T-heatPort.T), for some temperature T and some conductance K, + which may itself be a function of temperature or mass flow rate.
                          + If there is a combination of K * (T-heatPort.T) and a prescribed heat flow rate, + for example a solar collector that dissipates heat to the ambient and receives heat from + the solar radiation, then set prescribedHeatFlowRate=false. +
                        • +
                        +

                        + If prescribedHeatFlow=true, then energy and mass balance + equations are formulated to guard against numerical problems near + zero flow that can occur if Q_flow or m_flow + are the results of an iterative solver. +

                        +

                        Implementation

                        +

                        + Input connectors of the model are +

                        +
                          +
                        • + Q_flow, which is the sensible plus latent heat flow rate added to the medium, +
                        • +
                        • + mWat_flow, which is the moisture mass flow rate added to the medium, and +
                        • +
                        • + C_flow, which is the trace substance mass flow rate added to the medium. +
                        • +
                        + +

                        + The model can only be used as a steady-state model with two fluid ports. + For a model with a dynamic balance, and more fluid ports, use + + AixLib.Fluid.Interfaces.ConservationEquation. +

                        + ", revisions=" -
                          -
                        • -September 18, 2020, by Michael Wetter:
                          -Removed start value for hOut as it will be set by - -AixLib.Fluid.MixingVolumes.BaseClasses.PartialMixingVolume.
                          -See #1397. -
                        • -
                        • -February 12, 2019, by Filip Jorissen:
                          -Removed obsolete division by TMax in assert.
                          -See #1097. -
                        • -
                        • -June 23, 2018, by Filip Jorissen:
                          -Added more details to energy conservation assert to facilitate -debugging.
                          -See #962. -
                        • -
                        • -March 30, 2018, by Filip Jorissen:
                          -Added getInstanceName() in asserts to facilitate -debugging.
                          -See #901. -
                        • -
                        • -April 24, 2017, by Michael Wetter and Filip Jorissen:
                          -Reimplemented check for energy conversion.
                          -See #741. -
                        • -
                        • -April 24, 2017, by Michael Wetter:
                          -Reverted change from April 21, 2017.
                          -See #741. -
                        • -
                        • -April 21, 2017, by Filip Jorissen:
                          -Revised test for energy conservation at small mass flow rates. -See #741. -
                        • -
                        • -October 23, 2016, by Filip Jorissen:
                          -Added test for energy conservation at small mass flow rates. -
                        • -
                        • -March 17, 2016, by Michael Wetter:
                          -Refactored model and implmented regStep instead of spliceFunction. -This is for -#247 -and for -#300. -
                        • -
                        • -September 3, 2015, by Filip Jorissen:
                          -Revised implementation of conservation of vapor mass. -Added new variable mFlow_inv_b. -This is for -#247. -
                        • -
                        • -January 22, 2016, by Michael Wetter:
                          -Removed constant sensibleOnly as this is no longer used because -the model uses use_mWat_flow.
                          -Changed condition that determines whether m_flowInv needs to be -computed because the change from January 20 introduced an error in - -AixLib.Fluid.MassExchangers.Examples.ConstantEffectiveness. -
                        • -
                        • -January 20, 2016, by Filip Jorissen:
                          -Removed if-else block in code for parameter sensibleOnly -since this is no longer needed to simplify the equations. -This is for -#372. -
                        • -
                        • -January 17, 2016, by Michael Wetter:
                          -Added parameter use_C_flow and converted C_flow -to a conditionally removed connector. -This is for -#372. -
                        • -
                        • -December 16, 2015, by Michael Wetter:
                          -Removed the units of C_flow to allow for PPM. -
                        • -
                        • -December 2, 2015, by Filip Jorissen:
                          -Added input C_flow and code for handling trace substance insertions. -November 19, 2015, by Michael Wetter:
                          -Removed assignment of parameter -showDesignFlowDirection in extends statement. -This is for -#349. -
                        • -
                        • -September 14, 2015, by Filip Jorissen:
                          -Rewrote some equations for better readability. -
                        • -
                        • -August 11, 2015, by Michael Wetter:
                          -Refactored implementation of - -AixLib.Utilities.Math.Functions.inverseXRegularized -to allow function to be inlined and to factor out the computation -of arguments that only depend on parameters. -This is for -issue 302. -
                        • -
                        • -July 17, 2015, by Michael Wetter:
                          -Corrected bug for situation with latent heat exchange and flow reversal not -allowed. -The previous formulation was singular. -This caused some models to not translate. -The error was introduced in -#282. -
                        • -
                        • -July 17, 2015, by Michael Wetter:
                          -Added constant simplify_mWat_flow to remove dependencies of the pressure drop -calculation on the moisture balance. -
                        • -
                        • -July 2, 2015 by Michael Wetter:
                          -Revised implementation of conservation equations, -added default values for outlet quantities at port_a -if allowFlowReversal=false and -updated documentation. -See - -issue 281 for a discussion. -
                        • -
                        • -July 1, 2015, by Filip Jorissen:
                          -Revised implementation so that equations are always consistent -and do not lead to division by zero, -also when connecting a prescribedHeatFlowRate -to MixingVolume instances. -Renamed use_safeDivision into prescribedHeatFlowRate. -See #282 -for a discussion. -
                        • -
                        • -May 6, 2015, by Michael Wetter:
                          -Corrected documentation. -
                        • -
                        • -February 11, 2014 by Michael Wetter:
                          -Improved documentation for Q_flow input. -
                        • -
                        • -October 21, 2013 by Michael Wetter:
                          -Corrected sign error in the equation that is used if use_safeDivision=false -and sensibleOnly=true. -This only affects internal numerical tests, but not any examples in the library -as the constant use_safeDivision is set to true by default. -
                        • -
                        • -September 25, 2013 by Michael Wetter:
                          -Reformulated computation of outlet properties to avoid an event at zero mass flow rate. -
                        • -
                        • -September 17, 2013 by Michael Wetter:
                          -Added start value for hOut. -
                        • -
                        • September 10, 2013 by Michael Wetter:
                          -Removed unrequired parameter i_w. -
                        • -
                        • -May 7, 2013 by Michael Wetter:
                          -Removed for loops for species balance and trace substance balance, -as they cause the error Error: Operand port_a.Xi_outflow[1] to operator inStream is not a stream variable. -in OpenModelica. -
                        • -
                        • -March 27, 2013 by Michael Wetter:
                          -Removed wrong unit attribute of COut, -and added min and max attributes for XiOut. -
                        • -
                        • -June 22, 2012 by Michael Wetter:
                          -Reformulated implementation with m_flowInv to use port_a.m_flow * ... -if use_safeDivision=false. This avoids a division by zero if -port_a.m_flow=0. -
                        • -
                        • -February 7, 2012 by Michael Wetter:
                          -Revised base classes for conservation equations in AixLib.Fluid.Interfaces. -
                        • -
                        • -December 14, 2011 by Michael Wetter:
                          -Changed assignment of hOut, XiOut and -COut to no longer declare that it is continuous. -The declaration of continuity, i.e, the -smooth(0, if (port_a.m_flow >= 0) then ...) declaration, -was required for Dymola 2012 to simulate, but it is no longer needed -for Dymola 2012 FD01. -
                        • -
                        • -August 19, 2011, by Michael Wetter:
                          -Changed assignment of hOut, XiOut and -COut to declare that it is not differentiable. -
                        • -
                        • -August 4, 2011, by Michael Wetter:
                          -Moved linearized pressure drop equation from the function body to the equation -section. With the previous implementation, -the symbolic processor may not rearrange the equations, which can lead -to coupled equations instead of an explicit solution. -
                        • -
                        • -March 29, 2011, by Michael Wetter:
                          -Changed energy and mass balance to avoid a division by zero if m_flow=0. -
                        • -
                        • -March 27, 2011, by Michael Wetter:
                          -Added homotopy operator. -
                        • -
                        • -August 19, 2010, by Michael Wetter:
                          -Fixed bug in energy and moisture balance that affected results if a component -adds or removes moisture to the air stream. -In the old implementation, the enthalpy and species -outflow at port_b was multiplied with the mass flow rate at -port_a. The old implementation led to small errors that were proportional -to the amount of moisture change. For example, if the moisture added by the component -was 0.005 kg/kg, then the error was 0.5%. -Also, the results for forward flow and reverse flow differed by this amount. -With the new implementation, the energy and moisture balance is exact. -
                        • -
                        • -March 22, 2010, by Michael Wetter:
                          -Added constant sensibleOnly to -simplify species balance equation. -
                        • -
                        • -April 10, 2009, by Michael Wetter:
                          -Added model to compute flow friction. -
                        • -
                        • -April 22, 2008, by Michael Wetter:
                          -Revised to add mass balance. -
                        • -
                        • -March 17, 2008, by Michael Wetter:
                          -First implementation. -
                        • -
                        -"), +
                          +
                        • + September 18, 2020, by Michael Wetter:
                          + Removed start value for hOut as it will be set by + + AixLib.Fluid.MixingVolumes.BaseClasses.PartialMixingVolume.
                          + See #1397. +
                        • +
                        • + February 12, 2019, by Filip Jorissen:
                          + Removed obsolete division by TMax in assert.
                          + See #1097. +
                        • +
                        • + June 23, 2018, by Filip Jorissen:
                          + Added more details to energy conservation assert to facilitate + debugging.
                          + See #962. +
                        • +
                        • + March 30, 2018, by Filip Jorissen:
                          + Added getInstanceName() in asserts to facilitate + debugging.
                          + See #901. +
                        • +
                        • + April 24, 2017, by Michael Wetter and Filip Jorissen:
                          + Reimplemented check for energy conversion.
                          + See #741. +
                        • +
                        • + April 24, 2017, by Michael Wetter:
                          + Reverted change from April 21, 2017.
                          + See #741. +
                        • +
                        • + April 21, 2017, by Filip Jorissen:
                          + Revised test for energy conservation at small mass flow rates. + See #741. +
                        • +
                        • + October 23, 2016, by Filip Jorissen:
                          + Added test for energy conservation at small mass flow rates. +
                        • +
                        • + March 17, 2016, by Michael Wetter:
                          + Refactored model and implmented regStep instead of spliceFunction. + This is for + #247 + and for + #300. +
                        • +
                        • + September 3, 2015, by Filip Jorissen:
                          + Revised implementation of conservation of vapor mass. + Added new variable mFlow_inv_b. + This is for + #247. +
                        • +
                        • + January 22, 2016, by Michael Wetter:
                          + Removed constant sensibleOnly as this is no longer used because + the model uses use_mWat_flow.
                          + Changed condition that determines whether m_flowInv needs to be + computed because the change from January 20 introduced an error in + + AixLib.Fluid.MassExchangers.Examples.ConstantEffectiveness. +
                        • +
                        • + January 20, 2016, by Filip Jorissen:
                          + Removed if-else block in code for parameter sensibleOnly + since this is no longer needed to simplify the equations. + This is for + #372. +
                        • +
                        • + January 17, 2016, by Michael Wetter:
                          + Added parameter use_C_flow and converted C_flow + to a conditionally removed connector. + This is for + #372. +
                        • +
                        • + December 16, 2015, by Michael Wetter:
                          + Removed the units of C_flow to allow for PPM. +
                        • +
                        • + December 2, 2015, by Filip Jorissen:
                          + Added input C_flow and code for handling trace substance insertions. + November 19, 2015, by Michael Wetter:
                          + Removed assignment of parameter + showDesignFlowDirection in extends statement. + This is for + #349. +
                        • +
                        • + September 14, 2015, by Filip Jorissen:
                          + Rewrote some equations for better readability. +
                        • +
                        • + August 11, 2015, by Michael Wetter:
                          + Refactored implementation of + + AixLib.Utilities.Math.Functions.inverseXRegularized + to allow function to be inlined and to factor out the computation + of arguments that only depend on parameters. + This is for + issue 302. +
                        • +
                        • + July 17, 2015, by Michael Wetter:
                          + Corrected bug for situation with latent heat exchange and flow reversal not + allowed. + The previous formulation was singular. + This caused some models to not translate. + The error was introduced in + #282. +
                        • +
                        • + July 17, 2015, by Michael Wetter:
                          + Added constant simplify_mWat_flow to remove dependencies of the pressure drop + calculation on the moisture balance. +
                        • +
                        • + July 2, 2015 by Michael Wetter:
                          + Revised implementation of conservation equations, + added default values for outlet quantities at port_a + if allowFlowReversal=false and + updated documentation. + See + + issue 281 for a discussion. +
                        • +
                        • + July 1, 2015, by Filip Jorissen:
                          + Revised implementation so that equations are always consistent + and do not lead to division by zero, + also when connecting a prescribedHeatFlowRate + to MixingVolume instances. + Renamed use_safeDivision into prescribedHeatFlowRate. + See #282 + for a discussion. +
                        • +
                        • + May 6, 2015, by Michael Wetter:
                          + Corrected documentation. +
                        • +
                        • + February 11, 2014 by Michael Wetter:
                          + Improved documentation for Q_flow input. +
                        • +
                        • + October 21, 2013 by Michael Wetter:
                          + Corrected sign error in the equation that is used if use_safeDivision=false + and sensibleOnly=true. + This only affects internal numerical tests, but not any examples in the library + as the constant use_safeDivision is set to true by default. +
                        • +
                        • + September 25, 2013 by Michael Wetter:
                          + Reformulated computation of outlet properties to avoid an event at zero mass flow rate. +
                        • +
                        • + September 17, 2013 by Michael Wetter:
                          + Added start value for hOut. +
                        • +
                        • September 10, 2013 by Michael Wetter:
                          + Removed unrequired parameter i_w. +
                        • +
                        • + May 7, 2013 by Michael Wetter:
                          + Removed for loops for species balance and trace substance balance, + as they cause the error Error: Operand port_a.Xi_outflow[1] to operator inStream is not a stream variable. + in OpenModelica. +
                        • +
                        • + March 27, 2013 by Michael Wetter:
                          + Removed wrong unit attribute of COut, + and added min and max attributes for XiOut. +
                        • +
                        • + June 22, 2012 by Michael Wetter:
                          + Reformulated implementation with m_flowInv to use port_a.m_flow * ... + if use_safeDivision=false. This avoids a division by zero if + port_a.m_flow=0. +
                        • +
                        • + February 7, 2012 by Michael Wetter:
                          + Revised base classes for conservation equations in AixLib.Fluid.Interfaces. +
                        • +
                        • + December 14, 2011 by Michael Wetter:
                          + Changed assignment of hOut, XiOut and + COut to no longer declare that it is continuous. + The declaration of continuity, i.e, the + smooth(0, if (port_a.m_flow >= 0) then ...) declaration, + was required for Dymola 2012 to simulate, but it is no longer needed + for Dymola 2012 FD01. +
                        • +
                        • + August 19, 2011, by Michael Wetter:
                          + Changed assignment of hOut, XiOut and + COut to declare that it is not differentiable. +
                        • +
                        • + August 4, 2011, by Michael Wetter:
                          + Moved linearized pressure drop equation from the function body to the equation + section. With the previous implementation, + the symbolic processor may not rearrange the equations, which can lead + to coupled equations instead of an explicit solution. +
                        • +
                        • + March 29, 2011, by Michael Wetter:
                          + Changed energy and mass balance to avoid a division by zero if m_flow=0. +
                        • +
                        • + March 27, 2011, by Michael Wetter:
                          + Added homotopy operator. +
                        • +
                        • + August 19, 2010, by Michael Wetter:
                          + Fixed bug in energy and moisture balance that affected results if a component + adds or removes moisture to the air stream. + In the old implementation, the enthalpy and species + outflow at port_b was multiplied with the mass flow rate at + port_a. The old implementation led to small errors that were proportional + to the amount of moisture change. For example, if the moisture added by the component + was 0.005 kg/kg, then the error was 0.5%. + Also, the results for forward flow and reverse flow differed by this amount. + With the new implementation, the energy and moisture balance is exact. +
                        • +
                        • + March 22, 2010, by Michael Wetter:
                          + Added constant sensibleOnly to + simplify species balance equation. +
                        • +
                        • + April 10, 2009, by Michael Wetter:
                          + Added model to compute flow friction. +
                        • +
                        • + April 22, 2008, by Michael Wetter:
                          + Revised to add mass balance. +
                        • +
                        • + March 17, 2008, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), Icon(coordinateSystem( preserveAspectRatio=true, extent={{-100,-100},{100,100}}, @@ -594,23 +594,23 @@ First implementation. pattern=LinePattern.None), Text( extent={{-93,72},{-58,89}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="Q_flow"), Text( extent={{-93,37},{-58,54}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="mWat_flow"), Text( extent={{-41,103},{-10,117}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="hOut"), Text( extent={{10,103},{41,117}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="XiOut"), Text( extent={{61,103},{92,117}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="COut"), Line(points={{-42,55},{-42,-84}}, color={255,255,255}), Polygon( @@ -626,5 +626,6 @@ First implementation. Line(points={{-56,-73},{81,-73}}, color={255,255,255}), Line(points={{6,14},{6,-37}}, color={255,255,255}), Line(points={{54,14},{6,14}}, color={255,255,255}), - Line(points={{6,-37},{-42,-37}}, color={255,255,255})})); + Line(points={{6,-37},{-42,-37}}, color={255,255,255})}), + __Dymola_LockedEditing="Model from IBPSA"); end StaticTwoPortConservationEquation; diff --git a/AixLib/Fluid/Interfaces/StaticTwoPortHeatMassExchanger.mo b/AixLib/Fluid/Interfaces/StaticTwoPortHeatMassExchanger.mo index 3a82e421d6..81b9599509 100644 --- a/AixLib/Fluid/Interfaces/StaticTwoPortHeatMassExchanger.mo +++ b/AixLib/Fluid/Interfaces/StaticTwoPortHeatMassExchanger.mo @@ -14,8 +14,9 @@ model StaticTwoPortHeatMassExchanger // Model inputs // Q_flow is the sensible plus latent heat flow rate - input Modelica.SIunits.HeatFlowRate Q_flow "Heat transferred into the medium"; - input Modelica.SIunits.MassFlowRate mWat_flow + input Modelica.Units.SI.HeatFlowRate Q_flow + "Heat transferred into the medium"; + input Modelica.Units.SI.MassFlowRate mWat_flow "Moisture mass flow rate added to the medium"; // Models for conservation equations and pressure drop @@ -89,210 +90,211 @@ equation annotation ( preferredView="info", Documentation(info=" -

                        -This component transports fluid between its two ports, without -storing mass or energy. It is based on - -Modelica.Fluid.Interfaces.PartialTwoPortTransport but it does -use a different implementation for handling reverse flow because -in this component, mass flow rate can be added or removed from -the medium. -

                        -

                        -If dp_nominal > Modelica.Constants.eps, this component computes -pressure drop due to flow friction. -The pressure drop is defined by a quadratic function that goes through -the point (m_flow_nominal, dp_nominal). At |m_flow| < deltaM * m_flow_nominal, -the pressure drop vs. flow relation is linearized. -If the parameter linearizeFlowResistance is set to true, -then the whole pressure drop vs. flow resistance curve is linearized. -

                        -

                        Implementation

                        -This model uses inputs and constants that need to be set by models -that extend or instantiate this model. -The following inputs need to be assigned: -
                          -
                        • -Q_flow, which is the sensible and latent heat flow rate added to the medium. -
                        • -
                        • -mWat_flow, which is the moisture mass flow rate added to the medium. -
                        • -
                        - -

                        -Set the constant sensibleOnly=true if the model that extends -or instantiates this model sets mWat_flow = 0. -

                        -

                        -To increase the numerical robustness of the model, the constant -prescribedHeatFlowRate can be set. -Use the following settings: -

                        -
                          -
                        • Set prescribedHeatFlowRate=true if the only means of heat transfer -at the heatPort is a prescribed heat flow rate that -is not a function of the temperature difference -between the medium and an ambient temperature. Examples include an ideal electrical heater, -a pump that rejects heat into the fluid stream, or a chiller that removes heat based on a performance curve. -If the heatPort is not connected, then set prescribedHeatFlowRate=true as -in this case, heatPort.Q_flow=0. -
                        • -
                        • Set prescribedHeatFlowRate=false if there is heat flow at the heatPort -computed as K * (T-heatPort.T), for some temperature T and some conductance K, -which may itself be a function of temperature or mass flow rate.
                          -If there is a combination of K * (T-heatPort.T) and a prescribed heat flow rate, -for example a solar collector that dissipates heat to the ambient and receives heat from -the solar radiation, then set prescribedHeatFlowRate=false. -
                        • -
                        -

                        -If prescribedHeatFlow=true, then energy and mass balance -equations are formulated to guard against numerical problems near -zero flow that can occur if Q_flow or m_flow -are the results of an iterative solver. -

                        -", revisions=" -
                          -
                        • -April 14, 2020, by Michael Wetter:
                          -Changed homotopyInitialization to a constant.
                          -This is for -AixLib, #1341. -
                        • -
                        • -April 11, 2017, by Michael Wetter:
                          -Updated documentation to make clear that Q_flow -includes latent heat flow rate.
                          -This is for issue -Buildings #704. -
                        • -
                        • -December 1, 2016, by Michael Wetter:
                          -Updated model as use_dh is no longer a parameter in the pressure drop model.
                          -This is for -#480. -
                        • -
                        • -January 22, 2016 by Michael Wetter:
                          -Removed assignment of sensibleOnly in bal1 and bal2 -as this constant has been removed in - -AixLib.Fluid.Interfaces.StaticTwoPortHeatMassExchanger. -
                        • -
                        • -November 19, 2015, by Michael Wetter:
                          -Removed assignment of parameter -showDesignFlowDirection in extends statement. -This is for -#349. -
                        • -
                        • -July 2, 2015 by Michael Wetter:
                          -Revised implementation of conservation equations, -added default values for outlet quantities at port_a -if allowFlowReversal=false and -updated documentation. -See - -issue 281 for a discussion. -
                        • -
                        • -July 1, 2015 by Filip Jorissen:
                          -Renamed use_safeDivision into -prescribedHeatFlowRate. -See - -issue 282 for a discussion. -
                        • -
                        • -November 13, 2013 by Michael Wetter:
                          -Added parameter homotopyInitialization as -it has been removed in the base class. -
                        • -
                        • -October 8, 2013 by Michael Wetter:
                          -Removed propagation of show_V_flow -to pressure drop calculation, as this model no longer has -that parameter. -
                        • -
                        • -July 30, 2013 by Michael Wetter:
                          -Changed connector mXi_flow[Medium.nXi] -to a scalar input connector mWat_flow. -The reason is that mXi_flow does not allow -to compute the other components in mX_flow and -therefore leads to an ambiguous use of the model. -By only requesting mWat_flow, the mass balance -and species balance can be implemented correctly. -
                        • -
                        • -March 27, 2013 by Michael Wetter:
                          -Removed wrong unit attribute of COut, -and added min and max attributes for XiOut. -
                        • -
                        • -February 8, 2012 by Michael Wetter:
                          -Changed model to use graphical modeling. -
                        • -
                        • -December 14, 2011 by Michael Wetter:
                          -Changed assignment of hOut, XiOut and -COut to no longer declare that it is continuous. -The declaration of continuity, i.e, the -smooth(0, if (port_a.m_flow >= 0) then ...) declaration, -was required for Dymola 2012 to simulate, but it is no longer needed -for Dymola 2012 FD01. -
                        • -
                        • -August 19, 2011, by Michael Wetter:
                          -Changed assignment of hOut, XiOut and -COut to declare that it is not differentiable. -
                        • -
                        • -August 4, 2011, by Michael Wetter:
                          -Moved linearized pressure drop equation from the function body to the equation -section. With the previous implementation, -the symbolic processor may not rearrange the equations, which can lead -to coupled equations instead of an explicit solution. -
                        • -
                        • -March 29, 2011, by Michael Wetter:
                          -Changed energy and mass balance to avoid a division by zero if m_flow=0. -
                        • -
                        • -March 27, 2011, by Michael Wetter:
                          -Added homotopy operator. -
                        • -
                        • -August 19, 2010, by Michael Wetter:
                          -Fixed bug in energy and moisture balance that affected results if a component -adds or removes moisture to the air stream. -In the old implementation, the enthalpy and species -outflow at port_b was multiplied with the mass flow rate at -port_a. The old implementation led to small errors that were proportional -to the amount of moisture change. For example, if the moisture added by the component -was 0.005 kg/kg, then the error was 0.5%. -Also, the results for forward flow and reverse flow differed by this amount. -With the new implementation, the energy and moisture balance is exact. -
                        • -
                        • -March 22, 2010, by Michael Wetter:
                          -Added constant sensibleOnly to -simplify species balance equation. -
                        • -
                        • -April 10, 2009, by Michael Wetter:
                          -Added model to compute flow friction. -
                        • -
                        • -April 22, 2008, by Michael Wetter:
                          -Revised to add mass balance. -
                        • -
                        • -March 17, 2008, by Michael Wetter:
                          -First implementation. -
                        • -
                        -")); +

                        + This component transports fluid between its two ports, without + storing mass or energy. It is based on + + Modelica.Fluid.Interfaces.PartialTwoPortTransport but it does + use a different implementation for handling reverse flow because + in this component, mass flow rate can be added or removed from + the medium. +

                        +

                        + If dp_nominal > Modelica.Constants.eps, this component computes + pressure drop due to flow friction. + The pressure drop is defined by a quadratic function that goes through + the point (m_flow_nominal, dp_nominal). At |m_flow| < deltaM * m_flow_nominal, + the pressure drop vs. flow relation is linearized. + If the parameter linearizeFlowResistance is set to true, + then the whole pressure drop vs. flow resistance curve is linearized. +

                        +

                        Implementation

                        + This model uses inputs and constants that need to be set by models + that extend or instantiate this model. + The following inputs need to be assigned: +
                          +
                        • + Q_flow, which is the sensible and latent heat flow rate added to the medium. +
                        • +
                        • + mWat_flow, which is the moisture mass flow rate added to the medium. +
                        • +
                        + +

                        + Set the constant sensibleOnly=true if the model that extends + or instantiates this model sets mWat_flow = 0. +

                        +

                        + To increase the numerical robustness of the model, the constant + prescribedHeatFlowRate can be set. + Use the following settings: +

                        +
                          +
                        • Set prescribedHeatFlowRate=true if the only means of heat transfer + at the heatPort is a prescribed heat flow rate that + is not a function of the temperature difference + between the medium and an ambient temperature. Examples include an ideal electrical heater, + a pump that rejects heat into the fluid stream, or a chiller that removes heat based on a performance curve. + If the heatPort is not connected, then set prescribedHeatFlowRate=true as + in this case, heatPort.Q_flow=0. +
                        • +
                        • Set prescribedHeatFlowRate=false if there is heat flow at the heatPort + computed as K * (T-heatPort.T), for some temperature T and some conductance K, + which may itself be a function of temperature or mass flow rate.
                          + If there is a combination of K * (T-heatPort.T) and a prescribed heat flow rate, + for example a solar collector that dissipates heat to the ambient and receives heat from + the solar radiation, then set prescribedHeatFlowRate=false. +
                        • +
                        +

                        + If prescribedHeatFlow=true, then energy and mass balance + equations are formulated to guard against numerical problems near + zero flow that can occur if Q_flow or m_flow + are the results of an iterative solver. +

                        + ",revisions=" +
                          +
                        • + April 14, 2020, by Michael Wetter:
                          + Changed homotopyInitialization to a constant.
                          + This is for + IBPSA, #1341. +
                        • +
                        • + April 11, 2017, by Michael Wetter:
                          + Updated documentation to make clear that Q_flow + includes latent heat flow rate.
                          + This is for issue + Buildings #704. +
                        • +
                        • + December 1, 2016, by Michael Wetter:
                          + Updated model as use_dh is no longer a parameter in the pressure drop model.
                          + This is for + #480. +
                        • +
                        • + January 22, 2016 by Michael Wetter:
                          + Removed assignment of sensibleOnly in bal1 and bal2 + as this constant has been removed in + + AixLib.Fluid.Interfaces.StaticTwoPortHeatMassExchanger. +
                        • +
                        • + November 19, 2015, by Michael Wetter:
                          + Removed assignment of parameter + showDesignFlowDirection in extends statement. + This is for + #349. +
                        • +
                        • + July 2, 2015 by Michael Wetter:
                          + Revised implementation of conservation equations, + added default values for outlet quantities at port_a + if allowFlowReversal=false and + updated documentation. + See + + issue 281 for a discussion. +
                        • +
                        • + July 1, 2015 by Filip Jorissen:
                          + Renamed use_safeDivision into + prescribedHeatFlowRate. + See + + issue 282 for a discussion. +
                        • +
                        • + November 13, 2013 by Michael Wetter:
                          + Added parameter homotopyInitialization as + it has been removed in the base class. +
                        • +
                        • + October 8, 2013 by Michael Wetter:
                          + Removed propagation of show_V_flow + to pressure drop calculation, as this model no longer has + that parameter. +
                        • +
                        • + July 30, 2013 by Michael Wetter:
                          + Changed connector mXi_flow[Medium.nXi] + to a scalar input connector mWat_flow. + The reason is that mXi_flow does not allow + to compute the other components in mX_flow and + therefore leads to an ambiguous use of the model. + By only requesting mWat_flow, the mass balance + and species balance can be implemented correctly. +
                        • +
                        • + March 27, 2013 by Michael Wetter:
                          + Removed wrong unit attribute of COut, + and added min and max attributes for XiOut. +
                        • +
                        • + February 8, 2012 by Michael Wetter:
                          + Changed model to use graphical modeling. +
                        • +
                        • + December 14, 2011 by Michael Wetter:
                          + Changed assignment of hOut, XiOut and + COut to no longer declare that it is continuous. + The declaration of continuity, i.e, the + smooth(0, if (port_a.m_flow >= 0) then ...) declaration, + was required for Dymola 2012 to simulate, but it is no longer needed + for Dymola 2012 FD01. +
                        • +
                        • + August 19, 2011, by Michael Wetter:
                          + Changed assignment of hOut, XiOut and + COut to declare that it is not differentiable. +
                        • +
                        • + August 4, 2011, by Michael Wetter:
                          + Moved linearized pressure drop equation from the function body to the equation + section. With the previous implementation, + the symbolic processor may not rearrange the equations, which can lead + to coupled equations instead of an explicit solution. +
                        • +
                        • + March 29, 2011, by Michael Wetter:
                          + Changed energy and mass balance to avoid a division by zero if m_flow=0. +
                        • +
                        • + March 27, 2011, by Michael Wetter:
                          + Added homotopy operator. +
                        • +
                        • + August 19, 2010, by Michael Wetter:
                          + Fixed bug in energy and moisture balance that affected results if a component + adds or removes moisture to the air stream. + In the old implementation, the enthalpy and species + outflow at port_b was multiplied with the mass flow rate at + port_a. The old implementation led to small errors that were proportional + to the amount of moisture change. For example, if the moisture added by the component + was 0.005 kg/kg, then the error was 0.5%. + Also, the results for forward flow and reverse flow differed by this amount. + With the new implementation, the energy and moisture balance is exact. +
                        • +
                        • + March 22, 2010, by Michael Wetter:
                          + Added constant sensibleOnly to + simplify species balance equation. +
                        • +
                        • + April 10, 2009, by Michael Wetter:
                          + Added model to compute flow friction. +
                        • +
                        • + April 22, 2008, by Michael Wetter:
                          + Revised to add mass balance. +
                        • +
                        • + March 17, 2008, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end StaticTwoPortHeatMassExchanger; diff --git a/AixLib/Fluid/Interfaces/TwoPortFlowResistanceParameters.mo b/AixLib/Fluid/Interfaces/TwoPortFlowResistanceParameters.mo index 97961b31da..169cf32d1d 100644 --- a/AixLib/Fluid/Interfaces/TwoPortFlowResistanceParameters.mo +++ b/AixLib/Fluid/Interfaces/TwoPortFlowResistanceParameters.mo @@ -10,10 +10,9 @@ record TwoPortFlowResistanceParameters "= true, use m_flow = f(dp) else dp = f(m_flow)" annotation (Evaluate=true, Dialog(enable = computeFlowResistance, tab="Flow resistance")); - parameter Modelica.SIunits.PressureDifference dp_nominal(min=0, - displayUnit="Pa") - "Pressure difference" - annotation(Dialog(group = "Nominal condition")); + parameter Modelica.Units.SI.PressureDifference dp_nominal(min=0, displayUnit= + "Pa") "Pressure difference" + annotation (Dialog(group="Nominal condition")); parameter Boolean linearizeFlowResistance = false "= true, use linear relation between m_flow and dp for any flow rate" annotation(Dialog(enable = computeFlowResistance, @@ -24,26 +23,27 @@ record TwoPortFlowResistanceParameters annotation (preferredView="info", Documentation(info=" -This class contains parameters that are used to -compute the pressure drop in models that have one fluid stream. -Note that the nominal mass flow rate is not declared here because -the model - -PartialTwoPortInterface -already declares it. -", + This class contains parameters that are used to + compute the pressure drop in models that have one fluid stream. + Note that the nominal mass flow rate is not declared here because + the model + + PartialTwoPortInterface + already declares it. + ", revisions=" -
                          -
                        • -January 22, 2016, by Michael Wetter:
                          -Corrected type declaration of pressure difference. -This is -for #404. -
                        • -
                        • -April 13, 2009, by Michael Wetter:
                          -First implementation. -
                        • -
                        -")); +
                          +
                        • + January 22, 2016, by Michael Wetter:
                          + Corrected type declaration of pressure difference. + This is + for #404. +
                        • +
                        • + April 13, 2009, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end TwoPortFlowResistanceParameters; diff --git a/AixLib/Fluid/Interfaces/TwoPortHeatMassExchanger.mo b/AixLib/Fluid/Interfaces/TwoPortHeatMassExchanger.mo index 2b68627bfa..09aa0e113c 100644 --- a/AixLib/Fluid/Interfaces/TwoPortHeatMassExchanger.mo +++ b/AixLib/Fluid/Interfaces/TwoPortHeatMassExchanger.mo @@ -10,17 +10,14 @@ model TwoPortHeatMassExchanger constant Boolean homotopyInitialization = true "= true, use homotopy method" annotation(HideResult=true); - parameter Modelica.SIunits.Time tau = 30 + parameter Modelica.Units.SI.Time tau=30 "Time constant at nominal flow (if energyDynamics <> SteadyState)" - annotation (Dialog(tab = "Dynamics", group="Nominal condition")); + annotation (Dialog(tab="Dynamics", group="Nominal condition")); // Dynamics parameter Modelica.Fluid.Types.Dynamics energyDynamics=Modelica.Fluid.Types.Dynamics.DynamicFreeInitial "Type of energy balance: dynamic (3 initialization options) or steady state" - annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Equations")); - parameter Modelica.Fluid.Types.Dynamics massDynamics=energyDynamics - "Type of mass balance: dynamic (3 initialization options) or steady state" - annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Equations")); + annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Conservation equations")); // Initialization parameter Medium.AbsolutePressure p_start = Medium.p_default @@ -47,7 +44,7 @@ model TwoPortHeatMassExchanger final mSenFac=1, final m_flow_nominal = m_flow_nominal, final energyDynamics=energyDynamics, - final massDynamics=massDynamics, + final massDynamics=energyDynamics, final p_start=p_start, final T_start=T_start, final X_start=X_start, @@ -69,24 +66,19 @@ model TwoPortHeatMassExchanger protected parameter Medium.ThermodynamicState sta_default=Medium.setState_pTX( T=Medium.T_default, p=Medium.p_default, X=Medium.X_default); - parameter Modelica.SIunits.Density rho_default=Medium.density(sta_default) + parameter Modelica.Units.SI.Density rho_default=Medium.density(sta_default) "Density, used to compute fluid volume"; parameter Medium.ThermodynamicState sta_start=Medium.setState_pTX( T=T_start, p=p_start, X=X_start); - parameter Modelica.SIunits.SpecificEnthalpy h_outflow_start = Medium.specificEnthalpy(sta_start) - "Start value for outflowing enthalpy"; + parameter Modelica.Units.SI.SpecificEnthalpy h_outflow_start= + Medium.specificEnthalpy(sta_start) "Start value for outflowing enthalpy"; initial algorithm assert((energyDynamics == Modelica.Fluid.Types.Dynamics.SteadyState) or tau > Modelica.Constants.eps, "The parameter tau, or the volume of the model from which tau may be derived, is unreasonably small. - You need to set energyDynamics == Modelica.Fluid.Types.Dynamics.SteadyState to model steady-state. - Received tau = " + String(tau) + "\n"); - assert((massDynamics == Modelica.Fluid.Types.Dynamics.SteadyState) or - tau > Modelica.Constants.eps, -"The parameter tau, or the volume of the model from which tau may be derived, is unreasonably small. - You need to set massDynamics == Modelica.Fluid.Types.Dynamics.SteadyState to model steady-state. - Received tau = " + String(tau) + "\n"); + You need to set energyDynamics == Modelica.Fluid.Types.Dynamics.SteadyState to model steady-state. + Received tau = "+ String(tau) + "\n"); assert(homotopyInitialization, "In " + getInstanceName() + ": The constant homotopyInitialization has been modified from its default value. This constant will be removed in future releases.", @@ -104,147 +96,153 @@ equation color={0,127,255})); annotation ( Documentation(info=" -

                        -This component transports one fluid stream. -It provides the basic model for implementing dynamic and steady-state -models that exchange heat and water vapor with the fluid stream. -The model also computes the pressure drop due to the flow resistance. -By setting the parameter dp_nominal=0, the computation -of the pressure drop can be avoided. -The variable vol.heatPort.T always has the value of -the temperature of the medium that leaves the component. -For the actual temperatures at the port, the variables sta_a.T -and sta_b.T can be used. These two variables are provided by -the base class - -AixLib.Fluid.Interfaces.PartialTwoPortInterface. -

                        - -For models that extend this model, see for example - - -

                        Implementation

                        -

                        -The variable names follow the conventions used in - -Modelica.Fluid.Examples.HeatExchanger.BaseClasses.BasicHX -. -

                        -", revisions=" -
                          -
                        • -April 14, 2020, by Michael Wetter:
                          -Changed homotopyInitialization to a constant.
                          -This is for -AixLib, #1341. -
                        • -
                        • -December 1, 2016, by Michael Wetter:
                          -Updated model as use_dh is no longer a parameter in the pressure drop model.
                          -This is for -#480. -
                        • -
                        • -January 26, 2016, by Michael Wetter:
                          -Added final quantity=Medium.substanceNames for X_start. -
                        • -
                        • -May 6, 2015, by Michael Wetter:
                          -Added missing propagation of allowFlowReversal to -instance vol. -This is for issue -#412. -
                        • -
                        • -May 1, 2015, by Marcus Fuchs:
                          -Fixed links in documentation. -
                        • -
                        • -October 6, 2014, by Michael Wetter:
                          -Changed medium declaration in pressure drop element to be final. -
                        • -
                        • -May 28, 2014, by Michael Wetter:
                          -Removed annotation(Evaluate=true) for parameter tau. -This is needed to allow changing the time constant after translation. -
                        • -
                        • -November 12, 2013, by Michael Wetter:
                          -Removed import Modelica.Constants statement. -
                        • -
                        • -October 8, 2013, by Michael Wetter:
                          -Removed parameter show_V_flow. -
                        • -
                        • -December 14, 2012 by Michael Wetter:
                          -Renamed protected parameters for consistency with the naming conventions. -
                        • -
                        • -October 17, 2012, by Michael Wetter:
                          -Fixed broken link in documentation. -
                        • -
                        • -February 3, 2012, by Michael Wetter:
                          -Removed assignment of m_flow_small as it is no -longer used in the pressure drop model. -
                        • -
                        • -January 15, 2011, by Michael Wetter:
                          -Fixed wrong class reference in information section. -
                        • -
                        • -September 13, 2011, by Michael Wetter:
                          -Changed assignment of vol(mass/energyDynamics=...) as the -previous assignment caused a non-literal start value that was ignored. -
                        • -
                        • -July 29, 2011, by Michael Wetter:
                          -Added start value for outflowing enthalpy. -
                        • -
                        • -July 11, 2011, by Michael Wetter:
                          -Changed parameterization of fluid volume so that steady-state balance is -used when tau = 0. -
                        • -
                        • -May 25, 2011, by Michael Wetter:
                          -Removed temperature sensor and changed implementation of fluid volume -to allow use of this model for the steady-state and dynamic humidifier - -AixLib.Fluid.MassExchangers.HumidifierPrescribed. -
                        • -
                        • -March 25, 2011, by Michael Wetter:
                          -Added homotopy operator. -
                        • -
                        • -March 21, 2010 by Michael Wetter:
                          -Changed pressure start value from system.p_start -to Medium.p_default since HVAC models may have water and -air, which are typically at different pressures. -
                        • -
                        • -April 13, 2009, by Michael Wetter:
                          -Added model to compute flow friction. -
                        • -
                        • -January 29, 2009 by Michael Wetter:
                          -First implementation. -
                        • -
                        -"), +

                        + This component transports one fluid stream. + It provides the basic model for implementing dynamic and steady-state + models that exchange heat and water vapor with the fluid stream. + The model also computes the pressure drop due to the flow resistance. + By setting the parameter dp_nominal=0, the computation + of the pressure drop can be avoided. + The variable vol.heatPort.T always has the value of + the temperature of the medium that leaves the component. + For the actual temperatures at the port, the variables sta_a.T + and sta_b.T can be used. These two variables are provided by + the base class + + AixLib.Fluid.Interfaces.PartialTwoPortInterface. +

                        + + For models that extend this model, see for example + + +

                        Implementation

                        +

                        + The variable names follow the conventions used in + + Modelica.Fluid.Examples.HeatExchanger.BaseClasses.BasicHX + . +

                        + ",revisions=" +
                          +
                        • + March 3, 2022, by Michael Wetter:
                          + Removed massDynamics.
                          + This is for + issue 1542. +
                        • +
                        • + April 14, 2020, by Michael Wetter:
                          + Changed homotopyInitialization to a constant.
                          + This is for + IBPSA, #1341. +
                        • +
                        • + December 1, 2016, by Michael Wetter:
                          + Updated model as use_dh is no longer a parameter in the pressure drop model.
                          + This is for + #480. +
                        • +
                        • + January 26, 2016, by Michael Wetter:
                          + Added final quantity=Medium.substanceNames for X_start. +
                        • +
                        • + May 6, 2015, by Michael Wetter:
                          + Added missing propagation of allowFlowReversal to + instance vol. + This is for issue + #412. +
                        • +
                        • + May 1, 2015, by Marcus Fuchs:
                          + Fixed links in documentation. +
                        • +
                        • + October 6, 2014, by Michael Wetter:
                          + Changed medium declaration in pressure drop element to be final. +
                        • +
                        • + May 28, 2014, by Michael Wetter:
                          + Removed annotation(Evaluate=true) for parameter tau. + This is needed to allow changing the time constant after translation. +
                        • +
                        • + November 12, 2013, by Michael Wetter:
                          + Removed import Modelica.Constants statement. +
                        • +
                        • + October 8, 2013, by Michael Wetter:
                          + Removed parameter show_V_flow. +
                        • +
                        • + December 14, 2012 by Michael Wetter:
                          + Renamed protected parameters for consistency with the naming conventions. +
                        • +
                        • + October 17, 2012, by Michael Wetter:
                          + Fixed broken link in documentation. +
                        • +
                        • + February 3, 2012, by Michael Wetter:
                          + Removed assignment of m_flow_small as it is no + longer used in the pressure drop model. +
                        • +
                        • + January 15, 2011, by Michael Wetter:
                          + Fixed wrong class reference in information section. +
                        • +
                        • + September 13, 2011, by Michael Wetter:
                          + Changed assignment of vol(mass/energyDynamics=...) as the + previous assignment caused a non-literal start value that was ignored. +
                        • +
                        • + July 29, 2011, by Michael Wetter:
                          + Added start value for outflowing enthalpy. +
                        • +
                        • + July 11, 2011, by Michael Wetter:
                          + Changed parameterization of fluid volume so that steady-state balance is + used when tau = 0. +
                        • +
                        • + May 25, 2011, by Michael Wetter:
                          + Removed temperature sensor and changed implementation of fluid volume + to allow use of this model for the steady-state and dynamic humidifier + + AixLib.Fluid.MassExchangers.HumidifierPrescribed. +
                        • +
                        • + March 25, 2011, by Michael Wetter:
                          + Added homotopy operator. +
                        • +
                        • + March 21, 2010 by Michael Wetter:
                          + Changed pressure start value from system.p_start + to Medium.p_default since HVAC models may have water and + air, which are typically at different pressures. +
                        • +
                        • + April 13, 2009, by Michael Wetter:
                          + Added model to compute flow friction. +
                        • +
                        • + January 29, 2009 by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), Icon(coordinateSystem( preserveAspectRatio=true, extent={{-100,-100},{100,100}}, @@ -266,5 +264,6 @@ First implementation. lineColor={0,0,255}, pattern=LinePattern.None, fillColor={255,0,0}, - fillPattern=FillPattern.Solid)})); + fillPattern=FillPattern.Solid)}), + __Dymola_LockedEditing="Model from IBPSA"); end TwoPortHeatMassExchanger; diff --git a/AixLib/Fluid/Interfaces/package.mo b/AixLib/Fluid/Interfaces/package.mo index 4985313580..c5bdc84691 100644 --- a/AixLib/Fluid/Interfaces/package.mo +++ b/AixLib/Fluid/Interfaces/package.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid; +within AixLib.Fluid; package Interfaces "Package with interfaces for fluid models" extends Modelica.Icons.InterfacesPackage; diff --git a/AixLib/Fluid/Interfaces/package.order b/AixLib/Fluid/Interfaces/package.order index 8eb865dee0..b2eb4f0b8f 100644 --- a/AixLib/Fluid/Interfaces/package.order +++ b/AixLib/Fluid/Interfaces/package.order @@ -4,6 +4,7 @@ EightPort EightPortHeatMassExchanger FourPortHeatExchanger FourPortHeatMassExchanger +LumpedVolumeDeclarations PartialEightPortInterface PartialFourPort PartialFourPortInterface @@ -25,6 +26,5 @@ StaticTwoPortHeatMassExchanger TwoPortHeatMassExchanger EightPortFlowResistanceParameters FourPortFlowResistanceParameters -LumpedVolumeDeclarations TwoPortFlowResistanceParameters Examples diff --git a/AixLib/Fluid/MassExchangers/ConstantEffectiveness.mo b/AixLib/Fluid/MassExchangers/ConstantEffectiveness.mo index 605f77198e..fbd5c21db7 100644 --- a/AixLib/Fluid/MassExchangers/ConstantEffectiveness.mo +++ b/AixLib/Fluid/MassExchangers/ConstantEffectiveness.mo @@ -15,20 +15,20 @@ model ConstantEffectiveness mWat1_flow = +mWat_flow, mWat2_flow = -mWat_flow); - parameter Modelica.SIunits.Efficiency epsS(max=1) = 0.8 + parameter Modelica.Units.SI.Efficiency epsS(max=1) = 0.8 "Sensible heat exchanger effectiveness"; - parameter Modelica.SIunits.Efficiency epsL(max=1) = 0.8 + parameter Modelica.Units.SI.Efficiency epsL(max=1) = 0.8 "Latent heat exchanger effectiveness"; - Modelica.SIunits.HeatFlowRate QLat_flow + Modelica.Units.SI.HeatFlowRate QLat_flow "Latent heat exchange from medium 2 to medium 1"; Medium1.MassFraction X_w_in1 "Inlet water mass fraction of medium 1"; Medium2.MassFraction X_w_in2 "Inlet water mass fraction of medium 2"; - Modelica.SIunits.MassFlowRate mWat_flow + Modelica.Units.SI.MassFlowRate mWat_flow "Water flow rate from medium 2 to medium 1"; - Modelica.SIunits.MassFlowRate mMax_flow + Modelica.Units.SI.MassFlowRate mMax_flow "Maximum water flow rate from medium 2 to medium 1"; protected @@ -97,84 +97,85 @@ equation fillPattern=FillPattern.Solid), Text( extent={{-62,50},{48,-10}}, - lineColor={255,255,255}, + textColor={255,255,255}, textString="epsS=%epsS"), Text( extent={{-60,4},{50,-56}}, - lineColor={255,255,255}, + textColor={255,255,255}, textString="epsL=%epsL")}), preferredView="info", defaultComponentName="masExc", Documentation(info=" -

                        -Model for a heat and moisture exchanger with constant effectiveness. -

                        -

                        -This model transfers heat and moisture in the amount of

                        -
                        -  QSen = epsS * Q_max,
                        -  m    = epsL * mWat_max,
                        -
                        -

                        -where epsS and epsL are constant effectiveness -for the sensible and latent heat transfer, -Q_max is the maximum sensible heat that can be transferred and -mWat_max is the maximum moisture that can be transferred. -

                        -

                        -For a sensible heat exchanger, use - -AixLib.Fluid.HeatExchangers.ConstantEffectiveness -instead of this model. -

                        -

                        -This model can only be used with medium models that define the integer constant -Water which needs to be equal to the index of the water mass fraction -in the species vector. -

                        -", +

                        + Model for a heat and moisture exchanger with constant effectiveness. +

                        +

                        + This model transfers heat and moisture in the amount of

                        +
                        +   QSen = epsS * Q_max,
                        +   m    = epsL * mWat_max,
                        + 
                        +

                        + where epsS and epsL are constant effectiveness + for the sensible and latent heat transfer, + Q_max is the maximum sensible heat that can be transferred and + mWat_max is the maximum moisture that can be transferred. +

                        +

                        + For a sensible heat exchanger, use + + AixLib.Fluid.HeatExchangers.ConstantEffectiveness + instead of this model. +

                        +

                        + This model can only be used with medium models that define the integer constant + Water which needs to be equal to the index of the water mass fraction + in the species vector. +

                        + ", revisions=" -
                          -
                        • -April 30, 2018, by Filip Jorissen:
                          -Set final prescribedHeatFlowRate1=true and -final prescribedHeatFlowRate2=true.
                          -See -#907. -
                        • -
                        • -April 11, 2017, by Michael Wetter:
                          -Corrected bug as Q1_flow did not include latent heat flow rate.
                          -This is for issue -Buildings #704. -
                        • -
                        • -October 14, 2013 by Michael Wetter:
                          -Replaced access to constant Medium1.Water by introducing -the parameter i1_w, and used a similar construct for -Medium2. -This avoids an error during model check as these constants are not known -in the partial medium model. -
                        • -
                        • -August 13, 2013 by Michael Wetter:
                          -Corrected error in the documentation. -
                        • -
                        • -July 30, 2013 by Michael Wetter:
                          -Updated model to use new variable mWat_flow -in the base class. -
                        • -
                        • -January 28, 2010, by Michael Wetter:
                          -Added regularization near zero flow. -
                        • -
                        • -October 21, 2008, by Michael Wetter:
                          -First implementation, based on - -AixLib.Fluid.HeatExchangers.ConstantEffectiveness. -
                        • -
                        -")); +
                          +
                        • + April 30, 2018, by Filip Jorissen:
                          + Set final prescribedHeatFlowRate1=true and + final prescribedHeatFlowRate2=true.
                          + See + #907. +
                        • +
                        • + April 11, 2017, by Michael Wetter:
                          + Corrected bug as Q1_flow did not include latent heat flow rate.
                          + This is for issue + Buildings #704. +
                        • +
                        • + October 14, 2013 by Michael Wetter:
                          + Replaced access to constant Medium1.Water by introducing + the parameter i1_w, and used a similar construct for + Medium2. + This avoids an error during model check as these constants are not known + in the partial medium model. +
                        • +
                        • + August 13, 2013 by Michael Wetter:
                          + Corrected error in the documentation. +
                        • +
                        • + July 30, 2013 by Michael Wetter:
                          + Updated model to use new variable mWat_flow + in the base class. +
                        • +
                        • + January 28, 2010, by Michael Wetter:
                          + Added regularization near zero flow. +
                        • +
                        • + October 21, 2008, by Michael Wetter:
                          + First implementation, based on + + AixLib.Fluid.HeatExchangers.ConstantEffectiveness. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end ConstantEffectiveness; diff --git a/AixLib/Fluid/MassExchangers/Examples/ConstantEffectiveness.mo b/AixLib/Fluid/MassExchangers/Examples/ConstantEffectiveness.mo index 86b78b99d7..04c6b5413b 100644 --- a/AixLib/Fluid/MassExchangers/Examples/ConstantEffectiveness.mo +++ b/AixLib/Fluid/MassExchangers/Examples/ConstantEffectiveness.mo @@ -97,9 +97,10 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/MassExchangers/Examples/ConstantEffectiveness.mos" "Simulate and plot"), Documentation(info=" -

                        -Note: This problem fails to translate in Dymola 2012 due to an error in Dymola's support -of stream connector. This bug will be corrected in future versions of Dymola. -

                        -")); +

                        + Note: This problem fails to translate in Dymola 2012 due to an error in Dymola's support + of stream connector. This bug will be corrected in future versions of Dymola. +

                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end ConstantEffectiveness; diff --git a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/AirDuct.mo b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/AirDuct.mo index d8acec054b..8b8f8e8b0b 100644 --- a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/AirDuct.mo +++ b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/AirDuct.mo @@ -17,15 +17,12 @@ model AirDuct "model of the air duct" "number of segments in width direction"; // Geometry - parameter Modelica.SIunits.Length lengthDuct - "length in flow direction of duct" - annotation(Dialog(tab="Geometry")); - parameter Modelica.SIunits.Length widthDuct - "width of duct" - annotation(Dialog(tab="Geometry")); - parameter Modelica.SIunits.Length heightDuct - "height of duct" - annotation(Dialog(tab="Geometry")); + parameter Modelica.Units.SI.Length lengthDuct + "length in flow direction of duct" annotation (Dialog(tab="Geometry")); + parameter Modelica.Units.SI.Length widthDuct "width of duct" + annotation (Dialog(tab="Geometry")); + parameter Modelica.Units.SI.Length heightDuct "height of duct" + annotation (Dialog(tab="Geometry")); parameter Boolean couFloArr=true "true: counter-flow arrangement; false: quasi-counter-flow arrangement" annotation(Dialog(tab="Geometry")); @@ -78,25 +75,23 @@ model AirDuct "model of the air duct" annotation (Dialog(tab="Initialization", enable=Medium.nC > 0)); // Variables - Modelica.SIunits.Length[nNodes] lengths= - {i*(lengthDuct/((nNodes+1)*nNodes/2)) for i in 1:nNodes} - "length of segements in flow direction"; - Modelica.SIunits.Area[nNodes] croSecs = fill(heightDuct*widthDuct,nNodes) + Modelica.Units.SI.Length[nNodes] lengths={i*(lengthDuct/((nNodes + 1)*nNodes/ + 2)) for i in 1:nNodes} "length of segements in flow direction"; + Modelica.Units.SI.Area[nNodes] croSecs=fill(heightDuct*widthDuct, nNodes) "cross section of duct segments"; - Modelica.SIunits.Velocity[nNodes] vs={port_a.m_flow/Medium.density(states[i]) - /croSecs[i] for i in 1:nNodes}/nParallel - "velocity in air duct segments"; - Modelica.SIunits.PartialPressure[nNodes] ps={vol[i].p*vol[i].X_w*(Ms[i]/ - M_steam) for i in 1:nNodes}; - Modelica.SIunits.MolarMass[nNodes] Ms={1/(vol[i].X_w/M_steam+(1-vol[i].X_w)/ - M_air) for i in 1:nNodes}; + Modelica.Units.SI.Velocity[nNodes] vs={port_a.m_flow/Medium.density(states[i]) + /croSecs[i] for i in 1:nNodes}/nParallel "velocity in air duct segments"; + Modelica.Units.SI.PartialPressure[nNodes] ps={vol[i].p*vol[i].X_w*(Ms[i]/ + M_steam) for i in 1:nNodes}; + Modelica.Units.SI.MolarMass[nNodes] Ms={1/(vol[i].X_w/M_steam + (1 - vol[i].X_w) + /M_air) for i in 1:nNodes}; Medium.ThermodynamicState[nNodes] states={Medium.setState_pTX( vol[i].p, vol[i].T, vol[i].Xi) for i in 1:nNodes}; - Modelica.SIunits.SpecificEnthalpy dhAds=adsorptionEnthalpy.dhAds + Modelica.Units.SI.SpecificEnthalpy dhAds=adsorptionEnthalpy.dhAds "adsorption enthalpy"; // Inputs @@ -193,15 +188,14 @@ model AirDuct "model of the air duct" protected parameter Medium.ThermodynamicState sta_default=Medium.setState_pTX( T=Medium.T_default, p=Medium.p_default, X=Medium.X_default); - parameter Modelica.SIunits.Density rho_default=Medium.density(sta_default) + parameter Modelica.Units.SI.Density rho_default=Medium.density(sta_default) "Density, used to compute fluid volume"; parameter Medium.ThermodynamicState sta_start=Medium.setState_pTX( T=T_start, p=p_start, X=X_start); - parameter Modelica.SIunits.SpecificEnthalpy h_outflow_start= - Medium.specificEnthalpy(sta_start) - "Start value for outflowing enthalpy"; - constant Modelica.SIunits.MolarMass M_steam = 0.01802 "Molar mass of steam"; - constant Modelica.SIunits.MolarMass M_air = 0.028949 "Molar mass of dry air"; + parameter Modelica.Units.SI.SpecificEnthalpy h_outflow_start= + Medium.specificEnthalpy(sta_start) "Start value for outflowing enthalpy"; + constant Modelica.Units.SI.MolarMass M_steam=0.01802 "Molar mass of steam"; + constant Modelica.Units.SI.MolarMass M_air=0.028949 "Molar mass of dry air"; Modelica.Blocks.Interfaces.RealInput[nNodes] coeCroCouSenInts "coefficient for heat transfer reduction due to cross-flow portion"; diff --git a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/Functions/CoefficientCrossToCounterFlow.mo b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/Functions/CoefficientCrossToCounterFlow.mo index f43f10b9e3..12039e985c 100644 --- a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/Functions/CoefficientCrossToCounterFlow.mo +++ b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/Functions/CoefficientCrossToCounterFlow.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.MassExchangers.MembraneBasedEnthalpyExchangers.BaseClasses.Functions; +within AixLib.Fluid.MassExchangers.MembraneBasedEnthalpyExchangers.BaseClasses.Functions; function CoefficientCrossToCounterFlow "Calculates coefficient of efficiency of cross flow exchanger to counter flow exchanger based on NTU-method" input Real NTU "number of transfer units"; diff --git a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/Functions/CollisionIntegral.mo b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/Functions/CollisionIntegral.mo index f598c53d65..1a21ca671c 100644 --- a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/Functions/CollisionIntegral.mo +++ b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/Functions/CollisionIntegral.mo @@ -1,7 +1,7 @@ -within AixLib.Fluid.MassExchangers.MembraneBasedEnthalpyExchangers.BaseClasses.Functions; +within AixLib.Fluid.MassExchangers.MembraneBasedEnthalpyExchangers.BaseClasses.Functions; function CollisionIntegral "calculates collision integral for water in air" - input Modelica.SIunits.Temperature T; + input Modelica.Units.SI.Temperature T; output Real Omega_D; diff --git a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/Functions/DiffusionCoefficient.mo b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/Functions/DiffusionCoefficient.mo index aa64b0ffa1..daa525db33 100644 --- a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/Functions/DiffusionCoefficient.mo +++ b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/Functions/DiffusionCoefficient.mo @@ -1,18 +1,18 @@ -within AixLib.Fluid.MassExchangers.MembraneBasedEnthalpyExchangers.BaseClasses.Functions; +within AixLib.Fluid.MassExchangers.MembraneBasedEnthalpyExchangers.BaseClasses.Functions; function DiffusionCoefficient "calculates diffusion coefficient of substance 2 in substance 1" - input Modelica.SIunits.MolarMass M_1 "molar mass of component one"; - input Modelica.SIunits.MolarMass M_2 "molar mass of component two"; - input Modelica.SIunits.Temperature T "temperature in K"; - input Modelica.SIunits.Pressure p "pressure in atm"; + input Modelica.Units.SI.MolarMass M_1 "molar mass of component one"; + input Modelica.Units.SI.MolarMass M_2 "molar mass of component two"; + input Modelica.Units.SI.Temperature T "temperature in K"; + input Modelica.Units.SI.Pressure p "pressure in atm"; input Real sigma1 "collision diameter component 1"; input Real sigma2 "collision diameter component 2"; //input Real eps_1 "lennard-Jones potential component 1"; //input Real eps_2 "lennard-Jones potential component 2"; input Real omega "CollisionIntegral"; - output Modelica.SIunits.DiffusionCoefficient D_12 + output Modelica.Units.SI.DiffusionCoefficient D_12 "diffusion coefficient of component two in one"; protected diff --git a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/Functions/NusseltNumberMuzychka.mo b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/Functions/NusseltNumberMuzychka.mo index 4dd00d5543..b31d6eda62 100644 --- a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/Functions/NusseltNumberMuzychka.mo +++ b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/Functions/NusseltNumberMuzychka.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.MassExchangers.MembraneBasedEnthalpyExchangers.BaseClasses.Functions; +within AixLib.Fluid.MassExchangers.MembraneBasedEnthalpyExchangers.BaseClasses.Functions; function NusseltNumberMuzychka "claculates nusselt number out of reynolds and prandtl number according to Muzychka et. al" input Real Re "Reynolds number"; diff --git a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/Functions/NusseltNumberStephan.mo b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/Functions/NusseltNumberStephan.mo index 2ff72e86ba..ceba9d57d4 100644 --- a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/Functions/NusseltNumberStephan.mo +++ b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/Functions/NusseltNumberStephan.mo @@ -3,8 +3,8 @@ function NusseltNumberStephan "calculates nusselt number out of reynolds and prandtl number according to Stephan, K." // Inputs - input Modelica.SIunits.Length dimension "characteristic dimension"; - input Modelica.SIunits.Length length "length of flat gap"; + input Modelica.Units.SI.Length dimension "characteristic dimension"; + input Modelica.Units.SI.Length length "length of flat gap"; input Real Pr "Prandtl number"; input Real Re "Reynolds number"; diff --git a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/Functions/SherwoodNumberMuzychka.mo b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/Functions/SherwoodNumberMuzychka.mo index 1fb2171528..7ece4e442b 100644 --- a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/Functions/SherwoodNumberMuzychka.mo +++ b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/Functions/SherwoodNumberMuzychka.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.MassExchangers.MembraneBasedEnthalpyExchangers.BaseClasses.Functions; +within AixLib.Fluid.MassExchangers.MembraneBasedEnthalpyExchangers.BaseClasses.Functions; function SherwoodNumberMuzychka "calculates sherwood number out of reynolds and prandtl number according to Muzychka et. al" input Real Re "Reynolds number"; diff --git a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/Functions/SherwoodNumberStephan.mo b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/Functions/SherwoodNumberStephan.mo index 1214c3a56c..79b3667e22 100644 --- a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/Functions/SherwoodNumberStephan.mo +++ b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/Functions/SherwoodNumberStephan.mo @@ -3,8 +3,8 @@ function SherwoodNumberStephan "calculates sherwood number out of reynolds and schmidt number according to Stephan, K." // Inputs - input Modelica.SIunits.Length dimension "characteristic dimension"; - input Modelica.SIunits.Length length "length of flat gap"; + input Modelica.Units.SI.Length dimension "characteristic dimension"; + input Modelica.Units.SI.Length length "length of flat gap"; input Real Sc "Schmidt number"; input Real Re "Reynolds number"; diff --git a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/HeatTransfer/AdsorptionEnthalpy.mo b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/HeatTransfer/AdsorptionEnthalpy.mo index 40dc0d65dd..2e73409104 100644 --- a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/HeatTransfer/AdsorptionEnthalpy.mo +++ b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/HeatTransfer/AdsorptionEnthalpy.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.MassExchangers.MembraneBasedEnthalpyExchangers.BaseClasses.HeatTransfer; +within AixLib.Fluid.MassExchangers.MembraneBasedEnthalpyExchangers.BaseClasses.HeatTransfer; model AdsorptionEnthalpy "model that calculates the adsorption enthalpy based on the Dubinin-Astakhov equation" @@ -9,7 +9,7 @@ model AdsorptionEnthalpy "material specific asdoprtion characteristic constant"; parameter Real n "material specific asdoprtion characteristic constant"; - parameter Modelica.SIunits.SpecificVolume v_0(min=0) + parameter Modelica.Units.SI.SpecificVolume v_0(min=0) "micropore volume per unit mass of absorbent"; //calculation of adsorption heat @@ -25,22 +25,18 @@ protected //============ variables ===================== public - Modelica.SIunits.MassFraction w(min=0) + Modelica.Units.SI.MassFraction w(min=0) "actual water uptake of adsorbent in kg/kg"; - Modelica.SIunits.MassFraction w_0(min=0) + Modelica.Units.SI.MassFraction w_0(min=0) "maximum water uptake of adsorbent in kg/kg (material specific)"; - Modelica.SIunits.Density rho - "density of water vapour"; + Modelica.Units.SI.Density rho "density of water vapour"; Real dw0_dT(unit="1/K") "derivative of maximum water uptake by temperature"; - Modelica.SIunits.SpecificEnthalpy dh_v - "vaporization enthalpy of water"; - Modelica.SIunits.SpecificEnthalpy q_st - "adsorption enthalpy of water"; + Modelica.Units.SI.SpecificEnthalpy dh_v "vaporization enthalpy of water"; + Modelica.Units.SI.SpecificEnthalpy q_st "adsorption enthalpy of water"; - input Modelica.SIunits.Temperature T - "Temperature in K"; + input Modelica.Units.SI.Temperature T "Temperature in K"; input Real phi(min=0.01,max=0.99) "relative Humidity, range:0.01...0.99"; Modelica.Blocks.Interfaces.RealOutput dhAds diff --git a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/HeatTransfer/CrossFlowReduction.mo b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/HeatTransfer/CrossFlowReduction.mo index fb458bb1a3..4e9edb8e68 100644 --- a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/HeatTransfer/CrossFlowReduction.mo +++ b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/HeatTransfer/CrossFlowReduction.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.MassExchangers.MembraneBasedEnthalpyExchangers.BaseClasses.HeatTransfer; +within AixLib.Fluid.MassExchangers.MembraneBasedEnthalpyExchangers.BaseClasses.HeatTransfer; model CrossFlowReduction "model that calculates reduction factor for heat transfer in quasi-counter flow arrangement" @@ -6,10 +6,10 @@ model CrossFlowReduction parameter Integer n=1 "number of discrete elements in flow direction"; parameter Integer nParallel=1 "number of parallel membranes"; - parameter Modelica.SIunits.Length thicknessMem "thickness of membranes"; - parameter Modelica.SIunits.ThermalConductivity lambdaMem + parameter Modelica.Units.SI.Length thicknessMem "thickness of membranes"; + parameter Modelica.Units.SI.ThermalConductivity lambdaMem "thermal conductivity of membrane"; - parameter Modelica.SIunits.Area[n] surfaceAreas "Heat transfer areas"; + parameter Modelica.Units.SI.Area[n] surfaceAreas "Heat transfer areas"; parameter Real aspRatCroToTot "cross flow portion of transfer area"; // Variables @@ -17,14 +17,14 @@ model CrossFlowReduction Real[n] NTUs "number of heat transfer units"; // Inputs - input Modelica.SIunits.HeatCapacity cp1 "heat capacity of air flow 1"; - input Modelica.SIunits.HeatCapacity cp2 "heat capacity of air flow 2"; - input Modelica.SIunits.CoefficientOfHeatTransfer[n] hCons1 + input Modelica.Units.SI.HeatCapacity cp1 "heat capacity of air flow 1"; + input Modelica.Units.SI.HeatCapacity cp2 "heat capacity of air flow 2"; + input Modelica.Units.SI.CoefficientOfHeatTransfer[n] hCons1 "convective heat transfer coefficients of air flow 1"; - input Modelica.SIunits.CoefficientOfHeatTransfer[n] hCons2 + input Modelica.Units.SI.CoefficientOfHeatTransfer[n] hCons2 "convective heat transfer coefficients of air flow 2"; - input Modelica.SIunits.MassFlowRate m_flow1 "mass flow rate of air flow 1"; - input Modelica.SIunits.MassFlowRate m_flow2 "mass flow rate of air flow 2"; + input Modelica.Units.SI.MassFlowRate m_flow1 "mass flow rate of air flow 1"; + input Modelica.Units.SI.MassFlowRate m_flow2 "mass flow rate of air flow 2"; // Outputs Modelica.Blocks.Interfaces.RealOutput[n] coeCroCous diff --git a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/HeatTransfer/LocalDuctConvectiveHeatFlow.mo b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/HeatTransfer/LocalDuctConvectiveHeatFlow.mo index 7e0905cc51..c8ecf355e7 100644 --- a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/HeatTransfer/LocalDuctConvectiveHeatFlow.mo +++ b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/HeatTransfer/LocalDuctConvectiveHeatFlow.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.MassExchangers.MembraneBasedEnthalpyExchangers.BaseClasses.HeatTransfer; +within AixLib.Fluid.MassExchangers.MembraneBasedEnthalpyExchangers.BaseClasses.HeatTransfer; model LocalDuctConvectiveHeatFlow "heat transfer model for locally resolved rectangular ducts in quasi-counter flow arrangement" diff --git a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/HeatTransfer/MembraneHeatTransfer.mo b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/HeatTransfer/MembraneHeatTransfer.mo index 0c50d8067f..6ffb22e0c0 100644 --- a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/HeatTransfer/MembraneHeatTransfer.mo +++ b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/HeatTransfer/MembraneHeatTransfer.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.MassExchangers.MembraneBasedEnthalpyExchangers.BaseClasses.HeatTransfer; +within AixLib.Fluid.MassExchangers.MembraneBasedEnthalpyExchangers.BaseClasses.HeatTransfer; model MembraneHeatTransfer "model for heat transfer through a membrane" @@ -9,27 +9,20 @@ model MembraneHeatTransfer "number of parallel air ducts"; // Parameters - parameter Modelica.SIunits.Length lengthMem + parameter Modelica.Units.SI.Length lengthMem "length of membrane in flow direction"; - parameter Modelica.SIunits.Length widthMem - "width of membrane"; - parameter Modelica.SIunits.Length thicknessMem - "thickness of membrane"; - parameter Modelica.SIunits.ThermalConductivity lambdaMem + parameter Modelica.Units.SI.Length widthMem "width of membrane"; + parameter Modelica.Units.SI.Length thicknessMem "thickness of membrane"; + parameter Modelica.Units.SI.ThermalConductivity lambdaMem "thermal conductivity of membrane"; - parameter Modelica.SIunits.Density rhoMem - "density of membrane"; - parameter Modelica.SIunits.SpecificHeatCapacity cpMem + parameter Modelica.Units.SI.Density rhoMem "density of membrane"; + parameter Modelica.Units.SI.SpecificHeatCapacity cpMem "mass weighted heat capacity of membrane"; - parameter Modelica.SIunits.Mass mMem= - rhoMem*(lengthMem*widthMem*thicknessMem)*nParallel - "mass of membrane" - annotation (Dialog(enable=false)); - parameter Modelica.SIunits.Area areaMem= - lengthMem*widthMem*nParallel - "surface area of membrane" - annotation (Dialog(enable=false)); + parameter Modelica.Units.SI.Mass mMem=rhoMem*(lengthMem*widthMem*thicknessMem) + *nParallel "mass of membrane" annotation (Dialog(enable=false)); + parameter Modelica.Units.SI.Area areaMem=lengthMem*widthMem*nParallel + "surface area of membrane" annotation (Dialog(enable=false)); // Assumptions parameter Modelica.Fluid.Types.Dynamics energyDynamics= @@ -38,9 +31,9 @@ model MembraneHeatTransfer annotation(Evaluate=true); // Initialization - parameter Modelica.SIunits.Temperature T_start + parameter Modelica.Units.SI.Temperature T_start "membrane temperature start value"; - parameter Modelica.SIunits.TemperatureDifference dT_start + parameter Modelica.Units.SI.TemperatureDifference dT_start "start value for temperature difference between heatPorts_a and heatPorst_b"; // Inputs @@ -48,16 +41,14 @@ model MembraneHeatTransfer "coefficient for heat transfer reduction due to cross-flow portion"; // Mass - Modelica.SIunits.Mass[n] m=fill(mMem/n, n) - "Distribution of wall mass"; + Modelica.Units.SI.Mass[n] m=fill(mMem/n, n) "Distribution of wall mass"; // Temperatures - Modelica.SIunits.Temperature[n] Tb(each start=T_start+0.5*dT_start) + Modelica.Units.SI.Temperature[n] Tb(each start=T_start + 0.5*dT_start) "Temperature at side b"; - Modelica.SIunits.Temperature[n] Ta(each start=T_start-0.5*dT_start) + Modelica.Units.SI.Temperature[n] Ta(each start=T_start - 0.5*dT_start) "Temperature at side a"; - Modelica.SIunits.Temperature[n] Ts - "Membrane temperature"; + Modelica.Units.SI.Temperature[n] Ts "Membrane temperature"; // Ports Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a[n] heatPorts_a diff --git a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/HeatTransfer/PartialDuctHeatTransfer.mo b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/HeatTransfer/PartialDuctHeatTransfer.mo index a8964fa2b8..1cd7999cd8 100644 --- a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/HeatTransfer/PartialDuctHeatTransfer.mo +++ b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/HeatTransfer/PartialDuctHeatTransfer.mo @@ -1,12 +1,12 @@ -within AixLib.Fluid.MassExchangers.MembraneBasedEnthalpyExchangers.BaseClasses.HeatTransfer; +within AixLib.Fluid.MassExchangers.MembraneBasedEnthalpyExchangers.BaseClasses.HeatTransfer; partial model PartialDuctHeatTransfer "partial model for rectangular duct heat transfer models" extends PartialFlowHeatTransfer; parameter Integer nWidth(min=1) "number of parallel segments in width direction"; - parameter Modelica.SIunits.Length[n] heights "height of duct"; - parameter Modelica.SIunits.Length[n] widths "width of duct"; + parameter Modelica.Units.SI.Length[n] heights "height of duct"; + parameter Modelica.Units.SI.Length[n] widths "width of duct"; Real[n] aspRats "aspect ratio between duct height and width"; parameter Boolean uniWalTem @@ -16,16 +16,17 @@ partial model PartialDuctHeatTransfer parameter Boolean recDuct "true if rectangular duct is used for Sherwood number calculation, else flat gap is used."; - Modelica.SIunits.CoefficientOfHeatTransfer[n] hCons; + Modelica.Units.SI.CoefficientOfHeatTransfer[n] hCons; // Variables - Modelica.SIunits.ThermalConductivity[n] lambdas "thermal conductivity of medium"; - Modelica.SIunits.Density[n] rhos "density of medium"; - Modelica.SIunits.DynamicViscosity[n] mus "dynamic viscosity of medium"; + Modelica.Units.SI.ThermalConductivity[n] lambdas + "thermal conductivity of medium"; + Modelica.Units.SI.Density[n] rhos "density of medium"; + Modelica.Units.SI.DynamicViscosity[n] mus "dynamic viscosity of medium"; Real[n] Prs "Prandtl number"; Real[n] Res "Reynolds number"; Real[n] Nus "Nusselt number"; - Modelica.SIunits.Area[n] croSecs "cross section of duct"; + Modelica.Units.SI.Area[n] croSecs "cross section of duct"; Real[n] zSterns "dimensionless length"; equation diff --git a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/HeatTransfer/PartialFlowHeatTransfer.mo b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/HeatTransfer/PartialFlowHeatTransfer.mo index 9f9874eff1..6b2868b7e1 100644 --- a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/HeatTransfer/PartialFlowHeatTransfer.mo +++ b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/HeatTransfer/PartialFlowHeatTransfer.mo @@ -4,10 +4,10 @@ partial model PartialFlowHeatTransfer extends PartialHeatTransfer; // Additional inputs provided to flow heat transfer model - input Modelica.SIunits.Velocity[n] vs + input Modelica.Units.SI.Velocity[n] vs "Mean velocities of fluid flow in segments"; - input Modelica.SIunits.Length[n] lengths "Lengths along flow path"; + input Modelica.Units.SI.Length[n] lengths "Lengths along flow path"; annotation (Documentation(info="Base class for heat transfer models of flow devices.

                        diff --git a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/HeatTransfer/PartialHeatTransfer.mo b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/HeatTransfer/PartialHeatTransfer.mo index 5bc6b9ca80..ae09d0f9b0 100644 --- a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/HeatTransfer/PartialHeatTransfer.mo +++ b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/HeatTransfer/PartialHeatTransfer.mo @@ -22,10 +22,10 @@ partial model PartialHeatTransfer input Medium.ThermodynamicState[n] states "Thermodynamic states of flow segments"; - input Modelica.SIunits.Area[n] surfaceAreas "Heat transfer areas"; + input Modelica.Units.SI.Area[n] surfaceAreas "Heat transfer areas"; // Outputs defined by heat transfer model - output Modelica.SIunits.HeatFlowRate[n] Q_flows "Heat flow rates"; + output Modelica.Units.SI.HeatFlowRate[n] Q_flows "Heat flow rates"; // Heat ports Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a[n] heatPorts @@ -33,7 +33,8 @@ partial model PartialHeatTransfer extent={{-10,60},{10,80}}), iconTransformation(extent={{-10,60},{10,80}}))); // Variables - Modelica.SIunits.Temperature[n] Ts = Medium.temperature(states) "Temperature at states"; + Modelica.Units.SI.Temperature[n] Ts=Medium.temperature(states) + "Temperature at states"; equation Q_flows =heatPorts.Q_flow; annotation (Documentation(info="

                        diff --git a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/MassTransfer/CrossFlowReduction.mo b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/MassTransfer/CrossFlowReduction.mo index 4097a745ce..d6673ed4c5 100644 --- a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/MassTransfer/CrossFlowReduction.mo +++ b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/MassTransfer/CrossFlowReduction.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.MassExchangers.MembraneBasedEnthalpyExchangers.BaseClasses.MassTransfer; +within AixLib.Fluid.MassExchangers.MembraneBasedEnthalpyExchangers.BaseClasses.MassTransfer; model CrossFlowReduction "model that calculates reduction factor for mass transfer in quasi-counter flow arrangement" @@ -6,14 +6,14 @@ model CrossFlowReduction parameter Integer n=1 "number of discrete elements in flow direction"; parameter Integer nParallel=1 "number of parallel membranes"; - parameter Modelica.SIunits.Length thicknessMem "thickness of membranes"; - parameter Modelica.SIunits.Area[n] surfaceAreas "Heat transfer areas"; + parameter Modelica.Units.SI.Length thicknessMem "thickness of membranes"; + parameter Modelica.Units.SI.Area[n] surfaceAreas "Heat transfer areas"; parameter Real aspRatCroToTot "ratio of cross flow of air duct"; // Constants constant Real C_conv = 3.35*10^(-16) "conversion factor for permeance to calculate SI-units from Barrer"; - constant Modelica.SIunits.MolarMass M_steam = 0.01802; + constant Modelica.Units.SI.MolarMass M_steam=0.01802; // Variables Real[n] k_tots "total mass transfer coefficient"; @@ -26,8 +26,8 @@ model CrossFlowReduction "convective mass transfer coefficients of air flow 1"; input Real[n] kCons2 "convective mass transfer coefficients of air flow 2"; - input Modelica.SIunits.MassFlowRate m_flow1 "mass flow rate of air flow 1"; - input Modelica.SIunits.MassFlowRate m_flow2 "mass flow rate of air flow 2"; + input Modelica.Units.SI.MassFlowRate m_flow1 "mass flow rate of air flow 1"; + input Modelica.Units.SI.MassFlowRate m_flow2 "mass flow rate of air flow 2"; // Outputs Modelica.Blocks.Interfaces.RealOutput[n] coeCroCous diff --git a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/MassTransfer/LocalDuctConvectiveMassFlow.mo b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/MassTransfer/LocalDuctConvectiveMassFlow.mo index 94522c0c2d..150d6d1967 100644 --- a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/MassTransfer/LocalDuctConvectiveMassFlow.mo +++ b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/MassTransfer/LocalDuctConvectiveMassFlow.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.MassExchangers.MembraneBasedEnthalpyExchangers.BaseClasses.MassTransfer; +within AixLib.Fluid.MassExchangers.MembraneBasedEnthalpyExchangers.BaseClasses.MassTransfer; model LocalDuctConvectiveMassFlow "mass transfer model for locally resolved rectangular ducts in quasi-counter flow arrangement" diff --git a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/MassTransfer/MembraneMassTransfer.mo b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/MassTransfer/MembraneMassTransfer.mo index 87f3540ba3..0a5f953699 100644 --- a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/MassTransfer/MembraneMassTransfer.mo +++ b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/MassTransfer/MembraneMassTransfer.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.MassExchangers.MembraneBasedEnthalpyExchangers.BaseClasses.MassTransfer; +within AixLib.Fluid.MassExchangers.MembraneBasedEnthalpyExchangers.BaseClasses.MassTransfer; model MembraneMassTransfer "model for mass transfer through membrane in quasi-counter flow arrangement" @@ -9,23 +9,18 @@ model MembraneMassTransfer "model for mass transfer through membrane in "number of parallel air ducts"; // Parameter - parameter Modelica.SIunits.Length lengthMem + parameter Modelica.Units.SI.Length lengthMem "length of membrane in flow direction"; - parameter Modelica.SIunits.Length widthMem - "width of membrane"; - parameter Modelica.SIunits.Length thicknessMem - "thickness of membrane"; - parameter Modelica.SIunits.Density rhoMem - "density of membrane"; - parameter Modelica.SIunits.Area areaMem= - lengthMem*widthMem*nParallel - "surface area of membrane" - annotation (Dialog(enable=false)); + parameter Modelica.Units.SI.Length widthMem "width of membrane"; + parameter Modelica.Units.SI.Length thicknessMem "thickness of membrane"; + parameter Modelica.Units.SI.Density rhoMem "density of membrane"; + parameter Modelica.Units.SI.Area areaMem=lengthMem*widthMem*nParallel + "surface area of membrane" annotation (Dialog(enable=false)); // Initialization - parameter Modelica.SIunits.PartialPressure p_start + parameter Modelica.Units.SI.PartialPressure p_start "start value for mean partial pressure at membrane's surfaces"; - parameter Modelica.SIunits.PartialPressure dp_start + parameter Modelica.Units.SI.PartialPressure dp_start "start value for partial pressure difference between membrane's surfaces"; // Inputs @@ -49,7 +44,7 @@ protected // 1 Barrer = 3.33*10^(-16) (mol*m)/(m²*s*Pa) // calculated from: Stern, S.A.: The "Barrer" Permeability Unit. // J. of Polym. Sci. Vol. 6. 1968 - constant Modelica.SIunits.MolarMass M_steam = 0.01802; + constant Modelica.Units.SI.MolarMass M_steam=0.01802; // constant Modelica.SIunits.MolarMass M_air = 0.028949; // source: Detlev Möller: Luft: Chemie, Physik, Biologie, Reinhaltung, Recht. // Walter de Gruyter, 2003, ISBN 3-11-016431-0, S. 173 diff --git a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/MassTransfer/PartialDuctMassTransfer.mo b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/MassTransfer/PartialDuctMassTransfer.mo index b6adf0a689..2d9417955c 100644 --- a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/MassTransfer/PartialDuctMassTransfer.mo +++ b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/MassTransfer/PartialDuctMassTransfer.mo @@ -1,12 +1,12 @@ -within AixLib.Fluid.MassExchangers.MembraneBasedEnthalpyExchangers.BaseClasses.MassTransfer; +within AixLib.Fluid.MassExchangers.MembraneBasedEnthalpyExchangers.BaseClasses.MassTransfer; partial model PartialDuctMassTransfer "partial model for rectangular duct mass transfer models" extends PartialFlowMassTransfer; parameter Integer nWidth(min=1) "number of parallel segments in width direction"; - parameter Modelica.SIunits.Length[n] heights "height of duct"; - parameter Modelica.SIunits.Length[n] widths "width of duct"; + parameter Modelica.Units.SI.Length[n] heights "height of duct"; + parameter Modelica.Units.SI.Length[n] widths "width of duct"; Real[n] aspRats "aspect ratio between duct height and width"; parameter Boolean uniWalTem @@ -19,23 +19,24 @@ partial model PartialDuctMassTransfer Real[n] kCons; // Variables - Modelica.SIunits.ThermalConductivity[n] lambdas "thermal conductivity of medium"; - Modelica.SIunits.Density[n] rhos "density of medium"; - Modelica.SIunits.DynamicViscosity[n] mus "dynamic viscosity of medium"; + Modelica.Units.SI.ThermalConductivity[n] lambdas + "thermal conductivity of medium"; + Modelica.Units.SI.Density[n] rhos "density of medium"; + Modelica.Units.SI.DynamicViscosity[n] mus "dynamic viscosity of medium"; Real[n] Scs "Schmidt number"; Real[n] Res "Reynolds number"; Real[n] Shs "Shwerwood number"; - Modelica.SIunits.Area[n] croSecs "cross section of duct"; + Modelica.Units.SI.Area[n] croSecs "cross section of duct"; Real[n] zSterns "dimensionless length"; protected - constant Modelica.SIunits.MolarMass M_air = 28.96; - constant Modelica.SIunits.MolarMass M_steam = 18.02; + constant Modelica.Units.SI.MolarMass M_air=28.96; + constant Modelica.Units.SI.MolarMass M_steam=18.02; constant Real sigmaAir = 3.711 "distance of air molecules in Atom"; constant Real sigmaSteam = 2.655 "distance of steam molecules in Atom"; Real[n] omegas "collision integral"; - Modelica.SIunits.DiffusionCoefficient[n] Ds + Modelica.Units.SI.DiffusionCoefficient[n] Ds "diffusion coefficient for water vapour into air"; equation diff --git a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/MassTransfer/PartialFlowMassTransfer.mo b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/MassTransfer/PartialFlowMassTransfer.mo index 6ec897fac4..7215eccd0f 100644 --- a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/MassTransfer/PartialFlowMassTransfer.mo +++ b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/MassTransfer/PartialFlowMassTransfer.mo @@ -4,10 +4,10 @@ partial model PartialFlowMassTransfer extends PartialMassTransfer; // Additional inputs provided to flow heat transfer model - input Modelica.SIunits.Velocity[n] vs + input Modelica.Units.SI.Velocity[n] vs "Mean velocities of fluid flow in segments"; - input Modelica.SIunits.Length[n] lengths "Lengths along flow path"; + input Modelica.Units.SI.Length[n] lengths "Lengths along flow path"; annotation (Documentation(info="

                        Base class for mass transfer models of flow devices. diff --git a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/MassTransfer/PartialMassTransfer.mo b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/MassTransfer/PartialMassTransfer.mo index cf2750654a..0fc4990f1b 100644 --- a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/MassTransfer/PartialMassTransfer.mo +++ b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/MassTransfer/PartialMassTransfer.mo @@ -22,10 +22,10 @@ partial model PartialMassTransfer input Medium.ThermodynamicState[n] states "Thermodynamic states of flow segments"; - input Modelica.SIunits.Area[n] surfaceAreas "Heat transfer areas"; + input Modelica.Units.SI.Area[n] surfaceAreas "Heat transfer areas"; // Outputs defined by heat transfer model - output Modelica.SIunits.MassFlowRate[n] m_flows "Mass flow rates"; + output Modelica.Units.SI.MassFlowRate[n] m_flows "Mass flow rates"; // Heat ports AixLib.Utilities.MassTransfer.MassPort[n] massPorts @@ -34,7 +34,7 @@ partial model PartialMassTransfer 86}}))); // Variables - input Modelica.SIunits.PartialPressure[n] ps "partial pressure at states"; + input Modelica.Units.SI.PartialPressure[n] ps "partial pressure at states"; equation m_flows =massPorts.m_flow; diff --git a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/Membrane.mo b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/Membrane.mo index c0a6c5898d..9efabe5220 100644 --- a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/Membrane.mo +++ b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/BaseClasses/Membrane.mo @@ -7,27 +7,23 @@ model Membrane "model of membrane" "number of parallel membranes"; // Parameters - parameter Modelica.SIunits.Length lengthMem - "length of membrane in flow direction" - annotation(Dialog(tab="Geometry")); - parameter Modelica.SIunits.Length widthMem - "width of membrane" - annotation(Dialog(tab="Geometry")); - parameter Modelica.SIunits.Length thicknessMem - "thickness of membrane" - annotation(Dialog(tab="Geometry")); + parameter Modelica.Units.SI.Length lengthMem + "length of membrane in flow direction" annotation (Dialog(tab="Geometry")); + parameter Modelica.Units.SI.Length widthMem "width of membrane" + annotation (Dialog(tab="Geometry")); + parameter Modelica.Units.SI.Length thicknessMem "thickness of membrane" + annotation (Dialog(tab="Geometry")); parameter Boolean couFloArr=true "true: counter-flow arrangement; false: quasi-counter-flow arrangement" annotation(Dialog(tab="Geometry")); - parameter Modelica.SIunits.SpecificHeatCapacity cpMem + parameter Modelica.Units.SI.SpecificHeatCapacity cpMem "mass weighted heat capacity of membrane" - annotation(Dialog(tab="Membrane properties",group="Heat Transfer")); - parameter Modelica.SIunits.ThermalConductivity lambdaMem + annotation (Dialog(tab="Membrane properties", group="Heat Transfer")); + parameter Modelica.Units.SI.ThermalConductivity lambdaMem "thermal conductivity of membrane" - annotation(Dialog(tab="Membrane properties",group="Heat Transfer")); - parameter Modelica.SIunits.Density rhoMem - "density of membrane" - annotation(Dialog(tab="Membrane properties",group="Others")); + annotation (Dialog(tab="Membrane properties", group="Heat Transfer")); + parameter Modelica.Units.SI.Density rhoMem "density of membrane" + annotation (Dialog(tab="Membrane properties", group="Others")); //Advanced parameter Boolean useConPer=true @@ -44,22 +40,22 @@ model Membrane "model of membrane" annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Equations")); // Initialization - parameter Modelica.SIunits.Temperature T_start + parameter Modelica.Units.SI.Temperature T_start "start value of membrane's temperature" - annotation(Dialog(tab="Initialization", group="Heat Transfer")); - parameter Modelica.SIunits.TemperatureDifference dT_start + annotation (Dialog(tab="Initialization", group="Heat Transfer")); + parameter Modelica.Units.SI.TemperatureDifference dT_start "start value for temperature difference between heatPorts_a and heatPorst_b" - annotation(Dialog(tab="Initialization", group="Heat Transfer")); - parameter Modelica.SIunits.PartialPressure p_start + annotation (Dialog(tab="Initialization", group="Heat Transfer")); + parameter Modelica.Units.SI.PartialPressure p_start "start value for mean partial pressure of water vapour at membrane's surface" - annotation(Dialog(tab="Initialization", group="Mass Transfer")); - parameter Modelica.SIunits.PartialPressure dp_start + annotation (Dialog(tab="Initialization", group="Mass Transfer")); + parameter Modelica.Units.SI.PartialPressure dp_start "start value for partial pressure difference between membrane's surfaces" - annotation(Dialog(tab="Initialization", group="Mass Transfer")); + annotation (Dialog(tab="Initialization", group="Mass Transfer")); // Inputs - Modelica.Blocks.Interfaces.RealInput perMem(unit="mol/(m.s.Pa)") if - not useConPer "membrane permeability in Barrer" + Modelica.Blocks.Interfaces.RealInput perMem(unit="mol/(m.s.Pa)") + if not useConPer "membrane permeability in Barrer" annotation (Placement(transformation(extent={{-140,-20},{-100,20}}))); Modelica.Blocks.Interfaces.RealInput[nNodes] coeCroCouSens if not couFloArr "coefficient for heat transfer reduction due to cross-flow portion"; diff --git a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/EnthalpyExchanger.mo b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/EnthalpyExchanger.mo index b49a909796..5c9f6ea328 100644 --- a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/EnthalpyExchanger.mo +++ b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/EnthalpyExchanger.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.MassExchangers.MembraneBasedEnthalpyExchangers; +within AixLib.Fluid.MassExchangers.MembraneBasedEnthalpyExchangers; model EnthalpyExchanger "model for a parallel membrane enthalpy exchanger" @@ -22,15 +22,13 @@ model EnthalpyExchanger //----------------------Air Ducts------------------------------------ // Geometry - parameter Modelica.SIunits.Length lengthDuct + parameter Modelica.Units.SI.Length lengthDuct "length of ducts in flow direction" - annotation(Dialog(tab="AirDucts",group="Geometry")); - parameter Modelica.SIunits.Length heightDuct - "height of ducts" - annotation(Dialog(tab="AirDucts",group="Geometry")); - parameter Modelica.SIunits.Length widthDuct - "width of ducts" - annotation(Dialog(tab="AirDucts",group="Geometry")); + annotation (Dialog(tab="AirDucts", group="Geometry")); + parameter Modelica.Units.SI.Length heightDuct "height of ducts" + annotation (Dialog(tab="AirDucts", group="Geometry")); + parameter Modelica.Units.SI.Length widthDuct "width of ducts" + annotation (Dialog(tab="AirDucts", group="Geometry")); parameter Boolean couFloArr=true "true: counter-flow arrangement; false: quasi-counter-flow arrangement" annotation(Dialog(tab="AirDucts",group="Geometry")); @@ -53,40 +51,39 @@ model EnthalpyExchanger annotation(Dialog(tab="AirDucts",group="Heat and mass transfer")); // pressure losses - parameter Modelica.SIunits.MassFlowRate m_flow_nominal + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal "nominal mass flow rate"; - parameter Modelica.SIunits.Pressure dp_nominal - "nominal pressure drop"; + parameter Modelica.Units.SI.Pressure dp_nominal "nominal pressure drop"; //-----------------------Membrane------------------------------------- // Geometry - parameter Modelica.SIunits.Length lengthMem=lengthDuct - "length of membranes in flow direction" - annotation(Dialog(enable=false,tab="Membranes",group="Geometry")); - parameter Modelica.SIunits.Length widthMem=widthDuct - "width of membranes" - annotation(Dialog(enable=false,tab="Membranes",group="Geometry")); - parameter Modelica.SIunits.Length thicknessMem - "thickness of membranes" - annotation(Dialog(tab="Membranes",group="Geometry")); - parameter Modelica.SIunits.SpecificHeatCapacity cpMem + parameter Modelica.Units.SI.Length lengthMem=lengthDuct + "length of membranes in flow direction" annotation (Dialog( + enable=false, + tab="Membranes", + group="Geometry")); + parameter Modelica.Units.SI.Length widthMem=widthDuct "width of membranes" + annotation (Dialog( + enable=false, + tab="Membranes", + group="Geometry")); + parameter Modelica.Units.SI.Length thicknessMem "thickness of membranes" + annotation (Dialog(tab="Membranes", group="Geometry")); + parameter Modelica.Units.SI.SpecificHeatCapacity cpMem "mass weighted heat capacity of membrane" - annotation(Dialog(tab="Membranes",group="Heat and mass transfer")); + annotation (Dialog(tab="Membranes", group="Heat and mass transfer")); // Membrane properties - parameter Modelica.SIunits.ThermalConductivity lambdaMem + parameter Modelica.Units.SI.ThermalConductivity lambdaMem "thermal conductivity of membrane" - annotation(Dialog(tab="Membranes",group="Heat and mass transfer")); - parameter Modelica.SIunits.Density rhoMem - "density of membrane" - annotation(Dialog(tab="Membranes",group="Others")); + annotation (Dialog(tab="Membranes", group="Heat and mass transfer")); + parameter Modelica.Units.SI.Density rhoMem "density of membrane" + annotation (Dialog(tab="Membranes", group="Others")); // calculated parameter - parameter Modelica.SIunits.Area[n] surfaceAreas= - fill(lengthMem*widthMem/n,n) - "Heat transfer areas" - annotation(Dialog(enable=false,tab="calculated")); + parameter Modelica.Units.SI.Area[n] surfaceAreas=fill(lengthMem*widthMem/n, n) + "Heat transfer areas" annotation (Dialog(enable=false, tab="calculated")); //Advanced parameter Boolean useConPer=true @@ -97,9 +94,9 @@ model EnthalpyExchanger annotation(Dialog(tab="Advanced",enable=useConPer)); // Initialization - parameter Modelica.SIunits.MassFlowRate m_flow_start = m_flow_nominal + parameter Modelica.Units.SI.MassFlowRate m_flow_start=m_flow_nominal "Start value for mass flow rate" - annotation(Evaluate=true, Dialog(tab = "Initialization")); + annotation (Evaluate=true, Dialog(tab="Initialization")); parameter Medium.AbsolutePressure p_a1_start=Medium.p_default "Start value of pressure at port a1" annotation(Dialog(tab = "Initialization")); @@ -119,9 +116,9 @@ model EnthalpyExchanger parameter Medium.Temperature T_start=Medium.T_default "Start value of temperature" annotation(Evaluate=true, Dialog(tab = "Initialization")); - parameter Modelica.SIunits.Pressure p_start = Medium.p_default + parameter Modelica.Units.SI.Pressure p_start=Medium.p_default "reference pressure" - annotation(Evaluate=true, Dialog(tab = "Initialization")); + annotation (Evaluate=true, Dialog(tab="Initialization")); parameter Medium.MassFraction X_start[Medium.nX]( quantity=Medium.substanceNames)=Medium.X_default "Start value of mass fractions m_i/m" @@ -130,18 +127,17 @@ model EnthalpyExchanger quantity=Medium.extraPropertiesNames)=fill(0, Medium.nC) "Start value of trace substances" annotation (Dialog(tab="Initialization", enable=Medium.nC > 0)); - parameter Modelica.SIunits.Temperature T_start_m - "membrane temperature start value" - annotation(Dialog(tab = "Initialization")); - parameter Modelica.SIunits.TemperatureDifference dT_start + parameter Modelica.Units.SI.Temperature T_start_m + "membrane temperature start value" annotation (Dialog(tab="Initialization")); + parameter Modelica.Units.SI.TemperatureDifference dT_start "start value for temperature between air ducts" - annotation(Dialog(tab = "Initialization")); - parameter Modelica.SIunits.PartialPressure p_start_m + annotation (Dialog(tab="Initialization")); + parameter Modelica.Units.SI.PartialPressure p_start_m "start value for mean partial pressure at membrane's surface" - annotation(Dialog(tab = "Initialization")); - parameter Modelica.SIunits.PartialPressure dp_start + annotation (Dialog(tab="Initialization")); + parameter Modelica.Units.SI.PartialPressure dp_start "Start value for partial pressure gradient over membrane" - annotation(Dialog(tab = "Initialization")); + annotation (Dialog(tab="Initialization")); BaseClasses.AirDuct airDuct2( redeclare final package Medium=Medium, @@ -206,8 +202,8 @@ model EnthalpyExchanger final energyDynamics=energyDynamics) annotation (Placement(transformation(extent={{-36,-28},{22,28}}))); - Modelica.Blocks.Interfaces.RealInput perMem(unit="mol/(m.s.Pa)") if - not useConPer "membrane permeability in Barrer" + Modelica.Blocks.Interfaces.RealInput perMem(unit="mol/(m.s.Pa)") + if not useConPer "membrane permeability in Barrer" annotation (Placement(transformation(extent={{-140,-20},{-100,20}}), iconTransformation(extent={{-120,-10},{-100,10}}))); // Modelica.Blocks.Interfaces.RealInput[n] coeCroCouSens if not couFloArr @@ -251,8 +247,8 @@ protected final hCons2=airDuct2.heatTransfer.hCons, final aspRatCroToTot=aspRatCroToTot, final cp1=Medium.specificHeatCapacityCp(airDuct1.states[1]), - final cp2=Medium.specificHeatCapacityCp(airDuct2.states[1])) if - not couFloArr; + final cp2=Medium.specificHeatCapacityCp(airDuct2.states[1])) + if not couFloArr; BaseClasses.MassTransfer.CrossFlowReduction masRedFac( final n=n, final nParallel=nParallel, @@ -262,8 +258,8 @@ protected final thicknessMem=thicknessMem, final kCons1=airDuct1.massTransfer.kCons, final kCons2=airDuct2.massTransfer.kCons, - final aspRatCroToTot=aspRatCroToTot) if - not couFloArr; + final aspRatCroToTot=aspRatCroToTot) + if not couFloArr; equation if useConPer then diff --git a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/Examples/Test_EnthalpyExchanger.mo b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/Examples/Test_EnthalpyExchanger.mo index 94917e4ae9..998f4e02ab 100644 --- a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/Examples/Test_EnthalpyExchanger.mo +++ b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/Examples/Test_EnthalpyExchanger.mo @@ -71,12 +71,12 @@ model Test_EnthalpyExchanger "example test for enthalpy exchanger" annotation (Placement(transformation(extent={{-20,70},{-40,90}}))); Modelica.Blocks.Sources.Sine sine( amplitude=5, - freqHz=1/3600, + f=1/3600, offset=278.15) annotation (Placement(transformation(extent={{0,-90},{20,-70}}))); Modelica.Blocks.Sources.Sine sine1( amplitude=0.002, - freqHz=1/3600, + f=1/3600, offset=0.003) annotation (Placement(transformation(extent={{0,-60},{20,-40}}))); Sensors.TemperatureTwoPort senTemHotIn(redeclare package Medium = Media.Air, @@ -159,8 +159,8 @@ equation annotation (Line(points={{23,80},{38.5,80}}, color={0,0,127})); connect(latEff.y, realValue1.numberPort) annotation (Line(points={{23,60},{38.5,60}}, color={0,0,127})); - annotation (experiment(StopTime=7200, Interval=1, method="dassl",Tolerance=1E-6), - __Dymola_Comands(file= + annotation (experiment(StopTime=7200, Interval=1, Algorithm="dassl",Tolerance=1E-6), + __Dymola_Commands(file= "modelica://AixLib/Resources/Scripts/Dymola/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/Examples/Test_EnthalpyExchanger.mos" "Simulate and plot"), Documentation(info="This example shows the functionality of the membrane-based enthalpy diff --git a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/Validation/DynamicValidation.mo b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/Validation/DynamicValidation.mo index cd36fd1470..b802cf803c 100644 --- a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/Validation/DynamicValidation.mo +++ b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/Validation/DynamicValidation.mo @@ -8,31 +8,30 @@ model DynamicValidation "Number of identical parallel flow devices"; parameter Integer n = 15 "number of discrete segments"; - parameter Modelica.SIunits.Length heightDuct = 0.00225 "height of duct"; - parameter Modelica.SIunits.Length widthDuct = 0.305 "width of duct"; - parameter Modelica.SIunits.Length lengthDuct = 0.34 + parameter Modelica.Units.SI.Length heightDuct=0.00225 "height of duct"; + parameter Modelica.Units.SI.Length widthDuct=0.305 "width of duct"; + parameter Modelica.Units.SI.Length lengthDuct=0.34 "length of duct in flow direction"; parameter Real aspRatCroToTot = 0.25 "aspect ratio of cross flow"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal = 400/3600*1.18 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=400/3600*1.18 "nominal mass flow rate"; - parameter Modelica.SIunits.Pressure dp_nominal = 119.5 - "nominal pressure drop"; - parameter Modelica.SIunits.Length thicknessMem=110E-6 + parameter Modelica.Units.SI.Pressure dp_nominal=119.5 "nominal pressure drop"; + parameter Modelica.Units.SI.Length thicknessMem=110E-6 "thickness of membrane"; - parameter Modelica.SIunits.SpecificHeatCapacity cpMem = 1900 + parameter Modelica.Units.SI.SpecificHeatCapacity cpMem=1900 "mass weighted heat capacity of membrane"; - parameter Modelica.SIunits.ThermalConductivity lambdaMem=0.24 + parameter Modelica.Units.SI.ThermalConductivity lambdaMem=0.24 "thermal conductivity of membrane"; - parameter Modelica.SIunits.Density rhoMem = 920 "density of membrane"; - parameter Modelica.SIunits.Temperature T_start = 283.15 + parameter Modelica.Units.SI.Density rhoMem=920 "density of membrane"; + parameter Modelica.Units.SI.Temperature T_start=283.15 "membrane temperature start value"; - parameter Modelica.SIunits.Temperature dT = 10 + parameter Modelica.Units.SI.Temperature dT=10 "Start value for port_b.T - port_a.T"; - parameter Modelica.SIunits.Pressure p_start=1200.0 + parameter Modelica.Units.SI.Pressure p_start=1200.0 "membrane concentration start value"; - parameter Modelica.SIunits.Pressure dp=100.0 + parameter Modelica.Units.SI.Pressure dp=100.0 "Start value for concentration gradient in membrane"; - parameter Modelica.SIunits.MassFlowRate m_flow_start = m_flow_nominal + parameter Modelica.Units.SI.MassFlowRate m_flow_start=m_flow_nominal "Start value for mass flow rate"; parameter Real A=5.38E7 "constant A of linear dependency equation for permeability"; @@ -292,8 +291,8 @@ equation annotation (Line(points={{-87,0},{-52,0},{-52,6}}, color={0,0,127})); annotation (Diagram(coordinateSystem(extent={{-160,-100},{160,100}})), Icon( coordinateSystem(extent={{-160,-100},{160,100}})), - experiment(StopTime=7200, Interval=2, method="dassl",Tolerance=1E-6), - __Dymola_Comands(file= + experiment(StopTime=7200, Interval=2, Algorithm="dassl",Tolerance=1E-6), + __Dymola_Commands(file= "modelica://AixLib/Resources/Scripts/Dymola/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/Validation/DynamicValidation.mos" "Simulate and plot"), Documentation(info="

                        diff --git a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/Validation/StaticValidation.mo b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/Validation/StaticValidation.mo index 6b4acfda06..8483fa3d0c 100644 --- a/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/Validation/StaticValidation.mo +++ b/AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/Validation/StaticValidation.mo @@ -8,23 +8,30 @@ model StaticValidation "Number of identical parallel flow devices"; parameter Integer n = 15 "number of discrete segments"; - parameter Modelica.SIunits.Length heightDuct = 0.00225 "height of duct"; - parameter Modelica.SIunits.Length widthDuct = 0.305 "width of duct"; - parameter Modelica.SIunits.Length lengthDuct = 0.34 "length of duct in flow direction"; + parameter Modelica.Units.SI.Length heightDuct=0.00225 "height of duct"; + parameter Modelica.Units.SI.Length widthDuct=0.305 "width of duct"; + parameter Modelica.Units.SI.Length lengthDuct=0.34 + "length of duct in flow direction"; parameter Real aspRatCroToTot = 0.25 "aspect ratio of cross flow"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal = 400/3600*1.18 "nominal mass flow rate"; - parameter Modelica.SIunits.Pressure dp_nominal = 119.5 "nominal pressure drop"; - parameter Modelica.SIunits.Length thicknessMem=110E-6 "thickness of membrane"; - parameter Modelica.SIunits.SpecificHeatCapacity cpMem = 1900 "mass weighted heat capacity of membrane"; - parameter Modelica.SIunits.ThermalConductivity lambdaMem=0.24 "thermal conductivity of membrane"; - parameter Modelica.SIunits.Density rhoMem = 920 "density of membrane"; - parameter Modelica.SIunits.Temperature T_start = 283.15 "membrane temperature start value"; - parameter Modelica.SIunits.Temperature dT = 10 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=400/3600*1.18 + "nominal mass flow rate"; + parameter Modelica.Units.SI.Pressure dp_nominal=119.5 "nominal pressure drop"; + parameter Modelica.Units.SI.Length thicknessMem=110E-6 + "thickness of membrane"; + parameter Modelica.Units.SI.SpecificHeatCapacity cpMem=1900 + "mass weighted heat capacity of membrane"; + parameter Modelica.Units.SI.ThermalConductivity lambdaMem=0.24 + "thermal conductivity of membrane"; + parameter Modelica.Units.SI.Density rhoMem=920 "density of membrane"; + parameter Modelica.Units.SI.Temperature T_start=283.15 + "membrane temperature start value"; + parameter Modelica.Units.SI.Temperature dT=10 "Start value for port_b.T - port_a.T"; - parameter Modelica.SIunits.Pressure p_start=1200.0 "membrane concentration start value"; - parameter Modelica.SIunits.Pressure dp=100.0 + parameter Modelica.Units.SI.Pressure p_start=1200.0 + "membrane concentration start value"; + parameter Modelica.Units.SI.Pressure dp=100.0 "Start value for concentration gradient in membrane"; - parameter Modelica.SIunits.MassFlowRate m_flow_start = m_flow_nominal + parameter Modelica.Units.SI.MassFlowRate m_flow_start=m_flow_nominal "Start value for mass flow rate"; parameter Real A=5.38E7 "constant A of linear dependency equation for permeability"; parameter Real B=4.64E5 "constant B of linear dependency equation for permeability"; @@ -276,8 +283,8 @@ equation -110,66},{-110,64},{-78,64}}, color={0,0,127})); annotation (Diagram(coordinateSystem(extent={{-160,-100},{160,100}})), Icon( coordinateSystem(extent={{-160,-100},{160,100}})), - experiment(StopTime=29600, Interval=1, method="dassl",Tolerance=1E-6), - __Dymola_Comands(file= + experiment(StopTime=29600, Interval=1, Algorithm="dassl",Tolerance=1E-6), + __Dymola_Commands(file= "modelica://AixLib/Resources/Scripts/Dymola/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/Validation/StaticValidation.mos" "Simulate and plot"), Documentation(info="

                        diff --git a/AixLib/Fluid/MassExchangers/Validation/ConstantEffectivenessZeroFlow.mo b/AixLib/Fluid/MassExchangers/Validation/ConstantEffectivenessZeroFlow.mo index f8004a949f..0a69e8ee9a 100644 --- a/AixLib/Fluid/MassExchangers/Validation/ConstantEffectivenessZeroFlow.mo +++ b/AixLib/Fluid/MassExchangers/Validation/ConstantEffectivenessZeroFlow.mo @@ -6,21 +6,21 @@ model ConstantEffectivenessZeroFlow height=0, offset=1E5), PIn(height=0, offset=101325)); annotation (Documentation(revisions=" -

                          -
                        • -April 30, 2018, by Filip Jorissen:
                          -First implementation. -See #907. -
                        • -
                        -", info=" -

                        -This model tests whether -ConstantEffectiveness -works correctly at zero flow if one stream is zero. -

                        -"), experiment(Tolerance=1e-06, StopTime=1), - __Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/MassExchangers/Validation/ConstantEffectivenessZeroFlow.mos" - "Simulate and plot")); +
                          +
                        • + April 30, 2018, by Filip Jorissen:
                          + First implementation. + See #907. +
                        • +
                        + ",info=" +

                        + This model tests whether + ConstantEffectiveness + works correctly at zero flow if one stream is zero. +

                        + "),experiment(Tolerance=1e-06, StopTime=1), + __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/MassExchangers/Validation/ConstantEffectivenessZeroFlow.mos" + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end ConstantEffectivenessZeroFlow; diff --git a/AixLib/Fluid/MassExchangers/Validation/ConstantEffectivenessZeroFlowBothStreams.mo b/AixLib/Fluid/MassExchangers/Validation/ConstantEffectivenessZeroFlowBothStreams.mo index a9ddeceaec..c89a4191a0 100644 --- a/AixLib/Fluid/MassExchangers/Validation/ConstantEffectivenessZeroFlowBothStreams.mo +++ b/AixLib/Fluid/MassExchangers/Validation/ConstantEffectivenessZeroFlowBothStreams.mo @@ -9,21 +9,21 @@ model ConstantEffectivenessZeroFlowBothStreams height=0, offset=101325)); annotation (Documentation(revisions=" -
                          -
                        • -May 7, 2018, by Michael Wetter:
                          -First implementation. -See #907. -
                        • -
                        -", info=" -

                        -This model tests whether -AixLib.Fluid.MassExchangers.ConstantEffectiveness -works correctly at zero flow if both streams are zero. -

                        -"), experiment(Tolerance=1e-06, StopTime=1), - __Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/MassExchangers/Validation/ConstantEffectivenessZeroFlowBothStreams.mos" - "Simulate and plot")); +
                          +
                        • + May 7, 2018, by Michael Wetter:
                          + First implementation. + See #907. +
                        • +
                        + ",info=" +

                        + This model tests whether + AixLib.Fluid.MassExchangers.ConstantEffectiveness + works correctly at zero flow if both streams are zero. +

                        + "),experiment(Tolerance=1e-06, StopTime=1), + __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/MassExchangers/Validation/ConstantEffectivenessZeroFlowBothStreams.mos" + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end ConstantEffectivenessZeroFlowBothStreams; diff --git a/AixLib/Fluid/MixingVolumes/BaseClasses/MixingVolumeHeatMoisturePort.mo b/AixLib/Fluid/MixingVolumes/BaseClasses/MixingVolumeHeatMoisturePort.mo index d12f765d94..de60c9ffaf 100644 --- a/AixLib/Fluid/MixingVolumes/BaseClasses/MixingVolumeHeatMoisturePort.mo +++ b/AixLib/Fluid/MixingVolumes/BaseClasses/MixingVolumeHeatMoisturePort.mo @@ -43,35 +43,42 @@ equation connect(heaFloSen.port_a, heatPort) annotation (Line(points={{-90,0},{-100,0}}, color={191,0,0})); annotation ( - defaultComonentName="vol", + defaultComponentName="vol", Documentation(info=" -

                        -Mixing volume with a heat port. -

                        -

                        -This model is identical to - -AixLib.Fluid.MixingVolumes.BaseClasses.PartialMixingVolume, -except that it has a heat and a moisture port. -

                        -

                        -Note that this model is typically only used to implement new component models that -have staggered volumes. -In contrast to - -AixLib.Fluid.MixingVolumes.MixingVolumeMoistAir, it does -not set initialize_p to final in order -for this model to be usable in staggered volumes which require one -pressure to be set to initialize_p = not Medium.singleState -and all others to false. -

                        -", revisions=" - -")); +

                        + Mixing volume with a heat port. +

                        +

                        + This model is identical to + + AixLib.Fluid.MixingVolumes.BaseClasses.PartialMixingVolume, + except that it has a heat and a moisture port. +

                        +

                        + Note that this model is typically only used to implement new component models that + have staggered volumes. + In contrast to + + AixLib.Fluid.MixingVolumes.MixingVolumeMoistAir, it does + not set initialize_p to final in order + for this model to be usable in staggered volumes which require one + pressure to be set to initialize_p = not Medium.singleState + and all others to false. +

                        + ",revisions=" +
                          +
                        • + November 9, 2021, by Michael Wetter:
                          + Corrected annotation.
                          + This is for + IBPSA, issue 1547. +
                        • +
                        • + October 23, 2017, by Michael Wetter:
                          + First implementation for + Buildings, issue 1013. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end MixingVolumeHeatMoisturePort; diff --git a/AixLib/Fluid/MixingVolumes/BaseClasses/MixingVolumeHeatPort.mo b/AixLib/Fluid/MixingVolumes/BaseClasses/MixingVolumeHeatPort.mo index 85aa83a0cb..3822613fb5 100644 --- a/AixLib/Fluid/MixingVolumes/BaseClasses/MixingVolumeHeatPort.mo +++ b/AixLib/Fluid/MixingVolumes/BaseClasses/MixingVolumeHeatPort.mo @@ -10,35 +10,42 @@ equation annotation (Line(points={{-90,0},{-100,0},{-100,0}}, color={191,0,0})); annotation ( - defaultComonentName="vol", + defaultComponentName="vol", Documentation(info=" -

                        -Mixing volume with a heat port. -

                        -

                        -This model is identical to - -AixLib.Fluid.MixingVolumes.BaseClasses.PartialMixingVolume, -except that it has a heat port. -

                        -

                        -Note that this model is typically only used to implement new component models that -have staggered volumes. -In contrast to - -AixLib.Fluid.MixingVolumes.MixingVolume, it does -not set initialize_p to final in order -for this model to be usable in staggered volumes which require one -pressure to be set to initialize_p = not Medium.singleState -and all others to false. -

                        -", revisions=" - -")); +

                        + Mixing volume with a heat port. +

                        +

                        + This model is identical to + + AixLib.Fluid.MixingVolumes.BaseClasses.PartialMixingVolume, + except that it has a heat port. +

                        +

                        + Note that this model is typically only used to implement new component models that + have staggered volumes. + In contrast to + + AixLib.Fluid.MixingVolumes.MixingVolume, it does + not set initialize_p to final in order + for this model to be usable in staggered volumes which require one + pressure to be set to initialize_p = not Medium.singleState + and all others to false. +

                        + ",revisions=" +
                          +
                        • + November 9, 2021, by Michael Wetter:
                          + Corrected annotation.
                          + This is for + IBPSA, issue 1547. +
                        • +
                        • + October 19, 2017, by Michael Wetter:
                          + First implementation for + Buildings, issue 1013. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end MixingVolumeHeatPort; diff --git a/AixLib/Fluid/MixingVolumes/BaseClasses/PartialMixingVolume.mo b/AixLib/Fluid/MixingVolumes/BaseClasses/PartialMixingVolume.mo index b6273649ba..18a1a133fd 100644 --- a/AixLib/Fluid/MixingVolumes/BaseClasses/PartialMixingVolume.mo +++ b/AixLib/Fluid/MixingVolumes/BaseClasses/PartialMixingVolume.mo @@ -17,19 +17,18 @@ model PartialMixingVolume constant Boolean simplify_mWat_flow = true "Set to true to cause port_a.m_flow + port_b.m_flow = 0 even if mWat_flow is non-zero"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal(min=0) - "Nominal mass flow rate" - annotation(Dialog(group = "Nominal condition")); + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal(min=0) + "Nominal mass flow rate" annotation (Dialog(group="Nominal condition")); // Port definitions parameter Integer nPorts=0 "Number of ports" annotation(Evaluate=true, Dialog(connectorSizing=true, tab="General",group="Ports")); - parameter Modelica.SIunits.MassFlowRate m_flow_small(min=0) = 1E-4*abs(m_flow_nominal) - "Small mass flow rate for regularization of zero flow" - annotation(Dialog(tab = "Advanced")); + parameter Modelica.Units.SI.MassFlowRate m_flow_small(min=0) = 1E-4*abs( + m_flow_nominal) "Small mass flow rate for regularization of zero flow" + annotation (Dialog(tab="Advanced")); parameter Boolean allowFlowReversal = true "= false to simplify equations, assuming, but not enforcing, no flow reversal. Used only if model has two ports." annotation(Dialog(tab="Assumptions"), Evaluate=true); - parameter Modelica.SIunits.Volume V "Volume"; + parameter Modelica.Units.SI.Volume V "Volume"; Modelica.Fluid.Vessels.BaseClasses.VesselFluidPorts_b ports[nPorts]( redeclare each package Medium = Medium) "Fluid inlets and outlets" annotation (Placement(transformation(extent={{-40,-10},{40,10}}, @@ -39,10 +38,10 @@ model PartialMixingVolume "Temperature of the fluid"; Modelica.Blocks.Interfaces.RealOutput U(unit="J") "Internal energy of the component"; - Modelica.SIunits.Pressure p = if nPorts > 0 then ports[1].p else p_start + Modelica.Units.SI.Pressure p=if nPorts > 0 then ports[1].p else p_start "Pressure of the fluid"; Modelica.Blocks.Interfaces.RealOutput m(unit="kg") "Mass of the component"; - Modelica.SIunits.MassFraction Xi[Medium.nXi] = XiOut_internal + Modelica.Units.SI.MassFraction Xi[Medium.nXi]=XiOut_internal "Species concentration of the fluid"; Modelica.Blocks.Interfaces.RealOutput mXi[Medium.nXi](each unit="kg") "Species mass of the component"; @@ -62,8 +61,8 @@ protected hOut(start=Medium.specificEnthalpy_pTX( p=p_start, T=T_start, - X=X_start))) if - useSteadyStateTwoPort "Model for steady-state balance if nPorts=2" + X=X_start))) + if useSteadyStateTwoPort "Model for steady-state balance if nPorts=2" annotation (Placement(transformation(extent={{20,0},{40,20}}))); AixLib.Fluid.Interfaces.ConservationEquation dynBal( final simplify_mWat_flow = simplify_mWat_flow, @@ -79,20 +78,20 @@ protected final initialize_p = initialize_p, m(start=V*rho_start), nPorts=nPorts, - final mSenFac=mSenFac) if - not useSteadyStateTwoPort "Model for dynamic energy balance" + final mSenFac=mSenFac) + if not useSteadyStateTwoPort "Model for dynamic energy balance" annotation (Placement(transformation(extent={{60,0},{80,20}}))); // Density at start values, used to compute initial values and start guesses - parameter Modelica.SIunits.Density rho_start=Medium.density( - state=state_start) "Density, used to compute start and guess values"; + parameter Modelica.Units.SI.Density rho_start=Medium.density(state= + state_start) "Density, used to compute start and guess values"; final parameter Medium.ThermodynamicState state_default = Medium.setState_pTX( T=Medium.T_default, p=Medium.p_default, X=Medium.X_default[1:Medium.nXi]) "Medium state at default values"; // Density at medium default values, used to compute the size of control volumes - final parameter Modelica.SIunits.Density rho_default=Medium.density( - state=state_default) "Density, used to compute fluid mass"; + final parameter Modelica.Units.SI.Density rho_default=Medium.density(state= + state_default) "Density, used to compute fluid mass"; final parameter Medium.ThermodynamicState state_start = Medium.setState_pTX( T=T_start, p=p_start, @@ -131,10 +130,10 @@ equation if not allowFlowReversal then assert(ports[1].m_flow > -m_flow_small, "In " + getInstanceName() + ": Model has flow reversal, - but the parameter allowFlowReversal is set to false. - m_flow_small = " + String(m_flow_small) + " - ports[1].m_flow = " + String(ports[1].m_flow) + " -"); + but the parameter allowFlowReversal is set to false. + m_flow_small = "+ String(m_flow_small) + " + ports[1].m_flow = "+ String(ports[1].m_flow) + " + "); end if; // Actual definition of port variables. // @@ -183,382 +182,382 @@ equation annotation ( defaultComponentName="vol", Documentation(info=" -

                        -This is a partial model of an instantaneously mixed volume. -It is used as the base class for all fluid volumes of the package - -AixLib.Fluid.MixingVolumes. -

                        - - -

                        Typical use and important parameters

                        -

                        -Set the constant sensibleOnly=true if the model that extends -or instantiates this model sets mWat_flow = 0. -

                        -

                        -Set the constant simplify_mWat_flow = true to simplify the equation -

                        -
                        -  port_a.m_flow + port_b.m_flow = - mWat_flow;
                        -
                        -

                        -to -

                        -
                        -  port_a.m_flow + port_b.m_flow = 0;
                        -
                        -

                        -This causes an error in the mass balance of about 0.5%, but generally leads to -simpler equations because the pressure drop equations are then decoupled from the -mass exchange in this component. -

                        - -

                        -To increase the numerical robustness of the model, the constant -prescribedHeatFlowRate can be set by the user. -This constant only has an effect if the model has exactly two fluid ports connected, -and if it is used as a steady-state model. -Use the following settings: -

                        -
                          -
                        • Set prescribedHeatFlowRate=true if the only means of heat transfer -at the heatPort is a prescribed heat flow rate that -is not a function of the temperature difference -between the medium and an ambient temperature. Examples include an ideal electrical heater, -a pump that rejects heat into the fluid stream, or a chiller that removes heat based on a performance curve. -If the heatPort is not connected, then set prescribedHeatFlowRate=true as -in this case, heatPort.Q_flow=0. -
                        • -
                        • Set prescribedHeatFlowRate=false if there is heat flow at the heatPort -computed as K * (T-heatPort.T), for some temperature T and some conductance K, -which may itself be a function of temperature or mass flow rate.
                          -If there is a combination of K * (T-heatPort.T) and a prescribed heat flow rate, -for example a solar collector that dissipates heat to the ambient and receives heat from -the solar radiation, then set prescribedHeatFlowRate=false. -
                        • -
                        -

                        -Set the parameter use_C_flow = true to enable an input connector -for the trace substance flow rate. -

                        -

                        Implementation

                        -

                        -If the model is (i) operated in steady-state, -(ii) has two fluid ports connected, and -(iii) prescribedHeatFlowRate=true or allowFlowReversal=false, -then the model uses - -AixLib.Fluid.Interfaces.StaticTwoPortConservationEquation -in order to use -the same energy and mass balance implementation as is used as in -steady-state component models. -In this situation, the functions inStream are used for the two -flow directions rather than the function -actualStream, which is less efficient. -However, the use of inStream has the disadvantage -that hOut has to be computed, in - -AixLib.Fluid.Interfaces.StaticTwoPortConservationEquation, -using -

                        -
                        -if allowFlowReversal then
                        -  hOut = AixLib.Utilities.Math.Functions.regStep(y1=port_b.h_outflow,
                        -                                                    y2=port_a.h_outflow,
                        -                                                    x=port_a.m_flow,
                        -                                                    x_small=m_flow_small/1E3);
                        -else
                        -  hOut = port_b.h_outflow;
                        -end if;
                        -
                        -

                        -Hence, for allowFlowReversal=true, if hOut -were to be used to compute the temperature that -drives heat transfer such as by conduction, -then the heat transfer would depend on upstream and the downstream -temperatures for small mass flow rates. -This can give wrong results. Consider for example a mass flow rate that is positive -but very close to zero. Suppose the upstream temperature is 20°C, -the downstream temperature is 10°C, and the heat port is -connected through a heat conductor to a boundary condition of 20°C. -Then, hOut = (port_b.h_outflow + port_a.h_outflow)/2 and hence -the temperature heatPort.T -is 15°C. Therefore, heat is added to the component. -As the mass flow rate is by assumption very small, the fluid that leaves the component -will have a very high temperature, violating the 2nd law. -To avoid this situation, if -prescribedHeatFlowRate=false, then the model - -AixLib.Fluid.Interfaces.ConservationEquation -is used instead of - -AixLib.Fluid.Interfaces.StaticTwoPortConservationEquation. -

                        -

                        -For simple models that uses this model, see - -AixLib.Fluid.MixingVolumes. -

                        -", revisions=" -
                          -
                        • -September 18, 2020, by Michael Wetter:
                          -Set start value for steBal.hOut so that T_start -can be used which is not known in that instance.
                          -See #1397. -
                        • -
                        • -February 21, 2020, by Michael Wetter:
                          -Changed icon to display its operating state.
                          -This is for -#1294. -
                        • -
                        • -October 30, 2019 by Filip Jorissen:
                          -Added getInstanceName() to flow -reversal check. -This if or -issue 1228. -
                        • -
                        • -October 19, 2017, by Michael Wetter:
                          -Changed initialization of pressure from a constant to a parameter.
                          -Removed partial keyword as this model is not partial.
                          -Moved C_flow and use_C_flow to child classes.
                          -This is for -Buildings, issue 1013. -
                        • -
                        • -April 11, 2017, by Michael Wetter:
                          -Moved heat port to the extending classes to provide better comment. -Otherwise, the mixing volume without water input would have a comment -that says latent heat can be added at this port.
                          -Removed blocks QSen_flow and -QLat_flow.
                          -This is for issue -Buildings #704. -
                        • -
                        • -February 19, 2016 by Filip Jorissen:
                          -Added outputs U, m, mXi, mC for being able to -check conservation of quantities. -This if or -issue 247. -
                        • -
                        • -January 22, 2016 by Michael Wetter:
                          -Updated model to use the new parameter use_mWat_flow -rather than sensibleOnly. -
                        • -
                        • -January 17, 2016, by Michael Wetter:
                          -Removed protected block masExc as -this revision introduces a conditional connector for the -moisture flow rate in the energy and mass balance models. -This change was done to use the same modeling concept for the -moisture input as is used for the trace substance input. -
                        • -
                        • -December 2, 2015, by Filip Jorissen:
                          -Added conditional input C_flow for -handling trace substance insertions. -
                        • -
                        • -July 17, 2015, by Michael Wetter:
                          -Added constant simplify_mWat_flow to remove dependencies of the pressure drop -calculation on the moisture balance. -
                        • -
                        • -July 1, 2015, by Filip Jorissen:
                          -Set prescribedHeatFlowRate=prescribedHeatflowRate for - -AixLib.Fluid.Interfaces.StaticTwoPortConservationEquation. -This results in equations that are solved more easily. -See - -issue 282 for a discussion. -
                        • -
                        • -June 9, 2015 by Michael Wetter:
                          -Set start value for heatPort.T and changed -type of T to Medium.Temperature rather than -Modelica.SIunits.Temperature -to avoid an -error because of conflicting start values if -AixLib.Fluid.Chillers.Carnot_y -is translated using pedantic mode in Dymola 2016. -This is for -#426. -
                        • -
                        • -June 5, 2015, by Michael Wetter:
                          -Moved assignment of dynBal.U.start -from instance dynBal to the actual model implementation. -This is required for a pedantic model check in Dymola 2016. -It addresses - -issue 266. -
                        • -
                        • -May 6, 2015, by Michael Wetter:
                          -Improved documentation and changed the test -
                          - final parameter Boolean useSteadyStateTwoPort=(nPorts == 2) and
                          - prescribedHeatFlowRate and ...
                          -
                          -to -
                          - final parameter Boolean useSteadyStateTwoPort=(nPorts == 2) and
                          - (prescribedHeatFlowRate or (not allowFlowReversal)) and ...
                          -
                          -The reason is that if there is no flow reversal, then - -AixLib.Fluid.Interfaces.StaticTwoPortConservationEquation -computes hOut = port_b.h_outflow;, and hence -it is correct to use hOut to compute -temperature-driven heat flow, such as by conduction or convection. -See also the model documentation.
                          -This is for issue - -#412. -
                        • -
                        • -February 5, 2015, by Michael Wetter:
                          -Changed initalize_p from a parameter to a -constant. This is only required in finite volume models -of heat exchangers (to avoid consistent but redundant initial conditions) -and hence it should be set as a constant. -
                        • -
                        • -October 29, 2014, by Michael Wetter:
                          -Made assignment of mFactor final, and changed computation of -density to use default medium states as are also used to compute the -specific heat capacity. -
                        • -
                        • -October 21, 2014, by Filip Jorissen:
                          -Added parameter mFactor to increase the thermal capacity. -
                        • -
                        • -July 3, 2014, by Michael Wetter:
                          -Added parameter initialize_p. This is required -to enable the coil models to initialize the pressure in the first -volume, but not in the downstream volumes. Otherwise, -the initial equations will be overdetermined, but consistent. -This change was done to avoid a long information message that appears -when translating models. -
                        • -
                        • -May 29, 2014, by Michael Wetter:
                          -Removed undesirable annotation Evaluate=true. -
                        • -
                        • -February 11, 2014 by Michael Wetter:
                          -Removed Q_flow and added QSen_flow. -This was done to clarify what is sensible and total heat flow rate -as part of the correction of issue -#197. -
                        • -
                        • -October 8, 2013 by Michael Wetter:
                          -Removed propagation of show_V_flow -to instance steBal as it has no longer this parameter. -
                        • -
                        • -September 13, 2013 by Michael Wetter:
                          -Renamed rho_nominal to rho_start -because this quantity is computed using start values and not -nominal values. -
                        • -
                        • -April 18, 2013 by Michael Wetter:
                          -Removed the check of multiple connections to the same element -of a fluid port, as this check required the use of the deprecated -cardinality function. -
                        • -
                        • -February 7, 2012 by Michael Wetter:
                          -Revised base classes for conservation equations in AixLib.Fluid.Interfaces. -
                        • -
                        • -September 17, 2011 by Michael Wetter:
                          -Removed instance medium as this is already used in dynBal. -Removing the base properties led to 30% faster computing time for a solar thermal system -that contains many fluid volumes. -
                        • -
                        • -September 13, 2011 by Michael Wetter:
                          -Changed in declaration of medium the parameter assignment -preferredMediumStates=true to -preferredMediumStates= not (energyDynamics == Modelica.Fluid.Types.Dynamics.SteadyState). -Otherwise, for a steady-state model, Dymola 2012 may differentiate the model to obtain T -as a state. See ticket Dynasim #13596. -
                        • -
                        • -July 26, 2011 by Michael Wetter:
                          -Revised model to use new declarations from - -AixLib.Fluid.Interfaces.LumpedVolumeDeclarations. -
                        • -
                        • -July 14, 2011 by Michael Wetter:
                          -Added start values for mass and internal energy of dynamic balance -model. -
                        • -
                        • -May 25, 2011 by Michael Wetter:
                          -
                            -
                          • -Changed implementation of balance equation. The new implementation uses a different model if -exactly two fluid ports are connected, and in addition, the model is used as a steady-state -component. For this model configuration, the same balance equations are used as were used -for steady-state component models, i.e., instead of actualStream(...), the -inStream(...) formulation is used. -This changed required the introduction of a new parameter m_flow_nominal which -is used for smoothing in the steady-state balance equations of the model with two fluid ports. -This implementation also simplifies the implementation of - -AixLib.Fluid.MixingVolumes.BaseClasses.PartialMixingVolumeWaterPort, -which now uses the same equations as this model. -
                          • -
                          • -Another revision was the removal of the parameter use_HeatTransfer as there is -no noticeable overhead in always having the heatPort connector present. -
                          • -
                          -
                        • -
                        • -July 30, 2010 by Michael Wetter:
                          -Added nominal value for mC to avoid wrong trajectory -when concentration is around 1E-7. -See also -https://trac.modelica.org/Modelica/ticket/393. -
                        • -
                        • -February 7, 2010 by Michael Wetter:
                          -Simplified model and its base classes by removing the port data -and the vessel area. -Eliminated the base class PartialLumpedVessel. -
                        • -
                        • -October 12, 2009 by Michael Wetter:
                          -Changed base class to - -AixLib.Fluid.MixingVolumes.BaseClasses.ClosedVolume. -
                        • -
                        -"), +

                        + This is a partial model of an instantaneously mixed volume. + It is used as the base class for all fluid volumes of the package + + AixLib.Fluid.MixingVolumes. +

                        + + +

                        Typical use and important parameters

                        +

                        + Set the constant sensibleOnly=true if the model that extends + or instantiates this model sets mWat_flow = 0. +

                        +

                        + Set the constant simplify_mWat_flow = true to simplify the equation +

                        +
                        +   port_a.m_flow + port_b.m_flow = - mWat_flow;
                        + 
                        +

                        + to +

                        +
                        +   port_a.m_flow + port_b.m_flow = 0;
                        + 
                        +

                        + This causes an error in the mass balance of about 0.5%, but generally leads to + simpler equations because the pressure drop equations are then decoupled from the + mass exchange in this component. +

                        + +

                        + To increase the numerical robustness of the model, the constant + prescribedHeatFlowRate can be set by the user. + This constant only has an effect if the model has exactly two fluid ports connected, + and if it is used as a steady-state model. + Use the following settings: +

                        +
                          +
                        • Set prescribedHeatFlowRate=true if the only means of heat transfer + at the heatPort is a prescribed heat flow rate that + is not a function of the temperature difference + between the medium and an ambient temperature. Examples include an ideal electrical heater, + a pump that rejects heat into the fluid stream, or a chiller that removes heat based on a performance curve. + If the heatPort is not connected, then set prescribedHeatFlowRate=true as + in this case, heatPort.Q_flow=0. +
                        • +
                        • Set prescribedHeatFlowRate=false if there is heat flow at the heatPort + computed as K * (T-heatPort.T), for some temperature T and some conductance K, + which may itself be a function of temperature or mass flow rate.
                          + If there is a combination of K * (T-heatPort.T) and a prescribed heat flow rate, + for example a solar collector that dissipates heat to the ambient and receives heat from + the solar radiation, then set prescribedHeatFlowRate=false. +
                        • +
                        +

                        + Set the parameter use_C_flow = true to enable an input connector + for the trace substance flow rate. +

                        +

                        Implementation

                        +

                        + If the model is (i) operated in steady-state, + (ii) has two fluid ports connected, and + (iii) prescribedHeatFlowRate=true or allowFlowReversal=false, + then the model uses + + AixLib.Fluid.Interfaces.StaticTwoPortConservationEquation + in order to use + the same energy and mass balance implementation as is used as in + steady-state component models. + In this situation, the functions inStream are used for the two + flow directions rather than the function + actualStream, which is less efficient. + However, the use of inStream has the disadvantage + that hOut has to be computed, in + + AixLib.Fluid.Interfaces.StaticTwoPortConservationEquation, + using +

                        +
                        + if allowFlowReversal then
                        +   hOut = AixLib.Utilities.Math.Functions.regStep(y1=port_b.h_outflow,
                        +                                                     y2=port_a.h_outflow,
                        +                                                     x=port_a.m_flow,
                        +                                                     x_small=m_flow_small/1E3);
                        + else
                        +   hOut = port_b.h_outflow;
                        + end if;
                        + 
                        +

                        + Hence, for allowFlowReversal=true, if hOut + were to be used to compute the temperature that + drives heat transfer such as by conduction, + then the heat transfer would depend on upstream and the downstream + temperatures for small mass flow rates. + This can give wrong results. Consider for example a mass flow rate that is positive + but very close to zero. Suppose the upstream temperature is 20°C, + the downstream temperature is 10°C, and the heat port is + connected through a heat conductor to a boundary condition of 20°C. + Then, hOut = (port_b.h_outflow + port_a.h_outflow)/2 and hence + the temperature heatPort.T + is 15°C. Therefore, heat is added to the component. + As the mass flow rate is by assumption very small, the fluid that leaves the component + will have a very high temperature, violating the 2nd law. + To avoid this situation, if + prescribedHeatFlowRate=false, then the model + + AixLib.Fluid.Interfaces.ConservationEquation + is used instead of + + AixLib.Fluid.Interfaces.StaticTwoPortConservationEquation. +

                        +

                        + For simple models that uses this model, see + + AixLib.Fluid.MixingVolumes. +

                        + ",revisions=" +
                          +
                        • + September 18, 2020, by Michael Wetter:
                          + Set start value for steBal.hOut so that T_start + can be used which is not known in that instance.
                          + See #1397. +
                        • +
                        • + February 21, 2020, by Michael Wetter:
                          + Changed icon to display its operating state.
                          + This is for + #1294. +
                        • +
                        • + October 30, 2019 by Filip Jorissen:
                          + Added getInstanceName() to flow + reversal check. + This if or + issue 1228. +
                        • +
                        • + October 19, 2017, by Michael Wetter:
                          + Changed initialization of pressure from a constant to a parameter.
                          + Removed partial keyword as this model is not partial.
                          + Moved C_flow and use_C_flow to child classes.
                          + This is for + Buildings, issue 1013. +
                        • +
                        • + April 11, 2017, by Michael Wetter:
                          + Moved heat port to the extending classes to provide better comment. + Otherwise, the mixing volume without water input would have a comment + that says latent heat can be added at this port.
                          + Removed blocks QSen_flow and + QLat_flow.
                          + This is for issue + Buildings #704. +
                        • +
                        • + February 19, 2016 by Filip Jorissen:
                          + Added outputs U, m, mXi, mC for being able to + check conservation of quantities. + This if or + issue 247. +
                        • +
                        • + January 22, 2016 by Michael Wetter:
                          + Updated model to use the new parameter use_mWat_flow + rather than sensibleOnly. +
                        • +
                        • + January 17, 2016, by Michael Wetter:
                          + Removed protected block masExc as + this revision introduces a conditional connector for the + moisture flow rate in the energy and mass balance models. + This change was done to use the same modeling concept for the + moisture input as is used for the trace substance input. +
                        • +
                        • + December 2, 2015, by Filip Jorissen:
                          + Added conditional input C_flow for + handling trace substance insertions. +
                        • +
                        • + July 17, 2015, by Michael Wetter:
                          + Added constant simplify_mWat_flow to remove dependencies of the pressure drop + calculation on the moisture balance. +
                        • +
                        • + July 1, 2015, by Filip Jorissen:
                          + Set prescribedHeatFlowRate=prescribedHeatflowRate for + + AixLib.Fluid.Interfaces.StaticTwoPortConservationEquation. + This results in equations that are solved more easily. + See + + issue 282 for a discussion. +
                        • +
                        • + June 9, 2015 by Michael Wetter:
                          + Set start value for heatPort.T and changed + type of T to Medium.Temperature rather than + Modelica.Units.SI.Temperature + to avoid an + error because of conflicting start values if + AixLib.Fluid.Chillers.Carnot_y + is translated using pedantic mode in Dymola 2016. + This is for + #426. +
                        • +
                        • + June 5, 2015, by Michael Wetter:
                          + Moved assignment of dynBal.U.start + from instance dynBal to the actual model implementation. + This is required for a pedantic model check in Dymola 2016. + It addresses + + issue 266. +
                        • +
                        • + May 6, 2015, by Michael Wetter:
                          + Improved documentation and changed the test +
                          +  final parameter Boolean useSteadyStateTwoPort=(nPorts == 2) and
                          +  prescribedHeatFlowRate and ...
                          + 
                          + to +
                          +  final parameter Boolean useSteadyStateTwoPort=(nPorts == 2) and
                          +  (prescribedHeatFlowRate or (not allowFlowReversal)) and ...
                          + 
                          + The reason is that if there is no flow reversal, then + + AixLib.Fluid.Interfaces.StaticTwoPortConservationEquation + computes hOut = port_b.h_outflow;, and hence + it is correct to use hOut to compute + temperature-driven heat flow, such as by conduction or convection. + See also the model documentation.
                          + This is for issue + + #412. +
                        • +
                        • + February 5, 2015, by Michael Wetter:
                          + Changed initalize_p from a parameter to a + constant. This is only required in finite volume models + of heat exchangers (to avoid consistent but redundant initial conditions) + and hence it should be set as a constant. +
                        • +
                        • + October 29, 2014, by Michael Wetter:
                          + Made assignment of mFactor final, and changed computation of + density to use default medium states as are also used to compute the + specific heat capacity. +
                        • +
                        • + October 21, 2014, by Filip Jorissen:
                          + Added parameter mFactor to increase the thermal capacity. +
                        • +
                        • + July 3, 2014, by Michael Wetter:
                          + Added parameter initialize_p. This is required + to enable the coil models to initialize the pressure in the first + volume, but not in the downstream volumes. Otherwise, + the initial equations will be overdetermined, but consistent. + This change was done to avoid a long information message that appears + when translating models. +
                        • +
                        • + May 29, 2014, by Michael Wetter:
                          + Removed undesirable annotation Evaluate=true. +
                        • +
                        • + February 11, 2014 by Michael Wetter:
                          + Removed Q_flow and added QSen_flow. + This was done to clarify what is sensible and total heat flow rate + as part of the correction of issue + #197. +
                        • +
                        • + October 8, 2013 by Michael Wetter:
                          + Removed propagation of show_V_flow + to instance steBal as it has no longer this parameter. +
                        • +
                        • + September 13, 2013 by Michael Wetter:
                          + Renamed rho_nominal to rho_start + because this quantity is computed using start values and not + nominal values. +
                        • +
                        • + April 18, 2013 by Michael Wetter:
                          + Removed the check of multiple connections to the same element + of a fluid port, as this check required the use of the deprecated + cardinality function. +
                        • +
                        • + February 7, 2012 by Michael Wetter:
                          + Revised base classes for conservation equations in AixLib.Fluid.Interfaces. +
                        • +
                        • + September 17, 2011 by Michael Wetter:
                          + Removed instance medium as this is already used in dynBal. + Removing the base properties led to 30% faster computing time for a solar thermal system + that contains many fluid volumes. +
                        • +
                        • + September 13, 2011 by Michael Wetter:
                          + Changed in declaration of medium the parameter assignment + preferredMediumStates=true to + preferredMediumStates= not (energyDynamics == Modelica.Fluid.Types.Dynamics.SteadyState). + Otherwise, for a steady-state model, Dymola 2012 may differentiate the model to obtain T + as a state. See ticket Dynasim #13596. +
                        • +
                        • + July 26, 2011 by Michael Wetter:
                          + Revised model to use new declarations from + + AixLib.Fluid.Interfaces.LumpedVolumeDeclarations. +
                        • +
                        • + July 14, 2011 by Michael Wetter:
                          + Added start values for mass and internal energy of dynamic balance + model. +
                        • +
                        • + May 25, 2011 by Michael Wetter:
                          +
                            +
                          • + Changed implementation of balance equation. The new implementation uses a different model if + exactly two fluid ports are connected, and in addition, the model is used as a steady-state + component. For this model configuration, the same balance equations are used as were used + for steady-state component models, i.e., instead of actualStream(...), the + inStream(...) formulation is used. + This changed required the introduction of a new parameter m_flow_nominal which + is used for smoothing in the steady-state balance equations of the model with two fluid ports. + This implementation also simplifies the implementation of + + AixLib.Fluid.MixingVolumes.BaseClasses.PartialMixingVolumeWaterPort, + which now uses the same equations as this model. +
                          • +
                          • + Another revision was the removal of the parameter use_HeatTransfer as there is + no noticeable overhead in always having the heatPort connector present. +
                          • +
                          +
                        • +
                        • + July 30, 2010 by Michael Wetter:
                          + Added nominal value for mC to avoid wrong trajectory + when concentration is around 1E-7. + See also + https://trac.modelica.org/Modelica/ticket/393. +
                        • +
                        • + February 7, 2010 by Michael Wetter:
                          + Simplified model and its base classes by removing the port data + and the vessel area. + Eliminated the base class PartialLumpedVessel. +
                        • +
                        • + October 12, 2009 by Michael Wetter:
                          + Changed base class to + + AixLib.Fluid.MixingVolumes.BaseClasses.ClosedVolume. +
                        • +
                        + "), Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100, 100}}), graphics={ Text( extent={{-60,-26},{56,-58}}, - lineColor={255,255,255}, + textColor={255,255,255}, textString="V=%V"), Text( extent={{-152,100},{148,140}}, textString="%name", - lineColor={0,0,255}), + textColor={0,0,255}), Ellipse( extent={{-100,98},{100,-102}}, lineColor={0,0,0}, @@ -566,6 +565,7 @@ AixLib.Fluid.MixingVolumes.BaseClasses.ClosedVolume. fillColor=DynamicSelect({170,213,255}, min(1, max(0, (1-(T-273.15)/50)))*{28,108,200}+min(1, max(0, (T-273.15)/50))*{255,0,0})), Text( extent={{62,28},{-58,-22}}, - lineColor={255,255,255}, - textString=DynamicSelect("", String(T-273.15, format=".1f")))})); + textColor={255,255,255}, + textString=DynamicSelect("", String(T-273.15, format=".1f")))}), + __Dymola_LockedEditing="Model from IBPSA"); end PartialMixingVolume; diff --git a/AixLib/Fluid/MixingVolumes/BaseClasses/Validation/MixingVolumeHeatMoisturePort.mo b/AixLib/Fluid/MixingVolumes/BaseClasses/Validation/MixingVolumeHeatMoisturePort.mo index 8e825d4076..8a6fb391b8 100644 --- a/AixLib/Fluid/MixingVolumes/BaseClasses/Validation/MixingVolumeHeatMoisturePort.mo +++ b/AixLib/Fluid/MixingVolumes/BaseClasses/Validation/MixingVolumeHeatMoisturePort.mo @@ -11,27 +11,28 @@ equation connect(const.y, vol.mWat_flow) annotation (Line(points={{-39,38},{-12,38}}, color={0,0,127})); annotation (Documentation(info=" -

                        -Model that validates that the initial conditions are uniquely set -and not overdetermined. -

                        -", revisions=" - -"), +

                        + Model that validates that the initial conditions are uniquely set + and not overdetermined. +

                        + ",revisions=" +
                          +
                        • + January 3, 2019 by Michael Wetter:
                          + Removed erroneous each.
                          + This is for + IBPSA, issue 1068. +
                        • +
                        • + October 23, 2017 by Michael Wetter:
                          + First implementation for + Buildings, issue 1013. +
                        • +
                        + "), experiment(Tolerance=1E-6, StopTime=1.0), __Dymola_Commands(file= "modelica://AixLib/Resources/Scripts/Dymola/Fluid/MixingVolumes/BaseClasses/Validation/MixingVolumeHeatMoisturePort.mos" - "Simulate and plot")); + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end MixingVolumeHeatMoisturePort; diff --git a/AixLib/Fluid/MixingVolumes/BaseClasses/Validation/MixingVolumeHeatPortAir.mo b/AixLib/Fluid/MixingVolumes/BaseClasses/Validation/MixingVolumeHeatPortAir.mo index 1331f022ea..d7081c10dc 100644 --- a/AixLib/Fluid/MixingVolumes/BaseClasses/Validation/MixingVolumeHeatPortAir.mo +++ b/AixLib/Fluid/MixingVolumes/BaseClasses/Validation/MixingVolumeHeatPortAir.mo @@ -5,21 +5,22 @@ model MixingVolumeHeatPortAir redeclare package Medium = AixLib.Media.Air); annotation (Documentation(info=" -

                        -Model that validates that the initial conditions are uniquely set -and not overdetermined for water. -

                        -", revisions=" - -"), +

                        + Model that validates that the initial conditions are uniquely set + and not overdetermined for water. +

                        + ",revisions=" + + "), experiment(Tolerance=1E-6, StopTime=1.0), __Dymola_Commands(file= "modelica://AixLib/Resources/Scripts/Dymola/Fluid/MixingVolumes/BaseClasses/Validation/MixingVolumeHeatPortAir.mos" - "Simulate and plot")); + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end MixingVolumeHeatPortAir; diff --git a/AixLib/Fluid/MixingVolumes/BaseClasses/Validation/MixingVolumeHeatPortWater.mo b/AixLib/Fluid/MixingVolumes/BaseClasses/Validation/MixingVolumeHeatPortWater.mo index 3d42224f67..5671e54f02 100644 --- a/AixLib/Fluid/MixingVolumes/BaseClasses/Validation/MixingVolumeHeatPortWater.mo +++ b/AixLib/Fluid/MixingVolumes/BaseClasses/Validation/MixingVolumeHeatPortWater.mo @@ -65,26 +65,27 @@ equation color={0,127,255})); annotation (Documentation(info=" -

                        -Model that validates that the initial conditions are uniquely set -and not overdetermined. -

                        -", revisions=" -
                          -
                        • -November 3, 2017 by Michael Wetter:
                          -Corrected medium for -issue 850. -
                        • -
                        • -October 23, 2017 by Michael Wetter:
                          -First implementation for -Buildings, issue 1013. -
                        • -
                        -"), +

                        + Model that validates that the initial conditions are uniquely set + and not overdetermined. +

                        + ",revisions=" +
                          +
                        • + November 3, 2017 by Michael Wetter:
                          + Corrected medium for + issue 850. +
                        • +
                        • + October 23, 2017 by Michael Wetter:
                          + First implementation for + Buildings, issue 1013. +
                        • +
                        + "), experiment(Tolerance=1E-6, StopTime=1.0), __Dymola_Commands(file= "modelica://AixLib/Resources/Scripts/Dymola/Fluid/MixingVolumes/BaseClasses/Validation/MixingVolumeHeatPortWater.mos" - "Simulate and plot")); + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end MixingVolumeHeatPortWater; diff --git a/AixLib/Fluid/MixingVolumes/Examples/HydraulicSeparator.mo b/AixLib/Fluid/MixingVolumes/Examples/HydraulicSeparator.mo index b4b8a9f375..a4dfde8963 100644 --- a/AixLib/Fluid/MixingVolumes/Examples/HydraulicSeparator.mo +++ b/AixLib/Fluid/MixingVolumes/Examples/HydraulicSeparator.mo @@ -72,7 +72,8 @@ model HydraulicSeparator extent={{-10,-10},{10,10}}, rotation=-90, origin={92,-26}))); - AixLib.Obsolete.Year2021.Fluid.Actuators.Valves.SimpleValve simpleValve(redeclare package Medium = Medium, m_flow_small=1e-4) annotation (Placement(transformation(extent={{70,-74},{50,-54}}))); + AixLib.Obsolete.Year2021.Fluid.Actuators.Valves.SimpleValve simpleValve(redeclare + package Medium = Medium, m_flow_small=1e-4) annotation (Placement(transformation(extent={{70,-74},{50,-54}}))); AixLib.Fluid.Sensors.MassFlowRate massFlowSensor1Sec(redeclare package Medium = Medium) annotation (Placement(transformation(extent={{2,-66},{-18,-46}}))); @@ -102,7 +103,8 @@ model HydraulicSeparator offset=0.2) annotation (Placement(transformation(extent={{48,-42},{68,-22}}))); AixLib.Fluid.Sensors.TemperatureTwoPort - temperatureMixedBottom(redeclare package Medium = + temperatureMixedBottom(redeclare + package Medium = Medium, m_flow_nominal=1) annotation (Placement(transformation(extent={{-8,-26},{-28,-6}}))); AixLib.Fluid.Sensors.TemperatureTwoPort diff --git a/AixLib/Fluid/MixingVolumes/Examples/MixingVolumeHeatConduction.mo b/AixLib/Fluid/MixingVolumes/Examples/MixingVolumeHeatConduction.mo index cd6f92e3a1..64f4f5d1e4 100644 --- a/AixLib/Fluid/MixingVolumes/Examples/MixingVolumeHeatConduction.mo +++ b/AixLib/Fluid/MixingVolumes/Examples/MixingVolumeHeatConduction.mo @@ -30,7 +30,6 @@ model MixingVolumeHeatConduction "Test model for heat transfer to volume" redeclare package Medium = Medium, m_flow_nominal=0.01, energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyState, - massDynamics=Modelica.Fluid.Types.Dynamics.SteadyState, allowFlowReversal=true, nPorts=2) annotation (Placement(transformation(extent={{30,20},{50,40}}))); Modelica.Blocks.Sources.Ramp ramp( @@ -65,19 +64,20 @@ equation color={0,127,255})); annotation (Documentation( info=" -

                        -This model demonstrates the use of the mixing volume with heat conduction to the ambient. -The mixing volume is configured as a steady-state model. -

                        -", revisions=" -
                          -
                        • -October 12, 2009 by Michael Wetter:
                          -First implementation. -
                        • -
                        -"), +

                        + This model demonstrates the use of the mixing volume with heat conduction to the ambient. + The mixing volume is configured as a steady-state model. +

                        + ",revisions=" +
                          +
                        • + October 12, 2009 by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), experiment(Tolerance=1E-6, StopTime=1.0), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/MixingVolumes/Examples/MixingVolumeHeatConduction.mos" - "Simulate and plot")); + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end MixingVolumeHeatConduction; diff --git a/AixLib/Fluid/MixingVolumes/Examples/MixingVolumeMoistAir.mo b/AixLib/Fluid/MixingVolumes/Examples/MixingVolumeMoistAir.mo index 82eecc7a17..319e2ab52a 100644 --- a/AixLib/Fluid/MixingVolumes/Examples/MixingVolumeMoistAir.mo +++ b/AixLib/Fluid/MixingVolumes/Examples/MixingVolumeMoistAir.mo @@ -4,7 +4,7 @@ model MixingVolumeMoistAir "Test model for mixing volume with moist air input" package Medium = AixLib.Media.Air; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal = 0.001 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=0.001 "Nominal mass flow rate"; AixLib.Fluid.MixingVolumes.MixingVolumeMoistAir vol1( @@ -164,39 +164,40 @@ experiment(StopTime=600, __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/MixingVolumes/Examples/MixingVolumeMoistAir.mos" "Simulate and plot"), Documentation(info=" -

                        -This model tests - -AixLib.Fluid.MixingVolumes.MixingVolumeMoistAir. -After an initial transient, the temperature and humidity of the volume -stabilizes. -

                        -", revisions=" -
                          -
                        • -January 11, 2019 by Michael Wetter:
                          -Removed each statement.
                          -This is for -#1079. -
                        • -
                        • -April 11, 2017, by Michael Wetter:
                          -Renamed variable used in result processing.
                          -This is for issue -Buildings #704. -
                        • -
                        • -February 11, 2014 by Michael Wetter:
                          -Changed -HWat_flow(y=vol1.HWat_flow) to -QLat_flow(y=vol1.QLat_flow.y) -and -QWat to QLat. -
                        • -
                        • -October 12, 2009 by Michael Wetter:
                          -First implementation. -
                        • -
                        -")); +

                        + This model tests + + AixLib.Fluid.MixingVolumes.MixingVolumeMoistAir. + After an initial transient, the temperature and humidity of the volume + stabilizes. +

                        + ",revisions=" +
                          +
                        • + January 11, 2019 by Michael Wetter:
                          + Removed each statement.
                          + This is for + #1079. +
                        • +
                        • + April 11, 2017, by Michael Wetter:
                          + Renamed variable used in result processing.
                          + This is for issue + Buildings #704. +
                        • +
                        • + February 11, 2014 by Michael Wetter:
                          + Changed + HWat_flow(y=vol1.HWat_flow) to + QLat_flow(y=vol1.QLat_flow.y) + and + QWat to QLat. +
                        • +
                        • + October 12, 2009 by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end MixingVolumeMoistAir; diff --git a/AixLib/Fluid/MixingVolumes/Examples/MixingVolumePrescribedHeatFlowRate.mo b/AixLib/Fluid/MixingVolumes/Examples/MixingVolumePrescribedHeatFlowRate.mo index 1acce5ec88..d90e3086c0 100644 --- a/AixLib/Fluid/MixingVolumes/Examples/MixingVolumePrescribedHeatFlowRate.mo +++ b/AixLib/Fluid/MixingVolumes/Examples/MixingVolumePrescribedHeatFlowRate.mo @@ -26,7 +26,6 @@ model MixingVolumePrescribedHeatFlowRate redeclare package Medium = Medium, m_flow_nominal=0.01, energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyState, - massDynamics=Modelica.Fluid.Types.Dynamics.SteadyState, allowFlowReversal=true, prescribedHeatFlowRate=true) annotation (Placement(transformation(extent={{30,20},{50,40}}))); @@ -67,23 +66,24 @@ equation color={191,0,0})); annotation (Documentation( info=" -

                        -This model demonstrates the use of the mixing volume with a prescribed heat flow rate. -The mixing volume is configured as a steady-state model. -The heat flow rate is set to a very small value. This model is used to test -convergence for the case the prescribed heat flow rate should be zero, -but due to numerical solutions, it may have a small error that causes the signal to be -non-zero. -

                        -", revisions=" -
                          -
                        • -October 12, 2009 by Michael Wetter:
                          -First implementation. -
                        • -
                        -"), +

                        + This model demonstrates the use of the mixing volume with a prescribed heat flow rate. + The mixing volume is configured as a steady-state model. + The heat flow rate is set to a very small value. This model is used to test + convergence for the case the prescribed heat flow rate should be zero, + but due to numerical solutions, it may have a small error that causes the signal to be + non-zero. +

                        + ",revisions=" +
                          +
                        • + October 12, 2009 by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), experiment(Tolerance=1E-6, StopTime=1.0), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/MixingVolumes/Examples/MixingVolumePrescribedHeatFlowRate.mos" - "Simulate and plot")); + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end MixingVolumePrescribedHeatFlowRate; diff --git a/AixLib/Fluid/MixingVolumes/HydraulicSeparator.mo b/AixLib/Fluid/MixingVolumes/HydraulicSeparator.mo index e67b678bf7..c1895561b1 100644 --- a/AixLib/Fluid/MixingVolumes/HydraulicSeparator.mo +++ b/AixLib/Fluid/MixingVolumes/HydraulicSeparator.mo @@ -6,30 +6,29 @@ model HydraulicSeparator annotation (choicesAllMatching = true); parameter Boolean allowFlowReversal=true; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal - "Nominal mass flow rate" - annotation(Dialog(group = "Nominal condition")); + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal + "Nominal mass flow rate" annotation (Dialog(group="Nominal condition")); /////////////////////////////////////////////////////////////////////////// //Geometric parameters // /////////////////////////////////////////////////////////////////////////// - parameter Modelica.SIunits.VolumeFlowRate pumpMaxVolumeFlow + parameter Modelica.Units.SI.VolumeFlowRate pumpMaxVolumeFlow "Maximum VolumeFlowRate of either primary or secondary Pump"; - parameter Modelica.SIunits.Velocity vmaxExchange=0.2 + parameter Modelica.Units.SI.Velocity vmaxExchange=0.2 "Maximum velocity of the exchange-flow between top and bottom of the Hydraulic Separator"; - parameter Modelica.SIunits.Diameter DFlange "Diameter of the flanges"; - parameter Modelica.SIunits.Diameter D = sqrt(pumpMaxVolumeFlow*4/(Modelica.Constants.pi*vmaxExchange)) + parameter Modelica.Units.SI.Diameter DFlange "Diameter of the flanges"; + parameter Modelica.Units.SI.Diameter D=sqrt(pumpMaxVolumeFlow*4/(Modelica.Constants.pi + *vmaxExchange)) "Diameter of the main-body (Calculated by the model to not exceed vmaxExchang)"; /////////////////////////////////////////////////////////////////////////// //Initialization of temperatures // /////////////////////////////////////////////////////////////////////////// - parameter Modelica.SIunits.Temperature T_top = 293.15 - "Initial temperature in the top" - annotation (Dialog(tab = "Initialization")); - parameter Modelica.SIunits.Temperature T_bottom = 293.15 + parameter Modelica.Units.SI.Temperature T_top=293.15 + "Initial temperature in the top" annotation (Dialog(tab="Initialization")); + parameter Modelica.Units.SI.Temperature T_bottom=293.15 "Initial temperature in the bottom" - annotation (Dialog(tab = "Initialization")); + annotation (Dialog(tab="Initialization")); /////////////////////////////////////////////////////////////////////////// //Measurement of water exchanged between primary and secondary circuit // diff --git a/AixLib/Fluid/MixingVolumes/MixingVolume.mo b/AixLib/Fluid/MixingVolumes/MixingVolume.mo index 49535dd730..5f9e4429f5 100644 --- a/AixLib/Fluid/MixingVolumes/MixingVolume.mo +++ b/AixLib/Fluid/MixingVolumes/MixingVolume.mo @@ -28,227 +28,228 @@ equation annotation ( defaultComponentName="vol", Documentation(info=" -

                        -This model represents an instantaneously mixed volume. -Potential and kinetic energy at the port are neglected, -and there is no pressure drop at the ports. -The volume can exchange heat through its heatPort. -

                        -

                        -The volume can be parameterized as a steady-state model or as -dynamic model.

                        -

                        -To increase the numerical robustness of the model, the constant -prescribedHeatFlowRate can be set by the user. -This constant only has an effect if the model has exactly two fluid ports connected, -and if it is used as a steady-state model. -Use the following settings: -

                        -
                          -
                        • Set prescribedHeatFlowRate=true if the only means of heat transfer -at the heatPort is a prescribed heat flow rate that -is not a function of the temperature difference -between the medium and an ambient temperature. Examples include an ideal electrical heater, -a pump that rejects heat into the fluid stream, or a chiller that removes heat based on a performance curve. -If the heatPort is not connected, then set prescribedHeatFlowRate=true as -in this case, heatPort.Q_flow=0. -
                        • -
                        • Set prescribedHeatFlowRate=false if there is heat flow at the heatPort -computed as K * (T-heatPort.T), for some temperature T and some conductance K, -which may itself be a function of temperature or mass flow rate.
                          -If there is a combination of K * (T-heatPort.T) and a prescribed heat flow rate, -for example a solar collector that dissipates heat to the ambient and receives heat from -the solar radiation, then set prescribedHeatFlowRate=false. -
                        • -
                        -

                        Options

                        -

                        -The parameter mSenFac can be used to increase the thermal mass of this model -without increasing its volume. This way, species concentrations are still calculated -correctly even though the thermal mass increases. The additional thermal mass is calculated -based on the density and the value of the function HeatCapacityCp -of the medium state state_default.
                        -This parameter can for instance be useful in a pipe model when the developer wants to -lump the pipe thermal mass to the fluid volume. By default mSenFac = 1, hence -the mass is unchanged. For higher values of mSenFac, the mass will be scaled proportionally. -

                        -

                        -Set the parameter use_C_flow = true to enable an input connector for the trace substance flow rate. -This allows to directly add or subtract trace substances such as -CO2 to the volume. -See -AixLib.Fluid.Sensors.Examples.PPM -for an example. -

                        -

                        Implementation

                        -

                        -If the model is operated in steady-state and has two fluid ports connected, -then the same energy and mass balance implementation is used as in -steady-state component models, i.e., the use of actualStream -is not used for the properties at the port. -

                        -

                        -The implementation of these balance equations is done in the instances -dynBal for the dynamic balance and steBal -for the steady-state balance. Both models use the same input variables: -

                        -
                          -
                        • -The variable Q_flow is used to add sensible and latent heat to the fluid. -For example, Q_flow participates in the steady-state energy balance
                          -    port_b.h_outflow = inStream(port_a.h_outflow) + Q_flow * m_flowInv;
                          -
                          -where m_flowInv approximates the expression 1/m_flow. -
                        • -
                        • -The variable mXi_flow is used to add a species mass flow rate to the fluid. -
                        • -
                        -

                        -For the rationale of selecting different energy and mass balances, and for the -use of prescribedHeatFlowRate, see the documentation of - -AixLib.Fluid.MixingVolumes.BaseClasses.PartialMixingVolume. -

                        -

                        -For simple models that uses this model, see - -AixLib.Fluid.HeatExchangers.HeaterCooler_u and - -AixLib.Fluid.Humidifiers.Humidifier_u. -

                        - -", revisions=" -
                          -
                        • -October 19, 2017, by Michael Wetter:
                          -Set initialize_p to final so that it does not -appear as a user-selectable parameter. This is done because -initialize_p has been changed from a constant -to a parameter for -Buildings, issue 1013. -
                        • -
                        • -April 11, 2017, by Michael Wetter:
                          -Changed comment of heat port, as this needs to be the total heat flow -rate in order to be able to use this model for modeling steam humidifiers -and adiabatic humidifiers.
                          -Removed blocks QSen_flow and -QLat_flow.
                          -This is for issue -Buildings #704. -
                        • -
                        • -April 11, 2016 by Michael Wetter:
                          -Corrected wrong hyperlink in documentation for -issue 450. -
                        • -
                        • -January 19, 2016, by Michael Wetter:
                          -Updated documentation due to the addition of an input for trace substance -in the mixing volume. -This is for - -issue 372. -
                        • -
                        • -January 17, 2016, by Michael Wetter:
                          -Removed protected block masExc as -this revision introduces a conditional connector for the -moisture flow rate in the energy and mass balance models. -This change was done to use the same modeling concept for the -moisture input as is used for the trace substance input. -
                        • -
                        • -December 2, 2015, by Filip Jorissen:
                          -Changed code for handling trace substance insertions using input C_flow. -
                        • -
                        • -May 1, 2015 by Michael Wetter
                          -Set final keyword for masExc(final k=0). -This addresses - -issue 230. -
                        • -
                        • -February 11, 2014 by Michael Wetter:
                          -Redesigned implementation of latent and sensible heat flow rates -as port of the correction of issue -#197. -
                        • -
                        • -February 7, 2012 by Michael Wetter:
                          -Revised base classes for conservation equations in AixLib.Fluid.Interfaces. -
                        • -
                        • -September 17, 2011 by Michael Wetter:
                          -Removed instance medium as this is already used in dynBal. -Removing the base properties led to 30% faster computing time for a solar thermal system -that contains many fluid volumes. -
                        • -
                        • -September 13, 2011 by Michael Wetter:
                          -Changed in declaration of medium the parameter assignment -preferredMediumStates=true to -preferredMediumStates= not (energyDynamics == Modelica.Fluid.Types.Dynamics.SteadyState). -Otherwise, for a steady-state model, Dymola 2012 may differentiate the model to obtain T -as a state. See ticket Dynasim #13596. -
                        • -
                        • -July 26, 2011 by Michael Wetter:
                          -Revised model to use new declarations from - -AixLib.Fluid.Interfaces.LumpedVolumeDeclarations. -
                        • -
                        • -July 14, 2011 by Michael Wetter:
                          -Added start values for mass and internal energy of dynamic balance -model. -
                        • -
                        • -May 25, 2011 by Michael Wetter:
                          -
                            -
                          • -Changed implementation of balance equation. The new implementation uses a different model if -exactly two fluid ports are connected, and in addition, the model is used as a steady-state -component. For this model configuration, the same balance equations are used as were used -for steady-state component models, i.e., instead of actualStream(...), the -inStream(...) formulation is used. -This changed required the introduction of a new parameter m_flow_nominal which -is used for smoothing in the steady-state balance equations of the model with two fluid ports. -
                          • -
                          • -Another revision was the removal of the parameter use_HeatTransfer as there is -no noticeable overhead in always having the heatPort connector present. -
                          • -
                          -
                        • -
                        • -July 30, 2010 by Michael Wetter:
                          -Added nominal value for mC to avoid wrong trajectory -when concentration is around 1E-7. -See also -https://trac.modelica.org/Modelica/ticket/393. -
                        • -
                        • -February 7, 2010 by Michael Wetter:
                          -Simplified model and its base classes by removing the port data -and the vessel area. -Eliminated the base class PartialLumpedVessel. -
                        • -
                        • -October 12, 2009 by Michael Wetter:
                          -Changed base class to - -AixLib.Fluid.MixingVolumes.BaseClasses.ClosedVolume. -
                        • -
                        -"), +

                        + This model represents an instantaneously mixed volume. + Potential and kinetic energy at the port are neglected, + and there is no pressure drop at the ports. + The volume can exchange heat through its heatPort. +

                        +

                        + The volume can be parameterized as a steady-state model or as + dynamic model.

                        +

                        + To increase the numerical robustness of the model, the constant + prescribedHeatFlowRate can be set by the user. + This constant only has an effect if the model has exactly two fluid ports connected, + and if it is used as a steady-state model. + Use the following settings: +

                        +
                          +
                        • Set prescribedHeatFlowRate=true if the only means of heat transfer + at the heatPort is a prescribed heat flow rate that + is not a function of the temperature difference + between the medium and an ambient temperature. Examples include an ideal electrical heater, + a pump that rejects heat into the fluid stream, or a chiller that removes heat based on a performance curve. + If the heatPort is not connected, then set prescribedHeatFlowRate=true as + in this case, heatPort.Q_flow=0. +
                        • +
                        • Set prescribedHeatFlowRate=false if there is heat flow at the heatPort + computed as K * (T-heatPort.T), for some temperature T and some conductance K, + which may itself be a function of temperature or mass flow rate.
                          + If there is a combination of K * (T-heatPort.T) and a prescribed heat flow rate, + for example a solar collector that dissipates heat to the ambient and receives heat from + the solar radiation, then set prescribedHeatFlowRate=false. +
                        • +
                        +

                        Options

                        +

                        + The parameter mSenFac can be used to increase the thermal mass of this model + without increasing its volume. This way, species concentrations are still calculated + correctly even though the thermal mass increases. The additional thermal mass is calculated + based on the density and the value of the function HeatCapacityCp + of the medium state state_default.
                        + This parameter can for instance be useful in a pipe model when the developer wants to + lump the pipe thermal mass to the fluid volume. By default mSenFac = 1, hence + the mass is unchanged. For higher values of mSenFac, the mass will be scaled proportionally. +

                        +

                        + Set the parameter use_C_flow = true to enable an input connector for the trace substance flow rate. + This allows to directly add or subtract trace substances such as + CO2 to the volume. + See + AixLib.Fluid.Sensors.Examples.PPM + for an example. +

                        +

                        Implementation

                        +

                        + If the model is operated in steady-state and has two fluid ports connected, + then the same energy and mass balance implementation is used as in + steady-state component models, i.e., the use of actualStream + is not used for the properties at the port. +

                        +

                        + The implementation of these balance equations is done in the instances + dynBal for the dynamic balance and steBal + for the steady-state balance. Both models use the same input variables: +

                        +
                          +
                        • + The variable Q_flow is used to add sensible and latent heat to the fluid. + For example, Q_flow participates in the steady-state energy balance
                          +     port_b.h_outflow = inStream(port_a.h_outflow) + Q_flow * m_flowInv;
                          + 
                          + where m_flowInv approximates the expression 1/m_flow. +
                        • +
                        • + The variable mXi_flow is used to add a species mass flow rate to the fluid. +
                        • +
                        +

                        + For the rationale of selecting different energy and mass balances, and for the + use of prescribedHeatFlowRate, see the documentation of + + AixLib.Fluid.MixingVolumes.BaseClasses.PartialMixingVolume. +

                        +

                        + For simple models that uses this model, see + + AixLib.Fluid.HeatExchangers.HeaterCooler_u and + + AixLib.Fluid.Humidifiers.Humidifier_u. +

                        + + ",revisions=" +
                          +
                        • + October 19, 2017, by Michael Wetter:
                          + Set initialize_p to final so that it does not + appear as a user-selectable parameter. This is done because + initialize_p has been changed from a constant + to a parameter for + Buildings, issue 1013. +
                        • +
                        • + April 11, 2017, by Michael Wetter:
                          + Changed comment of heat port, as this needs to be the total heat flow + rate in order to be able to use this model for modeling steam humidifiers + and adiabatic humidifiers.
                          + Removed blocks QSen_flow and + QLat_flow.
                          + This is for issue + Buildings #704. +
                        • +
                        • + April 11, 2016 by Michael Wetter:
                          + Corrected wrong hyperlink in documentation for + issue 450. +
                        • +
                        • + January 19, 2016, by Michael Wetter:
                          + Updated documentation due to the addition of an input for trace substance + in the mixing volume. + This is for + + issue 372. +
                        • +
                        • + January 17, 2016, by Michael Wetter:
                          + Removed protected block masExc as + this revision introduces a conditional connector for the + moisture flow rate in the energy and mass balance models. + This change was done to use the same modeling concept for the + moisture input as is used for the trace substance input. +
                        • +
                        • + December 2, 2015, by Filip Jorissen:
                          + Changed code for handling trace substance insertions using input C_flow. +
                        • +
                        • + May 1, 2015 by Michael Wetter
                          + Set final keyword for masExc(final k=0). + This addresses + + issue 230. +
                        • +
                        • + February 11, 2014 by Michael Wetter:
                          + Redesigned implementation of latent and sensible heat flow rates + as port of the correction of issue + #197. +
                        • +
                        • + February 7, 2012 by Michael Wetter:
                          + Revised base classes for conservation equations in AixLib.Fluid.Interfaces. +
                        • +
                        • + September 17, 2011 by Michael Wetter:
                          + Removed instance medium as this is already used in dynBal. + Removing the base properties led to 30% faster computing time for a solar thermal system + that contains many fluid volumes. +
                        • +
                        • + September 13, 2011 by Michael Wetter:
                          + Changed in declaration of medium the parameter assignment + preferredMediumStates=true to + preferredMediumStates= not (energyDynamics == Modelica.Fluid.Types.Dynamics.SteadyState). + Otherwise, for a steady-state model, Dymola 2012 may differentiate the model to obtain T + as a state. See ticket Dynasim #13596. +
                        • +
                        • + July 26, 2011 by Michael Wetter:
                          + Revised model to use new declarations from + + AixLib.Fluid.Interfaces.LumpedVolumeDeclarations. +
                        • +
                        • + July 14, 2011 by Michael Wetter:
                          + Added start values for mass and internal energy of dynamic balance + model. +
                        • +
                        • + May 25, 2011 by Michael Wetter:
                          +
                            +
                          • + Changed implementation of balance equation. The new implementation uses a different model if + exactly two fluid ports are connected, and in addition, the model is used as a steady-state + component. For this model configuration, the same balance equations are used as were used + for steady-state component models, i.e., instead of actualStream(...), the + inStream(...) formulation is used. + This changed required the introduction of a new parameter m_flow_nominal which + is used for smoothing in the steady-state balance equations of the model with two fluid ports. +
                          • +
                          • + Another revision was the removal of the parameter use_HeatTransfer as there is + no noticeable overhead in always having the heatPort connector present. +
                          • +
                          +
                        • +
                        • + July 30, 2010 by Michael Wetter:
                          + Added nominal value for mC to avoid wrong trajectory + when concentration is around 1E-7. + See also + https://trac.modelica.org/Modelica/ticket/393. +
                        • +
                        • + February 7, 2010 by Michael Wetter:
                          + Simplified model and its base classes by removing the port data + and the vessel area. + Eliminated the base class PartialLumpedVessel. +
                        • +
                        • + October 12, 2009 by Michael Wetter:
                          + Changed base class to + + AixLib.Fluid.MixingVolumes.BaseClasses.ClosedVolume. +
                        • +
                        + "), Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100, 100}}), graphics={ Text( extent={{-152,100},{148,140}}, textString="%name", - lineColor={0,0,255})})); + textColor={0,0,255})}), + __Dymola_LockedEditing="Model from IBPSA"); end MixingVolume; diff --git a/AixLib/Fluid/MixingVolumes/MixingVolumeMoistAir.mo b/AixLib/Fluid/MixingVolumes/MixingVolumeMoistAir.mo index 19760674c7..2fcab17643 100644 --- a/AixLib/Fluid/MixingVolumes/MixingVolumeMoistAir.mo +++ b/AixLib/Fluid/MixingVolumes/MixingVolumeMoistAir.mo @@ -59,157 +59,158 @@ equation 52,-60},{52,6},{58,6}}, color={0,0,127})); annotation (defaultComponentName="vol", Documentation(info=" -

                        -Model for an ideally mixed fluid volume and the ability -to store mass and energy. The volume is fixed, -and latent and sensible heat can be exchanged. -

                        -

                        -This model represents the same physics as - -AixLib.Fluid.MixingVolumes.MixingVolume, but in addition, it allows -adding or subtracting water to the control volume. -The mass flow rate of the added or subtracted water is -specified at the port mWat_flow. -Adding mWat_flow itself does not affect the energy balance -in this model. Hence, the enthalpy that is added or removed with the -flow of mWat_flow needs to be added to the heat port -heatPort. -

                        -

                        -To increase the numerical robustness of the model, the constant -prescribedHeatFlowRate can be set by the user. -This constant only has an effect if the model has exactly two fluid ports connected, -and if it is used as a steady-state model. -Use the following settings: -

                        -
                          -
                        • Set prescribedHeatFlowRate=true if the only means of heat transfer -at the heatPort is a prescribed heat flow rate that -is not a function of the temperature difference -between the medium and an ambient temperature. Examples include an ideal electrical heater, -a pump that rejects heat into the fluid stream, or a chiller that removes heat based on a performance curve. -If the heatPort is not connected, then set prescribedHeatFlowRate=true as -in this case, heatPort.Q_flow=0. -
                        • -
                        • Set prescribedHeatFlowRate=false if there is heat flow at the heatPort -computed as K * (T-heatPort.T), for some temperature T and some conductance K, -which may itself be a function of temperature or mass flow rate.
                          -If there is a combination of K * (T-heatPort.T) and a prescribed heat flow rate, -for example a solar collector that dissipates heat to the ambient and receives heat from -the solar radiation, then set prescribedHeatFlowRate=false. -
                        • -
                        -

                        Options

                        -

                        -The parameter mSenFac can be used to increase the thermal mass of this model -without increasing its volume. This way, species concentrations are still calculated -correctly even though the thermal mass increases. The additional thermal mass is calculated -based on the density and the value of the function HeatCapacityCp -of the medium state state_default.
                        -This parameter can for instance be useful in a pipe model when the developer wants to -lump the pipe thermal mass to the fluid volume. By default mSenFac = 1, hence -the mass is unchanged. For higher values of mSenFac, the mass will be scaled proportionally. -

                        -

                        -Set the parameter use_C_flow = true to enable an input connector for the trace substance flow rate. -This allows to directly add or subtract trace substances such as -CO2 to the volume. -See -AixLib.Fluid.Sensors.Examples.PPM -for an example. -

                        -", revisions=" -
                          -
                        • -October 19, 2017, by Michael Wetter:
                          -Set initialize_p to final so that it does not -appear as a user-selectable parameter. This is done because -initialize_p has been changed from a constant -to a parameter for -Buildings, issue 1013. -
                        • -
                        • -April 11, 2017, by Michael Wetter:
                          -Changed comment of heat port, as this needs to be the total heat flow -rate in order to be able to use this model for modeling steam humidifiers -and adiabatic humidifiers.
                          -Removed blocks QSen_flow and -QLat_flow.
                          -This is for issue -Buildings #704. -
                        • -
                        • -January 22, 2016 by Michael Wetter:
                          -Removed assignment of sensibleOnly in steBal -as this constant is no longer used. -
                        • -
                        • -January 19, 2016, by Michael Wetter:
                          -Updated documentation due to the addition of an input for trace substance -in the mixing volume. -This is for - -issue 372. -
                        • -
                        • -February 11, 2014 by Michael Wetter:
                          -Redesigned implementation of latent and sensible heat flow rates -as port of the correction of issue -#197. -
                        • -
                        • -December 18, 2013 by Michael Wetter:
                          -Changed computation of s to allow this model to also be used -with AixLib.Media.Water. -
                        • -
                        • -October 21, 2013 by Michael Wetter:
                          -Removed dublicate declaration of medium model. -
                        • -
                        • -September 27, 2013 by Michael Wetter:
                          -Reformulated assignment of i_w to avoid a warning in OpenModelica. -
                        • -
                        • -September 17, 2013 by Michael Wetter:
                          -Changed model to no longer use the obsolete model AixLib.Fluid.MixingVolumes.BaseClasses.PartialMixingVolumeWaterPort. -
                        • -
                        • -July 30, 2013 by Michael Wetter:
                          -Changed connector mXi_flow[Medium.nXi] -to a scalar input connector mWat_flow -in the conservation equation model. -The reason is that mXi_flow does not allow -to compute the other components in mX_flow and -therefore leads to an ambiguous use of the model. -By only requesting mWat_flow, the mass balance -and species balance can be implemented correctly. -
                        • -
                        • -April 18, 2013 by Michael Wetter:
                          -Removed the use of the deprecated -cardinality function. -Therefore, all input signals must be connected. -
                        • -
                        • -February 7, 2012 by Michael Wetter:
                          -Revised base classes for conservation equations in AixLib.Fluid.Interfaces. -
                        • -
                        • -February 22, by Michael Wetter:
                          -Improved the code that searches for the index of 'water' in the medium model. -
                        • -
                        • -May 29, 2010 by Michael Wetter:
                          -Rewrote computation of index of water substance. -For the old formulation, Dymola 7.4 failed to differentiate the -model when trying to reduce the index of the DAE. -
                        • -
                        • -August 7, 2008 by Michael Wetter:
                          -First implementation. -
                        • -
                        -")); +

                        + Model for an ideally mixed fluid volume and the ability + to store mass and energy. The volume is fixed, + and latent and sensible heat can be exchanged. +

                        +

                        + This model represents the same physics as + + AixLib.Fluid.MixingVolumes.MixingVolume, but in addition, it allows + adding or subtracting water to the control volume. + The mass flow rate of the added or subtracted water is + specified at the port mWat_flow. + Adding mWat_flow itself does not affect the energy balance + in this model. Hence, the enthalpy that is added or removed with the + flow of mWat_flow needs to be added to the heat port + heatPort. +

                        +

                        + To increase the numerical robustness of the model, the constant + prescribedHeatFlowRate can be set by the user. + This constant only has an effect if the model has exactly two fluid ports connected, + and if it is used as a steady-state model. + Use the following settings: +

                        +
                          +
                        • Set prescribedHeatFlowRate=true if the only means of heat transfer + at the heatPort is a prescribed heat flow rate that + is not a function of the temperature difference + between the medium and an ambient temperature. Examples include an ideal electrical heater, + a pump that rejects heat into the fluid stream, or a chiller that removes heat based on a performance curve. + If the heatPort is not connected, then set prescribedHeatFlowRate=true as + in this case, heatPort.Q_flow=0. +
                        • +
                        • Set prescribedHeatFlowRate=false if there is heat flow at the heatPort + computed as K * (T-heatPort.T), for some temperature T and some conductance K, + which may itself be a function of temperature or mass flow rate.
                          + If there is a combination of K * (T-heatPort.T) and a prescribed heat flow rate, + for example a solar collector that dissipates heat to the ambient and receives heat from + the solar radiation, then set prescribedHeatFlowRate=false. +
                        • +
                        +

                        Options

                        +

                        + The parameter mSenFac can be used to increase the thermal mass of this model + without increasing its volume. This way, species concentrations are still calculated + correctly even though the thermal mass increases. The additional thermal mass is calculated + based on the density and the value of the function HeatCapacityCp + of the medium state state_default.
                        + This parameter can for instance be useful in a pipe model when the developer wants to + lump the pipe thermal mass to the fluid volume. By default mSenFac = 1, hence + the mass is unchanged. For higher values of mSenFac, the mass will be scaled proportionally. +

                        +

                        + Set the parameter use_C_flow = true to enable an input connector for the trace substance flow rate. + This allows to directly add or subtract trace substances such as + CO2 to the volume. + See + AixLib.Fluid.Sensors.Examples.PPM + for an example. +

                        + ",revisions=" +
                          +
                        • + October 19, 2017, by Michael Wetter:
                          + Set initialize_p to final so that it does not + appear as a user-selectable parameter. This is done because + initialize_p has been changed from a constant + to a parameter for + Buildings, issue 1013. +
                        • +
                        • + April 11, 2017, by Michael Wetter:
                          + Changed comment of heat port, as this needs to be the total heat flow + rate in order to be able to use this model for modeling steam humidifiers + and adiabatic humidifiers.
                          + Removed blocks QSen_flow and + QLat_flow.
                          + This is for issue + Buildings #704. +
                        • +
                        • + January 22, 2016 by Michael Wetter:
                          + Removed assignment of sensibleOnly in steBal + as this constant is no longer used. +
                        • +
                        • + January 19, 2016, by Michael Wetter:
                          + Updated documentation due to the addition of an input for trace substance + in the mixing volume. + This is for + + issue 372. +
                        • +
                        • + February 11, 2014 by Michael Wetter:
                          + Redesigned implementation of latent and sensible heat flow rates + as port of the correction of issue + #197. +
                        • +
                        • + December 18, 2013 by Michael Wetter:
                          + Changed computation of s to allow this model to also be used + with AixLib.Media.Water. +
                        • +
                        • + October 21, 2013 by Michael Wetter:
                          + Removed dublicate declaration of medium model. +
                        • +
                        • + September 27, 2013 by Michael Wetter:
                          + Reformulated assignment of i_w to avoid a warning in OpenModelica. +
                        • +
                        • + September 17, 2013 by Michael Wetter:
                          + Changed model to no longer use the obsolete model AixLib.Fluid.MixingVolumes.BaseClasses.PartialMixingVolumeWaterPort. +
                        • +
                        • + July 30, 2013 by Michael Wetter:
                          + Changed connector mXi_flow[Medium.nXi] + to a scalar input connector mWat_flow + in the conservation equation model. + The reason is that mXi_flow does not allow + to compute the other components in mX_flow and + therefore leads to an ambiguous use of the model. + By only requesting mWat_flow, the mass balance + and species balance can be implemented correctly. +
                        • +
                        • + April 18, 2013 by Michael Wetter:
                          + Removed the use of the deprecated + cardinality function. + Therefore, all input signals must be connected. +
                        • +
                        • + February 7, 2012 by Michael Wetter:
                          + Revised base classes for conservation equations in AixLib.Fluid.Interfaces. +
                        • +
                        • + February 22, by Michael Wetter:
                          + Improved the code that searches for the index of 'water' in the medium model. +
                        • +
                        • + May 29, 2010 by Michael Wetter:
                          + Rewrote computation of index of water substance. + For the old formulation, Dymola 7.4 failed to differentiate the + model when trying to reduce the index of the DAE. +
                        • +
                        • + August 7, 2008 by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end MixingVolumeMoistAir; diff --git a/AixLib/Fluid/MixingVolumes/Validation/BaseClasses/MixingVolumeReverseFlow.mo b/AixLib/Fluid/MixingVolumes/Validation/BaseClasses/MixingVolumeReverseFlow.mo index 8c6a4f67e2..99d614dad9 100644 --- a/AixLib/Fluid/MixingVolumes/Validation/BaseClasses/MixingVolumeReverseFlow.mo +++ b/AixLib/Fluid/MixingVolumes/Validation/BaseClasses/MixingVolumeReverseFlow.mo @@ -6,8 +6,8 @@ partial model MixingVolumeReverseFlow constant Boolean prescribedHeatFlowRate = false "Flag that affects what steady state balance is used in the volume"; - parameter Modelica.SIunits.Pressure dp_nominal = 10 "Nominal pressure drop"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal = 2.0 + parameter Modelica.Units.SI.Pressure dp_nominal=10 "Nominal pressure drop"; + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=2.0 "Nominal mass flow rate"; Modelica.Fluid.Sources.MassFlowSource_T sou( @@ -80,35 +80,36 @@ equation 40}}, color={0,0,127})); annotation (Documentation( info=" -

                        -This model is the base class to validate -the mixing volume with air flowing into and out of the volume -and heat, moisture or trace substance added to the volume. -

                        -

                        -The model volDyn uses a dynamic balance, -whereas the model volSte uses a steady-state balance. -The mass flow rate starts positive and reverses its direction at t=5 seconds. -

                        -", revisions=" -
                          -
                        • -April 29, 2021, by Michael Wetter:
                          -Reformulated constraint of replaceable model to avoid access of -component that is not in constraining type.
                          -This is for -AixLib, #1473. -
                        • -
                        • -December 23, 2019, by Michael Wetter:
                          -Changed constraining clause to ensure that heat port is present.
                          -This is for -AixLib, #1268. -
                        • -
                        • -January 19, 2016, by Michael Wetter:
                          -First implementation. -
                        • -
                        -")); +

                        + This model is the base class to validate + the mixing volume with air flowing into and out of the volume + and heat, moisture or trace substance added to the volume. +

                        +

                        + The model volDyn uses a dynamic balance, + whereas the model volSte uses a steady-state balance. + The mass flow rate starts positive and reverses its direction at t=5 seconds. +

                        + ",revisions=" +
                          +
                        • + April 29, 2021, by Michael Wetter:
                          + Reformulated constraint of replaceable model to avoid access of + component that is not in constraining type.
                          + This is for + IBPSA, #1473. +
                        • +
                        • + December 23, 2019, by Michael Wetter:
                          + Changed constraining clause to ensure that heat port is present.
                          + This is for + IBPSA, #1268. +
                        • +
                        • + January 19, 2016, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end MixingVolumeReverseFlow; diff --git a/AixLib/Fluid/MixingVolumes/Validation/BaseClasses/MoistureMixingConservation.mo b/AixLib/Fluid/MixingVolumes/Validation/BaseClasses/MoistureMixingConservation.mo index aedf6f4e52..6fdcdca123 100644 --- a/AixLib/Fluid/MixingVolumes/Validation/BaseClasses/MoistureMixingConservation.mo +++ b/AixLib/Fluid/MixingVolumes/Validation/BaseClasses/MoistureMixingConservation.mo @@ -17,7 +17,6 @@ partial model MoistureMixingConservation annotation (Placement(transformation(extent={{-100,-30},{-80,-10}}))); AixLib.Fluid.MixingVolumes.MixingVolumeMoistAir vol( redeclare package Medium = Medium, - massDynamics=Modelica.Fluid.Types.Dynamics.SteadyState, m_flow_nominal=1, V=1, nPorts=2, @@ -27,7 +26,6 @@ partial model MoistureMixingConservation annotation (Placement(transformation(extent={{-60,20},{-40,40}}))); AixLib.Fluid.MixingVolumes.MixingVolumeMoistAir vol1( redeclare package Medium = Medium, - massDynamics=Modelica.Fluid.Types.Dynamics.SteadyState, m_flow_nominal=1, V=1, nPorts=2, @@ -40,7 +38,6 @@ partial model MoistureMixingConservation annotation (Placement(transformation(extent={{160,10},{140,30}}))); AixLib.Fluid.MixingVolumes.MixingVolumeMoistAir vol2( redeclare package Medium = Medium, - massDynamics=Modelica.Fluid.Types.Dynamics.SteadyState, m_flow_nominal=1, V=1, nPorts=2, @@ -156,34 +153,35 @@ equation annotation (Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-100,-260},{160,100}})), Documentation(info=" -

                        -This is a partial model that is used in the validation tests -of the mixing volume. -

                        -", revisions=" -
                          -
                        • -April 12, 2017, by Michael Wetter:
                          -Removed temperature connection that is no longer needed.
                          -This is for issue -Buildings #704. -
                        • -
                        • -November 15, 2016, by Michael Wetter:
                          -Changed model to be partial and removed the experiment annotation.
                          -This is for -issue 590. -
                        • -
                        • -November 2, 2016, by Michael Wetter:
                          -Changed assertions to blocks that compute the difference.
                          -This is for -issue 564. -
                        • -
                        • -May 22 2015 by Filip Jorissen:
                          -First implementation. -
                        • -
                        -")); +

                        + This is a partial model that is used in the validation tests + of the mixing volume. +

                        + ",revisions=" +
                          +
                        • + April 12, 2017, by Michael Wetter:
                          + Removed temperature connection that is no longer needed.
                          + This is for issue + Buildings #704. +
                        • +
                        • + November 15, 2016, by Michael Wetter:
                          + Changed model to be partial and removed the experiment annotation.
                          + This is for + issue 590. +
                        • +
                        • + November 2, 2016, by Michael Wetter:
                          + Changed assertions to blocks that compute the difference.
                          + This is for + issue 564. +
                        • +
                        • + May 22 2015 by Filip Jorissen:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end MoistureMixingConservation; diff --git a/AixLib/Fluid/MixingVolumes/Validation/BaseClasses/TraceSubstanceConservation.mo b/AixLib/Fluid/MixingVolumes/Validation/BaseClasses/TraceSubstanceConservation.mo index 9ca4241bf7..6f072ab455 100644 --- a/AixLib/Fluid/MixingVolumes/Validation/BaseClasses/TraceSubstanceConservation.mo +++ b/AixLib/Fluid/MixingVolumes/Validation/BaseClasses/TraceSubstanceConservation.mo @@ -14,7 +14,6 @@ model TraceSubstanceConservation AixLib.Fluid.MixingVolumes.MixingVolumeMoistAir vol( redeclare package Medium = Medium, - massDynamics=Modelica.Fluid.Types.Dynamics.SteadyState, m_flow_nominal=1, V=1, nPorts=2, @@ -105,22 +104,23 @@ equation color={0,127,255}, smooth=Smooth.None)); annotation ( Documentation(info=" -

                        -This model is reconfigured to a steady state or -dynamic check for conservation of trace substances. -

                        -", revisions=" -
                          -
                        • -April 12, 2017, by Michael Wetter:
                          -Removed temperature connection that is no longer needed.
                          -This is for issue -Buildings #704. -
                        • -
                        • -May 22 2015 by Filip Jorissen:
                          -First implementation. -
                        • -
                        -")); +

                        + This model is reconfigured to a steady state or + dynamic check for conservation of trace substances. +

                        + ",revisions=" +
                          +
                        • + April 12, 2017, by Michael Wetter:
                          + Removed temperature connection that is no longer needed.
                          + This is for issue + Buildings #704. +
                        • +
                        • + May 22 2015 by Filip Jorissen:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end TraceSubstanceConservation; diff --git a/AixLib/Fluid/MixingVolumes/Validation/CoupledVolumesAir.mo b/AixLib/Fluid/MixingVolumes/Validation/CoupledVolumesAir.mo index d69cb79d87..5867018bb8 100644 --- a/AixLib/Fluid/MixingVolumes/Validation/CoupledVolumesAir.mo +++ b/AixLib/Fluid/MixingVolumes/Validation/CoupledVolumesAir.mo @@ -7,25 +7,26 @@ model CoupledVolumesAir annotation (Icon(coordinateSystem(preserveAspectRatio=false)), Diagram( coordinateSystem(preserveAspectRatio=false)), Documentation(info=" -

                        -Validation model for two directly coupled volumes. -

                        -

                        -This tests whether a Modelica translator can perform the index reduction. -

                        -", revisions=" -
                          -
                        • -April 17, 2018, by Michael Wetter:
                          -First implementation for -AixLib, issue 910. -
                        • -
                        -"), +

                        + Validation model for two directly coupled volumes. +

                        +

                        + This tests whether a Modelica translator can perform the index reduction. +

                        + ",revisions=" +
                          +
                        • + April 17, 2018, by Michael Wetter:
                          + First implementation for + IBPSA, issue 910. +
                        • +
                        + "), experiment( StopTime=3600, Tolerance=1e-06), __Dymola_Commands( - file="Resources/Scripts/Dymola/Fluid/MixingVolumes/Validation/CoupledVolumesAir.mos" - "Simulate and plot")); + file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/MixingVolumes/Validation/CoupledVolumesAir.mos" + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end CoupledVolumesAir; diff --git a/AixLib/Fluid/MixingVolumes/Validation/CoupledVolumesGlycol47.mo b/AixLib/Fluid/MixingVolumes/Validation/CoupledVolumesGlycol47.mo index cd0f315886..efde3f0185 100644 --- a/AixLib/Fluid/MixingVolumes/Validation/CoupledVolumesGlycol47.mo +++ b/AixLib/Fluid/MixingVolumes/Validation/CoupledVolumesGlycol47.mo @@ -7,25 +7,26 @@ model CoupledVolumesGlycol47 annotation (Icon(coordinateSystem(preserveAspectRatio=false)), Diagram( coordinateSystem(preserveAspectRatio=false)), Documentation(info=" -

                        -Validation model for two directly coupled volumes. -

                        -

                        -This tests whether a Modelica translator can perform the index reduction. -

                        -", revisions=" -
                          -
                        • -April 17, 2018, by Michael Wetter:
                          -First implementation for -AixLib, issue 910. -
                        • -
                        -"), +

                        + Validation model for two directly coupled volumes. +

                        +

                        + This tests whether a Modelica translator can perform the index reduction. +

                        + ",revisions=" +
                          +
                        • + April 17, 2018, by Michael Wetter:
                          + First implementation for + IBPSA, issue 910. +
                        • +
                        + "), experiment( StopTime=3600, Tolerance=1e-06), __Dymola_Commands( - file="Resources/Scripts/Dymola/Fluid/MixingVolumes/Validation/CoupledVolumesGlycol47.mos" - "Simulate and plot")); + file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/MixingVolumes/Validation/CoupledVolumesGlycol47.mos" + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end CoupledVolumesGlycol47; diff --git a/AixLib/Fluid/MixingVolumes/Validation/CoupledVolumesSpecializedAirPerfectGas.mo b/AixLib/Fluid/MixingVolumes/Validation/CoupledVolumesSpecializedAirPerfectGas.mo index 1441bc50f8..dae3f080b7 100644 --- a/AixLib/Fluid/MixingVolumes/Validation/CoupledVolumesSpecializedAirPerfectGas.mo +++ b/AixLib/Fluid/MixingVolumes/Validation/CoupledVolumesSpecializedAirPerfectGas.mo @@ -8,25 +8,26 @@ model CoupledVolumesSpecializedAirPerfectGas annotation (Icon(coordinateSystem(preserveAspectRatio=false)), Diagram( coordinateSystem(preserveAspectRatio=false)), Documentation(info=" -

                        -Validation model for two directly coupled volumes. -

                        -

                        -This tests whether a Modelica translator can perform the index reduction. -

                        -", revisions=" -
                          -
                        • -April 17, 2018, by Michael Wetter:
                          -First implementation for -AixLib, issue 910. -
                        • -
                        -"), +

                        + Validation model for two directly coupled volumes. +

                        +

                        + This tests whether a Modelica translator can perform the index reduction. +

                        + ",revisions=" +
                          +
                        • + April 17, 2018, by Michael Wetter:
                          + First implementation for + IBPSA, issue 910. +
                        • +
                        + "), experiment( StopTime=3600, Tolerance=1e-06), __Dymola_Commands( - file="Resources/Scripts/Dymola/Fluid/MixingVolumes/Validation/CoupledVolumesSpecializedAirPerfectGas.mos" - "Simulate and plot")); + file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/MixingVolumes/Validation/CoupledVolumesSpecializedAirPerfectGas.mos" + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end CoupledVolumesSpecializedAirPerfectGas; diff --git a/AixLib/Fluid/MixingVolumes/Validation/CoupledVolumesSpecializedWaterConstantProperties_pT.mo b/AixLib/Fluid/MixingVolumes/Validation/CoupledVolumesSpecializedWaterConstantProperties_pT.mo index 282d83376a..9321503581 100644 --- a/AixLib/Fluid/MixingVolumes/Validation/CoupledVolumesSpecializedWaterConstantProperties_pT.mo +++ b/AixLib/Fluid/MixingVolumes/Validation/CoupledVolumesSpecializedWaterConstantProperties_pT.mo @@ -8,25 +8,26 @@ model CoupledVolumesSpecializedWaterConstantProperties_pT annotation (Icon(coordinateSystem(preserveAspectRatio=false)), Diagram( coordinateSystem(preserveAspectRatio=false)), Documentation(info=" -

                        -Validation model for two directly coupled volumes. -

                        -

                        -This tests whether a Modelica translator can perform the index reduction. -

                        -", revisions=" -
                          -
                        • -April 17, 2018, by Michael Wetter:
                          -First implementation for -AixLib, issue 910. -
                        • -
                        -"), +

                        + Validation model for two directly coupled volumes. +

                        +

                        + This tests whether a Modelica translator can perform the index reduction. +

                        + ",revisions=" +
                          +
                        • + April 17, 2018, by Michael Wetter:
                          + First implementation for + IBPSA, issue 910. +
                        • +
                        + "), experiment( StopTime=3600, Tolerance=1e-06), __Dymola_Commands( - file="Resources/Scripts/Dymola/Fluid/MixingVolumes/Validation/CoupledVolumesSpecializedWaterConstantProperties_pT.mos" - "Simulate and plot")); + file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/MixingVolumes/Validation/CoupledVolumesSpecializedWaterConstantProperties_pT.mos" + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end CoupledVolumesSpecializedWaterConstantProperties_pT; diff --git a/AixLib/Fluid/MixingVolumes/Validation/CoupledVolumesSpecializedWaterTemperatureDependentDensity.mo b/AixLib/Fluid/MixingVolumes/Validation/CoupledVolumesSpecializedWaterTemperatureDependentDensity.mo index b1e0abdfa5..d5af933b6c 100644 --- a/AixLib/Fluid/MixingVolumes/Validation/CoupledVolumesSpecializedWaterTemperatureDependentDensity.mo +++ b/AixLib/Fluid/MixingVolumes/Validation/CoupledVolumesSpecializedWaterTemperatureDependentDensity.mo @@ -8,25 +8,26 @@ model CoupledVolumesSpecializedWaterTemperatureDependentDensity annotation (Icon(coordinateSystem(preserveAspectRatio=false)), Diagram( coordinateSystem(preserveAspectRatio=false)), Documentation(info=" -

                        -Validation model for two directly coupled volumes. -

                        -

                        -This tests whether a Modelica translator can perform the index reduction. -

                        -", revisions=" -
                          -
                        • -April 17, 2018, by Michael Wetter:
                          -First implementation for -AixLib, issue 910. -
                        • -
                        -"), +

                        + Validation model for two directly coupled volumes. +

                        +

                        + This tests whether a Modelica translator can perform the index reduction. +

                        + ",revisions=" +
                          +
                        • + April 17, 2018, by Michael Wetter:
                          + First implementation for + IBPSA, issue 910. +
                        • +
                        + "), experiment( StopTime=3600, Tolerance=1e-06), __Dymola_Commands( - file="Resources/Scripts/Dymola/Fluid/MixingVolumes/Validation/CoupledVolumesSpecializedWaterTemperatureDependentDensity.mos" - "Simulate and plot")); + file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/MixingVolumes/Validation/CoupledVolumesSpecializedWaterTemperatureDependentDensity.mos" + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end CoupledVolumesSpecializedWaterTemperatureDependentDensity; diff --git a/AixLib/Fluid/MixingVolumes/Validation/CoupledVolumesWater.mo b/AixLib/Fluid/MixingVolumes/Validation/CoupledVolumesWater.mo index 6f51ffe12a..19ff7a8097 100644 --- a/AixLib/Fluid/MixingVolumes/Validation/CoupledVolumesWater.mo +++ b/AixLib/Fluid/MixingVolumes/Validation/CoupledVolumesWater.mo @@ -40,25 +40,26 @@ equation annotation (Icon(coordinateSystem(preserveAspectRatio=false)), Diagram( coordinateSystem(preserveAspectRatio=false)), Documentation(info=" -

                        -Validation model for two directly coupled volumes. -

                        -

                        -This tests whether a Modelica translator can perform the index reduction. -

                        -", revisions=" -
                          -
                        • -April 17, 2018, by Michael Wetter:
                          -First implementation for -AixLib, issue 910. -
                        • -
                        -"), +

                        + Validation model for two directly coupled volumes. +

                        +

                        + This tests whether a Modelica translator can perform the index reduction. +

                        + ",revisions=" +
                          +
                        • + April 17, 2018, by Michael Wetter:
                          + First implementation for + IBPSA, issue 910. +
                        • +
                        + "), experiment( StopTime=3600, Tolerance=1e-06), __Dymola_Commands( - file="Resources/Scripts/Dymola/Fluid/MixingVolumes/Validation/CoupledVolumesWater.mos" - "Simulate and plot")); + file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/MixingVolumes/Validation/CoupledVolumesWater.mos" + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end CoupledVolumesWater; diff --git a/AixLib/Fluid/MixingVolumes/Validation/MixingVolume.mo b/AixLib/Fluid/MixingVolumes/Validation/MixingVolume.mo index 0cfe1c061b..48d452a1ce 100644 --- a/AixLib/Fluid/MixingVolumes/Validation/MixingVolume.mo +++ b/AixLib/Fluid/MixingVolumes/Validation/MixingVolume.mo @@ -34,7 +34,6 @@ model MixingVolume "Test model for mixing volumes" V=0.1, nPorts=2, energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, - massDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, m_flow_nominal=2) annotation (Placement(transformation(extent={{0,10},{20,30}}))); AixLib.Fluid.FixedResistances.PressureDrop res2( @@ -57,13 +56,13 @@ model MixingVolume "Test model for mixing volumes" annotation (Placement(transformation(extent={{80,0},{100,20}}))); Modelica.Fluid.Vessels.ClosedVolume vol( redeclare package Medium = Medium, + massDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, V=0.1, nPorts=2, h_start=45300.945, use_portsData=false, - energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, - massDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial) - annotation (Placement(transformation(extent={{0,60},{22,80}}))); + energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial) + annotation (Placement(transformation(extent={{0,60},{20,80}}))); AixLib.Utilities.Diagnostics.CheckEquality cheEqu1 "Check for equality of results" annotation (Placement(transformation(extent={{156,70},{176,90}}))); @@ -82,7 +81,6 @@ model MixingVolume "Test model for mixing volumes" V=0.1, nPorts=2, energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, - massDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, m_flow_nominal=2) annotation (Placement(transformation(extent={{0,-82},{20,-62}}))); AixLib.Fluid.FixedResistances.PressureDrop res21( @@ -119,40 +117,40 @@ equation connect(zero.y, vol2.mWat_flow) annotation (Line(points={{-19,-20},{-12,-20}, {-12,-64},{-2,-64}}, color={0,0,127})); connect(sou.ports[1], res1.port_a) annotation (Line( - points={{-50,60.6667},{-43,60.6667},{-43,60},{-36,60}}, + points={{-50,56.6667},{-43,56.6667},{-43,60},{-36,60}}, color={0,127,255})); connect(sou.ports[2], res11.port_a) annotation (Line( points={{-50,58},{-44,58},{-44,10},{-40,10}}, color={0,127,255})); connect(sou.ports[3], res21.port_a) annotation (Line( - points={{-50,55.3333},{-46,55.3333},{-46,-82},{-40,-82}}, + points={{-50,59.3333},{-46,59.3333},{-46,-82},{-40,-82}}, color={0,127,255})); connect(sin.ports[1], res2.port_b) annotation (Line( - points={{110,60.6667},{104,60.6667},{104,60},{100,60}}, + points={{110,56.6667},{104,56.6667},{104,60},{100,60}}, color={0,127,255})); connect(sin.ports[2], res12.port_b) annotation (Line( points={{110,58},{104,58},{104,10},{100,10}}, color={0,127,255})); connect(res22.port_b, sin.ports[3]) annotation (Line( - points={{100,-82},{106,-82},{106,55.3333},{110,55.3333}}, + points={{100,-82},{106,-82},{106,59.3333},{110,59.3333}}, color={0,127,255})); connect(res1.port_b, vol.ports[1]) annotation (Line( - points={{-16,60},{8.8,60}}, + points={{-16,60},{9,60}}, color={0,127,255})); connect(vol.ports[2], entFloRat.port_a) annotation (Line( - points={{13.2,60},{40,60}}, + points={{11,60},{40,60}}, color={0,127,255})); connect(res11.port_b, vol1.ports[1]) annotation (Line( - points={{-20,10},{8,10}}, + points={{-20,10},{9,10}}, color={0,127,255})); connect(vol1.ports[2], entFloRat1.port_a) annotation (Line( - points={{12,10},{40,10}}, + points={{11,10},{40,10}}, color={0,127,255})); connect(res21.port_b, vol2.ports[1]) annotation (Line( - points={{-20,-82},{8,-82}}, + points={{-20,-82},{9,-82}}, color={0,127,255})); connect(vol2.ports[2], entFloRat2.port_a) annotation (Line( - points={{12,-82},{40,-82}}, + points={{11,-82},{40,-82}}, color={0,127,255})); connect(entFloRat2.port_b, res22.port_a) annotation (Line( points={{60,-82},{80,-82}}, @@ -173,49 +171,50 @@ experiment(Tolerance=1E-9, StopTime=2), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/MixingVolumes/Validation/MixingVolume.mos" "Simulate and plot"), Documentation(info=" -

                        -This model tests the implementation of the mixing volumes. -It compares the results from the mixing volume of the Modelica -Standard Library with the implementation in the Buildings -library. -

                        -", revisions=" -
                          -
                        • -April 12, 2017, by Michael Wetter:
                          -Removed temperature connection that is no longer needed.
                          -This is for issue -Buildings #704. -
                        • -
                        • -January 12, 2017, by Thierry S. Nouidui:
                          -Refactored difference blocks for checking integration errors. -This is needed for the JModelica verification tests. -
                        • -
                        • -November 4, 2016, by Michael Wetter:
                          -Removed wrong use of each keyword.
                          -This is for -issue 575. -
                        • -
                        • -November 2, 2016, by Michael Wetter:
                          -Changed assertions to blocks that compute the difference, -and added the difference to the regression results.
                          -This is for -issue 564. -
                        • -
                        • -October 24, 2013, by Michael Wetter:
                          -Set vol(h_start=45300.945). -This avoids a cyclic assignment of vol.T_start -and vol.h_start in -Modelica.Fluid.Vessels.ClosedVolume. -
                        • -
                        • -October 12, 2009 by Michael Wetter:
                          -First implementation. -
                        • -
                        -")); +

                        + This model tests the implementation of the mixing volumes. + It compares the results from the mixing volume of the Modelica + Standard Library with the implementation in the Buildings + library. +

                        + ",revisions=" +
                          +
                        • + April 12, 2017, by Michael Wetter:
                          + Removed temperature connection that is no longer needed.
                          + This is for issue + Buildings #704. +
                        • +
                        • + January 12, 2017, by Thierry S. Nouidui:
                          + Refactored difference blocks for checking integration errors. + This is needed for the JModelica verification tests. +
                        • +
                        • + November 4, 2016, by Michael Wetter:
                          + Removed wrong use of each keyword.
                          + This is for + issue 575. +
                        • +
                        • + November 2, 2016, by Michael Wetter:
                          + Changed assertions to blocks that compute the difference, + and added the difference to the regression results.
                          + This is for + issue 564. +
                        • +
                        • + October 24, 2013, by Michael Wetter:
                          + Set vol(h_start=45300.945). + This avoids a cyclic assignment of vol.T_start + and vol.h_start in + Modelica.Fluid.Vessels.ClosedVolume. +
                        • +
                        • + October 12, 2009 by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end MixingVolume; diff --git a/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeAdiabaticCooling.mo b/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeAdiabaticCooling.mo index e46305a58d..4e190a9e54 100644 --- a/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeAdiabaticCooling.mo +++ b/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeAdiabaticCooling.mo @@ -43,37 +43,38 @@ equation {66,-2},{58,-2},{58,-48},{30,-48},{30,-38}}, color={0,127,255})); annotation (Documentation( info=" -

                        -This model validates the use of the mixing volume with adiabatic cooling. -Water in liquid form at room temperature is added to the volume, -which decreases its temperature. -The instance volSim uses a simplified implementation of the -mass balance that ignores the mass of the water added to the volume, -whereas the instance volExa uses the exact formulation. -The output of the instance relErr -shows that the relative error on the temperature difference between these -two options is less than 0.1%. -

                        -", revisions=" -
                          -
                        • -May 2, 2019, by Jianjun Hu:
                          -Replaced fluid source. This is for - #1072. -
                        • -
                        • -April 12, 2017, by Michael Wetter:
                          -Removed temperature connection that is no longer needed.
                          -This is for issue -Buildings #704. -
                        • -
                        • -May 2, 2016, by Michael Wetter:
                          -First implementation. -
                        • -
                        -"), +

                        + This model validates the use of the mixing volume with adiabatic cooling. + Water in liquid form at room temperature is added to the volume, + which decreases its temperature. + The instance volSim uses a simplified implementation of the + mass balance that ignores the mass of the water added to the volume, + whereas the instance volExa uses the exact formulation. + The output of the instance relErr + shows that the relative error on the temperature difference between these + two options is less than 0.1%. +

                        + ",revisions=" +
                          +
                        • + May 2, 2019, by Jianjun Hu:
                          + Replaced fluid source. This is for + #1072. +
                        • +
                        • + April 12, 2017, by Michael Wetter:
                          + Removed temperature connection that is no longer needed.
                          + This is for issue + Buildings #704. +
                        • +
                        • + May 2, 2016, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/MixingVolumes/Validation/MixingVolumeAdiabaticCooling.mos" "Simulate and plot"), - experiment(Tolerance=1e-6, StopTime=10)); + experiment(Tolerance=1e-6, StopTime=10), + __Dymola_LockedEditing="Model from IBPSA"); end MixingVolumeAdiabaticCooling; diff --git a/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeHeatReverseFlow.mo b/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeHeatReverseFlow.mo index fe407218ee..3abffb8a16 100644 --- a/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeHeatReverseFlow.mo +++ b/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeHeatReverseFlow.mo @@ -22,24 +22,25 @@ equation 40},{26,28},{-2,28},{-2,-40},{10,-40}}, color={191,0,0})); annotation (Documentation( info=" -

                        -This model validates the use of the mixing volume with air flowing into and out of the volume -and sensible heat added to the volume. -

                        -

                        -The model volDyn uses a dynamic balance, -whereas the model volSte uses a steady-state balance. -The mass flow rate starts positive and reverses its direction at t=5 seconds. -

                        -", revisions=" -
                          -
                        • -March 9, 2016, by Michael Wetter:
                          -First implementation. -
                        • -
                        -"), +

                        + This model validates the use of the mixing volume with air flowing into and out of the volume + and sensible heat added to the volume. +

                        +

                        + The model volDyn uses a dynamic balance, + whereas the model volSte uses a steady-state balance. + The mass flow rate starts positive and reverses its direction at t=5 seconds. +

                        + ",revisions=" +
                          +
                        • + March 9, 2016, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/MixingVolumes/Validation/MixingVolumeHeatReverseFlow.mos" "Simulate and plot"), - experiment(Tolerance=1e-08, StopTime=10)); + experiment(Tolerance=1e-08, StopTime=10), + __Dymola_LockedEditing="Model from IBPSA"); end MixingVolumeHeatReverseFlow; diff --git a/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeHeatReverseFlowPrescribedHeatFlowRate.mo b/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeHeatReverseFlowPrescribedHeatFlowRate.mo index c2788efb46..fd2dbf0dce 100644 --- a/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeHeatReverseFlowPrescribedHeatFlowRate.mo +++ b/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeHeatReverseFlowPrescribedHeatFlowRate.mo @@ -6,27 +6,28 @@ model MixingVolumeHeatReverseFlowPrescribedHeatFlowRate annotation (Documentation( info=" -

                        -This model is identical to - -AixLib.Fluid.MixingVolumes.Validation.MixingVolumeHeatReverseFlow, -except that the steady state volume volSte -is configured to have a prescribed heat flow rate, -which is in this case zero as the heat port is not connected. -This configures volSte to use the two port -steady state heat and mass balance model - -AixLib.Fluid.Interfaces.StaticTwoPortConservationEquation. -

                        -", revisions=" -
                          -
                        • -March 9, 2016, by Michael Wetter:
                          -First implementation. -
                        • -
                        -"), +

                        + This model is identical to + + AixLib.Fluid.MixingVolumes.Validation.MixingVolumeHeatReverseFlow, + except that the steady state volume volSte + is configured to have a prescribed heat flow rate, + which is in this case zero as the heat port is not connected. + This configures volSte to use the two port + steady state heat and mass balance model + + AixLib.Fluid.Interfaces.StaticTwoPortConservationEquation. +

                        + ",revisions=" +
                          +
                        • + March 9, 2016, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/MixingVolumes/Validation/MixingVolumeHeatReverseFlowPrescribedHeatFlowRate.mos" "Simulate and plot"), - experiment(Tolerance=1e-6, StopTime=10)); + experiment(Tolerance=1e-6, StopTime=10), + __Dymola_LockedEditing="Model from IBPSA"); end MixingVolumeHeatReverseFlowPrescribedHeatFlowRate; diff --git a/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeInitialization.mo b/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeInitialization.mo index 6e180af0b6..58d3005bfe 100644 --- a/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeInitialization.mo +++ b/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeInitialization.mo @@ -55,23 +55,24 @@ experiment(StopTime=0.001, __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/MixingVolumes/Validation/MixingVolumeInitialization.mos" "Simulate and plot"), Documentation(info=" -

                        -This model tests the initialization of the mixing volume. -

                        -", revisions=" -
                          -
                        • -October 24, 2013 by Michael Wetter:
                          -Set flowModel(m_flow_nominal=2) in the pipe models to -avoid a cyclic definition of -pipe1.flowModel.m_flow_nominal -and -pipe2.flowModel.m_flow_nominal. -
                        • -
                        • -October 12, 2009 by Michael Wetter:
                          -First implementation. -
                        • -
                        -")); +

                        + This model tests the initialization of the mixing volume. +

                        + ",revisions=" +
                          +
                        • + October 24, 2013 by Michael Wetter:
                          + Set flowModel(m_flow_nominal=2) in the pipe models to + avoid a cyclic definition of + pipe1.flowModel.m_flow_nominal + and + pipe2.flowModel.m_flow_nominal. +
                        • +
                        • + October 12, 2009 by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end MixingVolumeInitialization; diff --git a/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeMFactor.mo b/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeMFactor.mo index 573bee6eed..cf3b98ff10 100644 --- a/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeMFactor.mo +++ b/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeMFactor.mo @@ -12,8 +12,7 @@ model MixingVolumeMFactor V=1, nPorts=2, m_flow_nominal=m_flow_nominal, - energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, - massDynamics=Modelica.Fluid.Types.Dynamics.DynamicFreeInitial) + energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial) "Mixing volume using mSenFac = 10" annotation (Placement(transformation(extent={{-10,-40},{10,-20}}))); AixLib.Fluid.MixingVolumes.MixingVolume vol1( @@ -21,8 +20,7 @@ model MixingVolumeMFactor V=10, nPorts=2, m_flow_nominal=m_flow_nominal, - energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, - massDynamics=Modelica.Fluid.Types.Dynamics.DynamicFreeInitial) + energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial) "MixingVolume with V = 10 instead of mSenFac = 10" annotation (Placement(transformation(extent={{-10,-80},{10,-60}}))); AixLib.Fluid.Sources.MassFlowSource_T boundaryMFactor( @@ -51,48 +49,49 @@ equation connect(bou.ports[3], vol1.ports[2]) annotation (Line(points={{40,1.33227e-15}, {20,1.33227e-15},{20,-80},{2,-80}}, color={0,127,255})); annotation (Documentation(info=" -

                        This model contains two verifications for the implementation of mSenFac:

                        -
                          -
                        1. -The mixingVolume temperature vol.T should be constant. -This is to check the correct implementation of the parameter mSenFac for moist air media. -
                        2. -
                        3. -The temperature response of volMFactor.T and vol1.T should be nearly identical. -Furthermore the response of the species concentration Xi demonstrates the -difference between using an mSenFac = 10 and multiplying volume by 10. -
                        4. -
                        -

                        -See - -AixLib.Fluid.MixingVolumes.Validation.MixingVolumeMassFlow -for the rational of the selected initial conditions for the volumes. -

                        -", revisions=" -
                          -
                        • -March 27, 2015 by Michael Wetter:
                          -Set the mass dynamics of the volume to -Modelica.Fluid.Types.Dynamics.DynamicFreeInitial -to avoid an overspecified but consistent initial value problem. -The previous implementation caused a warning in Dymola 2015 FD01, and caused -in Dymola 2016 beta 2 to not translate the model. -The problem was that the boundary condition and the volume -both declared an equation for the initial pressure. -
                        • -
                        • -December, 2014 by Filip Jorissen:
                          -Added temperature verification. -
                        • -
                        • -November 25, 2014 by Filip Jorissen:
                          -First implementation. -
                        • -
                        -"), +

                        This model contains two verifications for the implementation of mSenFac:

                        +
                          +
                        1. + The mixingVolume temperature vol.T should be constant. + This is to check the correct implementation of the parameter mSenFac for moist air media. +
                        2. +
                        3. + The temperature response of volMFactor.T and vol1.T should be nearly identical. + Furthermore the response of the species concentration Xi demonstrates the + difference between using an mSenFac = 10 and multiplying volume by 10. +
                        4. +
                        +

                        + See + + AixLib.Fluid.MixingVolumes.Validation.MixingVolumeMassFlow + for the rational of the selected initial conditions for the volumes. +

                        + ",revisions=" +
                          +
                        • + March 27, 2015 by Michael Wetter:
                          + Set the mass dynamics of the volume to + Modelica.Fluid.Types.Dynamics.DynamicFreeInitial + to avoid an overspecified but consistent initial value problem. + The previous implementation caused a warning in Dymola 2015 FD01, and caused + in Dymola 2016 beta 2 to not translate the model. + The problem was that the boundary condition and the volume + both declared an equation for the initial pressure. +
                        • +
                        • + December, 2014 by Filip Jorissen:
                          + Added temperature verification. +
                        • +
                        • + November 25, 2014 by Filip Jorissen:
                          + First implementation. +
                        • +
                        + "), experiment(Tolerance=1E-6, StopTime=100), __Dymola_Commands(file= "modelica://AixLib/Resources/Scripts/Dymola/Fluid/MixingVolumes/Validation/MixingVolumeMFactor.mos" - "Simulate and plot")); + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end MixingVolumeMFactor; diff --git a/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeMassFlow.mo b/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeMassFlow.mo index 63b05089ab..28090d3a9b 100644 --- a/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeMassFlow.mo +++ b/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeMassFlow.mo @@ -3,9 +3,9 @@ model MixingVolumeMassFlow "Test model for mass flow into and out of volume" extends Modelica.Icons.Example; package Medium = AixLib.Media.Air "Medium model"; - parameter Modelica.SIunits.PressureDifference dp_nominal = 10 + parameter Modelica.Units.SI.PressureDifference dp_nominal=10 "Nominal pressure drop"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal = 0.5 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=0.5 "Nominal mass flow rate"; Modelica.Fluid.Sources.MassFlowSource_T sou( @@ -30,8 +30,7 @@ model MixingVolumeMassFlow "Test model for mass flow into and out of volume" nPorts=2, allowFlowReversal=false, m_flow_nominal=m_flow_nominal, - energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, - massDynamics=Modelica.Fluid.Types.Dynamics.DynamicFreeInitial) + energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial) annotation (Placement(transformation(extent={{-10,0},{10,20}}))); equation @@ -42,45 +41,46 @@ equation annotation (Line(points={{40,0},{2,0}}, color={0,127,255})); annotation (Documentation( info=" -

                        -This model demonstrates the use of the mixing volume with air flowing into and out of the volume. -

                        -

                        -The initial conditions for the volume is declared as fixed initial -values for the energy dynamics, but free initial conditions -for the mass dynamics. The reason for leaving the initial conditions -unspecified for the mass dynamics is that the sink bou -declares the pressure of the fluid. As there is no flow resistance -between that boundary condition and the volume, -the volume has the same pressure. Therefore, specifying an -initial condition for the mass dynamics would yield to an overspecified -initial value problem for the pressure of the medium. -

                        -", revisions=" -
                          -
                        • -January 22, 2016, by Michael Wetter:
                          -Corrected type declaration of pressure difference. -This is -for #404. -
                        • -
                        • -March 27, 2015 by Michael Wetter:
                          -Set the mass dynamics of the volume to -Modelica.Fluid.Types.Dynamics.DynamicFreeInitial -to avoid an overspecified but consistent initial value problem. -The previous implementation caused a warning in Dymola 2015 FD01, and caused -in Dymola 2016 beta 2 to not translate the model. -The problem was that the boundary condition and the volume -both declared an equation for the initial pressure. -
                        • -
                        • -October 12, 2009 by Michael Wetter:
                          -First implementation. -
                        • -
                        -"), +

                        + This model demonstrates the use of the mixing volume with air flowing into and out of the volume. +

                        +

                        + The initial conditions for the volume is declared as fixed initial + values for the energy dynamics, but free initial conditions + for the mass dynamics. The reason for leaving the initial conditions + unspecified for the mass dynamics is that the sink bou + declares the pressure of the fluid. As there is no flow resistance + between that boundary condition and the volume, + the volume has the same pressure. Therefore, specifying an + initial condition for the mass dynamics would yield to an overspecified + initial value problem for the pressure of the medium. +

                        + ",revisions=" +
                          +
                        • + January 22, 2016, by Michael Wetter:
                          + Corrected type declaration of pressure difference. + This is + for #404. +
                        • +
                        • + March 27, 2015 by Michael Wetter:
                          + Set the mass dynamics of the volume to + Modelica.Fluid.Types.Dynamics.DynamicFreeInitial + to avoid an overspecified but consistent initial value problem. + The previous implementation caused a warning in Dymola 2015 FD01, and caused + in Dymola 2016 beta 2 to not translate the model. + The problem was that the boundary condition and the volume + both declared an equation for the initial pressure. +
                        • +
                        • + October 12, 2009 by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/MixingVolumes/Validation/MixingVolumeMassFlow.mos" "Simulate and plot"), - experiment(Tolerance=1E-6, StopTime=10)); + experiment(Tolerance=1E-6, StopTime=10), + __Dymola_LockedEditing="Model from IBPSA"); end MixingVolumeMassFlow; diff --git a/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeMoistureReverseFlow.mo b/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeMoistureReverseFlow.mo index f1bc35b7af..34294e7ed5 100644 --- a/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeMoistureReverseFlow.mo +++ b/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeMoistureReverseFlow.mo @@ -14,30 +14,31 @@ equation -10,-32},{8,-32}}, color={0,0,127})); annotation (Documentation( info=" -

                        -This model validates the use of the mixing volume with air flowing into and out of the volume -and moisture added to the volume. -

                        -

                        -The model volDyn uses a dynamic balance, -whereas the model volSte uses a steady-state balance. -The mass flow rate starts positive and reverses its direction at t=5 seconds. -

                        -", revisions=" -
                          -
                        • -April 12, 2017, by Michael Wetter:
                          -Removed temperature connection that is no longer needed.
                          -This is for issue -Buildings #704. -
                        • -
                        • -March 9, 2016, by Michael Wetter:
                          -First implementation. -
                        • -
                        -"), +

                        + This model validates the use of the mixing volume with air flowing into and out of the volume + and moisture added to the volume. +

                        +

                        + The model volDyn uses a dynamic balance, + whereas the model volSte uses a steady-state balance. + The mass flow rate starts positive and reverses its direction at t=5 seconds. +

                        + ",revisions=" +
                          +
                        • + April 12, 2017, by Michael Wetter:
                          + Removed temperature connection that is no longer needed.
                          + This is for issue + Buildings #704. +
                        • +
                        • + March 9, 2016, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/MixingVolumes/Validation/MixingVolumeMoistureReverseFlow.mos" "Simulate and plot"), - experiment(Tolerance=1e-6, StopTime=10)); + experiment(Tolerance=1e-6, StopTime=10), + __Dymola_LockedEditing="Model from IBPSA"); end MixingVolumeMoistureReverseFlow; diff --git a/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeMoistureReverseFlowPrescribedHeatFlowRate.mo b/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeMoistureReverseFlowPrescribedHeatFlowRate.mo index 823852df0f..1ee94dab6b 100644 --- a/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeMoistureReverseFlowPrescribedHeatFlowRate.mo +++ b/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeMoistureReverseFlowPrescribedHeatFlowRate.mo @@ -5,27 +5,28 @@ model MixingVolumeMoistureReverseFlowPrescribedHeatFlowRate prescribedHeatFlowRate=true); annotation (Documentation( info=" -

                        -This model is identical to - -AixLib.Fluid.MixingVolumes.Validation.MixingVolumeMoistureReverseFlow, -except that the steady state volume volSte -is configured to have a prescribed heat flow rate, -which is in this case zero as the heat port is not connected. -This configures volSte to use the two port -steady state heat and mass balance model - -AixLib.Fluid.Interfaces.StaticTwoPortConservationEquation. -

                        -", revisions=" -
                          -
                        • -March 9, 2016, by Michael Wetter:
                          -First implementation. -
                        • -
                        -"), +

                        + This model is identical to + + AixLib.Fluid.MixingVolumes.Validation.MixingVolumeMoistureReverseFlow, + except that the steady state volume volSte + is configured to have a prescribed heat flow rate, + which is in this case zero as the heat port is not connected. + This configures volSte to use the two port + steady state heat and mass balance model + + AixLib.Fluid.Interfaces.StaticTwoPortConservationEquation. +

                        + ",revisions=" +
                          +
                        • + March 9, 2016, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/MixingVolumes/Validation/MixingVolumeMoistureReverseFlowPrescribedHeatFlowRate.mos" "Simulate and plot"), - experiment(Tolerance=1e-6, StopTime=10)); + experiment(Tolerance=1e-6, StopTime=10), + __Dymola_LockedEditing="Model from IBPSA"); end MixingVolumeMoistureReverseFlowPrescribedHeatFlowRate; diff --git a/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeSteadyStateMass.mo b/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeSteadyStateMass.mo index d74154743e..5027113874 100644 --- a/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeSteadyStateMass.mo +++ b/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeSteadyStateMass.mo @@ -16,14 +16,14 @@ model MixingVolumeSteadyStateMass "Test model for steady state mass dynamics" rotation=180, origin={92,-10}))); AixLib.Fluid.MixingVolumes.MixingVolume vol( + energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, V=1, redeclare package Medium = Medium, m_flow_nominal=0.01, massDynamics=Modelica.Fluid.Types.Dynamics.SteadyState, allowFlowReversal=true, nPorts=2, - mSenFac=2, - energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial) + mSenFac=2) "Mixing volume with steady state mass dynamics" annotation (Placement(transformation(extent={{30,20},{50,40}}))); Modelica.Blocks.Sources.Ramp ramp( @@ -47,31 +47,32 @@ equation points={{-39,-10},{-31.5,-10},{-31.5,-2},{-22,-2}}, color={0,0,127})); connect(sou.ports[1], vol.ports[1]) annotation (Line( - points={{0,-10},{38,-10},{38,20}}, + points={{0,-10},{39,-10},{39,20}}, color={0,127,255})); connect(vol.ports[2], res.port_a) annotation (Line( - points={{42,20},{42,-10},{50,-10}}, + points={{41,20},{41,-10},{50,-10}}, color={0,127,255})); connect(res.port_b, bou.ports[1]) annotation (Line( points={{70,-10},{82,-10}}, color={0,127,255})); annotation (Documentation( info=" -

                        -This model shows that steady state mass dynamics are correctly simulated. -A change in pressure does not lead to an exchange and/or creation of mass. -The mixing volume temperature is also unaffected by a pressure change. -

                        -", revisions=" -
                          -
                        • -March 9, 2015 by Filip Jorissen:
                          -First implementation. -
                        • -
                        -"), +

                        + This model shows that steady state mass dynamics are correctly simulated. + A change in pressure does not lead to an exchange and/or creation of mass. + The mixing volume temperature is also unaffected by a pressure change. +

                        + ",revisions=" +
                          +
                        • + March 9, 2015 by Filip Jorissen:
                          + First implementation. +
                        • +
                        + "), experiment(Tolerance=1E-6, StopTime=1.0), __Dymola_Commands(file= "modelica://AixLib/Resources/Scripts/Dymola/Fluid/MixingVolumes/Validation/MixingVolumeSteadyStateMass.mos" - "Simulate and plot")); + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end MixingVolumeSteadyStateMass; diff --git a/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeTraceSubstance.mo b/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeTraceSubstance.mo index 71910cf016..1b9ab5d643 100644 --- a/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeTraceSubstance.mo +++ b/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeTraceSubstance.mo @@ -5,8 +5,8 @@ model MixingVolumeTraceSubstance package Medium = AixLib.Media.Air(extraPropertiesNames={"CO2"}) "Medium model"; - parameter Modelica.SIunits.Pressure dp_nominal = 10 "Nominal pressure drop"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal = 0.5 + parameter Modelica.Units.SI.Pressure dp_nominal=10 "Nominal pressure drop"; + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=0.5 "Nominal mass flow rate"; Modelica.Fluid.Sources.MassFlowSource_T sou( @@ -70,23 +70,24 @@ equation {20,-10},{20,-18},{40,-18}}, color={0,127,255})); annotation (Documentation( info=" -

                        -This model demonstrates the use of the mixing volume with air flowing into and out of the volume -and trace substances added to the volume. -

                        -

                        -The model volDyn uses a dynamic balance, -whereas the model volSte uses a steady-state balance. -

                        -", revisions=" -
                          -
                        • -January 19, 2016, by Michael Wetter:
                          -First implementation. -
                        • -
                        -"), +

                        + This model demonstrates the use of the mixing volume with air flowing into and out of the volume + and trace substances added to the volume. +

                        +

                        + The model volDyn uses a dynamic balance, + whereas the model volSte uses a steady-state balance. +

                        + ",revisions=" +
                          +
                        • + January 19, 2016, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/MixingVolumes/Validation/MixingVolumeTraceSubstance.mos" "Simulate and plot"), - experiment(Tolerance=1e-6, StopTime=10)); + experiment(Tolerance=1e-6, StopTime=10), + __Dymola_LockedEditing="Model from IBPSA"); end MixingVolumeTraceSubstance; diff --git a/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeTraceSubstanceReverseFlow.mo b/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeTraceSubstanceReverseFlow.mo index eeac0ba60b..4d8746bf82 100644 --- a/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeTraceSubstanceReverseFlow.mo +++ b/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeTraceSubstanceReverseFlow.mo @@ -16,31 +16,32 @@ equation -10,4},{8,4}}, color={0,0,127})); annotation (Documentation( info=" -

                        -This model validates the use of the mixing volume with air flowing into and out of the volume -and trace substances added to the volume. -

                        -

                        -The model volDyn uses a dynamic balance, -whereas the model volSte uses a steady-state balance. -The mass flow rate starts positive and reverses its direction at t=5 seconds. -

                        -", revisions=" -
                          -
                        • -December 7, 2016, by Michael Wetter:
                          -Set bou(C={0.003}) to avoid a negative value for -C_outflow of the steady state volume.
                          -This is for -#613. -
                        • -
                        • -January 19, 2016, by Michael Wetter:
                          -First implementation. -
                        • -
                        -"), +

                        + This model validates the use of the mixing volume with air flowing into and out of the volume + and trace substances added to the volume. +

                        +

                        + The model volDyn uses a dynamic balance, + whereas the model volSte uses a steady-state balance. + The mass flow rate starts positive and reverses its direction at t=5 seconds. +

                        + ",revisions=" +
                          +
                        • + December 7, 2016, by Michael Wetter:
                          + Set bou(C={0.003}) to avoid a negative value for + C_outflow of the steady state volume.
                          + This is for + #613. +
                        • +
                        • + January 19, 2016, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/MixingVolumes/Validation/MixingVolumeTraceSubstanceReverseFlow.mos" "Simulate and plot"), - experiment(Tolerance=1e-08, StopTime=10)); + experiment(Tolerance=1e-08, StopTime=10), + __Dymola_LockedEditing="Model from IBPSA"); end MixingVolumeTraceSubstanceReverseFlow; diff --git a/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeTraceSubstanceReverseFlowPrescribedHeatFlowRate.mo b/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeTraceSubstanceReverseFlowPrescribedHeatFlowRate.mo index c5c5eafe13..e0baa51b64 100644 --- a/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeTraceSubstanceReverseFlowPrescribedHeatFlowRate.mo +++ b/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeTraceSubstanceReverseFlowPrescribedHeatFlowRate.mo @@ -5,27 +5,28 @@ model MixingVolumeTraceSubstanceReverseFlowPrescribedHeatFlowRate prescribedHeatFlowRate=true); annotation (Documentation( info=" -

                        -This model is identical to - -AixLib.Fluid.MixingVolumes.Validation.MixingVolumeTraceSubstanceReverseFlow, -except that the steady state volume volSte -is configured to have a prescribed heat flow rate, -which is in this case zero as the heat port is not connected. -This configures volSte to use the two port -steady state heat and mass balance model - -AixLib.Fluid.Interfaces.StaticTwoPortConservationEquation. -

                        -", revisions=" -
                          -
                        • -March 9, 2016, by Michael Wetter:
                          -First implementation. -
                        • -
                        -"), +

                        + This model is identical to + + AixLib.Fluid.MixingVolumes.Validation.MixingVolumeTraceSubstanceReverseFlow, + except that the steady state volume volSte + is configured to have a prescribed heat flow rate, + which is in this case zero as the heat port is not connected. + This configures volSte to use the two port + steady state heat and mass balance model + + AixLib.Fluid.Interfaces.StaticTwoPortConservationEquation. +

                        + ",revisions=" +
                          +
                        • + March 9, 2016, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/MixingVolumes/Validation/MixingVolumeTraceSubstanceReverseFlowPrescribedHeatFlowRate.mos" "Simulate and plot"), - experiment(Tolerance=1e-6, StopTime=10)); + experiment(Tolerance=1e-6, StopTime=10), + __Dymola_LockedEditing="Model from IBPSA"); end MixingVolumeTraceSubstanceReverseFlowPrescribedHeatFlowRate; diff --git a/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeZeroFlow.mo b/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeZeroFlow.mo index e56cd849a7..7c0ac0b63f 100644 --- a/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeZeroFlow.mo +++ b/AixLib/Fluid/MixingVolumes/Validation/MixingVolumeZeroFlow.mo @@ -9,7 +9,6 @@ model MixingVolumeZeroFlow m_flow_nominal=1, V=1, energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyState, - massDynamics=Modelica.Fluid.Types.Dynamics.SteadyState, allowFlowReversal=false) "Steady state mixing volume requiring solution of non-linear system" annotation (Placement(transformation(extent={{-10,-20},{10,0}}))); @@ -38,7 +37,7 @@ model MixingVolumeZeroFlow "Prescribed temperature" annotation (Placement(transformation(extent={{-56,34},{-44,46}}))); Modelica.Blocks.Sources.Cosine cos1( - freqHz=1, + f=1, offset=283.15, amplitude=0.001) "Cosine input" annotation (Placement(transformation(extent={{-76,34},{-64,46}}))); @@ -48,7 +47,6 @@ model MixingVolumeZeroFlow m_flow_nominal=1, V=1, energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyState, - massDynamics=Modelica.Fluid.Types.Dynamics.SteadyState, allowFlowReversal=false) "Steady state mixing volume with prescribed temperature input" annotation (Placement(transformation(extent={{-10,-50},{10,-30}}))); @@ -64,7 +62,6 @@ model MixingVolumeZeroFlow m_flow_nominal=1, V=1, energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyState, - massDynamics=Modelica.Fluid.Types.Dynamics.SteadyState, allowFlowReversal=false, prescribedHeatFlowRate=false) "Steady state mixing volume requiring solution of linear system" @@ -95,7 +92,6 @@ model MixingVolumeZeroFlow m_flow_nominal=1, V=1, energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyState, - massDynamics=Modelica.Fluid.Types.Dynamics.SteadyState, allowFlowReversal=false, prescribedHeatFlowRate=true) "Steady state mixing volume with fixed heat flow rate input" @@ -172,63 +168,63 @@ equation coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}), graphics={Text( extent={{12,30},{106,10}}, - lineColor={28,108,200}, + textColor={28,108,200}, textString="<- vol.prescribedHeatFlowRate = true")}), experiment( Tolerance=1E-6, StopTime=2), Documentation(revisions=" -
                          -
                        • -January 27, 2016, by Filip Jorissen:
                          -Changed heat flow rate at zero flow to avoid triggering of -conservation of energy check. -This is for - -issue 470. -
                        • -
                        • -November 2, 2016, by Michael Wetter:
                          -Removed assertion as the variable that are tested are already -part of the regression test. -Also, the previous implementation mixed graphical with textual programming, -which we try to avoid.
                          -This is for -issue 441. -
                        • -
                        • -January 27, 2016, by Michael Wetter:
                          -Removed algorithm specification in experiment annotation. -
                        • -
                        • -July 2, 2015 by Michael Wetter:
                          -Revised example. -
                        • -
                        • -June 30, 2015 by Filip Jorissen:
                          -First implementation -to test - -issue 282. -
                        • -
                        -", info=" -

                        -This model verifies whether the equations in - -AixLib.Fluid.Interfaces.StaticTwoPortConservationEquation -are consisent for all foreseeable cases. -All MixingVolume instances contain the correct -setting for prescribedHeatFlowRate. -Switching the value will result in an error in each case. -This error either is a non-physical solution to the (non-)linear system -or a division by zero, which halts the simulation. -

                        -

                        -If you use Dymola, set Advanced.Define.AimForHighAccuracy = false to -increase the chance of the error being produced for this simple example. -

                        -"), - __Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/MixingVolumes/Validation/MixingVolumeZeroFlow.mos" - "Simulate and plot")); +
                          +
                        • + January 27, 2016, by Filip Jorissen:
                          + Changed heat flow rate at zero flow to avoid triggering of + conservation of energy check. + This is for + + issue 470. +
                        • +
                        • + November 2, 2016, by Michael Wetter:
                          + Removed assertion as the variable that are tested are already + part of the regression test. + Also, the previous implementation mixed graphical with textual programming, + which we try to avoid.
                          + This is for + issue 441. +
                        • +
                        • + January 27, 2016, by Michael Wetter:
                          + Removed algorithm specification in experiment annotation. +
                        • +
                        • + July 2, 2015 by Michael Wetter:
                          + Revised example. +
                        • +
                        • + June 30, 2015 by Filip Jorissen:
                          + First implementation + to test + + issue 282. +
                        • +
                        + ",info=" +

                        + This model verifies whether the equations in + + AixLib.Fluid.Interfaces.StaticTwoPortConservationEquation + are consisent for all foreseeable cases. + All MixingVolume instances contain the correct + setting for prescribedHeatFlowRate. + Switching the value will result in an error in each case. + This error either is a non-physical solution to the (non-)linear system + or a division by zero, which halts the simulation. +

                        +

                        + If you use Dymola, set Advanced.Define.AimForHighAccuracy = false to + increase the chance of the error being produced for this simple example. +

                        + "), + __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/MixingVolumes/Validation/MixingVolumeZeroFlow.mos" + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end MixingVolumeZeroFlow; diff --git a/AixLib/Fluid/MixingVolumes/Validation/MoistureMixingConservationDynamicBalance.mo b/AixLib/Fluid/MixingVolumes/Validation/MoistureMixingConservationDynamicBalance.mo index 6893b49cad..2622497360 100644 --- a/AixLib/Fluid/MixingVolumes/Validation/MoistureMixingConservationDynamicBalance.mo +++ b/AixLib/Fluid/MixingVolumes/Validation/MoistureMixingConservationDynamicBalance.mo @@ -4,19 +4,19 @@ model MoistureMixingConservationDynamicBalance extends AixLib.Fluid.MixingVolumes.Validation.BaseClasses.MoistureMixingConservation( mWatFloSol(k={vol.X_start[1],vol1.X_start[1],vol2.X_start[1]}*m_start), - vol(energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, massDynamics= - Modelica.Fluid.Types.Dynamics.FixedInitial), - vol1(energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, - massDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial), - vol2(energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, - massDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial), + vol( + energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial), + vol1( + energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial), + vol2( + energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial), mFloSol(k=sum(m_start)), hSol(k=sum(U_start)), mWatFlo3(k=0)); - parameter Modelica.SIunits.Mass[3] m_start(each fixed=false) + parameter Modelica.Units.SI.Mass[3] m_start(each fixed=false) "Initial mass of the mixing volumes"; - parameter Modelica.SIunits.InternalEnergy[3] U_start(each fixed=false) + parameter Modelica.Units.SI.InternalEnergy[3] U_start(each fixed=false) "Initial energy of the mixing volumes"; Modelica.Blocks.Continuous.Integrator intMasFloVapIn( k=1, @@ -192,50 +192,50 @@ equation color={0,0,127})); annotation (Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-120, -280},{180,120}})), Documentation(info=" -

                        -This model verifies if mass and energy are conserved, -using a dynamic balance. -Two air streams with different mass flow rate are humidified -by a mixing volume with two different vapor mass flow rates. -These flows are then mixed. -Boundary integrals are used to verify if air mass, -vapour mass and internal energy are conserved. -

                        -

                        -Note, however, that there is some approximation error because -in its default configuration, the conservation balance -models simplify the treatment of the water that is added -to the fluid. -See -AixLib.Fluid.Interfaces.StaticTwoPortConservationEquation -and - -AixLib.Fluid.Interfaces.StaticTwoPortConservationEquation -for a discussion. -

                        -", revisions=" -
                          -
                        • -April 24, 2017, by Michael Wetter:
                          -Removed enthalpy of liquid from entIn.
                          -This is for -Buildings, #704. -
                        • -
                        • -November 2, 2016, by Michael Wetter:
                          -Changed assertions to blocks that compute the difference, -and added the difference to the regression results.
                          -This is for -issue 564. -
                        • -
                        • -May 22 2015 by Filip Jorissen:
                          -First implementation. -
                        • -
                        -"), +

                        + This model verifies if mass and energy are conserved, + using a dynamic balance. + Two air streams with different mass flow rate are humidified + by a mixing volume with two different vapor mass flow rates. + These flows are then mixed. + Boundary integrals are used to verify if air mass, + vapour mass and internal energy are conserved. +

                        +

                        + Note, however, that there is some approximation error because + in its default configuration, the conservation balance + models simplify the treatment of the water that is added + to the fluid. + See + AixLib.Fluid.Interfaces.StaticTwoPortConservationEquation + and + + AixLib.Fluid.Interfaces.StaticTwoPortConservationEquation + for a discussion. +

                        + ",revisions=" +
                          +
                        • + April 24, 2017, by Michael Wetter:
                          + Removed enthalpy of liquid from entIn.
                          + This is for + Buildings, #704. +
                        • +
                        • + November 2, 2016, by Michael Wetter:
                          + Changed assertions to blocks that compute the difference, + and added the difference to the regression results.
                          + This is for + issue 564. +
                        • +
                        • + May 22 2015 by Filip Jorissen:
                          + First implementation. +
                        • +
                        + "), experiment(Tolerance=1e-6, StopTime=1), -__Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/MixingVolumes/Validation/MoistureMixingConservationDynamicBalance.mos" - "Simulate and plot")); +__Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/MixingVolumes/Validation/MoistureMixingConservationDynamicBalance.mos" + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end MoistureMixingConservationDynamicBalance; diff --git a/AixLib/Fluid/MixingVolumes/Validation/MoistureMixingConservationSteadyState.mo b/AixLib/Fluid/MixingVolumes/Validation/MoistureMixingConservationSteadyState.mo index 324dad9337..fce4c3400c 100644 --- a/AixLib/Fluid/MixingVolumes/Validation/MoistureMixingConservationSteadyState.mo +++ b/AixLib/Fluid/MixingVolumes/Validation/MoistureMixingConservationSteadyState.mo @@ -24,43 +24,43 @@ equation extent={{-120,-280},{180,120}}), graphics), experiment(Tolerance=1e-6, StopTime=1), Documentation(info=" -

                        -This test checks if water vapour mass is conserved. -Two air streams with different mass flow rate are humidified -by a mixing volume with two different vapor mass flow rates. -These flows are then mixed. -Afterwards the added water is removed again. -The final water concentration, mass flow rate and enthalpy -flow rate should then be equal to the initial values. -

                        -

                        -Note, however, that there is some approximation error because -in its default configuration, the conservation balance -models simplify the treatment of the water that is added -to the fluid. -See -AixLib.Fluid.Interfaces.StaticTwoPortConservationEquation -and - -AixLib.Fluid.Interfaces.StaticTwoPortConservationEquation -for a discussion. -

                        -", revisions=" -
                          -
                        • -November 2, 2016, by Michael Wetter:
                          -Changed assertions to blocks that compute the difference, -and added the difference to the regression results.
                          -This is for -issue 564. -
                        • -
                        • -May 22 2015 by Filip Jorissen:
                          -First implementation. -
                        • -
                        -"), - __Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/MixingVolumes/Validation/MoistureMixingConservationSteadyState.mos" - "Simulate and plot")); +

                        + This test checks if water vapour mass is conserved. + Two air streams with different mass flow rate are humidified + by a mixing volume with two different vapor mass flow rates. + These flows are then mixed. + Afterwards the added water is removed again. + The final water concentration, mass flow rate and enthalpy + flow rate should then be equal to the initial values. +

                        +

                        + Note, however, that there is some approximation error because + in its default configuration, the conservation balance + models simplify the treatment of the water that is added + to the fluid. + See + AixLib.Fluid.Interfaces.StaticTwoPortConservationEquation + and + + AixLib.Fluid.Interfaces.StaticTwoPortConservationEquation + for a discussion. +

                        + ",revisions=" +
                          +
                        • + November 2, 2016, by Michael Wetter:
                          + Changed assertions to blocks that compute the difference, + and added the difference to the regression results.
                          + This is for + issue 564. +
                        • +
                        • + May 22 2015 by Filip Jorissen:
                          + First implementation. +
                        • +
                        + "), + __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/MixingVolumes/Validation/MoistureMixingConservationSteadyState.mos" + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end MoistureMixingConservationSteadyState; diff --git a/AixLib/Fluid/MixingVolumes/Validation/TraceSubstanceConservationDynamicBalance.mo b/AixLib/Fluid/MixingVolumes/Validation/TraceSubstanceConservationDynamicBalance.mo index e42bafec10..e294b26953 100644 --- a/AixLib/Fluid/MixingVolumes/Validation/TraceSubstanceConservationDynamicBalance.mo +++ b/AixLib/Fluid/MixingVolumes/Validation/TraceSubstanceConservationDynamicBalance.mo @@ -62,47 +62,47 @@ equation smooth=Smooth.None)); annotation ( experiment(Tolerance=1e-08, StopTime=1), Documentation(info=" -

                        -This test checks if the trace substance flow rate is -conserved when adding moisture to a mixing volume that is configured to steady state.
                        -The trace substance flow rate at the inlet and outlet should be equal -since the trace substance concentration should not -be affected by the independent mass fraction concentration. -

                        -

                        -Note, however, that there is some approximation error because -in its default configuration, the conservation balance -models simplify the treatment of the water that is added -to the fluid. -See -AixLib.Fluid.Interfaces.StaticTwoPortConservationEquation -and - -AixLib.Fluid.Interfaces.StaticTwoPortConservationEquation -for a discussion. -

                        -", revisions=" -
                          -
                        • -November 3, 2016, by Michael Wetter:
                          -Removed wrong assignment for C_nominal.
                          -This is for -issue 568. -
                        • -
                        • -November 2, 2016, by Michael Wetter:
                          -Changed assertions to blocks that compute the difference, -and added the difference to the regression results.
                          -This is for -issue 564. -
                        • -
                        • -May 22 2015 by Filip Jorissen:
                          -First implementation. -
                        • -
                        -"), - __Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/MixingVolumes/Validation/TraceSubstanceConservationDynamicBalance.mos" - "Simulate and plot")); +

                        + This test checks if the trace substance flow rate is + conserved when adding moisture to a mixing volume that is configured to steady state.
                        + The trace substance flow rate at the inlet and outlet should be equal + since the trace substance concentration should not + be affected by the independent mass fraction concentration. +

                        +

                        + Note, however, that there is some approximation error because + in its default configuration, the conservation balance + models simplify the treatment of the water that is added + to the fluid. + See + AixLib.Fluid.Interfaces.StaticTwoPortConservationEquation + and + + AixLib.Fluid.Interfaces.StaticTwoPortConservationEquation + for a discussion. +

                        + ",revisions=" +
                          +
                        • + November 3, 2016, by Michael Wetter:
                          + Removed wrong assignment for C_nominal.
                          + This is for + issue 568. +
                        • +
                        • + November 2, 2016, by Michael Wetter:
                          + Changed assertions to blocks that compute the difference, + and added the difference to the regression results.
                          + This is for + issue 564. +
                        • +
                        • + May 22 2015 by Filip Jorissen:
                          + First implementation. +
                        • +
                        + "), + __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/MixingVolumes/Validation/TraceSubstanceConservationDynamicBalance.mos" + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end TraceSubstanceConservationDynamicBalance; diff --git a/AixLib/Fluid/MixingVolumes/Validation/TraceSubstanceConservationSteadyState.mo b/AixLib/Fluid/MixingVolumes/Validation/TraceSubstanceConservationSteadyState.mo index 4cf134d5a0..77e7e0cd62 100644 --- a/AixLib/Fluid/MixingVolumes/Validation/TraceSubstanceConservationSteadyState.mo +++ b/AixLib/Fluid/MixingVolumes/Validation/TraceSubstanceConservationSteadyState.mo @@ -32,41 +32,41 @@ equation smooth=Smooth.None)); annotation ( experiment(Tolerance=1e-6, StopTime=2), Documentation(info=" -

                        -This test checks if the trace substance flow rate is conserved -when adding moisture to a mixing volume that is configured to steady state.
                        -The trace substance flow rate at the inlet and outlet should be equal -since the trace substance concentration should not -be affected by the independent mass fraction concentration. -

                        -

                        -Note, however, that there is some approximation error because -in its default configuration, the conservation balance -models simplify the treatment of the water that is added -to the fluid. -See -AixLib.Fluid.Interfaces.StaticTwoPortConservationEquation -and - -AixLib.Fluid.Interfaces.StaticTwoPortConservationEquation -for a discussion. -

                        -", revisions=" -
                          -
                        • -November 2, 2016, by Michael Wetter:
                          -Changed assertions to blocks that compute the difference, -and added the difference to the regression results.
                          -This is for -issue 564. -
                        • -
                        • -May 22 2015 by Filip Jorissen:
                          -First implementation. -
                        • -
                        -"), - __Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/MixingVolumes/Validation/TraceSubstanceConservationSteadyState.mos" - "Simulate and plot")); +

                        + This test checks if the trace substance flow rate is conserved + when adding moisture to a mixing volume that is configured to steady state.
                        + The trace substance flow rate at the inlet and outlet should be equal + since the trace substance concentration should not + be affected by the independent mass fraction concentration. +

                        +

                        + Note, however, that there is some approximation error because + in its default configuration, the conservation balance + models simplify the treatment of the water that is added + to the fluid. + See + AixLib.Fluid.Interfaces.StaticTwoPortConservationEquation + and + + AixLib.Fluid.Interfaces.StaticTwoPortConservationEquation + for a discussion. +

                        + ",revisions=" +
                          +
                        • + November 2, 2016, by Michael Wetter:
                          + Changed assertions to blocks that compute the difference, + and added the difference to the regression results.
                          + This is for + issue 564. +
                        • +
                        • + May 22 2015 by Filip Jorissen:
                          + First implementation. +
                        • +
                        + "), + __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/MixingVolumes/Validation/TraceSubstanceConservationSteadyState.mos" + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end TraceSubstanceConservationSteadyState; diff --git a/AixLib/Fluid/MixingVolumes/package.mo b/AixLib/Fluid/MixingVolumes/package.mo index ba1a22d300..c96280b1d2 100644 --- a/AixLib/Fluid/MixingVolumes/package.mo +++ b/AixLib/Fluid/MixingVolumes/package.mo @@ -1,6 +1,7 @@ within AixLib.Fluid; package MixingVolumes "Package with mixing volumes" extends Modelica.Icons.VariantsPackage; + annotation (Documentation(info="

                        This package contains models for completely mixed volumes. diff --git a/AixLib/Fluid/Movers/BaseClasses/Characteristics/efficiency.mo b/AixLib/Fluid/Movers/BaseClasses/Characteristics/efficiency.mo index 75fb79a347..9201eea99c 100644 --- a/AixLib/Fluid/Movers/BaseClasses/Characteristics/efficiency.mo +++ b/AixLib/Fluid/Movers/BaseClasses/Characteristics/efficiency.mo @@ -3,7 +3,7 @@ function efficiency "Flow vs. efficiency characteristics for fan or pump" extends Modelica.Icons.Function; input AixLib.Fluid.Movers.BaseClasses.Characteristics.efficiencyParameters per "Efficiency performance data"; - input Modelica.SIunits.VolumeFlowRate V_flow "Volumetric flow rate"; + input Modelica.Units.SI.VolumeFlowRate V_flow "Volumetric flow rate"; input Real d[:] "Derivatives at support points for spline interpolation"; input Real r_N(unit="1") "Relative revolution, r_N=N/N_nominal"; input Real delta "Small value for switching implementation around zero rpm"; @@ -43,58 +43,59 @@ algorithm annotation(smoothOrder=1, Documentation(info=" -

                        -This function computes the fan or pump efficiency for given normalized volume flow rate -and performance data. The efficiency is -

                        -

                        - η = s(V̇/rN, d), -

                        -

                        -where -η is the efficiency, -rN is the normalized fan speed, - is the volume flow rate, and -d are performance data for fan or pump efficiency. -

                        -

                        Implementation

                        -

                        -The function s(·, ·) is a cubic hermite spline. -If the data d define a monotone decreasing sequence, then -s(·, d) is a monotone decreasing function. -

                        -", +

                        + This function computes the fan or pump efficiency for given normalized volume flow rate + and performance data. The efficiency is +

                        +

                        + η = s(V̇/rN, d), +

                        +

                        + where + η is the efficiency, + rN is the normalized fan speed, + is the volume flow rate, and + d are performance data for fan or pump efficiency. +

                        +

                        Implementation

                        +

                        + The function s(·, ·) is a cubic hermite spline. + If the data d define a monotone decreasing sequence, then + s(·, d) is a monotone decreasing function. +

                        + ", revisions=" -
                          -
                        • -December 2, 2016, by Michael Wetter:
                          -Removed min attribute as otherwise numerical noise can cause -the assertion on the limit to fail.
                          -This is for -#606. -
                        • -
                        • -November 22, 2014, by Michael Wetter:
                          -Corrected documentation as curve uses -as an independent variable. -
                        • -
                        • -September 30, 2014, by Filip Jorissen:
                          -Changed polynomial to be evaluated at V_flow -instead of r_V. -
                        • -
                        • -April 19, 2014, by Filip Jorissen:
                          -Changed polynomial to be evaluated at r_V/r_N -instead of r_V to properly account for the -scaling law. See -#202 -for a discussion and validation. -
                        • -
                        • -September 28, 2011, by Michael Wetter:
                          -First implementation. -
                        • -
                        -")); +
                          +
                        • + December 2, 2016, by Michael Wetter:
                          + Removed min attribute as otherwise numerical noise can cause + the assertion on the limit to fail.
                          + This is for + #606. +
                        • +
                        • + November 22, 2014, by Michael Wetter:
                          + Corrected documentation as curve uses + as an independent variable. +
                        • +
                        • + September 30, 2014, by Filip Jorissen:
                          + Changed polynomial to be evaluated at V_flow + instead of r_V. +
                        • +
                        • + April 19, 2014, by Filip Jorissen:
                          + Changed polynomial to be evaluated at r_V/r_N + instead of r_V to properly account for the + scaling law. See + #202 + for a discussion and validation. +
                        • +
                        • + September 28, 2011, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end efficiency; diff --git a/AixLib/Fluid/Movers/BaseClasses/Characteristics/efficiencyParameters.mo b/AixLib/Fluid/Movers/BaseClasses/Characteristics/efficiencyParameters.mo index eaf25dcc71..863111a11d 100644 --- a/AixLib/Fluid/Movers/BaseClasses/Characteristics/efficiencyParameters.mo +++ b/AixLib/Fluid/Movers/BaseClasses/Characteristics/efficiencyParameters.mo @@ -1,26 +1,27 @@ within AixLib.Fluid.Movers.BaseClasses.Characteristics; record efficiencyParameters "Record for efficiency parameters" extends Modelica.Icons.Record; - parameter Modelica.SIunits.VolumeFlowRate V_flow[:]( - each min=0) "Volumetric flow rate at user-selected operating points"; - parameter Modelica.SIunits.Efficiency eta[size(V_flow,1)]( - each max=1) "Fan or pump efficiency at these flow rates"; + parameter Modelica.Units.SI.VolumeFlowRate V_flow[:](each min=0) + "Volumetric flow rate at user-selected operating points"; + parameter Modelica.Units.SI.Efficiency eta[size(V_flow, 1)](each max=1) + "Fan or pump efficiency at these flow rates"; annotation (Documentation(info=" -

                        -Data record for performance data that describe volume flow rate versus -efficiency. -The volume flow rate r_V must be increasing, i.e., -r_V[i] < r_V[i+1]. -Both vectors, r_V and eta -must have the same size. -

                        -", +

                        + Data record for performance data that describe volume flow rate versus + efficiency. + The volume flow rate r_V must be increasing, i.e., + r_V[i] < r_V[i+1]. + Both vectors, r_V and eta + must have the same size. +

                        + ", revisions=" -
                          -
                        • -September 28, 2011, by Michael Wetter:
                          -First implementation. -
                        • -
                        -")); +
                          +
                        • + September 28, 2011, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end efficiencyParameters; diff --git a/AixLib/Fluid/Movers/BaseClasses/Characteristics/flowParameters.mo b/AixLib/Fluid/Movers/BaseClasses/Characteristics/flowParameters.mo index 752415f72e..3249130c6a 100644 --- a/AixLib/Fluid/Movers/BaseClasses/Characteristics/flowParameters.mo +++ b/AixLib/Fluid/Movers/BaseClasses/Characteristics/flowParameters.mo @@ -2,34 +2,34 @@ within AixLib.Fluid.Movers.BaseClasses.Characteristics; record flowParameters "Record for flow parameters" extends Modelica.Icons.Record; - parameter Modelica.SIunits.VolumeFlowRate V_flow[:](each min=0) + parameter Modelica.Units.SI.VolumeFlowRate V_flow[:](each min=0) "Volume flow rate at user-selected operating points"; - parameter Modelica.SIunits.PressureDifference dp[size(V_flow,1)]( - each min=0, each displayUnit="Pa") - "Fan or pump total pressure at these flow rates"; + parameter Modelica.Units.SI.PressureDifference dp[size(V_flow, 1)](each min=0, + each displayUnit="Pa") "Fan or pump total pressure at these flow rates"; annotation (Documentation(info=" -

                        -Data record for performance data that describe volume flow rate versus -pressure rise. -The volume flow rate V_flow must be increasing, i.e., -V_flow[i] < V_flow[i+1]. -Both vectors, V_flow and dp -must have the same size. -

                        -", +

                        + Data record for performance data that describe volume flow rate versus + pressure rise. + The volume flow rate V_flow must be increasing, i.e., + V_flow[i] < V_flow[i+1]. + Both vectors, V_flow and dp + must have the same size. +

                        + ", revisions=" -
                          -
                        • -January 22, 2016, by Michael Wetter:
                          -Corrected type declaration of pressure difference. -This is -for #404. -
                        • -
                        • -September 28, 2011, by Michael Wetter:
                          -First implementation. -
                        • -
                        -")); +
                          +
                        • + January 22, 2016, by Michael Wetter:
                          + Corrected type declaration of pressure difference. + This is + for #404. +
                        • +
                        • + September 28, 2011, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end flowParameters; diff --git a/AixLib/Fluid/Movers/BaseClasses/Characteristics/flowParametersInternal.mo b/AixLib/Fluid/Movers/BaseClasses/Characteristics/flowParametersInternal.mo index 537a875743..3aceee6cbb 100644 --- a/AixLib/Fluid/Movers/BaseClasses/Characteristics/flowParametersInternal.mo +++ b/AixLib/Fluid/Movers/BaseClasses/Characteristics/flowParametersInternal.mo @@ -3,48 +3,48 @@ record flowParametersInternal "Record for flow parameters with prescribed size" extends Modelica.Icons.Record; parameter Integer n "Number of elements in each array" annotation(Evaluate=true); - parameter Modelica.SIunits.VolumeFlowRate V_flow[n](each min=0) + parameter Modelica.Units.SI.VolumeFlowRate V_flow[n](each min=0) "Volume flow rate at user-selected operating points"; - parameter Modelica.SIunits.PressureDifference dp[n]( - each min=0, each displayUnit="Pa") - "Fan or pump total pressure at these flow rates"; + parameter Modelica.Units.SI.PressureDifference dp[n](each min=0, each + displayUnit="Pa") "Fan or pump total pressure at these flow rates"; annotation (Documentation(info=" -

                        -Data record for performance data that describe volume flow rate versus -pressure rise. -The volume flow rate V_flow must be increasing, i.e., -V_flow[i] < V_flow[i+1]. -Both vectors, V_flow and dp -must have the same size. -

                        -

                        -This record is identical to - -AixLib.Fluid.Movers.BaseClasses.Characteristics.flowParameters, -except that it takes the size of the array as a parameter. This is required -in Dymola 2014. Otherwise, the array size would need to be computed in - -AixLib.Fluid.Movers.BaseClasses.FlowMachineInterface -in the initial algorithm section, which is not supported. -

                        -", +

                        + Data record for performance data that describe volume flow rate versus + pressure rise. + The volume flow rate V_flow must be increasing, i.e., + V_flow[i] < V_flow[i+1]. + Both vectors, V_flow and dp + must have the same size. +

                        +

                        + This record is identical to + + AixLib.Fluid.Movers.BaseClasses.Characteristics.flowParameters, + except that it takes the size of the array as a parameter. This is required + in Dymola 2014. Otherwise, the array size would need to be computed in + + AixLib.Fluid.Movers.BaseClasses.FlowMachineInterface + in the initial algorithm section, which is not supported. +

                        + ", revisions=" -
                          -
                        • -April 11, 2016 by Michael Wetter:
                          -Corrected wrong hyperlink in documentation for -issue 450. -
                        • -
                        • -January 22, 2016, by Michael Wetter:
                          -Corrected type declaration of pressure difference. -This is -for #404. -
                        • -
                        • -March 22, 2013, by Michael Wetter:
                          -First implementation. -
                        • -
                        -")); +
                          +
                        • + April 11, 2016 by Michael Wetter:
                          + Corrected wrong hyperlink in documentation for + issue 450. +
                        • +
                        • + January 22, 2016, by Michael Wetter:
                          + Corrected type declaration of pressure difference. + This is + for #404. +
                        • +
                        • + March 22, 2013, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end flowParametersInternal; diff --git a/AixLib/Fluid/Movers/BaseClasses/Characteristics/power.mo b/AixLib/Fluid/Movers/BaseClasses/Characteristics/power.mo index 5a4020add3..298f23ca68 100644 --- a/AixLib/Fluid/Movers/BaseClasses/Characteristics/power.mo +++ b/AixLib/Fluid/Movers/BaseClasses/Characteristics/power.mo @@ -3,16 +3,16 @@ function power "Flow vs. electrical power characteristics for fan or pump" extends Modelica.Icons.Function; input AixLib.Fluid.Movers.BaseClasses.Characteristics.powerParameters per "Pressure performance data"; - input Modelica.SIunits.VolumeFlowRate V_flow "Volumetric flow rate"; + input Modelica.Units.SI.VolumeFlowRate V_flow "Volumetric flow rate"; input Real r_N(unit="1") "Relative revolution, r_N=N/N_nominal"; input Real d[:] "Derivatives at support points for spline interpolation"; input Real delta "Small value for switching implementation around zero rpm"; - output Modelica.SIunits.Power P "Power consumption"; + output Modelica.Units.SI.Power P "Power consumption"; protected Integer n=size(per.V_flow, 1) "Dimension of data vector"; - Modelica.SIunits.VolumeFlowRate rat "Ratio of V_flow/r_N"; + Modelica.Units.SI.VolumeFlowRate rat "Ratio of V_flow/r_N"; Integer i "Integer to select data interval"; algorithm @@ -44,41 +44,42 @@ algorithm end if; annotation(smoothOrder=1, Documentation(info=" -

                        -This function computes the fan power consumption for given volume flow rate, -speed and performance data. The power consumption is -

                        -

                        - P = rN3   s(V̇/rN, d), -

                        -

                        -where -P is the power consumption, -rN is the normalized fan speed, - is the volume flow rate and -d are performance data for fan or pump power consumption at rN=1. -

                        -

                        Implementation

                        -

                        -The function s(·, ·) is a cubic hermite spline. -If the data d define a monotone decreasing sequence, then -s(·, d) is a monotone decreasing function. -

                        -", +

                        + This function computes the fan power consumption for given volume flow rate, + speed and performance data. The power consumption is +

                        +

                        + P = rN3   s(V̇/rN, d), +

                        +

                        + where + P is the power consumption, + rN is the normalized fan speed, + is the volume flow rate and + d are performance data for fan or pump power consumption at rN=1. +

                        +

                        Implementation

                        +

                        + The function s(·, ·) is a cubic hermite spline. + If the data d define a monotone decreasing sequence, then + s(·, d) is a monotone decreasing function. +

                        + ", revisions=" -
                          -
                        • -February 26, 2014, by Filip Jorissen:
                          -Changed polynomial to be evaluated at V_flow/r_N -instead of V_flow to properly account for the -scaling law. See -#202 -for a discussion and validation. -
                        • -
                        • -September 28, 2011, by Michael Wetter:
                          -First implementation. -
                        • -
                        -")); +
                          +
                        • + February 26, 2014, by Filip Jorissen:
                          + Changed polynomial to be evaluated at V_flow/r_N + instead of V_flow to properly account for the + scaling law. See + #202 + for a discussion and validation. +
                        • +
                        • + September 28, 2011, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end power; diff --git a/AixLib/Fluid/Movers/BaseClasses/Characteristics/powerParameters.mo b/AixLib/Fluid/Movers/BaseClasses/Characteristics/powerParameters.mo index 8b9dd1f023..d338d21daa 100644 --- a/AixLib/Fluid/Movers/BaseClasses/Characteristics/powerParameters.mo +++ b/AixLib/Fluid/Movers/BaseClasses/Characteristics/powerParameters.mo @@ -1,31 +1,32 @@ within AixLib.Fluid.Movers.BaseClasses.Characteristics; record powerParameters "Record for electrical power parameters" extends Modelica.Icons.Record; - parameter Modelica.SIunits.VolumeFlowRate V_flow[:](each min=0) + parameter Modelica.Units.SI.VolumeFlowRate V_flow[:](each min=0) "Volume flow rate at user-selected operating points"; - parameter Modelica.SIunits.Power P[size(V_flow,1)](each min=0) + parameter Modelica.Units.SI.Power P[size(V_flow, 1)](each min=0) "Fan or pump electrical power at these flow rates"; annotation (Documentation(info=" -

                        -Data record for performance data that describe volume flow rate versus -electrical power. -The volume flow rate V_flow must be increasing, i.e., -V_flow[i] < V_flow[i+1]. -Both vectors, V_flow and P -must have the same size. -

                        -", +

                        + Data record for performance data that describe volume flow rate versus + electrical power. + The volume flow rate V_flow must be increasing, i.e., + V_flow[i] < V_flow[i+1]. + Both vectors, V_flow and P + must have the same size. +

                        + ", revisions=" -
                          -
                        • -October 10, 2012, by Michael Wetter:
                          -Fixed wrong displayUnit and -max attribute for power. -
                        • -
                        • -September 28, 2011, by Michael Wetter:
                          -First implementation. -
                        • -
                        -")); +
                          +
                        • + October 10, 2012, by Michael Wetter:
                          + Fixed wrong displayUnit and + max attribute for power. +
                        • +
                        • + September 28, 2011, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end powerParameters; diff --git a/AixLib/Fluid/Movers/BaseClasses/Characteristics/pressure.mo b/AixLib/Fluid/Movers/BaseClasses/Characteristics/pressure.mo index 1372dda572..17bda5dcf5 100644 --- a/AixLib/Fluid/Movers/BaseClasses/Characteristics/pressure.mo +++ b/AixLib/Fluid/Movers/BaseClasses/Characteristics/pressure.mo @@ -3,17 +3,18 @@ function pressure "Pump or fan head away from the origin without correction for mover flow resistance" extends Modelica.Icons.Function; - input Modelica.SIunits.VolumeFlowRate V_flow "Volumetric flow rate"; + input Modelica.Units.SI.VolumeFlowRate V_flow "Volumetric flow rate"; input Real r_N(unit="1") "Relative revolution, r_N=N/N_nominal"; input Real d[:] "Derivatives of flow rate vs. pressure at the support points"; - input Modelica.SIunits.PressureDifference dpMax(displayUnit="Pa") + input Modelica.Units.SI.PressureDifference dpMax(displayUnit="Pa") "Maximum pressure drop at nominal speed, for regularisation"; - input Modelica.SIunits.VolumeFlowRate V_flow_max + input Modelica.Units.SI.VolumeFlowRate V_flow_max "Maximum flow rate at nominal speed, for regularisation"; input AixLib.Fluid.Movers.BaseClasses.Characteristics.flowParametersInternal per "Pressure performance data"; - output Modelica.SIunits.PressureDifference dp(displayUnit="Pa") "Pressure raise"; + output Modelica.Units.SI.PressureDifference dp(displayUnit="Pa") + "Pressure raise"; protected constant Real delta = 0.05 @@ -21,7 +22,7 @@ protected constant Real delta2 = delta/2 "= delta/2"; Real r_R(unit="1") "Relative revolution, bounded below by delta"; Integer i "Integer to select data interval"; - Modelica.SIunits.VolumeFlowRate rat "Ratio of V_flow/r_R"; + Modelica.Units.SI.VolumeFlowRate rat "Ratio of V_flow/r_R"; algorithm // For r_N < delta, we restrict r_N in the term V_flow/r_N. @@ -68,45 +69,46 @@ algorithm end if; annotation(smoothOrder=1, Documentation(info=" -

                        -This function computes the fan static -pressure raise as a function of volume flow rate and revolution in the form -

                        -

                        - Δp = rN2   s(V̇/rN, d), -

                        -

                        -where -Δp is the pressure rise, -rN is the normalized fan speed, - is the volume flow rate and -d are performance data for fan or pump power consumption at rN=1. -

                        -

                        Implementation

                        -

                        -The function s(·, ·) is a cubic hermite spline. -If the data d define a monotone decreasing sequence, then -s(·, d) is a monotone decreasing function. -

                        -

                        -The function allows rN to be zero. -

                        -", +

                        + This function computes the fan static + pressure raise as a function of volume flow rate and revolution in the form +

                        +

                        + Δp = rN2   s(V̇/rN, d), +

                        +

                        + where + Δp is the pressure rise, + rN is the normalized fan speed, + is the volume flow rate and + d are performance data for fan or pump power consumption at rN=1. +

                        +

                        Implementation

                        +

                        + The function s(·, ·) is a cubic hermite spline. + If the data d define a monotone decreasing sequence, then + s(·, d) is a monotone decreasing function. +

                        +

                        + The function allows rN to be zero. +

                        + ", revisions=" -
                          -
                        • -September 8, 2016, by Michael Wetter and Filip Jorissen:
                          -Changed implementation to allow r_N = 0.
                          -This is -for #458. -
                        • -
                        • -September 7, 2016, by Michael Wetter:
                          -Moved function which was a protected function to make it public, as it -is now called by - -AixLib.Fluid.Movers.BaseClasses.FlowMachineInterface. -
                        • -
                        -")); +
                          +
                        • + September 8, 2016, by Michael Wetter and Filip Jorissen:
                          + Changed implementation to allow r_N = 0.
                          + This is + for #458. +
                        • +
                        • + September 7, 2016, by Michael Wetter:
                          + Moved function which was a protected function to make it public, as it + is now called by + + AixLib.Fluid.Movers.BaseClasses.FlowMachineInterface. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end pressure; diff --git a/AixLib/Fluid/Movers/BaseClasses/FlowMachineInterface.mo b/AixLib/Fluid/Movers/BaseClasses/FlowMachineInterface.mo index e374370ccf..a954f62e76 100644 --- a/AixLib/Fluid/Movers/BaseClasses/FlowMachineInterface.mo +++ b/AixLib/Fluid/Movers/BaseClasses/FlowMachineInterface.mo @@ -18,16 +18,16 @@ model FlowMachineInterface parameter Boolean computePowerUsingSimilarityLaws "= true, compute power exactly, using similarity laws. Otherwise approximate."; - final parameter Modelica.SIunits.VolumeFlowRate V_flow_nominal= - per.pressure.V_flow[nOri] "Nominal volume flow rate, used for homotopy"; + final parameter Modelica.Units.SI.VolumeFlowRate V_flow_nominal=per.pressure.V_flow[ + nOri] "Nominal volume flow rate, used for homotopy"; - parameter Modelica.SIunits.Density rho_default + parameter Modelica.Units.SI.Density rho_default "Fluid density at medium default state"; parameter Boolean haveVMax "Flag, true if user specified data that contain V_flow_max"; - parameter Modelica.SIunits.VolumeFlowRate V_flow_max + parameter Modelica.Units.SI.VolumeFlowRate V_flow_max "Maximum volume flow rate, used for smoothing"; parameter Integer nOri(min=1) "Number of data points for pressure curve" @@ -124,13 +124,10 @@ protected final parameter Real hydDer[size(per.hydraulicEfficiency.V_flow,1)](each fixed=false) "Coefficients for polynomial of hydraulic efficiency vs. volume flow rate"; - parameter Modelica.SIunits.PressureDifference dpMax(displayUnit="Pa")= - if haveDPMax then - per.pressure.dp[1] - else - per.pressure.dp[1] - ((per.pressure.dp[2] - per.pressure.dp[1])/( - per.pressure.V_flow[2] - per.pressure.V_flow[1]))*per.pressure.V_flow[1] - "Maximum head"; + parameter Modelica.Units.SI.PressureDifference dpMax(displayUnit="Pa") = if + haveDPMax then per.pressure.dp[1] else per.pressure.dp[1] - ((per.pressure.dp[ + 2] - per.pressure.dp[1])/(per.pressure.V_flow[2] - per.pressure.V_flow[1])) + *per.pressure.V_flow[1] "Maximum head"; parameter Real delta = 0.05 "Small value used to for regularization and to approximate an internal flow resistance of the fan"; @@ -268,17 +265,17 @@ initial equation assert(AixLib.Utilities.Math.Functions.isMonotonic(x=per.pressure.V_flow, strict=true) and per.pressure.V_flow[1] > -Modelica.Constants.eps, "The fan pressure rise must be a strictly decreasing sequence with respect to the volume flow rate, - with the first element for the fan pressure raise being non-zero. -The following performance data have been entered: -" + getArrayAsString(per.pressure.V_flow, "pressure.V_flow")); + with the first element for the fan pressure raise being non-zero. + The following performance data have been entered: + "+ getArrayAsString(per.pressure.V_flow, "pressure.V_flow")); if not haveVMax then assert((per.pressure.V_flow[nOri]-per.pressure.V_flow[nOri-1]) /((per.pressure.dp[nOri]-per.pressure.dp[nOri-1]))<0, "The last two pressure points for the fan or pump performance curve must be decreasing. - You need to set more reasonable parameters. -Received -" + getArrayAsString(per.pressure.dp, "dp")); + You need to set more reasonable parameters. + Received + "+ getArrayAsString(per.pressure.dp, "dp")); end if; @@ -286,21 +283,21 @@ Received // the minimum decrease condition if (not haveMinimumDecrease) then Modelica.Utilities.Streams.print(" -Warning: -======== -It is recommended that the volume flow rate versus pressure relation -of the fan or pump satisfies the minimum decrease condition - - (per.pressure.dp[i+1]-per.pressure.dp[i]) -d[i] = ------------------------------------------------- < " + String(-kRes) + " - (per.pressure.V_flow[i+1]-per.pressure.V_flow[i]) - - is -" + getArrayAsString({(per.pressure.dp[i+1]-per.pressure.dp[i]) + Warning: + ======== + It is recommended that the volume flow rate versus pressure relation + of the fan or pump satisfies the minimum decrease condition + + (per.pressure.dp[i+1]-per.pressure.dp[i]) + d[i] = ------------------------------------------------- < "+ String(-kRes) + " + (per.pressure.V_flow[i+1]-per.pressure.V_flow[i]) + + is + "+ getArrayAsString({(per.pressure.dp[i+1]-per.pressure.dp[i]) /(per.pressure.V_flow[i+1]-per.pressure.V_flow[i]) for i in 1:nOri-1}, "d") + " -Otherwise, a solution to the equations may not exist if the fan or pump speed is reduced. -In this situation, the solver will fail due to non-convergence and -the simulation stops."); + Otherwise, a solution to the equations may not exist if the fan or pump speed is reduced. + In this situation, the solver will fail due to non-convergence and + the simulation stops."); end if; // Correction for flow resistance of pump or fan @@ -534,19 +531,19 @@ equation Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}), graphics={ Text(extent={{56,66},{106,52}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="dp"), Text(extent={{56,8},{106,-6}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="PEle"), Text(extent={{52,-22},{102,-36}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="eta"), Text(extent={{50,-52},{100,-66}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="etaHyd"), Text(extent={{50,-72},{100,-86}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="etaMot"), Ellipse( extent={{-78,34},{44,-88}}, @@ -596,10 +593,10 @@ equation origin={-43,-31}, rotation=90), Text(extent={{56,36},{106,22}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="WFlo"), Text(extent={{56,94},{106,80}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="V_flow"), Line( points={{-74,92},{-74,40}}, @@ -614,163 +611,164 @@ equation color={0,0,0}, smooth=Smooth.Bezier)}), Documentation(info=" -

                        -This is an interface that implements the functions to compute the head, power draw -and efficiency of fans and pumps. -

                        -

                        -The nominal hydraulic characteristic (volume flow rate versus total pressure) -is given by a set of data points -using the data record per, which is an instance of - -AixLib.Fluid.Movers.Data.Generic. -A cubic hermite spline with linear extrapolation is used to compute -the performance at other operating points. -

                        -

                        -The fan or pump energy balance can be specified in two alternative ways: -

                        -
                          -
                        • -If per.use_powerCharacteristic = false, then the data points for -normalized volume flow rate versus efficiency is used to determine the efficiency, -and then the power consumption. The default is a constant efficiency of 0.7. -
                        • -
                        • -If per.use_powerCharacteristic = true, then the data points for -normalized volume flow rate versus power consumption -is used to determine the power consumption, and then the efficiency -is computed based on the actual power consumption and the flow work. -
                        • -
                        -

                        -For exceptions to this general rule, check the - -User's Guide for more information. -

                        - -

                        Implementation

                        -

                        -For numerical reasons, the user-provided data points for volume flow rate -versus pressure rise are modified to add a fan internal flow resistance. -Because this flow resistance is subtracted during the simulation when -computing the fan pressure rise, the model reproduces the exact points -that were provided by the user. -

                        -

                        -Also for numerical reasons, the pressure rise at zero flow rate and -the flow rate at zero pressure rise is added to the user-provided data, -unless the user already provides these data points. -Since Modelica 3.2 does not allow dynamic memory allocation, this -implementation required the use of three different arrays for the -situation where no additional point is added, where one additional -point is added and where two additional points are added. -The parameter curve causes the correct data record -to be used during the simulation. -

                        -", +

                        + This is an interface that implements the functions to compute the head, power draw + and efficiency of fans and pumps. +

                        +

                        + The nominal hydraulic characteristic (volume flow rate versus total pressure) + is given by a set of data points + using the data record per, which is an instance of + + AixLib.Fluid.Movers.Data.Generic. + A cubic hermite spline with linear extrapolation is used to compute + the performance at other operating points. +

                        +

                        + The fan or pump energy balance can be specified in two alternative ways: +

                        +
                          +
                        • + If per.use_powerCharacteristic = false, then the data points for + normalized volume flow rate versus efficiency is used to determine the efficiency, + and then the power consumption. The default is a constant efficiency of 0.7. +
                        • +
                        • + If per.use_powerCharacteristic = true, then the data points for + normalized volume flow rate versus power consumption + is used to determine the power consumption, and then the efficiency + is computed based on the actual power consumption and the flow work. +
                        • +
                        +

                        + For exceptions to this general rule, check the + + User's Guide for more information. +

                        + +

                        Implementation

                        +

                        + For numerical reasons, the user-provided data points for volume flow rate + versus pressure rise are modified to add a fan internal flow resistance. + Because this flow resistance is subtracted during the simulation when + computing the fan pressure rise, the model reproduces the exact points + that were provided by the user. +

                        +

                        + Also for numerical reasons, the pressure rise at zero flow rate and + the flow rate at zero pressure rise is added to the user-provided data, + unless the user already provides these data points. + Since Modelica 3.2 does not allow dynamic memory allocation, this + implementation required the use of three different arrays for the + situation where no additional point is added, where one additional + point is added and where two additional points are added. + The parameter curve causes the correct data record + to be used during the simulation. +

                        + ", revisions=" -
                          -
                        • -April 14, 2020, by Michael Wetter:
                          -Changed homotopyInitialization to a constant.
                          -This is for -AixLib, #1341. -
                        • -
                        • -December 2, 2016, by Michael Wetter:
                          -Removed min attribute as otherwise numerical noise can cause -the assertion on the limit to fail.
                          -This is for -#606. -
                        • -
                        • -February 19, 2016, by Michael Wetter and Filip Jorissen:
                          -Refactored model to make implementation clearer. -This is for -#417. -
                        • -
                        • -January 22, 2016, by Michael Wetter:
                          -Corrected type declaration of pressure difference and reformatted code. -This is -for #404. -
                        • -
                        • -September 2, 2015, by Michael Wetter:
                          -Corrected computation of -etaMot = cha.efficiency(per=per.motorEfficiency, V_flow=V_flow, d=motDer, r_N=r_N, delta=1E-4) -which previously used V_flow_max instead of V_flow. -
                        • -
                        • -January 6, 2015, by Michael Wetter:
                          -Revised model for OpenModelica. -
                        • -
                        • -November 22, 2014, by Michael Wetter:
                          -Removed in N_actual and N_filtered -the max attribute to -avoid a translation warning. -
                        • -
                        • -April 21, 2014, by Filip Jorissen and Michael Wetter:
                          -Changed model to use - -AixLib.Fluid.Movers.Data.Generic. -April 19, 2014, by Filip Jorissen:
                          -Passed extra parameters to power() and efficiency() -to be able to properly evaluate the -scaling law. See -#202 -for a discussion and validation. -
                        • -
                        • -September 27, 2013, by Michael Wetter:
                          -Reformulated per=if (curve == 1) then pCur1 elseif (curve == 2) then pCur2 else pCur3 -by moving the computation into the idividual logical branches because OpenModelica generates an -error when assign the statement to data -as pCur1, pCur2 and pCur3 have different dimensions. -
                        • -
                        • -September 17, 2013, by Michael Wetter:
                          -Added missing each keyword in declaration of parameters -that are an array. -
                        • -
                        • -March 20, 2013, by Michael Wetter:
                          -Removed assignment in declaration of pCur?.V_flow as -these parameters have the attribute fixed=false set. -
                        • -
                        • -October 11, 2012, by Michael Wetter:
                          -Added implementation of WFlo = eta * P with -guard against division by zero. -Changed implementation of etaMot=sqrt(eta) to -etaHyd = 1 to avoid infinite derivative as eta -converges to zero. -
                        • -
                        • -February 20, 2012, by Michael Wetter:
                          -Assigned value to nominal attribute of V_flow. -
                        • -
                        • -February 14, 2012, by Michael Wetter:
                          -Added filter for start-up and shut-down transient. -
                        • -
                        • -October 4 2011, by Michael Wetter:
                          -Revised the implementation of the pressure drop computation as a function -of speed and volume flow rate. -The new implementation avoids a singularity near zero volume flow rate and zero speed. -
                        • -
                        • -March 28 2011, by Michael Wetter:
                          -Added homotopy operator. -
                        • -
                        • -March 23 2010, by Michael Wetter:
                          -First implementation. -
                        • -
                        -")); +
                          +
                        • + April 14, 2020, by Michael Wetter:
                          + Changed homotopyInitialization to a constant.
                          + This is for + IBPSA, #1341. +
                        • +
                        • + December 2, 2016, by Michael Wetter:
                          + Removed min attribute as otherwise numerical noise can cause + the assertion on the limit to fail.
                          + This is for + #606. +
                        • +
                        • + February 19, 2016, by Michael Wetter and Filip Jorissen:
                          + Refactored model to make implementation clearer. + This is for + #417. +
                        • +
                        • + January 22, 2016, by Michael Wetter:
                          + Corrected type declaration of pressure difference and reformatted code. + This is + for #404. +
                        • +
                        • + September 2, 2015, by Michael Wetter:
                          + Corrected computation of + etaMot = cha.efficiency(per=per.motorEfficiency, V_flow=V_flow, d=motDer, r_N=r_N, delta=1E-4) + which previously used V_flow_max instead of V_flow. +
                        • +
                        • + January 6, 2015, by Michael Wetter:
                          + Revised model for OpenModelica. +
                        • +
                        • + November 22, 2014, by Michael Wetter:
                          + Removed in N_actual and N_filtered + the max attribute to + avoid a translation warning. +
                        • +
                        • + April 21, 2014, by Filip Jorissen and Michael Wetter:
                          + Changed model to use + + AixLib.Fluid.Movers.Data.Generic. + April 19, 2014, by Filip Jorissen:
                          + Passed extra parameters to power() and efficiency() + to be able to properly evaluate the + scaling law. See + #202 + for a discussion and validation. +
                        • +
                        • + September 27, 2013, by Michael Wetter:
                          + Reformulated per=if (curve == 1) then pCur1 elseif (curve == 2) then pCur2 else pCur3 + by moving the computation into the idividual logical branches because OpenModelica generates an + error when assign the statement to data + as pCur1, pCur2 and pCur3 have different dimensions. +
                        • +
                        • + September 17, 2013, by Michael Wetter:
                          + Added missing each keyword in declaration of parameters + that are an array. +
                        • +
                        • + March 20, 2013, by Michael Wetter:
                          + Removed assignment in declaration of pCur?.V_flow as + these parameters have the attribute fixed=false set. +
                        • +
                        • + October 11, 2012, by Michael Wetter:
                          + Added implementation of WFlo = eta * P with + guard against division by zero. + Changed implementation of etaMot=sqrt(eta) to + etaHyd = 1 to avoid infinite derivative as eta + converges to zero. +
                        • +
                        • + February 20, 2012, by Michael Wetter:
                          + Assigned value to nominal attribute of V_flow. +
                        • +
                        • + February 14, 2012, by Michael Wetter:
                          + Added filter for start-up and shut-down transient. +
                        • +
                        • + October 4 2011, by Michael Wetter:
                          + Revised the implementation of the pressure drop computation as a function + of speed and volume flow rate. + The new implementation avoids a singularity near zero volume flow rate and zero speed. +
                        • +
                        • + March 28 2011, by Michael Wetter:
                          + Added homotopy operator. +
                        • +
                        • + March 23 2010, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end FlowMachineInterface; diff --git a/AixLib/Fluid/Movers/BaseClasses/IdealSource.mo b/AixLib/Fluid/Movers/BaseClasses/IdealSource.mo index 0029a97439..16a162a1ba 100644 --- a/AixLib/Fluid/Movers/BaseClasses/IdealSource.mo +++ b/AixLib/Fluid/Movers/BaseClasses/IdealSource.mo @@ -71,82 +71,83 @@ equation Text( visible=not control_m_flow, extent={{24,44},{80,24}}, - lineColor={255,255,255}, + textColor={255,255,255}, textString="dp"), Text( visible=control_m_flow, extent={{-80,44},{-24,24}}, - lineColor={255,255,255}, + textColor={255,255,255}, textString="m")}), Documentation(info=" -

                        -Model of a fictitious pipe that is used as a base class -for a pressure source or to prescribe a mass flow rate. -

                        -

                        -Note that for fans and pumps with dynamic balance, -both the heat and the flow work are added to the volume of -air or water. This simplifies the equations compared to -adding heat to the volume, and flow work to this model. -

                        -

                        -Typically either control_m_flow or -control_dp should be true to avoid a -singular system. -If control_m_flow = true, then the mass flow rate -is set to the value of the input connector m_flow_in. -Otherwise, this model does not specify the mass flow rate. -Similarly, if control_dp = true, the head is equal to the -value of the input connector dp_in. -Otherwise, this model does not specify the head. -

                        -", +

                        + Model of a fictitious pipe that is used as a base class + for a pressure source or to prescribe a mass flow rate. +

                        +

                        + Note that for fans and pumps with dynamic balance, + both the heat and the flow work are added to the volume of + air or water. This simplifies the equations compared to + adding heat to the volume, and flow work to this model. +

                        +

                        + Typically either control_m_flow or + control_dp should be true to avoid a + singular system. + If control_m_flow = true, then the mass flow rate + is set to the value of the input connector m_flow_in. + Otherwise, this model does not specify the mass flow rate. + Similarly, if control_dp = true, the head is equal to the + value of the input connector dp_in. + Otherwise, this model does not specify the head. +

                        + ", revisions=" -
                          -
                        • -May 4, 2017, by Filip Jorissen:
                          -Implemented option to set control_dp -independently from control_m_flow. -This is -for #770. -
                        • -
                        • -March 2, 2017, by Filip Jorissen:
                          -Implemented simplification when allowFlowReversal=false. -This is -for #673. -
                        • -
                        • -March 20, 2016, by Michael Wetter:
                          -Corrected documentation for dp_in. -
                        • -
                        • -January 22, 2016, by Michael Wetter:
                          -Added units to the signal connectors. -This is -for #404. -
                        • -
                        • -October 8, 2013, by Michael Wetter:
                          -Removed parameter show_V_flow. -
                        • -
                        • -May 25, 2011 by Michael Wetter:
                          -Removed the option to add power to the medium, as this is dealt with in the volume -that is used in the mover model. -
                        • -
                        • -July 27, 2010 by Michael Wetter:
                          -Redesigned model to fix bug in medium balance. -
                        • -
                        • -April 13, 2010 by Michael Wetter:
                          -Made heat connector optional. -
                        • -
                        • -March 23, 2010 by Michael Wetter:
                          -First implementation. -
                        • -
                        -")); +
                          +
                        • + May 4, 2017, by Filip Jorissen:
                          + Implemented option to set control_dp + independently from control_m_flow. + This is + for #770. +
                        • +
                        • + March 2, 2017, by Filip Jorissen:
                          + Implemented simplification when allowFlowReversal=false. + This is + for #673. +
                        • +
                        • + March 20, 2016, by Michael Wetter:
                          + Corrected documentation for dp_in. +
                        • +
                        • + January 22, 2016, by Michael Wetter:
                          + Added units to the signal connectors. + This is + for #404. +
                        • +
                        • + October 8, 2013, by Michael Wetter:
                          + Removed parameter show_V_flow. +
                        • +
                        • + May 25, 2011 by Michael Wetter:
                          + Removed the option to add power to the medium, as this is dealt with in the volume + that is used in the mover model. +
                        • +
                        • + July 27, 2010 by Michael Wetter:
                          + Redesigned model to fix bug in medium balance. +
                        • +
                        • + April 13, 2010 by Michael Wetter:
                          + Made heat connector optional. +
                        • +
                        • + March 23, 2010 by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end IdealSource; diff --git a/AixLib/Fluid/Movers/BaseClasses/PartialFlowMachine.mo b/AixLib/Fluid/Movers/BaseClasses/PartialFlowMachine.mo index 3c0c604e45..38749d6189 100644 --- a/AixLib/Fluid/Movers/BaseClasses/PartialFlowMachine.mo +++ b/AixLib/Fluid/Movers/BaseClasses/PartialFlowMachine.mo @@ -2,6 +2,7 @@ within AixLib.Fluid.Movers.BaseClasses; partial model PartialFlowMachine "Partial model to interface fan or pump models with the medium" extends AixLib.Fluid.Interfaces.LumpedVolumeDeclarations( + final massDynamics=energyDynamics, final mSenFac=1); extends AixLib.Fluid.Interfaces.PartialTwoPortInterface( m_flow_nominal(final min=Modelica.Constants.small), @@ -42,29 +43,30 @@ partial model PartialFlowMachine parameter Boolean nominalValuesDefineDefaultPressureCurve = false "Set to true to avoid warning if m_flow_nominal and dp_nominal are used to construct the default pressure curve"; - parameter Modelica.SIunits.Time tau=1 + parameter Modelica.Units.SI.Time tau=1 "Time constant of fluid volume for nominal flow, used if energy or mass balance is dynamic" - annotation (Dialog(tab="Dynamics", - group="Nominal condition", - enable=energyDynamics <> Modelica.Fluid.Types.Dynamics.SteadyState or - massDynamics <> Modelica.Fluid.Types.Dynamics.SteadyState)); + annotation (Dialog( + tab="Dynamics", + group="Nominal condition", + enable=energyDynamics <> Modelica.Fluid.Types.Dynamics.SteadyState)); // Classes used to implement the filtered speed parameter Boolean use_inputFilter=true "= true, if speed is filtered with a 2nd order CriticalDamping filter" annotation(Dialog(tab="Dynamics", group="Filtered speed")); - parameter Modelica.SIunits.Time riseTime=30 - "Rise time of the filter (time to reach 99.6 % of the speed)" - annotation(Dialog(tab="Dynamics", group="Filtered speed",enable=use_inputFilter)); + parameter Modelica.Units.SI.Time riseTime=30 + "Rise time of the filter (time to reach 99.6 % of the speed)" annotation ( + Dialog( + tab="Dynamics", + group="Filtered speed", + enable=use_inputFilter)); parameter Modelica.Blocks.Types.Init init=Modelica.Blocks.Types.Init.InitialOutput "Type of initialization (no init/steady state/initial state/initial output)" annotation(Dialog(tab="Dynamics", group="Filtered speed",enable=use_inputFilter)); - parameter Real y_start(min=0, max=1, unit="1")=0 "Initial value of speed" - annotation(Dialog(tab="Dynamics", group="Filtered speed",enable=use_inputFilter)); // Connectors and ports - Modelica.Blocks.Interfaces.IntegerInput stage if - inputType == AixLib.Fluid.Types.InputType.Stages + Modelica.Blocks.Interfaces.IntegerInput stage + if inputType == AixLib.Fluid.Types.InputType.Stages "Stage input signal for the pressure head" annotation (Placement( transformation( @@ -90,9 +92,10 @@ partial model PartialFlowMachine iconTransformation(extent={{-10,-78},{10,-58}}))); // Variables - Modelica.SIunits.VolumeFlowRate VMachine_flow(start=_VMachine_flow) = eff.V_flow "Volume flow rate"; - Modelica.SIunits.PressureDifference dpMachine(displayUnit="Pa")= - -preSou.dp "Pressure difference"; + Modelica.Units.SI.VolumeFlowRate VMachine_flow(start=_VMachine_flow) = eff.V_flow + "Volume flow rate"; + Modelica.Units.SI.PressureDifference dpMachine(displayUnit="Pa") = -preSou.dp + "Pressure difference"; Real eta(unit="1", final quantity="Efficiency") = eff.eta "Global efficiency"; Real etaHyd(unit="1", final quantity="Efficiency") = eff.etaHyd "Hydraulic efficiency"; @@ -100,7 +103,7 @@ partial model PartialFlowMachine // Quantity to control protected - final parameter Modelica.SIunits.VolumeFlowRate _VMachine_flow = 0 + final parameter Modelica.Units.SI.VolumeFlowRate _VMachine_flow=0 "Start value for VMachine_flow, used to avoid a warning if not specified"; parameter Types.PrescribedVariable preVar "Type of prescribed variable"; @@ -123,17 +126,12 @@ protected final parameter Boolean haveVMax = (abs(per.pressure.dp[nOri]) < Modelica.Constants.eps) "Flag, true if user specified data that contain V_flow_max"; - final parameter Modelica.SIunits.VolumeFlowRate V_flow_max= - if per.havePressureCurve then - (if haveVMax then - per.pressure.V_flow[nOri] - else - per.pressure.V_flow[nOri] - (per.pressure.V_flow[nOri] - per.pressure.V_flow[ - nOri - 1])/((per.pressure.dp[nOri] - per.pressure.dp[nOri - 1]))*per.pressure.dp[nOri]) - else + final parameter Modelica.Units.SI.VolumeFlowRate V_flow_max=if per.havePressureCurve + then (if haveVMax then per.pressure.V_flow[nOri] else per.pressure.V_flow[ + nOri] - (per.pressure.V_flow[nOri] - per.pressure.V_flow[nOri - 1])/((per.pressure.dp[ + nOri] - per.pressure.dp[nOri - 1]))*per.pressure.dp[nOri]) else m_flow_nominal/rho_default "Maximum volume flow rate, used for smoothing"; - final parameter Modelica.SIunits.Density rho_default= - Medium.density_pTX( + final parameter Modelica.Units.SI.Density rho_default=Medium.density_pTX( p=Medium.p_default, T=Medium.T_default, X=Medium.X_default) "Default medium density"; @@ -143,21 +141,24 @@ protected p=p_start, X=X_start) "Medium state at start values"; - final parameter Modelica.SIunits.SpecificEnthalpy h_outflow_start = Medium.specificEnthalpy(sta_start) - "Start value for outflowing enthalpy"; + final parameter Modelica.Units.SI.SpecificEnthalpy h_outflow_start= + Medium.specificEnthalpy(sta_start) "Start value for outflowing enthalpy"; + + final parameter Modelica.Units.SI.Frequency fCut=5/(2*Modelica.Constants.pi* + riseTime) "Cut-off frequency of filter"; Modelica.Blocks.Sources.Constant[size(stageInputs, 1)] stageValues( - final k=stageInputs) if - inputType == AixLib.Fluid.Types.InputType.Stages "Stage input values" + final k=stageInputs) + if inputType == AixLib.Fluid.Types.InputType.Stages "Stage input values" annotation (Placement(transformation(extent={{-80,40},{-60,60}}))); Modelica.Blocks.Sources.Constant setConst( - final k=constInput) if - inputType == AixLib.Fluid.Types.InputType.Constant + final k=constInput) + if inputType == AixLib.Fluid.Types.InputType.Constant "Constant input set point" annotation (Placement(transformation(extent={{-80,70},{-60,90}}))); - Extractor extractor(final nin=size(stageInputs,1)) if - inputType == AixLib.Fluid.Types.InputType.Stages "Stage input extractor" + Extractor extractor(final nin=size(stageInputs,1)) + if inputType == AixLib.Fluid.Types.InputType.Stages "Stage input extractor" annotation (Placement(transformation(extent={{-50,60},{-30,40}}))); Modelica.Blocks.Routing.RealPassThrough inputSwitch @@ -171,7 +172,6 @@ protected redeclare final package Medium = Medium, final tau=tau, final energyDynamics=energyDynamics, - final massDynamics=massDynamics, final T_start=T_start, final X_start=X_start, final C_start=C_start, @@ -183,19 +183,16 @@ protected nPorts=2) "Fluid volume for dynamic model" annotation (Placement(transformation(extent={{-70,0},{-90,20}}))); - Modelica.Blocks.Continuous.Filter filter( - order=2, - f_cut=5/(2*Modelica.Constants.pi*riseTime), - final init=init, - x(each stateSelect=StateSelect.always), - final analogFilter=Modelica.Blocks.Types.AnalogFilter.CriticalDamping, - final filterType=Modelica.Blocks.Types.FilterType.LowPass) if - use_inputFilter - "Second order filter to approximate valve opening time, and to improve numerics" - annotation (Placement(transformation(extent={{20,81},{34,95}}))); - - Modelica.Blocks.Math.Gain gaiSpe(y(final unit="1")) if - inputType == AixLib.Fluid.Types.InputType.Continuous and + AixLib.Fluid.BaseClasses.ActuatorFilter filter( + final n=2, + final f=fCut, + final normalized=true, + final initType=init) if use_inputFilter + "Second order filter to approximate dynamics of pump speed, and to improve numerics" + annotation (Placement(transformation(extent={{20,61},{40,80}}))); + + Modelica.Blocks.Math.Gain gaiSpe(y(final unit="1")) + if inputType == AixLib.Fluid.Types.InputType.Continuous and speedIsInput "Gain to normalized speed using speed_nominal or speed_rpm_nominal" annotation (Placement(transformation(extent={{-4,74},{-16,86}}))); @@ -210,17 +207,17 @@ protected AixLib.Fluid.Movers.BaseClasses.PowerInterface heaDis( final motorCooledByFluid=per.motorCooledByFluid, - final delta_V_flow=1E-3*V_flow_max) if - addPowerToMedium "Heat dissipation into medium" + final delta_V_flow=1E-3*V_flow_max) + if addPowerToMedium "Heat dissipation into medium" annotation (Placement(transformation(extent={{20,-80},{40,-60}}))); - Modelica.Blocks.Math.Add PToMed(final k1=1, final k2=1) if - addPowerToMedium "Heat and work input into medium" + Modelica.Blocks.Math.Add PToMed(final k1=1, final k2=1) + if addPowerToMedium "Heat and work input into medium" annotation (Placement(transformation(extent={{50,-90},{70,-70}}))); Modelica.Thermal.HeatTransfer.Sources.PrescribedHeatFlow prePow( - final alpha=0) if - addPowerToMedium + final alpha=0) + if addPowerToMedium "Prescribed power (=heat and flow work) flow for dynamic model" annotation (Placement(transformation(extent={{-14,-104},{-34,-84}}))); @@ -256,7 +253,6 @@ protected final computePowerUsingSimilarityLaws=computePowerUsingSimilarityLaws, final haveVMax=haveVMax, final V_flow_max=V_flow_max, - r_N(start=y_start), r_V(start=m_flow_nominal/rho_default), final preVar=preVar) "Flow machine" annotation (Placement(transformation(extent={{-32,-68},{-12,-48}}))); @@ -353,11 +349,11 @@ initial equation per.havePressureCurve or (preVar == AixLib.Fluid.Movers.BaseClasses.Types.PrescribedVariable.Speed), "*** Warning: You are using a flow or pressure controlled mover with the - default pressure curve. - This leads to approximate calculations of the electrical power - consumption. Add the correct pressure curve in the record per - to obtain an accurate computation. - Setting nominalValuesDefineDefaultPressureCurve=true will suppress this warning.", + default pressure curve. + This leads to approximate calculations of the electrical power + consumption. Add the correct pressure curve in the record per + to obtain an accurate computation. + Setting nominalValuesDefineDefaultPressureCurve=true will suppress this warning.", level=AssertionLevel.warning); // The control signal is dp or m_flow but the user did not provide a pump curve. @@ -372,13 +368,13 @@ initial equation (preVar == AixLib.Fluid.Movers.BaseClasses.Types.PrescribedVariable.Speed)) or per.use_powerCharacteristic == false, "*** Warning: You are using a flow or pressure controlled mover with the - default pressure curve and you set use_powerCharacteristic = true. - Since this can cause wrong power consumption, the model will overwrite - this setting and use instead use_powerCharacteristic = false." + + default pressure curve and you set use_powerCharacteristic = true. + Since this can cause wrong power consumption, the model will overwrite + this setting and use instead use_powerCharacteristic = false."+ "Since this causes the efficiency curve to be used, - make sure that the efficiency curves in the performance record per - are correct or add the pressure curve of the mover. - Setting nominalValuesDefineDefaultPressureCurve=true will suppress this warning.", + make sure that the efficiency curves in the performance record per + are correct or add the pressure curve of the mover. + Setting nominalValuesDefineDefaultPressureCurve=true will suppress this warning.", level=AssertionLevel.warning); equation @@ -440,8 +436,8 @@ equation color={0,0,127})); connect(eff.WFlo, PToMed.u2) annotation (Line(points={{-11,-56},{-8,-56},{-8,-86}, {48,-86}}, color={0,0,127})); - connect(inputSwitch.y, filter.u) annotation (Line(points={{1,50},{16,50},{16,88}, - {18.6,88}}, color={0,0,127})); + connect(inputSwitch.y, filter.u) annotation (Line(points={{1,50},{12,50},{12,70.5}, + {18,70.5}}, color={0,0,127})); connect(senRelPre.p_rel, eff.dp_in) annotation (Line(points={{50.5,-26.35},{50.5, -38},{-18,-38},{-18,-46}}, color={0,0,127})); @@ -491,10 +487,10 @@ equation visible=energyDynamics <> Modelica.Fluid.Types.Dynamics.SteadyState, fillColor={0,100,199}), Text(extent={{64,106},{114,92}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="P"), Text(extent={{42,86},{92,72}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="y_actual"), Line( points={{0,100},{0,50}}, @@ -515,141 +511,148 @@ equation Text( visible=use_inputFilter, extent={{-20,92},{22,46}}, - lineColor={0,0,0}, + textColor={0,0,0}, fillColor={135,135,135}, fillPattern=FillPattern.Solid, textString="M", textStyle={TextStyle.Bold})}), Documentation(info=" -

                        -This is the base model for fans and pumps. -It provides an interface -between the equations that compute head and power consumption, -and the implementation of the energy and pressure balance -of the fluid. -

                        -

                        -Optionally, the fluid volume -is computed using a dynamic balance or a steady-state balance. -

                        -

                        -The parameter addPowerToMedium determines whether -any power is added to the fluid. The default is addPowerToMedium=true, -and hence the outlet enthalpy is higher than the inlet enthalpy if the -flow device is operating. -The setting addPowerToMedium=false is physically incorrect -(since the flow work, the flow friction and the fan heat do not increase -the enthalpy of the medium), but this setting does in some cases lead to simpler equations -and more robust simulation, in particular if the mass flow is equal to zero. -

                        -", +

                        + This is the base model for fans and pumps. + It provides an interface + between the equations that compute head and power consumption, + and the implementation of the energy and pressure balance + of the fluid. +

                        +

                        + Optionally, the fluid volume + is computed using a dynamic balance or a steady-state balance. +

                        +

                        + The parameter addPowerToMedium determines whether + any power is added to the fluid. The default is addPowerToMedium=true, + and hence the outlet enthalpy is higher than the inlet enthalpy if the + flow device is operating. + The setting addPowerToMedium=false is physically incorrect + (since the flow work, the flow friction and the fan heat do not increase + the enthalpy of the medium), but this setting does in some cases lead to simpler equations + and more robust simulation, in particular if the mass flow is equal to zero. +

                        + ", revisions=" -
                          -
                        • -October 25, 2019, by Jianjun Hu:
                          -Improved icon graphics annotation. This is for -#1225. -
                        • -
                        • -January 22, 2019, by Filip Jorissen:
                          -Split long assert output string into two strings to avoid compiler warnings -in JModelica.
                          -This is for -#1081. -
                        • -
                        • -January 8, 2019, by Filip Jorissen:
                          -Added assert for value of m_flow_nominal.
                          -This is for -#908. -
                        • -
                        • -March 24, 2017, by Michael Wetter:
                          -Renamed filteredSpeed to use_inputFilter.
                          -This is for -#665. -
                        • -
                        • -December 2, 2016, by Michael Wetter:
                          -Removed min attribute as otherwise numerical noise can cause -the assertion on the limit to fail.
                          -This is for -#606. -
                        • -
                        • -November 3, 2016, by Michael Wetter:
                          -Set start value for VMachine_flow to avoid a warning in - -AixLib.Fluid.Movers.Examples.MoverContinuous. -
                        • -
                        • -July 29, 2016, by Michael Wetter:
                          -Made Extractor protected so that it can be removed later -with a backwards compatible change. -
                        • -
                        • -July 19, 2016, by Filip Jorissen:
                          -Created custom implementation for extractor. -This is for -#498. -
                        • -
                        • -June 16, 2016, by Filip Jorissen:
                          -Switched position of mixing volume and mass flow rate sensor. -This is to have a consistent operating point tuple -of dp and m_flow when having -compressible flow. -This is for -#458. -
                        • -
                        • -February 19, 2016, by Michael Wetter and Filip Jorissen:
                          -Refactored model to make implementation clearer. -This model now includes code for both speed and flow prescribed models, -eliminating the need for an additional level of partial models. -This is for -#417. -
                        • -
                        • -Removed the parameter dynamicBalance. -This is for -#411. -
                        • -
                        • -November 19, 2015, by Michael Wetter:
                          -Removed assignment of parameter -showDesignFlowDirection in extends statement. -This is for -#349. -Removed assignment of min and max attributes -of the port mass flow rate as this is already done in the base class. -Removed import statement. -
                        • -
                        • -April 2, 2015, by Filip Jorissen:
                          -Added code for supporting stage input and constant input. -Added code for displaying constant set point in symbol. -
                        • -
                        • -January 24, 2015, by Michael Wetter:
                          -Propagated m_flow_small of instance vol and made -all its parameters final. -
                        • -
                        • -May 25, 2011, by Michael Wetter:
                          -Revised implementation of energy balance to avoid having to use conditionally removed models. -
                        • -
                        • -July 29, 2010, by Michael Wetter:
                          -Reduced fan time constant from 10 to 1 second. -
                        • -
                        • -July 27, 2010, by Michael Wetter:
                          -Redesigned model to fix bug in medium balance. -
                        • -
                        • March 24 2010, by Michael Wetter:
                          -First implementation. -
                        • -
                        -")); +
                          +
                        • + June 17, 2021, by Michael Wetter:
                          + Changed implementation of the filter.
                          + This is for + #1498. +
                        • +
                        • + October 25, 2019, by Jianjun Hu:
                          + Improved icon graphics annotation. This is for + #1225. +
                        • +
                        • + January 22, 2019, by Filip Jorissen:
                          + Split long assert output string into two strings to avoid compiler warnings + in JModelica.
                          + This is for + #1081. +
                        • +
                        • + January 8, 2019, by Filip Jorissen:
                          + Added assert for value of m_flow_nominal.
                          + This is for + #908. +
                        • +
                        • + March 24, 2017, by Michael Wetter:
                          + Renamed filteredSpeed to use_inputFilter.
                          + This is for + #665. +
                        • +
                        • + December 2, 2016, by Michael Wetter:
                          + Removed min attribute as otherwise numerical noise can cause + the assertion on the limit to fail.
                          + This is for + #606. +
                        • +
                        • + November 3, 2016, by Michael Wetter:
                          + Set start value for VMachine_flow to avoid a warning in + + AixLib.Fluid.Movers.Examples.MoverContinuous. +
                        • +
                        • + July 29, 2016, by Michael Wetter:
                          + Made Extractor protected so that it can be removed later + with a backwards compatible change. +
                        • +
                        • + July 19, 2016, by Filip Jorissen:
                          + Created custom implementation for extractor. + This is for + #498. +
                        • +
                        • + June 16, 2016, by Filip Jorissen:
                          + Switched position of mixing volume and mass flow rate sensor. + This is to have a consistent operating point tuple + of dp and m_flow when having + compressible flow. + This is for + #458. +
                        • +
                        • + February 19, 2016, by Michael Wetter and Filip Jorissen:
                          + Refactored model to make implementation clearer. + This model now includes code for both speed and flow prescribed models, + eliminating the need for an additional level of partial models. + This is for + #417. +
                        • +
                        • + Removed the parameter dynamicBalance. + This is for + #411. +
                        • +
                        • + November 19, 2015, by Michael Wetter:
                          + Removed assignment of parameter + showDesignFlowDirection in extends statement. + This is for + #349. + Removed assignment of min and max attributes + of the port mass flow rate as this is already done in the base class. + Removed import statement. +
                        • +
                        • + April 2, 2015, by Filip Jorissen:
                          + Added code for supporting stage input and constant input. + Added code for displaying constant set point in symbol. +
                        • +
                        • + January 24, 2015, by Michael Wetter:
                          + Propagated m_flow_small of instance vol and made + all its parameters final. +
                        • +
                        • + May 25, 2011, by Michael Wetter:
                          + Revised implementation of energy balance to avoid having to use conditionally removed models. +
                        • +
                        • + July 29, 2010, by Michael Wetter:
                          + Reduced fan time constant from 10 to 1 second. +
                        • +
                        • + July 27, 2010, by Michael Wetter:
                          + Redesigned model to fix bug in medium balance. +
                        • +
                        • March 24 2010, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end PartialFlowMachine; diff --git a/AixLib/Fluid/Movers/BaseClasses/PowerInterface.mo b/AixLib/Fluid/Movers/BaseClasses/PowerInterface.mo index d0d233160e..69ad4737ad 100644 --- a/AixLib/Fluid/Movers/BaseClasses/PowerInterface.mo +++ b/AixLib/Fluid/Movers/BaseClasses/PowerInterface.mo @@ -9,7 +9,7 @@ model PowerInterface parameter Boolean motorCooledByFluid "Flag, true if the motor is cooled by the fluid stream"; - parameter Modelica.SIunits.VolumeFlowRate delta_V_flow + parameter Modelica.Units.SI.VolumeFlowRate delta_V_flow "Factor used for setting heat input into medium to zero at very small flows"; Modelica.Blocks.Interfaces.RealInput etaHyd( @@ -40,11 +40,11 @@ model PowerInterface final unit="W") "Heat input from fan or pump to medium" annotation (Placement(transformation(extent={{100,-10},{120,10}}))); - Modelica.SIunits.Power WHyd + Modelica.Units.SI.Power WHyd "Hydraulic power input (converted to flow work and heat)"; protected - Modelica.SIunits.HeatFlowRate QThe_flow + Modelica.Units.SI.HeatFlowRate QThe_flow "Heat input from fan or pump to medium"; initial equation @@ -113,39 +113,40 @@ equation lineColor={0,0,0}, fillColor={255,0,0})}), Documentation(info=" -

                        Block that implements the functions to compute the -heat dissipation of fans and pumps. It is used by the model - -AixLib.Fluid.Movers.BaseClasses.PartialFlowMachine. -

                        -", +

                        Block that implements the functions to compute the + heat dissipation of fans and pumps. It is used by the model + + AixLib.Fluid.Movers.BaseClasses.PartialFlowMachine. +

                        + ", revisions=" -
                          -
                        • -April 14, 2020, by Michael Wetter:
                          -Changed homotopyInitialization to a constant.
                          -This is for -AixLib, #1341. -
                        • -
                        • -December 2, 2016, by Michael Wetter:
                          -Removed min attribute as otherwise numerical noise can cause -the assertion on the limit to fail.
                          -This is for -#606. -
                        • -
                        • -March 15, 2016, by Michael Wetter:
                          -Replaced spliceFunction with regStep. -This is for -issue 300. -
                        • -
                        • -February 19, 2016, by Michael Wetter:
                          -First implementation during refactoring of mover models to make implementation clearer. -This is for -#417. -
                        • -
                        -")); +
                          +
                        • + April 14, 2020, by Michael Wetter:
                          + Changed homotopyInitialization to a constant.
                          + This is for + IBPSA, #1341. +
                        • +
                        • + December 2, 2016, by Michael Wetter:
                          + Removed min attribute as otherwise numerical noise can cause + the assertion on the limit to fail.
                          + This is for + #606. +
                        • +
                        • + March 15, 2016, by Michael Wetter:
                          + Replaced spliceFunction with regStep. + This is for + issue 300. +
                        • +
                        • + February 19, 2016, by Michael Wetter:
                          + First implementation during refactoring of mover models to make implementation clearer. + This is for + #417. +
                        • +
                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end PowerInterface; diff --git a/AixLib/Fluid/Movers/BaseClasses/Types.mo b/AixLib/Fluid/Movers/BaseClasses/Types.mo index 648b8b7d1a..17da7bfd40 100644 --- a/AixLib/Fluid/Movers/BaseClasses/Types.mo +++ b/AixLib/Fluid/Movers/BaseClasses/Types.mo @@ -9,8 +9,9 @@ package Types "Package with type definitions" "Enumeration to choose what variable is prescribed"; annotation (preferredView="info", Documentation(info=" -

                        -This package contains type definitions for movers. -

                        -")); +

                        + This package contains type definitions for movers. +

                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end Types; diff --git a/AixLib/Fluid/Movers/BaseClasses/Validation/FlowMachineInterface.mo b/AixLib/Fluid/Movers/BaseClasses/Validation/FlowMachineInterface.mo index 8fb8e1c319..e72ac68264 100644 --- a/AixLib/Fluid/Movers/BaseClasses/Validation/FlowMachineInterface.mo +++ b/AixLib/Fluid/Movers/BaseClasses/Validation/FlowMachineInterface.mo @@ -27,18 +27,19 @@ equation annotation (Line(points={{-39,30},{-4,30},{-4,12}}, color={0,0,127})); annotation ( Documentation(info=" -

                        -Simple validation model for the flow machine interface model. -

                        -", revisions=" -
                          -
                        • -February 19, 2016, by Michael Wetter:
                          -First implementation. -
                        • -
                        -"), +

                        + Simple validation model for the flow machine interface model. +

                        + ",revisions=" +
                          +
                        • + February 19, 2016, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), experiment(Tolerance=1e-6, StopTime=1.0), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Movers/BaseClasses/Validation/FlowMachineInterface.mos" - "Simulate and plot")); + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end FlowMachineInterface; diff --git a/AixLib/Fluid/Movers/BaseClasses/Validation/PowerInterface.mo b/AixLib/Fluid/Movers/BaseClasses/Validation/PowerInterface.mo index b5be3eb0c5..19077d4935 100644 --- a/AixLib/Fluid/Movers/BaseClasses/Validation/PowerInterface.mo +++ b/AixLib/Fluid/Movers/BaseClasses/Validation/PowerInterface.mo @@ -38,18 +38,19 @@ equation -20,-30},{-12,-30}}, color={0,0,127})); annotation ( Documentation(info=" -

                        -Simple validation model for the power interface model. -

                        -", revisions=" -
                          -
                        • -February 19, 2016, by Michael Wetter:
                          -First implementation. -
                        • -
                        -"), +

                        + Simple validation model for the power interface model. +

                        + ",revisions=" +
                          +
                        • + February 19, 2016, by Michael Wetter:
                          + First implementation. +
                        • +
                        + "), experiment(Tolerance=1e-6, StopTime=1), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Movers/BaseClasses/Validation/PowerInterface.mos" - "Simulate and plot")); + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end PowerInterface; diff --git a/AixLib/Fluid/Movers/Compressors/BaseClasses/PartialCompression.mo b/AixLib/Fluid/Movers/Compressors/BaseClasses/PartialCompression.mo index 7b44e9d570..fb1f52ed13 100644 --- a/AixLib/Fluid/Movers/Compressors/BaseClasses/PartialCompression.mo +++ b/AixLib/Fluid/Movers/Compressors/BaseClasses/PartialCompression.mo @@ -1,24 +1,22 @@ -within AixLib.Fluid.Movers.Compressors.BaseClasses; +within AixLib.Fluid.Movers.Compressors.BaseClasses; partial model PartialCompression "Partial model for compression that contains basic definitions used in various compressor models" // Definition of parameters describing the geometry // - parameter Modelica.SIunits.Volume - VDis(min=0) = 13e-6 + parameter Modelica.Units.SI.Volume VDis(min=0) = 13e-6 "Displacement volume of the compressor" - annotation(Dialog(tab="General",group="Geometry")); - parameter Modelica.SIunits.Efficiency - epsRef(min=0, max=1, nominal=0.05) = 0.04 - "Ratio of the real and the ideal displacement volume" - annotation(Dialog(tab="General",group="Geometry")); + annotation (Dialog(tab="General", group="Geometry")); + parameter Modelica.Units.SI.Efficiency epsRef( + min=0, + max=1, + nominal=0.05) = 0.04 "Ratio of the real and the ideal displacement volume" + annotation (Dialog(tab="General", group="Geometry")); - parameter Modelica.SIunits.Frequency - rotSpeMax(min=0) = 120 - "Maximal rotational speed executable by the compressor" - annotation(Dialog(tab="General",group="Compressor's characterisitcs"), - HideResult=true); + parameter Modelica.Units.SI.Frequency rotSpeMax(min=0) = 120 + "Maximal rotational speed executable by the compressor" annotation (Dialog( + tab="General", group="Compressor's characterisitcs"), HideResult=true); parameter Real piPreMax(min=1, unit="1") = 15 "Maximal pressure ratio executable by the compressor" @@ -28,10 +26,9 @@ partial model PartialCompression parameter Boolean useInpFil = true "= true, if transient behaviour of rotational speed is computed" annotation(Dialog(group="Transient behaviour")); - parameter Modelica.SIunits.Time risTim = 0.5 + parameter Modelica.Units.SI.Time risTim=0.5 "Time until rotational speed reaches 99.6 % of its set value" - annotation(Dialog(enable = useInpFil, - group="Transient behaviour")); + annotation (Dialog(enable=useInpFil, group="Transient behaviour")); // Definition of models describing efficiencies // @@ -89,10 +86,9 @@ partial model PartialCompression // Definition of parameters describing nominal conditions // - parameter Modelica.SIunits.MassFlowRate m_flow_nominal = 0.1 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=0.1 "Nominal mass flow rate" - annotation(Dialog(tab="Advanced"), - HideResult=true); + annotation (Dialog(tab="Advanced"), HideResult=true); // Definition of parameters describing diagnostics // @@ -107,30 +103,28 @@ partial model PartialCompression // Definition of parameters used for initialisation // - parameter Modelica.SIunits.Frequency rotSpe0 = 60 - "Compressor's rotational spped at initialisation" - annotation(Dialog(tab="Advanced",group="Initialisation"), - HideResult=true); - parameter Modelica.SIunits.AbsolutePressure pInl0 = 3e5 - "Pressure at compressor's inlet at initialisation" - annotation(Dialog(tab="Advanced",group="Initialisation"), - HideResult=true); - parameter Modelica.SIunits.Temperature TInl0 = 283.15 - "Temperature at compressor's inlet at initialisation" - annotation(Dialog(tab="Advanced",group="Initialisation"), - HideResult=true); - parameter Modelica.SIunits.Density dInl0= - Medium.density(Medium.setState_pTX(p=pInl0,T=TInl0)) - "Density at compressor's inlet at initialisation" - annotation(Dialog(tab="Advanced",group="Initialisation", - enable=false), - HideResult=true); - parameter Modelica.SIunits.SpecificEnthalpy hInl0= - Medium.specificEnthalpy(Medium.setState_pTX(p=pInl0,T=TInl0)) - "Specific enthalpy at compressor's inlet at initialisation" - annotation(Dialog(tab="Advanced",group="Initialisation", - enable=false), - HideResult=true); + parameter Modelica.Units.SI.Frequency rotSpe0=60 + "Compressor's rotational spped at initialisation" annotation (Dialog(tab= + "Advanced", group="Initialisation"), HideResult=true); + parameter Modelica.Units.SI.AbsolutePressure pInl0=3e5 + "Pressure at compressor's inlet at initialisation" annotation (Dialog(tab= + "Advanced", group="Initialisation"), HideResult=true); + parameter Modelica.Units.SI.Temperature TInl0=283.15 + "Temperature at compressor's inlet at initialisation" annotation (Dialog( + tab="Advanced", group="Initialisation"), HideResult=true); + parameter Modelica.Units.SI.Density dInl0=Medium.density(Medium.setState_pTX( + p=pInl0, T=TInl0)) "Density at compressor's inlet at initialisation" + annotation (Dialog( + tab="Advanced", + group="Initialisation", + enable=false), HideResult=true); + parameter Modelica.Units.SI.SpecificEnthalpy hInl0=Medium.specificEnthalpy( + Medium.setState_pTX(p=pInl0, T=TInl0)) + "Specific enthalpy at compressor's inlet at initialisation" annotation ( + Dialog( + tab="Advanced", + group="Initialisation", + enable=false), HideResult=true); // Definition of connectors and submodels // @@ -208,17 +202,14 @@ partial model PartialCompression Medium.ThermodynamicState staOut "Thermodynamic state at outlet conditions"; - Modelica.SIunits.SpecificEntropy sInl + Modelica.Units.SI.SpecificEntropy sInl "Specific entropy at inlet conditions"; - Modelica.SIunits.SpecificEntropy sOut + Modelica.Units.SI.SpecificEntropy sOut "Specific entropy at outlet conditions"; - Modelica.SIunits.Efficiency etaEng - "Overall engine efficiency"; - Modelica.SIunits.Efficiency etaVol - "Overall volumetric efficiency"; - Modelica.SIunits.Efficiency etaIse - "Overall isentropic efficiency"; + Modelica.Units.SI.Efficiency etaEng "Overall engine efficiency"; + Modelica.Units.SI.Efficiency etaVol "Overall volumetric efficiency"; + Modelica.Units.SI.Efficiency etaIse "Overall isentropic efficiency"; end CompressorStates; record CompressorQualities @@ -237,14 +228,10 @@ partial model PartialCompression Real quaOut(min=0, max=1, unit="1") "Vapour quality at outlet conditions"; - Modelica.SIunits.SpecificEnthalpy hLiqInl - "Liquid enthalpy at inlet"; - Modelica.SIunits.SpecificEnthalpy hVapInl - "Vapour enthalpy at inlet"; - Modelica.SIunits.SpecificEnthalpy hLiqOut - "Liquid enthalpy at outlet"; - Modelica.SIunits.SpecificEnthalpy hVapOut - "Vapour enthalpy at outlet"; + Modelica.Units.SI.SpecificEnthalpy hLiqInl "Liquid enthalpy at inlet"; + Modelica.Units.SI.SpecificEnthalpy hVapInl "Vapour enthalpy at inlet"; + Modelica.Units.SI.SpecificEnthalpy hLiqOut "Liquid enthalpy at outlet"; + Modelica.Units.SI.SpecificEnthalpy hVapOut "Vapour enthalpy at outlet"; end CompressorQualities; CompressorStates comSta( @@ -281,18 +268,18 @@ partial model PartialCompression hOut

                        - - - - - - - - - - - - - - - - - - - - - +
                        - Efficiency - - Formula - - Comment -
                        - Engine - - ηeng = Q̇ref / Pel - - Used for calculation of compressor's power consumption -
                        - Isentropic - - ηise = (houtIse - hinl) / - (hout - hinl) - - Used for calculation of thermodynamic change of state -
                        - Volumetric - - ηvol = V̇ide / - V̇rea - - Used for calculation of mass flow rate -
                        +
                        + \"Efficiencies\" border=\"1\" cellspacing=\"0\" cellpadding= \"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + + + + + + +
                        + Efficiency + + Formula + + Comment +
                        + Engine + + ηeng = Q̇ref / + Pel + + Used for calculation of compressor's power consumption +
                        + Isentropic + + ηise = (houtIse - + hinl) / (hout - hinl) + + Used for calculation of thermodynamic change of state +
                        + Volumetric + + ηvol = V̇ide / + V̇rea + + Used for calculation of mass flow rate +
                        +

                        + These efficiency models are stored in + AixLib.Fluid.Movers.Compressors.Utilities.EngineEfficiency, + + AixLib.Fluid.Movers.Compressors.Utilities.IsentropicEfficiency + and + AixLib.Fluid.Movers.Compressors.Utilities.VolumetricEfficiency. + Therefore, the calculation procedure of the efficiencies are + introduced as replaceable models and must be defined by the User. +

                        +

                        + Transient behaviour +

                        +

                        + The base model has a parameter useInpFil that is + used to model the compressors's transient behaviour while + changing rotational speed. Generally, this approach uses the same + modeling attempt as the stat-up and shut-down transients + introtuced for flow machines (see AixLib.Fluid.Movers.UsersGuide). + Therefore, just the parameter's affections are presented here: +

                        +
                          +
                        1. If useInpFil=false, then the input signal + opeSet.y is equal to the compressor's rotational speed. + Thus, a step change in the input signal causes a step change in + the rotational speed. +
                        2. +
                        3. If useInpFil=true, which is the default, then + the rotational speed is equal to the output of a filter. This + filter is implemented as a 2nd order differential equation. Thus, + a step change in the compressor's input signal will cause a + gradual change in the rotational speed. The filter has a + parameter risTim, which by default is set to + 1 second. The rise time is the time required to reach + 99.6% of the full rotational speed, or, if the compressor + is shut-down, to reach a rotational speed of 0.4%. +
                        4. +
                        +

                        + References +

                        +

                        + In the following, some general references are given for + information about modelling compressors. The modelling approach + presented here is alligned to the modelling approaches presented + in the literature: +

                        +

                        + W. Eifler, E. Schlücker, U. Spicher and G. Will (2009): Küttner + Kolbenmaschinen: Kolbenpumpen, Kolbenverdichter, + Brennkraftmaschinen (in German). Publisher: Vieweg + + Teubner +

                        +

                        + H. Qiao, R. Radermacher and V. Aute (2010): A review for numerical + simulation of vapor compression systems. In: International + Refrigeration and Air Conditioning Conference +

                        +

                        + P.C. Hanlon (2011): + Compressor Handbook. Publisher: McGraw-Hill +

                        +

                        + V. A. Cara Martin and R. Radermacher (2015): + AHRI Project 8013: A Study of Methods to Represent Compressor + Performance Data over an Operating Envelope Based on a Finite Set + of Test Data. Publisher: Air-Conditioning, Heating, and + Refrigeration Institute (AHRI) +

                        +
                        -

                        - These efficiency models are stored in - AixLib.Fluid.Movers.Compressors.Utilities.EngineEfficiency, - - AixLib.Fluid.Movers.Compressors.Utilities.IsentropicEfficiency - and - AixLib.Fluid.Movers.Compressors.Utilities.VolumetricEfficiency. - Therefore, the calculation procedure of the efficiencies are - introduced as replaceable models and must be defined by the User. -

                        -

                        - Transient behaviour -

                        -

                        - The base model has a parameter useInpFil that is used to - model the compressors's transient behaviour while changing rotational - speed. Generally, this approach uses the same modeling attempt as the - stat-up and shut-down transients introtuced for flow machines (see - AixLib.Fluid.Movers.UsersGuide). - Therefore, just the parameter's affections are presented here: -

                        -
                          -
                        1. If useInpFil=false, then the input signal - opeSet.y is equal to the compressor's rotational speed. - Thus, a step change in the input signal causes a step change in the - rotational speed. -
                        2. -
                        3. If useInpFil=true, which is the default, then the - rotational speed is equal to the output of a filter. This filter is - implemented as a 2nd order differential equation. Thus, a step change - in the compressor's input signal will cause a gradual change in the - rotational speed. The filter has a parameter risTim, - which by default is set to 1 second. The rise time is the time - required to reach 99.6% of the full rotational speed, or, if - the compressor is shut-down, to reach a rotational speed of - 0.4%. -
                        4. -
                        -

                        - References -

                        -

                        - In the following, some general references are given for information - about modelling compressors. The modelling approach presented here is - alligned to the modelling approaches presented in the literature: -

                        -

                        - W. Eifler, E. Schlücker, U. Spicher and G. Will (2009): Küttner - Kolbenmaschinen: Kolbenpumpen, Kolbenverdichter, Brennkraftmaschinen - (in German). Publisher: Vieweg + Teubner -

                        -

                        - H. Qiao, R. Radermacher and V. Aute (2010): A review for numerical - simulation of vapor compression systems. In: International - Refrigeration and Air Conditioning Conference -

                        -

                        - P.C. Hanlon (2011): Compressor - Handbook. Publisher: McGraw-Hill -

                        -

                        - V. A. Cara Martin and R. Radermacher (2015): - AHRI Project 8013: A Study of Methods to Represent Compressor - Performance Data over an Operating Envelope Based on a Finite Set of - Test Data. Publisher: Air-Conditioning, Heating, and - Refrigeration Institute (AHRI) -

                        ")); end PartialCompression; diff --git a/AixLib/Fluid/Movers/Compressors/BaseClasses/PartialCompressor.mo b/AixLib/Fluid/Movers/Compressors/BaseClasses/PartialCompressor.mo index bafd488436..c65388564b 100644 --- a/AixLib/Fluid/Movers/Compressors/BaseClasses/PartialCompressor.mo +++ b/AixLib/Fluid/Movers/Compressors/BaseClasses/PartialCompressor.mo @@ -13,28 +13,24 @@ partial model PartialCompressor // Definition of parameters describing general options // - parameter Modelica.SIunits.Volume - VDis(min=0) = 13e-6 + parameter Modelica.Units.SI.Volume VDis(min=0) = 13e-6 "Displacement volume of the compressor" - annotation(Dialog(tab="General",group="Geometry")); - parameter Modelica.SIunits.Efficiency - epsRef(min=0, max=1, nominal=0.05) = 0.04 - "Ratio of the real and the ideal displacement volume" - annotation(Dialog(tab="General",group="Geometry")); - parameter Modelica.SIunits.Diameter - diameterInl(min=0) = 12e-3 + annotation (Dialog(tab="General", group="Geometry")); + parameter Modelica.Units.SI.Efficiency epsRef( + min=0, + max=1, + nominal=0.05) = 0.04 "Ratio of the real and the ideal displacement volume" + annotation (Dialog(tab="General", group="Geometry")); + parameter Modelica.Units.SI.Diameter diameterInl(min=0) = 12e-3 "Diameter of the pipe at compressor's inlet" - annotation(Dialog(tab="General",group="Geometry")); - parameter Modelica.SIunits.Diameter - diameterOut(min=0) = 8e-3 + annotation (Dialog(tab="General", group="Geometry")); + parameter Modelica.Units.SI.Diameter diameterOut(min=0) = 8e-3 "Diameter of the pipe at compressor's outlet" - annotation(Dialog(tab="General",group="Geometry")); + annotation (Dialog(tab="General", group="Geometry")); - parameter Modelica.SIunits.Frequency - rotSpeMax(min=0) = 120 - "Maximal rotational speed executable by the compressor" - annotation(Dialog(tab="General",group="Compressor's characterisitcs"), - HideResult=true); + parameter Modelica.Units.SI.Frequency rotSpeMax(min=0) = 120 + "Maximal rotational speed executable by the compressor" annotation (Dialog( + tab="General", group="Compressor's characterisitcs"), HideResult=true); parameter Real piPreMax(min=1, unit="1") = 15 "Maximal pressure ratio executable by the compressor" @@ -44,10 +40,9 @@ partial model PartialCompressor parameter Boolean useInpFil = true "= true, if transient behaviour of rotational speed is computed" annotation(Dialog(group="Transient behaviour")); - parameter Modelica.SIunits.Time risTim = 0.5 + parameter Modelica.Units.SI.Time risTim=0.5 "Time until rotational speed reaches 99.6 % of its set value" - annotation(Dialog(enable = useInpFil, - group="Transient behaviour")); + annotation (Dialog(enable=useInpFil, group="Transient behaviour")); // Definition of models describing efficiencies // @@ -127,45 +122,48 @@ partial model PartialCompressor annotation(Dialog(tab = "Heat losses",group="General", enable = if (simCom == Utilities.Types.SimpleCompressor.RotaryCompressorPressureHeatLosses) then true else false)); - parameter Modelica.SIunits.Mass mWal=2.5 - "Mass of the fictitious wall" - annotation(Dialog(tab = "Heat losses",group="Geometry", - enable = if (simCom == Utilities.Types.SimpleCompressor.RotaryCompressorPressureHeatLosses) - then true else false)); - parameter Modelica.SIunits.SpecificHeatCapacity cpWal=450 - "Specific heat capacity of the fictitious wall" - annotation(Dialog(tab = "Heat losses",group="Geometry", - enable = if (simCom == Utilities.Types.SimpleCompressor.RotaryCompressorPressureHeatLosses) - then true else false)); - parameter Modelica.SIunits.ThermalConductance kAMeaInl=25 - "Effective mean thermal conductance between medium and fictitious wall - at inlet" - annotation(Dialog(tab = "Heat losses",group="Thermal conductances", - enable = if (simCom == Utilities.Types.SimpleCompressor.RotaryCompressorPressureHeatLosses) - then true else false)); - parameter Modelica.SIunits.ThermalConductance kAMeaOut=35 - "Effective mean thermal conductance between medium and fictitious wall - at outlet" - annotation(Dialog(tab = "Heat losses",group="Thermal conductances", - enable = if (simCom == Utilities.Types.SimpleCompressor.RotaryCompressorPressureHeatLosses) - then true else false)); - parameter Modelica.SIunits.ThermalConductance kAMeaAmb=5 - "Effective mean thermal conductance coefficient between fictitious wall - and ambient" - annotation(Dialog(tab = "Heat losses",group="Thermal conductances", - enable = if (simCom == Utilities.Types.SimpleCompressor.RotaryCompressorPressureHeatLosses) - then true else false)); + parameter Modelica.Units.SI.Mass mWal=2.5 "Mass of the fictitious wall" + annotation (Dialog( + tab="Heat losses", + group="Geometry", + enable=if (simCom == Utilities.Types.SimpleCompressor.RotaryCompressorPressureHeatLosses) + then true else false)); + parameter Modelica.Units.SI.SpecificHeatCapacity cpWal=450 + "Specific heat capacity of the fictitious wall" annotation (Dialog( + tab="Heat losses", + group="Geometry", + enable=if (simCom == Utilities.Types.SimpleCompressor.RotaryCompressorPressureHeatLosses) + then true else false)); + parameter Modelica.Units.SI.ThermalConductance kAMeaInl=25 "Effective mean thermal conductance between medium and fictitious wall + at inlet" annotation (Dialog( + tab="Heat losses", + group="Thermal conductances", + enable=if (simCom == Utilities.Types.SimpleCompressor.RotaryCompressorPressureHeatLosses) + then true else false)); + parameter Modelica.Units.SI.ThermalConductance kAMeaOut=35 "Effective mean thermal conductance between medium and fictitious wall + at outlet" annotation (Dialog( + tab="Heat losses", + group="Thermal conductances", + enable=if (simCom == Utilities.Types.SimpleCompressor.RotaryCompressorPressureHeatLosses) + then true else false)); + parameter Modelica.Units.SI.ThermalConductance kAMeaAmb=5 "Effective mean thermal conductance coefficient between fictitious wall + and ambient" annotation (Dialog( + tab="Heat losses", + group="Thermal conductances", + enable=if (simCom == Utilities.Types.SimpleCompressor.RotaryCompressorPressureHeatLosses) + then true else false)); parameter Boolean iniTWal0=true "= true, if wall is initialised at fixed temperature; Otherwise, steady state initialisation" annotation(Dialog(tab = "Heat losses",group="Initialisation", enable = if (simCom == Utilities.Types.SimpleCompressor.RotaryCompressorPressureHeatLosses) then true else false)); - parameter Modelica.SIunits.Temperature TWal0=293.15 - "Temperature of wall at initialisation" - annotation(Dialog(tab = "Heat losses",group="Initialisation", - enable = if (simCom == Utilities.Types.SimpleCompressor.RotaryCompressorPressureHeatLosses) - then true else false)); + parameter Modelica.Units.SI.Temperature TWal0=293.15 + "Temperature of wall at initialisation" annotation (Dialog( + tab="Heat losses", + group="Initialisation", + enable=if (simCom == Utilities.Types.SimpleCompressor.RotaryCompressorPressureHeatLosses) + then true else false)); // Definition of parameters deschribing assumptions // @@ -180,20 +178,18 @@ partial model PartialCompressor // Definition of parameters describing advanced options // - parameter Modelica.SIunits.PressureDifference - dp_start(displayUnit="Pa") = -20e5 + parameter Modelica.Units.SI.PressureDifference dp_start(displayUnit="Pa") = -20e5 "Guess value of compressor's dp = port_a.p - port_b.p" - annotation(Dialog(tab = "Advanced",group="General")); + annotation (Dialog(tab="Advanced", group="General")); parameter Medium.MassFlowRate m_flow_start = 0.5*m_flow_nominal "Guess value of compressor's m_flow = port_a.m_flowr" annotation(Dialog(tab = "Advanced",group="General")); parameter Medium.MassFlowRate m_flow_small = 1e-6*m_flow_nominal "Small mass flow rate for regularization of compressor's zero flow" annotation(Dialog(tab = "Advanced",group="General")); - parameter Modelica.SIunits.MassFlowRate m_flow_nominal = 0.1 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=0.1 "Nominal mass flow rate" - annotation(Dialog(tab="Advanced",group="General"), - HideResult=true); + annotation (Dialog(tab="Advanced", group="General"), HideResult=true); // Definition of parameters describing diagnostics // @@ -214,18 +210,15 @@ partial model PartialCompressor // Definition of parameters used for initialisation // - parameter Modelica.SIunits.Frequency rotSpe0 = 60 - "Compressor's rotational spped at initialisation" - annotation(Dialog(tab="Advanced",group="Initialisation"), - HideResult=true); - parameter Modelica.SIunits.AbsolutePressure pInl0 = 3e5 - "Pressure at compressor's inlet at initialisation" - annotation(Dialog(tab="Advanced",group="Initialisation"), - HideResult=true); - parameter Modelica.SIunits.Temperature TInl0 = 283.15 - "Temperature at compressor's inlet at initialisation" - annotation(Dialog(tab="Advanced",group="Initialisation"), - HideResult=true); + parameter Modelica.Units.SI.Frequency rotSpe0=60 + "Compressor's rotational spped at initialisation" annotation (Dialog(tab= + "Advanced", group="Initialisation"), HideResult=true); + parameter Modelica.Units.SI.AbsolutePressure pInl0=3e5 + "Pressure at compressor's inlet at initialisation" annotation (Dialog(tab= + "Advanced", group="Initialisation"), HideResult=true); + parameter Modelica.Units.SI.Temperature TInl0=283.15 + "Temperature at compressor's inlet at initialisation" annotation (Dialog( + tab="Advanced", group="Initialisation"), HideResult=true); // Definition of submodels // diff --git a/AixLib/Fluid/Movers/Compressors/BaseClasses/PartialEfficiency.mo b/AixLib/Fluid/Movers/Compressors/BaseClasses/PartialEfficiency.mo index 4b6c1ae421..6f3d0da94f 100644 --- a/AixLib/Fluid/Movers/Compressors/BaseClasses/PartialEfficiency.mo +++ b/AixLib/Fluid/Movers/Compressors/BaseClasses/PartialEfficiency.mo @@ -11,20 +11,20 @@ partial model PartialEfficiency // Definition of inputs // - input Modelica.SIunits.Efficiency epsRef(min=0, max=1, nominal=0.05) - "Ratio of the real and the ideal displacement volume"; - input Modelica.SIunits.Volume VDis(min=0) - "Displacement volume"; + input Modelica.Units.SI.Efficiency epsRef( + min=0, + max=1, + nominal=0.05) "Ratio of the real and the ideal displacement volume"; + input Modelica.Units.SI.Volume VDis(min=0) "Displacement volume"; input Real piPre(min=0, unit="1") "Ratio of compressor's outlet and inlet pressure"; - input Modelica.SIunits.Frequency rotSpe(min=0) + input Modelica.Units.SI.Frequency rotSpe(min=0) "Compressor's current rotational speed"; input Medium.ThermodynamicState staInl "Thermodynamic state at compressor's inlet"; input Medium.ThermodynamicState staOut "Thermodynamic state at compressor's outlet"; - input Modelica.SIunits.Temperature TAmb - "Ambient temperature"; + input Modelica.Units.SI.Temperature TAmb "Ambient temperature"; annotation (Icon(coordinateSystem(preserveAspectRatio=false), graphics={ @@ -74,96 +74,101 @@ partial model PartialEfficiency AixLib.Fluid.Movers.Compressors.Utilities.VolumetricEfficiency. These inputs are summarised below:

                        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
                        - Type - - Name - - Comment -
                        - input - - epsRef - - Ratio of the real and the ideal displacement volume -
                        - input - - VDis - - Displacement volume -
                        - input - - piPre - - Pressure ratio -
                        - input - - rotSpe - - Rotational speed -
                        - input - - staInl - - Thermodynamic state at compressor's inlet conditions -
                        - input - - staOut - - Thermodynamic state at compressor's out conditions -
                        - input - - TAmb - - Ambient temperature -
                        +
                        + \"Inputs and outputs\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        + Type + + Name + + Comment +
                        + input + + epsRef + + Ratio of the real and the ideal displacement volume +
                        + input + + VDis + + Displacement volume +
                        + input + + piPre + + Pressure ratio +
                        + input + + rotSpe + + Rotational speed +
                        + input + + staInl + + Thermodynamic state at compressor's inlet conditions +
                        + input + + staOut + + Thermodynamic state at compressor's out conditions +
                        + input + + TAmb + + Ambient temperature +
                        +
                        ")); end PartialEfficiency; diff --git a/AixLib/Fluid/Movers/Compressors/BaseClasses/PartialModularCompressors.mo b/AixLib/Fluid/Movers/Compressors/BaseClasses/PartialModularCompressors.mo index b0620c89ff..5c29494b68 100644 --- a/AixLib/Fluid/Movers/Compressors/BaseClasses/PartialModularCompressors.mo +++ b/AixLib/Fluid/Movers/Compressors/BaseClasses/PartialModularCompressors.mo @@ -72,32 +72,26 @@ partial model PartialModularCompressors // Definition of parameters describing general options // - parameter Modelica.SIunits.Volume - VDis[nCom](min=0) = fill(13e-6, nCom) - "Displacement volume of the compressor" - annotation(Dialog(tab="Compressors",group="Geometry"), - HideResult=not show_parCom); - parameter Modelica.SIunits.Efficiency - epsRef[nCom](min=0, max=1, nominal=0.05) = fill(0.04, nCom) - "Ratio of the real and the ideal displacement volume" - annotation(Dialog(tab="Compressors",group="Geometry"), - HideResult=not show_parCom); - parameter Modelica.SIunits.Diameter - diameterInl[nCom](min=0) = fill(12e-3, nCom) - "Diameter of the pipe at compressor's inlet" - annotation(Dialog(tab="Compressors",group="Geometry"), - HideResult=not show_parCom); - parameter Modelica.SIunits.Diameter - diameterOut[nCom](min=0) = fill(8e-3, nCom) - "Diameter of the pipe at compressor's outlet" - annotation(Dialog(tab="Compressors",group="Geometry"), - HideResult=not show_parCom); + parameter Modelica.Units.SI.Volume VDis[nCom](min=0) = fill(13e-6, nCom) + "Displacement volume of the compressor" annotation (Dialog(tab= + "Compressors", group="Geometry"), HideResult=not show_parCom); + parameter Modelica.Units.SI.Efficiency epsRef[nCom]( + min=0, + max=1, + nominal=0.05) = fill(0.04, nCom) + "Ratio of the real and the ideal displacement volume" annotation (Dialog( + tab="Compressors", group="Geometry"), HideResult=not show_parCom); + parameter Modelica.Units.SI.Diameter diameterInl[nCom](min=0) = fill(12e-3, + nCom) "Diameter of the pipe at compressor's inlet" annotation (Dialog(tab= + "Compressors", group="Geometry"), HideResult=not show_parCom); + parameter Modelica.Units.SI.Diameter diameterOut[nCom](min=0) = fill(8e-3, + nCom) "Diameter of the pipe at compressor's outlet" annotation (Dialog(tab= + "Compressors", group="Geometry"), HideResult=not show_parCom); - parameter Modelica.SIunits.Frequency - rotSpeMax[nCom](min=0) = fill(120, nCom) - "Maximal rotational speed executable by the compressor" - annotation(Dialog(tab="Compressors",group="Compressor's characterisitcs"), - HideResult=true); + parameter Modelica.Units.SI.Frequency rotSpeMax[nCom](min=0) = fill(120, nCom) + "Maximal rotational speed executable by the compressor" annotation (Dialog( + tab="Compressors", group="Compressor's characterisitcs"), HideResult= + true); parameter Real piPreMax[nCom](min=1, unit="1") = fill(15, nCom) "Maximal pressure ratio executable by the compressor" @@ -108,11 +102,12 @@ partial model PartialModularCompressors "= true, if transient behaviour of rotational speed is computed" annotation(Dialog(tab="Compressors",group="Transient behaviour"), HideResult=not show_parCom); - parameter Modelica.SIunits.Time risTim[nCom] = fill(0.5, nCom) - "Time until rotational speed reaches 99.6 % of its set value" - annotation(Dialog(enable = useInpFil, - tab="Compressors",group="Transient behaviour"), - HideResult=not show_parCom); + parameter Modelica.Units.SI.Time risTim[nCom]=fill(0.5, nCom) + "Time until rotational speed reaches 99.6 % of its set value" annotation ( + Dialog( + enable=useInpFil, + tab="Compressors", + group="Transient behaviour"), HideResult=not show_parCom); // Definition of models describing efficiencies // @@ -211,18 +206,16 @@ partial model PartialModularCompressors "Gain of controller" annotation(Dialog(tab="Controller", group="PID setup"), HideResult=not show_parCon); - parameter Modelica.SIunits.Time Ti[nCom] = fill(0.5, nCom) - "Time constant of integrator block" - annotation(Dialog(tab="Controller", group="PID setup"), - HideResult=not show_parCon); + parameter Modelica.Units.SI.Time Ti[nCom]=fill(0.5, nCom) + "Time constant of integrator block" annotation (Dialog(tab="Controller", + group="PID setup"), HideResult=not show_parCon); parameter Real Ni[nCom] = fill(0.9, nCom) "Ni*Ti is time constant of anti-windup compensation" annotation(Dialog(tab="Controller", group="PID setup"), HideResult=not show_parCon); - parameter Modelica.SIunits.Time Td[nCom] = fill(0.1, nCom) - "Time constant of derivative block" - annotation(Dialog(tab="Controller", group="PID setup"), - HideResult=not show_parCon); + parameter Modelica.Units.SI.Time Td[nCom]=fill(0.1, nCom) + "Time constant of derivative block" annotation (Dialog(tab="Controller", + group="PID setup"), HideResult=not show_parCon); parameter Real Nd[nCom] = fill(10, nCom) "The higher Nd, the more ideal the derivative block" annotation(Dialog(tab="Controller", group="PID setup"), @@ -293,53 +286,39 @@ partial model PartialModularCompressors annotation(Dialog(tab = "Pressure and heat losses", group="Heat losses - General"), HideResult=not show_parCom); - parameter Modelica.SIunits.Mass mWal[nCom] = fill(2.5, nCom) - "Mass of the fictitious wall" - annotation(Dialog(tab = "Pressure and heat losses", - group="Heat losses - Geometry"), - HideResult=not show_parCom); - parameter Modelica.SIunits.SpecificHeatCapacity cpWal[nCom] = fill(450, nCom) - "Specific heat capacity of the fictitious wall" - annotation(Dialog(tab = "Pressure and heat losses", - group="Heat losses - Geometry"), - HideResult=not show_parCom); - parameter Modelica.SIunits.ThermalConductance kAMeaInl[nCom] = fill(25, nCom) - "Effective mean thermal conductance between medium and fictitious wall - at inlet" - annotation(Dialog(tab = "Pressure and heat losses", - group="Heat losses - Thermal conductances"), - HideResult=not show_parCom); - parameter Modelica.SIunits.ThermalConductance kAMeaOut[nCom] = fill(35, nCom) - "Effective mean thermal conductance between medium and fictitious wall - at outlet" - annotation(Dialog(tab = "Pressure and heat losses", - group="Heat losses - Thermal conductances"), - HideResult=not show_parCom); - parameter Modelica.SIunits.ThermalConductance kAMeaAmb[nCom] = fill(10, nCom) - "Effective mean thermal conductance coefficient between fictitious wall - and ambient" - annotation(Dialog(tab = "Pressure and heat losses", - group="Heat losses - Thermal conductances"), - HideResult=not show_parCom); + parameter Modelica.Units.SI.Mass mWal[nCom]=fill(2.5, nCom) + "Mass of the fictitious wall" annotation (Dialog(tab= + "Pressure and heat losses", group="Heat losses - Geometry"), + HideResult=not show_parCom); + parameter Modelica.Units.SI.SpecificHeatCapacity cpWal[nCom]=fill(450, nCom) + "Specific heat capacity of the fictitious wall" annotation (Dialog(tab= + "Pressure and heat losses", group="Heat losses - Geometry"), + HideResult=not show_parCom); + parameter Modelica.Units.SI.ThermalConductance kAMeaInl[nCom]=fill(25, nCom) "Effective mean thermal conductance between medium and fictitious wall + at inlet" annotation (Dialog(tab="Pressure and heat losses", group= + "Heat losses - Thermal conductances"), HideResult=not show_parCom); + parameter Modelica.Units.SI.ThermalConductance kAMeaOut[nCom]=fill(35, nCom) "Effective mean thermal conductance between medium and fictitious wall + at outlet" annotation (Dialog(tab="Pressure and heat losses", group= + "Heat losses - Thermal conductances"), HideResult=not show_parCom); + parameter Modelica.Units.SI.ThermalConductance kAMeaAmb[nCom]=fill(10, nCom) "Effective mean thermal conductance coefficient between fictitious wall + and ambient" annotation (Dialog(tab="Pressure and heat losses", group= + "Heat losses - Thermal conductances"), HideResult=not show_parCom); parameter Boolean iniTWal0[nCom] = fill(true, nCom) "= true, if wall is initialised at fixed temperature; Otherwise, steady state initialisation" annotation(Dialog(tab = "Pressure and heat losses", group="Heat losses - Initialisation"), HideResult=not show_parCom); - parameter Modelica.SIunits.Temperature TWal0[nCom] = fill(293.15, nCom) - "Temperature of wall at initialisation" - annotation(Dialog(tab = "Pressure and heat losses", - group="Heat losses - Initialisation"), - HideResult=not show_parCom); + parameter Modelica.Units.SI.Temperature TWal0[nCom]=fill(293.15, nCom) + "Temperature of wall at initialisation" annotation (Dialog(tab= + "Pressure and heat losses", group="Heat losses - Initialisation"), + HideResult=not show_parCom); // Definition of parameters describing advanced options // - parameter Modelica.SIunits.PressureDifference - dp_start(displayUnit="Pa") = -20e5 - "Guess value of compressor's dp = port_a.p - port_b.p" - annotation(Dialog(tab = "Advanced",group="General"), - HideResult=not show_parCom); + parameter Modelica.Units.SI.PressureDifference dp_start(displayUnit="Pa") = -20e5 + "Guess value of compressor's dp = port_a.p - port_b.p" annotation (Dialog( + tab="Advanced", group="General"), HideResult=not show_parCom); parameter Medium.MassFlowRate m_flow_start = 0.5*m_flow_nominal "Guess value of compressor's m_flow = port_a.m_flowr" annotation(Dialog(tab = "Advanced",group="General"), @@ -348,10 +327,9 @@ partial model PartialModularCompressors "Small mass flow rate for regularization of compressor's zero flow" annotation(Dialog(tab = "Advanced",group="General"), HideResult=not show_parCom); - parameter Modelica.SIunits.MassFlowRate m_flow_nominal = 0.1 - "Nominal mass flow rate" - annotation(Dialog(tab="Advanced",group="General"), - HideResult=not show_parCom); + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=0.1 + "Nominal mass flow rate" annotation (Dialog(tab="Advanced", group="General"), + HideResult=not show_parCom); // Definition of parameters describing diagnostics // @@ -378,23 +356,20 @@ partial model PartialModularCompressors // Definition of parameters used for initialisation // - parameter Modelica.SIunits.Frequency rotSpe0[nCom] = fill(60, nCom) - "Compressor's rotational spped at initialisation" - annotation(Dialog(tab="Advanced",group="Initialisation"), - HideResult=true); - parameter Modelica.SIunits.AbsolutePressure pInl0[nCom] = fill(3e5, nCom) - "Pressure at compressor's inlet at initialisation" - annotation(Dialog(tab="Advanced",group="Initialisation"), - HideResult=true); - parameter Modelica.SIunits.Temperature TInl0[nCom] = fill(283.15, nCom) - "Temperature at compressor's inlet at initialisation" - annotation(Dialog(tab="Advanced",group="Initialisation"), - HideResult=true); - parameter Modelica.Blocks.Types.InitPID initType[nCom]= - fill(Modelica.Blocks.Types.InitPID.DoNotUse_InitialIntegratorState,nCom) + parameter Modelica.Units.SI.Frequency rotSpe0[nCom]=fill(60, nCom) + "Compressor's rotational spped at initialisation" annotation (Dialog(tab= + "Advanced", group="Initialisation"), HideResult=true); + parameter Modelica.Units.SI.AbsolutePressure pInl0[nCom]=fill(3e5, nCom) + "Pressure at compressor's inlet at initialisation" annotation (Dialog(tab= + "Advanced", group="Initialisation"), HideResult=true); + parameter Modelica.Units.SI.Temperature TInl0[nCom]=fill(283.15, nCom) + "Temperature at compressor's inlet at initialisation" annotation (Dialog( + tab="Advanced", group="Initialisation"), HideResult=true); + parameter Modelica.Blocks.Types.Init initType[nCom]=fill(Modelica.Blocks.Types.Init.InitialState, + nCom) "Init: (1: no init, 2: steady state, 3: initial state, 4: initial output)" - annotation(Dialog(tab="Advanced", group="Initialisation Controller"), - HideResult=not show_parCon); + annotation (Dialog(tab="Advanced", group="Initialisation Controller"), + HideResult=not show_parCon); parameter Real xi_start[nCom]=fill(0, nCom) "Initial or guess value value for integrator output (= integrator state)" annotation(Dialog(tab="Advanced", group="Initialisation Controller"), diff --git a/AixLib/Fluid/Movers/Compressors/Examples/ModularRotaryCompressor.mo b/AixLib/Fluid/Movers/Compressors/Examples/ModularRotaryCompressor.mo index 39633c5652..8360078372 100644 --- a/AixLib/Fluid/Movers/Compressors/Examples/ModularRotaryCompressor.mo +++ b/AixLib/Fluid/Movers/Compressors/Examples/ModularRotaryCompressor.mo @@ -11,15 +11,15 @@ model ModularRotaryCompressor parameter Integer nCom = 2 "Number of compressors"; - parameter Modelica.SIunits.AbsolutePressure pInl= - Medium.pressure(Medium.setBubbleState(Medium.setSat_T(TInl+1))) + parameter Modelica.Units.SI.AbsolutePressure pInl=Medium.pressure( + Medium.setBubbleState(Medium.setSat_T(TInl + 1))) "Current pressure at inlet conditions"; - parameter Modelica.SIunits.Temperature TInl = 283.15 + parameter Modelica.Units.SI.Temperature TInl=283.15 "Current temperature at inlet conditions"; - parameter Modelica.SIunits.AbsolutePressure pOut= - Medium.pressure(Medium.setDewState(Medium.setSat_T(TOut-5))) + parameter Modelica.Units.SI.AbsolutePressure pOut=Medium.pressure( + Medium.setDewState(Medium.setSat_T(TOut - 5))) "Current set point of the compressor's outlet pressure"; - parameter Modelica.SIunits.Temperature TOut = 333.15 + parameter Modelica.Units.SI.Temperature TOut=333.15 "Current temperature at outlet conditions"; // Definition of models @@ -63,8 +63,7 @@ model ModularRotaryCompressor Modelica.Blocks.Sources.Sine valOpe( offset=0.5, amplitude=0.3, - freqHz=1) - "Prescribed valve's opening" + f=1) "Prescribed valve's opening" annotation (Placement(transformation(extent={{-88,-80},{-68,-60}}))); Obsolete.Year2021.Fluid.Actuators.Valves.SimpleValve simVal( redeclare package Medium = Medium, @@ -89,10 +88,9 @@ model ModularRotaryCompressor rotation=-90, origin={0,0}))); Modelica.Blocks.Sources.Sine rotSpe( - freqHz=1, + f=1, amplitude=50, - offset=50) - "Input signal to prediscribe compressors' rotational speeds" + offset=50) "Input signal to prediscribe compressors' rotational speeds" annotation (Placement(transformation(extent={{-88,20},{-68,40}}))); Modelica.Blocks.Routing.Replicator repRotSpe(nout=nCom) "Replicating the compressors' rotational speedsl" diff --git a/AixLib/Fluid/Movers/Compressors/Examples/RotaryCompressor.mo b/AixLib/Fluid/Movers/Compressors/Examples/RotaryCompressor.mo index 45c7bea330..112e8d1d97 100644 --- a/AixLib/Fluid/Movers/Compressors/Examples/RotaryCompressor.mo +++ b/AixLib/Fluid/Movers/Compressors/Examples/RotaryCompressor.mo @@ -9,15 +9,15 @@ model RotaryCompressor Modelica.Media.R134a.R134a_ph "Medium of the compressor"; - parameter Modelica.SIunits.AbsolutePressure pInl= - Medium.pressure(Medium.setBubbleState(Medium.setSat_T(TInl+1))) + parameter Modelica.Units.SI.AbsolutePressure pInl=Medium.pressure( + Medium.setBubbleState(Medium.setSat_T(TInl + 1))) "Current pressure at inlet conditions"; - parameter Modelica.SIunits.Temperature TInl = 283.15 + parameter Modelica.Units.SI.Temperature TInl=283.15 "Current temperature at inlet conditions"; - parameter Modelica.SIunits.AbsolutePressure pOut= - Medium.pressure(Medium.setDewState(Medium.setSat_T(TOut-5))) + parameter Modelica.Units.SI.AbsolutePressure pOut=Medium.pressure( + Medium.setDewState(Medium.setSat_T(TOut - 5))) "Current set point of the compressor's outlet pressure"; - parameter Modelica.SIunits.Temperature TOut = 333.15 + parameter Modelica.Units.SI.Temperature TOut=333.15 "Current temperature at outlet conditions"; // Definition of models @@ -31,8 +31,7 @@ model RotaryCompressor Modelica.Blocks.Sources.Sine rotSpe( amplitude=40, offset=80, - freqHz=1) - "Prescribed compressor's rotational speed" + f=1) "Prescribed compressor's rotational speed" annotation (Placement(transformation(extent={{-80,30},{-60,50}}))); Modelica.Thermal.HeatTransfer.Sources.FixedTemperature fixTem(T=283.15) "Fixed ambient temperature" @@ -54,8 +53,7 @@ model RotaryCompressor Modelica.Blocks.Sources.Sine valOpe( offset=0.5, amplitude=0.3, - freqHz=1) - "Prescribed valve's opening" + f=1) "Prescribed valve's opening" annotation (Placement(transformation(extent={{-80,70},{-60,90}}))); Obsolete.Year2021.Fluid.Actuators.Valves.SimpleValve simVal( redeclare package Medium = Medium, diff --git a/AixLib/Fluid/Movers/Compressors/Examples/RotaryCompressorPressureHeatLosses.mo b/AixLib/Fluid/Movers/Compressors/Examples/RotaryCompressorPressureHeatLosses.mo index 777ad653ca..156f41fdcf 100644 --- a/AixLib/Fluid/Movers/Compressors/Examples/RotaryCompressorPressureHeatLosses.mo +++ b/AixLib/Fluid/Movers/Compressors/Examples/RotaryCompressorPressureHeatLosses.mo @@ -10,15 +10,15 @@ model RotaryCompressorPressureHeatLosses Modelica.Media.R134a.R134a_ph "Medium of the compressor"; - parameter Modelica.SIunits.AbsolutePressure pInl= - Medium.pressure(Medium.setBubbleState(Medium.setSat_T(TInl+1))) + parameter Modelica.Units.SI.AbsolutePressure pInl=Medium.pressure( + Medium.setBubbleState(Medium.setSat_T(TInl + 1))) "Current pressure at inlet conditions"; - parameter Modelica.SIunits.Temperature TInl = 283.15 + parameter Modelica.Units.SI.Temperature TInl=283.15 "Current temperature at inlet conditions"; - parameter Modelica.SIunits.AbsolutePressure pOut= - Medium.pressure(Medium.setDewState(Medium.setSat_T(TOut-5))) + parameter Modelica.Units.SI.AbsolutePressure pOut=Medium.pressure( + Medium.setDewState(Medium.setSat_T(TOut - 5))) "Current set point of the compressor's outlet pressure"; - parameter Modelica.SIunits.Temperature TOut = 333.15 + parameter Modelica.Units.SI.Temperature TOut=333.15 "Current temperature at outlet conditions"; // Definition of models @@ -32,8 +32,7 @@ model RotaryCompressorPressureHeatLosses Modelica.Blocks.Sources.Sine rotSpe( amplitude=40, offset=80, - freqHz=1) - "Prescribed compressor's rotational speed" + f=1) "Prescribed compressor's rotational speed" annotation (Placement(transformation(extent={{-80,30},{-60,50}}))); Modelica.Thermal.HeatTransfer.Sources.FixedTemperature fixTem(T=283.15) "Fixed ambient temperature" @@ -57,8 +56,7 @@ model RotaryCompressorPressureHeatLosses Modelica.Blocks.Sources.Sine valOpe( offset=0.5, amplitude=0.3, - freqHz=1) - "Prescribed valve's opening" + f=1) "Prescribed valve's opening" annotation (Placement(transformation(extent={{-80,70},{-60,90}}))); Obsolete.Year2021.Fluid.Actuators.Valves.SimpleValve simVal( redeclare package Medium = Medium, diff --git a/AixLib/Fluid/Movers/Compressors/Examples/RotaryCompressorPressureLosses.mo b/AixLib/Fluid/Movers/Compressors/Examples/RotaryCompressorPressureLosses.mo index 0ad441f0e4..6d7cce3fa9 100644 --- a/AixLib/Fluid/Movers/Compressors/Examples/RotaryCompressorPressureLosses.mo +++ b/AixLib/Fluid/Movers/Compressors/Examples/RotaryCompressorPressureLosses.mo @@ -9,15 +9,15 @@ model RotaryCompressorPressureLosses Modelica.Media.R134a.R134a_ph "Medium of the compressor"; - parameter Modelica.SIunits.AbsolutePressure pInl= - Medium.pressure(Medium.setBubbleState(Medium.setSat_T(TInl+1))) + parameter Modelica.Units.SI.AbsolutePressure pInl=Medium.pressure( + Medium.setBubbleState(Medium.setSat_T(TInl + 1))) "Current pressure at inlet conditions"; - parameter Modelica.SIunits.Temperature TInl = 283.15 + parameter Modelica.Units.SI.Temperature TInl=283.15 "Current temperature at inlet conditions"; - parameter Modelica.SIunits.AbsolutePressure pOut= - Medium.pressure(Medium.setDewState(Medium.setSat_T(TOut-5))) + parameter Modelica.Units.SI.AbsolutePressure pOut=Medium.pressure( + Medium.setDewState(Medium.setSat_T(TOut - 5))) "Current set point of the compressor's outlet pressure"; - parameter Modelica.SIunits.Temperature TOut = 333.15 + parameter Modelica.Units.SI.Temperature TOut=333.15 "Current temperature at outlet conditions"; // Definition of models @@ -31,8 +31,7 @@ model RotaryCompressorPressureLosses Modelica.Blocks.Sources.Sine rotSpe( amplitude=40, offset=80, - freqHz=1) - "Prescribed compressor's rotational speed" + f=1) "Prescribed compressor's rotational speed" annotation (Placement(transformation(extent={{-80,30},{-60,50}}))); Modelica.Thermal.HeatTransfer.Sources.FixedTemperature fixTem(T=283.15) "Fixed ambient temperature" @@ -54,8 +53,7 @@ model RotaryCompressorPressureLosses Modelica.Blocks.Sources.Sine valOpe( offset=0.5, amplitude=0.3, - freqHz=1) - "Prescribed valve's opening" + f=1) "Prescribed valve's opening" annotation (Placement(transformation(extent={{-80,70},{-60,90}}))); Obsolete.Year2021.Fluid.Actuators.Valves.SimpleValve simVal( redeclare package Medium = Medium, diff --git a/AixLib/Fluid/Movers/Compressors/ModularCompressors/ModularCompressorsSensors.mo b/AixLib/Fluid/Movers/Compressors/ModularCompressors/ModularCompressorsSensors.mo index 9237333b0a..44ee5ddc0f 100644 --- a/AixLib/Fluid/Movers/Compressors/ModularCompressors/ModularCompressorsSensors.mo +++ b/AixLib/Fluid/Movers/Compressors/ModularCompressors/ModularCompressorsSensors.mo @@ -5,41 +5,37 @@ model ModularCompressorsSensors // Definition of parameters // - parameter Modelica.SIunits.Time tau = 1 - "Time constant at nominal flow rate" - annotation(Dialog(tab="General",group="Sensors"), - HideResult=not show_parSen); + parameter Modelica.Units.SI.Time tau=1 "Time constant at nominal flow rate" + annotation (Dialog(tab="General", group="Sensors"), HideResult=not + show_parSen); parameter Boolean transferHeat = false "if true, temperature T converges towards TAmb when no flow" annotation(Dialog(tab="General",group="Sensors"), HideResult=not show_parSen); - parameter Modelica.SIunits.Temperature TAmb = Medium.T_default - "Fixed ambient temperature for heat transfer" - annotation(Dialog(tab="General",group="Sensors"), - HideResult=not show_parSen); - parameter Modelica.SIunits.Time tauHeaTra = 1200 - "Time constant for heat transfer, default 20 minutes" - annotation(Dialog(tab="General",group="Sensors"), - HideResult=not show_parSen); + parameter Modelica.Units.SI.Temperature TAmb=Medium.T_default + "Fixed ambient temperature for heat transfer" annotation (Dialog(tab= + "General", group="Sensors"), HideResult=not show_parSen); + parameter Modelica.Units.SI.Time tauHeaTra=1200 + "Time constant for heat transfer, default 20 minutes" annotation (Dialog( + tab="General", group="Sensors"), HideResult=not show_parSen); parameter Modelica.Blocks.Types.Init initTypeSen= Modelica.Blocks.Types.Init.InitialState "Type of initialization (InitialState and InitialOutput are identical)" annotation(Dialog(tab="Advanced",group="Initialisation Sensors"), HideResult=not show_parSen); - parameter Modelica.SIunits.Temperature T_start = Medium.T_default - "Initial or guess value of output (= state)" - annotation(Dialog(tab="Advanced",group="Initialisation Sensors"), - HideResult=not show_parSen); - parameter Modelica.SIunits.SpecificEnthalpy h_out_start= + parameter Modelica.Units.SI.Temperature T_start=Medium.T_default + "Initial or guess value of output (= state)" annotation (Dialog(tab= + "Advanced", group="Initialisation Sensors"), HideResult=not + show_parSen); + parameter Modelica.Units.SI.SpecificEnthalpy h_out_start= Medium.specificEnthalpy_pTX( p=Medium.p_default, T=Medium.T_default, - X=Medium.X_default) - "Initial or guess value of output (= state)" - annotation(Dialog(tab="Advanced",group="Initialisation Sensors"), - HideResult=not show_parSen); + X=Medium.X_default) "Initial or guess value of output (= state)" + annotation (Dialog(tab="Advanced", group="Initialisation Sensors"), + HideResult=not show_parSen); parameter Boolean show_parSen = false "= true, if sensors' input parameters are shown in results" diff --git a/AixLib/Fluid/Movers/Compressors/SimpleCompressors/CompressionProcesses/RotaryCompression.mo b/AixLib/Fluid/Movers/Compressors/SimpleCompressors/CompressionProcesses/RotaryCompression.mo index fa60f96339..704f728483 100644 --- a/AixLib/Fluid/Movers/Compressors/SimpleCompressors/CompressionProcesses/RotaryCompression.mo +++ b/AixLib/Fluid/Movers/Compressors/SimpleCompressors/CompressionProcesses/RotaryCompression.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Movers.Compressors.SimpleCompressors.CompressionProcesses; +within AixLib.Fluid.Movers.Compressors.SimpleCompressors.CompressionProcesses; model RotaryCompression "Model that describes the compression process of a rotary compressor" extends BaseClasses.PartialCompression; diff --git a/AixLib/Fluid/Movers/Compressors/UsersGuide/Approaches.mo b/AixLib/Fluid/Movers/Compressors/UsersGuide/Approaches.mo index c81a41d890..97a336abd0 100644 --- a/AixLib/Fluid/Movers/Compressors/UsersGuide/Approaches.mo +++ b/AixLib/Fluid/Movers/Compressors/UsersGuide/Approaches.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Movers.Compressors.UsersGuide; +within AixLib.Fluid.Movers.Compressors.UsersGuide; class Approaches "Approaches implemented to calculate different efficiencies" extends Modelica.Icons.Information; @@ -41,248 +41,267 @@ class Approaches Calculation procedures presented in the litarture have some variables in commen and these variables are presented below:

                        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                        - Type - - Name - - Comment -
                        - input - - epsRef - - Ratio of the real and the ideal displacement volume -
                        - input - - VDis - - Displacement volume -
                        - input - - piPre - - Pressure ratio -
                        - input - - rotSpe - - Rotational speed -
                        - input - - staInl - - Thermodynamic state at compressor's inlet conditions -
                        - input - - staOut - - Thermodynamic state at compressor's out conditions -
                        - input - - TAmb - - Ambient temperature -
                        -

                        - Polynomial engine efficiency models -

                        -

                        - Actually, four polynomial approaches are implemented in this package. - To add further calculation procedures, just add its name in AixLib.Fluid.Movers.Compressors.Utilities.Types - and expand the if-structure defined in - AixLib.Fluid.Movers.Compressors.Utilities.EngineEfficiency.PolynomialEngineEfficiency.
                        -

                        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                        - Reference - - Formula - - Refrigerants - - Validity ncompressor - - Validity Πpressure -
                        - JahningEtAl2000 - - ηeng = a1 + a2*exp(pInl)^b2 - - Generic model - - Generic model - - Generic model -
                        - DurprezEtAl2007 - - ηeng = a1 + a2*π + a3*π^2 + a4*π^3 + a5*π^4 + - a6*π^5 + a7*π^6 - - Generic model - - Generic model - - Generic model -
                        - KinarbEtAl2010 - - ηeng = a1 + a2*π + a3*π^2 - - Generic model - - Generic model - - Generic model -
                        - Engelpracht2017 - - ηeng = a1 + a2*π + a3*π^2 + a4*n*π + a5*n^2 + - a6*π^2*n + a7*π*n^2 + a8*n^3 + a9*π^2n^2 + a10*π*π^3 + - a11*n^4 - - Generic model - - 0 - 120 - - 1 - 10 -
                        -

                        - Power engine efficiency models -

                        -

                        - Actually, one power approache is implemented in this package. To add - further calculation procedures, just add its name in AixLib.Fluid.Movers.Compressors.Utilities.Types - and expand the if-structure defined in - AixLib.Fluid.Movers.Compressors.Utilities.EngineEfficiency.PowerEngineEfficiency.
                        -

                        - - - - - - - - - - - - - - - +
                        - Reference - - Formula - - Refrigerants - - Validity ncompressor - - Validity Πpressure -
                        - MendozaMirandaEtAl2016 - - ηeng = a1 * π^b1 * (nref/n)^b2 * - (1/((TInl+TOutIse)/2-TOut))^b3 * - (Mref/M)^b4 - - R134a,R450a,R1324yf,R1234ze(E) - - 0 - 50 - - 1 - 6 -
                        +
                        + \"Inputs and outputs\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        + Type + + Name + + Comment +
                        + input + + epsRef + + Ratio of the real and the ideal displacement volume +
                        + input + + VDis + + Displacement volume +
                        + input + + piPre + + Pressure ratio +
                        + input + + rotSpe + + Rotational speed +
                        + input + + staInl + + Thermodynamic state at compressor's inlet conditions +
                        + input + + staOut + + Thermodynamic state at compressor's out conditions +
                        + input + + TAmb + + Ambient temperature +
                        +

                        + Polynomial engine efficiency models +

                        +

                        + Actually, four polynomial approaches are implemented in this + package. To add further calculation procedures, just add its name + in AixLib.Fluid.Movers.Compressors.Utilities.Types + and expand the if-structure defined in + AixLib.Fluid.Movers.Compressors.Utilities.EngineEfficiency.PolynomialEngineEfficiency.
                        +

                        + + +
                        + \"Polynomial approaches\" border=\"1\" cellspacing=\"0\" + cellpadding=\"2\" style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        + Reference + + Formula + + Refrigerants + + Validity ncompressor + + Validity Πpressure +
                        + JahningEtAl2000 + + ηeng = a1 + + a2*exp(pInl)^b2 + + Generic model + + Generic model + + Generic model +
                        + DurprezEtAl2007 + + ηeng = a1 + a2*π + a3*π^2 + a4*π^3 + + a5*π^4 + a6*π^5 + a7*π^6 + + Generic model + + Generic model + + Generic model +
                        + KinarbEtAl2010 + + ηeng = a1 + a2*π + a3*π^2 + + Generic model + + Generic model + + Generic model +
                        + Engelpracht2017 + + ηeng = a1 + a2*π + a3*π^2 + a4*n*π + + a5*n^2 + a6*π^2*n + a7*π*n^2 + a8*n^3 + a9*π^2n^2 + + a10*π*π^3 + a11*n^4 + + Generic model + + 0 - 120 + + 1 - 10 +
                        +

                        + Power engine efficiency models +

                        +

                        + Actually, one power approache is implemented in this package. + To add further calculation procedures, just add its name in + AixLib.Fluid.Movers.Compressors.Utilities.Types + and expand the if-structure defined in + AixLib.Fluid.Movers.Compressors.Utilities.EngineEfficiency.PowerEngineEfficiency.
                        +

                        + + +
                        + \"Power approaches\" border=\"1\" cellspacing=\"0\" + cellpadding=\"2\" style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + +
                        + Reference + + Formula + + Refrigerants + + Validity ncompressor + + Validity Πpressure +
                        + MendozaMirandaEtAl2016 + + ηeng = a1 * π^b1 * + (nref/n)^b2 * + (1/((TInl+TOutIse)/2-TOut))^b3 + * (Mref/M)^b4 + + R134a,R450a,R1324yf,R1234ze(E) + + 0 - 50 + + 1 - 6 +
                        +
                        +
                        +
                        ")); end MechanicEfficiency; @@ -323,335 +342,358 @@ cellpadding=\"2\" style=\"border-collapse:collapse;\"> Calculation procedures presented in the litarture have some variables in commen and these variables are presented below:

                        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                        - Type - - Name - - Comment -
                        - input - - epsRef - - Ratio of the real and the ideal displacement volume -
                        - input - - VDis - - Displacement volume -
                        - input - - piPre - - Pressure ratio -
                        - input - - rotSpe - - Rotational speed -
                        - input - - staInl - - Thermodynamic state at compressor's inlet conditions -
                        - input - - staOut - - Thermodynamic state at compressor's out conditions -
                        - input - - TAmb - - Ambient temperature -
                        -

                        - Polynomial volumetric efficiency models -

                        -

                        - Actually, four polynomial approaches are implemented in this package. - To add further calculation procedures, just add its name in AixLib.Fluid.Movers.Compressors.Utilities.Types - and expand the if-structure defined in - AixLib.Fluid.Movers.Compressors.Utilities.VolumetricEfficiency.PolynomialVolumetricEfficiency.
                        -

                        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                        - Reference - - Formula - - Refrigerants - - Validity ncompressor - - Validity Πpressure -
                        - DarrAndCrawford1992 - - ηvol = a1 + a2*n - - a3*epsRef*(ρinlIseinl-1) - - a4*n*(ρinlIseinl-1) - - R134a - - 40 - 75 - - 3 - 10 -
                        - Karlsson2007 - - ηvol = a1*Tinl*π + a2*π + a3 + - a4*Tinl + a5*n + a6*n^2 - - R407c - - No information - - No information -
                        - KinarbEtAl2010 - - ηvol = a1 + a2*π - - Generic model - - Generic model - - Generic model -
                        - ZhouEtAl2010 - - ηvol = 1 + a1 - a2*π^(1/κ) - - Generic model - - Generic model - - Generic model -
                        - Li2013 - - ηvol = ηvolRef * (a1 + - a2*(n/nref) + a3*(n/nref)^2) - - R22,R134a - - 30 - 120 - - 4 - 12 -
                        - HongtaoLaughmannEtAl2017 - - ηvol = a1 + a2*(n/nref) + - a3*(n/nref)^2 + a4*π + a5*(n/nref)*π + - a6*(n/nref)^2*π + a7*π^2 + a8*(n/nref)*π^2 - + a9*(n/nref)^2*π^2 + a10*pout + - a11*(n/nref)*pout + - a12*(n/nref)^2*pout - a13*pinl - - a14*(n/nref)*pinl - - a15*(n/nref)^2*pinl + - a16*pinl*pout + - a17*(n/nref)*pinl*pout + - a18*(n/nref)^2*pinl*pout + - a19*(n/nref)^3*pinl*pout + - a20*(n/nref)^4*pinl*pout - - a21*pinl^2 - a22*(n/nref)*pinl^2 - - a23*(n/nref)^2*pinl^2 - - a24*(n/nref)^3*pinl^2 - - a25*(n/nref)^4*pinl^2 - - Generic model - - Generic model - - Generic model -
                        - Koerner2017 - - ηvol = a1*π^b1 - - R410a - - 50 - 120 - - 1 - 10 -
                        - Engelpracht2017 - - ηvol = a1 + a2*((π-c1)/c2) + - a3*((Tinl-c3)/c4)*((π-c1)/c2) + - a4*((Tinl-c3)/c4) + a5*((n-c5)/c6) + - a6*((n-c5)/c6)^2 - - Generic model - - 0 - 120 - - 1 - 10 -
                        -

                        - Power volumetric efficiency models -

                        -

                        - Actually, one power approache is implemented in this package. To add - further calculation procedures, just add its name in AixLib.Fluid.Movers.Compressors.Utilities.Types - and expand the if-structure defined in - AixLib.Fluid.Movers.Compressors.Utilities.VolumetricEfficiency.PowerVolumetricEfficiency.
                        -

                        - - - - - - - - - - - - - - - +
                        - Reference - - Formula - - Refrigerants - - Validity ncompressor - - Validity Πpressure -
                        - MendozaMirandaEtAl2016 - - ηvol = a1 * π^b1 * - (π^1.5*n^3*Vdis)^b2 * (Mref/M)^b3 - - R134a,R450a,R1324yf,R1234ze(E) - - 0 - 50 - - 1 - 6 -
                        +
                        + \"Inputs and outputs\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        + Type + + Name + + Comment +
                        + input + + epsRef + + Ratio of the real and the ideal displacement volume +
                        + input + + VDis + + Displacement volume +
                        + input + + piPre + + Pressure ratio +
                        + input + + rotSpe + + Rotational speed +
                        + input + + staInl + + Thermodynamic state at compressor's inlet conditions +
                        + input + + staOut + + Thermodynamic state at compressor's out conditions +
                        + input + + TAmb + + Ambient temperature +
                        +

                        + Polynomial volumetric efficiency models +

                        +

                        + Actually, four polynomial approaches are implemented in this + package. To add further calculation procedures, just add its name + in AixLib.Fluid.Movers.Compressors.Utilities.Types + and expand the if-structure defined in + AixLib.Fluid.Movers.Compressors.Utilities.VolumetricEfficiency.PolynomialVolumetricEfficiency.
                        +

                        + + +
                        + \"Polynomial approaches\" border=\"1\" cellspacing=\"0\" + cellpadding=\"2\" style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        + Reference + + Formula + + Refrigerants + + Validity ncompressor + + Validity Πpressure +
                        + DarrAndCrawford1992 + + ηvol = a1 + a2*n - + a3*epsRef*(ρinlIseinl-1) - + a4*n*(ρinlIseinl-1) + + R134a + + 40 - 75 + + 3 - 10 +
                        + Karlsson2007 + + ηvol = a1*Tinl*π + a2*π + a3 + + a4*Tinl + a5*n + a6*n^2 + + R407c + + No information + + No information +
                        + KinarbEtAl2010 + + ηvol = a1 + a2*π + + Generic model + + Generic model + + Generic model +
                        + ZhouEtAl2010 + + ηvol = 1 + a1 - a2*π^(1/κ) + + Generic model + + Generic model + + Generic model +
                        + Li2013 + + ηvol = ηvolRef * (a1 + + a2*(n/nref) + a3*(n/nref)^2) + + R22,R134a + + 30 - 120 + + 4 - 12 +
                        + HongtaoLaughmannEtAl2017 + + ηvol = a1 + a2*(n/nref) + + a3*(n/nref)^2 + a4*π + + a5*(n/nref)*π + a6*(n/nref)^2*π + + a7*π^2 + a8*(n/nref)*π^2 + + a9*(n/nref)^2*π^2 + a10*pout + + a11*(n/nref)*pout + + a12*(n/nref)^2*pout - + a13*pinl - + a14*(n/nref)*pinl - + a15*(n/nref)^2*pinl + + a16*pinl*pout + + a17*(n/nref)*pinl*pout + + a18*(n/nref)^2*pinl*pout + + + a19*(n/nref)^3*pinl*pout + + + a20*(n/nref)^4*pinl*pout + - a21*pinl^2 - + a22*(n/nref)*pinl^2 - + a23*(n/nref)^2*pinl^2 - + a24*(n/nref)^3*pinl^2 - + a25*(n/nref)^4*pinl^2 + + Generic model + + Generic model + + Generic model +
                        + Koerner2017 + + ηvol = a1*π^b1 + + R410a + + 50 - 120 + + 1 - 10 +
                        + Engelpracht2017 + + ηvol = a1 + a2*((π-c1)/c2) + + a3*((Tinl-c3)/c4)*((π-c1)/c2) + + a4*((Tinl-c3)/c4) + a5*((n-c5)/c6) + + a6*((n-c5)/c6)^2 + + Generic model + + 0 - 120 + + 1 - 10 +
                        +

                        + Power volumetric efficiency models +

                        +

                        + Actually, one power approache is implemented in this package. + To add further calculation procedures, just add its name in + AixLib.Fluid.Movers.Compressors.Utilities.Types + and expand the if-structure defined in + AixLib.Fluid.Movers.Compressors.Utilities.VolumetricEfficiency.PowerVolumetricEfficiency.
                        +

                        + + +
                        + \"Power approaches\" border=\"1\" cellspacing=\"0\" + cellpadding=\"2\" style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + +
                        + Reference + + Formula + + Refrigerants + + Validity ncompressor + + Validity Πpressure +
                        + MendozaMirandaEtAl2016 + + ηvol = a1 * π^b1 * + (π^1.5*n^3*Vdis)^b2 * + (Mref/M)^b3 + + R134a,R450a,R1324yf,R1234ze(E) + + 0 - 50 + + 1 - 6 +
                        +
                        +
                        +
                        ")); end VolumetricEfficiency; @@ -693,229 +735,249 @@ cellpadding=\"2\" style=\"border-collapse:collapse;\"> Calculation procedures presented in the litarture have some variables in commen and these variables are presented below:

                        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                        - Type - - Name - - Comment -
                        - input - - epsRef - - Ratio of the real and the ideal displacement volume -
                        - input - - VDis - - Displacement volume -
                        - input - - piPre - - Pressure ratio -
                        - input - - rotSpe - - Rotational speed -
                        - input - - staInl - - Thermodynamic state at compressor's inlet conditions -
                        - input - - staOut - - Thermodynamic state at compressor's out conditions -
                        - input - - TAmb - - Ambient temperature -
                        -

                        - Polynomial isentropic efficiency models -

                        -

                        - Actually, three polynomial approaches are implemented in this - package. To add further calculation procedures, just add its name in - AixLib.Fluid.Movers.Compressors.Utilities.Types - and expand the if-structure defined in - AixLib.Fluid.Movers.Compressors.Utilities.IsentropicEfficiency.PolynomialIsentropicEfficiency.
                        -

                        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                        - Reference - - Formula - - Refrigerants - - Validity ncompressor - - Validity Πpressure -
                        - DarrAndCrawford1992 - - ηise = a1 + a2*n + a3/ρinlet - - R134a - - 40 - 75 - - 3 - 10 -
                        - Karlsson2007 - - ηise = a1 + a2*π + a3*π^2 + a4*n + a5*n^2 - - R407c - - No information - - No information -
                        - Engelpracht2017 - - ηise = a1 + a2*n + a3*n^3 + a5*π^2 - - Generic model - - 0 - 120 - - 1 - 10 -
                        -

                        - Power isentropic efficiency models -

                        -

                        - Actually, one power approache is implemented in this package. To add - further calculation procedures, just add its name in AixLib.Fluid.Movers.Compressors.Utilities.Types - and expand the if-structure defined in - AixLib.Fluid.Movers.Compressors.Utilities.IsentropicEfficiency.PowerIsentropicEfficiency.
                        -

                        - - - - - - - - - - - - - - - +
                        - Reference - - Formula - - Refrigerants - - Validity ncompressor - - Validity Πpressure -
                        - MendozaMirandaEtAl2016 - - ηise = a1 * π^b1 * (nref/n)^b2 * - (n^3*Vdis/dhise^1.5)^b3 * - (1/((Tinl+ToutIse)/2-Tout))^b4 - - R134a,R450a,R1324yf,R1234ze(E) - - 0 - 50 - - 1 - 6 -
                        +
                        + \"Inputs and outputs\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        + Type + + Name + + Comment +
                        + input + + epsRef + + Ratio of the real and the ideal displacement volume +
                        + input + + VDis + + Displacement volume +
                        + input + + piPre + + Pressure ratio +
                        + input + + rotSpe + + Rotational speed +
                        + input + + staInl + + Thermodynamic state at compressor's inlet conditions +
                        + input + + staOut + + Thermodynamic state at compressor's out conditions +
                        + input + + TAmb + + Ambient temperature +
                        +

                        + Polynomial isentropic efficiency models +

                        +

                        + Actually, three polynomial approaches are implemented in this + package. To add further calculation procedures, just add its name + in AixLib.Fluid.Movers.Compressors.Utilities.Types + and expand the if-structure defined in + AixLib.Fluid.Movers.Compressors.Utilities.IsentropicEfficiency.PolynomialIsentropicEfficiency.
                        +

                        + + +
                        + \"Polynomial approaches\" border=\"1\" cellspacing=\"0\" + cellpadding=\"2\" style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        + Reference + + Formula + + Refrigerants + + Validity ncompressor + + Validity Πpressure +
                        + DarrAndCrawford1992 + + ηise = a1 + a2*n + + a3/ρinlet + + R134a + + 40 - 75 + + 3 - 10 +
                        + Karlsson2007 + + ηise = a1 + a2*π + a3*π^2 + a4*n + + a5*n^2 + + R407c + + No information + + No information +
                        + Engelpracht2017 + + ηise = a1 + a2*n + a3*n^3 + + a5*π^2 + + Generic model + + 0 - 120 + + 1 - 10 +
                        +

                        + Power isentropic efficiency models +

                        +

                        + Actually, one power approache is implemented in this package. + To add further calculation procedures, just add its name in + AixLib.Fluid.Movers.Compressors.Utilities.Types + and expand the if-structure defined in + AixLib.Fluid.Movers.Compressors.Utilities.IsentropicEfficiency.PowerIsentropicEfficiency.
                        +

                        + + +
                        + \"Power approaches\" border=\"1\" cellspacing=\"0\" + cellpadding=\"2\" style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + +
                        + Reference + + Formula + + Refrigerants + + Validity ncompressor + + Validity Πpressure +
                        + MendozaMirandaEtAl2016 + + ηise = a1 * π^b1 * + (nref/n)^b2 * + (n^3*Vdis/dhise^1.5)^b3 * + (1/((Tinl+ToutIse)/2-Tout))^b4 + + R134a,R450a,R1324yf,R1234ze(E) + + 0 - 50 + + 1 - 6 +
                        +
                        +
                        +
                        ")); end IsentropicEfficiency; @@ -944,142 +1006,149 @@ cellpadding=\"2\" style=\"border-collapse:collapse;\"> modelling approaches of these efficiencies are shortly characterised below:

                        - - - - - - - - - - - - - - - - - - - - - +
                        - Efficiency - - Formula - - Comment -
                        - Engine - - ηeng = Q̇ref / Pel - - Used for calculation of compressor's power consumption -
                        - Isentropic - - ηise = (houtIse - hinl) / - (hout - hinl) - - Used for calculation of thermodynamic change of state -
                        - Volumetric - - ηvol = V̇ide / - V̇rea - - Used for calculation of mass flow rate -
                        +
                        + \"Efficiencies\" border=\"1\" cellspacing=\"0\" cellpadding= \"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + + + + + + +
                        + Efficiency + + Formula + + Comment +
                        + Engine + + ηeng = Q̇ref / + Pel + + Used for calculation of compressor's power consumption +
                        + Isentropic + + ηise = (houtIse - + hinl) / (hout - hinl) + + Used for calculation of thermodynamic change of state +
                        + Volumetric + + ηvol = V̇ide / + V̇rea + + Used for calculation of mass flow rate +
                        +

                        + These efficiency models are stored in + AixLib.Fluid.Movers.Compressors.Utilities.EngineEfficiency, + + AixLib.Fluid.Movers.Compressors.Utilities.IsentropicEfficiency + and + AixLib.Fluid.Movers.Compressors.Utilities.VolumetricEfficiency. + Therefore, the calculation procedure of the efficiencies are + introduced as replaceable models and must be defined by the User. + Further information is given in the following sections: +

                        +
                          +
                        1. + + Engine efficiencies +
                        2. +
                        3. + + Volumetric efficiencies +
                        4. +
                        5. + + Isentropic efficiencies +
                        6. +
                        +

                        + Naming and abbreviations +

                        +

                        + In the following, a guideline of naming efficiency models is + summarised: +

                        +

                        + Approach of calculating efficiency _ Valid + refrigerants _ Displacement volume _ Type of + compressor +

                        +
                          +
                        1. + Approach: Approach of calculating efficiency, e.g. + polynomial or power. +
                        2. +
                        3. + Refrigerant: Refrigerants the efficiency model is valid + for, e.g. R134a or R410a. +
                        4. +
                        5. + Displacement volume: Displacement volume the efficiency + model is valid for, e.g. 170cm³. +
                        6. +
                        7. + Type: Type of compressor, e.g. scroll compressor. +
                        8. +
                        +

                        + Transient behaviour +

                        +

                        + The base model has a parameter useInpFil that is + used to model the compressors's transient behaviour while + changing rotational speed. Generally, this approach uses the same + modeling attempt as the stat-up and shut-down transients + introtuced for flow machines (see AixLib.Fluid.Movers.UsersGuide). + Therefore, just the parameter's affections are presented here: +

                        +
                          +
                        1. If useInpFil=false, then the input signal + opeSet.y is equal to the compressor's rotational speed. + Thus, a step change in the input signal causes a step change in + the rotational speed. +
                        2. +
                        3. If useInpFil=true, which is the default, then + the rotational speed is equal to the output of a filter. This + filter is implemented as a 2nd order differential equation. Thus, + a step change in the compressor's input signal will cause a + gradual change in the rotational speed. The filter has a + parameter risTim, which by default is set to + 1 second. The rise time is the time required to reach + 99.6% of the full rotational speed, or, if the compressor + is shut-down, to reach a rotational speed of 0.4%. +
                        4. +
                        +
                        -

                        - These efficiency models are stored in - AixLib.Fluid.Movers.Compressors.Utilities.EngineEfficiency, - - AixLib.Fluid.Movers.Compressors.Utilities.IsentropicEfficiency - and - AixLib.Fluid.Movers.Compressors.Utilities.VolumetricEfficiency. - Therefore, the calculation procedure of the efficiencies are - introduced as replaceable models and must be defined by the User. - Further information is given in the following sections: -

                        -
                          -
                        1. - - Engine efficiencies -
                        2. -
                        3. - - Volumetric efficiencies -
                        4. -
                        5. - - Isentropic efficiencies -
                        6. -
                        -

                        - Naming and abbreviations -

                        -

                        - In the following, a guideline of naming efficiency models is - summarised: -

                        -

                        - Approach of calculating efficiency _ Valid refrigerants - _ Displacement volume _ Type of compressor -

                        -
                          -
                        1. - Approach: Approach of calculating efficiency, e.g. - polynomial or power. -
                        2. -
                        3. - Refrigerant: Refrigerants the efficiency model is valid for, - e.g. R134a or R410a. -
                        4. -
                        5. - Displacement volume: Displacement volume the efficiency - model is valid for, e.g. 170cm³. -
                        6. -
                        7. - Type: Type of compressor, e.g. scroll compressor. -
                        8. -
                        -

                        - Transient behaviour -

                        -

                        - The base model has a parameter useInpFil that is used to - model the compressors's transient behaviour while changing rotational - speed. Generally, this approach uses the same modeling attempt as the - stat-up and shut-down transients introtuced for flow machines (see - AixLib.Fluid.Movers.UsersGuide). - Therefore, just the parameter's affections are presented here: -

                        -
                          -
                        1. If useInpFil=false, then the input signal - opeSet.y is equal to the compressor's rotational speed. - Thus, a step change in the input signal causes a step change in the - rotational speed. -
                        2. -
                        3. If useInpFil=true, which is the default, then the - rotational speed is equal to the output of a filter. This filter is - implemented as a 2nd order differential equation. Thus, a step change - in the compressor's input signal will cause a gradual change in the - rotational speed. The filter has a parameter risTim, - which by default is set to 1 second. The rise time is the time - required to reach 99.6% of the full rotational speed, or, if - the compressor is shut-down, to reach a rotational speed of - 0.4%. -
                        4. -
                        ")); end Approaches; diff --git a/AixLib/Fluid/Movers/Compressors/UsersGuide/References.mo b/AixLib/Fluid/Movers/Compressors/UsersGuide/References.mo index 322931fbc4..1edbfeb142 100644 --- a/AixLib/Fluid/Movers/Compressors/UsersGuide/References.mo +++ b/AixLib/Fluid/Movers/Compressors/UsersGuide/References.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Movers.Compressors.UsersGuide; +within AixLib.Fluid.Movers.Compressors.UsersGuide; class References "References" extends Modelica.Icons.References; diff --git a/AixLib/Fluid/Movers/Compressors/Utilities/EngineEfficiency/PartialEngineEfficiency.mo b/AixLib/Fluid/Movers/Compressors/Utilities/EngineEfficiency/PartialEngineEfficiency.mo index 08c2005809..76808d9792 100644 --- a/AixLib/Fluid/Movers/Compressors/Utilities/EngineEfficiency/PartialEngineEfficiency.mo +++ b/AixLib/Fluid/Movers/Compressors/Utilities/EngineEfficiency/PartialEngineEfficiency.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Movers.Compressors.Utilities.EngineEfficiency; +within AixLib.Fluid.Movers.Compressors.Utilities.EngineEfficiency; partial model PartialEngineEfficiency "Based model used by all models describing engine efficiencies" extends BaseClasses.PartialEfficiency; @@ -11,8 +11,10 @@ partial model PartialEngineEfficiency // Definition of outputs // - output Modelica.SIunits.Efficiency etaEng(min=0, max=1, nominal= 0.9) - "Overall engine efficiency"; + output Modelica.Units.SI.Efficiency etaEng( + min=0, + max=1, + nominal=0.9) "Overall engine efficiency"; annotation (Documentation(revisions="
                        • October 20, 2017, by Mirko Engelpracht:
                          @@ -27,107 +29,112 @@ partial model PartialEngineEfficiency and outputs that are commonly used by efficiency models and these inputs and outputs are summarised below:

                          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
                          - Type - - Name - - Comment -
                          - input - - epsRef - - Ratio of the real and the ideal displacement volume -
                          - input - - VDis - - Displacement volume -
                          - input - - piPre - - Pressure ratio -
                          - input - - rotSpe - - Rotational speed -
                          - input - - staInl - - Thermodynamic state at compressor's inlet conditions -
                          - input - - staOut - - Thermodynamic state at compressor's out conditions -
                          - input - - TAmb - - Ambient temperature -
                          - output - - ηeng - - Overall engine efficiency -
                          +
                          + \"Inputs and outputs\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                          + Type + + Name + + Comment +
                          + input + + epsRef + + Ratio of the real and the ideal displacement volume +
                          + input + + VDis + + Displacement volume +
                          + input + + piPre + + Pressure ratio +
                          + input + + rotSpe + + Rotational speed +
                          + input + + staInl + + Thermodynamic state at compressor's inlet conditions +
                          + input + + staOut + + Thermodynamic state at compressor's out conditions +
                          + input + + TAmb + + Ambient temperature +
                          + output + + ηeng + + Overall engine efficiency +
                          +
                          ")); end PartialEngineEfficiency; diff --git a/AixLib/Fluid/Movers/Compressors/Utilities/EngineEfficiency/PolynomialEngineEfficiency.mo b/AixLib/Fluid/Movers/Compressors/Utilities/EngineEfficiency/PolynomialEngineEfficiency.mo index b2b69e6c73..c41672375b 100644 --- a/AixLib/Fluid/Movers/Compressors/Utilities/EngineEfficiency/PolynomialEngineEfficiency.mo +++ b/AixLib/Fluid/Movers/Compressors/Utilities/EngineEfficiency/PolynomialEngineEfficiency.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Movers.Compressors.Utilities.EngineEfficiency; +within AixLib.Fluid.Movers.Compressors.Utilities.EngineEfficiency; model PolynomialEngineEfficiency "Model describing engine efficiency based on polynomial approach" extends PartialEngineEfficiency; @@ -145,122 +145,129 @@ equation \"modelica://AixLib.Fluid.Movers.Compressors.Utilities.Types\">AixLib.Fluid.Movers.Compressors.Utilities.Types and expand the if-structure.

                          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
                          - Reference - - Formula - - Refrigerants - - Validity ncompressor - - Validity Πpressure -
                          - JahningEtAl2000 - - ηeng = a1 + a2*exp(pInl)^b2 - - Generic model - - Generic model - - Generic model -
                          - DurprezEtAl2007 - - ηeng = a1 + a2*π + a3*π^2 + a4*π^3 + a5*π^4 + - a6*π^5 + a7*π^6 - - Generic model - - Generic model - - Generic model -
                          - KinarbEtAl2010 - - ηeng = a1 + a2*π + a3*π^2 - - Generic model - - Generic model - - Generic model -
                          - Engelpracht2017 - - ηeng = a1 + a2*π + a3*π^2 + a4*n*π + a5*n^2 + - a6*π^2*n + a7*π*n^2 + a8*n^3 + a9*π^2n^2 + a10*π*π^3 + - a11*n^4 - - Generic model - - 0 - 120 - - 1 - 10 -
                          +
                          + \"Polynomial approaches\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                          + Reference + + Formula + + Refrigerants + + Validity ncompressor + + Validity Πpressure +
                          + JahningEtAl2000 + + ηeng = a1 + + a2*exp(pInl)^b2 + + Generic model + + Generic model + + Generic model +
                          + DurprezEtAl2007 + + ηeng = a1 + a2*π + a3*π^2 + a4*π^3 + a5*π^4 + + a6*π^5 + a7*π^6 + + Generic model + + Generic model + + Generic model +
                          + KinarbEtAl2010 + + ηeng = a1 + a2*π + a3*π^2 + + Generic model + + Generic model + + Generic model +
                          + Engelpracht2017 + + ηeng = a1 + a2*π + a3*π^2 + a4*n*π + a5*n^2 + + a6*π^2*n + a7*π*n^2 + a8*n^3 + a9*π^2n^2 + a10*π*π^3 + + a11*n^4 + + Generic model + + 0 - 120 + + 1 - 10 +
                          +

                          + References +

                          +

                          + I.D. Jähnig, D. Reindl and S.A. Klein, S. A. (2000): + Semi-empirical method for representing domestic + refrigerator/freezer compressor calorimeter test data. +

                          +

                          + M.-E Duprez, E. Dumont and M. Frère (2007): + Modelling of reciprocating and scroll compressors. In: + International Journal of Refrigeration 30(5), S. 873–886 +

                          +

                          + E. Kinab, D. Marchio, P. Rivière and A. Zoughaib (2010): + Reversible heat pump model for seasonal performance + optimization. In: Energy and Buildings 42(12), S. + 2269–2280 +

                          +

                          + M. Engelpracht (2017): Development of modular and scalable + simulation models for heat pumps and chillers considering various + refrigerants. Master Thesis +

                          +
                          -

                          - References -

                          -

                          - I.D. Jähnig, D. Reindl and S.A. Klein, S. A. (2000): - Semi-empirical method for representing domestic refrigerator/freezer - compressor calorimeter test data. -

                          -

                          - M.-E Duprez, E. Dumont and M. Frère (2007): Modelling - of reciprocating and scroll compressors. In: International - Journal of Refrigeration 30(5), S. 873–886 -

                          -

                          - E. Kinab, D. Marchio, P. Rivière and A. Zoughaib (2010): Reversible - heat pump model for seasonal performance optimization. In: - Energy and Buildings 42(12), S. 2269–2280 -

                          -

                          - M. Engelpracht (2017): Development of modular and scalable simulation - models for heat pumps and chillers considering various refrigerants. - Master Thesis -

                          ")); end PolynomialEngineEfficiency; diff --git a/AixLib/Fluid/Movers/Compressors/Utilities/EngineEfficiency/PowerEngineEfficiency.mo b/AixLib/Fluid/Movers/Compressors/Utilities/EngineEfficiency/PowerEngineEfficiency.mo index 9ccb55638e..f03761d4eb 100644 --- a/AixLib/Fluid/Movers/Compressors/Utilities/EngineEfficiency/PowerEngineEfficiency.mo +++ b/AixLib/Fluid/Movers/Compressors/Utilities/EngineEfficiency/PowerEngineEfficiency.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Movers.Compressors.Utilities.EngineEfficiency; +within AixLib.Fluid.Movers.Compressors.Utilities.EngineEfficiency; model PowerEngineEfficiency "Model describing flow engine efficiency on power approach" extends PartialEngineEfficiency; @@ -21,12 +21,11 @@ model PowerEngineEfficiency // Definition of further parameters required for special approaches // - parameter Modelica.SIunits.MolarMass MRef=0.1 - "Reference molar wheight" - annotation(Dialog(group="Reference properties")); - parameter Modelica.SIunits.Frequency rotSpeRef = 9.334 + parameter Modelica.Units.SI.MolarMass MRef=0.1 "Reference molar wheight" + annotation (Dialog(group="Reference properties")); + parameter Modelica.Units.SI.Frequency rotSpeRef=9.334 "Reference rotational speed" - annotation(Dialog(group="Reference properties")); + annotation (Dialog(group="Reference properties")); // Definition of coefficients // @@ -94,56 +93,61 @@ equation \"modelica://AixLib.Fluid.Movers.Compressors.Utilities.Types\">AixLib.Fluid.Movers.Compressors.Utilities.Types and expand the if-structure.

                          - - - - - - - - - - - - - - - +
                          - Reference - - Formula - - Refrigerants - - Validity ncompressor - - Validity Πpressure -
                          - MendozaMirandaEtAl2016 - - ηeng = a1 * π^b1 * (nref/n)^b2 * - (1/((TInl+TOutIse)/2-TOut))^b3 * - (Mref/M)^b4 - - R134a,R450a,R1324yf,R1234ze(E) - - 0 - 50 - - 1 - 6 -
                          +
                          + \"Power approaches\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + +
                          + Reference + + Formula + + Refrigerants + + Validity ncompressor + + Validity Πpressure +
                          + MendozaMirandaEtAl2016 + + ηeng = a1 * π^b1 * (nref/n)^b2 * + (1/((TInl+TOutIse)/2-TOut))^b3 + * (Mref/M)^b4 + + R134a,R450a,R1324yf,R1234ze(E) + + 0 - 50 + + 1 - 6 +
                          +

                          + References +

                          +

                          + J.M. Mendoza-Miranda, A. Mota-Babiloni, J.J. Ramírez-Minguela, + V.D. Muñoz-Carpio, M. Carrera-Rodríguez, J. Navarro-Esbrí and C. + Salazar-Hernández (2016): + Comparative evaluation of R1234yf, R1234ze(E) and R450A as + alternatives to R134a in a variable speed reciprocating + compressor. In: Energy 114, S. 753–766 +

                          +
                          -

                          - References -

                          -

                          - J.M. Mendoza-Miranda, A. Mota-Babiloni, J.J. Ramírez-Minguela, V.D. - Muñoz-Carpio, M. Carrera-Rodríguez, J. Navarro-Esbrí and C. - Salazar-Hernández (2016): Comparative - evaluation of R1234yf, R1234ze(E) and R450A as alternatives to R134a - in a variable speed reciprocating compressor. In: Energy - 114, S. 753–766 -

                          ")); end PowerEngineEfficiency; diff --git a/AixLib/Fluid/Movers/Compressors/Utilities/EngineEfficiency/SpecifiedEfficiencies/Buck_R134aR450aR1234yfR1234zee_VarDisVol_ReciprocatingRotaryScroll.mo b/AixLib/Fluid/Movers/Compressors/Utilities/EngineEfficiency/SpecifiedEfficiencies/Buck_R134aR450aR1234yfR1234zee_VarDisVol_ReciprocatingRotaryScroll.mo index 322bb891c0..195c5d3201 100644 --- a/AixLib/Fluid/Movers/Compressors/Utilities/EngineEfficiency/SpecifiedEfficiencies/Buck_R134aR450aR1234yfR1234zee_VarDisVol_ReciprocatingRotaryScroll.mo +++ b/AixLib/Fluid/Movers/Compressors/Utilities/EngineEfficiency/SpecifiedEfficiencies/Buck_R134aR450aR1234yfR1234zee_VarDisVol_ReciprocatingRotaryScroll.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Movers.Compressors.Utilities.EngineEfficiency.SpecifiedEfficiencies; +within AixLib.Fluid.Movers.Compressors.Utilities.EngineEfficiency.SpecifiedEfficiencies; model Buck_R134aR450aR1234yfR1234zee_VarDisVol_ReciprocatingRotaryScroll "Reciporating/Rotary/Scroll Compressor - R134a, R450a, R1234yf, R1234ze(e) - Similitude - Power" extends PowerEngineEfficiency( @@ -20,56 +20,61 @@ model Buck_R134aR450aR1234yfR1234zee_VarDisVol_ReciprocatingRotaryScroll This model contains a calculation procedure for the engine efficiency presented by Mendoza-Miranda et al. (2016).

                          - - - - - - - - - - - - - - - +
                          - Reference - - Formula - - Refrigerants - - Validity ncompressor - - Validity Πpressure -
                          - MendozaMirandaEtAl2016 - - ηeng = π^b1 * (nref/n)^b2 * - (1/((TInl+TOutIse)/2-TOut))^b3 * - (Mref/M)^b4 - - R134a,R450a,R1324yf,R1234ze(E) - - 0 - 50 - - 1 - 6 -
                          +
                          + \"Power approaches\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + +
                          + Reference + + Formula + + Refrigerants + + Validity ncompressor + + Validity Πpressure +
                          + MendozaMirandaEtAl2016 + + ηeng = π^b1 * (nref/n)^b2 * + (1/((TInl+TOutIse)/2-TOut))^b3 + * (Mref/M)^b4 + + R134a,R450a,R1324yf,R1234ze(E) + + 0 - 50 + + 1 - 6 +
                          +

                          + References +

                          +

                          + J.M. Mendoza-Miranda, A. Mota-Babiloni, J.J. Ramírez-Minguela, + V.D. Muñoz-Carpio, M. Carrera-Rodríguez, J. Navarro-Esbrí and C. + Salazar-Hernández (2016): + Comparative evaluation of R1234yf, R1234ze(E) and R450A as + alternatives to R134a in a variable speed reciprocating + compressor. In: Energy 114, S. 753–766 +

                          +
                          -

                          - References -

                          -

                          - J.M. Mendoza-Miranda, A. Mota-Babiloni, J.J. Ramírez-Minguela, V.D. - Muñoz-Carpio, M. Carrera-Rodríguez, J. Navarro-Esbrí and C. - Salazar-Hernández (2016): Comparative - evaluation of R1234yf, R1234ze(E) and R450A as alternatives to R134a - in a variable speed reciprocating compressor. In: Energy - 114, S. 753–766 -

                          ")); end Buck_R134aR450aR1234yfR1234zee_VarDisVol_ReciprocatingRotaryScroll; diff --git a/AixLib/Fluid/Movers/Compressors/Utilities/EngineEfficiency/SpecifiedEfficiencies/ConstantEfficiency.mo b/AixLib/Fluid/Movers/Compressors/Utilities/EngineEfficiency/SpecifiedEfficiencies/ConstantEfficiency.mo index fcd68ac144..d5e88021f8 100644 --- a/AixLib/Fluid/Movers/Compressors/Utilities/EngineEfficiency/SpecifiedEfficiencies/ConstantEfficiency.mo +++ b/AixLib/Fluid/Movers/Compressors/Utilities/EngineEfficiency/SpecifiedEfficiencies/ConstantEfficiency.mo @@ -6,7 +6,7 @@ model ConstantEfficiency // Definition of parameters // - parameter Modelica.SIunits.Efficiency etaEngCon = 0.9 + parameter Modelica.Units.SI.Efficiency etaEngCon=0.9 "Constant overall engine efficiency"; equation diff --git a/AixLib/Fluid/Movers/Compressors/Utilities/EngineEfficiency/SpecifiedEfficiencies/Generic_VarRef_VarDisVol_RotaryScroll.mo b/AixLib/Fluid/Movers/Compressors/Utilities/EngineEfficiency/SpecifiedEfficiencies/Generic_VarRef_VarDisVol_RotaryScroll.mo index 961f8668cb..95104a7e89 100644 --- a/AixLib/Fluid/Movers/Compressors/Utilities/EngineEfficiency/SpecifiedEfficiencies/Generic_VarRef_VarDisVol_RotaryScroll.mo +++ b/AixLib/Fluid/Movers/Compressors/Utilities/EngineEfficiency/SpecifiedEfficiencies/Generic_VarRef_VarDisVol_RotaryScroll.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Movers.Compressors.Utilities.EngineEfficiency.SpecifiedEfficiencies; +within AixLib.Fluid.Movers.Compressors.Utilities.EngineEfficiency.SpecifiedEfficiencies; model Generic_VarRef_VarDisVol_RotaryScroll "Generic overall engine efficiency based on literature review for various compressors" extends PolynomialEngineEfficiency( @@ -21,52 +21,57 @@ model Generic_VarRef_VarDisVol_RotaryScroll "Generic overall engine efficiency b fitted to various experimental data obtained by a literature review and, therefore, to use with caution.

                          - - - - - - - - - - - - - - - +
                          - Reference - - Formula - - Refrigerants - - Validity ncompressor - - Validity Πpressure -
                          - Engelpracht2017 - - ηeng = a1 + a2*π + a3*π^2 + a4*n*π + a5*n^2 + - a6*π^2*n + a7*π*n^2 + a8*n^3 + a9*π^2n^2 + a10*π*π^3 + - a11*n^4 - - Generic model - - 0 - 120 - - 1 - 10 -
                          +
                          + \"Polynomial approaches\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + +
                          + Reference + + Formula + + Refrigerants + + Validity ncompressor + + Validity Πpressure +
                          + Engelpracht2017 + + ηeng = a1 + a2*π + a3*π^2 + a4*n*π + a5*n^2 + + a6*π^2*n + a7*π*n^2 + a8*n^3 + a9*π^2n^2 + a10*π*π^3 + + a11*n^4 + + Generic model + + 0 - 120 + + 1 - 10 +
                          +

                          + References +

                          +

                          + Engelpracht, Mirko (2017): Development of modular and scalable + simulation models for heat pumps and chillers considering various + refrigerants. Master Thesis +

                          +
                          -

                          - References -

                          -

                          - Engelpracht, Mirko (2017): Development of modular and scalable - simulation models for heat pumps and chillers considering various - refrigerants. Master Thesis -

                          ")); end Generic_VarRef_VarDisVol_RotaryScroll; diff --git a/AixLib/Fluid/Movers/Compressors/Utilities/EngineEfficiency/package.mo b/AixLib/Fluid/Movers/Compressors/Utilities/EngineEfficiency/package.mo index 00095e6d45..c9ecd6af0a 100644 --- a/AixLib/Fluid/Movers/Compressors/Utilities/EngineEfficiency/package.mo +++ b/AixLib/Fluid/Movers/Compressors/Utilities/EngineEfficiency/package.mo @@ -1,6 +1,6 @@ -within AixLib.Fluid.Movers.Compressors.Utilities; +within AixLib.Fluid.Movers.Compressors.Utilities; package EngineEfficiency "Package that contains models describing different engine efficiencies" - extends Modelica.Icons.Library; + extends Modelica.Icons.Package; annotation (Icon(coordinateSystem(preserveAspectRatio=false), graphics={ @@ -54,114 +54,120 @@ Documentation(revisions="
                            Calculation procedures presented in the litarture have some variables in commen and these variables are presented below:

                            - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
                            - Variable - - Comment -
                            - epsRef - - Ratio of the real and the ideal displacement volume -
                            - VDis - - Displacement volume -
                            - piPre - - Pressure ratio -
                            - rotSpe - - Rotational speed -
                            - staInl - - Thermodynamic state at compressor's inlet conditions -
                            - staOut - - Thermodynamic state at compressor's out conditions -
                            - TAmb - - Ambient temperature -
                            +
                            + \"Inputs and outputs\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                            + Variable + + Comment +
                            + epsRef + + Ratio of the real and the ideal displacement volume +
                            + VDis + + Displacement volume +
                            + piPre + + Pressure ratio +
                            + rotSpe + + Rotational speed +
                            + staInl + + Thermodynamic state at compressor's inlet conditions +
                            + staOut + + Thermodynamic state at compressor's out conditions +
                            + TAmb + + Ambient temperature +
                            +

                            + Moreover, two approaches can be identified in general: A + polynomial and a power approach. The characteristics of these + approaches are presented below. +

                            +

                            + Polynomial approaches +

                            +

                            + A generic polynomial approach is presented below:
                            +
                            + ηeng = corFact * sum(a[i]*P[i]^b[i] for i in + 1:nT)
                            +
                            + Actually, four polynomial approaches are implemented in this + package. +

                            +

                            + Power approaches +

                            +

                            + A generic power approach is presented below:
                            +
                            + ηeng = corFact * a * product(P[i]^b[i] for i in + 1:nT)
                            +
                            + Actually, one power approache is implemented in this package. +

                            +

                            + References +

                            +

                            + In the following, some general references are given for + information about calculating efficiencies of compressors: +

                            +

                            + V. A. Cara Martin and R. Radermacher (2015): + AHRI Project 8013: A Study of Methods to Represent Compressor + Performance Data over an Operating Envelope Based on a Finite Set + of Test Data. Publisher: Air-Conditioning, Heating, and + Refrigeration Institute (AHRI) +

                            +
                            -

                            - Moreover, two approaches can be identified in general: A polynomial - and a power approach. The characteristics of these approaches are - presented below. -

                            -

                            - Polynomial approaches -

                            -

                            - A generic polynomial approach is presented below:
                            -
                            - ηeng = corFact * sum(a[i]*P[i]^b[i] for i in - 1:nT)
                            -
                            - Actually, four polynomial approaches are implemented in this package. -

                            -

                            - Power approaches -

                            -

                            - A generic power approach is presented below:
                            -
                            - ηeng = corFact * a * product(P[i]^b[i] for i in - 1:nT)
                            -
                            - Actually, one power approache is implemented in this package. -

                            -

                            - References -

                            -

                            - In the following, some general references are given for information - about calculating efficiencies of compressors: -

                            -

                            - V. A. Cara Martin and R. Radermacher (2015): - AHRI Project 8013: A Study of Methods to Represent Compressor - Performance Data over an Operating Envelope Based on a Finite Set of - Test Data. Publisher: Air-Conditioning, Heating, and - Refrigeration Institute (AHRI) -

                            ")); end EngineEfficiency; diff --git a/AixLib/Fluid/Movers/Compressors/Utilities/HeatTransfer/SimpleFictitiousWall.mo b/AixLib/Fluid/Movers/Compressors/Utilities/HeatTransfer/SimpleFictitiousWall.mo index c9488b8f49..543b09684c 100644 --- a/AixLib/Fluid/Movers/Compressors/Utilities/HeatTransfer/SimpleFictitiousWall.mo +++ b/AixLib/Fluid/Movers/Compressors/Utilities/HeatTransfer/SimpleFictitiousWall.mo @@ -4,16 +4,13 @@ model SimpleFictitiousWall // Definition of parameters describing the fictitious wall // - parameter Modelica.SIunits.Mass mWal = 2.5 - "Mass of the fictitious wall" - annotation (Dialog(tab="General",group="General")); - parameter Modelica.SIunits.SpecificHeatCapacity cpWal = 450 + parameter Modelica.Units.SI.Mass mWal=2.5 "Mass of the fictitious wall" + annotation (Dialog(tab="General", group="General")); + parameter Modelica.Units.SI.SpecificHeatCapacity cpWal=450 "Specific heat capacity of the fictitious wall" - annotation (Dialog(tab="General",group="General")); - parameter Modelica.SIunits.ThermalConductance kAMeaAmb = 10 - "Effective mean thermal conductance coefficient between fictitious wall - and ambient" - annotation (Dialog(tab="General",group="General")); + annotation (Dialog(tab="General", group="General")); + parameter Modelica.Units.SI.ThermalConductance kAMeaAmb=10 "Effective mean thermal conductance coefficient between fictitious wall + and ambient" annotation (Dialog(tab="General", group="General")); // Definition of parameters describing advanced options // @@ -21,9 +18,9 @@ model SimpleFictitiousWall "= true, if wall is initialised at fixed temperature; Otherwise, steady state initialisation" annotation (Dialog(tab="Advanced",group="Initialisation")); - parameter Modelica.SIunits.Temperature TWal0 = 343.15 + parameter Modelica.Units.SI.Temperature TWal0=343.15 "Temperature of wall at initialisation" - annotation (Dialog(tab="Advanced",group="Initialisation")); + annotation (Dialog(tab="Advanced", group="Initialisation")); // Definition of submodels and connectors // @@ -46,11 +43,10 @@ model SimpleFictitiousWall // Definition of parameters // - Modelica.SIunits.Temperature TWal - "Temperature of fictitious wall"; + Modelica.Units.SI.Temperature TWal "Temperature of fictitious wall"; protected - Modelica.SIunits.Power Q_flow_amb + Modelica.Units.SI.Power Q_flow_amb "Heat flow between ambient and fictitious wall"; initial equation diff --git a/AixLib/Fluid/Movers/Compressors/Utilities/HeatTransfer/SimpleHeatTransfer.mo b/AixLib/Fluid/Movers/Compressors/Utilities/HeatTransfer/SimpleHeatTransfer.mo index 01c91483d5..b10b0b69ce 100644 --- a/AixLib/Fluid/Movers/Compressors/Utilities/HeatTransfer/SimpleHeatTransfer.mo +++ b/AixLib/Fluid/Movers/Compressors/Utilities/HeatTransfer/SimpleHeatTransfer.mo @@ -9,9 +9,9 @@ model SimpleHeatTransfer Types.HeatTransferModels.Simplified "Choose heat transfer model" annotation (Dialog(tab="General",group="Heat transfer")); - parameter Modelica.SIunits.ThermalConductance kAMea = 25 + parameter Modelica.Units.SI.ThermalConductance kAMea=25 "Effective mean thermal conductance between medium and fictitious wall" - annotation (Dialog(tab="General",group="Heat transfer")); + annotation (Dialog(tab="General", group="Heat transfer")); // Extensions and parameter propagation // @@ -25,10 +25,9 @@ model SimpleHeatTransfer // Definition of parameters describing advanced options // - parameter Modelica.SIunits.MassFlowRate m_flow_nominal = 0.1 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=0.1 "Nominal mass flow rate" - annotation(Dialog(tab="Advanced"), - HideResult=true); + annotation (Dialog(tab="Advanced"), HideResult=true); // Definition of submodels and connectors // @@ -43,9 +42,9 @@ protected Medium.ThermodynamicState staOut "Thermodynamic state at outlet"; - Modelica.SIunits.TemperatureDifference effTemDif + Modelica.Units.SI.TemperatureDifference effTemDif "Effective temperature difference between medium and wall"; - Modelica.SIunits.Power Q_flow + Modelica.Units.SI.Power Q_flow "Heat flow exchanged between medium and heat port"; diff --git a/AixLib/Fluid/Movers/Compressors/Utilities/IsentropicEfficiency/PartialIsentropicEfficiency.mo b/AixLib/Fluid/Movers/Compressors/Utilities/IsentropicEfficiency/PartialIsentropicEfficiency.mo index 3bd87eb60e..b63682bd42 100644 --- a/AixLib/Fluid/Movers/Compressors/Utilities/IsentropicEfficiency/PartialIsentropicEfficiency.mo +++ b/AixLib/Fluid/Movers/Compressors/Utilities/IsentropicEfficiency/PartialIsentropicEfficiency.mo @@ -1,12 +1,14 @@ -within AixLib.Fluid.Movers.Compressors.Utilities.IsentropicEfficiency; +within AixLib.Fluid.Movers.Compressors.Utilities.IsentropicEfficiency; partial model PartialIsentropicEfficiency "Based model used by all models describing isentropic efficiencies" extends BaseClasses.PartialEfficiency; // Definition of outputs // - output Modelica.SIunits.Efficiency etaIse(min=0, max=1, nominal= 0.9) - "Overall isentropic efficiency"; + output Modelica.Units.SI.Efficiency etaIse( + min=0, + max=1, + nominal=0.9) "Overall isentropic efficiency"; annotation (Documentation(revisions="
                            • October 20, 2017, by Mirko Engelpracht:
                              @@ -21,107 +23,112 @@ partial model PartialIsentropicEfficiency inputs and outputs that are commonly used by efficiency models and these inputs and outputs are summarised below:

                              - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
                              - Type - - Name - - Comment -
                              - input - - epsRef - - Ratio of the real and the ideal displacement volume -
                              - input - - VDis - - Displacement volume -
                              - input - - piPre - - Pressure ratio -
                              - input - - rotSpe - - Rotational speed -
                              - input - - staInl - - Thermodynamic state at compressor's inlet conditions -
                              - input - - staOut - - Thermodynamic state at compressor's out conditions -
                              - input - - TAmb - - Ambient temperature -
                              - output - - ηise - - Overall isentropic efficiency -
                              +
                              + \"Inputs and outputs\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                              + Type + + Name + + Comment +
                              + input + + epsRef + + Ratio of the real and the ideal displacement volume +
                              + input + + VDis + + Displacement volume +
                              + input + + piPre + + Pressure ratio +
                              + input + + rotSpe + + Rotational speed +
                              + input + + staInl + + Thermodynamic state at compressor's inlet conditions +
                              + input + + staOut + + Thermodynamic state at compressor's out conditions +
                              + input + + TAmb + + Ambient temperature +
                              + output + + ηise + + Overall isentropic efficiency +
                              +
                              ")); end PartialIsentropicEfficiency; diff --git a/AixLib/Fluid/Movers/Compressors/Utilities/IsentropicEfficiency/PolynomialIsentropicEfficiency.mo b/AixLib/Fluid/Movers/Compressors/Utilities/IsentropicEfficiency/PolynomialIsentropicEfficiency.mo index b8f3b4579e..20d9664cd8 100644 --- a/AixLib/Fluid/Movers/Compressors/Utilities/IsentropicEfficiency/PolynomialIsentropicEfficiency.mo +++ b/AixLib/Fluid/Movers/Compressors/Utilities/IsentropicEfficiency/PolynomialIsentropicEfficiency.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Movers.Compressors.Utilities.IsentropicEfficiency; +within AixLib.Fluid.Movers.Compressors.Utilities.IsentropicEfficiency; model PolynomialIsentropicEfficiency "Model describing isentropic efficiency based on polynomial approach" extends PartialIsentropicEfficiency; @@ -24,9 +24,9 @@ model PolynomialIsentropicEfficiency parameter Real c[:] = {1} "Coefficients used for correction factors if needed" annotation(Dialog(group="Modelling approach")); - parameter Modelica.SIunits.Frequency rotSpeRef = 9.334 + parameter Modelica.Units.SI.Frequency rotSpeRef=9.334 "Reference rotational speed" - annotation(Dialog(group="Reference properties")); + annotation (Dialog(group="Reference properties")); // Definition of coefficients // @@ -130,98 +130,105 @@ equation \"modelica://AixLib.Fluid.Movers.Compressors.Utilities.Types\">AixLib.Fluid.Movers.Compressors.Utilities.Types and expand the if-structure.

                              - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
                              - Reference - - Formula - - Refrigerants - - Validity ncompressor - - Validity Πpressure -
                              - DarrAndCrawford1992 - - ηise = a1 + a2*n + a3/ρinlet - - R134a - - 40 - 75 - - 3 - 10 -
                              - Karlsson2007 - - ηise = a1 + a2*π + a3*π^2 + a4*n + a5*n^2 - - R407c - - No information - - No information -
                              - Engelpracht2017 - - ηise = a1 + a2*n + a3*n^3 + a5*π^2 - - Generic model - - 0 - 120 - - 1 - 10 -
                              +
                              + \"Polynomial approaches\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                              + Reference + + Formula + + Refrigerants + + Validity ncompressor + + Validity Πpressure +
                              + DarrAndCrawford1992 + + ηise = a1 + a2*n + + a3/ρinlet + + R134a + + 40 - 75 + + 3 - 10 +
                              + Karlsson2007 + + ηise = a1 + a2*π + a3*π^2 + a4*n + + a5*n^2 + + R407c + + No information + + No information +
                              + Engelpracht2017 + + ηise = a1 + a2*n + a3*n^3 + a5*π^2 + + Generic model + + 0 - 120 + + 1 - 10 +
                              +

                              + References +

                              +

                              + J.H. Darr and R.R. Crawford (1992): + Modeling of an Automotive Air Conditioning Compressor Based on + Experimental Data: ACRC Technical Report 14. Publisher: + Air Conditioning and Refrigeration Center. College of + Engineering. University of Illinois at Urbana-Champaign. +

                              +

                              + F. Karlsson (2007): + Capacity Control of Residential Heat Pump Heating Systems. + In: PhD thesis +

                              +

                              + M. Engelpracht (2017): Development of modular and scalable + simulation models for heat pumps and chillers considering various + refrigerants. Master Thesis +

                              +
                              -

                              - References -

                              -

                              - J.H. Darr and R.R. Crawford (1992): - Modeling of an Automotive Air Conditioning Compressor Based on - Experimental Data: ACRC Technical Report 14. Publisher: Air - Conditioning and Refrigeration Center. College of Engineering. - University of Illinois at Urbana-Champaign. -

                              -

                              - F. Karlsson (2007): - Capacity Control of Residential Heat Pump Heating Systems. In: - PhD thesis -

                              -

                              - M. Engelpracht (2017): Development of modular and scalable simulation - models for heat pumps and chillers considering various refrigerants. - Master Thesis -

                              ")); end PolynomialIsentropicEfficiency; diff --git a/AixLib/Fluid/Movers/Compressors/Utilities/IsentropicEfficiency/PowerIsentropicEfficiency.mo b/AixLib/Fluid/Movers/Compressors/Utilities/IsentropicEfficiency/PowerIsentropicEfficiency.mo index 7c709a1dfc..db6dfd8eea 100644 --- a/AixLib/Fluid/Movers/Compressors/Utilities/IsentropicEfficiency/PowerIsentropicEfficiency.mo +++ b/AixLib/Fluid/Movers/Compressors/Utilities/IsentropicEfficiency/PowerIsentropicEfficiency.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Movers.Compressors.Utilities.IsentropicEfficiency; +within AixLib.Fluid.Movers.Compressors.Utilities.IsentropicEfficiency; model PowerIsentropicEfficiency "Model describing flow isentropic efficiency on power approach" extends PartialIsentropicEfficiency; @@ -21,12 +21,11 @@ model PowerIsentropicEfficiency // Definition of further parameters required for special approaches // - parameter Modelica.SIunits.MolarMass MRef=0.1 - "Reference molar wheight" - annotation(Dialog(group="Reference properties")); - parameter Modelica.SIunits.Frequency rotSpeRef = 9.334 + parameter Modelica.Units.SI.MolarMass MRef=0.1 "Reference molar wheight" + annotation (Dialog(group="Reference properties")); + parameter Modelica.Units.SI.Frequency rotSpeRef=9.334 "Reference rotational speed" - annotation(Dialog(group="Reference properties")); + annotation (Dialog(group="Reference properties")); // Definition of coefficients // @@ -91,56 +90,61 @@ equation \"modelica://AixLib.Fluid.Movers.Compressors.Utilities.Types\">AixLib.Fluid.Movers.Compressors.Utilities.Types and expand the if-structure.

                              - - - - - - - - - - - - - - - +
                              - Reference - - Formula - - Refrigerants - - Validity ncompressor - - Validity Πpressure -
                              - MendozaMirandaEtAl2016 - - ηise = a1 * π^b1 * (nref/n)^b2 * - (n^3*Vdis/dhise^1.5)^b3 * - (1/((Tinl+ToutIse)/2-Tout))^b4 - - R134a,R450a,R1324yf,R1234ze(E) - - 0 - 50 - - 1 - 6 -
                              +
                              + \"Power approaches\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + +
                              + Reference + + Formula + + Refrigerants + + Validity ncompressor + + Validity Πpressure +
                              + MendozaMirandaEtAl2016 + + ηise = a1 * π^b1 * (nref/n)^b2 * + (n^3*Vdis/dhise^1.5)^b3 * + (1/((Tinl+ToutIse)/2-Tout))^b4 + + R134a,R450a,R1324yf,R1234ze(E) + + 0 - 50 + + 1 - 6 +
                              +

                              + References +

                              +

                              + J.M. Mendoza-Miranda, A. Mota-Babiloni, J.J. Ramírez-Minguela, + V.D. Muñoz-Carpio, M. Carrera-Rodríguez, J. Navarro-Esbrí and C. + Salazar-Hernández (2016): + Comparative evaluation of R1234yf, R1234ze(E) and R450A as + alternatives to R134a in a variable speed reciprocating + compressor. In: Energy 114, S. 753–766 +

                              +
                              -

                              - References -

                              -

                              - J.M. Mendoza-Miranda, A. Mota-Babiloni, J.J. Ramírez-Minguela, V.D. - Muñoz-Carpio, M. Carrera-Rodríguez, J. Navarro-Esbrí and C. - Salazar-Hernández (2016): Comparative - evaluation of R1234yf, R1234ze(E) and R450A as alternatives to R134a - in a variable speed reciprocating compressor. In: Energy - 114, S. 753–766 -

                              ")); end PowerIsentropicEfficiency; diff --git a/AixLib/Fluid/Movers/Compressors/Utilities/IsentropicEfficiency/SpecifiedEfficiencies/Buck_R134aR450aR1234yfR1234zee_VarDisVol_Reciprocating.mo b/AixLib/Fluid/Movers/Compressors/Utilities/IsentropicEfficiency/SpecifiedEfficiencies/Buck_R134aR450aR1234yfR1234zee_VarDisVol_Reciprocating.mo index fd47e7e870..cb19952895 100644 --- a/AixLib/Fluid/Movers/Compressors/Utilities/IsentropicEfficiency/SpecifiedEfficiencies/Buck_R134aR450aR1234yfR1234zee_VarDisVol_Reciprocating.mo +++ b/AixLib/Fluid/Movers/Compressors/Utilities/IsentropicEfficiency/SpecifiedEfficiencies/Buck_R134aR450aR1234yfR1234zee_VarDisVol_Reciprocating.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Movers.Compressors.Utilities.IsentropicEfficiency.SpecifiedEfficiencies; +within AixLib.Fluid.Movers.Compressors.Utilities.IsentropicEfficiency.SpecifiedEfficiencies; model Buck_R134aR450aR1234yfR1234zee_VarDisVol_Reciprocating "Reciporating Compressor - R134a, R450a, R1234yf, R1234ze(e) - Similitude - Power" extends PowerIsentropicEfficiency( @@ -19,56 +19,61 @@ model Buck_R134aR450aR1234yfR1234zee_VarDisVol_Reciprocating This model contains a calculation procedure for the isentropic efficiency presented by Mendoza-Miranda et al. (2016).

                              - - - - - - - - - - - - - - - +
                              - Reference - - Formula - - Refrigerants - - Validity ncompressor - - Validity Πpressure -
                              - MendozaMirandaEtAl2016 - - ηise = a1 * π^b1 * (nref/n)^b2 * - (n^3*Vdis/dhise^1.5)^b3 * - (1/((Tinl+ToutIse)/2-Tout))^b4 - - R134a,R450a,R1324yf,R1234ze(E) - - 0 - 50 - - 1 - 6 -
                              +
                              + \"Power approaches\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + +
                              + Reference + + Formula + + Refrigerants + + Validity ncompressor + + Validity Πpressure +
                              + MendozaMirandaEtAl2016 + + ηise = a1 * π^b1 * (nref/n)^b2 * + (n^3*Vdis/dhise^1.5)^b3 * + (1/((Tinl+ToutIse)/2-Tout))^b4 + + R134a,R450a,R1324yf,R1234ze(E) + + 0 - 50 + + 1 - 6 +
                              +

                              + References +

                              +

                              + J.M. Mendoza-Miranda, A. Mota-Babiloni, J.J. Ramírez-Minguela, + V.D. Muñoz-Carpio, M. Carrera-Rodríguez, J. Navarro-Esbrí and C. + Salazar-Hernández (2016): + Comparative evaluation of R1234yf, R1234ze(E) and R450A as + alternatives to R134a in a variable speed reciprocating + compressor. In: Energy 114, S. 753–766 +

                              +
                              -

                              - References -

                              -

                              - J.M. Mendoza-Miranda, A. Mota-Babiloni, J.J. Ramírez-Minguela, V.D. - Muñoz-Carpio, M. Carrera-Rodríguez, J. Navarro-Esbrí and C. - Salazar-Hernández (2016): Comparative - evaluation of R1234yf, R1234ze(E) and R450A as alternatives to R134a - in a variable speed reciprocating compressor. In: Energy - 114, S. 753–766 -

                              ")); end Buck_R134aR450aR1234yfR1234zee_VarDisVol_Reciprocating; diff --git a/AixLib/Fluid/Movers/Compressors/Utilities/IsentropicEfficiency/SpecifiedEfficiencies/Buck_R134aR450aR1234yfR1234zee_VarDisVol_Rotary.mo b/AixLib/Fluid/Movers/Compressors/Utilities/IsentropicEfficiency/SpecifiedEfficiencies/Buck_R134aR450aR1234yfR1234zee_VarDisVol_Rotary.mo index c1051093b7..d879c39202 100644 --- a/AixLib/Fluid/Movers/Compressors/Utilities/IsentropicEfficiency/SpecifiedEfficiencies/Buck_R134aR450aR1234yfR1234zee_VarDisVol_Rotary.mo +++ b/AixLib/Fluid/Movers/Compressors/Utilities/IsentropicEfficiency/SpecifiedEfficiencies/Buck_R134aR450aR1234yfR1234zee_VarDisVol_Rotary.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Movers.Compressors.Utilities.IsentropicEfficiency.SpecifiedEfficiencies; +within AixLib.Fluid.Movers.Compressors.Utilities.IsentropicEfficiency.SpecifiedEfficiencies; model Buck_R134aR450aR1234yfR1234zee_VarDisVol_Rotary "Rotary Compressor - R134a, R450a, R1234yf, R1234ze(e) - Similitude - Power" extends PowerIsentropicEfficiency( @@ -19,56 +19,61 @@ model Buck_R134aR450aR1234yfR1234zee_VarDisVol_Rotary This model contains a calculation procedure for the isentropic efficiency presented by Mendoza-Miranda et al. (2016).

                              - - - - - - - - - - - - - - - +
                              - Reference - - Formula - - Refrigerants - - Validity ncompressor - - Validity Πpressure -
                              - MendozaMirandaEtAl2016 - - ηise = a1 * π^b1 * (nref/n)^b2 * - (n^3*Vdis/dhise^1.5)^b3 * - (1/((Tinl+ToutIse)/2-Tout))^b4 - - R134a,R450a,R1324yf,R1234ze(E) - - 0 - 50 - - 1 - 6 -
                              +
                              + \"Power approaches\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + +
                              + Reference + + Formula + + Refrigerants + + Validity ncompressor + + Validity Πpressure +
                              + MendozaMirandaEtAl2016 + + ηise = a1 * π^b1 * (nref/n)^b2 * + (n^3*Vdis/dhise^1.5)^b3 * + (1/((Tinl+ToutIse)/2-Tout))^b4 + + R134a,R450a,R1324yf,R1234ze(E) + + 0 - 50 + + 1 - 6 +
                              +

                              + References +

                              +

                              + J.M. Mendoza-Miranda, A. Mota-Babiloni, J.J. Ramírez-Minguela, + V.D. Muñoz-Carpio, M. Carrera-Rodríguez, J. Navarro-Esbrí and C. + Salazar-Hernández (2016): + Comparative evaluation of R1234yf, R1234ze(E) and R450A as + alternatives to R134a in a variable speed reciprocating + compressor. In: Energy 114, S. 753–766 +

                              +
                              -

                              - References -

                              -

                              - J.M. Mendoza-Miranda, A. Mota-Babiloni, J.J. Ramírez-Minguela, V.D. - Muñoz-Carpio, M. Carrera-Rodríguez, J. Navarro-Esbrí and C. - Salazar-Hernández (2016): Comparative - evaluation of R1234yf, R1234ze(E) and R450A as alternatives to R134a - in a variable speed reciprocating compressor. In: Energy - 114, S. 753–766 -

                              ")); end Buck_R134aR450aR1234yfR1234zee_VarDisVol_Rotary; diff --git a/AixLib/Fluid/Movers/Compressors/Utilities/IsentropicEfficiency/SpecifiedEfficiencies/Buck_R134aR450aR1234yfR1234zee_VarDisVol_Scroll.mo b/AixLib/Fluid/Movers/Compressors/Utilities/IsentropicEfficiency/SpecifiedEfficiencies/Buck_R134aR450aR1234yfR1234zee_VarDisVol_Scroll.mo index 57c6c84d2f..43a51a5d7f 100644 --- a/AixLib/Fluid/Movers/Compressors/Utilities/IsentropicEfficiency/SpecifiedEfficiencies/Buck_R134aR450aR1234yfR1234zee_VarDisVol_Scroll.mo +++ b/AixLib/Fluid/Movers/Compressors/Utilities/IsentropicEfficiency/SpecifiedEfficiencies/Buck_R134aR450aR1234yfR1234zee_VarDisVol_Scroll.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Movers.Compressors.Utilities.IsentropicEfficiency.SpecifiedEfficiencies; +within AixLib.Fluid.Movers.Compressors.Utilities.IsentropicEfficiency.SpecifiedEfficiencies; model Buck_R134aR450aR1234yfR1234zee_VarDisVol_Scroll "Scroll Compressor - R134a, R450a, R1234yf, R1234ze(e) - Similutude - Power" extends PowerIsentropicEfficiency( @@ -19,56 +19,61 @@ model Buck_R134aR450aR1234yfR1234zee_VarDisVol_Scroll This model contains a calculation procedure for the isentropic efficiency presented by Mendoza-Miranda et al. (2016).

                              - - - - - - - - - - - - - - - +
                              - Reference - - Formula - - Refrigerants - - Validity ncompressor - - Validity Πpressure -
                              - MendozaMirandaEtAl2016 - - ηise = a1 * π^b1 * (nref/n)^b2 * - (n^3*Vdis/dhise^1.5)^b3 * - (1/((Tinl+ToutIse)/2-Tout))^b4 - - R134a,R450a,R1324yf,R1234ze(E) - - 0 - 50 - - 1 - 6 -
                              +
                              + \"Power approaches\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + +
                              + Reference + + Formula + + Refrigerants + + Validity ncompressor + + Validity Πpressure +
                              + MendozaMirandaEtAl2016 + + ηise = a1 * π^b1 * (nref/n)^b2 * + (n^3*Vdis/dhise^1.5)^b3 * + (1/((Tinl+ToutIse)/2-Tout))^b4 + + R134a,R450a,R1324yf,R1234ze(E) + + 0 - 50 + + 1 - 6 +
                              +

                              + References +

                              +

                              + J.M. Mendoza-Miranda, A. Mota-Babiloni, J.J. Ramírez-Minguela, + V.D. Muñoz-Carpio, M. Carrera-Rodríguez, J. Navarro-Esbrí and C. + Salazar-Hernández (2016): + Comparative evaluation of R1234yf, R1234ze(E) and R450A as + alternatives to R134a in a variable speed reciprocating + compressor. In: Energy 114, S. 753–766 +

                              +
                              -

                              - References -

                              -

                              - J.M. Mendoza-Miranda, A. Mota-Babiloni, J.J. Ramírez-Minguela, V.D. - Muñoz-Carpio, M. Carrera-Rodríguez, J. Navarro-Esbrí and C. - Salazar-Hernández (2016): Comparative - evaluation of R1234yf, R1234ze(E) and R450A as alternatives to R134a - in a variable speed reciprocating compressor. In: Energy - 114, S. 753–766 -

                              ")); end Buck_R134aR450aR1234yfR1234zee_VarDisVol_Scroll; diff --git a/AixLib/Fluid/Movers/Compressors/Utilities/IsentropicEfficiency/SpecifiedEfficiencies/ConstantEfficiency.mo b/AixLib/Fluid/Movers/Compressors/Utilities/IsentropicEfficiency/SpecifiedEfficiencies/ConstantEfficiency.mo index 2badad593a..ad9925f432 100644 --- a/AixLib/Fluid/Movers/Compressors/Utilities/IsentropicEfficiency/SpecifiedEfficiencies/ConstantEfficiency.mo +++ b/AixLib/Fluid/Movers/Compressors/Utilities/IsentropicEfficiency/SpecifiedEfficiencies/ConstantEfficiency.mo @@ -5,7 +5,7 @@ model ConstantEfficiency // Definition of parameters // - parameter Modelica.SIunits.Efficiency etaIseCon = 0.9 + parameter Modelica.Units.SI.Efficiency etaIseCon=0.9 "Constant overall isentropic efficiency"; equation diff --git a/AixLib/Fluid/Movers/Compressors/Utilities/IsentropicEfficiency/SpecifiedEfficiencies/Generic_VarRef_VarDisVol_RotaryScroll.mo b/AixLib/Fluid/Movers/Compressors/Utilities/IsentropicEfficiency/SpecifiedEfficiencies/Generic_VarRef_VarDisVol_RotaryScroll.mo index 979a3fae27..59ac1bdb4c 100644 --- a/AixLib/Fluid/Movers/Compressors/Utilities/IsentropicEfficiency/SpecifiedEfficiencies/Generic_VarRef_VarDisVol_RotaryScroll.mo +++ b/AixLib/Fluid/Movers/Compressors/Utilities/IsentropicEfficiency/SpecifiedEfficiencies/Generic_VarRef_VarDisVol_RotaryScroll.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Movers.Compressors.Utilities.IsentropicEfficiency.SpecifiedEfficiencies; +within AixLib.Fluid.Movers.Compressors.Utilities.IsentropicEfficiency.SpecifiedEfficiencies; model Generic_VarRef_VarDisVol_RotaryScroll "Generic overall isentropic efficiency based on literature review for various compressors" @@ -20,50 +20,55 @@ model Generic_VarRef_VarDisVol_RotaryScroll just fitted to various experimental data obtained by a literature review and, therefore, to use with caution.

                              - - - - - - - - - - - - - - - +
                              - Reference - - Formula - - Refrigerants - - Validity ncompressor - - Validity Πpressure -
                              - Engelpracht2017 - - ηise = a1 + a2*n + a3*n^3 + a5*π^2 - - Generic model - - 0 - 120 - - 1 - 10 -
                              +
                              + \"Polynomial approaches\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + +
                              + Reference + + Formula + + Refrigerants + + Validity ncompressor + + Validity Πpressure +
                              + Engelpracht2017 + + ηise = a1 + a2*n + a3*n^3 + a5*π^2 + + Generic model + + 0 - 120 + + 1 - 10 +
                              +

                              + References +

                              +

                              + Engelpracht, Mirko (2017): Development of modular and scalable + simulation models for heat pumps and chillers considering various + refrigerants. Master Thesis +

                              +
                              -

                              - References -

                              -

                              - Engelpracht, Mirko (2017): Development of modular and scalable - simulation models for heat pumps and chillers considering various - refrigerants. Master Thesis -

                              ")); end Generic_VarRef_VarDisVol_RotaryScroll; diff --git a/AixLib/Fluid/Movers/Compressors/Utilities/IsentropicEfficiency/SpecifiedEfficiencies/Poly_R134a_169_Reciprocating.mo b/AixLib/Fluid/Movers/Compressors/Utilities/IsentropicEfficiency/SpecifiedEfficiencies/Poly_R134a_169_Reciprocating.mo index b36585ab50..203a99c264 100644 --- a/AixLib/Fluid/Movers/Compressors/Utilities/IsentropicEfficiency/SpecifiedEfficiencies/Poly_R134a_169_Reciprocating.mo +++ b/AixLib/Fluid/Movers/Compressors/Utilities/IsentropicEfficiency/SpecifiedEfficiencies/Poly_R134a_169_Reciprocating.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Movers.Compressors.Utilities.IsentropicEfficiency.SpecifiedEfficiencies; +within AixLib.Fluid.Movers.Compressors.Utilities.IsentropicEfficiency.SpecifiedEfficiencies; model Poly_R134a_169_Reciprocating "Reciporating Compressor - R134a - 169 cm³ - Polynomial" extends PolynomialIsentropicEfficiency( @@ -17,53 +17,59 @@ model Poly_R134a_169_Reciprocating This model contains a calculation procedure for the isentropic efficiency presented by Darr and Crawford (1992).

                              - - - - - - - - - - - - - - - +
                              - Reference - - Formula - - Refrigerants - - Validity ncompressor - - Validity Πpressure -
                              - DarrAndCrawford1992 - - ηise = a1 + a2*n + a3/ρinlet - - R134a - - 40 - 75 - - 3 - 10 -
                              +
                              + \"Power approaches\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + +
                              + Reference + + Formula + + Refrigerants + + Validity ncompressor + + Validity Πpressure +
                              + DarrAndCrawford1992 + + ηise = a1 + a2*n + + a3/ρinlet + + R134a + + 40 - 75 + + 3 - 10 +
                              +

                              + References +

                              +

                              + J.H. Darr and R.R. Crawford (1992): + Modeling of an Automotive Air Conditioning Compressor Based on + Experimental Data: ACRC Technical Report 14. Publisher: + Air Conditioning and Refrigeration Center. College of + Engineering. University of Illinois at Urbana-Champaign. +

                              +
                              -

                              - References -

                              -

                              - J.H. Darr and R.R. Crawford (1992): - Modeling of an Automotive Air Conditioning Compressor Based on - Experimental Data: ACRC Technical Report 14. Publisher: Air - Conditioning and Refrigeration Center. College of Engineering. - University of Illinois at Urbana-Champaign. -

                              ")); end Poly_R134a_169_Reciprocating; diff --git a/AixLib/Fluid/Movers/Compressors/Utilities/IsentropicEfficiency/SpecifiedEfficiencies/Poly_R407C_Unknown_Scroll.mo b/AixLib/Fluid/Movers/Compressors/Utilities/IsentropicEfficiency/SpecifiedEfficiencies/Poly_R407C_Unknown_Scroll.mo index 90b21b9fb2..a570bfe557 100644 --- a/AixLib/Fluid/Movers/Compressors/Utilities/IsentropicEfficiency/SpecifiedEfficiencies/Poly_R407C_Unknown_Scroll.mo +++ b/AixLib/Fluid/Movers/Compressors/Utilities/IsentropicEfficiency/SpecifiedEfficiencies/Poly_R407C_Unknown_Scroll.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Movers.Compressors.Utilities.IsentropicEfficiency.SpecifiedEfficiencies; +within AixLib.Fluid.Movers.Compressors.Utilities.IsentropicEfficiency.SpecifiedEfficiencies; model Poly_R407C_Unknown_Scroll "Scroll Compressor - R407C - Unknown displacement volume - Polynomial" extends PolynomialIsentropicEfficiency( @@ -17,51 +17,57 @@ model Poly_R407C_Unknown_Scroll This model contains a calculation procedure for the isentropic efficiency presented by Karlsson (2007).

                              - - - - - - - - - - - - - - - +
                              - Reference - - Formula - - Refrigerants - - Validity ncompressor - - Validity Πpressure -
                              - Karlsson2007 - - ηise = a1 + a2*π + a3*π^2 + a4*n + a5*n^2 - - R407c - - No information - - No information -
                              +
                              + \"Power approaches\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + +
                              + Reference + + Formula + + Refrigerants + + Validity ncompressor + + Validity Πpressure +
                              + Karlsson2007 + + ηise = a1 + a2*π + a3*π^2 + a4*n + + a5*n^2 + + R407c + + No information + + No information +
                              +

                              + References +

                              +

                              + F. Karlsson (2007): + Capacity Control of Residential Heat Pump Heating Systems. + In: PhD thesis +

                              +
                              -

                              - References -

                              -

                              - F. Karlsson (2007): - Capacity Control of Residential Heat Pump Heating Systems. In: - PhD thesis -

                              ")); end Poly_R407C_Unknown_Scroll; diff --git a/AixLib/Fluid/Movers/Compressors/Utilities/IsentropicEfficiency/package.mo b/AixLib/Fluid/Movers/Compressors/Utilities/IsentropicEfficiency/package.mo index 0b473e1e5a..4a0a385b12 100644 --- a/AixLib/Fluid/Movers/Compressors/Utilities/IsentropicEfficiency/package.mo +++ b/AixLib/Fluid/Movers/Compressors/Utilities/IsentropicEfficiency/package.mo @@ -1,6 +1,6 @@ -within AixLib.Fluid.Movers.Compressors.Utilities; +within AixLib.Fluid.Movers.Compressors.Utilities; package IsentropicEfficiency "Package that contains models describing different isentropic efficiencies" - extends Modelica.Icons.Library; + extends Modelica.Icons.Package; @@ -65,115 +65,120 @@ Documentation(revisions="
                                Calculation procedures presented in the litarture have some variables in commen and these variables are presented below:

                                - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
                                - Variable - - Comment -
                                - epsRef - - Ratio of the real and the ideal displacement volume -
                                - VDis - - Displacement volume -
                                - piPre - - Pressure ratio -
                                - rotSpe - - Rotational speed -
                                - staInl - - Thermodynamic state at compressor's inlet conditions -
                                - staOut - - Thermodynamic state at compressor's out conditions -
                                - TAmb - - Ambient temperature -
                                +
                                + \"Inputs and outputs\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                + Variable + + Comment +
                                + epsRef + + Ratio of the real and the ideal displacement volume +
                                + VDis + + Displacement volume +
                                + piPre + + Pressure ratio +
                                + rotSpe + + Rotational speed +
                                + staInl + + Thermodynamic state at compressor's inlet conditions +
                                + staOut + + Thermodynamic state at compressor's out conditions +
                                + TAmb + + Ambient temperature +
                                +

                                + Moreover, two approaches can be identified in general: A + polynomial and a power approach. The characteristics of these + approaches are presented below. +

                                +

                                + Polynomial approaches +

                                +

                                + A generic polynomial approach is presented below:
                                +
                                + ηise = corFact * sum(a[i]*P[i]^b[i] for i in + 1:nT)
                                +
                                + Actually, three polynomial approaches are implemented in this + package. +

                                +

                                + Power approaches +

                                +

                                + A generic power approach is presented below:
                                +
                                + ηise = corFact * a * product(P[i]^b[i] for i in + 1:nT)
                                +
                                + Actually, one power approache is implemented in this package. +

                                +

                                + References +

                                +

                                + In the following, some general references are given for + information about calculating efficiencies of compressors: +

                                +

                                + V. A. Cara Martin and R. Radermacher (2015): + AHRI Project 8013: A Study of Methods to Represent Compressor + Performance Data over an Operating Envelope Based on a Finite Set + of Test Data. Publisher: Air-Conditioning, Heating, and + Refrigeration Institute (AHRI) +

                                +
                                -

                                - Moreover, two approaches can be identified in general: A polynomial - and a power approach. The characteristics of these approaches are - presented below. -

                                -

                                - Polynomial approaches -

                                -

                                - A generic polynomial approach is presented below:
                                -
                                - ηise = corFact * sum(a[i]*P[i]^b[i] for i in - 1:nT)
                                -
                                - Actually, three polynomial approaches are implemented in this - package. -

                                -

                                - Power approaches -

                                -

                                - A generic power approach is presented below:
                                -
                                - ηise = corFact * a * product(P[i]^b[i] for i in - 1:nT)
                                -
                                - Actually, one power approache is implemented in this package. -

                                -

                                - References -

                                -

                                - In the following, some general references are given for information - about calculating efficiencies of compressors: -

                                -

                                - V. A. Cara Martin and R. Radermacher (2015): - AHRI Project 8013: A Study of Methods to Represent Compressor - Performance Data over an Operating Envelope Based on a Finite Set of - Test Data. Publisher: Air-Conditioning, Heating, and - Refrigeration Institute (AHRI) -

                                ")); end IsentropicEfficiency; diff --git a/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/PartialVolumetricEfficiency.mo b/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/PartialVolumetricEfficiency.mo index 00bc0ec55f..c929668b51 100644 --- a/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/PartialVolumetricEfficiency.mo +++ b/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/PartialVolumetricEfficiency.mo @@ -1,12 +1,14 @@ -within AixLib.Fluid.Movers.Compressors.Utilities.VolumetricEfficiency; +within AixLib.Fluid.Movers.Compressors.Utilities.VolumetricEfficiency; partial model PartialVolumetricEfficiency "Based model used by all models describing volumetric efficiencies" extends BaseClasses.PartialEfficiency; // Definition of outputs // - output Modelica.SIunits.Efficiency lamH(min=0, max=1, nominal= 0.9) - "Overall volumetric efficiency"; + output Modelica.Units.SI.Efficiency lamH( + min=0, + max=1, + nominal=0.9) "Overall volumetric efficiency"; annotation (Documentation(revisions="
                                • October 20, 2017, by Mirko Engelpracht:
                                  @@ -21,107 +23,112 @@ partial model PartialVolumetricEfficiency inputs and outputs that are commonly used by efficiency models and these inputs and outputs are summarised below:

                                  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
                                  - Type - - Name - - Comment -
                                  - input - - epsRef - - Ratio of the real and the ideal displacement volume -
                                  - input - - VDis - - Displacement volume -
                                  - input - - piPre - - Pressure ratio -
                                  - input - - rotSpe - - Rotational speed -
                                  - input - - staInl - - Thermodynamic state at compressor's inlet conditions -
                                  - input - - staOut - - Thermodynamic state at compressor's out conditions -
                                  - input - - TAmb - - Ambient temperature -
                                  - output - - ηvol - - Overall volumetric efficiency -
                                  +
                                  + \"Inputs and outputs\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                  + Type + + Name + + Comment +
                                  + input + + epsRef + + Ratio of the real and the ideal displacement volume +
                                  + input + + VDis + + Displacement volume +
                                  + input + + piPre + + Pressure ratio +
                                  + input + + rotSpe + + Rotational speed +
                                  + input + + staInl + + Thermodynamic state at compressor's inlet conditions +
                                  + input + + staOut + + Thermodynamic state at compressor's out conditions +
                                  + input + + TAmb + + Ambient temperature +
                                  + output + + ηvol + + Overall volumetric efficiency +
                                  +
                                  ")); end PartialVolumetricEfficiency; diff --git a/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/PolynomialVolumetricEfficiency.mo b/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/PolynomialVolumetricEfficiency.mo index 263c8cadff..ba7725dfcd 100644 --- a/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/PolynomialVolumetricEfficiency.mo +++ b/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/PolynomialVolumetricEfficiency.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Movers.Compressors.Utilities.VolumetricEfficiency; +within AixLib.Fluid.Movers.Compressors.Utilities.VolumetricEfficiency; model PolynomialVolumetricEfficiency "Model describing volumetric efficiency based on polynomial approach" extends PartialVolumetricEfficiency; @@ -24,9 +24,9 @@ model PolynomialVolumetricEfficiency parameter Real c[:] = {1} "Coefficients used for correction factors if needed" annotation(Dialog(group="Modelling approach")); - parameter Modelica.SIunits.Frequency rotSpeRef = 9.334 + parameter Modelica.Units.SI.Frequency rotSpeRef=9.334 "Reference rotational speed" - annotation(Dialog(group="Reference properties")); + annotation (Dialog(group="Reference properties")); // Definition of coefficients // @@ -274,238 +274,246 @@ equation \"modelica://AixLib.Fluid.Movers.Compressors.Utilities.Types\">AixLib.Fluid.Movers.Compressors.Utilities.Types and expand the if-structure.

                                  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
                                  - Reference - - Formula - - Refrigerants - - Validity ncompressor - - Validity Πpressure -
                                  - DarrAndCrawford1992 - - ηvol = a1 + a2*n - - a3*epsRef*(ρinlIseinl-1) - - a4*n*(ρinlIseinl-1) - - R134a - - 40 - 75 - - 3 - 10 -
                                  - Karlsson2007 - - ηvol = a1*Tinl*π + a2*π + a3 + - a4*Tinl + a5*n + a6*n^2 - - R407c - - No information - - No information -
                                  - KinarbEtAl2010 - - ηvol = a1 + a2*π - - Generic model - - Generic model - - Generic model -
                                  - ZhouEtAl2010 - - ηvol = 1 + a1 - a2*π^(1/κ) - - Generic model - - Generic model - - Generic model -
                                  - Li2013 - - ηvol = ηvolRef * (a1 + - a2*(n/nref) + a3*(n/nref)^2) - - R22,R134a - - 30 - 120 - - 4 - 12 -
                                  - HongtaoLaughmannEtAl2017 - - ηvol = a1 + a2*(n/nref) + - a3*(n/nref)^2 + a4*π + a5*(n/nref)*π + - a6*(n/nref)^2*π + a7*π^2 + a8*(n/nref)*π^2 - + a9*(n/nref)^2*π^2 + a10*pout + - a11*(n/nref)*pout + - a12*(n/nref)^2*pout - a13*pinl - - a14*(n/nref)*pinl - - a15*(n/nref)^2*pinl + - a16*pinl*pout + - a17*(n/nref)*pinl*pout + - a18*(n/nref)^2*pinl*pout + - a19*(n/nref)^3*pinl*pout + - a20*(n/nref)^4*pinl*pout - - a21*pinl^2 - a22*(n/nref)*pinl^2 - - a23*(n/nref)^2*pinl^2 - - a24*(n/nref)^3*pinl^2 - - a25*(n/nref)^4*pinl^2 - - Generic model - - Generic model - - Generic model -
                                  - Koerner2017 - - ηvol = a1*π^b1 - - R410a - - 50 - 120 - - 1 - 10 -
                                  - Engelpracht2017 - - ηvol = a1 + a2*((π-c1)/c2) + - a3*((Tinl-c3)/c4)*((π-c1)/c2) + - a4*((Tinl-c3)/c4) + a5*((n-c5)/c6) + - a6*((n-c5)/c6)^2 - - Generic model - - 0 - 120 - - 1 - 10 -
                                  +
                                  + \"Polynomial approaches\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                  + Reference + + Formula + + Refrigerants + + Validity ncompressor + + Validity Πpressure +
                                  + DarrAndCrawford1992 + + ηvol = a1 + a2*n - + a3*epsRef*(ρinlIseinl-1) - + a4*n*(ρinlIseinl-1) + + R134a + + 40 - 75 + + 3 - 10 +
                                  + Karlsson2007 + + ηvol = a1*Tinl*π + a2*π + a3 + + a4*Tinl + a5*n + a6*n^2 + + R407c + + No information + + No information +
                                  + KinarbEtAl2010 + + ηvol = a1 + a2*π + + Generic model + + Generic model + + Generic model +
                                  + ZhouEtAl2010 + + ηvol = 1 + a1 - a2*π^(1/κ) + + Generic model + + Generic model + + Generic model +
                                  + Li2013 + + ηvol = ηvolRef * (a1 + + a2*(n/nref) + a3*(n/nref)^2) + + R22,R134a + + 30 - 120 + + 4 - 12 +
                                  + HongtaoLaughmannEtAl2017 + + ηvol = a1 + a2*(n/nref) + + a3*(n/nref)^2 + a4*π + a5*(n/nref)*π + + a6*(n/nref)^2*π + a7*π^2 + + a8*(n/nref)*π^2 + a9*(n/nref)^2*π^2 + + a10*pout + a11*(n/nref)*pout + + a12*(n/nref)^2*pout - + a13*pinl - a14*(n/nref)*pinl + - a15*(n/nref)^2*pinl + + a16*pinl*pout + + a17*(n/nref)*pinl*pout + + a18*(n/nref)^2*pinl*pout + + a19*(n/nref)^3*pinl*pout + + a20*(n/nref)^4*pinl*pout - + a21*pinl^2 - + a22*(n/nref)*pinl^2 - + a23*(n/nref)^2*pinl^2 - + a24*(n/nref)^3*pinl^2 - + a25*(n/nref)^4*pinl^2 + + Generic model + + Generic model + + Generic model +
                                  + Koerner2017 + + ηvol = a1*π^b1 + + R410a + + 50 - 120 + + 1 - 10 +
                                  + Engelpracht2017 + + ηvol = a1 + a2*((π-c1)/c2) + + a3*((Tinl-c3)/c4)*((π-c1)/c2) + + a4*((Tinl-c3)/c4) + a5*((n-c5)/c6) + + a6*((n-c5)/c6)^2 + + Generic model + + 0 - 120 + + 1 - 10 +
                                  +

                                  + References +

                                  +

                                  + J.H. Darr and R.R. Crawford (1992): + Modeling of an Automotive Air Conditioning Compressor Based on + Experimental Data: ACRC Technical Report 14. Publisher: + Air Conditioning and Refrigeration Center. College of + Engineering. University of Illinois at Urbana-Champaign. +

                                  +

                                  + F. Karlsson (2007): + Capacity Control of Residential Heat Pump Heating Systems. + In: PhD thesis +

                                  +

                                  + R. Zhou, T. Zhang, J. Catano, J.T. Wen, G.J. Michna, Y. Peles, + and M.K. Jensen, M. K. (2010): + The steady-state modeling and optimization of a refrigeration + system for high heat flux removal. In: Applied Thermal + Engineering 30(16), S. 2347–2356 +

                                  +

                                  + E. Kinab, D. Marchio, P. Rivière and A. Zoughaib (2010): + Reversible heat pump model for seasonal performance + optimization. In: Energy and Buildings 42(12), S. + 2269–2280 +

                                  +

                                  + W. Li (2013): Simplified + steady-state modeling for variable speed compressor. In: + Applied Thermal Engineering 50(1), S. 318–326 +

                                  +

                                  + Q. Hongtao, C.R. Laughman, D.J. Burns and S.A. Bortoff, (2017): + Dynamic + Characteristics of an R-410A Multi-split Variable Refrigerant + Flow Air-conditioning System. In: IEA Heat Pump Conference + 2017 +

                                  +

                                  + D. Körner (2017): Development of dynamic compression heat pump + models to evaluate promising refrigerants considering legal + regulations. Master Thesis +

                                  +

                                  + M. Engelpracht (2017): Development of modular and scalable + simulation models for heat pumps and chillers considering various + refrigerants. Master Thesis +

                                  +
                                  -

                                  - References -

                                  -

                                  - J.H. Darr and R.R. Crawford (1992): - Modeling of an Automotive Air Conditioning Compressor Based on - Experimental Data: ACRC Technical Report 14. Publisher: Air - Conditioning and Refrigeration Center. College of Engineering. - University of Illinois at Urbana-Champaign. -

                                  -

                                  - F. Karlsson (2007): - Capacity Control of Residential Heat Pump Heating Systems. In: - PhD thesis -

                                  -

                                  - R. Zhou, T. Zhang, J. Catano, J.T. Wen, G.J. Michna, Y. Peles, and - M.K. Jensen, M. K. (2010): The - steady-state modeling and optimization of a refrigeration system for - high heat flux removal. In: Applied Thermal Engineering - 30(16), S. 2347–2356 -

                                  -

                                  - E. Kinab, D. Marchio, P. Rivière and A. Zoughaib (2010): Reversible - heat pump model for seasonal performance optimization. In: - Energy and Buildings 42(12), S. 2269–2280 -

                                  -

                                  - W. Li (2013): Simplified - steady-state modeling for variable speed compressor. In: - Applied Thermal Engineering 50(1), S. 318–326 -

                                  -

                                  - Q. Hongtao, C.R. Laughman, D.J. Burns and S.A. Bortoff, (2017): - Dynamic - Characteristics of an R-410A Multi-split Variable Refrigerant Flow - Air-conditioning System. In: IEA Heat Pump Conference 2017 -

                                  -

                                  - D. Körner (2017): Development of dynamic compression heat pump models - to evaluate promising refrigerants considering legal regulations. - Master Thesis -

                                  -

                                  - M. Engelpracht (2017): Development of modular and scalable simulation - models for heat pumps and chillers considering various refrigerants. - Master Thesis -

                                  ")); end PolynomialVolumetricEfficiency; diff --git a/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/PowerVolumetricEfficiency.mo b/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/PowerVolumetricEfficiency.mo index 19d7fa25f5..e6ae8118a2 100644 --- a/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/PowerVolumetricEfficiency.mo +++ b/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/PowerVolumetricEfficiency.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Movers.Compressors.Utilities.VolumetricEfficiency; +within AixLib.Fluid.Movers.Compressors.Utilities.VolumetricEfficiency; model PowerVolumetricEfficiency "Model describing flow volumetric efficiency on power approach" extends PartialVolumetricEfficiency; @@ -21,12 +21,11 @@ model PowerVolumetricEfficiency // Definition of further parameters required for special approaches // - parameter Modelica.SIunits.MolarMass MRef=0.1 - "Reference molar wheight" - annotation(Dialog(group="Reference properties")); - parameter Modelica.SIunits.Frequency rotSpeRef = 9.334 + parameter Modelica.Units.SI.MolarMass MRef=0.1 "Reference molar wheight" + annotation (Dialog(group="Reference properties")); + parameter Modelica.Units.SI.Frequency rotSpeRef=9.334 "Reference rotational speed" - annotation(Dialog(group="Reference properties")); + annotation (Dialog(group="Reference properties")); // Definition of coefficients // @@ -87,55 +86,61 @@ equation \"modelica://AixLib.Fluid.Movers.Compressors.Utilities.Types\">AixLib.Fluid.Movers.Compressors.Utilities.Types and expand the if-structure.

                                  - - - - - - - - - - - - - - - +
                                  - Reference - - Formula - - Refrigerants - - Validity ncompressor - - Validity Πpressure -
                                  - MendozaMirandaEtAl2016 - - ηvol = a1 * π^b1 * - (π^1.5*n^3*Vdis)^b2 * (Mref/M)^b3 - - R134a,R450a,R1324yf,R1234ze(E) - - 0 - 50 - - 1 - 6 -
                                  +
                                  + \"Power approaches\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + +
                                  + Reference + + Formula + + Refrigerants + + Validity ncompressor + + Validity Πpressure +
                                  + MendozaMirandaEtAl2016 + + ηvol = a1 * π^b1 * + (π^1.5*n^3*Vdis)^b2 * + (Mref/M)^b3 + + R134a,R450a,R1324yf,R1234ze(E) + + 0 - 50 + + 1 - 6 +
                                  +

                                  + References +

                                  +

                                  + J.M. Mendoza-Miranda, A. Mota-Babiloni, J.J. Ramírez-Minguela, + V.D. Muñoz-Carpio, M. Carrera-Rodríguez, J. Navarro-Esbrí and C. + Salazar-Hernández (2016): + Comparative evaluation of R1234yf, R1234ze(E) and R450A as + alternatives to R134a in a variable speed reciprocating + compressor. In: Energy 114, S. 753–766 +

                                  +
                                  -

                                  - References -

                                  -

                                  - J.M. Mendoza-Miranda, A. Mota-Babiloni, J.J. Ramírez-Minguela, V.D. - Muñoz-Carpio, M. Carrera-Rodríguez, J. Navarro-Esbrí and C. - Salazar-Hernández (2016): Comparative - evaluation of R1234yf, R1234ze(E) and R450A as alternatives to R134a - in a variable speed reciprocating compressor. In: Energy - 114, S. 753–766 -

                                  ")); end PowerVolumetricEfficiency; diff --git a/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/SpecifiedEfficiencies/Buck_R134aR450aR1234yfR1234zee_VarDisVol_Reciprocating.mo b/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/SpecifiedEfficiencies/Buck_R134aR450aR1234yfR1234zee_VarDisVol_Reciprocating.mo index 844686b9dd..89aea59553 100644 --- a/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/SpecifiedEfficiencies/Buck_R134aR450aR1234yfR1234zee_VarDisVol_Reciprocating.mo +++ b/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/SpecifiedEfficiencies/Buck_R134aR450aR1234yfR1234zee_VarDisVol_Reciprocating.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Movers.Compressors.Utilities.VolumetricEfficiency.SpecifiedEfficiencies; +within AixLib.Fluid.Movers.Compressors.Utilities.VolumetricEfficiency.SpecifiedEfficiencies; model Buck_R134aR450aR1234yfR1234zee_VarDisVol_Reciprocating "Reciporating Compressor - R134a, R450a, R1234yf, R1234ze(e) - Similitude - Power" extends PowerVolumetricEfficiency( @@ -19,55 +19,61 @@ model Buck_R134aR450aR1234yfR1234zee_VarDisVol_Reciprocating This model contains a calculation procedure for the isentropic efficiency presented by Mendoza-Miranda et al. (2016).

                                  - - - - - - - - - - - - - - - +
                                  - Reference - - Formula - - Refrigerants - - Validity ncompressor - - Validity Πpressure -
                                  - MendozaMirandaEtAl2016 - - ηvol = a1 * π^b1 * - (π^1.5*n^3*Vdis)^b2 * (Mref/M)^b3 - - R134a,R450a,R1324yf,R1234ze(E) - - 0 - 50 - - 1 - 6 -
                                  +
                                  + \"Power approaches\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + +
                                  + Reference + + Formula + + Refrigerants + + Validity ncompressor + + Validity Πpressure +
                                  + MendozaMirandaEtAl2016 + + ηvol = a1 * π^b1 * + (π^1.5*n^3*Vdis)^b2 * + (Mref/M)^b3 + + R134a,R450a,R1324yf,R1234ze(E) + + 0 - 50 + + 1 - 6 +
                                  +

                                  + References +

                                  +

                                  + J.M. Mendoza-Miranda, A. Mota-Babiloni, J.J. Ramírez-Minguela, + V.D. Muñoz-Carpio, M. Carrera-Rodríguez, J. Navarro-Esbrí and C. + Salazar-Hernández (2016): + Comparative evaluation of R1234yf, R1234ze(E) and R450A as + alternatives to R134a in a variable speed reciprocating + compressor. In: Energy 114, S. 753–766 +

                                  +
                                  -

                                  - References -

                                  -

                                  - J.M. Mendoza-Miranda, A. Mota-Babiloni, J.J. Ramírez-Minguela, V.D. - Muñoz-Carpio, M. Carrera-Rodríguez, J. Navarro-Esbrí and C. - Salazar-Hernández (2016): Comparative - evaluation of R1234yf, R1234ze(E) and R450A as alternatives to R134a - in a variable speed reciprocating compressor. In: Energy - 114, S. 753–766 -

                                  ")); end Buck_R134aR450aR1234yfR1234zee_VarDisVol_Reciprocating; diff --git a/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/SpecifiedEfficiencies/Buck_R134aR450aR1234yfR1234zee_VarDisVol_Rotary.mo b/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/SpecifiedEfficiencies/Buck_R134aR450aR1234yfR1234zee_VarDisVol_Rotary.mo index f7124b91dc..bcee9aaaf0 100644 --- a/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/SpecifiedEfficiencies/Buck_R134aR450aR1234yfR1234zee_VarDisVol_Rotary.mo +++ b/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/SpecifiedEfficiencies/Buck_R134aR450aR1234yfR1234zee_VarDisVol_Rotary.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Movers.Compressors.Utilities.VolumetricEfficiency.SpecifiedEfficiencies; +within AixLib.Fluid.Movers.Compressors.Utilities.VolumetricEfficiency.SpecifiedEfficiencies; model Buck_R134aR450aR1234yfR1234zee_VarDisVol_Rotary "Rotary Compressor - R134a, R450a, R1234yf, R1234ze(e) - Similitude - Power" extends PowerVolumetricEfficiency( @@ -19,55 +19,61 @@ model Buck_R134aR450aR1234yfR1234zee_VarDisVol_Rotary This model contains a calculation procedure for the isentropic efficiency presented by Mendoza-Miranda et al. (2016).

                                  - - - - - - - - - - - - - - - +
                                  - Reference - - Formula - - Refrigerants - - Validity ncompressor - - Validity Πpressure -
                                  - MendozaMirandaEtAl2016 - - ηvol = a1 * π^b1 * - (π^1.5*n^3*Vdis)^b2 * (Mref/M)^b3 - - R134a,R450a,R1324yf,R1234ze(E) - - 0 - 50 - - 1 - 6 -
                                  +
                                  + \"Power approaches\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + +
                                  + Reference + + Formula + + Refrigerants + + Validity ncompressor + + Validity Πpressure +
                                  + MendozaMirandaEtAl2016 + + ηvol = a1 * π^b1 * + (π^1.5*n^3*Vdis)^b2 * + (Mref/M)^b3 + + R134a,R450a,R1324yf,R1234ze(E) + + 0 - 50 + + 1 - 6 +
                                  +

                                  + References +

                                  +

                                  + J.M. Mendoza-Miranda, A. Mota-Babiloni, J.J. Ramírez-Minguela, + V.D. Muñoz-Carpio, M. Carrera-Rodríguez, J. Navarro-Esbrí and C. + Salazar-Hernández (2016): + Comparative evaluation of R1234yf, R1234ze(E) and R450A as + alternatives to R134a in a variable speed reciprocating + compressor. In: Energy 114, S. 753–766 +

                                  +
                                  -

                                  - References -

                                  -

                                  - J.M. Mendoza-Miranda, A. Mota-Babiloni, J.J. Ramírez-Minguela, V.D. - Muñoz-Carpio, M. Carrera-Rodríguez, J. Navarro-Esbrí and C. - Salazar-Hernández (2016): Comparative - evaluation of R1234yf, R1234ze(E) and R450A as alternatives to R134a - in a variable speed reciprocating compressor. In: Energy - 114, S. 753–766 -

                                  ")); end Buck_R134aR450aR1234yfR1234zee_VarDisVol_Rotary; diff --git a/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/SpecifiedEfficiencies/Buck_R134aR450aR1234yfR1234zee_VarDisVol_Scroll.mo b/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/SpecifiedEfficiencies/Buck_R134aR450aR1234yfR1234zee_VarDisVol_Scroll.mo index 9abac11106..4a4a99480c 100644 --- a/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/SpecifiedEfficiencies/Buck_R134aR450aR1234yfR1234zee_VarDisVol_Scroll.mo +++ b/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/SpecifiedEfficiencies/Buck_R134aR450aR1234yfR1234zee_VarDisVol_Scroll.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Movers.Compressors.Utilities.VolumetricEfficiency.SpecifiedEfficiencies; +within AixLib.Fluid.Movers.Compressors.Utilities.VolumetricEfficiency.SpecifiedEfficiencies; model Buck_R134aR450aR1234yfR1234zee_VarDisVol_Scroll "Scroll Compressor - R134a, R450a, R1234yf, R1234ze(e) - Similitude - Power" extends PowerVolumetricEfficiency( @@ -19,55 +19,61 @@ model Buck_R134aR450aR1234yfR1234zee_VarDisVol_Scroll This model contains a calculation procedure for the isentropic efficiency presented by Mendoza-Miranda et al. (2016).

                                  - - - - - - - - - - - - - - - +
                                  - Reference - - Formula - - Refrigerants - - Validity ncompressor - - Validity Πpressure -
                                  - MendozaMirandaEtAl2016 - - ηvol = a1 * π^b1 * - (π^1.5*n^3*Vdis)^b2 * (Mref/M)^b3 - - R134a,R450a,R1324yf,R1234ze(E) - - 0 - 50 - - 1 - 6 -
                                  +
                                  + \"Power approaches\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + +
                                  + Reference + + Formula + + Refrigerants + + Validity ncompressor + + Validity Πpressure +
                                  + MendozaMirandaEtAl2016 + + ηvol = a1 * π^b1 * + (π^1.5*n^3*Vdis)^b2 * + (Mref/M)^b3 + + R134a,R450a,R1324yf,R1234ze(E) + + 0 - 50 + + 1 - 6 +
                                  +

                                  + References +

                                  +

                                  + J.M. Mendoza-Miranda, A. Mota-Babiloni, J.J. Ramírez-Minguela, + V.D. Muñoz-Carpio, M. Carrera-Rodríguez, J. Navarro-Esbrí and C. + Salazar-Hernández (2016): + Comparative evaluation of R1234yf, R1234ze(E) and R450A as + alternatives to R134a in a variable speed reciprocating + compressor. In: Energy 114, S. 753–766 +

                                  +
                                  -

                                  - References -

                                  -

                                  - J.M. Mendoza-Miranda, A. Mota-Babiloni, J.J. Ramírez-Minguela, V.D. - Muñoz-Carpio, M. Carrera-Rodríguez, J. Navarro-Esbrí and C. - Salazar-Hernández (2016): Comparative - evaluation of R1234yf, R1234ze(E) and R450A as alternatives to R134a - in a variable speed reciprocating compressor. In: Energy - 114, S. 753–766 -

                                  ")); end Buck_R134aR450aR1234yfR1234zee_VarDisVol_Scroll; diff --git a/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/SpecifiedEfficiencies/ConstantEfficiency.mo b/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/SpecifiedEfficiencies/ConstantEfficiency.mo index f543372be5..e8befe4ac9 100644 --- a/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/SpecifiedEfficiencies/ConstantEfficiency.mo +++ b/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/SpecifiedEfficiencies/ConstantEfficiency.mo @@ -5,7 +5,7 @@ model ConstantEfficiency // Definition of parameters // - parameter Modelica.SIunits.Efficiency lamHCon = 0.9 + parameter Modelica.Units.SI.Efficiency lamHCon=0.9 "Constant overall volumetric efficiency"; equation diff --git a/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/SpecifiedEfficiencies/Generic_VarRef_VarDisVol_RotaryScroll.mo b/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/SpecifiedEfficiencies/Generic_VarRef_VarDisVol_RotaryScroll.mo index 1f560a92ea..8a4dbedf4b 100644 --- a/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/SpecifiedEfficiencies/Generic_VarRef_VarDisVol_RotaryScroll.mo +++ b/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/SpecifiedEfficiencies/Generic_VarRef_VarDisVol_RotaryScroll.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Movers.Compressors.Utilities.VolumetricEfficiency.SpecifiedEfficiencies; +within AixLib.Fluid.Movers.Compressors.Utilities.VolumetricEfficiency.SpecifiedEfficiencies; model Generic_VarRef_VarDisVol_RotaryScroll "Generic overall volumetric efficiency based on literature review for various compressors" extends PolynomialVolumetricEfficiency( @@ -22,53 +22,58 @@ model Generic_VarRef_VarDisVol_RotaryScroll just fitted to various experimental data obtained by a literature review and, therefore, to use with caution.

                                  - - - - - - - - - - - - - - - +
                                  - Reference - - Formula - - Refrigerants - - Validity ncompressor - - Validity Πpressure -
                                  - Engelpracht2017 - - ηvol = a1 + a2*((π-c1)/c2) + - a3*((Tinl-c3)/c4)*((π-c1)/c2) + - a4*((Tinl-c3)/c4) + a5*((n-c5)/c6) + - a6*((n-c5)/c6)^2 - - Generic model - - 0 - 120 - - 1 - 10 -
                                  +
                                  + \"Polynomial approaches\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + +
                                  + Reference + + Formula + + Refrigerants + + Validity ncompressor + + Validity Πpressure +
                                  + Engelpracht2017 + + ηvol = a1 + a2*((π-c1)/c2) + + a3*((Tinl-c3)/c4)*((π-c1)/c2) + + a4*((Tinl-c3)/c4) + a5*((n-c5)/c6) + + a6*((n-c5)/c6)^2 + + Generic model + + 0 - 120 + + 1 - 10 +
                                  +

                                  + References +

                                  +

                                  + Engelpracht, Mirko (2017): Development of modular and scalable + simulation models for heat pumps and chillers considering various + refrigerants. Master Thesis +

                                  +
                                  -

                                  - References -

                                  -

                                  - Engelpracht, Mirko (2017): Development of modular and scalable - simulation models for heat pumps and chillers considering various - refrigerants. Master Thesis -

                                  ")); end Generic_VarRef_VarDisVol_RotaryScroll; diff --git a/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/SpecifiedEfficiencies/Poly_R134a_169_Reciprocating.mo b/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/SpecifiedEfficiencies/Poly_R134a_169_Reciprocating.mo index 8e55b5064c..f4000fd0fd 100644 --- a/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/SpecifiedEfficiencies/Poly_R134a_169_Reciprocating.mo +++ b/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/SpecifiedEfficiencies/Poly_R134a_169_Reciprocating.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Movers.Compressors.Utilities.VolumetricEfficiency.SpecifiedEfficiencies; +within AixLib.Fluid.Movers.Compressors.Utilities.VolumetricEfficiency.SpecifiedEfficiencies; model Poly_R134a_169_Reciprocating "Reciporating Compressor - R134a - 169 cm³ - Polynomial" extends PolynomialVolumetricEfficiency( @@ -17,55 +17,60 @@ model Poly_R134a_169_Reciprocating This model contains a calculation procedure for the isentropic efficiency presented by Darr and Crawford (1992).

                                  - - - - - - - - - - - - - - - +
                                  - Reference - - Formula - - Refrigerants - - Validity ncompressor - - Validity Πpressure -
                                  - DarrAndCrawford1992 - - ηvol = a1 + a2*n - - a3*epsRef*(ρinlIseinl-1) - - a4*n*(ρinlIseinl-1) - - R134a - - 40 - 75 - - 3 - 10 -
                                  +
                                  + \"Power approaches\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + +
                                  + Reference + + Formula + + Refrigerants + + Validity ncompressor + + Validity Πpressure +
                                  + DarrAndCrawford1992 + + ηvol = a1 + a2*n - + a3*epsRef*(ρinlIseinl-1) - + a4*n*(ρinlIseinl-1) + + R134a + + 40 - 75 + + 3 - 10 +
                                  +

                                  + References +

                                  +

                                  + J.H. Darr and R.R. Crawford (1992): + Modeling of an Automotive Air Conditioning Compressor Based on + Experimental Data: ACRC Technical Report 14. Publisher: + Air Conditioning and Refrigeration Center. College of + Engineering. University of Illinois at Urbana-Champaign. +

                                  +
                                  -

                                  - References -

                                  -

                                  - J.H. Darr and R.R. Crawford (1992): - Modeling of an Automotive Air Conditioning Compressor Based on - Experimental Data: ACRC Technical Report 14. Publisher: Air - Conditioning and Refrigeration Center. College of Engineering. - University of Illinois at Urbana-Champaign. -

                                  ")); end Poly_R134a_169_Reciprocating; diff --git a/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/SpecifiedEfficiencies/Poly_R134a_170_Reciprocating.mo b/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/SpecifiedEfficiencies/Poly_R134a_170_Reciprocating.mo index cf16b2a4df..92535eca03 100644 --- a/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/SpecifiedEfficiencies/Poly_R134a_170_Reciprocating.mo +++ b/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/SpecifiedEfficiencies/Poly_R134a_170_Reciprocating.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Movers.Compressors.Utilities.VolumetricEfficiency.SpecifiedEfficiencies; +within AixLib.Fluid.Movers.Compressors.Utilities.VolumetricEfficiency.SpecifiedEfficiencies; model Poly_R134a_170_Reciprocating "Reciporating Compressor - R134a - 170 cm³ - Polynomial" extends PolynomialVolumetricEfficiency( @@ -19,52 +19,57 @@ model Poly_R134a_170_Reciprocating This model contains a calculation procedure for the isentropic efficiency presented by Li (2013).

                                  - - - - - - - - - - - - - - - +
                                  - Reference - - Formula - - Refrigerants - - Validity ncompressor - - Validity Πpressure -
                                  - Li2013 - - ηvol = ηvolRef * (a1 + - a2*(n/nref) + a3*(n/nref)^2) - - R22,R134a - - 30 - 120 - - 4 - 12 -
                                  +
                                  + \"Power approaches\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + +
                                  + Reference + + Formula + + Refrigerants + + Validity ncompressor + + Validity Πpressure +
                                  + Li2013 + + ηvol = ηvolRef * (a1 + + a2*(n/nref) + a3*(n/nref)^2) + + R22,R134a + + 30 - 120 + + 4 - 12 +
                                  +

                                  + References +

                                  +

                                  + W. Li (2013): Simplified + steady-state modeling for variable speed compressor. In: + Applied Thermal Engineering 50(1), S. 318–326 +

                                  +
                                  -

                                  - References -

                                  -

                                  - W. Li (2013): Simplified - steady-state modeling for variable speed compressor. In: - Applied Thermal Engineering 50(1), S. 318–326 -

                                  ")); end Poly_R134a_170_Reciprocating; diff --git a/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/SpecifiedEfficiencies/Poly_R134a_54_Scroll.mo b/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/SpecifiedEfficiencies/Poly_R134a_54_Scroll.mo index 45d5e77c4b..22ad3e0f4c 100644 --- a/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/SpecifiedEfficiencies/Poly_R134a_54_Scroll.mo +++ b/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/SpecifiedEfficiencies/Poly_R134a_54_Scroll.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Movers.Compressors.Utilities.VolumetricEfficiency.SpecifiedEfficiencies; +within AixLib.Fluid.Movers.Compressors.Utilities.VolumetricEfficiency.SpecifiedEfficiencies; model Poly_R134a_54_Scroll "Scroll Compressor - R134a - 54.24 cm³ - Polynomial " extends PolynomialVolumetricEfficiency( @@ -19,52 +19,57 @@ model Poly_R134a_54_Scroll This model contains a calculation procedure for the isentropic efficiency presented by Li (2013).

                                  - - - - - - - - - - - - - - - +
                                  - Reference - - Formula - - Refrigerants - - Validity ncompressor - - Validity Πpressure -
                                  - Li2013 - - ηvol = ηvolRef * (a1 + - a2*(n/nref) + a3*(n/nref)^2) - - R22,R134a - - 30 - 120 - - 4 - 12 -
                                  +
                                  + \"Power approaches\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + +
                                  + Reference + + Formula + + Refrigerants + + Validity ncompressor + + Validity Πpressure +
                                  + Li2013 + + ηvol = ηvolRef * (a1 + + a2*(n/nref) + a3*(n/nref)^2) + + R22,R134a + + 30 - 120 + + 4 - 12 +
                                  +

                                  + References +

                                  +

                                  + W. Li (2013): Simplified + steady-state modeling for variable speed compressor. In: + Applied Thermal Engineering 50(1), S. 318–326 +

                                  +
                                  -

                                  - References -

                                  -

                                  - W. Li (2013): Simplified - steady-state modeling for variable speed compressor. In: - Applied Thermal Engineering 50(1), S. 318–326 -

                                  ")); end Poly_R134a_54_Scroll; diff --git a/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/SpecifiedEfficiencies/Poly_R22_20_Rotary.mo b/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/SpecifiedEfficiencies/Poly_R22_20_Rotary.mo index 63e0cc4f50..5cc4ed24ab 100644 --- a/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/SpecifiedEfficiencies/Poly_R22_20_Rotary.mo +++ b/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/SpecifiedEfficiencies/Poly_R22_20_Rotary.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Movers.Compressors.Utilities.VolumetricEfficiency.SpecifiedEfficiencies; +within AixLib.Fluid.Movers.Compressors.Utilities.VolumetricEfficiency.SpecifiedEfficiencies; model Poly_R22_20_Rotary "Rotary Compressor - R22 - 20.7 cm³ - Polynomial" extends PolynomialVolumetricEfficiency( final polyMod=Types.VolumetricPolynomialModels.Li2013, @@ -18,52 +18,57 @@ model Poly_R22_20_Rotary "Rotary Compressor - R22 - 20.7 cm³ - Polynomial" This model contains a calculation procedure for the isentropic efficiency presented by Li (2013).

                                  - - - - - - - - - - - - - - - +
                                  - Reference - - Formula - - Refrigerants - - Validity ncompressor - - Validity Πpressure -
                                  - Li2013 - - ηvol = ηvolRef * (a1 + - a2*(n/nref) + a3*(n/nref)^2) - - R22,R134a - - 30 - 120 - - 4 - 12 -
                                  +
                                  + \"Power approaches\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + +
                                  + Reference + + Formula + + Refrigerants + + Validity ncompressor + + Validity Πpressure +
                                  + Li2013 + + ηvol = ηvolRef * (a1 + + a2*(n/nref) + a3*(n/nref)^2) + + R22,R134a + + 30 - 120 + + 4 - 12 +
                                  +

                                  + References +

                                  +

                                  + W. Li (2013): Simplified + steady-state modeling for variable speed compressor. In: + Applied Thermal Engineering 50(1), S. 318–326 +

                                  +
                                  -

                                  - References -

                                  -

                                  - W. Li (2013): Simplified - steady-state modeling for variable speed compressor. In: - Applied Thermal Engineering 50(1), S. 318–326 -

                                  ")); end Poly_R22_20_Rotary; diff --git a/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/SpecifiedEfficiencies/Poly_R407C_Unknown_Scroll.mo b/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/SpecifiedEfficiencies/Poly_R407C_Unknown_Scroll.mo index 01dfd8c394..e33ed4e65d 100644 --- a/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/SpecifiedEfficiencies/Poly_R407C_Unknown_Scroll.mo +++ b/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/SpecifiedEfficiencies/Poly_R407C_Unknown_Scroll.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Movers.Compressors.Utilities.VolumetricEfficiency.SpecifiedEfficiencies; +within AixLib.Fluid.Movers.Compressors.Utilities.VolumetricEfficiency.SpecifiedEfficiencies; model Poly_R407C_Unknown_Scroll "Scroll Compressor - R407C - Unknown displacement volume - Polynomial" extends PolynomialVolumetricEfficiency( @@ -17,52 +17,57 @@ model Poly_R407C_Unknown_Scroll This model contains a calculation procedure for the isentropic efficiency presented by Karlsson (2017).

                                  - - - - - - - - - - - - - - - +
                                  - Reference - - Formula - - Refrigerants - - Validity ncompressor - - Validity Πpressure -
                                  - Karlsson2007 - - ηvol = a1*Tinl*π + a2*π + a3 + - a4*Tinl + a5*n + a6*n^2 - - R407c - - No information - - No information -
                                  +
                                  + \"Power approaches\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + +
                                  + Reference + + Formula + + Refrigerants + + Validity ncompressor + + Validity Πpressure +
                                  + Karlsson2007 + + ηvol = a1*Tinl*π + a2*π + a3 + + a4*Tinl + a5*n + a6*n^2 + + R407c + + No information + + No information +
                                  +

                                  + References +

                                  +

                                  + F. Karlsson (2007): + Capacity Control of Residential Heat Pump Heating Systems. + In: PhD thesis +

                                  +
                                  -

                                  - References -

                                  -

                                  - F. Karlsson (2007): - Capacity Control of Residential Heat Pump Heating Systems. In: - PhD thesis -

                                  ")); end Poly_R407C_Unknown_Scroll; diff --git a/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/SpecifiedEfficiencies/Poly_R410a_130_Rotary.mo b/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/SpecifiedEfficiencies/Poly_R410a_130_Rotary.mo index 006faac6c4..c98a71baa5 100644 --- a/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/SpecifiedEfficiencies/Poly_R410a_130_Rotary.mo +++ b/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/SpecifiedEfficiencies/Poly_R410a_130_Rotary.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Movers.Compressors.Utilities.VolumetricEfficiency.SpecifiedEfficiencies; +within AixLib.Fluid.Movers.Compressors.Utilities.VolumetricEfficiency.SpecifiedEfficiencies; model Poly_R410a_130_Rotary "Rotary Compressor - R410a - 130 cm³ - Polynomial" extends PolynomialVolumetricEfficiency( final polyMod=Types.VolumetricPolynomialModels.Koerner2017, @@ -16,50 +16,55 @@ model Poly_R410a_130_Rotary "Rotary Compressor - R410a - 130 cm³ - Polynomial" This model contains a calculation procedure for the isentropic efficiency presented by Körner (2017).

                                  - - - - - - - - - - - - - - - +
                                  - Reference - - Formula - - Refrigerants - - Validity ncompressor - - Validity Πpressure -
                                  - Koerner2017 - - ηvol = a1*π^b1 - - R410a - - 50 - 120 - - 1 - 10 -
                                  +
                                  + \"Power approaches\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + +
                                  + Reference + + Formula + + Refrigerants + + Validity ncompressor + + Validity Πpressure +
                                  + Koerner2017 + + ηvol = a1*π^b1 + + R410a + + 50 - 120 + + 1 - 10 +
                                  +

                                  + References +

                                  +

                                  + D. Körner (2017): Development of dynamic compression heat pump + models to evaluate promising refrigerants considering legal + regulations. Master Thesis +

                                  +
                                  -

                                  - References -

                                  -

                                  - D. Körner (2017): Development of dynamic compression heat pump models - to evaluate promising refrigerants considering legal regulations. - Master Thesis -

                                  ")); end Poly_R410a_130_Rotary; diff --git a/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/package.mo b/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/package.mo index ab81d2d1c2..f06acd6d0a 100644 --- a/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/package.mo +++ b/AixLib/Fluid/Movers/Compressors/Utilities/VolumetricEfficiency/package.mo @@ -1,6 +1,6 @@ -within AixLib.Fluid.Movers.Compressors.Utilities; +within AixLib.Fluid.Movers.Compressors.Utilities; package VolumetricEfficiency "Package that contains models describing different volumetric efficiencies" - extends Modelica.Icons.Library; + extends Modelica.Icons.Package; @@ -58,115 +58,120 @@ Documentation(revisions="
                                    Calculation procedures presented in the litarture have some variables in commen and these variables are presented below:

                                    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
                                    - Variable - - Comment -
                                    - epsRef - - Ratio of the real and the ideal displacement volume -
                                    - VDis - - Displacement volume -
                                    - piPre - - Pressure ratio -
                                    - rotSpe - - Rotational speed -
                                    - staInl - - Thermodynamic state at compressor's inlet conditions -
                                    - staOut - - Thermodynamic state at compressor's out conditions -
                                    - TAmb - - Ambient temperature -
                                    +
                                    + \"Inputs and outputs\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                    + Variable + + Comment +
                                    + epsRef + + Ratio of the real and the ideal displacement volume +
                                    + VDis + + Displacement volume +
                                    + piPre + + Pressure ratio +
                                    + rotSpe + + Rotational speed +
                                    + staInl + + Thermodynamic state at compressor's inlet conditions +
                                    + staOut + + Thermodynamic state at compressor's out conditions +
                                    + TAmb + + Ambient temperature +
                                    +

                                    + Moreover, two approaches can be identified in general: A + polynomial and a power approach. The characteristics of these + approaches are presented below. +

                                    +

                                    + Polynomial approaches +

                                    +

                                    + A generic polynomial approach is presented below:
                                    +
                                    + ηvol = corFact * sum(a[i]*P[i]^b[i] for i in + 1:nT)
                                    +
                                    + Actually, eight polynomial approaches are implemented in this + package. +

                                    +

                                    + Power approaches +

                                    +

                                    + A generic power approach is presented below:
                                    +
                                    + ηvol = corFact * a * product(P[i]^b[i] for i in + 1:nT)
                                    +
                                    + Actually, one power approache is implemented in this package. +

                                    +

                                    + References +

                                    +

                                    + In the following, some general references are given for + information about calculating efficiencies of compressors: +

                                    +

                                    + V. A. Cara Martin and R. Radermacher (2015): + AHRI Project 8013: A Study of Methods to Represent Compressor + Performance Data over an Operating Envelope Based on a Finite Set + of Test Data. Publisher: Air-Conditioning, Heating, and + Refrigeration Institute (AHRI) +

                                    +
                                    -

                                    - Moreover, two approaches can be identified in general: A polynomial - and a power approach. The characteristics of these approaches are - presented below. -

                                    -

                                    - Polynomial approaches -

                                    -

                                    - A generic polynomial approach is presented below:
                                    -
                                    - ηvol = corFact * sum(a[i]*P[i]^b[i] for i in - 1:nT)
                                    -
                                    - Actually, eight polynomial approaches are implemented in this - package. -

                                    -

                                    - Power approaches -

                                    -

                                    - A generic power approach is presented below:
                                    -
                                    - ηvol = corFact * a * product(P[i]^b[i] for i in - 1:nT)
                                    -
                                    - Actually, one power approache is implemented in this package. -

                                    -

                                    - References -

                                    -

                                    - In the following, some general references are given for information - about calculating efficiencies of compressors: -

                                    -

                                    - V. A. Cara Martin and R. Radermacher (2015): - AHRI Project 8013: A Study of Methods to Represent Compressor - Performance Data over an Operating Envelope Based on a Finite Set of - Test Data. Publisher: Air-Conditioning, Heating, and - Refrigeration Institute (AHRI) -

                                    ")); end VolumetricEfficiency; diff --git a/AixLib/Fluid/Movers/Compressors/Validation/EfficiencyModels.mo b/AixLib/Fluid/Movers/Compressors/Validation/EfficiencyModels.mo index faadf1eaa7..857960d98a 100644 --- a/AixLib/Fluid/Movers/Compressors/Validation/EfficiencyModels.mo +++ b/AixLib/Fluid/Movers/Compressors/Validation/EfficiencyModels.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Movers.Compressors.Validation; +within AixLib.Fluid.Movers.Compressors.Validation; model EfficiencyModels "Validation model to check efficiencies calculated with respect to different prescribed conditions" @@ -10,16 +10,15 @@ model EfficiencyModels Modelica.Media.R134a.R134a_ph "Actual medium of the compressor"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal = 0.1 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=0.1 "Nominal mass flow rate"; // Definition of variables // - Modelica.SIunits.AbsolutePressure pInl= - Medium.pressure(Medium.setBubbleState(Medium.setSat_T(preInp.y[2]-1))) - "Actual pressure at inlet conditions"; - Modelica.SIunits.AbsolutePressure pOut= - Medium.pressure(Medium.setDewState(Medium.setSat_T(preInp.y[3]-1))) + Modelica.Units.SI.AbsolutePressure pInl=Medium.pressure(Medium.setBubbleState( + Medium.setSat_T(preInp.y[2] - 1))) "Actual pressure at inlet conditions"; + Modelica.Units.SI.AbsolutePressure pOut=Medium.pressure(Medium.setDewState( + Medium.setSat_T(preInp.y[3] - 1))) "Actual set point of the compressor's outlet pressure"; // Definition of models diff --git a/AixLib/Fluid/Movers/Compressors/Validation/ModularInactiveCompressors.mo b/AixLib/Fluid/Movers/Compressors/Validation/ModularInactiveCompressors.mo index a0b9f1a31c..5bffaf7298 100644 --- a/AixLib/Fluid/Movers/Compressors/Validation/ModularInactiveCompressors.mo +++ b/AixLib/Fluid/Movers/Compressors/Validation/ModularInactiveCompressors.mo @@ -11,15 +11,15 @@ model ModularInactiveCompressors parameter Integer nCom = 3 "Number of compressors"; - parameter Modelica.SIunits.AbsolutePressure pInl= - Medium.pressure(Medium.setBubbleState(Medium.setSat_T(TInl+1))) + parameter Modelica.Units.SI.AbsolutePressure pInl=Medium.pressure( + Medium.setBubbleState(Medium.setSat_T(TInl + 1))) "Current pressure at inlet conditions"; - parameter Modelica.SIunits.Temperature TInl = 283.15 + parameter Modelica.Units.SI.Temperature TInl=283.15 "Current temperature at inlet conditions"; - parameter Modelica.SIunits.AbsolutePressure pOut= - Medium.pressure(Medium.setDewState(Medium.setSat_T(TOut-5))) + parameter Modelica.Units.SI.AbsolutePressure pOut=Medium.pressure( + Medium.setDewState(Medium.setSat_T(TOut - 5))) "Current set point of the compressor's outlet pressure"; - parameter Modelica.SIunits.Temperature TOut = 333.15 + parameter Modelica.Units.SI.Temperature TOut=333.15 "Current temperature at outlet conditions"; // Definition of models @@ -59,8 +59,7 @@ model ModularInactiveCompressors Modelica.Blocks.Sources.Sine valOpe( offset=0.5, amplitude=0.3, - freqHz=1) - "Prescribed valve's opening" + f=1) "Prescribed valve's opening" annotation (Placement(transformation(extent={{-88,-80},{-68,-60}}))); Obsolete.Year2021.Fluid.Actuators.Valves.SimpleValve simVal( redeclare package Medium = Medium, @@ -86,7 +85,7 @@ model ModularInactiveCompressors origin={0,0}))); Modelica.Blocks.Sources.Sine rotSpe[nCom]( - each freqHz=1, + each f=1, amplitude={50,20,0}, offset={50,20,0}) "Input signal to prediscribe compressors' rotational speeds" diff --git a/AixLib/Fluid/Movers/Compressors/Validation/SimpleHeatTransfer.mo b/AixLib/Fluid/Movers/Compressors/Validation/SimpleHeatTransfer.mo index 74e2a65c51..77633652d1 100644 --- a/AixLib/Fluid/Movers/Compressors/Validation/SimpleHeatTransfer.mo +++ b/AixLib/Fluid/Movers/Compressors/Validation/SimpleHeatTransfer.mo @@ -9,15 +9,15 @@ model SimpleHeatTransfer Modelica.Media.R134a.R134a_ph "Medium of the compressor"; - parameter Modelica.SIunits.AbsolutePressure pInl= - Medium.pressure(Medium.setBubbleState(Medium.setSat_T(TInl+2))) + parameter Modelica.Units.SI.AbsolutePressure pInl=Medium.pressure( + Medium.setBubbleState(Medium.setSat_T(TInl + 2))) "Current pressure at inlet conditions"; - parameter Modelica.SIunits.Temperature TInl = 283.15 + parameter Modelica.Units.SI.Temperature TInl=283.15 "Current temperature at inlet conditions"; - parameter Modelica.SIunits.AbsolutePressure pOut= - Medium.pressure(Medium.setDewState(Medium.setSat_T(TOut-5))) + parameter Modelica.Units.SI.AbsolutePressure pOut=Medium.pressure( + Medium.setDewState(Medium.setSat_T(TOut - 5))) "Current set point of the compressor's outlet pressure"; - parameter Modelica.SIunits.Temperature TOut = 333.15 + parameter Modelica.Units.SI.Temperature TOut=333.15 "Current temperature at outlet conditions"; // Definition of submodels and connectors diff --git a/AixLib/Fluid/Movers/Compressors/Validation/StaticHeatPumpBoundaries/BaseModelStaticBoundaries.mo b/AixLib/Fluid/Movers/Compressors/Validation/StaticHeatPumpBoundaries/BaseModelStaticBoundaries.mo index a31cfa6b8b..26fa566f4a 100644 --- a/AixLib/Fluid/Movers/Compressors/Validation/StaticHeatPumpBoundaries/BaseModelStaticBoundaries.mo +++ b/AixLib/Fluid/Movers/Compressors/Validation/StaticHeatPumpBoundaries/BaseModelStaticBoundaries.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Movers.Compressors.Validation.StaticHeatPumpBoundaries; +within AixLib.Fluid.Movers.Compressors.Validation.StaticHeatPumpBoundaries; model BaseModelStaticBoundaries "Base model to test compressors using static boundaries" diff --git a/AixLib/Fluid/Movers/Compressors/Validation/StaticHeatPumpBoundaries/BaseModelStaticHeatPump.mo b/AixLib/Fluid/Movers/Compressors/Validation/StaticHeatPumpBoundaries/BaseModelStaticHeatPump.mo index 09eaeb8aca..8f7268bf79 100644 --- a/AixLib/Fluid/Movers/Compressors/Validation/StaticHeatPumpBoundaries/BaseModelStaticHeatPump.mo +++ b/AixLib/Fluid/Movers/Compressors/Validation/StaticHeatPumpBoundaries/BaseModelStaticHeatPump.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Movers.Compressors.Validation.StaticHeatPumpBoundaries; +within AixLib.Fluid.Movers.Compressors.Validation.StaticHeatPumpBoundaries; model BaseModelStaticHeatPump "Base model to test compressors using static heat pump boundaries" @@ -21,29 +21,28 @@ model BaseModelStaticHeatPump // Definition of parameters describing boundary conditions // - parameter Modelica.SIunits.TemperatureDifference dTPinEva = 5 + parameter Modelica.Units.SI.TemperatureDifference dTPinEva=5 "Pinch temperature at evaporator's outlet" annotation (Dialog(tab="General", group="Evaporator")); - parameter Modelica.SIunits.TemperatureDifference dTSupHea = 1 + parameter Modelica.Units.SI.TemperatureDifference dTSupHea=1 "Superheating of working fluid" annotation (Dialog(tab="General", group="Evaporator")); - parameter Modelica.SIunits.TemperatureDifference dTPinCon = 2.5 + parameter Modelica.Units.SI.TemperatureDifference dTPinCon=2.5 "Pinch temperature at evaporator's outlet" annotation (Dialog(tab="General", group="Condenser")); - parameter Modelica.SIunits.TemperatureDifference dTSubCool = 8 + parameter Modelica.Units.SI.TemperatureDifference dTSubCool=8 "Supercooling of working fluid" annotation (Dialog(tab="General", group="Condenser")); - parameter Modelica.SIunits.Density dSec=1000 + parameter Modelica.Units.SI.Density dSec=1000 "Constant density of secondary fluid" annotation (Dialog(tab="General", group="Condenser")); - parameter Modelica.SIunits.SpecificHeatCapacity cpSec=4.1813e3 + parameter Modelica.Units.SI.SpecificHeatCapacity cpSec=4.1813e3 "Constant specific heat capacity of secondary fluid" annotation (Dialog(tab="General", group="Condenser")); - parameter Modelica.SIunits.VolumeFlowRate - V_flowSec=(0.776 + 0.781 + 0.44)/3/3600 - "Constant volume flow of secondary fluid" + parameter Modelica.Units.SI.VolumeFlowRate V_flowSec=(0.776 + 0.781 + 0.44)/3 + /3600 "Constant volume flow of secondary fluid" annotation (Dialog(tab="General", group="Condenser")); // Definition of variables describing boundary conditions @@ -174,12 +173,12 @@ protected // Definition of parameters describing evaporator // - parameter Modelica.SIunits.TemperatureDifference dTPin = 5 + parameter Modelica.Units.SI.TemperatureDifference dTPin=5 "Pinch temperature at evaporator's outlet" - annotation(Dialog(tab="General",group="Evaporator")); - parameter Modelica.SIunits.TemperatureDifference dTSupHea = 1 + annotation (Dialog(tab="General", group="Evaporator")); + parameter Modelica.Units.SI.TemperatureDifference dTSupHea=1 "Superheating of working fluid" - annotation(Dialog(tab="General",group="Evaporator")); + annotation (Dialog(tab="General", group="Evaporator")); // Definition of parameters describing assumptions // @@ -233,15 +232,12 @@ protected "Thermodynamic state of the working fluid at evaporator's outlet" annotation (Placement(transformation(extent={{-20,-8},{0,12}}))); - Modelica.SIunits.AbsolutePressure pSat + Modelica.Units.SI.AbsolutePressure pSat "Absolute pressure at evaporator's outlet"; - Modelica.SIunits.Temperature TSat - "Saturation temperature"; - Modelica.SIunits.Temperature TOut - "Temperature at evaporator's outlet"; + Modelica.Units.SI.Temperature TSat "Saturation temperature"; + Modelica.Units.SI.Temperature TOut "Temperature at evaporator's outlet"; - Modelica.SIunits.Temperature TAmb - "Temperature of ambient"; + Modelica.Units.SI.Temperature TAmb "Temperature of ambient"; equation // Connection of ports @@ -347,22 +343,22 @@ protected // Definition of parameters describing condenser // - parameter Modelica.SIunits.TemperatureDifference dTPin = 2.5 + parameter Modelica.Units.SI.TemperatureDifference dTPin=2.5 "Supercooling of working fluid" - annotation(Dialog(tab="General",group="Condenser")); - parameter Modelica.SIunits.TemperatureDifference dTSubCool = 8 + annotation (Dialog(tab="General", group="Condenser")); + parameter Modelica.Units.SI.TemperatureDifference dTSubCool=8 "Supercooling of working fluid" - annotation(Dialog(tab="General",group="Condenser")); + annotation (Dialog(tab="General", group="Condenser")); - parameter Modelica.SIunits.Density dSec = 1000 + parameter Modelica.Units.SI.Density dSec=1000 "Constant density of secondary fluid" - annotation(Dialog(tab="General",group="Condenser")); - parameter Modelica.SIunits.SpecificHeatCapacity cpSec = 4.1813e3 + annotation (Dialog(tab="General", group="Condenser")); + parameter Modelica.Units.SI.SpecificHeatCapacity cpSec=4.1813e3 "Constant specific heat capacity of secondary fluid" - annotation(Dialog(tab="General",group="Condenser")); - parameter Modelica.SIunits.VolumeFlowRate V_flowSec = (0.776+0.781+0.44)/3/3600 - "Constant volume flow of secondary fluid" - annotation(Dialog(tab="General",group="Condenser")); + annotation (Dialog(tab="General", group="Condenser")); + parameter Modelica.Units.SI.VolumeFlowRate V_flowSec=(0.776 + 0.781 + 0.44) + /3/3600 "Constant volume flow of secondary fluid" + annotation (Dialog(tab="General", group="Condenser")); // Definition of parameters describing assumptions // @@ -389,30 +385,24 @@ protected // Definition of variables describing condenser // - Modelica.SIunits.AbsolutePressure pSat + Modelica.Units.SI.AbsolutePressure pSat "Absolute pressure at condenser's outlet"; - Modelica.SIunits.Temperature TSat - "Saturation temperature"; + Modelica.Units.SI.Temperature TSat "Saturation temperature"; - Modelica.SIunits.Temperature TInl - "Temperature at condenser's inlet"; - Modelica.SIunits.Temperature TOut - "Temperature at condenser's outlet"; - Modelica.SIunits.SpecificEnthalpy hInl + Modelica.Units.SI.Temperature TInl "Temperature at condenser's inlet"; + Modelica.Units.SI.Temperature TOut "Temperature at condenser's outlet"; + Modelica.Units.SI.SpecificEnthalpy hInl "Specific enthalpy at condenser's inlet"; - Modelica.SIunits.SpecificEnthalpy hOut + Modelica.Units.SI.SpecificEnthalpy hOut "Specific enthalpy at condenser's outlet"; - Modelica.SIunits.MassFlowRate m_flow - "Mass flow rate"; - Modelica.SIunits.HeatFlowRate Q_flow - "Heat capacity"; + Modelica.Units.SI.MassFlowRate m_flow "Mass flow rate"; + Modelica.Units.SI.HeatFlowRate Q_flow "Heat capacity"; - Modelica.SIunits.MassFlowRate m_flowSec + Modelica.Units.SI.MassFlowRate m_flowSec "Mass flow rate of secondary fluid"; - Modelica.SIunits.Temperature TFlo - "Temperature flow at heat capacity"; - Modelica.SIunits.Temperature TRetFlo + Modelica.Units.SI.Temperature TFlo "Temperature flow at heat capacity"; + Modelica.Units.SI.Temperature TRetFlo "Temperature return flow at heat capacity"; equation diff --git a/AixLib/Fluid/Movers/Compressors/Validation/StaticHeatPumpBoundaries/BaseModelStaticHeatPumpController.mo b/AixLib/Fluid/Movers/Compressors/Validation/StaticHeatPumpBoundaries/BaseModelStaticHeatPumpController.mo index adeb4aaf4f..42d72b6447 100644 --- a/AixLib/Fluid/Movers/Compressors/Validation/StaticHeatPumpBoundaries/BaseModelStaticHeatPumpController.mo +++ b/AixLib/Fluid/Movers/Compressors/Validation/StaticHeatPumpBoundaries/BaseModelStaticHeatPumpController.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Movers.Compressors.Validation.StaticHeatPumpBoundaries; +within AixLib.Fluid.Movers.Compressors.Validation.StaticHeatPumpBoundaries; model BaseModelStaticHeatPumpController "Base model to test compressors using static heat pump boundaries" @@ -21,29 +21,28 @@ model BaseModelStaticHeatPumpController // Definition of parameters describing boundary conditions // - parameter Modelica.SIunits.TemperatureDifference dTPinEva = 5 + parameter Modelica.Units.SI.TemperatureDifference dTPinEva=5 "Pinch temperature at evaporator's outlet" annotation (Dialog(tab="General", group="Evaporator")); - parameter Modelica.SIunits.TemperatureDifference dTSupHea = 1 + parameter Modelica.Units.SI.TemperatureDifference dTSupHea=1 "Superheating of working fluid" annotation (Dialog(tab="General", group="Evaporator")); - parameter Modelica.SIunits.TemperatureDifference dTPinCon = 2.5 + parameter Modelica.Units.SI.TemperatureDifference dTPinCon=2.5 "Pinch temperature at evaporator's outlet" annotation (Dialog(tab="General", group="Condenser")); - parameter Modelica.SIunits.TemperatureDifference dTSubCool = 8 + parameter Modelica.Units.SI.TemperatureDifference dTSubCool=8 "Supercooling of working fluid" annotation (Dialog(tab="General", group="Condenser")); - parameter Modelica.SIunits.Density dSec=1000 + parameter Modelica.Units.SI.Density dSec=1000 "Constant density of secondary fluid" annotation (Dialog(tab="General", group="Condenser")); - parameter Modelica.SIunits.SpecificHeatCapacity cpSec=4.1813e3 + parameter Modelica.Units.SI.SpecificHeatCapacity cpSec=4.1813e3 "Constant specific heat capacity of secondary fluid" annotation (Dialog(tab="General", group="Condenser")); - parameter Modelica.SIunits.VolumeFlowRate - V_flowSec=(0.776 + 0.781 + 0.44)/3/3600 - "Constant volume flow of secondary fluid" + parameter Modelica.Units.SI.VolumeFlowRate V_flowSec=(0.776 + 0.781 + 0.44)/3 + /3600 "Constant volume flow of secondary fluid" annotation (Dialog(tab="General", group="Condenser")); // Definition of variables describing boundary conditions @@ -179,12 +178,12 @@ protected // Definition of parameters describing evaporator // - parameter Modelica.SIunits.TemperatureDifference dTPin = 5 + parameter Modelica.Units.SI.TemperatureDifference dTPin=5 "Pinch temperature at evaporator's outlet" - annotation(Dialog(tab="General",group="Evaporator")); - parameter Modelica.SIunits.TemperatureDifference dTSupHea = 1 + annotation (Dialog(tab="General", group="Evaporator")); + parameter Modelica.Units.SI.TemperatureDifference dTSupHea=1 "Superheating of working fluid" - annotation(Dialog(tab="General",group="Evaporator")); + annotation (Dialog(tab="General", group="Evaporator")); // Definition of parameters describing assumptions // @@ -238,15 +237,12 @@ protected "Thermodynamic state of the working fluid at evaporator's outlet" annotation (Placement(transformation(extent={{-20,-8},{0,12}}))); - Modelica.SIunits.AbsolutePressure pSat + Modelica.Units.SI.AbsolutePressure pSat "Absolute pressure at evaporator's outlet"; - Modelica.SIunits.Temperature TSat - "Saturation temperature"; - Modelica.SIunits.Temperature TOut - "Temperature at evaporator's outlet"; + Modelica.Units.SI.Temperature TSat "Saturation temperature"; + Modelica.Units.SI.Temperature TOut "Temperature at evaporator's outlet"; - Modelica.SIunits.Temperature TAmb - "Temperature of ambient"; + Modelica.Units.SI.Temperature TAmb "Temperature of ambient"; equation // Connection of ports @@ -352,22 +348,22 @@ protected // Definition of parameters describing condenser // - parameter Modelica.SIunits.TemperatureDifference dTPin = 2.5 + parameter Modelica.Units.SI.TemperatureDifference dTPin=2.5 "Supercooling of working fluid" - annotation(Dialog(tab="General",group="Condenser")); - parameter Modelica.SIunits.TemperatureDifference dTSubCool = 8 + annotation (Dialog(tab="General", group="Condenser")); + parameter Modelica.Units.SI.TemperatureDifference dTSubCool=8 "Supercooling of working fluid" - annotation(Dialog(tab="General",group="Condenser")); + annotation (Dialog(tab="General", group="Condenser")); - parameter Modelica.SIunits.Density dSec = 1000 + parameter Modelica.Units.SI.Density dSec=1000 "Constant density of secondary fluid" - annotation(Dialog(tab="General",group="Condenser")); - parameter Modelica.SIunits.SpecificHeatCapacity cpSec = 4.1813e3 + annotation (Dialog(tab="General", group="Condenser")); + parameter Modelica.Units.SI.SpecificHeatCapacity cpSec=4.1813e3 "Constant specific heat capacity of secondary fluid" - annotation(Dialog(tab="General",group="Condenser")); - parameter Modelica.SIunits.VolumeFlowRate V_flowSec = (0.776+0.781+0.44)/3/3600 - "Constant volume flow of secondary fluid" - annotation(Dialog(tab="General",group="Condenser")); + annotation (Dialog(tab="General", group="Condenser")); + parameter Modelica.Units.SI.VolumeFlowRate V_flowSec=(0.776 + 0.781 + 0.44) + /3/3600 "Constant volume flow of secondary fluid" + annotation (Dialog(tab="General", group="Condenser")); // Definition of parameters describing assumptions // @@ -401,30 +397,24 @@ protected // Definition of variables describing condenser // - Modelica.SIunits.AbsolutePressure pSat + Modelica.Units.SI.AbsolutePressure pSat "Absolute pressure at condenser's outlet"; - Modelica.SIunits.Temperature TSat - "Saturation temperature"; + Modelica.Units.SI.Temperature TSat "Saturation temperature"; - Modelica.SIunits.Temperature TInl - "Temperature at condenser's inlet"; - Modelica.SIunits.Temperature TOut - "Temperature at condenser's outlet"; - Modelica.SIunits.SpecificEnthalpy hInl + Modelica.Units.SI.Temperature TInl "Temperature at condenser's inlet"; + Modelica.Units.SI.Temperature TOut "Temperature at condenser's outlet"; + Modelica.Units.SI.SpecificEnthalpy hInl "Specific enthalpy at condenser's inlet"; - Modelica.SIunits.SpecificEnthalpy hOut + Modelica.Units.SI.SpecificEnthalpy hOut "Specific enthalpy at condenser's outlet"; - Modelica.SIunits.MassFlowRate m_flow - "Mass flow rate"; - Modelica.SIunits.HeatFlowRate Q_flow - "Heat capacity"; + Modelica.Units.SI.MassFlowRate m_flow "Mass flow rate"; + Modelica.Units.SI.HeatFlowRate Q_flow "Heat capacity"; - Modelica.SIunits.MassFlowRate m_flowSec + Modelica.Units.SI.MassFlowRate m_flowSec "Mass flow rate of secondary fluid"; - Modelica.SIunits.Temperature TFlo - "Temperature flow at heat capacity"; - Modelica.SIunits.Temperature TRetFlo + Modelica.Units.SI.Temperature TFlo "Temperature flow at heat capacity"; + Modelica.Units.SI.Temperature TRetFlo "Temperature return flow at heat capacity"; equation diff --git a/AixLib/Fluid/Movers/Compressors/Validation/StaticHeatPumpBoundaries/SpecifiedModels/RefrigerantR134aScrollCompressor.mo b/AixLib/Fluid/Movers/Compressors/Validation/StaticHeatPumpBoundaries/SpecifiedModels/RefrigerantR134aScrollCompressor.mo index e76f4c94db..1f521a8917 100644 --- a/AixLib/Fluid/Movers/Compressors/Validation/StaticHeatPumpBoundaries/SpecifiedModels/RefrigerantR134aScrollCompressor.mo +++ b/AixLib/Fluid/Movers/Compressors/Validation/StaticHeatPumpBoundaries/SpecifiedModels/RefrigerantR134aScrollCompressor.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Movers.Compressors.Validation.StaticHeatPumpBoundaries.SpecifiedModels; +within AixLib.Fluid.Movers.Compressors.Validation.StaticHeatPumpBoundaries.SpecifiedModels; model RefrigerantR134aScrollCompressor "Static boundaries of a scroll-compressor using R134a" extends BaseModelStaticBoundaries( diff --git a/AixLib/Fluid/Movers/Data/Generic.mo b/AixLib/Fluid/Movers/Data/Generic.mo index d074ed08db..eaa371d054 100644 --- a/AixLib/Fluid/Movers/Data/Generic.mo +++ b/AixLib/Fluid/Movers/Data/Generic.mo @@ -56,15 +56,17 @@ record Generic "Generic data record for movers" "Vector of normalized speed set points, used if inputType = AixLib.Fluid.Types.InputType.Stages" annotation (Dialog(group="Normalized speeds (used in model, default values assigned from speeds in rpm)")); - parameter Modelica.SIunits.Conversions.NonSIunits.AngularVelocity_rpm speed_rpm_nominal=1500 + parameter Modelica.Units.NonSI.AngularVelocity_rpm speed_rpm_nominal=1500 "Nominal rotational speed for flow characteristic" annotation (Dialog(group="Speeds in RPM")); - parameter Modelica.SIunits.Conversions.NonSIunits.AngularVelocity_rpm constantSpeed_rpm=speed_rpm_nominal + parameter Modelica.Units.NonSI.AngularVelocity_rpm constantSpeed_rpm= + speed_rpm_nominal "Speed set point, used if inputType = AixLib.Fluid.Types.InputType.Constant" annotation (Dialog(group="Speeds in RPM")); - parameter Modelica.SIunits.Conversions.NonSIunits.AngularVelocity_rpm[:] speeds_rpm = {speed_rpm_nominal} + parameter Modelica.Units.NonSI.AngularVelocity_rpm[:] speeds_rpm={ + speed_rpm_nominal} "Vector of speed set points, used if inputType = AixLib.Fluid.Types.InputType.Stages" annotation (Dialog(group="Speeds in RPM")); @@ -82,88 +84,89 @@ record Generic "Generic data record for movers" defaultComponentPrefixes = "parameter", defaultComponentName = "per", Documentation(revisions=" -
                                      -
                                    • -February 19, 2016, by Filip Jorissen:
                                      -Refactored model such that SpeedControlled_Nrpm, -SpeedControlled_y and FlowControlled -are integrated into one record. -This is for -#417. -
                                    • -
                                    • -February 17, 2016, by Michael Wetter:
                                      -Changed parameter N_nominal to -speed_rpm_nominal as it is the same quantity as speeds_rmp. -This is for -#396. -
                                    • -
                                    • -January 19, 2016, by Filip Jorissen:
                                      -Added parameter speeds_rpm. -This is for -#396. -
                                    • -
                                    • -February 13, 2015, by Michael Wetter:
                                      -Updated documentation. -
                                    • -
                                    • -January 6, 2015, by Michael Wetter:
                                      -Revised record for OpenModelica. -
                                    • -
                                    • -November 22, 2014 by Michael Wetter:
                                      -First implementation. -
                                    • -
                                    -", info=" -

                                    -Record containing parameters for pumps or fans. -

                                    -

                                    Typical use

                                    -

                                    -This record may be used to assign for example fan performance data using -declaration such as -

                                    -
                                    -  AixLib.Fluid.Movers.SpeedControlled_y fan(
                                    -    redeclare package Medium = Medium,
                                    -      per(pressure(V_flow={0,m_flow_nominal,2*m_flow_nominal}/1.2,
                                    -                   dp={2*dp_nominal,dp_nominal,0}))) \"Fan\";
                                    -
                                    -

                                    -This data record can be used with - -AixLib.Fluid.Movers.SpeedControlled_Nrpm, - -AixLib.Fluid.Movers.SpeedControlled_y, - -AixLib.Fluid.Movers.FlowControlled_dp, - -AixLib.Fluid.Movers.FlowControlled_m_flow. -

                                    -

                                    -An example that uses manufacturer data can be found in - -AixLib.Fluid.Movers.Validation.Pump_Nrpm_stratos. -

                                    -

                                    Parameters in RPM

                                    -

                                    -The parameters speed_rpm_nominal, -constantSpeed_rpm and -speeds_rpm are used to assign the non-dimensional speeds -

                                    -
                                    -  parameter Real constantSpeed(final min=0, final unit=\"1\") = constantSpeed_rpm/speed_rpm_nominal;
                                    -  parameter Real[:] speeds(each final min = 0, each final unit=\"1\") = speeds_rpm/speed_rpm_nominal;
                                    -
                                    -

                                    -In addition, speed_rpm_nominal is used in - -AixLib.Fluid.Movers.SpeedControlled_Nrpm -to normalize the control input signal. -Otherwise, these speed parameters in RPM are not used in the models. -

                                    -")); +
                                      +
                                    • + February 19, 2016, by Filip Jorissen:
                                      + Refactored model such that SpeedControlled_Nrpm, + SpeedControlled_y and FlowControlled + are integrated into one record. + This is for + #417. +
                                    • +
                                    • + February 17, 2016, by Michael Wetter:
                                      + Changed parameter N_nominal to + speed_rpm_nominal as it is the same quantity as speeds_rmp. + This is for + #396. +
                                    • +
                                    • + January 19, 2016, by Filip Jorissen:
                                      + Added parameter speeds_rpm. + This is for + #396. +
                                    • +
                                    • + February 13, 2015, by Michael Wetter:
                                      + Updated documentation. +
                                    • +
                                    • + January 6, 2015, by Michael Wetter:
                                      + Revised record for OpenModelica. +
                                    • +
                                    • + November 22, 2014 by Michael Wetter:
                                      + First implementation. +
                                    • +
                                    + ",info=" +

                                    + Record containing parameters for pumps or fans. +

                                    +

                                    Typical use

                                    +

                                    + This record may be used to assign for example fan performance data using + declaration such as +

                                    +
                                    +   AixLib.Fluid.Movers.SpeedControlled_y fan(
                                    +     redeclare package Medium = Medium,
                                    +       per(pressure(V_flow={0,m_flow_nominal,2*m_flow_nominal}/1.2,
                                    +                    dp={2*dp_nominal,dp_nominal,0}))) \"Fan\";
                                    + 
                                    +

                                    + This data record can be used with + + AixLib.Fluid.Movers.SpeedControlled_Nrpm, + + AixLib.Fluid.Movers.SpeedControlled_y, + + AixLib.Fluid.Movers.FlowControlled_dp, + + AixLib.Fluid.Movers.FlowControlled_m_flow. +

                                    +

                                    + An example that uses manufacturer data can be found in + + AixLib.Fluid.Movers.Validation.Pump_Nrpm_stratos. +

                                    +

                                    Parameters in RPM

                                    +

                                    + The parameters speed_rpm_nominal, + constantSpeed_rpm and + speeds_rpm are used to assign the non-dimensional speeds +

                                    +
                                    +   parameter Real constantSpeed(final min=0, final unit=\"1\") = constantSpeed_rpm/speed_rpm_nominal;
                                    +   parameter Real[:] speeds(each final min = 0, each final unit=\"1\") = speeds_rpm/speed_rpm_nominal;
                                    + 
                                    +

                                    + In addition, speed_rpm_nominal is used in + + AixLib.Fluid.Movers.SpeedControlled_Nrpm + to normalize the control input signal. + Otherwise, these speed parameters in RPM are not used in the models. +

                                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end Generic; diff --git a/AixLib/Fluid/Movers/Data/Pumps/Wilo/CronolineIL80slash220dash4slash4.mo b/AixLib/Fluid/Movers/Data/Pumps/Wilo/CronolineIL80slash220dash4slash4.mo index d31f0f9c72..02d59c149b 100644 --- a/AixLib/Fluid/Movers/Data/Pumps/Wilo/CronolineIL80slash220dash4slash4.mo +++ b/AixLib/Fluid/Movers/Data/Pumps/Wilo/CronolineIL80slash220dash4slash4.mo @@ -10,29 +10,30 @@ record CronolineIL80slash220dash4slash4 defaultComponentPrefixes="parameter", defaultComponentName="per", Documentation(info=" -

                                    Data from: http://productfinder.wilo.com/com/en/c000000220003ab4800010023/_000000100002c2550002003a/product.html

                                    -

                                    See AixLib.Fluid.Movers.Data.Pumps.Wilo.Stratos25slash1to6 for more information about how the data is derived.

                                    -", revisions=" -
                                      -
                                    • -June 01, 2017, by Iago Cupeiro: -
                                      -Changed data link to English version -
                                    • -
                                    • -February 17, 2016, by Michael Wetter:
                                      -Updated parameter names for -#396. -
                                    • -
                                    • -December 12, 2014, by Michael Wetter:
                                      -Added defaultComponentPrefixes and -defaultComponentName annotations. -
                                    • -
                                    • April 22, 2014 - by Filip Jorissen:
                                      - Initial version -
                                    • -
                                    -")); +

                                    Data from: http://productfinder.wilo.com/com/en/c000000220003ab4800010023/_000000100002c2550002003a/product.html

                                    +

                                    See AixLib.Fluid.Movers.Data.Pumps.Wilo.Stratos25slash1to6 for more information about how the data is derived.

                                    + ", revisions=" +
                                      +
                                    • + June 01, 2017, by Iago Cupeiro: +
                                      + Changed data link to English version +
                                    • +
                                    • + February 17, 2016, by Michael Wetter:
                                      + Updated parameter names for + #396. +
                                    • +
                                    • + December 12, 2014, by Michael Wetter:
                                      + Added defaultComponentPrefixes and + defaultComponentName annotations. +
                                    • +
                                    • April 22, 2014 + by Filip Jorissen:
                                      + Initial version +
                                    • +
                                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end CronolineIL80slash220dash4slash4; diff --git a/AixLib/Fluid/Movers/Data/Pumps/Wilo/Stratos25slash1to4.mo b/AixLib/Fluid/Movers/Data/Pumps/Wilo/Stratos25slash1to4.mo index b0df722a07..0632255259 100644 --- a/AixLib/Fluid/Movers/Data/Pumps/Wilo/Stratos25slash1to4.mo +++ b/AixLib/Fluid/Movers/Data/Pumps/Wilo/Stratos25slash1to4.mo @@ -17,34 +17,35 @@ record Stratos25slash1to4 "Pump data for a Wilo Stratos 25/1-4 pump" defaultComponentPrefixes="parameter", defaultComponentName="per", Documentation(info=" -

                                    Data from: - - http://productfinder.wilo.com/en/COM/product/0000000e000379df0002003a/fc_product_datasheet - -

                                    -

                                    See - - AixLib.Fluid.Movers.Data.Pumps.Wilo.Stratos25slash1to6 - - for more information about how the data is derived. -

                                    - ", +

                                    Data from: + + http://productfinder.wilo.com/en/COM/product/0000000e000379df0002003a/fc_product_datasheet + +

                                    +

                                    See + + AixLib.Fluid.Movers.Data.Pumps.Wilo.Stratos25slash1to6 + + for more information about how the data is derived. +

                                    + ", revisions=" -
                                      -
                                    • -February 17, 2016, by Michael Wetter:
                                      -Updated parameter names for -#396. -
                                    • -
                                    • -December 12, 2014, by Michael Wetter:
                                      -Added defaultComponentPrefixes and -defaultComponentName annotations. -
                                    • -
                                    • April 17, 2014 - by Filip Jorissen:
                                      - Initial version -
                                    • -
                                    -")); +
                                      +
                                    • + February 17, 2016, by Michael Wetter:
                                      + Updated parameter names for + #396. +
                                    • +
                                    • + December 12, 2014, by Michael Wetter:
                                      + Added defaultComponentPrefixes and + defaultComponentName annotations. +
                                    • +
                                    • April 17, 2014 + by Filip Jorissen:
                                      + Initial version +
                                    • +
                                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end Stratos25slash1to4; diff --git a/AixLib/Fluid/Movers/Data/Pumps/Wilo/Stratos25slash1to6.mo b/AixLib/Fluid/Movers/Data/Pumps/Wilo/Stratos25slash1to6.mo index 651b755c7c..6b567b2b73 100644 --- a/AixLib/Fluid/Movers/Data/Pumps/Wilo/Stratos25slash1to6.mo +++ b/AixLib/Fluid/Movers/Data/Pumps/Wilo/Stratos25slash1to6.mo @@ -15,49 +15,50 @@ record Stratos25slash1to6 "Pump data for a Wilo Stratos 25/1-6 pump" defaultComponentPrefixes="parameter", defaultComponentName="per", Documentation(info=" -

                                    Data from - -http://productfinder.wilo.com/en/COM/product/00000018000028040002003a/fc_product_datasheet -

                                    -

                                    -The nominal rpm is arbitrarily chosen as the rpm of the pump curve -in the data sheet that has the highest rpm, -without being limited by the maximum power limitation -(see dotted curve on figure below). -Pump curves (H(m_flow) and P(m_flow)) from the data sheets -are digitized using -web plot digitizer. -

                                    -

                                    Limitations:

                                    -
                                      -
                                    • The pump curve cap at high rpm that can be seen is not enforced -by the model. -
                                    • -
                                    • -The pump curve may be altered slightly to guarantee that dp/dm<0 -
                                    • -
                                    -

                                    -The figure below illustrates a digitized pump curve. -

                                    -

                                    -\"Pump

                                    -", revisions=" -
                                      -
                                    • -February 17, 2016, by Michael Wetter:
                                      -Updated parameter names for -#396. -
                                    • -
                                    • -December 12, 2014, by Michael Wetter:
                                      -Added defaultComponentPrefixes and -defaultComponentName annotations. -
                                    • -
                                    • April 17, 2014 - by Filip Jorissen:
                                      - Initial version -
                                    • -
                                    -")); +

                                    Data from + + http://productfinder.wilo.com/en/COM/product/00000018000028040002003a/fc_product_datasheet +

                                    +

                                    + The nominal rpm is arbitrarily chosen as the rpm of the pump curve + in the data sheet that has the highest rpm, + without being limited by the maximum power limitation + (see dotted curve on figure below). + Pump curves (H(m_flow) and P(m_flow)) from the data sheets + are digitized using + web plot digitizer. +

                                    +

                                    Limitations:

                                    +
                                      +
                                    • The pump curve cap at high rpm that can be seen is not enforced + by the model. +
                                    • +
                                    • + The pump curve may be altered slightly to guarantee that dp/dm<0 +
                                    • +
                                    +

                                    + The figure below illustrates a digitized pump curve. +

                                    +

                                    + \"Pump

                                    + ",revisions=" +
                                      +
                                    • + February 17, 2016, by Michael Wetter:
                                      + Updated parameter names for + #396. +
                                    • +
                                    • + December 12, 2014, by Michael Wetter:
                                      + Added defaultComponentPrefixes and + defaultComponentName annotations. +
                                    • +
                                    • April 17, 2014 + by Filip Jorissen:
                                      + Initial version +
                                    • +
                                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end Stratos25slash1to6; diff --git a/AixLib/Fluid/Movers/Data/Pumps/Wilo/Stratos25slash1to8.mo b/AixLib/Fluid/Movers/Data/Pumps/Wilo/Stratos25slash1to8.mo index c52b28ead5..d636272275 100644 --- a/AixLib/Fluid/Movers/Data/Pumps/Wilo/Stratos25slash1to8.mo +++ b/AixLib/Fluid/Movers/Data/Pumps/Wilo/Stratos25slash1to8.mo @@ -15,33 +15,34 @@ record Stratos25slash1to8 "Pump data for a Wilo Stratos 25/1-8 pump" defaultComponentPrefixes="parameter", defaultComponentName="per", Documentation(info=" -

                                    Data from: - - http://productfinder.wilo.com/en/COM/product/0000000e000379df0002003a/fc_product_datasheet - -

                                    -

                                    See - - AixLib.Fluid.Movers.Data.Pumps.Wilo.Stratos25slash1to6 - - for more information about how the data is derived. -

                                    - ", revisions=" -
                                      -
                                    • -February 17, 2016, by Michael Wetter:
                                      -Updated parameter names for -#396. -
                                    • -
                                    • -December 12, 2014, by Michael Wetter:
                                      -Added defaultComponentPrefixes and -defaultComponentName annotations. -
                                    • -
                                    • April 22, 2014 - by Filip Jorissen:
                                      - Initial version -
                                    • -
                                    -")); +

                                    Data from: + + http://productfinder.wilo.com/en/COM/product/0000000e000379df0002003a/fc_product_datasheet + +

                                    +

                                    See + + AixLib.Fluid.Movers.Data.Pumps.Wilo.Stratos25slash1to6 + + for more information about how the data is derived. +

                                    + ",revisions=" +
                                      +
                                    • + February 17, 2016, by Michael Wetter:
                                      + Updated parameter names for + #396. +
                                    • +
                                    • + December 12, 2014, by Michael Wetter:
                                      + Added defaultComponentPrefixes and + defaultComponentName annotations. +
                                    • +
                                    • April 22, 2014 + by Filip Jorissen:
                                      + Initial version +
                                    • +
                                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end Stratos25slash1to8; diff --git a/AixLib/Fluid/Movers/Data/Pumps/Wilo/Stratos30slash1to4.mo b/AixLib/Fluid/Movers/Data/Pumps/Wilo/Stratos30slash1to4.mo index 1444c0da61..e4d12f8eed 100644 --- a/AixLib/Fluid/Movers/Data/Pumps/Wilo/Stratos30slash1to4.mo +++ b/AixLib/Fluid/Movers/Data/Pumps/Wilo/Stratos30slash1to4.mo @@ -17,33 +17,34 @@ record Stratos30slash1to4 "Pump data for a Wilo Stratos 30/1-4 pump" defaultComponentPrefixes="parameter", defaultComponentName="per", Documentation(info=" -

                                    Data from: - - http://productfinder.wilo.com/en/COM/product/0000000e000379df0002003a/fc_product_datasheet - -

                                    -

                                    See - - AixLib.Fluid.Movers.Data.Pumps.Wilo.Stratos25slash1to6 - - for more information about how the data is derived. -

                                    - ", revisions=" -
                                      -
                                    • -February 17, 2016, by Michael Wetter:
                                      -Updated parameter names for -#396. -
                                    • -
                                    • -December 12, 2014, by Michael Wetter:
                                      -Added defaultComponentPrefixes and -defaultComponentName annotations. -
                                    • -
                                    • April 22, 2014 - by Filip Jorissen:
                                      - Initial version -
                                    • -
                                    -")); +

                                    Data from: + + http://productfinder.wilo.com/en/COM/product/0000000e000379df0002003a/fc_product_datasheet + +

                                    +

                                    See + + AixLib.Fluid.Movers.Data.Pumps.Wilo.Stratos25slash1to6 + + for more information about how the data is derived. +

                                    + ",revisions=" +
                                      +
                                    • + February 17, 2016, by Michael Wetter:
                                      + Updated parameter names for + #396. +
                                    • +
                                    • + December 12, 2014, by Michael Wetter:
                                      + Added defaultComponentPrefixes and + defaultComponentName annotations. +
                                    • +
                                    • April 22, 2014 + by Filip Jorissen:
                                      + Initial version +
                                    • +
                                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end Stratos30slash1to4; diff --git a/AixLib/Fluid/Movers/Data/Pumps/Wilo/Stratos30slash1to8.mo b/AixLib/Fluid/Movers/Data/Pumps/Wilo/Stratos30slash1to8.mo index 3df107bd19..b1e84404b9 100644 --- a/AixLib/Fluid/Movers/Data/Pumps/Wilo/Stratos30slash1to8.mo +++ b/AixLib/Fluid/Movers/Data/Pumps/Wilo/Stratos30slash1to8.mo @@ -15,33 +15,34 @@ record Stratos30slash1to8 "Pump data for a Wilo Stratos 30/1-8 pump" defaultComponentPrefixes="parameter", defaultComponentName="per", Documentation(info=" -

                                    Data from: - - http://productfinder.wilo.com/en/COM/product/0000000e000379df0002003a/fc_product_datasheet - -

                                    -

                                    See - - AixLib.Fluid.Movers.Data.Pumps.Wilo.Stratos25slash1to6 - - for more information about how the data is derived. -

                                    - ", revisions=" -
                                      -
                                    • -February 17, 2016, by Michael Wetter:
                                      -Updated parameter names for -#396. -
                                    • -
                                    • -December 12, 2014, by Michael Wetter:
                                      -Added defaultComponentPrefixes and -defaultComponentName annotations. -
                                    • -
                                    • April 22, 2014 - by Filip Jorissen:
                                      - Initial version -
                                    • -
                                    -")); +

                                    Data from: + + http://productfinder.wilo.com/en/COM/product/0000000e000379df0002003a/fc_product_datasheet + +

                                    +

                                    See + + AixLib.Fluid.Movers.Data.Pumps.Wilo.Stratos25slash1to6 + + for more information about how the data is derived. +

                                    + ",revisions=" +
                                      +
                                    • + February 17, 2016, by Michael Wetter:
                                      + Updated parameter names for + #396. +
                                    • +
                                    • + December 12, 2014, by Michael Wetter:
                                      + Added defaultComponentPrefixes and + defaultComponentName annotations. +
                                    • +
                                    • April 22, 2014 + by Filip Jorissen:
                                      + Initial version +
                                    • +
                                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end Stratos30slash1to8; diff --git a/AixLib/Fluid/Movers/Data/Pumps/Wilo/Stratos32slash1to12.mo b/AixLib/Fluid/Movers/Data/Pumps/Wilo/Stratos32slash1to12.mo index d4dd214bd8..f7a5144488 100644 --- a/AixLib/Fluid/Movers/Data/Pumps/Wilo/Stratos32slash1to12.mo +++ b/AixLib/Fluid/Movers/Data/Pumps/Wilo/Stratos32slash1to12.mo @@ -17,33 +17,34 @@ record Stratos32slash1to12 "Pump data for a Wilo Stratos 32/1-12 pump" defaultComponentPrefixes="parameter", defaultComponentName="per", Documentation(info=" -

                                    Data from: - - http://productfinder.wilo.com/en/COM/product/0000000e000379df0002003a/fc_product_datasheet - -

                                    -

                                    See - - AixLib.Fluid.Movers.Data.Pumps.Wilo.Stratos25slash1to6 - - for more information about how the data is derived. -

                                    - ", revisions=" -
                                      -
                                    • -February 17, 2016, by Michael Wetter:
                                      -Updated parameter names for -#396. -
                                    • -
                                    • -December 12, 2014, by Michael Wetter:
                                      -Added defaultComponentPrefixes and -defaultComponentName annotations. -
                                    • -
                                    • April 22, 2014 - by Filip Jorissen:
                                      - Initial version -
                                    • -
                                    -")); +

                                    Data from: + + http://productfinder.wilo.com/en/COM/product/0000000e000379df0002003a/fc_product_datasheet + +

                                    +

                                    See + + AixLib.Fluid.Movers.Data.Pumps.Wilo.Stratos25slash1to6 + + for more information about how the data is derived. +

                                    + ",revisions=" +
                                      +
                                    • + February 17, 2016, by Michael Wetter:
                                      + Updated parameter names for + #396. +
                                    • +
                                    • + December 12, 2014, by Michael Wetter:
                                      + Added defaultComponentPrefixes and + defaultComponentName annotations. +
                                    • +
                                    • April 22, 2014 + by Filip Jorissen:
                                      + Initial version +
                                    • +
                                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end Stratos32slash1to12; diff --git a/AixLib/Fluid/Movers/Data/Pumps/Wilo/Stratos40slash1to12.mo b/AixLib/Fluid/Movers/Data/Pumps/Wilo/Stratos40slash1to12.mo index 0028121784..71cb6a0409 100644 --- a/AixLib/Fluid/Movers/Data/Pumps/Wilo/Stratos40slash1to12.mo +++ b/AixLib/Fluid/Movers/Data/Pumps/Wilo/Stratos40slash1to12.mo @@ -15,33 +15,34 @@ record Stratos40slash1to12 "Pump data for a Wilo Stratos 40/1-12 pump" defaultComponentPrefixes="parameter", defaultComponentName="per", Documentation(info=" -

                                    Data from: - - http://productfinder.wilo.com/en/COM/product/0000000e000379df0002003a/fc_product_datasheet - -

                                    -

                                    See - - AixLib.Fluid.Movers.Data.Pumps.Wilo.Stratos25slash1to6 - - for more information about how the data is derived. -

                                    - ", revisions=" -
                                      -
                                    • -February 17, 2016, by Michael Wetter:
                                      -Updated parameter names for -#396. -
                                    • -
                                    • -December 12, 2014, by Michael Wetter:
                                      -Added defaultComponentPrefixes and -defaultComponentName annotations. -
                                    • -
                                    • April 22, 2014 - by Filip Jorissen:
                                      - Initial version -
                                    • -
                                    -")); +

                                    Data from: + + http://productfinder.wilo.com/en/COM/product/0000000e000379df0002003a/fc_product_datasheet + +

                                    +

                                    See + + AixLib.Fluid.Movers.Data.Pumps.Wilo.Stratos25slash1to6 + + for more information about how the data is derived. +

                                    + ",revisions=" +
                                      +
                                    • + February 17, 2016, by Michael Wetter:
                                      + Updated parameter names for + #396. +
                                    • +
                                    • + December 12, 2014, by Michael Wetter:
                                      + Added defaultComponentPrefixes and + defaultComponentName annotations. +
                                    • +
                                    • April 22, 2014 + by Filip Jorissen:
                                      + Initial version +
                                    • +
                                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end Stratos40slash1to12; diff --git a/AixLib/Fluid/Movers/Data/Pumps/Wilo/Stratos40slash1to8.mo b/AixLib/Fluid/Movers/Data/Pumps/Wilo/Stratos40slash1to8.mo index 146dcc642e..180878cbad 100644 --- a/AixLib/Fluid/Movers/Data/Pumps/Wilo/Stratos40slash1to8.mo +++ b/AixLib/Fluid/Movers/Data/Pumps/Wilo/Stratos40slash1to8.mo @@ -15,33 +15,34 @@ record Stratos40slash1to8 "Pump data for a Wilo Stratos 40/1-8 pump" defaultComponentPrefixes="parameter", defaultComponentName="per", Documentation(info=" -

                                    Data from: - - http://productfinder.wilo.com/en/COM/product/0000000e000379df0002003a/fc_product_datasheet - -

                                    -

                                    See - - AixLib.Fluid.Movers.Data.Pumps.Wilo.Stratos25slash1to6 - - for more information about how the data is derived. -

                                    - ", revisions=" -
                                      -
                                    • -February 17, 2016, by Michael Wetter:
                                      -Updated parameter names for -#396. -
                                    • -
                                    • -December 12, 2014, by Michael Wetter:
                                      -Added defaultComponentPrefixes and -defaultComponentName annotations. -
                                    • -
                                    • April 22, 2014 - by Filip Jorissen:
                                      - Initial version -
                                    • -
                                    -")); +

                                    Data from: + + http://productfinder.wilo.com/en/COM/product/0000000e000379df0002003a/fc_product_datasheet + +

                                    +

                                    See + + AixLib.Fluid.Movers.Data.Pumps.Wilo.Stratos25slash1to6 + + for more information about how the data is derived. +

                                    + ",revisions=" +
                                      +
                                    • + February 17, 2016, by Michael Wetter:
                                      + Updated parameter names for + #396. +
                                    • +
                                    • + December 12, 2014, by Michael Wetter:
                                      + Added defaultComponentPrefixes and + defaultComponentName annotations. +
                                    • +
                                    • April 22, 2014 + by Filip Jorissen:
                                      + Initial version +
                                    • +
                                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end Stratos40slash1to8; diff --git a/AixLib/Fluid/Movers/Data/Pumps/Wilo/Stratos50slash1to12.mo b/AixLib/Fluid/Movers/Data/Pumps/Wilo/Stratos50slash1to12.mo index 766629037c..0bf6615b6f 100644 --- a/AixLib/Fluid/Movers/Data/Pumps/Wilo/Stratos50slash1to12.mo +++ b/AixLib/Fluid/Movers/Data/Pumps/Wilo/Stratos50slash1to12.mo @@ -17,33 +17,34 @@ record Stratos50slash1to12 "Pump data for a Wilo Stratos 50/1-12 pump" defaultComponentPrefixes="parameter", defaultComponentName="per", Documentation(info=" -

                                    Data from: - - http://productfinder.wilo.com/en/COM/product/0000000e000379df0002003a/fc_product_datasheet - -

                                    -

                                    See - - AixLib.Fluid.Movers.Data.Pumps.Wilo.Stratos25slash1to6 - - for more information about how the data is derived. -

                                    - ", revisions=" -
                                      -
                                    • -February 17, 2016, by Michael Wetter:
                                      -Updated parameter names for -#396. -
                                    • -
                                    • -December 12, 2014, by Michael Wetter:
                                      -Added defaultComponentPrefixes and -defaultComponentName annotations. -
                                    • -
                                    • April 22, 2014 - by Filip Jorissen:
                                      - Initial version -
                                    • -
                                    -")); +

                                    Data from: + + http://productfinder.wilo.com/en/COM/product/0000000e000379df0002003a/fc_product_datasheet + +

                                    +

                                    See + + AixLib.Fluid.Movers.Data.Pumps.Wilo.Stratos25slash1to6 + + for more information about how the data is derived. +

                                    + ",revisions=" +
                                      +
                                    • + February 17, 2016, by Michael Wetter:
                                      + Updated parameter names for + #396. +
                                    • +
                                    • + December 12, 2014, by Michael Wetter:
                                      + Added defaultComponentPrefixes and + defaultComponentName annotations. +
                                    • +
                                    • April 22, 2014 + by Filip Jorissen:
                                      + Initial version +
                                    • +
                                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end Stratos50slash1to12; diff --git a/AixLib/Fluid/Movers/Data/Pumps/Wilo/Stratos80slash1to12.mo b/AixLib/Fluid/Movers/Data/Pumps/Wilo/Stratos80slash1to12.mo index a1be736323..c3b31c5342 100644 --- a/AixLib/Fluid/Movers/Data/Pumps/Wilo/Stratos80slash1to12.mo +++ b/AixLib/Fluid/Movers/Data/Pumps/Wilo/Stratos80slash1to12.mo @@ -17,33 +17,34 @@ record Stratos80slash1to12 "Pump data for a Wilo Stratos 80/1-12 pump" defaultComponentPrefixes="parameter", defaultComponentName="per", Documentation(info=" -

                                    Data from: - - http://productfinder.wilo.com/en/COM/product/0000000e000379df0002003a/fc_product_datasheet - -

                                    -

                                    See - - AixLib.Fluid.Movers.Data.Pumps.Wilo.Stratos25slash1to6 - - for more information about how the data is derived. -

                                    - ", revisions=" -
                                      -
                                    • -February 17, 2016, by Michael Wetter:
                                      -Updated parameter names for -#396. -
                                    • -
                                    • -December 12, 2014, by Michael Wetter:
                                      -Added defaultComponentPrefixes and -defaultComponentName annotations. -
                                    • -
                                    • April 22, 2014 - by Filip Jorissen:
                                      - Initial version -
                                    • -
                                    -")); +

                                    Data from: + + http://productfinder.wilo.com/en/COM/product/0000000e000379df0002003a/fc_product_datasheet + +

                                    +

                                    See + + AixLib.Fluid.Movers.Data.Pumps.Wilo.Stratos25slash1to6 + + for more information about how the data is derived. +

                                    + ",revisions=" +
                                      +
                                    • + February 17, 2016, by Michael Wetter:
                                      + Updated parameter names for + #396. +
                                    • +
                                    • + December 12, 2014, by Michael Wetter:
                                      + Added defaultComponentPrefixes and + defaultComponentName annotations. +
                                    • +
                                    • April 22, 2014 + by Filip Jorissen:
                                      + Initial version +
                                    • +
                                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end Stratos80slash1to12; diff --git a/AixLib/Fluid/Movers/Data/Pumps/Wilo/TopS25slash10.mo b/AixLib/Fluid/Movers/Data/Pumps/Wilo/TopS25slash10.mo index 2e2c143a68..965ab81658 100644 --- a/AixLib/Fluid/Movers/Data/Pumps/Wilo/TopS25slash10.mo +++ b/AixLib/Fluid/Movers/Data/Pumps/Wilo/TopS25slash10.mo @@ -22,33 +22,35 @@ record TopS25slash10 "Pump data for a staged Wilo-Top-S 25/10 pump" defaultComponentPrefixes="parameter", defaultComponentName="per", Documentation(info=" -

                                    Data from: - - http://productfinder.wilo.com/en/COM/product/0000001000029c210002003a/fc_product_datasheet - -

                                    -

                                    See - - AixLib.Fluid.Movers.Data.Pumps.Wilo.Stratos25slash1to6 - - for more information about how the data is derived. -

                                    - ",revisions=" -
                                      -
                                    • -February 17, 2016, by Michael Wetter:
                                      -Updated parameter names for -#396. -
                                    • -
                                    • -February 17, 2016, by Michael Wetter:
                                      -Updated parameter names for -#396. -
                                    • -
                                    • -January 19, 2016, by Filip Jorissen:
                                      -First implementation. -
                                    • -
                                    -")); +

                                    Data from: + + http://productfinder.wilo.com/en/COM/product/0000001000029c210002003a/fc_product_datasheet + +

                                    +

                                    See + + AixLib.Fluid.Movers.Data.Pumps.Wilo.Stratos25slash1to6 + + for more information about how the data is derived. +

                                    + ", + revisions=" +
                                      +
                                    • + February 17, 2016, by Michael Wetter:
                                      + Updated parameter names for + #396. +
                                    • +
                                    • + February 17, 2016, by Michael Wetter:
                                      + Updated parameter names for + #396. +
                                    • +
                                    • + January 19, 2016, by Filip Jorissen:
                                      + First implementation. +
                                    • +
                                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end TopS25slash10; diff --git a/AixLib/Fluid/Movers/Data/Pumps/Wilo/TopS30slash10.mo b/AixLib/Fluid/Movers/Data/Pumps/Wilo/TopS30slash10.mo index 868aa0689c..5aec506469 100644 --- a/AixLib/Fluid/Movers/Data/Pumps/Wilo/TopS30slash10.mo +++ b/AixLib/Fluid/Movers/Data/Pumps/Wilo/TopS30slash10.mo @@ -23,34 +23,35 @@ record TopS30slash10 "Pump data for a staged Wilo-Top-S 30/10 pump" defaultComponentPrefixes="parameter", defaultComponentName="per", Documentation(info=" -

                                    Data from: - - http://productfinder.wilo.com/en/COM/product/00000009000287740001003a/fc_product_datasheet - -

                                    -

                                    See - - AixLib.Fluid.Movers.Data.Pumps.Wilo.Stratos25slash1to6 - - for more information about how the data is derived. -

                                    - ", +

                                    Data from: + + http://productfinder.wilo.com/en/COM/product/00000009000287740001003a/fc_product_datasheet + +

                                    +

                                    See + + AixLib.Fluid.Movers.Data.Pumps.Wilo.Stratos25slash1to6 + + for more information about how the data is derived. +

                                    + ", revisions=" -
                                      -
                                    • -February 17, 2016, by Michael Wetter:
                                      -Updated parameter names for -#396. -
                                    • -
                                    • -February 17, 2016, by Michael Wetter:
                                      -Updated parameter names for -#396. -
                                    • -
                                    • -January 19, 2016, by Filip Jorissen:
                                      -First implementation. -
                                    • -
                                    -")); +
                                      +
                                    • + February 17, 2016, by Michael Wetter:
                                      + Updated parameter names for + #396. +
                                    • +
                                    • + February 17, 2016, by Michael Wetter:
                                      + Updated parameter names for + #396. +
                                    • +
                                    • + January 19, 2016, by Filip Jorissen:
                                      + First implementation. +
                                    • +
                                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end TopS30slash10; diff --git a/AixLib/Fluid/Movers/Data/Pumps/Wilo/TopS30slash5.mo b/AixLib/Fluid/Movers/Data/Pumps/Wilo/TopS30slash5.mo index 4de3ba787d..36823f8f82 100644 --- a/AixLib/Fluid/Movers/Data/Pumps/Wilo/TopS30slash5.mo +++ b/AixLib/Fluid/Movers/Data/Pumps/Wilo/TopS30slash5.mo @@ -22,34 +22,35 @@ record TopS30slash5 "Pump data for a staged Wilo-Top-S 30/5 pump" defaultComponentPrefixes="parameter", defaultComponentName="per", Documentation(info=" -

                                    Data from: - - http://productfinder.wilo.com/en/COM/product/00000000000296670002003a/fc_product_datasheet - -

                                    -

                                    See - - AixLib.Fluid.Movers.Data.Pumps.Wilo.Stratos25slash1to6 - - for more information about how the data is derived. -

                                    - ", +

                                    Data from: + + http://productfinder.wilo.com/en/COM/product/00000000000296670002003a/fc_product_datasheet + +

                                    +

                                    See + + AixLib.Fluid.Movers.Data.Pumps.Wilo.Stratos25slash1to6 + + for more information about how the data is derived. +

                                    + ", revisions=" -
                                      -
                                    • -February 17, 2016, by Michael Wetter:
                                      -Updated parameter names for -#396. -
                                    • -
                                    • -February 17, 2016, by Michael Wetter:
                                      -Updated parameter names for -#396. -
                                    • -
                                    • -January 19, 2016, by Filip Jorissen:
                                      -First implementation. -
                                    • -
                                    -")); +
                                      +
                                    • + February 17, 2016, by Michael Wetter:
                                      + Updated parameter names for + #396. +
                                    • +
                                    • + February 17, 2016, by Michael Wetter:
                                      + Updated parameter names for + #396. +
                                    • +
                                    • + January 19, 2016, by Filip Jorissen:
                                      + First implementation. +
                                    • +
                                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end TopS30slash5; diff --git a/AixLib/Fluid/Movers/Data/Pumps/Wilo/TopS40slash10.mo b/AixLib/Fluid/Movers/Data/Pumps/Wilo/TopS40slash10.mo index d4319c8469..3d87d1e083 100644 --- a/AixLib/Fluid/Movers/Data/Pumps/Wilo/TopS40slash10.mo +++ b/AixLib/Fluid/Movers/Data/Pumps/Wilo/TopS40slash10.mo @@ -20,34 +20,35 @@ record TopS40slash10 "Pump data for a staged Wilo-Top-S 40/10 pump" defaultComponentPrefixes="parameter", defaultComponentName="per", Documentation(info=" -

                                    Data from: - - http://productfinder.wilo.com/en/COM/product/000000120001ad890001003a/fc_product_datasheet - -

                                    -

                                    See - - AixLib.Fluid.Movers.Data.Pumps.Wilo.Stratos25slash1to6 - - for more information about how the data is derived. -

                                    - ", +

                                    Data from: + + http://productfinder.wilo.com/en/COM/product/000000120001ad890001003a/fc_product_datasheet + +

                                    +

                                    See + + AixLib.Fluid.Movers.Data.Pumps.Wilo.Stratos25slash1to6 + + for more information about how the data is derived. +

                                    + ", revisions=" -
                                      -
                                    • -February 17, 2016, by Michael Wetter:
                                      -Updated parameter names for -#396. -
                                    • -
                                    • -February 17, 2016, by Michael Wetter:
                                      -Updated parameter names for -#396. -
                                    • -
                                    • -January 19, 2016, by Filip Jorissen:
                                      -First implementation. -
                                    • -
                                    -")); +
                                      +
                                    • + February 17, 2016, by Michael Wetter:
                                      + Updated parameter names for + #396. +
                                    • +
                                    • + February 17, 2016, by Michael Wetter:
                                      + Updated parameter names for + #396. +
                                    • +
                                    • + January 19, 2016, by Filip Jorissen:
                                      + First implementation. +
                                    • +
                                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end TopS40slash10; diff --git a/AixLib/Fluid/Movers/Data/Pumps/Wilo/TopS40slash7.mo b/AixLib/Fluid/Movers/Data/Pumps/Wilo/TopS40slash7.mo index d892d4670e..f781fe54ff 100644 --- a/AixLib/Fluid/Movers/Data/Pumps/Wilo/TopS40slash7.mo +++ b/AixLib/Fluid/Movers/Data/Pumps/Wilo/TopS40slash7.mo @@ -21,34 +21,35 @@ record TopS40slash7 "Pump data for a staged Wilo-Top-S 40/7 pump" defaultComponentPrefixes="parameter", defaultComponentName="per", Documentation(info=" -

                                    Data from: - - http://productfinder.wilo.com/en/COM/product/000000120001ad1f0001003a/fc_product_datasheet - -

                                    -

                                    See - - AixLib.Fluid.Movers.Data.Pumps.Wilo.Stratos25slash1to6 - - for more information about how the data is derived. -

                                    - ", +

                                    Data from: + + http://productfinder.wilo.com/en/COM/product/000000120001ad1f0001003a/fc_product_datasheet + +

                                    +

                                    See + + AixLib.Fluid.Movers.Data.Pumps.Wilo.Stratos25slash1to6 + + for more information about how the data is derived. +

                                    + ", revisions=" -
                                      -
                                    • -February 17, 2016, by Michael Wetter:
                                      -Updated parameter names for -#396. -
                                    • -
                                    • -February 17, 2016, by Michael Wetter:
                                      -Updated parameter names for -#396. -
                                    • -
                                    • -January 19, 2016, by Filip Jorissen:
                                      -First implementation. -
                                    • -
                                    -")); +
                                      +
                                    • + February 17, 2016, by Michael Wetter:
                                      + Updated parameter names for + #396. +
                                    • +
                                    • + February 17, 2016, by Michael Wetter:
                                      + Updated parameter names for + #396. +
                                    • +
                                    • + January 19, 2016, by Filip Jorissen:
                                      + First implementation. +
                                    • +
                                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end TopS40slash7; diff --git a/AixLib/Fluid/Movers/Data/Pumps/Wilo/VeroLine50slash150dash4slash2.mo b/AixLib/Fluid/Movers/Data/Pumps/Wilo/VeroLine50slash150dash4slash2.mo index 2fd97ecdcb..f8fe2a014a 100644 --- a/AixLib/Fluid/Movers/Data/Pumps/Wilo/VeroLine50slash150dash4slash2.mo +++ b/AixLib/Fluid/Movers/Data/Pumps/Wilo/VeroLine50slash150dash4slash2.mo @@ -11,15 +11,16 @@ record VeroLine50slash150dash4slash2 defaultComponentPrefixes="parameter", defaultComponentName="per", Documentation(info=" -

                                    Data from: http://productfinder.wilo.com/com/en/c0000002200012eb000020023/_0000004f0003f94e0001003a/product.html

                                    -

                                    See AixLib.Fluid.Movers.Data.Pumps.Wilo.Stratos25slash1to6for more information about how the data is derived.

                                    -", revisions=" -
                                      -
                                    • -May 28, 2017, by Iago Cupeiro: -
                                      -Initial version -
                                    • -
                                    -")); +

                                    Data from: http://productfinder.wilo.com/com/en/c0000002200012eb000020023/_0000004f0003f94e0001003a/product.html

                                    +

                                    See AixLib.Fluid.Movers.Data.Pumps.Wilo.Stratos25slash1to6for more information about how the data is derived.

                                    + ", revisions=" +
                                      +
                                    • + May 28, 2017, by Iago Cupeiro: +
                                      + Initial version +
                                    • +
                                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end VeroLine50slash150dash4slash2; diff --git a/AixLib/Fluid/Movers/Data/Pumps/Wilo/VeroLine80slash115dash2comma2slash2.mo b/AixLib/Fluid/Movers/Data/Pumps/Wilo/VeroLine80slash115dash2comma2slash2.mo index beee5050cf..2577e9347b 100644 --- a/AixLib/Fluid/Movers/Data/Pumps/Wilo/VeroLine80slash115dash2comma2slash2.mo +++ b/AixLib/Fluid/Movers/Data/Pumps/Wilo/VeroLine80slash115dash2comma2slash2.mo @@ -11,29 +11,30 @@ record VeroLine80slash115dash2comma2slash2 defaultComponentPrefixes="parameter", defaultComponentName="per", Documentation(info=" -

                                    Data from: http://productfinder.wilo.com/com/en/c0000002200012eb000020023/_0000001d000149e80001003a/product.html

                                    -

                                    See AixLib.Fluid.Movers.Data.Pumps.Wilo.Stratos25slash1to6 for more information about how the data is derived.

                                    -", revisions=" -
                                      -
                                    • -June 01, 2017, by Iago Cupeiro: -
                                      -Changed data link to the English version -
                                    • -
                                    • -February 17, 2016, by Michael Wetter:
                                      -Updated parameter names for -#396. -
                                    • -
                                    • -December 12, 2014, by Michael Wetter:
                                      -Added defaultComponentPrefixes and -defaultComponentName annotations. -
                                    • -
                                    • April 22, 2014 - by Filip Jorissen:
                                      - Initial version -
                                    • -
                                    -")); +

                                    Data from: http://productfinder.wilo.com/com/en/c0000002200012eb000020023/_0000001d000149e80001003a/product.html

                                    +

                                    See AixLib.Fluid.Movers.Data.Pumps.Wilo.Stratos25slash1to6 for more information about how the data is derived.

                                    + ", revisions=" +
                                      +
                                    • + June 01, 2017, by Iago Cupeiro: +
                                      + Changed data link to the English version +
                                    • +
                                    • + February 17, 2016, by Michael Wetter:
                                      + Updated parameter names for + #396. +
                                    • +
                                    • + December 12, 2014, by Michael Wetter:
                                      + Added defaultComponentPrefixes and + defaultComponentName annotations. +
                                    • +
                                    • April 22, 2014 + by Filip Jorissen:
                                      + Initial version +
                                    • +
                                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end VeroLine80slash115dash2comma2slash2; diff --git a/AixLib/Fluid/Movers/DpControlledMovers/DpControlled_dp.mo b/AixLib/Fluid/Movers/DpControlledMovers/DpControlled_dp.mo new file mode 100644 index 0000000000..3ab7286d77 --- /dev/null +++ b/AixLib/Fluid/Movers/DpControlledMovers/DpControlled_dp.mo @@ -0,0 +1,550 @@ +within AixLib.Fluid.Movers.DpControlledMovers; +model DpControlled_dp "Pump or fan including pressure control (constant or variable)" + extends AixLib.Fluid.Interfaces.LumpedVolumeDeclarations( + final mSenFac=1); + extends AixLib.Fluid.Interfaces.PartialTwoPortInterface( + m_flow_nominal(final min=Modelica.Constants.small), + port_a( + h_outflow(start=h_outflow_start)), + port_b( + h_outflow(start=h_outflow_start), + p(start=p_start), + final m_flow(max = if allowFlowReversal then +Modelica.Constants.inf else 0))); + + + replaceable parameter AixLib.Fluid.Movers.Data.Generic per(pressure=pressureCurve_default) "Record with performance data" + annotation (choicesAllMatching=true, + Dialog(group="Machine characteristics"), + Placement(transformation(extent={{12,22},{32,42}}))); + + parameter Modelica.Units.SI.PressureDifference dp_nominal( + min=0, + displayUnit="Pa") = if rho_default < 500 then 500 else 10000 "Nominal pressure raise, used to normalized the filter if use_inputFilter=true, + to set default values of constantHead and heads, and + and for default pressure curve if not specified in record per" + annotation (Dialog(group="Nominal condition")); + parameter AixLib.Fluid.Movers.DpControlledMovers.Types.CtrlType ctrlType=AixLib.Fluid.Movers.DpControlledMovers.Types.CtrlType.dpTotal "Type of mover control" annotation (Dialog(group="Control characteristics")); + parameter AixLib.Fluid.Movers.BaseClasses.Characteristics.flowParameters pressureCurve_default( + V_flow=m_flow_nominal/rho_default*{0,1,1.5,2}, + dp=dp_nominal*{1.3,1,0.75,0}) + "General mover curve: volume flow rate vs. total pressure head" + annotation (Dialog(group="Machine characteristics")); + parameter AixLib.Fluid.Movers.BaseClasses.Characteristics.flowParameters pressureCurve_dpConst( + V_flow=m_flow_nominal/rho_default*{0,1,1.5,2}, + dp=dp_nominal*{1,1,0.75,0}) + "dpConst control: volume flow rate vs. total pressure head" + annotation(Dialog(enable=(ctrlType == AixLib.Fluid.Movers.DpControlledMovers.Types.CtrlType.dpConst), group="Control characteristics")); + parameter AixLib.Fluid.Movers.BaseClasses.Characteristics.flowParameters pressureCurve_dpVar( + V_flow=m_flow_nominal/rho_default*{0,1,1.5,2}, + dp=dp_nominal*{0.5,1,0.75,0}) + "dpVar control: volume flow rate vs. total pressure head" + annotation(Dialog(enable=(ctrlType == AixLib.Fluid.Movers.DpControlledMovers.Types.CtrlType.dpVar), group="Control characteristics")); + + parameter Boolean addPowerToMedium=true + "Set to false to avoid any power (=heat and flow work) being added to medium (may give simpler equations)"; + parameter Boolean nominalValuesDefineDefaultPressureCurve = false + "Set to true to avoid warning if m_flow_nominal and dp_nominal are used to construct the default pressure curve"; + parameter Boolean prescribeSystemPressure=false + "=true, to control mover such that pressure difference is obtained across two remote points in system" + annotation (Dialog(tab="Advanced")); + parameter Modelica.Units.SI.Time tauMov=1 + "Time constant in mover (pump or fan) of fluid volume for nominal flow, used if energy or mass balance is dynamic" + annotation (Dialog( + tab="Dynamics", + group="Nominal condition", + enable=energyDynamics <> Modelica.Fluid.Types.Dynamics.SteadyState or + massDynamics <> Modelica.Fluid.Types.Dynamics.SteadyState)); + + // Classes used to implement the filtered speed + parameter Boolean use_inputFilter=true + "= true, if speed is filtered with a 2nd order CriticalDamping filter" + annotation(Dialog(tab="Dynamics", group="Filtered speed")); + parameter Modelica.Units.SI.Time riseTime=30 + "Rise time of the filter (time to reach 99.6 % of the speed)" annotation ( + Dialog( + tab="Dynamics", + group="Filtered speed", + enable=use_inputFilter)); + parameter Modelica.Blocks.Types.Init init=Modelica.Blocks.Types.Init.InitialOutput + "Type of initialization (no init/steady state/initial state/initial output)" + annotation(Dialog(tab="Dynamics", group="Filtered speed",enable=use_inputFilter)); + parameter Real y_start(min=0, max=1, unit="1")=0 + "Initial value of speed" + annotation(Dialog(tab="Dynamics", group="Filtered speed",enable=use_inputFilter)); + + // Sensor parameters + parameter Modelica.Units.SI.PressureDifference dp_start=0 + "Initial value of pressure raise" annotation (Dialog( + tab="Dynamics", + group="Filtered speed", + enable=use_inputFilter)); + parameter Modelica.Units.SI.Time tauSen=0 + "Time constant at nominal flow rate (use tau=0 for steady-state sensor, but see user guide for potential problems)" + annotation (Dialog(tab="Sensor")); + parameter Modelica.Blocks.Types.Init initType=Modelica.Blocks.Types.Init.InitialState + "Type of initialization (InitialState and InitialOutput are identical)" + annotation (Dialog(tab="Sensor", group="Initialization")); + parameter Modelica.Media.Interfaces.Types.Density d_start=Medium.density(Medium.setState_pTX( + senVolFlo.p_start, + senVolFlo.T_start, + senVolFlo.X_start)) "Initial or guess value of density" annotation (Dialog(tab="Sensor", group="Initialization")); + + // Table parameters + parameter Modelica.Blocks.Types.Smoothness smoothness=Modelica.Blocks.Types.Smoothness.LinearSegments + "Smoothness of table interpolation" + annotation (Dialog(tab="Curve / Table", group="Table data interpretation")); + parameter Boolean verboseExtrapolation=false + "= true, if warning messages are to be printed if table input is outside the definition range" + annotation (Dialog(tab="Curve / Table", group="Table data interpretation")); + + Modelica.Blocks.Interfaces.RealInput dpMea( + final quantity="PressureDifference", + final displayUnit="Pa", + final unit="Pa")=gain.u if prescribeSystemPressure + "Measurement of pressure difference between two points where the set point should be obtained" + annotation (Placement(transformation( + extent={{20,-20},{-20,20}}, + rotation=90, + origin={-20,120}))); + + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a heatPort + "Heat dissipation to environment" + annotation (Placement(transformation(extent={{-10,-110},{10,-90}}))); + + AixLib.Fluid.Sensors.VolumeFlowRate senVolFlo( + redeclare final package Medium = Medium, + final allowFlowReversal=allowFlowReversal, + final m_flow_nominal=m_flow_nominal, + final m_flow_small=m_flow_small, + final tau=tauSen, + final initType=initType, + final d_start=d_start, + final T_start=T_start, + final p_start=p_start, + final X_start=X_start) + "Sensor to measure volume flow rate" + annotation (Placement(transformation(extent={{-80,-10},{-60,10}}))); + + Modelica.Blocks.Tables.CombiTable1Dv pressureCurveSelected( + final tableOnFile=false, + final table=if (ctrlType == AixLib.Fluid.Movers.DpControlledMovers.Types.CtrlType.dpConst) + then [cat(1, pressureCurve_dpConst.V_flow),cat(1, + pressureCurve_dpConst.dp)] elseif (ctrlType == AixLib.Fluid.Movers.DpControlledMovers.Types.CtrlType.dpVar) + then [cat(1, pressureCurve_dpVar.V_flow),cat(1, pressureCurve_dpVar.dp)] + else [cat(1, per.pressure.V_flow),cat(1, per.pressure.dp)], + final tableName="NoName", + final fileName="NoName", + final verboseRead=true, + final columns=2:size(pressureCurveSelected.table, 2), + final smoothness=smoothness, + final extrapolation=Modelica.Blocks.Types.Extrapolation.HoldLastPoint, + u(each final unit="m3/s"), + y(each final unit="Pa"), + final verboseExtrapolation=verboseExtrapolation) + "Table with points of selected curve to calculate dp from V_flow" + annotation (Placement(transformation(extent={{-50,30},{-30,50}}))); + + AixLib.Fluid.Movers.FlowControlled_dp mov( + redeclare final package Medium = Medium, + final energyDynamics=energyDynamics, + final p_start=p_start, + final T_start=T_start, + final X_start=X_start, + final C_start=C_start, + final C_nominal=C_nominal, + final allowFlowReversal=allowFlowReversal, + final m_flow_nominal=m_flow_nominal, + final m_flow_small=m_flow_small, + final show_T=false, + final per=per, + final inputType=AixLib.Fluid.Types.InputType.Continuous, + final addPowerToMedium=addPowerToMedium, + final nominalValuesDefineDefaultPressureCurve=nominalValuesDefineDefaultPressureCurve, + final tau=tauMov, + final use_inputFilter=use_inputFilter, + final riseTime=riseTime, + final init=init, + final dp_start=dp_start, + final dp_nominal=dp_nominal, + final constantHead=dp_nominal, + final heads=dp_nominal*{(per.speeds[i]/per.speeds[end])^2 for i in 1:size(per.speeds, 1)}, + final prescribeSystemPressure=prescribeSystemPressure) + "Mover: pump or fan" + annotation (Placement(transformation(extent={{-10,-10},{10,10}}))); + + Modelica.Blocks.Interfaces.RealOutput P(final quantity="Power", final unit="W") + "Electrical power consumed" + annotation (Placement(transformation(extent={{100,70},{120,90}}), iconTransformation(extent={{100,80},{120,100}}))); + Modelica.Blocks.Interfaces.RealOutput y_actual(final unit="1") + "Actual normalised pump speed that is used for computations" + annotation (Placement(transformation(extent={{100,50},{120,70}}), iconTransformation(extent={{100,60},{120,80}}))); + Modelica.Blocks.Interfaces.RealOutput dp_actual(final unit="Pa") + "Pressure difference between the mover inlet and outlet" + annotation (Placement(transformation(extent={{100,30},{120,50}}), iconTransformation(extent={{100,40},{120,60}}))); + +protected + final parameter Modelica.Units.SI.Density rho_default=Medium.density_pTX( + p=Medium.p_default, + T=Medium.T_default, + X=Medium.X_default) "Default medium density"; + final parameter Medium.ThermodynamicState sta_start=Medium.setState_pTX( + T=T_start, + p=p_start, + X=X_start) + "Medium state at start values"; + + final parameter Modelica.Units.SI.SpecificEnthalpy h_outflow_start= + Medium.specificEnthalpy(sta_start) "Start value for outflowing enthalpy"; + + final parameter Modelica.Units.SI.VolumeFlowRate V_flow_min=min(min( + pressureCurve_default.V_flow), min(min(pressureCurve_dpConst.V_flow), min( + pressureCurve_dpVar.V_flow))) "Get minimum of three vectors"; + final parameter Modelica.Units.SI.VolumeFlowRate V_flow_max=max(max( + pressureCurve_default.V_flow), max(max(pressureCurve_dpConst.V_flow), max( + pressureCurve_dpVar.V_flow))) "Get maximum of three vectors"; + + constant Integer n_sup_pts = 100 + "Supporting points"; + final parameter Modelica.Units.SI.PressureDifference dps_default[:]=array( + Modelica.Math.Vectors.interpolate( + pressureCurve_default.V_flow, + pressureCurve_default.dp, + Vi) for Vi in V_flow_min:(V_flow_max - V_flow_min)/n_sup_pts:V_flow_max) + "Vector (equally spaced) with pressure heads (default curve) on the basis of n_sup_pts supporting points"; + final parameter Modelica.Units.SI.PressureDifference dps_dpConst[:]=array( + Modelica.Math.Vectors.interpolate( + pressureCurve_dpConst.V_flow, + pressureCurve_dpConst.dp, + Vi) for Vi in V_flow_min:(V_flow_max - V_flow_min)/n_sup_pts:V_flow_max) + "Vector (equally spaced) with pressure heads (dpConst curve) on the basis of n_sup_pts supporting points"; + final parameter Modelica.Units.SI.PressureDifference dps_dpVar[:]=array( + Modelica.Math.Vectors.interpolate( + pressureCurve_dpVar.V_flow, + pressureCurve_dpVar.dp, + Vi) for Vi in V_flow_min:(V_flow_max - V_flow_min)/n_sup_pts:V_flow_max) + "Vector (equally spaced) with pressure heads (dpVar curve) on the basis of n_sup_pts supporting points"; + + function checkDpCurves + input Modelica.Units.SI.PressureDifference dps_default[:] + "Reference vector containing pressure head points"; + input Modelica.Units.SI.PressureDifference dps_other[:] + "Comparing vector containing pressure head points"; + input Integer n_sup_pts(min=2) "Supporting points"; + output Boolean dps_error "Use a boolean to avoid multiple assertion errors to be printed"; + algorithm + dps_error := false; + for i in 1:1:n_sup_pts loop + if dps_error == false and dps_other[i]<=dps_default[i] then + dps_error :=false; + else + dps_error :=true; + end if; + end for; + end checkDpCurves; + +initial equation + assert(pressureCurveSelected.n==1, + "\n+++++++++++++++++++++++++++++++++++++++++++\nNumber of outputs of table component "+getInstanceName()+".pressureCurveSelected must equal 1, but they are "+String(pressureCurveSelected.n)+".\n+++++++++++++++++++++++++++++++++++++++++++", + AssertionLevel.error); + assert(pressureCurveSelected.table[1, 1] == 0.0, + "\n+++++++++++++++++++++++++++++++++++++++++++\nParameterization error in component ("+getInstanceName()+".pressureCurveSelected):\nThe mover's (pump or fan) curve must have first point at V_flow = 0.0 m3/s.\n+++++++++++++++++++++++++++++++++++++++++++", + AssertionLevel.error); + assert(pressureCurveSelected.table[size(pressureCurveSelected.table, 1), size(pressureCurveSelected.table, 2)] == 0.0, + "\n+++++++++++++++++++++++++++++++++++++++++++\nParameterization error in component ("+getInstanceName()+".pressureCurveSelected):\nThe mover's (pump or fan) curve must have last point at dp = 0.0 Pa.\n+++++++++++++++++++++++++++++++++++++++++++", + AssertionLevel.error); + // Check on the basis of n supporting points if both controlled curves are correct parametrized so that they lie below the default curve. + assert(checkDpCurves(dps_default, dps_dpConst, n_sup_pts)==false, + "\n+++++++++++++++++++++++++++++++++++++++++++\nParameterization error in component ("+getInstanceName()+".pressureCurve_dpConst):\nThe dp values of the curve must be less or equal the default/total mover's curve.\n+++++++++++++++++++++++++++++++++++++++++++", + AssertionLevel.error); + assert(checkDpCurves(dps_default, dps_dpVar, n_sup_pts)==false, + "\n+++++++++++++++++++++++++++++++++++++++++++\nParameterization error in component ("+getInstanceName()+".pressureCurve_dpVar):\nThe dp values of the curve must be less or equal the default/total mover's curve.\n+++++++++++++++++++++++++++++++++++++++++++", + AssertionLevel.error); + +equation + connect(mov.port_b, port_b) annotation (Line(points={{10,0},{100,0}}, color={0,127,255})); + connect(port_a, senVolFlo.port_a) annotation (Line(points={{-100,0},{-80,0}}, color={0,127,255})); + connect(senVolFlo.port_b, mov.port_a) annotation (Line(points={{-60,0},{-10,0}}, color={0,127,255})); + connect(senVolFlo.V_flow, pressureCurveSelected.u[1]) annotation (Line(points={{-70,11},{-70,40},{-52,40}}, color={0,0,127})); + connect(dpMea, mov.dpMea) annotation (Line(points={{-20,120},{-20,80},{-8,80},{-8,12}},color={0,0,127},pattern=LinePattern.Dash)); + connect(mov.heatPort, heatPort) annotation (Line(points={{0,-6.8},{0,-100}}, color={191,0,0})); + connect(mov.P, P) annotation (Line(points={{11,9},{80,9},{80,80},{110,80}}, color={0,0,127})); + connect(mov.y_actual, y_actual) annotation (Line(points={{11,7},{82,7},{82,60},{110,60}}, color={0,0,127})); + connect(mov.dp_actual, dp_actual) annotation (Line(points={{11,5},{84,5},{84,40},{110,40}}, color={0,0,127})); + connect(pressureCurveSelected.y[1], mov.dp_in) annotation (Line(points={{-29,40},{0,40},{0,12}}, color={0,0,127})); + annotation (Icon(coordinateSystem(preserveAspectRatio=false), graphics={ + Rectangle( + extent={{-94,100},{-42,48}}, + lineColor={0,0,0}, + lineThickness=0.5, + fillColor={255,255,255}, + fillPattern=FillPattern.Solid, + pattern=LinePattern.None), + Line( + points={{0,90},{100,90}}, + color={0,0,0}, + smooth=Smooth.None), + Line( + points={{0,70},{100,70}}, + color={0,0,0}, + smooth=Smooth.None), + Line( + points={{0,50},{100,50}}, + color={0,0,0}, + smooth=Smooth.None), + Rectangle( + extent={{-100,16},{100,-16}}, + lineColor={0,0,0}, + fillColor={0,127,255}, + fillPattern=FillPattern.HorizontalCylinder), + Ellipse( + extent={{-58,58},{58,-58}}, + lineColor={0,0,0}, + fillPattern=FillPattern.Sphere, + fillColor={0,100,199}), + Polygon( + points={{0,50},{0,-50},{54,0},{0,50}}, + lineColor={0,0,0}, + pattern=LinePattern.None, + fillPattern=FillPattern.HorizontalCylinder, + fillColor={255,255,255}), + Ellipse( + extent={{4,16},{36,-16}}, + lineColor={0,0,0}, + fillPattern=FillPattern.Sphere, + visible=energyDynamics <> Modelica.Fluid.Types.Dynamics.SteadyState, + fillColor={0,100,199}), + Line( + points={{0,100},{0,50}}, + color={0,0,0}, + smooth=Smooth.None), + Rectangle( + visible=use_inputFilter, + extent={{-32,40},{34,100}}, + lineColor={0,0,0}, + fillColor={135,135,135}, + fillPattern=FillPattern.Solid), + Ellipse( + visible=use_inputFilter, + extent={{-32,100},{34,40}}, + lineColor={0,0,0}, + fillColor={135,135,135}, + fillPattern=FillPattern.Solid), + Text( + visible=use_inputFilter, + extent={{-20,92},{22,46}}, + lineColor={0,0,0}, + fillColor={135,135,135}, + fillPattern=FillPattern.Solid, + textString="M", + textStyle={TextStyle.Bold}), + Line( + points={{-94,48},{-94,96}}, + color={0,0,0}, + thickness=0.5), + Line( + points={{-1,-24},{-1,24}}, + color={0,0,0}, + thickness=0.5, + origin={-70,49}, + rotation=90), + Polygon( + points={{-96,96},{-92,96},{-94,100},{-96,96}}, + lineColor={0,0,0}, + lineThickness=0.5, + fillColor={0,0,0}, + fillPattern=FillPattern.Solid), + Polygon( + points={{-2,-2},{2,-2},{0,2},{-2,-2}}, + lineColor={0,0,0}, + lineThickness=0.5, + fillColor={0,0,0}, + fillPattern=FillPattern.Solid, + origin={-44,48}, + rotation=270), + Line( + points={{-94,92},{-68,84},{-56,74},{-48,48}}, + color={0,0,0}, + thickness=0.5), + Line( + points={{-94,84},{-68,84},{-56,74},{-48,48}}, + color={255,0,0}, + thickness=0.5, + pattern=LinePattern.Dash, + visible=ctrlType==AixLib.Fluid.Movers.DpControlledMovers.Types.CtrlType.dpConst), + Line( + points={{-94,66},{-68,84},{-56,74},{-48,48}}, + color={73,175,36}, + thickness=0.5, + pattern=LinePattern.Dash, + visible=ctrlType==AixLib.Fluid.Movers.DpControlledMovers.Types.CtrlType.dpVar)}), Diagram( + coordinateSystem(preserveAspectRatio=false)), + preferredView="info", + defaultComponentName="pum", + Documentation(info="

                                    + This model represents a pump or fan which includes already a + controller. Be aware that this model does not only represent + the physical behavior of an HVAC component but also controls this + HVAC component. +

                                    +

                                    + In addition to the standard characteristic curve (should equal + per.pressure), the + controller is able to store two further characteristic/control + curves. This enables the user to quickly select between the two + common control modes constant pressure (dpConst) and + variable pressure (dpVar). The common + control modes of pumps are concisely explained in the referenced + white paper [1]. +

                                    +

                                    + Often, the AixLib.Fluid.Movers.FlowControlled_dp. + This means no speed control is possible. Please use AixLib.Fluid.Movers.SpeedControlled_y + for this application. +

                                    +

                                    + The model has a standard parametrization for the three curves basing + on the parameter m_flow_nominal and + dp_nominal. See + the figure and table below. +

                                    +

                                    + +

                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                    +

                                    + m_flow +

                                    +
                                    +

                                    + dp_total +

                                    +
                                    +

                                    + dp_constCtrl +

                                    +
                                    +

                                    + dp_varCtrl +

                                    +
                                    +

                                    + 0 +

                                    +
                                    +

                                    + 1.3 +

                                    +
                                    +

                                    + 1 +

                                    +
                                    +

                                    + 0.5 +

                                    +
                                    +

                                    + 1 +

                                    +
                                    +

                                    + 1 +

                                    +
                                    +

                                    + 1 +

                                    +
                                    +

                                    + 1 +

                                    +
                                    +

                                    + 1.5 +

                                    +
                                    +

                                    + 0.75 +

                                    +
                                    +

                                    + 0.75 +

                                    +
                                    +

                                    + 0.75 +

                                    +
                                    +

                                    + 2 +

                                    +
                                    +

                                    + 0 +

                                    +
                                    +

                                    + 0 +

                                    +
                                    +

                                    + 0 +

                                    +
                                    +

                                    + References +

                                    +

                                    + [1] Robinson, Reece. 2019. Pumping Control Methods and Their Impact + on System Effciency. + Link to PDF. +

                                    +", revisions=" +
                                      +
                                    • October 28, 2021, by Philipp Mehrfeld:
                                      + #1151 + Added model to library. +
                                    • +
                                    +")); +end DpControlled_dp; diff --git a/AixLib/Fluid/Movers/DpControlledMovers/Examples/DpControlled_dpConst.mo b/AixLib/Fluid/Movers/DpControlledMovers/Examples/DpControlled_dpConst.mo new file mode 100644 index 0000000000..4b0c467c3b --- /dev/null +++ b/AixLib/Fluid/Movers/DpControlledMovers/Examples/DpControlled_dpConst.mo @@ -0,0 +1,76 @@ +within AixLib.Fluid.Movers.DpControlledMovers.Examples; +model DpControlled_dpConst + extends Modelica.Icons.Example; + package Medium = AixLib.Media.Water "Medium model"; + + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=1.0 + "Nominal mass flow rate"; + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal_max=2*m_flow_nominal + "To describe max point of mover's characteristic curve."; + parameter Modelica.Units.SI.PressureDifference dp_nominal=100000 "Nominal pressure raise, used to normalized the filter if use_inputFilter=true, + to set default values of constantHead and heads, and + and for default pressure curve if not specified in record per"; + + AixLib.Fluid.Sources.Boundary_pT sou( + redeclare package Medium = Medium, + use_p_in=false, + p=101325, + T=293.15, + nPorts=1) annotation (Placement(transformation(extent={{-96,-10},{-76,10}}))); + + AixLib.Fluid.Actuators.Valves.TwoWayLinear val( + redeclare package Medium = Medium, + from_dp=true, + m_flow_nominal=m_flow_nominal_max, + dpValve_nominal=0.5*dp_nominal, + y_start=rampValve.offset) + "Pressure drop" + annotation (Placement(transformation(extent={{22,-10},{42,10}}))); + AixLib.Fluid.Sensors.MassFlowRate masFloRat(redeclare package Medium = Medium) annotation (Placement(transformation(extent={{60,-10},{80,10}}))); + AixLib.Fluid.Movers.DpControlledMovers.DpControlled_dp dpControlled_dp( + redeclare package Medium = Medium, + m_flow_nominal=m_flow_nominal, + energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyState, + redeclare Data.Generic per(pressure=dpControlled_dp.pressureCurve_default, motorCooledByFluid=false), + dp_nominal=dp_nominal, + ctrlType=AixLib.Fluid.Movers.DpControlledMovers.Types.CtrlType.dpConst) + annotation (Placement(transformation(extent={{-20,-10},{0,10}}))); + AixLib.Fluid.FixedResistances.PressureDrop dp( + m_flow_nominal=m_flow_nominal_max, + redeclare package Medium = Medium, + dp_nominal=0.5*dp_nominal, + from_dp=true) "Pressure drop" annotation (Placement(transformation(extent={{-52,-10},{-32,10}}))); + + Modelica.Blocks.Sources.Ramp rampValve( + height=1, + duration=1800, + offset=0, + startTime=900) annotation (Placement(transformation(extent={{62,30},{42,50}}))); + AixLib.Fluid.Delays.DelayFirstOrder vol( + redeclare package Medium = Medium, + m_flow_nominal=m_flow_nominal_max, + nPorts=2) annotation (Placement(transformation(extent={{-10,-50},{10,-30}}))); + Modelica.Thermal.HeatTransfer.Sources.FixedTemperature fixedTemperature(T=293.15) annotation (Placement(transformation(extent={{-36,-48},{-20,-32}}))); + + Modelica.Blocks.Continuous.Integrator integrator(u(final quantity="Power", final unit="W"), y(final quantity="Energy", final unit="J", final displayUnit="kW.h")) annotation (Placement(transformation(extent={{40,60},{60,80}}))); + Modelica.Blocks.Interfaces.RealOutput elEnergy(final quantity="Energy", final unit="J", final displayUnit="kW.h") "Cumulated electrical power" annotation (Placement(transformation(extent={{100,60},{120,80}}))); +equation + + connect(dpControlled_dp.port_b,val. port_a) annotation (Line(points={{0,0},{22,0}}, color={0,127,255})); + connect(dp.port_b, dpControlled_dp.port_a) annotation (Line(points={{-32,0},{-20,0}}, color={0,127,255})); + connect(val.port_b, masFloRat.port_a) annotation (Line(points={{42,0},{60,0}}, color={0,127,255})); + connect(sou.ports[1], dp.port_a) annotation (Line(points={{-76,0},{-52,0}}, color={0,127,255})); + connect(rampValve.y,val. y) annotation (Line(points={{41,40},{32,40},{32,12}}, color={0,0,127})); + connect(masFloRat.port_b, vol.ports[1]) annotation (Line(points={{80,0},{88,0},{88,-60},{-2,-60},{-2,-50}},color={0,127,255})); + connect(vol.ports[2], dp.port_a) annotation (Line(points={{2,-50},{2,-60},{-60,-60},{-60,0},{-52,0}}, color={0,127,255})); + connect(fixedTemperature.port, vol.heatPort) annotation (Line(points={{-20,-40},{-10,-40}}, + color={191,0,0})); + connect(dpControlled_dp.P, integrator.u) annotation (Line(points={{1,9},{8,9},{8,70},{38,70}}, color={0,0,127})); + connect(integrator.y, elEnergy) annotation (Line(points={{61,70},{110,70}}, color={0,0,127})); + annotation ( + __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Movers/DpControlledMovers/Examples/DpControlled_dpConst.mos" + "Simulate and plot"), + experiment( + StopTime=3600, + Tolerance=1e-06)); +end DpControlled_dpConst; diff --git a/AixLib/Fluid/Movers/DpControlledMovers/Examples/DpControlled_dpVar.mo b/AixLib/Fluid/Movers/DpControlledMovers/Examples/DpControlled_dpVar.mo new file mode 100644 index 0000000000..22a74be94f --- /dev/null +++ b/AixLib/Fluid/Movers/DpControlledMovers/Examples/DpControlled_dpVar.mo @@ -0,0 +1,10 @@ +within AixLib.Fluid.Movers.DpControlledMovers.Examples; +model DpControlled_dpVar + extends DpControlled_dpConst(dpControlled_dp(ctrlType=AixLib.Fluid.Movers.DpControlledMovers.Types.CtrlType.dpVar)); + annotation ( + __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Movers/DpControlledMovers/Examples/DpControlled_dpVar.mos" + "Simulate and plot"), + experiment( + StopTime=3600, + Tolerance=1e-06)); +end DpControlled_dpVar; diff --git a/AixLib/Fluid/Movers/DpControlledMovers/Examples/package.mo b/AixLib/Fluid/Movers/DpControlledMovers/Examples/package.mo new file mode 100644 index 0000000000..67ce070045 --- /dev/null +++ b/AixLib/Fluid/Movers/DpControlledMovers/Examples/package.mo @@ -0,0 +1,4 @@ +within AixLib.Fluid.Movers.DpControlledMovers; +package Examples +extends Modelica.Icons.ExamplesPackage; +end Examples; diff --git a/AixLib/Fluid/Movers/DpControlledMovers/Examples/package.order b/AixLib/Fluid/Movers/DpControlledMovers/Examples/package.order new file mode 100644 index 0000000000..380a5ad3d2 --- /dev/null +++ b/AixLib/Fluid/Movers/DpControlledMovers/Examples/package.order @@ -0,0 +1,2 @@ +DpControlled_dpConst +DpControlled_dpVar diff --git a/AixLib/Fluid/Movers/DpControlledMovers/Types/CtrlType.mo b/AixLib/Fluid/Movers/DpControlledMovers/Types/CtrlType.mo new file mode 100644 index 0000000000..fdc8b9849f --- /dev/null +++ b/AixLib/Fluid/Movers/DpControlledMovers/Types/CtrlType.mo @@ -0,0 +1,8 @@ +within AixLib.Fluid.Movers.DpControlledMovers.Types; +type CtrlType = enumeration( + dpConst + "Constant pressure / head control", + dpVar + "Variable pressure / head control", + dpTotal + "Limit only due mover's characteristic curve"); diff --git a/AixLib/Fluid/Movers/DpControlledMovers/Types/package.mo b/AixLib/Fluid/Movers/DpControlledMovers/Types/package.mo new file mode 100644 index 0000000000..d3f080a385 --- /dev/null +++ b/AixLib/Fluid/Movers/DpControlledMovers/Types/package.mo @@ -0,0 +1,6 @@ +within AixLib.Fluid.Movers.DpControlledMovers; +package Types + + extends Modelica.Icons.BasesPackage; + +end Types; diff --git a/AixLib/Fluid/Movers/DpControlledMovers/Types/package.order b/AixLib/Fluid/Movers/DpControlledMovers/Types/package.order new file mode 100644 index 0000000000..4c3d70b822 --- /dev/null +++ b/AixLib/Fluid/Movers/DpControlledMovers/Types/package.order @@ -0,0 +1 @@ +CtrlType diff --git a/AixLib/Fluid/Movers/DpControlledMovers/package.mo b/AixLib/Fluid/Movers/DpControlledMovers/package.mo new file mode 100644 index 0000000000..fa3404e60c --- /dev/null +++ b/AixLib/Fluid/Movers/DpControlledMovers/package.mo @@ -0,0 +1,3 @@ +within AixLib.Fluid.Movers; +package DpControlledMovers +end DpControlledMovers; diff --git a/AixLib/Fluid/Movers/DpControlledMovers/package.order b/AixLib/Fluid/Movers/DpControlledMovers/package.order new file mode 100644 index 0000000000..7c052f0d4c --- /dev/null +++ b/AixLib/Fluid/Movers/DpControlledMovers/package.order @@ -0,0 +1,3 @@ +DpControlled_dp +Types +Examples diff --git a/AixLib/Fluid/Movers/Examples/ClosedLoop_y.mo b/AixLib/Fluid/Movers/Examples/ClosedLoop_y.mo index 9d6a1d9069..8e7777ede0 100644 --- a/AixLib/Fluid/Movers/Examples/ClosedLoop_y.mo +++ b/AixLib/Fluid/Movers/Examples/ClosedLoop_y.mo @@ -4,9 +4,9 @@ model ClosedLoop_y "Flow machine with feedback control" package Medium = AixLib.Media.Air; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal= 0.1 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=0.1 "Nominal mass flow rate"; - parameter Modelica.SIunits.PressureDifference dp_nominal = 500 + parameter Modelica.Units.SI.PressureDifference dp_nominal=500 "Nominal pressure difference"; Modelica.Blocks.Sources.Pulse y( @@ -78,27 +78,28 @@ equation Diagram(coordinateSystem(preserveAspectRatio=true, extent={{-100,-100},{160, 160}})), Documentation(info=" -

                                    -This example demonstrates the use of a fan with closed loop control. -The fan is controlled to track a required mass flow rate. -

                                    -", revisions=" -
                                      -
                                    • -January 22, 2016, by Michael Wetter:
                                      -Corrected type declaration of pressure difference. -This is -for #404. -
                                    • -
                                    • -February 14, 2012, by Michael Wetter:
                                      -First implementation. -
                                    • -
                                    -"), +

                                    + This example demonstrates the use of a fan with closed loop control. + The fan is controlled to track a required mass flow rate. +

                                    + ",revisions=" +
                                      +
                                    • + January 22, 2016, by Michael Wetter:
                                      + Corrected type declaration of pressure difference. + This is + for #404. +
                                    • +
                                    • + February 14, 2012, by Michael Wetter:
                                      + First implementation. +
                                    • +
                                    + "), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Movers/Examples/ClosedLoop_y.mos" "Simulate and plot"), experiment( StopTime=3600, - Tolerance=1e-06)); + Tolerance=1e-06), + __Dymola_LockedEditing="Model from IBPSA"); end ClosedLoop_y; diff --git a/AixLib/Fluid/Movers/Examples/MoverContinuous.mo b/AixLib/Fluid/Movers/Examples/MoverContinuous.mo index e2f9ed73bc..f5028e48dd 100644 --- a/AixLib/Fluid/Movers/Examples/MoverContinuous.mo +++ b/AixLib/Fluid/Movers/Examples/MoverContinuous.mo @@ -32,20 +32,21 @@ equation -20},{-50,70},{-59,70}}, color={0,0,127})); annotation ( Documentation(info=" -

                                    -This example demonstrates the use of a RealInput -connector for a mover model. -

                                    -", revisions=" -
                                      -
                                    • -August 24, 2015, by Filip Jorissen:
                                      -First implementation. -
                                    • -
                                    -"), +

                                    + This example demonstrates the use of a RealInput + connector for a mover model. +

                                    + ",revisions=" +
                                      +
                                    • + August 24, 2015, by Filip Jorissen:
                                      + First implementation. +
                                    • +
                                    + "), experiment(Tolerance=1e-06, StopTime=1), __Dymola_Commands(file= "modelica://AixLib/Resources/Scripts/Dymola/Fluid/Movers/Examples/MoverContinuous.mos" - "Simulate and plot")); + "Simulate and plot"), + __Dymola_LockedEditing="Model from IBPSA"); end MoverContinuous; diff --git a/AixLib/Fluid/Movers/Examples/MoverParameter.mo b/AixLib/Fluid/Movers/Examples/MoverParameter.mo index 04efde2150..64a1beca6b 100644 --- a/AixLib/Fluid/Movers/Examples/MoverParameter.mo +++ b/AixLib/Fluid/Movers/Examples/MoverParameter.mo @@ -4,7 +4,7 @@ model MoverParameter extends Modelica.Icons.Example; package Medium = AixLib.Media.Water; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal=2 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=2 "Nominal mass flow rate"; FlowControlled_m_flow pump_m_flow( @@ -60,7 +60,7 @@ model MoverParameter energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyState) "Pump with speed input" annotation (Placement(transformation(extent={{-10,30},{10,50}}))); - parameter Modelica.SIunits.PressureDifference dp_nominal=10000 + parameter Modelica.Units.SI.PressureDifference dp_nominal=10000 "Nominal pressure raise"; equation connect(sou.ports[1], pump_m_flow.port_a) annotation (Line( @@ -90,28 +90,29 @@ equation "modelica://AixLib/Resources/Scripts/Dymola/Fluid/Movers/Examples/MoverParameter.mos" "Simulate and plot"), Documentation(info=" -

                                    -This example demonstrates the use of a Parameter -set point for a mover model. -

                                    -", revisions=" -
                                      -
                                    • -February 17, 2016, by Michael Wetter:
                                      -Updated parameter names for -#396. -
                                    • -
                                    • -January 22, 2016, by Michael Wetter:
                                      -Corrected type declaration of pressure difference. -This is -for #404. -
                                    • -
                                    • -August 24, 2015, by Filip Jorissen:
                                      -First implementation. -
                                    • -
                                    -"), - experiment(Tolerance=1e-06, StopTime=1)); +

                                    + This example demonstrates the use of a Parameter + set point for a mover model. +

                                    + ",revisions=" +
                                      +
                                    • + February 17, 2016, by Michael Wetter:
                                      + Updated parameter names for + #396. +
                                    • +
                                    • + January 22, 2016, by Michael Wetter:
                                      + Corrected type declaration of pressure difference. + This is + for #404. +
                                    • +
                                    • + August 24, 2015, by Filip Jorissen:
                                      + First implementation. +
                                    • +
                                    + "), + experiment(Tolerance=1e-06, StopTime=1), + __Dymola_LockedEditing="Model from IBPSA"); end MoverParameter; diff --git a/AixLib/Fluid/Movers/Examples/MoverStages.mo b/AixLib/Fluid/Movers/Examples/MoverStages.mo index 11ef5719ac..a62d4e5671 100644 --- a/AixLib/Fluid/Movers/Examples/MoverStages.mo +++ b/AixLib/Fluid/Movers/Examples/MoverStages.mo @@ -8,13 +8,14 @@ model MoverStages pump_dp(inputType=AixLib.Fluid.Types.InputType.Stages)); package Medium = AixLib.Media.Water; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal=2 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=2 "Nominal mass flow rate"; Modelica.Blocks.Sources.IntegerTable integerTable(table=[0,1; 0.3,2; 0.6,3]) "Integer step input, 1 is off, 2 is on" annotation (Placement(transformation(extent={{-60,70},{-40,90}}))); - parameter Modelica.SIunits.PressureDifference dp_nominal=10000 "Nominal pressure raise"; + parameter Modelica.Units.SI.PressureDifference dp_nominal=10000 + "Nominal pressure raise"; equation connect(integerTable.y, pump_Nrpm.stage) annotation (Line(points={{-39,80},{0,80},{0,52}}, color={255,127,0})); @@ -32,29 +33,30 @@ equation "modelica://AixLib/Resources/Scripts/Dymola/Fluid/Movers/Examples/MoverStages.mos" "Simulate and plot"), Documentation(info=" -

                                    -This example demonstrates the use of the Integer -stage connector for a mover model. -Note that integer input 1 refers to the first stage, whereas -input 0 switches the mover off. -

                                    -", revisions=" -
                                      -
                                    • -January 22, 2016, by Michael Wetter:
                                      -Corrected type declaration of pressure difference. -This is -for #404. -
                                    • -
                                    • -August 24, 2015, by Filip Jorissen:
                                      -Extended implementation with more movers. -
                                    • -
                                    • -April 2, 2015, by Filip Jorissen:
                                      -First implementation. -
                                    • -
                                    -"), - experiment(Tolerance=1e-06, StopTime=1)); +

                                    + This example demonstrates the use of the Integer + stage connector for a mover model. + Note that integer input 1 refers to the first stage, whereas + input 0 switches the mover off. +

                                    + ",revisions=" +
                                      +
                                    • + January 22, 2016, by Michael Wetter:
                                      + Corrected type declaration of pressure difference. + This is + for #404. +
                                    • +
                                    • + August 24, 2015, by Filip Jorissen:
                                      + Extended implementation with more movers. +
                                    • +
                                    • + April 2, 2015, by Filip Jorissen:
                                      + First implementation. +
                                    • +
                                    + "), + experiment(Tolerance=1e-06, StopTime=1), + __Dymola_LockedEditing="Model from IBPSA"); end MoverStages; diff --git a/AixLib/Fluid/Movers/Examples/PumpsParallel.mo b/AixLib/Fluid/Movers/Examples/PumpsParallel.mo index 3149db9945..48965fb194 100644 --- a/AixLib/Fluid/Movers/Examples/PumpsParallel.mo +++ b/AixLib/Fluid/Movers/Examples/PumpsParallel.mo @@ -4,10 +4,10 @@ model PumpsParallel "Two flow machines in parallel" package Medium = AixLib.Media.Water "Medium model"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal= 1 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=1 "Nominal mass flow rate"; - parameter Modelica.SIunits.Density rho_nominal=1000 + parameter Modelica.Units.SI.Density rho_nominal=1000 "Density, used to compute fluid mass"; AixLib.Fluid.FixedResistances.PressureDrop dpIn1( @@ -116,38 +116,39 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Movers/Examples/PumpsParallel.mos" "Simulate and plot"), Documentation(info=" -This example tests the configuration of two flow machines that are installed in parallel. -Both flow machines start with full speed. -At t=150 second, the speed of the flow machine on the top is reduced to zero. -As its speed is reduced, the mass flow rate changes its direction in such a way that the flow machine -at the top has reverse flow. -", revisions=" -
                                      -
                                    • February 20, 2016, by Ruben Baetens:
                                      -Removal of dynamicBalance as parameter for massDynamics and energyDynamics. -
                                    • -
                                    • -April 2, 2015, by Filip Jorissen:
                                      -Set constant speed for pump using a parameter -instead of a realInput. -
                                    • -
                                    • -May 29, 2014, by Michael Wetter:
                                      -Removed undesirable annotation Evaluate=true, -and set rho_nominal to a constant to avoid a non-literal -nominal value for V_flow_max and VMachine_flow. -
                                    • -
                                    • -February 14, 2012, by Michael Wetter:
                                      -Added filter for start-up and shut-down transient. -
                                    • -
                                    • -March 24 2010, by Michael Wetter:
                                      -First implementation. -
                                    • -
                                    -"), + This example tests the configuration of two flow machines that are installed in parallel. + Both flow machines start with full speed. + At t=150 second, the speed of the flow machine on the top is reduced to zero. + As its speed is reduced, the mass flow rate changes its direction in such a way that the flow machine + at the top has reverse flow. + ",revisions=" +
                                      +
                                    • February 20, 2016, by Ruben Baetens:
                                      + Removal of dynamicBalance as parameter for massDynamics and energyDynamics. +
                                    • +
                                    • + April 2, 2015, by Filip Jorissen:
                                      + Set constant speed for pump using a parameter + instead of a realInput. +
                                    • +
                                    • + May 29, 2014, by Michael Wetter:
                                      + Removed undesirable annotation Evaluate=true, + and set rho_nominal to a constant to avoid a non-literal + nominal value for V_flow_max and VMachine_flow. +
                                    • +
                                    • + February 14, 2012, by Michael Wetter:
                                      + Added filter for start-up and shut-down transient. +
                                    • +
                                    • + March 24 2010, by Michael Wetter:
                                      + First implementation. +
                                    • +
                                    + "), experiment( StopTime=300, - Tolerance=1e-06)); + Tolerance=1e-06), + __Dymola_LockedEditing="Model from IBPSA"); end PumpsParallel; diff --git a/AixLib/Fluid/Movers/Examples/PumpsSeries.mo b/AixLib/Fluid/Movers/Examples/PumpsSeries.mo index ff09c9d27a..485413ef62 100644 --- a/AixLib/Fluid/Movers/Examples/PumpsSeries.mo +++ b/AixLib/Fluid/Movers/Examples/PumpsSeries.mo @@ -3,7 +3,7 @@ model PumpsSeries "Two flow machines in series" extends Modelica.Icons.Example; package Medium = AixLib.Media.Water; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal=1 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=1 "Nominal mass flow rate"; AixLib.Fluid.Movers.SpeedControlled_y floMac1( @@ -24,8 +24,8 @@ model PumpsSeries "Two flow machines in series" T=Medium.T_default, p=Medium.p_default, X=Medium.X_default) "Start state"; - parameter Modelica.SIunits.Density rho_nominal=Medium.density( - state_start) "Density, used to compute fluid mass"; + parameter Modelica.Units.SI.Density rho_nominal=Medium.density(state_start) + "Density, used to compute fluid mass"; AixLib.Fluid.Movers.SpeedControlled_y floMac2( redeclare package Medium = Medium, @@ -65,34 +65,35 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Movers/Examples/PumpsSeries.mos" "Simulate and plot"), Documentation(info=" -This example tests the configuration of two flow machines that are installed in series. -Both flow machines start with full speed. -At t=150 seconds, the speed of the flow machine on the left is reduced to zero. -As its speed is reduced, the mass flow rate is reduced. Note that even at zero input, the mass flow rate is non-zero, -but the pressure drop of the pump floMac1.dp is positive, which means that this pump has a flow resistance. -However, flowMac2.dp is always negative, as this pump has a constant control input of 1. -", revisions=" -
                                      -
                                    • -April 2, 2015, by Filip Jorissen:
                                      -Set constant speed for pump using a parameter -instead of a realInput. -
                                    • -
                                    • -May 29, 2014, by Michael Wetter:
                                      -Removed undesirable annotation Evaluate=true. -
                                    • -
                                    • -February 14, 2012, by Michael Wetter:
                                      -Added filter for start-up and shut-down transient. -
                                    • -
                                    • -March 24 2010, by Michael Wetter:
                                      -First implementation. -
                                    • -
                                    -"), + This example tests the configuration of two flow machines that are installed in series. + Both flow machines start with full speed. + At t=150 seconds, the speed of the flow machine on the left is reduced to zero. + As its speed is reduced, the mass flow rate is reduced. Note that even at zero input, the mass flow rate is non-zero, + but the pressure drop of the pump floMac1.dp is positive, which means that this pump has a flow resistance. + However, flowMac2.dp is always negative, as this pump has a constant control input of 1. + ",revisions=" +
                                      +
                                    • + April 2, 2015, by Filip Jorissen:
                                      + Set constant speed for pump using a parameter + instead of a realInput. +
                                    • +
                                    • + May 29, 2014, by Michael Wetter:
                                      + Removed undesirable annotation Evaluate=true. +
                                    • +
                                    • + February 14, 2012, by Michael Wetter:
                                      + Added filter for start-up and shut-down transient. +
                                    • +
                                    • + March 24 2010, by Michael Wetter:
                                      + First implementation. +
                                    • +
                                    + "), experiment( StopTime=300, - Tolerance=1e-06)); + Tolerance=1e-06), + __Dymola_LockedEditing="Model from IBPSA"); end PumpsSeries; diff --git a/AixLib/Fluid/Movers/Examples/SpeedControlled_y_pumpCurves.mo b/AixLib/Fluid/Movers/Examples/SpeedControlled_y_pumpCurves.mo index 18ffe33f73..ebea5f6ab5 100644 --- a/AixLib/Fluid/Movers/Examples/SpeedControlled_y_pumpCurves.mo +++ b/AixLib/Fluid/Movers/Examples/SpeedControlled_y_pumpCurves.mo @@ -6,11 +6,11 @@ model SpeedControlled_y_pumpCurves // For OpenModelica, changed m_flow_nominal to a constant. Otherwise // the translation fails with "Error: Cyclically dependent parameters found" - constant Modelica.SIunits.MassFlowRate m_flow_nominal = 0.5 + constant Modelica.Units.SI.MassFlowRate m_flow_nominal=0.5 "Nominal mass flow rate"; // For OpenModelica, changed dp_nominal to a constant. Otherwise // the compilation fails. - constant Modelica.SIunits.PressureDifference dp_nominal = 10000 + constant Modelica.Units.SI.PressureDifference dp_nominal=10000 "Nominal pressure"; model pumpModel = AixLib.Fluid.Movers.SpeedControlled_y ( @@ -162,40 +162,41 @@ experiment(Tolerance=1e-6, StopTime=1.0), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Movers/Examples/SpeedControlled_y_pumpCurves.mos" "Simulate and plot"), Documentation(info=" -

                                    -This example demonstrates how the pump curves changes for different (constant) input -signal y. -If y ≥ delta = 0.05, the pump curves are polynomials. -For y < delta = 0.05, the pump curves convert to linear functions to -avoid a singularity at the origin. -

                                    -", revisions=" -
                                      -
                                    • -December 2, 2016, by Michael Wetter:
                                      -Changed the valve opening signal to not take on zero as otherwise pum.port_a.p -is negative, violating the min attribute on the pressure variable.
                                      -This is for -#606. -
                                    • -
                                    • -March 11, 2016, by Michael Wetter:
                                      -Reformulated model for OpenModelica. -
                                    • -
                                    • -January 22, 2016, by Michael Wetter:
                                      -Corrected type declaration of pressure difference. -This is -for #404. -
                                    • -
                                    • -June 14, 2015, by Filip Jorissen:
                                      -Set constant speed for pump using a parameter -instead of a realInput. -
                                    • -
                                    • March 24 2010, by Michael Wetter:
                                      -First implementation. -
                                    • -
                                    -")); +

                                    + This example demonstrates how the pump curves changes for different (constant) input + signal y. + If y ≥ delta = 0.05, the pump curves are polynomials. + For y < delta = 0.05, the pump curves convert to linear functions to + avoid a singularity at the origin. +

                                    + ",revisions=" +
                                      +
                                    • + December 2, 2016, by Michael Wetter:
                                      + Changed the valve opening signal to not take on zero as otherwise pum.port_a.p + is negative, violating the min attribute on the pressure variable.
                                      + This is for + #606. +
                                    • +
                                    • + March 11, 2016, by Michael Wetter:
                                      + Reformulated model for OpenModelica. +
                                    • +
                                    • + January 22, 2016, by Michael Wetter:
                                      + Corrected type declaration of pressure difference. + This is + for #404. +
                                    • +
                                    • + June 14, 2015, by Filip Jorissen:
                                      + Set constant speed for pump using a parameter + instead of a realInput. +
                                    • +
                                    • March 24 2010, by Michael Wetter:
                                      + First implementation. +
                                    • +
                                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end SpeedControlled_y_pumpCurves; diff --git a/AixLib/Fluid/Movers/FlowControlled_dp.mo b/AixLib/Fluid/Movers/FlowControlled_dp.mo index 1d73a9ba51..fcb8254f2a 100644 --- a/AixLib/Fluid/Movers/FlowControlled_dp.mo +++ b/AixLib/Fluid/Movers/FlowControlled_dp.mo @@ -9,9 +9,10 @@ model FlowControlled_dp final constInput(final unit="Pa") = constantHead, filter( final y_start=dp_start, - u_nominal=abs(dp_nominal), u(final unit="Pa"), - y(final unit="Pa")), + y(final unit="Pa"), + x(each nominal=dp_nominal), + u_nominal=dp_nominal), eff( per( final pressure = if per.havePressureCurve then @@ -20,35 +21,35 @@ model FlowControlled_dp AixLib.Fluid.Movers.BaseClasses.Characteristics.flowParameters( V_flow = {i/(nOri-1)*2.0*m_flow_nominal/rho_default for i in 0:(nOri-1)}, dp = {i/(nOri-1)*2.0*dp_nominal for i in (nOri-1):-1:0}), - final use_powerCharacteristic = if per.havePressureCurve then per.use_powerCharacteristic else false))); + final use_powerCharacteristic = if per.havePressureCurve then per.use_powerCharacteristic else false), + r_N(start=if abs(dp_nominal) > 1E-8 then dp_start/dp_nominal else 0))); - parameter Modelica.SIunits.PressureDifference dp_start( + parameter Modelica.Units.SI.PressureDifference dp_start( min=0, - displayUnit="Pa")=0 "Initial value of pressure raise" - annotation(Dialog(tab="Dynamics", group="Filtered speed")); + displayUnit="Pa") = 0 "Initial value of pressure raise" + annotation (Dialog(tab="Dynamics", group="Filtered speed")); // For air, we set dp_nominal = 600 as default, for water we set 10000 - parameter Modelica.SIunits.PressureDifference dp_nominal( + parameter Modelica.Units.SI.PressureDifference dp_nominal( min=0, - displayUnit="Pa")= - if rho_default < 500 then 500 else 10000 "Nominal pressure raise, used to normalized the filter if use_inputFilter=true, - to set default values of constantHead and heads, and - and for default pressure curve if not specified in record per" - annotation(Dialog(group="Nominal condition")); + displayUnit="Pa") = if rho_default < 500 then 500 else 10000 "Nominal pressure raise, used to normalized the filter if use_inputFilter=true, + to set default values of constantHead and heads, and + and for default pressure curve if not specified in record per" + annotation (Dialog(group="Nominal condition")); - parameter Modelica.SIunits.PressureDifference constantHead( + parameter Modelica.Units.SI.PressureDifference constantHead( min=0, - displayUnit="Pa")=dp_nominal - "Constant pump head, used when inputType=Constant" - annotation(Dialog(enable=inputType == AixLib.Fluid.Types.InputType.Constant)); + displayUnit="Pa") = dp_nominal + "Constant pump head, used when inputType=Constant" annotation (Dialog( + enable=inputType == AixLib.Fluid.Types.InputType.Constant)); // By default, set heads proportional to sqrt(speed/speed_nominal) - parameter Modelica.SIunits.PressureDifference[:] heads( + parameter Modelica.Units.SI.PressureDifference[:] heads( each min=0, - each displayUnit="Pa")= - dp_nominal*{(per.speeds[i]/per.speeds[end])^2 for i in 1:size(per.speeds, 1)} + each displayUnit="Pa") = dp_nominal*{(per.speeds[i]/per.speeds[end])^2 for + i in 1:size(per.speeds, 1)} "Vector of head set points, used when inputType=Stages" - annotation(Dialog(enable=inputType == AixLib.Fluid.Types.InputType.Stages)); + annotation (Dialog(enable=inputType == AixLib.Fluid.Types.InputType.Stages)); parameter Boolean prescribeSystemPressure = false "=true, to control mover such that pressure difference is obtained across two remote points in system" annotation(Evaluate=true, Dialog(tab="Advanced")); @@ -63,8 +64,8 @@ model FlowControlled_dp rotation=90, origin={-80,120}))); - Modelica.Blocks.Interfaces.RealInput dp_in(final unit="Pa") if - inputType == AixLib.Fluid.Types.InputType.Continuous + Modelica.Blocks.Interfaces.RealInput dp_in(final unit="Pa") + if inputType == AixLib.Fluid.Types.InputType.Continuous "Prescribed pressure rise" annotation (Placement(transformation( extent={{-20,-20},{20,20}}, @@ -83,19 +84,19 @@ protected Modelica.Blocks.Math.Gain gain(final k=-1) annotation (Placement(transformation(extent={{10,-10},{-10,10}}, rotation=90, - origin={36,30}))); + origin={44,30}))); equation assert(inputSwitch.u >= -1E-3, "Pressure set point for mover cannot be negative. Obtained dp = " + String(inputSwitch.u)); if use_inputFilter then connect(filter.y, gain.u) annotation (Line( - points={{34.7,88},{36,88},{36,42}}, + points={{41,70.5},{44,70.5},{44,42}}, color={0,0,127}, smooth=Smooth.None)); else connect(inputSwitch.y, gain.u) annotation (Line( - points={{1,50},{36,50},{36,42}}, + points={{1,50},{44,50},{44,42}}, color={0,0,127}, smooth=Smooth.None)); end if; @@ -105,7 +106,7 @@ equation color={0,0,127}, smooth=Smooth.None)); connect(preSou.dp_in, gain.y) annotation (Line( - points={{56,8},{56,14},{36,14},{36,19}}, + points={{56,8},{56,14},{44,14},{44,19}}, color={0,0,127}, smooth=Smooth.None)); connect(senRelPre.p_rel, dp_actual) annotation (Line(points={{50.5,-26.35},{ @@ -115,156 +116,170 @@ equation Icon(graphics={ Text( extent={{-40,126},{-160,76}}, - lineColor={0,0,127}, + textColor={0,0,127}, visible=inputType == AixLib.Fluid.Types.InputType.Continuous or inputType == AixLib.Fluid.Types.InputType.Stages, textString=DynamicSelect("dp", if inputType == AixLib.Fluid.Types.InputType.Continuous then String(dp_in, format=".0f") else String(stage)))}), defaultComponentName="fan", Documentation(info=" -

                                    -This model describes a fan or pump with prescribed head. -The input connector provides the difference between -outlet minus inlet pressure. -The efficiency of the device is computed based -on the efficiency and pressure curves that are defined -in record per, which is of type - -AixLib.Fluid.Movers.SpeedControlled_Nrpm. -

                                    -

                                    Main equations

                                    -

                                    -See the - -User's Guide. -

                                    -

                                    Typical use and important parameters

                                    -

                                    -If use_inputFilter=true, then the parameter dp_nominal is -used to normalize the filter. This is used to improve the numerics of the transient response. -The actual pressure raise of the mover at steady-state is independent -of the value of dp_nominal. It is recommended to set -dp_nominal to approximately the pressure raise that the mover has during -full speed. -

                                    -

                                    Options

                                    -

                                    -Parameter prescribeSystemPressure -can be used to control the mover such that the pressure -difference set point is obtained across two points -in the system, instead of across the fan. -This allows an efficient implementation of -static pressure reset controllers. -A measurement of the pressure difference between the -two points in system then needs to be connected -to RealInput dpMea. -This functionality is demonstrated in - -AixLib.Fluid.Movers.Validation.FlowControlled_dpSystem. -

                                    -", +

                                    + This model describes a fan or pump with prescribed head. + The input connector provides the difference between + outlet minus inlet pressure. + The efficiency of the device is computed based + on the efficiency and pressure curves that are defined + in record per, which is of type + + AixLib.Fluid.Movers.SpeedControlled_Nrpm. +

                                    +

                                    Main equations

                                    +

                                    + See the + + User's Guide. +

                                    +

                                    Typical use and important parameters

                                    +

                                    + If use_inputFilter=true, then the parameter dp_nominal is + used to normalize the filter. This is used to improve the numerics of the transient response. + The actual pressure raise of the mover at steady-state is independent + of the value of dp_nominal. It is recommended to set + dp_nominal to approximately the pressure raise that the mover has during + full speed. +

                                    +

                                    Options

                                    +

                                    + Parameter prescribeSystemPressure + can be used to control the mover such that the pressure + difference set point is obtained across two points + in the system, instead of across the fan. + This allows an efficient implementation of + static pressure reset controllers. + A measurement of the pressure difference between the + two points in system then needs to be connected + to RealInput dpMea. + This functionality is demonstrated in + + AixLib.Fluid.Movers.Validation.FlowControlled_dpSystem. +

                                    + ", revisions=" -
                                      -
                                    • -February 21, 2020, by Michael Wetter:
                                      -Changed icon to display its operating stage.
                                      -This is for -#1294. -
                                    • -
                                    • -May 5, 2017, by Filip Jorissen:
                                      -Added parameters, documentation and functionality for -prescribeSystemPressure.
                                      -This is for -#770. -
                                    • -
                                    • -March 24, 2017, by Michael Wetter:
                                      -Renamed filteredSpeed to use_inputFilter.
                                      -This is for -#665. -
                                    • -
                                    • -December 2, 2016, by Michael Wetter:
                                      -Removed min attribute as otherwise numerical noise can cause -the assertion on the limit to fail.
                                      -This is for -#606. -
                                    • -
                                    • -November 14, 2016, by Michael Wetter:
                                      -Changed default values for heads.
                                      -This is for -#583. -
                                    • -
                                    • -March 2, 2016, by Filip Jorissen:
                                      -Refactored model such that it directly extends PartialFlowMachine. -This is for -#417. -
                                    • -
                                    • -January 22, 2016, by Michael Wetter:
                                      -Corrected type declaration of pressure difference. -This is -for #404. -
                                    • -
                                    • -November 5, 2015, by Michael Wetter:
                                      -Removed the parameters use_powerCharacteristics and power -from the performance data record per -because - -AixLib.Fluid.Movers.FlowControlled_dp -and - -AixLib.Fluid.Movers.FlowControlled_m_flow -fix the flow rate or head, which can give a flow work that is higher -than the power consumption specified in this record. -Hence, users should use the efficiency data for this model. -The record has been moved to - -AixLib.Fluid.Movers.Data.SpeedControlled_y -as it makes sense to use it for the movers - -AixLib.Fluid.Movers.FlowControlled_Nrpm -and - -AixLib.Fluid.Movers.FlowControlled_y.
                                      -This is for - -issue 457. -
                                    • -
                                    • -April 2, 2015, by Filip Jorissen:
                                      -Added code for supporting stage input and constant input. -
                                    • -
                                    • -January 6, 2015, by Michael Wetter:
                                      -Revised model for OpenModelica. -
                                    • -
                                    • -February 14, 2012, by Michael Wetter:
                                      -Added filter for start-up and shut-down transient. -
                                    • -
                                    • -May 25, 2011, by Michael Wetter:
                                      -Revised implementation of energy balance to avoid having to use conditionally removed models. -
                                    • -
                                    • -July 27, 2010, by Michael Wetter:
                                      -Redesigned model to fix bug in medium balance. -
                                    • -
                                    • July 5, 2010, by Michael Wetter:
                                      -Changed assert(dp_in >= 0, ...) to assert(dp_in >= -0.1, ...). -The former implementation triggered the assert if dp_in was solved for -in a nonlinear equation since the solution can be slightly negative while still being -within the solver tolerance. -
                                    • -
                                    • March 24, 2010, by Michael Wetter:
                                      -Revised implementation to allow zero flow rate. -
                                    • -
                                    • October 1, 2009, - by Michael Wetter:
                                      - Added model to the AixLib library. -
                                    -")); +
                                      +
                                    • + March 7, 2022, by Michael Wetter:
                                      + Set final massDynamics=energyDynamics.
                                      + This is for + #1542. +
                                    • +
                                    • + June 17, 2021, by Michael Wetter:
                                      + Changed implementation of the filter.
                                      + Removed parameter y_start which is not used because dp_start is used.
                                      + This is for + #1498. +
                                    • +
                                    • + February 21, 2020, by Michael Wetter:
                                      + Changed icon to display its operating stage.
                                      + This is for + #1294. +
                                    • +
                                    • + May 5, 2017, by Filip Jorissen:
                                      + Added parameters, documentation and functionality for + prescribeSystemPressure.
                                      + This is for + #770. +
                                    • +
                                    • + March 24, 2017, by Michael Wetter:
                                      + Renamed filteredSpeed to use_inputFilter.
                                      + This is for + #665. +
                                    • +
                                    • + December 2, 2016, by Michael Wetter:
                                      + Removed min attribute as otherwise numerical noise can cause + the assertion on the limit to fail.
                                      + This is for + #606. +
                                    • +
                                    • + November 14, 2016, by Michael Wetter:
                                      + Changed default values for heads.
                                      + This is for + #583. +
                                    • +
                                    • + March 2, 2016, by Filip Jorissen:
                                      + Refactored model such that it directly extends PartialFlowMachine. + This is for + #417. +
                                    • +
                                    • + January 22, 2016, by Michael Wetter:
                                      + Corrected type declaration of pressure difference. + This is + for #404. +
                                    • +
                                    • + November 5, 2015, by Michael Wetter:
                                      + Removed the parameters use_powerCharacteristics and power + from the performance data record per + because + + AixLib.Fluid.Movers.FlowControlled_dp + and + + AixLib.Fluid.Movers.FlowControlled_m_flow + fix the flow rate or head, which can give a flow work that is higher + than the power consumption specified in this record. + Hence, users should use the efficiency data for this model. + The record has been moved to + + AixLib.Fluid.Movers.Data.SpeedControlled_y + as it makes sense to use it for the movers + + AixLib.Fluid.Movers.FlowControlled_Nrpm + and + + AixLib.Fluid.Movers.FlowControlled_y.
                                      + This is for + + issue 457. +
                                    • +
                                    • + April 2, 2015, by Filip Jorissen:
                                      + Added code for supporting stage input and constant input. +
                                    • +
                                    • + January 6, 2015, by Michael Wetter:
                                      + Revised model for OpenModelica. +
                                    • +
                                    • + February 14, 2012, by Michael Wetter:
                                      + Added filter for start-up and shut-down transient. +
                                    • +
                                    • + May 25, 2011, by Michael Wetter:
                                      + Revised implementation of energy balance to avoid having to use conditionally removed models. +
                                    • +
                                    • + July 27, 2010, by Michael Wetter:
                                      + Redesigned model to fix bug in medium balance. +
                                    • +
                                    • July 5, 2010, by Michael Wetter:
                                      + Changed assert(dp_in >= 0, ...) to assert(dp_in >= -0.1, ...). + The former implementation triggered the assert if dp_in was solved for + in a nonlinear equation since the solution can be slightly negative while still being + within the solver tolerance. +
                                    • +
                                    • March 24, 2010, by Michael Wetter:
                                      + Revised implementation to allow zero flow rate. +
                                    • +
                                    • October 1, 2009, + by Michael Wetter:
                                      + Added model to the AixLib library. +
                                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end FlowControlled_dp; diff --git a/AixLib/Fluid/Movers/FlowControlled_m_flow.mo b/AixLib/Fluid/Movers/FlowControlled_m_flow.mo index 37bca13ab4..2350b56ed7 100644 --- a/AixLib/Fluid/Movers/FlowControlled_m_flow.mo +++ b/AixLib/Fluid/Movers/FlowControlled_m_flow.mo @@ -8,9 +8,10 @@ model FlowControlled_m_flow final constInput(final unit="kg/s")=constantMassFlowRate, filter( final y_start=m_flow_start, - u_nominal=m_flow_nominal, u(final unit="kg/s"), - y(final unit="kg/s")), + y(final unit="kg/s"), + x(each nominal=m_flow_nominal), + u_nominal=m_flow_nominal), eff( per( final pressure = if per.havePressureCurve then @@ -19,33 +20,35 @@ model FlowControlled_m_flow AixLib.Fluid.Movers.BaseClasses.Characteristics.flowParameters( V_flow = {i/(nOri-1)*2.0*m_flow_nominal/rho_default for i in 0:(nOri-1)}, dp = {i/(nOri-1)*2.0*dp_nominal for i in (nOri-1):-1:0}), - final use_powerCharacteristic = if per.havePressureCurve then per.use_powerCharacteristic else false)), + final use_powerCharacteristic = if per.havePressureCurve then per.use_powerCharacteristic else false), + r_N(start=if abs(m_flow_nominal) > 1E-8 then m_flow_start/m_flow_nominal else 0)), preSou(m_flow_start=m_flow_start)); // For air, we set dp_nominal = 600 as default, for water we set 10000 - parameter Modelica.SIunits.PressureDifference dp_nominal(min=0, displayUnit="Pa")= - if rho_default < 500 then 500 else 10000 + parameter Modelica.Units.SI.PressureDifference dp_nominal( + min=0, + displayUnit="Pa") = if rho_default < 500 then 500 else 10000 "Nominal pressure raise, used for default pressure curve if not specified in record per" - annotation(Dialog(group="Nominal condition")); + annotation (Dialog(group="Nominal condition")); - parameter Modelica.SIunits.MassFlowRate m_flow_start(min=0)=0 + parameter Modelica.Units.SI.MassFlowRate m_flow_start(min=0) = 0 "Initial value of mass flow rate" - annotation(Dialog(tab="Dynamics", group="Filtered speed")); + annotation (Dialog(tab="Dynamics", group="Filtered speed")); - parameter Modelica.SIunits.MassFlowRate constantMassFlowRate=m_flow_nominal - "Constant pump mass flow rate, used when inputType=Constant" - annotation(Dialog(enable=inputType == AixLib.Fluid.Types.InputType.Constant)); + parameter Modelica.Units.SI.MassFlowRate constantMassFlowRate=m_flow_nominal + "Constant pump mass flow rate, used when inputType=Constant" annotation ( + Dialog(enable=inputType == AixLib.Fluid.Types.InputType.Constant)); // By default, set massFlowRates proportional to (speed/speed_nominal) - parameter Modelica.SIunits.MassFlowRate[:] massFlowRates= - m_flow_nominal*{per.speeds[i]/per.speeds[end] for i in 1:size(per.speeds, 1)} + parameter Modelica.Units.SI.MassFlowRate[:] massFlowRates=m_flow_nominal*{per.speeds[ + i]/per.speeds[end] for i in 1:size(per.speeds, 1)} "Vector of mass flow rate set points, used when inputType=Stage" - annotation(Dialog(enable=inputType == AixLib.Fluid.Types.InputType.Stages)); + annotation (Dialog(enable=inputType == AixLib.Fluid.Types.InputType.Stages)); Modelica.Blocks.Interfaces.RealInput m_flow_in( final unit="kg/s", - nominal=m_flow_nominal) if - inputType == AixLib.Fluid.Types.InputType.Continuous + nominal=m_flow_nominal) + if inputType == AixLib.Fluid.Types.InputType.Continuous "Prescribed mass flow rate" annotation (Placement(transformation( extent={{-20,-20},{20,20}}, @@ -63,100 +66,117 @@ model FlowControlled_m_flow equation if use_inputFilter then connect(filter.y, m_flow_actual) annotation (Line( - points={{34.7,88},{44,88},{44,50},{110,50}}, + points={{41,70.5},{44,70.5},{44,50},{110,50}}, color={0,0,127}, smooth=Smooth.None)); + connect(filter.y, preSou.m_flow_in) + annotation (Line(points={{41,70.5},{44,70.5},{44,8}}, color={0,0,127})); else - connect(inputSwitch.y, preSou.m_flow_in) annotation (Line( + connect(inputSwitch.y, m_flow_actual) annotation (Line(points={{1,50},{110,50}}, + color={0,0,127})); + connect(inputSwitch.y, preSou.m_flow_in) annotation (Line( points={{1,50},{44,50},{44,8}}, color={0,0,127}, smooth=Smooth.None)); end if; - connect(m_flow_actual, preSou.m_flow_in) annotation (Line( - points={{110,50},{44,50},{44,8}}, - color={0,0,127}, - smooth=Smooth.None)); + connect(inputSwitch.u, m_flow_in) annotation (Line( points={{-22,50},{-26,50},{-26,80},{0,80},{0,120}}, color={0,0,127}, smooth=Smooth.None)); + + annotation ( Icon(graphics={ Text( extent={{-40,126},{-160,76}}, - lineColor={0,0,127}, + textColor={0,0,127}, visible=inputType == AixLib.Fluid.Types.InputType.Continuous or inputType == AixLib.Fluid.Types.InputType.Stages, textString=DynamicSelect("m_flow", if inputType == AixLib.Fluid.Types.InputType.Continuous then String(m_flow_in, leftJustified=false, significantDigits=3) else String(stage)))}), defaultComponentName="fan", Documentation( info=" -

                                    -This model describes a fan or pump with prescribed mass flow rate. -The efficiency of the device is computed based -on the efficiency and pressure curves that are defined -in record per, which is of type - -AixLib.Fluid.Movers.SpeedControlled_Nrpm. -

                                    -

                                    -See the - -User's Guide for more information. -

                                    -", +

                                    + This model describes a fan or pump with prescribed mass flow rate. + The efficiency of the device is computed based + on the efficiency and pressure curves that are defined + in record per, which is of type + + AixLib.Fluid.Movers.SpeedControlled_Nrpm. +

                                    +

                                    + See the + + User's Guide for more information. +

                                    + ", revisions=" -
                                      -
                                    • -February 21, 2020, by Michael Wetter:
                                      -Changed icon to display its operating stage.
                                      -This is for -#1294. -
                                    • -
                                    • -March 24, 2017, by Michael Wetter:
                                      -Renamed filteredSpeed to use_inputFilter.
                                      -This is for -#665. -
                                    • -
                                    • -November 10, 2016, by Michael Wetter:
                                      -Changed default values for massFlowRates.
                                      -This is for -#583. -
                                    • -
                                    • -March 2, 2016, by Filip Jorissen:
                                      -Refactored model such that it directly extends PartialFlowMachine. -This is for -#417. -
                                    • -
                                    • -April 2, 2015, by Filip Jorissen:
                                      -Added code for supporting stage input and constant input. -
                                    • -
                                    • -January 6, 2015, by Michael Wetter:
                                      -Revised model for OpenModelica. -
                                    • -
                                    • -February 14, 2012, by Michael Wetter:
                                      -Added filter for start-up and shut-down transient. -
                                    • -
                                    • -May 25, 2011, by Michael Wetter:
                                      -Revised implementation of energy balance to avoid having to use conditionally removed models. -
                                    • -
                                    • -July 27, 2010, by Michael Wetter:
                                      -Redesigned model to fix bug in medium balance. -
                                    • -
                                    • March 24, 2010, by Michael Wetter:
                                      -Revised implementation to allow zero flow rate. -
                                    • -
                                    • October 1, 2009 - by Michael Wetter:
                                      - Model added to the AixLib library. -
                                    -")); +
                                      +
                                    • + March 7, 2022, by Michael Wetter:
                                      + Set final massDynamics=energyDynamics.
                                      + This is for + #1542. +
                                    • +
                                    • + June 17, 2021, by Michael Wetter:
                                      + Changed implementation of the filter.
                                      + Removed parameter y_start which is not used because m_flow_start is used.
                                      + This is for + #1498. +
                                    • +
                                    • + February 21, 2020, by Michael Wetter:
                                      + Changed icon to display its operating stage.
                                      + This is for + #1294. +
                                    • +
                                    • + March 24, 2017, by Michael Wetter:
                                      + Renamed filteredSpeed to use_inputFilter.
                                      + This is for + #665. +
                                    • +
                                    • + November 10, 2016, by Michael Wetter:
                                      + Changed default values for massFlowRates.
                                      + This is for + #583. +
                                    • +
                                    • + March 2, 2016, by Filip Jorissen:
                                      + Refactored model such that it directly extends PartialFlowMachine. + This is for + #417. +
                                    • +
                                    • + April 2, 2015, by Filip Jorissen:
                                      + Added code for supporting stage input and constant input. +
                                    • +
                                    • + January 6, 2015, by Michael Wetter:
                                      + Revised model for OpenModelica. +
                                    • +
                                    • + February 14, 2012, by Michael Wetter:
                                      + Added filter for start-up and shut-down transient. +
                                    • +
                                    • + May 25, 2011, by Michael Wetter:
                                      + Revised implementation of energy balance to avoid having to use conditionally removed models. +
                                    • +
                                    • + July 27, 2010, by Michael Wetter:
                                      + Redesigned model to fix bug in medium balance. +
                                    • +
                                    • March 24, 2010, by Michael Wetter:
                                      + Revised implementation to allow zero flow rate. +
                                    • +
                                    • October 1, 2009 + by Michael Wetter:
                                      + Model added to the AixLib library. +
                                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end FlowControlled_m_flow; diff --git a/AixLib/Fluid/Movers/PumpsPolynomialBased/BaseClasses/PumpBus.mo b/AixLib/Fluid/Movers/PumpsPolynomialBased/BaseClasses/PumpBus.mo index ce7c102bb6..d7ccef0531 100644 --- a/AixLib/Fluid/Movers/PumpsPolynomialBased/BaseClasses/PumpBus.mo +++ b/AixLib/Fluid/Movers/PumpsPolynomialBased/BaseClasses/PumpBus.mo @@ -1,10 +1,10 @@ -within AixLib.Fluid.Movers.PumpsPolynomialBased.BaseClasses; +within AixLib.Fluid.Movers.PumpsPolynomialBased.BaseClasses; expandable connector PumpBus "Standard data bus with pump information" extends Modelica.Icons.SignalBus; - import SI = Modelica.SIunits; - SI.Conversions.NonSIunits.AngularVelocity_rpm rpmSet "Pump speed setpoint" + import Modelica.Units.SI; + Modelica.Units.NonSI.AngularVelocity_rpm rpmSet "Pump speed setpoint" annotation (HideResult=false); - SI.Conversions.NonSIunits.AngularVelocity_rpm rpmMea "Pump speed actor signal" + Modelica.Units.NonSI.AngularVelocity_rpm rpmMea "Pump speed actor signal" annotation (HideResult=false); SI.Power PelMea "Electrical pump power" annotation (HideResult=false); diff --git a/AixLib/Fluid/Movers/PumpsPolynomialBased/BaseClasses/efficiencyCharacteristic/baseEfficiency.mo b/AixLib/Fluid/Movers/PumpsPolynomialBased/BaseClasses/efficiencyCharacteristic/baseEfficiency.mo index 588d0475ad..1560d1dfdf 100644 --- a/AixLib/Fluid/Movers/PumpsPolynomialBased/BaseClasses/efficiencyCharacteristic/baseEfficiency.mo +++ b/AixLib/Fluid/Movers/PumpsPolynomialBased/BaseClasses/efficiencyCharacteristic/baseEfficiency.mo @@ -1,11 +1,11 @@ -within AixLib.Fluid.Movers.PumpsPolynomialBased.BaseClasses.efficiencyCharacteristic; +within AixLib.Fluid.Movers.PumpsPolynomialBased.BaseClasses.efficiencyCharacteristic; partial function baseEfficiency "Base class: efficiency characteristic (eta = f(Q,H,P))" extends Modelica.Icons.Function; input Real Q "Volume flow in m³/h"; - input Modelica.SIunits.Height H "Head in m"; - input Modelica.SIunits.Power P "Power in W"; - input Modelica.SIunits.Density rho "Density in kg/m³"; + input Modelica.Units.SI.Height H "Head in m"; + input Modelica.Units.SI.Power P "Power in W"; + input Modelica.Units.SI.Density rho "Density in kg/m³"; output Real eta "efficiency"; annotation(preferredView="text"); end baseEfficiency; diff --git a/AixLib/Fluid/Movers/PumpsPolynomialBased/BaseClasses/powerInt.mo b/AixLib/Fluid/Movers/PumpsPolynomialBased/BaseClasses/powerInt.mo index 57a2f6349c..e3c9832552 100644 --- a/AixLib/Fluid/Movers/PumpsPolynomialBased/BaseClasses/powerInt.mo +++ b/AixLib/Fluid/Movers/PumpsPolynomialBased/BaseClasses/powerInt.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Movers.PumpsPolynomialBased.BaseClasses; +within AixLib.Fluid.Movers.PumpsPolynomialBased.BaseClasses; function powerInt "Computes the power x^n for the real x and the integer n." extends Modelica.Icons.Function; input Real x "base"; diff --git a/AixLib/Fluid/Movers/PumpsPolynomialBased/Controls/CtrlDpVarH.mo b/AixLib/Fluid/Movers/PumpsPolynomialBased/Controls/CtrlDpVarH.mo index 6c288d2376..1ae0a2fe2b 100644 --- a/AixLib/Fluid/Movers/PumpsPolynomialBased/Controls/CtrlDpVarH.mo +++ b/AixLib/Fluid/Movers/PumpsPolynomialBased/Controls/CtrlDpVarH.mo @@ -1,25 +1,24 @@ -within AixLib.Fluid.Movers.PumpsPolynomialBased.Controls; +within AixLib.Fluid.Movers.PumpsPolynomialBased.Controls; model CtrlDpVarH "'dp variable' for PumpHeadControlled" extends BaseClasses.PumpController; - parameter Modelica.SIunits.Conversions.NonSIunits.AngularVelocity_rpm Nstart= - pumpParam.nMin + (pumpParam.nMax - pumpParam.nMin)*0.8 - "pump speed at start of simulation"; + parameter Modelica.Units.NonSI.AngularVelocity_rpm Nstart=pumpParam.nMin + ( + pumpParam.nMax - pumpParam.nMin)*0.8 "pump speed at start of simulation"; parameter Real Qnom( quantity="VolumeFlowRate", unit="m3/h", displayUnit="m3/h") = 0.5*max(pumpParam.maxMinSpeedCurves[:,1]) "Nominal volume flow rate in m³/h"; - parameter Modelica.SIunits.Height Hnom= + parameter Modelica.Units.SI.Height Hnom= AixLib.Fluid.Movers.PumpsPolynomialBased.BaseClasses.polynomial2D( pumpParam.cHQN, Qnom, Nstart) "Nominal pump head in m (water)"; - parameter Modelica.SIunits.Height H0 = 0.5 * Hnom "pump head when Q == 0 m3/h"; + parameter Modelica.Units.SI.Height H0=0.5*Hnom "pump head when Q == 0 m3/h"; parameter Real k(unit="1") = 50 "Gain of controller"; - parameter Modelica.SIunits.Time Ti(min=Modelica.Constants.small) = 0.01 + parameter Modelica.Units.SI.Time Ti(min=Modelica.Constants.small) = 0.01 "Time constant of Integrator block"; - parameter Modelica.SIunits.Time Td(min=0) = 0.001 + parameter Modelica.Units.SI.Time Td(min=0) = 0.001 "Time constant of Derivative block"; Modelica.Blocks.Sources.RealExpression headControl(y=(Hnom - H0)/Qnom*Q.y + diff --git a/AixLib/Fluid/Movers/PumpsPolynomialBased/Controls/CtrlDpVarN.mo b/AixLib/Fluid/Movers/PumpsPolynomialBased/Controls/CtrlDpVarN.mo index ca06b9a432..1ce623e233 100644 --- a/AixLib/Fluid/Movers/PumpsPolynomialBased/Controls/CtrlDpVarN.mo +++ b/AixLib/Fluid/Movers/PumpsPolynomialBased/Controls/CtrlDpVarN.mo @@ -1,37 +1,36 @@ -within AixLib.Fluid.Movers.PumpsPolynomialBased.Controls; +within AixLib.Fluid.Movers.PumpsPolynomialBased.Controls; model CtrlDpVarN "'dp variable' for PumpSpeedControlled" extends BaseClasses.PumpController; - parameter Modelica.SIunits.Conversions.NonSIunits.AngularVelocity_rpm Nstart= - pumpParam.nMin + (pumpParam.nMax - pumpParam.nMin)*0.8 - "pump speed at start of simulation"; + parameter Modelica.Units.NonSI.AngularVelocity_rpm Nstart=pumpParam.nMin + ( + pumpParam.nMax - pumpParam.nMin)*0.8 "pump speed at start of simulation"; parameter Real Qnom( quantity="VolumeFlowRate", unit="m3/h", displayUnit="m3/h") = 0.5*max(pumpParam.maxMinSpeedCurves[:,1]) "Nominal volume flow rate in m³/h"; - parameter Modelica.SIunits.Height Hnom= + parameter Modelica.Units.SI.Height Hnom= AixLib.Fluid.Movers.PumpsPolynomialBased.BaseClasses.polynomial2D( pumpParam.cHQN, Qnom, Nstart) "Nominal pump head in m (water)"; - parameter Modelica.SIunits.Height H0 = 0.5 * Hnom "pump head when Q == 0 m3/h"; + parameter Modelica.Units.SI.Height H0=0.5*Hnom "pump head when Q == 0 m3/h"; parameter Real k(unit="1") = 10 "Gain of controller"; - parameter Modelica.SIunits.Time Ti(min=Modelica.Constants.small) = 5 + parameter Modelica.Units.SI.Time Ti(min=Modelica.Constants.small) = 5 "Time constant of Integrator block"; - parameter Modelica.SIunits.Time Td(min=0) = 0.001 + parameter Modelica.Units.SI.Time Td(min=0) = 0.001 "Time constant of Derivative block"; Modelica.Blocks.Continuous.LimPID PID( k=k, Ti=Ti, Td=Td, - initType=Modelica.Blocks.Types.InitPID.InitialOutput, + initType=Modelica.Blocks.Types.Init.InitialOutput, y_start=Nstart, yMax=pumpParam.nMax, yMin=pumpParam.nMin, controllerType=controllerTypePID) - annotation (Placement(transformation(extent={{-6,-24},{14,-4}}))); + annotation (Placement(transformation(extent={{-6,-24},{14,-4}}))); Modelica.Blocks.Sources.RealExpression headControl(y=(Hnom - H0)/Qnom*Q.y + H0) "The given pump head according to controll strategy" annotation (Placement(transformation(extent={{-80,-24},{-44,-4}}))); @@ -54,9 +53,9 @@ protected public parameter Modelica.Blocks.Types.SimpleController controllerTypePID=.Modelica.Blocks.Types.SimpleController.PID "Type of controller"; - Modelica.StateGraph.InitialStep Standby + Modelica.StateGraph.InitialStep Standby(nIn=1, nOut=1) annotation (Placement(transformation(extent={{-56,48},{-36,68}}))); - Modelica.StateGraph.StepWithSignal ActiveState + Modelica.StateGraph.StepWithSignal ActiveState(nIn=1, nOut=1) annotation (Placement(transformation(extent={{0,48},{20,68}}))); Modelica.StateGraph.TransitionWithSignal pumpOn(enableTimer=false, waitTime=1) "fires when on" diff --git a/AixLib/Fluid/Movers/PumpsPolynomialBased/Controls/CtrlPassThroughN.mo b/AixLib/Fluid/Movers/PumpsPolynomialBased/Controls/CtrlPassThroughN.mo index e2afda9ac0..a9987530f5 100644 --- a/AixLib/Fluid/Movers/PumpsPolynomialBased/Controls/CtrlPassThroughN.mo +++ b/AixLib/Fluid/Movers/PumpsPolynomialBased/Controls/CtrlPassThroughN.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Movers.PumpsPolynomialBased.Controls; +within AixLib.Fluid.Movers.PumpsPolynomialBased.Controls; model CtrlPassThroughN "'n_set' passhrough for PumpSpeedControlled" extends BaseClasses.PumpController; equation diff --git a/AixLib/Fluid/Movers/PumpsPolynomialBased/Examples/PumpHdpVarControlTest.mo b/AixLib/Fluid/Movers/PumpsPolynomialBased/Examples/PumpHdpVarControlTest.mo deleted file mode 100644 index 7e7b0e1061..0000000000 --- a/AixLib/Fluid/Movers/PumpsPolynomialBased/Examples/PumpHdpVarControlTest.mo +++ /dev/null @@ -1,121 +0,0 @@ -within AixLib.Fluid.Movers.PumpsPolynomialBased.Examples; -model PumpHdpVarControlTest - "testing the pump dp-var algorithm with the new \"one record\" pump model." - extends Modelica.Icons.Example; - inner Modelica.Fluid.System system(m_flow_start=1, - allowFlowReversal=false, - p_ambient=300000, - T_ambient=293.15, - T_start=293.15, - m_flow_small=pump.Qnom*995/3600*1e-2) - annotation (Placement(transformation(extent={{-90,-90},{-70,-70}}))); - - replaceable package Medium = Modelica.Media.Water.ConstantPropertyLiquidWater; - - PumpHeadControlled pump( - calculatePower=true, - calculateEfficiency=true, - redeclare package Medium = Medium, - pumpParam=DataBase.Pumps.PumpPolynomialBased.Pump_DN25_H1_6_V4(), - Qnom=1.45) annotation (Placement(transformation(extent={{-10,0},{10,20}}))); - - Modelica.Blocks.Sources.BooleanPulse PumpOn( - width=500/600*100, - period=600, - startTime=0) - annotation (Placement(transformation(extent={{-80,40},{-60,60}}))); - AixLib.Obsolete.Year2021.Fluid.Actuators.Valves.SimpleValve simpleValve( - redeclare package Medium = Medium, - Kvs=6.3, - m_flow_start=system.m_flow_start, - m_flow_small=system.m_flow_small) annotation (Placement(transformation(extent={{-20,-20},{-40,-40}}))); - - Modelica.Blocks.Sources.Ramp rampValvePosition( - offset=0.5, - height=-0.48, - duration(displayUnit="s") = 120, - startTime(displayUnit="min") = 120) - annotation (Placement(transformation(extent={{0,-70},{-20,-50}}))); - AixLib.Fluid.Sources.Boundary_pT vessle( - redeclare package Medium = Medium, - p=system.p_start, - T=system.T_start, - nPorts=2) annotation (Placement(transformation( - extent={{-10,-10},{10,10}}, - rotation=-90, - origin={-36,20}))); - Controls.CtrlDpVarH ctrlDpVarH(pumpParam= - DataBase.Pumps.PumpPolynomialBased.Pump_DN25_H1_6_V4()) - annotation (Placement(transformation(extent={{-10,26},{10,46}}))); - BaseClasses.PumpBus pumpControllerBus1 - annotation (Placement(transformation(extent={{-10,50},{10,70}}), - iconTransformation(extent={{-34,38},{-14,58}}))); -equation - connect(rampValvePosition.y, simpleValve.opening) - annotation (Line(points={{-21,-60},{-30,-60},{-30,-38}}, color={0,0,127})); - connect(simpleValve.port_b, vessle.ports[1]) annotation (Line(points={{-40, - -30},{-52,-30},{-52,10},{-34,10}}, color={0,127,255})); - connect(vessle.ports[2], pump.port_a) - annotation (Line(points={{-38,10},{-10,10}}, color={0,127,255})); - connect(pump.port_b, simpleValve.port_a) annotation (Line(points={{10,10},{48, - 10},{48,-30},{-20,-30}}, color={0,127,255})); - connect(pump.pumpBus, ctrlDpVarH.pumpBus) annotation (Line( - points={{0,20},{0,26}}, - color={255,204,51}, - thickness=0.5)); - connect(ctrlDpVarH.pumpControllerBus, pumpControllerBus1) annotation (Line( - points={{0,46},{0,60}}, - color={255,204,51}, - thickness=0.5), Text( - string="%second", - index=1, - extent={{-6,3},{-6,3}}, - horizontalAlignment=TextAlignment.Right)); - connect(PumpOn.y, pumpControllerBus1.onSet) annotation (Line(points={{-59,50}, - {-38,50},{-38,60.05},{0.05,60.05}}, color={255,0,255}), Text( - string="%second", - index=1, - extent={{6,3},{6,3}}, - horizontalAlignment=TextAlignment.Left)); - annotation ( - experiment(StopTime=600), - Documentation(revisions="
                                      -
                                    • 2019-09-18 by Alexander Kümpel:
                                      - Renaming and restructuring. -
                                    • -
                                    • 2018-03-01 by Peter Matthes:
                                      - Adjusted parameter settings. From pump model removed Nstart (became - Nnom in pump model) and m_flow_start (should be used as output from - pump rather than a setting). Changed setting of system.m_flow_start - to become pump.m_flow_start. -
                                    • -
                                    • 2018-02-01 by Peter Matthes
                                      - Switches pump off near end of simulation to check for handling of - power and efficiency calculation. Improves plot script. -
                                    • -
                                    • 2018-01-29 by Peter Matthes:
                                      - * Removes parameter useABCformula in pump model and changes pump - record to Stratos_Pico_25_1_6.
                                      - * The selectable function for efficiency calculation could be - removed from the parameter dialog. -
                                    • -
                                    • 2018-01-26 by Peter Matthes:
                                      - Changes parameter name n_start into Nstart in the pump models. -
                                    • -
                                    • 2017-11-22 by Peter Matthes
                                      - Implemented -
                                    • -
                                    -"), - __Dymola_Commands(file(ensureSimulated=true)= - "Resources/Scripts/Dymola/Fluid/Movers/PumpsPolynomialBased/Examples/PumpHdpVarControlTest.mos" - "Simulate and plot"), - Diagram(graphics={Text( - extent={{-82,94},{80,66}}, - lineColor={100,100,100}, - horizontalAlignment=TextAlignment.Left, - textString="* Tests PumpH model (head controlled pump with controller block) -* Tests dp-var control (PumpH version, numerical values) -* Tests system pressure drop change (ramp) -* Tests pump off-switch")})); -end PumpHdpVarControlTest; diff --git a/AixLib/Fluid/Movers/PumpsPolynomialBased/Examples/PumpHeadControlled.mo b/AixLib/Fluid/Movers/PumpsPolynomialBased/Examples/PumpHeadControlled.mo new file mode 100644 index 0000000000..2ac51e5a7c --- /dev/null +++ b/AixLib/Fluid/Movers/PumpsPolynomialBased/Examples/PumpHeadControlled.mo @@ -0,0 +1,110 @@ +within AixLib.Fluid.Movers.PumpsPolynomialBased.Examples; +model PumpHeadControlled "testing the head controlled pump model." + extends Modelica.Icons.Example; + + replaceable package Medium = Modelica.Media.Water.ConstantPropertyLiquidWater; + + .AixLib.Fluid.Movers.PumpsPolynomialBased.PumpHeadControlled pump( + m_flow_nominal=m_flow_nominal, + calculatePower=true, + calculateEfficiency=true, + redeclare package Medium = Medium, + pumpParam=DataBase.Pumps.PumpPolynomialBased.Pump_DN25_H1_8_V9()) + annotation (Placement(transformation(extent={{-10,0},{10,20}}))); + + Modelica.Blocks.Sources.Ramp rampValvePosition( + offset=0.5, + height=0.5, + duration(displayUnit="s") = 120, + startTime(displayUnit="min") = 120) + annotation (Placement(transformation(extent={{0,-70},{-20,-50}}))); + AixLib.Fluid.Sources.Boundary_pT vessle( + redeclare package Medium = Medium, nPorts=2) + annotation (Placement(transformation( + extent={{-10,-10},{10,10}}, + rotation=-90, + origin={-36,20}))); + parameter Modelica.SIunits.MassFlowRate m_flow_nominal=0.1 "Nominal mass flow rate"; + Modelica.Blocks.Sources.BooleanPulse PumpOn1(period=600, width=500/600*100, + startTime=0) + annotation (Placement(transformation(extent={{-70,30},{-50,50}}))); + Modelica.Blocks.Sources.Ramp rampPumpDp( + height=2, + offset=2, + duration(displayUnit="s") = 100, + startTime(displayUnit="s") = 100) + annotation (Placement(transformation(extent={{46,30},{26,50}}))); + BaseClasses.PumpBus pumpBus + annotation (Placement(transformation(extent={{-10,30},{10,50}}))); + Actuators.Valves.TwoWayLinear simpleValve( + redeclare package Medium = Medium, + m_flow_nominal=m_flow_nominal, + CvData=AixLib.Fluid.Types.CvTypes.Kv, + Kv=6.3, + dpFixed_nominal=1000) + annotation (Placement(transformation(extent={{-20,-20},{-40,-40}}))); +equation + connect(PumpOn1.y, pumpBus.onSet) annotation (Line(points={{-49,40},{-28,40},{ + -28,40},{-14,40},{-14,40.05},{0.05,40.05}}, color={255,0,255}), Text( + string="%second", + index=2, + extent={{6,3},{6,3}})); + connect(pumpBus, pump.pumpBus) annotation (Line( + points={{0,40},{0,20}}, + color={255,204,51}, + thickness=0.5), Text( + string="%first", + index=-1, + extent={{-3,6},{-3,6}}, + horizontalAlignment=TextAlignment.Right)); + connect(rampPumpDp.y, pumpBus.dpSet) annotation (Line(points={{25,40},{12,40}, + {12,40.05},{0.05,40.05}}, color={0,0,127}), Text( + string="%second", + index=1, + extent={{-6,3},{-6,3}}, + horizontalAlignment=TextAlignment.Right)); + connect(pump.port_b, simpleValve.port_a) annotation (Line(points={{10,10},{40, + 10},{40,-30},{-20,-30}}, color={0,127,255})); + connect(vessle.ports[1], pump.port_a) + annotation (Line(points={{-34,10},{-10,10}}, color={0,127,255})); + connect(simpleValve.port_b, vessle.ports[2]) annotation (Line(points={{-40,-30}, + {-60,-30},{-60,10},{-38,10}}, color={0,127,255})); + connect(rampValvePosition.y, simpleValve.y) + annotation (Line(points={{-21,-60},{-30,-60},{-30,-42}}, color={0,0,127})); + annotation ( + experiment( + StopTime=600, + Tolerance=1e-06, + __Dymola_Algorithm="Dassl"), + Documentation(revisions="
                                      +
                                    • 2019-09-18 by Alexander Kümpel:
                                      + Renaming and restructuring. +
                                    • +
                                    • 2018-03-01 by Peter Matthes:
                                      + Adjusted parameter settings. From pump model removed Nstart (became + Nnom in pump model) and m_flow_start (should be used as output from + pump rather than a setting). Changed setting of system.m_flow_start + to become pump.m_flow_start. +
                                    • +
                                    • 2018-02-01 by Peter Matthes
                                      + Switches pump off near end of simulation to check for handling of + power and efficiency calculation. Improves plot script. +
                                    • +
                                    • 2018-01-29 by Peter Matthes:
                                      + * Removes parameter useABCformula in pump model and changes pump + record to Stratos_Pico_25_1_6.
                                      + * The selectable function for efficiency calculation could be + removed from the parameter dialog. +
                                    • +
                                    • 2018-01-26 by Peter Matthes:
                                      + Changes parameter name n_start into Nstart in the pump models. +
                                    • +
                                    • 2017-11-22 by Peter Matthes
                                      + Implemented +
                                    • +
                                    +"), + __Dymola_Commands(file= + "Resources/Scripts/Dymola/Fluid/Movers/PumpsPolynomialBased/Examples/PumpHeadControlled.mos" + "Simulate and plot")); +end PumpHeadControlled; diff --git a/AixLib/Fluid/Movers/PumpsPolynomialBased/Examples/PumpSpeedControlledTest.mo b/AixLib/Fluid/Movers/PumpsPolynomialBased/Examples/PumpSpeedControlled.mo similarity index 64% rename from AixLib/Fluid/Movers/PumpsPolynomialBased/Examples/PumpSpeedControlledTest.mo rename to AixLib/Fluid/Movers/PumpsPolynomialBased/Examples/PumpSpeedControlled.mo index d23c647834..39cd83e65e 100644 --- a/AixLib/Fluid/Movers/PumpsPolynomialBased/Examples/PumpSpeedControlledTest.mo +++ b/AixLib/Fluid/Movers/PumpsPolynomialBased/Examples/PumpSpeedControlled.mo @@ -1,26 +1,17 @@ -within AixLib.Fluid.Movers.PumpsPolynomialBased.Examples; -model PumpSpeedControlledTest - "Testing the pump speed algorithm with the new \"one record\" pump model." +within AixLib.Fluid.Movers.PumpsPolynomialBased.Examples; +model PumpSpeedControlled "Testing the pump speed controlled model." extends Modelica.Icons.Example; - inner Modelica.Fluid.System system( - m_flow_small=pump.Qnom*995/3600*1e-2, - m_flow_start=pump.m_flow_start, - p_ambient=300000, - T_ambient=293.15, - allowFlowReversal=true, - T_start=293.15) - annotation (Placement(transformation(extent={{-90,-90},{-70,-70}}))); replaceable package Medium = Modelica.Media.Water.ConstantPropertyLiquidWater; - PumpSpeedControlled pump( + .AixLib.Fluid.Movers.PumpsPolynomialBased.PumpSpeedControlled pump( + m_flow_nominal=m_flow_nominal, pumpParam=DataBase.Pumps.PumpPolynomialBased.Pump_DN25_H1_6_V4(), calculatePower=true, calculateEfficiency=true, redeclare function efficiencyCharacteristic = AixLib.Fluid.Movers.PumpsPolynomialBased.BaseClasses.efficiencyCharacteristic.Wilo_Formula_efficiency, - redeclare package Medium = Medium, - T_start=system.T_start) + redeclare package Medium = Medium) annotation (Placement(transformation(extent={{-10,0},{10,20}}))); AixLib.Fluid.Movers.PumpsPolynomialBased.BaseClasses.PumpBus pumpBus @@ -28,32 +19,31 @@ model PumpSpeedControlledTest Modelica.Blocks.Sources.BooleanPulse PumpOn(period=600, width=500/600*100) annotation (Placement(transformation(extent={{-70,30},{-50,50}}))); Modelica.Blocks.Sources.Ramp rampPumpSpeed( - height=pump.pumpParam.nMax - pump.pumpParam.nMin, - offset=pump.pumpParam.nMin, + height=pump.pumpParam.nMax - pump.pumpParam.nMin + 200, + offset=pump.pumpParam.nMin - 100, duration(displayUnit="s") = 100, startTime(displayUnit="s") = 100) annotation (Placement(transformation(extent={{46,30},{26,50}}))); - AixLib.Obsolete.Year2021.Fluid.Actuators.Valves.SimpleValve simpleValve( - redeclare package Medium = Medium, - Kvs=system.m_flow_nominal*3600/995/sqrt(system.g*pump.Hnom/1e5*1000), - m_flow_start=system.m_flow_start, - m_flow_small=system.m_flow_small, - dp_start=pump.p_b_start - pump.p_a_start) annotation (Placement(transformation(extent={{-20,-20},{-40,-40}}))); Modelica.Blocks.Sources.Ramp rampValvePosition( offset=0.5, - height=-0.48, + height=0.48, duration(displayUnit="s") = 100, startTime(displayUnit="s") = 300) annotation (Placement(transformation(extent={{0,-70},{-20,-50}}))); AixLib.Fluid.Sources.Boundary_pT vessle( - redeclare package Medium = Medium, - p=system.p_start, - T=system.T_start, - nPorts=2) annotation (Placement(transformation( + redeclare package Medium = Medium, nPorts=2) + annotation (Placement(transformation( extent={{-10,-10},{10,10}}, rotation=-90, origin={-36,20}))); + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=1 + "Nominal mass flow rate"; + Actuators.Valves.TwoWayLinear simpleValve( + redeclare package Medium = Medium, + m_flow_nominal=m_flow_nominal, + dpValve_nominal=1000) + annotation (Placement(transformation(extent={{-20,-20},{-40,-40}}))); equation connect(pumpBus, pump.pumpBus) annotation (Line( points={{0,40},{0,20}}, @@ -72,16 +62,16 @@ equation string="%second", index=2, extent={{6,3},{6,3}})); - connect(rampValvePosition.y, simpleValve.opening) - annotation (Line(points={{-21,-60},{-30,-60},{-30,-38}}, color={0,0,127})); + connect(simpleValve.y, rampValvePosition.y) + annotation (Line(points={{-30,-42},{-30,-60},{-21,-60}}, color={0,0,127})); + connect(pump.port_b, simpleValve.port_a) annotation (Line(points={{10,10},{40, + 10},{40,-30},{-20,-30}}, color={0,127,255})); connect(simpleValve.port_b, vessle.ports[1]) annotation (Line(points={{-40,-30}, - {-52,-30},{-52,10},{-34,10}}, color={0,127,255})); + {-60,-30},{-60,10},{-34,10}}, color={0,127,255})); connect(vessle.ports[2], pump.port_a) annotation (Line(points={{-38,10},{-10,10}}, color={0,127,255})); - connect(pump.port_b, simpleValve.port_a) annotation (Line(points={{10,10},{48, - 10},{48,-30},{-20,-30}}, color={0,127,255})); annotation ( - experiment(StopTime=600), + experiment(Tolerance=1e-6,StopTime=600), Documentation(revisions="
                                    • 2019-09-18 by Alexander Kümpel:
                                      Renaming and restructuring. @@ -115,15 +105,7 @@ equation
                                    "), - __Dymola_Commands(file(ensureSimulated=true)= - "Resources/Scripts/Dymola/Fluid/Movers/PumpsPolynomialBased/Examples/PumpSpeedControlledTest.mos" - "Simulate and plot"), - Diagram(graphics={Text( - extent={{-82,94},{80,66}}, - lineColor={100,100,100}, - horizontalAlignment=TextAlignment.Left, - textString="* Tests PumpPhysicsN model (speed control) -* Tests pump speed increase (ramp) -* Tests pump off-switch -* Tests system pressure drop change (ramp)")})); -end PumpSpeedControlledTest; + __Dymola_Commands(file= + "Resources/Scripts/Dymola/Fluid/Movers/PumpsPolynomialBased/Examples/PumpSpeedControlled.mos" + "Simulate and plot")); +end PumpSpeedControlled; diff --git a/AixLib/Fluid/Movers/PumpsPolynomialBased/Examples/PumpNdpVarControlTest.mo b/AixLib/Fluid/Movers/PumpsPolynomialBased/Examples/PumpSpeedControlledDpV.mo similarity index 60% rename from AixLib/Fluid/Movers/PumpsPolynomialBased/Examples/PumpNdpVarControlTest.mo rename to AixLib/Fluid/Movers/PumpsPolynomialBased/Examples/PumpSpeedControlledDpV.mo index a504d54e4b..2306703391 100644 --- a/AixLib/Fluid/Movers/PumpsPolynomialBased/Examples/PumpNdpVarControlTest.mo +++ b/AixLib/Fluid/Movers/PumpsPolynomialBased/Examples/PumpSpeedControlledDpV.mo @@ -1,18 +1,12 @@ -within AixLib.Fluid.Movers.PumpsPolynomialBased.Examples; -model PumpNdpVarControlTest - "testing the pump dp-var algorithm with the new \"one record\" pump model with internal speed limitation (instead of pump head limitation)." +within AixLib.Fluid.Movers.PumpsPolynomialBased.Examples; +model PumpSpeedControlledDpV + "Testing the pump dp-var algorithm with the speed controlled pump model." extends Modelica.Icons.Example; - inner Modelica.Fluid.System system( - allowFlowReversal=false, - p_ambient=300000, - T_ambient=293.15, - m_flow_start=pump.m_flow_start, - T_start=293.15) - annotation (Placement(transformation(extent={{-90,-90},{-70,-70}}))); replaceable package Medium = Modelica.Media.Water.ConstantPropertyLiquidWater; - PumpSpeedControlled pump( + .AixLib.Fluid.Movers.PumpsPolynomialBased.PumpSpeedControlled pump( + m_flow_nominal=m_flow_nominal, calculatePower=true, calculateEfficiency=true, redeclare package Medium = Medium, @@ -20,24 +14,16 @@ model PumpNdpVarControlTest annotation (Placement(transformation(extent={{-10,0},{10,20}}))); Modelica.Blocks.Sources.BooleanPulse PumpOn(period=600, width=500/600*100) - annotation (Placement(transformation(extent={{-80,40},{-60,60}}))); - AixLib.Obsolete.Year2021.Fluid.Actuators.Valves.SimpleValve simpleValve( - redeclare package Medium = Medium, - m_flow_start=system.m_flow_start, - m_flow_small=system.m_flow_small, - Kvs=system.m_flow_nominal*3600/995/sqrt(system.g*2*pump.Hnom/1e5*1000), - dp_start=pump.p_b_start - pump.p_a_start) annotation (Placement(transformation(extent={{-20,-20},{-40,-40}}))); + annotation (Placement(transformation(extent={{-80,50},{-60,70}}))); Modelica.Blocks.Sources.Ramp rampValvePosition( offset=0.5, - height=-0.48, + height=0.48, duration(displayUnit="s") = 120, startTime(displayUnit="min") = 120) annotation (Placement(transformation(extent={{0,-70},{-20,-50}}))); AixLib.Fluid.Sources.Boundary_pT vessle( redeclare package Medium = Medium, - p=system.p_start, - T=system.T_start, nPorts=2) annotation (Placement(transformation( extent={{-10,-10},{10,10}}, rotation=-90, @@ -45,23 +31,23 @@ model PumpNdpVarControlTest Controls.CtrlDpVarN ctrlDpVarN(pumpParam= DataBase.Pumps.PumpPolynomialBased.Pump_DN25_H1_6_V4()) annotation (Placement(transformation(extent={{-10,26},{10,46}}))); - BaseClasses.PumpBus pumpControllerBus1 annotation (Placement(transformation( - extent={{-10,50},{10,70}}), iconTransformation(extent={{-24,34},{-4, - 54}}))); + BaseClasses.PumpBus pumpBus annotation (Placement(transformation(extent={{-10, + 50},{10,70}}), iconTransformation(extent={{-24,34},{-4,54}}))); + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=1 + "Nominal mass flow rate"; + Actuators.Valves.TwoWayLinear simpleValve( + redeclare package Medium = Medium, + m_flow_nominal=m_flow_nominal, + dpValve_nominal=1000) + annotation (Placement(transformation(extent={{-20,-20},{-40,-40}}))); equation - connect(rampValvePosition.y, simpleValve.opening) - annotation (Line(points={{-21,-60},{-30,-60},{-30,-38}}, color={0,0,127})); - connect(simpleValve.port_b, vessle.ports[1]) annotation (Line(points={{-40, - -30},{-52,-30},{-52,10},{-34,10}}, color={0,127,255})); - connect(vessle.ports[2], pump.port_a) - annotation (Line(points={{-38,10},{-10,10}}, color={0,127,255})); - connect(pump.port_b, simpleValve.port_a) annotation (Line(points={{10,10},{48, - 10},{48,-30},{-20,-30}}, color={0,127,255})); + connect(vessle.ports[1], pump.port_a) + annotation (Line(points={{-34,10},{-10,10}}, color={0,127,255})); connect(pump.pumpBus, ctrlDpVarN.pumpBus) annotation (Line( points={{0,20},{0,26}}, color={255,204,51}, thickness=0.5)); - connect(ctrlDpVarN.pumpControllerBus, pumpControllerBus1) annotation (Line( + connect(ctrlDpVarN.pumpControllerBus, pumpBus) annotation (Line( points={{0,46},{0,60}}, color={255,204,51}, thickness=0.5), Text( @@ -69,14 +55,20 @@ equation index=1, extent={{-6,3},{-6,3}}, horizontalAlignment=TextAlignment.Right)); - connect(PumpOn.y, pumpControllerBus1.onSet) annotation (Line(points={{-59,50}, - {-30,50},{-30,60.05},{0.05,60.05}}, color={255,0,255}), Text( + connect(PumpOn.y, pumpBus.onSet) annotation (Line(points={{-59,60},{-30,60},{ + -30,60.05},{0.05,60.05}}, color={255,0,255}), Text( string="%second", index=1, extent={{6,3},{6,3}}, horizontalAlignment=TextAlignment.Left)); + connect(simpleValve.port_b, vessle.ports[2]) annotation (Line(points={{-40,-30}, + {-60,-30},{-60,10},{-38,10}}, color={0,127,255})); + connect(pump.port_b, simpleValve.port_a) annotation (Line(points={{10,10},{40, + 10},{40,-30},{-20,-30}}, color={0,127,255})); + connect(simpleValve.y, rampValvePosition.y) + annotation (Line(points={{-30,-42},{-30,-60},{-21,-60}}, color={0,0,127})); annotation ( - experiment(StopTime=600), + experiment(Tolerance=1e-6,StopTime=600), Documentation(revisions="
                                    • 2019-09-18 by Alexander Kümpel:
                                      Renaming and restructuring. @@ -131,15 +123,7 @@ equation pump speed might be bound to its limits only.

                                      "), - __Dymola_Commands(file(ensureSimulated=true)= - "Resources/Scripts/Dymola/Fluid/Movers/PumpsPolynomialBased/Examples/PumpNdpVarControlTest.mos" - "Simulate and plot"), - Diagram(graphics={Text( - extent={{-82,94},{80,66}}, - lineColor={100,100,100}, - horizontalAlignment=TextAlignment.Left, - textString="* Tests PumpN model (speed controlled pump with controller block) -* Tests dp-var control (PumpN version, \"dynamic\" calculation) -* Tests system pressure drop change (ramp) -* Tests pump off-switch")})); -end PumpNdpVarControlTest; + __Dymola_Commands(file= + "Resources/Scripts/Dymola/Fluid/Movers/PumpsPolynomialBased/Examples/PumpSpeedControlledDpV.mos" + "Simulate and plot")); +end PumpSpeedControlledDpV; diff --git a/AixLib/Fluid/Movers/PumpsPolynomialBased/Examples/PumpSpeedControlledLimiterTest.mo b/AixLib/Fluid/Movers/PumpsPolynomialBased/Examples/PumpSpeedControlledLimiterTest.mo deleted file mode 100644 index 32fb75f145..0000000000 --- a/AixLib/Fluid/Movers/PumpsPolynomialBased/Examples/PumpSpeedControlledLimiterTest.mo +++ /dev/null @@ -1,129 +0,0 @@ -within AixLib.Fluid.Movers.PumpsPolynomialBased.Examples; -model PumpSpeedControlledLimiterTest - "Testing the pump speed algorithm with the new \"one record\" pump model that bounds speed instead of pump head." - extends Modelica.Icons.Example; - inner Modelica.Fluid.System system( - p_ambient=300000, - T_ambient=293.15, - m_flow_start=pump.m_flow_start, - T_start=293.15, - m_flow_small=pump.m_flow_start*1e-2) - annotation (Placement(transformation(extent={{-90,-90},{-70,-70}}))); - - replaceable package Medium = Modelica.Media.Water.ConstantPropertyLiquidWater; - - PumpSpeedControlled pump( - calculatePower=true, - calculateEfficiency=true, - redeclare function efficiencyCharacteristic = - AixLib.Fluid.Movers.PumpsPolynomialBased.BaseClasses.efficiencyCharacteristic.Wilo_Formula_efficiency, - redeclare package Medium = Medium, - pumpParam=DataBase.Pumps.PumpPolynomialBased.Pump_DN25_H1_6_V4()) - annotation (Placement(transformation(extent={{-10,0},{10,20}}))); - - AixLib.Fluid.Movers.PumpsPolynomialBased.BaseClasses.PumpBus pumpBus - annotation (Placement(transformation(extent={{-10,30},{10,50}}))); - Modelica.Blocks.Sources.BooleanConstant PumpOn - annotation (Placement(transformation(extent={{-70,30},{-50,50}}))); - Modelica.Blocks.Sources.CombiTimeTable tablePumpSpeed( - startTime(displayUnit="s"), - extrapolation=Modelica.Blocks.Types.Extrapolation.Periodic, - table=[0.0,pump.pumpParam.nMin*0.75; 30,pump.pumpParam.nMin*0.75; 60,pump.pumpParam.nMax - *1.25; 90,pump.pumpParam.nMax*1.25; 120,pump.pumpParam.nMin*0.75; 150, - pump.pumpParam.nMin*0.75]) - annotation (Placement(transformation(extent={{46,30},{26,50}}))); - AixLib.Obsolete.Year2021.Fluid.Actuators.Valves.SimpleValve simpleValve( - redeclare package Medium = Medium, - Kvs=system.m_flow_nominal*3600/995/sqrt(system.g*pump.Hnom/1e5*1000), - m_flow_start=system.m_flow_start, - m_flow_small=system.m_flow_small, - dp_start=pump.p_b_start - pump.p_a_start) annotation (Placement(transformation(extent={{-20,-20},{-40,-40}}))); - - Modelica.Blocks.Sources.CombiTimeTable tableValvePosition( - extrapolation=Modelica.Blocks.Types.Extrapolation.Periodic, - startTime(displayUnit="s"), - table=[0,0.75; 10,0.75; 20,0.02; 30,0.02; 40,0.75; 50,0.75]) - annotation (Placement(transformation(extent={{0,-72},{-20,-52}}))); - AixLib.Fluid.Sources.Boundary_pT vessle( - redeclare package Medium = Medium, - p=system.p_start, - T=system.T_start, - nPorts=2) annotation (Placement(transformation( - extent={{-10,-10},{10,10}}, - rotation=-90, - origin={-36,20}))); -equation - connect(pumpBus, pump.pumpBus) annotation (Line( - points={{0,40},{0,20}}, - color={255,204,51}, - thickness=0.5), Text( - string="%first", - index=-1, - extent={{-6,3},{-6,3}})); - connect(PumpOn.y, pumpBus.onSet) annotation (Line(points={{-49,40},{-28,40},{ - -28,40},{-14,40},{-14,40.05},{0.05,40.05}}, color={255,0,255}), Text( - string="%second", - index=2, - extent={{6,3},{6,3}})); - connect(simpleValve.port_b, vessle.ports[1]) annotation (Line(points={{-40,-30}, - {-52,-30},{-52,10},{-34,10}}, color={0,127,255})); - connect(vessle.ports[2], pump.port_a) - annotation (Line(points={{-38,10},{-10,10}}, color={0,127,255})); - connect(pump.port_b, simpleValve.port_a) annotation (Line(points={{10,10},{48, - 10},{48,-30},{-20,-30}}, color={0,127,255})); - connect(tableValvePosition.y[1], simpleValve.opening) - annotation (Line(points={{-21,-62},{-30,-62},{-30,-38}}, color={0,0,127})); - connect(tablePumpSpeed.y[1], pumpBus.rpmSet) annotation (Line(points={{25,40}, - {12,40},{12,40.05},{0.05,40.05}}, color={0,0,127}), Text( - string="%second", - index=2, - extent={{6,3},{6,3}})); - annotation ( - experiment(StopTime=200), - Documentation(revisions="
                                        -
                                      • 2019-09-18 by Alexander Kümpel:
                                        - Renaming and restructuring. -
                                      • -
                                      • 2018-05-08 by Peter Matthes:
                                        - Removes most advanced Dymola settings from plot script. This fixes - a situation when Dymola didn't display anything in the plot windows - and it removed the variables tree. -
                                      • -
                                      • 2018-03-01 by Peter Matthes:
                                        - Adjusted parameter settings. From pump model removed m_flow_start - (should be used as output from pump rather than a setting). Changed - setting of system.m_flow_start to become pump.m_flow_start. -
                                      • -
                                      • 2018-01-29 by Peter Matthes:
                                        - * The selectable function for efficiency calculation could be - removed from the parameter dialog.
                                        - * Increases simulation time and table time settings. -
                                      • -
                                      • 2017-12-06 by Peter Matthes
                                        - Switches to useABCformulas=false since the Pico 1-4 data set does - not contain usable ABC coefficients. -
                                      • -
                                      • 2017-12-01 by Peter Matthes
                                        - Implemented. Plot script needed updating due to name changes in - pump model. -
                                      • -
                                      -", info=" -

                                      - Tests the pump model with single parameter record that also uses the - limitiation of the pump speed (pumpParam.maxMinSpeedCurves) - instead of the pump head limitation (maxMinHead). -

                                      -"), - __Dymola_Commands(file(ensureSimulated=true)= - "Resources/Scripts/Dymola/Fluid/Movers/PumpsPolynomialBased/Examples/PumpSpeedControlledLimiterTest.mos" - "Simulate and plot"), - Diagram(graphics={Text( - extent={{-82,94},{80,66}}, - lineColor={100,100,100}, - horizontalAlignment=TextAlignment.Left, - textString="* Tests PumpPhysicsN model (speed control) -* Tests pump speed change (table) -* Tests speed bounding function (n > nMax, n < nMin) -* Tests system pressure drop change (table)")})); -end PumpSpeedControlledLimiterTest; diff --git a/AixLib/Fluid/Movers/PumpsPolynomialBased/Examples/package.mo b/AixLib/Fluid/Movers/PumpsPolynomialBased/Examples/package.mo index e47e04f986..5107cdd1f6 100644 --- a/AixLib/Fluid/Movers/PumpsPolynomialBased/Examples/package.mo +++ b/AixLib/Fluid/Movers/PumpsPolynomialBased/Examples/package.mo @@ -1,6 +1,118 @@ -within AixLib.Fluid.Movers.PumpsPolynomialBased; +within AixLib.Fluid.Movers.PumpsPolynomialBased; package Examples extends Modelica.Icons.ExamplesPackage; + model PumpHeadControlled "testing the head controlled pump model." + extends Modelica.Icons.Example; + + replaceable package Medium = + Modelica.Media.Water.ConstantPropertyLiquidWater; + + .AixLib.Fluid.Movers.PumpsPolynomialBased.PumpHeadControlled pump( + m_flow_nominal=m_flow_nominal, + calculatePower=true, + calculateEfficiency=true, + redeclare package Medium = Medium, + pumpParam=DataBase.Pumps.PumpPolynomialBased.Pump_DN25_H1_8_V9()) + annotation (Placement(transformation(extent={{-10,0},{10,20}}))); + + Modelica.Blocks.Sources.Ramp rampValvePosition( + offset=0.5, + height=0.5, + duration(displayUnit="s") = 120, + startTime(displayUnit="min") = 120) + annotation (Placement(transformation(extent={{0,-70},{-20,-50}}))); + AixLib.Fluid.Sources.Boundary_pT vessle( + redeclare package Medium = Medium, nPorts=2) + annotation (Placement(transformation( + extent={{-10,-10},{10,10}}, + rotation=-90, + origin={-36,20}))); + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=0.1 + "Nominal mass flow rate"; + Modelica.Blocks.Sources.BooleanPulse PumpOn1(period=600, width=500/600*100, + startTime=0) + annotation (Placement(transformation(extent={{-70,30},{-50,50}}))); + Modelica.Blocks.Sources.Ramp rampPumpDp( + height=2, + offset=2, + duration(displayUnit="s") = 100, + startTime(displayUnit="s") = 100) + annotation (Placement(transformation(extent={{46,30},{26,50}}))); + BaseClasses.PumpBus pumpBus + annotation (Placement(transformation(extent={{-10,30},{10,50}}))); + Actuators.Valves.TwoWayLinear simpleValve( + redeclare package Medium = Medium, + m_flow_nominal=m_flow_nominal, + CvData=AixLib.Fluid.Types.CvTypes.Kv, + Kv=6.3, + dpFixed_nominal=1000) + annotation (Placement(transformation(extent={{-20,-20},{-40,-40}}))); + equation + connect(PumpOn1.y, pumpBus.onSet) annotation (Line(points={{-49,40},{-28,40},{ + -28,40},{-14,40},{-14,40.05},{0.05,40.05}}, color={255,0,255}), Text( + string="%second", + index=2, + extent={{6,3},{6,3}})); + connect(pumpBus, pump.pumpBus) annotation (Line( + points={{0,40},{0,20}}, + color={255,204,51}, + thickness=0.5), Text( + string="%first", + index=-1, + extent={{-3,6},{-3,6}}, + horizontalAlignment=TextAlignment.Right)); + connect(rampPumpDp.y, pumpBus.dpSet) annotation (Line(points={{25,40},{12,40}, + {12,40.05},{0.05,40.05}}, color={0,0,127}), Text( + string="%second", + index=1, + extent={{-6,3},{-6,3}}, + horizontalAlignment=TextAlignment.Right)); + connect(pump.port_b, simpleValve.port_a) annotation (Line(points={{10,10},{40, + 10},{40,-30},{-20,-30}}, color={0,127,255})); + connect(vessle.ports[1], pump.port_a) + annotation (Line(points={{-34,10},{-10,10}}, color={0,127,255})); + connect(simpleValve.port_b, vessle.ports[2]) annotation (Line(points={{-40,-30}, + {-60,-30},{-60,10},{-38,10}}, color={0,127,255})); + connect(rampValvePosition.y, simpleValve.y) + annotation (Line(points={{-21,-60},{-30,-60},{-30,-42}}, color={0,0,127})); + annotation ( + experiment( + StopTime=600, + Tolerance=1e-06, + __Dymola_Algorithm="Dassl"), + Documentation(revisions="
                                        +
                                      • 2019-09-18 by Alexander Kümpel:
                                        + Renaming and restructuring. +
                                      • +
                                      • 2018-03-01 by Peter Matthes:
                                        + Adjusted parameter settings. From pump model removed Nstart (became + Nnom in pump model) and m_flow_start (should be used as output from + pump rather than a setting). Changed setting of system.m_flow_start + to become pump.m_flow_start. +
                                      • +
                                      • 2018-02-01 by Peter Matthes
                                        + Switches pump off near end of simulation to check for handling of + power and efficiency calculation. Improves plot script. +
                                      • +
                                      • 2018-01-29 by Peter Matthes:
                                        + * Removes parameter useABCformula in pump model and changes pump + record to Stratos_Pico_25_1_6.
                                        + * The selectable function for efficiency calculation could be + removed from the parameter dialog. +
                                      • +
                                      • 2018-01-26 by Peter Matthes:
                                        + Changes parameter name n_start into Nstart in the pump models. +
                                      • +
                                      • 2017-11-22 by Peter Matthes
                                        + Implemented +
                                      • +
                                      +"), + __Dymola_Commands(file= + "Resources/Scripts/Dymola/Fluid/Movers/PumpsPolynomialBased/Examples/PumpHeadControlled.mos" + "Simulate and plot")); + end PumpHeadControlled; + annotation(preferredView="info"); end Examples; diff --git a/AixLib/Fluid/Movers/PumpsPolynomialBased/Examples/package.order b/AixLib/Fluid/Movers/PumpsPolynomialBased/Examples/package.order index 40c4ba7b5e..dda88e8512 100644 --- a/AixLib/Fluid/Movers/PumpsPolynomialBased/Examples/package.order +++ b/AixLib/Fluid/Movers/PumpsPolynomialBased/Examples/package.order @@ -1,4 +1,3 @@ -PumpHdpVarControlTest -PumpNdpVarControlTest -PumpSpeedControlledLimiterTest -PumpSpeedControlledTest +PumpHeadControlled +PumpSpeedControlled +PumpSpeedControlledDpV diff --git a/AixLib/Fluid/Movers/PumpsPolynomialBased/PumpHeadControlled.mo b/AixLib/Fluid/Movers/PumpsPolynomialBased/PumpHeadControlled.mo index 3632fe5b0f..783698dd0d 100644 --- a/AixLib/Fluid/Movers/PumpsPolynomialBased/PumpHeadControlled.mo +++ b/AixLib/Fluid/Movers/PumpsPolynomialBased/PumpHeadControlled.mo @@ -1,21 +1,16 @@ -within AixLib.Fluid.Movers.PumpsPolynomialBased; +within AixLib.Fluid.Movers.PumpsPolynomialBased; model PumpHeadControlled "Pump model with pump head control, an onOff-Switch and limitation of pump head." - // ===================== - // Parameters - // ===================== - // ----------------------- - // Flow Characteristic - // ----------------------- + + extends AixLib.Fluid.Interfaces.PartialTwoPortInterface; + + + parameter AixLib.DataBase.Pumps.PumpPolynomialBased.PumpBaseRecord pumpParam= AixLib.DataBase.Pumps.PumpPolynomialBased.PumpBaseRecord() "pump parameter record" annotation (choicesAllMatching=true); - // ------------------------------------------- - // Parameter for nominal operating point - // (used for initializing external components) - // ------------------------------------------- parameter Real Qnom( quantity="VolumeFlowRate", unit="m3/h", @@ -23,87 +18,56 @@ model PumpHeadControlled "Nominal volume flow rate in m³/h (~0.67*Qmax). Qmax is taken from pumpParam.maxMinSpeedCurves." annotation (Dialog(tab="Nominal design point", group="Design point of pump. Used for start value calculation.")); - parameter Modelica.SIunits.Conversions.NonSIunits.AngularVelocity_rpm Nnom= + parameter Modelica.Units.NonSI.AngularVelocity_rpm Nnom= Modelica.Math.Vectors.interpolate( - x=pumpParam.maxMinSpeedCurves[:,1], - y=pumpParam.maxMinSpeedCurves[:,2], - xi=Qnom) - "Pump speed in design point (Qnom,Hnom). + x=pumpParam.maxMinSpeedCurves[:, 1], + y=pumpParam.maxMinSpeedCurves[:, 2], + xi=Qnom) "Pump speed in design point (Qnom,Hnom). Default is maximum speed at Qnom from pumpParam.maxMinSpeedCurves. Note that N is defined only on [nMin, nMax]. Due to power limitation - N might be smaller than nMax for higher Q." - annotation (Dialog(tab="Nominal design point", group="Design point of pump. Used for start value calculation.")); + N might be smaller than nMax for higher Q." annotation (Dialog(tab= + "Nominal design point", group= + "Design point of pump. Used for start value calculation.")); + parameter Modelica.Units.SI.Height Hnom= + AixLib.Fluid.Movers.PumpsPolynomialBased.BaseClasses.polynomial2D( + pumpParam.cHQN, + Qnom, + Nnom) "Nominal pump head in m (water). + Will by default be calculated automatically from Qnom and Nnom. + If you change the value make sure to also set a feasible Qnom." + annotation (Dialog(tab="Nominal design point", group= + "Design point of pump. Used for start value calculation.")); - extends Modelica.Fluid.Interfaces.PartialTwoPort( - port_b_exposesState=energyDynamics <> Modelica.Fluid.Types.Dynamics.SteadyState - or massDynamics <> Modelica.Fluid.Types.Dynamics.SteadyState, - port_a(p(start=p_a_start), m_flow(start=m_flow_start, min=if - allowFlowReversal and not checkValve then -Modelica.Constants.inf - else 0)), - port_b(p(start=p_b_start), m_flow(start=-m_flow_start, max=if - allowFlowReversal and not checkValve then +Modelica.Constants.inf - else 0))); - // Parameters + // Parameters // Initialization - parameter Real Qstart( - quantity="VolumeFlowRate", - unit="m3/h", - displayUnit="m3/h")=Qnom "Volume flow rate in m³/h at start of simulation. - Default is design point (Qnom)." - annotation (Dialog(tab="Initialization", group="Volume flow")); - parameter Medium.MassFlowRate m_flow_start=Qstart*Medium.density_pTX( - p_a_start, - T_start, - X_start)/3600 "Start value of m_flow in port_a.m_flow - Used to initialize ports a and b and for initial checks of model. - Use it to conveniently initialize upper level models' start mass flow rate. - Default is to convert Qnom value. Disabled for user change by default." - annotation (Dialog(tab="Initialization", group="Volume flow", enable=false)); - - parameter Modelica.SIunits.Height Hstart=max(0, - AixLib.Fluid.Movers.PumpsPolynomialBased.BaseClasses.polynomial2D( - pumpParam.cHQN, - Qstart, - Nnom)) " - Start value of pump head. Will be used to initialize criticalDamping block - and pressure in ports a and b. - Default is to calculate it from Qstart and Nnom. If you change the value - make sure to also set Qstart to a suitable value." + parameter Modelica.Units.SI.Height Hstart=Hnom " + Start value of pump head. Will be used to initialize criticalDamping." annotation (Dialog(tab="Initialization", group="Pressure")); - parameter Medium.AbsolutePressure p_a_start=system.p_start " - Start value for inlet pressure. Use it to set a defined absolute pressure - in the circuit. For example system.p_start. Also use it to initialize - upper level models properly. It will affect p_b_start." - annotation (Dialog(tab="Initialization", group="Pressure")); - parameter Medium.AbsolutePressure p_b_start=p_a_start + Hstart*system.g* - Medium.density_pTX( - p_a_start, - T_start, - X_start) " - Start value for outlet pressure. It depends on p_a_start and Hstart. - It is deactivated for user input by default. Use it in an upper level model - for proper initialization of other pressure states in that circuit." - annotation (Dialog( - tab="Initialization", - group="Pressure", - enable=false)); + parameter Modelica.Media.Interfaces.Types.AbsolutePressure p_start=Medium.p_default + "Start value of pressure" annotation (Dialog(tab="Initialization", group="Pressure")); + parameter Modelica.Media.Interfaces.Types.Temperature T_start=Medium.T_default + "Start value of temperature" annotation (Dialog(tab="Initialization", group="Temperature")); + + // Dynamics + parameter Modelica.Fluid.Types.Dynamics energyDynamics=Modelica.Fluid.Types.Dynamics.DynamicFreeInitial + "Type of energy balance: dynamic (3 initialization options) or steady state" + annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Equations")); + parameter Modelica.Fluid.Types.Dynamics massDynamics=energyDynamics + "Type of mass balance: dynamic (3 initialization options) or steady state" annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Equations")); // Assumptions - parameter Boolean checkValve=false "= true to prevent reverse flow" - annotation (Dialog(tab="Assumptions"), Evaluate=true); - parameter Modelica.SIunits.Volume V=0 "Volume inside the pump" + parameter Modelica.Units.SI.Volume V=0 "Volume inside the pump" annotation (Dialog(tab="Assumptions"), Evaluate=true); - // Energy and mass balance - extends Modelica.Fluid.Interfaces.PartialLumpedVolume( - final fluidVolume=V, - energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyState, - massDynamics=Modelica.Fluid.Types.Dynamics.SteadyState, - final p_start=p_b_start); + + final parameter Modelica.Units.SI.Density rho_default=Medium.density_pTX( + p=Medium.p_default, + T=Medium.T_default, + X=Medium.X_default) "Default medium density"; // Power and Efficiency - parameter Boolean calculatePower=false "calc. power consumption?" annotation ( + parameter Boolean calculatePower=true "calc. power consumption?" annotation ( Dialog(tab="General", group="Power and Efficiency")); parameter Boolean calculateEfficiency=false "calc. efficency? (eta = f(H, Q, P))" annotation (Dialog( @@ -112,19 +76,20 @@ model PumpHeadControlled enable=calculate_Power)); replaceable function efficiencyCharacteristic = AixLib.Fluid.Movers.PumpsPolynomialBased.BaseClasses.efficiencyCharacteristic.Wilo_Formula_efficiency - constrainedby AixLib.Fluid.Movers.PumpsPolynomialBased.BaseClasses.efficiencyCharacteristic.baseEfficiency + constrainedby + AixLib.Fluid.Movers.PumpsPolynomialBased.BaseClasses.efficiencyCharacteristic.baseEfficiency "eta = f(H, Q, P)" annotation (Dialog( tab="General", group="Power and Efficiency", enable=calculate_Efficiency), choicesAllMatching=true); // Variables - Modelica.SIunits.Pressure dp_pump=port_b.p - port_a.p "Pressure increase"; + Modelica.Units.SI.Pressure dp_pump "Pressure increase"; Modelica.Blocks.Interfaces.RealOutput head( quantity="Length", - unit="m") = dp_pump/(medium.d*system.g) "Pump head"; - Modelica.SIunits.MassFlowRate m_flow=port_a.m_flow "Mass flow rate (total)"; - Modelica.SIunits.AngularVelocity n "pump speed calculated from volume flow and head n=f(Q,H)"; + unit="m") "Pump head"; + Modelica.Units.SI.AngularVelocity n + "pump speed calculated from volume flow and head n=f(Q,H)"; Modelica.Blocks.Interfaces.RealOutput power(quantity="Power", unit="W") "electical power"; Modelica.Blocks.Interfaces.RealOutput eta( @@ -132,12 +97,11 @@ model PumpHeadControlled unit="1", min=0) "efficiency"; - Modelica.Blocks.Sources.RealExpression Vflow_m3h(y=if noEvent(port_b.m_flow - > 0) then 0 else -port_b.m_flow/medium.d*3600) + Modelica.Blocks.Sources.RealExpression Vflow_m3h(y=m_flow/rho_default*3600) "conversion of mass flow rate to volume flow rate" annotation (Placement(transformation(extent={{-100,35},{-80,55}}))); - Modelica.Blocks.Tables.CombiTable1D maxMinTable( + Modelica.Blocks.Tables.CombiTable1Dv maxMinTable( columns={2,3}, table=pumpParam.maxMinHeight, tableName="NoName", @@ -161,83 +125,49 @@ protected annotation (Placement(transformation(extent={{-100,66},{-80,86}}))); Modelica.Blocks.Sources.RealExpression pumpHead(y=head) "implements a connectable object that can be cuppled with pumpBus." - annotation (Placement(transformation(extent={{74,10},{94,30}}))); - Modelica.Blocks.Sources.RealExpression pumpEfficiency(y=eta) if - calculateEfficiency + annotation (Placement(transformation(extent={{73,-20},{93,0}}))); + Modelica.Blocks.Sources.RealExpression pumpEfficiency(y=eta) + if calculateEfficiency "implements a connectable object that can be cuppled with pumpBus." annotation (Placement(transformation(extent={{-100,50},{-80,70}}))); Modelica.Blocks.Sources.Constant off(k=0) annotation (Placement(transformation(extent={{23,7},{33,17}}))); + Modelica.Blocks.Sources.RealExpression pressure_difference(y=-dp_pump) + "implements a connectable object that can be cuppled with pumpBus." + annotation (Placement(transformation(extent={{-71,-76},{-51,-56}}))); + Modelica.Blocks.Continuous.CriticalDamping + criticalDamping( + y_start=Hstart, + f=1/5, + initType=Modelica.Blocks.Types.Init.InitialOutput) + annotation (Placement(transformation(extent={{50,-20},{70,0}}))); public Modelica.Blocks.Logical.Switch onOff annotation (Placement(transformation(extent={{48,10},{68,30}}))); Modelica.Blocks.Sources.RealExpression realExpression(y=n) annotation (Placement(transformation(extent={{9,34},{29,54}}))); -initial equation - assert( - m_flow_start >= 0, - "Warning: - In a pump model - parameter 'm_flow_start' (" + String(m_flow_start) + ") has a negative value. - But this pump model cannot produce a reverse flow. Consider changing the - initialization setup.", - level=AssertionLevel.warning); - assert( - p_b_start >= p_a_start, - "Warning: - In a pump model - parameter 'p_a_start' (" + String(p_a_start) + ") is bigger than 'p_b_start' - (" + String(p_b_start) + "). But this pump model can only produce a positive - pump head. Consider changing the initialization setup.", - level=AssertionLevel.warning); - assert( - if calculatePower then sum(abs({pumpParam.cHQN[3, 1],pumpParam.cHQN[2, 2], - pumpParam.cHQN[1, 3]})) <> 0 and (sum(abs(pumpParam.cHQN)) == sum(abs({ - pumpParam.cHQN[3, 1],pumpParam.cHQN[2, 2],pumpParam.cHQN[1, 3]}))) else - true, - "Warning: - In a pump model - parameter 'calculatePower' was set true but the corresponding coefficients - in pumpParam.cHQN ([3,1], [2,2] and [1,3]) seem all to be zero OR there are - more than those 3 coefficients defined in cHQN. This pump model needs to - calculate pump speed (n) using those 3 parameters. If they are zero OR there - are more than those three coefficients defined in cHQN then speed calculation - makes no sense and hence power calculation is rendered useless. Please - check the correstonding pump record.", - level=AssertionLevel.warning); -equation - - // Energy balance - Hb_flow = port_a.m_flow*actualStream(port_a.h_outflow) + port_b.m_flow* - actualStream(port_b.h_outflow); - // Ports - port_a.h_outflow = medium.h; - port_b.h_outflow = medium.h; - port_b.p = medium.p - "outlet pressure is equal to medium pressure, which includes Wb_flow"; - - // Mass balance - mb_flow = port_a.m_flow + port_b.m_flow; - - mbXi_flow = port_a.m_flow*actualStream(port_a.Xi_outflow) + port_b.m_flow* - actualStream(port_b.Xi_outflow); - port_a.Xi_outflow = medium.Xi; - port_b.Xi_outflow = medium.Xi; - - mbC_flow = port_a.m_flow*actualStream(port_a.C_outflow) + port_b.m_flow* - actualStream(port_b.C_outflow); - port_a.C_outflow = C; - port_b.C_outflow = C; + AixLib.Fluid.Movers.BaseClasses.IdealSource idealSource( + redeclare package Medium = Medium, + final allowFlowReversal=allowFlowReversal, + final m_flow_small=1E-4*abs(m_flow_nominal), + final control_m_flow=false) + annotation (Placement(transformation(extent={{-31,-90},{-11,-70}}))); + MixingVolumes.MixingVolume vol( + redeclare package Medium = Medium, + energyDynamics=energyDynamics, + massDynamics=massDynamics, + p_start=p_start, + T_start=T_start, + m_flow_nominal=m_flow_nominal, + m_flow_small=1E-4*abs(m_flow_nominal), + allowFlowReversal=allowFlowReversal, + final V=V, + nPorts=2) annotation (Placement(transformation(extent={{23,-80},{43,-60}}))); +equation - // Not yet implemented - Wb_flow = 0; - Qb_flow = 0; - // Will most certainly remain zero for all models - //Calculate Vflow_m3h - // Physical limitations of the pumps connect(maxMinTable.u[1], Vflow_m3h.y) "for the interpolation of the max curve" annotation (Line(points={{-77,20},{-77,45},{-79,45}}, color={0,0,127})); @@ -245,8 +175,8 @@ equation "for the interpolation of the min curve" annotation (Line(points={{-77,20},{-77,45},{-79,45}}, color={0,0,127})); - head = onOff.y "safe head after limiting and other checks."; - + head = criticalDamping.y "safe head after limiting and other checks."; + dp_pump = head * rho_default * Modelica.Constants.g_n; //Calculate power and Efficiency if pumpBus.onSet and head > AixLib.Fluid.Movers.PumpsPolynomialBased.BaseClasses.polynomial2D( @@ -277,7 +207,7 @@ equation Vflow_m3h.y, head, power, - medium.d) else 0; + rho_default) else 0; else n = 0; power = 0; @@ -298,13 +228,13 @@ equation string="%second", index=1, extent={{6,3},{6,3}})); - connect(pumpHead.y, pumpBus.dpMea) annotation (Line(points={{95,20},{96,20},{ - 96,90},{0.5975,90},{0.5975,100.597}}, color={0,0,127}), Text( + connect(pumpHead.y, pumpBus.dpMea) annotation (Line(points={{94,-10},{95,-10}, + {95,90},{0.5975,90},{0.5975,100.597}},color={0,0,127}), Text( string="%second", index=1, extent={{6,3},{6,3}})); - connect(pumpEfficiency.y, pumpBus.efficiencyMea) annotation (Line(points={{-79, - 60},{-62,60},{-62,100.597},{0.5975,100.597}}, color={0,0,127}), Text( + connect(pumpEfficiency.y, pumpBus.efficiencyMea) annotation (Line(points={{-79,60}, + {-62,60},{-62,100.597},{0.5975,100.597}}, color={0,0,127}), Text( string="%second", index=1, extent={{6,3},{6,3}})); @@ -319,11 +249,6 @@ equation {{-26,26},{-14,26},{-14,28},{-12,28}}, color={0,0,127})); connect(variableLimiter.y, onOff.u1) annotation (Line(points={{11,20},{15,20}, {15,28},{46,28}}, color={0,0,127})); - connect(maxMinTable.y, pumpBus.maxMinHead) annotation (Line(points={{-54,20}, - {-52,20},{-52,39},{0.5,39},{0.5,100.5}}, color={0,0,127}), Text( - string="%second", - index=3, - extent={{6,3},{6,3}})); connect(Vflow_m3h.y, pumpBus.vFRcur_m3h) annotation (Line(points={{-79,45},{-56, 45},{-56,85},{0.5,85},{0.5,100.5}}, color={0,0,127}), Text( string="%second", @@ -342,6 +267,16 @@ equation index=1, extent={{-3,6},{-3,6}}, horizontalAlignment=TextAlignment.Right)); + connect(pressure_difference.y,idealSource. dp_in) + annotation (Line(points={{-50,-66},{-15,-66},{-15,-72}}, color={0,0,127})); + connect(idealSource.port_a, port_a) annotation (Line(points={{-31,-80},{-81,-80}, + {-81,0},{-100,0}}, color={0,127,255})); + connect(idealSource.port_b,vol. ports[1]) + annotation (Line(points={{-11,-80},{31,-80}}, color={0,127,255})); + connect(vol.ports[2], port_b) + annotation (Line(points={{35,-80},{100,-80},{100,0}}, color={0,127,255})); + connect(onOff.y, criticalDamping.u) annotation (Line(points={{69,20},{70,20},{ + 70,5},{41,5},{41,-10},{48,-10}}, color={0,0,127})); annotation ( Diagram(coordinateSystem( preserveAspectRatio=true, @@ -471,19 +406,6 @@ equation alternative for the given assumption could be to introduce a parameter Qmax in the pump record that contains the exact value.

                                      -
                                      - Nstart -
                                      -

                                      - The start speed of the pump will be determined from interpolation in - the maxMinSpeedCurves table, providing the maximum speed possible at - a given volume flow rate: -

                                      -

                                      - Nstart = Modelica.Math.Vectors.interpolate(x=pumpParam.maxMinSpeedCurves[:,1], - y=pumpParam.maxMinSpeedCurves[:,2], xi=Qstart) -

                                      Assumption and limitations

                                      diff --git a/AixLib/Fluid/Movers/PumpsPolynomialBased/PumpSpeedControlled.mo b/AixLib/Fluid/Movers/PumpsPolynomialBased/PumpSpeedControlled.mo index 9e3690bddb..252e71c25b 100644 --- a/AixLib/Fluid/Movers/PumpsPolynomialBased/PumpSpeedControlled.mo +++ b/AixLib/Fluid/Movers/PumpsPolynomialBased/PumpSpeedControlled.mo @@ -1,13 +1,11 @@ -within AixLib.Fluid.Movers.PumpsPolynomialBased; +within AixLib.Fluid.Movers.PumpsPolynomialBased; model PumpSpeedControlled "Pump model with speed control, onOff-Switch and bounding of speed instead of pump delivery head." - // ===================== - // Parameters - // ===================== - // ----------------------- - // Flow Characteristic - // ----------------------- + extends AixLib.Fluid.Interfaces.PartialTwoPortInterface; + // Energy and mass balance (defines Medium start properties) + + parameter AixLib.DataBase.Pumps.PumpPolynomialBased.PumpBaseRecord pumpParam= AixLib.DataBase.Pumps.PumpPolynomialBased.PumpBaseRecord() "pump parameter record" annotation (choicesAllMatching=true); @@ -18,94 +16,55 @@ model PumpSpeedControlled "Nominal volume flow rate in m³/h (~0.67*Qmax). Qmax is taken from pumpParam.maxMinSpeedCurves." annotation (Dialog(tab="Nominal design point", group="Design point of pump. Used for start value calculation.")); - parameter Modelica.SIunits.Conversions.NonSIunits.AngularVelocity_rpm Nnom= + parameter Modelica.Units.NonSI.AngularVelocity_rpm Nnom= Modelica.Math.Vectors.interpolate( - x=pumpParam.maxMinSpeedCurves[:,1], - y=pumpParam.maxMinSpeedCurves[:,2], - xi=Qnom) - "Pump speed in design point (Qnom,Hnom). + x=pumpParam.maxMinSpeedCurves[:, 1], + y=pumpParam.maxMinSpeedCurves[:, 2], + xi=Qnom) "Pump speed in design point (Qnom,Hnom). Default is maximum speed at Qnom from pumpParam.maxMinSpeedCurves. Note that N is defined only on [nMin, nMax]. Due to power limitation - N might be smaller than nMax for higher Q." - annotation (Dialog(tab="Nominal design point", group="Design point of pump. Used for start value calculation.")); - parameter Modelica.SIunits.Height Hnom= + N might be smaller than nMax for higher Q." annotation (Dialog(tab= + "Nominal design point", group= + "Design point of pump. Used for start value calculation.")); + parameter Modelica.Units.SI.Height Hnom= AixLib.Fluid.Movers.PumpsPolynomialBased.BaseClasses.polynomial2D( pumpParam.cHQN, Qnom, Nnom) "Nominal pump head in m (water). Will by default be calculated automatically from Qnom and Nnom. If you change the value make sure to also set a feasible Qnom." - annotation (Dialog(tab="Nominal design point", group="Design point of pump. Used for start value calculation.")); - - extends Modelica.Fluid.Interfaces.PartialTwoPort( - port_b_exposesState=energyDynamics <> Modelica.Fluid.Types.Dynamics.SteadyState - or massDynamics <> Modelica.Fluid.Types.Dynamics.SteadyState, - port_a(p(start=p_a_start), m_flow(start=m_flow_start, min=if - allowFlowReversal and not checkValve then -1.5*max(pumpParam.maxMinSpeedCurves[ - :, 1]) else 0)), - port_b(p(start=p_b_start), m_flow(start=-m_flow_start, max=if - allowFlowReversal and not checkValve then +1.5*max(pumpParam.maxMinSpeedCurves[ - :, 1]) else 0))); + annotation (Dialog(tab="Nominal design point", group= + "Design point of pump. Used for start value calculation.")); // Parameters // Initialization - parameter Real Qstart( - quantity="VolumeFlowRate", - unit="m3/h", - displayUnit="m3/h")=Qnom "Volume flow rate in m³/h at start of simulation. - Default is design point (Qnom)." - annotation (Dialog(tab="Initialization", group="Volume flow")); - parameter Medium.MassFlowRate m_flow_start=Qstart*Medium.density_pTX( - p_a_start, - T_start, - X_start)/3600 "Start value of m_flow in port_a.m_flow - Used to initialize ports a and b and for initial checks of model. - Use it to conveniently initialize upper level models' start mass flow rate. - Default is to convert Qnom value. Disabled for user change by default." - annotation (Dialog(tab="Initialization", group="Volume flow", enable=false)); - parameter Modelica.SIunits.Height Hstart=max(0, - AixLib.Fluid.Movers.PumpsPolynomialBased.BaseClasses.polynomial2D( - pumpParam.cHQN, - Qstart, - Nnom)) " - Start value of pump head. Will be used to initialize criticalDamping block - and pressure in ports a and b. - Default is to calculate it from Qstart and Nnom. If you change the value - make sure to also set Qstart to a suitable value." - annotation (Dialog(tab="Initialization", group="Pressure")); - parameter Medium.AbsolutePressure p_a_start=system.p_start " - Start value for inlet pressure. Use it to set a defined absolute pressure - in the circuit. For example system.p_start. Also use it to initialize - upper level models properly. It will affect p_b_start." + parameter Modelica.Units.SI.Height Hstart=Hnom " + Start value of pump head. Will be used to initialize criticalDamping." annotation (Dialog(tab="Initialization", group="Pressure")); - parameter Medium.AbsolutePressure p_b_start=p_a_start + Hstart*system.g* - Medium.density_pTX( - p_a_start, - T_start, - X_start) " - Start value for outlet pressure. It depends on p_a_start and Hstart. - It is deactivated for user input by default. Use it in an upper level model - for proper initialization of other pressure states in that circuit." - annotation (Dialog( - tab="Initialization", - group="Pressure", - enable=false)); + parameter Modelica.Media.Interfaces.Types.AbsolutePressure p_start=Medium.p_default + "Start value of pressure" annotation (Dialog(tab="Initialization", group="Pressure")); + parameter Modelica.Media.Interfaces.Types.Temperature T_start=Medium.T_default + "Start value of temperature" annotation (Dialog(tab="Initialization", group="Temperature")); + + // Dynamics + parameter Modelica.Fluid.Types.Dynamics energyDynamics=Modelica.Fluid.Types.Dynamics.DynamicFreeInitial + "Type of energy balance: dynamic (3 initialization options) or steady state" + annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Equations")); + parameter Modelica.Fluid.Types.Dynamics massDynamics=energyDynamics + "Type of mass balance: dynamic (3 initialization options) or steady state" annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Equations")); // Assumptions - parameter Boolean checkValve=false "= true to prevent reverse flow" - annotation (Dialog(tab="Assumptions"), Evaluate=true); - parameter Modelica.SIunits.Volume V=0 "Volume inside the pump" + parameter Modelica.Units.SI.Volume V=0 "Volume inside the pump" annotation (Dialog(tab="Assumptions"), Evaluate=true); - // Energy and mass balance (defines Medium start properties) - extends Modelica.Fluid.Interfaces.PartialLumpedVolume( - final fluidVolume=V, - energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyState, - massDynamics=Modelica.Fluid.Types.Dynamics.SteadyState, - final p_start=p_b_start); + + final parameter Modelica.Units.SI.Density rho_default=Medium.density_pTX( + p=Medium.p_default, + T=Medium.T_default, + X=Medium.X_default) "Default medium density"; // Power and Efficiency - parameter Boolean calculatePower=false "calc. power consumption?" annotation ( + parameter Boolean calculatePower=true "calc. power consumption?" annotation ( Dialog(tab="General", group="Power and Efficiency")); parameter Boolean calculateEfficiency=false "calc. efficency? (eta = f(H, Q, P))" annotation (Dialog( @@ -123,33 +82,27 @@ model PumpSpeedControlled Defining constants that will be used as min, max, nominal attributes for variables */ protected - constant Modelica.SIunits.Length constHmax = 20; - constant Modelica.SIunits.Length constHnom = 0.5*constHmax; - constant Modelica.SIunits.PressureDifference constDpMax=1.1*constHmax*995*system.g; - constant Modelica.SIunits.PressureDifference constDpNom=constDpMax*0.5; - constant Modelica.SIunits.MassFlowRate constMflowMax=60*995/3600; - constant Modelica.SIunits.MassFlowRate constMflowNom=2*995/3600; + constant Modelica.Units.SI.Length constHmax=20; + constant Modelica.Units.SI.Length constHnom=0.5*constHmax; + constant Modelica.Units.SI.PressureDifference constDpMax=1.1*constHmax*995* + Modelica.Constants.g_n; + constant Modelica.Units.SI.PressureDifference constDpNom=constDpMax*0.5; + constant Modelica.Units.SI.MassFlowRate constMflowMax=60*995/3600; + constant Modelica.Units.SI.MassFlowRate constMflowNom=2*995/3600; // Variables public - Modelica.SIunits.PressureDifference dp_pump( + Modelica.Units.SI.PressureDifference dp_pump( min=0, max=constDpMax, - nominal=constDpNom) = port_b.p - port_a.p "Pressure increase"; + nominal=constDpNom) "Pressure increase"; Modelica.Blocks.Interfaces.RealOutput head( quantity="Length", unit="m", min=0, max=constHmax, - nominal=constHnom) = dp_pump/(medium.d*system.g) - "Pump head"; - Modelica.SIunits.MassFlowRate m_flow( - start=m_flow_start, - min=0, - max=constMflowMax, - nominal=constMflowNom) = -port_b.m_flow "Mass flow rate (total)"; + nominal=constHnom) "Pump head"; Modelica.Blocks.Interfaces.RealOutput n( - start=Nnom, nominal=Nnom, min=0, max=pumpParam.nMax, @@ -165,14 +118,12 @@ public unit="1", min=0) "efficiency"; Modelica.Blocks.Sources.RealExpression Vflow_m3h(y( - start=Qstart, min=0, max=max(pumpParam.maxMinSpeedCurves[:, 1]), - nominal=Qnom)= - if noEvent(port_b.m_flow > 0) then 0 else m_flow/medium.d*3600) + nominal=Qnom)= m_flow/rho_default*3600) "conversion of mass flow rate to volume flow rate" annotation (Placement(transformation(extent={{-100,35},{-80,55}}))); - Modelica.Blocks.Tables.CombiTable1D maxMinTable( + Modelica.Blocks.Tables.CombiTable1Dv maxMinTable( columns={2,3}, tableName="NoName", tableOnFile=false, @@ -196,9 +147,9 @@ protected annotation (Placement(transformation(extent={{-100,66},{-80,86}}))); Modelica.Blocks.Sources.RealExpression pumpHead(y=head) "implements a connectable object that can be cuppled with pumpBus." - annotation (Placement(transformation(extent={{47,-49},{67,-29}}))); - Modelica.Blocks.Sources.RealExpression pumpEfficiency(y=eta) if - calculateEfficiency + annotation (Placement(transformation(extent={{54,-50},{74,-30}}))); + Modelica.Blocks.Sources.RealExpression pumpEfficiency(y=eta) + if calculateEfficiency "implements a connectable object that can be cuppled with pumpBus." annotation (Placement(transformation(extent={{-100,50},{-80,70}}))); Modelica.Blocks.Sources.Constant off(k=Modelica.Constants.small) @@ -206,11 +157,12 @@ protected Modelica.Blocks.Continuous.CriticalDamping criticalDamping( y_start=Hstart, - y(max=constHmax, - nominal=constHnom), f=1/5, initType=Modelica.Blocks.Types.Init.InitialOutput) annotation (Placement(transformation(extent={{23,-50},{43,-30}}))); + Modelica.Blocks.Sources.RealExpression pressure_difference(y=-dp_pump) + "implements a connectable object that can be cuppled with pumpBus." + annotation (Placement(transformation(extent={{-71,-76},{-51,-56}}))); public Modelica.Blocks.Logical.Switch onOffHead "turns head variable off or on." annotation (Placement(transformation(extent={{-6,-50},{14,-30}}))); @@ -223,79 +175,28 @@ public Vflow_m3h.y, n))) annotation (Placement(transformation(extent={{-40,-42},{-17,-22}}))); -initial equation - assert( - sum(abs(pumpParam.cHQN)) <> 0, - "Warning: - In a pump model - the coefficients in pumpParam.cHQN, which define pump head as polynomial - function of volume flow rate and pump speed, seem all to be zero. - This cannot work - please redefine.", - level=AssertionLevel.warning); - assert( - m_flow_start >= 0, - "Warning: - In a pump model - parameter 'm_flow_start' (" + String(m_flow_start) + ") has a negative value. - But this pump model cannot produce a reverse flow. Consider changing the - initialization setup.", - level=AssertionLevel.warning); - assert( - p_b_start >= p_a_start, - "Warning: - In a pump model - parameter 'p_a_start' (" + String(p_a_start) + ") is bigger than 'p_b_start' - (" + String(p_b_start) + "). But this pump model can only produce a positive - pump head. Consider changing the initialization setup.", - level=AssertionLevel.warning); - -equation - // The assert will provoke events when pump gets turned off and lead to a - // stalled simulation. Therefore we remove it here. The min attribbute to - // dp_pump, head, headUnbound, criticalDamping.y and m_flow and Vflow_m3h - // should help to avoid negative pump delivery head or mass flow. - // assert( - // m_flow > -Modelica.Constants.small, - // "Warning: - // In a pump model (" + pumpParam.pumpModelString + ") mass flow rate became - // negative (" + String(m_flow) + " kg/s) at time " + String(time) + - // " s. This is erroneous behavior. Check if the condition persists. - // Try to reduce tolerance to get more exact solutions.", - // level=AssertionLevel.warning); - // ========================== - // start Partial Pump content - // ========================== - // Energy balance - Hb_flow = port_a.m_flow*actualStream(port_a.h_outflow) + port_b.m_flow* - actualStream(port_b.h_outflow); - // Ports - port_a.h_outflow = medium.h; - port_b.h_outflow = medium.h; - port_b.p = medium.p - "outlet pressure is equal to medium pressure, which includes Wb_flow"; + AixLib.Fluid.Movers.BaseClasses.IdealSource idealSource( + redeclare package Medium = Medium, + final allowFlowReversal=allowFlowReversal, + final m_flow_small=1E-4*abs(m_flow_nominal), + final control_m_flow=false) + annotation (Placement(transformation(extent={{-31,-90},{-11,-70}}))); + MixingVolumes.MixingVolume vol( + redeclare package Medium = Medium, + energyDynamics=energyDynamics, + massDynamics=massDynamics, + final p_start=p_start, + final T_start=T_start, + m_flow_nominal=m_flow_nominal, + m_flow_small=1E-4*abs(m_flow_nominal), + allowFlowReversal=allowFlowReversal, + final V=V, + nPorts=2) annotation (Placement(transformation(extent={{23,-80},{43,-60}}))); - // Mass balance - mb_flow = port_a.m_flow + port_b.m_flow; - mbXi_flow = port_a.m_flow*actualStream(port_a.Xi_outflow) + port_b.m_flow* - actualStream(port_b.Xi_outflow); - port_a.Xi_outflow = medium.Xi; - port_b.Xi_outflow = medium.Xi; - - mbC_flow = port_a.m_flow*actualStream(port_a.C_outflow) + port_b.m_flow* - actualStream(port_b.C_outflow); - port_a.C_outflow = C; - port_b.C_outflow = C; - // ========================== - // end Partial Pump content - // ========================== - - // Not yet implemented - Wb_flow = 0; - Qb_flow = 0; - // Will most certainly remain zero for all models +equation // Physical limitations of the pump connect(maxMinTable.u[1], Vflow_m3h.y) @@ -307,7 +208,7 @@ equation // without damping: onOff.y head = criticalDamping.y "safe head after limiting and other checks."; - + dp_pump = head * rho_default * Modelica.Constants.g_n; //Calculate power and Efficiency if calculatePower then power =if n >= pumpParam.nMin*0.9 and pumpBus.onSet and Vflow_m3h.y > @@ -325,7 +226,7 @@ equation Vflow_m3h.y, head, power, - medium.d)) else 0 "computing eta as long as n > 90% nMin"; + rho_default)) else 0 "computing eta as long as n > 90% nMin"; else eta = 0; end if; @@ -343,18 +244,18 @@ equation color={0,0,127}, smooth=Smooth.None)); - connect(pumpPower.y, pumpBus.PelMea) annotation (Line(points={{-79,76},{-66, - 76},{-66,93},{0.5975,93},{0.5975,100.597}}, color={0,0,127}), Text( + connect(pumpPower.y, pumpBus.PelMea) annotation (Line(points={{-79,76},{-66,76},{-66,93},{0.5975,93},{0.5975,100.597}}, + color={0,0,127}), Text( string="%second", index=1, extent={{6,3},{6,3}})); - connect(pumpEfficiency.y, pumpBus.efficiencyMea) annotation (Line(points={{-79, - 60},{-62,60},{-62,100.597},{0.5975,100.597}}, color={0,0,127}), Text( + connect(pumpEfficiency.y, pumpBus.efficiencyMea) annotation (Line(points={{-79,60},{-62,60},{-62,100.597},{0.5975,100.597}}, + color={0,0,127}), Text( string="%second", index=1, extent={{6,3},{6,3}})); - connect(onOffHead.u2, pumpBus.onSet) annotation (Line(points={{-8,-40},{-43,-40}, - {-43,-16},{69,-16},{69,100.597},{0.5975,100.597}}, color={255,0,255}), + connect(onOffHead.u2, pumpBus.onSet) annotation (Line(points={{-8,-40},{-43,-40},{-43,-16},{69,-16},{69,100.597},{0.5975,100.597}}, + color={255,0,255}), Text( string="%second", index=3, @@ -363,24 +264,24 @@ equation -48},{-8,-48}}, color={0,0,127})); connect(deMultiplex2.y1[1], variableLimiter.limit1) annotation (Line(points={{ -26,26},{-23,26},{-23,28},{-12,28}}, color={0,0,127})); - connect(variableLimiter.u, pumpBus.rpmSet) annotation (Line(points={{-12,20}, - {-20,20},{-20,38},{0.5975,38},{0.5975,100.597}}, color={0,0,127}), + connect(variableLimiter.u, pumpBus.rpmSet) annotation (Line(points={{-12,20},{-20,20},{-20,38},{0.5975,38},{0.5975,100.597}}, + color={0,0,127}), Text( string="%second", index=1, extent={{6,3},{6,3}})); connect(onOffHead.y, criticalDamping.u) annotation (Line(points={{15,-40},{21,-40}}, color={0,0,127})); - connect(pumpHead.y, pumpBus.dpMea) annotation (Line(points={{68,-39},{81,-39}, - {81,90},{0.5975,90},{0.5975,100.597}}, color={0,0,127}), Text( + connect(pumpHead.y, pumpBus.dpMea) annotation (Line(points={{75,-40},{81,-40},{81,90},{0.5975,90},{0.5975,100.597}}, + color={0,0,127}), Text( string="%second", index=1, extent={{6,3},{6,3}})); connect(variableLimiter.y, onOffn.u1) annotation (Line(points={{11,20},{12,20}, {12,28},{17,28}}, color={0,0,127})); - connect(onOffn.u2, pumpBus.onSet) annotation (Line(points={{17,20},{14,20},{ - 14,49},{36,49},{36,100.597},{0.5975,100.597}}, color={255,0,255}), + connect(onOffn.u2, pumpBus.onSet) annotation (Line(points={{17,20},{14,20},{14,49},{36,49},{36,100.597},{0.5975,100.597}}, + color={255,0,255}), Text( string="%second", index=3, @@ -402,6 +303,14 @@ equation -7},{17,-7},{17,12}}, color={0,0,127})); connect(onOffHead.u1, headUnbound.y) annotation (Line(points={{-8,-32},{-15.85,-32}}, color={0,0,127})); + connect(idealSource.port_a, port_a) annotation (Line(points={{-31,-80},{-85,-80}, + {-85,0},{-100,0}}, color={0,127,255})); + connect(pressure_difference.y, idealSource.dp_in) + annotation (Line(points={{-50,-66},{-15,-66},{-15,-72}}, color={0,0,127})); + connect(idealSource.port_b, vol.ports[1]) + annotation (Line(points={{-11,-80},{31,-80}}, color={0,127,255})); + connect(vol.ports[2], port_b) + annotation (Line(points={{35,-80},{100,-80},{100,0}}, color={0,127,255})); annotation ( Diagram(coordinateSystem( preserveAspectRatio=true, @@ -528,19 +437,6 @@ equation alternative for the given assumption could be to introduce a parameter Qmax in the pump record that contains the exact value.

                                      -
                                      - Nstart -
                                      -

                                      - The start speed of the pump will be determined from interpolation in - the maxMinSpeedCurves table, providing the maximum speed possible at - a given volume flow rate: -

                                      -

                                      - Nstart = Modelica.Math.Vectors.interpolate(x=pumpParam.maxMinSpeedCurves[:,1], - y=pumpParam.maxMinSpeedCurves[:,2], xi=Qstart) -

                                      Assumption and limitations

                                      diff --git a/AixLib/Fluid/Movers/PumpsPolynomialBased/package.mo b/AixLib/Fluid/Movers/PumpsPolynomialBased/package.mo index 3c501bafd4..2638cfe997 100644 --- a/AixLib/Fluid/Movers/PumpsPolynomialBased/package.mo +++ b/AixLib/Fluid/Movers/PumpsPolynomialBased/package.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Movers; +within AixLib.Fluid.Movers; package PumpsPolynomialBased "Pump models with control block and new configuration approach" extends Modelica.Icons.Package; diff --git a/AixLib/Fluid/Movers/SpeedControlled_Nrpm.mo b/AixLib/Fluid/Movers/SpeedControlled_Nrpm.mo index b9f31dd9c0..f235a5a49b 100644 --- a/AixLib/Fluid/Movers/SpeedControlled_Nrpm.mo +++ b/AixLib/Fluid/Movers/SpeedControlled_Nrpm.mo @@ -10,17 +10,20 @@ model SpeedControlled_Nrpm final constInput(final unit="1") = per.constantSpeed, filter( final y_start=y_start, - u_nominal=1, u(final unit="1"), y(final unit="1")), eff( per(final pressure = per.pressure, - final use_powerCharacteristic = per.use_powerCharacteristic)), - gaiSpe(u(final unit="1/min"), + final use_powerCharacteristic = per.use_powerCharacteristic), + r_N(start=y_start)), + gaiSpe(u(final unit="rev/min"), final k=1/per.speed_rpm_nominal)); - Modelica.Blocks.Interfaces.RealInput Nrpm(final unit="1/min") if - inputType == AixLib.Fluid.Types.InputType.Continuous + parameter Real y_start(min=0, max=1, unit="1")=0 "Initial value of speed" + annotation(Dialog(tab="Dynamics", group="Filtered speed", enable=use_inputFilter)); + + Modelica.Blocks.Interfaces.RealInput Nrpm(final unit="rev/min") + if inputType == AixLib.Fluid.Types.InputType.Continuous "Prescribed rotational speed" annotation (Placement(transformation( extent={{-20,-20},{20,20}}, @@ -50,10 +53,10 @@ equation annotation (Line(points={{10,-9},{10,14},{56,14},{56,8},{56,8}}, color={0,0,127})); if use_inputFilter then - connect(filter.y, eff.y_in) annotation (Line(points={{34.7,88},{38,88},{38,26}, - {-26,26},{-26,-46}}, color={0,0,127})); + connect(filter.y, eff.y_in) annotation (Line(points={{41,70.5},{44,70.5},{44, + 26},{-26,26},{-26,-46}}, color={0,0,127})); else - connect(inputSwitch.y, eff.y_in) annotation (Line(points={{1,50},{38,50},{38, + connect(inputSwitch.y, eff.y_in) annotation (Line(points={{1,50},{44,50},{44, 26},{-26,26},{-26,-46}}, color={0,0,127})); end if; @@ -63,95 +66,116 @@ equation graphics={ Text( extent={{-40,126},{-160,76}}, - lineColor={0,0,127}, + textColor={0,0,127}, visible=inputType == AixLib.Fluid.Types.InputType.Continuous or inputType == AixLib.Fluid.Types.InputType.Stages, textString=DynamicSelect("Nrpm", if inputType == AixLib.Fluid.Types.InputType.Continuous then String(Nrpm, format=".0f") else String(stage)))}), Documentation(info=" -This model describes a fan or pump with prescribed speed in revolutions per minute. -The head is computed based on the performance curve that take as an argument -the actual volume flow rate divided by the maximum flow rate and the relative -speed of the fan. -The efficiency of the device is computed based -on the efficiency curves that take as an argument -the actual volume flow rate divided by the maximum possible volume flow rate, or -based on the motor performance curves. -
                                      -

                                      -See the - -User's Guide for more information. -

                                      -", +

                                      + This model describes a fan or pump with prescribed speed in revolutions per minute. + The head is computed based on the performance curve that take as an argument + the actual volume flow rate divided by the maximum flow rate and the relative + speed of the fan. + The efficiency of the device is computed based + on the efficiency curves that take as an argument + the actual volume flow rate divided by the maximum possible volume flow rate, or + based on the motor performance curves. +

                                      +
                                      +

                                      + See the + + User's Guide for more information. +

                                      + ", revisions=" -
                                        -
                                      • -February 21, 2020, by Michael Wetter:
                                        -Changed icon to display its operating stage.
                                        -This is for -#1294. -
                                      • -
                                      • -March 24, 2017, by Michael Wetter:
                                        -Renamed filteredSpeed to use_inputFilter.
                                        -This is for -#665. -
                                      • -
                                      • -March 2, 2016, by Filip Jorissen:
                                        -Refactored model such that it directly extends PartialFlowMachine. -This is for -#417. -
                                      • -
                                      • -February 17, 2016, by Michael Wetter:
                                        -Updated parameter names for -#396. -
                                      • -
                                      • -January 19, 2016, by Filip Jorissen:
                                        -Set default value of parameter: speeds=per.speeds. -This is for -#396. -
                                      • -
                                      • -April 2, 2015, by Filip Jorissen:
                                        -Added code for supporting stage input and constant input. -
                                      • -
                                      • -March 6, 2015, by Michael Wetter
                                        -Made performance record per replaceable -as for the other models. -
                                      • -
                                      • -January 6, 2015, by Michael Wetter:
                                        -Revised model for OpenModelica. -
                                      • -
                                      • -April 17, 2014, by Filip Jorissen:
                                        -Implemented records for supplying pump/fan parameters -
                                      • -
                                      • -February 14, 2012, by Michael Wetter:
                                        -Added filter for start-up and shut-down transient. -
                                      • -
                                      • -May 25, 2011, by Michael Wetter:
                                        -Revised implementation of energy balance to avoid having to use conditionally removed models. -
                                      • -
                                      • -July 27, 2010, by Michael Wetter:
                                        -Redesigned model to fix bug in medium balance. -
                                      • -
                                      • March 24, 2010, by Michael Wetter:
                                        -Revised implementation to allow zero flow rate. -
                                      • -
                                      • October 1, 2009, - by Michael Wetter:
                                        - Model added to the AixLib library. -
                                      • -
                                      • 31 Oct 2005 - by Francesco Casella:
                                        - Model added to the Fluid library
                                      • -
                                      -")); +
                                        +
                                      • + March 7, 2022, by Michael Wetter:
                                        + Set final massDynamics=energyDynamics.
                                        + This is for + #1542. +
                                      • +
                                      • + January 5, 2022, by Jianjun Hu:
                                        + Changed the rotational speed unit to be consistent with the one in the Modelica Standard Library.
                                        + This is for + #1570. +
                                      • +
                                      • + June 17, 2021, by Michael Wetter:
                                        + Changed implementation of the filter.
                                        + This is for + #1498. +
                                      • +
                                      • + February 21, 2020, by Michael Wetter:
                                        + Changed icon to display its operating stage.
                                        + This is for + #1294. +
                                      • +
                                      • + March 24, 2017, by Michael Wetter:
                                        + Renamed filteredSpeed to use_inputFilter.
                                        + This is for + #665. +
                                      • +
                                      • + March 2, 2016, by Filip Jorissen:
                                        + Refactored model such that it directly extends PartialFlowMachine. + This is for + #417. +
                                      • +
                                      • + February 17, 2016, by Michael Wetter:
                                        + Updated parameter names for + #396. +
                                      • +
                                      • + January 19, 2016, by Filip Jorissen:
                                        + Set default value of parameter: speeds=per.speeds. + This is for + #396. +
                                      • +
                                      • + April 2, 2015, by Filip Jorissen:
                                        + Added code for supporting stage input and constant input. +
                                      • +
                                      • + March 6, 2015, by Michael Wetter
                                        + Made performance record per replaceable + as for the other models. +
                                      • +
                                      • + January 6, 2015, by Michael Wetter:
                                        + Revised model for OpenModelica. +
                                      • +
                                      • + April 17, 2014, by Filip Jorissen:
                                        + Implemented records for supplying pump/fan parameters +
                                      • +
                                      • + February 14, 2012, by Michael Wetter:
                                        + Added filter for start-up and shut-down transient. +
                                      • +
                                      • + May 25, 2011, by Michael Wetter:
                                        + Revised implementation of energy balance to avoid having to use conditionally removed models. +
                                      • +
                                      • + July 27, 2010, by Michael Wetter:
                                        + Redesigned model to fix bug in medium balance. +
                                      • +
                                      • March 24, 2010, by Michael Wetter:
                                        + Revised implementation to allow zero flow rate. +
                                      • +
                                      • October 1, 2009, + by Michael Wetter:
                                        + Model added to the AixLib library. +
                                      • +
                                      • 31 Oct 2005 + by Francesco Casella:
                                        + Model added to the Fluid library
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end SpeedControlled_Nrpm; diff --git a/AixLib/Fluid/Movers/SpeedControlled_y.mo b/AixLib/Fluid/Movers/SpeedControlled_y.mo index b5ced76dc6..0eb439c36a 100644 --- a/AixLib/Fluid/Movers/SpeedControlled_y.mo +++ b/AixLib/Fluid/Movers/SpeedControlled_y.mo @@ -10,18 +10,21 @@ model SpeedControlled_y final constInput(final unit="1") = per.constantSpeed, filter( final y_start=y_start, - u_nominal=1, u(final unit="1"), y(final unit="1")), eff( per(final pressure = per.pressure, - final use_powerCharacteristic = per.use_powerCharacteristic)), + final use_powerCharacteristic = per.use_powerCharacteristic), + r_N(start=y_start)), gaiSpe(u(final unit="1"), final k=1/per.speed_nominal)); + parameter Real y_start(min=0, max=1, unit="1")=0 "Initial value of speed" + annotation(Dialog(tab="Dynamics", group="Filtered speed", enable=use_inputFilter)); + Modelica.Blocks.Interfaces.RealInput y( - unit="1") if - inputType == AixLib.Fluid.Types.InputType.Continuous + unit="1") + if inputType == AixLib.Fluid.Types.InputType.Continuous "Constant normalized rotational speed" annotation (Placement(transformation( extent={{-20,-20},{20,20}}, @@ -52,11 +55,10 @@ equation color={0,0,127})); if use_inputFilter then - connect(filter.y, eff.y_in) annotation (Line(points={{34.7,88},{38,88},{38,26}, - {-26,26},{-26,-46},{-26,-48},{-26,-46},{-26,-46}}, - color={0,0,127})); + connect(filter.y, eff.y_in) annotation (Line(points={{41,70.5},{44,70.5},{44, + 26},{-26,26},{-26,-46}}, color={0,0,127})); else - connect(inputSwitch.y, eff.y_in) annotation (Line(points={{1,50},{38,50},{38, + connect(inputSwitch.y, eff.y_in) annotation (Line(points={{1,50},{44,50},{44, 26},{-26,26},{-26,-46}}, color={0,0,127})); end if; @@ -67,93 +69,106 @@ equation graphics={ Text( extent={{-40,126},{-160,76}}, - lineColor={0,0,127}, + textColor={0,0,127}, visible=inputType == AixLib.Fluid.Types.InputType.Continuous or inputType == AixLib.Fluid.Types.InputType.Stages, textString=DynamicSelect("y", if inputType == AixLib.Fluid.Types.InputType.Continuous then String(y, format=".2f") else String(stage)))}), Documentation(info=" -

                                      -This model describes a fan or pump with prescribed normalized speed. -The input connector provides the normalized rotational speed (between 0 and 1). -The head is computed based on the performance curve that take as an argument -the actual volume flow rate divided by the maximum flow rate and the relative -speed of the fan. -The efficiency of the device is computed based -on the efficiency curves that take as an argument -the actual volume flow rate divided by the maximum possible volume flow rate, or -based on the motor performance curves. -

                                      -

                                      -See the - -User's Guide for more information. -

                                      -", +

                                      + This model describes a fan or pump with prescribed normalized speed. + The input connector provides the normalized rotational speed (between 0 and 1). + The head is computed based on the performance curve that take as an argument + the actual volume flow rate divided by the maximum flow rate and the relative + speed of the fan. + The efficiency of the device is computed based + on the efficiency curves that take as an argument + the actual volume flow rate divided by the maximum possible volume flow rate, or + based on the motor performance curves. +

                                      +

                                      + See the + + User's Guide for more information. +

                                      + ", revisions=" -
                                        -
                                      • -February 21, 2020, by Michael Wetter:
                                        -Changed icon to display its operating stage.
                                        -This is for -#1294. -
                                      • -
                                      • -March 24, 2017, by Michael Wetter:
                                        -Renamed filteredSpeed to use_inputFilter.
                                        -This is for -#665. -
                                      • -
                                      • -December 2, 2016, by Michael Wetter:
                                        -Removed min attribute as otherwise numerical noise can cause -the assertion on the limit to fail.
                                        -This is for -#606. -
                                      • -
                                      • -March 2, 2016, by Filip Jorissen:
                                        -Refactored model such that it directly extends PartialFlowMachine. -This is for -#417. -
                                      • -
                                      • -February 17, 2016, by Michael Wetter:
                                        -Updated parameter names for -#396. -
                                      • -
                                      • -April 2, 2015, by Filip Jorissen:
                                        -Added code for supporting stage input and constant input. -
                                      • -
                                      • -January 6, 2015, by Michael Wetter:
                                        -Revised model for OpenModelica. -
                                      • -
                                      • -November 22, 2014, by Michael Wetter:
                                        -Revised implementation that uses the new performance data as a record. -
                                      • -
                                      • -February 14, 2012, by Michael Wetter:
                                        -Added filter for start-up and shut-down transient. -
                                      • -
                                      • -May 25, 2011, by Michael Wetter:
                                        -Revised implementation of energy balance to avoid having to use conditionally removed models. -
                                      • -
                                      • -July 27, 2010, by Michael Wetter:
                                        -Redesigned model to fix bug in medium balance. -
                                      • -
                                      • March 24, 2010, by Michael Wetter:
                                        -Revised implementation to allow zero flow rate. -
                                      • -
                                      • -October 1, 2009, by Michael Wetter:
                                        -Model added to the AixLib library. Changed control signal from rpm to normalized value between 0 and 1
                                      • -
                                      • -October 31, 2005 by Francesco Casella:
                                        -Model added to the Fluid library -
                                      • -
                                      -")); +
                                        +
                                      • + March 7, 2022, by Michael Wetter:
                                        + Set final massDynamics=energyDynamics.
                                        + This is for + #1542. +
                                      • +
                                      • + June 17, 2021, by Michael Wetter:
                                        + Changed implementation of the filter.
                                        + This is for + #1498. +
                                      • +
                                      • + February 21, 2020, by Michael Wetter:
                                        + Changed icon to display its operating stage.
                                        + This is for + #1294. +
                                      • +
                                      • + March 24, 2017, by Michael Wetter:
                                        + Renamed filteredSpeed to use_inputFilter.
                                        + This is for + #665. +
                                      • +
                                      • + December 2, 2016, by Michael Wetter:
                                        + Removed min attribute as otherwise numerical noise can cause + the assertion on the limit to fail.
                                        + This is for + #606. +
                                      • +
                                      • + March 2, 2016, by Filip Jorissen:
                                        + Refactored model such that it directly extends PartialFlowMachine. + This is for + #417. +
                                      • +
                                      • + February 17, 2016, by Michael Wetter:
                                        + Updated parameter names for + #396. +
                                      • +
                                      • + April 2, 2015, by Filip Jorissen:
                                        + Added code for supporting stage input and constant input. +
                                      • +
                                      • + January 6, 2015, by Michael Wetter:
                                        + Revised model for OpenModelica. +
                                      • +
                                      • + November 22, 2014, by Michael Wetter:
                                        + Revised implementation that uses the new performance data as a record. +
                                      • +
                                      • + February 14, 2012, by Michael Wetter:
                                        + Added filter for start-up and shut-down transient. +
                                      • +
                                      • + May 25, 2011, by Michael Wetter:
                                        + Revised implementation of energy balance to avoid having to use conditionally removed models. +
                                      • +
                                      • + July 27, 2010, by Michael Wetter:
                                        + Redesigned model to fix bug in medium balance. +
                                      • +
                                      • March 24, 2010, by Michael Wetter:
                                        + Revised implementation to allow zero flow rate. +
                                      • +
                                      • + October 1, 2009, by Michael Wetter:
                                        + Model added to the AixLib library. Changed control signal from rpm to normalized value between 0 and 1
                                      • +
                                      • + October 31, 2005 by Francesco Casella:
                                        + Model added to the Fluid library +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end SpeedControlled_y; diff --git a/AixLib/Fluid/Movers/UsersGuide.mo b/AixLib/Fluid/Movers/UsersGuide.mo index 6064816e8f..63c1037263 100644 --- a/AixLib/Fluid/Movers/UsersGuide.mo +++ b/AixLib/Fluid/Movers/UsersGuide.mo @@ -89,8 +89,8 @@ Compare AixLib.Fluid.Movers.Validation.PowerSimplified with - -AixLib.Fluid.Movers.Validation.PowerSimplified + +AixLib.Fluid.Movers.Validation.PowerExact for an illustration of this error.

                                      @@ -129,7 +129,7 @@ full speed, the points shown in the table below.

                                      - + @@ -446,7 +446,7 @@ and only the shaft, or hydraulic, work Whyd enters the thermod control volume. Hence,

                                      - Q = Qhyd - Wflo. + Q = Whyd - Wflo.

                                      The efficiencies are computed as

                                      @@ -476,7 +476,7 @@ and ηmot are computed as

                                      ηhyd = 1,
                                      - √ηmot = η. + ηmot = η.

                                      However, if per.use_powerCharacteristic=false, then @@ -539,8 +539,8 @@ This change was done to avoid ambiguities in the parameterization if the models with air as the medium. The original formulation in Modelica.Fluid.Machines converts head to pressure using the density medium.d. Therefore, for fans, -head would be converted to pressure using the density of air. However, for fans, -manufacturers typically publish the head in millimeters water (mmH20). +head would be converted to pressure using the density of air. However, for pumps, +manufacturers typically publish the head in millimeters water (mmH2O). Therefore, to avoid confusion when using these models with media other than water, we changed the models to use total pressure in Pascals instead of head in meters. diff --git a/AixLib/Fluid/Movers/Validation/BaseClasses/ControlledFlowMachine.mo b/AixLib/Fluid/Movers/Validation/BaseClasses/ControlledFlowMachine.mo index 8967df09e1..bb93be78ab 100644 --- a/AixLib/Fluid/Movers/Validation/BaseClasses/ControlledFlowMachine.mo +++ b/AixLib/Fluid/Movers/Validation/BaseClasses/ControlledFlowMachine.mo @@ -198,7 +198,8 @@ equation 160}})), Icon(coordinateSystem(preserveAspectRatio=true, extent={{-160,-100},{160,160}})), Documentation(info=" -This example demonstrates the use of the flow model with four different configuration. -At steady-state, all flow models have the same mass flow rate and pressure difference. -")); + This example demonstrates the use of the flow model with four different configuration. + At steady-state, all flow models have the same mass flow rate and pressure difference. + "), + __Dymola_LockedEditing="Model from IBPSA"); end ControlledFlowMachine; diff --git a/AixLib/Fluid/Movers/Validation/BaseClasses/FlowMachine_ZeroFlow.mo b/AixLib/Fluid/Movers/Validation/BaseClasses/FlowMachine_ZeroFlow.mo index 291c99921b..4aac99fb14 100644 --- a/AixLib/Fluid/Movers/Validation/BaseClasses/FlowMachine_ZeroFlow.mo +++ b/AixLib/Fluid/Movers/Validation/BaseClasses/FlowMachine_ZeroFlow.mo @@ -5,9 +5,9 @@ partial model FlowMachine_ZeroFlow replaceable package Medium = AixLib.Media.Air constrainedby Modelica.Media.Interfaces.PartialMedium "Medium model"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal= 1 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=1 "Nominal mass flow rate"; - parameter Modelica.SIunits.PressureDifference dp_nominal = 500 + parameter Modelica.Units.SI.PressureDifference dp_nominal=500 "Nominal pressure difference"; Modelica.Blocks.Sources.Ramp y( @@ -93,33 +93,34 @@ equation Icon(coordinateSystem(preserveAspectRatio=true, extent={{-100,-100},{160, 160}})), Documentation(info=" -

                                      -This is the base class for examples that demonstrates the use of a flow machine whose flow rate transitions to zero. -

                                      -", revisions=" -
                                        -
                                      • -January 22, 2016, by Michael Wetter:
                                        -Corrected type declaration of pressure difference. -This is -for #404. -
                                      • -
                                      • -September 20, 2014, by Michael Wetter:
                                        -Added constrainedby declaration for medium. -Otherwise, the pedantic model check of - -AixLib.Fluid.Movers.Validation.SpeedControlled_Nrpm_Data -fails because water does not implemented the function -Xsaturation. -
                                      • -
                                      • February 20, 2016, by Ruben Baetens:
                                        -Removal of dynamicBalance as parameter for massDynamics and energyDynamics. -
                                      • -
                                      • -March 24 2010, by Michael Wetter:
                                        -First implementation. -
                                      • -
                                      -")); +

                                      + This is the base class for examples that demonstrates the use of a flow machine whose flow rate transitions to zero. +

                                      + ",revisions=" +
                                        +
                                      • + January 22, 2016, by Michael Wetter:
                                        + Corrected type declaration of pressure difference. + This is + for #404. +
                                      • +
                                      • + September 20, 2014, by Michael Wetter:
                                        + Added constrainedby declaration for medium. + Otherwise, the pedantic model check of + + AixLib.Fluid.Movers.Validation.SpeedControlled_Nrpm_Data + fails because water does not implemented the function + Xsaturation. +
                                      • +
                                      • February 20, 2016, by Ruben Baetens:
                                        + Removal of dynamicBalance as parameter for massDynamics and energyDynamics. +
                                      • +
                                      • + March 24 2010, by Michael Wetter:
                                        + First implementation. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end FlowMachine_ZeroFlow; diff --git a/AixLib/Fluid/Movers/Validation/ControlledFlowMachine.mo b/AixLib/Fluid/Movers/Validation/ControlledFlowMachine.mo index bd2ffe33b1..686ba97be2 100644 --- a/AixLib/Fluid/Movers/Validation/ControlledFlowMachine.mo +++ b/AixLib/Fluid/Movers/Validation/ControlledFlowMachine.mo @@ -16,13 +16,14 @@ experiment(Tolerance=1e-6, StopTime=600), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Movers/Validation/ControlledFlowMachine.mos" "Simulate and plot"), Documentation(info=" -This example demonstrates the use of the flow model with four different configurations. -At steady-state, all flow models have the same mass flow rate and pressure difference. -Note that addPowerToMedium=false since otherwise, -Dymola computes the enthalpy change of the component as a fraction (k*m_flow+P_internal)/m_flow -which leads to an error because of 0/0 at zero flow rate. -", revisions=" -"), + This example demonstrates the use of the flow model with four different configurations. + At steady-state, all flow models have the same mass flow rate and pressure difference. + Note that addPowerToMedium=false since otherwise, + Dymola computes the enthalpy change of the component as a fraction (k*m_flow+P_internal)/m_flow + which leads to an error because of 0/0 at zero flow rate. + ",revisions=" + "), Diagram(coordinateSystem(preserveAspectRatio=true, extent={{-160,-100},{160, - 160}}))); + 160}})), + __Dymola_LockedEditing="Model from IBPSA"); end ControlledFlowMachine; diff --git a/AixLib/Fluid/Movers/Validation/ControlledFlowMachineDynamic.mo b/AixLib/Fluid/Movers/Validation/ControlledFlowMachineDynamic.mo index d066070f21..8936c2eeae 100644 --- a/AixLib/Fluid/Movers/Validation/ControlledFlowMachineDynamic.mo +++ b/AixLib/Fluid/Movers/Validation/ControlledFlowMachineDynamic.mo @@ -12,9 +12,9 @@ experiment(Tolerance=1e-6, StopTime=600), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Movers/Validation/ControlledFlowMachineDynamic.mos" "Simulate and plot"), Documentation(info=" -This example demonstrates the use of the flow model with four different configurations. -At steady-state, all flow models have the same mass flow rate and pressure difference. -"), -Diagram(coordinateSystem(preserveAspectRatio=true, extent={{-160,-100},{160, 160}}))); - + This example demonstrates the use of the flow model with four different configurations. + At steady-state, all flow models have the same mass flow rate and pressure difference. + "), +Diagram(coordinateSystem(preserveAspectRatio=true, extent={{-160,-100},{160, 160}})), + __Dymola_LockedEditing="Model from IBPSA"); end ControlledFlowMachineDynamic; diff --git a/AixLib/Fluid/Movers/Validation/FlowControlled_dp.mo b/AixLib/Fluid/Movers/Validation/FlowControlled_dp.mo index fe2311fea5..e0afa9e192 100644 --- a/AixLib/Fluid/Movers/Validation/FlowControlled_dp.mo +++ b/AixLib/Fluid/Movers/Validation/FlowControlled_dp.mo @@ -28,36 +28,37 @@ experiment(Tolerance=1e-06, StopTime=1.0), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Movers/Validation/FlowControlled_dp.mos" "Simulate and plot"), Documentation(info=" -

                                      -This example demonstrates and tests the use of a flow machine whose mass flow rate is reduced to zero. -

                                      -

                                      -The fans have been configured as steady-state models. -This ensures that the actual speed is equal to the input signal. -

                                      -", revisions=" -
                                        -
                                      • -November 5, 2015, by Michael Wetter:
                                        -Changed parameters of fan since the power is no longer a parameter. -This is for -issue 457. -
                                      • -
                                      • -September 2, 2015, by Michael Wetter:
                                        -Changed example so that the fans use different powers, one being computed -based on efficiency, the other based on the specified power. -This is for -issue 457. -
                                      • -
                                      • -February 14, 2012, by Michael Wetter:
                                        -Added filter for start-up and shut-down transient. -
                                      • -
                                      • -March 24 2010, by Michael Wetter:
                                        -First implementation. -
                                      • -
                                      -")); +

                                      + This example demonstrates and tests the use of a flow machine whose mass flow rate is reduced to zero. +

                                      +

                                      + The fans have been configured as steady-state models. + This ensures that the actual speed is equal to the input signal. +

                                      + ",revisions=" +
                                        +
                                      • + November 5, 2015, by Michael Wetter:
                                        + Changed parameters of fan since the power is no longer a parameter. + This is for + issue 457. +
                                      • +
                                      • + September 2, 2015, by Michael Wetter:
                                        + Changed example so that the fans use different powers, one being computed + based on efficiency, the other based on the specified power. + This is for + issue 457. +
                                      • +
                                      • + February 14, 2012, by Michael Wetter:
                                        + Added filter for start-up and shut-down transient. +
                                      • +
                                      • + March 24 2010, by Michael Wetter:
                                        + First implementation. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end FlowControlled_dp; diff --git a/AixLib/Fluid/Movers/Validation/FlowControlled_dpSystem.mo b/AixLib/Fluid/Movers/Validation/FlowControlled_dpSystem.mo index 873ce3f4b4..fc77ce1648 100644 --- a/AixLib/Fluid/Movers/Validation/FlowControlled_dpSystem.mo +++ b/AixLib/Fluid/Movers/Validation/FlowControlled_dpSystem.mo @@ -3,9 +3,9 @@ model FlowControlled_dpSystem "Demonstration of the use of prescribedPressure" extends Modelica.Icons.Example; package Medium = AixLib.Media.Air; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal= 0.1 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=0.1 "Nominal mass flow rate"; - parameter Modelica.SIunits.PressureDifference dp_nominal = 100 + parameter Modelica.Units.SI.PressureDifference dp_nominal=100 "Nominal pressure difference"; Modelica.Blocks.Sources.Ramp y( duration=0.5, @@ -215,25 +215,26 @@ __Dymola_Commands(file= "modelica://AixLib/Resources/Scripts/Dymola/Fluid/Movers/Validation/FlowControlled_dpSystem.mos" "Simulate and plot"), Documentation(info=" -

                                      -This example demonstrates and tests the use of - -AixLib.Fluid.Movers.Validation.FlowControlled_dp -movers that use parameter -prescribeSystemPressure. -

                                      -

                                      -The mass flow rates and actual pressure heads of the two configurations are compared. -

                                      -", revisions=" -
                                        -
                                      • -May 4 2017, by Filip Jorissen:
                                        -First implementation. -This is for -#770. -
                                      • -
                                      -"), - Icon(coordinateSystem(extent={{-120,-120},{120,120}}))); +

                                      + This example demonstrates and tests the use of + + AixLib.Fluid.Movers.Validation.FlowControlled_dp + movers that use parameter + prescribeSystemPressure. +

                                      +

                                      + The mass flow rates and actual pressure heads of the two configurations are compared. +

                                      + ",revisions=" +
                                        +
                                      • + May 4 2017, by Filip Jorissen:
                                        + First implementation. + This is for + #770. +
                                      • +
                                      + "), + Icon(coordinateSystem(extent={{-120,-120},{120,120}})), + __Dymola_LockedEditing="Model from IBPSA"); end FlowControlled_dpSystem; diff --git a/AixLib/Fluid/Movers/Validation/FlowControlled_m_flow.mo b/AixLib/Fluid/Movers/Validation/FlowControlled_m_flow.mo index 717ff2be63..48206a6637 100644 --- a/AixLib/Fluid/Movers/Validation/FlowControlled_m_flow.mo +++ b/AixLib/Fluid/Movers/Validation/FlowControlled_m_flow.mo @@ -29,23 +29,24 @@ experiment(Tolerance=1e-06, StopTime=1.0), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Movers/Validation/FlowControlled_m_flow.mos" "Simulate and plot"), Documentation(info=" -

                                      -This example demonstrates and tests the use of a flow machine whose mass flow rate is reduced to zero. -

                                      -

                                      -The fans have been configured as steady-state models. -This ensures that the actual speed is equal to the input signal. -

                                      -", revisions=" -
                                        -
                                      • -February 14, 2012, by Michael Wetter:
                                        -Added filter for start-up and shut-down transient. -
                                      • -
                                      • -March 24 2010, by Michael Wetter:
                                        -First implementation. -
                                      • -
                                      -")); +

                                      + This example demonstrates and tests the use of a flow machine whose mass flow rate is reduced to zero. +

                                      +

                                      + The fans have been configured as steady-state models. + This ensures that the actual speed is equal to the input signal. +

                                      + ",revisions=" +
                                        +
                                      • + February 14, 2012, by Michael Wetter:
                                        + Added filter for start-up and shut-down transient. +
                                      • +
                                      • + March 24 2010, by Michael Wetter:
                                        + First implementation. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end FlowControlled_m_flow; diff --git a/AixLib/Fluid/Movers/Validation/PowerExact.mo b/AixLib/Fluid/Movers/Validation/PowerExact.mo index 23e70a6f2a..4e0a342818 100644 --- a/AixLib/Fluid/Movers/Validation/PowerExact.mo +++ b/AixLib/Fluid/Movers/Validation/PowerExact.mo @@ -11,27 +11,34 @@ model PowerExact "Simulate and plot"), Documentation( info=" -

                                      -This example is identical to - -AixLib.Fluid.Movers.Validation.PowerSimplified, except that the -performance data for the flow controlled pumps -pump_dp and pump_m_flow contain -the pressure curves and efficiency curves. -The plot below shows that this leads to a computation of the power consumption -that is identical to the one from the speed controlled pump pump_Nrpm. -

                                      -

                                      -\"image\" -

                                      -", +

                                      + This example is identical to + + AixLib.Fluid.Movers.Validation.PowerSimplified, except that the + performance data for the flow controlled pumps + pump_dp and pump_m_flow contain + the pressure curves and efficiency curves. + The plot below shows that this leads to a computation of the power consumption + that is identical to the one from the speed controlled pump pump_Nrpm. +

                                      +

                                      + \"image\" +

                                      + ", revisions=" -
                                        -
                                      • -March 2, 2016, by Filip Jorissen:
                                        -First implementation for -#417. -
                                      • -
                                      -")); +
                                        +
                                      • + October 15, 2021, by Hongxiang Fu:
                                        + Fixed the image in the documentation which was cut off + at the y-axis. This is for + IBPSA, #1533. +
                                      • +
                                      • + March 2, 2016, by Filip Jorissen:
                                        + First implementation for + #417. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end PowerExact; diff --git a/AixLib/Fluid/Movers/Validation/PowerSimplified.mo b/AixLib/Fluid/Movers/Validation/PowerSimplified.mo index 041cbaeaa1..6c38fa9d70 100644 --- a/AixLib/Fluid/Movers/Validation/PowerSimplified.mo +++ b/AixLib/Fluid/Movers/Validation/PowerSimplified.mo @@ -5,7 +5,7 @@ model PowerSimplified package Medium = AixLib.Media.Water "Medium model"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal=3 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=3 "Nominal mass flow rate"; parameter Data.Pumps.Wilo.Stratos30slash1to8 per "Pump performance data" @@ -114,62 +114,69 @@ equation "modelica://AixLib/Resources/Scripts/Dymola/Fluid/Movers/Validation/PowerSimplified.mos" "Simulate and plot"), Documentation(info=" -

                                      -This example compares the power consumed by pumps that -take three different control signals. -Each pump has identical mass flow rate and pressure rise. -

                                      -

                                      -Note that for the instances - -AixLib.Fluid.Movers.FlowControlled_dp -and - -AixLib.Fluid.Movers.FlowControlled_m_flow, -we had to assign the efficiencies (otherwise the default constant -efficiency of 0.7 would have been used). -In these models, the power consumption is computed -using similarity laws, but using the mass flow rate as opposed -to the speed, because speed is not known in these two models. -This is an approximation at operating points in which -the speed is different from the nominal speed N_nominal -because similarity laws are valid for speed and not for -mass flow rate. -

                                      -

                                      -The figure below shows the approximation error for the -power calculation where the speed Nrpm differs from -the nominal speed Nnominal. -

                                      -

                                      -\"image\" -

                                      -", revisions=" -
                                        -
                                      • -March 11, 2016, by Michael Wetter:
                                        -Revised implementation by assigning the data record directly in the -instances pump_dp and pump_m_flow, because -using a parameter and assigning this parameter leads -in OpenModelica to the error message -expected subtype of record AixLib.Fluid.Movers.Data.Generic. -
                                      • -
                                      • -March 2, 2016, by Filip Jorissen:
                                        -Revised implementation for -#417. -
                                      • -
                                      • -November 5, 2015, by Michael Wetter:
                                        -Changed parameters since the power is no longer a parameter for the movers -that take mass flow rate or head as an input. -This is for -issue 457. -
                                      • -
                                      • -November 22, 2014, by Michael Wetter:
                                        -Revised implementation. -
                                      • -
                                      -")); +

                                      + This example compares the power consumed by pumps that + take three different control signals. + Each pump has identical mass flow rate and pressure rise. +

                                      +

                                      + Note that for the instances + + AixLib.Fluid.Movers.FlowControlled_dp + and + + AixLib.Fluid.Movers.FlowControlled_m_flow, + we had to assign the efficiencies (otherwise the default constant + efficiency of 0.7 would have been used). + In these models, the power consumption is computed + using similarity laws, but using the mass flow rate as opposed + to the speed, because speed is not known in these two models. + This is an approximation at operating points in which + the speed is different from the nominal speed N_nominal + because similarity laws are valid for speed and not for + mass flow rate. +

                                      +

                                      + The figure below shows the approximation error for the + power calculation where the speed Nrpm differs from + the nominal speed Nnominal. +

                                      +

                                      + \"image\" +

                                      + ",revisions=" +
                                        +
                                      • + October 15, 2021, by Hongxiang Fu:
                                        + Fixed the image in the documentation which was cut off + at the y-axis. This is for + IBPSA, #1533. +
                                      • +
                                      • + March 11, 2016, by Michael Wetter:
                                        + Revised implementation by assigning the data record directly in the + instances pump_dp and pump_m_flow, because + using a parameter and assigning this parameter leads + in OpenModelica to the error message + expected subtype of record AixLib.Fluid.Movers.Data.Generic. +
                                      • +
                                      • + March 2, 2016, by Filip Jorissen:
                                        + Revised implementation for + #417. +
                                      • +
                                      • + November 5, 2015, by Michael Wetter:
                                        + Changed parameters since the power is no longer a parameter for the movers + that take mass flow rate or head as an input. + This is for + issue 457. +
                                      • +
                                      • + November 22, 2014, by Michael Wetter:
                                        + Revised implementation. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end PowerSimplified; diff --git a/AixLib/Fluid/Movers/Validation/PumpCurveConstruction.mo b/AixLib/Fluid/Movers/Validation/PumpCurveConstruction.mo index a942219c98..42974c0e87 100644 --- a/AixLib/Fluid/Movers/Validation/PumpCurveConstruction.mo +++ b/AixLib/Fluid/Movers/Validation/PumpCurveConstruction.mo @@ -5,12 +5,12 @@ model PumpCurveConstruction package Medium = AixLib.Media.Water "Medium model"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal = 1 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=1 "Nominal mass flow rate at zero pump head"; - parameter Modelica.SIunits.VolumeFlowRate V_flow_nominal = m_flow_nominal/1000 + parameter Modelica.Units.SI.VolumeFlowRate V_flow_nominal=m_flow_nominal/1000 "Nominal mass flow rate at zero pump head"; - parameter Modelica.SIunits.PressureDifference dp_nominal = 10000 + parameter Modelica.Units.SI.PressureDifference dp_nominal=10000 "Nominal pump head at zero mass flow rate"; Actuators.Valves.TwoWayLinear val1( @@ -154,44 +154,45 @@ experiment(Tolerance=1e-6, StopTime=1.0), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Movers/Validation/PumpCurveConstruction.mos" "Simulate and plot"), Documentation(info=" -

                                      -This example tests whether the construction of the pump curve is correct implemented -for the cases where no data point is given at zero head, zero mass flow rate, or both. -

                                      -

                                      -Each pump is identical, but different points on the pump curve are specified. -However, the pump curves are linear and hence, because the pump curves are linearly -extrapolated, all four pumps need to give the same flow rate. -

                                      -

                                      Implementation

                                      -

                                      -The pump curves are such that the protected parameter curve -of the pumps have different values. This then tests the correct extrapolation. -

                                      -", revisions=" -
                                        -
                                      • -December 6, 2016, by Michael Wetter:
                                        -Relaxed input signal to allow simulation if bounds on min and max values are checked in Dymola.
                                        -This is for -#606. -
                                      • -
                                      • February 20, 2016, by Ruben Baetens:
                                        -Removal of dynamicBalance as parameter for massDynamics and energyDynamics. -
                                      • -
                                      • -January 22, 2016, by Michael Wetter:
                                        -Corrected type declaration of pressure difference. -This is -for #404. -
                                      • -
                                      • -January 7, 2015, by Michael Wetter:
                                        -First implementation. -
                                      • -
                                      -"), +

                                      + This example tests whether the construction of the pump curve is correct implemented + for the cases where no data point is given at zero head, zero mass flow rate, or both. +

                                      +

                                      + Each pump is identical, but different points on the pump curve are specified. + However, the pump curves are linear and hence, because the pump curves are linearly + extrapolated, all four pumps need to give the same flow rate. +

                                      +

                                      Implementation

                                      +

                                      + The pump curves are such that the protected parameter curve + of the pumps have different values. This then tests the correct extrapolation. +

                                      + ",revisions=" +
                                        +
                                      • + December 6, 2016, by Michael Wetter:
                                        + Relaxed input signal to allow simulation if bounds on min and max values are checked in Dymola.
                                        + This is for + #606. +
                                      • +
                                      • February 20, 2016, by Ruben Baetens:
                                        + Removal of dynamicBalance as parameter for massDynamics and energyDynamics. +
                                      • +
                                      • + January 22, 2016, by Michael Wetter:
                                        + Corrected type declaration of pressure difference. + This is + for #404. +
                                      • +
                                      • + January 7, 2015, by Michael Wetter:
                                        + First implementation. +
                                      • +
                                      + "), Diagram(coordinateSystem(extent={{-100,-100},{100,120}}, preserveAspectRatio=false), graphics), - Icon(coordinateSystem(extent={{-100,-100},{100,120}}))); + Icon(coordinateSystem(extent={{-100,-100},{100,120}})), + __Dymola_LockedEditing="Model from IBPSA"); end PumpCurveConstruction; diff --git a/AixLib/Fluid/Movers/Validation/PumpCurveDerivatives.mo b/AixLib/Fluid/Movers/Validation/PumpCurveDerivatives.mo index b0d6a69d68..32a9b077e1 100644 --- a/AixLib/Fluid/Movers/Validation/PumpCurveDerivatives.mo +++ b/AixLib/Fluid/Movers/Validation/PumpCurveDerivatives.mo @@ -148,43 +148,44 @@ __Dymola_Commands(file= "modelica://AixLib/Resources/Scripts/Dymola/Fluid/Movers/Validation/PumpCurveDerivatives.mos" "Simulate and plot"), Documentation(info=" -

                                      -This example checks if the pump similarity law implementation results in -monotoneously increasing or decreasing relations between dp, -m_flow and Nrpm. -

                                      -", +

                                      + This example checks if the pump similarity law implementation results in + monotoneously increasing or decreasing relations between dp, + m_flow and Nrpm. +

                                      + ", revisions=" -
                                        -
                                      • -July 5, 2017, by Michael Wetter:
                                        -Replaced exact derivative with derivative approximation, and removed the assertions.
                                        -This is for -#807. -
                                      • -
                                      • -April 6, 2017, by Thierry S. Nouidui:
                                        -Added experiment annotation -for JModelica verification. -
                                      • -
                                      • -June 6, 2015, by Michael Wetter:
                                        -Removed duplicate experiment annotation. -This is for -#266. -
                                      • -
                                      • -November 26, 2014, by Filip Jorissen:
                                        -Cleaned up implementation -
                                      • -
                                      • -February 27, 2014, by Filip Jorissen:
                                        -First implementation. See -#202 -for a discussion and validation. -
                                      • -
                                      -"), +
                                        +
                                      • + July 5, 2017, by Michael Wetter:
                                        + Replaced exact derivative with derivative approximation, and removed the assertions.
                                        + This is for + #807. +
                                      • +
                                      • + April 6, 2017, by Thierry S. Nouidui:
                                        + Added experiment annotation + for JModelica verification. +
                                      • +
                                      • + June 6, 2015, by Michael Wetter:
                                        + Removed duplicate experiment annotation. + This is for + #266. +
                                      • +
                                      • + November 26, 2014, by Filip Jorissen:
                                        + Cleaned up implementation +
                                      • +
                                      • + February 27, 2014, by Filip Jorissen:
                                        + First implementation. See + #202 + for a discussion and validation. +
                                      • +
                                      + "), Diagram(coordinateSystem(extent={{-140,-140},{140,120}}, - preserveAspectRatio=false))); + preserveAspectRatio=false)), + __Dymola_LockedEditing="Model from IBPSA"); end PumpCurveDerivatives; diff --git a/AixLib/Fluid/Movers/Validation/Pump_Nrpm_stratos.mo b/AixLib/Fluid/Movers/Validation/Pump_Nrpm_stratos.mo index 4bec443842..8dd8f2fbc0 100644 --- a/AixLib/Fluid/Movers/Validation/Pump_Nrpm_stratos.mo +++ b/AixLib/Fluid/Movers/Validation/Pump_Nrpm_stratos.mo @@ -245,45 +245,46 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Movers/Validation/Pump_Nrpm_stratos.mos" "Simulate and plot"), Documentation(info=" -

                                      This example provides a validation for the Nrpm model. -A Wilo Stratos 80/1-12 pump is simulated for five different RPMs for load -that changes with time. -The resulting curves for the pump head and mass flow rate are plotted -using colored lines over the pump data sheet. -The resulting figures are shown below. -

                                      -

                                      Pump heads:

                                      -

                                      -

                                      -

                                      Pump electrical power:

                                      -

                                      -

                                      The figures are adapted from the - -Wilo Stratos 80/1-12 data sheet. -

                                      -", +

                                      This example provides a validation for the Nrpm model. + A Wilo Stratos 80/1-12 pump is simulated for five different RPMs for load + that changes with time. + The resulting curves for the pump head and mass flow rate are plotted + using colored lines over the pump data sheet. + The resulting figures are shown below. +

                                      +

                                      Pump heads:

                                      +

                                      \"Pump +

                                      +

                                      Pump electrical power:

                                      +

                                      \"Pump

                                      +

                                      The figures are adapted from the + + Wilo Stratos 80/1-12 data sheet. +

                                      + ", revisions=" -
                                        -
                                      • -June 6, 2015, by Michael Wetter:
                                        -Removed dublicate experiment annotation. -This is for -#266. -
                                      • -
                                      • -November 26, 2014, by Filip Jorissen:
                                        -Cleaned up implementation -
                                      • -
                                      • -February 27, 2014, by Filip Jorissen:
                                        -First implementation. See -#202 -for a discussion and validation. -
                                      • -
                                      -"), +
                                        +
                                      • + June 6, 2015, by Michael Wetter:
                                        + Removed dublicate experiment annotation. + This is for + #266. +
                                      • +
                                      • + November 26, 2014, by Filip Jorissen:
                                        + Cleaned up implementation +
                                      • +
                                      • + February 27, 2014, by Filip Jorissen:
                                        + First implementation. See + #202 + for a discussion and validation. +
                                      • +
                                      + "), Diagram(coordinateSystem(extent={{-140,-140},{140,120}}, - preserveAspectRatio=false))); + preserveAspectRatio=false)), + __Dymola_LockedEditing="Model from IBPSA"); end Pump_Nrpm_stratos; diff --git a/AixLib/Fluid/Movers/Validation/Pump_stratos.mo b/AixLib/Fluid/Movers/Validation/Pump_stratos.mo index 90d104d92d..383b3fcd7b 100644 --- a/AixLib/Fluid/Movers/Validation/Pump_stratos.mo +++ b/AixLib/Fluid/Movers/Validation/Pump_stratos.mo @@ -31,19 +31,20 @@ experiment(Tolerance=1e-06, StopTime=1.0), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Movers/Validation/Pump_stratos.mos" "Simulate and plot"), Documentation(info=" -

                                      This example demonstrates and tests the use of a flow machine that uses -a performance data from a Stratos pump.

                                      -", revisions=" -
                                        -
                                      • -February 17, 2016, by Michael Wetter:
                                        -Updated parameter names for -#396. -
                                      • -
                                      • April 18, 2014 - by Filip Jorissen:
                                        - Initial version -
                                      • -
                                      -")); +

                                      This example demonstrates and tests the use of a flow machine that uses + a performance data from a Stratos pump.

                                      + ",revisions=" +
                                        +
                                      • + February 17, 2016, by Michael Wetter:
                                        + Updated parameter names for + #396. +
                                      • +
                                      • April 18, 2014 + by Filip Jorissen:
                                        + Initial version +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end Pump_stratos; diff --git a/AixLib/Fluid/Movers/Validation/SpeedControlled_Nrpm.mo b/AixLib/Fluid/Movers/Validation/SpeedControlled_Nrpm.mo index 575e9e7d4b..889abafb11 100644 --- a/AixLib/Fluid/Movers/Validation/SpeedControlled_Nrpm.mo +++ b/AixLib/Fluid/Movers/Validation/SpeedControlled_Nrpm.mo @@ -30,23 +30,24 @@ experiment(Tolerance=1e-08, StopTime=1.0), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Movers/Validation/SpeedControlled_Nrpm.mos" "Simulate and plot"), Documentation(info=" -

                                      -This example demonstrates and tests the use of a flow machine whose mass flow rate is reduced to zero. -

                                      -

                                      -The fans have been configured as steady-state models. -This ensures that the actual speed is equal to the input signal. -

                                      -", revisions=" -
                                        -
                                      • -February 14, 2012, by Michael Wetter:
                                        -Added filter for start-up and shut-down transient. -
                                      • -
                                      • -March 24 2010, by Michael Wetter:
                                        -First implementation. -
                                      • -
                                      -")); +

                                      + This example demonstrates and tests the use of a flow machine whose mass flow rate is reduced to zero. +

                                      +

                                      + The fans have been configured as steady-state models. + This ensures that the actual speed is equal to the input signal. +

                                      + ",revisions=" +
                                        +
                                      • + February 14, 2012, by Michael Wetter:
                                        + Added filter for start-up and shut-down transient. +
                                      • +
                                      • + March 24 2010, by Michael Wetter:
                                        + First implementation. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end SpeedControlled_Nrpm; diff --git a/AixLib/Fluid/Movers/Validation/SpeedControlled_y.mo b/AixLib/Fluid/Movers/Validation/SpeedControlled_y.mo index e982ecef2e..7e62c60920 100644 --- a/AixLib/Fluid/Movers/Validation/SpeedControlled_y.mo +++ b/AixLib/Fluid/Movers/Validation/SpeedControlled_y.mo @@ -31,23 +31,24 @@ experiment(Tolerance=1e-08, StopTime=1.0), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Movers/Validation/SpeedControlled_y.mos" "Simulate and plot"), Documentation(info=" -

                                      -This example demonstrates and tests the use of a flow machine whose mass flow rate is reduced to zero. -

                                      -

                                      -The fans have been configured as steady-state models. -This ensures that the actual speed is equal to the input signal. -

                                      -", revisions=" -
                                        -
                                      • -February 14, 2012, by Michael Wetter:
                                        -Added filter for start-up and shut-down transient. -
                                      • -
                                      • -March 24 2010, by Michael Wetter:
                                        -First implementation. -
                                      • -
                                      -")); +

                                      + This example demonstrates and tests the use of a flow machine whose mass flow rate is reduced to zero. +

                                      +

                                      + The fans have been configured as steady-state models. + This ensures that the actual speed is equal to the input signal. +

                                      + ",revisions=" +
                                        +
                                      • + February 14, 2012, by Michael Wetter:
                                        + Added filter for start-up and shut-down transient. +
                                      • +
                                      • + March 24 2010, by Michael Wetter:
                                        + First implementation. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end SpeedControlled_y; diff --git a/AixLib/Fluid/Movers/Validation/SpeedControlled_y_linear.mo b/AixLib/Fluid/Movers/Validation/SpeedControlled_y_linear.mo index a7cbe20a36..362646de63 100644 --- a/AixLib/Fluid/Movers/Validation/SpeedControlled_y_linear.mo +++ b/AixLib/Fluid/Movers/Validation/SpeedControlled_y_linear.mo @@ -4,9 +4,9 @@ model SpeedControlled_y_linear extends Modelica.Icons.Example; package Medium = AixLib.Media.Water "Medium model"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal = 0.5 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=0.5 "Nominal mass flow rate"; - parameter Modelica.SIunits.PressureDifference dp_nominal = 10000 + parameter Modelica.Units.SI.PressureDifference dp_nominal=10000 "Nominal pressure"; Modelica.Blocks.Sources.Ramp y( @@ -89,37 +89,38 @@ experiment(Tolerance=1e-06, StopTime=1.0), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Movers/Validation/SpeedControlled_y_linear.mos" "Simulate and plot"), Documentation(info=" -

                                      -This example demonstrates and tests the use of a flow machine whose speed is reduced to zero. -In the top model, the pressure drop across the pump is constant, and in the bottom model, -the mass flow rate across the pump is constant. -In the top model, a small flow resistance has been added since a pump with zero speed cannot -produce a non-zero pressure raise. For this operating region, the pressure drop ensures that -the model is non-singular. -

                                      -

                                      -The fans have been configured as steady-state models. -This ensures that the actual speed is equal to the input signal. -

                                      -", revisions=" -
                                        -
                                      • February 20, 2016, by Ruben Baetens:
                                        -Removal of dynamicBalance as parameter for massDynamics and energyDynamics. -
                                      • -
                                      • -January 22, 2016, by Michael Wetter:
                                        -Corrected type declaration of pressure difference. -This is -for #404. -
                                      • -
                                      • -February 14, 2012, by Michael Wetter:
                                        -Added filter for start-up and shut-down transient. -
                                      • -
                                      • -March 24 2010, by Michael Wetter:
                                        -First implementation. -
                                      • -
                                      -")); +

                                      + This example demonstrates and tests the use of a flow machine whose speed is reduced to zero. + In the top model, the pressure drop across the pump is constant, and in the bottom model, + the mass flow rate across the pump is constant. + In the top model, a small flow resistance has been added since a pump with zero speed cannot + produce a non-zero pressure raise. For this operating region, the pressure drop ensures that + the model is non-singular. +

                                      +

                                      + The fans have been configured as steady-state models. + This ensures that the actual speed is equal to the input signal. +

                                      + ",revisions=" +
                                        +
                                      • February 20, 2016, by Ruben Baetens:
                                        + Removal of dynamicBalance as parameter for massDynamics and energyDynamics. +
                                      • +
                                      • + January 22, 2016, by Michael Wetter:
                                        + Corrected type declaration of pressure difference. + This is + for #404. +
                                      • +
                                      • + February 14, 2012, by Michael Wetter:
                                        + Added filter for start-up and shut-down transient. +
                                      • +
                                      • + March 24 2010, by Michael Wetter:
                                        + First implementation. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end SpeedControlled_y_linear; diff --git a/AixLib/Fluid/Movers/package.order b/AixLib/Fluid/Movers/package.order index 6b36529540..11de6715f7 100644 --- a/AixLib/Fluid/Movers/package.order +++ b/AixLib/Fluid/Movers/package.order @@ -4,6 +4,7 @@ FlowControlled_m_flow SpeedControlled_Nrpm SpeedControlled_y Compressors +DpControlledMovers PumpsPolynomialBased Data Examples diff --git a/AixLib/Fluid/Sensors/BaseClasses/PartialAbsoluteSensor.mo b/AixLib/Fluid/Sensors/BaseClasses/PartialAbsoluteSensor.mo index b6eb632e4b..9afd1786b1 100644 --- a/AixLib/Fluid/Sensors/BaseClasses/PartialAbsoluteSensor.mo +++ b/AixLib/Fluid/Sensors/BaseClasses/PartialAbsoluteSensor.mo @@ -27,9 +27,9 @@ protected initial equation assert(not warnAboutOnePortConnection, "Sensor " + instanceName + " can lead to numerical problems if connected to a scalar fluid port. - Only connect it to a vectorized fluid port, such as used in 'AixLib.Fluid.MixingVolumes`. - See AixLib.Fluid.Sensors.UsersGuide for more information. - To disable this warning, set 'warnAboutOnePortConnection = false' in " + instanceName + ".", + Only connect it to a vectorized fluid port, such as used in 'AixLib.Fluid.MixingVolumes`. + See AixLib.Fluid.Sensors.UsersGuide for more information. + To disable this warning, set 'warnAboutOnePortConnection = false' in "+ instanceName + ".", level=AssertionLevel.warning); equation port.m_flow = 0; @@ -37,55 +37,56 @@ equation port.Xi_outflow = zeros(Medium.nXi); port.C_outflow = zeros(Medium.nC); annotation (Documentation(info=" -

                                      -Partial component to model an absolute sensor. -The component can be used for pressure sensor models. -Use for other properties such as temperature or density is discouraged, because the enthalpy at the connector can have different meanings, depending on the connection topology. For these properties, use - -AixLib.Fluid.Sensors.BaseClasses.PartialFlowSensor. -

                                      -", +

                                      + Partial component to model an absolute sensor. + The component can be used for pressure sensor models. + Use for other properties such as temperature or density is discouraged, because the enthalpy at the connector can have different meanings, depending on the connection topology. For these properties, use + + AixLib.Fluid.Sensors.BaseClasses.PartialFlowSensor. +

                                      + ", revisions=" -
                                        -
                                      • -September 20, 2020, by Michael Wetter:
                                        -Introduced parameter warnAboutOnePortConnection and added assertion with level set to warning.
                                        -This is for - #1399. -
                                      • -
                                      • -January 18, 2019, by Jianjun Hu:
                                        -Limited the media choice. -See #1050. -
                                      • -
                                      • -September 7, 2018, by Michael Wetter:
                                        -Changed -port(redeclare package Medium=Medium, m_flow(min=0, max=0)) -to -port(redeclare package Medium=Medium, m_flow(min=0)) -to avoid in Dymola 2019FD01 beta1 the message -\"port.m_flow has the range [0,0] - which is suspicious since the max-value should be above the min-value\" -which causes an error in pedantic mode. -Note that the MSL also uses only a min value. -
                                      • -
                                      • -March 22, 2017, by Filip Jorissen:
                                        -Set m_flow(max=0). -This is for -#687. -
                                      • -
                                      • -February 12, 2011, by Michael Wetter:
                                        -First implementation. -Implementation is based on Modelica.Fluid. -
                                      • -
                                      -"), +
                                        +
                                      • + September 20, 2020, by Michael Wetter:
                                        + Introduced parameter warnAboutOnePortConnection and added assertion with level set to warning.
                                        + This is for + #1399. +
                                      • +
                                      • + January 18, 2019, by Jianjun Hu:
                                        + Limited the media choice. + See #1050. +
                                      • +
                                      • + September 7, 2018, by Michael Wetter:
                                        + Changed + port(redeclare package Medium=Medium, m_flow(min=0, max=0)) + to + port(redeclare package Medium=Medium, m_flow(min=0)) + to avoid in Dymola 2019FD01 beta1 the message + \"port.m_flow has the range [0,0] - which is suspicious since the max-value should be above the min-value\" + which causes an error in pedantic mode. + Note that the MSL also uses only a min value. +
                                      • +
                                      • + March 22, 2017, by Filip Jorissen:
                                        + Set m_flow(max=0). + This is for + #687. +
                                      • +
                                      • + February 12, 2011, by Michael Wetter:
                                        + First implementation. + Implementation is based on Modelica.Fluid. +
                                      • +
                                      + "), Icon( graphics={ Bitmap( visible = warnAboutOnePortConnection, extent={{-96,-82},{-64,-50}}, - fileName="modelica://AixLib/Resources/Images/Fluid/Sensors/warningIcon.png")})); + fileName="modelica://AixLib/Resources/Images/Fluid/Sensors/warningIcon.png")}), + __Dymola_LockedEditing="Model from IBPSA"); end PartialAbsoluteSensor; diff --git a/AixLib/Fluid/Sensors/BaseClasses/PartialDynamicFlowSensor.mo b/AixLib/Fluid/Sensors/BaseClasses/PartialDynamicFlowSensor.mo index d702e05957..ef3138cc96 100644 --- a/AixLib/Fluid/Sensors/BaseClasses/PartialDynamicFlowSensor.mo +++ b/AixLib/Fluid/Sensors/BaseClasses/PartialDynamicFlowSensor.mo @@ -3,7 +3,7 @@ partial model PartialDynamicFlowSensor "Partial component to model sensors that measure flow properties using a dynamic model" extends PartialFlowSensor; - parameter Modelica.SIunits.Time tau(min=0) = 1 + parameter Modelica.Units.SI.Time tau(min=0) = 1 "Time constant at nominal flow rate (use tau=0 for steady-state sensor, but see user guide for potential problems)"; parameter Modelica.Blocks.Types.Init initType = Modelica.Blocks.Types.Init.InitialState "Type of initialization (InitialState and InitialOutput are identical)" @@ -32,41 +32,42 @@ equation Line(visible=(tau <> 0), points={{52,60},{58,74},{66,86},{76,92},{88,96},{98,96}}, color={0, 0,127})}), Documentation(info=" -

                                      -Partial component to model a sensor that measures any intensive properties -of a flow, e.g., to get temperature or density in the flow -between fluid connectors.

                                      -

                                      -The sensor computes a gain that is zero at zero mass flow rate. -This avoids fast transients if the flow is close to zero, thereby -improving the numerical efficiency. -

                                      -", revisions=" -
                                        -
                                      • -August 9, 2016, by Michael Wetter:
                                        -Improved documentation for tau. -
                                      • -
                                      • -January 12, 2016, by Filip Jorissen:
                                        -Added optional parameter tauInv. -
                                      • -
                                      • -May 29, 2014, by Michael Wetter:
                                        -Removed undesirable annotation Evaluate=true. -
                                      • -
                                      • -March 29, 2013, by Michael Wetter:
                                        -Changed the parameter initType to -Modelica.Blocks.Types.Init.InitialState. -This allows a pedantic model check in Dymola 2014 of models that instanciate sensors -but do not set this parameter. It also ensures that different Modelica simulators solve -the same initialization problem. -
                                      • -
                                      • -July 7, 2011, by Michael Wetter:
                                        -First implementation. -
                                      • -
                                      -")); +

                                      + Partial component to model a sensor that measures any intensive properties + of a flow, e.g., to get temperature or density in the flow + between fluid connectors.

                                      +

                                      + The sensor computes a gain that is zero at zero mass flow rate. + This avoids fast transients if the flow is close to zero, thereby + improving the numerical efficiency. +

                                      + ",revisions=" +
                                        +
                                      • + August 9, 2016, by Michael Wetter:
                                        + Improved documentation for tau. +
                                      • +
                                      • + January 12, 2016, by Filip Jorissen:
                                        + Added optional parameter tauInv. +
                                      • +
                                      • + May 29, 2014, by Michael Wetter:
                                        + Removed undesirable annotation Evaluate=true. +
                                      • +
                                      • + March 29, 2013, by Michael Wetter:
                                        + Changed the parameter initType to + Modelica.Blocks.Types.Init.InitialState. + This allows a pedantic model check in Dymola 2014 of models that instanciate sensors + but do not set this parameter. It also ensures that different Modelica simulators solve + the same initialization problem. +
                                      • +
                                      • + July 7, 2011, by Michael Wetter:
                                        + First implementation. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end PartialDynamicFlowSensor; diff --git a/AixLib/Fluid/Sensors/BaseClasses/PartialFlowSensor.mo b/AixLib/Fluid/Sensors/BaseClasses/PartialFlowSensor.mo index de0f505ae8..adf353fe89 100644 --- a/AixLib/Fluid/Sensors/BaseClasses/PartialFlowSensor.mo +++ b/AixLib/Fluid/Sensors/BaseClasses/PartialFlowSensor.mo @@ -2,12 +2,13 @@ within AixLib.Fluid.Sensors.BaseClasses; partial model PartialFlowSensor "Partial component to model sensors that measure flow properties" extends AixLib.Fluid.Interfaces.PartialTwoPort; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal(min=0) + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal(min=0) "Nominal mass flow rate, used for regularization near zero flow" - annotation(Dialog(group = "Nominal condition")); - parameter Modelica.SIunits.MassFlowRate m_flow_small(min=0) = 1E-4*m_flow_nominal + annotation (Dialog(group="Nominal condition")); + parameter Modelica.Units.SI.MassFlowRate m_flow_small(min=0) = 1E-4* + m_flow_nominal "For bi-directional flow, temperature is regularized in the region |m_flow| < m_flow_small (m_flow_small > 0 required)" - annotation(Dialog(tab="Advanced")); + annotation (Dialog(tab="Advanced")); equation // mass balance port_b.m_flow = -port_a.m_flow; @@ -21,34 +22,35 @@ equation port_a.C_outflow = if allowFlowReversal then inStream(port_b.C_outflow) else zeros(Medium.nC); port_b.C_outflow = inStream(port_a.C_outflow); annotation (Documentation(info=" -

                                      -Partial component to model a sensor. -The sensor is ideal. It does not influence mass, energy, -species or substance balance, and it has no flow friction. -

                                      -", +

                                      + Partial component to model a sensor. + The sensor is ideal. It does not influence mass, energy, + species or substance balance, and it has no flow friction. +

                                      + ", revisions=" -
                                        -
                                      • -August 15, 2015, by Filip Jorissen:
                                        -Implemented more efficient computation of port_a.Xi_outflow, -port_a.h_outflow -and port_a.C_outflow when allowFlowReversal=false. -This is for -#281. -
                                      • -
                                      • -June 19, 2015, by Michael Wetter:
                                        -Moved m_flow_small to the Advanced tab -as it usually need not be changed by the user. -Other models such as heat exchangers also have this parameter -on the Advanced tab. -
                                      • -
                                      • -February 12, 2011, by Michael Wetter:
                                        -First implementation. -Implementation is based on Modelica.Fluid. -
                                      • -
                                      -")); +
                                        +
                                      • + August 15, 2015, by Filip Jorissen:
                                        + Implemented more efficient computation of port_a.Xi_outflow, + port_a.h_outflow + and port_a.C_outflow when allowFlowReversal=false. + This is for + #281. +
                                      • +
                                      • + June 19, 2015, by Michael Wetter:
                                        + Moved m_flow_small to the Advanced tab + as it usually need not be changed by the user. + Other models such as heat exchangers also have this parameter + on the Advanced tab. +
                                      • +
                                      • + February 12, 2011, by Michael Wetter:
                                        + First implementation. + Implementation is based on Modelica.Fluid. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end PartialFlowSensor; diff --git a/AixLib/Fluid/Sensors/Conversions/Examples/To_VolumeFraction.mo b/AixLib/Fluid/Sensors/Conversions/Examples/To_VolumeFraction.mo index 992af2c511..8895085183 100644 --- a/AixLib/Fluid/Sensors/Conversions/Examples/To_VolumeFraction.mo +++ b/AixLib/Fluid/Sensors/Conversions/Examples/To_VolumeFraction.mo @@ -143,36 +143,37 @@ __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Sensors "Simulate and plot"), Diagram(coordinateSystem(preserveAspectRatio=false,extent={{-200,-100},{200,100}})), Documentation(info=" -This example demonstrates the modeling of a room with one person and CO2 control. -The room has a volume of 4*4*2.7 m3, and the CO2 inflow is from -one person. -A control system regulates the outside air to maintain a CO2 concentration of 1000 PPM -in the room. The outside air has a CO2 concentration of 300 PPM. -Note that for simplicity, we allow zero outside air flow rate if the CO2 concentration is below -the setpoint, which does not comply with ASHRAE regulations. -", revisions=" -
                                        -
                                      • -May 2, 2019, by Jianjun Hu:
                                        -Replaced fluid source. This is for - #1072. -
                                      • -
                                      • -April 25, 2017 by Filip Jorissen:
                                        -Increased model tolerance for -#750. -
                                      • -
                                      • -March 27, 2013 by Michael Wetter:
                                        -Added a flow resistance between the volume and the ambient to decouple the -state of the volume from the boundary conditions. This is needed to allow -a pedantic model check in Dymola 2014, as otherwise, the initial conditions of -the volume could not be specified without introducing redundant equations. -
                                      • -
                                      • -February 13, 2010 by Michael Wetter:
                                        -First implementation. -
                                      • -
                                      -")); + This example demonstrates the modeling of a room with one person and CO2 control. + The room has a volume of 4*4*2.7 m3, and the CO2 inflow is from + one person. + A control system regulates the outside air to maintain a CO2 concentration of 1000 PPM + in the room. The outside air has a CO2 concentration of 300 PPM. + Note that for simplicity, we allow zero outside air flow rate if the CO2 concentration is below + the setpoint, which does not comply with ASHRAE regulations. + ",revisions=" +
                                        +
                                      • + May 2, 2019, by Jianjun Hu:
                                        + Replaced fluid source. This is for + #1072. +
                                      • +
                                      • + April 25, 2017 by Filip Jorissen:
                                        + Increased model tolerance for + #750. +
                                      • +
                                      • + March 27, 2013 by Michael Wetter:
                                        + Added a flow resistance between the volume and the ambient to decouple the + state of the volume from the boundary conditions. This is needed to allow + a pedantic model check in Dymola 2014, as otherwise, the initial conditions of + the volume could not be specified without introducing redundant equations. +
                                      • +
                                      • + February 13, 2010 by Michael Wetter:
                                        + First implementation. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end To_VolumeFraction; diff --git a/AixLib/Fluid/Sensors/Conversions/Examples/package.mo b/AixLib/Fluid/Sensors/Conversions/Examples/package.mo index eec4869b0e..a21009a5ca 100644 --- a/AixLib/Fluid/Sensors/Conversions/Examples/package.mo +++ b/AixLib/Fluid/Sensors/Conversions/Examples/package.mo @@ -1,6 +1,7 @@ within AixLib.Fluid.Sensors.Conversions; package Examples "Collection of models that illustrate model use and test models" extends Modelica.Icons.ExamplesPackage; + annotation (preferredView="info", Documentation(info="

                                      This package contains examples for the use of models that can be found in diff --git a/AixLib/Fluid/Sensors/Conversions/To_VolumeFraction.mo b/AixLib/Fluid/Sensors/Conversions/To_VolumeFraction.mo index 8c46931a23..005c12411e 100644 --- a/AixLib/Fluid/Sensors/Conversions/To_VolumeFraction.mo +++ b/AixLib/Fluid/Sensors/Conversions/To_VolumeFraction.mo @@ -1,8 +1,9 @@ within AixLib.Fluid.Sensors.Conversions; model To_VolumeFraction "Conversion from mass fraction to volume fraction" - parameter Modelica.SIunits.MolarMass MMMea "Molar mass of measured substance"; - parameter Modelica.SIunits.MolarMass MMBul=Modelica.Media.IdealGases.Common.SingleGasesData.Air.MM + parameter Modelica.Units.SI.MolarMass MMMea + "Molar mass of measured substance"; + parameter Modelica.Units.SI.MolarMass MMBul=Modelica.Media.IdealGases.Common.SingleGasesData.Air.MM "Molar mass of bulk medium"; Modelica.Blocks.Interfaces.RealInput m "Mass fraction" @@ -24,19 +25,19 @@ equation fillPattern=FillPattern.Solid), Text( extent={{-84,52},{-14,14}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="M'"), Text( extent={{36,48},{102,8}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="V'"), Text( extent={{22,-14},{106,-52}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="V"), Text( extent={{-88,-12},{-22,-48}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="M"), Rectangle( extent={{-72,4},{-38,0}}, @@ -49,40 +50,41 @@ equation fillColor={0,0,255}, fillPattern=FillPattern.Solid),Text( extent={{-48,146},{50,98}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="%name"), Text( extent={{98,-46},{-22,-96}}, - lineColor={0,0,0}, - textString=DynamicSelect("", String(V, leftjustified=false, significantDigits=3)))}), + textColor={0,0,0}, + textString=DynamicSelect("", String(V, leftJustified=false, significantDigits=3)))}), defaultComponentName="toVolFra", Documentation(info=" -

                                      -This component converts mass fraction to volume fraction for an ideal gas. -The default value for the parameter MMBul -assumes that the bulk medium is air. -The model assumes that the concentration -of the measured substance is small enough to be neglected in the molar mass -of the mixture. -

                                      -", +

                                      + This component converts mass fraction to volume fraction for an ideal gas. + The default value for the parameter MMBul + assumes that the bulk medium is air. + The model assumes that the concentration + of the measured substance is small enough to be neglected in the molar mass + of the mixture. +

                                      + ", revisions=" -
                                        -
                                      • -February 25, 2020, by Michael Wetter:
                                        -Changed icon to display its operating state.
                                        -This is for -#1294. -
                                      • -
                                      • -February 13, 2011 by Michael Wetter:
                                        -Changed connectors from the obsolete RealSignal -to RealInput and RealOutput. -
                                      • -
                                      • -September 22, 2008 by Michael Wetter:
                                        -First implementation. -
                                      • -
                                      -")); +
                                        +
                                      • + February 25, 2020, by Michael Wetter:
                                        + Changed icon to display its operating state.
                                        + This is for + #1294. +
                                      • +
                                      • + February 13, 2011 by Michael Wetter:
                                        + Changed connectors from the obsolete RealSignal + to RealInput and RealOutput. +
                                      • +
                                      • + September 22, 2008 by Michael Wetter:
                                        + First implementation. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end To_VolumeFraction; diff --git a/AixLib/Fluid/Sensors/Conversions/package.mo b/AixLib/Fluid/Sensors/Conversions/package.mo index dcf02cdcc7..a4c5a1c4e2 100644 --- a/AixLib/Fluid/Sensors/Conversions/package.mo +++ b/AixLib/Fluid/Sensors/Conversions/package.mo @@ -1,6 +1,7 @@ within AixLib.Fluid.Sensors; package Conversions "Package with conversions for sensor models" extends Modelica.Icons.Package; + annotation (preferredView="info", Documentation(info=" This package contains models to convert sensor output. ")); diff --git a/AixLib/Fluid/Sensors/Density.mo b/AixLib/Fluid/Sensors/Density.mo index 2ad6ed7a37..f9f244dd58 100644 --- a/AixLib/Fluid/Sensors/Density.mo +++ b/AixLib/Fluid/Sensors/Density.mo @@ -1,7 +1,7 @@ within AixLib.Fluid.Sensors; model Density "Ideal one port density sensor" extends AixLib.Fluid.Sensors.BaseClasses.PartialAbsoluteSensor; - extends Modelica.Icons.RotationalSensor; + extends Modelica.Icons.RoundSensor; Modelica.Blocks.Interfaces.RealOutput d(final quantity="Density", final unit="kg/m3", min=0) "Density in port medium" @@ -20,50 +20,51 @@ annotation (defaultComponentName="senDen", Text( extent={{-150,80},{150,120}}, textString="%name", - lineColor={0,0,255}), + textColor={0,0,255}), Text( extent={{154,-31},{56,-61}}, - lineColor={0,0,0}, + textColor={0,0,0}, textString="d"), Line(points={{70,0},{100,0}}, color={0,0,127}), Text( extent={{180,90},{60,40}}, - lineColor={0,0,0}, - textString=DynamicSelect("", String(d, leftjustified=false, significantDigits=3)))}), + textColor={0,0,0}, + textString=DynamicSelect("", String(d, leftJustified=false, significantDigits=3)))}), Documentation(info=" -

                                      -This model outputs the density of the fluid connected to its port. -The sensor is ideal, i.e. it does not influence the fluid. -

                                      -

                                      -To measure density in a duct or pipe, use -AixLib.Fluid.Sensors.DensityTwoPort -rather than this sensor. -Read the - -AixLib.Fluid.Sensors.UsersGuide -prior to using this model to see about potential numerical problems if this sensor is used incorrectly -in a system model. -

                                      -", +

                                      + This model outputs the density of the fluid connected to its port. + The sensor is ideal, i.e. it does not influence the fluid. +

                                      +

                                      + To measure density in a duct or pipe, use + AixLib.Fluid.Sensors.DensityTwoPort + rather than this sensor. + Read the + + AixLib.Fluid.Sensors.UsersGuide + prior to using this model to see about potential numerical problems if this sensor is used incorrectly + in a system model. +

                                      + ", revisions=" -
                                        -
                                      • -September 21, 2020, by Michael Wetter:
                                        -Introduced parameter warnAboutOnePortConnection and updated documentation.
                                        -This is for -#1399. -
                                      • -
                                      • -February 25, 2020, by Michael Wetter:
                                        -Changed icon to display its operating state.
                                        -This is for -#1294. -
                                      • -
                                      • -September 29, 2009, by Michael Wetter:
                                        -First implementation. -
                                      • -
                                      -")); +
                                        +
                                      • + September 21, 2020, by Michael Wetter:
                                        + Introduced parameter warnAboutOnePortConnection and updated documentation.
                                        + This is for + #1399. +
                                      • +
                                      • + February 25, 2020, by Michael Wetter:
                                        + Changed icon to display its operating state.
                                        + This is for + #1294. +
                                      • +
                                      • + September 29, 2009, by Michael Wetter:
                                        + First implementation. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end Density; diff --git a/AixLib/Fluid/Sensors/DensityTwoPort.mo b/AixLib/Fluid/Sensors/DensityTwoPort.mo index 3708a71eb9..7ea258b317 100644 --- a/AixLib/Fluid/Sensors/DensityTwoPort.mo +++ b/AixLib/Fluid/Sensors/DensityTwoPort.mo @@ -1,7 +1,7 @@ within AixLib.Fluid.Sensors; model DensityTwoPort "Ideal two port density sensor" extends AixLib.Fluid.Sensors.BaseClasses.PartialDynamicFlowSensor; - extends Modelica.Icons.RotationalSensor; + extends Modelica.Icons.RoundSensor; Modelica.Blocks.Interfaces.RealOutput d(final quantity="Density", final unit="kg/m3", min=0) "Density of the passing fluid" @@ -14,13 +14,13 @@ model DensityTwoPort "Ideal two port density sensor" p=p_start, T=T_start, X=X_start)) "Initial or guess value of output (=state)" annotation (Dialog(group="Initialization")); - parameter Modelica.SIunits.Temperature T_start=Medium.T_default + parameter Modelica.Units.SI.Temperature T_start=Medium.T_default "Temperature used to compute d_start" annotation (Dialog(group="Initialization")); - parameter Modelica.SIunits.Pressure p_start=Medium.p_default + parameter Modelica.Units.SI.Pressure p_start=Medium.p_default "Pressure used to compute d_start" annotation (Dialog(group="Initialization")); - parameter Modelica.SIunits.MassFraction X_start[Medium.nX]=Medium.X_default + parameter Modelica.Units.SI.MassFraction X_start[Medium.nX]=Medium.X_default "Mass fraction used to compute d_start" annotation (Dialog(group="Initialization")); protected @@ -64,55 +64,56 @@ annotation (defaultComponentName="senDen", grid={1,1}), graphics={ Text( extent={{102,124},{6,95}}, - lineColor={0,0,0}, + textColor={0,0,0}, textString="d"), Line(points={{0,100},{0,70}}, color={0,0,127}), Line(points={{-100,0},{-70,0}}, color={0,128,255}), Line(points={{70,0},{100,0}}, color={0,128,255}), Text( extent={{-20,120},{-140,70}}, - lineColor={0,0,0}, - textString=DynamicSelect("", String(d, leftjustified=false, significantDigits=3)))}), + textColor={0,0,0}, + textString=DynamicSelect("", String(d, leftJustified=false, significantDigits=3)))}), Documentation(info=" -

                                      -This model outputs the density of the fluid flowing from -port_a to port_b. -

                                      -

                                      -The sensor is ideal, i.e., it does not influence the fluid. -If the parameter tau is non-zero, then its output -is computed using a first order differential equation. -Setting tau=0 is not recommend. See - -AixLib.Fluid.Sensors.UsersGuide for an explanation. -

                                      -", +

                                      + This model outputs the density of the fluid flowing from + port_a to port_b. +

                                      +

                                      + The sensor is ideal, i.e., it does not influence the fluid. + If the parameter tau is non-zero, then its output + is computed using a first order differential equation. + Setting tau=0 is not recommend. See + + AixLib.Fluid.Sensors.UsersGuide for an explanation. +

                                      + ", revisions=" -
                                        -
                                      • -February 25, 2020, by Michael Wetter:
                                        -Changed icon to display its operating state.
                                        -This is for -#1294. -
                                      • -
                                      • -January 18, 2016 by Filip Jorissen:
                                        -Using parameter tauInv -since this now exists in -AixLib.Fluid.Sensors.BaseClasses.PartialDynamicFlowSensor. -This is for -#372. -
                                      • -
                                      • -June 3, 2011 by Michael Wetter:
                                        -Revised implementation to add dynamics in such a way that -the time constant increases as the mass flow rate tends to zero. -This significantly improves the numerics. -
                                      • -
                                      • -September 29, 2009, by Michael Wetter:
                                        -First implementation, based on Modelica.Fluid. -
                                      • -
                                      -")); +
                                        +
                                      • + February 25, 2020, by Michael Wetter:
                                        + Changed icon to display its operating state.
                                        + This is for + #1294. +
                                      • +
                                      • + January 18, 2016 by Filip Jorissen:
                                        + Using parameter tauInv + since this now exists in + AixLib.Fluid.Sensors.BaseClasses.PartialDynamicFlowSensor. + This is for + #372. +
                                      • +
                                      • + June 3, 2011 by Michael Wetter:
                                        + Revised implementation to add dynamics in such a way that + the time constant increases as the mass flow rate tends to zero. + This significantly improves the numerics. +
                                      • +
                                      • + September 29, 2009, by Michael Wetter:
                                        + First implementation, based on Modelica.Fluid. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end DensityTwoPort; diff --git a/AixLib/Fluid/Sensors/EnthalpyFlowRate.mo b/AixLib/Fluid/Sensors/EnthalpyFlowRate.mo index 127a0e9589..2cbd825da9 100644 --- a/AixLib/Fluid/Sensors/EnthalpyFlowRate.mo +++ b/AixLib/Fluid/Sensors/EnthalpyFlowRate.mo @@ -2,24 +2,24 @@ within AixLib.Fluid.Sensors; model EnthalpyFlowRate "Ideal enthalphy flow rate sensor" extends AixLib.Fluid.Sensors.BaseClasses.PartialDynamicFlowSensor( tau=0); - extends Modelica.Icons.RotationalSensor; + extends Modelica.Icons.RoundSensor; Modelica.Blocks.Interfaces.RealOutput H_flow(final unit="W") "Enthalpy flow rate, positive if from port_a to port_b" annotation (Placement(transformation( origin={0,110}, extent={{-10,-10},{10,10}}, rotation=90))); - parameter Modelica.SIunits.SpecificEnthalpy h_out_start= - Medium.specificEnthalpy_pTX( + parameter Modelica.Units.SI.SpecificEnthalpy h_out_start= + Medium.specificEnthalpy_pTX( p=Medium.p_default, T=Medium.T_default, X=Medium.X_default) "Initial or guess value of measured specific enthalpy" annotation (Dialog(group="Initialization")); protected - Modelica.SIunits.SpecificEnthalpy hMed_out(start=h_out_start) + Modelica.Units.SI.SpecificEnthalpy hMed_out(start=h_out_start) "Medium enthalpy to which the sensor is exposed"; - Modelica.SIunits.SpecificEnthalpy h_out(start=h_out_start) + Modelica.Units.SI.SpecificEnthalpy h_out(start=h_out_start) "Medium enthalpy that is used to compute the enthalpy flow rate"; initial equation if dynamic then @@ -55,75 +55,76 @@ annotation (defaultComponentName="senEntFlo", Line(points={{0,100},{0,70}}, color={0,0,127}), Text( extent={{180,151},{20,99}}, - lineColor={0,0,0}, + textColor={0,0,0}, textString="H_flow"), Text( extent={{-20,120},{-140,70}}, - lineColor={0,0,0}, - textString=DynamicSelect("", String(H_flow, leftjustified=false, significantDigits=3)))}), + textColor={0,0,0}, + textString=DynamicSelect("", String(H_flow, leftJustified=false, significantDigits=3)))}), Documentation(info=" -

                                      -This model outputs the enthalphy flow rate of the medium in the flow -between fluid ports. The sensor is ideal, i.e., it does not influence the fluid. -

                                      -

                                      -If the parameter tau is non-zero, then the measured -specific enthalpy hout that is used to -compute the enthalpy flow rate -Ḣ = ṁ hout -is computed using a first order differential equation. -See -AixLib.Fluid.Sensors.UsersGuide for an explanation. -

                                      -

                                      -For a sensor that measures the latent enthalpy flow rate, use - -AixLib.Fluid.Sensors.LatentEnthalpyFlowRate. -

                                      -", +

                                      + This model outputs the enthalphy flow rate of the medium in the flow + between fluid ports. The sensor is ideal, i.e., it does not influence the fluid. +

                                      +

                                      + If the parameter tau is non-zero, then the measured + specific enthalpy hout that is used to + compute the enthalpy flow rate + Ḣ = ṁ hout + is computed using a first order differential equation. + See + AixLib.Fluid.Sensors.UsersGuide for an explanation. +

                                      +

                                      + For a sensor that measures the latent enthalpy flow rate, use + + AixLib.Fluid.Sensors.LatentEnthalpyFlowRate. +

                                      + ", revisions=" -
                                        -
                                      • -October 19, 2020, by Antoine Gautier:
                                        -Changed default value for tau from 1 to 0.
                                        -This is for -#1406. -
                                      • -
                                      • -February 25, 2020, by Michael Wetter:
                                        -Changed icon to display its operating state.
                                        -This is for -#1294. -
                                      • -
                                      • -January 26, 2016, by Michael Wetter:
                                        -Made unit assignment of output signal final. -
                                      • -
                                      • -January 18, 2016 by Filip Jorissen:
                                        -Using parameter tauInv -since this now exists in -AixLib.Fluid.Sensors.BaseClasses.PartialDynamicFlowSensor. -This is for -#372. -
                                      • -
                                      • -August 31, 2013, by Michael Wetter:
                                        -Removed default value tau=0 as the base class -already sets tau=1. -This change was made so that all sensors use the same default value. -
                                      • -
                                      • -June 3, 2011 by Michael Wetter:
                                        -Revised implementation to add dynamics in such a way that -the time constant increases as the mass flow rate tends to zero. -This can improve the numerics. -
                                      • -
                                      • -April 9, 2008 by Michael Wetter:
                                        -First implementation. -Implementation is based on enthalpy sensor of Modelica.Fluid. -
                                      • -
                                      -")); +
                                        +
                                      • + October 19, 2020, by Antoine Gautier:
                                        + Changed default value for tau from 1 to 0.
                                        + This is for + #1406. +
                                      • +
                                      • + February 25, 2020, by Michael Wetter:
                                        + Changed icon to display its operating state.
                                        + This is for + #1294. +
                                      • +
                                      • + January 26, 2016, by Michael Wetter:
                                        + Made unit assignment of output signal final. +
                                      • +
                                      • + January 18, 2016 by Filip Jorissen:
                                        + Using parameter tauInv + since this now exists in + AixLib.Fluid.Sensors.BaseClasses.PartialDynamicFlowSensor. + This is for + #372. +
                                      • +
                                      • + August 31, 2013, by Michael Wetter:
                                        + Removed default value tau=0 as the base class + already sets tau=1. + This change was made so that all sensors use the same default value. +
                                      • +
                                      • + June 3, 2011 by Michael Wetter:
                                        + Revised implementation to add dynamics in such a way that + the time constant increases as the mass flow rate tends to zero. + This can improve the numerics. +
                                      • +
                                      • + April 9, 2008 by Michael Wetter:
                                        + First implementation. + Implementation is based on enthalpy sensor of Modelica.Fluid. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end EnthalpyFlowRate; diff --git a/AixLib/Fluid/Sensors/EntropyFlowRate.mo b/AixLib/Fluid/Sensors/EntropyFlowRate.mo index 2c71d81352..10211b7590 100644 --- a/AixLib/Fluid/Sensors/EntropyFlowRate.mo +++ b/AixLib/Fluid/Sensors/EntropyFlowRate.mo @@ -2,25 +2,25 @@ within AixLib.Fluid.Sensors; model EntropyFlowRate "Ideal entropy flow rate sensor" extends AixLib.Fluid.Sensors.BaseClasses.PartialDynamicFlowSensor( tau=0); - extends Modelica.Icons.RotationalSensor; + extends Modelica.Icons.RoundSensor; Modelica.Blocks.Interfaces.RealOutput S_flow(final unit="W/K") "Entropy flow rate, positive if from port_a to port_b" annotation (Placement(transformation( origin={0,110}, extent={{-10,-10},{10,10}}, rotation=90))); - parameter Modelica.SIunits.SpecificEntropy s_out_start= - Medium.specificEntropy_pTX( + parameter Modelica.Units.SI.SpecificEntropy s_out_start= + Medium.specificEntropy_pTX( p=Medium.p_default, T=Medium.T_default, X=Medium.X_default) "Initial or guess value of measured specific entropy" annotation (Dialog(group="Initialization")); protected - Modelica.SIunits.SpecificEntropy sMed_out(start=s_out_start) + Modelica.Units.SI.SpecificEntropy sMed_out(start=s_out_start) "Medium entropy to which the sensor is exposed"; - Modelica.SIunits.SpecificEntropy s_out(start=s_out_start) + Modelica.Units.SI.SpecificEntropy s_out(start=s_out_start) "Medium entropy that is used to compute the entropy flow rate"; - Modelica.SIunits.SpecificEntropy port_b_s_outflow(start=s_out_start) + Modelica.Units.SI.SpecificEntropy port_b_s_outflow(start=s_out_start) "Medium entropy outflowing at port_b if mass flow were from port_a to port_b"; initial equation if dynamic then @@ -65,48 +65,49 @@ annotation (defaultComponentName="senS_flow", Line(points={{0,100},{0,70}}, color={0,0,127}), Text( extent={{180,151},{20,99}}, - lineColor={0,0,0}, + textColor={0,0,0}, textString="S_flow"), Ellipse(extent={{-70,70},{70,-70}}, lineColor={255,0,0}), Text( extent={{-20,120},{-140,70}}, - lineColor={0,0,0}, - textString=DynamicSelect("", String(S_flow, leftjustified=false, significantDigits=3)))}), + textColor={0,0,0}, + textString=DynamicSelect("", String(S_flow, leftJustified=false, significantDigits=3)))}), Documentation(info=" -

                                      -This model outputs the entropy flow rate of the medium in the flow -between fluid ports. The sensor is ideal, i.e., it does not influence the fluid. -

                                      -

                                      -If the parameter tau is non-zero, then the measured -specific entropy sout that is used to -compute the entropy flow rate -Ṡ = ṁ sout -is computed using a first order differential equation. -See -AixLib.Fluid.Sensors.UsersGuide for an explanation. -

                                      -", +

                                      + This model outputs the entropy flow rate of the medium in the flow + between fluid ports. The sensor is ideal, i.e., it does not influence the fluid. +

                                      +

                                      + If the parameter tau is non-zero, then the measured + specific entropy sout that is used to + compute the entropy flow rate + Ṡ = ṁ sout + is computed using a first order differential equation. + See + AixLib.Fluid.Sensors.UsersGuide for an explanation. +

                                      + ", revisions=" -
                                        -
                                      • -October 19, 2020, by Antoine Gautier:
                                        -Changed default value for tau from 1 to 0.
                                        -This is for -#1406. -
                                      • -
                                      • -February 25, 2020, by Michael Wetter:
                                        -Changed icon to display its operating state.
                                        -This is for -#1294. -
                                      • -
                                      • -July 29, 2016, by Michael Wetter:
                                        -First implementation based on - -AixLib.Fluid.Sensors.EnthalpyFlowRate. -
                                      • -
                                      -")); +
                                        +
                                      • + October 19, 2020, by Antoine Gautier:
                                        + Changed default value for tau from 1 to 0.
                                        + This is for + #1406. +
                                      • +
                                      • + February 25, 2020, by Michael Wetter:
                                        + Changed icon to display its operating state.
                                        + This is for + #1294. +
                                      • +
                                      • + July 29, 2016, by Michael Wetter:
                                        + First implementation based on + + AixLib.Fluid.Sensors.EnthalpyFlowRate. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end EntropyFlowRate; diff --git a/AixLib/Fluid/Sensors/Examples/Density.mo b/AixLib/Fluid/Sensors/Examples/Density.mo index b1e7edd274..b77d515998 100644 --- a/AixLib/Fluid/Sensors/Examples/Density.mo +++ b/AixLib/Fluid/Sensors/Examples/Density.mo @@ -67,20 +67,21 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Sensors/Examples/Density.mos" "Simulate and plot"), Documentation(info=" -

                                      -This example tests the density sensors. -

                                      -", revisions=" -
                                        -
                                      • -September 10, 2013 by Michael Wetter:
                                        -Changed initialization of volume to fixed initial values to avoid -a translation warning in OpenModelica. -
                                      • -
                                      • -August 31, 2013 by Michael Wetter:
                                        -First implementation. -
                                      • -
                                      -")); +

                                      + This example tests the density sensors. +

                                      + ",revisions=" +
                                        +
                                      • + September 10, 2013 by Michael Wetter:
                                        + Changed initialization of volume to fixed initial values to avoid + a translation warning in OpenModelica. +
                                      • +
                                      • + August 31, 2013 by Michael Wetter:
                                        + First implementation. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end Density; diff --git a/AixLib/Fluid/Sensors/Examples/EnthalpyFlowRate.mo b/AixLib/Fluid/Sensors/Examples/EnthalpyFlowRate.mo index 95d05f0b3e..051c174ae9 100644 --- a/AixLib/Fluid/Sensors/Examples/EnthalpyFlowRate.mo +++ b/AixLib/Fluid/Sensors/Examples/EnthalpyFlowRate.mo @@ -73,31 +73,32 @@ equation experiment(Tolerance=1e-6, StopTime=60), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Sensors/Examples/EnthalpyFlowRate.mos" "Simulate and plot"), Documentation(info=" -

                                      -This example tests the enthalpy flow rate sensor and the -specific enthalpy sensor. -The model compares the output of the enthalpy flow rate sensor with -the product of the output of the enthalpy and the mass flow rate sensor. -

                                      -", revisions=" -
                                        -
                                      • -November 2, 2016, by Michael Wetter:
                                        -Changed assertions to blocks that compute the difference, -and added the difference to the regression results.
                                        -This is for -issue 564. -
                                      • -
                                      • -August 31, 2013, by Michael Wetter:
                                        -Change tau=0 to tau=1 for sensors. -Changed source model to use temperature instead of specific enthalpy -as a parameter. -
                                      • -
                                      • -September 29, 2009, by Michael Wetter:
                                        -First implementation. -
                                      • -
                                      -")); +

                                      + This example tests the enthalpy flow rate sensor and the + specific enthalpy sensor. + The model compares the output of the enthalpy flow rate sensor with + the product of the output of the enthalpy and the mass flow rate sensor. +

                                      + ",revisions=" +
                                        +
                                      • + November 2, 2016, by Michael Wetter:
                                        + Changed assertions to blocks that compute the difference, + and added the difference to the regression results.
                                        + This is for + issue 564. +
                                      • +
                                      • + August 31, 2013, by Michael Wetter:
                                        + Change tau=0 to tau=1 for sensors. + Changed source model to use temperature instead of specific enthalpy + as a parameter. +
                                      • +
                                      • + September 29, 2009, by Michael Wetter:
                                        + First implementation. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end EnthalpyFlowRate; diff --git a/AixLib/Fluid/Sensors/Examples/EntropyFlowRate.mo b/AixLib/Fluid/Sensors/Examples/EntropyFlowRate.mo index 4bdf75847b..e93e754139 100644 --- a/AixLib/Fluid/Sensors/Examples/EntropyFlowRate.mo +++ b/AixLib/Fluid/Sensors/Examples/EntropyFlowRate.mo @@ -71,18 +71,19 @@ equation experiment(Tolerance=1e-6, StopTime=60), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Sensors/Examples/EntropyFlowRate.mos" "Simulate and plot"), Documentation(info=" -

                                      -This example tests the entropy flow rate sensor and the -specific entropy sensor. -The model compares the output of the entropy flow rate sensor with -the product of the output of the entropy and the mass flow rate sensor. -

                                      -", revisions=" -
                                        -
                                      • -July 29, 2016, by Michael Wetter:
                                        -First implementation. -
                                      • -
                                      -")); +

                                      + This example tests the entropy flow rate sensor and the + specific entropy sensor. + The model compares the output of the entropy flow rate sensor with + the product of the output of the entropy and the mass flow rate sensor. +

                                      + ",revisions=" +
                                        +
                                      • + July 29, 2016, by Michael Wetter:
                                        + First implementation. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end EntropyFlowRate; diff --git a/AixLib/Fluid/Sensors/Examples/MassFraction.mo b/AixLib/Fluid/Sensors/Examples/MassFraction.mo index 89505a1d13..6696e0c665 100644 --- a/AixLib/Fluid/Sensors/Examples/MassFraction.mo +++ b/AixLib/Fluid/Sensors/Examples/MassFraction.mo @@ -59,15 +59,16 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Sensors/Examples/MassFraction.mos" "Simulate and plot"), Documentation(info=" -

                                      -This example tests the mass fraction sensors. -

                                      -", revisions=" -
                                        -
                                      • -April 7, 2009 by Michael Wetter:
                                        -First implementation. -
                                      • -
                                      -")); +

                                      + This example tests the mass fraction sensors. +

                                      + ",revisions=" +
                                        +
                                      • + April 7, 2009 by Michael Wetter:
                                        + First implementation. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end MassFraction; diff --git a/AixLib/Fluid/Sensors/Examples/MoistAirEnthalpyFlowRate.mo b/AixLib/Fluid/Sensors/Examples/MoistAirEnthalpyFlowRate.mo index ae7e301a71..36b958c469 100644 --- a/AixLib/Fluid/Sensors/Examples/MoistAirEnthalpyFlowRate.mo +++ b/AixLib/Fluid/Sensors/Examples/MoistAirEnthalpyFlowRate.mo @@ -89,26 +89,27 @@ __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Sensors "Simulate and plot"), Documentation( info=" -

                                      -This example tests the sensible and latent enthalpy sensors. -It compares the output from the enthalpy sensor with the sum of the -sensible and latent enthalpy sensors. -

                                      -", +

                                      + This example tests the sensible and latent enthalpy sensors. + It compares the output from the enthalpy sensor with the sum of the + sensible and latent enthalpy sensors. +

                                      + ", revisions=" -
                                        -
                                      • -November 2, 2016, by Michael Wetter:
                                        -Removed assertion and added the enthalpy flow rates instead -to the plot window so that they become part of the regression tests.
                                        -This is for -issue 564. -
                                      • -
                                      • -January 23 2013, by Michael Wetter:
                                        -Changed time constant of senH so that it has -the same transient response model as senH_flow. -
                                      • -
                                      -")); +
                                        +
                                      • + November 2, 2016, by Michael Wetter:
                                        + Removed assertion and added the enthalpy flow rates instead + to the plot window so that they become part of the regression tests.
                                        + This is for + issue 564. +
                                      • +
                                      • + January 23 2013, by Michael Wetter:
                                        + Changed time constant of senH so that it has + the same transient response model as senH_flow. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end MoistAirEnthalpyFlowRate; diff --git a/AixLib/Fluid/Sensors/Examples/PPM.mo b/AixLib/Fluid/Sensors/Examples/PPM.mo index 15cbbe3a69..378be41b6c 100644 --- a/AixLib/Fluid/Sensors/Examples/PPM.mo +++ b/AixLib/Fluid/Sensors/Examples/PPM.mo @@ -4,7 +4,8 @@ model PPM "Test model for the extra property sensor outputting PPM" package Medium = AixLib.Media.Air(extraPropertiesNames={"CO2"}) "Medium model"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal = volDyn.V*senPPMTwoPort.tau*3*rho_default + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=volDyn.V* + senPPMTwoPort.tau*3*rho_default "Mass flow rate into and out of the volume"; AixLib.Fluid.MixingVolumes.MixingVolume volDyn( @@ -13,7 +14,6 @@ model PPM "Test model for the extra property sensor outputting PPM" energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, V=1, use_C_flow=true, - massDynamics=Modelica.Fluid.Types.Dynamics.SteadyState, m_flow_nominal=m_flow_nominal) "Mixing volume with dynamics" annotation (Placement(transformation(extent={{70,50},{90,70}}))); AixLib.Fluid.Sources.MassFlowSource_T mSou( @@ -22,8 +22,9 @@ model PPM "Test model for the extra property sensor outputting PPM" m_flow=m_flow_nominal) "Fresh air supply" annotation (Placement(transformation(extent={{-40,30},{-20,50}}))); - AixLib.Fluid.Sensors.PPM senPPMVol(redeclare package Medium = Medium, - warnAboutOnePortConnection=false) + AixLib.Fluid.Sensors.PPM senPPMVol( + redeclare package Medium = Medium, + warnAboutOnePortConnection=false) "PPM sensor for mixing volume" annotation (Placement(transformation(extent={{120,40},{140,60}}))); Modelica.Blocks.Sources.Constant CO2In(k=m_flow_nominal/1000) @@ -69,7 +70,6 @@ model PPM "Test model for the extra property sensor outputting PPM" nPorts=3, V=1, use_C_flow=true, - massDynamics=Modelica.Fluid.Types.Dynamics.SteadyState, m_flow_nominal=m_flow_nominal, energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyState) "Mixing volume without dynamics" @@ -94,8 +94,8 @@ protected p=Medium.p_default, X=Medium.X_default[1:Medium.nXi]) "Medium state at default values"; // Density at medium default values, used to compute the size of control volumes - final parameter Modelica.SIunits.Density rho_default=Medium.density( - state=state_default) "Density, used to compute fluid mass"; + final parameter Modelica.Units.SI.Density rho_default=Medium.density(state= + state_default) "Density, used to compute fluid mass"; equation connect(mSou.ports[1], volDyn.ports[1]) annotation (Line(points={{-20,42},{ @@ -132,26 +132,27 @@ __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Sensors Diagram(coordinateSystem(preserveAspectRatio=false,extent={{-100,-100},{180, 180}})), Documentation(info=" -

                                      -This example tests the sensors that measure trace substances -using an output in parts per million. -Various configurations with and without flow reversal -and with or without dynamics are tested. -

                                      -", +

                                      + This example tests the sensors that measure trace substances + using an output in parts per million. + Various configurations with and without flow reversal + and with or without dynamics are tested. +

                                      + ", revisions=" -
                                        -
                                      • -May 2, 2019, by Jianjun Hu:
                                        -Replaced fluid source. This is for - #1072. -
                                      • -
                                      • -January 12, 2016, by Filip Jorissen:
                                        -First implementation. -See issue -#372 -
                                      • -
                                      -")); +
                                        +
                                      • + May 2, 2019, by Jianjun Hu:
                                        + Replaced fluid source. This is for + #1072. +
                                      • +
                                      • + January 12, 2016, by Filip Jorissen:
                                        + First implementation. + See issue + #372 +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end PPM; diff --git a/AixLib/Fluid/Sensors/Examples/Pressure.mo b/AixLib/Fluid/Sensors/Examples/Pressure.mo index e07e2d63f6..451e157b80 100644 --- a/AixLib/Fluid/Sensors/Examples/Pressure.mo +++ b/AixLib/Fluid/Sensors/Examples/Pressure.mo @@ -65,15 +65,16 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Sensors/Examples/Pressure.mos" "Simulate and plot"), Documentation(info=" -

                                      -This example tests the pressure sensors. -

                                      -", revisions=" -
                                        -
                                      • -August 31, 2013 by Michael Wetter:
                                        -First implementation. -
                                      • -
                                      -")); +

                                      + This example tests the pressure sensors. +

                                      + ",revisions=" +
                                        +
                                      • + August 31, 2013 by Michael Wetter:
                                        + First implementation. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end Pressure; diff --git a/AixLib/Fluid/Sensors/Examples/RelativeHumidity.mo b/AixLib/Fluid/Sensors/Examples/RelativeHumidity.mo index bbb5718362..6a763390f4 100644 --- a/AixLib/Fluid/Sensors/Examples/RelativeHumidity.mo +++ b/AixLib/Fluid/Sensors/Examples/RelativeHumidity.mo @@ -67,17 +67,18 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Sensors/Examples/RelativeHumidity.mos" "Simulate and plot"), Documentation(info=" -

                                      -This example tests the relative humidity sensors. -Note that the sensor with one port always measures the humidity -as if the flow would be leaving the source. -

                                      -", revisions=" -
                                        -
                                      • -May 12, 2010 by Michael Wetter:
                                        -First implementation. -
                                      • -
                                      -")); +

                                      + This example tests the relative humidity sensors. + Note that the sensor with one port always measures the humidity + as if the flow would be leaving the source. +

                                      + ",revisions=" +
                                        +
                                      • + May 12, 2010 by Michael Wetter:
                                        + First implementation. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end RelativeHumidity; diff --git a/AixLib/Fluid/Sensors/Examples/SpecificEnthalpy.mo b/AixLib/Fluid/Sensors/Examples/SpecificEnthalpy.mo index 5998e12d41..c106649faa 100644 --- a/AixLib/Fluid/Sensors/Examples/SpecificEnthalpy.mo +++ b/AixLib/Fluid/Sensors/Examples/SpecificEnthalpy.mo @@ -50,19 +50,20 @@ equation experiment(Tolerance=1e-6, StopTime=60), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Sensors/Examples/SpecificEnthalpy.mos" "Simulate and plot"), Documentation(info=" -

                                      -This example tests the specific enthalpy sensors. -

                                      -", revisions=" -
                                        -
                                      • -May 8, 2014, by Michael Wetter:
                                        -Set species concentration to the default value of the medium. -
                                      • -
                                      • -August 31, 2013, by Michael Wetter:
                                        -First implementation. -
                                      • -
                                      -")); +

                                      + This example tests the specific enthalpy sensors. +

                                      + ",revisions=" +
                                        +
                                      • + May 8, 2014, by Michael Wetter:
                                        + Set species concentration to the default value of the medium. +
                                      • +
                                      • + August 31, 2013, by Michael Wetter:
                                        + First implementation. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end SpecificEnthalpy; diff --git a/AixLib/Fluid/Sensors/Examples/SpecificEntropy.mo b/AixLib/Fluid/Sensors/Examples/SpecificEntropy.mo index 030dd5b70f..ef756f2949 100644 --- a/AixLib/Fluid/Sensors/Examples/SpecificEntropy.mo +++ b/AixLib/Fluid/Sensors/Examples/SpecificEntropy.mo @@ -50,15 +50,16 @@ equation experiment(Tolerance=1e-6, StopTime=60), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Sensors/Examples/SpecificEntropy.mos" "Simulate and plot"), Documentation(info=" -

                                      -This example tests the specific entropy sensors. -

                                      -", revisions=" -
                                        -
                                      • -August 31, 2013, by Michael Wetter:
                                        -First implementation. -
                                      • -
                                      -")); +

                                      + This example tests the specific entropy sensors. +

                                      + ",revisions=" +
                                        +
                                      • + August 31, 2013, by Michael Wetter:
                                        + First implementation. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end SpecificEntropy; diff --git a/AixLib/Fluid/Sensors/Examples/TemperatureDryBulb.mo b/AixLib/Fluid/Sensors/Examples/TemperatureDryBulb.mo index 848a7fc083..58559f4a01 100644 --- a/AixLib/Fluid/Sensors/Examples/TemperatureDryBulb.mo +++ b/AixLib/Fluid/Sensors/Examples/TemperatureDryBulb.mo @@ -97,25 +97,26 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Sensors/Examples/TemperatureDryBulb.mos" "Simulate and plot"), Documentation(info=" -

                                      -This example tests the dry bulb temperature sensors. -One sensor is configured to be a steady-state model, -a second sensor is configured to be a dynamic sensor and -the third sensors is a dynamic sensor with heat transfer. -There is also a sensor that measures the temperature difference. -

                                      -", revisions=" -
                                        -
                                      • -June 19, 2015 by Filip Jorissen:
                                        -Extended example with demonstration of thermal losses. -
                                      • -
                                      • -September 10, 2008 by Michael Wetter:
                                        -First implementation. -
                                      • -
                                      -"), +

                                      + This example tests the dry bulb temperature sensors. + One sensor is configured to be a steady-state model, + a second sensor is configured to be a dynamic sensor and + the third sensors is a dynamic sensor with heat transfer. + There is also a sensor that measures the temperature difference. +

                                      + ",revisions=" +
                                        +
                                      • + June 19, 2015 by Filip Jorissen:
                                        + Extended example with demonstration of thermal losses. +
                                      • +
                                      • + September 10, 2008 by Michael Wetter:
                                        + First implementation. +
                                      • +
                                      + "), Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-120,-100},{120, - 100}}))); + 100}})), + __Dymola_LockedEditing="Model from IBPSA"); end TemperatureDryBulb; diff --git a/AixLib/Fluid/Sensors/Examples/TemperatureWetBulb.mo b/AixLib/Fluid/Sensors/Examples/TemperatureWetBulb.mo index 86eff4c943..74ba16e1fe 100644 --- a/AixLib/Fluid/Sensors/Examples/TemperatureWetBulb.mo +++ b/AixLib/Fluid/Sensors/Examples/TemperatureWetBulb.mo @@ -56,22 +56,23 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Sensors/Examples/TemperatureWetBulb.mos" "Simulate and plot"), Documentation(info=" -

                                      -This example tests the wet bulb temperature sensor. -The problem setup is such that the moisture concentration and -the dry bulb temperature are varied simultaneously in such a way -that the wet bulb temperature remains close to a constant value. -

                                      -", revisions=" -
                                        -
                                      • -June 4, 2011 by Michael Wetter:
                                        -Adjusted parameters and simulation stop time since the sensor was changed to a dynamic sensor. -
                                      • -
                                      • -May 6, 2008 by Michael Wetter:
                                        -First implementation. -
                                      • -
                                      -")); +

                                      + This example tests the wet bulb temperature sensor. + The problem setup is such that the moisture concentration and + the dry bulb temperature are varied simultaneously in such a way + that the wet bulb temperature remains close to a constant value. +

                                      + ",revisions=" +
                                        +
                                      • + June 4, 2011 by Michael Wetter:
                                        + Adjusted parameters and simulation stop time since the sensor was changed to a dynamic sensor. +
                                      • +
                                      • + May 6, 2008 by Michael Wetter:
                                        + First implementation. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end TemperatureWetBulb; diff --git a/AixLib/Fluid/Sensors/Examples/TraceSubstances.mo b/AixLib/Fluid/Sensors/Examples/TraceSubstances.mo index d178052a65..764a31299c 100644 --- a/AixLib/Fluid/Sensors/Examples/TraceSubstances.mo +++ b/AixLib/Fluid/Sensors/Examples/TraceSubstances.mo @@ -4,7 +4,7 @@ model TraceSubstances "Test model for the extra property sensor" package Medium = AixLib.Media.Air(extraPropertiesNames={"CO2"}) "Medium model"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal = 15*1.2/3600 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=15*1.2/3600 "Mass flow rate into and out of the volume"; MixingVolumes.MixingVolume vol( @@ -113,56 +113,57 @@ __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Sensors Diagram(coordinateSystem(preserveAspectRatio=false,extent={{-100,-100},{180, 180}})), Documentation(info=" -

                                      -This example tests the sensors that measure trace substances. -A CO2 mass flow rate of 8.18E-8 kg/kg is added to the -volume. The volume also has a fresh air mass flow rate and -an exhaust air mass flow rate. The initial CO2 concentration -of the volume is 0 kg/kg. -Note that the fresh air supply has zero carbon dioxide concentration. -Therefore, if it were outside air, then all concentrations are relative -to the outside air concentration. -

                                      -", +

                                      + This example tests the sensors that measure trace substances. + A CO2 mass flow rate of 8.18E-8 kg/kg is added to the + volume. The volume also has a fresh air mass flow rate and + an exhaust air mass flow rate. The initial CO2 concentration + of the volume is 0 kg/kg. + Note that the fresh air supply has zero carbon dioxide concentration. + Therefore, if it were outside air, then all concentrations are relative + to the outside air concentration. +

                                      + ", revisions=" -
                                        -
                                      • -May 2, 2019, by Jianjun Hu:
                                        -Replaced fluid source. This is for - #1072. -
                                      • -
                                      • -May 22, 2015, by Michael Wetter:
                                        -Updated example to test the correction for -issue 249. -
                                      • -
                                      • -May 8, 2014, by Michael Wetter:
                                        -Added a pressure drop element, as otherwise the initialization problem -is overspecified for incompressible media. -
                                      • -
                                      • -November 27, 2013 by Michael Wetter:
                                        -Changed sink model from a prescribed flow source to a pressure -boundary condition. This is required for the new air model, -which is incompressible. Otherwise, there will be no pressure reference -in the system. -
                                      • -
                                      • -September 10, 2013 by Michael Wetter:
                                        -Changed initialization of volume to fixed initial values to avoid -a translation warning in OpenModelica. -
                                      • -
                                      • -August 30, 2013 by Michael Wetter:
                                        -Renamed example and added an instance of - -AixLib.Fluid.Sensors.TraceSubstancesTwoPort. -
                                      • -
                                      • -September 29, 2009 by Michael Wetter:
                                        -First implementation. -
                                      • -
                                      -")); +
                                        +
                                      • + May 2, 2019, by Jianjun Hu:
                                        + Replaced fluid source. This is for + #1072. +
                                      • +
                                      • + May 22, 2015, by Michael Wetter:
                                        + Updated example to test the correction for + issue 249. +
                                      • +
                                      • + May 8, 2014, by Michael Wetter:
                                        + Added a pressure drop element, as otherwise the initialization problem + is overspecified for incompressible media. +
                                      • +
                                      • + November 27, 2013 by Michael Wetter:
                                        + Changed sink model from a prescribed flow source to a pressure + boundary condition. This is required for the new air model, + which is incompressible. Otherwise, there will be no pressure reference + in the system. +
                                      • +
                                      • + September 10, 2013 by Michael Wetter:
                                        + Changed initialization of volume to fixed initial values to avoid + a translation warning in OpenModelica. +
                                      • +
                                      • + August 30, 2013 by Michael Wetter:
                                        + Renamed example and added an instance of + + AixLib.Fluid.Sensors.TraceSubstancesTwoPort. +
                                      • +
                                      • + September 29, 2009 by Michael Wetter:
                                        + First implementation. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end TraceSubstances; diff --git a/AixLib/Fluid/Sensors/Examples/Velocity.mo b/AixLib/Fluid/Sensors/Examples/Velocity.mo index 4d3944f509..7156188778 100644 --- a/AixLib/Fluid/Sensors/Examples/Velocity.mo +++ b/AixLib/Fluid/Sensors/Examples/Velocity.mo @@ -4,7 +4,7 @@ model Velocity "Test model for the flow velocity sensor" package Medium = AixLib.Media.Air "Medium model"; - parameter Modelica.SIunits.Area A = 0.1*0.1/4*Modelica.Constants.pi + parameter Modelica.Units.SI.Area A=0.1*0.1/4*Modelica.Constants.pi "Cross sectional area of flow channel"; AixLib.Fluid.Sources.Boundary_pT sin( @@ -54,22 +54,23 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Sensors/Examples/Velocity.mos" "Simulate and plot"), Documentation(info=" -

                                      -This example tests the flow velocity sensor. -One sensor is configured to be steady-state, and the other is -configured to be dynamic. -Note that steady-state sensors can lead to numerical problems -if used incorrectly. -See - -AixLib.Fluid.Sensors.UsersGuide for an explanation. -

                                      -", revisions=" -
                                        -
                                      • -May 20, 2016 by Marcus Fuchs:
                                        -First implementation. -
                                      • -
                                      -")); +

                                      + This example tests the flow velocity sensor. + One sensor is configured to be steady-state, and the other is + configured to be dynamic. + Note that steady-state sensors can lead to numerical problems + if used incorrectly. + See + + AixLib.Fluid.Sensors.UsersGuide for an explanation. +

                                      + ",revisions=" +
                                        +
                                      • + May 20, 2016 by Marcus Fuchs:
                                        + First implementation. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end Velocity; diff --git a/AixLib/Fluid/Sensors/Examples/VolumeFlowRate.mo b/AixLib/Fluid/Sensors/Examples/VolumeFlowRate.mo index 80bece7dec..04b2b44662 100644 --- a/AixLib/Fluid/Sensors/Examples/VolumeFlowRate.mo +++ b/AixLib/Fluid/Sensors/Examples/VolumeFlowRate.mo @@ -52,22 +52,23 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Sensors/Examples/VolumeFlowRate.mos" "Simulate and plot"), Documentation(info=" -

                                      -This example tests the volume flow rate sensor. -One sensor is configured to be steady-state, and the other is -configured to be dynamic. -Note that steady-state sensors can lead to numerical problems -if used incorrectly. -See - -AixLib.Fluid.Sensors.UsersGuide for an explanation. -

                                      -", revisions=" -
                                        -
                                      • -August 31, 2013 by Michael Wetter:
                                        -First implementation. -
                                      • -
                                      -")); +

                                      + This example tests the volume flow rate sensor. + One sensor is configured to be steady-state, and the other is + configured to be dynamic. + Note that steady-state sensors can lead to numerical problems + if used incorrectly. + See + + AixLib.Fluid.Sensors.UsersGuide for an explanation. +

                                      + ",revisions=" +
                                        +
                                      • + August 31, 2013 by Michael Wetter:
                                        + First implementation. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end VolumeFlowRate; diff --git a/AixLib/Fluid/Sensors/Examples/package.mo b/AixLib/Fluid/Sensors/Examples/package.mo index 4b38cfea1b..2446ec0adc 100644 --- a/AixLib/Fluid/Sensors/Examples/package.mo +++ b/AixLib/Fluid/Sensors/Examples/package.mo @@ -1,6 +1,7 @@ within AixLib.Fluid.Sensors; package Examples "Collection of models that illustrate model use and test models" extends Modelica.Icons.ExamplesPackage; + annotation (preferredView="info", Documentation(info="

                                      This package contains examples for the use of models that can be found in diff --git a/AixLib/Fluid/Sensors/LatentEnthalpyFlowRate.mo b/AixLib/Fluid/Sensors/LatentEnthalpyFlowRate.mo index 628ec12360..28b818380a 100644 --- a/AixLib/Fluid/Sensors/LatentEnthalpyFlowRate.mo +++ b/AixLib/Fluid/Sensors/LatentEnthalpyFlowRate.mo @@ -6,24 +6,25 @@ model LatentEnthalpyFlowRate Modelica.Media.Interfaces.PartialCondensingGases, tau=0); extends AixLib.Fluid.BaseClasses.IndexMassFraction(final substanceName="water"); - extends Modelica.Icons.RotationalSensor; + extends Modelica.Icons.RoundSensor; Modelica.Blocks.Interfaces.RealOutput H_flow(final unit="W") "Latent enthalpy flow rate, positive if from port_a to port_b" annotation (Placement(transformation( origin={0,110}, extent={{-10,-10},{10,10}}, rotation=90))); - parameter Modelica.SIunits.SpecificEnthalpy h_out_start= - Medium.specificEnthalpy_pTX( - p=Medium.p_default, T=Medium.T_default, X=Medium.X_default) - -Medium.enthalpyOfNonCondensingGas(T=Medium.T_default) + parameter Modelica.Units.SI.SpecificEnthalpy h_out_start= + Medium.specificEnthalpy_pTX( + p=Medium.p_default, + T=Medium.T_default, + X=Medium.X_default) - Medium.enthalpyOfNonCondensingGas(T=Medium.T_default) "Initial or guess value of measured specific latent enthalpy" annotation (Dialog(group="Initialization")); protected - Modelica.SIunits.SpecificEnthalpy hMed_out(start=h_out_start) + Modelica.Units.SI.SpecificEnthalpy hMed_out(start=h_out_start) "Medium latent enthalpy to which the sensor is exposed"; - Modelica.SIunits.SpecificEnthalpy h_out(start=h_out_start) + Modelica.Units.SI.SpecificEnthalpy h_out(start=h_out_start) "Medium latent enthalpy that is used to compute the enthalpy flow rate"; Medium.MassFraction XiActual[Medium.nXi] @@ -77,7 +78,7 @@ annotation (defaultComponentName="senLatEnt", Line(points={{0,100},{0,70}}, color={0,0,127}), Text( extent={{180,151},{20,99}}, - lineColor={0,0,0}, + textColor={0,0,0}, textString="HL_flow"), Ellipse( extent={{-70,70},{70,-70}}, @@ -102,115 +103,116 @@ annotation (defaultComponentName="senLatEnt", Line(points={{37.6,13.7},{65.8,23.9}}), Text( extent={{-20,120},{-140,70}}, - lineColor={0,0,0}, - textString=DynamicSelect("", String(H_flow, leftjustified=false, significantDigits=3)))}), + textColor={0,0,0}, + textString=DynamicSelect("", String(H_flow, leftJustified=false, significantDigits=3)))}), Documentation(info=" -

                                      -This model outputs the latent enthalphy flow rate of the medium in the flow -between its fluid ports. In particular, if the total enthalpy flow rate is -

                                      -

                                      - Ḣtot = Ḣsen + Ḣlat, -

                                      -

                                      -where -sen = ṁ (1-Xw) cp,air, -then this sensor outputs Ḣ = Ḣlat. -

                                      -

                                      -If the parameter tau is non-zero, then the measured -specific latent enthalpy hout that is used to -compute the latent enthalpy flow rate -lat = ṁ hout -is computed using a first order differential equation. -See -AixLib.Fluid.Sensors.UsersGuide for an explanation. -

                                      -

                                      -For a sensor that measures -tot, use - -AixLib.Fluid.Sensors.EnthalpyFlowRate.
                                      -For a sensor that measures -sen, use - -AixLib.Fluid.Sensors.SensibleEnthalpyFlowRate. -

                                      -

                                      -The sensor is ideal, i.e., it does not influence the fluid. -The sensor can only be used with medium models that implement the function -enthalpyOfNonCondensingGas(T). -

                                      -", +

                                      + This model outputs the latent enthalphy flow rate of the medium in the flow + between its fluid ports. In particular, if the total enthalpy flow rate is +

                                      +

                                      + Ḣtot = Ḣsen + Ḣlat, +

                                      +

                                      + where + sen = ṁ (1-Xw) cp,air, + then this sensor outputs Ḣ = Ḣlat. +

                                      +

                                      + If the parameter tau is non-zero, then the measured + specific latent enthalpy hout that is used to + compute the latent enthalpy flow rate + lat = ṁ hout + is computed using a first order differential equation. + See + AixLib.Fluid.Sensors.UsersGuide for an explanation. +

                                      +

                                      + For a sensor that measures + tot, use + + AixLib.Fluid.Sensors.EnthalpyFlowRate.
                                      + For a sensor that measures + sen, use + + AixLib.Fluid.Sensors.SensibleEnthalpyFlowRate. +

                                      +

                                      + The sensor is ideal, i.e., it does not influence the fluid. + The sensor can only be used with medium models that implement the function + enthalpyOfNonCondensingGas(T). +

                                      + ", revisions=" -
                                        -
                                      • -October 19, 2020, by Antoine Gautier:
                                        -Changed default value for tau from 1 to 0.
                                        -This is for -#1406. -
                                      • -
                                      • -February 25, 2020, by Michael Wetter:
                                        -Changed icon to display its operating state.
                                        -This is for -#1294. -
                                      • -
                                      • -January 18, 2016 by Filip Jorissen:
                                        -Using parameter tauInv -since this now exists in -AixLib.Fluid.Sensors.BaseClasses.PartialDynamicFlowSensor. -This is for -#372. -
                                      • -
                                      • -September 10, 2013, by Michael Wetter:
                                        -Changed medium declaration in the extends statement -to replaceable to avoid a translation error in -OpenModelica. -
                                      • -
                                      • -August 31, 2013, by Michael Wetter:
                                        -Removed default value tau=0 as the base class -already sets tau=1. -This change was made so that all sensors use the same default value. -
                                      • -
                                      • -December 18, 2012, by Michael Wetter:
                                        -Moved computation of i_w to new base class - -AixLib.Fluid.BaseClasses.IndexWater. -The value of this parameter is now assigned dynamically and does not require to be specified -by the user. -
                                      • -
                                      • -November 3, 2011, by Michael Wetter:
                                        -Moved der(h_out) := 0; from the initial algorithm section to -the initial equation section -as this assignment does not conform to the Modelica specification. -
                                      • -
                                      • -August 10, 2011 by Michael Wetter:
                                        -Added parameter i_w and an assert statement to -make sure it is set correctly. Without this change, Dymola -cannot differentiate the model when reducing the index of the DAE. -
                                      • -
                                      • -June 3, 2011 by Michael Wetter:
                                        -Revised implementation to add dynamics in such a way that -the time constant increases as the mass flow rate tends to zero. -This can improve the numerics. -
                                      • -
                                      • -February 22, by Michael Wetter:
                                        -Improved code that searches for index of 'water' in medium model. -
                                      • -
                                      • -September 9, 2009 by Michael Wetter:
                                        -First implementation. -Implementation is based on enthalpy sensor of Modelica.Fluid. -
                                      • -
                                      -")); +
                                        +
                                      • + October 19, 2020, by Antoine Gautier:
                                        + Changed default value for tau from 1 to 0.
                                        + This is for + #1406. +
                                      • +
                                      • + February 25, 2020, by Michael Wetter:
                                        + Changed icon to display its operating state.
                                        + This is for + #1294. +
                                      • +
                                      • + January 18, 2016 by Filip Jorissen:
                                        + Using parameter tauInv + since this now exists in + AixLib.Fluid.Sensors.BaseClasses.PartialDynamicFlowSensor. + This is for + #372. +
                                      • +
                                      • + September 10, 2013, by Michael Wetter:
                                        + Changed medium declaration in the extends statement + to replaceable to avoid a translation error in + OpenModelica. +
                                      • +
                                      • + August 31, 2013, by Michael Wetter:
                                        + Removed default value tau=0 as the base class + already sets tau=1. + This change was made so that all sensors use the same default value. +
                                      • +
                                      • + December 18, 2012, by Michael Wetter:
                                        + Moved computation of i_w to new base class + + AixLib.Fluid.BaseClasses.IndexWater. + The value of this parameter is now assigned dynamically and does not require to be specified + by the user. +
                                      • +
                                      • + November 3, 2011, by Michael Wetter:
                                        + Moved der(h_out) := 0; from the initial algorithm section to + the initial equation section + as this assignment does not conform to the Modelica specification. +
                                      • +
                                      • + August 10, 2011 by Michael Wetter:
                                        + Added parameter i_w and an assert statement to + make sure it is set correctly. Without this change, Dymola + cannot differentiate the model when reducing the index of the DAE. +
                                      • +
                                      • + June 3, 2011 by Michael Wetter:
                                        + Revised implementation to add dynamics in such a way that + the time constant increases as the mass flow rate tends to zero. + This can improve the numerics. +
                                      • +
                                      • + February 22, by Michael Wetter:
                                        + Improved code that searches for index of 'water' in medium model. +
                                      • +
                                      • + September 9, 2009 by Michael Wetter:
                                        + First implementation. + Implementation is based on enthalpy sensor of Modelica.Fluid. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end LatentEnthalpyFlowRate; diff --git a/AixLib/Fluid/Sensors/MassFlowRate.mo b/AixLib/Fluid/Sensors/MassFlowRate.mo index 2b27a44328..8b98b24a35 100644 --- a/AixLib/Fluid/Sensors/MassFlowRate.mo +++ b/AixLib/Fluid/Sensors/MassFlowRate.mo @@ -3,7 +3,7 @@ model MassFlowRate "Ideal sensor for mass flow rate" extends AixLib.Fluid.Sensors.BaseClasses.PartialFlowSensor( final m_flow_nominal = 0, final m_flow_small = 0); -extends Modelica.Icons.RotationalSensor; +extends Modelica.Icons.RoundSensor; Modelica.Blocks.Interfaces.RealOutput m_flow(quantity="MassFlowRate", final unit="kg/s") "Mass flow rate from port_a to port_b" annotation (Placement( @@ -21,39 +21,40 @@ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}) Line(points={{70,0},{100,0}}, color={0,128,255}), Text( extent={{162,120},{2,90}}, - lineColor={0,0,0}, + textColor={0,0,0}, textString="m_flow"), Line(points={{0,100},{0,70}}, color={0,0,127}), Line(points={{-100,0},{-70,0}}, color={0,128,255}), Text( extent={{-20,116},{-140,66}}, - lineColor={0,0,0}, - textString=DynamicSelect("", String(m_flow, leftjustified=false, significantDigits=3)))}), + textColor={0,0,0}, + textString=DynamicSelect("", String(m_flow, leftJustified=false, significantDigits=3)))}), Documentation(info=" -

                                      -This model outputs the mass flow rate flowing from -port_a to port_b. -The sensor is ideal, i.e., it does not influence the fluid. -

                                      -", revisions=" -
                                        -
                                      • -February 25, 2020, by Michael Wetter:
                                        -Changed icon to display its operating state.
                                        -This is for -#1294. -
                                      • -
                                      • -February 21, 2020, by Michael Wetter:
                                        -Changed icon to display its operating state.
                                        -This is for -#1294. -
                                      • -
                                      • -September 29, 2009, by Michael Wetter:
                                        -First implementation. -Implementation is based on Modelica.Fluid. -
                                      • -
                                      -")); +

                                      + This model outputs the mass flow rate flowing from + port_a to port_b. + The sensor is ideal, i.e., it does not influence the fluid. +

                                      + ",revisions=" +
                                        +
                                      • + February 25, 2020, by Michael Wetter:
                                        + Changed icon to display its operating state.
                                        + This is for + #1294. +
                                      • +
                                      • + February 21, 2020, by Michael Wetter:
                                        + Changed icon to display its operating state.
                                        + This is for + #1294. +
                                      • +
                                      • + September 29, 2009, by Michael Wetter:
                                        + First implementation. + Implementation is based on Modelica.Fluid. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end MassFlowRate; diff --git a/AixLib/Fluid/Sensors/MassFraction.mo b/AixLib/Fluid/Sensors/MassFraction.mo index b91f8fb22d..9f15b87ebe 100644 --- a/AixLib/Fluid/Sensors/MassFraction.mo +++ b/AixLib/Fluid/Sensors/MassFraction.mo @@ -4,7 +4,7 @@ model MassFraction "Ideal one port mass fraction sensor" redeclare replaceable package Medium = Modelica.Media.Interfaces.PartialCondensingGases); extends AixLib.Fluid.BaseClasses.IndexMassFraction(substanceName = "water"); - extends Modelica.Icons.RotationalSensor; + extends Modelica.Icons.RoundSensor; Modelica.Blocks.Interfaces.RealOutput X(min=-1e-3, max=1.001, @@ -25,78 +25,79 @@ annotation (defaultComponentName="senMasFra", Text( extent={{-150,80},{150,120}}, textString="%name", - lineColor={0,0,255}), + textColor={0,0,255}), Text( extent={{160,-30},{60,-60}}, - lineColor={0,0,0}, + textColor={0,0,0}, textString="X"), Line(points={{70,0},{100,0}}, color={0,0,127}), Text( extent={{180,90},{60,40}}, - lineColor={0,0,0}, - textString=DynamicSelect("", String(X, leftjustified=false, significantDigits=3)))}), + textColor={0,0,0}, + textString=DynamicSelect("", String(X, leftJustified=false, significantDigits=3)))}), Documentation(info=" -

                                      -This model outputs the mass fraction of the fluid connected to its port. -The sensor is ideal, i.e., it does not influence the fluid. -

                                      -

                                      -To measure mass fraction in a duct or pipe, use -AixLib.Fluid.Sensors.MassFractionTwoPort -rather than this sensor. -Read the - -AixLib.Fluid.Sensors.UsersGuide -prior to using this model to see about potential numerical problems if this sensor is used incorrectly -in a system model. -

                                      -", revisions=" -
                                        -
                                      • -September 21, 2020, by Michael Wetter:
                                        -Introduced parameter warnAboutOnePortConnection and updated documentation.
                                        -This is for -#1399. -
                                      • -
                                      • -February 25, 2020, by Michael Wetter:
                                        -Changed icon to display its operating state.
                                        -This is for -#1294. -
                                      • -
                                      • -January 26, 2016, by Michael Wetter:
                                        -Corrected wrong assignment -XiVec[Medium.nXi](quantity=Medium.extraPropertiesNames) -to -XiVec[Medium.nXi](quantity=Medium.substanceNames[1:Medium.nXi]).
                                        -Changed unit of output signal from 1 to kg/kg -to indicate that it is a mass fraction, and declared the assignment final. -
                                      • -
                                      • -September 10, 2013, by Michael Wetter:
                                        -Changed min and max values for -output signals to allow for numerical approximation error -without violating these bounds.
                                        -Changed medium declaration in the extends statement -to replaceable to avoid a translation error in -OpenModelica. -
                                      • -
                                      • -August 31, 2013, by Michael Wetter:
                                        -Revised model to use base class - -AixLib.Fluid.BaseClasses.IndexMassFraction. -
                                      • -
                                      • -February 22, by Michael Wetter:
                                        -Improved the code that searches for the index of the substance in the medium model. -
                                      • -
                                      • -April 7, 2009 by Michael Wetter:
                                        -First implementation. -Implementation is based on enthalpy sensor of Modelica.Fluid. -
                                      • -
                                      -")); +

                                      + This model outputs the mass fraction of the fluid connected to its port. + The sensor is ideal, i.e., it does not influence the fluid. +

                                      +

                                      + To measure mass fraction in a duct or pipe, use + AixLib.Fluid.Sensors.MassFractionTwoPort + rather than this sensor. + Read the + + AixLib.Fluid.Sensors.UsersGuide + prior to using this model to see about potential numerical problems if this sensor is used incorrectly + in a system model. +

                                      + ",revisions=" +
                                        +
                                      • + September 21, 2020, by Michael Wetter:
                                        + Introduced parameter warnAboutOnePortConnection and updated documentation.
                                        + This is for + #1399. +
                                      • +
                                      • + February 25, 2020, by Michael Wetter:
                                        + Changed icon to display its operating state.
                                        + This is for + #1294. +
                                      • +
                                      • + January 26, 2016, by Michael Wetter:
                                        + Corrected wrong assignment + XiVec[Medium.nXi](quantity=Medium.extraPropertiesNames) + to + XiVec[Medium.nXi](quantity=Medium.substanceNames[1:Medium.nXi]).
                                        + Changed unit of output signal from 1 to kg/kg + to indicate that it is a mass fraction, and declared the assignment final. +
                                      • +
                                      • + September 10, 2013, by Michael Wetter:
                                        + Changed min and max values for + output signals to allow for numerical approximation error + without violating these bounds.
                                        + Changed medium declaration in the extends statement + to replaceable to avoid a translation error in + OpenModelica. +
                                      • +
                                      • + August 31, 2013, by Michael Wetter:
                                        + Revised model to use base class + + AixLib.Fluid.BaseClasses.IndexMassFraction. +
                                      • +
                                      • + February 22, by Michael Wetter:
                                        + Improved the code that searches for the index of the substance in the medium model. +
                                      • +
                                      • + April 7, 2009 by Michael Wetter:
                                        + First implementation. + Implementation is based on enthalpy sensor of Modelica.Fluid. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end MassFraction; diff --git a/AixLib/Fluid/Sensors/MassFractionTwoPort.mo b/AixLib/Fluid/Sensors/MassFractionTwoPort.mo index e06ee6b00a..6fb9da10ca 100644 --- a/AixLib/Fluid/Sensors/MassFractionTwoPort.mo +++ b/AixLib/Fluid/Sensors/MassFractionTwoPort.mo @@ -4,7 +4,7 @@ model MassFractionTwoPort "Ideal two port mass fraction sensor" redeclare replaceable package Medium = Modelica.Media.Interfaces.PartialCondensingGases); extends AixLib.Fluid.BaseClasses.IndexMassFraction(substanceName = "water"); - extends Modelica.Icons.RotationalSensor; + extends Modelica.Icons.RoundSensor; parameter Medium.MassFraction X_start=Medium.X_default[i_x] "Initial or guess value of output (= state)" @@ -58,86 +58,87 @@ annotation (defaultComponentName="senMasFra", grid={1,1}), graphics={ Text( extent={{94,122},{0,92}}, - lineColor={0,0,0}, + textColor={0,0,0}, textString="X"), Line(points={{0,100},{0,70}}, color={0,0,127}), Line(points={{-100,0},{-70,0}}, color={0,128,255}), Line(points={{70,0},{100,0}}, color={0,128,255}), Text( extent={{-20,120},{-140,70}}, - lineColor={0,0,0}, - textString=DynamicSelect("", String(X, leftjustified=false, significantDigits=3)))}), + textColor={0,0,0}, + textString=DynamicSelect("", String(X, leftJustified=false, significantDigits=3)))}), Documentation(info=" -

                                      -This model outputs the mass fraction of the passing fluid. -The sensor is ideal, i.e. it does not influence the fluid. -If the parameter tau is non-zero, then its output -is computed using a first order differential equation. -Setting tau=0 is not recommend. See - -AixLib.Fluid.Sensors.UsersGuide for an explanation. -

                                      -", +

                                      + This model outputs the mass fraction of the passing fluid. + The sensor is ideal, i.e. it does not influence the fluid. + If the parameter tau is non-zero, then its output + is computed using a first order differential equation. + Setting tau=0 is not recommend. See + + AixLib.Fluid.Sensors.UsersGuide for an explanation. +

                                      + ", revisions=" -
                                        -
                                      • -February 25, 2020, by Michael Wetter:
                                        -Changed icon to display its operating state.
                                        -This is for -#1294. -
                                      • -
                                      • -January 26, 2016, by Michael Wetter:
                                        -Corrected wrong assignment -XiVec[Medium.nXi](quantity=Medium.extraPropertiesNames) -to -XiVec[Medium.nXi](quantity=Medium.substanceNames[1:Medium.nXi]).
                                        -Changed unit of output signal from 1 to kg/kg -to indicate that it is a mass fraction, and declared the assignment final. -
                                      • -
                                      • -January 18, 2016 by Filip Jorissen:
                                        -Using parameter tauInv -since this now exists in -AixLib.Fluid.Sensors.BaseClasses.PartialDynamicFlowSensor. -This is for -#372. -
                                      • -
                                      • -September 10, 2013, by Michael Wetter:
                                        -Changed min and max values for -output signals to allow for numerical approximation error -without violating these bounds.
                                        -Changed medium declaration in the extends statement -to replaceable to avoid a translation error in -OpenModelica. -
                                      • -
                                      • -August 31, 2013, by Michael Wetter:
                                        -Revised model to use base class - -AixLib.Fluid.BaseClasses.IndexMassFraction. -
                                      • -
                                      • -November 3, 2011, by Michael Wetter:
                                        -Moved der(X) := 0; from the initial algorithm section to -the initial equation section -as this assignment does not conform to the Modelica specification. -
                                      • -
                                      • -June 3, 2011 by Michael Wetter:
                                        -Revised implementation to add dynamics in such a way that -the time constant increases as the mass flow rate tends to zero. -This significantly improves the numerics. -
                                      • -
                                      • -February 22, by Michael Wetter:
                                        -Improved code that searches for index of the substance name in the medium model. -
                                      • -
                                      • -Feb. 8, 2011 by Michael Wetter:
                                        -First implementation. -
                                      • -
                                      -")); +
                                        +
                                      • + February 25, 2020, by Michael Wetter:
                                        + Changed icon to display its operating state.
                                        + This is for + #1294. +
                                      • +
                                      • + January 26, 2016, by Michael Wetter:
                                        + Corrected wrong assignment + XiVec[Medium.nXi](quantity=Medium.extraPropertiesNames) + to + XiVec[Medium.nXi](quantity=Medium.substanceNames[1:Medium.nXi]).
                                        + Changed unit of output signal from 1 to kg/kg + to indicate that it is a mass fraction, and declared the assignment final. +
                                      • +
                                      • + January 18, 2016 by Filip Jorissen:
                                        + Using parameter tauInv + since this now exists in + AixLib.Fluid.Sensors.BaseClasses.PartialDynamicFlowSensor. + This is for + #372. +
                                      • +
                                      • + September 10, 2013, by Michael Wetter:
                                        + Changed min and max values for + output signals to allow for numerical approximation error + without violating these bounds.
                                        + Changed medium declaration in the extends statement + to replaceable to avoid a translation error in + OpenModelica. +
                                      • +
                                      • + August 31, 2013, by Michael Wetter:
                                        + Revised model to use base class + + AixLib.Fluid.BaseClasses.IndexMassFraction. +
                                      • +
                                      • + November 3, 2011, by Michael Wetter:
                                        + Moved der(X) := 0; from the initial algorithm section to + the initial equation section + as this assignment does not conform to the Modelica specification. +
                                      • +
                                      • + June 3, 2011 by Michael Wetter:
                                        + Revised implementation to add dynamics in such a way that + the time constant increases as the mass flow rate tends to zero. + This significantly improves the numerics. +
                                      • +
                                      • + February 22, by Michael Wetter:
                                        + Improved code that searches for index of the substance name in the medium model. +
                                      • +
                                      • + Feb. 8, 2011 by Michael Wetter:
                                        + First implementation. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end MassFractionTwoPort; diff --git a/AixLib/Fluid/Sensors/ModularSensors.mo b/AixLib/Fluid/Sensors/ModularSensors.mo index e9d138850d..ef56feef67 100644 --- a/AixLib/Fluid/Sensors/ModularSensors.mo +++ b/AixLib/Fluid/Sensors/ModularSensors.mo @@ -5,35 +5,32 @@ model ModularSensors // Definition of parameters // - parameter Modelica.SIunits.Time tau = 1 - "Time constant at nominal flow rate" - annotation(Dialog(tab="Sensors",group="General")); + parameter Modelica.Units.SI.Time tau=1 "Time constant at nominal flow rate" + annotation (Dialog(tab="Sensors", group="General")); parameter Boolean transferHeat=false "if true, temperature T converges towards TAmb when no flow" annotation(Dialog(tab="Sensors",group="Temperature sensor")); - parameter Modelica.SIunits.Temperature TAmb=Medium.T_default + parameter Modelica.Units.SI.Temperature TAmb=Medium.T_default "Fixed ambient temperature for heat transfer" - annotation(Dialog(tab="Sensors",group="Temperature sensor")); - parameter Modelica.SIunits.Time tauHeaTra=1200 + annotation (Dialog(tab="Sensors", group="Temperature sensor")); + parameter Modelica.Units.SI.Time tauHeaTra=1200 "Time constant for heat transfer, default 20 minutes" - annotation(Dialog(tab="Sensors",group="Temperature sensor")); + annotation (Dialog(tab="Sensors", group="Temperature sensor")); parameter Modelica.Blocks.Types.Init initType= Modelica.Blocks.Types.Init.InitialState "Type of initialization (InitialState and InitialOutput are identical)" annotation(Dialog(tab="Sensors",group="Initialisation")); - parameter Modelica.SIunits.Temperature T_start= - Medium.T_default + parameter Modelica.Units.SI.Temperature T_start=Medium.T_default "Initial or guess value of output (= state)" - annotation(Dialog(tab="Sensors",group="Initialisation")); - parameter Modelica.SIunits.SpecificEnthalpy h_out_start= - Medium.specificEnthalpy_pTX( - p=Medium.p_default, - T=Medium.T_default, - X=Medium.X_default) - "Initial or guess value of output (= state)" - annotation(Dialog(tab="Sensors",group="Initialisation")); + annotation (Dialog(tab="Sensors", group="Initialisation")); + parameter Modelica.Units.SI.SpecificEnthalpy h_out_start= + Medium.specificEnthalpy_pTX( + p=Medium.p_default, + T=Medium.T_default, + X=Medium.X_default) "Initial or guess value of output (= state)" + annotation (Dialog(tab="Sensors", group="Initialisation")); // Extensions // @@ -44,16 +41,17 @@ model ModularSensors Medium.SaturationProperties satPro[nPorts] "Saturation states for each fluid port"; - Modelica.SIunits.SpecificEnthalpy bubEnt[nPorts] + Modelica.Units.SI.SpecificEnthalpy bubEnt[nPorts] "Bubble enthalpies for each fluid port"; - Modelica.SIunits.SpecificEnthalpy dewEnt[nPorts] + Modelica.Units.SI.SpecificEnthalpy dewEnt[nPorts] "Dew enthalpies for each fluid port"; Real pTriCri[nPorts] "Trigger to check if medium exceeds critical pressure"; // Definition of models // - AixLib.Fluid.Sensors.MassFlowRate senMasFlo[nPorts](redeclare each final package Medium = + AixLib.Fluid.Sensors.MassFlowRate senMasFlo[nPorts](redeclare each final + package Medium = Medium) "Mass flow sensors" annotation (Placement(transformation(extent={{-70,10},{-50,-10}}))); AixLib.Fluid.Sensors.Pressure senPre[nPorts](redeclare each final package Medium = diff --git a/AixLib/Fluid/Sensors/PPM.mo b/AixLib/Fluid/Sensors/PPM.mo index b4a17d632c..9046bc4d0b 100644 --- a/AixLib/Fluid/Sensors/PPM.mo +++ b/AixLib/Fluid/Sensors/PPM.mo @@ -6,12 +6,11 @@ model PPM each final unit="1", each min=0, each max=1))); - extends Modelica.Icons.RotationalSensor; + extends Modelica.Icons.RoundSensor; parameter String substanceName = "CO2" "Name of trace substance"; - parameter Modelica.SIunits.MolarMass MM= - Modelica.Media.IdealGases.Common.SingleGasesData.CO2.MM + parameter Modelica.Units.SI.MolarMass MM=Modelica.Media.IdealGases.Common.SingleGasesData.CO2.MM "Molar mass of the trace substance"; Modelica.Blocks.Interfaces.RealOutput ppm(min=0) @@ -26,8 +25,8 @@ protected then 1 else 0 for i in 1:Medium.nC} "Vector with zero everywhere except where species is"; - final parameter Modelica.SIunits.MolarMass MMBul=Medium.molarMass( - Medium.setState_phX( + final parameter Modelica.Units.SI.MolarMass MMBul=Medium.molarMass( + Medium.setState_phX( p=Medium.p_default, h=Medium.h_default, X=Medium.X_default)) "Molar mass of bulk medium"; @@ -60,69 +59,70 @@ annotation (defaultComponentName="senPPM", Text( extent={{-150,80},{150,120}}, textString="%name", - lineColor={0,0,255}), + textColor={0,0,255}), Text( extent={{160,-30},{60,-60}}, - lineColor={0,0,0}, + textColor={0,0,0}, textString="ppm"), Line(points={{70,0},{100,0}}, color={0,0,127}), Text( extent={{180,90},{60,40}}, - lineColor={0,0,0}, - textString=DynamicSelect("", String(ppm, leftjustified=false, significantDigits=3)))}), + textColor={0,0,0}, + textString=DynamicSelect("", String(ppm, leftJustified=false, significantDigits=3)))}), Documentation(info=" -

                                      -This model outputs the trace substance concentration in ppm contained in the fluid connected to its port. -The sensor is ideal, i.e., it does not influence the fluid. -

                                      -

                                      -The parameter MM is the molar mass of the trace substance. -For a list of molar masses, see - -Modelica.Media.IdealGases.Common.SingleGasesData -and - -Modelica.Media.IdealGases.Common.FluidData. -

                                      -

                                      -To measure PPM in a duct or pipe, use -AixLib.Fluid.Sensors.PPMTwoPort -rather than this sensor. -Read the - -AixLib.Fluid.Sensors.UsersGuide -prior to using this model to see about potential numerical problems if this sensor is used incorrectly -in a system model. -

                                      -

                                      Assumptions

                                      -

                                      -This sensor assumes that the concentration C of the medium -is in mass fraction. Otherwise, the conversion to ppm will be -wrong. -

                                      -", revisions=" -
                                        -
                                      • -September 21, 2020, by Michael Wetter:
                                        -Introduced parameter warnAboutOnePortConnection and updated documentation.
                                        -This is for -#1399. -
                                      • -
                                      • -February 25, 2020, by Michael Wetter:
                                        -Changed icon to display its operating state.
                                        -This is for -#1294. -
                                      • -
                                      • -December 16, 2015, by Michael Wetter:
                                        -Revised implementation, corrected error in the molar fraction which -used the inverse ratio. -
                                      • -
                                      • -December 2, 2015, by Filip Jorissen:
                                        -First implementation. -
                                      • -
                                      -")); +

                                      + This model outputs the trace substance concentration in ppm contained in the fluid connected to its port. + The sensor is ideal, i.e., it does not influence the fluid. +

                                      +

                                      + The parameter MM is the molar mass of the trace substance. + For a list of molar masses, see + + Modelica.Media.IdealGases.Common.SingleGasesData + and + + Modelica.Media.IdealGases.Common.FluidData. +

                                      +

                                      + To measure PPM in a duct or pipe, use + AixLib.Fluid.Sensors.PPMTwoPort + rather than this sensor. + Read the + + AixLib.Fluid.Sensors.UsersGuide + prior to using this model to see about potential numerical problems if this sensor is used incorrectly + in a system model. +

                                      +

                                      Assumptions

                                      +

                                      + This sensor assumes that the concentration C of the medium + is in mass fraction. Otherwise, the conversion to ppm will be + wrong. +

                                      + ",revisions=" +
                                        +
                                      • + September 21, 2020, by Michael Wetter:
                                        + Introduced parameter warnAboutOnePortConnection and updated documentation.
                                        + This is for + #1399. +
                                      • +
                                      • + February 25, 2020, by Michael Wetter:
                                        + Changed icon to display its operating state.
                                        + This is for + #1294. +
                                      • +
                                      • + December 16, 2015, by Michael Wetter:
                                        + Revised implementation, corrected error in the molar fraction which + used the inverse ratio. +
                                      • +
                                      • + December 2, 2015, by Filip Jorissen:
                                        + First implementation. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end PPM; diff --git a/AixLib/Fluid/Sensors/PPMTwoPort.mo b/AixLib/Fluid/Sensors/PPMTwoPort.mo index 5da6a29248..cb8e1de21e 100644 --- a/AixLib/Fluid/Sensors/PPMTwoPort.mo +++ b/AixLib/Fluid/Sensors/PPMTwoPort.mo @@ -10,14 +10,13 @@ model PPMTwoPort each final unit="1", each min=0, each max=1))); - extends Modelica.Icons.RotationalSensor; + extends Modelica.Icons.RoundSensor; parameter String substanceName = "CO2" "Name of trace substance"; parameter Real C_start(min=0) = 0 "Initial or guess value of output (= state)" annotation (Dialog(group="Initialization")); - parameter Modelica.SIunits.MolarMass MM= - Modelica.Media.IdealGases.Common.SingleGasesData.CO2.MM + parameter Modelica.Units.SI.MolarMass MM=Modelica.Media.IdealGases.Common.SingleGasesData.CO2.MM "Molar mass of the trace substance"; Modelica.Blocks.Interfaces.RealOutput ppm(min=0) "Trace substance in port medium in ppm" @@ -35,8 +34,8 @@ protected then 1 else 0 for i in 1:Medium.nC} "Vector with zero everywhere except where species is"; - final parameter Modelica.SIunits.MolarMass MMBul=Medium.molarMass( - Medium.setState_phX( + final parameter Modelica.Units.SI.MolarMass MMBul=Medium.molarMass( + Medium.setState_phX( p=Medium.p_default, h=Medium.h_default, X=Medium.X_default)) "Molar mass of bulk medium"; @@ -91,40 +90,41 @@ annotation (defaultComponentName="senPPM", graphics={ Text( extent={{82,122},{0,92}}, - lineColor={0,0,0}, + textColor={0,0,0}, textString="ppm"), Line(points={{0,100},{0,70}}, color={0,0,127}), Line(points={{-100,0},{-70,0}}, color={0,128,255}), Line(points={{70,0},{100,0}}, color={0,128,255}), Text( extent={{-20,120},{-140,70}}, - lineColor={0,0,0}, - textString=DynamicSelect("", String(ppm, leftjustified=false, significantDigits=3)))}), + textColor={0,0,0}, + textString=DynamicSelect("", String(ppm, leftJustified=false, significantDigits=3)))}), Documentation(info=" -

                                      -This model outputs the trace substance of the passing fluid -in parts per million. -The sensor is ideal, i.e., it does not influence the fluid. -If the parameter tau is non-zero, then its output -is computed using a first order differential equation. -Setting tau=0 is not recommend. See - -AixLib.Fluid.Sensors.UsersGuide for an explanation. -

                                      -", revisions=" -
                                        -
                                      • -February 25, 2020, by Michael Wetter:
                                        -Changed icon to display its operating state.
                                        -This is for -#1294. -
                                      • -
                                      • -January 12, 2016, by Filip Jorissen:
                                        -First implementation. -See issue -#372 -
                                      • -
                                      -")); +

                                      + This model outputs the trace substance of the passing fluid + in parts per million. + The sensor is ideal, i.e., it does not influence the fluid. + If the parameter tau is non-zero, then its output + is computed using a first order differential equation. + Setting tau=0 is not recommend. See + + AixLib.Fluid.Sensors.UsersGuide for an explanation. +

                                      + ",revisions=" +
                                        +
                                      • + February 25, 2020, by Michael Wetter:
                                        + Changed icon to display its operating state.
                                        + This is for + #1294. +
                                      • +
                                      • + January 12, 2016, by Filip Jorissen:
                                        + First implementation. + See issue + #372 +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end PPMTwoPort; diff --git a/AixLib/Fluid/Sensors/Pressure.mo b/AixLib/Fluid/Sensors/Pressure.mo index dfc8463574..aea775c809 100644 --- a/AixLib/Fluid/Sensors/Pressure.mo +++ b/AixLib/Fluid/Sensors/Pressure.mo @@ -2,7 +2,7 @@ within AixLib.Fluid.Sensors; model Pressure "Ideal pressure sensor" extends AixLib.Fluid.Sensors.BaseClasses.PartialAbsoluteSensor( final warnAboutOnePortConnection = false); - extends Modelica.Icons.RotationalSensor; + extends Modelica.Icons.RoundSensor; Modelica.Blocks.Interfaces.RealOutput p(final quantity="AbsolutePressure", final unit="Pa", min=0) "Pressure at port" @@ -19,39 +19,40 @@ equation Text( extent={{-150,80},{150,120}}, textString="%name", - lineColor={0,0,255}), + textColor={0,0,255}), Text( extent={{151,-20},{57,-50}}, - lineColor={0,0,0}, + textColor={0,0,0}, textString="p"), Line(points={{70,0},{100,0}}, color={0,0,127}), Text( extent={{180,90},{60,40}}, - lineColor={0,0,0}, - textString=DynamicSelect("", String(p, leftjustified=false, significantDigits=5)))}), + textColor={0,0,0}, + textString=DynamicSelect("", String(p, leftJustified=false, significantDigits=5)))}), Documentation(info=" -

                                      -This model outputs the absolute pressure of the fluid connected to its port. -The sensor is ideal, i.e., it does not influence the fluid. -

                                      -", +

                                      + This model outputs the absolute pressure of the fluid connected to its port. + The sensor is ideal, i.e., it does not influence the fluid. +

                                      + ", revisions=" -
                                        -
                                      • -February 25, 2020, by Michael Wetter:
                                        -Changed icon to display its operating state.
                                        -This is for -#1294. -
                                      • -
                                      • -May 9, 2017, by Filip Jorissen:
                                        -Changed output quantity to AbsolutePressure. -See #770. -
                                      • -
                                      • -September 29, 2009, by Michael Wetter:
                                        -First implementation, based on Modelica.Fluid. -
                                      • -
                                      -")); +
                                        +
                                      • + February 25, 2020, by Michael Wetter:
                                        + Changed icon to display its operating state.
                                        + This is for + #1294. +
                                      • +
                                      • + May 9, 2017, by Filip Jorissen:
                                        + Changed output quantity to AbsolutePressure. + See #770. +
                                      • +
                                      • + September 29, 2009, by Michael Wetter:
                                        + First implementation, based on Modelica.Fluid. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end Pressure; diff --git a/AixLib/Fluid/Sensors/RelativeHumidity.mo b/AixLib/Fluid/Sensors/RelativeHumidity.mo index 9622d9d95f..1b7a14efa0 100644 --- a/AixLib/Fluid/Sensors/RelativeHumidity.mo +++ b/AixLib/Fluid/Sensors/RelativeHumidity.mo @@ -1,14 +1,14 @@ within AixLib.Fluid.Sensors; model RelativeHumidity "Ideal one port relative humidity sensor" extends AixLib.Fluid.Sensors.BaseClasses.PartialAbsoluteSensor; - extends Modelica.Icons.RotationalSensor; + extends Modelica.Icons.RoundSensor; Modelica.Blocks.Interfaces.RealOutput phi(final unit="1", min=0) "Relative humidity in port medium" annotation (Placement(transformation(extent={{100,-10},{120,10}}))); protected - Modelica.SIunits.Temperature T "Temperature of the medium"; + Modelica.Units.SI.Temperature T "Temperature of the medium"; Medium.MassFraction Xi[Medium.nXi]( quantity=Medium.substanceNames[1:Medium.nXi]) "Mass fraction of the medium"; equation @@ -30,58 +30,59 @@ annotation (defaultComponentName="senRelHum", Text( extent={{-150,80},{150,120}}, textString="%name", - lineColor={0,0,255}), + textColor={0,0,255}), Text( extent={{160,-30},{60,-60}}, - lineColor={0,0,0}, + textColor={0,0,0}, textString="phi"), Line(points={{70,0},{100,0}}, color={0,0,127}), Text( extent={{180,90},{60,40}}, - lineColor={0,0,0}, - textString=DynamicSelect("", String(phi, leftjustified=false, significantDigits=2)))}), + textColor={0,0,0}, + textString=DynamicSelect("", String(phi, leftJustified=false, significantDigits=2)))}), Documentation(info=" -

                                      -This model outputs the relative humidity of the fluid connected to its port. -The sensor is ideal, i.e. it does not influence the fluid. -

                                      -

                                      -Note that this sensor can only be used with media that contain the variable phi, -which is typically the case for moist air models. -

                                      -

                                      -To measure relative humidity in a duct or pipe, use -AixLib.Fluid.Sensors.RelativeHumidityTwoPort -rather than this sensor. -Read the - -AixLib.Fluid.Sensors.UsersGuide -prior to using this model to see about potential numerical problems if this sensor is used incorrectly -in a system model. -

                                      -", revisions=" -
                                        -
                                      • -September 21, 2020, by Michael Wetter:
                                        -Introduced parameter warnAboutOnePortConnection and updated documentation.
                                        -This is for -#1399. -
                                      • -
                                      • -February 21, 2020, by Michael Wetter:
                                        -Changed icon to display its operating state.
                                        -This is for -#1294. -
                                      • -
                                      • -January 26, 2016 by Michael Wetter:
                                        -Added quantity attribute for mass fraction variables.
                                        -Made unit assignment of output signal final. -
                                      • -
                                      • -May 12, 2010 by Michael Wetter:
                                        -First implementation. -
                                      • -
                                      -")); +

                                      + This model outputs the relative humidity of the fluid connected to its port. + The sensor is ideal, i.e. it does not influence the fluid. +

                                      +

                                      + Note that this sensor can only be used with media that contain the variable phi, + which is typically the case for moist air models. +

                                      +

                                      + To measure relative humidity in a duct or pipe, use + AixLib.Fluid.Sensors.RelativeHumidityTwoPort + rather than this sensor. + Read the + + AixLib.Fluid.Sensors.UsersGuide + prior to using this model to see about potential numerical problems if this sensor is used incorrectly + in a system model. +

                                      + ",revisions=" +
                                        +
                                      • + September 21, 2020, by Michael Wetter:
                                        + Introduced parameter warnAboutOnePortConnection and updated documentation.
                                        + This is for + #1399. +
                                      • +
                                      • + February 21, 2020, by Michael Wetter:
                                        + Changed icon to display its operating state.
                                        + This is for + #1294. +
                                      • +
                                      • + January 26, 2016 by Michael Wetter:
                                        + Added quantity attribute for mass fraction variables.
                                        + Made unit assignment of output signal final. +
                                      • +
                                      • + May 12, 2010 by Michael Wetter:
                                        + First implementation. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end RelativeHumidity; diff --git a/AixLib/Fluid/Sensors/RelativeHumidityTwoPort.mo b/AixLib/Fluid/Sensors/RelativeHumidityTwoPort.mo index db67d05711..406f3a0803 100644 --- a/AixLib/Fluid/Sensors/RelativeHumidityTwoPort.mo +++ b/AixLib/Fluid/Sensors/RelativeHumidityTwoPort.mo @@ -1,7 +1,7 @@ within AixLib.Fluid.Sensors; model RelativeHumidityTwoPort "Ideal two port relative humidity sensor" extends AixLib.Fluid.Sensors.BaseClasses.PartialDynamicFlowSensor; - extends Modelica.Icons.RotationalSensor; + extends Modelica.Icons.RoundSensor; Modelica.Blocks.Interfaces.RealOutput phi(final unit="1", min=0, start=phi_start) @@ -18,14 +18,14 @@ protected "Relative humidity to which the sensor is exposed to"; protected - Modelica.SIunits.Temperature T_a + Modelica.Units.SI.Temperature T_a "Temperature of the medium flowing from port_a to port_b"; Medium.MassFraction Xi_a[Medium.nXi]( quantity=Medium.substanceNames[1:Medium.nXi]) "Mass fraction of the medium flowing from port_a to port_b"; Real phi_a(final unit="1") "Relative humidity of the medium flowing from port_a to port_b"; - Modelica.SIunits.Temperature T_b + Modelica.Units.SI.Temperature T_b "Temperature of the medium flowing from port_b to port_a"; Medium.MassFraction Xi_b[Medium.nXi]( quantity=Medium.substanceNames[1:Medium.nXi]) @@ -90,63 +90,64 @@ annotation (defaultComponentName="senRelHum", grid={1,1}), graphics={ Text( extent={{102,124},{6,95}}, - lineColor={0,0,0}, + textColor={0,0,0}, textString="phi"), Line(points={{0,100},{0,70}}, color={0,0,127}), Line(points={{-100,0},{-70,0}}, color={0,128,255}), Line(points={{70,0},{100,0}}, color={0,128,255}), Text( extent={{-20,120},{-140,70}}, - lineColor={0,0,0}, - textString=DynamicSelect("", String(phi, leftjustified=false, significantDigits=2)))}), + textColor={0,0,0}, + textString=DynamicSelect("", String(phi, leftJustified=false, significantDigits=2)))}), Documentation(info=" -

                                      -This model outputs the relative humidity of the fluid flowing from -port_a to port_b. -The sensor is ideal, i.e., it does not influence the fluid. -

                                      -

                                      -Note that this sensor can only be used with media that contain the variable phi, -which is typically the case for moist air models. -

                                      -

                                      -If the parameter tau is non-zero, then its output -is computed using a first order differential equation. -Setting tau=0 is not recommend. See - -AixLib.Fluid.Sensors.UsersGuide for an explanation. -

                                      -", revisions=" -
                                        -
                                      • -February 21, 2020, by Michael Wetter:
                                        -Changed icon to display its operating state.
                                        -This is for -#1294. -
                                      • -
                                      • -January 26, 2016 by Michael Wetter:
                                        -Added quantity attribute for mass fraction variables.
                                        -Made unit assignment of output signal final. -
                                      • -
                                      • -January 18, 2016 by Filip Jorissen:
                                        -Using parameter tauInv -since this now exists in -AixLib.Fluid.Sensors.BaseClasses.PartialDynamicFlowSensor. -This is for -#372. -
                                      • -
                                      • -June 3, 2011 by Michael Wetter:
                                        -Revised implementation to add dynamics in such a way that -the time constant increases as the mass flow rate tends to zero. -This significantly improves the numerics. -
                                      • -
                                      • -Feb. 5, 2011 by Michael Wetter:
                                        -First implementation. -
                                      • -
                                      -")); +

                                      + This model outputs the relative humidity of the fluid flowing from + port_a to port_b. + The sensor is ideal, i.e., it does not influence the fluid. +

                                      +

                                      + Note that this sensor can only be used with media that contain the variable phi, + which is typically the case for moist air models. +

                                      +

                                      + If the parameter tau is non-zero, then its output + is computed using a first order differential equation. + Setting tau=0 is not recommend. See + + AixLib.Fluid.Sensors.UsersGuide for an explanation. +

                                      + ",revisions=" +
                                        +
                                      • + February 21, 2020, by Michael Wetter:
                                        + Changed icon to display its operating state.
                                        + This is for + #1294. +
                                      • +
                                      • + January 26, 2016 by Michael Wetter:
                                        + Added quantity attribute for mass fraction variables.
                                        + Made unit assignment of output signal final. +
                                      • +
                                      • + January 18, 2016 by Filip Jorissen:
                                        + Using parameter tauInv + since this now exists in + AixLib.Fluid.Sensors.BaseClasses.PartialDynamicFlowSensor. + This is for + #372. +
                                      • +
                                      • + June 3, 2011 by Michael Wetter:
                                        + Revised implementation to add dynamics in such a way that + the time constant increases as the mass flow rate tends to zero. + This significantly improves the numerics. +
                                      • +
                                      • + Feb. 5, 2011 by Michael Wetter:
                                        + First implementation. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end RelativeHumidityTwoPort; diff --git a/AixLib/Fluid/Sensors/RelativePressure.mo b/AixLib/Fluid/Sensors/RelativePressure.mo index 98bf27ef97..69b28b4264 100644 --- a/AixLib/Fluid/Sensors/RelativePressure.mo +++ b/AixLib/Fluid/Sensors/RelativePressure.mo @@ -1,6 +1,6 @@ within AixLib.Fluid.Sensors; model RelativePressure "Ideal relative pressure sensor" - extends Modelica.Icons.TranslationalSensor; + extends Modelica.Icons.RectangularSensor; replaceable package Medium = Modelica.Media.Interfaces.PartialMedium "Medium in the sensor" annotation (choices( @@ -53,10 +53,10 @@ equation Text( extent={{-150,40},{150,80}}, textString="%name", - lineColor={0,0,255}), + textColor={0,0,255}), Text( extent={{130,-70},{4,-100}}, - lineColor={0,0,0}, + textColor={0,0,0}, textString="p_rel"), Line( points={{32,3},{-58,3}}, @@ -68,44 +68,45 @@ equation fillPattern=FillPattern.Solid), Text( extent={{-20,-56},{-140,-106}}, - lineColor={0,0,0}, - textString=DynamicSelect("", String(p_rel, leftjustified=false, significantDigits=3)))}), + textColor={0,0,0}, + textString=DynamicSelect("", String(p_rel, leftJustified=false, significantDigits=3)))}), Documentation(info=" -

                                      -The relative pressure port_a.p - port_b.p is determined between -the two ports of this component and is provided as output signal. The -sensor should be connected in parallel with other equipment, no flow -through the sensor is allowed. -

                                      -", +

                                      + The relative pressure port_a.p - port_b.p is determined between + the two ports of this component and is provided as output signal. The + sensor should be connected in parallel with other equipment, no flow + through the sensor is allowed. +

                                      + ", revisions=" -
                                        -
                                      • -February 25, 2020, by Michael Wetter:
                                        -Changed icon to display its operating state.
                                        -This is for -#1294. -
                                      • -
                                      • -January 18, 2019, by Jianjun Hu:
                                        -Limited the media choice. -See #1050. -
                                      • -
                                      • -February 19, 2016, by Michael Wetter:
                                        -Corrected the quantity of the output signal from Pressure -to PressureDifference. -This was needed for the model - -AixLib.Fluid.Movers.FlowControlled_m_flow -when revising it for - -issue 417. -
                                      • -
                                      • -September 29, 2009, by Michael Wetter:
                                        -First implementation, based on Modelica.Fluid. -
                                      • -
                                      -")); +
                                        +
                                      • + February 25, 2020, by Michael Wetter:
                                        + Changed icon to display its operating state.
                                        + This is for + #1294. +
                                      • +
                                      • + January 18, 2019, by Jianjun Hu:
                                        + Limited the media choice. + See #1050. +
                                      • +
                                      • + February 19, 2016, by Michael Wetter:
                                        + Corrected the quantity of the output signal from Pressure + to PressureDifference. + This was needed for the model + + AixLib.Fluid.Movers.FlowControlled_m_flow + when revising it for + + issue 417. +
                                      • +
                                      • + September 29, 2009, by Michael Wetter:
                                        + First implementation, based on Modelica.Fluid. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end RelativePressure; diff --git a/AixLib/Fluid/Sensors/RelativeTemperature.mo b/AixLib/Fluid/Sensors/RelativeTemperature.mo index 222332ce2e..b4a35b844d 100644 --- a/AixLib/Fluid/Sensors/RelativeTemperature.mo +++ b/AixLib/Fluid/Sensors/RelativeTemperature.mo @@ -1,6 +1,6 @@ within AixLib.Fluid.Sensors; model RelativeTemperature "Ideal relative temperature sensor" - extends Modelica.Icons.TranslationalSensor; + extends Modelica.Icons.RectangularSensor; replaceable package Medium = Modelica.Media.Interfaces.PartialMedium "Medium in the sensor" annotation (choices( @@ -53,10 +53,10 @@ equation Text( extent={{-150,40},{150,80}}, textString="%name", - lineColor={0,0,255}), + textColor={0,0,255}), Text( extent={{128,-70},{10,-100}}, - lineColor={0,0,0}, + textColor={0,0,0}, textString="T_rel"), Line( points={{34,3},{-56,3}}, @@ -68,42 +68,43 @@ equation fillPattern=FillPattern.Solid), Text( extent={{-20,-56},{-140,-106}}, - lineColor={0,0,0}, - textString=DynamicSelect("", String(T_rel, leftjustified=false, significantDigits=3)))}), + textColor={0,0,0}, + textString=DynamicSelect("", String(T_rel, leftJustified=false, significantDigits=3)))}), Documentation(info=" -

                                      -The relative temperature T(port_a) - T(port_b) is determined between -the two ports of this component and is provided as output signal. The -sensor should be connected in parallel with other equipment. -There is no flow through the sensor. -

                                      -

                                      -Note that this sensor should only be connected to fluid volumes, such as - -AixLib.Fluid.MixingVolumes.MixingVolume. Otherwise, numerical -problems may occur if one of the mass flow rates are close to zero. -See - -AixLib.Fluid.Sensors.UsersGuide for an explanation. -

                                      -", +

                                      + The relative temperature T(port_a) - T(port_b) is determined between + the two ports of this component and is provided as output signal. The + sensor should be connected in parallel with other equipment. + There is no flow through the sensor. +

                                      +

                                      + Note that this sensor should only be connected to fluid volumes, such as + + AixLib.Fluid.MixingVolumes.MixingVolume. Otherwise, numerical + problems may occur if one of the mass flow rates are close to zero. + See + + AixLib.Fluid.Sensors.UsersGuide for an explanation. +

                                      + ", revisions=" -
                                        -
                                      • -February 25, 2020, by Michael Wetter:
                                        -Changed icon to display its operating state.
                                        -This is for -#1294. -
                                      • -
                                      • -January 18, 2019, by Jianjun Hu:
                                        -Limited the media choice. -See #1050. -
                                      • -
                                      • -September 29, 2009, by Michael Wetter:
                                        -First implementation, based on Modelica.Fluid. -
                                      • -
                                      -")); +
                                        +
                                      • + February 25, 2020, by Michael Wetter:
                                        + Changed icon to display its operating state.
                                        + This is for + #1294. +
                                      • +
                                      • + January 18, 2019, by Jianjun Hu:
                                        + Limited the media choice. + See #1050. +
                                      • +
                                      • + September 29, 2009, by Michael Wetter:
                                        + First implementation, based on Modelica.Fluid. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end RelativeTemperature; diff --git a/AixLib/Fluid/Sensors/SensibleEnthalpyFlowRate.mo b/AixLib/Fluid/Sensors/SensibleEnthalpyFlowRate.mo index 43ac6860f0..35b500b084 100644 --- a/AixLib/Fluid/Sensors/SensibleEnthalpyFlowRate.mo +++ b/AixLib/Fluid/Sensors/SensibleEnthalpyFlowRate.mo @@ -6,21 +6,21 @@ model SensibleEnthalpyFlowRate Modelica.Media.Interfaces.PartialCondensingGases, tau=0); extends AixLib.Fluid.BaseClasses.IndexMassFraction(final substanceName="water"); - extends Modelica.Icons.RotationalSensor; + extends Modelica.Icons.RoundSensor; Modelica.Blocks.Interfaces.RealOutput H_flow(final unit="W") "Sensible enthalpy flow rate, positive if from port_a to port_b" annotation (Placement(transformation( origin={0,110}, extent={{-10,-10},{10,10}}, rotation=90))); - parameter Modelica.SIunits.SpecificEnthalpy h_out_start= - Medium.enthalpyOfNonCondensingGas(T=Medium.T_default) + parameter Modelica.Units.SI.SpecificEnthalpy h_out_start= + Medium.enthalpyOfNonCondensingGas(T=Medium.T_default) "Initial or guess value of measured specific sensible enthalpy" annotation (Dialog(group="Initialization")); protected - Modelica.SIunits.SpecificEnthalpy hMed_out(start=h_out_start) + Modelica.Units.SI.SpecificEnthalpy hMed_out(start=h_out_start) "Medium sensible enthalpy to which the sensor is exposed"; - Modelica.SIunits.SpecificEnthalpy h_out(start=h_out_start) + Modelica.Units.SI.SpecificEnthalpy h_out(start=h_out_start) "Medium sensible enthalpy that is used to compute the enthalpy flow rate"; Medium.MassFraction XiActual[Medium.nXi] "Medium mass fraction to which sensor is exposed to"; @@ -74,7 +74,7 @@ annotation (defaultComponentName="senEntFlo", Line(points={{0,100},{0,70}}, color={0,0,127}), Text( extent={{180,151},{20,99}}, - lineColor={0,0,0}, + textColor={0,0,0}, textString="HS_flow"), Polygon( points={{-0.48,31.6},{18,26},{18,57.2},{-0.48,31.6}}, @@ -94,118 +94,119 @@ annotation (defaultComponentName="senEntFlo", Line(points={{-37.6,13.7},{-65.8,23.9}}), Text( extent={{-20,120},{-140,70}}, - lineColor={0,0,0}, - textString=DynamicSelect("", String(H_flow, leftjustified=false, significantDigits=3)))}), + textColor={0,0,0}, + textString=DynamicSelect("", String(H_flow, leftJustified=false, significantDigits=3)))}), Documentation(info=" -

                                      -This model outputs the sensible enthalphy flow rate of the medium in the flow -between its fluid ports. In particular, if the total enthalpy flow rate is -

                                      -

                                      - Ḣtot = Ḣsen + Ḣlat, -

                                      -

                                      -where -sen = ṁ (1-Xw) cp,air, -then this sensor outputs Ḣ = Ḣsen. -

                                      - -

                                      -If the parameter tau is non-zero, then the measured -specific sensible enthalpy hout that is used to -compute the sensible enthalpy flow rate -sen = ṁ hout -is computed using a first order differential equation. -See -AixLib.Fluid.Sensors.UsersGuide for an explanation. -

                                      - -

                                      -For a sensor that measures -tot, use - -AixLib.Fluid.Sensors.EnthalpyFlowRate.
                                      -For a sensor that measures -lat, use - -AixLib.Fluid.Sensors.LatentEnthalpyFlowRate. -

                                      - -

                                      -The sensor is ideal, i.e., it does not influence the fluid. -The sensor can only be used with medium models that implement the function -enthalpyOfNonCondensingGas(T).

                                      - -", +

                                      + This model outputs the sensible enthalphy flow rate of the medium in the flow + between its fluid ports. In particular, if the total enthalpy flow rate is +

                                      +

                                      + Ḣtot = Ḣsen + Ḣlat, +

                                      +

                                      + where + sen = ṁ (1-Xw) cp,air, + then this sensor outputs Ḣ = Ḣsen. +

                                      + +

                                      + If the parameter tau is non-zero, then the measured + specific sensible enthalpy hout that is used to + compute the sensible enthalpy flow rate + sen = ṁ hout + is computed using a first order differential equation. + See + AixLib.Fluid.Sensors.UsersGuide for an explanation. +

                                      + +

                                      + For a sensor that measures + tot, use + + AixLib.Fluid.Sensors.EnthalpyFlowRate.
                                      + For a sensor that measures + lat, use + + AixLib.Fluid.Sensors.LatentEnthalpyFlowRate. +

                                      + +

                                      + The sensor is ideal, i.e., it does not influence the fluid. + The sensor can only be used with medium models that implement the function + enthalpyOfNonCondensingGas(T).

                                      + + ", revisions=" -
                                        -
                                      • -October 19, 2020, by Antoine Gautier:
                                        -Changed default value for tau from 1 to 0.
                                        -This is for -#1406. -
                                      • -
                                      • -February 25, 2020, by Michael Wetter:
                                        -Changed icon to display its operating state.
                                        -This is for -#1294. -
                                      • -
                                      • -January 18, 2016 by Filip Jorissen:
                                        -Using parameter tauInv -since this now exists in -AixLib.Fluid.Sensors.BaseClasses.PartialDynamicFlowSensor. -This is for -#372. -
                                      • -
                                      • -September 10, 2013, by Michael Wetter:
                                        -Changed medium declaration in the extends statement -to replaceable to avoid a translation error in -OpenModelica. -
                                      • -
                                      • -August 31, 2013, by Michael Wetter:
                                        -Removed default value tau=0 as the base class -already sets tau=1. -This change was made so that all sensors use the same default value. -
                                      • -
                                      • -December 18, 2012, by Michael Wetter:
                                        -Moved computation of i_w to new base class - -AixLib.Fluid.BaseClasses.IndexWater. -The value of this parameter is now assigned dynamically and does not require to be specified -by the user. -
                                      • -
                                      • -November 3, 2011, by Michael Wetter:
                                        -Moved der(h_out) := 0; from the initial algorithm section to -the initial equation section -as this assignment does not conform to the Modelica specification. -
                                      • -
                                      • -August 10, 2011 by Michael Wetter:
                                        -Added parameter i_w and an assert statement to -make sure it is set correctly. Without this change, Dymola -cannot differentiate the model when reducing the index of the DAE. -
                                      • -
                                      • -June 3, 2011 by Michael Wetter:
                                        -Revised implementation to add dynamics in such a way that -the time constant increases as the mass flow rate tends to zero. -This can improve the numerics. -
                                      • -
                                      • -February 22, by Michael Wetter:
                                        -Improved code that searches for index of 'water' in the medium model. -
                                      • -
                                      • -September 9, 2009 by Michael Wetter:
                                        -First implementation. -Implementation is based on enthalpy sensor of Modelica.Fluid. -
                                      • -
                                      -")); +
                                        +
                                      • + October 19, 2020, by Antoine Gautier:
                                        + Changed default value for tau from 1 to 0.
                                        + This is for + #1406. +
                                      • +
                                      • + February 25, 2020, by Michael Wetter:
                                        + Changed icon to display its operating state.
                                        + This is for + #1294. +
                                      • +
                                      • + January 18, 2016 by Filip Jorissen:
                                        + Using parameter tauInv + since this now exists in + AixLib.Fluid.Sensors.BaseClasses.PartialDynamicFlowSensor. + This is for + #372. +
                                      • +
                                      • + September 10, 2013, by Michael Wetter:
                                        + Changed medium declaration in the extends statement + to replaceable to avoid a translation error in + OpenModelica. +
                                      • +
                                      • + August 31, 2013, by Michael Wetter:
                                        + Removed default value tau=0 as the base class + already sets tau=1. + This change was made so that all sensors use the same default value. +
                                      • +
                                      • + December 18, 2012, by Michael Wetter:
                                        + Moved computation of i_w to new base class + + AixLib.Fluid.BaseClasses.IndexWater. + The value of this parameter is now assigned dynamically and does not require to be specified + by the user. +
                                      • +
                                      • + November 3, 2011, by Michael Wetter:
                                        + Moved der(h_out) := 0; from the initial algorithm section to + the initial equation section + as this assignment does not conform to the Modelica specification. +
                                      • +
                                      • + August 10, 2011 by Michael Wetter:
                                        + Added parameter i_w and an assert statement to + make sure it is set correctly. Without this change, Dymola + cannot differentiate the model when reducing the index of the DAE. +
                                      • +
                                      • + June 3, 2011 by Michael Wetter:
                                        + Revised implementation to add dynamics in such a way that + the time constant increases as the mass flow rate tends to zero. + This can improve the numerics. +
                                      • +
                                      • + February 22, by Michael Wetter:
                                        + Improved code that searches for index of 'water' in the medium model. +
                                      • +
                                      • + September 9, 2009 by Michael Wetter:
                                        + First implementation. + Implementation is based on enthalpy sensor of Modelica.Fluid. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end SensibleEnthalpyFlowRate; diff --git a/AixLib/Fluid/Sensors/SpecificEnthalpy.mo b/AixLib/Fluid/Sensors/SpecificEnthalpy.mo index 78f51f483a..d62b78151e 100644 --- a/AixLib/Fluid/Sensors/SpecificEnthalpy.mo +++ b/AixLib/Fluid/Sensors/SpecificEnthalpy.mo @@ -1,7 +1,7 @@ within AixLib.Fluid.Sensors; model SpecificEnthalpy "Ideal one port specific enthalpy sensor" extends AixLib.Fluid.Sensors.BaseClasses.PartialAbsoluteSensor; - extends Modelica.Icons.RotationalSensor; + extends Modelica.Icons.RoundSensor; Modelica.Blocks.Interfaces.RealOutput h_out(final quantity="SpecificEnergy", final unit="J/kg") "Specific enthalpy in port medium" @@ -15,50 +15,51 @@ annotation (defaultComponentName="senSpeEnt", Text( extent={{-150,80},{150,120}}, textString="%name", - lineColor={0,0,255}), + textColor={0,0,255}), Text( extent={{168,-30},{52,-60}}, - lineColor={0,0,0}, + textColor={0,0,0}, textString="h"), Line(points={{70,0},{100,0}}, color={0,0,127}), Text( extent={{180,90},{60,40}}, - lineColor={0,0,0}, + textColor={0,0,0}, textString=DynamicSelect("", String(h_out, format=".0f")))}), Documentation(info=" -

                                      -This model outputs the specific enthalpy of the fluid connected to its port. -The sensor is ideal, i.e. it does not influence the fluid. -

                                      -

                                      -To measure specific enthalpy in a duct or pipe, use -AixLib.Fluid.Sensors.SpecificEnthalpyTwoPort -rather than this sensor. -Read the - -AixLib.Fluid.Sensors.UsersGuide -prior to using this model to see about potential numerical problems if this sensor is used incorrectly -in a system model. -

                                      -", +

                                      + This model outputs the specific enthalpy of the fluid connected to its port. + The sensor is ideal, i.e. it does not influence the fluid. +

                                      +

                                      + To measure specific enthalpy in a duct or pipe, use + AixLib.Fluid.Sensors.SpecificEnthalpyTwoPort + rather than this sensor. + Read the + + AixLib.Fluid.Sensors.UsersGuide + prior to using this model to see about potential numerical problems if this sensor is used incorrectly + in a system model. +

                                      + ", revisions=" -
                                        -
                                      • -September 21, 2020, by Michael Wetter:
                                        -Introduced parameter warnAboutOnePortConnection and updated documentation.
                                        -This is for -#1399. -
                                      • -
                                      • -February 25, 2020, by Michael Wetter:
                                        -Changed icon to display its operating state.
                                        -This is for -#1294. -
                                      • -
                                      • -September 29, 2009, by Michael Wetter:
                                        -First implementation. -
                                      • -
                                      -")); +
                                        +
                                      • + September 21, 2020, by Michael Wetter:
                                        + Introduced parameter warnAboutOnePortConnection and updated documentation.
                                        + This is for + #1399. +
                                      • +
                                      • + February 25, 2020, by Michael Wetter:
                                        + Changed icon to display its operating state.
                                        + This is for + #1294. +
                                      • +
                                      • + September 29, 2009, by Michael Wetter:
                                        + First implementation. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end SpecificEnthalpy; diff --git a/AixLib/Fluid/Sensors/SpecificEnthalpyTwoPort.mo b/AixLib/Fluid/Sensors/SpecificEnthalpyTwoPort.mo index 152b0be002..183c2d922e 100644 --- a/AixLib/Fluid/Sensors/SpecificEnthalpyTwoPort.mo +++ b/AixLib/Fluid/Sensors/SpecificEnthalpyTwoPort.mo @@ -1,10 +1,12 @@ within AixLib.Fluid.Sensors; model SpecificEnthalpyTwoPort "Ideal two port sensor for the specific enthalpy" extends AixLib.Fluid.Sensors.BaseClasses.PartialDynamicFlowSensor; - extends Modelica.Icons.RotationalSensor; - parameter Modelica.SIunits.SpecificEnthalpy h_out_start= - Medium.specificEnthalpy_pTX(p=Medium.p_default, T=Medium.T_default, X=Medium.X_default) - "Initial or guess value of output (= state)" + extends Modelica.Icons.RoundSensor; + parameter Modelica.Units.SI.SpecificEnthalpy h_out_start= + Medium.specificEnthalpy_pTX( + p=Medium.p_default, + T=Medium.T_default, + X=Medium.X_default) "Initial or guess value of output (= state)" annotation (Dialog(group="Initialization")); Modelica.Blocks.Interfaces.RealOutput h_out(final quantity="SpecificEnergy", final unit="J/kg", @@ -15,7 +17,7 @@ model SpecificEnthalpyTwoPort "Ideal two port sensor for the specific enthalpy" extent={{10,-10},{-10,10}}, rotation=270))); protected - Modelica.SIunits.SpecificEnthalpy hMed_out(start=h_out_start) + Modelica.Units.SI.SpecificEnthalpy hMed_out(start=h_out_start) "Medium enthalpy to which the sensor is exposed"; initial equation if dynamic then @@ -47,52 +49,53 @@ annotation (defaultComponentName="senSpeEnt", graphics={ Text( extent={{102,120},{0,90}}, - lineColor={0,0,0}, + textColor={0,0,0}, textString="h"), Line(points={{0,100},{0,70}}, color={0,0,127}), Line(points={{-100,0},{-70,0}}, color={0,128,255}), Line(points={{70,0},{100,0}}, color={0,128,255}), Text( extent={{-20,120},{-140,70}}, - lineColor={0,0,0}, + textColor={0,0,0}, textString=DynamicSelect("", String(h_out, format=".0f")))}), Documentation(info=" -

                                      -This model outputs the specific enthalpy of a passing fluid. -The sensor is ideal, i.e. it does not influence the fluid. -If the parameter tau is non-zero, then its output -is computed using a first order differential equation. -Setting tau=0 is not recommend. See - -AixLib.Fluid.Sensors.UsersGuide for an explanation. -

                                      -", +

                                      + This model outputs the specific enthalpy of a passing fluid. + The sensor is ideal, i.e. it does not influence the fluid. + If the parameter tau is non-zero, then its output + is computed using a first order differential equation. + Setting tau=0 is not recommend. See + + AixLib.Fluid.Sensors.UsersGuide for an explanation. +

                                      + ", revisions=" -
                                        -
                                      • -February 25, 2020, by Michael Wetter:
                                        -Changed icon to display its operating state.
                                        -This is for -#1294. -
                                      • -
                                      • -January 18, 2016 by Filip Jorissen:
                                        -Using parameter tauInv -since this now exists in -AixLib.Fluid.Sensors.BaseClasses.PartialDynamicFlowSensor. -This is for -#372. -
                                      • -
                                      • -June 3, 2011 by Michael Wetter:
                                        -Revised implementation to add dynamics in such a way that -the time constant increases as the mass flow rate tends to zero. -This significantly improves the numerics. -
                                      • -
                                      • -September 29, 2009, by Michael Wetter:
                                        -First implementation. -
                                      • -
                                      -")); +
                                        +
                                      • + February 25, 2020, by Michael Wetter:
                                        + Changed icon to display its operating state.
                                        + This is for + #1294. +
                                      • +
                                      • + January 18, 2016 by Filip Jorissen:
                                        + Using parameter tauInv + since this now exists in + AixLib.Fluid.Sensors.BaseClasses.PartialDynamicFlowSensor. + This is for + #372. +
                                      • +
                                      • + June 3, 2011 by Michael Wetter:
                                        + Revised implementation to add dynamics in such a way that + the time constant increases as the mass flow rate tends to zero. + This significantly improves the numerics. +
                                      • +
                                      • + September 29, 2009, by Michael Wetter:
                                        + First implementation. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end SpecificEnthalpyTwoPort; diff --git a/AixLib/Fluid/Sensors/SpecificEntropy.mo b/AixLib/Fluid/Sensors/SpecificEntropy.mo index 3d77201213..daa67f561c 100644 --- a/AixLib/Fluid/Sensors/SpecificEntropy.mo +++ b/AixLib/Fluid/Sensors/SpecificEntropy.mo @@ -1,7 +1,7 @@ within AixLib.Fluid.Sensors; model SpecificEntropy "Ideal one port specific entropy sensor" extends AixLib.Fluid.Sensors.BaseClasses.PartialAbsoluteSensor; - extends Modelica.Icons.RotationalSensor; + extends Modelica.Icons.RoundSensor; Modelica.Blocks.Interfaces.RealOutput s(final quantity="SpecificEntropy", final unit="J/(kg.K)") "Specific entropy in port medium" @@ -17,51 +17,52 @@ annotation (defaultComponentName="senSpeEnt", Text( extent={{-150,80},{150,120}}, textString="%name", - lineColor={0,0,255}), + textColor={0,0,255}), Text( extent={{156,-24},{54,-54}}, - lineColor={0,0,0}, + textColor={0,0,0}, textString="s"), Line(points={{70,0},{100,0}}, color={0,0,127}), Ellipse(extent={{-70,70},{70,-70}}, lineColor={255,0,0}), Text( extent={{180,90},{60,40}}, - lineColor={0,0,0}, + textColor={0,0,0}, textString=DynamicSelect("", String(s, format=".0f")))}), Documentation(info=" -

                                      -This model outputs the specific entropy of the fluid connected to its port. -The sensor is ideal, i.e., it does not influence the fluid. -

                                      -

                                      -To measure specific entropy in a duct or pipe, use -AixLib.Fluid.Sensors.SpecificEntropyTwoPort -rather than this sensor. -Read the - -AixLib.Fluid.Sensors.UsersGuide -prior to using this model to see about potential numerical problems if this sensor is used incorrectly -in a system model. -

                                      -", +

                                      + This model outputs the specific entropy of the fluid connected to its port. + The sensor is ideal, i.e., it does not influence the fluid. +

                                      +

                                      + To measure specific entropy in a duct or pipe, use + AixLib.Fluid.Sensors.SpecificEntropyTwoPort + rather than this sensor. + Read the + + AixLib.Fluid.Sensors.UsersGuide + prior to using this model to see about potential numerical problems if this sensor is used incorrectly + in a system model. +

                                      + ", revisions=" -
                                        -
                                      • -September 21, 2020, by Michael Wetter:
                                        -Introduced parameter warnAboutOnePortConnection and updated documentation.
                                        -This is for -#1399. -
                                      • -
                                      • -February 25, 2020, by Michael Wetter:
                                        -Changed icon to display its operating state.
                                        -This is for -#1294. -
                                      • -
                                      • -September 29, 2009, by Michael Wetter:
                                        -First implementation. -
                                      • -
                                      -")); +
                                        +
                                      • + September 21, 2020, by Michael Wetter:
                                        + Introduced parameter warnAboutOnePortConnection and updated documentation.
                                        + This is for + #1399. +
                                      • +
                                      • + February 25, 2020, by Michael Wetter:
                                        + Changed icon to display its operating state.
                                        + This is for + #1294. +
                                      • +
                                      • + September 29, 2009, by Michael Wetter:
                                        + First implementation. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end SpecificEntropy; diff --git a/AixLib/Fluid/Sensors/SpecificEntropyTwoPort.mo b/AixLib/Fluid/Sensors/SpecificEntropyTwoPort.mo index 74439175a1..a0924dfdbd 100644 --- a/AixLib/Fluid/Sensors/SpecificEntropyTwoPort.mo +++ b/AixLib/Fluid/Sensors/SpecificEntropyTwoPort.mo @@ -1,10 +1,12 @@ within AixLib.Fluid.Sensors; model SpecificEntropyTwoPort "Ideal two port sensor for the specific entropy" extends AixLib.Fluid.Sensors.BaseClasses.PartialDynamicFlowSensor; - extends Modelica.Icons.RotationalSensor; - parameter Modelica.SIunits.SpecificEntropy s_start= - Medium.specificEntropy_pTX(p=Medium.p_default, T=Medium.T_default, X=Medium.X_default) - "Initial or guess value of output (= state)" + extends Modelica.Icons.RoundSensor; + parameter Modelica.Units.SI.SpecificEntropy s_start= + Medium.specificEntropy_pTX( + p=Medium.p_default, + T=Medium.T_default, + X=Medium.X_default) "Initial or guess value of output (= state)" annotation (Dialog(group="Initialization")); Modelica.Blocks.Interfaces.RealOutput s(final quantity="SpecificEntropy", final unit="J/(kg.K)", @@ -15,7 +17,7 @@ model SpecificEntropyTwoPort "Ideal two port sensor for the specific entropy" extent={{10,-10},{-10,10}}, rotation=270))); protected - Modelica.SIunits.SpecificEntropy sMed(start=s_start) + Modelica.Units.SI.SpecificEntropy sMed(start=s_start) "Medium entropy to which the sensor is exposed"; Medium.SpecificEntropy s_a_inflow "Specific entropy of inflowing fluid at port_a"; @@ -58,7 +60,7 @@ annotation (defaultComponentName="senSpeEnt", graphics={ Text( extent={{120,120},{0,90}}, - lineColor={0,0,0}, + textColor={0,0,0}, textString="s"), Line(points={{0,100},{0,70}}, color={0,0,127}), Line(points={{-100,0},{-70,0}}, color={0,128,255}), @@ -66,48 +68,49 @@ annotation (defaultComponentName="senSpeEnt", Ellipse(extent={{-70,70},{70,-70}}, lineColor={255,0,0}), Text( extent={{-20,120},{-140,70}}, - lineColor={0,0,0}, + textColor={0,0,0}, textString=DynamicSelect("", String(s, format=".0f")))}), Documentation(info=" -

                                      -This model outputs the specific entropy of the passing fluid. -The sensor is ideal, i.e., it does not influence the fluid. -If the parameter tau is non-zero, then its output -is computed using a first order differential equation. -Setting tau=0 is not recommend. See - -AixLib.Fluid.Sensors.UsersGuide for an explanation. -

                                      -", revisions=" -
                                        -
                                      • -February 25, 2020, by Michael Wetter:
                                        -Changed icon to display its operating state.
                                        -This is for -#1294. -
                                      • -
                                      • -January 18, 2016 by Filip Jorissen:
                                        -Using parameter tauInv -since this now exists in -AixLib.Fluid.Sensors.BaseClasses.PartialDynamicFlowSensor. -This is for -#372. -
                                      • -
                                      • -August 31, 2013, by Michael Wetter:
                                        -Corrected wrong computation of s and sMed. -
                                      • -
                                      • -June 3, 2011 by Michael Wetter:
                                        -Revised implementation to add dynamics in such a way that -the time constant increases as the mass flow rate tends to zero. -This significantly improves the numerics. -
                                      • -
                                      • -September 29, 2009, by Michael Wetter:
                                        -First implementation. -
                                      • -
                                      -")); +

                                      + This model outputs the specific entropy of the passing fluid. + The sensor is ideal, i.e., it does not influence the fluid. + If the parameter tau is non-zero, then its output + is computed using a first order differential equation. + Setting tau=0 is not recommend. See + + AixLib.Fluid.Sensors.UsersGuide for an explanation. +

                                      + ",revisions=" +
                                        +
                                      • + February 25, 2020, by Michael Wetter:
                                        + Changed icon to display its operating state.
                                        + This is for + #1294. +
                                      • +
                                      • + January 18, 2016 by Filip Jorissen:
                                        + Using parameter tauInv + since this now exists in + AixLib.Fluid.Sensors.BaseClasses.PartialDynamicFlowSensor. + This is for + #372. +
                                      • +
                                      • + August 31, 2013, by Michael Wetter:
                                        + Corrected wrong computation of s and sMed. +
                                      • +
                                      • + June 3, 2011 by Michael Wetter:
                                        + Revised implementation to add dynamics in such a way that + the time constant increases as the mass flow rate tends to zero. + This significantly improves the numerics. +
                                      • +
                                      • + September 29, 2009, by Michael Wetter:
                                        + First implementation. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end SpecificEntropyTwoPort; diff --git a/AixLib/Fluid/Sensors/Temperature.mo b/AixLib/Fluid/Sensors/Temperature.mo index 1d514eb552..eb9fcb40b0 100644 --- a/AixLib/Fluid/Sensors/Temperature.mo +++ b/AixLib/Fluid/Sensors/Temperature.mo @@ -16,42 +16,42 @@ equation annotation ( defaultComponentName="senTem", Documentation(info=" -

                                      -This model outputs the temperature of the fluid connected to its port. -The sensor is ideal, i.e., it does not influence the fluid. -

                                      -

                                      -To measure temperature in a duct or pipe, use -AixLib.Fluid.Sensors.TemperatureTwoPort -rather than this sensor. -Read the - -AixLib.Fluid.Sensors.UsersGuide -prior to using this model to see about potential numerical problems if this sensor is used incorrectly -in a system model. -

                                      -", +

                                      + This model outputs the temperature of the fluid connected to its port. + The sensor is ideal, i.e., it does not influence the fluid. +

                                      +

                                      + To measure temperature in a duct or pipe, use + AixLib.Fluid.Sensors.TemperatureTwoPort + rather than this sensor. + Read the + + AixLib.Fluid.Sensors.UsersGuide + prior to using this model to see about potential numerical problems if this sensor is used incorrectly + in a system model. +

                                      + ", revisions=" -
                                        -
                                      • -September 21, 2020, by Michael Wetter:
                                        -Introduced parameter warnAboutOnePortConnection and updated documentation.
                                        -This is for -#1399. -
                                      • -
                                      • -February 21, 2020, by Michael Wetter:
                                        -Changed icon to display its operating state.
                                        -This is for -#1294. -
                                      • -
                                      • -September 29, 2009, by Michael Wetter:
                                        -First implementation. -Implementation is based on Modelica.Fluid. -
                                      • -
                                      -"), +
                                        +
                                      • + September 21, 2020, by Michael Wetter:
                                        + Introduced parameter warnAboutOnePortConnection and updated documentation.
                                        + This is for + #1399. +
                                      • +
                                      • + February 21, 2020, by Michael Wetter:
                                        + Changed icon to display its operating state.
                                        + This is for + #1294. +
                                      • +
                                      • + September 29, 2009, by Michael Wetter:
                                        + First implementation. + Implementation is based on Modelica.Fluid. +
                                      • +
                                      + "), Diagram(coordinateSystem(preserveAspectRatio=true, extent={{-100,-100},{100,100}}), graphics={ Line(points={{0,-70},{0,-100}}, color={0,0,127}), @@ -110,15 +110,16 @@ Implementation is based on Modelica.Fluid. Line(points={{-40,70},{-12,70}}), Text( extent={{126,-30},{6,-60}}, - lineColor={0,0,0}, + textColor={0,0,0}, textString="T"), Text( extent={{-150,110},{150,150}}, textString="%name", - lineColor={0,0,255}), + textColor={0,0,255}), Line(points={{12,0},{60,0}}, color={0,0,127}), Text( extent={{180,90},{60,40}}, - lineColor={0,0,0}, - textString=DynamicSelect("", String(T-273.15, format=".1f")))})); + textColor={0,0,0}, + textString=DynamicSelect("", String(T-273.15, format=".1f")))}), + __Dymola_LockedEditing="Model from IBPSA"); end Temperature; diff --git a/AixLib/Fluid/Sensors/TemperatureTwoPort.mo b/AixLib/Fluid/Sensors/TemperatureTwoPort.mo index ed2faf7663..f4344f11b0 100644 --- a/AixLib/Fluid/Sensors/TemperatureTwoPort.mo +++ b/AixLib/Fluid/Sensors/TemperatureTwoPort.mo @@ -11,19 +11,19 @@ model TemperatureTwoPort "Ideal two port temperature sensor" origin={0,110}, extent={{10,-10},{-10,10}}, rotation=270))); - parameter Modelica.SIunits.Temperature T_start=Medium.T_default + parameter Modelica.Units.SI.Temperature T_start=Medium.T_default "Initial or guess value of output (= state)" annotation (Dialog(group="Initialization")); parameter Boolean transferHeat = false "if true, temperature T converges towards TAmb when no flow" annotation(Evaluate=true, Dialog(group="Heat transfer")); - parameter Modelica.SIunits.Temperature TAmb=Medium.T_default + parameter Modelica.Units.SI.Temperature TAmb=Medium.T_default "Fixed ambient temperature for heat transfer" - annotation(Dialog(enable=transferHeat, group="Heat transfer")); - parameter Modelica.SIunits.Time tauHeaTra(min=1)=1200 + annotation (Dialog(enable=transferHeat, group="Heat transfer")); + parameter Modelica.Units.SI.Time tauHeaTra(min=1) = 1200 "Time constant for heat transfer, default 20 minutes" - annotation(Dialog(enable=transferHeat, group="Heat transfer")); + annotation (Dialog(enable=transferHeat, group="Heat transfer")); protected parameter Real tauHeaTraInv(final unit = "1/s")= @@ -97,7 +97,7 @@ annotation (defaultComponentName="senTem", lineThickness=0.5), Text( extent={{102,140},{-18,90}}, - lineColor={0,0,0}, + textColor={0,0,0}, textString="T"), Line( points={{-12,60},{-12,-25}}, @@ -120,88 +120,89 @@ annotation (defaultComponentName="senTem", visible=transferHeat), Text( extent={{-20,120},{-140,70}}, - lineColor={0,0,0}, + textColor={0,0,0}, textString=DynamicSelect("", String(T-273.15, format=".1f")))}), Documentation(info=" -

                                      -This model outputs the temperature of the medium in the flow -between its fluid ports. The sensor does not influence the fluid. -

                                      -

                                      Typical use and important parameters

                                      -

                                      -If the parameter tau is non-zero, then its output T -converges to the temperature of the incoming fluid using -a first order differential equation. -Setting tau=0 is not recommend. See - -AixLib.Fluid.Sensors.UsersGuide for an explanation. -

                                      -

                                      -If transferHeat = true, then heat transfer with the ambient is -approximated and T converges towards the fixed ambient -temperature TAmb using a first order approximation -with a time constant of tauHeaTra -when the flow rate is small. -Note that no energy is exchanged with the fluid as the -sensor does not influence the fluid temperature. -

                                      -

                                      -Setting transferHeat = true is useful, for example, -if the sensor is used to measure the fluid temperature in -a system with on/off control on the mass flow rate. -If transferHeat were false, then the sensor output T -would remain constant if the mass flow rate is set to zero, and hence -the controller may never switch the mass flow rate on again. -

                                      -

                                      -In general, applications in which the sensor output is not used to switch -the mass flow rate on should set transferHeat=false. -

                                      -", revisions=" -
                                        -
                                      • -February 21, 2020, by Michael Wetter:
                                        -Changed icon to display its operating state.
                                        -This is for -#1294. -
                                      • -
                                      • -October 23, 2017 by Filip Jorissen:
                                        -Revised implementation of equations -when transferHeat=true. -See #840. -
                                      • -
                                      • -January 12, 2016 by Filip Jorissen:
                                        -Removed parameter tauInv -since this now exists in -AixLib.Fluid.Sensors.BaseClasses.PartialDynamicFlowSensor. -
                                      • -
                                      • -June 19, 2015 by Michael Wetter:
                                        -Revised model and documentation. -
                                      • -
                                      • -June 18, 2015 by Filip Jorissen:
                                        -Added option for simulating thermal losses. -
                                      • -
                                      • -June 3, 2011 by Michael Wetter:
                                        -Revised implementation to add dynamics in such a way that -the time constant increases as the mass flow rate tends to zero. -This significantly improves the numerics. -
                                      • -
                                      • -February 26, 2010 by Michael Wetter:
                                        -Set start attribute for temperature output. Prior to this change, -the output was 0 at initial time, which caused the plot of the output to -use 0 Kelvin as the lower value of the ordinate. -
                                      • -
                                      • -September 10, 2008, by Michael Wetter:
                                        -First implementation, based on -AixLib.Fluid.Sensors.Temperature. -
                                      • -
                                      -")); +

                                      + This model outputs the temperature of the medium in the flow + between its fluid ports. The sensor does not influence the fluid. +

                                      +

                                      Typical use and important parameters

                                      +

                                      + If the parameter tau is non-zero, then its output T + converges to the temperature of the incoming fluid using + a first order differential equation. + Setting tau=0 is not recommend. See + + AixLib.Fluid.Sensors.UsersGuide for an explanation. +

                                      +

                                      + If transferHeat = true, then heat transfer with the ambient is + approximated and T converges towards the fixed ambient + temperature TAmb using a first order approximation + with a time constant of tauHeaTra + when the flow rate is small. + Note that no energy is exchanged with the fluid as the + sensor does not influence the fluid temperature. +

                                      +

                                      + Setting transferHeat = true is useful, for example, + if the sensor is used to measure the fluid temperature in + a system with on/off control on the mass flow rate. + If transferHeat were false, then the sensor output T + would remain constant if the mass flow rate is set to zero, and hence + the controller may never switch the mass flow rate on again. +

                                      +

                                      + In general, applications in which the sensor output is not used to switch + the mass flow rate on should set transferHeat=false. +

                                      + ",revisions=" +
                                        +
                                      • + February 21, 2020, by Michael Wetter:
                                        + Changed icon to display its operating state.
                                        + This is for + #1294. +
                                      • +
                                      • + October 23, 2017 by Filip Jorissen:
                                        + Revised implementation of equations + when transferHeat=true. + See #840. +
                                      • +
                                      • + January 12, 2016 by Filip Jorissen:
                                        + Removed parameter tauInv + since this now exists in + AixLib.Fluid.Sensors.BaseClasses.PartialDynamicFlowSensor. +
                                      • +
                                      • + June 19, 2015 by Michael Wetter:
                                        + Revised model and documentation. +
                                      • +
                                      • + June 18, 2015 by Filip Jorissen:
                                        + Added option for simulating thermal losses. +
                                      • +
                                      • + June 3, 2011 by Michael Wetter:
                                        + Revised implementation to add dynamics in such a way that + the time constant increases as the mass flow rate tends to zero. + This significantly improves the numerics. +
                                      • +
                                      • + February 26, 2010 by Michael Wetter:
                                        + Set start attribute for temperature output. Prior to this change, + the output was 0 at initial time, which caused the plot of the output to + use 0 Kelvin as the lower value of the ordinate. +
                                      • +
                                      • + September 10, 2008, by Michael Wetter:
                                        + First implementation, based on + AixLib.Fluid.Sensors.Temperature. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end TemperatureTwoPort; diff --git a/AixLib/Fluid/Sensors/TemperatureWetBulbTwoPort.mo b/AixLib/Fluid/Sensors/TemperatureWetBulbTwoPort.mo index 4f3431664c..2ed4373229 100644 --- a/AixLib/Fluid/Sensors/TemperatureWetBulbTwoPort.mo +++ b/AixLib/Fluid/Sensors/TemperatureWetBulbTwoPort.mo @@ -13,7 +13,7 @@ model TemperatureWetBulbTwoPort "Ideal wet bulb temperature sensor" extent={{-10,-10},{10,10}}, rotation=90, origin={0,110}))); - parameter Modelica.SIunits.Temperature TWetBul_start = Medium.T_default + parameter Modelica.Units.SI.Temperature TWetBul_start=Medium.T_default "Initial or guess value of wet bulb temperature (used to compute initial output signal))" annotation (Dialog(group="Initialization")); @@ -23,7 +23,7 @@ protected AixLib.Utilities.Psychrometrics.TWetBul_TDryBulXi wetBulMod( redeclare package Medium = Medium, TWetBul(start=TWetBul_start)) "Block for wet bulb temperature"; - Modelica.SIunits.SpecificEnthalpy h "Specific enthalpy"; + Modelica.Units.SI.SpecificEnthalpy h "Specific enthalpy"; Medium.MassFraction Xi[Medium.nXi] "Species vector, needed because indexed argument for the operator inStream is not supported"; initial equation @@ -87,7 +87,7 @@ annotation (defaultComponentName="senWetBul", lineThickness=0.5), Text( extent={{102,140},{-18,90}}, - lineColor={0,0,0}, + textColor={0,0,0}, textString="T"), Line( points={{-12,60},{-12,-25}}, @@ -98,60 +98,61 @@ annotation (defaultComponentName="senWetBul", Line(points={{0,100},{0,50}}, color={0,0,127}), Text( extent={{-20,120},{-140,70}}, - lineColor={0,0,0}, + textColor={0,0,0}, textString=DynamicSelect("", String(T-273.15, format=".1f")))}), Documentation(info=" -

                                      -This sensor outputs the wet bulb temperature of the medium in the flow -between its fluid ports. The sensor is ideal, i.e., it does not influence the fluid. -If the parameter tau is non-zero, then its output -is computed using a first order differential equation. -Setting tau=0 is not recommend. See - -AixLib.Fluid.Sensors.UsersGuide for an explanation. -

                                      -", +

                                      + This sensor outputs the wet bulb temperature of the medium in the flow + between its fluid ports. The sensor is ideal, i.e., it does not influence the fluid. + If the parameter tau is non-zero, then its output + is computed using a first order differential equation. + Setting tau=0 is not recommend. See + + AixLib.Fluid.Sensors.UsersGuide for an explanation. +

                                      + ", revisions=" -
                                        -
                                      • -February 21, 2020, by Michael Wetter:
                                        -Changed icon to display its operating state.
                                        -This is for -#1294. -
                                      • -
                                      • -January 18, 2016 by Filip Jorissen:
                                        -Using parameter tauInv -since this now exists in -AixLib.Fluid.Sensors.BaseClasses.PartialDynamicFlowSensor. -This is for -#372. -
                                      • -
                                      • -September 10, 2013 by Michael Wetter:
                                        -Set start attribute for wetBulMod -to use consistent start values within this model. -
                                      • -
                                      • -June 3, 2011 by Michael Wetter:
                                        -Revised implementation to add dynamics in such a way that -the time constant increases as the mass flow rate tends to zero. -This significantly improves the numerics. -
                                      • -
                                      • -February 18, 2010, by Michael Wetter:
                                        -Revised model to use new block for computing the wet bulb temperature. -
                                      • -
                                      • -September 10, 2008, by Michael Wetter:
                                        -Renamed output port to have the same interfaces as the dry bulb temperature sensor. -
                                      • -
                                      • -May 5, 2008, by Michael Wetter:
                                        -First implementation. -Implementation is based on -AixLib.Fluid.Sensors.Temperature. -
                                      • -
                                      -")); +
                                        +
                                      • + February 21, 2020, by Michael Wetter:
                                        + Changed icon to display its operating state.
                                        + This is for + #1294. +
                                      • +
                                      • + January 18, 2016 by Filip Jorissen:
                                        + Using parameter tauInv + since this now exists in + AixLib.Fluid.Sensors.BaseClasses.PartialDynamicFlowSensor. + This is for + #372. +
                                      • +
                                      • + September 10, 2013 by Michael Wetter:
                                        + Set start attribute for wetBulMod + to use consistent start values within this model. +
                                      • +
                                      • + June 3, 2011 by Michael Wetter:
                                        + Revised implementation to add dynamics in such a way that + the time constant increases as the mass flow rate tends to zero. + This significantly improves the numerics. +
                                      • +
                                      • + February 18, 2010, by Michael Wetter:
                                        + Revised model to use new block for computing the wet bulb temperature. +
                                      • +
                                      • + September 10, 2008, by Michael Wetter:
                                        + Renamed output port to have the same interfaces as the dry bulb temperature sensor. +
                                      • +
                                      • + May 5, 2008, by Michael Wetter:
                                        + First implementation. + Implementation is based on + AixLib.Fluid.Sensors.Temperature. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end TemperatureWetBulbTwoPort; diff --git a/AixLib/Fluid/Sensors/TraceSubstances.mo b/AixLib/Fluid/Sensors/TraceSubstances.mo index 4653573b08..e38e29b6c4 100644 --- a/AixLib/Fluid/Sensors/TraceSubstances.mo +++ b/AixLib/Fluid/Sensors/TraceSubstances.mo @@ -1,7 +1,7 @@ within AixLib.Fluid.Sensors; model TraceSubstances "Ideal one port trace substances sensor" extends AixLib.Fluid.Sensors.BaseClasses.PartialAbsoluteSensor; - extends Modelica.Icons.RotationalSensor; + extends Modelica.Icons.RoundSensor; parameter String substanceName = "CO2" "Name of trace substance"; @@ -34,71 +34,72 @@ annotation (defaultComponentName="senTraSub", Text( extent={{-150,80},{150,120}}, textString="%name", - lineColor={0,0,255}), + textColor={0,0,255}), Text( extent={{160,-30},{60,-60}}, - lineColor={0,0,0}, + textColor={0,0,0}, textString="C"), Line(points={{70,0},{100,0}}, color={0,0,127}), Text( extent={{180,90},{60,40}}, - lineColor={0,0,0}, - textString=DynamicSelect("", String(C, leftjustified=false, significantDigits=3)))}), + textColor={0,0,0}, + textString=DynamicSelect("", String(C, leftJustified=false, significantDigits=3)))}), Documentation(info=" -

                                      -This model outputs the trace substances contained in the fluid connected to its port. -The sensor is ideal, i.e., it does not influence the fluid. -

                                      -

                                      -To measure trace substances in a duct or pipe, use -AixLib.Fluid.Sensors.TraceSubstancesTwoPort -rather than this sensor. -Read the - -AixLib.Fluid.Sensors.UsersGuide -prior to using this model to see about potential numerical problems if this sensor is used incorrectly -in a system model. -

                                      -", revisions=" -
                                        -
                                      • -September 21, 2020, by Michael Wetter:
                                        -Introduced parameter warnAboutOnePortConnection and updated documentation.
                                        -This is for -#1399. -
                                      • -
                                      • -February 25, 2020, by Michael Wetter:
                                        -Changed icon to display its operating state.
                                        -This is for -#1294. -
                                      • -
                                      • -June 10, 2015, by Michael Wetter:
                                        -Reformulated assignment of s and assert -statement. The reformulation of the assignment of s was -done to allow a model check in non-pedantic mode. -This is for -issue 268. -
                                      • -
                                      • -September 10, 2013, by Michael Wetter:
                                        -Corrected a syntax error in setting the nominal value for the output signal. -This eliminates a compilation error in OpenModelica. -
                                      • -
                                      • -February 22, by Michael Wetter:
                                        -Improved code that searches for index of trace substance in medium model. -
                                      • -
                                      • -March 22, 2010 by Michael Wetter:
                                        -Changed assignment for C so that Dymola 7.4 can find -the analytic derivative. -
                                      • -
                                      • -September 29, 2009, by Michael Wetter:
                                        -First implementation. -
                                      • -
                                      -")); +

                                      + This model outputs the trace substances contained in the fluid connected to its port. + The sensor is ideal, i.e., it does not influence the fluid. +

                                      +

                                      + To measure trace substances in a duct or pipe, use + AixLib.Fluid.Sensors.TraceSubstancesTwoPort + rather than this sensor. + Read the + + AixLib.Fluid.Sensors.UsersGuide + prior to using this model to see about potential numerical problems if this sensor is used incorrectly + in a system model. +

                                      + ",revisions=" +
                                        +
                                      • + September 21, 2020, by Michael Wetter:
                                        + Introduced parameter warnAboutOnePortConnection and updated documentation.
                                        + This is for + #1399. +
                                      • +
                                      • + February 25, 2020, by Michael Wetter:
                                        + Changed icon to display its operating state.
                                        + This is for + #1294. +
                                      • +
                                      • + June 10, 2015, by Michael Wetter:
                                        + Reformulated assignment of s and assert + statement. The reformulation of the assignment of s was + done to allow a model check in non-pedantic mode. + This is for + issue 268. +
                                      • +
                                      • + September 10, 2013, by Michael Wetter:
                                        + Corrected a syntax error in setting the nominal value for the output signal. + This eliminates a compilation error in OpenModelica. +
                                      • +
                                      • + February 22, by Michael Wetter:
                                        + Improved code that searches for index of trace substance in medium model. +
                                      • +
                                      • + March 22, 2010 by Michael Wetter:
                                        + Changed assignment for C so that Dymola 7.4 can find + the analytic derivative. +
                                      • +
                                      • + September 29, 2009, by Michael Wetter:
                                        + First implementation. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end TraceSubstances; diff --git a/AixLib/Fluid/Sensors/TraceSubstancesTwoPort.mo b/AixLib/Fluid/Sensors/TraceSubstancesTwoPort.mo index 5e18c34d14..1f1bd65d3e 100644 --- a/AixLib/Fluid/Sensors/TraceSubstancesTwoPort.mo +++ b/AixLib/Fluid/Sensors/TraceSubstancesTwoPort.mo @@ -1,7 +1,7 @@ within AixLib.Fluid.Sensors; model TraceSubstancesTwoPort "Ideal two port sensor for trace substance" extends AixLib.Fluid.Sensors.BaseClasses.PartialDynamicFlowSensor; - extends Modelica.Icons.RotationalSensor; + extends Modelica.Icons.RoundSensor; Modelica.Blocks.Interfaces.RealOutput C(min=0, start=C_start) "Trace substance of the passing fluid" @@ -60,91 +60,92 @@ annotation (defaultComponentName="senTraSub", graphics={ Text( extent={{82,122},{0,92}}, - lineColor={0,0,0}, + textColor={0,0,0}, textString="C"), Line(points={{0,100},{0,70}}, color={0,0,127}), Line(points={{-100,0},{-70,0}}, color={0,128,255}), Line(points={{70,0},{100,0}}, color={0,128,255}), Text( extent={{-20,120},{-140,70}}, - lineColor={0,0,0}, - textString=DynamicSelect("", String(C, leftjustified=false, significantDigits=3)))}), + textColor={0,0,0}, + textString=DynamicSelect("", String(C, leftJustified=false, significantDigits=3)))}), Documentation(info=" -

                                      -This model outputs the trace substance of the passing fluid. -The sensor is ideal, i.e., it does not influence the fluid. -If the parameter tau is non-zero, then its output -is computed using a first order differential equation. -Setting tau=0 is not recommend. See - -AixLib.Fluid.Sensors.UsersGuide for an explanation. -

                                      -", revisions=" -
                                        -
                                      • -February 25, 2020, by Michael Wetter:
                                        -Changed icon to display its operating state.
                                        -This is for -#1294. -
                                      • -
                                      • -January 26, 2016, by Michael Wetter:
                                        -Avoided assignment of CMed(nominal=0) as this is -not allowed. -
                                      • -
                                      • -January 18, 2016 by Filip Jorissen:
                                        -Using parameter tauInv -since this now exists in -AixLib.Fluid.Sensors.BaseClasses.PartialDynamicFlowSensor. -This is for -#372. -
                                      • -
                                      • -June 10, 2015, by Michael Wetter:
                                        -Reformulated assignment of s and assert -statement. The reformulation of the assignment of s was -done to allow a model check in non-pedantic mode. -This is for -issue 268. -
                                      • -
                                      • -May 22, 2015, by Michael Wetter:
                                        -Corrected wrong sensor signal if allowFlowReversal=false. -For this setting, the sensor output was for the wrong flow direction. -This is for -issue 249. -
                                      • -
                                      • -September 10, 2013, by Michael Wetter:
                                        -Corrected syntax errors in setting nominal value for output signal -and for state variable. -This eliminates a compilation error in OpenModelica. -
                                      • -
                                      • -August 30, 2013, by Michael Wetter:
                                        -Added default value C_start=0. -
                                      • -
                                      • -November 3, 2011, by Michael Wetter:
                                        -Moved der(C) := 0; from the initial algorithm section to -the initial equation section -as this assignment does not conform to the Modelica specification. -
                                      • -
                                      • -June 3, 2011 by Michael Wetter:
                                        -Revised implementation to add dynamics in such a way that -the time constant increases as the mass flow rate tends to zero. -This significantly improves the numerics. -
                                      • -
                                      • -February 22, by Michael Wetter:
                                        -Improved code that searches for index of trace substance in medium model. -
                                      • -
                                      • -September 29, 2009, by Michael Wetter:
                                        -First implementation. -
                                      • -
                                      -")); +

                                      + This model outputs the trace substance of the passing fluid. + The sensor is ideal, i.e., it does not influence the fluid. + If the parameter tau is non-zero, then its output + is computed using a first order differential equation. + Setting tau=0 is not recommend. See + + AixLib.Fluid.Sensors.UsersGuide for an explanation. +

                                      + ",revisions=" +
                                        +
                                      • + February 25, 2020, by Michael Wetter:
                                        + Changed icon to display its operating state.
                                        + This is for + #1294. +
                                      • +
                                      • + January 26, 2016, by Michael Wetter:
                                        + Avoided assignment of CMed(nominal=0) as this is + not allowed. +
                                      • +
                                      • + January 18, 2016 by Filip Jorissen:
                                        + Using parameter tauInv + since this now exists in + AixLib.Fluid.Sensors.BaseClasses.PartialDynamicFlowSensor. + This is for + #372. +
                                      • +
                                      • + June 10, 2015, by Michael Wetter:
                                        + Reformulated assignment of s and assert + statement. The reformulation of the assignment of s was + done to allow a model check in non-pedantic mode. + This is for + issue 268. +
                                      • +
                                      • + May 22, 2015, by Michael Wetter:
                                        + Corrected wrong sensor signal if allowFlowReversal=false. + For this setting, the sensor output was for the wrong flow direction. + This is for + issue 249. +
                                      • +
                                      • + September 10, 2013, by Michael Wetter:
                                        + Corrected syntax errors in setting nominal value for output signal + and for state variable. + This eliminates a compilation error in OpenModelica. +
                                      • +
                                      • + August 30, 2013, by Michael Wetter:
                                        + Added default value C_start=0. +
                                      • +
                                      • + November 3, 2011, by Michael Wetter:
                                        + Moved der(C) := 0; from the initial algorithm section to + the initial equation section + as this assignment does not conform to the Modelica specification. +
                                      • +
                                      • + June 3, 2011 by Michael Wetter:
                                        + Revised implementation to add dynamics in such a way that + the time constant increases as the mass flow rate tends to zero. + This significantly improves the numerics. +
                                      • +
                                      • + February 22, by Michael Wetter:
                                        + Improved code that searches for index of trace substance in medium model. +
                                      • +
                                      • + September 29, 2009, by Michael Wetter:
                                        + First implementation. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end TraceSubstancesTwoPort; diff --git a/AixLib/Fluid/Sensors/Velocity.mo b/AixLib/Fluid/Sensors/Velocity.mo index cf8d505160..4abedbeaa9 100644 --- a/AixLib/Fluid/Sensors/Velocity.mo +++ b/AixLib/Fluid/Sensors/Velocity.mo @@ -1,23 +1,23 @@ within AixLib.Fluid.Sensors; model Velocity "Ideal sensor for flow velocity" extends AixLib.Fluid.Sensors.BaseClasses.PartialDynamicFlowSensor; - extends Modelica.Icons.RotationalSensor; + extends Modelica.Icons.RoundSensor; parameter Medium.Density d_start=Medium.density(Medium.setState_pTX(p_start, T_start, X_start)) "Initial or guess value of density" annotation (Dialog(group="Initialization")); - parameter Modelica.SIunits.Temperature T_start=Medium.T_default + parameter Modelica.Units.SI.Temperature T_start=Medium.T_default "Temperature used to compute d_start" annotation (Dialog(group="Initialization")); - parameter Modelica.SIunits.Pressure p_start=Medium.p_default + parameter Modelica.Units.SI.Pressure p_start=Medium.p_default "Pressure used to compute d_start" annotation (Dialog(group="Initialization")); - parameter Modelica.SIunits.MassFraction X_start[Medium.nX]=Medium.X_default + parameter Modelica.Units.SI.MassFraction X_start[Medium.nX]=Medium.X_default "Mass fraction used to compute d_start" annotation (Dialog(group="Initialization")); - parameter Modelica.SIunits.Area A "Cross sectional area of flow channel"; - Modelica.SIunits.VolumeFlowRate V_flow + parameter Modelica.Units.SI.Area A "Cross sectional area of flow channel"; + Modelica.Units.SI.VolumeFlowRate V_flow "Volume flow rate from port_a to port_b"; Modelica.Blocks.Interfaces.RealOutput v(final quantity="Velocity", final unit="m/s") @@ -79,55 +79,56 @@ annotation (defaultComponentName="senVel", graphics={ Text( extent={{48,120},{8,78}}, - lineColor={0,0,0}, + textColor={0,0,0}, textString="v"), Line(points={{0,100},{0,70}}, color={0,0,127}), Line(points={{-100,0},{-70,0}}, color={0,128,255}), Line(points={{70,0},{100,0}}, color={0,128,255}), Text( extent={{180,90},{60,40}}, - lineColor={0,0,0}, + textColor={0,0,0}, textString=DynamicSelect("", String(v, format=".3g")))}), Documentation(info=" -

                                      -This model outputs the flow velocity flowing from -port_a to port_b. -

                                      -

                                      -The sensor is ideal, i.e., it does not influence the fluid. -If the parameter tau is non-zero, then the measured -density that is used to convert the mass flow rate into -volumetric flow rate is computed using a first order differential equation. -Setting tau=0 is not recommend. See - -AixLib.Fluid.Sensors.UsersGuide for an explanation. -

                                      -

                                      Typical use and important parameters

                                      -

                                      -In order to use the flow velocity sensor, the cross sectional area of the flow -channel crossSection must be specified in m2. For a -circular flow channel (e.g. a round pipe) of diameter diameter, the -cross sectional area can be specified as crossSection = diameter * -diameter / 4 * Modelica.Constants.pi. See - -AixLib.Fluid.Sensors.Examples.Velocity for an example implementation -with diameter = 0.1. -

                                      -", revisions=" -
                                        -
                                      • -February 25, 2020, by Michael Wetter:
                                        -Changed icon to display its operating state.
                                        -This is for -#1294. -
                                      • -
                                      • -May 20, 2016, by Marcus Fuchs:
                                        -First implementation. -Implementation is based on - -AixLib.Fluid.Sensors.VolumeFlowRate. -
                                      • -
                                      -")); +

                                      + This model outputs the flow velocity flowing from + port_a to port_b. +

                                      +

                                      + The sensor is ideal, i.e., it does not influence the fluid. + If the parameter tau is non-zero, then the measured + density that is used to convert the mass flow rate into + volumetric flow rate is computed using a first order differential equation. + Setting tau=0 is not recommend. See + + AixLib.Fluid.Sensors.UsersGuide for an explanation. +

                                      +

                                      Typical use and important parameters

                                      +

                                      + In order to use the flow velocity sensor, the cross sectional area of the flow + channel crossSection must be specified in m2. For a + circular flow channel (e.g. a round pipe) of diameter diameter, the + cross sectional area can be specified as crossSection = diameter * + diameter / 4 * Modelica.Constants.pi. See + + AixLib.Fluid.Sensors.Examples.Velocity for an example implementation + with diameter = 0.1. +

                                      + ",revisions=" +
                                        +
                                      • + February 25, 2020, by Michael Wetter:
                                        + Changed icon to display its operating state.
                                        + This is for + #1294. +
                                      • +
                                      • + May 20, 2016, by Marcus Fuchs:
                                        + First implementation. + Implementation is based on + + AixLib.Fluid.Sensors.VolumeFlowRate. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end Velocity; diff --git a/AixLib/Fluid/Sensors/VolumeFlowRate.mo b/AixLib/Fluid/Sensors/VolumeFlowRate.mo index 2e38474089..62693635b4 100644 --- a/AixLib/Fluid/Sensors/VolumeFlowRate.mo +++ b/AixLib/Fluid/Sensors/VolumeFlowRate.mo @@ -2,18 +2,18 @@ within AixLib.Fluid.Sensors; model VolumeFlowRate "Ideal sensor for volume flow rate" extends AixLib.Fluid.Sensors.BaseClasses.PartialDynamicFlowSensor( tau=0); - extends Modelica.Icons.RotationalSensor; + extends Modelica.Icons.RoundSensor; parameter Medium.Density d_start=Medium.density(Medium.setState_pTX(p_start, T_start, X_start)) "Initial or guess value of density" annotation (Dialog(group="Initialization")); - parameter Modelica.SIunits.Temperature T_start=Medium.T_default + parameter Modelica.Units.SI.Temperature T_start=Medium.T_default "Temperature used to compute d_start" annotation (Dialog(group="Initialization")); - parameter Modelica.SIunits.Pressure p_start=Medium.p_default + parameter Modelica.Units.SI.Pressure p_start=Medium.p_default "Pressure used to compute d_start" annotation (Dialog(group="Initialization")); - parameter Modelica.SIunits.MassFraction X_start[Medium.nX]=Medium.X_default + parameter Modelica.Units.SI.MassFraction X_start[Medium.nX]=Medium.X_default "Mass fraction used to compute d_start" annotation (Dialog(group="Initialization")); Modelica.Blocks.Interfaces.RealOutput V_flow(final quantity="VolumeFlowRate", @@ -74,66 +74,67 @@ annotation (defaultComponentName="senVolFlo", graphics={ Text( extent={{160,120},{0,90}}, - lineColor={0,0,0}, + textColor={0,0,0}, textString="V_flow"), Line(points={{0,100},{0,70}}, color={0,0,127}), Line(points={{-100,0},{-70,0}}, color={0,128,255}), Line(points={{70,0},{100,0}}, color={0,128,255}), Text( extent={{-20,120},{-140,70}}, - lineColor={0,0,0}, - textString=DynamicSelect("", String(V_flow, leftjustified=false, significantDigits=3)))}), + textColor={0,0,0}, + textString=DynamicSelect("", String(V_flow, leftJustified=false, significantDigits=3)))}), Documentation(info=" -

                                      -This model outputs the volume flow rate flowing from -port_a to port_b. -The sensor is ideal, i.e., it does not influence the fluid. -If the parameter tau is non-zero, then the measured -density that is used to convert the mass flow rate into -volumetric flow rate is computed using a first order differential equation. -Setting tau=0 is not recommend. See - -AixLib.Fluid.Sensors.UsersGuide for an explanation. -

                                      -", revisions=" -
                                        -
                                      • -October 19, 2020, by Antoine Gautier:
                                        -Changed default value for tau from 1 to 0.
                                        -This is for -#1406. -
                                      • -
                                      • -February 25, 2020, by Michael Wetter:
                                        -Changed icon to display its operating state.
                                        -This is for -#1294. -
                                      • -
                                      • -January 18, 2016 by Filip Jorissen:
                                        -Using parameter tauInv -since this now exists in -AixLib.Fluid.Sensors.BaseClasses.PartialDynamicFlowSensor. -This is for -#372. -
                                      • -
                                      • -August 31, 2013, by Michael Wetter:
                                        -Removed default value tau=0 as the base class -already sets tau=1. -This change was made so that all sensors use the same default value. -
                                      • -
                                      • -June 3, 2011 by Michael Wetter:
                                        -Revised implementation to add dynamics in such a way that -the time constant increases as the mass flow rate tends to zero. -This significantly improves the numerics. -
                                      • -
                                      • -September 29, 2009, by Michael Wetter:
                                        -First implementation. -Implementation is based on Modelica.Fluid. -
                                      • -
                                      -")); +

                                      + This model outputs the volume flow rate flowing from + port_a to port_b. + The sensor is ideal, i.e., it does not influence the fluid. + If the parameter tau is non-zero, then the measured + density that is used to convert the mass flow rate into + volumetric flow rate is computed using a first order differential equation. + Setting tau=0 is not recommend. See + + AixLib.Fluid.Sensors.UsersGuide for an explanation. +

                                      + ",revisions=" +
                                        +
                                      • + October 19, 2020, by Antoine Gautier:
                                        + Changed default value for tau from 1 to 0.
                                        + This is for + #1406. +
                                      • +
                                      • + February 25, 2020, by Michael Wetter:
                                        + Changed icon to display its operating state.
                                        + This is for + #1294. +
                                      • +
                                      • + January 18, 2016 by Filip Jorissen:
                                        + Using parameter tauInv + since this now exists in + AixLib.Fluid.Sensors.BaseClasses.PartialDynamicFlowSensor. + This is for + #372. +
                                      • +
                                      • + August 31, 2013, by Michael Wetter:
                                        + Removed default value tau=0 as the base class + already sets tau=1. + This change was made so that all sensors use the same default value. +
                                      • +
                                      • + June 3, 2011 by Michael Wetter:
                                        + Revised implementation to add dynamics in such a way that + the time constant increases as the mass flow rate tends to zero. + This significantly improves the numerics. +
                                      • +
                                      • + September 29, 2009, by Michael Wetter:
                                        + First implementation. + Implementation is based on Modelica.Fluid. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end VolumeFlowRate; diff --git a/AixLib/Fluid/Sensors/package.mo b/AixLib/Fluid/Sensors/package.mo index 9d2ccf1b6e..46115775d5 100644 --- a/AixLib/Fluid/Sensors/package.mo +++ b/AixLib/Fluid/Sensors/package.mo @@ -1,6 +1,7 @@ -within AixLib.Fluid; +within AixLib.Fluid; package Sensors "Package with sensor models" extends Modelica.Icons.SensorsPackage; + annotation (preferredView="info", Documentation(info="

                                      diff --git a/AixLib/Fluid/Solar/Thermal/BaseClasses/SolarThermalEfficiency.mo b/AixLib/Fluid/Solar/Thermal/BaseClasses/SolarThermalEfficiency.mo index 6aa6c53ca2..a0b4b501ea 100644 --- a/AixLib/Fluid/Solar/Thermal/BaseClasses/SolarThermalEfficiency.mo +++ b/AixLib/Fluid/Solar/Thermal/BaseClasses/SolarThermalEfficiency.mo @@ -28,9 +28,9 @@ model SolarThermalEfficiency "Useful heat flow from solar collector in W/m2" annotation (Placement(transformation(extent={{98,-10},{118,10}}))); protected - Modelica.SIunits.Efficiency eta(max=Collector.eta_zero) + Modelica.Units.SI.Efficiency eta(max=Collector.eta_zero) "Efficiency of solar thermal collector"; - Modelica.SIunits.TemperatureDifference dT + Modelica.Units.SI.TemperatureDifference dT "Temperature difference between collector and air in K"; equation dT = T_col - T_air; diff --git a/AixLib/Fluid/Solar/Thermal/SolarThermal.mo b/AixLib/Fluid/Solar/Thermal/SolarThermal.mo index 544d931b51..b7e970049b 100644 --- a/AixLib/Fluid/Solar/Thermal/SolarThermal.mo +++ b/AixLib/Fluid/Solar/Thermal/SolarThermal.mo @@ -9,10 +9,10 @@ model SolarThermal "Model of a solar thermal panel" T_start, Medium.reference_X)))^2); - parameter Modelica.SIunits.Area A=2 "Area of solar thermal collector" - annotation(Dialog(group = "Construction measures")); - parameter Modelica.SIunits.Volume volPip "Water volume of piping" - annotation(Dialog(group = "Construction measures")); + parameter Modelica.Units.SI.Area A=2 "Area of solar thermal collector" + annotation (Dialog(group="Construction measures")); + parameter Modelica.Units.SI.Volume volPip "Water volume of piping" + annotation (Dialog(group="Construction measures")); parameter Real pressureDropCoeff(unit="(Pa.s2)/m6") = 2500/(A*2.5e-5)^2 "Pressure drop coefficient, delta_p[Pa] = PD * Q_flow[m^3/s]^2"; parameter AixLib.DataBase.SolarThermal.SolarThermalBaseDataDefinition @@ -104,199 +104,210 @@ equation around 1.5 l/(min.m2). This is 3 l/min for collectors of size 0.93 m2 up to 2.79 m2.

                                      -
                                      Volume flow rate [m3⁄h] Volume flow rate [m3⁄s] Head [Pa]
                                      - - - - - - - - - - - - - - - - - - - - - - - - - -
                                      -

                                      - unit -

                                      -
                                      -

                                      - SunMaxx -

                                      -
                                      -

                                      - Furbo1996 -

                                      -
                                      -

                                      - l/(min.m2) -

                                      -
                                      -

                                      - 1.5 -

                                      -
                                      -

                                      - 0.3 -

                                      -
                                      -

                                      - m3/(h.m2) -

                                      -
                                      -

                                      - 0.091 -

                                      -
                                      -

                                      - 0.018 -

                                      -
                                      -

                                      - m3/(s.m2) -

                                      -
                                      -

                                      - 2.5e-5 -

                                      -
                                      -

                                      - 5.0e-6 -

                                      -
                                      -

                                      - gpm/m2 -

                                      -
                                      -

                                      - 0.40 -

                                      -
                                      -

                                      - 0.079 -

                                      -
                                      -

                                      -
                                      - Assuming a default size for a unit of 2 m2 we get pressure losses for - a module as in the following table (vfr=0.79 gpm): -

                                      - - - - - - - - - - - - - - - - -
                                      -

                                      - Collector -

                                      -
                                      -

                                      - pressure drop in psi -

                                      -
                                      -

                                      - pressure drop in Pa -

                                      -
                                      -

                                      - Titan Power Plus SU2 -

                                      -
                                      -

                                      - 0.28 -

                                      -
                                      -

                                      - 1900 -

                                      -
                                      -

                                      - SunMaxx-VHP 30 (40 % Glycol) -

                                      -
                                      -

                                      - 0.43 -

                                      -
                                      -

                                      - 3000 -

                                      -
                                      -

                                      -
                                      - The pressureloss factor should therefore be around 2500 Pa / - (2*2.5e-5 m3/s)^2 = 1e12. -

                                      -
                                        -
                                      • - Febraury 7, 2018  by Peter Matthes:
                                        - Rename \"gain\" block into \"convertRelHeatFlow2absHeatFlow\" to make - clearer what it does.
                                        - Remove redundant - connect(solarThermalEfficiency.Q_flow, convertRelHeatFlow2absHeatFlow.u)
                                        + + +
                                        + \"Volume flow rate suggestions according to Furbo1996 and SunMaxx\" + cellspacing=\"0\" cellpadding=\"2\" border=\"1\" width=\"50%\"> + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                        +

                                        + unit +

                                        +
                                        +

                                        + SunMaxx +

                                        +
                                        +

                                        + Furbo1996 +

                                        +
                                        +

                                        + l/(min.m2) +

                                        +
                                        +

                                        + 1.5 +

                                        +
                                        +

                                        + 0.3 +

                                        +
                                        +

                                        + m3/(h.m2) +

                                        +
                                        +

                                        + 0.091 +

                                        +
                                        +

                                        + 0.018 +

                                        +
                                        +

                                        + m3/(s.m2) +

                                        +
                                        +

                                        + 2.5e-5 +

                                        +
                                        +

                                        + 5.0e-6 +

                                        +
                                        +

                                        + gpm/m2 +

                                        +
                                        +

                                        + 0.40 +

                                        +
                                        +

                                        + 0.079 +

                                        +
                                        +

                                        +
                                        + Assuming a default size for a unit of 2 m2 we get pressure losses + for a module as in the following table (vfr=0.79 gpm): +

                                        + + +
                                        + \"Pressure drop of two flat collector modules\" cellspacing=\"0\" + cellpadding=\"2\" border=\"1\" width=\"50%\"> + + + + + + + + + + + + + + + + +
                                        +

                                        + Collector +

                                        +
                                        +

                                        + pressure drop in psi +

                                        +
                                        +

                                        + pressure drop in Pa +

                                        +
                                        +

                                        + Titan Power Plus SU2 +

                                        +
                                        +

                                        + 0.28 +

                                        +
                                        +

                                        + 1900 +

                                        +
                                        +

                                        + SunMaxx-VHP 30 (40 % Glycol) +

                                        +
                                        +

                                        + 0.43 +

                                        +
                                        +

                                        + 3000 +

                                        +
                                        +

                                        +
                                        + The pressureloss factor should therefore be around 2500 Pa / + (2*2.5e-5 m3/s)^2 = 1e12. +

                                        +
                                          +
                                        • + Febraury 7, 2018  by Peter Matthes:
                                          + Rename \"gain\" block into \"convertRelHeatFlow2absHeatFlow\" + to make clearer what it does.
                                          + Remove redundant + connect(solarThermalEfficiency.Q_flow, convertRelHeatFlow2absHeatFlow.u)
                                          - Change default pressure drop coefficient from 1e6 to 2500 Pa / - (2*2.5e-5 m3/s)^2 = 1e12 Pa.s2/m6.
                                          - Change default collector area to 2 m2.
                                          - Extend documentation with some default parameters from - references.
                                          - Grid-align the RealInputs. -
                                        • -
                                        • - Febraury 1, 2018  by Philipp Mehrfeld:
                                          - Delete max block as it is now implemented in the efficiency model -
                                        • -
                                        • - October 25, 2017 by Philipp Mehrfeld:
                                          - Extend now from - AixLib.Fluid.BoilerCHP.BaseClasses.PartialHeatGenerator.
                                          - Use mean temperature.
                                          - Limiter moved in equation section of efficiency model. -
                                        • -
                                        • - December 15, 2016 by Moritz Lauster:
                                          - Moved -
                                        • -
                                        • - November 2014  by Marcus Fuchs:
                                          - Changed model to use Annex 60 base class -
                                        • -
                                        • - November 19, 2013  by Marcus Fuchs:
                                          - Implemented -
                                        • -
                                        + Change default pressure drop coefficient from 1e6 to 2500 + Pa / (2*2.5e-5 m3/s)^2 = 1e12 Pa.s2/m6.
                                        + Change default collector area to 2 m2.
                                        + Extend documentation with some default parameters from + references.
                                        + Grid-align the RealInputs. + +
                                      • + Febraury 1, 2018  by Philipp Mehrfeld:
                                        + Delete max block as it is now implemented in the efficiency + model +
                                      • +
                                      • + October 25, 2017 by Philipp Mehrfeld:
                                        + Extend now from + AixLib.Fluid.BoilerCHP.BaseClasses.PartialHeatGenerator.
                                        + + Use mean temperature.
                                        + Limiter moved in equation section of efficiency model. +
                                      • +
                                      • + December 15, 2016 by Moritz Lauster:
                                        + Moved +
                                      • +
                                      • + November 2014  by Marcus Fuchs:
                                        + Changed model to use Annex 60 base class +
                                      • +
                                      • + November 19, 2013  by Marcus Fuchs:
                                        + Implemented +
                                      • + +
                                        +
                                        "), Icon(coordinateSystem(preserveAspectRatio = false, extent = {{-100, -100}, {100, 100}}), graphics={ Rectangle(extent={{ -84,80},{84,-80}}, lineColor = {255, 128, 0}, fillPattern = FillPattern.Solid, fillColor = {255, 128, 0}), Rectangle(extent={{ diff --git a/AixLib/Fluid/Sources/BaseClasses/Outside.mo b/AixLib/Fluid/Sources/BaseClasses/Outside.mo index 6429145044..ec4823fab0 100644 --- a/AixLib/Fluid/Sources/BaseClasses/Outside.mo +++ b/AixLib/Fluid/Sources/BaseClasses/Outside.mo @@ -22,8 +22,8 @@ partial model Outside protected final parameter Boolean singleSubstance = (Medium.nX == 1) "True if single substance medium"; - AixLib.Utilities.Psychrometrics.X_pTphi x_pTphi if - not singleSubstance "Block to compute water vapor concentration"; + AixLib.Utilities.Psychrometrics.X_pTphi x_pTphi + if not singleSubstance "Block to compute water vapor concentration"; Modelica.Blocks.Interfaces.RealInput T_in_internal(final unit="K", displayUnit="degC") @@ -84,7 +84,7 @@ equation Text( extent={{-150,110},{150,150}}, textString="%name", - lineColor={0,0,255}), + textColor={0,0,255}), Line( visible=use_C_in, points={{-100,-80},{-60,-80}}, @@ -92,7 +92,7 @@ equation Text( visible=use_C_in, extent={{-164,-90},{-62,-130}}, - lineColor={0,0,0}, + textColor={0,0,0}, fillColor={255,255,255}, fillPattern=FillPattern.Solid, textString="C"), @@ -105,79 +105,80 @@ equation min(1, max(0, (weaBus.TDryBul-273.15)/50))*{255,0,0})), Text( extent={{62,28},{-58,-22}}, - lineColor={255,255,255}, + textColor={255,255,255}, textString=DynamicSelect("", String(weaBus.TDryBul-273.15, format=".1f")))}), Documentation(info=" -

                                        -This is the base class for models that describes boundary conditions for -pressure, enthalpy, and species concentration that can be obtained -from weather data, and that may be modified based on the wind pressure. -

                                        -

                                        If the parameter use_C_in is false (default option), -the C parameter -is used as the trace substance for flow that leaves the component, and the -C_in input connector is disabled; if use_C_in is true, -then the C parameter is ignored, and the value provided by the input connector is used instead.

                                        -

                                        -Note that boundary temperature, -mass fractions and trace substances have only an effect if the mass flow -is from the boundary into the port. If mass is flowing from -the port into the boundary, the boundary definitions, -with exception of boundary pressure, do not have an effect. -

                                        -", +

                                        + This is the base class for models that describes boundary conditions for + pressure, enthalpy, and species concentration that can be obtained + from weather data, and that may be modified based on the wind pressure. +

                                        +

                                        If the parameter use_C_in is false (default option), + the C parameter + is used as the trace substance for flow that leaves the component, and the + C_in input connector is disabled; if use_C_in is true, + then the C parameter is ignored, and the value provided by the input connector is used instead.

                                        +

                                        + Note that boundary temperature, + mass fractions and trace substances have only an effect if the mass flow + is from the boundary into the port. If mass is flowing from + the port into the boundary, the boundary definitions, + with exception of boundary pressure, do not have an effect. +

                                        + ", revisions=" -
                                          -
                                        • -February 25, 2020, by Michael Wetter:
                                          -Changed icon to display its operating state.
                                          -This is for -#1294. -
                                        • -
                                        • -November 14, 2019, by Michael Wetter:
                                          -Removed duplicate connector.
                                          -This is for - #1248. -
                                        • -
                                        • -January 14, 2019 by Jianjun Hu:
                                          -Changed to extend -AixLib.Fluid.Sources.BaseClasses.PartialSource. This is for - #1050. -
                                        • -
                                        • -May 30, 2017 by Jianjun Hu:
                                          -Corrected X_in_internal = zeros() to be X_in_internal = ones(). -This is for - #787. -
                                        • -
                                        • -April, 25, 2016 by Marcus Fuchs:
                                          -Introduced missing each keyword. This is for - #454, -to prevent a warning in OpenModelica. -
                                        • -
                                        • -January 26, 2016, by Michael Wetter:
                                          -Added unit and quantity attributes. -
                                        • -
                                        • -May 30, 2014, by Michael Wetter:
                                          -Removed undesirable annotation Evaluate=true. -
                                        • -
                                        • -October 26, 2011 by Michael Wetter:
                                          -Introduced new base class to allow implementation of wind pressure for natural ventilation. -
                                        • -
                                        • -April 27, 2011 by Michael Wetter:
                                          -Revised implementation to allow medium model that do not have water vapor. -
                                        • -
                                        • -Feb. 9, 2011 by Michael Wetter:
                                          -First implementation. -
                                        • -
                                        -")); +
                                          +
                                        • + February 25, 2020, by Michael Wetter:
                                          + Changed icon to display its operating state.
                                          + This is for + #1294. +
                                        • +
                                        • + November 14, 2019, by Michael Wetter:
                                          + Removed duplicate connector.
                                          + This is for + #1248. +
                                        • +
                                        • + January 14, 2019 by Jianjun Hu:
                                          + Changed to extend + AixLib.Fluid.Sources.BaseClasses.PartialSource. This is for + #1050. +
                                        • +
                                        • + May 30, 2017 by Jianjun Hu:
                                          + Corrected X_in_internal = zeros() to be X_in_internal = ones(). + This is for + #787. +
                                        • +
                                        • + April, 25, 2016 by Marcus Fuchs:
                                          + Introduced missing each keyword. This is for + #454, + to prevent a warning in OpenModelica. +
                                        • +
                                        • + January 26, 2016, by Michael Wetter:
                                          + Added unit and quantity attributes. +
                                        • +
                                        • + May 30, 2014, by Michael Wetter:
                                          + Removed undesirable annotation Evaluate=true. +
                                        • +
                                        • + October 26, 2011 by Michael Wetter:
                                          + Introduced new base class to allow implementation of wind pressure for natural ventilation. +
                                        • +
                                        • + April 27, 2011 by Michael Wetter:
                                          + Revised implementation to allow medium model that do not have water vapor. +
                                        • +
                                        • + Feb. 9, 2011 by Michael Wetter:
                                          + First implementation. +
                                        • +
                                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end Outside; diff --git a/AixLib/Fluid/Sources/BaseClasses/PartialPropertySource.mo b/AixLib/Fluid/Sources/BaseClasses/PartialPropertySource.mo index efadba985b..32efb66122 100644 --- a/AixLib/Fluid/Sources/BaseClasses/PartialPropertySource.mo +++ b/AixLib/Fluid/Sources/BaseClasses/PartialPropertySource.mo @@ -80,14 +80,14 @@ equation Text( visible=use_Xi_in, extent={{-48,98},{54,58}}, - lineColor={0,0,0}, + textColor={0,0,0}, fillColor={255,255,255}, fillPattern=FillPattern.Solid, textString="Xi"), Text( visible=use_C_in, extent={{-10,98},{92,58}}, - lineColor={0,0,0}, + textColor={0,0,0}, fillColor={255,255,255}, fillPattern=FillPattern.Solid, textString="C"), @@ -102,31 +102,32 @@ equation fillPattern=FillPattern.HorizontalCylinder, fillColor={0,127,255})}), Documentation(info=" -

                                        -Model that changes the properties, -but not the mass flow rate, -of the fluid that passes through it. -

                                        -

                                        Typical use and important parameters

                                        -

                                        -If allowFlowReversal=true, then the properties are changed for both flow directions, -i.e., from port_a to port_b and -from port_b to port_a. -

                                        -

                                        Dynamics

                                        -

                                        -This model has no dynamics. -

                                        -", +

                                        + Model that changes the properties, + but not the mass flow rate, + of the fluid that passes through it. +

                                        +

                                        Typical use and important parameters

                                        +

                                        + If allowFlowReversal=true, then the properties are changed for both flow directions, + i.e., from port_a to port_b and + from port_b to port_a. +

                                        +

                                        Dynamics

                                        +

                                        + This model has no dynamics. +

                                        + ", revisions=" -
                                          -
                                        • -April 30, 2018, by Filip Jorissen:
                                          -First implementation. -See #881. -
                                        • -
                                        -"), +
                                          +
                                        • + April 30, 2018, by Filip Jorissen:
                                          + First implementation. + See #881. +
                                        • +
                                        + "), Diagram(coordinateSystem(preserveAspectRatio=true, extent={{-100,-100},{ - 100,100}}))); + 100,100}})), + __Dymola_LockedEditing="Model from IBPSA"); end PartialPropertySource; diff --git a/AixLib/Fluid/Sources/BaseClasses/PartialSource.mo b/AixLib/Fluid/Sources/BaseClasses/PartialSource.mo index c125ca862b..1ff0dd59ff 100644 --- a/AixLib/Fluid/Sources/BaseClasses/PartialSource.mo +++ b/AixLib/Fluid/Sources/BaseClasses/PartialSource.mo @@ -48,11 +48,11 @@ initial equation // Only one connection allowed to a port to avoid unwanted ideal mixing for i in 1:nPorts loop assert(cardinality(ports[i]) <= 1," -Each ports[i] of boundary shall at most be connected to one component. -If two or more connections are present, ideal mixing takes -place in these connections, which is usually not the intention -of the modeller. Increase nPorts to add an additional port. -"); + Each ports[i] of boundary shall at most be connected to one component. + If two or more connections are present, ideal mixing takes + place in these connections, which is usually not the intention + of the modeller. Increase nPorts to add an additional port. + "); end for; equation @@ -60,44 +60,45 @@ equation annotation (defaultComponentName="bou", Documentation(info=" -

                                        -Partial model for a fluid source that either prescribes -pressure or mass flow rate. -Models that extend this partial model need to prescribe the outflowing -specific enthalpy, composition and trace substances. -This partial model only declares the ports -and ensures that the pressures at all ports are equal. -

                                        -

                                        Implementation

                                        -

                                        -If the parameter verifyInputs is set to true, -then a protected instance of medium base properties is enabled. -This instance verifies that the -medium temperature is within the bounds T_min and T_max, -where T_min and T_max are constants of the Medium. -If the temperature is outside these bounds, the simulation will stop with an error. -

                                        -", revisions=" -
                                          -
                                        • -April 1, 2021, by Michael Wetter:
                                          -Corrected misplaced each and added missing instance comment.
                                          -See AixLib, #1462. -
                                        • -
                                        • -January 18, 2019, by Jianjun Hu:
                                          -Limited the media choice. -See AixLib, #1050. -
                                        • -
                                        • -May 30, 2018, by Michael Wetter:
                                          -Improved documentation. -
                                        • -
                                        • -February 2nd, 2018 by Filip Jorissen
                                          -Initial version for refactoring inputs of sources. -See AixLib, #882. -
                                        • -
                                        -")); +

                                        + Partial model for a fluid source that either prescribes + pressure or mass flow rate. + Models that extend this partial model need to prescribe the outflowing + specific enthalpy, composition and trace substances. + This partial model only declares the ports + and ensures that the pressures at all ports are equal. +

                                        +

                                        Implementation

                                        +

                                        + If the parameter verifyInputs is set to true, + then a protected instance of medium base properties is enabled. + This instance verifies that the + medium temperature is within the bounds T_min and T_max, + where T_min and T_max are constants of the Medium. + If the temperature is outside these bounds, the simulation will stop with an error. +

                                        + ",revisions=" +
                                          +
                                        • + April 1, 2021, by Michael Wetter:
                                          + Corrected misplaced each and added missing instance comment.
                                          + See IBPSA, #1462. +
                                        • +
                                        • + January 18, 2019, by Jianjun Hu:
                                          + Limited the media choice. + See IBPSA, #1050. +
                                        • +
                                        • + May 30, 2018, by Michael Wetter:
                                          + Improved documentation. +
                                        • +
                                        • + February 2nd, 2018 by Filip Jorissen
                                          + Initial version for refactoring inputs of sources. + See IBPSA, #882. +
                                        • +
                                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end PartialSource; diff --git a/AixLib/Fluid/Sources/BaseClasses/PartialSource_Xi_C.mo b/AixLib/Fluid/Sources/BaseClasses/PartialSource_Xi_C.mo index 2a5485503c..53f424f09f 100644 --- a/AixLib/Fluid/Sources/BaseClasses/PartialSource_Xi_C.mo +++ b/AixLib/Fluid/Sources/BaseClasses/PartialSource_Xi_C.mo @@ -92,54 +92,55 @@ equation Text( visible=use_X_in, extent={{-164,4},{-62,-36}}, - lineColor={0,0,0}, + textColor={0,0,0}, fillColor={255,255,255}, fillPattern=FillPattern.Solid, textString="X"), Text( visible=use_Xi_in, extent={{-164,4},{-62,-36}}, - lineColor={0,0,0}, + textColor={0,0,0}, fillColor={255,255,255}, fillPattern=FillPattern.Solid, textString="Xi"), Text( visible=use_C_in, extent={{-164,-90},{-62,-130}}, - lineColor={0,0,0}, + textColor={0,0,0}, fillColor={255,255,255}, fillPattern=FillPattern.Solid, textString="C")}), Documentation(info=" -

                                        -Partial model that defines outflowing properties -ports.Xi_outflow and ports.C_outflow -using an optional input for both. -Otherwise the parameter value is used. -

                                        -", revisions=" - -")); +

                                        + Partial model that defines outflowing properties + ports.Xi_outflow and ports.C_outflow + using an optional input for both. + Otherwise the parameter value is used. +

                                        + ",revisions=" + + "), + __Dymola_LockedEditing="Model from IBPSA"); end PartialSource_Xi_C; diff --git a/AixLib/Fluid/Sources/Boundary_pT.mo b/AixLib/Fluid/Sources/Boundary_pT.mo index b512005e4a..21a5d4c5c0 100644 --- a/AixLib/Fluid/Sources/Boundary_pT.mo +++ b/AixLib/Fluid/Sources/Boundary_pT.mo @@ -82,120 +82,120 @@ equation connect(medium.h, h_internal); annotation (defaultComponentName="bou", Documentation(info=" -

                                        -Defines prescribed values for boundary conditions: -

                                        -
                                          -
                                        • Prescribed boundary pressure.
                                        • -
                                        • Prescribed boundary temperature.
                                        • -
                                        • Boundary composition (only for multi-substance or trace-substance flow).
                                        • -
                                        -

                                        Typical use and important parameters

                                        -

                                        -If use_p_in is false (default option), -the p parameter is used as boundary pressure, -and the p_in input connector is disabled; -if use_p_in is true, then the p -parameter is ignored, and the value provided by the -input connector is used instead. -

                                        -

                                        -The same applies to the temperature T, composition Xi or X and trace substances C. -

                                        -

                                        Options

                                        -

                                        -Instead of using Xi_in (the independent composition fractions), -the advanced tab provides an option for setting all -composition fractions using X_in. -use_X_in and use_Xi_in cannot be used -at the same time. -

                                        -

                                        -Parameter verifyInputs can be set to true -to enable a check that verifies the validity of the used temperatures -and pressures. -This removes the corresponding overhead from the model, which is -a substantial part of the overhead of this model. -See #882 -for more information. -

                                        -

                                        -Note, that boundary temperature, -mass fractions and trace substances have only an effect if the mass flow -is from the boundary into the port. If mass is flowing from -the port into the boundary, the boundary definitions, -with exception of boundary pressure, do not have an effect. -

                                        -", +

                                        + Defines prescribed values for boundary conditions: +

                                        +
                                          +
                                        • Prescribed boundary pressure.
                                        • +
                                        • Prescribed boundary temperature.
                                        • +
                                        • Boundary composition (only for multi-substance or trace-substance flow).
                                        • +
                                        +

                                        Typical use and important parameters

                                        +

                                        + If use_p_in is false (default option), + the p parameter is used as boundary pressure, + and the p_in input connector is disabled; + if use_p_in is true, then the p + parameter is ignored, and the value provided by the + input connector is used instead. +

                                        +

                                        + The same applies to the temperature T, composition Xi or X and trace substances C. +

                                        +

                                        Options

                                        +

                                        + Instead of using Xi_in (the independent composition fractions), + the advanced tab provides an option for setting all + composition fractions using X_in. + use_X_in and use_Xi_in cannot be used + at the same time. +

                                        +

                                        + Parameter verifyInputs can be set to true + to enable a check that verifies the validity of the used temperatures + and pressures. + This removes the corresponding overhead from the model, which is + a substantial part of the overhead of this model. + See #882 + for more information. +

                                        +

                                        + Note, that boundary temperature, + mass fractions and trace substances have only an effect if the mass flow + is from the boundary into the port. If mass is flowing from + the port into the boundary, the boundary definitions, + with exception of boundary pressure, do not have an effect. +

                                        + ", revisions=" -
                                          -
                                        • -February 25, 2020, by Michael Wetter:
                                          -Changed icon to display its operating state.
                                          -This is for -#1294. -
                                        • -
                                        • -Juni 7, 2019, by Michael Wetter:
                                          -Added constant boolean expressions to avoid a potential string comparison in an equation section.
                                          -See #1148. -
                                        • -
                                        • -Juni 4, 2019, by Filip Jorissen:
                                          -Added check for the value of p and p_in.
                                          -See #1148. -
                                        • -
                                        • -January 25, 2019, by Michael Wetter:
                                          -Refactored use of base classes.
                                          -See #1072. -
                                        • -
                                        • -February 2nd, 2018 by Filip Jorissen
                                          -Made medium conditional and refactored inputs. -See #882. -
                                        • -
                                        • -April 18, 2017, by Filip Jorissen:
                                          -Changed checkBoundary implementation -such that it is run as an initial equation -when it depends on parameters only. -See #728. -
                                        • -
                                        • -January 26, 2016, by Michael Wetter:
                                          -Added unit and quantity attributes. -
                                        • -
                                        • -May 29, 2014, by Michael Wetter:
                                          -Removed undesirable annotation Evaluate=true. -
                                        • -
                                        • -September 29, 2009, by Michael Wetter:
                                          -First implementation. -Implementation is based on Modelica.Fluid. -
                                        • -
                                        -"), +
                                          +
                                        • + February 25, 2020, by Michael Wetter:
                                          + Changed icon to display its operating state.
                                          + This is for + #1294. +
                                        • +
                                        • + Juni 7, 2019, by Michael Wetter:
                                          + Added constant boolean expressions to avoid a potential string comparison in an equation section.
                                          + See #1148. +
                                        • +
                                        • + Juni 4, 2019, by Filip Jorissen:
                                          + Added check for the value of p and p_in.
                                          + See #1148. +
                                        • +
                                        • + January 25, 2019, by Michael Wetter:
                                          + Refactored use of base classes.
                                          + See #1072. +
                                        • +
                                        • + February 2nd, 2018 by Filip Jorissen
                                          + Made medium conditional and refactored inputs. + See #882. +
                                        • +
                                        • + April 18, 2017, by Filip Jorissen:
                                          + Changed checkBoundary implementation + such that it is run as an initial equation + when it depends on parameters only. + See #728. +
                                        • +
                                        • + January 26, 2016, by Michael Wetter:
                                          + Added unit and quantity attributes. +
                                        • +
                                        • + May 29, 2014, by Michael Wetter:
                                          + Removed undesirable annotation Evaluate=true. +
                                        • +
                                        • + September 29, 2009, by Michael Wetter:
                                          + First implementation. + Implementation is based on Modelica.Fluid. +
                                        • +
                                        + "), Icon(graphics={ Text( visible=use_p_in, extent={{-152,134},{-68,94}}, - lineColor={0,0,0}, + textColor={0,0,0}, fillColor={255,255,255}, fillPattern=FillPattern.Solid, textString="p"), Text( visible=use_T_in, extent={{-162,34},{-60,-6}}, - lineColor={0,0,0}, + textColor={0,0,0}, fillColor={255,255,255}, fillPattern=FillPattern.Solid, textString="T"), Text( extent={{-150,110},{150,150}}, textString="%name", - lineColor={0,0,255}), + textColor={0,0,255}), Ellipse( extent={{-100,100},{100,-100}}, lineColor={0,0,0}, @@ -205,6 +205,7 @@ Implementation is based on Modelica.Fluid. min(1, max(0, ((if use_T_in then T_in else T)-273.15)/50))*{255,0,0})), Text( extent={{62,28},{-58,-22}}, - lineColor={255,255,255}, - textString=DynamicSelect("", String((if use_T_in then T_in else T)-273.15, format=".1f")))})); + textColor={255,255,255}, + textString=DynamicSelect("", String((if use_T_in then T_in else T)-273.15, format=".1f")))}), + __Dymola_LockedEditing="Model from IBPSA"); end Boundary_pT; diff --git a/AixLib/Fluid/Sources/Boundary_ph.mo b/AixLib/Fluid/Sources/Boundary_ph.mo index efca599fee..ab5a0b06ef 100644 --- a/AixLib/Fluid/Sources/Boundary_ph.mo +++ b/AixLib/Fluid/Sources/Boundary_ph.mo @@ -77,107 +77,107 @@ equation annotation (defaultComponentName="bou", Documentation(info=" -

                                        -Defines prescribed values for boundary conditions: -

                                        -
                                          -
                                        • Prescribed boundary pressure.
                                        • -
                                        • Prescribed boundary specific enthalpy.
                                        • -
                                        • Boundary composition (only for multi-substance or trace-substance flow).
                                        • -
                                        -

                                        Typical use and important parameters

                                        -

                                        -If use_p_in is false (default option), -the p parameter is used as boundary pressure, -and the p_in input connector is disabled; -if use_p_in is true, then the p -parameter is ignored, and the value provided by the -input connector is used instead. -

                                        -

                                        -The same applies to the specific enthalpy h, composition Xi or X and trace substances C. -

                                        -

                                        Options

                                        -

                                        -Instead of using Xi_in (the independent composition fractions), -the advanced tab provides an option for setting all -composition fractions using X_in. -use_X_in and use_Xi_in cannot be used -at the same time. -

                                        -

                                        -Parameter verifyInputs can be set to true -to enable a check that verifies the validity of the used specific enthalpy -and pressures. -This removes the corresponding overhead from the model, which is -a substantial part of the overhead of this model. -See #882 -for more information. -

                                        -

                                        -Note, that boundary specific enthalpy, -mass fractions and trace substances have only an effect if the mass flow -is from the boundary into the port. If mass is flowing from -the port into the boundary, the boundary definitions, -with exception of boundary pressure, do not have an effect. -

                                        -", +

                                        + Defines prescribed values for boundary conditions: +

                                        +
                                          +
                                        • Prescribed boundary pressure.
                                        • +
                                        • Prescribed boundary specific enthalpy.
                                        • +
                                        • Boundary composition (only for multi-substance or trace-substance flow).
                                        • +
                                        +

                                        Typical use and important parameters

                                        +

                                        + If use_p_in is false (default option), + the p parameter is used as boundary pressure, + and the p_in input connector is disabled; + if use_p_in is true, then the p + parameter is ignored, and the value provided by the + input connector is used instead. +

                                        +

                                        + The same applies to the specific enthalpy h, composition Xi or X and trace substances C. +

                                        +

                                        Options

                                        +

                                        + Instead of using Xi_in (the independent composition fractions), + the advanced tab provides an option for setting all + composition fractions using X_in. + use_X_in and use_Xi_in cannot be used + at the same time. +

                                        +

                                        + Parameter verifyInputs can be set to true + to enable a check that verifies the validity of the used specific enthalpy + and pressures. + This removes the corresponding overhead from the model, which is + a substantial part of the overhead of this model. + See #882 + for more information. +

                                        +

                                        + Note, that boundary specific enthalpy, + mass fractions and trace substances have only an effect if the mass flow + is from the boundary into the port. If mass is flowing from + the port into the boundary, the boundary definitions, + with exception of boundary pressure, do not have an effect. +

                                        + ", revisions=" -
                                          -
                                        • -Juni 7, 2019, by Michael Wetter:
                                          -Added constant boolean expressions to avoid a potential string comparison in an equation section.
                                          -See #1148. -
                                        • -
                                        • -Juni 4, 2019, by Filip Jorissen:
                                          -Added check for the value of p and p_in.
                                          -See #1148. -
                                        • -
                                        • -January 25, 2019, by Michael Wetter:
                                          -Refactored use of base classes.
                                          -See #1072. -
                                        • -
                                        • -February 2nd, 2018 by Filip Jorissen
                                          -Made medium conditional and refactored inputs. -See #882. -
                                        • -
                                        • -April 18, 2017, by Filip Jorissen:
                                          -Changed checkBoundary implementation -such that it is run as an initial equation -when it depends on parameters only. -See #728. -
                                        • -
                                        • -January 26, 2016, by Michael Wetter:
                                          -Added unit and quantity attributes. -
                                        • -
                                        • -May 29, 2014, by Michael Wetter:
                                          -Removed undesirable annotation Evaluate=true. -
                                        • -
                                        • -September 29, 2009, by Michael Wetter:
                                          -First implementation. -Implementation is based on Modelica.Fluid. -
                                        • -
                                        -"), +
                                          +
                                        • + Juni 7, 2019, by Michael Wetter:
                                          + Added constant boolean expressions to avoid a potential string comparison in an equation section.
                                          + See #1148. +
                                        • +
                                        • + Juni 4, 2019, by Filip Jorissen:
                                          + Added check for the value of p and p_in.
                                          + See #1148. +
                                        • +
                                        • + January 25, 2019, by Michael Wetter:
                                          + Refactored use of base classes.
                                          + See #1072. +
                                        • +
                                        • + February 2nd, 2018 by Filip Jorissen
                                          + Made medium conditional and refactored inputs. + See #882. +
                                        • +
                                        • + April 18, 2017, by Filip Jorissen:
                                          + Changed checkBoundary implementation + such that it is run as an initial equation + when it depends on parameters only. + See #728. +
                                        • +
                                        • + January 26, 2016, by Michael Wetter:
                                          + Added unit and quantity attributes. +
                                        • +
                                        • + May 29, 2014, by Michael Wetter:
                                          + Removed undesirable annotation Evaluate=true. +
                                        • +
                                        • + September 29, 2009, by Michael Wetter:
                                          + First implementation. + Implementation is based on Modelica.Fluid. +
                                        • +
                                        + "), Icon(graphics={ Text( visible=use_h_in, extent={{-162,34},{-60,-6}}, - lineColor={0,0,0}, + textColor={0,0,0}, fillColor={255,255,255}, fillPattern=FillPattern.Solid, textString="h"), Text( visible=use_p_in, extent={{-152,134},{-68,94}}, - lineColor={0,0,0}, + textColor={0,0,0}, fillColor={255,255,255}, fillPattern=FillPattern.Solid, textString="p"), @@ -189,5 +189,6 @@ Implementation is based on Modelica.Fluid. Text( extent={{-150,110},{150,150}}, textString="%name", - lineColor={0,0,255})})); + textColor={0,0,255})}), + __Dymola_LockedEditing="Model from IBPSA"); end Boundary_ph; diff --git a/AixLib/Fluid/Sources/Examples/MassFlowSource_WeatherData.mo b/AixLib/Fluid/Sources/Examples/MassFlowSource_WeatherData.mo index af657d4f84..240755ac81 100644 --- a/AixLib/Fluid/Sources/Examples/MassFlowSource_WeatherData.mo +++ b/AixLib/Fluid/Sources/Examples/MassFlowSource_WeatherData.mo @@ -11,7 +11,7 @@ model MassFlowSource_WeatherData redeclare package Medium = Medium, m_flow=-1, nPorts=1) "Mass flow source model receiving h and X from weather data through - weather bus" + weather bus" annotation (Placement(transformation(extent={{96,-10},{76,10}}))); AixLib.Fluid.Sources.Outside bou(redeclare package Medium = Medium, nPorts=1) "Model with outside conditions" @@ -50,19 +50,20 @@ experiment(Tolerance=1e-6, StopTime=3.1536e+07), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Sources/Examples/MassFlowSource_WeatherData.mos" "Simulate and plot"), Documentation(info=" -

                                        -This model demonstrates how to connect fluid flow components to a -boundary condition that has environmental conditions as -obtained from a weather file. -The model draws a constant mass flow rate of outside air through -its components. -

                                        -", revisions=" -
                                          -
                                        • -May 21, 2017 by Jianjun Hu:
                                          -First implementation. -
                                        • -
                                        -")); +

                                        + This model demonstrates how to connect fluid flow components to a + boundary condition that has environmental conditions as + obtained from a weather file. + The model draws a constant mass flow rate of outside air through + its components. +

                                        + ",revisions=" +
                                          +
                                        • + May 21, 2017 by Jianjun Hu:
                                          + First implementation. +
                                        • +
                                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end MassFlowSource_WeatherData; diff --git a/AixLib/Fluid/Sources/Examples/Outside.mo b/AixLib/Fluid/Sources/Examples/Outside.mo index 78c8774473..79b0851dbb 100644 --- a/AixLib/Fluid/Sources/Examples/Outside.mo +++ b/AixLib/Fluid/Sources/Examples/Outside.mo @@ -54,19 +54,20 @@ experiment(Tolerance=1e-6, StopTime=3.1536e+07), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Sources/Examples/Outside.mos" "Simulate and plot"), Documentation(info=" -

                                        -This model demonstrates how to connect fluid flow component to a -boundary condition that has environmental conditions as -obtained from a weather file. -The model draws a constant mass flow rate of outside air through -its components. -

                                        -", revisions=" -
                                          -
                                        • -Feb. 9, 2011 by Michael Wetter:
                                          -First implementation. -
                                        • -
                                        -")); +

                                        + This model demonstrates how to connect fluid flow component to a + boundary condition that has environmental conditions as + obtained from a weather file. + The model draws a constant mass flow rate of outside air through + its components. +

                                        + ",revisions=" +
                                          +
                                        • + Feb. 9, 2011 by Michael Wetter:
                                          + First implementation. +
                                        • +
                                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end Outside; diff --git a/AixLib/Fluid/Sources/Examples/Outside_CpData.mo b/AixLib/Fluid/Sources/Examples/Outside_CpData.mo new file mode 100644 index 0000000000..0124a35c1d --- /dev/null +++ b/AixLib/Fluid/Sources/Examples/Outside_CpData.mo @@ -0,0 +1,91 @@ +within AixLib.Fluid.Sources.Examples; +model Outside_CpData + "Test model for source and sink with outside weather data and wind pressure using user-defined Cp values" + extends Modelica.Icons.Example; + package Medium = AixLib.Media.Air "Medium model for air"; + AixLib.BoundaryConditions.WeatherData.ReaderTMY3 weaDat( + filNam=Modelica.Utilities.Files.loadResource("modelica://AixLib/Resources/weatherdata/USA_CA_San.Francisco.Intl.AP.724940_TMY3.mos")) + annotation (Placement(transformation(extent={{-80,0},{-60,20}}))); + + parameter Modelica.Units.SI.Angle incAngSurNor[:]= + {0, 45, 90, 135, 180, 225, 270, 315}*2*Modelica.Constants.pi/360 + "Wind incidence angles"; + parameter Real Cp[:] = {0.4, 0.1, -0.3, -0.35, -0.2, -0.35, -0.3, 0.1} + "Cp values"; + AixLib.Fluid.Sources.Outside_CpData west( + redeclare package Medium = Medium, + incAngSurNor=incAngSurNor, + Cp=Cp, + azi=AixLib.Types.Azimuth.W) "Model with outside conditions" + annotation (Placement(transformation(extent={{-42,0},{-22,20}}))); + AixLib.Fluid.Sources.Outside_CpData north( + redeclare package Medium = Medium, + incAngSurNor=incAngSurNor, + Cp=Cp, + azi=AixLib.Types.Azimuth.N) "Model with outside conditions" + annotation (Placement(transformation(extent={{-4,40},{16,60}}))); + AixLib.Fluid.Sources.Outside_CpData south( + redeclare package Medium = Medium, + incAngSurNor=incAngSurNor, + Cp=Cp, + azi=AixLib.Types.Azimuth.S) "Model with outside conditions" + annotation (Placement(transformation(extent={{-6,-40},{14,-20}}))); + AixLib.Fluid.Sources.Outside_CpData east( + redeclare package Medium = Medium, + incAngSurNor=incAngSurNor, + Cp=Cp, + azi=AixLib.Types.Azimuth.E) "Model with outside conditions" + annotation (Placement(transformation(extent={{40,-2},{60,18}}))); +equation + connect(weaDat.weaBus, west.weaBus) annotation (Line( + points={{-60,10},{-42,10},{-42,10.2}}, + color={255,204,51}, + thickness=0.5, + smooth=Smooth.None)); + connect(weaDat.weaBus, north.weaBus) annotation (Line( + points={{-60,10},{-50,10},{-50,50.2},{-4,50.2}}, + color={255,204,51}, + thickness=0.5, + smooth=Smooth.None)); + connect(weaDat.weaBus, south.weaBus) annotation (Line( + points={{-60,10},{-50,10},{-50,-29.8},{-6,-29.8}}, + color={255,204,51}, + thickness=0.5, + smooth=Smooth.None)); + connect(weaDat.weaBus, east.weaBus) annotation (Line( + points={{-60,10},{-50,10},{-50,-10},{30,-10},{30,8.2},{40,8.2}}, + color={255,204,51}, + thickness=0.5, + smooth=Smooth.None)); + annotation (__Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Sources/Examples/Outside_CpData.mos" + "Simulate and plot"), + Documentation(info=" +

                                        + This model demonstrates the use of a source for ambient conditions that computes + the wind pressure on a facade of a building using a user-defined wind pressure profile. + Weather data are used for San Francisco, for a period of a week + where the wind blows primarily from North-West. + The plot shows that the wind pressure on the north- and west-facing + facade is positive, + whereas it is negative for the south- and east-facing facades. +

                                        + ",revisions=" +
                                          +
                                        • + February 2, 2022, by Michael Wetter:
                                          + Revised implementation.
                                          + This is for + IBPSA, #1436. +
                                        • +
                                        • + Jun 28, 2021 by Klaas De Jonge:
                                          + First implementation. +
                                        • +
                                        + "), + experiment( + StartTime=1.728e+07, + StopTime=1.78848e+07, + Tolerance=1e-6), + __Dymola_LockedEditing="Model from IBPSA"); +end Outside_CpData; diff --git a/AixLib/Fluid/Sources/Examples/Outside_CpData_Angles.mo b/AixLib/Fluid/Sources/Examples/Outside_CpData_Angles.mo new file mode 100644 index 0000000000..30a504df66 --- /dev/null +++ b/AixLib/Fluid/Sources/Examples/Outside_CpData_Angles.mo @@ -0,0 +1,111 @@ +within AixLib.Fluid.Sources.Examples; +model Outside_CpData_Angles + "Test model for source and sink with outside weather data and wind pressure using user-defined Cp values" + extends Modelica.Icons.Example; + package Medium = AixLib.Media.Air "Medium model for air"; + + parameter Modelica.Units.SI.Angle incAngSurNor[:]= + {0, 45, 90, 135, 180, 225, 270, 315}*2*Modelica.Constants.pi/360 + "Wind incidence angles"; + parameter Real CpSym[:]={0.4, 0.1, -0.3, -0.35, -0.2, -0.35, -0.3, 0.1} + "Cp values that are symmetric"; + parameter Real CpAsy[:]={0.4, 0.1, -0.3, -0.35, -0.2, -0.6, -0.9, -0.1} + "Cp values that are asymmetric"; + AixLib.Fluid.Sources.Outside_CpData symNor( + redeclare package Medium = Medium, + incAngSurNor=incAngSurNor, + Cp=CpSym, + azi=AixLib.Types.Azimuth.N) + "Model to compute wind pressure on North-facing surface" + annotation (Placement(transformation(extent={{0,-20},{20,0}}))); + AixLib.Fluid.Sources.Outside_CpData asyNor( + redeclare package Medium = Medium, + incAngSurNor=incAngSurNor, + Cp=CpAsy, + azi=AixLib.Types.Azimuth.N) + "Model to compute wind pressure on North-facing surface" + annotation (Placement(transformation(extent={{0,20},{20,40}}))); + AixLib.Fluid.Sources.Outside_CpData asyWes( + redeclare package Medium = Medium, + incAngSurNor=incAngSurNor, + Cp=CpAsy, + azi=AixLib.Types.Azimuth.W) + "Model to compute wind pressure on West-facing surface" + annotation (Placement(transformation(extent={{0,60},{20,80}}))); + AixLib.Fluid.Sources.Outside_CpData symWes( + redeclare package Medium = Medium, + incAngSurNor=incAngSurNor, + Cp=CpSym, + azi=AixLib.Types.Azimuth.W) + "Model to compute wind pressure on West-facing surface" + annotation (Placement(transformation(extent={{0,-60},{20,-40}}))); + + Modelica.Blocks.Sources.Ramp winDir( + height=2*Modelica.Constants.pi, + duration=10, + startTime=5) "Wind direction" + annotation (Placement(transformation(extent={{-80,-6},{-60,14}}))); + + AixLib.BoundaryConditions.WeatherData.ReaderTMY3 weaDat( + filNam=Modelica.Utilities.Files.loadResource("modelica://AixLib/Resources/weatherdata/USA_CA_San.Francisco.Intl.AP.724940_TMY3.mos"), + winSpeSou=AixLib.BoundaryConditions.Types.DataSource.Parameter, + winSpe=1, + winDirSou=AixLib.BoundaryConditions.Types.DataSource.Input) + annotation (Placement(transformation(extent={{-40,0},{-20,20}}))); + +equation + connect(weaDat.weaBus, symNor.weaBus) annotation (Line( + points={{-20,10},{-10,10},{-10,-10},{-6,-10},{-6,-9.8},{0,-9.8}}, + color={255,204,51}, + thickness=0.5, + smooth=Smooth.None)); + connect(weaDat.weaBus, asyNor.weaBus) annotation (Line( + points={{-20,10},{-10,10},{-10,30.2},{0,30.2}}, + color={255,204,51}, + thickness=0.5, + smooth=Smooth.None)); + connect(winDir.y, weaDat.winDir_in) + annotation (Line(points={{-59,4},{-41,4}}, color={0,0,127})); + connect(asyWes.weaBus, weaDat.weaBus) annotation (Line( + points={{0,70.2},{-10,70.2},{-10,10},{-20,10}}, + color={255,204,51}, + thickness=0.5)); + connect(symWes.weaBus, weaDat.weaBus) annotation (Line( + points={{0,-49.8},{-10,-49.8},{-10,10},{-20,10}}, + color={255,204,51}, + thickness=0.5)); + annotation (__Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Sources/Examples/Outside_CpData_Angles.mos" + "Simulate and plot"), + Documentation(info=" +

                                        + This model demonstrates the use of a source for ambient conditions that computes + the wind pressure on a facade of a building using a user-defined wind pressure profile. +

                                        +

                                        + The model showcases the possibility to use asymmetrical wind pressure profiles. + It also shows how Cp,act shifts with regards to the wind direction and azimuth + based on the Cp values which are defined relative to the surface normal. +

                                        +

                                        + The plot shows Cp,act of each boundary for each wind direction. + Notice how the profile is shifted based on the surface azimuth. +

                                        + ",revisions=" +
                                          +
                                        • + February 2, 2022, by Michael Wetter:
                                          + Revised implementation.
                                          + This is for + IBPSA, #1436. +
                                        • +
                                        • + Jun 28, 2021 by Klaas De Jonge:
                                          + First implementation. +
                                        • +
                                        + "), + experiment( + StopTime=20, + Tolerance=1e-06), + __Dymola_LockedEditing="Model from IBPSA"); +end Outside_CpData_Angles; diff --git a/AixLib/Fluid/Sources/Examples/Outside_CpData_Specification.mo b/AixLib/Fluid/Sources/Examples/Outside_CpData_Specification.mo new file mode 100644 index 0000000000..cda1c7d973 --- /dev/null +++ b/AixLib/Fluid/Sources/Examples/Outside_CpData_Specification.mo @@ -0,0 +1,58 @@ +within AixLib.Fluid.Sources.Examples; +model Outside_CpData_Specification + "Test model for wind pressure profile" + extends Modelica.Icons.Example; + package Medium = AixLib.Media.Air "Medium model for air"; + + AixLib.Fluid.Sources.Outside_CpData nor( + redeclare package Medium = Medium, + incAngSurNor={0,90,180,315}*2*Modelica.Constants.pi/360, + Cp={1,0.2,0.5,0.8}, + azi=AixLib.Types.Azimuth.N, + Cs=2/1.2) "Model to compute wind pressure on North-facing surface" + annotation (Placement(transformation(extent={{20,-10},{40,10}}))); + + AixLib.BoundaryConditions.WeatherData.ReaderTMY3 weaDat( + filNam=Modelica.Utilities.Files.loadResource("modelica://AixLib/Resources/weatherdata/USA_CA_San.Francisco.Intl.AP.724940_TMY3.mos"), + winSpeSou=AixLib.BoundaryConditions.Types.DataSource.Parameter, + winSpe=1, + winDirSou=AixLib.BoundaryConditions.Types.DataSource.Input) + annotation (Placement(transformation(extent={{-20,-10},{0,10}}))); + + Modelica.Blocks.Sources.Ramp winDir( + height=2*Modelica.Constants.pi, + duration=24*3600) + "Wind direction" + annotation (Placement(transformation(extent={{-60,-16},{-40,4}}))); + +equation + connect(weaDat.winDir_in, winDir.y) + annotation (Line(points={{-21,-6},{-39,-6}}, color={0,0,127})); + connect(weaDat.weaBus, nor.weaBus) annotation (Line( + points={{0,0},{10,0},{10,0.2},{20,0.2}}, + color={255,204,51}, + thickness=0.5)); + annotation (__Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Sources/Examples/Outside_CpData_Specification.mos" + "Simulate and plot"), + Documentation(info=" +

                                        + This model validates the specification of the wind pressure profile + in the information section of the model + AixLib.Fluid.Sources.Outside_CpData. + The surface is configured to be facing North. +

                                        + ",revisions=" +
                                          +
                                        • + February 11, 2022, by Michael Wetter:
                                          + First implementation.
                                          + This is for + IBPSA, #1436. +
                                        • +
                                        + "), + experiment( + StopTime=86400, + Tolerance=1e-06), + __Dymola_LockedEditing="Model from IBPSA"); +end Outside_CpData_Specification; diff --git a/AixLib/Fluid/Sources/Examples/Outside_CpLowRise.mo b/AixLib/Fluid/Sources/Examples/Outside_CpLowRise.mo index 457a2c66ac..650fc304b1 100644 --- a/AixLib/Fluid/Sources/Examples/Outside_CpLowRise.mo +++ b/AixLib/Fluid/Sources/Examples/Outside_CpLowRise.mo @@ -54,31 +54,32 @@ equation annotation (__Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Sources/Examples/Outside_CpLowRise.mos" "Simulate and plot"), Documentation(info=" -

                                        -This model demonstrates the use of a source for ambient conditions that computes -the wind pressure on a facade of a low-rise building. -Weather data are used for San Francisco, for a period of a week -where the wind blows primarily from North-West. -The plot shows that the wind pressure on the north- and west-facing -facade is positive, -whereas it is negative for the south- and east-facing facades. -

                                        -", revisions=" -
                                          -
                                        • -December 22, 2014 by Michael Wetter:
                                          -Removed Modelica.Fluid.System -to address issue -#311. -
                                        • -
                                        • -October 26, 2011 by Michael Wetter:
                                          -First implementation. -
                                        • -
                                        -"), +

                                        + This model demonstrates the use of a source for ambient conditions that computes + the wind pressure on a facade of a low-rise building using the equation from Swami and Chandra (1987). + Weather data are used for San Francisco, for a period of a week + where the wind blows primarily from North-West. + The plot shows that the wind pressure on the north- and west-facing + facade is positive, + whereas it is negative for the south- and east-facing facades. +

                                        + ",revisions=" +
                                          +
                                        • + December 22, 2014 by Michael Wetter:
                                          + Removed Modelica.Fluid.System + to address issue + #311. +
                                        • +
                                        • + October 26, 2011 by Michael Wetter:
                                          + First implementation. +
                                        • +
                                        + "), experiment( StartTime=1.728e+07, StopTime=1.78848e+07, - Tolerance=1e-6)); + Tolerance=1e-6), + __Dymola_LockedEditing="Model from IBPSA"); end Outside_CpLowRise; diff --git a/AixLib/Fluid/Sources/Examples/PropertySource_T.mo b/AixLib/Fluid/Sources/Examples/PropertySource_T.mo index 3be723a9d7..3c492524cf 100644 --- a/AixLib/Fluid/Sources/Examples/PropertySource_T.mo +++ b/AixLib/Fluid/Sources/Examples/PropertySource_T.mo @@ -109,24 +109,24 @@ equation annotation (Icon(coordinateSystem(preserveAspectRatio=false)), Diagram( coordinateSystem(preserveAspectRatio=false)), Documentation(info=" -

                                        -Example model that illustrates the use of -the -AixLib.Fluid.Sources.PropertySource_T model. -

                                        -", revisions=" -
                                          -
                                        • -April 30, 2018, by Filip Jorissen:
                                          -First implementation. -See #881. -
                                        • -
                                        -"), - __Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/Sources/Examples/PropertySource_T.mos" +

                                        + Example model that illustrates the use of + the + AixLib.Fluid.Sources.PropertySource_T model. +

                                        + ",revisions=" +
                                          +
                                        • + April 30, 2018, by Filip Jorissen:
                                          + First implementation. + See #881. +
                                        • +
                                        + "), + __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Sources/Examples/PropertySource_T.mos" "Simulate and plot"), experiment( StopTime=1, - Tolerance=1e-06)); + Tolerance=1e-06), + __Dymola_LockedEditing="Model from IBPSA"); end PropertySource_T; diff --git a/AixLib/Fluid/Sources/Examples/PropertySource_h.mo b/AixLib/Fluid/Sources/Examples/PropertySource_h.mo index 3e7f47f6d6..39349f0cde 100644 --- a/AixLib/Fluid/Sources/Examples/PropertySource_h.mo +++ b/AixLib/Fluid/Sources/Examples/PropertySource_h.mo @@ -85,24 +85,24 @@ equation annotation (Icon(coordinateSystem(preserveAspectRatio=false)), Diagram( coordinateSystem(preserveAspectRatio=false)), Documentation(info=" -

                                        -Example model that illustrates the use of -the -AixLib.Fluid.Sources.PropertySource_h model. -

                                        -", revisions=" -
                                          -
                                        • -April 30, 2018, by Filip Jorissen:
                                          -First implementation. -See #881. -
                                        • -
                                        -"), - __Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/Sources/Examples/PropertySource_h.mos" +

                                        + Example model that illustrates the use of + the + AixLib.Fluid.Sources.PropertySource_h model. +

                                        + ",revisions=" +
                                          +
                                        • + April 30, 2018, by Filip Jorissen:
                                          + First implementation. + See #881. +
                                        • +
                                        + "), + __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Sources/Examples/PropertySource_h.mos" "Simulate and plot"), experiment( StopTime=1, - Tolerance=1e-06)); + Tolerance=1e-06), + __Dymola_LockedEditing="Model from IBPSA"); end PropertySource_h; diff --git a/AixLib/Fluid/Sources/Examples/TraceSubstancesFlowSource.mo b/AixLib/Fluid/Sources/Examples/TraceSubstancesFlowSource.mo index e108d5c5f2..54c6571999 100644 --- a/AixLib/Fluid/Sources/Examples/TraceSubstancesFlowSource.mo +++ b/AixLib/Fluid/Sources/Examples/TraceSubstancesFlowSource.mo @@ -242,40 +242,41 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Sources/Examples/TraceSubstancesFlowSource.mos" "Simulate and plot"), Documentation(info=" -This model demonstrates the use of trace substances that are added -to a volume of air. -The source is a step function of 2 kg/s CO2 from t=0 second -to t=0.5 second. -The sensors C and C1 measure the same concentration that initially increases -and then remains constant as there is no flow through the volumes vol and vol1. -The sensors -C2 and -C3 first meaure an increase in concentration, which then decays to zero -as there is a mass flow rate with zero CO2 from the source bou to the sink sin. -", revisions=" -
                                          -
                                        • -November 27, 2013 by Michael Wetter:
                                          -Added pressure boundary condition to model. -This is required for the new air model, -which is incompressible. Otherwise, there will be no pressure reference -in the system. -
                                        • -
                                        • -September 19, 2013, by Michael Wetter:
                                          -Simplified example. -
                                        • -
                                        • -April 29, 2013, by Michael Wetter:
                                          -Changed the initialization of the medium volumes from free initial conditions -to Modelica.Fluid.Types.Dynamics.FixedInitial. -This was required for vol and vol1 to have the same -computations for the initial states. -
                                        • -
                                        • -September 18, 2008 by Michael Wetter:
                                          -First implementation. -
                                        • -
                                        -")); + This model demonstrates the use of trace substances that are added + to a volume of air. + The source is a step function of 2 kg/s CO2 from t=0 second + to t=0.5 second. + The sensors C and C1 measure the same concentration that initially increases + and then remains constant as there is no flow through the volumes vol and vol1. + The sensors + C2 and + C3 first meaure an increase in concentration, which then decays to zero + as there is a mass flow rate with zero CO2 from the source bou to the sink sin. + ",revisions=" +
                                          +
                                        • + November 27, 2013 by Michael Wetter:
                                          + Added pressure boundary condition to model. + This is required for the new air model, + which is incompressible. Otherwise, there will be no pressure reference + in the system. +
                                        • +
                                        • + September 19, 2013, by Michael Wetter:
                                          + Simplified example. +
                                        • +
                                        • + April 29, 2013, by Michael Wetter:
                                          + Changed the initialization of the medium volumes from free initial conditions + to Modelica.Fluid.Types.Dynamics.FixedInitial. + This was required for vol and vol1 to have the same + computations for the initial states. +
                                        • +
                                        • + September 18, 2008 by Michael Wetter:
                                          + First implementation. +
                                        • +
                                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end TraceSubstancesFlowSource; diff --git a/AixLib/Fluid/Sources/Examples/package.order b/AixLib/Fluid/Sources/Examples/package.order index 402ef59b34..c6c2832ea0 100644 --- a/AixLib/Fluid/Sources/Examples/package.order +++ b/AixLib/Fluid/Sources/Examples/package.order @@ -1,5 +1,8 @@ MassFlowSource_WeatherData Outside +Outside_CpData +Outside_CpData_Angles +Outside_CpData_Specification Outside_CpLowRise PropertySource_T PropertySource_h diff --git a/AixLib/Fluid/Sources/MassFlowSource_T.mo b/AixLib/Fluid/Sources/MassFlowSource_T.mo index 405e5f158b..f22590b37d 100644 --- a/AixLib/Fluid/Sources/MassFlowSource_T.mo +++ b/AixLib/Fluid/Sources/MassFlowSource_T.mo @@ -6,9 +6,9 @@ model MassFlowSource_T parameter Boolean use_m_flow_in = false "Get the mass flow rate from the input connector" annotation(Evaluate=true, HideResult=true, Dialog(group="Conditional inputs")); - parameter Modelica.SIunits.MassFlowRate m_flow = 0 + parameter Modelica.Units.SI.MassFlowRate m_flow=0 "Fixed mass flow rate going out of the fluid port" - annotation (Dialog(enable = not use_m_flow_in,group="Fixed inputs")); + annotation (Dialog(enable=not use_m_flow_in, group="Fixed inputs")); parameter Boolean use_T_in= false "Get the temperature from the input connector" annotation(Evaluate=true, HideResult=true,Dialog(group="Conditional inputs")); @@ -58,91 +58,91 @@ equation annotation (defaultComponentName="boundary", Documentation(info=" -

                                        -Models an ideal flow source, with prescribed values of flow rate, temperature, composition and trace substances: -

                                        -
                                          -
                                        • Prescribed mass flow rate.
                                        • -
                                        • Prescribed temperature.
                                        • -
                                        • Boundary composition (only for multi-substance or trace-substance flow).
                                        • -
                                        -

                                        -If use_m_flow_in is false (default option), -the m_flow parameter -is used as boundary pressure, and the m_flow_in -input connector is disabled; if use_m_flow_in -is true, then the m_flow parameter is ignored, -and the value provided by the input connector is used instead. -

                                        -

                                        -The same applies to the temperature T, composition Xi or X and trace substances C. -

                                        -

                                        Options

                                        -

                                        -Instead of using Xi_in (the independent composition fractions), -the advanced tab provides an option for setting all -composition fractions using X_in. -use_X_in and use_Xi_in cannot be used -at the same time. -

                                        -

                                        -Parameter verifyInputs can be set to true -to enable a check that verifies the validity of the used temperature -and pressures. -This removes the corresponding overhead from the model, which is -a substantial part of the overhead of this model. -See #882 -for more information. -

                                        -

                                        -Note, that boundary temperature, -mass fractions and trace substances have only an effect if the mass flow -is from the boundary into the port. If mass is flowing from -the port into the boundary, the boundary definitions, -with exception of boundary flow rate, do not have an effect. -

                                        -", +

                                        + Models an ideal flow source, with prescribed values of flow rate, temperature, composition and trace substances: +

                                        +
                                          +
                                        • Prescribed mass flow rate.
                                        • +
                                        • Prescribed temperature.
                                        • +
                                        • Boundary composition (only for multi-substance or trace-substance flow).
                                        • +
                                        +

                                        + If use_m_flow_in is false (default option), + the m_flow parameter + is used as boundary pressure, and the m_flow_in + input connector is disabled; if use_m_flow_in + is true, then the m_flow parameter is ignored, + and the value provided by the input connector is used instead. +

                                        +

                                        + The same applies to the temperature T, composition Xi or X and trace substances C. +

                                        +

                                        Options

                                        +

                                        + Instead of using Xi_in (the independent composition fractions), + the advanced tab provides an option for setting all + composition fractions using X_in. + use_X_in and use_Xi_in cannot be used + at the same time. +

                                        +

                                        + Parameter verifyInputs can be set to true + to enable a check that verifies the validity of the used temperature + and pressures. + This removes the corresponding overhead from the model, which is + a substantial part of the overhead of this model. + See #882 + for more information. +

                                        +

                                        + Note, that boundary temperature, + mass fractions and trace substances have only an effect if the mass flow + is from the boundary into the port. If mass is flowing from + the port into the boundary, the boundary definitions, + with exception of boundary flow rate, do not have an effect. +

                                        + ", revisions=" -
                                          -
                                        • -January 25, 2019, by Michael Wetter:
                                          -Refactored use of base classes.
                                          -See #1072. -
                                        • -
                                        • -February 2nd, 2018 by Filip Jorissen
                                          -Made medium conditional and refactored inputs. -See #882. -
                                        • -
                                        • -April 18, 2017, by Filip Jorissen:
                                          -Changed checkBoundary implementation -such that it is run as an initial equation -when it depends on parameters only. -See #728. -
                                        • -
                                        • -January 26, 2016, by Michael Wetter:
                                          -Added unit and quantity attributes. -
                                        • -
                                        • -September 29, 2009, by Michael Wetter:
                                          -First implementation. -
                                        • -
                                        -"), +
                                          +
                                        • + January 25, 2019, by Michael Wetter:
                                          + Refactored use of base classes.
                                          + See #1072. +
                                        • +
                                        • + February 2nd, 2018 by Filip Jorissen
                                          + Made medium conditional and refactored inputs. + See #882. +
                                        • +
                                        • + April 18, 2017, by Filip Jorissen:
                                          + Changed checkBoundary implementation + such that it is run as an initial equation + when it depends on parameters only. + See #728. +
                                        • +
                                        • + January 26, 2016, by Michael Wetter:
                                          + Added unit and quantity attributes. +
                                        • +
                                        • + September 29, 2009, by Michael Wetter:
                                          + First implementation. +
                                        • +
                                        + "), Icon(graphics={ Text( visible=use_m_flow_in, extent={{-185,132},{-45,100}}, - lineColor={0,0,0}, + textColor={0,0,0}, fillColor={255,255,255}, fillPattern=FillPattern.Solid, textString="m_flow"), Text( visible=use_T_in, extent={{-162,34},{-60,-6}}, - lineColor={0,0,0}, + textColor={0,0,0}, fillColor={255,255,255}, fillPattern=FillPattern.Solid, textString="T"), @@ -163,7 +163,7 @@ First implementation. fillPattern=FillPattern.Solid), Text( extent={{-54,32},{16,-30}}, - lineColor={255,0,0}, + textColor={255,0,0}, fillColor={255,0,0}, fillPattern=FillPattern.Solid, textString="m"), @@ -175,5 +175,6 @@ First implementation. Text( extent={{-161,110},{139,150}}, textString="%name", - lineColor={0,0,255})})); + textColor={0,0,255})}), + __Dymola_LockedEditing="Model from IBPSA"); end MassFlowSource_T; diff --git a/AixLib/Fluid/Sources/MassFlowSource_WeatherData.mo b/AixLib/Fluid/Sources/MassFlowSource_WeatherData.mo index 2d3008c4dc..36e0b5ee32 100644 --- a/AixLib/Fluid/Sources/MassFlowSource_WeatherData.mo +++ b/AixLib/Fluid/Sources/MassFlowSource_WeatherData.mo @@ -1,7 +1,7 @@ within AixLib.Fluid.Sources; model MassFlowSource_WeatherData "Ideal flow source that produces a prescribed mass flow with prescribed - trace substances, outside specific enthalpy and mass fraction " + trace substances, outside specific enthalpy and mass fraction " extends AixLib.Fluid.Sources.BaseClasses.PartialSource(final verifyInputs=true); parameter Boolean use_m_flow_in = false "Get the mass flow rate from the input connector" @@ -9,15 +9,15 @@ model MassFlowSource_WeatherData parameter Boolean use_C_in = false "Get the trace substances from the input connector" annotation(Evaluate=true, HideResult=true); - parameter Modelica.SIunits.MassFlowRate m_flow = 0 + parameter Modelica.Units.SI.MassFlowRate m_flow=0 "Fixed mass flow rate going out of the fluid port" - annotation (Dialog(enable = not use_m_flow_in)); + annotation (Dialog(enable=not use_m_flow_in)); parameter Medium.ExtraProperty C[Medium.nC]( final quantity=Medium.extraPropertiesNames)=fill(0, Medium.nC) "Fixed values of trace substances" annotation (Dialog(enable = (not use_C_in) and Medium.nC > 0)); - Modelica.Blocks.Interfaces.RealInput m_flow_in(final unit="kg/s") if - use_m_flow_in "Prescribed mass flow rate" + Modelica.Blocks.Interfaces.RealInput m_flow_in(final unit="kg/s") + if use_m_flow_in "Prescribed mass flow rate" annotation (Placement(transformation(extent={{-120,60},{-80,100}}), iconTransformation(extent={{-120,60},{-80,100}}))); Modelica.Blocks.Interfaces.RealInput C_in[Medium.nC]( @@ -128,7 +128,7 @@ equation fillPattern=FillPattern.Solid), Text( extent={{-54,32},{16,-30}}, - lineColor={255,0,0}, + textColor={255,0,0}, fillColor={255,0,0}, fillPattern=FillPattern.Solid, textString="m"), @@ -140,70 +140,71 @@ equation Text( visible=use_m_flow_in, extent={{-185,132},{-45,100}}, - lineColor={0,0,0}, + textColor={0,0,0}, fillColor={255,255,255}, fillPattern=FillPattern.Solid, textString="m_flow"), Text( visible=use_C_in, extent={{-155,-98},{-35,-126}}, - lineColor={0,0,0}, + textColor={0,0,0}, fillColor={255,255,255}, fillPattern=FillPattern.Solid, textString="C"), Text( extent={{-161,110},{139,150}}, textString="%name", - lineColor={0,0,255})}), + textColor={0,0,255})}), Documentation(info=" -

                                        -Models an ideal flow source, with prescribed values of flow rate and trace -substances, with temperature and specific enthalpy from outside: -

                                        -
                                          -
                                        • Prescribed mass flow rate.
                                        • -
                                        • Boundary composition (trace-substance flow).
                                        • -
                                        • Outside specific enthalpy.
                                        • -
                                        • Multi-substance composition (e.g. water vapor) from outside.
                                        • -
                                        -

                                        If use_m_flow_in is false (default option), the m_flow - parameter is used as boundary flow rate, and the m_flow_in -input connector is disabled; -if use_m_flow_in is true, then the m_flow parameter -is ignored, and the value provided by the input connector is used instead.

                                        -

                                        The same applies to the trace substances.

                                        -

                                        The -AixLib.Utilities.Psychrometrics.X_pTphi block is used with the input data -including pAtm, TDryBul, relHum from -weather bus weaBus, to calculate X.

                                        -

                                        The same applies to the specific enthalpy.

                                        -

                                        -Note, that boundary temperature, -mass fractions and trace substances have only an effect if the mass flow -is from the boundary into the port. If mass is flowing from -the port into the boundary, the boundary definitions, -with exception of boundary flow rate, do not have an effect. -

                                        -", +

                                        + Models an ideal flow source, with prescribed values of flow rate and trace + substances, with temperature and specific enthalpy from outside: +

                                        +
                                          +
                                        • Prescribed mass flow rate.
                                        • +
                                        • Boundary composition (trace-substance flow).
                                        • +
                                        • Outside specific enthalpy.
                                        • +
                                        • Multi-substance composition (e.g. water vapor) from outside.
                                        • +
                                        +

                                        If use_m_flow_in is false (default option), the m_flow + parameter is used as boundary flow rate, and the m_flow_in + input connector is disabled; + if use_m_flow_in is true, then the m_flow parameter + is ignored, and the value provided by the input connector is used instead.

                                        +

                                        The same applies to the trace substances.

                                        +

                                        The + AixLib.Utilities.Psychrometrics.X_pTphi block is used with the input data + including pAtm, TDryBul, relHum from + weather bus weaBus, to calculate X.

                                        +

                                        The same applies to the specific enthalpy.

                                        +

                                        + Note, that boundary temperature, + mass fractions and trace substances have only an effect if the mass flow + is from the boundary into the port. If mass is flowing from + the port into the boundary, the boundary definitions, + with exception of boundary flow rate, do not have an effect. +

                                        + ", revisions=" -
                                          -
                                        • -November 14, 2019, by Michael Wetter:
                                          -Removed duplicate connector.
                                          -This is for - #1248. -
                                        • -
                                        • -January 14, 2019 by Jianjun Hu:
                                          -Changed to extend -AixLib.Fluid.Sources.BaseClasses.PartialSource. This is for - #1050. -
                                        • -
                                        • -May 21, 2017, by Jianjun Hu:
                                          -First implementation. Created flow source with prescribed mass flow and trace -substances, outside enthalpy and composition. Weather bus is used. -See #777. -
                                        • -
                                        -")); +
                                          +
                                        • + November 14, 2019, by Michael Wetter:
                                          + Removed duplicate connector.
                                          + This is for + #1248. +
                                        • +
                                        • + January 14, 2019 by Jianjun Hu:
                                          + Changed to extend + AixLib.Fluid.Sources.BaseClasses.PartialSource. This is for + #1050. +
                                        • +
                                        • + May 21, 2017, by Jianjun Hu:
                                          + First implementation. Created flow source with prescribed mass flow and trace + substances, outside enthalpy and composition. Weather bus is used. + See #777. +
                                        • +
                                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end MassFlowSource_WeatherData; diff --git a/AixLib/Fluid/Sources/MassFlowSource_h.mo b/AixLib/Fluid/Sources/MassFlowSource_h.mo index 8a4e12c08d..42f1f26fd5 100644 --- a/AixLib/Fluid/Sources/MassFlowSource_h.mo +++ b/AixLib/Fluid/Sources/MassFlowSource_h.mo @@ -6,9 +6,9 @@ model MassFlowSource_h parameter Boolean use_m_flow_in = false "Get the mass flow rate from the input connector" annotation(Evaluate=true, HideResult=true, Dialog(group="Conditional inputs")); - parameter Modelica.SIunits.MassFlowRate m_flow = 0 + parameter Modelica.Units.SI.MassFlowRate m_flow=0 "Fixed mass flow rate going out of the fluid port" - annotation (Dialog(enable = not use_m_flow_in,group="Fixed inputs")); + annotation (Dialog(enable=not use_m_flow_in, group="Fixed inputs")); parameter Boolean use_h_in= false "Get the specific enthalpy from the input connector" @@ -54,91 +54,91 @@ equation annotation (defaultComponentName="boundary", Documentation(info=" -

                                        -Models an ideal flow source, with prescribed values of flow rate, specific enthalpy, composition and trace substances: -

                                        -
                                          -
                                        • Prescribed mass flow rate.
                                        • -
                                        • Prescribed specific enthalpy.
                                        • -
                                        • Boundary composition (only for multi-substance or trace-substance flow).
                                        • -
                                        -

                                        -If use_m_flow_in is false (default option), -the m_flow parameter -is used as boundary pressure, and the m_flow_in -input connector is disabled; if use_m_flow_in -is true, then the m_flow parameter is ignored, -and the value provided by the input connector is used instead. -

                                        -

                                        -The same applies to the specific enthalpy h, composition Xi or X and trace substances C. -

                                        -

                                        Options

                                        -

                                        -Instead of using Xi_in (the independent composition fractions), -the advanced tab provides an option for setting all -composition fractions using X_in. -use_X_in and use_Xi_in cannot be used -at the same time. -

                                        -

                                        -Parameter verifyInputs can be set to true -to enable a check that verifies the validity of the used specific enthalpy -and pressures. -This removes the corresponding overhead from the model, which is -a substantial part of the overhead of this model. -See #882 -for more information. -

                                        -

                                        -Note, that boundary specific enthalpy, -mass fractions and trace substances have only an effect if the mass flow -is from the boundary into the port. If mass is flowing from -the port into the boundary, the boundary definitions, -with exception of boundary flow rate, do not have an effect. -

                                        -", +

                                        + Models an ideal flow source, with prescribed values of flow rate, specific enthalpy, composition and trace substances: +

                                        +
                                          +
                                        • Prescribed mass flow rate.
                                        • +
                                        • Prescribed specific enthalpy.
                                        • +
                                        • Boundary composition (only for multi-substance or trace-substance flow).
                                        • +
                                        +

                                        + If use_m_flow_in is false (default option), + the m_flow parameter + is used as boundary pressure, and the m_flow_in + input connector is disabled; if use_m_flow_in + is true, then the m_flow parameter is ignored, + and the value provided by the input connector is used instead. +

                                        +

                                        + The same applies to the specific enthalpy h, composition Xi or X and trace substances C. +

                                        +

                                        Options

                                        +

                                        + Instead of using Xi_in (the independent composition fractions), + the advanced tab provides an option for setting all + composition fractions using X_in. + use_X_in and use_Xi_in cannot be used + at the same time. +

                                        +

                                        + Parameter verifyInputs can be set to true + to enable a check that verifies the validity of the used specific enthalpy + and pressures. + This removes the corresponding overhead from the model, which is + a substantial part of the overhead of this model. + See #882 + for more information. +

                                        +

                                        + Note, that boundary specific enthalpy, + mass fractions and trace substances have only an effect if the mass flow + is from the boundary into the port. If mass is flowing from + the port into the boundary, the boundary definitions, + with exception of boundary flow rate, do not have an effect. +

                                        + ", revisions=" -
                                          -
                                        • -February 2nd, 2018 by Filip Jorissen
                                          -Made medium conditional and refactored inputs. -See #882. -
                                        • -
                                        • -April 18, 2017, by Filip Jorissen:
                                          -Changed checkBoundary implementation -such that it is run as an initial equation -when it depends on parameters only. -See #728. -
                                        • -
                                        • -January 26, 2016, by Michael Wetter:
                                          -Added unit and quantity attributes. -
                                        • -
                                        • -May 29, 2014, by Michael Wetter:
                                          -Removed undesirable annotation Evaluate=true. -
                                        • -
                                        • -September 29, 2009, by Michael Wetter:
                                          -First implementation. -Implemenation is based on Modelica.Fluid. -
                                        • -
                                        -"), +
                                          +
                                        • + February 2nd, 2018 by Filip Jorissen
                                          + Made medium conditional and refactored inputs. + See #882. +
                                        • +
                                        • + April 18, 2017, by Filip Jorissen:
                                          + Changed checkBoundary implementation + such that it is run as an initial equation + when it depends on parameters only. + See #728. +
                                        • +
                                        • + January 26, 2016, by Michael Wetter:
                                          + Added unit and quantity attributes. +
                                        • +
                                        • + May 29, 2014, by Michael Wetter:
                                          + Removed undesirable annotation Evaluate=true. +
                                        • +
                                        • + September 29, 2009, by Michael Wetter:
                                          + First implementation. + Implemenation is based on Modelica.Fluid. +
                                        • +
                                        + "), Icon(graphics={ Text( visible=use_m_flow_in, extent={{-185,132},{-45,100}}, - lineColor={0,0,0}, + textColor={0,0,0}, fillColor={255,255,255}, fillPattern=FillPattern.Solid, textString="m_flow"), Text( visible=use_h_in, extent={{-162,34},{-60,-6}}, - lineColor={0,0,0}, + textColor={0,0,0}, fillColor={255,255,255}, fillPattern=FillPattern.Solid, textString="h"), @@ -159,7 +159,7 @@ Implemenation is based on Modelica.Fluid. fillPattern=FillPattern.Solid), Text( extent={{-54,32},{16,-30}}, - lineColor={255,0,0}, + textColor={255,0,0}, fillColor={255,0,0}, fillPattern=FillPattern.Solid, textString="m"), @@ -171,5 +171,6 @@ Implemenation is based on Modelica.Fluid. Text( extent={{-161,110},{139,150}}, textString="%name", - lineColor={0,0,255})})); + textColor={0,0,255})}), + __Dymola_LockedEditing="Model from IBPSA"); end MassFlowSource_h; diff --git a/AixLib/Fluid/Sources/Outside.mo b/AixLib/Fluid/Sources/Outside.mo index 016307ae2d..351807d3aa 100644 --- a/AixLib/Fluid/Sources/Outside.mo +++ b/AixLib/Fluid/Sources/Outside.mo @@ -8,48 +8,49 @@ equation connect(weaBus.TDryBul, T_in_internal); annotation (defaultComponentName="out", Documentation(info=" -

                                        -This model describes boundary conditions for -pressure, enthalpy, and species concentration that can be obtained -from weather data. -

                                        -

                                        -To use this model, connect weather data from - -AixLib.BoundaryConditions.WeatherData.ReaderTMY3 to the port -weaBus of this model. -This will cause the medium of this model to be -at the pressure that is obtained from the weather file, and any flow that -leaves this model to be at the temperature and humidity that are obtained -from the weather data. -

                                        -

                                        If the parameter use_C_in is false (default option), -the C parameter -is used as the trace substance for flow that leaves the component, and the -C_in input connector is disabled; if use_C_in is true, -then the C parameter is ignored, and the value provided by the input connector is used instead.

                                        -

                                        -Note that boundary temperature, -mass fractions and trace substances have only an effect if the mass flow -is from the boundary into the port. If mass is flowing from -the port into the boundary, the boundary definitions, -with exception of boundary pressure, do not have an effect. -

                                        -", +

                                        + This model describes boundary conditions for + pressure, enthalpy, and species concentration that can be obtained + from weather data. +

                                        +

                                        + To use this model, connect weather data from + + AixLib.BoundaryConditions.WeatherData.ReaderTMY3 to the port + weaBus of this model. + This will cause the medium of this model to be + at the pressure that is obtained from the weather file, and any flow that + leaves this model to be at the temperature and humidity that are obtained + from the weather data. +

                                        +

                                        If the parameter use_C_in is false (default option), + the C parameter + is used as the trace substance for flow that leaves the component, and the + C_in input connector is disabled; if use_C_in is true, + then the C parameter is ignored, and the value provided by the input connector is used instead.

                                        +

                                        + Note that boundary temperature, + mass fractions and trace substances have only an effect if the mass flow + is from the boundary into the port. If mass is flowing from + the port into the boundary, the boundary definitions, + with exception of boundary pressure, do not have an effect. +

                                        + ", revisions=" -
                                          -
                                        • -October 26, 2011 by Michael Wetter:
                                          -Introduced new base class to allow implementation of wind pressure for natural ventilation. -
                                        • -
                                        • -April 27, 2011 by Michael Wetter:
                                          -Revised implementation to allow medium model that do not have water vapor. -
                                        • -
                                        • -Feb. 9, 2011 by Michael Wetter:
                                          -First implementation. -
                                        • -
                                        -")); +
                                          +
                                        • + October 26, 2011 by Michael Wetter:
                                          + Introduced new base class to allow implementation of wind pressure for natural ventilation. +
                                        • +
                                        • + April 27, 2011 by Michael Wetter:
                                          + Revised implementation to allow medium model that do not have water vapor. +
                                        • +
                                        • + Feb. 9, 2011 by Michael Wetter:
                                          + First implementation. +
                                        • +
                                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end Outside; diff --git a/AixLib/Fluid/Sources/Outside_CpData.mo b/AixLib/Fluid/Sources/Outside_CpData.mo new file mode 100644 index 0000000000..b52d18ce3a --- /dev/null +++ b/AixLib/Fluid/Sources/Outside_CpData.mo @@ -0,0 +1,203 @@ +within AixLib.Fluid.Sources; +model Outside_CpData + "Boundary that takes weather data as an input and computes the wind pressure from a given wind pressure profile" + extends AixLib.Fluid.Sources.BaseClasses.Outside; + + parameter Modelica.Units.SI.Angle azi "Surface azimuth (South:0, West:pi/2)" + annotation (choicesAllMatching=true); + + parameter Modelica.Units.SI.Angle incAngSurNor[:]( + each displayUnit="deg") + "Wind incidence angles, relative to the surface normal (normal=0), first point must be 0, last smaller than 2 pi(=360 deg)"; + parameter Real Cp[:]( + each final unit="1") + "Cp values at the corresponding incAngSurNor"; + + parameter Real Cs( + final min=0, + final unit="1")=1 + "Wind speed modifier"; + + Modelica.Units.SI.Pressure pWin(displayUnit="Pa") = Cs*0.5*CpAct*d*vWin*vWin + "Change in pressure due to wind force"; + + Real CpAct( + final unit="1") = AixLib.Airflow.Multizone.BaseClasses.windPressureProfile( + alpha=alpha,incAngTab= + incAngExt, + CpTab=CpExt, + d=deri) "Actual wind pressure coefficient"; + + Modelica.Units.SI.Angle alpha = winDir-surOut + "Wind incidence angle (0: normal to wall)"; + + +protected + final parameter Modelica.Units.SI.Angle surOut = azi-Modelica.Constants.pi + "Angle of surface that is used to compute the wind incidence angle relative to the surface normal"; + + final parameter Integer n=size(incAngSurNor, 1) + "Number of data points provided by user"; + final parameter Modelica.Units.SI.Angle incAngExt[n + 3](each displayUnit= + "deg") = cat( + 1, + {incAngSurNor[n - 1] - (2*Modelica.Constants.pi)}, + incAngSurNor, + 2*Modelica.Constants.pi .+ {incAngSurNor[1],incAngSurNor[2]}) + "Extended number of incidence angles"; + final parameter Real CpExt[n+3]=cat(1, {Cp[n-1]}, Cp, {Cp[1], Cp[2]}) + "Extended number of Cp values"; + + final parameter Real[n+3] deri= + AixLib.Utilities.Math.Functions.splineDerivatives( + x=incAngExt, + y=CpExt, + ensureMonotonicity=false) "Derivatives for table interpolation"; + + Modelica.Blocks.Interfaces.RealInput pAtm( + min=0, + nominal=1E5, + final unit="Pa") "Atmospheric pressure"; + Modelica.Blocks.Interfaces.RealInput vWin(final unit="m/s") + "Wind speed from weather bus"; + Modelica.Blocks.Interfaces.RealInput winDir(final unit="rad",displayUnit="deg") "Wind direction from weather bus"; + + Modelica.Blocks.Interfaces.RealOutput pTot(min=0, nominal=1E5, final unit="Pa")=pAtm + pWin + "Sum of atmospheric pressure and wind pressure"; + + Modelica.Units.SI.Density d = Medium.density( + Medium.setState_pTX(p_in_internal, T_in_internal, X_in_internal)) + "Air density"; + +initial equation + assert(size(incAngSurNor, 1) == size(Cp, 1), "In " + getInstanceName() + + ": Size of parameters are size(CpincAng, 1) = " + String(size(incAngSurNor, + 1)) + " and size(Cp, 1) = " + String(size(Cp, 1)) + ". They must be equal."); + + assert(abs(incAngSurNor[1]) < 1E-4, "In " + getInstanceName() + + ": First point in the table CpAngAtt must be 0."); + + assert(2*Modelica.Constants.pi - incAngSurNor[end] > 1E-4, "In " + + getInstanceName() + + ": Last point in the table CpAngAtt must be smaller than 2 pi (360 deg)."); + +equation + connect(weaBus.winDir, winDir); + connect(weaBus.winSpe, vWin); + connect(weaBus.pAtm,pAtm); + connect(p_in_internal, pTot); + connect(weaBus.TDryBul, T_in_internal); + + annotation (defaultComponentName="out", + Documentation(info=" +

                                        + This model describes boundary conditions for + pressure, enthalpy, and species concentration that can be obtained + from weather data. The model is identical to + + AixLib.Fluid.Sources.Outside, + except that it adds the wind pressure to the + pressure at the fluid ports ports. +

                                        +

                                        + The pressure p at the fluid ports is computed as: +

                                        +

                                        + p = pw + Cp,act Cs v2 ρ ⁄ 2, +

                                        +

                                        + where pw is the atmospheric pressure from the weather bus, + v is the wind speed from the weather bus, and + ρ is the fluid density. +

                                        +

                                        + The wind pressure coefficient Cp,act is a function of the surface wind incidence + angle and is defined relative to the surface azimuth (normal to the surface is 0). + The wind incidence angle incAng is computed from the wind direction obtained from the weather file + with the surface azimuth azi as the base of the angle. + The relation between the wind pressure coefficient Cp,act and the incidence angle incAng + is defined by a cubic hermite interpolation of the users table input. + Typical table values can be obtained from the "AIVC guide to energy efficient ventilation", + appendix 2 (1996). The default table is appendix 2, table 2.2, face 1. +

                                        +

                                        + The wind speed modifier Cs can be used to incorporate the effect of the surroundings on the local wind speed. +

                                        +

                                        Definition of angles

                                        +

                                        + The angles incAngSurNor for the wind incidence angle relative to the surface normal + are measured counter-clock wise. + The figure below shows an example entry, which is also used in the model + + AixLib.Fluid.Sources.Examples.Outside_CpData_Specification. +

                                        +

                                        \"image\"

                                        + +

                                        + The wind incidence angle and surface azimuths are defined as follows: + The wind indicience angle is obtained directly from the weather data bus weaBus.winDir. + This variable contains the data from the weather data file that was read, such as a TMY3 file. + In accordance to TMY3, the data is as shown in the table below. +

                                        + + + + + +
                                        Value of winDir if the wind blows from different directions.
                                        Wind from North:
                                        0
                                        Wind from West:
                                        3π/2
                                        270°
                                        Wind from East:
                                        π/2
                                        90°
                                        Wind from South:
                                        π
                                        180°
                                        +

                                        + For the surface azimuth azi, the specification from + AixLib.Types.Azimuth is + used, which is as shown in the table below. +

                                        + + + + + + +
                                        Value of azi if the exterior wall faces in the different directions.
                                        Wall facing north:
                                        π
                                        180°
                                        Wall facing West:
                                        π/2
                                        90°
                                        Wall facing east:
                                        3π/2
                                        270°
                                        Wall facing South:
                                        0;
                                        + +

                                        Related model

                                        +

                                        + This model differs from + AixLib.Fluid.Sources.Outside_CpLowRise by the calculation of the wind pressure coefficient + Cp,act. + The wind pressure coefficient is defined by a user-defined table instead of a generalized equation + such that it can be used for all building sizes and situations, for shielded buildings, + and for buildings with non-rectangular shapes. +

                                        +

                                        + References +

                                        +
                                          +
                                        • M. W. Liddament, 1996, A guide to energy efficient ventilation. AIVC Annex V.
                                        • +
                                        + ", +revisions=" +
                                          +
                                        • + February 2, 2022, by Michael Wetter:
                                          + Revised implementation.
                                          + This is for + IBPSA, #1436. +
                                        • +
                                        • + Apr 6, 2021, by Klaas De Jonge:
                                          + First implementation. +
                                        • +
                                        + "), + Icon(graphics={ + Line(points={{-56,54},{-56,-44},{52,-44}}, color={255,255,255}), + Line(points={{-56,16},{-50,16},{-44,12},{-38,-2},{-28,-24},{-20,-40}, + {-12,-42},{-6,-36},{0,-34},{6,-36},{12,-42},{20,-40},{28,-14},{ + 36,6},{42,12},{50,14}}, + color={255,255,255}, + smooth=Smooth.Bezier), + Text( + extent={{-54,66},{2,22}}, + textColor={255,255,255}, + textString="Cp")}), + __Dymola_LockedEditing="Model from IBPSA"); +end Outside_CpData; diff --git a/AixLib/Fluid/Sources/Outside_CpLowRise.mo b/AixLib/Fluid/Sources/Outside_CpLowRise.mo index 95f62d687e..2af27a1548 100644 --- a/AixLib/Fluid/Sources/Outside_CpLowRise.mo +++ b/AixLib/Fluid/Sources/Outside_CpLowRise.mo @@ -1,25 +1,35 @@ within AixLib.Fluid.Sources; model Outside_CpLowRise - "Boundary that takes weather data as an input and computes wind pressure for low-rise buildings" + "Boundary that takes weather data as an input and computes the wind pressure for low-rise buildings based on the equation from Swami and Chandra (1987)" extends AixLib.Fluid.Sources.BaseClasses.Outside; parameter Real Cp0(min=0, max=1, final unit="1") = 0.6 "Wind pressure coefficient for wind normal to wall"; parameter Real s(final min=0, final unit="1") "Side ratio, s=length of this wall/length of adjacent wall"; - parameter Modelica.SIunits.Angle azi "Surface azimuth (South:0, West:pi/2)" + parameter Modelica.Units.SI.Angle azi "Surface azimuth (South:0, West:pi/2)" annotation (choicesAllMatching=true); - Modelica.SIunits.Angle alpha "Wind incidence angle (0: normal to wall)"; - Real CpAct(min=0, final unit="1") "Actual wind pressure coefficient"; - Modelica.SIunits.Pressure pWin(displayUnit="Pa") + Modelica.Units.SI.Angle alpha = winDir-surOut + "Wind incidence angle (0: normal to wall)"; + Real CpAct(final unit="1")= + AixLib.Airflow.Multizone.BaseClasses.windPressureLowRise( + Cp0=Cp0, + alpha=alpha, + G=G) + "Actual wind pressure coefficient"; + Modelica.Units.SI.Pressure pWin(displayUnit="Pa")= + 0.5*CpAct*d*vWin*vWin "Change in pressure due to wind force"; protected Modelica.Blocks.Interfaces.RealInput pWea(min=0, nominal=1E5, final unit="Pa") "Pressure from weather bus"; Modelica.Blocks.Interfaces.RealInput vWin(final unit="m/s") "Wind speed from weather bus"; - Modelica.Blocks.Interfaces.RealOutput pTot(min=0, nominal=1E5, final unit="Pa") + Modelica.Blocks.Interfaces.RealOutput pTot( + min=0, + nominal=1E5, + final unit="Pa") = pWea + pWin "Sum of atmospheric pressure and wind pressure"; final parameter Real G = Modelica.Math.log(s) "Natural logarithm of side ratio"; @@ -27,18 +37,13 @@ protected Modelica.Blocks.Interfaces.RealInput winDir(final unit="rad", displayUnit="deg") "Wind direction from weather bus"; - Modelica.SIunits.Angle surOut = azi-Modelica.Constants.pi + Modelica.Units.SI.Angle surOut=azi - Modelica.Constants.pi "Angle of surface that is used to compute angle of attack of wind"; - Modelica.Blocks.Interfaces.RealInput d = Medium.density( - Medium.setState_pTX(p_in_internal, T_in_internal, X_in_internal)); + Modelica.Units.SI.Density d = Medium.density( + Medium.setState_pTX(p_in_internal, T_in_internal, X_in_internal)) + "Air density"; equation - alpha = winDir-surOut; - CpAct = AixLib.Airflow.Multizone.BaseClasses.windPressureLowRise( - Cp0=Cp0, incAng=alpha, G=G); - pWin = 0.5*CpAct*d*vWin*vWin; - pTot = pWea + pWin; - connect(weaBus.winDir, winDir); connect(weaBus.winSpe, vWin); connect(weaBus.pAtm, pWea); @@ -46,121 +51,143 @@ equation connect(weaBus.TDryBul, T_in_internal); annotation (defaultComponentName="out", Documentation(info=" -

                                        -This model describes boundary conditions for -pressure, enthalpy, and species concentration that can be obtained -from weather data. The model is identical to - -AixLib.Fluid.Sources.Outside, -except that it adds the wind pressure to the -pressure at the fluid port ports. -The correlation that is used to compute the wind pressure is based -on Swami and Chandra (1987) and valid for low-rise buildings -with rectangular shape. -The same correlation is also implemented in CONTAM (Persily and Ivy, 2001). - -

                                        -

                                        -The wind pressure coefficient is computed based on the -side ratio of the walls, which is defined as -

                                        -

                                        -s = x ⁄ y -

                                        -

                                        -where x is the length of the wall that will be connected to -this model, and y is the length of the adjacent wall. -The wind direction is computed relative to the azimuth of this surface, -which is equal to the parameter azi. -The surface azimuth is defined in - -AixLib.Types.Azimuth. -For example, if an exterior wall is South oriented, i.e., its outside-facing -surface is towards South, use -AixLib.Types.Azimuth.S. -

                                        -

                                        -Based on the surface azimuth, the wind direction and the side ratio -of the walls, the model computes how much the wind pressure -is attenuated compared to the reference wind pressure Cp0. -The reference wind pressure Cp0 is a user-defined parameter, -and must be equal to the wind pressure at zero wind incidence angle. -Swami and Chandra (1987) recommend Cp0 = 0.6 for -all low-rise buildings as this represents the average of -various values reported in the literature. -The computation of the actual wind pressure coefficient Cp -is explained in the function - -Buildings.Airflow.Multizone.BaseClasses.windPressureLowRise -that is called by this model. -

                                        -

                                        -The pressure p at the port ports is computed as -

                                        -

                                        - p = pw + Cp 1 ⁄ 2 v2 ρ, -

                                        -

                                        -where -pw is the atmospheric pressure from the weather bus, -v is the wind speed from the weather bus, and -ρ is the fluid density. -

                                        - -

                                        References

                                        - -", +

                                        + This model describes boundary conditions for + pressure, enthalpy, and species concentration that can be obtained + from weather data. The model is identical to + + AixLib.Fluid.Sources.Outside, + except that it adds the wind pressure to the + pressure at the fluid port ports. + The correlation that is used to compute the wind pressure is based + on Swami and Chandra (1987) and valid for low-rise buildings + with rectangular shape. + The same correlation is also implemented in CONTAM (Persily and Ivy, 2001). + +

                                        +

                                        + The wind pressure coefficient is computed based on the + side ratio of the walls, which is defined as +

                                        +

                                        + s = x ⁄ y +

                                        +

                                        + where x is the length of the wall that will be connected to + this model, and y is the length of the adjacent wall. + The wind direction is computed relative to the azimuth of this surface, + which is equal to the parameter azi. + The surface azimuth is defined in + + AixLib.Types.Azimuth. + For example, if an exterior wall is South oriented, i.e., its outside-facing + surface is towards South, use + AixLib.Types.Azimuth.S. +

                                        +

                                        + Based on the surface azimuth, the wind direction and the side ratio + of the walls, the model computes how much the wind pressure + is attenuated compared to the reference wind pressure Cp0. + The reference wind pressure Cp0 is a user-defined parameter, + and must be equal to the wind pressure at zero wind incidence angle. + Swami and Chandra (1987) recommend Cp0 = 0.6 for + all low-rise buildings as this represents the average of + various values reported in the literature. + The computation of the actual wind pressure coefficient Cp + is explained in the function + + Buildings.Airflow.Multizone.BaseClasses.windPressureLowRise + that is called by this model. +

                                        +

                                        + The pressure p at the port ports is computed as +

                                        +

                                        + p = pw + Cp 1 ⁄ 2 v2 ρ, +

                                        +

                                        + where + pw is the atmospheric pressure from the weather bus, + v is the wind speed from the weather bus, and + ρ is the fluid density. +

                                        + +

                                        + This model differs from + AixLib.Fluid.Sources.Outside_CpData by the calculation of the wind pressure coefficient Cp,act. + The wind pressure coefficient is defined by an equation in stead of a user-defined table. + This model is only suited for low-rise rectangular buildings. +

                                        + +

                                        References

                                        + + ", revisions=" -
                                          -
                                        • -January 26, 2016, by Michael Wetter:
                                          -Added unit and quantity attributes. -
                                        • -
                                        • -October 26, 2011 by Michael Wetter:
                                          -First implementation. -
                                        • -
                                        -"), +
                                          +
                                        • + February 2, 2022, by Michael Wetter:
                                          + Revised implementation.
                                          + This is for + IBPSA, #1436. +
                                        • +
                                        • + Jun 28, 2021, by Klaas De Jonge:
                                          + Documentation changes to explain the difference with + AixLib.Fluid.Sources.Outside_CpData. +
                                        • +
                                        • + January 26, 2016, by Michael Wetter:
                                          + Added unit and quantity attributes. +
                                        • +
                                        • + October 26, 2011 by Michael Wetter:
                                          + First implementation. +
                                        • +
                                        + "), Icon(graphics={Text( visible=use_Cp_in, extent={{-140,92},{-92,62}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="C_p"), Text( visible=use_C_in, extent={{-154,-28},{-102,-62}}, - lineColor={0,0,255}, + textColor={0,0,255}, textString="C"), Text( extent={{-28,22},{28,-22}}, - lineColor={255,255,255}, - textString="Cp")})); + textColor={255,255,255}, + textString="Cp")}), + __Dymola_LockedEditing="Model from IBPSA"); end Outside_CpLowRise; diff --git a/AixLib/Fluid/Sources/PropertySource_T.mo b/AixLib/Fluid/Sources/PropertySource_T.mo index b4e84d07d4..028c0d8f8f 100644 --- a/AixLib/Fluid/Sources/PropertySource_T.mo +++ b/AixLib/Fluid/Sources/PropertySource_T.mo @@ -41,42 +41,43 @@ annotation (defaultComponentName="proSou", Text( visible=use_T_in, extent={{-90,98},{12,58}}, - lineColor={0,0,0}, + textColor={0,0,0}, fillColor={255,255,255}, fillPattern=FillPattern.Solid, textString="T")}), Documentation(info=" -

                                        -Model that changes the properties, -but not the mass flow rate, -of the fluid that passes through it. -

                                        -

                                        -If allowFlowReversal=true, then the properties are changed for both flow directions, -i.e., from port_a to port_b and -from port_b to port_a. -

                                        -

                                        Typical use and important parameters

                                        -

                                        -The fluid properties h, Xi and C -are only modified when the corresponding boolean parameter -use_T_in, use_Xi_in or use_C_in -is set to true. -

                                        -

                                        Dynamics

                                        -

                                        -This model has no dynamics. -

                                        -", +

                                        + Model that changes the properties, + but not the mass flow rate, + of the fluid that passes through it. +

                                        +

                                        + If allowFlowReversal=true, then the properties are changed for both flow directions, + i.e., from port_a to port_b and + from port_b to port_a. +

                                        +

                                        Typical use and important parameters

                                        +

                                        + The fluid properties h, Xi and C + are only modified when the corresponding boolean parameter + use_T_in, use_Xi_in or use_C_in + is set to true. +

                                        +

                                        Dynamics

                                        +

                                        + This model has no dynamics. +

                                        + ", revisions=" -
                                          -
                                        • -April 30, 2018, by Filip Jorissen:
                                          -First implementation. -See #881. -
                                        • -
                                        -"), +
                                          +
                                        • + April 30, 2018, by Filip Jorissen:
                                          + First implementation. + See #881. +
                                        • +
                                        + "), Diagram(coordinateSystem(preserveAspectRatio=true, extent={{-100,-100},{ - 100,100}}))); + 100,100}})), + __Dymola_LockedEditing="Model from IBPSA"); end PropertySource_T; diff --git a/AixLib/Fluid/Sources/PropertySource_h.mo b/AixLib/Fluid/Sources/PropertySource_h.mo index 04239c2376..255339bc51 100644 --- a/AixLib/Fluid/Sources/PropertySource_h.mo +++ b/AixLib/Fluid/Sources/PropertySource_h.mo @@ -28,42 +28,43 @@ annotation (defaultComponentName="proSou", Text( visible=use_h_in, extent={{-90,98},{12,58}}, - lineColor={0,0,0}, + textColor={0,0,0}, fillColor={255,255,255}, fillPattern=FillPattern.Solid, textString="h")}), Documentation(info=" -

                                        -Model that changes the properties, -but not the mass flow rate, -of the fluid that passes through it. -

                                        -

                                        -If allowFlowReversal=true, then the properties are changed for both flow directions, -i.e., from port_a to port_b and -from port_b to port_a. -

                                        -

                                        Typical use and important parameters

                                        -

                                        -The fluid properties h, Xi and C -are only modified when the corresponding boolean parameter -use_h_in, use_Xi_in or use_C_in -is set to true. -

                                        -

                                        Dynamics

                                        -

                                        -This model has no dynamics. -

                                        -", +

                                        + Model that changes the properties, + but not the mass flow rate, + of the fluid that passes through it. +

                                        +

                                        + If allowFlowReversal=true, then the properties are changed for both flow directions, + i.e., from port_a to port_b and + from port_b to port_a. +

                                        +

                                        Typical use and important parameters

                                        +

                                        + The fluid properties h, Xi and C + are only modified when the corresponding boolean parameter + use_h_in, use_Xi_in or use_C_in + is set to true. +

                                        +

                                        Dynamics

                                        +

                                        + This model has no dynamics. +

                                        + ", revisions=" -
                                          -
                                        • -April 30, 2018, by Filip Jorissen:
                                          -First implementation. -See #881. -
                                        • -
                                        -"), +
                                          +
                                        • + April 30, 2018, by Filip Jorissen:
                                          + First implementation. + See #881. +
                                        • +
                                        + "), Diagram(coordinateSystem(preserveAspectRatio=true, extent={{-100,-100},{ - 100,100}}))); + 100,100}})), + __Dymola_LockedEditing="Model from IBPSA"); end PropertySource_h; diff --git a/AixLib/Fluid/Sources/TraceSubstancesFlowSource.mo b/AixLib/Fluid/Sources/TraceSubstancesFlowSource.mo index 94ff57e6bd..a2e45a161b 100644 --- a/AixLib/Fluid/Sources/TraceSubstancesFlowSource.mo +++ b/AixLib/Fluid/Sources/TraceSubstancesFlowSource.mo @@ -15,11 +15,11 @@ model TraceSubstancesFlowSource "Get the trace substance mass flow rate from the input connector" annotation(Evaluate=true, HideResult=true); - parameter Modelica.SIunits.MassFlowRate m_flow = 0 + parameter Modelica.Units.SI.MassFlowRate m_flow=0 "Fixed mass flow rate going out of the fluid port" - annotation (Dialog(enable = not use_m_flow_in)); - Modelica.Blocks.Interfaces.RealInput m_flow_in(final unit="kg/s") if - use_m_flow_in "Prescribed mass flow rate for extra property" + annotation (Dialog(enable=not use_m_flow_in)); + Modelica.Blocks.Interfaces.RealInput m_flow_in(final unit="kg/s") + if use_m_flow_in "Prescribed mass flow rate for extra property" annotation (Placement(transformation(extent={{-141,-20},{-101,20}}))); Modelica.Fluid.Interfaces.FluidPorts_b ports[nPorts]( @@ -39,12 +39,11 @@ protected Modelica.Blocks.Interfaces.RealInput m_flow_in_internal(final unit="kg/s") "Needed to connect to conditional connector"; - Modelica.SIunits.SpecificEnthalpy h_default= - Medium.specificEnthalpy(Medium.setState_pTX( + Modelica.Units.SI.SpecificEnthalpy h_default=Medium.specificEnthalpy( + Medium.setState_pTX( Medium.p_default, Medium.T_default, - Medium.X_default)) - "Enthalpy of outstreaming medium"; + Medium.X_default)) "Enthalpy of outstreaming medium"; initial equation assert(sum(C_in_internal) > 1E-4, "Trace substance '" + substanceName + "' is not present in medium '" @@ -54,11 +53,11 @@ initial equation // Only one connection allowed to a port to avoid unwanted ideal mixing for i in 1:nPorts loop assert(cardinality(ports[i]) <= 1," -Each ports[i] of boundary shall at most be connected to one component. -If two or more connections are present, ideal mixing takes -place in these connections, which is usually not the intention -of the modeller. Increase nPorts to add an additional port. -"); + Each ports[i] of boundary shall at most be connected to one component. + If two or more connections are present, ideal mixing takes + place in these connections, which is usually not the intention + of the modeller. Increase nPorts to add an additional port. + "); end for; equation @@ -82,84 +81,84 @@ equation annotation ( defaultComponentName="souTraSub", Documentation(info=" -

                                        -This model can be used to inject trace substances into a system. -The model adds a mass flow rate to its port with a -trace substance concentration of 1. -

                                        -

                                        Typical use and important parameters

                                        -

                                        -A typical use of this model is to add carbon dioxide to room air, since the -carbon dioxide concentration is typically so small that it need not be -added to the room mass balance, and since the mass flow rate can be -made small compared to the room volume if the medium that leaves this -component has a carbon dioxide concentration of 1. -The parameter substanceName must be set to the name of the substance -that is injected into the fluid. -

                                        -

                                        -Note however that mixing volumes from the package -AixLib.Fluid.MixingVolumes -allow to directly add a trace substance mass flow rate, -which is more efficient than using this model. -

                                        -", revisions=" -
                                          -
                                        • -November 14, 2019, by Michael Wetter:
                                          -Rewrote assignment of C_in_internal to avoid an initial algorithm section.
                                          -This is for #1250. -
                                        • -
                                        • -January 23, 2019, by Michael Wetter:
                                          -Refactored implementation to provide default medium choice. -This refactoring removes the dependency of the base class but is -compatible with the previous implementation.
                                          -This is for -#1050. -
                                        • -
                                        • -January 26, 2016, by Michael Wetter:
                                          -Added unit and quantity attributes. -
                                        • -
                                        • -January 19, 2016, by Michael Wetter:
                                          -Updated documentation due to the addition of an input for trace substance -in the mixing volume. -This is for - -issue 372. -
                                        • -
                                        • -October 30, 2015, by Matthis Thorade:
                                          -Removed nPorts=1 in extension of the base class -as the default must be 0. -This avoids a warning in the pedantic model check of Dymola 2016. -
                                        • -
                                        • -May 29, 2014, by Michael Wetter:
                                          -Removed undesirable annotation Evaluate=true. -
                                        • -
                                        • -September 10, 2013, by Michael Wetter:
                                          -Added missing each in declaration of -C_in_internal. -This eliminates a compilation error in OpenModelica. -
                                        • -
                                        • -March 27, 2013, by Michael Wetter:
                                          -Removed binding for C_in_internal to allow pedantic check in Dymola 2014. -
                                        • -
                                        • -February 22, by Michael Wetter:
                                          -Improved code that searches for the index of the trace substance in the medium model. -
                                        • -
                                        • -September 18, 2008 by Michael Wetter:
                                          -First implementation. -
                                        • -
                                        -"), Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100, +

                                        + This model can be used to inject trace substances into a system. + The model adds a mass flow rate to its port with a + trace substance concentration of 1. +

                                        +

                                        Typical use and important parameters

                                        +

                                        + A typical use of this model is to add carbon dioxide to room air, since the + carbon dioxide concentration is typically so small that it need not be + added to the room mass balance, and since the mass flow rate can be + made small compared to the room volume if the medium that leaves this + component has a carbon dioxide concentration of 1. + The parameter substanceName must be set to the name of the substance + that is injected into the fluid. +

                                        +

                                        + Note however that mixing volumes from the package + AixLib.Fluid.MixingVolumes + allow to directly add a trace substance mass flow rate, + which is more efficient than using this model. +

                                        + ",revisions=" +
                                          +
                                        • + November 14, 2019, by Michael Wetter:
                                          + Rewrote assignment of C_in_internal to avoid an initial algorithm section.
                                          + This is for #1250. +
                                        • +
                                        • + January 23, 2019, by Michael Wetter:
                                          + Refactored implementation to provide default medium choice. + This refactoring removes the dependency of the base class but is + compatible with the previous implementation.
                                          + This is for + #1050. +
                                        • +
                                        • + January 26, 2016, by Michael Wetter:
                                          + Added unit and quantity attributes. +
                                        • +
                                        • + January 19, 2016, by Michael Wetter:
                                          + Updated documentation due to the addition of an input for trace substance + in the mixing volume. + This is for + + issue 372. +
                                        • +
                                        • + October 30, 2015, by Matthis Thorade:
                                          + Removed nPorts=1 in extension of the base class + as the default must be 0. + This avoids a warning in the pedantic model check of Dymola 2016. +
                                        • +
                                        • + May 29, 2014, by Michael Wetter:
                                          + Removed undesirable annotation Evaluate=true. +
                                        • +
                                        • + September 10, 2013, by Michael Wetter:
                                          + Added missing each in declaration of + C_in_internal. + This eliminates a compilation error in OpenModelica. +
                                        • +
                                        • + March 27, 2013, by Michael Wetter:
                                          + Removed binding for C_in_internal to allow pedantic check in Dymola 2014. +
                                        • +
                                        • + February 22, by Michael Wetter:
                                          + Improved code that searches for the index of the trace substance in the medium model. +
                                        • +
                                        • + September 18, 2008 by Michael Wetter:
                                          + First implementation. +
                                        • +
                                        + "), Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100, -100},{100,100}}), graphics={ Rectangle( extent={{20,60},{100,-60}}, @@ -183,7 +182,7 @@ First implementation. fillPattern=FillPattern.Solid), Text( extent={{-54,32},{16,-30}}, - lineColor={255,0,0}, + textColor={255,0,0}, fillColor={255,0,0}, fillPattern=FillPattern.Solid, textString="m"), @@ -194,19 +193,20 @@ First implementation. fillPattern=FillPattern.Solid), Text( extent={{-212,62},{-72,30}}, - lineColor={0,0,0}, + textColor={0,0,0}, fillColor={255,255,255}, fillPattern=FillPattern.Solid, visible=use_m_flow_in, textString="m_flow"), Text( extent={{-100,14},{-60,-20}}, - lineColor={0,0,0}, + textColor={0,0,0}, fillColor={255,255,255}, fillPattern=FillPattern.Solid, textString="C"), Text( extent={{-150,110},{150,150}}, textString="%name", - lineColor={0,0,255})})); + textColor={0,0,255})}), + __Dymola_LockedEditing="Model from IBPSA"); end TraceSubstancesFlowSource; diff --git a/AixLib/Fluid/Sources/Validation/BaseClasses/BoundarySystem.mo b/AixLib/Fluid/Sources/Validation/BaseClasses/BoundarySystem.mo index 06da348169..633d36b380 100644 --- a/AixLib/Fluid/Sources/Validation/BaseClasses/BoundarySystem.mo +++ b/AixLib/Fluid/Sources/Validation/BaseClasses/BoundarySystem.mo @@ -11,10 +11,11 @@ model BoundarySystem "System model for testing of boundary condition" m_flow=-1, nPorts=1) "Mass flow source" annotation (Placement(transformation(extent={{60,-10},{40,10}}))); - Modelica.SIunits.Temperature T = senTem.T "Temperature coming out of the source"; - Modelica.SIunits.MassFraction Xi[Medium.nXi]=sou.ports[1].Xi_outflow + Modelica.Units.SI.Temperature T=senTem.T + "Temperature coming out of the source"; + Modelica.Units.SI.MassFraction Xi[Medium.nXi]=sou.ports[1].Xi_outflow "Mass fraction coming out of the source"; - Modelica.SIunits.Pressure p = sou.ports[1].p "Pressure in the source"; + Modelica.Units.SI.Pressure p=sou.ports[1].p "Pressure in the source"; Modelica.Fluid.Sensors.TemperatureTwoPort senTem( redeclare package Medium = Medium, allowFlowReversal=false, @@ -29,23 +30,24 @@ equation connect(sin.ports[1], senTem.port_b) annotation (Line(points={{40,0},{10,0}}, color={0,127,255})); annotation (Documentation(info=" -

                                        -System model used to test the boundary conditions for different media. -This model has been introduced to get access to the medium mass fraction, -which is a protected variable in - -AixLib.Fluid.Sources.Boundary_pT. -Therefore, this model has been created so that the boundary model has a port which -is used to access the mass fraction. -

                                        -", revisions=" -
                                          -
                                        • -September 13, 2019 by Michael Wetter:
                                          -First implementation.
                                          -This is for -AixLib, #1205. -
                                        • -
                                        -")); +

                                        + System model used to test the boundary conditions for different media. + This model has been introduced to get access to the medium mass fraction, + which is a protected variable in + + AixLib.Fluid.Sources.Boundary_pT. + Therefore, this model has been created so that the boundary model has a port which + is used to access the mass fraction. +

                                        + ",revisions=" +
                                          +
                                        • + September 13, 2019 by Michael Wetter:
                                          + First implementation.
                                          + This is for + IBPSA, #1205. +
                                        • +
                                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end BoundarySystem; diff --git a/AixLib/Fluid/Sources/Validation/BaseClasses/BoundarySystemWithX_in.mo b/AixLib/Fluid/Sources/Validation/BaseClasses/BoundarySystemWithX_in.mo index c5b9a6bce5..2283ca4323 100644 --- a/AixLib/Fluid/Sources/Validation/BaseClasses/BoundarySystemWithX_in.mo +++ b/AixLib/Fluid/Sources/Validation/BaseClasses/BoundarySystemWithX_in.mo @@ -12,18 +12,19 @@ equation connect(sou.X_in, X_in) annotation (Line(points={{-62,-4},{-82,-4},{-82,0},{-120, 0}}, color={0,0,127})); annotation (Documentation(info=" -

                                        -System model used to test the boundary conditions for different media -with prescribed mass fraction X. -

                                        -", revisions=" -
                                          -
                                        • -September 13, 2019 by Michael Wetter:
                                          -First implementation.
                                          -This is for -AixLib, #1205. -
                                        • -
                                        -")); +

                                        + System model used to test the boundary conditions for different media + with prescribed mass fraction X. +

                                        + ",revisions=" +
                                          +
                                        • + September 13, 2019 by Michael Wetter:
                                          + First implementation.
                                          + This is for + IBPSA, #1205. +
                                        • +
                                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end BoundarySystemWithX_in; diff --git a/AixLib/Fluid/Sources/Validation/BaseClasses/BoundarySystemWithXi_in.mo b/AixLib/Fluid/Sources/Validation/BaseClasses/BoundarySystemWithXi_in.mo index 630c6dcb98..527b141d6e 100644 --- a/AixLib/Fluid/Sources/Validation/BaseClasses/BoundarySystemWithXi_in.mo +++ b/AixLib/Fluid/Sources/Validation/BaseClasses/BoundarySystemWithXi_in.mo @@ -12,18 +12,19 @@ equation connect(sou.Xi_in, Xi_in) annotation (Line(points={{-62,-4},{-82,-4},{-82,0},{ -120,0}}, color={0,0,127})); annotation (Documentation(info=" -

                                        -System model used to test the boundary conditions for different media -with independent prescribed mass fraction Xi. -

                                        -", revisions=" -
                                          -
                                        • -September 13, 2019 by Michael Wetter:
                                          -First implementation.
                                          -This is for -AixLib, #1205. -
                                        • -
                                        -")); +

                                        + System model used to test the boundary conditions for different media + with independent prescribed mass fraction Xi. +

                                        + ",revisions=" +
                                          +
                                        • + September 13, 2019 by Michael Wetter:
                                          + First implementation.
                                          + This is for + IBPSA, #1205. +
                                        • +
                                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end BoundarySystemWithXi_in; diff --git a/AixLib/Fluid/Sources/Validation/BaseClasses/package.mo b/AixLib/Fluid/Sources/Validation/BaseClasses/package.mo index 5403e2448b..ae7260d5c9 100644 --- a/AixLib/Fluid/Sources/Validation/BaseClasses/package.mo +++ b/AixLib/Fluid/Sources/Validation/BaseClasses/package.mo @@ -1,6 +1,7 @@ within AixLib.Fluid.Sources.Validation; package BaseClasses "Package with base classes for AixLib.Fluid.Sources.Validation" extends Modelica.Icons.BasesPackage; + annotation (preferredView="info", Documentation(info="

                                        This package contains base classes that are used to construct the models in diff --git a/AixLib/Fluid/Sources/Validation/Boundary.mo b/AixLib/Fluid/Sources/Validation/Boundary.mo index c6e07f384c..746f2e790b 100644 --- a/AixLib/Fluid/Sources/Validation/Boundary.mo +++ b/AixLib/Fluid/Sources/Validation/Boundary.mo @@ -38,25 +38,25 @@ model Boundary "Validation model for boundary with different media" annotation (Placement(transformation(extent={{20,-60},{40,-40}}))); annotation (Documentation(info=" -

                                        -Validation model for -AixLib.Fluid.Sources.Boundary_pT -for different media. -

                                        -", revisions=" -
                                          -
                                        • -September 13, 2019 by Michael Wetter:
                                          -First implementation.
                                          -This is for -AixLib, #1205. -
                                        • -
                                        -"), -__Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/Sources/Validation/Boundary.mos" +

                                        + Validation model for + AixLib.Fluid.Sources.Boundary_pT + for different media. +

                                        + ",revisions=" +
                                          +
                                        • + September 13, 2019 by Michael Wetter:
                                          + First implementation.
                                          + This is for + IBPSA, #1205. +
                                        • +
                                        + "), +__Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Sources/Validation/Boundary.mos" "Simulate and plot"), experiment( StopTime=1, - Tolerance=1e-06)); + Tolerance=1e-06), + __Dymola_LockedEditing="Model from IBPSA"); end Boundary; diff --git a/AixLib/Fluid/Sources/Validation/BoundaryWithX_in.mo b/AixLib/Fluid/Sources/Validation/BoundaryWithX_in.mo index 7b01302c76..45b7b83ab3 100644 --- a/AixLib/Fluid/Sources/Validation/BoundaryWithX_in.mo +++ b/AixLib/Fluid/Sources/Validation/BoundaryWithX_in.mo @@ -42,25 +42,25 @@ equation connect(X_2.y, bouMoiAirCO2.X_in) annotation (Line(points={{1,76},{10,76},{10, 40},{18,40}}, color={0,0,127})); annotation (Documentation(info=" -

                                        -Validation model for -AixLib.Fluid.Sources.Boundary_pT -for different media and with mass fraction X prescribed by an input. -

                                        -", revisions=" -
                                          -
                                        • -September 13, 2019 by Michael Wetter:
                                          -First implementation.
                                          -This is for -AixLib, #1205. -
                                        • -
                                        -"), -__Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/Sources/Validation/BoundaryWithX_in.mos" +

                                        + Validation model for + AixLib.Fluid.Sources.Boundary_pT + for different media and with mass fraction X prescribed by an input. +

                                        + ",revisions=" +
                                          +
                                        • + September 13, 2019 by Michael Wetter:
                                          + First implementation.
                                          + This is for + IBPSA, #1205. +
                                        • +
                                        + "), +__Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Sources/Validation/BoundaryWithX_in.mos" "Simulate and plot"), experiment( StopTime=1, - Tolerance=1e-06)); + Tolerance=1e-06), + __Dymola_LockedEditing="Model from IBPSA"); end BoundaryWithX_in; diff --git a/AixLib/Fluid/Sources/Validation/BoundaryWithXi_in.mo b/AixLib/Fluid/Sources/Validation/BoundaryWithXi_in.mo index b7559ba9c0..a88f81ceb6 100644 --- a/AixLib/Fluid/Sources/Validation/BoundaryWithXi_in.mo +++ b/AixLib/Fluid/Sources/Validation/BoundaryWithXi_in.mo @@ -42,25 +42,25 @@ equation connect(Xi_1.y, bouMoiAirCO2.Xi_in) annotation (Line(points={{1,76},{10,76},{10, 40},{18,40}}, color={0,0,127})); annotation (Documentation(info=" -

                                        -Validation model for -AixLib.Fluid.Sources.Boundary_pT -for different media and with independent mass fraction Xi prescribed by an input. -

                                        -", revisions=" -
                                          -
                                        • -September 13, 2019 by Michael Wetter:
                                          -First implementation.
                                          -This is for -AixLib, #1205. -
                                        • -
                                        -"), -__Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/Sources/Validation/BoundaryWithXi_in.mos" +

                                        + Validation model for + AixLib.Fluid.Sources.Boundary_pT + for different media and with independent mass fraction Xi prescribed by an input. +

                                        + ",revisions=" +
                                          +
                                        • + September 13, 2019 by Michael Wetter:
                                          + First implementation.
                                          + This is for + IBPSA, #1205. +
                                        • +
                                        + "), +__Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Sources/Validation/BoundaryWithXi_in.mos" "Simulate and plot"), experiment( StopTime=1, - Tolerance=1e-06)); + Tolerance=1e-06), + __Dymola_LockedEditing="Model from IBPSA"); end BoundaryWithXi_in; diff --git a/AixLib/Fluid/Sources/Validation/Outside_CpData_Directions.mo b/AixLib/Fluid/Sources/Validation/Outside_CpData_Directions.mo new file mode 100644 index 0000000000..5cb4668ee6 --- /dev/null +++ b/AixLib/Fluid/Sources/Validation/Outside_CpData_Directions.mo @@ -0,0 +1,97 @@ +within AixLib.Fluid.Sources.Validation; +model Outside_CpData_Directions + "Test model for wind pressure using a wind pressure profile that is 1 for normal angle of attack, and goes to zero otherwise" + extends Modelica.Icons.Example; + package Medium = AixLib.Media.Air "Medium model for air"; + + parameter Modelica.Units.SI.Angle incAngSurNor[:]= + {0,1,5,90,180,315,355,359}*2*Modelica.Constants.pi/360 + "Wind incidence angles"; + parameter Real Cp[:]={1,0.01,0,0,0,0,0,0.01} + "Cp values at the relative surface wind incidence angles"; + AixLib.Fluid.Sources.Outside_CpData nor( + redeclare package Medium = Medium, + incAngSurNor=incAngSurNor, + Cp=Cp, + azi=AixLib.Types.Azimuth.N) + "Model to compute wind pressure on North-facing surface" + annotation (Placement(transformation(extent={{0,40},{20,60}}))); + AixLib.Fluid.Sources.Outside_CpData eas( + redeclare package Medium = Medium, + incAngSurNor=incAngSurNor, + Cp=Cp, + azi=AixLib.Types.Azimuth.E) + "Model to compute wind pressure on East-facing surface" + annotation (Placement(transformation(extent={{0,0},{20,20}}))); + AixLib.Fluid.Sources.Outside_CpData sou( + redeclare package Medium = Medium, + incAngSurNor=incAngSurNor, + Cp=Cp, + azi=AixLib.Types.Azimuth.S) + "Model to compute wind pressure on South-facing surface" + annotation (Placement(transformation(extent={{0,-40},{20,-20}}))); + AixLib.Fluid.Sources.Outside_CpData wes( + redeclare package Medium = Medium, + incAngSurNor=incAngSurNor, + Cp=Cp, + azi=AixLib.Types.Azimuth.W) + "Model to compute wind pressure on West-facing surface" + annotation (Placement(transformation(extent={{0,-80},{20,-60}}))); + + AixLib.BoundaryConditions.WeatherData.ReaderTMY3 weaDat( + filNam=Modelica.Utilities.Files.loadResource("modelica://AixLib/Resources/weatherdata/USA_CA_San.Francisco.Intl.AP.724940_TMY3.mos"), + winSpeSou=AixLib.BoundaryConditions.Types.DataSource.Parameter, + winSpe=1, + winDirSou=AixLib.BoundaryConditions.Types.DataSource.Input) + "Weather data" + annotation (Placement(transformation(extent={{-40,40},{-20,60}}))); + + Modelica.Blocks.Sources.Ramp winDir( + height=2*Modelica.Constants.pi, + duration=24*3600) + "Wind direction" + annotation (Placement(transformation(extent={{-80,34},{-60,54}}))); + +equation + connect(weaDat.winDir_in, winDir.y) + annotation (Line(points={{-41,44},{-59,44}}, color={0,0,127})); + connect(weaDat.weaBus, nor.weaBus) annotation (Line( + points={{-20,50},{-10,50},{-10,50.2},{0,50.2}}, + color={255,204,51}, + thickness=0.5)); + connect(weaDat.weaBus, eas.weaBus) annotation (Line( + points={{-20,50},{-10,50},{-10,10.2},{0,10.2}}, + color={255,204,51}, + thickness=0.5)); + connect(weaDat.weaBus, sou.weaBus) annotation (Line( + points={{-20,50},{-10,50},{-10,-29.8},{0,-29.8}}, + color={255,204,51}, + thickness=0.5)); + connect(weaDat.weaBus, wes.weaBus) annotation (Line( + points={{-20,50},{-10,50},{-10,-69.8},{0,-69.8}}, + color={255,204,51}, + thickness=0.5)); + annotation (__Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Sources/Validation/Outside_CpData_Directions.mos" + "Simulate and plot"), + Documentation(info=" +

                                        + This model demonstrates the use of a source for ambient conditions that computes + the wind pressure on a facade of a building using a user-defined wind pressure profile. + In this model, the wind pressure profile is not realistic, but rather it is set to 1 + if the wind strikes the surface perpendicular, and otherwise it goes back to 0. +

                                        + ",revisions=" +
                                          +
                                        • + February 11, 2022, by Michael Wetter:
                                          + First implementation.
                                          + This is for + IBPSA, #1436. +
                                        • +
                                        + "), + experiment( + StopTime=86400, + Tolerance=1e-06), + __Dymola_LockedEditing="Model from IBPSA"); +end Outside_CpData_Directions; diff --git a/AixLib/Fluid/Sources/Validation/package.order b/AixLib/Fluid/Sources/Validation/package.order index e3f1a62e5e..baa344ebac 100644 --- a/AixLib/Fluid/Sources/Validation/package.order +++ b/AixLib/Fluid/Sources/Validation/package.order @@ -1,4 +1,5 @@ Boundary BoundaryWithX_in BoundaryWithXi_in +Outside_CpData_Directions BaseClasses diff --git a/AixLib/Fluid/Sources/package.order b/AixLib/Fluid/Sources/package.order index 5754ab5bd1..22050cad70 100644 --- a/AixLib/Fluid/Sources/package.order +++ b/AixLib/Fluid/Sources/package.order @@ -4,6 +4,7 @@ MassFlowSource_T MassFlowSource_WeatherData MassFlowSource_h Outside +Outside_CpData Outside_CpLowRise PropertySource_T PropertySource_h diff --git a/AixLib/Fluid/Storage/BaseClasses/Bouyancy.mo b/AixLib/Fluid/Storage/BaseClasses/Bouyancy.mo index 9365251524..1ceba9715a 100644 --- a/AixLib/Fluid/Storage/BaseClasses/Bouyancy.mo +++ b/AixLib/Fluid/Storage/BaseClasses/Bouyancy.mo @@ -1,15 +1,15 @@ within AixLib.Fluid.Storage.BaseClasses; model Bouyancy - parameter Modelica.SIunits.Area A = 1; - parameter Modelica.SIunits.RelativePressureCoefficient beta = 350e-6; - parameter Modelica.SIunits.Length dx = 0.2; + parameter Modelica.Units.SI.Area A=1; + parameter Modelica.Units.SI.RelativePressureCoefficient beta=350e-6; + parameter Modelica.Units.SI.Length dx=0.2; parameter Real kappa = 0.4; - Modelica.SIunits.TemperatureDifference dT; - Modelica.SIunits.ThermalConductivity lambda_eff; - parameter Modelica.SIunits.Acceleration g = Modelica.Constants.g_n; - Modelica.SIunits.SpecificHeatCapacity cp = 4180; - Modelica.SIunits.ThermalConductivity lambda = 0.598; - Modelica.SIunits.Density rho = 1000; + Modelica.Units.SI.TemperatureDifference dT; + Modelica.Units.SI.ThermalConductivity lambda_eff; + parameter Modelica.Units.SI.Acceleration g=Modelica.Constants.g_n; + Modelica.Units.SI.SpecificHeatCapacity cp=4180; + Modelica.Units.SI.ThermalConductivity lambda=0.598; + Modelica.Units.SI.Density rho=1000; Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a port_a annotation(Placement(transformation(extent = {{-16, 86}, {4, 106}}))); Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_b port_b annotation(Placement(transformation(extent = {{-16, -104}, {4, -84}}))); equation diff --git a/AixLib/Fluid/Storage/BaseClasses/Buoyancy.mo b/AixLib/Fluid/Storage/BaseClasses/Buoyancy.mo index d65a6455f5..9a29029420 100644 --- a/AixLib/Fluid/Storage/BaseClasses/Buoyancy.mo +++ b/AixLib/Fluid/Storage/BaseClasses/Buoyancy.mo @@ -5,27 +5,27 @@ model Buoyancy replaceable package Medium = Modelica.Media.Interfaces.PartialMedium "Medium model" annotation ( choicesAllMatching = true); - parameter Modelica.SIunits.Volume V "Volume"; + parameter Modelica.Units.SI.Volume V "Volume"; parameter Integer nSeg(min=2) = 2 "Number of volume segments"; - parameter Modelica.SIunits.Time tau(min=0) "Time constant for mixing"; + parameter Modelica.Units.SI.Time tau(min=0) "Time constant for mixing"; Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a[nSeg] heatPort "Heat input into the volumes" annotation (Placement(transformation(extent={{90,-10},{110,10}}))); - Modelica.SIunits.HeatFlowRate[nSeg-1] Q_flow + Modelica.Units.SI.HeatFlowRate[nSeg - 1] Q_flow "Heat flow rate from segment i+1 to i"; protected parameter Medium.ThermodynamicState sta_default = Medium.setState_pTX(T=Medium.T_default, p=Medium.p_default, X=Medium.X_default[1:Medium.nXi]) "Medium state at default properties"; - parameter Modelica.SIunits.Density rho_default=Medium.density(sta_default) + parameter Modelica.Units.SI.Density rho_default=Medium.density(sta_default) "Density, used to compute fluid mass"; - parameter Modelica.SIunits.SpecificHeatCapacity cp_default=Medium.specificHeatCapacityCp(sta_default) - "Specific heat capacity"; + parameter Modelica.Units.SI.SpecificHeatCapacity cp_default= + Medium.specificHeatCapacityCp(sta_default) "Specific heat capacity"; parameter Real k(unit="W/K") = V*rho_default*cp_default/tau/nSeg "Proportionality constant, since we use dT instead of dH"; - Modelica.SIunits.TemperatureDifference dT[nSeg-1] + Modelica.Units.SI.TemperatureDifference dT[nSeg - 1] "Temperature difference between adjoining volumes"; equation for i in 1:nSeg-1 loop @@ -39,46 +39,46 @@ equation end for; heatPort[nSeg].Q_flow = Q_flow[nSeg-1]; annotation (Documentation(info=" -

                                        -This model outputs a heat flow rate that can be added to fluid volumes -in order to emulate buoyancy during a temperature inversion. -For simplicity, this model does not compute a buoyancy induced mass flow rate, -but rather a heat flow that has the same magnitude as the enthalpy flow -associated with the buoyancy induced mass flow rate. -

                                        -", revisions=" -
                                          -
                                        • -June 7, 2018 by Filip Jorissen:
                                          -Copied model from Buildings and update the model accordingly. -This is for -#314. -
                                        • -
                                        • -December 14, 2012 by Michael Wetter:
                                          -Renamed protected parameters for consistency with naming convention. -
                                        • -
                                        • -October 8, 2011 by Michael Wetter:
                                          -Added noEvent(...) to -Q_flow[i] = k*smooth(1, if dT[i]>0 then dT[i]^2 else 0); -since the equation returns the same value to the left and right of -dT[i]>0. -
                                        • -
                                        • -September 16, 2011 by Michael Wetter:
                                          -Changed the implementation from Q_flow[i] = k*max(heatPort[i+1].T-heatPort[i].T, 0); to -Q_flow[i] = k*smooth(1, if dT[i]>0 then dT[i]^2 else 0);. -The previous implementation was not differentiable. In modeling a solar system, this -change reduced the computing time by a factor of 20 during the time when the pumps -were almost switched off and colder temperature was fed from the collector to the tank. -
                                        • -
                                        • -October 28, 2008 by Michael Wetter:
                                          -First implementation. -
                                        • -
                                        -"), +

                                        + This model outputs a heat flow rate that can be added to fluid volumes + in order to emulate buoyancy during a temperature inversion. + For simplicity, this model does not compute a buoyancy induced mass flow rate, + but rather a heat flow that has the same magnitude as the enthalpy flow + associated with the buoyancy induced mass flow rate. +

                                        + ",revisions=" +
                                          +
                                        • + June 7, 2018 by Filip Jorissen:
                                          + Copied model from Buildings and update the model accordingly. + This is for + #314. +
                                        • +
                                        • + December 14, 2012 by Michael Wetter:
                                          + Renamed protected parameters for consistency with naming convention. +
                                        • +
                                        • + October 8, 2011 by Michael Wetter:
                                          + Added noEvent(...) to + Q_flow[i] = k*smooth(1, if dT[i]>0 then dT[i]^2 else 0); + since the equation returns the same value to the left and right of + dT[i]>0. +
                                        • +
                                        • + September 16, 2011 by Michael Wetter:
                                          + Changed the implementation from Q_flow[i] = k*max(heatPort[i+1].T-heatPort[i].T, 0); to + Q_flow[i] = k*smooth(1, if dT[i]>0 then dT[i]^2 else 0);. + The previous implementation was not differentiable. In modeling a solar system, this + change reduced the computing time by a factor of 20 during the time when the pumps + were almost switched off and colder temperature was fed from the collector to the tank. +
                                        • +
                                        • + October 28, 2008 by Michael Wetter:
                                          + First implementation. +
                                        • +
                                        + "), Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}), graphics={ Rectangle( @@ -115,5 +115,6 @@ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}) lineColor={0,0,255}, pattern=LinePattern.None, fillColor={0,0,127}, - fillPattern=FillPattern.Solid)})); + fillPattern=FillPattern.Solid)}), + __Dymola_LockedEditing="Model from IBPSA"); end Buoyancy; diff --git a/AixLib/Fluid/Storage/BaseClasses/Examples/IndirectTankHeatExchanger.mo b/AixLib/Fluid/Storage/BaseClasses/Examples/IndirectTankHeatExchanger.mo index c44b8cf3c9..0b6f56ad97 100644 --- a/AixLib/Fluid/Storage/BaseClasses/Examples/IndirectTankHeatExchanger.mo +++ b/AixLib/Fluid/Storage/BaseClasses/Examples/IndirectTankHeatExchanger.mo @@ -59,39 +59,40 @@ equation "Simulate and plot"), experiment(Tolerance=1e-6, StopTime=15), Documentation(info=" -

                                        -This model provides an example of how the - -AixLib.Fluid.Storage.BaseClasses.IndirectTankHeatExchanger -model is used. In the model water flows from a flow source through -the heat exchanger to a low pressure environment. The stagnant fluid on the outside -of the heat exchanger is modeled as a constant temperature.
                                        -

                                        -", +

                                        + This model provides an example of how the + + AixLib.Fluid.Storage.BaseClasses.IndirectTankHeatExchanger + model is used. In the model water flows from a flow source through + the heat exchanger to a low pressure environment. The stagnant fluid on the outside + of the heat exchanger is modeled as a constant temperature.
                                        +

                                        + ", revisions=" -
                                          -
                                        • -June 7, 2018 by Filip Jorissen:
                                          -Copied model from Buildings and update the model accordingly. -This is for -#314. -
                                        • -
                                        • -February 27, 2016 by Michael Wetter:
                                          -Stored example in a single file rather than a file with multiple examples. -This is for -#488. -
                                        • -
                                        • -December 22, 2014 by Michael Wetter:
                                          -Removed Modelica.Fluid.System -to address issue -#311. -
                                        • -
                                        • -March 27, 2013 by Peter Grant:
                                          -First implementation -
                                        • -
                                        -")); +
                                          +
                                        • + June 7, 2018 by Filip Jorissen:
                                          + Copied model from Buildings and update the model accordingly. + This is for + #314. +
                                        • +
                                        • + February 27, 2016 by Michael Wetter:
                                          + Stored example in a single file rather than a file with multiple examples. + This is for + #488. +
                                        • +
                                        • + December 22, 2014 by Michael Wetter:
                                          + Removed Modelica.Fluid.System + to address issue + #311. +
                                        • +
                                        • + March 27, 2013 by Peter Grant:
                                          + First implementation +
                                        • +
                                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end IndirectTankHeatExchanger; diff --git a/AixLib/Fluid/Storage/BaseClasses/HeatTransferBuoyancyWetter.mo b/AixLib/Fluid/Storage/BaseClasses/HeatTransferBuoyancyWetter.mo index 6b862df941..c0855a72b8 100644 --- a/AixLib/Fluid/Storage/BaseClasses/HeatTransferBuoyancyWetter.mo +++ b/AixLib/Fluid/Storage/BaseClasses/HeatTransferBuoyancyWetter.mo @@ -2,15 +2,16 @@ within AixLib.Fluid.Storage.BaseClasses; model HeatTransferBuoyancyWetter "Heat transfer with buoyancy as in Buildings library" extends AixLib.Fluid.Storage.BaseClasses.PartialHeatTransferLayers; - parameter Modelica.SIunits.Time tau(min=0)=100 "Time constant for mixing"; - Modelica.SIunits.HeatFlowRate[n-1] qFlow "Heat flow rate from segment i+1 to i"; + parameter Modelica.Units.SI.Time tau(min=0) = 100 "Time constant for mixing"; + Modelica.Units.SI.HeatFlowRate[n - 1] qFlow + "Heat flow rate from segment i+1 to i"; protected - parameter Modelica.SIunits.Density rho0=1000 + parameter Modelica.Units.SI.Density rho0=1000 "Density, used to compute fluid mass"; - parameter Modelica.SIunits.SpecificHeatCapacity cp0=4180 + parameter Modelica.Units.SI.SpecificHeatCapacity cp0=4180 "Specific heat capacity"; - Modelica.SIunits.TemperatureDifference dT[n-1] + Modelica.Units.SI.TemperatureDifference dT[n - 1] "Temperature difference between adjoining volumes"; parameter Real k(unit="W/K2") = data.hTank*Modelica.Constants.pi/4*data.dTank^2*rho0*cp0/tau/n "Proportionality constant, since we use dT instead of dH"; diff --git a/AixLib/Fluid/Storage/BaseClasses/HeatTransferLambdaEff.mo b/AixLib/Fluid/Storage/BaseClasses/HeatTransferLambdaEff.mo index cdb7753648..2a6f2561bf 100644 --- a/AixLib/Fluid/Storage/BaseClasses/HeatTransferLambdaEff.mo +++ b/AixLib/Fluid/Storage/BaseClasses/HeatTransferLambdaEff.mo @@ -2,25 +2,28 @@ within AixLib.Fluid.Storage.BaseClasses; model HeatTransferLambdaEff "Heat transfer with buoyancy and effective conductivity" extends AixLib.Fluid.Storage.BaseClasses.PartialHeatTransferLayers; - Modelica.SIunits.HeatFlowRate[n-1] qFlow "Heat flow rate from segment i+1 to i"; + Modelica.Units.SI.HeatFlowRate[n - 1] qFlow + "Heat flow rate from segment i+1 to i"; protected parameter Real kappa=0.41 "Karman constant"; - parameter Modelica.SIunits.Length height=data.hTank/n + parameter Modelica.Units.SI.Length height=data.hTank/n "Height of fluid layers"; parameter Real beta=350e-6 "Thermal expansion coefficient in 1/K"; - parameter Modelica.SIunits.Area A=Modelica.Constants.pi/4*data.dTank^2 + parameter Modelica.Units.SI.Area A=Modelica.Constants.pi/4*data.dTank^2 "Area of heat transfer between layers"; - parameter Modelica.SIunits.Density rho=1000 + parameter Modelica.Units.SI.Density rho=1000 "Density, used to compute fluid mass"; - parameter Modelica.SIunits.SpecificHeatCapacity c_p=4180 + parameter Modelica.Units.SI.SpecificHeatCapacity c_p=4180 "Specific heat capacity"; // - Modelica.SIunits.TemperatureDifference dT[n-1] + Modelica.Units.SI.TemperatureDifference dT[n - 1] "Temperature difference between adjoining volumes"; - Modelica.SIunits.ThermalConductance[n-1] k "Effective heat transfer coefficient"; - Modelica.SIunits.ThermalConductivity[ n-1] lambda "Effective heat conductivity"; - parameter Modelica.SIunits.ThermalConductivity lambdaWater=0.64 + Modelica.Units.SI.ThermalConductance[n - 1] k + "Effective heat transfer coefficient"; + Modelica.Units.SI.ThermalConductivity[n - 1] lambda + "Effective heat conductivity"; + parameter Modelica.Units.SI.ThermalConductivity lambdaWater=0.64 "Thermal conductivity of water"; equation diff --git a/AixLib/Fluid/Storage/BaseClasses/HeatTransferLambdaEffSmooth.mo b/AixLib/Fluid/Storage/BaseClasses/HeatTransferLambdaEffSmooth.mo index 4ee1ff1249..fc49b0b598 100644 --- a/AixLib/Fluid/Storage/BaseClasses/HeatTransferLambdaEffSmooth.mo +++ b/AixLib/Fluid/Storage/BaseClasses/HeatTransferLambdaEffSmooth.mo @@ -2,25 +2,28 @@ within AixLib.Fluid.Storage.BaseClasses; model HeatTransferLambdaEffSmooth "Heat transfer with buoyancy and smoothing" extends AixLib.Fluid.Storage.BaseClasses.PartialHeatTransferLayers; - Modelica.SIunits.HeatFlowRate[n-1] qFlow "Heat flow rate from segment i+1 to i"; + Modelica.Units.SI.HeatFlowRate[n - 1] qFlow + "Heat flow rate from segment i+1 to i"; protected parameter Real kappa=0.41 "Karman constant"; - parameter Modelica.SIunits.Length height=data.hTank/n + parameter Modelica.Units.SI.Length height=data.hTank/n "Height of fluid layers"; parameter Real beta=350e-6 "Thermal expansion coefficient in 1/K"; - parameter Modelica.SIunits.Area A=Modelica.Constants.pi/4*data.dTank^2 + parameter Modelica.Units.SI.Area A=Modelica.Constants.pi/4*data.dTank^2 "Area of heat transfer between layers"; - parameter Modelica.SIunits.Density rho=1000 + parameter Modelica.Units.SI.Density rho=1000 "Density, used to compute fluid mass"; - parameter Modelica.SIunits.SpecificHeatCapacity c_p=4180 + parameter Modelica.Units.SI.SpecificHeatCapacity c_p=4180 "Specific heat capacity"; // - Modelica.SIunits.TemperatureDifference dT[n-1] + Modelica.Units.SI.TemperatureDifference dT[n - 1] "Temperature difference between adjoining volumes"; - Modelica.SIunits.ThermalConductance[n-1] k "Effective heat transfer coefficient"; - Modelica.SIunits.ThermalConductivity[ n-1] lambda "Effective heat conductivity"; - parameter Modelica.SIunits.ThermalConductivity lambdaWater=0.64 + Modelica.Units.SI.ThermalConductance[n - 1] k + "Effective heat transfer coefficient"; + Modelica.Units.SI.ThermalConductivity[n - 1] lambda + "Effective heat conductivity"; + parameter Modelica.Units.SI.ThermalConductivity lambdaWater=0.64 "Thermal conductivity of water"; equation diff --git a/AixLib/Fluid/Storage/BaseClasses/HeatTransferLambdaSimple.mo b/AixLib/Fluid/Storage/BaseClasses/HeatTransferLambdaSimple.mo index 8955301c1e..0671885e0d 100644 --- a/AixLib/Fluid/Storage/BaseClasses/HeatTransferLambdaSimple.mo +++ b/AixLib/Fluid/Storage/BaseClasses/HeatTransferLambdaSimple.mo @@ -2,9 +2,10 @@ within AixLib.Fluid.Storage.BaseClasses; model HeatTransferLambdaSimple "Heat transfer with effective conductivity" extends AixLib.Fluid.Storage.BaseClasses.PartialHeatTransferLayers; - Modelica.SIunits.HeatFlowRate[n-1] qFlow "Heat flow rate from segment i+1 to i"; + Modelica.Units.SI.HeatFlowRate[n - 1] qFlow + "Heat flow rate from segment i+1 to i"; - parameter Modelica.SIunits.ThermalConductivity const_lambda_eff=100 + parameter Modelica.Units.SI.ThermalConductivity const_lambda_eff=100 "Effective thermal conductivity"; Modelica.Blocks.Logical.TriggeredTrapezoid triggeredTrapezoid[n - 1]( @@ -18,14 +19,15 @@ model HeatTransferLambdaSimple "Heat transfer with effective conductivity" rotation=0))); protected - parameter Modelica.SIunits.Length height=data.hTank/n + parameter Modelica.Units.SI.Length height=data.hTank/n "Height of fluid layers"; - parameter Modelica.SIunits.Area A=Modelica.Constants.pi/4*data.dTank^2 + parameter Modelica.Units.SI.Area A=Modelica.Constants.pi/4*data.dTank^2 "Area of heat transfer between layers"; - Modelica.SIunits.TemperatureDifference dT[n-1] + Modelica.Units.SI.TemperatureDifference dT[n - 1] "Temperature difference between adjoining volumes"; - Modelica.SIunits.ThermalConductance k[n-1] "Effective heat transfer coefficient"; - parameter Modelica.SIunits.ThermalConductivity lambdaWater=0.64 + Modelica.Units.SI.ThermalConductance k[n - 1] + "Effective heat transfer coefficient"; + parameter Modelica.Units.SI.ThermalConductivity lambdaWater=0.64 "Thermal conductivity of water"; equation diff --git a/AixLib/Fluid/Storage/BaseClasses/HeatTransferOnlyConduction.mo b/AixLib/Fluid/Storage/BaseClasses/HeatTransferOnlyConduction.mo index 1a94145f80..e5f1100f0c 100644 --- a/AixLib/Fluid/Storage/BaseClasses/HeatTransferOnlyConduction.mo +++ b/AixLib/Fluid/Storage/BaseClasses/HeatTransferOnlyConduction.mo @@ -1,15 +1,16 @@ within AixLib.Fluid.Storage.BaseClasses; model HeatTransferOnlyConduction "Heat transfer for conduction only" extends AixLib.Fluid.Storage.BaseClasses.PartialHeatTransferLayers; - Modelica.SIunits.HeatFlowRate[n-1] qFlow "Heat flow rate from segment i+1 to i"; + Modelica.Units.SI.HeatFlowRate[n - 1] qFlow + "Heat flow rate from segment i+1 to i"; protected - parameter Modelica.SIunits.Length height=data.hTank/n + parameter Modelica.Units.SI.Length height=data.hTank/n "Height of fluid layers"; - parameter Modelica.SIunits.Area A=Modelica.Constants.pi/4*data.dTank^2 + parameter Modelica.Units.SI.Area A=Modelica.Constants.pi/4*data.dTank^2 "Area of heat transfer between layers"; - Modelica.SIunits.TemperatureDifference dT[n-1] + Modelica.Units.SI.TemperatureDifference dT[n - 1] "Temperature difference between adjoining volumes"; - parameter Modelica.SIunits.ThermalConductivity lambdaWater=0.64 + parameter Modelica.Units.SI.ThermalConductivity lambdaWater=0.64 "Thermal conductivity of water"; equation diff --git a/AixLib/Fluid/Storage/BaseClasses/HeatingCoil.mo b/AixLib/Fluid/Storage/BaseClasses/HeatingCoil.mo index 6dd35be617..25c939b220 100644 --- a/AixLib/Fluid/Storage/BaseClasses/HeatingCoil.mo +++ b/AixLib/Fluid/Storage/BaseClasses/HeatingCoil.mo @@ -4,12 +4,13 @@ model HeatingCoil "Heating coil for heat storage model" parameter Integer disHC = 2 "Number of elements for heating coil discretization"; - parameter Modelica.SIunits.Length lengthHC = 3 "Length of Pipe for HC"; + parameter Modelica.Units.SI.Length lengthHC=3 "Length of Pipe for HC"; - parameter Modelica.SIunits.CoefficientOfHeatTransfer hConHC=20 "Model assumptions heat transfer coefficient HC <-> Heating Water"; + parameter Modelica.Units.SI.CoefficientOfHeatTransfer hConHC=20 + "Model assumptions heat transfer coefficient HC <-> Heating Water"; - parameter Modelica.SIunits.Temperature TStart=298.15 - "Start Temperature of fluid" annotation(Dialog(group = "Initialization")); + parameter Modelica.Units.SI.Temperature TStart=298.15 + "Start Temperature of fluid" annotation (Dialog(group="Initialization")); parameter AixLib.DataBase.Pipes.PipeBaseDataDefinition pipeHC= AixLib.DataBase.Pipes.Copper.Copper_28x1() "Type of Pipe for HC"; @@ -38,14 +39,16 @@ model HeatingCoil "Heating coil for heat storage model" each final rhoPip=pipeHC.d, each final thickness=0.5*(pipeHC.d_o - pipeHC.d_i), each final T_start_in=TStart, - each final T_start_out=TStart, - each final nPorts=1) annotation (Placement(transformation(extent={{-16,-16},{16,16}}))); + each final T_start_out=TStart) annotation (Placement(transformation(extent={{-16,-16},{16,16}}))); protected parameter Medium.ThermodynamicState sta_default= Medium.setState_pTX(T=Medium.T_default, p=Medium.p_default, X=Medium.X_default); - parameter Modelica.SIunits.Density den_default=Medium.density(sta_default) "Density of Medium in default state"; - parameter Modelica.SIunits.SpecificHeatCapacity cp_default=Medium.heatCapacity_cp(sta_default) "Specific heat capacity of Medium in default state"; + parameter Modelica.Units.SI.Density den_default=Medium.density(sta_default) + "Density of Medium in default state"; + parameter Modelica.Units.SI.SpecificHeatCapacity cp_default= + Medium.heatCapacity_cp(sta_default) + "Specific heat capacity of Medium in default state"; equation @@ -62,12 +65,12 @@ equation color={0,127,255}, pattern=LinePattern.DashDotDot)); for i in 1:disHC-1 loop - connect(pipe[i].ports_b[1], pipe[i + 1].port_a) annotation (Line( + connect(pipe[i].port_b, pipe[i + 1].port_a) annotation (Line( points={{16,0},{28,0},{28,26},{-28,26},{-28,0},{-16,0}}, color={0,127,255}, pattern=LinePattern.DashDotDot)); end for; - connect(pipe[disHC].ports_b[1], port_b) annotation (Line( + connect(pipe[disHC].port_b, port_b) annotation (Line( points={{16,0},{100,0}}, color={0,127,255}, pattern=LinePattern.DashDotDot)); diff --git a/AixLib/Fluid/Storage/BaseClasses/IndirectTankHeatExchanger.mo b/AixLib/Fluid/Storage/BaseClasses/IndirectTankHeatExchanger.mo index 8eb91a243f..9bb763b758 100644 --- a/AixLib/Fluid/Storage/BaseClasses/IndirectTankHeatExchanger.mo +++ b/AixLib/Fluid/Storage/BaseClasses/IndirectTankHeatExchanger.mo @@ -9,7 +9,8 @@ model IndirectTankHeatExchanger extends AixLib.Fluid.Interfaces.TwoPortFlowResistanceParameters; extends AixLib.Fluid.Interfaces.LumpedVolumeDeclarations( - redeclare final package Medium = MediumHex); + final massDynamics=energyDynamics, + redeclare final package Medium = MediumHex); extends AixLib.Fluid.Interfaces.PartialTwoPortInterface( redeclare final package Medium = MediumHex, final show_T=false); @@ -18,39 +19,36 @@ model IndirectTankHeatExchanger annotation(HideResult=true); parameter Integer nSeg(min=2) "Number of segments in the heat exchanger"; - parameter Modelica.SIunits.HeatCapacity CHex + parameter Modelica.Units.SI.HeatCapacity CHex "Capacitance of the heat exchanger"; - parameter Modelica.SIunits.Volume volHexFlu + parameter Modelica.Units.SI.Volume volHexFlu "Volume of heat transfer fluid in the heat exchanger"; - parameter Modelica.SIunits.HeatFlowRate Q_flow_nominal + parameter Modelica.Units.SI.HeatFlowRate Q_flow_nominal "Heat transfer at nominal conditions" - annotation(Dialog(tab="General", group="Nominal condition")); + annotation (Dialog(tab="General", group="Nominal condition")); - final parameter Modelica.SIunits.ThermalConductance UA_nominal= - abs(Q_flow_nominal/(THex_nominal-TTan_nominal)) + final parameter Modelica.Units.SI.ThermalConductance UA_nominal=abs( + Q_flow_nominal/(THex_nominal - TTan_nominal)) "Nominal UA value for the heat exchanger"; - parameter Modelica.SIunits.Temperature TTan_nominal + parameter Modelica.Units.SI.Temperature TTan_nominal "Temperature of fluid inside the tank at UA_nominal" - annotation(Dialog(tab="General", group="Nominal condition")); - parameter Modelica.SIunits.Temperature THex_nominal + annotation (Dialog(tab="General", group="Nominal condition")); + parameter Modelica.Units.SI.Temperature THex_nominal "Temperature of fluid inside the heat exchanger at UA_nominal" - annotation(Dialog(tab="General", group="Nominal condition")); + annotation (Dialog(tab="General", group="Nominal condition")); parameter Real r_nominal(min=0, max=1)=0.5 "Ratio between coil inside and outside convective heat transfer" annotation(Dialog(tab="General", group="Nominal condition")); - parameter Modelica.SIunits.Diameter dExtHex + parameter Modelica.Units.SI.Diameter dExtHex "Exterior diameter of the heat exchanger pipe"; parameter Modelica.Fluid.Types.Dynamics energyDynamics=Modelica.Fluid.Types.Dynamics.DynamicFreeInitial "Formulation of energy balance for heat exchanger internal fluid mass" - annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Equations")); + annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Conservation equations")); parameter Modelica.Fluid.Types.Dynamics energyDynamicsSolid=energyDynamics "Formulation of energy balance for heat exchanger solid mass" - annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Equations")); - parameter Modelica.Fluid.Types.Dynamics massDynamics=energyDynamics - "Formulation of mass balance for heat exchanger" - annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Equations")); + annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Conservation equations")); parameter Boolean hA_flowDependent = true "Set to false to make the convective heat coefficient calculation of the fluid inside the coil independent of mass flow rate" @@ -82,7 +80,7 @@ model IndirectTankHeatExchanger each m_flow_nominal=m_flow_nominal, each V=volHexFlu/nSeg, each energyDynamics=energyDynamics, - each massDynamics=massDynamics, + each massDynamics=energyDynamics, each p_start=p_start, each T_start=T_start, each X_start=X_start, @@ -96,8 +94,8 @@ model IndirectTankHeatExchanger each T(start=T_start, fixed=(energyDynamicsSolid == Modelica.Fluid.Types.Dynamics.FixedInitial)), each der_T( - fixed=(energyDynamicsSolid == Modelica.Fluid.Types.Dynamics.SteadyStateInitial))) if - not energyDynamicsSolid == Modelica.Fluid.Types.Dynamics.SteadyState + fixed=(energyDynamicsSolid == Modelica.Fluid.Types.Dynamics.SteadyStateInitial))) + if not energyDynamicsSolid == Modelica.Fluid.Types.Dynamics.SteadyState "Thermal mass of the heat exchanger" annotation (Placement(transformation(extent={{-6,6},{14,26}}))); protected @@ -277,94 +275,101 @@ equation fillPattern=FillPattern.Solid)}), defaultComponentName="indTanHex", Documentation(info = " -

                                        - This model is a heat exchanger with a moving fluid on one side and a stagnant fluid on the other. - It is intended for use when a heat exchanger is submerged in a stagnant fluid. - For example, the heat exchanger in a storage tank which is part of a solar thermal system. -

                                        -

                                        - This component models the fluid in the heat exchanger, convection between the fluid and - the heat exchanger, and convection from the heat exchanger to the surrounding fluid. -

                                        -

                                        - The model is based on - AixLib.Fluid.HeatExchangers.BaseClasses.HACoilInside and - - AixLib.Fluid.HeatExchangers.BaseClasses.HANaturalCylinder. -

                                        -

                                        - The fluid ports are intended to be connected to a circulated heat transfer fluid - while the heat port is intended to be connected to a stagnant fluid. -

                                        - ", +

                                        + This model is a heat exchanger with a moving fluid on one side and a stagnant fluid on the other. + It is intended for use when a heat exchanger is submerged in a stagnant fluid. + For example, the heat exchanger in a storage tank which is part of a solar thermal system. +

                                        +

                                        + This component models the fluid in the heat exchanger, convection between the fluid and + the heat exchanger, and convection from the heat exchanger to the surrounding fluid. +

                                        +

                                        + The model is based on + AixLib.Fluid.HeatExchangers.BaseClasses.HACoilInside and + + AixLib.Fluid.HeatExchangers.BaseClasses.HANaturalCylinder. +

                                        +

                                        + The fluid ports are intended to be connected to a circulated heat transfer fluid + while the heat port is intended to be connected to a stagnant fluid. +

                                        + ", revisions=" -
                                          -
                                        • -April 9, 2021, by Michael Wetter:
                                          -Corrected placement of each keyword.
                                          -See Buidings, PR #2440. -
                                        • -
                                        • -April 14, 2020, by Michael Wetter:
                                          -Changed homotopyInitialization to a constant.
                                          -This is for -AixLib, #1341. -
                                        • -
                                        • -June 7, 2018 by Filip Jorissen:
                                          -Copied model from Buildings and update the model accordingly. -This is for -#314. -
                                        • -
                                        • -January 7, 2016, by Filip Jorissen:
                                          -Propagated flowDependent and temperatureDependent -in hAPipIns. -This is for issue -#454. -
                                        • -
                                        • -September 24, 2015 by Michael Wetter:
                                          -Set fixed attribute in cap.T to avoid -unspecified initial conditions. -
                                        • -
                                        • -July 2, 2015, by Michael Wetter:
                                          -Set prescribedHeatFlowRate=false in control volume. -
                                        • -
                                        • -July 1, 2015, by Filip Jorissen:
                                          -Added parameter energyDynamicsSolid. -This is for - -#434. -
                                        • -
                                        • -March 28, 2015, by Filip Jorissen:
                                          -Propagated allowFlowReversal. -
                                        • -
                                        • - August 29, 2014, by Michael Wetter:
                                          - Introduced MediumTan for the tank medium, and assigned Medium - to be equal to MediumHex. - This is to correct issue - #271. -
                                        • -
                                        • - June 18, 2014, by Michael Wetter:
                                          - Set initial equations for cap, and renamed this instance from - Cap to cap. - This was done to avoid a warning during translation, and to comply with - the coding convention. -
                                        • -
                                        • - October 8, 2013, by Michael Wetter:
                                          - Removed parameter show_V_flow. -
                                        • -
                                        • - January 29, 2013, by Peter Grant:
                                          - First implementation. -
                                        • -
                                        - ")); +
                                          +
                                        • + March 7, 2022, by Michael Wetter:
                                          + Set final massDynamics=energyDynamics.
                                          + This is for + #1542. +
                                        • +
                                        • + April 9, 2021, by Michael Wetter:
                                          + Corrected placement of each keyword.
                                          + See Buildings, PR #2440. +
                                        • +
                                        • + April 14, 2020, by Michael Wetter:
                                          + Changed homotopyInitialization to a constant.
                                          + This is for + IBPSA, #1341. +
                                        • +
                                        • + June 7, 2018 by Filip Jorissen:
                                          + Copied model from Buildings and update the model accordingly. + This is for + #314. +
                                        • +
                                        • + January 7, 2016, by Filip Jorissen:
                                          + Propagated flowDependent and temperatureDependent + in hAPipIns. + This is for issue + #454. +
                                        • +
                                        • + September 24, 2015 by Michael Wetter:
                                          + Set fixed attribute in cap.T to avoid + unspecified initial conditions. +
                                        • +
                                        • + July 2, 2015, by Michael Wetter:
                                          + Set prescribedHeatFlowRate=false in control volume. +
                                        • +
                                        • + July 1, 2015, by Filip Jorissen:
                                          + Added parameter energyDynamicsSolid. + This is for + + #434. +
                                        • +
                                        • + March 28, 2015, by Filip Jorissen:
                                          + Propagated allowFlowReversal. +
                                        • +
                                        • + August 29, 2014, by Michael Wetter:
                                          + Introduced MediumTan for the tank medium, and assigned Medium + to be equal to MediumHex. + This is to correct issue + #271. +
                                        • +
                                        • + June 18, 2014, by Michael Wetter:
                                          + Set initial equations for cap, and renamed this instance from + Cap to cap. + This was done to avoid a warning during translation, and to comply with + the coding convention. +
                                        • +
                                        • + October 8, 2013, by Michael Wetter:
                                          + Removed parameter show_V_flow. +
                                        • +
                                        • + January 29, 2013, by Peter Grant:
                                          + First implementation. +
                                        • +
                                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end IndirectTankHeatExchanger; diff --git a/AixLib/Fluid/Storage/BaseClasses/PartialStratified.mo b/AixLib/Fluid/Storage/BaseClasses/PartialStratified.mo index 06fdc7433f..328ba467d3 100644 --- a/AixLib/Fluid/Storage/BaseClasses/PartialStratified.mo +++ b/AixLib/Fluid/Storage/BaseClasses/PartialStratified.mo @@ -5,10 +5,10 @@ model PartialStratified import Modelica.Fluid.Types; import Modelica.Fluid.Types.Dynamics; - parameter Modelica.SIunits.Volume VTan "Tank volume"; - parameter Modelica.SIunits.Length hTan "Height of tank (without insulation)"; - parameter Modelica.SIunits.Length dIns "Thickness of insulation"; - parameter Modelica.SIunits.ThermalConductivity kIns = 0.04 + parameter Modelica.Units.SI.Volume VTan "Tank volume"; + parameter Modelica.Units.SI.Length hTan "Height of tank (without insulation)"; + parameter Modelica.Units.SI.Length dIns "Thickness of insulation"; + parameter Modelica.Units.SI.ThermalConductivity kIns=0.04 "Specific heat conductivity of insulation"; parameter Integer nSeg(min=2) = 2 "Number of volume segments"; @@ -16,10 +16,7 @@ model PartialStratified // Assumptions parameter Types.Dynamics energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial "Formulation of energy balance" - annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Equations")); - parameter Types.Dynamics massDynamics=energyDynamics - "Formulation of mass balance" - annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Equations")); + annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Conservation equations")); // Initialization parameter Medium.AbsolutePressure p_start = Medium.p_default @@ -28,9 +25,9 @@ model PartialStratified parameter Medium.Temperature T_start=Medium.T_default "Start value of temperature" annotation(Dialog(tab = "Initialization")); - parameter Modelica.SIunits.Temperature TFlu_start[nSeg]=T_start*ones(nSeg) + parameter Modelica.Units.SI.Temperature TFlu_start[nSeg]=T_start*ones(nSeg) "Initial temperature of the tank segments, with TFlu_start[1] being the top segment" - annotation(Dialog(tab = "Initialization")); + annotation (Dialog(tab="Initialization")); parameter Medium.MassFraction X_start[Medium.nX] = Medium.X_default "Start value of mass fractions m_i/m" annotation (Dialog(tab="Initialization", enable=Medium.nXi > 0)); @@ -40,7 +37,7 @@ model PartialStratified annotation (Dialog(tab="Initialization", enable=Medium.nC > 0)); // Dynamics - parameter Modelica.SIunits.Time tau=1 "Time constant for mixing"; + parameter Modelica.Units.SI.Time tau=1 "Time constant for mixing"; //////////////////////////////////////////////////////////////////// // Connectors @@ -68,7 +65,7 @@ model PartialStratified AixLib.Fluid.MixingVolumes.MixingVolume[nSeg] vol( redeclare each package Medium = Medium, each energyDynamics=energyDynamics, - each massDynamics=massDynamics, + each massDynamics=energyDynamics, each p_start=p_start, T_start=TFlu_start, each X_start=X_start, @@ -84,15 +81,15 @@ protected T=Medium.T_default, p=Medium.p_default, X=Medium.X_default[1:Medium.nXi]) "Medium state at default properties"; - parameter Modelica.SIunits.Length hSeg = hTan / nSeg - "Height of a tank segment"; - parameter Modelica.SIunits.Area ATan = VTan/hTan + parameter Modelica.Units.SI.Length hSeg=hTan/nSeg "Height of a tank segment"; + parameter Modelica.Units.SI.Area ATan=VTan/hTan "Tank cross-sectional area (without insulation)"; - parameter Modelica.SIunits.Length rTan = sqrt(ATan/Modelica.Constants.pi) + parameter Modelica.Units.SI.Length rTan=sqrt(ATan/Modelica.Constants.pi) "Tank diameter (without insulation)"; - parameter Modelica.SIunits.ThermalConductance conFluSeg = ATan*Medium.thermalConductivity(sta_default)/hSeg + parameter Modelica.Units.SI.ThermalConductance conFluSeg=ATan* + Medium.thermalConductivity(sta_default)/hSeg "Thermal conductance between fluid volumes"; - parameter Modelica.SIunits.ThermalConductance conTopSeg = ATan*kIns/dIns + parameter Modelica.Units.SI.ThermalConductance conTopSeg=ATan*kIns/dIns "Thermal conductance from center of top (or bottom) volume through tank insulation at top (or bottom)"; BaseClasses.Buoyancy buo( @@ -188,133 +185,139 @@ equation smooth=Smooth.None)); annotation ( Documentation(info=" -

                                        -This is a partial model of a stratified storage tank. -

                                        -

                                        -See the - -AixLib.Fluid.Storage.UsersGuide -for more information. -

                                        -

                                        Implementation

                                        -

                                        -This model does not include the ports that connect to the fluid from -the outside, because these ports cannot be used for the models that -contain the - -AixLib.Fluid.Storage.BaseClasses.ThirdOrderStratifier. -

                                        -", revisions=" -
                                          -
                                        • -November 13, 2019 by Jianjun Hu:
                                          -Added parameter TFlu_start and changed the initial tank segments -temperature to TFlu_start so each segment could have different -temperature. -This is for -#1246. -
                                        • -
                                        • -June 7, 2018 by Filip Jorissen:
                                          -Copied model from Buildings and update the model accordingly. -This is for -#314. -
                                        • -
                                        • -June 1, 2018, by Michael Wetter:
                                          -Refactored model to allow a fluid port in the tank that do not have -the enhanced stratification model.
                                          -This is for -issue 1182. -
                                        • -
                                        • -July 29, 2017, by Michael Wetter:
                                          -Removed medium declaration, which is not needed and inconsistent with -the declaration in the base class. -This is for -issue 544. -
                                        • -
                                        • -March 28, 2015, by Filip Jorissen:
                                          -Propagated allowFlowReversal and m_flow_small -and set mSenFac=1. -
                                        • -
                                        • -January 26, 2015, by Michael Wetter:
                                          -Renamed -hA_flow to H_a_flow, -hB_flow to H_b_flow and -hVol_flow to H_vol_flow -as they output enthalpy flow rate, and not specific enthalpy. -Made various models protected. -
                                        • -
                                        • -January 25, 2015, by Michael Wetter:
                                          -Added final to tau = 0 in EnthalpyFlowRate. -These sensors do not need dynamics as the enthalpy flow rate -is used to compute a heat flow which is then added to the volume of the tank. -Thus, if there were high frequency oscillations of small mass flow rates, -then they have a small effect on H_flow, and they are -not used in any control loop. Rather, the oscillations are further damped -by the differential equation of the fluid volume. -
                                        • -
                                        • -January 25, 2015, by Filip Jorissen:
                                          -Set tau = 0 in EnthalpyFlowRate -sensors for increased simulation speed. -
                                        • -
                                        • -August 29, 2014, by Michael Wetter:
                                          -Replaced the use of Medium.lambda_const with -Medium.thermalConductivity(sta_default) as -lambda_const is not declared for all media. -This avoids a translation error if certain media are used. -
                                        • -
                                        • -June 18, 2014, by Michael Wetter:
                                          -Changed the default value for the energy balance initialization to avoid -a dependency on the global system declaration. -
                                        • -
                                        • -July 29, 2011, by Michael Wetter:
                                          -Removed use_T_start and h_start. -
                                        • -
                                        • -February 18, 2011, by Michael Wetter:
                                          -Changed default start values for temperature and pressure. -
                                        • -
                                        • -October 25, 2009 by Michael Wetter:
                                          -Changed computation of heat transfer through top (and bottom) of tank. Now, -the thermal resistance of the fluid is not taken into account, i.e., the -top (and bottom) element is assumed to be mixed. -
                                        • -
                                        • -October 23, 2009 by Michael Wetter:
                                          -Fixed bug in computing heat conduction of top and bottom segment. -In the previous version, -for computing the heat conduction between the top (or bottom) segment and -the outside, -the whole thickness of the water volume was used -instead of only half the thickness. -
                                        • -
                                        • -February 19, 2009 by Michael Wetter:
                                          -Changed declaration that constrains the medium. The earlier -declaration caused the medium model to be not shown in the parameter -window. -
                                        • -
                                        • -October 31, 2008 by Michael Wetter:
                                          -Added heat conduction. -
                                        • -
                                        • -October 23, 2008 by Michael Wetter:
                                          -First implementation. -
                                        • -
                                        -"), +

                                        + This is a partial model of a stratified storage tank. +

                                        +

                                        + See the + + AixLib.Fluid.Storage.UsersGuide + for more information. +

                                        +

                                        Implementation

                                        +

                                        + This model does not include the ports that connect to the fluid from + the outside, because these ports cannot be used for the models that + contain the + + AixLib.Fluid.Storage.BaseClasses.ThirdOrderStratifier. +

                                        + ",revisions=" +
                                          +
                                        • + March 7, 2022, by Michael Wetter:
                                          + Set final massDynamics=energyDynamics.
                                          + This is for + #1542. +
                                        • +
                                        • + November 13, 2019 by Jianjun Hu:
                                          + Added parameter TFlu_start and changed the initial tank segments + temperature to TFlu_start so each segment could have different + temperature. + This is for + #1246. +
                                        • +
                                        • + June 7, 2018 by Filip Jorissen:
                                          + Copied model from Buildings and update the model accordingly. + This is for + #314. +
                                        • +
                                        • + June 1, 2018, by Michael Wetter:
                                          + Refactored model to allow a fluid port in the tank that do not have + the enhanced stratification model.
                                          + This is for + issue 1182. +
                                        • +
                                        • + July 29, 2017, by Michael Wetter:
                                          + Removed medium declaration, which is not needed and inconsistent with + the declaration in the base class. + This is for + issue 544. +
                                        • +
                                        • + March 28, 2015, by Filip Jorissen:
                                          + Propagated allowFlowReversal and m_flow_small + and set mSenFac=1. +
                                        • +
                                        • + January 26, 2015, by Michael Wetter:
                                          + Renamed + hA_flow to H_a_flow, + hB_flow to H_b_flow and + hVol_flow to H_vol_flow + as they output enthalpy flow rate, and not specific enthalpy. + Made various models protected. +
                                        • +
                                        • + January 25, 2015, by Michael Wetter:
                                          + Added final to tau = 0 in EnthalpyFlowRate. + These sensors do not need dynamics as the enthalpy flow rate + is used to compute a heat flow which is then added to the volume of the tank. + Thus, if there were high frequency oscillations of small mass flow rates, + then they have a small effect on H_flow, and they are + not used in any control loop. Rather, the oscillations are further damped + by the differential equation of the fluid volume. +
                                        • +
                                        • + January 25, 2015, by Filip Jorissen:
                                          + Set tau = 0 in EnthalpyFlowRate + sensors for increased simulation speed. +
                                        • +
                                        • + August 29, 2014, by Michael Wetter:
                                          + Replaced the use of Medium.lambda_const with + Medium.thermalConductivity(sta_default) as + lambda_const is not declared for all media. + This avoids a translation error if certain media are used. +
                                        • +
                                        • + June 18, 2014, by Michael Wetter:
                                          + Changed the default value for the energy balance initialization to avoid + a dependency on the global system declaration. +
                                        • +
                                        • + July 29, 2011, by Michael Wetter:
                                          + Removed use_T_start and h_start. +
                                        • +
                                        • + February 18, 2011, by Michael Wetter:
                                          + Changed default start values for temperature and pressure. +
                                        • +
                                        • + October 25, 2009 by Michael Wetter:
                                          + Changed computation of heat transfer through top (and bottom) of tank. Now, + the thermal resistance of the fluid is not taken into account, i.e., the + top (and bottom) element is assumed to be mixed. +
                                        • +
                                        • + October 23, 2009 by Michael Wetter:
                                          + Fixed bug in computing heat conduction of top and bottom segment. + In the previous version, + for computing the heat conduction between the top (or bottom) segment and + the outside, + the whole thickness of the water volume was used + instead of only half the thickness. +
                                        • +
                                        • + February 19, 2009 by Michael Wetter:
                                          + Changed declaration that constrains the medium. The earlier + declaration caused the medium model to be not shown in the parameter + window. +
                                        • +
                                        • + October 31, 2008 by Michael Wetter:
                                          + Added heat conduction. +
                                        • +
                                        • + October 23, 2008 by Michael Wetter:
                                          + First implementation. +
                                        • +
                                        + "), Icon(graphics={ Rectangle( extent={{-40,60},{40,20}}, @@ -383,7 +386,7 @@ Icon(graphics={ fillPattern=FillPattern.CrossDiag), Text( extent={{100,106},{134,74}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="QLoss"), Rectangle( extent={{-10,10},{10,-10}}, @@ -425,5 +428,6 @@ Icon(graphics={ Line( points={{22,-74},{70,-74},{70,72}}, color={127,0,0}, - pattern=LinePattern.Dot)})); + pattern=LinePattern.Dot)}), + __Dymola_LockedEditing="Model from IBPSA"); end PartialStratified; diff --git a/AixLib/Fluid/Storage/BaseClasses/StorageCover.mo b/AixLib/Fluid/Storage/BaseClasses/StorageCover.mo index 649b564c96..913b52468d 100644 --- a/AixLib/Fluid/Storage/BaseClasses/StorageCover.mo +++ b/AixLib/Fluid/Storage/BaseClasses/StorageCover.mo @@ -6,34 +6,48 @@ model StorageCover "Sandwich wall construction for heat storage cover" "Type of energy balance: dynamic (3 initialization options) or steady state" annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Equations")); - parameter Modelica.SIunits.Diameter D1=1 "Inner tank diameter" annotation(Dialog(tab="Geometrical Parameters")); - parameter Modelica.SIunits.Thickness sWall=0.1 "Thickness of wall" annotation(Dialog(tab="Geometrical Parameters")); - parameter Modelica.SIunits.Thickness sIns=0.1 "Thickness of insulation" annotation(Dialog(tab="Geometrical Parameters")); + parameter Modelica.Units.SI.Diameter D1=1 "Inner tank diameter" + annotation (Dialog(tab="Geometrical Parameters")); + parameter Modelica.Units.SI.Thickness sWall=0.1 "Thickness of wall" + annotation (Dialog(tab="Geometrical Parameters")); + parameter Modelica.Units.SI.Thickness sIns=0.1 "Thickness of insulation" + annotation (Dialog(tab="Geometrical Parameters")); - parameter Modelica.SIunits.Area AWall=D1^2/4*Modelica.Constants.pi "Area" annotation(Dialog(tab="Geometrical Parameters")); + parameter Modelica.Units.SI.Area AWall=D1^2/4*Modelica.Constants.pi "Area" + annotation (Dialog(tab="Geometrical Parameters")); - parameter Modelica.SIunits.ThermalConductivity lambdaWall=50 - "Thermal Conductivity of wall" annotation(Dialog(group="Thermal properties")); - parameter Modelica.SIunits.ThermalConductivity lambdaIns=0.045 - "Thermal Conductivity of insulation" annotation(Dialog(group="Thermal properties")); - parameter Modelica.SIunits.CoefficientOfHeatTransfer hConIn=2 "Convective heat transfer coefficient water <-> wall" annotation(Dialog(group="Thermal properties")); - parameter Modelica.SIunits.CoefficientOfHeatTransfer hConOut=2 "Convective heat transfer coefficient insulation <-> air" annotation(Dialog(group="Thermal properties")); - parameter Modelica.SIunits.Temperature TStartWall=293.15 - "Starting Temperature of wall in K" annotation(Dialog(tab = "Initialization")); - parameter Modelica.SIunits.Temperature TStartIns=293.15 - "Starting Temperature of insulation in K" annotation(Dialog(tab = "Initialization")); + parameter Modelica.Units.SI.ThermalConductivity lambdaWall=50 + "Thermal Conductivity of wall" + annotation (Dialog(group="Thermal properties")); + parameter Modelica.Units.SI.ThermalConductivity lambdaIns=0.045 + "Thermal Conductivity of insulation" + annotation (Dialog(group="Thermal properties")); + parameter Modelica.Units.SI.CoefficientOfHeatTransfer hConIn=2 + "Convective heat transfer coefficient water <-> wall" + annotation (Dialog(group="Thermal properties")); + parameter Modelica.Units.SI.CoefficientOfHeatTransfer hConOut=2 + "Convective heat transfer coefficient insulation <-> air" + annotation (Dialog(group="Thermal properties")); + parameter Modelica.Units.SI.Temperature TStartWall=293.15 + "Starting Temperature of wall in K" + annotation (Dialog(tab="Initialization")); + parameter Modelica.Units.SI.Temperature TStartIns=293.15 + "Starting Temperature of insulation in K" + annotation (Dialog(tab="Initialization")); Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a heatportInner "Inner heat port" annotation (Placement(transformation(extent={{-100,0},{-80,20}}, rotation=0))); - parameter Modelica.SIunits.Density rhoIns=1600 - "Density of insulation" annotation(Dialog(group="Material properties")); - parameter Modelica.SIunits.SpecificHeatCapacity cIns=1000 - "Specific heat capacity of insulation" annotation(Dialog(group="Material properties")); - parameter Modelica.SIunits.Density rhoWall=1600 - "Density of Insulation" annotation(Dialog(group="Material properties")); - parameter Modelica.SIunits.SpecificHeatCapacity cWall=1000 - "Specific heat capacity of wall" annotation(Dialog(group="Material properties")); + parameter Modelica.Units.SI.Density rhoIns=1600 "Density of insulation" + annotation (Dialog(group="Material properties")); + parameter Modelica.Units.SI.SpecificHeatCapacity cIns=1000 + "Specific heat capacity of insulation" + annotation (Dialog(group="Material properties")); + parameter Modelica.Units.SI.Density rhoWall=1600 "Density of Insulation" + annotation (Dialog(group="Material properties")); + parameter Modelica.Units.SI.SpecificHeatCapacity cWall=1000 + "Specific heat capacity of wall" + annotation (Dialog(group="Material properties")); AixLib.Utilities.HeatTransfer.HeatConv convInside(final hCon=hConIn, final A=AWall) "Inside heat convection" diff --git a/AixLib/Fluid/Storage/BaseClasses/StorageMantle.mo b/AixLib/Fluid/Storage/BaseClasses/StorageMantle.mo index ae16c5f684..91f604dcb5 100644 --- a/AixLib/Fluid/Storage/BaseClasses/StorageMantle.mo +++ b/AixLib/Fluid/Storage/BaseClasses/StorageMantle.mo @@ -6,32 +6,38 @@ model StorageMantle "Type of energy balance: dynamic (3 initialization options) or steady state" annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Equations")); - parameter Modelica.SIunits.Length height=0.15 "Height of layer" annotation(Dialog(tab="Geometrical Parameters")); - parameter Modelica.SIunits.Diameter D1=1 "Inner tank diameter" annotation(Dialog(tab="Geometrical Parameters")); - parameter Modelica.SIunits.Thickness sWall=0.1 "Thickness of wall" annotation(Dialog(tab="Geometrical Parameters")); - parameter Modelica.SIunits.Thickness sIns=0.1 "Thickness of insulation" annotation(Dialog(tab="Geometrical Parameters")); + parameter Modelica.Units.SI.Length height=0.15 "Height of layer" + annotation (Dialog(tab="Geometrical Parameters")); + parameter Modelica.Units.SI.Diameter D1=1 "Inner tank diameter" + annotation (Dialog(tab="Geometrical Parameters")); + parameter Modelica.Units.SI.Thickness sWall=0.1 "Thickness of wall" + annotation (Dialog(tab="Geometrical Parameters")); + parameter Modelica.Units.SI.Thickness sIns=0.1 "Thickness of insulation" + annotation (Dialog(tab="Geometrical Parameters")); - final parameter Modelica.SIunits.Area AInside= D1*Modelica.Constants.pi * height - "Inner area"; - final parameter Modelica.SIunits.Area AOutside= (D1+2*(sWall+sIns))*Modelica.Constants.pi * height - "Outer area"; + final parameter Modelica.Units.SI.Area AInside=D1*Modelica.Constants.pi* + height "Inner area"; + final parameter Modelica.Units.SI.Area AOutside=(D1 + 2*(sWall + sIns))* + Modelica.Constants.pi*height "Outer area"; - parameter Modelica.SIunits.ThermalConductivity lambdaWall=50 + parameter Modelica.Units.SI.ThermalConductivity lambdaWall=50 "Thermal Conductivity of wall"; - parameter Modelica.SIunits.ThermalConductivity lambdaIns=0.045 + parameter Modelica.Units.SI.ThermalConductivity lambdaIns=0.045 "Thermal Conductivity of insulation"; - parameter Modelica.SIunits.CoefficientOfHeatTransfer hConIn=2 "Heat transfer coefficient water <-> wall"; - parameter Modelica.SIunits.CoefficientOfHeatTransfer hConOut=2 "Heat transfer coefficient insulation <-> air"; - parameter Modelica.SIunits.Temperature TStartWall=293.15 + parameter Modelica.Units.SI.CoefficientOfHeatTransfer hConIn=2 + "Heat transfer coefficient water <-> wall"; + parameter Modelica.Units.SI.CoefficientOfHeatTransfer hConOut=2 + "Heat transfer coefficient insulation <-> air"; + parameter Modelica.Units.SI.Temperature TStartWall=293.15 "Starting Temperature of wall in K"; - parameter Modelica.SIunits.Temperature TStartIns=293.15 + parameter Modelica.Units.SI.Temperature TStartIns=293.15 "Starting Temperature of insulation in K"; - parameter Modelica.SIunits.Density rhoIns=1600 "Density of insulation"; - parameter Modelica.SIunits.SpecificHeatCapacity cIns=1000 - "Specific heat capacity of insulation"; - parameter Modelica.SIunits.Density rhoWall=1600 "Density of Insulation"; - parameter Modelica.SIunits.SpecificHeatCapacity cWall=1000 - "Specific heat capacity of wall"; + parameter Modelica.Units.SI.Density rhoIns=1600 "Density of insulation"; + parameter Modelica.Units.SI.SpecificHeatCapacity cIns=1000 + "Specific heat capacity of insulation"; + parameter Modelica.Units.SI.Density rhoWall=1600 "Density of Insulation"; + parameter Modelica.Units.SI.SpecificHeatCapacity cWall=1000 + "Specific heat capacity of wall"; Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a heatportOuter "Outer heat port" diff --git a/AixLib/Fluid/Storage/BaseClasses/ThirdOrderStratifier.mo b/AixLib/Fluid/Storage/BaseClasses/ThirdOrderStratifier.mo index 368bb15b13..484fa40f1a 100644 --- a/AixLib/Fluid/Storage/BaseClasses/ThirdOrderStratifier.mo +++ b/AixLib/Fluid/Storage/BaseClasses/ThirdOrderStratifier.mo @@ -6,7 +6,7 @@ model ThirdOrderStratifier replaceable package Medium = Modelica.Media.Interfaces.PartialMedium "Medium model" annotation (choicesAllMatching=true); - parameter Modelica.SIunits.MassFlowRate m_flow_small(min=0) + parameter Modelica.Units.SI.MassFlowRate m_flow_small(min=0) "Small mass flow rate for regularization of zero flow"; parameter Integer nSeg(min=4) "Number of volume segments"; @@ -32,13 +32,13 @@ model ThirdOrderStratifier annotation (Placement(transformation(extent={{-110,-10},{-90,10}}))); protected - Modelica.SIunits.SpecificEnthalpy[nSeg + 1] hOut + Modelica.Units.SI.SpecificEnthalpy[nSeg + 1] hOut "Extended vector with new outlet enthalpies to reduce numerical dissipation (at the boundary between two volumes)"; - Modelica.SIunits.SpecificEnthalpy[nSeg + 2] h + Modelica.Units.SI.SpecificEnthalpy[nSeg + 2] h "Extended vector with port enthalpies, needed to simplify loop"; - Modelica.SIunits.HeatFlowRate Q_flow[nSeg] + Modelica.Units.SI.HeatFlowRate Q_flow[nSeg] "Heat exchange computed using upwind third order discretization scheme"; - // Modelica.SIunits.HeatFlowRate Q_flow_upWind + // Modelica.Units.SI.HeatFlowRate Q_flow_upWind // "Heat exchange computed using upwind third order discretization scheme"; //Used to test the energy conservation Real sig "Sign used to implement the third order upwind scheme without triggering a state event"; @@ -103,68 +103,68 @@ equation heatPort[i].Q_flow = Q_flow[i]*alpha; end for; annotation (Documentation(info=" -

                                        -This model reduces the numerical dissipation that is introduced -by the standard first-order upwind discretization scheme which is -created when connecting fluid volumes in series. -

                                        -

                                        -The model is used in conjunction with - -AixLib.Fluid.Storage.Stratified. -It computes a heat flux that needs to be added to each volume of -AixLib.Fluid.Storage.Stratified in order to give the results that a third-order upwind discretization scheme (QUICK) would give. -

                                        -

                                        -The QUICK method can cause oscillations in the tank temperatures since the high order method introduces numerical dispersion. -There are two ways to reduce the oscillations:

                                        -
                                          -
                                        • -To use an under-relaxation coefficient alpha when adding the heat flux into the volume. -
                                        • -
                                        • -To use the first-order upwind for hOut[2] and hOut[nSeg]. Note: Using it requires nSeg ≥ 4. -
                                        • -
                                        -

                                        -Both approaches are implemented in the model. -

                                        -

                                        -The model is used by - -AixLib.Fluid.Storage.StratifiedEnhanced. -

                                        -

                                        Limitations

                                        -

                                        -The model requires at least 4 fluid segments. Hence, set nSeg to 4 or higher. -

                                        -", revisions=" -
                                          -
                                        • -June 7, 2018 by Filip Jorissen:
                                          -Copied model from Buildings and update the model accordingly. -This is for -#314. -
                                        • -
                                        • -December 14, 2012 by Michael Wetter:
                                          -Removed unused protected parameters sta0 and cp0. -
                                        • -
                                        • -March 29, 2012 by Wangda Zuo:
                                          -Revised the implementation to reduce the temperature overshoot. -
                                        • -
                                        • -July 28, 2010 by Wangda Zuo:
                                          -Rewrote third order upwind scheme to avoid state events. -This leads to more robust and faster simulation. -
                                        • -
                                        • -June 23, 2010 by Michael Wetter and Wangda Zuo:
                                          -First implementation. -
                                        • -
                                        -"), Icon(coordinateSystem(preserveAspectRatio=true, extent={{-100,-100}, +

                                        + This model reduces the numerical dissipation that is introduced + by the standard first-order upwind discretization scheme which is + created when connecting fluid volumes in series. +

                                        +

                                        + The model is used in conjunction with + + AixLib.Fluid.Storage.Stratified. + It computes a heat flux that needs to be added to each volume of + AixLib.Fluid.Storage.Stratified in order to give the results that a third-order upwind discretization scheme (QUICK) would give. +

                                        +

                                        + The QUICK method can cause oscillations in the tank temperatures since the high order method introduces numerical dispersion. + There are two ways to reduce the oscillations:

                                        +
                                          +
                                        • + To use an under-relaxation coefficient alpha when adding the heat flux into the volume. +
                                        • +
                                        • + To use the first-order upwind for hOut[2] and hOut[nSeg]. Note: Using it requires nSeg ≥ 4. +
                                        • +
                                        +

                                        + Both approaches are implemented in the model. +

                                        +

                                        + The model is used by + + AixLib.Fluid.Storage.StratifiedEnhanced. +

                                        +

                                        Limitations

                                        +

                                        + The model requires at least 4 fluid segments. Hence, set nSeg to 4 or higher. +

                                        + ",revisions=" +
                                          +
                                        • + June 7, 2018 by Filip Jorissen:
                                          + Copied model from Buildings and update the model accordingly. + This is for + #314. +
                                        • +
                                        • + December 14, 2012 by Michael Wetter:
                                          + Removed unused protected parameters sta0 and cp0. +
                                        • +
                                        • + March 29, 2012 by Wangda Zuo:
                                          + Revised the implementation to reduce the temperature overshoot. +
                                        • +
                                        • + July 28, 2010 by Wangda Zuo:
                                          + Rewrote third order upwind scheme to avoid state events. + This leads to more robust and faster simulation. +
                                        • +
                                        • + June 23, 2010 by Michael Wetter and Wangda Zuo:
                                          + First implementation. +
                                        • +
                                        + "),Icon(coordinateSystem(preserveAspectRatio=true, extent={{-100,-100}, {100,100}}),graphics={ Rectangle( extent={{-48,66},{48,34}}, @@ -182,5 +182,6 @@ First implementation. fillColor={0,0,255}, fillPattern=FillPattern.Solid, pattern=LinePattern.None, - lineColor={0,0,0})})); + lineColor={0,0,0})}), + __Dymola_LockedEditing="Model from IBPSA"); end ThirdOrderStratifier; diff --git a/AixLib/Fluid/Storage/BufferStorage.mo b/AixLib/Fluid/Storage/BufferStorage.mo index 36fd01940b..d8a0760406 100644 --- a/AixLib/Fluid/Storage/BufferStorage.mo +++ b/AixLib/Fluid/Storage/BufferStorage.mo @@ -1,7 +1,7 @@ within AixLib.Fluid.Storage; model BufferStorage "Buffer Storage Model with support for heating rod and two heating coils" - import SI = Modelica.SIunits; + import Modelica.Units.SI; extends AixLib.Fluid.Interfaces.LumpedVolumeDeclarations(final T_start = TStart); @@ -16,19 +16,25 @@ model BufferStorage replaceable package MediumHC2 = Modelica.Media.Interfaces.PartialMedium "Medium model for HC2" annotation (choicesAllMatching = true, Dialog(group="Medium")); - parameter Modelica.SIunits.MassFlowRate m1_flow_nominal(min=0) + parameter Modelica.Units.SI.MassFlowRate m1_flow_nominal(min=0) "Nominal mass flow rate of fluid 1 ports" - annotation(Dialog(group = "Nominal condition")); - parameter Modelica.SIunits.MassFlowRate m2_flow_nominal(min=0) + annotation (Dialog(group="Nominal condition")); + parameter Modelica.Units.SI.MassFlowRate m2_flow_nominal(min=0) "Nominal mass flow rate of fluid 2 ports" - annotation(Dialog(group = "Nominal condition")); - - parameter Modelica.SIunits.MassFlowRate mHC1_flow_nominal(min=0) if useHeatingCoil1 - "Nominal mass flow rate of fluid 1 ports" - annotation(Dialog(tab="Heating Coils and Rod", group = "Nominal condition", enable=useHeatingCoil1)); - parameter Modelica.SIunits.MassFlowRate mHC2_flow_nominal(min=0) if useHeatingCoil2 - "Nominal mass flow rate of fluid 1 ports" - annotation(Dialog(tab="Heating Coils and Rod", group = "Nominal condition", enable=useHeatingCoil2)); + annotation (Dialog(group="Nominal condition")); + + parameter Modelica.Units.SI.MassFlowRate mHC1_flow_nominal(min=0) + if useHeatingCoil1 "Nominal mass flow rate of fluid 1 ports" annotation ( + Dialog( + tab="Heating Coils and Rod", + group="Nominal condition", + enable=useHeatingCoil1)); + parameter Modelica.Units.SI.MassFlowRate mHC2_flow_nominal(min=0) + if useHeatingCoil2 "Nominal mass flow rate of fluid 1 ports" annotation ( + Dialog( + tab="Heating Coils and Rod", + group="Nominal condition", + enable=useHeatingCoil2)); parameter Boolean useHeatingCoil1=true "Use Heating Coil1?" annotation(Dialog(tab="Heating Coils and Rod")); parameter Boolean useHeatingCoil2=true "Use Heating Coil2?" annotation(Dialog(tab="Heating Coils and Rod")); @@ -60,34 +66,49 @@ model BufferStorage "Heating Coil 2 orientation from up to down?" annotation(Dialog(enable = useHeatingCoil2,tab="Heating Coils and Rod")); - parameter Modelica.SIunits.Temperature TStartWall=293.15 - "Starting Temperature of wall in K" annotation(Dialog(tab="Initialization", group="Storage specific")); - parameter Modelica.SIunits.Temperature TStartIns=293.15 - "Starting Temperature of insulation in K" annotation(Dialog(tab="Initialization", group="Storage specific")); + parameter Modelica.Units.SI.Temperature TStartWall=293.15 + "Starting Temperature of wall in K" + annotation (Dialog(tab="Initialization", group="Storage specific")); + parameter Modelica.Units.SI.Temperature TStartIns=293.15 + "Starting Temperature of insulation in K" + annotation (Dialog(tab="Initialization", group="Storage specific")); + +//////////////////////////////////////////////////////////////////////////////////////////////////// +////////////Advanced parameters///////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////////////////////////////// + parameter Integer nLowerPortSupply=integer(max(AixLib.Utilities.Math.Functions.round(data.hLowerPortSupply/(data.hTank/n) + 0.5,0),1)) "Layer number lower end of supply is connected to" + annotation (Dialog(tab="Advanced", group="Connection Layers: !Any modification will overwrite the data record behaviour!", descriptionLabel = true)); + parameter Integer nUpperPortSupply=integer(min(AixLib.Utilities.Math.Functions.round(data.hUpperPortSupply/(data.hTank/n) + 0.5,0),n)) "Layer number upper end of supply is connected to" + annotation (Dialog(tab="Advanced", group="Connection Layers: !Any modification will overwrite the data record behaviour!", descriptionLabel = true)); + parameter Integer nLowerPortDemand=integer(max(AixLib.Utilities.Math.Functions.round(data.hLowerPortDemand/(data.hTank/n) + 0.5,0),1)) "Layer number lower end of demand is connected to" + annotation (Dialog(tab="Advanced", group="Connection Layers: !Any modification will overwrite the data record behaviour!", descriptionLabel = true)); + parameter Integer nUpperPortDemand=integer(min(AixLib.Utilities.Math.Functions.round(data.hUpperPortDemand/(data.hTank/n) + 0.5,0),n)) "Layer number upper end of demand is connected to" + annotation (Dialog(tab="Advanced", group="Connection Layers: !Any modification will overwrite the data record behaviour!", descriptionLabel = true)); + parameter Integer nTS1=integer(AixLib.Utilities.Math.Functions.round(data.hTS1/(data.hTank/n) + 0.5,0)) "Layer number lower temperature sensor is connected to" + annotation (Dialog(tab="Advanced", group="Connection Layers: !Any modification will overwrite the data record behaviour!", descriptionLabel = true)); + parameter Integer nTS2=integer(AixLib.Utilities.Math.Functions.round(data.hTS2/(data.hTank/n) + 0.5,0)) "Layer number upper temperature sensor is connected to" + annotation (Dialog(tab="Advanced", group="Connection Layers: !Any modification will overwrite the data record behaviour!", descriptionLabel = true)); + + parameter Integer nHC1Up=integer(ceil(data.hHC1Up/(data.hTank/n))) "Layer number upper end of heating coil 1 is connected to" + annotation (Dialog(tab="Advanced", group="Connection Layers: !Any modification will overwrite the data record behaviour!", descriptionLabel = true)); + parameter Integer nHC1Low=integer(floor(data.hHC1Low/(data.hTank/n))+1) "Layer number lower end of heating coil 1 is connected to" + annotation (Dialog(tab="Advanced", group="Connection Layers: !Any modification will overwrite the data record behaviour!", descriptionLabel = true)); + parameter Integer nHC2Up=integer(ceil(data.hHC2Up/(data.hTank/n))) "Layer number upper end of heating coil 2 is connected to" + annotation (Dialog(tab="Advanced", group="Connection Layers: !Any modification will overwrite the data record behaviour!", descriptionLabel = true)); + parameter Integer nHC2Low=integer(floor(data.hHC2Low/(data.hTank/n))+1) "Layer number lower end of heating coil 2 is connected to" + annotation (Dialog(tab="Advanced", group="Connection Layers: !Any modification will overwrite the data record behaviour!", descriptionLabel = true)); + parameter Integer nHR=integer(AixLib.Utilities.Math.Functions.round(data.hHR/(data.hTank/n) + 0.5,0)) "Layer number heating rod is connected to" + annotation (Dialog(tab="Advanced", group="Connection Layers: !Any modification will overwrite the data record behaviour!", descriptionLabel = true)); //////////////////////////////////////////////////////////////////////////////////////////////////// ////////////final parameters//////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////////////////////// - final parameter Integer nHC1Up=integer(ceil(data.hHC1Up/(data.hTank/n))); - final parameter Integer nHC1Low=integer(floor(data.hHC1Low/(data.hTank/n))+1); final parameter Integer disHC1 = nHC1Up-nHC1Low+1; - - final parameter Integer nHC2Up=integer(ceil(data.hHC2Up/(data.hTank/n))); - final parameter Integer nHC2Low=integer(floor(data.hHC2Low/(data.hTank/n))+1); final parameter Integer disHC2 = nHC2Up-nHC2Low+1; - final parameter Integer nHR=integer(AixLib.Utilities.Math.Functions.round(data.hHR/(data.hTank/n) + 0.5,0)); - - final parameter Integer nTS1=integer(AixLib.Utilities.Math.Functions.round(data.hTS1/(data.hTank/n) + 0.5,0)); - final parameter Integer nTS2=integer(AixLib.Utilities.Math.Functions.round(data.hTS2/(data.hTank/n) + 0.5,0)); - - final parameter Integer nLowerPortDemand=integer(max(AixLib.Utilities.Math.Functions.round(data.hLowerPortDemand/(data.hTank/n) + 0.5,0),1)); - final parameter Integer nUpperPortDemand=integer(min(AixLib.Utilities.Math.Functions.round(data.hUpperPortDemand/(data.hTank/n) + 0.5,0),n)); final parameter Boolean inpLowLayDemand=(nLowerPortDemand == 1); //if there is an input at the lowest layer final parameter Boolean inpHigLayDemand=(nUpperPortDemand == n); - final parameter Integer nLowerPortSupply=integer(max(AixLib.Utilities.Math.Functions.round(data.hLowerPortSupply/(data.hTank/n) + 0.5,0),1)); - final parameter Integer nUpperPortSupply=integer(min(AixLib.Utilities.Math.Functions.round(data.hUpperPortSupply/(data.hTank/n) + 0.5,0),n)); final parameter Boolean inpLowLaySupply=(nLowerPortSupply == 1); //if there is an input at the lowest layer final parameter Boolean inpHigLaySupply=(nUpperPortSupply == n); @@ -126,17 +147,19 @@ model BufferStorage extent={{-5,5},{5,-5}}, rotation=0, origin={-80,-80}))); - Modelica.Fluid.Interfaces.FluidPort_a fluidportTop1( redeclare final package Medium = + Modelica.Fluid.Interfaces.FluidPort_a fluidportTop1(redeclare final package Medium = Medium) "Fluid connector a (positive design flow direction is from port_a to port_b)" annotation (Placement(transformation(extent={{-38,92},{-18,110}},rotation= 0), iconTransformation(extent={{-38,92},{-18,110}}))); - Modelica.Fluid.Interfaces.FluidPort_a fluidportBottom2(redeclare final package Medium = + Modelica.Fluid.Interfaces.FluidPort_a fluidportBottom2(redeclare final + package Medium = Medium) "Fluid connector a (positive design flow direction is from port_a to port_b)" annotation (Placement(transformation(extent={{14,-110},{32,-92}},rotation= 0), iconTransformation(extent={{14,-110},{32,-92}}))); - Modelica.Fluid.Interfaces.FluidPort_b fluidportBottom1( redeclare final package Medium = + Modelica.Fluid.Interfaces.FluidPort_b fluidportBottom1(redeclare final + package Medium = Medium) "Fluid connector b (positive design flow direction is from port_a to port_b)" annotation (Placement(transformation(extent={{-36,-112},{-18,-92}}, @@ -214,8 +237,8 @@ model BufferStorage /////HEATING ROD //////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////////// - Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a heatingRod if - useHeatingRod annotation ( + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a heatingRod + if useHeatingRod annotation ( Placement(transformation(extent={{-86,-6},{-74,6}}, rotation=0))); ////////////////////////////////////////////////////////////////////////////////////////// diff --git a/AixLib/Fluid/Storage/Examples/ExpansionVessel.mo b/AixLib/Fluid/Storage/Examples/ExpansionVessel.mo index 18230fddcf..94847a3504 100644 --- a/AixLib/Fluid/Storage/Examples/ExpansionVessel.mo +++ b/AixLib/Fluid/Storage/Examples/ExpansionVessel.mo @@ -44,11 +44,12 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Storage/Examples/ExpansionVessel.mos" "Simulate and plot"), Documentation(info=" -This model tests a pressure expansion vessel. The medium model that is used in this -example changes its density as a function of temperature. -To see the effect of the expansion vessel, delete the connecting line between -the volume and the expansion vessel and check how much more the pressure increases -as the fluid is heated. -"), - experiment(Tolerance=1e-6, StopTime=7200)); + This model tests a pressure expansion vessel. The medium model that is used in this + example changes its density as a function of temperature. + To see the effect of the expansion vessel, delete the connecting line between + the volume and the expansion vessel and check how much more the pressure increases + as the fluid is heated. + "), + experiment(Tolerance=1e-6, StopTime=7200), + __Dymola_LockedEditing="Model from IBPSA"); end ExpansionVessel; diff --git a/AixLib/Fluid/Storage/Examples/StorageBoiler.mo b/AixLib/Fluid/Storage/Examples/StorageBoiler.mo index 6c9d6a1ea3..86243dbfa9 100644 --- a/AixLib/Fluid/Storage/Examples/StorageBoiler.mo +++ b/AixLib/Fluid/Storage/Examples/StorageBoiler.mo @@ -7,23 +7,28 @@ model StorageBoiler Modelica.Media.Water.ConstantPropertyLiquidWater constrainedby Modelica.Media.Interfaces.PartialMedium; - AixLib.Fluid.Storage.Storage storage( + AixLib.Fluid.Storage.BufferStorage + bufferStorage( + redeclare package MediumHC1 = Medium, + redeclare package MediumHC2 = Medium, + m1_flow_nominal=pipe1.m_flow_nominal, + m2_flow_nominal=pipe1.m_flow_nominal, + mHC1_flow_nominal=pipe1.m_flow_nominal, + useHeatingCoil2=false, + useHeatingRod=false, + redeclare AixLib.DataBase.Storage.Generic_New_2000l data( + hTank=2, + hUpperPortDemand=1.95, + hUpperPortSupply=1.95, + hHC1Up=1.95, + dTank=1, + hTS2=1.95), n=10, - V_HE=0.05, - kappa=0.4, - beta=350e-6, - A_HE=20, - lambda_ins=0.04, - s_ins=0.1, hConIn=1500, hConOut=15, - d=1, - h=2, - k_HE=1500, redeclare package Medium = Medium, - m_flow_nominal_layer=pipe1.m_flow_nominal, - m_flow_nominal_HE=pipe.m_flow_nominal) - annotation (Placement(transformation(extent={{-18,12},{2,32}}))); + hConHC1=300) annotation (Placement(transformation(extent={{6,8},{ + -18,38}}))); Modelica.Thermal.HeatTransfer.Sources.FixedTemperature fixedTemperature(T = 283.15) annotation(Placement(transformation(extent={{-56,12}, {-36,32}}))); AixLib.Obsolete.Year2021.Fluid.Movers.Pump pump(redeclare package Medium = Medium, m_flow_small=1e-4) annotation (Placement(transformation( @@ -57,36 +62,25 @@ model StorageBoiler {-76,6}}))); AixLib.Fluid.Sources.Boundary_pT boundary_ph2(nPorts=1, redeclare package Medium = Medium) - annotation(Placement(transformation(extent = {{10, -10}, {-10, 10}}, rotation = 180, origin={-34,44}))); + annotation(Placement(transformation(extent = {{10, -10}, {-10, 10}}, rotation = 180, origin={-38,56}))); AixLib.Fluid.FixedResistances.PressureDrop pipe1( redeclare package Medium = Medium, m_flow_nominal=0.5, dp_nominal=200) - annotation (Placement(transformation(extent={{-28,-22},{-8,-2}}))); + annotation (Placement(transformation(extent={{-36,-22},{-16,-2}}))); AixLib.Fluid.HeatExchangers.Heater_T hea( redeclare package Medium = Medium, m_flow_nominal=0.01, dp_nominal=0) annotation (Placement(transformation(extent={{42,68},{22,88}}))); equation - connect(fixedTemperature.port, storage.heatPort) annotation(Line(points={{-36,22}, - {-16,22}}, color = {191, 0, 0})); connect(booleanExpression.y, pump.IsNight) annotation(Line(points={{35,48},{ 24,48},{24,60},{16.2,60}}, color = {255, 0, 255})); connect(pipe.port_b, hydraulicResistance.port_a) annotation(Line(points={{32,-2}, {46,-2}}, color = {0, 127, 255})); - connect(pump.port_b, storage.port_a_heatGenerator) annotation(Line(points={{6,50},{ - 6,30.8},{0.4,30.8}}, color = {0, 127, 255})); - connect(pipe.port_a, storage.port_b_heatGenerator) annotation(Line(points={{12,-2}, - {6,-2},{6,14},{0.4,14}}, color = {0, 127, 255})); connect(ramp.y, boundary_ph1.p_in) annotation(Line(points={{-75,-4},{-68,-4}}, color = {0, 0, 127})); - connect(pipe1.port_b, storage.port_a_consumer) annotation(Line(points={{-8,-12}, - {-8,12}}, color = {0, 127, 255})); connect(boundary_ph1.ports[1], pipe1.port_a) annotation (Line( - points={{-46,-12},{-28,-12}}, - color={0,127,255})); - connect(storage.port_b_consumer, boundary_ph2.ports[1]) annotation (Line( - points={{-8,32},{-8,44},{-24,44}}, + points={{-46,-12},{-36,-12}}, color={0,127,255})); connect(boundary_p.ports[1], pump.port_a) annotation (Line( points={{-28,78},{6,78},{6,70}}, @@ -97,7 +91,19 @@ equation -2},{80,-2},{80,78},{42,78}}, color={0,127,255})); connect(const.y, hea.TSet) annotation (Line(points={{57.7,67},{52,67},{52,86}, {44,86}}, color={0,0,127})); - annotation (experiment(StopTime = 86400, Interval = 60),Documentation(info = "

                                        + connect(boundary_ph2.ports[1], bufferStorage.fluidportTop2) annotation (Line( + points={{-28,56},{-9.75,56},{-9.75,38.15}}, color={0,127,255})); + connect(bufferStorage.fluidportBottom2, pipe1.port_b) annotation (Line(points= + {{-9.45,7.85},{-9.45,-2},{-10,-2},{-10,-12},{-16,-12}}, color={0,127, + 255})); + connect(pipe.port_a, bufferStorage.portHC1Out) annotation (Line(points={{12, + -2},{14,-2},{14,26.9},{6.15,26.9}}, color={0,127,255})); + connect(pump.port_b, bufferStorage.portHC1In) annotation (Line(points={{6,50}, + {6,44},{12,44},{12,31.55},{6.3,31.55}}, color={0,127,255})); + connect(fixedTemperature.port, bufferStorage.heatportOutside) annotation ( + Line(points={{-36,22},{-28,22},{-28,23.9},{-17.7,23.9}}, color={191,0,0})); + annotation (experiment(Tolerance=1e-6, StopTime=86400, Interval=60), + Documentation(info = "

                                        Overview

                                        diff --git a/AixLib/Fluid/Storage/Examples/StorageSolarCollector.mo b/AixLib/Fluid/Storage/Examples/StorageSolarCollector.mo index e52f8065ca..fc2ba7fcac 100644 --- a/AixLib/Fluid/Storage/Examples/StorageSolarCollector.mo +++ b/AixLib/Fluid/Storage/Examples/StorageSolarCollector.mo @@ -5,23 +5,22 @@ model StorageSolarCollector replaceable package Medium = AixLib.Media.Water; - AixLib.Fluid.Storage.Storage storage( + AixLib.Fluid.Storage.BufferStorage + bufferStorage( + redeclare package MediumHC1 = Medium, + redeclare package MediumHC2 = Medium, + m1_flow_nominal=solarThermal.m_flow_nominal, + m2_flow_nominal=solarThermal.m_flow_nominal, + mHC1_flow_nominal=solarThermal.m_flow_nominal, + useHeatingCoil2=false, + useHeatingRod=false, + redeclare AixLib.DataBase.Storage.Generic_New_2000l data(hHC1Up=2.1), n=10, - V_HE=0.05, - kappa=0.4, - beta=350e-6, - A_HE=20, - lambda_ins=0.04, - s_ins=0.1, hConIn=1500, hConOut=15, - k_HE=1500, - d=1.5, - h=2.5, redeclare package Medium = Medium, - m_flow_nominal_layer=solarThermal.m_flow_nominal, - m_flow_nominal_HE=solarThermal.m_flow_nominal) - annotation (Placement(transformation(extent={{-30,14},{-10,34}}))); + hConHC1=1500) annotation (Placement(transformation(extent={{-10,14}, + {-30,34}}))); Modelica.Thermal.HeatTransfer.Sources.FixedTemperature fixedTemperature(T = 283.15) annotation(Placement(transformation(extent={{-60,14}, {-40,34}}))); AixLib.Obsolete.Year2021.Fluid.Movers.Pump pump( @@ -92,16 +91,8 @@ model StorageSolarCollector offset={273.15,0.01}) annotation (Placement(transformation(extent={{10,32},{30,52}}))); equation - connect(fixedTemperature.port, storage.heatPort) annotation(Line(points={{-40,24}, - {-28,24}}, color = {191, 0, 0})); connect(booleanExpression.y, pump.IsNight) annotation(Line(points={{25,70},{ 2.2,70}}, color = {255, 0, 255})); - connect(pump.port_b, storage.port_a_heatGenerator) annotation(Line(points={{-8,60}, - {-8,32.8},{-11.6,32.8}}, color = {0, 127, 255})); - connect(pipe.port_a, storage.port_b_heatGenerator) annotation(Line(points={{-6,0},{ - -8,0},{-8,16},{-11.6,16}}, color = {0, 127, 255})); - connect(pipe1.port_b, storage.port_a_consumer) annotation(Line(points={{-20,-16}, - {-20,14}}, color = {0, 127, 255})); connect(hotSummerDay.y[2], solarThermal.Irradiation) annotation(Line(points={{31,42}, {31,10},{34,10}}, color = {0, 0, 127})); connect(hotSummerDay.y[1], solarThermal.T_air) annotation(Line(points={{31,42}, @@ -122,9 +113,6 @@ equation connect(boundary_ph1.ports[1], pipe1.port_a) annotation (Line( points={{-46,-16},{-40,-16}}, color={0,127,255})); - connect(boundary_ph2.ports[1], storage.port_b_consumer) annotation (Line( - points={{-66,52},{-20,52},{-20,34}}, - color={0,127,255})); connect(boundary_p.ports[1], pump.port_a) annotation (Line( points={{-66,80},{-36,80},{-8,80}}, color={0,127,255})); @@ -133,7 +121,20 @@ equation color={0,0,127})); connect(const1.y, add.u1) annotation (Line(points={{78.4,24},{85.6,24},{85.6, 25.2}}, color={0,0,127})); - annotation (experiment(StopTime = 172800, Interval = 60),Documentation(info = "

                                        + connect(boundary_ph2.ports[1], bufferStorage.fluidportTop2) annotation (Line( + points={{-66,52},{-50,52},{-50,50},{-23.125,50},{-23.125,34.1}}, color= + {0,127,255})); + connect(pipe1.port_b, bufferStorage.fluidportBottom2) annotation (Line(points= + {{-20,-16},{-16,-16},{-16,0},{-22.875,0},{-22.875,13.9}}, color={0,127, + 255})); + connect(fixedTemperature.port, bufferStorage.heatportOutside) annotation ( + Line(points={{-40,24},{-34,24},{-34,24.6},{-29.75,24.6}}, color={191,0,0})); + connect(pipe.port_a, bufferStorage.portHC1Out) annotation (Line(points={{-6,0}, + {-6,26.6},{-9.875,26.6}}, color={0,127,255})); + connect(bufferStorage.portHC1In, pump.port_b) annotation (Line(points={{-9.75, + 29.7},{-9.75,44.85},{-8,44.85},{-8,60}}, color={0,127,255})); + annotation (experiment(Tolerance=1e-6, StopTime = 172800, Interval = 60), + Documentation(info = "

                                        Overview

                                        diff --git a/AixLib/Fluid/Storage/Examples/Stratified.mo b/AixLib/Fluid/Storage/Examples/Stratified.mo index 0479dbeaee..00ee065e49 100644 --- a/AixLib/Fluid/Storage/Examples/Stratified.mo +++ b/AixLib/Fluid/Storage/Examples/Stratified.mo @@ -67,10 +67,10 @@ model Stratified "Test model for stratified tank" "Pressure boundary condition" annotation (Placement(transformation(extent={{20,60},{40,80}}))); Modelica.Blocks.Sources.Sine sine( - freqHz=1/86400, + f=1/86400, amplitude=10, - offset=273.15 + 20) annotation (Placement(transformation(extent={{-90,62},{ - -70,82}}))); + offset=273.15 + 20) + annotation (Placement(transformation(extent={{-90,62},{-70,82}}))); Modelica.Thermal.HeatTransfer.Sources.PrescribedTemperature TBCSid2 "Boundary condition for tank" annotation (Placement(transformation(extent={ {-40,50},{-28,62}}))); @@ -147,18 +147,19 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Storage/Examples/Stratified.mos" "Simulate and plot"), Documentation(info=" -This test model compares two tank models. The only difference between -the two tank models is that one uses the third order upwind discretization -scheme that reduces numerical diffusion that is induced when connecting -volumes in series. -", revisions=" -

                                          -
                                        • -June 7, 2018 by Filip Jorissen:
                                          -Copied model from Buildings and update the model accordingly. -This is for -#314. -
                                        • -
                                        -")); + This test model compares two tank models. The only difference between + the two tank models is that one uses the third order upwind discretization + scheme that reduces numerical diffusion that is induced when connecting + volumes in series. + ",revisions=" +
                                          +
                                        • + June 7, 2018 by Filip Jorissen:
                                          + Copied model from Buildings and update the model accordingly. + This is for + #314. +
                                        • +
                                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end Stratified; diff --git a/AixLib/Fluid/Storage/Examples/StratifiedEnhancedInternalHex.mo b/AixLib/Fluid/Storage/Examples/StratifiedEnhancedInternalHex.mo index 7a69b559b0..008e19c659 100644 --- a/AixLib/Fluid/Storage/Examples/StratifiedEnhancedInternalHex.mo +++ b/AixLib/Fluid/Storage/Examples/StratifiedEnhancedInternalHex.mo @@ -6,10 +6,10 @@ model StratifiedEnhancedInternalHex package MediumTan = AixLib.Media.Water "Medium in the tank"; package MediumHex = AixLib.Media.Water "Medium in the heat exchanger"; - parameter Modelica.SIunits.PressureDifference dpHex_nominal=2500 + parameter Modelica.Units.SI.PressureDifference dpHex_nominal=2500 "Pressure drop across the heat exchanger at nominal conditions"; - parameter Modelica.SIunits.MassFlowRate mHex_flow_nominal = 0.278 + parameter Modelica.Units.SI.MassFlowRate mHex_flow_nominal=0.278 "Mass flow rate of heat exchanger"; AixLib.Fluid.Sources.Boundary_pT bouWat(redeclare package Medium = @@ -155,73 +155,74 @@ equation "Simulate and plot"), experiment(Tolerance=1e-6, StopTime=1200), Documentation(info=" -

                                        -This model provides an example for the - -AixLib.Fluid.Storage.StratifiedEnhancedInternalHex model. -There are three tanks. -In the tank on top, the fluid in the heat exchanger and the metal of the -heat exchanger use a steady-state energy balance. -In the middle tank, both use a dynamic balance. -In the bottom tank, the fluid uses a steady-state heat balance -but the metal of the heat exchanger uses a dynamic balance. -

                                        -

                                        -Each tank starts at the same water temperature, and there is no -water flow through the tank. -The glycol that flows through the heat exchanger starts with zero -mass flow rate, and is set to its design flow rate at t=300 seconds. -

                                        -", +

                                        + This model provides an example for the + + AixLib.Fluid.Storage.StratifiedEnhancedInternalHex model. + There are three tanks. + In the tank on top, the fluid in the heat exchanger and the metal of the + heat exchanger use a steady-state energy balance. + In the middle tank, both use a dynamic balance. + In the bottom tank, the fluid uses a steady-state heat balance + but the metal of the heat exchanger uses a dynamic balance. +

                                        +

                                        + Each tank starts at the same water temperature, and there is no + water flow through the tank. + The glycol that flows through the heat exchanger starts with zero + mass flow rate, and is set to its design flow rate at t=300 seconds. +

                                        + ", revisions=" -
                                          -
                                        • -June 7, 2018 by Filip Jorissen:
                                          -Copied model from Buildings and update the model accordingly. -This is for -#314. -
                                        • -
                                        • -January 22, 2016, by Michael Wetter:
                                          -Corrected type declaration of pressure difference. -This is -for #404. -
                                        • -
                                        • -September 28, 2015 by Michael Wetter:
                                          -Changed medium in heat exchanger from - -Modelica.Media.Incompressible.Examples.Glycol47 to - -AixLib.Media.Water -to avoid numerical derivative in regression tests. -
                                        • -
                                        • -July 2, 2015 by Michael Wetter:
                                          -Modified example to test dynamic versus steady-state heat exchanger -configuration. -
                                        • -
                                        • -December 22, 2014 by Michael Wetter:
                                          -Removed Modelica.Fluid.System -to address issue -#311. -
                                        • -
                                        • -August 29, 2014 by Michael Wetter:
                                          -Revised example to use a different media in the tank and in the -heat exchanger. This is to provide a unit test for -issue #271. -
                                        • -
                                        • -April 18, 2014 by Michael Wetter:
                                          -Revised example for new connectors and parameters, and provided -more interesting parameter values that cause a tank stratification. -
                                        • -
                                        • -Mar 27, 2013 by Peter Grant:
                                          -First implementation -
                                        • -
                                        -")); +
                                          +
                                        • + June 7, 2018 by Filip Jorissen:
                                          + Copied model from Buildings and update the model accordingly. + This is for + #314. +
                                        • +
                                        • + January 22, 2016, by Michael Wetter:
                                          + Corrected type declaration of pressure difference. + This is + for #404. +
                                        • +
                                        • + September 28, 2015 by Michael Wetter:
                                          + Changed medium in heat exchanger from + + Modelica.Media.Incompressible.Examples.Glycol47 to + + AixLib.Media.Water + to avoid numerical derivative in regression tests. +
                                        • +
                                        • + July 2, 2015 by Michael Wetter:
                                          + Modified example to test dynamic versus steady-state heat exchanger + configuration. +
                                        • +
                                        • + December 22, 2014 by Michael Wetter:
                                          + Removed Modelica.Fluid.System + to address issue + #311. +
                                        • +
                                        • + August 29, 2014 by Michael Wetter:
                                          + Revised example to use a different media in the tank and in the + heat exchanger. This is to provide a unit test for + issue #271. +
                                        • +
                                        • + April 18, 2014 by Michael Wetter:
                                          + Revised example for new connectors and parameters, and provided + more interesting parameter values that cause a tank stratification. +
                                        • +
                                        • + Mar 27, 2013 by Peter Grant:
                                          + First implementation +
                                        • +
                                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end StratifiedEnhancedInternalHex; diff --git a/AixLib/Fluid/Storage/Examples/StratifiedUnloadAtMinimumTemperature.mo b/AixLib/Fluid/Storage/Examples/StratifiedUnloadAtMinimumTemperature.mo index 6398d479ea..6558c99595 100644 --- a/AixLib/Fluid/Storage/Examples/StratifiedUnloadAtMinimumTemperature.mo +++ b/AixLib/Fluid/Storage/Examples/StratifiedUnloadAtMinimumTemperature.mo @@ -4,9 +4,9 @@ model StratifiedUnloadAtMinimumTemperature extends Modelica.Icons.Example; package Medium = AixLib.Media.Water "Medium model"; - parameter Modelica.SIunits.Volume VTan=3 "Tank volume"; + parameter Modelica.Units.SI.Volume VTan=3 "Tank volume"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal = 3*1000/3600 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=3*1000/3600 "Nominal mass flow rate"; constant Integer nSeg=5 "Number of volume segments"; @@ -177,32 +177,33 @@ equation StopTime=21600, Tolerance=1e-06), Documentation(info=" -

                                        -Example for tank model that has three outlets, each with a valve. -The valve at the bottom opens when the temperature in that tank segment -is sufficiently warm to serve the load. -The tank in the middle also opens when its tank temperature is sufficiently high, -but only if the valve below is closed. -Finally, the valve at the top only opens if no other valve is open. -Hence, there is always exactly one valve open. -On the right-hand side of the model is a heater that adds heat to the bottom of the -tank if the top tank segment is below the set point temperature. -

                                        -", revisions=" -
                                          -
                                        • -June 7, 2018 by Filip Jorissen:
                                          -Copied model from Buildings and update the model accordingly -by removing CDL blocks. -This is for -#314. -
                                        • -
                                        • -June 1, 2018, by Michael Wetter:
                                          -First implementation.
                                          -This is for -issue 1182. -
                                        • -
                                        -")); +

                                        + Example for tank model that has three outlets, each with a valve. + The valve at the bottom opens when the temperature in that tank segment + is sufficiently warm to serve the load. + The tank in the middle also opens when its tank temperature is sufficiently high, + but only if the valve below is closed. + Finally, the valve at the top only opens if no other valve is open. + Hence, there is always exactly one valve open. + On the right-hand side of the model is a heater that adds heat to the bottom of the + tank if the top tank segment is below the set point temperature. +

                                        + ",revisions=" +
                                          +
                                        • + June 7, 2018 by Filip Jorissen:
                                          + Copied model from Buildings and update the model accordingly + by removing CDL blocks. + This is for + #314. +
                                        • +
                                        • + June 1, 2018, by Michael Wetter:
                                          + First implementation.
                                          + This is for + issue 1182. +
                                        • +
                                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end StratifiedUnloadAtMinimumTemperature; diff --git a/AixLib/Fluid/Storage/Examples/TwoPhaseSeparator.mo b/AixLib/Fluid/Storage/Examples/TwoPhaseSeparator.mo index 3236630b45..5f79a8adb2 100644 --- a/AixLib/Fluid/Storage/Examples/TwoPhaseSeparator.mo +++ b/AixLib/Fluid/Storage/Examples/TwoPhaseSeparator.mo @@ -9,15 +9,15 @@ model TwoPhaseSeparator Modelica.Media.R134a.R134a_ph "Actual medium of the compressor"; - parameter Modelica.SIunits.AbsolutePressure pInl= - Medium.pressure(Medium.setBubbleState(Medium.setSat_T(TInl+5))) + parameter Modelica.Units.SI.AbsolutePressure pInl=Medium.pressure( + Medium.setBubbleState(Medium.setSat_T(TInl + 5))) "Actual pressure at inlet conditions"; - parameter Modelica.SIunits.Temperature TInl = 303.15 + parameter Modelica.Units.SI.Temperature TInl=303.15 "Actual temperature at inlet conditions"; - parameter Modelica.SIunits.AbsolutePressure pOut= - Medium.pressure(Medium.setDewState(Medium.setSat_T(TOut))) + parameter Modelica.Units.SI.AbsolutePressure pOut=Medium.pressure( + Medium.setDewState(Medium.setSat_T(TOut))) "Actual set point of the compressor's outlet pressure"; - parameter Modelica.SIunits.Temperature TOut = 293.15 + parameter Modelica.Units.SI.Temperature TOut=293.15 "Actual temperature at outlet conditions"; // Definition of models diff --git a/AixLib/Fluid/Storage/ExpansionVessel.mo b/AixLib/Fluid/Storage/ExpansionVessel.mo index 702dd6e39c..a453979ad5 100644 --- a/AixLib/Fluid/Storage/ExpansionVessel.mo +++ b/AixLib/Fluid/Storage/ExpansionVessel.mo @@ -4,28 +4,29 @@ model ExpansionVessel "Expansion vessel with fixed pressure" final energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, final massDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, final mSenFac=1); - parameter Modelica.SIunits.Volume V_start(start=1) + parameter Modelica.Units.SI.Volume V_start(start=1) "Volume of liquid stored in the vessel at the start of the simulation"; - parameter Modelica.SIunits.Pressure p = Medium.p_default + parameter Modelica.Units.SI.Pressure p=Medium.p_default "Constant pressure of the expansion vessel"; Modelica.Fluid.Interfaces.FluidPort_a port_a( redeclare package Medium = Medium) "Fluid port" annotation (Placement(transformation(extent={{-10,-110},{10,-90}}))); - Modelica.SIunits.Mass m "Mass of liquid in the vessel"; + Modelica.Units.SI.Mass m "Mass of liquid in the vessel"; protected final parameter Medium.ThermodynamicState state_start = Medium.setState_pTX( T=T_start, p=p_start, X=X_start[1:Medium.nXi]) "Medium state at start values"; - final parameter Modelica.SIunits.Density rho_start=Medium.density( - state=state_start) "Density, used to compute start and guess values"; + final parameter Modelica.Units.SI.Density rho_start=Medium.density(state= + state_start) "Density, used to compute start and guess values"; - Modelica.SIunits.Energy H "Internal energy of fluid"; - Modelica.SIunits.Mass[Medium.nXi] mXi + Modelica.Units.SI.Energy H "Internal energy of fluid"; + Modelica.Units.SI.Mass[Medium.nXi] mXi "Masses of independent components in the fluid"; - Modelica.SIunits.Mass[Medium.nC] mC "Masses of trace substances in the fluid"; + Modelica.Units.SI.Mass[Medium.nC] mC + "Masses of trace substances in the fluid"; Medium.ExtraProperty C[Medium.nC](nominal=C_nominal) "Trace substance mixture content"; @@ -55,7 +56,7 @@ equation Text( extent={{-148,98},{152,138}}, textString="%name", - lineColor={0,0,255}), + textColor={0,0,255}), Rectangle( extent={{-80,80},{80,-80}}, lineColor={0,0,0}, @@ -81,70 +82,71 @@ equation fillPattern=FillPattern.Solid)}), defaultComponentName="exp", Documentation(info=" -

                                        -This is a model of a pressure expansion vessel. The vessel has a constant pressure -that is equal to the value of the parameter p_start. -The model takes into account the energy and mass balance of the medium. -It has no heat exchange with the ambient. -

                                        -

                                        -The expansion vessel needs to be used in closed loops that contain -water to set a reference pressure and, for liquids where the -density is modeled as a function of temperature, to allow for -the thermal expansion of the liquid. -

                                        -

                                        -Note that alternatively, the model - -AixLib.Fluid.Sources.Boundary_pT may be used to set -a reference pressure. The main difference between these two models -is that in this model, there is an energy and mass balance for the volume. -In contrast, for - -AixLib.Fluid.Sources.Boundary_pT, -any mass flow rate that flows out of the model will be at a user-specified temperature. -Therefore, -AixLib.Fluid.Sources.Boundary_pT leads to smaller systems -of equations, which may result in faster simulation. -

                                        -", revisions=" -
                                          -
                                        • -May 29, 2014, by Michael Wetter:
                                          -Removed undesirable annotation Evaluate=true. -
                                        • -
                                        • -March 25, 2014 by Michael Wetter:
                                          -Revised the model to use a constant pressure rather than a constant volume of -water and gas. This leads to a simpler model. -
                                        • -
                                        • -August 1, 2013 by Michael Wetter:
                                          -Updated model to use new connector mWat_flow. -
                                        • -
                                        • -February 7, 2012 by Michael Wetter:
                                          -Revised due to changes in conservation equations in AixLib.Fluid.Interfaces. -
                                        • -
                                        • -September 16, 2011 by Michael Wetter:
                                          -Set m(stateSelect=StateSelect.always), since -setting the stateSelect attribute leads to smaller systems of equations. -
                                        • -
                                        • -July 26, 2011 by Michael Wetter:
                                          -Revised model to use new declarations from - -AixLib.Fluid.Interfaces.LumpedVolumeDeclarations. -
                                        • -
                                        • -May 25, 2011 by Michael Wetter:
                                          -Revised model due to a change in the fluid volume model. -
                                        • -
                                        • -Nov. 4, 2009 by Michael Wetter:
                                          -First implementation. -
                                        • -
                                        -")); +

                                        + This is a model of a pressure expansion vessel. The vessel has a constant pressure + that is equal to the value of the parameter p_start. + The model takes into account the energy and mass balance of the medium. + It has no heat exchange with the ambient. +

                                        +

                                        + The expansion vessel needs to be used in closed loops that contain + water to set a reference pressure and, for liquids where the + density is modeled as a function of temperature, to allow for + the thermal expansion of the liquid. +

                                        +

                                        + Note that alternatively, the model + + AixLib.Fluid.Sources.Boundary_pT may be used to set + a reference pressure. The main difference between these two models + is that in this model, there is an energy and mass balance for the volume. + In contrast, for + + AixLib.Fluid.Sources.Boundary_pT, + any mass flow rate that flows out of the model will be at a user-specified temperature. + Therefore, + AixLib.Fluid.Sources.Boundary_pT leads to smaller systems + of equations, which may result in faster simulation. +

                                        + ",revisions=" +
                                          +
                                        • + May 29, 2014, by Michael Wetter:
                                          + Removed undesirable annotation Evaluate=true. +
                                        • +
                                        • + March 25, 2014 by Michael Wetter:
                                          + Revised the model to use a constant pressure rather than a constant volume of + water and gas. This leads to a simpler model. +
                                        • +
                                        • + August 1, 2013 by Michael Wetter:
                                          + Updated model to use new connector mWat_flow. +
                                        • +
                                        • + February 7, 2012 by Michael Wetter:
                                          + Revised due to changes in conservation equations in AixLib.Fluid.Interfaces. +
                                        • +
                                        • + September 16, 2011 by Michael Wetter:
                                          + Set m(stateSelect=StateSelect.always), since + setting the stateSelect attribute leads to smaller systems of equations. +
                                        • +
                                        • + July 26, 2011 by Michael Wetter:
                                          + Revised model to use new declarations from + + AixLib.Fluid.Interfaces.LumpedVolumeDeclarations. +
                                        • +
                                        • + May 25, 2011 by Michael Wetter:
                                          + Revised model due to a change in the fluid volume model. +
                                        • +
                                        • + Nov. 4, 2009 by Michael Wetter:
                                          + First implementation. +
                                        • +
                                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end ExpansionVessel; diff --git a/AixLib/Fluid/Storage/Storage.mo b/AixLib/Fluid/Storage/Storage.mo index 7bba56bead..bf4626fa8e 100644 --- a/AixLib/Fluid/Storage/Storage.mo +++ b/AixLib/Fluid/Storage/Storage.mo @@ -6,18 +6,28 @@ model Storage constrainedby Modelica.Media.Interfaces.PartialMedium; parameter Integer n(min = 3) "number of layers"; - parameter Modelica.SIunits.Length d "storage diameter"; - parameter Modelica.SIunits.Length h "storage height"; - parameter Modelica.SIunits.ThermalConductivity lambda_ins - "thermal conductivity of insulation" annotation(Dialog(group = "Heat losses")); - parameter Modelica.SIunits.Length s_ins "thickness of insulation" annotation(Dialog(group = "Heat losses")); - parameter Modelica.SIunits.CoefficientOfHeatTransfer hConIn "Iinternal heat transfer coefficient" annotation(Dialog(group="Heat losses")); - parameter Modelica.SIunits.CoefficientOfHeatTransfer hConOut "External heat transfer coefficient" annotation(Dialog(group="Heat losses")); - parameter Modelica.SIunits.Volume V_HE "heat exchanger volume" annotation(Dialog(group = "Heat exchanger")); - parameter Modelica.SIunits.CoefficientOfHeatTransfer k_HE - "heat exchanger heat transfer coefficient" annotation(Dialog(group = "Heat exchanger")); - parameter Modelica.SIunits.Area A_HE "heat exchanger area" annotation(Dialog(group = "Heat exchanger")); - parameter Modelica.SIunits.RelativePressureCoefficient beta = 350e-6 annotation(Dialog(group = "Bouyancy")); + parameter Modelica.Units.SI.Length d "storage diameter"; + parameter Modelica.Units.SI.Length h "storage height"; + parameter Modelica.Units.SI.ThermalConductivity lambda_ins + "thermal conductivity of insulation" + annotation (Dialog(group="Heat losses")); + parameter Modelica.Units.SI.Length s_ins "thickness of insulation" + annotation (Dialog(group="Heat losses")); + parameter Modelica.Units.SI.CoefficientOfHeatTransfer hConIn + "Iinternal heat transfer coefficient" + annotation (Dialog(group="Heat losses")); + parameter Modelica.Units.SI.CoefficientOfHeatTransfer hConOut + "External heat transfer coefficient" + annotation (Dialog(group="Heat losses")); + parameter Modelica.Units.SI.Volume V_HE "heat exchanger volume" + annotation (Dialog(group="Heat exchanger")); + parameter Modelica.Units.SI.CoefficientOfHeatTransfer k_HE + "heat exchanger heat transfer coefficient" + annotation (Dialog(group="Heat exchanger")); + parameter Modelica.Units.SI.Area A_HE "heat exchanger area" + annotation (Dialog(group="Heat exchanger")); + parameter Modelica.Units.SI.RelativePressureCoefficient beta=350e-6 + annotation (Dialog(group="Bouyancy")); parameter Real kappa = 0.4 annotation(Dialog(group = "Bouyancy")); Modelica.Fluid.Interfaces.FluidPort_a port_a_consumer(redeclare final package Medium = Medium) @@ -75,9 +85,9 @@ model Storage each final dx=dx, each final kappa=kappa) annotation (Placement(transformation(extent={{-10,-10},{ 10,10}}, origin={-28,0}))); - parameter Modelica.SIunits.MassFlowRate m_flow_nominal_layer + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal_layer "Nominal mass flow rate in layers"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal_HE + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal_HE "Nominal mass flow rate of heat exchanger layers"; parameter Modelica.Fluid.Types.Dynamics energyDynamics=Modelica.Fluid.Types.Dynamics.DynamicFreeInitial @@ -90,18 +100,23 @@ model Storage "Start value of pressure" annotation(Dialog(tab="Initialization")); //Mass flow rates to regulate zero flow - parameter Modelica.SIunits.MassFlowRate m_flow_small_layer=1E-4*abs(m_flow_nominal_layer) - "Small mass flow rate for regularization of zero flow" annotation(Dialog(tab="Advanced")); - parameter Modelica.SIunits.MassFlowRate m_flow_small_layer_HE=1E-4*abs(m_flow_nominal_HE) - "Small mass flow rate for regularization of zero flow" annotation(Dialog(tab="Advanced")); + parameter Modelica.Units.SI.MassFlowRate m_flow_small_layer=1E-4*abs( + m_flow_nominal_layer) + "Small mass flow rate for regularization of zero flow" + annotation (Dialog(tab="Advanced")); + parameter Modelica.Units.SI.MassFlowRate m_flow_small_layer_HE=1E-4*abs( + m_flow_nominal_HE) "Small mass flow rate for regularization of zero flow" + annotation (Dialog(tab="Advanced")); protected - parameter Modelica.SIunits.Volume V = A * h; - parameter Modelica.SIunits.Area A = Modelica.Constants.pi * d ^ 2 / 4; - parameter Modelica.SIunits.Length dx = V / A / n; - parameter Modelica.SIunits.ThermalConductance G_middle=2*Modelica.Constants.pi*h/n/(1/(hConIn*d/2) + 1/lambda_ins*log((d/2 + s_ins)/(d/2)) - + 1/(hConOut*(d/2 + s_ins))); - parameter Modelica.SIunits.ThermalConductance G_top_bottom = G_middle + lambda_ins / s_ins * A; + parameter Modelica.Units.SI.Volume V=A*h; + parameter Modelica.Units.SI.Area A=Modelica.Constants.pi*d^2/4; + parameter Modelica.Units.SI.Length dx=V/A/n; + parameter Modelica.Units.SI.ThermalConductance G_middle=2*Modelica.Constants.pi + *h/n/(1/(hConIn*d/2) + 1/lambda_ins*log((d/2 + s_ins)/(d/2)) + 1/(hConOut + *(d/2 + s_ins))); + parameter Modelica.Units.SI.ThermalConductance G_top_bottom=G_middle + + lambda_ins/s_ins*A; equation //Connect layers to the upper and lower ports connect(port_a_consumer, layer[1].ports[1]) annotation (Line( diff --git a/AixLib/Fluid/Storage/Stratified.mo b/AixLib/Fluid/Storage/Stratified.mo index 1ee87d75e4..6d8ead735d 100644 --- a/AixLib/Fluid/Storage/Stratified.mo +++ b/AixLib/Fluid/Storage/Stratified.mo @@ -23,122 +23,128 @@ equation annotation ( defaultComponentName="tan", Documentation(info=" -

                                        -This is a model of a stratified storage tank. -

                                        -

                                        -See the - -AixLib.Fluid.Storage.UsersGuide -for more information. -

                                        -

                                        -For a model with enhanced stratification, use - -AixLib.Fluid.Storage.StratifiedEnhanced. -

                                        -", revisions=" -
                                          -
                                        • -June 7, 2018 by Filip Jorissen:
                                          -Copied model from Buildings and update the model accordingly. -This is for -#314. -
                                        • -
                                        • -June 1, 2018, by Michael Wetter:
                                          -Refactored model to allow a fluid port in the tank that do not have -the enhanced stratification model.
                                          -This is for -issue 1182. -
                                        • -
                                        • -July 29, 2017, by Michael Wetter:
                                          -Removed medium declaration, which is not needed and inconsistent with -the declaration in the base class. -This is for -issue 544. -
                                        • -
                                        • -March 28, 2015, by Filip Jorissen:
                                          -Propagated allowFlowReversal and m_flow_small -and set mSenFac=1. -
                                        • -
                                        • -January 26, 2015, by Michael Wetter:
                                          -Renamed -hA_flow to H_a_flow, -hB_flow to H_b_flow and -hVol_flow to H_vol_flow -as they output enthalpy flow rate, and not specific enthalpy. -Made various models protected. -
                                        • -
                                        • -January 25, 2015, by Michael Wetter:
                                          -Added final to tau = 0 in EnthalpyFlowRate. -These sensors do not need dynamics as the enthalpy flow rate -is used to compute a heat flow which is then added to the volume of the tank. -Thus, if there were high frequency oscillations of small mass flow rates, -then they have a small effect on H_flow, and they are -not used in any control loop. Rather, the oscillations are further damped -by the differential equation of the fluid volume. -
                                        • -
                                        • -January 25, 2015, by Filip Jorissen:
                                          -Set tau = 0 in EnthalpyFlowRate -sensors for increased simulation speed. -
                                        • -
                                        • -August 29, 2014, by Michael Wetter:
                                          -Replaced the use of Medium.lambda_const with -Medium.thermalConductivity(sta_default) as -lambda_const is not declared for all media. -This avoids a translation error if certain media are used. -
                                        • -
                                        • -June 18, 2014, by Michael Wetter:
                                          -Changed the default value for the energy balance initialization to avoid -a dependency on the global system declaration. -
                                        • -
                                        • -July 29, 2011, by Michael Wetter:
                                          -Removed use_T_start and h_start. -
                                        • -
                                        • -February 18, 2011, by Michael Wetter:
                                          -Changed default start values for temperature and pressure. -
                                        • -
                                        • -October 25, 2009 by Michael Wetter:
                                          -Changed computation of heat transfer through top (and bottom) of tank. Now, -the thermal resistance of the fluid is not taken into account, i.e., the -top (and bottom) element is assumed to be mixed. -
                                        • -
                                        • -October 23, 2009 by Michael Wetter:
                                          -Fixed bug in computing heat conduction of top and bottom segment. -In the previous version, -for computing the heat conduction between the top (or bottom) segment and -the outside, -the whole thickness of the water volume was used -instead of only half the thickness. -
                                        • -
                                        • -February 19, 2009 by Michael Wetter:
                                          -Changed declaration that constrains the medium. The earlier -declaration caused the medium model to be not shown in the parameter -window. -
                                        • -
                                        • -October 31, 2008 by Michael Wetter:
                                          -Added heat conduction. -
                                        • -
                                        • -October 23, 2008 by Michael Wetter:
                                          -First implementation. -
                                        • -
                                        -"), +

                                        + This is a model of a stratified storage tank. +

                                        +

                                        + See the + + AixLib.Fluid.Storage.UsersGuide + for more information. +

                                        +

                                        + For a model with enhanced stratification, use + + AixLib.Fluid.Storage.StratifiedEnhanced. +

                                        + ",revisions=" +
                                          +
                                        • + March 7, 2022, by Michael Wetter:
                                          + Set final massDynamics=energyDynamics.
                                          + This is for + #1542. +
                                        • +
                                        • + June 7, 2018 by Filip Jorissen:
                                          + Copied model from Buildings and update the model accordingly. + This is for + #314. +
                                        • +
                                        • + June 1, 2018, by Michael Wetter:
                                          + Refactored model to allow a fluid port in the tank that do not have + the enhanced stratification model.
                                          + This is for + issue 1182. +
                                        • +
                                        • + July 29, 2017, by Michael Wetter:
                                          + Removed medium declaration, which is not needed and inconsistent with + the declaration in the base class. + This is for + issue 544. +
                                        • +
                                        • + March 28, 2015, by Filip Jorissen:
                                          + Propagated allowFlowReversal and m_flow_small + and set mSenFac=1. +
                                        • +
                                        • + January 26, 2015, by Michael Wetter:
                                          + Renamed + hA_flow to H_a_flow, + hB_flow to H_b_flow and + hVol_flow to H_vol_flow + as they output enthalpy flow rate, and not specific enthalpy. + Made various models protected. +
                                        • +
                                        • + January 25, 2015, by Michael Wetter:
                                          + Added final to tau = 0 in EnthalpyFlowRate. + These sensors do not need dynamics as the enthalpy flow rate + is used to compute a heat flow which is then added to the volume of the tank. + Thus, if there were high frequency oscillations of small mass flow rates, + then they have a small effect on H_flow, and they are + not used in any control loop. Rather, the oscillations are further damped + by the differential equation of the fluid volume. +
                                        • +
                                        • + January 25, 2015, by Filip Jorissen:
                                          + Set tau = 0 in EnthalpyFlowRate + sensors for increased simulation speed. +
                                        • +
                                        • + August 29, 2014, by Michael Wetter:
                                          + Replaced the use of Medium.lambda_const with + Medium.thermalConductivity(sta_default) as + lambda_const is not declared for all media. + This avoids a translation error if certain media are used. +
                                        • +
                                        • + June 18, 2014, by Michael Wetter:
                                          + Changed the default value for the energy balance initialization to avoid + a dependency on the global system declaration. +
                                        • +
                                        • + July 29, 2011, by Michael Wetter:
                                          + Removed use_T_start and h_start. +
                                        • +
                                        • + February 18, 2011, by Michael Wetter:
                                          + Changed default start values for temperature and pressure. +
                                        • +
                                        • + October 25, 2009 by Michael Wetter:
                                          + Changed computation of heat transfer through top (and bottom) of tank. Now, + the thermal resistance of the fluid is not taken into account, i.e., the + top (and bottom) element is assumed to be mixed. +
                                        • +
                                        • + October 23, 2009 by Michael Wetter:
                                          + Fixed bug in computing heat conduction of top and bottom segment. + In the previous version, + for computing the heat conduction between the top (or bottom) segment and + the outside, + the whole thickness of the water volume was used + instead of only half the thickness. +
                                        • +
                                        • + February 19, 2009 by Michael Wetter:
                                          + Changed declaration that constrains the medium. The earlier + declaration caused the medium model to be not shown in the parameter + window. +
                                        • +
                                        • + October 31, 2008 by Michael Wetter:
                                          + Added heat conduction. +
                                        • +
                                        • + October 23, 2008 by Michael Wetter:
                                          + First implementation. +
                                        • +
                                        + "), Icon(graphics={ Rectangle( extent={{-40,60},{40,20}}, @@ -207,7 +213,7 @@ Icon(graphics={ fillPattern=FillPattern.CrossDiag), Text( extent={{100,106},{134,74}}, - lineColor={0,0,127}, + textColor={0,0,127}, textString="QLoss"), Rectangle( extent={{-10,10},{10,-10}}, @@ -249,5 +255,6 @@ Icon(graphics={ Line( points={{22,-74},{70,-74},{70,72}}, color={127,0,0}, - pattern=LinePattern.Dot)})); + pattern=LinePattern.Dot)}), + __Dymola_LockedEditing="Model from IBPSA"); end Stratified; diff --git a/AixLib/Fluid/Storage/StratifiedEnhanced.mo b/AixLib/Fluid/Storage/StratifiedEnhanced.mo index fc4bd88c93..4dc0313fc4 100644 --- a/AixLib/Fluid/Storage/StratifiedEnhanced.mo +++ b/AixLib/Fluid/Storage/StratifiedEnhanced.mo @@ -79,60 +79,66 @@ equation annotation ( defaultComponentName="tan", Documentation(info=" -

                                        -This is a model of a stratified storage tank for thermal energy storage. -

                                        -

                                        -See the - -AixLib.Fluid.Storage.UsersGuide -for more information. -

                                        -

                                        Limitations

                                        -

                                        -The model requires at least 4 fluid segments. Hence, set nSeg to 4 or higher. -

                                        -", revisions=" -
                                          -
                                        • -June 7, 2018 by Filip Jorissen:
                                          -Copied model from Buildings and update the model accordingly. -This is for -#314. -
                                        • -
                                        • -June 1, 2018, by Michael Wetter:
                                          -Refactored model to allow a fluid port in the tank that do not have -the enhanced stratification model.
                                          -This is for -issue 1182. -
                                        • -
                                        • -March 29, 2012 by Wangda Zuo:
                                          -Revised the implementation to reduce the temperature overshoot. -
                                        • -
                                        • -June 23, 2010 by Michael Wetter and Wangda Zuo:
                                          -Changed model that is used to correct the numerical diffusion. -The previous version used the model from Stefan Wischhusen, - -An Enhanced Discretization Method for Storage -Tank Models within Energy Systems, -Modelica Conference, -Vienna, Austria, September 2006. However, for situations where there is a strong stratification, -this model can lead to a large overshoot in tank temperatures, leading to a violation of the -second law. -In this revision, the model that computes the volume outlet temperatures has been changed to a third order upwind scheme, -which is implemented in - -AixLib.Fluid.Storage.BaseClasses.ThirdOrderStratifier. -
                                        • -
                                        • -October 23, 2008 by Michael Wetter:
                                          -First implementation. -
                                        • -
                                        -"), +

                                        + This is a model of a stratified storage tank for thermal energy storage. +

                                        +

                                        + See the + + AixLib.Fluid.Storage.UsersGuide + for more information. +

                                        +

                                        Limitations

                                        +

                                        + The model requires at least 4 fluid segments. Hence, set nSeg to 4 or higher. +

                                        + ",revisions=" +
                                          +
                                        • + March 7, 2022, by Michael Wetter:
                                          + Set final massDynamics=energyDynamics.
                                          + This is for + #1542. +
                                        • +
                                        • + June 7, 2018 by Filip Jorissen:
                                          + Copied model from Buildings and update the model accordingly. + This is for + #314. +
                                        • +
                                        • + June 1, 2018, by Michael Wetter:
                                          + Refactored model to allow a fluid port in the tank that do not have + the enhanced stratification model.
                                          + This is for + issue 1182. +
                                        • +
                                        • + March 29, 2012 by Wangda Zuo:
                                          + Revised the implementation to reduce the temperature overshoot. +
                                        • +
                                        • + June 23, 2010 by Michael Wetter and Wangda Zuo:
                                          + Changed model that is used to correct the numerical diffusion. + The previous version used the model from Stefan Wischhusen, + + An Enhanced Discretization Method for Storage + Tank Models within Energy Systems, + Modelica Conference, + Vienna, Austria, September 2006. However, for situations where there is a strong stratification, + this model can lead to a large overshoot in tank temperatures, leading to a violation of the + second law. + In this revision, the model that computes the volume outlet temperatures has been changed to a third order upwind scheme, + which is implemented in + + AixLib.Fluid.Storage.BaseClasses.ThirdOrderStratifier. +
                                        • +
                                        • + October 23, 2008 by Michael Wetter:
                                          + First implementation. +
                                        • +
                                        + "), Icon(graphics={ Rectangle( extent={{-40,20},{40,-20}}, @@ -156,5 +162,6 @@ First implementation. lineColor={0,0,255}, pattern=LinePattern.None, fillColor={255,255,0}, - fillPattern=FillPattern.Solid)})); + fillPattern=FillPattern.Solid)}), + __Dymola_LockedEditing="Model from IBPSA"); end StratifiedEnhanced; diff --git a/AixLib/Fluid/Storage/StratifiedEnhancedInternalHex.mo b/AixLib/Fluid/Storage/StratifiedEnhancedInternalHex.mo index c1449bc7ea..c02ba504c8 100644 --- a/AixLib/Fluid/Storage/StratifiedEnhancedInternalHex.mo +++ b/AixLib/Fluid/Storage/StratifiedEnhancedInternalHex.mo @@ -7,42 +7,42 @@ model StratifiedEnhancedInternalHex Modelica.Media.Interfaces.PartialMedium "Medium in the heat exchanger" annotation(Dialog(tab="General", group="Heat exchanger")); - parameter Modelica.SIunits.Height hHex_a + parameter Modelica.Units.SI.Height hHex_a "Height of portHex_a of the heat exchanger, measured from tank bottom" - annotation(Dialog(tab="General", group="Heat exchanger")); + annotation (Dialog(tab="General", group="Heat exchanger")); - parameter Modelica.SIunits.Height hHex_b + parameter Modelica.Units.SI.Height hHex_b "Height of portHex_b of the heat exchanger, measured from tank bottom" - annotation(Dialog(tab="General", group="Heat exchanger")); + annotation (Dialog(tab="General", group="Heat exchanger")); parameter Integer hexSegMult(min=1) = 2 "Number of heat exchanger segments in each tank segment" annotation(Dialog(tab="General", group="Heat exchanger")); - parameter Modelica.SIunits.Diameter dExtHex = 0.025 + parameter Modelica.Units.SI.Diameter dExtHex=0.025 "Exterior diameter of the heat exchanger pipe" - annotation(Dialog(group="Heat exchanger")); + annotation (Dialog(group="Heat exchanger")); - parameter Modelica.SIunits.HeatFlowRate Q_flow_nominal + parameter Modelica.Units.SI.HeatFlowRate Q_flow_nominal "Heat transfer at nominal conditions" - annotation(Dialog(tab="General", group="Heat exchanger")); - parameter Modelica.SIunits.Temperature TTan_nominal + annotation (Dialog(tab="General", group="Heat exchanger")); + parameter Modelica.Units.SI.Temperature TTan_nominal "Temperature of fluid inside the tank at nominal heat transfer conditions" - annotation(Dialog(tab="General", group="Heat exchanger")); - parameter Modelica.SIunits.Temperature THex_nominal + annotation (Dialog(tab="General", group="Heat exchanger")); + parameter Modelica.Units.SI.Temperature THex_nominal "Temperature of fluid inside the heat exchanger at nominal heat transfer conditions" - annotation(Dialog(tab="General", group="Heat exchanger")); + annotation (Dialog(tab="General", group="Heat exchanger")); parameter Real r_nominal(min=0, max=1)=0.5 "Ratio between coil inside and outside convective heat transfer at nominal heat transfer conditions" annotation(Dialog(tab="General", group="Heat exchanger")); - parameter Modelica.SIunits.MassFlowRate mHex_flow_nominal + parameter Modelica.Units.SI.MassFlowRate mHex_flow_nominal "Nominal mass flow rate through the heat exchanger" - annotation(Dialog(group="Heat exchanger")); + annotation (Dialog(group="Heat exchanger")); - parameter Modelica.SIunits.PressureDifference dpHex_nominal(displayUnit="Pa") = 2500 - "Pressure drop across the heat exchanger at nominal conditions" - annotation(Dialog(group="Heat exchanger")); + parameter Modelica.Units.SI.PressureDifference dpHex_nominal(displayUnit="Pa")= + 2500 "Pressure drop across the heat exchanger at nominal conditions" + annotation (Dialog(group="Heat exchanger")); parameter Boolean computeFlowResistance=true "=true, compute flow resistance. Set to false to assume no friction" @@ -63,36 +63,31 @@ model StratifiedEnhancedInternalHex parameter Modelica.Fluid.Types.Dynamics energyDynamicsHex= Modelica.Fluid.Types.Dynamics.DynamicFreeInitial "Formulation of energy balance for heat exchanger internal fluid mass" - annotation(Evaluate=true, Dialog(tab = "Dynamics heat exchanger", group="Equations")); - parameter Modelica.Fluid.Types.Dynamics massDynamicsHex= - energyDynamicsHex "Formulation of mass balance for heat exchanger" - annotation(Evaluate=true, Dialog(tab = "Dynamics heat exchanger", group="Equations")); + annotation(Evaluate=true, Dialog(tab = "Dynamics heat exchanger", group="Conservation equations")); + parameter Modelica.Fluid.Types.Dynamics energyDynamicsHexSolid=energyDynamicsHex "Formulation of energy balance for heat exchanger solid mass" - annotation(Evaluate=true, Dialog(tab = "Dynamics heat exchanger", group="Equations")); + annotation(Evaluate=true, Dialog(tab = "Dynamics heat exchanger", group="Conservation equations")); - parameter Modelica.SIunits.Length lHex= - rTan*abs(segHex_a-segHex_b)*Modelica.Constants.pi - "Approximate length of the heat exchanger" - annotation(Dialog(tab = "Dynamics heat exchanger", group="Equations")); + parameter Modelica.Units.SI.Length lHex=rTan*abs(segHex_a - segHex_b)* + Modelica.Constants.pi "Approximate length of the heat exchanger" + annotation (Dialog(tab="Dynamics heat exchanger", group="Conservation equations")); - parameter Modelica.SIunits.Area ACroHex= - (dExtHex^2-(0.8*dExtHex)^2)*Modelica.Constants.pi/4 - "Cross sectional area of the heat exchanger" - annotation(Dialog(tab = "Dynamics heat exchanger", group="Equations")); + parameter Modelica.Units.SI.Area ACroHex=(dExtHex^2 - (0.8*dExtHex)^2)* + Modelica.Constants.pi/4 "Cross sectional area of the heat exchanger" + annotation (Dialog(tab="Dynamics heat exchanger", group="Conservation equations")); - parameter Modelica.SIunits.SpecificHeatCapacity cHex=490 + parameter Modelica.Units.SI.SpecificHeatCapacity cHex=490 "Specific heat capacity of the heat exchanger material" - annotation(Dialog(tab = "Dynamics heat exchanger", group="Equations")); + annotation (Dialog(tab="Dynamics heat exchanger", group="Conservation equations")); - parameter Modelica.SIunits.Density dHex=8000 + parameter Modelica.Units.SI.Density dHex=8000 "Density of the heat exchanger material" - annotation(Dialog(tab = "Dynamics heat exchanger", group="Equations")); + annotation (Dialog(tab="Dynamics heat exchanger", group="Conservation equations")); - parameter Modelica.SIunits.HeatCapacity CHex= - ACroHex*lHex*dHex*cHex + parameter Modelica.Units.SI.HeatCapacity CHex=ACroHex*lHex*dHex*cHex "Capacitance of the heat exchanger without the fluid" - annotation(Dialog(tab = "Dynamics heat exchanger", group="Equations")); + annotation (Dialog(tab="Dynamics heat exchanger", group="Conservation equations")); parameter Boolean allowFlowReversalHex = true "= true to allow flow reversal in heat exchanger, false restricts to design direction (portHex_a -> portHex_b)" annotation(Dialog(tab="Assumptions", group="Heat exchanger"), Evaluate=true); @@ -124,7 +119,6 @@ model StratifiedEnhancedInternalHex final m_flow_nominal=mHex_flow_nominal, final energyDynamics=energyDynamicsHex, final energyDynamicsSolid=energyDynamicsHexSolid, - final massDynamics=massDynamicsHex, final computeFlowResistance=computeFlowResistance, from_dp=from_dp, final linearizeFlowResistance=linearizeFlowResistance, @@ -138,7 +132,7 @@ model StratifiedEnhancedInternalHex rotation=180, origin={-87,32}))); - Modelica.SIunits.HeatFlowRate QHex_flow = -sum(indTanHex.port.Q_flow) + Modelica.Units.SI.HeatFlowRate QHex_flow=-sum(indTanHex.port.Q_flow) "Heat transferred from the heat exchanger to the tank"; protected final parameter Integer segHex_a = nSeg-integer(hHex_a/segHeight) @@ -149,15 +143,14 @@ protected "Tank segment in which port b1 of the heat exchanger is located in" annotation(Evaluate=true, Dialog(group="Heat exchanger")); - final parameter Modelica.SIunits.Height segHeight = hTan/nSeg + final parameter Modelica.Units.SI.Height segHeight=hTan/nSeg "Height of each tank segment (relative to bottom of same segment)"; - final parameter Modelica.SIunits.Length dHHex = abs(hHex_a-hHex_b) + final parameter Modelica.Units.SI.Length dHHex=abs(hHex_a - hHex_b) "Vertical distance between the heat exchanger inlet and outlet"; - final parameter Modelica.SIunits.Volume volHexFlu= - Modelica.Constants.pi * (0.8*dExtHex)^2/4 *lHex - "Volume of the heat exchanger"; + final parameter Modelica.Units.SI.Volume volHexFlu=Modelica.Constants.pi*(0.8 + *dExtHex)^2/4*lHex "Volume of the heat exchanger"; final parameter Integer nSegHexTan= if segHex_a > segHex_b then segHex_a-segHex_b + 1 else segHex_b-segHex_a + 1 @@ -236,107 +229,114 @@ equation fillPattern=FillPattern.Solid)}), defaultComponentName = "tan", Documentation(info = " -

                                        -This is a model of a stratified storage tank for thermal energy storage with built-in heat exchanger. -

                                        -

                                        -See the - -AixLib.Fluid.Storage.UsersGuide -for more information. -

                                        -

                                        Limitations

                                        -

                                        -The model requires at least 4 fluid segments. Hence, set nSeg to 4 or higher. -

                                        -", +

                                        + This is a model of a stratified storage tank for thermal energy storage with built-in heat exchanger. +

                                        +

                                        + See the + + AixLib.Fluid.Storage.UsersGuide + for more information. +

                                        +

                                        Limitations

                                        +

                                        + The model requires at least 4 fluid segments. Hence, set nSeg to 4 or higher. +

                                        + ", revisions=" -
                                          -
                                        • -June 7, 2018 by Filip Jorissen:
                                          -Copied model from Buildings and update the model accordingly. -This is for -#314. -
                                        • -
                                        • -June 23, 2016, by Michael Wetter:
                                          -Corrected computation of the heat exchanger location which was wrong -if hHex_a < hHex_b, e.g., the port a of the heat exchanger -is below the port b. -This closes -issue 531. -
                                        • -
                                        • -January 22, 2016, by Michael Wetter:
                                          -Corrected type declaration of pressure difference. -This is -for #404. -
                                        • -
                                        • -July 2, 2015, by Michael Wetter:
                                          -Set the default value energyDynamicsHexSolid=energyDynamicsHex -rather than -energyDynamicsHexSolid=Modelica.Fluid.Types.Dynamics.DynamicFreeInitial -as users are not likely to want different settings. -
                                        • -
                                        • -July 1, 2015, by Filip Jorissen:
                                          -Added parameter energyDynamicsHexSolid. -This is for - -#434. -
                                        • -
                                        • -March 28, 2015, by Filip Jorissen:
                                          -Propagated allowFlowReversal and m_flow_small. -
                                        • -
                                        • -September 2, 2014 by Michael Wetter:
                                          -Replaced the abs() function in the assignment of the parameter -nSegHexTan as the return value of abs() -is a Real which causes a type error during model check. -
                                        • -
                                        • -August 29, 2014 by Michael Wetter:
                                          -Corrected issue #271 -which led to a compilation error if the heat exchanger and the tank -had different media. -
                                        • -
                                        • -April 18, 2014 by Michael Wetter:
                                          -Added missing ceiling function in computation of botHexSeg. -Without this function, this parameter can take on zero, which is wrong -because the Modelica uses one-based arrays. - -Revised the model as the old version required the porta -of the heat exchanger to be located higher than portb. -This makes sense if the heat exchanger is used to heat up the tank, -but not if it is used to cool down a tank, such as in a cooling plant. -The following parameters were changed: -
                                            -
                                          1. Changed hexTopHeight to hHex_a.
                                          2. -
                                          3. Changed hexBotHeight to hHex_b.
                                          4. -
                                          5. Changed topHexSeg to segHex_a, - and made it protected as this is deduced from hHex_a.
                                          6. -
                                          7. Changed botHexSeg to segHex_b, - and made it protected as this is deduced from hHex_b.
                                          8. -
                                          -The names of the following ports have been changed: -
                                            -
                                          1. Changed port_a1 to portHex_a.
                                          2. -
                                          3. Changed port_b1 to portHex_b.
                                          4. -
                                          -The conversion script should update old instances of -this model automatically in Dymola for all of the above changes. -
                                        • -
                                        • -May 10, 2013 by Michael Wetter:
                                          -Removed m_flow_nominal_tank which was not used. -
                                        • -
                                        • -January 29, 2013 by Peter Grant:
                                          -First implementation. -
                                        • -
                                        -")); +
                                          +
                                        • + March 7, 2022, by Michael Wetter:
                                          + Removed massDynamics and massDynamicsHex.
                                          + This is for + #1542. +
                                        • +
                                        • + June 7, 2018 by Filip Jorissen:
                                          + Copied model from Buildings and update the model accordingly. + This is for + #314. +
                                        • +
                                        • + June 23, 2016, by Michael Wetter:
                                          + Corrected computation of the heat exchanger location which was wrong + if hHex_a < hHex_b, e.g., the port a of the heat exchanger + is below the port b. + This closes + issue 531. +
                                        • +
                                        • + January 22, 2016, by Michael Wetter:
                                          + Corrected type declaration of pressure difference. + This is + for #404. +
                                        • +
                                        • + July 2, 2015, by Michael Wetter:
                                          + Set the default value energyDynamicsHexSolid=energyDynamicsHex + rather than + energyDynamicsHexSolid=Modelica.Fluid.Types.Dynamics.DynamicFreeInitial + as users are not likely to want different settings. +
                                        • +
                                        • + July 1, 2015, by Filip Jorissen:
                                          + Added parameter energyDynamicsHexSolid. + This is for + + #434. +
                                        • +
                                        • + March 28, 2015, by Filip Jorissen:
                                          + Propagated allowFlowReversal and m_flow_small. +
                                        • +
                                        • + September 2, 2014 by Michael Wetter:
                                          + Replaced the abs() function in the assignment of the parameter + nSegHexTan as the return value of abs() + is a Real which causes a type error during model check. +
                                        • +
                                        • + August 29, 2014 by Michael Wetter:
                                          + Corrected issue #271 + which led to a compilation error if the heat exchanger and the tank + had different media. +
                                        • +
                                        • + April 18, 2014 by Michael Wetter:
                                          + Added missing ceiling function in computation of botHexSeg. + Without this function, this parameter can take on zero, which is wrong + because the Modelica uses one-based arrays. + + Revised the model as the old version required the porta + of the heat exchanger to be located higher than portb. + This makes sense if the heat exchanger is used to heat up the tank, + but not if it is used to cool down a tank, such as in a cooling plant. + The following parameters were changed: +
                                            +
                                          1. Changed hexTopHeight to hHex_a.
                                          2. +
                                          3. Changed hexBotHeight to hHex_b.
                                          4. +
                                          5. Changed topHexSeg to segHex_a, + and made it protected as this is deduced from hHex_a.
                                          6. +
                                          7. Changed botHexSeg to segHex_b, + and made it protected as this is deduced from hHex_b.
                                          8. +
                                          + The names of the following ports have been changed: +
                                            +
                                          1. Changed port_a1 to portHex_a.
                                          2. +
                                          3. Changed port_b1 to portHex_b.
                                          4. +
                                          + The conversion script should update old instances of + this model automatically in Dymola for all of the above changes. +
                                        • +
                                        • + May 10, 2013 by Michael Wetter:
                                          + Removed m_flow_nominal_tank which was not used. +
                                        • +
                                        • + January 29, 2013 by Peter Grant:
                                          + First implementation. +
                                        • +
                                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end StratifiedEnhancedInternalHex; diff --git a/AixLib/Fluid/Storage/TwoPhaseSeparator.mo b/AixLib/Fluid/Storage/TwoPhaseSeparator.mo index d9db85b9a1..133724a782 100644 --- a/AixLib/Fluid/Storage/TwoPhaseSeparator.mo +++ b/AixLib/Fluid/Storage/TwoPhaseSeparator.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Storage; +within AixLib.Fluid.Storage; model TwoPhaseSeparator "Model of a fully-mixed two-phase tank that works as ideally phase seperator" @@ -12,21 +12,16 @@ model TwoPhaseSeparator // Parameters describing tank's geometry // - parameter Modelica.SIunits.Volume VTanInn = 2e-3 - "Inner total volume of the tank" - annotation(Dialog(group = "Geometry")); - parameter Modelica.SIunits.Area ATanInn = VTanInn/hTanInn + parameter Modelica.Units.SI.Volume VTanInn=2e-3 + "Inner total volume of the tank" annotation (Dialog(group="Geometry")); + parameter Modelica.Units.SI.Area ATanInn=VTanInn/hTanInn "Inner cross-sectional area of the tank" - annotation(Dialog(group="Geometry", - enable=false)); - parameter Modelica.SIunits.Length hTanInn = 0.5 - "Inner height of the tank" - annotation(Dialog(group = "Geometry")); - parameter Modelica.SIunits.Diameter dTanInn= - sqrt(4*ATanInn/Modelica.Constants.pi) + annotation (Dialog(group="Geometry", enable=false)); + parameter Modelica.Units.SI.Length hTanInn=0.5 "Inner height of the tank" + annotation (Dialog(group="Geometry")); + parameter Modelica.Units.SI.Diameter dTanInn=sqrt(4*ATanInn/Modelica.Constants.pi) "Inner diameter of the tank" - annotation(Dialog(group="Geometry", - enable=false)); + annotation (Dialog(group="Geometry", enable=false)); // Parameters describing tank's heat losses if computed // @@ -34,23 +29,27 @@ model TwoPhaseSeparator "= true, if heat losses are computed" annotation(Dialog(tab="Heat losses",group="General")); - parameter Modelica.SIunits.Length sIns = 0.1 - "Thickness of insulation" - annotation(Dialog(tab="Heat losses",group="Geometry", - enable=useHeatLoss)); - - parameter Modelica.SIunits.ThermalConductivity lamIns = 0.04 - "Thermal conductivity of the insulation" - annotation(Dialog(tab="Heat losses",group="Properties", - enable=useHeatLoss)); - parameter Modelica.SIunits.CoefficientOfHeatTransfer alpInn = 100 - "Inner mean heat transfer coefficient" - annotation(Dialog(tab="Heat losses",group="Properties", - enable=useHeatLoss)); - parameter Modelica.SIunits.CoefficientOfHeatTransfer alpOut = 10 - "Outer mean heat transfer coefficient" - annotation(Dialog(tab="Heat losses",group="Properties", - enable=useHeatLoss)); + parameter Modelica.Units.SI.Length sIns=0.1 "Thickness of insulation" + annotation (Dialog( + tab="Heat losses", + group="Geometry", + enable=useHeatLoss)); + + parameter Modelica.Units.SI.ThermalConductivity lamIns=0.04 + "Thermal conductivity of the insulation" annotation (Dialog( + tab="Heat losses", + group="Properties", + enable=useHeatLoss)); + parameter Modelica.Units.SI.CoefficientOfHeatTransfer alpInn=100 + "Inner mean heat transfer coefficient" annotation (Dialog( + tab="Heat losses", + group="Properties", + enable=useHeatLoss)); + parameter Modelica.Units.SI.CoefficientOfHeatTransfer alpOut=10 + "Outer mean heat transfer coefficient" annotation (Dialog( + tab="Heat losses", + group="Properties", + enable=useHeatLoss)); // Definition of parameters describing assumptions // @@ -60,9 +59,9 @@ model TwoPhaseSeparator // Definition of parameters describing initialisation and nominal conditions // - parameter Modelica.SIunits.PressureDifference dp_start(displayUnit="Pa") = 0 + parameter Modelica.Units.SI.PressureDifference dp_start(displayUnit="Pa") = 0 "Guess value of dp = port_a.p - port_b.p" - annotation(Dialog(tab="Advanced",group="Medium Initialisation")); + annotation (Dialog(tab="Advanced", group="Medium Initialisation")); parameter Medium.MassFlowRate m_flow_start_a = 0.1 "Guess value of port_a.m_flow" annotation(Dialog(tab="Advanced",group="Medium Initialisation")); @@ -73,19 +72,19 @@ model TwoPhaseSeparator parameter Boolean steSta = false "= true, if tank is initialised steady state" annotation(Dialog(tab="Advanced",group="Tank Initialisation")); - parameter Modelica.SIunits.Volume VLiq0 = 0.2*VTanInn + parameter Modelica.Units.SI.Volume VLiq0=0.2*VTanInn "Volume of the liquid phase at initialisation" - annotation(Dialog(tab="Advanced",group="Tank Initialisation")); - parameter Modelica.SIunits.AbsolutePressure pTan0 = 10e5 + annotation (Dialog(tab="Advanced", group="Tank Initialisation")); + parameter Modelica.Units.SI.AbsolutePressure pTan0=10e5 "Mean pressure of the medium in the tank at initialisation" - annotation(Dialog(tab="Advanced",group="Tank Initialisation")); - parameter Modelica.SIunits.SpecificEnthalpy hTan0 = 300e3 + annotation (Dialog(tab="Advanced", group="Tank Initialisation")); + parameter Modelica.Units.SI.SpecificEnthalpy hTan0=300e3 "Mean specific enthalpy of the medium in the tank at initialisation" - annotation(Dialog(tab="Advanced",group="Tank Initialisation")); + annotation (Dialog(tab="Advanced", group="Tank Initialisation")); - parameter Modelica.SIunits.MassFlowRate m_flow_nominal = 0.1 + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=0.1 "Nominal mass flow rate" - annotation(Dialog(tab="Advanced",group="Numeric limitations")); + annotation (Dialog(tab="Advanced", group="Numeric limitations")); parameter Medium.MassFlowRate m_flow_small = 1e-6*m_flow_nominal "Small mass flow rate for regularization of zero flow" annotation(Dialog(tab="Advanced",group="Numeric limitations")); @@ -117,39 +116,30 @@ model TwoPhaseSeparator record TankProperties "Record that contains properties of the tank" - Modelica.SIunits.AbsolutePressure pTan + Modelica.Units.SI.AbsolutePressure pTan "Mean pressure of the medium in the tank"; - Modelica.SIunits.Temperature TTan + Modelica.Units.SI.Temperature TTan "Mean temperature of the medium in the tank"; - Modelica.SIunits.Density dTan - "Mean density of the medium in the tank"; - Modelica.SIunits.SpecificEnthalpy hTan + Modelica.Units.SI.Density dTan "Mean density of the medium in the tank"; + Modelica.Units.SI.SpecificEnthalpy hTan "Mean specific enthalpy of the medium in the tank"; - Modelica.SIunits.Density dLiq - "Density of the liquid phase"; - Modelica.SIunits.Density dVap - "Density of the vapour phase"; - Modelica.SIunits.SpecificEnthalpy hLiq + Modelica.Units.SI.Density dLiq "Density of the liquid phase"; + Modelica.Units.SI.Density dVap "Density of the vapour phase"; + Modelica.Units.SI.SpecificEnthalpy hLiq "Specific enthalpy of the liquid phase"; - Modelica.SIunits.SpecificEnthalpy hVap + Modelica.Units.SI.SpecificEnthalpy hVap "Specific enthalpy of the vapour phase"; - Modelica.SIunits.SpecificEnthalpy hInn - "Specific enthalpy at tank's Innet"; - Modelica.SIunits.SpecificEnthalpy hOut + Modelica.Units.SI.SpecificEnthalpy hInn "Specific enthalpy at tank's Innet"; + Modelica.Units.SI.SpecificEnthalpy hOut "Specific enthalpy at tank's outlet"; - Modelica.SIunits.Volume VLiq - "Volume of the liquid phase"; - Modelica.SIunits.Volume VVap - "Volume of the vapour phase"; - Modelica.SIunits.Mass mTan - "Mass of the medium in the tank"; - Modelica.SIunits.Mass mLiq - "Mass of the liquid phase"; - Modelica.SIunits.Mass mVap - "Mass of the vapour phase"; + Modelica.Units.SI.Volume VLiq "Volume of the liquid phase"; + Modelica.Units.SI.Volume VVap "Volume of the vapour phase"; + Modelica.Units.SI.Mass mTan "Mass of the medium in the tank"; + Modelica.Units.SI.Mass mLiq "Mass of the liquid phase"; + Modelica.Units.SI.Mass mVap "Mass of the vapour phase"; Real levTan(unit="1") "Relative level of the tank"; @@ -159,15 +149,13 @@ model TwoPhaseSeparator record TankPropertiesDetailed "Record that contains detailed properties of the tank" - Modelica.SIunits.Mass mXi[Medium.nXi] + Modelica.Units.SI.Mass mXi[Medium.nXi] "Masses of independent components in the fluid"; - Modelica.SIunits.Mass mC[Medium.nC] + Modelica.Units.SI.Mass mC[Medium.nC] "Masses of trace substances in the fluid"; - Modelica.SIunits.MassFlowRate dMTan - "Change in tank's mass wrt. time"; - Modelica.SIunits.Power dUTan - "Change in tank's internal energy wrt. time"; + Modelica.Units.SI.MassFlowRate dMTan "Change in tank's mass wrt. time"; + Modelica.Units.SI.Power dUTan "Change in tank's internal energy wrt. time"; Medium.DerDensityByEnthalpy ddhp "Density derivative w.r.t. specific enthalpy"; Medium.DerDensityByPressure ddph @@ -181,16 +169,15 @@ model TwoPhaseSeparator record HeatLosses "Record that contains properties of calculated heat losses" - Modelica.SIunits.ThermalConductance G + Modelica.Units.SI.ThermalConductance G "Thermal conductance of the tank's sheat"; - Modelica.SIunits.ThermalConductance GShe + Modelica.Units.SI.ThermalConductance GShe "Thermal conductance of the tank's sheat"; - Modelica.SIunits.ThermalConductance GTopBot + Modelica.Units.SI.ThermalConductance GTopBot "Thermal conductance of the tank's top and bottom"; - Modelica.SIunits.TemperatureDifference dTHeaLos + Modelica.Units.SI.TemperatureDifference dTHeaLos "Temperature difference between tank and ambient"; - Modelica.SIunits.Power Q_flow_loss - "Heat losses from tank to ambient"; + Modelica.Units.SI.Power Q_flow_loss "Heat losses from tank to ambient"; end HeatLosses; // Definition of records that summarise variables computed in the model @@ -255,33 +242,31 @@ model TwoPhaseSeparator // Calculating diagnostic values // - Modelica.SIunits.VolumeFlowRate port_a_V_flow= - port_a.m_flow/Modelica.Fluid.Utilities.regStep(port_a.m_flow, - Medium.density( - Medium.setState_phX( - p = port_a.p, - h = inStream(port_a.h_outflow), - X = inStream(port_a.Xi_outflow))), - Medium.density( - Medium.setState_phX( - p = port_b.p, - h = inStream(port_b.h_outflow), - X = inStream(port_b.Xi_outflow))), - m_flow_small) if show_V_flow + Modelica.Units.SI.VolumeFlowRate port_a_V_flow=port_a.m_flow/ + Modelica.Fluid.Utilities.regStep( + port_a.m_flow, + Medium.density(Medium.setState_phX( + p=port_a.p, + h=inStream(port_a.h_outflow), + X=inStream(port_a.Xi_outflow))), + Medium.density(Medium.setState_phX( + p=port_b.p, + h=inStream(port_b.h_outflow), + X=inStream(port_b.Xi_outflow))), + m_flow_small) if show_V_flow "Volume flow rate at port_a (positive when flow from port_a to port_b)"; - Modelica.SIunits.VolumeFlowRate port_b_V_flow= - port_b.m_flow/Modelica.Fluid.Utilities.regStep(port_b.m_flow, - Medium.density( - Medium.setState_phX( - p = port_b.p, - h = inStream(port_b.h_outflow), - X = inStream(port_b.Xi_outflow))), - Medium.density( - Medium.setState_phX( - p = port_a.p, - h = inStream(port_a.h_outflow), - X = inStream(port_a.Xi_outflow))), - m_flow_small) if show_V_flow + Modelica.Units.SI.VolumeFlowRate port_b_V_flow=port_b.m_flow/ + Modelica.Fluid.Utilities.regStep( + port_b.m_flow, + Medium.density(Medium.setState_phX( + p=port_b.p, + h=inStream(port_b.h_outflow), + X=inStream(port_b.Xi_outflow))), + Medium.density(Medium.setState_phX( + p=port_a.p, + h=inStream(port_a.h_outflow), + X=inStream(port_a.Xi_outflow))), + m_flow_small) if show_V_flow "Volume flow rate at port_b (positive when flow from port_a to port_b)"; Medium.Temperature port_a_T= @@ -314,64 +299,55 @@ model TwoPhaseSeparator "Temperature close to port_b, if show_T = true"; protected - parameter Modelica.SIunits.ThermalConductance G = GShe + 2*GTopBot - "Thermal conductance of the tank's sheat" - annotation(Dialog(tab="Heat losses",group="Properties", - enable=false)); - parameter Modelica.SIunits.ThermalConductance GShe = 2*Modelica.Constants.pi* - hTanInn / (1/(alpInn*(dTanInn/2)) + 1/lamIns*log(1+sIns/(dTanInn/2)) + - 1/(alpOut*(dTanInn/2+sIns))) - "Thermal conductance of the tank's sheat" - annotation(Dialog(tab="Heat losses",group="Properties", - enable=false)); - parameter Modelica.SIunits.ThermalConductance GTopBot= - ATanInn / (1/alpInn + sIns/lamIns + 1/alpOut) - "Thermal conductance of the tank's top and bottom" - annotation(Dialog(tab="Heat losses",group="Properties", - enable=false)); - - Modelica.SIunits.AbsolutePressure pTan(start=pTan0) + parameter Modelica.Units.SI.ThermalConductance G=GShe + 2*GTopBot + "Thermal conductance of the tank's sheat" annotation (Dialog( + tab="Heat losses", + group="Properties", + enable=false)); + parameter Modelica.Units.SI.ThermalConductance GShe=2*Modelica.Constants.pi* + hTanInn/(1/(alpInn*(dTanInn/2)) + 1/lamIns*log(1 + sIns/(dTanInn/2)) + 1/ + (alpOut*(dTanInn/2 + sIns))) "Thermal conductance of the tank's sheat" + annotation (Dialog( + tab="Heat losses", + group="Properties", + enable=false)); + parameter Modelica.Units.SI.ThermalConductance GTopBot=ATanInn/(1/alpInn + + sIns/lamIns + 1/alpOut) + "Thermal conductance of the tank's top and bottom" annotation (Dialog( + tab="Heat losses", + group="Properties", + enable=false)); + + Modelica.Units.SI.AbsolutePressure pTan(start=pTan0) "Mean pressure of the medium in the tank"; - Modelica.SIunits.Temperature TTan + Modelica.Units.SI.Temperature TTan "Mean temperature of the medium in the tank"; - Modelica.SIunits.Density dTan - "Mean density of the medium in the tank"; - Modelica.SIunits.SpecificEnthalpy hTan(start=hTan0) + Modelica.Units.SI.Density dTan "Mean density of the medium in the tank"; + Modelica.Units.SI.SpecificEnthalpy hTan(start=hTan0) "Mean specific enthalpy of the medium in the tank"; - Modelica.SIunits.Density dLiq - "Density of the liquid phase"; - Modelica.SIunits.Density dVap - "Density of the vapour phase"; - Modelica.SIunits.SpecificEnthalpy hLiq + Modelica.Units.SI.Density dLiq "Density of the liquid phase"; + Modelica.Units.SI.Density dVap "Density of the vapour phase"; + Modelica.Units.SI.SpecificEnthalpy hLiq "Specific enthalpy of the liquid phase"; - Modelica.SIunits.SpecificEnthalpy hVap + Modelica.Units.SI.SpecificEnthalpy hVap "Specific enthalpy of the vapour phase"; - Modelica.SIunits.SpecificEnthalpy hInn - "Specific enthalpy at tank's Innet"; - Modelica.SIunits.SpecificEnthalpy hOut - "Specific enthalpy at tank's outlet"; - - Modelica.SIunits.Volume VLiq(start=VLiq0) - "Volume of the liquid phase"; - Modelica.SIunits.Volume VVap - "Volume of the vapour phase"; - Modelica.SIunits.Mass mTan - "Mass of the medium in the tank"; - Modelica.SIunits.Mass mLiq - "Mass of the liquid phase"; - Modelica.SIunits.Mass mVap - "Mass of the vapour phase"; - Modelica.SIunits.Mass mXi[Medium.nXi] + Modelica.Units.SI.SpecificEnthalpy hInn "Specific enthalpy at tank's Innet"; + Modelica.Units.SI.SpecificEnthalpy hOut "Specific enthalpy at tank's outlet"; + + Modelica.Units.SI.Volume VLiq(start=VLiq0) "Volume of the liquid phase"; + Modelica.Units.SI.Volume VVap "Volume of the vapour phase"; + Modelica.Units.SI.Mass mTan "Mass of the medium in the tank"; + Modelica.Units.SI.Mass mLiq "Mass of the liquid phase"; + Modelica.Units.SI.Mass mVap "Mass of the vapour phase"; + Modelica.Units.SI.Mass mXi[Medium.nXi] "Masses of independent components in the fluid"; - Modelica.SIunits.Mass mC[Medium.nC] + Modelica.Units.SI.Mass mC[Medium.nC] "Masses of trace substances in the fluid"; - Modelica.SIunits.MassFlowRate dMTan - "Change in tank's mass wrt. time"; - Modelica.SIunits.Power dUTan - "Change in tank's internal energy wrt. time"; + Modelica.Units.SI.MassFlowRate dMTan "Change in tank's mass wrt. time"; + Modelica.Units.SI.Power dUTan "Change in tank's internal energy wrt. time"; Medium.DerDensityByEnthalpy ddhp "Density derivative w.r.t. specific enthalpy"; Medium.DerDensityByPressure ddph diff --git a/AixLib/Fluid/Storage/Validation/HeatExchangerDynamics.mo b/AixLib/Fluid/Storage/Validation/HeatExchangerDynamics.mo index ae4194e498..f76ac818b0 100644 --- a/AixLib/Fluid/Storage/Validation/HeatExchangerDynamics.mo +++ b/AixLib/Fluid/Storage/Validation/HeatExchangerDynamics.mo @@ -7,9 +7,10 @@ model HeatExchangerDynamics constant Integer nSeg = 7 "Number of segments in tank"; - parameter Modelica.SIunits.HeatFlowRate QHex_flow_nominal = 2000 + parameter Modelica.Units.SI.HeatFlowRate QHex_flow_nominal=2000 "Design heat flow rate of heat exchanger"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal= QHex_flow_nominal/4200/4; + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=QHex_flow_nominal/ + 4200/4; AixLib.Fluid.Sources.Boundary_pT watInTan( redeclare package Medium = Medium, @@ -124,32 +125,33 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Storage/Validation/HeatExchangerDynamics.mos" "Simulate and plot"), Documentation(info=" -This validation model compares two tank models. The only difference between -the two tank models is that one uses a dynamic energy balance, whereas -the other uses a steady-state energy balance for the heat exchanger. -The mass flow rate through the heat exchanger is varied from zero to -the design flow rate and back to zero to test the model under conditions in -which no water flows through the heat exchanger. -", revisions=" -
                                          -
                                        • -June 7, 2018 by Filip Jorissen:
                                          -Copied model from Buildings and update the model accordingly. -This is for -#314. -
                                        • -
                                        • -July 5, 2017, by Michael Wetter:
                                          -Added zero mass flow rate boundary conditions to avoid a translation error in Dymola 2018.
                                          -This is for -issue 834. -
                                        • -
                                        • -January 8, 2016 by Michael Wetter:
                                          -First implementation to test -issue 434. -
                                        • -
                                        -"), - experiment(Tolerance=1e-6, StopTime=14400)); + This validation model compares two tank models. The only difference between + the two tank models is that one uses a dynamic energy balance, whereas + the other uses a steady-state energy balance for the heat exchanger. + The mass flow rate through the heat exchanger is varied from zero to + the design flow rate and back to zero to test the model under conditions in + which no water flows through the heat exchanger. + ",revisions=" +
                                          +
                                        • + June 7, 2018 by Filip Jorissen:
                                          + Copied model from Buildings and update the model accordingly. + This is for + #314. +
                                        • +
                                        • + July 5, 2017, by Michael Wetter:
                                          + Added zero mass flow rate boundary conditions to avoid a translation error in Dymola 2018.
                                          + This is for + issue 834. +
                                        • +
                                        • + January 8, 2016 by Michael Wetter:
                                          + First implementation to test + issue 434. +
                                        • +
                                        + "), + experiment(Tolerance=1e-6, StopTime=14400), + __Dymola_LockedEditing="Model from IBPSA"); end HeatExchangerDynamics; diff --git a/AixLib/Fluid/Storage/Validation/HeatExchangerLocation.mo b/AixLib/Fluid/Storage/Validation/HeatExchangerLocation.mo index 7c05b4f259..c4b2e3d10b 100644 --- a/AixLib/Fluid/Storage/Validation/HeatExchangerLocation.mo +++ b/AixLib/Fluid/Storage/Validation/HeatExchangerLocation.mo @@ -5,9 +5,10 @@ model HeatExchangerLocation package Medium = AixLib.Media.Water "Medium model"; - parameter Modelica.SIunits.HeatFlowRate QHex_flow_nominal = 6000 + parameter Modelica.Units.SI.HeatFlowRate QHex_flow_nominal=6000 "Design heat flow rate of heat exchanger"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal= QHex_flow_nominal/4200/4; + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=QHex_flow_nominal/ + 4200/4; AixLib.Fluid.Sources.Boundary_pT watInTan( redeclare package Medium = Medium, @@ -103,33 +104,34 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Storage/Validation/HeatExchangerLocation.mos" "Simulate and plot"), Documentation(info=" -

                                        -This validation model compares two tank models. The only difference between -the two tank models is that tan_aTop has the hot water inlet -for the heat exchanger above its outlet, whereas tan_bTop -has the hot water inlet below its outlet. In both models, the heat exchanger -extends from element 9 to element 11. -

                                        -", revisions=" -
                                          -
                                        • -June 7, 2018 by Filip Jorissen:
                                          -Copied model from Buildings and update the model accordingly. -This is for -#314. -
                                        • -
                                        • -July 5, 2017, by Michael Wetter:
                                          -Added zero mass flow rate boundary conditions to avoid a translation error in Dymola 2018.
                                          -This is for -issue 834. -
                                        • -
                                        • -June 23, 2016 by Michael Wetter:
                                          -First implementation to test -issue 531. -
                                        • -
                                        -"), - experiment(Tolerance=1e-6, StopTime=600000)); +

                                        + This validation model compares two tank models. The only difference between + the two tank models is that tan_aTop has the hot water inlet + for the heat exchanger above its outlet, whereas tan_bTop + has the hot water inlet below its outlet. In both models, the heat exchanger + extends from element 9 to element 11. +

                                        + ",revisions=" +
                                          +
                                        • + June 7, 2018 by Filip Jorissen:
                                          + Copied model from Buildings and update the model accordingly. + This is for + #314. +
                                        • +
                                        • + July 5, 2017, by Michael Wetter:
                                          + Added zero mass flow rate boundary conditions to avoid a translation error in Dymola 2018.
                                          + This is for + issue 834. +
                                        • +
                                        • + June 23, 2016 by Michael Wetter:
                                          + First implementation to test + issue 531. +
                                        • +
                                        + "), + experiment(Tolerance=1e-6, StopTime=600000), + __Dymola_LockedEditing="Model from IBPSA"); end HeatExchangerLocation; diff --git a/AixLib/Fluid/Storage/Validation/StratifiedLoadingUnloading.mo b/AixLib/Fluid/Storage/Validation/StratifiedLoadingUnloading.mo index 6c41faa3dd..927fe263e2 100644 --- a/AixLib/Fluid/Storage/Validation/StratifiedLoadingUnloading.mo +++ b/AixLib/Fluid/Storage/Validation/StratifiedLoadingUnloading.mo @@ -5,7 +5,7 @@ model StratifiedLoadingUnloading "Test model for stratified tank" package Medium = AixLib.Media.Water "Medium model"; constant Integer nSeg = 7 "Number of segments in tank"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal= 1*1000/3600/4; + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=1*1000/3600/4; AixLib.Fluid.Sources.Boundary_pT sou_1( p=300000 + 5000, @@ -147,19 +147,20 @@ equation annotation ( __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Storage/Validation/StratifiedLoadingUnloading.mos" "Simulate and plot"), Documentation(info=" -This test model compares two tank models. The only difference between -the two tank models is that one uses the third order upwind discretization -scheme that reduces numerical diffusion that is induced when connecting -volumes in series. -", revisions=" -
                                          -
                                        • -June 7, 2018 by Filip Jorissen:
                                          -Copied model from Buildings and update the model accordingly. -This is for -#314. -
                                        • -
                                        -"), - experiment(Tolerance=1e-6, StopTime=14400)); + This test model compares two tank models. The only difference between + the two tank models is that one uses the third order upwind discretization + scheme that reduces numerical diffusion that is induced when connecting + volumes in series. + ",revisions=" +
                                          +
                                        • + June 7, 2018 by Filip Jorissen:
                                          + Copied model from Buildings and update the model accordingly. + This is for + #314. +
                                        • +
                                        + "), + experiment(Tolerance=1e-6, StopTime=14400), + __Dymola_LockedEditing="Model from IBPSA"); end StratifiedLoadingUnloading; diff --git a/AixLib/Fluid/Storage/Validation/StratifiedNonUniformInitial.mo b/AixLib/Fluid/Storage/Validation/StratifiedNonUniformInitial.mo index ce14c7c47c..861b72b2ab 100644 --- a/AixLib/Fluid/Storage/Validation/StratifiedNonUniformInitial.mo +++ b/AixLib/Fluid/Storage/Validation/StratifiedNonUniformInitial.mo @@ -6,7 +6,7 @@ model StratifiedNonUniformInitial package Medium = AixLib.Media.Water "Medium model"; constant Integer nSeg = 7 "Number of segments in tank"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal= 1*1000/3600/4; + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=1*1000/3600/4; AixLib.Fluid.Sources.Boundary_pT sou_1( p=300000 + 5000, @@ -131,18 +131,19 @@ annotation (experiment(Tolerance=1e-6, StopTime=3600), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Fluid/Storage/Validation/StratifiedNonUniformInitial.mos" "Simulate and plot"), Documentation(info=" -This test model validates - -AixLib.Fluid.Storage.Stratified by specifying a non-uniform initial -temperature. -", revisions=" -
                                          -
                                        • -November 13, 2019 by Jianjun Hu:
                                          -Changed the uniform initial tank temperature to be non-uniform.
                                          -This is for -#1246. -
                                        • -
                                        -")); + This test model validates + + AixLib.Fluid.Storage.Stratified by specifying a non-uniform initial + temperature. + ",revisions=" +
                                          +
                                        • + November 13, 2019 by Jianjun Hu:
                                          + Changed the uniform initial tank temperature to be non-uniform.
                                          + This is for + #1246. +
                                        • +
                                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end StratifiedNonUniformInitial; diff --git a/AixLib/Fluid/Storage/package.mo b/AixLib/Fluid/Storage/package.mo index 3a2b782ee3..ecba47d84e 100644 --- a/AixLib/Fluid/Storage/package.mo +++ b/AixLib/Fluid/Storage/package.mo @@ -1,6 +1,7 @@ within AixLib.Fluid; package Storage "Package with thermal energy storage models" extends Modelica.Icons.VariantsPackage; + annotation (preferredView="info", Documentation(info=" This package contains thermal energy storage models. ")); diff --git a/AixLib/Fluid/Types.mo b/AixLib/Fluid/Types.mo index ca5b220ca2..02490d0759 100644 --- a/AixLib/Fluid/Types.mo +++ b/AixLib/Fluid/Types.mo @@ -14,37 +14,37 @@ package Types "Package with type definitions" Av "Av (metric) flow coefficient") "Enumeration to define the choice of valve flow coefficient" annotation ( Documentation(info=" - -

                                        -Enumeration to define the choice of valve flow coefficient -(to be selected via choices menu): -

                                        - - - - - - - - - - - - - - - - - -
                                        EnumerationDescription
                                        OpPointflow coefficient defined by ratio m_flow_nominal/sqrt(dp_nominal)
                                        KvKv (metric) flow coefficient
                                        CvCv (US) flow coefficient
                                        AvAv (metric) flow coefficient
                                        - -

                                        -The details of the coefficients are explained in the - -Users Guide. -

                                        - -")); + +

                                        + Enumeration to define the choice of valve flow coefficient + (to be selected via choices menu): +

                                        + + + + + + + + + + + + + + + + + +
                                        EnumerationDescription
                                        OpPointflow coefficient defined by ratio m_flow_nominal/sqrt(dp_nominal)
                                        KvKv (metric) flow coefficient
                                        CvCv (US) flow coefficient
                                        AvAv (metric) flow coefficient
                                        + +

                                        + The details of the coefficients are explained in the + + Users Guide. +

                                        + + ")); type HeatExchangerConfiguration = enumeration( ParallelFlow "Parallel flow", CounterFlow "Counter flow", @@ -56,48 +56,48 @@ Users Guide. ConstantTemperaturePhaseChange "Constant temperature phase change in one stream") "Enumeration for heat exchanger construction" annotation(Documentation(info=" -

                                        - Enumeration that defines the heat exchanger construction. -

                                        -

                                        -The following heat exchanger configurations are available in this enumeration: -

                                        - - - - - - - - -
                                        EnumerationDescription
                                        ParallelFlowParallel flow
                                        CounterFlowCounter flow
                                        CrossFlowUnmixedCross flow, both streams unmixed
                                        CrossFlowStream1MixedStream2UnmixedCross flow, stream 1 mixed, stream 2 unmixed
                                        CrossFlowStream1UnmixedStream2MixedCross flow, stream 1 unmixed, stream 2 mixed
                                        ConstantTemperaturePhaseChangeConstant temperature phase change in one stream
                                        -

                                        -Note that for a given heat exchanger, the - HeatExchangerConfiguration is fixed. However, if the capacity - flow rates change, then the - - AixLib.Fluid.Types.HeatExchangerFlowRegime may change. For example, - a counter flow heat exchanger has HeatExchangerConfiguration=CounterFlow, - but the - AixLib.Fluid.Types.HeatExchangerFlowRegime can change to parallel flow if one of the two capacity flow rates reverts - its direction. +

                                        + Enumeration that defines the heat exchanger construction.

                                        -", revisions= +

                                        + The following heat exchanger configurations are available in this enumeration: +

                                        + + + + + + + + +
                                        EnumerationDescription
                                        ParallelFlowParallel flow
                                        CounterFlowCounter flow
                                        CrossFlowUnmixedCross flow, both streams unmixed
                                        CrossFlowStream1MixedStream2UnmixedCross flow, stream 1 mixed, stream 2 unmixed
                                        CrossFlowStream1UnmixedStream2MixedCross flow, stream 1 unmixed, stream 2 mixed
                                        ConstantTemperaturePhaseChangeConstant temperature phase change in one stream
                                        +

                                        + Note that for a given heat exchanger, the + HeatExchangerConfiguration is fixed. However, if the capacity + flow rates change, then the + + AixLib.Fluid.Types.HeatExchangerFlowRegime may change. For example, + a counter flow heat exchanger has HeatExchangerConfiguration=CounterFlow, + but the + AixLib.Fluid.Types.HeatExchangerFlowRegime can change to parallel flow if one of the two capacity flow rates reverts + its direction. +

                                        + ",revisions= " -
                                          -
                                        • -March 27, 2017, by Michael Wetter:
                                          -Added ConstantTemperaturePhaseChange.
                                          -This is for - -AixLib #694. -
                                        • -
                                        • -February 18, 2009, by Michael Wetter:
                                          -First implementation. -
                                        • -
                                        -")); +
                                          +
                                        • + March 27, 2017, by Michael Wetter:
                                          + Added ConstantTemperaturePhaseChange.
                                          + This is for + + AixLib #694. +
                                        • +
                                        • + February 18, 2009, by Michael Wetter:
                                          + First implementation. +
                                        • +
                                        + ")); type HeatExchangerFlowRegime = enumeration( ParallelFlow "Parallel flow", @@ -108,73 +108,74 @@ First implementation. ConstantTemperaturePhaseChange "Constant temperature phase change in one stream") "Enumeration for heat exchanger flow configuration" annotation(Documentation(info=" -

                                        - Enumeration to define the heat exchanger flow regime. -

                                        -

                                        -This enumeration defines for the current capacity flow rate the kind of -heat transfer relation that will be used to compute the relation between -effectiveness and Number of Transfer Units. -

                                        -

                                        -The following heat exchanger flow regimes are available in this enumeration: -

                                        - - - - - - - - -
                                        EnumerationDescription
                                        ParallelFlowParallel flow
                                        CounterFlowCounter flow
                                        CrossFlowUnmixedCross flow, both streams unmixed
                                        CrossFlowCMinMixedCMaxUnmixedCross flow, CMin mixed, CMax unmixed
                                        CrossFlowCMinUnmixedCMaxMixedCross flow, CMin unmixed, CMax mixed
                                        ConstantTemperaturePhaseChangeConstant temperature phase change in one stream
                                        -", revisions=" -
                                          -
                                        • -March 27, 2017, by Michael Wetter:
                                          -Added ConstantTemperaturePhaseChange.
                                          -This is for - -AixLib #694. -
                                        • -
                                        • -February 18, 2009, by Michael Wetter:
                                          -First implementation. -
                                        • -
                                        -")); +

                                        + Enumeration to define the heat exchanger flow regime. +

                                        +

                                        + This enumeration defines for the current capacity flow rate the kind of + heat transfer relation that will be used to compute the relation between + effectiveness and Number of Transfer Units. +

                                        +

                                        + The following heat exchanger flow regimes are available in this enumeration: +

                                        + + + + + + + + +
                                        EnumerationDescription
                                        ParallelFlowParallel flow
                                        CounterFlowCounter flow
                                        CrossFlowUnmixedCross flow, both streams unmixed
                                        CrossFlowCMinMixedCMaxUnmixedCross flow, CMin mixed, CMax unmixed
                                        CrossFlowCMinUnmixedCMaxMixedCross flow, CMin unmixed, CMax mixed
                                        ConstantTemperaturePhaseChangeConstant temperature phase change in one stream
                                        + ",revisions=" +
                                          +
                                        • + March 27, 2017, by Michael Wetter:
                                          + Added ConstantTemperaturePhaseChange.
                                          + This is for + + AixLib #694. +
                                        • +
                                        • + February 18, 2009, by Michael Wetter:
                                          + First implementation. +
                                        • +
                                        + ")); type InputType = enumeration( Constant "Use parameter to set stage", Stages "Use integer input to select stage", Continuous "Use continuous, real input") "Input options for movers" annotation (Documentation(info=" -

                                        -This type allows defining which type of input should be used for movers. -This can either be -

                                        -
                                          -
                                        1. -a constant set point declared by a parameter, -
                                        2. -
                                        3. -a series of possible set points that can be switched using an integer input, or -
                                        4. -
                                        5. -a continuously variable set point. -
                                        6. -
                                        -", revisions=" -
                                          -
                                        • -April 2, 2015, by Filip Jorissen:
                                          -First implementation. -
                                        • -
                                        -")); +

                                        + This type allows defining which type of input should be used for movers. + This can either be +

                                        +
                                          +
                                        1. + a constant set point declared by a parameter, +
                                        2. +
                                        3. + a series of possible set points that can be switched using an integer input, or +
                                        4. +
                                        5. + a continuously variable set point. +
                                        6. +
                                        + ",revisions=" +
                                          +
                                        • + April 2, 2015, by Filip Jorissen:
                                          + First implementation. +
                                        • +
                                        + ")); annotation (preferredView="info", Documentation(info=" -

                                        -This package contains type definitions. -

                                        -")); +

                                        + This package contains type definitions. +

                                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end Types; diff --git a/AixLib/Media/Air.mo b/AixLib/Media/Air.mo index ae444ed938..321828b7d8 100644 --- a/AixLib/Media/Air.mo +++ b/AixLib/Media/Air.mo @@ -20,6 +20,26 @@ package Air constant Integer Air=2 "Index of air (in substanceNames, massFractions X, etc.)"; + // In the assignments below, we compute cv as OpenModelica + // cannot evaluate cv=cp-R as defined in GasProperties. + constant GasProperties dryair( + R=Modelica.Media.IdealGases.Common.SingleGasesData.Air.R_s, + MM=Modelica.Media.IdealGases.Common.SingleGasesData.Air.MM, + cp=AixLib.Utilities.Psychrometrics.Constants.cpAir, + cv=AixLib.Utilities.Psychrometrics.Constants.cpAir - Modelica.Media.IdealGases.Common.SingleGasesData.Air.R_s) + "Dry air properties"; + constant GasProperties steam( + R=Modelica.Media.IdealGases.Common.SingleGasesData.H2O.R_s, + MM=Modelica.Media.IdealGases.Common.SingleGasesData.H2O.MM, + cp=AixLib.Utilities.Psychrometrics.Constants.cpSte, + cv=AixLib.Utilities.Psychrometrics.Constants.cpSte - Modelica.Media.IdealGases.Common.SingleGasesData.H2O.R_s) + "Steam properties"; + + constant Real k_mair = steam.MM/dryair.MM "Ratio of molar weights"; + + constant Modelica.Units.SI.MolarMass[2] MMX={steam.MM,dryair.MM} + "Molar masses of components"; + constant AbsolutePressure pStp = reference_p "Pressure for which fluid density is defined"; constant Density dStp = 1.2 "Fluid density at pressure pStp"; @@ -45,7 +65,7 @@ package Air // Therefore, the statement // p(stateSelect=if preferredMediumStates then StateSelect.prefer else StateSelect.default) // has been removed. - redeclare model BaseProperties "Base properties (p, d, T, h, u, R, MM and X and Xi) of a medium" + redeclare replaceable model BaseProperties "Base properties (p, d, T, h, u, R, MM and X and Xi) of a medium" parameter Boolean preferredMediumStates=false "= true if StateSelect.prefer shall be used for the independent property variables of the medium" @@ -67,30 +87,30 @@ package Air "Mass fractions (= (component mass)/total mass m_i/m)"; Modelica.Media.Interfaces.Types.SpecificInternalEnergy u "Specific internal energy of medium"; - Modelica.Media.Interfaces.Types.SpecificHeatCapacity R + Modelica.Media.Interfaces.Types.SpecificHeatCapacity R_s "Gas constant (of mixture if applicable)"; Modelica.Media.Interfaces.Types.MolarMass MM "Molar mass (of mixture or single fluid)"; ThermodynamicState state "Thermodynamic state record for optional functions"; - Modelica.SIunits.Conversions.NonSIunits.Temperature_degC T_degC= - Modelica.SIunits.Conversions.to_degC(T) "Temperature of medium in [degC]"; - Modelica.SIunits.Conversions.NonSIunits.Pressure_bar p_bar= - Modelica.SIunits.Conversions.to_bar(p) "Absolute pressure of medium in [bar]"; + Modelica.Units.NonSI.Temperature_degC T_degC= + Modelica.Units.Conversions.to_degC(T) "Temperature of medium in [degC]"; + Modelica.Units.NonSI.Pressure_bar p_bar=Modelica.Units.Conversions.to_bar(p) + "Absolute pressure of medium in [bar]"; // Local connector definition, used for equation balancing check - connector InputAbsolutePressure = input Modelica.SIunits.AbsolutePressure + connector InputAbsolutePressure = input Modelica.Units.SI.AbsolutePressure "Pressure as input signal connector"; - connector InputSpecificEnthalpy = input Modelica.SIunits.SpecificEnthalpy + connector InputSpecificEnthalpy = input Modelica.Units.SI.SpecificEnthalpy "Specific enthalpy as input signal connector"; - connector InputMassFraction = input Modelica.SIunits.MassFraction + connector InputMassFraction = input Modelica.Units.SI.MassFraction "Mass fraction as input signal connector"; // Declarations for Air only protected - Modelica.SIunits.TemperatureDifference dT(start=T_default-reference_T) - "Temperature difference used to compute enthalpy"; + Modelica.Units.SI.TemperatureDifference dT(start=T_default - reference_T) + "Temperature difference used to compute enthalpy"; equation MM = 1/(X[1]/steam.MM+(X[2])/dryair.MM); @@ -98,7 +118,7 @@ package Air dT = T - reference_T; h = dT*dryair.cp * X[2] + (dT * steam.cp + h_fg) * X[1]; - R = dryair.R*X[2] + steam.R*X[1]; + R_s = dryair.R*X[2] + steam.R*X[1]; // Equation for ideal gas, from h=u+p*v and R*T=p*v, from which follows that u = h-R*T. // u = h-R*T; @@ -123,9 +143,9 @@ package Air + "\nof medium \"AixLib.Media.Air\" is not in the range 0..1"); assert(noEvent(T >= 200.0), "In " + getInstanceName() + ": Temperature T exceeded its minimum allowed value of -73.15 degC (200 Kelvin) -as required from medium model \"AixLib.Media.Air\"."); + as required from medium model \"AixLib.Media.Air\"."); assert(noEvent(T <= 423.15), "In " + getInstanceName() + ": Temperature T exceeded its maximum allowed value of 150 degC (423.15 Kelvin) -as required from medium model \"AixLib.Media.Air\"."); + as required from medium model \"AixLib.Media.Air\"."); assert(noEvent(p >= 0.0), "Pressure (= " + String(p) + " Pa) of medium \"AixLib.Media.Air\" is negative\n(Temperature = " + String(T) + " K)"); annotation (Icon(coordinateSystem(preserveAspectRatio=true, extent={{-100, @@ -136,51 +156,51 @@ as required from medium model \"AixLib.Media.Air\"."); lineColor={0,0,255}), Text( extent={{-152,164},{152,102}}, textString="%name", - lineColor={0,0,255})}), Documentation(info=" -

                                        -Model with basic thermodynamic properties. -

                                        -

                                        -This model provides equation for the following thermodynamic properties: -

                                        - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                        VariableUnitDescription
                                        TKtemperature
                                        pPaabsolute pressure
                                        dkg/m3density
                                        hJ/kgspecific enthalpy
                                        uJ/kgspecific internal energy
                                        Xi[nXi]kg/kgindependent mass fractions m_i/m
                                        RJ/kg.Kgas constant
                                        Mkg/molmolar mass
                                        -", revisions=" -
                                          -
                                        • -September 22, 2020, by Michael Wetter:
                                          -First implementation based on Modelica Standard Library, -but with noEvent added to check of bounds. -
                                        • -
                                        -")); + textColor={0,0,255})}), Documentation(info=" +

                                        + Model with basic thermodynamic properties. +

                                        +

                                        + This model provides equation for the following thermodynamic properties: +

                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                        VariableUnitDescription
                                        TKtemperature
                                        pPaabsolute pressure
                                        dkg/m3density
                                        hJ/kgspecific enthalpy
                                        uJ/kgspecific internal energy
                                        Xi[nXi]kg/kgindependent mass fractions m_i/m
                                        RJ/kg.Kgas constant
                                        Mkg/molmolar mass
                                        + ",revisions=" +
                                          +
                                        • + September 22, 2020, by Michael Wetter:
                                          + First implementation based on Modelica Standard Library, + but with noEvent added to check of bounds. +
                                        • +
                                        + ")); end BaseProperties; redeclare function density "Gas density" @@ -192,8 +212,8 @@ algorithm annotation(smoothOrder=5, Inline=true, Documentation(info=" -Density is computed from pressure, temperature and composition in the thermodynamic state record applying the ideal gas law. -")); + Density is computed from pressure, temperature and composition in the thermodynamic state record applying the ideal gas law. + ")); end density; redeclare function extends dynamicViscosity @@ -204,33 +224,33 @@ algorithm smoothOrder=99, Inline=true, Documentation(info=" -

                                        -This function returns the dynamic viscosity. -

                                        -

                                        Implementation

                                        -

                                        -The function is based on the 5th order polynomial -of - -Modelica.Media.Air.MoistAir.dynamicViscosity. -However, for the typical range of temperatures encountered -in building applications, a linear function sufficies. -This implementation is therefore the above 5th order polynomial, -linearized around 20°C. -The relative error of this linearization is -0.4% at -20°C, -and less then -0.2% between -5°C and +50°C. -

                                        -", +

                                        + This function returns the dynamic viscosity. +

                                        +

                                        Implementation

                                        +

                                        + The function is based on the 5th order polynomial + of + + Modelica.Media.Air.MoistAir.dynamicViscosity. + However, for the typical range of temperatures encountered + in building applications, a linear function sufficies. + This implementation is therefore the above 5th order polynomial, + linearized around 20°C. + The relative error of this linearization is + 0.4% at -20°C, + and less then + 0.2% between -5°C and +50°C. +

                                        + ", revisions=" -
                                          -
                                        • -December 19, 2013, by Michael Wetter:
                                          -First implementation. -
                                        • -
                                        -")); +
                                          +
                                        • + December 19, 2013, by Michael Wetter:
                                          + First implementation. +
                                        • +
                                        + ")); end dynamicViscosity; redeclare function enthalpyOfCondensingGas @@ -291,13 +311,13 @@ redeclare function extends gasConstant "Return ideal gas constant as a function from thermodynamic state, only valid for phi<1" algorithm - R := dryair.R*(1 - state.X[Water]) + steam.R*state.X[Water]; + R_s := dryair.R*(1 - state.X[Water]) + steam.R*state.X[Water]; annotation ( smoothOrder=2, Inline=true, Documentation(info=" -The ideal gas constant for moist air is computed from thermodynamic state assuming that all water is in the gas phase. -")); + The ideal gas constant for moist air is computed from thermodynamic state assuming that all water is in the gas phase. + ")); end gasConstant; redeclare function extends pressure @@ -309,8 +329,8 @@ algorithm smoothOrder=2, Inline=true, Documentation(info=" -Pressure is returned from the thermodynamic state record input as a simple assignment. -")); + Pressure is returned from the thermodynamic state record input as a simple assignment. + ")); end pressure; redeclare function extends isobaricExpansionCoefficient @@ -321,29 +341,29 @@ algorithm smoothOrder=5, Inline=true, Documentation(info=" -

                                        -This function returns the isobaric expansion coefficient at constant pressure, -which is zero for this medium. -The isobaric expansion coefficient at constant pressure is -

                                        -

                                        p = - 1 ⁄ v   (∂ v ⁄ ∂ T)p = 0, -

                                        -

                                        -where -v is the specific volume, -T is the temperature and -p is the pressure. -

                                        -", +

                                        + This function returns the isobaric expansion coefficient at constant pressure, + which is zero for this medium. + The isobaric expansion coefficient at constant pressure is +

                                        +

                                        + βp = - 1 ⁄ v   (∂ v ⁄ ∂ T)p = 0, +

                                        +

                                        + where + v is the specific volume, + T is the temperature and + p is the pressure. +

                                        + ", revisions=" -
                                          -
                                        • -December 18, 2013, by Michael Wetter:
                                          -First implementation. -
                                        • -
                                        -")); +
                                          +
                                        • + December 18, 2013, by Michael Wetter:
                                          + First implementation. +
                                        • +
                                        + ")); end isobaricExpansionCoefficient; redeclare function extends isothermalCompressibility @@ -354,29 +374,29 @@ algorithm smoothOrder=5, Inline=true, Documentation(info=" -

                                        -This function returns the isothermal compressibility coefficient. -The isothermal compressibility is -

                                        -

                                        T = -1 ⁄ v   (∂ v ⁄ ∂ p)T - = -1 ⁄ p, -

                                        -

                                        -where -v is the specific volume, -T is the temperature and -p is the pressure. -

                                        -", +

                                        + This function returns the isothermal compressibility coefficient. + The isothermal compressibility is +

                                        +

                                        + κT = -1 ⁄ v   (∂ v ⁄ ∂ p)T + = -1 ⁄ p, +

                                        +

                                        + where + v is the specific volume, + T is the temperature and + p is the pressure. +

                                        + ", revisions=" -
                                          -
                                        • -December 18, 2013, by Michael Wetter:
                                          -First implementation. -
                                        • -
                                        -")); +
                                          +
                                        • + December 18, 2013, by Michael Wetter:
                                          + First implementation. +
                                        • +
                                        + ")); end isothermalCompressibility; redeclare function extends saturationPressure @@ -393,7 +413,7 @@ redeclare function extends specificEntropy "Return the specific entropy, only valid for phi<1" protected - Modelica.SIunits.MoleFraction[2] Y "Molar fraction"; + Modelica.Units.SI.MoleFraction[2] Y "Molar fraction"; algorithm Y := massToMoleFractions( state.X, {steam.MM,dryair.MM}); @@ -404,68 +424,68 @@ algorithm annotation ( Inline=true, Documentation(info=" -

                                        -This function computes the specific entropy. -

                                        -

                                        -The specific entropy of the mixture is obtained from -

                                        -

                                        -s = ss + sm, -

                                        -

                                        -where -ss is the entropy change due to the state change -(relative to the reference temperature) and -sm is the entropy change due to mixing -of the dry air and water vapor. -

                                        -

                                        -The entropy change due to change in state is obtained from -

                                        -

                                        -ss = cv ln(T/T0) + R ln(v/v0)
                                        -= cv ln(T/T0) + R ln(ρ0/ρ) -

                                        -

                                        If we assume ρ = p0/(R T), -and because cp = cv + R, -we can write -

                                        -

                                        -ss = cv ln(T/T0) + R ln(T/T0)
                                        -=cp ln(T/T0). -

                                        -

                                        -Next, the entropy of mixing is obtained from a reversible isothermal -expansion process. Hence, -

                                        -

                                        - sm = -R ∑i( Xi ⁄ Mi - ln(Yi p/p0)), -

                                        -

                                        -where R is the gas constant, -X is the mass fraction, -M is the molar mass, and -Y is the mole fraction. -

                                        -

                                        -To obtain the state for a given pressure, entropy and mass fraction, use - -AixLib.Media.Air.setState_psX. -

                                        -

                                        Limitations

                                        -

                                        -This function is only valid for a relative humidity below 100%. -

                                        -", revisions=" -
                                          -
                                        • -November 27, 2013, by Michael Wetter:
                                          -First implementation. -
                                        • -
                                        -")); +

                                        + This function computes the specific entropy. +

                                        +

                                        + The specific entropy of the mixture is obtained from +

                                        +

                                        + s = ss + sm, +

                                        +

                                        + where + ss is the entropy change due to the state change + (relative to the reference temperature) and + sm is the entropy change due to mixing + of the dry air and water vapor. +

                                        +

                                        + The entropy change due to change in state is obtained from +

                                        +

                                        + ss = cv ln(T/T0) + R ln(v/v0)
                                        + = cv ln(T/T0) + R ln(ρ0/ρ) +

                                        +

                                        If we assume ρ = p0/(R T), + and because cp = cv + R, + we can write +

                                        +

                                        + ss = cv ln(T/T0) + R ln(T/T0)
                                        + =cp ln(T/T0). +

                                        +

                                        + Next, the entropy of mixing is obtained from a reversible isothermal + expansion process. Hence, +

                                        +

                                        + sm = -R ∑i( Xi ⁄ Mi + ln(Yi p/p0)), +

                                        +

                                        + where R is the gas constant, + X is the mass fraction, + M is the molar mass, and + Y is the mole fraction. +

                                        +

                                        + To obtain the state for a given pressure, entropy and mass fraction, use + + AixLib.Media.Air.setState_psX. +

                                        +

                                        Limitations

                                        +

                                        + This function is only valid for a relative humidity below 100%. +

                                        + ",revisions=" +
                                          +
                                        • + November 27, 2013, by Michael Wetter:
                                          + First implementation. +
                                        • +
                                        + ")); end specificEntropy; redeclare function extends density_derp_T @@ -475,19 +495,19 @@ algorithm annotation ( Inline=true, Documentation(info=" -

                                        -This function returns the partial derivative of density -with respect to pressure at constant temperature. -

                                        -", +

                                        + This function returns the partial derivative of density + with respect to pressure at constant temperature. +

                                        + ", revisions=" -
                                          -
                                        • -December 18, 2013, by Michael Wetter:
                                          -First implementation. -
                                        • -
                                        -")); +
                                          +
                                        • + December 18, 2013, by Michael Wetter:
                                          + First implementation. +
                                        • +
                                        + ")); end density_derp_T; redeclare function extends density_derT_p @@ -500,19 +520,19 @@ algorithm Inline=true, Documentation(info= " -

                                        -This function computes the derivative of density with respect to temperature -at constant pressure. -

                                        -", revisions= +

                                        + This function computes the derivative of density with respect to temperature + at constant pressure. +

                                        + ",revisions= " -
                                          -
                                        • -December 18, 2013, by Michael Wetter:
                                          -First implementation. -
                                        • -
                                        -")); +
                                          +
                                        • + December 18, 2013, by Michael Wetter:
                                          + First implementation. +
                                        • +
                                        + ")); end density_derT_p; redeclare function extends density_derX @@ -523,21 +543,21 @@ annotation ( smoothOrder=99, Inline=true, Documentation(info=" -

                                        -This function returns the partial derivative of density -with respect to mass fraction. -This value is zero because in this medium, density is proportional -to pressure, but independent of the species concentration. -

                                        -", +

                                        + This function returns the partial derivative of density + with respect to mass fraction. + This value is zero because in this medium, density is proportional + to pressure, but independent of the species concentration. +

                                        + ", revisions=" -
                                          -
                                        • -December 18, 2013, by Michael Wetter:
                                          -First implementation. -
                                        • -
                                        -")); +
                                          +
                                        • + December 18, 2013, by Michael Wetter:
                                          + First implementation. +
                                        • +
                                        + ")); end density_derX; redeclare replaceable function extends specificHeatCapacityCp @@ -580,11 +600,11 @@ algorithm smoothOrder=2, Inline=true, Documentation(info=" -

                                        -The thermodynamic state record - is computed from density d, temperature T and composition X. -

                                        -")); +

                                        + The thermodynamic state record + is computed from density d, temperature T and composition X. +

                                        + ")); end setState_dTX; redeclare function extends setState_phX @@ -598,9 +618,9 @@ algorithm smoothOrder=2, Inline=true, Documentation(info=" -The -thermodynamic state record is computed from pressure p, specific enthalpy h and composition X. -")); + The + thermodynamic state record is computed from pressure p, specific enthalpy h and composition X. + ")); end setState_phX; redeclare function extends setState_pTX @@ -614,17 +634,17 @@ algorithm smoothOrder=2, Inline=true, Documentation(info=" -The -thermodynamic state record is computed from pressure p, temperature T and composition X. -")); + The + thermodynamic state record is computed from pressure p, temperature T and composition X. + ")); end setState_pTX; redeclare function extends setState_psX "Return the thermodynamic state as function of p, s and composition X or Xi" protected - Modelica.SIunits.MassFraction[2] X_int "Mass fraction"; - Modelica.SIunits.MoleFraction[2] Y "Molar fraction"; - Modelica.SIunits.Temperature T "Temperature"; + Modelica.Units.SI.MassFraction[2] X_int "Mass fraction"; + Modelica.Units.SI.MoleFraction[2] Y "Molar fraction"; + Modelica.Units.SI.Temperature T "Temperature"; algorithm if size(X, 1) == nX then X_int:=X; @@ -654,24 +674,24 @@ algorithm annotation ( Inline=true, Documentation(info=" -

                                        -This function returns the thermodynamic state based on pressure, -specific entropy and mass fraction. -

                                        -

                                        -The state is computed by symbolically solving - -AixLib.Media.Air.specificEntropy -for temperature. -

                                        -", revisions=" -
                                          -
                                        • -November 27, 2013, by Michael Wetter:
                                          -First implementation. -
                                        • -
                                        -")); +

                                        + This function returns the thermodynamic state based on pressure, + specific entropy and mass fraction. +

                                        +

                                        + The state is computed by symbolically solving + + AixLib.Media.Air.specificEntropy + for temperature. +

                                        + ",revisions=" +
                                          +
                                        • + November 27, 2013, by Michael Wetter:
                                          + First implementation. +
                                        • +
                                        + ")); end setState_psX; redeclare replaceable function extends specificEnthalpy @@ -686,10 +706,10 @@ end specificEnthalpy; redeclare replaceable function specificEnthalpy_pTX "Specific enthalpy" extends Modelica.Icons.Function; - input Modelica.SIunits.Pressure p "Pressure"; - input Modelica.SIunits.Temperature T "Temperature"; - input Modelica.SIunits.MassFraction X[:] "Mass fractions of moist air"; - output Modelica.SIunits.SpecificEnthalpy h "Specific enthalpy at p, T, X"; + input Modelica.Units.SI.Pressure p "Pressure"; + input Modelica.Units.SI.Temperature T "Temperature"; + input Modelica.Units.SI.MassFraction X[:] "Mass fractions of moist air"; + output Modelica.Units.SI.SpecificEnthalpy h "Specific enthalpy at p, T, X"; algorithm h := specificEnthalpy(setState_pTX(p, T, X)); @@ -697,20 +717,20 @@ algorithm Inline=true, inverse(T=temperature_phX(p, h, X)), Documentation(info=" -Specific enthalpy as a function of temperature and species concentration. -The pressure is input for compatibility with the medium models, but the specific enthalpy -is independent of the pressure. -", + Specific enthalpy as a function of temperature and species concentration. + The pressure is input for compatibility with the medium models, but the specific enthalpy + is independent of the pressure. + ", revisions=" -
                                          -
                                        • -April 30, 2015, by Filip Jorissen and Michael Wetter:
                                          -Added Inline=true for - -issue 227. -
                                        • -
                                        -")); +
                                          +
                                        • + April 30, 2015, by Filip Jorissen and Michael Wetter:
                                          + Added Inline=true for + + issue 227. +
                                        • +
                                        + ")); end specificEnthalpy_pTX; redeclare replaceable function extends specificGibbsEnergy @@ -738,21 +758,21 @@ algorithm annotation ( Inline=true, Documentation(info=" -

                                        -This function computes the specific enthalpy for -an isentropic state change from the temperature -that corresponds to the state refState -to reference_T. -

                                        -", +

                                        + This function computes the specific enthalpy for + an isentropic state change from the temperature + that corresponds to the state refState + to reference_T. +

                                        + ", revisions=" -
                                          -
                                        • -December 18, 2013, by Michael Wetter:
                                          -First implementation. -
                                        • -
                                        -")); +
                                          +
                                        • + December 18, 2013, by Michael Wetter:
                                          + First implementation. +
                                        • +
                                        + ")); end isentropicEnthalpy; redeclare function extends specificInternalEnergy "Specific internal energy" @@ -771,8 +791,8 @@ algorithm smoothOrder=2, Inline=true, Documentation(info=" -Temperature is returned from the thermodynamic state record input as a simple assignment. -")); + Temperature is returned from the thermodynamic state record input as a simple assignment. + ")); end temperature; redeclare function extends molarMass "Return the molar mass" @@ -782,18 +802,18 @@ algorithm Inline=true, smoothOrder=99, Documentation(info=" -

                                        -This function returns the molar mass. -

                                        -", +

                                        + This function returns the molar mass. +

                                        + ", revisions=" -
                                          -
                                        • -December 18, 2013, by Michael Wetter:
                                          -First implementation. -
                                        • -
                                        -")); +
                                          +
                                        • + December 18, 2013, by Michael Wetter:
                                          + First implementation. +
                                        • +
                                        + ")); end molarMass; redeclare replaceable function temperature_phX @@ -810,28 +830,28 @@ algorithm Inline=true, inverse(h=specificEnthalpy_pTX(p, T, X)), Documentation(info=" -Temperature as a function of specific enthalpy and species concentration. -The pressure is input for compatibility with the medium models, but the temperature -is independent of the pressure. -", + Temperature as a function of specific enthalpy and species concentration. + The pressure is input for compatibility with the medium models, but the temperature + is independent of the pressure. + ", revisions=" -
                                          -
                                        • -April 30, 2015, by Filip Jorissen and Michael Wetter:
                                          -Added Inline=true for - -issue 227. -
                                        • -
                                        -")); +
                                          +
                                        • + April 30, 2015, by Filip Jorissen and Michael Wetter:
                                          + Added Inline=true for + + issue 227. +
                                        • +
                                        + ")); end temperature_phX; redeclare function extends thermalConductivity "Thermal conductivity of dry air as a polynomial in the temperature" algorithm - lambda := Modelica.Media.Incompressible.TableBased.Polynomials_Temp.evaluate( - {(-4.8737307422969E-008), 7.67803133753502E-005, 0.0241814385504202}, - Modelica.SIunits.Conversions.to_degC(state.T)); + lambda :=Modelica.Math.Polynomials.evaluate({(-4.8737307422969E-008), + 7.67803133753502E-005,0.0241814385504202}, + Modelica.Units.Conversions.to_degC(state.T)); annotation(LateInline=true); end thermalConductivity; ////////////////////////////////////////////////////////////////////// @@ -846,59 +866,36 @@ protected "Coefficient data record for properties of perfect gases" extends Modelica.Icons.Record; - Modelica.SIunits.MolarMass MM "Molar mass"; - Modelica.SIunits.SpecificHeatCapacity R "Gas constant"; - Modelica.SIunits.SpecificHeatCapacity cp + Modelica.Units.SI.MolarMass MM "Molar mass"; + Modelica.Units.SI.SpecificHeatCapacity R "Gas constant"; + Modelica.Units.SI.SpecificHeatCapacity cp "Specific heat capacity at constant pressure"; - Modelica.SIunits.SpecificHeatCapacity cv = cp-R + Modelica.Units.SI.SpecificHeatCapacity cv=cp - R "Specific heat capacity at constant volume"; annotation ( preferredView="info", Documentation(info=" -

                                        -This data record contains the coefficients for perfect gases. -

                                        -", revisions=" -
                                          -
                                        • -September 12, 2014, by Michael Wetter:
                                          -Corrected the wrong location of the preferredView -and the revisions annotation. -
                                        • -
                                        • -November 21, 2013, by Michael Wetter:
                                          -First implementation. -
                                        • -
                                        -")); +

                                        + This data record contains the coefficients for perfect gases. +

                                        + ",revisions=" +
                                          +
                                        • + September 12, 2014, by Michael Wetter:
                                          + Corrected the wrong location of the preferredView + and the revisions annotation. +
                                        • +
                                        • + November 21, 2013, by Michael Wetter:
                                          + First implementation. +
                                        • +
                                        + ")); end GasProperties; - // In the assignments below, we compute cv as OpenModelica - // cannot evaluate cv=cp-R as defined in GasProperties. - constant GasProperties dryair( - R = Modelica.Media.IdealGases.Common.SingleGasesData.Air.R, - MM = Modelica.Media.IdealGases.Common.SingleGasesData.Air.MM, - cp = AixLib.Utilities.Psychrometrics.Constants.cpAir, - cv = AixLib.Utilities.Psychrometrics.Constants.cpAir - -Modelica.Media.IdealGases.Common.SingleGasesData.Air.R) - "Dry air properties"; - constant GasProperties steam( - R = Modelica.Media.IdealGases.Common.SingleGasesData.H2O.R, - MM = Modelica.Media.IdealGases.Common.SingleGasesData.H2O.MM, - cp = AixLib.Utilities.Psychrometrics.Constants.cpSte, - cv = AixLib.Utilities.Psychrometrics.Constants.cpSte - -Modelica.Media.IdealGases.Common.SingleGasesData.H2O.R) - "Steam properties"; - - constant Real k_mair = steam.MM/dryair.MM "Ratio of molar weights"; - - constant Modelica.SIunits.MolarMass[2] MMX={steam.MM,dryair.MM} - "Molar masses of components"; - constant Modelica.SIunits.SpecificEnergy h_fg= - AixLib.Utilities.Psychrometrics.Constants.h_fg + constant Modelica.Units.SI.SpecificEnergy h_fg=AixLib.Utilities.Psychrometrics.Constants.h_fg "Latent heat of evaporation of water"; - constant Modelica.SIunits.SpecificHeatCapacity cpWatLiq= - AixLib.Utilities.Psychrometrics.Constants.cpWatLiq + constant Modelica.Units.SI.SpecificHeatCapacity cpWatLiq=AixLib.Utilities.Psychrometrics.Constants.cpWatLiq "Specific heat capacity of liquid water"; replaceable function der_enthalpyOfLiquid @@ -989,222 +986,222 @@ algorithm Inline=true); end der_specificHeatCapacityCv; annotation(Documentation(info=" -

                                        -This medium package models moist air using a gas law in which pressure and temperature -are independent, which often leads to significantly faster and more robust computations. -The specific heat capacities at constant pressure and at constant volume are constant. -The air is assumed to be not saturated. -

                                        -

                                        -This medium uses the gas law -

                                        -

                                        -ρ/ρstp = p/pstp, -

                                        -

                                        -where -pstd and ρstp are constant reference -temperature and density, rathern than the ideal gas law -

                                        -

                                        -ρ = p ⁄(R T), -

                                        -

                                        -where R is the gas constant and T is the temperature. -

                                        -

                                        -This formulation often leads to smaller systems of nonlinear equations -because equations for pressure and temperature are decoupled. -Therefore, if air inside a control volume such as room air is heated, it -does not increase its specific volume. Consequently, merely heating or cooling -a control volume does not affect the air flow calculations in a duct network -that may be connected to that volume. -Note that multizone air exchange simulation in which buoyancy drives the -air flow is still possible as the models in - -AixLib.Airflow.Multizone compute the mass density using the function - -AixLib.Utilities.Psychrometrics.Functions.density_pTX in which density -is a function of temperature. -

                                        -

                                        -Note that models in this package implement the equation for the internal energy as -

                                        -

                                        - u = h - pstp ⁄ ρstp, -

                                        -

                                        -where -u is the internal energy per unit mass, -h is the enthalpy per unit mass, -pstp is the static pressure and -ρstp is the mass density at standard pressure and temperature. -The reason for this implementation is that in general, -

                                        -

                                        - h = u + p v, -

                                        -

                                        -from which follows that -

                                        -

                                        - u = h - p v = h - p ⁄ ρ = h - pstp ⁄ ρstd, -

                                        -

                                        -because p ⁄ ρ = pstp ⁄ ρstp in this medium model. -

                                        -

                                        -The enthalpy is computed using the convention that h=0 -if T=0 °C and no water vapor is present. -

                                        -", revisions=" -
                                          -
                                        • -September 28, 2020, by Michael Wetter:
                                          -Reformulated BaseProperties to avoid event-triggering assertions.
                                          -This is for -#1401. -
                                        • -
                                        • -January 11, 2019 by Michael Wetter:
                                          -Reforulated assignment of X_int in setState_psX.
                                          -This is for -#1079. -
                                        • -
                                        • -October 26, 2018, by Filip Jorissen and Michael Wetter:
                                          -Now printing different messages if temperature is above or below its limit, -and adding instance name as JModelica does not print the full instance name in the assertion. -This is for -#1045. -
                                        • -
                                        • -November 4, 2016, by Michael Wetter:
                                          -Set default value for dT.start in base properties.
                                          -This is for -#575. -
                                        • -
                                        • -June 6, 2015, by Michael Wetter:
                                          -Set AbsolutePressure(start=p_default) to avoid -a translation error if - -AixLib.Fluid.Sources.Examples.TraceSubstancesFlowSource -is translated in pedantic mode in Dymola 2016. -The reason is that pressures use Medium.p_default as start values, -but - -Modelica.Media.Interfaces.Types -sets a default value of 1E-5. -A similar change has been done for pressure. -This fixes -#266. -
                                        • -
                                        • -June 5, 2015, by Michael Wetter:
                                          -Added stateSelect attribute in BaseProperties.T -to allow correct use of preferredMediumState as -described in - -Modelica.Media.Interfaces.PartialMedium. -Note that the default is preferredMediumState=false -and hence the same states are used as were used before. -This is for -#260. -
                                        • -
                                        • -May 11, 2015, by Michael Wetter:
                                          -Removed -p(stateSelect=if preferredMediumStates then StateSelect.prefer else StateSelect.default) -in declaration of BaseProperties. -Otherwise, when models that contain a fluid volume -are exported as an FMU, their pressure would be -differentiated with respect to time. This would require -the time derivative of the inlet pressure, which is not available, -causing the translation to stop with an error. -
                                        • -
                                        • -May 1, 2015, by Michael Wetter:
                                          -Added Inline=true for - -issue 227. -
                                        • -
                                        • -March 20, 2015, by Michael Wetter:
                                          -Added missing term state.p/reference_p in function -specificEntropy. -#193. -
                                        • -
                                        • -February 3, 2015, by Michael Wetter:
                                          -Removed stateSelect.prefer for temperature. -This is for -#160. -
                                        • -
                                        • -July 24, 2014, by Michael Wetter:
                                          -Changed implementation to use - -AixLib.Utilities.Psychrometrics.Constants. -This was done to use consistent values throughout the library. -
                                        • -
                                        • -November 16, 2013, by Michael Wetter:
                                          -Revised and simplified the implementation. -
                                        • -
                                        • -November 14, 2013, by Michael Wetter:
                                          -Removed function -HeatCapacityOfWater -which is neither needed nor implemented in the -Modelica Standard Library. -
                                        • -
                                        • -November 13, 2013, by Michael Wetter:
                                          -Removed non-used computations in specificEnthalpy_pTX and -in temperature_phX. -
                                        • -
                                        • -March 29, 2013, by Michael Wetter:
                                          -Added final standardOrderComponents=true in the -BaseProperties declaration. This avoids an error -when models are checked in Dymola 2014 in the pedenatic mode. -
                                        • -
                                        • -April 12, 2012, by Michael Wetter:
                                          -Added keyword each to Xi(stateSelect=...). -
                                        • -
                                        • -April 4, 2012, by Michael Wetter:
                                          -Added redeclaration of ThermodynamicState to avoid a warning -during model check and translation. -
                                        • -
                                        • -August 3, 2011, by Michael Wetter:
                                          -Fixed bug in u=h-R*T, which is only valid for ideal gases. -For this medium, the function is u=h-pStd/dStp. -
                                        • -
                                        • -January 27, 2010, by Michael Wetter:
                                          -Fixed bug in else branch of function setState_phX -that lead to a run-time error when the constructor of this function was called. -
                                        • -
                                        • -January 22, 2010, by Michael Wetter:
                                          -Added implementation of function - -enthalpyOfNonCondensingGas and its derivative. -
                                        • -
                                        • -January 13, 2010, by Michael Wetter:
                                          -Fixed implementation of derivative functions. -
                                        • -
                                        • -August 28, 2008, by Michael Wetter:
                                          -First implementation. -
                                        • -
                                        -"), +

                                        + This medium package models moist air using a gas law in which pressure and temperature + are independent, which often leads to significantly faster and more robust computations. + The specific heat capacities at constant pressure and at constant volume are constant. + The air is assumed to be not saturated. +

                                        +

                                        + This medium uses the gas law +

                                        +

                                        + ρ/ρstp = p/pstp, +

                                        +

                                        + where + pstd and ρstp are constant reference + temperature and density, rathern than the ideal gas law +

                                        +

                                        + ρ = p ⁄(R T), +

                                        +

                                        + where R is the gas constant and T is the temperature. +

                                        +

                                        + This formulation often leads to smaller systems of nonlinear equations + because equations for pressure and temperature are decoupled. + Therefore, if air inside a control volume such as room air is heated, it + does not increase its specific volume. Consequently, merely heating or cooling + a control volume does not affect the air flow calculations in a duct network + that may be connected to that volume. + Note that multizone air exchange simulation in which buoyancy drives the + air flow is still possible as the models in + + AixLib.Airflow.Multizone compute the mass density using the function + + AixLib.Utilities.Psychrometrics.Functions.density_pTX in which density + is a function of temperature. +

                                        +

                                        + Note that models in this package implement the equation for the internal energy as +

                                        +

                                        + u = h - pstp ⁄ ρstp, +

                                        +

                                        + where + u is the internal energy per unit mass, + h is the enthalpy per unit mass, + pstp is the static pressure and + ρstp is the mass density at standard pressure and temperature. + The reason for this implementation is that in general, +

                                        +

                                        + h = u + p v, +

                                        +

                                        + from which follows that +

                                        +

                                        + u = h - p v = h - p ⁄ ρ = h - pstp ⁄ ρstd, +

                                        +

                                        + because p ⁄ ρ = pstp ⁄ ρstp in this medium model. +

                                        +

                                        + The enthalpy is computed using the convention that h=0 + if T=0 °C and no water vapor is present. +

                                        + ",revisions=" +
                                          +
                                        • + September 28, 2020, by Michael Wetter:
                                          + Reformulated BaseProperties to avoid event-triggering assertions.
                                          + This is for + #1401. +
                                        • +
                                        • + January 11, 2019 by Michael Wetter:
                                          + Reforulated assignment of X_int in setState_psX.
                                          + This is for + #1079. +
                                        • +
                                        • + October 26, 2018, by Filip Jorissen and Michael Wetter:
                                          + Now printing different messages if temperature is above or below its limit, + and adding instance name as JModelica does not print the full instance name in the assertion. + This is for + #1045. +
                                        • +
                                        • + November 4, 2016, by Michael Wetter:
                                          + Set default value for dT.start in base properties.
                                          + This is for + #575. +
                                        • +
                                        • + June 6, 2015, by Michael Wetter:
                                          + Set AbsolutePressure(start=p_default) to avoid + a translation error if + + AixLib.Fluid.Sources.Examples.TraceSubstancesFlowSource + is translated in pedantic mode in Dymola 2016. + The reason is that pressures use Medium.p_default as start values, + but + + Modelica.Media.Interfaces.Types + sets a default value of 1E-5. + A similar change has been done for pressure. + This fixes + #266. +
                                        • +
                                        • + June 5, 2015, by Michael Wetter:
                                          + Added stateSelect attribute in BaseProperties.T + to allow correct use of preferredMediumState as + described in + + Modelica.Media.Interfaces.PartialMedium. + Note that the default is preferredMediumState=false + and hence the same states are used as were used before. + This is for + #260. +
                                        • +
                                        • + May 11, 2015, by Michael Wetter:
                                          + Removed + p(stateSelect=if preferredMediumStates then StateSelect.prefer else StateSelect.default) + in declaration of BaseProperties. + Otherwise, when models that contain a fluid volume + are exported as an FMU, their pressure would be + differentiated with respect to time. This would require + the time derivative of the inlet pressure, which is not available, + causing the translation to stop with an error. +
                                        • +
                                        • + May 1, 2015, by Michael Wetter:
                                          + Added Inline=true for + + issue 227. +
                                        • +
                                        • + March 20, 2015, by Michael Wetter:
                                          + Added missing term state.p/reference_p in function + specificEntropy. + #193. +
                                        • +
                                        • + February 3, 2015, by Michael Wetter:
                                          + Removed stateSelect.prefer for temperature. + This is for + #160. +
                                        • +
                                        • + July 24, 2014, by Michael Wetter:
                                          + Changed implementation to use + + AixLib.Utilities.Psychrometrics.Constants. + This was done to use consistent values throughout the library. +
                                        • +
                                        • + November 16, 2013, by Michael Wetter:
                                          + Revised and simplified the implementation. +
                                        • +
                                        • + November 14, 2013, by Michael Wetter:
                                          + Removed function + HeatCapacityOfWater + which is neither needed nor implemented in the + Modelica Standard Library. +
                                        • +
                                        • + November 13, 2013, by Michael Wetter:
                                          + Removed non-used computations in specificEnthalpy_pTX and + in temperature_phX. +
                                        • +
                                        • + March 29, 2013, by Michael Wetter:
                                          + Added final standardOrderComponents=true in the + BaseProperties declaration. This avoids an error + when models are checked in Dymola 2014 in the pedenatic mode. +
                                        • +
                                        • + April 12, 2012, by Michael Wetter:
                                          + Added keyword each to Xi(stateSelect=...). +
                                        • +
                                        • + April 4, 2012, by Michael Wetter:
                                          + Added redeclaration of ThermodynamicState to avoid a warning + during model check and translation. +
                                        • +
                                        • + August 3, 2011, by Michael Wetter:
                                          + Fixed bug in u=h-R*T, which is only valid for ideal gases. + For this medium, the function is u=h-pStd/dStp. +
                                        • +
                                        • + January 27, 2010, by Michael Wetter:
                                          + Fixed bug in else branch of function setState_phX + that lead to a run-time error when the constructor of this function was called. +
                                        • +
                                        • + January 22, 2010, by Michael Wetter:
                                          + Added implementation of function + + enthalpyOfNonCondensingGas and its derivative. +
                                        • +
                                        • + January 13, 2010, by Michael Wetter:
                                          + Fixed implementation of derivative functions. +
                                        • +
                                        • + August 28, 2008, by Michael Wetter:
                                          + First implementation. +
                                        • +
                                        + "), Icon(graphics={ Ellipse( extent={{-78,78},{-34,34}}, @@ -1240,5 +1237,6 @@ First implementation. extent={{-90,-6},{-46,-50}}, lineColor={0,0,0}, fillPattern=FillPattern.Sphere, - fillColor={120,120,120})})); + fillColor={120,120,120})}), + __Dymola_LockedEditing="Model from IBPSA"); end Air; diff --git a/AixLib/Media/AirIncompressible.mo b/AixLib/Media/AirIncompressible.mo index a6b3cee20d..cc30df6b21 100644 --- a/AixLib/Media/AirIncompressible.mo +++ b/AixLib/Media/AirIncompressible.mo @@ -1,4 +1,4 @@ -within AixLib.Media; +within AixLib.Media; package AirIncompressible "Package with incopressible moist air model for air duct simulations" extends Modelica.Media.Interfaces.PartialCondensingGases( @@ -51,12 +51,12 @@ package AirIncompressible final standardOrderComponents=true) "Base properties" protected - constant Modelica.SIunits.MolarMass[2] MMX = {steam.MM,dryair.MM} + constant Modelica.Units.SI.MolarMass[2] MMX={steam.MM,dryair.MM} "Molar masses of components"; MassFraction X_steam "Mass fraction of steam water"; MassFraction X_air "Mass fraction of air"; - Modelica.SIunits.TemperatureDifference dT(start=T_default-reference_T) + Modelica.Units.SI.TemperatureDifference dT(start=T_default - reference_T) "Temperature difference used to compute enthalpy"; equation assert(T >= 200.0, " @@ -74,7 +74,7 @@ as required from medium model \"" + mediumName + "\"."); dT = T - reference_T; h = dT*dryair.cp * X_air + (dT * steam.cp + h_fg) * X_steam; - R = dryair.R*X_air + steam.R*X_steam; + R_s = dryair.R*X_air + steam.R*X_steam; // Equation for ideal gas, from h=u+p*v and R*T=p*v, from which follows that u = h-R*T. // u = h-R*T; @@ -195,7 +195,7 @@ redeclare function extends gasConstant "Return ideal gas constant as a function from thermodynamic state, only valid for phi<1" algorithm - R := dryair.R*(1 - state.X[Water]) + steam.R*state.X[Water]; + R_s := dryair.R*(1 - state.X[Water]) + steam.R*state.X[Water]; annotation ( smoothOrder=2, Inline=true, @@ -287,7 +287,7 @@ redeclare function extends specificEntropy "Return the specific entropy, only valid for phi<1" protected - Modelica.SIunits.MoleFraction[2] Y "Molar fraction"; + Modelica.Units.SI.MoleFraction[2] Y "Molar fraction"; algorithm Y := massToMoleFractions( state.X, {steam.MM,dryair.MM}); @@ -509,9 +509,9 @@ end setState_pTX; redeclare function extends setState_psX "Return the thermodynamic state as function of p, s and composition X or Xi" protected - Modelica.SIunits.MassFraction[2] X_int "Mass fraction"; - Modelica.SIunits.MoleFraction[2] Y "Molar fraction"; - Modelica.SIunits.Temperature T "Temperature"; + Modelica.Units.SI.MassFraction[2] X_int "Mass fraction"; + Modelica.Units.SI.MoleFraction[2] Y "Molar fraction"; + Modelica.Units.SI.Temperature T "Temperature"; algorithm if size(X, 1) == nX then X_int:=X; @@ -569,10 +569,10 @@ end specificEnthalpy; redeclare replaceable function specificEnthalpy_pTX "Specific enthalpy" extends Modelica.Icons.Function; - input Modelica.SIunits.Pressure p "Pressure"; - input Modelica.SIunits.Temperature T "Temperature"; - input Modelica.SIunits.MassFraction X[:] "Mass fractions of moist air"; - output Modelica.SIunits.SpecificEnthalpy h "Specific enthalpy at p, T, X"; + input Modelica.Units.SI.Pressure p "Pressure"; + input Modelica.Units.SI.Temperature T "Temperature"; + input Modelica.Units.SI.MassFraction X[:] "Mass fractions of moist air"; + output Modelica.Units.SI.SpecificEnthalpy h "Specific enthalpy at p, T, X"; algorithm h := specificEnthalpy(setState_pTX(p, T, X)); @@ -697,9 +697,9 @@ end temperature_phX; redeclare function extends thermalConductivity "Thermal conductivity of dry air as a polynomial in the temperature" algorithm - lambda := Modelica.Media.Incompressible.TableBased.Polynomials_Temp.evaluate( - {(-4.8737307422969E-008), 7.67803133753502E-005, 0.0241814385504202}, - Modelica.SIunits.Conversions.to_degC(state.T)); + lambda :=Modelica.Math.Polynomials.evaluate({(-4.8737307422969E-008), + 7.67803133753502E-005,0.0241814385504202}, + Modelica.Units.Conversions.to_degC(state.T)); annotation(LateInline=true); end thermalConductivity; ////////////////////////////////////////////////////////////////////// @@ -714,11 +714,11 @@ protected "Coefficient data record for properties of perfect gases" extends Modelica.Icons.Record; - Modelica.SIunits.MolarMass MM "Molar mass"; - Modelica.SIunits.SpecificHeatCapacity R "Gas constant"; - Modelica.SIunits.SpecificHeatCapacity cp + Modelica.Units.SI.MolarMass MM "Molar mass"; + Modelica.Units.SI.SpecificHeatCapacity R "Gas constant"; + Modelica.Units.SI.SpecificHeatCapacity cp "Specific heat capacity at constant pressure"; - Modelica.SIunits.SpecificHeatCapacity cv = cp-R + Modelica.Units.SI.SpecificHeatCapacity cv=cp - R "Specific heat capacity at constant volume"; annotation ( preferredView="info", @@ -740,30 +740,26 @@ protected // In the assignments below, we compute cv as OpenModelica // cannot evaluate cv=cp-R as defined in GasProperties. constant GasProperties dryair( - R = Modelica.Media.IdealGases.Common.SingleGasesData.Air.R, - MM = Modelica.Media.IdealGases.Common.SingleGasesData.Air.MM, - cp = AixLib.Utilities.Psychrometrics.Constants.cpAir, - cv = AixLib.Utilities.Psychrometrics.Constants.cpAir - -Modelica.Media.IdealGases.Common.SingleGasesData.Air.R) + R=Modelica.Media.IdealGases.Common.SingleGasesData.Air.R_s, + MM=Modelica.Media.IdealGases.Common.SingleGasesData.Air.MM, + cp=AixLib.Utilities.Psychrometrics.Constants.cpAir, + cv=AixLib.Utilities.Psychrometrics.Constants.cpAir - Modelica.Media.IdealGases.Common.SingleGasesData.Air.R_s) "Dry air properties"; constant GasProperties steam( - R = Modelica.Media.IdealGases.Common.SingleGasesData.H2O.R, - MM = Modelica.Media.IdealGases.Common.SingleGasesData.H2O.MM, - cp = AixLib.Utilities.Psychrometrics.Constants.cpSte, - cv = AixLib.Utilities.Psychrometrics.Constants.cpSte - -Modelica.Media.IdealGases.Common.SingleGasesData.H2O.R) + R=Modelica.Media.IdealGases.Common.SingleGasesData.H2O.R_s, + MM=Modelica.Media.IdealGases.Common.SingleGasesData.H2O.MM, + cp=AixLib.Utilities.Psychrometrics.Constants.cpSte, + cv=AixLib.Utilities.Psychrometrics.Constants.cpSte - Modelica.Media.IdealGases.Common.SingleGasesData.H2O.R_s) "Steam properties"; constant Real k_mair = steam.MM/dryair.MM "Ratio of molar weights"; - constant Modelica.SIunits.MolarMass[2] MMX={steam.MM,dryair.MM} + constant Modelica.Units.SI.MolarMass[2] MMX={steam.MM,dryair.MM} "Molar masses of components"; - constant Modelica.SIunits.SpecificEnergy h_fg= - AixLib.Utilities.Psychrometrics.Constants.h_fg + constant Modelica.Units.SI.SpecificEnergy h_fg=AixLib.Utilities.Psychrometrics.Constants.h_fg "Latent heat of evaporation of water"; - constant Modelica.SIunits.SpecificHeatCapacity cpWatLiq= - AixLib.Utilities.Psychrometrics.Constants.cpWatLiq + constant Modelica.Units.SI.SpecificHeatCapacity cpWatLiq=AixLib.Utilities.Psychrometrics.Constants.cpWatLiq "Specific heat capacity of liquid water"; replaceable function der_enthalpyOfLiquid diff --git a/AixLib/Media/Antifreeze/BaseClasses/PropertyCoefficients.mo b/AixLib/Media/Antifreeze/BaseClasses/PropertyCoefficients.mo index 5a91d83178..1967d1fb9c 100644 --- a/AixLib/Media/Antifreeze/BaseClasses/PropertyCoefficients.mo +++ b/AixLib/Media/Antifreeze/BaseClasses/PropertyCoefficients.mo @@ -3,8 +3,8 @@ record PropertyCoefficients "Polynomial coefficients to evaluate fluid properties" extends Modelica.Icons.Record; - Modelica.SIunits.MassFraction X_a_ref "Reference mass fraction"; - Modelica.SIunits.Temperature T_ref "Reference temperature"; + Modelica.Units.SI.MassFraction X_a_ref "Reference mass fraction"; + Modelica.Units.SI.Temperature T_ref "Reference temperature"; parameter Integer nX_a "Order of polynomial in x"; Integer nT[nX_a] "Order of polynomial in y"; parameter Integer nTot "Total number of coefficients"; @@ -17,24 +17,25 @@ record PropertyCoefficients annotation (Icon(coordinateSystem(preserveAspectRatio=false)), Diagram( coordinateSystem(preserveAspectRatio=false)), Documentation(info=" -

                                        -Record that is used by media packages in - -AixLib.Media.Antifreeze to implement the thermophysical properties -based on Melinder (2010). -

                                        -

                                        References

                                        -

                                        -Melinder, Åke. 2010. Properties of Secondary Working Fluids (Secondary -Refrigerants or Coolants, Heat Transfer Fluids) for Indirect Systems. Paris: -IIR/IIF. -

                                        -", revisions=" -
                                          -
                                        • -May 11, 2018, by Michael Wetter: -Added documentation. -
                                        • -
                                        -")); +

                                        + Record that is used by media packages in + + AixLib.Media.Antifreeze to implement the thermophysical properties + based on Melinder (2010). +

                                        +

                                        References

                                        +

                                        + Melinder, Åke. 2010. Properties of Secondary Working Fluids (Secondary + Refrigerants or Coolants, Heat Transfer Fluids) for Indirect Systems. Paris: + IIR/IIF. +

                                        + ",revisions=" +
                                          +
                                        • + May 11, 2018, by Michael Wetter: + Added documentation. +
                                        • +
                                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end PropertyCoefficients; diff --git a/AixLib/Media/Antifreeze/EthyleneGlycolWater.mo b/AixLib/Media/Antifreeze/EthyleneGlycolWater.mo index 403878cc76..dd3da5b6d5 100644 --- a/AixLib/Media/Antifreeze/EthyleneGlycolWater.mo +++ b/AixLib/Media/Antifreeze/EthyleneGlycolWater.mo @@ -2,20 +2,19 @@ within AixLib.Media.Antifreeze; package EthyleneGlycolWater "Package with model for ethylene glycol - water with constant properties" extends Modelica.Media.Interfaces.PartialSimpleMedium( - mediumName="EthyleneGlycolWater(X_a = " - + String(X_a) + ", property_T = " - + String(property_T) + ")", - final cp_const=specificHeatCapacityCp_TX_a(T = property_T, X_a = X_a), + mediumName="EthyleneGlycolWater(X_a = " + String(X_a) + ", property_T = " + + String(property_T) + ")", + final cp_const=specificHeatCapacityCp_TX_a(T=property_T, X_a=X_a), final cv_const=cp_const, - final d_const=density_TX_a(T = property_T, X_a = X_a), - final eta_const=dynamicViscosity_TX_a(T = property_T, X_a = X_a), - final lambda_const=thermalConductivity_TX_a(T = property_T, X_a = X_a), + final d_const=density_TX_a(T=property_T, X_a=X_a), + final eta_const=dynamicViscosity_TX_a(T=property_T, X_a=X_a), + final lambda_const=thermalConductivity_TX_a(T=property_T, X_a=X_a), a_const=1484, - final T_min=fusionTemperature_TX_a(T = property_T, X_a = X_a), - T_max=Modelica.SIunits.Conversions.from_degC(100), + final T_min=fusionTemperature_TX_a(T=property_T, X_a=X_a), + T_max=Modelica.Units.Conversions.from_degC(100), T0=273.15, - MM_const=(X_a/simpleEthyleneGlycolWaterConstants[1].molarMass + (1 - - X_a)/0.018015268)^(-1), + MM_const=(X_a/simpleEthyleneGlycolWaterConstants[1].molarMass + (1 - X_a)/ + 0.018015268)^(-1), fluidConstants=simpleEthyleneGlycolWaterConstants, p_default=300000, reference_p=300000, @@ -25,9 +24,9 @@ package EthyleneGlycolWater Temperature(start=T_default), Density(start=d_const)); - constant Modelica.SIunits.Temperature property_T + constant Modelica.Units.SI.Temperature property_T "Temperature for evaluation of constant fluid properties"; - constant Modelica.SIunits.MassFraction X_a + constant Modelica.Units.SI.MassFraction X_a "Mass fraction of propylene glycol in water"; redeclare model BaseProperties "Base properties" @@ -39,14 +38,14 @@ package EthyleneGlycolWater InputMassFraction[nXi] Xi=fill(0, 0) "Structurally independent mass fractions"; InputSpecificEnthalpy h "Specific enthalpy of medium"; - Modelica.SIunits.SpecificInternalEnergy u + Modelica.Units.SI.SpecificInternalEnergy u "Specific internal energy of medium"; - Modelica.SIunits.Density d=d_const "Density of medium"; - Modelica.SIunits.MassFraction[nX] X={1} + Modelica.Units.SI.Density d=d_const "Density of medium"; + Modelica.Units.SI.MassFraction[nX] X={1} "Mass fractions (= (component mass)/total mass m_i/m)"; - final Modelica.SIunits.SpecificHeatCapacity R=0 + final Modelica.Units.SI.SpecificHeatCapacity R_s=0 "Gas constant (of mixture if applicable)"; - final Modelica.SIunits.MolarMass MM=MM_const + final Modelica.Units.SI.MolarMass MM=MM_const "Molar mass (of mixture or single fluid)"; ThermodynamicState state "Thermodynamic state record for optional functions"; @@ -55,37 +54,35 @@ package EthyleneGlycolWater annotation(Evaluate=true, Dialog(tab="Advanced")); final parameter Boolean standardOrderComponents=true "If true, and reducedX = true, the last element of X will be computed from the other ones"; - Modelica.SIunits.Conversions.NonSIunits.Temperature_degC T_degC= - Modelica.SIunits.Conversions.to_degC(T) - "Temperature of medium in [degC]"; - Modelica.SIunits.Conversions.NonSIunits.Pressure_bar p_bar= - Modelica.SIunits.Conversions.to_bar(p) + Modelica.Units.NonSI.Temperature_degC T_degC= + Modelica.Units.Conversions.to_degC(T) "Temperature of medium in [degC]"; + Modelica.Units.NonSI.Pressure_bar p_bar=Modelica.Units.Conversions.to_bar(p) "Absolute pressure of medium in [bar]"; // Local connector definition, used for equation balancing check - connector InputAbsolutePressure = input Modelica.SIunits.AbsolutePressure + connector InputAbsolutePressure = input Modelica.Units.SI.AbsolutePressure "Pressure as input signal connector"; - connector InputSpecificEnthalpy = input Modelica.SIunits.SpecificEnthalpy + connector InputSpecificEnthalpy = input Modelica.Units.SI.SpecificEnthalpy "Specific enthalpy as input signal connector"; - connector InputMassFraction = input Modelica.SIunits.MassFraction + connector InputMassFraction = input Modelica.Units.SI.MassFraction "Mass fraction as input signal connector"; equation assert(T >= T_min, " -In " + getInstanceName() + ": Temperature T exceeded its minimum allowed value of " + String(T_min-273.15) + In " + getInstanceName() + ": Temperature T exceeded its minimum allowed value of " + String(T_min-273.15) + " degC (" + String(T_min) + " Kelvin) -as required from medium model \"" + mediumName + "\"."); + as required from medium model \""+ mediumName + "\"."); assert(T <= T_max, " -In " + getInstanceName() + ": Temperature T exceeded its maximum allowed value of " + String(T_max-273.15) + In " + getInstanceName() + ": Temperature T exceeded its maximum allowed value of " + String(T_max-273.15) + " degC (" + String(T_max) + " Kelvin) -as required from medium model \"" + mediumName + "\"."); + as required from medium model \""+ mediumName + "\"."); assert(X_a >= X_a_min, " -In " + getInstanceName() + ": Mass fraction x_a exceeded its minimum allowed value of " + String(X_a_min) + " -as required from medium model \"" + mediumName + "\"."); + In " + getInstanceName() + ": Mass fraction x_a exceeded its minimum allowed value of " + String(X_a_min) + " + as required from medium model \""+ mediumName + "\"."); assert(X_a <= X_a_max, " -In " + getInstanceName() + ": Mass fraction x_a exceeded its maximum allowed value of " + String(X_a_max) + " -as required from medium model \"" + mediumName + "\"."); + In " + getInstanceName() + ": Mass fraction x_a exceeded its maximum allowed value of " + String(X_a_max) + " + as required from medium model \""+ mediumName + "\"."); h = cp_const*(T-reference_T); u = h; @@ -93,23 +90,23 @@ as required from medium model \"" + mediumName + "\"."); state.p = p; annotation(Documentation(info=" -

                                        - This base properties model is identical to - - Modelica.Media.Water.ConstantPropertyLiquidWater, - except that the equation - u = cv_const*(T - reference_T) - has been replaced by u=h because - cp_const=cv_const. - Also, the model checks if the mass fraction of the mixture is within the - allowed limits. -

                                        -")); +

                                        + This base properties model is identical to + + Modelica.Media.Water.ConstantPropertyLiquidWater, + except that the equation + u = cv_const*(T - reference_T) + has been replaced by u=h because + cp_const=cv_const. + Also, the model checks if the mass fraction of the mixture is within the + allowed limits. +

                                        + ")); end BaseProperties; protected - constant Modelica.SIunits.MassFraction X_a_min=0. + constant Modelica.Units.SI.MassFraction X_a_min=0. "Minimum allowed mass fraction of ethylene glycol in water"; - constant Modelica.SIunits.MassFraction X_a_max=0.6 + constant Modelica.Units.SI.MassFraction X_a_max=0.6 "Maximum allowed mass fraction of propylene glycol in water"; // Fluid constants based on pure Ethylene Glycol @@ -122,36 +119,36 @@ protected each molarMass=0.062068); // Coefficients for evaluation of physical properties - constant AixLib.Media.Antifreeze.BaseClasses.PropertyCoefficients - proCoe( + constant AixLib.Media.Antifreeze.BaseClasses.PropertyCoefficients proCoe( X_a_ref=0.308462, - T_ref=Modelica.SIunits.Conversions.from_degC(31.728), + T_ref=Modelica.Units.Conversions.from_degC(31.728), nX_a=6, nT={4,4,4,3,2,1}, nTot=18, - a_d={1.034e3,-4.781e-1,-2.692e-3,4.725e-6,1.311e0,-6.876e-3,4.805e-5,1.690e-8, - 7.490e-5,7.855e-5,-3.995e-7,4.982e-9,-1.062e-4,1.229e-6,-1.153e-8,-9.623e-7, - -7.221e-8,4.891e-8}, + a_d={1.034e3,-4.781e-1,-2.692e-3,4.725e-6,1.311e0,-6.876e-3,4.805e-5, + 1.690e-8,7.490e-5,7.855e-5,-3.995e-7,4.982e-9,-1.062e-4,1.229e-6,-1.153e-8, + -9.623e-7,-7.221e-8,4.891e-8}, a_eta={4.705e-1,-2.550e-2,1.782e-4,-7.669e-7,2.471e-2,-1.171e-4,1.052e-6,-1.634e-8, - 3.328e-6,-1.086e-6,-1.051e-8,-6.475e-10,1.695e-6,3.157e-9,4.063e-10,3.089e-8, - 1.831e-10,-1.865e-9}, + 3.328e-6,-1.086e-6,-1.051e-8,-6.475e-10,1.695e-6,3.157e-9,4.063e-10, + 3.089e-8,1.831e-10,-1.865e-9}, a_Tf={-1.525e1,-1.566e-6,-2.278e-7,2.169e-9,-8.080e-1,-1.339e-6,2.047e-08,-2.717e-11, - -1.334e-2,6.332e-8,2.373e-10,-2.183e-12,-7.293e-5,-1.764e-9,-2.442e-11,1.006e-6, - -7.662e-11,1.140e-9}, - a_cp={3.737e3,2.930e0,-4.675e-3,-1.389e-5,-1.799e1,1.046e-1,-4.147e-4,1.847e-7, - -9.933e-2,3.516e-4,5.109e-6,-7.138e-8,2.610e-3,-1.189e-6,-1.643e-7,1.537e-5, - -4.272e-7,-1.618e-6}, - a_lambda={4.720e-1,8.903e-4,-1.058e-6,-2.789e-9,-4.286e-3,-1.473e-5,1.059e-7, - -1.142e-10,1.747e-5,6.814e-8,-3.612e-9,2.365e-12, 3.017e-8,-2.412e-9, + -1.334e-2,6.332e-8,2.373e-10,-2.183e-12,-7.293e-5,-1.764e-9,-2.442e-11, + 1.006e-6,-7.662e-11,1.140e-9}, + a_cp={3.737e3,2.930e0,-4.675e-3,-1.389e-5,-1.799e1,1.046e-1,-4.147e-4, + 1.847e-7,-9.933e-2,3.516e-4,5.109e-6,-7.138e-8,2.610e-3,-1.189e-6,-1.643e-7, + 1.537e-5,-4.272e-7,-1.618e-6}, + a_lambda={4.720e-1,8.903e-4,-1.058e-6,-2.789e-9,-4.286e-3,-1.473e-5, + 1.059e-7,-1.142e-10,1.747e-5,6.814e-8,-3.612e-9,2.365e-12,3.017e-8,-2.412e-9, 4.004e-11,-1.322e-09,2.555e-11,2.678e-11}) "Coefficients for evaluation of thermo-physical properties"; replaceable function density_TX_a "Evaluate density of antifreeze-water mixture" extends Modelica.Icons.Function; - input Modelica.SIunits.Temperature T "Temperature of antifreeze-water mixture"; - input Modelica.SIunits.MassFraction X_a "Mass fraction of antifreeze"; - output Modelica.SIunits.Density d "Density of antifreeze-water mixture"; + input Modelica.Units.SI.Temperature T + "Temperature of antifreeze-water mixture"; + input Modelica.Units.SI.MassFraction X_a "Mass fraction of antifreeze"; + output Modelica.Units.SI.Density d "Density of antifreeze-water mixture"; algorithm d :=polynomialProperty( X_a, @@ -159,37 +156,39 @@ protected proCoe.a_d) annotation ( Documentation(info=" -

                                        - Density of propylene antifreeze-water mixture at specified mass fraction - and temperature, based on Melinder (2010). -

                                        -

                                        References

                                        -

                                        - Melinder, Åke. 2010. Properties of Secondary Working Fluids (Secondary - Refrigerants or Coolants, Heat Transfer Fluids) for Indirect Systems. Paris: - IIR/IIF. -

                                        - ", +

                                        + Density of propylene antifreeze-water mixture at specified mass fraction + and temperature, based on Melinder (2010). +

                                        +

                                        References

                                        +

                                        + Melinder, Åke. 2010. Properties of Secondary Working Fluids (Secondary + Refrigerants or Coolants, Heat Transfer Fluids) for Indirect Systems. Paris: + IIR/IIF. +

                                        + ", revisions=" - - ")); + + ")); end density_TX_a; replaceable function dynamicViscosity_TX_a "Evaluate dynamic viscosity of antifreeze-water mixture" extends Modelica.Icons.Function; - input Modelica.SIunits.Temperature T "Temperature of antifreeze-water mixture"; - input Modelica.SIunits.MassFraction X_a "Mass fraction of antifreeze"; - output Modelica.SIunits.DynamicViscosity eta "Dynamic Viscosity of antifreeze-water mixture"; + input Modelica.Units.SI.Temperature T + "Temperature of antifreeze-water mixture"; + input Modelica.Units.SI.MassFraction X_a "Mass fraction of antifreeze"; + output Modelica.Units.SI.DynamicViscosity eta + "Dynamic Viscosity of antifreeze-water mixture"; algorithm eta :=1e-3*exp(polynomialProperty( X_a, @@ -198,64 +197,66 @@ protected annotation ( Documentation(info=" -

                                        -Dynamic viscosity of antifreeze-water mixture at specified mass fraction and -temperature, based on Melinder (2010). -

                                        -

                                        References

                                        -

                                        -Melinder, Åke. 2010. Properties of Secondary Working Fluids (Secondary -Refrigerants or Coolants, Heat Transfer Fluids) for Indirect Systems. Paris: -IIR/IIF. -

                                        -", revisions=" - -")); +

                                        + Dynamic viscosity of antifreeze-water mixture at specified mass fraction and + temperature, based on Melinder (2010). +

                                        +

                                        References

                                        +

                                        + Melinder, Åke. 2010. Properties of Secondary Working Fluids (Secondary + Refrigerants or Coolants, Heat Transfer Fluids) for Indirect Systems. Paris: + IIR/IIF. +

                                        + ", revisions=" + + ")); end dynamicViscosity_TX_a; replaceable function fusionTemperature_TX_a "Evaluate temperature of fusion of antifreeze-water mixture" extends Modelica.Icons.Function; - input Modelica.SIunits.Temperature T "Temperature of antifreeze-water mixture"; - input Modelica.SIunits.MassFraction X_a "Mass fraction of antifreeze"; - output Modelica.SIunits.Temperature Tf "Temperature of fusion of antifreeze-water mixture"; + input Modelica.Units.SI.Temperature T + "Temperature of antifreeze-water mixture"; + input Modelica.Units.SI.MassFraction X_a "Mass fraction of antifreeze"; + output Modelica.Units.SI.Temperature Tf + "Temperature of fusion of antifreeze-water mixture"; algorithm - Tf :=Modelica.SIunits.Conversions.from_degC(polynomialProperty( + Tf :=Modelica.Units.Conversions.from_degC(polynomialProperty( X_a, T, proCoe.a_Tf)); annotation ( Documentation(info=" -

                                        -Fusion temperature of antifreeze-water mixture at specified mass fraction and -temperature, based on Melinder (2010). -

                                        -

                                        References

                                        -

                                        -Melinder, Åke. 2010. Properties of Secondary Working Fluids (Secondary -Refrigerants or Coolants, Heat Transfer Fluids) for Indirect Systems. Paris: -IIR/IIF. -

                                        -", revisions=" - -")); +

                                        + Fusion temperature of antifreeze-water mixture at specified mass fraction and + temperature, based on Melinder (2010). +

                                        +

                                        References

                                        +

                                        + Melinder, Åke. 2010. Properties of Secondary Working Fluids (Secondary + Refrigerants or Coolants, Heat Transfer Fluids) for Indirect Systems. Paris: + IIR/IIF. +

                                        + ", revisions=" + + ")); end fusionTemperature_TX_a; replaceable function polynomialProperty @@ -286,49 +287,51 @@ AixLib.Media.Antifreeze.EthyleneGlycolWater. end for; annotation ( Documentation(info=" -

                                        -Evaluates a thermophysical property of a mixture, based on correlations proposed -by Melinder (2010). -

                                        -

                                        -The polynomial has the form -

                                        -

                                        -f = a1 (x-xm)0(y-ym)0 -+ a2 (x-xm)0(y-ym)1 -+ ... + -any[1] (x-xm)0(y-ym)ny[1]-1 -+ ... + -any[1])+1 (x-xm)1(y-ym)0 -+ ... + -any[1]+ny[2] (x-xm)1(y-ym)ny[2]-1 -+ ... -

                                        -

                                        References

                                        -

                                        -Melinder, Åke. 2010. Properties of Secondary Working Fluids (Secondary -Refrigerants or Coolants, Heat Transfer Fluids) for Indirect Systems. Paris: -IIR/IIF. -

                                        -", revisions=" -
                                          -
                                        • -March 16, 2018 by Massimo Cimmino:
                                          -First implementation. -This function is used models in - -AixLib.Media.Antifreeze. -
                                        • -
                                        -")); +

                                        + Evaluates a thermophysical property of a mixture, based on correlations proposed + by Melinder (2010). +

                                        +

                                        + The polynomial has the form +

                                        +

                                        + f = a1 (x-xm)0(y-ym)0 + + a2 (x-xm)0(y-ym)1 + + ... + + any[1] (x-xm)0(y-ym)ny[1]-1 + + ... + + any[1])+1 (x-xm)1(y-ym)0 + + ... + + any[1]+ny[2] (x-xm)1(y-ym)ny[2]-1 + + ... +

                                        +

                                        References

                                        +

                                        + Melinder, Åke. 2010. Properties of Secondary Working Fluids (Secondary + Refrigerants or Coolants, Heat Transfer Fluids) for Indirect Systems. Paris: + IIR/IIF. +

                                        + ", revisions=" +
                                          +
                                        • + March 16, 2018 by Massimo Cimmino:
                                          + First implementation. + This function is used models in + + AixLib.Media.Antifreeze. +
                                        • +
                                        + ")); end polynomialProperty; replaceable function specificHeatCapacityCp_TX_a "Evaluate specific heat capacity of antifreeze-water mixture" extends Modelica.Icons.Function; - input Modelica.SIunits.Temperature T "Temperature of antifreeze-water mixture"; - input Modelica.SIunits.MassFraction X_a "Mass fraction of antifreeze"; - output Modelica.SIunits.SpecificHeatCapacity cp "Specific heat capacity of antifreeze-water mixture"; + input Modelica.Units.SI.Temperature T + "Temperature of antifreeze-water mixture"; + input Modelica.Units.SI.MassFraction X_a "Mass fraction of antifreeze"; + output Modelica.Units.SI.SpecificHeatCapacity cp + "Specific heat capacity of antifreeze-water mixture"; algorithm cp :=polynomialProperty( X_a, @@ -337,35 +340,37 @@ AixLib.Media.Antifreeze. annotation ( Documentation(info=" -

                                        -Specific heat capacity of antifreeze-water mixture at specified mass fraction -and temperature, based on Melinder (2010). -

                                        -

                                        References

                                        -

                                        -Melinder, Åke. 2010. Properties of Secondary Working Fluids (Secondary -Refrigerants or Coolants, Heat Transfer Fluids) for Indirect Systems. Paris: -IIR/IIF. -

                                        -", revisions=" - -")); +

                                        + Specific heat capacity of antifreeze-water mixture at specified mass fraction + and temperature, based on Melinder (2010). +

                                        +

                                        References

                                        +

                                        + Melinder, Åke. 2010. Properties of Secondary Working Fluids (Secondary + Refrigerants or Coolants, Heat Transfer Fluids) for Indirect Systems. Paris: + IIR/IIF. +

                                        + ", revisions=" + + ")); end specificHeatCapacityCp_TX_a; replaceable function thermalConductivity_TX_a "Evaluate thermal conductivity of antifreeze-water mixture" extends Modelica.Icons.Function; - input Modelica.SIunits.Temperature T "Temperature of antifreeze-water mixture"; - input Modelica.SIunits.MassFraction X_a "Mass fraction of antifreeze"; - output Modelica.SIunits.ThermalConductivity lambda "Thermal conductivity of antifreeze-water mixture"; + input Modelica.Units.SI.Temperature T + "Temperature of antifreeze-water mixture"; + input Modelica.Units.SI.MassFraction X_a "Mass fraction of antifreeze"; + output Modelica.Units.SI.ThermalConductivity lambda + "Thermal conductivity of antifreeze-water mixture"; algorithm lambda :=polynomialProperty( X_a, @@ -374,95 +379,96 @@ AixLib.Media.Antifreeze.EthyleneGlycolWater. annotation ( Documentation(info=" -

                                        -Thermal conductivity of antifreeze-water mixture at specified mass fraction and -temperature, based on Melinder (2010). -

                                        -

                                        References

                                        -

                                        -Melinder, Åke. 2010. Properties of Secondary Working Fluids (Secondary -Refrigerants or Coolants, Heat Transfer Fluids) for Indirect Systems. Paris: -IIR/IIF. -

                                        -", revisions=" - -")); +

                                        + Thermal conductivity of antifreeze-water mixture at specified mass fraction and + temperature, based on Melinder (2010). +

                                        +

                                        References

                                        +

                                        + Melinder, Åke. 2010. Properties of Secondary Working Fluids (Secondary + Refrigerants or Coolants, Heat Transfer Fluids) for Indirect Systems. Paris: + IIR/IIF. +

                                        + ", revisions=" + + ")); end thermalConductivity_TX_a; annotation(preferredView="info", Documentation(info=" -

                                        -This medium package models ethylene glycol - water mixtures. -

                                        -

                                        -The mass density, specific heat capacity, thermal conductivity and viscosity -are assumed constant and evaluated at a set temperature and mass fraction of -ethylene glycol within the mixture. The dependence of the four properties -are shown on the figure below. -

                                        -

                                        - -

                                        -

                                        -The accuracy of the thermophysical properties is dependent on the temperature -variations encountered during simulations. -The figure below shows the relative error of the the four properties over a -10 °C range around the temperature used to evaluate the constant -properties. The maximum errors are 0.8 % for mass density, 2.7 % -for specific heat capacity, 3.2 % for thermal conductivity and 160 -% for dynamic viscosity. -

                                        -

                                        - -

                                        -

                                        -The figure below shows the relative error of the the four properties over a -20 °C range around the temperature used to evaluate the constant -proepties. The maximum errors are 1.5 % for mass density, 5.3 % -for specific heat capacity, 5.9 % for thermal conductivity and 500 -% for dynamic viscosity. -

                                        -

                                        - -

                                        -

                                        -The enthalpy is computed using the convention that h=0 -if T=0 °C. -

                                        -

                                        Limitations

                                        -

                                        -Density, specific heat capacity, thermal conductivity and viscosity are constant. -The ethylene glycol/water mixture is modeled as an incompressible liquid. -There are no phase changes. The medium is limited to temperatures below -100 °C and mass fractions below 0.60. -As is the case for AixLib.Media.Water, -this medium package should not be used if -the simulation relies on the dynamic viscosity. -

                                        -

                                        Typical use and important parameters

                                        -

                                        -The temperature and mass fraction must be specified for the evaluation of the -constant thermophysical properties. A typical use of the package is (e.g. for -a temperature of 20 °C and a mass fraction of 0.40): -

                                        -

                                        -Medium = AixLib.Media.Antifreeze.EthyleneGlycolWater(property_T=293.15, X_a=0.40) -

                                        -", revisions=" -
                                          -
                                        • -August 05, 2020, by Wen HU:
                                          -First implementation. -
                                        • -
                                        -")); +

                                        + This medium package models ethylene glycol - water mixtures. +

                                        +

                                        + The mass density, specific heat capacity, thermal conductivity and viscosity + are assumed constant and evaluated at a set temperature and mass fraction of + ethylene glycol within the mixture. The dependence of the four properties + are shown on the figure below. +

                                        +

                                        + \"Relative +

                                        +

                                        + The accuracy of the thermophysical properties is dependent on the temperature + variations encountered during simulations. + The figure below shows the relative error of the the four properties over a + 10 °C range around the temperature used to evaluate the constant + properties. The maximum errors are 0.8 % for mass density, 2.7 % + for specific heat capacity, 3.2 % for thermal conductivity and 160 + % for dynamic viscosity. +

                                        +

                                        + \"Relative +

                                        +

                                        + The figure below shows the relative error of the the four properties over a + 20 °C range around the temperature used to evaluate the constant + proepties. The maximum errors are 1.5 % for mass density, 5.3 % + for specific heat capacity, 5.9 % for thermal conductivity and 500 + % for dynamic viscosity. +

                                        +

                                        + \"Relative +

                                        +

                                        + The enthalpy is computed using the convention that h=0 + if T=0 °C. +

                                        +

                                        Limitations

                                        +

                                        + Density, specific heat capacity, thermal conductivity and viscosity are constant. + The ethylene glycol/water mixture is modeled as an incompressible liquid. + There are no phase changes. The medium is limited to temperatures below + 100 °C and mass fractions below 0.60. + As is the case for AixLib.Media.Water, + this medium package should not be used if + the simulation relies on the dynamic viscosity. +

                                        +

                                        Typical use and important parameters

                                        +

                                        + The temperature and mass fraction must be specified for the evaluation of the + constant thermophysical properties. A typical use of the package is (e.g. for + a temperature of 20 °C and a mass fraction of 0.40): +

                                        +

                                        + Medium = AixLib.Media.Antifreeze.EthyleneGlycolWater(property_T=293.15, X_a=0.40) +

                                        + ",revisions=" +
                                          +
                                        • + August 05, 2020, by Wen HU:
                                          + First implementation. +
                                        • +
                                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end EthyleneGlycolWater; diff --git a/AixLib/Media/Antifreeze/PropyleneGlycolWater.mo b/AixLib/Media/Antifreeze/PropyleneGlycolWater.mo index 7d19ac2f4c..3eb87344e9 100644 --- a/AixLib/Media/Antifreeze/PropyleneGlycolWater.mo +++ b/AixLib/Media/Antifreeze/PropyleneGlycolWater.mo @@ -2,20 +2,19 @@ within AixLib.Media.Antifreeze; package PropyleneGlycolWater "Package with model for propylene glycol - water with constant properties" extends Modelica.Media.Interfaces.PartialSimpleMedium( - mediumName="PropyleneGlycolWater(X_a = " - + String(X_a) + ", property_T = " - + String(property_T) + ")", - final cp_const=specificHeatCapacityCp_TX_a(T = property_T, X_a = X_a), + mediumName="PropyleneGlycolWater(X_a = " + String(X_a) + ", property_T = " + + String(property_T) + ")", + final cp_const=specificHeatCapacityCp_TX_a(T=property_T, X_a=X_a), final cv_const=cp_const, - final d_const=density_TX_a(T = property_T, X_a = X_a), - final eta_const=dynamicViscosity_TX_a(T = property_T, X_a = X_a), - final lambda_const=thermalConductivity_TX_a(T = property_T, X_a = X_a), + final d_const=density_TX_a(T=property_T, X_a=X_a), + final eta_const=dynamicViscosity_TX_a(T=property_T, X_a=X_a), + final lambda_const=thermalConductivity_TX_a(T=property_T, X_a=X_a), a_const=1484, - final T_min=fusionTemperature_TX_a(T = property_T, X_a = X_a), - T_max=Modelica.SIunits.Conversions.from_degC(100), + final T_min=fusionTemperature_TX_a(T=property_T, X_a=X_a), + T_max=Modelica.Units.Conversions.from_degC(100), T0=273.15, - MM_const=(X_a/simplePropyleneGlycolWaterConstants[1].molarMass + (1 - - X_a)/0.018015268)^(-1), + MM_const=(X_a/simplePropyleneGlycolWaterConstants[1].molarMass + (1 - X_a)/ + 0.018015268)^(-1), fluidConstants=simplePropyleneGlycolWaterConstants, p_default=300000, reference_p=300000, @@ -25,9 +24,9 @@ package PropyleneGlycolWater Temperature(start=T_default), Density(start=d_const)); - constant Modelica.SIunits.Temperature property_T + constant Modelica.Units.SI.Temperature property_T "Temperature for evaluation of constant fluid properties"; - constant Modelica.SIunits.MassFraction X_a + constant Modelica.Units.SI.MassFraction X_a "Mass fraction of propylene glycol in water"; redeclare model BaseProperties "Base properties" @@ -39,14 +38,14 @@ package PropyleneGlycolWater InputMassFraction[nXi] Xi=fill(0, 0) "Structurally independent mass fractions"; InputSpecificEnthalpy h "Specific enthalpy of medium"; - Modelica.SIunits.SpecificInternalEnergy u + Modelica.Units.SI.SpecificInternalEnergy u "Specific internal energy of medium"; - Modelica.SIunits.Density d=d_const "Density of medium"; - Modelica.SIunits.MassFraction[nX] X={1} + Modelica.Units.SI.Density d=d_const "Density of medium"; + Modelica.Units.SI.MassFraction[nX] X={1} "Mass fractions (= (component mass)/total mass m_i/m)"; - final Modelica.SIunits.SpecificHeatCapacity R=0 + final Modelica.Units.SI.SpecificHeatCapacity R_s=0 "Gas constant (of mixture if applicable)"; - final Modelica.SIunits.MolarMass MM=MM_const + final Modelica.Units.SI.MolarMass MM=MM_const "Molar mass (of mixture or single fluid)"; ThermodynamicState state "Thermodynamic state record for optional functions"; @@ -55,37 +54,35 @@ package PropyleneGlycolWater annotation(Evaluate=true, Dialog(tab="Advanced")); final parameter Boolean standardOrderComponents=true "If true, and reducedX = true, the last element of X will be computed from the other ones"; - Modelica.SIunits.Conversions.NonSIunits.Temperature_degC T_degC= - Modelica.SIunits.Conversions.to_degC(T) - "Temperature of medium in [degC]"; - Modelica.SIunits.Conversions.NonSIunits.Pressure_bar p_bar= - Modelica.SIunits.Conversions.to_bar(p) + Modelica.Units.NonSI.Temperature_degC T_degC= + Modelica.Units.Conversions.to_degC(T) "Temperature of medium in [degC]"; + Modelica.Units.NonSI.Pressure_bar p_bar=Modelica.Units.Conversions.to_bar(p) "Absolute pressure of medium in [bar]"; // Local connector definition, used for equation balancing check - connector InputAbsolutePressure = input Modelica.SIunits.AbsolutePressure + connector InputAbsolutePressure = input Modelica.Units.SI.AbsolutePressure "Pressure as input signal connector"; - connector InputSpecificEnthalpy = input Modelica.SIunits.SpecificEnthalpy + connector InputSpecificEnthalpy = input Modelica.Units.SI.SpecificEnthalpy "Specific enthalpy as input signal connector"; - connector InputMassFraction = input Modelica.SIunits.MassFraction + connector InputMassFraction = input Modelica.Units.SI.MassFraction "Mass fraction as input signal connector"; equation assert(T >= T_min, " -In " + getInstanceName() + ": Temperature T exceeded its minimum allowed value of " + String(T_min-273.15) + In " + getInstanceName() + ": Temperature T exceeded its minimum allowed value of " + String(T_min-273.15) + " degC (" + String(T_min) + " Kelvin) -as required from medium model \"" + mediumName + "\"."); + as required from medium model \""+ mediumName + "\"."); assert(T <= T_max, " -In " + getInstanceName() + ": Temperature T exceeded its maximum allowed value of " + String(T_max-273.15) + In " + getInstanceName() + ": Temperature T exceeded its maximum allowed value of " + String(T_max-273.15) + " degC (" + String(T_max) + " Kelvin) -as required from medium model \"" + mediumName + "\"."); + as required from medium model \""+ mediumName + "\"."); assert(X_a >= X_a_min, " -In " + getInstanceName() + ": Mass fraction x_a exceeded its minimum allowed value of " + String(X_a_min) + " -as required from medium model \"" + mediumName + "\"."); + In " + getInstanceName() + ": Mass fraction x_a exceeded its minimum allowed value of " + String(X_a_min) + " + as required from medium model \""+ mediumName + "\"."); assert(X_a <= X_a_max, " -In " + getInstanceName() + ": Mass fraction x_a exceeded its maximum allowed value of " + String(X_a_max) + " -as required from medium model \"" + mediumName + "\"."); + In " + getInstanceName() + ": Mass fraction x_a exceeded its maximum allowed value of " + String(X_a_max) + " + as required from medium model \""+ mediumName + "\"."); h = cp_const*(T-reference_T); u = h; @@ -93,23 +90,23 @@ as required from medium model \"" + mediumName + "\"."); state.p = p; annotation(Documentation(info=" -

                                        - This base properties model is identical to - - Modelica.Media.Water.ConstantPropertyLiquidWater, - except that the equation - u = cv_const*(T - reference_T) - has been replaced by u=h because - cp_const=cv_const. - Also, the model checks if the mass fraction of the mixture is within the - allowed limits. -

                                        -")); +

                                        + This base properties model is identical to + + Modelica.Media.Water.ConstantPropertyLiquidWater, + except that the equation + u = cv_const*(T - reference_T) + has been replaced by u=h because + cp_const=cv_const. + Also, the model checks if the mass fraction of the mixture is within the + allowed limits. +

                                        + ")); end BaseProperties; protected - constant Modelica.SIunits.MassFraction X_a_min=0. + constant Modelica.Units.SI.MassFraction X_a_min=0. "Minimum allowed mass fraction of propylene glycol in water"; - constant Modelica.SIunits.MassFraction X_a_max=0.6 + constant Modelica.Units.SI.MassFraction X_a_max=0.6 "Maximum allowed mass fraction of propylene glycol in water"; // Fluid constants based on pure Propylene Glycol @@ -122,10 +119,9 @@ protected each molarMass=0.07609); // Coefficients for evaluation of physical properties - constant AixLib.Media.Antifreeze.BaseClasses.PropertyCoefficients - proCoe( + constant AixLib.Media.Antifreeze.BaseClasses.PropertyCoefficients proCoe( X_a_ref=0.307031, - T_ref=Modelica.SIunits.Conversions.from_degC(32.7083), + T_ref=Modelica.Units.Conversions.from_degC(32.7083), nX_a=6, nT={4,4,4,3,2,1}, nTot=18, @@ -149,9 +145,10 @@ protected replaceable function density_TX_a "Evaluate density of antifreeze-water mixture" extends Modelica.Icons.Function; - input Modelica.SIunits.Temperature T "Temperature of antifreeze-water mixture"; - input Modelica.SIunits.MassFraction X_a "Mass fraction of antifreeze"; - output Modelica.SIunits.Density d "Density of antifreeze-water mixture"; + input Modelica.Units.SI.Temperature T + "Temperature of antifreeze-water mixture"; + input Modelica.Units.SI.MassFraction X_a "Mass fraction of antifreeze"; + output Modelica.Units.SI.Density d "Density of antifreeze-water mixture"; algorithm d :=polynomialProperty( X_a, @@ -159,37 +156,39 @@ protected proCoe.a_d) annotation ( Documentation(info=" -

                                        - Density of propylene antifreeze-water mixture at specified mass fraction - and temperature, based on Melinder (2010). -

                                        -

                                        References

                                        -

                                        - Melinder, Åke. 2010. Properties of Secondary Working Fluids (Secondary - Refrigerants or Coolants, Heat Transfer Fluids) for Indirect Systems. Paris: - IIR/IIF. -

                                        - ", +

                                        + Density of propylene antifreeze-water mixture at specified mass fraction + and temperature, based on Melinder (2010). +

                                        +

                                        References

                                        +

                                        + Melinder, Åke. 2010. Properties of Secondary Working Fluids (Secondary + Refrigerants or Coolants, Heat Transfer Fluids) for Indirect Systems. Paris: + IIR/IIF. +

                                        + ", revisions=" - - ")); + + ")); end density_TX_a; replaceable function dynamicViscosity_TX_a "Evaluate dynamic viscosity of antifreeze-water mixture" extends Modelica.Icons.Function; - input Modelica.SIunits.Temperature T "Temperature of antifreeze-water mixture"; - input Modelica.SIunits.MassFraction X_a "Mass fraction of antifreeze"; - output Modelica.SIunits.DynamicViscosity eta "Dynamic Viscosity of antifreeze-water mixture"; + input Modelica.Units.SI.Temperature T + "Temperature of antifreeze-water mixture"; + input Modelica.Units.SI.MassFraction X_a "Mass fraction of antifreeze"; + output Modelica.Units.SI.DynamicViscosity eta + "Dynamic Viscosity of antifreeze-water mixture"; algorithm eta :=1e-3*exp(polynomialProperty( X_a, @@ -198,64 +197,66 @@ protected annotation ( Documentation(info=" -

                                        -Dynamic viscosity of antifreeze-water mixture at specified mass fraction and -temperature, based on Melinder (2010). -

                                        -

                                        References

                                        -

                                        -Melinder, Åke. 2010. Properties of Secondary Working Fluids (Secondary -Refrigerants or Coolants, Heat Transfer Fluids) for Indirect Systems. Paris: -IIR/IIF. -

                                        -", revisions=" - -")); +

                                        + Dynamic viscosity of antifreeze-water mixture at specified mass fraction and + temperature, based on Melinder (2010). +

                                        +

                                        References

                                        +

                                        + Melinder, Åke. 2010. Properties of Secondary Working Fluids (Secondary + Refrigerants or Coolants, Heat Transfer Fluids) for Indirect Systems. Paris: + IIR/IIF. +

                                        + ", revisions=" + + ")); end dynamicViscosity_TX_a; replaceable function fusionTemperature_TX_a "Evaluate temperature of fusion of antifreeze-water mixture" extends Modelica.Icons.Function; - input Modelica.SIunits.Temperature T "Temperature of antifreeze-water mixture"; - input Modelica.SIunits.MassFraction X_a "Mass fraction of antifreeze"; - output Modelica.SIunits.Temperature Tf "Temperature of fusion of antifreeze-water mixture"; + input Modelica.Units.SI.Temperature T + "Temperature of antifreeze-water mixture"; + input Modelica.Units.SI.MassFraction X_a "Mass fraction of antifreeze"; + output Modelica.Units.SI.Temperature Tf + "Temperature of fusion of antifreeze-water mixture"; algorithm - Tf :=Modelica.SIunits.Conversions.from_degC(polynomialProperty( + Tf :=Modelica.Units.Conversions.from_degC(polynomialProperty( X_a, T, proCoe.a_Tf)); annotation ( Documentation(info=" -

                                        -Fusion temperature of antifreeze-water mixture at specified mass fraction and -temperature, based on Melinder (2010). -

                                        -

                                        References

                                        -

                                        -Melinder, Åke. 2010. Properties of Secondary Working Fluids (Secondary -Refrigerants or Coolants, Heat Transfer Fluids) for Indirect Systems. Paris: -IIR/IIF. -

                                        -", revisions=" - -")); +

                                        + Fusion temperature of antifreeze-water mixture at specified mass fraction and + temperature, based on Melinder (2010). +

                                        +

                                        References

                                        +

                                        + Melinder, Åke. 2010. Properties of Secondary Working Fluids (Secondary + Refrigerants or Coolants, Heat Transfer Fluids) for Indirect Systems. Paris: + IIR/IIF. +

                                        + ", revisions=" + + ")); end fusionTemperature_TX_a; replaceable function polynomialProperty @@ -286,49 +287,51 @@ AixLib.Media.Antifreeze.PropyleneGlycolWater. end for; annotation ( Documentation(info=" -

                                        -Evaluates a thermophysical property of a mixture, based on correlations proposed -by Melinder (2010). -

                                        -

                                        -The polynomial has the form -

                                        -

                                        -f = a1 (x-xm)0(y-ym)0 -+ a2 (x-xm)0(y-ym)1 -+ ... + -any[1] (x-xm)0(y-ym)ny[1]-1 -+ ... + -any[1])+1 (x-xm)1(y-ym)0 -+ ... + -any[1]+ny[2] (x-xm)1(y-ym)ny[2]-1 -+ ... -

                                        -

                                        References

                                        -

                                        -Melinder, Åke. 2010. Properties of Secondary Working Fluids (Secondary -Refrigerants or Coolants, Heat Transfer Fluids) for Indirect Systems. Paris: -IIR/IIF. -

                                        -", revisions=" -
                                          -
                                        • -March 16, 2018 by Massimo Cimmino:
                                          -First implementation. -This function is used models in - -AixLib.Media.Antifreeze. -
                                        • -
                                        -")); +

                                        + Evaluates a thermophysical property of a mixture, based on correlations proposed + by Melinder (2010). +

                                        +

                                        + The polynomial has the form +

                                        +

                                        + f = a1 (x-xm)0(y-ym)0 + + a2 (x-xm)0(y-ym)1 + + ... + + any[1] (x-xm)0(y-ym)ny[1]-1 + + ... + + any[1])+1 (x-xm)1(y-ym)0 + + ... + + any[1]+ny[2] (x-xm)1(y-ym)ny[2]-1 + + ... +

                                        +

                                        References

                                        +

                                        + Melinder, Åke. 2010. Properties of Secondary Working Fluids (Secondary + Refrigerants or Coolants, Heat Transfer Fluids) for Indirect Systems. Paris: + IIR/IIF. +

                                        + ", revisions=" +
                                          +
                                        • + March 16, 2018 by Massimo Cimmino:
                                          + First implementation. + This function is used models in + + AixLib.Media.Antifreeze. +
                                        • +
                                        + ")); end polynomialProperty; replaceable function specificHeatCapacityCp_TX_a "Evaluate specific heat capacity of antifreeze-water mixture" extends Modelica.Icons.Function; - input Modelica.SIunits.Temperature T "Temperature of antifreeze-water mixture"; - input Modelica.SIunits.MassFraction X_a "Mass fraction of antifreeze"; - output Modelica.SIunits.SpecificHeatCapacity cp "Specific heat capacity of antifreeze-water mixture"; + input Modelica.Units.SI.Temperature T + "Temperature of antifreeze-water mixture"; + input Modelica.Units.SI.MassFraction X_a "Mass fraction of antifreeze"; + output Modelica.Units.SI.SpecificHeatCapacity cp + "Specific heat capacity of antifreeze-water mixture"; algorithm cp :=polynomialProperty( X_a, @@ -337,35 +340,37 @@ AixLib.Media.Antifreeze. annotation ( Documentation(info=" -

                                        -Specific heat capacity of antifreeze-water mixture at specified mass fraction -and temperature, based on Melinder (2010). -

                                        -

                                        References

                                        -

                                        -Melinder, Åke. 2010. Properties of Secondary Working Fluids (Secondary -Refrigerants or Coolants, Heat Transfer Fluids) for Indirect Systems. Paris: -IIR/IIF. -

                                        -", revisions=" - -")); +

                                        + Specific heat capacity of antifreeze-water mixture at specified mass fraction + and temperature, based on Melinder (2010). +

                                        +

                                        References

                                        +

                                        + Melinder, Åke. 2010. Properties of Secondary Working Fluids (Secondary + Refrigerants or Coolants, Heat Transfer Fluids) for Indirect Systems. Paris: + IIR/IIF. +

                                        + ", revisions=" + + ")); end specificHeatCapacityCp_TX_a; replaceable function thermalConductivity_TX_a "Evaluate thermal conductivity of antifreeze-water mixture" extends Modelica.Icons.Function; - input Modelica.SIunits.Temperature T "Temperature of antifreeze-water mixture"; - input Modelica.SIunits.MassFraction X_a "Mass fraction of antifreeze"; - output Modelica.SIunits.ThermalConductivity lambda "Thermal conductivity of antifreeze-water mixture"; + input Modelica.Units.SI.Temperature T + "Temperature of antifreeze-water mixture"; + input Modelica.Units.SI.MassFraction X_a "Mass fraction of antifreeze"; + output Modelica.Units.SI.ThermalConductivity lambda + "Thermal conductivity of antifreeze-water mixture"; algorithm lambda :=polynomialProperty( X_a, @@ -374,102 +379,103 @@ AixLib.Media.Antifreeze.PropyleneGlycolWater. annotation ( Documentation(info=" -

                                        -Thermal conductivity of antifreeze-water mixture at specified mass fraction and -temperature, based on Melinder (2010). -

                                        -

                                        References

                                        -

                                        -Melinder, Åke. 2010. Properties of Secondary Working Fluids (Secondary -Refrigerants or Coolants, Heat Transfer Fluids) for Indirect Systems. Paris: -IIR/IIF. -

                                        -", revisions=" - -")); +

                                        + Thermal conductivity of antifreeze-water mixture at specified mass fraction and + temperature, based on Melinder (2010). +

                                        +

                                        References

                                        +

                                        + Melinder, Åke. 2010. Properties of Secondary Working Fluids (Secondary + Refrigerants or Coolants, Heat Transfer Fluids) for Indirect Systems. Paris: + IIR/IIF. +

                                        + ", revisions=" + + ")); end thermalConductivity_TX_a; annotation(preferredView="info", Documentation(info=" -

                                        -This medium package models propylene glycol - water mixtures. -

                                        -

                                        -The mass density, specific heat capacity, thermal conductivity and viscosity -are assumed constant and evaluated at a set temperature and mass fraction of -propylene glycol within the mixture. The dependence of the four properties -are shown on the figure below. -

                                        -

                                        - -

                                        -

                                        -The accuracy of the thermophysical properties is dependent on the temperature -variations encountered during simulations. -The figure below shows the relative error of the the four properties over a -10 °C range around the temperature used to evaluate the constant -properties. The maximum errors are 0.8 % for mass density, 1.5 % -for specific heat capacity, 3.2 % for thermal conductivity and 250 -% for dynamic viscosity. -

                                        -

                                        - -

                                        -

                                        -The figure below shows the relative error of the the four properties over a -20 °C range around the temperature used to evaluate the constant -proepties. The maximum errors are 1.6 % for mass density, 3.0 % -for specific heat capacity, 6.2 % for thermal conductivity and 950 -% for dynamic viscosity. -

                                        -

                                        - -

                                        -

                                        -The enthalpy is computed using the convention that h=0 -if T=0 °C. -

                                        -

                                        Limitations

                                        -

                                        -Density, specific heat capacity, thermal conductivity and viscosity are constant. -The propylene glycol/water mixture is modeled as an incompressible liquid. -There are no phase changes. The medium is limited to temperatures below -100 °C and mass fractions below 0.60. -As is the case for AixLib.Media.Water, -this medium package should not be used if -the simulation relies on the dynamic viscosity. -

                                        -

                                        Typical use and important parameters

                                        -

                                        -The temperature and mass fraction must be specified for the evaluation of the -constant thermophysical properties. A typical use of the package is (e.g. for -a temperature of 20 °C and a mass fraction of 0.40): -

                                        -

                                        -Medium = AixLib.Media.Antifreeze.PropyleneGlycolWater(property_T=293.15, X_a=0.40) -

                                        -", revisions=" -
                                          -
                                        • -October 26, 2018, by Filip Jorissen and Michael Wetter:
                                          -Now printing different messages if temperature or mass fraction is above or below its limit, -and adding instance name as JModelica does not print the full instance name in the assertion. -This is for -#1045. -
                                        • -
                                        • -March 16, 2018, by Massimo Cimmino:
                                          -First implementation. -
                                        • -
                                        -")); +

                                        + This medium package models propylene glycol - water mixtures. +

                                        +

                                        + The mass density, specific heat capacity, thermal conductivity and viscosity + are assumed constant and evaluated at a set temperature and mass fraction of + propylene glycol within the mixture. The dependence of the four properties + are shown on the figure below. +

                                        +

                                        + \"Relative +

                                        +

                                        + The accuracy of the thermophysical properties is dependent on the temperature + variations encountered during simulations. + The figure below shows the relative error of the the four properties over a + 10 °C range around the temperature used to evaluate the constant + properties. The maximum errors are 0.8 % for mass density, 1.5 % + for specific heat capacity, 3.2 % for thermal conductivity and 250 + % for dynamic viscosity. +

                                        +

                                        + \"Relative +

                                        +

                                        + The figure below shows the relative error of the the four properties over a + 20 °C range around the temperature used to evaluate the constant + proepties. The maximum errors are 1.6 % for mass density, 3.0 % + for specific heat capacity, 6.2 % for thermal conductivity and 950 + % for dynamic viscosity. +

                                        +

                                        + \"Relative +

                                        +

                                        + The enthalpy is computed using the convention that h=0 + if T=0 °C. +

                                        +

                                        Limitations

                                        +

                                        + Density, specific heat capacity, thermal conductivity and viscosity are constant. + The propylene glycol/water mixture is modeled as an incompressible liquid. + There are no phase changes. The medium is limited to temperatures below + 100 °C and mass fractions below 0.60. + As is the case for AixLib.Media.Water, + this medium package should not be used if + the simulation relies on the dynamic viscosity. +

                                        +

                                        Typical use and important parameters

                                        +

                                        + The temperature and mass fraction must be specified for the evaluation of the + constant thermophysical properties. A typical use of the package is (e.g. for + a temperature of 20 °C and a mass fraction of 0.40): +

                                        +

                                        + Medium = AixLib.Media.Antifreeze.PropyleneGlycolWater(property_T=293.15, X_a=0.40) +

                                        + ",revisions=" +
                                          +
                                        • + October 26, 2018, by Filip Jorissen and Michael Wetter:
                                          + Now printing different messages if temperature or mass fraction is above or below its limit, + and adding instance name as JModelica does not print the full instance name in the assertion. + This is for + #1045. +
                                        • +
                                        • + March 16, 2018, by Massimo Cimmino:
                                          + First implementation. +
                                        • +
                                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end PropyleneGlycolWater; diff --git a/AixLib/Media/Antifreeze/Validation/BaseClasses/EthyleneGlycolWater.mo b/AixLib/Media/Antifreeze/Validation/BaseClasses/EthyleneGlycolWater.mo index da566a6664..14b7791bce 100644 --- a/AixLib/Media/Antifreeze/Validation/BaseClasses/EthyleneGlycolWater.mo +++ b/AixLib/Media/Antifreeze/Validation/BaseClasses/EthyleneGlycolWater.mo @@ -6,159 +6,169 @@ package EthyleneGlycolWater replaceable function testDensity_TX_a "Evaluate density of antifreeze-water mixture" extends Modelica.Icons.Function; - input Modelica.SIunits.Temperature T "Temperature of antifreeze-water mixture"; - input Modelica.SIunits.MassFraction X_a "Mass fraction of antifreeze"; - output Modelica.SIunits.Density d "Density of antifreeze-water mixture"; + input Modelica.Units.SI.Temperature T + "Temperature of antifreeze-water mixture"; + input Modelica.Units.SI.MassFraction X_a "Mass fraction of antifreeze"; + output Modelica.Units.SI.Density d "Density of antifreeze-water mixture"; algorithm d := density_TX_a(T = T, X_a = X_a); annotation (Documentation(info=" -

                                        -Function that makes - -AixLib.Media.Antifreeze.EthyleneGlycolWater.density_TX_a -publicly accessible as needed for the validation model - -AixLib.Media.Antifreeze.Validation.BaseClasses.FluidProperties. -

                                        -", revisions=" -
                                          -
                                        • -May 14, 2018 by Michael Wetter:
                                          -First implementation. -
                                        • -
                                        -")); +

                                        + Function that makes + + AixLib.Media.Antifreeze.EthyleneGlycolWater.density_TX_a + publicly accessible as needed for the validation model + + AixLib.Media.Antifreeze.Validation.BaseClasses.FluidProperties. +

                                        + ",revisions=" +
                                          +
                                        • + May 14, 2018 by Michael Wetter:
                                          + First implementation. +
                                        • +
                                        + ")); end testDensity_TX_a; function testDynamicViscosity_TX_a "Evaluate dynamic viscosity of antifreeze-water mixture" extends Modelica.Icons.Function; - input Modelica.SIunits.Temperature T "Temperature of antifreeze-water mixture"; - input Modelica.SIunits.MassFraction X_a "Mass fraction of antifreeze"; - output Modelica.SIunits.DynamicViscosity eta "Dynamic Viscosity of antifreeze-water mixture"; + input Modelica.Units.SI.Temperature T + "Temperature of antifreeze-water mixture"; + input Modelica.Units.SI.MassFraction X_a "Mass fraction of antifreeze"; + output Modelica.Units.SI.DynamicViscosity eta + "Dynamic Viscosity of antifreeze-water mixture"; algorithm eta := dynamicViscosity_TX_a(T = T, X_a = X_a); annotation (Documentation(info=" -

                                        -Function that makes - -AixLib.Media.Antifreeze.EthyleneGlycolWater.dynamicViscosity_TX_a -publicly accessible as needed for the validation model - -AixLib.Media.Antifreeze.Validation.BaseClasses.FluidProperties. -

                                        -", revisions=" -
                                          -
                                        • -May 14, 2018 by Michael Wetter:
                                          -First implementation. -
                                        • -
                                        -")); +

                                        + Function that makes + + AixLib.Media.Antifreeze.EthyleneGlycolWater.dynamicViscosity_TX_a + publicly accessible as needed for the validation model + + AixLib.Media.Antifreeze.Validation.BaseClasses.FluidProperties. +

                                        + ",revisions=" +
                                          +
                                        • + May 14, 2018 by Michael Wetter:
                                          + First implementation. +
                                        • +
                                        + ")); end testDynamicViscosity_TX_a; function testFusionTemperature_TX_a "Evaluate temperature of fusion of antifreeze-water mixture" extends Modelica.Icons.Function; - input Modelica.SIunits.Temperature T "Temperature of antifreeze-water mixture"; - input Modelica.SIunits.MassFraction X_a "Mass fraction of antifreeze"; - output Modelica.SIunits.Temperature Tf "Temperature of fusion of antifreeze-water mixture"; + input Modelica.Units.SI.Temperature T + "Temperature of antifreeze-water mixture"; + input Modelica.Units.SI.MassFraction X_a "Mass fraction of antifreeze"; + output Modelica.Units.SI.Temperature Tf + "Temperature of fusion of antifreeze-water mixture"; algorithm Tf := fusionTemperature_TX_a(T = T, X_a = X_a); annotation (Documentation(info=" -

                                        -Function that makes - -AixLib.Media.Antifreeze.EthyleneGlycolWater.fusionTemperature_TX_a -publicly accessible as needed for the validation model - -AixLib.Media.Antifreeze.Validation.BaseClasses.FluidProperties. -

                                        -", revisions=" -
                                          -
                                        • -May 14, 2018 by Michael Wetter:
                                          -First implementation. -
                                        • -
                                        -")); +

                                        + Function that makes + + AixLib.Media.Antifreeze.EthyleneGlycolWater.fusionTemperature_TX_a + publicly accessible as needed for the validation model + + AixLib.Media.Antifreeze.Validation.BaseClasses.FluidProperties. +

                                        + ",revisions=" +
                                          +
                                        • + May 14, 2018 by Michael Wetter:
                                          + First implementation. +
                                        • +
                                        + ")); end testFusionTemperature_TX_a; function testSpecificHeatCapacityCp_TX_a "Evaluate specific heat capacity of antifreeze-water mixture" extends Modelica.Icons.Function; - input Modelica.SIunits.Temperature T "Temperature of antifreeze-water mixture"; - input Modelica.SIunits.MassFraction X_a "Mass fraction of antifreeze"; - output Modelica.SIunits.SpecificHeatCapacity cp "Specific heat capacity of antifreeze-water mixture"; + input Modelica.Units.SI.Temperature T + "Temperature of antifreeze-water mixture"; + input Modelica.Units.SI.MassFraction X_a "Mass fraction of antifreeze"; + output Modelica.Units.SI.SpecificHeatCapacity cp + "Specific heat capacity of antifreeze-water mixture"; algorithm cp := specificHeatCapacityCp_TX_a(T = T, X_a = X_a); annotation (Documentation(info=" -

                                        -Function that makes - -AixLib.Media.Antifreeze.EthyleneGlycolWater.specificHeatCapacityCp_TX_a -publicly accessible as needed for the validation model - -AixLib.Media.Antifreeze.Validation.BaseClasses.FluidProperties. -

                                        -", revisions=" -
                                          -
                                        • -May 14, 2018 by Michael Wetter:
                                          -First implementation. -
                                        • -
                                        -")); +

                                        + Function that makes + + AixLib.Media.Antifreeze.EthyleneGlycolWater.specificHeatCapacityCp_TX_a + publicly accessible as needed for the validation model + + AixLib.Media.Antifreeze.Validation.BaseClasses.FluidProperties. +

                                        + ",revisions=" +
                                          +
                                        • + May 14, 2018 by Michael Wetter:
                                          + First implementation. +
                                        • +
                                        + ")); end testSpecificHeatCapacityCp_TX_a; function testThermalConductivity_TX_a "Evaluate thermal conductivity of antifreeze-water mixture" extends Modelica.Icons.Function; - input Modelica.SIunits.Temperature T "Temperature of antifreeze-water mixture"; - input Modelica.SIunits.MassFraction X_a "Mass fraction of antifreeze"; - output Modelica.SIunits.ThermalConductivity lambda "Thermal conductivity of antifreeze-water mixture"; + input Modelica.Units.SI.Temperature T + "Temperature of antifreeze-water mixture"; + input Modelica.Units.SI.MassFraction X_a "Mass fraction of antifreeze"; + output Modelica.Units.SI.ThermalConductivity lambda + "Thermal conductivity of antifreeze-water mixture"; algorithm lambda := thermalConductivity_TX_a(T = T, X_a = X_a); annotation (Documentation(info=" -

                                        -Function that makes - -AixLib.Media.Antifreeze.EthyleneGlycolWater.thermalConductivity_TX_a -publicly accessible as needed for the validation model - -AixLib.Media.Antifreeze.Validation.BaseClasses.FluidProperties. -

                                        -", revisions=" -
                                          -
                                        • -May 14, 2018 by Michael Wetter:
                                          -First implementation. -
                                        • -
                                        -")); +

                                        + Function that makes + + AixLib.Media.Antifreeze.EthyleneGlycolWater.thermalConductivity_TX_a + publicly accessible as needed for the validation model + + AixLib.Media.Antifreeze.Validation.BaseClasses.FluidProperties. +

                                        + ",revisions=" +
                                          +
                                        • + May 14, 2018 by Michael Wetter:
                                          + First implementation. +
                                        • +
                                        + ")); end testThermalConductivity_TX_a; annotation (Documentation(info=" -

                                        -Media implementation that extends - -AixLib.Media.Antifreeze -in order to make its thermophysical property functions -publicly accessible as needed for the validation model - -AixLib.Media.Antifreeze.Validation.BaseClasses.FluidProperties. -

                                        -", +

                                        + Media implementation that extends + + AixLib.Media.Antifreeze + in order to make its thermophysical property functions + publicly accessible as needed for the validation model + + AixLib.Media.Antifreeze.Validation.BaseClasses.FluidProperties. +

                                        + ", revisions=" -
                                          -
                                        • -May 14, 2018 by Michael Wetter:
                                          -First implementation. -
                                        • -
                                        -")); +
                                          +
                                        • + May 14, 2018 by Michael Wetter:
                                          + First implementation. +
                                        • +
                                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end EthyleneGlycolWater; diff --git a/AixLib/Media/Antifreeze/Validation/BaseClasses/FluidProperties.mo b/AixLib/Media/Antifreeze/Validation/BaseClasses/FluidProperties.mo index 81265d27df..f04728604f 100644 --- a/AixLib/Media/Antifreeze/Validation/BaseClasses/FluidProperties.mo +++ b/AixLib/Media/Antifreeze/Validation/BaseClasses/FluidProperties.mo @@ -8,30 +8,32 @@ partial model FluidProperties parameter Integer nX_a "Number of mass fractions to evaluate fluid properties"; - parameter Modelica.SIunits.MassFraction X_a[nX_a] "Mass fraction of additive"; - parameter Modelica.SIunits.Temperature T_min + parameter Modelica.Units.SI.MassFraction X_a[nX_a] + "Mass fraction of additive"; + parameter Modelica.Units.SI.Temperature T_min "Minimum temperature of mixture"; - parameter Modelica.SIunits.Temperature T_max + parameter Modelica.Units.SI.Temperature T_max "Maximum temperature of mixture"; - parameter Modelica.SIunits.Temperature reference_T = 293.15 + parameter Modelica.Units.SI.Temperature reference_T=293.15 "Reference temperature"; - Modelica.SIunits.Temperature Tf[nX_a] "Fluid temperature"; - Modelica.SIunits.Density d[nX_a] "Density of fluid mixture"; - Modelica.SIunits.SpecificHeatCapacity cp[nX_a] "Specific heat capacity of fluid mixture"; - Modelica.SIunits.ThermalConductivity lambda[nX_a] "Density of fluid mixture"; - Modelica.SIunits.DynamicViscosity eta[nX_a] "Dynamic viscosity of fluid mixture"; - Modelica.SIunits.Temperature T "Temperature of fluid mixture"; - Modelica.SIunits.Conversions.NonSIunits.Temperature_degC T_degC "Celsius temperature"; + Modelica.Units.SI.Temperature Tf[nX_a] "Fluid temperature"; + Modelica.Units.SI.Density d[nX_a] "Density of fluid mixture"; + Modelica.Units.SI.SpecificHeatCapacity cp[nX_a] + "Specific heat capacity of fluid mixture"; + Modelica.Units.SI.ThermalConductivity lambda[nX_a] "Density of fluid mixture"; + Modelica.Units.SI.DynamicViscosity eta[nX_a] + "Dynamic viscosity of fluid mixture"; + Modelica.Units.SI.Temperature T "Temperature of fluid mixture"; + Modelica.Units.NonSI.Temperature_degC T_degC "Celsius temperature"; protected - parameter Modelica.SIunits.Time dt = 1 - "Simulation length"; + parameter Modelica.Units.SI.Time dt=1 "Simulation length"; parameter Real convT(unit="K/s") = (T_max-T_min)/dt "Rate of temperature change"; equation T = T_min + convT*time; - T_degC = Modelica.SIunits.Conversions.to_degC(T); + T_degC =Modelica.Units.Conversions.to_degC(T); for i in 1:nX_a loop Tf[i] =Medium.testFusionTemperature_TX_a(T=T, X_a=X_a[i]); d[i] =if T >= Tf[i] then Medium.testDensity_TX_a(T=T, X_a=X_a[i]) else 0.; @@ -44,23 +46,24 @@ equation annotation ( Documentation(info=" -

                                        -This example checks the implementation of functions that evaluate the -temperature- and concentration-dependent thermophysical properties of the -medium. -

                                        -

                                        -Thermophysical properties (density, specific heat capacity, thermal conductivity -and dynamic viscosity) are shown as 0 if the temperature is below the fusion -temperature. -

                                        -", +

                                        + This example checks the implementation of functions that evaluate the + temperature- and concentration-dependent thermophysical properties of the + medium. +

                                        +

                                        + Thermophysical properties (density, specific heat capacity, thermal conductivity + and dynamic viscosity) are shown as 0 if the temperature is below the fusion + temperature. +

                                        + ", revisions=" -
                                          -
                                        • -March 14, 2018, by Massimo Cimmino:
                                          -First implementation. -
                                        • -
                                        -")); +
                                          +
                                        • + March 14, 2018, by Massimo Cimmino:
                                          + First implementation. +
                                        • +
                                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end FluidProperties; diff --git a/AixLib/Media/Antifreeze/Validation/BaseClasses/PropyleneGlycolWater.mo b/AixLib/Media/Antifreeze/Validation/BaseClasses/PropyleneGlycolWater.mo index 57900af52e..e59e4629f2 100644 --- a/AixLib/Media/Antifreeze/Validation/BaseClasses/PropyleneGlycolWater.mo +++ b/AixLib/Media/Antifreeze/Validation/BaseClasses/PropyleneGlycolWater.mo @@ -6,159 +6,169 @@ package PropyleneGlycolWater replaceable function testDensity_TX_a "Evaluate density of antifreeze-water mixture" extends Modelica.Icons.Function; - input Modelica.SIunits.Temperature T "Temperature of antifreeze-water mixture"; - input Modelica.SIunits.MassFraction X_a "Mass fraction of antifreeze"; - output Modelica.SIunits.Density d "Density of antifreeze-water mixture"; + input Modelica.Units.SI.Temperature T + "Temperature of antifreeze-water mixture"; + input Modelica.Units.SI.MassFraction X_a "Mass fraction of antifreeze"; + output Modelica.Units.SI.Density d "Density of antifreeze-water mixture"; algorithm d := density_TX_a(T = T, X_a = X_a); annotation (Documentation(info=" -

                                        -Function that makes - -AixLib.Media.Antifreeze.PropyleneGlycolWater.density_TX_a -publicly accessible as needed for the validation model - -AixLib.Media.Antifreeze.Validation.BaseClasses.FluidProperties. -

                                        -", revisions=" -
                                          -
                                        • -May 14, 2018 by Michael Wetter:
                                          -First implementation. -
                                        • -
                                        -")); +

                                        + Function that makes + + AixLib.Media.Antifreeze.PropyleneGlycolWater.density_TX_a + publicly accessible as needed for the validation model + + AixLib.Media.Antifreeze.Validation.BaseClasses.FluidProperties. +

                                        + ",revisions=" +
                                          +
                                        • + May 14, 2018 by Michael Wetter:
                                          + First implementation. +
                                        • +
                                        + ")); end testDensity_TX_a; function testDynamicViscosity_TX_a "Evaluate dynamic viscosity of antifreeze-water mixture" extends Modelica.Icons.Function; - input Modelica.SIunits.Temperature T "Temperature of antifreeze-water mixture"; - input Modelica.SIunits.MassFraction X_a "Mass fraction of antifreeze"; - output Modelica.SIunits.DynamicViscosity eta "Dynamic Viscosity of antifreeze-water mixture"; + input Modelica.Units.SI.Temperature T + "Temperature of antifreeze-water mixture"; + input Modelica.Units.SI.MassFraction X_a "Mass fraction of antifreeze"; + output Modelica.Units.SI.DynamicViscosity eta + "Dynamic Viscosity of antifreeze-water mixture"; algorithm eta := dynamicViscosity_TX_a(T = T, X_a = X_a); annotation (Documentation(info=" -

                                        -Function that makes - -AixLib.Media.Antifreeze.PropyleneGlycolWater.dynamicViscosity_TX_a -publicly accessible as needed for the validation model - -AixLib.Media.Antifreeze.Validation.BaseClasses.FluidProperties. -

                                        -", revisions=" -
                                          -
                                        • -May 14, 2018 by Michael Wetter:
                                          -First implementation. -
                                        • -
                                        -")); +

                                        + Function that makes + + AixLib.Media.Antifreeze.PropyleneGlycolWater.dynamicViscosity_TX_a + publicly accessible as needed for the validation model + + AixLib.Media.Antifreeze.Validation.BaseClasses.FluidProperties. +

                                        + ",revisions=" +
                                          +
                                        • + May 14, 2018 by Michael Wetter:
                                          + First implementation. +
                                        • +
                                        + ")); end testDynamicViscosity_TX_a; function testFusionTemperature_TX_a "Evaluate temperature of fusion of antifreeze-water mixture" extends Modelica.Icons.Function; - input Modelica.SIunits.Temperature T "Temperature of antifreeze-water mixture"; - input Modelica.SIunits.MassFraction X_a "Mass fraction of antifreeze"; - output Modelica.SIunits.Temperature Tf "Temperature of fusion of antifreeze-water mixture"; + input Modelica.Units.SI.Temperature T + "Temperature of antifreeze-water mixture"; + input Modelica.Units.SI.MassFraction X_a "Mass fraction of antifreeze"; + output Modelica.Units.SI.Temperature Tf + "Temperature of fusion of antifreeze-water mixture"; algorithm Tf := fusionTemperature_TX_a(T = T, X_a = X_a); annotation (Documentation(info=" -

                                        -Function that makes - -AixLib.Media.Antifreeze.PropyleneGlycolWater.fusionTemperature_TX_a -publicly accessible as needed for the validation model - -AixLib.Media.Antifreeze.Validation.BaseClasses.FluidProperties. -

                                        -", revisions=" -
                                          -
                                        • -May 14, 2018 by Michael Wetter:
                                          -First implementation. -
                                        • -
                                        -")); +

                                        + Function that makes + + AixLib.Media.Antifreeze.PropyleneGlycolWater.fusionTemperature_TX_a + publicly accessible as needed for the validation model + + AixLib.Media.Antifreeze.Validation.BaseClasses.FluidProperties. +

                                        + ",revisions=" +
                                          +
                                        • + May 14, 2018 by Michael Wetter:
                                          + First implementation. +
                                        • +
                                        + ")); end testFusionTemperature_TX_a; function testSpecificHeatCapacityCp_TX_a "Evaluate specific heat capacity of antifreeze-water mixture" extends Modelica.Icons.Function; - input Modelica.SIunits.Temperature T "Temperature of antifreeze-water mixture"; - input Modelica.SIunits.MassFraction X_a "Mass fraction of antifreeze"; - output Modelica.SIunits.SpecificHeatCapacity cp "Specific heat capacity of antifreeze-water mixture"; + input Modelica.Units.SI.Temperature T + "Temperature of antifreeze-water mixture"; + input Modelica.Units.SI.MassFraction X_a "Mass fraction of antifreeze"; + output Modelica.Units.SI.SpecificHeatCapacity cp + "Specific heat capacity of antifreeze-water mixture"; algorithm cp := specificHeatCapacityCp_TX_a(T = T, X_a = X_a); annotation (Documentation(info=" -

                                        -Function that makes - -AixLib.Media.Antifreeze.PropyleneGlycolWater.specificHeatCapacityCp_TX_a -publicly accessible as needed for the validation model - -AixLib.Media.Antifreeze.Validation.BaseClasses.FluidProperties. -

                                        -", revisions=" -
                                          -
                                        • -May 14, 2018 by Michael Wetter:
                                          -First implementation. -
                                        • -
                                        -")); +

                                        + Function that makes + + AixLib.Media.Antifreeze.PropyleneGlycolWater.specificHeatCapacityCp_TX_a + publicly accessible as needed for the validation model + + AixLib.Media.Antifreeze.Validation.BaseClasses.FluidProperties. +

                                        + ",revisions=" +
                                          +
                                        • + May 14, 2018 by Michael Wetter:
                                          + First implementation. +
                                        • +
                                        + ")); end testSpecificHeatCapacityCp_TX_a; function testThermalConductivity_TX_a "Evaluate thermal conductivity of antifreeze-water mixture" extends Modelica.Icons.Function; - input Modelica.SIunits.Temperature T "Temperature of antifreeze-water mixture"; - input Modelica.SIunits.MassFraction X_a "Mass fraction of antifreeze"; - output Modelica.SIunits.ThermalConductivity lambda "Thermal conductivity of antifreeze-water mixture"; + input Modelica.Units.SI.Temperature T + "Temperature of antifreeze-water mixture"; + input Modelica.Units.SI.MassFraction X_a "Mass fraction of antifreeze"; + output Modelica.Units.SI.ThermalConductivity lambda + "Thermal conductivity of antifreeze-water mixture"; algorithm lambda := thermalConductivity_TX_a(T = T, X_a = X_a); annotation (Documentation(info=" -

                                        -Function that makes - -AixLib.Media.Antifreeze.PropyleneGlycolWater.thermalConductivity_TX_a -publicly accessible as needed for the validation model - -AixLib.Media.Antifreeze.Validation.BaseClasses.FluidProperties. -

                                        -", revisions=" -
                                          -
                                        • -May 14, 2018 by Michael Wetter:
                                          -First implementation. -
                                        • -
                                        -")); +

                                        + Function that makes + + AixLib.Media.Antifreeze.PropyleneGlycolWater.thermalConductivity_TX_a + publicly accessible as needed for the validation model + + AixLib.Media.Antifreeze.Validation.BaseClasses.FluidProperties. +

                                        + ",revisions=" +
                                          +
                                        • + May 14, 2018 by Michael Wetter:
                                          + First implementation. +
                                        • +
                                        + ")); end testThermalConductivity_TX_a; annotation (Documentation(info=" -

                                        -Media implementation that extends - -AixLib.Media.Antifreeze -in order to make its thermophysical property functions -publicly accessible as needed for the validation model - -AixLib.Media.Antifreeze.Validation.BaseClasses.FluidProperties. -

                                        -", +

                                        + Media implementation that extends + + AixLib.Media.Antifreeze + in order to make its thermophysical property functions + publicly accessible as needed for the validation model + + AixLib.Media.Antifreeze.Validation.BaseClasses.FluidProperties. +

                                        + ", revisions=" -
                                          -
                                        • -May 14, 2018 by Michael Wetter:
                                          -First implementation. -
                                        • -
                                        -")); +
                                          +
                                        • + May 14, 2018 by Michael Wetter:
                                          + First implementation. +
                                        • +
                                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end PropyleneGlycolWater; diff --git a/AixLib/Media/Antifreeze/Validation/EthyleneGlycolWater.mo b/AixLib/Media/Antifreeze/Validation/EthyleneGlycolWater.mo index 71a9675b56..4b800c2804 100644 --- a/AixLib/Media/Antifreeze/Validation/EthyleneGlycolWater.mo +++ b/AixLib/Media/Antifreeze/Validation/EthyleneGlycolWater.mo @@ -16,24 +16,24 @@ model EthyleneGlycolWater __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Media/Antifreeze/Validation/EthyleneGlycolWater.mos" "Simulate and plot"), Documentation(info=" -

                                        -This example checks the implementation of functions that evaluate the -temperature- and concentration-dependent thermophysical properties of the -medium. -

                                        -

                                        -Thermophysical properties (density, specific heat capacity, thermal conductivity -and dynamic viscosity) are shown as 0 if the temperature is below the fusion -temperature. -

                                        -", +

                                        + This example checks the implementation of functions that evaluate the + temperature- and concentration-dependent thermophysical properties of the + medium. +

                                        +

                                        + Thermophysical properties (density, specific heat capacity, thermal conductivity + and dynamic viscosity) are shown as 0 if the temperature is below the fusion + temperature. +

                                        + ", revisions=" -
                                          -
                                        • -December 18, 2020, by Massimo Cimmino:
                                          -First implementation. -
                                        • -
                                        -")); - +
                                          +
                                        • + December 18, 2020, by Massimo Cimmino:
                                          + First implementation. +
                                        • +
                                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end EthyleneGlycolWater; diff --git a/AixLib/Media/Antifreeze/Validation/PropyleneGlycolWater.mo b/AixLib/Media/Antifreeze/Validation/PropyleneGlycolWater.mo index 3346ef5b6e..4a79b54037 100644 --- a/AixLib/Media/Antifreeze/Validation/PropyleneGlycolWater.mo +++ b/AixLib/Media/Antifreeze/Validation/PropyleneGlycolWater.mo @@ -16,24 +16,24 @@ model PropyleneGlycolWater __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Media/Antifreeze/Validation/PropyleneGlycolWater.mos" "Simulate and plot"), Documentation(info=" -

                                        -This example checks the implementation of functions that evaluate the -temperature- and concentration-dependent thermophysical properties of the -medium. -

                                        -

                                        -Thermophysical properties (density, specific heat capacity, thermal conductivity -and dynamic viscosity) are shown as 0 if the temperature is below the fusion -temperature. -

                                        -", +

                                        + This example checks the implementation of functions that evaluate the + temperature- and concentration-dependent thermophysical properties of the + medium. +

                                        +

                                        + Thermophysical properties (density, specific heat capacity, thermal conductivity + and dynamic viscosity) are shown as 0 if the temperature is below the fusion + temperature. +

                                        + ", revisions=" -
                                          -
                                        • -March 14, 2018, by Massimo Cimmino:
                                          -First implementation. -
                                        • -
                                        -")); - +
                                          +
                                        • + March 14, 2018, by Massimo Cimmino:
                                          + First implementation. +
                                        • +
                                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end PropyleneGlycolWater; diff --git a/AixLib/Media/Examples/AirDerivativeCheck.mo b/AixLib/Media/Examples/AirDerivativeCheck.mo index f93ff5fb25..95dbe95a37 100644 --- a/AixLib/Media/Examples/AirDerivativeCheck.mo +++ b/AixLib/Media/Examples/AirDerivativeCheck.mo @@ -3,19 +3,19 @@ model AirDerivativeCheck "Model that tests the derivative implementation" extends Modelica.Icons.Example; package Medium = AixLib.Media.Air; - Modelica.SIunits.Temperature T "Temperature"; - Modelica.SIunits.MassFraction X[1] "Water vapor mass fraction"; + Modelica.Units.SI.Temperature T "Temperature"; + Modelica.Units.SI.MassFraction X[1] "Water vapor mass fraction"; - Modelica.SIunits.SpecificEnthalpy hLiqSym "Liquid phase enthalpy"; - Modelica.SIunits.SpecificEnthalpy hLiqCod "Liquid phase enthalpy"; - Modelica.SIunits.SpecificEnthalpy hSteSym "Water vapor enthalpy"; - Modelica.SIunits.SpecificEnthalpy hSteCod "Water vapor enthalpy"; - Modelica.SIunits.SpecificEnthalpy hAirSym "Dry air enthalpy"; - Modelica.SIunits.SpecificEnthalpy hAirCod "Dry air enthalpy"; - Modelica.SIunits.SpecificHeatCapacity cpSym "Specific heat capacity"; - Modelica.SIunits.SpecificHeatCapacity cpCod "Specific heat capacity"; - Modelica.SIunits.SpecificHeatCapacity cvSym "Specific heat capacity"; - Modelica.SIunits.SpecificHeatCapacity cvCod "Specific heat capacity"; + Modelica.Units.SI.SpecificEnthalpy hLiqSym "Liquid phase enthalpy"; + Modelica.Units.SI.SpecificEnthalpy hLiqCod "Liquid phase enthalpy"; + Modelica.Units.SI.SpecificEnthalpy hSteSym "Water vapor enthalpy"; + Modelica.Units.SI.SpecificEnthalpy hSteCod "Water vapor enthalpy"; + Modelica.Units.SI.SpecificEnthalpy hAirSym "Dry air enthalpy"; + Modelica.Units.SI.SpecificEnthalpy hAirCod "Dry air enthalpy"; + Modelica.Units.SI.SpecificHeatCapacity cpSym "Specific heat capacity"; + Modelica.Units.SI.SpecificHeatCapacity cpCod "Specific heat capacity"; + Modelica.Units.SI.SpecificHeatCapacity cvSym "Specific heat capacity"; + Modelica.Units.SI.SpecificHeatCapacity cvCod "Specific heat capacity"; constant Real convT(unit="K/s3") = 270 "Conversion factor to satisfy unit check"; constant Real convX(unit="1/s3") = 0.01 @@ -61,28 +61,29 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Media/Examples/AirDerivativeCheck.mos" "Simulate and plot"), Documentation(info=" -

                                        -This example checks whether the function derivative -is implemented correctly. If the derivative implementation -is not correct, the model will stop with an assert statement. -

                                        -", revisions=" -
                                          -
                                        • -August 17, 2015, by Michael Wetter:
                                          -Changed regression test to have slope different from one. -This is for -issue 303. -
                                        • -
                                        • -November 20, 2013, by Michael Wetter:
                                          -Removed check of enthalpyOfDryAir as this function -is protected and should therefore not be accessed from outside the class. -
                                        • -
                                        • -May 12, 2008, by Michael Wetter:
                                          -First implementation. -
                                        • -
                                        -")); +

                                        + This example checks whether the function derivative + is implemented correctly. If the derivative implementation + is not correct, the model will stop with an assert statement. +

                                        + ", revisions=" +
                                          +
                                        • + August 17, 2015, by Michael Wetter:
                                          + Changed regression test to have slope different from one. + This is for + issue 303. +
                                        • +
                                        • + November 20, 2013, by Michael Wetter:
                                          + Removed check of enthalpyOfDryAir as this function + is protected and should therefore not be accessed from outside the class. +
                                        • +
                                        • + May 12, 2008, by Michael Wetter:
                                          + First implementation. +
                                        • +
                                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end AirDerivativeCheck; diff --git a/AixLib/Media/Examples/AirProperties.mo b/AixLib/Media/Examples/AirProperties.mo index 03ce31ba3c..36bed8355c 100644 --- a/AixLib/Media/Examples/AirProperties.mo +++ b/AixLib/Media/Examples/AirProperties.mo @@ -7,7 +7,7 @@ model AirProperties TMin=273.15-30, TMax=273.15+60); - Modelica.SIunits.SpecificEnthalpy hLiq "Specific enthalpy of liquid"; + Modelica.Units.SI.SpecificEnthalpy hLiq "Specific enthalpy of liquid"; equation // Check the implementation of the base properties @@ -23,16 +23,17 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Media/Examples/AirProperties.mos" "Simulate and plot"), Documentation(info=" -

                                        -This example checks thermophysical properties of the medium. -

                                        -", +

                                        + This example checks thermophysical properties of the medium. +

                                        + ", revisions=" -
                                          -
                                        • -December 19, 2013, by Michael Wetter:
                                          -First implementation. -
                                        • -
                                        -")); +
                                          +
                                        • + December 19, 2013, by Michael Wetter:
                                          + First implementation. +
                                        • +
                                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end AirProperties; diff --git a/AixLib/Media/Examples/AirTemperatureEnthalpyInversion.mo b/AixLib/Media/Examples/AirTemperatureEnthalpyInversion.mo index a0d5c598ef..c55cd3c2b0 100644 --- a/AixLib/Media/Examples/AirTemperatureEnthalpyInversion.mo +++ b/AixLib/Media/Examples/AirTemperatureEnthalpyInversion.mo @@ -9,17 +9,18 @@ experiment(Tolerance=1e-6, StopTime=1.0), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Media/Examples/AirTemperatureEnthalpyInversion.mos" "Simulate and plot"), Documentation(info=" -

                                        -This model tests whether the inversion of temperature and enthalpy -is implemented correctly. -If T ≠ T(h(T)), the model stops with an error. -

                                        -", revisions=" -
                                          -
                                        • -November 21, 2013, by Michael Wetter:
                                          -First implementation. -
                                        • -
                                        -")); +

                                        + This model tests whether the inversion of temperature and enthalpy + is implemented correctly. + If T ≠ T(h(T)), the model stops with an error. +

                                        + ",revisions=" +
                                          +
                                        • + November 21, 2013, by Michael Wetter:
                                          + First implementation. +
                                        • +
                                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end AirTemperatureEnthalpyInversion; diff --git a/AixLib/Media/Examples/BaseClasses/FluidProperties.mo b/AixLib/Media/Examples/BaseClasses/FluidProperties.mo index 3aafa19529..709f1a76ad 100644 --- a/AixLib/Media/Examples/BaseClasses/FluidProperties.mo +++ b/AixLib/Media/Examples/BaseClasses/FluidProperties.mo @@ -10,7 +10,7 @@ partial model FluidProperties "Density derivative w.r.t. pressure"; Modelica.Media.Interfaces.Types.DerDensityByTemperature ddTp "Density derivative w.r.t. temperature"; - Modelica.SIunits.Density[Medium.nX] dddX + Modelica.Units.SI.Density[Medium.nX] dddX "Density derivative w.r.t. mass fraction"; equation @@ -19,41 +19,42 @@ equation state_pTX = Medium.setState_pTX(p=p, T=T, X=X); state_phX = Medium.setState_phX(p=p, h=h, X=X); state_psX = Medium.setState_psX(p=p, s=s, X=X); - checkState(state_pTX, state_phX, "state_phX"); - checkState(state_pTX, state_psX, "state_psX"); + checkState(state_pTX, state_phX, errAbs, "state_phX"); + checkState(state_pTX, state_psX, errAbs, "state_psX"); // Check the implementation of the functions ddpT = Medium.density_derp_T(state_pTX); ddTp = Medium.density_derT_p(state_pTX); dddX = Medium.density_derX(state_pTX); annotation (Documentation(info=" -

                                        -This example checks thermophysical properties of the medium. -

                                        -", +

                                        + This example checks thermophysical properties of the medium. +

                                        + ", revisions=" -
                                          -
                                        • -June 6, 2015, by Michael Wetter:
                                          -Changed type of T from -Modelica.SIunits.Temperature to Medium.Temperature. -Otherwise, it has a different start value than BaseProperties.T, which -causes an error if - -AixLib.Media.Examples.WaterProperties -is translated in pedantic mode. -This fixes -#266. -
                                        • -
                                        • -October 16, 2014, by Michael Wetter:
                                          -Removed call to setState_dTX as this -function is physically not defined for incompressible media. -
                                        • -
                                        • -December 19, 2013, by Michael Wetter:
                                          -First implementation. -
                                        • -
                                        -")); +
                                          +
                                        • + June 6, 2015, by Michael Wetter:
                                          + Changed type of T from + Modelica.Units.SI.Temperature to Medium.Temperature. + Otherwise, it has a different start value than BaseProperties.T, which + causes an error if + + AixLib.Media.Examples.WaterProperties + is translated in pedantic mode. + This fixes + #266. +
                                        • +
                                        • + October 16, 2014, by Michael Wetter:
                                          + Removed call to setState_dTX as this + function is physically not defined for incompressible media. +
                                        • +
                                        • + December 19, 2013, by Michael Wetter:
                                          + First implementation. +
                                        • +
                                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end FluidProperties; diff --git a/AixLib/Media/Examples/BaseClasses/PartialProperties.mo b/AixLib/Media/Examples/BaseClasses/PartialProperties.mo index b836357ad1..a0b4dd0722 100644 --- a/AixLib/Media/Examples/BaseClasses/PartialProperties.mo +++ b/AixLib/Media/Examples/BaseClasses/PartialProperties.mo @@ -4,60 +4,70 @@ partial model PartialProperties replaceable package Medium = Modelica.Media.Interfaces.PartialMedium; - parameter Modelica.SIunits.Temperature TMin + parameter Modelica.Units.SI.Temperature TMin "Minimum temperature for the simulation"; - parameter Modelica.SIunits.Temperature TMax + parameter Modelica.Units.SI.Temperature TMax "Maximum temperature for the simulation"; - parameter Modelica.SIunits.Pressure p = Medium.p_default "Pressure"; - parameter Modelica.SIunits.MassFraction X[Medium.nX]= - Medium.X_default "Mass fraction"; + parameter Modelica.Units.SI.Pressure p=Medium.p_default "Pressure"; + parameter Modelica.Units.SI.MassFraction X[Medium.nX]=Medium.X_default + "Mass fraction"; + parameter Real errAbs=1E-8 "Absolute error used in the check of the state calculations"; Medium.Temperature T "Temperature"; - Modelica.SIunits.Conversions.NonSIunits.Temperature_degC T_degC - "Celsius temperature"; + Modelica.Units.NonSI.Temperature_degC T_degC "Celsius temperature"; Medium.ThermodynamicState state_pTX "Medium state"; - Modelica.SIunits.Density d "Density"; - Modelica.SIunits.DynamicViscosity eta "Dynamic viscosity"; - Modelica.SIunits.SpecificEnthalpy h "Specific enthalpy"; - Modelica.SIunits.SpecificInternalEnergy u "Specific internal energy"; - Modelica.SIunits.SpecificEntropy s "Specific entropy"; - Modelica.SIunits.SpecificEnergy g "Specific Gibbs energy"; - Modelica.SIunits.SpecificEnergy f "Specific Helmholtz energy"; + Modelica.Units.SI.Density d "Density"; + Modelica.Units.SI.DynamicViscosity eta "Dynamic viscosity"; + Modelica.Units.SI.SpecificEnthalpy h "Specific enthalpy"; + Modelica.Units.SI.SpecificInternalEnergy u "Specific internal energy"; + Modelica.Units.SI.SpecificEntropy s "Specific entropy"; + Modelica.Units.SI.SpecificEnergy g "Specific Gibbs energy"; + Modelica.Units.SI.SpecificEnergy f "Specific Helmholtz energy"; - Modelica.SIunits.SpecificEnthalpy hIse "Isentropic enthalpy"; + Modelica.Units.SI.SpecificEnthalpy hIse "Isentropic enthalpy"; Modelica.Media.Interfaces.Types.IsobaricExpansionCoefficient beta "Isobaric expansion coefficient"; - Modelica.SIunits.IsothermalCompressibility kappa "Isothermal compressibility"; + Modelica.Units.SI.IsothermalCompressibility kappa + "Isothermal compressibility"; - Modelica.SIunits.SpecificHeatCapacity cp "Specific heat capacity"; - Modelica.SIunits.SpecificHeatCapacity cv "Specific heat capacity"; - Modelica.SIunits.ThermalConductivity lambda "Thermal conductivity"; + Modelica.Units.SI.SpecificHeatCapacity cp "Specific heat capacity"; + Modelica.Units.SI.SpecificHeatCapacity cv "Specific heat capacity"; + Modelica.Units.SI.ThermalConductivity lambda "Thermal conductivity"; - Modelica.SIunits.AbsolutePressure pMed "Pressure"; + Modelica.Units.SI.AbsolutePressure pMed "Pressure"; Medium.Temperature TMed "Temperature"; - Modelica.SIunits.MolarMass MM "Mixture molar mass"; + Modelica.Units.SI.MolarMass MM "Mixture molar mass"; Medium.BaseProperties basPro "Medium base properties"; protected constant Real conv(unit="1/s") = 1 "Conversion factor to satisfy unit check"; - function checkState + function checkState "This function checks the absolute error in the state calculations" extends Modelica.Icons.Function; input Medium.ThermodynamicState state1 "Medium state"; input Medium.ThermodynamicState state2 "Medium state"; + input Real errAbs=errAbs "Absolute error threshold"; input String message "Message for error reporting"; + + protected + Real TErrAbs=abs(Medium.temperature(state1)-Medium.temperature(state2)) + "Absolute error in temperature"; + protected + Real pErrAbs=abs(Medium.pressure(state1)-Medium.pressure(state2)) + "Absolute error in pressure"; algorithm - assert(abs(Medium.temperature(state1)-Medium.temperature(state2)) - < 1e-8, "Error in temperature of " + message); - assert(abs(Medium.pressure(state1)-Medium.pressure(state2)) - < 1e-8, "Error in pressure of " + message); + assert(TErrAbs < errAbs, "Absolute temperature error: " + String(TErrAbs) + + " K. Error in temperature of " + message); + assert(pErrAbs < errAbs, "Absolute pressure error: " + String(pErrAbs) + + " Pa. Error in pressure of " + message); end checkState; + equation // Compute temperatures that are used as input to the functions T = TMin + conv*time * (TMax-TMin); - T_degC = Modelica.SIunits.Conversions.to_degC(T); + T_degC =Modelica.Units.Conversions.to_degC(T); // Check the implementation of the functions d = Medium.density(state_pTX); @@ -76,48 +86,53 @@ equation cv = Medium.specificHeatCapacityCv(state_pTX); lambda = Medium.thermalConductivity(state_pTX); pMed = Medium.pressure(state_pTX); - assert(abs(p-pMed) < 1e-8, "Error in pressure computation."); + assert(abs(p-pMed) < errAbs, "Error in pressure computation."); TMed = Medium.temperature(state_pTX); - assert(abs(T-TMed) < 1e-8, "Error in temperature computation."); + assert(abs(T-TMed) < errAbs, "Error in temperature computation."); MM = Medium.molarMass(state_pTX); // Check the implementation of the base properties - assert(abs(h-basPro.h) < 1e-8, "Error in enthalpy computation in BaseProperties."); - assert(abs(u-basPro.u) < 1e-8, "Error in internal energy computation in BaseProperties."); + assert(abs(h-basPro.h) < errAbs, "Error in enthalpy computation in BaseProperties."); + assert(abs(u-basPro.u) < errAbs, "Error in internal energy computation in BaseProperties."); annotation ( Documentation(info=" -

                                        -This example checks thermophysical properties of the medium. -

                                        -", +

                                        + This example checks thermophysical properties of the medium. +

                                        + ", revisions=" -
                                          -
                                        • -September 16, 2019, by Yangyang Fu:
                                          -Reconstruct the implementation structure to avoid duplicated codes for different media. -This fixes #1206. -
                                        • -
                                        • -June 6, 2015, by Michael Wetter:
                                          -Changed type of T from -Modelica.SIunits.Temperature to Medium.Temperature. -Otherwise, it has a different start value than BaseProperties.T, which -causes an error if - -AixLib.Media.Examples.WaterProperties -is translated in pedantic mode. -This fixes -#266. -
                                        • -
                                        • -October 16, 2014, by Michael Wetter:
                                          -Removed call to setState_dTX as this -function is physically not defined for incompressible media. -
                                        • -
                                        • -December 19, 2013, by Michael Wetter:
                                          -First implementation. -
                                        • -
                                        -")); +
                                          +
                                        • + March 24, 2020, by Kathryn Hinkelman:
                                          + Expand error message for checkState and added absolute error as input. +
                                        • +
                                        • + September 16, 2019, by Yangyang Fu:
                                          + Reconstruct the implementation structure to avoid duplicated codes for different media. + This fixes #1206. +
                                        • +
                                        • + June 6, 2015, by Michael Wetter:
                                          + Changed type of T from + Modelica.Units.SI.Temperature to Medium.Temperature. + Otherwise, it has a different start value than BaseProperties.T, which + causes an error if + + AixLib.Media.Examples.WaterProperties + is translated in pedantic mode. + This fixes + #266. +
                                        • +
                                        • + October 16, 2014, by Michael Wetter:
                                          + Removed call to setState_dTX as this + function is physically not defined for incompressible media. +
                                        • +
                                        • + December 19, 2013, by Michael Wetter:
                                          + First implementation. +
                                        • +
                                        + "), + __Dymola_LockedEditing="Model from IBPSA"); end PartialProperties; diff --git a/AixLib/Media/Examples/BaseClasses/TestTemperatureEnthalpyInversion.mo b/AixLib/Media/Examples/BaseClasses/TestTemperatureEnthalpyInversion.mo index 1cc358a714..572db99860 100644 --- a/AixLib/Media/Examples/BaseClasses/TestTemperatureEnthalpyInversion.mo +++ b/AixLib/Media/Examples/BaseClasses/TestTemperatureEnthalpyInversion.mo @@ -3,10 +3,10 @@ partial model TestTemperatureEnthalpyInversion "Model to check computation of h(T) and its inverse with a controlleable tolerance" replaceable package Medium = Modelica.Media.Interfaces.PartialMedium; - parameter Modelica.SIunits.Temperature T0=273.15+20 "Temperature"; + parameter Modelica.Units.SI.Temperature T0=273.15 + 20 "Temperature"; parameter Real tol = 1E-8 "Numerical tolerance"; - Modelica.SIunits.Temperature T "Temperature"; - Modelica.SIunits.SpecificEnthalpy h "Enthalpy"; + Modelica.Units.SI.Temperature T "Temperature"; + Modelica.Units.SI.SpecificEnthalpy h "Enthalpy"; Medium.MassFraction Xi[:] = Medium.reference_X "Mass fraction"; equation h = Medium.specificEnthalpy_pTX(p=101325, T=T0, X=Xi); @@ -14,37 +14,43 @@ equation if (time>0.1) then assert(abs(T-T0)#266. -
                                      • -
                                      • -February 12, 2015 by Michael Wetter:
                                        -Replaced h_pTX with specificEnthalpy_pTX -and -T_phX with temperature_phX -as the old names are not present in all media. -
                                      • -
                                      • -January 21, 2010 by Michael Wetter:
                                        -First implementation. -
                                      • -
                                      -")); + This model computes h=f(T0) and + T=g(h). It then checks whether T=T0. + Hence, it checks whether the function T_phX is + implemented correctly. + ",revisions=" +
                                        +
                                      • + March 24, 2020 by Kathryn Hinkelman:
                                        + Expanded the assert message to include absolute error value. +
                                      • +
                                      • + September 16, 2019 by Yangyang Fu:
                                        + Added a parameter tol to control numerical errors. +
                                      • +
                                      • + June 6, 2015 by Michael Wetter:
                                        + Changed Medium base class to avoid a translation error + in Dymola 2016 using pedantic mode. + This is for + #266. +
                                      • +
                                      • + February 12, 2015 by Michael Wetter:
                                        + Replaced h_pTX with specificEnthalpy_pTX + and + T_phX with temperature_phX + as the old names are not present in all media. +
                                      • +
                                      • + January 21, 2010 by Michael Wetter:
                                        + First implementation. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end TestTemperatureEnthalpyInversion; diff --git a/AixLib/Media/Examples/PropyleneGlycolWaterDerivativeCheck.mo b/AixLib/Media/Examples/PropyleneGlycolWaterDerivativeCheck.mo index bfc979728d..1a5155b419 100644 --- a/AixLib/Media/Examples/PropyleneGlycolWaterDerivativeCheck.mo +++ b/AixLib/Media/Examples/PropyleneGlycolWaterDerivativeCheck.mo @@ -7,13 +7,13 @@ model PropyleneGlycolWaterDerivativeCheck X_a=0.60, property_T=293.15); - Modelica.SIunits.Temperature T "Temperature"; - Modelica.SIunits.SpecificEnthalpy hLiqSym "Liquid phase enthalpy"; - Modelica.SIunits.SpecificEnthalpy hLiqCod "Liquid phase enthalpy"; - Modelica.SIunits.SpecificHeatCapacity cpSym "Specific heat capacity"; - Modelica.SIunits.SpecificHeatCapacity cpCod "Specific heat capacity"; - Modelica.SIunits.SpecificHeatCapacity cvSym "Specific heat capacity"; - Modelica.SIunits.SpecificHeatCapacity cvCod "Specific heat capacity"; + Modelica.Units.SI.Temperature T "Temperature"; + Modelica.Units.SI.SpecificEnthalpy hLiqSym "Liquid phase enthalpy"; + Modelica.Units.SI.SpecificEnthalpy hLiqCod "Liquid phase enthalpy"; + Modelica.Units.SI.SpecificHeatCapacity cpSym "Specific heat capacity"; + Modelica.Units.SI.SpecificHeatCapacity cpCod "Specific heat capacity"; + Modelica.Units.SI.SpecificHeatCapacity cvSym "Specific heat capacity"; + Modelica.Units.SI.SpecificHeatCapacity cvCod "Specific heat capacity"; constant Real convT(unit="K/s3") = 100 "Conversion factor to satisfy unit check"; initial equation @@ -48,17 +48,18 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Media/Examples/PropyleneGlycolWaterDerivativeCheck.mos" "Simulate and plot"), Documentation(info=" -

                                      -This example checks whether the function derivative -is implemented correctly. If the derivative implementation -is not correct, the model will stop with an assert statement. -

                                      -", revisions=" -
                                        -
                                      • -March 13, 2018, by Massimo Cimmino:
                                        -First implementation. -
                                      • -
                                      -")); +

                                      + This example checks whether the function derivative + is implemented correctly. If the derivative implementation + is not correct, the model will stop with an assert statement. +

                                      + ", revisions=" +
                                        +
                                      • + March 13, 2018, by Massimo Cimmino:
                                        + First implementation. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end PropyleneGlycolWaterDerivativeCheck; diff --git a/AixLib/Media/Examples/PropyleneGlycolWaterProperties.mo b/AixLib/Media/Examples/PropyleneGlycolWaterProperties.mo index d818a98969..0fdf075f5e 100644 --- a/AixLib/Media/Examples/PropyleneGlycolWaterProperties.mo +++ b/AixLib/Media/Examples/PropyleneGlycolWaterProperties.mo @@ -3,8 +3,7 @@ model PropyleneGlycolWaterProperties "Model that tests the implementation of the fluid properties" extends Modelica.Icons.Example; extends AixLib.Media.Examples.BaseClasses.FluidProperties( - redeclare package Medium = AixLib.Media.Antifreeze.PropyleneGlycolWater - ( + redeclare package Medium = AixLib.Media.Antifreeze.PropyleneGlycolWater ( X_a=0.60, property_T=293.15), TMin=273.15, @@ -17,16 +16,17 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Media/Examples/PropyleneGlycolWaterProperties.mos" "Simulate and plot"), Documentation(info=" -

                                      -This example checks thermophysical properties of the medium. -

                                      -", +

                                      + This example checks thermophysical properties of the medium. +

                                      + ", revisions=" -
                                        -
                                      • -March 13, 2018, by Massimo Cimmino:
                                        -First implementation. -
                                      • -
                                      -")); +
                                        +
                                      • + March 13, 2018, by Massimo Cimmino:
                                        + First implementation. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end PropyleneGlycolWaterProperties; diff --git a/AixLib/Media/Examples/PropyleneGlycolWaterTemperatureEnthalpyInversion.mo b/AixLib/Media/Examples/PropyleneGlycolWaterTemperatureEnthalpyInversion.mo index 73492ca010..81d381141f 100644 --- a/AixLib/Media/Examples/PropyleneGlycolWaterTemperatureEnthalpyInversion.mo +++ b/AixLib/Media/Examples/PropyleneGlycolWaterTemperatureEnthalpyInversion.mo @@ -3,8 +3,7 @@ model PropyleneGlycolWaterTemperatureEnthalpyInversion "Model to check computation of h(T) and its inverse" extends Modelica.Icons.Example; extends AixLib.Media.Examples.BaseClasses.TestTemperatureEnthalpyInversion( - redeclare package Medium = AixLib.Media.Antifreeze.PropyleneGlycolWater - ( + redeclare package Medium = AixLib.Media.Antifreeze.PropyleneGlycolWater ( X_a=0.60, property_T=293.15)); annotation ( @@ -12,17 +11,18 @@ experiment(Tolerance=1e-6, StopTime=1.0), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Media/Examples/PropyleneGlycolWaterTemperatureEnthalpyInversion.mos" "Simulate and plot"), Documentation(info=" -

                                      -This model tests whether the inversion of temperature and enthalpy -is implemented correctly. -If T ≠ T(h(T)), the model stops with an error. -

                                      -", revisions=" -
                                        -
                                      • -March 13, 2018, by Massimo Cimmino:
                                        -First implementation. -
                                      • -
                                      -")); +

                                      + This model tests whether the inversion of temperature and enthalpy + is implemented correctly. + If T ≠ T(h(T)), the model stops with an error. +

                                      + ",revisions=" +
                                        +
                                      • + March 13, 2018, by Massimo Cimmino:
                                        + First implementation. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); end PropyleneGlycolWaterTemperatureEnthalpyInversion; diff --git a/AixLib/Media/Examples/SteamDerivativeCheck.mo b/AixLib/Media/Examples/SteamDerivativeCheck.mo new file mode 100644 index 0000000000..ec30a63398 --- /dev/null +++ b/AixLib/Media/Examples/SteamDerivativeCheck.mo @@ -0,0 +1,72 @@ +within AixLib.Media.Examples; +model SteamDerivativeCheck "Model that tests the derivative implementation" + extends Modelica.Icons.Example; + + package Medium = AixLib.Media.Steam "Medim model"; + + Modelica.Units.SI.Temperature T "Temperature"; + Modelica.Units.SI.SpecificEnthalpy hVapSym "Vapor phase specific enthalpy"; + Modelica.Units.SI.SpecificEnthalpy hVapCod "Vapor phase specific enthalpy"; + Modelica.Units.SI.SpecificHeatCapacity cpSym "Specific heat capacity"; + Modelica.Units.SI.SpecificHeatCapacity cpCod "Specific heat capacity"; + Modelica.Units.SI.SpecificHeatCapacity cvSym "Specific heat capacity"; + Modelica.Units.SI.SpecificHeatCapacity cvCod "Specific heat capacity"; + constant Real convT(unit="K/s3") = 270 + "Conversion factor to satisfy unit check"; +initial equation + hVapSym = hVapCod; + cpSym = cpCod; + cvSym = cvCod; +equation + T = 273.15+110+convT*time^3; + hVapCod=Medium.specificEnthalpy( + Medium.setState_pTX( + p=1e5, + T=T, + X=Medium.X_default)); + assert(abs(hVapCod-hVapSym) < 1E-4 * (1+abs(hVapCod)), "Model has an error"); + der(hVapCod)=der(hVapSym); + + cpCod=Medium.specificHeatCapacityCp( + Medium.setState_pTX( + p=1e5, + T=T, + X=Medium.X_default)); + der(cpCod)=der(cpSym); + assert(abs(cpCod-cpSym) < 1E-4 * (1+abs(cpCod)), "Model has an error"); + + cvCod=Medium.specificHeatCapacityCv( + Medium.setState_pTX( + p=1e5, + T=T, + X=Medium.X_default)); + der(cvCod)=der(cvSym); + assert(abs(cvCod-cvSym) < 1E-4 * (1+abs(cvCod)), "Model has an error"); + + annotation(experiment( + StartTime=0, StopTime=1, + Tolerance=1E-10), +__Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Media/Examples/SteamDerivativeCheck.mos" + "Simulate and plot"), + Documentation(info=" +

                                      + This example checks whether the function derivative + is implemented correctly. If the derivative implementation + is not correct, the model will stop with an assert statement. +

                                      + ", revisions=" +
                                        +
                                      • + March 16, 2020, by Michael Wetter:
                                        + Changed to relative plus absolute error check in assertion because the specific enthalpy has a + magnitude of 1E6, which causes the assertion to fail in JModelica if an absolute accuracy + of 1E-2 is requested. +
                                      • +
                                      • + March 6, 2020, by Kathryn Hinkelman:
                                        + First implementation. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); +end SteamDerivativeCheck; diff --git a/AixLib/Media/Examples/SteamProperties.mo b/AixLib/Media/Examples/SteamProperties.mo new file mode 100644 index 0000000000..ae5258007a --- /dev/null +++ b/AixLib/Media/Examples/SteamProperties.mo @@ -0,0 +1,59 @@ +within AixLib.Media.Examples; +model SteamProperties + "Model that tests the implementation of the steam superheated properties" + extends Modelica.Icons.Example; + extends AixLib.Media.Examples.BaseClasses.PartialProperties( + redeclare package Medium = AixLib.Media.Steam ( + p_default=200000), + TMin=273.15 + 100, + TMax=273.15 + 160, + p=200000); + + Medium.ThermodynamicState state_phX "Medium state"; + Medium.ThermodynamicState state_psX "Medium state"; + + Modelica.Media.Interfaces.Types.DerDensityByEnthalpy ddhp + "Density derivative w.r.t. enthalpy"; + Modelica.Media.Interfaces.Types.DerDensityByPressure ddph + "Density derivative w.r.t. pressure"; + +equation + + // Check setting the states + state_pTX = Medium.setState_pTX(p=p, T=T, X=X); + state_phX = Medium.setState_phX(p=p, h=h, X=X); + state_psX = Medium.setState_psX(p=p, s=s, X=X); + checkState(state_pTX, state_phX, errAbs, "state_phX"); + checkState(state_pTX, state_psX, errAbs, "state_psX"); + + // Check the implementation of the functions + ddhp = Medium.density_derh_p(state_pTX); + ddph = Medium.density_derp_h(state_pTX); + + // Check the implementation of the base properties + basPro.state.p=p; + basPro.state.T=T; + + annotation(experiment(Tolerance=1e-6, StopTime=1.0), +__Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Media/Examples/SteamProperties.mos" + "Simulate and plot"), + Documentation(info=" +

                                      + This example checks thermophysical properties of the medium. +

                                      + ", +revisions=" +
                                        +
                                      • + October 30, 2020, by Kathryn Hinkelman:
                                        + Rebased steam medium to PartialMedium and improved steam property consistency + and efficiency. +
                                      • +
                                      • + September 12, 2019, by Yangyang Fu:
                                        + First implementation. +
                                      • +
                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); +end SteamProperties; diff --git a/AixLib/Media/Examples/SteamSaturationConsistencyCheck.mo b/AixLib/Media/Examples/SteamSaturationConsistencyCheck.mo new file mode 100644 index 0000000000..7d33d3fb45 --- /dev/null +++ b/AixLib/Media/Examples/SteamSaturationConsistencyCheck.mo @@ -0,0 +1,122 @@ +within AixLib.Media.Examples; +model SteamSaturationConsistencyCheck + "Model that checks the consistency of saturated property functions" + extends Modelica.Icons.Example; + + package MediumSte = AixLib.Media.Steam "Steam medium model"; + package MediumWat = AixLib.Media.Water "Liquid water medium model"; + + parameter Modelica.Units.SI.Temperature TMin=273.15 + 100 + "Minimum temperature for the simulation"; + parameter Modelica.Units.SI.Temperature TMax=273.15 + 179.886 + "Maximum temperature for the simulation"; + parameter Real tol = 1E-8 "Numerical tolerance"; + + MediumSte.ThermodynamicState sat "Saturation state"; + Modelica.Units.SI.Pressure pSat "Saturation pressure"; + Modelica.Units.SI.Temperature TSat0 "Starting saturation temperature"; + Modelica.Units.SI.Temperature TSat "Saturation temperature"; + Modelica.Units.NonSI.Temperature_degC TSat_degC + "Celsius saturation temperature"; + Modelica.Units.SI.SpecificEnthalpy hlvIF97 + "Enthalpy of vaporization, IF97 formulation"; + Modelica.Units.SI.SpecificEnthalpy hlvWatSte + "Enthalpy of vaporization, water and steam medium models"; + Modelica.Units.SI.SpecificEnthalpy hlIF97 + "Enthalpy of saturated liquid, IF97"; + Modelica.Units.SI.SpecificEnthalpy hlWat + "Enthalpy of saturated liquid, water medium"; + Modelica.Units.SI.SpecificEnthalpy hvIF97 "Enthalpy of saturated vapor, IF97"; + Modelica.Units.SI.SpecificEnthalpy hvSte + "Enthalpy of saturated vapor, steam medium"; + + Real hlvErr "Enthalpy of vaporization percent error"; + Real hlErr "Enthalpy of saturated liquid percent error"; + Real hvErr "Enthalpy of saturated vapor percent error"; + +protected + constant Real conv(unit="1/s") = 1 "Conversion factor to satisfy unit check"; + +function enthalpyOfSaturatedLiquid + "Return enthalpy of saturated liquid" + extends Modelica.Icons.Function; + input Modelica.Units.SI.AbsolutePressure p "Pressure"; + output Modelica.Units.SI.SpecificEnthalpy hl "Enthalpy of saturated liquid"; +algorithm + hl := Modelica.Media.Water.IF97_Utilities.BaseIF97.Regions.hl_p(p); +annotation (Inline=true); +end enthalpyOfSaturatedLiquid; + +function enthalpyOfSaturatedVapor + "Return enthalpy of saturated liquid" + extends Modelica.Icons.Function; + input Modelica.Units.SI.AbsolutePressure p "Pressure"; + output Modelica.Units.SI.SpecificEnthalpy hv "Enthalpy of saturated liquid"; +algorithm + hv := Modelica.Media.Water.IF97_Utilities.BaseIF97.Regions.hv_p(p); +annotation (Inline=true); +end enthalpyOfSaturatedVapor; + +function enthalpyOfVaporization + "Return enthalpy of vaporization" + extends Modelica.Icons.Function; + input Modelica.Units.SI.AbsolutePressure p "Pressure"; + output Modelica.Units.SI.SpecificEnthalpy r0 "Vaporization enthalpy"; +algorithm + r0 := Modelica.Media.Water.IF97_Utilities.BaseIF97.Regions.hv_p(p) - + Modelica.Media.Water.IF97_Utilities.BaseIF97.Regions.hl_p(p); +annotation (Inline=true); +end enthalpyOfVaporization; + +equation + // Compute temperatures that are used as input to the functions + TSat0 = TMin + conv*time * (TMax-TMin); + + // Set saturation states + pSat = MediumSte.saturationPressure(TSat0); + TSat = MediumSte.saturationTemperature(pSat); + if (time>0.1) then + assert(abs(TSat-TSat0)issue 303. -
                                    • -
                                    • -December 18, 2013, by Michael Wetter:
                                      -First implementation. -
                                    • -
                                    -")); +

                                    + This example checks whether the function derivative + is implemented correctly. If the derivative implementation + is not correct, the model will stop with an assert statement. +

                                    + ", revisions=" +
                                      +
                                    • + August 17, 2015, by Michael Wetter:
                                      + Changed regression test to have slope different from one. + This is for + issue 303. +
                                    • +
                                    • + December 18, 2013, by Michael Wetter:
                                      + First implementation. +
                                    • +
                                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end WaterDerivativeCheck; diff --git a/AixLib/Media/Examples/WaterProperties.mo b/AixLib/Media/Examples/WaterProperties.mo index b59d459811..e1a5726295 100644 --- a/AixLib/Media/Examples/WaterProperties.mo +++ b/AixLib/Media/Examples/WaterProperties.mo @@ -14,16 +14,17 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Media/Examples/WaterProperties.mos" "Simulate and plot"), Documentation(info=" -

                                    -This example checks thermophysical properties of the medium. -

                                    -", +

                                    + This example checks thermophysical properties of the medium. +

                                    + ", revisions=" -
                                      -
                                    • -December 19, 2013, by Michael Wetter:
                                      -First implementation. -
                                    • -
                                    -")); +
                                      +
                                    • + December 19, 2013, by Michael Wetter:
                                      + First implementation. +
                                    • +
                                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end WaterProperties; diff --git a/AixLib/Media/Examples/WaterTemperatureEnthalpyInversion.mo b/AixLib/Media/Examples/WaterTemperatureEnthalpyInversion.mo index 94995c7a96..35b89300d6 100644 --- a/AixLib/Media/Examples/WaterTemperatureEnthalpyInversion.mo +++ b/AixLib/Media/Examples/WaterTemperatureEnthalpyInversion.mo @@ -9,17 +9,18 @@ experiment(Tolerance=1e-6, StopTime=1.0), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Media/Examples/WaterTemperatureEnthalpyInversion.mos" "Simulate and plot"), Documentation(info=" -

                                    -This model tests whether the inversion of temperature and enthalpy -is implemented correctly. -If T ≠ T(h(T)), the model stops with an error. -

                                    -", revisions=" -
                                      -
                                    • -November 21, 2013, by Michael Wetter:
                                      -First implementation. -
                                    • -
                                    -")); +

                                    + This model tests whether the inversion of temperature and enthalpy + is implemented correctly. + If T ≠ T(h(T)), the model stops with an error. +

                                    + ",revisions=" +
                                      +
                                    • + November 21, 2013, by Michael Wetter:
                                      + First implementation. +
                                    • +
                                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end WaterTemperatureEnthalpyInversion; diff --git a/AixLib/Media/Examples/package.order b/AixLib/Media/Examples/package.order index fa0ad5798d..89c8f350e9 100644 --- a/AixLib/Media/Examples/package.order +++ b/AixLib/Media/Examples/package.order @@ -4,6 +4,10 @@ AirTemperatureEnthalpyInversion PropyleneGlycolWaterDerivativeCheck PropyleneGlycolWaterProperties PropyleneGlycolWaterTemperatureEnthalpyInversion +SteamDerivativeCheck +SteamProperties +SteamSaturationConsistencyCheck +SteamTemperatureEnthalpyInversion WaterDerivativeCheck WaterProperties WaterTemperatureEnthalpyInversion diff --git a/AixLib/Media/Refrigerants/Examples/RefrigerantProperties.mo b/AixLib/Media/Refrigerants/Examples/RefrigerantProperties.mo index e581c4f8c0..65826ddb21 100644 --- a/AixLib/Media/Refrigerants/Examples/RefrigerantProperties.mo +++ b/AixLib/Media/Refrigerants/Examples/RefrigerantProperties.mo @@ -18,30 +18,26 @@ model RefrigerantProperties // Define the fluid limits of the medium that shall be tested // - parameter Modelica.SIunits.SpecificEnthalpy h_min = 145e3 + parameter Modelica.Units.SI.SpecificEnthalpy h_min=145e3 "Fluid limit: Minimum specific enthalpy" annotation (Dialog(group="Fluid limits")); - parameter Modelica.SIunits.SpecificEnthalpy h_max = 480e3 + parameter Modelica.Units.SI.SpecificEnthalpy h_max=480e3 "Fluid limit: Maximum specific enthalpy" annotation (Dialog(group="Fluid limits")); - parameter Modelica.SIunits.Density d_min = 2 - "Fluid limit: Minimum density" + parameter Modelica.Units.SI.Density d_min=2 "Fluid limit: Minimum density" annotation (Dialog(group="Fluid limits")); - parameter Modelica.SIunits.Density d_max = 1325 - "Fluid limit: Maximum density" + parameter Modelica.Units.SI.Density d_max=1325 "Fluid limit: Maximum density" annotation (Dialog(group="Fluid limits")); - parameter Modelica.SIunits.AbsolutePressure p_min = 1e5 + parameter Modelica.Units.SI.AbsolutePressure p_min=1e5 "Fluid limit: Minimum absolute pressure" annotation (Dialog(group="Fluid limits")); - parameter Modelica.SIunits.AbsolutePressure p_max = 39e5 + parameter Modelica.Units.SI.AbsolutePressure p_max=39e5 "Fluid limit: Maximum absolute pressure" annotation (Dialog(group="Fluid limits")); - parameter Modelica.SIunits.Temperature T_min = 233.15 - "Fluid limit: Minimum temperature" - annotation (Dialog(group="Fluid limits")); - parameter Modelica.SIunits.Temperature T_max = 455.15 - "Fluid limit: Maximum temperature" - annotation (Dialog(group="Fluid limits")); + parameter Modelica.Units.SI.Temperature T_min=233.15 + "Fluid limit: Minimum temperature" annotation (Dialog(group="Fluid limits")); + parameter Modelica.Units.SI.Temperature T_max=455.15 + "Fluid limit: Maximum temperature" annotation (Dialog(group="Fluid limits")); // Define the conversion factor for the test // @@ -52,22 +48,14 @@ model RefrigerantProperties // Define variables that shall be tested // - Modelica.SIunits.Temperature T(start = T_min) - "Actual temperature"; - Modelica.SIunits.AbsolutePressure p(start = p_min) - "Actual absolute presure"; - Modelica.SIunits.Density d(start = d_min) - "Actual density"; - Modelica.SIunits.SpecificEnthalpy h(start = h_min) - "Actual specific enthalpy"; - Modelica.SIunits.SpecificEntropy s - "Actual specific entropy"; - Modelica.SIunits.SpecificInternalEnergy u - "Actual specific internal energy"; - Modelica.SIunits.SpecificEnergy g - "Actual specific Gibbs energy"; - Modelica.SIunits.SpecificEnergy f - "Actual specific Helmholtz energy"; + Modelica.Units.SI.Temperature T(start=T_min) "Actual temperature"; + Modelica.Units.SI.AbsolutePressure p(start=p_min) "Actual absolute presure"; + Modelica.Units.SI.Density d(start=d_min) "Actual density"; + Modelica.Units.SI.SpecificEnthalpy h(start=h_min) "Actual specific enthalpy"; + Modelica.Units.SI.SpecificEntropy s "Actual specific entropy"; + Modelica.Units.SI.SpecificInternalEnergy u "Actual specific internal energy"; + Modelica.Units.SI.SpecificEnergy g "Actual specific Gibbs energy"; + Modelica.Units.SI.SpecificEnergy f "Actual specific Helmholtz energy"; Medium.SaturationProperties satT "Actual saturation properties calculated with temperature"; @@ -99,10 +87,9 @@ model RefrigerantProperties "Actual velocity of sound"; Medium.IsobaricExpansionCoefficient betta "Actual isobaric expansion coefficient"; - Modelica.SIunits.IsothermalCompressibility kappa + Modelica.Units.SI.IsothermalCompressibility kappa "Actual isothermal compressibility"; - Modelica.SIunits.IsentropicExponent gamma - "Actual isentropic coefficient"; + Modelica.Units.SI.IsentropicExponent gamma "Actual isentropic coefficient"; Real delta_T(unit= "J/(Pa.kg)") "Actual isothermal throttling coefficient"; Real my(unit="K/Pa") @@ -178,9 +165,9 @@ model RefrigerantProperties setState functions"; protected - Modelica.SIunits.Time convChange(start = 0) + Modelica.Units.SI.Time convChange(start=0) "Time to reset calculation of actual temperature or pressure"; - Modelica.SIunits.Time convChangeTmp(start = 0) + Modelica.Units.SI.Time convChangeTmp(start=0) "Temporary time to reset calculation of actual temperature or pressure"; algorithm diff --git a/AixLib/Media/Refrigerants/Interfaces/PartialHybridTwoPhaseMediumFormula.mo b/AixLib/Media/Refrigerants/Interfaces/PartialHybridTwoPhaseMediumFormula.mo index 433e8eea54..55eb2bc7f7 100644 --- a/AixLib/Media/Refrigerants/Interfaces/PartialHybridTwoPhaseMediumFormula.mo +++ b/AixLib/Media/Refrigerants/Interfaces/PartialHybridTwoPhaseMediumFormula.mo @@ -1,4 +1,4 @@ -within AixLib.Media.Refrigerants.Interfaces; +within AixLib.Media.Refrigerants.Interfaces; partial package PartialHybridTwoPhaseMediumFormula "Base class for two phase medium using a hybrid approach without records" extends Modelica.Media.Interfaces.PartialTwoPhaseMedium; @@ -40,7 +40,7 @@ partial package PartialHybridTwoPhaseMediumFormula equation // Calculation of basic constants // - R = Modelica.Constants.R/MM; + R_s = Modelica.Constants.R/MM; MM = fluidConstants[1].molarMass; // Calculations of thermodynamic states @@ -2444,386 +2444,410 @@ partial package PartialHybridTwoPhaseMediumFormula developed by Sangi et al. within their \"Fast_Propane\" model and given below:

                                    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
                                    -

                                    - Saturation pressure -

                                    -
                                    -

                                    - \"Formula -

                                    -
                                    -

                                    - Saturation temperature -

                                    -
                                    -

                                    - \"Formula -

                                    -
                                    -

                                    - Bubble density -

                                    -
                                    -

                                    - \"Formula -

                                    -
                                    -

                                    - Dew density -

                                    -
                                    -

                                    - \"Formula -

                                    -
                                    -

                                    - Bubble Enthalpy -

                                    -
                                    -

                                    - \"Formula -

                                    -
                                    -

                                    - Dew Enthalpy -

                                    -
                                    -

                                    - \"Formula -

                                    -
                                    -

                                    - Bubble Entropy -

                                    -
                                    -

                                    - \"Formula -

                                    -
                                    -

                                    - Dew Entropy -

                                    -
                                    -

                                    - \"Formula -

                                    -
                                    +
                                    + \"Formulas for calculating saturation properties\" cellspacing=\"0\" + cellpadding=\"2\" border=\"1\" width=\"80%\" style= + \"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                    +

                                    + Saturation pressure +

                                    +
                                    +

                                    + \"Formula +

                                    +
                                    +

                                    + Saturation temperature +

                                    +
                                    +

                                    + \"Formula +

                                    +
                                    +

                                    + Bubble density +

                                    +
                                    +

                                    + \"Formula +

                                    +
                                    +

                                    + Dew density +

                                    +
                                    +

                                    + \"Formula +

                                    +
                                    +

                                    + Bubble Enthalpy +

                                    +
                                    +

                                    + \"Formula +

                                    +
                                    +

                                    + Dew Enthalpy +

                                    +
                                    +

                                    + \"Formula +

                                    +
                                    +

                                    + Bubble Entropy +

                                    +
                                    +

                                    + \"Formula +

                                    +
                                    +

                                    + Dew Entropy +

                                    +
                                    +

                                    + \"Formula +

                                    +
                                    + + +
                                    + \"Formulas for calculating thermodynamic properties at + superheated and supercooled regime\" cellspacing=\"0\" + cellpadding=\"3\" border=\"1\" width=\"80%\" style= + \"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                    +

                                    + Temperature_ph +

                                    +
                                    +

                                    + First Input +

                                    +
                                    +

                                    + + +

                                    +
                                    +

                                    + Second Input +

                                    +
                                    +

                                    + + +

                                    +
                                    +

                                    + Temperature_ps +

                                    +
                                    +

                                    + First Input +

                                    +
                                    +

                                    + + +

                                    +
                                    +

                                    + Second Input +

                                    +
                                    +

                                    + + +

                                    +
                                    +

                                    + Density_pT +

                                    +
                                    +

                                    + First Input +

                                    +
                                    +

                                    + + +

                                    +
                                    +

                                    + Second Input +

                                    +
                                    +

                                    + + +

                                    +
                                    +

                                    + Functional approach +

                                    +
                                    +

                                    + + +

                                    +
                                    +

                                    + As it can be seen, the fitted formulas consist basically of + the coefficients ei, ci as well as of + the parameters Meani and Stdi. These + coefficients are the fitting coefficients and must be + obtained during a fitting procedure. While the fitting + procedure, the formulas presented above are fitted to + external data (e.g. obtained from measurements or external + media libraries) and the fitting coefficients are determined. + Finally, the formulas obtained during the fitting procedure + are implemented in an explicit form. +

                                    +

                                    + For further information of the hybrid approach, please + read the paper \"A Medium Model for the + Refrigerant Propane for Fast and Accurate Dynamic + Simulations\" by Sangi et al.. +

                                    +

                                    + Smooth transition +

                                    +

                                    + To ensure a smooth transition between different regions (e.g. + from supercooled region to two-phase region) and, therefore, + to avoid discontinuities as far as possible, Sangi et al. + implemented functions for a smooth transition between the + regions. An example (i.e. specificEnthalpy_ps) of these + functions is given below:
                                    +

                                    + + +
                                    + \"Calculation procedures to avoid numerical instability at + phase change\" cellspacing=\"0\" cellpadding=\"2\" border=\"1\" + width=\"80%\" style= \"border-collapse:collapse;\"> + + + + + + + + + + + + + +
                                    +

                                    + From supercooled region to bubble line and vice + versa +

                                    +
                                    +

                                    + + +

                                    +
                                    +

                                    + From dew line to superheated region and vice + versa +

                                    +
                                    +

                                    + + +

                                    +
                                    +

                                    + From bubble or dew line to two-phase region and + vice versa +

                                    +
                                    +

                                    + + +

                                    +
                                    +

                                    + Assumptions and limitations +

                                    +

                                    + Two limitations are known for this package: +

                                    +
                                      +
                                    1. The modelling approach implemented in this package is + a hybrid approach and, therefore, is based on the + Helmholtz equation of state as well as on fitted formula. + Hence, the refrigerant model is just valid within the + valid range of the fitted formula. +
                                    2. +
                                    3. It may be possible to have discontinuities when + moving from one region to another (e.g. from supercooled + region to two-phase region). However, functions are + implemented to reach a smooth transition between the + regions and to avoid these discontinuities as far as + possible. (Sangi et al., 2014) +
                                    4. +
                                    +

                                    + Typical use and important parameters +

                                    +

                                    + The refrigerant models provided in this package are + typically used for heat pumps and refrigerating machines. + However, it is just a partial package and, hence, it must + be completed before usage. In order to allow an easy + completion of the package, a template is provided in + + AixLib.Media.Refrigerants.Interfaces.TemplateHybridTwoPhaseMediumFormula. +

                                    +

                                    + References +

                                    +

                                    + Thorade, Matthis; Saadat, Ali (2012): HelmholtzMedia + - A fluid properties library. In: Proceedings of + the 9th International Modelica Conference; September + 3-5; 2012; Munich; Germany. Linköping University + Electronic Press, S. 63–70. +

                                    +

                                    + Thorade, Matthis; Saadat, Ali (2013): + Partial derivatives of thermodynamic state properties for + dynamic simulation. In: Environmental earth + sciences 70 (8), S. 3497–3503. +

                                    +

                                    + Sangi, Roozbeh; Jahangiri, Pooyan; Klasing, Freerk; + Streblow, Rita; Müller, Dirk (2014): A Medium Model for + the Refrigerant Propane for Fast and Accurate Dynamic + Simulations. In: The 10th International Modelica + Conference. Lund, Sweden, March 10-12, 2014: + Linköping University Electronic Press (Linköping + Electronic Conference Proceedings), S. 1271–1275 +

                                    +

                                    + Klasing,Freerk: A New Design for Direct Exchange + Geothermal Heat Pumps - Modeling, Simulation and Exergy + Analysis. Master thesis +

                                    +
                                    +
                                    +
                                    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                    -

                                    - Temperature_ph -

                                    -
                                    -

                                    - First Input -

                                    -
                                    -

                                    - - -

                                    -
                                    -

                                    - Second Input -

                                    -
                                    -

                                    - - -

                                    -
                                    -

                                    - Temperature_ps -

                                    -
                                    -

                                    - First Input -

                                    -
                                    -

                                    - - -

                                    -
                                    -

                                    - Second Input -

                                    -
                                    -

                                    - - -

                                    -
                                    -

                                    - Density_pT -

                                    -
                                    -

                                    - First Input -

                                    -
                                    -

                                    - - -

                                    -
                                    -

                                    - Second Input -

                                    -
                                    -

                                    - - -

                                    -
                                    -

                                    - Functional approach -

                                    -
                                    -

                                    - - -

                                    -
                                    -

                                    - As it can be seen, the fitted formulas consist basically of the - coefficients ei, ci as well as of the - parameters Meani and Stdi. These coefficients - are the fitting coefficients and must be obtained during a fitting - procedure. While the fitting procedure, the formulas presented above - are fitted to external data (e.g. obtained from measurements or - external media libraries) and the fitting coefficients are - determined. Finally, the formulas obtained during the fitting - procedure are implemented in an explicit form. -

                                    -

                                    - For further information of the hybrid approach, please read - the paper \"A Medium - Model for the Refrigerant Propane for Fast and Accurate Dynamic - Simulations\" by Sangi et al.. -

                                    -

                                    - Smooth transition -

                                    -

                                    - To ensure a smooth transition between different regions (e.g. from - supercooled region to two-phase region) and, therefore, to avoid - discontinuities as far as possible, Sangi et al. implemented - functions for a smooth transition between the regions. An example - (i.e. specificEnthalpy_ps) of these functions is given below:
                                    -

                                    - - - - - - - - - - - - - -
                                    -

                                    - From supercooled region to bubble line and vice versa -

                                    -
                                    -

                                    - - -

                                    -
                                    -

                                    - From dew line to superheated region and vice versa -

                                    -
                                    -

                                    - - -

                                    -
                                    -

                                    - From bubble or dew line to two-phase region and vice - versa -

                                    -
                                    -

                                    - - -

                                    -
                                    -

                                    - Assumptions and limitations -

                                    -

                                    - Two limitations are known for this package: -

                                    -
                                      -
                                    1. The modelling approach implemented in this package is a hybrid - approach and, therefore, is based on the Helmholtz equation of state - as well as on fitted formula. Hence, the refrigerant model is just - valid within the valid range of the fitted formula. -
                                    2. -
                                    3. It may be possible to have discontinuities when moving from one - region to another (e.g. from supercooled region to two-phase region). - However, functions are implemented to reach a smooth transition - between the regions and to avoid these discontinuities as far as - possible. (Sangi et al., 2014) -
                                    4. -
                                    -

                                    - Typical use and important parameters -

                                    -

                                    - The refrigerant models provided in this package are typically used - for heat pumps and refrigerating machines. However, it is just a - partial package and, hence, it must be completed before usage. In - order to allow an easy completion of the package, a template is - provided in - AixLib.Media.Refrigerants.Interfaces.TemplateHybridTwoPhaseMediumFormula. -

                                    -

                                    - References -

                                    -

                                    - Thorade, Matthis; Saadat, Ali (2012): HelmholtzMedia - A - fluid properties library. In: Proceedings of the 9th - International Modelica Conference; September 3-5; 2012; Munich; - Germany. Linköping University Electronic Press, S. 63–70. -

                                    -

                                    - Thorade, Matthis; Saadat, Ali (2013): - Partial derivatives of thermodynamic state properties for dynamic - simulation. In: Environmental earth sciences 70 (8), S. - 3497–3503. -

                                    -

                                    - Sangi, Roozbeh; Jahangiri, Pooyan; Klasing, Freerk; Streblow, Rita; - Müller, Dirk (2014): A - Medium Model for the Refrigerant Propane for Fast and Accurate - Dynamic Simulations. In: The 10th International Modelica - Conference. Lund, Sweden, March 10-12, 2014: Linköping University - Electronic Press (Linköping Electronic Conference Proceedings), S. - 1271–1275 -

                                    -

                                    - Klasing,Freerk: A New Design for Direct Exchange Geothermal Heat - Pumps - Modeling, Simulation and Exergy Analysis. Master - thesis -

                                    ")); end PartialHybridTwoPhaseMediumFormula; diff --git a/AixLib/Media/Refrigerants/Interfaces/PartialHybridTwoPhaseMediumRecord.mo b/AixLib/Media/Refrigerants/Interfaces/PartialHybridTwoPhaseMediumRecord.mo index 1aea627d31..e9d989c64c 100644 --- a/AixLib/Media/Refrigerants/Interfaces/PartialHybridTwoPhaseMediumRecord.mo +++ b/AixLib/Media/Refrigerants/Interfaces/PartialHybridTwoPhaseMediumRecord.mo @@ -1,4 +1,4 @@ -within AixLib.Media.Refrigerants.Interfaces; +within AixLib.Media.Refrigerants.Interfaces; partial package PartialHybridTwoPhaseMediumRecord "Base class for two phase medium using a hybrid approach with records" extends AixLib.Media.Refrigerants.Interfaces.PartialHybridTwoPhaseMediumFormula; @@ -1212,393 +1212,417 @@ partial package PartialHybridTwoPhaseMediumRecord developed by Sangi et al. within their \"Fast_Propane\" model and given below:

                                    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
                                    -

                                    - Saturation pressure -

                                    -
                                    -

                                    - \"Formula -

                                    -
                                    -

                                    - Saturation temperature -

                                    -
                                    -

                                    - \"Formula -

                                    -
                                    -

                                    - Bubble density -

                                    -
                                    -

                                    - \"Formula -

                                    -
                                    -

                                    - Dew density -

                                    -
                                    -

                                    - \"Formula -

                                    -
                                    -

                                    - Bubble Enthalpy -

                                    -
                                    -

                                    - \"Formula -

                                    -
                                    -

                                    - Dew Enthalpy -

                                    -
                                    -

                                    - \"Formula -

                                    -
                                    -

                                    - Bubble Entropy -

                                    -
                                    -

                                    - \"Formula -

                                    -
                                    -

                                    - Dew Entropy -

                                    -
                                    -

                                    - \"Formula -

                                    -
                                    +
                                    + \"Formulas for calculating saturation properties\" cellspacing=\"0\" + cellpadding=\"2\" border=\"1\" width=\"80%\" style= + \"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                    +

                                    + Saturation pressure +

                                    +
                                    +

                                    + \"Formula +

                                    +
                                    +

                                    + Saturation temperature +

                                    +
                                    +

                                    + \"Formula +

                                    +
                                    +

                                    + Bubble density +

                                    +
                                    +

                                    + \"Formula +

                                    +
                                    +

                                    + Dew density +

                                    +
                                    +

                                    + \"Formula +

                                    +
                                    +

                                    + Bubble Enthalpy +

                                    +
                                    +

                                    + \"Formula +

                                    +
                                    +

                                    + Dew Enthalpy +

                                    +
                                    +

                                    + \"Formula +

                                    +
                                    +

                                    + Bubble Entropy +

                                    +
                                    +

                                    + \"Formula +

                                    +
                                    +

                                    + Dew Entropy +

                                    +
                                    +

                                    + \"Formula +

                                    +
                                    + + +
                                    + \"Formulas for calculating thermodynamic properties at + superheated and supercooled regime\" cellspacing=\"0\" + cellpadding=\"3\" border=\"1\" width=\"80%\" style= + \"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                    +

                                    + Temperature_ph +

                                    +
                                    +

                                    + First Input +

                                    +
                                    +

                                    + + +

                                    +
                                    +

                                    + Second Input +

                                    +
                                    +

                                    + + +

                                    +
                                    +

                                    + Temperature_ps +

                                    +
                                    +

                                    + First Input +

                                    +
                                    +

                                    + + +

                                    +
                                    +

                                    + Second Input +

                                    +
                                    +

                                    + + +

                                    +
                                    +

                                    + Density_pT +

                                    +
                                    +

                                    + First Input +

                                    +
                                    +

                                    + + +

                                    +
                                    +

                                    + Second Input +

                                    +
                                    +

                                    + + +

                                    +
                                    +

                                    + Functional approach +

                                    +
                                    +

                                    + + +

                                    +
                                    +

                                    + As it can be seen, the fitted formulas consist basically of + the coefficients ei, ci as well as of + the parameters Meani and Stdi. These + coefficients are the fitting coefficients and must be + obtained during a fitting procedure. While the fitting + procedure, the formulas presented above are fitted to + external data (e.g. obtained from measurements or external + media libraries) and the fitting coefficients are determined. + In order to keep the package clear and easy to extend, the + fitting coefficients are stored in records inherited from the + base data definition + AixLib.DataBase.Media.Refrigerants.BubbleDewStatePropertiesBaseDataDefinition + and + AixLib.DataBase.Media.Refrigerants.ThermodynamicStatePropertiesBaseDataDefinition + . +

                                    +

                                    + For further information of the hybrid approach, please + read the paper \" A Medium Model for the + Refrigerant Propane for Fast and Accurate Dynamic + Simulations\" by Sangi et al.. +

                                    +

                                    + Smooth transition +

                                    +

                                    + To ensure a smooth transition between different regions (e.g. + from supercooled region to two-phase region) and, therefore, + to avoid discontinuities as far as possible, Sangi et al. + implemented functions for a smooth transition between the + regions. An example (i.e. specificEnthalpy_ps) of these + functions is given below:
                                    +

                                    + + +
                                    + \"Calculation procedures to avoid numerical instability at + phase change\" cellspacing=\"0\" cellpadding=\"2\" border=\"1\" + width=\"80%\" style= \"border-collapse:collapse;\"> + + + + + + + + + + + + + +
                                    +

                                    + From supercooled region to bubble line and vice + versa +

                                    +
                                    +

                                    + + +

                                    +
                                    +

                                    + From dew line to superheated region and vice + versa +

                                    +
                                    +

                                    + + +

                                    +
                                    +

                                    + From bubble or dew line to two-phase region and + vice versa +

                                    +
                                    +

                                    + + +

                                    +
                                    +

                                    + Assumptions and limitations +

                                    +

                                    + Two limitations are known for this package: +

                                    +
                                      +
                                    1. The modelling approach implemented in this package is + a hybrid approach and, therefore, is based on the + Helmholtz equation of state as well as on fitted formula. + Hence, the refrigerant model is just valid within the + valid range of the fitted formula. +
                                    2. +
                                    3. It may be possible to have discontinuities when + moving from one region to another (e.g. from supercooled + region to two-phase region). However, functions are + implemented to reach a smooth transition between the + regions and to avoid these discontinuities as far as + possible. (Sangi et al., 2014) +
                                    4. +
                                    +

                                    + Typical use and important parameters +

                                    +

                                    + The refrigerant models provided in this package are + typically used for heat pumps and refrigerating machines. + However, it is just a partial package and, hence, it must + be completed before usage. In order to allow an easy + completion of the package, a template is provided in + + AixLib.Media.Refrigerants.Interfaces.TemplateHybridTwoPhaseMediumRecord. +

                                    +

                                    + References +

                                    +

                                    + Thorade, Matthis; Saadat, Ali (2012): HelmholtzMedia + - A fluid properties library. In: Proceedings of + the 9th International Modelica Conference; September + 3-5; 2012; Munich; Germany. Linköping University + Electronic Press, S. 63–70. +

                                    +

                                    + Thorade, Matthis; Saadat, Ali (2013): + Partial derivatives of thermodynamic state properties for + dynamic simulation. In: Environmental earth + sciences 70 (8), S. 3497–3503. +

                                    +

                                    + Sangi, Roozbeh; Jahangiri, Pooyan; Klasing, Freerk; + Streblow, Rita; Müller, Dirk (2014): A Medium Model for + the Refrigerant Propane for Fast and Accurate Dynamic + Simulations. In: The 10th International Modelica + Conference. Lund, Sweden, March 10-12, 2014: + Linköping University Electronic Press (Linköping + Electronic Conference Proceedings), S. 1271–1275 +

                                    +

                                    + Klasing,Freerk: A New Design for Direct Exchange + Geothermal Heat Pumps - Modeling, Simulation and Exergy + Analysis. Master thesis +

                                    +
                                    +
                                    +
                                    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                    -

                                    - Temperature_ph -

                                    -
                                    -

                                    - First Input -

                                    -
                                    -

                                    - - -

                                    -
                                    -

                                    - Second Input -

                                    -
                                    -

                                    - - -

                                    -
                                    -

                                    - Temperature_ps -

                                    -
                                    -

                                    - First Input -

                                    -
                                    -

                                    - - -

                                    -
                                    -

                                    - Second Input -

                                    -
                                    -

                                    - - -

                                    -
                                    -

                                    - Density_pT -

                                    -
                                    -

                                    - First Input -

                                    -
                                    -

                                    - - -

                                    -
                                    -

                                    - Second Input -

                                    -
                                    -

                                    - - -

                                    -
                                    -

                                    - Functional approach -

                                    -
                                    -

                                    - - -

                                    -
                                    -

                                    - As it can be seen, the fitted formulas consist basically of the - coefficients ei, ci as well as of the - parameters Meani and Stdi. These coefficients - are the fitting coefficients and must be obtained during a fitting - procedure. While the fitting procedure, the formulas presented above - are fitted to external data (e.g. obtained from measurements or - external media libraries) and the fitting coefficients are - determined. In order to keep the package clear and easy to extend, - the fitting coefficients are stored in records inherited from the - base data definition - AixLib.DataBase.Media.Refrigerants.BubbleDewStatePropertiesBaseDataDefinition - and - AixLib.DataBase.Media.Refrigerants.ThermodynamicStatePropertiesBaseDataDefinition - . -

                                    -

                                    - For further information of the hybrid approach, please read - the paper \" A Medium - Model for the Refrigerant Propane for Fast and Accurate Dynamic - Simulations\" by Sangi et al.. -

                                    -

                                    - Smooth transition -

                                    -

                                    - To ensure a smooth transition between different regions (e.g. from - supercooled region to two-phase region) and, therefore, to avoid - discontinuities as far as possible, Sangi et al. implemented - functions for a smooth transition between the regions. An example - (i.e. specificEnthalpy_ps) of these functions is given below:
                                    -

                                    - - - - - - - - - - - - - -
                                    -

                                    - From supercooled region to bubble line and vice versa -

                                    -
                                    -

                                    - - -

                                    -
                                    -

                                    - From dew line to superheated region and vice versa -

                                    -
                                    -

                                    - - -

                                    -
                                    -

                                    - From bubble or dew line to two-phase region and vice - versa -

                                    -
                                    -

                                    - - -

                                    -
                                    -

                                    - Assumptions and limitations -

                                    -

                                    - Two limitations are known for this package: -

                                    -
                                      -
                                    1. The modelling approach implemented in this package is a hybrid - approach and, therefore, is based on the Helmholtz equation of state - as well as on fitted formula. Hence, the refrigerant model is just - valid within the valid range of the fitted formula. -
                                    2. -
                                    3. It may be possible to have discontinuities when moving from one - region to another (e.g. from supercooled region to two-phase region). - However, functions are implemented to reach a smooth transition - between the regions and to avoid these discontinuities as far as - possible. (Sangi et al., 2014) -
                                    4. -
                                    -

                                    - Typical use and important parameters -

                                    -

                                    - The refrigerant models provided in this package are typically used - for heat pumps and refrigerating machines. However, it is just a - partial package and, hence, it must be completed before usage. In - order to allow an easy completion of the package, a template is - provided in - AixLib.Media.Refrigerants.Interfaces.TemplateHybridTwoPhaseMediumRecord. -

                                    -

                                    - References -

                                    -

                                    - Thorade, Matthis; Saadat, Ali (2012): HelmholtzMedia - A - fluid properties library. In: Proceedings of the 9th - International Modelica Conference; September 3-5; 2012; Munich; - Germany. Linköping University Electronic Press, S. 63–70. -

                                    -

                                    - Thorade, Matthis; Saadat, Ali (2013): - Partial derivatives of thermodynamic state properties for dynamic - simulation. In: Environmental earth sciences 70 (8), S. - 3497–3503. -

                                    -

                                    - Sangi, Roozbeh; Jahangiri, Pooyan; Klasing, Freerk; Streblow, Rita; - Müller, Dirk (2014): A - Medium Model for the Refrigerant Propane for Fast and Accurate - Dynamic Simulations. In: The 10th International Modelica - Conference. Lund, Sweden, March 10-12, 2014: Linköping University - Electronic Press (Linköping Electronic Conference Proceedings), S. - 1271–1275 -

                                    -

                                    - Klasing,Freerk: A New Design for Direct Exchange Geothermal Heat - Pumps - Modeling, Simulation and Exergy Analysis. Master - thesis -

                                    ")); end PartialHybridTwoPhaseMediumRecord; diff --git a/AixLib/Media/Refrigerants/Interfaces/TemplateHybridTwoPhaseMediumFormula.mo b/AixLib/Media/Refrigerants/Interfaces/TemplateHybridTwoPhaseMediumFormula.mo index a86d87ac90..8724460a6e 100644 --- a/AixLib/Media/Refrigerants/Interfaces/TemplateHybridTwoPhaseMediumFormula.mo +++ b/AixLib/Media/Refrigerants/Interfaces/TemplateHybridTwoPhaseMediumFormula.mo @@ -1,4 +1,4 @@ -within AixLib.Media.Refrigerants.Interfaces; +within AixLib.Media.Refrigerants.Interfaces; partial package TemplateHybridTwoPhaseMediumFormula "Template for media models using a hybrid approach without records" @@ -29,7 +29,8 @@ partial package TemplateHybridTwoPhaseMediumFormula are the refrigerant name as well as the valid refrigerant limits in terms of specific enthalpy, density, absolute pressure and temperature. */ - extends AixLib.Media.Refrigerants.Interfaces.PartialHybridTwoPhaseMediumFormula( + extends + AixLib.Media.Refrigerants.Interfaces.PartialHybridTwoPhaseMediumFormula( mediumName="Name", substanceNames={"Name"}, singleState=false, @@ -55,8 +56,7 @@ partial package TemplateHybridTwoPhaseMediumFormula max=423.15), smoothModel=true, onePhase=false, - ThermoStates= - .Modelica.Media.Interfaces.PartialMedium.Choices.IndependentVariables.phX, + ThermoStates=.Modelica.Media.Interfaces.Choices.IndependentVariables.phX, fluidConstants=refrigerantConstants); /*The vector substanceNames is mandatory, as the number of substances is determined based on its size. Here we assume diff --git a/AixLib/Media/Refrigerants/Interfaces/TemplateHybridTwoPhaseMediumRecord.mo b/AixLib/Media/Refrigerants/Interfaces/TemplateHybridTwoPhaseMediumRecord.mo index f266c03db5..80a821d66b 100644 --- a/AixLib/Media/Refrigerants/Interfaces/TemplateHybridTwoPhaseMediumRecord.mo +++ b/AixLib/Media/Refrigerants/Interfaces/TemplateHybridTwoPhaseMediumRecord.mo @@ -1,4 +1,4 @@ -within AixLib.Media.Refrigerants.Interfaces; +within AixLib.Media.Refrigerants.Interfaces; partial package TemplateHybridTwoPhaseMediumRecord "Template for media models using a hybrid approach with records" @@ -29,7 +29,8 @@ partial package TemplateHybridTwoPhaseMediumRecord are the refrigerant name as well as the valid refrigerant limits in terms of specific enthalpy, density, absolute pressure and temperature. */ - extends AixLib.Media.Refrigerants.Interfaces.PartialHybridTwoPhaseMediumRecord( + extends + AixLib.Media.Refrigerants.Interfaces.PartialHybridTwoPhaseMediumRecord( mediumName="Name", substanceNames={"Name"}, singleState=false, @@ -55,8 +56,7 @@ partial package TemplateHybridTwoPhaseMediumRecord max=423.15), smoothModel=true, onePhase=false, - ThermoStates= - .Modelica.Media.Interfaces.PartialMedium.Choices.IndependentVariables.phX, + ThermoStates=.Modelica.Media.Interfaces.Choices.IndependentVariables.phX, fluidConstants=refrigerantConstants); /*The vector substanceNames is mandatory, as the number of substances is determined based on its size. Here we assume diff --git a/AixLib/Media/Refrigerants/R134a/R134a_IIR_P1_395_T233_370_Formula.mo b/AixLib/Media/Refrigerants/R134a/R134a_IIR_P1_395_T233_370_Formula.mo index 8bdfe5fe44..bd6e957078 100644 --- a/AixLib/Media/Refrigerants/R134a/R134a_IIR_P1_395_T233_370_Formula.mo +++ b/AixLib/Media/Refrigerants/R134a/R134a_IIR_P1_395_T233_370_Formula.mo @@ -1,4 +1,4 @@ -within AixLib.Media.Refrigerants.R134a; +within AixLib.Media.Refrigerants.R134a; package R134a_IIR_P1_395_T233_370_Formula "Refrigerant model for R134a using a hybrid approach with explicit formulas" @@ -54,7 +54,6 @@ package R134a_IIR_P1_395_T233_370_Formula max=367.15), smoothModel=true, onePhase=false, - ThermoStates=Choices.IndependentVariables.phX, fluidConstants=refrigerantConstants); /*The vector substanceNames is mandatory, as the number of substances is determined based on its size. Here we assume @@ -1494,109 +1493,116 @@ package R134a_IIR_P1_395_T233_370_Formula The implemented coefficients are fitted to external data by Engelpracht and are valid within the following range:

                                    - - - - - - - - - - - - - - - - +
                                    -

                                    - Parameter -

                                    -
                                    -

                                    - Minimum Value -

                                    -
                                    -

                                    - Maximum Value -

                                    -
                                    -

                                    - Pressure (p) in bar -

                                    -
                                    -

                                    - 1 -

                                    -
                                    -

                                    - 39.5 -

                                    -
                                    -

                                    - Temperature (T) in K -

                                    -
                                    -

                                    - 233.15 -

                                    -
                                    -

                                    - 370.15 -

                                    -
                                    +
                                    + \"Range of validiry\" cellspacing=\"0\" cellpadding=\"2\" border=\"1\" + width=\"30%\" style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + +
                                    +

                                    + Parameter +

                                    +
                                    +

                                    + Minimum Value +

                                    +
                                    +

                                    + Maximum Value +

                                    +
                                    +

                                    + Pressure (p) in bar +

                                    +
                                    +

                                    + 1 +

                                    +
                                    +

                                    + 39.5 +

                                    +
                                    +

                                    + Temperature (T) in K +

                                    +
                                    +

                                    + 233.15 +

                                    +
                                    +

                                    + 370.15 +

                                    +
                                    +

                                    + The reference point is defined as 200 kJ/kg and 1 kJ/kg/K, + respectively, for enthalpy and entropy for the saturated liquid + at 273.15 K. +

                                    +

                                    + Validation +

                                    +

                                    + The model is validated by comparing results obtained from the + example model + AixLib.Media.Refrigerants.Examples.RefrigerantProperties to + external data (e.g. obtained from measurements or external media + libraries). +

                                    +

                                    + References +

                                    +

                                    + Tillner-Roth, R.; Baehr, H. D. (1994): An International Standard + Formulation for the thermodynamic Properties of + 1,1,1,2|Tetrafluoroethane (HFC|134a) for Temperatures from 170 K + to 455 K and Pressures up to 70 MPa. In: Journal of physical + and chemical reference data (23), S. 657–729. DOI: + 10.1063/1.555958. +

                                    +

                                    + Huber, Marcia L.; Laesecke, Arno; Perkins, Richard A. (2003): + Model for the Viscosity and Thermal Conductivity of Refrigerants, + Including a New Correlation for the Viscosity of R134a. In: + Ind. Eng. Chem. Res. 42 (13) , S. 3163–3178. DOI: + 10.1021/ie0300880. +

                                    +

                                    + Perkins, R. A.; Laesecke, A.; Howley, J.; Ramires, M. L. V.; + Gurova, A. N.; Cusco, L. (2000): Experimental thermal + conductivity values for the IUPAC round-robin sample of + 1,1,1,2-tetrafluoroethane (R134a). Gaithersburg, MD: National + Institute of Standards and Technology. +

                                    +

                                    + Mulero, A.; Cachadiña, I.; Parra, M. I. (2012): Recommended + Correlations for the Surface Tension of Common Fluids. In: + Journal of physical and chemical reference data 41 (4), S. + 43105. DOI: 10.1063/1.4768782. +

                                    +

                                    + Engelpracht, Mirko (2017): Development of modular and scalable + simulation models for heat pumps and chillers considering various + refrigerants. Master Thesis +

                                    +
                                    -

                                    - The reference point is defined as 200 kJ/kg and 1 kJ/kg/K, - respectively, for enthalpy and entropy for the saturated liquid at - 273.15 K. -

                                    -

                                    - Validation -

                                    -

                                    - The model is validated by comparing results obtained from the example - model - AixLib.Media.Refrigerants.Examples.RefrigerantProperties to - external data (e.g. obtained from measurements or external media - libraries). -

                                    -

                                    - References -

                                    -

                                    - Tillner-Roth, R.; Baehr, H. D. (1994): An International Standard - Formulation for the thermodynamic Properties of - 1,1,1,2|Tetrafluoroethane (HFC|134a) for Temperatures from 170 K to - 455 K and Pressures up to 70 MPa. In: Journal of physical and - chemical reference data (23), S. 657–729. DOI: 10.1063/1.555958. -

                                    -

                                    - Huber, Marcia L.; Laesecke, Arno; Perkins, Richard A. (2003): Model - for the Viscosity and Thermal Conductivity of Refrigerants, Including - a New Correlation for the Viscosity of R134a. In: Ind. Eng. Chem. - Res. 42 (13) , S. 3163–3178. DOI: 10.1021/ie0300880. -

                                    -

                                    - Perkins, R. A.; Laesecke, A.; Howley, J.; Ramires, M. L. V.; Gurova, - A. N.; Cusco, L. (2000): Experimental thermal conductivity values for - the IUPAC round-robin sample of 1,1,1,2-tetrafluoroethane (R134a). - Gaithersburg, MD: National Institute of Standards and - Technology. -

                                    -

                                    - Mulero, A.; Cachadiña, I.; Parra, M. I. (2012): Recommended - Correlations for the Surface Tension of Common Fluids. In: Journal - of physical and chemical reference data 41 (4), S. 43105. DOI: - 10.1063/1.4768782. -

                                    -

                                    - Engelpracht, Mirko (2017): Development of modular and scalable - simulation models for heat pumps and chillers considering various - refrigerants. Master Thesis -

                                    ")); end R134a_IIR_P1_395_T233_370_Formula; diff --git a/AixLib/Media/Refrigerants/R134a/R134a_IIR_P1_395_T233_370_Record.mo b/AixLib/Media/Refrigerants/R134a/R134a_IIR_P1_395_T233_370_Record.mo index dc11176ec9..379f19e35c 100644 --- a/AixLib/Media/Refrigerants/R134a/R134a_IIR_P1_395_T233_370_Record.mo +++ b/AixLib/Media/Refrigerants/R134a/R134a_IIR_P1_395_T233_370_Record.mo @@ -1,4 +1,4 @@ -within AixLib.Media.Refrigerants.R134a; +within AixLib.Media.Refrigerants.R134a; package R134a_IIR_P1_395_T233_370_Record "Refrigerant model for R134a using a hybrid approach with recods" @@ -54,7 +54,6 @@ package R134a_IIR_P1_395_T233_370_Record max=367.15), smoothModel=true, onePhase=false, - ThermoStates=Choices.IndependentVariables.phX, fluidConstants=refrigerantConstants); /*The vector substanceNames is mandatory, as the number of substances is determined based on its size. Here we assume @@ -488,109 +487,116 @@ package R134a_IIR_P1_395_T233_370_Record The implemented coefficients are fitted to external data by Engelpracht and are valid within the following range:

                                    - - - - - - - - - - - - - - - - +
                                    -

                                    - Parameter -

                                    -
                                    -

                                    - Minimum Value -

                                    -
                                    -

                                    - Maximum Value -

                                    -
                                    -

                                    - Pressure (p) in bar -

                                    -
                                    -

                                    - 1 -

                                    -
                                    -

                                    - 39.5 -

                                    -
                                    -

                                    - Temperature (T) in K -

                                    -
                                    -

                                    - 233.15 -

                                    -
                                    -

                                    - 370.15 -

                                    -
                                    +
                                    + \"Range of validiry\" cellspacing=\"0\" cellpadding=\"2\" border=\"1\" + width=\"30%\" style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + +
                                    +

                                    + Parameter +

                                    +
                                    +

                                    + Minimum Value +

                                    +
                                    +

                                    + Maximum Value +

                                    +
                                    +

                                    + Pressure (p) in bar +

                                    +
                                    +

                                    + 1 +

                                    +
                                    +

                                    + 39.5 +

                                    +
                                    +

                                    + Temperature (T) in K +

                                    +
                                    +

                                    + 233.15 +

                                    +
                                    +

                                    + 370.15 +

                                    +
                                    +

                                    + The reference point is defined as 200 kJ/kg and 1 kJ/kg/K, + respectively, for enthalpy and entropy for the saturated liquid + at 273.15 K. +

                                    +

                                    + Validation +

                                    +

                                    + The model is validated by comparing results obtained from the + example model + AixLib.Media.Refrigerants.Examples.RefrigerantProperties to + external data (e.g. obtained from measurements or external media + libraries). +

                                    +

                                    + References +

                                    +

                                    + Tillner-Roth, R.; Baehr, H. D. (1994): An International Standard + Formulation for the thermodynamic Properties of + 1,1,1,2|Tetrafluoroethane (HFC|134a) for Temperatures from 170 K + to 455 K and Pressures up to 70 MPa. In: Journal of physical + and chemical reference data (23), S. 657–729. DOI: + 10.1063/1.555958 . +

                                    +

                                    + Huber, Marcia L.; Laesecke, Arno; Perkins, Richard A. (2003): + Model for the Viscosity and Thermal Conductivity of Refrigerants, + Including a New Correlation for the Viscosity of R134a. In: + Ind. Eng. Chem. Res. 42 (13) , S. 3163–3178. DOI: + 10.1021/ie0300880 . +

                                    +

                                    + Perkins, R. A.; Laesecke, A.; Howley, J.; Ramires, M. L. V.; + Gurova, A. N.; Cusco, L. (2000): Experimental thermal + conductivity values for the IUPAC round-robin sample of + 1,1,1,2-tetrafluoroethane (R134a). Gaithersburg, MD: National + Institute of Standards and Technology. +

                                    +

                                    + Mulero, A.; Cachadiña, I.; Parra, M. I. (2012): Recommended + Correlations for the Surface Tension of Common Fluids. In: + Journal of physical and chemical reference data 41 (4), S. + 43105. DOI: 10.1063/1.4768782 . +

                                    +

                                    + Engelpracht, Mirko (2017): Development of modular and scalable + simulation models for heat pumps and chillers considering various + refrigerants. Master Thesis +

                                    +
                                    -

                                    - The reference point is defined as 200 kJ/kg and 1 kJ/kg/K, - respectively, for enthalpy and entropy for the saturated liquid at - 273.15 K. -

                                    -

                                    - Validation -

                                    -

                                    - The model is validated by comparing results obtained from the example - model - AixLib.Media.Refrigerants.Examples.RefrigerantProperties to - external data (e.g. obtained from measurements or external media - libraries). -

                                    -

                                    - References -

                                    -

                                    - Tillner-Roth, R.; Baehr, H. D. (1994): An International Standard - Formulation for the thermodynamic Properties of - 1,1,1,2|Tetrafluoroethane (HFC|134a) for Temperatures from 170 K to - 455 K and Pressures up to 70 MPa. In: Journal of physical and - chemical reference data (23), S. 657–729. DOI: 10.1063/1.555958. -

                                    -

                                    - Huber, Marcia L.; Laesecke, Arno; Perkins, Richard A. (2003): Model - for the Viscosity and Thermal Conductivity of Refrigerants, Including - a New Correlation for the Viscosity of R134a. In: Ind. Eng. Chem. - Res. 42 (13) , S. 3163–3178. DOI: 10.1021/ie0300880. -

                                    -

                                    - Perkins, R. A.; Laesecke, A.; Howley, J.; Ramires, M. L. V.; Gurova, - A. N.; Cusco, L. (2000): Experimental thermal conductivity values for - the IUPAC round-robin sample of 1,1,1,2-tetrafluoroethane (R134a). - Gaithersburg, MD: National Institute of Standards and - Technology. -

                                    -

                                    - Mulero, A.; Cachadiña, I.; Parra, M. I. (2012): Recommended - Correlations for the Surface Tension of Common Fluids. In: Journal - of physical and chemical reference data 41 (4), S. 43105. DOI: - 10.1063/1.4768782. -

                                    -

                                    - Engelpracht, Mirko (2017): Development of modular and scalable - simulation models for heat pumps and chillers considering various - refrigerants. Master Thesis -

                                    ")); end R134a_IIR_P1_395_T233_370_Record; diff --git a/AixLib/Media/Refrigerants/R134a/R134a_IIR_P1_395_T233_455_Formula.mo b/AixLib/Media/Refrigerants/R134a/R134a_IIR_P1_395_T233_455_Formula.mo index 5a3a3c400c..400be4bedf 100644 --- a/AixLib/Media/Refrigerants/R134a/R134a_IIR_P1_395_T233_455_Formula.mo +++ b/AixLib/Media/Refrigerants/R134a/R134a_IIR_P1_395_T233_455_Formula.mo @@ -1,4 +1,4 @@ -within AixLib.Media.Refrigerants.R134a; +within AixLib.Media.Refrigerants.R134a; package R134a_IIR_P1_395_T233_455_Formula "Refrigerant model for R134a using a hybrid approach with explicit formulas" @@ -54,7 +54,6 @@ package R134a_IIR_P1_395_T233_455_Formula max=473.15), smoothModel=true, onePhase=false, - ThermoStates=Choices.IndependentVariables.phX, fluidConstants=refrigerantConstants); /*The vector substanceNames is mandatory, as the number of substances is determined based on its size. Here we assume @@ -1510,109 +1509,116 @@ package R134a_IIR_P1_395_T233_455_Formula The implemented coefficients are fitted to external data by Engelpracht and are valid within the following range:

                                    - - - - - - - - - - - - - - - - +
                                    -

                                    - Parameter -

                                    -
                                    -

                                    - Minimum Value -

                                    -
                                    -

                                    - Maximum Value -

                                    -
                                    -

                                    - Pressure (p) in bar -

                                    -
                                    -

                                    - 1 -

                                    -
                                    -

                                    - 39.5 -

                                    -
                                    -

                                    - Temperature (T) in K -

                                    -
                                    -

                                    - 233.15 -

                                    -
                                    -

                                    - 455.15 -

                                    -
                                    +
                                    + \"Range of validiry\" cellspacing=\"0\" cellpadding=\"2\" border=\"1\" + width=\"30%\" style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + +
                                    +

                                    + Parameter +

                                    +
                                    +

                                    + Minimum Value +

                                    +
                                    +

                                    + Maximum Value +

                                    +
                                    +

                                    + Pressure (p) in bar +

                                    +
                                    +

                                    + 1 +

                                    +
                                    +

                                    + 39.5 +

                                    +
                                    +

                                    + Temperature (T) in K +

                                    +
                                    +

                                    + 233.15 +

                                    +
                                    +

                                    + 455.15 +

                                    +
                                    +

                                    + The reference point is defined as 200 kJ/kg and 1 kJ/kg/K, + respectively, for enthalpy and entropy for the saturated liquid + at 273.15 K. +

                                    +

                                    + Validation +

                                    +

                                    + The model is validated by comparing results obtained from the + example model + AixLib.Media.Refrigerants.Examples.RefrigerantProperties to + external data (e.g. obtained from measurements or external media + libraries). +

                                    +

                                    + References +

                                    +

                                    + Tillner-Roth, R.; Baehr, H. D. (1994): An International Standard + Formulation for the thermodynamic Properties of + 1,1,1,2|Tetrafluoroethane (HFC|134a) for Temperatures from 170 K + to 455 K and Pressures up to 70 MPa. In: Journal of physical + and chemical reference data (23), S. 657–729. DOI: + 10.1063/1.555958 . +

                                    +

                                    + Huber, Marcia L.; Laesecke, Arno; Perkins, Richard A. (2003): + Model for the Viscosity and Thermal Conductivity of Refrigerants, + Including a New Correlation for the Viscosity of R134a. In: + Ind. Eng. Chem. Res. 42 (13) , S. 3163–3178. DOI: + 10.1021/ie0300880 . +

                                    +

                                    + Perkins, R. A.; Laesecke, A.; Howley, J.; Ramires, M. L. V.; + Gurova, A. N.; Cusco, L. (2000): Experimental thermal + conductivity values for the IUPAC round-robin sample of + 1,1,1,2-tetrafluoroethane (R134a). Gaithersburg, MD: National + Institute of Standards and Technology. +

                                    +

                                    + Mulero, A.; Cachadiña, I.; Parra, M. I. (2012): Recommended + Correlations for the Surface Tension of Common Fluids. In: + Journal of physical and chemical reference data 41 (4), S. + 43105. DOI: 10.1063/1.4768782 . +

                                    +

                                    + Engelpracht, Mirko (2017): Development of modular and scalable + simulation models for heat pumps and chillers considering various + refrigerants. Master Thesis +

                                    +
                                    -

                                    - The reference point is defined as 200 kJ/kg and 1 kJ/kg/K, - respectively, for enthalpy and entropy for the saturated liquid at - 273.15 K. -

                                    -

                                    - Validation -

                                    -

                                    - The model is validated by comparing results obtained from the example - model - AixLib.Media.Refrigerants.Examples.RefrigerantProperties to - external data (e.g. obtained from measurements or external media - libraries). -

                                    -

                                    - References -

                                    -

                                    - Tillner-Roth, R.; Baehr, H. D. (1994): An International Standard - Formulation for the thermodynamic Properties of - 1,1,1,2|Tetrafluoroethane (HFC|134a) for Temperatures from 170 K to - 455 K and Pressures up to 70 MPa. In: Journal of physical and - chemical reference data (23), S. 657–729. DOI: 10.1063/1.555958. -

                                    -

                                    - Huber, Marcia L.; Laesecke, Arno; Perkins, Richard A. (2003): Model - for the Viscosity and Thermal Conductivity of Refrigerants, Including - a New Correlation for the Viscosity of R134a. In: Ind. Eng. Chem. - Res. 42 (13) , S. 3163–3178. DOI: 10.1021/ie0300880. -

                                    -

                                    - Perkins, R. A.; Laesecke, A.; Howley, J.; Ramires, M. L. V.; Gurova, - A. N.; Cusco, L. (2000): Experimental thermal conductivity values for - the IUPAC round-robin sample of 1,1,1,2-tetrafluoroethane (R134a). - Gaithersburg, MD: National Institute of Standards and - Technology. -

                                    -

                                    - Mulero, A.; Cachadiña, I.; Parra, M. I. (2012): Recommended - Correlations for the Surface Tension of Common Fluids. In: Journal - of physical and chemical reference data 41 (4), S. 43105. DOI: - 10.1063/1.4768782. -

                                    -

                                    - Engelpracht, Mirko (2017): Development of modular and scalable - simulation models for heat pumps and chillers considering various - refrigerants. Master Thesis -

                                    ")); end R134a_IIR_P1_395_T233_455_Formula; diff --git a/AixLib/Media/Refrigerants/R134a/R134a_IIR_P1_395_T233_455_Horner.mo b/AixLib/Media/Refrigerants/R134a/R134a_IIR_P1_395_T233_455_Horner.mo index c3430866b1..f217a8c972 100644 --- a/AixLib/Media/Refrigerants/R134a/R134a_IIR_P1_395_T233_455_Horner.mo +++ b/AixLib/Media/Refrigerants/R134a/R134a_IIR_P1_395_T233_455_Horner.mo @@ -1,4 +1,4 @@ -within AixLib.Media.Refrigerants.R134a; +within AixLib.Media.Refrigerants.R134a; package R134a_IIR_P1_395_T233_455_Horner "Refrigerant model for R134a using a hybrid approach with explicit Horner formulas" @@ -55,7 +55,6 @@ package R134a_IIR_P1_395_T233_455_Horner max=473.15), smoothModel=true, onePhase=false, - ThermoStates=Choices.IndependentVariables.phX, fluidConstants=refrigerantConstants); /*The vector substanceNames is mandatory, as the number of substances is determined based on its size. Here we assume @@ -1470,109 +1469,116 @@ package R134a_IIR_P1_395_T233_455_Horner The implemented coefficients are fitted to external data by Engelpracht and are valid within the following range:

                                    - - - - - - - - - - - - - - - - +
                                    -

                                    - Parameter -

                                    -
                                    -

                                    - Minimum Value -

                                    -
                                    -

                                    - Maximum Value -

                                    -
                                    -

                                    - Pressure (p) in bar -

                                    -
                                    -

                                    - 1 -

                                    -
                                    -

                                    - 39.5 -

                                    -
                                    -

                                    - Temperature (T) in K -

                                    -
                                    -

                                    - 233.15 -

                                    -
                                    -

                                    - 455.15 -

                                    -
                                    +
                                    + \"Range of validiry\" cellspacing=\"0\" cellpadding=\"2\" border=\"1\" + width=\"30%\" style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + +
                                    +

                                    + Parameter +

                                    +
                                    +

                                    + Minimum Value +

                                    +
                                    +

                                    + Maximum Value +

                                    +
                                    +

                                    + Pressure (p) in bar +

                                    +
                                    +

                                    + 1 +

                                    +
                                    +

                                    + 39.5 +

                                    +
                                    +

                                    + Temperature (T) in K +

                                    +
                                    +

                                    + 233.15 +

                                    +
                                    +

                                    + 455.15 +

                                    +
                                    +

                                    + The reference point is defined as 200 kJ/kg and 1 kJ/kg/K, + respectively, for enthalpy and entropy for the saturated liquid + at 273.15 K. +

                                    +

                                    + Validation +

                                    +

                                    + The model is validated by comparing results obtained from the + example model + AixLib.Media.Refrigerants.Examples.RefrigerantProperties to + external data (e.g. obtained from measurements or external media + libraries). +

                                    +

                                    + References +

                                    +

                                    + Tillner-Roth, R.; Baehr, H. D. (1994): An International Standard + Formulation for the thermodynamic Properties of + 1,1,1,2|Tetrafluoroethane (HFC|134a) for Temperatures from 170 K + to 455 K and Pressures up to 70 MPa. In: Journal of physical + and chemical reference data (23), S. 657–729. DOI: + 10.1063/1.555958 . +

                                    +

                                    + Huber, Marcia L.; Laesecke, Arno; Perkins, Richard A. (2003): + Model for the Viscosity and Thermal Conductivity of Refrigerants, + Including a New Correlation for the Viscosity of R134a. In: + Ind. Eng. Chem. Res. 42 (13) , S. 3163–3178. DOI: + 10.1021/ie0300880 . +

                                    +

                                    + Perkins, R. A.; Laesecke, A.; Howley, J.; Ramires, M. L. V.; + Gurova, A. N.; Cusco, L. (2000): Experimental thermal + conductivity values for the IUPAC round-robin sample of + 1,1,1,2-tetrafluoroethane (R134a). Gaithersburg, MD: National + Institute of Standards and Technology. +

                                    +

                                    + Mulero, A.; Cachadiña, I.; Parra, M. I. (2012): Recommended + Correlations for the Surface Tension of Common Fluids. In: + Journal of physical and chemical reference data 41 (4), S. + 43105. DOI: 10.1063/1.4768782 . +

                                    +

                                    + Engelpracht, Mirko (2017): Development of modular and scalable + simulation models for heat pumps and chillers considering various + refrigerants. Master Thesis +

                                    +
                                    -

                                    - The reference point is defined as 200 kJ/kg and 1 kJ/kg/K, - respectively, for enthalpy and entropy for the saturated liquid at - 273.15 K. -

                                    -

                                    - Validation -

                                    -

                                    - The model is validated by comparing results obtained from the example - model - AixLib.Media.Refrigerants.Examples.RefrigerantProperties to - external data (e.g. obtained from measurements or external media - libraries). -

                                    -

                                    - References -

                                    -

                                    - Tillner-Roth, R.; Baehr, H. D. (1994): An International Standard - Formulation for the thermodynamic Properties of - 1,1,1,2|Tetrafluoroethane (HFC|134a) for Temperatures from 170 K to - 455 K and Pressures up to 70 MPa. In: Journal of physical and - chemical reference data (23), S. 657–729. DOI: 10.1063/1.555958. -

                                    -

                                    - Huber, Marcia L.; Laesecke, Arno; Perkins, Richard A. (2003): Model - for the Viscosity and Thermal Conductivity of Refrigerants, Including - a New Correlation for the Viscosity of R134a. In: Ind. Eng. Chem. - Res. 42 (13) , S. 3163–3178. DOI: 10.1021/ie0300880. -

                                    -

                                    - Perkins, R. A.; Laesecke, A.; Howley, J.; Ramires, M. L. V.; Gurova, - A. N.; Cusco, L. (2000): Experimental thermal conductivity values for - the IUPAC round-robin sample of 1,1,1,2-tetrafluoroethane (R134a). - Gaithersburg, MD: National Institute of Standards and - Technology. -

                                    -

                                    - Mulero, A.; Cachadiña, I.; Parra, M. I. (2012): Recommended - Correlations for the Surface Tension of Common Fluids. In: Journal - of physical and chemical reference data 41 (4), S. 43105. DOI: - 10.1063/1.4768782. -

                                    -

                                    - Engelpracht, Mirko (2017): Development of modular and scalable - simulation models for heat pumps and chillers considering various - refrigerants. Master Thesis -

                                    ")); end R134a_IIR_P1_395_T233_455_Horner; diff --git a/AixLib/Media/Refrigerants/R290/R290_IIR_P05_30_T263_343_Formula.mo b/AixLib/Media/Refrigerants/R290/R290_IIR_P05_30_T263_343_Formula.mo index 2009e4112b..e531ee82da 100644 --- a/AixLib/Media/Refrigerants/R290/R290_IIR_P05_30_T263_343_Formula.mo +++ b/AixLib/Media/Refrigerants/R290/R290_IIR_P05_30_T263_343_Formula.mo @@ -1,4 +1,4 @@ -within AixLib.Media.Refrigerants.R290; +within AixLib.Media.Refrigerants.R290; package R290_IIR_P05_30_T263_343_Formula "Refrigerant model for R290 using a hybrid approach with explicit formulas developed by Sangi et al." @@ -55,7 +55,6 @@ package R290_IIR_P05_30_T263_343_Formula max=343.15), smoothModel=true, onePhase=false, - ThermoStates=Choices.IndependentVariables.phX, fluidConstants=refrigerantConstants); /*The vector substanceNames is mandatory, as the number of substances is determined based on its size. Here we assume @@ -1199,98 +1198,104 @@ package R290_IIR_P05_30_T263_343_Formula The implemented coefficients are fitted to external data by Sangi et al. and are valid within the following range:

                                    - - - - - - - - - - - - - - - - +
                                    -

                                    - Parameter -

                                    -
                                    -

                                    - Minimum Value -

                                    -
                                    -

                                    - Maximum Value -

                                    -
                                    -

                                    - Pressure (p) in bar -

                                    -
                                    -

                                    - 0.5 -

                                    -
                                    -

                                    - 30 -

                                    -
                                    -

                                    - Temperature (T) in K -

                                    -
                                    -

                                    - 263.15 -

                                    -
                                    -

                                    - 343.15 -

                                    -
                                    +
                                    + \"Range of validiry\" cellspacing=\"0\" cellpadding=\"2\" border=\"1\" + width=\"30%\" style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + +
                                    +

                                    + Parameter +

                                    +
                                    +

                                    + Minimum Value +

                                    +
                                    +

                                    + Maximum Value +

                                    +
                                    +

                                    + Pressure (p) in bar +

                                    +
                                    +

                                    + 0.5 +

                                    +
                                    +

                                    + 30 +

                                    +
                                    +

                                    + Temperature (T) in K +

                                    +
                                    +

                                    + 263.15 +

                                    +
                                    +

                                    + 343.15 +

                                    +
                                    +

                                    + Validation +

                                    +

                                    + Sangi et al. validated their model by comparing it to results + obtained from the Helmholtz equation of state. They found out + that relative error of the refrigerant model compared to + HelmholtzMedia (Thorade and Saadat, 2012) is close to zero. +

                                    +

                                    + References +

                                    +

                                    + Thorade, Matthis; Saadat, Ali (2012): HelmholtzMedia + - A fluid properties library. In: Proceedings of the 9th + International Modelica Conference; September 3-5; 2012; + Munich; Germany. Linköping University Electronic Press, S. 63–70. +

                                    +

                                    + Sangi, Roozbeh; Jahangiri, Pooyan; Klasing, Freerk; Streblow, + Rita; Müller, Dirk (2014): A Medium Model for the + Refrigerant Propane for Fast and Accurate Dynamic + Simulations. In: The 10th International Modelica + Conference. Lund, Sweden, March 10-12, 2014: Linköping + University Electronic Press (Linköping Electronic Conference + Proceedings), S. 1271–1275 +

                                    +

                                    + Klasing,Freerk: A New Design for Direct Exchange Geothermal Heat + Pumps - Modeling, Simulation and Exergy Analysis. Master + thesis +

                                    +

                                    + Scalabrin, G.; Marchi, P.; Span, R. (2006): A Reference + Multiparameter Viscosity Equation for Propane with an Optimized + Functional Form. In: J. Phys. Chem. Ref. Data, Vol. 35, No. + 3, S. 1415-1442 +

                                    +
                                    -

                                    - Validation -

                                    -

                                    - Sangi et al. validated their model by comparing it to results - obtained from the Helmholtz equation of state. They found out that - relative error of the refrigerant model compared to HelmholtzMedia - (Thorade and Saadat, 2012) is close to zero. -

                                    -

                                    - References -

                                    -

                                    - Thorade, Matthis; Saadat, Ali (2012): HelmholtzMedia - A - fluid properties library. In: Proceedings of the 9th - International Modelica Conference; September 3-5; 2012; Munich; - Germany. Linköping University Electronic Press, S. 63–70. -

                                    -

                                    - Sangi, Roozbeh; Jahangiri, Pooyan; Klasing, Freerk; Streblow, Rita; - Müller, Dirk (2014): A - Medium Model for the Refrigerant Propane for Fast and Accurate - Dynamic Simulations. In: The 10th International Modelica - Conference. Lund, Sweden, March 10-12, 2014: Linköping University - Electronic Press (Linköping Electronic Conference Proceedings), S. - 1271–1275 -

                                    -

                                    - Klasing,Freerk: A New Design for Direct Exchange Geothermal Heat - Pumps - Modeling, Simulation and Exergy Analysis. Master - thesis -

                                    -

                                    - Scalabrin, G.; Marchi, P.; Span, R. (2006): A Reference - Multiparameter Viscosity Equation for Propane with an Optimized - Functional Form. In: J. Phys. Chem. Ref. Data, Vol. 35, No. 3, - S. 1415-1442 -

                                    ")); end R290_IIR_P05_30_T263_343_Formula; diff --git a/AixLib/Media/Refrigerants/R290/R290_IIR_P05_30_T263_343_Horner.mo b/AixLib/Media/Refrigerants/R290/R290_IIR_P05_30_T263_343_Horner.mo index 37fb99f446..cfa1a0990f 100644 --- a/AixLib/Media/Refrigerants/R290/R290_IIR_P05_30_T263_343_Horner.mo +++ b/AixLib/Media/Refrigerants/R290/R290_IIR_P05_30_T263_343_Horner.mo @@ -1,4 +1,4 @@ -within AixLib.Media.Refrigerants.R290; +within AixLib.Media.Refrigerants.R290; package R290_IIR_P05_30_T263_343_Horner "Refrigerant model for R290 using a hybrid approach with explicit Horner formulas developed by Sangi et al." @@ -55,7 +55,6 @@ package R290_IIR_P05_30_T263_343_Horner max=343.15), smoothModel=true, onePhase=false, - ThermoStates=Choices.IndependentVariables.phX, fluidConstants=refrigerantConstants); /*The vector substanceNames is mandatory, as the number of substances is determined based on its size. Here we assume @@ -1159,98 +1158,104 @@ package R290_IIR_P05_30_T263_343_Horner The implemented coefficients are fitted to external data by Sangi et al. and are valid within the following range:

                                    - - - - - - - - - - - - - - - - +
                                    -

                                    - Parameter -

                                    -
                                    -

                                    - Minimum Value -

                                    -
                                    -

                                    - Maximum Value -

                                    -
                                    -

                                    - Pressure (p) in bar -

                                    -
                                    -

                                    - 0.5 -

                                    -
                                    -

                                    - 30 -

                                    -
                                    -

                                    - Temperature (T) in K -

                                    -
                                    -

                                    - 263.15 -

                                    -
                                    -

                                    - 343.15 -

                                    -
                                    +
                                    + \"Range of validiry\" cellspacing=\"0\" cellpadding=\"2\" border=\"1\" + width=\"30%\" style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + +
                                    +

                                    + Parameter +

                                    +
                                    +

                                    + Minimum Value +

                                    +
                                    +

                                    + Maximum Value +

                                    +
                                    +

                                    + Pressure (p) in bar +

                                    +
                                    +

                                    + 0.5 +

                                    +
                                    +

                                    + 30 +

                                    +
                                    +

                                    + Temperature (T) in K +

                                    +
                                    +

                                    + 263.15 +

                                    +
                                    +

                                    + 343.15 +

                                    +
                                    +

                                    + Validation +

                                    +

                                    + Sangi et al. validated their model by comparing it to results + obtained from the Helmholtz equation of state. They found out + that relative error of the refrigerant model compared to + HelmholtzMedia (Thorade and Saadat, 2012) is close to zero. +

                                    +

                                    + References +

                                    +

                                    + Thorade, Matthis; Saadat, Ali (2012): HelmholtzMedia + - A fluid properties library. In: Proceedings of the 9th + International Modelica Conference; September 3-5; 2012; + Munich; Germany. Linköping University Electronic Press, S. 63–70. +

                                    +

                                    + Sangi, Roozbeh; Jahangiri, Pooyan; Klasing, Freerk; Streblow, + Rita; Müller, Dirk (2014): A Medium Model for the + Refrigerant Propane for Fast and Accurate Dynamic + Simulations. In: The 10th International Modelica + Conference. Lund, Sweden, March 10-12, 2014: Linköping + University Electronic Press (Linköping Electronic Conference + Proceedings), S. 1271–1275 +

                                    +

                                    + Klasing,Freerk: A New Design for Direct Exchange Geothermal Heat + Pumps - Modeling, Simulation and Exergy Analysis. Master + thesis +

                                    +

                                    + Scalabrin, G.; Marchi, P.; Span, R. (2006): A Reference + Multiparameter Viscosity Equation for Propane with an Optimized + Functional Form. In: J. Phys. Chem. Ref. Data, Vol. 35, No. + 3, S. 1415-1442 +

                                    +
                                    -

                                    - Validation -

                                    -

                                    - Sangi et al. validated their model by comparing it to results - obtained from the Helmholtz equation of state. They found out that - relative error of the refrigerant model compared to HelmholtzMedia - (Thorade and Saadat, 2012) is close to zero. -

                                    -

                                    - References -

                                    -

                                    - Thorade, Matthis; Saadat, Ali (2012): HelmholtzMedia - A - fluid properties library. In: Proceedings of the 9th - International Modelica Conference; September 3-5; 2012; Munich; - Germany. Linköping University Electronic Press, S. 63–70. -

                                    -

                                    - Sangi, Roozbeh; Jahangiri, Pooyan; Klasing, Freerk; Streblow, Rita; - Müller, Dirk (2014): A - Medium Model for the Refrigerant Propane for Fast and Accurate - Dynamic Simulations. In: The 10th International Modelica - Conference. Lund, Sweden, March 10-12, 2014: Linköping University - Electronic Press (Linköping Electronic Conference Proceedings), S. - 1271–1275 -

                                    -

                                    - Klasing,Freerk: A New Design for Direct Exchange Geothermal Heat - Pumps - Modeling, Simulation and Exergy Analysis. Master - thesis -

                                    -

                                    - Scalabrin, G.; Marchi, P.; Span, R. (2006): A Reference - Multiparameter Viscosity Equation for Propane with an Optimized - Functional Form. In: J. Phys. Chem. Ref. Data, Vol. 35, No. 3, - S. 1415-1442 -

                                    ")); end R290_IIR_P05_30_T263_343_Horner; diff --git a/AixLib/Media/Refrigerants/R290/R290_IIR_P05_30_T263_343_Record.mo b/AixLib/Media/Refrigerants/R290/R290_IIR_P05_30_T263_343_Record.mo index 14b01b8a8b..334d18afcc 100644 --- a/AixLib/Media/Refrigerants/R290/R290_IIR_P05_30_T263_343_Record.mo +++ b/AixLib/Media/Refrigerants/R290/R290_IIR_P05_30_T263_343_Record.mo @@ -1,4 +1,4 @@ -within AixLib.Media.Refrigerants.R290; +within AixLib.Media.Refrigerants.R290; package R290_IIR_P05_30_T263_343_Record "Refrigerant model for R290 using a hybrid approach with recods developed by Sangi et al." @@ -55,7 +55,6 @@ package R290_IIR_P05_30_T263_343_Record max=343.15), smoothModel=true, onePhase=false, - ThermoStates=Choices.IndependentVariables.phX, fluidConstants=refrigerantConstants); /*The vector substanceNames is mandatory, as the number of substances is determined based on its size. Here we assume @@ -267,98 +266,104 @@ package R290_IIR_P05_30_T263_343_Record The implemented coefficients are fitted to external data by Sangi et al. and are valid within the following range:

                                    - - - - - - - - - - - - - - - - +
                                    -

                                    - Parameter -

                                    -
                                    -

                                    - Minimum Value -

                                    -
                                    -

                                    - Maximum Value -

                                    -
                                    -

                                    - Pressure (p) in bar -

                                    -
                                    -

                                    - 0.5 -

                                    -
                                    -

                                    - 30 -

                                    -
                                    -

                                    - Temperature (T) in K -

                                    -
                                    -

                                    - 263.15 -

                                    -
                                    -

                                    - 343.15 -

                                    -
                                    +
                                    + \"Range of validiry\" cellspacing=\"0\" cellpadding=\"2\" border=\"1\" + width=\"30%\" style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + +
                                    +

                                    + Parameter +

                                    +
                                    +

                                    + Minimum Value +

                                    +
                                    +

                                    + Maximum Value +

                                    +
                                    +

                                    + Pressure (p) in bar +

                                    +
                                    +

                                    + 0.5 +

                                    +
                                    +

                                    + 30 +

                                    +
                                    +

                                    + Temperature (T) in K +

                                    +
                                    +

                                    + 263.15 +

                                    +
                                    +

                                    + 343.15 +

                                    +
                                    +

                                    + Validation +

                                    +

                                    + Sangi et al. validated their model by comparing it to results + obtained from the Helmholtz equation of state. They found out + that relative error of the refrigerant model compared to + HelmholtzMedia (Thorade and Saadat, 2012) is close to zero. +

                                    +

                                    + References +

                                    +

                                    + Thorade, Matthis; Saadat, Ali (2012): HelmholtzMedia + - A fluid properties library. In: Proceedings of the 9th + International Modelica Conference; September 3-5; 2012; + Munich; Germany. Linköping University Electronic Press, S. 63–70. +

                                    +

                                    + Sangi, Roozbeh; Jahangiri, Pooyan; Klasing, Freerk; Streblow, + Rita; Müller, Dirk (2014): A Medium Model for the + Refrigerant Propane for Fast and Accurate Dynamic + Simulations. In: The 10th International Modelica + Conference. Lund, Sweden, March 10-12, 2014: Linköping + University Electronic Press (Linköping Electronic Conference + Proceedings), S. 1271–1275 +

                                    +

                                    + Klasing,Freerk: A New Design for Direct Exchange Geothermal Heat + Pumps - Modeling, Simulation and Exergy Analysis. Master + thesis +

                                    +

                                    + Scalabrin, G.; Marchi, P.; Span, R. (2006): A Reference + Multiparameter Viscosity Equation for Propane with an Optimized + Functional Form. In: J. Phys. Chem. Ref. Data, Vol. 35, No. + 3, S. 1415-1442 +

                                    +
                                    -

                                    - Validation -

                                    -

                                    - Sangi et al. validated their model by comparing it to results - obtained from the Helmholtz equation of state. They found out that - relative error of the refrigerant model compared to HelmholtzMedia - (Thorade and Saadat, 2012) is close to zero. -

                                    -

                                    - References -

                                    -

                                    - Thorade, Matthis; Saadat, Ali (2012): HelmholtzMedia - A - fluid properties library. In: Proceedings of the 9th - International Modelica Conference; September 3-5; 2012; Munich; - Germany. Linköping University Electronic Press, S. 63–70. -

                                    -

                                    - Sangi, Roozbeh; Jahangiri, Pooyan; Klasing, Freerk; Streblow, Rita; - Müller, Dirk (2014): A - Medium Model for the Refrigerant Propane for Fast and Accurate - Dynamic Simulations. In: The 10th International Modelica - Conference. Lund, Sweden, March 10-12, 2014: Linköping University - Electronic Press (Linköping Electronic Conference Proceedings), S. - 1271–1275 -

                                    -

                                    - Klasing,Freerk: A New Design for Direct Exchange Geothermal Heat - Pumps - Modeling, Simulation and Exergy Analysis. Master - thesis -

                                    -

                                    - Scalabrin, G.; Marchi, P.; Span, R. (2006): A Reference - Multiparameter Viscosity Equation for Propane with an Optimized - Functional Form. In: J. Phys. Chem. Ref. Data, Vol. 35, No. 3, - S. 1415-1442 -

                                    ")); end R290_IIR_P05_30_T263_343_Record; diff --git a/AixLib/Media/Refrigerants/R410A/dPressureVap_dSpecificVolume_Tv.mo b/AixLib/Media/Refrigerants/R410A/dPressureVap_dSpecificVolume_Tv.mo index c97db57379..e3d54abab8 100644 --- a/AixLib/Media/Refrigerants/R410A/dPressureVap_dSpecificVolume_Tv.mo +++ b/AixLib/Media/Refrigerants/R410A/dPressureVap_dSpecificVolume_Tv.mo @@ -2,17 +2,14 @@ within AixLib.Media.Refrigerants.R410A; function dPressureVap_dSpecificVolume_Tv "Derivative of the Martin-Hou equation of state with regards to specific volume" - input Modelica.SIunits.Temperature T - "Temperature of refrigerant"; - input Modelica.SIunits.SpecificVolume v - "Specific volume of refrigerant"; + input Modelica.Units.SI.Temperature T "Temperature of refrigerant"; + input Modelica.Units.SI.SpecificVolume v "Specific volume of refrigerant"; output Real dpdv( final unit="Pa.kg/m3") "Derivative of pressure with regards to specific volume"; protected - Modelica.SIunits.SpecificVolume v_abs - "Smoothed specific volume"; + Modelica.Units.SI.SpecificVolume v_abs "Smoothed specific volume"; algorithm @@ -25,29 +22,30 @@ algorithm annotation (smoothOrder=1, preferredView="info",Documentation(info=" -

                                    -Function that calculates the derivative of the Martin-Hou equation of for R410A -state with regards to specific volume. -

                                    -

                                    References

                                    -

                                    -Thermodynamic properties of DuPont Suva 410A: - -https://www.chemours.com/Refrigerants/en_US/assets/downloads/h64423_Suva410A_thermo_prop_si.pdf - -

                                    -", revisions=" -
                                      -
                                    • -November 8, 2020, by Michael Wetter:
                                      -Corrected use of dimension n.
                                      -This is for -#1414. -
                                    • -
                                    • -November 30, 2016, by Massimo Cimmino:
                                      -First implementation. -
                                    • -
                                    -")); +

                                    + Function that calculates the derivative of the Martin-Hou equation of for R410A + state with regards to specific volume. +

                                    +

                                    References

                                    +

                                    + Thermodynamic properties of DuPont Suva 410A: + + https://www.chemours.com/Refrigerants/en_US/assets/downloads/h64423_Suva410A_thermo_prop_si.pdf + +

                                    + ", revisions=" +
                                      +
                                    • + November 8, 2020, by Michael Wetter:
                                      + Corrected use of dimension n.
                                      + This is for + #1414. +
                                    • +
                                    • + November 30, 2016, by Massimo Cimmino:
                                      + First implementation. +
                                    • +
                                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end dPressureVap_dSpecificVolume_Tv; diff --git a/AixLib/Media/Refrigerants/R410A/dPressureVap_dTemperature_Tv.mo b/AixLib/Media/Refrigerants/R410A/dPressureVap_dTemperature_Tv.mo index c00bbb1141..7d13919779 100644 --- a/AixLib/Media/Refrigerants/R410A/dPressureVap_dTemperature_Tv.mo +++ b/AixLib/Media/Refrigerants/R410A/dPressureVap_dTemperature_Tv.mo @@ -2,17 +2,14 @@ within AixLib.Media.Refrigerants.R410A; function dPressureVap_dTemperature_Tv "Derivative of the Martin-Hou equation of state with regards to temperature" - input Modelica.SIunits.Temperature T - "Temperature of refrigerant"; - input Modelica.SIunits.SpecificVolume v - "Specific volume of refrigerant"; + input Modelica.Units.SI.Temperature T "Temperature of refrigerant"; + input Modelica.Units.SI.SpecificVolume v "Specific volume of refrigerant"; output Real dpdT( final unit="Pa/K") "Derivative of pressure with regards to temperature"; protected - Modelica.SIunits.SpecificVolume v_abs - "Smoothed specific volume"; + Modelica.Units.SI.SpecificVolume v_abs "Smoothed specific volume"; algorithm v_abs := AixLib.Utilities.Math.Functions.smoothMax(v, 1.01*b, 0.01*b); @@ -24,29 +21,30 @@ algorithm annotation (smoothOrder=1, preferredView="info",Documentation(info=" -

                                    -Function that calculates the derivative of the Martin-Hou equation of for R410A -state with regards to temperature. -

                                    -

                                    References

                                    -

                                    -Thermodynamic properties of DuPont Suva 410A: - -https://www.chemours.com/Refrigerants/en_US/assets/downloads/h64423_Suva410A_thermo_prop_si.pdf - -

                                    -", revisions=" -
                                      -
                                    • -November 8, 2020, by Michael Wetter:
                                      -Corrected use of dimension n.
                                      -This is for -#1414. -
                                    • -
                                    • -November 30, 2016, by Massimo Cimmino:
                                      -First implementation. -
                                    • -
                                    -")); +

                                    + Function that calculates the derivative of the Martin-Hou equation of for R410A + state with regards to temperature. +

                                    +

                                    References

                                    +

                                    + Thermodynamic properties of DuPont Suva 410A: + + https://www.chemours.com/Refrigerants/en_US/assets/downloads/h64423_Suva410A_thermo_prop_si.pdf + +

                                    + ", revisions=" +
                                      +
                                    • + November 8, 2020, by Michael Wetter:
                                      + Corrected use of dimension n.
                                      + This is for + #1414. +
                                    • +
                                    • + November 30, 2016, by Massimo Cimmino:
                                      + First implementation. +
                                    • +
                                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end dPressureVap_dTemperature_Tv; diff --git a/AixLib/Media/Refrigerants/R410A/dSpecificVolumeVap_pT.mo b/AixLib/Media/Refrigerants/R410A/dSpecificVolumeVap_pT.mo index 8beb0dfe4b..c9d832938b 100644 --- a/AixLib/Media/Refrigerants/R410A/dSpecificVolumeVap_pT.mo +++ b/AixLib/Media/Refrigerants/R410A/dSpecificVolumeVap_pT.mo @@ -1,10 +1,8 @@ within AixLib.Media.Refrigerants.R410A; function dSpecificVolumeVap_pT "Function that calculates the Jacobian of specific volume R410A vapor based on pressure and temperature" - input Modelica.SIunits.AbsolutePressure p - "Pressure of refrigerant vapor"; - input Modelica.SIunits.Temperature T - "Temperature of refrigerant"; + input Modelica.Units.SI.AbsolutePressure p "Pressure of refrigerant vapor"; + input Modelica.Units.SI.Temperature T "Temperature of refrigerant"; input Real dp( final unit="Pa/s") "Delta of pressure of refrigerant vapor"; @@ -24,8 +22,7 @@ protected final unit="Pa.kg/m3") "Derivative of pressure with regards to specific volume"; - Modelica.SIunits.SpecificVolume v - "Specific volume of refrigerant"; + Modelica.Units.SI.SpecificVolume v "Specific volume of refrigerant"; algorithm @@ -36,17 +33,18 @@ algorithm dv := dp/dpdv + dT*(dpdT/dpdv); annotation (preferredView="info",Documentation(info=" -

                                    -Function that calculates the derivatives of - -AixLib.Media.Refrigerants.R410A.specificVolumeVap_pT -

                                    -", revisions=" -
                                      -
                                    • -November 30, 2016, by Massimo Cimmino:
                                      -First implementation. -
                                    • -
                                    -")); +

                                    + Function that calculates the derivatives of + + AixLib.Media.Refrigerants.R410A.specificVolumeVap_pT +

                                    + ",revisions=" +
                                      +
                                    • + November 30, 2016, by Massimo Cimmino:
                                      + First implementation. +
                                    • +
                                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end dSpecificVolumeVap_pT; diff --git a/AixLib/Media/Refrigerants/R410A/enthalpySatLiq_T.mo b/AixLib/Media/Refrigerants/R410A/enthalpySatLiq_T.mo index f1fe22846b..e9d078a2b5 100644 --- a/AixLib/Media/Refrigerants/R410A/enthalpySatLiq_T.mo +++ b/AixLib/Media/Refrigerants/R410A/enthalpySatLiq_T.mo @@ -1,9 +1,8 @@ within AixLib.Media.Refrigerants.R410A; function enthalpySatLiq_T "Function that calculates the enthalpy of saturated liquid R410A based on temperature" - input Modelica.SIunits.Temperature T - "Temperature of refrigerant"; - output Modelica.SIunits.SpecificEnthalpy h + input Modelica.Units.SI.Temperature T "Temperature of refrigerant"; + output Modelica.Units.SI.SpecificEnthalpy h "Specific enthalpy of saturated liquid refrigerant"; protected @@ -24,23 +23,24 @@ algorithm annotation (smoothOrder=1, preferredView="info",Documentation(info=" -

                                    -Function that calculates the enthalpy of saturated liquid R410A based on -temperature. -

                                    -

                                    References

                                    -

                                    -Thermodynamic properties of DuPont Suva 410A: - -https://www.chemours.com/Refrigerants/en_US/assets/downloads/h64423_Suva410A_thermo_prop_si.pdf - -

                                    -", revisions=" -
                                      -
                                    • -October 17, 2016, by Massimo Cimmino:
                                      -First implementation. -
                                    • -
                                    -")); +

                                    + Function that calculates the enthalpy of saturated liquid R410A based on + temperature. +

                                    +

                                    References

                                    +

                                    + Thermodynamic properties of DuPont Suva 410A: + + https://www.chemours.com/Refrigerants/en_US/assets/downloads/h64423_Suva410A_thermo_prop_si.pdf + +

                                    + ",revisions=" +
                                      +
                                    • + October 17, 2016, by Massimo Cimmino:
                                      + First implementation. +
                                    • +
                                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end enthalpySatLiq_T; diff --git a/AixLib/Media/Refrigerants/R410A/enthalpySatVap_T.mo b/AixLib/Media/Refrigerants/R410A/enthalpySatVap_T.mo index ff112ca598..a084570bff 100644 --- a/AixLib/Media/Refrigerants/R410A/enthalpySatVap_T.mo +++ b/AixLib/Media/Refrigerants/R410A/enthalpySatVap_T.mo @@ -1,9 +1,8 @@ within AixLib.Media.Refrigerants.R410A; function enthalpySatVap_T "Function that calculates the specific enthalpy of saturated R410A vapor based on temperature" - input Modelica.SIunits.Temperature T - "Temperature of refrigerant"; - output Modelica.SIunits.SpecificEnthalpy h + input Modelica.Units.SI.Temperature T "Temperature of refrigerant"; + output Modelica.Units.SI.SpecificEnthalpy h "Specific enthalpy of saturated liquid refrigerant"; protected @@ -21,23 +20,24 @@ algorithm annotation (smoothOrder=1, preferredView="info",Documentation(info=" -

                                    -Function that calculates the specific enthalpy of saturated R410A vapor based -on temperature. -

                                    -

                                    References

                                    -

                                    -Thermodynamic properties of DuPont Suva 410A: - -https://www.chemours.com/Refrigerants/en_US/assets/downloads/h64423_Suva410A_thermo_prop_si.pdf - -

                                    -", revisions=" -
                                      -
                                    • -October 17, 2016, by Massimo Cimmino:
                                      -First implementation. -
                                    • -
                                    -")); +

                                    + Function that calculates the specific enthalpy of saturated R410A vapor based + on temperature. +

                                    +

                                    References

                                    +

                                    + Thermodynamic properties of DuPont Suva 410A: + + https://www.chemours.com/Refrigerants/en_US/assets/downloads/h64423_Suva410A_thermo_prop_si.pdf + +

                                    + ",revisions=" +
                                      +
                                    • + October 17, 2016, by Massimo Cimmino:
                                      + First implementation. +
                                    • +
                                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end enthalpySatVap_T; diff --git a/AixLib/Media/Refrigerants/R410A/isentropicExponentVap_Tv.mo b/AixLib/Media/Refrigerants/R410A/isentropicExponentVap_Tv.mo index a6f1cac0a1..f12988c704 100644 --- a/AixLib/Media/Refrigerants/R410A/isentropicExponentVap_Tv.mo +++ b/AixLib/Media/Refrigerants/R410A/isentropicExponentVap_Tv.mo @@ -1,19 +1,15 @@ within AixLib.Media.Refrigerants.R410A; function isentropicExponentVap_Tv "Function that calculates the isentropic exponent of R410A vapor based on temperature and specific volume" - input Modelica.SIunits.Temperature T - "Temperature of refrigerant"; - input Modelica.SIunits.SpecificVolume v - "Specific volume of refrigerant"; - output Modelica.SIunits.IsentropicExponent k + input Modelica.Units.SI.Temperature T "Temperature of refrigerant"; + input Modelica.Units.SI.SpecificVolume v "Specific volume of refrigerant"; + output Modelica.Units.SI.IsentropicExponent k "Specific isobaric heat capacity"; protected - Modelica.SIunits.SpecificHeatCapacity cp - "Specific isobaric heat capacity"; + Modelica.Units.SI.SpecificHeatCapacity cp "Specific isobaric heat capacity"; - Modelica.SIunits.SpecificHeatCapacity cv - "Specific isochoric heat capacity"; + Modelica.Units.SI.SpecificHeatCapacity cv "Specific isochoric heat capacity"; algorithm // Evaluate the specific isobaric and isochoric heat capacities @@ -24,36 +20,37 @@ algorithm annotation (smoothOrder=1, preferredView="info",Documentation(info=" -

                                    -Function that calculates the isentropic exponent of R410A vapor based on temperature and specific volume. The isentropic exponent is equal to the ratio of specific heat capacities: -

                                    -

                                    -k = cp/cv -

                                    -

                                    References

                                    -

                                    -F. de Monte. (2002). -Calculation of thermodynamic properties of R407C and -R410A by the Martin-Hou equation of state, part I: -theoretical development. - -International Journal of Refrigeration. - -25. 306-313. -

                                    -

                                    -

                                    -Thermodynamic properties of DuPont Suva 410A: - -https://www.chemours.com/Refrigerants/en_US/assets/downloads/h64423_Suva410A_thermo_prop_si.pdf - -

                                    -", revisions=" -
                                      -
                                    • -October 31, 2016, by Massimo Cimmino:
                                      -First implementation. -
                                    • -
                                    -")); +

                                    + Function that calculates the isentropic exponent of R410A vapor based on temperature and specific volume. The isentropic exponent is equal to the ratio of specific heat capacities: +

                                    +

                                    + k = cp/cv +

                                    +

                                    References

                                    +

                                    + F. de Monte. (2002). + Calculation of thermodynamic properties of R407C and + R410A by the Martin-Hou equation of state, part I: + theoretical development. + + International Journal of Refrigeration. + + 25. 306-313. +

                                    +

                                    +

                                    + Thermodynamic properties of DuPont Suva 410A: + + https://www.chemours.com/Refrigerants/en_US/assets/downloads/h64423_Suva410A_thermo_prop_si.pdf + +

                                    + ",revisions=" +
                                      +
                                    • + October 31, 2016, by Massimo Cimmino:
                                      + First implementation. +
                                    • +
                                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end isentropicExponentVap_Tv; diff --git a/AixLib/Media/Refrigerants/R410A/package.mo b/AixLib/Media/Refrigerants/R410A/package.mo index 69f0c989aa..34db42144a 100644 --- a/AixLib/Media/Refrigerants/R410A/package.mo +++ b/AixLib/Media/Refrigerants/R410A/package.mo @@ -2,19 +2,18 @@ within AixLib.Media.Refrigerants; package R410A "Refrigerant R410A" extends Modelica.Icons.VariantsPackage; - final constant Modelica.SIunits.SpecificEntropy R = 114.55 - "Gas constant for use in Martin-Hou equation of state"; +final constant Modelica.Units.SI.SpecificEntropy R=114.55 + "Gas constant for use in Martin-Hou equation of state"; - final constant Modelica.SIunits.Temperature TCri = 345.25 - "Critical temperature"; +final constant Modelica.Units.SI.Temperature TCri=345.25 "Critical temperature"; - final constant Modelica.SIunits.Temperature T_min = 173.15 - "Minimum temperature for correlated properties"; +final constant Modelica.Units.SI.Temperature T_min=173.15 + "Minimum temperature for correlated properties"; - final constant Modelica.SIunits.AbsolutePressure pCri = 4926.1e3 - "Critical pressure"; +final constant Modelica.Units.SI.AbsolutePressure pCri=4926.1e3 + "Critical pressure"; -protected +protected final constant Real A[:] = {-1.721781e2, 2.381558e-1, -4.329207e-4, -6.241072e-7} "Coefficients A for Martin-Hou equation of state"; diff --git a/AixLib/Media/Refrigerants/R410A/package.order b/AixLib/Media/Refrigerants/R410A/package.order index a85c898ec0..b16a825265 100644 --- a/AixLib/Media/Refrigerants/R410A/package.order +++ b/AixLib/Media/Refrigerants/R410A/package.order @@ -12,6 +12,9 @@ specificVolumeVap_pT R TCri T_min +pCri +A +B +C b k -pCri diff --git a/AixLib/Media/Refrigerants/R410A/pressureSatVap_T.mo b/AixLib/Media/Refrigerants/R410A/pressureSatVap_T.mo index 6ac8e0c754..462adebcf3 100644 --- a/AixLib/Media/Refrigerants/R410A/pressureSatVap_T.mo +++ b/AixLib/Media/Refrigerants/R410A/pressureSatVap_T.mo @@ -1,9 +1,8 @@ within AixLib.Media.Refrigerants.R410A; function pressureSatVap_T "Function that calculates the pressure of saturated R410A vapor based on temperature" - input Modelica.SIunits.Temperature T - "Temperature of refrigerant"; - output Modelica.SIunits.AbsolutePressure p + input Modelica.Units.SI.Temperature T "Temperature of refrigerant"; + output Modelica.Units.SI.AbsolutePressure p "Pressure of saturated refrigerant vapor"; protected @@ -24,22 +23,23 @@ algorithm annotation (smoothOrder=1, preferredView="info",Documentation(info=" -

                                    -Function that calculates the pressure of saturated R410A vapor based on temperature. -

                                    -

                                    References

                                    -

                                    -Thermodynamic properties of DuPont Suva 410A: - -https://www.chemours.com/Refrigerants/en_US/assets/downloads/h64423_Suva410A_thermo_prop_si.pdf - -

                                    -", revisions=" -
                                      -
                                    • -October 17, 2016, by Massimo Cimmino:
                                      -First implementation. -
                                    • -
                                    -")); +

                                    + Function that calculates the pressure of saturated R410A vapor based on temperature. +

                                    +

                                    References

                                    +

                                    + Thermodynamic properties of DuPont Suva 410A: + + https://www.chemours.com/Refrigerants/en_US/assets/downloads/h64423_Suva410A_thermo_prop_si.pdf + +

                                    + ",revisions=" +
                                      +
                                    • + October 17, 2016, by Massimo Cimmino:
                                      + First implementation. +
                                    • +
                                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end pressureSatVap_T; diff --git a/AixLib/Media/Refrigerants/R410A/pressureVap_Tv.mo b/AixLib/Media/Refrigerants/R410A/pressureVap_Tv.mo index 829b01a831..9a1812feb0 100644 --- a/AixLib/Media/Refrigerants/R410A/pressureVap_Tv.mo +++ b/AixLib/Media/Refrigerants/R410A/pressureVap_Tv.mo @@ -1,16 +1,12 @@ within AixLib.Media.Refrigerants.R410A; function pressureVap_Tv "Function that calculates the pressure R410A vapor based on temperature and specific volume" -input Modelica.SIunits.Temperature T - "Temperature of refrigerant"; -input Modelica.SIunits.SpecificVolume v - "Specific volume of refrigerant"; -output Modelica.SIunits.AbsolutePressure p - "Pressure of refrigerant vapor"; + input Modelica.Units.SI.Temperature T "Temperature of refrigerant"; + input Modelica.Units.SI.SpecificVolume v "Specific volume of refrigerant"; + output Modelica.Units.SI.AbsolutePressure p "Pressure of refrigerant vapor"; protected - Modelica.SIunits.SpecificVolume v_abs - "Smoothed specific volume"; + Modelica.Units.SI.SpecificVolume v_abs "Smoothed specific volume"; algorithm v_abs := AixLib.Utilities.Math.Functions.smoothMax(v, 1.01*b, 0.01*b); @@ -22,30 +18,31 @@ algorithm annotation (smoothOrder=1, preferredView="info",Documentation(info=" -

                                    -Function that calculates the pressure R410A vapor based on temperature and -specific volume. The pressure is calculated from the Martin-Hou equation of -state. -

                                    -

                                    References

                                    -

                                    -Thermodynamic properties of DuPont Suva 410A: - -https://www.chemours.com/Refrigerants/en_US/assets/downloads/h64423_Suva410A_thermo_prop_si.pdf - -

                                    -", revisions=" -
                                      -
                                    • -November 8, 2020, by Michael Wetter:
                                      -Corrected use of dimension n.
                                      -This is for -#1414. -
                                    • -
                                    • -October 17, 2016, by Massimo Cimmino:
                                      -First implementation. -
                                    • -
                                    -")); +

                                    + Function that calculates the pressure R410A vapor based on temperature and + specific volume. The pressure is calculated from the Martin-Hou equation of + state. +

                                    +

                                    References

                                    +

                                    + Thermodynamic properties of DuPont Suva 410A: + + https://www.chemours.com/Refrigerants/en_US/assets/downloads/h64423_Suva410A_thermo_prop_si.pdf + +

                                    + ", revisions=" +
                                      +
                                    • + November 8, 2020, by Michael Wetter:
                                      + Corrected use of dimension n.
                                      + This is for + #1414. +
                                    • +
                                    • + October 17, 2016, by Massimo Cimmino:
                                      + First implementation. +
                                    • +
                                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end pressureVap_Tv; diff --git a/AixLib/Media/Refrigerants/R410A/specificIsobaricHeatCapacityVap_Tv.mo b/AixLib/Media/Refrigerants/R410A/specificIsobaricHeatCapacityVap_Tv.mo index e2dc21c9e3..6485091e8e 100644 --- a/AixLib/Media/Refrigerants/R410A/specificIsobaricHeatCapacityVap_Tv.mo +++ b/AixLib/Media/Refrigerants/R410A/specificIsobaricHeatCapacityVap_Tv.mo @@ -1,11 +1,9 @@ within AixLib.Media.Refrigerants.R410A; function specificIsobaricHeatCapacityVap_Tv "Function that calculates the specific isobaric heat capacity of R410A vapor based on temperature and specific volume" - input Modelica.SIunits.Temperature T - "Temperature of refrigerant"; - input Modelica.SIunits.SpecificVolume v - "Specific volume of refrigerant"; - output Modelica.SIunits.SpecificHeatCapacity cp + input Modelica.Units.SI.Temperature T "Temperature of refrigerant"; + input Modelica.Units.SI.SpecificVolume v "Specific volume of refrigerant"; + output Modelica.Units.SI.SpecificHeatCapacity cp "Specific isobaric heat capacity"; protected @@ -15,8 +13,7 @@ protected Real dpdv "First derivative w.r.t. specific volume of the Martin-Hou equation"; - Modelica.SIunits.SpecificHeatCapacity cv - "Specific isochoric heat capacity"; + Modelica.Units.SI.SpecificHeatCapacity cv "Specific isochoric heat capacity"; algorithm cv := AixLib.Media.Refrigerants.R410A.specificIsochoricHeatCapacityVap_Tv(T, v); @@ -27,42 +24,43 @@ algorithm annotation (smoothOrder=1, preferredView="info",Documentation(info=" -

                                    -Function that calculates the specific isobaric heat capacity (cp) of R410A vapor based on temperature and specific volume. -

                                    -

                                    -The specific isobaric heat capacity is evaluated from the partial derivatives of the Martin-Hou equation of state. -

                                    -

                                    References

                                    -

                                    -F. de Monte. (2002). -Calculation of thermodynamic properties of R407C and -R410A by the Martin-Hou equation of state, part I: -theoretical development. - -International Journal of Refrigeration. - -25. 306-313. -

                                    -

                                    -

                                    -Thermodynamic properties of DuPont Suva 410A: - -https://www.chemours.com/Refrigerants/en_US/assets/downloads/h64423_Suva410A_thermo_prop_si.pdf - -

                                    -", revisions=" -
                                      -
                                    • -November 8, 2020, by Michael Wetter:
                                      -Removed non-used parameters.
                                      -This is for -#1414. -
                                    • -
                                    • -October 31, 2016, by Massimo Cimmino:
                                      -First implementation. -
                                    • -
                                    -")); +

                                    + Function that calculates the specific isobaric heat capacity (cp) of R410A vapor based on temperature and specific volume. +

                                    +

                                    + The specific isobaric heat capacity is evaluated from the partial derivatives of the Martin-Hou equation of state. +

                                    +

                                    References

                                    +

                                    + F. de Monte. (2002). + Calculation of thermodynamic properties of R407C and + R410A by the Martin-Hou equation of state, part I: + theoretical development. + + International Journal of Refrigeration. + + 25. 306-313. +

                                    +

                                    +

                                    + Thermodynamic properties of DuPont Suva 410A: + + https://www.chemours.com/Refrigerants/en_US/assets/downloads/h64423_Suva410A_thermo_prop_si.pdf + +

                                    + ",revisions=" +
                                      +
                                    • + November 8, 2020, by Michael Wetter:
                                      + Removed non-used parameters.
                                      + This is for + #1414. +
                                    • +
                                    • + October 31, 2016, by Massimo Cimmino:
                                      + First implementation. +
                                    • +
                                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end specificIsobaricHeatCapacityVap_Tv; diff --git a/AixLib/Media/Refrigerants/R410A/specificIsochoricHeatCapacityVap_Tv.mo b/AixLib/Media/Refrigerants/R410A/specificIsochoricHeatCapacityVap_Tv.mo index 4fa61dc70a..847c24eabf 100644 --- a/AixLib/Media/Refrigerants/R410A/specificIsochoricHeatCapacityVap_Tv.mo +++ b/AixLib/Media/Refrigerants/R410A/specificIsochoricHeatCapacityVap_Tv.mo @@ -1,12 +1,10 @@ within AixLib.Media.Refrigerants.R410A; function specificIsochoricHeatCapacityVap_Tv "Function that calculates the specific isochoric heat capacity of R410A vapor - based on temperature and specific volume" - input Modelica.SIunits.Temperature T - "Temperature of refrigerant"; - input Modelica.SIunits.SpecificVolume v - "Specific volume of refrigerant"; - output Modelica.SIunits.SpecificHeatCapacity cv + based on temperature and specific volume" + input Modelica.Units.SI.Temperature T "Temperature of refrigerant"; + input Modelica.Units.SI.SpecificVolume v "Specific volume of refrigerant"; + output Modelica.Units.SI.SpecificHeatCapacity cv "Specific isochoric heat capacity"; protected @@ -16,10 +14,10 @@ protected Real integral_of_d2pdT2 "Integral over v of the second derivative w.r.t. temperature of the Martin-Hou equation"; - Modelica.SIunits.SpecificHeatCapacity cpo + Modelica.Units.SI.SpecificHeatCapacity cpo "Ideal gas specific isobaric heat capacity"; - Modelica.SIunits.SpecificHeatCapacity cvo + Modelica.Units.SI.SpecificHeatCapacity cvo "Ideal gas specific isochoric heat capacity"; algorithm @@ -34,44 +32,45 @@ algorithm annotation (smoothOrder=1, preferredView="info",Documentation(info=" -

                                    -Function that calculates the specific isochoric heat capacity -(cv) of R410A vapor based on temperature and specific volume. -

                                    -

                                    -The specific isochoric heat capacity is evaluated from the partial derivatives -of the Martin-Hou equation of state. -

                                    -

                                    References

                                    -

                                    -F. de Monte. (2002). -Calculation of thermodynamic properties of R407C and -R410A by the Martin-Hou equation of state, part I: -theoretical development. - -International Journal of Refrigeration. - -25. 306-313. -

                                    -

                                    -

                                    -Thermodynamic properties of DuPont Suva 410A: - -https://www.chemours.com/Refrigerants/en_US/assets/downloads/h64423_Suva410A_thermo_prop_si.pdf - -

                                    -", revisions=" -
                                      -
                                    • -November 8, 2020, by Michael Wetter:
                                      -Removed non-used parameters and reformulated integral as a sum, and multiplied sum with common factors.
                                      -This is for -#1414. -
                                    • -
                                    • -October 31, 2016, by Massimo Cimmino:
                                      -First implementation. -
                                    • -
                                    -")); +

                                    + Function that calculates the specific isochoric heat capacity + (cv) of R410A vapor based on temperature and specific volume. +

                                    +

                                    + The specific isochoric heat capacity is evaluated from the partial derivatives + of the Martin-Hou equation of state. +

                                    +

                                    References

                                    +

                                    + F. de Monte. (2002). + Calculation of thermodynamic properties of R407C and + R410A by the Martin-Hou equation of state, part I: + theoretical development. + + International Journal of Refrigeration. + + 25. 306-313. +

                                    +

                                    +

                                    + Thermodynamic properties of DuPont Suva 410A: + + https://www.chemours.com/Refrigerants/en_US/assets/downloads/h64423_Suva410A_thermo_prop_si.pdf + +

                                    + ",revisions=" +
                                      +
                                    • + November 8, 2020, by Michael Wetter:
                                      + Removed non-used parameters and reformulated integral as a sum, and multiplied sum with common factors.
                                      + This is for + #1414. +
                                    • +
                                    • + October 31, 2016, by Massimo Cimmino:
                                      + First implementation. +
                                    • +
                                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end specificIsochoricHeatCapacityVap_Tv; diff --git a/AixLib/Media/Refrigerants/R410A/specificVolumeVap_pT.mo b/AixLib/Media/Refrigerants/R410A/specificVolumeVap_pT.mo index 7c0e005a87..e238cb735e 100644 --- a/AixLib/Media/Refrigerants/R410A/specificVolumeVap_pT.mo +++ b/AixLib/Media/Refrigerants/R410A/specificVolumeVap_pT.mo @@ -1,19 +1,14 @@ within AixLib.Media.Refrigerants.R410A; function specificVolumeVap_pT "Function that calculates the specific volume R410A vapor based on pressure and temperature" - input Modelica.SIunits.AbsolutePressure p - "Pressure of refrigerant vapor"; - input Modelica.SIunits.Temperature T - "Temperature of refrigerant"; - output Modelica.SIunits.SpecificVolume v - "Specific volume of refrigerant"; + input Modelica.Units.SI.AbsolutePressure p "Pressure of refrigerant vapor"; + input Modelica.Units.SI.Temperature T "Temperature of refrigerant"; + output Modelica.Units.SI.SpecificVolume v "Specific volume of refrigerant"; protected - Modelica.SIunits.SpecificVolume dv - "Error on specific volume of refrigerant"; + Modelica.Units.SI.SpecificVolume dv "Error on specific volume of refrigerant"; - Modelica.SIunits.Pressure dp - "Error on pressure of refrigerant"; + Modelica.Units.SI.Pressure dp "Error on pressure of refrigerant"; Real dpdv( final unit = "(Pa.kg)/m3") "Partial derivative dp/dv"; @@ -42,34 +37,35 @@ end while; annotation (derivative=AixLib.Media.Refrigerants.R410A.dSpecificVolumeVap_pT, preferredView="info",Documentation(info=" -

                                    -Function that calculates the specific volume R410A vapor based on pressure and -temperature. The specific volume is evaluated iteratively by succesive -evaluations of the vapor pressure. -

                                    -

                                    -The initial guess is estimated by the first term in the Martin-Hou equation of -state. -

                                    -

                                    References

                                    -

                                    -Thermodynamic properties of DuPont Suva 410A: - -https://www.chemours.com/Refrigerants/en_US/assets/downloads/h64423_Suva410A_thermo_prop_si.pdf - -

                                    -", revisions=" -
                                      -
                                    • -November 8, 2020, by Michael Wetter:
                                      -Removed non-used parameters.
                                      -This is for -#1414. -
                                    • -
                                    • -October 17, 2016, by Massimo Cimmino:
                                      -First implementation. -
                                    • -
                                    -")); +

                                    + Function that calculates the specific volume R410A vapor based on pressure and + temperature. The specific volume is evaluated iteratively by succesive + evaluations of the vapor pressure. +

                                    +

                                    + The initial guess is estimated by the first term in the Martin-Hou equation of + state. +

                                    +

                                    References

                                    +

                                    + Thermodynamic properties of DuPont Suva 410A: + + https://www.chemours.com/Refrigerants/en_US/assets/downloads/h64423_Suva410A_thermo_prop_si.pdf + +

                                    + ",revisions=" +
                                      +
                                    • + November 8, 2020, by Michael Wetter:
                                      + Removed non-used parameters.
                                      + This is for + #1414. +
                                    • +
                                    • + October 17, 2016, by Massimo Cimmino:
                                      + First implementation. +
                                    • +
                                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end specificVolumeVap_pT; diff --git a/AixLib/Media/Refrigerants/R410A_HEoS/R410a_IIR_P1_48_T233_340_Formula/package.mo b/AixLib/Media/Refrigerants/R410A_HEoS/R410a_IIR_P1_48_T233_340_Formula/package.mo index 9e1333e93e..23249b5a28 100644 --- a/AixLib/Media/Refrigerants/R410A_HEoS/R410a_IIR_P1_48_T233_340_Formula/package.mo +++ b/AixLib/Media/Refrigerants/R410A_HEoS/R410a_IIR_P1_48_T233_340_Formula/package.mo @@ -1,4 +1,4 @@ -within AixLib.Media.Refrigerants.R410A_HEoS; +within AixLib.Media.Refrigerants.R410A_HEoS; package R410a_IIR_P1_48_T233_340_Formula "Refrigerant model for R410a using a hybrid approach with explicit formulas" /*Provide basic definitions of the refrigerant. Therefore, fill constants @@ -1284,119 +1284,126 @@ protected The implemented coefficients are fitted to external data by Engelpracht and are valid within the following range:

                                    - - - - - - - - - - - - - - - - +
                                    -

                                    - Parameter -

                                    -
                                    -

                                    - Minimum Value -

                                    -
                                    -

                                    - Maximum Value -

                                    -
                                    -

                                    - Pressure (p) in bar -

                                    -
                                    -

                                    - 1 -

                                    -
                                    -

                                    - 48 -

                                    -
                                    -

                                    - Temperature (T) in K -

                                    -
                                    -

                                    - 233.15 -

                                    -
                                    -

                                    - 340.15 -

                                    -
                                    +
                                    + \"Range of validiry\" cellspacing=\"0\" cellpadding=\"2\" border=\"1\" + width=\"30%\" style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + +
                                    +

                                    + Parameter +

                                    +
                                    +

                                    + Minimum Value +

                                    +
                                    +

                                    + Maximum Value +

                                    +
                                    +

                                    + Pressure (p) in bar +

                                    +
                                    +

                                    + 1 +

                                    +
                                    +

                                    + 48 +

                                    +
                                    +

                                    + Temperature (T) in K +

                                    +
                                    +

                                    + 233.15 +

                                    +
                                    +

                                    + 340.15 +

                                    +
                                    +

                                    + The reference point is defined as 200 kJ/kg and 1 kJ/kg/K, + respectively, for enthalpy and entropy for the saturated liquid + at 273.15 K. +

                                    +

                                    + Assumptions and limitations +

                                    +

                                    + R410a is calculated as pseudo-pure fluid and, hence, only roughly + valid within the two-phase region. +

                                    +

                                    + Validation +

                                    +

                                    + The model is validated by comparing results obtained from the + example model + AixLib.Media.Refrigerants.Examples.RefrigerantProperties to + external data (e.g. obtained from measurements or external media + libraries). +

                                    +

                                    + References +

                                    +

                                    + Lemmon, E. W. (2003): Pseudo-Pure Fluid Equations of State for + the Refrigerant Blends R-410A, R-404A, R-507A, and R-407C. In: + International Journal of Thermophysics 24 (4), S. + 991–1006. DOI: 10.1023/A:1025048800563. +

                                    +

                                    + Geller, V. Z.; Bivens, D.; Yokozeki, A. (2000): Viscosity of + Mixed Refrigerants, R404A, R407C, R410A, and R507C. In: + International refrigeration and air conditioning + conference. USA, S. 399–406. Online available at + http://docs.lib.purdue.edu/iracc/508. +

                                    +

                                    + Nabizadeh, H.; Mayinger, F. (1999): Viscosity of Gaseous R404A, + R407C, R410A, and R507. In: International Journal of + Thermophysics 20 (3), S. 777–790. DOI: + 10.1007/978-1-4615-4777-8_1. +

                                    +

                                    + Geller, V. Z.; Nemzer, B. V.; Cheremnykh, U. V. (2001): Thermal + Conductivity of the Refrigerant Mixtures R404A, R407C, R410A, and + R507A. In: International Journal of Thermophysics 22 (4), + 1035–1043. DOI: 10.1023/A:1010691504352. +

                                    +

                                    + Fröba, A. P.; Leipertz, A. (2003): Thermophysical Properties of + the Refrigerant Mixtures R410A and R407C from Dynamic Light + Scattering (DLS). In: International Journal ofThermophysics 24 + (5), S. 1185–1206. DOI: 10.1023/A:1026152331710. +

                                    +

                                    + Engelpracht, Mirko (2017): Development of modular and scalable + simulation models for heat pumps and chillers considering various + refrigerants. Master Thesis +

                                    +
                                    -

                                    - The reference point is defined as 200 kJ/kg and 1 kJ/kg/K, - respectively, for enthalpy and entropy for the saturated liquid at - 273.15 K. -

                                    -

                                    - Assumptions and limitations -

                                    -

                                    - R410a is calculated as pseudo-pure fluid and, hence, only roughly - valid within the two-phase region. -

                                    -

                                    - Validation -

                                    -

                                    - The model is validated by comparing results obtained from the example - model - AixLib.Media.Refrigerants.Examples.RefrigerantProperties to - external data (e.g. obtained from measurements or external media - libraries). -

                                    -

                                    - References -

                                    -

                                    - Lemmon, E. W. (2003): Pseudo-Pure Fluid Equations of State for the - Refrigerant Blends R-410A, R-404A, R-507A, and R-407C. In: - International Journal of Thermophysics 24 (4), S. 991–1006. - DOI: 10.1023/A:1025048800563. -

                                    -

                                    - Geller, V. Z.; Bivens, D.; Yokozeki, A. (2000): Viscosity of Mixed - Refrigerants, R404A, R407C, R410A, and R507C. In: International - refrigeration and air conditioning conference. USA, S. 399–406. - Online available at http://docs.lib.purdue.edu/iracc/508. -

                                    -

                                    - Nabizadeh, H.; Mayinger, F. (1999): Viscosity of Gaseous R404A, - R407C, R410A, and R507. In: International Journal of Thermophysics - 20 (3), S. 777–790. DOI: 10.1007/978-1-4615-4777-8_1. -

                                    -

                                    - Geller, V. Z.; Nemzer, B. V.; Cheremnykh, U. V. (2001): Thermal - Conductivity of the Refrigerant Mixtures R404A, R407C, R410A, and - R507A. In: International Journal of Thermophysics 22 (4), - 1035–1043. DOI: 10.1023/A:1010691504352. -

                                    -

                                    - Fröba, A. P.; Leipertz, A. (2003): Thermophysical Properties of the - Refrigerant Mixtures R410A and R407C from Dynamic Light Scattering - (DLS). In: International Journal ofThermophysics 24 (5), S. - 1185–1206. DOI: 10.1023/A:1026152331710. -

                                    -

                                    - Engelpracht, Mirko (2017): Development of modular and scalable - simulation models for heat pumps and chillers considering various - refrigerants. Master Thesis -

                                    ")); end R410a_IIR_P1_48_T233_340_Formula; diff --git a/AixLib/Media/Refrigerants/R410A_HEoS/R410a_IIR_P1_48_T233_340_Formula/package.order b/AixLib/Media/Refrigerants/R410A_HEoS/R410a_IIR_P1_48_T233_340_Formula/package.order index e69de29bb2..f547d28437 100644 --- a/AixLib/Media/Refrigerants/R410A_HEoS/R410a_IIR_P1_48_T233_340_Formula/package.order +++ b/AixLib/Media/Refrigerants/R410A_HEoS/R410a_IIR_P1_48_T233_340_Formula/package.order @@ -0,0 +1,30 @@ +refrigerantConstants +SmoothTransition +f_Idg +f_Res +t_fIdg_t +tt_fIdg_tt +t_fRes_t +tt_fRes_tt +d_fRes_d +dd_fRes_dd +td_fRes_td +ttt_fIdg_ttt +ttt_fRes_ttt +ddd_fRes_ddd +tdd_fRes_tdd +ttd_fRes_ttd +saturationPressure +saturationTemperature +bubbleDensity +dewDensity +bubbleEnthalpy +dewEnthalpy +bubbleEntropy +dewEntropy +temperature_ph +temperature_ps +density_pT +dynamicViscosity +thermalConductivity +surfaceTension diff --git a/AixLib/Media/Refrigerants/R410A_HEoS/R410a_IIR_P1_48_T233_340_Record/package.mo b/AixLib/Media/Refrigerants/R410A_HEoS/R410a_IIR_P1_48_T233_340_Record/package.mo index a13c113343..e9b309de5f 100644 --- a/AixLib/Media/Refrigerants/R410A_HEoS/R410a_IIR_P1_48_T233_340_Record/package.mo +++ b/AixLib/Media/Refrigerants/R410A_HEoS/R410a_IIR_P1_48_T233_340_Record/package.mo @@ -1,4 +1,4 @@ -within AixLib.Media.Refrigerants.R410A_HEoS; +within AixLib.Media.Refrigerants.R410A_HEoS; package R410a_IIR_P1_48_T233_340_Record "Refrigerant model for R410a using a hybrid approach with recods" /*Provide basic definitions of the refrigerant. Therefore, fill constants @@ -295,119 +295,126 @@ protected The implemented coefficients are fitted to external data by Engelpracht and are valid within the following range:

                                    - - - - - - - - - - - - - - - - +
                                    -

                                    - Parameter -

                                    -
                                    -

                                    - Minimum Value -

                                    -
                                    -

                                    - Maximum Value -

                                    -
                                    -

                                    - Pressure (p) in bar -

                                    -
                                    -

                                    - 1 -

                                    -
                                    -

                                    - 48 -

                                    -
                                    -

                                    - Temperature (T) in K -

                                    -
                                    -

                                    - 233.15 -

                                    -
                                    -

                                    - 340.15 -

                                    -
                                    +
                                    + \"Range of validiry\" cellspacing=\"0\" cellpadding=\"2\" border=\"1\" + width=\"30%\" style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + +
                                    +

                                    + Parameter +

                                    +
                                    +

                                    + Minimum Value +

                                    +
                                    +

                                    + Maximum Value +

                                    +
                                    +

                                    + Pressure (p) in bar +

                                    +
                                    +

                                    + 1 +

                                    +
                                    +

                                    + 48 +

                                    +
                                    +

                                    + Temperature (T) in K +

                                    +
                                    +

                                    + 233.15 +

                                    +
                                    +

                                    + 340.15 +

                                    +
                                    +

                                    + The reference point is defined as 200 kJ/kg and 1 kJ/kg/K, + respectively, for enthalpy and entropy for the saturated liquid + at 273.15 K. +

                                    +

                                    + Assumptions and limitations +

                                    +

                                    + R410a is calculated as pseudo-pure fluid and, hence, only roughly + valid withing the two-phase region. +

                                    +

                                    + Validation +

                                    +

                                    + The model is validated by comparing results obtained from the + example model + AixLib.Media.Refrigerants.Examples.RefrigerantProperties to + external data (e.g. obtained from measurements or external media + libraries). +

                                    +

                                    + References +

                                    +

                                    + Lemmon, E. W. (2003): Pseudo-Pure Fluid Equations of State for + the Refrigerant Blends R-410A, R-404A, R-507A, and R-407C. In: + International Journal of Thermophysics 24 (4), S. + 991–1006. DOI: 10.1023/A:1025048800563. +

                                    +

                                    + Geller, V. Z.; Bivens, D.; Yokozeki, A. (2000): Viscosity of + Mixed Refrigerants, R404A, R407C, R410A, and R507C. In: + International refrigeration and air conditioning + conference. USA, S. 399–406. Online available at + http://docs.lib.purdue.edu/iracc/508. +

                                    +

                                    + Nabizadeh, H.; Mayinger, F. (1999): Viscosity of Gaseous R404A, + R407C, R410A, and R507. In: International Journal of + Thermophysics 20 (3), S. 777–790. DOI: + 10.1007/978-1-4615-4777-8_1. +

                                    +

                                    + Geller, V. Z.; Nemzer, B. V.; Cheremnykh, U. V. (2001): Thermal + Conductivity of the Refrigerant Mixtures R404A, R407C, R410A, and + R507A. In: International Journal of Thermophysics 22 (4), + 1035–1043. DOI: 10.1023/A:1010691504352. +

                                    +

                                    + Fröba, A. P.; Leipertz, A. (2003): Thermophysical Properties of + the Refrigerant Mixtures R410A and R407C from Dynamic Light + Scattering (DLS). In: International Journal ofThermophysics 24 + (5), S. 1185–1206. DOI: 10.1023/A:1026152331710. +

                                    +

                                    + Engelpracht, Mirko (2017): Development of modular and scalable + simulation models for heat pumps and chillers considering various + refrigerants. Master Thesis +

                                    +
                                    -

                                    - The reference point is defined as 200 kJ/kg and 1 kJ/kg/K, - respectively, for enthalpy and entropy for the saturated liquid at - 273.15 K. -

                                    -

                                    - Assumptions and limitations -

                                    -

                                    - R410a is calculated as pseudo-pure fluid and, hence, only roughly - valid withing the two-phase region. -

                                    -

                                    - Validation -

                                    -

                                    - The model is validated by comparing results obtained from the example - model - AixLib.Media.Refrigerants.Examples.RefrigerantProperties to - external data (e.g. obtained from measurements or external media - libraries). -

                                    -

                                    - References -

                                    -

                                    - Lemmon, E. W. (2003): Pseudo-Pure Fluid Equations of State for the - Refrigerant Blends R-410A, R-404A, R-507A, and R-407C. In: - International Journal of Thermophysics 24 (4), S. 991–1006. - DOI: 10.1023/A:1025048800563. -

                                    -

                                    - Geller, V. Z.; Bivens, D.; Yokozeki, A. (2000): Viscosity of Mixed - Refrigerants, R404A, R407C, R410A, and R507C. In: International - refrigeration and air conditioning conference. USA, S. 399–406. - Online available at http://docs.lib.purdue.edu/iracc/508. -

                                    -

                                    - Nabizadeh, H.; Mayinger, F. (1999): Viscosity of Gaseous R404A, - R407C, R410A, and R507. In: International Journal of Thermophysics - 20 (3), S. 777–790. DOI: 10.1007/978-1-4615-4777-8_1. -

                                    -

                                    - Geller, V. Z.; Nemzer, B. V.; Cheremnykh, U. V. (2001): Thermal - Conductivity of the Refrigerant Mixtures R404A, R407C, R410A, and - R507A. In: International Journal of Thermophysics 22 (4), - 1035–1043. DOI: 10.1023/A:1010691504352. -

                                    -

                                    - Fröba, A. P.; Leipertz, A. (2003): Thermophysical Properties of the - Refrigerant Mixtures R410A and R407C from Dynamic Light Scattering - (DLS). In: International Journal ofThermophysics 24 (5), S. - 1185–1206. DOI: 10.1023/A:1026152331710. -

                                    -

                                    - Engelpracht, Mirko (2017): Development of modular and scalable - simulation models for heat pumps and chillers considering various - refrigerants. Master Thesis -

                                    ")); end R410a_IIR_P1_48_T233_340_Record; diff --git a/AixLib/Media/Refrigerants/R410A_HEoS/R410a_IIR_P1_48_T233_340_Record/package.order b/AixLib/Media/Refrigerants/R410A_HEoS/R410a_IIR_P1_48_T233_340_Record/package.order index e69de29bb2..b433689bb9 100644 --- a/AixLib/Media/Refrigerants/R410A_HEoS/R410a_IIR_P1_48_T233_340_Record/package.order +++ b/AixLib/Media/Refrigerants/R410A_HEoS/R410a_IIR_P1_48_T233_340_Record/package.order @@ -0,0 +1,8 @@ +refrigerantConstants +EoS +BDSP +TSP +SmoothTransition +dynamicViscosity +thermalConductivity +surfaceTension diff --git a/AixLib/Media/Refrigerants/R410A_HEoS/R410a_IIR_P1_48_T233_473_Formula/package.mo b/AixLib/Media/Refrigerants/R410A_HEoS/R410a_IIR_P1_48_T233_473_Formula/package.mo index 4a47f4c38c..eb13858b2a 100644 --- a/AixLib/Media/Refrigerants/R410A_HEoS/R410a_IIR_P1_48_T233_473_Formula/package.mo +++ b/AixLib/Media/Refrigerants/R410A_HEoS/R410a_IIR_P1_48_T233_473_Formula/package.mo @@ -1,4 +1,4 @@ -within AixLib.Media.Refrigerants.R410A_HEoS; +within AixLib.Media.Refrigerants.R410A_HEoS; package R410a_IIR_P1_48_T233_473_Formula "Refrigerant model for R410a using a hybrid approach with explicit formulas" /*Provide basic definitions of the refrigerant. Therefore, fill constants @@ -1326,119 +1326,126 @@ protected The implemented coefficients are fitted to external data by Engelpracht and are valid within the following range:

                                    - - - - - - - - - - - - - - - - +
                                    -

                                    - Parameter -

                                    -
                                    -

                                    - Minimum Value -

                                    -
                                    -

                                    - Maximum Value -

                                    -
                                    -

                                    - Pressure (p) in bar -

                                    -
                                    -

                                    - 1 -

                                    -
                                    -

                                    - 48 -

                                    -
                                    -

                                    - Temperature (T) in K -

                                    -
                                    -

                                    - 233.15 -

                                    -
                                    -

                                    - 473.15 -

                                    -
                                    +
                                    + \"Range of validiry\" cellspacing=\"0\" cellpadding=\"2\" border=\"1\" + width=\"30%\" style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + +
                                    +

                                    + Parameter +

                                    +
                                    +

                                    + Minimum Value +

                                    +
                                    +

                                    + Maximum Value +

                                    +
                                    +

                                    + Pressure (p) in bar +

                                    +
                                    +

                                    + 1 +

                                    +
                                    +

                                    + 48 +

                                    +
                                    +

                                    + Temperature (T) in K +

                                    +
                                    +

                                    + 233.15 +

                                    +
                                    +

                                    + 473.15 +

                                    +
                                    +

                                    + The reference point is defined as 200 kJ/kg and 1 kJ/kg/K, + respectively, for enthalpy and entropy for the saturated liquid + at 273.15 K. +

                                    +

                                    + Assumptions and limitations +

                                    +

                                    + R410a is calculated as pseudo-pure fluid and, hence, only roughly + valid within the two-phase region. +

                                    +

                                    + Validation +

                                    +

                                    + The model is validated by comparing results obtained from the + example model + AixLib.Media.Refrigerants.Examples.RefrigerantProperties to + external data (e.g. obtained from measurements or external media + libraries). +

                                    +

                                    + References +

                                    +

                                    + Lemmon, E. W. (2003): Pseudo-Pure Fluid Equations of State for + the Refrigerant Blends R-410A, R-404A, R-507A, and R-407C. In: + International Journal of Thermophysics 24 (4), S. + 991–1006. DOI: 10.1023/A:1025048800563. +

                                    +

                                    + Geller, V. Z.; Bivens, D.; Yokozeki, A. (2000): Viscosity of + Mixed Refrigerants, R404A, R407C, R410A, and R507C. In: + International refrigeration and air conditioning + conference. USA, S. 399–406. Online available at + http://docs.lib.purdue.edu/iracc/508. +

                                    +

                                    + Nabizadeh, H.; Mayinger, F. (1999): Viscosity of Gaseous R404A, + R407C, R410A, and R507. In: International Journal of + Thermophysics 20 (3), S. 777–790. DOI: + 10.1007/978-1-4615-4777-8_1. +

                                    +

                                    + Geller, V. Z.; Nemzer, B. V.; Cheremnykh, U. V. (2001): Thermal + Conductivity of the Refrigerant Mixtures R404A, R407C, R410A, and + R507A. In: International Journal of Thermophysics 22 (4), + 1035–1043. DOI: 10.1023/A:1010691504352. +

                                    +

                                    + Fröba, A. P.; Leipertz, A. (2003): Thermophysical Properties of + the Refrigerant Mixtures R410A and R407C from Dynamic Light + Scattering (DLS). In: International Journal ofThermophysics 24 + (5), S. 1185–1206. DOI: 10.1023/A:1026152331710. +

                                    +

                                    + Engelpracht, Mirko (2017): Development of modular and scalable + simulation models for heat pumps and chillers considering various + refrigerants. Master Thesis +

                                    +
                                    -

                                    - The reference point is defined as 200 kJ/kg and 1 kJ/kg/K, - respectively, for enthalpy and entropy for the saturated liquid at - 273.15 K. -

                                    -

                                    - Assumptions and limitations -

                                    -

                                    - R410a is calculated as pseudo-pure fluid and, hence, only roughly - valid within the two-phase region. -

                                    -

                                    - Validation -

                                    -

                                    - The model is validated by comparing results obtained from the example - model - AixLib.Media.Refrigerants.Examples.RefrigerantProperties to - external data (e.g. obtained from measurements or external media - libraries). -

                                    -

                                    - References -

                                    -

                                    - Lemmon, E. W. (2003): Pseudo-Pure Fluid Equations of State for the - Refrigerant Blends R-410A, R-404A, R-507A, and R-407C. In: - International Journal of Thermophysics 24 (4), S. 991–1006. - DOI: 10.1023/A:1025048800563. -

                                    -

                                    - Geller, V. Z.; Bivens, D.; Yokozeki, A. (2000): Viscosity of Mixed - Refrigerants, R404A, R407C, R410A, and R507C. In: International - refrigeration and air conditioning conference. USA, S. 399–406. - Online available at http://docs.lib.purdue.edu/iracc/508. -

                                    -

                                    - Nabizadeh, H.; Mayinger, F. (1999): Viscosity of Gaseous R404A, - R407C, R410A, and R507. In: International Journal of Thermophysics - 20 (3), S. 777–790. DOI: 10.1007/978-1-4615-4777-8_1. -

                                    -

                                    - Geller, V. Z.; Nemzer, B. V.; Cheremnykh, U. V. (2001): Thermal - Conductivity of the Refrigerant Mixtures R404A, R407C, R410A, and - R507A. In: International Journal of Thermophysics 22 (4), - 1035–1043. DOI: 10.1023/A:1010691504352. -

                                    -

                                    - Fröba, A. P.; Leipertz, A. (2003): Thermophysical Properties of the - Refrigerant Mixtures R410A and R407C from Dynamic Light Scattering - (DLS). In: International Journal ofThermophysics 24 (5), S. - 1185–1206. DOI: 10.1023/A:1026152331710. -

                                    -

                                    - Engelpracht, Mirko (2017): Development of modular and scalable - simulation models for heat pumps and chillers considering various - refrigerants. Master Thesis -

                                    ")); end R410a_IIR_P1_48_T233_473_Formula; diff --git a/AixLib/Media/Refrigerants/R410A_HEoS/R410a_IIR_P1_48_T233_473_Formula/package.order b/AixLib/Media/Refrigerants/R410A_HEoS/R410a_IIR_P1_48_T233_473_Formula/package.order index e69de29bb2..f547d28437 100644 --- a/AixLib/Media/Refrigerants/R410A_HEoS/R410a_IIR_P1_48_T233_473_Formula/package.order +++ b/AixLib/Media/Refrigerants/R410A_HEoS/R410a_IIR_P1_48_T233_473_Formula/package.order @@ -0,0 +1,30 @@ +refrigerantConstants +SmoothTransition +f_Idg +f_Res +t_fIdg_t +tt_fIdg_tt +t_fRes_t +tt_fRes_tt +d_fRes_d +dd_fRes_dd +td_fRes_td +ttt_fIdg_ttt +ttt_fRes_ttt +ddd_fRes_ddd +tdd_fRes_tdd +ttd_fRes_ttd +saturationPressure +saturationTemperature +bubbleDensity +dewDensity +bubbleEnthalpy +dewEnthalpy +bubbleEntropy +dewEntropy +temperature_ph +temperature_ps +density_pT +dynamicViscosity +thermalConductivity +surfaceTension diff --git a/AixLib/Media/Refrigerants/R410A_HEoS/R410a_IIR_P1_48_T233_473_Horner/package.mo b/AixLib/Media/Refrigerants/R410A_HEoS/R410a_IIR_P1_48_T233_473_Horner/package.mo index 6d71ac3672..08676cd011 100644 --- a/AixLib/Media/Refrigerants/R410A_HEoS/R410a_IIR_P1_48_T233_473_Horner/package.mo +++ b/AixLib/Media/Refrigerants/R410A_HEoS/R410a_IIR_P1_48_T233_473_Horner/package.mo @@ -1,4 +1,4 @@ -within AixLib.Media.Refrigerants.R410A_HEoS; +within AixLib.Media.Refrigerants.R410A_HEoS; package R410a_IIR_P1_48_T233_473_Horner "Refrigerant model for R410a using a hybrid approach with explicit Horner formulas" @@ -1254,119 +1254,126 @@ protected The implemented coefficients are fitted to external data by Engelpracht and are valid within the following range:

                                    - - - - - - - - - - - - - - - - +
                                    -

                                    - Parameter -

                                    -
                                    -

                                    - Minimum Value -

                                    -
                                    -

                                    - Maximum Value -

                                    -
                                    -

                                    - Pressure (p) in bar -

                                    -
                                    -

                                    - 1 -

                                    -
                                    -

                                    - 48 -

                                    -
                                    -

                                    - Temperature (T) in K -

                                    -
                                    -

                                    - 233.15 -

                                    -
                                    -

                                    - 473.15 -

                                    -
                                    +
                                    + \"Range of validiry\" cellspacing=\"0\" cellpadding=\"2\" border=\"1\" + width=\"30%\" style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + +
                                    +

                                    + Parameter +

                                    +
                                    +

                                    + Minimum Value +

                                    +
                                    +

                                    + Maximum Value +

                                    +
                                    +

                                    + Pressure (p) in bar +

                                    +
                                    +

                                    + 1 +

                                    +
                                    +

                                    + 48 +

                                    +
                                    +

                                    + Temperature (T) in K +

                                    +
                                    +

                                    + 233.15 +

                                    +
                                    +

                                    + 473.15 +

                                    +
                                    +

                                    + The reference point is defined as 200 kJ/kg and 1 kJ/kg/K, + respectively, for enthalpy and entropy for the saturated liquid + at 273.15 K. +

                                    +

                                    + Assumptions and limitations +

                                    +

                                    + R410a is calculated as pseudo-pure fluid and, hence, only roughly + valid within the two-phase region. +

                                    +

                                    + Validation +

                                    +

                                    + The model is validated by comparing results obtained from the + example model + AixLib.Media.Refrigerants.Examples.RefrigerantProperties to + external data (e.g. obtained from measurements or external media + libraries). +

                                    +

                                    + References +

                                    +

                                    + Lemmon, E. W. (2003): Pseudo-Pure Fluid Equations of State for + the Refrigerant Blends R-410A, R-404A, R-507A, and R-407C. In: + International Journal of Thermophysics 24 (4), S. + 991–1006. DOI: 10.1023/A:1025048800563. +

                                    +

                                    + Geller, V. Z.; Bivens, D.; Yokozeki, A. (2000): Viscosity of + Mixed Refrigerants, R404A, R407C, R410A, and R507C. In: + International refrigeration and air conditioning + conference. USA, S. 399–406. Online available at + http://docs.lib.purdue.edu/iracc/508. +

                                    +

                                    + Nabizadeh, H.; Mayinger, F. (1999): Viscosity of Gaseous R404A, + R407C, R410A, and R507. In: International Journal of + Thermophysics 20 (3), S. 777–790. DOI: + 10.1007/978-1-4615-4777-8_1. +

                                    +

                                    + Geller, V. Z.; Nemzer, B. V.; Cheremnykh, U. V. (2001): Thermal + Conductivity of the Refrigerant Mixtures R404A, R407C, R410A, and + R507A. In: International Journal of Thermophysics 22 (4), + 1035–1043. DOI: 10.1023/A:1010691504352. +

                                    +

                                    + Fröba, A. P.; Leipertz, A. (2003): Thermophysical Properties of + the Refrigerant Mixtures R410A and R407C from Dynamic Light + Scattering (DLS). In: International Journal ofThermophysics 24 + (5), S. 1185–1206. DOI: 10.1023/A:1026152331710. +

                                    +

                                    + Engelpracht, Mirko (2017): Development of modular and scalable + simulation models for heat pumps and chillers considering various + refrigerants. Master Thesis +

                                    +
                                    -

                                    - The reference point is defined as 200 kJ/kg and 1 kJ/kg/K, - respectively, for enthalpy and entropy for the saturated liquid at - 273.15 K. -

                                    -

                                    - Assumptions and limitations -

                                    -

                                    - R410a is calculated as pseudo-pure fluid and, hence, only roughly - valid within the two-phase region. -

                                    -

                                    - Validation -

                                    -

                                    - The model is validated by comparing results obtained from the example - model - AixLib.Media.Refrigerants.Examples.RefrigerantProperties to - external data (e.g. obtained from measurements or external media - libraries). -

                                    -

                                    - References -

                                    -

                                    - Lemmon, E. W. (2003): Pseudo-Pure Fluid Equations of State for the - Refrigerant Blends R-410A, R-404A, R-507A, and R-407C. In: - International Journal of Thermophysics 24 (4), S. 991–1006. - DOI: 10.1023/A:1025048800563. -

                                    -

                                    - Geller, V. Z.; Bivens, D.; Yokozeki, A. (2000): Viscosity of Mixed - Refrigerants, R404A, R407C, R410A, and R507C. In: International - refrigeration and air conditioning conference. USA, S. 399–406. - Online available at http://docs.lib.purdue.edu/iracc/508. -

                                    -

                                    - Nabizadeh, H.; Mayinger, F. (1999): Viscosity of Gaseous R404A, - R407C, R410A, and R507. In: International Journal of Thermophysics - 20 (3), S. 777–790. DOI: 10.1007/978-1-4615-4777-8_1. -

                                    -

                                    - Geller, V. Z.; Nemzer, B. V.; Cheremnykh, U. V. (2001): Thermal - Conductivity of the Refrigerant Mixtures R404A, R407C, R410A, and - R507A. In: International Journal of Thermophysics 22 (4), - 1035–1043. DOI: 10.1023/A:1010691504352. -

                                    -

                                    - Fröba, A. P.; Leipertz, A. (2003): Thermophysical Properties of the - Refrigerant Mixtures R410A and R407C from Dynamic Light Scattering - (DLS). In: International Journal ofThermophysics 24 (5), S. - 1185–1206. DOI: 10.1023/A:1026152331710. -

                                    -

                                    - Engelpracht, Mirko (2017): Development of modular and scalable - simulation models for heat pumps and chillers considering various - refrigerants. Master Thesis -

                                    ")); end R410a_IIR_P1_48_T233_473_Horner; diff --git a/AixLib/Media/Refrigerants/R410A_HEoS/R410a_IIR_P1_48_T233_473_Horner/package.order b/AixLib/Media/Refrigerants/R410A_HEoS/R410a_IIR_P1_48_T233_473_Horner/package.order index e69de29bb2..f547d28437 100644 --- a/AixLib/Media/Refrigerants/R410A_HEoS/R410a_IIR_P1_48_T233_473_Horner/package.order +++ b/AixLib/Media/Refrigerants/R410A_HEoS/R410a_IIR_P1_48_T233_473_Horner/package.order @@ -0,0 +1,30 @@ +refrigerantConstants +SmoothTransition +f_Idg +f_Res +t_fIdg_t +tt_fIdg_tt +t_fRes_t +tt_fRes_tt +d_fRes_d +dd_fRes_dd +td_fRes_td +ttt_fIdg_ttt +ttt_fRes_ttt +ddd_fRes_ddd +tdd_fRes_tdd +ttd_fRes_ttd +saturationPressure +saturationTemperature +bubbleDensity +dewDensity +bubbleEnthalpy +dewEnthalpy +bubbleEntropy +dewEntropy +temperature_ph +temperature_ps +density_pT +dynamicViscosity +thermalConductivity +surfaceTension diff --git a/AixLib/Media/Refrigerants/UsersGuide/Approaches.mo b/AixLib/Media/Refrigerants/UsersGuide/Approaches.mo index 62b0f61566..81ceef0cd6 100644 --- a/AixLib/Media/Refrigerants/UsersGuide/Approaches.mo +++ b/AixLib/Media/Refrigerants/UsersGuide/Approaches.mo @@ -87,344 +87,365 @@ class Approaches "Approaches implemented in refrigerant library" developed by Sangi et al. within their \"Fast_Propane\" model and given below:

                                    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
                                    -

                                    - Saturation pressure -

                                    -
                                    -

                                    - \"Formula -

                                    -
                                    -

                                    - Saturation temperature -

                                    -
                                    -

                                    - \"Formula -

                                    -
                                    -

                                    - Bubble density -

                                    -
                                    -

                                    - \"Formula -

                                    -
                                    -

                                    - Dew density -

                                    -
                                    -

                                    - \"Formula -

                                    -
                                    -

                                    - Bubble Enthalpy -

                                    -
                                    -

                                    - \"Formula -

                                    -
                                    -

                                    - Dew Enthalpy -

                                    -
                                    -

                                    - \"Formula -

                                    -
                                    -

                                    - Bubble Entropy -

                                    -
                                    -

                                    - \"Formula -

                                    -
                                    -

                                    - Dew Entropy -

                                    -
                                    -

                                    - \"Formula -

                                    -
                                    +
                                    + \"Formulas for calculating saturation properties\" cellspacing=\"0\" + cellpadding=\"2\" border=\"1\" width=\"80%\" style= + \"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                    +

                                    + Saturation pressure +

                                    +
                                    +

                                    + \"Formula +

                                    +
                                    +

                                    + Saturation temperature +

                                    +
                                    +

                                    + \"Formula +

                                    +
                                    +

                                    + Bubble density +

                                    +
                                    +

                                    + \"Formula +

                                    +
                                    +

                                    + Dew density +

                                    +
                                    +

                                    + \"Formula +

                                    +
                                    +

                                    + Bubble Enthalpy +

                                    +
                                    +

                                    + \"Formula +

                                    +
                                    +

                                    + Dew Enthalpy +

                                    +
                                    +

                                    + \"Formula +

                                    +
                                    +

                                    + Bubble Entropy +

                                    +
                                    +

                                    + \"Formula +

                                    +
                                    +

                                    + Dew Entropy +

                                    +
                                    +

                                    + \"Formula +

                                    +
                                    + + +
                                    + \"Formulas for calculating thermodynamic properties at + superheated and supercooled regime\" cellspacing=\"0\" + cellpadding=\"3\" border=\"1\" width=\"80%\" style= + \"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                    +

                                    + Temperature_ph +

                                    +
                                    +

                                    + First Input +

                                    +
                                    +

                                    + + +

                                    +
                                    +

                                    + Second Input +

                                    +
                                    +

                                    + + +

                                    +
                                    +

                                    + Temperature_ps +

                                    +
                                    +

                                    + First Input +

                                    +
                                    +

                                    + + +

                                    +
                                    +

                                    + Second Input +

                                    +
                                    +

                                    + + +

                                    +
                                    +

                                    + Density_pT +

                                    +
                                    +

                                    + First Input +

                                    +
                                    +

                                    + + +

                                    +
                                    +

                                    + Second Input +

                                    +
                                    +

                                    + + +

                                    +
                                    +

                                    + Functional approach +

                                    +
                                    +

                                    + + +

                                    +
                                    +

                                    + As it can be seen, the fitted formulas consist basically of + the coefficients ei, ci as well as of + the parameters Meani and Stdi. These + coefficients are the fitting coefficients and must be + obtained during a fitting procedure. While the fitting + procedure, the formulas presented above are fitted to + external data (e.g. obtained from measurements or external + media libraries) and the fitting coefficients are determined. + Finally, the formulas obtained during the fitting procedure + are implemented in an explicit form. +

                                    +

                                    + For further information of the hybrid approach, please + read the paper \"A Medium Model for the + Refrigerant Propane for Fast and Accurate Dynamic + Simulations\" by Sangi et al.. +

                                    +

                                    + Smooth transition +

                                    +

                                    + To ensure a smooth transition between different regions (e.g. + from supercooled region to two-phase region) and, therefore, + to avoid discontinuities as far as possible, Sangi et al. + implemented functions for a smooth transition between the + regions. An example (i.e. specificEnthalpy_ps) of these + functions is given below:
                                    +

                                    + + +
                                    + \"Calculation procedures to avoid numerical instability at + phase change\" cellspacing=\"0\" cellpadding=\"2\" border=\"1\" + width=\"80%\" style= \"border-collapse:collapse;\"> + + + + + + + + + + + + + +
                                    +

                                    + From supercooled region to bubble line and vice + versa +

                                    +
                                    +

                                    + + +

                                    +
                                    +

                                    + From dew line to superheated region and vice + versa +

                                    +
                                    +

                                    + + +

                                    +
                                    +

                                    + From bubble or dew line to two-phase region and + vice versa +

                                    +
                                    +

                                    + + +

                                    +
                                    +

                                    + Assumptions and limitations +

                                    +

                                    + Two limitations are known for this package: +

                                    +
                                      +
                                    1. The modelling approach implemented in this package is + a hybrid approach and, therefore, is based on the + Helmholtz equation of state as well as on fitted formula. + Hence, the refrigerant model is just valid within the + valid range of the fitted formula. +
                                    2. +
                                    3. It may be possible to have discontinuities when + moving from one region to another (e.g. from supercooled + region to two-phase region). However, functions are + implemented to reach a smooth transition between the + regions and to avoid these discontinuities as far as + possible. (Sangi et al., 2014) +
                                    4. +
                                    +
                                    +
                                    +
                                    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                    -

                                    - Temperature_ph -

                                    -
                                    -

                                    - First Input -

                                    -
                                    -

                                    - - -

                                    -
                                    -

                                    - Second Input -

                                    -
                                    -

                                    - - -

                                    -
                                    -

                                    - Temperature_ps -

                                    -
                                    -

                                    - First Input -

                                    -
                                    -

                                    - - -

                                    -
                                    -

                                    - Second Input -

                                    -
                                    -

                                    - - -

                                    -
                                    -

                                    - Density_pT -

                                    -
                                    -

                                    - First Input -

                                    -
                                    -

                                    - - -

                                    -
                                    -

                                    - Second Input -

                                    -
                                    -

                                    - - -

                                    -
                                    -

                                    - Functional approach -

                                    -
                                    -

                                    - - -

                                    -
                                    -

                                    - As it can be seen, the fitted formulas consist basically of the - coefficients ei, ci as well as of the - parameters Meani and Stdi. These coefficients - are the fitting coefficients and must be obtained during a fitting - procedure. While the fitting procedure, the formulas presented above - are fitted to external data (e.g. obtained from measurements or - external media libraries) and the fitting coefficients are - determined. Finally, the formulas obtained during the fitting - procedure are implemented in an explicit form. -

                                    -

                                    - For further information of the hybrid approach, please read - the paper \"A Medium - Model for the Refrigerant Propane for Fast and Accurate Dynamic - Simulations\" by Sangi et al.. -

                                    -

                                    - Smooth transition -

                                    -

                                    - To ensure a smooth transition between different regions (e.g. from - supercooled region to two-phase region) and, therefore, to avoid - discontinuities as far as possible, Sangi et al. implemented - functions for a smooth transition between the regions. An example - (i.e. specificEnthalpy_ps) of these functions is given below:
                                    -

                                    - - - - - - - - - - - - - -
                                    -

                                    - From supercooled region to bubble line and vice versa -

                                    -
                                    -

                                    - - -

                                    -
                                    -

                                    - From dew line to superheated region and vice versa -

                                    -
                                    -

                                    - - -

                                    -
                                    -

                                    - From bubble or dew line to two-phase region and vice - versa -

                                    -
                                    -

                                    - - -

                                    -
                                    -

                                    - Assumptions and limitations -

                                    -

                                    - Two limitations are known for this package: -

                                    -
                                      -
                                    1. The modelling approach implemented in this package is a hybrid - approach and, therefore, is based on the Helmholtz equation of state - as well as on fitted formula. Hence, the refrigerant model is just - valid within the valid range of the fitted formula. -
                                    2. -
                                    3. It may be possible to have discontinuities when moving from one - region to another (e.g. from supercooled region to two-phase region). - However, functions are implemented to reach a smooth transition - between the regions and to avoid these discontinuities as far as - possible. (Sangi et al., 2014) -
                                    4. -
                                    ")); end HybridApproach; diff --git a/AixLib/Media/Refrigerants/UsersGuide/Naming.mo b/AixLib/Media/Refrigerants/UsersGuide/Naming.mo index 03ec7a9386..1a7863e7bd 100644 --- a/AixLib/Media/Refrigerants/UsersGuide/Naming.mo +++ b/AixLib/Media/Refrigerants/UsersGuide/Naming.mo @@ -69,223 +69,235 @@ class Naming "Naming and abbreviations" related to the Helmholtz energy equation of state. Some examples are given below:

                                    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                    -

                                    - Expression -

                                    -
                                    -

                                    - Abbreviation -

                                    -
                                    -

                                    - Comment -

                                    -
                                    -

                                    - alpha_0 -

                                    -
                                    -

                                    - f_Idg -

                                    -
                                    -

                                    - Helmholtz energy of ideal gas -

                                    -
                                    -

                                    - alpha_r -

                                    -
                                    -

                                    - f_Res -

                                    -
                                    -

                                    - Helmholtz energy of residual gas -

                                    -
                                    -

                                    - tau * d(alpha_0)/(dtau)_delta=const. -

                                    -
                                    -

                                    - t_fIdg_t -

                                    -
                                    -

                                    - Partial derivative of f_Idg with respect to tau -

                                    -
                                    -

                                    - tau*tau * dd(alpha_0)/(dtau*dtau)_delta=const. -

                                    -
                                    -

                                    - tt_fIdg_tt -

                                    -
                                    -

                                    - Partial derivative of f_Idg with respect to tau*tau -

                                    -
                                    -

                                    - tau*delta * dd(alpha_r)/(dtau*ddelta) -

                                    -
                                    -

                                    - td_fRes_td -

                                    -
                                    -

                                    - Partial derivative of f_Res with respect to tau*delta -

                                    -
                                    -

                                    - Some special abbreviations are introduced for partial derivatives. - Some examples are given below: -

                                    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
                                    -

                                    - Expression -

                                    -
                                    -

                                    - Abbreviation -

                                    -
                                    -

                                    - Comment -

                                    -
                                    -

                                    - d(d)/(dp)_h=const. -

                                    -
                                    -

                                    - ddph -

                                    -
                                    -

                                    - Partial derivative of density with respect to pressure at - constant specific enthalpy -

                                    -
                                    -

                                    - d(T)/(ds)_p=const. -

                                    -
                                    -

                                    - dTsp -

                                    -
                                    -

                                    - Partial derivative of temperature with respect to specific - entropy and constant pressure -

                                    -
                                    -

                                    - d(Tsat)/(dp) -

                                    -
                                    -

                                    - dTp -

                                    -
                                    -

                                    - Partial derivative of saturation temperature with respect to - pressure -

                                    -
                                    -

                                    - d(dl)/(dp) -

                                    -
                                    -

                                    - ddldp -

                                    -
                                    -

                                    - Partial derivative of bubble density with respect to pressure -

                                    -
                                    -

                                    - d(dv)/(dp) -

                                    -
                                    -

                                    - ddvdp -

                                    -
                                    -

                                    - Partial derivative of dew density with respect to pressure -

                                    -
                                    +
                                    + \"Abbreviations for EoS\" cellpadding=\"2\" border=\"1\" width=\"80%\" + style=\"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                    +

                                    + Expression +

                                    +
                                    +

                                    + Abbreviation +

                                    +
                                    +

                                    + Comment +

                                    +
                                    +

                                    + alpha_0 +

                                    +
                                    +

                                    + f_Idg +

                                    +
                                    +

                                    + Helmholtz energy of ideal gas +

                                    +
                                    +

                                    + alpha_r +

                                    +
                                    +

                                    + f_Res +

                                    +
                                    +

                                    + Helmholtz energy of residual gas +

                                    +
                                    +

                                    + tau * d(alpha_0)/(dtau)_delta=const. +

                                    +
                                    +

                                    + t_fIdg_t +

                                    +
                                    +

                                    + Partial derivative of f_Idg with respect to tau +

                                    +
                                    +

                                    + tau*tau * dd(alpha_0)/(dtau*dtau)_delta=const. +

                                    +
                                    +

                                    + tt_fIdg_tt +

                                    +
                                    +

                                    + Partial derivative of f_Idg with respect to tau*tau +

                                    +
                                    +

                                    + tau*delta * dd(alpha_r)/(dtau*ddelta) +

                                    +
                                    +

                                    + td_fRes_td +

                                    +
                                    +

                                    + Partial derivative of f_Res with respect to tau*delta +

                                    +
                                    +

                                    + Some special abbreviations are introduced for partial + derivatives. Some examples are given below: +

                                    + + +
                                    + \"Abbreviations for partial derivatives\" cellspacing=\"0\" + cellpadding=\"2\" border=\"1\" width=\"80%\" style= + \"border-collapse:collapse;\"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                    +

                                    + Expression +

                                    +
                                    +

                                    + Abbreviation +

                                    +
                                    +

                                    + Comment +

                                    +
                                    +

                                    + d(d)/(dp)_h=const. +

                                    +
                                    +

                                    + ddph +

                                    +
                                    +

                                    + Partial derivative of density with respect to pressure + at constant specific enthalpy +

                                    +
                                    +

                                    + d(T)/(ds)_p=const. +

                                    +
                                    +

                                    + dTsp +

                                    +
                                    +

                                    + Partial derivative of temperature with respect to + specific entropy and constant pressure +

                                    +
                                    +

                                    + d(Tsat)/(dp) +

                                    +
                                    +

                                    + dTp +

                                    +
                                    +

                                    + Partial derivative of saturation temperature with + respect to pressure +

                                    +
                                    +

                                    + d(dl)/(dp) +

                                    +
                                    +

                                    + ddldp +

                                    +
                                    +

                                    + Partial derivative of bubble density with respect to + pressure +

                                    +
                                    +

                                    + d(dv)/(dp) +

                                    +
                                    +

                                    + ddvdp +

                                    +
                                    +

                                    + Partial derivative of dew density with respect to + pressure +

                                    +
                                    +
                                    +
                                    ")); end Naming; diff --git a/AixLib/Media/Refrigerants/UsersGuide/References.mo b/AixLib/Media/Refrigerants/UsersGuide/References.mo index a65700f5a6..73f6356ccf 100644 --- a/AixLib/Media/Refrigerants/UsersGuide/References.mo +++ b/AixLib/Media/Refrigerants/UsersGuide/References.mo @@ -1,4 +1,4 @@ -within AixLib.Media.Refrigerants.UsersGuide; +within AixLib.Media.Refrigerants.UsersGuide; class References "References" extends Modelica.Icons.References; diff --git a/AixLib/Media/Refrigerants/Validation/R410A_dSpecificVolumeVap_pT.mo b/AixLib/Media/Refrigerants/Validation/R410A_dSpecificVolumeVap_pT.mo index 3a2499ad44..caba063e50 100644 --- a/AixLib/Media/Refrigerants/Validation/R410A_dSpecificVolumeVap_pT.mo +++ b/AixLib/Media/Refrigerants/Validation/R410A_dSpecificVolumeVap_pT.mo @@ -3,11 +3,10 @@ model R410A_dSpecificVolumeVap_pT "Validation of the derivatives of the specific volume with regards to p and T" extends Modelica.Icons.Example; - parameter Modelica.SIunits.AbsolutePressure p = 400e3 + parameter Modelica.Units.SI.AbsolutePressure p=400e3 "Pressure of refrigerant vapor"; - parameter Modelica.SIunits.Temperature T = 273.15 - "Temperature of refrigerant"; + parameter Modelica.Units.SI.Temperature T=273.15 "Temperature of refrigerant"; parameter Real dp(final unit="Pa") = 1.0 "Delta of pressure of refrigerant vapor"; @@ -43,14 +42,14 @@ protected Real dv_p_num( final unit="m3/(kg)") "Numerical delta of specific volume of refrigerant with regards to - pressure"; + pressure"; Real dv_T_num( final unit="m3/(kg)") "Numerical delta of specific volume of refrigerant with regards to - temperature"; + temperature"; - constant Modelica.SIunits.Time oneSec = 1.0 + constant Modelica.Units.SI.Time oneSec=1.0 "Unit time variable for unit conversion of time derivatives"; equation @@ -81,20 +80,21 @@ equation experiment( Tolerance=1e-6, StopTime=100), Documentation(info=" -

                                    -Validation case for evaluation of derivatives of the Martin-Hou equation of -state with regards to pressure and temperature. -

                                    -

                                    -The analytical implementation of derivatives is compared to a numerical -evaluation of the derivatives. -

                                    -", revisions=" -
                                      -
                                    • -January 25, 2017, by Massimo Cimmino:
                                      -First implementation. -
                                    • -
                                    -")); +

                                    + Validation case for evaluation of derivatives of the Martin-Hou equation of + state with regards to pressure and temperature. +

                                    +

                                    + The analytical implementation of derivatives is compared to a numerical + evaluation of the derivatives. +

                                    + ",revisions=" +
                                      +
                                    • + January 25, 2017, by Massimo Cimmino:
                                      + First implementation. +
                                    • +
                                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end R410A_dSpecificVolumeVap_pT; diff --git a/AixLib/Media/Refrigerants/Validation/RefrigerantInversions.mo b/AixLib/Media/Refrigerants/Validation/RefrigerantInversions.mo index af2a3aeb51..3ab64d3b8f 100644 --- a/AixLib/Media/Refrigerants/Validation/RefrigerantInversions.mo +++ b/AixLib/Media/Refrigerants/Validation/RefrigerantInversions.mo @@ -10,18 +10,16 @@ model RefrigerantInversions "Internal medium model"; // Define the fluid limits of the medium that shall be tested - parameter Modelica.SIunits.AbsolutePressure p_min = 1e5 + parameter Modelica.Units.SI.AbsolutePressure p_min=1e5 "Fluid limit: Minimum absolute pressure" annotation (Dialog(group="Fluid limits")); - parameter Modelica.SIunits.AbsolutePressure p_max = 48e5 + parameter Modelica.Units.SI.AbsolutePressure p_max=48e5 "Fluid limit: Maximum absolute pressure" annotation (Dialog(group="Fluid limits")); - parameter Modelica.SIunits.Temperature T_min = 233.15 - "Fluid limit: Minimum temperature" - annotation (Dialog(group="Fluid limits")); - parameter Modelica.SIunits.Temperature T_max = 340.15 - "Fluid limit: Maximum temperature" - annotation (Dialog(group="Fluid limits")); + parameter Modelica.Units.SI.Temperature T_min=233.15 + "Fluid limit: Minimum temperature" annotation (Dialog(group="Fluid limits")); + parameter Modelica.Units.SI.Temperature T_max=340.15 + "Fluid limit: Maximum temperature" annotation (Dialog(group="Fluid limits")); // Define the conversion factor for the unit test // @@ -30,30 +28,25 @@ model RefrigerantInversions // Define variables that shall be calculated // - Modelica.SIunits.Temperature T - "Actual temperature"; - Modelica.SIunits.Temperature TInv_h + Modelica.Units.SI.Temperature T "Actual temperature"; + Modelica.Units.SI.Temperature TInv_h "Actual inverse temperature calculated with h and p"; - Modelica.SIunits.Temperature TInv_s + Modelica.Units.SI.Temperature TInv_s "Actual inverse temperature calculated with s and p"; - Modelica.SIunits.AbsolutePressure p - "Actual pressure"; - Modelica.SIunits.AbsolutePressure pInv_d + Modelica.Units.SI.AbsolutePressure p "Actual pressure"; + Modelica.Units.SI.AbsolutePressure pInv_d "Actual inverse pressure calculated with d and T"; - Modelica.SIunits.SpecificEnthalpy h - "Actual enthalpy"; - Modelica.SIunits.SpecificEnthalpy hInv_d + Modelica.Units.SI.SpecificEnthalpy h "Actual enthalpy"; + Modelica.Units.SI.SpecificEnthalpy hInv_d "Actual inverse enthalpy calculated with d and T"; - Modelica.SIunits.SpecificEnthalpy hInv_s + Modelica.Units.SI.SpecificEnthalpy hInv_s "Actual inverse enthalpy calculated with s and p"; - Modelica.SIunits.Density d - "Actual density"; - Modelica.SIunits.Density dInv_h + Modelica.Units.SI.Density d "Actual density"; + Modelica.Units.SI.Density dInv_h "Actual inverse density calculated with h and p"; - Modelica.SIunits.Density dInv_s + Modelica.Units.SI.Density dInv_s "Actual inverse density calculated with h and s"; - Modelica.SIunits.SpecificEntropy s - "Actual specific entropy"; + Modelica.Units.SI.SpecificEntropy s "Actual specific entropy"; equation diff --git a/AixLib/Media/Refrigerants/Validation/RefrigerantsDerivatives/RefrigerantsDerivativesR134a.mo b/AixLib/Media/Refrigerants/Validation/RefrigerantsDerivatives/RefrigerantsDerivativesR134a.mo index 291f52d554..c34dfc1676 100644 --- a/AixLib/Media/Refrigerants/Validation/RefrigerantsDerivatives/RefrigerantsDerivativesR134a.mo +++ b/AixLib/Media/Refrigerants/Validation/RefrigerantsDerivatives/RefrigerantsDerivativesR134a.mo @@ -53,10 +53,10 @@ model RefrigerantsDerivativesR134a record TheStaExt "Record that contains thermodynamic state properties for external medium" Real phase "Phase of the refrigerant"; - Modelica.SIunits.Density d "Density of the refrigerant"; - Modelica.SIunits.Temperature T "Temperature of the refrigerant"; - Modelica.SIunits.AbsolutePressure p "Pressure of the refrigerant"; - Modelica.SIunits.SpecificEnthalpy h "Specific enthalpy of the refrigerant"; + Modelica.Units.SI.Density d "Density of the refrigerant"; + Modelica.Units.SI.Temperature T "Temperature of the refrigerant"; + Modelica.Units.SI.AbsolutePressure p "Pressure of the refrigerant"; + Modelica.Units.SI.SpecificEnthalpy h "Specific enthalpy of the refrigerant"; end TheStaExt; // Definition of states that include both one-phase and two-phase regions @@ -112,17 +112,17 @@ model RefrigerantsDerivativesR134a // record DerProp "Record that containts properties derived by partial derivatives of the EoS" - Modelica.SIunits.SpecificHeatCapacity cp_Int + Modelica.Units.SI.SpecificHeatCapacity cp_Int "Isobaric heat capacity calculated by the internal medium model"; - Modelica.SIunits.SpecificHeatCapacity cp_Ext + Modelica.Units.SI.SpecificHeatCapacity cp_Ext "Isobaric heat capacity calculated by the external medium model"; - Modelica.SIunits.SpecificHeatCapacity cv_Int + Modelica.Units.SI.SpecificHeatCapacity cv_Int "Isochoric heat capacity calculated by the internal medium model"; - Modelica.SIunits.SpecificHeatCapacity cv_Ext + Modelica.Units.SI.SpecificHeatCapacity cv_Ext "Isochoric heat capacity calculated by the external medium model"; - Modelica.SIunits.VelocityOfSound a_Int + Modelica.Units.SI.VelocityOfSound a_Int "Velocity of sound calculated by the internal medium model"; - Modelica.SIunits.VelocityOfSound a_Ext + Modelica.Units.SI.VelocityOfSound a_Ext "Velocity of sound calculated by the external medium model"; MediumInt.IsobaricExpansionCoefficient beta_Int "Isobaric expansion coefficient calculated by the internal medium model"; @@ -132,9 +132,9 @@ model RefrigerantsDerivativesR134a "Isentropic exponent calculated by the internal medium model"; MediumInt.IsentropicExponent gamma_Ext "Isentropic exponent calculated by the external medium model"; - Modelica.SIunits.IsothermalCompressibility kappa_Int + Modelica.Units.SI.IsothermalCompressibility kappa_Int "Isothermal compressibility calculated by the internal medium model"; - Modelica.SIunits.IsothermalCompressibility kappa_Ext + Modelica.Units.SI.IsothermalCompressibility kappa_Ext "Isothermal compressibility calculated by the external medium model"; Real delta_T_Int "Isothermal throttling coefficient calculated by the internal medium model"; diff --git a/AixLib/Media/Refrigerants/Validation/RefrigerantsFittedFormulas/RefrigerantsFittedFormulasR134a.mo b/AixLib/Media/Refrigerants/Validation/RefrigerantsFittedFormulas/RefrigerantsFittedFormulasR134a.mo index 4315b51d20..365f9991ac 100644 --- a/AixLib/Media/Refrigerants/Validation/RefrigerantsFittedFormulas/RefrigerantsFittedFormulasR134a.mo +++ b/AixLib/Media/Refrigerants/Validation/RefrigerantsFittedFormulas/RefrigerantsFittedFormulasR134a.mo @@ -1,4 +1,4 @@ -within AixLib.Media.Refrigerants.Validation.RefrigerantsFittedFormulas; +within AixLib.Media.Refrigerants.Validation.RefrigerantsFittedFormulas; model RefrigerantsFittedFormulasR134a "Model that checks the fitted formulas of R134a" extends Modelica.Icons.Example; @@ -11,36 +11,32 @@ model RefrigerantsFittedFormulasR134a // Define parameters that define the range for calculating the fitted formulas // - parameter Modelica.SIunits.SpecificEnthalpy h_min = 180e3 + parameter Modelica.Units.SI.SpecificEnthalpy h_min=180e3 "Fluid limit: Minimum specific enthalpy" annotation (Dialog(group="Fluid limits")); - parameter Modelica.SIunits.SpecificEnthalpy h_max = 550e3 + parameter Modelica.Units.SI.SpecificEnthalpy h_max=550e3 "Fluid limit: Maximum specific enthalpy" annotation (Dialog(group="Fluid limits")); - parameter Modelica.SIunits.SpecificEntropy s_min = 1.0e3 + parameter Modelica.Units.SI.SpecificEntropy s_min=1.0e3 "Fluid limit: Minimum specific entropy" annotation (Dialog(group="Fluid limits")); - parameter Modelica.SIunits.SpecificEntropy s_max = 1.8e3 + parameter Modelica.Units.SI.SpecificEntropy s_max=1.8e3 "Fluid limit: Maximum specific entropy" annotation (Dialog(group="Fluid limits")); - parameter Modelica.SIunits.Density d_min = 2.0 - "Fluid limit: Minimum density" + parameter Modelica.Units.SI.Density d_min=2.0 "Fluid limit: Minimum density" annotation (Dialog(group="Fluid limits")); - parameter Modelica.SIunits.Density d_max = 1425 - "Fluid limit: Maximum density" + parameter Modelica.Units.SI.Density d_max=1425 "Fluid limit: Maximum density" annotation (Dialog(group="Fluid limits")); - parameter Modelica.SIunits.AbsolutePressure p_min = 1e5 + parameter Modelica.Units.SI.AbsolutePressure p_min=1e5 "Fluid limit: Minimum absolute pressure" annotation (Dialog(group="Fluid limits")); - parameter Modelica.SIunits.AbsolutePressure p_max = 38.5e5 + parameter Modelica.Units.SI.AbsolutePressure p_max=38.5e5 "Fluid limit: Maximum absolute pressure" annotation (Dialog(group="Fluid limits")); - parameter Modelica.SIunits.Temperature T_min = 233.15 - "Fluid limit: Minimum temperature" - annotation (Dialog(group="Fluid limits")); - parameter Modelica.SIunits.Temperature T_max = 455.15 - "Fluid limit: Maximum temperature" - annotation (Dialog(group="Fluid limits")); + parameter Modelica.Units.SI.Temperature T_min=233.15 + "Fluid limit: Minimum temperature" annotation (Dialog(group="Fluid limits")); + parameter Modelica.Units.SI.Temperature T_max=455.15 + "Fluid limit: Maximum temperature" annotation (Dialog(group="Fluid limits")); // Define submodels and connectors // @@ -69,15 +65,15 @@ model RefrigerantsFittedFormulasR134a // Defines state variables // - Modelica.SIunits.AbsolutePressure p_sat + Modelica.Units.SI.AbsolutePressure p_sat "Actual pressure for calculating saturation properties"; - Modelica.SIunits.Temperature T "Actual pulsating temperature"; - Modelica.SIunits.Temperature T_sat + Modelica.Units.SI.Temperature T "Actual pulsating temperature"; + Modelica.Units.SI.Temperature T_sat "Actual temperature for calculating saturation properties"; - Modelica.SIunits.Density d "Actual raising density"; - Modelica.SIunits.SpecificEnthalpy h + Modelica.Units.SI.Density d "Actual raising density"; + Modelica.Units.SI.SpecificEnthalpy h "Actual pulsating specific enthalpy for calculating state properties"; - Modelica.SIunits.SpecificEntropy s + Modelica.Units.SI.SpecificEntropy s "Actual pulsating specific enthalpy for calculating state properties"; Real tauInt "Actual dimensionless temperature of internal medium"; Real deltaInt "Actual dimensionless density of internal medium"; @@ -117,33 +113,33 @@ model RefrigerantsFittedFormulasR134a record Saturation "Record that contains calculated saturation properties" - Modelica.SIunits.AbsolutePressure p_satInt + Modelica.Units.SI.AbsolutePressure p_satInt "Saturation pressure of internal medium"; - Modelica.SIunits.AbsolutePressure p_satExt + Modelica.Units.SI.AbsolutePressure p_satExt "Saturation pressure of external medium"; - Modelica.SIunits.Temperature T_satInt + Modelica.Units.SI.Temperature T_satInt "Saturation temperature of internal medium"; - Modelica.SIunits.Temperature T_satExt + Modelica.Units.SI.Temperature T_satExt "Saturation temperature of external medium"; - Modelica.SIunits.Density d_lInt "Bubble density of internal medium"; - Modelica.SIunits.Density d_lExt "Bubble density of external medium"; - Modelica.SIunits.Density d_vInt "Dew density of internal medium"; - Modelica.SIunits.Density d_vExt "Dew density of external medium"; - Modelica.SIunits.SpecificEnthalpy h_lInt + Modelica.Units.SI.Density d_lInt "Bubble density of internal medium"; + Modelica.Units.SI.Density d_lExt "Bubble density of external medium"; + Modelica.Units.SI.Density d_vInt "Dew density of internal medium"; + Modelica.Units.SI.Density d_vExt "Dew density of external medium"; + Modelica.Units.SI.SpecificEnthalpy h_lInt "Specific bubble enthalpy of internal medium"; - Modelica.SIunits.SpecificEnthalpy h_lExt + Modelica.Units.SI.SpecificEnthalpy h_lExt "Specific bubble enthalpy of external medium"; - Modelica.SIunits.SpecificEnthalpy h_vInt + Modelica.Units.SI.SpecificEnthalpy h_vInt "Specific dew enthalpy internal medium"; - Modelica.SIunits.SpecificEnthalpy h_vExt + Modelica.Units.SI.SpecificEnthalpy h_vExt "Specific dew enthalpy of external medium"; - Modelica.SIunits.SpecificEntropy s_lInt + Modelica.Units.SI.SpecificEntropy s_lInt "Specific bubble entropy of internal medium"; - Modelica.SIunits.SpecificEntropy s_lExt + Modelica.Units.SI.SpecificEntropy s_lExt "Specific bubble entropy of external medium"; - Modelica.SIunits.SpecificEntropy s_vInt + Modelica.Units.SI.SpecificEntropy s_vInt "Specific dew entropy of internal medium"; - Modelica.SIunits.SpecificEntropy s_vExt + Modelica.Units.SI.SpecificEntropy s_vExt "Specific dew entropy of external medium"; Real dp_sat "Relative difference of saturation pressure"; Real dT_sat "Relative difference of saturation temperature"; @@ -169,9 +165,9 @@ model RefrigerantsFittedFormulasR134a Properties properties "Record that contains calculated state properties"; protected - Modelica.SIunits.Time convChange(start = 0) + Modelica.Units.SI.Time convChange(start=0) "Time to reset calculation of actual temperature"; - Modelica.SIunits.Time convChangeTmp(start = 0) + Modelica.Units.SI.Time convChangeTmp(start=0) "Temporary time to reset calculation of actual temperature"; algorithm diff --git a/AixLib/Media/Specialized/Air/Examples/PerfectGasDerivativeCheck.mo b/AixLib/Media/Specialized/Air/Examples/PerfectGasDerivativeCheck.mo index 70215ace4f..90842673fb 100644 --- a/AixLib/Media/Specialized/Air/Examples/PerfectGasDerivativeCheck.mo +++ b/AixLib/Media/Specialized/Air/Examples/PerfectGasDerivativeCheck.mo @@ -4,13 +4,13 @@ model PerfectGasDerivativeCheck package Medium = AixLib.Media.Specialized.Air.PerfectGas; - Modelica.SIunits.Temperature T "Temperature"; - Modelica.SIunits.SpecificEnthalpy hLiqSym "Liquid phase enthalpy"; - Modelica.SIunits.SpecificEnthalpy hLiqCod "Liquid phase enthalpy"; - Modelica.SIunits.SpecificEnthalpy hSteSym "Water vapor enthalpy"; - Modelica.SIunits.SpecificEnthalpy hSteCod "Water vapor enthalpy"; - Modelica.SIunits.SpecificEnthalpy hAirSym "Dry air enthalpy"; - Modelica.SIunits.SpecificEnthalpy hAirCod "Dry air enthalpy"; + Modelica.Units.SI.Temperature T "Temperature"; + Modelica.Units.SI.SpecificEnthalpy hLiqSym "Liquid phase enthalpy"; + Modelica.Units.SI.SpecificEnthalpy hLiqCod "Liquid phase enthalpy"; + Modelica.Units.SI.SpecificEnthalpy hSteSym "Water vapor enthalpy"; + Modelica.Units.SI.SpecificEnthalpy hSteCod "Water vapor enthalpy"; + Modelica.Units.SI.SpecificEnthalpy hAirSym "Dry air enthalpy"; + Modelica.Units.SI.SpecificEnthalpy hAirCod "Dry air enthalpy"; constant Real convT(unit="K/s3") = 270 "Conversion factor to satisfy unit check"; initial equation @@ -38,23 +38,24 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Media/Specialized/Air/Examples/PerfectGasDerivativeCheck.mos" "Simulate and plot"), Documentation(info=" -

                                    -This example checks whether the function derivative -is implemented correctly. If the derivative implementation -is not correct, the model will stop with an assert statement. -

                                    -", revisions=" -
                                      -
                                    • -August 17, 2015, by Michael Wetter:
                                      -Changed regression test to have slope different from one. -This is for -issue 303. -
                                    • -
                                    • -May 12, 2008, by Michael Wetter:
                                      -First implementation. -
                                    • -
                                    -")); +

                                    + This example checks whether the function derivative + is implemented correctly. If the derivative implementation + is not correct, the model will stop with an assert statement. +

                                    + ", revisions=" +
                                      +
                                    • + August 17, 2015, by Michael Wetter:
                                      + Changed regression test to have slope different from one. + This is for + issue 303. +
                                    • +
                                    • + May 12, 2008, by Michael Wetter:
                                      + First implementation. +
                                    • +
                                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end PerfectGasDerivativeCheck; diff --git a/AixLib/Media/Specialized/Air/Examples/PerfectGasTemperatureEnthalpyInversion.mo b/AixLib/Media/Specialized/Air/Examples/PerfectGasTemperatureEnthalpyInversion.mo index 39fa24c639..6d97395044 100644 --- a/AixLib/Media/Specialized/Air/Examples/PerfectGasTemperatureEnthalpyInversion.mo +++ b/AixLib/Media/Specialized/Air/Examples/PerfectGasTemperatureEnthalpyInversion.mo @@ -9,17 +9,18 @@ experiment(Tolerance=1e-6, StopTime=1.0), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Media/Specialized/Air/Examples/PerfectGasTemperatureEnthalpyInversion.mos" "Simulate and plot"), Documentation(info=" -

                                    -This model tests whether the inversion of temperature and enthalpy -is implemented correctly. -If T ≠ T(h(T)), the model stops with an error. -

                                    -", revisions=" -
                                      -
                                    • -November 21, 2013, by Michael Wetter:
                                      -First implementation. -
                                    • -
                                    -")); +

                                    + This model tests whether the inversion of temperature and enthalpy + is implemented correctly. + If T ≠ T(h(T)), the model stops with an error. +

                                    + ",revisions=" +
                                      +
                                    • + November 21, 2013, by Michael Wetter:
                                      + First implementation. +
                                    • +
                                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end PerfectGasTemperatureEnthalpyInversion; diff --git a/AixLib/Media/Specialized/Air/PerfectGas.mo b/AixLib/Media/Specialized/Air/PerfectGas.mo index b8ca1f650e..77a0ea86d6 100644 --- a/AixLib/Media/Specialized/Air/PerfectGas.mo +++ b/AixLib/Media/Specialized/Air/PerfectGas.mo @@ -32,23 +32,23 @@ package PerfectGas "Model for air as a perfect gas" final standardOrderComponents=true) /* p, T, X = X[Water] are used as preferred states, since only then all - other quantities can be computed in a recursive sequence. - If other variables are selected as states, static state selection - is no longer possible and non-linear algebraic equations occur. - */ + other quantities can be computed in a recursive sequence. + If other variables are selected as states, static state selection + is no longer possible and non-linear algebraic equations occur. + */ protected - constant Modelica.SIunits.MolarMass[2] MMX = {steam.MM,dryair.MM} + constant Modelica.Units.SI.MolarMass[2] MMX={steam.MM,dryair.MM} "Molar masses of components"; MassFraction X_steam "Mass fraction of steam water"; MassFraction X_air "Mass fraction of air"; equation assert(T >= 200.0, " -In " + getInstanceName() + ": Temperature T exceeded its minimum allowed value of -73.15 degC (200 Kelvin) -as required from medium model \"" + mediumName + "\"."); + In " + getInstanceName() + ": Temperature T exceeded its minimum allowed value of -73.15 degC (200 Kelvin) + as required from medium model \""+ mediumName + "\"."); assert(T <= 423.15, " -In " + getInstanceName() + ": Temperature T exceeded its maximum allowed value of 150 degC (423.15 Kelvin) -as required from medium model \"" + mediumName + "\"."); + In " + getInstanceName() + ": Temperature T exceeded its maximum allowed value of 150 degC (423.15 Kelvin) + as required from medium model \""+ mediumName + "\"."); MM = 1/(Xi[Water]/MMX[Water]+(1.0-Xi[Water])/MMX[Air]); @@ -58,13 +58,13 @@ as required from medium model \"" + mediumName + "\"."); h = (T - reference_T)*dryair.cp * (1 - Xi[Water]) + ((T-reference_T) * steam.cp + h_fg) * Xi[Water]; - R = dryair.R*(1 - X_steam) + steam.R*X_steam; + R_s = dryair.R*(1 - X_steam) + steam.R*X_steam; // - u = h - R*T; - d = p/(R*T); + u =h - R_s*T; + d =p/(R_s*T); /* Note, u and d are computed under the assumption that the volume of the liquid - water is negligible with respect to the volume of air and of steam - */ + water is negligible with respect to the volume of air and of steam + */ state.p = p; state.T = T; state.X = X; @@ -95,8 +95,8 @@ as required from medium model \"" + mediumName + "\"."); annotation ( Inline=true, Documentation(info=" -Function to set the state for given pressure, enthalpy and species concentration. -")); + Function to set the state for given pressure, enthalpy and species concentration. + ")); end setState_phX; redeclare function setState_dTX @@ -124,14 +124,14 @@ Function to set the state for given pressure, enthalpy and species concentration smoothOrder=2, Inline=true, Documentation(info=" - The thermodynamic state record - is computed from density d, temperature T and composition X. -")); + The thermodynamic state record + is computed from density d, temperature T and composition X. + ")); end setState_dTX; redeclare function extends gasConstant "Gas constant" algorithm - R := dryair.R*(1 - state.X[Water]) + steam.R*state.X[Water]; + R_s := dryair.R*(1 - state.X[Water]) + steam.R*state.X[Water]; annotation ( Inline=true); end gasConstant; @@ -140,8 +140,8 @@ function saturationPressureLiquid "Return saturation pressure of water as a function of temperature T in the range of 273.16 to 373.16 K" extends Modelica.Icons.Function; - input Modelica.SIunits.Temperature Tsat "saturation temperature"; - output Modelica.SIunits.AbsolutePressure psat "saturation pressure"; + input Modelica.Units.SI.Temperature Tsat "saturation temperature"; + output Modelica.Units.SI.AbsolutePressure psat "saturation pressure"; // This function is declared here explicitly, instead of referencing the function in its // base class, since otherwise Dymola 7.3 does not find the derivative for the model // AixLib.Fluid.Sensors.Examples.MassFraction @@ -152,16 +152,16 @@ algorithm Inline=true, derivative=AixLib.Media.Specialized.Air.PerfectGas.saturationPressureLiquid_der, Documentation(info=" -Saturation pressure of water above the triple point temperature is computed from temperature. It's range of validity is between -273.16 and 373.16 K. Outside these limits a less accurate result is returned. -")); + Saturation pressure of water above the triple point temperature is computed from temperature. It's range of validity is between + 273.16 and 373.16 K. Outside these limits a less accurate result is returned. + ")); end saturationPressureLiquid; function saturationPressureLiquid_der "Time derivative of saturationPressureLiquid" extends Modelica.Icons.Function; - input Modelica.SIunits.Temperature Tsat "Saturation temperature"; + input Modelica.Units.SI.Temperature Tsat "Saturation temperature"; input Real dTsat(unit="K/s") "Saturation temperature derivative"; output Real psat_der(unit="Pa/s") "Saturation pressure"; @@ -172,10 +172,10 @@ algorithm smoothOrder=5, Inline=true, Documentation(info=" -Derivative function of - -AixLib.Media.Specialized.Air.PerfectGas.saturationPressureLiquid -")); + Derivative function of + + AixLib.Media.Specialized.Air.PerfectGas.saturationPressureLiquid + ")); end saturationPressureLiquid_der; function sublimationPressureIce = @@ -209,8 +209,8 @@ end saturationPressure; smoothOrder=2, Inline=true, Documentation(info=" -Pressure is returned from the thermodynamic state record input as a simple assignment. -")); + Pressure is returned from the thermodynamic state record input as a simple assignment. + ")); end pressure; redeclare function extends temperature "Gas temperature" @@ -220,8 +220,8 @@ Pressure is returned from the thermodynamic state record input as a simple assig smoothOrder=2, Inline=true, Documentation(info=" -Temperature is returned from the thermodynamic state record input as a simple assignment. -")); + Temperature is returned from the thermodynamic state record input as a simple assignment. + ")); end temperature; redeclare function extends density "Gas density" @@ -231,8 +231,8 @@ Temperature is returned from the thermodynamic state record input as a simple as smoothOrder=2, Inline=true, Documentation(info=" -Density is computed from pressure, temperature and composition in the thermodynamic state record applying the ideal gas law. -")); + Density is computed from pressure, temperature and composition in the thermodynamic state record applying the ideal gas law. + ")); end density; redeclare function extends specificEntropy @@ -246,8 +246,8 @@ Density is computed from pressure, temperature and composition in the thermodyna smoothOrder=2, Inline=true, Documentation(info=" -Specific entropy is calculated from the thermodynamic state record, assuming ideal gas behavior and including entropy of mixing. Liquid or solid water is not taken into account, the entire water content X[1] is assumed to be in the vapor state (relative humidity below 1.0). -")); + Specific entropy is calculated from the thermodynamic state record, assuming ideal gas behavior and including entropy of mixing. Liquid or solid water is not taken into account, the entire water content X[1] is assumed to be in the vapor state (relative humidity below 1.0). + ")); end specificEntropy; redeclare function extends enthalpyOfVaporization @@ -425,9 +425,9 @@ end dynamicViscosity; redeclare function extends thermalConductivity "Thermal conductivity of dry air as a polynomial in the temperature" algorithm - lambda := Modelica.Media.Incompressible.TableBased.Polynomials_Temp.evaluate( - {(-4.8737307422969E-008), 7.67803133753502E-005, 0.0241814385504202}, - Modelica.SIunits.Conversions.to_degC(state.T)); + lambda :=Modelica.Math.Polynomials.evaluate({(-4.8737307422969E-008), + 7.67803133753502E-005,0.0241814385504202}, + Modelica.Units.Conversions.to_degC(state.T)); annotation ( Inline=true); end thermalConductivity; @@ -441,13 +441,13 @@ end specificEnthalpy; redeclare replaceable function specificEnthalpy_pTX "Specific enthalpy" extends Modelica.Icons.Function; - input Modelica.SIunits.Pressure p "Pressure"; - input Modelica.SIunits.Temperature T "Temperature"; - input Modelica.SIunits.MassFraction X[:] "Mass fractions of moist air"; - output Modelica.SIunits.SpecificEnthalpy h "Specific enthalpy at p, T, X"; + input Modelica.Units.SI.Pressure p "Pressure"; + input Modelica.Units.SI.Temperature T "Temperature"; + input Modelica.Units.SI.MassFraction X[:] "Mass fractions of moist air"; + output Modelica.Units.SI.SpecificEnthalpy h "Specific enthalpy at p, T, X"; protected - Modelica.SIunits.SpecificEnthalpy hDryAir "Enthalpy of dry air"; + Modelica.Units.SI.SpecificEnthalpy hDryAir "Enthalpy of dry air"; algorithm hDryAir := (T - reference_T)*dryair.cp; h := hDryAir * (1 - X[Water]) + @@ -495,10 +495,10 @@ algorithm Inline=true, inverse(h=specificEnthalpy_pTX(p, T, X)), Documentation(info=" -Temperature as a function of specific enthalpy and species concentration. -The pressure is input for compatibility with the medium models, but the temperature -is independent of the pressure. -")); + Temperature as a function of specific enthalpy and species concentration. + The pressure is input for compatibility with the medium models, but the temperature + is independent of the pressure. + ")); end temperature_phX; ////////////////////////////////////////////////////////////////////// // Protected classes. @@ -512,74 +512,70 @@ protected "Coefficient data record for properties of perfect gases" extends Modelica.Icons.Record; - Modelica.SIunits.MolarMass MM "Molar mass"; - Modelica.SIunits.SpecificHeatCapacity R "Gas constant"; - Modelica.SIunits.SpecificHeatCapacity cp + Modelica.Units.SI.MolarMass MM "Molar mass"; + Modelica.Units.SI.SpecificHeatCapacity R "Gas constant"; + Modelica.Units.SI.SpecificHeatCapacity cp "Specific heat capacity at constant pressure"; - Modelica.SIunits.SpecificHeatCapacity cv = cp-R + Modelica.Units.SI.SpecificHeatCapacity cv=cp - R "Specific heat capacity at constant volume"; annotation ( preferredView="info", Documentation(info=" -

                                    -This data record contains the coefficients for perfect gases. -

                                    -", revisions=" -
                                      -
                                    • -June 6, 2015, by Michael Wetter:
                                      -Set AbsolutePressure(start=p_default) -and Temperature(start=T_default) -to have to have conistent start values. -See also revision notes of - -AixLib.Media.Water. -This is for -#266. -
                                    • -
                                    • -May 1, 2015, by Michael Wetter:
                                      -Added Inline=true for - -issue 227. -
                                    • -
                                    • -September 12, 2014, by Michael Wetter:
                                      -Corrected the wrong location of the preferredView -and the revisions annotation. -
                                    • -
                                    • -November 21, 2013, by Michael Wetter:
                                      -First implementation. -
                                    • -
                                    -")); +

                                    + This data record contains the coefficients for perfect gases. +

                                    + ",revisions=" +
                                      +
                                    • + June 6, 2015, by Michael Wetter:
                                      + Set AbsolutePressure(start=p_default) + and Temperature(start=T_default) + to have to have conistent start values. + See also revision notes of + + AixLib.Media.Water. + This is for + #266. +
                                    • +
                                    • + May 1, 2015, by Michael Wetter:
                                      + Added Inline=true for + + issue 227. +
                                    • +
                                    • + September 12, 2014, by Michael Wetter:
                                      + Corrected the wrong location of the preferredView + and the revisions annotation. +
                                    • +
                                    • + November 21, 2013, by Michael Wetter:
                                      + First implementation. +
                                    • +
                                    + ")); end GasProperties; // In the assignments below, we compute cv as OpenModelica // cannot evaluate cv=cp-R as defined in GasProperties. constant GasProperties dryair( - R = Modelica.Media.IdealGases.Common.SingleGasesData.Air.R, - MM = Modelica.Media.IdealGases.Common.SingleGasesData.Air.MM, - cp = AixLib.Utilities.Psychrometrics.Constants.cpAir, - cv = AixLib.Utilities.Psychrometrics.Constants.cpAir - -Modelica.Media.IdealGases.Common.SingleGasesData.Air.R) + R=Modelica.Media.IdealGases.Common.SingleGasesData.Air.R_s, + MM=Modelica.Media.IdealGases.Common.SingleGasesData.Air.MM, + cp=AixLib.Utilities.Psychrometrics.Constants.cpAir, + cv=AixLib.Utilities.Psychrometrics.Constants.cpAir - Modelica.Media.IdealGases.Common.SingleGasesData.Air.R_s) "Dry air properties"; constant GasProperties steam( - R = Modelica.Media.IdealGases.Common.SingleGasesData.H2O.R, - MM = Modelica.Media.IdealGases.Common.SingleGasesData.H2O.MM, - cp = AixLib.Utilities.Psychrometrics.Constants.cpSte, - cv = AixLib.Utilities.Psychrometrics.Constants.cpSte - -Modelica.Media.IdealGases.Common.SingleGasesData.H2O.R) + R=Modelica.Media.IdealGases.Common.SingleGasesData.H2O.R_s, + MM=Modelica.Media.IdealGases.Common.SingleGasesData.H2O.MM, + cp=AixLib.Utilities.Psychrometrics.Constants.cpSte, + cv=AixLib.Utilities.Psychrometrics.Constants.cpSte - Modelica.Media.IdealGases.Common.SingleGasesData.H2O.R_s) "Steam properties"; constant Real k_mair = steam.MM/dryair.MM "Ratio of molar weights"; - constant Modelica.SIunits.SpecificEnergy h_fg= - AixLib.Utilities.Psychrometrics.Constants.h_fg + constant Modelica.Units.SI.SpecificEnergy h_fg=AixLib.Utilities.Psychrometrics.Constants.h_fg "Latent heat of evaporation of water"; - constant Modelica.SIunits.SpecificHeatCapacity cpWatLiq= - AixLib.Utilities.Psychrometrics.Constants.cpWatLiq + constant Modelica.Units.SI.SpecificHeatCapacity cpWatLiq=AixLib.Utilities.Psychrometrics.Constants.cpWatLiq "Specific heat capacity of liquid water"; function s_pTX = Modelica.Media.Air.MoistAir.s_pTX @@ -587,101 +583,101 @@ First implementation. function s_pTX_der = Modelica.Media.Air.MoistAir.s_pTX_der "Return specific entropy of moist air as a function of pressure p, temperature T and composition X (only valid for phi<1)"; annotation(preferredView="info", Documentation(info=" -

                                    -This package contains a thermally perfect model of moist air. -

                                    -

                                    -A medium is called thermally perfect if -

                                    -
                                      -
                                    • -it is in thermodynamic equilibrium, -
                                    • -it is chemically not reacting, and -
                                    • -internal energy and enthalpy are functions of temperature only. -
                                    • -
                                    -

                                    -In addition, this medium model is calorically perfect, i.e., the -specific heat capacities at constant pressure cp -and constant volume cv are both constant (Bower 1998). -

                                    -

                                    -This medium uses the ideal gas law -

                                    -

                                    -ρ = p ⁄(R T), -

                                    -

                                    -where -ρ is the density, -p is the pressure, -R is the gas constant and -T is the temperature. -

                                    -

                                    -The enthalpy is computed using the convention that h=0 -if T=0 °C and no water vapor is present. -

                                    -

                                    -Note that for typical building simulations, the media -AixLib.Media.Air -should be used as it leads generally to faster simulation. -

                                    -

                                    References

                                    -

                                    -Bower, William B. A primer in fluid mechanics: Dynamics of flows in one -space dimension. CRC Press. 1998. -

                                    -", revisions=" -
                                      -
                                    • -October 26, 2018, by Filip Jorissen and Michael Wetter:
                                      -Now printing different messages if temperature is above or below its limit, -and adding instance name as JModelica does not print the full instance name in the assertion. -This is for -#1045. -
                                    • -
                                    • -March 15, 2016, by Michael Wetter:
                                      -Replaced spliceFunction with regStep. -This is for -issue 300. -
                                    • -
                                    • -November 13, 2014, by Michael Wetter:
                                      -Removed phi and removed non-required computations. -
                                    • -
                                    • -March 29, 2013, by Michael Wetter:
                                      -Added final standardOrderComponents=true in the -BaseProperties declaration. This avoids an error -when models are checked in Dymola 2014 in the pedenatic mode. -
                                    • -
                                    • -April 12, 2012, by Michael Wetter:
                                      -Added keyword each to Xi(stateSelect=...). -
                                    • -
                                    • -April 4, 2012, by Michael Wetter:
                                      -Added redeclaration of ThermodynamicState to avoid a warning -during model check and translation. -
                                    • -
                                    • -January 27, 2010, by Michael Wetter:
                                      -Added function enthalpyOfNonCondensingGas and its derivative. -
                                    • -
                                    • -January 27, 2010, by Michael Wetter:
                                      -Fixed bug with temperature offset in T_phX. -
                                    • -
                                    • -August 18, 2008, by Michael Wetter:
                                      -First implementation. -
                                    • -
                                    -"), +

                                    + This package contains a thermally perfect model of moist air. +

                                    +

                                    + A medium is called thermally perfect if +

                                    +
                                      +
                                    • + it is in thermodynamic equilibrium, +
                                    • + it is chemically not reacting, and +
                                    • + internal energy and enthalpy are functions of temperature only. +
                                    • +
                                    +

                                    + In addition, this medium model is calorically perfect, i.e., the + specific heat capacities at constant pressure cp + and constant volume cv are both constant (Bower 1998). +

                                    +

                                    + This medium uses the ideal gas law +

                                    +

                                    + ρ = p ⁄(R T), +

                                    +

                                    + where + ρ is the density, + p is the pressure, + R is the gas constant and + T is the temperature. +

                                    +

                                    + The enthalpy is computed using the convention that h=0 + if T=0 °C and no water vapor is present. +

                                    +

                                    + Note that for typical building simulations, the media + AixLib.Media.Air + should be used as it leads generally to faster simulation. +

                                    +

                                    References

                                    +

                                    + Bower, William B. A primer in fluid mechanics: Dynamics of flows in one + space dimension. CRC Press. 1998. +

                                    + ",revisions=" +
                                      +
                                    • + October 26, 2018, by Filip Jorissen and Michael Wetter:
                                      + Now printing different messages if temperature is above or below its limit, + and adding instance name as JModelica does not print the full instance name in the assertion. + This is for + #1045. +
                                    • +
                                    • + March 15, 2016, by Michael Wetter:
                                      + Replaced spliceFunction with regStep. + This is for + issue 300. +
                                    • +
                                    • + November 13, 2014, by Michael Wetter:
                                      + Removed phi and removed non-required computations. +
                                    • +
                                    • + March 29, 2013, by Michael Wetter:
                                      + Added final standardOrderComponents=true in the + BaseProperties declaration. This avoids an error + when models are checked in Dymola 2014 in the pedenatic mode. +
                                    • +
                                    • + April 12, 2012, by Michael Wetter:
                                      + Added keyword each to Xi(stateSelect=...). +
                                    • +
                                    • + April 4, 2012, by Michael Wetter:
                                      + Added redeclaration of ThermodynamicState to avoid a warning + during model check and translation. +
                                    • +
                                    • + January 27, 2010, by Michael Wetter:
                                      + Added function enthalpyOfNonCondensingGas and its derivative. +
                                    • +
                                    • + January 27, 2010, by Michael Wetter:
                                      + Fixed bug with temperature offset in T_phX. +
                                    • +
                                    • + August 18, 2008, by Michael Wetter:
                                      + First implementation. +
                                    • +
                                    + "), Icon(graphics={ Ellipse( extent={{-78,78},{-34,34}}, @@ -717,5 +713,6 @@ First implementation. extent={{-90,-6},{-46,-50}}, lineColor={0,0,0}, fillPattern=FillPattern.Sphere, - fillColor={120,120,120})})); + fillColor={120,120,120})}), + __Dymola_LockedEditing="Model from IBPSA"); end PerfectGas; diff --git a/AixLib/Media/Specialized/Water/ConstantProperties_pT/package.mo b/AixLib/Media/Specialized/Water/ConstantProperties_pT/package.mo index 4b3ac4c6b5..c11bfc05d3 100644 --- a/AixLib/Media/Specialized/Water/ConstantProperties_pT/package.mo +++ b/AixLib/Media/Specialized/Water/ConstantProperties_pT/package.mo @@ -12,41 +12,39 @@ package ConstantProperties_pT "Package with model for liquid water with constant a_const=a_nominal, T_max=T_max_nominal); - constant Modelica.SIunits.Temperature T_max_nominal= - Modelica.Media.Water.IF97_Utilities.BaseIF97.Basic.tsat(p_nominal) - "Maximum temperature valid for medium model"; +constant Modelica.Units.SI.Temperature T_max_nominal= + Modelica.Media.Water.IF97_Utilities.BaseIF97.Basic.tsat(p_nominal) + "Maximum temperature valid for medium model"; - constant Modelica.SIunits.Temperature T_nominal = 273.15 + 20 - "Nominal temperature for calculation of water properties"; +constant Modelica.Units.SI.Temperature T_nominal=273.15 + 20 + "Nominal temperature for calculation of water properties"; - constant Modelica.SIunits.VelocityOfSound a_nominal= +constant Modelica.Units.SI.VelocityOfSound a_nominal= Modelica.Media.Water.IF97_Utilities.velocityOfSound_pT(p_nominal, T_nominal) - "Constant velocity of sound"; + "Constant velocity of sound"; - constant Modelica.SIunits.SpecificHeatCapacity cp_nominal= +constant Modelica.Units.SI.SpecificHeatCapacity cp_nominal= Modelica.Media.Water.IF97_Utilities.cp_pT(p_nominal, T_nominal) - "Specific heat capacity at nominal water conditions"; + "Specific heat capacity at nominal water conditions"; - constant Modelica.SIunits.Density d_nominal= +constant Modelica.Units.SI.Density d_nominal= Modelica.Media.Water.IF97_Utilities.rho_pT(p_nominal, T_nominal) - "Density at nominal water conditions"; + "Density at nominal water conditions"; - constant Modelica.SIunits.DynamicViscosity eta_nominal= - Modelica.Media.Water.IF97_Utilities.dynamicViscosity( - d_nominal, - T_nominal, - p_nominal) - "Constant dynamic viscosity"; +constant Modelica.Units.SI.DynamicViscosity eta_nominal= + Modelica.Media.Water.IF97_Utilities.dynamicViscosity( + d_nominal, + T_nominal, + p_nominal) "Constant dynamic viscosity"; - constant Modelica.SIunits.ThermalConductivity lambda_nominal= +constant Modelica.Units.SI.ThermalConductivity lambda_nominal= Modelica.Media.Water.IF97_Utilities.thermalConductivity( - d_nominal, - T_nominal, - p_nominal) - "Constant thermal conductivity"; + d_nominal, + T_nominal, + p_nominal) "Constant thermal conductivity"; - constant Modelica.SIunits.AbsolutePressure p_nominal = 101325 - "Nominal pressure for calculation of water properties"; +constant Modelica.Units.SI.AbsolutePressure p_nominal=101325 + "Nominal pressure for calculation of water properties"; annotation (Documentation(info="

                                    @@ -122,7 +120,6 @@ First implementation. fillColor={95,95,95}), Text( extent={{-110,40},{50,-36}}, - lineColor={238,46,47}, + textColor={238,46,47}, textString="pT")})); end ConstantProperties_pT; - diff --git a/AixLib/Media/Specialized/Water/Examples/TemperatureDependentDensityDerivativeCheck.mo b/AixLib/Media/Specialized/Water/Examples/TemperatureDependentDensityDerivativeCheck.mo index 3bc29a4c02..3e6c7c8245 100644 --- a/AixLib/Media/Specialized/Water/Examples/TemperatureDependentDensityDerivativeCheck.mo +++ b/AixLib/Media/Specialized/Water/Examples/TemperatureDependentDensityDerivativeCheck.mo @@ -7,13 +7,13 @@ model TemperatureDependentDensityDerivativeCheck AixLib.Media.Specialized.Water.TemperatureDependentDensity "Medium model"; - Modelica.SIunits.Temperature T "Temperature"; - Modelica.SIunits.SpecificEnthalpy hLiqSym "Liquid phase enthalpy"; - Modelica.SIunits.SpecificEnthalpy hLiqCod "Liquid phase enthalpy"; - Modelica.SIunits.SpecificHeatCapacity cpSym "Specific heat capacity"; - Modelica.SIunits.SpecificHeatCapacity cpCod "Specific heat capacity"; - Modelica.SIunits.SpecificHeatCapacity cvSym "Specific heat capacity"; - Modelica.SIunits.SpecificHeatCapacity cvCod "Specific heat capacity"; + Modelica.Units.SI.Temperature T "Temperature"; + Modelica.Units.SI.SpecificEnthalpy hLiqSym "Liquid phase enthalpy"; + Modelica.Units.SI.SpecificEnthalpy hLiqCod "Liquid phase enthalpy"; + Modelica.Units.SI.SpecificHeatCapacity cpSym "Specific heat capacity"; + Modelica.Units.SI.SpecificHeatCapacity cpCod "Specific heat capacity"; + Modelica.Units.SI.SpecificHeatCapacity cvSym "Specific heat capacity"; + Modelica.Units.SI.SpecificHeatCapacity cvCod "Specific heat capacity"; constant Real convT(unit="K/s3") = 270 "Conversion factor to satisfy unit check"; initial equation @@ -49,23 +49,24 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Media/Specialized/Water/Examples/TemperatureDependentDensityDerivativeCheck.mos" "Simulate and plot"), Documentation(info=" -

                                    -This example checks whether the function derivative -is implemented correctly. If the derivative implementation -is not correct, the model will stop with an assert statement. -

                                    -", revisions=" -
                                      -
                                    • -August 17, 2015, by Michael Wetter:
                                      -Changed regression test to have slope different from one. -This is for -issue 303. -
                                    • -
                                    • -December 18, 2013, by Michael Wetter:
                                      -First implementation. -
                                    • -
                                    -")); +

                                    + This example checks whether the function derivative + is implemented correctly. If the derivative implementation + is not correct, the model will stop with an assert statement. +

                                    + ", revisions=" +
                                      +
                                    • + August 17, 2015, by Michael Wetter:
                                      + Changed regression test to have slope different from one. + This is for + issue 303. +
                                    • +
                                    • + December 18, 2013, by Michael Wetter:
                                      + First implementation. +
                                    • +
                                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end TemperatureDependentDensityDerivativeCheck; diff --git a/AixLib/Media/Specialized/Water/Examples/TemperatureDependentDensityProperties.mo b/AixLib/Media/Specialized/Water/Examples/TemperatureDependentDensityProperties.mo index 34ba1262c0..3d2eecf710 100644 --- a/AixLib/Media/Specialized/Water/Examples/TemperatureDependentDensityProperties.mo +++ b/AixLib/Media/Specialized/Water/Examples/TemperatureDependentDensityProperties.mo @@ -15,16 +15,17 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Media/Specialized/Water/Examples/TemperatureDependentDensityProperties.mos" "Simulate and plot"), Documentation(info=" -

                                    -This example checks thermophysical properties of the medium. -

                                    -", +

                                    + This example checks thermophysical properties of the medium. +

                                    + ", revisions=" -
                                      -
                                    • -December 19, 2013, by Michael Wetter:
                                      -First implementation. -
                                    • -
                                    -")); +
                                      +
                                    • + December 19, 2013, by Michael Wetter:
                                      + First implementation. +
                                    • +
                                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end TemperatureDependentDensityProperties; diff --git a/AixLib/Media/Specialized/Water/Examples/TemperatureDependentDensityTemperatureEnthalpyInversion.mo b/AixLib/Media/Specialized/Water/Examples/TemperatureDependentDensityTemperatureEnthalpyInversion.mo index b01299e5f9..cb2671461d 100644 --- a/AixLib/Media/Specialized/Water/Examples/TemperatureDependentDensityTemperatureEnthalpyInversion.mo +++ b/AixLib/Media/Specialized/Water/Examples/TemperatureDependentDensityTemperatureEnthalpyInversion.mo @@ -10,17 +10,18 @@ experiment(Tolerance=1e-6, StopTime=1.0), __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Media/Specialized/Water/Examples/TemperatureDependentDensityTemperatureEnthalpyInversion.mos" "Simulate and plot"), Documentation(info=" -

                                    -This model tests whether the inversion of temperature and enthalpy -is implemented correctly. -If T ≠ T(h(T)), the model stops with an error. -

                                    -", revisions=" -
                                      -
                                    • -November 21, 2013, by Michael Wetter:
                                      -First implementation. -
                                    • -
                                    -")); +

                                    + This model tests whether the inversion of temperature and enthalpy + is implemented correctly. + If T ≠ T(h(T)), the model stops with an error. +

                                    + ",revisions=" +
                                      +
                                    • + November 21, 2013, by Michael Wetter:
                                      + First implementation. +
                                    • +
                                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end TemperatureDependentDensityTemperatureEnthalpyInversion; diff --git a/AixLib/Media/Specialized/Water/Examples/WaterProperties_pT.mo b/AixLib/Media/Specialized/Water/Examples/WaterProperties_pT.mo index 7043db7423..46afca52f3 100644 --- a/AixLib/Media/Specialized/Water/Examples/WaterProperties_pT.mo +++ b/AixLib/Media/Specialized/Water/Examples/WaterProperties_pT.mo @@ -17,18 +17,19 @@ equation __Dymola_Commands(file="modelica://AixLib/Resources/Scripts/Dymola/Media/Specialized/Water/Examples/WaterProperties_pT.mos" "Simulate and plot"), Documentation(info=" -

                                    -This example checks the thermophysical properties of the medium - -AixLib.Media.Specialized.Water.Examples.WaterProperties_pT. -

                                    -", +

                                    + This example checks the thermophysical properties of the medium + + AixLib.Media.Specialized.Water.Examples.WaterProperties_pT. +

                                    + ", revisions=" -
                                      -
                                    • -September 12, 2016, by Marcus Fuchs:
                                      -First implementation -
                                    • -
                                    -")); +
                                      +
                                    • + September 12, 2016, by Marcus Fuchs:
                                      + First implementation +
                                    • +
                                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end WaterProperties_pT; diff --git a/AixLib/Media/Specialized/Water/TemperatureDependentDensity.mo b/AixLib/Media/Specialized/Water/TemperatureDependentDensity.mo index a35f6a7703..4d871622cc 100644 --- a/AixLib/Media/Specialized/Water/TemperatureDependentDensity.mo +++ b/AixLib/Media/Specialized/Water/TemperatureDependentDensity.mo @@ -20,13 +20,11 @@ package TemperatureDependentDensity each casRegistryNumber="7732-18-5", each iupacName="oxidane", each molarMass=MM_const); - redeclare record extends ThermodynamicState "Thermodynamic state variables" Temperature T(start=T_default) "Temperature of medium"; AbsolutePressure p(start=p_default) "Pressure of medium"; end ThermodynamicState; - - constant Modelica.SIunits.SpecificHeatCapacity cp_const = 4184 + constant Modelica.Units.SI.SpecificHeatCapacity cp_const=4184 "Specific heat capacity at constant pressure"; redeclare model extends BaseProperties( @@ -37,13 +35,13 @@ package TemperatureDependentDensity d = density(state); state.T = T; state.p = p; - R=Modelica.Constants.R; + R_s = 0; MM=MM_const; annotation(Documentation(info=" -

                                    - Base properties of the medium. -

                                    -")); +

                                    + Base properties of the medium. +

                                    + ")); end BaseProperties; redeclare function extends density "Return the density" @@ -60,34 +58,34 @@ algorithm smoothOrder=1, Inline=true, Documentation(info=" -

                                    -This function computes the density as a function of temperature. -

                                    -

                                    Implementation

                                    -

                                    -The function is based on the IDA implementation in therpro.nmf, which -implements -

                                    -
                                    -d := 1000.12 + 1.43711e-2*T_degC -
                                    - 5.83576e-3*T_degC^2 + 1.5009e-5*T_degC^3;
                                    - 
                                    -

                                    -This has been converted to Kelvin, which resulted in the above expression. -In addition, below 5 °C and above 100 °C, the density is replaced -by a linear function to avoid inflection points. -This linear extension is such that the density is once continuously differentiable. -

                                    -", +

                                    + This function computes the density as a function of temperature. +

                                    +

                                    Implementation

                                    +

                                    + The function is based on the IDA implementation in therpro.nmf, which + implements +

                                    +
                                    + d := 1000.12 + 1.43711e-2*T_degC -
                                    +  5.83576e-3*T_degC^2 + 1.5009e-5*T_degC^3;
                                    +  
                                    +

                                    + This has been converted to Kelvin, which resulted in the above expression. + In addition, below 5 °C and above 100 °C, the density is replaced + by a linear function to avoid inflection points. + This linear extension is such that the density is once continuously differentiable. +

                                    + ", revisions=" -
                                      -
                                    • -December 18, 2013, by Michael Wetter:
                                      -First implementation, based on the IDA implementation in therpro.nmf, -but converted from Celsius to Kelvin and linearly extended. -
                                    • -
                                    -")); +
                                      +
                                    • + December 18, 2013, by Michael Wetter:
                                      + First implementation, based on the IDA implementation in therpro.nmf, + but converted from Celsius to Kelvin and linearly extended. +
                                    • +
                                    + ")); end density; redeclare function extends dynamicViscosity "Return the dynamic viscosity" @@ -96,18 +94,18 @@ algorithm annotation ( Inline=true, Documentation(info=" -

                                    -This function computes the dynamic viscosity. -

                                    -", +

                                    + This function computes the dynamic viscosity. +

                                    + ", revisions=" -
                                      -
                                    • -December 2, 2013, by Michael Wetter:
                                      -First implementation. -
                                    • -
                                    -")); +
                                      +
                                    • + December 2, 2013, by Michael Wetter:
                                      + First implementation. +
                                    • +
                                    + ")); end dynamicViscosity; redeclare function extends specificEnthalpy "Return the specific enthalpy" @@ -117,24 +115,24 @@ annotation ( smoothOrder=5, Inline=true, Documentation(info=" -

                                    -This function computes the specific enthalpy. -

                                    -", +

                                    + This function computes the specific enthalpy. +

                                    + ", revisions=" -
                                      -
                                    • -December 11, 2013, by Michael Wetter:
                                      -First implementation. -
                                    • -
                                    -")); +
                                      +
                                    • + December 11, 2013, by Michael Wetter:
                                      + First implementation. +
                                    • +
                                    + ")); end specificEnthalpy; function enthalpyOfLiquid "Return the specific enthalpy of liquid" extends Modelica.Icons.Function; - input Modelica.SIunits.Temperature T "Temperature"; - output Modelica.SIunits.SpecificEnthalpy h "Specific enthalpy"; + input Modelica.Units.SI.Temperature T "Temperature"; + output Modelica.Units.SI.SpecificEnthalpy h "Specific enthalpy"; algorithm h := (T - reference_T)*cp_const; annotation ( @@ -142,18 +140,18 @@ algorithm Inline=true, derivative=der_enthalpyOfLiquid, Documentation(info=" -

                                    -This function computes the specific enthalpy of liquid water. -

                                    -", +

                                    + This function computes the specific enthalpy of liquid water. +

                                    + ", revisions=" -
                                      -
                                    • -December 2, 2013, by Michael Wetter:
                                      -First implementation. -
                                    • -
                                    -")); +
                                      +
                                    • + December 2, 2013, by Michael Wetter:
                                      + First implementation. +
                                    • +
                                    + ")); end enthalpyOfLiquid; redeclare function extends specificInternalEnergy @@ -164,18 +162,18 @@ annotation ( smoothOrder=5, Inline=true, Documentation(info=" -

                                    -This function computes the specific internal energy. -

                                    -", +

                                    + This function computes the specific internal energy. +

                                    + ", revisions=" -
                                      -
                                    • -December 11, 2013, by Michael Wetter:
                                      -First implementation. -
                                    • -
                                    -")); +
                                      +
                                    • + December 11, 2013, by Michael Wetter:
                                      + First implementation. +
                                    • +
                                    + ")); end specificInternalEnergy; redeclare function extends specificEntropy "Return the specific entropy" @@ -185,23 +183,23 @@ algorithm annotation ( Inline=true, Documentation(info=" -

                                    -This function computes the specific entropy. -

                                    -

                                    -To obtain the state for a given pressure, entropy and mass fraction, use - -AixLib.Media.Air.setState_psX. -

                                    -", +

                                    + This function computes the specific entropy. +

                                    +

                                    + To obtain the state for a given pressure, entropy and mass fraction, use + + AixLib.Media.Air.setState_psX. +

                                    + ", revisions=" -
                                      -
                                    • -December 18, 2013, by Michael Wetter:
                                      -First implementation. -
                                    • -
                                    -")); +
                                      +
                                    • + December 18, 2013, by Michael Wetter:
                                      + First implementation. +
                                    • +
                                    + ")); end specificEntropy; redeclare function extends specificGibbsEnergy @@ -212,18 +210,18 @@ algorithm annotation ( Inline=true, Documentation(info=" -

                                    -This function computes the specific Gibbs energy. -

                                    -", +

                                    + This function computes the specific Gibbs energy. +

                                    + ", revisions=" -
                                      -
                                    • -December 2, 2013, by Michael Wetter:
                                      -First implementation. -
                                    • -
                                    -")); +
                                      +
                                    • + December 2, 2013, by Michael Wetter:
                                      + First implementation. +
                                    • +
                                    + ")); end specificGibbsEnergy; redeclare function extends specificHelmholtzEnergy @@ -234,18 +232,18 @@ algorithm annotation ( Inline=true, Documentation(info=" -

                                    -This function computes the specific Helmholtz energy. -

                                    -", +

                                    + This function computes the specific Helmholtz energy. +

                                    + ", revisions=" -
                                      -
                                    • -December 2, 2013, by Michael Wetter:
                                      -First implementation. -
                                    • -
                                    -")); +
                                      +
                                    • + December 2, 2013, by Michael Wetter:
                                      + First implementation. +
                                    • +
                                    + ")); end specificHelmholtzEnergy; redeclare function extends isentropicEnthalpy "Return the isentropic enthalpy" @@ -257,21 +255,21 @@ algorithm annotation ( Inline=true, Documentation(info=" -

                                    -This function computes the specific enthalpy for -an isentropic state change from the temperature -that corresponds to the state refState -to reference_T. -

                                    -", +

                                    + This function computes the specific enthalpy for + an isentropic state change from the temperature + that corresponds to the state refState + to reference_T. +

                                    + ", revisions=" -
                                      -
                                    • -December 18, 2013, by Michael Wetter:
                                      -First implementation. -
                                    • -
                                    -")); +
                                      +
                                    • + December 18, 2013, by Michael Wetter:
                                      + First implementation. +
                                    • +
                                    + ")); end isentropicEnthalpy; redeclare function extends isobaricExpansionCoefficient @@ -294,27 +292,27 @@ algorithm annotation ( Inline=true, Documentation(info=" -

                                    -This function returns the isobaric expansion coefficient, -

                                    -

                                    p = - 1 ⁄ v   (∂ v ⁄ ∂ T)p, -

                                    -

                                    -where -v is the specific volume, -T is the temperature and -p is the pressure. -

                                    -", +

                                    + This function returns the isobaric expansion coefficient, +

                                    +

                                    + βp = - 1 ⁄ v   (∂ v ⁄ ∂ T)p, +

                                    +

                                    + where + v is the specific volume, + T is the temperature and + p is the pressure. +

                                    + ", revisions=" -
                                      -
                                    • -December 18, 2013, by Michael Wetter:
                                      -First implementation. -
                                    • -
                                    -")); +
                                      +
                                    • + December 18, 2013, by Michael Wetter:
                                      + First implementation. +
                                    • +
                                    + ")); end isobaricExpansionCoefficient; redeclare function extends isothermalCompressibility @@ -324,29 +322,29 @@ algorithm annotation ( Inline=true, Documentation(info=" -

                                    -This function returns the isothermal compressibility coefficient, -which is zero as this medium is incompressible. -The isothermal compressibility is defined as -

                                    -

                                    T = - 1 ⁄ v   (∂ v ⁄ ∂ p)T, -

                                    -

                                    -where -v is the specific volume, -T is the temperature and -p is the pressure. -

                                    -", +

                                    + This function returns the isothermal compressibility coefficient, + which is zero as this medium is incompressible. + The isothermal compressibility is defined as +

                                    +

                                    + κT = - 1 ⁄ v   (∂ v ⁄ ∂ p)T, +

                                    +

                                    + where + v is the specific volume, + T is the temperature and + p is the pressure. +

                                    + ", revisions=" -
                                      -
                                    • -December 18, 2013, by Michael Wetter:
                                      -First implementation. -
                                    • -
                                    -")); +
                                      +
                                    • + December 18, 2013, by Michael Wetter:
                                      + First implementation. +
                                    • +
                                    + ")); end isothermalCompressibility; redeclare function extends density_derp_T @@ -356,20 +354,20 @@ algorithm annotation ( Inline=true, Documentation(info=" -

                                    -This function returns the partial derivative of density -with respect to pressure at constant temperature, -which is zero as the medium is incompressible. -

                                    -", +

                                    + This function returns the partial derivative of density + with respect to pressure at constant temperature, + which is zero as the medium is incompressible. +

                                    + ", revisions=" -
                                      -
                                    • -December 18, 2013, by Michael Wetter:
                                      -First implementation. -
                                    • -
                                    -")); +
                                      +
                                    • + December 18, 2013, by Michael Wetter:
                                      + First implementation. +
                                    • +
                                    + ")); end density_derp_T; redeclare function extends density_derT_p @@ -387,26 +385,26 @@ algorithm Inline=true, Documentation(info= " -

                                    -This function computes the derivative of density with respect to temperature -at constant pressure. -

                                    -", revisions= +

                                    + This function computes the derivative of density with respect to temperature + at constant pressure. +

                                    + ",revisions= " -
                                      -
                                    • -August 17, 2015, by Michael Wetter:
                                      -Removed dublicate entry of smooth and smoothOrder. -This is for -issue 303. -
                                    • -
                                    • -December 18, 2013, by Michael Wetter:
                                      -First implementation, based on the IDA implementation in therpro.nmf, -but converted from Celsius to Kelvin. -
                                    • -
                                    -")); +
                                      +
                                    • + August 17, 2015, by Michael Wetter:
                                      + Removed dublicate entry of smooth and smoothOrder. + This is for + issue 303. +
                                    • +
                                    • + December 18, 2013, by Michael Wetter:
                                      + First implementation, based on the IDA implementation in therpro.nmf, + but converted from Celsius to Kelvin. +
                                    • +
                                    + ")); end density_derT_p; redeclare function extends density_derX @@ -416,20 +414,20 @@ algorithm annotation ( Inline=true, Documentation(info=" -

                                    -This function returns the partial derivative of density -with respect to mass fraction, -which is zero as the medium is a single substance. -

                                    -", +

                                    + This function returns the partial derivative of density + with respect to mass fraction, + which is zero as the medium is a single substance. +

                                    + ", revisions=" -
                                      -
                                    • -December 18, 2013, by Michael Wetter:
                                      -First implementation. -
                                    • -
                                    -")); +
                                      +
                                    • + December 18, 2013, by Michael Wetter:
                                      + First implementation. +
                                    • +
                                    + ")); end density_derX; redeclare replaceable function extends specificHeatCapacityCp @@ -440,18 +438,18 @@ algorithm Inline=true, derivative=der_specificHeatCapacityCp, Documentation(info=" -

                                    -This function returns the specific heat capacity at constant pressure. -

                                    -", +

                                    + This function returns the specific heat capacity at constant pressure. +

                                    + ", revisions=" -
                                      -
                                    • -December 11, 2013, by Michael Wetter:
                                      -First implementation. -
                                    • -
                                    -")); +
                                      +
                                    • + December 11, 2013, by Michael Wetter:
                                      + First implementation. +
                                    • +
                                    + ")); end specificHeatCapacityCp; redeclare replaceable function extends specificHeatCapacityCv @@ -462,18 +460,18 @@ algorithm Inline=true, derivative=der_specificHeatCapacityCp, Documentation(info=" -

                                    -This function computes the specific heat capacity at constant volume. -

                                    -", +

                                    + This function computes the specific heat capacity at constant volume. +

                                    + ", revisions=" -
                                      -
                                    • -December 11, 2013, by Michael Wetter:
                                      -First implementation. -
                                    • -
                                    -")); +
                                      +
                                    • + December 11, 2013, by Michael Wetter:
                                      + First implementation. +
                                    • +
                                    + ")); end specificHeatCapacityCv; redeclare function extends thermalConductivity @@ -483,27 +481,27 @@ algorithm annotation ( Inline=true, Documentation(info=" -

                                    -This function returns the thermal conductivity. -The expression is obtained from Ramires et al. (1995). -

                                    -

                                    References

                                    -

                                    -Ramires, Maria L. V. and Nieto de Castro, Carlos A. and Nagasaka, Yuchi -and Nagashima, Akira and Assael, Marc J. and Wakeham, William A. -Standard Reference Data for the Thermal Conductivity of Water. -Journal of Physical and Chemical Reference Data, 24, p. 1377-1381, 1995. -DOI:10.1063/1.555963. -

                                    -", +

                                    + This function returns the thermal conductivity. + The expression is obtained from Ramires et al. (1995). +

                                    +

                                    References

                                    +

                                    + Ramires, Maria L. V. and Nieto de Castro, Carlos A. and Nagasaka, Yuchi + and Nagashima, Akira and Assael, Marc J. and Wakeham, William A. + Standard Reference Data for the Thermal Conductivity of Water. + Journal of Physical and Chemical Reference Data, 24, p. 1377-1381, 1995. + DOI:10.1063/1.555963. +

                                    + ", revisions=" -
                                      -
                                    • -December 18, 2013, by Michael Wetter:
                                      -First implementation. -
                                    • -
                                    -")); +
                                      +
                                    • + December 18, 2013, by Michael Wetter:
                                      + First implementation. +
                                    • +
                                    + ")); end thermalConductivity; redeclare function extends pressure "Return the pressure" @@ -513,18 +511,18 @@ annotation ( Inline=true, smoothOrder=99, Documentation(info=" -

                                    -This function returns the pressure. -

                                    -", +

                                    + This function returns the pressure. +

                                    + ", revisions=" -
                                      -
                                    • -December 18, 2013, by Michael Wetter:
                                      -First implementation. -
                                    • -
                                    -")); +
                                      +
                                    • + December 18, 2013, by Michael Wetter:
                                      + First implementation. +
                                    • +
                                    + ")); end pressure; redeclare function extends temperature "Return the temperature" @@ -534,18 +532,18 @@ annotation ( Inline=true, smoothOrder=99, Documentation(info=" -

                                    -This function returns the temperature. -

                                    -", +

                                    + This function returns the temperature. +

                                    + ", revisions=" -
                                      -
                                    • -December 18, 2013, by Michael Wetter:
                                      -First implementation. -
                                    • -
                                    -")); +
                                      +
                                    • + December 18, 2013, by Michael Wetter:
                                      + First implementation. +
                                    • +
                                    + ")); end temperature; redeclare function extends molarMass "Return the molar mass" @@ -555,19 +553,19 @@ algorithm Inline=true, smoothOrder=99, Documentation(info=" -

                                    -This function returns the molar mass, -which is assumed to be constant. -

                                    -", +

                                    + This function returns the molar mass, + which is assumed to be constant. +

                                    + ", revisions=" -
                                      -
                                    • -December 18, 2013, by Michael Wetter:
                                      -First implementation. -
                                    • -
                                    -")); +
                                      +
                                    • + December 18, 2013, by Michael Wetter:
                                      + First implementation. +
                                    • +
                                    + ")); end molarMass; redeclare function setState_dTX @@ -590,19 +588,19 @@ algorithm Inline=true, smoothOrder=99, Documentation(info=" -

                                    -This function returns the thermodynamic state for a given pressure, -specific enthalpy and composition. -

                                    -", +

                                    + This function returns the thermodynamic state for a given pressure, + specific enthalpy and composition. +

                                    + ", revisions=" -
                                      -
                                    • -December 11, 2013, by Michael Wetter:
                                      -First implementation. -
                                    • -
                                    -")); +
                                      +
                                    • + December 11, 2013, by Michael Wetter:
                                      + First implementation. +
                                    • +
                                    + ")); end setState_phX; redeclare function extends setState_pTX @@ -613,19 +611,19 @@ annotation ( smoothOrder=99, Inline=true, Documentation(info=" -

                                    -This function returns the thermodynamic state for a given pressure, -temperature and composition. -

                                    -", +

                                    + This function returns the thermodynamic state for a given pressure, + temperature and composition. +

                                    + ", revisions=" -
                                      -
                                    • -December 11, 2013, by Michael Wetter:
                                      -First implementation. -
                                    • -
                                    -")); +
                                      +
                                    • + December 11, 2013, by Michael Wetter:
                                      + First implementation. +
                                    • +
                                    + ")); end setState_pTX; redeclare function extends setState_psX @@ -638,31 +636,30 @@ algorithm annotation ( Inline=true, Documentation(info=" -

                                    -This function returns the thermodynamic state based on pressure, -specific entropy and mass fraction. -

                                    -

                                    -The state is computed by symbolically solving - -AixLib.Media.Specialized.Water.TemperatureDependentDensity.specificEntropy -for temperature. -

                                    -", revisions=" -
                                      -
                                    • -April 11, 2016 by Michael Wetter:
                                      -Corrected wrong hyperlink in documentation for -issue 450. -
                                    • -
                                    • -December 11, 2013, by Michael Wetter:
                                      -First implementation. -
                                    • -
                                    -")); +

                                    + This function returns the thermodynamic state based on pressure, + specific entropy and mass fraction. +

                                    +

                                    + The state is computed by symbolically solving + + AixLib.Media.Specialized.Water.TemperatureDependentDensity.specificEntropy + for temperature. +

                                    + ",revisions=" +
                                      +
                                    • + April 11, 2016 by Michael Wetter:
                                      + Corrected wrong hyperlink in documentation for + issue 450. +
                                    • +
                                    • + December 11, 2013, by Michael Wetter:
                                      + First implementation. +
                                    • +
                                    + ")); end setState_psX; - ////////////////////////////////////////////////////////////////////// // Protected classes. // These classes are only of use within this medium model. @@ -671,12 +668,12 @@ end setState_psX; // medium model with another medium model that does not provide an // implementation of these classes. protected - final constant Modelica.SIunits.SpecificHeatCapacity cv_const = cp_const + final constant Modelica.Units.SI.SpecificHeatCapacity cv_const=cp_const "Specific heat capacity at constant volume"; - constant Modelica.SIunits.VelocityOfSound a_const=1484 + constant Modelica.Units.SI.VelocityOfSound a_const=1484 "Constant velocity of sound"; - constant Modelica.SIunits.MolarMass MM_const=0.018015268 "Molar mass"; + constant Modelica.Units.SI.MolarMass MM_const=0.018015268 "Molar mass"; replaceable function der_specificHeatCapacityCp "Return the derivative of the specific heat capacity at constant pressure" @@ -689,19 +686,19 @@ algorithm annotation ( Inline=true, Documentation(info=" -

                                    -This function computes the derivative of the specific heat capacity -at constant pressure with respect to the state. -

                                    -", +

                                    + This function computes the derivative of the specific heat capacity + at constant pressure with respect to the state. +

                                    + ", revisions=" -
                                      -
                                    • -December 11, 2013, by Michael Wetter:
                                      -First implementation. -
                                    • -
                                    -")); +
                                      +
                                    • + December 11, 2013, by Michael Wetter:
                                      + First implementation. +
                                    • +
                                    + ")); end der_specificHeatCapacityCp; replaceable function der_enthalpyOfLiquid @@ -716,26 +713,26 @@ annotation ( Inline=true, Documentation(info= " -

                                    -This function computes the temperature derivative of the enthalpy of liquid water -per unit mass. -

                                    -", revisions= +

                                    + This function computes the temperature derivative of the enthalpy of liquid water + per unit mass. +

                                    + ",revisions= " -
                                      -
                                    • -December 11, 2013, by Michael Wetter:
                                      -First implementation. -
                                    • -
                                    -")); +
                                      +
                                    • + December 11, 2013, by Michael Wetter:
                                      + First implementation. +
                                    • +
                                    + ")); end der_enthalpyOfLiquid; function kinematicViscosity "Return the kinematic viscosity" extends Modelica.Icons.Function; - input Modelica.SIunits.Temperature T "Temperature"; - output Modelica.SIunits.KinematicViscosity kinVis "Kinematic viscosity"; + input Modelica.Units.SI.Temperature T "Temperature"; + output Modelica.Units.SI.KinematicViscosity kinVis "Kinematic viscosity"; algorithm kinVis := smooth(1, if T < 278.15 then @@ -749,176 +746,181 @@ annotation ( Inline=true, smoothOrder=1, Documentation(info=" -

                                    -This function computes the kinematic viscosity as a function of temperature. -

                                    -

                                    Implementation

                                    -

                                    -The function is based on the IDA implementation in therpro.nmf. -The original equation is -

                                    -
                                    -kinVis :=1E-6*Modelica.Math.exp(0.577449 - 3.253945e-2*T_degC + 2.17369e-4*
                                    -      T_degC^2 - 7.22111e-7*T_degC^3);
                                    -      
                                    -

                                    -This has been converted to Kelvin, which resulted in the above expression. -In addition, at 5 °C the kinematic viscosity is linearly extrapolated -to avoid a large gradient at very low temperatures. -We selected the same point for the linearization as we used for the density, -as the density and the kinematic viscosity are combined in - -AixLib.Media.Specialized.Water.TemperatureDependentDensity.dynamicViscosity. -

                                    -", +

                                    + This function computes the kinematic viscosity as a function of temperature. +

                                    +

                                    Implementation

                                    +

                                    + The function is based on the IDA implementation in therpro.nmf. + The original equation is +

                                    +
                                    + kinVis :=1E-6*Modelica.Math.exp(0.577449 - 3.253945e-2*T_degC + 2.17369e-4*
                                    +       T_degC^2 - 7.22111e-7*T_degC^3);
                                    +       
                                    +

                                    + This has been converted to Kelvin, which resulted in the above expression. + In addition, at 5 °C the kinematic viscosity is linearly extrapolated + to avoid a large gradient at very low temperatures. + We selected the same point for the linearization as we used for the density, + as the density and the kinematic viscosity are combined in + + AixLib.Media.Specialized.Water.TemperatureDependentDensity.dynamicViscosity. +

                                    + ", revisions=" -
                                      -
                                    • -April 11, 2016 by Michael Wetter:
                                      -Corrected wrong hyperlink in documentation for -issue 450. -
                                    • -
                                    • -December 18, 2013, by Michael Wetter:
                                      -First implementation, based on the IDA implementation in therpro.nmf, -but converted from Celsius to Kelvin. -
                                    • -
                                    -")); +
                                      +
                                    • + April 11, 2016 by Michael Wetter:
                                      + Corrected wrong hyperlink in documentation for + issue 450. +
                                    • +
                                    • + December 18, 2013, by Michael Wetter:
                                      + First implementation, based on the IDA implementation in therpro.nmf, + but converted from Celsius to Kelvin. +
                                    • +
                                    + ")); end kinematicViscosity; - annotation(preferredView="info", Documentation(info=" -

                                    -This medium package models liquid water. -

                                    -

                                    -The mass density is computed using a 3rd order polynomial, which yields the -density as a function of temperature as shown in the figure below. Note, however, -that computing density as a function of temperature can lead to considerably -slower computing time compared to using - -AixLib.Media.Water -in which the density is a constant. We therefore recommend to use - -AixLib.Media.Water -for typical building energy simulations. -

                                    -

                                    - -

                                    -

                                    -For the specific heat capacities at constant pressure and at constant volume, -a constant value of 4184 J/(kg K), which corresponds to 20°C -is used. -The figure below shows the relative error of the specific heat capacity that -is introduced by this simplification. -Using a constant value for the specific heat capacity allows to compute -temperature from enthalpy without having to solve an implicit equation, -and therefore leads to faster simulation. -

                                    -

                                    - -

                                    - - -

                                    -Thermal conductivity is calculated as a function of temperature as shown in the figure below. -The correlation used to calculate the thermal conductivity is -

                                    - -

                                    -λ(T) = λ(298.15 K) ⋅ (-1.48445+4.12292⋅(T/298.15)-1.63866⋅(T/298.15)2), -

                                    -

                                    -where λ(298.15 K) = 0.6065 W/(m ⋅ K) is the adopted standard value -of the thermal conductivity of water at 298.15 K and 0.1 MPa. -

                                    -

                                    - -

                                    - -

                                    -Dynamic viscosity is calculated as the product of density and kinematic viscosity, -both temperature dependent. However, the kinematic viscosity -has its own temperature dependent correlation, implemented at - -AixLib.Media.Specialized.Water.TemperatureDependentDensity.kinematicViscosity. -Results of the kinematic viscosity as a function of temperature are shown in the figure below. -

                                    -

                                    - -

                                    - -

                                    -The enthalpy is computed using the convention that h=0 -if T=0 °C. -

                                    -

                                    Limitations

                                    -

                                    -Phase changes are not modeled. -

                                    -", revisions=" -
                                      -
                                    • -July 7, 2016, by Carles Ribas Tugores:
                                      -Correct Documentation. This is for -#487. -
                                    • -
                                    • -June 6, 2015, by Michael Wetter:
                                      -Set AbsolutePressure(start=p_default) -and Temperature(start=T_default) -to have to have conistent start values. -See also revision notes of - -AixLib.Media.Water. -This is for -#266. -
                                    • -
                                    • -May 1, 2015, by Michael Wetter:
                                      -Added Inline=true for - -issue 227. -
                                    • -
                                    • -February 25, 2015, by Michael Wetter:
                                      -Removed stateSelect attribute on pressure as this caused - -AixLib.Examples.Tutorial.SpaceCooling.System3 -to fail with the error message -\"differentiated if-then-else was not continuous\". -
                                    • -
                                    • -February 3, 2015, by Michael Wetter:
                                      -Removed stateSelect.prefer for temperature. -This is for -#160. -
                                    • -
                                    • -October 15, 2014, by Michael Wetter:
                                      -Renamed from AixLib.Media.Water to -AixLib.Media.Water.Detailed to allow addition of -AixLib.Media.Water.Simple. -
                                    • -
                                    • -September 12, 2014, by Michael Wetter:
                                      -Set T(start=T_default) and p(start=p_default) in the -ThermodynamicState record. Setting the start value for -T is required to avoid an error due to conflicting start values -when checking -AixLib.Examples.VAVReheat.ClosedLoop in pedantic mode. -
                                    • -
                                    • -December 18, 2013, by Michael Wetter:
                                      -First implementation. -
                                    • -
                                    -"), +

                                    + This medium package models liquid water. +

                                    +

                                    + The mass density is computed using a 3rd order polynomial, which yields the + density as a function of temperature as shown in the figure below. Note, however, + that computing density as a function of temperature can lead to considerably + slower computing time compared to using + + AixLib.Media.Water + in which the density is a constant. We therefore recommend to use + + AixLib.Media.Water + for typical building energy simulations. +

                                    +

                                    + \"Mass +

                                    +

                                    + For the specific heat capacities at constant pressure and at constant volume, + a constant value of 4184 J/(kg K), which corresponds to 20°C + is used. + The figure below shows the relative error of the specific heat capacity that + is introduced by this simplification. + Using a constant value for the specific heat capacity allows to compute + temperature from enthalpy without having to solve an implicit equation, + and therefore leads to faster simulation. +

                                    +

                                    + \"Relative +

                                    + + +

                                    + Thermal conductivity is calculated as a function of temperature as shown in the figure below. + The correlation used to calculate the thermal conductivity is +

                                    + +

                                    + λ(T) = λ(298.15 K) ⋅ (-1.48445+4.12292⋅(T/298.15)-1.63866⋅(T/298.15)2), +

                                    +

                                    + where λ(298.15 K) = 0.6065 W/(m ⋅ K) is the adopted standard value + of the thermal conductivity of water at 298.15 K and 0.1 MPa. +

                                    +

                                    + \"Thermal +

                                    + +

                                    + Dynamic viscosity is calculated as the product of density and kinematic viscosity, + both temperature dependent. However, the kinematic viscosity + has its own temperature dependent correlation, implemented at + + AixLib.Media.Specialized.Water.TemperatureDependentDensity.kinematicViscosity. + Results of the kinematic viscosity as a function of temperature are shown in the figure below. +

                                    +

                                    + \"Kinematic +

                                    + +

                                    + The enthalpy is computed using the convention that h=0 + if T=0 °C. +

                                    +

                                    Limitations

                                    +

                                    + Phase changes are not modeled. +

                                    + ",revisions=" +
                                      +
                                    • + April 5, 2022, by Michael Wetter:
                                      + Corrected assignment of R_s in BaseProperties to avoid a unit error.
                                      + This is for + #1603. +
                                    • +
                                    • + July 7, 2016, by Carles Ribas Tugores:
                                      + Correct Documentation. This is for + #487. +
                                    • +
                                    • + June 6, 2015, by Michael Wetter:
                                      + Set AbsolutePressure(start=p_default) + and Temperature(start=T_default) + to have to have conistent start values. + See also revision notes of + + AixLib.Media.Water. + This is for + #266. +
                                    • +
                                    • + May 1, 2015, by Michael Wetter:
                                      + Added Inline=true for + + issue 227. +
                                    • +
                                    • + February 25, 2015, by Michael Wetter:
                                      + Removed stateSelect attribute on pressure as this caused + + AixLib.Examples.Tutorial.SpaceCooling.System3 + to fail with the error message + \"differentiated if-then-else was not continuous\". +
                                    • +
                                    • + February 3, 2015, by Michael Wetter:
                                      + Removed stateSelect.prefer for temperature. + This is for + #160. +
                                    • +
                                    • + October 15, 2014, by Michael Wetter:
                                      + Renamed from AixLib.Media.Water to + AixLib.Media.Water.Detailed to allow addition of + AixLib.Media.Water.Simple. +
                                    • +
                                    • + September 12, 2014, by Michael Wetter:
                                      + Set T(start=T_default) and p(start=p_default) in the + ThermodynamicState record. Setting the start value for + T is required to avoid an error due to conflicting start values + when checking + AixLib.Examples.VAVReheat.ClosedLoop in pedantic mode. +
                                    • +
                                    • + December 18, 2013, by Michael Wetter:
                                      + First implementation. +
                                    • +
                                    + "), Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100, 100}}), graphics={ @@ -949,6 +951,7 @@ First implementation. fillColor={95,95,95}), Text( extent={{-64,88},{-42,58}}, - lineColor={255,0,0}, - textString="T")})); + textColor={255,0,0}, + textString="T")}), + __Dymola_LockedEditing="Model from IBPSA"); end TemperatureDependentDensity; diff --git a/AixLib/Media/Steam.mo b/AixLib/Media/Steam.mo new file mode 100644 index 0000000000..10c85d6c56 --- /dev/null +++ b/AixLib/Media/Steam.mo @@ -0,0 +1,931 @@ +within AixLib.Media; +package Steam + "Package with model for pure steam water vapor" + extends Modelica.Media.Interfaces.PartialMedium( + mediumName="steam", + final substanceNames={"water"}, + singleState=true, + reducedX=true, + fixedX=true, + FluidConstants={Modelica.Media.IdealGases.Common.FluidData.H2O}, + reference_T=273.15, + reference_p=101325, + reference_X={1}, + AbsolutePressure(start=p_default), + Temperature(start=T_default), + SpecificEnthalpy(start=2.7e6, nominal=2.7e6), + Density(start=0.6, nominal=1), + T_default=Modelica.Units.Conversions.from_degC(100), + p_default=100000); + extends Modelica.Icons.Package; + + redeclare record ThermodynamicState + "Thermodynamic state variables" + AbsolutePressure p "Absolute pressure of medium"; + Temperature T "Temperature of medium"; + end ThermodynamicState; + +redeclare replaceable model extends BaseProperties( + preferredMediumStates = true, + final standardOrderComponents=true) + "Base properties (p, d, T, h, u, R, MM) of water" +equation + MM = steam.MM; + h = specificEnthalpy(state); + d = density(state); + u = h - p/d; + R_s = steam.R; + state.p = p; + state.T = T; +end BaseProperties; + +redeclare replaceable function extends density + "Returns density" +algorithm + d := rho_pT(state.p, state.T); + annotation (Inline=true, Documentation(info=" +

                                    + Density is computed from temperature and pressure using the + IAPWS-IF97 relationship via the Gibbs free energy for region 2. +

                                    + ")); +end density; + +redeclare replaceable function extends dynamicViscosity + "Return dynamic viscosity" +algorithm + eta := Modelica.Media.Water.IF97_Utilities.dynamicViscosity( + d=density(state), + T=state.T, + p=state.p); + annotation (Inline=true, Documentation(info=" +

                                    + Dynamic viscosity is computed from density, temperature and pressure + using the IAPWS-IF97 formulation. +

                                    + ")); +end dynamicViscosity; + +redeclare replaceable function extends molarMass + "Return the molar mass of the medium" +algorithm + MM := steam.MM; + annotation (Documentation(info=" +

                                    + Returns the molar mass. +

                                    + ")); +end molarMass; + +redeclare function extends pressure + "Return pressure" +algorithm + p := state.p; + annotation (Documentation(info=" +

                                    + Pressure is returned from the thermodynamic state record input as a simple assignment. +

                                    + ")); +end pressure; + +replaceable function saturationPressure + "Return saturation pressure of condensing fluid" + extends Modelica.Icons.Function; + input Temperature Tsat "Saturation temperature"; + output AbsolutePressure psat "Saturation pressure"; +algorithm + psat := Modelica.Media.Water.IF97_Utilities.BaseIF97.Basic.psat(Tsat); + annotation (Inline=true, Documentation(info=" +

                                    + Saturation pressure is computed from temperature + using the IAPWS-IF97 formulation. +

                                    + ")); +end saturationPressure; + +replaceable function saturationTemperature + "Return saturation temperature" + input AbsolutePressure psat "Saturation pressure"; + output Temperature Tsat "Saturation temperature"; +algorithm + Tsat := Modelica.Media.Water.IF97_Utilities.BaseIF97.Basic.tsat(psat); + annotation (Inline=true, Documentation(info=" +

                                    + Saturation temperature is computed from pressure + using the IAPWS-IF97 formulation. +

                                    + ")); +end saturationTemperature; + +redeclare replaceable function extends specificEnthalpy + "Returns specific enthalpy" + protected + constant Real a[:] = {2.749e+06,-9118,2.752e+04} "Regression coefficients"; + constant AbsolutePressure pMean = 2.50427896656637E+05 "Mean pressure"; + constant Temperature TMean = 4.15555698340926E+02 "Mean temperature"; + constant Real pSD = 1.13236055019318E+05 "Normalization value"; + constant Real TSD = 1.32971013463839E+01 "Normalization value"; + AbsolutePressure pHat; + Temperature THat; +algorithm + pHat := (state.p - pMean)/pSD; + THat := (state.T - TMean)/TSD; + h := a[1] + a[2]*pHat + a[3]*THat; +annotation (Inline=true,smoothOrder=2, + Documentation(info=" +

                                    + Returns the specific enthalpy. +

                                    +

                                    Implementation

                                    +

                                    + The function is based on + + Modelica.Media.Water.WaterIF97_base.specificEnthalpy_pT. + However, for the typical range of temperatures and pressures + encountered in building and district energy applications, + a linear function sufficies. This implementation is therefore a linear + surface fit of the IF97 formulation h(p,T) in the ranges of + 100°C ≤ T ≤ 160°C and + 100 kPa ≤ p ≤ 550 kPa. The fit is scaled by the dataset's + mean and standard deviation values to improve conditioning. + The largest error of this linearization is 2.42 kJ/kg (0.09%), + which occurs at 100.6°C and 100 kPa. + The root mean square error (RMSE) is 0.76 kJ/kg. +

                                    + ",revisions=" +
                                      +
                                    • + October 30, 2020, by Kathryn Hinkelman:
                                      + First implementation. +
                                    • +
                                    + ")); +end specificEnthalpy; + +redeclare replaceable function extends specificEntropy + "Return specific entropy" + protected + constant Real a[:] = {7135,-252.4,70.03,40.6,4.953} "Regression coefficients"; + constant AbsolutePressure pMean = 2.50427896656637E+05 "Mean pressure"; + constant Temperature TMean = 4.15555698340926E+02 "Mean temperature"; + constant Real pSD = 1.13236055019318E+05 "Normalization value"; + constant Real TSD = 1.32971013463839E+01 "Normalization value"; + AbsolutePressure pHat; + Temperature THat; +algorithm + pHat := (state.p - pMean)/pSD; + THat := (state.T - TMean)/TSD; + s := a[1] + a[2]*pHat + a[3]*THat + pHat*(a[4]*pHat + a[5]*THat); +annotation (Inline=true,smoothOrder=2, + Documentation(info=" +

                                    + Returns the specific entropy. +

                                    +

                                    Implementation

                                    +

                                    + The function is based on + + Modelica.Media.Water.WaterIF97_base.specificEntropy. + However, for the typical range of temperatures and pressures + encountered in building and district energy applications, + an invertible polynomial fit sufficies. This implementation is therefore + a polynomial fit (quadratic in pressure, linear in temperature) of the + IF97 formulation s(p,T) in the ranges of + 100°C ≤ T ≤ 160°C and + 100 kPa ≤ p ≤ 550 kPa. The fit is scaled by the dataset's + mean and standard deviation values to improve conditioning. + The largest error of this approximation is 0.047 kJ/kg-K (0.70%), + which occurs at 160°C and 550 kPa. + The root mean square error (RMSE) is 12.56 J/kg-K. +

                                    + ")); +end specificEntropy; + +redeclare replaceable function extends specificInternalEnergy + "Return specific internal energy" +algorithm + u := specificEnthalpy(state) - state.p/density(state); + annotation (Inline=true, Documentation(info=" +

                                    + Returns the specific internal energy for a given state. +

                                    + ")); +end specificInternalEnergy; + +redeclare replaceable function extends specificHeatCapacityCp + "Specific heat capacity at constant pressure" + + protected + Modelica.Media.Common.GibbsDerivs g + "Dimensionless Gibbs function and derivatives w.r.t. pi and tau"; + SpecificHeatCapacity R "Specific gas constant of water vapor"; +algorithm + R := Modelica.Media.Water.IF97_Utilities.BaseIF97.data.RH2O; + // Region 2 properties + g := g2(state.p, state.T); + cp := -R*g.tau*g.tau*g.gtautau; + annotation ( + smoothOrder=2, + Inline=true, + Documentation(info=" +

                                    + Specific heat at constant pressure is computed from temperature and + pressure using the IAPWS-IF97 relationship via the Gibbs + free energy for region 2. +

                                    + ")); +end specificHeatCapacityCp; + +redeclare replaceable function extends specificHeatCapacityCv + "Specific heat capacity at constant volume" + + protected + Modelica.Media.Common.GibbsDerivs g + "Dimensionless Gibbs function and derivatives w.r.t. pi and tau"; + SpecificHeatCapacity R "Specific gas constant of water vapor"; +algorithm + R := Modelica.Media.Water.IF97_Utilities.BaseIF97.data.RH2O; + // Region 2 properties + g := g2(state.p, state.T); + cv := R*(-g.tau*g.tau*g.gtautau + ((g.gpi - g.tau*g.gtaupi)*(g.gpi + - g.tau*g.gtaupi)/g.gpipi)); + annotation ( + smoothOrder=2, + Inline=true, + LateInline = true, + Documentation(info=" +

                                    + Specific heat at constant volume is computed from temperature and + pressure using the IAPWS-IF97 relationship via the Gibbs + free energy for region 2. +

                                    + ", +revisions=" + + ")); +end specificHeatCapacityCv; + +redeclare replaceable function extends specificGibbsEnergy + "Specific Gibbs energy" +algorithm + g := specificEnthalpy(state) - state.T*specificEntropy(state); + annotation (Inline=true); +end specificGibbsEnergy; + +redeclare replaceable function extends specificHelmholtzEnergy + "Specific Helmholtz energy" +algorithm + f := specificEnthalpy(state) - steam.R*state.T - state.T*specificEntropy(state); + annotation (Inline=true, Documentation(info=" +

                                    + Returns the specific Helmholtz energy for a given state. +

                                    + ")); +end specificHelmholtzEnergy; + +redeclare replaceable function extends setState_dTX + "Return the thermodynamic state as function of d and T" +algorithm + state := ThermodynamicState(p=pressure_dT(d,T), T=T); +annotation (Inline=true, + Documentation(info=" +

                                    + The thermodynamic state record + is computed from density d and temperature T. +

                                    + ")); +end setState_dTX; + +redeclare replaceable function extends setState_pTX + "Return the thermodynamic state as function of p and T" +algorithm + state := ThermodynamicState(p=p, T=T); +annotation (Inline=true,smoothOrder=2, + Documentation(info=" +

                                    + The thermodynamic state record + is computed from pressure p and temperature T. +

                                    + ")); +end setState_pTX; + +redeclare replaceable function extends setState_phX + "Return the thermodynamic state as function of p and h" +algorithm + state := ThermodynamicState(p=p, T=temperature_ph(p,h)); +annotation (Inline=true,smoothOrder=2, + Documentation(info=" +

                                    + The thermodynamic state record + is computed from pressure p and specific enthalpy h. +

                                    + ")); +end setState_phX; + +redeclare replaceable function extends setState_psX + "Return the thermodynamic state as function of p and s" +algorithm + state := ThermodynamicState(p=p, T=temperature_ps(p,s)); +annotation (Inline=true,smoothOrder=2, + Documentation(info=" +

                                    + The thermodynamic state record + is computed from pressure p and specific entropy s. +

                                    + ")); +end setState_psX; + +redeclare function extends temperature + "Return temperature" +algorithm + T := state.T; + annotation (Documentation(info=" +

                                    + Temperature is returned from the thermodynamic state record input as a simple assignment. +

                                    + ")); +end temperature; + +redeclare replaceable function extends thermalConductivity + "Return thermal conductivity" +algorithm + lambda := Modelica.Media.Water.IF97_Utilities.thermalConductivity( + density(state), + state.T, + state.p); + annotation (Inline=true, Documentation(info=" +

                                    + Thermal conductivity is computed from density, temperature and pressure + using the IAPWS-IF97 formulation. +

                                    + ")); +end thermalConductivity; + +redeclare function extends density_derh_p + "Density derivative by specific enthalpy" +algorithm + ddhp := Modelica.Media.Water.IF97_Utilities.ddhp( + p = state.p, + h = specificEnthalpy(state), + phase = 1, + region = 2); + annotation (Inline=true, Documentation(info=" +

                                    + Returns the partial derivative of density with respect + to specific enthalpy at constant pressure using the IAPWS-IF97 formulation. +

                                    + ")); +end density_derh_p; + +redeclare function extends density_derp_h + "Density derivative by pressure" +algorithm + ddph := Modelica.Media.Water.IF97_Utilities.ddph( + p = state.p, + h = specificEnthalpy(state), + phase = 1, + region = 2); + annotation (Inline=true, Documentation(info=" +

                                    + Returns the partial derivative of density with respect + to pressure at constant specific enthalpy using the IAPWS-IF97 formulation. +

                                    + ")); +end density_derp_h; + +redeclare replaceable function extends isentropicExponent + "Return isentropic exponent" +algorithm + gamma := Modelica.Media.Water.IF97_Utilities.isentropicExponent_pT( + p = state.p, + T = state.T, + region = 2); + annotation (Inline=true, Documentation(info=" +

                                    + Isentropic exponent is computed from temperature and pressure + using the IAPWS-IF97 formulation. +

                                    + ")); +end isentropicExponent; + +redeclare replaceable function extends isothermalCompressibility + "Isothermal compressibility of water" +algorithm + kappa := Modelica.Media.Water.IF97_Utilities.kappa_pT( + p = state.p, + T = state.T, + region = 2); + annotation (Inline=true, Documentation(info=" +

                                    + Isothermal compressibility is computed from temperature and pressure + using the IAPWS-IF97 formulation. +

                                    + ")); +end isothermalCompressibility; + +redeclare replaceable function extends isobaricExpansionCoefficient + "Isobaric expansion coefficient of water" +algorithm + beta := Modelica.Media.Water.IF97_Utilities.beta_pT( + p = state.p, + T = state.T, + region = 2); + annotation (Documentation(info=" +

                                    + Isobaric expansion coefficient is computed from temperature and + pressure using the IAPWS-IF97 formulation. +

                                    + ")); +end isobaricExpansionCoefficient; + +redeclare replaceable function extends isentropicEnthalpy + "Isentropic enthalpy" +algorithm + h_is := Modelica.Media.Water.IF97_Utilities.isentropicEnthalpy( + p = p_downstream, + s = specificEntropy(refState), + phase = 0); // phase 0 means unknown + annotation (Inline=true, Documentation(info=" +

                                    + Isentropic enthalpy is computed using the IAPWS-IF97 formulation: +

                                    +
                                      +
                                    1. A medium is in a particular state, refState.
                                    2. +
                                    3. The enthalpy at another state h_is shall be computed + under the assumption that the state transformation from refState to h_is + is performed with a change of specific entropy ds = 0 and the pressure of state h_is + is p_downstream and the composition X upstream and downstream is assumed to be the same.
                                    4. +
                                    + ")); +end isentropicEnthalpy; +////////////////////////////////////////////////////////////////////// +// Protected classes + +protected +record GasProperties + "Coefficient data record for properties of perfect gases" + extends Modelica.Icons.Record; + Modelica.Units.SI.MolarMass MM "Molar mass"; + Modelica.Units.SI.SpecificHeatCapacity R "Gas constant"; +end GasProperties; + constant GasProperties steam(R=Modelica.Media.IdealGases.Common.SingleGasesData.H2O.R_s, + MM=Modelica.Media.IdealGases.Common.SingleGasesData.H2O.MM) + "Steam properties"; + +function g2 "Gibbs function for region 2: g(p,T)" + extends Modelica.Icons.Function; + input Modelica.Units.SI.Pressure p "Pressure"; + input Modelica.Units.SI.Temperature T "Temperature (K)"; + output Modelica.Media.Common.GibbsDerivs g + "Dimensionless Gibbs function and derivatives w.r.t. pi and tau"; + protected + Real tau2 "Dimensionless temperature"; + Real[55] o "Vector of auxiliary variables"; +algorithm + g.p := p; + g.T := T; + g.R_s := Modelica.Media.Water.IF97_Utilities.BaseIF97.data.RH2O; +// assert(p > 0.0, +// "IF97 medium function g2 called with too low pressure\n" + "p = " + +// String(p) + " Pa <= 0.0 Pa"); +// assert(p <= 100.0e6, "IF97 medium function g2: the input pressure (= " +// + String(p) + " Pa) is higher than 100 Mpa"); +// assert(T >= 273.15, "IF97 medium function g2: the temperature (= " + +// String(T) + " K) is lower than 273.15 K!"); +// assert(T <= 1073.15, +// "IF97 medium function g2: the input temperature (= " + String(T) + +// " K) is higher than the limit of 1073.15 K"); + g.pi := p/Modelica.Media.Water.IF97_Utilities.BaseIF97.data.PSTAR2; + g.tau := Modelica.Media.Water.IF97_Utilities.BaseIF97.data.TSTAR2/T; + tau2 := -0.5 + g.tau; + o[1] := tau2*tau2; + o[2] := o[1]*tau2; + o[3] := -0.050325278727930*o[2]; + o[4] := -0.057581259083432 + o[3]; + o[5] := o[4]*tau2; + o[6] := -0.045996013696365 + o[5]; + o[7] := o[6]*tau2; + o[8] := -0.0178348622923580 + o[7]; + o[9] := o[8]*tau2; + o[10] := o[1]*o[1]; + o[11] := o[10]*o[10]; + o[12] := o[11]*o[11]; + o[13] := o[10]*o[11]*o[12]*tau2; + o[14] := o[1]*o[10]*tau2; + o[15] := o[10]*o[11]*tau2; + o[16] := o[1]*o[12]*tau2; + o[17] := o[1]*o[11]*tau2; + o[18] := o[1]*o[10]*o[11]; + o[19] := o[10]*o[11]*o[12]; + o[20] := o[1]*o[10]; + o[21] := g.pi*g.pi; + o[22] := o[21]*o[21]; + o[23] := o[21]*o[22]; + o[24] := o[10]*o[12]*tau2; + o[25] := o[12]*o[12]; + o[26] := o[11]*o[12]*o[25]*tau2; + o[27] := o[10]*o[12]; + o[28] := o[1]*o[10]*o[11]*tau2; + o[29] := o[10]*o[12]*o[25]*tau2; + o[30] := o[1]*o[10]*o[25]*tau2; + o[31] := o[1]*o[11]*o[12]; + o[32] := o[1]*o[12]; + o[33] := g.tau*g.tau; + o[34] := o[33]*o[33]; + o[35] := -0.000053349095828174*o[13]; + o[36] := -0.087594591301146 + o[35]; + o[37] := o[2]*o[36]; + o[38] := -0.0078785554486710 + o[37]; + o[39] := o[1]*o[38]; + o[40] := -0.00037897975032630 + o[39]; + o[41] := o[40]*tau2; + o[42] := -0.000066065283340406 + o[41]; + o[43] := o[42]*tau2; + o[44] := 5.7870447262208e-6*tau2; + o[45] := -0.301951672367580*o[2]; + o[46] := -0.172743777250296 + o[45]; + o[47] := o[46]*tau2; + o[48] := -0.091992027392730 + o[47]; + o[49] := o[48]*tau2; + o[50] := o[1]*o[11]; + o[51] := o[10]*o[11]; + o[52] := o[11]*o[12]*o[25]; + o[53] := o[10]*o[12]*o[25]; + o[54] := o[1]*o[10]*o[25]; + o[55] := o[11]*o[12]*tau2; + + g.g := g.pi*(-0.00177317424732130 + o[9] + g.pi*(tau2*(-0.000033032641670203 + + (-0.000189489875163150 + o[1]*(-0.0039392777243355 + (-0.043797295650573 + - 0.0000266745479140870*o[13])*o[2]))*tau2) + g.pi*( + 2.04817376923090e-8 + (4.3870667284435e-7 + o[1]*(-0.000032277677238570 + + (-0.00150339245421480 - 0.040668253562649*o[13])*o[2]))*tau2 + g.pi + *(g.pi*(2.29220763376610e-6*o[14] + g.pi*((-1.67147664510610e-11 + o[ + 15]*(-0.00211714723213550 - 23.8957419341040*o[16]))*o[2] + g.pi*(-5.9059564324270e-18 + + o[17]*(-1.26218088991010e-6 - 0.038946842435739*o[18]) + g.pi*(o[ + 11]*(1.12562113604590e-11 - 8.2311340897998*o[19]) + g.pi*( + 1.98097128020880e-8*o[15] + g.pi*(o[10]*(1.04069652101740e-19 + (-1.02347470959290e-13 + - 1.00181793795110e-9*o[10])*o[20]) + o[23]*(o[13]*(-8.0882908646985e-11 + + 0.106930318794090*o[24]) + o[21]*(-0.33662250574171*o[26] + o[21]* + (o[27]*(8.9185845355421e-25 + (3.06293168762320e-13 - + 4.2002467698208e-6*o[15])*o[28]) + g.pi*(-5.9056029685639e-26*o[24] + + g.pi*(3.7826947613457e-6*o[29] + g.pi*(-1.27686089346810e-15*o[30] + + o[31]*(7.3087610595061e-29 + o[18]*(5.5414715350778e-17 - + 9.4369707241210e-7*o[32]))*g.pi)))))))))))) + tau2*(-7.8847309559367e-10 + + (1.27907178522850e-8 + 4.8225372718507e-7*tau2)*tau2))))) + (-0.0056087911830200 + + g.tau*(0.071452738814550 + g.tau*(-0.40710498239280 + g.tau*( + 1.42408197144400 + g.tau*(-4.3839511194500 + g.tau*(-9.6927686002170 + + g.tau*(10.0866556801800 + (-0.284086326077200 + 0.0212684635330700 + *g.tau)*g.tau) + Modelica.Math.log(g.pi)))))))/(o[34]*g.tau); + + g.gpi := (1.00000000000000 + g.pi*(-0.00177317424732130 + o[9] + g.pi*( + o[43] + g.pi*(6.1445213076927e-8 + (1.31612001853305e-6 + o[1]*(-0.000096833031715710 + + (-0.0045101773626444 - 0.122004760687947*o[13])*o[2]))*tau2 + g.pi + *(g.pi*(0.0000114610381688305*o[14] + g.pi*((-1.00288598706366e-10 + + o[15]*(-0.0127028833928130 - 143.374451604624*o[16]))*o[2] + g.pi*(-4.1341695026989e-17 + + o[17]*(-8.8352662293707e-6 - 0.272627897050173*o[18]) + g.pi*(o[11] + *(9.0049690883672e-11 - 65.849072718398*o[19]) + g.pi*( + 1.78287415218792e-7*o[15] + g.pi*(o[10]*(1.04069652101740e-18 + (-1.02347470959290e-12 + - 1.00181793795110e-8*o[10])*o[20]) + o[23]*(o[13]*(-1.29412653835176e-9 + + 1.71088510070544*o[24]) + o[21]*(-6.0592051033508*o[26] + o[21]*(o[ + 27]*(1.78371690710842e-23 + (6.1258633752464e-12 - + 0.000084004935396416*o[15])*o[28]) + g.pi*(-1.24017662339842e-24*o[24] + + g.pi*(0.000083219284749605*o[29] + g.pi*(-2.93678005497663e-14*o[ + 30] + o[31]*(1.75410265428146e-27 + o[18]*(1.32995316841867e-15 - + 0.0000226487297378904*o[32]))*g.pi)))))))))))) + tau2*(-3.15389238237468e-9 + + (5.1162871409140e-8 + 1.92901490874028e-6*tau2)*tau2))))))/g.pi; + + g.gpipi := (-1.00000000000000 + o[21]*(o[43] + g.pi*( + 1.22890426153854e-7 + (2.63224003706610e-6 + o[1]*(-0.000193666063431420 + + (-0.0090203547252888 - 0.244009521375894*o[13])*o[2]))*tau2 + g.pi + *(g.pi*(0.000045844152675322*o[14] + g.pi*((-5.0144299353183e-10 + o[ + 15]*(-0.063514416964065 - 716.87225802312*o[16]))*o[2] + g.pi*(-2.48050170161934e-16 + + o[17]*(-0.000053011597376224 - 1.63576738230104*o[18]) + g.pi*(o[ + 11]*(6.3034783618570e-10 - 460.94350902879*o[19]) + g.pi*( + 1.42629932175034e-6*o[15] + g.pi*(o[10]*(9.3662686891566e-18 + (-9.2112723863361e-12 + - 9.0163614415599e-8*o[10])*o[20]) + o[23]*(o[13]*(-1.94118980752764e-8 + + 25.6632765105816*o[24]) + o[21]*(-103.006486756963*o[26] + o[21]*( + o[27]*(3.3890621235060e-22 + (1.16391404129682e-10 - + 0.00159609377253190*o[15])*o[28]) + g.pi*(-2.48035324679684e-23*o[24] + + g.pi*(0.00174760497974171*o[29] + g.pi*(-6.4609161209486e-13*o[30] + + o[31]*(4.0344361048474e-26 + o[18]*(3.05889228736295e-14 - + 0.00052092078397148*o[32]))*g.pi)))))))))))) + tau2*(-9.4616771471240e-9 + + (1.53488614227420e-7 + o[44])*tau2)))))/o[21]; + + g.gtau := (0.0280439559151000 + g.tau*(-0.285810955258200 + g.tau*( + 1.22131494717840 + g.tau*(-2.84816394288800 + g.tau*(4.3839511194500 + + o[33]*(10.0866556801800 + (-0.56817265215440 + 0.063805390599210*g.tau) + *g.tau))))))/(o[33]*o[34]) + g.pi*(-0.0178348622923580 + o[49] + g.pi + *(-0.000033032641670203 + (-0.00037897975032630 + o[1]*(-0.0157571108973420 + + (-0.306581069554011 - 0.00096028372490713*o[13])*o[2]))*tau2 + g.pi + *(4.3870667284435e-7 + o[1]*(-0.000096833031715710 + (-0.0090203547252888 + - 1.42338887469272*o[13])*o[2]) + g.pi*(-7.8847309559367e-10 + g.pi* + (0.0000160454534363627*o[20] + g.pi*(o[1]*(-5.0144299353183e-11 + o[ + 15]*(-0.033874355714168 - 836.35096769364*o[16])) + g.pi*((-0.0000138839897890111 + - 0.97367106089347*o[18])*o[50] + g.pi*(o[14]*(9.0049690883672e-11 + - 296.320827232793*o[19]) + g.pi*(2.57526266427144e-7*o[51] + g.pi*( + o[2]*(4.1627860840696e-19 + (-1.02347470959290e-12 - + 1.40254511313154e-8*o[10])*o[20]) + o[23]*(o[19]*(-2.34560435076256e-9 + + 5.3465159397045*o[24]) + o[21]*(-19.1874828272775*o[52] + o[21]*(o[ + 16]*(1.78371690710842e-23 + (1.07202609066812e-11 - + 0.000201611844951398*o[15])*o[28]) + g.pi*(-1.24017662339842e-24*o[27] + + g.pi*(0.000200482822351322*o[53] + g.pi*(-4.9797574845256e-14*o[54] + + (1.90027787547159e-27 + o[18]*(2.21658861403112e-15 - + 0.000054734430199902*o[32]))*o[55]*g.pi)))))))))))) + ( + 2.55814357045700e-8 + 1.44676118155521e-6*tau2)*tau2)))); + + g.gtautau := (-0.168263735490600 + g.tau*(1.42905477629100 + g.tau*(-4.8852597887136 + + g.tau*(8.5444918286640 + g.tau*(-8.7679022389000 + o[33]*(-0.56817265215440 + + 0.127610781198420*g.tau)*g.tau)))))/(o[33]*o[34]*g.tau) + g.pi*(-0.091992027392730 + + (-0.34548755450059 - 1.50975836183790*o[2])*tau2 + g.pi*(-0.00037897975032630 + + o[1]*(-0.047271332692026 + (-1.83948641732407 - 0.033609930371750* + o[13])*o[2]) + g.pi*((-0.000193666063431420 + (-0.045101773626444 - + 48.395221739552*o[13])*o[2])*tau2 + g.pi*(2.55814357045700e-8 + + 2.89352236311042e-6*tau2 + g.pi*(0.000096272720618176*o[10]*tau2 + g.pi + *((-1.00288598706366e-10 + o[15]*(-0.50811533571252 - + 28435.9329015838*o[16]))*tau2 + g.pi*(o[11]*(-0.000138839897890111 - + 23.3681054614434*o[18])*tau2 + g.pi*((6.3034783618570e-10 - + 10371.2289531477*o[19])*o[20] + g.pi*(3.09031519712573e-6*o[17] + g.pi + *(o[1]*(1.24883582522088e-18 + (-9.2112723863361e-12 - + 1.82330864707100e-7*o[10])*o[20]) + o[23]*(o[1]*o[11]*o[12]*(-6.5676921821352e-8 + + 261.979281045521*o[24])*tau2 + o[21]*(-1074.49903832754*o[1]*o[10] + *o[12]*o[25]*tau2 + o[21]*((3.3890621235060e-22 + ( + 3.6448887082716e-10 - 0.0094757567127157*o[15])*o[28])*o[32] + g.pi*( + -2.48035324679684e-23*o[16] + g.pi*(0.0104251067622687*o[1]*o[12]*o[ + 25]*tau2 + g.pi*(o[11]*o[12]*(4.7506946886790e-26 + o[18]*( + 8.6446955947214e-14 - 0.00311986252139440*o[32]))*g.pi - + 1.89230784411972e-12*o[10]*o[25]*tau2)))))))))))))))); + + g.gtaupi := -0.0178348622923580 + o[49] + g.pi*(-0.000066065283340406 + + (-0.00075795950065260 + o[1]*(-0.0315142217946840 + (-0.61316213910802 + - 0.00192056744981426*o[13])*o[2]))*tau2 + g.pi*(1.31612001853305e-6 + + o[1]*(-0.000290499095147130 + (-0.0270610641758664 - + 4.2701666240781*o[13])*o[2]) + g.pi*(-3.15389238237468e-9 + g.pi*( + 0.000080227267181813*o[20] + g.pi*(o[1]*(-3.00865796119098e-10 + o[15] + *(-0.203246134285008 - 5018.1058061618*o[16])) + g.pi*((-0.000097187928523078 + - 6.8156974262543*o[18])*o[50] + g.pi*(o[14]*(7.2039752706938e-10 - + 2370.56661786234*o[19]) + g.pi*(2.31773639784430e-6*o[51] + g.pi*(o[2] + *(4.1627860840696e-18 + (-1.02347470959290e-11 - 1.40254511313154e-7* + o[10])*o[20]) + o[23]*(o[19]*(-3.7529669612201e-8 + 85.544255035272*o[ + 24]) + o[21]*(-345.37469089099*o[52] + o[21]*(o[16]*( + 3.5674338142168e-22 + (2.14405218133624e-10 - 0.0040322368990280*o[15]) + *o[28]) + g.pi*(-2.60437090913668e-23*o[27] + g.pi*( + 0.0044106220917291*o[53] + g.pi*(-1.14534422144089e-12*o[54] + ( + 4.5606669011318e-26 + o[18]*(5.3198126736747e-14 - + 0.00131362632479764*o[32]))*o[55]*g.pi)))))))))))) + ( + 1.02325742818280e-7 + o[44])*tau2))); +annotation(smoothOrder = 2, +Documentation(info=" +

                                    + This function is identical to + + Modelica.Media.Water.IF97_Utilities.BaseIF97.Basic.g2 + except that +

                                    +
                                      +
                                    • it contains the smoothOrder annotation, and +
                                    • +
                                    • + it removes the assertions on the temperature and pressure because the applicability of + this medium is steam heating which has medium states that are inside these values. +
                                    • +
                                    +

                                    + The smoothOrder is needed for Optimica to differentiate the specific heat capacity, + which is used in + + AixLib.Media.Examples.SteamDerivativeCheck. + The function is differentiable except at p=0, which is far away from the state for which + this function is used. +

                                    + ",revisions=" +
                                      +
                                    • + June 11, 2021, by Michael Wetter:
                                      + First implementation. +
                                    • +
                                    + ")); +end g2; + +function temperature_ph + "Return temperature from p and h, inverse function of h(p,T)" + input AbsolutePressure p "Pressure"; + input SpecificEnthalpy h "Specific Enthalpy"; + output Temperature T "Temperature"; + protected + constant Real a[:] = {2.749e+06,-9118,2.752e+04} "Coefficients from forward function h(p,T)"; + constant Real b[:] = {-a[1]*TSD/a[3]+TMean, -a[2]*TSD/a[3], TSD/a[3]} "Regression coefficients"; + constant AbsolutePressure pMean = 2.50427896656637E+05 "Mean pressure"; + constant Temperature TMean = 4.15555698340926E+02 "Mean temperature"; + constant Real pSD = 1.13236055019318E+05 "Normalization value"; + constant Real TSD = 1.32971013463839E+01 "Normalization value"; + AbsolutePressure pHat; +algorithm + pHat := (p - pMean)/pSD; + T := b[1] + b[2]*pHat + b[3]*h; +annotation (Inline=true,smoothOrder=2, + Documentation(info=" +

                                    + Returns temperature from specific enthalpy and pressure. +

                                    +

                                    Implementation

                                    +

                                    + This linear approximation is the inverse or backward function of + + AixLib.Media.Steam.specificEnthalpy and is numerically + consistent with that forward function. +

                                    +

                                    + The largest error of this linearization is 1.17°C (0.31%), + which occurs at 100°C and 100 kPa. +

                                    + ",revisions=" +
                                      +
                                    • + April 13, 2021, by Kathryn Hinkelman:
                                      + Added pressure as a variable. +
                                    • +
                                    • + October 30, 2020, by Kathryn Hinkelman:
                                      + First implementation. +
                                    • +
                                    + ")); +end temperature_ph; + +function temperature_ps + "Return temperature from p and s, inverse function of s(p,T)" + input AbsolutePressure p "Pressure"; + input SpecificEntropy s "Specific Entropy"; + output Temperature T "Temperature"; + protected + constant Real a[:] = {7135,-252.4,70.03,40.6,4.953} "Coefficients from forward function s(p,T)"; + constant AbsolutePressure pMean = 2.50427896656637E+05 "Mean pressure"; + constant Temperature TMean = 4.15555698340926E+02 "Mean temperature"; + constant Real pSD = 1.13236055019318E+05 "Normalization value"; + constant Real TSD = 1.32971013463839E+01 "Normalization value"; + AbsolutePressure pHat; + Temperature THat; +algorithm + pHat := (p - pMean)/pSD; + THat := (s - a[1] - pHat*(a[2] + a[4]*pHat))/(a[3] + a[5]*pHat); + T := THat*TSD + TMean; +annotation (Inline=true,smoothOrder=2, + Documentation(info=" +

                                    + Returns temperature from specific entropy and pressure. +

                                    +

                                    Implementation

                                    +

                                    + This polynomial approximation is the inverse or backward function of + + AixLib.Media.Steam.specificEntropy and is numerically + consistent with that forward function. +

                                    +

                                    + The largest error of this linearization is 7.70°C (1.86%), + which occurs at 137.4°C and 100 kPa. +

                                    + ",revisions=" +
                                      +
                                    • + April 13, 2021, by Kathryn Hinkelman:
                                      + Added pressure as a variable. +
                                    • +
                                    • + October 30, 2020, by Kathryn Hinkelman:
                                      + First implementation. +
                                    • +
                                    + ")); +end temperature_ps; + +function rho_pT "Density as function of temperature and pressure" + extends Modelica.Icons.Function; + input AbsolutePressure p "Pressure"; + input Temperature T "Temperature"; + output Density rho "Density"; + protected + Modelica.Media.Common.GibbsDerivs g + "Dimensionless Gibbs function and derivatives w.r.t. pi and tau"; + SpecificHeatCapacity R "Specific gas constant of water vapor"; +algorithm + R := Modelica.Media.Water.IF97_Utilities.BaseIF97.data.RH2O; + // Region 2 properties + g := Modelica.Media.Water.IF97_Utilities.BaseIF97.Basic.g2(p, T); + rho := p/(R*T*g.pi*g.gpi); + annotation ( + Inline=true, + smoothOrder=2, + Documentation(info=" +

                                    + Density is computed from temperature and pressure using the + IAPWS-IF97 relationship via the Gibbs free energy for region 2. +

                                    + ")); +end rho_pT; + +function pressure_dT + "Computes pressure as a function of density and temperature" + input Density d "Density"; + input Temperature T "Temperature"; + output AbsolutePressure p "Pressure"; +algorithm + p := Modelica.Media.Water.IF97_Utilities.BaseIF97.Inverses.pofdt125( + d=d, + T=T, + reldd=1.0e-8, + region=2); + annotation (Inline=true); +end pressure_dT; + + annotation (Icon(graphics={ + Line( + points={{50,30},{30,10},{50,-10},{30,-30}}, + color={0,0,0}, + smooth=Smooth.Bezier), + Line( + points={{10,30},{-10,10},{10,-10},{-10,-30}}, + color={0,0,0}, + smooth=Smooth.Bezier), + Line( + points={{-30,30},{-50,10},{-30,-10},{-50,-30}}, + color={0,0,0}, + smooth=Smooth.Bezier)}), Documentation(info=" +

                                    + This medium package models water vapor (pure steam, region 2, quality=1). +

                                    +

                                    + Thermodynamic properties are calculated primarily in terms of pressure + and temperature. + For thermodynamic property functions, the IAPWS-IF97 formulations are adapted, + and approximate relationships are provided for commonly used functions to improve + computational efficiency and provide backward compatability. +

                                    +

                                    + Detailed functions from + Modelica.Media.Water.WaterIF97_R2pT are generally used, expect for + AixLib.Media.Steam.specificEnthalpy and + AixLib.Media.Steam.specificEntropy + (both \"forward\" functions), as well as their \"backward\" inverse functions + AixLib.Media.Steam.temperature_ph and + AixLib.Media.Steam.temperature_ps, + which are numerically consistent with the forward functions. + The following modifications were made relative to the + + Modelica.Media.Water.WaterIF97_R2pT medium package: +

                                    +
                                      +
                                    1. Analytic expressions for the derivatives are provided for all thermodynamic property functions.
                                    2. +
                                    3. The implementation is generally simplier in order to increase the likelyhood + of more efficient simulations.
                                    4. +
                                    +

                                    Limitations

                                    +
                                      +
                                    • + The valid temperature range is 100°C ≤ T ≤ 160°C, and the valid + pressure range is 100 kPa ≤ p ≤ 550 kPa. +
                                    • +
                                    • When phase change is required, this model is to be used in combination with + AixLib.Media.Water + for the liquid phase (quality=0). Please note that the maximum temperature for liquid + water is T_max=130°C. This is suitable for real-world condensate + return and boiler feedwater systems, which are typically vented to the atmosphere + with steam contained via steam traps (thus, T_max=100°C for the + condensate or feedwater in properly functioning systems).
                                    • +
                                    +

                                    Applications

                                    +

                                    + This model is intended for first generation district heating systems and other + steam heating processes involving low and medium pressure steam. +

                                    +

                                    References

                                    +

                                    W. Wagner et al., “The IAPWS industrial formulation 1997 for the thermodynamic + properties of water and steam,” J. Eng. Gas Turbines Power, vol. 122, no. + 1, pp. 150–180, 2000. +

                                    + ",revisions=" +
                                      +
                                    • + April 13, 2021, by Kathryn Hinkelman:
                                      + Changed pressure from constant to variable and reduced applicable + pressure-temperature range to improve accuracy of polynomial approximations. +
                                    • +
                                    • + October 30, 2020, by Kathryn Hinkelman:
                                      + Complete new reimplementation to eliminate numerical inefficiencies + and improve accuracy of property function calculations. +
                                    • +
                                    + "), + __Dymola_LockedEditing="Model from IBPSA"); +end Steam; diff --git a/AixLib/Media/Water.mo b/AixLib/Media/Water.mo index ab1e0f3555..b45c41c41d 100644 --- a/AixLib/Media/Water.mo +++ b/AixLib/Media/Water.mo @@ -18,7 +18,7 @@ package Water "Package with model for liquid water with constant density" annotation (Evaluate=true, Dialog(tab="Advanced")); final parameter Boolean standardOrderComponents=true "If true, and reducedX = true, the last element of X will be computed from the other ones"; - Modelica.SIunits.Density d=d_const "Density of medium"; + Modelica.Units.SI.Density d=d_const "Density of medium"; Temperature T(stateSelect= if preferredMediumStates then StateSelect.prefer else StateSelect.default) "Temperature of medium"; @@ -26,32 +26,30 @@ package Water "Package with model for liquid water with constant density" InputMassFraction[nXi] Xi=fill(0, 0) "Structurally independent mass fractions"; InputSpecificEnthalpy h "Specific enthalpy of medium"; - Modelica.SIunits.SpecificInternalEnergy u + Modelica.Units.SI.SpecificInternalEnergy u "Specific internal energy of medium"; - Modelica.SIunits.MassFraction[nX] X={1} + Modelica.Units.SI.MassFraction[nX] X={1} "Mass fractions (= (component mass)/total mass m_i/m)"; - final Modelica.SIunits.SpecificHeatCapacity R=0 + final Modelica.Units.SI.SpecificHeatCapacity R_s=0 "Gas constant (of mixture if applicable)"; - final Modelica.SIunits.MolarMass MM=MM_const + final Modelica.Units.SI.MolarMass MM=MM_const "Molar mass (of mixture or single fluid)"; ThermodynamicState state "Thermodynamic state record for optional functions"; - Modelica.SIunits.Conversions.NonSIunits.Temperature_degC T_degC= - Modelica.SIunits.Conversions.to_degC(T) - "Temperature of medium in [degC]"; - Modelica.SIunits.Conversions.NonSIunits.Pressure_bar p_bar= - Modelica.SIunits.Conversions.to_bar(p) + Modelica.Units.NonSI.Temperature_degC T_degC= + Modelica.Units.Conversions.to_degC(T) "Temperature of medium in [degC]"; + Modelica.Units.NonSI.Pressure_bar p_bar=Modelica.Units.Conversions.to_bar(p) "Absolute pressure of medium in [bar]"; // Local connector definition, used for equation balancing check - connector InputAbsolutePressure = input Modelica.SIunits.AbsolutePressure + connector InputAbsolutePressure = input Modelica.Units.SI.AbsolutePressure "Pressure as input signal connector"; - connector InputSpecificEnthalpy = input Modelica.SIunits.SpecificEnthalpy + connector InputSpecificEnthalpy = input Modelica.Units.SI.SpecificEnthalpy "Specific enthalpy as input signal connector"; - connector InputMassFraction = input Modelica.SIunits.MassFraction + connector InputMassFraction = input Modelica.Units.SI.MassFraction "Mass fraction as input signal connector"; equation @@ -70,199 +68,199 @@ package Water "Package with model for liquid water with constant density" assert(noEvent(p >= 0.0), "Pressure (= " + String(p) + " Pa) of medium \"AixLib.Media.Water\" is negative\n(Temperature = " + String(T) + " K)"); annotation(Documentation(info=" -

                                    -Model with basic thermodynamic properties. -

                                    -

                                    -This base properties model is identical to - -Modelica.Media.Water.ConstantPropertyLiquidWater, -except that the equation -u = cv_const*(T - reference_T) -has been replaced by u=h because -cp_const=cv_const. -

                                    -

                                    -This model provides equation for the following thermodynamic properties: -

                                    - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                    VariableUnitDescription
                                    TKtemperature
                                    pPaabsolute pressure
                                    dkg/m3density
                                    hJ/kgspecific enthalpy
                                    uJ/kgspecific internal energy
                                    Xi[nXi]kg/kgindependent mass fractions m_i/m
                                    RJ/kg.Kgas constant
                                    Mkg/molmolar mass
                                    -")); +

                                    + Model with basic thermodynamic properties. +

                                    +

                                    + This base properties model is identical to + + Modelica.Media.Water.ConstantPropertyLiquidWater, + except that the equation + u = cv_const*(T - reference_T) + has been replaced by u=h because + cp_const=cv_const. +

                                    +

                                    + This model provides equation for the following thermodynamic properties: +

                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                    VariableUnitDescription
                                    TKtemperature
                                    pPaabsolute pressure
                                    dkg/m3density
                                    hJ/kgspecific enthalpy
                                    uJ/kgspecific internal energy
                                    Xi[nXi]kg/kgindependent mass fractions m_i/m
                                    RJ/kg.Kgas constant
                                    Mkg/molmolar mass
                                    + ")); end BaseProperties; function enthalpyOfLiquid "Return the specific enthalpy of liquid" extends Modelica.Icons.Function; - input Modelica.SIunits.Temperature T "Temperature"; - output Modelica.SIunits.SpecificEnthalpy h "Specific enthalpy"; + input Modelica.Units.SI.Temperature T "Temperature"; + output Modelica.Units.SI.SpecificEnthalpy h "Specific enthalpy"; algorithm h := cp_const*(T-reference_T); annotation ( smoothOrder=5, Inline=true, Documentation(info=" -

                                    -Enthalpy of the water. -

                                    -", revisions=" - -")); +

                                    + Enthalpy of the water. +

                                    + ",revisions=" + + ")); end enthalpyOfLiquid; annotation(Documentation(info=" -

                                    -This medium package models liquid water. -

                                    -

                                    -The mass density is computed using a constant value of 995.586 kg/s. -For a medium model in which the density is a function of temperature, use - -AixLib.Media.Specialized.Water.TemperatureDependentDensity which may have considerably higher computing time. -

                                    -

                                    -For the specific heat capacities at constant pressure and at constant volume, -a constant value of 4184 J/(kg K), which corresponds to 20°C -is used. -The figure below shows the relative error of the specific heat capacity that -is introduced by this simplification. -

                                    -

                                    - -

                                    -

                                    -The enthalpy is computed using the convention that h=0 -if T=0 °C. -

                                    -

                                    Limitations

                                    -

                                    -Density, specific heat capacity, thermal conductivity and viscosity are constant. -Water is modeled as an incompressible liquid. -There are no phase changes. -

                                    -", revisions=" -
                                      -
                                    • -September 28, 2020, by Michael Wetter:
                                      -Reformulated BaseProperties to avoid event-triggering assertions.
                                      -This is for -#1401. -
                                    • -
                                    • -October 26, 2018, by Filip Jorissen and Michael Wetter:
                                      -Now printing different messages if temperature is above or below its limit, -and adding instance name as JModelica does not print the full instance name in the assertion. -This is for -#1045. -
                                    • -
                                    • -June 6, 2015, by Michael Wetter:
                                      -Set AbsolutePressure(start=p_default) to avoid -a translation error if - -AixLib.Fluid.Sources.Examples.TraceSubstancesFlowSource -(if used with water instead of air) -is translated in pedantic mode in Dymola 2016. -The reason is that pressures use Medium.p_default as start values, -but - -Modelica.Media.Interfaces.Types -sets a default value of 1E-5. -A similar change has been done for pressure and density. -This fixes -#266. -
                                    • -
                                    • -June 6, 2015, by Michael Wetter:
                                      -Changed type of BaseProperties.T from -Modelica.SIunits.Temperature to Temperature. -Otherwise, it has a different start value than Medium.T, which -causes an error if - -AixLib.Media.Examples.WaterProperties -is translated in pedantic mode. -This fixes -#266. -
                                    • -
                                    • -June 5, 2015, by Michael Wetter:
                                      -Added stateSelect attribute in BaseProperties.T -to allow correct use of preferredMediumState as -described in - -Modelica.Media.Interfaces.PartialMedium, -and set preferredMediumState=false -to keep the same states as were used before. -This is for -#260. -
                                    • -
                                    • -June 5, 2015, by Michael Wetter:
                                      -Removed ThermodynamicState declaration as this lead to -the error -\"Attempting to redeclare record ThermodynamicState when the original was not replaceable.\" -in Dymola 2016 using the pedantic model check. -
                                    • -
                                    • -May 1, 2015, by Michael Wetter:
                                      -Added Inline=true for - -issue 227. -
                                    • -
                                    • -February 25, 2015, by Michael Wetter:
                                      -Removed stateSelect attribute on pressure as this caused - -AixLib.Examples.Tutorial.SpaceCooling.System3 -to fail with the error message -\"differentiated if-then-else was not continuous\". -
                                    • -
                                    • -October 15, 2014, by Michael Wetter:
                                      -Reimplemented media based on -446aa83. -
                                    • -
                                    • -November 15, 2013, by Michael Wetter:
                                      -Complete new reimplementation because the previous version -had the option to add a compressibility to the medium, which -has never been used. -
                                    • -
                                    -"), +

                                    + This medium package models liquid water. +

                                    +

                                    + The mass density is computed using a constant value of 995.586 kg/s. + For a medium model in which the density is a function of temperature, use + + AixLib.Media.Specialized.Water.TemperatureDependentDensity which may have considerably higher computing time. +

                                    +

                                    + For the specific heat capacities at constant pressure and at constant volume, + a constant value of 4184 J/(kg K), which corresponds to 20°C + is used. + The figure below shows the relative error of the specific heat capacity that + is introduced by this simplification. +

                                    +

                                    + \"Relative +

                                    +

                                    + The enthalpy is computed using the convention that h=0 + if T=0 °C. +

                                    +

                                    Limitations

                                    +

                                    + Density, specific heat capacity, thermal conductivity and viscosity are constant. + Water is modeled as an incompressible liquid. + There are no phase changes. +

                                    + ",revisions=" +
                                      +
                                    • + September 28, 2020, by Michael Wetter:
                                      + Reformulated BaseProperties to avoid event-triggering assertions.
                                      + This is for + #1401. +
                                    • +
                                    • + October 26, 2018, by Filip Jorissen and Michael Wetter:
                                      + Now printing different messages if temperature is above or below its limit, + and adding instance name as JModelica does not print the full instance name in the assertion. + This is for + #1045. +
                                    • +
                                    • + June 6, 2015, by Michael Wetter:
                                      + Set AbsolutePressure(start=p_default) to avoid + a translation error if + + AixLib.Fluid.Sources.Examples.TraceSubstancesFlowSource + (if used with water instead of air) + is translated in pedantic mode in Dymola 2016. + The reason is that pressures use Medium.p_default as start values, + but + + Modelica.Media.Interfaces.Types + sets a default value of 1E-5. + A similar change has been done for pressure and density. + This fixes + #266. +
                                    • +
                                    • + June 6, 2015, by Michael Wetter:
                                      + Changed type of BaseProperties.T from + Modelica.Units.SI.Temperature to Temperature. + Otherwise, it has a different start value than Medium.T, which + causes an error if + + AixLib.Media.Examples.WaterProperties + is translated in pedantic mode. + This fixes + #266. +
                                    • +
                                    • + June 5, 2015, by Michael Wetter:
                                      + Added stateSelect attribute in BaseProperties.T + to allow correct use of preferredMediumState as + described in + + Modelica.Media.Interfaces.PartialMedium, + and set preferredMediumState=false + to keep the same states as were used before. + This is for + #260. +
                                    • +
                                    • + June 5, 2015, by Michael Wetter:
                                      + Removed ThermodynamicState declaration as this lead to + the error + \"Attempting to redeclare record ThermodynamicState when the original was not replaceable.\" + in Dymola 2016 using the pedantic model check. +
                                    • +
                                    • + May 1, 2015, by Michael Wetter:
                                      + Added Inline=true for + + issue 227. +
                                    • +
                                    • + February 25, 2015, by Michael Wetter:
                                      + Removed stateSelect attribute on pressure as this caused + + AixLib.Examples.Tutorial.SpaceCooling.System3 + to fail with the error message + \"differentiated if-then-else was not continuous\". +
                                    • +
                                    • + October 15, 2014, by Michael Wetter:
                                      + Reimplemented media based on + 446aa83. +
                                    • +
                                    • + November 15, 2013, by Michael Wetter:
                                      + Complete new reimplementation because the previous version + had the option to add a compressibility to the medium, which + has never been used. +
                                    • +
                                    + "), Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}), graphics={ Polygon( @@ -289,5 +287,6 @@ has never been used. extent={{20,-30},{78,-88}}, lineColor={0,0,0}, fillPattern=FillPattern.Sphere, - fillColor={95,95,95})})); + fillColor={95,95,95})}), + __Dymola_LockedEditing="Model from IBPSA"); end Water; diff --git a/AixLib/Media/package.order b/AixLib/Media/package.order index 6bac831d53..37a695e74d 100644 --- a/AixLib/Media/package.order +++ b/AixLib/Media/package.order @@ -1,5 +1,6 @@ Air AirIncompressible +Steam Water Antifreeze Refrigerants diff --git a/AixLib/Obsolete/BaseClasses/ObsoleteModel.mo b/AixLib/Obsolete/BaseClasses/ObsoleteModel.mo index d019d8b65f..704f4f3ed3 100644 --- a/AixLib/Obsolete/BaseClasses/ObsoleteModel.mo +++ b/AixLib/Obsolete/BaseClasses/ObsoleteModel.mo @@ -8,10 +8,11 @@ partial class ObsoleteModel lineColor={255,0,0}, pattern=LinePattern.Dash, lineThickness=0.5)}), Documentation(info=" -

                                    -This partial class is intended to provide a default icon -for an obsolete model that will be removed from the -corresponding library in a future release. -

                                    -")); +

                                    + This partial class is intended to provide a default icon + for an obsolete model that will be removed from the + corresponding library in a future release. +

                                    + "), + __Dymola_LockedEditing="Model from IBPSA"); end ObsoleteModel; diff --git a/AixLib/Obsolete/DataBase/SolarElectric/package.order b/AixLib/Obsolete/DataBase/SolarElectric/package.order index 6eef2d2b9c..bc5b965064 100644 --- a/AixLib/Obsolete/DataBase/SolarElectric/package.order +++ b/AixLib/Obsolete/DataBase/SolarElectric/package.order @@ -4,4 +4,3 @@ CanadianSolarCS6P250P PVBaseRecord SchuecoSME1 SymphonyEnergySE6M181 - diff --git a/AixLib/Obsolete/Year2019/Fluid/HeatPumps/BaseClasses/CycleHP.mo b/AixLib/Obsolete/Year2019/Fluid/HeatPumps/BaseClasses/CycleHP.mo index 32912cba95..90d8683685 100644 --- a/AixLib/Obsolete/Year2019/Fluid/HeatPumps/BaseClasses/CycleHP.mo +++ b/AixLib/Obsolete/Year2019/Fluid/HeatPumps/BaseClasses/CycleHP.mo @@ -1,7 +1,7 @@ within AixLib.Obsolete.Year2019.Fluid.HeatPumps.BaseClasses; model CycleHP extends AixLib.Obsolete.BaseClasses.ObsoleteModel; - import SI = Modelica.SIunits; + import Modelica.Units.SI; parameter Boolean HPctrlType = true "Capacity control type" annotation(Dialog(group = "Heat Pump cycle", compact = true, descriptionLabel = true), choices(choice=true "On/off heat pump",choice = false "Speed controlled heat pump", @@ -130,31 +130,28 @@ public Modelica.Blocks.Sources.RealExpression realCoP(y=CoP) annotation (Placement( transformation(extent={{-32,-66},{-12,-46}}, rotation=0))); - Modelica.Blocks.Tables.CombiTable2D Qdot_ConTable( + Modelica.Blocks.Tables.CombiTable2Ds Qdot_ConTable( tableName="NoName", fileName="NoName", table=tableQdot_con, - smoothness=smoothness) if - not (capCalcType == 1) - annotation (extent=[-60,40; -40,60], Placement(transformation(extent={{-40,20}, - {-20,40}}))); + smoothness=smoothness) if not (capCalcType == 1) annotation (extent=[-60,40; + -40,60], Placement(transformation(extent={{-40,20},{-20,40}}))); - Modelica.Blocks.Tables.CombiTable2D P_eleTable( + Modelica.Blocks.Tables.CombiTable2Ds P_eleTable( tableName="NoName", fileName="NoName", table=tableP_ele, - smoothness=smoothness) if - not (capCalcType == 1) "Electrical power table" - annotation (extent=[-60,-20; -40,0], Placement(transformation(extent={{-40,-10}, - {-20,10}}))); + smoothness=smoothness) if not (capCalcType == 1) "Electrical power table" + annotation (extent=[-60,-20; -40,0], Placement(transformation(extent={{-40, + -10},{-20,10}}))); public Modelica.Blocks.Sources.RealExpression realT_evaIn(y=T_evaInCorr) annotation (Placement(transformation(extent={{-94,26},{-74,46}}, rotation=0))); public Modelica.Blocks.Sources.RealExpression realT_conOut(y=T_conOutCorr) annotation (Placement(transformation(extent={{-94,6},{-74,26}}, rotation=0))); - Modelica.Blocks.Continuous.FirstOrder firstOrder(T=timeConstantCycle) if - PT1_cycle + Modelica.Blocks.Continuous.FirstOrder firstOrder(T=timeConstantCycle) + if PT1_cycle annotation (Placement(transformation(extent={{42,-6},{62,14}}))); public Modelica.Blocks.Math.Product productPelCoP1 annotation (Placement( diff --git a/AixLib/Obsolete/Year2019/Fluid/HeatPumps/Examples/HeatPumpDetailed.mo b/AixLib/Obsolete/Year2019/Fluid/HeatPumps/Examples/HeatPumpDetailed.mo index e675c3c9db..17281fc51d 100644 --- a/AixLib/Obsolete/Year2019/Fluid/HeatPumps/Examples/HeatPumpDetailed.mo +++ b/AixLib/Obsolete/Year2019/Fluid/HeatPumps/Examples/HeatPumpDetailed.mo @@ -64,7 +64,7 @@ model HeatPumpDetailed uHigh=273.15 + 40) annotation (Placement(transformation(extent={{64,50},{44,70}}))); Modelica.Blocks.Sources.Sine sine( - freqHz=1/3600, + f=1/3600, amplitude=3000, offset=3000) annotation (Placement(transformation(extent={{76,26},{84,34}}))); diff --git a/AixLib/Obsolete/Year2019/Fluid/HeatPumps/HeatPumpDetailed.mo b/AixLib/Obsolete/Year2019/Fluid/HeatPumps/HeatPumpDetailed.mo index 80928aced8..6843702221 100644 --- a/AixLib/Obsolete/Year2019/Fluid/HeatPumps/HeatPumpDetailed.mo +++ b/AixLib/Obsolete/Year2019/Fluid/HeatPumps/HeatPumpDetailed.mo @@ -2,7 +2,7 @@ model HeatPumpDetailed "Heat pump model with good level of detail. Mainly fed with manufacturing data." extends AixLib.Obsolete.BaseClasses.ObsoleteModel; - import SI = Modelica.SIunits; + import Modelica.Units.SI; parameter Boolean HPctrlType=true "Capacity control type" annotation (Dialog( group="Heat Pump cycle", compact=true, @@ -191,8 +191,8 @@ model HeatPumpDetailed origin={130,-50}, extent={{-10,-10},{10,10}}, rotation=90))); - Modelica.Blocks.Interfaces.RealOutput P_eleOut(unit="W") if - P_eleOutput + Modelica.Blocks.Interfaces.RealOutput P_eleOut(unit="W") + if P_eleOutput "Electical power consumption" annotation (Placement(transformation( extent={{-10,-10},{10,10}}, rotation=270, @@ -280,8 +280,8 @@ public Modelica.Thermal.HeatTransfer.Components.ThermalConductor heatConv(G=R_loss) "Heat flow through condenser casing with a given conductance" annotation (Placement(transformation(extent={{80,52},{100,72}}))); - Modelica.Blocks.Interfaces.RealInput T_amb if - heatLosses_con + Modelica.Blocks.Interfaces.RealInput T_amb + if heatLosses_con "Ambient temperatur input signal" annotation (Placement(transformation( extent={{-10,-10},{10,10}}, rotation=270, diff --git a/AixLib/Obsolete/Year2019/Fluid/HeatPumps/HeatPumpSimple.mo b/AixLib/Obsolete/Year2019/Fluid/HeatPumps/HeatPumpSimple.mo index eb3a84d163..86e568ed90 100644 --- a/AixLib/Obsolete/Year2019/Fluid/HeatPumps/HeatPumpSimple.mo +++ b/AixLib/Obsolete/Year2019/Fluid/HeatPumps/HeatPumpSimple.mo @@ -58,10 +58,13 @@ model HeatPumpSimple Modelica.Thermal.HeatTransfer.Sources.PrescribedHeatFlow HeatFlowEvaporator "Heat flow on the source side" annotation(Placement(transformation(extent={{4,-4},{ -4,4}}, origin={-46,-50}))); - Modelica.Blocks.Tables.CombiTable2D PowerTable(table = tablePower) - "Calculates electric power based on temperature in source and sink" annotation(Placement(transformation(extent = {{-52, 20}, {-32, 40}}))); - Modelica.Blocks.Tables.CombiTable2D HeatFlowCondenserTable(table = tableHeatFlowCondenser) - "Calculates heat flow based on temperature in source and sink" annotation(Placement(transformation(extent = {{-52, -12}, {-32, 8}}))); + Modelica.Blocks.Tables.CombiTable2Ds PowerTable(table=tablePower) + "Calculates electric power based on temperature in source and sink" + annotation (Placement(transformation(extent={{-52,20},{-32,40}}))); + Modelica.Blocks.Tables.CombiTable2Ds HeatFlowCondenserTable(table= + tableHeatFlowCondenser) + "Calculates heat flow based on temperature in source and sink" + annotation (Placement(transformation(extent={{-52,-12},{-32,8}}))); Modelica.Blocks.Logical.Switch SwitchHeatFlowCondenser "Switch to deactivate heat flow when off" annotation(Placement(transformation(extent = {{14, -20}, {34, 0}}))); Modelica.Blocks.Sources.Constant constZero2(k = 0) @@ -73,8 +76,8 @@ model HeatPumpSimple Modelica.Blocks.Math.Feedback feedbackHeatFlowEvaporator "Calculates evaporator heat flow with total energy balance" annotation(Placement(transformation(extent = {{10, -60}, {-10, -40}}))); Modelica.Blocks.Interfaces.RealOutput Power "Connector of Real output signal" annotation(Placement(transformation(extent = {{-10, -10}, {10, 10}}, rotation = 270, origin = {0, -90}))); - parameter Modelica.SIunits.Volume VolumeEvaporator = 0.01 "Volume im m3"; - parameter Modelica.SIunits.Volume VolumeCondenser = 0.01 "Volume im m3"; + parameter Modelica.Units.SI.Volume VolumeEvaporator=0.01 "Volume im m3"; + parameter Modelica.Units.SI.Volume VolumeCondenser=0.01 "Volume im m3"; parameter Real tablePower[:, :] = fill(0.0, 0, 2) "Table matrix (grid u1 = first column, grid u2 = first row; e.g., table=[0,0;0,1])"; parameter Real tableHeatFlowCondenser[:, :] = fill(0.0, 0, 2) diff --git a/AixLib/Obsolete/Year2019/Fluid/Storage/StorageWall.mo b/AixLib/Obsolete/Year2019/Fluid/Storage/StorageWall.mo index 20e633951a..a0b93ae068 100644 --- a/AixLib/Obsolete/Year2019/Fluid/Storage/StorageWall.mo +++ b/AixLib/Obsolete/Year2019/Fluid/Storage/StorageWall.mo @@ -8,9 +8,12 @@ model StorageWall "Sandwich wall construction for heat storages" convOutside(hCon=hConOut, A=AOutside), loadIns(C=cIns*(rhoIns)*(AIns)*(sIns))); - parameter Modelica.SIunits.Length height=0.15 "Height of layer" annotation(Dialog(tab="Geometrical Parameters")); - parameter Modelica.SIunits.Area AIns=(D1+2*sWall)*Modelica.Constants.pi * height; - parameter Modelica.SIunits.Area AOutside=(D1+2*(sWall+sIns))*Modelica.Constants.pi * height; + parameter Modelica.Units.SI.Length height=0.15 "Height of layer" + annotation (Dialog(tab="Geometrical Parameters")); + parameter Modelica.Units.SI.Area AIns=(D1 + 2*sWall)*Modelica.Constants.pi* + height; + parameter Modelica.Units.SI.Area AOutside=(D1 + 2*(sWall + sIns))*Modelica.Constants.pi + *height; equation diff --git a/AixLib/Obsolete/Year2019/Utilities/HeatTransfer/HeatToStar.mo b/AixLib/Obsolete/Year2019/Utilities/HeatTransfer/HeatToStar.mo index 5645be1f15..c9f7f57434 100644 --- a/AixLib/Obsolete/Year2019/Utilities/HeatTransfer/HeatToStar.mo +++ b/AixLib/Obsolete/Year2019/Utilities/HeatTransfer/HeatToStar.mo @@ -3,8 +3,8 @@ model HeatToStar "Adaptor for approximative longwave radiation exchange" extends AixLib.Obsolete.BaseClasses.ObsoleteModel; Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a Therm annotation(Placement(transformation(extent = {{-102, -10}, {-82, 10}}))); AixLib.Utilities.Interfaces.RadPort Star annotation (Placement(transformation(extent={{81,-10},{101,10}}))); - parameter Modelica.SIunits.Area A(min=0) "Area of radiation exchange"; - parameter Modelica.SIunits.Emissivity eps = 0.95 "Emissivity"; + parameter Modelica.Units.SI.Area A(min=0) "Area of radiation exchange"; + parameter Modelica.Units.SI.Emissivity eps=0.95 "Emissivity"; equation Therm.Q_flow + Star.Q_flow = 0; diff --git a/AixLib/Obsolete/Year2019/Utilities/Sources/InternalGains/Humans/HumanSensibleHeatAreaSpecific.mo b/AixLib/Obsolete/Year2019/Utilities/Sources/InternalGains/Humans/HumanSensibleHeatAreaSpecific.mo index 730f716c35..b20f64b091 100644 --- a/AixLib/Obsolete/Year2019/Utilities/Sources/InternalGains/Humans/HumanSensibleHeatAreaSpecific.mo +++ b/AixLib/Obsolete/Year2019/Utilities/Sources/InternalGains/Humans/HumanSensibleHeatAreaSpecific.mo @@ -2,12 +2,15 @@ within AixLib.Obsolete.Year2019.Utilities.Sources.InternalGains.Humans; model HumanSensibleHeatAreaSpecific "Model for sensible heat output area specific" extends AixLib.Obsolete.BaseClasses.ObsoleteModel; //Internal Gains People - parameter Modelica.SIunits.HeatFlux InternalGainsPeopleSpecific = 1.0 "Specific Heat Flow from people to the environment" annotation(Dialog(descriptionLabel = true)); + parameter Modelica.Units.SI.HeatFlux InternalGainsPeopleSpecific=1.0 + "Specific Heat Flow from people to the environment" + annotation (Dialog(descriptionLabel=true)); parameter Real RatioConvectiveHeat = 0.5 "Ratio of convective heat from overall heat output" annotation(Dialog(descriptionLabel = true)); - parameter Modelica.SIunits.Area RoomArea=20 "Area of room" annotation(Dialog(descriptionLabel = true)); - parameter Modelica.SIunits.Temperature T0 = Modelica.SIunits.Conversions.from_degC(22) - "Initial temperature"; + parameter Modelica.Units.SI.Area RoomArea=20 "Area of room" + annotation (Dialog(descriptionLabel=true)); + parameter Modelica.Units.SI.Temperature T0= + Modelica.Units.Conversions.from_degC(22) "Initial temperature"; Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a ConvHeat annotation(Placement(transformation(extent = {{80, 40}, {100, 60}}))); AixLib.Utilities.HeatTransfer.HeatToRad RadiationConvertor(eps=Emissivity_Human, use_A_in=true) annotation (Placement(transformation(extent={{48,-22},{72,2}}))); AixLib.Utilities.Interfaces.RadPort RadHeat annotation (Placement(transformation(extent={{80,-20},{100,0}}))); @@ -29,9 +32,11 @@ model HumanSensibleHeatAreaSpecific "Model for sensible heat output area specifi "Divides total heat by the Heat Output per Person to get number of persons" annotation (Placement(transformation(extent={{-46,-54},{-34,-42}}))); protected - parameter Modelica.SIunits.Area SurfaceArea_Human = 2; + parameter Modelica.Units.SI.Area SurfaceArea_Human=2; parameter Real Emissivity_Human = 0.98; - parameter Modelica.SIunits.HeatFlowRate HeatPerPerson = 70 "Average Heat Flow per person taken from DIN V 18599-10" annotation(Dialog(descriptionLabel = true)); + parameter Modelica.Units.SI.HeatFlowRate HeatPerPerson=70 + "Average Heat Flow per person taken from DIN V 18599-10" + annotation (Dialog(descriptionLabel=true)); Modelica.Thermal.HeatTransfer.Sources.PrescribedHeatFlow ConvectiveHeat(T_ref = T0) annotation(Placement(transformation(extent = {{18, 20}, {42, 44}}))); Modelica.Thermal.HeatTransfer.Sources.PrescribedHeatFlow RadiativeHeat(T_ref = T0) annotation(Placement(transformation(extent = {{18, -20}, {42, 4}}))); equation diff --git a/AixLib/Obsolete/Year2019/Utilities/Sources/InternalGains/Humans/HumanSensibleHeat_VDI2078.mo b/AixLib/Obsolete/Year2019/Utilities/Sources/InternalGains/Humans/HumanSensibleHeat_VDI2078.mo index 80c17cb457..eda94949aa 100644 --- a/AixLib/Obsolete/Year2019/Utilities/Sources/InternalGains/Humans/HumanSensibleHeat_VDI2078.mo +++ b/AixLib/Obsolete/Year2019/Utilities/Sources/InternalGains/Humans/HumanSensibleHeat_VDI2078.mo @@ -19,8 +19,8 @@ model HumanSensibleHeat_VDI2078 "Model for sensible heat output after VDI 2078" Modelica.Blocks.Math.Gain Nr_People(k = NrPeople) annotation(Placement(transformation(extent = {{-66, -26}, {-54, -14}}))); Modelica.Blocks.Math.Gain SurfaceArea_People(k = SurfaceArea_Human) annotation(Placement(transformation(extent={{16,-54}, {28,-42}}))); - parameter Modelica.SIunits.Temperature T0 = Modelica.SIunits.Conversions.from_degC(22) - "Initial temperature"; + parameter Modelica.Units.SI.Temperature T0= + Modelica.Units.Conversions.from_degC(22) "Initial temperature"; Modelica.Blocks.Nonlinear.Limiter limiter(uMax = 1e+23, uMin=1) annotation(Placement(transformation(extent={{-18,-58}, {2,-38}}))); Modelica.Blocks.Math.Gain gain(k = RatioConvectiveHeat) annotation(Placement(transformation(extent = {{6, 28}, {14, 36}}))); @@ -31,12 +31,18 @@ model HumanSensibleHeat_VDI2078 "Model for sensible heat output after VDI 2078" rotation=90, origin={60,32}))); protected - parameter Modelica.SIunits.Area SurfaceArea_Human = 2; + parameter Modelica.Units.SI.Area SurfaceArea_Human=2; parameter Real Emissivity_Human = 0.98; Modelica.Thermal.HeatTransfer.Sources.PrescribedHeatFlow ConvectiveHeat(T_ref = T0) annotation(Placement(transformation(extent={{18,20}, {42,44}}))); Modelica.Thermal.HeatTransfer.Sources.PrescribedHeatFlow RadiativeHeat(T_ref = T0) annotation(Placement(transformation(extent = {{18, -20}, {42, 4}}))); - Modelica.Blocks.Tables.CombiTable1D HeatOutput(table = [10, 100, 125, 155; 18, 100, 125, 155; 20, 95, 115, 140; 22, 90, 105, 120; 23, 85, 100, 115; 24, 75, 95, 110; 25, 75, 85, 105; 26, 70, 85, 95; 35, 70, 85, 95], smoothness = Modelica.Blocks.Types.Smoothness.LinearSegments, tableOnFile = false, columns = {ActivityType}) annotation(Placement(transformation(extent = {{-60, 40}, {-40, 60}}))); + Modelica.Blocks.Tables.CombiTable1Dv HeatOutput( + table=[10,100,125,155; 18,100,125,155; 20,95,115,140; 22,90,105,120; 23,85, + 100,115; 24,75,95,110; 25,75,85,105; 26,70,85,95; 35,70,85,95], + smoothness=Modelica.Blocks.Types.Smoothness.LinearSegments, + tableOnFile=false, + columns={ActivityType}) + annotation (Placement(transformation(extent={{-60,40},{-40,60}}))); equation connect(RadiativeHeat.port, RadiationConvertor.convPort) annotation (Line( points={{42,-8},{44,-8},{44,-12},{48,-12},{48,-10},{48,-10}}, diff --git a/AixLib/Obsolete/Year2019/Utilities/Sources/InternalGains/Humans/HumanTotalHeat_VDI2078.mo b/AixLib/Obsolete/Year2019/Utilities/Sources/InternalGains/Humans/HumanTotalHeat_VDI2078.mo index bd8057d191..b4fa1e00e1 100644 --- a/AixLib/Obsolete/Year2019/Utilities/Sources/InternalGains/Humans/HumanTotalHeat_VDI2078.mo +++ b/AixLib/Obsolete/Year2019/Utilities/Sources/InternalGains/Humans/HumanTotalHeat_VDI2078.mo @@ -12,14 +12,14 @@ model HumanTotalHeat_VDI2078 "Model for sensible and latent heat output after VD Modelica.Blocks.Math.MultiProduct productLatentHeatOutput(nu=2) annotation (Placement(transformation(extent={{-26,42},{-6,62}}))); protected - Modelica.Blocks.Tables.CombiTable1D MoistureOutput( + Modelica.Blocks.Tables.CombiTable1Dv MoistureOutput( smoothness=Modelica.Blocks.Types.Smoothness.LinearSegments, tableOnFile=false, columns={ActivityType}, - table=[10,35,95,165; 18,35,95,165; 20,35,110,185; 22,40,125,215; 23,50,135,225; - 24,60,140,230; 25,60,145,240; 26,65,150,250; 35,65,150,250]) + table=[10,35,95,165; 18,35,95,165; 20,35,110,185; 22,40,125,215; 23,50,135, + 225; 24,60,140,230; 25,60,145,240; 26,65,150,250; 35,65,150,250]) annotation (Placement(transformation(extent={{-60,70},{-40,90}}))); - Modelica.Blocks.Tables.CombiTable1D HeatOutputLatent( + Modelica.Blocks.Tables.CombiTable1Dv HeatOutputLatent( smoothness=Modelica.Blocks.Types.Smoothness.LinearSegments, tableOnFile=false, columns={ActivityType}, diff --git a/AixLib/Obsolete/Year2020/FastHVAC/Storage/HeatStorage.mo b/AixLib/Obsolete/Year2020/FastHVAC/Storage/HeatStorage.mo index dc16a562a9..90c791a008 100644 --- a/AixLib/Obsolete/Year2020/FastHVAC/Storage/HeatStorage.mo +++ b/AixLib/Obsolete/Year2020/FastHVAC/Storage/HeatStorage.mo @@ -19,12 +19,14 @@ model HeatStorage "Simple model of a heat storage" mediumHC2=AixLib.Obsolete.YearIndependent.FastHVAC.Media.WaterSimple() "Mediums charastics for HC2 (heat capacity, density, thermal conductivity)" annotation (Dialog(group="Medium"), choicesAllMatching); - parameter Modelica.SIunits.Temperature T_start=323.15 - "Start temperature of medium" annotation(Dialog(tab="Initialisation")); - parameter Modelica.SIunits.Temperature T_start_wall=293.15 - "Starting Temperature of wall in K" annotation(Dialog(tab="Initialisation")); - parameter Modelica.SIunits.Temperature T_start_ins=293.15 - "Starting Temperature of insulation in K" annotation(Dialog(tab="Initialisation")); + parameter Modelica.Units.SI.Temperature T_start=323.15 + "Start temperature of medium" annotation (Dialog(tab="Initialisation")); + parameter Modelica.Units.SI.Temperature T_start_wall=293.15 + "Starting Temperature of wall in K" + annotation (Dialog(tab="Initialisation")); + parameter Modelica.Units.SI.Temperature T_start_ins=293.15 + "Starting Temperature of insulation in K" + annotation (Dialog(tab="Initialisation")); /* ******************************************************************* HeatStorage Parameters @@ -33,22 +35,26 @@ model HeatStorage "Simple model of a heat storage" inner parameter Real tau(min=0) = 1000 "Time constant for mixing"; inner parameter Integer n(min=3) = 3 "Model assumptions Number of Layers"; - parameter Modelica.SIunits.CoefficientOfHeatTransfer hConIn=1500 "Heat transfer coefficient at the inner wall"; - parameter Modelica.SIunits.CoefficientOfHeatTransfer hConOut=15 "Heat transfer coefficient at the outer wall"; + parameter Modelica.Units.SI.CoefficientOfHeatTransfer hConIn=1500 + "Heat transfer coefficient at the inner wall"; + parameter Modelica.Units.SI.CoefficientOfHeatTransfer hConOut=15 + "Heat transfer coefficient at the outer wall"; inner parameter AixLib.DataBase.Storage.BufferStorageBaseDataDefinition data= AixLib.DataBase.Storage.Generic_New_2000l() "Storage data" annotation (choicesAllMatching); - Modelica.SIunits.Energy Heat_loss; + Modelica.Units.SI.Energy Heat_loss; /* ***************Heating Coil Section********************************/ parameter Boolean use_heatingCoil1=true "Use Heating Coil1?" annotation(Dialog(tab="Heating Coils and Rod")); parameter Boolean use_heatingCoil2=true "Use Heating Coil2?" annotation(Dialog(tab="Heating Coils and Rod")); parameter Boolean use_heatingRod=true "Use Heating Rod?" annotation(Dialog(tab="Heating Coils and Rod")); - parameter Modelica.SIunits.CoefficientOfHeatTransfer hConHC1=20 "Model assumptions heat transfer coefficient HC1 <-> Heating Water" - annotation(Dialog(enable=use_heatingCoil1, tab="Heating Coils and Rod")); - parameter Modelica.SIunits.CoefficientOfHeatTransfer hConHC2=400 "Model assumptions heat transfer coefficient HC2 <-> Heating Water" - annotation(Dialog(enable=use_heatingCoil2, tab="Heating Coils and Rod")); + parameter Modelica.Units.SI.CoefficientOfHeatTransfer hConHC1=20 + "Model assumptions heat transfer coefficient HC1 <-> Heating Water" + annotation (Dialog(enable=use_heatingCoil1, tab="Heating Coils and Rod")); + parameter Modelica.Units.SI.CoefficientOfHeatTransfer hConHC2=400 + "Model assumptions heat transfer coefficient HC2 <-> Heating Water" + annotation (Dialog(enable=use_heatingCoil2, tab="Heating Coils and Rod")); parameter Boolean Up_to_down_HC1 = true "Heating Coil 1 orientation from up to down?" annotation(Dialog(enable = use_heatingCoil1,tab="Heating Coils and Rod")); @@ -57,8 +63,9 @@ model HeatStorage "Simple model of a heat storage" annotation(Dialog(enable = use_heatingCoil2,tab="Heating Coils and Rod")); parameter Boolean calcHCon=true "Use calculated value for inside heat transfer coefficient" annotation(Dialog(tab="Heating Coils and Rod")); - parameter Modelica.SIunits.CoefficientOfHeatTransfer hConIn_const=30 "Fix value for heat transfer coefficient inside pipe" - annotation(Dialog(enable=not calcHCon, tab="Heating Coils and Rod")); + parameter Modelica.Units.SI.CoefficientOfHeatTransfer hConIn_const=30 + "Fix value for heat transfer coefficient inside pipe" + annotation (Dialog(enable=not calcHCon, tab="Heating Coils and Rod")); // parameter Modelica.SIunits.Length d_HC1=0.02 "Inner diameter of HC1" // annotation(Dialog(enable = use_heatingCoil1,tab="Heating Coils and Rod")); // parameter Modelica.SIunits.Length d_HC2=0.02 "Inner diameter of HC2" @@ -123,23 +130,23 @@ public annotation (Placement(transformation(extent={{98,44},{118,64}}))); AixLib.Obsolete.YearIndependent.FastHVAC.Interfaces.EnthalpyPort_a - port_HC1_in if use_heatingCoil1 + port_HC1_in if use_heatingCoil1 "Fluid connector a (positive design flow direction is from port_a to port_b)" annotation (Placement(transformation(extent={{-110,70},{-90,90}}), iconTransformation(extent={{-88,52},{-72,68}}))); AixLib.Obsolete.YearIndependent.FastHVAC.Interfaces.EnthalpyPort_b - port_HC1_out if use_heatingCoil1 + port_HC1_out if use_heatingCoil1 "Fluid connector b (positive design flow direction is from port_a to port_b)" annotation (Placement(transformation(extent={{-110,30},{-90,50}}), iconTransformation(extent={{-90,12},{-74,28}}))); AixLib.Obsolete.YearIndependent.FastHVAC.Interfaces.EnthalpyPort_a - port_HC2_in if use_heatingCoil2 + port_HC2_in if use_heatingCoil2 "Fluid connector a (positive design flow direction is from port_a to port_b)" annotation (Placement(transformation(extent={{-110,-50},{-90,-30}}), iconTransformation(extent={{-90,-26},{-76,-12}}))); AixLib.Obsolete.YearIndependent.FastHVAC.Interfaces.EnthalpyPort_b - port_HC2_out if use_heatingCoil2 + port_HC2_out if use_heatingCoil2 "Fluid connector b (positive design flow direction is from port_a to port_b)" annotation (Placement(transformation(extent={{-110,-90},{-90,-70}}), iconTransformation(extent={{-90,-66},{-76,-52}}))); diff --git a/AixLib/Obsolete/Year2020/ThermalZones/HighOrder/Components/Walls/Wall_ASHRAE140.mo b/AixLib/Obsolete/Year2020/ThermalZones/HighOrder/Components/Walls/Wall_ASHRAE140.mo index 4aacf30e2f..ad53918f15 100644 --- a/AixLib/Obsolete/Year2020/ThermalZones/HighOrder/Components/Walls/Wall_ASHRAE140.mo +++ b/AixLib/Obsolete/Year2020/ThermalZones/HighOrder/Components/Walls/Wall_ASHRAE140.mo @@ -19,10 +19,10 @@ model Wall_ASHRAE140 "Wall modell for ASHRAE 140 with absorbtion of solar radiat "Type of wall" annotation(Dialog(group = "Structure of wall layers"), choicesAllMatching = true, Placement(transformation(extent={{2,76},{22,96}}))); - parameter Modelica.SIunits.Length wall_length=2 "Length of wall" - annotation(Dialog(group="Room Geometry")); - parameter Modelica.SIunits.Height wall_height=2 "Height of wall" - annotation(Dialog(group="Room Geometry")); + parameter Modelica.Units.SI.Length wall_length=2 "Length of wall" + annotation (Dialog(group="Room Geometry")); + parameter Modelica.Units.SI.Height wall_height=2 "Height of wall" + annotation (Dialog(group="Room Geometry")); // Surface parameters parameter Real solar_absorptance=0.25 @@ -38,11 +38,12 @@ model Wall_ASHRAE140 "Wall modell for ASHRAE 140 with absorbtion of solar radiat choice=3 "Custom hCon (constant)", radioButtons=true)); - parameter Modelica.SIunits.CoefficientOfHeatTransfer hCon_const=25 + parameter Modelica.Units.SI.CoefficientOfHeatTransfer hCon_const=25 "Custom convective heat transfer coefficient (just for manual selection, not recommended)" - annotation(Dialog(tab="Surface Parameters", group= - "Outside surface", enable= - calcMethodOut == 3 and outside)); + annotation (Dialog( + tab="Surface Parameters", + group="Outside surface", + enable=calcMethodOut == 3 and outside)); parameter AixLib.DataBase.Surfaces.RoughnessForHT.PolynomialCoefficients_ASHRAEHandbook surfaceType = AixLib.DataBase.Surfaces.RoughnessForHT.Brick_RoughPlaster() @@ -71,7 +72,8 @@ model Wall_ASHRAE140 "Wall modell for ASHRAE 140 with absorbtion of solar radiat AixLib.DataBase.WindowsDoors.Simple.WindowSimple_EnEV2009() "Choose a window type from the database" annotation(Dialog( tab="Window", enable = withWindow and outside),choicesAllMatching= true); - parameter Modelica.SIunits.Area windowarea=2 "Area of window" annotation(Dialog( tab="Window", enable = withWindow and outside)); + parameter Modelica.Units.SI.Area windowarea=2 "Area of window" + annotation (Dialog(tab="Window", enable=withWindow and outside)); parameter Boolean withSunblind = false "enable support of sunblinding?" annotation(Dialog(tab = "Window", enable = outside and withWindow)); parameter Real Blinding = 0 "blinding factor: 0 means total blocking of solar irradiation" annotation(Dialog(tab = "Window", enable = withWindow and outside and withSunblind)); @@ -79,36 +81,40 @@ model Wall_ASHRAE140 "Wall modell for ASHRAE 140 with absorbtion of solar radiat "Minimum specific total solar radiation in W/m2 for blinding becoming active (see also TOutAirLimit)" annotation(Dialog(tab="Window", enable=withWindow and outside and withSunblind)); - parameter Modelica.SIunits.Temperature TOutAirLimit if withWindow and outside and withSunblind - "Temperature at which sunblind closes (see also LimitSolIrr)" - annotation(Dialog(tab = "Window", enable = withWindow and outside and withSunblind)); + parameter Modelica.Units.SI.Temperature TOutAirLimit + if withWindow and outside and withSunblind + "Temperature at which sunblind closes (see also LimitSolIrr)" annotation ( + Dialog(tab="Window", enable=withWindow and outside and withSunblind)); // door parameters parameter Boolean withDoor = false "Choose if the wall has got a door" annotation(Dialog(tab="Door")); - parameter Modelica.SIunits.CoefficientOfHeatTransfer U_door=1.8 + parameter Modelica.Units.SI.CoefficientOfHeatTransfer U_door=1.8 "Thermal transmission coefficient of door" - annotation (Dialog(tab="Door", enable = withDoor)); + annotation (Dialog(tab="Door", enable=withDoor)); - parameter Modelica.SIunits.Emissivity eps_door = 0.9 - "Solar emissivity of door material" annotation (Dialog(tab="Door", enable = withDoor)); + parameter Modelica.Units.SI.Emissivity eps_door=0.9 + "Solar emissivity of door material" + annotation (Dialog(tab="Door", enable=withDoor)); - parameter Modelica.SIunits.Length door_height=2 annotation(Dialog(tab="Door", enable = withDoor)); - parameter Modelica.SIunits.Length door_width=1 annotation(Dialog( tab="Door", enable = withDoor)); + parameter Modelica.Units.SI.Length door_height=2 + annotation (Dialog(tab="Door", enable=withDoor)); + parameter Modelica.Units.SI.Length door_width=1 + annotation (Dialog(tab="Door", enable=withDoor)); // Calculation of clearance - final parameter Modelica.SIunits.Area clearance= - if not (outside) and withDoor then door_height*door_width else - if outside and withDoor and withWindow then (windowarea + door_height*door_width) else - if outside and withWindow then windowarea else - if outside and withDoor then door_height*door_width else - 0 "Wall clearance"; + final parameter Modelica.Units.SI.Area clearance=if not (outside) and + withDoor then door_height*door_width else if outside and withDoor and + withWindow then (windowarea + door_height*door_width) else if outside + and withWindow then windowarea else if outside and withDoor then + door_height*door_width else 0 "Wall clearance"; // Initial temperature - parameter Modelica.SIunits.Temperature T0 = Modelica.SIunits.Conversions.from_degC(20) - "Initial temperature" annotation(Dialog(tab="Initialization")); + parameter Modelica.Units.SI.Temperature T0= + Modelica.Units.Conversions.from_degC(20) "Initial temperature" + annotation (Dialog(tab="Initialization")); // COMPONENT PART @@ -125,7 +131,7 @@ public heatConv(calcMethod=2)) "Wall" annotation (Placement(transformation(extent={{-20,14},{2,34}}))); Utilities.Interfaces.SolarRad_in - SolarRadiationPort if outside annotation ( + SolarRadiationPort if outside annotation ( Placement(transformation(extent={{-116,79},{-96,99}}), iconTransformation(extent={{-36,100},{-16,120}}))); Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a port_outside @@ -197,7 +203,7 @@ public Window window( T0=T0, windowarea=windowarea, - WindowType=WindowType) if withWindow and outside + WindowType=WindowType) if withWindow and outside annotation (Placement(transformation(extent={{-9,-42},{11,-22}}))); equation diff --git a/AixLib/Obsolete/Year2020/ThermalZones/HighOrder/Rooms/MFD/CellarAttic/Attic_Ro2Lf1.mo b/AixLib/Obsolete/Year2020/ThermalZones/HighOrder/Rooms/MFD/CellarAttic/Attic_Ro2Lf1.mo index 81ea5dd5c5..29637594de 100644 --- a/AixLib/Obsolete/Year2020/ThermalZones/HighOrder/Rooms/MFD/CellarAttic/Attic_Ro2Lf1.mo +++ b/AixLib/Obsolete/Year2020/ThermalZones/HighOrder/Rooms/MFD/CellarAttic/Attic_Ro2Lf1.mo @@ -11,15 +11,30 @@ model Attic_Ro2Lf1 "WSchV_1995", choice = 4 "WSchV_1984", radioButtons = true)); // Room geometry - parameter Modelica.SIunits.Length room_length = 10.24 "length" annotation(Dialog(group = "Room geometry", descriptionLabel = true)); - parameter Modelica.SIunits.Length room_width = 17.01 "width" annotation(Dialog(group = "Room geometry", descriptionLabel = true)); - parameter Modelica.SIunits.Length roof_width1 = 5.7 "wRO1" annotation(Dialog(group = "Room geometry", absoluteWidth = 25, joinNext = true, descriptionLabel = true)); - parameter Modelica.SIunits.Length roof_width2 = 5.7 "wRO2" annotation(Dialog(group = "Room geometry", absoluteWidth = 25, descriptionLabel = true)); - parameter Modelica.SIunits.Angle alfa = Modelica.SIunits.Conversions.from_deg(120) "alfa" annotation(Dialog(group = "Room geometry", descriptionLabel = true)); - parameter Modelica.SIunits.Temperature T0_air = 283.15 "Air" annotation(Dialog(tab = "Initial temperatures", descriptionLabel = true)); - parameter Modelica.SIunits.Temperature T0_RO1 = 282.15 "RO1" annotation(Dialog(tab = "Initial temperatures", descriptionLabel = true)); - parameter Modelica.SIunits.Temperature T0_RO2 = 282.15 "RO2" annotation(Dialog(tab = "Initial temperatures", descriptionLabel = true)); - parameter Modelica.SIunits.Temperature T0_FL = 284.15 "FL" annotation(Dialog(tab = "Initial temperatures", descriptionLabel = true)); + parameter Modelica.Units.SI.Length room_length=10.24 "length" + annotation (Dialog(group="Room geometry", descriptionLabel=true)); + parameter Modelica.Units.SI.Length room_width=17.01 "width" + annotation (Dialog(group="Room geometry", descriptionLabel=true)); + parameter Modelica.Units.SI.Length roof_width1=5.7 "wRO1" annotation (Dialog( + group="Room geometry", + absoluteWidth=25, + joinNext=true, + descriptionLabel=true)); + parameter Modelica.Units.SI.Length roof_width2=5.7 "wRO2" annotation (Dialog( + group="Room geometry", + absoluteWidth=25, + descriptionLabel=true)); + parameter Modelica.Units.SI.Angle alfa=Modelica.Units.Conversions.from_deg( + 120) "alfa" + annotation (Dialog(group="Room geometry", descriptionLabel=true)); + parameter Modelica.Units.SI.Temperature T0_air=283.15 "Air" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + parameter Modelica.Units.SI.Temperature T0_RO1=282.15 "RO1" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + parameter Modelica.Units.SI.Temperature T0_RO2=282.15 "RO2" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + parameter Modelica.Units.SI.Temperature T0_FL=284.15 "FL" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); // Outer walls properties parameter Real solar_absorptance_RO = 0.25 "Solar absoptance roof " annotation(Dialog(group = "Outer wall properties", descriptionLabel = true)); parameter Integer calcMethod=1 "Calculation method for convective heat transfer coefficient" annotation (Dialog( @@ -32,9 +47,19 @@ model Attic_Ro2Lf1 radioButtons=true)); // Windows and Doors parameter Boolean withWindow1 = false "Window 1 " annotation(Dialog(group = "Windows and Doors", joinNext = true, descriptionLabel = true), choices(checkBox = true)); - parameter Modelica.SIunits.Area windowarea_RO1 = 0 "Window area" annotation(Dialog(group = "Windows and Doors", naturalWidth = 10, descriptionLabel = true, enable = withWindow1)); + parameter Modelica.Units.SI.Area windowarea_RO1=0 "Window area" annotation ( + Dialog( + group="Windows and Doors", + naturalWidth=10, + descriptionLabel=true, + enable=withWindow1)); parameter Boolean withWindow2 = false "Window 2 " annotation(Dialog(group = "Windows and Doors", joinNext = true, descriptionLabel = true), choices(checkBox = true)); - parameter Modelica.SIunits.Area windowarea_RO2 = 0 "Window area" annotation(Dialog(group = "Windows and Doors", naturalWidth = 10, descriptionLabel = true, enable = withWindow2)); + parameter Modelica.Units.SI.Area windowarea_RO2=0 "Window area" annotation ( + Dialog( + group="Windows and Doors", + naturalWidth=10, + descriptionLabel=true, + enable=withWindow2)); // Sunblind parameter Boolean use_sunblind = false "Will sunblind become active automatically?" @@ -42,12 +67,12 @@ model Attic_Ro2Lf1 parameter Real ratioSunblind(min=0.0, max=1.0) = 0.8 "Sunblind factor. 1 means total blocking of irradiation, 0 no sunblind" annotation(Dialog(group = "Sunblind", enable=use_sunblind)); - parameter Modelica.SIunits.Irradiance solIrrThreshold(min=0.0) = 350 + parameter Modelica.Units.SI.Irradiance solIrrThreshold(min=0.0) = 350 "Threshold for global solar irradiation on this surface to enable sunblinding (see also TOutAirLimit)" - annotation(Dialog(group = "Sunblind", enable=use_sunblind)); - parameter Modelica.SIunits.Temperature TOutAirLimit + annotation (Dialog(group="Sunblind", enable=use_sunblind)); + parameter Modelica.Units.SI.Temperature TOutAirLimit "Temperature at which sunblind closes (see also solIrrThreshold)" - annotation(Dialog(group = "Sunblind", enable=use_sunblind)); + annotation (Dialog(group="Sunblind", enable=use_sunblind)); AixLib.ThermalZones.HighOrder.Components.Walls.Wall roof1( withDoor=false, door_height=0, @@ -136,7 +161,8 @@ protected parameter AixLib.DataBase.Walls.WallBaseDataDefinition Type_RO = if TIR == 1 then AixLib.DataBase.Walls.EnEV2009.Ceiling.ROsaddleAttic_EnEV2009_SML() else if TIR == 2 then AixLib.DataBase.Walls.EnEV2002.Ceiling.ROsaddleAttic_EnEV2002_SML() else if TIR == 3 then AixLib.DataBase.Walls.WSchV1995.Ceiling.ROsaddleAttic_WSchV1995_SML() else AixLib.DataBase.Walls.WSchV1984.Ceiling.ROsaddleAttic_WSchV1984_SML() annotation(Dialog(tab = "Types")); //Window type parameter AixLib.DataBase.WindowsDoors.Simple.OWBaseDataDefinition_Simple Type_Win = if TIR == 1 then AixLib.DataBase.WindowsDoors.Simple.WindowSimple_EnEV2009() else if TIR == 2 then AixLib.DataBase.WindowsDoors.Simple.WindowSimple_EnEV2002() else if TIR == 3 then AixLib.DataBase.WindowsDoors.Simple.WindowSimple_WSchV1995() else AixLib.DataBase.WindowsDoors.Simple.WindowSimple_WSchV1984() annotation(Dialog(tab = "Types")); - parameter Modelica.SIunits.Volume room_V = roof_width1 * roof_width2 * sin(alfa) * 0.5 * room_width; + parameter Modelica.Units.SI.Volume room_V=roof_width1*roof_width2*sin(alfa)* + 0.5*room_width; equation // Connect-equation for ventilation/infiltration. If there are two windows, the ventilation rate is equally distributed between the two. the same with two door. // Be careful to set a given ventilation rate only for the windows, or for the doors, otherweise you will have double the ventilation rate. diff --git a/AixLib/Obsolete/Year2020/ThermalZones/HighOrder/Rooms/MFD/CellarAttic/Cellar.mo b/AixLib/Obsolete/Year2020/ThermalZones/HighOrder/Rooms/MFD/CellarAttic/Cellar.mo index b962c675f2..68b1e3ea52 100644 --- a/AixLib/Obsolete/Year2020/ThermalZones/HighOrder/Rooms/MFD/CellarAttic/Cellar.mo +++ b/AixLib/Obsolete/Year2020/ThermalZones/HighOrder/Rooms/MFD/CellarAttic/Cellar.mo @@ -9,11 +9,15 @@ model Cellar "Cellar completly under ground" "WSchV_1995", choice = 4 "WSchV_1984", radioButtons = true)); // Room geometry - parameter Modelica.SIunits.Length room_length = 10.24 "length" annotation(Dialog(group = "Room geometry", descriptionLabel = true)); - parameter Modelica.SIunits.Length room_width = 17.01 "width" annotation(Dialog(group = "Room geometry", descriptionLabel = true)); - parameter Modelica.SIunits.Height room_height = 2.5 "length" annotation(Dialog(group = "Room geometry", descriptionLabel = true)); + parameter Modelica.Units.SI.Length room_length=10.24 "length" + annotation (Dialog(group="Room geometry", descriptionLabel=true)); + parameter Modelica.Units.SI.Length room_width=17.01 "width" + annotation (Dialog(group="Room geometry", descriptionLabel=true)); + parameter Modelica.Units.SI.Height room_height=2.5 "length" + annotation (Dialog(group="Room geometry", descriptionLabel=true)); // Outer walls properties - parameter Modelica.SIunits.Temperature T_Ground = 283.15 "GroundTemperature" annotation(Dialog(group = "Outer wall properties", descriptionLabel = true)); + parameter Modelica.Units.SI.Temperature T_Ground=283.15 "GroundTemperature" + annotation (Dialog(group="Outer wall properties", descriptionLabel=true)); parameter Integer calcMethod=1 "Calculation method for convective heat transfer coefficient" annotation (Dialog( group="Outer wall properties", compact=true, @@ -23,9 +27,12 @@ model Cellar "Cellar completly under ground" choice=3 "Custom hCon (constant)", radioButtons=true)); //Initial temperatures - parameter Modelica.SIunits.Temperature T0_air = 285.15 "Air" annotation(Dialog(tab = "Initial temperatures", descriptionLabel = true)); - parameter Modelica.SIunits.Temperature T0_Walls = 284.95 "Walls" annotation(Dialog(tab = "Initial temperatures", descriptionLabel = true)); - parameter Modelica.SIunits.Temperature T0_Ceiling = 285.25 "Ceiling" annotation(Dialog(tab = "Initial temperatures", descriptionLabel = true)); + parameter Modelica.Units.SI.Temperature T0_air=285.15 "Air" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + parameter Modelica.Units.SI.Temperature T0_Walls=284.95 "Walls" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + parameter Modelica.Units.SI.Temperature T0_Ceiling=285.25 "Ceiling" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); // Sunblind parameter Boolean use_sunblind = false "Will sunblind become active automatically?" @@ -33,12 +40,12 @@ model Cellar "Cellar completly under ground" parameter Real ratioSunblind(min=0.0, max=1.0) = 0.8 "Sunblind factor. 1 means total blocking of irradiation, 0 no sunblind" annotation(Dialog(group = "Sunblind", enable=use_sunblind)); - parameter Modelica.SIunits.Irradiance solIrrThreshold(min=0.0) = 350 + parameter Modelica.Units.SI.Irradiance solIrrThreshold(min=0.0) = 350 "Threshold for global solar irradiation on this surface to enable sunblinding (see also TOutAirLimit)" - annotation(Dialog(group = "Sunblind", enable=use_sunblind)); - parameter Modelica.SIunits.Temperature TOutAirLimit + annotation (Dialog(group="Sunblind", enable=use_sunblind)); + parameter Modelica.Units.SI.Temperature TOutAirLimit "Temperature at which sunblind closes (see also solIrrThreshold)" - annotation(Dialog(group = "Sunblind", enable=use_sunblind)); + annotation (Dialog(group="Sunblind", enable=use_sunblind)); AixLib.ThermalZones.HighOrder.Components.DryAir.Airload airload( final T0=T0_air, final V=room_V) @@ -155,7 +162,7 @@ protected parameter AixLib.DataBase.Walls.WallBaseDataDefinition Type_FL = if TIR == 1 then AixLib.DataBase.Walls.EnEV2009.Floor.FLground_EnEV2009_SML() else if TIR == 2 then AixLib.DataBase.Walls.EnEV2002.Floor.FLground_EnEV2002_SML() else if TIR == 3 then AixLib.DataBase.Walls.WSchV1995.Floor.FLground_WSchV1995_SML() else AixLib.DataBase.Walls.WSchV1984.Floor.FLground_WSchV1984_SML(); // Ceiling type parameter AixLib.DataBase.Walls.WallBaseDataDefinition Type_CE = if TIR == 1 then AixLib.DataBase.Walls.EnEV2009.Ceiling.CEcellar_EnEV2009_SML_loHalf() else if TIR == 2 then AixLib.DataBase.Walls.EnEV2002.Ceiling.CEcellar_EnEV2002_SML_loHalf() else if TIR == 3 then AixLib.DataBase.Walls.WSchV1995.Ceiling.CEcellar_WSchV1995_SML_loHalf() else AixLib.DataBase.Walls.WSchV1984.Ceiling.CEcellar_WSchV1984_SML_loHalf(); - parameter Modelica.SIunits.Volume room_V = room_length * room_width * room_height; + parameter Modelica.Units.SI.Volume room_V=room_length*room_width*room_height; equation connect(infiltrationRate.port_a, thermOutside) annotation(Line(points = {{-44, -87}, {-42, -87}, {-42, -90}, {-90, -90}}, color = {191, 0, 0})); connect(infiltrationRate.port_b, airload.port) annotation(Line(points={{-18,-87},{-2,-87},{-2,-64},{-54,-64},{-54,-24},{-12,-24},{-12,-4},{-28,-4}}, color = {191, 0, 0})); diff --git a/AixLib/Obsolete/Year2021/DataBase.mo b/AixLib/Obsolete/Year2021/DataBase.mo index 762b708629..541f9b749a 100644 --- a/AixLib/Obsolete/Year2021/DataBase.mo +++ b/AixLib/Obsolete/Year2021/DataBase.mo @@ -75,18 +75,16 @@ package DataBase record PVBaseRecord extends AixLib.Obsolete.BaseClasses.ObsoleteModel; extends Modelica.Icons.Record; - parameter Modelica.SIunits.Efficiency Eta0(min=0, max=1) + parameter Modelica.Units.SI.Efficiency Eta0(min=0, max=1) "Maximum efficiency"; - parameter Modelica.SIunits.LinearTemperatureCoefficient TempCoeff(min=0, max=1) - "Temperature coeffient"; - parameter Modelica.SIunits.Temp_K NoctTempCell + parameter Modelica.Units.SI.LinearTemperatureCoefficient TempCoeff(min=0, + max=1) "Temperature coeffient"; + parameter Modelica.Units.SI.Temperature NoctTempCell "Meassured cell temperature"; - parameter Modelica.SIunits.Temp_K NoctTemp - "Defined temperature"; - parameter Modelica.SIunits.RadiantEnergyFluenceRate NoctRadiation + parameter Modelica.Units.SI.Temperature NoctTemp "Defined temperature"; + parameter Modelica.Units.SI.RadiantEnergyFluenceRate NoctRadiation "Defined radiation"; - parameter Modelica.SIunits.Area Area - "Area of one Panel"; + parameter Modelica.Units.SI.Area Area "Area of one Panel"; annotation (Documentation(info="

                                    Overview diff --git a/AixLib/Obsolete/Year2021/Electrical/PVSystem.mo b/AixLib/Obsolete/Year2021/Electrical/PVSystem.mo index e12ade2fc9..aec35d5a98 100644 --- a/AixLib/Obsolete/Year2021/Electrical/PVSystem.mo +++ b/AixLib/Obsolete/Year2021/Electrical/PVSystem.mo @@ -1,4 +1,4 @@ -within AixLib.Obsolete.Year2021.Electrical; +within AixLib.Obsolete.Year2021.Electrical; package PVSystem model PVSystem "PVSystem" @@ -119,32 +119,25 @@ package PVSystem AixLib.Obsolete.Year2021.Electrical.PVSystem.BaseClasses.PartialPVSystem; extends AixLib.Obsolete.BaseClasses.ObsoleteModel; - parameter Modelica.SIunits.Angle Latitude = 0.65798912800186 - "Location's Latitude" - annotation (Dialog(group="Location")); + parameter Modelica.Units.SI.Angle Latitude=0.65798912800186 + "Location's Latitude" annotation (Dialog(group="Location")); - parameter Modelica.SIunits.Angle til = 0.34906585039887 - "Surface's tilt angle (0:flat)" - annotation (Dialog(group="Geometry")); + parameter Modelica.Units.SI.Angle til=0.34906585039887 + "Surface's tilt angle (0:flat)" annotation (Dialog(group="Geometry")); - parameter Modelica.SIunits.Angle azi = -0.78539816339745 - "Surface's azimut angle (0:South)" - annotation (Dialog(group="Geometry")); + parameter Modelica.Units.SI.Angle azi=-0.78539816339745 + "Surface's azimut angle (0:South)" annotation (Dialog(group="Geometry")); AixLib.BoundaryConditions.WeatherData.Bus weaBus annotation (Placement( transformation(extent={{-120,-20},{-80,20}}),iconTransformation(extent={{-110, -10},{-90,10}}))); Modelica.Blocks.Math.Add G "Total irradiation on tilted surface" annotation (Placement(transformation(extent={{-28,12},{-8,32}}))); - AixLib.BoundaryConditions.SolarIrradiation.DiffusePerez HDifTil( - til=til, - lat=Latitude, - azi=azi) "Diffuse irradiation on tilted surface" + AixLib.BoundaryConditions.SolarIrradiation.DiffusePerez HDifTil(til=til, + azi=azi) "Diffuse irradiation on tilted surface" annotation (Placement(transformation(extent={{-62,18},{-42,38}}))); - AixLib.BoundaryConditions.SolarIrradiation.DirectTiltedSurface HDirTil( - til=til, - lat=Latitude, - azi=azi) "Direct irradiation on tilted surface" + AixLib.BoundaryConditions.SolarIrradiation.DirectTiltedSurface HDirTil(til= + til, azi=azi) "Direct irradiation on tilted surface" annotation (Placement(transformation(extent={{-62,-10},{-42,10}}))); equation @@ -383,7 +376,7 @@ package PVSystem "Number of panels"; parameter AixLib.Obsolete.Year2021.DataBase.SolarElectric.PVBaseRecord data "PV data set" annotation (choicesAllMatching=true); - parameter Modelica.SIunits.Power MaxOutputPower + parameter Modelica.Units.SI.Power MaxOutputPower "Maximum output power for inverter"; Modelica.Blocks.Interfaces.RealOutput PVPowerW( final quantity="Power", @@ -433,8 +426,8 @@ package PVSystem model PVInverterRMS "Inverter model including system management" extends AixLib.Obsolete.BaseClasses.ObsoleteModel; - parameter Modelica.SIunits.Power uMax2 - "Upper limits of input signals (MaxOutputPower)"; + parameter Modelica.Units.SI.Power uMax2 + "Upper limits of input signals (MaxOutputPower)"; Modelica.Blocks.Interfaces.RealOutput PVPowerRmsW( final quantity="Power", final unit="W") @@ -529,24 +522,18 @@ package PVSystem model PVModuleDC "partial model for PV module" extends AixLib.Obsolete.BaseClasses.ObsoleteModel; - parameter Modelica.SIunits.Area Area - "Area of one Panel"; - parameter Modelica.SIunits.Efficiency Eta0 - "Maximum efficiency"; - parameter Modelica.SIunits.Temp_K NoctTemp - "Defined temperature"; - parameter Modelica.SIunits.Temp_K NoctTempCell - "Meassured cell temperature"; - parameter Modelica.SIunits.RadiantEnergyFluenceRate NoctRadiation - "Defined radiation"; - parameter Modelica.SIunits.LinearTemperatureCoefficient TempCoeff - "Temperature coeffient"; - Modelica.SIunits.Power PowerPV - "Power of PV panels"; - Modelica.SIunits.Efficiency EtaVar - "Efficiency of PV cell"; - Modelica.SIunits.Temp_K TCell - "Cell temperature"; + parameter Modelica.Units.SI.Area Area "Area of one Panel"; + parameter Modelica.Units.SI.Efficiency Eta0 "Maximum efficiency"; + parameter Modelica.Units.SI.Temperature NoctTemp "Defined temperature"; + parameter Modelica.Units.SI.Temperature NoctTempCell + "Meassured cell temperature"; + parameter Modelica.Units.SI.RadiantEnergyFluenceRate NoctRadiation + "Defined radiation"; + parameter Modelica.Units.SI.LinearTemperatureCoefficient TempCoeff + "Temperature coeffient"; + Modelica.Units.SI.Power PowerPV "Power of PV panels"; + Modelica.Units.SI.Efficiency EtaVar "Efficiency of PV cell"; + Modelica.Units.SI.Temperature TCell "Cell temperature"; Modelica.Blocks.Interfaces.RealOutput DCOutputPower( final quantity="Power", diff --git a/AixLib/Obsolete/Year2021/Fluid/Actuators/Valves/MixingValve.mo b/AixLib/Obsolete/Year2021/Fluid/Actuators/Valves/MixingValve.mo index 29f39dbd01..0d86ab5dab 100644 --- a/AixLib/Obsolete/Year2021/Fluid/Actuators/Valves/MixingValve.mo +++ b/AixLib/Obsolete/Year2021/Fluid/Actuators/Valves/MixingValve.mo @@ -11,9 +11,9 @@ model MixingValve parameter Boolean filteredOpening=false "= true, if opening is filtered with a 2nd order CriticalDamping filter" annotation(Dialog(group="Filtered opening"),choices(checkBox=true)); - parameter Modelica.SIunits.Time riseTime=1 + parameter Modelica.Units.SI.Time riseTime=1 "Rise time of the filter (time to reach 99.6 % of an opening step)" - annotation(Dialog(group="Filtered opening",enable=filteredOpening)); + annotation (Dialog(group="Filtered opening", enable=filteredOpening)); parameter Real leakageOpening(min=0,max=1)=1e-3 "The opening signal is limited by leakageOpening (to improve the numerics)"; diff --git a/AixLib/Obsolete/Year2021/Fluid/Actuators/Valves/SimpleValve.mo b/AixLib/Obsolete/Year2021/Fluid/Actuators/Valves/SimpleValve.mo index 7b8eb0e8de..7df4b4985f 100644 --- a/AixLib/Obsolete/Year2021/Fluid/Actuators/Valves/SimpleValve.mo +++ b/AixLib/Obsolete/Year2021/Fluid/Actuators/Valves/SimpleValve.mo @@ -8,7 +8,7 @@ model SimpleValve Modelica.Blocks.Interfaces.RealInput opening "valve opening" annotation(Placement(transformation(extent = {{-20, -20}, {20, 20}}, rotation = 270, origin = {0, 80}))); protected - Modelica.SIunits.Density rho "Density of the fluid"; + Modelica.Units.SI.Density rho "Density of the fluid"; equation rho = Medium.density(Medium.setState_phX(port_a.p, inStream(port_a.h_outflow), inStream(port_a.Xi_outflow))); // Enthalpy flow diff --git a/AixLib/Obsolete/Year2021/Fluid/Actuators/Valves/ThermostaticValve.mo b/AixLib/Obsolete/Year2021/Fluid/Actuators/Valves/ThermostaticValve.mo index 2070268a52..d9214c7317 100644 --- a/AixLib/Obsolete/Year2021/Fluid/Actuators/Valves/ThermostaticValve.mo +++ b/AixLib/Obsolete/Year2021/Fluid/Actuators/Valves/ThermostaticValve.mo @@ -19,7 +19,7 @@ model ThermostaticValve Modelica.Blocks.Interfaces.RealInput T_room "temperature in room" annotation(Placement(transformation(extent = {{-20, -20}, {20, 20}}, rotation = 270, origin = {-64, 98}))); Modelica.Blocks.Interfaces.RealInput T_setRoom "set temperature in room" annotation(Placement(transformation(extent = {{-20, -20}, {20, 20}}, rotation = 270, origin = {56, 98}))); protected - Modelica.SIunits.Density rho "Density of the fluid"; + Modelica.Units.SI.Density rho "Density of the fluid"; equation rho = Medium.density(Medium.setState_phX(port_a.p, inStream(port_a.h_outflow), inStream(port_a.Xi_outflow))); // Enthalpie flow diff --git a/AixLib/Fluid/Examples/PumpRadiatorThermostaticValve.mo b/AixLib/Obsolete/Year2021/Fluid/Examples/PumpRadiatorThermostaticValve.mo similarity index 96% rename from AixLib/Fluid/Examples/PumpRadiatorThermostaticValve.mo rename to AixLib/Obsolete/Year2021/Fluid/Examples/PumpRadiatorThermostaticValve.mo index 51f542fe12..b20a9705a9 100644 --- a/AixLib/Fluid/Examples/PumpRadiatorThermostaticValve.mo +++ b/AixLib/Obsolete/Year2021/Fluid/Examples/PumpRadiatorThermostaticValve.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Examples; +within AixLib.Obsolete.Year2021.Fluid.Examples; model PumpRadiatorThermostaticValve "Example of a simple heating system with radiator and thermostatic valve" import AixLib; @@ -47,7 +47,12 @@ model PumpRadiatorThermostaticValve Modelica.Thermal.HeatTransfer.Sources.PrescribedTemperature AirTemp annotation(Placement(transformation(extent = {{100, 58}, {112, 70}}))); Modelica.Thermal.HeatTransfer.Sources.PrescribedTemperature RadTemp annotation(Placement(transformation(extent = {{148, 58}, {136, 70}}))); Modelica.Blocks.Sources.Constant Source_Temp(k = 273.15 + 20) annotation(Placement(transformation(extent = {{56, 80}, {76, 100}}))); - Modelica.Blocks.Sources.Sine Source_opening(freqHz = 1 / 86400, amplitude = 1, startTime = 0, offset = 273.15 + 18.5) annotation(Placement(transformation(extent = {{10, 60}, {30, 80}}))); + Modelica.Blocks.Sources.Sine Source_opening( + f=1/86400, + amplitude=1, + startTime=0, + offset=273.15 + 18.5) + annotation (Placement(transformation(extent={{10,60},{30,80}}))); Modelica.Blocks.Sources.Constant Source_TempSet_Boiler(k = 273.15 + 75) annotation(Placement(transformation(extent = {{0, 60}, {-20, 80}}))); AixLib.Fluid.HeatExchangers.Heater_T hea( redeclare package Medium = Medium, diff --git a/AixLib/Fluid/Examples/PumpRadiatorValve.mo b/AixLib/Obsolete/Year2021/Fluid/Examples/PumpRadiatorValve.mo similarity index 95% rename from AixLib/Fluid/Examples/PumpRadiatorValve.mo rename to AixLib/Obsolete/Year2021/Fluid/Examples/PumpRadiatorValve.mo index 4ea2fddd60..3d0a1ae53e 100644 --- a/AixLib/Fluid/Examples/PumpRadiatorValve.mo +++ b/AixLib/Obsolete/Year2021/Fluid/Examples/PumpRadiatorValve.mo @@ -1,4 +1,4 @@ -within AixLib.Fluid.Examples; +within AixLib.Obsolete.Year2021.Fluid.Examples; model PumpRadiatorValve "Example of a simple heating system with radiator and simple valve" import AixLib; @@ -42,7 +42,12 @@ model PumpRadiatorValve Modelica.Thermal.HeatTransfer.Sources.PrescribedTemperature AirTemp annotation(Placement(transformation(extent = {{100, 58}, {112, 70}}))); Modelica.Thermal.HeatTransfer.Sources.PrescribedTemperature RadTemp annotation(Placement(transformation(extent = {{148, 58}, {136, 70}}))); Modelica.Blocks.Sources.Constant Source_Temp(k = 273.15 + 20) annotation(Placement(transformation(extent = {{60, 80}, {80, 100}}))); - Modelica.Blocks.Sources.Sine Source_opening(freqHz = 1 / 86400, offset = 0.5, startTime = -21600, amplitude = 0.49) annotation(Placement(transformation(extent = {{10, 60}, {30, 80}}))); + Modelica.Blocks.Sources.Sine Source_opening( + f=1/86400, + offset=0.5, + startTime=-21600, + amplitude=0.49) + annotation (Placement(transformation(extent={{10,60},{30,80}}))); Modelica.Blocks.Sources.Constant Source_TempSet_Boiler(k = 273.15 + 75) annotation(Placement(transformation(extent = {{0, 60}, {-20, 80}}))); AixLib.Fluid.HeatExchangers.Heater_T hea( redeclare package Medium = Medium, diff --git a/AixLib/Obsolete/Year2021/Fluid/Examples/package.mo b/AixLib/Obsolete/Year2021/Fluid/Examples/package.mo new file mode 100644 index 0000000000..463dd704aa --- /dev/null +++ b/AixLib/Obsolete/Year2021/Fluid/Examples/package.mo @@ -0,0 +1,4 @@ +within AixLib.Obsolete.Year2021.Fluid; +package Examples +extends Modelica.Icons.ExamplesPackage; +end Examples; diff --git a/AixLib/Obsolete/Year2021/Fluid/Examples/package.order b/AixLib/Obsolete/Year2021/Fluid/Examples/package.order new file mode 100644 index 0000000000..6a8ddbebaa --- /dev/null +++ b/AixLib/Obsolete/Year2021/Fluid/Examples/package.order @@ -0,0 +1,2 @@ +PumpRadiatorThermostaticValve +PumpRadiatorValve diff --git a/AixLib/Obsolete/Year2021/Fluid/Movers/Pump.mo b/AixLib/Obsolete/Year2021/Fluid/Movers/Pump.mo index b052122746..fbc18fb134 100644 --- a/AixLib/Obsolete/Year2021/Fluid/Movers/Pump.mo +++ b/AixLib/Obsolete/Year2021/Fluid/Movers/Pump.mo @@ -8,16 +8,20 @@ model Pump "Head = f(V_flow) for minimal and maximal rotational speed" annotation(choicesAllMatching = true); parameter Integer ControlStrategy = 1 "Control Strategy" annotation(Dialog(group = "Control strategy"), choices(choice = 1 "dp-const", choice = 2 "dp-var", radioButtons = true)); - parameter Modelica.SIunits.Height Head_max = max(MinMaxCharacteristics.minMaxHead[:,3]) - "Set head for the control strategy" annotation(Dialog(group = "Control strategy")); + parameter Modelica.Units.SI.Height Head_max=max(MinMaxCharacteristics.minMaxHead[ + :, 3]) "Set head for the control strategy" + annotation (Dialog(group="Control strategy")); parameter Real V_flow_max(unit="m3/h") = max(MinMaxCharacteristics.minMaxHead[:,1]) "Vmax in m3/h for the control strategy" annotation(Dialog(group = "Control strategy", enable = if ControlStrategy == 2 then true else false)); - Modelica.SIunits.Height Head(start = 0, min = 0) "Pumping head"; + Modelica.Units.SI.Height Head(start=0, min=0) "Pumping head"; Modelica.Blocks.Tables.CombiTable1Ds table_minMaxCharacteristics(tableOnFile = false, columns = {2, 3}, table = MinMaxCharacteristics.minMaxHead) "Table with Head = f(V_flow) min amd max characteristics for the pump" annotation(Placement(transformation(extent = {{-10, -10}, {10, 10}}))); Modelica.Blocks.Interfaces.BooleanInput IsNight annotation(Placement(transformation(extent = {{-20, -20}, {20, 20}}, rotation = 270, origin = {-2, 100}), iconTransformation(extent = {{-10, -10}, {10, 10}}, rotation = 270, origin = {0, 102}))); - parameter Modelica.SIunits.MassFlowRate m_flowsPump[:] = MinMaxCharacteristics.minMaxHead[:,1]./3600.*rho_default "Convert VFlow in m3/h to kg/s"; - parameter Modelica.SIunits.PressureDifference dpsPump[:] = MinMaxCharacteristics.minMaxHead[:,3].*rho_default.*Modelica.Constants.g_n "Convert m of head to Pa"; + parameter Modelica.Units.SI.MassFlowRate m_flowsPump[:]=MinMaxCharacteristics.minMaxHead[ + :, 1] ./ 3600.*rho_default "Convert VFlow in m3/h to kg/s"; + parameter Modelica.Units.SI.PressureDifference dpsPump[:]= + MinMaxCharacteristics.minMaxHead[:, 3] .* rho_default .* Modelica.Constants.g_n + "Convert m of head to Pa"; protected final parameter Medium.ThermodynamicState state_default = Medium.setState_pTX( @@ -25,8 +29,8 @@ protected p=Medium.p_default, X=Medium.X_default[1:Medium.nXi]) "Medium state at default values"; // Density at medium default values, used to compute the size of control volumes - final parameter Modelica.SIunits.Density rho_default=Medium.density( - state=state_default) "Density, used to volume flow rate from mass flow rate"; + final parameter Modelica.Units.SI.Density rho_default=Medium.density(state= + state_default) "Density, used to volume flow rate from mass flow rate"; equation // Enthalpie flow port_a.h_outflow = inStream(port_b.h_outflow); diff --git a/AixLib/Obsolete/Year2021/Fluid/package.order b/AixLib/Obsolete/Year2021/Fluid/package.order index e8bdddc396..65ad622050 100644 --- a/AixLib/Obsolete/Year2021/Fluid/package.order +++ b/AixLib/Obsolete/Year2021/Fluid/package.order @@ -1,2 +1,3 @@ Actuators Movers +Examples diff --git a/AixLib/Utilities/Examples/NcDataReader.mo b/AixLib/Obsolete/Year2022/Examples/NcDataReader.mo similarity index 90% rename from AixLib/Utilities/Examples/NcDataReader.mo rename to AixLib/Obsolete/Year2022/Examples/NcDataReader.mo index 569750c1c6..d1a3d2f0ff 100644 --- a/AixLib/Utilities/Examples/NcDataReader.mo +++ b/AixLib/Obsolete/Year2022/Examples/NcDataReader.mo @@ -1,9 +1,9 @@ -within AixLib.Utilities.Examples; +within AixLib.Obsolete.Year2022.Examples; model NcDataReader extends Modelica.Icons.Example; - Sources.NcDataReader NcDataReader_test( + Obsolete.Year2022.Utilities.NcDataReader NcDataReader_test( fileName=Modelica.Utilities.Files.loadResource( - "modelica://AixLib/Resources/NcDataReader_ExampleData/Temp_Year.nc"), + "modelica://AixLib/Resources/NcDataReader_ExampleData/Temp_Year.nc"), use_varName=true, use_attNameReal=true, use_attNameInt=true, diff --git a/AixLib/Obsolete/Year2022/Examples/package.mo b/AixLib/Obsolete/Year2022/Examples/package.mo new file mode 100644 index 0000000000..bb8f30e728 --- /dev/null +++ b/AixLib/Obsolete/Year2022/Examples/package.mo @@ -0,0 +1,4 @@ +within AixLib.Obsolete.Year2022; +package Examples +extends Modelica.Icons.Example; +end Examples; diff --git a/AixLib/Obsolete/Year2022/Examples/package.order b/AixLib/Obsolete/Year2022/Examples/package.order new file mode 100644 index 0000000000..6d0f2bb02b --- /dev/null +++ b/AixLib/Obsolete/Year2022/Examples/package.order @@ -0,0 +1 @@ +NcDataReader diff --git a/AixLib/ThermalZones/HighOrder/Examples/Appartment_VoWo.mo b/AixLib/Obsolete/Year2022/ThermalZones/HighOrder/Examples/Appartment_VoWo.mo similarity index 80% rename from AixLib/ThermalZones/HighOrder/Examples/Appartment_VoWo.mo rename to AixLib/Obsolete/Year2022/ThermalZones/HighOrder/Examples/Appartment_VoWo.mo index e210db82d4..21e5d7d53d 100644 --- a/AixLib/ThermalZones/HighOrder/Examples/Appartment_VoWo.mo +++ b/AixLib/Obsolete/Year2022/ThermalZones/HighOrder/Examples/Appartment_VoWo.mo @@ -1,14 +1,17 @@ -within AixLib.ThermalZones.HighOrder.Examples; -model Appartment_VoWo "Simulation of 1 apartment " +within AixLib.Obsolete.Year2022.ThermalZones.HighOrder.Examples; +model Appartment_VoWo "Simulation of 1 apartment" extends Modelica.Icons.Example; parameter AixLib.DataBase.Weather.TRYWeatherBaseDataDefinition weatherDataDay = AixLib.DataBase.Weather.TRYWinterDay(); replaceable package Medium = Modelica.Media.Water.ConstantPropertyLiquidWater "Medium in the system" annotation(Dialog(group = "Medium"), choicesAllMatching = true); - AixLib.ThermalZones.HighOrder.House.MFD.BuildingAndEnergySystem.OneAppartment_Radiators + AixLib.Obsolete.Year2022.ThermalZones.HighOrder.House.MFD.BuildingAndEnergySystem.OneAppartment_Radiators VoWoWSchV1984( redeclare package Medium = Medium, - redeclare model WindowModel = Components.WindowsDoors.WindowSimple, - redeclare model CorrSolarGainWin = Components.WindowsDoors.BaseClasses.CorrectionSolarGain.CorGSimple, + redeclare model WindowModel = + AixLib.ThermalZones.HighOrder.Components.WindowsDoors.WindowSimple, + redeclare model CorrSolarGainWin = + AixLib.ThermalZones.HighOrder.Components.WindowsDoors.BaseClasses.CorrectionSolarGain.CorGSimple, + fixedHeatFlow3(T_ref=288.15), fixedHeatFlow5(T_ref=283.15), fixedHeatFlow16(T_ref=288.15), @@ -99,24 +102,32 @@ equation connect(VoWoWSchV1984.Returnflow, res2.port_a) annotation (Line(points={{3.38182, -1.5},{3.38182,-44},{26,-44}}, color={0,127,255})); // Here the relevant Variables for the simulation are set as output to limit the dimension of the result file - connect(combinedWeather.WindSpeed, VoWoWSchV1984.WindSpeedPort) annotation(Line(points={{-48.9333,91.6},{-10.4455,91.6},{-10.4455,42.875}}, color = {0, 0, 127})); - connect(AirExWindow.y, VoWoWSchV1984.AirExchangePort_Window) annotation(Line(points={{0.3,77},{6,77},{6,43.0833},{9.76364,43.0833}}, color = {0, 0, 127})); - connect(combinedWeather.SolarRadiation_OrientedSurfaces[2], VoWoWSchV1984.SolarRadiation[1]) annotation(Line(points={{-74.32,72.9},{-74.32,60},{21.1091,60},{21.1091,44.5417}}, - color = {255, 128, 0})); - connect(combinedWeather.SolarRadiation_OrientedSurfaces[4], VoWoWSchV1984.SolarRadiation[2]) annotation(Line(points={{-74.32,72.9},{-74.32,60},{21.1091,60},{21.1091,42.4583}}, - color = {255, 128, 0})); - connect(combinedWeather.AirTemp, VoWoWSchV1984.air_temp) annotation(Line(points={{-48.9333,88.3},{-29.9455,88.3},{-29.9455,43.0833}}, color = {0, 0, 127})); - connect(Source_TsetLivingroom.y, VoWoWSchV1984.TSet[1]) annotation(Line(points={{-85.3,59},{-60,59},{-60,18.7083},{-36.6818,18.7083}}, color = {0, 0, 127})); - connect(Source_TsetBedroom.y, VoWoWSchV1984.TSet[2]) annotation(Line(points={{-85.3,37},{-60,37},{-60,19.9583},{-36.6818,19.9583}}, color = {0, 0, 127})); - connect(Source_TsetChildren.y, VoWoWSchV1984.TSet[3]) annotation(Line(points={{-85.3,15},{-72,15},{-72,14},{-60,14},{-60,21.2083},{-36.6818,21.2083}}, color = {0, 0, 127})); + connect(combinedWeather.WindSpeed, VoWoWSchV1984.WindSpeedPort) annotation(Line(points={{ + -48.9333,91.6},{-10.4455,91.6},{-10.4455,42.875}}, color = {0, 0, 127})); + connect(AirExWindow.y, VoWoWSchV1984.AirExchangePort_Window) annotation(Line(points={{0.3,77}, + {6,77},{6,43.0833},{9.76364,43.0833}}, color = {0, 0, 127})); + connect(combinedWeather.SolarRadiation_OrientedSurfaces[2], VoWoWSchV1984.SolarRadiation[1]) annotation(Line(points={{-74.32, + 72.9},{-74.32,60},{21.1091,60},{21.1091,42.9792}}, color = {255, 128, 0})); + connect(combinedWeather.SolarRadiation_OrientedSurfaces[4], VoWoWSchV1984.SolarRadiation[2]) annotation(Line(points={{-74.32, + 72.9},{-74.32,60},{21.1091,60},{21.1091,44.0208}}, color = {255, 128, 0})); + connect(combinedWeather.AirTemp, VoWoWSchV1984.air_temp) annotation(Line(points={{ + -48.9333,88.3},{-29.9455,88.3},{-29.9455,43.0833}}, color = {0, 0, 127})); + connect(Source_TsetLivingroom.y, VoWoWSchV1984.TSet[1]) annotation(Line(points={{-85.3, + 59},{-60,59},{-60,19.9583},{-36.6818,19.9583}}, color = {0, 0, 127})); + connect(Source_TsetBedroom.y, VoWoWSchV1984.TSet[2]) annotation(Line(points={{-85.3, + 37},{-60,37},{-60,20.5833},{-36.6818,20.5833}}, color = {0, 0, 127})); + connect(Source_TsetChildren.y, VoWoWSchV1984.TSet[3]) annotation(Line(points={{-85.3, + 15},{-72,15},{-72,14},{-60,14},{-60,21.2083},{-36.6818,21.2083}}, color = {0, 0, 127})); connect(booleanExpression.y, Pump.IsNight) annotation (Line(points={{-73,-46}, {-6,-46},{-6,-61.8}}, color={255,0,255})); - connect(Source_TsetBath.y, VoWoWSchV1984.TSet[4]) annotation(Line(points={{-85.3,-9},{-60,-9},{-60,22.4583},{-36.6818,22.4583}}, color = {0, 0, 127})); - connect(Source_TsetKitchen.y, VoWoWSchV1984.TSet[5]) annotation(Line(points={{-85.3,-29},{-60,-29},{-60,23.7083},{-36.6818,23.7083}}, color = {0, 0, 127})); + connect(Source_TsetBath.y, VoWoWSchV1984.TSet[4]) annotation(Line(points={{-85.3, + -9},{-60,-9},{-60,21.8333},{-36.6818,21.8333}}, color = {0, 0, 127})); + connect(Source_TsetKitchen.y, VoWoWSchV1984.TSet[5]) annotation(Line(points={{-85.3, + -29},{-60,-29},{-60,22.4583},{-36.6818,22.4583}}, color = {0, 0, 127})); connect(res2.port_b, tank.ports[1]) annotation (Line(points={{38,-44},{54,-44}, - {54,-86},{29.6,-86},{29.6,-72}}, color={0,127,255})); + {54,-86},{27.2,-86},{27.2,-72}}, color={0,127,255})); connect(Pump.port_a, tank.ports[2]) annotation (Line(points={{4,-72},{14,-72}, - {14,-84},{26.4,-84},{26.4,-72}}, color={0,127,255})); + {14,-84},{28.8,-84},{28.8,-72}}, color={0,127,255})); connect(Source_TseBoiler.y, hea.TSet) annotation (Line(points={{-71.3,-105},{ -28,-105},{-28,-64},{-36,-64}}, color={0,0,127})); annotation(Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-100, diff --git a/AixLib/Obsolete/Year2022/ThermalZones/HighOrder/Examples/package.mo b/AixLib/Obsolete/Year2022/ThermalZones/HighOrder/Examples/package.mo new file mode 100644 index 0000000000..4cf52ae3e5 --- /dev/null +++ b/AixLib/Obsolete/Year2022/ThermalZones/HighOrder/Examples/package.mo @@ -0,0 +1,4 @@ +within AixLib.Obsolete.Year2022.ThermalZones.HighOrder; +package Examples +extends Modelica.Icons.ExamplesPackage; +end Examples; diff --git a/AixLib/Obsolete/Year2022/ThermalZones/HighOrder/Examples/package.order b/AixLib/Obsolete/Year2022/ThermalZones/HighOrder/Examples/package.order new file mode 100644 index 0000000000..9739ded098 --- /dev/null +++ b/AixLib/Obsolete/Year2022/ThermalZones/HighOrder/Examples/package.order @@ -0,0 +1 @@ +Appartment_VoWo diff --git a/AixLib/Obsolete/Year2022/ThermalZones/HighOrder/House/MFD/BuildingAndEnergySystem.mo b/AixLib/Obsolete/Year2022/ThermalZones/HighOrder/House/MFD/BuildingAndEnergySystem.mo new file mode 100644 index 0000000000..ba8aec7074 --- /dev/null +++ b/AixLib/Obsolete/Year2022/ThermalZones/HighOrder/House/MFD/BuildingAndEnergySystem.mo @@ -0,0 +1,241 @@ +within AixLib.Obsolete.Year2022.ThermalZones.HighOrder.House.MFD; +package BuildingAndEnergySystem + extends Modelica.Icons.Package; + + model OneAppartment_Radiators + "just one appartment (same appartment as in MFD, but hydraulic network fit to this one appartment)" + import HouseModels = AixLib.ThermalZones.HighOrder; + replaceable package Medium = + Modelica.Media.Water.ConstantPropertyLiquidWater + "Medium in the system" annotation(Dialog(group = "Medium"), choicesAllMatching = true); + // Sunblind + parameter Boolean use_sunblind = false + "Will sunblind become active automatically?" + annotation(Dialog(group = "Sunblind")); + parameter Real ratioSunblind(min=0.0, max=1.0) + "Sunblind factor. 1 means total blocking of irradiation, 0 no sunblind" + annotation(Dialog(group = "Sunblind", enable=use_sunblind)); + parameter Modelica.Units.SI.Irradiance solIrrThreshold(min=0.0) + "Threshold for global solar irradiation on this surface to enable sunblinding (see also TOutAirLimit)" + annotation (Dialog(group="Sunblind", enable=use_sunblind)); + parameter Modelica.Units.SI.Temperature TOutAirLimit + "Temperature at which sunblind closes (see also solIrrThreshold)" + annotation (Dialog(group="Sunblind", enable=use_sunblind)); + + replaceable model WindowModel = + AixLib.ThermalZones.HighOrder.Components.WindowsDoors.BaseClasses.PartialWindow + constrainedby + AixLib.ThermalZones.HighOrder.Components.WindowsDoors.BaseClasses.PartialWindow + annotation (Dialog(tab="Outer walls", group="Windows"), choicesAllMatching = true); + + replaceable model CorrSolarGainWin = + AixLib.ThermalZones.HighOrder.Components.WindowsDoors.BaseClasses.CorrectionSolarGain.PartialCorG + constrainedby + AixLib.ThermalZones.HighOrder.Components.WindowsDoors.BaseClasses.CorrectionSolarGain.PartialCorG + "Correction model for solar irradiance as transmitted radiation" annotation (choicesAllMatching=true, Dialog(tab="Outer walls", group="Windows", enable = withWindow and outside)); + + EnergySystem.OneAppartment.Radiators Hydraulic( + hydResRadLi(m_flow_nominal=0.0001), + hydResRadBe(m_flow_nominal=0.0001), + hydResRadCh(m_flow_nominal=0.0001), + hydResRadBa(m_flow_nominal=0.0001), + hydResInflow(m_flow_nominal=0.0001), + hydResRadKi(m_flow_nominal=0.0001)) + annotation (Placement(transformation(extent={{-22,-72},{38,-12}}))); + Modelica.Thermal.HeatTransfer.Sources.FixedHeatFlow fixedHeatFlow6(Q_flow = 0) annotation(Placement(transformation(extent = {{-62, 26}, {-50, 32}}))); + Modelica.Thermal.HeatTransfer.Sources.FixedHeatFlow fixedHeatFlow1(Q_flow = 0) annotation(Placement(transformation(extent = {{-78, 62}, {-66, 68}}))); + Modelica.Thermal.HeatTransfer.Sources.FixedHeatFlow fixedHeatFlow2(Q_flow = 0) annotation(Placement(transformation(extent = {{-78, 26}, {-66, 32}}))); + Modelica.Thermal.HeatTransfer.Sources.FixedHeatFlow fixedHeatFlow3(Q_flow = 0) annotation(Placement(transformation(extent = {{-78, 46}, {-66, 52}}))); + Modelica.Thermal.HeatTransfer.Sources.FixedHeatFlow fixedHeatFlow4(Q_flow = 0) annotation(Placement(transformation(extent = {{-62, 38}, {-50, 44}}))); + Modelica.Thermal.HeatTransfer.Sources.FixedHeatFlow fixedHeatFlow5(Q_flow = 0) annotation(Placement(transformation(extent = {{-64, 52}, {-52, 58}}))); + Modelica.Thermal.HeatTransfer.Sources.FixedHeatFlow fixedHeatFlow8(Q_flow = 0) annotation(Placement(transformation(extent = {{76, 18}, {64, 24}}))); + Modelica.Thermal.HeatTransfer.Sources.FixedHeatFlow fixedHeatFlow9(Q_flow = 0) annotation(Placement(transformation(extent = {{-80, 14}, {-68, 20}}))); + Modelica.Thermal.HeatTransfer.Sources.FixedHeatFlow fixedHeatFlow10(Q_flow = 0) annotation(Placement(transformation(extent = {{-60, 18}, {-48, 24}}))); + Modelica.Thermal.HeatTransfer.Sources.FixedHeatFlow fixedHeatFlow7(Q_flow = 0) annotation(Placement(transformation(extent = {{78, 38}, {66, 44}}))); + Modelica.Thermal.HeatTransfer.Sources.FixedHeatFlow fixedHeatFlow11(Q_flow = 0) annotation(Placement(transformation(extent = {{72, 60}, {60, 66}}))); + Modelica.Thermal.HeatTransfer.Sources.FixedHeatFlow fixedHeatFlow12(Q_flow = 0) annotation(Placement(transformation(extent = {{58, 40}, {46, 46}}))); + Modelica.Thermal.HeatTransfer.Sources.FixedHeatFlow fixedHeatFlow13(Q_flow = 0) annotation(Placement(transformation(extent = {{60, 18}, {48, 24}}))); + Modelica.Thermal.HeatTransfer.Sources.FixedHeatFlow fixedHeatFlow14(Q_flow = 0) annotation(Placement(transformation(extent = {{60, 28}, {48, 34}}))); + Modelica.Thermal.HeatTransfer.Sources.FixedHeatFlow fixedHeatFlow15(Q_flow = 0) annotation(Placement(transformation(extent = {{74, 28}, {62, 34}}))); + Modelica.Thermal.HeatTransfer.Sources.FixedHeatFlow fixedHeatFlow16(Q_flow = 0) annotation(Placement(transformation(extent = {{74, 50}, {62, 56}}))); + Modelica.Fluid.Interfaces.FluidPort_a + Inflow(redeclare package Medium = Medium) + "Inflow to connect with external models (boiler, pump etc.)" annotation(Placement(transformation(extent = {{-26, -118}, {-6, -98}}), iconTransformation(extent = {{-26, -118}, {-6, -98}}))); + Modelica.Fluid.Interfaces.FluidPort_b + Returnflow(redeclare package Medium = Medium) + "Returnflow to connect with external models (boiler, pump etc.)" annotation(Placement(transformation(extent = {{-2, -118}, {18, -98}}), iconTransformation(extent = {{-2, -118}, {18, -98}}))); + Modelica.Blocks.Interfaces.RealInput WindSpeedPort annotation(Placement(transformation(extent = {{-20, -20}, {20, 20}}, rotation = -90, origin = {-32, 112}), iconTransformation(extent = {{-15, -15}, {15, 15}}, rotation = -90, origin = {-31, 105}))); + Modelica.Blocks.Interfaces.RealInput AirExchangePort_Window[5] annotation(Placement(transformation(extent = {{-20, -20}, {20, 20}}, rotation = -90, origin = {20, 112}), iconTransformation(extent = {{-14, -14}, {14, 14}}, rotation = -90, origin = {26, 106}))); + AixLib.Utilities.Interfaces.SolarRad_in SolarRadiation[2] "[SE, NW]" + annotation (Placement(transformation( + extent={{-10,-10},{10,10}}, + rotation=-90, + origin={58,108}))); + Obsolete.Year2022.ThermalZones.HighOrder.House.MFD.BuildingEnvelope.OneAppartment_VoWo + Appartment( + redeclare final model WindowModel = WindowModel, + redeclare final model CorrSolarGainWin = CorrSolarGainWin, + final use_sunblind=use_sunblind, + final ratioSunblind=ratioSunblind, + final solIrrThreshold=solIrrThreshold, + final TOutAirLimit=TOutAirLimit, + Floor=2, + Livingroom( + T0_air=293.15, + T0_OW=293.15, + T0_IWChild=293.15, + T0_IWBedroom=293.15, + T0_IWNeighbour=293.15, + T0_CE=293.35, + T0_FL=292.95), + Children( + T0_air=293.15, + T0_OW=293.15, + T0_IWLivingroom=293.15, + T0_IWNeighbour=293.15, + T0_CE=293.35, + T0_FL=292.95), + Bedroom( + T0_air=293.15, + T0_OW=293.15, + T0_IWLivingroom=293.15, + T0_IWNeighbour=293.15, + T0_CE=293.35, + T0_FL=292.95), + Bathroom( + T0_IWKitchen=293.15, + T0_IWBedroom=293.15, + T0_OW=293.15, + T0_CE=297.35, + T0_FL=296.95), + Kitchen( + T0_air=293.15, + T0_OW=293.15, + T0_CE=293.35, + T0_FL=292.95), + Corridor( + T0_IWKitchen=293.15, + T0_IWBedroom=293.15, + T0_IWLivingroom=293.15, + T0_IWChild=293.15, + T0_CE=293.35, + T0_FL=292.95)) + annotation (Placement(transformation(extent={{-30,8},{32,70}}))); + Modelica.Thermal.HeatTransfer.Sources.PrescribedTemperature tempOutside3 annotation(Placement(transformation(extent = {{-48, 78}, {-67.5, 96}}))); + Modelica.Blocks.Interfaces.RealInput air_temp annotation(Placement(transformation(extent = {{20, -20}, {-20, 20}}, rotation = 90, origin = {-80, 112}), iconTransformation(extent = {{14, -14}, {-14, 14}}, rotation = 90, origin = {-86, 106}))); + Modelica.Blocks.Interfaces.RealInput TSet[5] "1 - Livingroom + 2- Bedroom + 3 - Children + 4 - Bath + 5 - Kitchen" annotation(Placement(transformation(extent = {{-140, -20}, {-100, 20}}), iconTransformation(extent = {{-120, -14}, {-90, 16}}))); + equation + connect(Appartment.WindSpeedPort, WindSpeedPort) annotation(Line(points={{ + -6.85333,61.7333},{-6.85333,80},{-32,80},{-32,112}}, color = {0, 0, 127})); + connect(Appartment.thermNeighbour_Livingroom, fixedHeatFlow1.port) annotation(Line(points={{ + -21.7333,57.6},{-38,57.6},{-38,65},{-66,65}}, color = {191, 0, 0})); + connect(Appartment.thermNeigbour_Bedroom, fixedHeatFlow5.port) annotation(Line(points={{ + -21.7333,52.64},{-38,52.64},{-38,55},{-52,55}}, color = {191, 0, 0})); + connect(Appartment.thermCeiling_Livingroom, fixedHeatFlow3.port) annotation(Line(points={{ + -21.7333,46.8533},{-38,46.8533},{-38,49},{-66,49}}, color = {191, 0, 0})); + connect(Appartment.thermFloor_Livingroom, fixedHeatFlow4.port) annotation(Line(points={{ + -21.7333,41.8933},{-38,41.8933},{-38,41},{-50,41}}, color = {191, 0, 0})); + connect(Appartment.thermCeiling_Bath, fixedHeatFlow10.port) annotation(Line(points={{ + -21.7333,26.1867},{-38,26.1867},{-38,21},{-48,21}}, color = {191, 0, 0})); + connect(Appartment.thermFloor_Bath, fixedHeatFlow9.port) annotation(Line(points={{ + -21.7333,20.4},{-38,20.4},{-38,17},{-68,17}}, color = {191, 0, 0})); + connect(Appartment.thermNeighbour_Child, fixedHeatFlow11.port) annotation(Line(points={{23.7333, + 57.6},{38,57.6},{38,63},{60,63}}, color = {191, 0, 0})); + connect(Appartment.thermStaircase, fixedHeatFlow16.port) annotation(Line(points={{23.7333, + 52.2267},{38,52.2267},{38,53},{62,53}}, color = {191, 0, 0})); + connect(Appartment.thermCeiling_Children, fixedHeatFlow12.port) annotation(Line(points={{23.7333, + 46.44},{38,46.44},{38,43},{46,43}}, color = {191, 0, 0})); + connect(Appartment.thermCeiling_Corridor, fixedHeatFlow14.port) annotation(Line(points={{23.7333, + 36.52},{38,36.52},{38,31},{48,31}}, color = {191, 0, 0})); + connect(Appartment.thermCeiling_Kitchen, fixedHeatFlow13.port) annotation(Line(points={{23.7333, + 26.1867},{38,26.1867},{38,21},{48,21}}, color = {191, 0, 0})); + connect(Appartment.SolarRadiation_SE, SolarRadiation[1]) annotation(Line(points={{6.78667, + 61.7333},{6.78667,72},{58,72},{58,105.5}}, color = {255, 128, 0})); + connect(Appartment.SolarRadiation_NW, SolarRadiation[2]) annotation(Line(points={{12.9867, + 61.7333},{12.9867,72},{58,72},{58,110.5}}, color = {255, 128, 0})); + connect(fixedHeatFlow7.port, Appartment.thermFloor_Children) annotation(Line(points={{66,41}, + {64,41},{64,38},{38,38},{38,41.48},{23.7333,41.48}}, color = {191, 0, 0})); + connect(fixedHeatFlow8.port, Appartment.thermFloor_Kitchen) annotation(Line(points={{64,21}, + {62,21},{62,16},{38,16},{38,21.2267},{23.7333,21.2267}}, color = {191, 0, 0})); + connect(fixedHeatFlow15.port, Appartment.thermFloor_Corridor) annotation(Line(points={{62,31}, + {60,31},{60,26},{38,26},{38,31.56},{23.7333,31.56}}, color = {191, 0, 0})); + connect(fixedHeatFlow6.port, Appartment.thermCeiling_Bedroom) annotation(Line(points={{-50,29}, + {-38,29},{-38,36.52},{-21.7333,36.52}}, color = {191, 0, 0})); + connect(fixedHeatFlow2.port, Appartment.thermFloor_Bedroom) annotation(Line(points={{-66,29}, + {-62,29},{-62,26},{-38,26},{-38,31.56},{-21.7333,31.56}}, color = {191, 0, 0})); + connect(tempOutside3.T, air_temp) annotation(Line(points = {{-46.05, 87}, {-46.05, 112}, {-80, 112}}, color = {0, 0, 127})); + connect(AirExchangePort_Window, Appartment.AirExchangePort) annotation(Line(points={{20,112}, + {20,80},{0.173333,80},{0.173333,61.7333}}, color = {0, 0, 127})); + connect(tempOutside3.port, Appartment.thermOutside) annotation(Line(points={{-67.5, + 87},{-80,87},{-80,74},{-13.88,74},{-13.88,61.7333}}, color = {191, 0, 0})); + connect(Inflow, Hydraulic.FLOW) annotation(Line(points={{-16,-108},{20,-108}, + {20,-73.1429},{28.4,-73.1429}}, color = {0, 127, 255})); + connect(Returnflow, Hydraulic.RETURN) annotation(Line(points={{8,-108},{8, + -74},{23.2,-74},{23.2,-73.1429}}, color = {0, 127, 255})); + connect(Hydraulic.radLi, Appartment.StarLivingroom) annotation(Line(points={{-20, + -30.1429},{-26,-30.1429},{-26,-30},{-34,-30},{-34,0},{-5.61333,0},{ + -5.61333,40.4467}}, color = {0, 0, 0})); + connect(Hydraulic.convLi, Appartment.thermLivingroom) annotation(Line(points={{-19.9, + -34.4286},{-34,-34.4286},{-34,0},{-6,0},{-6,43.34},{-9.33333,43.34}}, color = {191, 0, 0})); + connect(Hydraulic.radBe, Appartment.StarBedroom) annotation(Line(points={{35.4, + -15.7143},{54,-15.7143},{54,0},{-5.61333,0},{-5.61333,36.7267}}, color = {0, 0, 0})); + connect(Hydraulic.convBe, Appartment.ThermBedroom) annotation(Line(points={{35.6, + -22.5714},{54,-22.5714},{54,0},{-9.74667,0},{-9.74667,36.52}}, color = {191, 0, 0})); + connect(Hydraulic.radCh, Appartment.StarChildren) annotation(Line(points={{36, + -29.4286},{54,-29.4286},{54,0},{14.64,0},{14.64,45.6133}}, color = {0, 0, 0})); + connect(Hydraulic.convCh, Appartment.ThermChildren) annotation(Line(points={{35.7, + -36.1429},{54,-36.1429},{54,0},{12,0},{12,22},{9.68,22},{9.68,46.44}}, color = {191, 0, 0})); + connect(Hydraulic.radBa, Appartment.StarBath) annotation(Line(points={{35.6, + -51.4286},{54,-51.4286},{54,0},{2.44667,0},{2.44667,34.8667}}, color = {0, 0, 0})); + connect(Hydraulic.convBa, Appartment.ThermBath) annotation(Line(points={{35.7, + -57.7143},{54,-57.7143},{54,0},{-1.48,0},{-1.48,34.8667}}, color = {191, 0, 0})); + connect(Hydraulic.radKi, Appartment.StarKitchen) annotation(Line(points={{-19.5, + -55.4286},{-34,-55.4286},{-34,0},{9.88667,0},{9.88667,31.7667}}, color = {0, 0, 0})); + connect(Hydraulic.convKi, Appartment.ThermKitchen) annotation(Line(points={{-19.6, + -60.1429},{-34,-60.1429},{-34,0},{10.92,0},{10.92,36.52}}, color = {191, 0, 0})); + connect(Hydraulic.TSet, TSet) annotation(Line(points = {{-13.1, -16}, {-14, -16}, {-14, 0}, {-120, 0}}, color = {0, 0, 127})); + annotation(Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-120, + -120},{100,120}}), graphics), Documentation(info = "

                                    + Overview +

                                    +

                                    + Model for an appartment, considered as a single unit with an energy + system based on radiators. +

                                    +
                                      +
                                    • + June 19, 2014 by Ana Constantin:
                                      + Implemented +
                                    • +
                                    +"), Icon(coordinateSystem(extent = {{-120, -120}, {100, 120}}, preserveAspectRatio = false), graphics={ Bitmap(extent = {{-86, 80}, {76, -84}}, fileName = "modelica://AixLib/Resources/Images/Building/HighOrder/MFD_FloorPlan_En.PNG")})); + end OneAppartment_Radiators; + annotation(Documentation(info = "

                                    + Overview +

                                    +

                                    + Package with models with building envelope and energy systems. +

                                    +

                                    + Concept +

                                    +

                                    + There is a complete model for a multi family building: middle + entrance, three storeys (including the groundfloor). +

                                    +

                                    + There is also a complete model for an appartment, considered as a + single unit and not part of a multi family dwelling. +

                                    +

                                    + Attention: there exissa + only a parametrisation (the default parametrisation) for the energy + system for a heavy building build accoring to the energy saving + ordinance WSchV1984. +

                                    +")); +end BuildingAndEnergySystem; diff --git a/AixLib/Obsolete/Year2022/ThermalZones/HighOrder/House/MFD/BuildingEnvelope.mo b/AixLib/Obsolete/Year2022/ThermalZones/HighOrder/House/MFD/BuildingEnvelope.mo new file mode 100644 index 0000000000..ef6efc9d65 --- /dev/null +++ b/AixLib/Obsolete/Year2022/ThermalZones/HighOrder/House/MFD/BuildingEnvelope.mo @@ -0,0 +1,275 @@ +within AixLib.Obsolete.Year2022.ThermalZones.HighOrder.House.MFD; +package BuildingEnvelope + extends Modelica.Icons.Package; + + model OneAppartment_VoWo + parameter Integer TMC = 1 "Thermal Mass Class" annotation(Dialog(group = "Construction parameters", compact = true, descriptionLabel = true), choices(choice = 1 "Heavy", choice = 2 "Medium", choice = 3 "Light", radioButtons = true)); + parameter Integer TIR = 4 "Thermal Insulation Regulation" annotation(Dialog(group = "Construction parameters", compact = true, descriptionLabel = true), choices(choice = 1 + "EnEV_2009", choice = 2 + "EnEV_2002", choice = 3 + "WSchV_1995", choice = 4 + "WSchV_1984", radioButtons = true)); + parameter Integer Floor = 1 "Floor" annotation(Dialog(group = "Floor", compact = true, descriptionLabel = true), choices(choice = 1 "GF", choice = 2 "1F", choice = 3 "2F", radioButtons = true)); + // Sunblind + parameter Boolean use_sunblind = false + "Will sunblind become active automatically?" + annotation(Dialog(group = "Sunblind")); + parameter Real ratioSunblind(min=0.0, max=1.0) + "Sunblind factor. 1 means total blocking of irradiation, 0 no sunblind" + annotation(Dialog(group = "Sunblind", enable=use_sunblind)); + parameter Modelica.Units.SI.Irradiance solIrrThreshold(min=0.0) + "Threshold for global solar irradiation on this surface to enable sunblinding (see also TOutAirLimit)" + annotation (Dialog(group="Sunblind", enable=use_sunblind)); + parameter Modelica.Units.SI.Temperature TOutAirLimit + "Temperature at which sunblind closes (see also solIrrThreshold)" + annotation (Dialog(group="Sunblind", enable=use_sunblind)); + + replaceable model WindowModel = + AixLib.ThermalZones.HighOrder.Components.WindowsDoors.BaseClasses.PartialWindow + constrainedby + AixLib.ThermalZones.HighOrder.Components.WindowsDoors.BaseClasses.PartialWindow + annotation (Dialog(tab="Outer walls", group="Windows"), choicesAllMatching = true); + + replaceable model CorrSolarGainWin = + AixLib.ThermalZones.HighOrder.Components.WindowsDoors.BaseClasses.CorrectionSolarGain.PartialCorG + constrainedby + AixLib.ThermalZones.HighOrder.Components.WindowsDoors.BaseClasses.CorrectionSolarGain.PartialCorG + "Correction model for solar irradiance as transmitted radiation" annotation (choicesAllMatching=true, Dialog(tab="Outer walls", group="Windows", enable = withWindow and outside)); + + AixLib.Obsolete.Year2022.ThermalZones.HighOrder.Rooms.MFD.OneAppartment.Livingroom_VoWo + Livingroom( + TMC=TMC, + TIR=TIR, + Floor=Floor, + redeclare final model WindowModel = WindowModel, + redeclare final model CorrSolarGainWin = CorrSolarGainWin, + final use_sunblind=use_sunblind, + final ratioSunblind=ratioSunblind, + final solIrrThreshold=solIrrThreshold, + final TOutAirLimit=TOutAirLimit) + annotation (Placement(transformation(extent={{-68,26},{-16,78}}))); + AixLib.Obsolete.Year2022.ThermalZones.HighOrder.Rooms.MFD.OneAppartment.Children_VoWo + Children( + TMC=TMC, + TIR=TIR, + Floor=Floor, + redeclare final model WindowModel = WindowModel, + redeclare final model CorrSolarGainWin = CorrSolarGainWin, + final use_sunblind=use_sunblind, + final ratioSunblind=ratioSunblind, + final solIrrThreshold=solIrrThreshold, + final TOutAirLimit=TOutAirLimit) + annotation (Placement(transformation(extent={{36,38},{74,76}}))); + AixLib.Obsolete.Year2022.ThermalZones.HighOrder.Rooms.MFD.OneAppartment.Corridor_VoWo + Corridor( + TMC=TMC, + TIR=TIR, + Floor=Floor, + redeclare final model WindowModel = WindowModel, + redeclare final model CorrSolarGainWin = CorrSolarGainWin, + final use_sunblind=use_sunblind, + final ratioSunblind=ratioSunblind, + final solIrrThreshold=solIrrThreshold, + final TOutAirLimit=TOutAirLimit) + annotation (Placement(transformation(extent={{22,-12},{60,26}}))); + AixLib.Obsolete.Year2022.ThermalZones.HighOrder.Rooms.MFD.OneAppartment.Bedroom_VoWo + Bedroom( + TMC=TMC, + TIR=TIR, + Floor=Floor, + redeclare final model WindowModel = WindowModel, + redeclare final model CorrSolarGainWin = CorrSolarGainWin, + final use_sunblind=use_sunblind, + final ratioSunblind=ratioSunblind, + final solIrrThreshold=solIrrThreshold, + final TOutAirLimit=TOutAirLimit) + annotation (Placement(transformation(extent={{-64,-74},{-20,-30}}))); + AixLib.Obsolete.Year2022.ThermalZones.HighOrder.Rooms.MFD.OneAppartment.Bathroom_VoWo + Bathroom( + TMC=TMC, + TIR=TIR, + Floor=Floor, + redeclare final model WindowModel = WindowModel, + redeclare final model CorrSolarGainWin = CorrSolarGainWin, + final use_sunblind=use_sunblind, + final ratioSunblind=ratioSunblind, + final solIrrThreshold=solIrrThreshold, + final TOutAirLimit=TOutAirLimit) + annotation (Placement(transformation(extent={{-6,-72},{32,-34}}))); + AixLib.Obsolete.Year2022.ThermalZones.HighOrder.Rooms.MFD.OneAppartment.Kitchen_VoWo + Kitchen( + TMC=TMC, + TIR=TIR, + Floor=Floor, + redeclare final model WindowModel = WindowModel, + redeclare final model CorrSolarGainWin = CorrSolarGainWin, + final use_sunblind=use_sunblind, + final ratioSunblind=ratioSunblind, + final solIrrThreshold=solIrrThreshold, + final TOutAirLimit=TOutAirLimit) + annotation (Placement(transformation(extent={{46,-74},{88,-28}}))); + AixLib.Utilities.Interfaces.SolarRad_in SolarRadiation_SE annotation ( + Placement(transformation( + extent={{-10,-10},{10,10}}, + rotation=270, + origin={28,110}))); + AixLib.Utilities.Interfaces.SolarRad_in SolarRadiation_NW annotation ( + Placement(transformation( + extent={{-10,-10},{10,10}}, + rotation=270, + origin={58,110}))); + Modelica.Blocks.Interfaces.RealInput AirExchangePort[5] annotation(Placement(transformation(extent = {{-15, -15}, {15, 15}}, rotation = 270, origin = {-9, 115}), iconTransformation(extent = {{-10, -10}, {10, 10}}, rotation = 270, origin = {-4, 110}))); + Modelica.Blocks.Interfaces.RealInput WindSpeedPort annotation(Placement(transformation(extent = {{-13, -13}, {13, 13}}, rotation = 270, origin = {-41, 113}), iconTransformation(extent = {{-10, -10}, {10, 10}}, rotation = 270, origin = {-38, 110}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermOutside annotation(Placement(transformation(extent = {{-82, 100}, {-62, 120}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermNeighbour_Livingroom annotation(Placement(transformation(extent = {{-120, 80}, {-100, 100}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermNeigbour_Bedroom annotation(Placement(transformation(extent = {{-120, 56}, {-100, 76}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermNeighbour_Child annotation(Placement(transformation(extent = {{100, 80}, {120, 100}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermStaircase annotation(Placement(transformation(extent = {{100, 54}, {120, 74}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermCeiling_Livingroom annotation(Placement(transformation(extent = {{-120, 28}, {-100, 48}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermFloor_Livingroom annotation(Placement(transformation(extent = {{-120, 4}, {-100, 24}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermCeiling_Bedroom annotation(Placement(transformation(extent = {{-120, -22}, {-100, -2}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermFloor_Bedroom annotation(Placement(transformation(extent = {{-120, -46}, {-100, -26}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermCeiling_Bath annotation(Placement(transformation(extent = {{-120, -72}, {-100, -52}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermFloor_Bath annotation(Placement(transformation(extent = {{-120, -100}, {-100, -80}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermCeiling_Children annotation(Placement(transformation(extent = {{100, 26}, {120, 46}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermFloor_Children annotation(Placement(transformation(extent = {{100, 2}, {120, 22}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermCeiling_Corridor annotation(Placement(transformation(extent = {{100, -22}, {120, -2}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermFloor_Corridor annotation(Placement(transformation(extent = {{100, -46}, {120, -26}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermCeiling_Kitchen annotation(Placement(transformation(extent = {{100, -72}, {120, -52}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermFloor_Kitchen annotation(Placement(transformation(extent = {{100, -96}, {120, -76}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermLivingroom annotation(Placement(transformation(extent = {{-60, 12}, {-44, 28}}), iconTransformation(extent = {{-56, 14}, {-44, 28}}))); + AixLib.Utilities.Interfaces.RadPort StarLivingroom annotation (Placement( + transformation(extent={{-40,12},{-24,28}}), iconTransformation(extent + ={{-40,0},{-24,14}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a ThermChildren annotation(Placement(transformation(extent={{34,28}, + {50,44}}), iconTransformation(extent={{34,28}, + {50,44}}))); + AixLib.Utilities.Interfaces.RadPort StarChildren annotation (Placement( + transformation(extent={{60,24},{76,40}}), iconTransformation(extent={ + {56,22},{76,42}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a ThermBedroom annotation(Placement(transformation(extent = {{-60, -20}, {-44, -4}}), iconTransformation(extent = {{-60, -20}, {-44, -4}}))); + AixLib.Utilities.Interfaces.RadPort StarBedroom annotation (Placement( + transformation(extent={{-40,-20},{-24,-4}}), iconTransformation( + extent={{-40,-20},{-24,-2}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a ThermBath annotation(Placement(transformation(extent = {{-20, -28}, {-4, -12}}), iconTransformation(extent = {{-20, -28}, {-4, -12}}))); + AixLib.Utilities.Interfaces.RadPort StarBath annotation (Placement( + transformation(extent={{0,-28},{16,-12}}), iconTransformation(extent= + {{-2,-28},{16,-12}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a ThermKitchen annotation(Placement(transformation(extent = {{40, -22}, {56, -6}}), iconTransformation(extent = {{40, -20}, {56, -4}}))); + AixLib.Utilities.Interfaces.RadPort StarKitchen annotation (Placement( + transformation(extent={{62,-22},{78,-6}}), iconTransformation(extent= + {{34,-44},{52,-26}}))); + equation + connect(Bedroom.SolarRadiation_NW, SolarRadiation_NW) annotation(Line(points = {{-56.96, -74}, {-56, -74}, {-56, -80}, {-80, -80}, {-80, 90}, {58, 90}, {58, 110}}, color = {255, 128, 0})); + connect(Bathroom.SolarRadiation_NW, SolarRadiation_NW) annotation(Line(points = {{0.688, -72}, {0, -72}, {0, -80}, {-80, -80}, {-80, 90}, {58, 90}, {58, 110}}, color = {255, 128, 0})); + connect(Kitchen.SolarRadiation_NW, SolarRadiation_NW) annotation(Line(points = {{59.44, -74}, {56, -74}, {56, -80}, {80, -80}, {80, 90}, {58, 90}, {58, 110}}, color = {255, 128, 0})); + connect(Children.WindSpeedPort, WindSpeedPort) annotation(Line(points = {{36, 66.88}, {20, 66.88}, {20, 90}, {-41, 90}, {-41, 113}}, color = {0, 0, 127})); + connect(Livingroom.WindSpeedPort, WindSpeedPort) annotation(Line(points={{ + -64.9412,58.9333},{-80,58.9333},{-80,90},{-41,90},{-41,113}}, color = {0, 0, 127})); + connect(Bedroom.WindSpeedPort, WindSpeedPort) annotation(Line(points = {{-64, -42.32}, {-80, -42.32}, {-80, 90}, {-41, 90}, {-41, 113}}, color = {0, 0, 127})); + connect(Bathroom.WindSpeedPort, WindSpeedPort) annotation(Line(points = {{-6.304, -46.16}, {-18, -46.16}, {-18, -80}, {80, -80}, {80, 90}, {-41, 90}, {-41, 113}}, color = {0, 0, 127})); + connect(Kitchen.WindSpeedPort, WindSpeedPort) annotation(Line(points = {{46.168, -41.064}, {36, -41.064}, {36, -80}, {80, -80}, {80, 90}, {-41, 90}, {-41, 113}}, color = {0, 0, 127})); + connect(Livingroom.thermOutside, thermOutside) annotation(Line(points={{ + -64.9412,74.5333},{-80,74.5333},{-80,110},{-72,110}}, color = {191, 0, 0})); + connect(Children.thermOutside, thermOutside) annotation(Line(points = {{42.08, 75.696}, {20, 75.696}, {20, 90}, {-72, 90}, {-72, 110}}, color = {191, 0, 0})); + connect(Bedroom.thermOutside, thermOutside) annotation(Line(points = {{-64, -31.76}, {-80, -31.76}, {-80, 90}, {-72, 90}, {-72, 110}}, color = {191, 0, 0})); + connect(Bathroom.thermOutside, thermOutside) annotation(Line(points = {{-6, -35.52}, {-18, -35.52}, {-18, -80}, {-80, -80}, {-80, 90}, {-72, 90}, {-72, 110}}, color = {191, 0, 0})); + connect(Kitchen.thermOutside, thermOutside) annotation(Line(points = {{46.336, -29.84}, {42, -29.84}, {42, -30}, {36, -30}, {36, -80}, {-80, -80}, {-80, 90}, {-72, 90}, {-72, 110}}, color = {191, 0, 0})); + connect(Livingroom.thermNeighbour, thermNeighbour_Livingroom) annotation(Line(points={{ + -64.9412,53.7333},{-80,53.7333},{-80,90},{-110,90}}, color = {191, 0, 0})); + connect(Bedroom.thermNeigbour, thermNeigbour_Bedroom) annotation(Line(points = {{-64, -63.44}, {-80, -63.44}, {-80, 66}, {-110, 66}}, color = {191, 0, 0})); + connect(Children.thermNeighbour, thermNeighbour_Child) annotation(Line(points = {{36, 62.32}, {20, 62.32}, {20, 90}, {110, 90}}, color = {191, 0, 0})); + connect(Children.thermStaircase, thermStaircase) annotation(Line(points = {{36, 57.76}, {20, 57.76}, {20, 90}, {80, 90}, {80, 64}, {110, 64}}, color = {191, 0, 0})); + connect(Corridor.thermStaircase, thermStaircase) annotation(Line(points = {{21.696, 22.96}, {18, 22.96}, {18, -20}, {36, -20}, {36, -80}, {80, -80}, {80, 64}, {110, 64}}, color = {191, 0, 0})); + connect(Livingroom.thermBedroom, Bedroom.thermLivingroom) annotation(Line(points={{ + -64.9412,48.5333},{-80,48.5333},{-80,-47.6},{-64,-47.6}}, color = {191, 0, 0})); + connect(Corridor.thermLivingroom, Livingroom.thermCorridor) annotation(Line(points={{21.696, + 13.84},{18,13.84},{18,-20},{36,-20},{36,-80},{-80,-80},{-80,43.3333}, + {-64.9412,43.3333}}, color = {191, 0, 0})); + connect(Livingroom.thermChildren, Children.thermLivingroom) annotation(Line(points={{ + -64.9412,38.1333},{-80,38.1333},{-80,90},{20,90},{20,48.64},{36, + 48.64}}, color = {191, 0, 0})); + connect(Livingroom.thermCeiling, thermCeiling_Livingroom) annotation(Line(points={{ + -64.9412,32.9333},{-80,32.9333},{-80,38},{-110,38}}, color = {191, 0, 0})); + connect(Livingroom.thermFloor, thermFloor_Livingroom) annotation(Line(points={{ + -64.9412,27.7333},{-80,27.7333},{-80,14},{-110,14}}, color = {191, 0, 0})); + connect(Bedroom.thermCorridor, Corridor.thermBedroom) annotation(Line(points = {{-64, -52.88}, {-80, -52.88}, {-80, -80}, {36, -80}, {36, -20}, {18, -20}, {18, 0}, {22, 0}, {22, 0.16}}, color = {191, 0, 0})); + connect(Bedroom.thermBath, Bathroom.thermBedroom) annotation(Line(points = {{-64, -58.16}, {-80, -58.16}, {-80, -80}, {-18, -80}, {-18, -59.84}, {-6, -59.84}}, color = {191, 0, 0})); + connect(Bedroom.thermCeiling, thermCeiling_Bedroom) annotation(Line(points = {{-64, -68.72}, {-80, -68.72}, {-80, -12}, {-110, -12}}, color = {191, 0, 0})); + connect(Bedroom.thermFloor, thermFloor_Bedroom) annotation(Line(points = {{-64, -74}, {-80, -74}, {-80, -36}, {-110, -36}}, color = {191, 0, 0})); + connect(Bathroom.thermCorridor, Corridor.thermBath) annotation(Line(points = {{-6, -50.72}, {-18, -50.72}, {-18, -80}, {36, -80}, {36, -20}, {18, -20}, {18, 4}, {22, 4}, {22, 4.72}}, color = {191, 0, 0})); + connect(Bathroom.thermKitchen, Kitchen.thermBath) annotation(Line(points = {{-6, -55.28}, {-18, -55.28}, {-18, -80}, {36, -80}, {36, -62.96}, {46, -62.96}}, color = {191, 0, 0})); + connect(Kitchen.thermStaircase, thermStaircase) annotation(Line(points = {{46, -55.6}, {36, -55.6}, {36, -80}, {80, -80}, {80, 64}, {110, 64}}, color = {191, 0, 0})); + connect(Bathroom.thermCeiling, thermCeiling_Bath) annotation(Line(points = {{-6, -64.4}, {-18, -64.4}, {-18, -80}, {-80, -80}, {-80, -62}, {-110, -62}}, color = {191, 0, 0})); + connect(Bathroom.thermFloor, thermFloor_Bath) annotation(Line(points = {{-6, -68.96}, {-18, -68.96}, {-18, -80}, {-110, -80}, {-110, -90}}, color = {191, 0, 0})); + connect(Kitchen.thermCorridor, Corridor.thermKitchen) annotation(Line(points = {{46, -48.24}, {36, -48.24}, {36, -20}, {18, -20}, {18, 18.4}, {21.696, 18.4}}, color = {191, 0, 0})); + connect(Children.thermCorridor, Corridor.thermChild) annotation(Line(points = {{36, 53.2}, {20, 53.2}, {20, 90}, {80, 90}, {80, -80}, {36, -80}, {36, -20}, {18, -20}, {18, 9.28}, {21.696, 9.28}}, color = {191, 0, 0})); + connect(Children.thermCeiling, thermCeiling_Children) annotation(Line(points = {{36, 44.08}, {20, 44.08}, {20, 90}, {80, 90}, {80, 36}, {110, 36}}, color = {191, 0, 0})); + connect(Children.thermFloor, thermFloor_Children) annotation(Line(points = {{36, 39.216}, {20, 39.216}, {20, 90}, {80, 90}, {80, 12}, {110, 12}}, color = {191, 0, 0})); + connect(Kitchen.thermCeiling, thermCeiling_Kitchen) annotation(Line(points = {{46, -70.32}, {36, -70.32}, {36, -80}, {80, -80}, {80, -62}, {110, -62}}, color = {191, 0, 0})); + connect(Kitchen.thermFloor, thermFloor_Kitchen) annotation(Line(points = {{52.72, -74}, {36, -74}, {36, -80}, {80, -80}, {80, -86}, {110, -86}}, color = {191, 0, 0})); + connect(Livingroom.ThermRoom, thermLivingroom) annotation(Line(points={{ + -42.3059,54.4267},{-42.3059,51.64},{-52,51.64},{-52,20}}, color = {191, 0, 0})); + connect(Livingroom.StarInside1, StarLivingroom) annotation(Line(points={{ + -38.0235,54.4267},{-38.0235,54},{-32,54},{-32,20}}, color = {95, 95, 95}, pattern = LinePattern.Solid)); + connect(Children.StarRoom, StarChildren) annotation(Line(points = {{53.632, 61.408}, {54, 60}, {72, 60}, {72, 32}, {68, 32}}, color = {95, 95, 95}, pattern = LinePattern.Solid)); + connect(Bedroom.StarRoom, StarBedroom) annotation(Line(points = {{-41.472, -53.584}, {-32, -53.584}, {-32, -12}}, color = {95, 95, 95}, pattern = LinePattern.Solid)); + connect(Bathroom.ThermRoom, ThermBath) annotation(Line(points = {{6.464, -55.584}, {6.464, -30}, {-12, -30}, {-12, -20}}, color = {191, 0, 0})); + connect(Bathroom.StarRoom, StarBath) annotation(Line(points = {{12.24, -55.888}, {12.24, -44}, {6, -44}, {6, -30}, {8, -30}, {8, -20}}, color = {95, 95, 95}, pattern = LinePattern.Solid)); + connect(Kitchen.StarRoom, StarKitchen) annotation(Line(points = {{63.808, -53.392}, {58, -53.392}, {58, -14}, {70, -14}}, color = {95, 95, 95}, pattern = LinePattern.Solid)); + connect(ThermBath, ThermBath) annotation(Line(points = {{-12, -20}, {-12, -20}}, color = {191, 0, 0})); + connect(Livingroom.AirExchangePort, AirExchangePort[1]) annotation(Line(points={{ + -64.9412,65.8667},{-80,65.8667},{-80,90},{-9,90},{-9,109}}, color = {0, 0, 127})); + connect(Children.AirExchangePort, AirExchangePort[2]) annotation(Line(points={{36, + 71.44},{20,71.44},{20,90},{-9,90},{-9,112}}, color = {0, 0, 127})); + connect(Children.ThermRoom, ThermChildren) annotation(Line(points={{48.768, + 61.712},{46,61.712},{46,36},{42,36}}, color = {191, 0, 0})); + connect(Bedroom.ThermRoom, ThermBedroom) annotation(Line(points = {{-48.16, -53.936}, {-52, -53.936}, {-52, -40}, {-48, -40}, {-48, -30}, {-52, -30}, {-52, -12}}, color = {191, 0, 0})); + connect(Kitchen.AirExchangePort, AirExchangePort[3]) annotation(Line(points = {{46.168, -35.176}, {36, -35.176}, {36, -80}, {80, -80}, {80, 90}, {-9, 90}, {-9, 115}}, color = {0, 0, 127})); + connect(Bathroom.AirExchangePort, AirExchangePort[4]) annotation(Line(points={{-6.304, + -40.08},{-18,-40.08},{-18,-80},{80,-80},{80,90},{-9,90},{-9,118}}, color = {0, 0, 127})); + connect(Bedroom.AirExchangePort, AirExchangePort[5]) annotation(Line(points={{-64, + -37.04},{-80,-37.04},{-80,90},{-9,90},{-9,121}}, color = {0, 0, 127})); + connect(Corridor.thermFloor, thermFloor_Corridor) annotation(Line(points = {{22, -8.96}, {18, -8.96}, {18, -20}, {36, -20}, {36, -80}, {80, -80}, {80, -36}, {110, -36}}, color = {191, 0, 0})); + connect(Corridor.thermCeiling, thermCeiling_Corridor) annotation(Line(points = {{22, -4.4}, {18, -4.4}, {18, -20}, {36, -20}, {36, -80}, {80, -80}, {80, -12}, {110, -12}}, color = {191, 0, 0})); + connect(Kitchen.ThermRoom, ThermKitchen) annotation(Line(points = {{64.144, -47.872}, {58, -47.872}, {58, -14}, {48, -14}}, color = {191, 0, 0})); + connect(Children.Strahlung_SE, SolarRadiation_SE) annotation(Line(points = {{46.64, 77.52}, {46.64, 90}, {28, 90}, {28, 110}}, color = {255, 128, 0})); + connect(Livingroom.SolarRadiation_SE, SolarRadiation_SE) annotation(Line(points={{ + -52.0941,75.2267},{-52.0941,90},{28,90},{28,110}}, color = {255, 128, 0})); + annotation(Diagram(coordinateSystem(preserveAspectRatio = false, extent = {{-150, -150}, {150, 150}}), graphics), Icon(coordinateSystem(preserveAspectRatio = true, extent = {{-150, -150}, {150, 150}}), graphics={ Bitmap(extent={{ + -86,-96},{88,94}}, fileName= + "modelica://AixLib/Resources/Images/Building/HighOrder/MFD_FloorPlan_En.PNG"), Rectangle(extent = {{-52, 56}, {-4, 36}}, fillColor = {255, 255, 255}, + fillPattern = FillPattern.Solid, pattern=LinePattern.None), Text(extent = {{-72, 58}, {16, 44}}, lineColor = {0, 0, 0}, textString = "Livingroom"), Rectangle(extent = {{28, 56}, {70, 18}}, fillColor = {255, 255, 255}, + fillPattern = FillPattern.Solid, pattern=LinePattern.None), Text(extent={{ + 12,60},{86,48}}, lineColor = {0, 0, 0}, textString = "Children"), Rectangle(extent = {{-8, 6}, {52, -14}}, fillColor = {170, 255, 255}, + fillPattern = FillPattern.Solid, pattern=LinePattern.None, lineColor = {170, 255, 255}), Text(extent = {{-16, 4}, {58, -8}}, lineColor = {0, 0, 0}, textString = "Corridor"), Rectangle(extent = {{-62, -28}, {-20, -78}}, fillColor = {255, 255, 255}, + fillPattern = FillPattern.Solid, pattern=LinePattern.None), Text(extent={{ + -74,-50},{0,-62}}, lineColor = {0, 0, 0}, textString = "Bedroom"), Rectangle(extent = {{-8, -28}, {12, -70}}, fillColor = {255, 255, 255}, + fillPattern = FillPattern.Solid, pattern=LinePattern.None), Text(extent={{ + -32,-46},{42,-58}}, lineColor = {0, 0, 0}, textString = "Bath"), Rectangle(extent = {{16, -28}, {52, -68}}, fillColor = {255, 255, 255}, + fillPattern = FillPattern.Solid, pattern=LinePattern.None), Text(extent = {{0, -54}, {74, -66}}, lineColor = {0, 0, 0}, textString = "Kitchen")}), Documentation(info = "

                                    + Overview +

                                    +

                                    + Complete model appartment +

                                    +
                                      +
                                    • + April 18, 2014 by Ana Constantin:
                                      + Added documentation +
                                    • +
                                    • + August 16, 2011 by Ana Constantin:
                                      + Implemented +
                                    • +
                                    +")); + end OneAppartment_VoWo; + annotation(Documentation(info = "

                                    + Overview +

                                    +

                                    + Package for the appartment model used for the muti family dwelling. +

                                    +")); +end BuildingEnvelope; diff --git a/AixLib/Obsolete/Year2022/ThermalZones/HighOrder/House/MFD/EnergySystem.mo b/AixLib/Obsolete/Year2022/ThermalZones/HighOrder/House/MFD/EnergySystem.mo new file mode 100644 index 0000000000..d3d396ecec --- /dev/null +++ b/AixLib/Obsolete/Year2022/ThermalZones/HighOrder/House/MFD/EnergySystem.mo @@ -0,0 +1,529 @@ +within AixLib.Obsolete.Year2022.ThermalZones.HighOrder.House.MFD; +package EnergySystem + extends Modelica.Icons.Package; + + package OneAppartment + extends Modelica.Icons.Package; + + model Radiators + //Pipe lengths + replaceable package Medium = + Modelica.Media.Water.ConstantPropertyLiquidWater + "Medium in the system" annotation(Dialog(group = "Medium"), choicesAllMatching = true); + parameter Modelica.Units.SI.Length Length_thSt=2.5 "L1" annotation (Dialog( + group="Pipe lengths", + descriptionLabel=true, + joinNext=true)); + parameter Modelica.Units.SI.Length Length_thBath=2.5 "L2 " annotation ( + Dialog( + group="Pipe lengths", + descriptionLabel=true, + joinNext=true)); + parameter Modelica.Units.SI.Length Length_thChildren1=2.3 "L3 " annotation ( + Dialog( + group="Pipe lengths", + descriptionLabel=true, + joinNext=true)); + parameter Modelica.Units.SI.Length Length_thChildren2=1.5 "L4 " + annotation (Dialog(group="Pipe lengths", descriptionLabel=true)); + parameter Modelica.Units.SI.Length Length_toKi=2.5 "l5" annotation (Dialog( + group="Pipe lengths", + descriptionLabel=true, + joinNext=true)); + parameter Modelica.Units.SI.Length Length_toBath=2 "l4 " annotation (Dialog( + group="Pipe lengths", + descriptionLabel=true, + joinNext=true)); + parameter Modelica.Units.SI.Length Length_toChildren=0.5 "l3 " annotation ( + Dialog( + group="Pipe lengths", + descriptionLabel=true, + joinNext=true)); + parameter Modelica.Units.SI.Length Length_toBedroom=4.0 "l2 " annotation ( + Dialog( + group="Pipe lengths", + descriptionLabel=true, + joinNext=true)); + parameter Modelica.Units.SI.Length Length_toLi=7 "l1 " annotation (Dialog( + group="Pipe lengths", + groupImage= + "modelica://AixLib/Resources/Images/Building/HighOrder/GroundFloor_Hydraulics.png", + descriptionLabel=true)); + + //Pipe diameters + parameter Modelica.Units.SI.Diameter Diam_Main=0.016 "Diameter main pipe" + annotation (Dialog(group="Pipe diameters", descriptionLabel=true)); + parameter Modelica.Units.SI.Diameter Diam_Sec=0.013 + "Diameter secondary pipe " + annotation (Dialog(group="Pipe diameters", descriptionLabel=true)); + //Hydraulic resistance + parameter Real zeta_lateral = 2.5 "zeta lateral" annotation(Dialog(group = "Hydraulic resistance", descriptionLabel = true, joinNext = true)); + parameter Real zeta_through = 0.6 "zeta through" annotation(Dialog(group = "Hydraulic resistance", descriptionLabel = true)); + parameter Real zeta_bend = 1.0 "zeta bend" annotation(Dialog(group = "Hydraulic resistance", descriptionLabel = true)); + //Radiators + parameter AixLib.DataBase.Radiators.RadiatorBaseDataDefinition Type_Radiator_Livingroom = AixLib.DataBase.Radiators.Standard_MFD_WSchV1984_OneAppartment.Radiator_Livingroom() + "Livingroom" annotation(Dialog(group = "Radiators", descriptionLabel = true)); + parameter AixLib.DataBase.Radiators.RadiatorBaseDataDefinition Type_Radiator_Bedroom = AixLib.DataBase.Radiators.Standard_MFD_WSchV1984_OneAppartment.Radiator_Bedroom() + "Bedroom" annotation(Dialog(group = "Radiators", descriptionLabel = true)); + parameter AixLib.DataBase.Radiators.RadiatorBaseDataDefinition Type_Radiator_Children = AixLib.DataBase.Radiators.Standard_MFD_WSchV1984_OneAppartment.Radiator_Children() + "Corridor" annotation(Dialog(group = "Radiators", descriptionLabel = true)); + parameter AixLib.DataBase.Radiators.RadiatorBaseDataDefinition Type_Radiator_Bath = AixLib.DataBase.Radiators.Standard_MFD_WSchV1984_OneAppartment.Radiator_Bathroom() "Bath" annotation(Dialog(group = "Radiators", descriptionLabel = true)); + parameter AixLib.DataBase.Radiators.RadiatorBaseDataDefinition Type_Radiator_Kitchen = AixLib.DataBase.Radiators.Standard_MFD_WSchV1984_OneAppartment.Radiator_Kitchen() + "Kitchen" annotation(Dialog(group = "Radiators", descriptionLabel = true)); + Fluid.HeatExchangers.Radiators.Radiator radiatorKi( + radiatorType=Type_Radiator_Kitchen, + m_flow_nominal=0.01, + redeclare package Medium = Medium, + selectable=true) + annotation (Placement(transformation(extent={{-89,-83},{-106,-66}}))); + Fluid.HeatExchangers.Radiators.Radiator radiatorBa( + radiatorType=Type_Radiator_Bath, + m_flow_nominal=0.01, + redeclare package Medium = Medium, + selectable=true) + annotation (Placement(transformation(extent={{83,-48},{100,-31}}))); + Obsolete.Year2021.Fluid.Actuators.Valves.ThermostaticValve valveKi( + Kvs=0.41, + Kv_setT=0.262, + m_flow_small=0.0001, + redeclare package Medium = Medium, + dp(start=1000)) annotation (Placement(transformation(extent={{-67,-82.5},{-82,-66.5}}))); + Fluid.HeatExchangers.Radiators.Radiator radiatorLi( + radiatorType=Type_Radiator_Livingroom, + m_flow_nominal=0.01, + redeclare package Medium = Medium, + selectable=true) + annotation (Placement(transformation(extent={{-95,-5},{-113,13}}))); + Fluid.HeatExchangers.Radiators.Radiator radiatorBr( + radiatorType=Type_Radiator_Bedroom, + m_flow_nominal=0.01, + redeclare package Medium = Medium, + selectable=true) + annotation (Placement(transformation(extent={{78,72},{94,88}}))); + Fluid.HeatExchangers.Radiators.Radiator radiatorCh( + radiatorType=Type_Radiator_Children, + m_flow_nominal=0.01, + redeclare package Medium = Medium, + selectable=true) + annotation (Placement(transformation(extent={{86,33},{101,48}}))); + Obsolete.Year2021.Fluid.Actuators.Valves.ThermostaticValve valveBa( + Kvs=0.24, + Kv_setT=0.162, + m_flow_small=0.0001, + redeclare package Medium = Medium, + dp(start=1000)) annotation (Placement(transformation(extent={{38,-47},{50,-31}}))); + Obsolete.Year2021.Fluid.Actuators.Valves.ThermostaticValve valveLi( + Kvs=1.43, + Kv_setT=0.4, + m_flow_small=0.0001, + redeclare package Medium = Medium, + dp(start=1000)) annotation (Placement(transformation(extent={{-67,-4},{-79,12}}))); + Obsolete.Year2021.Fluid.Actuators.Valves.ThermostaticValve valveCh( + Kvs=0.16, + Kv_setT=0.088, + m_flow_small=0.0001, + redeclare package Medium = Medium, + dp(start=1000)) annotation (Placement(transformation(extent={{64,32},{76,48}}))); + Obsolete.Year2021.Fluid.Actuators.Valves.ThermostaticValve valveBe( + Kvs=0.24, + Kv_setT=0.182, + m_flow_small=0.0001, + redeclare package Medium = Medium, + dp(start=1000)) annotation (Placement(transformation(extent={{49,74},{60,87}}))); + Modelica.Fluid.Pipes.StaticPipe thStF( + diameter = Diam_Main, + length = Length_thSt, + redeclare package Medium = Medium) "through the storage room, flow stream" annotation(Placement(transformation(extent = {{57, -85}, {40, -74}}))); + Modelica.Fluid.Pipes.StaticPipe toKiF( + diameter = Diam_Sec, + length = Length_toKi, + redeclare package Medium = Medium) "to kitchen, flow stream" annotation(Placement(transformation(extent = {{8, -5}, {-8, 5}}, origin = {-49, -74.5}))); + Modelica.Fluid.Pipes.StaticPipe thStR( + diameter = Diam_Main, + length = Length_thSt, + redeclare package Medium = Medium) + "through the storage room, return stream" annotation(Placement(transformation(extent = {{40, -102}, {58, -90}}))); + Modelica.Fluid.Pipes.StaticPipe toKiR( + diameter = Diam_Sec, + length = Length_toKi, + redeclare package Medium = Medium) "to kitchen, return stream" annotation(Placement(transformation(extent = {{-72, -102}, {-56, -90}}))); + Modelica.Fluid.Pipes.StaticPipe thBathF( + diameter = Diam_Main, + length = Length_thBath, + redeclare package Medium = Medium) "through Bath, flow stream" annotation(Placement(transformation(extent = {{8, 4.5}, {-8, -4.5}}, rotation = 270, origin = {-4.5, -62}))); + Modelica.Fluid.Pipes.StaticPipe thBathR( + diameter = Diam_Main, + length = Length_thBath, + redeclare package Medium = Medium) "through bath, return stream" annotation(Placement(transformation(extent = {{8.75, -4.25}, {-8.75, 4.25}}, rotation = 90, origin = {-18.25, -62.75}))); + Modelica.Fluid.Pipes.StaticPipe thChildren1R( + diameter = Diam_Main, + length = Length_thChildren1, + redeclare package Medium = Medium) "through children room 1, return stream" annotation(Placement(transformation(extent = {{6.5, -5}, {-6.5, 5}}, rotation = 90, origin = {-18, -27.5}))); + Modelica.Fluid.Pipes.StaticPipe thChildren1F( + diameter = Diam_Main, + length = Length_thChildren1, + redeclare package Medium = Medium) "through chidlren room 1, flow stream" annotation(Placement(transformation(extent = {{6.5, 5}, {-6.5, -5}}, rotation = 270, origin = {-5, -26.5}))); + Modelica.Fluid.Pipes.StaticPipe toBathF( + diameter = Diam_Sec, + length = Length_toBath, + redeclare package Medium = Medium) "to Bath, flow stream" annotation(Placement(transformation(extent = {{-8.5, 4.5}, {8.5, -4.5}}, origin = {18.5, -38.5}))); + Modelica.Fluid.Pipes.StaticPipe toBathR( + diameter = Diam_Sec, + length = Length_toBath, + redeclare package Medium = Medium) "to bath return stream" annotation(Placement(transformation(extent = {{8.5, 4.5}, {-8.5, -4.5}}, origin = {18.5, -49.5}))); + Modelica.Fluid.Interfaces.FluidPort_b RETURN(redeclare package Medium = + Medium) + "Fluid connector b (positive design flow direction is from port_a to port_b)" annotation(Placement(transformation(extent = {{66, -114}, {86, -94}}))); + Modelica.Fluid.Interfaces.FluidPort_a FLOW(redeclare package Medium = Medium) + "Fluid connector a (positive design flow direction is from port_a to port_b)" annotation(Placement(transformation(extent = {{92, -114}, {112, -94}}))); + Modelica.Fluid.Pipes.StaticPipe toChildrenF( + diameter = Diam_Sec, + length = Length_toChildren, + redeclare package Medium = Medium) "to Children, flow stream" annotation(Placement(transformation(extent = {{-8.5, 4.5}, {8.5, -4.5}}, origin = {45.5, 40.5}))); + Modelica.Fluid.Pipes.StaticPipe toChildrenR( + diameter = Diam_Sec, + length = Length_toChildren, + redeclare package Medium = Medium) "to Children, return stream" annotation(Placement(transformation(extent = {{7.5, 4.5}, {-7.5, -4.5}}, origin = {47.5, 27}))); + Modelica.Fluid.Pipes.StaticPipe thChildrenF2( + diameter = Diam_Main, + length = Length_thChildren2, + redeclare package Medium = Medium) "through chidlren room, flow stream" annotation(Placement(transformation(extent = {{7, 5}, {-7, -5}}, rotation = 270, origin = {-5, 13}))); + Modelica.Fluid.Pipes.StaticPipe thChildrenR2( + diameter = Diam_Main, + length = Length_thChildren2, + redeclare package Medium = Medium) "through chidlren room, return stream" annotation(Placement(transformation(extent = {{7.5, -5}, {-7.5, 5}}, rotation = 90, origin = {-19, 12.5}))); + Modelica.Fluid.Pipes.StaticPipe toBedroomF( + diameter = Diam_Sec, + length = Length_toBedroom, + redeclare package Medium = Medium) "to Bedroom , flow stream" annotation(Placement(transformation(extent = {{-6.5, 4.5}, {6.5, -4.5}}, origin = {23.5, 80.5}))); + Modelica.Fluid.Pipes.StaticPipe toBedroomR( + diameter = Diam_Sec, + length = Length_toBedroom, + redeclare package Medium = Medium) "to Bedroom, return stream" annotation(Placement(transformation(extent = {{6.5, 4.5}, {-6.5, -4.5}}, origin = {20.5, 66}))); + Modelica.Fluid.Pipes.StaticPipe toLiF( + diameter = Diam_Sec, + length = Length_toLi, + redeclare package Medium = Medium) "to livingroom, flow stream" annotation(Placement(transformation(extent = {{6, -4.5}, {-6, 4.5}}, origin = {-47.5, 3}))); + Modelica.Fluid.Pipes.StaticPipe toLiR( + redeclare package Medium = Medium, + length=Length_toLi, + diameter=Diam_Main) "to livingroom, return stream" annotation(Placement(transformation(extent = {{6.5, -5}, {-6.5, 5}}, rotation = 180, origin = {-88.5, -16.5}))); + AixLib.Utilities.Interfaces.RadPort radLi annotation (Placement(transformation(extent={{-148,38},{-132,55}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a convLi + annotation (Placement(transformation(extent={{-146,25},{-133,38}}))); + AixLib.Utilities.Interfaces.RadPort radKi annotation (Placement(transformation(extent={{-146,-50},{-129,-34}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a convKi + annotation (Placement(transformation(extent={{-145,-66},{-131,-51}}))); + AixLib.Utilities.Interfaces.RadPort radBe annotation (Placement(transformation(extent={{128,88},{146,106}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a convBe + annotation (Placement(transformation(extent={{130,64},{146,82}}))); + AixLib.Utilities.Interfaces.RadPort radCh annotation (Placement(transformation(extent={{130,39},{150,59}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a convCh + annotation (Placement(transformation(extent={{131,17},{146,34}}))); + AixLib.Utilities.Interfaces.RadPort radBa annotation (Placement(transformation(extent={{128,-38},{148,-18}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a convBa + annotation (Placement(transformation(extent={{129,-59},{148,-41}}))); + Modelica.Blocks.Interfaces.RealInput TSet[5] annotation(Placement(transformation(extent = {{-123, 78}, {-95, 108}}), iconTransformation(extent = {{-10.5, -12}, {10.5, 12}}, rotation = 270, origin = {-105.5, 96}))); + Fluid.FixedResistances.HydraulicResistance hydResInflow( + zeta=zeta_bend, + diameter=Diam_Main, + redeclare package Medium = Medium) "hydraulic resistance in floor" + annotation (Placement(transformation(extent={{24,-84},{10,-75}}))); + Fluid.FixedResistances.HydraulicResistance hydResRadKi( + zeta=3*zeta_bend, + diameter=Diam_Sec, + redeclare package Medium = Medium) + annotation (Placement(transformation(extent={{-113,-100.5},{-99,-91.5}}))); + Fluid.FixedResistances.HydraulicResistance hydResBendRight( + zeta=zeta_bend, + diameter=Diam_Main, + redeclare package Medium = Medium, + m_flow_nominal=0.0001) "hydraulic resistance bend right" + annotation (Placement(transformation( + extent={{-3.25,-2.25},{3.25,2.25}}, + rotation=90, + origin={-3.75,-75.75}))); + Fluid.FixedResistances.HydraulicResistance hydResRadBa( + zeta=2*zeta_bend, + diameter=Diam_Sec, + redeclare package Medium = Medium) + annotation (Placement(transformation(extent={{67,-53},{57,-44}}))); + Fluid.FixedResistances.HydraulicResistance hydResRadLi( + zeta=3*zeta_bend, + diameter=Diam_Sec, + redeclare package Medium = Medium) + annotation (Placement(transformation(extent={{-116,-21},{-102,-12}}))); + Fluid.FixedResistances.HydraulicResistance hydResRadCh( + zeta=2*zeta_bend, + diameter=Diam_Sec, + redeclare package Medium = Medium) + annotation (Placement(transformation(extent={{84,22.5},{74,31.5}}))); + Fluid.FixedResistances.HydraulicResistance hydResRadBe( + zeta=3*zeta_bend, + diameter=Diam_Sec, + redeclare package Medium = Medium) + annotation (Placement(transformation(extent={{74,61.5},{60,70.5}}))); + Modelica.Thermal.HeatTransfer.Sensors.TemperatureSensor tempSensorLi + annotation (Placement(transformation(extent={{-108,30},{-96,42}}))); + Modelica.Thermal.HeatTransfer.Sensors.TemperatureSensor tempSensorBe + annotation (Placement(transformation(extent={{75,92},{63,104}}))); + Modelica.Thermal.HeatTransfer.Sensors.TemperatureSensor tempSensorCh + annotation (Placement(transformation(extent={{88,49},{76,61}}))); + Modelica.Thermal.HeatTransfer.Sensors.TemperatureSensor tempSensorBa + annotation (Placement(transformation(extent={{66,-21},{54,-9}}))); + Modelica.Thermal.HeatTransfer.Sensors.TemperatureSensor tempSensorKi + annotation (Placement(transformation(extent={{-91,-57},{-79,-45}}))); + equation + connect(radiatorLi.port_a, valveLi.port_b) annotation (Line( + points={{-95,4},{-79,4}}, + color={255,0,0}, + thickness=0.5)); + connect(valveBa.port_b, radiatorBa.port_a) annotation (Line( + points={{50,-39},{83,-39},{83,-39.5}}, + color={255,0,0}, + thickness=0.5)); + connect(valveCh.port_b, radiatorCh.port_a) annotation (Line( + points={{76,40},{86,40},{86,40.5}}, + color={255,0,0}, + thickness=0.5)); + connect(valveBe.port_b, radiatorBr.port_a) annotation (Line( + points={{60,80.5},{78,80.5},{78,80}}, + color={255,0,0}, + thickness=0.5)); + connect(thStR.port_b, RETURN) annotation(Line(points = {{58, -96}, {76, -96}, {76, -104}}, color = {0, 0, 255}, thickness = 0.5)); + connect(thStF.port_a, FLOW) annotation(Line(points = {{57, -79.5}, {60, -80}, {62, -80}, {62, -95}, {102, -95}, {102, -104}}, color = {255, 0, 0}, thickness = 0.5)); + connect(toBathF.port_b, valveBa.port_a) annotation (Line( + points={{27,-38.5},{39,-38.5},{39,-39},{38,-39}}, + color={255,0,0}, + thickness=0.5)); + connect(toChildrenF.port_b, valveCh.port_a) annotation (Line( + points={{54,40.5},{56,40},{64,40}}, + color={255,0,0}, + thickness=0.5)); + connect(toBedroomF.port_b, valveBe.port_a) annotation (Line( + points={{30,80.5},{49,80.5}}, + color={255,0,0}, + thickness=0.5)); + connect(toLiF.port_b, valveLi.port_a) annotation (Line( + points={{-53.5,3},{-53.5,4},{-67,4}}, + color={255,0,0}, + thickness=0.5)); + connect(valveKi.port_a, toKiF.port_b) annotation (Line( + points={{-67,-74.5},{-57,-74.5}}, + color={255,0,0}, + thickness=0.5)); + connect(radiatorKi.port_a, valveKi.port_b) annotation (Line( + points={{-89,-74.5},{-82,-74.5}}, + color={255,0,0}, + thickness=0.5)); + connect(hydResInflow.port_a, thStF.port_b) annotation (Line( + points={{24,-79.5},{40,-79.5}}, + color={255,0,0}, + thickness=0.5)); + connect(radiatorKi.port_b, hydResRadKi.port_a) annotation (Line( + points={{-106,-74.5},{-118,-74.5},{-118,-75},{-130,-75},{-130,-96},{-113, + -96}}, + color={0,128,255}, + thickness=0.5)); + connect(hydResRadKi.port_b, toKiR.port_a) annotation (Line( + points={{-99,-96},{-72,-96}}, + color={0,128,255}, + thickness=0.5)); + connect(toBathR.port_a, hydResRadBa.port_b) annotation (Line( + points={{27,-49.5},{42,-49.5},{42,-48.5},{57,-48.5}}, + color={0,128,255}, + thickness=0.5)); + connect(hydResRadBa.port_a, radiatorBa.port_b) annotation (Line( + points={{67,-48.5},{127,-48.5},{127,-39.5},{100,-39.5}}, + color={0,128,255}, + thickness=0.5)); + connect(hydResRadLi.port_b, toLiR.port_a) annotation (Line( + points={{-102,-16.5},{-95,-16.5}}, + color={0,128,255}, + thickness=0.5)); + connect(hydResRadLi.port_a, radiatorLi.port_b) annotation (Line( + points={{-116,-16.5},{-129,-16.5},{-129,4},{-113,4}}, + color={0,128,255}, + thickness=0.5)); + connect(toChildrenR.port_a, hydResRadCh.port_b) annotation (Line( + points={{55,27},{74,27}}, + color={0,128,255}, + thickness=0.5)); + connect(hydResRadCh.port_a, radiatorCh.port_b) annotation (Line( + points={{84,27},{126,27},{126,40.5},{101,40.5}}, + color={0,128,255}, + thickness=0.5)); + connect(toBedroomR.port_a, hydResRadBe.port_b) annotation (Line( + points={{27,66},{60,66}}, + color={0,128,255}, + thickness=0.5)); + connect(hydResRadBe.port_a, radiatorBr.port_b) annotation (Line( + points={{74,66},{126,66},{126,80},{94,80}}, + color={0,128,255}, + thickness=0.5)); + connect(hydResBendRight.port_b, thBathF.port_a) annotation (Line( + points={{-3.75,-72.5},{-3.75,-70},{-4.5,-70}}, + color={0,127,255})); + + connect(toKiR.port_b, thStR.port_a) annotation(Line(points = {{-56, -96}, {40, -96}}, color = {0, 127, 255}, thickness = 0.5)); + connect(thBathR.port_b, thStR.port_a) annotation(Line(points = {{-18.25, -71.5}, {-18.25, -96}, {40, -96}}, color = {0, 127, 255}, thickness = 0.5)); + connect(thChildren1R.port_b, thBathR.port_a) annotation(Line(points = {{-18, -34}, {-18, -54}, {-18.25, -54}}, color = {0, 127, 255}, thickness = 0.5)); + connect(thChildrenR2.port_b, thChildren1R.port_a) annotation(Line(points = {{-19, 5}, {-19, -21}, {-18, -21}}, color = {0, 127, 255}, thickness = 0.5)); + connect(toLiR.port_b, thChildren1R.port_a) annotation(Line(points = {{-82, -16.5}, {-19, -16.5}, {-19, -21}, {-18, -21}}, color = {0, 127, 255}, thickness = 0.5)); + connect(toBedroomR.port_b, thChildrenR2.port_a) annotation(Line(points = {{14, 66}, {-19, 66}, {-19, 20}}, color = {0, 127, 255}, thickness = 0.5)); + connect(toChildrenR.port_b, thChildrenR2.port_a) annotation(Line(points = {{40, 27}, {-19, 27}, {-19, 20}}, color = {0, 127, 255}, thickness = 0.5)); + connect(toBathR.port_b, thBathR.port_a) annotation(Line(points = {{10, -49.5}, {-18, -49.5}, {-18, -54}, {-18.25, -54}}, color = {0, 127, 255}, thickness = 0.5)); + connect(hydResBendRight.port_a, hydResInflow.port_b) annotation (Line( + points={{-3.75,-79},{-3.75,-79.5},{10,-79.5}}, + color={0,127,255})); + connect(thBathF.port_b, toBathF.port_a) annotation(Line(points = {{-4.5, -54}, {-4.5, -38.5}, {10, -38.5}}, color = {255, 0, 0}, thickness = 0.5)); + connect(toKiF.port_a, hydResInflow.port_b) annotation (Line( + points={{-41,-74.5},{-23,-74.5},{-23,-80},{10,-80},{10,-79.5}}, + color={255,0,0}, + thickness=0.5)); + connect(thBathF.port_b, thChildren1F.port_a) annotation(Line(points = {{-4.5, -54}, {-4.5, -44}, {-5, -44}, {-5, -33}}, color = {255, 0, 0}, thickness = 0.5)); + connect(thChildren1F.port_b, thChildrenF2.port_a) annotation(Line(points = {{-5, -20}, {-5, 6}}, color = {0, 127, 255})); + connect(thChildrenF2.port_b, toChildrenF.port_a) annotation(Line(points = {{-5, 20}, {-5, 40.5}, {37, 40.5}}, color = {255, 0, 0}, thickness = 0.5)); + connect(thChildrenF2.port_b, toBedroomF.port_a) annotation(Line(points = {{-5, 20}, {-5, 80.5}, {17, 80.5}}, color = {255, 0, 0}, thickness = 0.5)); + connect(thChildren1F.port_b, toLiF.port_a) annotation(Line(points = {{-5, -20}, {-5, 3}, {-41.5, 3}}, color = {255, 0, 0}, thickness = 0.5)); + connect(valveBe.T_setRoom, TSet[2]) annotation (Line( + points={{57.58,86.87},{57.58,90},{-109,90}}, + color={0,0,127})); + connect(valveCh.T_setRoom, TSet[3]) annotation (Line( + points={{73.36,47.84},{73.36,57},{-77,57},{-77,92},{-109,92},{-109,93}}, + color={0,0,127})); + connect(valveBa.T_setRoom, TSet[4]) annotation (Line( + points={{47.36,-31.16},{47.36,-7},{18,-7},{18,29},{-76,29},{-76,96},{ + -109,96}}, + color={0,0,127})); + connect(valveKi.T_setRoom, TSet[5]) annotation (Line( + points={{-78.7,-66.66},{-78.7,-62},{-76,-62},{-76,99},{-109,99}}, + color={0,0,127})); + connect(valveLi.T_setRoom, TSet[1]) annotation (Line( + points={{-76.36,11.84},{-76.36,52},{-76,52},{-76,92},{-109,92},{-109, + 87}}, + color={0,0,127})); + + connect(convLi, tempSensorLi.port) annotation (Line( + points={{-139.5,31.5},{-120,31.5},{-120,36},{-108,36}}, + color={191,0,0})); + connect(tempSensorLi.T, valveLi.T_room) annotation (Line( + points={{-95.4,36},{-69.16,36},{-69.16,11.84}}, + color={0,0,127})); + connect(valveBe.T_room, tempSensorBe.T) annotation (Line( + points={{50.98,86.87},{50.98,98},{62.4,98}}, + color={0,0,127})); + connect(tempSensorBe.port, convBe) annotation (Line( + points={{75,98},{89,98},{89,97},{141,97},{141,73},{138,73}}, + color={191,0,0})); + connect(valveCh.T_room, tempSensorCh.T) annotation (Line( + points={{66.16,47.84},{66.16,55},{75.4,55}}, + color={0,0,127})); + connect(tempSensorCh.port, convCh) annotation (Line( + points={{88,55},{138,55},{138,53},{138.5,53},{138.5,25.5}}, + color={191,0,0})); + connect(valveBa.T_room, tempSensorBa.T) annotation (Line( + points={{40.16,-31.16},{40.16,-15},{53.4,-15}}, + color={0,0,127})); + connect(tempSensorBa.port, convBa) annotation (Line( + points={{66,-15},{97,-15},{97,-21},{138.5,-21},{138.5,-50}}, + color={191,0,0})); + connect(tempSensorKi.port, convKi) annotation (Line( + points={{-91,-51},{-107,-51},{-107,-50},{-138,-50},{-138,-58.5}}, + color={191,0,0})); + connect(tempSensorKi.T, valveKi.T_room) annotation (Line( + points={{-78.4,-51},{-69.7,-51},{-69.7,-66.66}}, + color={0,0,127})); + connect(radiatorLi.RadiativeHeat, radLi) annotation (Line(points={{-107.6,5.8}, + {-107.6,25.9},{-140,25.9},{-140,46.5}}, color={95,95,95})); + connect(radiatorLi.ConvectiveHeat, convLi) annotation (Line(points={{-102.2, + 5.8},{-120.1,5.8},{-120.1,31.5},{-139.5,31.5}}, color={191,0,0})); + connect(radKi, radiatorKi.RadiativeHeat) annotation (Line(points={{-137.5,-42}, + {-119.75,-42},{-119.75,-72.8},{-100.9,-72.8}}, color={95,95,95})); + connect(convKi, radiatorKi.ConvectiveHeat) annotation (Line(points={{-138, + -58.5},{-117,-58.5},{-117,-72.8},{-95.8,-72.8}}, color={191,0,0})); + connect(radiatorBa.RadiativeHeat, radBa) annotation (Line(points={{94.9,-37.8}, + {117.45,-37.8},{117.45,-28},{138,-28}}, color={95,95,95})); + connect(radiatorBa.ConvectiveHeat, convBa) annotation (Line(points={{89.8, + -37.8},{113.9,-37.8},{113.9,-50},{138.5,-50}}, color={191,0,0})); + connect(radiatorCh.RadiativeHeat, radCh) annotation (Line(points={{96.5,42},{ + 119,42},{119,49},{140,49}}, color={95,95,95})); + connect(radiatorCh.ConvectiveHeat, convCh) annotation (Line(points={{92,42},{ + 115,42},{115,25.5},{138.5,25.5}}, color={191,0,0})); + connect(radiatorBr.RadiativeHeat, radBe) annotation (Line(points={{89.2,81.6}, + {113.1,81.6},{113.1,97},{137,97}}, color={95,95,95})); + connect(convBe, radiatorBr.ConvectiveHeat) annotation (Line(points={{138,73}, + {112,73},{112,81.6},{84.4,81.6}}, color={191,0,0})); + annotation(Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-150, + -100},{150,110}}, grid = {1, 1}), graphics={ Rectangle(extent = {{1, 100}, {126, 63}}, pattern=LinePattern.None, lineColor = {0, 0, 0}, fillColor = {215, 215, 215}, + fillPattern = FillPattern.Solid), Rectangle(extent = {{4, 58}, {127, 15}}, pattern=LinePattern.None, lineColor = {0, 0, 0}, fillColor = {215, 215, 215}, + fillPattern = FillPattern.Solid), Rectangle(extent = {{4, -14}, {127, -67}}, pattern=LinePattern.None, lineColor = {0, 0, 0}, fillColor = {215, 215, 215}, + fillPattern = FillPattern.Solid), Rectangle(extent = {{-129, 29}, {-22, -25}}, pattern=LinePattern.None, lineColor = {0, 0, 0}, fillColor = {215, 215, 215}, + fillPattern = FillPattern.Solid), Rectangle(extent = {{-130, -49}, {-23, -103}}, pattern=LinePattern.None, lineColor = {0, 0, 0}, fillColor = {215, 215, 215}, + fillPattern = FillPattern.Solid), Text(extent = {{-120, -81}, {-69, -96}}, lineColor = {0, 0, 0}, fillColor = {0, 0, 0}, + fillPattern = FillPattern.Solid, textString = "Kitchen"), Text(extent = {{-156.5, 29}, {-49.5, 16}}, lineColor = {0, 0, 0}, fillColor = {0, 0, 0}, + fillPattern = FillPattern.Solid, textString = "Livingroom"), Text(extent = {{31, -15}, {138, -28}}, lineColor = {0, 0, 0}, fillColor = {0, 0, 0}, + fillPattern = FillPattern.Solid, textString = "Bath"), Text(extent = {{-27, 56}, {80, 43}}, lineColor = {0, 0, 0}, fillColor = {0, 0, 0}, + fillPattern = FillPattern.Solid, textString = "Children"), Text(extent = {{-34, 100}, {73, 87}}, lineColor = {0, 0, 0}, fillColor = {0, 0, 0}, + fillPattern = FillPattern.Solid, textString = "Bedroom"), Text(extent = {{-70, 103}, {-17, 71}}, lineColor = {0, 0, 0}, textString = "1 - Livingroom + 2- Bedroom + 3 - Children + 4 - Bath + 5 - Kitchen")}), Icon(coordinateSystem(preserveAspectRatio = false, extent = {{-150, -100}, {150, 110}}, grid = {1, 1}), graphics={ Rectangle(extent = {{-119, 92}, {123, -79}}, lineColor = {255, 0, 0}, fillColor = {135, 135, 135}, + fillPattern = FillPattern.Solid), Line(points = {{-99, 22}, {104, 22}, {104, -6}}, color = {255, 0, 0}, thickness = 1), Line(points = {{-98, 13}, {95, 13}, {95, -6}}, color = {0, 0, 255}, thickness = 1), Line(points = {{-21, 13}, {-21, 35}}, color = {0, 0, 255}, thickness = 1), Line(points = {{-14, 23}, {-14, 45}}, color = {255, 0, 0}, thickness = 1), Text(extent = {{-124, 119}, {-84, 111}}, lineColor = {0, 0, 0}, + lineThickness = 0.5, fillColor = {215, 215, 215}, + fillPattern = FillPattern.Solid, textString = "Set"), Text(extent = {{-70, 81}, {-17, 49}}, lineColor = {0, 0, 0}, textString = "1 - Livingroom + 2- Bedroom + 3 - Children + 4 - Bath + 5 - Kitchen")}), Documentation(revisions="
                                      +
                                    • + October 11, 2016 by Marcus Fuchs:
                                      + Replace pipe by MSL pipe +
                                    • +
                                    • + June 19, 2014 by Ana Constantin:
                                      + Implemented +
                                    • +
                                    +", info = " +

                                    + Overview +

                                    +

                                    + The model is exemplarly build with components found in the HVAC + package. +

                                    +

                                    + Concept +

                                    +

                                    + The model should be used as an example on how such a system can be + built and connected to the building envelope. +

                                    +")); + end Radiators; + annotation(Documentation(info = "

                                    + Overview +

                                    +

                                    + Package with two hydraulic systems based on radiators for the one + appartment, considered as a single unit. +

                                    +")); + end OneAppartment; + annotation(Documentation(info = "

                                    + Overview +

                                    +

                                    + Package for energy systems for the multi family dwelling. +

                                    +

                                    + Concept +

                                    +

                                    + The package contains a model for an energy system based on radiators, + for just one appartment. +

                                    +")); +end EnergySystem; diff --git a/AixLib/Obsolete/Year2022/ThermalZones/HighOrder/House/MFD/package.mo b/AixLib/Obsolete/Year2022/ThermalZones/HighOrder/House/MFD/package.mo new file mode 100644 index 0000000000..426389a5ae --- /dev/null +++ b/AixLib/Obsolete/Year2022/ThermalZones/HighOrder/House/MFD/package.mo @@ -0,0 +1,3 @@ +within AixLib.Obsolete.Year2022.ThermalZones.HighOrder.House; +package MFD +end MFD; diff --git a/AixLib/ThermalZones/HighOrder/House/MFD/package.order b/AixLib/Obsolete/Year2022/ThermalZones/HighOrder/House/MFD/package.order similarity index 100% rename from AixLib/ThermalZones/HighOrder/House/MFD/package.order rename to AixLib/Obsolete/Year2022/ThermalZones/HighOrder/House/MFD/package.order index ce59e42a6d..bb59d56e3b 100644 --- a/AixLib/ThermalZones/HighOrder/House/MFD/package.order +++ b/AixLib/Obsolete/Year2022/ThermalZones/HighOrder/House/MFD/package.order @@ -1,3 +1,3 @@ -BuildingAndEnergySystem BuildingEnvelope +BuildingAndEnergySystem EnergySystem diff --git a/AixLib/Obsolete/Year2022/ThermalZones/HighOrder/House/package.mo b/AixLib/Obsolete/Year2022/ThermalZones/HighOrder/House/package.mo new file mode 100644 index 0000000000..60d4a52312 --- /dev/null +++ b/AixLib/Obsolete/Year2022/ThermalZones/HighOrder/House/package.mo @@ -0,0 +1,3 @@ +within AixLib.Obsolete.Year2022.ThermalZones.HighOrder; +package House +end House; diff --git a/AixLib/Obsolete/Year2022/ThermalZones/HighOrder/House/package.order b/AixLib/Obsolete/Year2022/ThermalZones/HighOrder/House/package.order new file mode 100644 index 0000000000..00d11be86e --- /dev/null +++ b/AixLib/Obsolete/Year2022/ThermalZones/HighOrder/House/package.order @@ -0,0 +1 @@ +MFD diff --git a/AixLib/Obsolete/Year2022/ThermalZones/HighOrder/Rooms/MFD.mo b/AixLib/Obsolete/Year2022/ThermalZones/HighOrder/Rooms/MFD.mo new file mode 100644 index 0000000000..f35aad4193 --- /dev/null +++ b/AixLib/Obsolete/Year2022/ThermalZones/HighOrder/Rooms/MFD.mo @@ -0,0 +1,2006 @@ +within AixLib.Obsolete.Year2022.ThermalZones.HighOrder.Rooms; +package MFD "Multiple Family Dweling" + extends Modelica.Icons.Package; + + package OneAppartment + extends Modelica.Icons.Package; + + model Bathroom_VoWo "Bathroom from the VoWo appartment" + ///////// construction parameters + parameter Integer TMC = 1 "Thermal Mass Class" annotation(Dialog(group = "Construction parameters", compact = true, descriptionLabel = true), choices(choice = 1 "Heavy", choice = 2 "Medium", choice = 3 "Light", radioButtons = true)); + parameter Integer TIR = 4 "Thermal Insulation Regulation" annotation(Dialog(groupImage = "modelica://AixLib/Resources/Images/Building/HighOrder/VoWo_Bath.png", group = "Construction parameters", compact = true, descriptionLabel = true), choices(choice = 1 + "EnEV_2009", choice = 2 + "EnEV_2002", choice = 3 + "WSchV_1995", choice = 4 + "WSchV_1984", radioButtons = true)); + parameter Integer Floor = 1 "Floor" annotation(Dialog(group = "Floor", compact = true, descriptionLabel = true), choices(choice = 1 "GF", choice = 2 "1F", choice = 3 "2F", radioButtons = true)); + // Outer walls properties + parameter Real solar_absorptance_OW = 0.7 "Solar absoptance outer walls " annotation(Dialog(group = "Outer wall properties", descriptionLabel = true)); + parameter Integer calcMethod=1 "Calculation method for convective heat transfer coefficient" annotation (Dialog( + group="Outer wall properties", + compact=true, + descriptionLabel=true), choices( + choice=1 "DIN 6946", + choice=2 "ASHRAE Fundamentals", + choice=3 "Custom hCon (constant)", + radioButtons=true)); + //Initial temperatures + parameter Modelica.Units.SI.Temperature T0_air=297.15 "Air" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + parameter Modelica.Units.SI.Temperature T0_Corridor=290.15 "IWCorridor" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + parameter Modelica.Units.SI.Temperature T0_IWKitchen=295.15 "IWKitchen" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + parameter Modelica.Units.SI.Temperature T0_IWBedroom=295.15 "IWBedroom" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + parameter Modelica.Units.SI.Temperature T0_OW=295.15 "OW" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + parameter Modelica.Units.SI.Temperature T0_CE=295.35 "Ceiling" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + parameter Modelica.Units.SI.Temperature T0_FL=294.95 "Floor" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + // Sunblind + parameter Boolean use_sunblind = false + "Will sunblind become active automatically?" + annotation(Dialog(group = "Sunblind")); + parameter Real ratioSunblind(min=0.0, max=1.0) = 0.8 + "Sunblind factor. 1 means total blocking of irradiation, 0 no sunblind" + annotation(Dialog(group = "Sunblind", enable=use_sunblind)); + parameter Modelica.Units.SI.Irradiance solIrrThreshold(min=0.0) = 350 + "Threshold for global solar irradiation on this surface to enable sunblinding (see also TOutAirLimit)" + annotation (Dialog(group="Sunblind", enable=use_sunblind)); + parameter Modelica.Units.SI.Temperature TOutAirLimit + "Temperature at which sunblind closes (see also solIrrThreshold)" + annotation (Dialog(group="Sunblind", enable=use_sunblind)); + AixLib.ThermalZones.HighOrder.Components.Walls.Wall Wall_Corridor( + redeclare final model WindowModel=WindowModel, + redeclare final model CorrSolarGainWin=CorrSolarGainWin, + T0=T0_Corridor, + outside=false, + final withSunblind=use_sunblind, + final Blinding=1 - ratioSunblind, + final LimitSolIrr=solIrrThreshold, + final TOutAirLimit=TOutAirLimit, + wallPar=Type_IWsimple, + wall_length=1.31, + wall_height=2.46, + withWindow=false, + withDoor=false) annotation (Placement(transformation( + origin={7,37}, + extent={{-7,-39},{7,39}}, + rotation=270))); + AixLib.ThermalZones.HighOrder.Components.Walls.Wall Wall_Bedroom( + redeclare final model WindowModel=WindowModel, + redeclare final model CorrSolarGainWin=CorrSolarGainWin, + T0=T0_IWBedroom, + outside=false, + final withSunblind=use_sunblind, + final Blinding=1 - ratioSunblind, + final LimitSolIrr=solIrrThreshold, + final TOutAirLimit=TOutAirLimit, + wallPar=Type_IWload, + wall_length=3.28, + wall_height=2.46, + withWindow=false, + withDoor=false) annotation (Placement(transformation(extent={{-60,-76},{-46,8}}))); + AixLib.ThermalZones.HighOrder.Components.Walls.Wall Wall_Kitchen1( + redeclare final model WindowModel=WindowModel, + redeclare final model CorrSolarGainWin=CorrSolarGainWin, + T0=T0_IWKitchen, + outside=false, + final withSunblind=use_sunblind, + final Blinding=1 - ratioSunblind, + final LimitSolIrr=solIrrThreshold, + final TOutAirLimit=TOutAirLimit, + wallPar=Type_IWsimple, + wall_length=3.28, + wall_height=2.46, + withWindow=false, + withDoor=false) annotation (Placement(transformation( + origin={58,-22}, + extent={{-6,-36},{6,36}}, + rotation=180))); + AixLib.ThermalZones.HighOrder.Components.DryAir.Airload airload( + final T0=T0_air, + final V=room_V) + annotation (Placement(transformation(extent={{-12,-26},{8,-6}}))); + AixLib.ThermalZones.HighOrder.Components.Walls.Wall Wall_Kitchen2( + redeclare final model WindowModel=WindowModel, + redeclare final model CorrSolarGainWin=CorrSolarGainWin, + T0=T0_IWKitchen, + outside=false, + final withSunblind=use_sunblind, + final Blinding=1 - ratioSunblind, + final LimitSolIrr=solIrrThreshold, + final TOutAirLimit=TOutAirLimit, + wallPar=Type_IWsimple, + wall_length=0.44, + wall_height=2.46, + withWindow=false, + withDoor=false) annotation (Placement(transformation( + origin={77,-59}, + extent={{-3,-15},{3,15}}, + rotation=270))); + AixLib.ThermalZones.HighOrder.Components.Walls.Wall outsideWall( + redeclare final model WindowModel=WindowModel, + redeclare final model CorrSolarGainWin=CorrSolarGainWin, + wall_height=2.46, + windowarea=0.75, + wall_length=1.75, + withWindow=true, + final withSunblind=use_sunblind, + final Blinding=1 - ratioSunblind, + final LimitSolIrr=solIrrThreshold, + final TOutAirLimit=TOutAirLimit, + T0=T0_OW, + solar_absorptance=solar_absorptance_OW, + withDoor=false, + wallPar=Type_OW, + WindowType=Type_Win) annotation (Placement(transformation( + origin={8,-105}, + extent={{-11,-66},{11,66}}, + rotation=90))); + AixLib.ThermalZones.HighOrder.Components.Walls.Wall Wall_Ceiling( + redeclare final model WindowModel=WindowModel, + redeclare final model CorrSolarGainWin=CorrSolarGainWin, + T0=T0_CE, + outside=false, + final withSunblind=use_sunblind, + final Blinding=1 - ratioSunblind, + final LimitSolIrr=solIrrThreshold, + final TOutAirLimit=TOutAirLimit, + wallPar=Type_CE, + wall_length=sqrt(4.65), + wall_height=sqrt(4.65), + ISOrientation=3, + withWindow=false, + withDoor=false) annotation (Placement(transformation( + origin={106,-80}, + extent={{-1.99998,-10},{1.99998,10}}, + rotation=270))); + AixLib.ThermalZones.HighOrder.Components.Walls.Wall Wall_Floor( + redeclare final model WindowModel=WindowModel, + redeclare final model CorrSolarGainWin=CorrSolarGainWin, + T0=T0_FL, + outside=false, + final withSunblind=use_sunblind, + final Blinding=1 - ratioSunblind, + final LimitSolIrr=solIrrThreshold, + final TOutAirLimit=TOutAirLimit, + wallPar=Type_FL, + wall_length=sqrt(4.65), + wall_height=sqrt(4.65), + ISOrientation=2, + withWindow=false, + withDoor=false) annotation (Placement(transformation( + origin={106,-116}, + extent={{-1.99983,-10},{1.99984,10}}, + rotation=90))); + AixLib.ThermalZones.HighOrder.Components.DryAir.InfiltrationRate_DIN12831 + infiltrationRate( + room_V=room_V, + n50=n50, + e=e, + eps=eps) annotation (Placement(transformation(extent={{-42,60},{-16,86}}))); + AixLib.Utilities.Interfaces.SolarRad_in SolarRadiation_NW annotation ( + Placement(transformation( + extent={{-10,-10},{10,10}}, + rotation=90, + origin={-56,-150}))); + Modelica.Blocks.Interfaces.RealInput WindSpeedPort annotation(Placement(transformation(extent = {{-122, -30}, {-82, 10}}), iconTransformation(extent = {{-110, 12}, {-94, 28}}))); + Modelica.Blocks.Interfaces.RealInput AirExchangePort annotation(Placement(transformation(extent = {{-122, 0}, {-82, 40}}), iconTransformation(extent = {{-110, 52}, {-94, 68}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermOutside annotation(Placement(transformation(extent = {{-110, 80}, {-90, 100}}), iconTransformation(extent = {{-110, 80}, {-90, 100}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermCorridor annotation(Placement(transformation(extent = {{-110, -20}, {-90, 0}}), iconTransformation(extent = {{-110, -20}, {-90, 0}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermKitchen annotation(Placement(transformation(extent = {{-110, -50}, {-90, -30}}), iconTransformation(extent = {{-110, -50}, {-90, -30}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermBedroom annotation(Placement(transformation(extent = {{-110, -80}, {-90, -60}}), iconTransformation(extent = {{-110, -80}, {-90, -60}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermCeiling annotation(Placement(transformation(extent = {{-110, -110}, {-90, -90}}), iconTransformation(extent = {{-110, -110}, {-90, -90}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermFloor annotation(Placement(transformation(extent = {{-110, -140}, {-90, -120}}), iconTransformation(extent = {{-110, -140}, {-90, -120}}))); + AixLib.Utilities.Interfaces.RadPort StarRoom annotation (Placement( + transformation(extent={{10,-54},{30,-34}}), iconTransformation( + extent={{10,-54},{30,-34}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a ThermRoom annotation(Placement(transformation(extent = {{-28, -52}, {-8, -32}}), iconTransformation(extent = {{-28, -52}, {-8, -32}}))); + AixLib.Utilities.Interfaces.Adaptors.ConvRadToCombPort thermStar_Demux annotation (Placement(transformation( + extent={{-10,8},{10,-8}}, + rotation=90, + origin={0,-68}))); + AixLib.ThermalZones.HighOrder.Components.DryAir.VarAirExchange + NaturalVentilation(V=room_V) + annotation (Placement(transformation(extent={{16,68},{44,94}}))); + + replaceable model WindowModel = + AixLib.ThermalZones.HighOrder.Components.WindowsDoors.BaseClasses.PartialWindow + constrainedby + AixLib.ThermalZones.HighOrder.Components.WindowsDoors.BaseClasses.PartialWindow + annotation (Dialog(tab="Outer walls", group="Windows"), choicesAllMatching = true); + + replaceable model CorrSolarGainWin = + AixLib.ThermalZones.HighOrder.Components.WindowsDoors.BaseClasses.CorrectionSolarGain.PartialCorG + constrainedby + AixLib.ThermalZones.HighOrder.Components.WindowsDoors.BaseClasses.CorrectionSolarGain.PartialCorG + "Correction model for solar irradiance as transmitted radiation" annotation (choicesAllMatching=true, Dialog(tab="Outer walls", group="Windows", enable = withWindow and outside)); + + protected + parameter Real n50(unit = "h-1") = if TIR == 1 or TIR == 2 then 3 else if TIR == 3 then 4 else 6 + "Air exchange rate at 50 Pa pressure difference" annotation(Dialog(tab = "Infiltration")); + parameter Real e = 0.03 "Coefficient of windshield" annotation(Dialog(tab = "Infiltration")); + parameter Real eps = 1.0 "Coefficient of height" annotation(Dialog(tab = "Infiltration")); + // Outer wall type + parameter AixLib.DataBase.Walls.WallBaseDataDefinition Type_OW = if TIR == 1 then if TMC == 1 then AixLib.DataBase.Walls.EnEV2009.OW.OW_EnEV2009_S() else if TMC == 2 then AixLib.DataBase.Walls.EnEV2009.OW.OW_EnEV2009_M() else AixLib.DataBase.Walls.EnEV2009.OW.OW_EnEV2009_L() else if TIR == 2 then if TMC == 1 then AixLib.DataBase.Walls.EnEV2002.OW.OW_EnEV2002_S() else if TMC == 2 then AixLib.DataBase.Walls.EnEV2002.OW.OW_EnEV2002_M() else AixLib.DataBase.Walls.EnEV2002.OW.OW_EnEV2002_L() else if TIR == 3 then if TMC == 1 then AixLib.DataBase.Walls.WSchV1995.OW.OW_WSchV1995_S() else if TMC == 2 then AixLib.DataBase.Walls.WSchV1995.OW.OW_WSchV1995_M() else AixLib.DataBase.Walls.WSchV1995.OW.OW_WSchV1995_L() else if TMC == 1 then AixLib.DataBase.Walls.WSchV1984.OW.OW_WSchV1984_S() else if TMC == 2 then AixLib.DataBase.Walls.WSchV1984.OW.OW_WSchV1984_M() else AixLib.DataBase.Walls.WSchV1984.OW.OW_WSchV1984_L() annotation(Dialog(tab = "Types")); + //Inner wall Types + parameter AixLib.DataBase.Walls.WallBaseDataDefinition Type_IWsimple = if TIR == 1 then if TMC == 1 then AixLib.DataBase.Walls.EnEV2009.IW.IWsimple_EnEV2009_S_half() else if TMC == 2 then AixLib.DataBase.Walls.EnEV2009.IW.IWsimple_EnEV2009_M_half() else AixLib.DataBase.Walls.EnEV2009.IW.IWsimple_EnEV2009_L_half() else if TIR == 2 then if TMC == 1 then AixLib.DataBase.Walls.EnEV2002.IW.IWsimple_EnEV2002_S_half() else if TMC == 2 then AixLib.DataBase.Walls.EnEV2002.IW.IWsimple_EnEV2002_M_half() else AixLib.DataBase.Walls.EnEV2002.IW.IWsimple_EnEV2002_L_half() else if TIR == 3 then if TMC == 1 then AixLib.DataBase.Walls.WSchV1995.IW.IWsimple_WSchV1995_S_half() else if TMC == 2 then AixLib.DataBase.Walls.WSchV1995.IW.IWsimple_WSchV1995_M_half() else AixLib.DataBase.Walls.WSchV1995.IW.IWsimple_WSchV1995_L_half() else if TMC == 1 then AixLib.DataBase.Walls.WSchV1984.IW.IWsimple_WSchV1984_S_half() else if TMC == 2 then AixLib.DataBase.Walls.WSchV1984.IW.IWsimple_WSchV1984_M_half() else AixLib.DataBase.Walls.WSchV1984.IW.IWsimple_WSchV1984_L_half() annotation(Dialog(tab = "Types")); + parameter AixLib.DataBase.Walls.WallBaseDataDefinition Type_IWload = if TIR == 1 then if TMC == 1 then AixLib.DataBase.Walls.EnEV2009.IW.IWload_EnEV2009_S_half() else if TMC == 2 then AixLib.DataBase.Walls.EnEV2009.IW.IWload_EnEV2009_M_half() else AixLib.DataBase.Walls.EnEV2009.IW.IWload_EnEV2009_L_half() else if TIR == 2 then if TMC == 1 then AixLib.DataBase.Walls.EnEV2002.IW.IWload_EnEV2002_S_half() else if TMC == 2 then AixLib.DataBase.Walls.EnEV2002.IW.IWload_EnEV2002_M_half() else AixLib.DataBase.Walls.EnEV2002.IW.IWload_EnEV2002_L_half() else if TIR == 3 then if TMC == 1 then AixLib.DataBase.Walls.WSchV1995.IW.IWload_WSchV1995_S_half() else if TMC == 2 then AixLib.DataBase.Walls.WSchV1995.IW.IWload_WSchV1995_M_half() else AixLib.DataBase.Walls.WSchV1995.IW.IWload_WSchV1995_L_half() else if TMC == 1 then AixLib.DataBase.Walls.WSchV1984.IW.IWload_WSchV1984_S_half() else if TMC == 2 then AixLib.DataBase.Walls.WSchV1984.IW.IWload_WSchV1984_M_half() else AixLib.DataBase.Walls.WSchV1984.IW.IWload_WSchV1984_L_half() annotation(Dialog(tab = "Types")); + // Floor type + parameter AixLib.DataBase.Walls.WallBaseDataDefinition Type_FL = if Floor == 1 then if TIR == 1 then AixLib.DataBase.Walls.EnEV2009.Floor.FLcellar_EnEV2009_SML_upHalf() else if TIR == 2 then AixLib.DataBase.Walls.EnEV2002.Floor.FLcellar_EnEV2002_SML_upHalf() else if TIR == 3 then AixLib.DataBase.Walls.WSchV1995.Floor.FLcellar_WSchV1995_SML_upHalf() else AixLib.DataBase.Walls.WSchV1984.Floor.FLcellar_WSchV1984_SML_upHalf() else if TIR == 1 then if TMC == 1 or TMC == 2 then AixLib.DataBase.Walls.EnEV2009.Floor.FLpartition_EnEV2009_SM_upHalf() else AixLib.DataBase.Walls.EnEV2009.Floor.FLpartition_EnEV2009_L_upHalf() else if TIR == 2 then if TMC == 1 or TMC == 2 then AixLib.DataBase.Walls.EnEV2002.Floor.FLpartition_EnEV2002_SM_upHalf() else AixLib.DataBase.Walls.EnEV2002.Floor.FLpartition_EnEV2002_L_upHalf() else if TIR == 3 then if TMC == 1 or TMC == 2 then AixLib.DataBase.Walls.WSchV1995.Floor.FLpartition_WSchV1995_SM_upHalf() else AixLib.DataBase.Walls.WSchV1995.Floor.FLpartition_WSchV1995_L_upHalf() else if TMC == 1 or TMC == 2 then AixLib.DataBase.Walls.WSchV1984.Floor.FLpartition_WSchV1984_SM_upHalf() else AixLib.DataBase.Walls.WSchV1984.Floor.FLpartition_WSchV1984_L_upHalf() annotation(Dialog(tab = "Types")); + // Ceiling type + parameter AixLib.DataBase.Walls.WallBaseDataDefinition Type_CE = if Floor == 1 or Floor == 2 then if TIR == 1 then if TMC == 1 or TMC == 2 then AixLib.DataBase.Walls.EnEV2009.Ceiling.CEpartition_EnEV2009_SM_loHalf() else AixLib.DataBase.Walls.EnEV2009.Ceiling.CEpartition_EnEV2009_L_loHalf() else if TIR == 2 then if TMC == 1 or TMC == 2 then AixLib.DataBase.Walls.EnEV2002.Ceiling.CEpartition_EnEV2002_SM_loHalf() else AixLib.DataBase.Walls.EnEV2002.Ceiling.CEpartition_EnEV2002_L_loHalf() else if TIR == 3 then if TMC == 1 or TMC == 2 then AixLib.DataBase.Walls.WSchV1995.Ceiling.CEpartition_WSchV1995_SM_loHalf() else AixLib.DataBase.Walls.WSchV1995.Ceiling.CEpartition_WSchV1995_L_loHalf() else if TMC == 1 or TMC == 2 then AixLib.DataBase.Walls.WSchV1984.Ceiling.CEpartition_WSchV1984_SM_loHalf() else AixLib.DataBase.Walls.WSchV1984.Ceiling.CEpartition_WSchV1984_L_loHalf() else if TIR == 1 then AixLib.DataBase.Walls.EnEV2009.Ceiling.CEattic_EnEV2009_SML_loHalf() else if TIR == 2 then AixLib.DataBase.Walls.EnEV2002.Ceiling.CEattic_EnEV2002_SML_loHalf() else if TIR == 3 then AixLib.DataBase.Walls.WSchV1995.Ceiling.CEattic_WSchV1995_SML_loHalf() else AixLib.DataBase.Walls.WSchV1984.Ceiling.CEattic_WSchV1984_SML_loHalf() annotation(Dialog(tab = "Types")); + //Window type + parameter AixLib.DataBase.WindowsDoors.Simple.OWBaseDataDefinition_Simple Type_Win = if TIR == 1 then AixLib.DataBase.WindowsDoors.Simple.WindowSimple_EnEV2009() else if TIR == 2 then AixLib.DataBase.WindowsDoors.Simple.WindowSimple_EnEV2002() else if TIR == 3 then AixLib.DataBase.WindowsDoors.Simple.WindowSimple_WSchV1995() else AixLib.DataBase.WindowsDoors.Simple.WindowSimple_WSchV1984() annotation(Dialog(tab = "Types")); + parameter Modelica.Units.SI.Volume room_V=4.65*2.46; + equation + connect(outsideWall.SolarRadiationPort, SolarRadiation_NW) annotation(Line(points = {{-52.5, -119.3}, {-52.5, -131.905}, {-56, -131.905}, {-56, -150}}, color = {255, 128, 0})); + connect(outsideWall.WindSpeedPort, WindSpeedPort) annotation(Line(points = {{-40.4, -116.55}, {-40.4, -140}, {-80, -140}, {-80, -10}, {-102, -10}}, color = {0, 0, 127})); + connect(Wall_Corridor.port_outside, thermCorridor) annotation(Line(points = {{7, 44.35}, {7, 60}, {-80, 60}, {-80, -10}, {-100, -10}}, color = {191, 0, 0})); + connect(Wall_Kitchen1.port_outside, thermKitchen) annotation(Line(points = {{64.3, -22}, {94, -22}, {94, 60}, {-80, 60}, {-80, -40}, {-100, -40}}, color = {191, 0, 0})); + connect(Wall_Kitchen2.port_outside, thermKitchen) annotation(Line(points = {{77, -55.85}, {94, -55.85}, {94, 60}, {-80, 60}, {-80, -40}, {-100, -40}}, color = {191, 0, 0})); + connect(Wall_Bedroom.port_outside, thermBedroom) annotation(Line(points = {{-60.35, -34}, {-80, -34}, {-80, -70}, {-100, -70}}, color = {191, 0, 0})); + connect(Wall_Ceiling.port_outside, thermCeiling) annotation(Line(points={{106,-77.9},{106,-60},{134,-60},{134,-140},{-80,-140},{-80,-100},{-100,-100}}, + color = {191, 0, 0})); + connect(Wall_Floor.port_outside, thermFloor) annotation(Line(points={{106,-118.1},{106,-140},{-80,-140},{-80,-130},{-100,-130}}, color = {191, 0, 0})); + connect(infiltrationRate.port_a, thermOutside) annotation(Line(points = {{-42, 73}, {-80, 73}, {-80, 90}, {-100, 90}}, color = {191, 0, 0})); + connect(infiltrationRate.port_b, airload.port) annotation(Line(points={{-16,73},{4,73},{4,60},{94,60},{94,16},{-36,16},{-36,-26},{-2,-26}}, color = {191, 0, 0})); + connect(outsideWall.thermStarComb_inside, thermStar_Demux.portConvRadComb) annotation (Line(points={{8,-94},{8,-84},{-6.66134e-16,-84},{-6.66134e-16,-78}}, + color={191,0,0})); + connect(Wall_Bedroom.thermStarComb_inside, thermStar_Demux.portConvRadComb) annotation (Line(points={{-46,-34},{-36,-34},{-36,-84},{-6.66134e-16,-84},{-6.66134e-16,-78}}, + color={191,0,0})); + connect(Wall_Corridor.thermStarComb_inside, thermStar_Demux.portConvRadComb) annotation (Line(points={{7,30},{7,16},{-36,16},{-36,-84},{-6.66134e-16,-84},{-6.66134e-16,-78}}, + color={191,0,0})); + connect(Wall_Kitchen1.thermStarComb_inside, thermStar_Demux.portConvRadComb) annotation (Line(points={{52,-22},{40,-22},{40,16},{-36,16},{-36,-84},{-6.66134e-16,-84},{-6.66134e-16,-78}}, + color={191,0,0})); + connect(thermStar_Demux.portConv, ThermRoom) annotation (Line(points={{-5,-58},{-5,-42},{-18,-42}}, color={191,0,0})); + connect(thermStar_Demux.portRad, StarRoom) annotation (Line( + points={{5,-58},{5,-44},{20,-44}}, + color={95,95,95}, + pattern=LinePattern.Solid)); + connect(airload.port, thermStar_Demux.portConv) annotation (Line(points={{-11,-18},{-36,-18},{-36,-57.9},{-5.1,-57.9}}, color={191,0,0})); + connect(AirExchangePort, NaturalVentilation.ventRate) annotation (Line(points= + {{-102,20},{-80,20},{-80,60},{4,60},{4,72.68},{17.4,72.68}}, color={0, + 0,127})); + connect(thermOutside, NaturalVentilation.port_a) annotation(Line(points = {{-100, 90}, {-80, 90}, {-80, 60}, {4, 60}, {4, 81}, {16, 81}}, color = {191, 0, 0})); + connect(airload.port, NaturalVentilation.port_b) annotation(Line(points={{-2,-26},{-36,-26},{-36,16},{94,16},{94,60},{48,60},{48,81},{44,81}}, color = {191, 0, 0})); + connect(outsideWall.port_outside, thermOutside) annotation(Line(points = {{8, -116.55}, {8, -140}, {-80, -140}, {-80, 90}, {-100, 90}}, color = {191, 0, 0})); + annotation(Diagram(coordinateSystem(preserveAspectRatio = true, extent = {{-100, -150}, {150, 100}})), Icon(coordinateSystem(preserveAspectRatio = true, extent = {{-100, -150}, {150, 100}}), graphics={ Polygon(points = {{-58, 62}, {-58, -118}, {104, -118}, {104, -58}, {42, -58}, {42, 62}, {-58, 62}}, lineColor = {0, 0, 0}, fillColor = {255, 255, 255}, + fillPattern = FillPattern.Forward), Text(extent = {{-44, -108}, {82, -58}}, lineColor = {0, 0, 0}, fillColor = {255, 255, 255}, + fillPattern = FillPattern.Forward, textString = "Bath"), Rectangle(extent = {{-30, -108}, {-8, -128}}, lineColor = {0, 0, 0}, fillColor = {85, 255, 255}, + fillPattern = FillPattern.Solid), Rectangle(extent = {{-28, -110}, {-10, -126}}, lineColor = {0, 0, 0}, fillColor = {170, 213, 255}, + fillPattern = FillPattern.Solid), Line(points = {{-24, -122}, {-14, -112}}, color = {255, 255, 255}, thickness = 1), Line(points = {{-20, -122}, {-14, -116}}, color = {255, 255, 255}, thickness = 1), Line(points = {{-24, -118}, {-18, -112}}, color = {255, 255, 255}, thickness = 1), Text(extent = {{-20, -118}, {30, -134}}, lineColor = {0, 0, 0}, + lineThickness = 1, fillColor = {255, 255, 255}, + fillPattern = FillPattern.Solid, textString = "OW"), Rectangle(extent = {{20, 92}, {40, 62}}, lineColor = {0, 0, 0}, + lineThickness = 1, fillColor = {127, 0, 0}, + fillPattern = FillPattern.Forward), Ellipse(extent = {{22, 80}, {24, 78}}, lineColor = {0, 0, 0}, pattern=LinePattern.None, + lineThickness = 1, + fillPattern = FillPattern.Sphere, fillColor = {255, 255, 0}), Text(extent = {{36, 84}, {86, 68}}, lineColor = {0, 0, 0}, + lineThickness = 1, fillColor = {255, 255, 255}, + fillPattern = FillPattern.Solid, textString = "Corridor"), Rectangle(extent = {{-110, -120}, {-90, -140}}, lineColor = {0, 0, 0}, + lineThickness = 0.5), Rectangle(extent = {{-110, -90}, {-90, -110}}, lineColor = {0, 0, 0}, + lineThickness = 0.5), Rectangle(extent = {{-110, -60}, {-90, -80}}, lineColor = {0, 0, 0}, + lineThickness = 0.5), Rectangle(extent = {{-110, -30}, {-90, -50}}, lineColor = {0, 0, 0}, + lineThickness = 0.5), Rectangle(extent = {{-110, 0}, {-90, -20}}, lineColor = {0, 0, 0}, + lineThickness = 0.5), Rectangle(extent = {{-110, 68}, {-90, 12}}, lineColor = {0, 0, 0}, + lineThickness = 0.5), Rectangle(extent = {{-110, 100}, {-90, 80}}, lineColor = {0, 0, 0}, + lineThickness = 0.5)}), Documentation(revisions = "
                                      +
                                    • + April 18, 2014 by Ana Constantin:
                                      + Added documentation +
                                    • +
                                    • + August 16, 2011 by Ana Constantin:
                                      + Implemented +
                                    • +
                                    +", info = " +

                                    + Overview +

                                    +

                                    + Model for the bathroom. +

                                    +

                                    + Concept +

                                    +

                                    + The following figure presents the room's layout: +

                                    +

                                    + \"Room +

                                    +")); + end Bathroom_VoWo; + + model Bedroom_VoWo "Bedroom from the VoWo appartment" + ///////// construction parameters + parameter Integer TMC = 1 "Thermal Mass Class" annotation(Dialog(group = "Construction parameters", compact = true, descriptionLabel = true), choices(choice = 1 "Heavy", choice = 2 "Medium", choice = 3 "Light", radioButtons = true)); + parameter Integer TIR = 4 "Thermal Insulation Regulation" annotation(Dialog(groupImage = "modelica://AixLib/Resources/Images/Building/HighOrder/VoWo_Bedroom.png", group = "Construction parameters", compact = true, descriptionLabel = true), choices(choice = 1 + "EnEV_2009", choice = 2 + "EnEV_2002", choice = 3 + "WSchV_1995", choice = 4 + "WSchV_1984", radioButtons = true)); + parameter Integer Floor = 1 "Floor" annotation(Dialog(group = "Floor", compact = true, descriptionLabel = true), choices(choice = 1 "GF", choice = 2 "1F", choice = 3 "2F", radioButtons = true)); + // Outer walls properties + parameter Real solar_absorptance_OW = 0.7 "Solar absoptance outer walls " annotation(Dialog(group = "Outer wall properties", descriptionLabel = true)); + parameter Integer calcMethod=1 "Calculation method for convective heat transfer coefficient" annotation (Dialog( + group="Outer wall properties", + compact=true, + descriptionLabel=true), choices( + choice=1 "DIN 6946", + choice=2 "ASHRAE Fundamentals", + choice=3 "Custom hCon (constant)", + radioButtons=true)); + //Initial temperatures + parameter Modelica.Units.SI.Temperature T0_air=295.15 "Air" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + parameter Modelica.Units.SI.Temperature T0_OW=295.15 "OW" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + parameter Modelica.Units.SI.Temperature T0_IWLivingroom=295.15 "IWLivingroom" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + parameter Modelica.Units.SI.Temperature T0_IWCorridor=290.15 "IWCorridor" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + parameter Modelica.Units.SI.Temperature T0_IWBathroom=297.15 "IWBathroom" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + parameter Modelica.Units.SI.Temperature T0_IWNeighbour=295.15 "IWNeighbour" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + parameter Modelica.Units.SI.Temperature T0_CE=295.35 "Ceiling" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + parameter Modelica.Units.SI.Temperature T0_FL=294.95 "Floor" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + // Sunblind + parameter Boolean use_sunblind = false + "Will sunblind become active automatically?" + annotation(Dialog(group = "Sunblind")); + parameter Real ratioSunblind(min=0.0, max=1.0) = 0.8 + "Sunblind factor. 1 means total blocking of irradiation, 0 no sunblind" + annotation(Dialog(group = "Sunblind", enable=use_sunblind)); + parameter Modelica.Units.SI.Irradiance solIrrThreshold(min=0.0) = 350 + "Threshold for global solar irradiation on this surface to enable sunblinding (see also TOutAirLimit)" + annotation (Dialog(group="Sunblind", enable=use_sunblind)); + parameter Modelica.Units.SI.Temperature TOutAirLimit + "Temperature at which sunblind closes (see also solIrrThreshold)" + annotation (Dialog(group="Sunblind", enable=use_sunblind)); + AixLib.ThermalZones.HighOrder.Components.Walls.Wall Wall_Livingroom( + redeclare final model WindowModel=WindowModel, + redeclare final model CorrSolarGainWin=CorrSolarGainWin, + T0=T0_IWLivingroom, + outside=false, + final withSunblind=use_sunblind, + final Blinding=1 - ratioSunblind, + final LimitSolIrr=solIrrThreshold, + final TOutAirLimit=TOutAirLimit, + wallPar=Type_IWload, + wall_length=3.105, + wall_height=2.46, + withWindow=false, + withDoor=false) annotation (Placement(transformation( + origin={-10,42}, + extent={{-7.99999,-48},{7.99999,48}}, + rotation=270))); + AixLib.ThermalZones.HighOrder.Components.Walls.Wall Wall_Neighbour( + redeclare final model WindowModel=WindowModel, + redeclare final model CorrSolarGainWin=CorrSolarGainWin, + T0=T0_IWNeighbour, + outside=false, + final withSunblind=use_sunblind, + final Blinding=1 - ratioSunblind, + final LimitSolIrr=solIrrThreshold, + final TOutAirLimit=TOutAirLimit, + wallPar=Type_IWNeigbour, + wall_length=5.3, + wall_height=2.46, + withWindow=false, + withDoor=false) annotation (Placement(transformation(extent={{-74,-58},{-60,20}}))); + AixLib.ThermalZones.HighOrder.Components.Walls.Wall Wall_Bath( + redeclare final model WindowModel=WindowModel, + redeclare final model CorrSolarGainWin=CorrSolarGainWin, + T0=T0_IWBathroom, + outside=false, + final withSunblind=use_sunblind, + final Blinding=1 - ratioSunblind, + final LimitSolIrr=solIrrThreshold, + final TOutAirLimit=TOutAirLimit, + wallPar=Type_IWload, + wall_length=3.28, + wall_height=2.46, + withWindow=false, + withDoor=false) annotation (Placement(transformation( + origin={61,-40}, + extent={{-4.99999,-28},{4.99999,28}}, + rotation=180))); + AixLib.ThermalZones.HighOrder.Components.DryAir.Airload airload( + final T0=T0_air, + final V=room_V) + annotation (Placement(transformation(extent={{30,-2},{10,18}}))); + AixLib.ThermalZones.HighOrder.Components.Walls.Wall outsideWall( + redeclare final model WindowModel=WindowModel, + redeclare final model CorrSolarGainWin=CorrSolarGainWin, + wall_length=3.105, + wall_height=2.46, + windowarea=1.84, + withWindow=true, + T0=T0_OW, + solar_absorptance=solar_absorptance_OW, + wallPar=Type_OW, + WindowType=Type_Win, + outside=true, + final withSunblind=use_sunblind, + final Blinding=1 - ratioSunblind, + final LimitSolIrr=solIrrThreshold, + final TOutAirLimit=TOutAirLimit, + withDoor=false) annotation (Placement(transformation( + origin={-4,-92}, + extent={{-10,-60},{10,60}}, + rotation=90))); + AixLib.ThermalZones.HighOrder.Components.Walls.Wall Wall_Ceiling( + redeclare final model WindowModel=WindowModel, + redeclare final model CorrSolarGainWin=CorrSolarGainWin, + T0=T0_CE, + outside=false, + final withSunblind=use_sunblind, + final Blinding=1 - ratioSunblind, + final LimitSolIrr=solIrrThreshold, + final TOutAirLimit=TOutAirLimit, + wallPar=Type_CE, + wall_length=3.105, + wall_height=5.30, + ISOrientation=3, + withWindow=false, + withDoor=false) annotation (Placement(transformation( + origin={96,-62}, + extent={{-2,-12},{2,12}}, + rotation=270))); + AixLib.ThermalZones.HighOrder.Components.Walls.Wall Wall_Floor( + redeclare final model WindowModel=WindowModel, + redeclare final model CorrSolarGainWin=CorrSolarGainWin, + T0=T0_FL, + outside=false, + final withSunblind=use_sunblind, + final Blinding=1 - ratioSunblind, + final LimitSolIrr=solIrrThreshold, + final TOutAirLimit=TOutAirLimit, + wallPar=Type_FL, + wall_length=3.105, + wall_height=5.30, + ISOrientation=2, + withWindow=false, + withDoor=false) annotation (Placement(transformation( + origin={96,-100}, + extent={{-1.99983,-10},{1.99984,10}}, + rotation=90))); + AixLib.ThermalZones.HighOrder.Components.Walls.Wall Wall_Corridor( + redeclare final model WindowModel=WindowModel, + redeclare final model CorrSolarGainWin=CorrSolarGainWin, + T0=T0_IWCorridor, + outside=false, + final withSunblind=use_sunblind, + final Blinding=1 - ratioSunblind, + final LimitSolIrr=solIrrThreshold, + final TOutAirLimit=TOutAirLimit, + wallPar=Type_IWload, + wall_length=1.96, + wall_height=2.46, + withWindow=false, + withDoor=false) annotation (Placement(transformation( + origin={59,16}, + extent={{-3.00002,-16},{2.99997,16}}, + rotation=180))); + AixLib.ThermalZones.HighOrder.Components.DryAir.InfiltrationRate_DIN12831 + infiltrationRate( + room_V=room_V, + n50=n50, + e=e, + eps=eps) annotation (Placement(transformation(extent={{-44,80},{-18,106}}))); + AixLib.Utilities.Interfaces.SolarRad_in SolarRadiation_NW annotation ( + Placement(transformation( + extent={{-10,-10},{10,10}}, + rotation=90, + origin={-60,-150}))); + Modelica.Blocks.Interfaces.RealInput WindSpeedPort annotation(Placement(transformation(extent = {{-128, -24}, {-88, 16}}), iconTransformation(extent = {{-110, 20}, {-90, 40}}))); + Modelica.Blocks.Interfaces.RealInput AirExchangePort annotation(Placement(transformation(extent = {{-130, 30}, {-90, 70}}), iconTransformation(extent = {{-110, 50}, {-90, 70}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermOutside annotation(Placement(transformation(extent = {{-110, 80}, {-90, 100}}), iconTransformation(extent = {{-110, 80}, {-90, 100}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermLivingroom annotation(Placement(transformation(extent = {{-110, -10}, {-90, 10}}), iconTransformation(extent = {{-110, -10}, {-90, 10}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermCorridor annotation(Placement(transformation(extent = {{-110, -40}, {-90, -20}}), iconTransformation(extent = {{-110, -40}, {-90, -20}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermBath annotation(Placement(transformation(extent = {{-110, -70}, {-90, -50}}), iconTransformation(extent = {{-110, -70}, {-90, -50}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermCeiling annotation(Placement(transformation(extent = {{-110, -130}, {-90, -110}}), iconTransformation(extent = {{-110, -130}, {-90, -110}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermFloor annotation(Placement(transformation(extent = {{-110, -160}, {-90, -140}}), iconTransformation(extent = {{-110, -160}, {-90, -140}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermNeigbour annotation(Placement(transformation(extent = {{-110, -100}, {-90, -80}}), iconTransformation(extent = {{-110, -100}, {-90, -80}}))); + AixLib.Utilities.Interfaces.RadPort StarRoom annotation (Placement( + transformation(extent={{18,-44},{38,-24}}), iconTransformation( + extent={{18,-44},{38,-24}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a ThermRoom annotation(Placement(transformation(extent = {{-20, -46}, {0, -26}}), iconTransformation(extent = {{-20, -46}, {0, -26}}))); + AixLib.Utilities.Interfaces.Adaptors.ConvRadToCombPort thermStar_Demux annotation (Placement(transformation( + extent={{-10,8},{10,-8}}, + rotation=90, + origin={14,-60}))); + AixLib.ThermalZones.HighOrder.Components.DryAir.VarAirExchange + NaturalVentilation(V=room_V) + annotation (Placement(transformation(extent={{66,72},{94,98}}))); + + replaceable model WindowModel = + AixLib.ThermalZones.HighOrder.Components.WindowsDoors.BaseClasses.PartialWindow + constrainedby + AixLib.ThermalZones.HighOrder.Components.WindowsDoors.BaseClasses.PartialWindow + annotation (Dialog(tab="Outer walls", group="Windows"), choicesAllMatching = true); + + replaceable model CorrSolarGainWin = + AixLib.ThermalZones.HighOrder.Components.WindowsDoors.BaseClasses.CorrectionSolarGain.PartialCorG + constrainedby + AixLib.ThermalZones.HighOrder.Components.WindowsDoors.BaseClasses.CorrectionSolarGain.PartialCorG + "Correction model for solar irradiance as transmitted radiation" annotation (choicesAllMatching=true, Dialog(tab="Outer walls", group="Windows", enable = withWindow and outside)); + + protected + parameter Real n50(unit = "h-1") = if TIR == 1 or TIR == 2 then 3 else if TIR == 3 then 4 else 6 + "Air exchange rate at 50 Pa pressure difference" annotation(Dialog(tab = "Infiltration")); + parameter Real e = 0.03 "Coefficient of windshield" annotation(Dialog(tab = "Infiltration")); + parameter Real eps = 1.0 "Coefficient of height" annotation(Dialog(tab = "Infiltration")); + // Outer wall type + parameter AixLib.DataBase.Walls.WallBaseDataDefinition Type_OW = if TIR == 1 then if TMC == 1 then AixLib.DataBase.Walls.EnEV2009.OW.OW_EnEV2009_S() else if TMC == 2 then AixLib.DataBase.Walls.EnEV2009.OW.OW_EnEV2009_M() else AixLib.DataBase.Walls.EnEV2009.OW.OW_EnEV2009_L() else if TIR == 2 then if TMC == 1 then AixLib.DataBase.Walls.EnEV2002.OW.OW_EnEV2002_S() else if TMC == 2 then AixLib.DataBase.Walls.EnEV2002.OW.OW_EnEV2002_M() else AixLib.DataBase.Walls.EnEV2002.OW.OW_EnEV2002_L() else if TIR == 3 then if TMC == 1 then AixLib.DataBase.Walls.WSchV1995.OW.OW_WSchV1995_S() else if TMC == 2 then AixLib.DataBase.Walls.WSchV1995.OW.OW_WSchV1995_M() else AixLib.DataBase.Walls.WSchV1995.OW.OW_WSchV1995_L() else if TMC == 1 then AixLib.DataBase.Walls.WSchV1984.OW.OW_WSchV1984_S() else if TMC == 2 then AixLib.DataBase.Walls.WSchV1984.OW.OW_WSchV1984_M() else AixLib.DataBase.Walls.WSchV1984.OW.OW_WSchV1984_L() annotation(Dialog(tab = "Types")); + //Inner wall Types + parameter AixLib.DataBase.Walls.WallBaseDataDefinition Type_IWload = if TIR == 1 then if TMC == 1 then AixLib.DataBase.Walls.EnEV2009.IW.IWload_EnEV2009_S_half() else if TMC == 2 then AixLib.DataBase.Walls.EnEV2009.IW.IWload_EnEV2009_M_half() else AixLib.DataBase.Walls.EnEV2009.IW.IWload_EnEV2009_L_half() else if TIR == 2 then if TMC == 1 then AixLib.DataBase.Walls.EnEV2002.IW.IWload_EnEV2002_S_half() else if TMC == 2 then AixLib.DataBase.Walls.EnEV2002.IW.IWload_EnEV2002_M_half() else AixLib.DataBase.Walls.EnEV2002.IW.IWload_EnEV2002_L_half() else if TIR == 3 then if TMC == 1 then AixLib.DataBase.Walls.WSchV1995.IW.IWload_WSchV1995_S_half() else if TMC == 2 then AixLib.DataBase.Walls.WSchV1995.IW.IWload_WSchV1995_M_half() else AixLib.DataBase.Walls.WSchV1995.IW.IWload_WSchV1995_L_half() else if TMC == 1 then AixLib.DataBase.Walls.WSchV1984.IW.IWload_WSchV1984_S_half() else if TMC == 2 then AixLib.DataBase.Walls.WSchV1984.IW.IWload_WSchV1984_M_half() else AixLib.DataBase.Walls.WSchV1984.IW.IWload_WSchV1984_L_half() annotation(Dialog(tab = "Types")); + parameter AixLib.DataBase.Walls.WallBaseDataDefinition Type_IWNeigbour = if TIR == 1 then if TMC == 1 then AixLib.DataBase.Walls.EnEV2009.IW.IWneighbour_EnEV2009_S_half() else if TMC == 2 then AixLib.DataBase.Walls.EnEV2009.IW.IWneighbour_EnEV2009_M_half() else AixLib.DataBase.Walls.EnEV2009.IW.IWneighbour_EnEV2009_L_half() else if TIR == 2 then if TMC == 1 then AixLib.DataBase.Walls.EnEV2002.IW.IWneighbour_EnEV2002_S_half() else if TMC == 2 then AixLib.DataBase.Walls.EnEV2002.IW.IWneighbour_EnEV2002_M_half() else AixLib.DataBase.Walls.EnEV2002.IW.IWneighbour_EnEV2002_L_half() else if TIR == 3 then if TMC == 1 then AixLib.DataBase.Walls.WSchV1995.IW.IWneighbour_WSchV1995_S_half() else if TMC == 2 then AixLib.DataBase.Walls.WSchV1995.IW.IWneighbour_WSchV1995_M_half() else AixLib.DataBase.Walls.WSchV1995.IW.IWneighbour_WSchV1995_L_half() else if TMC == 1 then AixLib.DataBase.Walls.WSchV1984.IW.IWneighbour_WSchV1984_S_half() else if TMC == 2 then AixLib.DataBase.Walls.WSchV1984.IW.IWneighbour_WSchV1984_M_half() else AixLib.DataBase.Walls.WSchV1984.IW.IWneighbour_WSchV1984_L_half() annotation(Dialog(tab = "Types")); + // Floor type + parameter AixLib.DataBase.Walls.WallBaseDataDefinition Type_FL = if Floor == 1 then if TIR == 1 then AixLib.DataBase.Walls.EnEV2009.Floor.FLcellar_EnEV2009_SML_upHalf() else if TIR == 2 then AixLib.DataBase.Walls.EnEV2002.Floor.FLcellar_EnEV2002_SML_upHalf() else if TIR == 3 then AixLib.DataBase.Walls.WSchV1995.Floor.FLcellar_WSchV1995_SML_upHalf() else AixLib.DataBase.Walls.WSchV1984.Floor.FLcellar_WSchV1984_SML_upHalf() else if TIR == 1 then if TMC == 1 or TMC == 2 then AixLib.DataBase.Walls.EnEV2009.Floor.FLpartition_EnEV2009_SM_upHalf() else AixLib.DataBase.Walls.EnEV2009.Floor.FLpartition_EnEV2009_L_upHalf() else if TIR == 2 then if TMC == 1 or TMC == 2 then AixLib.DataBase.Walls.EnEV2002.Floor.FLpartition_EnEV2002_SM_upHalf() else AixLib.DataBase.Walls.EnEV2002.Floor.FLpartition_EnEV2002_L_upHalf() else if TIR == 3 then if TMC == 1 or TMC == 2 then AixLib.DataBase.Walls.WSchV1995.Floor.FLpartition_WSchV1995_SM_upHalf() else AixLib.DataBase.Walls.WSchV1995.Floor.FLpartition_WSchV1995_L_upHalf() else if TMC == 1 or TMC == 2 then AixLib.DataBase.Walls.WSchV1984.Floor.FLpartition_WSchV1984_SM_upHalf() else AixLib.DataBase.Walls.WSchV1984.Floor.FLpartition_WSchV1984_L_upHalf() annotation(Dialog(tab = "Types")); + // Ceiling type + parameter AixLib.DataBase.Walls.WallBaseDataDefinition Type_CE = if Floor == 1 or Floor == 2 then if TIR == 1 then if TMC == 1 or TMC == 2 then AixLib.DataBase.Walls.EnEV2009.Ceiling.CEpartition_EnEV2009_SM_loHalf() else AixLib.DataBase.Walls.EnEV2009.Ceiling.CEpartition_EnEV2009_L_loHalf() else if TIR == 2 then if TMC == 1 or TMC == 2 then AixLib.DataBase.Walls.EnEV2002.Ceiling.CEpartition_EnEV2002_SM_loHalf() else AixLib.DataBase.Walls.EnEV2002.Ceiling.CEpartition_EnEV2002_L_loHalf() else if TIR == 3 then if TMC == 1 or TMC == 2 then AixLib.DataBase.Walls.WSchV1995.Ceiling.CEpartition_WSchV1995_SM_loHalf() else AixLib.DataBase.Walls.WSchV1995.Ceiling.CEpartition_WSchV1995_L_loHalf() else if TMC == 1 or TMC == 2 then AixLib.DataBase.Walls.WSchV1984.Ceiling.CEpartition_WSchV1984_SM_loHalf() else AixLib.DataBase.Walls.WSchV1984.Ceiling.CEpartition_WSchV1984_L_loHalf() else if TIR == 1 then AixLib.DataBase.Walls.EnEV2009.Ceiling.CEattic_EnEV2009_SML_loHalf() else if TIR == 2 then AixLib.DataBase.Walls.EnEV2002.Ceiling.CEattic_EnEV2002_SML_loHalf() else if TIR == 3 then AixLib.DataBase.Walls.WSchV1995.Ceiling.CEattic_WSchV1995_SML_loHalf() else AixLib.DataBase.Walls.WSchV1984.Ceiling.CEattic_WSchV1984_SML_loHalf() annotation(Dialog(tab = "Types")); + //Window type + parameter AixLib.DataBase.WindowsDoors.Simple.OWBaseDataDefinition_Simple Type_Win = if TIR == 1 then AixLib.DataBase.WindowsDoors.Simple.WindowSimple_EnEV2009() else if TIR == 2 then AixLib.DataBase.WindowsDoors.Simple.WindowSimple_EnEV2002() else if TIR == 3 then AixLib.DataBase.WindowsDoors.Simple.WindowSimple_WSchV1995() else AixLib.DataBase.WindowsDoors.Simple.WindowSimple_WSchV1984() annotation(Dialog(tab = "Types")); + parameter Modelica.Units.SI.Volume room_V=3.105*5.30*2.46; + equation + connect(outsideWall.SolarRadiationPort, SolarRadiation_NW) annotation(Line(points = {{-59, -105}, {-59, -118.691}, {-60, -118.691}, {-60, -150}}, color = {255, 128, 0})); + connect(outsideWall.WindSpeedPort, WindSpeedPort) annotation(Line(points = {{-48, -102.5}, {-48, -130}, {-80, -130}, {-80, -4}, {-108, -4}}, color = {0, 0, 127})); + connect(infiltrationRate.port_a, thermOutside) annotation(Line(points = {{-44, 93}, {-61.35, 93}, {-61.35, 90}, {-100, 90}}, color = {191, 0, 0})); + connect(infiltrationRate.port_b, airload.port) annotation(Line(points={{-18,93},{-18,92},{44,92},{44,-2},{20,-2}}, color = {191, 0, 0})); + connect(Wall_Livingroom.port_outside, thermLivingroom) annotation(Line(points={{-10,50.4},{-10,50.4},{-10,66},{-80,66},{-80,0},{-100,0}}, color = {191, 0, 0})); + connect(Wall_Corridor.port_outside, thermCorridor) annotation(Line(points={{62.15,16},{84,16},{84,66},{-80,66},{-80,-30},{-100,-30}}, color = {191, 0, 0})); + connect(Wall_Bath.port_outside, thermBath) annotation(Line(points={{66.25,-40},{80,-40},{80,-130},{-80,-130},{-80,-60},{-100,-60}}, color = {191, 0, 0})); + connect(Wall_Ceiling.port_outside, thermCeiling) annotation(Line(points = {{96, -59.9}, {96, -48}, {130, -48}, {130, -130}, {-80, -130}, {-80, -120}, {-100, -120}}, color = {191, 0, 0})); + connect(Wall_Neighbour.port_outside, thermNeigbour) annotation(Line(points = {{-74.35, -19}, {-80, -19}, {-80, -90}, {-100, -90}}, color = {191, 0, 0})); + connect(thermFloor, Wall_Floor.port_outside) annotation(Line(points={{-100,-150},{-90,-150},{-90,-142},{-80,-142},{-80,-130},{96,-130},{96,-102.1}}, + color = {191, 0, 0})); + connect(outsideWall.thermStarComb_inside, thermStar_Demux.portConvRadComb) annotation (Line(points={{-4,-82},{-4,-74},{14,-74},{14,-70}}, color={191,0,0})); + connect(thermStar_Demux.portConvRadComb, Wall_Ceiling.thermStarComb_inside) annotation (Line(points={{14,-70},{14,-74},{96,-74},{96,-64}}, color={191,0,0})); + connect(Wall_Floor.thermStarComb_inside, thermStar_Demux.portConvRadComb) annotation (Line(points={{96,-98.0002},{96,-74},{14,-74},{14,-70}}, color={191,0,0})); + connect(thermStar_Demux.portRad, StarRoom) annotation (Line( + points={{19,-50},{19,-43.8},{28,-43.8},{28,-34}}, + color={95,95,95}, + pattern=LinePattern.Solid)); + connect(thermStar_Demux.portConv, airload.port) annotation (Line(points={{8.9,-49.9},{8.9,-16},{44,-16},{44,6},{29,6}}, color={191,0,0})); + connect(thermStar_Demux.portConv, ThermRoom) annotation (Line(points={{8.9,-49.9},{8.9,-36},{-10,-36}}, color={191,0,0})); + connect(Wall_Neighbour.thermStarComb_inside, thermStar_Demux.portConvRadComb) annotation (Line(points={{-60,-19},{-48,-19},{-48,-74},{15.3,-74},{15.3,-69.8}}, color={191,0,0})); + connect(Wall_Livingroom.thermStarComb_inside, thermStar_Demux.portConvRadComb) annotation (Line(points={{-10,34},{-10,24},{-48,24},{-48, + -74},{15.3,-74},{15.3,-69.8}}, color={191,0,0})); + connect(Wall_Corridor.thermStarComb_inside, thermStar_Demux.portConvRadComb) annotation (Line(points={{56,16},{44,16},{44,-74},{15.3,-74}, + {15.3,-69.8}}, color={191,0,0})); + connect(Wall_Bath.thermStarComb_inside, thermStar_Demux.portConvRadComb) annotation (Line(points={{56,-40},{44,-40},{44,-74},{15.3,-74},{ + 15.3,-69.8}}, color={191,0,0})); + connect(AirExchangePort, NaturalVentilation.ventRate) annotation (Line(points= + {{-110,50},{-80,50},{-80,66},{44,66},{44,76.68},{67.4,76.68}}, color={ + 0,0,127})); + connect(NaturalVentilation.port_a, thermOutside) annotation(Line(points = {{66, 85}, {44, 85}, {44, 90}, {-100, 90}}, color = {191, 0, 0})); + connect(airload.port, NaturalVentilation.port_b) annotation(Line(points={{20,-2},{44,-2},{44,66},{100,66},{100,85},{94,85}}, color = {191, 0, 0})); + connect(outsideWall.port_outside, thermOutside) annotation(Line(points = {{-4, -102.5}, {-4, -130}, {-80, -130}, {-80, 90}, {-100, 90}}, color = {191, 0, 0})); + annotation(Diagram(coordinateSystem(preserveAspectRatio = true, extent = {{-100, -150}, {150, 100}})), Icon(coordinateSystem(preserveAspectRatio = true, extent = {{-100, -150}, {150, 100}}), graphics={ Rectangle(extent = {{-54, 68}, {98, -112}}, lineColor = {0, 0, 0}, fillColor = {255, 255, 255}, + fillPattern = FillPattern.Forward), Text(extent = {{-40, 2}, {84, -26}}, lineColor = {0, 0, 0}, fillColor = {255, 0, 0}, + fillPattern = FillPattern.Forward, textString = "Bedroom"), Rectangle(extent = {{-42, -104}, {-20, -124}}, lineColor = {0, 0, 0}, fillColor = {85, 255, 255}, + fillPattern = FillPattern.Solid), Rectangle(extent = {{-40, -106}, {-22, -122}}, lineColor = {0, 0, 0}, fillColor = {170, 213, 255}, + fillPattern = FillPattern.Solid), Line(points = {{-36, -118}, {-26, -108}}, color = {255, 255, 255}, thickness = 1), Line(points = {{-32, -118}, {-26, -112}}, color = {255, 255, 255}, thickness = 1), Line(points = {{-36, -114}, {-30, -108}}, color = {255, 255, 255}, thickness = 1), Text(extent = {{-32, -112}, {18, -128}}, lineColor = {0, 0, 0}, + lineThickness = 1, fillColor = {255, 255, 255}, + fillPattern = FillPattern.Solid, textString = "OW"), Text(extent = {{26, 92}, {76, 76}}, lineColor = {0, 0, 0}, + lineThickness = 1, fillColor = {255, 255, 255}, + fillPattern = FillPattern.Solid, textString = "Corridor"), Rectangle(extent = {{-54, 94}, {-34, 64}}, lineColor = {0, 0, 0}, + lineThickness = 1, fillColor = {127, 0, 0}, + fillPattern = FillPattern.Forward), Ellipse(extent = {{-52, 82}, {-50, 80}}, lineColor = {0, 0, 0}, pattern=LinePattern.None, + lineThickness = 1, + fillPattern = FillPattern.Sphere, fillColor = {255, 255, 0}), Text(extent = {{-72, -16}, {-76, -18}}, lineColor = {0, 0, 0}, + lineThickness = 0.5, textString = "Edit Here"), Rectangle(extent = {{-110, -110}, {-90, -130}}, lineColor = {0, 0, 0}, + lineThickness = 0.5), Rectangle(extent = {{-110, -80}, {-90, -100}}, lineColor = {0, 0, 0}, + lineThickness = 0.5), Rectangle(extent = {{-110, -20}, {-90, -40}}, lineColor = {0, 0, 0}, + lineThickness = 0.5), Rectangle(extent = {{-110, 10}, {-90, -10}}, lineColor = {0, 0, 0}, + lineThickness = 0.5), Rectangle(extent = {{-110, 72}, {-90, 18}}, lineColor = {0, 0, 0}, + lineThickness = 0.5), Rectangle(extent = {{-110, 100}, {-90, 80}}, lineColor = {0, 0, 0}, + lineThickness = 0.5), Rectangle(extent = {{-110, -50}, {-90, -70}}, lineColor = {0, 0, 0}, + lineThickness = 0.5), Rectangle(extent = {{-110, -140}, {-90, -160}}, lineColor = {0, 0, 0}, + lineThickness = 0.5)}), Documentation(revisions = "
                                      +
                                    • + April 18, 2014 by Ana Constantin:
                                      + Added documentation +
                                    • +
                                    • + August 16, 2011 by Ana Constantin:
                                      + Implemented +
                                    • +
                                    +", info = " +

                                    + Overview +

                                    +

                                    + Model for the bedroom. +

                                    +

                                    + Concept +

                                    +

                                    + The following figure presents the room's layout: +

                                    +

                                    + \"Room +

                                    +")); + end Bedroom_VoWo; + + model Children_VoWo "Children room from the VoWo appartment" + ///////// construction parameters + parameter Integer TMC = 1 "Thermal Mass Class" annotation(Dialog(group = "Construction parameters", compact = true, descriptionLabel = true), choices(choice = 1 "Heavy", choice = 2 "Medium", choice = 3 "Light", radioButtons = true)); + parameter Integer TIR = 4 "Thermal Insulation Regulation" annotation(Dialog(groupImage = "modelica://AixLib/Resources/Images/Building/HighOrder/VoWo_Children.png", group = "Construction parameters", compact = true, descriptionLabel = true), choices(choice = 1 + "EnEV_2009", choice = 2 + "EnEV_2002", choice = 3 + "WSchV_1995", choice = 4 + "WSchV_1984", radioButtons = true)); + parameter Integer Floor = 1 "Floor" annotation(Dialog(group = "Floor", compact = true, descriptionLabel = true), choices(choice = 1 "GF", choice = 2 "1F", choice = 3 "2F", radioButtons = true)); + // Outer walls properties + parameter Real solar_absorptance_OW = 0.7 "Solar absoptance outer walls " annotation(Dialog(group = "Outer wall properties", descriptionLabel = true)); + parameter Integer calcMethod=1 "Calculation method for convective heat transfer coefficient" annotation (Dialog( + group="Outer wall properties", + compact=true, + descriptionLabel=true), choices( + choice=1 "DIN 6946", + choice=2 "ASHRAE Fundamentals", + choice=3 "Custom hCon (constant)", + radioButtons=true)); + //Initial temperatures + parameter Modelica.Units.SI.Temperature T0_air=295.15 "Air" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + parameter Modelica.Units.SI.Temperature T0_OW=295.15 "OW" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + parameter Modelica.Units.SI.Temperature T0_IWLivingroom=294.15 "IWLivingroom" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + parameter Modelica.Units.SI.Temperature T0_IWNeighbour=294.15 "IWNeighbour" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + parameter Modelica.Units.SI.Temperature T0_IWCorridor=290.15 "IWCorridor" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + parameter Modelica.Units.SI.Temperature T0_IWStraicase=288.15 "IWStaircase" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + parameter Modelica.Units.SI.Temperature T0_CE=295.35 "Ceiling" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + parameter Modelica.Units.SI.Temperature T0_FL=294.95 "Floor" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + // Sunblind + parameter Boolean use_sunblind = false + "Will sunblind become active automatically?" + annotation(Dialog(group = "Sunblind")); + parameter Real ratioSunblind(min=0.0, max=1.0)= 0.8 + "Sunblind factor. 1 means total blocking of irradiation, 0 no sunblind" + annotation(Dialog(group = "Sunblind", enable=use_sunblind)); + parameter Modelica.Units.SI.Irradiance solIrrThreshold(min=0.0) = 350 + "Threshold for global solar irradiation on this surface to enable sunblinding (see also TOutAirLimit)" + annotation (Dialog(group="Sunblind", enable=use_sunblind)); + parameter Modelica.Units.SI.Temperature TOutAirLimit + "Temperature at which sunblind closes (see also solIrrThreshold)" + annotation (Dialog(group="Sunblind", enable=use_sunblind)); + AixLib.ThermalZones.HighOrder.Components.Walls.Wall Wall_Livingroom( + redeclare final model WindowModel=WindowModel, + redeclare final model CorrSolarGainWin=CorrSolarGainWin, + T0=T0_IWLivingroom, + outside=false, + final withSunblind=use_sunblind, + final Blinding=1 - ratioSunblind, + final LimitSolIrr=solIrrThreshold, + final TOutAirLimit=TOutAirLimit, + wallPar=Type_IWload, + wall_length=4.2, + wall_height=2.46, + withWindow=false, + withDoor=false) annotation (Placement(transformation(extent={{-76,-40},{-66,20}}))); + AixLib.ThermalZones.HighOrder.Components.Walls.Wall Wall_Corridor( + redeclare final model WindowModel=WindowModel, + redeclare final model CorrSolarGainWin=CorrSolarGainWin, + T0=T0_IWCorridor, + outside=false, + final withSunblind=use_sunblind, + final Blinding=1 - ratioSunblind, + final LimitSolIrr=solIrrThreshold, + final TOutAirLimit=TOutAirLimit, + wallPar=Type_IWload, + wall_length=2.13, + wall_height=2.46, + withWindow=false, + withDoor=false) annotation (Placement(transformation( + origin={-25.6,-49}, + extent={{-3,-21.6},{5,26.4}}, + rotation=90))); + AixLib.ThermalZones.HighOrder.Components.Walls.Wall Wall_Neighbour( + redeclare final model WindowModel=WindowModel, + redeclare final model CorrSolarGainWin=CorrSolarGainWin, + T0=T0_IWNeighbour, + outside=false, + final withSunblind=use_sunblind, + final Blinding=1 - ratioSunblind, + final LimitSolIrr=solIrrThreshold, + final TOutAirLimit=TOutAirLimit, + wallPar=Type_IWload, + wall_length=4.2, + wall_height=2.46, + withWindow=false, + withDoor=false) annotation (Placement(transformation( + origin={60,4.92309}, + extent={{-2,-35.0769},{10,36.9231}}, + rotation=180))); + AixLib.ThermalZones.HighOrder.Components.DryAir.Airload airload( + final T0=T0_air, + final V=room_V) + annotation (Placement(transformation(extent={{-38,16},{-58,36}}))); + AixLib.Utilities.Interfaces.SolarRad_in Strahlung_SE annotation ( + Placement(transformation( + extent={{-10,-10},{10,10}}, + rotation=270, + origin={-82,110}), iconTransformation( + extent={{-10,-10},{10,10}}, + rotation=270, + origin={-30,110}))); + AixLib.ThermalZones.HighOrder.Components.Walls.Wall outsideWall( + redeclare final model WindowModel=WindowModel, + redeclare final model CorrSolarGainWin=CorrSolarGainWin, + wall_length=3.38, + wall_height=2.46, + windowarea=1.84, + withWindow=true, + T0=T0_OW, + solar_absorptance=solar_absorptance_OW, + wallPar=Type_OW, + WindowType=Type_Win, + outside=true, + final withSunblind=use_sunblind, + final Blinding=1 - ratioSunblind, + final LimitSolIrr=solIrrThreshold, + final TOutAirLimit=TOutAirLimit, + withDoor=false) annotation (Placement(transformation( + origin={-12,51}, + extent={{-9,-54},{9,54}}, + rotation=270))); + AixLib.ThermalZones.HighOrder.Components.Walls.Wall Wall_Staircase( + redeclare final model WindowModel=WindowModel, + redeclare final model CorrSolarGainWin=CorrSolarGainWin, + T0=T0_IWStraicase, + outside=false, + final withSunblind=use_sunblind, + final Blinding=1 - ratioSunblind, + final LimitSolIrr=solIrrThreshold, + final TOutAirLimit=TOutAirLimit, + wallPar=Type_IWload, + wall_length=0.86, + wall_height=2.46, + withWindow=false, + withDoor=false) annotation (Placement(transformation( + origin={36.9565,-47}, + extent={{-3,-21.0435},{5,22.9565}}, + rotation=90))); + AixLib.ThermalZones.HighOrder.Components.Walls.Wall Wall_Ceiling( + redeclare final model WindowModel=WindowModel, + redeclare final model CorrSolarGainWin=CorrSolarGainWin, + T0=T0_CE, + outside=false, + final withSunblind=use_sunblind, + final Blinding=1 - ratioSunblind, + final LimitSolIrr=solIrrThreshold, + final TOutAirLimit=TOutAirLimit, + wallPar=Type_CE, + wall_length=4.20, + wall_height=3.38, + ISOrientation=3, + withWindow=false, + withDoor=false) "Decke" annotation (Placement(transformation( + origin={112,76}, + extent={{-1.99998,-10},{1.99998,10}}, + rotation=270))); + AixLib.ThermalZones.HighOrder.Components.Walls.Wall Wall_Floor( + redeclare final model WindowModel=WindowModel, + redeclare final model CorrSolarGainWin=CorrSolarGainWin, + T0=T0_FL, + outside=false, + final withSunblind=use_sunblind, + final Blinding=1 - ratioSunblind, + final LimitSolIrr=solIrrThreshold, + final TOutAirLimit=TOutAirLimit, + wallPar=Type_FL, + wall_length=4.20, + wall_height=3.38, + ISOrientation=2, + withWindow=false, + withDoor=false) annotation (Placement(transformation( + origin={112,42}, + extent={{-1.99998,-10},{1.99998,10}}, + rotation=90))); + AixLib.ThermalZones.HighOrder.Components.DryAir.InfiltrationRate_DIN12831 + infiltrationRate( + room_V=room_V, + n50=n50, + e=e, + eps=eps) + annotation (Placement(transformation(extent={{-44,-120},{-18,-94}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermOutside annotation(Placement(transformation(extent = {{-70, 88}, {-50, 108}}), iconTransformation(extent = {{-70, 88}, {-50, 108}}))); + Modelica.Blocks.Interfaces.RealInput WindSpeedPort annotation(Placement(transformation(extent = {{-124, -8}, {-84, 32}}), iconTransformation(extent = {{-110, 30}, {-90, 50}}))); + Modelica.Blocks.Interfaces.RealInput AirExchangePort annotation(Placement(transformation(extent = {{-124, 20}, {-84, 60}}), iconTransformation(extent = {{-110, 60}, {-90, 80}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermNeighbour annotation(Placement(transformation(extent = {{-110, 0}, {-90, 20}}), iconTransformation(extent = {{-110, 0}, {-90, 20}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermStaircase annotation(Placement(transformation(extent = {{-110, -30}, {-90, -10}}), iconTransformation(extent = {{-110, -30}, {-90, -10}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermCorridor annotation(Placement(transformation(extent = {{-110, -60}, {-90, -40}}), iconTransformation(extent = {{-110, -60}, {-90, -40}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermLivingroom annotation(Placement(transformation(extent = {{-108, -130}, {-88, -110}}), iconTransformation(extent = {{-110, -90}, {-90, -70}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermCeiling annotation(Placement(transformation(extent = {{-110, -120}, {-90, -100}}), iconTransformation(extent = {{-110, -120}, {-90, -100}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermFloor annotation(Placement(transformation(extent = {{-110, -152}, {-90, -132}}), iconTransformation(extent = {{-110, -152}, {-90, -132}}))); + AixLib.Utilities.Interfaces.RadPort StarRoom annotation (Placement( + transformation(extent={{6,-6},{26,14}}), iconTransformation(extent= + {{6,-6},{26,14}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a ThermRoom annotation(Placement(transformation(extent = {{-26, -4}, {-6, 16}}), iconTransformation(extent = {{-26, -4}, {-6, 16}}))); + AixLib.Utilities.Interfaces.Adaptors.ConvRadToCombPort thermStar_Demux annotation (Placement(transformation( + extent={{-10,8},{10,-8}}, + rotation=90, + origin={0,-22}))); + AixLib.ThermalZones.HighOrder.Components.DryAir.VarAirExchange + NaturalVentilation(V=room_V) + annotation (Placement(transformation(extent={{-44,-94},{-16,-68}}))); + + replaceable model WindowModel = + AixLib.ThermalZones.HighOrder.Components.WindowsDoors.BaseClasses.PartialWindow + constrainedby + AixLib.ThermalZones.HighOrder.Components.WindowsDoors.BaseClasses.PartialWindow + annotation (Dialog(tab="Outer walls", group="Windows"), choicesAllMatching = true); + + replaceable model CorrSolarGainWin = + AixLib.ThermalZones.HighOrder.Components.WindowsDoors.BaseClasses.CorrectionSolarGain.PartialCorG + constrainedby + AixLib.ThermalZones.HighOrder.Components.WindowsDoors.BaseClasses.CorrectionSolarGain.PartialCorG + "Correction model for solar irradiance as transmitted radiation" annotation (choicesAllMatching=true, Dialog(tab="Outer walls", group="Windows", enable = withWindow and outside)); + + protected + parameter Real n50(unit = "h-1") = if TIR == 1 or TIR == 2 then 3 else if TIR == 3 then 4 else 6 + "Air exchange rate at 50 Pa pressure difference" annotation(Dialog(tab = "Infiltration")); + parameter Real e = 0.03 "Coefficient of windshield" annotation(Dialog(tab = "Infiltration")); + parameter Real eps = 1.0 "Coefficient of height" annotation(Dialog(tab = "Infiltration")); + // Outer wall type + parameter AixLib.DataBase.Walls.WallBaseDataDefinition Type_OW = if TIR == 1 then if TMC == 1 then AixLib.DataBase.Walls.EnEV2009.OW.OW_EnEV2009_S() else if TMC == 2 then AixLib.DataBase.Walls.EnEV2009.OW.OW_EnEV2009_M() else AixLib.DataBase.Walls.EnEV2009.OW.OW_EnEV2009_L() else if TIR == 2 then if TMC == 1 then AixLib.DataBase.Walls.EnEV2002.OW.OW_EnEV2002_S() else if TMC == 2 then AixLib.DataBase.Walls.EnEV2002.OW.OW_EnEV2002_M() else AixLib.DataBase.Walls.EnEV2002.OW.OW_EnEV2002_L() else if TIR == 3 then if TMC == 1 then AixLib.DataBase.Walls.WSchV1995.OW.OW_WSchV1995_S() else if TMC == 2 then AixLib.DataBase.Walls.WSchV1995.OW.OW_WSchV1995_M() else AixLib.DataBase.Walls.WSchV1995.OW.OW_WSchV1995_L() else if TMC == 1 then AixLib.DataBase.Walls.WSchV1984.OW.OW_WSchV1984_S() else if TMC == 2 then AixLib.DataBase.Walls.WSchV1984.OW.OW_WSchV1984_M() else AixLib.DataBase.Walls.WSchV1984.OW.OW_WSchV1984_L() annotation(Dialog(tab = "Types")); + //Inner wall Types + parameter AixLib.DataBase.Walls.WallBaseDataDefinition Type_IWload = if TIR == 1 then if TMC == 1 then AixLib.DataBase.Walls.EnEV2009.IW.IWload_EnEV2009_S_half() else if TMC == 2 then AixLib.DataBase.Walls.EnEV2009.IW.IWload_EnEV2009_M_half() else AixLib.DataBase.Walls.EnEV2009.IW.IWload_EnEV2009_L_half() else if TIR == 2 then if TMC == 1 then AixLib.DataBase.Walls.EnEV2002.IW.IWload_EnEV2002_S_half() else if TMC == 2 then AixLib.DataBase.Walls.EnEV2002.IW.IWload_EnEV2002_M_half() else AixLib.DataBase.Walls.EnEV2002.IW.IWload_EnEV2002_L_half() else if TIR == 3 then if TMC == 1 then AixLib.DataBase.Walls.WSchV1995.IW.IWload_WSchV1995_S_half() else if TMC == 2 then AixLib.DataBase.Walls.WSchV1995.IW.IWload_WSchV1995_M_half() else AixLib.DataBase.Walls.WSchV1995.IW.IWload_WSchV1995_L_half() else if TMC == 1 then AixLib.DataBase.Walls.WSchV1984.IW.IWload_WSchV1984_S_half() else if TMC == 2 then AixLib.DataBase.Walls.WSchV1984.IW.IWload_WSchV1984_M_half() else AixLib.DataBase.Walls.WSchV1984.IW.IWload_WSchV1984_L_half() annotation(Dialog(tab = "Types")); + // Floor type + parameter AixLib.DataBase.Walls.WallBaseDataDefinition Type_FL = if Floor == 1 then if TIR == 1 then AixLib.DataBase.Walls.EnEV2009.Floor.FLcellar_EnEV2009_SML_upHalf() else if TIR == 2 then AixLib.DataBase.Walls.EnEV2002.Floor.FLcellar_EnEV2002_SML_upHalf() else if TIR == 3 then AixLib.DataBase.Walls.WSchV1995.Floor.FLcellar_WSchV1995_SML_upHalf() else AixLib.DataBase.Walls.WSchV1984.Floor.FLcellar_WSchV1984_SML_upHalf() else if TIR == 1 then if TMC == 1 or TMC == 2 then AixLib.DataBase.Walls.EnEV2009.Floor.FLpartition_EnEV2009_SM_upHalf() else AixLib.DataBase.Walls.EnEV2009.Floor.FLpartition_EnEV2009_L_upHalf() else if TIR == 2 then if TMC == 1 or TMC == 2 then AixLib.DataBase.Walls.EnEV2002.Floor.FLpartition_EnEV2002_SM_upHalf() else AixLib.DataBase.Walls.EnEV2002.Floor.FLpartition_EnEV2002_L_upHalf() else if TIR == 3 then if TMC == 1 or TMC == 2 then AixLib.DataBase.Walls.WSchV1995.Floor.FLpartition_WSchV1995_SM_upHalf() else AixLib.DataBase.Walls.WSchV1995.Floor.FLpartition_WSchV1995_L_upHalf() else if TMC == 1 or TMC == 2 then AixLib.DataBase.Walls.WSchV1984.Floor.FLpartition_WSchV1984_SM_upHalf() else AixLib.DataBase.Walls.WSchV1984.Floor.FLpartition_WSchV1984_L_upHalf() annotation(Dialog(tab = "Types")); + // Ceiling type + parameter AixLib.DataBase.Walls.WallBaseDataDefinition Type_CE = if Floor == 1 or Floor == 2 then if TIR == 1 then if TMC == 1 or TMC == 2 then AixLib.DataBase.Walls.EnEV2009.Ceiling.CEpartition_EnEV2009_SM_loHalf() else AixLib.DataBase.Walls.EnEV2009.Ceiling.CEpartition_EnEV2009_L_loHalf() else if TIR == 2 then if TMC == 1 or TMC == 2 then AixLib.DataBase.Walls.EnEV2002.Ceiling.CEpartition_EnEV2002_SM_loHalf() else AixLib.DataBase.Walls.EnEV2002.Ceiling.CEpartition_EnEV2002_L_loHalf() else if TIR == 3 then if TMC == 1 or TMC == 2 then AixLib.DataBase.Walls.WSchV1995.Ceiling.CEpartition_WSchV1995_SM_loHalf() else AixLib.DataBase.Walls.WSchV1995.Ceiling.CEpartition_WSchV1995_L_loHalf() else if TMC == 1 or TMC == 2 then AixLib.DataBase.Walls.WSchV1984.Ceiling.CEpartition_WSchV1984_SM_loHalf() else AixLib.DataBase.Walls.WSchV1984.Ceiling.CEpartition_WSchV1984_L_loHalf() else if TIR == 1 then AixLib.DataBase.Walls.EnEV2009.Ceiling.CEattic_EnEV2009_SML_loHalf() else if TIR == 2 then AixLib.DataBase.Walls.EnEV2002.Ceiling.CEattic_EnEV2002_SML_loHalf() else if TIR == 3 then AixLib.DataBase.Walls.WSchV1995.Ceiling.CEattic_WSchV1995_SML_loHalf() else AixLib.DataBase.Walls.WSchV1984.Ceiling.CEattic_WSchV1984_SML_loHalf() annotation(Dialog(tab = "Types")); + //Window type + parameter AixLib.DataBase.WindowsDoors.Simple.OWBaseDataDefinition_Simple Type_Win = if TIR == 1 then AixLib.DataBase.WindowsDoors.Simple.WindowSimple_EnEV2009() else if TIR == 2 then AixLib.DataBase.WindowsDoors.Simple.WindowSimple_EnEV2002() else if TIR == 3 then AixLib.DataBase.WindowsDoors.Simple.WindowSimple_WSchV1995() else AixLib.DataBase.WindowsDoors.Simple.WindowSimple_WSchV1984() annotation(Dialog(tab = "Types")); + parameter Modelica.Units.SI.Volume room_V=3.38*4.20*2.46; + equation + connect(Strahlung_SE, outsideWall.SolarRadiationPort) annotation(Line(points = {{-82, 110}, {-82, 78}, {58, 78}, {58, 62.7}, {37.5, 62.7}}, color = {255, 128, 0})); + connect(infiltrationRate.port_b, airload.port) annotation(Line(points={{-18,-107},{0,-107},{0,-36},{-32,-36},{-32,16},{-48,16}}, color = {191, 0, 0})); + connect(infiltrationRate.port_a, thermOutside) annotation(Line(points = {{-44, -107}, {-80, -107}, {-80, 98}, {-60, 98}}, color = {191, 0, 0})); + connect(outsideWall.WindSpeedPort, WindSpeedPort) annotation(Line(points = {{27.6, 60.45}, {27.6, 78}, {-80, 78}, {-80, 12}, {-104, 12}}, color = {0, 0, 127})); + connect(Wall_Neighbour.port_outside, thermNeighbour) annotation(Line(points = {{62.3, 3.99999}, {100, 3.99999}, {100, -68}, {-80, -68}, {-80, 10}, {-100, 10}}, color = {191, 0, 0})); + connect(Wall_Staircase.port_outside, thermStaircase) annotation(Line(points = {{36, -50.2}, {36, -68}, {-80, -68}, {-80, -20}, {-100, -20}}, color = {191, 0, 0})); + connect(Wall_Corridor.port_outside, thermCorridor) annotation(Line(points = {{-28, -52.2}, {-28, -68}, {-80, -68}, {-80, -50}, {-100, -50}}, color = {191, 0, 0})); + connect(Wall_Livingroom.port_outside, thermLivingroom) annotation(Line(points = {{-76.25, -10}, {-80, -10}, {-80, -120}, {-98, -120}}, color = {191, 0, 0})); + connect(Wall_Ceiling.port_outside, thermCeiling) annotation(Line(points={{112,78.1},{112,88},{100,88},{100,-68},{-80,-68},{-80,-110},{-100,-110}}, color = {191, 0, 0})); + connect(Wall_Floor.port_outside, thermFloor) annotation(Line(points={{112,39.9},{112,8},{100,8},{100,-68},{-100,-68},{-100,-142}}, color = {191, 0, 0})); + connect(thermStar_Demux.portRad, StarRoom) annotation (Line( + points={{5,-12},{5,-10},{5,-8},{16,-8},{16,4}}, + color={95,95,95}, + pattern=LinePattern.Solid)); + connect(thermStar_Demux.portConv, ThermRoom) annotation (Line(points={{-5,-12},{-5,-3.95},{-16,-3.95},{-16,6}}, color={191,0,0})); + connect(thermStar_Demux.portConv, airload.port) annotation (Line(points={{-5,-12},{-32,-12},{-32,16},{-48,16}}, color={191,0,0})); + connect(Wall_Corridor.thermStarComb_inside, thermStar_Demux.portConvRadComb) annotation (Line(points={{-28,-44},{-28,-36},{-6.66134e-16,-36},{-6.66134e-16,-32}}, + color={191,0,0})); + connect(Wall_Staircase.thermStarComb_inside, thermStar_Demux.portConvRadComb) annotation (Line(points={{36,-42},{36,-36},{-6.66134e-16,-36},{-6.66134e-16,-32}}, + color={191,0,0})); + connect(Wall_Neighbour.thermStarComb_inside, thermStar_Demux.portConvRadComb) annotation (Line(points={{50,3.99999},{40,3.99999},{40,-36},{-6.66134e-16,-36},{-6.66134e-16,-32}}, + color={191,0,0})); + connect(outsideWall.thermStarComb_inside, thermStar_Demux.portConvRadComb) annotation (Line(points={{-12,42},{-12,30},{40,30},{40,-36},{-6.66134e-16,-36},{-6.66134e-16,-32}}, + color={191,0,0})); + connect(Wall_Floor.thermStarComb_inside, thermStar_Demux.portConvRadComb) annotation (Line(points={{112,44},{112,52},{40,52},{40,-36},{-6.66134e-16,-36},{-6.66134e-16,-32}}, + color={191,0,0})); + connect(Wall_Ceiling.thermStarComb_inside, thermStar_Demux.portConvRadComb) annotation (Line(points={{112,74},{112,52},{40,52},{40,-36},{-6.66134e-16,-36},{-6.66134e-16,-32}}, + color={191,0,0})); + connect(Wall_Livingroom.thermStarComb_inside, thermStar_Demux.portConvRadComb) annotation (Line(points={{-66,-10},{-50,-10},{-50,-36},{-6.66134e-16,-36},{-6.66134e-16,-32}}, + color={191,0,0})); + connect(thermOutside, NaturalVentilation.port_a) annotation(Line(points = {{-60, 98}, {-80, 98}, {-80, -68}, {-50, -68}, {-50, -81}, {-44, -81}}, color = {191, 0, 0})); + connect(AirExchangePort, NaturalVentilation.ventRate) annotation (Line(points= + {{-104,40},{-80,40},{-80,-68},{-50,-68},{-50,-89.32},{-42.6,-89.32}}, + color={0,0,127})); + connect(NaturalVentilation.port_b, airload.port) annotation(Line(points = {{-16, -81}, {0, -81}, {0, -36}, {-32, -36}, {-32, 24}, {-39, 24}}, color = {191, 0, 0})); + connect(outsideWall.port_outside, thermOutside) annotation(Line(points = {{-12, 60.45}, {-12, 98}, {-60, 98}}, color = {191, 0, 0})); + connect(thermOutside, thermOutside) annotation(Line(points = {{-60, 98}, {-86, 98}, {-86, 98}, {-60, 98}}, color = {191, 0, 0})); + annotation(DDiagram(coordinateSystem(preserveAspectRatio = true, extent = {{-100, -150}, {150, 100}}), graphics), Icon(coordinateSystem(preserveAspectRatio = true, extent = {{-100, -150}, {150, 100}}), graphics={ Rectangle(extent = {{-54, 68}, {116, -108}}, lineColor = {0, 0, 0}, fillColor = {255, 255, 255}, + fillPattern = FillPattern.Forward), Text(extent = {{-36, -20}, {98, -54}}, lineColor = {0, 0, 0}, fillColor = {255, 0, 0}, + fillPattern = FillPattern.Forward, textString = "Children"), Rectangle(extent = {{-10, 80}, {12, 60}}, lineColor = {0, 0, 0}, fillColor = {85, 255, 255}, + fillPattern = FillPattern.Solid), Rectangle(extent = {{-8, 78}, {10, 62}}, lineColor = {0, 0, 0}, fillColor = {170, 213, 255}, + fillPattern = FillPattern.Solid), Line(points = {{-4, 66}, {6, 76}}, color = {255, 255, 255}, thickness = 1), Line(points = {{0, 66}, {6, 72}}, color = {255, 255, 255}, thickness = 1), Line(points = {{-4, 70}, {2, 76}}, color = {255, 255, 255}, thickness = 1), Text(extent = {{2, 82}, {52, 66}}, lineColor = {0, 0, 0}, + lineThickness = 1, fillColor = {255, 255, 255}, + fillPattern = FillPattern.Solid, textString = "OW"), Text(extent = {{6, -110}, {56, -126}}, lineColor = {0, 0, 0}, + lineThickness = 1, fillColor = {255, 255, 255}, + fillPattern = FillPattern.Solid, textString = "Corridor"), Rectangle(extent = {{90, -96}, {110, -126}}, lineColor = {0, 0, 0}, + lineThickness = 1, fillColor = {127, 0, 0}, + fillPattern = FillPattern.Forward), Ellipse(extent = {{92, -108}, {94, -110}}, lineColor = {0, 0, 0}, pattern=LinePattern.None, + lineThickness = 1, + fillPattern = FillPattern.Sphere, fillColor = {255, 255, 0}), Rectangle(extent = {{-110, -100}, {-90, -120}}, lineColor = {0, 0, 0}, + lineThickness = 0.5), Rectangle(extent = {{-110, -70}, {-90, -90}}, lineColor = {0, 0, 0}, + lineThickness = 0.5), Rectangle(extent = {{-110, -40}, {-90, -60}}, lineColor = {0, 0, 0}, + lineThickness = 0.5), Rectangle(extent = {{-110, 20}, {-90, 0}}, lineColor = {0, 0, 0}, + lineThickness = 0.5), Rectangle(extent = {{-70, 88}, {-50, 88}}, lineColor = {0, 0, 0}, + lineThickness = 0.5), Rectangle(extent = {{-110, -10}, {-90, -30}}, lineColor = {0, 0, 0}, + lineThickness = 0.5), Rectangle(extent = {{-110, 82}, {-90, 28}}, lineColor = {0, 0, 0}, + lineThickness = 0.5), Rectangle(extent = {{-110, -132}, {-90, -152}}, lineColor = {0, 0, 0}, + lineThickness = 0.5)}), Documentation(revisions = "
                                      +
                                    • + April 18, 2014 by Ana Constantin:
                                      + Added documentation +
                                    • +
                                    • + August 16, 2011 by Ana Constantin:
                                      + Implemented +
                                    • +
                                    +", info = " +

                                    + Overview +

                                    +

                                    + Model for a second bedroom: the childrens' room. +

                                    +

                                    + Concept +

                                    +

                                    + The following figure presents the room's layout: +

                                    +

                                    + \"Room +

                                    +")); + end Children_VoWo; + + model Corridor_VoWo "Corridor from the VoWo appartment" + ///////// construction parameters + parameter Integer TMC = 1 "Thermal Mass Class" annotation(Dialog(group = "Construction parameters", compact = true, descriptionLabel = true), choices(choice = 1 "Heavy", choice = 2 "Medium", choice = 3 "Light", radioButtons = true)); + parameter Integer TIR = 4 "Thermal Insulation Regulation" annotation(Dialog(groupImage = "modelica://AixLib/Resources/Images/Building/HighOrder/VoWo_Corridor.png", group = "Construction parameters", compact = true, descriptionLabel = true), choices(choice = 1 + "EnEV_2009", choice = 2 + "EnEV_2002", choice = 3 + "WSchV_1995", choice = 4 + "WSchV_1984", radioButtons = true)); + parameter Integer Floor = 1 "Floor" annotation(Dialog(group = "Floor", compact = true, descriptionLabel = true), choices(choice = 1 "GF", choice = 2 "1F", choice = 3 "2F", radioButtons = true)); + // Outer walls properties + parameter Real solar_absorptance_OW = 0.7 "Solar absoptance outer walls " annotation(Dialog(group = "Outer wall properties", descriptionLabel = true)); + parameter Integer calcMethod=1 "Calculation method for convective heat transfer coefficient" annotation (Dialog( + group="Outer wall properties", + compact=true, + descriptionLabel=true), choices( + choice=1 "DIN 6946", + choice=2 "ASHRAE Fundamentals", + choice=3 "Custom hCon (constant)", + radioButtons=true)); + //Initial temperatures + parameter Modelica.Units.SI.Temperature T0_air=290.15 "Air" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + parameter Modelica.Units.SI.Temperature T0_Staircase=288.15 "IWStaircase" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + parameter Modelica.Units.SI.Temperature T0_IWKitchen=295.15 "IWKitchen" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + parameter Modelica.Units.SI.Temperature T0_IWBath=297.15 "IWBath" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + parameter Modelica.Units.SI.Temperature T0_IWBedroom=295.15 "IWBedroom" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + parameter Modelica.Units.SI.Temperature T0_IWLivingroom=295.15 "IWLivingroom" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + parameter Modelica.Units.SI.Temperature T0_IWChild=295.15 "IWChild" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + parameter Modelica.Units.SI.Temperature T0_CE=295.35 "Ceiling" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + parameter Modelica.Units.SI.Temperature T0_FL=294.95 "Floor" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + // Sunblind + parameter Boolean use_sunblind = false + "Will sunblind become active automatically?" + annotation(Dialog(group = "Sunblind")); + parameter Real ratioSunblind(min=0.0, max=1.0)= 0.8 + "Sunblind factor. 1 means total blocking of irradiation, 0 no sunblind" + annotation(Dialog(group = "Sunblind", enable=use_sunblind)); + parameter Modelica.Units.SI.Irradiance solIrrThreshold(min=0.0) = 350 + "Threshold for global solar irradiation on this surface to enable sunblinding (see also TOutAirLimit)" + annotation (Dialog(group="Sunblind", enable=use_sunblind)); + parameter Modelica.Units.SI.Temperature TOutAirLimit + "Temperature at which sunblind closes (see also solIrrThreshold)" + annotation (Dialog(group="Sunblind", enable=use_sunblind)); + AixLib.ThermalZones.HighOrder.Components.Walls.Wall Wall_Children( + redeclare final model WindowModel=WindowModel, + redeclare final model CorrSolarGainWin=CorrSolarGainWin, + T0=T0_IWChild, + outside=false, + final withSunblind=use_sunblind, + final Blinding=1 - ratioSunblind, + final LimitSolIrr=solIrrThreshold, + final TOutAirLimit=TOutAirLimit, + wallPar=Type_IWload, + wall_length=2.13, + wall_height=2.46, + withWindow=false, + withDoor=false) annotation (Placement(transformation( + origin={46,24}, + extent={{-3.99999,-24},{3.99999,24}}, + rotation=270))); + AixLib.ThermalZones.HighOrder.Components.Walls.Wall Wall_Kitchen2( + redeclare final model WindowModel=WindowModel, + redeclare final model CorrSolarGainWin=CorrSolarGainWin, + T0=T0_IWKitchen, + outside=false, + final withSunblind=use_sunblind, + final Blinding=1 - ratioSunblind, + final LimitSolIrr=solIrrThreshold, + final TOutAirLimit=TOutAirLimit, + wallPar=Type_IWsimple, + wall_length=2.2, + wall_height=2.46, + withWindow=false, + withDoor=false) annotation (Placement(transformation( + origin={52,-63}, + extent={{-5.00001,-30},{5.00001,30}}, + rotation=90))); + AixLib.ThermalZones.HighOrder.Components.Walls.Wall Wall_Bath( + redeclare final model WindowModel=WindowModel, + redeclare final model CorrSolarGainWin=CorrSolarGainWin, + T0=T0_IWBath, + outside=false, + final withSunblind=use_sunblind, + final Blinding=1 - ratioSunblind, + final LimitSolIrr=solIrrThreshold, + final TOutAirLimit=TOutAirLimit, + wallPar=Type_IWsimple, + wall_length=1.31, + wall_height=2.46, + withWindow=false, + withDoor=false) annotation (Placement(transformation( + origin={-20,-99}, + extent={{-3.00001,-18},{3.00001,18}}, + rotation=90))); + AixLib.ThermalZones.HighOrder.Components.Walls.Wall Wall_Kitchen1( + redeclare final model WindowModel=WindowModel, + redeclare final model CorrSolarGainWin=CorrSolarGainWin, + T0=T0_IWKitchen, + outside=false, + final withSunblind=use_sunblind, + final Blinding=1 - ratioSunblind, + final LimitSolIrr=solIrrThreshold, + final TOutAirLimit=TOutAirLimit, + wallPar=Type_IWsimple, + wall_length=0.6, + wall_height=2.46, + withWindow=false, + withDoor=false) annotation (Placement(transformation( + origin={-2,-74}, + extent={{-2,-12},{2,12}}, + rotation=180))); + AixLib.ThermalZones.HighOrder.Components.Walls.Wall Wall_Bedroom( + redeclare final model WindowModel=WindowModel, + redeclare final model CorrSolarGainWin=CorrSolarGainWin, + T0=T0_IWBedroom, + outside=false, + final withSunblind=use_sunblind, + final Blinding=1 - ratioSunblind, + final LimitSolIrr=solIrrThreshold, + final TOutAirLimit=TOutAirLimit, + wallPar=Type_IWload, + wall_length=1.96, + wall_height=2.46, + withWindow=false, + withDoor=false) annotation (Placement(transformation(extent={{-66,-70},{-54,2}}))); + AixLib.ThermalZones.HighOrder.Components.Walls.Wall Wall_Staircase( + redeclare final model WindowModel=WindowModel, + redeclare final model CorrSolarGainWin=CorrSolarGainWin, + T0=T0_Staircase, + outside=false, + final withSunblind=use_sunblind, + final Blinding=1 - ratioSunblind, + final LimitSolIrr=solIrrThreshold, + final TOutAirLimit=TOutAirLimit, + wallPar=Type_IWload, + wall_length=1.34, + wall_height=2.46, + withWindow=false, + withDoor=true, + U_door=30/31, + eps_door=0.95, + door_height=2) annotation (Placement(transformation( + origin={109,-32}, + extent={{-3.00013,-22},{5.0002,22}}, + rotation=180))); + AixLib.ThermalZones.HighOrder.Components.Walls.Wall Wall_Livingroom( + redeclare final model WindowModel=WindowModel, + redeclare final model CorrSolarGainWin=CorrSolarGainWin, + T0=T0_IWLivingroom, + outside=false, + final withSunblind=use_sunblind, + final Blinding=1 - ratioSunblind, + final LimitSolIrr=solIrrThreshold, + final TOutAirLimit=TOutAirLimit, + wallPar=Type_IWload, + wall_length=1.25, + wall_height=2.46, + withWindow=false, + withDoor=false) annotation (Placement(transformation( + origin={-28,24}, + extent={{-3.99999,-24},{3.99999,24}}, + rotation=270))); + AixLib.ThermalZones.HighOrder.Components.DryAir.Airload airload( + final T0=T0_air, + final V=room_V) + annotation (Placement(transformation(extent={{-12,-12},{-32,8}}))); + AixLib.ThermalZones.HighOrder.Components.Walls.Wall Wall_Ceiling( + redeclare final model WindowModel=WindowModel, + redeclare final model CorrSolarGainWin=CorrSolarGainWin, + T0=T0_CE, + outside=false, + final withSunblind=use_sunblind, + final Blinding=1 - ratioSunblind, + final LimitSolIrr=solIrrThreshold, + final TOutAirLimit=TOutAirLimit, + wallPar=Type_CE, + wall_length=sqrt(5.73), + wall_height=sqrt(5.73), + ISOrientation=3, + withWindow=false, + withDoor=false) annotation (Placement(transformation( + origin={117,80}, + extent={{-2,-15},{2,15}}, + rotation=270))); + AixLib.ThermalZones.HighOrder.Components.Walls.Wall Wall_Floor( + redeclare final model WindowModel=WindowModel, + redeclare final model CorrSolarGainWin=CorrSolarGainWin, + T0=T0_FL, + outside=false, + final withSunblind=use_sunblind, + final Blinding=1 - ratioSunblind, + final LimitSolIrr=solIrrThreshold, + final TOutAirLimit=TOutAirLimit, + wallPar=Type_FL, + wall_length=sqrt(5.73), + wall_height=sqrt(5.73), + ISOrientation=2, + withWindow=false, + withDoor=false) annotation (Placement(transformation( + origin={118,55}, + extent={{-2.99998,-16},{2.99998,16}}, + rotation=90))); + AixLib.ThermalZones.HighOrder.Components.DryAir.InfiltrationRate_DIN12831 + infiltrationRate( + room_V=room_V, + n50=n50, + e=e, + eps=eps) annotation (Placement(transformation(extent={{-44,60},{-18,86}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermStaircase annotation(Placement(transformation(extent = {{-112, 70}, {-92, 90}}), iconTransformation(extent = {{-112, 70}, {-92, 90}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermKitchen annotation(Placement(transformation(extent = {{-112, 40}, {-92, 60}}), iconTransformation(extent = {{-112, 40}, {-92, 60}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermBath annotation(Placement(transformation(extent = {{-110, -50}, {-90, -30}}), iconTransformation(extent = {{-110, -50}, {-90, -30}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermBedroom annotation(Placement(transformation(extent = {{-110, -80}, {-90, -60}}), iconTransformation(extent = {{-110, -80}, {-90, -60}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermCeiling annotation(Placement(transformation(extent = {{-110, -110}, {-90, -90}}), iconTransformation(extent = {{-110, -110}, {-90, -90}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermFloor annotation(Placement(transformation(extent = {{-110, -140}, {-90, -120}}), iconTransformation(extent = {{-110, -140}, {-90, -120}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermLivingroom annotation(Placement(transformation(extent = {{-112, 10}, {-92, 30}}), iconTransformation(extent = {{-112, 10}, {-92, 30}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermChild annotation(Placement(transformation(extent = {{-112, -20}, {-92, 0}}), iconTransformation(extent = {{-112, -20}, {-92, 0}}))); + AixLib.Utilities.Interfaces.Adaptors.ConvRadToCombPort thermStar_Demux annotation (Placement(transformation( + extent={{-10,8},{10,-8}}, + rotation=90, + origin={46,-26}))); + Modelica.Blocks.Sources.RealExpression realExpression(y=0) + annotation (Placement(transformation(extent={{-74,-98},{-54,-78}}))); + + replaceable model WindowModel = + AixLib.ThermalZones.HighOrder.Components.WindowsDoors.BaseClasses.PartialWindow + constrainedby + AixLib.ThermalZones.HighOrder.Components.WindowsDoors.BaseClasses.PartialWindow + annotation (Dialog(tab="Outer walls", group="Windows"), choicesAllMatching = true); + + replaceable model CorrSolarGainWin = + AixLib.ThermalZones.HighOrder.Components.WindowsDoors.BaseClasses.CorrectionSolarGain.PartialCorG + constrainedby + AixLib.ThermalZones.HighOrder.Components.WindowsDoors.BaseClasses.CorrectionSolarGain.PartialCorG + "Correction model for solar irradiance as transmitted radiation" annotation (choicesAllMatching=true, Dialog(tab="Outer walls", group="Windows", enable = withWindow and outside)); + + protected + parameter Real n50(unit = "h-1") = if TIR == 1 or TIR == 2 then 3 else if TIR == 3 then 4 else 6 + "Air exchange rate at 50 Pa pressure difference" annotation(Dialog(tab = "Infiltration")); + parameter Real e = 0.03 "Coefficient of windshield" annotation(Dialog(tab = "Infiltration")); + parameter Real eps = 1.0 "Coefficient of height" annotation(Dialog(tab = "Infiltration")); + // Outer wall type + parameter AixLib.DataBase.Walls.WallBaseDataDefinition Type_OW = if TIR == 1 then if TMC == 1 then AixLib.DataBase.Walls.EnEV2009.OW.OW_EnEV2009_S() else if TMC == 2 then AixLib.DataBase.Walls.EnEV2009.OW.OW_EnEV2009_M() else AixLib.DataBase.Walls.EnEV2009.OW.OW_EnEV2009_L() else if TIR == 2 then if TMC == 1 then AixLib.DataBase.Walls.EnEV2002.OW.OW_EnEV2002_S() else if TMC == 2 then AixLib.DataBase.Walls.EnEV2002.OW.OW_EnEV2002_M() else AixLib.DataBase.Walls.EnEV2002.OW.OW_EnEV2002_L() else if TIR == 3 then if TMC == 1 then AixLib.DataBase.Walls.WSchV1995.OW.OW_WSchV1995_S() else if TMC == 2 then AixLib.DataBase.Walls.WSchV1995.OW.OW_WSchV1995_M() else AixLib.DataBase.Walls.WSchV1995.OW.OW_WSchV1995_L() else if TMC == 1 then AixLib.DataBase.Walls.WSchV1984.OW.OW_WSchV1984_S() else if TMC == 2 then AixLib.DataBase.Walls.WSchV1984.OW.OW_WSchV1984_M() else AixLib.DataBase.Walls.WSchV1984.OW.OW_WSchV1984_L() annotation(Dialog(tab = "Types")); + //Inner wall Types + parameter AixLib.DataBase.Walls.WallBaseDataDefinition Type_IWsimple = if TIR == 1 then if TMC == 1 then AixLib.DataBase.Walls.EnEV2009.IW.IWsimple_EnEV2009_S_half() else if TMC == 2 then AixLib.DataBase.Walls.EnEV2009.IW.IWsimple_EnEV2009_M_half() else AixLib.DataBase.Walls.EnEV2009.IW.IWsimple_EnEV2009_L_half() else if TIR == 2 then if TMC == 1 then AixLib.DataBase.Walls.EnEV2002.IW.IWsimple_EnEV2002_S_half() else if TMC == 2 then AixLib.DataBase.Walls.EnEV2002.IW.IWsimple_EnEV2002_M_half() else AixLib.DataBase.Walls.EnEV2002.IW.IWsimple_EnEV2002_L_half() else if TIR == 3 then if TMC == 1 then AixLib.DataBase.Walls.WSchV1995.IW.IWsimple_WSchV1995_S_half() else if TMC == 2 then AixLib.DataBase.Walls.WSchV1995.IW.IWsimple_WSchV1995_M_half() else AixLib.DataBase.Walls.WSchV1995.IW.IWsimple_WSchV1995_L_half() else if TMC == 1 then AixLib.DataBase.Walls.WSchV1984.IW.IWsimple_WSchV1984_S_half() else if TMC == 2 then AixLib.DataBase.Walls.WSchV1984.IW.IWsimple_WSchV1984_M_half() else AixLib.DataBase.Walls.WSchV1984.IW.IWsimple_WSchV1984_L_half() annotation(Dialog(tab = "Types")); + parameter AixLib.DataBase.Walls.WallBaseDataDefinition Type_IWload = if TIR == 1 then if TMC == 1 then AixLib.DataBase.Walls.EnEV2009.IW.IWload_EnEV2009_S_half() else if TMC == 2 then AixLib.DataBase.Walls.EnEV2009.IW.IWload_EnEV2009_M_half() else AixLib.DataBase.Walls.EnEV2009.IW.IWload_EnEV2009_L_half() else if TIR == 2 then if TMC == 1 then AixLib.DataBase.Walls.EnEV2002.IW.IWload_EnEV2002_S_half() else if TMC == 2 then AixLib.DataBase.Walls.EnEV2002.IW.IWload_EnEV2002_M_half() else AixLib.DataBase.Walls.EnEV2002.IW.IWload_EnEV2002_L_half() else if TIR == 3 then if TMC == 1 then AixLib.DataBase.Walls.WSchV1995.IW.IWload_WSchV1995_S_half() else if TMC == 2 then AixLib.DataBase.Walls.WSchV1995.IW.IWload_WSchV1995_M_half() else AixLib.DataBase.Walls.WSchV1995.IW.IWload_WSchV1995_L_half() else if TMC == 1 then AixLib.DataBase.Walls.WSchV1984.IW.IWload_WSchV1984_S_half() else if TMC == 2 then AixLib.DataBase.Walls.WSchV1984.IW.IWload_WSchV1984_M_half() else AixLib.DataBase.Walls.WSchV1984.IW.IWload_WSchV1984_L_half() annotation(Dialog(tab = "Types")); + // Floor type + parameter AixLib.DataBase.Walls.WallBaseDataDefinition Type_FL = if Floor == 1 then if TIR == 1 then AixLib.DataBase.Walls.EnEV2009.Floor.FLcellar_EnEV2009_SML_upHalf() else if TIR == 2 then AixLib.DataBase.Walls.EnEV2002.Floor.FLcellar_EnEV2002_SML_upHalf() else if TIR == 3 then AixLib.DataBase.Walls.WSchV1995.Floor.FLcellar_WSchV1995_SML_upHalf() else AixLib.DataBase.Walls.WSchV1984.Floor.FLcellar_WSchV1984_SML_upHalf() else if TIR == 1 then if TMC == 1 or TMC == 2 then AixLib.DataBase.Walls.EnEV2009.Floor.FLpartition_EnEV2009_SM_upHalf() else AixLib.DataBase.Walls.EnEV2009.Floor.FLpartition_EnEV2009_L_upHalf() else if TIR == 2 then if TMC == 1 or TMC == 2 then AixLib.DataBase.Walls.EnEV2002.Floor.FLpartition_EnEV2002_SM_upHalf() else AixLib.DataBase.Walls.EnEV2002.Floor.FLpartition_EnEV2002_L_upHalf() else if TIR == 3 then if TMC == 1 or TMC == 2 then AixLib.DataBase.Walls.WSchV1995.Floor.FLpartition_WSchV1995_SM_upHalf() else AixLib.DataBase.Walls.WSchV1995.Floor.FLpartition_WSchV1995_L_upHalf() else if TMC == 1 or TMC == 2 then AixLib.DataBase.Walls.WSchV1984.Floor.FLpartition_WSchV1984_SM_upHalf() else AixLib.DataBase.Walls.WSchV1984.Floor.FLpartition_WSchV1984_L_upHalf() annotation(Dialog(tab = "Types")); + // Ceiling type + parameter AixLib.DataBase.Walls.WallBaseDataDefinition Type_CE = if Floor == 1 or Floor == 2 then if TIR == 1 then if TMC == 1 or TMC == 2 then AixLib.DataBase.Walls.EnEV2009.Ceiling.CEpartition_EnEV2009_SM_loHalf() else AixLib.DataBase.Walls.EnEV2009.Ceiling.CEpartition_EnEV2009_L_loHalf() else if TIR == 2 then if TMC == 1 or TMC == 2 then AixLib.DataBase.Walls.EnEV2002.Ceiling.CEpartition_EnEV2002_SM_loHalf() else AixLib.DataBase.Walls.EnEV2002.Ceiling.CEpartition_EnEV2002_L_loHalf() else if TIR == 3 then if TMC == 1 or TMC == 2 then AixLib.DataBase.Walls.WSchV1995.Ceiling.CEpartition_WSchV1995_SM_loHalf() else AixLib.DataBase.Walls.WSchV1995.Ceiling.CEpartition_WSchV1995_L_loHalf() else if TMC == 1 or TMC == 2 then AixLib.DataBase.Walls.WSchV1984.Ceiling.CEpartition_WSchV1984_SM_loHalf() else AixLib.DataBase.Walls.WSchV1984.Ceiling.CEpartition_WSchV1984_L_loHalf() else if TIR == 1 then AixLib.DataBase.Walls.EnEV2009.Ceiling.CEattic_EnEV2009_SML_loHalf() else if TIR == 2 then AixLib.DataBase.Walls.EnEV2002.Ceiling.CEattic_EnEV2002_SML_loHalf() else if TIR == 3 then AixLib.DataBase.Walls.WSchV1995.Ceiling.CEattic_WSchV1995_SML_loHalf() else AixLib.DataBase.Walls.WSchV1984.Ceiling.CEattic_WSchV1984_SML_loHalf() annotation(Dialog(tab = "Types")); + //Window type + parameter AixLib.DataBase.WindowsDoors.Simple.OWBaseDataDefinition_Simple Type_Win = if TIR == 1 then AixLib.DataBase.WindowsDoors.Simple.WindowSimple_EnEV2009() else if TIR == 2 then AixLib.DataBase.WindowsDoors.Simple.WindowSimple_EnEV2002() else if TIR == 3 then AixLib.DataBase.WindowsDoors.Simple.WindowSimple_WSchV1995() else AixLib.DataBase.WindowsDoors.Simple.WindowSimple_WSchV1984() annotation(Dialog(tab = "Types")); + parameter Modelica.Units.SI.Volume room_V=5.73*2.46; + equation + connect(infiltrationRate.port_b, airload.port) annotation(Line(points={{-18,73},{0,73},{0,-12},{-22,-12}}, color = {191, 0, 0})); + connect(Wall_Staircase.port_outside, thermStaircase) annotation(Line(points={{112.2,-32},{140,-32},{140,-130},{-80,-130},{-80,80},{-102,80}}, color = {191, 0, 0})); + connect(Wall_Kitchen2.port_outside, thermKitchen) annotation(Line(points={{52,-68.25},{52,-130},{-80,-130},{-80,50},{-102,50}}, color = {191, 0, 0})); + connect(infiltrationRate.port_a, thermStaircase) annotation(Line(points = {{-44, 73}, {-80, 73}, {-80, 80}, {-102, 80}}, color = {191, 0, 0})); + connect(Wall_Kitchen1.port_outside, thermKitchen) annotation(Line(points = {{0.1, -74}, {20, -74}, {20, -130}, {-80, -130}, {-80, 50}, {-102, 50}}, color = {191, 0, 0})); + connect(Wall_Bath.port_outside, thermBath) annotation(Line(points={{-20,-102.15},{-20,-130},{-80,-130},{-80,-40},{-100,-40}}, color = {191, 0, 0})); + connect(Wall_Bedroom.port_outside, thermBedroom) annotation(Line(points = {{-66.3, -34}, {-80, -34}, {-80, -70}, {-100, -70}}, color = {191, 0, 0})); + connect(Wall_Ceiling.port_outside, thermCeiling) annotation(Line(points = {{117, 82.1}, {117, 96}, {140, 96}, {140, -130}, {-80, -130}, {-80, -100}, {-100, -100}}, color = {191, 0, 0})); + connect(Wall_Floor.port_outside, thermFloor) annotation(Line(points={{118,51.85},{118,36},{140,36},{140,-130},{-100,-130}}, color = {191, 0, 0})); + connect(Wall_Livingroom.port_outside, thermLivingroom) annotation(Line(points={{-28,28.2},{-28,52},{-80,52},{-80,20},{-102,20}}, color = {191, 0, 0})); + connect(Wall_Children.port_outside, thermChild) annotation(Line(points={{46,28.2},{46,52},{-80,52},{-80,-10},{-102,-10}}, color = {191, 0, 0})); + connect(Wall_Kitchen2.thermStarComb_inside, thermStar_Demux.portConvRadComb) annotation (Line(points={{52,-58},{52,-44.0875},{46,-44.0875},{46,-36}}, color={191,0,0})); + connect(Wall_Staircase.thermStarComb_inside, thermStar_Demux.portConvRadComb) annotation (Line(points={{104,-32},{94,-32},{94,-44},{46,-44},{46,-36}}, color={191,0,0})); + connect(Wall_Kitchen1.thermStarComb_inside, thermStar_Demux.portConvRadComb) annotation (Line(points={{-4,-74},{-14,-74},{-14,-44},{46,-44},{46,-36}}, color={191,0,0})); + connect(Wall_Bath.thermStarComb_inside, thermStar_Demux.portConvRadComb) annotation (Line(points={{-20,-96},{-20,-80},{-14,-80},{-14,-44},{46,-44},{46,-36}}, color={191,0,0})); + connect(Wall_Bedroom.thermStarComb_inside, thermStar_Demux.portConvRadComb) annotation (Line(points={{-54,-34},{-40,-34},{-40,-80},{-14,-80},{-14,-44},{46,-44},{46,-36}}, color={191,0,0})); + connect(Wall_Livingroom.thermStarComb_inside, thermStar_Demux.portConvRadComb) annotation (Line(points={{-28,20},{-28,12},{-40,12},{-40,-80},{-14,-80},{-14,-44},{46,-44},{46,-36}}, color={191,0,0})); + connect(Wall_Children.thermStarComb_inside, thermStar_Demux.portConvRadComb) annotation (Line(points={{46,20},{46,10},{94,10},{94,-44},{46,-44},{46,-36}}, color={191,0,0})); + connect(Wall_Floor.thermStarComb_inside, thermStar_Demux.portConvRadComb) annotation (Line(points={{118,58},{118,64},{94,64},{94,-44},{46,-44},{46,-36}}, color={191,0,0})); + connect(Wall_Ceiling.thermStarComb_inside, thermStar_Demux.portConvRadComb) annotation (Line(points={{117,78},{117,64},{94,64},{94,-44},{46,-44},{46,-36}}, color={191,0,0})); + connect(airload.port, thermStar_Demux.portConv) annotation (Line(points={{-22,-12},{41,-12},{41,-16}}, color={191,0,0})); + annotation(Icon(coordinateSystem(preserveAspectRatio = true, extent = {{-100, -150}, {150, 100}}), graphics={ Polygon(points = {{-60, 60}, {120, 60}, {120, -60}, {20, -60}, {20, -100}, {-60, -100}, {-60, -18}, {-60, 60}}, lineColor = {0, 0, 0}, fillColor = {255, 255, 255}, + fillPattern = FillPattern.Forward), Text(extent = {{-26, 6}, {82, -26}}, lineColor = {0, 0, 0}, fillColor = {255, 0, 0}, + fillPattern = FillPattern.Forward, textString = "Corridor"), Rectangle(extent = {{-110, -120}, {-90, -140}}, lineColor = {0, 0, 0}, + lineThickness = 0.5), Rectangle(extent = {{-110, -90}, {-90, -110}}, lineColor = {0, 0, 0}, + lineThickness = 0.5), Rectangle(extent = {{-110, -60}, {-90, -80}}, lineColor = {0, 0, 0}, + lineThickness = 0.5), Rectangle(extent = {{-110, -30}, {-90, -50}}, lineColor = {0, 0, 0}, + lineThickness = 0.5), Rectangle(extent = {{-112, 60}, {-92, 40}}, lineColor = {0, 0, 0}, + lineThickness = 0.5), Rectangle(extent = {{-112, 90}, {-92, 70}}, lineColor = {0, 0, 0}, + lineThickness = 0.5), Rectangle(extent = {{108, 12}, {128, -18}}, lineColor = {0, 0, 0}, + lineThickness = 1, fillColor = {127, 0, 0}, + fillPattern = FillPattern.Forward), Ellipse(extent = {{110, 0}, {112, -2}}, lineColor = {0, 0, 0}, pattern=LinePattern.None, + lineThickness = 1, + fillPattern = FillPattern.Sphere, fillColor = {255, 255, 0}), Text(extent = {{78, 38}, {164, 18}}, lineColor = {0, 0, 255}, textString = "Staircase"), Rectangle(extent = {{-112, 0}, {-92, -20}}, lineColor = {0, 0, 0}, + lineThickness = 0.5), Rectangle(extent = {{-112, 30}, {-92, 10}}, lineColor = {0, 0, 0}, + lineThickness = 0.5)}), Diagram(coordinateSystem(preserveAspectRatio = true, extent = {{-100, -150}, {150, 100}})), Documentation(revisions = "
                                      +
                                    • + April 18, 2014 by Ana Constantin:
                                      + Added documentation +
                                    • +
                                    • + August 16, 2011 by Ana Constantin:
                                      + Implemented +
                                    • +
                                    +", info = " +

                                    + Overview +

                                    +

                                    + Model for the corridor. +

                                    +

                                    + Concept +

                                    +

                                    + The following figure presents the room's layout: +

                                    +

                                    + \"Room +

                                    +")); + end Corridor_VoWo; + + model Kitchen_VoWo "Kitchen from the VoWo appartment" + ///////// construction parameters + parameter Integer TMC = 1 "Thermal Mass Class" annotation(Dialog(group = "Construction parameters", compact = true, descriptionLabel = true), choices(choice = 1 "Heavy", choice = 2 "Medium", choice = 3 "Light", radioButtons = true)); + parameter Integer TIR = 4 "Thermal Insulation Regulation" annotation(Dialog(groupImage = "modelica://AixLib/Resources/Images/Building/HighOrder/VoWo_Kitchen.png", group = "Construction parameters", compact = true, descriptionLabel = true), choices(choice = 1 + "EnEV_2009", choice = 2 + "EnEV_2002", choice = 3 + "WSchV_1995", choice = 4 + "WSchV_1984", radioButtons = true)); + parameter Integer Floor = 1 "Floor" annotation(Dialog(group = "Floor", compact = true, descriptionLabel = true), choices(choice = 1 "GF", choice = 2 "1F", choice = 3 "2F", radioButtons = true)); + // Outer walls properties + parameter Real solar_absorptance_OW = 0.7 "Solar absoptance outer walls " annotation(Dialog(group = "Outer wall properties", descriptionLabel = true)); + parameter Integer calcMethod=1 "Calculation method for convective heat transfer coefficient" annotation (Dialog( + group="Outer wall properties", + compact=true, + descriptionLabel=true), choices( + choice=1 "DIN 6946", + choice=2 "ASHRAE Fundamentals", + choice=3 "Custom hCon (constant)", + radioButtons=true)); + //Initial temperatures + parameter Modelica.Units.SI.Temperature T0_air=295.15 "Air" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + parameter Modelica.Units.SI.Temperature T0_OW=295.15 "OW" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + parameter Modelica.Units.SI.Temperature T0_IWBath=297.15 "IWBathroom" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + parameter Modelica.Units.SI.Temperature T0_IWCorridor=290.15 "IWCorridor" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + parameter Modelica.Units.SI.Temperature T0_IWStraicase=288.15 "IWStaircase" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + parameter Modelica.Units.SI.Temperature T0_CE=295.35 "Ceiling" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + parameter Modelica.Units.SI.Temperature T0_FL=294.95 "Floor" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + // Sunblind + parameter Boolean use_sunblind = false + "Will sunblind become active automatically?" + annotation(Dialog(group = "Sunblind")); + parameter Real ratioSunblind(min=0.0, max=1.0) = 0.8 + "Sunblind factor. 1 means total blocking of irradiation, 0 no sunblind" + annotation(Dialog(group = "Sunblind", enable=use_sunblind)); + parameter Modelica.Units.SI.Irradiance solIrrThreshold(min=0.0) = 350 + "Threshold for global solar irradiation on this surface to enable sunblinding (see also TOutAirLimit)" + annotation (Dialog(group="Sunblind", enable=use_sunblind)); + parameter Modelica.Units.SI.Temperature TOutAirLimit + "Temperature at which sunblind closes (see also solIrrThreshold)" + annotation (Dialog(group="Sunblind", enable=use_sunblind)); + AixLib.ThermalZones.HighOrder.Components.Walls.Wall Wall_Corridor1( + redeclare final model WindowModel=WindowModel, + redeclare final model CorrSolarGainWin=CorrSolarGainWin, + T0=T0_IWCorridor, + outside=false, + final withSunblind=use_sunblind, + final Blinding=1 - ratioSunblind, + final LimitSolIrr=solIrrThreshold, + final TOutAirLimit=TOutAirLimit, + wallPar=Type_IWsimple, + wall_length=2.2, + wall_height=2.46, + withWindow=false, + withDoor=false) annotation (Placement(transformation( + origin={-3,30}, + extent={{-8,-51},{8,51}}, + rotation=270))); + AixLib.ThermalZones.HighOrder.Components.Walls.Wall Wall_Bath1( + redeclare final model WindowModel=WindowModel, + redeclare final model CorrSolarGainWin=CorrSolarGainWin, + T0=T0_IWBath, + outside=false, + final withSunblind=use_sunblind, + final Blinding=1 - ratioSunblind, + final LimitSolIrr=solIrrThreshold, + final TOutAirLimit=TOutAirLimit, + wallPar=Type_IWsimple, + wall_length=3.28, + wall_height=2.46, + withWindow=false, + withDoor=false) annotation (Placement(transformation(extent={{-68,-50},{-62,-12}}))); + AixLib.ThermalZones.HighOrder.Components.Walls.Wall Wall_Staircase( + redeclare final model WindowModel=WindowModel, + redeclare final model CorrSolarGainWin=CorrSolarGainWin, + T0=T0_IWStraicase, + outside=false, + final withSunblind=use_sunblind, + final Blinding=1 - ratioSunblind, + final LimitSolIrr=solIrrThreshold, + final TOutAirLimit=TOutAirLimit, + wallPar=Type_IWload, + wall_length=3.94, + wall_height=2.46, + withWindow=false, + withDoor=false) annotation (Placement(transformation( + origin={45,-29}, + extent={{-7,-49},{7,49}}, + rotation=180))); + AixLib.ThermalZones.HighOrder.Components.DryAir.Airload airload( + final T0=T0_air, + final V=room_V) + annotation (Placement(transformation(extent={{-36,-16},{-16,4}}))); + AixLib.ThermalZones.HighOrder.Components.Walls.Wall Wall_Bath2( + redeclare final model WindowModel=WindowModel, + redeclare final model CorrSolarGainWin=CorrSolarGainWin, + T0=T0_IWBath, + outside=false, + final withSunblind=use_sunblind, + final Blinding=1 - ratioSunblind, + final LimitSolIrr=solIrrThreshold, + final TOutAirLimit=TOutAirLimit, + wallPar=Type_IWsimple, + wall_length=0.44, + wall_height=2.46, + withWindow=false, + withDoor=false) annotation (Placement(transformation( + origin={-46,-75}, + extent={{-2.99998,-16},{2.99998,16}}, + rotation=90))); + AixLib.ThermalZones.HighOrder.Components.Walls.Wall outsideWall( + redeclare final model WindowModel=WindowModel, + redeclare final model CorrSolarGainWin=CorrSolarGainWin, + wall_length=1.8, + wall_height=2.46, + windowarea=0.75, + T0=T0_OW, + solar_absorptance=solar_absorptance_OW, + withWindow=true, + withDoor=false, + final withSunblind=use_sunblind, + final Blinding=1 - ratioSunblind, + final LimitSolIrr=solIrrThreshold, + final TOutAirLimit=TOutAirLimit, + wallPar=Type_OW, + WindowType=Type_Win) annotation (Placement(transformation( + origin={5,-99}, + extent={{-7,-45},{7,45}}, + rotation=90))); + AixLib.ThermalZones.HighOrder.Components.Walls.Wall Wall_Corridor2( + redeclare final model WindowModel=WindowModel, + redeclare final model CorrSolarGainWin=CorrSolarGainWin, + T0=T0_IWCorridor, + outside=false, + final withSunblind=use_sunblind, + final Blinding=1 - ratioSunblind, + final LimitSolIrr=solIrrThreshold, + final TOutAirLimit=TOutAirLimit, + wallPar=Type_IWsimple, + wall_length=0.6, + wall_height=2.46, + withWindow=false, + withDoor=false) annotation (Placement(transformation(extent={{-68,-2},{-64,24}}))); + AixLib.ThermalZones.HighOrder.Components.Walls.Wall Wall_Ceiling( + redeclare final model WindowModel=WindowModel, + redeclare final model CorrSolarGainWin=CorrSolarGainWin, + T0=T0_CE, + outside=false, + final withSunblind=use_sunblind, + final Blinding=1 - ratioSunblind, + final LimitSolIrr=solIrrThreshold, + final TOutAirLimit=TOutAirLimit, + wallPar=Type_CE, + wall_length=sqrt(8.35), + wall_height=sqrt(8.35), + ISOrientation=3, + withWindow=false, + withDoor=false) annotation (Placement(transformation( + origin={80,-72}, + extent={{-1.99998,-10},{1.99998,10}}, + rotation=270))); + AixLib.ThermalZones.HighOrder.Components.Walls.Wall Wall_Floor( + redeclare final model WindowModel=WindowModel, + redeclare final model CorrSolarGainWin=CorrSolarGainWin, + T0=T0_FL, + outside=false, + final withSunblind=use_sunblind, + final Blinding=1 - ratioSunblind, + final LimitSolIrr=solIrrThreshold, + final TOutAirLimit=TOutAirLimit, + wallPar=Type_FL, + wall_length=sqrt(8.35), + wall_height=sqrt(8.35), + ISOrientation=2, + withWindow=false, + withDoor=false) annotation (Placement(transformation( + origin={80,-100}, + extent={{-1.99984,-10},{1.99983,10}}, + rotation=90))); + AixLib.Utilities.Interfaces.SolarRad_in SolarRadiation_NW annotation ( + Placement(transformation( + extent={{-10,-10},{10,10}}, + rotation=90, + origin={-20,-150}))); + Modelica.Blocks.Interfaces.RealInput AirExchangePort annotation(Placement(transformation(extent = {{-130, 56}, {-90, 96}}), iconTransformation(extent = {{-108, 52}, {-90, 70}}))); + Modelica.Blocks.Interfaces.RealInput WindSpeedPort annotation(Placement(transformation(extent = {{-130, 28}, {-90, 68}}), iconTransformation(extent = {{-108, 20}, {-90, 38}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermOutside annotation(Placement(transformation(extent = {{-108, 80}, {-88, 100}}), iconTransformation(extent = {{-108, 80}, {-88, 100}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermCorridor annotation(Placement(transformation(extent = {{-110, -20}, {-90, 0}}), iconTransformation(extent = {{-110, -20}, {-90, 0}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermStaircase annotation(Placement(transformation(extent = {{-110, -60}, {-90, -40}}), iconTransformation(extent = {{-110, -60}, {-90, -40}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermBath annotation(Placement(transformation(extent = {{-110, -100}, {-90, -80}}), iconTransformation(extent = {{-110, -100}, {-90, -80}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermCeiling annotation(Placement(transformation(extent = {{-110, -140}, {-90, -120}}), iconTransformation(extent = {{-110, -140}, {-90, -120}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermFloor annotation(Placement(transformation(extent = {{-70, -160}, {-50, -140}}), iconTransformation(extent = {{-70, -160}, {-50, -140}}))); + AixLib.ThermalZones.HighOrder.Components.DryAir.InfiltrationRate_DIN12831 + infiltrationRate( + room_V=room_V, + n50=n50, + e=e, + eps=eps) annotation (Placement(transformation(extent={{-42,72},{-18,96}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a ThermRoom annotation(Placement(transformation(extent = {{-2, -18}, {18, 2}}))); + AixLib.Utilities.Interfaces.RadPort StarRoom + annotation (Placement(transformation(extent={{-4,-48},{16,-28}}))); + AixLib.Utilities.Interfaces.Adaptors.ConvRadToCombPort thermStar_Demux annotation (Placement(transformation( + extent={{10,-8},{-10,8}}, + rotation=180, + origin={-30,-40}))); + AixLib.ThermalZones.HighOrder.Components.DryAir.VarAirExchange + NaturalVentilation(V=room_V) + annotation (Placement(transformation(extent={{-2,72},{22,96}}))); + + replaceable model WindowModel = + AixLib.ThermalZones.HighOrder.Components.WindowsDoors.BaseClasses.PartialWindow + constrainedby + AixLib.ThermalZones.HighOrder.Components.WindowsDoors.BaseClasses.PartialWindow + annotation (Dialog(tab="Outer walls", group="Windows"), choicesAllMatching = true); + + replaceable model CorrSolarGainWin = + AixLib.ThermalZones.HighOrder.Components.WindowsDoors.BaseClasses.CorrectionSolarGain.PartialCorG + constrainedby + AixLib.ThermalZones.HighOrder.Components.WindowsDoors.BaseClasses.CorrectionSolarGain.PartialCorG + "Correction model for solar irradiance as transmitted radiation" annotation (choicesAllMatching=true, Dialog(tab="Outer walls", group="Windows", enable = withWindow and outside)); + + protected + parameter Real n50(unit = "h-1") = if TIR == 1 or TIR == 2 then 3 else if TIR == 3 then 4 else 6 + "Air exchange rate at 50 Pa pressure difference" annotation(Dialog(tab = "Infiltration")); + parameter Real e = 0.03 "Coefficient of windshield" annotation(Dialog(tab = "Infiltration")); + parameter Real eps = 1.0 "Coefficient of height" annotation(Dialog(tab = "Infiltration")); + // Outer wall type + parameter AixLib.DataBase.Walls.WallBaseDataDefinition Type_OW = if TIR == 1 then if TMC == 1 then AixLib.DataBase.Walls.EnEV2009.OW.OW_EnEV2009_S() else if TMC == 2 then AixLib.DataBase.Walls.EnEV2009.OW.OW_EnEV2009_M() else AixLib.DataBase.Walls.EnEV2009.OW.OW_EnEV2009_L() else if TIR == 2 then if TMC == 1 then AixLib.DataBase.Walls.EnEV2002.OW.OW_EnEV2002_S() else if TMC == 2 then AixLib.DataBase.Walls.EnEV2002.OW.OW_EnEV2002_M() else AixLib.DataBase.Walls.EnEV2002.OW.OW_EnEV2002_L() else if TIR == 3 then if TMC == 1 then AixLib.DataBase.Walls.WSchV1995.OW.OW_WSchV1995_S() else if TMC == 2 then AixLib.DataBase.Walls.WSchV1995.OW.OW_WSchV1995_M() else AixLib.DataBase.Walls.WSchV1995.OW.OW_WSchV1995_L() else if TMC == 1 then AixLib.DataBase.Walls.WSchV1984.OW.OW_WSchV1984_S() else if TMC == 2 then AixLib.DataBase.Walls.WSchV1984.OW.OW_WSchV1984_M() else AixLib.DataBase.Walls.WSchV1984.OW.OW_WSchV1984_L() annotation(Dialog(tab = "Types")); + //Inner wall Types + parameter AixLib.DataBase.Walls.WallBaseDataDefinition Type_IWsimple = if TIR == 1 then if TMC == 1 then AixLib.DataBase.Walls.EnEV2009.IW.IWsimple_EnEV2009_S_half() else if TMC == 2 then AixLib.DataBase.Walls.EnEV2009.IW.IWsimple_EnEV2009_M_half() else AixLib.DataBase.Walls.EnEV2009.IW.IWsimple_EnEV2009_L_half() else if TIR == 2 then if TMC == 1 then AixLib.DataBase.Walls.EnEV2002.IW.IWsimple_EnEV2002_S_half() else if TMC == 2 then AixLib.DataBase.Walls.EnEV2002.IW.IWsimple_EnEV2002_M_half() else AixLib.DataBase.Walls.EnEV2002.IW.IWsimple_EnEV2002_L_half() else if TIR == 3 then if TMC == 1 then AixLib.DataBase.Walls.WSchV1995.IW.IWsimple_WSchV1995_S_half() else if TMC == 2 then AixLib.DataBase.Walls.WSchV1995.IW.IWsimple_WSchV1995_M_half() else AixLib.DataBase.Walls.WSchV1995.IW.IWsimple_WSchV1995_L_half() else if TMC == 1 then AixLib.DataBase.Walls.WSchV1984.IW.IWsimple_WSchV1984_S_half() else if TMC == 2 then AixLib.DataBase.Walls.WSchV1984.IW.IWsimple_WSchV1984_M_half() else AixLib.DataBase.Walls.WSchV1984.IW.IWsimple_WSchV1984_L_half() annotation(Dialog(tab = "Types")); + parameter AixLib.DataBase.Walls.WallBaseDataDefinition Type_IWload = if TIR == 1 then if TMC == 1 then AixLib.DataBase.Walls.EnEV2009.IW.IWload_EnEV2009_S_half() else if TMC == 2 then AixLib.DataBase.Walls.EnEV2009.IW.IWload_EnEV2009_M_half() else AixLib.DataBase.Walls.EnEV2009.IW.IWload_EnEV2009_L_half() else if TIR == 2 then if TMC == 1 then AixLib.DataBase.Walls.EnEV2002.IW.IWload_EnEV2002_S_half() else if TMC == 2 then AixLib.DataBase.Walls.EnEV2002.IW.IWload_EnEV2002_M_half() else AixLib.DataBase.Walls.EnEV2002.IW.IWload_EnEV2002_L_half() else if TIR == 3 then if TMC == 1 then AixLib.DataBase.Walls.WSchV1995.IW.IWload_WSchV1995_S_half() else if TMC == 2 then AixLib.DataBase.Walls.WSchV1995.IW.IWload_WSchV1995_M_half() else AixLib.DataBase.Walls.WSchV1995.IW.IWload_WSchV1995_L_half() else if TMC == 1 then AixLib.DataBase.Walls.WSchV1984.IW.IWload_WSchV1984_S_half() else if TMC == 2 then AixLib.DataBase.Walls.WSchV1984.IW.IWload_WSchV1984_M_half() else AixLib.DataBase.Walls.WSchV1984.IW.IWload_WSchV1984_L_half() annotation(Dialog(tab = "Types")); + // Floor type + parameter AixLib.DataBase.Walls.WallBaseDataDefinition Type_FL = if Floor == 1 then if TIR == 1 then AixLib.DataBase.Walls.EnEV2009.Floor.FLcellar_EnEV2009_SML_upHalf() else if TIR == 2 then AixLib.DataBase.Walls.EnEV2002.Floor.FLcellar_EnEV2002_SML_upHalf() else if TIR == 3 then AixLib.DataBase.Walls.WSchV1995.Floor.FLcellar_WSchV1995_SML_upHalf() else AixLib.DataBase.Walls.WSchV1984.Floor.FLcellar_WSchV1984_SML_upHalf() else if TIR == 1 then if TMC == 1 or TMC == 2 then AixLib.DataBase.Walls.EnEV2009.Floor.FLpartition_EnEV2009_SM_upHalf() else AixLib.DataBase.Walls.EnEV2009.Floor.FLpartition_EnEV2009_L_upHalf() else if TIR == 2 then if TMC == 1 or TMC == 2 then AixLib.DataBase.Walls.EnEV2002.Floor.FLpartition_EnEV2002_SM_upHalf() else AixLib.DataBase.Walls.EnEV2002.Floor.FLpartition_EnEV2002_L_upHalf() else if TIR == 3 then if TMC == 1 or TMC == 2 then AixLib.DataBase.Walls.WSchV1995.Floor.FLpartition_WSchV1995_SM_upHalf() else AixLib.DataBase.Walls.WSchV1995.Floor.FLpartition_WSchV1995_L_upHalf() else if TMC == 1 or TMC == 2 then AixLib.DataBase.Walls.WSchV1984.Floor.FLpartition_WSchV1984_SM_upHalf() else AixLib.DataBase.Walls.WSchV1984.Floor.FLpartition_WSchV1984_L_upHalf() annotation(Dialog(tab = "Types")); + // Ceiling type + parameter AixLib.DataBase.Walls.WallBaseDataDefinition Type_CE = if Floor == 1 or Floor == 2 then if TIR == 1 then if TMC == 1 or TMC == 2 then AixLib.DataBase.Walls.EnEV2009.Ceiling.CEpartition_EnEV2009_SM_loHalf() else AixLib.DataBase.Walls.EnEV2009.Ceiling.CEpartition_EnEV2009_L_loHalf() else if TIR == 2 then if TMC == 1 or TMC == 2 then AixLib.DataBase.Walls.EnEV2002.Ceiling.CEpartition_EnEV2002_SM_loHalf() else AixLib.DataBase.Walls.EnEV2002.Ceiling.CEpartition_EnEV2002_L_loHalf() else if TIR == 3 then if TMC == 1 or TMC == 2 then AixLib.DataBase.Walls.WSchV1995.Ceiling.CEpartition_WSchV1995_SM_loHalf() else AixLib.DataBase.Walls.WSchV1995.Ceiling.CEpartition_WSchV1995_L_loHalf() else if TMC == 1 or TMC == 2 then AixLib.DataBase.Walls.WSchV1984.Ceiling.CEpartition_WSchV1984_SM_loHalf() else AixLib.DataBase.Walls.WSchV1984.Ceiling.CEpartition_WSchV1984_L_loHalf() else if TIR == 1 then AixLib.DataBase.Walls.EnEV2009.Ceiling.CEattic_EnEV2009_SML_loHalf() else if TIR == 2 then AixLib.DataBase.Walls.EnEV2002.Ceiling.CEattic_EnEV2002_SML_loHalf() else if TIR == 3 then AixLib.DataBase.Walls.WSchV1995.Ceiling.CEattic_WSchV1995_SML_loHalf() else AixLib.DataBase.Walls.WSchV1984.Ceiling.CEattic_WSchV1984_SML_loHalf() annotation(Dialog(tab = "Types")); + //Window type + parameter AixLib.DataBase.WindowsDoors.Simple.OWBaseDataDefinition_Simple Type_Win = if TIR == 1 then AixLib.DataBase.WindowsDoors.Simple.WindowSimple_EnEV2009() else if TIR == 2 then AixLib.DataBase.WindowsDoors.Simple.WindowSimple_EnEV2002() else if TIR == 3 then AixLib.DataBase.WindowsDoors.Simple.WindowSimple_WSchV1995() else AixLib.DataBase.WindowsDoors.Simple.WindowSimple_WSchV1984() annotation(Dialog(tab = "Types")); + parameter Modelica.Units.SI.Volume room_V=8.35*2.46; + equation + connect(outsideWall.SolarRadiationPort, SolarRadiation_NW) annotation(Line(points = {{-36.25, -108.1}, {-36.25, -120}, {-20, -120}, {-20, -150}}, color = {255, 128, 0})); + connect(outsideWall.WindSpeedPort, WindSpeedPort) annotation(Line(points = {{-28, -106.35}, {-28, -120}, {-80, -120}, {-80, 48}, {-110, 48}}, color = {0, 0, 127})); + connect(Wall_Corridor1.port_outside, thermCorridor) annotation(Line(points = {{-3, 38.4}, {-3, 60}, {-80, 60}, {-80, -10}, {-100, -10}}, color = {191, 0, 0})); + connect(Wall_Corridor2.port_outside, thermCorridor) annotation(Line(points = {{-68.1, 11}, {-80, 11}, {-80, -10}, {-100, -10}}, color = {191, 0, 0})); + connect(Wall_Staircase.port_outside, thermStaircase) annotation(Line(points = {{52.35, -29}, {100, -29}, {100, -120}, {-80, -120}, {-80, -50}, {-100, -50}}, color = {191, 0, 0})); + connect(Wall_Bath2.port_outside, thermBath) annotation(Line(points={{-46,-78.15},{-46,-90},{-100,-90}}, color = {191, 0, 0})); + connect(Wall_Bath1.port_outside, thermBath) annotation(Line(points = {{-68.15, -31}, {-80, -31}, {-80, -90}, {-100, -90}}, color = {191, 0, 0})); + connect(Wall_Ceiling.port_outside, thermCeiling) annotation(Line(points={{80,-69.9},{80,-48},{100,-48},{100,-130},{-100,-130}}, color = {191, 0, 0})); + connect(Wall_Floor.port_outside, thermFloor) annotation(Line(points={{80,-102.1},{80,-120},{-60,-120},{-60,-150}}, color = {191, 0, 0})); + connect(infiltrationRate.port_b, airload.port) annotation(Line(points={{-18,84},{-12,84},{-12,60},{-56,60},{-56,10},{-40,10},{-40,-16},{-26,-16}}, color = {191, 0, 0})); + connect(thermCeiling, thermCeiling) annotation(Line(points = {{-100, -130}, {-100, -130}}, color = {191, 0, 0})); + connect(infiltrationRate.port_a, thermOutside) annotation(Line(points = {{-42, 84}, {-98, 84}, {-98, 90}}, color = {191, 0, 0})); + connect(thermStar_Demux.portRad, StarRoom) annotation (Line( + points={{-20,-45},{-12,-45},{-12,-38},{6,-38}}, + color={95,95,95}, + pattern=LinePattern.Solid)); + connect(airload.port, thermStar_Demux.portConv) annotation (Line(points={{-35,-8},{-40,-8},{-40,-20},{-12,-20},{-12,-34.9},{-19.9,-34.9}}, color={191,0,0})); + connect(Wall_Bath1.thermStarComb_inside, thermStar_Demux.portConvRadComb) annotation (Line(points={{-62,-31},{-52,-31},{-52,-41.3},{-39.8,-41.3}}, color={191,0,0})); + connect(Wall_Corridor2.thermStarComb_inside, thermStar_Demux.portConvRadComb) annotation (Line(points={{-64,11},{-52,11},{-52,-40},{-39.8,-40},{-39.8,-41.3}}, + color={191,0,0})); + connect(Wall_Corridor1.thermStarComb_inside, thermStar_Demux.portConvRadComb) annotation (Line(points={{-3,22},{-3,10},{-52,10},{-52,-41.3},{-39.8,-41.3}}, color={191,0,0})); + connect(Wall_Bath2.thermStarComb_inside, thermStar_Demux.portConvRadComb) annotation (Line(points={{-46,-72},{-46,-60},{-52,-60},{-52, + -41.3},{-39.8,-41.3}}, color={191,0,0})); + connect(outsideWall.thermStarComb_inside, thermStar_Demux.portConvRadComb) annotation (Line(points={{5,-92},{5,-60},{-52,-60},{-52,-41.3},{-39.8,-41.3}}, color={191,0,0})); + connect(Wall_Staircase.thermStarComb_inside, thermStar_Demux.portConvRadComb) annotation (Line(points={{38,-29},{28,-29},{28,-60},{-52,-60},{-52,-41.3},{-39.8,-41.3}}, color={191,0,0})); + connect(Wall_Floor.thermStarComb_inside, thermStar_Demux.portConvRadComb) annotation (Line(points={{80,-98.0002},{80,-86},{28,-86},{28, + -60},{-52,-60},{-52,-41.3},{-39.8,-41.3}}, color={191,0,0})); + connect(Wall_Ceiling.thermStarComb_inside, thermStar_Demux.portConvRadComb) annotation (Line(points={{80,-74},{80,-86},{28,-86},{28,-60}, + {-52,-60},{-52,-41.3},{-39.8,-41.3}}, color={191,0,0})); + connect(NaturalVentilation.ventRate, AirExchangePort) annotation (Line(points= + {{-0.8,76.32},{-12,76.32},{-12,60},{-80,60},{-80,76},{-110,76}}, color= + {0,0,127})); + connect(NaturalVentilation.port_a, thermOutside) annotation(Line(points = {{-2, 84}, {-12, 84}, {-12, 60}, {-98, 60}, {-98, 90}}, color = {191, 0, 0})); + connect(NaturalVentilation.port_b, airload.port) annotation(Line(points={{22,84},{24,84},{24,60},{-56,60},{-56,10},{-40,10},{-40,-16},{-26,-16}}, color = {191, 0, 0})); + connect(outsideWall.port_outside, thermOutside) annotation(Line(points = {{5, -106.35}, {5, -120}, {-80, -120}, {-80, 60}, {-98, 60}, {-98, 90}}, color = {191, 0, 0})); + connect(ThermRoom, airload.port) annotation(Line(points={{8,-8},{-10,-8},{-10,-20},{-40,-20},{-40,-16},{-26,-16}}, color = {191, 0, 0})); + annotation(Diagram(coordinateSystem(preserveAspectRatio = true, extent = {{-100, -150}, {150, 100}}), graphics), Icon(coordinateSystem(preserveAspectRatio = true, extent = {{-100, -150}, {150, 100}}), graphics={ Polygon(points = {{-60, 58}, {-60, -62}, {-18, -62}, {-18, -122}, {100, -122}, {100, 58}, {-60, 58}}, lineColor = {0, 0, 0}, fillColor = {255, 255, 255}, + fillPattern = FillPattern.Forward), Text(extent = {{-32, 38}, {84, 4}}, lineColor = {0, 0, 0}, fillColor = {255, 0, 0}, + fillPattern = FillPattern.Forward, textString = "Kitchen"), Rectangle(extent = {{-18, -114}, {4, -134}}, lineColor = {0, 0, 0}, fillColor = {85, 255, 255}, + fillPattern = FillPattern.Solid), Rectangle(extent = {{-16, -116}, {2, -132}}, lineColor = {0, 0, 0}, fillColor = {170, 213, 255}, + fillPattern = FillPattern.Solid), Line(points = {{-12, -128}, {-2, -118}}, color = {255, 255, 255}, thickness = 1), Line(points = {{-8, -128}, {-2, -122}}, color = {255, 255, 255}, thickness = 1), Line(points = {{-12, -124}, {-6, -118}}, color = {255, 255, 255}, thickness = 1), Text(extent = {{-6, -122}, {44, -138}}, lineColor = {0, 0, 0}, + lineThickness = 1, fillColor = {255, 255, 255}, + fillPattern = FillPattern.Solid, textString = "OW"), Text(extent = {{12, 76}, {72, 60}}, lineColor = {0, 0, 0}, + lineThickness = 1, fillColor = {255, 255, 255}, + fillPattern = FillPattern.Solid, textString = "Corridor"), Rectangle(extent = {{72, 82}, {92, 52}}, lineColor = {0, 0, 0}, + lineThickness = 1, fillColor = {127, 0, 0}, + fillPattern = FillPattern.Forward), Ellipse(extent = {{74, 70}, {76, 68}}, lineColor = {0, 0, 0}, pattern=LinePattern.None, + lineThickness = 1, + fillPattern = FillPattern.Sphere, fillColor = {255, 255, 0}), Rectangle(extent = {{-70, -140}, {-50, -160}}, lineColor = {0, 0, 0}, + lineThickness = 0.5), Rectangle(extent = {{-110, -120}, {-90, -140}}, lineColor = {0, 0, 0}, + lineThickness = 0.5), Rectangle(extent = {{-110, -80}, {-90, -100}}, lineColor = {0, 0, 0}, + lineThickness = 0.5), Rectangle(extent = {{-110, -40}, {-90, -60}}, lineColor = {0, 0, 0}, + lineThickness = 0.5), Rectangle(extent = {{-110, 0}, {-90, -20}}, lineColor = {0, 0, 0}, + lineThickness = 0.5), Rectangle(extent = {{-108, 72}, {-88, 18}}, lineColor = {0, 0, 0}, + lineThickness = 0.5), Rectangle(extent = {{-108, 100}, {-88, 80}}, lineColor = {0, 0, 0}, + lineThickness = 0.5)}), Documentation(revisions = "
                                      +
                                    • + April 18, 2014 by Ana Constantin:
                                      + Added documentation +
                                    • +
                                    • + August 16, 2011 by Ana Constantin:
                                      + Implemented +
                                    • +
                                    +", info = " +

                                    + Overview +

                                    +

                                    + Model for the kitchen. +

                                    +

                                    + Concept +

                                    +

                                    + The following figure presents the room's layout: +

                                    +

                                    + \"Room +

                                    +")); + end Kitchen_VoWo; + + model Livingroom_VoWo "Livingroom from the VoWo appartment" + ///////// construction parameters + parameter Integer TMC = 1 "Thermal Mass Class" annotation(Dialog(group = "Construction parameters", compact = true, descriptionLabel = true), choices(choice = 1 "Heavy", choice = 2 "Medium", choice = 3 "Light", radioButtons = true)); + parameter Integer TIR = 4 "Thermal Insulation Regulation" annotation(Dialog(groupImage = "modelica://AixLib/Resources/Images/Building/HighOrder/VoWo_Livingroom.png", group = "Construction parameters", compact = true, descriptionLabel = true), choices(choice = 1 + "EnEV_2009", choice = 2 + "EnEV_2002", choice = 3 + "WSchV_1995", choice = 4 + "WSchV_1984", radioButtons = true)); + parameter Integer Floor = 1 "Floor" annotation(Dialog(group = "Floor", compact = true, descriptionLabel = true), choices(choice = 1 "GF", choice = 2 "1F", choice = 3 "2F", radioButtons = true)); + // Outer walls properties + parameter Real solar_absorptance_OW = 0.7 "Solar absoptance outer walls " annotation(Dialog(group = "Outer wall properties", descriptionLabel = true)); + parameter Integer calcMethod=1 "Calculation method for convective heat transfer coefficient" annotation (Dialog( + group="Outer wall properties", + compact=true, + descriptionLabel=true), choices( + choice=1 "DIN 6946", + choice=2 "ASHRAE Fundamentals", + choice=3 "Custom hCon (constant)", + radioButtons=true)); + //Initial temperatures + parameter Modelica.Units.SI.Temperature T0_air=295.15 "Air" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + parameter Modelica.Units.SI.Temperature T0_OW=295.15 "OW" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + parameter Modelica.Units.SI.Temperature T0_IWChild=295.15 "IWChild" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + parameter Modelica.Units.SI.Temperature T0_IWCorridor=290.15 "IWCorridor" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + parameter Modelica.Units.SI.Temperature T0_IWBedroom=295.15 "IWBedroom" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + parameter Modelica.Units.SI.Temperature T0_IWNeighbour=295.15 "IWNeighbour" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + parameter Modelica.Units.SI.Temperature T0_CE=295.35 "Ceiling" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + parameter Modelica.Units.SI.Temperature T0_FL=294.95 "Floor" + annotation (Dialog(tab="Initial temperatures", descriptionLabel=true)); + // Sunblind + parameter Boolean use_sunblind = false + "Will sunblind become active automatically?" + annotation(Dialog(group = "Sunblind")); + parameter Real ratioSunblind(min=0.0, max=1.0) = 0.8 + "Sunblind factor. 1 means total blocking of irradiation, 0 no sunblind" + annotation(Dialog(group = "Sunblind", enable=use_sunblind)); + parameter Modelica.Units.SI.Irradiance solIrrThreshold(min=0.0) = 350 + "Threshold for global solar irradiation on this surface to enable sunblinding (see also TOutAirLimit)" + annotation (Dialog(group="Sunblind", enable=use_sunblind)); + parameter Modelica.Units.SI.Temperature TOutAirLimit + "Temperature at which sunblind closes (see also solIrrThreshold)" + annotation (Dialog(group="Sunblind", enable=use_sunblind)); + AixLib.ThermalZones.HighOrder.Components.Walls.Wall Wall_Neighbour( + redeclare final model WindowModel=WindowModel, + redeclare final model CorrSolarGainWin=CorrSolarGainWin, + T0=T0_IWNeighbour, + outside=false, + final withSunblind=use_sunblind, + final Blinding=1 - ratioSunblind, + final LimitSolIrr=solIrrThreshold, + final TOutAirLimit=TOutAirLimit, + wallPar=Type_IWNeigbour, + wall_length=4.2, + wall_height=2.46, + withWindow=false, + withDoor=false) annotation (Placement(transformation(extent={{-80,-24},{-68,54}}))); + AixLib.ThermalZones.HighOrder.Components.Walls.Wall Wall_Corridor( + redeclare final model WindowModel=WindowModel, + redeclare final model CorrSolarGainWin=CorrSolarGainWin, + T0=T0_IWCorridor, + outside=false, + final withSunblind=use_sunblind, + final Blinding=1 - ratioSunblind, + final LimitSolIrr=solIrrThreshold, + final TOutAirLimit=TOutAirLimit, + wallPar=Type_IWload, + wall_length=1.54, + wall_height=2.46, + withWindow=false, + withDoor=false) annotation (Placement(transformation( + origin={19,-43}, + extent={{-4.99999,-31},{4.99998,31}}, + rotation=90))); + AixLib.ThermalZones.HighOrder.Components.Walls.Wall Wall_Children( + redeclare final model WindowModel=WindowModel, + redeclare final model CorrSolarGainWin=CorrSolarGainWin, + T0=T0_IWChild, + outside=false, + final withSunblind=use_sunblind, + final Blinding=1 - ratioSunblind, + final LimitSolIrr=solIrrThreshold, + final TOutAirLimit=TOutAirLimit, + wallPar=Type_IWload, + wall_length=4.2, + wall_height=2.46, + withWindow=false, + withDoor=false) annotation (Placement(transformation( + origin={75,14.9756}, + extent={{-7.00003,-39.0244},{7.00003,40.9756}}, + rotation=180))); + AixLib.ThermalZones.HighOrder.Components.DryAir.Airload airload( + final T0=T0_air, + final V=room_V) + annotation (Placement(transformation(extent={{-28,0},{-48,20}}))); + AixLib.ThermalZones.HighOrder.Components.Walls.Wall outsideWall( + redeclare final model WindowModel=WindowModel, + redeclare final model CorrSolarGainWin=CorrSolarGainWin, + wall_length=4.645, + wall_height=2.46, + windowarea=3.99, + door_height=0.1, + door_width=0.1, + withWindow=true, + final withSunblind=use_sunblind, + final Blinding=1 - ratioSunblind, + final LimitSolIrr=solIrrThreshold, + final TOutAirLimit=TOutAirLimit, + T0=T0_OW, + solar_absorptance=solar_absorptance_OW, + withDoor=false, + wallPar=Type_OW, + WindowType=Type_Win) annotation (Placement(transformation( + origin={-14.9999,71}, + extent={{-13,-61.0001},{11,82.9999}}, + rotation=270))); + AixLib.ThermalZones.HighOrder.Components.Walls.Wall Wall_Bedroom( + redeclare final model WindowModel=WindowModel, + redeclare final model CorrSolarGainWin=CorrSolarGainWin, + T0=T0_IWBedroom, + outside=false, + final withSunblind=use_sunblind, + final Blinding=1 - ratioSunblind, + final LimitSolIrr=solIrrThreshold, + final TOutAirLimit=TOutAirLimit, + wallPar=Type_IWload, + wall_length=3.105, + wall_height=2.46, + withWindow=false, + withDoor=false) annotation (Placement(transformation( + origin={-45,-44}, + extent={{-3.99999,-25},{3.99998,25}}, + rotation=90))); + AixLib.ThermalZones.HighOrder.Components.Walls.Wall Wall_Ceiling( + redeclare final model WindowModel=WindowModel, + redeclare final model CorrSolarGainWin=CorrSolarGainWin, + T0=T0_CE, + outside=false, + final withSunblind=use_sunblind, + final Blinding=1 - ratioSunblind, + final LimitSolIrr=solIrrThreshold, + final TOutAirLimit=TOutAirLimit, + wallPar=Type_CE, + wall_length=4.2, + wall_height=4.645, + calcMethodOut=1, + ISOrientation=3, + withWindow=false, + withDoor=false) annotation (Placement(transformation( + origin={104,70}, + extent={{-1.99998,-10},{1.99998,10}}, + rotation=270))); + AixLib.ThermalZones.HighOrder.Components.Walls.Wall Wall_Floor( + redeclare final model WindowModel=WindowModel, + redeclare final model CorrSolarGainWin=CorrSolarGainWin, + T0=T0_FL, + outside=false, + final withSunblind=use_sunblind, + final Blinding=1 - ratioSunblind, + final LimitSolIrr=solIrrThreshold, + final TOutAirLimit=TOutAirLimit, + wallPar=Type_FL, + wall_length=4.2, + wall_height=4.645, + ISOrientation=2, + withWindow=false, + withDoor=false) annotation (Placement(transformation( + origin={104,32}, + extent={{-1.99998,-10},{1.99998,10}}, + rotation=90))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a ThermRoom annotation(Placement(transformation(extent = {{-12, 4}, {8, 24}}), iconTransformation(extent = {{-12, 4}, {8, 24}}))); + AixLib.Utilities.Interfaces.RadPort StarInside1 annotation (Placement( + transformation(extent={{16,4},{36,24}}), iconTransformation(extent= + {{16,4},{36,24}}))); + AixLib.Utilities.Interfaces.SolarRad_in SolarRadiation_SE annotation ( + Placement(transformation( + extent={{-10,-10},{10,10}}, + rotation=270, + origin={-66,134}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermOutside annotation(Placement(transformation(extent = {{-160, 120}, {-140, 140}}), iconTransformation(extent = {{-160, 120}, {-140, 140}}))); + Modelica.Blocks.Interfaces.RealInput AirExchangePort annotation(Placement(transformation(extent = {{-180, 50}, {-140, 90}}), iconTransformation(extent = {{-160, 70}, {-140, 90}}))); + Modelica.Blocks.Interfaces.RealInput WindSpeedPort annotation(Placement(transformation(extent = {{-180, 10}, {-140, 50}}), iconTransformation(extent = {{-160, 30}, {-140, 50}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermCeiling annotation(Placement(transformation(extent = {{-160, -120}, {-140, -100}}), iconTransformation(extent = {{-160, -120}, {-140, -100}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermFloor annotation(Placement(transformation(extent = {{-160, -150}, {-140, -130}}), iconTransformation(extent = {{-160, -150}, {-140, -130}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermChildren annotation(Placement(transformation(extent = {{-160, -90}, {-140, -70}}), iconTransformation(extent = {{-160, -90}, {-140, -70}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermCorridor annotation(Placement(transformation(extent = {{-160, -60}, {-140, -40}}), iconTransformation(extent = {{-160, -60}, {-140, -40}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermBedroom annotation(Placement(transformation(extent = {{-160, -30}, {-140, -10}}), iconTransformation(extent = {{-160, -30}, {-140, -10}}))); + Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a thermNeighbour annotation(Placement(transformation(extent = {{-160, 0}, {-140, 20}}), iconTransformation(extent = {{-160, 0}, {-140, 20}}))); + AixLib.ThermalZones.HighOrder.Components.DryAir.InfiltrationRate_DIN12831 + infiltrationRate( + room_V=room_V, + n50=n50, + e=e, + eps=eps) + annotation (Placement(transformation(extent={{-72,-84},{-46,-58}}))); + AixLib.Utilities.Interfaces.Adaptors.ConvRadToCombPort thermStar_Demux annotation (Placement(transformation( + extent={{-10,8},{10,-8}}, + rotation=180, + origin={24,-14}))); + AixLib.ThermalZones.HighOrder.Components.DryAir.VarAirExchange + NaturalVentilation(V=room_V) + annotation (Placement(transformation(extent={{-72,-112},{-46,-86}}))); + + replaceable model WindowModel = + AixLib.ThermalZones.HighOrder.Components.WindowsDoors.BaseClasses.PartialWindow + constrainedby + AixLib.ThermalZones.HighOrder.Components.WindowsDoors.BaseClasses.PartialWindow + annotation (Dialog(tab="Outer walls", group="Windows"), choicesAllMatching = true); + + replaceable model CorrSolarGainWin = + AixLib.ThermalZones.HighOrder.Components.WindowsDoors.BaseClasses.CorrectionSolarGain.PartialCorG + constrainedby + AixLib.ThermalZones.HighOrder.Components.WindowsDoors.BaseClasses.CorrectionSolarGain.PartialCorG + "Correction model for solar irradiance as transmitted radiation" annotation (choicesAllMatching=true, Dialog(tab="Outer walls", group="Windows", enable = withWindow and outside)); + + protected + parameter Real n50(unit = "h-1") = if TIR == 1 or TIR == 2 then 3 else if TIR == 3 then 4 else 6 + "Air exchange rate at 50 Pa pressure difference" annotation(Dialog(tab = "Infiltration")); + parameter Real e = 0.03 "Coefficient of windshield" annotation(Dialog(tab = "Infiltration")); + parameter Real eps = 1.0 "Coefficient of height" annotation(Dialog(tab = "Infiltration")); + // Outer wall type + parameter AixLib.DataBase.Walls.WallBaseDataDefinition Type_OW = if TIR == 1 then if TMC == 1 then AixLib.DataBase.Walls.EnEV2009.OW.OW_EnEV2009_S() else if TMC == 2 then AixLib.DataBase.Walls.EnEV2009.OW.OW_EnEV2009_M() else AixLib.DataBase.Walls.EnEV2009.OW.OW_EnEV2009_L() else if TIR == 2 then if TMC == 1 then AixLib.DataBase.Walls.EnEV2002.OW.OW_EnEV2002_S() else if TMC == 2 then AixLib.DataBase.Walls.EnEV2002.OW.OW_EnEV2002_M() else AixLib.DataBase.Walls.EnEV2002.OW.OW_EnEV2002_L() else if TIR == 3 then if TMC == 1 then AixLib.DataBase.Walls.WSchV1995.OW.OW_WSchV1995_S() else if TMC == 2 then AixLib.DataBase.Walls.WSchV1995.OW.OW_WSchV1995_M() else AixLib.DataBase.Walls.WSchV1995.OW.OW_WSchV1995_L() else if TMC == 1 then AixLib.DataBase.Walls.WSchV1984.OW.OW_WSchV1984_S() else if TMC == 2 then AixLib.DataBase.Walls.WSchV1984.OW.OW_WSchV1984_M() else AixLib.DataBase.Walls.WSchV1984.OW.OW_WSchV1984_L() annotation(Dialog(tab = "Types")); + //Inner wall Types + parameter AixLib.DataBase.Walls.WallBaseDataDefinition Type_IWload = if TIR == 1 then if TMC == 1 then AixLib.DataBase.Walls.EnEV2009.IW.IWload_EnEV2009_S_half() else if TMC == 2 then AixLib.DataBase.Walls.EnEV2009.IW.IWload_EnEV2009_M_half() else AixLib.DataBase.Walls.EnEV2009.IW.IWload_EnEV2009_L_half() else if TIR == 2 then if TMC == 1 then AixLib.DataBase.Walls.EnEV2002.IW.IWload_EnEV2002_S_half() else if TMC == 2 then AixLib.DataBase.Walls.EnEV2002.IW.IWload_EnEV2002_M_half() else AixLib.DataBase.Walls.EnEV2002.IW.IWload_EnEV2002_L_half() else if TIR == 3 then if TMC == 1 then AixLib.DataBase.Walls.WSchV1995.IW.IWload_WSchV1995_S_half() else if TMC == 2 then AixLib.DataBase.Walls.WSchV1995.IW.IWload_WSchV1995_M_half() else AixLib.DataBase.Walls.WSchV1995.IW.IWload_WSchV1995_L_half() else if TMC == 1 then AixLib.DataBase.Walls.WSchV1984.IW.IWload_WSchV1984_S_half() else if TMC == 2 then AixLib.DataBase.Walls.WSchV1984.IW.IWload_WSchV1984_M_half() else AixLib.DataBase.Walls.WSchV1984.IW.IWload_WSchV1984_L_half() annotation(Dialog(tab = "Types")); + parameter AixLib.DataBase.Walls.WallBaseDataDefinition Type_IWNeigbour = if TIR == 1 then if TMC == 1 then AixLib.DataBase.Walls.EnEV2009.IW.IWneighbour_EnEV2009_S_half() else if TMC == 2 then AixLib.DataBase.Walls.EnEV2009.IW.IWneighbour_EnEV2009_M_half() else AixLib.DataBase.Walls.EnEV2009.IW.IWneighbour_EnEV2009_L_half() else if TIR == 2 then if TMC == 1 then AixLib.DataBase.Walls.EnEV2002.IW.IWneighbour_EnEV2002_S_half() else if TMC == 2 then AixLib.DataBase.Walls.EnEV2002.IW.IWneighbour_EnEV2002_M_half() else AixLib.DataBase.Walls.EnEV2002.IW.IWneighbour_EnEV2002_L_half() else if TIR == 3 then if TMC == 1 then AixLib.DataBase.Walls.WSchV1995.IW.IWneighbour_WSchV1995_S_half() else if TMC == 2 then AixLib.DataBase.Walls.WSchV1995.IW.IWneighbour_WSchV1995_M_half() else AixLib.DataBase.Walls.WSchV1995.IW.IWneighbour_WSchV1995_L_half() else if TMC == 1 then AixLib.DataBase.Walls.WSchV1984.IW.IWneighbour_WSchV1984_S_half() else if TMC == 2 then AixLib.DataBase.Walls.WSchV1984.IW.IWneighbour_WSchV1984_M_half() else AixLib.DataBase.Walls.WSchV1984.IW.IWneighbour_WSchV1984_L_half() annotation(Dialog(tab = "Types")); + // Floor type + parameter AixLib.DataBase.Walls.WallBaseDataDefinition Type_FL = if Floor == 1 then if TIR == 1 then AixLib.DataBase.Walls.EnEV2009.Floor.FLcellar_EnEV2009_SML_upHalf() else if TIR == 2 then AixLib.DataBase.Walls.EnEV2002.Floor.FLcellar_EnEV2002_SML_upHalf() else if TIR == 3 then AixLib.DataBase.Walls.WSchV1995.Floor.FLcellar_WSchV1995_SML_upHalf() else AixLib.DataBase.Walls.WSchV1984.Floor.FLcellar_WSchV1984_SML_upHalf() else if TIR == 1 then if TMC == 1 or TMC == 2 then AixLib.DataBase.Walls.EnEV2009.Floor.FLpartition_EnEV2009_SM_upHalf() else AixLib.DataBase.Walls.EnEV2009.Floor.FLpartition_EnEV2009_L_upHalf() else if TIR == 2 then if TMC == 1 or TMC == 2 then AixLib.DataBase.Walls.EnEV2002.Floor.FLpartition_EnEV2002_SM_upHalf() else AixLib.DataBase.Walls.EnEV2002.Floor.FLpartition_EnEV2002_L_upHalf() else if TIR == 3 then if TMC == 1 or TMC == 2 then AixLib.DataBase.Walls.WSchV1995.Floor.FLpartition_WSchV1995_SM_upHalf() else AixLib.DataBase.Walls.WSchV1995.Floor.FLpartition_WSchV1995_L_upHalf() else if TMC == 1 or TMC == 2 then AixLib.DataBase.Walls.WSchV1984.Floor.FLpartition_WSchV1984_SM_upHalf() else AixLib.DataBase.Walls.WSchV1984.Floor.FLpartition_WSchV1984_L_upHalf() annotation(Dialog(tab = "Types")); + // Ceiling type + parameter AixLib.DataBase.Walls.WallBaseDataDefinition Type_CE = if Floor == 1 or Floor == 2 then if TIR == 1 then if TMC == 1 or TMC == 2 then AixLib.DataBase.Walls.EnEV2009.Ceiling.CEpartition_EnEV2009_SM_loHalf() else AixLib.DataBase.Walls.EnEV2009.Ceiling.CEpartition_EnEV2009_L_loHalf() else if TIR == 2 then if TMC == 1 or TMC == 2 then AixLib.DataBase.Walls.EnEV2002.Ceiling.CEpartition_EnEV2002_SM_loHalf() else AixLib.DataBase.Walls.EnEV2002.Ceiling.CEpartition_EnEV2002_L_loHalf() else if TIR == 3 then if TMC == 1 or TMC == 2 then AixLib.DataBase.Walls.WSchV1995.Ceiling.CEpartition_WSchV1995_SM_loHalf() else AixLib.DataBase.Walls.WSchV1995.Ceiling.CEpartition_WSchV1995_L_loHalf() else if TMC == 1 or TMC == 2 then AixLib.DataBase.Walls.WSchV1984.Ceiling.CEpartition_WSchV1984_SM_loHalf() else AixLib.DataBase.Walls.WSchV1984.Ceiling.CEpartition_WSchV1984_L_loHalf() else if TIR == 1 then AixLib.DataBase.Walls.EnEV2009.Ceiling.CEattic_EnEV2009_SML_loHalf() else if TIR == 2 then AixLib.DataBase.Walls.EnEV2002.Ceiling.CEattic_EnEV2002_SML_loHalf() else if TIR == 3 then AixLib.DataBase.Walls.WSchV1995.Ceiling.CEattic_WSchV1995_SML_loHalf() else AixLib.DataBase.Walls.WSchV1984.Ceiling.CEattic_WSchV1984_SML_loHalf() annotation(Dialog(tab = "Types")); + //Window type + parameter AixLib.DataBase.WindowsDoors.Simple.OWBaseDataDefinition_Simple Type_Win = if TIR == 1 then AixLib.DataBase.WindowsDoors.Simple.WindowSimple_EnEV2009() else if TIR == 2 then AixLib.DataBase.WindowsDoors.Simple.WindowSimple_EnEV2002() else if TIR == 3 then AixLib.DataBase.WindowsDoors.Simple.WindowSimple_WSchV1995() else AixLib.DataBase.WindowsDoors.Simple.WindowSimple_WSchV1984() annotation(Dialog(tab = "Types")); + parameter Modelica.Units.SI.Volume room_V=4.20*4.645*2.46; + equation + connect(outsideWall.SolarRadiationPort, SolarRadiation_SE) annotation(Line(points = {{62, 87.6}, {62, 100}, {-66, 100}, {-66, 134}}, color = {255, 128, 0})); + connect(outsideWall.WindSpeedPort, WindSpeedPort) annotation(Line(points = {{48.8, 84.6}, {48.8, 100}, {-86, 100}, {-86, 30}, {-160, 30}}, color = {0, 0, 127})); + connect(Wall_Ceiling.port_outside, thermCeiling) annotation(Line(points={{104, + 72.1},{104,84},{134,84},{134,-56},{-86,-56},{-86,-110},{-150,-110}}, color = {191, 0, 0})); + connect(Wall_Floor.port_outside, thermFloor) annotation(Line(points={{104, + 29.9},{104,4},{134,4},{134,-56},{-86,-56},{-86,-140},{-150,-140}}, color = {191, 0, 0})); + connect(Wall_Children.port_outside, thermChildren) annotation(Line(points={{82.35, + 14},{104,14},{104,4},{134,4},{134,-80},{-150,-80}}, color = {191, 0, 0})); + connect(Wall_Corridor.port_outside, thermCorridor) annotation(Line(points={{19, + -48.25},{19,-48.25},{19,-56},{-86,-56},{-86,-50},{-150,-50}}, color = {191, 0, 0})); + connect(Wall_Bedroom.port_outside, thermBedroom) annotation(Line(points={{-45, + -48.2},{-45,-56},{-86,-56},{-86,-20},{-150,-20}}, color = {191, 0, 0})); + connect(Wall_Neighbour.port_outside, thermNeighbour) annotation(Line(points = {{-80.3, 15}, {-86, 15}, {-86, 10}, {-150, 10}}, color = {191, 0, 0})); + connect(infiltrationRate.port_a, thermOutside) annotation(Line(points = {{-72, -71}, {-86, -71}, {-86, 130}, {-150, 130}}, color = {191, 0, 0})); + connect(ThermRoom, ThermRoom) annotation(Line(points = {{-2, 14}, {-7, 14}, {-7, 14}, {-2, 14}}, color = {191, 0, 0})); + connect(thermStar_Demux.portRad, StarInside1) annotation (Line( + points={{14,-9},{14,3.2},{26,3.2},{26,14}}, + color={95,95,95}, + pattern=LinePattern.Solid)); + connect(Wall_Children.thermStarComb_inside, thermStar_Demux.portConvRadComb) annotation (Line(points={{68,14}, + {54,14},{54,-32},{34,-32},{34,-14}}, color={191,0,0})); + connect(Wall_Corridor.thermStarComb_inside, thermStar_Demux.portConvRadComb) annotation (Line(points={{19,-38}, + {19,-32},{34,-32},{34,-14}}, color={191,0,0})); + connect(Wall_Bedroom.thermStarComb_inside, thermStar_Demux.portConvRadComb) annotation (Line(points={{-45,-40}, + {-45,-32},{34,-32},{34,-14}}, color={191,0,0})); + connect(Wall_Neighbour.thermStarComb_inside, thermStar_Demux.portConvRadComb) annotation (Line(points={{-68,15}, + {-56,15},{-56,-32},{34,-32},{34,-14}}, color={191,0,0})); + connect(outsideWall.thermStarComb_inside, thermStar_Demux.portConvRadComb) annotation (Line(points={{-4,60}, + {-4,48},{-56,48},{-56,-32},{34,-32},{34,-14}}, color={191,0,0})); + connect(Wall_Ceiling.thermStarComb_inside, thermStar_Demux.portConvRadComb) annotation (Line(points={{104,68}, + {104,58},{54,58},{54,-32},{34,-32},{34,-14}}, color={191,0,0})); + connect(Wall_Floor.thermStarComb_inside, thermStar_Demux.portConvRadComb) annotation (Line(points={{104,34}, + {104,58},{54,58},{54,-32},{34,-32},{34,-14}}, color={191,0,0})); + connect(thermStar_Demux.portConv, ThermRoom) annotation (Line(points={{14,-19}, + {14,-20},{-20,-20},{-20,14},{-2,14}}, color={191,0,0})); + connect(airload.port, infiltrationRate.port_b) annotation(Line(points={{-38,0}, + {-20,0},{-20,-71},{-46,-71}}, color = {191, 0, 0})); + connect(NaturalVentilation.ventRate, AirExchangePort) annotation (Line(points= + {{-70.7,-107.32},{-86,-107.32},{-86,70},{-160,70}}, color={0,0,127})); + connect(NaturalVentilation.port_a, thermOutside) annotation(Line(points = {{-72, -99}, {-86, -99}, {-86, 130}, {-150, 130}}, color = {191, 0, 0})); + connect(airload.port, ThermRoom) annotation(Line(points={{-38,0},{-20,0},{-20,14},{-2,14}}, color = {191, 0, 0})); + connect(NaturalVentilation.port_b, airload.port) annotation(Line(points={{-46,-99},{-20,-99},{-20,0},{-38,0}}, color = {191, 0, 0})); + connect(outsideWall.port_outside, thermOutside) annotation(Line(points = {{-4, 84.6}, {-4, 100}, {-86, 100}, {-86, 130}, {-150, 130}}, color = {191, 0, 0})); + annotation(Diagram(coordinateSystem(preserveAspectRatio = true, extent = {{-170, -150}, {170, 150}})), Icon(coordinateSystem(preserveAspectRatio = true, extent = {{-170, -150}, {170, 150}}), graphics={ Rectangle(extent = {{-62, 60}, {112, -92}}, lineColor = {0, 0, 0}, fillColor = {255, 255, 255}, + fillPattern = FillPattern.Forward), Rectangle(extent = {{38, 72}, {60, 52}}, lineColor = {0, 0, 0}, fillColor = {85, 255, 255}, + fillPattern = FillPattern.Solid), Rectangle(extent = {{40, 70}, {58, 54}}, lineColor = {0, 0, 0}, fillColor = {170, 213, 255}, + fillPattern = FillPattern.Solid), Text(extent = {{-56, -14}, {104, -32}}, lineColor = {0, 0, 0}, fillColor = {255, 0, 0}, + fillPattern = FillPattern.Forward, textString = "Livingroom"), Text(extent = {{42, -98}, {92, -114}}, lineColor = {0, 0, 0}, + lineThickness = 1, fillColor = {255, 255, 255}, + fillPattern = FillPattern.Solid, textString = "Corridor"), Rectangle(extent = {{92, -88}, {112, -118}}, lineColor = {0, 0, 0}, + lineThickness = 1, fillColor = {127, 0, 0}, + fillPattern = FillPattern.Forward), Ellipse(extent = {{94, -100}, {96, -102}}, lineColor = {0, 0, 0}, pattern=LinePattern.None, + lineThickness = 1, + fillPattern = FillPattern.Sphere, fillColor = {255, 255, 0}), Rectangle(extent = {{-62, 84}, {-42, 54}}, lineColor = {0, 0, 0}, + lineThickness = 1, fillColor = {127, 0, 0}, + fillPattern = FillPattern.Forward), Ellipse(extent = {{-44, 68}, {-46, 66}}, lineColor = {0, 0, 0}, pattern = LinePattern.Solid, + lineThickness = 1, + fillPattern = FillPattern.Sphere, fillColor = {255, 255, 0}), Rectangle(extent = {{-160, -130}, {-140, -150}}, lineColor = {0, 0, 0}, + lineThickness = 0.5), Rectangle(extent = {{-160, -100}, {-140, -120}}, lineColor = {0, 0, 0}, + lineThickness = 0.5), Rectangle(extent = {{-160, -70}, {-140, -90}}, lineColor = {0, 0, 0}, + lineThickness = 0.5), Rectangle(extent = {{-160, -10}, {-140, -30}}, lineColor = {0, 0, 0}, + lineThickness = 0.5), Rectangle(extent = {{-160, 20}, {-140, 0}}, lineColor = {0, 0, 0}, + lineThickness = 0.5), Rectangle(extent = {{-160, 140}, {-140, 120}}, lineColor = {0, 0, 0}, + lineThickness = 0.5), Rectangle(extent = {{-160, -40}, {-140, -60}}, lineColor = {0, 0, 0}, + lineThickness = 0.5), Rectangle(extent = {{-160, 90}, {-140, 28}}, lineColor = {0, 0, 0}, + lineThickness = 0.5), Line(points = {{44, 62}, {50, 68}}, color = {255, 255, 255}, thickness = 1), Line(points = {{44, 58}, {54, 68}}, color = {255, 255, 255}, thickness = 1), Line(points = {{48, 58}, {54, 64}}, color = {255, 255, 255}, thickness = 1), Text(extent = {{50, 78}, {100, 62}}, lineColor = {0, 0, 0}, + lineThickness = 1, fillColor = {255, 255, 255}, + fillPattern = FillPattern.Solid, textString = "OW")}), Documentation(revisions = "
                                      +
                                    • + April 18, 2014 by Ana Constantin:
                                      + Added documentation +
                                    • +
                                    • + August 16, 2011 by Ana Constantin:
                                      + Implemented +
                                    • +
                                    +", info = " +

                                    + Overview +

                                    +

                                    + Model for the livingroom. +

                                    +

                                    + Concept +

                                    +

                                    + The following figure presents the room's layout: +

                                    +

                                    + \"Room +

                                    +")); + end Livingroom_VoWo; + annotation(Documentation(info = "

                                    + Overview +

                                    +

                                    + Package for the rooms in the appartment. +

                                    +")); + end OneAppartment; + annotation(Documentation(info = "

                                    + Overview +

                                    +

                                    + Package for rooms for an appartment in a multi family dwelling. +

                                    +

                                    + Concept +

                                    +

                                    + The multi-family dwelling is based on an existing building consisting + of several identical apartments which is part of a larger national + research project [1]. +

                                    +

                                    + The dimensions and layout of the rooms are fixed, with an apartment + having a living area of 70 m2 and consisting of a living room, two + bedrooms, a kitchen and a bathroom. +

                                    +

                                    + \"MFD_FloorPlan_En\" +

                                    +

                                    +
                                    +
                                    + References +

                                    +

                                    + [1] Cali, D., Streblow, R., Müller, D., Osterhage, T. Holistic + Renovation and Monitoring of Residential Buildings in Proceedings + of Rethink, renew, restart: ECEE 2013 summer study, 2013. +

                                    +")); +end MFD; diff --git a/AixLib/Obsolete/Year2022/ThermalZones/HighOrder/Rooms/package.mo b/AixLib/Obsolete/Year2022/ThermalZones/HighOrder/Rooms/package.mo new file mode 100644 index 0000000000..ecc5905b25 --- /dev/null +++ b/AixLib/Obsolete/Year2022/ThermalZones/HighOrder/Rooms/package.mo @@ -0,0 +1,3 @@ +within AixLib.Obsolete.Year2022.ThermalZones.HighOrder; +package Rooms +end Rooms; diff --git a/AixLib/Obsolete/Year2022/ThermalZones/HighOrder/Rooms/package.order b/AixLib/Obsolete/Year2022/ThermalZones/HighOrder/Rooms/package.order new file mode 100644 index 0000000000..00d11be86e --- /dev/null +++ b/AixLib/Obsolete/Year2022/ThermalZones/HighOrder/Rooms/package.order @@ -0,0 +1 @@ +MFD diff --git a/AixLib/Obsolete/Year2022/ThermalZones/HighOrder/package.mo b/AixLib/Obsolete/Year2022/ThermalZones/HighOrder/package.mo new file mode 100644 index 0000000000..561a39a72c --- /dev/null +++ b/AixLib/Obsolete/Year2022/ThermalZones/HighOrder/package.mo @@ -0,0 +1,3 @@ +within AixLib.Obsolete.Year2022.ThermalZones; +package HighOrder +end HighOrder; diff --git a/AixLib/Obsolete/Year2022/ThermalZones/HighOrder/package.order b/AixLib/Obsolete/Year2022/ThermalZones/HighOrder/package.order new file mode 100644 index 0000000000..037743e3c6 --- /dev/null +++ b/AixLib/Obsolete/Year2022/ThermalZones/HighOrder/package.order @@ -0,0 +1,3 @@ +Rooms +House +Examples diff --git a/AixLib/Obsolete/Year2022/ThermalZones/package.mo b/AixLib/Obsolete/Year2022/ThermalZones/package.mo new file mode 100644 index 0000000000..39ab53fc71 --- /dev/null +++ b/AixLib/Obsolete/Year2022/ThermalZones/package.mo @@ -0,0 +1,3 @@ +within AixLib.Obsolete.Year2022; +package ThermalZones +end ThermalZones; diff --git a/AixLib/Obsolete/Year2022/ThermalZones/package.order b/AixLib/Obsolete/Year2022/ThermalZones/package.order new file mode 100644 index 0000000000..94608dc1e1 --- /dev/null +++ b/AixLib/Obsolete/Year2022/ThermalZones/package.order @@ -0,0 +1 @@ +HighOrder diff --git a/AixLib/Utilities/Sources/NcDataReader.mo b/AixLib/Obsolete/Year2022/Utilities/NcDataReader.mo similarity index 96% rename from AixLib/Utilities/Sources/NcDataReader.mo rename to AixLib/Obsolete/Year2022/Utilities/NcDataReader.mo index 8496bf8729..227d89d5a2 100644 --- a/AixLib/Utilities/Sources/NcDataReader.mo +++ b/AixLib/Obsolete/Year2022/Utilities/NcDataReader.mo @@ -1,6 +1,5 @@ -within AixLib.Utilities.Sources; -model NcDataReader - "File reader for external data" +within AixLib.Obsolete.Year2022.Utilities; +model NcDataReader "File reader for external data" import nc = NcDataReader2.Functions; parameter String fileName "File where external data is stored" @@ -29,19 +28,19 @@ model NcDataReader parameter String attNameInt[:]={""} "Name of attribute of type integer in .nc file" annotation (Dialog(enable=use_attNameInt)); - parameter Modelica.SIunits.Time offset=0 + parameter Modelica.Units.SI.Time offset=0 "Time period prior current simulation time"; - Modelica.Blocks.Interfaces.RealOutput y[size(varName, 1)] if - use_varName + Modelica.Blocks.Interfaces.RealOutput y[size(varName, 1)] + if use_varName "Output Vector with all variables" annotation (Placement(transformation(extent={{100,-10},{120,10}}))); - Modelica.Blocks.Interfaces.RealOutput yAttReal[size(attNameReal, 1)] if - use_attNameReal + Modelica.Blocks.Interfaces.RealOutput yAttReal[size(attNameReal, 1)] + if use_attNameReal "Output Vector with all attributes of type double" annotation (Placement( transformation(extent={{100,64},{120,84}}), iconTransformation(extent={{ 100,64},{120,84}}))); - Modelica.Blocks.Interfaces.IntegerOutput yAttInt[size(attNameInt, 1)] if - use_attNameInt + Modelica.Blocks.Interfaces.IntegerOutput yAttInt[size(attNameInt, 1)] + if use_attNameInt "Output Vector with all attributes of type integer" annotation (Placement( transformation(extent={{100,-74},{120,-54}}), iconTransformation(extent= {{100,-74},{120,-54}}))); diff --git a/AixLib/Obsolete/Year2022/Utilities/package.mo b/AixLib/Obsolete/Year2022/Utilities/package.mo new file mode 100644 index 0000000000..6d03932e37 --- /dev/null +++ b/AixLib/Obsolete/Year2022/Utilities/package.mo @@ -0,0 +1,23 @@ +within AixLib.Obsolete.Year2022; +package Utilities +annotation (Icon(graphics={ + Rectangle( + lineColor={200,200,200}, + fillColor={248,248,248}, + fillPattern=FillPattern.HorizontalCylinder, + extent={{-100,-100},{100,100}}, + radius=25.0), + Polygon( + origin={-0.6165,-2.142}, + rotation=45.0, + fillColor={64,64,64}, + pattern=LinePattern.None, + fillPattern=FillPattern.Solid, + points={{-15.0,93.333},{-15.0,68.333},{0.0,58.333},{15.0,68.333},{15.0,93.333},{20.0,93.333},{25.0,83.333},{25.0,58.333},{10.0,43.333},{10.0,-41.667},{25.0,-56.667},{25.0,-76.667},{10.0,-91.667},{0.0,-91.667},{0.0,-81.667},{5.0,-81.667},{15.0,-71.667},{15.0,-61.667},{5.0,-51.667},{-5.0,-51.667},{-15.0,-61.667},{-15.0,-71.667},{-5.0,-81.667},{0.0,-81.667},{0.0,-91.667},{-10.0,-91.667},{-25.0,-76.667},{-25.0,-56.667},{-10.0,-41.667},{-10.0,43.333},{-25.0,58.333},{-25.0,83.333},{-20.0,93.333}}), + Polygon( + origin={8.1018,7.218}, + rotation=-45.0, + fillColor={255,255,255}, + fillPattern=FillPattern.Solid, + points={{-15.0,87.273},{15.0,87.273},{20.0,82.273},{20.0,27.273},{10.0,17.273},{10.0,7.273},{20.0,2.273},{20.0,-2.727},{5.0,-2.727},{5.0,-77.727},{10.0,-87.727},{5.0,-112.727},{-5.0,-112.727},{-10.0,-87.727},{-5.0,-77.727},{-5.0,-2.727},{-20.0,-2.727},{-20.0,2.273},{-10.0,7.273},{-10.0,17.273},{-20.0,27.273},{-20.0,82.273}})})); +end Utilities; diff --git a/AixLib/Obsolete/Year2022/Utilities/package.order b/AixLib/Obsolete/Year2022/Utilities/package.order new file mode 100644 index 0000000000..6d0f2bb02b --- /dev/null +++ b/AixLib/Obsolete/Year2022/Utilities/package.order @@ -0,0 +1 @@ +NcDataReader diff --git a/AixLib/Obsolete/Year2022/package.mo b/AixLib/Obsolete/Year2022/package.mo new file mode 100644 index 0000000000..0e9bd8d68f --- /dev/null +++ b/AixLib/Obsolete/Year2022/package.mo @@ -0,0 +1,3 @@ +within AixLib.Obsolete; +package Year2022 +end Year2022; diff --git a/AixLib/Obsolete/Year2022/package.order b/AixLib/Obsolete/Year2022/package.order new file mode 100644 index 0000000000..66f8377bcc --- /dev/null +++ b/AixLib/Obsolete/Year2022/package.order @@ -0,0 +1,3 @@ +Utilities +Examples +ThermalZones diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/BaseClasses/EvaporatorCondenserWithCapacity.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/BaseClasses/EvaporatorCondenserWithCapacity.mo index 732c4ddefb..54c22cb7f0 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/BaseClasses/EvaporatorCondenserWithCapacity.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/BaseClasses/EvaporatorCondenserWithCapacity.mo @@ -7,16 +7,15 @@ model EvaporatorCondenserWithCapacity annotation (Dialog( descriptionLabel = true),choices(choice=true "Condenser", choice=false "Evaporator", radioButtons=true)); - parameter Modelica.SIunits.Volume V "Volume in condenser"; + parameter Modelica.Units.SI.Volume V "Volume in condenser"; parameter Boolean use_cap=true "False if capacity and heat losses are neglected" annotation (Dialog(group="Heat losses"),choices(checkBox=true)); - parameter Modelica.SIunits.HeatCapacity C "Capacity of heat exchanger" - annotation (Dialog(group="Heat losses", enable=use_cap)); - parameter Modelica.SIunits.Mass m_fluid "Mass of working fluid"; - parameter Modelica.SIunits.ThermalConductance kAOut_nominal + parameter Modelica.Units.SI.HeatCapacity C "Capacity of heat exchanger" + annotation (Dialog(group="Heat losses", enable=use_cap)); + parameter Modelica.Units.SI.Mass m_fluid "Mass of working fluid"; + parameter Modelica.Units.SI.ThermalConductance kAOut_nominal "Nominal value for thermal conductance to the ambient" - annotation (Dialog(group="Heat losses", enable= - use_cap)); + annotation (Dialog(group="Heat losses", enable=use_cap)); Modelica.Blocks.Interfaces.RealOutput kAInn "Formular for calculation of heat transfer coefficient on the inside" annotation (Dialog(group="Heat losses", enable= @@ -41,8 +40,8 @@ model EvaporatorCondenserWithCapacity rotation=270, origin={12,52}))); - Modelica.Blocks.Sources.RealExpression heatLossIns(final y=kAInn) if - use_cap + Modelica.Blocks.Sources.RealExpression heatLossIns(final y=kAInn) + if use_cap "Nominal heat loss coefficient to the inside" annotation (Placement( transformation( extent={{-15,-10},{15,10}}, diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/BaseClasses/WorkingFluid.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/BaseClasses/WorkingFluid.mo index 72355f554e..871dc9b1e6 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/BaseClasses/WorkingFluid.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/BaseClasses/WorkingFluid.mo @@ -5,8 +5,8 @@ model WorkingFluid AixLib.Obsolete.YearIndependent.FastHVAC.Media.BaseClasses.MediumSimple medium=AixLib.Obsolete.YearIndependent.FastHVAC.Media.WaterSimple() "Mediums charastics (heat capacity, density, thermal conductivity)"; - parameter Modelica.SIunits.Temperature T0 " Initial temperature"; - parameter Modelica.SIunits.Mass m_fluid "Mass of working fluid"; + parameter Modelica.Units.SI.Temperature T0 " Initial temperature"; + parameter Modelica.Units.SI.Mass m_fluid "Mass of working fluid"; AixLib.Obsolete.YearIndependent.FastHVAC.BaseClasses.EnergyBalance energyBalance annotation (Placement(transformation(extent={{-34,-30},{26,30}}))); diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Chiller/Chiller.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Chiller/Chiller.mo index 54868e5b5f..39b236e878 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Chiller/Chiller.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Chiller/Chiller.mo @@ -19,7 +19,7 @@ model Chiller "Base model of FastHVAC Chiller" parameter Boolean use_autoCalc=false "Enable automatic estimation of volumes and mass flows?" annotation(choices(checkBox=true), Dialog(descriptionLabel=true)); - parameter Modelica.SIunits.Power Q_useNominal(start=0) + parameter Modelica.Units.SI.Power Q_useNominal(start=0) "Nominal usable heat flow of the vapour compression machine (HP: Heating; Chiller: Cooling)" annotation (Dialog(enable=use_autoCalc)); replaceable model PerDataMainChi = @@ -34,21 +34,22 @@ model Chiller "Base model of FastHVAC Chiller" parameter Boolean use_refIne=true "Consider the inertia of the refrigerant cycle" annotation(choices(checkBox=true), Dialog( group="Refrigerant inertia")); - parameter Modelica.SIunits.Frequency refIneFre_constant - "Cut off frequency for inertia of refrigerant cycle" - annotation (Dialog(enable=use_refIne, group="Refrigerant inertia"),Evaluate=true); + parameter Modelica.Units.SI.Frequency refIneFre_constant + "Cut off frequency for inertia of refrigerant cycle" annotation (Dialog( + enable=use_refIne, group="Refrigerant inertia"), Evaluate=true); parameter Integer nthOrder=3 "Order of refrigerant cycle interia" annotation (Dialog(enable= use_refIne, group="Refrigerant inertia")); parameter Boolean useBusConnectorOnly = false "Set true to use bus connector for modeSet, nSet and iceFac input" annotation(choices(checkBox=true), Dialog(group="Input Connectors")); //Condenser - parameter Modelica.SIunits.MassFlowRate mFlow_conNominal + parameter Modelica.Units.SI.MassFlowRate mFlow_conNominal "Nominal mass flow rate" - annotation (Dialog(group="Parameters", tab="Condenser"),Evaluate=true); - parameter Modelica.SIunits.Volume VCon "Volume in condenser" - annotation (Evaluate=true,Dialog(group="Parameters", tab="Condenser")); - parameter Modelica.SIunits.Mass m_fluidCon = VCon_final * con.medium.rho "Mass of working fluid"; + annotation (Dialog(group="Parameters", tab="Condenser"), Evaluate=true); + parameter Modelica.Units.SI.Volume VCon "Volume in condenser" + annotation (Evaluate=true, Dialog(group="Parameters", tab="Condenser")); + parameter Modelica.Units.SI.Mass m_fluidCon=VCon_final*con.medium.rho + "Mass of working fluid"; parameter Real deltaM_con=0.1 "Fraction of nominal mass flow rate where transition to turbulent occurs" annotation (Dialog(tab="Condenser", group="Flow resistance")); @@ -56,25 +57,32 @@ model Chiller "Base model of FastHVAC Chiller" "If heat losses at capacitor side are considered or not" annotation (Dialog(group="Heat Losses", tab="Condenser"), choices(checkBox=true)); - parameter Modelica.SIunits.HeatCapacity CCon - "Heat capacity of Condenser (= cp*m)" annotation (Evaluate=true,Dialog(group="Heat Losses", - tab="Condenser", + parameter Modelica.Units.SI.HeatCapacity CCon + "Heat capacity of Condenser (= cp*m)" annotation (Evaluate=true, Dialog( + group="Heat Losses", + tab="Condenser", enable=use_ConCap)); - parameter Modelica.SIunits.ThermalConductance GCon - "Constant thermal conductance of condenser material" - annotation (Evaluate=true,Dialog(group="Heat Losses", tab="Condenser", + parameter Modelica.Units.SI.ThermalConductance GCon + "Constant thermal conductance of condenser material" annotation (Evaluate= + true, Dialog( + group="Heat Losses", + tab="Condenser", enable=use_ConCap)); - parameter Modelica.SIunits.ThermalConductance GConIns - "Constant thermal conductance of condenser material" - annotation (Evaluate=true,Dialog(group="Heat Losses", tab="Condenser", + parameter Modelica.Units.SI.ThermalConductance GConIns + "Constant thermal conductance of condenser material" annotation (Evaluate= + true, Dialog( + group="Heat Losses", + tab="Condenser", enable=use_ConCap)); //Evaporator - parameter Modelica.SIunits.MassFlowRate mFlow_evaNominal - "Nominal mass flow rate" annotation (Dialog(group="Parameters", tab="Evaporator"),Evaluate=true); - parameter Modelica.SIunits.Volume VEva "Volume in evaporator" - annotation (Evaluate=true,Dialog(group="Parameters", tab="Evaporator")); - parameter Modelica.SIunits.Mass m_fluidEva = VEva_final * eva.medium.rho "Mass of working fluid"; + parameter Modelica.Units.SI.MassFlowRate mFlow_evaNominal + "Nominal mass flow rate" + annotation (Dialog(group="Parameters", tab="Evaporator"), Evaluate=true); + parameter Modelica.Units.SI.Volume VEva "Volume in evaporator" + annotation (Evaluate=true, Dialog(group="Parameters", tab="Evaporator")); + parameter Modelica.Units.SI.Mass m_fluidEva=VEva_final*eva.medium.rho + "Mass of working fluid"; parameter Real deltaM_eva=0.1 "Fraction of nominal mass flow rate where transition to turbulent occurs" annotation (Dialog(tab="Evaporator", group="Flow resistance")); @@ -82,17 +90,22 @@ model Chiller "Base model of FastHVAC Chiller" "If heat losses at capacitor side are considered or not" annotation (Dialog(group="Heat Losses", tab="Evaporator"), choices(checkBox=true)); - parameter Modelica.SIunits.HeatCapacity CEva - "Heat capacity of Evaporator (= cp*m)" - annotation (Evaluate=true,Dialog(group="Heat Losses", tab="Evaporator", + parameter Modelica.Units.SI.HeatCapacity CEva + "Heat capacity of Evaporator (= cp*m)" annotation (Evaluate=true, Dialog( + group="Heat Losses", + tab="Evaporator", enable=use_EvaCap)); - parameter Modelica.SIunits.ThermalConductance GEva - "Constant thermal conductance of Evaporator material" - annotation (Evaluate=true,Dialog(group="Heat Losses", tab="Evaporator", + parameter Modelica.Units.SI.ThermalConductance GEva + "Constant thermal conductance of Evaporator material" annotation (Evaluate= + true, Dialog( + group="Heat Losses", + tab="Evaporator", enable=use_EvaCap)); - parameter Modelica.SIunits.ThermalConductance GEvaIns - "Constant thermal conductance of Evaporator material" - annotation (Evaluate=true,Dialog(group="Heat Losses", tab="Evaporator", + parameter Modelica.Units.SI.ThermalConductance GEvaIns + "Constant thermal conductance of Evaporator material" annotation (Evaluate= + true, Dialog( + group="Heat Losses", + tab="Evaporator", enable=use_EvaCap)); //Assumptions @@ -105,17 +118,17 @@ model Chiller "Base model of FastHVAC Chiller" parameter Boolean transferHeat=true "If true, temperature T converges towards TAmb when no flow" annotation (Dialog(tab="Assumptions", group="Temperature sensors"),choices(checkBox=true)); - parameter Modelica.SIunits.Time tauHeaTra=1200 + parameter Modelica.Units.SI.Time tauHeaTra=1200 "Time constant for heat transfer in temperature sensors, default 20 minutes" - annotation (Dialog(tab="Assumptions", group="Temperature sensors"),Evaluate=true); - parameter Modelica.SIunits.Temperature TAmbCon_nominal=291.15 - "Fixed ambient temperature for heat transfer of sensors at the condenser side" annotation ( Dialog(tab= - "Assumptions", group= - "Condenser")); + annotation (Dialog(tab="Assumptions", group="Temperature sensors"), + Evaluate=true); + parameter Modelica.Units.SI.Temperature TAmbCon_nominal=291.15 + "Fixed ambient temperature for heat transfer of sensors at the condenser side" + annotation (Dialog(tab="Assumptions", group="Condenser")); - parameter Modelica.SIunits.Temperature TAmbEva_nominal=273.15 + parameter Modelica.Units.SI.Temperature TAmbEva_nominal=273.15 "Fixed ambient temperature for heat transfer of sensors at the evaporator side" - annotation ( Dialog(tab="Assumptions",group="Evaporator")); + annotation (Dialog(tab="Assumptions", group="Evaporator")); //Initialization parameter Modelica.Blocks.Types.Init initType=Modelica.Blocks.Types.Init.InitialState "Type of initialization (InitialState and InitialOutput are identical)" @@ -219,14 +232,14 @@ model Chiller "Base model of FastHVAC Chiller" extent={{-16,-16},{16,16}}, rotation=90, origin={-76,-136}))); - Modelica.Thermal.HeatTransfer.Sources.PrescribedTemperature varTempOutEva if - use_EvaCap "Forces heat losses according to ambient temperature" + Modelica.Thermal.HeatTransfer.Sources.PrescribedTemperature varTempOutEva + if use_EvaCap "Forces heat losses according to ambient temperature" annotation (Placement(transformation( extent={{-8,-8},{8,8}}, rotation=180, origin={68,-108}))); - Modelica.Thermal.HeatTransfer.Sources.PrescribedTemperature varTempOutCon if - use_ConCap "Forces heat losses according to ambient temperature" + Modelica.Thermal.HeatTransfer.Sources.PrescribedTemperature varTempOutCon + if use_ConCap "Forces heat losses according to ambient temperature" annotation (Placement(transformation( extent={{-8,-8},{8,8}}, rotation=180, @@ -303,17 +316,31 @@ model Chiller "Base model of FastHVAC Chiller" //Automatic calculation of mass flow rates and volumes of the evaporator and condenser using linear regressions from data sheets of heat pumps and chillers (water to water) protected parameter Boolean machineType=false "=true if heat pump; =false if chiller"; - parameter Modelica.SIunits.MassFlowRate autoCalc_mFlow_min = 0.3 "Realistic mass flow minimum for simulation plausibility"; - parameter Modelica.SIunits.Volume autoCalc_Vmin = 0.003 "Realistic volume minimum for simulation plausibility"; + parameter Modelica.Units.SI.MassFlowRate autoCalc_mFlow_min=0.3 + "Realistic mass flow minimum for simulation plausibility"; + parameter Modelica.Units.SI.Volume autoCalc_Vmin=0.003 + "Realistic volume minimum for simulation plausibility"; - parameter Modelica.SIunits.MassFlowRate autoCalc_mFlow_eva = if machineType then max(0.00004*Q_useNominal - 0.3177, autoCalc_mFlow_min) else max(0.00005*Q_useNominal - 0.5662, autoCalc_mFlow_min); - parameter Modelica.SIunits.MassFlowRate autoCalc_mFlow_con = if machineType then max(0.00004*Q_useNominal - 0.6162, autoCalc_mFlow_min) else max(0.00005*Q_useNominal + 0.3161, autoCalc_mFlow_min); - parameter Modelica.SIunits.MassFlowRate mFlow_evaNominal_final=if use_autoCalc then autoCalc_mFlow_eva else mFlow_evaNominal; - parameter Modelica.SIunits.MassFlowRate mFlow_conNominal_final=if use_autoCalc then autoCalc_mFlow_con else mFlow_conNominal; - parameter Modelica.SIunits.Volume autoCalc_VEva = if machineType then max(0.0000001*Q_useNominal - 0.0075, autoCalc_Vmin) else max(0.0000001*Q_useNominal - 0.0066, autoCalc_Vmin); - parameter Modelica.SIunits.Volume autoCalc_VCon = if machineType then max(0.0000001*Q_useNominal - 0.0094, autoCalc_Vmin) else max(0.0000002*Q_useNominal - 0.0084, autoCalc_Vmin); - parameter Modelica.SIunits.Volume VEva_final=if use_autoCalc then autoCalc_VEva else VEva; - parameter Modelica.SIunits.Volume VCon_final=if use_autoCalc then autoCalc_VCon else VCon; + parameter Modelica.Units.SI.MassFlowRate autoCalc_mFlow_eva=if machineType + then max(0.00004*Q_useNominal - 0.3177, autoCalc_mFlow_min) else max( + 0.00005*Q_useNominal - 0.5662, autoCalc_mFlow_min); + parameter Modelica.Units.SI.MassFlowRate autoCalc_mFlow_con=if machineType + then max(0.00004*Q_useNominal - 0.6162, autoCalc_mFlow_min) else max( + 0.00005*Q_useNominal + 0.3161, autoCalc_mFlow_min); + parameter Modelica.Units.SI.MassFlowRate mFlow_evaNominal_final=if + use_autoCalc then autoCalc_mFlow_eva else mFlow_evaNominal; + parameter Modelica.Units.SI.MassFlowRate mFlow_conNominal_final=if + use_autoCalc then autoCalc_mFlow_con else mFlow_conNominal; + parameter Modelica.Units.SI.Volume autoCalc_VEva=if machineType then max( + 0.0000001*Q_useNominal - 0.0075, autoCalc_Vmin) else max(0.0000001* + Q_useNominal - 0.0066, autoCalc_Vmin); + parameter Modelica.Units.SI.Volume autoCalc_VCon=if machineType then max( + 0.0000001*Q_useNominal - 0.0094, autoCalc_Vmin) else max(0.0000002* + Q_useNominal - 0.0084, autoCalc_Vmin); + parameter Modelica.Units.SI.Volume VEva_final=if use_autoCalc then + autoCalc_VEva else VEva; + parameter Modelica.Units.SI.Volume VCon_final=if use_autoCalc then + autoCalc_VCon else VCon; equation //Control and feedback for the auto-calculation of condenser and evaporator data diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/HeatExchangers/BaseClasses/ML_thermal_delta.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/HeatExchangers/BaseClasses/ML_thermal_delta.mo index 05ac9d7c0c..2b8fae8554 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/HeatExchangers/BaseClasses/ML_thermal_delta.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/HeatExchangers/BaseClasses/ML_thermal_delta.mo @@ -11,48 +11,49 @@ model ML_thermal_delta "Multi layers of heat exchanger" FastHVAC.Media.WaterSimple() "Standard charastics for fluid (heat capacity, density, thermal conductivity)"; - parameter Modelica.SIunits.Mass m_radiator=20; + parameter Modelica.Units.SI.Mass m_radiator=20; parameter calcT.Temp calc_dT "Select calculation method of excess temperature"; parameter AixLib.Fluid.HeatExchangers.Radiators.BaseClasses.RadiatorTypes.RadiatorType Type "Type of radiator" annotation (choicesAllMatching=true, Dialog(tab="Geometry and Material", group="Geometry")); parameter Real n=1.3 annotation (Dialog(tab="Geometry and Material", group="Geometry")); - parameter Modelica.SIunits.Density densitySteel=densitySteel + parameter Modelica.Units.SI.Density densitySteel=densitySteel "Specific density of steel, in kg/m3" - annotation (Dialog(tab="Geometry and Material", group="Material")); + annotation (Dialog(tab="Geometry and Material", group="Material")); // parameter Modelica.SIunits.Density densityWater=densityWater // "Specific density of Water, in kg/m3"; - parameter Modelica.SIunits.SpecificHeatCapacity capacitySteel=capacitySteel + parameter Modelica.Units.SI.SpecificHeatCapacity capacitySteel=capacitySteel "Specific heat capacity of steel, in J/kgK" - annotation (Dialog(tab="Geometry and Material", group="Material")); + annotation (Dialog(tab="Geometry and Material", group="Material")); // parameter Modelica.SIunits.SpecificHeatCapacity capacityWater=capacityWater // "Specific heat capacity of Water, in J/kgK"; - parameter Modelica.SIunits.ThermalConductivity lambdaSteel=lambdaSteel + parameter Modelica.Units.SI.ThermalConductivity lambdaSteel=lambdaSteel "Thermal conductivity of steel, in W/mK" annotation (Dialog(tab="Geometry and Material", group="Material")); - parameter Modelica.SIunits.Length length=1.05 "Length of radiator, in m" + parameter Modelica.Units.SI.Length length=1.05 "Length of radiator, in m" annotation (Dialog(tab="Geometry and Material", group="Geometry")); - parameter Modelica.SIunits.Temperature T0=Modelica.SIunits.Conversions.from_degC(55) - "Initial temperature, in Kelvin" + parameter Modelica.Units.SI.Temperature T0= + Modelica.Units.Conversions.from_degC(55) "Initial temperature, in Kelvin" annotation (Dialog(group="Miscellaneous")); - parameter Modelica.SIunits.Volume vol_water=0.0001; + parameter Modelica.Units.SI.Volume vol_water=0.0001; parameter Real s_eff=Type[1]; parameter Real dotQ_nomLayer=100 "Nominal power of single layer"; - parameter Modelica.SIunits.Temperature dT_nom=50 "Nominal access temperature"; - parameter Modelica.SIunits.Temperature delta_nom=50 + parameter Modelica.Units.SI.Temperature dT_nom=50 + "Nominal access temperature"; + parameter Modelica.Units.SI.Temperature delta_nom=50 "Nominal Radiation temperature"; - parameter Modelica.SIunits.Emissivity eps=0.95 "Emissivity"; - parameter Modelica.SIunits.Area A=1 "Area of radiator layer"; - parameter Modelica.SIunits.Length d=0.025 "Thickness of radiator wall"; + parameter Modelica.Units.SI.Emissivity eps=0.95 "Emissivity"; + parameter Modelica.Units.SI.Area A=1 "Area of radiator layer"; + parameter Modelica.Units.SI.Length d=0.025 "Thickness of radiator wall"; - Modelica.SIunits.Temperature Tin; - Modelica.SIunits.Temperature Tout; - Modelica.SIunits.Temperature Trad; - Modelica.SIunits.Temperature Tair; + Modelica.Units.SI.Temperature Tin; + Modelica.Units.SI.Temperature Tout; + Modelica.Units.SI.Temperature Trad; + Modelica.Units.SI.Temperature Tair; Real dT_V; Real dT_R; diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/HeatExchangers/DHWHeatExchanger.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/HeatExchangers/DHWHeatExchanger.mo index 8bd8b2c78f..7159f933fd 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/HeatExchangers/DHWHeatExchanger.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/HeatExchangers/DHWHeatExchanger.mo @@ -17,21 +17,22 @@ protected ******************************************************************* */ public - parameter Modelica.SIunits.Area A_HE=2 "Area of the heat exchanger "; - parameter Modelica.SIunits.CoefficientOfHeatTransfer k_HE=1500 + parameter Modelica.Units.SI.Area A_HE=2 "Area of the heat exchanger "; + parameter Modelica.Units.SI.CoefficientOfHeatTransfer k_HE=1500 "Thermal transmission coefficient"; - parameter Modelica.SIunits.Temperature T_inlet_DHW=283.15 + parameter Modelica.Units.SI.Temperature T_inlet_DHW=283.15 "DHW Temperature at inlet"; - parameter Modelica.SIunits.Temperature T_set_DHW_ideal=333.15 + parameter Modelica.Units.SI.Temperature T_set_DHW_ideal=333.15 "DHW set temperature"; parameter Integer n(min=3) = 5 "Number of segments the heat exchanger is separated to"; - parameter Modelica.SIunits.Mass m_heater=10 + parameter Modelica.Units.SI.Mass m_heater=10 "How much fluid is inside the heat exchanger at the side of the heater"; - parameter Modelica.SIunits.Mass m_DHW=10 + parameter Modelica.Units.SI.Mass m_DHW=10 "How much fluid is inside the heat exchanger at the side of the DHW"; - Modelica.SIunits.HeatFlowRate dotQ; - parameter Modelica.SIunits.Temperature T0=Modelica.SIunits.Conversions.from_degC(20) + Modelica.Units.SI.HeatFlowRate dotQ; + parameter Modelica.Units.SI.Temperature T0= + Modelica.Units.Conversions.from_degC(20) "Initial temperature, in degrees Celsius"; /* ******************************************************************* diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/HeatExchangers/MultiRadiator.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/HeatExchangers/MultiRadiator.mo index 315e794ee5..dcc10812f6 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/HeatExchangers/MultiRadiator.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/HeatExchangers/MultiRadiator.mo @@ -17,9 +17,9 @@ parameter FastHVAC.Media.BaseClasses.MediumSimple medium= annotation (choicesAllMatching); protected - parameter Modelica.SIunits.SpecificHeatCapacityAtConstantPressure capacityWater=medium.c - "Heat capacity of medium"; - parameter Modelica.SIunits.Density densityWater=medium.rho + parameter Modelica.Units.SI.SpecificHeatCapacityAtConstantPressure + capacityWater=medium.c "Heat capacity of medium"; + parameter Modelica.Units.SI.Density densityWater=medium.rho "density of medium"; /* ******************************************************************* Components diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/HeatExchangers/RadiatorMultiLayer.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/HeatExchangers/RadiatorMultiLayer.mo index 63d93c8768..62a511a3f9 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/HeatExchangers/RadiatorMultiLayer.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/HeatExchangers/RadiatorMultiLayer.mo @@ -2,7 +2,8 @@ model RadiatorMultiLayer "Simple radiator multilayer model" extends AixLib.Obsolete.BaseClasses.ObsoleteModel; - import Modelica.SIunits; + import SIunits = + Modelica.Units.SI; import calcT = AixLib.Fluid.HeatExchangers.Radiators.BaseClasses.CalcExcessTemp; @@ -39,20 +40,23 @@ extends AixLib.Obsolete.BaseClasses.ObsoleteModel; parameter SIunits.Length height=(if selectable then radiatorType.height else 0.6) "Height of raditor, in m" annotation (Dialog(tab="Geometry and Material", group="Geometry", enable=not selectable)); - parameter Modelica.SIunits.Area A=2*length*height + parameter Modelica.Units.SI.Area A=2*length*height annotation (Dialog(tab="Geometry and Material", group="Material")); - parameter Modelica.SIunits.Length d=0.025 "Thickness of radiator wall" + parameter Modelica.Units.SI.Length d=0.025 "Thickness of radiator wall" annotation (Dialog(tab="Geometry and Material", group="Material")); - parameter Modelica.SIunits.Emissivity eps=0.95 "Emissivity" + parameter Modelica.Units.SI.Emissivity eps=0.95 "Emissivity" annotation (Dialog(tab="Geometry and Material", group="Material")); /* *********Water And Steel Parameters**********************************/ parameter Real volumeWater( unit="l/m")=(if selectable then radiatorType.VolumeWater else 20) "Water volume inside radiator per m, in l/m" annotation (Dialog(tab="Geometry and Material", group="Geometry", enable=not selectable)); - parameter Modelica.SIunits.LinearDensity massSteel=(if selectable then radiatorType.MassSteel else 30) - "Material mass of radiator per m, in kg/m" - annotation (Dialog(tab="Geometry and Material", group="Geometry", enable=not selectable)); + parameter Modelica.Units.SI.LinearDensity massSteel=(if selectable then + radiatorType.MassSteel else 30) + "Material mass of radiator per m, in kg/m" annotation (Dialog( + tab="Geometry and Material", + group="Geometry", + enable=not selectable)); parameter SIunits.Density densitySteel=(if selectable then radiatorType.DensitySteel else 7900) "Specific density of steel, in kg/m3" annotation (Dialog(tab="Geometry and Material", group="Material", enable=not selectable)); @@ -64,14 +68,14 @@ extends AixLib.Obsolete.BaseClasses.ObsoleteModel; parameter SIunits.ThermalConductivity lambdaSteel=(if selectable then radiatorType.LambdaSteel else 60) "Thermal conductivity of steel, in W/mK" annotation (Dialog(tab="Geometry and Material", group="Material", enable=not selectable)); - parameter SIunits.Temperature T0=Modelica.SIunits.Conversions.from_degC(20) + parameter SIunits.Temperature T0=Modelica.Units.Conversions.from_degC(20) "Initial temperature, in degrees Celsius" annotation (Dialog(group="Miscellaneous")); - parameter SIunits.Temperature RT_nom[3]= - (if selectable then Modelica.SIunits.Conversions.from_degC(radiatorType.RT_nom) - else Modelica.SIunits.Conversions.from_degC({75,65,20})) + parameter SIunits.Temperature RT_nom[3]=(if selectable then + Modelica.Units.Conversions.from_degC(radiatorType.RT_nom) else + Modelica.Units.Conversions.from_degC({75,65,20})) "Nominal temperatures (TIn, TOut, TAir) according to DIN-EN 442." - annotation (Dialog(group="Miscellaneous",enable=not selectable)); + annotation (Dialog(group="Miscellaneous", enable=not selectable)); parameter Integer N=16 "Number of discretisation layers"; parameter AixLib.Fluid.HeatExchangers.Radiators.BaseClasses.CalcExcessTemp.Temp calc_dT=calcT.exp @@ -87,7 +91,7 @@ extends AixLib.Obsolete.BaseClasses.ObsoleteModel; SIunits.Temperature TV_1; SIunits.Temperature TR_N; protected - parameter Modelica.SIunits.Temperature T0_N[N]= {(T0-ki*0.2) for ki in 1:N}; + parameter Modelica.Units.SI.Temperature T0_N[N]={(T0 - ki*0.2) for ki in 1:N}; parameter SIunits.Volume vol_water=(length*volumeWater/1000)/N; parameter SIunits.Volume vol_steel=(length*massSteel) / densitySteel /N annotation (Dialog(tab="Geometry and Material", group="Geometry")); @@ -97,9 +101,10 @@ protected parameter SIunits.Length d2=2*((vol_water+vol_steel)/Modelica.Constants.pi/length)^0.5 "outer diameter of single layer"; - parameter Modelica.SIunits.TemperatureDifference dT_V_nom=RT_nom[1]-RT_nom[3] - "Temperature difference between the nominal temperatures Tin and Tair"; - parameter Modelica.SIunits.TemperatureDifference dT_R_nom=RT_nom[2]-RT_nom[3] + parameter Modelica.Units.SI.TemperatureDifference dT_V_nom=RT_nom[1] - RT_nom[ + 3] "Temperature difference between the nominal temperatures Tin and Tair"; + parameter Modelica.Units.SI.TemperatureDifference dT_R_nom=RT_nom[2] - RT_nom[ + 3] "Temperature difference between the nominal temperatures Tout and Tair"; /* *********Calculation of convective excess temperature, according to the chosen calculation method**********************************/ @@ -278,587 +283,618 @@ equation T_source output is relevant for exergy analysis. It describes the logarithmic mean temperature is calculated from the temperatures at in- and outlet of the radiator.

                                    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                    -

                                    - Type -

                                    -
                                    -

                                    - Fraction of convective transport -

                                    -
                                    -

                                    - Fraction of radiative transport -

                                    -
                                    -

                                    - SectionalRadiator -

                                    -

                                    - Simple (vertical) sectional radiator -

                                    -
                                    -

                                    - 0.70 -

                                    -
                                    -

                                    - 0.30 -

                                    -
                                    -

                                    - PanelRadiator10 -

                                    -

                                    - 10 -- Panel radiator (single panel) without convection device -

                                    -
                                    -

                                    - 0.50 -

                                    -
                                    -

                                    - 0.50 -

                                    -
                                    -

                                    - PanelRadiator11 -

                                    -

                                    - 11 -- Panel radiator (single panel) with one convection device -

                                    -
                                    -

                                    - 0.65 -

                                    -
                                    -

                                    - 0.35 -

                                    -
                                    -

                                    - PanelRadiator12 -

                                    -

                                    - 12 -- Panel radiator (single panel) with two convection devices -

                                    -
                                    -

                                    - 0.75 -

                                    -
                                    -

                                    - 0.25 -

                                    -
                                    -

                                    - PanelRadiator20 -

                                    -

                                    - 20 -- Panel radiator (two panels) without convection device -

                                    -
                                    -

                                    - 0.65 -

                                    -
                                    -

                                    - 0.35 -

                                    -
                                    -

                                    - PanelRadiator21 -

                                    -

                                    - 21 -- Panel radiator (two panels) with one convection device -

                                    -
                                    -

                                    - 0.80 -

                                    -
                                    -

                                    - 0.20 -

                                    -
                                    -

                                    - PanelRadiator22 -

                                    -

                                    - 22 -- Panel radiator (two panels) with two convection devices -

                                    -
                                    -

                                    - 0.85 -

                                    -
                                    -

                                    - 0.15 -

                                    -
                                    -

                                    - PanelRadiator30 -

                                    -

                                    - 30 -- Panel radiator (three panels) without convection device -

                                    -
                                    -

                                    - 0.80 -

                                    -
                                    -

                                    - 0.20 -

                                    -
                                    -

                                    - PanelRadiator31 -

                                    -

                                    - 31 -- Panel radiator (three panels) with one convection device -

                                    -
                                    -

                                    - 0.85 -

                                    -
                                    -

                                    - 0.15 -

                                    -
                                    -

                                    - PanelRadiator32 -

                                    -

                                    - 32 -- Panel radiator (three panels) with two or more convection - devices -

                                    -
                                    -

                                    - 0.90 -

                                    -
                                    -

                                    - 0.10 -

                                    -
                                    -

                                    - ConvectorHeaterUncovered -

                                    -

                                    - Convector heater without cover -

                                    -
                                    -

                                    - 0.95 -

                                    -
                                    -

                                    - 0.05 -

                                    -
                                    -

                                    - ConvectorHeaterCovered -

                                    -

                                    - Convector heater with cover -

                                    -
                                    -

                                    - 1.00 -

                                    -
                                    -

                                    - - no radiative transport - -

                                    -
                                    -

                                    -
                                    - The Height H of the radiator is discretized in N single Layers, as - shown in Figure 1 -

                                    -

                                    -
                                    - \"Multilayer -

                                    -

                                    - Figure 1: Multilayer Model of radiator -

                                    -

                                    - For every layer the equation (1) is solved. -

                                    - - - - - - - - - -
                                    -

                                    -
                                    - \"Equation -

                                    -
                                    -

                                    -
                                    - (1) -

                                    -
                                    -

                                    - The total heat emission consists of a convective and a radiative - part. -

                                    - - - - - - - - - - - - - - - - - -
                                    -

                                    - \"\" -

                                    -
                                    -

                                    -
                                    - (2) -

                                    -
                                    -

                                    - \"\" -

                                    -
                                    -

                                    -
                                    - (3) -

                                    -
                                    -

                                    - \"\" -

                                    -
                                    -

                                    -
                                    - (4) -

                                    -
                                    -

                                    - The convective heat emission is proportional to \"\"  . -

                                    -

                                    - The radiative heat emission is proportional to \"\"  =(T_L + DeltaT)^4-TR^4 (T_L: Room Temperature, DeltaT: - heater excess temperature, T_R: radiative temperature). -

                                    - - - - - - - - - - - - - -
                                    -

                                    - \"\" -

                                    -
                                    -

                                    -
                                    - (5) -

                                    -
                                    -

                                    - \"\" -

                                    -
                                    -

                                    -
                                    - (6) -

                                    -
                                    -

                                    - The heat emission of the radiator depends on the heater excess - temperature. In the model it is possible to choose between: -

                                    - - - - - - - - - - - - - - - - - - - - - - - - - - +
                                    -

                                    - Method -

                                    -
                                    -

                                    - Formula -

                                    -
                                    -

                                    - arithmetic heater excess temperature -

                                    -
                                    -

                                    - \"\" -

                                    -
                                    -

                                    -
                                    - (7) -

                                    -
                                    -

                                    - logarithmic heater excess temperature -

                                    -
                                    -

                                    - \"\" -

                                    -
                                    -

                                    -
                                    - (8) -

                                    -
                                    -

                                    - exponential heater excess temperature according to [2] -

                                    -
                                    -

                                    - \"\" -

                                    -
                                    -

                                    -
                                    - (9) -

                                    -
                                    +
                                    + \"equation for multilayer\" cellspacing=\"0\" cellpadding= \"2\" + border=\"1\"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                    +

                                    + Type +

                                    +
                                    +

                                    + Fraction of convective transport +

                                    +
                                    +

                                    + Fraction of radiative transport +

                                    +
                                    +

                                    + SectionalRadiator +

                                    +

                                    + Simple (vertical) sectional radiator +

                                    +
                                    +

                                    + 0.70 +

                                    +
                                    +

                                    + 0.30 +

                                    +
                                    +

                                    + PanelRadiator10 +

                                    +

                                    + 10 -- Panel radiator (single panel) without convection + device +

                                    +
                                    +

                                    + 0.50 +

                                    +
                                    +

                                    + 0.50 +

                                    +
                                    +

                                    + PanelRadiator11 +

                                    +

                                    + 11 -- Panel radiator (single panel) with one convection + device +

                                    +
                                    +

                                    + 0.65 +

                                    +
                                    +

                                    + 0.35 +

                                    +
                                    +

                                    + PanelRadiator12 +

                                    +

                                    + 12 -- Panel radiator (single panel) with two convection + devices +

                                    +
                                    +

                                    + 0.75 +

                                    +
                                    +

                                    + 0.25 +

                                    +
                                    +

                                    + PanelRadiator20 +

                                    +

                                    + 20 -- Panel radiator (two panels) without convection device +

                                    +
                                    +

                                    + 0.65 +

                                    +
                                    +

                                    + 0.35 +

                                    +
                                    +

                                    + PanelRadiator21 +

                                    +

                                    + 21 -- Panel radiator (two panels) with one convection + device +

                                    +
                                    +

                                    + 0.80 +

                                    +
                                    +

                                    + 0.20 +

                                    +
                                    +

                                    + PanelRadiator22 +

                                    +

                                    + 22 -- Panel radiator (two panels) with two convection + devices +

                                    +
                                    +

                                    + 0.85 +

                                    +
                                    +

                                    + 0.15 +

                                    +
                                    +

                                    + PanelRadiator30 +

                                    +

                                    + 30 -- Panel radiator (three panels) without convection + device +

                                    +
                                    +

                                    + 0.80 +

                                    +
                                    +

                                    + 0.20 +

                                    +
                                    +

                                    + PanelRadiator31 +

                                    +

                                    + 31 -- Panel radiator (three panels) with one convection + device +

                                    +
                                    +

                                    + 0.85 +

                                    +
                                    +

                                    + 0.15 +

                                    +
                                    +

                                    + PanelRadiator32 +

                                    +

                                    + 32 -- Panel radiator (three panels) with two or more + convection devices +

                                    +
                                    +

                                    + 0.90 +

                                    +
                                    +

                                    + 0.10 +

                                    +
                                    +

                                    + ConvectorHeaterUncovered +

                                    +

                                    + Convector heater without cover +

                                    +
                                    +

                                    + 0.95 +

                                    +
                                    +

                                    + 0.05 +

                                    +
                                    +

                                    + ConvectorHeaterCovered +

                                    +

                                    + Convector heater with cover +

                                    +
                                    +

                                    + 1.00 +

                                    +
                                    +

                                    + - no radiative transport - +

                                    +
                                    +

                                    +
                                    + The Height H of the radiator is discretized in N single Layers, + as shown in Figure 1 +

                                    +

                                    +
                                    + \"Multilayer +

                                    +

                                    + Figure 1: Multilayer Model of radiator +

                                    +

                                    + For every layer the equation (1) is solved. +

                                    + + + + + + + + + + +
                                    + \"\" cellspacing=\"0\" cellpadding=\"2\" border=\"1\ +
                                    +

                                    +
                                    + \"Equation +

                                    +
                                    +

                                    +
                                    + (1) +

                                    +
                                    +

                                    + The total heat emission consists of a convective and a radiative + part. +

                                    + + + + + + + + + + + + + + + + + + +
                                    + \"\" cellspacing=\"0\" cellpadding=\"2\" border=\"1\ +
                                    +

                                    + \"\" +

                                    +
                                    +

                                    +
                                    + (2) +

                                    +
                                    +

                                    + \"\" +

                                    +
                                    +

                                    +
                                    + (3) +

                                    +
                                    +

                                    + \"\" +

                                    +
                                    +

                                    +
                                    + (4) +

                                    +
                                    +

                                    + The convective heat emission is proportional to \"\"  . +

                                    +

                                    + The radiative heat emission is proportional to \"\"  =(T_L + DeltaT)^4-TR^4 (T_L: Room Temperature, + DeltaT: heater excess temperature, T_R: radiative temperature). +

                                    + + + + + + + + + + + + + + +
                                    + \"\" cellspacing=\"0\" cellpadding=\"2\" border=\"1\ +
                                    +

                                    + \"\" +

                                    +
                                    +

                                    +
                                    + (5) +

                                    +
                                    +

                                    + \"\" +

                                    +
                                    +

                                    +
                                    + (6) +

                                    +
                                    +

                                    + The heat emission of the radiator depends on the heater excess + temperature. In the model it is possible to choose between: +

                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                    + \"\" cellspacing=\"0\" cellpadding=\"2\" border=\"1\ +
                                    +

                                    + Method +

                                    +
                                    +

                                    + Formula +

                                    +
                                    +

                                    + arithmetic heater excess temperature +

                                    +
                                    +

                                    + \"\" +

                                    +
                                    +

                                    +
                                    + (7) +

                                    +
                                    +

                                    + logarithmic heater excess temperature +

                                    +
                                    +

                                    + \"\" +

                                    +
                                    +

                                    +
                                    + (8) +

                                    +
                                    +

                                    + exponential heater excess temperature according to [2] +

                                    +
                                    +

                                    + \"\" +

                                    +
                                    +

                                    +
                                    + (9) +

                                    +
                                    +

                                    + Due to stability reasons and accuracy at small heating medium + flow, an exponential calculation of the heater excess temperture + is recommended. The function \"calcHeaterExcessTemp \" regularize + the discontinuities in equation (9). +

                                    +

                                    + The radiator exponent according to DIN 442 is valid for the total + heat emission. the radiative heat emission part grows larger. + This is considered by the following formulas: +

                                    + + + + + + + + + + + + + + +
                                    + \"\" cellspacing=\"0\" cellpadding=\"2\" border=\"1\ +
                                    +

                                    + \"\" +

                                    +
                                    +

                                    +
                                    + (10) +

                                    +
                                    +

                                    + \"\" +

                                    +
                                    +

                                    +
                                    + (11) +

                                    +
                                    +

                                    + The modified convective exponent is calculated by (11). The + region of discontinuity in eq. (11) has not yet been regulized, + so a constant radiator exponent is used for now. +

                                    +

                                    + In the model the heat emission is calculated according to eq. + (5), (6) for every layer and the respective power is connected to + the romm via the thermal ports. A varHeatSource (inPort=total + heat emission) is connected via a thermal port to the enthalpie + flow of the heating medium and the stored heat in the radiator + mass. +

                                    + + + + + +
                                    + \"\" cellspacing=\"0\" cellpadding=\"2\" border=\"1\ +
                                    +

                                    + References +

                                    +

                                    + Knowing the heat load of the room, an appropriate radiator can be + choosen out of a Radiator DataBase via a record. But it is also + possible to simulate with arbitrary parameters. +

                                    +

                                    + The thermal part of the model is adapted from [3] and [1]. +

                                    +
                                      +
                                    • [1] Glück, Bernd: Wärmeübertragung - Wärmeabgabe von + Raumheizflächen und Rohren, 1990 +
                                    • +
                                    • [2] Nadler,Norbert: Die Wärmeleistung von Raumheizkörpern in + expliziter Darstellung, In: HLH Lüftung/Klima - Heizung/Sanitär - + Gebäudetechnik 11, S.621 - 624, 1991 +
                                    • +
                                    • [3] Tritschler, Markus: Bewertung der Genauigkeit von + Heizkostenverteilern, Dissertation, Uni Stuttart, 1999 +
                                    • +
                                    +

                                    + Example Results +

                                    +

                                    + + ValidationRadiator +

                                    +
                                    -

                                    - Due to stability reasons and accuracy at small heating medium flow, - an exponential calculation of the heater excess temperture is - recommended. The function \"calcHeaterExcessTemp \" regularize the - discontinuities in equation (9). -

                                    -

                                    - The radiator exponent according to DIN 442 is valid for the total - heat emission. the radiative heat emission part grows larger. This is - considered by the following formulas: -

                                    - - - - - - - - - - - - - -
                                    -

                                    - \"\" -

                                    -
                                    -

                                    -
                                    - (10) -

                                    -
                                    -

                                    - \"\" -

                                    -
                                    -

                                    -
                                    - (11) -

                                    -
                                    -

                                    - The modified convective exponent is calculated by (11). The region of - discontinuity in eq. (11) has not yet been regulized, so a constant - radiator exponent is used for now. -

                                    -

                                    - In the model the heat emission is calculated according to eq. (5), - (6) for every layer and the respective power is connected to the romm - via the thermal ports. A varHeatSource (inPort=total heat emission) - is connected via a thermal port to the enthalpie flow of the heating - medium and the stored heat in the radiator mass. -

                                    - - - - -
                                    -

                                    - References -

                                    -

                                    - Knowing the heat load of the room, an appropriate radiator can be - choosen out of a Radiator DataBase via a record. But it is also - possible to simulate with arbitrary parameters. -

                                    -

                                    - The thermal part of the model is adapted from [3] and [1]. -

                                    -
                                      -
                                    • [1] Glück, Bernd: Wärmeübertragung - Wärmeabgabe von - Raumheizflächen und Rohren, 1990 -
                                    • -
                                    • [2] Nadler,Norbert: Die Wärmeleistung von Raumheizkörpern in - expliziter Darstellung, In: HLH Lüftung/Klima - Heizung/Sanitär - - Gebäudetechnik 11, S.621 - 624, 1991 -
                                    • -
                                    • [3] Tritschler, Markus: Bewertung der Genauigkeit von - Heizkostenverteilern, Dissertation, Uni Stuttart, 1999 -
                                    • -
                                    -

                                    - Example Results -

                                    -

                                    - - ValidationRadiator -

                                    ", revisions="
                                    • diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/HeatGenerators/Boiler/Boiler.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/HeatGenerators/Boiler/Boiler.mo index 2e8727b6aa..b018b4ac05 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/HeatGenerators/Boiler/Boiler.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/HeatGenerators/Boiler/Boiler.mo @@ -17,10 +17,10 @@ model Boiler "Simple boiler model" "Parameters for Boiler" annotation (Dialog(tab="General", group= "Boiler type"), choicesAllMatching=true); - parameter Modelica.SIunits.Temperature T_start= - Modelica.SIunits.Conversions.from_degC(50) - "Initial temperature of heat source" annotation (Evaluate=true, - Dialog(tab="General", group="Simulation")); + parameter Modelica.Units.SI.Temperature T_start= + Modelica.Units.Conversions.from_degC(50) + "Initial temperature of heat source" + annotation (Evaluate=true, Dialog(tab="General", group="Simulation")); /* ******************************************************************* Components @@ -32,7 +32,7 @@ model Boiler "Simple boiler model" rotation=180, origin={-3.25,-30}))); - Modelica.Blocks.Tables.CombiTable1D tableEfficiency( + Modelica.Blocks.Tables.CombiTable1Dv tableEfficiency( tableOnFile=false, table=paramBoiler.eta, columns={2}, diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/HeatGenerators/CHP/CHP_PT1.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/HeatGenerators/CHP/CHP_PT1.mo index 26e36eca66..9eb42a5837 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/HeatGenerators/CHP/CHP_PT1.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/HeatGenerators/CHP/CHP_PT1.mo @@ -14,12 +14,12 @@ extends AixLib.Obsolete.BaseClasses.ObsoleteModel; choicesAllMatching=true, group="Unit properties"); - parameter Modelica.SIunits.Efficiency eta_el= 0.25 + parameter Modelica.Units.SI.Efficiency eta_el=0.25 "CHP's electrical efficiency " - annotation (Dialog(group = "Unit properties",enable=not selectable)); - parameter Modelica.SIunits.Efficiency eta_th = 0.65 + annotation (Dialog(group="Unit properties", enable=not selectable)); + parameter Modelica.Units.SI.Efficiency eta_th=0.65 "CHP's thermal efficiency " - annotation (Dialog(group = "Unit properties",enable=not selectable)); + annotation (Dialog(group="Unit properties", enable=not selectable)); parameter FastHVAC.Media.BaseClasses.MediumSimple medium= FastHVAC.Media.WaterSimple() @@ -27,23 +27,23 @@ extends AixLib.Obsolete.BaseClasses.ObsoleteModel; annotation (choicesAllMatching); constant Real LHV(unit="J/kg")=47300000 "Lower heating value [J/kg]"; protected - parameter Modelica.SIunits.Volume V_water = 3e-3 - "Water volume inside the CHP"; + parameter Modelica.Units.SI.Volume V_water=3e-3 "Water volume inside the CHP"; public - parameter Modelica.SIunits.Temperature T0=Modelica.SIunits.Conversions.from_degC(20) - "Initial temperature "; - parameter Modelica.SIunits.Power capP_el=1000 "CHPs electrical capacity" annotation (Dialog(group = "Unit properties",enable=not selectable)); + parameter Modelica.Units.SI.Temperature T0= + Modelica.Units.Conversions.from_degC(20) "Initial temperature "; + parameter Modelica.Units.SI.Power capP_el=1000 "CHPs electrical capacity" + annotation (Dialog(group="Unit properties", enable=not selectable)); /* ******************************************************************* Variables ******************************************************************* */ - Modelica.SIunits.Efficiency eff_tot "Total efficiency "; - Modelica.SIunits.HeatFlowRate Q_th "Thermal power"; - Modelica.SIunits.MassFlowRate dotm_fuel "Fuel mass flow rate "; - Modelica.SIunits.HeatFlowRate dotE_fuel "Fuel energy consumption "; - Modelica.SIunits.Efficiency eff_el "CHP's electrical efficiency "; - Modelica.SIunits.Efficiency eff_th "CHP's thermal efficiency "; - Modelica.SIunits.Power P_el "Capacity "; + Modelica.Units.SI.Efficiency eff_tot "Total efficiency "; + Modelica.Units.SI.HeatFlowRate Q_th "Thermal power"; + Modelica.Units.SI.MassFlowRate dotm_fuel "Fuel mass flow rate "; + Modelica.Units.SI.HeatFlowRate dotE_fuel "Fuel energy consumption "; + Modelica.Units.SI.Efficiency eff_el "CHP's electrical efficiency "; + Modelica.Units.SI.Efficiency eff_th "CHP's thermal efficiency "; + Modelica.Units.SI.Power P_el "Capacity "; Real sigma( start=0.4) "Nominal power to heat ratio"; /* ******************************************************************* @@ -83,7 +83,7 @@ public FastHVAC.Interfaces.EnthalpyPort_a enthalpyPort_a annotation ( Placement(transformation(extent={{-110,-10},{-90,10}}))); - Modelica.Blocks.Interfaces.RealOutput Energy[3](unit="J") + Modelica.Blocks.Interfaces.RealOutput Energy[3](each unit="J") "1=W_el 2=Q_th 3=E_fuel" annotation (Placement(transformation(extent={{92,8},{132,48}}), iconTransformation( @@ -92,7 +92,7 @@ public origin={102,-48}))); Modelica.Blocks.Continuous.Integrator integrator[3] annotation (Placement(transformation(extent={{54,16},{74,36}}))); - Modelica.Blocks.Interfaces.RealOutput Capacity[3](unit="W") + Modelica.Blocks.Interfaces.RealOutput Capacity[3](each unit="W") "1=P_el 2=dotQ_th 3=dotE_fuel" annotation (Placement(transformation( extent={{92,40},{132,80}}), iconTransformation( extent={{-10,-10},{10,10}}, @@ -134,8 +134,14 @@ equation Q_th = firstOrderQ_th.y; if onOff and selectable then - eff_el = param.a_0 + param.a_1*(P_el/1000)^2 + param.a_2*(P_el/1000) + param.a_3*massFlowRate.dotm^2 + param.a_4*massFlowRate.dotm + param.a_5* Modelica.SIunits.Conversions.to_degC(T_return.T)^2 + param.a_6*Modelica.SIunits.Conversions.to_degC(T_return.T); - eff_th = param.b_0 + param.b_1*(P_el/1000)^2 + param.b_2*(P_el/1000) + param.b_3*massFlowRate.dotm^2 + param.b_4*massFlowRate.dotm + param.b_5* Modelica.SIunits.Conversions.to_degC(T_return.T)^2 + param.b_6*Modelica.SIunits.Conversions.to_degC(T_return.T); + eff_el =param.a_0 + param.a_1*(P_el/1000)^2 + param.a_2*(P_el/1000) + + param.a_3*massFlowRate.dotm^2 + param.a_4*massFlowRate.dotm + param.a_5* + Modelica.Units.Conversions.to_degC(T_return.T)^2 + param.a_6* + Modelica.Units.Conversions.to_degC(T_return.T); + eff_th =param.b_0 + param.b_1*(P_el/1000)^2 + param.b_2*(P_el/1000) + + param.b_3*massFlowRate.dotm^2 + param.b_4*massFlowRate.dotm + param.b_5* + Modelica.Units.Conversions.to_degC(T_return.T)^2 + param.b_6* + Modelica.Units.Conversions.to_degC(T_return.T); firstOrderQ_th.u = param.P_elRated*P_elRel / sigma; firstOrderP_el.u=param.P_elRated*P_elRel; sigma=eff_el/eff_th; diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/HeatGenerators/HeatPump/HeatPump.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/HeatGenerators/HeatPump/HeatPump.mo index e9a3647ca0..25ceeb0a0c 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/HeatGenerators/HeatPump/HeatPump.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/HeatGenerators/HeatPump/HeatPump.mo @@ -21,7 +21,7 @@ model HeatPump "Base model of FastHVAC Heat Pump" parameter Boolean use_autoCalc=false "Enable automatic estimation of volumes and mass flows?" annotation(choices(checkBox=true), Dialog(descriptionLabel=true)); - parameter Modelica.SIunits.Power Q_useNominal(start=0) + parameter Modelica.Units.SI.Power Q_useNominal(start=0) "Nominal usable heat flow of the vapour compression machine (HP: Heating; Chiller: Cooling)" annotation (Dialog(enable=use_autoCalc)); replaceable model PerDataHea = @@ -36,21 +36,22 @@ model HeatPump "Base model of FastHVAC Heat Pump" parameter Boolean use_refIne=true "Consider the inertia of the refrigerant cycle" annotation(choices(checkBox=true), Dialog( group="Refrigerant inertia")); - parameter Modelica.SIunits.Frequency refIneFre_constant - "Cut off frequency for inertia of refrigerant cycle" - annotation (Dialog(enable=use_refIne, group="Refrigerant inertia"),Evaluate=true); + parameter Modelica.Units.SI.Frequency refIneFre_constant + "Cut off frequency for inertia of refrigerant cycle" annotation (Dialog( + enable=use_refIne, group="Refrigerant inertia"), Evaluate=true); parameter Integer nthOrder=3 "Order of refrigerant cycle interia" annotation (Dialog(enable= use_refIne, group="Refrigerant inertia")); parameter Boolean useBusConnectorOnly = false "Set true to use bus connector for modeSet, nSet and iceFac input" annotation(choices(checkBox=true), Dialog(group="Input Connectors")); //Condenser - parameter Modelica.SIunits.MassFlowRate mFlow_conNominal + parameter Modelica.Units.SI.MassFlowRate mFlow_conNominal "Nominal mass flow rate" - annotation (Dialog(group="Parameters", tab="Condenser"),Evaluate=true); - parameter Modelica.SIunits.Volume VCon "Volume in condenser" - annotation (Evaluate=true,Dialog(group="Parameters", tab="Condenser")); - parameter Modelica.SIunits.Mass m_fluidCon = VCon_final * con.medium.rho "Mass of working fluid"; + annotation (Dialog(group="Parameters", tab="Condenser"), Evaluate=true); + parameter Modelica.Units.SI.Volume VCon "Volume in condenser" + annotation (Evaluate=true, Dialog(group="Parameters", tab="Condenser")); + parameter Modelica.Units.SI.Mass m_fluidCon=VCon_final*con.medium.rho + "Mass of working fluid"; parameter Real deltaM_con=0.1 "Fraction of nominal mass flow rate where transition to turbulent occurs" annotation (Dialog(tab="Condenser", group="Flow resistance")); @@ -58,25 +59,32 @@ model HeatPump "Base model of FastHVAC Heat Pump" "If heat losses at capacitor side are considered or not" annotation (Dialog(group="Heat Losses", tab="Condenser"), choices(checkBox=true)); - parameter Modelica.SIunits.HeatCapacity CCon - "Heat capacity of Condenser (= cp*m)" annotation (Evaluate=true,Dialog(group="Heat Losses", - tab="Condenser", + parameter Modelica.Units.SI.HeatCapacity CCon + "Heat capacity of Condenser (= cp*m)" annotation (Evaluate=true, Dialog( + group="Heat Losses", + tab="Condenser", enable=use_ConCap)); - parameter Modelica.SIunits.ThermalConductance GCon - "Constant thermal conductance of condenser material" - annotation (Evaluate=true,Dialog(group="Heat Losses", tab="Condenser", + parameter Modelica.Units.SI.ThermalConductance GCon + "Constant thermal conductance of condenser material" annotation (Evaluate= + true, Dialog( + group="Heat Losses", + tab="Condenser", enable=use_ConCap)); - parameter Modelica.SIunits.ThermalConductance GConIns - "Constant thermal conductance of condenser material" - annotation (Evaluate=true,Dialog(group="Heat Losses", tab="Condenser", + parameter Modelica.Units.SI.ThermalConductance GConIns + "Constant thermal conductance of condenser material" annotation (Evaluate= + true, Dialog( + group="Heat Losses", + tab="Condenser", enable=use_ConCap)); //Evaporator - parameter Modelica.SIunits.MassFlowRate mFlow_evaNominal - "Nominal mass flow rate" annotation (Dialog(group="Parameters", tab="Evaporator"),Evaluate=true); - parameter Modelica.SIunits.Volume VEva "Volume in evaporator" - annotation (Evaluate=true,Dialog(group="Parameters", tab="Evaporator")); - parameter Modelica.SIunits.Mass m_fluidEva = VEva_final * eva.medium.rho "Mass of working fluid"; + parameter Modelica.Units.SI.MassFlowRate mFlow_evaNominal + "Nominal mass flow rate" + annotation (Dialog(group="Parameters", tab="Evaporator"), Evaluate=true); + parameter Modelica.Units.SI.Volume VEva "Volume in evaporator" + annotation (Evaluate=true, Dialog(group="Parameters", tab="Evaporator")); + parameter Modelica.Units.SI.Mass m_fluidEva=VEva_final*eva.medium.rho + "Mass of working fluid"; parameter Real deltaM_eva=0.1 "Fraction of nominal mass flow rate where transition to turbulent occurs" annotation (Dialog(tab="Evaporator", group="Flow resistance")); @@ -84,17 +92,22 @@ model HeatPump "Base model of FastHVAC Heat Pump" "If heat losses at capacitor side are considered or not" annotation (Dialog(group="Heat Losses", tab="Evaporator"), choices(checkBox=true)); - parameter Modelica.SIunits.HeatCapacity CEva - "Heat capacity of Evaporator (= cp*m)" - annotation (Evaluate=true,Dialog(group="Heat Losses", tab="Evaporator", + parameter Modelica.Units.SI.HeatCapacity CEva + "Heat capacity of Evaporator (= cp*m)" annotation (Evaluate=true, Dialog( + group="Heat Losses", + tab="Evaporator", enable=use_EvaCap)); - parameter Modelica.SIunits.ThermalConductance GEva - "Constant thermal conductance of Evaporator material" - annotation (Evaluate=true,Dialog(group="Heat Losses", tab="Evaporator", + parameter Modelica.Units.SI.ThermalConductance GEva + "Constant thermal conductance of Evaporator material" annotation (Evaluate= + true, Dialog( + group="Heat Losses", + tab="Evaporator", enable=use_EvaCap)); - parameter Modelica.SIunits.ThermalConductance GEvaIns - "Constant thermal conductance of Evaporator material" - annotation (Evaluate=true,Dialog(group="Heat Losses", tab="Evaporator", + parameter Modelica.Units.SI.ThermalConductance GEvaIns + "Constant thermal conductance of Evaporator material" annotation (Evaluate= + true, Dialog( + group="Heat Losses", + tab="Evaporator", enable=use_EvaCap)); //Assumptions @@ -107,17 +120,17 @@ model HeatPump "Base model of FastHVAC Heat Pump" parameter Boolean transferHeat=true "If true, temperature T converges towards TAmb when no flow" annotation (Dialog(tab="Assumptions", group="Temperature sensors"),choices(checkBox=true)); - parameter Modelica.SIunits.Time tauHeaTra=1200 + parameter Modelica.Units.SI.Time tauHeaTra=1200 "Time constant for heat transfer in temperature sensors, default 20 minutes" - annotation (Dialog(tab="Assumptions", group="Temperature sensors"),Evaluate=true); - parameter Modelica.SIunits.Temperature TAmbCon_nominal=291.15 - "Fixed ambient temperature for heat transfer of sensors at the condenser side" annotation ( Dialog(tab= - "Assumptions", group= - "Condenser")); + annotation (Dialog(tab="Assumptions", group="Temperature sensors"), + Evaluate=true); + parameter Modelica.Units.SI.Temperature TAmbCon_nominal=291.15 + "Fixed ambient temperature for heat transfer of sensors at the condenser side" + annotation (Dialog(tab="Assumptions", group="Condenser")); - parameter Modelica.SIunits.Temperature TAmbEva_nominal=273.15 + parameter Modelica.Units.SI.Temperature TAmbEva_nominal=273.15 "Fixed ambient temperature for heat transfer of sensors at the evaporator side" - annotation ( Dialog(tab="Assumptions",group="Evaporator")); + annotation (Dialog(tab="Assumptions", group="Evaporator")); //Initialization parameter Modelica.Blocks.Types.Init initType=Modelica.Blocks.Types.Init.InitialState "Type of initialization (InitialState and InitialOutput are identical)" @@ -218,14 +231,14 @@ model HeatPump "Base model of FastHVAC Heat Pump" extent={{-16,-16},{16,16}}, rotation=90, origin={-76,-136}))); - Modelica.Thermal.HeatTransfer.Sources.PrescribedTemperature varTempOutEva if - use_EvaCap "Forces heat losses according to ambient temperature" + Modelica.Thermal.HeatTransfer.Sources.PrescribedTemperature varTempOutEva + if use_EvaCap "Forces heat losses according to ambient temperature" annotation (Placement(transformation( extent={{-8,-8},{8,8}}, rotation=180, origin={68,-108}))); - Modelica.Thermal.HeatTransfer.Sources.PrescribedTemperature varTempOutCon if - use_ConCap "Forces heat losses according to ambient temperature" + Modelica.Thermal.HeatTransfer.Sources.PrescribedTemperature varTempOutCon + if use_ConCap "Forces heat losses according to ambient temperature" annotation (Placement(transformation( extent={{-8,-8},{8,8}}, rotation=180, @@ -305,17 +318,31 @@ model HeatPump "Base model of FastHVAC Heat Pump" //Automatic calculation of mass flow rates and volumes of the evaporator and condenser using linear regressions from data sheets of heat pumps and chillers (water to water) protected parameter Boolean machineType=true "=true if heat pump; =false if chiller"; - parameter Modelica.SIunits.MassFlowRate autoCalc_mFlow_min = 0.3 "Realistic mass flow minimum for simulation plausibility"; - parameter Modelica.SIunits.Volume autoCalc_Vmin = 0.003 "Realistic volume minimum for simulation plausibility"; + parameter Modelica.Units.SI.MassFlowRate autoCalc_mFlow_min=0.3 + "Realistic mass flow minimum for simulation plausibility"; + parameter Modelica.Units.SI.Volume autoCalc_Vmin=0.003 + "Realistic volume minimum for simulation plausibility"; - parameter Modelica.SIunits.MassFlowRate autoCalc_mFlow_eva = if machineType then max(0.00004*Q_useNominal - 0.3177, autoCalc_mFlow_min) else max(0.00005*Q_useNominal - 0.5662, autoCalc_mFlow_min); - parameter Modelica.SIunits.MassFlowRate autoCalc_mFlow_con = if machineType then max(0.00004*Q_useNominal - 0.6162, autoCalc_mFlow_min) else max(0.00005*Q_useNominal + 0.3161, autoCalc_mFlow_min); - parameter Modelica.SIunits.MassFlowRate mFlow_evaNominal_final=if use_autoCalc then autoCalc_mFlow_eva else mFlow_evaNominal; - parameter Modelica.SIunits.MassFlowRate mFlow_conNominal_final=if use_autoCalc then autoCalc_mFlow_con else mFlow_conNominal; - parameter Modelica.SIunits.Volume autoCalc_VEva = if machineType then max(0.0000001*Q_useNominal - 0.0075, autoCalc_Vmin) else max(0.0000001*Q_useNominal - 0.0066, autoCalc_Vmin); - parameter Modelica.SIunits.Volume autoCalc_VCon = if machineType then max(0.0000001*Q_useNominal - 0.0094, autoCalc_Vmin) else max(0.0000002*Q_useNominal - 0.0084, autoCalc_Vmin); - parameter Modelica.SIunits.Volume VEva_final=if use_autoCalc then autoCalc_VEva else VEva; - parameter Modelica.SIunits.Volume VCon_final=if use_autoCalc then autoCalc_VCon else VCon; + parameter Modelica.Units.SI.MassFlowRate autoCalc_mFlow_eva=if machineType + then max(0.00004*Q_useNominal - 0.3177, autoCalc_mFlow_min) else max( + 0.00005*Q_useNominal - 0.5662, autoCalc_mFlow_min); + parameter Modelica.Units.SI.MassFlowRate autoCalc_mFlow_con=if machineType + then max(0.00004*Q_useNominal - 0.6162, autoCalc_mFlow_min) else max( + 0.00005*Q_useNominal + 0.3161, autoCalc_mFlow_min); + parameter Modelica.Units.SI.MassFlowRate mFlow_evaNominal_final=if + use_autoCalc then autoCalc_mFlow_eva else mFlow_evaNominal; + parameter Modelica.Units.SI.MassFlowRate mFlow_conNominal_final=if + use_autoCalc then autoCalc_mFlow_con else mFlow_conNominal; + parameter Modelica.Units.SI.Volume autoCalc_VEva=if machineType then max( + 0.0000001*Q_useNominal - 0.0075, autoCalc_Vmin) else max(0.0000001* + Q_useNominal - 0.0066, autoCalc_Vmin); + parameter Modelica.Units.SI.Volume autoCalc_VCon=if machineType then max( + 0.0000001*Q_useNominal - 0.0094, autoCalc_Vmin) else max(0.0000002* + Q_useNominal - 0.0084, autoCalc_Vmin); + parameter Modelica.Units.SI.Volume VEva_final=if use_autoCalc then + autoCalc_VEva else VEva; + parameter Modelica.Units.SI.Volume VCon_final=if use_autoCalc then + autoCalc_VCon else VCon; equation //Control and feedback for the auto-calculation of condenser and evaporator data diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Pipes/BaseClasses/PipeBase.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Pipes/BaseClasses/PipeBase.mo index d7ec799edb..226d4a097f 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Pipes/BaseClasses/PipeBase.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Pipes/BaseClasses/PipeBase.mo @@ -8,13 +8,15 @@ model PipeBase FastHVAC.Media.WaterSimple() "Mediums charastics (heat capacity, density, thermal conductivity)" annotation (choicesAllMatching); - parameter Modelica.SIunits.CoefficientOfHeatTransfer hConIn_const=30 "Fix value for heat transfer coeffiecient inside pipe" annotation(Dialog(enable=not - calcHCon)); + parameter Modelica.Units.SI.CoefficientOfHeatTransfer hConIn_const=30 + "Fix value for heat transfer coeffiecient inside pipe" + annotation (Dialog(enable=not calcHCon)); parameter Boolean calcHCon=true "Use calculated value for inside heat coefficient"; - final parameter Modelica.SIunits.Volume V_fluid=nParallel*Modelica.Constants.pi* length*parameterPipe.d_i*parameterPipe.d_i/4; + final parameter Modelica.Units.SI.Volume V_fluid=nParallel*Modelica.Constants.pi + *length*parameterPipe.d_i*parameterPipe.d_i/4; - parameter Modelica.SIunits.Temperature T_0=Modelica.SIunits.Conversions.from_degC(20) - "Initial temperature of fluid"; + parameter Modelica.Units.SI.Temperature T_0= + Modelica.Units.Conversions.from_degC(20) "Initial temperature of fluid"; /* ******************************************************************* Pipe Parameters @@ -22,8 +24,8 @@ model PipeBase parameter Integer nParallel(min=1)=1 "Number of identical parallel pipes" annotation(Dialog(group="Geometry")); - parameter Modelica.SIunits.Length length "Length of pipe" - annotation(Dialog(group = "Geometry")); + parameter Modelica.Units.SI.Length length "Length of pipe" + annotation (Dialog(group="Geometry")); parameter AixLib.DataBase.Pipes.PipeBaseDataDefinition parameterPipe= AixLib.DataBase.Pipes.Copper.Copper_6x1() "Type of pipe" diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Pipes/DynamicPipe.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Pipes/DynamicPipe.mo index 931cb0afff..f183054d60 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Pipes/DynamicPipe.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Pipes/DynamicPipe.mo @@ -12,21 +12,24 @@ model DynamicPipe "DynamicPipe with heat loss to ambient" annotation (choicesAllMatching); protected - parameter Modelica.SIunits.Volume V_fluid = Modelica.Constants.pi*length*nParallel*innerDiameter*innerDiameter/4; - parameter Modelica.SIunits.Diameter innerDiameter = (if selectable then parameterPipe.d_i else diameter) - "Inner diameter of pipe"; - parameter Modelica.SIunits.Diameter outerDiameter = (if selectable then parameterPipe.d_o else innerDiameter+2*s_pipeWall) + parameter Modelica.Units.SI.Volume V_fluid=Modelica.Constants.pi*length* + nParallel*innerDiameter*innerDiameter/4; + parameter Modelica.Units.SI.Diameter innerDiameter=(if selectable then + parameterPipe.d_i else diameter) "Inner diameter of pipe"; + parameter Modelica.Units.SI.Diameter outerDiameter=(if selectable then + parameterPipe.d_o else innerDiameter + 2*s_pipeWall) "Outer diameter of pipe"; - parameter Modelica.SIunits.Density d = (if selectable then parameterPipe.d else rho_pipeWall) - "Density of pipe material"; - parameter Modelica.SIunits.SpecificHeatCapacity c = (if selectable then parameterPipe.c else c_pipeWall) - "Heat capacity of pipe material"; - parameter Modelica.SIunits.ThermalConductivity lambda = (if selectable then parameterPipe.lambda else lambda_pipeWall) + parameter Modelica.Units.SI.Density d=(if selectable then parameterPipe.d + else rho_pipeWall) "Density of pipe material"; + parameter Modelica.Units.SI.SpecificHeatCapacity c=(if selectable then + parameterPipe.c else c_pipeWall) "Heat capacity of pipe material"; + parameter Modelica.Units.SI.ThermalConductivity lambda=(if selectable then + parameterPipe.lambda else lambda_pipeWall) "Thermal Conductivity of pipe material"; public - parameter Modelica.SIunits.Temperature T_0=Modelica.SIunits.Conversions.from_degC(20) - "Initial temperature of fluid"; + parameter Modelica.Units.SI.Temperature T_0= + Modelica.Units.Conversions.from_degC(20) "Initial temperature of fluid"; /* ******************************************************************* Pipe Parameters @@ -36,23 +39,23 @@ public parameter Integer nParallel(min=1)=1 "Number of identical parallel pipes" annotation(Dialog(group = "Geometry")); - parameter Modelica.SIunits.Length length=1 "Length of pipe" - annotation(Dialog(group = "Geometry")); - parameter Modelica.SIunits.Diameter diameter= 0.01 + parameter Modelica.Units.SI.Length length=1 "Length of pipe" + annotation (Dialog(group="Geometry")); + parameter Modelica.Units.SI.Diameter diameter=0.01 "Inner diameter of pipe (if selectable=false)" - annotation (Dialog(group = "Geometry",enable=not selectable)); - parameter Modelica.SIunits.Density rho_pipeWall= 8900 + annotation (Dialog(group="Geometry", enable=not selectable)); + parameter Modelica.Units.SI.Density rho_pipeWall=8900 "Density of pipe material (if selectable=false)" - annotation (Dialog(group = "Pipe material",enable=not selectable)); - parameter Modelica.SIunits.Thickness s_pipeWall = 0.001 + annotation (Dialog(group="Pipe material", enable=not selectable)); + parameter Modelica.Units.SI.Thickness s_pipeWall=0.001 "Thickness of pipe wall (if selectable=false)" - annotation (Dialog(group = "Geometry", enable=not selectable)); - parameter Modelica.SIunits.SpecificHeatCapacity c_pipeWall= 390 + annotation (Dialog(group="Geometry", enable=not selectable)); + parameter Modelica.Units.SI.SpecificHeatCapacity c_pipeWall=390 "Heat capacity of pipe material (if selectable=false)" - annotation (Dialog(group = "Pipe material",enable=not selectable)); - parameter Modelica.SIunits.ThermalConductivity lambda_pipeWall= 393 + annotation (Dialog(group="Pipe material", enable=not selectable)); + parameter Modelica.Units.SI.ThermalConductivity lambda_pipeWall=393 "Thermal Conductivity of pipe material (if selectable=false)" - annotation (Dialog(group = "Pipe material",enable=not selectable)); + annotation (Dialog(group="Pipe material", enable=not selectable)); parameter AixLib.DataBase.Pipes.PipeBaseDataDefinition parameterPipe= AixLib.DataBase.Pipes.Copper.Copper_6x1() "Type of pipe" annotation (Dialog(enable=selectable), choicesAllMatching=true); @@ -70,13 +73,15 @@ public final parameter Boolean withRadiationParam=if not withConvection then false else withRadiation "= true to internally simulate heat loss to ambient by radiation (only works with convection = true)" annotation (Dialog( enable = false)); - parameter Modelica.SIunits.CoefficientOfHeatTransfer hConOut=8 "Heat transfer coefficient to ambient" - annotation (Dialog( enable=withConvection)); - parameter Modelica.SIunits.Emissivity eps = 0.8 "Emissivity" - annotation (Dialog( enable = withRadiation)); + parameter Modelica.Units.SI.CoefficientOfHeatTransfer hConOut=8 + "Heat transfer coefficient to ambient" + annotation (Dialog(enable=withConvection)); + parameter Modelica.Units.SI.Emissivity eps=0.8 "Emissivity" + annotation (Dialog(enable=withRadiation)); parameter Boolean calcHCon=true "Use calculated value for inside heat transfer coefficient"; - parameter Modelica.SIunits.CoefficientOfHeatTransfer hConIn_const=30 "Fix value for heat transfer coeffiecient inside pipe" annotation(Dialog(enable=not - calcHCon)); + parameter Modelica.Units.SI.CoefficientOfHeatTransfer hConIn_const=30 + "Fix value for heat transfer coeffiecient inside pipe" + annotation (Dialog(enable=not calcHCon)); /* ******************************************************************* Components diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Pipes/DynamicPipeAggregated.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Pipes/DynamicPipeAggregated.mo index 61a969298d..00e1d1ecf7 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Pipes/DynamicPipeAggregated.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Pipes/DynamicPipeAggregated.mo @@ -12,21 +12,24 @@ model DynamicPipeAggregated "DynamicPipe with heat loss to ambient" annotation (choicesAllMatching); protected - parameter Modelica.SIunits.Volume V_fluid= Modelica.Constants.pi*length*nParallel*innerDiameter*innerDiameter/4; - parameter Modelica.SIunits.Diameter innerDiameter=(if selectable then parameterPipe.d_i else diameter) - "Inner diameter of pipe"; - parameter Modelica.SIunits.Diameter outerDiameter=(if selectable then parameterPipe.d_o else innerDiameter+2*s_pipeWall) + parameter Modelica.Units.SI.Volume V_fluid=Modelica.Constants.pi*length* + nParallel*innerDiameter*innerDiameter/4; + parameter Modelica.Units.SI.Diameter innerDiameter=(if selectable then + parameterPipe.d_i else diameter) "Inner diameter of pipe"; + parameter Modelica.Units.SI.Diameter outerDiameter=(if selectable then + parameterPipe.d_o else innerDiameter + 2*s_pipeWall) "Outer diameter of pipe"; - parameter Modelica.SIunits.Density d=(if selectable then parameterPipe.d else rho_pipeWall) - "Density of pipe material"; - parameter Modelica.SIunits.SpecificHeatCapacity c=(if selectable then parameterPipe.c else c_pipeWall) - "Heat capacity of pipe material"; - parameter Modelica.SIunits.ThermalConductivity lambda= (if selectable then parameterPipe.lambda else lambda_pipeWall) + parameter Modelica.Units.SI.Density d=(if selectable then parameterPipe.d + else rho_pipeWall) "Density of pipe material"; + parameter Modelica.Units.SI.SpecificHeatCapacity c=(if selectable then + parameterPipe.c else c_pipeWall) "Heat capacity of pipe material"; + parameter Modelica.Units.SI.ThermalConductivity lambda=(if selectable then + parameterPipe.lambda else lambda_pipeWall) "Thermal Conductivity of pipe material"; public - parameter Modelica.SIunits.Temperature T_0=Modelica.SIunits.Conversions.from_degC(20) - "Initial temperature of fluid"; + parameter Modelica.Units.SI.Temperature T_0= + Modelica.Units.Conversions.from_degC(20) "Initial temperature of fluid"; /* ******************************************************************* Pipe Parameters @@ -36,23 +39,23 @@ public parameter Integer nParallel(min=1)=1 "Number of identical parallel pipes" annotation(Dialog(group = "Geometry")); - parameter Modelica.SIunits.Length length=1 "Length of pipe" - annotation(Dialog(group = "Geometry")); - parameter Modelica.SIunits.Diameter diameter= 0.01 + parameter Modelica.Units.SI.Length length=1 "Length of pipe" + annotation (Dialog(group="Geometry")); + parameter Modelica.Units.SI.Diameter diameter=0.01 "Inner diameter of pipe (if selectable=false)" - annotation (Dialog(group = "Geometry",enable=not selectable)); - parameter Modelica.SIunits.Density rho_pipeWall= 8900 + annotation (Dialog(group="Geometry", enable=not selectable)); + parameter Modelica.Units.SI.Density rho_pipeWall=8900 "Density of pipe material (if selectable=false)" - annotation (Dialog(group = "Pipe material",enable=not selectable)); - parameter Modelica.SIunits.Thickness s_pipeWall = 0.001 + annotation (Dialog(group="Pipe material", enable=not selectable)); + parameter Modelica.Units.SI.Thickness s_pipeWall=0.001 "Thickness of pipe wall (if selectable=false)" - annotation (Dialog(group = "Geometry", enable=not selectable)); - parameter Modelica.SIunits.SpecificHeatCapacity c_pipeWall= 390 + annotation (Dialog(group="Geometry", enable=not selectable)); + parameter Modelica.Units.SI.SpecificHeatCapacity c_pipeWall=390 "Heat capacity of pipe material (if selectable=false)" - annotation (Dialog(group = "Pipe material",enable=not selectable)); - parameter Modelica.SIunits.ThermalConductivity lambda_pipeWall= 393 + annotation (Dialog(group="Pipe material", enable=not selectable)); + parameter Modelica.Units.SI.ThermalConductivity lambda_pipeWall=393 "Thermal Conductivity of pipe material (if selectable=false)" - annotation (Dialog(group = "Pipe material",enable=not selectable)); + annotation (Dialog(group="Pipe material", enable=not selectable)); parameter AixLib.DataBase.Pipes.PipeBaseDataDefinition parameterPipe= AixLib.DataBase.Pipes.Copper.Copper_6x1() "Type of pipe" annotation (Dialog(enable=selectable), choicesAllMatching=true); @@ -71,16 +74,18 @@ public final parameter Boolean withRadiationParam=if not withConvection then false else withRadiation "= true to internally simulate heat loss to ambient by radiation (only works with convection = true)" annotation (Dialog( enable = false)); - parameter Modelica.SIunits.CoefficientOfHeatTransfer hConOut=8 "Heat transfer coefficient to ambient" - annotation (Dialog( enable=withConvection)); - parameter Modelica.SIunits.Emissivity eps = 0.8 "Emissivity" - annotation (Dialog( enable = withRadiation)); + parameter Modelica.Units.SI.CoefficientOfHeatTransfer hConOut=8 + "Heat transfer coefficient to ambient" + annotation (Dialog(enable=withConvection)); + parameter Modelica.Units.SI.Emissivity eps=0.8 "Emissivity" + annotation (Dialog(enable=withRadiation)); parameter Boolean calcHCon=true "Use calculated value for inside heat coefficient"; - parameter Modelica.SIunits.CoefficientOfHeatTransfer hConIn_const=30 "Fix value for heat transfer coeffiecient inside pipe" - annotation(Dialog(enable=not - calcHCon)); - final parameter Modelica.SIunits.Area AOutside = if not withInsulation then Modelica.Constants.pi*outerDiameter*length - else Modelica.Constants.pi*(outerDiameter*parameterIso.factor*2 + outerDiameter)*length; + parameter Modelica.Units.SI.CoefficientOfHeatTransfer hConIn_const=30 + "Fix value for heat transfer coeffiecient inside pipe" + annotation (Dialog(enable=not calcHCon)); + final parameter Modelica.Units.SI.Area AOutside=if not withInsulation then + Modelica.Constants.pi*outerDiameter*length else Modelica.Constants.pi*( + outerDiameter*parameterIso.factor*2 + outerDiameter)*length; /* ******************************************************************* Components @@ -102,8 +107,8 @@ public d_in=fill(outerDiameter, nNodes), length=fill(length/nNodes, nNodes), lambda=fill(parameterIso.lambda, nNodes), - T0=fill(T_0, nNodes)) if - withInsulation + T0=fill(T_0, nNodes)) + if withInsulation annotation (Placement(transformation(extent={{-10,-10},{10,10}}))); Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a heatPort_outside annotation (Placement(transformation(extent={{46,82},{66,102}}), @@ -116,16 +121,16 @@ public Placement(transformation(extent={{88,-10},{108,10}}), iconTransformation(extent={{88,-10},{108,10}}))); - AixLib.Utilities.Interfaces.RadPort star if - withRadiationParam annotation (Placement(transformation(extent={{-70,86},{-50,106}}), iconTransformation(extent={{-70,86},{-50,106}}))); + AixLib.Utilities.Interfaces.RadPort star + if withRadiationParam annotation (Placement(transformation(extent={{-70,86},{-50,106}}), iconTransformation(extent={{-70,86},{-50,106}}))); AixLib.Utilities.HeatTransfer.HeatConv heatConv[nNodes](hCon=fill(hConOut, nNodes), A=AOutside/nNodes) if withConvection "Convection from pipe wall" annotation (Placement(transformation( extent={{-10,-10},{10,10}}, rotation=270, origin={58,28}))); - AixLib.Utilities.HeatTransfer.HeatToRad twoStar_RadEx[nNodes](eps=fill(eps, nNodes), A=AOutside/nNodes) if - withRadiationParam annotation (Placement(transformation( + AixLib.Utilities.HeatTransfer.HeatToRad twoStar_RadEx[nNodes](eps=fill(eps, nNodes), A=AOutside/nNodes) + if withRadiationParam annotation (Placement(transformation( extent={{10,-10},{-10,10}}, rotation=-90, origin={-58,30}))); diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Pumps/FluidSource.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Pumps/FluidSource.mo index 3574e2470e..320e9ee27f 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Pumps/FluidSource.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Pumps/FluidSource.mo @@ -11,7 +11,7 @@ model FluidSource " Ideal fluid source " "Standard charastics for water (heat capacity, density, thermal conductivity)" annotation (choicesAllMatching); protected - parameter Modelica.SIunits.SpecificHeatCapacity cp=medium.c + parameter Modelica.Units.SI.SpecificHeatCapacity cp=medium.c "medium's specific heat capacity"; /* ******************************************************************* Components diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Pumps/Pump.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Pumps/Pump.mo index 4a7db36f87..d6553b0e13 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Pumps/Pump.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Pumps/Pump.mo @@ -11,7 +11,7 @@ model Pump " Ideal pump " "Standard charastics for water (heat capacity, density, thermal conductivity)" annotation (choicesAllMatching); protected - parameter Modelica.SIunits.SpecificHeatCapacity cp=medium.c + parameter Modelica.Units.SI.SpecificHeatCapacity cp=medium.c "Medium's specific heat capacity"; /* ******************************************************************* Components diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/HeatTransferBuoyancyWetter.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/HeatTransferBuoyancyWetter.mo index 9944c33658..cb6c3ae934 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/HeatTransferBuoyancyWetter.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/HeatTransferBuoyancyWetter.mo @@ -2,8 +2,8 @@ within AixLib.Obsolete.YearIndependent.FastHVAC.Components.Storage.BaseClasses; model HeatTransferBuoyancyWetter extends PartialHeatTransferLayers; - parameter Modelica.SIunits.Time tau(min=0)=100 "Time constant for mixing"; - Modelica.SIunits.HeatFlowRate[n-1] Q_flow + parameter Modelica.Units.SI.Time tau(min=0) = 100 "Time constant for mixing"; + Modelica.Units.SI.HeatFlowRate[n - 1] Q_flow "Heat flow rate from segment i+1 to i"; //parameter Medium.ThermodynamicState sta0 = Medium.setState_pTX(T=Medium.T_default, // p=Medium.p_default, X=Medium.X_default[1:Medium.nXi]); @@ -11,11 +11,11 @@ model HeatTransferBuoyancyWetter each A=Modelica.Constants.pi/4*data.d_Tank^2, each d=data.h_Tank/n) annotation 0;*/ protected - parameter Modelica.SIunits.Density rho0=1000 + parameter Modelica.Units.SI.Density rho0=1000 "Density, used to compute fluid mass"; - parameter Modelica.SIunits.SpecificHeatCapacity cp0=4180 + parameter Modelica.Units.SI.SpecificHeatCapacity cp0=4180 "Specific heat capacity"; - Modelica.SIunits.TemperatureDifference dT[n-1] + Modelica.Units.SI.TemperatureDifference dT[n - 1] "Temperature difference between adjoining volumes"; parameter Real k(unit="W/K") = data.hTank*Modelica.Constants.pi/4*data.dTank^2*rho0*cp0/tau/n "Proportionality constant, since we use dT instead of dH"; diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/HeatTransferDirectedHeatTransfer.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/HeatTransferDirectedHeatTransfer.mo index 76f4174691..ac78bd7da3 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/HeatTransferDirectedHeatTransfer.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/HeatTransferDirectedHeatTransfer.mo @@ -4,28 +4,28 @@ model HeatTransferDirectedHeatTransfer // import BufferStorage = BufferStorage2; extends AixLib.Obsolete.YearIndependent.FastHVAC.Components.Storage.BaseClasses.PartialHeatTransferLayers; - Modelica.SIunits.HeatFlowRate[n-1] Q_flow + Modelica.Units.SI.HeatFlowRate[n - 1] Q_flow "Heat flow rate from layer i+1 to i due to heat conduction"; //Modelica.Thermal.HeatTransfer.TemperatureSensor[n] temperatureSensor // annotation 2; - Modelica.SIunits.HeatFlowRate[ n] Q_buoy_abs - "Cumulative heat flow rate into the layer due to buoyancy"; + Modelica.Units.SI.HeatFlowRate[n] Q_buoy_abs + "Cumulative heat flow rate into the layer due to buoyancy"; - parameter Modelica.SIunits.Time tau=100; - parameter Modelica.SIunits.TemperatureDifference dTref=1; + parameter Modelica.Units.SI.Time tau=100; + parameter Modelica.Units.SI.TemperatureDifference dTref=1; function fQbuoy = AixLib.Obsolete.YearIndependent.FastHVAC.Components.Storage.BaseClasses.QBuoyFunction; protected - parameter Modelica.SIunits.Length height=data.hTank/n + parameter Modelica.Units.SI.Length height=data.hTank/n "height of fluid layers"; - parameter Modelica.SIunits.Area A=Modelica.Constants.pi/4*data.dTank^2 + parameter Modelica.Units.SI.Area A=Modelica.Constants.pi/4*data.dTank^2 "Area of heat transfer between layers"; - Modelica.SIunits.TemperatureDifference dT[n-1] + Modelica.Units.SI.TemperatureDifference dT[n - 1] "Temperature difference between adjoining volumes"; - parameter Modelica.SIunits.ThermalConductivity lambda_water=0.64; + parameter Modelica.Units.SI.ThermalConductivity lambda_water=0.64; parameter AixLib.Obsolete.YearIndependent.FastHVAC.Media.BaseClasses.MediumSimple medium=AixLib.Obsolete.YearIndependent.FastHVAC.Media.WaterSimple(); diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/HeatTransferLambdaEff.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/HeatTransferLambdaEff.mo index f93f79ac6b..55802a6544 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/HeatTransferLambdaEff.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/HeatTransferLambdaEff.mo @@ -3,28 +3,28 @@ model HeatTransferLambdaEff // import BufferStorage = BufferStorage2; extends PartialHeatTransferLayers; - Modelica.SIunits.HeatFlowRate[n-1] Q_flow + Modelica.Units.SI.HeatFlowRate[n - 1] Q_flow "Heat flow rate from segment i+1 to i"; //Modelica.Thermal.HeatTransfer.TemperatureSensor[n] temperatureSensor // annotation 2; protected parameter Real kappa=0.41 "Karman constant"; - parameter Modelica.SIunits.Length height=data.hTank/n + parameter Modelica.Units.SI.Length height=data.hTank/n "height of fluid layers"; Real beta=350e-6 "thermal expansion coefficient in 1/K"; - parameter Modelica.SIunits.Area A=Modelica.Constants.pi/4*data.dTank^2 + parameter Modelica.Units.SI.Area A=Modelica.Constants.pi/4*data.dTank^2 "Area of heat transfer between layers"; - parameter Modelica.SIunits.Density rho=1000 + parameter Modelica.Units.SI.Density rho=1000 "Density, used to compute fluid mass"; - parameter Modelica.SIunits.SpecificHeatCapacity c_p=4180 + parameter Modelica.Units.SI.SpecificHeatCapacity c_p=4180 "Specific heat capacity"; // - Modelica.SIunits.TemperatureDifference dT[n-1] + Modelica.Units.SI.TemperatureDifference dT[n - 1] "Temperature difference between adjoining volumes"; Real[n-1] k(unit="W/K") "effective heat transfer coefficient"; Real[n-1] lambda(unit="W/mK") "effective heat conductivity"; - parameter Modelica.SIunits.ThermalConductivity lambda_water=0.64; + parameter Modelica.Units.SI.ThermalConductivity lambda_water=0.64; equation for i in 1:n-1 loop diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/HeatTransferLambdaEffSmooth.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/HeatTransferLambdaEffSmooth.mo index fbad4101f9..aae329afbf 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/HeatTransferLambdaEffSmooth.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/HeatTransferLambdaEffSmooth.mo @@ -3,28 +3,28 @@ model HeatTransferLambdaEffSmooth // import BufferStorage = BufferStorage2; extends PartialHeatTransferLayers; - Modelica.SIunits.HeatFlowRate[n-1] Q_flow + Modelica.Units.SI.HeatFlowRate[n - 1] Q_flow "Heat flow rate from segment i+1 to i"; //Modelica.Thermal.HeatTransfer.TemperatureSensor[n] temperatureSensor // annotation 2; protected parameter Real kappa=0.41 "Karman constant"; - parameter Modelica.SIunits.Length height=data.hTank/n + parameter Modelica.Units.SI.Length height=data.hTank/n "height of fluid layers"; Real beta=350e-6 "thermal expansion coefficient in 1/K"; - parameter Modelica.SIunits.Area A=Modelica.Constants.pi/4*data.dTank^2 + parameter Modelica.Units.SI.Area A=Modelica.Constants.pi/4*data.dTank^2 "Area of heat transfer between layers"; - parameter Modelica.SIunits.Density rho=1000 + parameter Modelica.Units.SI.Density rho=1000 "Density, used to compute fluid mass"; - parameter Modelica.SIunits.SpecificHeatCapacity c_p=4180 + parameter Modelica.Units.SI.SpecificHeatCapacity c_p=4180 "Specific heat capacity"; // - Modelica.SIunits.TemperatureDifference dT[n-1] + Modelica.Units.SI.TemperatureDifference dT[n - 1] "Temperature difference between adjoining volumes"; Real[n-1] k(unit="W/K") "effective heat transfer coefficient"; Real[n-1] lambda(unit="W/mK") "effective heat conductivity"; - parameter Modelica.SIunits.ThermalConductivity lambda_water=0.64; + parameter Modelica.Units.SI.ThermalConductivity lambda_water=0.64; equation for i in 1:n-1 loop diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/HeatTransferOnlyConduction.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/HeatTransferOnlyConduction.mo index ceb084f1a3..b963c8ba8f 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/HeatTransferOnlyConduction.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/HeatTransferOnlyConduction.mo @@ -4,19 +4,19 @@ model HeatTransferOnlyConduction // import BufferStorage = BufferStorage2; extends AixLib.Obsolete.YearIndependent.FastHVAC.Components.Storage.BaseClasses.PartialHeatTransferLayers; - Modelica.SIunits.HeatFlowRate[n-1] Q_flow + Modelica.Units.SI.HeatFlowRate[n - 1] Q_flow "Heat flow rate from segment i+1 to i"; //Modelica.Thermal.HeatTransfer.TemperatureSensor[n] temperatureSensor // annotation 2; protected - parameter Modelica.SIunits.Length height=data.hTank/n + parameter Modelica.Units.SI.Length height=data.hTank/n "height of fluid layers"; - parameter Modelica.SIunits.Area A=Modelica.Constants.pi/4*data.dTank^2 + parameter Modelica.Units.SI.Area A=Modelica.Constants.pi/4*data.dTank^2 "Area of heat transfer between layers"; - Modelica.SIunits.TemperatureDifference dT[n-1] + Modelica.Units.SI.TemperatureDifference dT[n - 1] "Temperature difference between adjoining volumes"; - parameter Modelica.SIunits.ThermalConductivity lambda_water=0.64; + parameter Modelica.Units.SI.ThermalConductivity lambda_water=0.64; equation for i in 1:n-1 loop diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/HeatTransferQbuoy.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/HeatTransferQbuoy.mo index a117dc866a..90f2ab09ac 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/HeatTransferQbuoy.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/HeatTransferQbuoy.mo @@ -4,24 +4,24 @@ model HeatTransferQbuoy // import BufferStorage = BufferStorage2; extends AixLib.Obsolete.YearIndependent.FastHVAC.Components.Storage.BaseClasses.PartialHeatTransferLayers; - Modelica.SIunits.HeatFlowRate[n-1] Q_flow + Modelica.Units.SI.HeatFlowRate[n - 1] Q_flow "Heat flow rate from segment i+1 to i"; //Modelica.Thermal.HeatTransfer.TemperatureSensor[n] temperatureSensor // annotation 2; protected - parameter Modelica.SIunits.Length height=data.hTank/n + parameter Modelica.Units.SI.Length height=data.hTank/n "height of fluid layers"; - parameter Modelica.SIunits.Area A=Modelica.Constants.pi/4*data.dTank^2 + parameter Modelica.Units.SI.Area A=Modelica.Constants.pi/4*data.dTank^2 "Area of heat transfer between layers"; - Modelica.SIunits.TemperatureDifference dT[n-1] + Modelica.Units.SI.TemperatureDifference dT[n - 1] "Temperature difference between adjoining volumes"; - parameter Modelica.SIunits.ThermalConductivity lambda_water=0.64; - parameter Modelica.SIunits.Density rho=1000 + parameter Modelica.Units.SI.ThermalConductivity lambda_water=0.64; + parameter Modelica.Units.SI.Density rho=1000 "Density, used to compute fluid mass"; - parameter Modelica.SIunits.Time tau=90; - Modelica.SIunits.HeatFlowRate Q_buoy[n]; + parameter Modelica.Units.SI.Time tau=90; + Modelica.Units.SI.HeatFlowRate Q_buoy[n]; equation diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/HeatTransferQbuoyTimer.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/HeatTransferQbuoyTimer.mo index 862c6a10f2..39197509cb 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/HeatTransferQbuoyTimer.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/HeatTransferQbuoyTimer.mo @@ -4,26 +4,26 @@ model HeatTransferQbuoyTimer // import BufferStorage = BufferStorage2; extends AixLib.Obsolete.YearIndependent.FastHVAC.Components.Storage.BaseClasses.PartialHeatTransferLayers; - Modelica.SIunits.HeatFlowRate[n-1] Q_flow + Modelica.Units.SI.HeatFlowRate[n - 1] Q_flow "Heat flow rate from segment i+1 to i"; //Modelica.Thermal.HeatTransfer.TemperatureSensor[n] temperatureSensor // annotation 2; Real timer(start=tau); protected - parameter Modelica.SIunits.Length height=data.hTank/n + parameter Modelica.Units.SI.Length height=data.hTank/n "height of fluid layers"; - parameter Modelica.SIunits.Area A=Modelica.Constants.pi/4*data.dTank^2 + parameter Modelica.Units.SI.Area A=Modelica.Constants.pi/4*data.dTank^2 "Area of heat transfer between layers"; - Modelica.SIunits.TemperatureDifference dT[n-1] + Modelica.Units.SI.TemperatureDifference dT[n - 1] "Temperature difference between adjoining volumes"; - parameter Modelica.SIunits.ThermalConductivity lambda_water=0.64; - parameter Modelica.SIunits.Density rho=1000 + parameter Modelica.Units.SI.ThermalConductivity lambda_water=0.64; + parameter Modelica.Units.SI.Density rho=1000 "Density, used to compute fluid mass"; - parameter Modelica.SIunits.Time tau=60; - parameter Modelica.SIunits.Time tau_refresh=900; - Modelica.SIunits.HeatFlowRate Q_buoy[n](start=zeros(n)); - Modelica.SIunits.SpecificEnergy q_buoy[n]; + parameter Modelica.Units.SI.Time tau=60; + parameter Modelica.Units.SI.Time tau_refresh=900; + Modelica.Units.SI.HeatFlowRate Q_buoy[n](start=zeros(n)); + Modelica.Units.SI.SpecificEnergy q_buoy[n]; function isBuoy = AixLib.Obsolete.YearIndependent.FastHVAC.Components.Storage.BaseClasses.QBuoyFunctions.isBuoy; diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/HeatingCoil.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/HeatingCoil.mo index bfbd00949d..82524b04cc 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/HeatingCoil.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/HeatingCoil.mo @@ -6,11 +6,12 @@ model HeatingCoil parameter Media.BaseClasses.MediumSimple medium_HC=Media.WaterSimple() "Mediums charastics (heat capacity, density, thermal conductivity)"; - parameter Modelica.SIunits.Length lengthHC = 3 "Length of Pipe for HC"; + parameter Modelica.Units.SI.Length lengthHC=3 "Length of Pipe for HC"; - parameter Modelica.SIunits.CoefficientOfHeatTransfer hConHC=20 "Model assumptions heat transfer coefficient HC <-> Heating Water"; + parameter Modelica.Units.SI.CoefficientOfHeatTransfer hConHC=20 + "Model assumptions heat transfer coefficient HC <-> Heating Water"; - parameter Modelica.SIunits.Temperature T_start "Start Temperature of fluid"; + parameter Modelica.Units.SI.Temperature T_start "Start Temperature of fluid"; parameter AixLib.DataBase.Pipes.PipeBaseDataDefinition pipeRecordHC= AixLib.DataBase.Pipes.Copper.Copper_28x1() "Type of Pipe for HR1"; @@ -50,8 +51,9 @@ model HeatingCoil AixLib.Obsolete.YearIndependent.FastHVAC.Interfaces.EnthalpyPort_a enthalpyPort_a1 annotation (Placement(transformation(extent={{-106,-10},{-86,10}}))); parameter Boolean calcHCon=true "Use calculated value for inside heat transfer coefficient"; - parameter Modelica.SIunits.CoefficientOfHeatTransfer hConIn_const=30 "Fix value for heat transfer coefficient inside pipe" - annotation(Dialog(enable=not calcHCon)); + parameter Modelica.Units.SI.CoefficientOfHeatTransfer hConIn_const=30 + "Fix value for heat transfer coefficient inside pipe" + annotation (Dialog(enable=not calcHCon)); equation connect(conv_HC1_Outside.port_a, Therm1) annotation (Line( points={{-2,82},{-2,104}}, diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunction.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunction.mo index 7fe5b898e4..b17ee7b395 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunction.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunction.mo @@ -2,34 +2,37 @@ within AixLib.Obsolete.YearIndependent.FastHVAC.Components.Storage.BaseClasses; function QBuoyFunction input Integer n; - input Modelica.SIunits.Length height; - input Modelica.SIunits.Area A; - input Modelica.SIunits.Temperature[n] T; + input Modelica.Units.SI.Length height; + input Modelica.Units.SI.Area A; + input Modelica.Units.SI.Temperature[n] T; input AixLib.Obsolete.YearIndependent.FastHVAC.Media.BaseClasses.MediumSimple medium=AixLib.Obsolete.YearIndependent.FastHVAC.Media.WaterSimple(); - input Modelica.SIunits.Time tau; - input Modelica.SIunits.TemperatureDifference dTref; - output Modelica.SIunits.HeatFlowRate[n] Q_buoy_abs - "Cumulative heat flow rate into the layer due to buoyancy"; + input Modelica.Units.SI.Time tau; + input Modelica.Units.SI.TemperatureDifference dTref; + output Modelica.Units.SI.HeatFlowRate[n] Q_buoy_abs + "Cumulative heat flow rate into the layer due to buoyancy"; replaceable function fDist = AixLib.Obsolete.YearIndependent.FastHVAC.Components.Storage.BaseClasses.buoyancyDitribution.buoyancyDistInv2 constrainedby AixLib.Obsolete.YearIndependent.FastHVAC.Components.Storage.BaseClasses.buoyancyDitribution.buoyancyDist; protected - Modelica.SIunits.HeatFlowRate Q_buoy "Heat flow rate from layer i to all above layers with lower temperature"; - Modelica.SIunits.HeatFlowRate[ n] Q_buoy_step - "Heat flow rate into each layer resulting from the buoyant mass flow in a particular iteration step"; - Modelica.SIunits.TemperatureDifference dT[n-1] + Modelica.Units.SI.HeatFlowRate Q_buoy + "Heat flow rate from layer i to all above layers with lower temperature"; + Modelica.Units.SI.HeatFlowRate[n] Q_buoy_step + "Heat flow rate into each layer resulting from the buoyant mass flow in a particular iteration step"; + Modelica.Units.SI.TemperatureDifference dT[n - 1] "Temperature difference between adjoining volumes"; - Modelica.SIunits.MassFlowRate m_buoy "Total buoyant mass flow (in a particular iteration step)"; - Modelica.SIunits.MassFlowRate[n] m_buoy_in "Buoyant mass flow going into each layer (in a particular iteration step)"; + Modelica.Units.SI.MassFlowRate m_buoy + "Total buoyant mass flow (in a particular iteration step)"; + Modelica.Units.SI.MassFlowRate[n] m_buoy_in + "Buoyant mass flow going into each layer (in a particular iteration step)"; Integer k; Integer j; - Modelica.SIunits.MassFlowRate s1 "temporary variable for calculations"; - Modelica.SIunits.MassFlowRate s2 "temporary variable for calculations"; + Modelica.Units.SI.MassFlowRate s1 "temporary variable for calculations"; + Modelica.Units.SI.MassFlowRate s2 "temporary variable for calculations"; algorithm for i in 1:n-1 loop diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/cBotDown.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/cBotDown.mo index ad4b5fb3ca..d766e1c577 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/cBotDown.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/cBotDown.mo @@ -1,7 +1,7 @@ within AixLib.Obsolete.YearIndependent.FastHVAC.Components.Storage.BaseClasses.QBuoyFunctions; function cBotDown - input Modelica.SIunits.TemperatureDifference dTover; - input Modelica.SIunits.TemperatureDifference dT13; + input Modelica.Units.SI.TemperatureDifference dTover; + input Modelica.Units.SI.TemperatureDifference dT13; output Real c_bot_down; diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/cBotUp.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/cBotUp.mo index 71c1021018..bbab330e83 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/cBotUp.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/cBotUp.mo @@ -1,7 +1,7 @@ within AixLib.Obsolete.YearIndependent.FastHVAC.Components.Storage.BaseClasses.QBuoyFunctions; function cBotUp - input Modelica.SIunits.TemperatureDifference dTover; - input Modelica.SIunits.TemperatureDifference dT13; + input Modelica.Units.SI.TemperatureDifference dTover; + input Modelica.Units.SI.TemperatureDifference dT13; output Real c_bot_up; protected diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/cTopDown.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/cTopDown.mo index c74bf0242d..eca3472014 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/cTopDown.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/cTopDown.mo @@ -1,8 +1,8 @@ within AixLib.Obsolete.YearIndependent.FastHVAC.Components.Storage.BaseClasses.QBuoyFunctions; function cTopDown - input Modelica.SIunits.TemperatureDifference dTover; - input Modelica.SIunits.TemperatureDifference dTborder; + input Modelica.Units.SI.TemperatureDifference dTover; + input Modelica.Units.SI.TemperatureDifference dTborder; input Integer dn_gap; output Real c_top_down; diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/cTopUp.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/cTopUp.mo index 820a81942e..24552863c7 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/cTopUp.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/cTopUp.mo @@ -1,8 +1,8 @@ within AixLib.Obsolete.YearIndependent.FastHVAC.Components.Storage.BaseClasses.QBuoyFunctions; function cTopUp - input Modelica.SIunits.TemperatureDifference dTover; - input Modelica.SIunits.TemperatureDifference dTborder; + input Modelica.Units.SI.TemperatureDifference dTover; + input Modelica.Units.SI.TemperatureDifference dTborder; input Integer dn_gap; output Real c_top_up; diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/dToverEff.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/dToverEff.mo index 5d19460b8e..9e577bdc60 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/dToverEff.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/dToverEff.mo @@ -1,9 +1,9 @@ within AixLib.Obsolete.YearIndependent.FastHVAC.Components.Storage.BaseClasses.QBuoyFunctions; function dToverEff - input Modelica.SIunits.TemperatureDifference dTover; + input Modelica.Units.SI.TemperatureDifference dTover; input Real h_rel; - output Modelica.SIunits.TemperatureDifference dTover_eff; + output Modelica.Units.SI.TemperatureDifference dTover_eff; protected parameter Real a=0.5023; diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/dhDown.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/dhDown.mo index b9793fac91..7783db03f7 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/dhDown.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/dhDown.mo @@ -1,6 +1,6 @@ within AixLib.Obsolete.YearIndependent.FastHVAC.Components.Storage.BaseClasses.QBuoyFunctions; function dhDown - input Modelica.SIunits.TemperatureDifference dTover; + input Modelica.Units.SI.TemperatureDifference dTover; input Real dh_gap; output Real dhdown; diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/isBuoy.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/isBuoy.mo index 9dc5e2874b..4ad99e2aeb 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/isBuoy.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/isBuoy.mo @@ -1,7 +1,7 @@ within AixLib.Obsolete.YearIndependent.FastHVAC.Components.Storage.BaseClasses.QBuoyFunctions; function isBuoy input Integer n; - input Modelica.SIunits.Temperature T[n]; + input Modelica.Units.SI.Temperature T[n]; output Boolean isBuoy; diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/package.order b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/package.order index 7e64dc5a7e..13dcd25db4 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/package.order +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/package.order @@ -1,17 +1,17 @@ -dToverEff -qbuoy0 -xDown -dhDown +cBotDown +cBotUp cQup -qFreebuoy -qtop cTopDown cTopUp +dToverEff +dhDown +isBuoy +qBotmix +qFreebuoy qTopmix qbot -cBotDown -cBotUp -qBotmix +qbuoy0 qbuoySingle qbuoyTotal -isBuoy +qtop +xDown diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/qBotmix.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/qBotmix.mo index 817672bfad..36ecb42c7f 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/qBotmix.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/qBotmix.mo @@ -2,10 +2,10 @@ within AixLib.Obsolete.YearIndependent.FastHVAC.Components.Storage.BaseClasses.Q function qBotmix input Integer n; input Integer nbuoy; - input Modelica.SIunits.TemperatureDifference dTover; - input Modelica.SIunits.TemperatureDifference dT13; + input Modelica.Units.SI.TemperatureDifference dTover; + input Modelica.Units.SI.TemperatureDifference dT13; - output Modelica.SIunits.SpecificEnergy q_botmix[n]; + output Modelica.Units.SI.SpecificEnergy q_botmix[n]; protected Real fbotdown_sum; @@ -13,7 +13,7 @@ protected Real c_bd; Real c_bu; - Modelica.SIunits.SpecificEnergy qb0; + Modelica.Units.SI.SpecificEnergy qb0; algorithm q_botmix:=zeros(n); diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/qFreebuoy.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/qFreebuoy.mo index 3a205b156f..1b601917b8 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/qFreebuoy.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/qFreebuoy.mo @@ -4,12 +4,12 @@ function qFreebuoy input Integer n; input Integer nbuoy; input Integer nstop; - input Modelica.SIunits.TemperatureDifference dTover; + input Modelica.Units.SI.TemperatureDifference dTover; - output Modelica.SIunits.SpecificEnergy q_freebuoy[n]; + output Modelica.Units.SI.SpecificEnergy q_freebuoy[n]; protected - Modelica.SIunits.SpecificEnergy qb0; + Modelica.Units.SI.SpecificEnergy qb0; Real dh_gap; Real dhdwn; Real c_qu; diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/qTopmix.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/qTopmix.mo index 4626d3d238..8cb70e08fc 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/qTopmix.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/qTopmix.mo @@ -4,10 +4,10 @@ function qTopmix input Integer n; input Integer nbuoy; input Integer nstop; - input Modelica.SIunits.TemperatureDifference dTover; - input Modelica.SIunits.TemperatureDifference dTborder; + input Modelica.Units.SI.TemperatureDifference dTover; + input Modelica.Units.SI.TemperatureDifference dTborder; - output Modelica.SIunits.SpecificEnergy q_topmix[n]; + output Modelica.Units.SI.SpecificEnergy q_topmix[n]; protected Integer dn_gap; @@ -16,7 +16,7 @@ protected Real c_td; Real c_tu; - Modelica.SIunits.SpecificEnergy qt0; + Modelica.Units.SI.SpecificEnergy qt0; algorithm diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/qbot.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/qbot.mo index fbe2d3d5f3..879764f248 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/qbot.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/qbot.mo @@ -1,9 +1,9 @@ within AixLib.Obsolete.YearIndependent.FastHVAC.Components.Storage.BaseClasses.QBuoyFunctions; function qbot - input Modelica.SIunits.TemperatureDifference dTover; - input Modelica.SIunits.TemperatureDifference dT13; + input Modelica.Units.SI.TemperatureDifference dTover; + input Modelica.Units.SI.TemperatureDifference dT13; - output Modelica.SIunits.SpecificEnergy qbot; + output Modelica.Units.SI.SpecificEnergy qbot; protected parameter Real a=594.1; diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/qbuoy0.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/qbuoy0.mo index 07903a05c7..292a30895b 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/qbuoy0.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/qbuoy0.mo @@ -1,9 +1,9 @@ within AixLib.Obsolete.YearIndependent.FastHVAC.Components.Storage.BaseClasses.QBuoyFunctions; function qbuoy0 - input Modelica.SIunits.TemperatureDifference dTover; + input Modelica.Units.SI.TemperatureDifference dTover; input Real dh_gap; - output Modelica.SIunits.SpecificEnergy qbuoy0; + output Modelica.Units.SI.SpecificEnergy qbuoy0; protected parameter Real a(unit="J/(kg.K)")=3844; diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/qbuoySingle.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/qbuoySingle.mo index 0054c55cf5..27bbd5dce7 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/qbuoySingle.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/qbuoySingle.mo @@ -3,11 +3,11 @@ function qbuoySingle input Integer n; input Integer nbuoy; input Integer nstop; - input Modelica.SIunits.TemperatureDifference dTover; - input Modelica.SIunits.TemperatureDifference dT13; - input Modelica.SIunits.TemperatureDifference dTborder; + input Modelica.Units.SI.TemperatureDifference dTover; + input Modelica.Units.SI.TemperatureDifference dT13; + input Modelica.Units.SI.TemperatureDifference dTborder; - output Modelica.SIunits.SpecificEnergy q_buoy_single[n]; + output Modelica.Units.SI.SpecificEnergy q_buoy_single[n]; algorithm q_buoy_single:=qFreebuoy( diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/qbuoyTotal.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/qbuoyTotal.mo index e72d086a45..2c51c275a3 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/qbuoyTotal.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/qbuoyTotal.mo @@ -1,13 +1,13 @@ within AixLib.Obsolete.YearIndependent.FastHVAC.Components.Storage.BaseClasses.QBuoyFunctions; function qbuoyTotal input Integer n; - input Modelica.SIunits.Temperature T[n]; - output Modelica.SIunits.SpecificEnergy q_total[n]; + input Modelica.Units.SI.Temperature T[n]; + output Modelica.Units.SI.SpecificEnergy q_total[n]; protected - Modelica.SIunits.TemperatureDifference dTover; - Modelica.SIunits.TemperatureDifference dT13; - Modelica.SIunits.TemperatureDifference dTborder; + Modelica.Units.SI.TemperatureDifference dTover; + Modelica.Units.SI.TemperatureDifference dT13; + Modelica.Units.SI.TemperatureDifference dTborder; Integer nbuoy; Integer dngap; Integer nstop; diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/qtop.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/qtop.mo index ce65a99e46..47bfbe91e2 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/qtop.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/qtop.mo @@ -1,11 +1,11 @@ within AixLib.Obsolete.YearIndependent.FastHVAC.Components.Storage.BaseClasses.QBuoyFunctions; function qtop - input Modelica.SIunits.TemperatureDifference dTover; - input Modelica.SIunits.TemperatureDifference dTborder; + input Modelica.Units.SI.TemperatureDifference dTover; + input Modelica.Units.SI.TemperatureDifference dTborder; input Integer dn_gap; - output Modelica.SIunits.SpecificEnergy qtop; + output Modelica.Units.SI.SpecificEnergy qtop; protected parameter Real a(unit="J/(kg.K)")=3896; diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/xDown.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/xDown.mo index 698fdcdb9f..175c18446a 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/xDown.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/QBuoyFunctions/xDown.mo @@ -1,7 +1,7 @@ within AixLib.Obsolete.YearIndependent.FastHVAC.Components.Storage.BaseClasses.QBuoyFunctions; function xDown - input Modelica.SIunits.TemperatureDifference dTover; + input Modelica.Units.SI.TemperatureDifference dTover; input Real dh_gap; output Real xdown; diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/buoyancyDitribution/buoyancyDist.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/buoyancyDitribution/buoyancyDist.mo index 31346ec56b..03dfd9081c 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/buoyancyDitribution/buoyancyDist.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/buoyancyDitribution/buoyancyDist.mo @@ -7,8 +7,7 @@ partial function buoyancyDist "position of the highest layer receiving buoyant mass flow"; input Integer n "total number of layers"; - input Modelica.SIunits.Temperature T[n] - "Temperature of layers"; + input Modelica.Units.SI.Temperature T[n] "Temperature of layers"; output Real[n] y "mass fraction of buoyant current received (-1 for emitting layer)"; end buoyancyDist; diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/buoyancyDitribution/package.order b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/buoyancyDitribution/package.order index 0a4fb24a0d..6ba86b0e4d 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/buoyancyDitribution/package.order +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/BaseClasses/buoyancyDitribution/package.order @@ -1,6 +1,6 @@ buoyancyDist -buoyancyDistLin -buoyancyDistQuad buoyancyDistCub buoyancyDistInv buoyancyDistInv2 +buoyancyDistLin +buoyancyDistQuad diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/HeatStorageVariablePorts.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/HeatStorageVariablePorts.mo index 790325ce7f..0f7ae472e8 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/HeatStorageVariablePorts.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/HeatStorageVariablePorts.mo @@ -22,19 +22,23 @@ public "Mediums charastics HC2 (heat capacity, density, thermal conductivity)" annotation (Dialog(group="Medium"), choicesAllMatching); - parameter Modelica.SIunits.Temperature[n] T_start=fill(293.15, n) - "Start temperature of medium" annotation(Dialog(tab="Initialisation")); - parameter Modelica.SIunits.Temperature T_start_wall=293.15 - "Starting Temperature of wall in K" annotation(Dialog(tab="Initialisation")); - parameter Modelica.SIunits.Temperature T_start_ins=293.15 - "Starting Temperature of insulation in K" annotation(Dialog(tab="Initialisation")); + parameter Modelica.Units.SI.Temperature[n] T_start=fill(293.15, n) + "Start temperature of medium" annotation (Dialog(tab="Initialisation")); + parameter Modelica.Units.SI.Temperature T_start_wall=293.15 + "Starting Temperature of wall in K" + annotation (Dialog(tab="Initialisation")); + parameter Modelica.Units.SI.Temperature T_start_ins=293.15 + "Starting Temperature of insulation in K" + annotation (Dialog(tab="Initialisation")); /* ******************************************************************* HeatStorage Parameters ******************************************************************* */ parameter Integer n(min=3) = 5 "Model assumptions Number of Layers"; - parameter Modelica.SIunits.CoefficientOfHeatTransfer hConIn=1500 "Heat transfer coefficient at the inner wall"; - parameter Modelica.SIunits.CoefficientOfHeatTransfer hConOut=15 "Heat transder coefficient at the outer wall"; + parameter Modelica.Units.SI.CoefficientOfHeatTransfer hConIn=1500 + "Heat transfer coefficient at the inner wall"; + parameter Modelica.Units.SI.CoefficientOfHeatTransfer hConOut=15 + "Heat transder coefficient at the outer wall"; parameter AixLib.DataBase.Storage.BufferStorageBaseDataDefinition data= AixLib.DataBase.Storage.Generic_New_2000l() "Storage data" annotation (choicesAllMatching); @@ -45,7 +49,7 @@ public "Unloading cycle connection pairs (lower position first)" annotation (Dialog(tab="Connections")); - Modelica.SIunits.Energy Heat_loss; + Modelica.Units.SI.Energy Heat_loss; parameter Integer n_load_cycles=2 "Number of loading cycle connection pairs" annotation (Dialog(tab="Connections")); parameter Integer n_unload_cycles=2 @@ -57,12 +61,12 @@ public parameter Boolean use_heatingCoil1=true "Use Heating Coil1?" annotation(Dialog(tab="Heating Coils and Rod")); parameter Boolean use_heatingCoil2=true "Use Heating Coil2?" annotation(Dialog(tab="Heating Coils and Rod")); parameter Boolean use_heatingRod=true "Use Heating Rod?" annotation(Dialog(tab="Heating Coils and Rod")); - parameter Modelica.SIunits.CoefficientOfHeatTransfer hConHC1=20 "Model assumptions heat transfer coefficient HC1 <-> Heating Water" - annotation(Dialog(enable=use_heatingCoil1, tab= - "Heating Coils and Rod")); - parameter Modelica.SIunits.CoefficientOfHeatTransfer hConHC2=400 "Model assumptions heat transfer coefficient HC2 <-> Heating Water" - annotation(Dialog(enable=use_heatingCoil2, tab= - "Heating Coils and Rod")); + parameter Modelica.Units.SI.CoefficientOfHeatTransfer hConHC1=20 + "Model assumptions heat transfer coefficient HC1 <-> Heating Water" + annotation (Dialog(enable=use_heatingCoil1, tab="Heating Coils and Rod")); + parameter Modelica.Units.SI.CoefficientOfHeatTransfer hConHC2=400 + "Model assumptions heat transfer coefficient HC2 <-> Heating Water" + annotation (Dialog(enable=use_heatingCoil2, tab="Heating Coils and Rod")); parameter Boolean Up_to_down_HC1 = true "Heating Coil 1 orientation from up to down?" annotation(Dialog(enable = use_heatingCoil1,tab="Heating Coils and Rod")); @@ -71,8 +75,9 @@ public annotation(Dialog(enable = use_heatingCoil2,tab="Heating Coils and Rod")); parameter Boolean calcHCon=true "Use calculated value for inside heat transfer coefficient" annotation(Dialog(tab="Heating Coils and Rod")); - parameter Modelica.SIunits.CoefficientOfHeatTransfer hConIn_const=30 "Fix value for heat transfer coefficient inside pipe" - annotation(Dialog(enable=not calcHCon, tab="Heating Coils and Rod")); + parameter Modelica.Units.SI.CoefficientOfHeatTransfer hConIn_const=30 + "Fix value for heat transfer coefficient inside pipe" + annotation (Dialog(enable=not calcHCon, tab="Heating Coils and Rod")); // parameter Modelica.SIunits.Length d_HC1=0.02 "Inner diameter of HC1" // annotation(Dialog(enable = use_heatingCoil1,tab="Heating Coils and Rod")); // parameter Modelica.SIunits.Length d_HC2=0.02 "Inner diameter of HC2" @@ -160,7 +165,7 @@ public Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a heatingRod if use_heatingRod annotation (Placement(transformation( extent={{-110,90},{-90,110}}),iconTransformation(extent={{-70,70},{-50, 90}}))); - Modelica.Blocks.Interfaces.RealOutput T_layers[n]( unit="K") annotation (Placement( + Modelica.Blocks.Interfaces.RealOutput T_layers[n](each unit="K") annotation (Placement( transformation( extent={{-10,-10},{10,10}}, rotation=180, diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/StorageSimpleWall.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/StorageSimpleWall.mo index 7a8f2289cd..cbfd60e94a 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/StorageSimpleWall.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Storage/StorageSimpleWall.mo @@ -21,7 +21,7 @@ public "Mediums charastics HC2 (heat capacity, density, thermal conductivity)" annotation (Dialog(group="Medium"), choicesAllMatching); - parameter Modelica.SIunits.Temperature T_start=323.15 + parameter Modelica.Units.SI.Temperature T_start=323.15 "Start temperature of medium"; /* ******************************************************************* @@ -29,8 +29,10 @@ public ******************************************************************* */ parameter Integer n(min=3) = 5 "Model assumptions Number of Layers"; - parameter Modelica.SIunits.CoefficientOfHeatTransfer hConIn=1500 "Heat transfer coefficient at the inner wall"; - parameter Modelica.SIunits.CoefficientOfHeatTransfer hConOut=15 "Heat transfer coefficient at the outer wall"; + parameter Modelica.Units.SI.CoefficientOfHeatTransfer hConIn=1500 + "Heat transfer coefficient at the inner wall"; + parameter Modelica.Units.SI.CoefficientOfHeatTransfer hConOut=15 + "Heat transfer coefficient at the outer wall"; inner parameter AixLib.DataBase.Storage.BufferStorageBaseDataDefinition data= AixLib.DataBase.Storage.Generic_New_2000l() "Storage data" annotation (choicesAllMatching); @@ -41,7 +43,7 @@ public "Unloading cycle connection pairs (lower position first)" annotation (Dialog(tab="Connections")); - Modelica.SIunits.Energy Heat_loss; + Modelica.Units.SI.Energy Heat_loss; parameter Integer n_load_cycles=2 "Number of loading cycle connection pairs" annotation (Dialog(tab="Connections")); parameter Integer n_unload_cycles=2 @@ -53,12 +55,12 @@ public parameter Boolean use_heatingCoil1=true "Use Heating Coil1?" annotation(Dialog(tab="Heating Coils and Rod")); parameter Boolean use_heatingCoil2=true "Use Heating Coil2?" annotation(Dialog(tab="Heating Coils and Rod")); parameter Boolean use_heatingRod=true "Use Heating Rod?" annotation(Dialog(tab="Heating Coils and Rod")); - parameter Modelica.SIunits.CoefficientOfHeatTransfer hConHC1=20 "Model assumptions heat transfer coefficient HC1 <-> Heating Water" - annotation(Dialog(enable=use_heatingCoil1, tab= - "Heating Coils and Rod")); - parameter Modelica.SIunits.CoefficientOfHeatTransfer hConHC2=400 "Model assumptions heat transfer coefficient HC2 <-> Heating Water" - annotation(Dialog(enable=use_heatingCoil2, tab= - "Heating Coils and Rod")); + parameter Modelica.Units.SI.CoefficientOfHeatTransfer hConHC1=20 + "Model assumptions heat transfer coefficient HC1 <-> Heating Water" + annotation (Dialog(enable=use_heatingCoil1, tab="Heating Coils and Rod")); + parameter Modelica.Units.SI.CoefficientOfHeatTransfer hConHC2=400 + "Model assumptions heat transfer coefficient HC2 <-> Heating Water" + annotation (Dialog(enable=use_heatingCoil2, tab="Heating Coils and Rod")); parameter Boolean Up_to_down_HC1 = true "Heating Coil 1 orientation from up to down?" annotation(Dialog(enable = use_heatingCoil1,tab="Heating Coils and Rod")); @@ -67,8 +69,9 @@ public annotation(Dialog(enable = use_heatingCoil2,tab="Heating Coils and Rod")); parameter Boolean calcHCon=true "Use calculated value for inside heat transfer coefficient" annotation(Dialog(tab="Heating Coils and Rod")); - parameter Modelica.SIunits.CoefficientOfHeatTransfer hConIn_const=30 "Fix value for heat transfer coefficient inside pipe" - annotation(Dialog(enable=not calcHCon, tab="Heating Coils and Rod")); + parameter Modelica.Units.SI.CoefficientOfHeatTransfer hConIn_const=30 + "Fix value for heat transfer coefficient inside pipe" + annotation (Dialog(enable=not calcHCon, tab="Heating Coils and Rod")); // parameter Modelica.SIunits.Length d_HC1=0.02 "Inner diameter of HC1" // annotation(Dialog(enable = use_heatingCoil1,tab="Heating Coils and Rod")); // parameter Modelica.SIunits.Length d_HC2=0.02 "Inner diameter of HC2" @@ -192,10 +195,10 @@ HeatTransfer heatTransfer(final Medium=medium,final data=data, protected parameter Real k_zyl(final unit="W/K") = 2*Modelica.Constants.pi*data.hTank/n/(1/(hConIn*data.dTank/2) + 1/data.lambdaIns*log((data.dTank /2 + data.sIns)/(data.dTank/2)) + 1/(hConOut*(data.dTank/2 + data.sIns))); - parameter Modelica.SIunits.Area A_cov = data.dTank^2/4*Modelica.Constants.pi + parameter Modelica.Units.SI.Area A_cov=data.dTank^2/4*Modelica.Constants.pi "Area cop/bottom cover"; - parameter Modelica.SIunits.Area A_wall = (data.dTank+data.sIns+data.sWall)*Modelica.Constants.pi * data.hTank - "Area mantle"; + parameter Modelica.Units.SI.Area A_wall=(data.dTank + data.sIns + data.sWall) + *Modelica.Constants.pi*data.hTank "Area mantle"; //parameter Real k_cov(final unit="W/(m2.K)") = {data.lambdaIns/data.sIns*Modelica.Constants.pi*(data.dTank /2)^2 ; parameter Real k_wall[n](final unit="W/(m2.K)") = cat( diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Valves/BaseClases/HysteresisValve.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Valves/BaseClases/HysteresisValve.mo index b335f45889..458ed49939 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Valves/BaseClases/HysteresisValve.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Valves/BaseClases/HysteresisValve.mo @@ -5,7 +5,7 @@ model HysteresisValve parameter Real leakageOpening "The opening signal is limited by leakageOpening (to improve the numerics)"; - parameter Modelica.SIunits.Time riseTime; + parameter Modelica.Units.SI.Time riseTime; Modelica.Blocks.Continuous.Filter filter(order=2, f_cut=5/(2*Modelica.Constants.pi *riseTime)) if filteredOpening diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Valves/ThermostaticValve.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Valves/ThermostaticValve.mo index 21ce066eec..344780f1b9 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Valves/ThermostaticValve.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Components/Valves/ThermostaticValve.mo @@ -16,18 +16,19 @@ model ThermostaticValve parameter Boolean filteredOpening=false "= true, if opening is filtered with a 2nd order CriticalDamping filter" annotation(Dialog(group="Filtered opening"),choices(__Dymola_checkBox=true)); - parameter Modelica.SIunits.Time riseTime=1 + parameter Modelica.Units.SI.Time riseTime=1 "Rise time of the filter (time to reach 99.6 % of an opening step)" - annotation(Dialog(group="Filtered opening",enable=filteredOpening)); + annotation (Dialog(group="Filtered opening", enable=filteredOpening)); parameter Real leakageOpening(min=0,max=1)=0.001 "The opening signal is limited by leakageOpening (to improve the numerics)" annotation(Dialog(group="Filtered opening",enable=filteredOpening)); parameter Real k(min=0, unit="1") = 0.1 "Gain of controller"; - parameter Modelica.SIunits.Time Ti(min=Modelica.Constants.small, start=0.5) = 1000 - "Time constant of Integrator block"; + parameter Modelica.Units.SI.Time Ti( + min=Modelica.Constants.small, + start=0.5) = 1000 "Time constant of Integrator block"; -parameter Modelica.SIunits.MassFlowRate dotm_nominal = 0.5; + parameter Modelica.Units.SI.MassFlowRate dotm_nominal=0.5; //Modelica.SIunits.MassFlowRate dotm; //Real relativeFlowCoefficient; @@ -136,14 +137,14 @@ public controllerType=Modelica.Blocks.Types.SimpleController.PI, k=k, Ti=Ti, - limitsAtInit=true, yMax=1, yMin=0, xi_start=0, xd_start=0, y_start=0.5, - initType=Modelica.Blocks.Types.InitPID.InitialOutput) - annotation (Placement(transformation(extent={{11,-11},{-11,11}}, + initType=Modelica.Blocks.Types.Init.InitialOutput) annotation (Placement( + transformation( + extent={{11,-11},{-11,11}}, rotation=180, origin={-25,-1}))); FastHVAC.Components.Valves.BaseClases.HysteresisValve hysteresisValve( diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Data/Boiler/DayNightMode/HeatingCurvesDayNightBaseDataDefinition.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Data/Boiler/DayNightMode/HeatingCurvesDayNightBaseDataDefinition.mo index a7d3b5258e..63bc525e85 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Data/Boiler/DayNightMode/HeatingCurvesDayNightBaseDataDefinition.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Data/Boiler/DayNightMode/HeatingCurvesDayNightBaseDataDefinition.mo @@ -2,8 +2,8 @@ within AixLib.Obsolete.YearIndependent.FastHVAC.Data.Boiler.DayNightMode; record HeatingCurvesDayNightBaseDataDefinition "Base data definition for heating curves for Day and Night" extends Modelica.Icons.Record; -import SI = Modelica.SIunits; -import SIconv = Modelica.SIunits.Conversions.NonSIunits; +import Modelica.Units.SI; +import SIconv = Modelica.Units.NonSI; parameter String name "Name of data set"; parameter Real varFlowTempDay[:, :] "Variable flow temperature during day time"; diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Data/Boiler/General/BoilerTwoPointBaseDataDefinition.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Data/Boiler/General/BoilerTwoPointBaseDataDefinition.mo index 0dfc45d7dd..2ab5f7358a 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Data/Boiler/General/BoilerTwoPointBaseDataDefinition.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Data/Boiler/General/BoilerTwoPointBaseDataDefinition.mo @@ -2,8 +2,8 @@ within AixLib.Obsolete.YearIndependent.FastHVAC.Data.Boiler.General; record BoilerTwoPointBaseDataDefinition "Basic data for boiler with two point characteristic" extends Modelica.Icons.Record; - import SI = Modelica.SIunits; - import SIconv = Modelica.SIunits.Conversions.NonSIunits; + import Modelica.Units.SI; + import SIconv = Modelica.Units.NonSI; parameter String name "Name of Boiler"; parameter SI.Volume volume "Water volume of Boiler"; diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Data/CHP/BaseDataDefinition.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Data/CHP/BaseDataDefinition.mo index 5e462ce321..c35909bb08 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Data/CHP/BaseDataDefinition.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Data/CHP/BaseDataDefinition.mo @@ -2,14 +2,14 @@ within AixLib.Obsolete.YearIndependent.FastHVAC.Data.CHP; record BaseDataDefinition "Basic Mikro_KWK Data" extends Modelica.Icons.Record; - import SI = Modelica.SIunits; - import SIconv = Modelica.SIunits.Conversions.NonSIunits; -Modelica.SIunits.MassFlowRate dotm_max "maximum mass flow rate"; -Modelica.SIunits.MassFlowRate dotm_min "minimum mass flow rate"; + import Modelica.Units.SI; + import SIconv = Modelica.Units.NonSI; + Modelica.Units.SI.MassFlowRate dotm_max "maximum mass flow rate"; + Modelica.Units.SI.MassFlowRate dotm_min "minimum mass flow rate"; parameter SI.Power P_elRated "rated electrical power (unit=W)"; - parameter Modelica.SIunits.Time tauQ_th + parameter Modelica.Units.SI.Time tauQ_th "time constant thermal power start behavior (unit=sec) "; - parameter Modelica.SIunits.Time tauP_el + parameter Modelica.Units.SI.Time tauP_el "time constant electrical power start behavior (unit=sec)"; parameter Real a_0; diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Examples/Chiller/Chiller.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Examples/Chiller/Chiller.mo index fdbeb32e09..e758410d0a 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Examples/Chiller/Chiller.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Examples/Chiller/Chiller.mo @@ -88,10 +88,10 @@ model Chiller rotation=270, origin={54,-2}))); Modelica.Blocks.Sources.Sine sine( - freqHz=1/3600, + f=1/3600, amplitude=500, phase=3.1415926535898, - offset=500) "hourly sine " + offset=500) "hourly sine " annotation (Placement(transformation(extent={{66,8},{58,16}}))); Components.Pumps.Pump pump "source pump" annotation (Placement(transformation( diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Examples/HeatGenerators/HeatPump/HeatPump.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Examples/HeatGenerators/HeatPump/HeatPump.mo index ded41ab957..55fd8ab429 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Examples/HeatGenerators/HeatPump/HeatPump.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Examples/HeatGenerators/HeatPump/HeatPump.mo @@ -91,7 +91,7 @@ model HeatPump rotation=270, origin={54,-2}))); Modelica.Blocks.Sources.Sine sine( - freqHz=1/3600, + f=1/3600, amplitude=3000, offset=3000) "hourly sine " annotation (Placement(transformation(extent={{66,8},{58,16}}))); diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Examples/Valves/ThermostaticValveRadiator.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Examples/Valves/ThermostaticValveRadiator.mo index 196d63aaee..e261820a30 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Examples/Valves/ThermostaticValveRadiator.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Examples/Valves/ThermostaticValveRadiator.mo @@ -4,10 +4,9 @@ model ThermostaticValveRadiator Modelica.Blocks.Sources.Constant T_setRoom(k=273.15 + 20) annotation (Placement(transformation(extent={{-96,-42},{-78,-24}}))); Modelica.Blocks.Sources.Sine sine1( - freqHz=1/86400, + f=1/86400, offset=-2000, - amplitude=1214) - annotation (Placement(transformation( + amplitude=1214) annotation (Placement(transformation( extent={{-10,-10},{10,10}}, rotation=180, origin={90,30}))); diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Examples/Valves/ThreeWayValve.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Examples/Valves/ThreeWayValve.mo index 0ac3e9f34f..11e02458ac 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Examples/Valves/ThreeWayValve.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Examples/Valves/ThreeWayValve.mo @@ -17,7 +17,7 @@ model ThreeWayValve annotation (Placement(transformation(extent={{-94,2},{-74,22}}))); Modelica.Blocks.Sources.Sine sine( amplitude=0.5, - freqHz=1/3600, + f=1/3600, offset=0.5) annotation (Placement(transformation(extent={{-36,44},{-16,64}}))); equation diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Interfaces/EnthalpyPort.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Interfaces/EnthalpyPort.mo index f8265fd1fb..362b524038 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Interfaces/EnthalpyPort.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Interfaces/EnthalpyPort.mo @@ -1,11 +1,11 @@ within AixLib.Obsolete.YearIndependent.FastHVAC.Interfaces; partial connector EnthalpyPort "Enthalpy port for 1-dim. enthalpy transfer" - Modelica.SIunits.Temperature T "Port temperature"; - Modelica.SIunits.MassFlowRate m_flow + Modelica.Units.SI.Temperature T "Port temperature"; + Modelica.Units.SI.MassFlowRate m_flow "Mass flow rate(positive if flowing from outside into the component)"; - Modelica.SIunits.SpecificEnthalpy h "Specific enthalpy of fluid"; - Modelica.SIunits.SpecificHeatCapacity c "Constant specific heat capacity"; + Modelica.Units.SI.SpecificEnthalpy h "Specific enthalpy of fluid"; + Modelica.Units.SI.SpecificHeatCapacity c "Constant specific heat capacity"; annotation (Documentation(info="This is an interface model for a 1-dimensional enthalpy port to consider enthalpy transfer diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Interfaces/TwoPortHeatMassExchanger.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Interfaces/TwoPortHeatMassExchanger.mo index 2fb02c73b5..982f831788 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Interfaces/TwoPortHeatMassExchanger.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Interfaces/TwoPortHeatMassExchanger.mo @@ -2,20 +2,19 @@ model TwoPortHeatMassExchanger "Model transporting one enthalpy stream with storing mass or energy" parameter Modelica.Media.Interfaces.Types.Temperature T_start = workingFluid.T0; - parameter Modelica.SIunits.Mass m_fluid "Mass of working fluid"; + parameter Modelica.Units.SI.Mass m_fluid "Mass of working fluid"; parameter Media.BaseClasses.MediumSimple medium= AixLib.Obsolete.YearIndependent.FastHVAC.Media.WaterSimple() "Mediums charastics (heat capacity, density, thermal conductivity)"; - parameter Modelica.SIunits.MassFlowRate m_flow_nominal - "Nominal mass flow rate" - annotation(Dialog(group = "Nominal condition")); - parameter Modelica.SIunits.MassFlowRate m_flow_small(min=0) = 1E-4*abs(m_flow_nominal) - "Small mass flow rate for regularization of zero flow" - annotation(Dialog(tab = "Advanced")); - final parameter Modelica.SIunits.MassFlowRate m_flow_start = 0 - "Start value for m_flow, used to avoid a warning if not set in m_flow, and to avoid m_flow.start in parameter window"; - Modelica.SIunits.MassFlowRate m_flow(start=m_flow_start) = enthalpyPort_a.m_flow - "Mass flow rate from port_a to port_b (m_flow > 0 is design flow direction)"; + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal + "Nominal mass flow rate" annotation (Dialog(group="Nominal condition")); + parameter Modelica.Units.SI.MassFlowRate m_flow_small(min=0) = 1E-4*abs( + m_flow_nominal) "Small mass flow rate for regularization of zero flow" + annotation (Dialog(tab="Advanced")); + final parameter Modelica.Units.SI.MassFlowRate m_flow_start=0 + "Start value for m_flow, used to avoid a warning if not set in m_flow, and to avoid m_flow.start in parameter window"; + Modelica.Units.SI.MassFlowRate m_flow(start=m_flow_start) = enthalpyPort_a.m_flow + "Mass flow rate from port_a to port_b (m_flow > 0 is design flow direction)"; Interfaces.EnthalpyPort_a enthalpyPort_a "FastHVAC connector a (positive design flow direction is from port_a to port_b)" annotation (Placement(transformation(extent={{-104,-4},{-96,4}}))); diff --git a/AixLib/Obsolete/YearIndependent/FastHVAC/Media/BaseClasses/MediumSimple.mo b/AixLib/Obsolete/YearIndependent/FastHVAC/Media/BaseClasses/MediumSimple.mo index dae4525889..cd8993ddd0 100644 --- a/AixLib/Obsolete/YearIndependent/FastHVAC/Media/BaseClasses/MediumSimple.mo +++ b/AixLib/Obsolete/YearIndependent/FastHVAC/Media/BaseClasses/MediumSimple.mo @@ -1,11 +1,11 @@ within AixLib.Obsolete.YearIndependent.FastHVAC.Media.BaseClasses; record MediumSimple -parameter Modelica.SIunits.SpecificHeatCapacity c + parameter Modelica.Units.SI.SpecificHeatCapacity c "Heat capacity of considered medium"; -parameter Modelica.SIunits.Density rho "Density of considered medium"; -parameter Modelica.SIunits.ThermalConductivity lambda + parameter Modelica.Units.SI.Density rho "Density of considered medium"; + parameter Modelica.Units.SI.ThermalConductivity lambda "Thermal conductivity of considered medium"; -parameter Modelica.SIunits.DynamicViscosity eta + parameter Modelica.Units.SI.DynamicViscosity eta "Dynamic viscosity of considered medium"; annotation (Documentation(info="

                                      This record declares parameters that are used by models within the diff --git a/AixLib/Obsolete/YearIndependent/Utilities/HeatTransfer.mo b/AixLib/Obsolete/YearIndependent/Utilities/HeatTransfer.mo index 83ec1d0b90..3a9590a9d7 100644 --- a/AixLib/Obsolete/YearIndependent/Utilities/HeatTransfer.mo +++ b/AixLib/Obsolete/YearIndependent/Utilities/HeatTransfer.mo @@ -5,24 +5,26 @@ package HeatTransfer "\"Models for different types of heat transfer\"" "Model for Heat Transfer through convection inside a pipe, based on Nussel Correlations" extends AixLib.Obsolete.BaseClasses.ObsoleteModel; extends Modelica.Thermal.HeatTransfer.Interfaces.Element1D; - parameter Modelica.SIunits.Length length(min=0) "length of total pipe"; - parameter Modelica.SIunits.Length d_i(min=0) "inner diameter of pipe"; - parameter Modelica.SIunits.Length d_a(min=0) "outer diameter of pipe"; - parameter Modelica.SIunits.Area A_sur(min=0) "surface for heat transfer"; + parameter Modelica.Units.SI.Length length(min=0) "length of total pipe"; + parameter Modelica.Units.SI.Length d_i(min=0) "inner diameter of pipe"; + parameter Modelica.Units.SI.Length d_a(min=0) "outer diameter of pipe"; + parameter Modelica.Units.SI.Area A_sur(min=0) "surface for heat transfer"; parameter Boolean calcHCon=true "Use calculated value for inside heat coefficient"; - parameter Modelica.SIunits.CoefficientOfHeatTransfer hConIn_const=30 "Constant convective heat transfer coefficient (Inside)" - annotation(Dialog(enable=not calcHCon)); + parameter Modelica.Units.SI.CoefficientOfHeatTransfer hConIn_const=30 + "Constant convective heat transfer coefficient (Inside)" + annotation (Dialog(enable=not calcHCon)); parameter Obsolete.YearIndependent.FastHVAC.Media.BaseClasses.MediumSimple medium=Obsolete.YearIndependent.FastHVAC.Media.WaterSimple(); - Modelica.SIunits.ReynoldsNumber Re; - Modelica.SIunits.Velocity v; - Modelica.SIunits.NusseltNumber Nu; - Modelica.SIunits.NusseltNumber Nu_lam_1; - Modelica.SIunits.NusseltNumber Nu_lam_2; - Modelica.SIunits.NusseltNumber Nu_lam; - Modelica.SIunits.NusseltNumber Nu_tur; - Modelica.SIunits.PrandtlNumber Pr; - Modelica.SIunits.CoefficientOfHeatTransfer hCon "Convective heat transfer coefficient"; + Modelica.Units.SI.ReynoldsNumber Re; + Modelica.Units.SI.Velocity v; + Modelica.Units.SI.NusseltNumber Nu; + Modelica.Units.SI.NusseltNumber Nu_lam_1; + Modelica.Units.SI.NusseltNumber Nu_lam_2; + Modelica.Units.SI.NusseltNumber Nu_lam; + Modelica.Units.SI.NusseltNumber Nu_tur; + Modelica.Units.SI.PrandtlNumber Pr; + Modelica.Units.SI.CoefficientOfHeatTransfer hCon + "Convective heat transfer coefficient"; Real zeta "pressure loss coefficient"; Modelica.Blocks.Interfaces.RealInput m_flow annotation (Placement(transformation( diff --git a/AixLib/Obsolete/package.order b/AixLib/Obsolete/package.order index 918050939c..a17dc4be9c 100644 --- a/AixLib/Obsolete/package.order +++ b/AixLib/Obsolete/package.order @@ -1,7 +1,7 @@ -UsersGuide -YearIndependent -Year2019 -Year2020 -Year2021 -BaseClasses - +UsersGuide +Year2019 +Year2020 +Year2021 +Year2022 +YearIndependent +BaseClasses diff --git a/AixLib/Resources/C-Sources/cryptographicsHash.c b/AixLib/Resources/C-Sources/cryptographicsHash.c index 793a3e3455..85a139e09e 100644 --- a/AixLib/Resources/C-Sources/cryptographicsHash.c +++ b/AixLib/Resources/C-Sources/cryptographicsHash.c @@ -23,8 +23,8 @@ A million repetitions of "a" /* for uint32_t */ #include -#include #include "cryptographicsHash.h" +#include "ModelicaUtilities.h" #define rol(value, bits) (((value) << (bits)) | ((value) >> (32 - (bits)))) diff --git a/AixLib/Resources/C-Sources/fileWriterFree.c b/AixLib/Resources/C-Sources/fileWriterFree.c index 3ba9490956..414ed1fc71 100644 --- a/AixLib/Resources/C-Sources/fileWriterFree.c +++ b/AixLib/Resources/C-Sources/fileWriterFree.c @@ -2,9 +2,11 @@ * * Michael Wetter, LBNL 2018-05-12 */ -#include "fileWriterStructure.h" #include #include +#include "ModelicaUtilities.h" + +#include "fileWriterStructure.h" void prependString(const char* fileName, const char* string){ char *origString; diff --git a/AixLib/Resources/C-Sources/fileWriterInit.c b/AixLib/Resources/C-Sources/fileWriterInit.c index 01d3c248bb..1864af64e1 100644 --- a/AixLib/Resources/C-Sources/fileWriterInit.c +++ b/AixLib/Resources/C-Sources/fileWriterInit.c @@ -7,6 +7,7 @@ #include #include #include +#include "ModelicaUtilities.h" #include "fileWriterStructure.c" diff --git a/AixLib/Resources/C-Sources/fileWriterStructure.c b/AixLib/Resources/C-Sources/fileWriterStructure.c index 822731ba26..cb32894d11 100644 --- a/AixLib/Resources/C-Sources/fileWriterStructure.c +++ b/AixLib/Resources/C-Sources/fileWriterStructure.c @@ -1,6 +1,8 @@ #ifndef IBPSA_FILEWRITERStructure_c #define IBPSA_FILEWRITERStructure_c +#include "ModelicaUtilities.h" + #include "fileWriterStructure.h" signed int fileWriterIsUnique(const char* fileName){ diff --git a/AixLib/Resources/C-Sources/getTimeSpan.c b/AixLib/Resources/C-Sources/getTimeSpan.c index 7976737bac..63cab8d20b 100644 --- a/AixLib/Resources/C-Sources/getTimeSpan.c +++ b/AixLib/Resources/C-Sources/getTimeSpan.c @@ -2,8 +2,12 @@ * getTimeSpan.c */ +#ifndef GETTIMESPAN_C_ +#define GETTIMESPAN_C_ + #include -#include +#include "ModelicaUtilities.h" + #include "getTimeSpan.h" /* @@ -136,3 +140,5 @@ void getTimeSpan(const char * fileName, const char * tabName, double* timeSpan) return; } + +#endif \ No newline at end of file diff --git a/AixLib/Resources/C-Sources/jsonWriterInit.c b/AixLib/Resources/C-Sources/jsonWriterInit.c index 00d9893fa0..8970dc4521 100644 --- a/AixLib/Resources/C-Sources/jsonWriterInit.c +++ b/AixLib/Resources/C-Sources/jsonWriterInit.c @@ -5,8 +5,10 @@ * Filip Jorissen, KU Leuven */ -#include "jsonWriterInit.h" #include "fileWriterStructure.c" +#include "ModelicaUtilities.h" + +#include "jsonWriterInit.h" void* jsonWriterInit( const char* instanceName, diff --git a/AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/725650.epw b/AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD100.epw similarity index 99% rename from AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/725650.epw rename to AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD100.epw index 2f60dc3b59..2493adbaa7 100644 --- a/AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/725650.epw +++ b/AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD100.epw @@ -1,8768 +1,8768 @@ -LOCATION,Denver Intl AP,CO,USA,TMY3,725650,39.83300,-104.6500,-7.0,1650.0 -DESIGN CONDITIONS,1,2017 ASHRAE Handbook -- Fundamentals - Chapter 14 Climatic Design Information,,Heating,12,-18.2,-14.8,-22.4,0.6,-11.3,-19.8,0.8,-7,13.7,3.8,11.9,2.9,3.4,230,Cooling,7,15.2,34.9,15.4,33.5,15.4,31.9,15.3,18.2,27.2,17.6,26.9,16.9,26.4,4.1,30,15.9,13.9,20,15,13.1,19.8,14.1,12.3,19.7,58.3,26.9,55.8,26.8,53.7,26.3,20.7,Extremes,12.1,10.6,8.9,-23.8,37.3,3.2,1.2,-26.2,38.2,-28.1,38.9,-29.9,39.6,-32.3,40.4,-24.1 -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,"NREL TMY Data Set (2008) updated 2015 to include better precipitation;Period of Record 1973-2005 (Generally)" -COMMENTS 2,"Downloaded from Climate.Onebuilding.Org -- Ground temps represent undisturbed earth temperatures - calculated from this weather data." -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,-19.7,85,83700,0,0,181,0,0,0,0,0,0,0,0,0,2,2,6.4,20306,9,999999999,3,0.044,0,88,0,0,1 -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,3,3,6.4,18674,9,999999999,3,0.044,0,88,0,0,1 -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,3,3,6.4,16614,9,999999999,3,0.044,0,88,0,0,1 -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,4,4,6.4,14677,9,999999999,3,0.044,0,88,0,0,1 -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,-14.6,86,83400,0,0,205,0,0,0,0,0,0,0,0,0,5,5,6.4,12892,9,999999999,2,0.044,0,88,0,0,1 -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,6,6,6.4,11077,9,999999999,2,0.044,0,88,0,0,1 -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,6,6,6.4,11821,9,999999999,2,0.044,0,88,0,0,1 -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,82,82800,45,908,231,9,17,8,1017,0,906,267,120,1.4,7,7,6.4,8786,9,999999999,2,0.044,0,88,0,0,1 -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,9702,2331,8425,2365,140,1.3,7,7,6.4,7581,9,999999999,2,0.044,0,88,0,0,1 -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,66,82700,433,1415,247,266,494,115,29735,29187,12906,4128,200,1.7,8,4,6.4,11251,9,999999999,2,0.044,0,88,0,0,1 -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,40531,37439,15847,5427,310,1.7,8,4,6.4,9436,9,999999999,2,0.044,0,88,0,0,1 -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,48353,42657,21129,7086,20,4.6,7,7,6.4,6706,9,999999999,2,0.044,0,88,0,0,1 -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,40696,30546,21350,7150,20,7.2,8,5,6.4,6706,9,999999999,2,0.044,0,88,0,0,1 -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,39102,35282,14922,5203,10,8.2,7,4,6.4,77777,9,999999999,2,0.044,0,88,0,0,1 -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,27579,21976,16933,4963,10,7.7,8,3,6.4,77777,9,999999999,2,0.044,0,88,0,0,1 -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,36,82100,263,1415,252,131,369,62,14618,9882,6940,2128,10,6.2,4,1,6.4,77777,9,999999999,2,0.044,0,88,0,0,1 -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,2017,0,1235,360,20,3.6,1,0,6.4,77777,9,999999999,2,0.044,0,88,0,0,1 -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,6.4,77777,9,999999999,2,0.044,0,88,0,0,1 -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,-9.4,68,82100,0,0,223,0,0,0,0,0,0,0,350,5.7,0,0,6.4,77777,9,999999999,2,0.044,0,88,0,0,1 -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,6.4,77777,9,999999999,2,0.044,0,88,0,0,1 -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,6.4,77777,9,999999999,2,0.044,0,88,0,0,1 -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,6.4,77777,9,999999999,2,0.044,0,88,0,0,1 -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,6.4,77777,9,999999999,2,0.044,0,88,0,0,1 -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,-12.8,50,81900,0,0,220,0,0,0,0,0,0,0,10,8.8,0,0,6.4,77777,9,999999999,2,0.044,0,88,0,0,1 -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,-13.3,48,81900,0,0,220,0,0,0,0,0,0,0,20,8.8,0,0,6.4,77777,9,999999999,2,0.044,0,88,0,0,1 -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,6.4,77777,9,999999999,2,0.044,0,88,0,0,1 -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,-15,41,81900,0,0,218,0,0,0,0,0,0,0,20,7.2,0,0,6.4,77777,9,999999999,2,0.044,0,88,0,0,1 -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,48,81900,0,0,213,0,0,0,0,0,0,0,20,6.7,0,0,6.4,77777,9,999999999,2,0.044,0,88,0,0,1 -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,43,82400,0,0,216,0,0,0,0,0,0,0,360,3.6,0,0,6.4,77777,9,999999999,2,0.044,0,88,0,0,1 -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,45,81900,0,0,219,0,0,0,0,0,0,0,10,3.1,1,1,6.4,77777,9,999999999,2,0.044,0,88,0,0,1 -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,6.4,77777,9,999999999,2,0.044,0,88,0,0,1 -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,34,82000,44,908,230,15,63,12,1640,0,1315,354,40,1.5,9,1,6.4,77777,9,999999999,2,0.044,0,88,0,0,1 -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,9415,3114,7113,2121,110,2.1,7,7,6.4,4572,9,999999999,3,0.044,0,88,0,0,1 -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,26275,23064,13639,4289,140,2.1,8,5,6.4,7620,9,999999999,3,0.044,0,88,0,0,1 -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,45947,44608,11053,4026,130,2.6,5,4,6.4,77777,9,999999999,3,0.044,0,88,0,0,1 -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,39300,28280,21777,7239,160,2.1,8,5,6.4,7620,9,999999999,3,0.044,0,88,0,0,1 -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,38102,30848,13295,4917,180,2.6,9,6,6.4,7620,9,999999999,3,0.044,0,88,0,0,1 -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,31171,12577,24851,7285,140,2.6,9,8,6.4,4572,9,999999999,3,0.044,0,88,0,0,1 -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,-8.3,25,82300,447,1415,301,260,368,144,28633,24914,15930,4815,150,3.1,9,7,6.4,4572,9,999999999,3,0.044,0,88,0,0,1 -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,25,82300,266,1415,284,109,249,62,12178,6771,6948,2139,140,3.1,8,5,6.4,7620,9,999999999,3,0.044,0,88,0,0,1 -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,26,82100,58,1026,272,21,102,15,2303,0,1649,452,150,2.6,6,2,6.4,77777,9,999999999,3,0.044,0,88,0,0,1 -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,-10,30,82100,0,0,269,0,0,0,0,0,0,0,170,3.6,6,3,6.4,77777,9,999999999,3,0.044,0,88,0,0,1 -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,39,82300,0,0,248,0,0,0,0,0,0,0,150,3.6,2,1,6.4,77777,9,999999999,3,0.044,0,88,0,0,1 -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,-10,43,82200,0,0,244,0,0,0,0,0,0,0,180,3.6,3,1,6.4,77777,9,999999999,3,0.044,0,88,0,0,1 -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,6.4,77777,9,999999999,3,0.044,0,88,0,0,1 -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,6.4,77777,9,999999999,3,0.044,0,88,0,0,1 -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,1,1,6.4,77777,9,999999999,3,0.044,0,88,0,0,1 -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,-13.3,32,82100,0,0,236,0,0,0,0,0,0,0,230,2.6,1,0,6.4,77777,9,999999999,3,0.044,0,88,0,0,1 -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,6.4,77777,9,999999999,3,0.044,0,88,0,0,1 -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,6.4,77777,9,999999999,3,0.044,0,88,0,0,1 -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,6.4,77777,9,999999999,4,0.044,0,88,0,0,1 -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,6.4,77777,9,999999999,4,0.044,0,88,0,0,1 -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,6.4,77777,9,999999999,4,0.044,0,88,0,0,1 -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,6.4,77777,9,999999999,4,0.044,0,88,0,0,1 -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,6.4,7620,9,999999999,4,0.044,0,88,0,0,1 -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,1530,0,1314,353,250,6.7,7,5,6.4,7620,9,999999999,4,0.044,0,88,0,0,1 -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,8888,3088,5979,1865,210,4.6,8,5,6.4,7010,9,999999999,3,0.044,0,88,0,0,1 -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,21515,15197,12712,4086,210,5.2,7,6,6.4,7620,9,999999999,3,0.044,0,88,0,0,1 -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,38215,34424,10615,3887,290,1.5,6,3,6.4,77777,9,999999999,3,0.044,0,88,0,0,1 -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,53327,49159,11651,4370,250,7.7,2,1,6.4,77777,9,999999999,3,0.044,0,88,0,0,1 -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,29,83400,641,1415,265,426,757,83,51150,45215,9994,3800,280,9.3,4,1,6.4,77777,9,999999999,3,0.044,0,88,0,0,1 -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,42817,39540,10202,3767,300,11.1,5,2,6.4,77777,9,999999999,3,0.044,0,88,0,0,1 -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,28697,26840,12134,4008,280,7.4,6,3,6.4,77777,9,999999999,3,0.044,0,88,0,0,1 -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,12873,6503,9200,2594,260,6.7,10,5,6.4,77777,9,999999999,3,0.044,0,88,0,0,1 -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,-12.9,42,83600,60,1049,240,22,15,21,2354,0,2254,553,230,4.6,10,5,6.4,77777,9,999999999,3,0.044,0,88,0,0,1 -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,58,83500,0,0,231,0,0,0,0,0,0,0,240,2.8,10,5,6.4,77777,9,999999999,3,0.044,0,88,0,0,1 -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,6.4,6096,9,999999999,3,0.044,0,88,0,0,1 -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,6.4,6096,9,999999999,3,0.044,0,88,0,0,1 -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,6.4,5486,9,999999999,3,0.044,0,88,0,0,1 -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,6.4,5486,9,999999999,3,0.044,0,88,0,0,1 -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,6.4,4572,9,999999999,3,0.044,0,88,0,0,1 -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,6.4,4572,9,999999999,3,0.044,0,88,0,0,1 -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,6.4,3658,9,999999999,3,0.044,0,88,0,0,1 -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,10,10,6.4,3353,9,999999999,3,0.044,0,88,0,0,1 -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,6706,9,999999999,3,0.044,0,88,0,0,1 -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,77777,9,999999999,3,0.044,0,88,0,0,1 -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,77777,9,999999999,3,0.044,0,88,0,0,1 -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,77777,9,999999999,3,0.044,0,88,0,0,1 -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,8.1,77777,9,999999999,3,0.044,0,88,0,0,1 -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,64,83300,44,908,210,14,139,7,1599,0,800,240,0,0,1,1,8.1,77777,9,999999999,3,0.044,0,88,0,0,1 -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,6910,1729,3754,1252,0,0,7,6,8.1,7620,9,999999999,3,0.044,0,88,0,0,1 -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,14618,7448,9352,3211,180,1.5,10,9,8.1,3658,9,999999999,3,0.044,0,88,0,0,1 -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,15354,0,15478,5790,210,2.1,10,10,8.1,4267,9,999999999,3,0.044,0,88,0,0,1 -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,17675,0,17822,6793,0,0,10,10,8.1,4267,9,999999999,3,0.044,0,88,0,0,1 -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,-6.8,32,83600,644,1415,314,140,0,140,14222,0,14340,5834,350,3.6,10,10,8.1,2438,9,999999999,3,0.044,0,88,0,0,1 -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,12631,0,12734,5089,10,4.1,10,10,8.2,2438,9,999999999,4,0.044,0,88,0,0,1 -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,12050,2781,10132,3482,360,3.6,9,9,8.2,1981,9,999999999,4,0.044,0,88,0,0,1 -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,-5.6,31,83300,273,1415,309,44,59,33,5178,861,3890,1315,300,7.2,10,8,8.2,4267,9,999999999,4,0.044,0,88,0,0,1 -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,2184,0,1861,506,0,0,9,7,8.2,4267,9,999999999,4,0.044,0,88,0,0,1 -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,40,83000,0,0,297,0,0,0,0,0,0,0,80,3.1,8,8,8.2,7315,9,999999999,4,0.044,0,88,0,0,1 -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.2,7315,9,999999999,4,0.044,0,88,0,0,1 -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.2,77777,9,999999999,4,0.044,0,88,0,0,1 -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.3,77777,9,999999999,4,0.044,0,88,0,0,1 -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,29,82700,0,0,271,0,0,0,0,0,0,0,160,3.1,3,3,8.3,77777,9,999999999,4,0.044,0,88,0,0,1 -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,-9.4,31,82600,0,0,267,0,0,0,0,0,0,0,250,3.1,2,2,8.3,77777,9,999999999,4,0.044,0,88,0,0,1 -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,-10,21,82600,0,0,276,0,0,0,0,0,0,0,210,6.7,0,0,8.3,77777,9,999999999,5,0.044,0,88,0,0,1 -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,-9.4,31,82400,0,0,258,0,0,0,0,0,0,0,210,4.6,0,0,8.3,77777,9,999999999,5,0.044,0,88,0,0,1 -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.3,77777,9,999999999,5,0.044,0,88,0,0,1 -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.3,77777,9,999999999,5,0.044,0,88,0,0,1 -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.4,77777,9,999999999,5,0.044,0,88,0,0,1 -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.4,77777,9,999999999,5,0.044,0,88,0,0,1 -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.4,77777,9,999999999,5,0.044,0,88,0,0,1 -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,-6.1,42,82800,0,0,261,0,0,0,0,0,0,0,300,4.6,0,0,8.4,77777,9,999999999,5,0.044,0,88,0,0,1 -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,-5,33,82800,44,908,282,16,174,7,1825,0,799,240,360,1.5,0,0,8.4,77777,9,999999999,5,0.044,0,88,0,0,1 -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,35,82900,249,1415,277,142,630,31,15139,49899,4994,645,50,4.1,0,0,8.4,77777,9,999999999,5,0.044,0,88,0,0,1 -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,31144,73964,6743,1000,360,4.6,0,0,8.4,77777,9,999999999,5,0.044,0,88,0,0,1 -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,46004,41676,7746,2907,40,5.7,3,1,8.5,77777,9,999999999,5,0.044,0,88,0,0,1 -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,-6.7,20,83000,642,1415,306,465,894,60,49326,86938,9035,1381,30,5.1,2,1,8.5,77777,9,999999999,5,0.044,0,88,0,0,1 -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,54820,47244,8426,3239,30,4.1,3,1,8.5,77777,9,999999999,5,0.044,0,88,0,0,1 -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,47474,42912,8213,3089,50,3.1,2,1,8.5,77777,9,999999999,5,0.044,0,88,0,0,1 -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,-3.9,36,83100,457,1415,288,239,526,68,28006,24737,7989,2839,70,2.6,3,1,8.5,77777,9,999999999,5,0.044,0,88,0,0,1 -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,14622,7878,4651,1552,100,2.1,2,1,8.5,77777,9,999999999,5,0.044,0,88,0,0,1 -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,2630,0,1868,515,160,2.6,5,3,8.5,77777,9,999999999,5,0.044,0,88,0,0,1 -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.6,77777,9,999999999,5,0.044,0,88,0,0,1 -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,32,83200,0,0,264,0,0,0,0,0,0,0,170,4.1,3,3,8.6,77777,9,999999999,5,0.044,0,88,0,0,1 -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.6,77777,9,999999999,5,0.044,0,88,0,0,1 -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.6,77777,9,999999999,6,0.044,0,88,0,0,1 -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,-8.9,47,83200,0,0,257,0,0,0,0,0,0,0,110,2.1,6,6,8.6,7620,9,999999999,6,0.044,0,88,0,0,1 -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,41,83600,0,0,256,0,0,0,0,0,0,0,180,1.5,8,5,8.6,7620,9,999999999,6,0.044,0,88,0,0,1 -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,-10.6,40,83100,0,0,255,0,0,0,0,0,0,0,240,3.1,7,6,8.7,7620,9,999999999,6,0.044,0,88,0,0,1 -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,-11.7,37,83200,0,0,274,0,0,0,0,0,0,0,250,3.6,10,10,8.7,7620,9,999999999,6,0.043,0,88,0,0,1 -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.7,6706,9,999999999,6,0.043,0,88,0,0,1 -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.7,6706,9,999999999,6,0.043,0,88,0,0,1 -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,-14.4,29,83300,0,0,264,0,0,0,0,0,0,0,330,3.6,10,9,8.7,6706,9,999999999,6,0.043,0,88,0,0,1 -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.7,8534,9,999999999,6,0.043,0,88,0,0,1 -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,-13.9,30,83500,0,0,236,0,0,0,0,0,0,0,200,3.1,0,0,8.7,77777,9,999999999,6,0.043,0,88,0,0,1 -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.8,7620,9,999999999,6,0.043,0,88,0,0,1 -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,1130,0,905,266,240,5.2,5,3,8.8,77777,9,999999999,5,0.043,0,88,0,0,1 -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,14021,8242,5669,1791,240,4.1,4,2,8.8,77777,9,999999999,5,0.043,0,88,0,0,1 -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,-7.8,52,83900,437,1415,252,265,510,107,29831,29167,12090,3951,280,3.6,3,3,8.8,77777,9,999999999,5,0.043,0,88,0,0,1 -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,-7.8,52,84000,571,1415,241,406,859,58,43021,82130,8826,1272,210,1.5,0,0,8.8,77777,9,999999999,5,0.043,0,88,0,0,1 -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,49796,86812,9600,1409,130,3.6,0,0,8.8,77777,9,999999999,5,0.043,0,88,0,0,1 -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,50257,87146,9594,1416,130,7.7,0,0,8.8,77777,9,999999999,5,0.043,0,88,0,0,1 -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,44495,83289,8955,1297,120,6.7,0,0,8.9,77777,9,999999999,5,0.043,0,88,0,0,1 -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,32776,73243,7761,1068,120,8.2,0,0,8.9,77777,9,999999999,5,0.043,0,88,0,0,1 -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,18950,11287,4336,1459,130,7.2,0,0,8.9,77777,9,999999999,5,0.043,0,88,0,0,1 -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,2926,0,1466,433,140,8.2,0,0,8.9,77777,9,999999999,5,0.043,0,88,0,0,1 -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.9,77777,9,999999999,5,0.043,0,88,0,0,1 -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.9,77777,9,999999999,5,0.043,0,88,0,0,1 -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.9,77777,9,999999999,4,0.043,0,88,0,0,1 -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,9,77777,9,999999999,4,0.043,0,88,0,0,1 -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,9,6706,9,999999999,4,0.043,0,88,0,0,1 -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,82,83900,0,0,246,0,0,0,0,0,0,0,250,2.1,10,10,9,2743,9,999999999,4,0.043,0,88,0,0,1 -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,9,2743,9,999999999,4,0.043,0,88,0,0,1 -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,9,2286,9,999999999,4,0.043,0,88,0,0,1 -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,86,83500,0,0,244,0,0,0,0,0,0,0,260,2.6,10,10,9,2438,9,999999999,4,0.043,0,88,0,0,1 -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,9,1676,9,999999999,4,0.043,0,88,0,0,1 -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,9.1,1219,9,999999999,4,0.043,0,88,0,0,1 -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,10,10,9.1,1829,9,999999999,4,0.043,0,88,0,0,1 -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,9.1,732,9,999999999,4,0.043,0,88,0,0,1 -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,9.1,61,9,999999999,4,0.043,0,88,0,0,1 -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,483,0,486,181,240,3.6,10,10,9.1,152,9,999999999,4,0.043,0,88,0,0,1 -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,3742,0,3769,1447,190,4.1,10,10,9.1,61,9,999999999,4,0.043,0,88,0,0,1 -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,25,83700,438,1415,275,69,0,69,6902,0,6955,2833,260,1.5,10,10,9.1,30,9,999999999,4,0.043,0,88,0,0,1 -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,9403,0,9479,4011,10,1.5,10,10,9.2,30,9,999999999,4,0.043,0,88,0,0,1 -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,-13.3,22,83700,646,1415,293,105,0,105,10679,0,10768,4653,80,2.1,10,10,9.2,152,9,999999999,4,0.043,0,88,0,0,1 -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,18,83700,652,1415,294,106,0,106,10788,0,10877,4705,100,2.1,10,10,9.2,152,9,999999999,4,0.043,0,88,0,0,1 -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,-16.7,16,83700,590,1415,289,95,0,95,9621,0,9699,4126,330,2.1,10,10,9.2,0,9,999999999,4,0.043,0,88,0,0,1 -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,-16.7,16,83600,464,1415,289,74,0,74,7419,0,7476,3061,110,3.1,10,10,9.2,122,9,999999999,4,0.043,0,88,0,0,1 -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,4346,0,4377,1691,120,2.1,10,10,9.2,183,9,999999999,4,0.043,0,88,0,0,1 -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,-15.6,18,83300,72,1144,291,9,0,9,872,0,878,325,150,3.6,10,10,9.2,183,9,999999999,4,0.043,0,88,0,0,1 -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,9.3,1158,9,999999999,4,0.043,0,88,0,0,1 -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,-16.1,17,83300,0,0,290,0,0,0,0,0,0,0,220,3.6,10,10,9.3,1097,9,999999999,4,0.043,0,88,0,0,1 -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,9.3,1676,9,999999999,4,0.043,0,88,0,0,1 -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,23,83100,0,0,272,0,0,0,0,0,0,0,210,5.2,10,9,9.3,2438,9,999999999,4,0.043,0,88,0,0,1 -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,9.3,2438,9,999999999,5,0.043,0,88,0,0,1 -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,-11.7,37,83200,0,0,254,0,0,0,0,0,0,0,230,4.6,6,6,9.3,6096,9,999999999,5,0.043,0,88,0,0,1 -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,9.3,2438,9,999999999,5,0.043,0,88,0,0,1 -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,9.4,1219,9,999999999,5,0.043,0,88,0,0,1 -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,9.4,975,9,999999999,5,0.043,0,88,0,0,1 -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,9.4,1829,9,999999999,5,0.043,0,88,0,0,1 -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,9.4,152,9,999999999,5,0.043,0,88,0,0,1 -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,9.4,2438,9,999999999,5,0.043,0,88,0,0,1 -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,9.4,2134,9,999999999,5,0.043,0,88,0,0,1 -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,9.4,77777,9,999999999,5,0.043,0,88,0,0,1 -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,1568,0,1010,292,270,3.1,3,3,9.5,77777,9,999999999,5,0.043,0,88,0,0,1 -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,14054,46276,4531,642,280,6.7,1,1,9.5,77777,9,999999999,5,0.043,0,88,0,0,1 -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,-11.1,27,83000,439,1415,261,290,797,43,30827,72657,6737,1005,260,5.2,1,1,9.5,77777,9,999999999,5,0.043,0,88,0,0,1 -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,41607,38777,12910,4630,270,7.2,2,2,9.5,77777,9,999999999,5,0.043,0,88,0,0,1 -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,50839,44975,10678,4054,290,7.2,3,3,9.5,77777,9,999999999,5,0.043,0,88,0,0,1 -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,54949,48424,10129,3869,280,7.7,1,1,9.5,77777,9,999999999,5,0.043,0,88,0,0,1 -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,46906,91111,6482,1134,280,5.2,0,0,9.5,77777,9,999999999,5,0.043,0,88,0,0,1 -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,35228,82196,5528,946,290,5.2,0,0,9.6,77777,9,999999999,5,0.043,0,88,0,0,1 -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,19274,62134,4220,675,300,2.6,0,0,9.6,77777,9,999999999,5,0.043,0,88,0,0,1 -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,31,82200,75,1167,260,29,272,12,3309,0,1371,416,290,3.6,2,1,9.6,77777,9,999999999,5,0.043,0,88,0,0,1 -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,41,82200,0,0,252,0,0,0,0,0,0,0,240,3.6,5,3,9.6,77777,9,999999999,5,0.043,0,88,0,0,1 -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,9.6,7620,9,999999999,5,0.043,0,88,0,0,1 -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,9.6,77777,9,999999999,5,0.043,0,88,0,0,1 -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,9.6,7620,9,999999999,5,0.043,0,88,0,0,1 -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,9.7,4572,9,999999999,5,0.043,0,88,0,0,1 -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,9.7,4572,9,999999999,6,0.043,0,88,0,0,1 -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,9.7,4572,9,999999999,6,0.043,0,88,0,0,1 -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,9.7,77777,9,999999999,6,0.043,0,88,0,0,1 -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,9.7,77777,9,999999999,6,0.043,0,88,0,0,1 -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,9.7,77777,9,999999999,6,0.043,0,88,0,0,1 -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,9.8,77777,9,999999999,6,0.043,0,88,0,0,1 -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,9.8,77777,9,999999999,6,0.043,0,88,0,0,1 -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,9.8,77777,9,999999999,6,0.043,0,88,0,0,1 -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,-8.3,75,82100,0,0,224,0,0,0,0,0,0,0,0,0,1,0,9.8,77777,9,999999999,6,0.043,0,88,0,0,1 -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,1583,0,906,268,130,2.6,1,1,9.8,77777,9,999999999,6,0.043,0,88,0,0,1 -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,15730,7805,4404,1450,140,2.6,0,0,9.8,77777,9,999999999,6,0.043,0,88,0,0,1 -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,35,82500,441,1415,249,287,749,53,34199,32224,6329,2272,110,4.6,0,0,9.8,77777,9,999999999,6,0.043,0,88,0,0,1 -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,48990,44800,7759,2919,100,5.2,0,0,9.9,77777,9,999999999,6,0.043,0,88,0,0,1 -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,49687,84567,10440,1444,100,5.2,0,0,9.9,77777,9,999999999,6,0.043,0,88,0,0,1 -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,50320,84976,10572,1458,90,6.2,0,0,9.9,77777,9,999999999,6,0.043,0,88,0,0,1 -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,51103,46101,8011,3031,100,6.2,0,0,9.9,77777,9,999999999,6,0.043,0,88,0,0,1 -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,37390,35317,6704,2431,120,5.7,0,0,9.9,77777,9,999999999,6,0.043,0,88,0,0,1 -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,19337,12936,4786,1609,70,4.6,0,0,9.9,77777,9,999999999,7,0.043,0,88,0,0,1 -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,3148,0,1690,501,100,4.1,0,0,9.9,77777,9,999999999,7,0.043,0,88,0,0,1 -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,10,77777,9,999999999,7,0.043,0,88,0,0,1 -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,-6.1,60,82200,0,0,243,0,0,0,0,0,0,0,170,4.6,0,0,10,77777,9,999999999,7,0.043,0,88,0,0,1 -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,10,77777,9,999999999,7,0.043,0,88,0,0,1 -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,10,77777,9,999999999,7,0.043,0,88,0,0,1 -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,10,77777,9,999999999,7,0.043,0,88,0,0,1 -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,10,77777,9,999999999,7,0.043,0,88,0,0,1 -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,10,77777,9,999999999,7,0.043,0,88,0,0,1 -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,10.1,77777,9,999999999,7,0.043,0,88,0,0,1 -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,-8.3,75,81900,0,0,224,0,0,0,0,0,0,0,210,5.2,0,0,10.1,77777,9,999999999,7,0.043,0,88,0,0,1 -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,-8.3,75,81900,0,0,224,0,0,0,0,0,0,0,190,4.1,0,0,10.1,77777,9,999999999,7,0.043,0,88,0,0,1 -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,10.1,77777,9,999999999,7,0.043,0,88,0,0,1 -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,10.1,77777,9,999999999,7,0.043,0,88,0,0,1 -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,10.1,77777,9,999999999,7,0.043,0,88,0,0,1 -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,10.1,77777,9,999999999,7,0.043,0,88,0,0,1 -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,-10.6,61,81800,46,908,222,19,234,7,2024,10640,1171,143,200,5.2,0,0,10.2,77777,9,999999999,7,0.043,0,88,0,0,1 -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,16040,55244,4068,626,220,5.7,0,0,10.2,77777,9,999999999,7,0.043,0,88,0,0,1 -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,32409,78199,5540,928,240,5.7,0,0,10.2,77777,9,999999999,7,0.043,0,88,0,0,1 -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,45010,88534,6637,1140,220,5.7,0,0,10.2,77777,9,999999999,7,0.043,0,88,0,0,1 -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,51931,92603,7153,1253,220,4.1,0,0,10.2,77777,9,999999999,7,0.043,0,88,0,0,1 -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,52575,93012,7147,1258,220,1.5,0,0,10.2,77777,9,999999999,7,0.043,0,88,0,0,1 -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,46881,89759,6767,1168,210,2.1,0,0,10.2,77777,9,999999999,7,0.043,0,88,0,0,1 -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,35436,80989,5821,979,0,0,0,0,10.3,77777,9,999999999,7,0.043,0,88,0,0,1 -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,19558,61429,4372,695,40,2.6,0,0,10.3,77777,9,999999999,7,0.043,0,88,0,0,1 -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,3827,19847,1990,242,70,2.1,0,0,10.3,77777,9,999999999,7,0.043,0,88,0,0,1 -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,10.3,77777,9,999999999,7,0.043,0,88,0,0,1 -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,10.3,77777,9,999999999,7,0.043,0,88,0,0,1 -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,10.3,77777,9,999999999,7,0.043,0,88,0,0,1 -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,10.3,77777,9,999999999,7,0.043,0,88,0,0,1 -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,10.4,77777,9,999999999,7,0.043,0,88,0,0,1 -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,61,82600,0,0,224,0,0,0,0,0,0,0,220,3.6,0,0,10.4,77777,9,999999999,7,0.043,0,88,0,0,1 -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,-11.1,59,82000,0,0,221,0,0,0,0,0,0,0,210,7.7,0,0,10.4,77777,9,999999999,6,0.043,0,88,0,0,1 -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,10.4,77777,9,999999999,6,0.043,0,88,0,0,1 -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,10.4,77777,9,999999999,6,0.043,0,88,0,0,1 -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,10.4,77777,9,999999999,6,0.043,0,88,0,0,1 -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,10.4,77777,9,999999999,6,0.043,0,88,0,0,1 -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,-12.2,53,82400,0,0,225,0,0,0,0,0,0,0,230,6.2,4,1,10.5,77777,9,999999999,6,0.043,0,88,0,0,1 -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,10.5,77777,9,999999999,6,0.043,0,88,0,0,1 -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,10.5,77777,9,999999999,6,0.043,0,88,0,0,1 -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,1864,0,1319,359,220,5.7,6,2,10.5,77777,9,999999999,6,0.043,0,88,0,0,1 -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,12367,6921,6201,1935,210,6.7,8,3,10.5,77777,9,999999999,6,0.043,0,88,0,0,1 -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,32895,33357,9378,3241,230,4.6,7,2,10.5,77777,9,999999999,6,0.043,0,88,0,0,1 -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,38012,33802,12285,4454,200,3.1,8,3,10.5,77777,9,999999999,6,0.043,0,88,0,0,1 -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,53644,49158,14106,5225,110,2.1,7,2,10.6,77777,9,999999999,6,0.043,0,88,0,0,1 -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,53893,49501,18848,6662,90,6.2,8,4,10.6,77777,9,999999999,6,0.043,0,88,0,0,1 -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,49304,47913,13856,4995,90,7.7,7,4,10.6,77777,9,999999999,6,0.043,0,88,0,0,1 -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,22469,13209,15042,4821,110,7.2,9,5,10.6,7925,9,999999999,6,0.043,0,88,0,0,1 -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,-17.8,10,83000,301,1414,290,104,103,81,11513,4111,8999,2700,110,4.6,10,7,10.6,6096,9,999999999,6,0.043,0,88,0,0,1 -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,3446,0,3025,769,120,4.1,9,6,10.6,5486,9,999999999,5,0.043,0,88,0,0,1 -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,10.6,5486,9,999999999,5,0.043,0,88,0,0,1 -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,10.7,5486,9,999999999,5,0.043,0,88,0,0,1 -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,10.7,6096,9,999999999,5,0.043,0,88,0,0,1 -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,10.7,5486,9,999999999,5,0.043,0,88,0,0,1 -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,18,82200,0,0,288,0,0,0,0,0,0,0,260,4.6,10,9,10.7,4877,9,999999999,5,0.043,0,88,0,0,1 -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,10.7,3962,9,999999999,5,0.043,0,88,0,0,1 -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,10.7,3353,9,999999999,5,0.043,0,88,0,0,1 -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,10.7,2438,9,999999999,5,0.043,0,88,0,0,1 -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,-12.2,35,82100,0,0,274,0,0,0,0,0,0,0,220,3.6,10,10,10.8,1158,9,999999999,5,0.043,0,88,0,0,1 -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,10.8,274,9,999999999,5,0.043,0,88,0,0,1 -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,10.8,244,9,999999999,5,0.043,0,88,0,0,1 -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,-11.1,59,82500,0,0,256,0,0,0,0,0,0,0,220,3.6,10,10,10.8,244,9,999999999,5,0.043,0,88,0,0,1 -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,10.8,244,9,999999999,5,0.043,0,88,0,0,1 -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,10.8,183,9,999999999,5,0.043,0,88,0,0,1 -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,386,0,389,150,240,4.1,10,10,10.8,152,9,999999999,5,0.043,0,88,0,0,1 -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,3743,0,3770,1457,230,4.1,10,10,10.9,213,9,999999999,5,0.043,0,88,0,0,1 -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,7605,0,7664,3086,220,4.1,10,10,10.9,305,9,999999999,4,0.043,0,88,0,0,1 -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,10523,0,10608,4428,240,3.1,10,10,10.9,305,9,999999999,4,0.043,0,88,0,0,1 -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,10180,0,10265,4506,180,1.5,10,10,10.9,183,9,999999999,4,0.043,0,88,0,0,1 -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,12429,0,12533,5333,120,4.1,10,10,10.9,274,9,999999999,4,0.043,0,88,0,0,1 -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,9227,0,9302,4029,90,5.7,10,10,10.9,183,9,999999999,4,0.043,0,88,0,0,1 -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,8332,0,8397,3414,100,5.2,10,10,11,213,9,999999999,4,0.043,0,88,0,0,1 -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,4649,0,4683,1824,100,4.1,10,10,11,274,9,999999999,4,0.043,0,88,0,0,1 -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,1165,0,1173,433,110,5.2,10,10,11,427,9,999999999,4,0.043,0,88,0,0,1 -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,11,488,9,999999999,4,0.043,0,88,0,0,1 -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,11,183,9,999999999,4,0.043,0,88,0,0,1 -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,11,1280,9,999999999,4,0.043,0,88,0,0,1 -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,11,1829,9,999999999,4,0.043,0,88,0,0,1 -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,11.1,1829,9,999999999,4,0.043,0,88,0,0,1 -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,11.1,1829,9,999999999,4,0.043,0,88,0,0,1 -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,49,83500,0,0,247,0,0,0,0,0,0,0,220,4.1,8,5,11.1,2134,9,999999999,4,0.043,0,88,0,0,1 -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,41,83600,0,0,252,0,0,0,0,0,0,0,210,4.6,4,3,11.1,77777,9,999999999,4,0.043,0,88,0,0,1 -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,34,83600,0,0,268,0,0,0,0,0,0,0,220,4.1,7,6,11.1,1981,9,999999999,4,0.043,0,88,0,0,1 -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,35,83700,0,0,260,0,0,0,0,0,0,0,220,5.2,3,3,11.1,77777,9,999999999,4,0.043,0,88,0,0,1 -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,11.1,77777,9,999999999,3,0.043,0,88,0,0,1 -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,11.2,77777,9,999999999,3,0.043,0,88,0,0,1 -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,11.2,77777,9,999999999,3,0.043,0,88,0,0,1 -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,11.2,77777,9,999999999,4,0.043,0,88,0,0,1 -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,2252,13620,1013,148,230,5.7,0,0,11.2,77777,9,999999999,4,0.043,0,88,0,0,1 -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,17197,60470,3603,599,230,3.6,0,0,11.2,77777,9,999999999,4,0.043,0,88,0,0,1 -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,34185,82994,4935,873,250,4.1,0,0,11.2,77777,9,999999999,4,0.043,0,88,0,0,1 -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,47179,92942,5899,1067,230,4.1,0,0,11.2,77777,9,999999999,4,0.043,0,88,0,0,1 -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,54381,96946,6424,1179,230,2.6,0,0,11.3,77777,9,999999999,4,0.043,0,88,0,0,1 -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,-9.4,22,84400,672,1414,282,494,845,92,59174,52378,11054,4225,210,1.5,1,1,11.3,77777,9,999999999,4,0.043,0,88,0,0,1 -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,22,84400,613,1414,274,456,954,42,48756,92224,6467,1147,180,1.5,1,0,11.3,77777,9,999999999,4,0.043,0,88,0,0,1 -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,22,84400,489,1414,279,323,835,35,34619,77864,5517,959,0,0,1,1,11.3,77777,9,999999999,4,0.043,0,88,0,0,1 -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,22,84500,310,1414,279,171,674,24,18385,56618,3907,669,0,0,1,1,11.3,77777,9,999999999,4,0.043,0,88,0,0,1 -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,24,84200,92,1285,275,40,314,18,4496,0,2027,603,20,4.1,4,1,11.3,77777,9,999999999,4,0.043,0,88,0,0,1 -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,26,84400,0,0,271,0,0,0,0,0,0,0,40,2.6,4,1,11.3,77777,9,999999999,5,0.043,0,88,0,0,1 -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,11.4,77777,9,999999999,5,0.043,0,88,0,0,1 -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,5,4,11.4,77777,9,999999999,5,0.043,0,88,0,0,1 -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,11.4,77777,9,999999999,5,0.043,0,88,0,0,1 -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,11.4,77777,9,999999999,5,0.043,0,88,0,0,1 -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,11.4,77777,9,999999999,5,0.043,0,88,0,0,1 -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,11.4,3658,9,999999999,5,0.043,0,88,0,0,1 -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,11.4,3658,9,999999999,5,0.043,0,88,0,0,1 -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,11.5,1981,9,999999999,5,0.043,0,88,0,0,1 -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,11.5,2591,9,999999999,5,0.043,0,88,0,0,1 -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,11.5,2591,9,999999999,5,0.043,0,88,0,0,1 -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,11.5,77777,9,999999999,5,0.043,0,88,0,0,1 -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,11.5,77777,9,999999999,5,0.043,0,88,0,0,1 -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,11.5,3658,9,999999999,5,0.043,0,88,0,0,1 -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,1541,0,1324,366,170,6.2,8,8,11.5,3962,9,999999999,5,0.043,0,88,0,0,1 -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,13149,7818,7650,2275,200,5.7,5,4,11.6,77777,9,999999999,5,0.043,0,88,0,0,1 -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,-8.3,25,84400,452,1414,290,246,355,133,27305,23037,14826,4633,220,4.1,5,3,11.6,77777,9,999999999,5,0.043,0,88,0,0,1 -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,39342,34614,13161,4750,210,6.2,5,4,11.6,77777,9,999999999,5,0.043,0,88,0,0,1 -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,60634,55439,12809,4824,220,3.1,3,3,11.6,77777,9,999999999,5,0.043,0,88,0,0,1 -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,34640,25599,11061,4234,160,2.1,4,4,11.6,77777,9,999999999,5,0.043,0,88,0,0,1 -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,28894,19097,14735,5301,100,3.1,8,8,11.6,7620,9,999999999,5,0.043,0,88,0,0,1 -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,26528,17863,16724,5251,80,6.2,9,7,11.6,7620,9,999999999,5,0.043,0,88,0,0,1 -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,9370,1351,8618,2671,90,5.2,10,9,11.7,2896,9,999999999,5,0.043,0,88,0,0,1 -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,-8.9,23,83600,96,1308,312,17,15,16,1936,0,1825,557,80,4.1,10,9,11.7,2896,9,999999999,5,0.043,0,88,0,0,1 -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,11.7,2438,9,999999999,5,0.043,0,88,0,0,1 -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,11.7,1067,9,999999999,5,0.043,0,88,0,0,1 -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,11.7,152,9,999999999,5,0.043,0,88,0,0,1 -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,11.7,610,9,999999999,5,0.043,0,88,0,0,1 -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,11.7,274,9,999999999,5,0.043,0,88,0,0,1 -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,11.8,274,9,999999999,5,0.043,0,88,0,0,1 -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,11.8,274,9,999999999,5,0.043,0,88,0,0,1 -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,11.8,152,9,999999999,5,0.043,0,88,0,0,1 -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,11.8,77777,9,999999999,5,0.043,0,88,0,0,1 -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,11.8,77777,9,999999999,5,0.043,0,88,0,0,1 -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,11.8,77777,9,999999999,5,0.043,0,88,0,0,1 -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,11.8,77777,9,999999999,5,0.043,0,88,0,0,1 -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,11.9,77777,9,999999999,5,0.043,0,88,0,0,1 -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,11.9,77777,9,999999999,5,0.043,0,88,0,0,1 -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,2138,11704,1174,156,230,4.6,0,0,11.9,77777,9,999999999,5,0.043,0,88,0,0,1 -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,16792,56679,4223,646,230,4.6,0,0,11.9,77777,9,999999999,5,0.043,0,88,0,0,1 -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,33602,79572,5685,950,240,3.6,0,0,11.9,77777,9,999999999,6,0.043,0,88,0,0,1 -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,-10,21,83600,594,1414,276,436,933,44,46538,89788,6773,1164,240,3.1,0,0,11.9,77777,9,999999999,6,0.043,0,88,0,0,1 -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,53784,93888,7427,1294,0,0,0,0,11.9,77777,9,999999999,6,0.043,0,88,0,0,1 -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,51753,88377,7847,1342,0,0,1,0,12,77777,9,999999999,6,0.043,0,88,0,0,1 -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,48380,89307,7475,1251,360,1.5,1,0,12,77777,9,999999999,6,0.043,0,88,0,0,1 -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,37208,81615,6404,1046,0,0,1,0,12,77777,9,999999999,6,0.043,0,88,0,0,1 -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,21168,62855,4982,758,30,2.1,1,0,12,77777,9,999999999,6,0.043,0,88,0,0,1 -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,4909,24864,2317,293,40,2.6,0,0,12,77777,9,999999999,6,0.043,0,88,0,0,1 -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,12,77777,9,999999999,6,0.043,0,88,0,0,1 -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,12.1,77777,9,999999999,6,0.043,0,88,0,0,1 -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,12.1,77777,9,999999999,6,0.043,0,88,0,0,1 -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,12.1,77777,9,999999999,6,0.043,0,88,0,0,1 -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,12.1,77777,9,999999999,6,0.043,0,88,0,0,1 -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,12.1,77777,9,999999999,6,0.043,0,88,0,0,1 -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,-9.4,45,83600,0,0,252,0,0,0,0,0,0,0,260,2.6,7,4,12.1,7620,9,999999999,6,0.043,0,88,0,0,1 -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,12.1,7620,9,999999999,6,0.043,0,88,0,0,1 -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,12.2,6706,9,999999999,6,0.043,0,88,0,0,1 -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,26,83500,0,0,279,0,0,0,0,0,0,0,250,3.6,6,5,12.2,6706,9,999999999,6,0.043,0,88,0,0,1 -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,12.2,77777,9,999999999,6,0.043,0,88,0,0,1 -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,12.2,77777,9,999999999,6,0.043,0,88,0,0,1 -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,12.2,5182,9,999999999,6,0.043,0,88,0,0,1 -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,12.2,5182,9,999999999,6,0.043,0,88,0,0,1 -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,-5.6,62,83500,51,954,260,12,23,11,1335,0,1226,351,220,3.6,9,6,12.2,5182,9,999999999,6,0.043,0,88,0,0,1 -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,-5.6,62,83600,264,1414,260,95,118,73,10461,3691,8067,2374,100,2.1,7,6,12.3,4572,9,999999999,6,0.043,0,88,0,0,1 -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,25011,10625,20482,5541,70,4.6,9,8,12.3,4572,9,999999999,5,0.043,0,88,0,0,1 -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,-2.8,79,83800,597,1414,263,277,266,164,31210,19537,18562,6265,50,6.7,7,6,12.3,4572,9,999999999,5,0.043,0,88,0,0,1 -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,40383,26343,22836,7734,30,5.7,8,8,12.3,4572,9,999999999,5,0.043,0,88,0,0,1 -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,48841,35661,27233,8719,20,9.3,7,7,12.3,4572,9,999999999,5,0.043,0,88,0,0,1 -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,44495,37611,20032,6769,10,9.8,8,3,12.3,77777,9,999999999,5,0.043,0,88,0,0,1 -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,32864,30016,10135,3597,10,10.3,5,2,12.3,77777,9,999999999,5,0.043,0,88,0,0,1 -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,19919,16915,8533,2684,10,6.2,4,3,12.4,77777,9,999999999,5,0.043,0,88,0,0,1 -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,4338,0,3373,904,350,4.1,4,2,12.4,77777,9,999999999,5,0.043,0,88,0,0,1 -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,-3.9,72,83500,0,0,250,0,0,0,0,0,0,0,10,4.1,3,1,12.4,77777,9,999999999,5,0.043,0,88,0,0,1 -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,12.4,77777,9,999999999,5,0.043,0,88,0,0,1 -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,12.4,7620,9,999999999,5,0.043,0,88,0,0,1 -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,12.4,4877,9,999999999,5,0.043,0,88,0,0,1 -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,12.4,518,9,999999999,5,0.043,0,88,0,0,1 -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,49,83500,0,0,252,0,0,0,0,0,0,0,340,3.6,7,7,12.5,4877,9,999999999,4,0.043,0,88,0,0,1 -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,51,83700,0,0,267,0,0,0,0,0,0,0,360,3.1,10,10,12.5,1524,9,999999999,4,0.043,0,88,0,0,1 -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,12.5,1402,9,999999999,4,0.042,0,88,0,0,1 -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,12.5,1372,9,999999999,4,0.042,0,88,0,0,1 -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,12.5,1250,9,999999999,4,0.042,0,88,0,0,1 -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,12.5,792,9,999999999,4,0.042,0,88,0,0,1 -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,12.5,853,9,999999999,4,0.042,0,88,0,0,1 -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,12.6,1250,9,999999999,4,0.042,0,88,0,0,1 -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,-11.1,39,83600,0,0,268,0,0,0,0,0,0,0,340,2.6,10,9,12.6,1158,9,999999999,4,0.042,0,88,0,0,1 -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,-8.9,71,83800,53,954,258,7,0,7,676,0,681,248,280,3.1,10,10,12.6,1006,9,999999999,4,0.042,0,88,0,0,1 -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,5124,0,5161,1889,300,3.1,10,10,12.6,1463,9,999999999,4,0.042,0,88,0,0,1 -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,-7.8,52,83900,460,1414,261,177,227,104,20083,13044,11843,3971,330,4.6,7,7,12.6,3658,9,999999999,4,0.042,0,88,0,0,1 -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,-7.2,54,84100,600,1414,266,300,270,185,33522,21224,20772,6785,360,5.2,8,8,12.6,3658,9,999999999,4,0.042,0,88,0,0,1 -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,42927,34265,13492,5079,20,4.1,6,6,12.6,3658,9,999999999,4,0.042,0,88,0,0,1 -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,50351,42281,18167,6574,310,3.1,6,6,12.7,3658,9,999999999,4,0.042,0,88,0,0,1 -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,47548,42985,17333,6095,10,2.1,5,5,12.7,77777,9,999999999,4,0.042,0,88,0,0,1 -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,61,84000,507,1414,238,333,733,70,39413,37868,8306,3016,350,3.6,5,5,12.7,77777,9,999999999,4,0.042,0,88,0,0,1 -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,17615,11610,12121,3390,20,3.1,6,6,12.7,3658,9,999999999,4,0.042,0,88,0,0,1 -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,2621,0,2055,631,10,1.5,8,6,12.7,3658,9,999999999,4,0.042,0,88,0,0,1 -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,4,4,12.7,77777,9,999999999,4,0.042,0,88,0,0,1 -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,12.7,77777,9,999999999,4,0.042,0,88,0,0,1 -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,12.8,1676,9,999999999,4,0.042,0,88,0,0,1 -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,-12.8,78,83600,0,0,224,0,0,0,0,0,0,0,230,2.1,10,8,12.8,1219,9,999999999,4,0.042,0,88,0,0,1 -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,12.8,1372,9,999999999,4,0.042,0,88,0,0,1 -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,12.8,1829,9,999999999,3,0.042,0,88,0,0,1 -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,12.8,2134,9,999999999,3,0.042,0,88,0,0,1 -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,12.8,77777,9,999999999,3,0.042,0,88,0,0,1 -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,12.8,77777,9,999999999,3,0.042,0,88,0,0,1 -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,12.9,77777,9,999999999,3,0.042,0,88,0,0,1 -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,12.9,77777,9,999999999,3,0.042,0,88,0,0,1 -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,12.9,77777,9,999999999,3,0.042,0,88,0,0,1 -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,12.9,77777,9,999999999,3,0.042,0,88,0,0,1 -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,12.9,77777,9,999999999,3,0.042,0,88,0,0,1 -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,2566,15395,1177,165,230,3.6,0,0,12.9,77777,9,999999999,3,0.042,0,88,0,0,1 -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,18147,62442,3601,608,270,2.6,0,0,12.9,77777,9,999999999,4,0.042,0,88,0,0,1 -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,35564,84515,4928,880,330,2.1,0,0,13,77777,9,999999999,4,0.042,0,88,0,0,1 -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,48924,94389,5888,1076,310,2.1,0,0,13,77777,9,999999999,4,0.042,0,88,0,0,1 -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,56339,98264,6409,1190,300,1.5,0,0,13,77777,9,999999999,4,0.042,0,88,0,0,1 -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,57378,98710,6544,1214,280,2.1,0,0,13,77777,9,999999999,4,0.042,0,88,0,0,1 -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,51664,95768,6156,1127,240,2.1,0,0,13,77777,9,999999999,4,0.042,0,88,0,0,1 -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,40061,88047,5353,957,200,2.1,0,0,13,77777,9,999999999,4,0.042,0,88,0,0,1 -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,12,83700,333,1413,278,220,829,25,23602,70806,4056,701,0,0,0,0,13,77777,9,999999999,4,0.042,0,88,0,0,1 -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,12,83300,113,1402,278,56,534,13,5982,32829,2164,319,50,3.1,0,0,13.1,77777,9,999999999,4,0.042,0,88,0,0,1 -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,-14.4,14,83300,0,0,272,0,0,0,0,0,0,0,60,3.6,0,0,13.1,77777,9,999999999,4,0.042,0,88,0,0,1 -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,13,83100,0,0,275,0,0,0,0,0,0,0,90,3.6,0,0,13.1,77777,9,999999999,4,0.042,0,88,0,0,1 -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,13,83100,0,0,273,0,0,0,0,0,0,0,100,3.6,0,0,13.1,77777,9,999999999,4,0.042,0,88,0,0,1 -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,13.1,77777,9,999999999,4,0.042,0,88,0,0,1 -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,13.1,77777,9,999999999,4,0.042,0,88,0,0,1 -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,13.1,77777,9,999999999,4,0.042,0,88,0,0,1 -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,13.2,77777,9,999999999,4,0.042,0,88,0,0,1 -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,13.2,77777,9,999999999,4,0.042,0,88,0,0,1 -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,13.2,77777,9,999999999,4,0.042,0,88,0,0,1 -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,13.2,77777,9,999999999,4,0.042,0,88,0,0,1 -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,5,1,13.2,77777,9,999999999,4,0.042,0,88,0,0,1 -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,20,82900,0,0,255,0,0,0,0,0,0,0,260,1.5,5,1,13.2,77777,9,999999999,4,0.042,0,88,0,0,1 -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,13.3,77777,9,999999999,5,0.042,0,88,0,0,1 -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,5,3,13.3,77777,9,999999999,5,0.042,0,88,0,0,1 -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,2331,11450,1496,167,230,2.1,1,0,13.3,77777,9,999999999,5,0.042,0,88,0,0,1 -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,18697,10874,4005,1349,160,2.6,3,0,13.3,77777,9,999999999,5,0.042,0,88,0,0,1 -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,33888,77570,6421,1018,160,2.6,1,0,13.3,77777,9,999999999,5,0.042,0,88,0,0,1 -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,-17.8,7,83400,607,1413,287,442,911,51,46826,87588,7774,1261,230,2.1,1,0,13.3,77777,9,999999999,5,0.042,0,88,0,0,1 -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,-16.7,8,83800,686,1413,289,519,960,52,55041,93772,7838,1348,40,2.6,0,0,13.3,77777,9,999999999,5,0.042,0,88,0,0,1 -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,52965,87139,9103,1460,40,4.1,3,1,13.4,77777,9,999999999,5,0.042,0,88,0,0,1 -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,53766,47540,8310,3184,50,5.7,4,1,13.4,77777,9,999999999,5,0.042,0,88,0,0,1 -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,-17.8,7,83500,517,1413,287,352,807,57,42445,40370,6888,2540,60,5.2,4,0,13.4,77777,9,999999999,5,0.042,0,88,0,0,1 -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,24068,21267,5943,2016,90,4.1,7,0,13.4,77777,9,999999999,5,0.042,0,88,0,0,1 -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,5873,0,2490,753,100,2.1,5,0,13.4,77777,9,999999999,5,0.042,0,88,0,0,1 -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,13.4,77777,9,999999999,5,0.042,0,88,0,0,1 -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,13.4,77777,9,999999999,6,0.042,0,88,0,0,1 -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,13.5,77777,9,999999999,6,0.042,0,88,0,0,1 -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,13.5,77777,9,999999999,6,0.042,0,88,0,0,1 -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,13.5,77777,9,999999999,6,0.042,0,88,0,0,1 -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,-7.8,79,83600,0,0,224,0,0,0,0,0,0,0,150,3.1,0,0,13.5,77777,9,999999999,6,0.042,0,88,0,0,1 -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,13.5,77777,9,999999999,6,0.042,0,88,0,0,1 -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,13.5,77777,9,999999999,6,0.043,0,88,0,0,1 -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,13.5,77777,9,999999999,6,0.043,0,88,0,0,1 -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,-6.1,91,83000,0,0,226,0,0,0,0,0,0,0,170,3.1,0,0,13.6,77777,9,999999999,6,0.043,0,88,0,0,1 -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,-6.1,91,83000,0,0,226,0,0,0,0,0,0,0,180,3.1,0,0,13.6,77777,9,999999999,6,0.043,0,88,0,0,1 -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,-5.6,95,83300,0,0,226,0,0,0,0,0,0,0,190,3.6,0,0,13.6,77777,9,999999999,6,0.043,0,88,0,0,1 -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,-6.1,91,83000,0,0,226,0,0,0,0,0,0,0,190,3.6,0,0,13.6,77777,9,999999999,6,0.043,0,88,0,0,1 -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,13.6,77777,9,999999999,6,0.043,0,88,0,0,1 -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,2488,0,1133,337,200,2.1,0,0,13.6,77777,9,999999999,6,0.043,0,88,0,0,1 -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,17168,54192,5144,697,130,2.1,0,0,13.6,77777,9,999999999,6,0.043,0,88,0,0,1 -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,34253,77198,6870,1048,0,0,0,0,13.7,77777,9,999999999,6,0.043,0,88,0,0,1 -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,61,83300,611,1413,248,446,907,53,47520,87809,8066,1285,20,2.6,0,0,13.7,77777,9,999999999,6,0.043,0,88,0,0,1 -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,58,83600,690,1413,250,517,938,59,54978,92148,8836,1433,30,2.6,0,0,13.7,77777,9,999999999,6,0.043,0,88,0,0,1 -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,56129,92663,8822,1446,40,2.1,0,0,13.7,77777,9,999999999,6,0.043,0,88,0,0,1 -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,50619,89672,8462,1350,40,3.6,0,0,13.7,77777,9,999999999,5,0.043,0,88,0,0,1 -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,39195,81697,7421,1140,30,2.6,0,0,13.7,77777,9,999999999,5,0.043,0,88,0,0,1 -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,23041,63873,5736,825,20,3.1,0,0,13.7,77777,9,999999999,5,0.043,0,88,0,0,1 -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,6385,0,2284,707,360,2.1,0,0,13.8,77777,9,999999999,5,0.043,0,88,0,0,1 -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,13.8,77777,9,999999999,5,0.043,0,88,0,0,1 -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,13.8,77777,9,999999999,5,0.043,0,88,0,0,1 -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,-6.1,60,83200,0,0,243,0,0,0,0,0,0,0,290,2.1,0,0,13.8,77777,9,999999999,5,0.043,0,88,0,0,1 -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,13.8,77777,9,999999999,5,0.043,0,88,0,0,1 -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,13.8,77777,9,999999999,5,0.043,0,88,0,0,1 -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,13.8,77777,9,999999999,4,0.043,0,88,0,0,1 -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,13.9,77777,9,999999999,4,0.043,0,88,0,0,1 -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,-7.8,79,82900,0,0,224,0,0,0,0,0,0,0,210,3.1,1,0,13.9,77777,9,999999999,4,0.043,0,88,0,0,1 -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,13.9,77777,9,999999999,4,0.043,0,88,0,0,1 -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,13.9,77777,9,999999999,4,0.043,0,88,0,0,1 -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,13.9,77777,9,999999999,4,0.043,0,88,0,0,1 -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,13.9,77777,9,999999999,4,0.043,0,88,0,0,1 -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,13.9,77777,9,999999999,4,0.043,0,88,0,0,1 -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,14,77777,9,999999999,4,0.043,0,88,0,0,1 -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,2609,0,1136,340,200,4.1,0,0,14,77777,9,999999999,4,0.043,0,88,0,0,1 -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,17450,54410,5295,705,230,4.6,0,0,14,77777,9,999999999,4,0.043,0,88,0,0,1 -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,34786,77692,7162,1067,240,4.6,0,0,14,77777,9,999999999,4,0.043,0,88,0,0,1 -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,48183,88333,8491,1316,220,3.6,0,0,14,77777,9,999999999,4,0.043,0,88,0,0,1 -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,55714,92619,9110,1457,210,3.1,0,0,14,77777,9,999999999,4,0.043,0,88,0,0,1 -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,16,82500,706,1413,300,527,912,71,55556,89406,10501,1542,180,2.1,3,1,14,77777,9,999999999,4,0.043,0,88,0,0,1 -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,48225,42632,14616,5363,160,1.5,2,2,14.1,77777,9,999999999,4,0.043,0,88,0,0,1 -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,37332,76445,7560,1154,130,3.1,1,1,14.1,77777,9,999999999,4,0.043,0,88,0,0,1 -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,-12.2,13,82500,348,1413,304,204,613,53,23707,20831,6174,2101,120,2.1,2,2,14.1,77777,9,999999999,4,0.043,0,88,0,0,1 -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,3799,0,3024,896,100,3.6,3,3,14.1,77777,9,999999999,4,0.043,0,88,0,0,1 -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,14.1,77777,9,999999999,4,0.043,0,88,0,0,1 -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,14.1,77777,9,999999999,3,0.043,0,88,0,0,1 -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,14.1,77777,9,999999999,3,0.043,0,88,0,0,1 -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,14.2,77777,9,999999999,3,0.043,0,88,0,0,1 -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,14.2,77777,9,999999999,3,0.043,0,88,0,0,1 -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,14.2,4267,9,999999999,3,0.043,0,88,0,0,1 -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,14.2,6706,9,999999999,3,0.043,0,88,0,0,1 -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,14.2,6706,9,999999999,3,0.043,0,88,0,0,1 -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,41,82300,0,0,256,0,0,0,0,0,0,0,160,4.6,6,5,14.2,6706,9,999999999,3,0.043,0,88,0,0,1 -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,14.2,77777,9,999999999,3,0.043,0,88,0,0,1 -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,14.3,77777,9,999999999,3,0.043,0,88,0,0,1 -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,-12.2,35,82700,0,0,242,0,0,0,0,0,0,0,190,5.2,1,1,14.3,77777,9,999999999,3,0.043,0,88,0,0,1 -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,14.3,77777,9,999999999,3,0.043,0,88,0,0,1 -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,14.3,77777,9,999999999,3,0.043,0,88,0,0,1 -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,2882,16256,1341,185,170,4.1,0,0,14.3,77777,9,999999999,3,0.043,0,88,0,0,1 -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,19066,63085,3910,645,150,4.6,0,0,14.3,77777,9,999999999,3,0.043,0,88,0,0,1 -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,36711,84902,5372,937,170,6.7,0,0,14.3,77777,9,999999999,3,0.043,0,88,0,0,1 -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,50260,94515,6459,1152,190,4.6,0,0,14.4,77777,9,999999999,3,0.043,0,88,0,0,1 -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,10,83000,699,1412,288,543,1005,46,57843,98508,6967,1270,230,4.1,0,0,14.4,77777,9,999999999,3,0.043,0,88,0,0,1 -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,59070,98983,6955,1279,210,4.6,0,0,14.4,77777,9,999999999,3,0.043,0,88,0,0,1 -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,53582,96382,6575,1190,210,4.6,0,0,14.4,77777,9,999999999,3,0.043,0,88,0,0,1 -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,6,83100,532,1412,289,393,944,37,41934,89001,5786,1017,200,1.5,0,0,14.4,77777,9,999999999,3,0.043,0,88,0,0,1 -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,-18.9,7,83100,353,1412,286,238,839,28,25442,72592,4512,760,180,2.6,0,0,14.4,77777,9,999999999,3,0.043,0,88,0,0,1 -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,6793,32024,2958,370,150,3.1,1,1,14.5,77777,9,999999999,3,0.043,0,88,0,0,1 -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,17,83000,1,106,264,0,22,0,0,0,0,0,170,5.7,1,1,14.5,77777,9,999999999,3,0.043,0,88,0,0,1 -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,14.5,77777,9,999999999,3,0.043,0,88,0,0,1 -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,14.5,77777,9,999999999,3,0.043,0,88,0,0,1 -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,14.5,77777,9,999999999,3,0.043,0,88,0,0,1 -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,14.5,77777,9,999999999,3,0.043,0,88,0,0,1 -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,14.5,77777,9,999999999,3,0.043,0,88,0,0,1 -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,-11.1,39,82800,0,0,238,0,0,0,0,0,0,0,210,8.8,0,0,14.6,77777,9,999999999,3,0.043,0,88,0,0,1 -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,-11.7,37,82700,0,0,242,0,0,0,0,0,0,0,210,7.7,1,1,14.6,77777,9,999999999,3,0.043,0,88,0,0,1 -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,14.6,4877,9,999999999,2,0.043,0,88,0,0,1 -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,14.6,77777,9,999999999,2,0.043,0,88,0,0,1 -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,14.6,77777,9,999999999,2,0.043,0,88,0,0,1 -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,14.6,77777,9,999999999,2,0.043,0,88,0,0,1 -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,14.6,77777,9,999999999,2,0.043,0,88,0,0,1 -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,-12.8,33,83000,0,0,237,0,0,0,0,0,0,0,230,5.7,1,0,14.7,77777,9,999999999,2,0.043,0,88,0,0,1 -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,2586,0,1352,397,210,8.2,1,0,14.7,77777,9,999999999,3,0.043,0,88,0,0,1 -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,-12.2,24,83500,284,1412,255,167,641,38,19537,12686,4454,1500,220,5.2,0,0,14.7,77777,9,999999999,3,0.043,0,88,0,0,1 -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,28533,23887,14832,4782,230,5.2,4,4,14.7,77777,9,999999999,3,0.043,0,88,0,0,1 -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,38538,30081,18269,6318,250,4.6,6,6,14.7,7620,9,999999999,3,0.043,0,88,0,0,1 -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,-12.8,12,83500,704,1412,313,338,256,210,38180,21321,23841,8151,270,5.2,7,6,14.7,7620,9,999999999,3,0.043,0,88,0,0,1 -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,48817,38662,18705,6838,320,2.6,4,4,14.7,77777,9,999999999,3,0.043,0,88,0,0,1 -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,9,83500,659,1412,308,496,904,74,52064,87664,10988,1464,340,4.1,2,2,14.8,77777,9,999999999,3,0.043,0,88,0,0,1 -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,9,83500,537,1412,311,329,575,110,37853,36138,12702,4450,310,3.1,8,3,14.8,77777,9,999999999,3,0.043,0,88,0,0,1 -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,18890,9675,14749,3960,290,6.2,7,7,14.8,7620,9,999999999,3,0.043,0,88,0,0,1 -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,3599,0,3043,918,290,6.2,9,8,14.8,7620,9,999999999,3,0.043,0,88,0,0,1 -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,14.8,7620,9,999999999,3,0.043,0,88,0,0,1 -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,14.8,6706,9,999999999,3,0.043,0,88,0,0,1 -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,14.8,6706,9,999999999,3,0.043,0,88,0,0,1 -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,14.9,6706,9,999999999,3,0.043,0,88,0,0,1 -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,14.9,6706,9,999999999,3,0.043,0,88,0,0,1 -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,35,83400,0,0,260,0,0,0,0,0,0,0,130,4.6,3,3,14.9,77777,9,999999999,3,0.043,0,88,0,0,1 -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,14.9,77777,9,999999999,4,0.043,0,88,0,0,1 -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,14.9,77777,9,999999999,4,0.043,0,88,0,0,1 -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,14.9,77777,9,999999999,4,0.043,0,88,0,0,1 -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,14.9,77777,9,999999999,4,0.043,0,88,0,0,1 -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,20,82900,0,0,273,0,0,0,0,0,0,0,190,5.7,8,8,15,4572,9,999999999,4,0.043,0,88,0,0,1 -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,15,7620,9,999999999,4,0.043,0,88,0,0,1 -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,15,77777,9,999999999,4,0.043,0,88,0,0,1 -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,15,77777,9,999999999,4,0.043,0,88,0,0,1 -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,2389,0,2069,546,220,4.6,8,6,15,5486,9,999999999,4,0.043,0,88,0,0,1 -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,9000,2560,7109,2239,250,4.1,9,7,15,5486,9,999999999,4,0.043,0,88,0,0,1 -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,19815,7262,15877,5030,260,3.1,9,8,15,5486,9,999999999,4,0.043,0,88,0,0,1 -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,42882,37162,13801,5050,280,2.6,9,4,15.1,77777,9,999999999,5,0.043,0,88,0,0,1 -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,39096,22382,23848,8187,320,3.1,9,5,15.1,7315,9,999999999,5,0.043,0,88,0,0,1 -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,42158,26409,23690,8226,0,0,9,7,15.1,6096,9,999999999,5,0.043,0,88,0,0,1 -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,-7.8,18,83400,664,1412,320,456,615,167,52040,46259,19144,6744,350,2.1,8,6,15.1,5486,9,999999999,5,0.043,0,88,0,0,1 -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,36126,32967,12277,4345,10,2.6,4,2,15.1,77777,9,999999999,5,0.043,0,88,0,0,1 -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,18965,14671,9684,3091,320,3.1,4,3,15.1,77777,9,999999999,5,0.043,0,88,0,0,1 -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,6292,0,3153,954,310,5.7,2,1,15.1,77777,9,999999999,5,0.043,0,88,0,0,1 -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,15.2,77777,9,999999999,5,0.043,0,88,0,0,1 -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,15.2,77777,9,999999999,5,0.043,0,88,0,0,1 -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,15.2,77777,9,999999999,6,0.043,0,88,0,0,1 -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,15.2,77777,9,999999999,6,0.043,0,88,0,0,1 -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,15.2,77777,9,999999999,6,0.043,0,88,0,0,1 -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,15.2,77777,9,999999999,6,0.043,0,88,0,0,1 -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,15.2,77777,9,999999999,6,0.043,0,88,0,0,1 -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,15.3,77777,9,999999999,6,0.043,0,88,0,0,1 -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,15.3,77777,9,999999999,6,0.043,0,88,0,0,1 -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,15.3,77777,9,999999999,6,0.043,0,88,0,0,1 -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,15.3,77777,9,999999999,6,0.043,0,88,0,0,1 -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,15.3,77777,9,999999999,7,0.043,0,88,0,0,1 -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,15.3,77777,9,999999999,7,0.043,0,88,0,0,1 -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,15.3,77777,9,999999999,7,0.043,0,88,0,0,1 -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,3074,0,1254,379,150,3.1,0,0,15.4,77777,9,999999999,7,0.043,0,88,0,0,1 -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,18338,55781,5294,730,150,2.1,0,0,15.4,77777,9,999999999,7,0.043,0,88,0,0,1 -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,39540,37547,7282,2649,0,0,4,0,15.4,77777,9,999999999,7,0.043,0,88,0,0,1 -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,35877,18181,25749,7987,0,0,8,6,15.4,9144,9,999999999,7,0.043,0,88,0,0,1 -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,44157,27362,26365,8791,30,3.1,7,7,15.4,9144,9,999999999,7,0.043,0,88,0,0,1 -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,-9.4,22,83200,726,1411,291,479,554,194,54654,44253,22242,7883,320,4.1,10,4,15.4,77777,9,999999999,7,0.043,0,88,0,0,1 -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,33494,20008,19061,6745,330,5.2,10,5,15.4,77777,9,999999999,7,0.043,0,88,0,0,1 -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,39269,36853,15156,5166,70,5.7,9,4,15.5,77777,9,999999999,7,0.043,0,88,0,0,1 -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,19356,15594,8971,2931,20,11.3,10,2,15.5,77777,9,999999999,7,0.043,0,88,0,0,1 -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,5595,45,5291,1368,40,9.8,10,5,15.5,77777,9,999999999,7,0.043,0,88,0,0,1 -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,15.5,7620,9,999999999,7,0.043,0,88,0,0,1 -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,15.5,7620,9,999999999,7,0.043,0,88,0,0,1 -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,-7.2,38,82900,0,0,281,0,0,0,0,0,0,0,60,4.6,9,7,15.5,7620,9,999999999,7,0.043,0,88,0,0,1 -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,15.6,6706,9,999999999,7,0.043,0,88,0,0,1 -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,-5.6,44,82800,0,0,270,0,0,0,0,0,0,0,40,6.7,2,2,15.6,77777,9,999999999,7,0.043,0,88,0,0,1 -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,48,82800,0,0,271,0,0,0,0,0,0,0,60,5.2,4,3,15.6,77777,9,999999999,7,0.043,0,88,0,0,1 -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,15.6,77777,9,999999999,7,0.043,0,88,0,0,1 -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,15.6,77777,9,999999999,7,0.043,0,88,0,0,1 -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,15.6,77777,9,999999999,7,0.043,0,88,0,0,1 -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,15.6,77777,9,999999999,7,0.043,0,88,0,0,1 -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,91,82400,0,0,235,0,0,0,0,0,0,0,220,4.1,8,1,15.7,77777,9,999999999,7,0.043,0,88,0,0,1 -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,-6.7,86,82600,0,0,229,0,0,0,0,0,0,0,230,5.7,7,1,15.7,77777,9,999999999,7,0.043,0,88,0,0,1 -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,15.7,77777,9,999999999,8,0.043,0,88,0,0,1 -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,15.7,77777,9,999999999,8,0.043,0,88,0,0,1 -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,2094,0,1878,526,240,4.1,10,4,15.7,77777,9,999999999,8,0.043,0,88,0,0,1 -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,8296,2839,5543,1838,240,3.6,10,4,15.7,77777,9,999999999,8,0.043,0,88,0,0,1 -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,28143,19665,17852,5470,240,3.1,8,4,15.7,77777,9,999999999,8,0.043,0,88,0,0,1 -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,78,82800,636,1411,222,366,472,153,41857,34402,17573,6194,290,4.1,6,2,15.8,77777,9,999999999,8,0.043,0,88,0,0,1 -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,57028,47640,13261,5088,290,4.6,3,1,15.8,77777,9,999999999,8,0.043,0,88,0,0,1 -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,61,82700,731,1411,224,541,895,77,56910,88006,11297,1612,340,5.2,2,0,15.8,77777,9,999999999,8,0.043,0,88,0,0,1 -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,52130,87483,9560,1454,340,3.6,0,0,15.8,77777,9,999999999,8,0.043,0,88,0,0,1 -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,40801,79917,8411,1228,30,2.6,0,0,15.8,77777,9,999999999,9,0.043,0,88,0,0,1 -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,27193,23369,5234,1837,0,0,1,0,15.8,77777,9,999999999,9,0.043,0,88,0,0,1 -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,-7.8,79,82700,153,1411,224,69,402,26,7847,0,2963,921,110,2.1,1,0,15.8,77777,9,999999999,9,0.043,0,88,0,0,1 -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,-6.7,86,82800,3,223,225,0,17,0,0,0,0,0,180,5.7,0,0,15.9,77777,9,999999999,9,0.043,0,88,0,0,1 -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,15.9,77777,9,999999999,9,0.043,0,88,0,0,1 -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,91,82800,0,0,230,0,0,0,0,0,0,0,170,5.7,0,0,15.9,77777,9,999999999,9,0.043,0,88,0,0,1 -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,15.9,77777,9,999999999,9,0.043,0,88,0,0,1 -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,15.9,77777,9,999999999,9,0.043,0,88,0,0,1 -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,-4.3,90,82900,0,0,234,0,0,0,0,0,0,0,180,5.1,0,0,15.9,20446,9,999999999,10,0.043,0,88,0,0,1 -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,1,1,15.9,18892,9,999999999,10,0.043,0,88,0,0,1 -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,16,17338,9,999999999,10,0.043,0,88,0,0,1 -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,16,15785,9,999999999,10,0.043,0,88,0,0,1 -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,83,82500,0,0,246,0,0,0,0,0,0,0,240,5.8,2,2,16,14231,9,999999999,10,0.043,0,88,0,0,1 -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,16,12677,9,999999999,10,0.043,0,88,0,0,1 -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,16,11123,9,999999999,10,0.043,0,88,0,0,1 -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,16,9569,9,999999999,10,0.043,0,88,0,0,1 -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,16,8015,9,999999999,10,0.043,0,88,0,0,1 -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,74,82500,72,1117,269,17,52,14,1908,0,1574,465,270,5.9,10,5,16.1,6462,9,999999999,10,0.043,0,88,0,0,1 -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,67,82600,298,1411,280,145,148,114,15557,7490,12286,3207,310,5.8,10,7,16.1,4908,9,999999999,10,0.043,0,88,0,0,1 -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,58,82700,496,1411,279,281,397,141,31350,26626,15799,5087,300,3.6,10,6,16.1,3354,9,999999999,10,0.043,0,88,0,0,1 -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,-3.4,53,82600,641,1411,282,256,349,97,30340,21337,11533,4342,360,5.1,10,6,16.1,1800,9,999999999,10,0.043,0,88,0,0,1 -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,54484,44360,18162,6713,290,3.3,10,5,16.4,3483,9,999999999,10,0.043,0,88,0,0,1 -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,35765,8517,30496,9805,190,4.8,10,6,16.7,5167,9,999999999,9,0.043,0,88,0,0,1 -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,44143,26457,28744,8947,180,4.1,10,4,17,6850,9,999999999,9,0.043,0,88,0,0,1 -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,28276,21040,12741,4532,210,4.9,9,5,17.3,8533,9,999999999,9,0.043,0,88,0,0,1 -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,17906,11554,11276,3519,180,4.8,8,4,17.6,10217,9,999999999,9,0.043,0,88,0,0,1 -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,4559,0,2969,930,180,5.1,9,5,17.8,11900,9,999999999,9,0.043,0,88,0,0,1 -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,18.1,13583,9,999999999,9,0.043,0,88,0,0,1 -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,-5.1,71,82800,0,0,253,0,0,0,0,0,0,0,50,0.7,5,4,18.4,15267,9,999999999,9,0.043,0,88,0,0,1 -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,18.7,16950,9,999999999,9,0.043,0,88,0,0,1 -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,19,18633,9,999999999,9,0.043,0,88,0,0,1 -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,19.3,20317,9,999999999,9,0.043,0,88,0,0,1 -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,19.6,77777,9,999999999,8,0.043,0,88,0,0,1 -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,19.9,77777,9,999999999,8,0.043,0,88,0,0,1 -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,20.2,77777,9,999999999,8,0.043,0,88,0,0,1 -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,-6.1,91,82600,0,0,230,0,0,0,0,0,0,0,190,4.1,1,1,20.5,77777,9,999999999,8,0.043,0,88,0,0,1 -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,20.7,4267,9,999999999,8,0.043,0,88,0,0,1 -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,21,4572,9,999999999,8,0.043,0,88,0,0,1 -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,21.3,4572,9,999999999,8,0.043,0,88,0,0,1 -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,10,10,21.6,7010,9,999999999,8,0.043,0,88,0,0,1 -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,-13.9,70,82600,0,0,215,0,0,0,0,0,0,0,360,3.6,7,5,21.9,8534,9,999999999,8,0.043,0,88,0,0,1 -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,3451,0,2596,666,40,3.6,8,4,22.2,77777,9,999999999,8,0.043,0,88,0,0,1 -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,17231,11617,4697,1594,320,2.6,6,2,22.5,77777,9,999999999,8,0.043,0,88,0,0,1 -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,31316,27837,13961,4669,340,6.2,5,3,22.8,77777,9,999999999,8,0.043,0,88,0,0,1 -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,51203,45101,10559,4009,10,5.7,6,2,23.1,77777,9,999999999,8,0.043,0,88,0,0,1 -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,56421,46527,21617,7729,40,5.2,8,3,23.4,77777,9,999999999,8,0.043,0,88,0,0,1 -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,62323,53020,19315,7128,70,3.6,6,5,23.6,7620,9,999999999,7,0.043,0,88,0,0,1 -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,47636,38845,10522,4056,70,4.1,6,4,23.9,7620,9,999999999,7,0.043,0,88,0,0,1 -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,22284,13372,12229,4390,70,3.6,9,7,24.2,3962,9,999999999,7,0.043,0,88,0,0,1 -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,8557,0,8621,3178,110,3.1,10,10,24.5,2896,9,999999999,7,0.043,0,88,0,0,1 -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,3222,0,3244,1125,100,3.1,10,10,24.8,2438,9,999999999,7,0.043,0,88,0,0,1 -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,25.1,2743,9,999999999,7,0.043,0,88,0,0,1 -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,-6,84,82200,0,0,264,0,0,0,0,0,0,0,100,4.6,10,10,25.4,244,9,999999999,7,0.043,0,88,0,0,1 -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,-6.7,86,82200,0,0,260,0,0,0,0,0,0,0,120,4.1,10,10,25.7,152,9,999999999,7,0.043,0,88,0,0,1 -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,-6.1,91,82200,0,0,260,0,0,0,0,0,0,0,130,5.2,10,10,26,183,9,999999999,7,0.043,0,88,0,0,1 -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,26.3,213,9,999999999,7,0.043,0,88,0,0,1 -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,26.5,305,9,999999999,7,0.043,0,88,0,0,1 -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,26.8,427,9,999999999,7,0.043,0,88,0,0,1 -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,27.1,77777,9,999999999,7,0.043,0,88,0,0,1 -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,27.4,1128,9,999999999,7,0.043,0,88,0,0,1 -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,27.7,1219,9,999999999,7,0.043,0,88,0,0,1 -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,28,701,9,999999999,7,0.043,0,88,0,0,1 -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,28.3,1676,9,999999999,7,0.043,0,88,0,0,1 -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,82,81900,0,0,224,0,0,0,0,0,0,0,180,1.5,10,10,28.6,244,9,999999999,6,0.043,0,88,0,0,1 -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,-17.2,81,81800,0,0,204,0,0,0,0,0,0,0,320,1.5,10,8,28.9,2134,9,999999999,6,0.043,0,88,0,0,1 -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,-13.3,74,81800,78,1140,210,30,98,24,3246,0,2605,680,10,2.1,6,2,29.2,77777,9,999999999,6,0.043,0,88,0,0,1 -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,21013,15497,4704,1600,350,2.6,0,0,29.4,77777,9,999999999,6,0.043,0,88,0,0,1 -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,41607,39146,6646,2446,330,2.6,0,0,29.7,77777,9,999999999,6,0.043,0,88,0,0,1 -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,50023,85765,9873,1430,350,3.6,0,0,30,77777,9,999999999,6,0.043,0,88,0,0,1 -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,57811,90099,10736,1600,350,3.1,0,0,30.3,77777,9,999999999,6,0.043,0,88,0,0,1 -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,59260,90981,10856,1630,20,3.1,0,0,30.6,77777,9,999999999,6,0.043,0,88,0,0,1 -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,54030,88267,10242,1508,10,3.1,0,0,30.9,77777,9,999999999,6,0.043,0,88,0,0,1 -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,42644,80962,9117,1276,360,3.1,0,0,31.2,77777,9,999999999,5,0.043,0,88,0,0,1 -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,29595,26146,5478,1933,360,4.1,0,0,31.5,77777,9,999999999,5,0.043,0,88,0,0,1 -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,9122,0,3199,1004,350,3.6,0,0,31.8,77777,9,999999999,5,0.043,0,88,0,0,1 -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,78,81700,5,294,215,0,21,0,0,0,0,0,50,2.6,0,0,32.1,77777,9,999999999,5,0.043,0,88,0,0,1 -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,-12.2,82,81700,0,0,204,0,0,0,0,0,0,0,90,2.1,0,0,32.3,77777,9,999999999,5,0.043,0,88,0,0,1 -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,32.6,77777,9,999999999,5,0.043,0,88,0,0,1 -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,32.9,6096,9,999999999,5,0.043,0,88,0,0,1 -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,33.2,6096,9,999999999,5,0.043,0,88,0,0,1 -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,33.5,6096,9,999999999,4,0.043,0,88,0,0,1 -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,33.8,77777,9,999999999,4,0.043,0,88,0,0,1 -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,34.1,77777,9,999999999,4,0.043,0,88,0,0,1 -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,34.4,77777,9,999999999,4,0.043,0,88,0,0,1 -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,34.7,77777,9,999999999,4,0.043,0,88,0,0,1 -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,-14.4,67,82000,0,0,203,0,0,0,0,0,0,0,190,2.1,0,0,35,77777,9,999999999,4,0.043,0,88,0,0,1 -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,35.2,77777,9,999999999,4,0.043,0,88,0,0,1 -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,35.5,77777,9,999999999,4,0.043,0,88,0,0,1 -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,35.8,77777,9,999999999,4,0.043,0,88,0,0,1 -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,2906,0,1904,555,170,2.1,3,1,36.1,77777,9,999999999,4,0.043,0,88,0,0,1 -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,21120,16369,5145,1741,170,5.2,1,0,36.4,77777,9,999999999,4,0.043,0,88,0,0,1 -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,41327,39522,7324,2687,160,4.6,1,0,36.7,77777,9,999999999,4,0.043,0,88,0,0,1 -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,57653,50537,8901,3423,180,3.1,1,0,37,77777,9,999999999,4,0.043,0,88,0,0,1 -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,57113,87576,11144,1624,320,1.5,1,1,37.3,77777,9,999999999,4,0.043,0,88,0,0,1 -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,-8.3,49,82600,753,1410,246,540,866,77,56876,85488,11262,1654,350,3.6,1,1,37.6,77777,9,999999999,4,0.043,0,88,0,0,1 -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,58907,49196,9415,3664,350,3.1,1,1,37.9,77777,9,999999999,4,0.043,0,88,0,0,1 -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,49337,45339,7757,2914,20,2.1,0,0,38.1,77777,9,999999999,4,0.043,0,88,0,0,1 -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,29855,27027,5817,2051,10,4.6,0,0,38.4,77777,9,999999999,4,0.043,0,88,0,0,1 -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,9074,0,3524,1096,360,2.1,1,0,38.7,77777,9,999999999,5,0.043,0,88,0,0,1 -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,39,77777,9,999999999,5,0.043,0,88,0,0,1 -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,39.3,77777,9,999999999,5,0.043,0,88,0,0,1 -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,39.6,77777,9,999999999,5,0.043,0,88,0,0,1 -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,39.9,77777,9,999999999,5,0.043,0,88,0,0,1 -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,40.2,77777,9,999999999,5,0.043,0,88,0,0,1 -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,-11.7,56,83200,0,0,228,0,0,0,0,0,0,0,160,1.5,5,2,40.5,77777,9,999999999,5,0.043,0,88,0,0,1 -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,-11.7,56,82800,0,0,221,0,0,0,0,0,0,0,180,1.5,0,0,40.8,77777,9,999999999,5,0.043,0,88,0,0,1 -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,41,77777,9,999999999,5,0.044,0,88,0,0,1 -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,41.3,77777,9,999999999,5,0.044,0,88,0,0,1 -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,41.6,77777,9,999999999,5,0.044,0,88,0,0,1 -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,41.9,77777,9,999999999,5,0.044,0,88,0,0,1 -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,55,83300,0,0,222,0,0,0,0,0,0,0,200,3.1,6,6,42.2,6096,9,999999999,5,0.044,0,88,0,0,1 -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,58,83000,0,0,212,0,0,0,0,0,0,0,170,3.6,4,2,42.5,77777,9,999999999,5,0.044,0,88,0,0,1 -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,42.8,77777,9,999999999,6,0.044,0,88,0,0,1 -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,52,83000,84,1186,222,29,120,20,3209,0,2218,631,180,3.1,7,5,43.1,6096,9,999999999,6,0.044,0,88,0,0,1 -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,14922,5794,12381,3346,180,4.1,10,8,43.4,6096,9,999999999,6,0.044,0,88,0,0,1 -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,26426,17401,16307,5293,210,4.1,9,6,43.7,7620,9,999999999,6,0.044,0,88,0,0,1 -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,40988,31974,17343,6229,0,0,9,6,43.9,7620,9,999999999,6,0.044,0,88,0,0,1 -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,49864,37089,20940,7615,0,0,7,5,44.2,7620,9,999999999,6,0.044,0,88,0,0,1 -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,-11.1,27,83300,758,1409,274,443,494,177,51229,38088,20562,7567,80,2.6,10,6,44.5,6706,9,999999999,6,0.044,0,88,0,0,1 -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,-11.1,27,83200,703,1409,274,293,242,172,33621,18524,19826,7110,70,2.6,10,6,44.8,6706,9,999999999,6,0.044,0,88,0,0,1 -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,-11.7,26,83200,581,1409,281,261,107,217,28681,9200,23972,7218,80,2.6,10,8,45.1,6096,9,999999999,6,0.044,0,88,0,0,1 -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,27959,28045,12699,3922,80,4.1,10,5,45.4,6096,9,999999999,6,0.044,0,88,0,0,1 -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,9650,3348,7668,1805,90,3.1,10,5,45.7,6401,9,999999999,7,0.044,0,88,0,0,1 -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,46,6706,9,999999999,7,0.044,0,88,0,0,1 -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,61,83000,0,0,238,0,0,0,0,0,0,0,100,2.6,8,5,46.3,6706,9,999999999,7,0.044,0,88,0,0,1 -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,46.6,6706,9,999999999,7,0.044,0,88,0,0,1 -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,-13.3,48,83100,0,0,235,0,0,0,0,0,0,0,0,0,9,6,46.8,6706,9,999999999,7,0.044,0,88,0,0,1 -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,47.1,6706,9,999999999,7,0.044,0,88,0,0,1 -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,47.4,6706,9,999999999,7,0.044,0,88,0,0,1 -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,47.7,6706,9,999999999,7,0.044,0,88,0,0,1 -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,47,84000,0,0,218,0,0,0,0,0,0,0,260,3.3,2,2,48,77777,9,999999999,2,0.053,0,88,0,0,1 -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,38,84000,0,0,218,0,0,0,0,0,0,0,270,4.1,5,3,48,77777,9,999999999,2,0.053,0,88,0,0,1 -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,77777,9,999999999,2,0.053,0,88,0,0,1 -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,33,84000,0,0,205,0,0,0,0,0,0,0,270,5.7,1,0,48,77777,9,999999999,2,0.053,0,88,0,0,1 -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,31,84000,0,0,211,0,0,0,0,0,0,0,260,6.2,1,1,48,77777,9,999999999,2,0.053,0,88,0,0,1 -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,77777,9,999999999,2,0.053,0,88,0,0,1 -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,77777,9,999999999,2,0.053,0,88,0,0,1 -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,30,84000,88,1209,212,38,360,12,4037,20293,1993,261,270,5.2,1,1,112,77777,9,999999999,2,0.053,0,88,0,0,1 -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,-18.9,29,84000,321,1409,215,209,798,28,22302,67364,4520,732,280,4.6,0,0,112,77777,9,999999999,2,0.053,0,88,0,0,1 -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,40805,87464,6090,1040,290,5.7,0,0,112,77777,9,999999999,2,0.053,0,88,0,0,1 -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,54844,96397,7140,1262,270,6.2,0,0,112,77777,9,999999999,2,0.053,0,88,0,0,1 -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,18,84000,751,1409,228,592,1015,51,62800,99997,7625,1391,280,4.1,0,0,112,77777,9,999999999,2,0.053,0,88,0,0,1 -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,64289,100602,7751,1420,340,2.6,0,0,112,77777,9,999999999,2,0.053,0,88,0,0,1 -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,58998,98457,7388,1325,90,5.7,0,0,112,77777,9,999999999,2,0.053,0,88,0,0,1 -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,47289,92052,6486,1130,110,6.2,0,0,112,77777,9,999999999,2,0.053,0,88,0,0,1 -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,30397,77625,5104,859,110,6.2,0,0,112,77777,9,999999999,2,0.053,0,88,0,0,1 -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,10992,45004,3286,482,150,3.6,0,0,112,77777,9,999999999,2,0.053,0,88,0,0,1 -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,48,83700,9,387,213,3,83,1,0,0,0,0,130,2.1,0,0,80,77777,9,999999999,2,0.053,0,88,0,0,1 -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,50,83700,0,0,211,0,0,0,0,0,0,0,160,2.6,0,0,48,77777,9,999999999,2,0.053,0,88,0,0,1 -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,77777,9,999999999,2,0.053,0,88,0,0,1 -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,32,77777,9,999999999,2,0.053,0,88,0,0,1 -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,-17.2,52,83600,0,0,200,0,0,0,0,0,0,0,140,2.1,0,0,32,77777,9,999999999,2,0.053,0,88,0,0,1 -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,-17.8,49,83600,0,0,200,0,0,0,0,0,0,0,180,2.6,0,0,32,77777,9,999999999,2,0.053,0,88,0,0,1 -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,77777,9,999999999,2,0.053,0,88,0,0,1 -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,-18.9,44,83600,0,0,199,0,0,0,0,0,0,0,190,2.1,0,0,32,77777,9,999999999,2,0.053,0,88,0,0,1 -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,77777,9,999999999,2,0.053,0,88,0,0,1 -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,77777,9,999999999,2,0.053,0,88,0,0,1 -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,77777,9,999999999,2,0.053,0,88,0,0,1 -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,53,83500,0,0,192,0,0,0,0,0,0,0,0,0,1,1,48,77777,9,999999999,2,0.053,0,88,0,0,1 -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,77777,9,999999999,2,0.053,0,88,0,0,1 -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,53,83500,0,0,188,0,0,0,0,0,0,0,190,2.6,0,0,112,77777,9,999999999,2,0.053,0,88,0,0,1 -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,42,83500,92,1232,196,40,342,14,4234,19489,2310,266,160,4.1,0,0,112,77777,9,999999999,2,0.053,0,88,0,0,1 -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,21886,63218,5282,782,150,3.1,0,0,112,77777,9,999999999,3,0.053,0,88,0,0,1 -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,40119,83822,7119,1127,180,4.6,0,0,112,77777,9,999999999,3,0.053,0,88,0,0,1 -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,54166,93145,8282,1371,200,4.6,0,0,112,77777,9,999999999,3,0.053,0,88,0,0,1 -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,-13.3,22,83300,756,1408,254,588,983,60,62228,97026,8888,1522,190,2.6,0,0,112,77777,9,999999999,3,0.053,0,88,0,0,1 -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,63554,97396,9007,1551,110,1.5,0,0,112,77777,9,999999999,3,0.053,0,88,0,0,1 -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,58408,95320,8660,1451,350,3.1,0,0,96,77777,9,999999999,3,0.053,0,88,0,0,1 -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,46923,88960,7650,1236,350,5.2,0,0,64,77777,9,999999999,3,0.053,0,88,0,0,1 -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,30004,74122,6158,940,360,4.1,0,0,64,77777,9,999999999,3,0.053,0,88,0,0,1 -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,10850,41245,4065,503,350,3.1,0,0,64,77777,9,999999999,3,0.053,0,88,0,0,1 -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,77777,9,999999999,3,0.053,0,88,0,0,1 -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,77777,9,999999999,3,0.053,0,88,0,0,1 -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,77777,9,999999999,3,0.053,0,88,0,0,1 -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,77777,9,999999999,3,0.053,0,88,0,0,1 -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,77777,9,999999999,3,0.053,0,88,0,0,1 -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,77777,9,999999999,3,0.053,0,88,0,0,1 -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,-13.9,70,83500,0,0,210,0,0,0,0,0,0,0,150,3.1,2,2,24,77777,9,999999999,3,0.053,0,88,0,0,1 -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,3,0.053,0,88,0,0,1 -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,-12.2,82,83400,0,0,225,0,0,0,0,0,0,0,170,1.5,10,8,19.2,4572,9,999999999,3,0.053,0,88,0,0,1 -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,-14.4,67,83400,0,0,219,0,0,0,0,0,0,0,190,2.1,7,7,19.2,7010,9,999999999,3,0.053,0,88,0,0,1 -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,3,0.053,0,88,0,0,1 -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,7010,9,999999999,3,0.053,0,88,0,0,1 -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,77777,9,999999999,3,0.053,0,88,0,0,1 -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,77777,9,999999999,3,0.053,0,88,0,0,1 -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,3817,0,2138,634,120,1.5,4,4,80,77777,9,999999999,3,0.053,0,88,0,0,1 -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,23810,18686,4628,1598,200,4.1,2,2,80,77777,9,999999999,3,0.053,0,88,0,0,1 -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,36,83100,530,1408,233,357,725,83,41945,40979,9780,3540,180,2.1,3,3,80,77777,9,999999999,3,0.053,0,88,0,0,1 -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,52518,45766,13501,5079,280,1.5,4,2,80,77777,9,999999999,3,0.053,0,88,0,0,1 -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,52789,38514,23770,8484,340,2.1,8,4,64,77777,9,999999999,3,0.053,0,88,0,0,1 -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,-7.8,36,82900,777,1408,268,563,751,148,66200,54044,17474,6665,350,3.1,7,2,48,77777,9,999999999,3,0.053,0,88,0,0,1 -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,47344,36145,17522,6502,20,3.1,8,4,16,77777,9,999999999,3,0.053,0,88,0,0,1 -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,46654,42814,11228,4151,90,4.6,7,2,12.8,77777,9,999999999,3,0.053,0,88,0,0,1 -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,23155,19200,6068,2160,50,2.6,8,3,16,77777,9,999999999,3,0.053,0,88,0,0,1 -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,-6.1,60,83000,196,1408,257,83,143,63,8971,2482,6834,1828,60,4.6,5,5,16,77777,9,999999999,3,0.053,0,88,0,0,1 -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,45,83100,12,434,250,2,33,1,0,0,0,0,120,4.1,4,4,16,77777,9,999999999,3,0.053,0,88,0,0,1 -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,77777,9,999999999,3,0.053,0,88,0,0,1 -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,1,1,24,77777,9,999999999,3,0.053,0,88,0,0,1 -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,77777,9,999999999,3,0.053,0,88,0,0,1 -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,-12.8,50,83500,0,0,220,0,0,0,0,0,0,0,200,1.5,0,0,24,77777,9,999999999,3,0.053,0,88,0,0,1 -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,77777,9,999999999,3,0.053,0,88,0,0,1 -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,77777,9,999999999,3,0.053,0,88,0,0,1 -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,77777,9,999999999,3,0.054,0,88,0,0,1 -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,58,83500,0,0,206,0,0,0,0,0,0,0,240,2.1,0,0,32,77777,9,999999999,3,0.054,0,88,0,0,1 -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,77777,9,999999999,3,0.054,0,88,0,0,1 -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,77777,9,999999999,3,0.054,0,88,0,0,1 -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,32,77777,9,999999999,3,0.054,0,88,0,0,1 -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,77777,9,999999999,3,0.054,0,88,0,0,1 -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,77777,9,999999999,3,0.054,0,88,0,0,1 -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,-15,64,83300,99,1279,206,41,329,16,4683,0,1830,561,200,1.5,2,1,80,77777,9,999999999,3,0.054,0,88,0,0,1 -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,17727,14008,7110,2350,0,0,3,3,80,77777,9,999999999,3,0.054,0,88,0,0,1 -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,43046,42534,11088,3967,330,2.6,2,2,64,77777,9,999999999,3,0.054,0,88,0,0,1 -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,-9.4,45,83200,683,1408,245,490,838,83,59283,50800,10070,3888,350,2.1,3,1,64,77777,9,999999999,4,0.054,0,88,0,0,1 -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,64333,51377,13368,5225,360,2.6,2,2,64,77777,9,999999999,4,0.054,0,88,0,0,1 -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,60620,47201,15182,5901,340,4.1,3,3,64,77777,9,999999999,4,0.054,0,88,0,0,1 -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,62440,51160,10822,4226,120,2.1,2,2,64,77777,9,999999999,4,0.054,0,88,0,0,1 -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,42937,78659,7928,1268,340,3.1,4,3,48,77777,9,999999999,4,0.054,0,88,0,0,1 -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,-6.7,40,83100,426,1408,282,201,270,119,22345,16120,13283,4163,60,2.6,9,7,48,7010,9,999999999,4,0.054,0,88,0,0,1 -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,4309,0,4339,1492,80,3.1,10,10,64,3962,9,999999999,4,0.054,0,88,0,0,1 -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,3962,9,999999999,4,0.054,0,88,0,0,1 -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,76,83400,0,0,267,0,0,0,0,0,0,0,350,3.6,10,9,32,3962,9,999999999,4,0.054,0,88,0,0,1 -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,3962,9,999999999,4,0.054,0,88,0,0,1 -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,77777,9,999999999,4,0.054,0,88,0,0,1 -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,3962,9,999999999,4,0.054,0,88,0,0,1 -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,77777,9,999999999,4,0.054,0,88,0,0,1 -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,32,77777,9,999999999,4,0.054,0,88,0,0,1 -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,82,83600,0,0,213,0,0,0,0,0,0,0,0,0,0,0,32,77777,9,999999999,4,0.054,0,88,0,0,1 -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,78,83500,0,0,219,0,0,0,0,0,0,0,70,2.6,1,1,32,77777,9,999999999,4,0.054,0,88,0,0,1 -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,77777,9,999999999,4,0.054,0,88,0,0,1 -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,77777,9,999999999,4,0.054,0,88,0,0,1 -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,77777,9,999999999,4,0.054,0,88,0,0,1 -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,77777,9,999999999,4,0.054,0,88,0,0,1 -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,77777,9,999999999,4,0.054,0,88,0,0,1 -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,68,83400,103,1302,230,44,285,21,4931,0,2358,699,200,3.1,3,3,80,77777,9,999999999,4,0.054,0,88,0,0,1 -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,22427,17974,5294,1821,180,2.6,1,1,96,77777,9,999999999,4,0.054,0,88,0,0,1 -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,41010,37111,7031,2619,190,3.1,1,1,96,77777,9,999999999,4,0.054,0,88,0,0,1 -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,55157,92378,8692,1422,200,3.6,0,0,112,77777,9,999999999,4,0.054,0,88,0,0,1 -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,63147,96179,9285,1579,170,2.1,0,0,112,77777,9,999999999,4,0.054,0,88,0,0,1 -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,64661,96759,9402,1610,120,2.1,0,0,112,77777,9,999999999,4,0.054,0,88,0,0,1 -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,59358,94502,9059,1505,310,8.8,0,0,112,77777,9,999999999,4,0.054,0,88,0,0,1 -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,47835,88292,8062,1285,300,11.3,0,0,112,77777,9,999999999,4,0.054,0,88,0,0,1 -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,31061,74189,6445,977,300,6.7,0,0,112,77777,9,999999999,4,0.054,0,88,0,0,1 -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,11883,42954,4375,541,290,7.7,0,0,112,77777,9,999999999,4,0.054,0,88,0,0,1 -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,77777,9,999999999,3,0.054,0,88,0,0,1 -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,77777,9,999999999,3,0.054,0,88,0,0,1 -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,48,77777,9,999999999,3,0.054,0,88,0,0,1 -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,77777,9,999999999,3,0.054,0,88,0,0,1 -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,-13.9,30,83200,0,0,236,0,0,0,0,0,0,0,200,4.1,0,0,48,77777,9,999999999,3,0.054,0,88,0,0,1 -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,77777,9,999999999,3,0.054,0,88,0,0,1 -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,31,83200,0,0,229,0,0,0,0,0,0,0,190,3.6,0,0,48,77777,9,999999999,3,0.054,0,88,0,0,1 -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,34,83200,0,0,225,0,0,0,0,0,0,0,160,3.6,0,0,48,77777,9,999999999,3,0.054,0,88,0,0,1 -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,77777,9,999999999,3,0.054,0,88,0,0,1 -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,77777,9,999999999,3,0.054,0,88,0,0,1 -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,77777,9,999999999,3,0.054,0,88,0,0,1 -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,77777,9,999999999,3,0.054,0,88,0,0,1 -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,36,83200,0,0,231,0,0,0,0,0,0,0,190,5.2,4,2,48,77777,9,999999999,3,0.054,0,88,0,0,1 -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,36,83200,0,0,235,0,0,0,0,0,0,0,150,3.1,6,4,96,6401,9,999999999,3,0.054,0,88,0,0,1 -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,4497,0,4084,1015,180,4.1,7,6,96,6401,9,999999999,3,0.054,0,88,0,0,1 -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,-13.3,32,83300,345,1407,253,177,177,133,19068,10933,14395,3814,200,3.1,8,6,128,6401,9,999999999,3,0.054,0,88,0,0,1 -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,8906,2627,6478,2424,340,2.1,7,7,128,7315,9,999999999,3,0.054,0,88,0,0,1 -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,42718,30570,20540,7269,180,2.1,8,6,128,7315,9,999999999,3,0.054,0,88,0,0,1 -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,63744,51653,18475,6999,80,2.1,4,4,128,77777,9,999999999,3,0.054,0,88,0,0,1 -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,44538,27797,20910,7818,60,1.5,4,3,112,77777,9,999999999,3,0.054,0,88,0,0,1 -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,60481,50965,17586,6582,50,3.1,7,2,112,77777,9,999999999,3,0.054,0,88,0,0,1 -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,43962,39006,15598,5556,80,3.1,8,3,112,77777,9,999999999,3,0.054,0,88,0,0,1 -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,27947,26078,9882,3363,140,3.1,9,2,112,77777,9,999999999,4,0.054,0,88,0,0,1 -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,8194,1956,5776,1709,100,3.6,10,4,112,77777,9,999999999,4,0.054,0,88,0,0,1 -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,7315,9,999999999,4,0.054,0,88,0,0,1 -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,77777,9,999999999,4,0.054,0,88,0,0,1 -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,77777,9,999999999,4,0.054,0,88,0,0,1 -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,77777,9,999999999,4,0.054,0,88,0,0,1 -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,77777,9,999999999,4,0.054,0,88,0,0,1 -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,77777,9,999999999,4,0.054,0,88,0,0,1 -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,9,4,40,77777,9,999999999,4,0.054,0,88,0,0,1 -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,7315,9,999999999,4,0.055,0,88,0,0,1 -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,-7.2,83,83000,0,0,234,0,0,0,0,0,0,0,350,3.6,8,3,32,77777,9,999999999,4,0.055,0,88,0,0,1 -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,77777,9,999999999,4,0.055,0,88,0,0,1 -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,61,9,999999999,4,0.055,0,88,0,0,1 -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,4,0.055,0,88,0,0,1 -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,4,0.055,0,88,0,0,1 -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,5,0.055,0,88,0,0,1 -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,1069,0,1076,419,30,1,10,10,0.8,61,9,999999999,5,0.055,0,88,0,0,1 -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,5455,0,5496,2172,50,2.1,10,10,1.2,244,9,999999999,5,0.055,0,88,0,0,1 -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,8069,0,8133,3486,50,3.1,10,10,1.2,183,9,999999999,5,0.055,0,88,0,0,1 -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,10923,0,11015,4885,90,2.6,10,10,2.4,152,9,999999999,5,0.055,0,88,0,0,1 -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,-7.2,83,82700,785,1406,259,121,0,121,12433,0,12542,5676,350,3.1,10,10,0.8,183,9,999999999,5,0.055,0,88,0,0,1 -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,55147,19321,44680,12385,60,1.5,10,7,3.2,183,9,999999999,5,0.055,0,88,0,0,1 -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,40991,25554,20822,7589,360,3.6,10,6,6.4,7620,9,999999999,5,0.055,0,88,0,0,1 -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,11993,3755,8501,3240,360,2.6,10,6,6.4,7620,9,999999999,5,0.055,0,88,0,0,1 -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,26855,11863,22289,5476,360,4.1,10,6,6.4,7620,9,999999999,5,0.055,0,88,0,0,1 -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,6346,593,5583,1684,100,2.1,10,9,6.4,3658,9,999999999,6,0.055,0,88,0,0,1 -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,6,0.055,0,88,0,0,1 -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,-6.7,86,82400,0,0,260,0,0,0,0,0,0,0,90,2.6,10,10,4.8,3658,9,999999999,6,0.055,0,88,0,0,1 -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,-7.2,83,82400,0,0,259,0,0,0,0,0,0,0,330,2.6,10,10,4.8,3658,9,999999999,6,0.055,0,88,0,0,1 -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,6,0.055,0,88,0,0,1 -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,6,0.055,0,88,0,0,1 -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,43,82200,0,0,308,0,0,0,0,0,0,0,200,7.2,10,10,40,3658,9,999999999,6,0.055,0,88,0,0,1 -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,3658,9,999999999,6,0.055,0,88,0,0,1 -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,3962,9,999999999,6,0.055,0,88,0,0,1 -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,-5,66,82100,0,0,282,0,0,0,0,0,0,0,300,1.5,10,10,32,4267,9,999999999,6,0.055,0,88,0,0,1 -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,10,10,32,4572,9,999999999,7,0.055,0,88,0,0,1 -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,10,10,32,4572,9,999999999,7,0.055,0,88,0,0,1 -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,4572,9,999999999,7,0.055,0,88,0,0,1 -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,4267,9,999999999,7,0.055,0,88,0,0,1 -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,7,0.055,0,88,0,0,1 -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,1558,0,1568,583,50,4.1,10,10,4.8,244,9,999999999,6,0.055,0,88,0,0,1 -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,6061,0,6106,2374,50,4.6,10,10,3.2,396,9,999999999,6,0.055,0,88,0,0,1 -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,12325,0,12423,4903,60,4.1,10,10,3.2,518,9,999999999,6,0.055,0,88,0,0,1 -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,16155,0,16291,6701,70,3.6,10,10,8,579,9,999999999,6,0.055,0,88,0,0,1 -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,26872,9256,18737,7122,40,4.1,10,9,12.8,549,9,999999999,6,0.055,0,88,0,0,1 -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,33610,10696,25249,9130,70,2.6,10,8,9.6,579,9,999999999,6,0.055,0,88,0,0,1 -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,17441,0,17590,7306,60,4.1,10,10,8,640,9,999999999,6,0.055,0,88,0,0,1 -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,29941,15530,19978,6774,50,4.1,8,8,9.6,2286,9,999999999,6,0.055,0,88,0,0,1 -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,12823,7163,6783,2428,50,3.6,7,7,9.6,2286,9,999999999,6,0.055,0,88,0,0,1 -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,9455,1514,8630,2220,70,5.2,10,8,9.6,3962,9,999999999,5,0.055,0,88,0,0,1 -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,5,0.055,0,88,0,0,1 -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,-18.3,73,83100,0,0,213,0,0,0,0,0,0,0,80,3.1,10,10,12.8,2896,9,999999999,5,0.055,0,88,0,0,1 -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,5,0.055,0,88,0,0,1 -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,10,10,4.4,914,9,999999999,5,0.055,0,88,0,0,1 -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,-18.3,73,83300,0,0,207,0,0,0,0,0,0,0,70,2.1,9,9,9.6,1676,9,999999999,5,0.055,0,88,0,0,1 -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,77777,9,999999999,5,0.055,0,88,0,0,1 -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,32,77777,9,999999999,5,0.055,0,88,0,0,1 -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,-18.3,73,83300,0,0,185,0,0,0,0,0,0,0,190,2.6,0,0,24,77777,9,999999999,5,0.055,0,88,0,0,1 -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,77777,9,999999999,4,0.055,0,88,0,0,1 -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,77777,9,999999999,4,0.055,0,88,0,0,1 -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,-17.8,77,83300,0,0,185,0,0,0,0,0,0,0,30,1,0,0,24,77777,9,999999999,4,0.055,0,88,0,0,1 -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,24,77777,9,999999999,4,0.055,0,88,0,0,1 -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,77777,9,999999999,4,0.055,0,88,0,0,1 -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,77777,9,999999999,4,0.055,0,88,0,0,1 -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,77,83300,122,1393,199,42,186,25,4707,0,2808,836,260,1.5,1,1,96,77777,9,999999999,4,0.055,0,88,0,0,1 -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,24665,22109,6414,2195,0,0,0,0,96,77777,9,999999999,4,0.055,0,88,0,0,1 -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,45884,42824,8962,3325,60,1.5,0,0,80,77777,9,999999999,4,0.055,0,88,0,0,1 -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,62894,52529,10796,4198,30,2.6,0,0,48,77777,9,999999999,4,0.055,0,88,0,0,1 -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,72890,56629,11860,4717,340,4.1,0,0,32,77777,9,999999999,4,0.055,0,88,0,0,1 -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,-6.7,57,83100,813,1405,242,612,887,99,74652,57134,12114,4836,350,3.6,0,0,32,77777,9,999999999,4,0.055,0,88,0,0,1 -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,68072,54610,11441,4502,20,2.1,0,0,32,77777,9,999999999,4,0.055,0,88,0,0,1 -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,50916,44305,9754,3708,350,3.6,1,1,11.2,77777,9,999999999,5,0.055,0,88,0,0,1 -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,50,83000,455,1405,258,287,681,66,33690,31678,7767,2762,360,1.5,1,0,11.2,77777,9,999999999,5,0.055,0,88,0,0,1 -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,11765,4902,5506,1696,340,1.5,2,2,48,77777,9,999999999,5,0.055,0,88,0,0,1 -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,77777,9,999999999,5,0.055,0,88,0,0,1 -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,77777,9,999999999,5,0.055,0,88,0,0,1 -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,-5.6,62,82900,0,0,254,0,0,0,0,0,0,0,120,3.1,8,3,40,77777,9,999999999,5,0.055,0,88,0,0,1 -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,4572,9,999999999,5,0.055,0,88,0,0,1 -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,-7.8,36,83000,0,0,285,0,0,0,0,0,0,0,290,4.6,8,8,40,4572,9,999999999,5,0.055,0,88,0,0,1 -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,4572,9,999999999,5,0.055,0,88,0,0,1 -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,4267,9,999999999,5,0.055,0,88,0,0,1 -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,-9.4,31,83100,0,0,269,0,0,0,0,0,0,0,260,5.2,5,3,40,77777,9,999999999,5,0.056,0,88,0,0,1 -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,77777,9,999999999,5,0.056,0,88,0,0,1 -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,77777,9,999999999,5,0.056,0,88,0,0,1 -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,77777,9,999999999,5,0.056,0,88,0,0,1 -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,77777,9,999999999,5,0.056,0,88,0,0,1 -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,77777,9,999999999,5,0.056,0,88,0,0,1 -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,7620,9,999999999,5,0.056,0,88,0,0,1 -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,4590,0,3836,1061,180,1.5,7,5,96,7620,9,999999999,5,0.056,0,88,0,0,1 -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,20183,15327,11959,3599,140,2.1,6,5,96,7620,9,999999999,5,0.056,0,88,0,0,1 -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,-7.8,36,83400,569,1405,273,266,282,151,30028,20179,17120,5769,140,4.1,5,4,96,77777,9,999999999,5,0.056,0,88,0,0,1 -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,42180,18043,31653,9819,110,5.7,8,8,96,3048,9,999999999,5,0.056,0,88,0,0,1 -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,42523,26787,17006,6588,150,7.2,7,7,96,3048,9,999999999,5,0.056,0,88,0,0,1 -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,36951,15882,23672,8760,160,7.7,8,8,96,2743,9,999999999,5,0.056,0,88,0,0,1 -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,50257,35812,21424,7849,160,7.2,7,6,96,2896,9,999999999,5,0.056,0,88,0,0,1 -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,21511,11101,11977,4491,160,6.2,9,8,80,2743,9,999999999,5,0.056,0,88,0,0,1 -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,41,83000,461,1405,302,126,11,122,14103,678,13711,4429,160,5.7,9,9,80,2591,9,999999999,5,0.056,0,88,0,0,1 -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,6265,393,5722,1762,320,8.8,9,9,80,2591,9,999999999,5,0.056,0,88,0,0,1 -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,7620,9,999999999,5,0.056,0,88,0,0,1 -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,3353,9,999999999,5,0.056,0,88,0,0,1 -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,6,0.056,0,88,0,0,1 -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,6,0.056,0,88,0,0,1 -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,77777,9,999999999,6,0.056,0,88,0,0,1 -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,76,82800,0,0,248,0,0,0,0,0,0,0,360,2.1,3,3,24,77777,9,999999999,6,0.056,0,88,0,0,1 -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,77777,9,999999999,6,0.056,0,88,0,0,1 -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,77777,9,999999999,6,0.056,0,88,0,0,1 -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,91,82600,0,0,230,0,0,0,0,0,0,0,170,1.5,0,0,24,77777,9,999999999,6,0.056,0,88,0,0,1 -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,1,0,24,77777,9,999999999,6,0.056,0,88,0,0,1 -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,77777,9,999999999,6,0.056,0,88,0,0,1 -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,77777,9,999999999,6,0.056,0,88,0,0,1 -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,-6.1,91,82400,0,0,226,0,0,0,0,0,0,0,0,0,1,0,19.2,77777,9,999999999,6,0.056,0,88,0,0,1 -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,19.2,77777,9,999999999,6,0.056,0,88,0,0,1 -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,6999,0,2298,720,190,2.1,0,0,64,77777,9,999999999,6,0.056,0,88,0,0,1 -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,25559,67227,5877,874,170,2.6,0,0,80,77777,9,999999999,6,0.056,0,88,0,0,1 -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,44089,85236,7667,1219,60,2.1,0,0,72,77777,9,999999999,6,0.056,0,88,0,0,1 -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,58171,93364,8794,1475,70,2.6,0,0,72,77777,9,999999999,6,0.056,0,88,0,0,1 -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,60336,87183,9240,1629,20,5.2,1,1,48,77777,9,999999999,6,0.056,0,88,0,0,1 -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,65061,93089,9358,1663,10,5.7,1,1,40,77777,9,999999999,6,0.056,0,88,0,0,1 -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,-2.8,55,82100,770,1404,280,512,607,180,59174,46109,20899,7726,10,6.2,5,5,32,77777,9,999999999,6,0.056,0,88,0,0,1 -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,30996,15072,21065,7151,350,6.7,7,7,24,2743,9,999999999,6,0.056,0,88,0,0,1 -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,6700,0,6752,2823,10,7.2,10,10,1.6,183,9,999999999,6,0.056,0,88,0,0,1 -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,2945,0,2966,1169,360,7.2,10,10,0.4,61,9,999999999,6,0.056,0,88,0,0,1 -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,0,0,0,0,350,8.2,10,10,0.8,120,9,999999999,6,0.056,0,88,0,0,1 -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,6,0.056,0,88,0,0,1 -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,-6.1,91,83100,0,0,260,0,0,0,0,0,0,0,20,11.8,10,10,0.6,183,9,999999999,6,0.056,0,88,0,0,1 -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,6,0.056,0,88,0,0,1 -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,6,0.056,0,88,0,0,1 -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,6,0.056,0,88,0,0,1 -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,6,0.056,0,88,0,0,1 -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,6,0.055,0,88,0,0,1 -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,68,83800,0,0,254,0,0,0,0,0,0,0,320,3.1,10,10,12.8,1372,9,999999999,6,0.055,0,88,0,0,1 -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,2591,9,999999999,6,0.055,0,88,0,0,1 -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,86,83900,0,0,237,0,0,0,0,0,0,0,160,2.1,10,9,32,3962,9,999999999,6,0.055,0,88,0,0,1 -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,-11.1,91,84000,0,0,226,0,0,0,0,0,0,0,160,2.6,10,8,32,6096,9,999999999,6,0.055,0,88,0,0,1 -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,-11.1,91,84000,0,0,222,0,0,0,0,0,0,0,170,1.5,7,7,32,6096,9,999999999,6,0.055,0,88,0,0,1 -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,77777,9,999999999,6,0.055,0,88,0,0,1 -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,-11.1,91,84200,137,1404,212,58,238,34,6400,0,3762,1079,170,2.1,2,2,96,77777,9,999999999,6,0.055,0,88,0,0,1 -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,20542,51955,5268,845,180,1.5,1,1,96,77777,9,999999999,6,0.055,0,88,0,0,1 -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,59,84300,581,1404,230,389,821,49,41380,78715,7512,1215,180,3.1,1,1,96,77777,9,999999999,6,0.055,0,88,0,0,1 -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,58904,94460,8215,1432,180,3.6,0,0,96,77777,9,999999999,6,0.055,0,88,0,0,1 -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,67005,97861,8806,1597,190,5.2,0,0,96,77777,9,999999999,5,0.055,0,88,0,0,1 -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,68551,98370,8924,1631,150,5.2,0,0,112,77777,9,999999999,5,0.055,0,88,0,0,1 -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,63301,96419,8580,1521,180,3.6,0,0,112,77777,9,999999999,5,0.055,0,88,0,0,1 -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,51699,91087,7729,1306,180,4.6,0,0,112,77777,9,999999999,5,0.055,0,88,0,0,1 -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,-12.8,33,84300,472,1404,237,328,854,40,34949,78935,6271,1012,170,3.6,0,0,112,77777,9,999999999,5,0.055,0,88,0,0,1 -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,-12.2,35,84300,246,1404,237,142,658,27,15123,51482,4377,622,190,3.1,0,0,96,77777,9,999999999,5,0.055,0,88,0,0,1 -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,0,0,0,0,220,3.1,0,0,96,77777,9,999999999,4,0.055,0,88,0,0,1 -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,77777,9,999999999,4,0.055,0,88,0,0,1 -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,77777,9,999999999,4,0.055,0,88,0,0,1 -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,77777,9,999999999,4,0.055,0,88,0,0,1 -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,77777,9,999999999,4,0.055,0,88,0,0,1 -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,58,84600,0,0,206,0,0,0,0,0,0,0,180,2.6,0,0,48,77777,9,999999999,4,0.055,0,88,0,0,1 -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,58,84600,0,0,206,0,0,0,0,0,0,0,160,2.6,0,0,48,77777,9,999999999,4,0.055,0,88,0,0,1 -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,77777,9,999999999,3,0.056,0,88,0,0,1 -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,77777,9,999999999,3,0.056,0,88,0,0,1 -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,77777,9,999999999,3,0.056,0,88,0,0,1 -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,77777,9,999999999,3,0.056,0,88,0,0,1 -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,77777,9,999999999,3,0.056,0,88,0,0,1 -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,77777,9,999999999,3,0.056,0,88,0,0,1 -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,77777,9,999999999,3,0.056,0,88,0,0,1 -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,7897,37294,2648,389,190,5.2,0,0,128,77777,9,999999999,3,0.056,0,88,0,0,1 -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,27961,75071,4655,799,150,5.7,0,0,128,77777,9,999999999,3,0.056,0,88,0,0,1 -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,46895,91668,6191,1100,180,6.2,0,0,128,77777,9,999999999,3,0.056,0,88,0,0,1 -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,61292,99082,7215,1333,180,4.6,0,0,128,77777,9,999999999,3,0.056,0,88,0,0,1 -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,69490,102078,7685,1476,180,4.6,0,0,128,77777,9,999999999,3,0.056,0,88,0,0,1 -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,-11.7,18,84300,838,1403,280,623,933,66,65836,92910,9605,1707,190,4.6,1,1,128,77777,9,999999999,3,0.056,0,88,0,0,1 -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,61478,93837,7309,1386,190,4.6,1,1,128,77777,9,999999999,3,0.056,0,88,0,0,1 -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,11,84200,659,1403,291,459,739,112,54073,48863,13240,4950,0,0,6,2,128,77777,9,999999999,3,0.056,0,88,0,0,1 -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,29912,27138,12214,4127,180,3.1,8,3,128,77777,9,999999999,3,0.056,0,88,0,0,1 -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,20,84100,251,1403,293,89,170,58,9932,3908,6492,1984,160,1.5,7,4,96,77777,9,999999999,3,0.056,0,88,0,0,1 -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,0,0,0,0,150,1.5,8,3,96,77777,9,999999999,3,0.056,0,88,0,0,1 -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,77777,9,999999999,3,0.056,0,88,0,0,1 -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,-10,30,84000,0,0,269,0,0,0,0,0,0,0,190,4.1,5,3,48,77777,9,999999999,3,0.056,0,88,0,0,1 -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,77777,9,999999999,3,0.056,0,88,0,0,1 -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,77777,9,999999999,3,0.056,0,88,0,0,1 -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,77777,9,999999999,3,0.056,0,88,0,0,1 -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,77777,9,999999999,4,0.056,0,88,0,0,1 -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,6706,9,999999999,4,0.056,0,88,0,0,1 -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,6706,9,999999999,4,0.056,0,88,0,0,1 -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,7010,9,999999999,4,0.056,0,88,0,0,1 -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,7010,9,999999999,4,0.056,0,88,0,0,1 -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,6706,9,999999999,4,0.056,0,88,0,0,1 -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,6706,9,999999999,4,0.056,0,88,0,0,1 -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,6706,9,999999999,4,0.056,0,88,0,0,1 -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,5416,0,5000,1335,200,5.7,7,6,128,6706,9,999999999,4,0.056,0,88,0,0,1 -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,13512,2038,12455,3818,170,3.6,9,9,128,6706,9,999999999,4,0.056,0,88,0,0,1 -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,29369,5465,26678,7737,160,3.1,9,9,128,6706,9,999999999,4,0.056,0,88,0,0,1 -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,42467,12735,35200,10622,160,3.6,9,9,128,6706,9,999999999,4,0.056,0,88,0,0,1 -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,47497,26487,26524,9607,10,2.1,9,7,112,6706,9,999999999,4,0.056,0,88,0,0,1 -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,48464,18230,35808,11868,110,5.2,9,8,96,6096,9,999999999,4,0.056,0,88,0,0,1 -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,48879,31839,23345,8519,120,5.2,9,4,104,77777,9,999999999,4,0.056,0,88,0,0,1 -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,-7.8,26,83600,665,1403,291,429,499,192,48437,39795,21783,7432,120,4.6,8,3,104,77777,9,999999999,4,0.056,0,88,0,0,1 -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,32765,31049,12332,4180,130,6.2,7,1,104,77777,9,999999999,4,0.056,0,88,0,0,1 -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,12372,6754,7426,2204,130,4.1,8,3,80,77777,9,999999999,4,0.056,0,88,0,0,1 -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,0,0,0,0,130,3.1,7,2,80,77777,9,999999999,4,0.056,0,88,0,0,1 -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,77777,9,999999999,4,0.056,0,88,0,0,1 -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,77777,9,999999999,4,0.056,0,88,0,0,1 -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,77777,9,999999999,4,0.056,0,88,0,0,1 -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,77777,9,999999999,4,0.056,0,88,0,0,1 -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,77777,9,999999999,4,0.056,0,88,0,0,1 -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,77777,9,999999999,4,0.056,0,88,0,0,1 -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,77777,9,999999999,4,0.057,0,88,0,0,1 -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,77777,9,999999999,4,0.057,0,88,0,0,1 -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,77777,9,999999999,4,0.057,0,88,0,0,1 -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,-6.7,86,84200,0,0,225,0,0,0,0,0,0,0,330,1.5,0,0,32,77777,9,999999999,4,0.057,0,88,0,0,1 -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,77777,9,999999999,4,0.057,0,88,0,0,1 -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,77777,9,999999999,4,0.057,0,88,0,0,1 -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,-8.3,75,84200,2,175,224,0,6,0,0,0,0,0,150,2.1,0,0,112,77777,9,999999999,4,0.057,0,88,0,0,1 -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,7655,0,3385,1031,170,3.1,0,0,112,77777,9,999999999,4,0.057,0,88,0,0,1 -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,29054,26976,6366,2229,210,4.6,0,0,112,77777,9,999999999,4,0.057,0,88,0,0,1 -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,51200,46743,8696,3281,200,5.2,0,0,112,77777,9,999999999,4,0.057,0,88,0,0,1 -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,23,84100,749,1402,272,562,892,85,68676,55481,10416,4107,160,2.6,0,0,112,77777,9,999999999,4,0.057,0,88,0,0,1 -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,67197,91712,13154,1891,170,3.1,0,0,112,77777,9,999999999,4,0.057,0,88,0,0,1 -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,68671,92255,13257,1935,180,5.7,0,0,96,77777,9,999999999,4,0.057,0,88,0,0,1 -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,63261,89848,12827,1782,260,1.5,0,0,96,77777,9,999999999,4,0.057,0,88,0,0,1 -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,16,83900,671,1402,292,490,860,78,59453,51242,9489,3661,150,1,0,0,96,77777,9,999999999,4,0.057,0,88,0,0,1 -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,25,83900,490,1402,298,327,759,62,38897,36350,7392,2689,160,3.1,0,0,96,77777,9,999999999,4,0.057,0,88,0,0,1 -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,16212,8881,4840,1585,150,2.6,0,0,96,77777,9,999999999,4,0.057,0,88,0,0,1 -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,0,0,0,0,160,3.1,0,0,96,77777,9,999999999,4,0.057,0,88,0,0,1 -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,77777,9,999999999,4,0.057,0,88,0,0,1 -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,77777,9,999999999,4,0.057,0,88,0,0,1 -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,77777,9,999999999,4,0.057,0,88,0,0,1 -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,77777,9,999999999,4,0.057,0,88,0,0,1 -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,77777,9,999999999,4,0.057,0,88,0,0,1 -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,7620,9,999999999,4,0.057,0,88,0,0,1 -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,7620,9,999999999,4,0.057,0,88,0,0,1 -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,77777,9,999999999,5,0.057,0,88,0,0,1 -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,4572,9,999999999,5,0.057,0,88,0,0,1 -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,7620,9,999999999,5,0.057,0,88,0,0,1 -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,-12.2,24,83900,0,0,273,0,0,0,0,0,0,0,110,3.6,8,6,40,7620,9,999999999,5,0.057,0,88,0,0,1 -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,7620,9,999999999,5,0.057,0,88,0,0,1 -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,-12.8,23,83900,2,199,270,0,0,0,0,0,0,0,190,7.2,8,5,40,7620,9,999999999,5,0.057,0,88,0,0,1 -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,5156,0,4732,1335,190,8.2,10,6,96,7620,9,999999999,5,0.057,0,88,0,0,1 -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,14854,3588,12911,3973,190,5.7,10,9,112,4877,9,999999999,5,0.057,0,88,0,0,1 -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,-11.7,18,84000,606,1401,308,179,4,177,20117,311,19985,6653,200,5.7,9,9,112,4877,9,999999999,5,0.057,0,88,0,0,1 -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,39113,22747,21096,7721,220,7.7,8,6,112,6706,9,999999999,5,0.057,0,88,0,0,1 -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,68089,51281,18670,7261,220,5.7,7,2,112,77777,9,999999999,5,0.057,0,88,0,0,1 -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,56153,35368,26425,9741,210,4.6,9,4,112,77777,9,999999999,5,0.057,0,88,0,0,1 -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,50419,26261,32681,10844,210,3.6,10,6,112,7620,9,999999999,5,0.057,0,88,0,0,1 -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,47966,40142,16869,6153,340,1.5,10,5,112,77777,9,999999999,5,0.057,0,88,0,0,1 -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,-4.4,25,83800,495,1401,327,206,187,140,22997,12552,15697,5058,70,4.6,10,7,112,7620,9,999999999,5,0.057,0,88,0,0,1 -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,12597,5669,9376,2604,110,4.6,10,6,96,4877,9,999999999,5,0.057,0,88,0,0,1 -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,0,0,0,0,110,3.6,10,7,80,4877,9,999999999,5,0.057,0,88,0,0,1 -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,7925,9,999999999,5,0.057,0,88,0,0,1 -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,7925,9,999999999,5,0.057,0,88,0,0,1 -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,4877,9,999999999,5,0.057,0,88,0,0,1 -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,4877,9,999999999,5,0.057,0,88,0,0,1 -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,7925,9,999999999,5,0.057,0,88,0,0,1 -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,77777,9,999999999,5,0.057,0,88,0,0,1 -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,77777,9,999999999,5,0.058,0,88,0,0,1 -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,58,83700,0,0,261,0,0,0,0,0,0,0,350,2.6,5,3,32,77777,9,999999999,6,0.058,0,88,0,0,1 -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,5,2,32,77777,9,999999999,6,0.058,0,88,0,0,1 -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,77777,9,999999999,6,0.058,0,88,0,0,1 -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,3962,9,999999999,6,0.058,0,88,0,0,1 -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,6,6,32,3962,9,999999999,6,0.058,0,88,0,0,1 -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,4572,9,999999999,6,0.058,0,88,0,0,1 -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,4986,0,4334,1274,170,2.1,9,5,96,4877,9,999999999,6,0.058,0,88,0,0,1 -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,21178,4642,19354,4896,180,5.2,10,9,112,7315,9,999999999,6,0.058,0,88,0,0,1 -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,-9.4,22,83300,612,1401,320,146,0,146,14803,0,14924,5873,190,4.1,10,10,112,3962,9,999999999,6,0.058,0,88,0,0,1 -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,20010,0,20182,8156,190,5.7,10,10,112,3962,9,999999999,6,0.058,0,88,0,0,1 -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,18446,4909,12869,5177,180,6.2,9,9,112,3962,9,999999999,6,0.058,0,88,0,0,1 -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,-6.7,20,82900,863,1401,325,465,57,430,50932,6317,47423,13720,170,4.1,9,7,112,6706,9,999999999,6,0.058,0,88,0,0,1 -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,40528,7045,36196,11549,190,6.2,9,8,112,6706,9,999999999,7,0.058,0,88,0,0,1 -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,36316,21823,20587,7239,170,7.2,7,7,112,6706,9,999999999,7,0.058,0,88,0,0,1 -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,32935,29489,14786,4878,180,8.2,8,5,112,8534,9,999999999,7,0.058,0,88,0,0,1 -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,-3.9,26,82500,273,1401,321,116,178,81,12688,6254,8893,2555,180,6.7,6,5,112,7925,9,999999999,7,0.058,0,88,0,0,1 -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,1199,0,1093,292,180,5.2,3,3,112,77777,9,999999999,7,0.058,0,88,0,0,1 -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,77777,9,999999999,7,0.058,0,88,0,0,1 -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,3,3,32,77777,9,999999999,7,0.058,0,88,0,0,1 -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,-2.8,39,82300,0,0,289,0,0,0,0,0,0,0,190,5.2,1,1,32,77777,9,999999999,7,0.058,0,88,0,0,1 -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,77777,9,999999999,7,0.058,0,88,0,0,1 -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,-3.3,38,82100,0,0,298,0,0,0,0,0,0,0,140,4.1,6,4,48,7620,9,999999999,7,0.058,0,88,0,0,1 -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,7620,9,999999999,7,0.058,0,88,0,0,1 -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,77777,9,999999999,8,0.058,0,88,0,0,1 -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,77777,9,999999999,8,0.058,0,88,0,0,1 -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,4877,9,999999999,8,0.058,0,88,0,0,1 -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,4877,9,999999999,8,0.058,0,88,0,0,1 -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,4877,9,999999999,8,0.058,0,88,0,0,1 -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,7,5,48,7620,9,999999999,8,0.058,0,88,0,0,1 -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,6,268,269,1,32,0,0,0,0,0,170,3.6,3,3,96,77777,9,999999999,8,0.058,0,88,0,0,1 -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,9820,0,4140,1246,200,3.6,1,1,96,77777,9,999999999,8,0.058,0,88,0,0,1 -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,29847,74282,5557,903,200,6.7,0,0,96,77777,9,999999999,7,0.058,0,88,0,0,1 -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,25,81700,618,1400,303,390,776,47,41708,75351,7190,1226,200,8.2,1,1,96,77777,9,999999999,7,0.058,0,88,0,0,1 -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,51163,36150,21766,7983,190,7.2,6,6,96,3353,9,999999999,7,0.058,0,88,0,0,1 -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,24,81500,854,1400,305,614,877,79,64822,87693,11358,1874,190,9.3,2,1,96,77777,9,999999999,7,0.058,0,88,0,0,1 -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,53314,33176,21708,8369,200,10.3,6,6,96,6706,9,999999999,7,0.058,0,88,0,0,1 -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,48828,25529,30006,10392,290,10.3,6,6,96,7315,9,999999999,7,0.058,0,88,0,0,1 -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,52703,44314,13963,5270,190,2.1,5,5,96,77777,9,999999999,7,0.058,0,88,0,0,1 -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,32403,28894,8743,3165,50,4.1,6,5,96,7620,9,999999999,7,0.058,0,88,0,0,1 -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,35,81600,279,1400,305,102,190,64,11403,5435,7177,2226,340,6.7,8,8,96,3048,9,999999999,6,0.058,0,88,0,0,1 -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,1621,0,1301,336,360,1,5,5,104,77777,9,999999999,6,0.058,0,88,0,0,1 -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,40,81800,0,0,282,0,0,0,0,0,0,0,30,3.6,3,3,48,77777,9,999999999,6,0.058,0,88,0,0,1 -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,4572,9,999999999,6,0.058,0,88,0,0,1 -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,4572,9,999999999,6,0.058,0,88,0,0,1 -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,77777,9,999999999,6,0.058,0,88,0,0,1 -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,4572,9,999999999,6,0.058,0,88,0,0,1 -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,4267,9,999999999,6,0.058,0,88,0,0,1 -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,2286,9,999999999,5,0.059,0,88,0,0,1 -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,1829,9,999999999,5,0.059,0,88,0,0,1 -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,2438,9,999999999,5,0.059,0,88,0,0,1 -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,4,3,40,77777,9,999999999,5,0.059,0,88,0,0,1 -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,77777,9,999999999,5,0.059,0,88,0,0,1 -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,77777,9,999999999,5,0.059,0,88,0,0,1 -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,77777,9,999999999,5,0.059,0,88,0,0,1 -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,6174,291,4976,1442,190,2.6,4,3,96,77777,9,999999999,5,0.059,0,88,0,0,1 -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,20909,12081,14811,4447,200,3.1,7,7,96,7010,9,999999999,5,0.059,0,88,0,0,1 -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,37436,27589,18802,6477,230,2.1,8,4,96,77777,9,999999999,5,0.059,0,88,0,0,1 -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,58480,45277,21057,7799,10,1.5,6,2,96,77777,9,999999999,5,0.059,0,88,0,0,1 -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,68546,50044,21142,8152,10,2.6,4,3,96,77777,9,999999999,5,0.059,0,88,0,0,1 -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,31767,5695,26939,9993,40,2.1,7,7,80,2134,9,999999999,5,0.059,0,88,0,0,1 -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,17319,0,17471,7575,330,5.7,10,10,64,2134,9,999999999,5,0.059,0,88,0,0,1 -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,13877,0,13995,5932,20,4.6,10,10,80,2134,9,999999999,5,0.059,0,88,0,0,1 -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,30787,26605,13162,4508,360,3.6,6,6,96,3353,9,999999999,5,0.059,0,88,0,0,1 -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,16034,11590,9746,2756,50,3.1,5,5,96,77777,9,999999999,5,0.059,0,88,0,0,1 -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,1325,0,1107,310,110,2.6,3,3,80,77777,9,999999999,5,0.059,0,88,0,0,1 -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,77777,9,999999999,5,0.059,0,88,0,0,1 -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,-3.3,76,83000,0,0,245,0,0,0,0,0,0,0,120,3.1,0,0,48,77777,9,999999999,5,0.059,0,88,0,0,1 -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,4,2,32,77777,9,999999999,5,0.059,0,88,0,0,1 -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,5,0.059,0,88,0,0,1 -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,5,0.059,0,88,0,0,1 -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,91,9,999999999,5,0.059,0,88,0,0,1 -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,183,9,999999999,5,0.059,0,88,0,0,1 -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,5,0.059,0,88,0,0,1 -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,10,10,9.6,152,9,999999999,5,0.059,0,88,0,0,1 -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,4,0.059,0,88,0,0,1 -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,4,0.059,0,88,0,0,1 -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,9.6,77777,9,999999999,4,0.059,0,88,0,0,1 -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,4,0.059,0,88,0,0,1 -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,11603,0,3648,1146,190,4.1,2,2,64,77777,9,999999999,4,0.059,0,88,0,0,1 -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,-10.6,40,83600,427,1399,243,279,787,38,29760,71404,5998,949,170,3.1,1,1,80,77777,9,999999999,4,0.059,0,88,0,0,1 -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,50491,91901,7030,1223,160,2.1,0,0,112,77777,9,999999999,4,0.059,0,88,0,0,1 -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,64702,98463,8011,1471,140,2.6,0,0,112,77777,9,999999999,4,0.059,0,88,0,0,1 -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,72815,101227,8458,1634,130,2.1,0,0,112,77777,9,999999999,4,0.059,0,88,0,0,1 -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,18,83500,882,1399,261,682,988,58,72256,98699,8437,1653,60,2.1,1,1,112,77777,9,999999999,4,0.059,0,88,0,0,1 -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,72815,56530,15533,6125,50,4.1,7,2,112,77777,9,999999999,4,0.059,0,88,0,0,1 -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,60324,50861,10224,3972,90,4.1,5,3,112,77777,9,999999999,4,0.059,0,88,0,0,1 -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,24388,17459,12121,4235,70,5.2,7,7,112,3658,9,999999999,4,0.059,0,88,0,0,1 -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,13508,7883,8444,2543,70,5.7,8,5,96,3658,9,999999999,4,0.059,0,88,0,0,1 -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,1827,0,1617,407,70,6.2,7,5,96,6706,9,999999999,4,0.059,0,88,0,0,1 -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,3353,9,999999999,4,0.059,0,88,0,0,1 -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,2896,9,999999999,4,0.059,0,88,0,0,1 -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,2896,9,999999999,4,0.059,0,88,0,0,1 -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,77777,9,999999999,4,0.059,0,88,0,0,1 -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,77777,9,999999999,4,0.059,0,88,0,0,1 -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,77777,9,999999999,4,0.059,0,88,0,0,1 -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,-6.1,60,83500,0,0,243,0,0,0,0,0,0,0,180,4.1,0,0,32,77777,9,999999999,4,0.06,0,88,0,0,1 -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,77777,9,999999999,4,0.06,0,88,0,0,1 -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,77777,9,999999999,4,0.06,0,88,0,0,1 -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,77777,9,999999999,4,0.06,0,88,0,0,1 -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,2,2,32,77777,9,999999999,4,0.06,0,88,0,0,1 -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,-6.7,86,83500,0,0,225,0,0,0,0,0,0,0,0,0,0,0,32,77777,9,999999999,4,0.06,0,88,0,0,1 -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,77777,9,999999999,4,0.06,0,88,0,0,1 -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,9283,0,3972,1240,310,3.1,3,3,16,77777,9,999999999,4,0.06,0,88,0,0,1 -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,6189,0,6237,2583,320,2.6,10,10,4,122,9,999999999,4,0.06,0,88,0,0,1 -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,9846,0,9928,4341,320,2.6,10,10,4.8,152,9,999999999,4,0.06,0,88,0,0,1 -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,15103,0,15235,6691,360,3.6,10,10,8,305,9,999999999,4,0.06,0,88,0,0,1 -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,-4.4,69,83400,873,1398,282,197,0,197,20381,0,20563,8849,320,4.1,10,10,9.6,427,9,999999999,4,0.06,0,88,0,0,1 -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,63,83300,888,1398,284,201,0,201,20822,0,21009,9062,320,3.6,10,10,11.2,549,9,999999999,4,0.06,0,88,0,0,1 -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,19282,0,19452,8295,340,4.6,10,10,11.2,488,9,999999999,4,0.06,0,88,0,0,1 -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,-4.4,69,83200,707,1398,282,156,0,156,15925,0,16061,6655,340,5.2,10,10,9.6,488,9,999999999,4,0.06,0,88,0,0,1 -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,-4.4,69,83200,524,1398,282,110,0,110,11063,0,11151,4410,350,6.2,10,10,12.8,518,9,999999999,4,0.06,0,88,0,0,1 -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,5427,0,5467,2042,340,6.2,10,10,6.4,457,9,999999999,5,0.06,0,88,0,0,1 -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,482,0,486,184,360,6.2,10,10,2.4,122,9,999999999,5,0.06,0,88,0,0,1 -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,5,0.06,0,88,0,0,1 -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,183,9,999999999,5,0.06,0,88,0,0,1 -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,5,0.06,0,88,0,0,1 -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,5,0.06,0,88,0,0,1 -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,5,0.06,0,88,0,0,1 -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,-6.1,91,83300,0,0,260,0,0,0,0,0,0,0,340,4.1,10,10,3.2,244,9,999999999,5,0.06,0,88,0,0,1 -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,5,0.06,0,88,0,0,1 -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,5,0.06,0,88,0,0,1 -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,1676,9,999999999,5,0.06,0,88,0,0,1 -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,5,0.06,0,88,0,0,1 -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,5,0.06,0,88,0,0,1 -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,5,0.06,0,88,0,0,1 -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,5,0.06,0,88,0,0,1 -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,2252,0,2268,889,360,2.6,10,10,1.6,274,9,999999999,5,0.06,0,88,0,0,1 -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,7596,0,7654,3070,360,3.1,10,10,3.2,762,9,999999999,5,0.06,0,88,0,0,1 -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,-6.7,86,83200,644,1398,260,106,0,106,10772,0,10861,4694,360,2.6,10,10,4.8,274,9,999999999,5,0.06,0,88,0,0,1 -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,14297,0,14422,6417,360,3.6,10,10,3.2,244,9,999999999,5,0.06,0,88,0,0,1 -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,16262,0,16408,7415,360,3.1,10,10,11.2,366,9,999999999,5,0.06,0,88,0,0,1 -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,19910,0,20090,8780,340,2.1,10,10,11.2,1829,9,999999999,4,0.06,0,88,0,0,1 -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,18272,0,18434,7982,330,2.1,10,10,11.2,518,9,999999999,4,0.06,0,88,0,0,1 -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,14820,0,14946,6318,350,2.6,10,10,11.2,549,9,999999999,4,0.06,0,88,0,0,1 -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,9868,0,9947,4054,300,2.1,10,10,12.8,732,9,999999999,4,0.06,0,88,0,0,1 -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,56,83200,300,1398,263,45,0,45,4447,0,4480,1753,360,1,10,10,16,732,9,999999999,4,0.06,0,88,0,0,1 -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,870,0,875,305,40,2.1,10,10,11.2,762,9,999999999,4,0.06,0,88,0,0,1 -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,853,9,999999999,4,0.06,0,88,0,0,1 -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,-7.2,83,83300,0,0,259,0,0,0,0,0,0,0,120,1.5,10,10,11.2,853,9,999999999,4,0.06,0,88,0,0,1 -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,4,0.06,0,88,0,0,1 -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,975,9,999999999,4,0.06,0,88,0,0,1 -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,10,10,16,914,9,999999999,4,0.06,0,88,0,0,1 -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,3,0.06,0,88,0,0,1 -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,457,9,999999999,3,0.061,0,88,0,0,1 -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,77777,9,999999999,3,0.061,0,88,0,0,1 -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,77777,9,999999999,3,0.061,0,88,0,0,1 -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,-12.8,78,83300,0,0,204,0,0,0,0,0,0,0,210,1,0,0,40,77777,9,999999999,3,0.061,0,88,0,0,1 -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,77777,9,999999999,3,0.061,0,88,0,0,1 -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,1,1,64,77777,9,999999999,3,0.061,0,88,0,0,1 -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,77777,9,999999999,3,0.061,0,88,0,0,1 -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,10247,2318,4629,1428,290,5.2,1,0,96,77777,9,999999999,3,0.061,0,88,0,0,1 -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,32443,31488,8308,2922,230,2.6,1,0,96,77777,9,999999999,3,0.061,0,88,0,0,1 -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,55241,49270,10914,4146,230,4.1,0,0,96,77777,9,999999999,3,0.061,0,88,0,0,1 -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,25,83400,801,1397,239,601,861,107,72868,57453,13016,5159,290,5.7,0,0,120,77777,9,999999999,3,0.061,0,88,0,0,1 -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,83102,60579,14103,5705,310,6.7,0,0,112,77777,9,999999999,3,0.061,0,88,0,0,1 -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,84954,61140,14249,5782,290,6.7,0,0,112,77777,9,999999999,3,0.061,0,88,0,0,1 -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,77908,59043,13558,5432,240,6.2,0,0,112,77777,9,999999999,3,0.061,0,88,0,0,1 -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,60336,51680,14276,5446,220,2.1,1,1,112,77777,9,999999999,3,0.061,0,88,0,0,1 -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,18,83000,536,1397,272,315,499,123,35934,32845,14086,4843,260,3.1,6,5,112,6706,9,999999999,4,0.061,0,88,0,0,1 -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,13177,5816,10031,2924,150,2.6,6,5,112,6706,9,999999999,4,0.061,0,88,0,0,1 -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,1774,0,1444,409,290,4.6,5,4,112,77777,9,999999999,4,0.061,0,88,0,0,1 -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,77777,9,999999999,4,0.061,0,88,0,0,1 -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,-12.2,35,82900,0,0,254,0,0,0,0,0,0,0,350,3.6,8,6,48,4877,9,999999999,4,0.061,0,88,0,0,1 -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,4877,9,999999999,4,0.061,0,88,0,0,1 -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,-12.2,35,82800,0,0,254,0,0,0,0,0,0,0,200,1.5,8,6,48,4877,9,999999999,4,0.061,0,88,0,0,1 -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,4877,9,999999999,4,0.061,0,88,0,0,1 -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,4877,9,999999999,4,0.061,0,88,0,0,1 -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,6096,9,999999999,4,0.062,0,88,0,0,1 -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,4267,9,999999999,4,0.062,0,88,0,0,1 -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,4572,9,999999999,4,0.062,0,88,0,0,1 -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,4572,9,999999999,4,0.062,0,88,0,0,1 -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,4267,9,999999999,4,0.062,0,88,0,0,1 -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,4267,9,999999999,4,0.062,0,88,0,0,1 -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,6096,9,999999999,4,0.062,0,88,0,0,1 -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,13633,1801,3903,1251,260,2.1,2,2,96,77777,9,999999999,4,0.062,0,88,0,0,1 -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,31541,30104,9072,3172,300,4.1,4,3,96,77777,9,999999999,4,0.062,0,88,0,0,1 -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,-8.3,25,82400,658,1396,287,389,521,144,44909,37044,16693,6042,350,2.6,7,2,112,77777,9,999999999,4,0.062,0,88,0,0,1 -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,52380,36863,12681,5049,350,6.2,8,4,120,77777,9,999999999,4,0.062,0,88,0,0,1 -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,78118,55842,16702,6699,310,1.5,7,2,120,77777,9,999999999,5,0.062,0,88,0,0,1 -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,81014,58323,20193,7984,310,9.3,8,3,112,77777,9,999999999,5,0.062,0,88,0,0,1 -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,69012,50401,16811,6647,270,12.4,7,4,112,77777,9,999999999,5,0.062,0,88,0,0,1 -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,46315,33151,20551,7441,260,15.5,8,4,112,77777,9,999999999,5,0.062,0,88,0,0,1 -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,40447,37323,9579,3502,290,8.2,7,2,112,77777,9,999999999,5,0.062,0,88,0,0,1 -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,15490,10182,9328,2817,290,12.9,8,5,112,6706,9,999999999,5,0.062,0,88,0,0,1 -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,2546,0,1553,440,290,8.2,7,2,96,77777,9,999999999,5,0.062,0,88,0,0,1 -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,77777,9,999999999,5,0.062,0,88,0,0,1 -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,7620,9,999999999,5,0.062,0,88,0,0,1 -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,77777,9,999999999,5,0.062,0,88,0,0,1 -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,732,9,999999999,5,0.062,0,88,0,0,1 -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,-13.9,70,83500,0,0,234,0,0,0,0,0,0,0,360,3.1,10,10,8,884,9,999999999,5,0.062,0,88,0,0,1 -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,5,0.062,0,88,0,0,1 -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,-13.9,70,83600,0,0,210,0,0,0,0,0,0,0,360,3.1,2,2,11.2,77777,9,999999999,5,0.062,0,88,0,0,1 -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,-13.9,70,83500,0,0,212,0,0,0,0,0,0,0,110,2.6,3,3,16,77777,9,999999999,5,0.062,0,88,0,0,1 -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,-14.4,67,83500,0,0,207,0,0,0,0,0,0,0,110,3.6,1,1,24,77777,9,999999999,5,0.062,0,88,0,0,1 -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,67,83500,0,0,204,0,0,0,0,0,0,0,160,3.1,1,1,32,77777,9,999999999,6,0.062,0,88,0,0,1 -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,77777,9,999999999,6,0.062,0,88,0,0,1 -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,70,83700,0,0,203,0,0,0,0,0,0,0,90,4.1,1,1,40,77777,9,999999999,6,0.062,0,88,0,0,1 -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,67,83700,15,477,204,5,80,2,0,0,0,0,80,3.6,2,1,40,77777,9,999999999,6,0.062,0,88,0,0,1 -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,-14.4,67,83900,216,1396,213,70,270,28,8174,589,3274,1076,90,4.1,8,4,80,7620,9,999999999,6,0.062,0,88,0,0,1 -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,28921,26348,13218,4321,110,2.1,9,6,24,610,9,999999999,6,0.062,0,88,0,0,1 -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,42611,32044,20549,7136,100,2.6,9,4,48,77777,9,999999999,6,0.062,0,88,0,0,1 -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,43739,22689,25615,9304,80,3.6,7,6,48,762,9,999999999,6,0.062,0,88,0,0,1 -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,54967,29447,29947,10977,140,3.1,8,4,40,77777,9,999999999,6,0.062,0,88,0,0,1 -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,85553,63255,23088,8982,310,2.1,10,4,40,77777,9,999999999,6,0.062,0,88,0,0,1 -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,78379,60647,21571,8285,140,3.1,10,5,40,77777,9,999999999,6,0.062,0,88,0,0,1 -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,49734,36999,21646,7775,80,2.1,10,5,32,77777,9,999999999,6,0.062,0,88,0,0,1 -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,43418,42967,15481,5263,80,2.1,10,5,32,77777,9,999999999,6,0.062,0,88,0,0,1 -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,21298,18973,7800,2489,60,4.6,9,2,32,77777,9,999999999,6,0.062,0,88,0,0,1 -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,51,83700,70,1035,242,27,99,21,2906,0,2267,577,80,5.2,8,3,32,77777,9,999999999,6,0.062,0,88,0,0,1 -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,77777,9,999999999,6,0.062,0,88,0,0,1 -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,61,83800,0,0,234,0,0,0,0,0,0,0,330,3.6,8,3,32,77777,9,999999999,6,0.062,0,88,0,0,1 -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,-10.6,61,83800,0,0,229,0,0,0,0,0,0,0,340,3.1,4,2,32,77777,9,999999999,6,0.062,0,88,0,0,1 -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,71,83800,0,0,223,0,0,0,0,0,0,0,360,2.6,1,1,32,77777,9,999999999,6,0.062,0,88,0,0,1 -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,77777,9,999999999,6,0.062,0,88,0,0,1 -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,77777,9,999999999,6,0.062,0,88,0,0,1 -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,75,83700,0,0,217,0,0,0,0,0,0,0,190,1.5,1,0,32,77777,9,999999999,6,0.063,0,88,0,0,1 -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,71,83700,0,0,219,0,0,0,0,0,0,0,40,1.5,0,0,32,77777,9,999999999,7,0.063,0,88,0,0,1 -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,75,83600,0,0,217,0,0,0,0,0,0,0,0,0,0,0,40,77777,9,999999999,7,0.063,0,88,0,0,1 -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,2,1,40,77777,9,999999999,7,0.063,0,88,0,0,1 -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,77777,9,999999999,7,0.063,0,88,0,0,1 -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,77777,9,999999999,7,0.063,0,88,0,0,1 -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,77777,9,999999999,7,0.063,0,88,0,0,1 -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,10356,4094,7331,2049,80,1.5,6,4,96,7925,9,999999999,7,0.063,0,88,0,0,1 -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,30682,28582,10492,3626,110,1,9,3,120,77777,9,999999999,7,0.063,0,88,0,0,1 -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,54463,47419,14460,5396,0,0,7,2,112,77777,9,999999999,7,0.063,0,88,0,0,1 -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,62363,45288,22829,8547,360,3.1,9,3,96,77777,9,999999999,7,0.063,0,88,0,0,1 -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,79174,55745,19400,7710,10,2.1,9,2,96,77777,9,999999999,7,0.063,0,88,0,0,1 -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,80323,55611,18111,7277,60,3.1,9,5,96,6706,9,999999999,7,0.063,0,88,0,0,1 -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,59407,40018,18171,7163,50,3.6,9,5,96,6706,9,999999999,7,0.063,0,88,0,0,1 -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,38845,26407,12186,4756,80,5.2,9,5,80,6706,9,999999999,7,0.063,0,88,0,0,1 -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,36415,30415,17046,5685,80,5.7,9,4,80,77777,9,999999999,7,0.063,0,88,0,0,1 -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,18083,12134,12290,3383,60,5.2,9,6,80,6706,9,999999999,7,0.063,0,88,0,0,1 -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,2222,0,1670,482,360,4.6,9,5,80,6706,9,999999999,7,0.063,0,88,0,0,1 -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,6706,9,999999999,7,0.063,0,88,0,0,1 -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,6706,9,999999999,7,0.063,0,88,0,0,1 -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,9,4,48,77777,9,999999999,7,0.063,0,88,0,0,1 -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,77777,9,999999999,7,0.063,0,88,0,0,1 -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,10,5,48,77777,9,999999999,7,0.063,0,88,0,0,1 -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,-2.8,79,83400,0,0,266,0,0,0,0,0,0,0,0,0,10,7,32,6096,9,999999999,7,0.063,0,88,0,0,1 -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,10,10,32,6096,9,999999999,7,0.064,0,88,0,0,1 -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,6706,9,999999999,7,0.064,0,88,0,0,1 -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,-2.2,83,83200,0,0,277,0,0,0,0,0,0,0,160,2.1,10,9,32,6706,9,999999999,7,0.064,0,88,0,0,1 -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,-2.2,83,83200,0,0,271,0,0,0,0,0,0,0,210,2.1,10,8,40,6706,9,999999999,7,0.064,0,88,0,0,1 -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,-2.2,83,83200,0,0,266,0,0,0,0,0,0,0,190,2.1,10,7,48,7620,9,999999999,7,0.064,0,88,0,0,1 -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,4267,9,999999999,7,0.064,0,88,0,0,1 -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,4267,9,999999999,7,0.064,0,88,0,0,1 -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,9030,462,8743,2289,180,3.1,9,9,112,4267,9,999999999,7,0.064,0,88,0,0,1 -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,-2.8,55,83200,474,1394,286,142,95,109,16098,5551,12403,4177,170,1,9,7,128,7315,9,999999999,7,0.064,0,88,0,0,1 -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,20739,6258,15557,5770,140,2.6,9,8,120,4267,9,999999999,7,0.064,0,88,0,0,1 -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,44304,12263,36041,11791,170,4.1,10,7,112,4267,9,999999999,7,0.064,0,88,0,0,1 -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,70316,47032,25902,9883,130,2.6,9,6,112,7315,9,999999999,7,0.064,0,88,0,0,1 -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,-4.4,25,83000,926,1394,321,573,502,239,66532,41375,27897,10554,110,4.1,10,5,112,77777,9,999999999,7,0.064,0,88,0,0,1 -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,69143,49491,24758,9337,100,1.5,10,5,112,77777,9,999999999,7,0.064,0,88,0,0,1 -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,-6.7,20,82800,743,1394,325,381,181,284,42304,16966,31717,10139,20,1.5,10,7,112,2896,9,999999999,7,0.064,0,88,0,0,1 -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,26,82800,558,1394,324,208,129,156,23366,9288,17602,5844,320,5.7,10,8,112,2896,9,999999999,7,0.064,0,88,0,0,1 -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,12519,6801,7190,2360,20,4.1,10,7,112,2743,9,999999999,7,0.064,0,88,0,0,1 -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,2489,0,2388,628,50,3.1,10,9,112,2591,9,999999999,7,0.064,0,88,0,0,1 -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,2591,9,999999999,7,0.064,0,88,0,0,1 -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,7620,9,999999999,7,0.064,0,88,0,0,1 -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,2286,9,999999999,7,0.064,0,88,0,0,1 -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,1829,9,999999999,7,0.064,0,88,0,0,1 -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,67,83200,0,0,311,0,0,0,0,0,0,0,60,3.1,10,10,32,1829,9,999999999,7,0.064,0,88,0,0,1 -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,975,9,999999999,7,0.064,0,88,0,0,1 -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,9,9,32,1341,9,999999999,7,0.064,0,88,0,0,1 -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,76,83300,0,0,303,0,0,0,0,0,0,0,0,0,10,10,32,610,9,999999999,7,0.064,0,88,0,0,1 -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,76,83300,0,0,303,0,0,0,0,0,0,0,10,2.1,10,10,32,884,9,999999999,7,0.064,0,88,0,0,1 -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,85,83300,0,0,277,0,0,0,0,0,0,0,0,0,7,7,32,1676,9,999999999,7,0.064,0,88,0,0,1 -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,92,83300,0,0,263,0,0,0,0,0,0,0,170,1.5,8,3,32,77777,9,999999999,7,0.064,0,88,0,0,1 -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,92,83400,0,0,291,0,0,0,0,0,0,0,130,2.1,10,10,32,671,9,999999999,7,0.064,0,88,0,0,1 -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,88,83400,22,592,286,3,1,3,0,0,0,0,190,2.1,10,9,12.8,2438,9,999999999,7,0.064,0,88,0,0,1 -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,79,83500,236,1394,301,37,0,37,3629,0,3655,1388,210,2.6,10,10,12.8,1402,9,999999999,8,0.064,0,88,0,0,1 -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,67,83500,480,1394,296,177,207,105,20147,11794,11995,4094,310,1.5,8,8,11.2,1280,9,999999999,8,0.064,0,88,0,0,1 -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,32575,16427,20483,7240,350,2.6,7,7,16,1829,9,999999999,8,0.064,0,88,0,0,1 -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,-1.1,45,83500,834,1394,321,297,8,292,33407,728,33037,11276,30,4.1,9,9,32,1676,9,999999999,8,0.064,0,88,0,0,1 -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,56,83500,919,1394,303,474,179,356,53192,17307,40205,13535,60,3.1,7,7,32,1372,9,999999999,8,0.064,0,88,0,0,1 -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,56,83400,932,1394,308,455,175,338,51389,16430,38413,13305,60,5.7,8,8,32,1372,9,999999999,8,0.064,0,88,0,0,1 -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,56,83400,874,1394,303,545,581,180,64116,43119,21273,8267,50,5.2,7,7,24,1372,9,999999999,8,0.064,0,88,0,0,1 -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,70,83500,748,1394,308,160,0,160,16373,0,16514,6992,30,7.2,10,10,9.6,732,9,999999999,8,0.064,0,88,0,0,1 -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,7964,0,8029,3484,350,7.7,10,10,0.6,61,9,999999999,8,0.064,0,88,0,0,1 -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,3957,0,3986,1638,360,5.7,10,10,1.6,61,9,999999999,8,0.064,0,88,0,0,1 -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,774,0,779,298,10,4.1,10,10,1.4,61,9,999999999,8,0.064,0,88,0,0,1 -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,96,84000,0,0,289,0,0,0,0,0,0,0,320,3.1,10,10,4,61,9,999999999,8,0.064,0,88,0,0,1 -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,96,84000,0,0,289,0,0,0,0,0,0,0,310,2.6,10,10,4,183,9,999999999,8,0.064,0,88,0,0,1 -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,8,0.064,0,88,0,0,1 -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,8,0.064,0,88,0,0,1 -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,8,0.064,0,88,0,0,1 -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,77777,9,999999999,8,0.064,0,88,0,0,1 -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,-4.1,62,81500,0,0,285,0,0,0,0,0,0,0,210,4.7,9,7,32,7620,9,999999999,6,0.054,0,88,0,0,1 -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,7620,9,999999999,6,0.054,0,88,0,0,1 -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,77777,9,999999999,6,0.054,0,88,0,0,1 -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,7620,9,999999999,6,0.054,0,88,0,0,1 -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,7620,9,999999999,6,0.054,0,88,0,0,1 -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,7620,9,999999999,7,0.054,0,88,0,0,1 -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,5182,9,999999999,7,0.054,0,88,0,0,1 -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,7375,25,7290,2132,210,4.6,9,8,96,5182,9,999999999,7,0.054,0,88,0,0,1 -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,23492,9366,18752,5613,190,4.6,9,7,104,4572,9,999999999,7,0.054,0,88,0,0,1 -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,47873,38486,14083,5325,210,4.1,8,6,104,4572,9,999999999,7,0.054,0,88,0,0,1 -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,52875,32835,24651,9181,170,3.1,7,6,104,4572,9,999999999,7,0.054,0,88,0,0,1 -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,-7.2,19,81700,923,1393,313,686,792,161,82173,57723,19368,7744,160,2.6,6,3,96,77777,9,999999999,7,0.054,0,88,0,0,1 -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,72430,48109,22188,8768,190,2.1,7,4,96,77777,9,999999999,7,0.054,0,88,0,0,1 -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,62449,26971,45064,13825,10,4.6,10,9,96,2286,9,999999999,7,0.054,0,88,0,0,1 -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,26437,2883,24394,8645,360,3.6,10,9,96,2591,9,999999999,7,0.054,0,88,0,0,1 -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,15257,0,15380,5790,20,4.1,10,10,96,3353,9,999999999,7,0.054,0,88,0,0,1 -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,6441,0,6489,2449,10,3.6,10,10,96,2286,9,999999999,7,0.054,0,88,0,0,1 -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,1163,0,1171,425,20,4.1,10,10,48,2438,9,999999999,7,0.054,0,88,0,0,1 -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,7,0.054,0,88,0,0,1 -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,7,0.054,0,88,0,0,1 -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,610,9,999999999,8,0.054,0,88,0,0,1 -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,549,9,999999999,8,0.054,0,88,0,0,1 -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,518,9,999999999,8,0.054,0,88,0,0,1 -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,610,9,999999999,8,0.054,0,88,0,0,1 -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,8,0.055,0,88,0,0,1 -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,-7.8,79,82400,0,0,259,0,0,0,0,0,0,0,130,3.6,10,10,16,427,9,999999999,8,0.055,0,88,0,0,1 -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,-7.8,79,82300,0,0,259,0,0,0,0,0,0,0,110,3.6,10,10,16,427,9,999999999,8,0.055,0,88,0,0,1 -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,-7.8,79,82400,0,0,259,0,0,0,0,0,0,0,100,3.6,10,10,11.2,366,9,999999999,8,0.055,0,88,0,0,1 -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,-7.8,79,82400,0,0,259,0,0,0,0,0,0,0,80,2.1,10,10,9.6,305,9,999999999,8,0.055,0,88,0,0,1 -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,-7.8,79,82500,0,0,259,0,0,0,0,0,0,0,60,2.1,10,10,9.6,305,9,999999999,8,0.055,0,88,0,0,1 -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,-7.8,79,82500,26,638,259,2,0,2,0,0,0,0,60,2.6,10,10,9.6,305,9,999999999,8,0.055,0,88,0,0,1 -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,10434,1445,9722,2547,60,1.5,10,9,8,732,9,999999999,8,0.055,0,88,0,0,1 -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,9940,0,10018,3970,80,1.5,10,10,11.2,732,9,999999999,8,0.055,0,88,0,0,1 -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,19640,6612,13773,5237,0,0,10,9,11.2,732,9,999999999,8,0.055,0,88,0,0,1 -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,61,82700,846,1392,272,349,119,276,39564,10624,31467,11033,230,2.1,10,8,11.2,2438,9,999999999,8,0.055,0,88,0,0,1 -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,58875,34696,23474,9185,0,0,10,6,11.2,7620,9,999999999,8,0.055,0,88,0,0,1 -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,-4.4,48,82700,943,1392,276,528,433,234,61602,35247,27444,10509,40,2.1,9,4,11.2,77777,9,999999999,7,0.055,0,88,0,0,1 -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,55146,32730,24605,9379,130,1.5,10,5,11.2,77777,9,999999999,7,0.055,0,88,0,0,1 -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,42652,24730,23558,8463,320,2.1,10,8,9.6,6096,9,999999999,7,0.055,0,88,0,0,1 -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,43,82900,573,1392,299,230,67,202,25390,5478,22414,6951,350,4.1,10,9,12.8,6096,9,999999999,7,0.055,0,88,0,0,1 -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,-5,46,82900,341,1392,288,93,69,76,10482,2798,8594,2768,10,5.2,9,8,24,6096,9,999999999,7,0.055,0,88,0,0,1 -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,54,83000,88,1149,262,28,132,18,3126,0,2014,590,40,4.1,7,2,32,77777,9,999999999,7,0.055,0,88,0,0,1 -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,61,83100,0,0,261,0,0,0,0,0,0,0,130,2.6,9,4,24,77777,9,999999999,7,0.055,0,88,0,0,1 -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,77777,9,999999999,7,0.055,0,88,0,0,1 -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,77777,9,999999999,7,0.055,0,88,0,0,1 -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,77777,9,999999999,7,0.055,0,88,0,0,1 -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,77777,9,999999999,7,0.055,0,88,0,0,1 -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,77777,9,999999999,7,0.055,0,88,0,0,1 -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,77777,9,999999999,6,0.056,0,88,0,0,1 -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,77777,9,999999999,6,0.056,0,88,0,0,1 -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,77777,9,999999999,6,0.056,0,88,0,0,1 -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,-8.3,49,83300,0,0,241,0,0,0,0,0,0,0,200,1.5,0,0,32,77777,9,999999999,6,0.056,0,88,0,0,1 -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,77777,9,999999999,6,0.056,0,88,0,0,1 -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,77777,9,999999999,6,0.056,0,88,0,0,1 -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,0,0,0,0,180,1,0,0,112,77777,9,999999999,6,0.056,0,88,0,0,1 -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,14460,8205,5365,1724,320,7.2,0,0,112,77777,9,999999999,6,0.056,0,88,0,0,1 -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,20,83500,499,1392,279,322,691,75,37900,36491,8852,3195,320,8.2,0,0,112,77777,9,999999999,6,0.056,0,88,0,0,1 -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,58263,48791,11471,4440,340,3.1,1,1,104,77777,9,999999999,6,0.056,0,88,0,0,1 -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,78298,58112,13583,5464,310,4.1,1,0,104,77777,9,999999999,6,0.056,0,88,0,0,1 -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,88595,60883,14675,6007,290,5.2,0,0,104,77777,9,999999999,6,0.056,0,88,0,0,1 -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,90112,61049,14702,6036,300,10.3,1,1,112,77777,9,999999999,6,0.056,0,88,0,0,1 -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,56181,34496,23571,9070,330,7.2,8,4,112,7620,9,999999999,6,0.056,0,88,0,0,1 -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,45887,32465,15830,6101,290,3.1,6,4,112,7620,9,999999999,6,0.056,0,88,0,0,1 -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,42057,38025,17601,5962,130,3.1,6,5,112,7620,9,999999999,6,0.056,0,88,0,0,1 -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,12752,3841,10686,3263,280,6.7,7,6,96,7315,9,999999999,6,0.056,0,88,0,0,1 -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,-13.3,11,83200,92,1194,308,33,26,31,3540,0,3337,836,280,10.3,4,4,96,77777,9,999999999,6,0.056,0,88,0,0,1 -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,77777,9,999999999,6,0.056,0,88,0,0,1 -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,77777,9,999999999,6,0.056,0,88,0,0,1 -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,5486,9,999999999,5,0.056,0,88,0,0,1 -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,5486,9,999999999,5,0.056,0,88,0,0,1 -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,77777,9,999999999,5,0.056,0,88,0,0,1 -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,5486,9,999999999,5,0.056,0,88,0,0,1 -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,77777,9,999999999,5,0.056,0,88,0,0,1 -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,-6.7,28,83200,0,0,280,0,0,0,0,0,0,0,290,5.2,0,0,32,77777,9,999999999,5,0.056,0,88,0,0,1 -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,77777,9,999999999,5,0.056,0,88,0,0,1 -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,-8.3,25,83200,0,0,278,0,0,0,0,0,0,0,270,3.6,0,0,32,77777,9,999999999,5,0.056,0,88,0,0,1 -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,77777,9,999999999,5,0.056,0,88,0,0,1 -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,77777,9,999999999,5,0.056,0,88,0,0,1 -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,0,0,0,0,240,8.8,1,0,112,77777,9,999999999,6,0.056,0,88,0,0,1 -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,15045,47586,4839,670,120,1.5,4,1,104,77777,9,999999999,6,0.056,0,88,0,0,1 -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,31951,28210,13469,4586,210,6.7,8,3,112,77777,9,999999999,6,0.056,0,88,0,0,1 -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,59297,50302,14254,5433,240,6.2,6,2,112,77777,9,999999999,6,0.056,0,88,0,0,1 -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,14,83000,859,1391,322,276,313,83,34426,19716,10381,4224,290,2.6,8,5,96,6096,9,999999999,6,0.056,0,88,0,0,1 -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,63226,37603,26597,10243,220,2.1,10,6,96,6096,9,999999999,6,0.056,0,88,0,0,1 -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,70128,43651,27302,10517,270,2.1,10,6,96,6096,9,999999999,7,0.056,0,88,0,0,1 -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,45728,24742,20401,8040,270,4.1,10,6,96,6096,9,999999999,7,0.056,0,88,0,0,1 -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,45416,18160,33847,10827,310,5.2,10,9,96,6096,9,999999999,7,0.056,0,88,0,0,1 -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,26282,10381,20002,6558,340,2.1,10,9,96,6096,9,999999999,7,0.056,0,88,0,0,1 -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,17226,7138,13930,3847,230,3.6,10,9,80,6096,9,999999999,7,0.056,0,88,0,0,1 -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,3571,0,3148,831,250,7.2,10,9,48,6096,9,999999999,7,0.056,0,88,0,0,1 -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,6096,9,999999999,8,0.056,0,88,0,0,1 -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,-5,24,82400,0,0,349,0,0,0,0,0,0,0,220,5.2,10,10,32,6096,9,999999999,8,0.056,0,88,0,0,1 -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,-4.4,25,82400,0,0,349,0,0,0,0,0,0,0,220,8.8,10,10,48,4267,9,999999999,8,0.056,0,88,0,0,1 -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,4267,9,999999999,8,0.056,0,88,0,0,1 -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,4267,9,999999999,8,0.056,0,88,0,0,1 -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,4267,9,999999999,9,0.056,0,88,0,0,1 -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,3962,9,999999999,9,0.057,0,88,0,0,1 -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,3962,9,999999999,9,0.057,0,88,0,0,1 -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,7620,9,999999999,9,0.057,0,88,0,0,1 -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,7620,9,999999999,9,0.057,0,88,0,0,1 -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,3962,9,999999999,9,0.057,0,88,0,0,1 -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,3962,9,999999999,9,0.057,0,88,0,0,1 -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,43,81900,36,753,341,4,0,4,0,0,0,0,210,7.2,10,10,112,2438,9,999999999,9,0.057,0,88,0,0,1 -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,4916,0,4952,1843,230,6.7,10,10,32,2591,9,999999999,9,0.057,0,88,0,0.3,1 -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,10851,0,10937,4325,260,4.1,10,10,32,2438,9,999999999,9,0.057,0,88,0,0,1 -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,18162,4787,13580,5228,60,5.7,10,9,64,1372,9,999999999,9,0.057,0,88,0,0,1 -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,25162,0,25390,10338,50,4.6,10,10,40,3048,9,999999999,9,0.057,0,88,0,0,1 -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,22341,0,22548,9896,50,5.7,10,10,48,2591,9,999999999,9,0.057,0,88,0,0,1 -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,46435,13698,34022,12518,70,3.1,10,9,48,2591,9,999999999,9,0.057,0,88,0,0,1 -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,21127,0,21320,9274,360,7.7,10,10,9.6,671,9,999999999,9,0.057,0,88,0,2.3,1 -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,96,82200,775,1390,289,144,0,144,14772,0,14901,6555,360,5.2,10,10,0.8,305,9,999999999,9,0.057,0,88,0,2.5,1 -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,12827,0,12933,5221,80,1.5,10,10,16,1128,9,999999999,9,0.057,0,88,0,0,1 -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,6935,0,6987,2657,160,3.1,10,10,16,1250,9,999999999,9,0.057,0,88,0,0,1 -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,1453,0,1463,533,210,2.6,10,10,16,1219,9,999999999,9,0.057,0,88,0,0,1 -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,3048,9,999999999,9,0.057,0,88,0,0,1 -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,3048,9,999999999,9,0.057,0,88,0,0,1 -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,3658,9,999999999,9,0.057,0,88,0,0,1 -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,3658,9,999999999,8,0.057,0,88,0,0,1 -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,1676,9,999999999,8,0.057,0,88,0,0,1 -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,2438,9,999999999,8,0.057,0,88,0,0,1 -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,10,10,32,2438,9,999999999,8,0.058,0,88,0,0,1 -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,2438,9,999999999,8,0.058,0,88,0,0,1 -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,2438,9,999999999,8,0.058,0,88,0,0,1 -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,7620,9,999999999,8,0.058,0,88,0,0,1 -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,-5.6,62,82600,0,0,254,0,0,0,0,0,0,0,70,1.5,6,3,32,77777,9,999999999,8,0.058,0,88,0,0,1 -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,6,6,32,3353,9,999999999,8,0.058,0,88,0,0,1 -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,72,82700,40,776,264,10,20,9,0,0,0,0,80,1.5,8,8,64,1829,9,999999999,8,0.058,0,88,0,0,1 -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,7413,584,6872,2157,90,5.2,10,9,96,1524,9,999999999,8,0.058,0,88,0,0,1 -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,19380,4651,16652,5436,120,3.1,10,9,16,1524,9,999999999,8,0.058,0,88,0,0,1 -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,83,83000,724,1389,263,267,88,221,30169,7345,25101,8655,220,4.1,10,9,80,1219,9,999999999,7,0.058,0,88,0,0,1 -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,65361,40454,34466,11945,230,3.6,8,5,96,1524,9,999999999,7,0.058,0,88,0,0,1 -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,70543,87081,10215,2032,220,4.6,1,1,96,77777,9,999999999,7,0.058,0,88,0,0,1 -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,79643,98997,9523,1976,320,3.1,1,1,96,77777,9,999999999,7,0.058,0,88,0,0,1 -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,32,82900,908,1389,258,672,930,64,71166,93265,9211,1807,200,2.1,1,1,96,77777,9,999999999,7,0.058,0,88,0,0,1 -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,-14.4,20,82900,781,1389,258,513,696,121,61471,47830,14551,5693,250,2.6,1,1,96,77777,9,999999999,7,0.058,0,88,0,0,1 -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,-10.6,28,82900,594,1389,265,390,743,72,46990,41971,8697,3284,170,2.6,2,2,96,77777,9,999999999,6,0.058,0,88,0,0,1 -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,23228,21035,8337,2759,160,5.7,3,3,96,77777,9,999999999,6,0.058,0,88,0,0,1 -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,4295,0,2871,812,170,5.7,5,4,80,77777,9,999999999,6,0.058,0,88,0,0,1 -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,7620,9,999999999,6,0.058,0,88,0,0,1 -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,-5.6,62,83100,0,0,260,0,0,0,0,0,0,0,130,1.5,7,6,32,7620,9,999999999,6,0.058,0,88,0,0,1 -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,7620,9,999999999,6,0.058,0,88,0,0,1 -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,7620,9,999999999,6,0.058,0,88,0,0,1 -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,7620,9,999999999,5,0.058,0,88,0,0,1 -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,1402,9,999999999,5,0.058,0,88,0,0,1 -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,76,83000,0,0,275,0,0,0,0,0,0,0,130,3.6,10,10,32,2743,9,999999999,5,0.059,0,88,0,0,1 -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,8,8,32,7620,9,999999999,5,0.059,0,88,0,0,1 -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,87,83000,0,0,248,0,0,0,0,0,0,0,290,3.6,7,6,32,7620,9,999999999,5,0.059,0,88,0,0,1 -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,2896,9,999999999,5,0.059,0,88,0,0,1 -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,7620,9,999999999,5,0.059,0,88,0,0,1 -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,7620,9,999999999,5,0.059,0,88,0,0,1 -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,1615,0,1296,328,40,2.1,7,5,64,7620,9,999999999,4,0.059,0,88,0,0,1 -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,91,83200,283,1389,253,113,155,81,12427,5702,8941,2631,120,1.5,8,8,24,1676,9,999999999,4,0.059,0,88,0,0,1 -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,36052,73468,6676,1103,60,3.1,2,0,48,77777,9,999999999,4,0.059,0,88,0,0,1 -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,60137,96773,7357,1352,0,0,0,0,48,77777,9,999999999,4,0.059,0,88,0,0,1 -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,69291,94493,8019,1606,290,2.1,1,1,96,77777,9,999999999,4,0.059,0,88,0,0,1 -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,77323,97294,8315,1791,290,3.6,1,1,96,77777,9,999999999,4,0.059,0,88,0,0,1 -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,83309,104014,8702,1875,190,3.1,0,0,96,77777,9,999999999,4,0.059,0,88,0,0,1 -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,-16.1,17,82900,914,1389,251,732,1024,58,77530,102530,8381,1711,250,5.2,0,0,96,77777,9,999999999,4,0.059,0,88,0,0,1 -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,-17.2,15,82900,786,1389,250,616,996,51,65429,98739,7573,1434,250,6.2,0,0,96,77777,9,999999999,4,0.059,0,88,0,0,1 -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,-18.3,14,82900,600,1389,249,447,938,42,47622,90302,6467,1144,300,6.2,0,0,96,77777,9,999999999,4,0.059,0,88,0,0,1 -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,26097,71409,4659,790,300,7.2,0,0,96,77777,9,999999999,4,0.059,0,88,0,0,1 -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,5534,27189,2320,314,300,7.2,0,0,80,77777,9,999999999,4,0.059,0,88,0,0,1 -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,25,83000,0,0,239,0,0,0,0,0,0,0,280,4.1,0,0,48,77777,9,999999999,3,0.059,0,88,0,0,1 -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,77777,9,999999999,3,0.059,0,88,0,0,1 -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,77777,9,999999999,3,0.059,0,88,0,0,1 -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,7620,9,999999999,3,0.059,0,88,0,0,1 -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,77777,9,999999999,3,0.059,0,88,0,0,1 -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,77777,9,999999999,3,0.059,0,88,0,0,1 -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,77777,9,999999999,3,0.059,0,88,0,0,1 -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,25,83100,0,0,246,0,0,0,0,0,0,0,300,6.2,4,2,32,77777,9,999999999,3,0.059,0,88,0,0,1 -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,26,83100,0,0,241,0,0,0,0,0,0,0,320,5.2,3,1,32,77777,9,999999999,3,0.059,0,88,0,0,1 -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,-14.4,29,83200,0,0,235,0,0,0,0,0,0,0,300,3.1,1,0,32,77777,9,999999999,3,0.059,0,88,0,0,1 -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,-15,27,83300,0,0,235,0,0,0,0,0,0,0,320,6.2,0,0,32,77777,9,999999999,3,0.059,0,88,0,0,1 -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,26,83300,0,0,237,0,0,0,0,0,0,0,310,8.2,0,0,48,77777,9,999999999,3,0.059,0,88,0,0,1 -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,25,83400,48,844,239,17,140,9,1894,0,1005,286,310,6.2,0,0,80,77777,9,999999999,3,0.059,0,88,0,0,1 -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,22,83400,290,1388,245,170,631,38,19949,13530,4467,1512,350,4.6,0,0,112,77777,9,999999999,3,0.059,0,88,0,0,1 -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,39888,78746,8708,1221,320,5.2,0,0,96,77777,9,999999999,3,0.059,0,88,0,0,1 -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,-15.6,18,83500,737,1388,252,564,925,72,59303,91008,10571,1620,290,5.2,0,0,96,77777,9,999999999,3,0.059,0,88,0,0,1 -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,73568,96734,11812,2000,320,5.7,0,0,96,77777,9,999999999,3,0.059,0,88,0,0,1 -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,80672,52476,15328,6306,300,4.1,2,2,96,77777,9,999999999,3,0.059,0,88,0,0,1 -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,72547,45516,17412,7129,300,11.3,4,4,96,77777,9,999999999,3,0.059,0,88,0,0,1 -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,85131,58765,13159,5392,300,12.4,2,2,80,77777,9,999999999,3,0.059,0,88,0,0,1 -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,63573,49750,16582,6433,300,11.3,3,3,80,77777,9,999999999,3,0.059,0,88,0,0,1 -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,49782,45976,10392,3893,310,7.7,2,2,96,77777,9,999999999,3,0.059,0,88,0,0,1 -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,21161,18111,6877,2360,290,10.3,3,3,80,77777,9,999999999,3,0.059,0,88,0,0,1 -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,4694,0,2688,794,300,8.2,2,2,64,77777,9,999999999,3,0.059,0,88,0,0,1 -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,77777,9,999999999,3,0.059,0,88,0,0,1 -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,77777,9,999999999,3,0.059,0,88,0,0,1 -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,77777,9,999999999,3,0.059,0,88,0,0,1 -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,-12.2,35,84100,0,0,237,0,0,0,0,0,0,0,230,1.5,0,0,32,77777,9,999999999,3,0.059,0,88,0,0,1 -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,77777,9,999999999,3,0.059,0,88,0,0,1 -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,77777,9,999999999,3,0.059,0,88,0,0,1 -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,77777,9,999999999,3,0.06,0,88,0,0,1 -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,77777,9,999999999,3,0.06,0,88,0,0,1 -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,77777,9,999999999,3,0.06,0,88,0,0,1 -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,77777,9,999999999,3,0.06,0,88,0,0,1 -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,37,84200,0,0,222,0,0,0,0,0,0,0,200,3.6,0,0,32,77777,9,999999999,3,0.06,0,88,0,0,1 -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,77777,9,999999999,3,0.06,0,88,0,0,1 -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,2247,0,1013,295,180,5.2,0,0,80,77777,9,999999999,3,0.06,0,88,0,0,1 -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,19194,56671,5441,749,210,4.6,0,0,112,77777,9,999999999,3,0.06,0,88,0,0,1 -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,41146,82137,7829,1197,190,6.2,0,0,112,77777,9,999999999,3,0.06,0,88,0,0,1 -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,60503,93546,9445,1566,180,5.7,0,0,112,77777,9,999999999,3,0.06,0,88,0,0,1 -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,8,84100,892,1387,268,710,990,73,74587,98742,10449,1911,180,5.2,0,0,112,77777,9,999999999,3,0.06,0,88,0,0,1 -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,82403,100952,10968,2175,170,6.2,0,0,112,77777,9,999999999,3,0.06,0,88,0,0,1 -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,-18.9,7,83800,986,1387,286,796,1010,79,83460,101241,11079,2223,190,5.2,0,0,112,77777,9,999999999,3,0.06,0,88,0,0,1 -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,77706,99561,10660,2009,170,6.7,0,0,112,77777,9,999999999,4,0.06,0,88,0,0,1 -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,-18.3,7,83700,797,1387,287,601,922,71,63192,91288,10336,1715,160,6.7,1,0,112,77777,9,999999999,4,0.06,0,88,0,0,1 -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,46895,82749,10053,1380,170,8.8,3,0,112,77777,9,999999999,4,0.06,0,88,0,0,1 -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,28831,25868,5251,1849,170,8.8,2,0,112,77777,9,999999999,4,0.06,0,88,0,0,1 -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,5206,0,3109,896,160,7.7,6,1,96,77777,9,999999999,4,0.06,0,88,0,0,1 -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,14,83500,0,0,278,0,0,0,0,0,0,0,170,8.2,2,2,48,77777,9,999999999,4,0.06,0,88,0,0,1 -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,15,83500,0,0,276,0,0,0,0,0,0,0,170,6.2,3,3,32,77777,9,999999999,4,0.06,0,88,0,0,1 -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,77777,9,999999999,4,0.06,0,88,0,0,1 -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,77777,9,999999999,4,0.06,0,88,0,0,1 -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,77777,9,999999999,4,0.06,0,88,0,0,1 -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,77777,9,999999999,4,0.06,0,88,0,0,1 -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,77777,9,999999999,5,0.061,0,88,0,0,1 -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,77777,9,999999999,5,0.061,0,88,0,0,1 -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,77777,9,999999999,5,0.061,0,88,0,0,1 -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,77777,9,999999999,5,0.061,0,88,0,0,1 -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,77777,9,999999999,5,0.061,0,88,0,0,1 -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,7620,9,999999999,5,0.061,0,88,0,0,1 -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,1660,0,1331,374,190,4.6,8,5,80,7620,9,999999999,5,0.061,0,88,0,0,1 -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,14777,6968,11348,3152,180,4.6,7,4,96,7620,9,999999999,5,0.061,0,88,0,0,1 -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,39420,36752,13072,4622,200,4.1,8,3,112,77777,9,999999999,5,0.061,0,88,0,0,1 -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,58648,46958,16349,6251,190,4.1,7,2,112,77777,9,999999999,6,0.061,0,88,0,0,1 -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,77563,55878,23936,9232,180,4.6,8,3,112,77777,9,999999999,6,0.061,0,88,0,0,1 -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,79439,93137,14507,2473,260,5.2,4,1,112,77777,9,999999999,6,0.061,0,88,0,0,1 -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,87986,56219,15833,6539,260,7.7,4,1,112,77777,9,999999999,6,0.061,0,88,0,0,1 -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,76010,51508,21629,8572,280,6.7,7,2,96,77777,9,999999999,6,0.061,0,88,0,0,1 -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,62094,46696,20753,7854,240,4.6,8,3,96,77777,9,999999999,6,0.061,0,88,0,0,1 -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,46745,42107,14438,5241,280,4.6,7,2,96,77777,9,999999999,6,0.061,0,88,0,0,1 -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,22127,19116,9335,3082,260,5.7,8,3,96,77777,9,999999999,6,0.061,0,88,0,0,1 -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,-6.1,21,82800,122,1352,319,41,72,34,4478,0,3725,1029,270,5.7,9,5,96,7620,9,999999999,7,0.061,0,88,0,0,1 -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,77777,9,999999999,7,0.061,0,88,0,0,1 -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,77777,9,999999999,7,0.061,0,88,0,0,1 -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,77777,9,999999999,7,0.061,0,88,0,0,1 -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,77777,9,999999999,7,0.061,0,88,0,0,1 -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,77777,9,999999999,7,0.061,0,88,0,0,1 -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,77777,9,999999999,7,0.061,0,88,0,0,1 -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,77777,9,999999999,8,0.062,0,88,0,0,1 -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,77777,9,999999999,8,0.062,0,88,0,0,1 -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,77777,9,999999999,8,0.062,0,88,0,0,1 -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,77777,9,999999999,8,0.062,0,88,0,0,1 -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,77777,9,999999999,8,0.062,0,88,0,0,1 -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,77777,9,999999999,8,0.062,0,88,0,0,1 -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,2005,0,1339,386,120,2.6,6,2,96,77777,9,999999999,8,0.062,0,88,0,0,1 -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,18547,53622,4985,755,180,4.6,3,1,96,77777,9,999999999,8,0.062,0,88,0,0,1 -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,42940,86038,6361,1100,190,6.2,0,0,112,77777,9,999999999,7,0.062,0,88,0,0,1 -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,23,82300,758,1386,310,528,857,59,56196,85138,8735,1527,160,3.6,3,1,112,77777,9,999999999,7,0.062,0,88,0,0,1 -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,69922,91365,9353,1823,190,3.6,2,1,112,77777,9,999999999,7,0.062,0,88,0,0,1 -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,21,82100,987,1386,325,685,695,190,81826,52363,22803,9139,280,2.1,5,4,104,77777,9,999999999,7,0.062,0,88,0,0,1 -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,62212,29632,34311,12810,190,4.1,9,9,96,2743,9,999999999,7,0.062,0,88,0,0,1 -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,82800,57240,21422,8519,250,2.1,5,5,96,77777,9,999999999,7,0.062,0,88,0,0,1 -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,35791,21018,13832,5490,210,8.8,7,7,96,2896,9,999999999,7,0.062,0,88,0,0,1 -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,15,81800,620,1386,328,329,135,269,35878,12835,29505,8496,230,6.2,9,8,96,2743,9,999999999,6,0.062,0,88,0,0,1 -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,16,81700,387,1386,330,131,129,95,14716,6639,10710,3444,190,6.2,9,9,96,4267,9,999999999,6,0.062,0,88,0,0,1 -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,2726,0,2744,922,210,7.2,10,10,64,4267,9,999999999,6,0.062,0,88,0,0,1 -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,2743,9,999999999,6,0.062,0,88,0,0,1 -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,76,82100,0,0,303,0,0,0,0,0,0,0,340,7.7,10,10,24,1067,9,999999999,6,0.062,0,88,0,0,1 -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,82,82200,0,0,299,0,0,0,0,0,0,0,350,6.2,10,10,24,823,9,999999999,6,0.062,0,88,0,0,1 -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,1981,9,999999999,5,0.062,0,88,0,0,1 -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,1981,9,999999999,5,0.062,0,88,0,0,1 -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,79,82400,0,0,301,0,0,0,0,0,0,0,10,8.2,10,10,32,1036,9,999999999,5,0.062,0,88,0,0,1 -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,1067,9,999999999,5,0.062,0,88,0,0,1 -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,1829,9,999999999,5,0.062,0,88,0,0,1 -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,77777,9,999999999,5,0.062,0,88,0,0,1 -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,-5.6,62,82700,0,0,251,0,0,0,0,0,0,0,360,4.1,2,2,32,77777,9,999999999,5,0.062,0,88,0,0,1 -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,77777,9,999999999,4,0.062,0,88,0,0,1 -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,77777,9,999999999,4,0.062,0,88,0,0,1 -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,2218,0,1556,444,360,4.1,1,1,96,77777,9,999999999,4,0.062,0,88,0,0,1 -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,19319,15549,6763,2232,350,5.2,1,1,112,77777,9,999999999,4,0.062,0,88,0,0,1 -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,45126,41869,9527,3530,350,5.2,0,0,112,77777,9,999999999,4,0.062,0,88,0,0,1 -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,26,83100,764,1385,266,565,840,101,68449,54607,12275,4840,310,4.6,0,0,96,77777,9,999999999,4,0.062,0,88,0,0,1 -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,86226,60385,14174,5785,310,4.6,0,0,96,77777,9,999999999,4,0.062,0,88,0,0,1 -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,96413,62618,15154,6272,10,6.7,0,0,96,77777,9,999999999,4,0.062,0,88,0,0,1 -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,97746,63000,15294,6338,360,5.2,0,0,96,77777,9,999999999,4,0.062,0,88,0,0,1 -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,14,83000,942,1385,269,722,872,129,88349,60792,15845,6474,350,6.2,2,0,96,77777,9,999999999,4,0.062,0,88,0,0,1 -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,14,83000,813,1385,274,573,720,149,67970,52529,17747,6897,20,6.7,8,1,96,77777,9,999999999,4,0.062,0,88,0,0,1 -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,41788,35141,15340,5546,50,4.6,7,2,88,77777,9,999999999,4,0.062,0,88,0,0,1 -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,18837,11449,12794,3925,60,6.2,10,5,96,4877,9,999999999,4,0.062,0,88,0,0,1 -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,0,3853,1083,90,5.2,10,5,96,4572,9,999999999,4,0.062,0,88,0,0,1 -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,77777,9,999999999,4,0.062,0,88,0,0,1 -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,7620,9,999999999,4,0.062,0,88,0,0,1 -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,4267,9,999999999,4,0.062,0,88,0,0,1 -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,-8.9,47,83400,0,0,253,0,0,0,0,0,0,0,160,2.1,6,4,32,4267,9,999999999,4,0.062,0,88,0,0,1 -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,-8.9,47,83400,0,0,251,0,0,0,0,0,0,0,190,2.6,5,3,32,77777,9,999999999,4,0.062,0,88,0,0,1 -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,77777,9,999999999,4,0.062,0,88,0,0,1 -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,77777,9,999999999,4,0.063,0,88,0,0,1 -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,77777,9,999999999,4,0.063,0,88,0,0,1 -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,77777,9,999999999,4,0.063,0,88,0,0,1 -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,77777,9,999999999,4,0.063,0,88,0,0,1 -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,77777,9,999999999,4,0.063,0,88,0,0,1 -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,77777,9,999999999,4,0.063,0,88,0,0,1 -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,3036,0,1465,432,200,2.6,0,0,96,77777,9,999999999,4,0.063,0,88,0,0,1 -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,23123,18074,4846,1669,0,0,0,0,96,77777,9,999999999,4,0.063,0,88,0,0,1 -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,42687,80067,8960,1287,300,2.1,0,0,96,77777,9,999999999,4,0.063,0,88,0,0,1 -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,61814,90947,10929,1703,360,3.6,0,0,96,77777,9,999999999,4,0.063,0,88,0,0,1 -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,75759,96183,12010,2109,330,3.6,0,0,96,77777,9,999999999,4,0.063,0,88,0,0,1 -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,81087,94726,13019,2468,90,4.6,1,0,104,77777,9,999999999,4,0.063,0,88,0,0,1 -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,80823,94024,12344,2449,60,4.6,1,1,96,77777,9,999999999,4,0.063,0,88,0,0,1 -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,73298,87739,14191,2328,60,3.1,1,1,96,77777,9,999999999,4,0.063,0,88,0,0,1 -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,62962,46347,13973,5561,60,3.6,2,1,96,77777,9,999999999,4,0.063,0,88,0,0,1 -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,48256,43166,15138,5504,100,3.1,3,1,80,77777,9,999999999,4,0.063,0,88,0,0,1 -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,27538,24811,6159,2171,100,4.1,2,1,64,77777,9,999999999,4,0.063,0,88,0,0,1 -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,5944,0,3864,1100,90,5.7,5,3,64,77777,9,999999999,4,0.063,0,88,0,0,1 -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,77777,9,999999999,4,0.063,0,88,0,0,1 -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,7010,9,999999999,4,0.063,0,88,0,0,1 -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,7010,9,999999999,4,0.063,0,88,0,0,1 -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,7010,9,999999999,4,0.063,0,88,0,0,1 -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,77777,9,999999999,4,0.063,0,88,0,0,1 -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,77777,9,999999999,4,0.063,0,88,0,0,1 -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,10,8,32,6096,9,999999999,4,0.064,0,88,0,0,1 -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,38,83100,0,0,283,0,0,0,0,0,0,0,170,1.5,10,10,32,3048,9,999999999,4,0.064,0,88,0,0,1 -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,-7.8,52,83000,0,0,279,0,0,0,0,0,0,0,350,3.6,10,10,32,2438,9,999999999,5,0.064,0,88,0,0,1 -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,2134,9,999999999,5,0.064,0,88,0,0,1 -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,2134,9,999999999,5,0.064,0,88,0,0,1 -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,9,7,48,2134,9,999999999,5,0.064,0,88,0,0,1 -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,1356,0,1365,468,10,2.1,10,10,80,6096,9,999999999,5,0.064,0,88,0,0,1 -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,7725,1454,6473,2177,360,2.6,10,9,64,6706,9,999999999,5,0.064,0,88,0,0,1 -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,14561,0,14679,5673,340,4.1,10,10,64,6706,9,999999999,5,0.064,0,88,0,0,1 -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,41611,10304,35165,11186,330,2.6,10,9,64,6706,9,999999999,5,0.064,0,88,0,0,1 -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,40867,14198,27622,10502,250,1.5,10,9,64,6706,9,999999999,5,0.064,0,88,0,0,1 -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,26,82600,1005,1383,285,551,227,386,62486,22493,44060,15228,180,6.7,9,7,32,6706,9,999999999,5,0.064,0,88,0,0,1 -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,61328,14662,50102,16442,150,8.8,10,8,48,7620,9,999999999,5,0.064,0,88,0,0,1 -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,70396,41406,33782,12404,160,9.8,10,7,32,6096,9,999999999,5,0.064,0,88,0,0,1 -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,46028,17952,33279,11293,150,8.2,9,8,40,5486,9,999999999,5,0.064,0,88,0,0,1 -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,30897,14027,22016,7364,170,7.7,10,5,48,5486,9,999999999,5,0.064,0,88,0,0,1 -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,18080,4954,15866,4524,160,8.8,10,8,56,4877,9,999999999,5,0.064,0,88,0,0,1 -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,5589,1,5178,1331,160,9.3,10,7,64,4877,9,999999999,6,0.064,0,88,0,0,1 -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,4572,9,999999999,6,0.064,0,88,0,0,1 -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,77777,9,999999999,6,0.064,0,88,0,0,1 -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,77777,9,999999999,6,0.064,0,88,0,0,1 -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,-4.4,69,82700,0,0,253,0,0,0,0,0,0,0,210,4.1,7,2,32,77777,9,999999999,6,0.064,0,88,0,0,1 -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,-4.4,69,82700,0,0,261,0,0,0,0,0,0,0,190,4.6,8,6,32,1829,9,999999999,6,0.064,0,88,0,0,1 -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,4877,9,999999999,6,0.064,0,88,0,0,1 -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,-4.4,69,82700,0,0,282,0,0,0,0,0,0,0,250,3.6,10,10,24,701,9,999999999,6,0.065,0,88,0,0,1 -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,640,9,999999999,6,0.065,0,88,0,0,1 -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,610,9,999999999,6,0.065,0,88,0,0,1 -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,610,9,999999999,6,0.065,0,88,0,0,1 -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,640,9,999999999,6,0.065,0,88,0,0,1 -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,3048,9,999999999,6,0.065,0,88,0,0,1 -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,1259,0,1267,451,80,2.1,10,10,8,671,9,999999999,6,0.065,0,88,0,0,1 -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,6837,0,6888,2582,40,1.5,10,10,8,792,9,999999999,6,0.065,0,88,0,0,1 -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,12941,0,13047,5240,350,2.6,10,10,8,427,9,999999999,6,0.065,0,88,0,0,1 -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,18196,0,18355,7777,330,2.1,10,10,9.6,427,9,999999999,6,0.065,0,88,0,0,1 -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,22159,0,22361,9759,10,3.6,10,10,9.6,792,9,999999999,6,0.065,0,88,0,0,1 -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,51950,15549,37813,13843,360,2.1,9,9,11.2,792,9,999999999,6,0.065,0,88,0,0,1 -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,48,82800,1021,1383,292,288,27,267,33687,2263,31405,12090,80,2.6,9,9,11.2,2438,9,999999999,6,0.065,0,88,0,0,1 -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,44,82700,958,1383,291,393,280,198,46614,21467,23598,9341,50,2.1,8,8,11.2,2438,9,999999999,6,0.065,0,88,0,0,1 -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,44,82700,829,1383,286,472,326,277,53392,29245,31512,10957,340,4.1,10,7,11.2,6706,9,999999999,6,0.065,0,88,0,0,1 -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,41,82700,640,1383,287,282,244,169,32066,18313,19304,6735,340,4.6,10,6,11.2,6096,9,999999999,6,0.065,0,88,0,0,1 -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,-5.6,44,82800,407,1383,280,142,176,90,16101,8901,10240,3398,330,3.6,10,6,11.2,6096,9,999999999,6,0.065,0,88,0,0,1 -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,5768,0,3782,1109,320,3.6,8,4,11.2,77777,9,999999999,6,0.065,0,88,0,0,1 -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,6096,9,999999999,6,0.065,0,88,0,0,1 -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,77777,9,999999999,6,0.065,0,88,0,0,1 -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,2591,9,999999999,6,0.065,0,88,0,0,1 -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,77777,9,999999999,6,0.065,0,88,0,0,1 -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,19.2,77777,9,999999999,6,0.065,0,88,0,0,1 -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,6,0.065,0,88,0,0,1 -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,6,0.065,0,88,0,0,1 -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,6,0.065,0,88,0,0,1 -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,2438,9,999999999,6,0.065,0,88,0,0,1 -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,183,9,999999999,6,0.065,0,88,0,0,1 -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,183,9,999999999,6,0.065,0,88,0,0,1 -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,183,9,999999999,6,0.065,0,88,0,0,1 -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,969,0,975,369,40,2.1,10,10,4.8,152,9,999999999,6,0.065,0,88,0,0,1 -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,4164,0,4195,1736,60,1.5,10,10,4.8,244,9,999999999,6,0.065,0,88,0,0,1 -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,9005,0,9079,3938,120,3.6,10,10,4.8,244,9,999999999,6,0.065,0,88,0,0,1 -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,13680,0,13800,6213,0,0,10,10,4.8,244,9,999999999,6,0.065,0,88,0,0,1 -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,20503,0,20691,9214,0,0,10,10,6.4,427,9,999999999,6,0.065,0,88,0,0,1 -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,22835,0,23049,10344,100,1.5,10,10,9.6,488,9,999999999,6,0.065,0,88,0,0,1 -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,23061,0,23278,10457,30,2.6,10,10,9.6,610,9,999999999,6,0.065,0,88,0,0,1 -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,21277,0,21474,9591,10,3.6,10,10,11.2,610,9,999999999,6,0.065,0,88,0,0,1 -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,17546,0,17702,7766,360,4.1,10,10,11.2,610,9,999999999,6,0.065,0,88,0,0,1 -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,12298,0,12401,5261,20,3.1,10,10,11.2,671,9,999999999,6,0.065,0,88,0,0,1 -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,12808,4921,9407,3187,350,3.1,10,6,11.2,6096,9,999999999,6,0.065,0,88,0,0,1 -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,5697,61,5502,1423,20,3.1,10,6,11.2,6096,9,999999999,6,0.065,0,88,0,0,1 -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,6,0.065,0,88,0,0,1 -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,77777,9,999999999,6,0.065,0,88,0,0,1 -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,6,0.065,0,88,0,0,1 -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,2,2,11.2,77777,9,999999999,6,0.065,0,88,0,0,1 -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,6,0.065,0,88,0,0,1 -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,6,0.065,0,88,0,0,1 -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,6,0.066,0,88,0,0,1 -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,6,0.066,0,88,0,0,1 -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,6,0.066,0,88,0,0,1 -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,6,0.066,0,88,0,0,1 -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,77777,9,999999999,6,0.066,0,88,0,0,1 -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,77777,9,999999999,6,0.066,0,88,0,0,1 -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,4370,19675,2313,271,140,1.5,0,0,48,77777,9,999999999,6,0.066,0,88,0,0,1 -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,58,83500,354,1381,250,225,748,33,24117,65503,5276,827,170,2.1,1,0,80,77777,9,999999999,6,0.066,0,88,0,0,1 -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,45684,84653,7778,1263,220,1.5,1,0,80,77777,9,999999999,6,0.066,0,88,0,0,1 -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,65308,95682,8813,1592,290,4.1,0,0,80,77777,9,999999999,5,0.066,0,88,0,0,1 -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,69115,85846,10088,2002,240,2.6,1,0,80,77777,9,999999999,5,0.066,0,88,0,0,1 -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,85169,99510,10737,2324,280,3.6,1,0,112,77777,9,999999999,5,0.066,0,88,0,0,1 -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,87552,102200,10063,2259,80,2.6,0,0,96,77777,9,999999999,5,0.066,0,88,0,0,1 -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,81633,100833,9775,2028,340,3.1,0,0,96,77777,9,999999999,5,0.066,0,88,0,0,1 -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,63431,87222,10127,1782,250,2.6,2,1,96,77777,9,999999999,5,0.066,0,88,0,0,1 -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,44588,37306,14880,5488,20,3.1,8,4,96,7620,9,999999999,5,0.066,0,88,0,0,1 -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,20516,13354,12873,4071,120,5.7,7,4,96,7620,9,999999999,5,0.066,0,88,0,0,1 -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,-7.8,26,83400,155,1381,279,74,446,24,8494,0,2760,872,120,5.7,3,0,64,77777,9,999999999,5,0.066,0,88,0,0,1 -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,77777,9,999999999,5,0.066,0,88,0,0,1 -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,77777,9,999999999,5,0.066,0,88,0,0,1 -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,44,83500,0,0,265,0,0,0,0,0,0,0,170,4.1,0,0,48,77777,9,999999999,5,0.066,0,88,0,0,1 -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,77777,9,999999999,5,0.066,0,88,0,0,1 -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,77777,9,999999999,4,0.066,0,88,0,0,1 -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,77777,9,999999999,4,0.066,0,88,0,0,1 -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,77777,9,999999999,4,0.067,0,88,0,0,1 -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,77777,9,999999999,4,0.067,0,88,0,0,1 -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,77777,9,999999999,4,0.067,0,88,0,0,1 -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,77777,9,999999999,4,0.067,0,88,0,0,1 -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,77777,9,999999999,4,0.067,0,88,0,0,1 -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,49,83400,0,0,233,0,0,0,0,0,0,0,140,3.1,0,0,64,77777,9,999999999,4,0.067,0,88,0,0,1 -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,41,83500,99,1208,242,43,321,17,4886,0,1935,589,170,1.5,0,0,80,77777,9,999999999,4,0.067,0,88,0,0,1 -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,24600,64428,6027,875,0,0,0,0,96,77777,9,999999999,4,0.067,0,88,0,0,1 -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,46820,85364,8344,1309,0,0,0,0,96,77777,9,999999999,4,0.067,0,88,0,0,1 -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,62369,88671,10320,1734,240,2.6,1,0,96,77777,9,999999999,4,0.067,0,88,0,0,1 -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,78458,50825,13224,5459,270,2.6,1,1,96,77777,9,999999999,4,0.067,0,88,0,0,1 -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,87369,101333,11249,2416,270,2.6,0,0,96,77777,9,999999999,4,0.067,0,88,0,0,1 -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,86791,99210,11885,2530,290,2.6,1,0,96,77777,9,999999999,4,0.067,0,88,0,0,1 -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,91274,59363,14312,5921,360,3.1,2,0,96,77777,9,999999999,4,0.067,0,88,0,0,1 -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,69740,96270,10122,1791,110,7.7,0,0,80,77777,9,999999999,4,0.067,0,88,0,0,1 -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,-8.3,18,83400,655,1380,298,483,888,61,51175,86695,9144,1423,100,8.8,1,0,80,77777,9,999999999,4,0.067,0,88,0,0,1 -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,29799,70859,6596,983,110,7.7,0,0,64,77777,9,999999999,4,0.067,0,88,0,0,1 -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,8978,0,2767,879,100,5.7,0,0,48,77777,9,999999999,4,0.067,0,88,0,0,1 -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,77777,9,999999999,4,0.067,0,88,0,0,1 -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,77777,9,999999999,4,0.067,0,88,0,0,1 -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,77777,9,999999999,4,0.067,0,88,0,0,1 -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,77777,9,999999999,4,0.067,0,88,0,0,1 -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,77777,9,999999999,4,0.067,0,88,0,0,1 -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,77777,9,999999999,5,0.067,0,88,0,0,1 -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,-5.6,44,83500,0,0,262,0,0,0,0,0,0,0,170,6.2,0,0,32,77777,9,999999999,5,0.068,0,88,0,0,1 -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,77777,9,999999999,5,0.068,0,88,0,0,1 -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,-5.6,44,83300,0,0,262,0,0,0,0,0,0,0,180,7.7,0,0,32,77777,9,999999999,5,0.068,0,88,0,0,1 -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,77777,9,999999999,5,0.068,0,88,0,0,1 -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,77777,9,999999999,5,0.068,0,88,0,0,1 -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,1,0,80,77777,9,999999999,5,0.068,0,88,0,0,1 -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,4233,0,2568,753,0,0,1,0,80,77777,9,999999999,5,0.068,0,88,0,0,1 -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,24982,21912,6756,2324,330,1.5,1,0,80,77777,9,999999999,5,0.068,0,88,0,0,1 -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,51256,45101,9727,3683,340,2.1,0,0,64,77777,9,999999999,5,0.068,0,88,0,0,1 -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,-3.3,38,82900,811,1379,283,607,855,104,73899,55162,12703,5084,180,7.2,1,0,64,77777,9,999999999,5,0.068,0,88,0,0,1 -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,78246,92130,15486,2411,160,9.8,0,0,80,77777,9,999999999,5,0.068,0,88,0,0,1 -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,26,82500,1035,1379,295,817,923,124,85115,92982,16792,2882,160,11.8,1,0,64,77777,9,999999999,5,0.068,0,88,0,0,1 -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,85769,93142,16765,2937,160,11.8,1,0,48,77777,9,999999999,5,0.068,0,88,0,0,1 -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,-6.1,21,82100,979,1379,307,762,913,113,79544,91766,15541,2527,160,13.4,1,1,48,77777,9,999999999,5,0.068,0,88,0,0,1 -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,71542,50735,12557,5079,160,12.4,1,1,48,77777,9,999999999,5,0.068,0,88,0,0,1 -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,48396,40334,17357,6286,160,11.3,5,5,48,77777,9,999999999,5,0.068,0,88,0,0,1 -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,23285,19047,10078,3415,160,14.4,5,5,48,77777,9,999999999,5,0.068,0,88,0,0,1 -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,6708,0,3923,1185,160,13.4,3,1,48,77777,9,999999999,5,0.068,0,88,0,0,1 -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,77777,9,999999999,5,0.068,0,88,0,0,1 -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,9144,9,999999999,5,0.068,0,88,0,0,1 -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,7620,9,999999999,5,0.068,0,88,0,0,1 -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,3353,9,999999999,5,0.068,0,88,0,0,1 -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,2134,9,999999999,5,0.068,0,88,0,0,1 -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,2134,9,999999999,5,0.068,0,88,0,0,1 -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,2743,9,999999999,5,0.068,0,88,0,0,1 -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,22,81600,0,0,316,0,0,0,0,0,0,0,290,6.7,10,10,32,3048,9,999999999,5,0.068,0,88,0,0,1 -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,23,81600,0,0,305,0,0,0,0,0,0,0,310,7.7,10,9,32,3353,9,999999999,5,0.068,0,88,0,0,1 -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,23,81700,0,0,294,0,0,0,0,0,0,0,310,8.2,9,7,32,4572,9,999999999,5,0.068,0,88,0,0,1 -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,4267,9,999999999,5,0.068,0,88,0,0,1 -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,4267,9,999999999,5,0.068,0,88,0,0,1 -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,3309,0,3097,881,310,3.1,9,8,112,4267,9,999999999,5,0.068,0,88,0,0,1 -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,16911,11626,9223,3039,290,3.6,7,5,112,4572,9,999999999,5,0.068,0,88,0,0,1 -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,45870,40563,16812,5957,270,5.2,8,4,112,77777,9,999999999,5,0.068,0,88,0,0,1 -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,66658,50633,22676,8527,290,8.2,6,2,112,77777,9,999999999,5,0.068,0,88,0,0,1 -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,81868,54596,22092,8829,290,10.3,4,3,112,77777,9,999999999,5,0.068,0,88,0,0,1 -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,58377,30393,19747,8122,260,8.8,5,5,112,77777,9,999999999,5,0.068,0,88,0,0,1 -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,88755,95473,17876,3006,270,4.6,3,3,112,77777,9,999999999,5,0.068,0,88,0,0,1 -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,92303,59313,14337,5942,250,6.7,2,2,112,77777,9,999999999,5,0.068,0,88,0,0,1 -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,71227,98611,8733,1668,280,10.3,0,0,96,77777,9,999999999,5,0.068,0,88,0,0,1 -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,53155,91258,7561,1315,300,7.2,0,0,80,77777,9,999999999,5,0.068,0,88,0,0,1 -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,31397,75210,5692,936,300,8.8,0,0,64,77777,9,999999999,5,0.068,0,88,0,0,1 -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,9261,38041,3439,463,300,6.7,0,0,48,77777,9,999999999,5,0.068,0,88,0,0,1 -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,77777,9,999999999,5,0.068,0,88,0,0,1 -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,77777,9,999999999,5,0.068,0,88,0,0,1 -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,77777,9,999999999,5,0.068,0,88,0,0,1 -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,77777,9,999999999,5,0.068,0,88,0,0,1 -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,77777,9,999999999,5,0.068,0,88,0,0,1 -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,77777,9,999999999,5,0.068,0,88,0,0,1 -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,77777,9,999999999,5,0.069,0,88,0,0,1 -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,77777,9,999999999,5,0.069,0,88,0,0,1 -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,77777,9,999999999,5,0.069,0,88,0,0,1 -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,47,82300,0,0,246,0,0,0,0,0,0,0,140,2.6,6,3,32,77777,9,999999999,5,0.069,0,88,0,0,1 -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,-10.6,40,82300,0,0,253,0,0,0,0,0,0,0,190,1.5,7,5,32,7620,9,999999999,5,0.069,0,88,0,0,1 -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,-11.7,37,82300,0,0,248,0,0,0,0,0,0,0,170,1.5,10,3,80,77777,9,999999999,5,0.069,0,88,0,0,1 -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,-11.1,39,82300,119,1320,246,48,180,31,5278,0,3418,964,130,1.5,7,2,96,77777,9,999999999,5,0.069,0,88,0,0,1 -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,-11.1,27,82300,383,1378,256,247,753,38,26299,66881,6017,905,190,3.1,0,0,96,77777,9,999999999,5,0.069,0,88,0,0,1 -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,47539,83088,9178,1383,0,0,2,0,96,77777,9,999999999,5,0.069,0,88,0,0,1 -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,-11.1,19,82300,824,1378,287,461,485,171,54218,36661,20200,7769,40,2.1,8,3,96,77777,9,999999999,5,0.069,0,88,0,0,1 -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,83667,54254,16478,6767,130,6.2,7,2,96,77777,9,999999999,6,0.069,0,88,0,0,1 -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,88019,53582,25273,10160,130,7.2,9,3,96,77777,9,999999999,6,0.069,0,88,0,0,1 -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,89026,53256,33886,12984,130,6.2,10,5,96,77777,9,999999999,6,0.069,0,88,0,0,1 -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,18,81900,989,1378,329,224,0,224,23443,0,23660,10456,130,7.2,10,10,96,2591,9,999999999,6,0.069,0,88,0,0,1 -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,19879,0,20057,8674,90,5.2,10,10,80,2591,9,999999999,6,0.069,0,88,0,0,1 -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,14780,0,14905,6174,180,1.5,10,10,80,2743,9,999999999,6,0.069,0,88,0,0,1 -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,-5.6,31,81900,435,1378,315,90,0,89,8993,0,8962,3478,80,6.2,10,9,80,2743,9,999999999,7,0.069,0,88,0,0,1 -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,8279,1759,6476,1678,90,3.6,10,6,64,7620,9,999999999,7,0.069,0,88,0,0,1 -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,7620,9,999999999,7,0.069,0,88,0,0,1 -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,3353,9,999999999,7,0.069,0,88,0,0,1 -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,2438,9,999999999,7,0.069,0,88,0,0,1 -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,3658,9,999999999,7,0.069,0,88,0,0,1 -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,2896,9,999999999,8,0.069,0,88,0,0,1 -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,8,0.069,0,88,0,0,1 -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,82,82200,0,0,284,0,0,0,0,0,0,0,310,6.7,9,8,24,2438,9,999999999,8,0.07,0,88,0,0,1 -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,82,82200,0,0,299,0,0,0,0,0,0,0,330,6.2,10,10,11.2,244,9,999999999,8,0.07,0,88,0,0.5,1 -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,82,82200,0,0,299,0,0,0,0,0,0,0,360,5.7,10,10,19.2,335,9,999999999,8,0.07,0,88,0,0.5,1 -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,96,82300,0,0,289,0,0,0,0,0,0,0,340,4.6,10,10,4.8,366,9,999999999,9,0.07,0,88,0,0.5,1 -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,96,82300,0,0,289,0,0,0,0,0,0,0,310,3.6,10,10,8,122,9,999999999,9,0.07,0,88,0,0,1 -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,88,82400,0,0,294,0,0,0,0,0,0,0,20,2.1,10,10,32,244,9,999999999,8,0.07,0,88,0,0,1 -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,85,82400,126,1366,282,29,27,27,3234,0,3019,898,290,3.1,9,8,80,1829,9,999999999,8,0.07,0,88,0,0,1 -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,76,82400,390,1377,276,223,510,79,25415,22871,9032,3033,330,2.1,5,4,80,77777,9,999999999,8,0.07,0,88,0,0,1 -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,23407,8680,16938,6059,320,3.1,8,8,80,2896,9,999999999,8,0.07,0,88,0,0,1 -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,57792,38902,21935,8364,20,4.1,5,4,96,77777,9,999999999,8,0.07,0,88,0,0,1 -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,77477,46918,34210,12684,330,4.1,10,6,96,4267,9,999999999,7,0.07,0,88,0,0,1 -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,77212,36083,45462,15971,300,12.4,10,7,96,4267,9,999999999,7,0.07,0,88,0,0,1 -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,-10,21,82500,1059,1377,304,586,414,267,69024,34687,31625,12312,310,12.9,9,8,96,4267,9,999999999,7,0.07,0,88,0,0,1 -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,52139,24269,26082,10298,310,11.8,7,7,96,6706,9,999999999,7,0.07,0,88,0,0,1 -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,52314,20653,37614,12579,300,11.8,9,8,96,7620,9,999999999,7,0.07,0,88,0,0,1 -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,-11.1,19,82700,673,1377,294,379,307,229,42384,26580,25744,8469,300,13.4,7,6,96,7620,9,999999999,6,0.07,0,88,0,0,1 -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,19241,11043,12651,4128,290,7.7,8,6,80,7620,9,999999999,6,0.07,0,88,0,0,1 -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,6671,0,3853,1193,300,7.7,7,4,80,7620,9,999999999,6,0.07,0,88,0,0,1 -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,26,83000,4,241,277,0,10,0,0,0,0,0,260,3.6,5,3,64,77777,9,999999999,6,0.07,0,88,0,0,1 -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,77777,9,999999999,6,0.07,0,88,0,0,1 -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,77777,9,999999999,5,0.07,0,88,0,0,1 -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,28,83200,0,0,262,0,0,0,0,0,0,0,270,8.2,2,0,32,77777,9,999999999,5,0.07,0,88,0,0,1 -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,29,83200,0,0,260,0,0,0,0,0,0,0,270,6.2,1,0,32,77777,9,999999999,5,0.07,0,88,0,0,1 -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,77777,9,999999999,5,0.07,0,88,0,0,1 -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,77777,9,999999999,5,0.071,0,88,0,0,1 -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,-11.1,27,83400,0,0,256,0,0,0,0,0,0,0,270,6.2,0,0,32,77777,9,999999999,4,0.071,0,88,0,0,1 -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,31,83400,0,0,255,0,0,0,0,0,0,0,270,5.2,0,0,32,77777,9,999999999,4,0.071,0,88,0,0,1 -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,77777,9,999999999,4,0.071,0,88,0,0,1 -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,77777,9,999999999,4,0.071,0,88,0,0,1 -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,77777,9,999999999,4,0.071,0,88,0,0,1 -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,4846,0,3755,1072,210,4.1,7,2,96,77777,9,999999999,4,0.071,0,88,0,0,1 -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,19144,12819,11575,3699,210,4.6,5,3,96,77777,9,999999999,4,0.071,0,88,0,0,1 -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,43252,34588,19323,6738,160,4.1,7,5,96,9144,9,999999999,4,0.071,0,88,0,0,1 -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,-11.1,19,83700,837,1376,292,544,548,211,63077,44452,24587,9197,220,2.6,8,5,96,7620,9,999999999,4,0.071,0,88,0,0,1 -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,92179,61629,20142,8172,230,2.6,5,0,112,77777,9,999999999,4,0.071,0,88,0,0,1 -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,96032,59730,24881,10044,170,3.1,8,1,112,77777,9,999999999,4,0.071,0,88,0,0,1 -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,93114,56411,22993,9373,240,2.6,7,2,112,77777,9,999999999,4,0.071,0,88,0,0,1 -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,-11.7,13,83500,999,1376,307,703,624,250,82529,51972,29507,11426,110,2.6,9,3,112,77777,9,999999999,4,0.071,0,88,0,0,1 -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,61365,31441,39213,12930,150,2.1,9,5,96,9144,9,999999999,4,0.071,0,88,0,0,1 -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,45389,35221,19159,6882,130,3.6,9,4,96,77777,9,999999999,4,0.071,0,88,0,0,1 -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,28535,26188,13083,4251,110,4.1,6,2,96,77777,9,999999999,4,0.071,0,88,0,0,1 -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,5105,85,4897,1447,50,4.1,9,8,64,2743,9,999999999,4,0.071,0,88,0,0,1 -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,3353,9,999999999,4,0.071,0,88,0,0,1 -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,7620,9,999999999,4,0.071,0,88,0,0,1 -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,77777,9,999999999,4,0.071,0,88,0,0,1 -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,77777,9,999999999,4,0.071,0,88,0,0,1 -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,-7.8,36,83400,0,0,260,0,0,0,0,0,0,0,300,3.1,1,0,32,77777,9,999999999,4,0.071,0,88,0,0,1 -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,77777,9,999999999,4,0.071,0,88,0,0,1 -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,77777,9,999999999,4,0.071,0,88,0,0,1 -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,77777,9,999999999,4,0.071,0,88,0,0,1 -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,77777,9,999999999,4,0.071,0,88,0,0,1 -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,77777,9,999999999,4,0.071,0,88,0,0,1 -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,77777,9,999999999,4,0.071,0,88,0,0,1 -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,77777,9,999999999,4,0.071,0,88,0,0,1 -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,7133,30607,3276,394,160,2.6,0,0,112,77777,9,999999999,4,0.071,0,88,0,0,1 -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,28831,71398,6007,932,150,2.6,0,0,112,77777,9,999999999,5,0.071,0,88,0,0,1 -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,51258,89357,8012,1336,180,5.2,0,0,112,77777,9,999999999,5,0.071,0,88,0,0,1 -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,-10.6,14,83400,843,1375,296,663,976,64,70176,97460,9295,1717,170,4.6,0,0,112,77777,9,999999999,5,0.071,0,88,0,0,1 -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,83701,101274,10139,2135,110,3.6,0,0,112,77777,9,999999999,5,0.071,0,88,0,0,1 -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,91132,102939,10522,2469,340,2.6,0,0,112,77777,9,999999999,5,0.071,0,88,0,0,1 -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,-11.7,10,83100,1069,1375,316,871,1022,77,91643,103074,10640,2516,50,4.6,0,0,112,77777,9,999999999,5,0.071,0,88,0,0,1 -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,81368,95924,10767,2275,20,4.1,1,0,112,77777,9,999999999,5,0.071,0,88,0,0,1 -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,66424,86272,12094,2003,360,1.5,3,1,112,77777,9,999999999,5,0.071,0,88,0,0,1 -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,51304,82116,10510,1531,260,7.2,4,2,112,77777,9,999999999,5,0.071,0,88,0,0,1 -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,24871,16172,16694,5023,260,5.2,8,4,112,77777,9,999999999,5,0.071,0,88,0,0,1 -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,7988,1488,6826,1802,250,9.3,10,5,64,77777,9,999999999,5,0.071,0,88,0,0,1 -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,7620,9,999999999,5,0.071,0,88,0,0,1 -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,6706,9,999999999,5,0.071,0,88,0,0,1 -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,10,6,32,6706,9,999999999,5,0.071,0,88,0,0,1 -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,77777,9,999999999,5,0.071,0,88,0,0,1 -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,77777,9,999999999,5,0.071,0,88,0,0,1 -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,77777,9,999999999,5,0.071,0,88,0,0,1 -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,77777,9,999999999,5,0.072,0,88,0,0,1 -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,77777,9,999999999,5,0.072,0,88,0,0,1 -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,77777,9,999999999,5,0.072,0,88,0,0,1 -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,77777,9,999999999,5,0.072,0,88,0,0,1 -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,77777,9,999999999,5,0.072,0,88,0,0,1 -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,77777,9,999999999,5,0.072,0,88,0,0,1 -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,7714,0,2537,803,150,2.6,1,1,112,77777,9,999999999,5,0.072,0,88,0,0,1 -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,18576,13929,8033,2787,300,2.6,8,4,96,77777,9,999999999,5,0.072,0,88,0,0,1 -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,52040,46081,17998,6441,0,0,7,4,96,77777,9,999999999,5,0.072,0,88,0,0,1 -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,-10,15,82700,849,1375,312,567,638,173,66915,48158,20508,7963,190,2.6,9,4,96,77777,9,999999999,5,0.072,0,88,0,0,1 -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,12,82500,992,1375,329,728,786,161,88299,57070,19612,8001,210,5.2,10,5,96,77777,9,999999999,5,0.072,0,88,0,0,1 -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,-11.4,10,82400,1068,1375,335,787,719,228,94007,57118,27375,10942,240,6.7,10,5,96,77777,9,999999999,5,0.072,0,88,0,0,1 -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,71290,37113,28402,11304,180,6.2,10,7,96,7620,9,999999999,5,0.072,0,88,0,0,1 -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,-13.9,8,82300,1009,1375,344,684,322,447,76806,34244,50541,16515,240,6.2,10,8,96,7620,9,999999999,5,0.072,0,88,0,0,1 -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,49566,29293,20056,7890,210,7.7,10,7,96,7620,9,999999999,5,0.072,0,88,0,0,1 -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,-16.7,6,82200,687,1375,347,183,39,164,21095,2956,18988,6874,260,9.8,10,9,96,7620,9,999999999,5,0.072,0,88,0,0,1 -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,20834,13625,12388,4118,270,7.7,9,7,96,7620,9,999999999,5,0.072,0,88,0,0,1 -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,7469,810,6845,1830,260,4.6,10,8,96,7620,9,999999999,5,0.072,0,88,0,0,1 -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,9,82400,7,309,308,1,14,1,0,0,0,0,220,4.1,5,4,64,77777,9,999999999,5,0.072,0,88,0,0,1 -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,77777,9,999999999,5,0.072,0,88,0,0,1 -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,77777,9,999999999,5,0.072,0,88,0,0,1 -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,77777,9,999999999,5,0.072,0,88,0,0,1 -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,77777,9,999999999,5,0.072,0,88,0,0,1 -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,77777,9,999999999,5,0.072,0,88,0,0,1 -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,77777,9,999999999,5,0.073,0,88,0,0,1 -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,77777,9,999999999,5,0.073,0,88,0,0,1 -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,-6.1,30,82300,0,0,281,0,0,0,0,0,0,0,220,9.3,0,0,32,77777,9,999999999,5,0.073,0,88,0,0,1 -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,34,82400,0,0,279,0,0,0,0,0,0,0,230,6.7,0,0,32,77777,9,999999999,5,0.073,0,88,0,0,1 -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,77777,9,999999999,5,0.073,0,88,0,0,1 -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,77777,9,999999999,5,0.073,0,88,0,0,1 -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,37,82400,154,1374,275,69,367,28,7820,0,3180,985,240,3.1,0,0,96,77777,9,999999999,5,0.073,0,88,0,0,1 -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,31890,28699,6081,2175,210,8.2,0,0,80,77777,9,999999999,6,0.073,0,88,0,0,1 -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,50913,43567,15755,5804,220,6.7,3,3,96,77777,9,999999999,6,0.073,0,88,0,0,1 -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,75483,53451,12806,5190,210,8.2,1,1,96,77777,9,999999999,6,0.073,0,88,0,0,1 -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,-7.2,19,82200,997,1374,305,758,913,94,79502,91941,13012,2492,240,7.7,1,1,96,77777,9,999999999,6,0.073,0,88,0,0,1 -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,98810,59581,23575,9611,200,6.7,2,2,96,77777,9,999999999,6,0.073,0,88,0,0,1 -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,52976,18886,32154,12556,210,7.2,6,5,96,7620,9,999999999,6,0.073,0,88,0,0,1 -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,67226,30047,40335,14526,190,4.6,7,6,96,2438,9,999999999,6,0.073,0,88,0,0,1 -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,56748,34843,23681,9117,210,5.7,8,6,96,2438,9,999999999,6,0.073,0,88,0,0,1 -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,18383,0,18539,7380,50,5.2,10,10,64,3048,9,999999999,7,0.073,0,88,0,0,1 -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,8514,0,8580,3433,30,5.2,10,10,64,2591,9,999999999,7,0.073,0,88,0,0,1 -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,2740,0,2760,1053,310,5.2,10,10,64,2591,9,999999999,7,0.073,0,88,0,0,1 -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,1829,9,999999999,7,0.073,0,88,0,0,1 -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,2134,9,999999999,7,0.073,0,88,0,0,1 -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,1829,9,999999999,7,0.073,0,88,0,0,1 -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,76,81700,0,0,303,0,0,0,0,0,0,0,340,8.8,10,10,1.6,366,9,999999999,7,0.073,0,88,0,0,1 -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,96,81800,0,0,289,0,0,0,0,0,0,0,320,10.3,10,10,1.2,91,9,999999999,8,0.073,0,88,0,0,1 -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,96,81900,0,0,289,0,0,0,0,0,0,0,330,8.2,10,10,1.2,122,9,999999999,8,0.073,0,88,0,0,1 -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,152,9,999999999,8,0.074,0,88,0,0,1 -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.6,95,82000,0,0,286,0,0,0,0,0,0,0,10,10.8,10,10,32,305,9,999999999,8,0.074,0,88,0,0,1 -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,-2.2,83,82200,0,0,284,0,0,0,0,0,0,0,30,7.2,10,10,32,2438,9,999999999,8,0.074,0,88,0,0,1 -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,8,0.074,0,88,0,0,1 -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,-2.8,79,82500,0,0,284,0,0,0,0,0,0,0,0,0,10,10,32,1219,9,999999999,8,0.074,0,88,0,0,1 -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,6706,9,999999999,8,0.074,0,88,0,0,1 -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,3415,0,3439,1180,100,3.1,10,10,48,6706,9,999999999,8,0.074,0,88,0,0,1 -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,-3.3,76,82800,425,1373,275,175,42,162,19004,2998,17678,4999,160,4.1,10,9,64,6706,9,999999999,8,0.074,0,88,0,0,1 -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,42848,29613,22663,7741,170,4.1,7,7,96,6706,9,999999999,8,0.074,0,88,0,0,1 -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,65793,45021,17985,7138,190,3.1,3,3,96,77777,9,999999999,7,0.074,0,88,0,0,1 -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,78660,89037,14563,2630,170,3.6,1,1,96,77777,9,999999999,7,0.074,0,88,0,0,1 -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,87809,97743,9709,2409,300,7.7,1,1,96,77777,9,999999999,7,0.074,0,88,0,0,1 -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,-8.3,25,82700,1084,1373,287,822,939,80,86552,94891,10999,2656,350,6.2,2,2,96,77777,9,999999999,7,0.074,0,88,0,0,1 -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,91815,57609,20249,8290,70,2.6,3,3,96,77777,9,999999999,7,0.074,0,88,0,0,1 -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,68183,88250,11126,1975,220,5.2,2,2,96,77777,9,999999999,7,0.074,0,88,0,0,1 -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,54549,44834,12362,4764,190,3.1,3,3,96,77777,9,999999999,6,0.074,0,88,0,0,1 -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,27867,24585,7370,2657,180,2.6,2,2,96,77777,9,999999999,6,0.074,0,88,0,0,1 -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,11792,0,3040,996,300,6.7,1,1,96,77777,9,999999999,6,0.074,0,88,0,0,1 -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,26,82800,9,378,264,2,62,1,0,0,0,0,270,6.2,0,0,64,77777,9,999999999,6,0.074,0,88,0,0,1 -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,77777,9,999999999,6,0.074,0,88,0,0,1 -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,77777,9,999999999,5,0.074,0,88,0,0,1 -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,77777,9,999999999,5,0.074,0,88,0,0,1 -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,77777,9,999999999,5,0.074,0,88,0,0,1 -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,77777,9,999999999,5,0.074,0,88,0,0,1 -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,77777,9,999999999,5,0.074,0,88,0,0,1 -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,77777,9,999999999,5,0.074,0,88,0,0,1 -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,72,82900,0,0,240,0,0,0,0,0,0,0,180,2.6,0,0,48,77777,9,999999999,4,0.074,0,88,0,0,1 -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,77777,9,999999999,4,0.074,0,88,0,0,1 -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,77777,9,999999999,4,0.074,0,88,0,0,1 -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,77777,9,999999999,4,0.074,0,88,0,0,1 -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,9284,0,3100,982,180,3.1,0,0,128,77777,9,999999999,4,0.074,0,88,0,0,1 -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,30373,69310,7331,1029,190,2.6,0,0,112,77777,9,999999999,4,0.074,0,88,0,0,1 -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,52608,86656,9682,1481,360,2.1,0,0,112,77777,9,999999999,4,0.074,0,88,0,0,1 -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,25,83000,868,1372,268,678,948,78,71373,94758,11157,1936,20,3.1,0,0,112,77777,9,999999999,4,0.074,0,88,0,0,1 -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,84927,98773,12067,2455,10,3.6,0,0,112,77777,9,999999999,4,0.074,0,88,0,0,1 -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,92132,100528,12543,2890,90,5.2,0,0,112,77777,9,999999999,4,0.074,0,88,0,0,1 -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,-10.6,20,82900,1089,1372,276,883,996,92,92458,100453,12530,2918,40,5.2,0,0,112,77777,9,999999999,4,0.074,0,88,0,0,1 -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,86046,98909,12165,2525,120,3.1,0,0,96,77777,9,999999999,5,0.074,0,88,0,0,1 -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,73383,95337,11383,2008,110,3.6,0,0,96,77777,9,999999999,5,0.074,0,88,0,0,1 -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,55188,87881,9921,1539,110,2.1,0,0,96,77777,9,999999999,5,0.074,0,88,0,0,1 -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,-11.7,18,82800,465,1372,275,314,780,49,33281,72174,7599,1090,70,3.6,0,0,80,77777,9,999999999,5,0.074,0,88,0,0,1 -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,12150,671,3478,1128,100,2.6,0,0,64,77777,9,999999999,5,0.074,0,88,0,0,1 -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,77777,9,999999999,5,0.074,0,88,0,0,1 -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,77777,9,999999999,5,0.074,0,88,0,0,1 -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,26,82900,0,0,266,0,0,0,0,0,0,0,260,6.2,0,0,32,77777,9,999999999,5,0.074,0,88,0,0,1 -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,77777,9,999999999,5,0.074,0,88,0,0,1 -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,77777,9,999999999,5,0.074,0,88,0,0,1 -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,77777,9,999999999,5,0.074,0,88,0,0,1 -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,77777,9,999999999,5,0.075,0,88,0,0,1 -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,77777,9,999999999,5,0.075,0,88,0,0,1 -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,77777,9,999999999,5,0.075,0,88,0,0,1 -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,3962,9,999999999,5,0.075,0,88,0,0,1 -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,3962,9,999999999,5,0.075,0,88,0,0,1 -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,8,8,64,3962,9,999999999,5,0.075,0,88,0,0,1 -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,5661,128,4675,1384,180,2.6,9,7,96,3962,9,999999999,5,0.075,0,88,0,0,1 -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,11201,0,11288,4134,180,2.1,10,10,96,6096,9,999999999,5,0.075,0,88,0,0,1 -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,18978,0,19138,7470,170,2.6,10,10,96,3048,9,999999999,5,0.075,0,88,0,0,1 -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,50878,20267,35487,12284,70,3.1,10,9,80,1829,9,999999999,5,0.075,0,88,0,0,1 -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,24200,0,24428,10847,10,7.2,10,10,64,2743,9,999999999,6,0.075,0,88,0,0,1 -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,26246,0,26498,11815,40,7.7,10,10,16,2286,9,999999999,6,0.075,0,88,0,0,1 -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,18440,0,18618,8858,360,8.2,10,10,1,122,9,999999999,6,0.075,0,88,0,0,1 -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,17189,0,17352,8232,30,5.2,10,10,2.8,183,9,999999999,6,0.075,0,88,0,0,1 -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,20946,0,21136,9226,30,5.7,10,10,19.2,914,9,999999999,6,0.075,0,88,0,0,1 -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,15833,0,15969,6681,10,7.2,10,10,32,1829,9,999999999,6,0.075,0,88,0,0,1 -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,17719,2335,16464,5139,10,8.2,10,9,48,4267,9,999999999,6,0.075,0,88,0,0,1 -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,-5.6,62,83500,208,1371,260,93,88,79,9948,2521,8486,2144,360,8.2,10,6,48,4267,9,999999999,6,0.075,0,88,0,0,1 -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,1829,9,999999999,6,0.075,0,88,0,0,1 -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,853,9,999999999,6,0.075,0,88,0,0,1 -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,76,83800,0,0,275,0,0,0,0,0,0,0,10,6.7,10,10,6.4,914,9,999999999,6,0.075,0,88,0,0,1 -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,6,0.075,0,88,0,0,1 -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,6,0.075,0,88,0,0,1 -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,10,10,8,1067,9,999999999,6,0.075,0,88,0,0,1 -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,10,10,9.6,1250,9,999999999,6,0.076,0,88,0,0,1 -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,6,0.076,0,88,0,0,1 -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,6,0.076,0,88,0,0,1 -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,77777,9,999999999,6,0.076,0,88,0,0,1 -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,91,83900,0,0,230,0,0,0,0,0,0,0,190,3.1,0,0,32,77777,9,999999999,6,0.076,0,88,0,0,1 -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,6,286,228,1,47,0,0,0,0,0,190,3.6,0,0,64,77777,9,999999999,6,0.076,0,88,0,0,1 -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,10259,40423,3600,497,200,4.6,0,0,96,77777,9,999999999,6,0.076,0,88,0,0,1 -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,32672,75992,5835,964,200,4.6,0,0,112,77777,9,999999999,6,0.076,0,88,0,0,1 -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,54964,91468,7683,1350,190,4.6,0,0,112,77777,9,999999999,6,0.076,0,88,0,0,1 -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,73642,98621,8965,1748,200,4.1,0,0,112,77777,9,999999999,6,0.076,0,88,0,0,1 -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,86843,101951,9678,2186,230,1.5,0,0,104,77777,9,999999999,6,0.076,0,88,0,0,1 -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,94004,103476,9937,2532,170,2.6,0,0,104,77777,9,999999999,6,0.076,0,88,0,0,1 -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,94322,103518,10058,2575,260,2.1,0,0,96,77777,9,999999999,6,0.076,0,88,0,0,1 -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,19,83900,1031,1371,283,833,1014,69,88020,102304,9656,2223,40,2.1,0,0,96,77777,9,999999999,6,0.076,0,88,0,0,1 -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,75381,99167,9071,1796,60,3.6,0,0,96,77777,9,999999999,6,0.076,0,88,0,0,1 -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,57278,92698,7796,1387,30,5.2,0,0,96,77777,9,999999999,6,0.076,0,88,0,0,1 -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,20,84000,474,1371,281,330,843,39,35256,78514,6114,1014,70,3.1,0,0,96,77777,9,999999999,6,0.076,0,88,0,0,1 -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,-10,21,84000,213,1371,276,118,610,24,12594,46171,3913,562,60,2.1,0,0,96,77777,9,999999999,5,0.076,0,88,0,0,1 -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,77777,9,999999999,5,0.076,0,88,0,0,1 -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,77777,9,999999999,5,0.076,0,88,0,0,1 -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,48,84200,0,0,260,0,0,0,0,0,0,0,150,2.6,0,0,32,77777,9,999999999,5,0.076,0,88,0,0,1 -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,77777,9,999999999,5,0.076,0,88,0,0,1 -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,54,84300,0,0,254,0,0,0,0,0,0,0,190,3.6,0,0,32,77777,9,999999999,5,0.076,0,88,0,0,1 -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,77777,9,999999999,5,0.076,0,88,0,0,1 -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,77777,9,999999999,5,0.077,0,88,0,0,1 -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,77777,9,999999999,5,0.077,0,88,0,0,1 -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,77777,9,999999999,5,0.077,0,88,0,0,1 -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,77777,9,999999999,5,0.077,0,88,0,0,1 -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,77777,9,999999999,5,0.077,0,88,0,0,1 -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,77777,9,999999999,5,0.077,0,88,0,0,1 -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,9205,1088,4502,1379,200,5.2,0,0,96,77777,9,999999999,5,0.077,0,88,0,0,1 -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,32861,31281,8443,2994,190,3.6,0,0,96,77777,9,999999999,5,0.077,0,88,0,0,1 -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,59112,49792,11908,4595,150,3.1,0,0,112,77777,9,999999999,5,0.077,0,88,0,0,1 -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,82472,58359,14591,5924,170,2.1,0,0,112,77777,9,999999999,5,0.077,0,88,0,0,1 -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,15,84300,1025,1370,299,807,901,132,99875,62102,16399,6813,160,3.1,0,0,112,77777,9,999999999,5,0.077,0,88,0,0,1 -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,14,84200,1099,1370,304,877,919,138,90736,92427,18306,3541,170,3.6,0,0,112,77777,9,999999999,5,0.077,0,88,0,0,1 -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,13,84200,1103,1370,308,880,920,139,91025,92531,18417,3585,150,2.1,0,0,112,77777,9,999999999,5,0.077,0,88,0,0,1 -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,12,84100,1036,1370,310,817,904,133,101208,62347,16540,6879,200,2.1,0,0,112,77777,9,999999999,5,0.077,0,88,0,0,1 -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,12,84000,902,1370,315,691,866,121,84549,59040,14859,6053,80,1.5,0,0,112,77777,9,999999999,5,0.077,0,88,0,0,1 -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,12,84000,712,1370,315,514,794,101,61801,51268,12183,4733,120,4.6,0,0,112,77777,9,999999999,5,0.077,0,88,0,0,1 -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,35667,34035,8824,3162,120,4.1,0,0,96,77777,9,999999999,5,0.077,0,88,0,0,1 -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,11284,4018,4978,1554,120,3.1,0,0,96,77777,9,999999999,5,0.077,0,88,0,0,1 -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,77777,9,999999999,5,0.077,0,88,0,0,1 -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,77777,9,999999999,5,0.077,0,88,0,0,1 -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,77777,9,999999999,5,0.077,0,88,0,0,1 -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,77777,9,999999999,5,0.077,0,88,0,0,1 -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,33,84000,0,0,278,0,0,0,0,0,0,0,170,5.7,5,1,32,77777,9,999999999,5,0.077,0,88,0,0,1 -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,4,1,32,77777,9,999999999,4,0.077,0,88,0,0,1 -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,6096,9,999999999,8,0.073,0,88,0,0,1 -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,77777,9,999999999,8,0.073,0,88,0,0,1 -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,-1.8,81,81300,0,0,254,0,0,0,0,0,0,0,350,2.8,0,0,16,77777,9,999999999,8,0.073,0,88,0,0,1 -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,77777,9,999999999,8,0.073,0,88,0,0,1 -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,-1.7,87,81900,0,0,285,0,0,0,0,0,0,0,30,3.1,10,10,16,6096,9,999999999,8,0.073,0,88,0,0,1 -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,244,9,999999999,8,0.073,0,88,0,0,1 -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,-1,80,81800,196,1369,294,24,0,24,2348,0,2364,927,10,3.6,10,10,16.1,300,9,999999999,8,0.073,0,88,0,0,1 -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,5903,0,5949,2544,30,4.1,10,10,16,305,9,999999999,8,0.073,0,88,0,0,1 -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,8878,0,8954,4122,30,4.6,10,10,16,305,9,999999999,9,0.073,0,88,0,0,1 -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,11306,0,11409,5496,10,5.7,10,10,16,366,9,999999999,9,0.073,0,88,0,0,1 -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,18250,0,18423,8671,20,5.7,10,10,16,366,9,999999999,9,0.073,0,88,0,0,1 -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,19205,0,19391,9183,20,4.1,10,10,16,427,9,999999999,9,0.073,0,88,0,0,1 -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,15093,0,15240,7451,360,3.6,10,10,16,488,9,999999999,9,0.073,0,88,0,0,1 -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,36760,3046,33804,12948,30,4.6,10,10,16,427,9,999999999,9,0.073,0,88,0,0,1 -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,12459,0,12573,6020,20,3.6,10,10,16,427,9,999999999,9,0.073,0,88,0,0,1 -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,8995,0,9073,4207,360,3.1,10,10,16,427,9,999999999,9,0.073,0,88,0,0,1 -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,5112,0,5153,2274,350,2.6,10,10,2.4,488,9,999999999,9,0.073,0,88,0,0,1 -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,1961,0,1975,810,350,3.6,10,10,1.6,274,9,999999999,9,0.073,0,88,0,0,1 -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,9,0.073,0,88,0,0,1 -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,9,0.073,0,88,0,0,1 -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,9,0.073,0,88,0,0,1 -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,91,9,999999999,9,0.073,0,88,0,0,1 -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,9,0.073,0,88,0,0,1 -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,91,82300,0,0,266,0,0,0,0,0,0,0,360,5.2,10,10,1.2,122,9,999999999,10,0.073,0,88,0,0,1 -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,-5,92,82300,0,0,265,0,0,0,0,0,0,0,360,5.1,10,10,1.2,15,9,999999999,10,0.074,0,88,0,0,1 -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,-6,84,82400,0,0,264,0,0,0,0,0,0,0,360,4.6,10,10,4,450,9,999999999,10,0.074,0,88,0,0,1 -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,95,82400,0,0,264,0,0,0,0,0,0,0,340,5.2,10,10,3.2,762,9,999999999,10,0.074,0,88,0,0,1 -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,-5.6,95,82400,0,0,261,0,0,0,0,0,0,0,350,5.7,10,10,3.2,91,9,999999999,10,0.074,0,88,0,0,1 -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,-5.6,95,82800,0,0,261,0,0,0,0,0,0,0,350,5.2,10,10,3.2,122,9,999999999,10,0.074,0,88,0,0,1 -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,10,0.074,0,88,0,0,1 -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,-6,100,82400,203,1368,257,46,0,46,4508,0,4539,1566,10,4.6,10,10,3.2,120,9,999999999,10,0.074,0,88,0,0,1 -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,-6.1,91,82500,466,1368,260,81,0,81,8118,0,8182,3335,360,5.2,10,10,2,244,9,999999999,9,0.074,0,88,0,0,1 -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,10938,0,11031,4947,360,4.1,10,10,2.2,549,9,999999999,9,0.074,0,88,0,0,1 -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,13917,0,14043,6602,10,3.1,10,10,2.4,549,9,999999999,9,0.074,0,88,0,0,1 -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,15649,0,15797,7603,50,4.6,10,10,2.4,549,9,999999999,9,0.074,0,88,0,0,1 -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,22507,0,22725,10486,40,3.6,10,10,16,396,9,999999999,9,0.074,0,88,0,0,1 -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,18919,0,19102,9069,40,2.6,10,10,14.4,488,9,999999999,9,0.074,0,88,0,0,1 -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,15980,0,16132,7755,360,3.6,10,10,16,579,9,999999999,9,0.074,0,88,0,0,1 -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,12479,0,12593,6031,350,3.6,10,10,16,396,9,999999999,9,0.074,0,88,0,0,1 -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,9008,0,9086,4216,40,4.1,10,10,0.8,183,9,999999999,8,0.074,0,88,0,0,1 -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,5622,0,5666,2477,70,1.5,10,10,0.4,152,9,999999999,8,0.074,0,88,0,0,1 -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,-6,92,82300,226,1368,260,20,0,20,1964,0,1978,814,70,2.1,10,10,2.4,1800,9,999999999,8,0.074,0,88,0,0,1 -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,305,9,999999999,8,0.074,0,88,0,0,1 -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,-7,92,82300,0,0,256,0,0,0,0,0,0,0,150,2.1,10,10,4,1500,9,999999999,8,0.074,0,88,0,0,1 -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,8,0.074,0,88,0,0,1 -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,1524,9,999999999,8,0.074,0,88,0,0,1 -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,1402,9,999999999,8,0.074,0,88,0,0,1 -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,1280,9,999999999,8,0.074,0,88,0,0,1 -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,1158,9,999999999,7,0.075,0,88,0,0,1 -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,1036,9,999999999,7,0.075,0,88,0,0,1 -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,77777,9,999999999,7,0.075,0,88,0,0,1 -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,-8,92,81700,0,0,244,0,0,0,0,0,0,0,100,4.1,9,9,16.1,660,9,999999999,7,0.075,0,88,0,0,1 -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,610,9,999999999,7,0.075,0,88,0,0,1 -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,7,0.075,0,88,0,0,1 -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,2158,0,2173,873,0,0,10,10,11.2,549,9,999999999,7,0.075,0,88,0,0,1 -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,-6.7,86,81800,472,1367,253,52,0,52,5215,0,5256,2299,290,3.1,9,9,11.2,914,9,999999999,7,0.075,0,88,0,0,1 -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,8898,0,8974,4150,320,3.6,9,9,11.2,914,9,999999999,7,0.075,0,88,0,0,1 -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,12574,0,12689,6057,290,3.1,9,9,14.4,213,9,999999999,7,0.075,0,88,0,0,1 -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,38851,2135,36985,13861,240,2.1,9,9,12.8,6096,9,999999999,6,0.075,0,88,0,0,1 -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,52610,7926,44943,16308,190,2.6,9,9,11.2,6096,9,999999999,6,0.075,0,88,0,0,1 -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,-5.6,62,82000,1117,1367,273,602,270,381,69567,25283,44316,16165,150,2.1,9,9,16,6096,9,999999999,6,0.075,0,88,0,0,1 -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,52,82100,1049,1367,287,608,346,341,70171,31566,39601,14607,90,3.6,9,9,16,6096,9,999999999,6,0.075,0,88,0,0,1 -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,60030,31205,33299,12105,110,2.6,9,9,16,6096,9,999999999,6,0.075,0,88,0,0,1 -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,45389,27868,25258,8778,120,4.6,9,9,16,6096,9,999999999,6,0.075,0,88,0,0,1 -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,24322,12960,17069,5401,150,5.7,9,9,16,6706,9,999999999,6,0.075,0,88,0,0,1 -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,14136,9266,7368,2113,160,3.6,9,9,16,6096,9,999999999,6,0.075,0,88,0,0,1 -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,69,82200,18,536,271,0,0,0,0,0,0,0,150,3.1,9,9,16,6096,9,999999999,6,0.075,0,88,0,0,1 -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,79,82200,0,0,265,0,0,0,0,0,0,0,110,3.1,9,9,16,6706,9,999999999,6,0.075,0,88,0,0,1 -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,77777,9,999999999,6,0.075,0,88,0,0,1 -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,77777,9,999999999,6,0.075,0,88,0,0,1 -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,77777,9,999999999,6,0.075,0,88,0,0,1 -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,77777,9,999999999,5,0.075,0,88,0,0,1 -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,77777,9,999999999,5,0.075,0,88,0,0,1 -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,77777,9,999999999,5,0.075,0,88,0,0,1 -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,77777,9,999999999,5,0.075,0,88,0,0,1 -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,6096,9,999999999,5,0.075,0,88,0,0,1 -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,3353,9,999999999,5,0.075,0,88,0,0,1 -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,-8.3,75,82100,14,467,251,0,0,0,0,0,0,0,150,2.6,9,9,16,6096,9,999999999,5,0.075,0,88,0,0,1 -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,10673,4041,8226,2180,190,4.6,9,9,16,6096,9,999999999,5,0.075,0,88,0,0,1 -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,-5.6,62,82400,479,1367,273,301,534,113,34177,32409,12879,4359,210,3.1,9,9,16,2743,9,999999999,6,0.075,0,88,0,0,1 -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,55596,44790,19079,7040,250,2.6,9,9,16,6096,9,999999999,6,0.075,0,88,0,0,1 -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,81281,56270,18594,7471,200,2.1,9,9,16,6706,9,999999999,6,0.075,0,88,0,0,1 -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,101039,61894,19434,8026,150,3.6,9,9,16,6096,9,999999999,6,0.075,0,88,0,0,1 -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,106564,60666,20092,8331,150,5.7,9,9,16,7620,9,999999999,6,0.075,0,88,0,0,1 -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,97276,54873,28820,11544,160,7.2,9,9,16,7620,9,999999999,6,0.075,0,88,0,0,1 -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,95818,58562,23645,9609,180,6.7,9,9,16,7620,9,999999999,7,0.075,0,88,0,0,1 -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,65517,37737,32483,11917,160,7.2,9,9,16,7620,9,999999999,7,0.075,0,88,0,0,1 -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,35,82500,728,1367,320,318,118,256,35616,10481,28831,9615,180,11.8,10,10,16,7620,9,999999999,7,0.075,0,88,0,0,1 -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,17605,1995,16565,5323,170,9.3,10,10,16,7620,9,999999999,7,0.075,0,88,0,0,1 -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,7205,761,6561,1972,160,9.3,10,10,16,7620,9,999999999,7,0.075,0,88,0,0,1 -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,7620,9,999999999,7,0.075,0,88,0,0,1 -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,7620,9,999999999,7,0.075,0,88,0,0,1 -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,3658,9,999999999,8,0.075,0,88,0,0,1 -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,3353,9,999999999,8,0.075,0,88,0,0,1 -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,1372,9,999999999,8,0.075,0,88,0,0,1 -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,8,0.075,0,88,0,0,1 -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,8,0.076,0,88,0,0,1 -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,-1,92,82000,0,0,286,0,0,0,0,0,0,0,10,3.1,10,10,3.2,30,9,999999999,8,0.076,0,88,0,0,1 -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,-1.1,91,82000,0,0,286,0,0,0,0,0,0,0,340,4.6,10,10,3.6,30,9,999999999,9,0.076,0,88,0,0,1 -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,-1.1,91,82100,0,0,286,0,0,0,0,0,0,0,340,8.2,10,10,2,30,9,999999999,9,0.076,0,88,0,0,1 -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.6,95,82300,0,0,286,0,0,0,0,0,0,0,340,7.2,10,10,0.4,30,9,999999999,9,0.076,0,88,0,0,1 -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,-1.1,91,82200,16,489,286,0,0,0,0,0,0,0,340,7.2,10,10,4,30,9,999999999,9,0.076,0,88,0,0,1 -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,-1.1,91,82300,224,1366,278,107,209,72,11612,5346,7843,2167,10,6.7,10,9,11.2,6096,9,999999999,9,0.076,0,88,0,0,1 -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,-1.1,91,82400,485,1366,278,241,178,178,26380,13454,19581,5824,360,3.6,10,9,14.4,6096,9,999999999,8,0.076,0,88,0,0,1 -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,36369,10915,29281,9648,10,4.1,8,5,16,77777,9,999999999,8,0.076,0,88,0,0,1 -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,86278,60744,24011,9377,20,8.2,7,5,16,77777,9,999999999,8,0.076,0,88,0,0,1 -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,88830,98413,12876,2769,10,4.6,8,5,16,77777,9,999999999,8,0.076,0,88,0,0,1 -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,94506,96741,15601,3615,10,4.1,8,5,16,77777,9,999999999,8,0.076,0,88,0,0,1 -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,95181,94384,19202,3917,10,4.6,8,5,16,77777,9,999999999,8,0.076,0,88,0,0,1 -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,88239,97172,12986,2814,350,2.6,7,5,16,77777,9,999999999,8,0.076,0,88,0,0,1 -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,74700,91833,13041,2229,320,3.6,8,5,16,77777,9,999999999,7,0.076,0,88,0,0,1 -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,62530,50456,13342,5193,0,0,7,5,16,77777,9,999999999,7,0.076,0,88,0,0,1 -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,39464,37119,8317,3032,180,2.1,8,5,16,77777,9,999999999,7,0.076,0,88,0,0,1 -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,15307,7919,5229,1664,110,5.2,7,5,16,77777,9,999999999,7,0.076,0,88,0,0,1 -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,-3.3,53,82900,21,580,280,0,0,0,0,0,0,0,120,4.1,8,5,16,77777,9,999999999,7,0.076,0,88,0,0,1 -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,77777,9,999999999,7,0.076,0,88,0,0,1 -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,77777,9,999999999,7,0.076,0,88,0,0,1 -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,77777,9,999999999,7,0.076,0,88,0,0,1 -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,77777,9,999999999,6,0.076,0,88,0,0,1 -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,77777,9,999999999,6,0.076,0,88,0,0,1 -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,77777,9,999999999,6,0.076,0,88,0,0,1 -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,77777,9,999999999,6,0.076,0,88,0,0,1 -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,77777,9,999999999,6,0.076,0,88,0,0,1 -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,77777,9,999999999,6,0.076,0,88,0,0,1 -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,77777,9,999999999,6,0.076,0,88,0,0,1 -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,-4.4,69,82800,18,535,259,0,0,0,0,0,0,0,270,3.1,6,5,16,77777,9,999999999,6,0.076,0,88,0,0,1 -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,14812,10161,7871,2207,250,3.6,6,5,16,77777,9,999999999,6,0.076,0,88,0,0,1 -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,39860,38371,9820,3512,360,3.6,6,5,16,77777,9,999999999,6,0.076,0,88,0,0,1 -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,68651,54896,10968,4317,270,3.6,2,2,16,77777,9,999999999,6,0.076,0,88,0,0,1 -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,-3.9,36,83400,920,1365,295,707,911,92,74391,91634,12920,2212,210,2.1,3,3,16,77777,9,999999999,6,0.076,0,88,0,0,1 -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,85555,92475,14523,2970,150,2.6,2,2,16,77777,9,999999999,6,0.076,0,88,0,0,1 -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,92834,93472,16704,3783,90,4.1,6,5,16,77777,9,999999999,6,0.076,0,88,0,0,1 -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,93962,93146,18439,3938,90,6.7,5,4,16,77777,9,999999999,6,0.076,0,88,0,0,1 -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,105863,63070,16945,7066,170,9.3,3,3,16,77777,9,999999999,6,0.076,0,88,0,0,1 -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,74824,91820,12633,2219,180,9.3,2,2,16,77777,9,999999999,6,0.076,0,88,0,0,1 -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,67771,53779,10654,4209,170,8.8,3,3,16,77777,9,999999999,6,0.076,0,88,0,0,1 -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,12,82600,502,1365,323,349,771,64,41703,39254,7666,2816,280,5.2,2,2,16,77777,9,999999999,6,0.076,0,88,0,0,1 -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,15662,7348,4501,1471,280,4.1,3,3,16,77777,9,999999999,6,0.076,0,88,0,0,1 -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,27,83100,23,603,310,0,0,0,0,0,0,0,290,2.6,6,5,16,77777,9,999999999,7,0.076,0,88,0,0,1 -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,77777,9,999999999,7,0.076,0,88,0,0,1 -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,77777,9,999999999,7,0.076,0,88,0,0,1 -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,-3.9,36,83100,0,0,283,0,0,0,0,0,0,0,210,5.2,0,0,16,77777,9,999999999,7,0.076,0,88,0,0,1 -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,77777,9,999999999,7,0.076,0,88,0,0,1 -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,77777,9,999999999,7,0.076,0,88,0,0,1 -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,77777,9,999999999,7,0.077,0,88,0,0,1 -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,77777,9,999999999,7,0.077,0,88,0,0,1 -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,77777,9,999999999,7,0.077,0,88,0,0,1 -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,77777,9,999999999,7,0.077,0,88,0,0,1 -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,77777,9,999999999,7,0.077,0,88,0,0,1 -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,77777,9,999999999,7,0.077,0,88,0,0,1 -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,16714,13088,7895,2245,150,2.1,0,0,16,77777,9,999999999,7,0.077,0,88,0,0,1 -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,43323,42297,9512,3427,110,5.2,0,0,16,77777,9,999999999,7,0.077,0,88,0,0,1 -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,67639,54357,11551,4542,100,7.2,4,3,16,77777,9,999999999,7,0.077,0,88,0,0,1 -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,73296,88327,14222,2293,100,6.2,4,2,16,77777,9,999999999,7,0.077,0,88,0,0,1 -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,19,83200,1061,1364,330,818,881,131,101785,59611,16364,6836,120,8.8,4,3,16,77777,9,999999999,7,0.077,0,88,0,0,1 -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,95137,96742,15319,3687,110,9.8,4,2,16,77777,9,999999999,7,0.077,0,88,0,0,1 -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,94227,97031,13552,3454,140,10.3,4,3,16,77777,9,999999999,7,0.077,0,88,0,0,1 -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,87657,95366,13221,2895,140,12.9,9,5,16,77777,9,999999999,7,0.077,0,88,0,0,1 -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,77539,96198,11430,2138,130,11.8,9,5,16,77777,9,999999999,7,0.077,0,88,0,0,1 -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,-7.8,13,83100,740,1364,339,561,871,87,68559,54289,10663,4217,150,13.4,9,5,16,77777,9,999999999,7,0.077,0,88,0,0,1 -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,42378,39597,7559,2785,140,14.9,9,5,16,77777,9,999999999,7,0.077,0,88,0,0,1 -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,16374,7801,4507,1479,130,14.4,9,5,14.4,77777,9,999999999,7,0.077,0,88,0,0,1 -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,6096,9,999999999,7,0.077,0,88,0,0,1 -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,6096,9,999999999,7,0.077,0,88,0,0,1 -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,6096,9,999999999,7,0.077,0,88,0,0,1 -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.6,47,82000,0,0,321,0,0,0,0,0,0,0,160,9.8,10,9,16,6096,9,999999999,7,0.077,0,88,0,0,1 -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,77777,9,999999999,7,0.077,0,88,0,0,1 -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,6096,9,999999999,7,0.077,0,88,0,0,1 -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,-3,34,81700,0,0,309,0,0,0,0,0,0,0,240,7.7,9,5,16.1,77777,9,999999999,7,0.077,0,88,0,0,1 -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,77777,9,999999999,7,0.077,0,88,0,0,1 -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,2591,9,999999999,7,0.077,0,88,0,0,1 -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,1981,9,999999999,7,0.077,0,88,0,0,1 -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,1494,9,999999999,7,0.077,0,88,0,0,1 -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,26,81600,24,602,296,0,0,0,0,0,0,0,280,11.3,10,9,16,2591,9,999999999,7,0.077,0,88,0,0,1 -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,26,81700,244,1363,298,140,182,108,14834,8551,11497,2698,280,9.8,10,9,16,3962,9,999999999,7,0.077,0,88,0,0,1 -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,24,81800,504,1363,303,87,0,87,8755,0,8824,3652,300,15.5,10,9,16,4267,9,999999999,7,0.077,0,88,0,0,1 -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,-9.4,22,82000,738,1363,311,464,399,248,52254,35140,28080,9546,280,16,10,9,16,6096,9,999999999,7,0.077,0,88,0,0,1 -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,84553,58154,20570,8238,300,15.5,9,5,14.4,77777,9,999999999,7,0.077,0,88,0,0,1 -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,87527,91714,17280,3230,300,12.9,9,5,16,77777,9,999999999,7,0.077,0,88,0,0,1 -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,95372,96455,15671,3785,330,10.8,9,5,16,77777,9,999999999,7,0.077,0,88,0,0,1 -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,93291,95050,14292,3610,320,9.3,4,2,16,77777,9,999999999,7,0.077,0,88,0,0,1 -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,86762,93398,13847,2993,300,10.8,4,3,16,77777,9,999999999,7,0.077,0,88,0,0,1 -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,74776,90662,13011,2272,300,7.7,4,2,16,77777,9,999999999,7,0.077,0,88,0,0,1 -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,63307,50516,13596,5308,350,4.1,4,3,16,77777,9,999999999,7,0.077,0,88,0,0,1 -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,39407,37052,9110,3317,330,5.2,4,2,16,77777,9,999999999,7,0.077,0,88,0,0,1 -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,16221,9404,5153,1667,350,4.6,4,3,16,77777,9,999999999,6,0.077,0,88,0,0,1 -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,77777,9,999999999,6,0.077,0,88,0,0,1 -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,67,82800,0,0,269,0,0,0,0,0,0,0,80,3.1,0,0,16,77777,9,999999999,6,0.077,0,88,0,0,1 -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,77777,9,999999999,6,0.077,0,88,0,0,1 -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,77777,9,999999999,6,0.077,0,88,0,0,1 -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,77777,9,999999999,6,0.077,0,88,0,0,1 -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,77777,9,999999999,6,0.077,0,88,0,0,1 -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,77777,9,999999999,6,0.078,0,88,0,0,1 -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,77777,9,999999999,6,0.078,0,88,0,0,1 -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,77777,9,999999999,6,0.078,0,88,0,0,1 -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,-2.8,79,82200,0,0,246,0,0,0,0,0,0,0,170,4.6,0,0,16,77777,9,999999999,6,0.078,0,88,0,0,1 -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,77777,9,999999999,6,0.078,0,88,0,0,1 -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,77777,9,999999999,6,0.078,0,88,0,0,1 -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,67,82300,250,1362,269,167,476,80,18167,15339,8737,2457,150,8.2,0,0,16,77777,9,999999999,6,0.078,0,88,0,0,1 -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,43274,40773,9316,3389,180,11.3,0,0,16,77777,9,999999999,6,0.078,0,88,0,0,1 -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,69110,53804,11676,4612,170,11.8,3,3,16,77777,9,999999999,5,0.078,0,88,0,0,1 -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,77514,92872,14331,2343,140,11.8,2,2,16,77777,9,999999999,5,0.078,0,88,0,0,1 -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,88487,95250,13719,2997,140,12.9,3,3,16,77777,9,999999999,5,0.078,0,88,0,0,1 -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,114959,64077,18887,7856,160,14.9,7,5,16,77777,9,999999999,5,0.078,0,88,0,0,1 -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,102654,57717,31159,12358,180,12.4,10,9,16,3048,9,999999999,5,0.078,0,88,0,0,1 -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,48129,13613,33374,12943,220,9.3,10,10,16,3048,9,999999999,5,0.078,0,88,0,0,1 -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,-9.4,16,81800,937,1362,333,639,582,237,74715,47961,27856,10697,250,7.2,10,9,16,3962,9,999999999,5,0.078,0,88,0,0,1 -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,62439,50056,16590,6360,310,10.8,10,9,16,3962,9,999999999,5,0.078,0,88,0,0,1 -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,40654,40428,15422,5163,290,10.3,10,9,16,3962,9,999999999,5,0.078,0,88,0,0,1 -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,23,81800,255,1362,305,55,0,55,5418,0,5457,1951,270,12.4,10,9,16,3048,9,999999999,5,0.078,0,88,0,0,1 -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,2134,9,999999999,5,0.078,0,88,0,0,1 -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,2134,9,999999999,5,0.078,0,88,0,0,1 -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,5,0.078,0,88,0,0,1 -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,10,10,16,3048,9,999999999,5,0.078,0,88,0,0,1 -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,2743,9,999999999,5,0.078,0,88,0,0,1 -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,4572,9,999999999,5,0.078,0,88,0,0,1 -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,77777,9,999999999,5,0.079,0,88,0,0,1 -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,77777,9,999999999,4,0.079,0,88,0,0,1 -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,9,5,16,77777,9,999999999,4,0.079,0,88,0,0,1 -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,77777,9,999999999,4,0.079,0,88,0,0,1 -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,6706,9,999999999,4,0.079,0,88,0,0,1 -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,77777,9,999999999,4,0.079,0,88,0,0,1 -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,20,82100,257,1362,265,174,508,78,19069,17661,8580,2461,270,9.8,9,5,16,77777,9,999999999,4,0.079,0,88,0,0,1 -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,-14.4,20,82300,516,1362,284,381,662,129,43254,44357,14704,4991,270,9.8,10,9,16,6706,9,999999999,4,0.079,0,88,0,0,1 -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,50511,30215,30138,10086,270,9.8,10,9,16,7315,9,999999999,4,0.079,0,88,0,0,1 -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,82214,55540,21398,8557,290,8.8,10,9,16,7315,9,999999999,4,0.079,0,88,0,0,1 -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,94584,56271,26332,10610,300,11.3,10,9,16,6096,9,999999999,4,0.079,0,88,0,0,1 -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,115059,64488,19028,7906,310,10.8,10,9,16,6096,9,999999999,4,0.079,0,88,0,0,1 -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,94281,95447,14260,3701,320,12.9,10,9,16,6096,9,999999999,4,0.079,0,88,0,0,1 -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,89104,96281,13052,2957,320,8.2,10,9,16,6096,9,999999999,4,0.079,0,88,0,0,1 -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,87029,60123,22397,8912,340,9.8,10,9,16,6096,9,999999999,4,0.079,0,88,0,0,1 -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,33030,7684,27635,9546,360,8.8,9,5,16,77777,9,999999999,4,0.079,0,88,0,0,1 -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,40862,40340,15230,5133,10,11.3,9,5,16,77777,9,999999999,4,0.079,0,88,0,0,1 -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,17214,10213,4747,1565,10,9.8,9,5,16,77777,9,999999999,4,0.079,0,88,0,0,1 -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,77777,9,999999999,4,0.079,0,88,0,0,1 -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,77777,9,999999999,4,0.079,0,88,0,0,1 -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,4,2,16,77777,9,999999999,4,0.079,0,88,0,0,1 -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,77777,9,999999999,4,0.079,0,88,0,0,1 -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,77777,9,999999999,4,0.079,0,88,0,0,1 -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,77777,9,999999999,4,0.079,0,88,0,0,1 -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,77777,9,999999999,4,0.079,0,88,0,0,1 -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,77777,9,999999999,4,0.079,0,88,0,0,1 -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,77777,9,999999999,4,0.079,0,88,0,0,1 -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,77777,9,999999999,4,0.079,0,88,0,0,1 -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,77777,9,999999999,4,0.079,0,88,0,0,1 -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,75,83100,33,714,217,0,81,0,0,0,0,0,150,4.1,0,0,16,77777,9,999999999,5,0.079,0,88,0,0,1 -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,-6.7,57,83500,263,1361,242,171,504,74,18851,16408,8187,2420,130,4.6,0,0,16,77777,9,999999999,5,0.079,0,88,0,0,1 -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,41770,40049,10768,3879,110,5.2,2,2,16,77777,9,999999999,5,0.079,0,88,0,0,1 -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,64547,51814,17709,6759,100,4.6,3,3,16,77777,9,999999999,5,0.079,0,88,0,0,1 -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,91549,61191,16789,6873,120,5.2,2,2,16,77777,9,999999999,5,0.079,0,88,0,0,1 -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,90948,98129,12792,2952,130,6.2,3,3,16,77777,9,999999999,5,0.079,0,88,0,0,1 -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,98657,99045,15504,3932,100,6.2,9,5,16,77777,9,999999999,5,0.079,0,88,0,0,1 -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,97185,98773,13752,3665,60,3.1,9,5,16,77777,9,999999999,5,0.079,0,88,0,0,1 -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,15,84100,1079,1361,317,853,824,198,103294,62321,24093,9817,130,4.6,9,5,16,77777,9,999999999,5,0.079,0,88,0,0,1 -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,-11.1,14,84000,945,1361,331,571,369,314,65392,33949,36175,13068,160,6.2,10,9,16,7620,9,999999999,6,0.079,0,88,0,0,1 -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,15,84000,754,1361,335,568,742,155,66623,54454,18257,6935,150,6.7,10,9,16,7620,9,999999999,6,0.079,0,88,0,0,1 -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,42987,40459,8476,3123,150,7.2,9,5,16,77777,9,999999999,6,0.079,0,88,0,0,1 -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,17774,10682,4858,1604,150,6.2,10,9,16,7315,9,999999999,6,0.079,0,88,0,0,1 -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,7315,9,999999999,6,0.079,0,88,0,0,1 -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,6096,9,999999999,6,0.079,0,88,0,0,1 -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,6096,9,999999999,6,0.079,0,88,0,0,1 -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,6096,9,999999999,6,0.079,0,88,0,0,1 -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,77777,9,999999999,6,0.079,0,88,0,0,1 -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,77777,9,999999999,7,0.079,0,88,0,0,1 -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,77777,9,999999999,7,0.08,0,88,0,0,1 -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,77777,9,999999999,7,0.08,0,88,0,0,1 -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,77777,9,999999999,7,0.08,0,88,0,0,1 -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,77777,9,999999999,7,0.08,0,88,0,0,1 -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,77777,9,999999999,7,0.08,0,88,0,0,1 -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,77777,9,999999999,7,0.08,0,88,0,0,1 -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,-3.9,51,83700,270,1360,272,178,564,66,19848,16520,7383,2276,250,4.6,2,2,16,77777,9,999999999,7,0.08,0,88,0,0,1 -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,45575,43226,9472,3473,280,3.1,3,3,16,77777,9,999999999,7,0.08,0,88,0,0,1 -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,-4.4,34,83900,761,1360,292,581,876,90,71058,54657,11040,4394,320,2.1,2,2,16,77777,9,999999999,7,0.08,0,88,0,0,1 -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,76369,89113,15197,2443,0,0,3,3,16,77777,9,999999999,7,0.08,0,88,0,0,1 -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,89681,92630,17092,3407,30,1.5,6,5,16,77777,9,999999999,8,0.08,0,88,0,0,1 -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,117882,64553,19378,8051,50,4.1,6,5,16,77777,9,999999999,8,0.08,0,88,0,0,1 -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,-5,17,84100,1153,1360,343,918,959,103,96127,97139,13745,3709,60,6.2,6,5,16,77777,9,999999999,8,0.08,0,88,0,0,1 -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,17,84000,1083,1360,366,871,968,99,91343,97912,13424,3059,70,6.7,10,9,16,6096,9,999999999,8,0.08,0,88,0,0,1 -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,90541,61275,20289,8189,70,8.2,10,9,16,6096,9,999999999,8,0.08,0,88,0,0,1 -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,44253,22832,27650,9614,70,8.8,10,9,16,6096,9,999999999,8,0.08,0,88,0,0,1 -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,21302,5475,18151,5865,50,9.3,10,9,16,6096,9,999999999,8,0.08,0,88,0,0,1 -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,16974,13325,8904,2571,50,7.2,10,9,16,6096,9,999999999,8,0.08,0,88,0,0,1 -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,6096,9,999999999,8,0.08,0,88,0,0,1 -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,3353,9,999999999,8,0.08,0,88,0,0,1 -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,6096,9,999999999,8,0.08,0,88,0,0,1 -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,77777,9,999999999,8,0.08,0,88,0,0,1 -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,77777,9,999999999,8,0.08,0,88,0,0,1 -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,77777,9,999999999,8,0.08,0,88,0,0,1 -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,-2.2,58,83100,0,0,276,0,0,0,0,0,0,0,300,4.1,3,3,16,77777,9,999999999,8,0.08,0,88,0,0,1 -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,77777,9,999999999,8,0.08,0,88,0,0,1 -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,77777,9,999999999,9,0.08,0,88,0,0,1 -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,77777,9,999999999,9,0.08,0,88,0,0,1 -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,77777,9,999999999,9,0.08,0,88,0,0,1 -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,0,0,0,0,250,4.6,5,5,16,77777,9,999999999,9,0.08,0,88,0,0,1 -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,20448,17925,8319,2503,270,3.6,5,5,16,77777,9,999999999,9,0.08,0,88,0,0,1 -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,44880,42437,11110,4020,320,5.7,5,5,16,77777,9,999999999,9,0.08,0,88,0,0,1 -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,43,83400,766,1359,332,561,772,125,66926,51459,14968,5858,340,6.2,9,9,16,6096,9,999999999,9,0.08,0,88,0,0,1 -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,2.8,44,83500,955,1359,329,717,710,218,84420,54503,25799,10138,320,7.2,5,5,16,77777,9,999999999,10,0.08,0,88,0,0,1 -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,39314,5341,33268,12992,10,7.7,7,7,16,2438,9,999999999,10,0.08,0,88,0,0,1 -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,70286,22588,46161,16828,20,9.3,9,9,16,6096,9,999999999,10,0.08,0,88,0,0,1 -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,41,83500,1156,1359,368,798,563,318,93895,46589,37647,14486,40,8.8,9,9,16,1524,9,999999999,10,0.08,0,88,0,0,1 -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,62672,19888,42555,15635,20,5.7,9,9,16,1829,9,999999999,10,0.08,0,88,0,0,1 -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,31802,2361,29528,11323,40,4.6,9,9,16,1524,9,999999999,10,0.08,0,88,0,0,1 -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,10125,0,10214,4783,50,3.1,9,9,16,6096,9,999999999,11,0.08,0,88,0,0,1 -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,18090,4347,15100,5171,50,5.7,9,9,16,6096,9,999999999,11,0.08,0,88,0,0,1 -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,55,83200,271,1359,346,160,381,84,17448,13091,9196,2648,50,4.6,9,9,16,2896,9,999999999,11,0.08,0,88,0,0,1 -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,7.2,83,83000,37,759,312,2,112,2,0,0,0,0,120,5.2,5,5,16,77777,9,999999999,11,0.08,0,88,0,0,1 -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,11,0.08,0,88,0,0,1 -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,12,0.08,0,88,0,0,1 -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,762,9,999999999,12,0.08,0,88,0,0,1 -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,1006,9,999999999,12,0.08,0,88,0,0,1 -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,12,0.08,0,88,0,0,1 -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,1158,9,999999999,12,0.081,0,88,0,0,1 -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,12,0.081,0,88,0,0.3,1 -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,1524,9,999999999,13,0.081,0,88,0,0,1 -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,4,87,83000,0,0,317,0,0,0,0,0,0,0,340,9.3,10,10,12.9,300,9,999999999,13,0.081,0,88,0,0,1 -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,3.3,89,83100,0,0,312,0,0,0,0,0,0,0,340,10.3,10,10,16,396,9,999999999,13,0.081,0,88,0,0,1 -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,333,3414,353,72,360,8.8,10,10,16,244,9,999999999,13,0.081,0,88,0,0,1 -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,96,83100,282,1359,289,192,349,119,20454,18038,12737,3178,360,11.3,10,10,2.4,122,9,999999999,12,0.081,0,88,0,0,1 -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,100,83300,540,1359,287,163,38,148,18359,2622,16742,5631,360,9.8,10,10,0.4,61,9,999999999,12,0.081,0,88,0,0,1 -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,100,83400,771,1359,287,119,0,119,12221,0,12328,5636,360,10.3,10,10,0.4,61,9,999999999,12,0.081,0,88,0,0,1 -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.6,95,83500,960,1359,286,121,0,121,12623,0,12740,6197,10,10.3,10,10,0.4,61,9,999999999,12,0.081,0,88,0,0,1 -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.6,95,83800,1093,1359,286,210,6,206,25366,446,25007,10182,10,8.2,10,10,3.2,122,9,999999999,11,0.081,0,88,0,0,1 -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,-1,80,83600,1161,1359,286,315,12,305,37278,1001,36311,14066,20,11.8,9,9,16.1,660,9,999999999,11,0.081,0,88,0,0,1 -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,65535,17860,46859,17007,10,11.3,9,9,16,762,9,999999999,11,0.081,0,88,0,0,1 -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,27424,915,26355,10659,360,10.3,9,9,16,1128,9,999999999,11,0.081,0,88,0,0,1 -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,50257,14785,37579,13513,10,8.2,10,10,16,1158,9,999999999,10,0.081,0,88,0,0,1 -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,21777,459,21413,7975,30,7.7,9,9,16,1372,9,999999999,10,0.081,0,88,0,0,1 -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,18594,1653,17665,5806,20,7.2,10,10,16,1433,9,999999999,10,0.081,0,88,0,0,1 -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,4237,0,4268,1659,20,5.7,10,10,9.6,1036,9,999999999,9,0.081,0,88,0,0,1 -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,0,0,0,0,20,6.2,10,10,16,1676,9,999999999,9,0.081,0,88,0,0,1 -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,9,0.081,0,88,0,0,1 -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,1676,9,999999999,9,0.081,0,88,0,0,1 -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,1433,9,999999999,8,0.081,0,88,0,0,1 -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,8,0.081,0,88,0,0,1 -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,-2,92,83700,0,0,280,0,0,0,0,0,0,0,360,3.1,10,10,2,510,9,999999999,8,0.081,0,88,0,0,1 -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,7,0.081,0,88,0,0,1 -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,7,0.081,0,88,0,0,1 -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,7,0.081,0,88,0,0,1 -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,-4,100,83700,0,0,266,0,0,0,0,0,0,0,20,10.8,10,10,0.8,90,9,999999999,7,0.081,0,88,0,0,1 -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,6,0.081,0,88,0,0,1 -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,97,0,97,40,30,4.1,10,10,16,1524,9,999999999,6,0.081,0,88,0,0,1 -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,5334,0,5373,2022,20,3.6,9,9,16,1524,9,999999999,6,0.081,0,88,0,0,1 -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,9291,0,9366,3952,360,6.2,9,9,16,2743,9,999999999,6,0.081,0,88,0,0,1 -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,33335,3903,30805,10483,310,6.2,5,5,16,77777,9,999999999,6,0.081,0,88,0,0,1 -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,40047,3853,36825,13390,330,6.7,5,5,16,77777,9,999999999,6,0.081,0,88,0,0,1 -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,-11.7,37,84100,1097,1358,252,575,241,380,66406,22869,44171,16064,330,11.8,5,5,16,77777,9,999999999,6,0.081,0,88,0,0,1 -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,65142,15284,50005,17754,340,10.8,5,5,16,77777,9,999999999,5,0.081,0,88,0,0,1 -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,66189,17388,48697,17447,350,10.8,5,5,16,77777,9,999999999,5,0.081,0,88,0,0,1 -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,-11,36,83900,1093,1358,272,602,323,342,70060,29353,40049,14974,350,12.9,9,9,6.4,2400,9,999999999,5,0.081,0,88,0,0,1 -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,38,83900,958,1358,260,240,30,219,28342,2396,25993,10195,340,10.3,5,5,16,77777,9,999999999,5,0.081,0,88,0,0,1 -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,63261,47957,28154,9813,330,10.3,9,9,16,2591,9,999999999,5,0.081,0,88,0,0,1 -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,9994,0,10075,4165,340,12.9,7,7,16,2438,9,999999999,5,0.081,0,88,0,0,1 -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,7823,360,7624,2359,350,12.4,5,5,16,77777,9,999999999,5,0.081,0,88,0,0,1 -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,440,5158,352,72,350,8.2,9,9,16,2896,9,999999999,4,0.081,0,88,0,0,1 -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,3048,9,999999999,4,0.081,0,88,0,0,1 -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,2743,9,999999999,4,0.081,0,88,0,0,1 -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,2438,9,999999999,4,0.081,0,88,0,0,1 -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,2438,9,999999999,4,0.081,0,88,0,0,1 -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,77777,9,999999999,4,0.081,0,88,0,0,1 -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,77777,9,999999999,4,0.082,0,88,0,0,1 -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,77777,9,999999999,3,0.082,0,88,0,0,1 -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,2743,9,999999999,3,0.082,0,88,0,0,1 -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,2743,9,999999999,3,0.082,0,88,0,0,1 -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,-11.7,56,83800,0,0,234,0,0,0,0,0,0,0,280,3.1,5,5,16,77777,9,999999999,3,0.082,0,88,0,0,1 -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,-12.2,53,83500,51,871,234,6,149,2,663,6934,355,75,290,3.1,5,5,16,77777,9,999999999,3,0.082,0,88,0,0,1 -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,21925,20591,8080,2518,210,3.6,5,5,16,77777,9,999999999,3,0.082,0,88,0,0,1 -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,43698,41480,18280,6054,220,4.1,9,9,16,6096,9,999999999,3,0.082,0,88,0,0,1 -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,37700,9021,31577,10694,350,5.2,9,9,16,6096,9,999999999,3,0.082,0,88,0,0,1 -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,-11,36,83700,969,1357,279,589,358,333,67423,33469,38353,13804,330,10.8,10,10,14.5,1440,9,999999999,3,0.082,0,88,0,0,1 -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,36471,2042,34427,13359,340,7.2,10,10,16,2438,9,999999999,3,0.082,0,88,0,0,1 -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,22521,0,22742,10563,220,7.7,10,10,16,2134,9,999999999,3,0.082,0,88,0,0,1 -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,25924,0,26179,11851,230,4.6,10,10,16,2286,9,999999999,4,0.082,0,88,0,0,1 -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,14781,0,14924,7310,140,4.6,10,10,12.8,1463,9,999999999,4,0.082,0,88,0,0,1 -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,13156,0,13279,6430,30,7.7,10,10,0.8,183,9,999999999,4,0.082,0,88,0,0,1 -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,-3,92,83500,771,1357,275,99,0,99,10177,0,10266,4809,30,7.7,10,10,0.8,180,9,999999999,4,0.082,0,88,0,0,1 -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,9988,0,10068,4178,10,4.6,10,10,16,1494,9,999999999,4,0.082,0,88,0,0,1 -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,3454,0,3479,1408,350,11.8,9,9,8,1311,9,999999999,4,0.082,0,88,0,0,1 -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,545,4844,520,97,350,4.1,10,10,16,2438,9,999999999,4,0.082,0,88,0,0,1 -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,4,0.082,0,88,0,0,1 -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,1829,9,999999999,4,0.082,0,88,0,0,1 -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,2591,9,999999999,4,0.082,0,88,0,0,1 -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,77777,9,999999999,4,0.082,0,88,0,0,1 -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,77777,9,999999999,4,0.082,0,88,0,0,1 -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,77777,9,999999999,4,0.082,0,88,0,0,1 -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,77777,9,999999999,4,0.082,0,88,0,0,1 -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,77777,9,999999999,4,0.082,0,88,0,0,1 -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,77777,9,999999999,4,0.082,0,88,0,0,1 -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,77777,9,999999999,5,0.082,0,88,0,0,1 -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,760,5354,689,127,220,6.2,5,5,16,77777,9,999999999,5,0.082,0,88,0,0,1 -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,68,83700,300,1356,230,203,398,114,21900,21019,12353,3304,210,6.2,3,3,16,77777,9,999999999,5,0.082,0,88,0,0,1 -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,38886,33036,18402,6118,210,6.2,2,2,16,77777,9,999999999,5,0.082,0,88,0,0,1 -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,62038,46534,21086,7964,200,6.2,0,0,16,77777,9,999999999,5,0.082,0,88,0,0,1 -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,83720,53809,24173,9635,210,5.2,0,0,16,77777,9,999999999,5,0.082,0,88,0,0,1 -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,107610,62360,20203,8369,230,2.1,0,0,16,77777,9,999999999,5,0.082,0,88,0,0,1 -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,29,84100,1172,1356,260,946,956,118,98302,96486,15539,4292,220,3.1,0,0,16,77777,9,999999999,5,0.082,0,88,0,0,1 -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,98876,98742,13556,3914,240,2.1,3,3,16,77777,9,999999999,5,0.082,0,88,0,0,1 -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,93583,99006,13241,3180,270,2.6,5,5,16,77777,9,999999999,5,0.082,0,88,0,0,1 -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,80127,96381,10952,2212,290,2.6,5,5,16,77777,9,999999999,5,0.082,0,88,0,0,1 -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,72638,55201,10847,4339,320,4.1,5,5,16,77777,9,999999999,5,0.082,0,88,0,0,1 -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,46609,43123,8627,3210,270,1.5,5,5,16,77777,9,999999999,5,0.082,0,88,0,0,1 -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,30,84100,287,1356,303,172,607,44,19944,13835,5113,1714,220,4.1,5,5,16,77777,9,999999999,5,0.082,0,88,0,0,1 -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,548,6083,521,99,210,5.7,5,5,16,77777,9,999999999,5,0.082,0,88,0,0,1 -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,77777,9,999999999,5,0.082,0,88,0,0,1 -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,-3.9,51,83800,0,0,279,0,0,0,0,0,0,0,200,7.7,5,5,16,77777,9,999999999,5,0.082,0,88,0,0,1 -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,-3.9,51,83700,0,0,279,0,0,0,0,0,0,0,200,6.7,5,5,16,77777,9,999999999,5,0.082,0,88,0,0,1 -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,77777,9,999999999,5,0.082,0,88,0,0,1 -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,77777,9,999999999,5,0.082,0,88,0,0,1 -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,-3.9,51,83600,0,0,272,0,0,0,0,0,0,0,210,7.7,2,2,16,77777,9,999999999,5,0.083,0,88,0,0,1 -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,77777,9,999999999,5,0.083,0,88,0,0,1 -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,-4.4,48,83500,0,0,272,0,0,0,0,0,0,0,230,5.2,2,2,16,77777,9,999999999,5,0.083,0,88,0,0,1 -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,77777,9,999999999,5,0.083,0,88,0,0,1 -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,77777,9,999999999,5,0.083,0,88,0,0,1 -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,-3.9,51,83600,59,937,279,8,166,3,882,8277,526,106,240,5.7,5,5,16,77777,9,999999999,5,0.083,0,88,0,0,1 -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,21678,19145,7588,2437,260,7.2,7,7,16,7620,9,999999999,5,0.083,0,88,0,0,1 -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,48509,44912,9658,3596,270,8.2,9,9,16,7620,9,999999999,5,0.083,0,88,0,0,1 -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,72490,54830,13036,5198,290,9.3,9,9,16,7620,9,999999999,6,0.083,0,88,0,0,1 -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,78718,89041,15626,2612,310,8.2,9,9,16,7620,9,999999999,6,0.083,0,88,0,0,1 -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,91850,92564,17491,3726,300,6.7,9,9,16,7620,9,999999999,6,0.083,0,88,0,0,1 -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,116061,62645,22577,9290,290,5.2,9,9,16,7620,9,999999999,6,0.083,0,88,0,0,1 -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,98919,51259,36870,14251,290,6.2,9,9,16,7315,9,999999999,6,0.083,0,88,0,0,1 -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,73682,30080,43541,15951,290,4.1,9,9,16,7315,9,999999999,6,0.083,0,88,0,0,1 -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,78464,48790,28652,11098,320,4.6,9,9,16,7315,9,999999999,6,0.083,0,88,0,0,1 -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,-6.1,16,84200,778,1355,362,304,83,257,34396,7293,29238,10160,340,4.6,9,9,16,7315,9,999999999,7,0.083,0,88,0,0,1 -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,18799,2090,17526,5859,340,2.6,9,9,16,7315,9,999999999,7,0.083,0,88,0,0,1 -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,-3,25,84200,291,1355,351,173,396,88,18982,16048,9692,2838,330,11.3,9,9,16.1,7200,9,999999999,7,0.083,0,88,0,0,1 -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,761,7255,687,121,360,9.8,9,9,16,7315,9,999999999,7,0.083,0,88,0,0,1 -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,7315,9,999999999,7,0.083,0,88,0,0,1 -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,77777,9,999999999,7,0.083,0,88,0,0,1 -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,77777,9,999999999,8,0.083,0,88,0,0,1 -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,77777,9,999999999,8,0.083,0,88,0,0,1 -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,77777,9,999999999,8,0.083,0,88,0,0,1 -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,7620,9,999999999,8,0.083,0,88,0,0,1 -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,77777,9,999999999,8,0.083,0,88,0,0,1 -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,77777,9,999999999,8,0.083,0,88,0,0,1 -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,77777,9,999999999,9,0.083,0,88,0,0,1 -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,77777,9,999999999,9,0.083,0,88,0,0,1 -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,1216,10529,527,108,210,7.2,5,5,16,77777,9,999999999,9,0.083,0,88,0,0,1 -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,23608,20359,6862,2262,210,7.2,5,5,16,77777,9,999999999,9,0.083,0,88,0,0,1 -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,-1.1,33,84000,567,1355,325,421,807,83,49969,45501,9880,3685,230,4.6,5,5,16,77777,9,999999999,9,0.083,0,88,0,0,1 -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,19,84100,796,1355,335,603,844,107,73275,55137,13046,5211,300,3.6,5,5,16,77777,9,999999999,9,0.083,0,88,0,0,1 -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,89758,57293,19952,8142,290,1.5,9,9,16,7620,9,999999999,9,0.083,0,88,0,0,1 -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,18,83600,1112,1355,360,748,525,316,87794,45428,37314,14277,270,2.1,9,9,16,7620,9,999999999,9,0.083,0,88,0,0,1 -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,16,84100,1179,1355,369,527,126,417,61095,11955,48672,17527,260,7.2,9,9,16,7620,9,999999999,9,0.083,0,88,0,0,1 -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,102880,54229,35334,13776,340,4.1,9,9,16,7620,9,999999999,9,0.083,0,88,0,0,1 -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,14,84100,1105,1355,377,883,830,204,107075,62208,24860,10135,260,4.1,9,9,16,7620,9,999999999,9,0.083,0,88,0,0,1 -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,77092,47459,26145,10302,360,3.6,9,9,16,7620,9,999999999,9,0.083,0,88,0,0,1 -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,15,83900,781,1355,374,526,625,164,61705,46085,19323,7389,350,4.1,9,9,16,7620,9,999999999,9,0.083,0,88,0,0,1 -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,33792,24589,18885,6197,290,2.6,10,10,14.4,7620,9,999999999,9,0.083,0,88,0,0,1 -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,17185,12265,6505,2125,120,1.5,10,10,16,7620,9,999999999,9,0.083,0,88,0,0,1 -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,482,0,485,182,180,3.1,10,10,16,7620,9,999999999,9,0.083,0,88,0,0,1 -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,7620,9,999999999,9,0.083,0,88,0,0,1 -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,7620,9,999999999,9,0.083,0,88,0,0,1 -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,44,83200,0,0,330,0,0,0,0,0,0,0,150,2.1,9,9,16,7620,9,999999999,9,0.083,0,88,0,0,1 -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,7620,9,999999999,9,0.083,0,88,0,0,1 -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,52,83000,0,0,319,0,0,0,0,0,0,0,140,3.1,9,9,16,7620,9,999999999,9,0.083,0,88,0,0,1 -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,48,83100,0,0,325,0,0,0,0,0,0,0,250,3.1,10,9,16,7620,9,999999999,9,0.083,0,88,0,0,1 -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,56,83000,0,0,314,0,0,0,0,0,0,0,230,3.6,10,9,16,7620,9,999999999,9,0.083,0,88,0,0,1 -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,7620,9,999999999,9,0.083,0,88,0,0,1 -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,7620,9,999999999,9,0.083,0,88,0,0,1 -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,7620,9,999999999,9,0.083,0,88,0,0,1 -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,833,0,715,225,220,1.5,10,9,16,7620,9,999999999,9,0.083,0,88,0,0,1 -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,12143,1954,11204,3262,210,3.6,10,9,16,7620,9,999999999,9,0.083,0,88,0,0,1 -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,27162,8948,22062,7019,190,3.1,10,9,16,6096,9,999999999,9,0.083,0,88,0,0,1 -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,56188,33279,31432,10856,190,4.6,10,9,16,6096,9,999999999,9,0.083,0,88,0,0,1 -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,94834,60666,20629,8407,280,2.6,10,9,16,7620,9,999999999,9,0.083,0,88,0,0,1 -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,105209,60252,28825,11558,0,0,10,9,16,7620,9,999999999,9,0.083,0,88,0,0,1 -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,56344,8373,47485,17258,130,3.6,10,9,16,5486,9,999999999,9,0.083,0,88,0,0,1 -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,55356,7276,47786,17324,90,3.6,10,9,16,5486,9,999999999,9,0.083,0,88,0,0,1 -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,62919,18802,43888,16077,280,2.1,10,9,16,3353,9,999999999,9,0.083,0,88,0,0,1 -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,13693,0,13821,6687,290,3.6,10,9,16,5486,9,999999999,9,0.083,0,88,0,0,1 -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.6,25,83000,784,1354,369,149,0,149,15325,0,15460,6858,10,3.6,10,9,16,3353,9,999999999,9,0.083,0,88,0,0,1 -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,29,82500,554,1354,372,120,0,120,12104,0,12203,4917,90,5.7,10,10,16,5486,9,999999999,9,0.083,0,88,0,0,1 -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,4836,0,4872,1896,80,4.6,10,10,16,5486,9,999999999,9,0.083,0,88,0,0,1 -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,36,82800,54,914,355,10,168,5,1088,8090,853,143,360,3.1,10,10,16,3048,9,999999999,9,0.083,0,88,0,0,1 -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,2743,9,999999999,9,0.083,0,88,0,0,1 -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,3658,9,999999999,9,0.083,0,88,0,0,1 -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,2438,9,999999999,9,0.083,0,88,0,0,1 -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,2438,9,999999999,9,0.083,0,88,0,0,1 -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,4572,9,999999999,9,0.083,0,88,0,0,1 -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,3353,9,999999999,9,0.084,0,88,0,0,1 -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,77777,9,999999999,9,0.084,0,88,0,0,1 -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,3658,9,999999999,9,0.084,0,88,0,0,1 -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,77777,9,999999999,9,0.084,0,88,0,0,1 -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,77777,9,999999999,9,0.084,0,88,0,0,1 -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,2.8,86,82100,71,1026,286,0,0,0,0,0,0,0,150,3.1,6,5,16,77777,9,999999999,9,0.084,0,88,0,0,1 -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,25917,23291,7719,2523,130,4.1,10,9,16,7620,9,999999999,10,0.084,0,88,0,0,1 -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,50,82400,577,1353,322,427,806,82,50830,45333,9789,3673,90,3.6,10,9,16,7620,9,999999999,10,0.084,0,88,0,0,1 -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,67767,92374,13028,1893,60,4.6,6,5,16,77777,9,999999999,10,0.084,0,88,0,0,1 -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,82138,95569,11823,2410,90,4.6,10,9,16,7620,9,999999999,10,0.084,0,88,0,0,1 -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,109651,62475,24677,10079,30,5.2,10,9,16,7620,9,999999999,10,0.084,0,88,0,0,1 -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,90523,41864,41764,15738,20,3.6,10,9,16,7620,9,999999999,10,0.084,0,88,0,0,1 -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,-3.3,27,82400,1182,1353,341,756,503,315,89619,42427,37568,14492,360,4.6,10,9,16,6096,9,999999999,10,0.084,0,88,0,0,1 -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,81180,38317,40140,15091,40,3.6,10,9,16,6096,9,999999999,10,0.084,0,88,0,0,1 -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,26483,1391,25063,9962,90,5.2,10,9,16,3353,9,999999999,10,0.084,0,88,0,0,1 -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,-4,29,82300,787,1353,340,150,0,150,15446,0,15582,6909,110,5.7,10,10,16.1,2400,9,999999999,10,0.084,0,88,0,0,1 -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,21081,3866,18813,6226,90,5.7,10,10,16,2743,9,999999999,10,0.084,0,88,0,0,1 -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,3062,0,3085,1288,320,5.2,10,10,16,2286,9,999999999,10,0.084,0,88,0,0,1 -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,96,0,97,40,270,6.2,10,10,12.8,1128,9,999999999,10,0.084,0,88,0,0,1 -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,1189,9,999999999,10,0.084,0,88,0,0,1 -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,975,9,999999999,10,0.084,0,88,0,0,1 -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,10,0.084,0,88,0,0,1 -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,4.4,96,82200,0,0,313,0,0,0,0,0,0,0,30,4.1,10,10,12.8,213,9,999999999,10,0.084,0,88,0,0,1 -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,610,9,999999999,10,0.084,0,88,0,0,1 -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,11,0.084,0,88,0,0,1 -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,3,100,81900,0,0,303,0,0,0,0,0,0,0,120,3.6,10,10,8,120,9,999999999,11,0.084,0,88,0,0,1 -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,11,0.084,0,88,0,0,1 -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,100,81900,0,0,287,0,0,0,0,0,0,0,0,0,10,10,2.8,213,9,999999999,11,0.084,0,88,0,0,1 -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,100,82300,0,0,287,0,0,0,0,0,0,0,0,0,10,10,2.4,213,9,999999999,11,0.084,0,88,0,0,1 -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,100,82000,76,1071,287,0,0,0,0,0,0,0,310,2.1,10,10,0.8,152,9,999999999,11,0.084,0,88,0,0,1 -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.6,95,82100,329,1352,286,34,0,34,3365,0,3390,1430,290,2.1,10,10,0.8,91,9,999999999,11,0.084,0,88,0,0,1 -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,100,82200,582,1352,287,70,0,70,7078,0,7137,3212,330,1.5,10,10,0.4,91,9,999999999,11,0.084,0,88,0,0,1 -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,100,82100,809,1352,287,105,0,105,10821,0,10918,5161,330,1.5,10,10,0.4,90,9,999999999,11,0.084,0,88,0,0,1 -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,96,82300,994,1352,289,126,0,126,13184,0,13308,6504,310,2.6,10,10,0.6,61,9,999999999,11,0.084,0,88,0,0,1 -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,17021,0,17188,8304,350,4.1,10,10,0.8,122,9,999999999,11,0.084,0,88,0,0,1 -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,16154,0,16315,7946,290,4.6,10,10,2.4,122,9,999999999,11,0.084,0,88,0,0,1 -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,23372,0,23605,10927,290,4.1,10,10,4,61,9,999999999,11,0.084,0,88,0,0,1 -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,1,93,82500,1114,1352,296,222,0,222,23450,0,23679,10888,290,4.1,10,10,0.8,60,9,999999999,11,0.084,0,88,0,0,1 -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,26380,462,26039,10314,290,3.6,10,10,4.8,305,9,999999999,11,0.084,0,88,0,0,1 -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,9667,0,9753,4640,280,3.1,10,10,4.8,183,9,999999999,11,0.084,0,88,0,0,1 -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,6353,0,6405,2888,280,3.6,10,10,0.8,152,9,999999999,11,0.084,0,88,0,1,1 -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,3551,0,3578,1474,320,1.5,10,10,4,274,9,999999999,11,0.084,0,88,0,0,1 -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,2,93,83000,60,958,302,4,0,4,386,0,388,153,70,10.3,10,10,6.4,90,9,999999999,11,0.084,0,88,0,0,1 -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,11,0.084,0,88,0,0,1 -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,11,0.084,0,88,0,0,1 -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,122,9,999999999,11,0.084,0,88,0,0,1 -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,100,83500,0,0,287,0,0,0,0,0,0,0,70,1.5,10,10,3.2,122,9,999999999,11,0.084,0,88,0,0,1 -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,100,83400,0,0,287,0,0,0,0,0,0,0,320,1.5,10,10,1.6,152,9,999999999,11,0.084,0,88,0,0,1 -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.6,95,83500,0,0,286,0,0,0,0,0,0,0,0,0,10,10,1.6,152,9,999999999,11,0.085,0,88,0,0,1 -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.6,95,83400,0,0,286,0,0,0,0,0,0,0,20,2.6,10,10,1.6,274,9,999999999,11,0.085,0,88,0,0,1 -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,-1,92,83400,0,0,286,0,0,0,0,0,0,0,20,2.6,10,10,1.6,270,9,999999999,11,0.085,0,88,0,0,1 -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,11,0.085,0,88,0,0,1 -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,91,9,999999999,11,0.085,0,88,0,0,1 -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,-1,100,83500,80,1093,281,0,0,0,0,0,0,0,80,4.1,10,10,4.8,150,9,999999999,11,0.085,0,88,0,0,1 -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,7428,0,7484,2752,70,7.2,10,10,1.6,152,9,999999999,11,0.085,0,88,0,0,1 -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,7796,0,7860,3502,70,6.7,10,10,1.6,335,9,999999999,11,0.085,0,88,0,0,1 -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,10834,0,10930,5173,70,5.2,10,10,1.6,305,9,999999999,11,0.085,0,88,0,0,1 -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,13930,0,14061,6832,80,2.1,10,10,8,305,9,999999999,10,0.085,0,88,0,0,1 -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,15662,0,15815,7714,0,0,10,10,4,274,9,999999999,10,0.085,0,88,0,0,1 -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,-1.1,91,83900,1192,1352,286,182,0,182,19358,0,19551,9311,0,0,10,10,4.8,335,9,999999999,10,0.085,0,88,0,0,1 -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,-1.1,91,83900,1188,1352,286,208,0,208,22117,0,22337,10431,0,0,10,10,8,244,9,999999999,10,0.085,0,88,0,0,1 -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,-1.1,91,83800,1117,1352,286,292,12,283,34574,984,33703,13189,0,0,10,10,9.6,640,9,999999999,10,0.085,0,88,0,0,1 -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,-1,86,83800,982,1352,290,252,6,247,29564,485,29134,11331,0,0,10,10,16.1,1110,9,999999999,10,0.085,0,88,0,0,1 -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,15448,0,15585,6936,0,0,10,10,16,1067,9,999999999,10,0.085,0,88,0,0,1 -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,6867,0,6923,3097,0,0,10,10,6.4,396,9,999999999,10,0.085,0,88,0,0,1 -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,3161,0,3185,1334,0,0,10,10,4.8,335,9,999999999,10,0.085,0,88,0,0,1 -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,1514,9704,1182,179,0,0,10,10,4.8,274,9,999999999,10,0.085,0,88,0,0,1 -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,10,10,16,335,9,999999999,10,0.085,0,88,0,0,1 -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,10,10,11.2,305,9,999999999,10,0.085,0,88,0,0,1 -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,10,10,16,366,9,999999999,10,0.085,0,88,0,0,1 -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,610,9,999999999,10,0.085,0,88,0,0,1 -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,488,9,999999999,10,0.085,0,88,0,0,1 -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,1524,9,999999999,10,0.085,0,88,0,0,1 -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,77777,9,999999999,10,0.085,0,88,0,0,1 -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,77777,9,999999999,10,0.085,0,88,0,0,1 -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,77777,9,999999999,10,0.085,0,88,0,0,1 -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,77777,9,999999999,10,0.085,0,88,0,0,1 -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,77777,9,999999999,10,0.085,0,88,0,0,1 -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,-2.2,83,83700,339,1351,261,240,688,67,27382,25906,7667,2547,0,0,6,5,16,77777,9,999999999,10,0.085,0,88,0,0,1 -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,51605,48568,16739,5891,230,2.1,6,5,16,77777,9,999999999,11,0.085,0,88,0,0,1 -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,79,83800,818,1351,292,536,421,280,60605,37318,31842,11115,210,1.5,10,9,16,914,9,999999999,11,0.085,0,88,0,0,1 -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,52628,12450,41591,14880,180,3.1,10,9,16,610,9,999999999,11,0.085,0,88,0,0,1 -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,53578,8267,45080,16481,190,2.6,10,9,16,671,9,999999999,11,0.085,0,88,0,0,1 -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,87655,36801,45706,16863,230,4.1,10,9,16,792,9,999999999,11,0.085,0,88,0,0,1 -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,55946,7200,48381,17536,150,4.6,10,9,16,853,9,999999999,11,0.085,0,88,0,0,1 -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,49886,3889,46162,16715,160,5.2,10,10,16,792,9,999999999,12,0.085,0,88,0,0,1 -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,45173,6936,38896,14118,140,9.3,10,10,16,732,9,999999999,12,0.085,0,88,0,0,1 -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,23162,457,22809,8569,160,7.2,10,10,16,884,9,999999999,12,0.085,0,88,0,0,1 -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,8978,0,9052,3913,150,7.7,10,10,16,853,9,999999999,12,0.085,0,88,0,0,1 -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,3160,0,3183,1338,140,5.2,10,10,16,853,9,999999999,12,0.085,0,88,0,0,1 -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,2.2,82,83400,65,1002,311,10,83,7,1172,0,821,256,150,7.2,10,10,16,1280,9,999999999,12,0.085,0,88,0,0,1 -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,914,9,999999999,12,0.085,0,88,0,0,1 -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,2,87,83300,0,0,306,0,0,0,0,0,0,0,140,8.7,10,10,16.1,840,9,999999999,13,0.085,0,88,0,0,1 -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,853,9,999999999,13,0.085,0,88,0,0,1 -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,853,9,999999999,13,0.085,0,88,0,0,1 -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,884,9,999999999,13,0.085,0,88,0,0,1 -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,884,9,999999999,13,0.086,0,88,0,0,1 -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,13,0.086,0,88,0,0,1 -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,366,9,999999999,14,0.086,0,88,0,0,1 -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,1067,9,999999999,14,0.086,0,88,0,0,1 -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,914,9,999999999,14,0.086,0,88,0,0.3,1 -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,1,100,82600,89,1159,292,0,0,0,0,0,0,0,290,4.1,10,10,4,600,9,999999999,14,0.086,0,88,0,0,1 -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,96,82600,344,1350,289,156,187,109,17123,9665,12014,3571,270,4.1,10,10,3.2,61,9,999999999,14,0.086,0,88,0,0.8,1 -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,93,82600,597,1350,291,90,0,90,9113,0,9188,4030,270,4.1,10,10,2.4,60,9,999999999,13,0.086,0,88,0,0,1 -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,96,82600,822,1350,289,118,0,118,12175,0,12284,5753,290,2.1,10,10,5.6,122,9,999999999,13,0.086,0,88,0,0,1 -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,39459,4129,35504,13351,280,3.1,10,9,16,2134,9,999999999,13,0.086,0,88,0,0,1 -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,2.8,86,82700,1133,1350,311,648,289,405,74709,26831,47009,16979,310,2.1,10,10,16,396,9,999999999,13,0.086,0,88,0,0,1 -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,78819,27049,48738,17656,340,2.1,10,9,16,427,9,999999999,13,0.086,0,88,0,0,1 -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,62048,11231,50123,17973,40,3.1,10,10,16,610,9,999999999,13,0.086,0,88,0,0,1 -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,49952,4405,45641,16603,90,3.1,10,10,16,914,9,999999999,13,0.086,0,88,0,0,1 -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,61691,25430,37959,13906,90,2.6,10,9,16,1097,9,999999999,12,0.086,0,88,0,0,1 -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,10289,0,10381,4925,50,2.6,10,10,16,3048,9,999999999,12,0.086,0,88,0,0,1 -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,22372,4292,19668,6519,110,4.6,10,10,16,1036,9,999999999,12,0.086,0,88,0,0,1 -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,13576,5984,9972,3030,170,4.1,10,9,16,2743,9,999999999,12,0.086,0,88,0,0,1 -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,2.2,82,82600,68,1024,302,18,214,9,2076,0,1039,321,160,4.6,10,9,16,6096,9,999999999,12,0.086,0,88,0,0,1 -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,6096,9,999999999,12,0.086,0,88,0,0,1 -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,77777,9,999999999,12,0.086,0,88,0,0,1 -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,77777,9,999999999,11,0.086,0,88,0,0,1 -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,92,82600,0,0,267,0,0,0,0,0,0,0,180,4.1,10,5,16,77777,9,999999999,11,0.086,0,88,0,0,1 -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,77777,9,999999999,11,0.086,0,88,0,0,1 -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,77777,9,999999999,11,0.086,0,88,0,0,1 -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,-1.7,87,82200,0,0,262,0,0,0,0,0,0,0,160,3.1,5,5,16,77777,9,999999999,11,0.086,0,88,0,0,1 -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,77777,9,999999999,11,0.086,0,88,0,0,1 -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,-2.2,83,82100,0,0,261,0,0,0,0,0,0,0,170,2.1,5,5,16,77777,9,999999999,11,0.086,0,88,0,0,1 -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,7,7,16,3353,9,999999999,10,0.086,0,88,0,0,1 -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,2438,9,999999999,11,0.086,0,88,0,0,1 -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,27742,26655,8633,2837,190,1.5,9,9,16,2743,9,999999999,11,0.086,0,88,0,0,1 -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,3,76,82600,601,1349,312,416,660,121,48254,41956,14089,5153,290,5.7,9,9,16.1,5400,9,999999999,11,0.086,0,88,0,0,1 -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,75078,55325,23358,8875,300,4.1,9,9,9.6,2743,9,999999999,11,0.086,0,88,0,0,1 -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,29174,2277,26583,10601,10,4.1,9,9,8,6096,9,999999999,11,0.086,0,88,0,0,1 -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,70164,24162,43893,16217,20,5.2,9,9,12.8,2438,9,999999999,11,0.086,0,88,0,0,1 -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,113873,58972,31386,12516,360,3.6,9,9,16,2286,9,999999999,11,0.086,0,88,0,0,1 -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,94790,44021,40458,15413,30,2.6,9,9,16,945,9,999999999,11,0.086,0,88,0,0,1 -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,95123,50037,30161,12046,50,4.6,9,9,16,6096,9,999999999,11,0.086,0,88,0,0,1 -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,81248,48095,26510,10521,0,0,9,9,16,6096,9,999999999,11,0.086,0,88,0,0,1 -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,47066,21734,30151,10608,10,3.1,9,9,16,6096,9,999999999,11,0.086,0,88,0,0,1 -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,20117,2082,18743,6326,50,4.1,9,9,16,2896,9,999999999,11,0.086,0,88,0,0,1 -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,3160,0,3183,1346,60,2.1,9,9,16,2896,9,999999999,11,0.086,0,88,0,0,1 -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,3.9,66,83100,71,1046,326,11,64,8,1285,0,935,293,90,1.5,9,9,16,6096,9,999999999,11,0.086,0,88,0,0,1 -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,77777,9,999999999,11,0.086,0,88,0,0,1 -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,77777,9,999999999,11,0.086,0,88,0,0,1 -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,2.8,86,82800,0,0,286,0,0,0,0,0,0,0,170,4.6,5,5,16,77777,9,999999999,11,0.086,0,88,0,0,1 -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,77777,9,999999999,11,0.086,0,88,0,0,1 -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,77777,9,999999999,11,0.086,0,88,0,0,1 -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,77777,9,999999999,11,0.086,0,88,0,0,1 -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,77777,9,999999999,11,0.086,0,88,0,0,1 -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,77777,9,999999999,11,0.086,0,88,0,0,1 -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,77777,9,999999999,11,0.086,0,88,0,0,1 -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,6096,9,999999999,11,0.086,0,88,0,0,1 -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,6096,9,999999999,11,0.086,0,88,0,0,1 -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,16046,6976,12250,3677,250,2.6,9,9,16,6096,9,999999999,11,0.086,0,88,0,0,1 -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,18823,430,18566,6457,0,0,9,9,16,3658,9,999999999,12,0.086,0,88,0,0,1 -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,38439,8994,31361,11116,220,3.6,9,9,16,6096,9,999999999,12,0.086,0,88,0,0,1 -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,84707,49128,32740,12587,290,2.1,9,9,16,6706,9,999999999,12,0.086,0,88,0,0,1 -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,113620,62922,26543,10776,0,0,9,9,16,6706,9,999999999,12,0.086,0,88,0,0,1 -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,99512,47737,40079,15310,360,2.1,9,9,16,6706,9,999999999,12,0.086,0,88,0,0,1 -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,120474,62885,25622,10450,0,0,9,9,16,6706,9,999999999,12,0.086,0,88,0,0,1 -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,108162,60333,28967,11630,110,4.6,9,9,16,6096,9,999999999,12,0.086,0,88,0,0,1 -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,55190,18073,38330,14040,80,3.6,9,9,16,6706,9,999999999,12,0.086,0,88,0,0,1 -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,29100,1979,27651,9998,60,4.6,9,9,16,2896,9,999999999,12,0.086,0,88,0,0,1 -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,11707,0,11804,4891,40,3.6,9,9,16,2743,9,999999999,12,0.086,0,88,0,0,1 -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,48,83300,324,1349,357,92,28,85,10222,1121,9479,2958,50,3.6,9,9,16,6096,9,999999999,12,0.086,0,88,0,0,1 -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,965,0,971,357,60,4.6,9,9,16,6096,9,999999999,12,0.086,0,88,0,0,1 -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,6096,9,999999999,12,0.086,0,88,0,0,1 -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,6096,9,999999999,12,0.086,0,88,0,0,1 -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,6096,9,999999999,12,0.086,0,88,0,0,1 -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,6096,9,999999999,12,0.086,0,88,0,0,1 -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,6096,9,999999999,13,0.086,0,88,0,0,1 -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,6096,9,999999999,13,0.087,0,88,0,0,1 -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,7620,9,999999999,13,0.087,0,88,0,0,1 -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,93,82900,0,0,293,0,0,0,0,0,0,0,210,3.6,6,5,14.4,77777,9,999999999,13,0.087,0,88,0,0,1 -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,89,83000,0,0,313,0,0,0,0,0,0,0,180,3.4,9,9,14.4,6096,9,999999999,13,0.087,0,88,0,0,1 -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,13,0.087,0,88,0,0,1 -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,3.9,93,83000,103,1247,304,0,0,0,0,0,0,0,140,2.1,9,9,12.8,6096,9,999999999,13,0.087,0,88,0,0,1 -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,12448,1002,11945,3650,150,4.6,9,9,16,6096,9,999999999,13,0.087,0,88,0,0,1 -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,32907,14396,23948,7729,170,3.1,9,9,16,6096,9,999999999,13,0.087,0,88,0,0,1 -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,30511,2517,28496,10421,140,4.6,10,10,16,6096,9,999999999,14,0.087,0,88,0,0,1 -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,66033,24981,42974,15351,150,3.6,10,10,16,6096,9,999999999,14,0.087,0,88,0,0,1 -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,39225,2413,36383,14106,130,5.7,7,7,16,6096,9,999999999,14,0.087,0,88,0,0,1 -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,49351,2122,47109,17300,130,1.5,9,9,16,975,9,999999999,14,0.087,0,88,0,0,1 -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,48584,2595,45746,16938,130,6.7,10,10,16,6096,9,999999999,14,0.087,0,88,0,0,1 -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,30165,882,29127,11714,100,10.8,10,10,16,6096,9,999999999,14,0.087,0,88,0,0,1 -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,63517,28111,34737,13115,140,11.8,9,9,16,6096,9,999999999,15,0.087,0,88,0,0,1 -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,43873,16139,31195,10915,140,11.3,10,10,16,6096,9,999999999,15,0.087,0,88,0,0,1 -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,6850,0,6907,3129,170,7.2,10,10,16,1981,9,999999999,15,0.087,0,88,0,0,1 -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,7.2,83,83200,328,1348,339,32,0,32,3157,0,3181,1354,160,8.8,10,10,16,1524,9,999999999,15,0.087,0,88,0,0,1 -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,1631,0,1050,330,100,9.8,10,10,16,1341,9,999999999,15,0.087,0,88,0,0,1 -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,15,0.087,0,88,0,0,1 -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,16,0.087,0,88,0,0,1 -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,2438,9,999999999,16,0.087,0,88,0,8.1,1 -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,1981,9,999999999,16,0.087,0,88,0,0,1 -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,1676,9,999999999,16,0.087,0,88,0,0,1 -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,457,9,999999999,16,0.087,0,88,0,0,1 -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,457,9,999999999,16,0.087,0,88,0,0,1 -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,1829,9,999999999,17,0.087,0,88,0,0,1 -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,93,82900,0,0,319,0,0,0,0,0,0,0,120,6.2,10,10,16,1433,9,999999999,17,0.087,0,88,0,0,1 -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,1981,9,999999999,17,0.087,0,88,0,0,1 -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,4572,9,999999999,17,0.087,0,88,0,0,1 -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,89,83300,364,1347,321,152,106,124,16584,5928,13589,3980,100,5.7,10,10,16,640,9,999999999,17,0.087,0,88,0,0,1 -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,33491,14200,24893,7949,120,10.3,10,10,16,335,9,999999999,17,0.087,0,88,0,0,1 -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,30464,1485,29371,10681,140,9.3,10,10,16,396,9,999999999,17,0.087,0,88,0,0,1 -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,36518,1507,35220,13366,140,9.3,10,10,16,518,9,999999999,17,0.087,0,88,0,0,1 -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,28012,0,28291,12624,140,8.2,10,10,9.6,488,9,999999999,17,0.087,0,88,0,0,1 -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,25296,415,24807,10165,130,11.3,10,10,16,549,9,999999999,17,0.087,0,88,0,0,1 -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,6.7,80,83500,1204,1347,339,369,18,353,43390,1512,41778,15834,130,10.3,10,10,16,579,9,999999999,17,0.087,0,88,0,0,1 -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,35238,948,34257,13421,140,10.8,10,10,16,640,9,999999999,17,0.087,0,88,0,0,1 -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,13157,0,13282,6520,110,8.2,9,9,14.4,1250,9,999999999,17,0.087,0,88,0,0,1 -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,29191,1924,27630,10048,110,9.8,10,10,16,427,9,999999999,17,0.087,0,88,0,0,1 -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,12207,0,12308,5083,120,10.8,10,10,16,366,9,999999999,17,0.087,0,88,0,0,1 -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,12269,3114,10319,3173,120,13.4,9,9,16,366,9,999999999,17,0.087,0,88,0,0,1 -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,386,0,389,159,130,10.3,10,10,16,244,9,999999999,17,0.087,0,88,0,0,1 -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,17,0.087,0,88,0,0,1 -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,17,0.087,0,88,0,0,1 -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,17,0.087,0,88,0,0,1 -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,17,0.087,0,88,0,0,1 -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,792,9,999999999,17,0.087,0,88,0,0,1 -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,671,9,999999999,17,0.088,0,88,0,0,1 -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,732,9,999999999,17,0.088,0,88,0,0,1 -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,17,0.088,0,88,0,0,1 -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,274,9,999999999,17,0.088,0,88,0,0,1 -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,17,0.088,0,88,0,0,1 -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,213,9,999999999,17,0.088,0,88,0,0,1 -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,5550,0,5592,2278,140,7.7,10,10,8,610,9,999999999,17,0.088,0,88,0,0,1 -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,7699,0,7763,3531,150,7.2,10,10,6.4,610,9,999999999,17,0.088,0,88,0,0,1 -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,89,83600,841,1347,321,111,0,111,11453,0,11557,5507,140,9.3,10,10,9.6,762,9,999999999,17,0.088,0,88,0,0,1 -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,6,93,83600,1022,1347,324,132,0,132,13819,0,13951,6842,130,6.7,10,10,16.1,1140,9,999999999,17,0.088,0,88,0,0,1 -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,16283,0,16445,8012,120,7.7,10,10,8,457,9,999999999,17,0.088,0,88,0,0,1 -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,18067,0,18250,8796,150,4.6,10,10,2.4,518,9,999999999,16,0.088,0,88,0,4.3,1 -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,16471,0,16637,8103,220,5.7,10,10,2.4,610,9,999999999,16,0.088,0,88,0,0,1 -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,6,93,83400,1135,1347,324,146,0,146,15425,0,15578,7631,220,5.7,10,10,2.4,600,9,999999999,16,0.088,0,88,0,4.6,1 -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,4,100,83400,1001,1347,308,126,0,126,13178,0,13303,6526,280,4.6,10,10,3.2,540,9,999999999,16,0.088,0,88,0,4.1,1 -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,4.4,96,83400,814,1347,313,100,0,100,10297,0,10389,4960,300,3.6,10,10,3.2,518,9,999999999,16,0.088,0,88,0,0,1 -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,4.4,96,83400,586,1347,313,69,0,69,6970,0,7028,3183,340,3.1,10,10,1.6,427,9,999999999,16,0.088,0,88,0,0,1 -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,96,83300,335,1347,316,37,0,37,3657,0,3684,1549,310,5.2,10,10,0.4,213,9,999999999,16,0.088,0,88,0,0,1 -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,5,93,83200,84,1133,318,18,81,13,2054,0,1485,457,310,5.1,10,10,5.2,210,9,999999999,16,0.088,0,88,0,0,1 -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,4.4,96,83400,0,0,313,0,0,0,0,0,0,0,270,4.1,10,10,11.2,122,9,999999999,15,0.088,0,88,0,0,1 -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,15,0.088,0,88,0,0,1 -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,97,83400,0,0,298,0,0,0,0,0,0,0,0,2,9,9,11.2,427,9,999999999,15,0.088,0,88,0,0,1 -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,15,0.088,0,88,0,0,1 -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,15,0.088,0,88,0,0,1 -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,77777,9,999999999,5,0.089,0,88,0,0,1 -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,77777,9,999999999,5,0.089,0,88,0,0,1 -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,77777,9,999999999,5,0.089,0,88,0,0,1 -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,-2.2,83,83700,0,0,246,0,0,0,0,0,0,0,260,1.5,0,0,32,77777,9,999999999,4,0.089,0,88,0,0,1 -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,77777,9,999999999,4,0.089,0,88,0,0,1 -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,5676,0,2388,734,200,2.1,0,0,96,77777,9,999999999,4,0.089,0,88,0,0,1 -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,28416,23828,5143,1824,0,0,0,0,96,77777,9,999999999,5,0.089,0,88,0,0,1 -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,48514,83197,9311,1409,310,2.1,0,0,96,77777,9,999999999,5,0.089,0,88,0,0,1 -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,69808,93022,11040,1915,230,2.1,0,0,96,77777,9,999999999,5,0.089,0,88,0,0,1 -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,-1.1,45,83600,1025,1346,286,825,966,89,87122,97959,12255,2644,310,1.5,0,0,96,77777,9,999999999,5,0.089,0,88,0,0,1 -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,99287,100638,12846,3663,20,3.1,0,0,96,77777,9,999999999,5,0.089,0,88,0,0,1 -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,105333,101696,13057,4580,50,3.1,0,0,80,77777,9,999999999,5,0.089,0,88,0,0,1 -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,104745,101532,13069,4499,100,3.6,0,0,80,77777,9,999999999,5,0.089,0,88,0,0,1 -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,28,83200,1137,1346,331,885,938,93,93409,95479,12502,3454,70,4.1,1,1,96,77777,9,999999999,6,0.089,0,88,0,0,1 -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,72824,41178,22046,8976,120,5.7,5,3,96,77777,9,999999999,6,0.089,0,88,0,0,1 -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,70633,51762,17130,6764,100,4.6,7,4,96,77777,9,999999999,6,0.089,0,88,0,0,1 -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,42454,36275,15899,5649,130,2.1,8,4,96,77777,9,999999999,6,0.089,0,88,0,0,1 -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,15942,3197,14501,3896,140,2.1,9,7,96,7620,9,999999999,6,0.089,0,88,0,0,1 -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,2132,0,1912,569,190,3.1,9,6,80,7620,9,999999999,6,0.089,0,88,0,0,1 -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,77777,9,999999999,6,0.089,0,88,0,0,1 -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,77777,9,999999999,7,0.089,0,88,0,0,1 -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,77777,9,999999999,7,0.089,0,88,0,0,1 -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,77777,9,999999999,7,0.089,0,88,0,0,1 -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,77777,9,999999999,7,0.089,0,88,0,0,1 -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,32,77777,9,999999999,7,0.089,0,88,0,0,1 -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,77777,9,999999999,7,0.089,0,88,0,0,1 -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,77777,9,999999999,7,0.089,0,88,0,0,1 -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,77777,9,999999999,8,0.089,0,88,0,0,1 -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,77777,9,999999999,8,0.089,0,88,0,0,1 -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,5021,0,3020,897,340,4.6,0,0,96,77777,9,999999999,8,0.089,0,88,0,0,1 -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,25865,22940,7008,2433,350,5.2,0,0,80,77777,9,999999999,8,0.089,0,88,0,0,1 -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,52292,44421,10344,3954,340,5.2,0,0,64,77777,9,999999999,8,0.089,0,88,0,0,1 -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,78279,54389,13275,5393,360,4.6,0,0,64,77777,9,999999999,8,0.089,0,88,0,0,1 -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,95618,55897,16081,6716,350,6.2,1,1,64,77777,9,999999999,8,0.089,0,88,0,0,1 -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,95387,92456,17313,4419,340,5.2,1,1,64,77777,9,999999999,8,0.089,0,88,0,0,1 -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,119526,61709,26960,10942,30,5.2,3,3,64,77777,9,999999999,8,0.089,0,88,0,0,1 -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,112325,57841,34281,13494,320,4.1,6,5,64,6706,9,999999999,8,0.089,0,88,0,0,1 -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,84669,40842,35378,13762,340,6.2,8,6,32,6706,9,999999999,8,0.089,0,88,0,0,1 -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,69861,35805,32961,12628,350,6.2,7,5,16,6706,9,999999999,8,0.089,0,88,0,0,1 -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,52634,31003,25407,9460,330,8.2,6,6,24,6706,9,999999999,8,0.089,0,88,0,0,1 -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,41370,34152,16641,5876,330,5.2,6,6,24,1280,9,999999999,8,0.089,0,88,0,0,1 -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,12873,7339,6394,2186,350,7.2,5,5,24,77777,9,999999999,8,0.089,0,88,0,0,1 -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,2746,0,2533,713,350,5.2,7,7,24,1372,9,999999999,8,0.089,0,88,0,0,1 -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,1067,9,999999999,8,0.089,0,88,0,0,1 -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,975,9,999999999,8,0.089,0,88,0,0,1 -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,-2.2,58,83100,0,0,306,0,0,0,0,0,0,0,20,5.2,10,10,32,1036,9,999999999,8,0.089,0,88,0,0,1 -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,671,9,999999999,8,0.089,0,88,0,0,1 -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,671,9,999999999,8,0.089,0,88,0,0,1 -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,640,9,999999999,8,0.089,0,88,0,0,1 -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,77777,9,999999999,8,0.089,0,88,0,0,1 -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,77777,9,999999999,8,0.089,0,88,0,0,1 -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,77777,9,999999999,8,0.089,0,88,0,0,1 -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,77777,9,999999999,8,0.089,0,88,0,0,1 -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,5007,0,3235,956,120,2.1,0,0,32,77777,9,999999999,8,0.089,0,88,0,0,1 -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,25259,22135,7552,2609,100,2.1,0,0,16,77777,9,999999999,8,0.089,0,88,0,0,1 -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.6,67,83000,630,1344,272,410,645,108,48340,40532,12777,4808,80,3.1,1,1,19.2,77777,9,999999999,8,0.089,0,88,0,0,1 -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,60,83000,852,1344,276,634,812,120,77081,53579,14642,5926,100,2.6,0,0,19.2,77777,9,999999999,8,0.089,0,88,0,0,1 -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,93449,53955,16776,6999,10,2.1,1,1,19.2,77777,9,999999999,8,0.089,0,88,0,0,1 -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,99121,51258,25488,10395,360,3.6,3,3,24,77777,9,999999999,8,0.089,0,88,0,0,1 -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,61996,14239,45150,16795,80,6.2,7,7,19.2,6706,9,999999999,8,0.089,0,88,0,0,1 -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,36,82700,1213,1344,345,421,84,346,49773,7186,41166,15654,80,6.7,9,9,24,3048,9,999999999,8,0.089,0,88,0,0,1 -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,51650,11467,38473,14710,90,7.7,9,7,24,7620,9,999999999,8,0.089,0,88,0,0,1 -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.6,34,82600,1008,1344,337,559,225,390,63546,21697,44628,15653,90,6.2,9,8,24,3353,9,999999999,9,0.089,0,88,0,0,1 -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,21780,0,21975,9226,90,6.7,10,10,24,3353,9,999999999,9,0.089,0,88,0,0,1 -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,36,82700,595,1344,345,154,63,126,17807,4124,14626,5302,60,5.2,9,9,24,3353,9,999999999,9,0.089,0,88,0,0,1 -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,40,82800,345,1344,337,109,34,100,12056,1658,11103,3402,60,5.2,9,9,32,3353,9,999999999,9,0.089,0,88,0,0,1 -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,43,82800,93,1199,332,20,0,20,1938,0,1951,657,90,3.1,9,9,32,3353,9,999999999,9,0.089,0,88,0,0,1 -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,50,83000,0,0,331,0,0,0,0,0,0,0,20,7.2,10,10,24,3353,9,999999999,9,0.089,0,88,0,0,1 -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,2438,9,999999999,9,0.089,0,88,0,0,1 -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,610,9,999999999,9,0.089,0,88,0,0.3,1 -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,2.8,86,83400,0,0,311,0,0,0,0,0,0,0,350,5.2,10,10,16,732,9,999999999,9,0.089,0,88,0,0,1 -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,3.3,89,83400,0,0,312,0,0,0,0,0,0,0,360,4.1,10,10,11.2,366,9,999999999,9,0.089,0,88,0,0,1 -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,305,9,999999999,9,0.089,0,88,0,0,1 -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,2.8,86,83400,0,0,311,0,0,0,0,0,0,0,60,3.6,10,10,16,244,9,999999999,9,0.089,0,88,0,0,1 -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,213,9,999999999,9,0.089,0,88,0,0,1 -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,10,0.089,0,88,0,0,1 -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,10,0.089,0,88,0,0,1 -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,1457,0,1467,570,350,2.1,10,10,19.2,244,9,999999999,10,0.089,0,88,0,0,1 -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,2.8,86,83500,386,1344,311,60,0,60,5963,0,6008,2453,40,2.6,10,10,19.2,274,9,999999999,9,0.089,0,88,0,0,1 -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,3.3,89,83500,634,1344,312,111,0,111,11265,0,11360,4931,20,2.6,10,10,19.2,244,9,999999999,9,0.089,0,88,0,0,1 -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,16338,0,16487,7500,40,2.1,10,10,19.2,274,9,999999999,9,0.089,0,88,0,0,1 -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,20460,0,20657,9609,10,2.1,10,10,24,396,9,999999999,9,0.089,0,88,0,0,1 -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,27882,0,28159,12588,70,3.1,10,10,32,518,9,999999999,9,0.089,0,88,0,0,1 -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,29614,0,29914,13296,100,4.6,10,10,32,610,9,999999999,9,0.089,0,88,0,0.3,1 -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,29501,0,29798,13247,80,6.2,10,10,24,762,9,999999999,9,0.089,0,88,0,1,1 -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,2.8,86,83600,1143,1344,311,259,0,259,27424,0,27695,12402,90,5.2,10,10,11.2,732,9,999999999,9,0.089,0,88,0,0.8,1 -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,23780,0,24006,10774,60,6.2,10,10,16,549,9,999999999,9,0.089,0,88,0,0,1 -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,18668,0,18836,8226,50,4.1,10,10,24,1372,9,999999999,9,0.089,0,88,0,0.5,1 -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,10524,0,10612,4560,60,3.1,10,10,16,244,9,999999999,9,0.089,0,88,0,0.5,1 -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,5250,0,5290,2135,20,2.6,10,10,16,244,9,999999999,9,0.089,0,88,0,0.5,1 -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,1065,0,1072,410,360,3.1,10,10,8,335,9,999999999,8,0.089,0,88,0,0,1 -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,335,9,999999999,8,0.089,0,88,0,0.5,1 -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,8,0.089,0,88,0,0,1 -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,8,0.089,0,88,0,1.8,1 -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,8,0.089,0,88,0,0.8,1 -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,8,0.089,0,88,0,0.3,1 -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,8,0.089,0,88,0,0.3,1 -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,396,9,999999999,8,0.089,0,88,0,0,1 -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,10,10,11.2,1006,9,999999999,8,0.089,0,88,0,0,1 -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,10,10,11.2,1097,9,999999999,8,0.089,0,88,0,0,1 -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,10,10,8,975,9,999999999,8,0.089,0,88,0,0,1 -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,1945,0,1958,733,190,1.5,10,10,8,488,9,999999999,8,0.089,0,88,0,0,1 -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,7464,0,7522,2950,100,3.1,10,10,16,457,9,999999999,8,0.089,0,88,0,0,1 -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,39446,7598,35902,9615,130,1.5,10,9,19.2,853,9,999999999,8,0.089,0,88,0,0,1 -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,57215,31133,30494,11117,250,2.1,9,9,48,610,9,999999999,8,0.089,0,88,0,0,1 -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,82641,46494,26851,10768,330,2.1,7,7,64,853,9,999999999,8,0.089,0,88,0,0,1 -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,105184,54701,22425,9242,20,3.1,4,4,80,77777,9,999999999,8,0.089,0,88,0,0,1 -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,97121,89888,16091,5594,330,2.6,2,2,96,77777,9,999999999,8,0.089,0,88,0,0,1 -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,102875,93779,19499,6141,20,3.1,3,3,96,77777,9,999999999,8,0.089,0,88,0,0,1 -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,93877,92755,15481,4083,40,3.6,2,2,80,77777,9,999999999,8,0.089,0,88,0,0,1 -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,38,84000,1012,1343,316,717,772,135,88533,51791,16735,6966,40,4.6,3,3,80,77777,9,999999999,8,0.089,0,88,0,0,1 -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,72623,51461,14699,5904,360,2.6,1,1,80,77777,9,999999999,8,0.089,0,88,0,0,1 -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,43297,76278,8194,1316,350,2.6,1,1,80,77777,9,999999999,8,0.089,0,88,0,0,1 -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,23365,19712,6525,2242,80,2.1,1,1,80,77777,9,999999999,8,0.089,0,88,0,0,1 -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,44,84000,100,1242,294,41,293,17,4661,0,1936,594,90,3.1,1,0,80,77777,9,999999999,8,0.089,0,88,0,0,1 -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,52,84000,0,0,290,0,0,0,0,0,0,0,110,2.6,1,1,80,77777,9,999999999,8,0.089,0,88,0,0,1 -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,52,84100,0,0,284,0,0,0,0,0,0,0,120,1.5,3,0,32,77777,9,999999999,8,0.089,0,88,0,0,1 -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,56,84100,0,0,285,0,0,0,0,0,0,0,160,4.1,2,1,32,77777,9,999999999,8,0.089,0,88,0,0,1 -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,77777,9,999999999,8,0.089,0,88,0,0,1 -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,77777,9,999999999,8,0.089,0,88,0,0,1 -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,62,83900,0,0,288,0,0,0,0,0,0,0,200,4.1,5,4,32,77777,9,999999999,8,0.089,0,88,0,0,1 -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,77777,9,999999999,8,0.089,0,88,0,0,1 -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,77777,9,999999999,8,0.089,0,88,0,0,1 -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,67,83800,0,0,275,0,0,0,0,0,0,0,210,2.1,8,1,32,77777,9,999999999,8,0.089,0,88,0,0,1 -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,73,83900,1,123,274,0,2,0,0,0,0,0,320,2.1,7,2,64,77777,9,999999999,8,0.089,0,88,0,0,1 -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,5245,0,3468,1040,190,2.1,5,1,96,77777,9,999999999,8,0.089,0,88,0,0,1 -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,25963,22685,8216,2837,180,2.6,2,1,96,77777,9,999999999,8,0.089,0,88,0,0,1 -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,50597,41150,10703,4112,90,1,4,1,96,77777,9,999999999,8,0.089,0,88,0,0,1 -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,65729,43321,21458,8405,0,0,7,2,96,77777,9,999999999,8,0.089,0,88,0,0,1 -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,92414,55078,28660,11383,190,2.1,9,4,96,77777,9,999999999,9,0.089,0,88,0,0,1 -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,98572,51091,27245,11029,140,3.1,7,2,96,77777,9,999999999,9,0.089,0,88,0,0,1 -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,115939,58998,26446,10747,40,1.5,6,3,80,77777,9,999999999,9,0.089,0,88,0,0,1 -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,-2.8,21,83500,1219,1342,353,691,355,368,81447,31300,43658,16383,120,4.1,7,7,96,3962,9,999999999,9,0.089,0,88,0,0,1 -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,-4.4,18,83400,1148,1342,364,642,105,551,72569,11425,62754,20118,130,3.6,10,9,96,3962,9,999999999,9,0.089,0,88,0,0,1 -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,-3.3,20,83400,1015,1342,365,530,218,364,60701,20466,41956,15107,130,2.6,10,9,96,6706,9,999999999,10,0.089,0,88,0,0,1 -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,18191,0,18354,8074,170,3.6,10,10,96,2896,9,999999999,10,0.089,0,88,0,0,1 -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,12064,0,12164,5108,320,5.2,10,10,96,2743,9,999999999,10,0.089,0,88,0,0,1 -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,32,83400,355,1342,363,59,0,59,5852,0,5897,2348,310,5.2,10,10,96,2743,9,999999999,10,0.089,0,88,0,0,1 -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,1551,0,1562,571,50,2.6,10,10,64,2591,9,999999999,10,0.089,0,88,0,0,1 -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.6,37,83500,0,0,356,0,0,0,0,0,0,0,50,2.6,10,10,32,2438,9,999999999,10,0.089,0,88,0,0,1 -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.6,37,83500,0,0,356,0,0,0,0,0,0,0,20,1.5,10,10,32,2134,9,999999999,11,0.089,0,88,0,0,1 -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,1676,9,999999999,11,0.089,0,88,0,0,1 -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,63,83500,0,0,345,0,0,0,0,0,0,0,130,5.2,10,10,32,1981,9,999999999,11,0.089,0,88,0,0,1 -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,3353,9,999999999,11,0.089,0,88,0,0,1 -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,74,83400,0,0,309,0,0,0,0,0,0,0,120,3.1,10,6,32,8534,9,999999999,11,0.089,0,88,0,0,1 -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,80,83400,0,0,300,0,0,0,0,0,0,0,130,3.1,9,4,32,77777,9,999999999,11,0.089,0,88,0,0,1 -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,80,83300,0,0,297,0,0,0,0,0,0,0,130,2.6,10,3,32,77777,9,999999999,12,0.089,0,88,0,0,1 -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,86,83300,0,0,295,0,0,0,0,0,0,0,150,1.5,10,4,32,77777,9,999999999,12,0.089,0,88,0,0,1 -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,93,83400,1,145,319,0,0,0,0,0,0,0,130,1.5,10,10,64,3353,9,999999999,12,0.089,0,88,0,0,1 -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,2623,0,2642,948,210,2.1,10,10,80,3353,9,999999999,12,0.089,0,88,0,0,1 -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,5.6,74,83500,398,1342,328,72,28,63,8385,1113,7356,2584,230,1.5,10,9,80,3353,9,999999999,12,0.089,0,88,0,0,1 -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,66,83500,644,1342,342,161,0,161,16345,0,16484,6647,310,2.6,10,10,64,3048,9,999999999,12,0.089,0,88,0,0,1 -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,59,83500,864,1342,341,395,95,333,44367,8788,37637,12863,360,3.1,10,9,64,3353,9,999999999,12,0.089,0,88,0,0,1 -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,65178,25746,38839,14507,120,2.6,9,7,64,7620,9,999999999,12,0.089,0,88,0,0,1 -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,89186,41901,36701,14232,360,2.6,8,5,64,7620,9,999999999,12,0.089,0,88,0,0,1 -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,114370,56652,25738,10495,20,3.1,5,2,64,77777,9,999999999,11,0.089,0,88,0,0,1 -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,81852,25995,53519,18913,330,2.6,8,6,72,7620,9,999999999,11,0.089,0,88,0,0,1 -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,85119,41636,28078,11330,70,3.1,7,5,96,7620,9,999999999,11,0.089,0,88,0,0,1 -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,2.2,31,83500,1017,1342,346,711,565,282,83012,46869,33115,12743,360,4.6,5,3,96,77777,9,999999999,11,0.089,0,88,0,0,1 -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,26,83500,832,1342,347,493,472,200,57451,36371,23420,8931,40,2.6,5,4,80,77777,9,999999999,11,0.089,0,88,0,0,1 -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,35078,23634,17960,6313,50,2.1,5,5,80,77777,9,999999999,11,0.089,0,88,0,0,1 -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,21096,16765,6856,2356,10,3.1,2,2,80,77777,9,999999999,11,0.089,0,88,0,0,1 -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,4351,0,2572,762,40,3.6,3,3,96,77777,9,999999999,11,0.089,0,88,0,0,1 -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,77777,9,999999999,11,0.089,0,88,0,0,1 -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,77777,9,999999999,11,0.089,0,88,0,0,1 -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,63,83800,0,0,299,0,0,0,0,0,0,0,190,1.5,0,0,32,77777,9,999999999,11,0.089,0,88,0,0,1 -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,77777,9,999999999,11,0.089,0,88,0,0,1 -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,77777,9,999999999,11,0.089,0,88,0,0,1 -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,77777,9,999999999,11,0.089,0,88,0,0,1 -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,77777,9,999999999,11,0.089,0,88,0,0,1 -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,77777,9,999999999,11,0.089,0,88,0,0,1 -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,77777,9,999999999,10,0.089,0,88,0,0,1 -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,77777,9,999999999,10,0.089,0,88,0,0,1 -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,6407,0,3380,1036,200,2.6,3,1,112,77777,9,999999999,10,0.089,0,88,0,0,1 -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,27134,23672,8337,2891,210,3.6,2,1,112,77777,9,999999999,10,0.089,0,88,0,0,1 -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,54817,44431,9485,3678,210,5.7,1,0,112,77777,9,999999999,10,0.089,0,88,0,0,1 -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,66062,83136,13008,2100,180,5.2,1,1,112,77777,9,999999999,10,0.089,0,88,0,0,1 -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,85681,91850,14899,3055,210,2.6,1,0,112,77777,9,999999999,10,0.089,0,88,0,0,1 -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,95717,92998,15399,4411,140,3.6,2,1,112,77777,9,999999999,10,0.089,0,88,0,0,1 -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,102933,93849,18238,6302,170,4.6,3,0,112,77777,9,999999999,10,0.089,0,88,0,0,1 -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.6,18,83300,1223,1341,363,904,770,201,111581,55277,24934,10190,130,5.2,5,2,112,77777,9,999999999,10,0.089,0,88,0,0,1 -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,19,83200,1151,1341,362,811,742,173,100253,51781,21484,8880,140,3.1,8,1,112,77777,9,999999999,10,0.089,0,88,0,0,1 -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,92315,54240,18244,7569,130,4.6,7,1,112,77777,9,999999999,10,0.089,0,88,0,0,1 -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,69930,48696,16284,6511,150,8.2,8,1,112,77777,9,999999999,10,0.089,0,88,0,0,1 -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,47695,40873,15421,5599,150,7.7,7,1,96,77777,9,999999999,10,0.089,0,88,0,0,1 -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.6,20,83000,362,1341,360,190,378,88,21349,17394,9923,3210,150,12.4,6,1,80,77777,9,999999999,10,0.089,0,88,0,0,1 -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,4209,0,2887,840,170,10.8,6,2,88,77777,9,999999999,10,0.089,0,88,0,0,1 -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,24,83000,0,0,349,0,0,0,0,0,0,0,170,7.2,5,3,48,77777,9,999999999,10,0.089,0,88,0,0,1 -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,1.7,30,83100,0,0,342,0,0,0,0,0,0,0,190,5.7,2,2,32,77777,9,999999999,10,0.089,0,88,0,0,1 -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,77777,9,999999999,10,0.089,0,88,0,0,1 -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,77777,9,999999999,10,0.089,0,88,0,0,1 -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,77777,9,999999999,10,0.089,0,88,0,0,1 -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,77777,9,999999999,10,0.09,0,88,0,0,1 -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,77777,9,999999999,10,0.09,0,88,0,0,1 -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,2.2,42,82800,0,0,323,0,0,0,0,0,0,0,170,5.7,6,3,32,77777,9,999999999,10,0.09,0,88,0,0,1 -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,77777,9,999999999,10,0.09,0,88,0,0,1 -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,7620,9,999999999,10,0.09,0,88,0,0,1 -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,2.8,44,82800,152,1341,336,59,73,50,6373,121,5420,1457,160,4.1,9,7,96,4877,9,999999999,10,0.09,0,88,0,0,1 -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,18205,7126,14184,4369,140,4.1,9,8,96,4877,9,999999999,10,0.09,0,88,0,0,1 -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,3.9,35,82800,651,1341,361,200,190,108,23655,11725,12818,4880,170,4.1,9,7,96,4267,9,999999999,10,0.09,0,88,0,0,1 -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,49035,22048,28587,10690,340,3.1,9,8,80,4572,9,999999999,10,0.09,0,88,0,0,1 -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,59302,21500,36031,13757,350,2.6,9,7,96,4572,9,999999999,10,0.09,0,88,0,0,1 -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,70280,19112,50515,17983,190,8.2,9,8,96,7620,9,999999999,10,0.09,0,88,0,0,1 -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,93858,41224,42645,16119,190,9.3,9,7,96,7620,9,999999999,10,0.09,0,88,0,0,1 -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,79099,21692,56411,19556,190,10.3,9,8,96,7620,9,999999999,10,0.09,0,88,0,0,1 -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,-3.3,15,82600,1153,1341,391,316,37,283,37680,3018,33940,13320,160,7.7,10,9,96,7620,9,999999999,10,0.09,0,88,0,0,1 -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,59450,23217,36211,13659,170,10.3,9,8,96,7620,9,999999999,10,0.09,0,88,0,0,1 -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,55258,35581,17534,6965,160,9.8,9,5,80,6706,9,999999999,10,0.09,0,88,0,0,1 -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,34164,24139,15231,5547,170,10.8,8,6,80,7010,9,999999999,10,0.09,0,88,0,0,1 -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,12,82500,365,1341,380,157,280,81,17802,12743,9214,3038,180,9.8,9,7,80,5486,9,999999999,10,0.09,0,88,0,0,1 -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,-4.4,13,82600,114,1329,371,30,49,26,3336,0,2899,850,180,5.7,9,6,88,5182,9,999999999,10,0.09,0,88,0,0,1 -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,7620,9,999999999,10,0.09,0,88,0,0,1 -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,7620,9,999999999,10,0.09,0,88,0,0,1 -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,-2.8,21,82700,0,0,343,0,0,0,0,0,0,0,170,5.2,6,4,32,7620,9,999999999,10,0.09,0,88,0,0,1 -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,77777,9,999999999,10,0.09,0,88,0,0,1 -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,77777,9,999999999,10,0.09,0,88,0,0,1 -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,77777,9,999999999,10,0.09,0,88,0,0,1 -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,77777,9,999999999,10,0.09,0,88,0,0,1 -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,-3.3,27,82800,0,0,314,0,0,0,0,0,0,0,130,3.6,2,2,32,77777,9,999999999,10,0.09,0,88,0,0,1 -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,77777,9,999999999,10,0.09,0,88,0,0,1 -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,77777,9,999999999,10,0.09,0,88,0,0,1 -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,-1.7,31,82900,156,1340,322,44,102,32,4951,0,3609,1107,160,5.2,8,4,96,7620,9,999999999,10,0.09,0,88,0,0,1 -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,27329,24800,9751,3318,180,3.1,7,2,96,77777,9,999999999,10,0.09,0,88,0,0,1 -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,42827,30814,19848,7064,200,3.1,8,3,96,77777,9,999999999,10,0.09,0,88,0,0,1 -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,73732,50449,18087,7252,160,3.6,5,2,96,77777,9,999999999,10,0.09,0,88,0,0,1 -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,82978,46391,23004,9412,250,2.6,5,3,96,77777,9,999999999,10,0.09,0,88,0,0,1 -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,109435,57359,19950,8266,220,8.2,4,2,96,77777,9,999999999,10,0.09,0,88,0,0,1 -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,113722,55677,24499,10028,150,11.3,4,3,96,77777,9,999999999,10,0.09,0,88,0,0,1 -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,15,82800,1227,1340,384,969,938,110,101701,95525,14356,5326,150,12.4,2,2,96,77777,9,999999999,10,0.09,0,88,0,0,1 -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,15,82800,1155,1340,387,895,900,119,93757,91489,15687,4289,150,10.8,3,3,96,77777,9,999999999,10,0.09,0,88,0,0,1 -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,15,82700,1023,1340,384,704,670,193,84788,49241,23356,9503,160,11.3,4,2,96,77777,9,999999999,10,0.09,0,88,0,0,1 -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,-3.9,10,82700,839,1340,388,444,481,142,53254,33676,17100,6814,180,7.2,4,3,88,77777,9,999999999,10,0.09,0,88,0,0,1 -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,46318,39694,11885,4471,170,7.2,7,2,80,77777,9,999999999,10,0.09,0,88,0,0,1 -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,21332,16943,10253,3316,160,10.3,9,3,80,77777,9,999999999,10,0.09,0,88,0,0,1 -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,3.3,24,82700,117,1329,368,39,127,28,4314,0,3105,905,140,5.7,7,2,72,77777,9,999999999,10,0.09,0,88,0,0,1 -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,77777,9,999999999,10,0.09,0,88,0,0,1 -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,77777,9,999999999,10,0.09,0,88,0,0,1 -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,11.1,57,83100,0,0,342,0,0,0,0,0,0,0,150,11.3,0,0,16,77777,9,999999999,10,0.09,0,88,0,0,1 -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,12.2,61,83100,0,0,344,0,0,0,0,0,0,0,170,10.8,0,0,16,77777,9,999999999,10,0.09,0,88,0,0,1 -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,10,0.09,0,88,0,0,1 -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,10,0.09,0,88,0,0,1 -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,10,0.09,0,88,0,0,1 -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,63,83200,0,0,328,0,0,0,0,0,0,0,170,5.2,0,0,19.2,77777,9,999999999,10,0.09,0,88,0,0,1 -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,10,0.09,0,88,0,0,1 -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,10,72,83300,3,234,332,0,1,0,0,0,0,0,180,3.6,3,3,32,77777,9,999999999,10,0.09,0,88,0,0,1 -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,6703,0,4629,1350,190,5.2,5,2,80,77777,9,999999999,10,0.09,0,88,0,0,1 -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,25051,20236,8991,3115,190,5.2,5,1,96,77777,9,999999999,10,0.09,0,88,0,0,1 -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,50669,39466,13038,4976,150,4.1,4,1,96,77777,9,999999999,10,0.09,0,88,0,0,1 -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,31,83400,875,1339,348,652,791,135,78784,52310,16377,6639,180,3.6,3,0,96,77777,9,999999999,10,0.09,0,88,0,0,1 -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,1.7,22,83300,1051,1339,362,691,700,142,85475,46903,17637,7361,170,5.7,2,1,96,77777,9,999999999,10,0.09,0,88,0,0,1 -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,96983,91335,18681,5042,180,7.7,0,0,112,77777,9,999999999,9,0.09,0,88,0,0,1 -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,111505,55516,24430,9987,170,7.2,6,1,112,77777,9,999999999,9,0.09,0,88,0,0,1 -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,110015,53992,21728,8954,150,7.2,3,1,112,77777,9,999999999,9,0.09,0,88,0,0,1 -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,10,83000,1157,1339,374,873,818,166,108465,57470,20717,8572,160,7.2,2,2,112,77777,9,999999999,9,0.09,0,88,0,0,1 -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,86804,51560,24405,9875,160,10.3,4,4,112,77777,9,999999999,9,0.09,0,88,0,0,1 -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,67876,47751,20989,8175,160,7.7,4,4,112,77777,9,999999999,9,0.09,0,88,0,0,1 -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,46113,39333,14611,5373,150,5.7,3,3,112,77777,9,999999999,9,0.09,0,88,0,0,1 -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,20580,16762,8601,2890,160,5.2,2,2,96,77777,9,999999999,9,0.09,0,88,0,0,1 -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,4127,0,3019,892,150,6.2,3,3,64,77777,9,999999999,9,0.09,0,88,0,0,1 -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,77777,9,999999999,9,0.09,0,88,0,0,1 -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,77777,9,999999999,8,0.09,0,88,0,0,1 -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,77777,9,999999999,8,0.09,0,88,0,0,1 -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,77777,9,999999999,8,0.09,0,88,0,0,1 -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,77777,9,999999999,8,0.09,0,88,0,0,1 -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,77777,9,999999999,8,0.09,0,88,0,0,1 -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,77777,9,999999999,8,0.09,0,88,0,0,1 -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,77777,9,999999999,8,0.09,0,88,0,0,1 -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,-2.2,41,83300,0,0,290,0,0,0,0,0,0,0,70,3.6,1,1,32,77777,9,999999999,8,0.09,0,88,0,0,1 -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,77777,9,999999999,8,0.09,0,88,0,0,1 -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,8902,35542,3599,468,300,1.5,0,0,80,77777,9,999999999,8,0.09,0,88,0,0,1 -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,29921,71342,5849,948,70,1.5,0,0,80,77777,9,999999999,7,0.09,0,88,0,0,1 -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,49762,82899,7695,1344,150,3.1,1,1,96,77777,9,999999999,7,0.09,0,88,0,0,1 -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,71227,93127,9076,1798,340,2.1,1,1,96,77777,9,999999999,7,0.09,0,88,0,0,1 -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,89738,99783,10096,2491,270,2.6,0,0,96,77777,9,999999999,7,0.09,0,88,0,0,1 -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,101234,101799,10615,3493,260,4.1,0,0,112,77777,9,999999999,7,0.09,0,88,0,0,1 -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,104940,100776,10608,4366,310,2.6,1,1,112,77777,9,999999999,7,0.09,0,88,0,0,1 -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,-11.7,10,83500,1230,1339,316,1013,1013,82,106275,102526,10869,4350,220,7.2,0,0,96,77777,9,999999999,7,0.09,0,88,0,0,1 -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,99599,101488,10520,3298,240,6.2,0,0,112,77777,9,999999999,7,0.09,0,88,0,0,1 -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,87125,99175,10010,2360,260,5.7,0,0,112,77777,9,999999999,7,0.09,0,88,0,0,1 -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,69838,94646,8983,1724,290,5.2,0,0,112,77777,9,999999999,6,0.09,0,88,0,0,1 -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,48790,85807,7586,1293,210,5.2,0,0,112,77777,9,999999999,6,0.09,0,88,0,0,1 -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,-11.7,10,83500,375,1339,316,245,752,35,26145,66936,5563,882,50,3.6,0,0,112,77777,9,999999999,6,0.09,0,88,0,0,1 -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,6167,27287,2958,363,50,4.1,0,0,112,77777,9,999999999,6,0.09,0,88,0,0,1 -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,77777,9,999999999,6,0.09,0,88,0,0,1 -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,77777,9,999999999,6,0.09,0,88,0,0,1 -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,77777,9,999999999,6,0.09,0,88,0,0,1 -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,-8.3,25,83700,0,0,278,0,0,0,0,0,0,0,190,2.1,0,0,32,77777,9,999999999,6,0.09,0,88,0,0,1 -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,77777,9,999999999,6,0.09,0,88,0,0,1 -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,32,77777,9,999999999,6,0.09,0,88,0,0,1 -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,77777,9,999999999,5,0.09,0,88,0,0,1 -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,77777,9,999999999,5,0.09,0,88,0,0,1 -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,32,77777,9,999999999,5,0.09,0,88,0,0,1 -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,6,279,264,1,32,0,0,0,0,0,160,2.1,1,1,48,77777,9,999999999,5,0.09,0,88,0,0,1 -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,9364,0,2895,930,170,4.1,1,1,80,77777,9,999999999,5,0.09,0,88,0,0,1 -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,31334,28213,5773,2083,170,4.1,1,1,96,77777,9,999999999,5,0.09,0,88,0,0,1 -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,54411,45903,12663,4843,220,4.1,1,1,96,77777,9,999999999,5,0.09,0,88,0,0,1 -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,70223,91264,9338,1837,230,2.1,1,1,112,77777,9,999999999,6,0.09,0,88,0,0,1 -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,85515,94356,10220,2525,140,5.2,1,1,112,77777,9,999999999,6,0.09,0,88,0,0,1 -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,93898,93617,10612,3518,180,4.1,1,1,112,77777,9,999999999,6,0.09,0,88,0,0,1 -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,-5.6,12,83400,1237,1338,357,969,882,153,100142,89170,19496,6981,170,4.1,2,2,112,77777,9,999999999,6,0.09,0,88,0,0,1 -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,98530,91164,15177,5730,150,6.2,5,1,112,77777,9,999999999,6,0.09,0,88,0,0,1 -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,104770,55985,26817,10867,180,7.2,6,4,112,8534,9,999999999,6,0.09,0,88,0,0,1 -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,79244,41902,37703,14116,160,6.2,8,6,112,8534,9,999999999,6,0.09,0,88,0,0,1 -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,42414,9209,35634,12268,140,8.2,10,9,96,6096,9,999999999,6,0.09,0,88,0,0,1 -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,22075,5440,18151,6447,160,13.9,9,8,64,5182,9,999999999,6,0.09,0,88,0,0,1 -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,15894,7766,11122,3562,170,12.4,9,7,96,5182,9,999999999,7,0.09,0,88,0,0,1 -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,6011,0,3947,1102,190,8.2,6,3,80,77777,9,999999999,7,0.09,0,88,0,0,1 -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.6,25,83000,0,56,340,0,4,0,0,0,0,0,170,5.2,5,2,48,77777,9,999999999,7,0.09,0,88,0,0,1 -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,77777,9,999999999,7,0.09,0,88,0,0,1 -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,77777,9,999999999,7,0.09,0,88,0,0,1 -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,77777,9,999999999,7,0.09,0,88,0,0,1 -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,77777,9,999999999,7,0.09,0,88,0,0,1 -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,77777,9,999999999,7,0.09,0,88,0,0,1 -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,77777,9,999999999,8,0.09,0,88,0,0,1 -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,77777,9,999999999,8,0.09,0,88,0,0,1 -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,77777,9,999999999,8,0.09,0,88,0,0,1 -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,62,82900,5,301,283,0,13,0,0,0,0,0,160,1.5,2,2,48,77777,9,999999999,8,0.09,0,88,0,0,1 -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,7493,287,4974,1454,150,1.5,8,3,96,77777,9,999999999,8,0.09,0,88,0,0,1 -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,22764,12086,16604,4928,190,4.1,9,5,96,7620,9,999999999,8,0.09,0,88,0,0,1 -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,28,82900,665,1337,344,351,326,189,39891,25163,21583,7597,210,4.1,9,5,96,7620,9,999999999,8,0.09,0,88,0,0,1 -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,59991,36494,21439,8474,230,3.1,9,6,96,7620,9,999999999,8,0.09,0,88,0,0,1 -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,62277,19859,43217,15723,230,5.2,9,6,96,7620,9,999999999,8,0.09,0,88,0,0,1 -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,102767,53201,28242,11389,210,6.7,10,4,96,77777,9,999999999,8,0.09,0,88,0,0,1 -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,109400,54176,30413,12180,210,8.8,10,6,96,8534,9,999999999,8,0.09,0,88,0,0,1 -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,82562,32127,43276,16300,190,7.2,9,7,96,8534,9,999999999,8,0.09,0,88,0,0,1 -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,73637,26995,43950,16306,200,9.8,9,8,32,7620,9,999999999,8,0.09,0,88,0,0,1 -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,86348,50811,30881,12086,220,7.2,9,5,96,7620,9,999999999,8,0.09,0,88,0,0,1 -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,65978,45659,22016,8540,220,4.1,8,4,80,77777,9,999999999,8,0.09,0,88,0,0,1 -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,45071,37559,13664,5093,170,8.2,7,2,80,77777,9,999999999,8,0.09,0,88,0,0,1 -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,23141,19436,11446,3650,140,7.2,6,3,80,77777,9,999999999,8,0.09,0,88,0,0,1 -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,5331,0,3341,990,150,6.7,5,2,80,77777,9,999999999,8,0.09,0,88,0,0,1 -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,77777,9,999999999,8,0.09,0,88,0,0,1 -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,77777,9,999999999,8,0.09,0,88,0,0,1 -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,77777,9,999999999,8,0.09,0,88,0,0,1 -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,6706,9,999999999,8,0.09,0,88,0,0,1 -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,6706,9,999999999,8,0.09,0,88,0,0,1 -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,77777,9,999999999,8,0.09,0,88,0,0,1 -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,7620,9,999999999,8,0.09,0,88,0,0,1 -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,4,3,32,77777,9,999999999,8,0.09,0,88,0,0,1 -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,77777,9,999999999,8,0.09,0,88,0,0,1 -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,77777,9,999999999,8,0.09,0,88,0,0,1 -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,8930,0,3327,1062,20,3.1,1,1,96,77777,9,999999999,9,0.09,0,88,0,0,1 -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,27452,23912,9679,3346,10,6.2,3,3,96,77777,9,999999999,9,0.09,0,88,0,0,1 -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,37905,11172,31388,9641,360,8.2,6,6,96,1402,9,999999999,9,0.09,0,88,0,0,1 -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,49,82800,884,1337,364,194,0,194,20101,0,20286,9007,10,6.2,10,10,80,1250,9,999999999,9,0.09,0,88,0,0,1 -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,24895,0,25137,11361,360,7.7,10,10,64,1036,9,999999999,10,0.09,0,88,0,0,1 -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,28305,0,28590,12804,10,9.3,10,10,48,762,9,999999999,10,0.09,0,88,0,0,1 -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,8.3,64,82800,1240,1337,365,281,0,281,29934,0,30241,13471,350,7.2,10,10,32,792,9,999999999,10,0.09,0,88,0,1,1 -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,4.4,68,82900,1234,1337,336,280,0,280,29866,0,30170,13421,250,7.2,10,10,9.6,884,9,999999999,10,0.09,0,88,0,3.8,1 -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,27878,0,28156,12615,200,6.2,10,10,6.4,884,9,999999999,11,0.09,0,88,0,2.8,1 -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,74,82900,1033,1337,334,231,0,231,24230,0,24463,11038,290,5.7,10,10,96,2438,9,999999999,11,0.09,0,88,0,0,1 -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,50660,27343,23460,9049,260,7.7,7,6,96,7620,9,999999999,11,0.09,0,88,0,0,1 -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,43498,32880,18234,6509,230,4.1,5,4,80,77777,9,999999999,11,0.09,0,88,0,0,1 -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,3.9,47,82900,384,1337,330,143,212,82,16255,9510,9352,3139,310,2.1,5,5,96,77777,9,999999999,12,0.09,0,88,0,0,1 -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,4635,0,3652,1067,40,5.7,6,4,80,7620,9,999999999,12,0.09,0,88,0,0,1 -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,3962,9,999999999,12,0.09,0,88,0,0,1 -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,1981,9,999999999,12,0.09,0,88,0,0,1 -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,1006,9,999999999,13,0.09,0,88,0,0,1 -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,975,9,999999999,13,0.09,0,88,0,0,1 -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,6.7,80,83300,0,0,339,0,0,0,0,0,0,0,290,3.1,10,10,32,671,9,999999999,13,0.09,0,88,0,3.3,1 -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,518,9,999999999,14,0.091,0,88,0,0.3,1 -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,671,9,999999999,14,0.091,0,88,0,0.3,1 -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,14,0.091,0,88,0,0,1 -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,14,0.091,0,88,0,0.8,1 -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,15,0.091,0,88,0,0.3,1 -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,2338,0,2355,913,290,3.6,10,10,9.6,427,9,999999999,14,0.091,0,88,0,0.3,1 -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,6374,0,6425,2690,320,3.6,10,10,8,305,9,999999999,14,0.091,0,88,0,1,1 -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,9661,0,9744,4432,340,6.2,10,10,9.6,152,9,999999999,14,0.091,0,88,0,0.8,1 -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,19785,0,19967,8908,350,4.1,10,10,11.2,457,9,999999999,14,0.091,0,88,0,0,1 -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,24696,0,24936,11292,340,3.1,10,10,32,1219,9,999999999,14,0.091,0,88,0,0,1 -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,57472,16096,36198,14124,330,2.1,9,9,48,7010,9,999999999,14,0.091,0,88,0,0,1 -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,29849,0,30154,13438,300,3.1,10,10,48,1981,9,999999999,14,0.091,0,88,0,0,1 -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,104911,47884,39576,15260,310,3.1,9,7,64,1524,9,999999999,14,0.091,0,88,0,0,1 -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,6.7,58,83500,1165,1336,353,401,149,271,47938,11423,32584,12920,10,3.6,9,9,80,1036,9,999999999,14,0.091,0,88,0,0,1 -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,41631,15296,20543,8491,360,3.1,7,7,64,2134,9,999999999,14,0.091,0,88,0,0,1 -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,53599,31808,18102,7230,350,5.2,6,4,64,7620,9,999999999,14,0.091,0,88,0,0,1 -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,45334,34800,17592,6344,20,6.2,9,6,80,2743,9,999999999,14,0.091,0,88,0,0,1 -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,11934,6019,5920,2106,30,6.7,9,8,48,2743,9,999999999,14,0.091,0,88,0,0,1 -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,4061,0,3963,1141,360,3.6,9,6,48,2743,9,999999999,14,0.091,0,88,0,0,1 -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,1219,9,999999999,14,0.091,0,88,0,0,1 -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,1372,9,999999999,14,0.091,0,88,0,0,1 -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,13,0.091,0,88,0,0,1 -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,1097,9,999999999,13,0.091,0,88,0,0,1 -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,77777,9,999999999,13,0.091,0,88,0,0,1 -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,10,9,32,1494,9,999999999,13,0.091,0,88,0,0,1 -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,10,9,24,1402,9,999999999,13,0.091,0,88,0,0,1 -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,77777,9,999999999,13,0.091,0,88,0,0,1 -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,77777,9,999999999,13,0.091,0,88,0,0,1 -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,8,8,40,1372,9,999999999,13,0.091,0,88,0,0,1 -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,8349,1300,7200,1865,80,2.1,6,6,48,1372,9,999999999,13,0.091,0,88,0,0,1 -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,31467,26550,6877,2480,0,0,1,0,64,77777,9,999999999,13,0.091,0,88,0,0,1 -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,54089,41583,11092,4317,280,1.5,2,2,64,77777,9,999999999,13,0.091,0,88,0,0,1 -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,78299,50461,16524,6727,310,2.6,3,3,80,77777,9,999999999,13,0.091,0,88,0,0,1 -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,58409,20374,35726,13736,0,0,7,7,64,975,9,999999999,13,0.091,0,88,0,0,1 -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,5.6,53,83700,1183,1336,335,884,644,313,104830,52075,37345,14478,30,2.1,6,6,32,975,9,999999999,13,0.091,0,88,0,0,1 -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,115913,54367,23121,9513,60,2.6,5,5,24,77777,9,999999999,12,0.091,0,88,0,0,1 -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,100869,45956,34831,13730,50,4.1,5,5,19.2,77777,9,999999999,12,0.091,0,88,0,0,1 -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,78565,33771,33386,13185,50,3.1,5,5,19.2,77777,9,999999999,12,0.091,0,88,0,0,1 -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,87013,48549,29480,11687,30,2.6,6,6,24,1676,9,999999999,12,0.091,0,88,0,0,1 -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,39,83500,855,1336,350,577,569,212,67129,43539,24789,9487,70,2.6,5,4,32,77777,9,999999999,12,0.091,0,88,0,0,1 -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,28167,9597,21512,7401,40,3.1,8,8,24,1981,9,999999999,12,0.091,0,88,0,0,1 -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,8364,1157,7338,2566,340,3.1,9,9,24,2134,9,999999999,12,0.091,0,88,0,0,1 -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,3574,0,3359,1016,10,3.1,9,8,24,1981,9,999999999,12,0.091,0,88,0,0,1 -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,1981,9,999999999,12,0.091,0,88,0,0,1 -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,1981,9,999999999,12,0.091,0,88,0,0,1 -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,1829,9,999999999,12,0.091,0,88,0,0,1 -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,1981,9,999999999,12,0.091,0,88,0,0,1 -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,1981,9,999999999,12,0.091,0,88,0,0,1 -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,1981,9,999999999,12,0.091,0,88,0,0,1 -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,1676,9,999999999,11,0.091,0,88,0,0,1 -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,1676,9,999999999,11,0.091,0,88,0,0,1 -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,1676,9,999999999,11,0.091,0,88,0,0,1 -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,1829,9,999999999,11,0.091,0,88,0,0,1 -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,83,83800,184,1335,327,52,34,47,5732,69,5197,1547,130,5.2,6,5,64,7620,9,999999999,11,0.091,0,88,0,0,1 -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,9.4,69,83800,433,1335,328,225,324,119,25111,18026,13336,4354,130,4.1,4,2,64,77777,9,999999999,11,0.091,0,88,0,0,1 -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,49300,34955,23131,8077,140,4.1,8,3,64,77777,9,999999999,11,0.091,0,88,0,0,1 -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,70730,42528,31244,11583,150,6.2,10,4,64,77777,9,999999999,12,0.091,0,88,0,0,1 -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,79261,39135,31981,12593,160,4.1,8,3,64,77777,9,999999999,12,0.091,0,88,0,0,1 -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,98366,46327,36531,14241,160,4.1,10,4,96,77777,9,999999999,12,0.091,0,88,0,0,1 -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,100598,41305,51476,18580,130,3.1,10,3,96,77777,9,999999999,12,0.091,0,88,0,0,1 -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,108962,51200,34601,13660,140,6.7,10,4,96,77777,9,999999999,12,0.091,0,88,0,0,1 -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,7.2,32,83400,1168,1335,377,836,620,293,99379,48670,35039,13734,160,12.9,9,3,96,77777,9,999999999,12,0.091,0,88,0,0,1 -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,78489,40977,30027,11877,130,11.3,10,2,96,77777,9,999999999,12,0.091,0,88,0,0,1 -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,62808,37781,24198,9331,160,10.3,10,3,64,77777,9,999999999,12,0.091,0,88,0,0,1 -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,48973,37688,18949,6763,140,6.2,10,0,56,77777,9,999999999,12,0.091,0,88,0,0,1 -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,24363,18887,11839,3811,130,7.7,9,0,56,77777,9,999999999,12,0.091,0,88,0,0,1 -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,5545,0,4472,1264,150,6.7,7,1,72,77777,9,999999999,12,0.091,0,88,0,0,1 -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,77777,9,999999999,13,0.091,0,88,0,0,1 -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,77777,9,999999999,13,0.091,0,88,0,0,1 -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,13,0.091,0,88,0,0,1 -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,77777,9,999999999,13,0.091,0,88,0,0,1 -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,13,0.091,0,88,0,0,1 -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,13,0.091,0,88,0,0,1 -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,13,0.091,0,88,0,0,1 -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,77777,9,999999999,13,0.091,0,88,0,0,1 -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,7620,9,999999999,13,0.091,0,88,0,0,1 -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,7620,9,999999999,13,0.091,0,88,0,0,1 -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,9414,0,4382,1365,180,3.6,2,2,48,77777,9,999999999,13,0.091,0,88,0,0,1 -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,32163,25336,6542,2378,190,4.1,1,1,64,77777,9,999999999,13,0.091,0,88,0,0,1 -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,51,83800,677,1335,350,460,763,73,56220,40631,8945,3526,200,4.6,1,1,64,77777,9,999999999,13,0.091,0,88,0,0,1 -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,72491,89434,12828,2187,170,3.6,0,0,64,77777,9,999999999,13,0.091,0,88,0,0,1 -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,97513,54003,21893,9036,160,6.2,2,2,96,77777,9,999999999,13,0.091,0,88,0,0,1 -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,93686,89679,14342,4601,160,7.2,1,1,96,77777,9,999999999,13,0.091,0,88,0,0,1 -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,15,83600,1245,1335,379,914,860,112,95859,87599,14526,6041,170,7.7,1,1,96,77777,9,999999999,14,0.091,0,88,0,0,1 -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.6,14,83500,1240,1335,383,865,777,143,109790,51394,18227,7568,150,8.2,3,1,96,77777,9,999999999,14,0.091,0,88,0,0,1 -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,107679,55058,24527,10045,160,8.2,6,2,96,77777,9,999999999,14,0.091,0,88,0,0,1 -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,50787,10761,40189,14875,170,13.4,9,9,96,7620,9,999999999,14,0.091,0,88,0,0,1 -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,35470,6856,29433,10874,140,7.7,10,9,64,2134,9,999999999,14,0.091,0,88,0,0,1 -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,13181,0,13293,5636,130,10.8,10,10,80,2134,9,999999999,14,0.091,0,88,0,0,1 -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,17566,4085,15455,4534,230,5.7,10,9,64,2286,9,999999999,14,0.091,0,88,0,0,1 -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,39,83800,148,1335,373,41,12,40,4493,0,4397,1258,170,3.6,10,9,80,4267,9,999999999,14,0.091,0,88,0,0,1 -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,3962,9,999999999,14,0.091,0,88,0,0,1 -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,40,83800,0,0,381,0,0,0,0,0,0,0,150,6.2,10,10,24,1829,9,999999999,14,0.091,0,88,0,0,1 -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,1981,9,999999999,14,0.091,0,88,0,0,1 -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,3962,9,999999999,14,0.091,0,88,0,0,1 -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,3962,9,999999999,14,0.091,0,88,0,0,1 -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,4572,9,999999999,14,0.091,0,88,0,0,1 -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,4572,9,999999999,14,0.091,0,88,0,0,1 -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,4267,9,999999999,14,0.091,0,88,0,0,1 -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,4267,9,999999999,14,0.091,0,88,0,0,1 -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,7620,9,999999999,14,0.091,0,88,0,0,1 -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,6665,422,6140,1752,190,6.2,9,8,80,7315,9,999999999,14,0.091,0,88,0,0,1 -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,39,83600,438,1334,360,262,242,182,28321,17996,19775,5542,190,7.2,9,7,80,7315,9,999999999,14,0.091,0,88,0,0,1 -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,35,83600,679,1334,364,371,489,122,43713,31316,14428,5508,200,5.2,8,6,80,7315,9,999999999,14,0.091,0,88,0,0,1 -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,58012,32619,22985,9060,190,3.6,7,6,80,6706,9,999999999,14,0.091,0,88,0,0,1 -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,76650,38674,25276,10293,200,4.6,8,5,80,6706,9,999999999,14,0.091,0,88,0,0,1 -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,5,28,83500,1187,1334,388,627,346,319,74317,28224,38045,14701,160,5.7,10,7,80,6706,9,999999999,15,0.091,0,88,0,0,1 -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,38186,0,38577,16204,180,7.2,10,10,80,7620,9,999999999,15,0.091,0,88,0,0,1 -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,41392,7237,30483,12231,190,4.1,10,9,80,7620,9,999999999,15,0.091,0,88,0,0,1 -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,43015,9762,29036,11703,260,4.6,10,9,80,3658,9,999999999,15,0.091,0,88,0,0,1 -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,55323,10924,45130,16121,230,2.6,10,9,80,7620,9,999999999,15,0.091,0,88,0,0,1 -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,25009,0,25238,10500,180,2.6,10,10,80,8534,9,999999999,15,0.091,0,88,0,0,1 -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,17774,0,17924,7054,190,8.2,10,10,80,8534,9,999999999,15,0.091,0,88,0,0,1 -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,39,83400,399,1334,365,56,61,38,6785,2012,4611,1667,210,4.6,10,8,80,8534,9,999999999,15,0.091,0,88,0,0,1 -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,7734,0,4099,1208,200,2.6,4,4,64,77777,9,999999999,15,0.091,0,88,0,0,1 -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,8534,9,999999999,16,0.091,0,88,0,0,1 -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,46,83400,0,0,337,0,0,0,0,0,0,0,200,3.1,10,4,32,77777,9,999999999,16,0.091,0,88,0,0,1 -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,48,83300,0,0,332,0,0,0,0,0,0,0,180,1.5,10,3,32,77777,9,999999999,16,0.091,0,88,0,0,1 -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,48,83300,0,0,367,0,0,0,0,0,0,0,160,1.5,10,10,32,8534,9,999999999,16,0.091,0,88,0,0,1 -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,5182,9,999999999,16,0.091,0,88,0,0,1 -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,5182,9,999999999,16,0.092,0,88,0,0,1 -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,4877,9,999999999,16,0.092,0,88,0,0,1 -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,4572,9,999999999,16,0.092,0,88,0,0,1 -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,5486,9,999999999,16,0.092,0,88,0,0,1 -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,4877,9,999999999,16,0.092,0,88,0,0,1 -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,6377,380,5736,1686,340,2.6,10,9,80,7620,9,999999999,17,0.092,0,88,0,0,1 -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,28076,22971,9272,3271,330,1.5,8,4,96,77777,9,999999999,17,0.092,0,88,0,0,1 -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,18207,0,18365,7425,0,0,10,10,64,7620,9,999999999,17,0.092,0,88,0,0,1 -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,66303,38040,29568,11147,330,2.1,10,8,64,7620,9,999999999,17,0.092,0,88,0,0,1 -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,64472,19380,45191,16321,330,2.1,10,7,64,7620,9,999999999,17,0.092,0,88,0,0,1 -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,88108,24318,65200,20944,280,1.5,9,8,64,7620,9,999999999,17,0.092,0,88,0,0,1 -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,91980,40365,28112,11382,50,2.1,7,7,64,7620,9,999999999,17,0.092,0,88,0,0,1 -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,83920,20701,62611,20934,90,4.6,9,8,80,7620,9,999999999,17,0.092,0,88,0,0,1 -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,112852,59924,33135,13093,0,0,6,6,80,7620,9,999999999,17,0.092,0,88,0,0,1 -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,37675,5043,32087,12542,360,5.2,8,8,80,7620,9,999999999,17,0.092,0,88,0,0,1 -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,19545,0,19724,8731,300,4.1,10,10,80,2438,9,999999999,17,0.092,0,88,0,0,1 -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,16944,0,17089,6840,200,4.6,10,10,80,8534,9,999999999,17,0.092,0,88,0,0,1 -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,5.6,39,83100,402,1334,388,93,0,93,9245,0,9317,3519,230,3.1,10,10,80,4267,9,999999999,17,0.092,0,88,0,0,1 -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,2624,0,2642,965,210,2.1,10,10,64,8534,9,999999999,17,0.092,0,88,0,0,1 -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,8534,9,999999999,17,0.092,0,88,0,0,1 -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,8534,9,999999999,17,0.092,0,88,0,0,1 -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,8534,9,999999999,18,0.092,0,88,0,0,1 -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,7.2,60,83100,0,0,364,0,0,0,0,0,0,0,210,1.5,10,10,32,3048,9,999999999,18,0.092,0,88,0,0,1 -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,7620,9,999999999,18,0.092,0,88,0,0,1 -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,4267,9,999999999,18,0.092,0,88,0,0,1 -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,10,9,32,7620,9,999999999,18,0.092,0,88,0,0,1 -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,77777,9,999999999,18,0.092,0,88,0,0,1 -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,6706,9,999999999,18,0.092,0,88,0,0,1 -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,4572,9,999999999,18,0.092,0,88,0,0,1 -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,5052,49,4615,1439,240,1.5,9,8,96,4267,9,999999999,18,0.092,0,88,0,0,1 -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,26221,19566,14006,4558,220,2.6,7,6,96,2896,9,999999999,18,0.092,0,88,0,0,1 -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,38886,17833,26515,8930,290,2.6,8,8,88,2743,9,999999999,18,0.092,0,88,0,0,1 -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,59374,23666,40441,13835,360,9.3,7,7,80,2591,9,999999999,18,0.092,0,88,0,0,1 -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,82721,41501,33448,13077,30,6.7,5,4,80,77777,9,999999999,18,0.092,0,88,0,0,1 -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,90439,40846,27043,11003,20,4.1,5,5,80,77777,9,999999999,18,0.092,0,88,0,0,1 -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,7.8,45,83400,1249,1333,356,872,698,218,107166,48624,26934,10963,50,2.1,4,4,64,77777,9,999999999,18,0.092,0,88,0,0,1 -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,113186,52988,28635,11584,350,2.6,2,2,64,77777,9,999999999,18,0.092,0,88,0,0,1 -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,102740,50809,31178,12454,100,4.1,3,3,64,77777,9,999999999,18,0.092,0,88,0,0,1 -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,29025,5996,20581,8519,310,1.5,9,9,96,7620,9,999999999,18,0.092,0,88,0,0,1 -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,6.7,31,83200,865,1333,386,283,207,148,33900,13894,17803,7158,40,3.1,8,6,80,7620,9,999999999,18,0.092,0,88,0,0,1 -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,12385,0,12490,5387,20,6.2,10,10,64,1981,9,999999999,18,0.092,0,88,0,0,1 -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,75,83400,404,1333,364,64,0,64,6349,0,6399,2635,340,7.2,10,10,48,2134,9,999999999,18,0.092,0,88,0,0,1 -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,2618,0,2637,971,360,5.2,10,10,9.6,2286,9,999999999,18,0.092,0,88,0,0,1 -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,2438,9,999999999,17,0.092,0,88,0,0.3,1 -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,1981,9,999999999,17,0.092,0,88,0,0.5,1 -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,1981,9,999999999,17,0.092,0,88,0,0,1 -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,3658,9,999999999,17,0.092,0,88,0,0,1 -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,1829,9,999999999,17,0.092,0,88,0,0,1 -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,1676,9,999999999,17,0.092,0,88,0,0,1 -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,89,83700,0,0,314,0,0,0,0,0,0,0,180,1.5,2,2,24,77777,9,999999999,17,0.092,0,88,0,0,1 -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,93,83700,0,0,331,0,0,0,0,0,0,0,190,2.6,8,8,16,3962,9,999999999,17,0.092,0,88,0,0,1 -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,89,83600,0,0,329,0,0,0,0,0,0,0,130,2.1,10,7,16,4267,9,999999999,17,0.092,0,88,0,0,1 -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,89,83700,13,455,322,2,3,2,0,0,0,0,120,2.1,10,5,40,4267,9,999999999,17,0.092,0,88,0,0,1 -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,86,83800,197,1332,327,71,60,62,7701,787,6749,1899,90,3.1,7,6,48,4267,9,999999999,17,0.092,0,88,0,0,1 -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,8621,1447,7222,2620,90,3.6,10,9,24,975,9,999999999,17,0.092,0,88,0,0,1 -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,21822,4218,18207,6759,110,2.1,10,9,16,1067,9,999999999,17,0.092,0,88,0,0,1 -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,10,72,83800,897,1332,357,390,147,291,44488,12243,33392,12230,350,2.6,10,9,16,1128,9,999999999,17,0.092,0,88,0,0,1 -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,67,83800,1070,1332,350,652,374,351,75279,31902,40787,15235,10,2.6,9,7,16,1219,9,999999999,17,0.092,0,88,0,0,1 -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,65,83700,1190,1332,358,790,292,528,89848,28896,60507,20232,10,3.1,10,8,16,671,9,999999999,17,0.092,0,88,0,0,1 -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,29930,0,30239,13503,10,4.1,10,10,16,792,9,999999999,17,0.092,0,88,0,0,1 -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,29810,0,30118,13453,10,5.2,10,10,16,1097,9,999999999,17,0.092,0,88,0,0.5,1 -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,51746,10855,37565,14564,20,3.1,10,9,19.2,1372,9,999999999,16,0.092,0,88,0,5.1,1 -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,24108,0,24342,11062,360,5.2,10,10,12.8,1372,9,999999999,16,0.092,0,88,0,0.8,1 -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,19016,0,19191,8568,90,4.1,10,10,19.2,2286,9,999999999,16,0.092,0,88,0,0.3,1 -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,34954,9793,29187,9100,90,3.1,10,8,24,3658,9,999999999,16,0.092,0,88,0,0,1 -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,12039,1137,11180,3707,190,3.1,10,7,32,3353,9,999999999,16,0.092,0,88,0,0,1 -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,2428,0,2445,918,180,2.6,10,10,32,2591,9,999999999,16,0.092,0,88,0,0,1 -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,2896,9,999999999,16,0.092,0,88,0,0,1 -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,2896,9,999999999,16,0.092,0,88,0,0,1 -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,16,0.092,0,88,0,0,1 -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,16,0.092,0,88,0,0,1 -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,93,83900,0,0,348,0,0,0,0,0,0,0,200,1.5,10,10,24,2286,9,999999999,16,0.092,0,88,0,0,1 -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,2286,9,999999999,15,0.092,0,88,0,0,1 -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,10,9,24,2896,9,999999999,15,0.092,0,88,0,0,1 -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,2896,9,999999999,15,0.092,0,88,0,0,1 -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,2896,9,999999999,15,0.092,0,88,0,0,1 -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,7.8,86,83800,14,477,331,2,1,2,0,0,0,0,220,2.6,10,9,19.2,1676,9,999999999,15,0.092,0,88,0,0,1 -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,7.8,86,83800,199,1332,331,26,10,24,3053,0,2822,939,230,2.6,10,9,80,2134,9,999999999,15,0.092,0,88,0,0,1 -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,20508,7546,16171,5049,240,2.6,10,7,88,1829,9,999999999,15,0.092,0,88,0,0,1 -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,33824,11128,26011,8851,340,3.1,8,8,80,1829,9,999999999,15,0.092,0,88,0,0,1 -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,69625,39453,33411,12244,360,4.1,10,6,48,1676,9,999999999,15,0.092,0,88,0,0,1 -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,69,83900,1071,1332,360,209,109,121,26175,6627,15212,6411,310,3.1,10,9,64,1676,9,999999999,15,0.092,0,88,0,0,1 -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,63734,14787,46454,17136,310,3.1,10,9,64,1676,9,999999999,15,0.092,0,88,0,0,1 -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,52357,12294,34343,13582,80,1.5,9,9,96,3048,9,999999999,15,0.092,0,88,0,0,1 -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,97931,42778,37342,14566,270,2.1,9,7,96,7620,9,999999999,15,0.092,0,88,0,0,1 -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,51012,13273,33001,13069,340,1.5,9,8,96,7620,9,999999999,15,0.092,0,88,0,0,1 -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,6.1,40,83600,1048,1332,364,721,436,378,82622,39652,43602,15813,230,1.5,7,7,96,7620,9,999999999,15,0.092,0,88,0,0,1 -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,66698,42251,17376,7009,240,3.6,8,4,80,7620,9,999999999,15,0.092,0,88,0,0,1 -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,24303,4858,20767,7317,360,4.1,9,9,80,1981,9,999999999,15,0.092,0,88,0,0,1 -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,24772,19684,11927,3902,360,4.1,6,3,64,77777,9,999999999,15,0.092,0,88,0,0,1 -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,6074,60,5442,1510,340,2.1,10,7,64,2591,9,999999999,15,0.092,0,88,0,0,1 -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,75,83700,5,277,354,0,1,0,0,0,0,0,100,2.6,10,9,32,2134,9,999999999,15,0.092,0,88,0,0,1 -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,2134,9,999999999,15,0.092,0,88,0,0,1 -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,77777,9,999999999,15,0.092,0,88,0,0,1 -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,77777,9,999999999,15,0.092,0,88,0,0,1 -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,77777,9,999999999,15,0.092,0,88,0,0,1 -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,77777,9,999999999,15,0.093,0,88,0,0,1 -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,7.8,86,83600,0,0,295,0,0,0,0,0,0,0,160,1.5,0,0,32,77777,9,999999999,15,0.093,0,88,0,0,1 -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,32,77777,9,999999999,15,0.093,0,88,0,0,1 -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,24,77777,9,999999999,15,0.093,0,88,0,0,1 -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,77777,9,999999999,15,0.093,0,88,0,0,1 -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,6.7,80,83600,201,1331,294,103,488,29,11933,0,3366,1107,190,2.6,0,0,88,77777,9,999999999,15,0.093,0,88,0,0,1 -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,31806,69289,7175,1072,160,2.1,0,0,88,77777,9,999999999,15,0.093,0,88,0,0,1 -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,6.7,58,83600,687,1331,315,500,846,63,53863,84682,9368,1522,220,1.5,0,0,80,77777,9,999999999,15,0.093,0,88,0,0,1 -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,73879,92395,10933,2072,190,1.5,0,0,96,77777,9,999999999,15,0.093,0,88,0,0,1 -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,90085,96374,11875,2933,120,2.1,0,0,112,77777,9,999999999,15,0.093,0,88,0,0,1 -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,110034,53832,24809,10163,60,2.6,1,1,112,77777,9,999999999,15,0.093,0,88,0,0,1 -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,30,83300,1251,1331,362,910,802,156,114811,52336,19770,8193,220,3.1,2,2,112,77777,9,999999999,15,0.093,0,88,0,0,1 -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,93830,83033,17067,6971,140,3.1,3,3,112,77777,9,999999999,15,0.093,0,88,0,0,1 -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,29,83200,1178,1331,368,874,837,134,91845,85561,17446,5089,140,4.6,4,2,112,77777,9,999999999,15,0.093,0,88,0,0,1 -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,29,83100,1049,1331,369,612,513,207,73558,37342,25005,10169,80,3.1,8,3,112,77777,9,999999999,15,0.093,0,88,0,0,1 -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,4.4,26,83000,870,1331,370,635,762,137,76661,50779,16605,6724,130,2.1,7,2,112,77777,9,999999999,15,0.093,0,88,0,0,1 -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,5,28,83000,653,1331,374,425,622,119,49923,39354,14030,5306,120,5.2,6,3,112,77777,9,999999999,15,0.093,0,88,0,0,1 -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,26143,21709,9317,3211,130,3.1,7,2,96,77777,9,999999999,15,0.093,0,88,0,0,1 -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,5851,0,3722,1154,130,3.1,8,4,80,9144,9,999999999,15,0.093,0,88,0,0,1 -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,2438,9,999999999,15,0.093,0,88,0,1,1 -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,1981,9,999999999,15,0.093,0,88,0,0,1 -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,9144,9,999999999,15,0.093,0,88,0,0,1 -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,77777,9,999999999,15,0.093,0,88,0,0,1 -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,77,83300,0,0,324,0,0,0,0,0,0,0,120,3.1,2,2,32,77777,9,999999999,15,0.093,0,88,0,0,1 -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,77777,9,999999999,15,0.093,0,88,0,0,1 -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,77777,9,999999999,15,0.093,0,88,0,0,1 -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,2,2,32,77777,9,999999999,15,0.093,0,88,0,0,1 -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,9.4,96,83300,0,0,302,0,0,0,0,0,0,0,200,2.6,3,1,24,77777,9,999999999,16,0.093,0,88,0,0,1 -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,8.3,89,83200,15,499,310,2,8,2,0,0,0,0,120,1.5,5,4,80,77777,9,999999999,16,0.093,0,88,0,0,1 -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,11211,0,3898,1265,180,2.6,0,0,96,77777,9,999999999,15,0.093,0,88,0,0,1 -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,7.8,62,83200,450,1331,316,287,683,56,34196,28265,6687,2444,200,2.6,0,0,96,77777,9,999999999,15,0.093,0,88,0,0,1 -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,59177,44394,9666,3812,220,3.1,1,0,96,77777,9,999999999,15,0.093,0,88,0,0,1 -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,78408,47938,12111,5018,210,2.6,2,2,96,77777,9,999999999,15,0.093,0,88,0,0,1 -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,99471,54813,21141,8753,100,3.1,3,3,96,77777,9,999999999,15,0.093,0,88,0,0,1 -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,68250,18459,47100,17291,120,2.1,9,7,96,4267,9,999999999,15,0.093,0,88,0,0.5,1 -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,59975,10517,46767,17396,350,5.2,10,9,96,2591,9,999999999,15,0.093,0,88,0,0,1 -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,11.1,57,83100,1247,1331,370,866,601,302,103683,45330,36380,14284,10,5.2,7,7,96,2438,9,999999999,15,0.093,0,88,0,0,1 -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,88204,39814,34338,13520,70,5.2,8,6,96,9144,9,999999999,14,0.093,0,88,0,0,1 -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,73674,36379,28554,11424,90,4.6,6,5,96,9144,9,999999999,14,0.093,0,88,0,0,1 -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,64690,39546,23005,9002,180,2.1,6,5,96,9144,9,999999999,14,0.093,0,88,0,0,1 -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,38993,25780,17147,6318,50,5.2,7,6,96,9144,9,999999999,14,0.093,0,88,0,0,1 -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,21191,10806,15111,4623,60,6.2,9,8,96,9144,9,999999999,14,0.093,0,88,0,0,1 -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,8151,1029,6353,1678,130,2.1,6,4,96,9144,9,999999999,14,0.093,0,88,0,0,1 -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,77777,9,999999999,14,0.093,0,88,0,0,1 -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,9.4,69,83200,0,0,328,0,0,0,0,0,0,0,50,2.1,2,2,32,77777,9,999999999,13,0.093,0,88,0,0,1 -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,77777,9,999999999,13,0.093,0,88,0,0,1 -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,89,83400,0,0,310,0,0,0,0,0,0,0,350,2.1,1,1,32,77777,9,999999999,13,0.093,0,88,0,0,1 -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,77777,9,999999999,13,0.093,0,88,0,0,1 -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,89,83400,0,0,334,0,0,0,0,0,0,0,30,1.5,8,8,32,1097,9,999999999,13,0.093,0,88,0,0,1 -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,83,83500,0,0,346,0,0,0,0,0,0,0,10,2.1,9,9,32,945,9,999999999,13,0.093,0,88,0,0,1 -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,792,9,999999999,13,0.093,0,88,0,0,1 -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,975,9,999999999,13,0.093,0,88,0,0,1 -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,86,83600,16,521,353,2,0,2,0,0,0,0,10,1,10,10,24,975,9,999999999,12,0.093,0,88,0,0,1 -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,86,83700,206,1331,353,33,0,33,3217,0,3241,1238,350,2.1,10,10,14.4,610,9,999999999,13,0.093,0,88,0,0,1 -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,20314,4147,18109,5448,360,2.1,10,9,24,762,9,999999999,13,0.093,0,88,0,0,1 -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,75,83700,690,1331,354,378,232,258,41958,19496,28801,9487,60,1.5,10,9,12.8,1097,9,999999999,13,0.093,0,88,0,0,1 -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,20827,0,21022,9373,0,0,10,10,12.8,671,9,999999999,13,0.093,0,88,0,0,1 -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,55470,6404,49563,17365,120,3.1,10,9,12.8,1006,9,999999999,13,0.093,0,88,0,0,1 -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,63969,21285,34039,13450,130,3.6,8,8,24,1036,9,999999999,13,0.093,0,88,0,0,1 -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,8.9,49,83500,1253,1331,360,944,663,319,112770,51814,38347,14913,160,3.1,5,5,48,77777,9,999999999,13,0.093,0,88,0,0,1 -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,46,83400,1248,1331,376,803,565,273,96957,41490,33157,13198,120,4.1,6,6,40,1524,9,999999999,14,0.093,0,88,0,0,1 -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,107308,52809,30069,12082,110,3.1,5,5,80,77777,9,999999999,14,0.093,0,88,0,0,1 -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,61759,27835,24997,10180,130,5.2,5,5,80,77777,9,999999999,14,0.093,0,88,0,0,1 -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,68189,42993,16722,6778,120,4.1,4,4,80,77777,9,999999999,14,0.093,0,88,0,0,1 -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,27,83100,657,1331,387,336,354,161,38575,24995,18566,6744,150,5.7,8,6,80,7620,9,999999999,14,0.093,0,88,0,0,1 -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,46,83100,418,1331,369,256,556,81,29337,24584,9312,3228,310,4.1,5,4,80,77777,9,999999999,14,0.093,0,88,0,0,1 -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,56,83200,172,1331,353,68,253,36,7609,0,4039,1246,310,4.1,5,4,80,77777,9,999999999,14,0.093,0,88,0,0,1 -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,77777,9,999999999,15,0.093,0,88,0,0,1 -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,11.1,77,83400,0,0,326,0,0,0,0,0,0,0,290,2.1,1,1,32,77777,9,999999999,15,0.093,0,88,0,0,1 -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,77777,9,999999999,15,0.093,0,88,0,0,1 -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,77777,9,999999999,15,0.093,0,88,0,0,1 -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,77777,9,999999999,15,0.093,0,88,0,0,1 -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,274,9,999999999,15,0.094,0,88,0,0,1 -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,15,0.094,0,88,0,0,1 -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,16,0.094,0,88,0,0,1 -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,16,0.094,0,88,0,0,1 -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,305,9,999999999,16,0.094,0,88,0,0,1 -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,2731,0,2751,1083,350,1.5,10,10,32,366,9,999999999,16,0.094,0,88,0,0,1 -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,77,83700,453,1330,362,75,0,75,7475,0,7535,3142,10,1.5,10,10,48,366,9,999999999,16,0.094,0,88,0,0,1 -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,38603,22133,19390,7159,0,0,6,6,48,3658,9,999999999,15,0.094,0,88,0,0,1 -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,78083,47115,15751,6476,80,1.5,2,2,24,77777,9,999999999,15,0.094,0,88,0,0,1 -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,90944,97045,11628,2914,30,2.1,1,1,24,77777,9,999999999,15,0.094,0,88,0,0,1 -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,97365,94020,12102,4252,10,3.1,1,1,24,77777,9,999999999,15,0.094,0,88,0,0,1 -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,109886,49388,28545,11564,80,4.1,3,3,24,77777,9,999999999,15,0.094,0,88,0,0,1 -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,41,83300,1249,1330,371,946,909,92,101449,94068,12086,5417,50,4.6,2,2,24,77777,9,999999999,15,0.094,0,88,0,0,1 -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,85019,37315,20824,8647,330,2.6,5,5,24,77777,9,999999999,14,0.094,0,88,0,0,1 -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,10.6,40,83100,1053,1330,384,790,812,146,97318,51354,18062,7559,20,3.6,4,4,48,77777,9,999999999,14,0.094,0,88,0,0,1 -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,69461,42206,23072,9059,30,6.2,5,3,16,77777,9,999999999,14,0.094,0,88,0,0,1 -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,48725,35570,14545,5514,30,8.2,7,6,16,9144,9,999999999,14,0.094,0,88,0,0,1 -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,12.2,61,83200,420,1330,377,192,99,160,20793,6377,17414,5055,40,4.1,8,8,16,1676,9,999999999,14,0.094,0,88,0,0,1 -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,9072,0,4042,1253,50,3.1,4,2,19.2,77777,9,999999999,14,0.094,0,88,0,0,1 -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,3658,9,999999999,14,0.094,0,88,0,0,1 -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,8.9,67,83600,0,0,366,0,0,0,0,0,0,0,50,5.7,10,10,11.2,1097,9,999999999,13,0.094,0,88,0,6.6,1 -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,1097,9,999999999,13,0.094,0,88,0,0,1 -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,13,0.094,0,88,0,0.3,1 -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,8534,9,999999999,13,0.094,0,88,0,0,1 -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,77777,9,999999999,13,0.094,0,88,0,0,1 -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,32,77777,9,999999999,13,0.094,0,88,0,0,1 -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,8.3,89,83700,0,0,295,0,0,0,0,0,0,0,260,1.5,0,0,32,77777,9,999999999,12,0.094,0,88,0,0,1 -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,77777,9,999999999,12,0.094,0,88,0,0,1 -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,77777,9,999999999,12,0.094,0,88,0,0,1 -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,10226,1895,4958,1559,190,2.6,0,0,80,77777,9,999999999,12,0.094,0,88,0,0,1 -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,32030,26956,8878,3181,180,2.1,0,0,96,77777,9,999999999,12,0.094,0,88,0,0,1 -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,57681,43556,12582,4903,200,2.6,0,0,96,77777,9,999999999,12,0.094,0,88,0,0,1 -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,82413,51639,15665,6436,190,2.1,0,0,96,77777,9,999999999,12,0.094,0,88,0,0,1 -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,97939,51542,18029,7546,120,2.6,1,1,96,77777,9,999999999,12,0.094,0,88,0,0,1 -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,112405,54259,21714,8978,190,2.1,1,1,96,77777,9,999999999,12,0.094,0,88,0,0,1 -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,118805,54147,20250,8384,120,2.6,1,1,96,77777,9,999999999,12,0.094,0,88,0,0,1 -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,120671,57570,29598,11930,160,3.1,3,3,96,77777,9,999999999,11,0.094,0,88,0,0,1 -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,29,83000,1182,1330,368,886,811,165,110349,54161,20644,8557,130,2.6,2,2,96,77777,9,999999999,11,0.094,0,88,0,0,1 -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,62513,25023,34094,13227,160,3.6,4,4,96,77777,9,999999999,11,0.094,0,88,0,0,1 -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,62235,28059,40444,13644,340,6.2,5,5,96,77777,9,999999999,11,0.094,0,88,0,0,1 -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,47285,35474,17722,6515,50,3.1,3,3,96,77777,9,999999999,11,0.094,0,88,0,0,1 -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,23691,17580,8152,2885,360,5.2,2,2,96,77777,9,999999999,11,0.094,0,88,0,0,1 -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,7673,0,4572,1385,50,4.1,3,1,96,77777,9,999999999,11,0.094,0,88,0,0,1 -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,77777,9,999999999,11,0.094,0,88,0,0,1 -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,77777,9,999999999,11,0.094,0,88,0,0,1 -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,77777,9,999999999,11,0.094,0,88,0,0,1 -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,32,77777,9,999999999,11,0.094,0,88,0,0,1 -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,77777,9,999999999,11,0.094,0,88,0,0,1 -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,77777,9,999999999,10,0.094,0,88,0,0,1 -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,6.7,80,82700,0,0,294,0,0,0,0,0,0,0,220,2.1,0,0,48,77777,9,999999999,10,0.094,0,88,0,0,1 -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,77777,9,999999999,10,0.094,0,88,0,0,1 -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,77777,9,999999999,10,0.094,0,88,0,0,1 -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,77777,9,999999999,10,0.094,0,88,0,0,1 -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,66,82500,211,1329,309,82,159,57,9041,2402,6305,1873,220,2.1,4,3,96,77777,9,999999999,10,0.094,0,88,0,0,1 -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,28763,23871,13362,4464,200,2.1,7,2,96,77777,9,999999999,11,0.094,0,88,0,0,1 -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,54920,43479,20241,7394,180,2.6,8,5,96,7620,9,999999999,11,0.094,0,88,0,0,1 -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,2.2,31,82300,904,1329,352,599,559,218,70245,43282,25695,10003,340,3.6,7,5,80,7620,9,999999999,11,0.094,0,88,0,0,1 -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,84466,43080,33770,13188,350,4.1,6,3,80,77777,9,999999999,11,0.094,0,88,0,0,1 -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,31,82200,1195,1329,369,702,511,242,85137,37787,29511,11877,350,2.1,7,5,80,7620,9,999999999,11,0.094,0,88,0,0,1 -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,-2.2,16,82100,1255,1329,365,957,773,227,117779,57202,28086,11358,40,3.6,3,3,80,77777,9,999999999,11,0.094,0,88,0,0,1 -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,126868,62022,21937,9028,170,2.1,2,2,80,77777,9,999999999,12,0.094,0,88,0,0,1 -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,94485,87572,17998,5348,160,5.2,3,3,64,77777,9,999999999,12,0.094,0,88,0,0,1 -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,92650,51873,24156,9867,330,5.2,6,2,64,77777,9,999999999,12,0.094,0,88,0,0,1 -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,55740,26138,31938,11723,320,5.7,8,8,32,7620,9,999999999,12,0.094,0,88,0,0,1 -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,31236,12584,21723,7661,340,6.2,9,7,32,7620,9,999999999,12,0.094,0,88,0,0,1 -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,24642,17790,13099,4258,350,2.6,8,4,64,77777,9,999999999,13,0.094,0,88,0,0,1 -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,7329,0,4677,1417,340,2.6,6,2,80,77777,9,999999999,13,0.094,0,88,0,0,1 -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,58,82100,9,388,340,1,6,1,0,0,0,0,360,5.2,1,1,32,77777,9,999999999,13,0.094,0,88,0,0,1 -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,77777,9,999999999,13,0.094,0,88,0,0,1 -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,7.8,62,82400,0,0,322,0,0,0,0,0,0,0,300,2.1,1,1,32,77777,9,999999999,13,0.094,0,88,0,0,1 -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,1219,9,999999999,14,0.094,0,88,0,0,1 -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,6.1,55,82400,0,0,353,0,0,0,0,0,0,0,330,2.1,9,9,32,1036,9,999999999,14,0.094,0,88,0,0,1 -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,975,9,999999999,14,0.095,0,88,0,0,1 -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,975,9,999999999,14,0.095,0,88,0,0,1 -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,975,9,999999999,14,0.095,0,88,0,0,1 -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,1128,9,999999999,14,0.095,0,88,0,0,1 -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,1463,9,999999999,15,0.095,0,88,0,0,1 -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,9169,1693,8014,2183,340,3.1,7,7,80,5182,9,999999999,15,0.095,0,88,0,0,1 -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,20593,4654,18162,5502,10,3.6,8,8,80,5182,9,999999999,15,0.095,0,88,0,0,1 -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,40935,25509,19344,7147,350,3.6,7,7,64,7620,9,999999999,15,0.095,0,88,0,0,1 -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,58193,28087,31692,11827,360,4.1,8,6,64,7620,9,999999999,15,0.095,0,88,0,0,1 -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,56,82900,1076,1329,363,577,440,220,69186,31324,26518,10773,360,3.1,7,7,64,4572,9,999999999,16,0.095,0,88,0,0,1 -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,75744,17939,56680,19565,350,3.1,9,9,64,7620,9,999999999,16,0.095,0,88,0,0,1 -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,51,82900,1256,1329,386,698,271,441,81317,23974,51744,18733,360,2.1,9,9,48,4267,9,999999999,16,0.095,0,88,0,0,1 -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,104232,42392,52021,18789,10,3.1,10,8,32,7620,9,999999999,16,0.095,0,88,0,0,1 -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,11.7,59,82900,1184,1329,371,671,391,322,79244,30592,38267,14808,20,5.2,10,7,32,7620,9,999999999,16,0.095,0,88,0,0,1 -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,60221,21708,34989,13542,50,4.6,10,8,40,1219,9,999999999,17,0.095,0,88,0,0,1 -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,51708,20924,32766,11961,60,4.6,9,7,40,2134,9,999999999,17,0.095,0,88,0,1,1 -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,27328,4509,23982,8247,10,5.7,10,9,32,2134,9,999999999,17,0.095,0,88,0,0,1 -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,8736,0,8805,3478,40,2.6,10,10,24,1676,9,999999999,17,0.095,0,88,0,0,1 -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,3107,0,3129,1163,20,2.1,10,10,19.2,1676,9,999999999,17,0.095,0,88,0,0,1 -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,488,9,999999999,18,0.095,0,88,0,0,1 -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,18,0.095,0,88,0,0,1 -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,18,0.095,0,88,0,0.8,1 -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,2743,9,999999999,18,0.095,0,88,0,0,1 -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,77777,9,999999999,18,0.095,0,88,0,0,1 -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,16,0.102,0,88,0,0,1 -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,12.2,96,83700,0,0,365,0,0,0,0,0,0,0,330,0.4,10,10,11.2,244,9,999999999,16,0.102,0,88,0,0,1 -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,12.2,93,83700,0,0,365,0,0,0,0,0,0,0,320,0.2,10,10,11.2,244,9,999999999,16,0.102,0,88,0,0,1 -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,9,9,19.2,488,9,999999999,16,0.102,0,88,0,0,1 -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,2,2,24,77777,9,999999999,16,0.102,0,88,0,0,1 -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,12.8,87,83700,214,1328,335,98,318,47,10949,1920,5266,1651,230,2.6,3,3,24,77777,9,999999999,16,0.102,0,88,0,0,1 -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,29232,22160,8325,3016,210,1.5,1,1,24,77777,9,999999999,16,0.102,0,88,0,0,1 -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,57028,39568,10100,4000,170,2.1,1,1,24,77777,9,999999999,16,0.102,0,88,0,0,1 -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,72676,86759,14125,2321,0,0,1,1,24,77777,9,999999999,16,0.102,0,88,0,0,1 -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,97168,49907,23898,9835,10,2.6,4,1,24,77777,9,999999999,16,0.102,0,88,0,0,1 -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,109412,49820,21087,8754,360,2.6,5,2,24,77777,9,999999999,16,0.102,0,88,0,0,1 -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,114958,50209,19521,8104,350,3.1,3,1,24,77777,9,999999999,16,0.102,0,88,0,0,1 -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,24,83600,1252,1328,377,958,884,124,100848,90533,15953,6982,340,2.6,1,1,32,77777,9,999999999,17,0.102,0,88,0,0,1 -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,94316,88750,15702,4976,20,4.1,1,1,64,77777,9,999999999,17,0.102,0,88,0,0,1 -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,86460,90462,15089,3262,120,2.6,1,1,64,77777,9,999999999,17,0.102,0,88,0,0,1 -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,78173,49390,12199,5032,130,2.6,1,1,64,77777,9,999999999,17,0.102,0,88,0,0,1 -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,53955,42884,15594,5869,130,3.1,2,2,64,77777,9,999999999,17,0.102,0,88,0,0,1 -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,27818,22750,9031,3171,130,3.1,3,3,64,77777,9,999999999,17,0.102,0,88,0,0,1 -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,10,39,83600,186,1328,395,46,95,33,5221,0,3754,1196,110,5.7,7,7,80,3962,9,999999999,17,0.102,0,88,0,0,1 -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,49,83600,11,432,388,2,3,2,0,0,0,0,40,8.2,9,9,48,2286,9,999999999,17,0.102,0,88,0,0,1 -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,2134,9,999999999,17,0.102,0,88,0,0,1 -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,2134,9,999999999,17,0.102,0,88,0,0,1 -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,2743,9,999999999,17,0.102,0,88,0,0,1 -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,2896,9,999999999,17,0.102,0,88,0,0,1 -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,3048,9,999999999,17,0.102,0,88,0,0,1 -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,6096,9,999999999,17,0.102,0,88,0,0,1 -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,3353,9,999999999,17,0.102,0,88,0,0,1 -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,6096,9,999999999,17,0.102,0,88,0,0,1 -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,6096,9,999999999,17,0.102,0,88,0,0,1 -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,11.1,77,84100,215,1328,359,55,22,51,6114,209,5687,1754,230,2.1,9,9,96,2896,9,999999999,17,0.102,0,88,0,0,1 -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,24812,16237,13528,4536,190,2.6,6,6,80,6096,9,999999999,17,0.102,0,88,0,0,1 -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,10.6,55,84200,695,1328,362,377,395,170,43334,27311,19631,7254,260,2.6,5,5,80,77777,9,999999999,17,0.102,0,88,0,0,1 -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,55555,27639,25511,9982,320,2.1,3,3,72,77777,9,999999999,17,0.102,0,88,0,0,1 -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,95685,48849,20184,8411,330,3.6,2,2,72,77777,9,999999999,17,0.102,0,88,0,0,1 -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,73033,26049,36922,14404,350,2.1,6,6,72,1524,9,999999999,17,0.102,0,88,0,0,1 -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,117934,53556,35972,14169,10,3.1,5,5,56,77777,9,999999999,17,0.102,0,88,0,0,1 -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,100865,39815,50380,18394,10,2.6,8,8,56,2134,9,999999999,17,0.102,0,88,0,0,1 -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,41,84000,1186,1328,403,423,107,327,49961,8531,38866,14986,60,4.6,9,9,56,3658,9,999999999,17,0.102,0,88,0,0,1 -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,24187,0,24425,11157,120,6.2,10,10,24,1524,9,999999999,17,0.102,0,88,0,0,1 -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,56309,26285,31592,11683,140,6.7,9,7,64,3658,9,999999999,17,0.102,0,88,0,0,1 -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,19549,1711,18019,6656,120,3.6,9,8,64,4267,9,999999999,17,0.102,0,88,0,0,1 -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,23099,12836,15359,4791,150,4.1,6,6,64,7620,9,999999999,17,0.102,0,88,0,0,1 -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,8156,1020,7003,1881,160,5.2,6,4,80,7620,9,999999999,17,0.102,0,88,0,0,1 -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,3658,9,999999999,17,0.102,0,88,0,0,1 -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,1829,9,999999999,17,0.102,0,88,0,0,1 -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,1372,9,999999999,17,0.102,0,88,0,0,1 -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,1829,9,999999999,17,0.102,0,88,0,0,1 -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,4267,9,999999999,17,0.102,0,88,0,0,1 -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,77777,9,999999999,17,0.103,0,88,0,0,1 -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,77777,9,999999999,17,0.103,0,88,0,0,1 -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,77777,9,999999999,17,0.103,0,88,0,0,1 -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,77777,9,999999999,17,0.103,0,88,0,0,1 -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,77777,9,999999999,17,0.103,0,88,0,0,1 -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,10847,1880,5271,1658,300,2.6,3,1,72,77777,9,999999999,17,0.103,0,88,0,0,1 -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,5672,0,5718,2502,350,2.6,10,10,0.8,61,9,999999999,17,0.103,0,88,0,0,1 -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,50436,34199,21509,7812,330,3.1,8,3,4.8,77777,9,999999999,17,0.103,0,88,0,0,1 -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,62928,31378,31359,11787,350,3.1,10,5,6.4,77777,9,999999999,17,0.103,0,88,0,0,1 -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,90086,44822,29562,11864,350,3.1,10,5,9.6,77777,9,999999999,17,0.103,0,88,0,0,1 -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,100883,44988,30960,12438,340,3.1,9,4,11.2,77777,9,999999999,18,0.103,0,88,0,0,1 -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,67069,23243,24254,9981,0,0,9,4,12.8,77777,9,999999999,18,0.103,0,88,0,0,1 -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,77872,15099,61019,20797,0,0,9,9,16,3658,9,999999999,18,0.103,0,88,0,0,1 -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,54131,8210,44135,16518,50,2.1,9,9,16,3658,9,999999999,18,0.103,0,88,0,0,1 -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,73944,33041,32888,12921,170,6.2,7,7,24,7620,9,999999999,18,0.103,0,88,0,0,1 -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,40274,7257,33783,12278,170,7.7,9,9,24,3658,9,999999999,18,0.103,0,88,0,0,1 -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,30364,11214,21177,7579,180,8.8,9,7,48,2134,9,999999999,18,0.103,0,88,0,0,1 -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,20545,10185,13606,4432,190,5.7,9,8,48,2134,9,999999999,18,0.103,0,88,0,0,1 -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,68,83600,191,1328,376,56,73,45,6192,0,4991,1521,160,6.7,7,6,80,8230,9,999999999,18,0.103,0,88,0,0,1 -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,68,83600,12,454,370,2,7,1,0,0,0,0,160,6.2,5,4,48,77777,9,999999999,18,0.103,0,88,0,0,1 -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,14.4,70,83600,0,0,346,0,0,0,0,0,0,0,160,4.1,0,0,40,77777,9,999999999,18,0.103,0,88,0,0,1 -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,77777,9,999999999,18,0.103,0,88,0,0,1 -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,77777,9,999999999,18,0.103,0,88,0,0,1 -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,77777,9,999999999,18,0.103,0,88,0,0,1 -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,12.8,87,83500,0,0,321,0,0,0,0,0,0,0,190,2.1,0,0,40,77777,9,999999999,18,0.103,0,88,0,0,1 -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,11.7,81,83500,0,0,320,0,0,0,0,0,0,0,310,1.5,0,0,40,77777,9,999999999,18,0.103,0,88,0,0,1 -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,77777,9,999999999,18,0.103,0,88,0,0,1 -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,77777,9,999999999,18,0.103,0,88,0,0,1 -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,83,83500,21,608,325,4,2,4,0,0,0,0,190,2.6,9,4,96,6096,9,999999999,18,0.103,0,88,0,0,1 -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,10,72,83600,217,1327,344,62,36,56,6851,474,6208,1879,210,2.1,9,7,96,6096,9,999999999,18,0.103,0,88,0,0,1 -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,11122,1883,9529,3405,220,3.1,9,8,80,3962,9,999999999,18,0.103,0,88,0,0,1 -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,35365,14600,24191,8519,200,3.1,9,7,112,3962,9,999999999,17,0.103,0,88,0,0,1 -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,53359,27701,21611,8651,190,3.6,8,6,112,7010,9,999999999,17,0.103,0,88,0,0,1 -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,72219,33739,31175,12349,250,2.1,7,5,112,6706,9,999999999,17,0.103,0,88,0,0,1 -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,73856,26879,39725,15232,270,1.5,8,6,112,6096,9,999999999,17,0.103,0,88,0,0,1 -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,15,83500,1258,1327,396,504,320,200,62618,22687,24973,10203,140,3.6,7,5,112,6096,9,999999999,17,0.103,0,88,0,0,1 -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.6,15,83400,1254,1327,397,797,439,381,94253,38253,45357,16992,120,4.1,6,4,112,6096,9,999999999,16,0.103,0,88,0,0,1 -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,104127,52473,32240,12803,80,3.6,4,2,112,77777,9,999999999,16,0.103,0,88,0,0,1 -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,90573,50742,28913,11549,90,4.6,4,3,112,77777,9,999999999,16,0.103,0,88,0,0,1 -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,72365,47164,26515,10178,90,4.1,4,4,96,77777,9,999999999,16,0.103,0,88,0,0,1 -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,52128,41775,17915,6611,120,4.1,4,4,64,77777,9,999999999,16,0.103,0,88,0,0,1 -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,14,83200,436,1327,403,106,72,82,12245,3604,9502,3322,80,3.1,6,6,64,6096,9,999999999,15,0.103,0,88,0,0,1 -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,16,83200,193,1327,390,51,53,43,5709,290,4826,1480,120,3.6,5,5,80,77777,9,999999999,15,0.103,0,88,0,0,1 -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,77777,9,999999999,15,0.103,0,88,0,0,1 -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,31,83300,0,0,363,0,0,0,0,0,0,0,0,0,3,3,32,77777,9,999999999,15,0.103,0,88,0,0,1 -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,77777,9,999999999,15,0.103,0,88,0,0,1 -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,77777,9,999999999,14,0.103,0,88,0,0,1 -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,77777,9,999999999,14,0.103,0,88,0,0,1 -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,77777,9,999999999,14,0.103,0,88,0,0,1 -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,77777,9,999999999,14,0.103,0,88,0,0,1 -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,7.2,60,83600,0,0,315,0,0,0,0,0,0,0,300,3.1,0,0,40,77777,9,999999999,13,0.103,0,88,0,0,1 -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,77777,9,999999999,13,0.103,0,88,0,0,1 -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,77777,9,999999999,13,0.103,0,88,0,0,1 -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,11972,2452,4457,1443,200,4.1,0,0,96,77777,9,999999999,13,0.103,0,88,0,0,1 -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,34577,29733,7597,2770,200,3.6,0,0,96,77777,9,999999999,13,0.103,0,88,0,0,1 -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,60457,45564,10593,4177,220,2.1,0,0,96,77777,9,999999999,13,0.103,0,88,0,0,1 -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,85238,52556,13053,5409,230,1.5,0,0,96,77777,9,999999999,14,0.103,0,88,0,0,1 -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,89337,91431,15791,3531,10,1.5,0,0,96,77777,9,999999999,14,0.103,0,88,0,0,1 -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,98742,91507,17105,5606,110,4.1,1,0,96,77777,9,999999999,14,0.103,0,88,0,0,1 -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,104832,93069,17360,7801,130,4.1,1,0,96,77777,9,999999999,14,0.103,0,88,0,0,1 -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,4.4,20,83600,1255,1327,390,943,856,133,98963,87548,17020,7515,100,6.2,2,1,96,77777,9,999999999,14,0.103,0,88,0,0,1 -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,111545,54070,18924,7870,120,5.7,3,1,96,77777,9,999999999,14,0.103,0,88,0,0,1 -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,82302,84218,15955,3393,140,5.7,2,1,96,77777,9,999999999,14,0.103,0,88,0,0,1 -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,81175,51362,12788,5276,130,5.7,3,3,96,77777,9,999999999,14,0.103,0,88,0,0,1 -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,55724,43730,14308,5465,120,5.7,2,2,96,77777,9,999999999,15,0.103,0,88,0,0,1 -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,26032,20085,12331,4126,140,7.7,4,3,80,77777,9,999999999,15,0.103,0,88,0,0,1 -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,9557,2521,6648,1863,150,6.7,4,4,80,77777,9,999999999,15,0.103,0,88,0,0,1 -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,7.2,32,83400,14,475,380,2,7,2,0,0,0,0,140,3.6,6,4,80,6096,9,999999999,15,0.103,0,88,0,0,1 -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,77777,9,999999999,15,0.103,0,88,0,0,1 -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,77777,9,999999999,15,0.103,0,88,0,0,1 -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,77777,9,999999999,15,0.103,0,88,0,0,1 -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,77777,9,999999999,15,0.103,0,88,0,0,1 -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,77777,9,999999999,15,0.103,0,88,0,0,1 -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,6.1,40,83300,0,0,337,0,0,0,0,0,0,0,150,6.2,0,0,40,77777,9,999999999,16,0.103,0,88,0,0,1 -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,77777,9,999999999,16,0.103,0,88,0,0,1 -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,77777,9,999999999,16,0.103,0,88,0,0,1 -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,77777,9,999999999,16,0.103,0,88,0,0,1 -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,12227,2313,4352,1416,170,2.6,0,0,80,77777,9,999999999,16,0.103,0,88,0,0,1 -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,34917,29211,7262,2659,240,3.1,0,0,96,77777,9,999999999,15,0.103,0,88,0,0,1 -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,60818,44981,10022,3964,190,5.2,0,0,96,77777,9,999999999,15,0.103,0,88,0,0,1 -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,73088,87547,13824,2323,190,6.2,0,0,96,77777,9,999999999,15,0.103,0,88,0,0,1 -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,3.3,18,83200,1078,1326,381,844,901,112,88983,91844,15020,3455,160,5.7,0,0,96,77777,9,999999999,15,0.103,0,88,0,0,1 -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,99641,93722,15621,5300,210,6.2,0,0,112,77777,9,999999999,14,0.103,0,88,0,0,1 -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,99631,89154,15777,7288,170,5.2,1,1,112,77777,9,999999999,14,0.103,0,88,0,0,1 -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,117145,55129,21823,8989,130,7.2,3,3,112,77777,9,999999999,14,0.103,0,88,0,0,1 -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,12,82900,1189,1326,414,927,797,212,113650,58124,26125,10634,150,7.2,5,5,112,77777,9,999999999,14,0.103,0,88,0,0,1 -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,68981,33565,27495,11058,170,7.7,6,5,112,7620,9,999999999,13,0.103,0,88,0,0,1 -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,57964,30757,29897,11199,180,6.7,9,7,112,4877,9,999999999,13,0.103,0,88,0,0,1 -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,31717,11756,23451,8166,280,4.1,8,6,112,8230,9,999999999,13,0.103,0,88,0,0,1 -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,2.8,18,82800,440,1326,403,215,206,147,23694,13635,16274,5015,220,3.6,6,5,112,8230,9,999999999,13,0.103,0,88,0,0,1 -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,9980,2513,6052,1764,180,3.1,3,3,112,77777,9,999999999,13,0.103,0,88,0,0,1 -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,77777,9,999999999,12,0.103,0,88,0,0,1 -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,77777,9,999999999,12,0.103,0,88,0,0,1 -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,77777,9,999999999,12,0.103,0,88,0,0,1 -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,-3.9,19,82900,0,0,331,0,0,0,0,0,0,0,190,3.1,3,1,40,77777,9,999999999,12,0.103,0,88,0,0,1 -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,77777,9,999999999,11,0.103,0,88,0,0,1 -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,32,82900,0,0,353,0,0,0,0,0,0,0,140,3.6,10,9,40,7010,9,999999999,11,0.104,0,88,0,0,1 -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,33,82900,0,0,351,0,0,0,0,0,0,0,160,2.1,10,9,40,7010,9,999999999,11,0.104,0,88,0,0,1 -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,7010,9,999999999,11,0.104,0,88,0,0,1 -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,7010,9,999999999,10,0.104,0,88,0,0,1 -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,77777,9,999999999,10,0.104,0,88,0,0,1 -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,8400,2134,4893,1561,210,3.6,5,5,96,77777,9,999999999,10,0.104,0,88,0,0,1 -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,22178,14909,11817,4079,220,5.7,5,4,96,77777,9,999999999,10,0.104,0,88,0,0,1 -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,19,83100,697,1326,353,507,815,78,62175,47961,9591,3792,220,2.6,0,0,96,77777,9,999999999,10,0.104,0,88,0,0,1 -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,16,83100,907,1326,366,698,880,95,73663,88893,13281,2297,220,1.5,0,0,112,77777,9,999999999,10,0.104,0,88,0,0,1 -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,10,83100,1078,1326,365,849,907,112,88696,91719,14999,3459,310,3.6,1,0,112,77777,9,999999999,11,0.104,0,88,0,0,1 -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,-6.1,9,83100,1198,1326,376,905,829,155,113838,57084,19582,8112,140,3.6,5,1,112,77777,9,999999999,11,0.104,0,88,0,0,1 -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,99829,87739,17807,8028,40,2.6,4,1,112,77777,9,999999999,11,0.104,0,88,0,0,1 -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,9,83000,1256,1326,398,984,864,165,124098,59612,20904,8620,170,4.6,4,4,112,77777,9,999999999,11,0.104,0,88,0,0,1 -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,88040,41346,29914,11991,170,3.6,4,4,112,77777,9,999999999,11,0.104,0,88,0,0,1 -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,76074,39999,23114,9476,140,4.1,4,4,112,77777,9,999999999,11,0.104,0,88,0,0,1 -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,9,82800,891,1326,392,571,613,159,68584,44188,19180,7711,350,2.1,6,4,112,8534,9,999999999,11,0.104,0,88,0,0,1 -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,9,82800,678,1326,401,483,649,151,56137,46682,17624,6539,320,3.1,6,5,112,8534,9,999999999,11,0.104,0,88,0,0,1 -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,20631,12243,12902,4279,350,5.2,5,5,112,77777,9,999999999,11,0.104,0,88,0,0,1 -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,19,82900,200,1326,371,56,113,38,6352,453,4321,1367,360,3.6,4,4,112,77777,9,999999999,11,0.104,0,88,0,0,1 -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,77777,9,999999999,11,0.104,0,88,0,0,1 -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,77777,9,999999999,12,0.104,0,88,0,0,1 -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,49,83200,0,0,361,0,0,0,0,0,0,0,60,4.1,3,3,32,77777,9,999999999,12,0.104,0,88,0,0,1 -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,77777,9,999999999,12,0.104,0,88,0,0,1 -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,77777,9,999999999,12,0.104,0,88,0,0,1 -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,77777,9,999999999,12,0.104,0,88,0,0,1 -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,5.6,53,83500,0,0,314,0,0,0,0,0,0,0,350,1.5,0,0,40,77777,9,999999999,12,0.104,0,88,0,0,1 -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,57,83600,0,0,306,0,0,0,0,0,0,0,300,2.1,0,0,40,77777,9,999999999,12,0.104,0,88,0,0,1 -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,57,83600,0,0,306,0,0,0,0,0,0,0,0,0,0,0,40,77777,9,999999999,12,0.104,0,88,0,0,1 -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,32,77777,9,999999999,12,0.104,0,88,0,0,1 -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,12785,2350,4040,1327,40,2.6,0,0,80,77777,9,999999999,12,0.104,0,88,0,0,1 -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,36055,31185,6722,2469,30,2.6,0,0,80,77777,9,999999999,12,0.104,0,88,0,0,1 -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,3.3,33,83900,697,1326,333,506,818,75,53945,81528,11015,1631,40,2.1,0,0,80,77777,9,999999999,12,0.104,0,88,0,0,1 -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,73752,89463,12760,2265,70,2.1,0,0,80,77777,9,999999999,12,0.104,0,88,0,0,1 -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,90119,93987,13757,3303,180,2.1,0,0,80,77777,9,999999999,13,0.104,0,88,0,0,1 -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,101649,96546,14417,5023,100,2.1,0,0,80,77777,9,999999999,13,0.104,0,88,0,0,1 -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,100595,90656,14475,6842,130,3.6,1,1,96,77777,9,999999999,13,0.104,0,88,0,0,1 -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,25,83600,1256,1326,383,945,794,192,117585,54316,24009,9849,170,4.1,3,3,96,77777,9,999999999,13,0.104,0,88,0,0,1 -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,102263,48459,35173,13819,90,5.7,5,5,96,77777,9,999999999,13,0.104,0,88,0,0,1 -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,73382,34941,26715,10830,130,5.7,4,4,80,77777,9,999999999,13,0.104,0,88,0,0,1 -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,36,83500,892,1326,389,615,754,107,75767,45188,13228,5469,130,6.2,4,4,80,77777,9,999999999,13,0.104,0,88,0,0,1 -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,48165,34943,13982,5371,140,3.6,3,3,80,77777,9,999999999,13,0.104,0,88,0,0,1 -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,28329,23352,10775,3725,0,0,2,2,80,77777,9,999999999,13,0.104,0,88,0,0,1 -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,8.9,36,83600,201,1326,379,83,287,39,9374,391,4415,1400,50,5.7,3,3,80,77777,9,999999999,13,0.104,0,88,0,0,1 -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,77777,9,999999999,13,0.104,0,88,0,0,1 -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,77777,9,999999999,13,0.104,0,88,0,0,1 -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,77777,9,999999999,13,0.104,0,88,0,0,1 -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,77777,9,999999999,13,0.104,0,88,0,0,1 -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,77777,9,999999999,13,0.104,0,88,0,0,1 -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,77777,9,999999999,13,0.104,0,88,0,0,1 -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,77777,9,999999999,13,0.104,0,88,0,0,1 -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,77777,9,999999999,13,0.104,0,88,0,0,1 -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,4,4,40,77777,9,999999999,13,0.104,0,88,0,0,1 -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,5,5,40,77777,9,999999999,13,0.104,0,88,0,0,1 -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,9883,2784,8067,2241,150,2.1,4,4,72,77777,9,999999999,13,0.104,0,88,0,0,1 -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,27831,21964,14028,4667,240,2.1,2,2,80,77777,9,999999999,13,0.104,0,88,0,0,1 -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,50378,38021,17800,6679,160,2.1,1,0,80,77777,9,999999999,13,0.104,0,88,0,0,1 -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,77505,50923,22128,8814,140,3.6,0,0,96,77777,9,999999999,13,0.104,0,88,0,0,1 -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,28,84200,1078,1325,325,811,740,209,98056,54931,25397,10340,150,5.2,0,0,96,77777,9,999999999,13,0.104,0,88,0,0,1 -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,112928,57062,27644,11195,140,5.7,0,0,96,77777,9,999999999,13,0.104,0,88,0,0,1 -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,120588,57454,28768,11620,90,4.1,0,0,96,77777,9,999999999,13,0.104,0,88,0,0,1 -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,120339,57415,28643,11575,150,3.6,0,0,96,77777,9,999999999,13,0.104,0,88,0,0,1 -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,107799,53305,29172,11754,100,3.6,1,1,96,77777,9,999999999,13,0.104,0,88,0,0,1 -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,5,28,83800,1067,1325,377,659,456,291,77416,37103,34387,13366,60,3.6,6,4,80,7010,9,999999999,13,0.104,0,88,0,0,1 -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,4.4,26,83800,894,1325,402,269,122,186,31862,8872,22135,8783,70,4.1,9,9,80,3962,9,999999999,13,0.104,0,88,0,0,1 -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,19426,2802,17055,6386,50,3.6,9,9,80,3962,9,999999999,13,0.104,0,88,0,0,1 -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,25928,19620,13523,4454,80,5.2,4,3,80,77777,9,999999999,13,0.104,0,88,0,0,1 -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,8563,1612,7181,1993,110,5.2,2,2,80,77777,9,999999999,13,0.104,0,88,0,0,1 -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,77777,9,999999999,13,0.104,0,88,0,0,1 -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,77777,9,999999999,13,0.104,0,88,0,0,1 -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,77777,9,999999999,13,0.104,0,88,0,0,1 -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,7.2,60,84000,0,0,315,0,0,0,0,0,0,0,160,2.1,0,0,48,77777,9,999999999,13,0.104,0,88,0,0,1 -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,77777,9,999999999,13,0.104,0,88,0,0,1 -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,77777,9,999999999,13,0.104,0,88,0,0,1 -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,61,84100,0,0,301,0,0,0,0,0,0,0,330,2.6,0,0,32,77777,9,999999999,13,0.104,0,88,0,0,1 -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,77777,9,999999999,13,0.104,0,88,0,0,1 -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,1.1,54,84200,0,0,288,0,0,0,0,0,0,0,330,2.1,0,0,48,77777,9,999999999,13,0.104,0,88,0,0,1 -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.6,52,84200,23,629,287,7,89,4,0,0,0,0,330,1.5,0,0,112,77777,9,999999999,13,0.104,0,88,0,0,1 -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,13826,2351,3403,1135,0,0,0,0,112,77777,9,999999999,13,0.104,0,88,0,0,1 -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,33128,71099,7004,1087,360,2.6,0,0,112,77777,9,999999999,13,0.104,0,88,0,0,1 -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,54759,85379,9053,1521,70,2.6,0,0,112,77777,9,999999999,13,0.104,0,88,0,0,1 -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.6,27,84200,907,1325,330,701,916,74,74583,92761,10492,2063,0,0,0,0,112,77777,9,999999999,13,0.104,0,88,0,0,1 -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,24,84200,1078,1325,335,855,949,83,90565,96584,11320,2923,70,2.6,0,0,112,77777,9,999999999,13,0.104,0,88,0,0,1 -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,23,84200,1198,1325,340,964,967,89,101829,98595,11798,4323,60,3.1,0,0,112,77777,9,999999999,13,0.104,0,88,0,0,1 -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,21,84100,1259,1325,359,960,823,177,120402,56606,22305,9176,0,0,2,2,112,77777,9,999999999,13,0.104,0,88,0,0,1 -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,19,84000,1257,1325,368,910,820,131,94974,83447,16750,7616,30,2.1,3,3,112,77777,9,999999999,13,0.104,0,88,0,0,1 -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,19,83900,1192,1325,367,898,831,150,112999,55657,18957,7874,70,3.6,5,2,112,77777,9,999999999,13,0.104,0,88,0,0,1 -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,18,83900,1068,1325,379,863,879,153,106638,60179,18986,7906,350,2.1,5,5,112,77777,9,999999999,13,0.104,0,88,0,0,1 -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,17,83800,895,1325,373,636,783,107,78671,50273,13280,5475,220,1.5,2,2,96,77777,9,999999999,13,0.104,0,88,0,0,1 -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,17,83800,683,1325,368,473,797,62,50488,79053,9219,1508,120,3.1,1,1,80,77777,9,999999999,13,0.104,0,88,0,0,1 -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,31976,28288,8015,2880,120,3.1,2,2,80,77777,9,999999999,13,0.104,0,88,0,0,1 -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,12309,2019,4226,1353,60,4.1,3,3,80,77777,9,999999999,13,0.104,0,88,0,0,1 -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,77777,9,999999999,13,0.104,0,88,0,0,1 -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,2.2,31,83900,0,0,338,0,0,0,0,0,0,0,120,2.1,1,1,48,77777,9,999999999,13,0.104,0,88,0,0,1 -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,77777,9,999999999,13,0.104,0,88,0,0,1 -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,77777,9,999999999,13,0.104,0,88,0,0,1 -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,77777,9,999999999,13,0.104,0,88,0,0,1 -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,46,83800,0,0,320,0,0,0,0,0,0,0,180,3.1,0,0,32,77777,9,999999999,13,0.104,0,88,0,0,1 -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,69,83700,0,0,321,0,0,0,0,0,0,0,230,2.1,0,0,32,77777,9,999999999,13,0.104,0,88,0,0,1 -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,77777,9,999999999,13,0.104,0,88,0,0,1 -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,77777,9,999999999,13,0.104,0,88,0,0,1 -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,77777,9,999999999,13,0.104,0,88,0,0,1 -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,12173,3201,4676,1509,300,1.5,1,1,64,77777,9,999999999,13,0.104,0,88,0,0,1 -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,36306,30492,6385,2354,350,2.1,1,0,80,77777,9,999999999,13,0.104,0,88,0,0,1 -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,54360,83234,10178,1596,350,1.5,0,0,80,77777,9,999999999,13,0.104,0,88,0,0,1 -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,74140,90942,11831,2195,10,2.6,0,0,96,77777,9,999999999,13,0.104,0,88,0,0,1 -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,90375,95104,12736,3159,30,3.6,0,0,80,77777,9,999999999,13,0.104,0,88,0,0,1 -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,5.6,29,83800,1198,1325,360,962,951,101,102031,97557,13302,4751,40,2.6,0,0,80,77777,9,999999999,13,0.104,0,88,0,0,1 -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,107616,98370,13493,6514,40,3.1,0,0,80,77777,9,999999999,13,0.104,0,88,0,0,1 -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,102314,93398,13254,6327,120,3.1,1,1,80,77777,9,999999999,13,0.104,0,88,0,0,1 -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,2.8,18,83600,1192,1325,397,932,829,185,115413,57516,23020,9471,120,2.6,3,3,80,77777,9,999999999,13,0.104,0,88,0,0,1 -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,93836,51214,20356,8445,100,2.1,2,2,80,77777,9,999999999,13,0.104,0,88,0,0,1 -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,2.2,17,83500,896,1325,396,521,543,154,62684,37712,18607,7526,360,4.1,3,3,80,77777,9,999999999,13,0.104,0,88,0,0,1 -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,48769,34141,23883,8336,360,4.1,5,4,80,77777,9,999999999,13,0.104,0,88,0,0,1 -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,21177,15556,6474,2365,100,3.6,6,5,80,9144,9,999999999,13,0.104,0,88,0,0,1 -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,9777,2434,7983,2134,160,4.1,6,5,80,9144,9,999999999,13,0.104,0,88,0,0,1 -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,9144,9,999999999,13,0.104,0,88,0,0,1 -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,77777,9,999999999,13,0.104,0,88,0,0,1 -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,77777,9,999999999,13,0.104,0,88,0,0,1 -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,77777,9,999999999,13,0.104,0,88,0,0,1 -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,7.2,43,83500,0,0,338,0,0,0,0,0,0,0,190,4.6,0,0,48,77777,9,999999999,13,0.104,0,88,0,0,1 -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,77777,9,999999999,13,0.104,0,88,0,0,1 -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,77777,9,999999999,13,0.104,0,88,0,0,1 -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,77777,9,999999999,13,0.104,0,88,0,0,1 -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,77777,9,999999999,13,0.104,0,88,0,0,1 -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,77777,9,999999999,13,0.104,0,88,0,0,1 -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,10934,3918,5312,1676,210,4.1,5,2,112,77777,9,999999999,13,0.104,0,88,0,0,1 -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,30173,25673,8594,3103,190,4.6,4,1,112,77777,9,999999999,13,0.104,0,88,0,0,1 -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,55180,42608,14619,5632,200,5.7,4,2,112,77777,9,999999999,13,0.104,0,88,0,0,1 -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,74972,46625,15592,6410,180,5.2,3,3,128,77777,9,999999999,13,0.104,0,88,0,0,1 -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,84252,84620,16645,3632,200,5.2,2,2,128,77777,9,999999999,13,0.104,0,88,0,0,1 -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,12,83300,1198,1325,411,795,663,195,98230,47175,24213,9919,170,3.1,5,3,128,77777,9,999999999,13,0.104,0,88,0,0,1 -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,107183,49658,29256,11789,190,4.1,7,5,128,7620,9,999999999,13,0.104,0,88,0,0,1 -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,57637,17000,32108,12798,210,5.7,10,8,112,7620,9,999999999,13,0.104,0,88,0,0,1 -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,57972,18016,33629,13275,190,2.6,9,7,112,5486,9,999999999,13,0.104,0,88,0,0,1 -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,81345,28629,56973,18701,350,6.2,9,8,96,5486,9,999999999,13,0.104,0,88,0,0,1 -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,25469,0,25704,10879,360,3.1,10,10,96,3658,9,999999999,14,0.104,0,88,0,0,1 -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,18169,0,18326,7444,60,4.1,10,10,96,4572,9,999999999,14,0.104,0,88,0,0,1 -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,10498,0,10581,4077,120,2.1,10,10,96,4572,9,999999999,14,0.104,0,88,0,0,1 -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,3815,0,3842,1418,150,2.1,10,10,96,4572,9,999999999,14,0.104,0,88,0,0,1 -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,4572,9,999999999,14,0.104,0,88,0,0,1 -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,4572,9,999999999,14,0.104,0,88,0,0,1 -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,4.4,36,83300,0,0,346,0,0,0,0,0,0,0,180,1.5,2,2,40,77777,9,999999999,14,0.104,0,88,0,0,1 -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,40,83300,0,0,337,0,0,0,0,0,0,0,190,3.6,1,1,40,77777,9,999999999,14,0.104,0,88,0,0,1 -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,77777,9,999999999,14,0.104,0,88,0,0,1 -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,77777,9,999999999,14,0.104,0,88,0,0,1 -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,77777,9,999999999,14,0.104,0,88,0,0,1 -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,77777,9,999999999,14,0.104,0,88,0,0,1 -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,5,51,83300,0,0,319,0,0,0,0,0,0,0,210,3.1,4,1,64,77777,9,999999999,15,0.104,0,88,0,0,1 -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,5,51,83300,24,629,319,6,61,4,0,0,0,0,210,3.6,4,1,96,77777,9,999999999,15,0.104,0,88,0,0,1 -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,12836,3512,4365,1422,200,3.6,5,0,96,77777,9,999999999,15,0.104,0,88,0,0,1 -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,35,83200,463,1324,340,299,673,64,35438,30800,7604,2775,220,3.6,5,0,96,77777,9,999999999,15,0.104,0,88,0,0,1 -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,51980,39214,16692,6331,190,7.2,5,3,112,77777,9,999999999,14,0.104,0,88,0,0,1 -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,3.3,18,83200,907,1324,394,646,751,132,78779,49716,16160,6631,210,4.6,6,2,112,77777,9,999999999,14,0.104,0,88,0,0,1 -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,90270,49044,22120,9120,210,2.1,9,3,112,77777,9,999999999,14,0.104,0,88,0,0,1 -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,113294,55717,19449,8067,90,1.5,7,2,112,77777,9,999999999,14,0.104,0,88,0,0,1 -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,108461,50611,31655,12644,180,2.1,9,3,112,77777,9,999999999,14,0.104,0,88,0,0,1 -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,11,83000,1258,1324,426,1002,780,260,122129,59482,31870,12720,360,3.1,10,4,112,77777,9,999999999,14,0.104,0,88,0,0,1 -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,84845,37258,35079,13758,270,2.6,10,5,112,77777,9,999999999,14,0.104,0,88,0,0,1 -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,11,82800,1071,1324,430,649,524,226,77912,39905,27273,11002,280,2.1,10,5,112,77777,9,999999999,14,0.104,0,88,0,0,1 -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,36576,17296,14782,6072,300,4.6,8,8,104,4877,9,999999999,14,0.104,0,88,0,0,1 -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,25421,1149,24757,8565,310,3.6,9,9,96,6096,9,999999999,14,0.104,0,88,0,0,1 -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,12,82800,452,1324,439,175,57,155,19284,3956,17160,5270,320,2.6,9,9,96,6096,9,999999999,14,0.104,0,88,0,0,1 -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,14,82800,210,1324,435,43,0,43,4213,0,4243,1532,50,2.1,10,10,96,6096,9,999999999,14,0.104,0,88,0,0,1 -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,6096,9,999999999,14,0.104,0,88,0,0,1 -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,1.1,21,82800,0,0,366,0,0,0,0,0,0,0,170,3.6,7,2,40,77777,9,999999999,14,0.104,0,88,0,0,1 -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.6,20,82800,0,0,372,0,0,0,0,0,0,0,190,4.6,8,4,40,6096,9,999999999,14,0.104,0,88,0,0,1 -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,6096,9,999999999,13,0.104,0,88,0,0,1 -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,77777,9,999999999,13,0.104,0,88,0,0,1 -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,77777,9,999999999,13,0.104,0,88,0,0,1 -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,77777,9,999999999,13,0.104,0,88,0,0,1 -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,7620,9,999999999,13,0.104,0,88,0,0,1 -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,7620,9,999999999,13,0.104,0,88,0,0,1 -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,7925,9,999999999,13,0.104,0,88,0,0,1 -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,9993,3521,7162,2089,170,4.1,10,6,96,7925,9,999999999,13,0.104,0,88,0,0,1 -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,27530,19854,15672,5060,170,3.6,10,6,96,7925,9,999999999,13,0.104,0,88,0,0,1 -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,43327,24634,25748,8898,180,3.6,9,6,96,7925,9,999999999,13,0.104,0,88,0,0,1 -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,59626,27663,36082,12989,220,3.6,8,8,112,6401,9,999999999,13,0.104,0,88,0,0,1 -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,51284,18688,27889,11221,240,2.1,7,6,112,6401,9,999999999,13,0.104,0,88,0,0,1 -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,62313,19247,37471,14524,350,2.1,8,8,112,6401,9,999999999,13,0.104,0,88,0,0,1 -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,110084,52061,35534,13962,210,6.2,5,5,112,77777,9,999999999,13,0.104,0,88,0,0,1 -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,102313,46470,37663,14658,300,3.1,6,5,128,8230,9,999999999,13,0.104,0,88,0,0,1 -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,115999,60205,26746,10855,180,5.7,5,5,128,77777,9,999999999,13,0.104,0,88,0,0,1 -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,89562,49519,25056,10201,200,2.6,3,3,128,77777,9,999999999,13,0.104,0,88,0,0,1 -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,77526,50539,15366,6297,300,2.1,2,2,128,77777,9,999999999,13,0.104,0,88,0,0,1 -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,41965,29251,16902,6351,310,4.6,8,4,112,8534,9,999999999,13,0.104,0,88,0,0,1 -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,28623,24756,9764,3445,330,5.2,7,4,112,8534,9,999999999,13,0.104,0,88,0,0,1 -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,12,82500,212,1324,411,89,162,63,9745,3236,6922,1990,360,3.6,6,4,96,7620,9,999999999,13,0.104,0,88,0,0,1 -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,7620,9,999999999,13,0.104,0,88,0,0,1 -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,8.3,35,82900,0,0,379,0,0,0,0,0,0,0,60,7.2,3,3,48,77777,9,999999999,13,0.104,0,88,0,0,1 -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,77777,9,999999999,13,0.104,0,88,0,0,1 -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,77777,9,999999999,13,0.104,0,88,0,0,1 -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,77777,9,999999999,13,0.104,0,88,0,0,1 -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,77777,9,999999999,13,0.103,0,88,0,0,1 -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,77777,9,999999999,13,0.103,0,88,0,0,1 -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,77777,9,999999999,13,0.103,0,88,0,0,1 -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,77777,9,999999999,13,0.103,0,88,0,0,1 -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,96,77777,9,999999999,13,0.103,0,88,0,0,1 -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,13187,1578,3507,1169,230,2.1,1,1,96,77777,9,999999999,13,0.103,0,88,0,0,1 -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,41,83300,462,1324,338,270,596,61,32117,26829,7273,2662,90,1,2,2,96,77777,9,999999999,13,0.103,0,88,0,0,1 -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,9.4,50,83300,696,1324,355,419,479,167,48297,33219,19337,7179,50,3.1,3,3,88,77777,9,999999999,13,0.103,0,88,0,0,1 -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,49,83300,906,1324,367,520,582,121,63654,35879,14867,6142,150,2.6,5,5,80,77777,9,999999999,13,0.103,0,88,0,0,1 -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,47,83300,1077,1324,370,614,577,144,76065,36422,17915,7508,50,5.2,5,5,72,77777,9,999999999,14,0.103,0,88,0,0,1 -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,44,83200,1197,1324,366,916,861,137,97116,88791,17732,5804,20,2.1,2,2,72,77777,9,999999999,14,0.103,0,88,0,0,1 -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,10,39,83200,1259,1324,365,1021,985,84,109770,102001,11056,5512,190,2.1,0,0,64,77777,9,999999999,14,0.103,0,88,0,0,1 -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,109816,102021,11062,5467,70,2.1,0,0,64,77777,9,999999999,14,0.103,0,88,0,0,1 -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,103218,100599,10825,3970,140,6.2,0,0,64,77777,9,999999999,14,0.103,0,88,0,0,1 -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,91450,98454,10448,2717,140,5.7,0,0,64,77777,9,999999999,14,0.103,0,88,0,0,1 -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,74894,94556,9310,1895,180,6.2,1,1,64,77777,9,999999999,14,0.103,0,88,0,0,1 -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,10.6,30,82800,689,1324,398,476,789,65,51646,79589,9653,1547,350,7.2,1,1,64,77777,9,999999999,14,0.103,0,88,0,0,1 -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,33512,73735,6285,1024,310,5.2,0,0,56,77777,9,999999999,14,0.103,0,88,0,0,1 -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,12574,43911,4237,587,330,3.1,0,0,48,77777,9,999999999,14,0.103,0,88,0,0,1 -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,77777,9,999999999,14,0.103,0,88,0,0,1 -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,40,77777,9,999999999,14,0.103,0,88,0,0,1 -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,77777,9,999999999,14,0.103,0,88,0,0,1 -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,11.7,59,83100,0,0,343,0,0,0,0,0,0,0,230,2.6,0,0,40,77777,9,999999999,14,0.103,0,88,0,0,1 -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,77777,9,999999999,14,0.103,0,88,0,0,1 -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,77777,9,999999999,14,0.103,0,88,0,0,1 -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,396,9,999999999,14,0.103,0,88,0,0,1 -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,427,9,999999999,14,0.103,0,88,0,0,1 -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,640,9,999999999,15,0.103,0,88,0,0,1 -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,853,9,999999999,15,0.103,0,88,0,0,1 -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,2631,0,2651,1068,360,4.1,10,10,19.2,366,9,999999999,15,0.103,0,88,0,0,1 -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,7167,0,7225,3066,360,3.6,10,10,19.2,305,9,999999999,15,0.103,0,88,0,0,1 -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,12301,0,12410,5553,40,4.6,10,10,16,305,9,999999999,15,0.103,0,88,0,0,1 -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,20388,0,20580,9269,30,5.2,10,10,19.2,427,9,999999999,15,0.103,0,88,0,0,1 -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,70645,22145,48305,17169,30,2.6,7,7,24,914,9,999999999,15,0.103,0,88,0,0,1 -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,73764,26599,36271,14206,340,3.6,8,8,24,914,9,999999999,15,0.103,0,88,0,0,1 -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,104100,93675,14736,7059,340,4.6,1,1,24,77777,9,999999999,15,0.103,0,88,0,0,1 -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,108112,97603,14982,7100,360,2.1,0,0,24,77777,9,999999999,15,0.103,0,88,0,0,1 -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,101911,96381,14693,5042,40,4.1,0,0,19.2,77777,9,999999999,15,0.103,0,88,0,0,1 -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,90410,94040,14183,3311,80,4.6,0,0,24,77777,9,999999999,15,0.103,0,88,0,0,1 -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,66984,38073,13815,5719,120,6.2,1,1,24,77777,9,999999999,15,0.103,0,88,0,0,1 -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,11.7,32,83400,690,1324,392,497,805,76,60703,42686,9308,3689,60,6.2,0,0,32,77777,9,999999999,15,0.103,0,88,0,0,1 -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,34895,27174,6684,2455,30,6.2,0,0,32,77777,9,999999999,15,0.103,0,88,0,0,1 -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,12.2,45,83500,214,1324,368,106,437,35,12131,46,4014,1314,340,7.2,0,0,32,77777,9,999999999,15,0.103,0,88,0,0,1 -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,77777,9,999999999,15,0.103,0,88,0,0,1 -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,77777,9,999999999,15,0.103,0,88,0,0,1 -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,77777,9,999999999,15,0.103,0,88,0,0,1 -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,77777,9,999999999,15,0.103,0,88,0,0,1 -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,77777,9,999999999,15,0.103,0,88,0,0,1 -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,77777,9,999999999,15,0.103,0,88,0,0,1 -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,77777,9,999999999,15,0.103,0,88,0,0,1 -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,77777,9,999999999,15,0.103,0,88,0,0,1 -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,77777,9,999999999,15,0.103,0,88,0,0,1 -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,15,0.103,0,88,0,0,1 -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,2139,0,2155,891,350,3.1,10,10,4,61,9,999999999,15,0.103,0,88,0,0,1 -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,8245,0,8313,3447,360,3.1,10,10,9.6,549,9,999999999,15,0.103,0,88,0,0,1 -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,78,84200,695,1323,383,275,73,237,30701,5606,26606,9132,60,2.6,10,9,12.8,762,9,999999999,16,0.103,0,88,0,0,1 -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,68,84100,905,1323,380,490,394,220,57112,27753,25778,10103,70,3.1,7,7,14.4,792,9,999999999,16,0.103,0,88,0,0,1 -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,73611,29793,38848,14781,20,2.6,8,6,14.4,792,9,999999999,16,0.103,0,88,0,0,1 -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,99653,44033,31761,12719,10,4.1,7,5,17.6,7010,9,999999999,17,0.103,0,88,0,0,1 -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,100279,37105,53078,19130,60,5.2,5,5,19.2,77777,9,999999999,17,0.103,0,88,0,0,1 -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,115717,48200,21243,8810,50,3.1,2,2,19.2,77777,9,999999999,17,0.103,0,88,0,0,1 -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,106925,47857,24746,10177,10,4.1,3,3,32,77777,9,999999999,18,0.103,0,88,0,0,1 -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,47,84000,1073,1323,402,736,607,244,87289,42581,29100,11708,70,5.7,4,4,40,77777,9,999999999,18,0.103,0,88,0,0,1 -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,85511,52999,21629,8671,80,3.1,4,4,48,77777,9,999999999,18,0.103,0,88,0,0,1 -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,52046,36297,17113,6472,50,2.1,5,5,48,77777,9,999999999,18,0.103,0,88,0,0,1 -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,20498,4267,18080,5499,120,3.1,5,5,32,77777,9,999999999,19,0.103,0,88,0,0,1 -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,8849,1132,5770,1776,110,6.2,5,5,32,77777,9,999999999,19,0.103,0,88,0,0,1 -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,60,84000,22,607,387,4,3,4,0,0,0,0,110,3.1,6,6,32,7620,9,999999999,19,0.103,0,88,0,0,1 -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,66,84100,0,0,409,0,0,0,0,0,0,0,130,2.1,10,10,24,7620,9,999999999,20,0.103,0,88,0,0,1 -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,7620,9,999999999,20,0.103,0,88,0,0,1 -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,7620,9,999999999,20,0.103,0,88,0,0,1 -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,7010,9,999999999,20,0.103,0,88,0,0,1 -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,7010,9,999999999,21,0.103,0,88,0,0,1 -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,81,84000,0,0,345,0,0,0,0,0,0,0,360,1.5,6,1,24,77777,9,999999999,21,0.103,0,88,0,0,1 -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,90,84000,0,0,338,0,0,0,0,0,0,0,0,0,3,1,24,77777,9,999999999,21,0.103,0,88,0,0,1 -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,77777,9,999999999,22,0.103,0,88,0,0,1 -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,4,3,12.8,77777,9,999999999,22,0.103,0,88,0,0,1 -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,2719,0,2740,1101,350,3.1,10,10,6.4,244,9,999999999,22,0.103,0,88,0,0,1 -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,5359,0,5403,2391,320,3.6,10,10,4.8,152,9,999999999,22,0.103,0,88,0,0,1 -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,16.7,81,84100,694,1323,402,114,0,114,11546,0,11648,5280,320,3.1,10,10,9.6,335,9,999999999,22,0.103,0,88,0,0,1 -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,61086,31866,19296,7855,260,2.6,5,5,11.2,77777,9,999999999,21,0.103,0,88,0,0,1 -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,98486,47611,18199,7646,320,1.5,1,0,11.2,77777,9,999999999,21,0.103,0,88,0,0,1 -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,91621,37969,24040,9919,350,2.6,1,1,12.8,77777,9,999999999,21,0.103,0,88,0,0,1 -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,84527,30221,36694,14446,330,3.6,5,5,16,77777,9,999999999,21,0.103,0,88,0,0,1 -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,81376,16436,62662,21199,300,6.2,9,9,16,1676,9,999999999,21,0.103,0,88,0,0,1 -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,28084,0,28375,12829,350,2.1,10,10,11.2,1676,9,999999999,21,0.103,0,88,0,0,1 -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,30821,0,31123,13471,360,3.1,10,10,32,3353,9,999999999,21,0.103,0,88,0,0,1 -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,24678,0,24908,10691,20,6.2,10,10,32,3353,9,999999999,21,0.103,0,88,0,0,1 -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,17227,0,17380,7241,230,4.6,10,10,32,10668,9,999999999,20,0.103,0,88,0,0,1 -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,9653,0,9731,3876,270,3.1,10,10,48,10668,9,999999999,20,0.103,0,88,0,0,1 -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,4086,0,4116,1523,160,2.1,10,10,48,10668,9,999999999,20,0.103,0,88,0,0,1 -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,3048,9,999999999,20,0.103,0,88,0,0,1 -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,7620,9,999999999,20,0.103,0,88,0,0,1 -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,7620,9,999999999,20,0.103,0,88,0,0,1 -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,7620,9,999999999,20,0.103,0,88,0,0,1 -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,7620,9,999999999,20,0.103,0,88,0,0,1 -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,7620,9,999999999,19,0.103,0,88,0,0,1 -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,7620,9,999999999,19,0.103,0,88,0,0,1 -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,77777,9,999999999,19,0.103,0,88,0,0,1 -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,77777,9,999999999,19,0.103,0,88,0,0,1 -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,63,83800,23,628,345,5,36,4,0,0,0,0,160,2.6,4,4,96,77777,9,999999999,19,0.103,0,88,0,0,1 -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,12659,2685,4872,1563,270,1.5,3,3,112,77777,9,999999999,19,0.103,0,88,0,0,1 -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,32390,24952,6588,2429,290,2.6,1,1,112,77777,9,999999999,20,0.103,0,88,0,0,1 -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,57087,40038,9663,3833,310,1.5,1,1,112,77777,9,999999999,20,0.103,0,88,0,0,1 -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,12.2,45,84000,903,1323,368,683,870,89,73810,89644,12530,2242,340,2.6,0,0,112,77777,9,999999999,20,0.103,0,88,0,0,1 -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,95388,47584,17892,7507,350,2.6,1,1,112,77777,9,999999999,20,0.103,0,88,0,0,1 -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,111609,52257,26393,10778,340,2.6,2,2,112,77777,9,999999999,21,0.103,0,88,0,0,1 -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,108770,46854,20718,8579,350,4.6,3,3,112,77777,9,999999999,21,0.103,0,88,0,0,1 -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,94353,39267,33828,13429,10,3.1,6,4,112,6096,9,999999999,21,0.103,0,88,0,0,1 -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,78489,29471,39970,15338,40,4.6,8,8,112,6096,9,999999999,22,0.103,0,88,0,0,1 -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,82826,40998,30309,12088,330,7.7,7,7,64,3962,9,999999999,22,0.103,0,88,0,0,1 -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,68133,38684,29195,11121,340,9.8,8,8,64,3962,9,999999999,22,0.103,0,88,0,0,1 -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,35640,19509,18247,6822,310,8.2,7,7,64,5486,9,999999999,22,0.103,0,88,0,0,1 -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,10854,0,10941,4234,140,5.2,10,10,64,5486,9,999999999,23,0.103,0,88,0,0,1 -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,4037,0,3698,1227,110,3.1,9,9,64,3658,9,999999999,23,0.103,0,88,0,0,1 -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,7620,9,999999999,23,0.103,0,88,0,0,1 -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,12.8,63,84200,0,0,365,0,0,0,0,0,0,0,200,2.6,7,5,40,7620,9,999999999,24,0.103,0,88,0,0,1 -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,7620,9,999999999,24,0.103,0,88,0,0,1 -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,3658,9,999999999,24,0.103,0,88,0,0,1 -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,3962,9,999999999,24,0.103,0,88,0,0,1 -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,7620,9,999999999,25,0.102,0,88,0,0,1 -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,77777,9,999999999,25,0.102,0,88,0,0,1 -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,77777,9,999999999,25,0.102,0,88,0,0,1 -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,12.8,87,84100,0,0,340,0,0,0,0,0,0,0,190,1.5,5,5,40,77777,9,999999999,25,0.102,0,88,0,0,1 -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,12.2,83,84100,23,628,337,4,2,4,0,0,0,0,190,2.1,5,4,96,77777,9,999999999,26,0.102,0,88,0,0,1 -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,8569,1607,6614,1978,190,1.5,5,5,104,77777,9,999999999,26,0.102,0,88,0,0,1 -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,17622,5818,13637,4578,220,1.5,8,8,96,4267,9,999999999,26,0.102,0,88,0,0,1 -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,46894,31514,18563,6938,340,2.1,7,6,96,7620,9,999999999,26,0.102,0,88,0,0,1 -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,62796,32666,29485,11234,320,3.1,6,5,96,7620,9,999999999,27,0.102,0,88,0,0,1 -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,71941,32268,27949,11295,40,3.1,5,4,96,77777,9,999999999,27,0.102,0,88,0,0,1 -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,107234,50620,35281,13880,340,2.6,4,4,96,77777,9,999999999,27,0.102,0,88,0,0,1 -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,112107,49769,33784,13431,60,4.1,4,4,80,77777,9,999999999,27,0.102,0,88,0,0,1 -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,72106,18346,48169,17849,60,3.1,6,6,64,7620,9,999999999,28,0.102,0,88,0,0,1 -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,87124,33256,46032,17085,60,6.2,7,7,56,3048,9,999999999,28,0.102,0,88,0,0,1 -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,76260,29520,45421,16486,80,5.2,10,8,56,3048,9,999999999,28,0.102,0,88,0,0,1 -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,19522,0,19706,8952,340,10.3,10,10,24,1829,9,999999999,28,0.102,0,88,0,0,1 -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,13676,0,13798,6060,360,5.2,10,10,24,1829,9,999999999,29,0.102,0,88,0,0,1 -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,7544,0,7606,3196,340,5.2,10,10,24,1829,9,999999999,29,0.102,0,88,0,0,1 -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,81,84300,219,1323,391,35,0,35,3404,0,3429,1322,300,2.1,10,10,24,1219,9,999999999,29,0.102,0,88,0,0,1 -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,29,0.102,0,88,0,0,1 -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,30,0.102,0,88,0,0,1 -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,3048,9,999999999,30,0.102,0,88,0,0,1 -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,4572,9,999999999,30,0.102,0,88,0,0,1 -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,4572,9,999999999,30,0.102,0,88,0,0,1 -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,87,84200,0,0,353,0,0,0,0,0,0,0,350,3.1,10,5,19.2,77777,9,999999999,31,0.102,0,88,0,0,1 -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,31,0.102,0,88,0,0,1 -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,90,84200,0,0,382,0,0,0,0,0,0,0,350,1.5,10,10,9.6,244,9,999999999,31,0.102,0,88,0,0,1 -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,96,84100,0,0,340,0,0,0,0,0,0,0,170,1.5,6,3,12.8,77777,9,999999999,31,0.102,0,88,0,0,1 -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,77777,9,999999999,32,0.102,0,88,0,0,1 -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,87,84200,217,1322,357,76,76,64,8285,1064,7002,2055,190,2.1,6,6,12.8,3353,9,999999999,32,0.102,0,88,0,0,1 -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,14025,3696,10986,3859,190,3.1,9,9,9.6,732,9,999999999,31,0.102,0,88,0,0,1 -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,44606,28750,15946,6101,150,2.1,3,3,11.2,77777,9,999999999,31,0.102,0,88,0,0,1 -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,77473,44048,14596,6046,70,2.6,4,2,16,77777,9,999999999,31,0.102,0,88,0,0,1 -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,86084,41245,19586,8190,210,2.1,6,3,19.2,77777,9,999999999,31,0.102,0,88,0,0,1 -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,106353,47608,25437,10437,130,3.6,7,2,24,77777,9,999999999,31,0.102,0,88,0,0,1 -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,117934,50641,22550,9315,320,2.1,8,3,24,77777,9,999999999,31,0.102,0,88,0,0,1 -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,83919,24303,53783,19286,0,0,7,6,24,9144,9,999999999,31,0.102,0,88,0,0,1 -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,67656,21919,35651,14024,110,5.2,9,8,24,6706,9,999999999,31,0.102,0,88,0,0,1 -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,49893,10723,37098,14270,100,2.6,9,9,32,3658,9,999999999,31,0.102,0,88,0,0,1 -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,46225,15782,29373,11228,230,1.5,10,8,32,3658,9,999999999,31,0.102,0,88,0,0,1 -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,39122,22457,16789,6385,130,2.6,10,7,32,3658,9,999999999,31,0.102,0,88,0,0,1 -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,11602,0,11697,4465,200,3.1,10,10,32,3658,9,999999999,31,0.102,0,88,0,0,1 -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,3692,0,3719,1415,170,6.7,10,10,24,1676,9,999999999,31,0.102,0,88,0,0,1 -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,81,83900,23,628,391,3,0,3,0,0,0,0,200,3.6,10,10,32,3658,9,999999999,31,0.102,0,88,0,0,1 -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,3658,9,999999999,31,0.102,0,88,0,0,1 -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,7620,9,999999999,31,0.102,0,88,0,0,1 -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,7620,9,999999999,30,0.102,0,88,0,0,1 -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,87,83700,0,0,366,0,0,0,0,0,0,0,170,2.1,8,8,40,3353,9,999999999,30,0.102,0,88,0,0,1 -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,3353,9,999999999,30,0.102,0,88,0,0,1 -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,3658,9,999999999,30,0.102,0,88,0,0,1 -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,3658,9,999999999,30,0.102,0,88,0,0,1 -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,3658,9,999999999,30,0.102,0,88,0,0,1 -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,7315,9,999999999,30,0.102,0,88,0,0,1 -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,9055,1500,5381,1691,200,3.6,7,5,112,7315,9,999999999,30,0.102,0,88,0,0,1 -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,22408,14824,9733,3470,190,3.6,6,4,104,9754,9,999999999,30,0.102,0,88,0,0,1 -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,12.2,45,83700,691,1322,386,343,445,110,40757,25950,13118,5115,140,1.5,7,4,96,9754,9,999999999,29,0.102,0,88,0,0,1 -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,46276,15984,30100,11415,30,7.7,8,8,80,2896,9,999999999,29,0.102,0,88,0,0,1 -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,25514,0,25766,11677,40,5.2,10,10,80,2286,9,999999999,29,0.102,0,88,0,0,1 -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,28791,0,29087,13061,320,5.7,10,10,16,1829,9,999999999,29,0.102,0,88,0,0,1 -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,30679,0,30999,13812,330,4.1,10,10,80,2743,9,999999999,29,0.102,0,88,0,0,1 -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,39551,7049,27169,11076,210,3.1,8,8,80,3658,9,999999999,29,0.102,0,88,0,0,1 -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,64438,22275,28500,11566,130,2.1,6,6,40,9144,9,999999999,28,0.102,0,88,0,0,1 -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,97324,49319,20071,8370,0,0,6,5,40,6706,9,999999999,28,0.102,0,88,0,0,1 -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,56543,27009,28077,10811,50,3.1,9,7,40,3658,9,999999999,28,0.102,0,88,0,0,1 -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,50529,35110,18657,6969,40,4.1,8,6,40,3962,9,999999999,28,0.102,0,88,0,0,1 -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,12.2,61,83800,462,1322,371,144,135,97,16448,6712,11119,3891,30,4.1,7,7,40,3658,9,999999999,28,0.102,0,88,0,0,1 -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,13.9,68,83900,220,1322,366,64,75,52,7106,666,5791,1795,10,4.1,5,5,64,77777,9,999999999,27,0.102,0,88,0,0,1 -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,77777,9,999999999,27,0.102,0,88,0,0,1 -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,77777,9,999999999,27,0.102,0,88,0,0,1 -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,40,77777,9,999999999,27,0.102,0,88,0,0,1 -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,1341,9,999999999,27,0.102,0,88,0,0,1 -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,1280,9,999999999,26,0.102,0,88,0,0,1 -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,1463,9,999999999,26,0.101,0,88,0,0,1 -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,3,3,32,77777,9,999999999,26,0.101,0,88,0,0,1 -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,77777,9,999999999,26,0.101,0,88,0,0,1 -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,77777,9,999999999,26,0.101,0,88,0,0,1 -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,77777,9,999999999,25,0.101,0,88,0,0,1 -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,11755,681,4232,1383,110,1.5,0,0,64,77777,9,999999999,25,0.101,0,88,0,0,1 -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,33952,26378,7021,2577,130,1.5,0,0,64,77777,9,999999999,25,0.101,0,88,0,0,1 -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,59120,41838,9881,3914,0,0,0,0,64,77777,9,999999999,24,0.101,0,88,0,0,1 -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,72323,86786,13725,2305,100,3.1,0,0,64,77777,9,999999999,24,0.101,0,88,0,0,1 -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,88544,91307,14805,3412,130,3.6,0,0,64,77777,9,999999999,24,0.101,0,88,0,0,1 -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,9.4,37,84000,1194,1322,364,937,907,118,99650,93538,15415,5262,120,1.5,0,0,64,77777,9,999999999,23,0.101,0,88,0,0,1 -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,105092,94180,15677,7430,360,2.6,0,0,80,77777,9,999999999,23,0.101,0,88,0,0,1 -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,100808,89999,15432,7357,320,1.5,1,1,80,77777,9,999999999,22,0.101,0,88,0,0,1 -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,82844,30102,47814,17519,320,5.2,6,6,80,4877,9,999999999,22,0.101,0,88,0,0,1 -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,66893,30200,27718,11179,70,2.6,5,5,80,77777,9,999999999,22,0.101,0,88,0,0,1 -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,69699,42702,20089,8097,40,4.1,4,4,80,77777,9,999999999,21,0.101,0,88,0,0,1 -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,46023,17403,35972,10717,20,7.2,7,7,80,3658,9,999999999,21,0.101,0,88,0,0,1 -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,23219,7126,19612,5786,60,4.1,6,6,80,6401,9,999999999,21,0.101,0,88,0,0,1 -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,12234,4069,5402,1697,170,3.1,2,2,80,77777,9,999999999,20,0.101,0,88,0,0,1 -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,4572,9,999999999,20,0.101,0,88,0,0,1 -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,77777,9,999999999,19,0.101,0,88,0,0,1 -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,7.2,43,84000,0,0,344,0,0,0,0,0,0,0,170,1.5,1,1,48,77777,9,999999999,19,0.101,0,88,0,0,1 -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,77777,9,999999999,19,0.101,0,88,0,0,1 -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,77777,9,999999999,18,0.101,0,88,0,0,1 -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,65,84000,0,0,340,0,0,0,0,0,0,0,90,2.1,3,3,40,77777,9,999999999,18,0.101,0,88,0,0,1 -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,69,83900,0,0,327,0,0,0,0,0,0,0,150,2.1,1,1,48,77777,9,999999999,18,0.101,0,88,0,0,1 -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,77,83900,0,0,314,0,0,0,0,0,0,0,110,2.6,0,0,48,77777,9,999999999,17,0.101,0,88,0,0,1 -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,77,83900,0,0,314,0,0,0,0,0,0,0,200,3.6,1,0,64,77777,9,999999999,17,0.101,0,88,0,0,1 -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,75,84000,21,606,316,6,74,3,0,0,0,0,190,3.1,0,0,96,77777,9,999999999,17,0.101,0,88,0,0,1 -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,12901,35,3493,1162,220,3.6,0,0,112,77777,9,999999999,16,0.101,0,88,0,0,1 -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,32477,69813,7317,1095,200,3.6,0,0,112,77777,9,999999999,16,0.101,0,88,0,0,1 -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,54140,84523,9359,1534,200,2.6,0,0,112,77777,9,999999999,16,0.101,0,88,0,0,1 -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,74105,91972,10922,2093,210,4.6,0,0,112,77777,9,999999999,16,0.101,0,88,0,0,1 -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,21,83900,1071,1322,380,844,934,87,89887,95595,11853,2989,360,2.1,0,0,112,77777,9,999999999,16,0.101,0,88,0,0,1 -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,100302,96852,12292,4448,350,3.1,0,0,112,77777,9,999999999,16,0.101,0,88,0,0,1 -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,106410,97958,12498,6154,360,3.1,0,0,112,77777,9,999999999,16,0.101,0,88,0,0,1 -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,97891,89171,12738,6281,360,3.1,1,1,112,77777,9,999999999,16,0.101,0,88,0,0,1 -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,95942,92175,12041,4407,10,3.1,1,1,112,77777,9,999999999,16,0.101,0,88,0,0,1 -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,98104,54625,21435,8858,340,2.1,3,3,112,77777,9,999999999,16,0.101,0,88,0,0,1 -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,69635,85614,10626,2074,40,3.1,1,1,112,77777,9,999999999,16,0.101,0,88,0,0,1 -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,13,83600,696,1322,395,476,785,62,50818,78046,9196,1530,40,2.6,1,1,112,77777,9,999999999,16,0.101,0,88,0,0,1 -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,22174,14197,12441,4254,130,2.6,5,5,112,77777,9,999999999,16,0.101,0,88,0,0,1 -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,3.3,18,83600,222,1322,398,105,362,45,11869,4149,5100,1620,130,2.1,3,3,112,77777,9,999999999,16,0.101,0,88,0,0,1 -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,77777,9,999999999,16,0.101,0,88,0,0,1 -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,4.4,26,83700,0,0,374,0,0,0,0,0,0,0,190,4.1,3,3,48,77777,9,999999999,16,0.101,0,88,0,0,1 -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,77777,9,999999999,16,0.101,0,88,0,0,1 -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,77777,9,999999999,16,0.101,0,88,0,0,1 -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,7.8,45,83600,0,0,350,0,0,0,0,0,0,0,190,3.1,2,2,48,77777,9,999999999,16,0.101,0,88,0,0,1 -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,7.8,45,83600,0,0,350,0,0,0,0,0,0,0,180,2.6,5,2,48,77777,9,999999999,15,0.1,0,88,0,0,1 -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,6.1,40,83500,0,0,351,0,0,0,0,0,0,0,180,3.1,3,3,48,77777,9,999999999,15,0.1,0,88,0,0,1 -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,77777,9,999999999,15,0.1,0,88,0,0,1 -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,5,4,48,77777,9,999999999,15,0.1,0,88,0,0,1 -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,77777,9,999999999,15,0.1,0,88,0,0,1 -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,10568,2948,5186,1631,150,2.1,4,4,96,77777,9,999999999,15,0.1,0,88,0,0,1 -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,6.1,30,83600,454,1322,379,209,359,85,24174,17948,9863,3494,220,2.6,4,4,96,77777,9,999999999,15,0.1,0,88,0,0,1 -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,50129,37419,14918,5720,20,2.6,4,4,96,77777,9,999999999,15,0.1,0,88,0,0,1 -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,70172,44193,22867,9057,30,3.1,4,4,96,77777,9,999999999,15,0.1,0,88,0,0,1 -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,9,83800,1070,1322,398,592,545,150,73412,37779,18679,7779,10,6.2,4,4,96,77777,9,999999999,15,0.1,0,88,0,0,1 -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,93370,87644,14883,5126,40,3.6,2,1,96,77777,9,999999999,15,0.1,0,88,0,0,1 -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,96532,84272,17802,8186,20,3.1,3,1,96,77777,9,999999999,15,0.1,0,88,0,0,1 -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,96408,85974,15168,7266,130,4.1,2,1,96,77777,9,999999999,14,0.1,0,88,0,0,1 -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,93694,86731,15986,5441,70,6.7,3,1,96,77777,9,999999999,14,0.1,0,88,0,0,1 -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,100540,54751,17742,7415,70,4.1,2,1,96,77777,9,999999999,14,0.1,0,88,0,0,1 -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.6,11,83600,906,1322,403,692,874,93,73127,88357,13019,2281,110,5.2,0,0,96,77777,9,999999999,14,0.1,0,88,0,0,1 -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,61830,46966,9471,3748,90,5.2,0,0,96,77777,9,999999999,14,0.1,0,88,0,0,1 -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,35888,31007,6834,2508,70,6.7,0,0,96,77777,9,999999999,14,0.1,0,88,0,0,1 -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,2.8,18,83600,222,1322,381,112,452,36,12894,3273,4153,1360,50,5.2,0,0,96,77777,9,999999999,14,0.1,0,88,0,0,1 -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,77777,9,999999999,14,0.1,0,88,0,0,1 -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,77777,9,999999999,14,0.1,0,88,0,0,1 -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,33,83800,0,0,346,0,0,0,0,0,0,0,120,2.1,0,0,48,77777,9,999999999,13,0.1,0,88,0,0,1 -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,77777,9,999999999,13,0.1,0,88,0,0,1 -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,77777,9,999999999,13,0.1,0,88,0,0,1 -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,77777,9,999999999,13,0.1,0,88,0,0,1 -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,77777,9,999999999,13,0.1,0,88,0,0,1 -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,77777,9,999999999,13,0.1,0,88,0,0,1 -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,8.3,64,83600,0,0,317,0,0,0,0,0,0,0,170,1.5,0,0,64,77777,9,999999999,13,0.1,0,88,0,0,1 -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,77777,9,999999999,13,0.1,0,88,0,0,1 -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,11190,2066,4759,1520,210,2.1,2,0,96,77777,9,999999999,13,0.1,0,88,0,0,1 -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,26813,21222,10391,3652,240,2.1,3,3,96,77777,9,999999999,13,0.1,0,88,0,0,1 -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,59197,44178,10685,4206,0,0,0,0,96,77777,9,999999999,13,0.1,0,88,0,0,1 -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,83903,51783,13267,5492,0,0,0,0,96,77777,9,999999999,13,0.1,0,88,0,0,1 -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,88915,90930,16188,3537,140,3.1,0,0,96,77777,9,999999999,13,0.1,0,88,0,0,1 -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,100222,93232,16751,5531,130,3.1,0,0,96,77777,9,999999999,13,0.1,0,88,0,0,1 -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,105370,93718,17099,7922,110,3.1,0,0,96,77777,9,999999999,13,0.1,0,88,0,0,1 -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,105205,93511,17088,7979,180,2.6,0,0,96,77777,9,999999999,13,0.1,0,88,0,0,1 -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,99765,92642,16840,5634,180,3.1,0,0,96,77777,9,999999999,13,0.1,0,88,0,0,1 -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,88186,89826,16135,3586,180,2.1,0,0,96,77777,9,999999999,13,0.1,0,88,0,0,1 -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,-2.2,7,83200,906,1322,426,687,845,108,85157,54847,13433,5550,80,2.1,0,0,96,77777,9,999999999,13,0.1,0,88,0,0,1 -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,60527,47777,10849,4265,310,4.1,0,0,96,77777,9,999999999,13,0.1,0,88,0,0,1 -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,34737,32042,7844,2849,260,5.2,0,0,96,77777,9,999999999,13,0.1,0,88,0,0,1 -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,12215,4624,4691,1510,260,4.1,0,0,96,77777,9,999999999,14,0.1,0,88,0,0,1 -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,77777,9,999999999,14,0.1,0,88,0,0,1 -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,77777,9,999999999,14,0.1,0,88,0,0,1 -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,77777,9,999999999,14,0.1,0,88,0,0,1 -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,77777,9,999999999,14,0.1,0,88,0,0,1 -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,19,83500,0,0,353,0,0,0,0,0,0,0,300,2.6,0,0,48,77777,9,999999999,14,0.1,0,88,0,0,1 -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,77777,9,999999999,14,0.099,0,88,0,0,1 -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,1.7,30,83600,0,0,332,0,0,0,0,0,0,0,140,3.6,0,0,32,77777,9,999999999,14,0.099,0,88,0,0,1 -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,77777,9,999999999,14,0.099,0,88,0,0,1 -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,77777,9,999999999,14,0.099,0,88,0,0,1 -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,77777,9,999999999,14,0.099,0,88,0,0,1 -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,3.9,35,84000,210,1322,349,86,179,57,9497,2858,6315,1884,170,3.6,6,3,88,77777,9,999999999,14,0.099,0,88,0,0,1 -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,27334,22708,10832,3774,140,3.6,2,1,88,77777,9,999999999,14,0.099,0,88,0,0,1 -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,-1.7,17,84000,685,1322,350,469,678,117,55711,44465,13948,5372,60,3.6,1,0,96,77777,9,999999999,14,0.099,0,88,0,0,1 -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,79748,52291,17401,7084,130,5.2,1,0,96,77777,9,999999999,14,0.099,0,88,0,0,1 -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,98583,54234,20026,8319,130,7.2,1,0,96,77777,9,999999999,14,0.099,0,88,0,0,1 -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,115315,57252,22800,9387,130,4.6,2,0,96,77777,9,999999999,14,0.099,0,88,0,0,1 -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,119129,55794,23466,9630,160,4.6,3,1,96,77777,9,999999999,14,0.099,0,88,0,0,1 -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,116069,53709,23000,9451,70,2.1,2,2,96,77777,9,999999999,14,0.099,0,88,0,0,1 -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,106649,52495,26276,10694,50,4.6,3,3,96,77777,9,999999999,14,0.099,0,88,0,0,1 -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,95453,52621,24041,9844,110,3.1,2,2,96,77777,9,999999999,14,0.099,0,88,0,0,1 -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,70053,43330,22106,8815,80,3.6,3,3,96,77777,9,999999999,14,0.099,0,88,0,0,1 -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,53807,40979,20256,7437,50,4.1,2,2,96,77777,9,999999999,14,0.099,0,88,0,0,1 -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,12,83800,464,1322,417,243,346,121,27428,21244,13712,4593,360,5.2,4,4,96,77777,9,999999999,14,0.099,0,88,0,0,1 -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,8772,2368,6349,1923,30,5.2,4,4,96,77777,9,999999999,14,0.099,0,88,0,0,1 -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,77777,9,999999999,14,0.099,0,88,0,0,1 -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,77777,9,999999999,14,0.099,0,88,0,0,1 -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,77777,9,999999999,14,0.099,0,88,0,0,1 -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,3962,9,999999999,14,0.099,0,88,0,0,1 -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,77777,9,999999999,14,0.099,0,88,0,0,1 -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.6,27,84000,0,0,345,0,0,0,0,0,0,0,350,4.1,3,3,48,77777,9,999999999,14,0.098,0,88,0,0,1 -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,27,84100,0,0,333,0,0,0,0,0,0,0,330,5.2,1,1,48,77777,9,999999999,14,0.098,0,88,0,0,1 -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,77777,9,999999999,14,0.098,0,88,0,0,1 -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,77777,9,999999999,14,0.098,0,88,0,0,1 -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,38,84300,19,562,303,5,49,3,0,0,0,0,320,1.5,0,0,96,77777,9,999999999,14,0.098,0,88,0,0,1 -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,12009,1870,3818,1250,340,2.1,0,0,96,77777,9,999999999,14,0.098,0,88,0,0,1 -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,1.1,28,84400,450,1322,331,291,701,53,34943,30654,6377,2336,360,3.1,0,0,96,77777,9,999999999,14,0.098,0,88,0,0,1 -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,24,84400,684,1322,344,468,748,81,57134,44266,9916,3904,10,3.1,1,1,96,77777,9,999999999,14,0.098,0,88,0,0,1 -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,68659,83327,12777,2236,20,3.1,1,1,96,77777,9,999999999,14,0.098,0,88,0,0,1 -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,1.7,22,84300,1068,1322,366,800,801,153,98881,54371,18992,7913,0,0,2,2,96,77777,9,999999999,14,0.098,0,88,0,0,1 -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,94427,44606,29900,12004,0,0,3,3,96,77777,9,999999999,14,0.098,0,88,0,0,1 -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,1.7,16,84200,1255,1322,392,946,834,154,98453,84907,19486,8676,40,4.1,2,2,96,77777,9,999999999,14,0.098,0,88,0,0,1 -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,125127,58665,22298,9178,300,2.1,3,3,96,77777,9,999999999,14,0.098,0,88,0,0,1 -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,95070,88489,15500,5334,360,7.2,2,2,96,77777,9,999999999,15,0.098,0,88,0,0,1 -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,99177,55416,27069,10946,320,6.7,4,4,96,77777,9,999999999,15,0.098,0,88,0,0,1 -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,56326,31927,16733,6849,350,5.7,6,6,96,4267,9,999999999,15,0.098,0,88,0,0,1 -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,45940,31935,18643,6953,30,4.1,6,6,96,4877,9,999999999,15,0.098,0,88,0,0,1 -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,18593,8344,12974,4405,40,4.1,7,7,96,4572,9,999999999,15,0.098,0,88,0,0,1 -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,1.1,16,84000,223,1322,404,89,112,70,9714,2802,7669,2186,80,4.1,6,6,96,4572,9,999999999,15,0.098,0,88,0,0,1 -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,77777,9,999999999,15,0.098,0,88,0,0,1 -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,3.3,24,84100,0,0,375,0,0,0,0,0,0,0,140,3.6,4,4,40,77777,9,999999999,15,0.098,0,88,0,0,1 -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,77777,9,999999999,15,0.098,0,88,0,0,1 -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,36,84100,0,0,345,0,0,0,0,0,0,0,160,1,1,1,40,77777,9,999999999,15,0.098,0,88,0,0,1 -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,77777,9,999999999,16,0.098,0,88,0,0,1 -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,77777,9,999999999,16,0.098,0,88,0,0,1 -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,77777,9,999999999,16,0.098,0,88,0,0,1 -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,77777,9,999999999,16,0.098,0,88,0,0,1 -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,77777,9,999999999,16,0.098,0,88,0,0,1 -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,77777,9,999999999,16,0.098,0,88,0,0,1 -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,10395,3637,6808,1972,210,3.1,3,3,112,77777,9,999999999,16,0.098,0,88,0,0,1 -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,28650,23935,11340,3916,220,3.6,2,2,112,77777,9,999999999,16,0.098,0,88,0,0,1 -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,43380,29735,16745,6317,190,3.6,3,3,112,77777,9,999999999,16,0.098,0,88,0,0,1 -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,70701,86577,12258,2196,190,2.1,2,2,112,77777,9,999999999,16,0.098,0,88,0,0,1 -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,21494,3976,15266,6417,10,2.6,8,8,96,3962,9,999999999,16,0.098,0,88,0,0,1 -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,83141,33993,41180,15656,360,3.6,7,7,96,4267,9,999999999,16,0.098,0,88,0,0,1 -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,111793,52970,34149,13503,160,1,4,4,96,77777,9,999999999,16,0.098,0,88,0,0,1 -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,116816,55338,27530,11161,350,5.2,4,4,80,77777,9,999999999,15,0.098,0,88,0,0,1 -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,90583,82773,16718,5611,350,3.6,3,3,96,77777,9,999999999,15,0.098,0,88,0,0,1 -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,85535,40942,43279,15923,180,3.6,4,4,96,77777,9,999999999,15,0.098,0,88,0,0,1 -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,39371,10669,28959,11060,180,6.2,8,8,96,3658,9,999999999,15,0.098,0,88,0,0,1 -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,20451,4102,16663,6334,10,8.2,9,9,80,3658,9,999999999,15,0.098,0,88,0,0,1 -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,25844,5359,23509,6276,70,4.6,8,8,96,4877,9,999999999,15,0.098,0,88,0,0,1 -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,7.8,33,83800,223,1322,392,42,31,37,4818,182,4254,1393,120,4.1,7,7,96,4877,9,999999999,15,0.098,0,88,0,0,1 -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,77777,9,999999999,15,0.098,0,88,0,0,1 -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,77777,9,999999999,15,0.098,0,88,0,0,1 -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,77777,9,999999999,15,0.098,0,88,0,0,1 -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,77777,9,999999999,15,0.098,0,88,0,0,1 -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,77777,9,999999999,15,0.098,0,88,0,0,1 -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,77777,9,999999999,15,0.097,0,88,0,0,1 -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,77777,9,999999999,15,0.097,0,88,0,0,1 -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,77777,9,999999999,15,0.097,0,88,0,0,1 -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,77777,9,999999999,14,0.097,0,88,0,0,1 -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,77777,9,999999999,14,0.097,0,88,0,0,1 -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,11635,1003,3809,1245,170,3.6,0,0,112,77777,9,999999999,14,0.097,0,88,0,0,1 -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,34340,29033,6475,2371,180,2.1,0,0,112,77777,9,999999999,15,0.097,0,88,0,0,1 -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,23,83900,681,1321,372,490,809,73,52408,80694,10762,1598,210,3.6,0,0,112,77777,9,999999999,15,0.097,0,88,0,0,1 -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,71952,88336,12513,2211,210,1.5,0,0,112,77777,9,999999999,15,0.097,0,88,0,0,1 -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,83066,86305,14019,3274,80,2.1,1,1,112,77777,9,999999999,15,0.097,0,88,0,0,1 -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,78098,35234,15654,6532,280,3.1,3,3,112,77777,9,999999999,15,0.097,0,88,0,0,1 -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,-2.8,9,83700,1254,1321,411,991,913,124,103293,92716,15895,7413,340,8.2,2,2,112,77777,9,999999999,15,0.097,0,88,0,0,1 -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,111533,51248,19372,8015,310,2.6,4,3,112,77777,9,999999999,15,0.097,0,88,0,0,1 -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,109937,53464,19098,7927,10,5.2,4,2,112,77777,9,999999999,15,0.097,0,88,0,0,1 -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,78635,40496,23029,9465,310,5.2,6,3,112,77777,9,999999999,15,0.097,0,88,0,0,1 -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,75565,48585,20569,8268,310,4.1,5,4,112,77777,9,999999999,15,0.097,0,88,0,0,1 -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,-1.7,9,83600,698,1321,424,431,492,171,49794,36603,19845,7315,350,4.1,5,5,112,77777,9,999999999,15,0.097,0,88,0,0,1 -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,26674,21200,11718,4059,50,4.1,4,4,96,77777,9,999999999,15,0.097,0,88,0,0,1 -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,6645,1102,4478,1454,60,3.6,6,5,96,8534,9,999999999,15,0.097,0,88,0,0,1 -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,3658,9,999999999,15,0.097,0,88,0,0,1 -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,77777,9,999999999,15,0.097,0,88,0,0,1 -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,20,83700,0,0,374,0,0,0,0,0,0,0,150,5.3,2,2,40,77777,9,999999999,15,0.097,0,88,0,0,1 -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,77777,9,999999999,15,0.097,0,88,0,0,1 -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,77777,9,999999999,15,0.097,0,88,0,0,1 -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,4.6,56,83800,0,0,339,0,0,0,0,0,0,0,180,3.9,0,0,32,77777,9,999999999,16,0.089,0,88,0,0,1 -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,77777,9,999999999,15,0.089,0,88,0,0,1 -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,1,1,32,77777,9,999999999,15,0.089,0,88,0,0,1 -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,77777,9,999999999,15,0.089,0,88,0,0,1 -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,77777,9,999999999,15,0.089,0,88,0,0,1 -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,10419,1568,4541,1447,250,1.5,0,0,112,77777,9,999999999,15,0.089,0,88,0,0,1 -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,32070,27518,8009,2888,300,2.1,0,0,112,77777,9,999999999,15,0.089,0,88,0,0,1 -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,57401,44469,11250,4401,40,2.1,0,0,112,77777,9,999999999,15,0.089,0,88,0,0,1 -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,82064,52284,14076,5800,70,3.1,0,0,112,77777,9,999999999,15,0.089,0,88,0,0,1 -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,30,84000,1065,1321,351,825,864,128,86862,88152,17064,3564,50,2.1,0,0,112,77777,9,999999999,16,0.089,0,88,0,0,1 -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,98652,91037,17855,5670,80,3.1,0,0,112,77777,9,999999999,16,0.089,0,88,0,0,1 -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,104708,92256,18200,8179,100,3.6,0,0,112,77777,9,999999999,16,0.089,0,88,0,0,1 -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,104710,92102,18186,8298,120,4.1,0,0,112,77777,9,999999999,16,0.089,0,88,0,0,1 -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,98999,90925,17823,5834,100,5.7,0,0,112,77777,9,999999999,16,0.089,0,88,0,0,1 -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,87661,88172,17147,3680,70,3.1,0,0,112,77777,9,999999999,16,0.089,0,88,0,0,1 -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,76147,48187,20654,8308,50,3.1,3,3,96,77777,9,999999999,16,0.089,0,88,0,0,1 -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,3.9,19,83700,698,1321,395,455,608,134,53500,40501,15818,6046,60,4.1,5,2,96,77777,9,999999999,16,0.089,0,88,0,0,1 -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,19019,3485,17107,5370,60,4.1,8,8,96,3658,9,999999999,17,0.089,0,88,0,0,1 -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,7521,1340,5516,1731,30,6.2,6,6,96,3658,9,999999999,17,0.089,0,88,0,0,1 -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,5,28,83900,24,650,384,4,8,4,0,0,0,0,20,3.6,6,6,64,3658,9,999999999,17,0.089,0,88,0,0,1 -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,77777,9,999999999,17,0.089,0,88,0,0,1 -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,77777,9,999999999,17,0.089,0,88,0,0,1 -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,6.1,40,84000,0,0,354,0,0,0,0,0,0,0,350,3.1,4,4,32,77777,9,999999999,17,0.089,0,88,0,0,1 -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,77777,9,999999999,17,0.089,0,88,0,0,1 -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,77777,9,999999999,17,0.089,0,88,0,0,1 -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,77777,9,999999999,18,0.089,0,88,0,0,1 -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,77777,9,999999999,18,0.089,0,88,0,0,1 -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,77777,9,999999999,18,0.089,0,88,0,0,1 -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,77777,9,999999999,18,0.089,0,88,0,0,1 -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,11544,0,3585,1177,10,1.5,0,0,96,77777,9,999999999,18,0.089,0,88,0,0,1 -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,34245,27854,6020,2210,30,3.1,0,0,112,77777,9,999999999,18,0.089,0,88,0,0,1 -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,58438,43958,10557,4147,30,2.1,4,0,96,77777,9,999999999,18,0.089,0,88,0,0,1 -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,69038,41208,24072,9466,20,4.1,8,6,96,3353,9,999999999,18,0.089,0,88,0,0,1 -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,87613,44455,20405,8490,70,3.1,2,2,96,77777,9,999999999,19,0.089,0,88,0,0,1 -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,94216,88185,15193,5090,50,4.1,1,1,96,77777,9,999999999,19,0.089,0,88,0,0,1 -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,11.1,42,84200,1253,1321,373,953,897,102,102144,92994,13282,6341,60,1.5,1,1,64,77777,9,999999999,19,0.089,0,88,0,0,1 -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,105752,45481,25926,10601,20,1.5,3,3,64,77777,9,999999999,19,0.089,0,88,0,0,1 -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,95472,88034,16395,5523,20,3.6,2,2,64,77777,9,999999999,19,0.089,0,88,0,0,1 -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,31,84000,1076,1321,401,820,854,124,87255,87926,16552,3628,80,3.6,3,3,64,77777,9,999999999,19,0.089,0,88,0,0,1 -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,70565,84390,12909,2279,70,3.6,2,2,64,77777,9,999999999,19,0.089,0,88,0,0,1 -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,44804,28541,20839,7629,10,5.7,5,5,64,77777,9,999999999,19,0.089,0,88,0,0,1 -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,33255,28776,11047,3875,40,6.2,2,2,64,77777,9,999999999,20,0.089,0,88,0,0,1 -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,11518,3292,5095,1624,30,4.6,3,3,64,77777,9,999999999,20,0.089,0,88,0,0,1 -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,2438,9,999999999,20,0.089,0,88,0,0,1 -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,2438,9,999999999,20,0.089,0,88,0,11.2,1 -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,2591,9,999999999,20,0.089,0,88,0,3,1 -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,20,0.089,0,88,0,1.5,1 -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,2896,9,999999999,20,0.089,0,88,0,0,1 -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,7620,9,999999999,20,0.088,0,88,0,0,1 -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,2743,9,999999999,20,0.088,0,88,0,0,1 -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,77777,9,999999999,21,0.088,0,88,0,0,1 -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,77777,9,999999999,21,0.088,0,88,0,0,1 -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,77777,9,999999999,21,0.088,0,88,0,0,1 -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,11974,0,3144,1046,150,2.6,0,0,88,77777,9,999999999,21,0.088,0,88,0,0,1 -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,31641,69839,6742,1047,230,1.5,0,0,80,77777,9,999999999,21,0.088,0,88,0,0,1 -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,53302,84812,8822,1477,320,1.5,0,0,80,77777,9,999999999,20,0.088,0,88,0,0,1 -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,73192,92266,10278,1996,190,1,0,0,80,77777,9,999999999,20,0.088,0,88,0,0,1 -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,89668,96342,11119,2808,180,2.1,0,0,88,77777,9,999999999,20,0.088,0,88,0,0,1 -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,94872,91670,11348,4068,140,1.5,1,1,80,77777,9,999999999,20,0.088,0,88,0,0,1 -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,103556,95564,11564,5607,70,2.1,1,1,80,77777,9,999999999,20,0.088,0,88,0,0,1 -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,104648,96716,11432,5638,110,3.1,2,2,80,77777,9,999999999,20,0.088,0,88,0,0,1 -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,34,84100,1195,1321,392,877,780,171,109031,50393,21359,8850,140,4.1,3,3,80,77777,9,999999999,19,0.088,0,88,0,0,1 -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,98983,51629,17127,7183,300,3.1,2,2,80,77777,9,999999999,19,0.088,0,88,0,0,1 -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,61714,32767,29043,11094,30,4.1,8,8,80,2591,9,999999999,19,0.088,0,88,0,0,1 -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,46022,31212,18396,6889,50,3.1,6,6,80,9144,9,999999999,19,0.088,0,88,0,0,1 -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,17476,8788,10844,3811,30,3.6,8,8,80,9144,9,999999999,19,0.088,0,88,0,0,1 -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,6.7,31,84000,222,1321,390,87,50,78,9389,1340,8452,2312,40,3.1,7,7,80,9144,9,999999999,19,0.088,0,88,0,0,1 -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,6,6,48,9144,9,999999999,18,0.088,0,88,0,0,1 -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,49,84100,0,0,346,0,0,0,0,0,0,0,360,2.6,0,0,32,77777,9,999999999,18,0.088,0,88,0,0,1 -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,77777,9,999999999,18,0.088,0,88,0,0,1 -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,77777,9,999999999,18,0.088,0,88,0,0,1 -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,32,77777,9,999999999,18,0.088,0,88,0,0,1 -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,77777,9,999999999,17,0.087,0,88,0,0,1 -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,11.1,77,84100,0,0,320,0,0,0,0,0,0,0,180,2.1,0,0,32,77777,9,999999999,17,0.087,0,88,0,0,1 -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,77777,9,999999999,17,0.087,0,88,0,0,1 -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,8.9,67,84000,0,0,317,0,0,0,0,0,0,0,200,2.6,0,0,32,77777,9,999999999,17,0.087,0,88,0,0,1 -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,77777,9,999999999,17,0.087,0,88,0,0,1 -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,10064,640,4421,1406,190,4.1,0,0,104,77777,9,999999999,17,0.087,0,88,0,0,1 -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,31595,26149,7772,2805,200,3.1,0,0,96,77777,9,999999999,16,0.087,0,88,0,0,1 -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,56894,43157,11003,4307,190,3.1,0,0,96,77777,9,999999999,16,0.087,0,88,0,0,1 -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,6.1,30,84000,887,1321,360,663,822,111,81621,51348,13713,5655,240,3.1,0,0,96,77777,9,999999999,16,0.087,0,88,0,0,1 -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,86505,88389,16822,3514,320,1.5,0,0,112,77777,9,999999999,16,0.087,0,88,0,0,1 -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,-2.2,12,83900,1186,1321,374,936,893,135,97418,90576,17470,5541,170,2.1,0,0,112,77777,9,999999999,15,0.087,0,88,0,0,1 -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,107130,49026,20891,8622,140,2.1,1,1,112,77777,9,999999999,15,0.087,0,88,0,0,1 -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,13,83800,1255,1321,395,952,854,140,99156,86861,17816,8114,340,3.1,1,1,112,77777,9,999999999,15,0.087,0,88,0,0,1 -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,98378,90989,17321,5719,350,2.1,1,1,112,77777,9,999999999,15,0.087,0,88,0,0,1 -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,81475,81534,16511,3625,140,2.6,1,1,112,77777,9,999999999,15,0.087,0,88,0,0,1 -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,79532,51328,17312,7066,230,1.5,1,1,112,77777,9,999999999,14,0.087,0,88,0,0,1 -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,57471,44936,12640,4929,110,2.1,1,1,112,77777,9,999999999,14,0.087,0,88,0,0,1 -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,14,83600,463,1321,395,270,493,97,31026,27404,11185,3905,120,2.1,2,2,112,77777,9,999999999,14,0.087,0,88,0,0,1 -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,2.8,18,83600,221,1321,400,62,129,40,7080,1208,4578,1481,80,3.1,4,4,112,77777,9,999999999,14,0.087,0,88,0,0,1 -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,77777,9,999999999,13,0.087,0,88,0,0,1 -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,77777,9,999999999,13,0.087,0,88,0,0,1 -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,30,83600,0,0,351,0,0,0,0,0,0,0,160,2.6,0,0,32,77777,9,999999999,13,0.087,0,88,0,0,1 -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,77777,9,999999999,13,0.087,0,88,0,0,1 -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,77777,9,999999999,13,0.087,0,88,0,0,1 -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,41,83600,0,0,328,0,0,0,0,0,0,0,180,2.6,0,0,32,77777,9,999999999,12,0.087,0,88,0,0,1 -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,77777,9,999999999,12,0.087,0,88,0,0,1 -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,77777,9,999999999,12,0.087,0,88,0,0,1 -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,77777,9,999999999,12,0.087,0,88,0,0,1 -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,77777,9,999999999,11,0.087,0,88,0,0,1 -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,11018,315,3795,1229,190,3.1,0,0,104,77777,9,999999999,11,0.087,0,88,0,0,1 -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,33573,28866,6465,2357,200,2.6,0,0,96,77777,9,999999999,12,0.087,0,88,0,0,1 -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,59547,45555,9090,3582,180,2.1,0,0,104,77777,9,999999999,12,0.087,0,88,0,0,1 -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,20,83600,886,1321,387,678,876,90,72156,88979,12672,2199,210,2.6,0,0,104,77777,9,999999999,12,0.087,0,88,0,0,1 -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,88303,93130,13785,3200,190,2.1,0,0,104,77777,9,999999999,12,0.087,0,88,0,0,1 -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,94408,89764,14054,4774,120,2.1,1,1,104,77777,9,999999999,12,0.087,0,88,0,0,1 -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,1.7,12,83500,1251,1321,422,954,733,259,116218,55474,31731,12675,340,5.2,3,3,112,77777,9,999999999,12,0.087,0,88,0,0,1 -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,121948,58100,25212,10294,340,3.6,2,2,112,77777,9,999999999,12,0.087,0,88,0,0,1 -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.6,11,83500,1194,1321,421,856,657,262,103428,50794,31836,12679,310,6.2,3,3,112,77777,9,999999999,12,0.087,0,88,0,0,1 -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,87639,46123,17625,7369,310,7.7,2,2,112,77777,9,999999999,12,0.087,0,88,0,0,1 -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,64045,34719,31681,11842,310,2.6,6,6,96,4572,9,999999999,12,0.087,0,88,0,0,1 -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,21741,6366,16046,6117,30,2.6,6,6,96,4572,9,999999999,13,0.087,0,88,0,0,1 -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,35086,31921,8708,3139,50,3.6,3,3,80,77777,9,999999999,13,0.087,0,88,0,0,1 -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,12017,4478,5001,1594,40,2.6,2,1,64,77777,9,999999999,13,0.087,0,88,0,0,1 -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,77777,9,999999999,13,0.087,0,88,0,0,1 -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,29,83500,0,0,368,0,0,0,0,0,0,0,90,2.6,2,2,48,77777,9,999999999,13,0.087,0,88,0,0,1 -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,3.3,24,83500,0,0,372,0,0,0,0,0,0,0,250,3.1,3,3,32,77777,9,999999999,13,0.087,0,88,0,0,1 -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,77777,9,999999999,13,0.087,0,88,0,0,1 -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,6.7,42,83500,0,0,352,0,0,0,0,0,0,0,0,0,3,3,32,77777,9,999999999,13,0.087,0,88,0,0,1 -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,77777,9,999999999,13,0.086,0,88,0,0,1 -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,77777,9,999999999,13,0.086,0,88,0,0,1 -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,77777,9,999999999,14,0.086,0,88,0,0,1 -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,77777,9,999999999,14,0.086,0,88,0,0,1 -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,77777,9,999999999,14,0.086,0,88,0,0,1 -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,9334,1508,4735,1477,180,2.1,0,0,112,77777,9,999999999,14,0.086,0,88,0,0,1 -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,28969,24965,8434,3008,220,3.6,1,1,112,77777,9,999999999,14,0.086,0,88,0,0,1 -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,50544,38875,15858,5990,220,2.6,2,2,112,77777,9,999999999,14,0.086,0,88,0,0,1 -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,15989,1633,13824,5695,200,3.1,8,8,112,5486,9,999999999,14,0.086,0,88,0,0,1 -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,3.3,18,83600,1059,1321,412,574,130,470,64930,13148,53547,18077,200,2.1,7,7,112,3962,9,999999999,14,0.086,0,88,0,0,1 -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,100324,48585,36921,14353,130,1.5,5,5,112,77777,9,999999999,15,0.086,0,88,0,0,1 -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,1.1,12,83500,1250,1321,428,691,288,418,81155,25989,49431,18111,160,2.1,6,5,112,7620,9,999999999,15,0.086,0,88,0,0,1 -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,59807,10090,47267,17539,90,5.7,8,8,112,4267,9,999999999,15,0.086,0,88,0,0,1 -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,53095,13455,34964,13733,250,5.7,7,7,112,4572,9,999999999,15,0.086,0,88,0,0,1 -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,58181,10604,48085,17074,230,5.2,9,9,96,3353,9,999999999,15,0.086,0,88,0,0,1 -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,67985,38566,31869,11900,320,7.2,9,7,96,3353,9,999999999,15,0.086,0,88,0,0,1 -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,37405,15062,26878,9167,40,5.2,8,8,96,4877,9,999999999,16,0.086,0,88,0,0,1 -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,22,83700,462,1321,409,259,271,165,28449,19057,18211,5571,330,6.2,7,7,96,4877,9,999999999,16,0.086,0,88,0,0,1 -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,8858,692,8351,2288,200,2.1,8,6,96,4877,9,999999999,16,0.086,0,88,0,0,1 -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,7620,9,999999999,16,0.086,0,88,0,0,1 -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,77777,9,999999999,16,0.086,0,88,0,0,1 -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,77777,9,999999999,16,0.086,0,88,0,0,1 -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,77777,9,999999999,16,0.086,0,88,0,0,1 -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,77777,9,999999999,17,0.086,0,88,0,0,1 -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,7.2,43,83700,0,0,349,0,0,0,0,0,0,0,160,3.1,2,2,32,77777,9,999999999,17,0.086,0,88,0,0,1 -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,77777,9,999999999,17,0.086,0,88,0,0,1 -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,77777,9,999999999,17,0.086,0,88,0,0,1 -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,5.6,39,83700,0,0,356,0,0,0,0,0,0,0,180,2.1,6,5,48,3048,9,999999999,17,0.086,0,88,0,0,1 -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,5.6,39,83700,13,473,363,2,1,1,0,0,0,0,220,3.6,7,7,96,4572,9,999999999,17,0.086,0,88,0,0,1 -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,3786,0,3678,1192,350,3.1,8,8,104,3658,9,999999999,18,0.086,0,88,0,0,1 -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,12623,2006,11185,3831,140,1,9,9,112,3962,9,999999999,18,0.086,0,88,0,0,1 -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,29346,2817,27610,9134,10,5.7,9,8,104,3353,9,999999999,18,0.086,0,88,0,0,1 -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,61426,35521,18314,7421,360,7.7,7,4,64,77777,9,999999999,18,0.086,0,88,0,0,1 -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,40,84100,1058,1321,378,775,678,233,92376,49325,27922,11254,360,7.7,3,3,48,77777,9,999999999,19,0.086,0,88,0,0,1 -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,91456,84276,16925,5357,360,6.2,5,2,48,77777,9,999999999,19,0.086,0,88,0,0,1 -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,110568,49056,27977,11363,360,5.2,8,3,48,77777,9,999999999,19,0.086,0,88,0,0,1 -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,110038,48910,35125,13880,360,5.7,7,4,64,77777,9,999999999,20,0.086,0,88,0,0,1 -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,34,84200,1193,1321,413,484,126,370,56738,10514,43663,16426,30,5.2,8,8,48,7620,9,999999999,20,0.086,0,88,0,0,1 -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,9.4,37,84200,1075,1321,394,790,665,249,93927,49546,29769,11910,0,0,7,7,48,4572,9,999999999,20,0.086,0,88,0,0,1 -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,57985,24550,35576,12909,210,4.6,9,8,48,4572,9,999999999,20,0.086,0,88,0,0,1 -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,26754,6825,20909,7652,230,4.1,10,9,48,4572,9,999999999,21,0.086,0,88,0,0,1 -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,28799,20621,15911,5123,210,2.6,9,8,48,7620,9,999999999,21,0.086,0,88,0,0,1 -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,9345,1042,8520,2311,180,4.1,10,7,48,7620,9,999999999,21,0.086,0,88,0,0,1 -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,7620,9,999999999,22,0.086,0,88,0,0,1 -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,7620,9,999999999,22,0.086,0,88,0,0,1 -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,7620,9,999999999,22,0.086,0,88,0,0,1 -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,77777,9,999999999,22,0.086,0,88,0,0,1 -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,11.1,57,84200,0,0,376,0,0,0,0,0,0,0,150,6.2,10,8,32,7620,9,999999999,23,0.086,0,88,0,0,1 -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,11.1,57,84100,0,0,366,0,0,0,0,0,0,0,140,5.2,8,6,32,7620,9,999999999,23,0.086,0,88,0,0,1 -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,77777,9,999999999,23,0.086,0,88,0,0,1 -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,7620,9,999999999,24,0.086,0,88,0,0,1 -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,7620,9,999999999,24,0.086,0,88,0,0,1 -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,6096,9,999999999,24,0.086,0,88,0,0,1 -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,4457,0,3664,1188,220,1.5,9,7,64,6096,9,999999999,24,0.086,0,88,0,0,1 -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,6838,1776,4647,1713,180,2.1,9,8,80,6096,9,999999999,24,0.086,0,88,0,0,1 -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,35052,17019,21431,7667,280,3.1,9,7,80,6096,9,999999999,24,0.086,0,88,0,0,1 -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,25619,0,25859,10912,340,2.6,10,10,80,6096,9,999999999,24,0.086,0,88,0,0,1 -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,75463,35776,26208,10662,360,4.1,10,7,64,6096,9,999999999,24,0.086,0,88,0,0,1 -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,99139,43686,44738,16710,320,4.6,9,6,48,6096,9,999999999,24,0.086,0,88,0,0,1 -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,94691,35301,49209,18103,340,3.1,10,7,48,4267,9,999999999,24,0.086,0,88,0,0,1 -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,72556,14811,54758,19489,310,4.1,9,8,64,4267,9,999999999,24,0.086,0,88,0,0,1 -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,81922,32769,36060,14129,120,2.1,7,6,48,7620,9,999999999,24,0.086,0,88,0,0,1 -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,25745,0,25999,11757,260,6.2,10,10,48,2896,9,999999999,23,0.086,0,88,0,0,1 -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,12.8,63,83700,904,1321,386,483,136,389,53863,12681,43674,14663,170,6.7,9,9,64,4572,9,999999999,23,0.086,0,88,0,0,1 -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,34650,11866,25593,8893,230,4.6,8,8,80,4572,9,999999999,23,0.086,0,88,0,0,1 -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,32851,25562,8763,3170,240,3.1,6,2,80,77777,9,999999999,23,0.086,0,88,0,0,1 -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,9387,2043,6205,1889,160,3.6,8,5,80,7620,9,999999999,23,0.086,0,88,0,0,1 -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,7620,9,999999999,23,0.086,0,88,0,0,1 -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,3658,9,999999999,23,0.086,0,88,0,0,1 -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,7620,9,999999999,23,0.086,0,88,0,0,1 -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,77777,9,999999999,23,0.086,0,88,0,0,1 -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,77777,9,999999999,23,0.086,0,88,0,0,1 -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,77777,9,999999999,23,0.085,0,88,0,0,1 -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,77777,9,999999999,23,0.085,0,88,0,0,1 -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,77777,9,999999999,23,0.085,0,88,0,0,1 -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,77777,9,999999999,22,0.085,0,88,0,0,1 -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,77777,9,999999999,22,0.085,0,88,0,0,1 -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,10307,0,3557,1154,200,2.6,1,1,96,77777,9,999999999,22,0.085,0,88,0,0,1 -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,30448,69543,6149,994,210,1.5,1,1,96,77777,9,999999999,22,0.085,0,88,0,0,1 -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,41,83700,667,1321,375,370,578,78,44992,31261,9511,3741,80,2.1,3,3,96,77777,9,999999999,22,0.085,0,88,0,0,1 -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,78325,47426,12185,5043,80,1.5,2,2,96,77777,9,999999999,22,0.085,0,88,0,0,1 -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,88338,45287,16489,6927,40,5.2,3,3,96,77777,9,999999999,22,0.085,0,88,0,0,1 -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,70664,66236,11355,3984,60,5.2,2,2,96,77777,9,999999999,22,0.085,0,88,0,0,1 -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,33,83700,1248,1321,398,942,860,130,99987,88796,16688,7384,350,4.1,4,4,96,77777,9,999999999,22,0.085,0,88,0,0,1 -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,120105,55159,32304,12913,350,4.6,5,5,96,77777,9,999999999,22,0.085,0,88,0,0,1 -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,33,83600,1192,1321,401,968,887,167,120513,56995,20888,8665,10,4.6,5,5,80,77777,9,999999999,22,0.085,0,88,0,0,1 -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,64760,25953,32390,12785,80,2.6,4,4,64,77777,9,999999999,22,0.085,0,88,0,0,1 -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,33,83500,904,1321,405,542,432,246,62815,33373,28667,10984,10,5.2,8,6,64,6096,9,999999999,22,0.085,0,88,0,0,1 -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,39299,15559,28438,9510,180,5.2,9,9,32,3658,9,999999999,22,0.085,0,88,0,0,1 -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,15.6,76,83600,460,1321,390,150,57,130,16693,3144,14530,4810,300,5.7,10,9,24,2286,9,999999999,22,0.085,0,88,0,0.3,1 -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,3698,0,3725,1415,340,5.2,10,10,16,2286,9,999999999,22,0.085,0,88,0,0,1 -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,90,83700,22,606,364,5,17,5,0,0,0,0,90,3.1,8,8,32,1676,9,999999999,22,0.085,0,88,0,0,1 -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,90,83700,0,0,351,0,0,0,0,0,0,0,270,2.1,5,5,32,77777,9,999999999,22,0.085,0,88,0,0,1 -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,90,83800,0,0,354,0,0,0,0,0,0,0,210,2.1,8,6,32,4267,9,999999999,22,0.085,0,88,0,0,1 -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,96,83800,0,0,337,0,0,0,0,0,0,0,90,1.5,2,2,32,77777,9,999999999,22,0.085,0,88,0,0,1 -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,96,83800,0,0,326,0,0,0,0,0,0,0,240,1.5,0,0,32,77777,9,999999999,22,0.085,0,88,0,0,1 -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,77777,9,999999999,22,0.085,0,88,0,0,1 -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,13.9,93,83600,0,0,322,0,0,0,0,0,0,0,200,2.1,0,0,32,77777,9,999999999,22,0.085,0,88,0,0,1 -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,13.9,93,83600,0,0,329,0,0,0,0,0,0,0,160,2.1,1,1,32,77777,9,999999999,22,0.085,0,88,0,0,1 -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,11.1,77,83600,0,0,326,0,0,0,0,0,0,0,190,2.6,1,1,32,77777,9,999999999,22,0.085,0,88,0,0,1 -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,77777,9,999999999,22,0.085,0,88,0,0,1 -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,10476,39192,3929,534,190,2.1,0,0,96,77777,9,999999999,22,0.085,0,88,0,0,1 -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,30841,70935,6007,980,200,2.6,0,0,96,77777,9,999999999,23,0.085,0,88,0,0,1 -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,50088,81316,7701,1360,220,2.1,1,1,112,77777,9,999999999,23,0.085,0,88,0,0,1 -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,68657,87871,9081,1827,190,3.1,1,1,112,77777,9,999999999,23,0.085,0,88,0,0,1 -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,87396,43522,14957,6308,70,1.5,2,2,112,77777,9,999999999,23,0.085,0,88,0,0,1 -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,99747,46911,29091,11743,160,2.1,3,3,112,77777,9,999999999,23,0.085,0,88,0,0,1 -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,94884,82803,17762,7693,340,2.1,5,5,96,77777,9,999999999,23,0.085,0,88,0,0,1 -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,86126,23633,59592,20512,240,4.1,8,8,96,3962,9,999999999,23,0.085,0,88,0,0,1 -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,93036,41772,36000,14089,160,2.1,7,7,96,4267,9,999999999,23,0.085,0,88,0,0,1 -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,8.3,26,83500,1073,1322,411,889,866,185,108148,59241,22614,9332,170,4.6,5,5,88,77777,9,999999999,23,0.085,0,88,0,2.5,1 -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,32858,3205,29681,11301,360,3.6,9,9,64,1981,9,999999999,24,0.085,0,88,0,0.3,1 -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,55293,38650,12888,5041,90,4.6,5,4,80,77777,9,999999999,24,0.085,0,88,0,0,1 -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,33201,26337,8441,3060,120,3.1,4,2,80,77777,9,999999999,24,0.085,0,88,0,0,1 -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,9169,1460,7906,2205,130,2.1,8,8,80,4267,9,999999999,24,0.085,0,88,0,0,1 -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,3353,9,999999999,24,0.085,0,88,0,0,1 -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,3353,9,999999999,24,0.085,0,88,0,0,1 -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,3353,9,999999999,24,0.085,0,88,0,0,1 -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,3353,9,999999999,24,0.085,0,88,0,0,1 -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,10.6,55,83700,0,0,370,0,0,0,0,0,0,0,180,3.1,10,7,32,7620,9,999999999,24,0.085,0,88,0,0,1 -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,7620,9,999999999,24,0.085,0,88,0,0,1 -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,7620,9,999999999,25,0.085,0,88,0,0,1 -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,7620,9,999999999,25,0.085,0,88,0,0,1 -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,3048,9,999999999,25,0.085,0,88,0,0,1 -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,3658,9,999999999,25,0.085,0,88,0,0,1 -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,4247,0,3335,1085,310,3.1,9,8,64,3353,9,999999999,25,0.085,0,88,0,0,1 -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,10218,4252,5540,2028,290,2.1,7,7,64,3353,9,999999999,24,0.085,0,88,0,0,1 -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,33655,7101,29078,9348,260,4.1,9,9,96,3048,9,999999999,24,0.085,0,88,0,0,1 -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,47,84000,877,1322,373,428,233,273,48984,18936,31425,11633,260,1.5,7,6,96,7620,9,999999999,24,0.085,0,88,0,0,1 -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,92211,48175,21049,8734,230,2.6,4,3,96,77777,9,999999999,24,0.085,0,88,0,0,1 -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,37,84000,1178,1322,380,888,834,144,94018,85944,18644,5556,120,1.5,2,2,96,77777,9,999999999,24,0.085,0,88,0,0,1 -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,104512,95638,13782,6275,190,1.5,1,1,96,77777,9,999999999,23,0.085,0,88,0,0,1 -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,104591,45978,24441,10026,70,2.6,4,4,96,77777,9,999999999,23,0.085,0,88,0,0,1 -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,51959,9007,40407,15462,340,2.6,9,9,80,3962,9,999999999,23,0.085,0,88,0,0,1 -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,41290,9218,29553,11828,290,2.1,9,9,80,4267,9,999999999,23,0.085,0,88,0,0,1 -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,47027,7851,40651,14036,290,2.1,10,8,80,4267,9,999999999,23,0.085,0,88,0,0,1 -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,28814,11814,18364,6870,250,3.1,9,7,80,3962,9,999999999,22,0.085,0,88,0,0,1 -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,21169,9863,14994,4895,260,3.1,9,6,80,7315,9,999999999,22,0.085,0,88,0,0,1 -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,8632,1807,6106,1854,200,5.2,9,6,80,7315,9,999999999,22,0.085,0,88,0,0,1 -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,77777,9,999999999,22,0.085,0,88,0,0,1 -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,51,84100,0,0,355,0,0,0,0,0,0,0,170,3.1,5,2,32,77777,9,999999999,21,0.085,0,88,0,0,1 -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,77777,9,999999999,21,0.085,0,88,0,0,1 -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,56,84100,0,0,347,0,0,0,0,0,0,0,200,2.6,5,2,32,77777,9,999999999,21,0.085,0,88,0,0,1 -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,56,84100,0,0,350,0,0,0,0,0,0,0,180,3.1,3,3,32,77777,9,999999999,21,0.085,0,88,0,0,1 -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,60,84100,0,0,337,0,0,0,0,0,0,0,180,4.1,3,1,32,77777,9,999999999,21,0.084,0,88,0,0,1 -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,63,84100,0,0,334,0,0,0,0,0,0,0,170,3.1,1,1,32,77777,9,999999999,20,0.084,0,88,0,0,1 -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,77777,9,999999999,20,0.084,0,88,0,0,1 -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,69,84200,0,0,321,0,0,0,0,0,0,0,180,2.6,2,0,64,77777,9,999999999,20,0.084,0,88,0,0,1 -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,10,72,84200,9,408,332,1,7,1,0,0,0,0,210,2.6,5,3,96,77777,9,999999999,20,0.084,0,88,0,0,1 -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,9175,0,3860,1228,230,4.1,0,0,96,77777,9,999999999,20,0.084,0,88,0,0,1 -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,30574,24203,6863,2481,240,2.6,0,0,96,77777,9,999999999,20,0.084,0,88,0,0,1 -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,55787,40587,9830,3857,190,1.5,0,0,96,77777,9,999999999,20,0.084,0,88,0,0,1 -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,80632,48829,12284,5080,130,2.1,0,0,80,77777,9,999999999,20,0.084,0,88,0,0,1 -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,86365,44757,23759,9753,0,0,2,2,96,77777,9,999999999,20,0.084,0,88,0,0,1 -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,100393,48163,28771,11618,80,2.1,3,3,80,77777,9,999999999,20,0.084,0,88,0,0,1 -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,125513,58969,24556,10064,150,3.6,4,4,80,77777,9,999999999,20,0.084,0,88,0,0,1 -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,31,84200,1249,1322,422,479,262,231,58655,18193,28442,11530,350,5.7,8,8,64,2591,9,999999999,20,0.084,0,88,0,0,1 -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,92897,41796,31951,12747,100,6.2,7,7,48,3962,9,999999999,20,0.084,0,88,0,0.3,1 -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,24959,0,25206,11483,320,7.7,10,10,9.6,2134,9,999999999,21,0.084,0,88,0,2.8,1 -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,20167,0,20357,9182,20,8.2,10,10,24,2286,9,999999999,21,0.084,0,88,0,0,1 -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,38875,4254,36613,10784,280,2.6,10,9,32,2896,9,999999999,21,0.084,0,88,0,0.3,1 -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,8169,933,7121,2615,150,3.6,10,9,48,2896,9,999999999,21,0.084,0,88,0,0.3,1 -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,6501,181,6190,1871,220,5.2,9,8,64,2896,9,999999999,21,0.084,0,88,0,0,1 -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,77777,9,999999999,21,0.084,0,88,0,0,1 -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,3048,9,999999999,21,0.084,0,88,0,0,1 -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,3048,9,999999999,21,0.084,0,88,0,0,1 -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,77777,9,999999999,21,0.084,0,88,0,0,1 -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,77777,9,999999999,21,0.084,0,88,0,0,1 -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,77777,9,999999999,21,0.084,0,88,0,0,1 -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,77777,9,999999999,21,0.084,0,88,0,0,1 -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,77777,9,999999999,21,0.084,0,88,0,0,1 -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,77777,9,999999999,22,0.084,0,88,0,0,1 -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,77777,9,999999999,22,0.084,0,88,0,0,1 -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,9479,0,3433,1107,280,1.5,0,0,24,77777,9,999999999,21,0.084,0,88,0,0,1 -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,31298,23412,6082,2215,210,1.5,0,0,9.6,77777,9,999999999,21,0.084,0,88,0,0,1 -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,56816,39879,8575,3381,210,1.5,0,0,9.6,77777,9,999999999,21,0.084,0,88,0,0,1 -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,70966,88615,12197,2124,120,1.5,0,0,80,77777,9,999999999,21,0.084,0,88,0,0,1 -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,87479,93109,13341,3057,280,1.5,0,0,96,77777,9,999999999,21,0.084,0,88,0,0,1 -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,11.1,42,84400,1176,1322,366,927,923,106,99302,95568,13996,4588,220,3.1,0,0,96,77777,9,999999999,20,0.084,0,88,0,0,1 -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,105359,96438,14276,6381,140,2.6,0,0,96,77777,9,999999999,20,0.084,0,88,0,0,1 -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,97447,88322,13895,6403,0,0,1,1,96,77777,9,999999999,20,0.084,0,88,0,0,1 -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,102290,48645,31177,12474,110,2.1,3,3,80,77777,9,999999999,20,0.084,0,88,0,0,1 -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,90723,47358,22606,9328,150,4.1,2,2,80,77777,9,999999999,20,0.084,0,88,0,0,1 -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,67498,40001,19714,7968,130,3.1,5,3,96,77777,9,999999999,19,0.084,0,88,0,0,1 -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,35720,13606,25974,8931,110,3.6,7,6,96,9144,9,999999999,19,0.084,0,88,0,0,1 -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,24935,17154,12913,4372,110,2.6,5,3,96,77777,9,999999999,19,0.084,0,88,0,0,1 -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,11494,3159,5484,1702,120,2.6,5,2,80,77777,9,999999999,19,0.084,0,88,0,0,1 -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,77777,9,999999999,19,0.084,0,88,0,0,1 -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,77777,9,999999999,18,0.084,0,88,0,0,1 -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,77777,9,999999999,18,0.084,0,88,0,0,1 -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,11.7,59,84200,0,0,343,0,0,0,0,0,0,0,180,7.2,0,0,32,77777,9,999999999,18,0.084,0,88,0,0,1 -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,77777,9,999999999,18,0.084,0,88,0,0,1 -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,77777,9,999999999,18,0.084,0,88,0,0,1 -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,77777,9,999999999,17,0.084,0,88,0,0,1 -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,32,77777,9,999999999,17,0.084,0,88,0,0,1 -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,77777,9,999999999,17,0.084,0,88,0,0,1 -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,77777,9,999999999,17,0.084,0,88,0,0,1 -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,9852,37917,3768,510,210,2.6,0,0,112,77777,9,999999999,17,0.084,0,88,0,0,1 -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,10.6,55,84100,419,1322,342,275,751,37,30153,70714,5855,960,210,2.6,0,0,112,77777,9,999999999,16,0.084,0,88,0,0,1 -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,52181,86223,7701,1353,220,4.1,0,0,112,77777,9,999999999,16,0.084,0,88,0,0,1 -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,72233,93773,9217,1831,190,3.6,0,0,112,77777,9,999999999,16,0.084,0,88,0,0,1 -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,89177,97999,10102,2544,150,3.1,0,0,112,77777,9,999999999,16,0.084,0,88,0,0,1 -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,100830,99871,10606,3690,130,1.5,0,0,112,77777,9,999999999,16,0.084,0,88,0,0,1 -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,107090,100791,10827,5020,180,4.6,0,0,112,77777,9,999999999,16,0.084,0,88,0,0,1 -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,20,83900,1247,1322,387,1008,980,82,107422,100632,10813,5140,180,4.1,0,0,112,77777,9,999999999,15,0.084,0,88,0,0,1 -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,101515,99501,10565,3860,190,5.2,0,0,104,77777,9,999999999,15,0.084,0,88,0,0,1 -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,90449,97651,10176,2675,170,3.1,0,0,104,77777,9,999999999,15,0.084,0,88,0,0,1 -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,74483,93989,9295,1903,150,5.2,0,0,104,77777,9,999999999,15,0.084,0,88,0,0,1 -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,54906,87294,7939,1412,160,7.2,0,0,96,77777,9,999999999,15,0.084,0,88,0,0,1 -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,21,83700,454,1322,380,306,776,39,33180,73366,6125,1015,150,6.7,0,0,96,77777,9,999999999,15,0.084,0,88,0,0,1 -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,12369,43759,4077,585,170,6.2,0,0,96,77777,9,999999999,14,0.084,0,88,0,0,1 -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,77777,9,999999999,14,0.084,0,88,0,0,1 -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,77777,9,999999999,14,0.084,0,88,0,0,1 -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,77777,9,999999999,14,0.084,0,88,0,0,1 -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,77777,9,999999999,14,0.084,0,88,0,0,1 -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,77777,9,999999999,14,0.084,0,88,0,0,1 -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,77777,9,999999999,13,0.084,0,88,0,0,1 -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,77777,9,999999999,13,0.084,0,88,0,0,1 -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,77777,9,999999999,13,0.084,0,88,0,0,1 -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,77777,9,999999999,13,0.084,0,88,0,0,1 -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,77777,9,999999999,13,0.084,0,88,0,0,1 -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,9380,0,3324,1069,200,1.5,0,0,112,77777,9,999999999,13,0.084,0,88,0,0,1 -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,31671,25384,5868,2131,200,2.6,0,0,112,77777,9,999999999,13,0.084,0,88,0,0,1 -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,50657,81139,10112,1522,0,0,0,0,112,77777,9,999999999,13,0.084,0,88,0,0,1 -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,71124,89818,11919,2094,0,0,0,0,112,77777,9,999999999,13,0.084,0,88,0,0,1 -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,87954,94440,12949,2986,0,0,0,0,112,77777,9,999999999,14,0.084,0,88,0,0,1 -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,99725,96730,13614,4456,140,1.5,0,0,112,77777,9,999999999,14,0.084,0,88,0,0,1 -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,100933,92640,13537,6038,50,2.6,1,1,112,77777,9,999999999,14,0.084,0,88,0,0,1 -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,99196,86702,18588,7916,110,3.1,1,1,112,77777,9,999999999,14,0.084,0,88,0,0,1 -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,3.3,14,83600,1188,1322,425,725,469,303,86485,37715,36363,14185,70,3.6,3,3,96,77777,9,999999999,14,0.084,0,88,0,0,1 -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,88684,93695,12871,3133,50,2.6,1,1,88,77777,9,999999999,14,0.084,0,88,0,0,1 -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,67679,82486,11709,2165,10,4.1,1,1,96,77777,9,999999999,15,0.084,0,88,0,0,1 -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,11,83500,688,1322,419,453,692,92,54806,42235,11164,4376,20,7.2,2,2,96,77777,9,999999999,15,0.084,0,88,0,0,1 -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,8.3,26,83600,452,1322,405,214,329,101,24379,17367,11548,3989,10,8.2,3,3,80,77777,9,999999999,15,0.084,0,88,0,0,1 -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,10773,846,4020,1309,10,5.2,2,2,80,77777,9,999999999,15,0.084,0,88,0,0,1 -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,8.9,36,83700,17,540,379,4,30,3,0,0,0,0,40,1.5,3,3,64,77777,9,999999999,15,0.084,0,88,0,0,1 -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,32,77777,9,999999999,15,0.084,0,88,0,0,1 -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,77777,9,999999999,15,0.084,0,88,0,0,1 -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,77777,9,999999999,16,0.084,0,88,0,0,1 -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,77777,9,999999999,16,0.084,0,88,0,0,1 -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,77777,9,999999999,16,0.085,0,88,0,0,1 -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,77777,9,999999999,16,0.085,0,88,0,0,1 -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,77777,9,999999999,16,0.085,0,88,0,0,1 -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,77777,9,999999999,16,0.085,0,88,0,0,1 -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,69,83900,6,342,327,0,2,0,0,0,0,0,180,1.5,1,1,96,77777,9,999999999,17,0.085,0,88,0,0,1 -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,58,84000,170,1322,333,66,199,40,7341,0,4461,1359,180,2.1,1,0,96,77777,9,999999999,17,0.085,0,88,0,0,1 -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,27253,22277,8687,3050,200,2.1,0,0,96,77777,9,999999999,17,0.085,0,88,0,0,1 -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,8.9,36,84000,653,1322,364,440,676,106,52154,40051,12608,4847,210,1.5,0,0,96,77777,9,999999999,17,0.085,0,88,0,0,1 -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,75934,48322,16484,6704,320,1.5,1,0,96,77777,9,999999999,17,0.085,0,88,0,0,1 -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,7.8,25,84000,1045,1322,387,792,805,155,97277,52955,19121,7968,80,1.5,1,0,96,77777,9,999999999,17,0.085,0,88,0,0,1 -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,113111,54975,20854,8648,270,4.1,1,0,96,77777,9,999999999,17,0.085,0,88,0,0,1 -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,116608,52664,20807,8613,350,5.2,1,1,96,77777,9,999999999,17,0.085,0,88,0,0,1 -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,116922,55658,28958,11690,340,4.6,1,1,96,77777,9,999999999,17,0.085,0,88,0,0,1 -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,108521,53081,20699,8569,280,2.6,2,2,96,77777,9,999999999,17,0.085,0,88,0,0,1 -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,80478,40360,31348,12406,340,3.1,3,3,96,77777,9,999999999,18,0.085,0,88,0,0,1 -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,69670,42370,27641,10615,340,2.6,7,4,80,6096,9,999999999,18,0.085,0,88,0,0,1 -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,38917,10146,32738,10202,310,6.2,6,5,80,6096,9,999999999,18,0.085,0,88,0,0,1 -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,27400,22069,10814,3770,300,5.2,4,4,80,77777,9,999999999,18,0.085,0,88,0,0,1 -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,7252,776,6395,1888,280,4.1,8,5,80,7620,9,999999999,18,0.085,0,88,0,0,1 -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,77777,9,999999999,18,0.085,0,88,0,0,1 -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,77777,9,999999999,18,0.085,0,88,0,0,1 -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,32,77777,9,999999999,18,0.085,0,88,0,0,1 -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,77777,9,999999999,18,0.085,0,88,0,0,1 -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,77777,9,999999999,18,0.085,0,88,0,0,1 -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,77777,9,999999999,18,0.086,0,88,0,0,1 -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,7.8,45,83900,0,0,345,0,0,0,0,0,0,0,190,2.1,3,1,32,77777,9,999999999,19,0.086,0,88,0,0,1 -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,77777,9,999999999,19,0.086,0,88,0,0,1 -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,77777,9,999999999,19,0.086,0,88,0,0,1 -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,77777,9,999999999,19,0.086,0,88,0,0,1 -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,8.3,47,83900,168,1322,339,75,348,31,8512,0,3526,1117,190,2.6,0,0,96,77777,9,999999999,19,0.086,0,88,0,0,1 -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,30017,24244,6302,2274,200,3.1,0,0,96,77777,9,999999999,19,0.086,0,88,0,0,1 -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,55544,41962,9037,3539,210,1.5,0,0,96,77777,9,999999999,20,0.086,0,88,0,0,1 -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,69329,86673,12865,2141,120,1.5,0,0,96,77777,9,999999999,20,0.086,0,88,0,0,1 -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,85930,91310,14108,3104,0,0,0,0,96,77777,9,999999999,20,0.086,0,88,0,0,1 -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,97586,93818,14735,4661,0,0,0,0,96,77777,9,999999999,20,0.086,0,88,0,0,1 -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,100977,92066,14763,6386,30,2.1,1,1,96,77777,9,999999999,21,0.086,0,88,0,0,1 -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,104145,94945,14748,6560,50,2.6,1,1,96,77777,9,999999999,21,0.086,0,88,0,0,1 -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,113083,55497,24362,9995,90,3.6,3,3,96,77777,9,999999999,21,0.086,0,88,0,0,1 -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,84452,43661,27215,11003,100,3.6,4,4,96,77777,9,999999999,21,0.086,0,88,0,0,1 -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,69438,42579,20939,8391,120,2.6,4,4,64,77777,9,999999999,22,0.086,0,88,0,0,1 -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,18,83500,685,1322,430,259,128,193,29514,9705,22101,7916,360,4.1,7,7,64,3048,9,999999999,22,0.086,0,88,0,0,1 -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,24392,7748,20724,5842,310,5.2,8,8,64,3658,9,999999999,22,0.086,0,88,0,0,1 -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,37,83700,204,1322,398,46,87,33,5282,0,3797,1242,330,6.7,7,7,64,3658,9,999999999,22,0.086,0,88,0,0,1 -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,3353,9,999999999,23,0.086,0,88,0,0,1 -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,3658,9,999999999,23,0.086,0,88,0,0,1 -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,40,83800,0,0,398,0,0,0,0,0,0,0,310,3.6,9,8,32,3658,9,999999999,23,0.086,0,88,0,0,1 -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,7,6,32,7620,9,999999999,23,0.086,0,88,0,0,1 -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,7620,9,999999999,24,0.086,0,88,0,0,1 -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,7620,9,999999999,24,0.087,0,88,0,0,1 -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,77777,9,999999999,24,0.087,0,88,0,0,1 -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,11.1,57,83500,0,0,349,0,0,0,0,0,0,0,130,1.5,3,1,32,77777,9,999999999,24,0.087,0,88,0,0,1 -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,77777,9,999999999,25,0.087,0,88,0,0,1 -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,77777,9,999999999,25,0.087,0,88,0,0,1 -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,6725,0,3933,1219,200,2.1,2,2,96,77777,9,999999999,25,0.087,0,88,0,0,1 -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,25061,18801,12749,4140,180,2.6,3,3,96,77777,9,999999999,25,0.087,0,88,0,0,1 -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,11.1,42,83600,648,1322,385,340,436,126,39682,26745,14763,5575,190,2.1,4,4,96,77777,9,999999999,25,0.087,0,88,0,0,1 -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,66478,40546,20237,8072,140,2.1,4,4,96,77777,9,999999999,25,0.087,0,88,0,0,1 -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,30,83600,1042,1322,400,753,740,169,91752,48927,20687,8582,80,2.6,2,2,96,77777,9,999999999,26,0.087,0,88,0,0,1 -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,103859,50648,27934,11320,80,4.6,3,3,96,77777,9,999999999,26,0.087,0,88,0,0,1 -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,86312,33824,39350,15214,70,5.2,5,5,96,77777,9,999999999,26,0.087,0,88,0,0,1 -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,75759,26845,37148,14519,0,0,8,8,96,4267,9,999999999,26,0.087,0,88,0,0,1 -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,107894,52082,24921,10210,60,2.1,4,2,96,77777,9,999999999,26,0.087,0,88,0,0,1 -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,45816,16324,22713,9361,350,5.2,8,8,96,4267,9,999999999,26,0.087,0,88,0,0,1 -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,33693,2025,31930,11882,360,7.7,9,9,80,3048,9,999999999,26,0.087,0,88,0,0,1 -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,31412,8181,25377,8753,20,5.2,10,9,80,3353,9,999999999,26,0.087,0,88,0,0,1 -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,61,83700,447,1322,404,95,25,86,10904,1107,9904,3505,30,3.1,10,9,80,2743,9,999999999,27,0.087,0,88,0,0,1 -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,3695,0,3722,1386,160,2.1,10,10,80,3048,9,999999999,27,0.087,0,88,0,0,1 -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,3353,9,999999999,27,0.087,0,88,0,0,1 -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,2286,9,999999999,27,0.087,0,88,0,0,1 -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,11.1,57,83900,0,0,363,0,0,0,0,0,0,0,90,2.1,7,5,32,3658,9,999999999,27,0.087,0,88,0,0,1 -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,77777,9,999999999,27,0.087,0,88,0,0,1 -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,77777,9,999999999,27,0.087,0,88,0,0,1 -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,77777,9,999999999,27,0.088,0,88,0,0,1 -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,77777,9,999999999,28,0.088,0,88,0,0,1 -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,77777,9,999999999,28,0.088,0,88,0,0,1 -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,77777,9,999999999,28,0.088,0,88,0,0,1 -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,6,276,340,1,17,0,0,0,0,0,0,0,7,2,80,77777,9,999999999,28,0.088,0,88,0,0,1 -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,6465,0,4023,1237,200,1.5,8,3,96,77777,9,999999999,28,0.088,0,88,0,0,1 -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,24487,18219,9183,3187,0,0,5,2,96,77777,9,999999999,28,0.088,0,88,0,0,1 -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,47029,32714,10013,3909,120,1.5,5,3,64,77777,9,999999999,28,0.088,0,88,0,0,1 -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,72121,44494,17111,6938,140,2.6,7,2,80,77777,9,999999999,27,0.088,0,88,0,0,1 -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,90029,45258,14685,6196,70,2.1,6,3,80,77777,9,999999999,27,0.088,0,88,0,0,1 -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,90099,40319,26857,10947,110,3.1,6,2,96,77777,9,999999999,27,0.088,0,88,0,0,1 -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,11.7,32,83600,1237,1323,412,891,720,217,109335,48439,26771,10921,140,1.5,8,4,96,77777,9,999999999,27,0.088,0,88,0,0,1 -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,86333,34027,34960,13815,180,2.1,9,6,80,9144,9,999999999,27,0.088,0,88,0,0,1 -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,28,83500,1183,1323,432,746,476,320,88316,37582,38121,14764,0,0,9,8,80,4267,9,999999999,27,0.088,0,88,0,0,1 -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,31731,0,32042,13743,250,6.2,10,10,64,4267,9,999999999,27,0.088,0,88,0,0,1 -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,11.7,43,83500,893,1323,412,474,73,424,52426,7217,47224,15097,140,5.2,10,9,80,3353,9,999999999,26,0.088,0,88,0,0,1 -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,35446,17413,21188,7663,130,4.1,10,7,96,3658,9,999999999,26,0.088,0,88,0,0.3,1 -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,11.7,43,83700,445,1323,423,90,0,90,8957,0,9029,3627,250,8.2,10,10,64,2286,9,999999999,26,0.088,0,88,0,0,1 -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,7448,304,7043,1988,350,5.2,10,9,80,2438,9,999999999,26,0.088,0,88,0,0,1 -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,76,83800,14,474,397,2,0,2,0,0,0,0,50,1.5,10,10,64,3658,9,999999999,26,0.088,0,88,0,0,1 -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,77777,9,999999999,26,0.088,0,88,0,0,1 -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,4267,9,999999999,25,0.088,0,88,0,0,1 -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,4267,9,999999999,25,0.088,0,88,0,0,1 -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,7620,9,999999999,25,0.088,0,88,0,0,1 -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,3962,9,999999999,25,0.09,0,88,0,0,1 -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,7620,9,999999999,25,0.09,0,88,0,0,1 -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,3,3,32,77777,9,999999999,25,0.09,0,88,0,0,1 -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,32,77777,9,999999999,25,0.09,0,88,0,0,1 -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,12.2,83,83700,4,254,327,0,10,0,0,0,0,0,0,0,3,1,80,77777,9,999999999,24,0.09,0,88,0,0,1 -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,7603,0,3811,1179,210,2.6,2,1,96,77777,9,999999999,25,0.09,0,88,0,0,1 -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,22292,15544,7684,2722,220,2.1,4,3,96,77777,9,999999999,25,0.09,0,88,0,0,1 -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,48527,35517,11905,4588,220,3.1,4,2,96,77777,9,999999999,25,0.09,0,88,0,0,1 -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,65277,39337,17890,7220,170,2.6,4,3,96,77777,9,999999999,25,0.09,0,88,0,0,1 -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,80279,40504,17239,7229,90,3.1,2,1,96,77777,9,999999999,25,0.09,0,88,0,0,1 -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,95195,44551,32397,12884,40,2.1,5,3,96,77777,9,999999999,26,0.09,0,88,0,0,1 -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,8.3,26,83800,1236,1323,419,730,463,297,87617,35481,35863,14097,350,2.6,7,7,96,9144,9,999999999,26,0.09,0,88,0,0,1 -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,99404,43515,25103,10279,30,2.1,9,4,96,77777,9,999999999,26,0.09,0,88,0,0,1 -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,102587,48936,34480,13591,60,5.2,9,6,80,9144,9,999999999,26,0.09,0,88,0,0,1 -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,51973,10253,41150,15339,50,5.2,9,9,64,4572,9,999999999,26,0.09,0,88,0,0.5,1 -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,76,83900,892,1323,386,242,60,201,28351,4095,23667,9360,260,7.2,10,9,19.2,2591,9,999999999,27,0.09,0,88,0,1,1 -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,31395,3047,29364,9590,330,2.6,10,9,24,2591,9,999999999,27,0.09,0,88,0,0.8,1 -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,8220,0,8287,3396,220,4.1,10,10,24,2743,9,999999999,27,0.09,0,88,0,0.3,1 -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,14.4,70,84000,197,1323,399,29,0,29,2817,0,2838,1107,280,3.6,10,10,72,2896,9,999999999,27,0.09,0,88,0,0,1 -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,76,84100,13,474,386,2,1,2,0,0,0,0,240,4.6,10,9,32,2896,9,999999999,27,0.09,0,88,0,0,1 -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,4267,9,999999999,28,0.09,0,88,0,0,1 -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,78,84200,0,0,362,0,0,0,0,0,0,0,170,3.1,6,5,32,4267,9,999999999,28,0.09,0,88,0,0,1 -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,77777,9,999999999,28,0.09,0,88,0,0,1 -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,7620,9,999999999,28,0.09,0,88,0,0,1 -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,77777,9,999999999,28,0.091,0,88,0,0,1 -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,77777,9,999999999,28,0.091,0,88,0,0,1 -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,77777,9,999999999,29,0.091,0,88,0,0,1 -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,7620,9,999999999,29,0.091,0,88,0,0,1 -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,5486,9,999999999,29,0.091,0,88,0,0,1 -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,6059,0,4420,1314,210,2.1,8,3,96,77777,9,999999999,29,0.091,0,88,0,0,1 -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,13208,5214,8640,3013,190,1.5,9,7,96,8230,9,999999999,29,0.091,0,88,0,0,1 -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,32285,11031,24623,8270,350,3.1,9,8,96,4267,9,999999999,29,0.091,0,88,0,0,1 -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,72178,44749,19525,7813,50,2.6,7,2,96,77777,9,999999999,29,0.091,0,88,0,0,1 -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,90778,48111,25574,10404,30,3.1,5,3,96,77777,9,999999999,28,0.091,0,88,0,0,1 -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,93690,42117,37210,14466,30,2.6,6,5,96,7620,9,999999999,28,0.091,0,88,0,0,1 -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,84481,30381,44005,16624,360,3.1,8,8,96,4267,9,999999999,28,0.091,0,88,0,0,1 -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,10.6,30,84000,1240,1323,423,626,363,285,75323,26915,34499,13658,10,4.6,7,7,96,4267,9,999999999,28,0.091,0,88,0,0,1 -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,48340,175,48443,17663,360,4.6,9,9,96,4267,9,999999999,28,0.091,0,88,0,0,1 -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,59669,22636,32022,12634,360,5.2,7,7,80,4267,9,999999999,28,0.091,0,88,0,0,1 -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,45709,4926,41962,14180,310,3.1,9,9,80,4267,9,999999999,28,0.091,0,88,0,0,1 -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,35215,5216,32008,10002,220,3.6,10,9,96,4267,9,999999999,28,0.091,0,88,0,0,1 -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,9465,0,9541,3766,300,6.2,10,10,80,4267,9,999999999,28,0.091,0,88,0,0,1 -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,5361,70,4928,1530,310,6.7,10,9,88,3962,9,999999999,27,0.091,0,88,0,0,1 -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,3962,9,999999999,27,0.091,0,88,0,0,1 -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,4267,9,999999999,27,0.091,0,88,0,0,1 -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,4267,9,999999999,27,0.091,0,88,0,0,1 -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,4267,9,999999999,27,0.091,0,88,0,0,1 -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,3962,9,999999999,27,0.091,0,88,0,0,1 -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,11.1,57,84000,0,0,376,0,0,0,0,0,0,0,180,2.1,9,8,32,3962,9,999999999,27,0.094,0,88,0,0,1 -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,3962,9,999999999,27,0.094,0,88,0,0,1 -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,3353,9,999999999,26,0.094,0,88,0,0,1 -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,9,9,32,3658,9,999999999,26,0.094,0,88,0,0,1 -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,3962,9,999999999,26,0.094,0,88,0,0,1 -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,3512,0,3179,1005,200,2.1,9,9,96,3962,9,999999999,26,0.094,0,88,0,0,1 -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,12.8,63,84200,399,1323,386,128,33,118,14158,1715,13108,4172,180,2.1,10,9,96,3658,9,999999999,27,0.094,0,88,0,0,1 -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,29089,5716,25341,8401,220,2.1,10,9,96,2896,9,999999999,27,0.094,0,88,0,0,1 -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,38895,8984,30860,11350,350,5.2,10,9,96,2896,9,999999999,27,0.094,0,88,0,0,1 -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,30633,0,30934,13305,10,5.7,10,10,96,4267,9,999999999,27,0.094,0,88,0,0,1 -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,58353,13398,41315,15711,320,4.1,10,9,64,4267,9,999999999,27,0.094,0,88,0,0,1 -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,82683,25425,50526,18407,10,3.6,9,9,48,4572,9,999999999,27,0.094,0,88,0,0,1 -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,67597,12482,52438,18889,320,3.1,8,6,48,7620,9,999999999,27,0.094,0,88,0,2.5,1 -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,28397,0,28689,12913,280,9.3,10,10,32,1006,9,999999999,28,0.094,0,88,0,3.6,1 -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,25132,0,25381,11525,310,9.3,10,10,9.6,1036,9,999999999,28,0.094,0,88,0,3.3,1 -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,90,84300,889,1323,382,198,0,198,20420,0,20613,9234,340,7.7,10,10,6.4,1067,9,999999999,28,0.094,0,88,0,0.8,1 -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,14780,0,14910,6390,360,7.2,10,10,12.8,1067,9,999999999,28,0.094,0,88,0,3.8,1 -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,13.9,93,84500,439,1323,372,87,0,87,8639,0,8709,3511,360,3.6,10,10,9.6,1981,9,999999999,28,0.094,0,88,0,0,1 -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,14.4,96,84500,192,1323,373,22,0,22,2136,0,2152,868,10,3.6,10,10,6.4,152,9,999999999,28,0.094,0,88,0,2.8,1 -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,14.4,96,84600,11,430,362,1,2,1,0,0,0,0,50,3.6,10,9,11.2,152,9,999999999,29,0.094,0,88,0,0,1 -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,2743,9,999999999,29,0.094,0,88,0,0.8,1 -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,29,0.094,0,88,0,0,1 -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,29,0.094,0,88,0,0,1 -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,792,9,999999999,29,0.094,0,88,0,0.3,1 -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,29,0.095,0,88,0,0,1 -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,29,0.095,0,88,0,0,1 -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,30,0.095,0,88,0,1,1 -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,30,0.095,0,88,0,0.3,1 -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,30,0.095,0,88,0,0,1 -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,2324,0,2341,883,60,2.6,10,10,9.6,427,9,999999999,29,0.095,0,88,0,0.5,1 -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,4458,0,4493,1947,60,2.6,10,10,9.6,152,9,999999999,29,0.095,0,88,0,0.3,1 -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,8696,0,8771,4011,50,3.1,10,10,12.8,183,9,999999999,29,0.095,0,88,0,0,1 -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,18550,0,18722,8409,60,2.6,10,10,19.2,488,9,999999999,28,0.095,0,88,0,0,1 -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,19773,0,19966,9415,60,2.6,10,10,9.6,305,9,999999999,28,0.095,0,88,0,0,1 -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,19131,0,19325,9266,50,2.6,10,10,4,183,9,999999999,28,0.095,0,88,0,0,1 -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,12.8,87,84600,1232,1323,371,276,0,276,29339,0,29642,13297,60,3.6,10,10,11.2,457,9,999999999,27,0.095,0,88,0,0,1 -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,29470,0,29775,13347,20,3.6,10,10,24,488,9,999999999,27,0.095,0,88,0,0,1 -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,27728,0,28010,12642,60,2.6,10,10,24,488,9,999999999,26,0.095,0,88,0,0,1 -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,66833,17097,50568,17538,60,3.6,10,7,24,853,9,999999999,26,0.095,0,88,0,0,1 -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,19419,0,19601,8853,30,2.6,10,10,24,671,9,999999999,26,0.095,0,88,0,0,1 -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,13492,0,13610,5925,50,2.6,10,10,16,853,9,999999999,25,0.095,0,88,0,0,1 -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,7353,0,7412,3076,70,2.6,10,10,24,427,9,999999999,25,0.095,0,88,0,0,1 -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,4639,0,4083,1304,90,2.1,9,9,32,1067,9,999999999,24,0.095,0,88,0,0,1 -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,12.2,83,84500,11,430,352,1,0,1,0,0,0,0,120,1.5,8,8,32,1676,9,999999999,24,0.095,0,88,0,0,1 -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,12.8,87,84600,0,0,347,0,0,0,0,0,0,0,80,2.1,7,7,32,1067,9,999999999,24,0.095,0,88,0,0,1 -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,1067,9,999999999,23,0.095,0,88,0,0,1 -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,914,9,999999999,23,0.095,0,88,0,0,1 -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,640,9,999999999,23,0.095,0,88,0,0,1 -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,3353,9,999999999,22,0.096,0,88,0,0,1 -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,914,9,999999999,22,0.096,0,88,0,0,1 -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,1006,9,999999999,21,0.096,0,88,0,0,1 -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,10,10,24,1097,9,999999999,21,0.096,0,88,0,0,1 -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,12.2,83,84300,2,188,370,0,0,0,0,0,0,0,0,0,10,10,24,1097,9,999999999,21,0.096,0,88,0,0,1 -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,12.8,87,84300,147,1324,371,25,0,25,2421,0,2438,908,360,1.5,10,10,24,1219,9,999999999,21,0.096,0,88,0,0,1 -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,6236,0,6286,2594,0,0,10,10,24,1189,9,999999999,21,0.096,0,88,0,0,1 -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,32212,5288,29095,9039,10,2.1,10,9,24,1219,9,999999999,21,0.096,0,88,0,0,1 -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,18347,0,18516,8324,10,1.5,10,10,24,1158,9,999999999,21,0.096,0,88,0,0,1 -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,23543,0,23773,10856,40,3.1,10,10,24,853,9,999999999,22,0.096,0,88,0,0,1 -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,11.1,57,84300,1161,1324,395,257,0,257,27190,0,27465,12412,50,3.1,10,10,24,1372,9,999999999,22,0.096,0,88,0,0,1 -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,29250,0,29552,13255,80,3.1,10,10,24,1036,9,999999999,22,0.096,0,88,0,0,1 -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,29360,0,29663,13305,350,4.1,10,10,24,914,9,999999999,22,0.096,0,88,0,0,1 -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,27618,0,27900,12600,310,3.1,10,10,11.2,792,9,999999999,22,0.096,0,88,0,0,1 -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,24183,0,24422,11169,300,3.1,10,10,16,2134,9,999999999,23,0.096,0,88,0,0,1 -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,24177,0,24403,10472,270,3.1,10,10,48,3658,9,999999999,23,0.096,0,88,0,0,1 -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,16742,0,16889,6994,280,3.1,10,10,24,3658,9,999999999,23,0.096,0,88,0,0,1 -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,15798,4443,12824,4269,200,2.1,9,7,24,3658,9,999999999,23,0.096,0,88,0,0,1 -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,5767,29,5006,1530,190,2.1,9,9,24,3658,9,999999999,23,0.096,0,88,0,0,1 -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,10,9,32,3658,9,999999999,24,0.096,0,88,0,0,1 -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,3658,9,999999999,24,0.096,0,88,0,0,1 -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,9,9,32,3658,9,999999999,24,0.096,0,88,0,0,1 -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,11.7,81,84200,0,0,339,0,0,0,0,0,0,0,200,2.6,5,5,32,77777,9,999999999,24,0.096,0,88,0,0,1 -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,7620,9,999999999,25,0.096,0,88,0,0,1 -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,77777,9,999999999,25,0.098,0,88,0,0,1 -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,77777,9,999999999,25,0.098,0,88,0,0,1 -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,77777,9,999999999,25,0.098,0,88,0,0,1 -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,77777,9,999999999,25,0.098,0,88,0,0,1 -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,26,0.098,0,88,0,0,1 -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,3781,0,2640,844,190,1.5,8,8,16,4267,9,999999999,25,0.098,0,88,0,0,1 -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,11.7,81,84100,390,1324,346,110,71,89,12431,3126,10093,3397,200,2.1,7,7,16,4267,9,999999999,25,0.098,0,88,0,0,1 -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,41598,14591,33815,9594,220,3.1,8,8,16,4267,9,999999999,25,0.098,0,88,0,0,1 -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,11.1,57,84100,850,1324,354,550,693,105,67426,40893,12916,5302,260,2.6,2,2,24,77777,9,999999999,25,0.098,0,88,0,0,1 -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,91667,48409,16644,6983,60,2.1,3,3,32,77777,9,999999999,25,0.098,0,88,0,0,1 -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,116024,57016,23196,9570,300,2.6,4,4,32,77777,9,999999999,25,0.098,0,88,0,0,1 -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,96171,36872,51353,18568,300,3.1,6,6,24,7620,9,999999999,25,0.098,0,88,0,0,1 -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,11.7,43,84000,1234,1324,392,1002,810,246,121744,56687,30058,12120,120,3.1,7,6,19.2,7620,9,999999999,24,0.098,0,88,0,0,1 -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,49,83900,1175,1324,380,525,108,429,60665,9681,49921,17998,150,5.7,9,8,19.2,1524,9,999999999,24,0.098,0,88,0,34.5,1 -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,17410,0,17581,8473,150,6.2,10,10,0.4,183,9,999999999,24,0.098,0,88,0,12.4,1 -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,35561,7485,27978,10689,160,3.1,9,9,64,3048,9,999999999,24,0.098,0,88,0,0,1 -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,46930,32555,16640,6258,110,3.6,5,5,80,77777,9,999999999,24,0.098,0,88,0,0,1 -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,24459,6587,21587,5730,180,2.1,8,8,80,7620,9,999999999,24,0.098,0,88,0,0,1 -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,4749,0,3016,992,290,2.6,9,9,64,7620,9,999999999,24,0.098,0,88,0,0,1 -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,2591,9,999999999,23,0.098,0,88,0,0,1 -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,77777,9,999999999,23,0.098,0,88,0,0,1 -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,77777,9,999999999,23,0.098,0,88,0,0,1 -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,11.7,81,84000,0,0,326,0,0,0,0,0,0,0,150,2.6,1,1,32,77777,9,999999999,23,0.098,0,88,0,0,1 -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,77777,9,999999999,23,0.098,0,88,0,0,1 -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,77777,9,999999999,23,0.099,0,88,0,0,1 -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,77777,9,999999999,23,0.099,0,88,0,0,1 -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,77777,9,999999999,22,0.099,0,88,0,0,1 -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,77777,9,999999999,22,0.099,0,88,0,0,1 -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,89,83900,1,143,310,0,1,0,0,0,0,0,120,1.5,3,1,80,77777,9,999999999,22,0.099,0,88,0,0,1 -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,6157,0,3367,1033,250,1,0,0,104,77777,9,999999999,22,0.099,0,88,0,0,1 -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,26078,20129,7120,2513,0,0,1,0,96,77777,9,999999999,22,0.099,0,88,0,0,1 -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,56,84000,629,1324,342,389,638,85,46656,34765,10225,3953,150,1.5,2,1,96,77777,9,999999999,22,0.099,0,88,0,0,1 -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,47,84000,848,1324,349,622,747,143,74509,48364,17201,6932,160,1.5,6,0,96,77777,9,999999999,22,0.099,0,88,0,0,1 -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,81969,43124,23674,9688,220,1.5,7,2,96,77777,9,999999999,22,0.099,0,88,0,0,1 -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,90699,39730,43240,16204,80,2.6,5,3,80,77777,9,999999999,22,0.099,0,88,0,0,1 -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,8.9,36,84000,1227,1324,393,792,593,242,96395,42362,29618,11945,50,2.6,7,7,80,9144,9,999999999,21,0.099,0,88,0,0,1 -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,43939,7801,31896,12755,80,3.1,9,9,80,9144,9,999999999,21,0.099,0,88,0,0,1 -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,8.9,36,83900,1173,1324,408,557,203,377,65042,17320,44317,16545,240,6.2,10,9,48,9144,9,999999999,21,0.099,0,88,0,0,1 -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,11.7,81,84200,1053,1324,369,232,0,232,24319,0,24558,11196,350,8.8,10,10,32,1981,9,999999999,21,0.099,0,88,0,0.5,1 -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,9.4,50,84100,881,1324,393,235,0,235,24315,0,24541,10480,50,4.1,10,10,64,3658,9,999999999,21,0.099,0,88,0,0,1 -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,27641,11004,18278,6746,130,4.6,9,8,64,4572,9,999999999,21,0.099,0,88,0,0,1 -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,51,84000,428,1324,372,203,147,155,22171,9524,17010,5119,170,3.1,9,7,96,7620,9,999999999,21,0.099,0,88,0,0,1 -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,11.1,57,84000,180,1324,376,54,22,51,5916,93,5606,1641,140,2.1,9,8,96,7620,9,999999999,21,0.099,0,88,0,0,1 -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,7620,9,999999999,21,0.099,0,88,0,0,1 -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,7620,9,999999999,21,0.099,0,88,0,0,1 -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,7620,9,999999999,20,0.099,0,88,0,0,1 -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,11.7,81,84100,0,0,334,0,0,0,0,0,0,0,190,2.1,8,3,32,77777,9,999999999,20,0.099,0,88,0,0,1 -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,77777,9,999999999,20,0.099,0,88,0,0,1 -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,77777,9,999999999,20,0.101,0,88,0,0,1 -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,3,1,32,77777,9,999999999,20,0.101,0,88,0,0,1 -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,83,84200,0,0,309,0,0,0,0,0,0,0,230,2.1,0,0,32,77777,9,999999999,20,0.101,0,88,0,0,1 -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,83,84200,0,0,315,0,0,0,0,0,0,0,210,1.5,1,1,40,77777,9,999999999,20,0.101,0,88,0,0,1 -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,86,84200,1,121,312,0,4,0,0,0,0,0,190,1.5,1,1,96,77777,9,999999999,20,0.101,0,88,0,0,1 -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,6582,0,2843,892,210,2.1,0,0,96,77777,9,999999999,20,0.101,0,88,0,0,1 -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,27640,21133,5706,2043,190,2.1,0,0,96,77777,9,999999999,19,0.101,0,88,0,0,1 -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,51,84300,627,1324,344,434,774,68,52914,39767,8311,3239,220,1.5,1,0,96,77777,9,999999999,19,0.101,0,88,0,0,1 -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,73366,47228,15409,6255,300,1,1,1,96,77777,9,999999999,19,0.101,0,88,0,0,1 -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,41,84300,1026,1324,366,759,858,95,81416,88397,13012,2851,100,2.1,1,1,96,77777,9,999999999,19,0.101,0,88,0,0,1 -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,108018,51540,17764,7428,20,3.1,2,2,88,77777,9,999999999,19,0.101,0,88,0,0,1 -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,83895,34179,31534,12622,30,4.6,5,5,96,77777,9,999999999,19,0.101,0,88,0,0,1 -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,121988,56832,24247,9959,50,4.1,4,4,96,77777,9,999999999,18,0.101,0,88,0,0,1 -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,86450,38354,32199,12818,50,4.1,5,5,96,77777,9,999999999,18,0.101,0,88,0,0,1 -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,81744,42294,23331,9583,30,3.6,5,5,96,77777,9,999999999,18,0.101,0,88,0,0,1 -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,73670,46381,18195,7361,50,3.1,4,4,96,77777,9,999999999,18,0.101,0,88,0,0,1 -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,55280,41171,9401,3694,350,2.1,1,1,96,77777,9,999999999,18,0.101,0,88,0,0,1 -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,29995,23856,6322,2297,350,3.1,1,1,96,77777,9,999999999,17,0.101,0,88,0,0,1 -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,37,84300,177,1324,368,82,389,30,9374,0,3436,1107,0,0,0,0,96,77777,9,999999999,17,0.101,0,88,0,0,1 -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,77777,9,999999999,17,0.101,0,88,0,0,1 -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,77777,9,999999999,17,0.101,0,88,0,0,1 -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,3,3,32,77777,9,999999999,17,0.101,0,88,0,0,1 -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,77777,9,999999999,17,0.101,0,88,0,0,1 -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,77777,9,999999999,16,0.101,0,88,0,0,1 -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,77777,9,999999999,16,0.102,0,88,0,0,1 -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,77777,9,999999999,16,0.102,0,88,0,0,1 -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,77777,9,999999999,16,0.102,0,88,0,0,1 -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,10.6,75,84300,0,0,319,0,0,0,0,0,0,0,190,2.1,0,0,40,77777,9,999999999,16,0.102,0,88,0,0,1 -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,77777,9,999999999,16,0.102,0,88,0,0,1 -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,65,84400,135,1325,326,50,191,30,5577,0,3355,1018,190,2.6,0,0,96,77777,9,999999999,16,0.102,0,88,0,0,1 -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,54,84400,382,1325,338,218,536,63,25289,19761,7328,2567,200,3.1,0,0,112,77777,9,999999999,16,0.102,0,88,0,0,1 -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,50402,38782,10877,4181,200,2.1,0,0,104,77777,9,999999999,16,0.102,0,88,0,0,1 -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,37,84400,844,1325,368,620,793,114,75500,48285,13932,5687,160,2.1,0,0,104,77777,9,999999999,16,0.102,0,88,0,0,1 -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,97295,53317,16301,6834,90,1.5,0,0,104,77777,9,999999999,16,0.102,0,88,0,0,1 -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,95210,89573,18488,4948,0,0,0,0,104,77777,9,999999999,16,0.102,0,88,0,0,1 -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,6.7,23,84400,1224,1325,386,968,888,147,101700,91016,18812,6912,100,5.2,0,0,104,77777,9,999999999,16,0.102,0,88,0,0,1 -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,102001,90966,18904,7150,80,3.1,0,0,104,77777,9,999999999,16,0.102,0,88,0,0,1 -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,95116,88348,18540,5294,70,4.1,1,0,104,77777,9,999999999,16,0.102,0,88,0,0,1 -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,93808,51500,20174,8374,160,3.6,1,1,104,77777,9,999999999,16,0.102,0,88,0,0,1 -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,75405,47867,14374,5898,70,4.1,1,1,96,77777,9,999999999,16,0.102,0,88,0,0,1 -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,51595,39470,11314,4397,70,3.6,1,1,96,77777,9,999999999,16,0.102,0,88,0,0,1 -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,6.1,22,84200,422,1325,392,237,524,69,27650,23022,8072,2870,100,4.1,1,1,96,77777,9,999999999,16,0.102,0,88,0,0,1 -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,7189,0,4167,1296,100,3.1,1,1,96,77777,9,999999999,16,0.102,0,88,0,0,1 -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,8.9,36,84300,6,320,376,0,4,0,0,0,0,0,120,3.6,2,2,48,77777,9,999999999,16,0.102,0,88,0,0,1 -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,77777,9,999999999,16,0.102,0,88,0,0,1 -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,77777,9,999999999,16,0.102,0,88,0,0,1 -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,77777,9,999999999,16,0.102,0,88,0,0,1 -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,77777,9,999999999,16,0.102,0,88,0,0,1 -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,77777,9,999999999,16,0.104,0,88,0,0,1 -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,58,84300,0,0,333,0,0,0,0,0,0,0,210,2.6,0,0,32,77777,9,999999999,16,0.104,0,88,0,0,1 -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,65,84300,0,0,326,0,0,0,0,0,0,0,190,2.1,0,0,32,77777,9,999999999,16,0.104,0,88,0,0,1 -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,77777,9,999999999,16,0.104,0,88,0,0,1 -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,77777,9,999999999,16,0.104,0,88,0,0,1 -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,65,84300,131,1325,326,48,174,30,5343,0,3348,1010,200,2.6,1,0,104,77777,9,999999999,16,0.104,0,88,0,0,1 -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,10,53,84300,379,1325,341,213,507,68,24539,19302,7857,2724,220,3.1,2,0,112,77777,9,999999999,16,0.104,0,88,0,0,1 -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,50020,39344,10991,4214,200,3.1,0,0,104,77777,9,999999999,16,0.104,0,88,0,0,1 -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,75219,48769,14047,5725,190,2.6,0,0,96,77777,9,999999999,16,0.104,0,88,0,0,1 -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,97027,53971,16422,6877,200,1.5,0,0,104,77777,9,999999999,16,0.104,0,88,0,0,1 -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,94522,88982,18605,4925,60,2.1,0,0,96,77777,9,999999999,16,0.104,0,88,0,0,1 -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,13,84200,1222,1325,388,967,886,149,100556,90019,19031,6898,60,3.6,0,0,104,77777,9,999999999,16,0.104,0,88,0,0,1 -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,97125,86332,18771,7047,30,4.6,1,1,104,77777,9,999999999,16,0.104,0,88,0,0,1 -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,95451,89064,18407,5233,130,1.5,1,1,104,77777,9,999999999,16,0.104,0,88,0,0,1 -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,91506,50809,19048,7925,360,4.6,2,2,104,77777,9,999999999,16,0.104,0,88,0,0,1 -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,71411,46757,23089,9053,40,3.6,3,3,112,77777,9,999999999,16,0.104,0,88,0,0,1 -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,50057,39506,15499,5831,30,4.1,2,2,112,77777,9,999999999,16,0.104,0,88,0,0,1 -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,23801,18246,12002,3989,30,2.1,5,3,112,77777,9,999999999,16,0.104,0,88,0,0,1 -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,7100,191,4784,1433,30,2.6,6,2,112,77777,9,999999999,16,0.104,0,88,0,0,1 -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,43,84000,6,298,372,0,2,0,0,0,0,0,130,2.6,3,3,64,77777,9,999999999,15,0.104,0,88,0,0,1 -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,77777,9,999999999,15,0.104,0,88,0,0,1 -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,77777,9,999999999,15,0.104,0,88,0,0,1 -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,77777,9,999999999,15,0.104,0,88,0,0,1 -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,77777,9,999999999,15,0.104,0,88,0,0,1 -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,77777,9,999999999,15,0.106,0,88,0,0,1 -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,77777,9,999999999,15,0.106,0,88,0,0,1 -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,5.6,39,84000,0,0,336,0,0,0,0,0,0,0,180,3.1,1,0,32,77777,9,999999999,15,0.106,0,88,0,0,1 -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,77777,9,999999999,15,0.106,0,88,0,0,1 -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,77777,9,999999999,15,0.106,0,88,0,0,1 -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,5146,0,3140,952,200,3.1,2,1,112,77777,9,999999999,15,0.106,0,88,0,0,1 -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,23211,18127,7643,2652,190,4.1,3,1,96,77777,9,999999999,16,0.106,0,88,0,0,1 -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,48787,38171,10435,4009,210,3.6,1,1,96,77777,9,999999999,16,0.106,0,88,0,0,1 -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,58093,35430,13254,5411,210,2.6,1,1,104,77777,9,999999999,16,0.106,0,88,0,0,1 -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,82623,87477,16344,3096,360,2.6,1,0,104,77777,9,999999999,16,0.106,0,88,0,0,1 -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,85368,38682,35475,13859,20,4.1,3,3,96,77777,9,999999999,16,0.106,0,88,0,0,1 -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,118869,59182,34492,13609,360,2.6,5,5,96,77777,9,999999999,17,0.106,0,88,0,0.8,1 -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,85700,25772,56861,19802,210,3.1,9,9,64,2743,9,999999999,17,0.106,0,88,0,0.3,1 -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,82437,22151,60867,20174,90,3.1,7,7,96,2438,9,999999999,17,0.106,0,88,0,0,1 -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,6.1,22,84000,1045,1325,411,663,422,329,76900,36047,38398,14491,120,3.1,6,6,80,7620,9,999999999,17,0.106,0,88,0,0,1 -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,25736,1408,24337,9472,50,6.2,9,9,96,2743,9,999999999,17,0.106,0,88,0,0,1 -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,27623,8769,20903,7444,190,3.6,9,8,80,2743,9,999999999,18,0.106,0,88,0,0,1 -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,18946,6946,15048,4671,200,5.2,9,7,80,2896,9,999999999,18,0.106,0,88,0,0,1 -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,4975,0,4768,1421,260,2.1,9,8,80,3048,9,999999999,18,0.106,0,88,0,0,1 -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,4267,9,999999999,18,0.106,0,88,0,0,1 -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,77777,9,999999999,18,0.106,0,88,0,0,1 -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,77777,9,999999999,19,0.106,0,88,0,0,1 -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,9.4,50,84200,0,0,347,0,0,0,0,0,0,0,190,4.1,1,1,32,77777,9,999999999,19,0.106,0,88,0,0,1 -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,56,84200,0,0,342,0,0,0,0,0,0,0,230,2.1,1,1,32,77777,9,999999999,19,0.106,0,88,0,0,1 -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,58,84200,0,0,340,0,0,0,0,0,0,0,160,2.6,1,1,32,77777,9,999999999,19,0.107,0,88,0,0,1 -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,77777,9,999999999,19,0.107,0,88,0,0,1 -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,77777,9,999999999,20,0.107,0,88,0,0,1 -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,77777,9,999999999,20,0.107,0,88,0,0,1 -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,77777,9,999999999,20,0.107,0,88,0,0,1 -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,65,84300,125,1326,326,48,199,29,5335,0,3231,969,180,2.1,3,0,96,77777,9,999999999,20,0.107,0,88,0,0,1 -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,25363,19013,6444,2274,350,2.6,0,0,96,77777,9,999999999,20,0.107,0,88,0,0,1 -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,50736,38619,9525,3680,340,3.1,0,0,96,77777,9,999999999,20,0.107,0,88,0,0,1 -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,75859,47662,12088,4956,360,2.6,0,0,96,77777,9,999999999,20,0.107,0,88,0,0,1 -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,11.7,43,84400,1018,1326,367,781,869,113,83694,89707,15356,3016,320,2.6,0,0,96,77777,9,999999999,19,0.107,0,88,0,0,1 -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,91806,88191,15825,4449,140,1.5,1,1,80,77777,9,999999999,19,0.107,0,88,0,0,1 -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,107878,49395,29775,12010,150,2.1,3,3,80,77777,9,999999999,19,0.107,0,88,0,0,1 -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,100994,91638,17022,6449,190,3.1,2,2,80,77777,9,999999999,19,0.107,0,88,0,0,1 -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,104433,49997,20583,8548,50,2.1,3,3,96,77777,9,999999999,19,0.107,0,88,0,0,1 -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,80453,40902,34819,13438,110,2.6,5,4,96,77777,9,999999999,19,0.107,0,88,0,0,1 -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,47181,23188,22818,8956,130,4.6,5,4,96,77777,9,999999999,19,0.107,0,88,0,0,1 -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,42534,23017,27624,8978,210,4.6,5,4,96,77777,9,999999999,19,0.107,0,88,0,0,1 -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,22466,16837,7937,2813,180,4.6,6,3,96,77777,9,999999999,19,0.107,0,88,0,0,1 -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,6925,0,4962,1451,180,4.1,7,2,80,77777,9,999999999,19,0.107,0,88,0,0,1 -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,77777,9,999999999,18,0.107,0,88,0,0,1 -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,77777,9,999999999,18,0.107,0,88,0,0,1 -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,77777,9,999999999,18,0.107,0,88,0,0,1 -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,77777,9,999999999,18,0.107,0,88,0,0,1 -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,77777,9,999999999,18,0.107,0,88,0,0,1 -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,77777,9,999999999,22,0.079,0,88,0,0,1 -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,11,75,83800,0,0,360,0,0,0,0,0,0,0,200,4.7,5,4,16,77777,9,999999999,23,0.079,0,88,0,0,1 -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,4,3,16,77777,9,999999999,23,0.079,0,88,0,0.3,1 -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,77777,9,999999999,24,0.079,0,88,0,0,1 -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,6096,9,999999999,24,0.079,0,88,0,0,1 -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,4267,9,999999999,25,0.079,0,88,0,0,1 -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,20025,12114,12486,3885,290,2.1,8,7,16,4267,9,999999999,25,0.079,0,88,0,0,1 -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,16.1,78,84400,612,1326,382,131,0,131,13182,0,13297,5604,300,4.1,8,8,16,4267,9,999999999,26,0.079,0,88,0,0,1 -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,24071,408,23730,9163,320,4.1,9,7,16,6706,9,999999999,27,0.079,0,88,0,0,1 -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,75756,35076,35207,13510,320,4.1,7,6,16,6706,9,999999999,27,0.079,0,88,0,0,1 -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,36,84100,1145,1326,400,828,681,238,99739,48880,28826,11637,20,4.6,7,7,16,77777,9,999999999,28,0.079,0,88,0,0,1 -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,12,39,84700,1216,1326,400,947,866,151,100593,89639,19360,6735,40,3.6,6,5,16.1,77777,9,999999999,28,0.079,0,88,0,0,1 -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,9,30,84700,1221,1326,401,932,815,179,115911,53505,22370,9235,30,3.6,5,5,16.1,77777,9,999999999,29,0.079,0,88,0,0,1 -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,10,32,84700,1161,1326,406,869,688,266,104020,51074,32024,12756,50,2.1,7,6,16.1,77777,9,999999999,29,0.079,0,88,0,0,1 -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,11,33,84700,1039,1326,424,357,95,282,41784,7391,33200,12958,70,3.6,9,8,16.1,3000,9,999999999,30,0.079,0,88,0,0.3,1 -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,11,33,84600,865,1326,424,101,0,101,10427,0,10524,5153,90,4.1,10,8,16.1,3000,9,999999999,31,0.079,0,88,0,0,1 -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,20263,823,19672,7087,310,6.7,8,8,16,1500,9,999999999,31,0.079,0,88,0,0,1 -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,15,78,84400,407,1326,376,256,510,99,28772,23239,11169,3756,340,9.3,9,8,16.1,3000,9,999999999,32,0.079,0,88,0,0,1 -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,15,73,84500,157,1326,371,70,415,21,8133,0,2443,802,290,3.6,8,6,16.1,4200,9,999999999,32,0.079,0,88,0,0,1 -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,16,88,84500,3,232,372,0,0,0,0,0,0,0,130,1.5,9,8,16.1,2100,9,999999999,33,0.079,0,88,0,0,1 -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,16,88,84400,0,0,366,0,0,0,0,0,0,0,150,3.1,9,7,16.1,6000,9,999999999,33,0.079,0,88,0,0,1 -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,16,83,84500,0,0,385,0,0,0,0,0,0,0,200,5.7,9,9,16.1,2100,9,999999999,34,0.079,0,88,0,0,1 -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,84,84300,0,0,388,0,0,0,0,0,0,0,290,2.6,10,10,16,1800,9,999999999,34,0.079,0,88,0,0,1 -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,14,73,84400,0,0,374,0,0,0,0,0,0,0,190,3.6,9,8,16.1,1500,9,999999999,33,0.079,0,88,0,0,1 -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,14,73,84300,0,0,382,0,0,0,0,0,0,0,210,5.1,9,9,16.1,2100,9,999999999,32,0.079,0,88,0,0,1 -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,3353,9,999999999,31,0.079,0,88,0,0,1 -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,87,84200,0,0,351,0,0,0,0,0,0,0,180,4.1,8,4,16,6096,9,999999999,30,0.079,0,88,0,3.6,1 -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,87,84200,0,0,353,0,0,0,0,0,0,0,140,3.1,9,5,16,6096,9,999999999,29,0.079,0,88,0,0,1 -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,77777,9,999999999,28,0.079,0,88,0,0,1 -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,77777,9,999999999,27,0.079,0,88,0,0,1 -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,15.6,76,84500,365,1326,359,238,578,79,26896,20947,8958,3023,210,1.5,2,2,16,77777,9,999999999,26,0.079,0,88,0,0,1 -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,61,84600,610,1326,367,434,782,73,52307,37743,8822,3421,220,4.1,1,1,16,77777,9,999999999,25,0.079,0,88,0,0,1 -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,56,84700,831,1326,384,632,848,99,77394,46891,12164,4991,250,3.1,3,3,16,77777,9,999999999,24,0.079,0,88,0,0,1 -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,86856,96740,11905,2635,280,2.6,3,3,16,77777,9,999999999,23,0.079,0,88,0,0,1 -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,98101,98677,11224,3458,310,4.1,4,4,16,77777,9,999999999,22,0.079,0,88,0,0,1 -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,105607,101089,11064,4398,10,3.6,5,5,16,77777,9,999999999,23,0.079,0,88,0,0,1 -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,104454,97494,13784,5389,330,5.2,7,6,16,77777,9,999999999,25,0.079,0,88,0,0,1 -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,15,40,84700,1159,1326,417,904,759,239,108728,51676,28906,11702,310,7.2,6,4,16,6706,9,999999999,26,0.079,0,88,0,0,1 -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,13280,0,13410,6667,140,7.7,9,8,8,2134,9,999999999,27,0.079,0,88,0,0,1 -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,11017,0,11120,5420,90,3.6,8,8,16,2744,9,999999999,29,0.079,0,88,0,0,1 -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,7065,0,7127,3361,170,2.6,7,7,16,3353,9,999999999,30,0.079,0,88,0,0,1 -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,9690,0,9767,3713,180,4.1,3,3,16,6096,9,999999999,31,0.079,0,88,0,0,1 -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,7512,0,4916,1422,180,7.2,4,4,16,6096,9,999999999,33,0.079,0,88,0,0,1 -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,77777,9,999999999,34,0.079,0,88,0,0,1 -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,77777,9,999999999,35,0.079,0,88,0,0,1 -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,77777,9,999999999,37,0.079,0,88,0,0,1 -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,13.3,65,84000,0,0,345,0,0,0,0,0,0,0,220,6.2,0,0,16,77777,9,999999999,38,0.079,0,88,0,0,1 -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,77777,9,999999999,37,0.079,0,88,0,0,1 -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,77777,9,999999999,36,0.08,0,88,0,0,1 -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,77777,9,999999999,35,0.08,0,88,0,0,1 -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,77777,9,999999999,34,0.08,0,88,0,0,1 -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,77777,9,999999999,34,0.08,0,88,0,0,1 -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,77777,9,999999999,33,0.08,0,88,0,0,1 -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,77777,9,999999999,32,0.08,0,88,0,0,1 -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,27772,20342,6524,2289,270,4.6,0,0,16,77777,9,999999999,31,0.08,0,88,0,0,1 -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,54044,39765,8709,3374,310,3.1,0,0,16,77777,9,999999999,30,0.08,0,88,0,0,1 -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,68833,91727,10807,1897,280,2.6,0,0,16,77777,9,999999999,29,0.08,0,88,0,0,1 -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,83566,93560,11242,2534,340,2.1,3,3,16,77777,9,999999999,28,0.08,0,88,0,0,1 -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,94489,93307,13611,3954,30,1.5,3,3,16,77777,9,999999999,27,0.08,0,88,0,0,1 -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,10.6,30,84500,1212,1327,408,947,926,99,101502,95867,13031,4992,90,2.1,3,3,16,77777,9,999999999,28,0.08,0,88,0,0,1 -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,102261,95089,14622,5588,170,3.1,3,3,16,77777,9,999999999,29,0.08,0,88,0,0,1 -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,26,84500,1157,1327,416,904,921,100,96765,95147,13304,4099,130,1.5,3,3,16,77777,9,999999999,31,0.08,0,88,0,0,1 -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,86684,95643,11044,2629,80,4.1,3,3,16,77777,9,999999999,32,0.08,0,88,0,0,1 -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,68960,86870,12876,2120,60,2.1,3,3,16,77777,9,999999999,33,0.08,0,88,0,0,1 -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,48992,79670,10124,1504,140,2.1,5,5,16,77777,9,999999999,34,0.08,0,88,0,0,1 -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,26,84300,400,1327,419,249,673,46,29770,22879,5510,1995,0,0,4,4,16,77777,9,999999999,35,0.08,0,88,0,0,1 -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,7880,0,2437,794,150,3.6,4,4,16,77777,9,999999999,36,0.08,0,88,0,0,1 -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,77777,9,999999999,37,0.08,0,88,0,0,1 -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,77777,9,999999999,38,0.08,0,88,0,0,1 -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,77777,9,999999999,39,0.08,0,88,0,0,1 -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,11.1,42,83400,0,0,385,0,0,0,0,0,0,0,210,6.7,7,4,16,77777,9,999999999,40,0.08,0,88,0,0,1 -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,6096,9,999999999,39,0.08,0,88,0,0,1 -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,77777,9,999999999,39,0.08,0,88,0,0,1 -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,77777,9,999999999,38,0.08,0,88,0,0,1 -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,77777,9,999999999,37,0.08,0,88,0,0,1 -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,77777,9,999999999,37,0.08,0,88,0,0,1 -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,51,83300,0,0,344,0,0,0,0,0,0,0,230,4.6,0,0,16,77777,9,999999999,36,0.08,0,88,0,0,1 -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,11.1,57,83600,109,1294,342,0,0,0,0,0,0,0,250,4.6,0,0,16,77777,9,999999999,36,0.08,0,88,0,0,1 -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,27624,21507,7272,2515,330,4.6,0,0,16,77777,9,999999999,35,0.08,0,88,0,0,1 -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,48123,37161,13535,5056,290,3.6,3,3,16,77777,9,999999999,34,0.08,0,88,0,0,1 -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,74178,46100,12281,5026,350,4.6,3,3,16,77777,9,999999999,34,0.08,0,88,0,0,1 -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,80424,86797,14996,2927,360,6.7,5,5,16,77777,9,999999999,33,0.08,0,88,0,0,1 -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,100874,48877,24489,10063,20,7.2,5,5,16,77777,9,999999999,33,0.08,0,88,0,0,1 -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,13.9,37,84100,1210,1327,419,941,890,128,100985,92679,16617,5907,80,4.6,6,5,16,77777,9,999999999,33,0.08,0,88,0,0,1 -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,102671,95979,14145,5388,50,3.6,6,6,16,77777,9,999999999,33,0.08,0,88,0,0,1 -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,113966,54504,19371,8081,40,4.1,7,6,16,77777,9,999999999,33,0.08,0,88,0,0,1 -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,64368,24104,38424,14472,100,3.6,9,9,16,3353,9,999999999,33,0.08,0,88,0,0,1 -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,69265,43273,23908,9292,130,1.5,9,8,16,3658,9,999999999,33,0.08,0,88,0,0,1 -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,20665,1247,19850,7086,150,3.1,9,7,16,3658,9,999999999,33,0.08,0,88,0,0,1 -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,12.8,35,84100,396,1327,432,44,0,44,4358,0,4392,1913,130,4.1,8,8,16,3658,9,999999999,33,0.08,0,88,0,0,1 -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,6551,0,4601,1331,130,2.6,6,5,16,3658,9,999999999,33,0.08,0,88,0,0,1 -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,3658,9,999999999,33,0.08,0,88,0,0,1 -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,3658,9,999999999,33,0.08,0,88,0,0,1 -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,3658,9,999999999,33,0.08,0,88,0,0,1 -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,13.3,48,83900,0,0,405,0,0,0,0,0,0,0,220,7.7,8,8,16,3353,9,999999999,33,0.08,0,88,0,0,1 -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,3048,9,999999999,33,0.08,0,88,0,0,1 -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,77777,9,999999999,32,0.08,0,88,0,0,1 -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,77777,9,999999999,32,0.08,0,88,0,0,1 -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,6096,9,999999999,31,0.08,0,88,0,0,1 -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,6096,9,999999999,31,0.08,0,88,0,0,1 -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,6096,9,999999999,30,0.08,0,88,0,0,1 -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,6096,9,999999999,30,0.08,0,88,0,0,1 -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,24179,19430,10402,3359,240,4.1,2,1,16,6096,9,999999999,29,0.08,0,88,0,0,1 -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,45898,35772,13330,4975,300,2.1,2,2,16,77777,9,999999999,29,0.08,0,88,0,0,1 -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,71959,47413,16014,6442,0,0,3,3,16,77777,9,999999999,28,0.08,0,88,0,0,1 -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,90643,50354,17860,7442,310,2.6,6,6,16,77777,9,999999999,27,0.08,0,88,0,0,1 -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,91065,87978,16219,4342,10,4.6,7,7,16,77777,9,999999999,27,0.08,0,88,0,0,1 -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,97810,89887,16595,5844,50,5.7,5,5,16,77777,9,999999999,27,0.08,0,88,0,0,1 -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,98375,88246,18755,6483,50,5.2,5,5,16,77777,9,999999999,26,0.08,0,88,0,0,1 -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,94160,90559,16050,4551,70,4.6,5,5,16,77777,9,999999999,26,0.08,0,88,0,0,1 -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,84117,91176,13511,2931,90,3.1,5,5,16,77777,9,999999999,26,0.08,0,88,0,0,1 -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,68802,89393,10606,1941,40,3.6,5,5,16,77777,9,999999999,26,0.08,0,88,0,0,1 -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,54991,42427,8453,3301,50,2.1,8,5,16,77777,9,999999999,26,0.08,0,88,0,0,1 -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,26,84700,392,1327,429,238,547,77,27275,22993,8852,3057,40,3.6,7,6,16,77777,9,999999999,25,0.08,0,88,0,0,1 -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,4821,0,3372,1043,40,3.1,8,6,16,77777,9,999999999,25,0.08,0,88,0,0,1 -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,77777,9,999999999,25,0.08,0,88,0,0,1 -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,34,84600,0,0,402,0,0,0,0,0,0,0,340,4.6,6,6,16,77777,9,999999999,25,0.08,0,88,0,0,1 -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,77777,9,999999999,25,0.08,0,88,0,0,1 -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,10,39,84100,0,0,395,0,0,0,0,0,0,0,220,4.6,8,7,16,77777,9,999999999,24,0.08,0,88,0,0,1 -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,77777,9,999999999,25,0.08,0,88,0,0,1 -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,43,84400,0,0,357,0,0,0,0,0,0,0,220,6.2,1,0,16,77777,9,999999999,26,0.08,0,88,0,0,1 -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,43,84400,0,0,363,0,0,0,0,0,0,0,220,6.7,2,1,16,77777,9,999999999,26,0.08,0,88,0,0,1 -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,44,84400,0,0,372,0,0,0,0,0,0,0,220,5.2,5,4,16,77777,9,999999999,27,0.08,0,88,0,0,1 -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,77777,9,999999999,28,0.08,0,88,0,0,1 -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,7620,9,999999999,28,0.08,0,88,0,0,1 -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,6706,9,999999999,29,0.08,0,88,0,0,1 -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,17621,8519,12641,3823,280,4.1,6,6,16,6706,9,999999999,30,0.08,0,88,0,0,1 -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,43075,32217,17992,6371,290,5.2,5,5,16,6706,9,999999999,31,0.08,0,88,0,0,1 -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,63954,40324,21694,8433,300,3.6,3,3,16,7620,9,999999999,31,0.08,0,88,0,0,1 -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,13,37,84900,1004,1328,415,733,733,177,88338,47997,21432,8829,30,3.6,6,6,16.1,7500,9,999999999,32,0.08,0,88,0,0,1 -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,95707,45996,28858,11655,50,3.6,3,3,16,7620,9,999999999,33,0.08,0,88,0,0,1 -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,108455,50319,26210,10705,140,4.6,3,3,16,77777,9,999999999,32,0.08,0,88,0,0,1 -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,112172,51709,23589,9715,150,6.2,3,3,16,77777,9,999999999,30,0.08,0,88,0,0,1 -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,106492,51646,21448,8895,130,7.7,7,6,16,7620,9,999999999,29,0.08,0,88,0,0,1 -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,89592,48427,28842,11516,230,10.3,8,7,16,4267,9,999999999,28,0.08,0,88,0,0,1 -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,56,84500,850,1328,390,207,18,196,24168,1256,22998,8976,270,8.2,9,8,16,2896,9,999999999,27,0.08,0,88,0,0,1 -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,54,84300,632,1328,393,70,0,70,7075,0,7136,3338,40,6.7,10,8,16,2400,9,999999999,26,0.08,0,88,0,0,1 -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,15,73,84600,388,1328,389,39,0,39,3853,0,3884,1708,300,2.1,10,9,16,3300,9,999999999,25,0.08,0,88,0,0,1 -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,73,84600,136,1328,388,55,155,39,6002,0,4269,1239,270,3.6,10,8,16,3353,9,999999999,24,0.08,0,88,0,0,1 -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,70,84700,1,100,380,0,0,0,0,0,0,0,320,3.1,10,6,16,3658,9,999999999,23,0.08,0,88,0,0,1 -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,75,84600,0,0,375,0,0,0,0,0,0,0,0,0,9,6,16,6096,9,999999999,22,0.08,0,88,0,0,1 -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,76,84500,0,0,364,0,0,0,0,0,0,0,240,5.7,9,5,16,6096,9,999999999,21,0.08,0,88,0,1,1 -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,13,64,84300,0,0,368,0,0,0,0,0,0,0,0,0,9,6,16,6096,9,999999999,20,0.08,0,88,0,0,1 -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,69,84400,0,0,367,0,0,0,0,0,0,0,180,4.1,9,7,16,77777,9,999999999,20,0.08,0,88,0,0,1 -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,62,84400,0,0,361,0,0,0,0,0,0,0,200,6.7,7,5,16,77777,9,999999999,21,0.08,0,88,0,0,1 -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,62,84400,0,0,358,0,0,0,0,0,0,0,200,4.1,5,4,16,77777,9,999999999,22,0.08,0,88,0,0,1 -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,12,60,84400,0,0,358,0,0,0,0,0,0,0,210,6.2,3,3,16,77777,9,999999999,22,0.08,0,88,0,0,1 -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,67,84400,0,0,336,0,0,0,0,0,0,0,180,3.6,2,1,16,77777,9,999999999,23,0.08,0,88,0,0,1 -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,77777,9,999999999,24,0.08,0,88,0,0,1 -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,11.7,59,84600,100,1229,343,0,0,0,0,0,0,0,230,2.6,0,0,16,77777,9,999999999,24,0.08,0,88,0,0,1 -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,23652,18777,9041,2993,250,4.6,0,0,16,77777,9,999999999,25,0.08,0,88,0,0,1 -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,51035,39643,10143,3876,250,2.6,2,1,16,77777,9,999999999,25,0.08,0,88,0,0,1 -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,12.8,47,84700,819,1328,384,581,727,132,69571,44736,15869,6385,260,2.6,3,3,16,77777,9,999999999,26,0.08,0,88,0,0,1 -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,95412,51714,15529,6517,0,0,3,3,16,77777,9,999999999,27,0.08,0,88,0,0,1 -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,95121,94013,14753,4043,130,5.2,3,3,16,77777,9,999999999,27,0.08,0,88,0,0,1 -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,96673,87217,18913,6200,120,5.7,3,3,16,77777,9,999999999,28,0.08,0,88,0,0,1 -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,100406,91924,17442,6043,160,4.6,3,3,16,77777,9,999999999,29,0.08,0,88,0,0,1 -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,106415,53772,27719,11237,150,5.7,4,3,16,77777,9,999999999,30,0.08,0,88,0,0,1 -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,45829,12141,32065,12536,130,8.2,4,4,16,77777,9,999999999,31,0.08,0,88,0,0,1 -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,66852,42458,25315,9683,150,6.7,5,4,16,77777,9,999999999,32,0.08,0,88,0,0,1 -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,53159,41207,9228,3585,160,4.6,5,5,16,77777,9,999999999,33,0.08,0,88,0,0,1 -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,8.3,26,84400,384,1328,408,242,698,40,26311,64277,6321,954,130,7.2,4,4,16,77777,9,999999999,34,0.08,0,88,0,0,1 -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,6121,0,2313,743,140,5.7,4,4,16,77777,9,999999999,34,0.08,0,88,0,0,1 -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,77777,9,999999999,35,0.08,0,88,0,0,1 -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,77777,9,999999999,36,0.08,0,88,0,0,1 -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,77777,9,999999999,37,0.08,0,88,0,0,1 -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,77777,9,999999999,38,0.08,0,88,0,0,1 -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,77777,9,999999999,36,0.08,0,88,0,0,1 -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,77777,9,999999999,35,0.08,0,88,0,0,1 -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,77777,9,999999999,33,0.08,0,88,0,0,1 -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,77777,9,999999999,31,0.08,0,88,0,0,1 -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,7.2,43,83700,0,0,338,0,0,0,0,0,0,0,190,4.6,0,0,16,77777,9,999999999,30,0.08,0,88,0,0,1 -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,77777,9,999999999,28,0.08,0,88,0,0,1 -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,77777,9,999999999,26,0.08,0,88,0,0,1 -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,23834,19915,8840,2926,240,5.7,3,3,16,77777,9,999999999,24,0.08,0,88,0,0,1 -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,50297,39976,10257,3908,260,4.1,3,3,16,77777,9,999999999,23,0.08,0,88,0,0,1 -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,36,84100,816,1329,383,607,849,85,65319,86579,12177,1953,290,2.1,2,2,16,77777,9,999999999,21,0.08,0,88,0,0,1 -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,33,84100,1000,1329,401,746,848,106,79770,87211,14504,2828,330,2.1,6,5,16,77777,9,999999999,19,0.08,0,88,0,0,1 -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,99668,49568,23690,9751,0,0,3,3,16,77777,9,999999999,18,0.08,0,88,0,0,1 -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,106506,50120,27689,11243,210,2.6,3,3,16,77777,9,999999999,18,0.08,0,88,0,0,1 -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,98783,89288,18779,6245,240,1.5,4,3,16,77777,9,999999999,18,0.08,0,88,0,0,1 -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,105220,52548,22948,9464,260,2.6,4,4,16,77777,9,999999999,19,0.08,0,88,0,0,1 -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,82170,87142,16343,3103,290,3.1,6,5,16,77777,9,999999999,19,0.08,0,88,0,0,1 -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,26,84000,843,1329,422,599,728,136,71986,46467,16410,6631,310,7.2,6,4,16,77777,9,999999999,19,0.08,0,88,0,0,1 -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,52446,40674,9108,3536,330,8.8,5,5,16,77777,9,999999999,20,0.08,0,88,0,0,1 -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,26520,22384,10489,3477,350,8.2,9,5,16,6706,9,999999999,20,0.08,0,88,0,0,1 -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,1163,0,1171,472,220,6.2,9,7,16,6706,9,999999999,20,0.08,0,88,0,0,1 -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,3658,9,999999999,21,0.08,0,88,0,0,1 -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,4267,9,999999999,21,0.08,0,88,0,0,1 -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,4267,9,999999999,21,0.08,0,88,0,0,1 -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,12.2,61,83900,0,0,367,0,0,0,0,0,0,0,10,11.8,7,6,16,77777,9,999999999,22,0.08,0,88,0,0,1 -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,77777,9,999999999,21,0.08,0,88,0,0,1 -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,2438,9,999999999,21,0.08,0,88,0,0,1 -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,2591,9,999999999,21,0.08,0,88,0,0,1 -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,2438,9,999999999,21,0.08,0,88,0,0,1 -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,2591,9,999999999,21,0.08,0,88,0,0,1 -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,2286,9,999999999,21,0.08,0,88,0,0,1 -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,488,9,999999999,21,0.08,0,88,0,0,1 -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,4825,0,4862,2010,40,6.7,10,10,16,396,9,999999999,21,0.08,0,88,0,0,1 -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,6943,0,7002,3217,60,6.7,10,10,12.8,396,9,999999999,21,0.08,0,88,0,0,1 -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,10059,0,10151,4908,50,6.7,10,10,11.2,305,9,999999999,21,0.08,0,88,0,0,1 -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,12514,0,12635,6274,20,5.7,10,10,16,366,9,999999999,20,0.08,0,88,0,0,1 -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,14970,0,15121,7455,10,6.2,10,10,11.2,427,9,999999999,20,0.08,0,88,0,0,1 -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,20563,0,20773,9877,330,4.6,10,10,11.2,671,9,999999999,21,0.08,0,88,0,0,1 -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,63,84500,1204,1329,379,281,6,275,33737,446,33211,13190,350,5.2,10,10,11.2,1067,9,999999999,22,0.08,0,88,0,0,1 -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,23778,404,23156,9548,340,3.1,10,10,11.2,914,9,999999999,23,0.08,0,88,0,0,1 -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,49530,9739,39784,14741,350,3.1,10,10,11.2,1372,9,999999999,25,0.08,0,88,0,0.3,1 -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,30167,1916,28603,10615,0,0,8,8,16,1676,9,999999999,26,0.08,0,88,0,0,1 -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,26195,3686,23868,7944,0,0,10,10,16,1676,9,999999999,27,0.08,0,88,0,0,1 -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,8130,0,8193,3153,210,2.6,10,10,16,1676,9,999999999,28,0.08,0,88,0,0,1 -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,581,0,585,247,220,3.6,10,10,16,1676,9,999999999,29,0.08,0,88,0,0,1 -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,6096,9,999999999,30,0.08,0,88,0,0,1 -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,1676,9,999999999,31,0.08,0,88,0,0,1 -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,77777,9,999999999,32,0.08,0,88,0,0,1 -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,33,0.08,0,88,0,0,1 -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,33,0.08,0,88,0,0,1 -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,3658,9,999999999,32,0.08,0,88,0,0,1 -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,3658,9,999999999,32,0.08,0,88,0,0,1 -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,77777,9,999999999,32,0.08,0,88,0,0,1 -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,77777,9,999999999,32,0.08,0,88,0,0,1 -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,6706,9,999999999,31,0.08,0,88,0,0,1 -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,5,5,16,6706,9,999999999,31,0.08,0,88,0,0,1 -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,3254,0,3279,1418,240,3.6,9,8,16,3048,9,999999999,31,0.08,0,88,0,0,1 -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,11.1,77,84200,587,1330,351,69,0,69,6955,0,7014,3212,280,4.6,9,8,16,3048,9,999999999,31,0.08,0,88,0,0,1 -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,16130,0,16277,7350,280,4.6,9,9,16,3048,9,999999999,31,0.08,0,88,0,0,1 -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,74657,37249,34350,13121,310,3.1,7,7,16,77777,9,999999999,30,0.08,0,88,0,0,1 -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,99467,49222,25909,10587,320,2.6,6,4,16,7620,9,999999999,30,0.08,0,88,0,0,1 -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,107254,50360,31806,12715,320,3.6,7,6,16,7620,9,999999999,29,0.08,0,88,0,0,1 -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,59713,10314,47468,17478,0,0,7,5,16,7620,9,999999999,28,0.08,0,88,0,0,1 -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,11.7,43,84400,1139,1330,383,428,72,367,49752,6023,42944,16084,230,2.6,4,3,16,7620,9,999999999,28,0.08,0,88,0,0,1 -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,86294,47120,30894,12143,110,2.6,6,6,16,6706,9,999999999,27,0.08,0,88,0,0,1 -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,52176,24870,30247,11049,110,2.1,9,7,16,4572,9,999999999,26,0.08,0,88,0,0,1 -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,6971,0,7031,3268,20,10.8,10,10,16,18410,9,999999999,25,0.08,0,88,0,0.5,1 -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,10,53,84300,371,1330,375,38,0,38,3762,0,3792,1649,250,10.8,9,8,8,18349,9,999999999,25,0.08,0,88,0,0,1 -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,2968,0,2287,725,0,0,10,9,16,18288,9,999999999,24,0.08,0,88,0,0,1 -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,87,84200,0,0,374,0,0,0,0,0,0,0,160,2.6,9,9,16,3048,9,999999999,23,0.08,0,88,0,0,1 -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,3048,9,999999999,22,0.08,0,88,0,0,1 -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,77777,9,999999999,22,0.08,0,88,0,1.8,1 -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,7620,9,999999999,21,0.08,0,88,0,0,1 -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,77777,9,999999999,21,0.08,0,88,0,0,1 -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,12.2,83,83900,0,0,321,0,0,0,0,0,0,0,210,4.6,0,0,16,77777,9,999999999,21,0.08,0,88,0,0,1 -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,77777,9,999999999,22,0.08,0,88,0,0,1 -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,77777,9,999999999,22,0.08,0,88,0,0,1 -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,77777,9,999999999,23,0.08,0,88,0,0,1 -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,23,0.08,0,88,0,0,1 -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,23,0.08,0,88,0,0,1 -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,14.4,96,84100,336,1330,355,115,40,105,12593,1732,11546,3523,280,3.1,8,8,0.4,30,9,999999999,24,0.08,0,88,0,0,1 -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,44020,33959,17392,6142,260,3.1,6,6,4.8,77777,9,999999999,24,0.08,0,88,0,0,1 -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,71523,46401,14721,5936,260,5.7,5,5,14.4,77777,9,999999999,24,0.08,0,88,0,0,1 -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,82059,91628,13378,2685,270,3.1,3,3,16,77777,9,999999999,25,0.08,0,88,0,0,1 -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,11.1,42,84500,1124,1330,382,865,904,99,92878,93550,13278,3664,120,2.1,3,3,16,77777,9,999999999,25,0.08,0,88,0,0,1 -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,35,84500,1194,1330,396,929,920,101,99389,95091,13331,4676,140,3.6,5,5,16,77777,9,999999999,25,0.08,0,88,0,0,1 -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,113648,54285,21385,8850,130,3.6,5,4,16,77777,9,999999999,26,0.08,0,88,0,0,1 -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,108350,55470,20298,8431,110,5.2,6,5,16,7620,9,999999999,26,0.08,0,88,0,0,1 -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,77457,41029,31937,12437,120,4.1,8,7,16,7620,9,999999999,27,0.08,0,88,0,0,1 -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,66758,44833,19855,7827,40,2.1,7,6,16,7620,9,999999999,27,0.08,0,88,0,0,1 -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,43604,33660,15753,5775,310,7.7,9,8,16,3658,9,999999999,27,0.08,0,88,0,0,1 -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,20366,14871,10050,3314,360,2.1,5,5,16,7620,9,999999999,28,0.08,0,88,0,0,1 -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,4888,0,2391,747,290,3.6,3,3,16,77777,9,999999999,28,0.08,0,88,0,0,1 -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,77777,9,999999999,28,0.08,0,88,0,0,1 -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,77777,9,999999999,29,0.08,0,88,0,0,1 -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,51,84200,0,0,359,0,0,0,0,0,0,0,210,5.2,3,3,16,77777,9,999999999,29,0.08,0,88,0,0,1 -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,77777,9,999999999,29,0.08,0,88,0,0,1 -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,77777,9,999999999,29,0.08,0,88,0,0,1 -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,77777,9,999999999,28,0.08,0,88,0,0,1 -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,77777,9,999999999,28,0.08,0,88,0,0,1 -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,77777,9,999999999,27,0.08,0,88,0,0,1 -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,77777,9,999999999,26,0.08,0,88,0,0,1 -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,77777,9,999999999,26,0.08,0,88,0,0,1 -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,77777,9,999999999,25,0.08,0,88,0,0,1 -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,24105,20582,9113,2955,290,3.6,1,1,16,77777,9,999999999,24,0.08,0,88,0,0,1 -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,44,84400,581,1330,366,397,711,86,47116,37984,10238,3878,300,4.1,2,2,16,77777,9,999999999,24,0.08,0,88,0,0,1 -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,43,84500,806,1330,363,582,776,111,70563,46919,13506,5460,320,2.6,1,1,16,77777,9,999999999,23,0.08,0,88,0,0,1 -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,10.6,40,84600,990,1330,373,727,788,140,89095,49692,17228,7180,350,2.1,1,1,16,77777,9,999999999,22,0.08,0,88,0,0,1 -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,90769,88300,17036,4191,10,5.2,3,3,16,77777,9,999999999,22,0.08,0,88,0,0,1 -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,99937,94603,14951,5025,50,5.7,3,3,16,77777,9,999999999,22,0.08,0,88,0,0,1 -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,98070,90778,17010,5577,10,4.6,3,3,16,77777,9,999999999,22,0.08,0,88,0,0,1 -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,7.2,24,84800,1133,1330,409,880,909,104,93558,93360,13863,3883,20,7.2,5,5,16,77777,9,999999999,23,0.08,0,88,0,0,1 -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,8.3,26,84700,1008,1330,405,753,810,138,92745,51841,17066,7128,80,2.6,3,3,16,77777,9,999999999,23,0.08,0,88,0,0,1 -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,6.1,22,84800,829,1330,402,592,710,149,70601,48057,17844,7111,60,4.1,3,3,16,77777,9,999999999,23,0.08,0,88,0,0,1 -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,6.1,22,84000,608,1330,408,362,420,170,41034,30132,19360,6778,20,4.1,5,5,16,77777,9,999999999,24,0.08,0,88,0,0,1 -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,25292,20127,5685,2012,30,4.6,5,4,16,77777,9,999999999,24,0.08,0,88,0,0,1 -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,4528,0,1744,560,70,5.7,5,5,16,77777,9,999999999,25,0.08,0,88,0,0,1 -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,77777,9,999999999,25,0.08,0,88,0,0,1 -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,66,84600,0,0,373,0,0,0,0,0,0,0,80,8.2,5,4,16,77777,9,999999999,25,0.08,0,88,0,0,1 -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,15,73,84500,0,0,371,0,0,0,0,0,0,0,80,6.2,6,6,16,77777,9,999999999,26,0.08,0,88,0,0,1 -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,78,84300,0,0,394,0,0,0,0,0,0,0,70,5.2,10,10,16,2896,9,999999999,26,0.08,0,88,0,0,1 -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,3048,9,999999999,25,0.08,0,88,0,0,1 -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,3048,9,999999999,25,0.08,0,88,0,0,1 -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,5,5,16,77777,9,999999999,24,0.08,0,88,0,0,1 -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,77777,9,999999999,23,0.08,0,88,0,0,1 -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,23,0.08,0,88,0,0,1 -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,13.3,90,84300,0,0,336,0,0,0,0,0,0,0,290,2.1,4,3,9.6,6706,9,999999999,22,0.08,0,88,0,0,1 -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,21,0.08,0,88,0,0,1 -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,23370,18656,12825,3709,290,1.5,3,3,11.2,6600,9,999999999,21,0.08,0,88,0,0,1 -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,28558,9928,22031,7225,90,2.1,3,3,11.2,6706,9,999999999,20,0.08,0,88,0,0,1 -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,67402,44054,19867,7764,100,3.1,1,1,16,77777,9,999999999,19,0.08,0,88,0,0,1 -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,87937,47150,17638,7353,100,3.6,4,3,16,77777,9,999999999,19,0.08,0,88,0,0,1 -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,103199,48156,18994,7958,110,7.2,4,4,16,77777,9,999999999,18,0.08,0,88,0,0,1 -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,101205,45647,37715,14667,90,5.2,4,4,16,6706,9,999999999,19,0.08,0,88,0,0,1 -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,8,38,84500,1193,1331,388,513,108,416,59609,9616,48673,17737,250,4.1,9,8,8,2400,9,999999999,19,0.08,0,88,0,0,1 -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,92255,40953,39158,15029,10,6.7,9,8,16,2438,9,999999999,20,0.08,0,88,0,0,1 -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,15.7,56,84500,1004,1331,402,121,0,121,12592,0,12715,6334,100,4.6,8,7,16,7315,9,999999999,21,0.08,0,88,0,0,1 -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,13.3,48,84500,825,1331,394,452,319,254,51463,24824,29083,10675,240,7.7,9,6,16,6706,9,999999999,22,0.08,0,88,0,0,1 -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,10,44,84500,604,1331,399,64,0,64,6466,0,6521,3034,250,8.2,9,9,16.1,2700,9,999999999,23,0.08,0,88,0,0.3,1 -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,3754,0,3784,1632,10,2.1,10,8,16,6096,9,999999999,23,0.08,0,88,0,0,1 -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,4124,0,2681,808,210,5.2,9,7,16,6096,9,999999999,24,0.08,0,88,0,0,1 -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,13.9,68,84300,0,0,379,0,0,0,0,0,0,0,220,6.7,9,8,16,3658,9,999999999,25,0.08,0,88,0,0,1 -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,13.3,65,84300,0,0,379,0,0,0,0,0,0,0,200,4.1,9,8,16,3658,9,999999999,26,0.08,0,88,0,0,1 -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,6096,9,999999999,27,0.08,0,88,0,0,1 -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,6096,9,999999999,27,0.08,0,88,0,0,1 -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,3353,9,999999999,28,0.08,0,88,0,0,1 -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,3353,9,999999999,29,0.079,0,88,0,0,1 -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,77777,9,999999999,29,0.079,0,88,0,0,1 -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,6096,9,999999999,30,0.079,0,88,0,6.8,1 -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,3048,9,999999999,30,0.079,0,88,0,0,1 -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,4572,9,999999999,31,0.079,0,88,0,0,1 -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,4267,9,999999999,31,0.079,0,88,0,0,1 -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,22904,18122,11004,3361,280,3.6,9,7,11.2,3658,9,999999999,32,0.079,0,88,0,0,1 -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,76,84000,576,1331,378,251,119,200,27718,8567,22202,7240,300,3.6,9,8,11.2,3658,9,999999999,32,0.079,0,88,0,0,1 -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,55458,30039,29877,10697,340,4.6,9,7,16,4267,9,999999999,33,0.079,0,88,0,0,1 -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,35412,4147,30811,12012,350,3.6,9,8,16,4267,9,999999999,34,0.079,0,88,0,0,1 -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,93891,44877,38429,14749,350,4.6,9,7,16,6706,9,999999999,34,0.079,0,88,0,0,1 -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,51668,5959,44502,16649,30,6.7,9,9,16,3962,9,999999999,34,0.079,0,88,0,0,1 -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,36182,895,35205,13857,340,5.7,10,10,16,3048,9,999999999,33,0.079,0,88,0,0,1 -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,44,84000,1127,1331,398,487,102,400,56176,9018,46455,16947,320,6.7,9,9,16,2438,9,999999999,32,0.079,0,88,0,0,1 -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,43,84000,1001,1331,392,327,24,309,37787,1978,35924,13598,290,2.6,9,8,16,3353,9,999999999,32,0.079,0,88,0,0,1 -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,10.6,40,84000,821,1331,395,100,0,100,10287,0,10381,5016,310,6.7,9,7,16,6096,9,999999999,31,0.079,0,88,0,0,1 -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,66,83500,599,1331,409,249,117,197,27693,8330,22023,7401,250,6.7,10,10,16,6096,9,999999999,30,0.079,0,88,0,0,1 -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,23874,18764,9153,3040,230,7.2,7,6,16,6096,9,999999999,30,0.079,0,88,0,0,1 -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,12.8,63,83900,99,1209,386,23,51,20,2591,0,2258,695,300,10.3,9,9,16,2438,9,999999999,29,0.079,0,88,0,0,1 -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,2134,9,999999999,29,0.079,0,88,0,0,1 -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,3353,9,999999999,28,0.079,0,88,0,0,1 -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,3353,9,999999999,27,0.079,0,88,0,0,1 -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,2896,9,999999999,27,0.079,0,88,0,0,1 -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,2591,9,999999999,27,0.079,0,88,0,0,1 -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,3353,9,999999999,27,0.079,0,88,0,0,1 -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,77777,9,999999999,27,0.079,0,88,0,0,1 -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,6096,9,999999999,27,0.079,0,88,0,0,1 -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,6096,9,999999999,27,0.079,0,88,0,0,1 -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,6096,9,999999999,27,0.079,0,88,0,0,1 -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,6706,9,999999999,27,0.079,0,88,0,0,1 -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,58,84000,323,1332,350,134,121,105,14651,5499,11528,3437,270,4.1,4,4,16,6706,9,999999999,27,0.079,0,88,0,0,1 -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,8.9,49,84200,572,1332,354,384,587,131,44030,36763,15082,5419,300,4.6,3,3,16,6706,9,999999999,27,0.079,0,88,0,0,1 -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,64155,43698,18714,7330,340,6.2,3,3,16,6096,9,999999999,27,0.079,0,88,0,0,1 -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,64428,26478,39039,14303,360,7.2,6,6,16,6706,9,999999999,27,0.079,0,88,0,0,1 -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,79159,33251,41123,15485,30,5.7,5,5,16,6096,9,999999999,27,0.079,0,88,0,0,1 -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,107922,53449,29685,11942,40,5.2,8,6,16,6096,9,999999999,26,0.079,0,88,0,0,1 -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,6,30,84300,1188,1332,404,656,300,388,76642,26256,45636,16917,60,2.6,9,9,16.1,3000,9,999999999,25,0.079,0,88,0,0,1 -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,23015,398,22511,9308,270,8.8,9,8,16,2438,9,999999999,24,0.079,0,88,0,0,1 -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,13154,0,13280,6555,360,5.7,7,6,16,6096,9,999999999,23,0.079,0,88,0,0,1 -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,10.6,55,84300,817,1332,362,463,307,274,52407,25362,31194,11150,70,5.7,7,5,16,6706,9,999999999,22,0.079,0,88,0,0,1 -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,10,53,84300,595,1332,383,154,6,151,17542,397,17276,6156,90,3.6,9,9,16,6706,9,999999999,21,0.079,0,88,0,0,1 -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,54,84300,346,1332,358,127,117,97,14099,5231,10810,3425,170,3.6,5,5,16,6706,9,999999999,19,0.079,0,88,0,0,1 -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,9.4,50,84300,94,1188,361,30,173,18,3402,0,2045,632,210,3.6,6,5,16,6706,9,999999999,18,0.079,0,88,0,0,1 -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,58,84200,0,0,350,0,0,0,0,0,0,0,220,3.1,5,4,16,3658,9,999999999,17,0.079,0,88,0,0,1 -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,6706,9,999999999,16,0.079,0,88,0,0,1 -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,65,84100,0,0,366,0,0,0,0,0,0,0,270,3.6,9,9,16,7620,9,999999999,15,0.079,0,88,0,0,1 -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,6096,9,999999999,14,0.079,0,88,0,0,1 -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,6096,9,999999999,14,0.079,0,88,0,0,1 -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,3048,9,999999999,14,0.079,0,88,0,0,1 -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,6096,9,999999999,14,0.079,0,88,0,0,1 -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,10,72,84000,0,0,318,0,0,0,0,0,0,0,200,4.1,1,0,16,77777,9,999999999,13,0.079,0,88,0,0.8,1 -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,80,84000,0,0,317,0,0,0,0,0,0,0,120,2.1,1,1,16,6096,9,999999999,13,0.079,0,88,0,0,1 -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,83,83900,0,0,327,0,0,0,0,0,0,0,100,2.6,5,5,16,6096,9,999999999,13,0.079,0,88,0,0,1 -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,83,84000,73,1033,330,0,0,0,0,0,0,0,190,2.6,6,6,16,77777,9,999999999,13,0.079,0,88,0,0,1 -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,22031,16668,7404,2467,130,2.1,7,6,16,77777,9,999999999,13,0.079,0,88,0,0,1 -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,47161,38942,10434,3923,0,0,5,5,16,77777,9,999999999,12,0.079,0,88,0,0,1 -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,51,84500,795,1332,359,563,666,165,66083,45372,19454,7578,290,2.1,4,3,16,77777,9,999999999,12,0.079,0,88,0,0,1 -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,47708,8878,39283,14358,330,4.6,5,4,16,77777,9,999999999,12,0.079,0,88,0,0,1 -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,54920,9489,44719,16450,0,0,4,4,16,6706,9,999999999,12,0.079,0,88,0,0,1 -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,41,84500,1182,1332,378,862,637,295,102595,48865,35323,13867,30,2.1,4,4,16,6706,9,999999999,11,0.079,0,88,0,0,1 -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,113196,53912,19933,8287,10,1.5,5,5,16,6706,9,999999999,11,0.079,0,88,0,0,1 -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,103973,52795,20915,8685,360,2.1,7,6,16,6706,9,999999999,11,0.079,0,88,0,0,1 -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,10,39,84400,994,1332,390,683,577,251,80131,43865,29612,11650,340,1.5,8,6,16,6706,9,999999999,10,0.079,0,88,0,0,1 -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,36141,8585,28889,10520,330,10.3,9,8,16,3300,9,999999999,10,0.079,0,88,0,0,1 -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,40265,30602,18344,6417,20,10.3,7,7,16,6096,9,999999999,9,0.079,0,88,0,0,1 -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,21151,16341,6837,2350,70,3.1,3,3,16,77777,9,999999999,9,0.079,0,88,0,0,1 -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,3063,17155,1847,289,50,2.1,4,4,16,77777,9,999999999,8,0.079,0,88,0,0,1 -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,77777,9,999999999,8,0.079,0,88,0,0,1 -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,6706,9,999999999,7,0.079,0,88,0,0,1 -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,2134,9,999999999,7,0.079,0,88,0,0.3,1 -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,77777,9,999999999,6,0.079,0,88,0,0,1 -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,10.6,75,84200,0,0,319,0,0,0,0,0,0,0,230,4.6,0,0,16,77777,9,999999999,7,0.079,0,88,0,0,1 -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,10,72,84100,0,0,318,0,0,0,0,0,0,0,220,6.2,0,0,16,77777,9,999999999,8,0.079,0,88,0,0,1 -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,8.9,67,84000,0,0,317,0,0,0,0,0,0,0,210,7.2,0,0,16,77777,9,999999999,8,0.079,0,88,0,0,1 -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,8.3,64,84000,0,0,317,0,0,0,0,0,0,0,220,5.2,0,0,16,77777,9,999999999,9,0.079,0,88,0,0,1 -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,77777,9,999999999,9,0.079,0,88,0,0,1 -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,16,77777,9,999999999,10,0.079,0,88,0,0,1 -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,77777,9,999999999,11,0.079,0,88,0,0,1 -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,9.4,69,84200,316,1333,331,187,500,68,21149,16152,7714,2542,260,3.1,3,3,16,77777,9,999999999,11,0.079,0,88,0,0,1 -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,47355,39359,9880,3724,280,3.1,3,3,16,77777,9,999999999,12,0.079,0,88,0,0,1 -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,63081,85978,12083,1882,350,4.1,3,3,16,77777,9,999999999,12,0.079,0,88,0,0,1 -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,78117,89105,12867,2556,10,2.1,3,3,16,77777,9,999999999,13,0.079,0,88,0,0,1 -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,4.4,26,84100,1109,1333,379,829,832,134,103889,53750,16860,7063,30,4.1,5,5,16,77777,9,999999999,14,0.079,0,88,0,0,1 -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,109339,54015,21345,8830,20,5.2,5,5,16,77777,9,999999999,14,0.079,0,88,0,0,1 -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,97361,91400,17047,5223,20,5.2,3,3,16,77777,9,999999999,13,0.079,0,88,0,0,1 -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,93468,96570,11625,3275,10,6.2,3,3,16,77777,9,999999999,13,0.079,0,88,0,0,1 -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,23,84700,990,1333,391,763,911,85,81337,93015,11786,2507,310,5.2,3,3,16,77777,9,999999999,13,0.079,0,88,0,0,1 -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,72453,50089,12073,4900,40,5.7,3,3,16,77777,9,999999999,13,0.079,0,88,0,0,1 -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,47563,41240,11276,4238,10,6.2,5,5,16,77777,9,999999999,13,0.079,0,88,0,0,1 -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,19524,15524,8426,2791,30,4.1,3,3,16,77777,9,999999999,12,0.079,0,88,0,0,1 -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,3090,0,1719,533,50,2.6,3,3,16,77777,9,999999999,12,0.079,0,88,0,0,1 -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,3,3,16,77777,9,999999999,12,0.079,0,88,0,0,1 -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,2.2,31,84400,0,0,346,0,0,0,0,0,0,0,150,1.5,3,3,16,77777,9,999999999,12,0.079,0,88,0,0,1 -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,77777,9,999999999,11,0.079,0,88,0,0,1 -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,77777,9,999999999,11,0.079,0,88,0,0,1 -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,41,84200,0,0,328,0,0,0,0,0,0,0,210,5.7,0,0,16,77777,9,999999999,12,0.079,0,88,0,0,1 -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,43,84200,0,0,325,0,0,0,0,0,0,0,210,5.7,0,0,16,77777,9,999999999,12,0.078,0,88,0,0,1 -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,77777,9,999999999,12,0.078,0,88,0,0,1 -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,77777,9,999999999,13,0.078,0,88,0,0,1 -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,77777,9,999999999,13,0.078,0,88,0,0,1 -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,5,51,84000,0,0,313,0,0,0,0,0,0,0,220,2.6,0,0,16,77777,9,999999999,13,0.078,0,88,0,0,1 -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,77777,9,999999999,13,0.078,0,88,0,0,1 -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,22405,18030,6878,2299,230,5.2,0,0,16,77777,9,999999999,14,0.078,0,88,0,0,1 -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,35,84400,563,1333,340,393,719,88,46477,40082,10439,3906,250,5.7,0,0,16,77777,9,999999999,14,0.078,0,88,0,0,1 -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,29,84500,789,1333,354,564,764,111,68325,48083,13494,5415,260,4.1,0,0,16,77777,9,999999999,14,0.078,0,88,0,0,1 -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,25,84600,974,1333,383,690,709,171,83288,49399,20734,8482,230,2.6,3,3,16,77777,9,999999999,15,0.078,0,88,0,0,1 -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,-1.1,13,83900,1106,1333,392,779,712,187,95353,51190,22999,9457,330,3.6,3,3,16,77777,9,999999999,15,0.078,0,88,0,0,1 -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.6,14,84600,1176,1333,392,831,685,226,101231,51128,27676,11198,320,2.6,3,3,16,77777,9,999999999,16,0.078,0,88,0,0,1 -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,101651,51269,30628,12245,300,3.1,3,3,16,77777,9,999999999,16,0.078,0,88,0,0,1 -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,96608,51696,26317,10688,290,3.6,3,3,16,77777,9,999999999,16,0.078,0,88,0,0,1 -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,13,84500,986,1333,405,700,696,183,84361,50575,22157,9022,230,2.1,3,3,16,77777,9,999999999,17,0.078,0,88,0,0,1 -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,66558,47473,16585,6584,170,2.1,3,3,16,77777,9,999999999,17,0.078,0,88,0,0,1 -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,13,83500,581,1333,398,385,709,76,46314,39578,9167,3488,110,3.6,2,2,16,77777,9,999999999,18,0.078,0,88,0,0,1 -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,22113,17984,6183,2130,130,2.1,5,5,16,77777,9,999999999,18,0.078,0,88,0,0,1 -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,2803,0,1286,406,160,4.1,6,6,16,77777,9,999999999,19,0.078,0,88,0,0,1 -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,7620,9,999999999,19,0.078,0,88,0,0,1 -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,77777,9,999999999,20,0.078,0,88,0,0,1 -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,77777,9,999999999,20,0.078,0,88,0,0,1 -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,77777,9,999999999,21,0.078,0,88,0,0,1 -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,77777,9,999999999,20,0.078,0,88,0,0,1 -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,77777,9,999999999,20,0.078,0,88,0,0,1 -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,2.8,32,83700,0,0,333,0,0,0,0,0,0,0,230,5.7,0,0,16,77777,9,999999999,19,0.078,0,88,0,0,1 -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,77777,9,999999999,19,0.078,0,88,0,0,1 -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,2.8,32,83600,0,0,333,0,0,0,0,0,0,0,220,6.7,0,0,16,77777,9,999999999,19,0.078,0,88,0,0,1 -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,77777,9,999999999,18,0.078,0,88,0,0,1 -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,1219,10628,697,139,220,6.7,0,0,16,77777,9,999999999,18,0.078,0,88,0,0,1 -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,22453,18809,7086,2349,220,7.2,0,0,16,77777,9,999999999,17,0.078,0,88,0,0,1 -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,43260,37839,12721,4647,220,6.2,0,0,16,77777,9,999999999,17,0.078,0,88,0,0,1 -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,2.8,18,84200,786,1334,381,564,765,113,68247,49014,13722,5492,220,4.1,0,0,16,77777,9,999999999,16,0.078,0,88,0,0,1 -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,86820,52790,17582,7268,230,3.1,3,3,16,77777,9,999999999,16,0.078,0,88,0,0,1 -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,90181,91834,14558,3635,0,0,4,4,16,77777,9,999999999,16,0.078,0,88,0,0,1 -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,95127,88930,18516,5257,40,2.6,4,4,16,77777,9,999999999,15,0.078,0,88,0,0,1 -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,93736,45270,36666,14238,90,2.6,8,6,16,7620,9,999999999,15,0.078,0,88,0,0,1 -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,87747,44302,36781,14168,130,4.1,10,7,16,7620,9,999999999,15,0.078,0,88,0,0,1 -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,28545,1405,27146,10763,70,3.6,9,7,16,3962,9,999999999,15,0.078,0,88,0,0,1 -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,34028,4556,30570,10838,30,7.7,10,9,16,2286,9,999999999,15,0.078,0,88,0,0,1 -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,23527,3162,21627,7114,70,8.2,10,10,16,2438,9,999999999,15,0.078,0,88,0,0,1 -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,11264,2393,9850,3112,80,5.7,9,7,16,3962,9,999999999,15,0.078,0,88,0,0,1 -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,2493,0,1703,518,140,5.7,9,7,16,3962,9,999999999,15,0.078,0,88,0,0,1 -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,3962,9,999999999,14,0.078,0,88,0,0,1 -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,6096,9,999999999,14,0.078,0,88,0,0,1 -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,6096,9,999999999,14,0.078,0,88,0,0,1 -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,35,83700,0,0,364,0,0,0,0,0,0,0,260,2.1,9,6,16,6096,9,999999999,14,0.078,0,88,0,0,1 -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,6096,9,999999999,14,0.078,0,88,0,0,1 -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,40,83700,0,0,347,0,0,0,0,0,0,0,170,2.1,9,4,16,6096,9,999999999,15,0.077,0,88,0,0,1 -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,6096,9,999999999,15,0.077,0,88,0,0,1 -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,6096,9,999999999,15,0.077,0,88,0,0,1 -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,6096,9,999999999,16,0.077,0,88,0,0,1 -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,3.3,33,83400,0,0,351,0,0,0,0,0,0,0,210,7.2,6,4,16,3962,9,999999999,16,0.077,0,88,0,0,1 -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,3.3,33,83700,62,967,348,10,153,5,1100,8203,861,160,200,5.7,6,3,16,7620,9,999999999,17,0.077,0,88,0,0,1 -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,21991,19692,9872,3016,220,7.2,6,5,16,6706,9,999999999,17,0.077,0,88,0,0,1 -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,36980,27804,19252,6433,220,7.2,6,5,16,6706,9,999999999,17,0.077,0,88,0,0,1 -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,57058,38400,22607,8528,230,6.2,7,6,16,6706,9,999999999,18,0.077,0,88,0,0,1 -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,3.3,18,84100,969,1334,412,640,503,274,74462,41484,32061,12271,210,7.2,8,7,16,6096,9,999999999,18,0.077,0,88,0,0,1 -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,4.4,20,83400,1101,1334,414,359,84,289,42406,6775,34338,13417,220,6.7,9,7,16,6096,9,999999999,18,0.077,0,88,0,0,1 -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,89401,40089,40421,15394,240,2.1,8,5,16,6096,9,999999999,19,0.077,0,88,0,0,1 -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,98627,48198,36026,14051,260,2.1,8,5,16,6096,9,999999999,20,0.077,0,88,0,0,1 -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,5,24,83800,1107,1334,405,316,30,291,37337,2414,34586,13508,280,20.6,9,8,2.8,2400,9,999999999,21,0.077,0,88,0,0,1 -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,20992,0,21191,9717,10,5.7,8,7,16,6096,9,999999999,22,0.077,0,88,0,0,1 -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,15425,0,15564,7023,10,6.2,7,6,16,6096,9,999999999,22,0.077,0,88,0,0,1 -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,38377,25731,23124,7382,240,3.1,9,7,16,6096,9,999999999,23,0.077,0,88,0,0,1 -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,40,83800,320,1334,384,73,0,73,7196,0,7251,2707,250,5.2,7,5,16,6096,9,999999999,24,0.077,0,88,0,0,1 -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,8,36,83800,71,1034,387,17,75,13,1936,0,1482,456,260,7.7,9,7,16,3600,9,999999999,25,0.077,0,88,0,0,1 -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,3658,9,999999999,26,0.077,0,88,0,0,1 -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,3353,9,999999999,27,0.077,0,88,0,0,1 -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,6096,9,999999999,27,0.077,0,88,0,0,1 -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,6096,9,999999999,28,0.077,0,88,0,0,1 -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,6096,9,999999999,27,0.077,0,88,0,0,1 -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,6096,9,999999999,27,0.077,0,88,0,0,1 -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,6096,9,999999999,26,0.077,0,88,0,0,1 -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,77777,9,999999999,25,0.077,0,88,0,0,1 -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,6096,9,999999999,24,0.077,0,88,0,0,1 -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,6706,9,999999999,23,0.077,0,88,0,0,1 -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,889,7192,695,136,210,4.1,6,4,16,6096,9,999999999,23,0.077,0,88,0,0,1 -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,19461,15289,8416,2676,230,5.7,6,5,16,6096,9,999999999,22,0.077,0,88,0,0,1 -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,42144,36142,13755,4953,250,3.6,4,4,16,6096,9,999999999,21,0.077,0,88,0,0,1 -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,61639,42520,18868,7327,330,3.1,5,5,16,6096,9,999999999,20,0.077,0,88,0,0,1 -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,80367,47368,22591,9148,330,2.1,6,6,16,6706,9,999999999,19,0.077,0,88,0,0,1 -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,78561,34581,39411,14949,320,3.1,8,8,16,6706,9,999999999,18,0.077,0,88,0,0,1 -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,106411,53386,24518,10050,260,3.1,9,9,16,6706,9,999999999,18,0.077,0,88,0,0,1 -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,109926,54288,20259,8411,290,3.1,5,5,16,77777,9,999999999,18,0.077,0,88,0,0,1 -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,5.6,21,83900,1103,1335,407,814,747,195,99087,52603,23854,9795,330,2.1,5,5,16,77777,9,999999999,17,0.077,0,88,0,0,1 -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,20,83900,974,1335,434,676,649,202,80578,47550,24197,9739,360,2.1,9,9,16,6706,9,999999999,17,0.077,0,88,0,0,1 -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,66995,46896,14174,5679,30,5.2,9,9,16,6706,9,999999999,17,0.077,0,88,0,0,1 -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,43280,37121,15405,5492,360,5.2,9,9,16,3353,9,999999999,16,0.077,0,88,0,0,1 -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,4044,0,4074,1688,10,6.7,9,9,16,3658,9,999999999,16,0.077,0,88,0,0,1 -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,1388,0,1158,362,10,3.6,9,9,16,6706,9,999999999,15,0.077,0,88,0,0,1 -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,4267,9,999999999,15,0.077,0,88,0,0,1 -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,6706,9,999999999,15,0.077,0,88,0,0,1 -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,6706,9,999999999,14,0.077,0,88,0,0,1 -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,6096,9,999999999,14,0.077,0,88,0,0,1 -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,6096,9,999999999,14,0.077,0,88,0,0,1 -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,7.8,45,83600,0,0,359,0,0,0,0,0,0,0,220,6.7,5,5,16,77777,9,999999999,15,0.076,0,88,0,0,1 -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,7.2,43,83600,0,0,352,0,0,0,0,0,0,0,230,5.2,3,3,16,77777,9,999999999,15,0.076,0,88,0,0,1 -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,77777,9,999999999,15,0.076,0,88,0,0,1 -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,6096,9,999999999,16,0.076,0,88,0,0,1 -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,5486,9,999999999,16,0.076,0,88,0,0,1 -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,852,0,487,154,220,4.1,5,3,16,6706,9,999999999,16,0.076,0,88,0,0,1 -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,7.2,43,83800,299,1336,358,157,253,101,17101,11070,11047,3203,220,4.1,7,5,16,6706,9,999999999,17,0.076,0,88,0,0,1 -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,20405,1365,19607,6479,220,5.2,8,6,16,6706,9,999999999,17,0.076,0,88,0,0,1 -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,32709,5004,28794,10224,270,3.6,7,6,16,6706,9,999999999,17,0.076,0,88,0,0,1 -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,76241,43385,29820,11573,0,0,7,5,16,6706,9,999999999,18,0.076,0,88,0,0,1 -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,85102,42468,32305,12760,20,5.2,8,6,16,6706,9,999999999,18,0.076,0,88,0,0,1 -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,88015,40399,35177,13777,40,5.2,6,5,16,6706,9,999999999,19,0.076,0,88,0,0,1 -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,88034,39681,38167,14718,30,5.2,7,5,16,6706,9,999999999,21,0.076,0,88,0,0,1 -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,69264,25048,42038,15679,120,2.6,8,5,16,6706,9,999999999,22,0.076,0,88,0,0,1 -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,36513,3467,33228,12638,130,1.5,10,8,16,3353,9,999999999,23,0.076,0,88,0,0,1 -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,14290,0,14418,6560,200,3.6,10,9,16,3353,9,999999999,24,0.076,0,88,0,0,1 -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,49,83600,560,1336,399,63,0,63,6341,0,6394,2920,190,9.8,10,10,16,3658,9,999999999,26,0.076,0,88,0,0,1 -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,2660,0,2680,1159,210,5.7,9,5,16,3658,9,999999999,27,0.076,0,88,0,0,1 -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,1597,0,1257,386,240,6.2,9,5,16,6096,9,999999999,28,0.076,0,88,0,0,1 -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,9.4,50,83900,0,0,361,0,0,0,0,0,0,0,230,6.2,7,5,16,6096,9,999999999,30,0.076,0,88,0,0,1 -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,54,83900,0,0,362,0,0,0,0,0,0,0,240,4.6,8,6,16,6096,9,999999999,31,0.076,0,88,0,0,1 -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,3048,9,999999999,32,0.076,0,88,0,0,1 -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,10,53,83700,0,0,394,0,0,0,0,0,0,0,300,3.6,10,10,16,2896,9,999999999,33,0.076,0,88,0,0,1 -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,10,9,16,2743,9,999999999,32,0.076,0,88,0,0,1 -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,3962,9,999999999,31,0.075,0,88,0,0,1 -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,6096,9,999999999,30,0.075,0,88,0,0,1 -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,6096,9,999999999,29,0.075,0,88,0,0,1 -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,77777,9,999999999,28,0.075,0,88,0,0,1 -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,10.6,75,83700,0,0,341,0,0,0,0,0,0,0,200,2.6,9,6,16,6096,9,999999999,27,0.075,0,88,0,0,1 -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,798,8995,358,77,200,2.1,10,6,16,6096,9,999999999,26,0.075,0,88,0,0,1 -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,60,84000,295,1336,351,194,604,60,22000,16034,6824,2250,240,4.1,9,5,16,7620,9,999999999,25,0.075,0,88,0,0,1 -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,10,53,84100,548,1336,365,367,545,143,41522,34894,16249,5642,40,1.5,9,6,16,6706,9,999999999,24,0.075,0,88,0,0,1 -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,36198,7649,30414,10595,70,2.1,10,7,16,3962,9,999999999,23,0.075,0,88,0,0,1 -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,11.1,57,84200,960,1336,370,171,0,171,17784,0,17954,8434,90,2.1,9,7,16,3962,9,999999999,22,0.075,0,88,0,0,1 -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,60607,16041,43264,16003,140,2.6,7,5,16,6706,9,999999999,21,0.075,0,88,0,0,1 -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,98902,47682,33761,13334,140,4.1,4,3,16,6706,9,999999999,22,0.075,0,88,0,0,1 -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,8.3,35,84200,1162,1336,382,888,839,157,110595,54229,19641,8175,0,0,4,4,16,6706,9,999999999,23,0.075,0,88,0,0,1 -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,104499,54038,16923,7101,100,4.6,3,3,16,6706,9,999999999,24,0.075,0,88,0,0,1 -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,80056,47239,25032,10012,150,3.1,4,4,16,6706,9,999999999,25,0.075,0,88,0,0,1 -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,56643,37633,22159,8396,230,3.1,4,4,14.4,7315,9,999999999,25,0.075,0,88,0,0,1 -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,33376,22063,19243,6444,320,3.6,8,8,16,7315,9,999999999,26,0.075,0,88,0,0,1 -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,18526,13382,6651,2225,10,4.1,3,3,16,77777,9,999999999,27,0.075,0,88,0,0,1 -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,1513,0,932,291,20,3.1,3,3,16,77777,9,999999999,28,0.075,0,88,0,0,1 -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,77777,9,999999999,28,0.075,0,88,0,0,1 -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,77777,9,999999999,29,0.075,0,88,0,0,1 -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,77777,9,999999999,30,0.075,0,88,0,0,1 -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,7.8,45,83500,0,0,339,0,0,0,0,0,0,0,220,6.2,0,0,16,77777,9,999999999,31,0.075,0,88,0,0,1 -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,7.8,45,83800,0,0,339,0,0,0,0,0,0,0,210,6.2,0,0,16,77777,9,999999999,30,0.075,0,88,0,0,1 -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,77777,9,999999999,29,0.075,0,88,0,0,1 -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,77777,9,999999999,28,0.075,0,88,0,0,1 -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,77777,9,999999999,27,0.075,0,88,0,0,1 -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,43,83600,0,0,325,0,0,0,0,0,0,0,220,7.7,0,0,16,77777,9,999999999,26,0.075,0,88,0,0,1 -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,46,83400,0,0,320,0,0,0,0,0,0,0,230,6.2,0,0,16,77777,9,999999999,25,0.075,0,88,0,0,1 -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,32,83600,52,880,315,6,151,2,671,7563,357,76,220,6.2,0,0,16,77777,9,999999999,24,0.075,0,88,0,0,1 -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,27,83800,292,1337,327,186,558,64,21039,17795,7261,2351,230,4.6,0,0,16,77777,9,999999999,23,0.075,0,88,0,0,1 -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,20,84000,544,1337,350,368,658,99,43006,38907,11608,4246,230,5.2,0,0,16,77777,9,999999999,22,0.075,0,88,0,0,1 -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,17,84100,772,1337,363,553,765,110,66923,49342,13358,5324,250,4.6,0,0,16,77777,9,999999999,21,0.075,0,88,0,0,1 -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,14,84300,957,1337,393,672,691,176,80830,49922,21266,8629,310,3.6,3,3,16,77777,9,999999999,20,0.075,0,88,0,0,1 -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,94799,52086,24182,9897,340,4.1,3,3,16,77777,9,999999999,19,0.075,0,88,0,0,1 -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,92468,88510,16874,4679,350,3.1,3,3,16,77777,9,999999999,18,0.075,0,88,0,0,1 -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,114496,60392,21661,8943,10,2.1,3,3,16,77777,9,999999999,17,0.075,0,88,0,0,1 -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,79364,36960,39046,14800,20,1.5,6,5,16,77777,9,999999999,16,0.075,0,88,0,0,1 -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,70750,39385,30876,11872,30,1.5,5,4,16,7315,9,999999999,15,0.075,0,88,0,0,1 -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,46646,23521,28368,10105,50,1.5,8,6,16,7315,9,999999999,14,0.075,0,88,0,0,1 -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,13233,0,13342,5324,60,5.7,9,7,16,7315,9,999999999,13,0.075,0,88,0,0,1 -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,10437,1788,9360,2885,70,3.6,8,5,16,4267,9,999999999,12,0.075,0,88,0,0,1 -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,97,0,97,41,80,2.1,5,4,16,4267,9,999999999,11,0.075,0,88,0,0,1 -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,2,20,84000,0,0,401,0,0,0,0,0,0,0,10,9.3,9,8,16.1,3000,9,999999999,10,0.075,0,88,0,0,1 -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,3353,9,999999999,9,0.075,0,88,0,0,1 -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,3962,9,999999999,8,0.075,0,88,0,0,1 -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,3962,9,999999999,7,0.075,0,88,0,0,1 -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,3353,9,999999999,8,0.075,0,88,0,0,1 -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,7315,9,999999999,9,0.074,0,88,0,0,1 -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,33,83800,0,0,366,0,0,0,0,0,0,0,280,3.6,8,5,16,7315,9,999999999,9,0.074,0,88,0,0,1 -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,3962,9,999999999,10,0.074,0,88,0,0,1 -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,77777,9,999999999,11,0.074,0,88,0,0,1 -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,3353,9,999999999,11,0.074,0,88,0,0,1 -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,10.6,55,84000,49,858,375,1,0,1,96,0,97,40,230,5.7,9,8,16,3353,9,999999999,12,0.074,0,88,0,0,1 -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,2661,0,2680,1137,130,4.6,8,8,16,3048,9,999999999,13,0.074,0,88,0,0,1 -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,6437,0,6490,2920,170,5.7,8,8,16,3048,9,999999999,13,0.074,0,88,0,0,1 -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,8,43,84200,768,1337,367,92,0,92,9432,0,9516,4541,110,12.3,8,6,14.5,4200,9,999999999,14,0.074,0,88,0,0,1 -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,18537,0,18712,8700,190,7.2,8,6,16,4267,9,999999999,14,0.074,0,88,0,0,1 -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,31646,1359,30028,11995,170,10.8,8,6,16,6706,9,999999999,15,0.074,0,88,0,0,1 -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,72800,25070,43969,16365,150,10.3,4,4,16,6706,9,999999999,15,0.074,0,88,0,0,1 -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,96776,47645,33126,13098,150,9.3,5,4,16,6706,9,999999999,15,0.074,0,88,0,0,1 -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,90697,47690,29840,11928,160,7.2,6,5,16,6706,9,999999999,16,0.074,0,88,0,0,1 -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,46378,8981,38392,13944,140,6.7,3,3,16,6096,9,999999999,16,0.074,0,88,0,0,1 -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,62018,44821,20297,7762,130,5.2,3,3,16,6096,9,999999999,16,0.074,0,88,0,0,1 -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,24,84400,544,1337,391,360,707,72,43090,36705,8641,3253,140,6.7,8,5,16,77777,9,999999999,16,0.074,0,88,0,0,1 -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,26,84300,291,1337,380,169,620,34,20091,12002,4048,1406,150,5.7,3,3,16,77777,9,999999999,16,0.074,0,88,0,0,1 -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,773,5985,693,132,140,4.1,3,3,16,77777,9,999999999,17,0.074,0,88,0,0,1 -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,77777,9,999999999,17,0.074,0,88,0,0,1 -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,77777,9,999999999,17,0.074,0,88,0,0,1 -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,77777,9,999999999,17,0.074,0,88,0,0,1 -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,5,51,83900,0,0,313,0,0,0,0,0,0,0,180,5.2,0,0,16,77777,9,999999999,17,0.074,0,88,0,0,1 -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,77777,9,999999999,17,0.074,0,88,0,0,1 -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,43,84000,0,0,325,0,0,0,0,0,0,0,210,6.2,0,0,16,77777,9,999999999,17,0.073,0,88,0,0,1 -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,77777,9,999999999,17,0.073,0,88,0,0,1 -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,77777,9,999999999,17,0.073,0,88,0,0,1 -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,77777,9,999999999,17,0.073,0,88,0,0,1 -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,77777,9,999999999,17,0.073,0,88,0,0,1 -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,449,4820,356,75,220,5.2,0,0,12.8,77777,9,999999999,17,0.073,0,88,0,0,1 -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,17997,13729,8472,2624,220,7.2,0,0,16,77777,9,999999999,17,0.073,0,88,0,0,1 -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,34,84300,538,1338,350,383,772,72,45739,39735,8621,3231,200,4.1,1,1,16,77777,9,999999999,17,0.073,0,88,0,0,1 -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,68868,49116,10607,4268,210,4.1,1,1,16,77777,9,999999999,17,0.073,0,88,0,0,1 -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,15,84600,951,1338,371,691,794,125,85197,52588,15470,6410,190,3.6,0,0,16,77777,9,999999999,17,0.073,0,88,0,0,1 -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,95492,53016,21893,9032,210,4.6,1,1,16,77777,9,999999999,17,0.073,0,88,0,0,1 -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,104307,54512,21754,8979,210,1.5,3,3,16,77777,9,999999999,17,0.073,0,88,0,0,1 -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,108820,56477,18968,7888,210,2.6,3,3,16,77777,9,999999999,16,0.073,0,88,0,0,1 -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,87156,89722,15126,3497,80,4.6,3,3,16,77777,9,999999999,16,0.073,0,88,0,0,1 -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,75886,88415,13434,2489,50,2.6,3,3,16,77777,9,999999999,16,0.073,0,88,0,0,1 -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,12,84500,766,1338,411,564,861,70,60033,86254,10199,1721,10,3.1,3,3,16,77777,9,999999999,16,0.073,0,88,0,0,1 -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,39562,75878,7956,1242,80,2.1,6,5,16,77777,9,999999999,16,0.073,0,88,0,0,1 -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,18873,11045,4042,1398,150,6.7,6,6,16,77777,9,999999999,16,0.073,0,88,0,0,1 -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,666,6179,525,105,170,5.2,4,4,16,77777,9,999999999,15,0.073,0,88,0,0,1 -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,77777,9,999999999,15,0.073,0,88,0,0,1 -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,77777,9,999999999,15,0.073,0,88,0,0,1 -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,77777,9,999999999,15,0.073,0,88,0,0,1 -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,77777,9,999999999,15,0.073,0,88,0,0,1 -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,6.7,42,83900,0,0,344,0,0,0,0,0,0,0,170,5.7,1,1,16,77777,9,999999999,15,0.073,0,88,0,0,1 -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,77777,9,999999999,15,0.072,0,88,0,0,1 -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,77777,9,999999999,15,0.072,0,88,0,0,1 -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,77777,9,999999999,15,0.072,0,88,0,0,1 -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,77777,9,999999999,15,0.072,0,88,0,0,1 -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,46,83700,0,0,320,0,0,0,0,0,0,0,230,6.2,0,0,16,77777,9,999999999,15,0.072,0,88,0,0,1 -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,448,4971,355,74,220,3.6,0,0,16,77777,9,999999999,15,0.072,0,88,0,0,1 -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,19829,16904,9678,2856,230,2.6,0,0,16,77777,9,999999999,15,0.072,0,88,0,0,1 -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,40054,35007,13170,4709,240,4.1,1,1,16,77777,9,999999999,15,0.072,0,88,0,0,1 -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,25,84300,762,1338,383,514,674,129,61253,44159,15432,6070,240,3.6,3,3,16,77777,9,999999999,15,0.072,0,88,0,0,1 -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,4.4,20,84400,948,1338,399,666,722,154,80695,49244,18739,7679,200,2.1,3,3,16,77777,9,999999999,15,0.072,0,88,0,0,1 -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,92734,50847,25031,10209,160,4.1,3,3,16,77777,9,999999999,16,0.072,0,88,0,0,1 -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,91146,87278,17652,4594,130,5.2,4,4,16,77777,9,999999999,16,0.072,0,88,0,0,1 -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,108486,58095,27324,11064,110,4.1,5,4,16,77777,9,999999999,17,0.072,0,88,0,0,1 -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,40048,5880,33388,13063,110,5.7,3,3,16,77777,9,999999999,17,0.072,0,88,0,0,1 -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,54054,17020,39360,14086,160,6.2,4,4,16,77777,9,999999999,18,0.072,0,88,0,0,1 -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,47513,24754,29006,10151,150,5.7,6,6,16,77777,9,999999999,18,0.072,0,88,0,0,1 -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,10985,0,11075,4558,160,8.2,5,5,16,77777,9,999999999,19,0.072,0,88,0,0,1 -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,17033,13242,8378,2598,160,6.7,8,6,16,6706,9,999999999,19,0.072,0,88,0,0,1 -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,193,0,194,79,170,8.2,6,5,16,6706,9,999999999,20,0.072,0,88,0,0,1 -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,-1.1,18,83900,0,0,372,0,0,0,0,0,0,0,180,7.2,6,5,16,6706,9,999999999,20,0.072,0,88,0,0,1 -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,6706,9,999999999,21,0.072,0,88,0,0,1 -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,77777,9,999999999,21,0.072,0,88,0,0,1 -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,77777,9,999999999,22,0.072,0,88,0,0,1 -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,6096,9,999999999,22,0.072,0,88,0,0,1 -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,6096,9,999999999,22,0.071,0,88,0,0,1 -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,6096,9,999999999,23,0.071,0,88,0,0,1 -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,2.2,31,83500,0,0,338,0,0,0,0,0,0,0,160,6.2,1,1,16,77777,9,999999999,23,0.071,0,88,0,0,1 -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,2.2,31,83500,0,0,338,0,0,0,0,0,0,0,210,5.2,1,1,16,77777,9,999999999,23,0.071,0,88,0,0,1 -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,77777,9,999999999,23,0.071,0,88,0,0,1 -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,263,0,131,40,260,3.1,3,3,16,77777,9,999999999,24,0.071,0,88,0,0,1 -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,10967,2614,9467,2797,290,6.2,5,4,16,77777,9,999999999,24,0.071,0,88,0,0,1 -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,40599,36364,14122,4973,280,5.7,3,3,16,77777,9,999999999,24,0.071,0,88,0,0,1 -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,65037,47752,13536,5371,300,4.6,3,3,16,77777,9,999999999,24,0.071,0,88,0,0,1 -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,77607,47330,21087,8542,310,4.1,3,3,16,77777,9,999999999,24,0.071,0,88,0,0,1 -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,92880,50803,24217,9912,280,2.6,3,3,16,77777,9,999999999,25,0.071,0,88,0,0,1 -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,98745,50975,34783,13607,250,2.6,5,4,16,77777,9,999999999,25,0.071,0,88,0,0,1 -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,48620,9929,36775,14233,300,1.5,9,6,16,77777,9,999999999,25,0.071,0,88,0,0,1 -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,79810,38006,37450,14310,350,8.8,9,6,16,7620,9,999999999,26,0.071,0,88,0,0,1 -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,53348,16778,38769,13913,350,7.2,10,7,16,7315,9,999999999,26,0.071,0,88,0,0,1 -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,2.8,18,83900,756,1339,403,447,366,240,50738,30365,27389,9719,300,5.2,8,5,16,7315,9,999999999,26,0.071,0,88,0,0,1 -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,11478,0,11572,4697,280,8.8,9,7,16,7315,9,999999999,27,0.071,0,88,0,0,1 -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,17415,13470,7840,2454,240,6.2,10,9,16,6706,9,999999999,27,0.071,0,88,0,0,1 -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,342,5724,183,40,190,3.6,10,9,16,6706,9,999999999,27,0.071,0,88,0,0,1 -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,3.3,33,83500,0,0,374,0,0,0,0,0,0,0,160,4.6,10,9,16,6706,9,999999999,28,0.071,0,88,0,0,1 -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,77777,9,999999999,28,0.071,0,88,0,0,1 -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,77777,9,999999999,28,0.071,0,88,0,0,1 -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,77777,9,999999999,29,0.071,0,88,0,0,1 -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,3.3,33,83300,0,0,353,0,0,0,0,0,0,0,210,6.7,8,5,16,77777,9,999999999,28,0.071,0,88,0,0,1 -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,77777,9,999999999,28,0.07,0,88,0,0,1 -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,77777,9,999999999,28,0.07,0,88,0,0,1 -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,77777,9,999999999,28,0.07,0,88,0,0,1 -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,77777,9,999999999,28,0.07,0,88,0,0,1 -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,77777,9,999999999,28,0.07,0,88,0,0,1 -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,227,3984,182,40,230,5.7,5,5,16,77777,9,999999999,28,0.07,0,88,0,0,1 -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,18293,14596,8848,2658,220,6.2,3,3,16,77777,9,999999999,27,0.07,0,88,0,0,1 -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,41773,37130,10358,3804,240,4.6,5,5,16,77777,9,999999999,27,0.07,0,88,0,0,1 -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,65311,48279,13083,5196,270,2.1,5,5,16,77777,9,999999999,27,0.07,0,88,0,0,1 -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,80853,50111,18164,7446,180,1.5,5,5,16,77777,9,999999999,27,0.07,0,88,0,0,1 -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,92491,51155,23203,9527,90,3.1,5,5,16,77777,9,999999999,27,0.07,0,88,0,0,1 -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,97559,50815,28196,11373,50,7.2,5,5,16,77777,9,999999999,26,0.07,0,88,0,0,1 -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,99467,52271,27857,11252,50,5.7,5,5,16,77777,9,999999999,26,0.07,0,88,0,0,1 -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,99582,54838,17476,7309,60,5.7,9,9,16,7620,9,999999999,26,0.07,0,88,0,0,1 -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,80794,51458,23315,9316,30,5.7,9,9,16,7620,9,999999999,26,0.07,0,88,0,0,1 -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,2.2,17,83800,750,1340,426,386,242,250,43634,20521,28416,9930,50,11.3,9,9,16,4200,9,999999999,25,0.07,0,88,0,0,1 -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,25760,9301,20666,6499,80,7.7,8,8,16,4267,9,999999999,25,0.07,0,88,0,0,1 -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,10500,3089,8541,2586,120,2.1,9,9,16,6706,9,999999999,25,0.07,0,88,0,0,1 -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,227,3493,182,40,170,5.7,9,9,16,6706,9,999999999,24,0.07,0,88,0,0,1 -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,6706,9,999999999,24,0.07,0,88,0,0,1 -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,6706,9,999999999,24,0.07,0,88,0,0,1 -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,3.9,35,83600,0,0,375,0,0,0,0,0,0,0,20,4.6,9,9,16,6706,9,999999999,23,0.07,0,88,0,0,1 -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,8.3,47,83300,0,0,373,0,0,0,0,0,0,0,10,5.7,8,8,16,6706,9,999999999,23,0.07,0,88,0,0,1 -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,6096,9,999999999,23,0.07,0,88,0,0,1 -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,6096,9,999999999,22,0.07,0,88,0,0,1 -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,6096,9,999999999,21,0.07,0,88,0,0,1 -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,7.2,60,83500,0,0,354,0,0,0,0,0,0,0,360,4.1,10,9,16,6096,9,999999999,21,0.07,0,88,0,0,1 -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,77777,9,999999999,20,0.07,0,88,0,0,1 -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,77777,9,999999999,19,0.07,0,88,0,0,1 -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,228,3990,182,40,0,0,4,4,16,7620,9,999999999,19,0.07,0,88,0,0,1 -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,6.7,58,83800,270,1340,334,167,449,76,18435,14150,8420,2556,360,1.5,6,5,16,77777,9,999999999,18,0.07,0,88,0,0,1 -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,42556,37505,10556,3865,0,0,6,5,16,77777,9,999999999,18,0.07,0,88,0,0,1 -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,60360,43277,15387,6035,40,1.5,6,5,16,77777,9,999999999,17,0.07,0,88,0,0,1 -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,78763,47324,19354,7901,80,1.5,6,5,16,77777,9,999999999,16,0.07,0,88,0,0,1 -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,95398,50596,20518,8527,120,3.6,6,5,16,77777,9,999999999,16,0.07,0,88,0,0,1 -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,41,84000,1137,1340,381,825,733,201,100414,50114,24588,10090,190,4.6,6,5,16,77777,9,999999999,16,0.07,0,88,0,0,1 -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,35,84100,1136,1340,396,870,851,147,108376,53585,18391,7690,120,3.6,6,5,16,77777,9,999999999,16,0.07,0,88,0,0,1 -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,94888,51353,25142,10262,130,6.2,10,9,16,7315,9,999999999,16,0.07,0,88,0,0,1 -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,55289,20463,36590,13326,230,9.8,10,10,12.8,3048,9,999999999,16,0.07,0,88,0,0,1 -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,10.3,54,83800,745,1340,383,88,0,88,8994,0,9075,4323,250,10.8,10,9,16,2286,9,999999999,16,0.07,0,88,0,0,1 -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,5728,0,5775,2600,130,6.7,9,7,16,6706,9,999999999,16,0.07,0,88,0,0,1 -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,16076,10282,7676,2379,210,4.1,10,9,16,3353,9,999999999,16,0.07,0,88,0,0,1 -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,6706,9,999999999,16,0.07,0,88,0,0,1 -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,6706,9,999999999,16,0.07,0,88,0,0,1 -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,8.3,47,83800,0,0,381,0,0,0,0,0,0,0,210,9.8,9,9,16,2438,9,999999999,16,0.07,0,88,0,0,1 -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,6096,9,999999999,15,0.07,0,88,0,0,1 -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,77777,9,999999999,15,0.07,0,88,0,0,1 -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,6096,9,999999999,17,0.07,0,88,0,0,1 -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,6.7,58,83500,0,0,321,0,0,0,0,0,0,0,110,4.6,1,1,16,77777,9,999999999,18,0.068,0,88,0,0,1 -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,77777,9,999999999,19,0.068,0,88,0,0,1 -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,6.1,55,83500,0,0,314,0,0,0,0,0,0,0,180,4.6,0,0,16,77777,9,999999999,21,0.068,0,88,0,1,1 -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,77777,9,999999999,22,0.068,0,88,0,0,1 -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,10,72,83500,0,0,329,0,0,0,0,0,0,0,200,3.1,3,2,16,77777,9,999999999,23,0.068,0,88,0,0,1 -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,10.6,75,83600,36,726,335,1,18,1,129,0,129,40,250,5.2,5,4,16,6706,9,999999999,25,0.068,0,88,0,0,1 -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,11256,3228,9105,2677,260,4.1,7,5,16,6706,9,999999999,26,0.068,0,88,0,0,1 -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,37638,31290,16878,5661,260,4.1,6,5,16,6706,9,999999999,27,0.068,0,88,0,0,1 -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,8.9,49,83900,749,1341,360,350,141,271,39160,12008,30496,10374,300,2.6,6,5,16,3962,9,999999999,28,0.068,0,88,0,0,1 -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,63398,31126,33966,12625,330,2.1,6,5,16,3962,9,999999999,30,0.068,0,88,0,0,1 -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,69118,26168,42321,15607,10,2.1,8,6,16,7620,9,999999999,31,0.068,0,88,0,0,1 -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,95115,47350,36523,14160,50,2.6,8,5,16,6706,9,999999999,31,0.068,0,88,0,0,1 -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,41222,2933,37933,14590,30,2.6,7,5,16,3962,9,999999999,30,0.068,0,88,0,0,1 -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,13558,0,13690,6783,0,0,9,6,16,3962,9,999999999,30,0.068,0,88,0,0,1 -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,54630,20226,36490,13253,230,8.2,8,6,16,3962,9,999999999,30,0.068,0,88,0,0,1 -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,13508,0,13628,6120,290,4.6,7,5,16,4267,9,999999999,30,0.068,0,88,0,0,1 -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,7222,0,7281,3179,320,5.2,10,10,16,3048,9,999999999,29,0.068,0,88,0,0,1 -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,4609,0,4643,1775,240,5.7,9,9,16,3353,9,999999999,29,0.068,0,88,0,0,1 -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,6706,9,999999999,29,0.068,0,88,0,0,1 -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,8.9,49,83800,0,0,357,0,0,0,0,0,0,0,210,7.2,5,4,16,6706,9,999999999,28,0.068,0,88,0,0,1 -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,6096,9,999999999,28,0.068,0,88,0,0,1 -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,77777,9,999999999,28,0.068,0,88,0,0,1 -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,77777,9,999999999,28,0.068,0,88,0,0,1 -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,4,3,16,6096,9,999999999,28,0.068,0,88,0,0,1 -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,77777,9,999999999,14,0.067,0,88,0,0,1 -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,77777,9,999999999,13,0.067,0,88,0,0,1 -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,77777,9,999999999,12,0.067,0,88,0,0,1 -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,77777,9,999999999,11,0.067,0,88,0,0,1 -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,77777,9,999999999,11,0.067,0,88,0,0,1 -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,1.7,56,83700,34,704,289,1,102,0,0,0,0,0,230,4.1,0,0,16,77777,9,999999999,10,0.067,0,88,0,0,1 -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,20048,16170,7078,2224,250,3.1,0,0,16,77777,9,999999999,10,0.067,0,88,0,0,1 -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,43796,40825,9801,3595,310,2.1,0,0,16,77777,9,999999999,9,0.067,0,88,0,0,1 -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,28,84200,746,1342,325,555,846,84,68218,51103,10354,4139,0,0,0,0,16,77777,9,999999999,9,0.067,0,88,0,0,1 -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,23,84300,932,1342,340,711,855,116,87871,55780,14387,5955,0,0,0,0,16,77777,9,999999999,9,0.067,0,88,0,0,1 -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,21,83800,1063,1342,360,829,929,92,87551,94430,12527,2966,0,0,3,3,16,77777,9,999999999,9,0.067,0,88,0,0,1 -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,94906,97396,12237,3455,50,1.5,3,3,16,77777,9,999999999,10,0.067,0,88,0,0,1 -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,94441,97622,11477,3288,90,4.1,3,3,16,77777,9,999999999,11,0.067,0,88,0,0,1 -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,84856,88277,16471,3359,80,5.7,3,3,16,77777,9,999999999,11,0.067,0,88,0,0,1 -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,75149,91084,12586,2300,90,3.1,3,3,16,77777,9,999999999,11,0.067,0,88,0,0,1 -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,57847,86761,9833,1636,90,4.1,4,4,16,77777,9,999999999,12,0.067,0,88,0,0,1 -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,42260,38795,6916,2581,70,3.1,5,5,16,77777,9,999999999,12,0.067,0,88,0,0,1 -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,15265,51001,4379,667,70,2.6,3,3,16,77777,9,999999999,12,0.067,0,88,0,0,1 -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,77777,9,999999999,13,0.067,0,88,0,0,1 -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,77777,9,999999999,13,0.067,0,88,0,0,1 -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,43,83900,0,0,325,0,0,0,0,0,0,0,170,5.2,0,0,16,77777,9,999999999,13,0.067,0,88,0,0,1 -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,77777,9,999999999,13,0.067,0,88,0,0,1 -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,77777,9,999999999,13,0.067,0,88,0,0,1 -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,77777,9,999999999,12,0.067,0,88,0,0,1 -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,77777,9,999999999,12,0.066,0,88,0,0,1 -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,4.4,49,83700,0,0,318,0,0,0,0,0,0,0,260,4.1,1,1,16,77777,9,999999999,12,0.066,0,88,0,0,1 -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,77777,9,999999999,12,0.066,0,88,0,0,1 -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,53,83800,0,0,321,0,0,0,0,0,0,0,240,3.1,2,2,16,77777,9,999999999,13,0.066,0,88,0,0,1 -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,77777,9,999999999,13,0.066,0,88,0,0,1 -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,6096,9,999999999,13,0.066,0,88,0,0,1 -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,19524,11877,5805,1891,260,2.6,3,3,16,7315,9,999999999,13,0.066,0,88,0,0,1 -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,41321,37000,11815,4239,290,1.5,7,7,16,6706,9,999999999,12,0.066,0,88,0,0,1 -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,70823,51677,11230,4482,320,1.5,5,5,16,77777,9,999999999,13,0.066,0,88,0,0,1 -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,84872,52177,15266,6311,350,1.5,5,5,16,77777,9,999999999,13,0.066,0,88,0,0,1 -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,23,83800,1059,1342,391,774,754,177,94270,52340,21658,8942,20,2.6,3,3,16,77777,9,999999999,13,0.066,0,88,0,0,1 -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,91224,90768,15769,3995,50,3.1,3,3,16,77777,9,999999999,13,0.066,0,88,0,0,1 -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,92064,93843,13511,3632,50,3.1,3,3,16,77777,9,999999999,14,0.066,0,88,0,0,1 -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,88769,94996,14842,3181,70,6.2,5,5,16,77777,9,999999999,14,0.066,0,88,0,0,1 -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,85017,57157,19928,8047,0,0,5,5,16,77777,9,999999999,15,0.066,0,88,0,0,1 -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,46078,26481,26975,9405,120,5.2,4,4,16,77777,9,999999999,16,0.066,0,88,0,0,1 -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,32949,27435,15184,5135,160,6.7,5,5,16,77777,9,999999999,17,0.066,0,88,0,0,1 -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,14448,8637,5999,1912,160,6.2,3,3,16,77777,9,999999999,18,0.066,0,88,0,0,1 -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,77777,9,999999999,18,0.066,0,88,0,0,1 -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,77777,9,999999999,19,0.066,0,88,0,0,1 -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,77777,9,999999999,19,0.066,0,88,0,0,1 -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,77777,9,999999999,18,0.066,0,88,0,0,1 -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,40,83800,0,0,350,0,0,0,0,0,0,0,190,6.2,5,5,16,77777,9,999999999,18,0.066,0,88,0,0,1 -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,77777,9,999999999,17,0.066,0,88,0,0,1 -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,77777,9,999999999,17,0.066,0,88,0,0,1 -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,4.4,36,83800,0,0,349,0,0,0,0,0,0,0,180,6.7,3,3,16,77777,9,999999999,17,0.066,0,88,0,0,1 -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,5,51,83800,0,0,329,0,0,0,0,0,0,0,150,5.2,4,4,16,77777,9,999999999,16,0.066,0,88,0,0,1 -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,5,51,83800,0,0,329,0,0,0,0,0,0,0,180,4.6,4,4,16,77777,9,999999999,15,0.066,0,88,0,0,1 -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,48,83800,0,0,334,0,0,0,0,0,0,0,210,1.5,4,4,16,4877,9,999999999,13,0.066,0,88,0,0,1 -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,5,51,83800,30,660,327,0,0,0,0,0,0,0,240,4.6,3,3,16,77777,9,999999999,13,0.066,0,88,0,0,1 -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,40,84100,255,1343,337,173,642,51,19633,12657,5803,1881,240,4.6,1,1,16,6706,9,999999999,13,0.066,0,88,0,0,1 -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,43636,38724,8128,3018,240,6.2,3,3,16,7620,9,999999999,13,0.066,0,88,0,0,1 -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,65800,49224,11691,4646,300,3.1,3,3,16,77777,9,999999999,13,0.066,0,88,0,0,1 -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,83980,53532,15853,6525,230,1.5,4,4,16,77777,9,999999999,13,0.066,0,88,0,0,1 -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,83828,87048,16494,3323,150,3.6,5,5,16,77777,9,999999999,13,0.066,0,88,0,0,1 -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,92870,92910,15899,3960,130,2.1,5,5,16,77777,9,999999999,13,0.066,0,88,0,0,1 -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,90689,47233,33036,12996,100,4.6,6,6,16,7620,9,999999999,13,0.066,0,88,0,0,1 -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,102533,60929,21213,8748,80,4.6,5,5,16,77777,9,999999999,13,0.066,0,88,0,0,1 -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,75218,48540,24763,9721,120,5.7,5,5,16,77777,9,999999999,15,0.066,0,88,0,0,1 -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,53269,39229,20779,7700,130,5.7,7,6,16,77777,9,999999999,16,0.066,0,88,0,0,1 -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.6,15,83500,490,1343,408,302,546,102,34810,31595,11798,4173,170,7.2,7,7,16,6096,9,999999999,17,0.066,0,88,0,0,1 -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,14885,5333,3757,1263,190,7.2,7,5,16,3962,9,999999999,17,0.066,0,88,0,0,1 -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,3962,9,999999999,17,0.066,0,88,0,0,1 -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,3962,9,999999999,17,0.066,0,88,0,0,1 -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,3962,9,999999999,16,0.066,0,88,0,0,1 -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,3962,9,999999999,16,0.066,0,88,0,0,1 -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,6706,9,999999999,16,0.066,0,88,0,0,1 -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,77777,9,999999999,16,0.066,0,88,0,0,1 -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,77777,9,999999999,16,0.065,0,88,0,0,1 -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,3.9,35,83600,0,0,349,0,0,0,0,0,0,0,190,5.2,4,3,16,6096,9,999999999,16,0.065,0,88,0,0,1 -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,6096,9,999999999,17,0.065,0,88,0,0,1 -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,6096,9,999999999,18,0.065,0,88,0,0,1 -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,6706,9,999999999,20,0.065,0,88,0,0,1 -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,5486,9,999999999,19,0.065,0,88,0,0,1 -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,5,37,83900,251,1344,353,165,624,48,18789,11107,5480,1786,230,4.1,4,4,16,77777,9,999999999,19,0.065,0,88,0,0,1 -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,31,83600,507,1344,366,367,801,64,43914,38599,7676,2855,240,3.1,4,4,16,77777,9,999999999,19,0.065,0,88,0,0,1 -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,66300,49163,10777,4293,320,2.6,5,5,16,77777,9,999999999,19,0.065,0,88,0,0,1 -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,76269,92974,12346,2262,30,4.6,5,5,16,77777,9,999999999,19,0.065,0,88,0,0,1 -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,87452,95459,12179,2839,20,3.1,6,6,16,77777,9,999999999,19,0.065,0,88,0,0,1 -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,3.9,19,84400,1118,1344,413,855,890,113,90184,90860,15049,3793,10,4.6,7,7,16,77777,9,999999999,19,0.065,0,88,0,0,1 -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,105081,55277,17102,7158,70,4.1,7,6,16,77777,9,999999999,19,0.065,0,88,0,0,1 -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,3.3,18,83500,1043,1344,404,817,908,111,86172,92457,15013,3118,40,2.1,5,5,16,77777,9,999999999,19,0.065,0,88,0,0,1 -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,73044,89117,13165,2277,360,1.5,5,4,16,77777,9,999999999,18,0.065,0,88,0,0,1 -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,65424,50148,10753,4263,330,2.6,5,5,16,77777,9,999999999,18,0.065,0,88,0,0,1 -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,37740,34525,9079,3306,40,2.6,6,5,16,77777,9,999999999,18,0.065,0,88,0,0,1 -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,15260,3845,3527,1187,340,6.7,4,4,16,77777,9,999999999,18,0.065,0,88,0,0,1 -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,5.6,29,84000,18,526,375,0,0,0,0,0,0,0,330,4.6,3,3,16,77777,9,999999999,18,0.065,0,88,0,0,1 -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,4267,9,999999999,18,0.065,0,88,0,0,1 -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,77777,9,999999999,18,0.065,0,88,0,0,1 -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,3658,9,999999999,18,0.065,0,88,0,0,1 -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,3658,9,999999999,18,0.065,0,88,0,0,1 -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,3658,9,999999999,18,0.065,0,88,0,0,1 -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,77777,9,999999999,18,0.064,0,88,0,0,1 -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,7.2,43,83500,0,0,371,0,0,0,0,0,0,0,220,4.6,8,8,16,3353,9,999999999,18,0.064,0,88,0,0,1 -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,6096,9,999999999,19,0.064,0,88,0,0,1 -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,6096,9,999999999,19,0.064,0,88,0,0,1 -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,3353,9,999999999,20,0.064,0,88,0,0,1 -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,4267,9,999999999,20,0.064,0,88,0,0,1 -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,17843,14537,10839,2803,230,4.6,5,5,16,4267,9,999999999,19,0.064,0,88,0,0,1 -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,22070,10998,14546,4976,240,5.2,3,3,16,77777,9,999999999,19,0.064,0,88,0,0,1 -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,61676,47776,21736,8013,310,2.6,3,3,16,77777,9,999999999,18,0.064,0,88,0,0,1 -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,80619,51967,20546,8276,10,3.1,3,3,16,77777,9,999999999,18,0.064,0,88,0,0,1 -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,2.2,17,83700,1048,1344,399,830,917,113,87362,93243,15255,3162,60,4.1,4,4,16,77777,9,999999999,17,0.064,0,88,0,0,1 -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,103918,55525,19078,7947,270,3.1,5,5,16,77777,9,999999999,18,0.064,0,88,0,0,1 -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,2.8,18,84300,1111,1344,407,815,671,260,97171,52464,31173,12385,310,2.1,6,6,16,4267,9,999999999,18,0.064,0,88,0,0,1 -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,44451,10281,33266,12905,260,3.1,7,7,16,4572,9,999999999,18,0.064,0,88,0,0,1 -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,62483,32608,33958,12394,200,2.1,7,7,16,4572,9,999999999,18,0.064,0,88,0,0,1 -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,12889,0,13001,5788,150,5.7,7,6,16,7620,9,999999999,19,0.064,0,88,0,0,1 -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,37147,35315,15328,5077,180,4.6,9,7,16,7620,9,999999999,19,0.064,0,88,0,0,1 -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,11730,4832,5429,1721,250,2.1,6,6,16,7620,9,999999999,19,0.064,0,88,0,0,1 -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,5.6,29,84200,16,482,378,0,0,0,0,0,0,0,330,4.6,5,4,16,7620,9,999999999,18,0.064,0,88,0,0,1 -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,35,83700,0,0,361,0,0,0,0,0,0,0,100,4.1,5,5,16,7620,9,999999999,17,0.064,0,88,0,0,1 -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,40,83900,0,0,350,0,0,0,0,0,0,0,140,3.1,5,5,16,77777,9,999999999,17,0.064,0,88,0,0,1 -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,77777,9,999999999,16,0.064,0,88,0,0,1 -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,77777,9,999999999,16,0.064,0,88,0,0,1 -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,16,77777,9,999999999,15,0.064,0,88,0,0,1 -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,77777,9,999999999,15,0.063,0,88,0,0,1 -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,77777,9,999999999,15,0.063,0,88,0,0,1 -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,77777,9,999999999,16,0.063,0,88,0,0,1 -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,77777,9,999999999,17,0.063,0,88,0,0,1 -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,77777,9,999999999,19,0.063,0,88,0,0,1 -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,6096,9,999999999,19,0.063,0,88,0,0,1 -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,18101,14949,10327,2717,330,6.2,6,6,16,4267,9,999999999,19,0.063,0,88,0,0,1 -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,28747,17438,18664,5911,310,6.2,8,8,16,4267,9,999999999,19,0.063,0,88,0,0,1 -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,44569,21894,29055,9863,300,4.6,10,9,16,3048,9,999999999,19,0.063,0,88,0,0,1 -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,44084,8582,36811,13188,20,3.6,10,9,16,2743,9,999999999,19,0.063,0,88,0,0,1 -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,47561,4875,43028,15647,30,4.6,9,9,16,2134,9,999999999,19,0.063,0,88,0,0,1 -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,14770,0,14916,7341,50,2.6,9,9,16,3048,9,999999999,20,0.063,0,88,0,0,1 -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,106496,58301,29980,11998,30,5.7,8,8,16,4267,9,999999999,20,0.063,0,88,0,0,1 -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,85889,46781,33382,12945,10,4.1,6,6,16,4267,9,999999999,20,0.063,0,88,0,0,1 -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,8.9,36,84600,896,1345,385,273,36,249,31553,2828,28938,10988,30,4.1,5,5,16,4267,9,999999999,22,0.063,0,88,0,0,1 -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,8.9,36,84600,704,1345,379,317,135,246,35469,11109,27678,9407,60,2.1,3,3,16,77777,9,999999999,23,0.063,0,88,0,0,1 -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,34538,30573,15267,5038,80,3.6,6,5,16,77777,9,999999999,24,0.063,0,88,0,0,1 -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,2345,0,2362,964,140,5.2,7,7,16,4572,9,999999999,23,0.063,0,88,0,0,1 -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,3300,9,999999999,23,0.063,0,88,0,0,1 -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,3658,9,999999999,22,0.063,0,88,0,0,1 -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,3658,9,999999999,22,0.063,0,88,0,0,1 -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,3962,9,999999999,21,0.063,0,88,0,0,1 -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,77,84100,0,0,344,0,0,0,0,0,0,0,180,3.1,9,8,16,3962,9,999999999,21,0.063,0,88,0,0,1 -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,77,84200,0,0,324,0,0,0,0,0,0,0,190,4.1,2,2,16,77777,9,999999999,20,0.063,0,88,0,0,1 -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,10,72,84200,0,0,332,0,0,0,0,0,0,0,170,4.6,3,3,16,6096,9,999999999,20,0.062,0,88,0,0,1 -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,75,84000,0,0,337,0,0,0,0,0,0,0,150,3.1,6,6,16,6096,9,999999999,20,0.062,0,88,0,0,1 -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,10.6,75,84000,0,0,350,0,0,0,0,0,0,0,240,3.1,8,8,16,3353,9,999999999,20,0.062,0,88,0,0,1 -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,83,84000,0,0,339,0,0,0,0,0,0,0,40,2.1,8,8,16,3353,9,999999999,21,0.062,0,88,0,0,1 -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,3353,9,999999999,21,0.062,0,88,0,0,1 -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,77777,9,999999999,21,0.062,0,88,0,0,1 -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,18609,13599,8302,2399,260,4.1,3,3,16,77777,9,999999999,20,0.062,0,88,0,0,1 -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,42695,36227,8515,3137,260,4.6,3,3,16,77777,9,999999999,20,0.062,0,88,0,0,1 -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,61405,44891,14186,5547,270,3.6,3,3,16,77777,9,999999999,20,0.062,0,88,0,0,1 -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,77703,93921,14380,2331,300,3.6,3,3,16,77777,9,999999999,19,0.062,0,88,0,0,1 -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,95325,51303,17562,7350,350,2.6,5,5,16,77777,9,999999999,19,0.062,0,88,0,0,1 -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,90069,90781,16111,3771,40,4.1,6,6,16,77777,9,999999999,19,0.062,0,88,0,0,1 -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,101944,53827,18330,7661,80,5.7,7,7,16,77777,9,999999999,19,0.062,0,88,0,0,1 -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,85495,93506,14419,2953,20,6.2,4,4,16,77777,9,999999999,19,0.062,0,88,0,0,1 -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,73044,91915,12007,2142,30,2.6,4,4,16,77777,9,999999999,19,0.062,0,88,0,0,1 -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,64804,50985,9931,3924,40,3.1,5,5,16,77777,9,999999999,20,0.062,0,88,0,0,1 -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,36003,33029,7623,2785,40,2.1,5,5,16,77777,9,999999999,20,0.062,0,88,0,0,1 -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,12806,901,3177,1061,50,3.6,5,5,16,77777,9,999999999,20,0.062,0,88,0,0,1 -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,77777,9,999999999,21,0.062,0,88,0,0,1 -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,6096,9,999999999,22,0.062,0,88,0,0,1 -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,3353,9,999999999,22,0.062,0,88,0,0,1 -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,11.7,59,84100,0,0,385,0,0,0,0,0,0,0,130,6.7,9,9,16,6096,9,999999999,22,0.062,0,88,0,0,1 -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,11.1,57,83800,0,0,363,0,0,0,0,0,0,0,160,6.2,5,5,16,77777,9,999999999,21,0.062,0,88,0,0,1 -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,77777,9,999999999,21,0.062,0,88,0,0,1 -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,77777,9,999999999,21,0.062,0,88,0,0,1 -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,6096,9,999999999,21,0.062,0,88,0,0,1 -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,77777,9,999999999,21,0.062,0,88,0,0,1 -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,77777,9,999999999,21,0.062,0,88,0,0,1 -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,6096,9,999999999,21,0.062,0,88,0,0,1 -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,11.1,77,83800,21,572,342,0,0,0,0,0,0,0,250,3.1,6,6,16,3658,9,999999999,21,0.062,0,88,0,0,1 -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,18164,8765,5847,1854,240,3.6,6,6,16,3658,9,999999999,21,0.062,0,88,0,0,1 -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,43,83800,492,1346,386,362,797,70,42777,36841,8294,3054,290,2.1,7,7,16,3658,9,999999999,21,0.062,0,88,0,0,1 -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,59226,42457,13727,5377,270,2.6,8,8,16,6706,9,999999999,21,0.062,0,88,0,0,1 -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,35,84300,907,1346,404,649,637,218,75842,47066,25607,9991,0,0,8,7,16,3962,9,999999999,20,0.062,0,88,0,0,1 -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,46217,11190,33929,13115,340,1.5,8,8,16,6706,9,999999999,20,0.062,0,88,0,0,1 -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,105886,57249,24135,9908,310,4.1,8,8,16,6706,9,999999999,21,0.062,0,88,0,0,1 -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,101023,54519,22215,9177,320,3.6,7,6,16,3900,9,999999999,22,0.062,0,88,0,0,1 -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,58949,19289,39896,14739,320,4.6,9,8,16,3962,9,999999999,23,0.062,0,88,0,0,1 -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,73420,46114,32437,11889,330,3.1,8,6,16,3962,9,999999999,24,0.062,0,88,0,0,1 -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,6,20,84200,692,1346,427,93,0,93,9484,0,9566,4420,230,5.2,8,7,16,6096,9,999999999,24,0.062,0,88,0,0,1 -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,11093,0,11182,4310,270,6.2,8,8,16,3962,9,999999999,24,0.062,0,88,0,0,1 -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,2248,0,2264,916,290,3.6,9,7,16,3962,9,999999999,24,0.062,0,88,0,0,1 -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,9,6,16,3962,9,999999999,24,0.062,0,88,0,0,1 -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,7,7,16,3353,9,999999999,23,0.062,0,88,0,0,1 -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,3658,9,999999999,24,0.062,0,88,0,0,1 -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,3353,9,999999999,24,0.062,0,88,0,0,1 -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,3658,9,999999999,24,0.062,0,88,0,0,1 -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,3658,9,999999999,23,0.062,0,88,0,0,1 -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,3658,9,999999999,23,0.061,0,88,0,0,1 -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,3658,9,999999999,23,0.061,0,88,0,0,1 -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,77777,9,999999999,22,0.061,0,88,0,0,1 -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,77777,9,999999999,22,0.061,0,88,0,0,1 -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,77777,9,999999999,22,0.061,0,88,0,0,1 -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,77777,9,999999999,21,0.061,0,88,0,0,1 -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,17791,13435,8386,2371,220,4.1,3,3,16,77777,9,999999999,21,0.061,0,88,0,0,1 -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,8.9,36,83200,488,1347,379,356,779,73,41916,36878,8619,3156,230,3.1,3,3,16,77777,9,999999999,20,0.061,0,88,0,0,1 -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,64533,47753,10727,4253,260,4.1,3,3,16,77777,9,999999999,20,0.061,0,88,0,0,1 -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,75172,47433,25617,9970,330,2.6,3,3,16,77777,9,999999999,21,0.061,0,88,0,0,1 -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,45522,10780,33814,13059,320,1.5,5,5,16,77777,9,999999999,21,0.061,0,88,0,0,1 -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,98457,53403,29399,11782,310,4.6,7,7,16,6096,9,999999999,21,0.061,0,88,0,0,1 -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,95429,51658,25707,10471,260,3.1,9,7,16,6096,9,999999999,22,0.061,0,88,0,0,1 -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,79023,42516,32685,12658,210,2.6,9,7,16,6096,9,999999999,22,0.061,0,88,0,0,1 -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,5.6,21,83600,879,1347,431,244,24,229,28347,1872,26745,10228,160,3.1,10,9,16,3353,9,999999999,23,0.061,0,88,0,0,1 -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,20620,431,20371,7425,270,9.8,9,8,16,3048,9,999999999,25,0.061,0,88,0,0,1 -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,7.2,32,82900,451,1347,391,60,0,60,5991,0,6039,2609,280,5.2,7,7,16,3048,9,999999999,26,0.061,0,88,0,0,1 -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,1463,0,1473,618,220,3.1,10,8,16,3658,9,999999999,25,0.061,0,88,0,0,1 -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,3658,9,999999999,24,0.061,0,88,0,0.3,1 -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,12.2,61,82900,0,0,385,0,0,0,0,0,0,0,130,3.1,10,9,16,3048,9,999999999,23,0.061,0,88,0,0,1 -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,3962,9,999999999,23,0.061,0,88,0,0,1 -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,3962,9,999999999,22,0.061,0,88,0,0,1 -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,3962,9,999999999,22,0.061,0,88,0,0,1 -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,6096,9,999999999,21,0.061,0,88,0,0,1 -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,3962,9,999999999,20,0.061,0,88,0,0,1 -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,3962,9,999999999,18,0.061,0,88,0,0,1 -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,3962,9,999999999,18,0.061,0,88,0,0,1 -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,6096,9,999999999,18,0.061,0,88,0,0,1 -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,4267,9,999999999,18,0.061,0,88,0,0,1 -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,6.1,40,83000,18,528,357,0,0,0,0,0,0,0,200,7.7,8,5,16,4267,9,999999999,15,0.061,0,88,0,0,1 -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,3035,0,3057,1214,240,7.7,9,7,16,4267,9,999999999,13,0.061,0,88,0,0,1 -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,13820,0,13931,5130,320,4.6,6,6,16,7620,9,999999999,10,0.061,0,88,0,0,1 -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,31,83400,714,1348,372,306,98,253,34243,8350,28470,9599,320,3.6,6,6,16,7620,9,999999999,10,0.061,0,88,0,0,1 -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,29,83400,900,1348,374,579,443,283,66338,37564,32612,12000,280,2.1,4,4,16,7620,9,999999999,10,0.061,0,88,0,0,1 -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,92565,54529,21356,8779,240,5.2,4,4,16,7620,9,999999999,9,0.061,0,88,0,0,1 -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,105148,58040,17408,7280,190,3.1,3,3,16,77777,9,999999999,9,0.061,0,88,0,0,1 -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.6,14,83600,1087,1348,392,779,683,227,93602,52117,27418,11061,140,4.1,3,3,16,77777,9,999999999,9,0.061,0,88,0,0,1 -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,95886,56739,15143,6332,190,4.6,3,3,16,77777,9,999999999,9,0.061,0,88,0,0,1 -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,68046,85304,13367,2163,240,4.6,3,3,16,77777,9,999999999,10,0.061,0,88,0,0,1 -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,59508,48575,10474,4098,170,2.6,3,3,16,77777,9,999999999,11,0.061,0,88,0,0,1 -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,32053,70655,7749,1099,100,3.6,6,5,16,77777,9,999999999,11,0.061,0,88,0,0,1 -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,11256,0,2935,969,140,5.2,3,3,16,77777,9,999999999,11,0.061,0,88,0,0,1 -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,77777,9,999999999,12,0.061,0,88,0,0,1 -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,-1.1,24,82800,0,0,328,0,0,0,0,0,0,0,160,5.2,0,0,16,77777,9,999999999,12,0.061,0,88,0,0,1 -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,77777,9,999999999,11,0.061,0,88,0,0,1 -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,77777,9,999999999,10,0.061,0,88,0,0,1 -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,77777,9,999999999,9,0.061,0,88,0,0,1 -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,2.2,31,83200,0,0,332,0,0,0,0,0,0,0,220,5.7,0,0,16,77777,9,999999999,9,0.061,0,88,0,0,1 -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,1.7,30,83100,0,0,332,0,0,0,0,0,0,0,220,6.7,0,0,16,77777,9,999999999,8,0.06,0,88,0,0,1 -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,1.1,28,83000,0,0,331,0,0,0,0,0,0,0,210,6.7,0,0,16,77777,9,999999999,7,0.06,0,88,0,0,1 -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,77777,9,999999999,7,0.06,0,88,0,0,1 -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,77777,9,999999999,7,0.06,0,88,0,0,1 -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,77777,9,999999999,7,0.06,0,88,0,0,1 -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.6,37,83200,17,506,308,0,0,0,0,0,0,0,220,3.6,0,0,16,77777,9,999999999,7,0.06,0,88,0,0,1 -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,17182,14169,8187,2291,210,4.6,5,5,16,77777,9,999999999,7,0.06,0,88,0,0,1 -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,38936,36003,7973,2917,210,5.2,0,0,16,77777,9,999999999,8,0.06,0,88,0,0,1 -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,-1.1,18,83800,710,1348,351,512,768,106,61442,48974,12763,4983,190,2.1,0,0,16,77777,9,999999999,8,0.06,0,88,0,0,1 -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,74966,49858,21158,8420,160,3.1,0,0,16,77777,9,999999999,8,0.06,0,88,0,0,1 -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,93859,55927,19762,8164,140,7.2,0,0,16,77777,9,999999999,9,0.06,0,88,0,0,1 -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,90107,95819,12342,3090,110,4.1,0,0,16,77777,9,999999999,9,0.06,0,88,0,0,1 -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,-3.9,10,83800,1083,1348,388,838,947,77,88620,96076,10554,2744,110,3.1,3,3,16,77777,9,999999999,10,0.06,0,88,0,0,1 -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,82969,94847,11620,2526,120,1.5,3,3,16,77777,9,999999999,11,0.06,0,88,0,0,1 -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,69923,90030,12047,2073,120,3.6,4,4,16,77777,9,999999999,12,0.06,0,88,0,0,1 -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,60493,49586,9557,3746,160,6.7,5,5,16,77777,9,999999999,13,0.06,0,88,0,0,1 -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,-3.9,10,82900,438,1348,394,290,689,65,34230,32604,7691,2767,100,7.7,5,5,16,77777,9,999999999,13,0.06,0,88,0,0,1 -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,9300,0,3144,1026,100,4.6,7,6,16,77777,9,999999999,14,0.06,0,88,0,0,1 -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,77777,9,999999999,15,0.06,0,88,0,0,1 -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,77777,9,999999999,15,0.06,0,88,0,0,1 -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,6706,9,999999999,15,0.06,0,88,0,0,1 -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,6706,9,999999999,15,0.06,0,88,0,0,1 -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,6706,9,999999999,15,0.06,0,88,0,0,1 -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,77777,9,999999999,14,0.06,0,88,0,0,1 -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,77777,9,999999999,14,0.06,0,88,0,0,1 -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,77777,9,999999999,13,0.06,0,88,0,0,1 -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,77777,9,999999999,13,0.06,0,88,0,0,1 -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,77777,9,999999999,13,0.06,0,88,0,0,1 -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,77777,9,999999999,13,0.06,0,88,0,0,1 -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,48,83000,16,483,302,0,0,0,0,0,0,0,170,4.6,3,3,16,77777,9,999999999,12,0.06,0,88,0,0,1 -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,15287,10097,7063,2072,160,2.6,3,3,16,77777,9,999999999,11,0.06,0,88,0,0,1 -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,37829,34825,8508,3092,120,3.6,3,3,16,77777,9,999999999,10,0.06,0,88,0,0,1 -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,61487,48671,12410,4851,170,2.6,3,3,16,77777,9,999999999,10,0.06,0,88,0,0,1 -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,79204,52838,15435,6303,220,3.6,3,3,16,77777,9,999999999,9,0.06,0,88,0,0,1 -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,91938,54779,18958,7846,0,0,5,5,16,77777,9,999999999,9,0.06,0,88,0,0,1 -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,11,83600,1084,1349,370,831,884,119,86659,89335,15895,3504,0,0,3,3,16,77777,9,999999999,9,0.06,0,88,0,0,1 -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,98847,56687,18557,7724,320,1.5,3,3,16,77777,9,999999999,9,0.06,0,88,0,0,1 -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,80619,89941,14727,2803,280,1.5,4,4,16,77777,9,999999999,10,0.06,0,88,0,0,1 -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,-11.7,5,83500,862,1349,376,652,819,127,79336,56704,15511,6278,240,3.6,3,3,16,77777,9,999999999,10,0.06,0,88,0,0,1 -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,6,83500,667,1349,382,440,557,164,50758,41776,19002,6914,310,3.1,3,3,16,77777,9,999999999,10,0.06,0,88,0,0,1 -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,11,82800,431,1349,378,294,529,124,32911,32986,13938,4509,10,5.2,5,5,16,77777,9,999999999,11,0.06,0,88,0,0,1 -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,1370,0,1380,570,10,5.2,3,3,16,77777,9,999999999,11,0.06,0,88,0,0,1 -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,77777,9,999999999,11,0.06,0,88,0,0,1 -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,4267,9,999999999,11,0.06,0,88,0,0,1 -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,77777,9,999999999,11,0.06,0,88,0,0,1 -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,77777,9,999999999,11,0.06,0,88,0,0,1 -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,77777,9,999999999,11,0.06,0,88,0,0,1 -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,43,83300,0,0,313,0,0,0,0,0,0,0,120,2.6,5,5,16,77777,9,999999999,11,0.06,0,88,0,0,1 -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,77777,9,999999999,11,0.059,0,88,0,0,1 -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,77777,9,999999999,12,0.059,0,88,0,0,1 -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,77777,9,999999999,11,0.059,0,88,0,0,1 -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,35,83200,0,0,283,0,0,0,0,0,0,0,120,5.2,1,1,16,77777,9,999999999,11,0.059,0,88,0,0,1 -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,77777,9,999999999,11,0.059,0,88,0,0,1 -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,3658,9,999999999,11,0.059,0,88,0,0,1 -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,13365,6444,5518,1718,110,5.7,9,9,16,77777,9,999999999,11,0.059,0,88,0,0,1 -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,28587,21839,15926,5150,100,5.7,10,10,16,3048,9,999999999,11,0.059,0,88,0,0,1 -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,27170,3068,25035,8704,70,5.2,6,6,16,6706,9,999999999,12,0.059,0,88,0,0,1 -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,-3.9,26,83900,888,1350,324,465,243,305,52978,22051,34955,12483,90,6.2,6,6,16,77777,9,999999999,12,0.059,0,88,0,0,1 -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,87038,52447,26928,10746,90,5.7,6,6,16,77777,9,999999999,12,0.059,0,88,0,0,1 -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,97156,55459,21758,8971,120,5.2,7,7,16,77777,9,999999999,12,0.059,0,88,0,0,1 -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,85906,90964,14035,3208,60,2.6,8,7,16,77777,9,999999999,12,0.059,0,88,0,0,1 -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,-3.9,19,83400,996,1350,347,739,806,143,90819,55676,17645,7309,0,0,7,6,16,7620,9,999999999,12,0.059,0,88,0,0,1 -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,76834,55559,21817,8527,30,5.7,9,9,16,3048,9,999999999,13,0.059,0,88,0,0,1 -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,31059,8868,25361,8517,70,6.2,8,7,16,4267,9,999999999,14,0.059,0,88,0,0,1 -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,6397,0,6447,2701,80,3.6,7,7,16,2591,9,999999999,14,0.059,0,88,0,0,1 -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,1660,0,1671,675,60,4.6,10,9,16,2591,9,999999999,14,0.059,0,88,0,0,1 -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,2743,9,999999999,14,0.059,0,88,0,0,1 -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,3353,9,999999999,13,0.059,0,88,0,0,1 -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,3353,9,999999999,13,0.059,0,88,0,0,1 -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,2134,9,999999999,13,0.059,0,88,0,0,1 -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,6.7,80,83700,0,0,317,0,0,0,0,0,0,0,40,3.6,7,7,16,2438,9,999999999,13,0.059,0,88,0,0,1 -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,2134,9,999999999,13,0.059,0,88,0,0,1 -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,1341,9,999999999,12,0.059,0,88,0,0,1 -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,2896,9,999999999,12,0.059,0,88,0,0,1 -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,77777,9,999999999,13,0.059,0,88,0,0,1 -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,77777,9,999999999,14,0.059,0,88,0,0,1 -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,77777,9,999999999,14,0.059,0,88,0,0,1 -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,77777,9,999999999,14,0.059,0,88,0,0,1 -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,15678,9954,6931,2014,180,8.2,0,0,16,77777,9,999999999,13,0.059,0,88,0,0,1 -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,2.8,44,83500,469,1351,324,345,789,70,40662,38058,8272,3002,190,12.4,3,3,16,77777,9,999999999,13,0.059,0,88,0,0,1 -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,65445,51780,10594,4168,180,10.3,3,3,16,77777,9,999999999,13,0.059,0,88,0,0,1 -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,78019,52477,18321,7377,190,8.2,3,3,16,77777,9,999999999,13,0.059,0,88,0,0,1 -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,90365,53078,18222,7560,170,10.8,5,5,16,77777,9,999999999,13,0.059,0,88,0,0,1 -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,96138,53974,21940,9049,160,8.2,7,6,16,5486,9,999999999,14,0.059,0,88,0,0,1 -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,95685,55057,31200,12315,220,4.6,7,5,16,3962,9,999999999,14,0.059,0,88,0,0,1 -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,15175,0,15319,7384,290,8.8,9,7,16,4877,9,999999999,15,0.059,0,88,0,0,1 -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,4,54,83600,850,1351,340,102,0,102,10546,0,10642,5149,210,10.8,10,9,16.1,2400,9,999999999,15,0.059,0,88,0,0,1 -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,2.8,44,83700,654,1351,349,76,0,76,7734,0,7800,3623,220,5.2,10,9,16,2743,9,999999999,15,0.059,0,88,0,0,1 -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,5,51,83400,417,1351,344,138,57,121,15379,3306,13540,4358,250,4.6,8,8,16,3962,9,999999999,16,0.059,0,88,0,0,1 -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,57,83600,157,1351,319,61,198,38,6807,0,4251,1293,240,6.2,3,3,16,77777,9,999999999,15,0.059,0,88,0,0,1 -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,77777,9,999999999,15,0.059,0,88,0,0,1 -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,80,83500,0,0,297,0,0,0,0,0,0,0,180,3.6,3,3,16,6706,9,999999999,14,0.059,0,88,0,0,1 -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,68,83500,0,0,312,0,0,0,0,0,0,0,210,5.2,5,5,16,77777,9,999999999,13,0.059,0,88,0,0,1 -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,74,83500,0,0,307,0,0,0,0,0,0,0,230,4.6,5,5,16,77777,9,999999999,12,0.059,0,88,0,0,1 -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,5,71,83500,0,0,304,0,0,0,0,0,0,0,220,5.7,3,3,16,77777,9,999999999,12,0.059,0,88,0,0.3,1 -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,3.9,66,83500,0,0,291,0,0,0,0,0,0,0,210,5.2,0,0,16,77777,9,999999999,11,0.059,0,88,0,0,1 -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,3.3,63,83500,0,0,290,0,0,0,0,0,0,0,220,5.7,0,0,16,77777,9,999999999,10,0.058,0,88,0,0,1 -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,77777,9,999999999,10,0.058,0,88,0,0,1 -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,77777,9,999999999,10,0.058,0,88,0,0,1 -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,77777,9,999999999,9,0.058,0,88,0,0,1 -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,54,83700,0,0,282,0,0,0,0,0,0,0,220,5.2,0,0,16,77777,9,999999999,9,0.058,0,88,0,0,1 -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,58,83700,12,417,278,0,0,0,0,0,0,0,230,6.2,0,0,16,77777,9,999999999,9,0.058,0,88,0,0,1 -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,46,83900,209,1351,291,134,458,63,14679,9216,6926,1995,230,6.7,0,0,16,77777,9,999999999,8,0.058,0,88,0,0,1 -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,36101,33850,9139,3275,220,6.7,0,0,16,77777,9,999999999,8,0.058,0,88,0,0,1 -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,57300,45984,13056,5056,220,4.6,0,0,16,77777,9,999999999,8,0.058,0,88,0,0,1 -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,17,84400,880,1351,326,618,711,154,74190,50903,18565,7444,250,2.6,0,0,16,77777,9,999999999,8,0.058,0,88,0,0,1 -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,87448,53304,20523,8420,270,2.6,3,3,16,77777,9,999999999,8,0.058,0,88,0,0,1 -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,84446,87338,16694,3425,210,3.1,3,3,16,77777,9,999999999,8,0.058,0,88,0,0,1 -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,83968,90191,13424,3052,140,3.6,3,3,16,77777,9,999999999,8,0.058,0,88,0,0,1 -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,78579,90147,13230,2590,110,3.1,3,3,16,77777,9,999999999,9,0.058,0,88,0,0,1 -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,-7.2,10,84200,844,1351,358,633,854,99,78191,55354,12267,5000,140,3.6,3,3,16,77777,9,999999999,9,0.058,0,88,0,0,1 -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,-7.2,10,84200,648,1351,358,465,797,83,56312,48140,10079,3903,120,4.1,3,3,16,77777,9,999999999,10,0.058,0,88,0,0,1 -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,32533,30134,5773,2085,130,5.7,2,2,16,77777,9,999999999,10,0.058,0,88,0,0,1 -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,7488,31685,3285,462,120,4.1,3,3,16,77777,9,999999999,10,0.058,0,88,0,0,1 -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,77777,9,999999999,10,0.058,0,88,0,0,1 -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,77777,9,999999999,10,0.058,0,88,0,0,1 -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,77777,9,999999999,10,0.058,0,88,0,0,1 -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,34,83800,0,0,310,0,0,0,0,0,0,0,170,8.2,0,0,16,77777,9,999999999,9,0.058,0,88,0,0,1 -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,40,83700,0,0,300,0,0,0,0,0,0,0,170,6.2,0,0,16,77777,9,999999999,9,0.058,0,88,0,0,1 -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,77777,9,999999999,9,0.058,0,88,0,0,1 -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,77777,9,999999999,9,0.058,0,88,0,0,1 -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,2.2,58,83600,0,0,289,0,0,0,0,0,0,0,190,3.6,0,0,16,77777,9,999999999,8,0.058,0,88,0,0,1 -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,77777,9,999999999,8,0.058,0,88,0,0,1 -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,77777,9,999999999,8,0.058,0,88,0,0,1 -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,77777,9,999999999,8,0.058,0,88,0,0,1 -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,44,83600,11,394,314,0,0,0,0,0,0,0,230,5.2,7,6,16,77777,9,999999999,8,0.058,0,88,0,0,1 -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,12842,4394,4970,1554,220,6.2,8,6,16,6706,9,999999999,8,0.058,0,88,0,0,1 -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,31860,27955,16280,5155,240,5.2,9,5,16,6706,9,999999999,8,0.058,0,88,0,0,1 -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,29299,5680,25487,8725,240,3.1,9,5,16,6706,9,999999999,9,0.058,0,88,0,0,1 -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,48275,14750,36968,12837,200,2.1,8,5,16,6706,9,999999999,9,0.058,0,88,0,0,1 -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,13,83600,1003,1352,364,496,181,361,56791,17048,41597,14957,170,2.1,6,5,16,6706,9,999999999,9,0.058,0,88,0,0,1 -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,-5.6,12,84200,1065,1352,374,242,12,233,28945,943,28015,11223,150,2.1,7,7,16,6706,9,999999999,10,0.058,0,88,0,0,1 -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,37549,1565,36125,13795,120,2.1,6,6,16,6706,9,999999999,10,0.058,0,88,0,0,1 -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,53965,16168,39775,14358,90,3.6,4,4,16,6706,9,999999999,10,0.058,0,88,0,0,1 -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,69369,49805,21213,8256,110,5.2,3,3,16,77777,9,999999999,11,0.058,0,88,0,0,1 -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,55931,47380,9163,3555,110,6.2,7,7,16,77777,9,999999999,12,0.058,0,88,0,0,1 -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,29601,29344,13009,4161,110,5.7,6,5,16,77777,9,999999999,13,0.058,0,88,0,0,1 -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,976,0,982,407,50,4.6,6,5,16,77777,9,999999999,12,0.058,0,88,0,0,1 -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,77777,9,999999999,12,0.058,0,88,0,0,1 -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,77777,9,999999999,11,0.058,0,88,0,0,1 -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,-2.2,22,83400,0,0,341,0,0,0,0,0,0,0,330,4.1,3,3,16,77777,9,999999999,10,0.058,0,88,0,0,1 -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,77777,9,999999999,10,0.058,0,88,0,0,1 -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,77777,9,999999999,9,0.058,0,88,0,0,1 -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,-2.2,30,83300,0,0,318,0,0,0,0,0,0,0,260,2.1,3,3,16,77777,9,999999999,9,0.058,0,88,0,0,1 -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,77777,9,999999999,8,0.058,0,88,0,0,1 -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,77777,9,999999999,8,0.058,0,88,0,0,1 -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,77777,9,999999999,7,0.058,0,88,0,0,1 -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,77777,9,999999999,7,0.058,0,88,0,0,1 -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,77777,9,999999999,7,0.058,0,88,0,0,1 -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,77777,9,999999999,7,0.058,0,88,0,0,1 -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,13912,8532,6705,1918,240,2.6,0,0,16,77777,9,999999999,6,0.058,0,88,0,0,1 -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,15,83200,457,1353,333,318,759,60,37889,35790,7165,2607,180,3.6,0,0,16,77777,9,999999999,6,0.058,0,88,0,0,1 -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,-7.8,10,83700,687,1353,354,467,658,132,54919,45598,15583,5896,220,3.1,2,2,16,77777,9,999999999,6,0.058,0,88,0,0,1 -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,72706,95610,10433,1937,200,2.6,3,3,16,77777,9,999999999,6,0.058,0,88,0,0,1 -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,84274,98653,10462,2316,170,4.1,2,2,16,77777,9,999999999,6,0.058,0,88,0,0,1 -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,89964,99593,10989,2677,190,1.5,0,0,16,77777,9,999999999,7,0.058,0,88,0,0,1 -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,87967,99189,9179,2318,200,4.6,3,3,16,77777,9,999999999,7,0.058,0,88,0,0,1 -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,79242,93629,11688,2384,270,1.5,3,3,16,77777,9,999999999,7,0.058,0,88,0,0,1 -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,66019,89346,10767,1884,340,3.6,3,3,16,77777,9,999999999,8,0.058,0,88,0,0,1 -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,-11.7,5,83700,634,1353,376,464,843,68,48914,82198,10121,1479,30,5.2,3,3,16,77777,9,999999999,8,0.058,0,88,0,0,1 -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,31578,29597,5533,1988,30,6.2,6,5,16,77777,9,999999999,8,0.058,0,88,0,0,1 -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,6874,0,2333,750,20,4.6,3,3,16,77777,9,999999999,8,0.058,0,88,0,0,1 -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,77777,9,999999999,8,0.058,0,88,0,0,1 -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,77777,9,999999999,8,0.058,0,88,0,0,1 -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,-7.2,14,83400,0,0,321,0,0,0,0,0,0,0,330,5.7,0,0,16,77777,9,999999999,8,0.058,0,88,0,0,1 -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,77777,9,999999999,8,0.058,0,88,0,0,1 -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,-6.7,20,83200,0,0,300,0,0,0,0,0,0,0,20,4.6,0,0,16,77777,9,999999999,7,0.058,0,88,0,0,1 -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,77777,9,999999999,7,0.058,0,88,0,0,1 -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,28,83200,0,0,300,0,0,0,0,0,0,0,250,3.6,2,2,16,77777,9,999999999,7,0.058,0,88,0,0,1 -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,77777,9,999999999,7,0.058,0,88,0,0,1 -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,6706,9,999999999,7,0.058,0,88,0,0,1 -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,6706,9,999999999,8,0.058,0,88,0,0,1 -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.6,52,83400,0,0,293,0,0,0,0,0,0,0,250,3.6,1,1,16,77777,9,999999999,8,0.058,0,88,0,0,1 -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,6706,9,999999999,8,0.058,0,88,0,0,1 -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,14175,8212,6784,1915,350,1.5,0,0,16,77777,9,999999999,8,0.058,0,88,0,0,1 -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,33608,31037,11966,4086,40,2.6,1,1,16,77777,9,999999999,8,0.058,0,88,0,0,1 -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,55338,43292,13766,5288,50,2.1,1,1,16,7620,9,999999999,8,0.058,0,88,0,0,1 -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,75147,50059,17022,6867,60,3.6,6,6,16,7620,9,999999999,8,0.058,0,88,0,0,1 -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,35,83500,994,1354,358,775,857,143,94933,56862,17589,7294,80,2.6,6,4,16,7620,9,999999999,9,0.058,0,88,0,0,1 -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,82468,44329,30339,12006,90,3.1,7,5,16,7620,9,999999999,9,0.058,0,88,0,0,1 -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,87643,50111,25339,10264,60,4.6,5,5,16,7620,9,999999999,9,0.058,0,88,0,0,1 -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,61343,26717,37099,13611,80,5.2,4,4,16,77777,9,999999999,9,0.058,0,88,0,0,1 -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,71958,52314,18065,7142,90,7.2,7,6,16,77777,9,999999999,9,0.058,0,88,0,0,1 -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,54168,45772,9356,3612,60,6.7,8,7,16,77777,9,999999999,10,0.058,0,88,0,0,1 -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,28985,25783,5736,2053,60,6.2,6,5,16,77777,9,999999999,10,0.058,0,88,0,0,1 -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,6579,0,2428,773,40,5.2,6,5,16,77777,9,999999999,10,0.058,0,88,0,0,1 -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,77777,9,999999999,10,0.058,0,88,0,0,1 -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,77777,9,999999999,10,0.058,0,88,0,0,1 -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,77777,9,999999999,9,0.058,0,88,0,0,1 -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,65,83700,0,0,345,0,0,0,0,0,0,0,60,4.6,6,5,16,77777,9,999999999,9,0.058,0,88,0,0,1 -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,77777,9,999999999,8,0.058,0,88,0,0,1 -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,77777,9,999999999,8,0.058,0,88,0,0,1 -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,77777,9,999999999,7,0.058,0,88,0,0,1 -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,6706,9,999999999,7,0.058,0,88,0,0,1 -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,77777,9,999999999,8,0.058,0,88,0,0,1 -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,77777,9,999999999,9,0.058,0,88,0,0,1 -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,4.4,68,83900,0,0,309,0,0,0,0,0,0,0,350,2.6,9,5,16,77777,9,999999999,10,0.058,0,88,0,0,1 -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,8.9,93,83900,7,350,341,0,0,0,0,0,0,0,0,0,10,10,0.2,61,9,999999999,10,0.058,0,88,0,0,1 -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,9216,1872,5944,1745,0,0,10,10,0.4,30,9,999999999,9,0.058,0,88,0,0,1 -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,8165,0,8231,3363,250,2.6,10,10,0.4,152,9,999999999,9,0.058,0,88,0,0,1 -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,28433,4847,25096,8566,190,2.1,9,5,9.6,77777,9,999999999,9,0.058,0,88,0,0,1 -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,73275,48508,22383,8750,130,2.1,4,3,16,77777,9,999999999,8,0.058,0,88,0,0,1 -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,89932,53458,16551,6879,50,3.6,0,0,16,77777,9,999999999,7,0.058,0,88,0,0,1 -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,82882,87460,16029,3193,60,2.6,0,0,16,77777,9,999999999,7,0.058,0,88,0,0,1 -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,81588,86229,16431,3150,100,4.1,0,0,16,77777,9,999999999,7,0.058,0,88,0,0,1 -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,78624,91528,14210,2543,70,2.1,0,0,16,77777,9,999999999,7,0.058,0,88,0,0,1 -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,65647,90281,10663,1846,0,0,4,2,16,77777,9,999999999,7,0.058,0,88,0,0,1 -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,54960,47296,8899,3433,70,2.6,4,3,16,77777,9,999999999,7,0.058,0,88,0,0,1 -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,11,84000,382,1354,366,237,641,55,27939,25800,6498,2296,90,3.1,4,2,16,77777,9,999999999,7,0.058,0,88,0,0,1 -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,6094,0,2419,763,90,2.6,0,0,16,77777,9,999999999,7,0.058,0,88,0,0,1 -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,77777,9,999999999,7,0.058,0,88,0,0,1 -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,77777,9,999999999,7,0.058,0,88,0,0,1 -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,77777,9,999999999,6,0.058,0,88,0,0,1 -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,77777,9,999999999,6,0.058,0,88,0,0,1 -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,77777,9,999999999,6,0.058,0,88,0,0,1 -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,46,84300,0,0,331,0,0,0,0,0,0,0,240,3.6,3,2,16,77777,9,999999999,6,0.058,0,88,0,0,1 -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,5,51,84200,0,0,323,0,0,0,0,0,0,0,210,4.6,2,2,16,77777,9,999999999,6,0.058,0,88,0,0,1 -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,1,1,16,77777,9,999999999,6,0.058,0,88,0,0,1 -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,77777,9,999999999,6,0.058,0,88,0,0,1 -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,77777,9,999999999,6,0.058,0,88,0,0,1 -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,77777,9,999999999,7,0.058,0,88,0,0,1 -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,77777,9,999999999,7,0.058,0,88,0,0,1 -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,13371,6853,6655,1855,240,2.1,0,0,16,77777,9,999999999,7,0.058,0,88,0,0,1 -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.6,27,84200,445,1355,330,298,672,76,34709,32874,8878,3151,240,5.7,0,0,16,77777,9,999999999,7,0.058,0,88,0,0,1 -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,21,84800,674,1355,351,468,696,121,55188,45642,14321,5446,240,4.1,1,1,16,77777,9,999999999,7,0.058,0,88,0,0,1 -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,74718,52355,16480,6631,150,2.1,2,2,16,77777,9,999999999,7,0.058,0,88,0,0,1 -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,83524,52189,22247,9013,150,2.1,4,3,16,77777,9,999999999,8,0.058,0,88,0,0,1 -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,90832,54126,24032,9772,160,2.1,4,4,16,77777,9,999999999,8,0.058,0,88,0,0,1 -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,83129,48582,26689,10697,160,3.1,4,4,16,7620,9,999999999,9,0.058,0,88,0,0,1 -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,6,84000,956,1355,384,731,841,136,89696,58605,16753,6899,160,5.2,2,2,16,7620,9,999999999,9,0.058,0,88,0,0,1 -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,71715,52746,12892,5197,130,4.1,2,2,16,7620,9,999999999,9,0.058,0,88,0,0,1 -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,-9.4,6,84700,614,1355,380,419,561,164,47812,42029,18797,6606,110,3.6,3,3,16,6706,9,999999999,10,0.058,0,88,0,0,1 -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,13961,3693,11885,3771,130,4.6,8,8,16,6706,9,999999999,10,0.058,0,88,0,0,1 -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,1948,0,1961,724,140,4.1,7,6,16,6706,9,999999999,10,0.058,0,88,0,0,1 -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,17,84300,0,0,343,0,0,0,0,0,0,0,150,4.1,6,4,16,6706,9,999999999,11,0.058,0,88,0,0,1 -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,3962,9,999999999,11,0.058,0,88,0,0,1 -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,6706,9,999999999,12,0.058,0,88,0,0,1 -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,77777,9,999999999,14,0.058,0,88,0,0,1 -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,77777,9,999999999,15,0.058,0,88,0,0,1 -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,77777,9,999999999,16,0.058,0,88,0,0,1 -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,6096,9,999999999,17,0.057,0,88,0,0,1 -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,6096,9,999999999,17,0.057,0,88,0,0,1 -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,77777,9,999999999,17,0.057,0,88,0,0,1 -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,77777,9,999999999,17,0.057,0,88,0,0,1 -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,6096,9,999999999,17,0.057,0,88,0,0,1 -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,-2.2,22,83900,6,305,349,0,0,0,0,0,0,0,210,5.2,8,6,16,6096,9,999999999,17,0.057,0,88,0,0,1 -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,9530,3146,6848,1863,200,6.2,5,4,16,3962,9,999999999,17,0.057,0,88,0,0,1 -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,19740,6485,16396,5041,220,7.7,3,3,16,4877,9,999999999,17,0.057,0,88,0,0,1 -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,53963,44583,18838,6858,220,6.7,3,3,16,77777,9,999999999,17,0.057,0,88,0,0,1 -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,70177,48104,20769,8155,210,6.2,10,6,16,6096,9,999999999,17,0.057,0,88,0,0,1 -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,48963,10964,39139,14196,200,8.2,10,6,16,4877,9,999999999,17,0.057,0,88,0,0,1 -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,26757,453,26415,10632,180,7.2,10,6,16,4877,9,999999999,17,0.057,0,88,0,0,1 -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,23720,0,23947,10829,180,5.2,10,7,16,3900,9,999999999,18,0.057,0,88,0,0,1 -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,15706,0,15854,7537,260,10.3,10,9,6.4,3353,9,999999999,18,0.057,0,88,0,0,1 -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,9873,0,9962,4785,320,5.2,10,7,16,3962,9,999999999,19,0.057,0,88,0,0,1 -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,27564,7694,22657,7525,310,4.1,9,7,16,3962,9,999999999,20,0.057,0,88,0,0,1 -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,16465,8214,11615,3686,10,1.5,9,7,16,4877,9,999999999,20,0.057,0,88,0,0,1 -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,29,83800,109,1254,382,8,0,8,776,0,781,320,0,0,9,7,16,3962,9,999999999,20,0.057,0,88,0,0,1 -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,3048,9,999999999,19,0.057,0,88,0,0,1 -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,3048,9,999999999,19,0.057,0,88,0,0,1 -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,3600,9,999999999,20,0.057,0,88,0,0,1 -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,3962,9,999999999,21,0.057,0,88,0,0,1 -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,69,83600,0,0,347,0,0,0,0,0,0,0,60,2.6,9,7,16,6096,9,999999999,23,0.057,0,88,0,0,1 -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,2896,9,999999999,23,0.057,0,88,0,0,1 -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,2743,9,999999999,23,0.057,0,88,0,0,1 -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,75,83600,0,0,354,0,0,0,0,0,0,0,170,4.1,10,9,16,2896,9,999999999,23,0.057,0,88,0,0,1 -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,10,72,83600,0,0,344,0,0,0,0,0,0,0,170,5.7,9,7,16,3962,9,999999999,21,0.057,0,88,0,0,1 -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,75,83600,0,0,364,0,0,0,0,0,0,0,140,3.6,10,10,16,4267,9,999999999,20,0.057,0,88,0,0,1 -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,4572,9,999999999,18,0.057,0,88,0,0,1 -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,4267,9,999999999,17,0.057,0,88,0,0,1 -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,83,83700,180,1357,330,64,16,62,6895,180,6705,1824,90,5.2,7,6,16,4267,9,999999999,16,0.057,0,88,0,0,1 -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,10.6,75,83700,437,1357,335,172,83,145,18893,5134,16001,4950,90,6.2,4,4,16,4267,9,999999999,16,0.057,0,88,0,0,1 -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,69,84000,666,1357,353,476,616,172,54292,43112,19710,7107,90,6.2,8,8,16,396,9,999999999,15,0.057,0,88,0,0,1 -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,61527,36698,27584,10302,50,6.2,8,8,16,1524,9,999999999,15,0.057,0,88,0,0,1 -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,65265,29484,37097,13668,60,5.7,8,8,16,1524,9,999999999,15,0.057,0,88,0,0,1 -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,92556,52426,23434,9577,60,5.7,9,8,16,1524,9,999999999,16,0.057,0,88,0,0,1 -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,85144,47927,27181,10881,50,4.6,9,8,16,1524,9,999999999,17,0.057,0,88,0,0,1 -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,47598,11082,37811,13632,70,5.7,8,8,16,1981,9,999999999,18,0.057,0,88,0,0,1 -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,23539,895,22838,8648,40,7.7,8,8,16,2438,9,999999999,19,0.057,0,88,0,0,1 -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,8088,0,8156,3677,200,6.2,9,9,16,2100,9,999999999,20,0.057,0,88,0,0,1 -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,60,83500,361,1357,364,38,0,38,3758,0,3788,1635,280,6.2,8,8,16,3962,9,999999999,21,0.057,0,88,0,0,1 -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,65,83900,102,1210,352,5,0,5,483,0,487,204,260,4.1,7,7,12.8,3658,9,999999999,21,0.057,0,88,0,0,1 -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,20,0.057,0,88,0,0,1 -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,2,2,16,3962,9,999999999,19,0.057,0,88,0,0,1 -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,6096,9,999999999,18,0.057,0,88,0,0,1 -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,5,5,16,77777,9,999999999,17,0.057,0,88,0,0,1 -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,77777,9,999999999,17,0.057,0,88,0,0,1 -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,77777,9,999999999,16,0.057,0,88,0,0,1 -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,6.7,80,83400,0,0,294,0,0,0,0,0,0,0,190,3.6,0,0,16,77777,9,999999999,16,0.058,0,88,0,0,1 -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,77777,9,999999999,15,0.058,0,88,0,0,1 -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,77777,9,999999999,15,0.058,0,88,0,0,1 -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,77777,9,999999999,15,0.058,0,88,0,0,1 -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,6.7,80,83400,0,0,309,0,0,0,0,0,0,0,230,2.6,4,4,16,77777,9,999999999,14,0.058,0,88,0,0,1 -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,77777,9,999999999,14,0.058,0,88,0,0,1 -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,12753,4598,6400,1755,300,1.5,0,0,16,77777,9,999999999,14,0.058,0,88,0,0,1 -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,33180,30917,10947,3738,0,0,5,5,16,77777,9,999999999,13,0.058,0,88,0,0,1 -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,53369,42967,14686,5543,360,2.1,3,3,16,77777,9,999999999,13,0.058,0,88,0,0,1 -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,69296,46904,17846,7113,0,0,5,5,16,77777,9,999999999,13,0.058,0,88,0,0,1 -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,30,83300,971,1357,379,707,779,148,86057,52302,18090,7453,60,2.1,7,7,16,77777,9,999999999,13,0.058,0,88,0,0,1 -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,89797,52431,20995,8641,110,3.1,5,5,16,6706,9,999999999,14,0.058,0,88,0,0,1 -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,88956,53506,26897,10744,0,0,7,6,16,6706,9,999999999,15,0.058,0,88,0,0,1 -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,40663,6740,34664,12769,50,2.1,8,7,16,6706,9,999999999,16,0.058,0,88,0,0,1 -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,40589,12063,31751,10976,90,5.7,6,5,16,6706,9,999999999,17,0.058,0,88,0,0,1 -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,28515,8085,23756,7635,80,6.2,7,7,16,6706,9,999999999,17,0.058,0,88,0,0,1 -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,17914,11595,11169,3518,80,7.7,9,9,16,6706,9,999999999,17,0.058,0,88,0,0,1 -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,3785,0,2678,792,0,0,7,6,16,6706,9,999999999,17,0.058,0,88,0,0,1 -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,2.2,31,83300,0,0,349,0,0,0,0,0,0,0,160,4.6,4,4,16,6706,9,999999999,16,0.058,0,88,0,0,1 -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,4572,9,999999999,16,0.058,0,88,0,0,1 -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,43,83300,0,0,365,0,0,0,0,0,0,0,240,4.6,9,9,16,6706,9,999999999,15,0.058,0,88,0,0,1 -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,6706,9,999999999,14,0.058,0,88,0,0,1 -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,5,51,83000,0,0,338,0,0,0,0,0,0,0,220,3.6,7,7,16,6706,9,999999999,13,0.058,0,88,0,0,1 -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,49,83100,0,0,316,0,0,0,0,0,0,0,260,3.1,0,0,16,77777,9,999999999,13,0.058,0,88,0,0,1 -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,77777,9,999999999,12,0.058,0,88,0,0,1 -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,77777,9,999999999,12,0.058,0,88,0,0,1 -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,6,4,16,6096,9,999999999,12,0.058,0,88,0,0,1 -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,3.9,47,83000,0,0,330,0,0,0,0,0,0,0,0,0,10,5,16,6096,9,999999999,13,0.058,0,88,0,0,1 -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,9,5,16,6096,9,999999999,13,0.058,0,88,0,0,1 -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,4267,9,999999999,12,0.058,0,88,0,0,1 -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,1267,0,1276,529,350,2.6,9,5,16,4267,9,999999999,12,0.058,0,88,0,0,1 -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,4482,0,4518,1982,10,4.1,9,6,16,4267,9,999999999,12,0.058,0,88,0,0,1 -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,10864,0,10957,4861,10,3.1,9,7,16,3962,9,999999999,12,0.058,0,88,0,0,1 -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,56481,30155,31484,11272,10,2.1,10,6,16,6096,9,999999999,12,0.058,0,88,0,0,1 -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,43044,4772,38847,14030,340,3.6,9,6,16,4267,9,999999999,12,0.058,0,88,0,0,1 -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,43060,2634,40686,14904,50,2.6,9,9,16,6096,9,999999999,13,0.058,0,88,0,0,1 -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,9.4,50,83400,1014,1358,374,469,156,352,53621,13687,40504,14791,20,3.1,10,8,16,6096,9,999999999,13,0.058,0,88,0,0,1 -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,49,83000,932,1358,374,643,620,217,75419,45513,25584,10064,20,2.6,10,7,16,6096,9,999999999,13,0.058,0,88,0,0,1 -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,62833,44094,20495,7861,20,3.6,7,6,16,6096,9,999999999,14,0.058,0,88,0,0,1 -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,35123,21188,21067,7035,70,3.6,7,6,16,4267,9,999999999,15,0.058,0,88,0,0,1 -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,22863,18389,9040,2984,50,3.6,9,8,16,6706,9,999999999,16,0.058,0,88,0,0,1 -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,3458,0,1616,510,40,3.1,7,6,16,6706,9,999999999,16,0.058,0,88,0,0,1 -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,6706,9,999999999,16,0.058,0,88,0,0,1 -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,6706,9,999999999,17,0.058,0,88,0,0,1 -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,6706,9,999999999,16,0.058,0,88,0,0,1 -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,4267,9,999999999,16,0.058,0,88,0,0,1 -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,1128,9,999999999,16,0.058,0,88,0,0,1 -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,305,9,999999999,17,0.058,0,88,0,0,1 -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,17,0.058,0,88,0,0,1 -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,17,0.058,0,88,0,0,1 -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,9.4,96,83200,0,0,342,0,0,0,0,0,0,0,10,3.1,10,10,0.8,30,9,999999999,17,0.058,0,88,0,0,1 -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,9,100,83200,0,0,337,0,0,0,0,0,0,0,10,3.6,10,10,0.4,30,9,999999999,17,0.058,0,88,0,0,1 -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,30,9,999999999,16,0.058,0,88,0,0,1 -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,30,9,999999999,15,0.058,0,88,0,0,1 -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,8,100,83400,168,1359,331,41,0,41,3990,0,4018,1372,20,2.6,10,10,0,90,9,999999999,14,0.058,0,88,0,0,1 -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,5969,0,6016,2541,40,2.6,10,10,3.2,61,9,999999999,13,0.058,0,88,0,0,1 -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,8.3,89,83600,653,1359,341,107,0,107,10854,0,10947,4848,0,0,10,10,4.8,61,9,999999999,13,0.058,0,88,0,0,1 -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,39174,10195,30833,11072,30,2.6,9,9,16,518,9,999999999,13,0.058,0,88,0,0,1 -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,65090,30113,37458,13643,60,2.1,5,5,16,77777,9,999999999,13,0.058,0,88,0,0,1 -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,87329,50491,25506,10279,80,2.6,5,5,16,77777,9,999999999,13,0.058,0,88,0,0,1 -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,7.2,43,83800,1008,1359,358,747,838,124,92554,52873,15422,6452,110,2.6,5,5,16,77777,9,999999999,13,0.058,0,88,0,0,1 -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,84584,51988,13526,5608,90,3.1,4,4,16,77777,9,999999999,14,0.058,0,88,0,0,1 -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,64577,46326,14792,5868,50,3.6,4,4,16,77777,9,999999999,14,0.058,0,88,0,0,1 -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,50016,42258,8579,3271,100,5.2,5,5,16,77777,9,999999999,14,0.058,0,88,0,0,1 -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,24137,19183,5754,2005,50,3.6,5,5,16,77777,9,999999999,14,0.058,0,88,0,0,1 -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,44,83800,84,1099,337,22,171,12,2559,0,1397,442,80,3.6,3,3,16,77777,9,999999999,14,0.058,0,88,0,0,1 -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,77777,9,999999999,13,0.058,0,88,0,0,1 -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,77777,9,999999999,13,0.058,0,88,0,0,1 -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,77777,9,999999999,12,0.058,0,88,0,0,1 -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,77777,9,999999999,12,0.058,0,88,0,0,1 -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,77777,9,999999999,11,0.058,0,88,0,0,1 -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,77777,9,999999999,11,0.058,0,88,0,0,1 -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,10,0.058,0,88,0,0,1 -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,10,0.058,0,88,0,0,1 -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,10,0.058,0,88,0,0,1 -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,11,0.058,0,88,0,0,1 -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,96,84100,0,0,286,0,0,0,0,0,0,0,180,3.6,3,3,12.8,77777,9,999999999,11,0.058,0,88,0,0,1 -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,93,84000,2,193,276,0,0,0,0,0,0,0,210,3.1,0,0,14.4,77777,9,999999999,11,0.058,0,88,0,0,1 -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,11122,0,4349,1313,180,3.1,3,3,16,77777,9,999999999,10,0.058,0,88,0,0,1 -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,36021,32035,6314,2276,130,4.1,4,4,16,77777,9,999999999,10,0.058,0,88,0,0,1 -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,34,84500,648,1360,324,464,796,83,56032,46621,10051,3887,120,7.2,3,3,16,77777,9,999999999,10,0.058,0,88,0,0,1 -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,70190,49170,15374,6169,140,7.2,1,1,16,77777,9,999999999,9,0.058,0,88,0,0,1 -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,81808,50783,18960,7753,130,7.2,0,0,16,77777,9,999999999,9,0.058,0,88,0,0,1 -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,93574,54963,16381,6831,110,3.1,0,0,16,77777,9,999999999,9,0.058,0,88,0,0,1 -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,19,84600,1002,1360,355,747,874,101,78686,88573,13863,2698,100,2.1,0,0,16,77777,9,999999999,9,0.058,0,88,0,0,1 -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,72664,88436,13280,2297,80,3.1,0,0,16,77777,9,999999999,9,0.058,0,88,0,0,1 -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,68160,50590,11086,4450,50,1.5,0,0,16,77777,9,999999999,9,0.058,0,88,0,0,1 -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,48419,40726,7784,2971,120,6.7,0,0,16,77777,9,999999999,10,0.058,0,88,0,0,1 -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,5,28,83700,332,1360,374,200,648,41,23715,17669,4870,1710,160,8.2,4,3,16,77777,9,999999999,10,0.058,0,88,0,0,1 -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,2366,0,1065,340,170,4.6,0,0,16,77777,9,999999999,10,0.058,0,88,0,0,1 -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,39,84300,0,0,333,0,0,0,0,0,0,0,220,4.1,0,0,16,77777,9,999999999,10,0.058,0,88,0,0,1 -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,77777,9,999999999,10,0.058,0,88,0,0,1 -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,77777,9,999999999,10,0.058,0,88,0,0,1 -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,77777,9,999999999,10,0.058,0,88,0,0,1 -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,77777,9,999999999,9,0.058,0,88,0,0,1 -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,77777,9,999999999,10,0.058,0,88,0,0,1 -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,77777,9,999999999,10,0.058,0,88,0,0,1 -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,77777,9,999999999,11,0.058,0,88,0,0,1 -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,2.8,44,83600,0,0,311,0,0,0,0,0,0,0,230,5.2,0,0,16,77777,9,999999999,12,0.058,0,88,0,0,1 -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,77777,9,999999999,13,0.058,0,88,0,0,1 -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,77777,9,999999999,14,0.058,0,88,0,0,1 -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,77777,9,999999999,14,0.058,0,88,0,0,1 -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,31,83900,159,1361,328,103,309,66,10956,4787,7049,1728,200,3.6,3,2,16,77777,9,999999999,14,0.058,0,88,0,0,1 -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,24,83700,416,1361,358,152,110,118,16956,6439,13217,4230,200,4.1,6,6,16,77777,9,999999999,13,0.058,0,88,0,0,1 -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,19,84300,644,1361,384,437,562,171,49831,41673,19588,6939,230,4.6,9,7,16,6706,9,999999999,13,0.058,0,88,0,0,1 -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,41277,11401,32645,11411,240,5.7,7,6,16,6706,9,999999999,13,0.058,0,88,0,0,1 -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,66107,33154,36192,13227,200,4.6,4,4,16,6706,9,999999999,13,0.058,0,88,0,0,1 -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.6,14,84200,1009,1361,392,782,847,151,95708,58544,18558,7674,220,5.2,3,3,16,6706,9,999999999,14,0.058,0,88,0,0,1 -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,91820,56725,18981,7820,190,1.5,6,5,16,6096,9,999999999,15,0.058,0,88,0,0,1 -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,15,83300,914,1361,396,550,369,301,62905,32684,34630,12579,160,5.2,8,5,16,6096,9,999999999,16,0.058,0,88,0,0,1 -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,14345,0,14473,6493,170,3.1,9,8,16,3353,9,999999999,17,0.058,0,88,0,0,1 -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,39390,29157,22577,7174,170,3.1,10,7,16,4267,9,999999999,17,0.058,0,88,0,0,1 -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,12328,3638,10144,3165,170,2.6,9,7,16,3353,9,999999999,17,0.058,0,88,0,0.5,1 -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,12,72,83800,73,1032,370,6,0,6,577,0,581,233,330,6.7,10,9,16,2134,9,999999999,19,0.058,0,88,0,0,1 -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,3300,9,999999999,20,0.058,0,88,0,0.3,1 -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,11.7,81,83500,0,0,359,0,0,0,0,0,0,0,330,6.7,10,9,16,2896,9,999999999,22,0.058,0,88,0,0,1 -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,11.1,77,83600,0,0,369,0,0,0,0,0,0,0,230,1.5,10,10,16,3048,9,999999999,22,0.058,0,88,0,0,1 -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,2438,9,999999999,23,0.058,0,88,0,0,1 -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,11.7,81,83500,0,0,369,0,0,0,0,0,0,0,220,4.6,10,10,16,2591,9,999999999,23,0.058,0,88,0,0,1 -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,12.8,87,83400,0,0,361,0,0,0,0,0,0,0,220,5.7,10,9,16,2743,9,999999999,23,0.058,0,88,0,0,1 -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,10.6,75,83500,0,0,368,0,0,0,0,0,0,0,230,7.2,10,10,16,2286,9,999999999,23,0.058,0,88,0,0,1 -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,75,83500,0,0,364,0,0,0,0,0,0,0,240,4.6,10,10,16,2438,9,999999999,23,0.058,0,88,0,0,1 -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,83,83700,0,0,356,0,0,0,0,0,0,0,20,9.3,10,10,16,2134,9,999999999,22,0.058,0,88,0,0,1 -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,74,83600,0,0,325,0,0,0,0,0,0,0,20,9.3,10,9,16,1676,9,999999999,22,0.058,0,88,0,0,1 -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,77,84100,0,0,322,0,0,0,0,0,0,0,360,6.2,10,9,16,1524,9,999999999,21,0.058,0,88,0,0,1 -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,823,9,999999999,20,0.058,0,88,0,0.1,1 -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,9667,2853,6827,1677,360,6.2,10,10,16,671,9,999999999,20,0.058,0,88,0,0,1 -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,6069,0,6116,2549,360,3.1,10,10,4.8,5182,9,999999999,19,0.058,0,88,0,0,1 -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,7507,0,7571,3494,350,4.6,8,8,16,457,9,999999999,19,0.058,0,88,0,0,1 -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,5,81,84400,822,1361,327,109,0,109,11230,0,11331,5377,10,5.1,10,10,16.1,600,9,999999999,18,0.058,0,88,0,0,1 -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,3.9,66,84400,946,1361,319,279,18,266,32338,1479,31005,11773,30,4.6,8,8,16,1219,9,999999999,17,0.058,0,88,0,0,1 -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,43752,4323,39880,14527,40,3.1,8,8,16,732,9,999999999,17,0.058,0,88,0,0,1 -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,62598,26450,37790,13912,40,3.1,8,8,16,853,9,999999999,17,0.058,0,88,0,0,1 -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,30215,2398,28040,10708,10,3.1,8,8,16,1036,9,999999999,16,0.058,0,88,0,0,1 -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,32939,6942,27883,9805,360,1.5,8,8,16,1097,9,999999999,15,0.058,0,88,0,0,1 -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,18484,847,18001,6122,100,2.1,8,8,16,1097,9,999999999,14,0.058,0,88,0,0,1 -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,9296,436,8991,2870,160,3.1,5,5,16,77777,9,999999999,13,0.058,0,88,0,0,1 -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,1726,0,1267,392,150,2.1,4,4,16,77777,9,999999999,12,0.058,0,88,0,0,1 -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,77777,9,999999999,12,0.058,0,88,0,0,1 -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,77777,9,999999999,12,0.058,0,88,0,0,1 -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,77777,9,999999999,12,0.058,0,88,0,0,1 -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,2.8,86,84100,0,0,279,0,0,0,0,0,0,0,170,4.1,2,2,16,77777,9,999999999,11,0.058,0,88,0,0,1 -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,77777,9,999999999,11,0.058,0,88,0,0.4,1 -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,77777,9,999999999,12,0.058,0,88,0,0,1 -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,77777,9,999999999,12,0.059,0,88,0,0,1 -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,77777,9,999999999,13,0.059,0,88,0,0,1 -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,77777,9,999999999,12,0.059,0,88,0,0,1 -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,77777,9,999999999,11,0.059,0,88,0,0,1 -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,6096,9,999999999,11,0.059,0,88,0,0,1 -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,6096,9,999999999,11,0.059,0,88,0,0,1 -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,1557,0,1568,625,0,0,4,4,16,6096,9,999999999,11,0.059,0,88,0,0,1 -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,14486,2885,12755,4086,270,1.5,4,3,16,6096,9,999999999,11,0.059,0,88,0,0,1 -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,47000,33628,26353,8430,0,0,4,2,14.4,6096,9,999999999,12,0.059,0,88,0,0,1 -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,17082,0,17236,7648,170,2.6,8,4,16,6096,9,999999999,12,0.059,0,88,0,0,1 -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,52252,16796,37685,13524,250,3.1,8,6,16,6096,9,999999999,12,0.059,0,88,0,0,1 -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,73623,38917,34934,13174,210,3.1,6,5,16,6096,9,999999999,12,0.059,0,88,0,0,1 -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,40743,8855,31843,12213,250,2.6,7,6,16,6096,9,999999999,13,0.059,0,88,0,0,1 -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,73032,48078,26427,10168,140,2.1,8,7,16,3962,9,999999999,13,0.059,0,88,0,0,1 -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,40429,16388,28728,9944,70,3.1,9,6,16,4267,9,999999999,13,0.059,0,88,0,0,1 -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,26899,8826,22028,6946,70,3.1,9,7,16,4267,9,999999999,13,0.059,0,88,0,0,1 -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,10121,935,9599,2981,70,3.1,7,7,16,3962,9,999999999,13,0.059,0,88,0,0,1 -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,1289,0,938,295,40,3.1,10,6,16,4572,9,999999999,13,0.059,0,88,0,0,1 -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,4572,9,999999999,13,0.059,0,88,0,0,1 -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,4572,9,999999999,13,0.059,0,88,0,0,1 -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,6706,9,999999999,12,0.059,0,88,0,0,1 -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,6096,9,999999999,12,0.059,0,88,0,0,1 -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,6096,9,999999999,11,0.059,0,88,0,0,1 -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,11,0.059,0,88,0,0,1 -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,10,0.059,0,88,0,0,1 -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,10,0.059,0,88,0,0,1 -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,6096,9,999999999,11,0.059,0,88,0,0,1 -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,6096,9,999999999,12,0.059,0,88,0,0,1 -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,6096,9,999999999,13,0.059,0,88,0,0,1 -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,77777,9,999999999,12,0.059,0,88,0,0,1 -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,10532,1573,5717,1497,220,5.7,0,0,16,77777,9,999999999,12,0.059,0,88,0,0,1 -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,30090,28257,8240,2866,240,5.2,0,0,16,77777,9,999999999,11,0.059,0,88,0,0,1 -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,53640,46988,11906,4512,250,4.1,0,0,16,77777,9,999999999,11,0.059,0,88,0,0,1 -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,62008,42814,25602,9479,280,2.6,0,0,16,77777,9,999999999,11,0.059,0,88,0,0,1 -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,80696,53196,19717,7977,310,1.5,0,0,16,77777,9,999999999,11,0.059,0,88,0,0,1 -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,90954,56210,15319,6372,340,3.6,0,0,16,77777,9,999999999,12,0.059,0,88,0,0,1 -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,78411,91769,12616,2469,40,5.7,3,3,16,77777,9,999999999,13,0.059,0,88,0,0,1 -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,71222,90333,11873,2115,320,3.6,3,3,16,77777,9,999999999,13,0.059,0,88,0,0,1 -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,64978,49746,10923,4350,330,3.1,3,3,16,77777,9,999999999,14,0.059,0,88,0,0,1 -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,45437,40527,7529,2841,340,3.6,3,3,16,77777,9,999999999,14,0.059,0,88,0,0,1 -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,20808,15782,4947,1702,20,3.1,5,5,16,77777,9,999999999,14,0.059,0,88,0,0,1 -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,1195,8096,1023,177,360,2.1,0,0,16,77777,9,999999999,14,0.059,0,88,0,0,1 -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,77777,9,999999999,14,0.059,0,88,0,0,1 -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,77777,9,999999999,14,0.059,0,88,0,0,1 -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,-2.8,21,83500,0,0,340,0,0,0,0,0,0,0,50,2.1,3,3,16,77777,9,999999999,14,0.059,0,88,0,0,1 -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,77777,9,999999999,14,0.059,0,88,0,0,1 -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,77777,9,999999999,14,0.059,0,88,0,0,1 -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,40,83100,0,0,320,0,0,0,0,0,0,0,230,3.2,0,0,16,77777,9,999999999,13,0.059,0,88,0,0,1 -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,6096,9,999999999,11,0.06,0,88,0,0,1 -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,39,83000,0,0,332,0,0,0,0,0,0,0,200,3.9,9,4,16,6096,9,999999999,11,0.06,0,88,0,0,1 -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,6096,9,999999999,11,0.06,0,88,0,0,1 -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,6096,9,999999999,12,0.06,0,88,0,0,1 -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,7620,9,999999999,12,0.06,0,88,0,0,1 -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,1.1,39,83100,0,80,322,0,0,0,0,0,0,0,190,5.2,8,3,16,7620,9,999999999,13,0.06,0,88,0,0,1 -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,1655,0,1666,652,190,5.2,7,4,16,6706,9,999999999,13,0.06,0,88,0,0,1 -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,33328,31002,7151,2520,200,2.6,7,5,16,6706,9,999999999,13,0.06,0,88,0,0,1 -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,57432,50994,12213,4611,270,6.2,7,5,16,6096,9,999999999,14,0.06,0,88,0,0,1 -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,62958,43377,27685,10030,270,5.7,7,4,16,6706,9,999999999,14,0.06,0,88,0,0,1 -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,80728,52664,19119,7753,210,5.2,7,4,16,6706,9,999999999,15,0.06,0,88,0,0,1 -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,19,83500,986,1365,371,763,841,153,92954,58356,18718,7703,240,2.6,6,4,16,6706,9,999999999,14,0.06,0,88,0,0,1 -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,92224,57244,15138,6289,350,4.1,6,4,16,6706,9,999999999,14,0.06,0,88,0,0,1 -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,81272,54182,13240,5437,230,3.6,5,4,16,7315,9,999999999,14,0.06,0,88,0,0,1 -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,59245,45828,16911,6500,250,2.1,4,3,16,7315,9,999999999,14,0.06,0,88,0,0,1 -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,41591,38585,14148,4993,150,4.1,5,4,16,77777,9,999999999,13,0.06,0,88,0,0,1 -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,16207,11490,7790,2505,130,4.1,10,5,16,77777,9,999999999,13,0.06,0,88,0,0,1 -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,719,0,599,189,160,3.1,4,3,16,77777,9,999999999,13,0.06,0,88,0,0,1 -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,77777,9,999999999,12,0.06,0,88,0,0,1 -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,77777,9,999999999,12,0.06,0,88,0,0,1 -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,77777,9,999999999,12,0.06,0,88,0,0,1 -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,-2.2,22,83200,0,0,346,0,0,0,0,0,0,0,190,2.6,10,5,16,77777,9,999999999,12,0.06,0,88,0,0,1 -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,36,83000,0,0,326,0,0,0,0,0,0,0,160,3.6,10,5,16,77777,9,999999999,11,0.06,0,88,0,0,1 -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,2.2,42,83100,0,0,310,0,0,0,0,0,0,0,40,9.3,1,0,16,77777,9,999999999,11,0.06,0,88,0,0,1 -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,5.6,74,83000,0,0,292,0,0,0,0,0,0,0,50,4.6,0,0,16,77777,9,999999999,12,0.06,0,88,0,0,1 -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,74,83000,0,0,289,0,0,0,0,0,0,0,280,1.5,0,0,16,77777,9,999999999,12,0.06,0,88,0,0,1 -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,82,82900,0,0,283,0,0,0,0,0,0,0,240,3.6,0,0,16,77777,9,999999999,12,0.06,0,88,0,0,1 -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,80,83000,0,0,285,0,0,0,0,0,0,0,250,2.1,0,0,16,6706,9,999999999,12,0.06,0,88,0,0,1 -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,1,0,16,77777,9,999999999,13,0.06,0,88,0,0,1 -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,3.9,93,82900,0,57,282,0,0,0,0,0,0,0,150,2.6,3,3,16,77777,9,999999999,13,0.06,0,88,0,0,1 -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,77777,9,999999999,13,0.06,0,88,0,0,1 -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,33533,29573,6699,2371,0,0,5,4,16,77777,9,999999999,13,0.06,0,88,0,0,1 -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,51375,43700,13594,5067,30,2.1,5,4,16,77777,9,999999999,14,0.06,0,88,0,0,1 -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,67144,92425,12911,1895,70,2.6,6,4,16,77777,9,999999999,14,0.06,0,88,0,0,1 -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,6.7,42,83100,925,1365,357,714,906,98,76018,92291,13695,2319,100,2.1,6,5,16,7315,9,999999999,14,0.06,0,88,0,0,1 -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,79599,90733,15112,2645,30,3.6,6,5,16,7315,9,999999999,15,0.06,0,88,0,0,1 -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,6.1,30,83600,966,1365,385,734,832,144,89396,55114,17611,7261,50,3.1,8,6,16,7315,9,999999999,16,0.06,0,88,0,0,1 -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,25,83700,881,1365,389,624,738,146,74997,49851,17620,7110,70,4.1,7,5,16,7315,9,999999999,17,0.06,0,88,0,0,1 -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,65062,49798,11445,4535,90,4.1,6,4,16,77777,9,999999999,18,0.06,0,88,0,0,1 -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,46610,42319,8168,3055,100,1.5,5,4,16,77777,9,999999999,19,0.06,0,88,0,0,1 -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,18818,56735,5450,771,110,2.6,6,5,16,77777,9,999999999,20,0.06,0,88,0,0,1 -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,662,6485,692,130,0,0,6,4,16,77777,9,999999999,21,0.06,0,88,0,0,1 -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,77777,9,999999999,22,0.06,0,88,0,0,1 -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,77777,9,999999999,23,0.06,0,88,0,0,1 -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,77777,9,999999999,24,0.06,0,88,0,0,1 -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,77777,9,999999999,25,0.06,0,88,0,0,1 -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,2,2,16,77777,9,999999999,26,0.06,0,88,0,0,1 -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,77777,9,999999999,25,0.06,0,88,0,0,1 -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,77777,9,999999999,24,0.06,0,88,0,0,1 -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,77777,9,999999999,23,0.06,0,88,0,0,1 -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,77777,9,999999999,22,0.06,0,88,0,0,1 -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,77777,9,999999999,21,0.06,0,88,0,0,1 -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,63,83000,0,0,299,0,0,0,0,0,0,0,210,5.7,0,0,16,77777,9,999999999,21,0.06,0,88,0,0,1 -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,77777,9,999999999,20,0.06,0,88,0,0,1 -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,59,83300,133,1366,319,0,0,0,0,0,0,0,360,3.1,4,4,16,77777,9,999999999,19,0.06,0,88,0,0,1 -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,17862,6609,14419,4319,300,2.1,6,6,16,3658,9,999999999,18,0.06,0,88,0,0,1 -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,51250,44954,16695,6004,210,2.1,3,3,16,77777,9,999999999,17,0.06,0,88,0,0,1 -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,67958,96420,11009,1804,120,2.1,5,5,16,77777,9,999999999,16,0.06,0,88,0,0,1 -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,74938,91321,13965,2309,60,4.6,4,4,16,77777,9,999999999,15,0.06,0,88,0,0,1 -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,91142,57534,20803,8473,130,3.6,5,5,16,6096,9,999999999,15,0.06,0,88,0,0,1 -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,71300,38294,36212,13292,30,3.1,8,7,16,6096,9,999999999,15,0.06,0,88,0,0,1 -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,29361,2349,27310,10335,10,13.4,8,7,16,3658,9,999999999,14,0.06,0,88,0,0,1 -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,44454,23329,27655,9500,30,13.4,9,9,16,3048,9,999999999,14,0.06,0,88,0,0,1 -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,35585,29798,15021,5187,40,7.2,9,9,16,3048,9,999999999,14,0.06,0,88,0,0,1 -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,6.7,58,83500,281,1366,346,150,466,54,17113,11389,6177,2043,30,9.3,8,8,16,3048,9,999999999,14,0.06,0,88,0,0,1 -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,490,0,367,115,70,4.1,6,6,16,6096,9,999999999,13,0.06,0,88,0,0,1 -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,6096,9,999999999,13,0.06,0,88,0,0,1 -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,6.1,77,83600,0,0,310,0,0,0,0,0,0,0,160,4.6,5,5,16,6096,9,999999999,13,0.06,0,88,0,0,1 -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,6.1,77,83500,0,0,329,0,0,0,0,0,0,0,170,4.6,9,9,16,6096,9,999999999,12,0.06,0,88,0,0,1 -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,6096,9,999999999,12,0.06,0,88,0,0,1 -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,6096,9,999999999,12,0.06,0,88,0,0,1 -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,2743,9,999999999,12,0.06,0,88,0,0,1 -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,63,83300,0,0,328,0,0,0,0,0,0,0,150,5.2,9,8,16,3048,9,999999999,12,0.061,0,88,0,0,1 -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,3048,9,999999999,12,0.061,0,88,0,0,1 -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,3048,9,999999999,12,0.061,0,88,0,0,1 -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,3048,9,999999999,12,0.061,0,88,0,0,1 -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,13,0.061,0,88,0,0,1 -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,7,100,83200,0,11,325,0,0,0,0,0,0,0,280,4.1,10,10,4.8,60,9,999999999,13,0.061,0,88,0,0,1 -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,13,0.061,0,88,0,0,1 -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,8528,0,8594,3260,280,4.1,10,10,4,61,9,999999999,13,0.061,0,88,0,0,1 -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,15770,0,15903,6307,270,4.1,10,10,3.2,183,9,999999999,13,0.061,0,88,0,0,1 -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,24376,453,24037,8940,280,4.6,10,10,9.6,244,9,999999999,13,0.061,0,88,0,0,1 -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,64292,33287,35031,12672,330,3.6,8,8,11.2,6096,9,999999999,13,0.061,0,88,0,0,1 -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,73249,39932,34061,12780,350,3.1,8,7,12.8,6096,9,999999999,14,0.061,0,88,0,0,1 -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,39340,5055,34730,12875,320,2.1,8,7,12.8,6096,9,999999999,14,0.061,0,88,0,0,1 -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,38364,4199,35193,12372,290,1.5,9,7,12.8,6096,9,999999999,15,0.061,0,88,0,0,1 -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,36038,10426,28950,9728,250,1.5,9,7,12.8,6096,9,999999999,15,0.061,0,88,0,0,1 -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,18644,2329,17271,5718,220,2.1,9,8,12.8,3353,9,999999999,16,0.061,0,88,0,0,1 -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,2554,0,2573,1089,190,5.2,7,7,12.8,3048,9,999999999,16,0.061,0,88,0,0,1 -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,8.3,64,83300,40,786,335,1,0,1,96,0,97,40,200,2.1,8,5,16,3658,9,999999999,17,0.061,0,88,0,0,1 -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,2896,9,999999999,17,0.061,0,88,0,0,1 -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,6096,9,999999999,18,0.061,0,88,0,0,1 -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,6096,9,999999999,18,0.061,0,88,0,0,1 -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,57,83200,0,0,353,0,0,0,0,0,0,0,270,3.1,10,10,16,6096,9,999999999,19,0.061,0,88,0,0,1 -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,3353,9,999999999,19,0.061,0,88,0,0,1 -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,19,0.061,0,88,0,0,1 -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,19,0.061,0,88,0,0,1 -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,8,100,83300,0,0,331,0,0,0,0,0,0,0,10,6.7,10,10,8.9,150,9,999999999,19,0.061,0,88,0,0,1 -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,20,0.061,0,88,0,0,1 -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,20,0.061,0,88,0,0,1 -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,20,0.061,0,88,0,0,1 -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,89,83500,0,0,306,0,0,0,0,0,0,0,50,4.6,8,8,11.2,213,9,999999999,20,0.061,0,88,0,0,1 -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,89,83600,124,1356,321,0,0,0,0,0,0,0,60,4.6,10,10,11.2,244,9,999999999,20,0.061,0,88,0,0,1 -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,4.4,96,83600,379,1368,313,47,0,47,4666,0,4702,1987,30,5.2,10,10,5.2,91,9,999999999,20,0.061,0,88,0,0,1 -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,4.4,96,83700,606,1368,313,81,0,81,8197,0,8266,3710,60,5.2,10,10,1.2,91,9,999999999,20,0.061,0,88,0,0.3,1 -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,11198,0,11298,5286,40,5.7,10,10,1.2,152,9,999999999,20,0.061,0,88,0,0,1 -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,4.4,96,83800,908,1368,313,130,0,130,13490,0,13615,6498,40,5.7,10,10,1.2,152,9,999999999,20,0.061,0,88,0,0,1 -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,13867,0,13997,6764,30,6.2,10,10,1.2,152,9,999999999,19,0.061,0,88,0,0,1 -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,17291,0,17452,8138,50,6.7,10,10,1.2,152,9,999999999,19,0.061,0,88,0,0,1 -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,26802,948,26008,9863,60,6.7,10,10,1.2,152,9,999999999,18,0.061,0,88,0,0,1 -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,21686,455,21443,7804,70,6.7,10,10,3.2,213,9,999999999,17,0.061,0,88,0,0,1 -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,14753,384,14585,5002,60,6.2,10,10,3.2,152,9,999999999,17,0.061,0,88,0,0,1 -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,5517,0,5557,2062,60,5.2,10,10,2.8,152,9,999999999,16,0.061,0,88,0,0,1 -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,100,83900,36,741,287,1,0,1,96,0,97,40,60,3.1,10,10,3.2,396,9,999999999,15,0.061,0,88,0,0,1 -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,14,0.061,0,88,0,0,1 -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,14,0.061,0,88,0,0,1 -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,13,0.061,0,88,0,0,1 -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,10,10,3.2,183,9,999999999,12,0.061,0,88,0,0,1 -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.6,95,84200,0,0,286,0,0,0,0,0,0,0,0,0,10,10,3.2,122,9,999999999,12,0.061,0,88,0,0,1 -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,10,10,3.2,122,9,999999999,11,0.061,0,88,0,0,1 -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,10,10,3.2,122,9,999999999,11,0.061,0,88,0,0,1 -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,10,10,3.2,122,9,999999999,11,0.061,0,88,0,0,1 -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,10,10,3.2,122,9,999999999,11,0.061,0,88,0,0,1 -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,10,10,3.2,122,9,999999999,10,0.061,0,88,0,0,1 -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,10,10,4.8,183,9,999999999,10,0.061,0,88,0,0,1 -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,10,10,4,305,9,999999999,10,0.061,0,88,0,0,1 -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,10,10,4,335,9,999999999,10,0.061,0,88,0,0,1 -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,10145,0,10222,3630,0,0,10,10,4,396,9,999999999,9,0.061,0,88,0,0,1 -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,17232,0,17375,6632,0,0,10,10,4,244,9,999999999,9,0.061,0,88,0,0,1 -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,21810,0,22003,8993,0,0,10,10,3.2,183,9,999999999,9,0.061,0,88,0,0,1 -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,24796,463,24446,9525,0,0,10,10,4,274,9,999999999,9,0.061,0,88,0,0,1 -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,96,84200,958,1369,289,194,0,194,20243,0,20432,9287,0,0,10,10,4,274,9,999999999,9,0.061,0,88,0,0,1 -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,92,84200,941,1369,291,160,0,160,16675,0,16830,7869,0,0,10,10,9.6,213,9,999999999,9,0.061,0,88,0,0,1 -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,15522,0,15662,7182,50,4.1,10,10,12.8,152,9,999999999,9,0.061,0,88,0,0,1 -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,15333,0,15465,6602,50,3.6,10,10,14.4,213,9,999999999,9,0.061,0,88,0,0.3,1 -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,10453,0,10537,4255,50,4.6,10,10,9.6,213,9,999999999,10,0.061,0,88,0,0,1 -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,4234,0,4264,1660,30,4.6,10,10,4.8,213,9,999999999,10,0.061,0,88,0,0,1 -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,152,9,999999999,10,0.061,0,88,0,0,1 -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,183,9,999999999,10,0.061,0,88,0,0,1 -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,10,0.061,0,88,0,0,1 -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,11,0.061,0,88,0,0,1 -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,11,0.061,0,88,0,0,1 -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,11,0.061,0,88,0,0,1 -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,11,0.061,0,88,0,0,1 -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,92,84500,0,0,291,0,0,0,0,0,0,0,150,2.6,10,10,14.4,1097,9,999999999,10,0.061,0,88,0,0,1 -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,92,84500,0,0,291,0,0,0,0,0,0,0,170,2.1,10,10,16,1097,9,999999999,10,0.061,0,88,0,0,1 -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,10,10,16,1219,9,999999999,10,0.061,0,88,0,0.7,1 -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,10,10,16,1341,9,999999999,9,0.061,0,88,0,0,1 -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,10,10,16,1280,9,999999999,9,0.061,0,88,0,0,1 -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,9,0.061,0,88,0,0,1 -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,1158,9,999999999,8,0.061,0,88,0,0,1 -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,7052,0,7105,2774,100,3.1,10,10,16,1158,9,999999999,8,0.061,0,88,0,0,1 -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,15186,0,15312,6048,110,2.6,10,10,16,1158,9,999999999,8,0.061,0,88,0,0,1 -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,19135,0,19303,8139,0,0,10,10,16,1219,9,999999999,8,0.061,0,88,0,0,1 -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,18701,0,18872,8502,110,2.6,10,10,16,1128,9,999999999,7,0.061,0,88,0,0,1 -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,-2.2,58,84800,952,1369,306,188,0,188,19619,0,19801,9029,80,2.6,10,10,16,1128,9,999999999,7,0.061,0,88,0,0,1 -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,-2.8,55,84700,935,1369,305,201,6,197,23846,456,23484,9311,0,0,10,10,16,1128,9,999999999,8,0.061,0,88,0,0,1 -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,16146,0,16292,7395,80,1.5,10,10,16,1128,9,999999999,8,0.061,0,88,0,0,1 -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,15943,0,16080,6773,80,4.1,10,10,16,1189,9,999999999,8,0.061,0,88,0,0,1 -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,-1.1,64,84700,495,1369,307,125,0,125,12562,0,12662,4847,80,3.6,10,10,16,1250,9,999999999,9,0.061,0,88,0,0,1 -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,-1.1,64,84600,252,1369,307,38,0,38,3741,0,3768,1487,100,3.6,10,10,16,1311,9,999999999,9,0.061,0,88,0,0,1 -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,1372,9,999999999,9,0.061,0,88,0,0,1 -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,76,84700,0,0,303,0,0,0,0,0,0,0,110,3.1,10,10,16,1433,9,999999999,10,0.061,0,88,0,0,1 -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,76,84700,0,0,303,0,0,0,0,0,0,0,180,2.6,10,10,16,1494,9,999999999,10,0.061,0,88,0,0,1 -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,1494,9,999999999,10,0.061,0,88,0,0,1 -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,77777,9,999999999,10,0.061,0,88,0,0,1 -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,77777,9,999999999,11,0.061,0,88,0,0,1 -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,1128,9,999999999,10,0.061,0,88,0,0,1 -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,1128,9,999999999,10,0.061,0,88,0,0,1 -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,1128,9,999999999,9,0.061,0,88,0,0,1 -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,1128,9,999999999,9,0.061,0,88,0,0,1 -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,1067,9,999999999,8,0.061,0,88,0,0,1 -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,1067,9,999999999,8,0.061,0,88,0,0,1 -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,1067,9,999999999,7,0.061,0,88,0,0,1 -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,1006,9,999999999,7,0.061,0,88,0,0,1 -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,20069,14114,12623,3834,170,6.2,4,4,16,77777,9,999999999,6,0.061,0,88,0,0,1 -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,-1.1,64,84500,591,1370,292,442,731,126,51085,48033,14619,5287,160,4.1,8,8,16,914,9,999999999,6,0.061,0,88,0,0,1 -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,65673,51312,21019,7911,210,3.1,5,5,16,77777,9,999999999,5,0.061,0,88,0,0,1 -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,56,84400,892,1370,308,708,918,108,87250,59080,13355,5480,160,3.1,8,8,16,975,9,999999999,5,0.061,0,88,0,0,1 -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,80339,96038,14546,2438,150,4.6,5,5,16,77777,9,999999999,5,0.061,0,88,0,0,1 -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,77925,94887,13933,2343,140,7.7,5,5,16,77777,9,999999999,6,0.061,0,88,0,0,1 -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,48,84500,842,1370,302,651,910,89,68823,91481,12667,2002,150,6.2,3,3,16,77777,9,999999999,6,0.061,0,88,0,0,1 -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,48,84500,692,1370,302,499,808,90,60375,48945,10922,4273,150,6.7,3,3,16,77777,9,999999999,7,0.061,0,88,0,0,1 -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,50,84500,488,1370,299,332,744,66,39514,36688,7875,2894,180,6.2,3,3,16,77777,9,999999999,7,0.061,0,88,0,0,1 -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,56,84200,245,1370,289,148,610,38,17180,8969,4420,1475,170,4.6,4,2,16,77777,9,999999999,8,0.061,0,88,0,0,1 -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,70,84300,26,628,267,0,0,0,0,0,0,0,160,5.7,0,0,16,77777,9,999999999,8,0.061,0,88,0,0,1 -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,82,84200,0,0,259,0,0,0,0,0,0,0,130,4.1,0,0,16,77777,9,999999999,9,0.061,0,88,0,0,1 -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,77777,9,999999999,9,0.061,0,88,0,0,1 -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,77777,9,999999999,10,0.061,0,88,0,0,1 -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,82,84000,0,0,270,0,0,0,0,0,0,0,180,5.7,4,3,16,77777,9,999999999,10,0.061,0,88,0,0,1 -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,85,84100,0,0,265,0,0,0,0,0,0,0,190,5.7,4,2,16,77777,9,999999999,11,0.061,0,88,0,0,1 -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,77777,9,999999999,10,0.061,0,88,0,0,1 -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,88,83800,0,0,255,0,0,0,0,0,0,0,190,5.2,0,0,16,77777,9,999999999,10,0.061,0,88,0,0,1 -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,77777,9,999999999,10,0.061,0,88,0,0,1 -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,77777,9,999999999,10,0.061,0,88,0,0,1 -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,-1.7,87,83600,0,0,247,0,0,0,0,0,0,0,0,0,0,0,16,77777,9,999999999,9,0.061,0,88,0,0,1 -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,-1.1,91,83900,0,0,247,0,0,0,0,0,0,0,200,2.6,0,0,16,77777,9,999999999,9,0.061,0,88,0,0,1 -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,-1.7,87,83600,0,0,247,0,0,0,0,0,0,0,210,3.1,0,0,16,77777,9,999999999,9,0.061,0,88,0,0,1 -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,77777,9,999999999,9,0.061,0,88,0,0,1 -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,79,83900,360,1371,261,246,730,54,28762,25988,6328,2201,260,1.5,0,0,16,77777,9,999999999,8,0.061,0,88,0,0,1 -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,47249,86306,9505,1359,0,0,0,0,16,77777,9,999999999,8,0.061,0,88,0,0,1 -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,62752,90885,12020,1776,30,1.5,0,0,16,77777,9,999999999,8,0.061,0,88,0,0,1 -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,78244,52768,16172,6564,60,2.1,3,3,16,77777,9,999999999,8,0.061,0,88,0,0,1 -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,85988,55141,15739,6483,90,2.1,3,3,16,77777,9,999999999,8,0.061,0,88,0,0,1 -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,85493,55772,15245,6267,90,3.6,3,3,16,77777,9,999999999,9,0.061,0,88,0,0,1 -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,68888,92132,12819,1988,80,4.1,3,3,16,77777,9,999999999,10,0.061,0,88,0,0,1 -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,30,84000,685,1371,334,527,919,66,56145,91039,9789,1536,90,4.6,3,3,16,77777,9,999999999,10,0.061,0,88,0,0,1 -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,36380,77220,8165,1159,70,4.1,3,3,16,77777,9,999999999,11,0.061,0,88,0,0,1 -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,16661,6613,3761,1266,10,2.1,3,3,16,77777,9,999999999,12,0.061,0,88,0,0,1 -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,77777,9,999999999,13,0.061,0,88,0,0,1 -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.6,52,83600,0,0,300,0,0,0,0,0,0,0,60,1.5,3,3,16,77777,9,999999999,13,0.061,0,88,0,0,1 -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,77777,9,999999999,14,0.061,0,88,0,0,1 -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,77777,9,999999999,15,0.061,0,88,0,0,1 -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,77777,9,999999999,16,0.061,0,88,0,0,1 -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,77777,9,999999999,16,0.061,0,88,0,0,1 -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,77777,9,999999999,16,0.061,0,88,0,0,1 -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,77777,9,999999999,16,0.061,0,88,0,0,1 -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,85,82800,0,0,256,0,0,0,0,0,0,0,200,3.1,0,0,16,77777,9,999999999,15,0.061,0,88,0,0,1 -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,77777,9,999999999,15,0.061,0,88,0,0,1 -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,77777,9,999999999,14,0.061,0,88,0,0,1 -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,67,83000,0,0,269,0,0,0,0,0,0,0,200,3.6,0,0,16,77777,9,999999999,14,0.061,0,88,0,0,1 -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,77777,9,999999999,13,0.061,0,88,0,0,1 -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,77777,9,999999999,13,0.061,0,88,0,0,1 -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,29781,30430,8975,2959,250,1.5,0,0,16,77777,9,999999999,13,0.061,0,88,0,0,1 -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,52030,46671,9911,3730,220,1.5,0,0,16,77777,9,999999999,12,0.061,0,88,0,0,1 -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,2.2,42,83400,760,1372,323,585,847,114,70249,54448,13738,5419,180,1.5,3,3,16,77777,9,999999999,12,0.061,0,88,0,0,1 -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,74223,97836,10448,1938,150,2.6,3,3,16,77777,9,999999999,11,0.061,0,88,0,0,1 -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,77801,96265,11816,2212,110,2.1,3,3,16,77777,9,999999999,12,0.061,0,88,0,0,1 -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,78521,99343,11451,2128,80,3.6,3,3,16,77777,9,999999999,12,0.061,0,88,0,0,1 -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,68622,92511,12965,1973,100,4.6,4,4,16,77777,9,999999999,12,0.061,0,88,0,0,1 -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,21,83400,678,1372,365,498,837,83,60470,49524,10107,3949,100,5.2,6,5,16,77777,9,999999999,13,0.061,0,88,0,0,1 -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,23,83300,474,1372,357,325,760,61,38790,35938,7297,2677,140,8.8,4,4,16,77777,9,999999999,13,0.061,0,88,0,0,1 -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,13752,46689,4690,648,150,8.8,5,5,16,77777,9,999999999,13,0.061,0,88,0,0,1 -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,77777,9,999999999,13,0.061,0,88,0,0,1 -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,77777,9,999999999,14,0.061,0,88,0,0,1 -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,77777,9,999999999,14,0.061,0,88,0,0,1 -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,77777,9,999999999,14,0.061,0,88,0,0,1 -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,2.8,61,82700,0,0,302,0,0,0,0,0,0,0,160,7.2,3,3,16,77777,9,999999999,15,0.061,0,88,0,0,1 -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,77777,9,999999999,15,0.061,0,88,0,0,1 -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,77777,9,999999999,15,0.061,0,88,0,0,1 -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,77777,9,999999999,15,0.061,0,88,0,0,1 -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,77777,9,999999999,14,0.061,0,88,0,0,1 -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,40,82800,0,0,300,0,0,0,0,0,0,0,210,7.2,0,0,16,77777,9,999999999,14,0.061,0,88,0,0,1 -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,77777,9,999999999,14,0.061,0,88,0,0,1 -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,2.2,82,82900,0,0,269,0,0,0,0,0,0,0,280,1.5,0,0,16,77777,9,999999999,14,0.061,0,88,0,0,1 -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,77777,9,999999999,14,0.061,0,88,0,0,1 -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,77777,9,999999999,14,0.061,0,88,0,0,1 -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,25552,23344,8430,2802,310,3.6,3,3,16,77777,9,999999999,14,0.061,0,88,0,0,1 -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,50735,44438,9119,3445,340,1.5,3,3,16,77777,9,999999999,13,0.061,0,88,0,0,1 -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,43,83300,755,1373,339,579,884,91,70592,52746,11129,4439,10,3.1,3,3,16,77777,9,999999999,13,0.061,0,88,0,0,1 -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,80341,54616,12857,5262,150,7.2,3,3,16,77777,9,999999999,13,0.061,0,88,0,0,1 -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,85476,55555,14915,6141,150,8.8,3,3,16,77777,9,999999999,13,0.061,0,88,0,0,1 -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,1.1,21,83300,910,1373,369,703,927,86,74506,93735,12129,2164,140,7.7,3,3,16,77777,9,999999999,13,0.061,0,88,0,0,1 -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,64501,88164,11490,1890,190,7.2,3,3,16,77777,9,999999999,13,0.061,0,88,0,0,1 -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,61387,51185,9648,3766,190,8.8,3,3,16,77777,9,999999999,13,0.061,0,88,0,0,1 -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,38137,35842,7069,2587,200,7.7,3,3,16,77777,9,999999999,13,0.061,0,88,0,0,1 -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,14317,4212,3526,1180,180,8.2,8,8,16,7620,9,999999999,13,0.061,0,88,0,0,1 -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,7620,9,999999999,13,0.061,0,88,0,0,1 -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,6096,9,999999999,12,0.061,0,88,0,0,1 -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,-1.1,24,83300,0,0,345,0,0,0,0,0,0,0,200,7.7,8,4,16,6096,9,999999999,12,0.061,0,88,0,0,1 -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,5486,9,999999999,12,0.061,0,88,0,0,1 -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,6096,9,999999999,12,0.061,0,88,0,0,1 -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,6096,9,999999999,12,0.061,0,88,0,0,1 -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,6096,9,999999999,12,0.061,0,88,0,0,1 -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,2.8,61,82800,0,0,305,0,0,0,0,0,0,0,80,2.6,10,4,16,6096,9,999999999,12,0.061,0,88,0,0,1 -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,6096,9,999999999,12,0.061,0,88,0,0,1 -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,2.8,61,82900,0,0,305,0,0,0,0,0,0,0,350,2.6,7,4,16,6096,9,999999999,12,0.061,0,88,0,0,1 -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,6096,9,999999999,12,0.061,0,88,0,0,1 -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,6096,9,999999999,12,0.061,0,88,0,0,1 -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,77777,9,999999999,12,0.061,0,88,0,0,1 -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,2.8,61,83100,95,1202,302,0,0,0,0,0,0,0,210,1.5,3,3,16,77777,9,999999999,11,0.061,0,88,0,0,1 -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,28857,29874,9878,3154,270,2.6,3,3,16,77777,9,999999999,11,0.061,0,88,0,0,1 -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,44484,40305,15921,5590,260,2.1,3,3,16,77777,9,999999999,11,0.061,0,88,0,0,1 -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,69618,54327,13151,5184,320,1.5,3,3,16,77777,9,999999999,11,0.061,0,88,0,0,1 -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,82600,55967,12721,5204,330,2.6,3,3,16,77777,9,999999999,11,0.061,0,88,0,0,1 -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,78132,95617,14358,2321,340,2.6,3,3,16,77777,9,999999999,11,0.061,0,88,0,0,1 -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,75093,93850,13609,2227,50,5.7,3,3,16,77777,9,999999999,11,0.061,0,88,0,0,1 -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,67056,92124,12326,1913,60,4.6,3,3,16,77777,9,999999999,11,0.061,0,88,0,0,1 -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,60326,49605,9737,3795,60,5.7,3,3,16,77777,9,999999999,10,0.061,0,88,0,0,1 -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,36488,33726,7600,2762,50,6.7,4,4,16,77777,9,999999999,10,0.061,0,88,0,0,1 -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,13680,2739,3513,1171,360,6.2,5,5,16,77777,9,999999999,10,0.061,0,88,0,0,1 -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,2,41,83200,16,492,328,0,0,0,0,0,0,0,280,6.2,5,5,16.1,77777,9,999999999,10,0.061,0,88,0,0,1 -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,77777,9,999999999,10,0.061,0,88,0,0,1 -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,77777,9,999999999,10,0.061,0,88,0,0,1 -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,77777,9,999999999,10,0.061,0,88,0,0,1 -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,77777,9,999999999,9,0.061,0,88,0,0,1 -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,2,2,16,77777,9,999999999,9,0.061,0,88,0,0,1 -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,77777,9,999999999,10,0.061,0,88,0,0,1 -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,85,82900,0,0,270,0,0,0,0,0,0,0,130,3.1,4,4,16,77777,9,999999999,10,0.061,0,88,0,0,1 -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,77777,9,999999999,10,0.061,0,88,0,0,1 -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,77777,9,999999999,11,0.061,0,88,0,0,1 -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,77777,9,999999999,11,0.061,0,88,0,0,1 -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,77777,9,999999999,11,0.061,0,88,0,0,1 -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,77777,9,999999999,12,0.061,0,88,0,0,1 -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,77777,9,999999999,12,0.061,0,88,0,0,1 -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,11568,346,11504,3484,180,3.1,4,4,16,77777,9,999999999,12,0.061,0,88,0,0,1 -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,35749,24559,21311,6853,170,3.1,3,3,16,7620,9,999999999,13,0.061,0,88,0,0,1 -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,59542,45642,23775,8583,120,4.6,3,3,16,77777,9,999999999,13,0.061,0,88,0,0,1 -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,78308,55988,17580,7030,130,5.2,3,3,16,77777,9,999999999,13,0.061,0,88,0,0,1 -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,73995,49185,25497,9897,250,3.6,6,6,16,4572,9,999999999,13,0.061,0,88,0,0,1 -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,62104,33830,34105,12269,260,3.1,5,5,16,77777,9,999999999,13,0.061,0,88,0,0,1 -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,72828,55907,16568,6539,280,2.6,3,3,16,77777,9,999999999,12,0.061,0,88,0,0,1 -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,60504,52192,9521,3697,290,2.1,4,4,16,77777,9,999999999,12,0.061,0,88,0,0,1 -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,37314,36096,6832,2487,310,3.6,4,4,16,77777,9,999999999,12,0.061,0,88,0,0,1 -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,12257,44354,4378,602,350,2.1,8,8,16,7620,9,999999999,11,0.061,0,88,0,0,1 -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,7620,9,999999999,11,0.061,0,88,0,0,1 -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,7620,9,999999999,11,0.061,0,88,0,0,1 -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,62,83300,0,0,288,0,0,0,0,0,0,0,140,1.5,4,4,16,77777,9,999999999,10,0.061,0,88,0,0,1 -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,67,83300,0,0,285,0,0,0,0,0,0,0,140,2.1,5,5,16,77777,9,999999999,10,0.061,0,88,0,0,1 -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,-1.1,64,83200,0,0,275,0,0,0,0,0,0,0,160,4.1,2,2,16,77777,9,999999999,10,0.061,0,88,0,0,1 -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,77777,9,999999999,9,0.061,0,88,0,0,1 -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,-1.1,64,83200,0,0,278,0,0,0,0,0,0,0,240,3.1,3,3,16,77777,9,999999999,9,0.061,0,88,0,0,1 -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,77777,9,999999999,9,0.061,0,88,0,0,1 -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,77777,9,999999999,9,0.061,0,88,0,0,1 -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,77777,9,999999999,8,0.061,0,88,0,0,1 -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,-4.4,48,83300,0,0,274,0,0,0,0,0,0,0,310,2.6,3,3,16,77777,9,999999999,8,0.061,0,88,0,0,1 -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,77777,9,999999999,8,0.061,0,88,0,0,1 -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,77777,9,999999999,8,0.061,0,88,0,0,1 -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,77777,9,999999999,8,0.061,0,88,0,0,1 -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,56,83800,336,1375,292,236,718,60,27165,25040,6925,2342,120,3.6,3,3,16,77777,9,999999999,7,0.061,0,88,0,0,1 -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,-1.1,45,83900,560,1375,298,391,703,104,45575,42609,12164,4434,110,5.7,3,3,16,77777,9,999999999,7,0.061,0,88,0,0,1 -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,59587,47233,20573,7631,90,4.6,4,4,16,77777,9,999999999,7,0.061,0,88,0,0,1 -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,75343,54048,17346,6929,120,6.2,4,4,16,6706,9,999999999,7,0.061,0,88,0,0,1 -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,74077,49790,21621,8580,110,2.6,4,3,16,77777,9,999999999,7,0.061,0,88,0,0,1 -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,-5,24,83800,891,1375,327,638,658,210,74797,51888,24742,9561,100,3.6,8,7,16,77777,9,999999999,7,0.061,0,88,0,0,1 -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,24,83800,803,1375,336,431,291,260,48967,25427,29703,10495,80,2.6,10,9,16,3048,9,999999999,8,0.061,0,88,0,0,1 -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,28477,6336,24455,8169,180,5.7,9,9,16,2438,9,999999999,8,0.061,0,88,0,0,1 -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,6609,0,6661,2806,290,5.7,9,8,16,2134,9,999999999,9,0.061,0,88,0,0,1 -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,1962,0,1976,810,260,2.6,7,7,16,2743,9,999999999,9,0.061,0,88,0,0,1 -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,-1.1,45,83900,11,424,314,0,0,0,0,0,0,0,360,4.6,8,8,16,3048,9,999999999,10,0.061,0,88,0,0,1 -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,3048,9,999999999,10,0.061,0,88,0,0,1 -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,3048,9,999999999,11,0.061,0,88,0,0,1 -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,8,8,16,3048,9,999999999,11,0.061,0,88,0,0,1 -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,10,9,16,3353,9,999999999,11,0.061,0,88,0,0,1 -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,3048,9,999999999,12,0.061,0,88,0,0,1 -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,6096,9,999999999,12,0.061,0,88,0,0,1 -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,6096,9,999999999,11,0.061,0,88,0,0,1 -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,77777,9,999999999,11,0.061,0,88,0,0,1 -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,77777,9,999999999,11,0.061,0,88,0,0,1 -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,3,3,16,77777,9,999999999,11,0.061,0,88,0,0,1 -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,77777,9,999999999,11,0.061,0,88,0,0,1 -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,16,77777,9,999999999,10,0.061,0,88,0,0,1 -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,77777,9,999999999,10,0.061,0,88,0,0,1 -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,24108,22767,8288,2706,220,3.1,0,0,16,77777,9,999999999,10,0.061,0,88,0,0,1 -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.6,47,83900,555,1376,286,398,759,91,46819,43732,10738,3960,210,4.1,0,0,16,77777,9,999999999,10,0.061,0,88,0,0,1 -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,61129,49516,20120,7471,230,2.6,0,0,16,77777,9,999999999,10,0.061,0,88,0,0,1 -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,69974,91585,13859,2050,250,2.6,0,0,16,77777,9,999999999,9,0.061,0,88,0,0,1 -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,-1.7,31,83900,904,1376,319,708,932,94,74602,93861,13206,2202,270,2.1,3,3,16,77777,9,999999999,10,0.061,0,88,0,0,1 -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,82748,56831,13571,5552,290,2.6,4,3,16,77777,9,999999999,10,0.061,0,88,0,0,1 -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,64330,90489,12090,1853,40,4.1,3,3,16,77777,9,999999999,11,0.061,0,88,0,0,1 -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,28,84000,645,1376,339,474,800,98,56465,48908,11712,4475,90,5.7,3,3,16,77777,9,999999999,11,0.061,0,88,0,0,1 -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,32975,30671,7674,2756,140,5.7,5,5,16,77777,9,999999999,12,0.061,0,88,0,0,1 -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,34,83400,197,1376,329,101,485,31,11684,819,3593,1175,190,5.2,8,5,16,77777,9,999999999,12,0.061,0,88,0,0,1 -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,77777,9,999999999,13,0.061,0,88,0,0,1 -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,77777,9,999999999,13,0.061,0,88,0,0,1 -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,77777,9,999999999,14,0.061,0,88,0,0,1 -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,77777,9,999999999,14,0.061,0,88,0,0,1 -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,77777,9,999999999,15,0.061,0,88,0,0,1 -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,77777,9,999999999,15,0.061,0,88,0,0,1 -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,77777,9,999999999,15,0.061,0,88,0,0,1 -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,77777,9,999999999,14,0.06,0,88,0,0,1 -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,77777,9,999999999,13,0.06,0,88,0,0,1 -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,77777,9,999999999,13,0.06,0,88,0,0,1 -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,77777,9,999999999,12,0.06,0,88,0,0,1 -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.6,73,83600,0,0,268,0,0,0,0,0,0,0,220,5.2,0,0,16,77777,9,999999999,12,0.06,0,88,0,0,1 -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,79,83500,0,0,261,0,0,0,0,0,0,0,270,3.6,0,0,16,77777,9,999999999,11,0.06,0,88,0,0,1 -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,77777,9,999999999,11,0.06,0,88,0,0,1 -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,22463,19891,7852,2579,210,3.6,0,0,16,77777,9,999999999,10,0.06,0,88,0,0,1 -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,44,84000,550,1377,294,392,784,78,46606,42754,9299,3464,70,2.6,0,0,16,77777,9,999999999,10,0.06,0,88,0,0,1 -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,40,84100,728,1377,300,554,854,102,66735,53697,12327,4837,0,0,0,0,16,77777,9,999999999,9,0.06,0,88,0,0,1 -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,70775,93406,13741,2028,120,3.6,0,0,16,77777,9,999999999,8,0.06,0,88,0,0,1 -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,74528,97028,10414,1971,110,4.6,1,0,16,77777,9,999999999,9,0.06,0,88,0,0,1 -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,70786,90118,13793,2139,100,4.1,0,0,16,77777,9,999999999,9,0.06,0,88,0,0,1 -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,68103,51325,13375,5333,110,3.6,0,0,16,77777,9,999999999,9,0.06,0,88,0,0,1 -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,55337,50023,14444,5376,140,4.6,0,0,16,77777,9,999999999,9,0.06,0,88,0,0,1 -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,28648,26454,12567,4158,130,4.1,0,0,16,77777,9,999999999,10,0.06,0,88,0,0,1 -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,-3.3,27,83700,191,1377,314,91,406,35,10403,1350,4010,1284,110,3.6,4,2,16,77777,9,999999999,10,0.06,0,88,0,0,1 -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,77777,9,999999999,10,0.06,0,88,0,0,1 -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,77777,9,999999999,11,0.06,0,88,0,0,1 -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,77777,9,999999999,11,0.06,0,88,0,0,1 -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,77777,9,999999999,11,0.06,0,88,0,0,1 -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,16,77777,9,999999999,11,0.06,0,88,0,0,1 -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,-1.7,61,83900,0,0,265,0,0,0,0,0,0,0,290,3.1,0,0,16,77777,9,999999999,12,0.06,0,88,0,0,1 -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,77777,9,999999999,11,0.06,0,88,0,0,1 -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,77777,9,999999999,11,0.06,0,88,0,0,1 -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,77777,9,999999999,11,0.06,0,88,0,0,1 -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,77777,9,999999999,10,0.06,0,88,0,0,1 -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,77777,9,999999999,10,0.06,0,88,0,0,1 -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,77777,9,999999999,9,0.06,0,88,0,0,1 -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,77777,9,999999999,9,0.06,0,88,0,0,1 -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,77777,9,999999999,9,0.06,0,88,0,0,1 -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,26659,24376,6682,2242,220,5.2,0,0,16,77777,9,999999999,8,0.06,0,88,0,0,1 -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,42512,81817,9266,1280,240,3.6,0,0,16,77777,9,999999999,8,0.06,0,88,0,0,1 -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,65557,52965,11648,4575,300,3.1,0,0,16,77777,9,999999999,8,0.06,0,88,0,0,1 -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,34,84200,841,1377,310,628,822,125,75895,54820,15163,6090,350,2.6,0,0,16,77777,9,999999999,7,0.06,0,88,0,0,1 -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,73011,92907,13110,2153,40,4.1,0,0,16,77777,9,999999999,8,0.06,0,88,0,0,1 -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,71333,93988,11405,1996,50,3.1,0,0,16,77777,9,999999999,8,0.06,0,88,0,0,1 -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,69592,51825,11429,4585,50,3.1,0,0,16,77777,9,999999999,9,0.06,0,88,0,0,1 -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,-2.2,22,84700,632,1377,327,467,852,75,56658,48806,9123,3519,60,3.1,0,0,16,77777,9,999999999,9,0.06,0,88,0,0,1 -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,34270,32209,6559,2364,90,2.6,0,0,16,77777,9,999999999,10,0.06,0,88,0,0,1 -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,10278,444,3891,1242,110,2.1,0,0,16,77777,9,999999999,10,0.06,0,88,0,0,1 -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,77777,9,999999999,10,0.06,0,88,0,0,1 -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,77777,9,999999999,11,0.06,0,88,0,0,1 -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,77777,9,999999999,11,0.06,0,88,0,0,1 -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,77777,9,999999999,12,0.06,0,88,0,0,1 -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,-2.8,55,83900,0,0,264,0,0,0,0,0,0,0,160,3.6,0,0,16,77777,9,999999999,12,0.06,0,88,0,0,1 -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,56,84000,0,0,280,0,0,0,0,0,0,0,200,5.2,0,0,16,77777,9,999999999,13,0.06,0,88,0,0,1 -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,77777,9,999999999,12,0.06,0,88,0,0,1 -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,77777,9,999999999,12,0.06,0,88,0,0,1 -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,58,83900,0,0,278,0,0,0,0,0,0,0,210,6.2,0,0,16,77777,9,999999999,11,0.06,0,88,0,0,1 -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,56,83900,0,0,280,0,0,0,0,0,0,0,200,6.2,0,0,16,77777,9,999999999,11,0.06,0,88,0,0,1 -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,58,83900,0,0,278,0,0,0,0,0,0,0,200,5.7,0,0,16,77777,9,999999999,10,0.06,0,88,0,0,1 -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,77777,9,999999999,9,0.06,0,88,0,0,1 -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,77777,9,999999999,9,0.06,0,88,0,0,1 -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,77777,9,999999999,8,0.06,0,88,0,0,1 -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,22780,19916,7196,2377,210,5.2,0,0,16,77777,9,999999999,8,0.06,0,88,0,0,1 -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,-1.1,33,84300,539,1378,306,400,841,70,47857,44315,8396,3133,230,4.1,0,0,16,77777,9,999999999,7,0.06,0,88,0,0,1 -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,59558,49241,20059,7377,210,3.6,0,0,16,77777,9,999999999,7,0.06,0,88,0,0,1 -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,75272,54979,14818,5947,240,3.1,0,0,16,77777,9,999999999,6,0.06,0,88,0,0,1 -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,71867,91721,13379,2144,240,2.1,0,0,16,77777,9,999999999,6,0.06,0,88,0,0,1 -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,69293,89185,13953,2097,180,2.1,0,0,16,77777,9,999999999,7,0.06,0,88,0,0,1 -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,-8.3,10,84300,777,1378,342,596,909,82,62686,90289,11847,1796,130,1.5,0,0,16,77777,9,999999999,7,0.06,0,88,0,0,1 -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,48694,84008,10151,1446,70,3.6,0,0,16,77777,9,999999999,8,0.06,0,88,0,0,1 -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,34218,32767,6332,2278,120,2.1,0,0,16,77777,9,999999999,8,0.06,0,88,0,0,1 -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,10299,0,3246,1052,80,2.6,0,0,16,77777,9,999999999,9,0.06,0,88,0,0,1 -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,77777,9,999999999,9,0.06,0,88,0,0,1 -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,77777,9,999999999,10,0.06,0,88,0,0,1 -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,77777,9,999999999,10,0.06,0,88,0,0,1 -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,77777,9,999999999,11,0.06,0,88,0,0,1 -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,77777,9,999999999,11,0.06,0,88,0,0,1 -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,77777,9,999999999,11,0.06,0,88,0,0,1 -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,77777,9,999999999,11,0.06,0,88,0,0,1 -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,77777,9,999999999,11,0.059,0,88,0,0,1 -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,77777,9,999999999,11,0.059,0,88,0,0,1 -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,35,83400,0,0,277,0,0,0,0,0,0,0,220,5.2,0,0,16,77777,9,999999999,11,0.059,0,88,0,0,1 -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,31,83400,0,0,284,0,0,0,0,0,0,0,220,4.1,0,0,16,77777,9,999999999,11,0.059,0,88,0,0,1 -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,77777,9,999999999,11,0.059,0,88,0,0,1 -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,77777,9,999999999,11,0.059,0,88,0,0,1 -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,1072,0,834,264,200,6.7,3,2,16,77777,9,999999999,10,0.059,0,88,0,0,1 -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,14701,7318,10905,3204,220,5.7,3,2,16,77777,9,999999999,10,0.059,0,88,0,0,1 -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,45430,45802,15813,5390,210,5.7,0,0,16,77777,9,999999999,10,0.059,0,88,0,0,1 -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,-3.9,19,84000,711,1379,331,504,647,169,58246,48289,19618,7219,180,2.1,1,1,16,77777,9,999999999,10,0.059,0,88,0,0,1 -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,67878,91134,13642,1968,140,1.5,3,3,16,77777,9,999999999,10,0.059,0,88,0,0,1 -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,15,84000,880,1379,351,672,902,95,70570,90437,13393,2123,90,2.6,5,4,16,7620,9,999999999,11,0.059,0,88,0,0,1 -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,72453,52189,21337,8324,50,3.6,4,4,16,7620,9,999999999,12,0.059,0,88,0,0,1 -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,15,83900,771,1379,353,544,778,108,65809,50860,13109,5197,90,4.6,5,5,16,7620,9,999999999,13,0.059,0,88,0,0,1 -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,15,83900,619,1379,354,406,552,158,46385,40298,18130,6404,70,5.7,6,6,16,7620,9,999999999,14,0.059,0,88,0,0,1 -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,15,83800,414,1379,354,126,34,115,14098,2003,12918,4154,90,6.2,7,6,16,7620,9,999999999,15,0.059,0,88,0,0,1 -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,5691,262,4700,1421,80,4.1,8,8,16,7620,9,999999999,16,0.059,0,88,0,0,1 -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,3658,9,999999999,17,0.059,0,88,0,0,1 -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,-3.9,26,83700,0,0,328,0,0,0,0,0,0,0,120,3.1,7,7,16,3658,9,999999999,19,0.059,0,88,0,0,1 -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,3658,9,999999999,20,0.059,0,88,0,0,1 -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,3658,9,999999999,21,0.059,0,88,0,0,1 -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,3658,9,999999999,22,0.059,0,88,0,0,1 -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,3658,9,999999999,23,0.059,0,88,0,0,1 -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,-3.9,36,83600,0,0,311,0,0,0,0,0,0,0,50,3.6,8,8,16,3048,9,999999999,22,0.059,0,88,0,0,1 -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,3048,9,999999999,21,0.059,0,88,0,0,1 -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,77777,9,999999999,20,0.059,0,88,0,0,1 -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,77777,9,999999999,19,0.059,0,88,0,0,1 -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,77777,9,999999999,18,0.059,0,88,0,0,1 -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,77777,9,999999999,17,0.059,0,88,0,0,1 -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,16,77777,9,999999999,16,0.059,0,88,0,0,1 -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,1335,12367,529,111,260,2.1,0,0,16,77777,9,999999999,15,0.059,0,88,0,0,1 -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,54,83900,305,1380,282,203,670,54,23338,19502,6224,2082,0,0,0,0,16,77777,9,999999999,14,0.059,0,88,0,0,1 -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,48,84000,529,1380,289,374,755,83,44045,41311,9804,3597,40,1.5,0,0,16,77777,9,999999999,13,0.059,0,88,0,0,1 -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,43,84000,705,1380,296,536,891,79,56808,88293,11581,1624,70,1.5,0,0,16,77777,9,999999999,12,0.059,0,88,0,0,1 -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,38,84000,823,1380,316,628,925,75,66723,92915,10825,1834,90,2.6,3,3,16,77777,9,999999999,11,0.059,0,88,0,0,1 -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,70372,90860,13151,2093,100,4.1,3,3,16,77777,9,999999999,11,0.059,0,88,0,0,1 -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,30,84000,854,1380,334,678,963,81,71880,96920,11580,1958,110,4.1,3,3,16,77777,9,999999999,11,0.059,0,88,0,0,1 -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,28,84000,764,1380,339,584,939,62,62376,93939,9124,1598,100,5.7,3,3,16,77777,9,999999999,11,0.059,0,88,0,0,1 -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.6,25,83900,612,1380,343,455,857,73,55080,47914,8860,3397,110,6.7,3,3,16,77777,9,999999999,11,0.059,0,88,0,0,1 -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,31154,29489,7071,2507,120,9.8,3,3,16,77777,9,999999999,11,0.059,0,88,0,0,1 -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,9855,0,3330,1061,140,6.7,2,2,16,77777,9,999999999,11,0.059,0,88,0,0,1 -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,77777,9,999999999,11,0.059,0,88,0,0,1 -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,77777,9,999999999,11,0.059,0,88,0,0,1 -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,77777,9,999999999,11,0.059,0,88,0,0,1 -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,77777,9,999999999,12,0.059,0,88,0,0,1 -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,77777,9,999999999,12,0.059,0,88,0,0,1 -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,77777,9,999999999,12,0.059,0,88,0,0,1 -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,77777,9,999999999,12,0.059,0,88,0,0,1 -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,77777,9,999999999,11,0.059,0,88,0,0,1 -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,77777,9,999999999,11,0.059,0,88,0,0,1 -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,77777,9,999999999,11,0.059,0,88,0,0,1 -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,77777,9,999999999,11,0.059,0,88,0,0,1 -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,77777,9,999999999,11,0.059,0,88,0,0,1 -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,70,82700,0,0,267,0,0,0,0,0,0,0,260,3.6,0,0,16,77777,9,999999999,11,0.059,0,88,0,0,1 -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,70,82800,62,978,267,10,159,4,1103,8501,696,137,260,2.1,0,0,16,77777,9,999999999,11,0.059,0,88,0,0,1 -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,20764,18802,9026,2783,270,3.1,0,0,16,77777,9,999999999,11,0.059,0,88,0,0,1 -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,41440,39747,12593,4460,260,3.1,0,0,16,77777,9,999999999,11,0.059,0,88,0,0,1 -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,32,83300,700,1381,315,504,794,101,60442,49540,12152,4722,270,2.6,0,0,16,77777,9,999999999,11,0.059,0,88,0,0,1 -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,-1.1,24,82800,817,1381,342,585,732,150,69457,51666,17883,7015,320,1.5,3,3,16,77777,9,999999999,11,0.059,0,88,0,0,1 -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,80874,57348,15113,6116,10,4.1,3,3,16,77777,9,999999999,11,0.059,0,88,0,0,1 -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,67941,90684,12400,1986,350,5.7,3,3,16,77777,9,999999999,11,0.059,0,88,0,0,1 -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,58796,86931,10793,1706,350,4.1,3,3,16,77777,9,999999999,11,0.059,0,88,0,0,1 -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,52375,46106,8629,3302,340,2.6,5,5,16,77777,9,999999999,11,0.059,0,88,0,0,1 -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,17,83100,401,1381,349,245,489,102,27582,26702,11526,3766,160,7.7,6,6,16,77777,9,999999999,11,0.059,0,88,0,0,1 -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,4692,0,4257,1288,150,9.3,9,8,16,6096,9,999999999,11,0.059,0,88,0,0,1 -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,6096,9,999999999,11,0.059,0,88,0,0,1 -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,6096,9,999999999,11,0.059,0,88,0,0,1 -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,6096,9,999999999,11,0.059,0,88,0,0,1 -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,3353,9,999999999,12,0.059,0,88,0,0,1 -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,3353,9,999999999,12,0.059,0,88,0,0,1 -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,6096,9,999999999,12,0.059,0,88,0,0,1 -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,6.1,77,82700,0,0,308,0,0,0,0,0,0,0,140,3.1,5,4,16,77777,9,999999999,12,0.059,0,88,0,0,1 -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,77777,9,999999999,13,0.058,0,88,0,0,1 -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,77777,9,999999999,13,0.058,0,88,0,0,1 -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,6096,9,999999999,14,0.058,0,88,0,0,1 -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,6096,9,999999999,14,0.058,0,88,0,0,1 -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,3658,9,999999999,15,0.058,0,88,0,0,1 -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,3.9,93,83000,0,0,289,0,0,0,0,0,0,0,310,1.5,8,6,16,6096,9,999999999,15,0.058,0,88,0,0,1 -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,611,0,489,155,310,1.5,10,10,0.4,91,9,999999999,16,0.058,0,88,0,0,1 -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,10325,1071,9813,2924,360,10.3,10,10,12.8,244,9,999999999,16,0.058,0,88,0,0,1 -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,6931,0,6987,3050,360,7.2,10,10,16,274,9,999999999,17,0.058,0,88,0,0,1 -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,5,100,83500,694,1381,314,91,0,91,9271,0,9351,4300,350,8.2,10,10,4,152,9,999999999,17,0.058,0,88,0,0,1 -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,96,83600,811,1381,316,100,0,100,10287,0,10379,4941,320,7.7,10,10,3.2,152,9,999999999,18,0.058,0,88,0,0,1 -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,5,100,83600,862,1381,314,109,0,109,11259,0,11361,5448,340,8.2,10,10,4.8,152,9,999999999,18,0.058,0,88,0,0,1 -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,4.4,96,83700,841,1381,313,106,0,106,10934,0,11033,5272,330,6.2,10,10,4.8,152,9,999999999,17,0.058,0,88,0,0,1 -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,4.4,96,83800,752,1381,313,92,0,92,9421,0,9504,4471,320,7.2,10,10,14.4,152,9,999999999,17,0.058,0,88,0,0,1 -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,4.4,96,83900,599,1381,313,71,0,71,7181,0,7241,3290,340,5.7,10,10,2.4,152,9,999999999,17,0.058,0,88,0,0.5,1 -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,3977,0,4008,1744,350,5.7,10,10,2.4,152,9,999999999,17,0.058,0,88,0,0,1 -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,1363,0,1373,558,330,6.7,10,10,2.4,152,9,999999999,17,0.058,0,88,0,0,1 -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,17,0.058,0,88,0,0,1 -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,152,9,999999999,16,0.058,0,88,0,0,1 -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,152,9,999999999,16,0.058,0,88,0,0,1 -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,122,9,999999999,16,0.058,0,88,0,0,1 -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,152,9,999999999,16,0.058,0,88,0,0,1 -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,213,9,999999999,16,0.058,0,88,0,0,1 -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,396,9,999999999,15,0.058,0,88,0,0,1 -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,14,0.058,0,88,0,0,1 -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,14,0.058,0,88,0,0,1 -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,13,0.058,0,88,0,7.9,1 -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,10,10,9.6,244,9,999999999,13,0.058,0,88,0,0,1 -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,10,10,11.2,244,9,999999999,12,0.058,0,88,0,0,1 -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,11,0.058,0,88,0,0,1 -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,3.9,93,84300,56,933,312,2,0,2,193,0,194,80,90,1.5,10,10,9.6,183,9,999999999,11,0.058,0,88,0,0,1 -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,4.4,96,84300,290,1382,313,52,0,52,5122,0,5160,1985,80,2.6,10,10,9.6,183,9,999999999,10,0.058,0,88,0,0,1 -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,93,84500,513,1382,319,97,0,97,9734,0,9813,4033,170,2.6,10,10,11.2,244,9,999999999,10,0.058,0,88,0,0,1 -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,32263,5809,28767,9313,150,2.1,10,9,14.4,305,9,999999999,9,0.058,0,88,0,0,1 -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,35691,4242,32627,11158,120,2.1,9,9,16,457,9,999999999,9,0.058,0,88,0,0,1 -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,6.7,80,84400,856,1382,329,333,42,307,37497,3734,34778,12072,70,2.6,10,9,16,457,9,999999999,9,0.058,0,88,0,0,1 -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,43739,13071,33708,11667,80,5.2,9,9,16,579,9,999999999,10,0.058,0,88,0,0,1 -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,51088,32644,26135,9214,90,5.2,9,8,16,1128,9,999999999,10,0.058,0,88,0,0,1 -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,26140,7049,21689,7144,70,6.7,10,9,16,1219,9,999999999,11,0.058,0,88,0,0,1 -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,7837,0,7898,3076,240,4.6,10,9,16,1402,9,999999999,11,0.058,0,88,0,0,1 -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,1264,0,1272,518,260,5.7,10,10,16,6096,9,999999999,12,0.058,0,88,0,0,1 -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,12,0.058,0,88,0,0,1 -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,13,0.058,0,88,0,0,1 -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,13,0.058,0,88,0,0,1 -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,6096,9,999999999,14,0.058,0,88,0,0,1 -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,3048,9,999999999,14,0.058,0,88,0,0,1 -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,6096,9,999999999,15,0.058,0,88,0,0,1 -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,3048,9,999999999,15,0.058,0,88,0,0,1 -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,2743,9,999999999,14,0.057,0,88,0,0,1 -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,2743,9,999999999,14,0.057,0,88,0,0,1 -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,2438,9,999999999,14,0.057,0,88,0,0.3,1 -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,6096,9,999999999,14,0.057,0,88,0,0,1 -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,6096,9,999999999,13,0.057,0,88,0,0,1 -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,13,0.057,0,88,0,0,1 -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,96,0,97,40,270,5.7,10,10,0.3,30,9,999999999,13,0.057,0,88,0,0,1 -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,3443,0,3468,1420,260,4.1,10,10,0.3,30,9,999999999,13,0.057,0,88,0,0,1 -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,27654,15227,19154,5989,270,2.6,10,10,2,30,9,999999999,12,0.057,0,88,0,0,1 -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,7,93,83700,683,1383,314,136,0,136,13829,0,13949,5979,250,3.1,8,8,4.8,150,9,999999999,12,0.057,0,88,0,0,1 -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,65488,47353,22981,8626,260,3.6,5,5,4.8,77777,9,999999999,12,0.057,0,88,0,0,1 -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,80779,55909,14242,5766,310,3.1,5,5,4.8,77777,9,999999999,12,0.057,0,88,0,0,1 -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,68035,92084,12867,1948,310,3.6,5,5,4.8,77777,9,999999999,13,0.057,0,88,0,0,1 -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,59676,91940,9454,1585,310,3.1,4,4,9.6,77777,9,999999999,13,0.057,0,88,0,0,1 -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,49537,43976,12954,4764,10,3.1,5,5,9.6,77777,9,999999999,13,0.057,0,88,0,0,1 -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,23936,19985,10489,3446,310,4.6,5,5,12.8,77777,9,999999999,14,0.057,0,88,0,0,1 -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,7258,0,4302,1253,290,4.6,9,5,12.8,77777,9,999999999,14,0.057,0,88,0,0,1 -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,77777,9,999999999,14,0.057,0,88,0,0,1 -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,77777,9,999999999,15,0.057,0,88,0,0,1 -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,6.7,80,83500,0,0,306,0,0,0,0,0,0,0,300,3.1,3,3,16,77777,9,999999999,15,0.057,0,88,0,0,1 -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,77777,9,999999999,15,0.057,0,88,0,0,1 -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,77777,9,999999999,15,0.057,0,88,0,0,1 -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,77777,9,999999999,16,0.057,0,88,0,0,1 -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,16,0.057,0,88,0,0,1 -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,77777,9,999999999,15,0.056,0,88,0,0,1 -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,77777,9,999999999,15,0.056,0,88,0,0,1 -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,77777,9,999999999,15,0.056,0,88,0,0,1 -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,1.7,79,83100,0,0,269,0,0,0,0,0,0,0,200,4.6,0,0,16,77777,9,999999999,15,0.056,0,88,0,0,1 -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.6,73,83200,0,0,279,0,0,0,0,0,0,0,200,5.7,3,3,16,77777,9,999999999,14,0.056,0,88,0,0,1 -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,77777,9,999999999,14,0.056,0,88,0,0,1 -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,552,5911,525,105,200,5.2,3,3,16,77777,9,999999999,14,0.056,0,88,0,0,1 -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,56,83300,280,1384,292,176,454,84,19345,17148,9268,2742,210,5.2,3,3,16,77777,9,999999999,14,0.056,0,88,0,0,1 -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,41053,39118,9201,3346,210,4.6,3,3,16,77777,9,999999999,14,0.056,0,88,0,0,1 -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,56349,91532,11072,1554,270,2.1,5,5,16,77777,9,999999999,13,0.056,0,88,0,0,1 -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,63497,91867,10051,1717,150,1.5,5,5,16,77777,9,999999999,13,0.056,0,88,0,0,1 -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,76706,54554,12104,4917,70,3.6,5,5,16,77777,9,999999999,13,0.056,0,88,0,0,1 -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,66738,92796,11231,1858,30,2.1,3,3,16,77777,9,999999999,13,0.056,0,88,0,0,1 -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,65566,53080,12235,4806,350,1.5,4,3,16,77777,9,999999999,13,0.056,0,88,0,0,1 -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,44059,40140,14161,5107,50,2.6,4,4,16,77777,9,999999999,13,0.056,0,88,0,0,1 -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,-3.3,27,83500,376,1384,322,256,576,99,28674,29834,11130,3569,0,0,5,5,16,77777,9,999999999,13,0.056,0,88,0,0,1 -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,2533,0,2551,923,200,1.5,9,8,16,3048,9,999999999,12,0.056,0,88,0,0,1 -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,44,83400,0,81,311,0,0,0,0,0,0,0,240,2.6,5,5,16,77777,9,999999999,12,0.056,0,88,0,0,1 -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,-1.1,45,83400,0,0,298,0,0,0,0,0,0,0,290,3.6,3,3,16,77777,9,999999999,12,0.056,0,88,0,0,1 -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,-1.7,43,83300,0,0,297,0,0,0,0,0,0,0,280,2.6,3,3,16,77777,9,999999999,12,0.056,0,88,0,0,1 -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,-1.7,43,83400,0,0,297,0,0,0,0,0,0,0,250,3.1,3,3,16,77777,9,999999999,12,0.056,0,88,0,0,1 -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,6096,9,999999999,12,0.056,0,88,0,0,1 -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,4,4,16,6096,9,999999999,12,0.056,0,88,0,0,1 -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,77777,9,999999999,11,0.056,0,88,0,0,1 -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,77777,9,999999999,11,0.056,0,88,0,0,1 -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,77777,9,999999999,11,0.056,0,88,0,0,1 -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,77777,9,999999999,10,0.056,0,88,0,0,1 -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,77777,9,999999999,10,0.056,0,88,0,0,1 -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,77777,9,999999999,10,0.056,0,88,0,0,1 -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,77777,9,999999999,10,0.056,0,88,0,0,1 -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,556,8071,356,75,220,5.7,0,0,16,77777,9,999999999,9,0.056,0,88,0,0,1 -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,21950,19401,7000,2222,230,4.6,0,0,16,77777,9,999999999,9,0.056,0,88,0,0,1 -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,-1.7,43,83500,496,1385,285,364,846,59,43705,40694,7100,2623,240,4.6,0,0,16,77777,9,999999999,9,0.056,0,88,0,0,1 -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,60820,51875,11092,4286,240,2.6,0,0,16,77777,9,999999999,8,0.056,0,88,0,0,1 -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,40,83300,788,1385,300,611,962,61,65300,96438,8958,1610,260,2.1,0,0,16,77777,9,999999999,8,0.056,0,88,0,0,1 -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,36,83600,837,1385,308,642,914,87,67914,91794,12429,1952,110,2.6,0,0,16,77777,9,999999999,8,0.056,0,88,0,0,1 -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,73873,54459,13188,5299,100,2.1,0,0,16,77777,9,999999999,9,0.056,0,88,0,0,1 -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,62006,48994,10527,4159,80,1.5,3,3,16,77777,9,999999999,9,0.056,0,88,0,0,1 -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,50204,45053,7901,2998,70,3.1,3,3,16,77777,9,999999999,9,0.056,0,88,0,0,1 -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,28325,26086,6243,2187,60,3.1,3,3,16,77777,9,999999999,9,0.056,0,88,0,0,1 -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,5680,0,2845,885,60,3.6,5,5,16,77777,9,999999999,10,0.056,0,88,0,0,1 -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,52,83400,0,35,297,0,0,0,0,0,0,0,40,3.6,3,3,16,77777,9,999999999,10,0.056,0,88,0,0,1 -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,77777,9,999999999,10,0.056,0,88,0,0,1 -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,60,83300,0,0,281,0,0,0,0,0,0,0,80,2.1,1,1,16,77777,9,999999999,11,0.056,0,88,0,0,1 -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,67,83200,0,0,278,0,0,0,0,0,0,0,190,3.6,3,2,16,77777,9,999999999,11,0.056,0,88,0,0,1 -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,77777,9,999999999,11,0.056,0,88,0,0,1 -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,77777,9,999999999,12,0.056,0,88,0,0,1 -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,-1.1,64,83200,0,0,275,0,0,0,0,0,0,0,200,4.6,2,2,16,77777,9,999999999,12,0.056,0,88,0,0,1 -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,77777,9,999999999,13,0.055,0,88,0,0,1 -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,77777,9,999999999,13,0.055,0,88,0,0,1 -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,77777,9,999999999,14,0.055,0,88,0,0,1 -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,77777,9,999999999,15,0.055,0,88,0,0,1 -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,77777,9,999999999,15,0.055,0,88,0,0,1 -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,73,83300,0,0,274,0,0,0,0,0,0,0,240,2.1,4,2,16,7620,9,999999999,16,0.055,0,88,0,0,1 -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,334,3875,355,74,220,2.6,3,1,16,7620,9,999999999,17,0.055,0,88,0,0,1 -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,15803,11380,8318,2507,240,1.5,2,1,16,7620,9,999999999,17,0.055,0,88,0,0,1 -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,35299,33290,12077,4206,0,0,4,2,16,7620,9,999999999,18,0.055,0,88,0,0,1 -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,47447,35300,23618,8035,70,2.1,5,4,16,7620,9,999999999,19,0.055,0,88,0,0,1 -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,64696,48232,15217,5988,90,2.1,3,2,16,7620,9,999999999,19,0.055,0,88,0,0,1 -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,5.6,53,83800,831,1385,327,545,577,197,63341,43147,23008,8763,100,4.1,4,3,16,7620,9,999999999,19,0.055,0,88,0,0,1 -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,72792,53096,15167,6036,80,3.6,5,4,16,7620,9,999999999,19,0.055,0,88,0,0,1 -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,63290,51640,19375,7199,60,6.7,5,4,16,7620,9,999999999,19,0.055,0,88,0,0,1 -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,25317,7384,20868,6782,50,5.2,9,6,16,7620,9,999999999,19,0.055,0,88,0,0,1 -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,7226,0,7282,2818,360,6.2,9,5,16,6706,9,999999999,19,0.055,0,88,0,0,1 -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,5050,0,3853,1111,280,5.2,9,8,16,6706,9,999999999,19,0.055,0,88,0,0,1 -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,7.2,83,83500,0,12,312,0,0,0,0,0,0,0,290,5.2,7,5,12.8,6706,9,999999999,18,0.055,0,88,0,0,1 -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,10,4,12.8,6096,9,999999999,18,0.055,0,88,0,0,1 -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,18,0.055,0,88,0,0,1 -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,18,0.055,0,88,0,0,1 -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,93,83200,0,0,290,0,0,0,0,0,0,0,140,2.1,9,4,8,6096,9,999999999,18,0.055,0,88,0,0,1 -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,3353,9,999999999,18,0.055,0,88,0,0,1 -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,93,83100,0,0,290,0,0,0,0,0,0,0,130,3.1,8,4,11.2,3658,9,999999999,18,0.055,0,88,0,0,1 -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,3658,9,999999999,17,0.054,0,88,0,0,1 -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,6096,9,999999999,17,0.054,0,88,0,0,1 -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,6096,9,999999999,17,0.054,0,88,0,0,1 -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,6096,9,999999999,16,0.054,0,88,0,0,1 -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,10,9,16,2438,9,999999999,16,0.054,0,88,0,0,1 -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,2438,9,999999999,16,0.054,0,88,0,0,1 -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,96,0,97,40,140,3.6,10,8,16,3353,9,999999999,15,0.054,0,88,0,0,1 -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,8.9,93,83100,264,1386,320,54,0,54,5296,0,5335,1977,130,3.6,9,7,16,5486,9,999999999,15,0.054,0,88,0,0,1 -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,10504,0,10588,4184,250,3.6,9,5,8,6096,9,999999999,14,0.054,0,88,0,0,1 -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,25324,962,24785,8264,270,2.6,10,7,9.6,6096,9,999999999,14,0.054,0,88,0,0,1 -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,30238,2485,28477,9970,280,2.1,9,8,11.2,3353,9,999999999,14,0.054,0,88,0,0,1 -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,7.8,62,83100,826,1386,338,103,0,103,10592,0,10687,5098,220,3.1,9,6,16,6096,9,999999999,14,0.054,0,88,0,0,1 -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,33416,5899,28818,10264,310,5.7,10,7,9.6,6096,9,999999999,13,0.054,0,88,0,0,1 -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,18567,817,17948,6735,300,4.6,8,6,9.6,6096,9,999999999,13,0.054,0,88,0,0,1 -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,26495,9586,20834,6731,360,4.1,10,7,9.6,6096,9,999999999,13,0.054,0,88,0,0,1 -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,21083,16577,11139,3500,110,5.2,9,7,16,6096,9,999999999,12,0.054,0,88,0,0,1 -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,5938,0,3639,1051,250,4.1,10,10,16,6096,9,999999999,12,0.054,0,88,0,0,1 -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,7.2,83,82700,0,0,318,0,0,0,0,0,0,0,280,3.6,8,7,16,7620,9,999999999,12,0.054,0,88,0,0,1 -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,6858,9,999999999,12,0.054,0,88,0,0,1 -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,6096,9,999999999,11,0.054,0,88,0,0,1 -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,6096,9,999999999,11,0.054,0,88,0,0,1 -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,2134,9,999999999,11,0.054,0,88,0,0,1 -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,2134,9,999999999,10,0.054,0,88,0,0,1 -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,1219,9,999999999,10,0.054,0,88,0,0,1 -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,30,9,999999999,10,0.054,0,88,0,0,1 -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,30,9,999999999,10,0.054,0,88,0,0,1 -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,10,0.054,0,88,0,0.3,1 -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,10,0.054,0,88,0,0,1 -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,1981,9,999999999,10,0.054,0,88,0,0,1 -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,10,10,11.2,2316,9,999999999,10,0.054,0,88,0,0,1 -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,131,0,130,40,80,3.1,9,9,16,3353,9,999999999,10,0.054,0,88,0,0,1 -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,9881,954,9376,2657,100,2.6,9,9,16,2438,9,999999999,10,0.054,0,88,0,0,1 -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,14099,0,14212,5110,130,3.1,8,8,16,2438,9,999999999,10,0.054,0,88,0,0,1 -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,26149,3409,24039,8056,130,3.6,8,8,16,2591,9,999999999,10,0.054,0,88,0,0,1 -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,61123,45112,21902,8160,160,3.6,5,5,16,77777,9,999999999,10,0.054,0,88,0,0,1 -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,72875,52333,13062,5258,290,3.1,4,4,16,77777,9,999999999,10,0.054,0,88,0,0,1 -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,71320,52380,11781,4734,260,5.2,4,4,16,77777,9,999999999,10,0.054,0,88,0,0,1 -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,58849,47329,10831,4246,270,4.6,3,3,16,77777,9,999999999,10,0.054,0,88,0,0,1 -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,45598,41593,8541,3205,280,2.1,3,3,16,77777,9,999999999,10,0.054,0,88,0,0,1 -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,27096,23283,5120,1800,290,4.1,3,3,16,77777,9,999999999,10,0.054,0,88,0,0,1 -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,5265,0,2293,717,270,3.6,5,5,16,77777,9,999999999,10,0.054,0,88,0,0,1 -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,77777,9,999999999,10,0.054,0,88,0,0,1 -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,77777,9,999999999,10,0.054,0,88,0,0,1 -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,1,1,16,77777,9,999999999,10,0.054,0,88,0,0,1 -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.6,67,83000,0,0,267,0,0,0,0,0,0,0,150,3.6,1,0,16,77777,9,999999999,10,0.054,0,88,0,0,1 -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,77777,9,999999999,10,0.054,0,88,0,0,1 -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,77777,9,999999999,10,0.054,0,88,0,0,1 -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,77777,9,999999999,10,0.054,0,88,0,0,1 -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,77777,9,999999999,10,0.053,0,88,0,0,1 -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,77777,9,999999999,9,0.053,0,88,0,0,1 -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,77777,9,999999999,9,0.053,0,88,0,0,1 -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,77777,9,999999999,9,0.053,0,88,0,0,1 -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,77777,9,999999999,9,0.053,0,88,0,0,1 -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,7620,9,999999999,9,0.053,0,88,0,0,1 -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,130,0,130,40,240,3.6,8,4,16,77777,9,999999999,9,0.053,0,88,0,0,1 -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.6,67,83000,254,1388,275,101,106,82,11017,3656,8979,2558,240,3.6,4,2,16,6706,9,999999999,9,0.053,0,88,0,0,1 -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,40301,42301,14952,4888,270,5.2,1,1,16,6706,9,999999999,9,0.053,0,88,0,0,1 -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,54074,91157,10989,1493,260,3.1,2,2,16,77777,9,999999999,9,0.053,0,88,0,0,1 -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,66,83000,765,1388,309,549,781,117,65700,49719,14052,5532,310,1.5,3,3,16,77777,9,999999999,9,0.053,0,88,0,0,1 -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,72417,53903,17614,6912,0,0,6,5,16,6706,9,999999999,9,0.053,0,88,0,0,1 -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,51792,29271,29957,10432,250,2.1,1,1,16,6706,9,999999999,9,0.053,0,88,0,0,1 -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,3.9,47,83200,703,1388,318,513,765,124,60503,49643,14680,5617,170,2.1,1,1,16,6706,9,999999999,10,0.053,0,88,0,0,1 -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,44796,40409,9839,3650,80,2.6,1,0,16,77777,9,999999999,10,0.053,0,88,0,0,1 -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,3.3,45,83200,347,1388,333,194,482,73,22037,18931,8318,2762,10,3.1,6,6,16,77777,9,999999999,10,0.053,0,88,0,0,1 -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,5015,0,2904,865,350,4.6,9,9,16,6706,9,999999999,11,0.053,0,88,0,0,1 -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,6706,9,999999999,11,0.053,0,88,0,0,1 -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,77777,9,999999999,11,0.053,0,88,0,0,1 -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,77777,9,999999999,11,0.053,0,88,0,0,1 -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,77777,9,999999999,12,0.053,0,88,0,0,1 -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,77777,9,999999999,12,0.053,0,88,0,0,1 -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,77777,9,999999999,12,0.053,0,88,0,0,1 -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,77777,9,999999999,12,0.053,0,88,0,0,1 -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,77777,9,999999999,11,0.052,0,88,0,0,1 -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,77777,9,999999999,11,0.052,0,88,0,0,1 -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,77777,9,999999999,10,0.052,0,88,0,0,1 -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,77777,9,999999999,10,0.052,0,88,0,0,1 -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,85,82800,0,0,256,0,0,0,0,0,0,0,240,4.1,0,0,16,6096,9,999999999,10,0.052,0,88,0,0,1 -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,183,9,999999999,9,0.052,0,88,0,0,1 -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,244,9,999999999,9,0.052,0,88,0,0,1 -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,17802,14628,11818,2851,10,4.1,10,10,16,244,9,999999999,8,0.052,0,88,0,0,1 -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,3.3,89,82800,469,1388,312,191,107,154,21078,7297,17073,5309,360,2.1,10,10,12.8,183,9,999999999,8,0.052,0,88,0,0,1 -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,4,93,82800,643,1388,313,195,6,192,21956,460,21724,7436,320,3.6,10,10,1.6,120,9,999999999,8,0.052,0,88,0,0,1 -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,3.9,93,82800,759,1388,312,106,0,106,10859,0,10954,5066,340,2.1,10,10,2.4,122,9,999999999,7,0.052,0,88,0,0,1 -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,5,93,82700,808,1388,318,97,0,97,9972,0,10061,4794,20,2.1,10,10,2.8,120,9,999999999,7,0.052,0,88,0,0.3,1 -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,5,93,82700,787,1388,318,94,0,94,9648,0,9733,4620,0,0,10,10,2.8,90,9,999999999,7,0.052,0,88,0,0,1 -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,96,82600,697,1388,316,108,0,108,11004,0,11099,4986,280,1.5,10,10,1.6,183,9,999999999,7,0.052,0,88,0,0,1 -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,93,82600,545,1388,319,76,0,76,7647,0,7710,3373,260,3.6,10,10,9.6,183,9,999999999,7,0.052,0,88,0,0.3,1 -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,6231,0,6278,2449,100,3.1,9,8,11.2,2896,9,999999999,7,0.052,0,88,0,0,1 -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,93,82300,104,1284,319,8,0,8,775,0,781,317,310,2.6,10,10,14.4,1981,9,999999999,6,0.052,0,88,0,0,1 -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,96,82400,0,0,308,0,0,0,0,0,0,0,270,2.6,9,9,9.6,3048,9,999999999,6,0.052,0,88,0,0,1 -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,96,82400,0,0,316,0,0,0,0,0,0,0,260,6.2,10,10,9.6,549,9,999999999,6,0.052,0,88,0,0,1 -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,6,0.052,0,88,0,0,1 -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,6,0.052,0,88,0,0,1 -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,1219,9,999999999,6,0.052,0,88,0,1.3,1 -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,92,82300,0,0,283,0,0,0,0,0,0,0,170,6.7,10,10,16,1981,9,999999999,6,0.052,0,88,0,0,1 -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,2896,9,999999999,5,0.052,0,88,0,0,1 -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,1158,9,999999999,8,0.052,0,88,0,0,1 -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,-6.7,91,83600,0,0,260,0,0,0,0,0,0,0,20,3.6,10,10,4.8,1250,9,999999999,8,0.052,0,88,0,0,1 -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,8,0.052,0,88,0,0,1 -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,86,83700,0,0,244,0,0,0,0,0,0,0,90,1.5,10,10,16,945,9,999999999,8,0.052,0,88,0,0,1 -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,8,0.052,0,88,0,0,1 -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,9,0.052,0,88,0,0,1 -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,9,0.052,0,88,0,0,1 -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,11162,3668,9357,2554,120,3.1,10,9,11.2,1067,9,999999999,9,0.052,0,88,0,0,1 -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,5717,0,5762,2489,110,2.6,10,9,16,3962,9,999999999,8,0.052,0,88,0,0,1 -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,9260,0,9337,4160,120,3.6,10,5,16,77777,9,999999999,8,0.052,0,88,0,0,1 -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,-6.7,86,83900,756,1388,247,187,0,187,19203,0,19370,7992,80,4.1,10,8,16,701,9,999999999,8,0.052,0,88,0,0,1 -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,87,83700,805,1388,261,139,0,139,14326,0,14453,6519,110,4.1,10,9,16,640,9,999999999,8,0.052,0,88,0,0,1 -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,-6.1,91,83600,783,1388,260,100,0,100,10292,0,10382,4866,360,6.2,10,10,1.6,701,9,999999999,9,0.052,0,88,0,0,1 -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,13385,0,13498,5828,10,5.7,10,10,2,91,9,999999999,9,0.052,0,88,0,0,1 -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,8782,0,8853,3766,10,5.7,10,10,2,30,9,999999999,9,0.052,0,88,0,0,1 -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,6649,0,6698,2553,360,4.1,10,10,2,30,9,999999999,9,0.052,0,88,0,0,1 -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,1556,0,1566,579,340,3.6,10,10,0.4,30,9,999999999,9,0.052,0,88,0,0,1 -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,9,0.052,0,88,0,0,1 -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,9,0.052,0,88,0,0,1 -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,10,10,0.4,30,9,999999999,10,0.052,0,88,0,0,1 -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,10,10,0.4,30,9,999999999,10,0.052,0,88,0,0,1 -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,10,10,1.2,30,9,999999999,10,0.052,0,88,0,0,1 -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,10,10,1.2,91,9,999999999,10,0.052,0,88,0,0,1 -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,10,10,1.2,91,9,999999999,10,0.052,0,88,0,0,1 -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,10,0.051,0,88,0,0,1 -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,10,10,2.4,91,9,999999999,10,0.051,0,88,0,0,1 -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,9,0.051,0,88,0,0,1 -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,10,10,1.6,91,9,999999999,9,0.051,0,88,0,0,1 -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,10,10,1.6,91,9,999999999,9,0.051,0,88,0,0,1 -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,9,0.051,0,88,0,0,1 -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,10,10,0.8,61,9,999999999,9,0.051,0,88,0,0,1 -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,2755,0,2774,1119,0,0,10,10,0.8,61,9,999999999,10,0.051,0,88,0,0,1 -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,-5.6,95,83000,461,1389,261,106,0,106,10621,0,10705,4097,0,0,10,10,2.4,61,9,999999999,9,0.051,0,88,0,0,1 -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,13927,0,14043,5787,0,0,10,10,2,61,9,999999999,9,0.051,0,88,0,0,1 -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,10877,0,10972,5035,0,0,10,10,0.8,122,9,999999999,9,0.051,0,88,0,0,1 -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,12466,0,12576,5781,30,2.1,10,10,2.4,122,9,999999999,9,0.051,0,88,0,0,1 -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,15119,0,15252,6726,20,1.5,10,10,2.4,183,9,999999999,9,0.051,0,88,0,0,1 -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,25085,1970,23848,8205,0,0,10,10,2.4,244,9,999999999,8,0.051,0,88,0,0,1 -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,83,83000,536,1389,263,211,88,177,23431,6732,19750,6279,20,3.1,9,9,2.4,3048,9,999999999,9,0.051,0,88,0,0,1 -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,83,83100,333,1389,248,139,184,95,15406,8749,10569,3239,10,3.1,6,5,2.4,77777,9,999999999,9,0.051,0,88,0,0,1 -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,3332,0,1841,573,330,4.1,6,5,2.4,77777,9,999999999,9,0.051,0,88,0,0,1 -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,9,0.051,0,88,0,0,1 -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,10,10,2.4,1433,9,999999999,8,0.051,0,88,0,0,1 -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,87,83300,0,0,268,0,0,0,0,0,0,0,270,2.1,10,10,6.4,1494,9,999999999,8,0.051,0,88,0,0,1 -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,7,0.051,0,88,0,0,1 -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,10,10,1.6,396,9,999999999,7,0.051,0,88,0,0,1 -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,-5.6,95,83500,0,0,261,0,0,0,0,0,0,0,70,2.1,10,10,1.6,213,9,999999999,7,0.051,0,88,0,0,1 -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,6,0.051,0,88,0,0,1 -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,95,83300,0,0,264,0,0,0,0,0,0,0,170,2.1,10,10,2.4,549,9,999999999,6,0.051,0,88,0,0,1 -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,95,83300,0,0,264,0,0,0,0,0,0,0,0,0,10,10,3.2,518,9,999999999,6,0.051,0,88,0,0,1 -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,-5.6,95,83300,0,0,261,0,0,0,0,0,0,0,150,1.5,10,10,4.8,823,9,999999999,6,0.051,0,88,0,0,1 -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,95,83400,0,0,257,0,0,0,0,0,0,0,230,1.5,9,9,1.6,335,9,999999999,7,0.051,0,88,0,0,1 -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,95,83700,0,0,264,0,0,0,0,0,0,0,220,3.1,10,10,4.8,914,9,999999999,7,0.051,0,88,0,0,1 -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,6,0.051,0,88,0,0,1 -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,6,0.051,0,88,0,0,1 -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,4722,0,4755,1728,210,4.6,2,2,16,77777,9,999999999,5,0.051,0,88,0,0,1 -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,5711,0,5756,2469,200,5.2,3,3,16,77777,9,999999999,5,0.051,0,88,0,0,1 -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,7925,0,7991,3615,210,3.6,2,2,16,77777,9,999999999,5,0.051,0,88,0,0,1 -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,11488,0,11588,5262,200,3.1,3,3,16,77777,9,999999999,4,0.051,0,88,0,0,1 -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,-8.9,47,83900,793,1390,240,163,0,163,16795,0,16942,7368,190,2.6,0,0,16,77777,9,999999999,4,0.051,0,88,0,0,1 -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,37669,10415,30758,10383,180,2.6,3,3,16,77777,9,999999999,4,0.051,0,88,0,0,1 -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,31689,7378,27374,8923,170,3.6,2,2,16,77777,9,999999999,4,0.051,0,88,0,0,1 -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,24554,9091,19647,6212,140,3.1,3,3,16,77777,9,999999999,4,0.051,0,88,0,0,1 -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,17823,14414,8601,2765,140,2.6,2,2,16,77777,9,999999999,3,0.051,0,88,0,0,1 -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,3744,0,2046,622,150,3.6,3,3,16,77777,9,999999999,3,0.051,0,88,0,0,1 -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,77777,9,999999999,3,0.051,0,88,0,0,1 -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,77777,9,999999999,3,0.051,0,88,0,0,1 -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,-11.1,59,83500,0,0,221,0,0,0,0,0,0,0,170,5.2,0,0,16,77777,9,999999999,3,0.051,0,88,0,0,1 -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,77777,9,999999999,3,0.051,0,88,0,0,1 -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,77777,9,999999999,3,0.051,0,88,0,0,1 -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,77777,9,999999999,3,0.051,0,88,0,0,1 -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,75,83100,0,0,217,0,0,0,0,0,0,0,160,3.1,0,0,16,77777,9,999999999,3,0.051,0,88,0,0,1 -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,-8.9,71,83000,0,0,228,0,0,0,0,0,0,0,240,3.1,1,1,16,77777,9,999999999,3,0.05,0,88,0,0,1 -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,-8.9,71,83000,0,0,235,0,0,0,0,0,0,0,190,2.1,5,4,16,77777,9,999999999,3,0.05,0,88,0,0,1 -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,77777,9,999999999,4,0.05,0,88,0,0,1 -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,6096,9,999999999,5,0.05,0,88,0,0,1 -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,6096,9,999999999,5,0.05,0,88,0,0,1 -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,6096,9,999999999,5,0.05,0,88,0,0,1 -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,-7.8,79,82700,25,637,236,0,0,0,0,0,0,0,270,4.1,10,4,16,6096,9,999999999,6,0.05,0,88,0,0,1 -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,6685,0,6732,2166,280,3.6,9,5,16,6706,9,999999999,6,0.05,0,88,0,0,1 -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,11416,0,11505,4262,270,1.5,8,5,14.4,6096,9,999999999,6,0.05,0,88,0,0,1 -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,9243,0,9320,4117,270,3.1,7,5,16,3962,9,999999999,7,0.05,0,88,0,0,1 -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,15994,0,16132,6880,230,2.6,9,5,16,4572,9,999999999,7,0.05,0,88,0,0,1 -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,14928,0,15059,6683,270,2.1,9,9,16,4572,9,999999999,7,0.05,0,88,0,0,1 -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,41776,17612,29666,10100,300,3.1,5,5,16,77777,9,999999999,7,0.05,0,88,0,0,1 -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,46860,36812,19796,7086,340,3.6,7,6,16,6706,9,999999999,7,0.05,0,88,0,0,1 -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,34574,30739,13560,4726,350,2.6,9,7,16,6706,9,999999999,7,0.05,0,88,0,0,1 -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,16931,12452,9614,2986,250,3.1,8,5,16,6706,9,999999999,6,0.05,0,88,0,0,1 -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,971,0,977,377,320,2.1,7,7,16,6706,9,999999999,6,0.05,0,88,0,0,1 -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,3658,9,999999999,5,0.05,0,88,0,0,1 -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,-5,66,82600,0,0,261,0,0,0,0,0,0,0,180,2.1,9,6,16,3658,9,999999999,5,0.05,0,88,0,0,1 -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,76,82600,0,0,246,0,0,0,0,0,0,0,70,2.1,5,2,16,6096,9,999999999,5,0.05,0,88,0,0,1 -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,6096,9,999999999,5,0.05,0,88,0,0,1 -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,6096,9,999999999,5,0.05,0,88,0,0,1 -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,77777,9,999999999,4,0.05,0,88,0,0,1 -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,6096,9,999999999,5,0.05,0,88,0,0,1 -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,6096,9,999999999,5,0.049,0,88,0,0,1 -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,77777,9,999999999,5,0.049,0,88,0,0,1 -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,77777,9,999999999,5,0.049,0,88,0,0,1 -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,3048,9,999999999,5,0.049,0,88,0,0,1 -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,-9.4,68,83000,0,0,234,0,0,0,0,0,0,0,140,1.5,4,4,16,77777,9,999999999,5,0.049,0,88,0,0,1 -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,77777,9,999999999,5,0.049,0,88,0,0,1 -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,77777,9,999999999,4,0.049,0,88,0,0,1 -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,13861,9649,8480,2302,230,3.1,3,3,16,77777,9,999999999,4,0.049,0,88,0,0,1 -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,20443,7089,16894,5072,240,3.1,3,3,16,77777,9,999999999,4,0.049,0,88,0,0,1 -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,29698,8409,24954,7889,210,3.1,0,0,16,77777,9,999999999,4,0.049,0,88,0,0,1 -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,43347,21724,29171,9707,270,3.6,3,3,16,77777,9,999999999,4,0.049,0,88,0,0,1 -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,56166,39600,25640,9221,270,4.6,3,3,16,77777,9,999999999,4,0.049,0,88,0,0,1 -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,65529,52780,14186,5548,290,3.6,3,3,16,77777,9,999999999,4,0.049,0,88,0,0,1 -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,60433,51234,9180,3571,290,3.1,1,1,16,77777,9,999999999,4,0.049,0,88,0,0,1 -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,-8.9,23,83700,520,1391,278,377,845,60,45464,43047,7251,2695,330,2.1,0,0,16,77777,9,999999999,5,0.049,0,88,0,0,1 -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,21215,61804,5435,800,0,0,0,0,16,77777,9,999999999,5,0.049,0,88,0,0,1 -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,3533,21027,1998,276,100,2.6,0,0,16,77777,9,999999999,5,0.049,0,88,0,0,1 -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,77777,9,999999999,5,0.049,0,88,0,0,1 -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,77777,9,999999999,5,0.049,0,88,0,0,1 -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,56,83600,0,0,252,0,0,0,0,0,0,0,190,3.1,0,0,16,77777,9,999999999,5,0.049,0,88,0,0,1 -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,77777,9,999999999,5,0.049,0,88,0,0,1 -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,77777,9,999999999,6,0.049,0,88,0,0,1 -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,77777,9,999999999,6,0.049,0,88,0,0,1 -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,77777,9,999999999,6,0.049,0,88,0,0,1 -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,6096,9,999999999,6,0.049,0,88,0,0,1 -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,6096,9,999999999,6,0.049,0,88,0,0,1 -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,77777,9,999999999,6,0.049,0,88,0,0,1 -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,77777,9,999999999,6,0.049,0,88,0,0,1 -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,77777,9,999999999,7,0.049,0,88,0,0,1 -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,77777,9,999999999,6,0.049,0,88,0,0,1 -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,77777,9,999999999,6,0.049,0,88,0,0,1 -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,-6,45,83900,220,1392,258,140,394,78,15121,11839,8458,2267,0,0,0,0,16.1,77777,9,999999999,5,0.049,0,88,0,0,1 -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,37416,40516,11299,3807,140,2.1,0,0,16,77777,9,999999999,5,0.049,0,88,0,0,1 -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,51692,47320,11841,4424,130,2.6,0,0,16,77777,9,999999999,5,0.049,0,88,0,0,1 -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,58446,88947,12100,1660,130,3.1,0,0,16,77777,9,999999999,5,0.049,0,88,0,0,1 -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,62904,93801,9531,1634,120,4.1,0,0,16,77777,9,999999999,5,0.049,0,88,0,0,1 -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,-6.1,21,84200,755,1392,301,582,956,62,61803,94937,9145,1571,110,5.2,0,0,16,77777,9,999999999,5,0.049,0,88,0,0,1 -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,53639,90546,9264,1455,140,4.1,0,0,16,77777,9,999999999,5,0.049,0,88,0,0,1 -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,39272,79303,9011,1213,120,6.2,0,0,16,77777,9,999999999,5,0.049,0,88,0,0,1 -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,21666,63020,5894,805,120,4.6,0,0,16,77777,9,999999999,5,0.049,0,88,0,0,1 -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,3128,20514,1678,256,130,2.6,1,0,16,77777,9,999999999,5,0.049,0,88,0,0,1 -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,-2.8,55,83800,0,0,264,0,0,0,0,0,0,0,160,6.2,0,0,16,77777,9,999999999,5,0.049,0,88,0,0,1 -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,77777,9,999999999,5,0.049,0,88,0,0,1 -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,77777,9,999999999,4,0.049,0,88,0,0,1 -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,44,83800,0,0,265,0,0,0,0,0,0,0,240,7.2,0,0,16,77777,9,999999999,4,0.049,0,88,0,0,1 -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,44,83800,0,0,265,0,0,0,0,0,0,0,220,7.7,0,0,16,77777,9,999999999,4,0.049,0,88,0,0,1 -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,77777,9,999999999,3,0.049,0,88,0,0,1 -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,77777,9,999999999,3,0.049,0,88,0,0,1 -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,-7.2,38,83400,0,0,260,0,0,0,0,0,0,0,210,7.7,0,0,16,77777,9,999999999,3,0.048,0,88,0,0,1 -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,-7.8,36,83400,0,0,260,0,0,0,0,0,0,0,210,7.7,0,0,16,77777,9,999999999,3,0.048,0,88,0,0,1 -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,77777,9,999999999,3,0.048,0,88,0,0,1 -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,-9.4,31,83300,0,0,258,0,0,0,0,0,0,0,210,8.2,0,0,16,77777,9,999999999,2,0.048,0,88,0,0,1 -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,29,83400,0,0,260,0,0,0,0,0,0,0,200,8.2,0,0,16,77777,9,999999999,2,0.048,0,88,0,0,1 -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,77777,9,999999999,2,0.048,0,88,0,0,1 -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,77777,9,999999999,2,0.048,0,88,0,0,1 -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,24,83500,215,1393,284,112,265,71,12173,7023,7746,2134,210,7.7,5,4,16,77777,9,999999999,2,0.048,0,88,0,0,1 -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,31297,31295,13579,4346,220,8.2,6,4,16,77777,9,999999999,2,0.048,0,88,0,0,1 -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,-8.3,18,83600,607,1393,316,340,350,187,38157,27692,21088,7013,220,5.7,10,5,16,6706,9,999999999,2,0.048,0,88,0,0,1 -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,41239,19092,29107,9589,220,5.7,10,4,16,6706,9,999999999,2,0.048,0,88,0,0,1 -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,31517,3732,28963,9959,250,5.7,10,4,16,6706,9,999999999,3,0.048,0,88,0,0,1 -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,20425,456,20167,7500,340,2.6,9,4,16,6706,9,999999999,3,0.048,0,88,0,0,1 -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,33045,13524,24659,8179,10,3.6,8,4,16,6706,9,999999999,4,0.048,0,88,0,0,1 -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,15151,400,14986,5040,10,2.6,6,4,16,6706,9,999999999,4,0.048,0,88,0,0,1 -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,-5,24,83100,308,1393,318,42,0,42,4155,0,4185,1691,140,2.6,6,4,16,6706,9,999999999,4,0.048,0,88,0,0,1 -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,388,0,390,160,180,2.6,9,8,16,6096,9,999999999,5,0.048,0,88,0,0,1 -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,6096,9,999999999,5,0.048,0,88,0,0,1 -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,6096,9,999999999,5,0.048,0,88,0,0,1 -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,6096,9,999999999,5,0.048,0,88,0,0,1 -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,6096,9,999999999,6,0.048,0,88,0,0,1 -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,6096,9,999999999,6,0.048,0,88,0,0,1 -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,24,82600,0,0,286,0,0,0,0,0,0,0,210,5.2,8,5,16,6096,9,999999999,6,0.048,0,88,0,0,1 -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,6096,9,999999999,7,0.048,0,88,0,0,1 -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,77777,9,999999999,7,0.048,0,88,0,0,1 -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,26,82300,0,0,275,0,0,0,0,0,0,0,210,5.7,4,3,16,77777,9,999999999,8,0.048,0,88,0,0,1 -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,77777,9,999999999,8,0.048,0,88,0,0,1 -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,77777,9,999999999,9,0.048,0,88,0,0,1 -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,77777,9,999999999,9,0.048,0,88,0,0,1 -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,-5,46,82200,0,0,274,0,0,0,0,0,0,0,240,4.1,3,3,16,77777,9,999999999,9,0.048,0,88,0,0,1 -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,3,3,16,77777,9,999999999,8,0.048,0,88,0,0,1 -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,-3.9,36,82400,210,1393,300,134,237,98,14119,9314,10375,2346,220,5.2,7,5,16,6706,9,999999999,8,0.048,0,88,0,0,1 -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,6487,0,6537,2704,140,2.6,8,5,16,6706,9,999999999,9,0.048,0,88,0,0,1 -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,7289,0,7349,3315,160,4.1,7,6,16,6706,9,999999999,10,0.048,0,88,0,0,1 -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,-5,24,82100,716,1393,318,338,188,241,37937,16303,27196,9146,190,5.7,5,4,16,6706,9,999999999,11,0.048,0,88,0,0,1 -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,23,82400,765,1393,320,466,397,248,52651,34461,28172,9739,240,2.6,7,4,16,4572,9,999999999,11,0.048,0,88,0,0,1 -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,14456,0,14581,6367,270,6.7,4,4,16,4572,9,999999999,11,0.048,0,88,0,0,1 -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,34941,17099,24089,8020,340,6.7,3,3,16,6706,9,999999999,11,0.048,0,88,0,0,1 -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,40116,40170,14222,4825,300,12.4,3,3,16,77777,9,999999999,10,0.048,0,88,0,0,1 -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,22369,19903,7060,2301,310,10.3,6,5,16,77777,9,999999999,8,0.048,0,88,0,0,1 -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,2312,0,1273,395,330,6.7,9,5,16,77777,9,999999999,7,0.048,0,88,0,0,1 -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,6706,9,999999999,8,0.048,0,88,0,0,1 -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,6706,9,999999999,9,0.048,0,88,0,0,1 -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,6096,9,999999999,9,0.048,0,88,0,0,1 -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,6096,9,999999999,10,0.048,0,88,0,0,1 -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,5486,9,999999999,10,0.048,0,88,0,0,1 -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,77777,9,999999999,10,0.048,0,88,0,0,1 -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,77777,9,999999999,10,0.048,0,88,0,0,1 -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,5486,9,999999999,10,0.047,0,88,0,0,1 -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,5486,9,999999999,10,0.047,0,88,0,0,1 -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,77777,9,999999999,10,0.047,0,88,0,0,1 -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,77777,9,999999999,10,0.047,0,88,0,0,1 -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,77777,9,999999999,10,0.047,0,88,0,0,1 -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,77777,9,999999999,10,0.047,0,88,0,0,1 -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,77777,9,999999999,10,0.047,0,88,0,0,1 -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,54,81800,205,1394,299,116,283,74,12479,7022,7993,2110,270,7.7,5,5,16,77777,9,999999999,10,0.047,0,88,0,0,1 -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,31379,31258,12893,4144,240,2.6,3,3,16,77777,9,999999999,10,0.047,0,88,0,0,1 -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,31998,15089,23372,7406,250,4.6,3,3,16,77777,9,999999999,10,0.047,0,88,0,0,1 -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,38197,13233,30152,9681,280,4.6,8,8,16,77777,9,999999999,10,0.047,0,88,0,0,1 -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,41199,13406,32593,10611,300,7.7,9,9,16,2896,9,999999999,10,0.047,0,88,0,0,1 -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.6,47,82000,739,1394,321,359,149,279,39943,13594,31222,10160,280,10.3,9,9,16,1829,9,999999999,10,0.047,0,88,0,0,1 -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,33869,12224,26710,8502,70,3.1,8,8,16,4877,9,999999999,10,0.047,0,88,0,0,1 -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,1.1,54,81900,500,1394,323,230,145,178,25262,10876,19647,5973,40,2.6,9,9,16,2134,9,999999999,9,0.047,0,88,0,0,1 -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,12877,5397,9722,2902,10,4.6,9,9,16,2896,9,999999999,8,0.047,0,88,0,0,1 -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,1382,0,1268,392,290,6.7,10,10,16,3048,9,999999999,8,0.047,0,88,0,0,1 -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,3353,9,999999999,8,0.047,0,88,0,0,1 -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,3962,9,999999999,7,0.047,0,88,0,0,1 -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,50,82000,0,0,284,0,0,0,0,0,0,0,230,7.2,8,8,16,1981,9,999999999,7,0.047,0,88,0,0,1 -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,77777,9,999999999,7,0.047,0,88,0,0,1 -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,77777,9,999999999,6,0.047,0,88,0,0,1 -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,77777,9,999999999,6,0.047,0,88,0,0,1 -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,77777,9,999999999,5,0.047,0,88,0,0,1 -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,77777,9,999999999,5,0.047,0,88,0,0,1 -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,77777,9,999999999,5,0.047,0,88,0,0,1 -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,77777,9,999999999,4,0.047,0,88,0,0,1 -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,77777,9,999999999,4,0.047,0,88,0,0,1 -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,77777,9,999999999,4,0.047,0,88,0,0,1 -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,77777,9,999999999,4,0.047,0,88,0,0,1 -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,77777,9,999999999,4,0.047,0,88,0,0,1 -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,10221,2816,8875,2163,230,3.6,4,4,16,77777,9,999999999,4,0.047,0,88,0,0,1 -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,28,82700,418,1395,277,188,146,144,20624,9863,15869,4697,270,6.7,6,5,16,77777,9,999999999,4,0.047,0,88,0,0,1 -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,31851,13392,24819,7600,280,5.2,10,6,16,3658,9,999999999,4,0.047,0,88,0,0,1 -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,38240,13941,29848,9563,290,4.1,8,6,16,3962,9,999999999,5,0.047,0,88,0,0,1 -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,41253,14162,32297,10490,0,0,6,6,16,6706,9,999999999,5,0.047,0,88,0,0,1 -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,39339,13345,31046,10060,330,1.5,3,3,16,3962,9,999999999,5,0.047,0,88,0,0,1 -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,33947,13131,26546,8410,290,2.1,6,6,16,6096,9,999999999,6,0.047,0,88,0,0,1 -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,24757,10378,19570,5911,260,3.6,6,6,16,3962,9,999999999,5,0.047,0,88,0,0,1 -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,24,82700,294,1395,288,116,116,92,12727,5107,10133,2951,310,4.6,8,6,16,3962,9,999999999,5,0.047,0,88,0,0,1 -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,1273,0,1158,358,290,5.7,7,7,16,3962,9,999999999,5,0.047,0,88,0,0,1 -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,-9.4,31,82700,0,0,276,0,0,0,0,0,0,0,300,4.6,7,6,16,3962,9,999999999,5,0.047,0,88,0,0,1 -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,3962,9,999999999,5,0.047,0,88,0,0,1 -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,4,4,16,6096,9,999999999,5,0.047,0,88,0,0,1 -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,77777,9,999999999,5,0.047,0,88,0,0,1 -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,6096,9,999999999,5,0.047,0,88,0,0,1 -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,-8.3,49,82900,0,0,258,0,0,0,0,0,0,0,170,3.6,6,6,16,6096,9,999999999,6,0.047,0,88,0,0,1 -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,-8.9,47,82600,0,0,257,0,0,0,0,0,0,0,180,3.6,6,6,16,6096,9,999999999,6,0.047,0,88,0,0,1 -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,77777,9,999999999,6,0.046,0,88,0,0,1 -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,-8.9,47,82700,0,0,260,0,0,0,0,0,0,0,220,5.2,8,7,16,77777,9,999999999,6,0.046,0,88,0,0,1 -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,6096,9,999999999,5,0.046,0,88,0,0,1 -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,49,82700,0,0,247,0,0,0,0,0,0,0,250,3.6,5,5,16,77777,9,999999999,5,0.046,0,88,0,0,1 -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,2,2,16,6096,9,999999999,4,0.046,0,88,0,0,1 -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,45,82900,0,0,248,0,0,0,0,0,0,0,280,3.1,3,3,16,6096,9,999999999,4,0.046,0,88,0,0,1 -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,47,82900,12,454,252,0,0,0,0,0,0,0,280,3.1,6,6,16,6706,9,999999999,5,0.046,0,88,0,0,1 -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,10486,4251,8165,2059,290,2.1,5,5,16,6706,9,999999999,5,0.046,0,88,0,0,1 -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,26096,24138,11742,3820,360,2.1,8,8,16,6706,9,999999999,5,0.046,0,88,0,0,1 -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,41376,36875,15651,5517,40,5.7,9,9,16,3353,9,999999999,5,0.046,0,88,0,0,1 -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,59786,50628,12812,4932,50,6.7,9,9,16,2286,9,999999999,5,0.046,0,88,0,0,1 -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,60334,48211,15468,5969,40,7.2,7,7,16,6096,9,999999999,5,0.046,0,88,0,0,1 -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,48,83600,728,1395,292,447,454,209,50862,36915,23900,8442,30,6.2,9,9,16,3353,9,999999999,5,0.046,0,88,0,0,1 -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,-5,46,83700,640,1395,278,312,207,216,34817,17321,24229,7924,30,5.2,6,5,16,3962,9,999999999,5,0.046,0,88,0,0,1 -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,24214,11817,17996,5595,20,6.2,5,5,16,6096,9,999999999,6,0.046,0,88,0,0,1 -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,8264,382,8067,2511,30,5.2,7,7,16,6096,9,999999999,6,0.046,0,88,0,0,1 -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,1393,0,1046,325,50,4.6,8,8,16,2438,9,999999999,7,0.046,0,88,0,0,1 -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,8,8,16,1676,9,999999999,6,0.046,0,88,0,0,1 -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,-3.9,72,83900,0,0,256,0,0,0,0,0,0,0,230,4.1,3,3,16,77777,9,999999999,6,0.046,0,88,0,0,1 -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,77777,9,999999999,6,0.046,0,88,0,0,1 -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,77777,9,999999999,5,0.046,0,88,0,0,1 -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,77777,9,999999999,5,0.046,0,88,0,0,1 -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,77777,9,999999999,5,0.046,0,88,0,0,1 -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,77777,9,999999999,4,0.046,0,88,0,0,1 -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,77777,9,999999999,4,0.046,0,88,0,0,1 -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,77777,9,999999999,4,0.046,0,88,0,0,1 -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,56,83900,0,0,228,0,0,0,0,0,0,0,210,6.7,0,0,16,77777,9,999999999,3,0.046,0,88,0,0,1 -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,77777,9,999999999,3,0.046,0,88,0,0,1 -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,77777,9,999999999,3,0.046,0,88,0,0,1 -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,-11.1,59,83800,0,0,221,0,0,0,0,0,0,0,200,5.2,0,0,16,77777,9,999999999,3,0.046,0,88,0,0,1 -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,77777,9,999999999,3,0.046,0,88,0,0,1 -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,11880,7029,7952,2000,210,7.2,0,0,16,77777,9,999999999,3,0.046,0,88,0,0,1 -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,32502,35645,12558,3986,210,5.7,0,0,16,77777,9,999999999,4,0.046,0,88,0,0,1 -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,42876,39618,15958,5578,220,5.2,0,0,16,77777,9,999999999,4,0.046,0,88,0,0,1 -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,56211,47923,12479,4799,210,3.6,0,0,16,77777,9,999999999,4,0.046,0,88,0,0,1 -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,63962,52197,11687,4596,250,3.1,0,0,16,77777,9,999999999,5,0.046,0,88,0,0,1 -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,64019,52835,10065,3960,280,3.1,1,1,16,77777,9,999999999,5,0.046,0,88,0,0,1 -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,48483,84998,8873,1388,270,4.6,1,1,16,77777,9,999999999,5,0.046,0,88,0,0,1 -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,35613,75855,8018,1140,200,1.5,0,0,16,77777,9,999999999,5,0.046,0,88,0,0,1 -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,17690,55486,4678,716,0,0,1,1,16,77777,9,999999999,5,0.046,0,88,0,0,1 -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,1402,10224,1023,178,170,2.1,6,5,16,77777,9,999999999,5,0.046,0,88,0,0,1 -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,77777,9,999999999,6,0.046,0,88,0,0,1 -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,77777,9,999999999,7,0.046,0,88,0,0,1 -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,77777,9,999999999,8,0.046,0,88,0,0,1 -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,77777,9,999999999,8,0.046,0,88,0,0,1 -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,77777,9,999999999,9,0.046,0,88,0,0,1 -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,20,83700,0,0,265,0,0,0,0,0,0,0,210,6.2,6,5,16,77777,9,999999999,10,0.046,0,88,0,0,1 -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,5486,9,999999999,10,0.046,0,88,0,0,1 -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,5486,9,999999999,10,0.045,0,88,0,0,1 -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,5486,9,999999999,10,0.045,0,88,0,0,1 -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,5486,9,999999999,10,0.045,0,88,0,0,1 -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,5486,9,999999999,10,0.045,0,88,0,0,1 -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,5486,9,999999999,10,0.045,0,88,0,0,1 -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,77777,9,999999999,10,0.045,0,88,0,0,1 -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,6706,9,999999999,10,0.045,0,88,0,0,1 -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,3329,0,3352,1224,140,1.5,9,9,16,6096,9,999999999,10,0.045,0,88,0,0,1 -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,5783,0,5827,2404,310,3.6,9,9,16,6706,9,999999999,10,0.045,0,88,0,0,1 -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,29192,13358,21752,6913,0,0,9,9,16,6096,9,999999999,10,0.045,0,88,0,0,1 -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,24105,1460,23202,8022,20,7.2,8,8,16,6706,9,999999999,10,0.045,0,88,0,0,1 -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,26070,1005,25521,8905,50,6.2,9,9,16,3962,9,999999999,11,0.045,0,88,0,0,1 -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,15037,0,15166,6468,70,5.2,10,7,16,3962,9,999999999,11,0.045,0,88,0,0,1 -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,32379,15716,22520,7486,80,6.2,8,5,16,3962,9,999999999,11,0.045,0,88,0,0,1 -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,5318,0,5360,2354,90,4.6,7,5,16,3962,9,999999999,11,0.045,0,88,0,0,1 -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,-4.4,34,83200,281,1397,299,28,0,28,2763,0,2783,1159,110,3.6,7,5,16,3962,9,999999999,11,0.045,0,88,0,0,1 -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,580,0,584,225,290,1.5,10,10,16,3353,9,999999999,12,0.045,0,88,0,0,1 -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,-4.4,34,83200,0,0,317,0,0,0,0,0,0,0,0,0,10,9,16,2743,9,999999999,12,0.045,0,88,0,0,1 -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,1463,9,999999999,12,0.045,0,88,0,0,1 -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,60,83300,0,0,318,0,0,0,0,0,0,0,120,4.6,10,10,16,1676,9,999999999,11,0.045,0,88,0,0,1 -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,62,83400,0,0,316,0,0,0,0,0,0,0,100,3.1,10,10,16,1128,9,999999999,11,0.045,0,88,0,0,1 -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,-1,69,83200,0,0,303,0,0,0,0,0,0,0,80,1.5,10,10,16.1,1800,9,999999999,11,0.045,0,88,0,0,1 -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,1524,9,999999999,11,0.045,0,88,0,0,1 -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,2591,9,999999999,11,0.045,0,88,0,0,1 -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,2591,9,999999999,10,0.045,0,88,0,0,1 -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,10,10,16,2438,9,999999999,9,0.045,0,88,0,0,1 -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,2743,9,999999999,9,0.045,0,88,0,0.8,1 -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,9,0.045,0,88,0,0,1 -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,2896,9,999999999,8,0.045,0,88,0,0,1 -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,1829,9,999999999,8,0.045,0,88,0,0,1 -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,2896,9,999999999,8,0.045,0,88,0,0,1 -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,92,83400,180,1397,277,58,0,58,5666,0,5706,1731,240,3.6,8,8,16,2743,9,999999999,8,0.045,0,88,0,0,1 -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,79,83500,397,1397,286,286,696,87,32444,33453,9903,3300,320,2.6,8,8,16,2591,9,999999999,8,0.045,0,88,0,0,1 -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,45334,42902,17671,5984,40,2.6,8,8,16,2591,9,999999999,8,0.045,0,88,0,0,1 -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,19432,875,18825,6827,60,3.1,8,8,16,2438,9,999999999,7,0.045,0,88,0,0,1 -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,62,83600,733,1397,307,546,716,169,63157,52685,19636,7271,90,3.1,9,9,16,2591,9,999999999,7,0.045,0,88,0,0,1 -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,55795,45655,18719,6913,0,0,8,8,16,2286,9,999999999,8,0.045,0,88,0,0,1 -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,38664,25556,22911,7535,70,3.1,7,7,16,6096,9,999999999,8,0.045,0,88,0,0,1 -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,37920,39035,13710,4570,50,2.1,6,6,16,6096,9,999999999,7,0.045,0,88,0,0,1 -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,15657,10896,6371,2056,80,4.1,6,6,16,6096,9,999999999,7,0.045,0,88,0,0,1 -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,1199,8265,858,155,70,4.1,7,7,16,6096,9,999999999,7,0.045,0,88,0,0,1 -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,2743,9,999999999,7,0.045,0,88,0,0,1 -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,3962,9,999999999,7,0.045,0,88,0,0,1 -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,-1.7,87,83300,0,0,264,0,0,0,0,0,0,0,160,3.6,8,6,16,3962,9,999999999,7,0.045,0,88,0,0,1 -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,3962,9,999999999,7,0.045,0,88,0,0,1 -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,-2.2,83,83200,0,0,277,0,0,0,0,0,0,0,160,3.6,10,9,16,2743,9,999999999,7,0.045,0,88,0,0,1 -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,-2.2,83,83400,0,0,277,0,0,0,0,0,0,0,170,3.1,10,9,16,2743,9,999999999,7,0.045,0,88,0,0,1 -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,-2.8,79,83100,0,0,276,0,0,0,0,0,0,0,170,4.1,9,9,16,2896,9,999999999,7,0.045,0,88,0,0,1 -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,-2.8,79,83100,0,0,276,0,0,0,0,0,0,0,200,4.6,10,9,16,3048,9,999999999,7,0.045,0,88,0,0,1 -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,10,9,16,2743,9,999999999,7,0.045,0,88,0,0,1 -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,-2.8,79,83200,0,0,276,0,0,0,0,0,0,0,0,0,10,9,16,2134,9,999999999,7,0.045,0,88,0,0,1 -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,-2.2,83,83200,0,0,277,0,0,0,0,0,0,0,30,2.6,10,9,16,2134,9,999999999,8,0.045,0,88,0,0,1 -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,-1.7,87,83500,0,0,285,0,0,0,0,0,0,0,320,2.1,10,10,16,1341,9,999999999,8,0.045,0,88,0,0,1 -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,1829,9,999999999,8,0.045,0,88,0,0,1 -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,1219,9,999999999,7,0.045,0,88,0,0,1 -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,2345,0,2362,909,350,5.2,9,9,16,1372,9,999999999,7,0.045,0,88,0,0,1 -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,24970,20918,14521,4286,350,7.2,8,8,16,1311,9,999999999,7,0.045,0,88,0,0,1 -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,12010,0,12108,4898,360,6.7,8,8,16,1067,9,999999999,7,0.045,0,88,0,0,1 -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,33674,12836,25530,8481,10,7.2,8,8,16,579,9,999999999,7,0.045,0,88,0,0,1 -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,-1.7,61,84000,728,1398,292,158,0,158,16164,0,16303,6882,360,7.2,8,8,16,1219,9,999999999,7,0.045,0,88,0,0,1 -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,20243,451,19989,7266,10,6.7,9,9,16,1189,9,999999999,7,0.045,0,88,0,0,1 -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,45906,39936,17662,6228,10,4.6,6,6,16,6096,9,999999999,6,0.045,0,88,0,0,1 -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,34330,32052,8694,3118,70,4.1,5,5,16,77777,9,999999999,7,0.045,0,88,0,0,1 -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,17710,9955,4230,1433,110,1.5,5,5,16,77777,9,999999999,7,0.045,0,88,0,0,1 -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,826,0,708,221,210,3.1,5,5,16,77777,9,999999999,7,0.045,0,88,0,0,1 -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,1829,9,999999999,6,0.045,0,88,0,0,1 -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,-2.8,79,84000,0,0,257,0,0,0,0,0,0,0,210,4.6,3,3,16,77777,9,999999999,6,0.045,0,88,0,0,1 -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,77777,9,999999999,6,0.045,0,88,0,0,1 -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,77777,9,999999999,6,0.045,0,88,0,0,1 -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,77777,9,999999999,5,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,51,83700,0,0,232,0,0,0,0,0,0,0,220,6.2,0,0,16,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,5,0.045,0,88,0,0,1 -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,5968,0,6010,1715,220,5.7,3,3,16,77777,9,999999999,5,0.045,0,88,0,0,1 -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,30963,32957,9786,3233,230,3.6,3,3,16,77777,9,999999999,5,0.045,0,88,0,0,1 -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,41240,38905,13333,4750,270,6.2,3,3,16,77777,9,999999999,5,0.045,0,88,0,0,1 -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,52329,45348,14839,5552,270,4.1,3,3,16,77777,9,999999999,6,0.045,0,88,0,0,1 -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,64924,54909,12424,4831,280,4.6,4,4,16,7620,9,999999999,6,0.045,0,88,0,0,1 -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,60740,50833,10477,4088,280,6.2,3,3,16,7620,9,999999999,6,0.045,0,88,0,0,1 -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,48378,43847,11419,4281,300,7.7,5,5,16,7620,9,999999999,7,0.045,0,88,0,0,1 -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,34986,34355,8594,3072,280,6.7,7,6,16,7620,9,999999999,6,0.045,0,88,0,0,1 -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,13,83900,270,1399,300,159,551,52,18125,14017,5943,1923,280,6.2,9,8,16,6706,9,999999999,6,0.045,0,88,0,0,1 -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,978,9146,691,131,270,4.6,7,7,16,7620,9,999999999,6,0.045,0,88,0,0,1 -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,7620,9,999999999,6,0.045,0,88,0,0,1 -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,7620,9,999999999,6,0.045,0,88,0,0,1 -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,77777,9,999999999,6,0.045,0,88,0,0,1 -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,6706,9,999999999,6,0.045,0,88,0,0,1 -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,-11.1,27,83200,0,0,265,0,0,0,0,0,0,0,210,6.7,3,2,16,6706,9,999999999,5,0.045,0,88,0,0,1 -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,-11.7,26,83200,0,0,264,0,0,0,0,0,0,0,210,7.2,3,2,16,77777,9,999999999,5,0.045,0,88,0,0,1 -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,-13.3,22,83000,0,0,267,0,0,0,0,0,0,0,220,7.2,6,4,16,6706,9,999999999,5,0.045,0,88,0,0,1 -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,-11.7,26,83000,0,0,267,0,0,0,0,0,0,0,210,6.2,6,3,16,6706,9,999999999,5,0.044,0,88,0,0,1 -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,6706,9,999999999,5,0.044,0,88,0,0,1 -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,6706,9,999999999,6,0.044,0,88,0,0,1 -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,6706,9,999999999,6,0.044,0,88,0,0,1 -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,6706,9,999999999,7,0.044,0,88,0,0,1 -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,6096,9,999999999,6,0.044,0,88,0,0,1 -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,6096,9,999999999,6,0.044,0,88,0,0,1 -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,3617,0,3642,1255,160,5.2,6,5,16,6096,9,999999999,6,0.044,0,88,0,0,1 -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,21454,17635,11328,3593,170,3.1,7,6,16,6096,9,999999999,7,0.044,0,88,0,0,1 -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,35959,30610,16061,5493,80,5.2,5,4,16,6096,9,999999999,7,0.044,0,88,0,0,1 -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,43162,30535,23331,7908,70,6.2,5,5,16,7620,9,999999999,7,0.044,0,88,0,0,1 -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,61441,52771,15833,6001,90,7.2,4,4,16,7620,9,999999999,7,0.044,0,88,0,0,1 -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,60557,52173,12150,4689,90,7.7,3,3,16,7620,9,999999999,7,0.044,0,88,0,0,1 -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,-15,10,83200,613,1399,303,390,621,117,45508,41315,13702,5018,90,5.7,6,3,16,7620,9,999999999,8,0.044,0,88,0,0,1 -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,34094,34409,11481,3929,120,5.2,9,7,16,7620,9,999999999,7,0.044,0,88,0,0,1 -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,12524,7266,8007,2406,40,2.6,10,6,16,7315,9,999999999,7,0.044,0,88,0,0,1 -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,-12.8,16,82800,50,921,300,1,0,1,97,0,97,40,90,3.1,8,8,16,7315,9,999999999,7,0.044,0,88,0,0,1 -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,4267,9,999999999,7,0.044,0,88,0,0,1 -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,3048,9,999999999,7,0.044,0,88,0,0,1 -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,4267,9,999999999,7,0.044,0,88,0,0,1 -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,3048,9,999999999,7,0.044,0,88,0,0,1 -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,1981,9,999999999,6,0.044,0,88,0,0,1 -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,2134,9,999999999,6,0.044,0,88,0,0,1 -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,3048,9,999999999,6,0.044,0,88,0,0,1 -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,2743,9,999999999,5,0.044,0,88,0,0,1 -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,-6.7,40,83200,0,0,293,0,0,0,0,0,0,0,360,2.6,9,9,16,3048,9,999999999,5,0.044,0,88,0,0,1 -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,2134,9,999999999,5,0.044,0,88,0,0,1 -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,77777,9,999999999,5,0.044,0,88,0,0,1 -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,77777,9,999999999,5,0.044,0,88,0,0,1 -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,77777,9,999999999,4,0.044,0,88,0,0,1 -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,77777,9,999999999,4,0.044,0,88,0,0,1 -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,6251,0,6294,1680,170,3.1,3,3,16,77777,9,999999999,4,0.044,0,88,0,0,1 -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,28956,26306,5803,2039,130,3.6,3,3,16,77777,9,999999999,4,0.044,0,88,0,0,1 -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,42938,40496,10056,3693,130,3.6,4,4,16,77777,9,999999999,4,0.044,0,88,0,0,1 -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,54892,49106,15561,5754,140,4.1,10,5,16,77777,9,999999999,4,0.044,0,88,0,0,1 -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,41634,23296,26243,8886,170,2.1,4,4,16,77777,9,999999999,4,0.044,0,88,0,0,1 -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,-9.4,22,83900,695,1400,291,505,758,127,59421,52016,15000,5661,200,3.1,5,4,16,77777,9,999999999,4,0.044,0,88,0,0,1 -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,53257,49621,10516,3955,250,1.5,4,4,16,77777,9,999999999,4,0.044,0,88,0,0,1 -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,35142,34237,7921,2841,250,1.5,7,6,16,77777,9,999999999,4,0.044,0,88,0,0,1 -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,-11.1,19,84000,263,1400,298,154,637,34,18099,10198,4003,1349,250,2.6,9,7,16,7315,9,999999999,4,0.044,0,88,0,0,1 -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,593,0,593,185,260,4.1,10,7,16,7315,9,999999999,4,0.044,0,88,0,0,1 -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,7315,9,999999999,4,0.044,0,88,0,0,1 -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,6706,9,999999999,4,0.044,0,88,0,0,1 -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,6096,9,999999999,4,0.044,0,88,0,0,1 -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,6096,9,999999999,4,0.044,0,88,0,0,1 -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,6096,9,999999999,5,0.044,0,88,0,0,1 -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,6096,9,999999999,5,0.044,0,88,0,0,1 -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,-14.4,20,83700,0,0,284,0,0,0,0,0,0,0,230,6.7,10,9,16,6096,9,999999999,5,0.044,0,88,0,0,1 -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,6096,9,999999999,6,0.044,0,88,0,0,1 -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,6096,9,999999999,6,0.044,0,88,0,0,1 -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,6096,9,999999999,6,0.044,0,88,0,0,1 -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,77777,9,999999999,6,0.044,0,88,0,0,1 -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,77777,9,999999999,6,0.044,0,88,0,0,1 -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,-13.9,21,83800,0,0,269,0,0,0,0,0,0,0,250,6.7,7,5,16,77777,9,999999999,6,0.044,0,88,0,0,1 -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,77777,9,999999999,6,0.044,0,88,0,0,1 -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,-11.1,27,83900,155,1400,272,40,0,40,3909,0,3936,1294,10,2.1,7,5,16,77777,9,999999999,5,0.044,0,88,0,0,1 -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,26,84100,371,1400,279,253,624,87,28546,30134,9850,3200,60,4.1,8,5,16,77777,9,999999999,5,0.044,0,88,0,0,1 -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,25,84100,544,1400,282,345,592,114,39741,37730,13180,4656,100,1.5,6,4,16,77777,9,999999999,5,0.044,0,88,0,0,1 -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,22,84000,659,1400,288,440,686,116,51796,45564,13704,5139,140,2.1,4,4,16,77777,9,999999999,5,0.044,0,88,0,0,1 -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,20,84100,709,1400,293,516,860,78,63174,52145,9575,3756,180,3.1,4,4,16,77777,9,999999999,5,0.044,0,88,0,0,1 -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,52746,85469,10080,1526,220,1.5,4,4,16,77777,9,999999999,6,0.044,0,88,0,0,1 -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,51650,46166,7936,3027,290,3.6,6,6,16,77777,9,999999999,6,0.044,0,88,0,0,1 -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,34292,76477,8046,1090,320,5.2,5,5,16,77777,9,999999999,6,0.044,0,88,0,0,1 -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,16837,55659,4683,675,280,5.2,3,3,16,77777,9,999999999,6,0.044,0,88,0,0,1 -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,875,10599,523,103,290,3.6,8,5,16,77777,9,999999999,7,0.044,0,88,0,0,1 -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,77777,9,999999999,7,0.044,0,88,0,0,1 -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,77777,9,999999999,8,0.044,0,88,0,0,1 -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,77777,9,999999999,8,0.044,0,88,0,0,1 -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,77777,9,999999999,9,0.044,0,88,0,0,1 -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,-6.7,40,84000,0,0,274,0,0,0,0,0,0,0,270,3.6,4,4,16,6706,9,999999999,9,0.044,0,88,0,0,1 -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,77777,9,999999999,9,0.044,0,88,0,0,1 -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,6706,9,999999999,9,0.044,0,88,0,0,1 -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,-6.7,40,83900,0,0,282,0,0,0,0,0,0,0,230,5.2,8,7,16,6706,9,999999999,9,0.044,0,88,0,0,1 -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,2591,9,999999999,9,0.044,0,88,0,0,1 -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,2591,9,999999999,9,0.044,0,88,0,0,1 -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,-6.1,42,84100,0,0,287,0,0,0,0,0,0,0,230,3.6,8,8,16,2438,9,999999999,8,0.044,0,88,0,0,1 -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,2438,9,999999999,8,0.044,0,88,0,0,1 -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,77777,9,999999999,8,0.044,0,88,0,0,1 -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,77777,9,999999999,8,0.044,0,88,0,0,1 -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,13246,3887,5728,1495,160,3.1,3,3,16,77777,9,999999999,8,0.044,0,88,0,0,1 -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,30301,29546,7189,2458,160,2.6,3,3,16,77777,9,999999999,8,0.044,0,88,0,0,1 -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,44858,42496,9044,3337,220,2.6,0,0,16,77777,9,999999999,8,0.044,0,88,0,0,1 -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,54327,46982,10705,4099,280,1.5,0,0,16,77777,9,999999999,8,0.044,0,88,0,0,1 -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,62327,50752,9558,3747,330,4.1,0,0,16,77777,9,999999999,9,0.044,0,88,0,0,1 -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,57316,47952,10990,4253,40,5.2,0,0,16,77777,9,999999999,9,0.044,0,88,0,0,1 -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,-3.9,26,84500,601,1401,303,418,816,67,50707,44655,8147,3103,20,5.7,0,0,16,77777,9,999999999,9,0.044,0,88,0,0,1 -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,33848,76169,7760,1078,60,4.6,1,1,16,77777,9,999999999,9,0.044,0,88,0,0,1 -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,15484,52280,4070,640,30,2.1,0,0,16,77777,9,999999999,9,0.044,0,88,0,0,1 -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,769,10210,523,102,0,0,2,2,16,77777,9,999999999,9,0.044,0,88,0,0,1 -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,-3.9,36,84400,0,0,283,0,0,0,0,0,0,0,140,1.5,0,0,16,77777,9,999999999,9,0.044,0,88,0,0,1 -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,77777,9,999999999,9,0.044,0,88,0,0,1 -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,77777,9,999999999,10,0.044,0,88,0,0,1 -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,77777,9,999999999,10,0.044,0,88,0,0,1 -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,-3.9,51,84100,0,0,263,0,0,0,0,0,0,0,180,4.6,0,0,16,77777,9,999999999,10,0.044,0,88,0,0,1 -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,-4.4,48,84100,0,0,263,0,0,0,0,0,0,0,200,6.2,0,0,16,77777,9,999999999,9,0.044,0,88,0,0,1 -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,77777,9,999999999,10,0.044,0,88,0,0,1 -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,63,83800,0,0,246,0,0,0,0,0,0,0,180,2.6,0,0,16,77777,9,999999999,10,0.044,0,88,0,0,1 -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,77777,9,999999999,10,0.044,0,88,0,0,1 -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,77777,9,999999999,10,0.044,0,88,0,0,1 -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,2438,9,999999999,11,0.044,0,88,0,0,1 -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,2286,9,999999999,11,0.044,0,88,0,0,1 -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,77777,9,999999999,11,0.044,0,88,0,0,1 -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,77777,9,999999999,11,0.044,0,88,0,0,1 -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,-3.3,53,84400,146,1402,275,98,609,35,10891,0,3900,1155,220,5.2,3,3,16,77777,9,999999999,10,0.044,0,88,0,0,1 -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,27234,24198,6209,2151,230,4.1,0,0,16,77777,9,999999999,10,0.044,0,88,0,0,1 -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,43524,40253,8368,3099,240,3.1,0,0,16,77777,9,999999999,10,0.044,0,88,0,0,1 -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,54529,46476,10019,3847,320,4.6,0,0,16,77777,9,999999999,9,0.044,0,88,0,0,1 -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,59550,48493,10561,4118,40,3.6,0,0,16,77777,9,999999999,9,0.044,0,88,0,0,1 -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.6,34,84700,682,1402,320,476,806,82,57682,47429,9965,3873,20,3.6,3,3,16,77777,9,999999999,9,0.044,0,88,0,0,1 -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,49081,42863,8584,3259,40,3.6,3,3,16,77777,9,999999999,9,0.044,0,88,0,0,1 -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,34853,31590,6459,2341,40,4.1,0,0,16,77777,9,999999999,9,0.044,0,88,0,0,1 -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,15737,6293,3764,1268,0,0,1,1,16,77777,9,999999999,9,0.044,0,88,0,0,1 -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,660,7936,522,101,0,0,5,5,16,77777,9,999999999,9,0.044,0,88,0,0,1 -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,77777,9,999999999,9,0.044,0,88,0,0,1 -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,77777,9,999999999,9,0.044,0,88,0,0,1 -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,-1.7,61,84100,0,0,265,0,0,0,0,0,0,0,170,4.1,0,0,16,77777,9,999999999,8,0.044,0,88,0,0,1 -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,77777,9,999999999,8,0.044,0,88,0,0,1 -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,77777,9,999999999,7,0.044,0,88,0,0,1 -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,77777,9,999999999,6,0.044,0,88,0,0,1 -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,77777,9,999999999,5,0.044,0,88,0,0,1 -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,77777,9,999999999,5,0.044,0,88,0,0,1 -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,77777,9,999999999,4,0.044,0,88,0,0,1 -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,-3.9,51,83600,0,0,268,0,0,0,0,0,0,0,210,8.2,1,1,16,77777,9,999999999,5,0.044,0,88,0,0,1 -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,-5,46,83500,0,0,262,0,0,0,0,0,0,0,210,7.7,0,0,16,77777,9,999999999,5,0.044,0,88,0,0,1 -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,-6.1,42,83600,0,0,261,0,0,0,0,0,0,0,220,8.8,0,0,16,77777,9,999999999,5,0.044,0,88,0,0,1 -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,77777,9,999999999,5,0.044,0,88,0,0,1 -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,77777,9,999999999,5,0.044,0,88,0,0,1 -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,11021,790,5204,1375,220,8.2,0,0,16,77777,9,999999999,5,0.044,0,88,0,0,1 -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,25193,23551,7068,2403,220,6.2,3,2,16,77777,9,999999999,5,0.044,0,88,0,0,1 -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,36891,33968,15454,5221,200,5.7,6,4,16,77777,9,999999999,5,0.044,0,88,0,0,1 -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,-8.3,13,83400,645,1402,333,491,783,129,57144,53502,15071,5538,250,3.6,5,3,16,77777,9,999999999,5,0.044,0,88,0,0,1 -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,10,84000,696,1402,342,474,638,156,54877,46985,18138,6650,270,8.2,7,5,16,77777,9,999999999,5,0.044,0,88,0,0,1 -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,10,83900,678,1402,345,517,848,105,61535,54885,12539,4783,290,9.3,9,6,16,77777,9,999999999,5,0.044,0,88,0,0,1 -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,50277,49281,16830,5862,310,5.2,9,5,16,7620,9,999999999,5,0.044,0,88,0,0,1 -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,18754,6852,15158,4737,320,2.6,10,4,16,6706,9,999999999,5,0.044,0,88,0,0,1 -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,11419,5785,7341,2205,360,4.1,9,4,16,6096,9,999999999,5,0.044,0,88,0,0,1 -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,193,0,194,78,320,9.3,7,7,16,6706,9,999999999,5,0.044,0,88,0,0,1 -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,6096,9,999999999,6,0.044,0,88,0,0,1 -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,4267,9,999999999,6,0.044,0,88,0,0,1 -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,-7.2,27,83700,0,0,294,0,0,0,0,0,0,0,30,4.6,8,4,16,4267,9,999999999,6,0.044,0,88,0,0,1 -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,4267,9,999999999,7,0.044,0,88,0,0,1 -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,48,83400,0,0,278,0,0,0,0,0,0,0,120,4.1,7,6,16,4267,9,999999999,7,0.044,0,88,0,0,1 -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,-4.4,48,83700,0,0,281,0,0,0,0,0,0,0,160,2.1,10,6,16,6096,9,999999999,8,0.044,0,88,0,0,1 -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,3962,9,999999999,8,0.044,0,88,0,0,1 -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,48,83500,0,0,281,0,0,0,0,0,0,0,270,2.6,7,7,16,77777,9,999999999,8,0.044,0,88,0,0,1 -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,6096,9,999999999,8,0.044,0,88,0,0,1 -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,6096,9,999999999,8,0.044,0,88,0,0,1 -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,6096,9,999999999,9,0.044,0,88,0,0,1 -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,6096,9,999999999,9,0.044,0,88,0,0,1 -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,-2.8,79,83200,0,0,270,0,0,0,0,0,0,0,180,3.1,10,8,16,6096,9,999999999,9,0.044,0,88,0,0,1 -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,6096,9,999999999,9,0.044,0,88,0,0,1 -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,1461,0,1471,577,120,3.1,8,5,16,6096,9,999999999,9,0.044,0,88,0,0,1 -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,65,83400,352,1403,287,189,376,94,21025,17648,10496,3283,150,4.6,7,5,16,6096,9,999999999,9,0.044,0,88,0,0,1 -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,54,83500,525,1403,305,240,173,175,26529,12931,19438,6084,180,6.7,8,7,16,6096,9,999999999,9,0.044,0,88,0,0,1 -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,43334,33541,20864,7141,270,3.6,9,8,16,6706,9,999999999,8,0.044,0,88,0,0,1 -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,52765,43635,14745,5570,280,5.2,6,6,16,6706,9,999999999,9,0.044,0,88,0,0,1 -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,51088,42744,14263,5365,300,1.5,8,7,16,7620,9,999999999,9,0.044,0,88,0,0,1 -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,-1.1,45,83100,590,1403,305,350,514,133,40135,34346,15313,5431,340,3.6,8,6,16,7620,9,999999999,9,0.044,0,88,0,0,1 -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,28932,26714,10973,3725,340,2.1,6,6,16,77777,9,999999999,9,0.044,0,88,0,0,1 -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,15611,9300,5671,1806,320,3.1,5,4,16,77777,9,999999999,8,0.044,0,88,0,0,1 -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,193,0,194,78,310,5.2,6,5,16,77777,9,999999999,8,0.044,0,88,0,0,1 -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,77777,9,999999999,7,0.044,0,88,0,0,1 -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,77777,9,999999999,7,0.044,0,88,0,0,1 -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,77777,9,999999999,7,0.044,0,88,0,0,1 -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,77777,9,999999999,7,0.044,0,88,0,0,1 -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,77777,9,999999999,8,0.044,0,88,0,0,1 -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,762,9,999999999,8,0.044,0,88,0,0,1 -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,701,9,999999999,8,0.044,0,88,0,0,1 -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,488,9,999999999,8,0.044,0,88,0,0,1 -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,549,9,999999999,9,0.044,0,88,0,0,1 -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,671,9,999999999,9,0.044,0,88,0,0,1 -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,-7,84,83000,0,0,260,0,0,0,0,0,0,0,350,7.7,10,10,14.5,840,9,999999999,9,0.044,0,88,0,0,1 -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,9,0.044,0,88,0,0,1 -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,9,0.044,0,88,0,0,1 -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,9,0.044,0,88,0,0,1 -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,-7,92,83400,132,1403,256,16,0,16,1559,0,1570,606,60,4.6,10,10,4.8,330,9,999999999,8,0.044,0,88,0,0,1 -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,10985,295,10804,3325,50,4.1,10,10,2.4,244,9,999999999,8,0.044,0,88,0,0,1 -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,-6.1,91,83600,520,1403,260,220,142,167,24418,10561,18623,5887,70,4.1,10,10,2.4,457,9,999999999,8,0.044,0,88,0,0,1 -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,16058,0,16192,6403,90,3.1,10,10,16,457,9,999999999,8,0.044,0,88,0,0,1 -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,10511,0,10600,4729,70,1.5,10,10,14.4,701,9,999999999,8,0.044,0,88,0,0,1 -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,14369,0,14490,6041,30,2.6,10,10,16,640,9,999999999,7,0.044,0,88,0,0,1 -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,12552,0,12654,5135,60,2.6,10,10,16,823,9,999999999,7,0.044,0,88,0,0,1 -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,4801,0,4838,2096,90,3.1,10,10,16,640,9,999999999,7,0.044,0,88,0,0,1 -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,5216,0,5254,1877,0,0,10,10,16,701,9,999999999,7,0.044,0,88,0,0,1 -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,484,0,363,113,80,2.6,10,10,14.4,823,9,999999999,8,0.044,0,88,0,0,1 -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,7,0.044,0,88,0,0,1 -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,-5.6,95,83700,0,0,261,0,0,0,0,0,0,0,110,3.6,10,10,3.2,762,9,999999999,7,0.044,0,88,0,0,1 -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,-6.1,91,83700,0,0,260,0,0,0,0,0,0,0,110,4.6,10,10,2,366,9,999999999,7,0.044,0,88,0,0,1 -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,-7,92,83600,0,0,256,0,0,0,0,0,0,0,110,4.6,10,10,0.8,150,9,999999999,7,0.044,0,88,0,0,1 -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,7,0.044,0,88,0,0,1 -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,7,0.044,0,88,0,0,1 -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,7,0.044,0,88,0,0,1 -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,7,0.044,0,88,0,0,1 -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,7,0.044,0,88,0,0,1 -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,7,0.044,0,88,0,0,1 -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,7,0.044,0,88,0,0,1 -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,7,0.044,0,88,0,0,1 -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,7,0.044,0,88,0,0,1 -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,4.6,30,9,999999999,7,0.044,0,88,0,0,1 -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,61,9,999999999,7,0.044,0,88,0,0,1 -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,8334,0,8396,3003,280,2.6,10,10,0.4,30,9,999999999,6,0.044,0,88,0,0,1 -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,6038,0,6086,2676,220,4.6,10,10,5.2,91,9,999999999,6,0.044,0,88,0,0,1 -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,54558,51745,21998,7343,220,6.2,4,4,9.6,77777,9,999999999,5,0.044,0,88,0,0,1 -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,56155,94008,9111,1459,220,4.1,3,3,11.2,77777,9,999999999,5,0.044,0,88,0,0,1 -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,58560,54141,18878,6744,220,3.6,3,3,11.2,77777,9,999999999,5,0.044,0,88,0,0,1 -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,11433,0,11526,4765,230,2.6,3,3,12.8,77777,9,999999999,4,0.044,0,88,0,0,1 -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,25528,17764,16841,4983,190,3.6,3,3,12.8,77777,9,999999999,4,0.044,0,88,0,0,1 -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,16145,12048,7212,2148,0,0,3,3,16,77777,9,999999999,4,0.044,0,88,0,0,1 -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,441,7517,353,73,80,4.1,3,3,12.8,77777,9,999999999,4,0.044,0,88,0,0,1 -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,4,0.044,0,88,0,0,1 -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,78,83300,0,0,215,0,0,0,0,0,0,0,150,3.6,0,0,16,77777,9,999999999,4,0.044,0,88,0,0,1 -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,77777,9,999999999,4,0.044,0,88,0,0,1 -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,77777,9,999999999,4,0.044,0,88,0,0,1 -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,77777,9,999999999,3,0.044,0,88,0,0,1 -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,77777,9,999999999,3,0.044,0,88,0,0,1 -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,77777,9,999999999,3,0.044,0,88,0,0,1 -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,77777,9,999999999,3,0.044,0,88,0,0,1 -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,77777,9,999999999,3,0.044,0,88,0,0,1 -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,77777,9,999999999,3,0.044,0,88,0,0,1 -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,77777,9,999999999,3,0.044,0,88,0,0,1 -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,77777,9,999999999,3,0.044,0,88,0,0,1 -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,77777,9,999999999,3,0.044,0,88,0,0,1 -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,77777,9,999999999,3,0.044,0,88,0,0,1 -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,77777,9,999999999,3,0.044,0,88,0,0,1 -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,28665,26600,5745,1971,140,4.1,0,0,16,77777,9,999999999,3,0.044,0,88,0,0,1 -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,40341,84355,8147,1175,110,5.2,0,0,16,77777,9,999999999,3,0.044,0,88,0,0,1 -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,50762,90725,9034,1378,130,4.6,0,0,16,77777,9,999999999,4,0.044,0,88,0,0,1 -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,55411,93192,9114,1454,130,3.1,0,0,16,77777,9,999999999,4,0.044,0,88,0,0,1 -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,59099,54724,15124,5603,0,0,0,0,16,77777,9,999999999,4,0.044,0,88,0,0,1 -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,38301,32198,18158,6129,140,2.1,0,0,16,77777,9,999999999,4,0.044,0,88,0,0,1 -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,29701,29281,10124,3456,110,2.6,0,0,16,77777,9,999999999,4,0.044,0,88,0,0,1 -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,15952,9976,5558,1758,120,2.1,0,0,16,77777,9,999999999,3,0.044,0,88,0,0,1 -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,77777,9,999999999,3,0.044,0,88,0,0,1 -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,77777,9,999999999,3,0.044,0,88,0,0,1 -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,77777,9,999999999,3,0.044,0,88,0,0,1 -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,77777,9,999999999,3,0.044,0,88,0,0,1 -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,71,83700,0,0,228,0,0,0,0,0,0,0,200,6.2,4,3,16,77777,9,999999999,3,0.044,0,88,0,0,1 -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,71,83700,0,0,237,0,0,0,0,0,0,0,210,6.2,8,7,16,77777,9,999999999,3,0.044,0,88,0,0,1 -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,68,83800,0,0,236,0,0,0,0,0,0,0,200,4.1,6,6,16,77777,9,999999999,3,0.044,0,88,0,0,1 -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,77777,9,999999999,3,0.044,0,88,0,0,1 -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,77777,9,999999999,3,0.044,0,88,0,0,1 -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,-11.7,56,83500,0,0,232,0,0,0,0,0,0,0,240,4.6,6,4,16,77777,9,999999999,3,0.044,0,88,0,0,1 -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,77777,9,999999999,3,0.044,0,88,0,0,1 -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,6706,9,999999999,3,0.044,0,88,0,0,1 -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,4572,9,999999999,4,0.044,0,88,0,0,1 -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,6706,9,999999999,4,0.044,0,88,0,0,1 -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,4572,9,999999999,4,0.044,0,88,0,0,1 -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,4572,9,999999999,5,0.044,0,88,0,0,1 -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,45,83700,334,1405,254,238,809,45,25170,69495,7088,836,230,5.2,6,6,16,4572,9,999999999,5,0.044,0,88,0,0,1 -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,43687,45971,12428,4318,250,2.6,8,8,16,2743,9,999999999,6,0.044,0,88,0,0,1 -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,45464,39777,17667,6214,290,3.1,7,7,16,5486,9,999999999,6,0.044,0,88,0,0,1 -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,61518,54908,12416,4733,300,1.5,6,6,16,77777,9,999999999,6,0.044,0,88,0,0,1 -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,29,83900,660,1405,278,506,949,58,53640,92654,8712,1401,20,2.6,6,6,16,77777,9,999999999,6,0.044,0,88,0,0,1 -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,29,83900,577,1405,273,429,910,54,45509,87317,8231,1268,130,2.6,4,4,16,77777,9,999999999,6,0.044,0,88,0,0,1 -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,33029,76933,7773,1039,0,0,6,6,16,77777,9,999999999,6,0.044,0,88,0,0,1 -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,15060,52885,4223,621,0,0,5,5,16,77777,9,999999999,6,0.044,0,88,0,0,1 -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,77777,9,999999999,5,0.044,0,88,0,0,1 -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,77777,9,999999999,5,0.044,0,88,0,0,1 -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,77777,9,999999999,5,0.044,0,88,0,0,1 -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,83,83800,0,0,234,0,0,0,0,0,0,0,150,4.6,0,0,16,77777,9,999999999,5,0.044,0,88,0,0,1 -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,77777,9,999999999,5,0.044,0,88,0,0,1 -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,77777,9,999999999,5,0.044,0,88,0,0,1 -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,77777,9,999999999,5,0.044,0,88,0,0,1 -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,-7.2,83,83700,0,0,225,0,0,0,0,0,0,0,160,4.1,0,0,16,77777,9,999999999,6,0.044,0,88,0,0,1 -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,-6.7,86,83600,0,0,225,0,0,0,0,0,0,0,170,4.6,0,0,16,77777,9,999999999,6,0.044,0,88,0,0,1 -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,77777,9,999999999,6,0.044,0,88,0,0,1 -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,77777,9,999999999,6,0.044,0,88,0,0,1 -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,77777,9,999999999,6,0.044,0,88,0,0,1 -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,77777,9,999999999,6,0.044,0,88,0,0,1 -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,77777,9,999999999,7,0.044,0,88,0,0,1 -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,77777,9,999999999,7,0.044,0,88,0,0,1 -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,77777,9,999999999,8,0.044,0,88,0,0,1 -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,27814,24956,5832,1988,210,8.2,0,0,16,77777,9,999999999,8,0.044,0,88,0,0,1 -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,39886,84567,8161,1162,210,6.2,1,1,16,77777,9,999999999,8,0.044,0,88,0,0,1 -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,50407,91009,8908,1359,220,3.6,1,1,16,77777,9,999999999,8,0.044,0,88,0,0,1 -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,54996,93388,8987,1434,0,0,1,1,16,77777,9,999999999,8,0.044,0,88,0,0,1 -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,53340,92518,8581,1387,100,1.5,0,0,16,77777,9,999999999,8,0.044,0,88,0,0,1 -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,45183,87174,7951,1247,120,2.1,1,1,16,77777,9,999999999,8,0.044,0,88,0,0,1 -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,-1.7,31,84300,431,1405,312,301,838,43,32218,76904,6744,1004,130,3.1,1,1,16,77777,9,999999999,8,0.044,0,88,0,0,1 -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,43,84200,237,1405,296,136,661,24,14670,52389,3918,603,110,3.6,0,0,16,77777,9,999999999,8,0.044,0,88,0,0,1 -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,60,83800,35,785,292,0,0,0,0,0,0,0,170,4.1,6,5,16,77777,9,999999999,8,0.044,0,88,0,0,1 -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,77777,9,999999999,8,0.044,0,88,0,0,1 -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,77777,9,999999999,7,0.044,0,88,0,0,1 -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,77777,9,999999999,7,0.044,0,88,0,0,1 -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,43,83800,0,0,266,0,0,0,0,0,0,0,210,7.7,0,0,16,77777,9,999999999,7,0.044,0,88,0,0,1 -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,-4.4,48,83600,0,0,263,0,0,0,0,0,0,0,220,5.7,0,0,16,77777,9,999999999,7,0.044,0,88,0,0,1 -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,-4.4,48,83700,0,0,263,0,0,0,0,0,0,0,230,5.7,0,0,16,77777,9,999999999,7,0.044,0,88,0,0,1 -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,77777,9,999999999,7,0.044,0,88,0,0,1 -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,77777,9,999999999,7,0.045,0,88,0,0,1 -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,-5,46,83300,0,0,271,0,0,0,0,0,0,0,210,7.2,2,2,16,77777,9,999999999,7,0.045,0,88,0,0,1 -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,-5.6,44,83200,0,0,262,0,0,0,0,0,0,0,210,7.2,0,0,16,77777,9,999999999,7,0.045,0,88,0,0,1 -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,-6.1,42,83200,0,0,261,0,0,0,0,0,0,0,210,8.2,0,0,16,77777,9,999999999,6,0.045,0,88,0,0,1 -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,77777,9,999999999,5,0.045,0,88,0,0,1 -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,77777,9,999999999,5,0.045,0,88,0,0,1 -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,77777,9,999999999,5,0.045,0,88,0,0,1 -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,77777,9,999999999,5,0.045,0,88,0,0,1 -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,27301,23018,5283,1813,230,5.7,6,5,16,77777,9,999999999,5,0.045,0,88,0,0,1 -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,39884,84310,8601,1165,240,2.6,6,5,16,77777,9,999999999,6,0.045,0,88,0,0,1 -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,49792,90388,8913,1354,50,2.6,3,3,16,77777,9,999999999,6,0.045,0,88,0,0,1 -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,54409,92821,8993,1430,80,6.2,2,2,16,77777,9,999999999,7,0.045,0,88,0,0,1 -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,53253,92385,8869,1402,90,7.2,3,3,16,77777,9,999999999,7,0.045,0,88,0,0,1 -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,51034,46342,7982,3006,60,6.7,2,2,16,77777,9,999999999,7,0.045,0,88,0,0,1 -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,33789,31499,6535,2338,60,5.2,3,3,16,77777,9,999999999,7,0.045,0,88,0,0,1 -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,-2.2,41,83700,235,1406,294,140,617,37,16134,6255,4273,1399,60,4.6,2,2,16,77777,9,999999999,8,0.045,0,88,0,0,1 -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,77777,9,999999999,8,0.045,0,88,0,0,1 -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,77777,9,999999999,8,0.045,0,88,0,0,1 -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,77777,9,999999999,8,0.045,0,88,0,0,1 -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,77777,9,999999999,9,0.045,0,88,0,0,1 -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,77777,9,999999999,9,0.045,0,88,0,0,1 -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,72,83500,0,0,240,0,0,0,0,0,0,0,160,4.1,0,0,16,77777,9,999999999,8,0.045,0,88,0,0,1 -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,77777,9,999999999,8,0.045,0,88,0,0,1 -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,77777,9,999999999,8,0.045,0,88,0,0,1 -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,77777,9,999999999,8,0.045,0,88,0,0,1 -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,77777,9,999999999,8,0.045,0,88,0,0,1 -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,51,83500,0,0,232,0,0,0,0,0,0,0,150,2.6,0,0,16,77777,9,999999999,8,0.045,0,88,0,0,1 -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,77777,9,999999999,8,0.045,0,88,0,0,1 -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,-10,65,83900,0,0,222,0,0,0,0,0,0,0,170,5.2,0,0,16,77777,9,999999999,8,0.045,0,88,0,0,1 -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,71,83500,0,0,219,0,0,0,0,0,0,0,160,4.1,0,0,16,77777,9,999999999,9,0.045,0,88,0,0,1 -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,77777,9,999999999,9,0.045,0,88,0,0,1 -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,6706,9,999999999,9,0.045,0,88,0,0,1 -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,27305,23915,5496,1872,130,3.6,1,1,16,6706,9,999999999,9,0.045,0,88,0,0,1 -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,39147,83363,8310,1152,130,4.6,0,0,16,6706,9,999999999,10,0.045,0,88,0,0,1 -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,31,84000,612,1406,264,468,936,59,49548,90481,8912,1348,120,4.6,2,2,16,6706,9,999999999,10,0.045,0,88,0,0,1 -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,54219,93022,8851,1416,180,2.6,1,1,16,6706,9,999999999,10,0.045,0,88,0,0,1 -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,52452,91453,8727,1389,230,3.1,4,4,16,77777,9,999999999,10,0.045,0,88,0,0,1 -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,48081,48218,16208,5578,300,1.5,7,6,16,6706,9,999999999,10,0.045,0,88,0,0,1 -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,16956,5076,14246,4420,0,0,5,4,16,6706,9,999999999,10,0.045,0,88,0,0,1 -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,14878,10684,7686,2194,80,1.5,2,2,16,77777,9,999999999,9,0.045,0,88,0,0,1 -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,77777,9,999999999,9,0.045,0,88,0,0,1 -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,77777,9,999999999,9,0.045,0,88,0,0,1 -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,77777,9,999999999,9,0.045,0,88,0,0,1 -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,77777,9,999999999,9,0.045,0,88,0,0,1 -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,77777,9,999999999,9,0.045,0,88,0,0,1 -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,51,83400,0,0,252,0,0,0,0,0,0,0,210,5.8,1,1,16,77777,9,999999999,9,0.045,0,88,0,0,1 -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,-7,59,83600,0,0,264,0,0,0,0,0,0,0,190,5.3,5,5,16,77777,9,999999999,9,0.045,0,88,0,0,1 -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,77777,9,999999999,10,0.045,0,88,0,0,1 -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,77777,9,999999999,6,0.045,0,88,0,0,1 -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,40,77777,9,999999999,6,0.045,0,88,0,0,1 -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,77777,9,999999999,6,0.045,0,88,0,0,1 -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,77777,9,999999999,6,0.045,0,88,0,0,1 -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,77777,9,999999999,6,0.045,0,88,0,0,1 -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,77777,9,999999999,6,0.045,0,88,0,0,1 -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,77777,9,999999999,6,0.045,0,88,0,0,1 -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,4603,0,2475,740,210,4.1,2,1,120,77777,9,999999999,6,0.045,0,88,0,0,1 -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,21167,17172,5595,1897,190,5.2,3,1,120,77777,9,999999999,6,0.045,0,88,0,0,1 -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,-7.8,18,83400,491,1407,299,333,817,48,35420,76460,7437,1115,190,5.2,1,0,112,77777,9,999999999,5,0.045,0,88,0,0,1 -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,46073,84381,8632,1328,210,4.1,1,0,120,77777,9,999999999,5,0.045,0,88,0,0,1 -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,-7.8,13,83300,662,1407,320,474,878,60,50265,85815,8998,1420,310,2.1,1,0,120,77777,9,999999999,5,0.045,0,88,0,0,1 -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,49915,86961,8874,1394,340,3.6,1,0,120,77777,9,999999999,5,0.045,0,88,0,0,1 -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,43328,84763,7810,1228,10,4.1,0,0,120,77777,9,999999999,5,0.045,0,88,0,0,1 -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,30296,73078,6596,988,40,4.6,0,0,120,77777,9,999999999,5,0.045,0,88,0,0,1 -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,21,83200,232,1407,309,129,607,29,13766,47395,4687,618,80,3.6,0,0,104,77777,9,999999999,5,0.045,0,88,0,0,1 -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,26,83200,33,762,295,11,137,5,0,0,0,0,50,3.1,0,0,104,77777,9,999999999,5,0.045,0,88,0,0,1 -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,35,83200,0,0,277,0,0,0,0,0,0,0,130,3.1,0,0,80,77777,9,999999999,5,0.045,0,88,0,0,1 -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,77777,9,999999999,5,0.045,0,88,0,0,1 -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,77777,9,999999999,5,0.045,0,88,0,0,1 -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,48,83200,0,0,260,0,0,0,0,0,0,0,180,3.6,0,0,48,77777,9,999999999,5,0.045,0,88,0,0,1 -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,77777,9,999999999,5,0.045,0,88,0,0,1 -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,77777,9,999999999,5,0.045,0,88,0,0,1 -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,77777,9,999999999,5,0.045,0,88,0,0,1 -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,77777,9,999999999,5,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,48,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,5029,27406,2162,307,190,4.1,0,0,112,77777,9,999999999,4,0.045,0,88,0,0,1 -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,21591,66679,4214,708,200,4.1,0,0,112,77777,9,999999999,5,0.045,0,88,0,0,1 -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,35448,77525,6997,1087,190,3.6,1,1,112,77777,9,999999999,5,0.045,0,88,0,0,1 -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,16,82900,605,1407,298,429,885,48,45691,85535,7337,1233,200,3.1,1,1,112,77777,9,999999999,5,0.045,0,88,0,0,1 -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,48949,82952,9707,1451,120,2.1,1,1,112,77777,9,999999999,5,0.045,0,88,0,0,1 -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,49198,88782,6575,1191,30,1.5,1,1,112,77777,9,999999999,5,0.045,0,88,0,0,1 -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,47285,46880,12154,4390,310,5.2,5,5,112,77777,9,999999999,5,0.045,0,88,0,0,1 -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,32327,33597,9660,3286,10,4.6,5,5,112,77777,9,999999999,5,0.045,0,88,0,0,1 -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,-11.7,13,82900,231,1407,300,135,672,25,14406,52198,4068,600,20,3.6,1,1,112,77777,9,999999999,5,0.045,0,88,0,0,1 -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,0,0,0,0,360,2.6,1,1,112,77777,9,999999999,5,0.045,0,88,0,0,1 -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,77777,9,999999999,5,0.045,0,88,0,0,1 -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,4267,9,999999999,5,0.045,0,88,0,0,1 -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,77777,9,999999999,5,0.045,0,88,0,0,1 -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,77777,9,999999999,5,0.045,0,88,0,0,1 -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,77777,9,999999999,5,0.045,0,88,0,0,1 -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,4267,9,999999999,5,0.045,0,88,0,0,1 -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,4267,9,999999999,6,0.045,0,88,0,0,1 -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,5486,9,999999999,6,0.046,0,88,0,0,1 -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,77777,9,999999999,6,0.046,0,88,0,0,1 -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,77777,9,999999999,6,0.046,0,88,0,0,1 -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,77777,9,999999999,6,0.046,0,88,0,0,1 -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,77777,9,999999999,6,0.046,0,88,0,0,1 -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,77777,9,999999999,6,0.046,0,88,0,0,1 -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,1,1,96,77777,9,999999999,6,0.046,0,88,0,0,1 -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,36,83400,96,1302,252,33,169,21,3698,0,2358,699,240,1.5,1,1,112,77777,9,999999999,6,0.046,0,88,0,0,1 -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,18738,14702,5797,1945,200,4.1,1,1,112,77777,9,999999999,6,0.046,0,88,0,0,1 -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,20,83400,483,1408,284,297,670,66,35203,33428,7842,2841,190,3.6,2,1,112,77777,9,999999999,6,0.046,0,88,0,0,1 -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,39881,34376,15578,5530,200,3.1,8,3,112,77777,9,999999999,6,0.046,0,88,0,0,1 -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,51088,45870,17139,6184,120,3.1,7,2,112,77777,9,999999999,6,0.046,0,88,0,0,1 -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,47391,41200,19637,6813,90,3.1,8,3,112,77777,9,999999999,6,0.046,0,88,0,0,1 -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,40587,38152,13540,4804,110,2.6,7,2,112,77777,9,999999999,6,0.046,0,88,0,0,1 -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,-11.1,14,83100,422,1408,310,229,441,96,25957,23879,10920,3622,350,3.6,9,4,112,77777,9,999999999,6,0.046,0,88,0,0,1 -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,10282,3171,8475,2293,350,3.1,10,6,96,7620,9,999999999,6,0.046,0,88,0,0,1 -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,0,0,0,0,340,2.1,10,9,80,7925,9,999999999,6,0.046,0,88,0,0,1 -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,7925,9,999999999,6,0.046,0,88,0,0,1 -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,10,10,48,7925,9,999999999,6,0.046,0,88,0,0,1 -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,7925,9,999999999,6,0.046,0,88,0,0,1 -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,7925,9,999999999,6,0.046,0,88,0,0,1 -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,7925,9,999999999,6,0.046,0,88,0,0,1 -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,4877,9,999999999,6,0.046,0,88,0,0,1 -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,4877,9,999999999,6,0.046,0,88,0,0,1 -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,56,83000,0,0,291,0,0,0,0,0,0,0,170,2.1,10,10,48,4877,9,999999999,6,0.046,0,88,0,0,1 -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,4572,9,999999999,6,0.046,0,88,0,0,1 -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,4572,9,999999999,6,0.046,0,88,0,0,1 -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,5486,9,999999999,6,0.046,0,88,0,0,1 -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,5486,9,999999999,6,0.046,0,88,0,0,1 -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,5486,9,999999999,6,0.046,0,88,0,0,1 -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,5486,9,999999999,6,0.046,0,88,0,0,1 -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,3301,0,2758,778,110,2.1,5,5,112,77777,9,999999999,6,0.046,0,88,0,0,1 -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,37,83300,305,1408,289,204,691,54,23405,20107,6211,2059,120,2.6,4,4,112,77777,9,999999999,6,0.046,0,88,0,0,1 -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,31122,28898,11178,3874,340,2.6,4,3,112,77777,9,999999999,6,0.046,0,88,0,0,1 -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,50650,47672,11463,4248,300,5.7,2,2,112,77777,9,999999999,6,0.046,0,88,0,0,1 -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,46687,39533,17972,6413,160,2.1,3,3,112,77777,9,999999999,6,0.046,0,88,0,0,1 -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,54729,48951,10449,3975,130,2.6,2,2,112,77777,9,999999999,6,0.046,0,88,0,0,1 -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,-7.8,18,83200,561,1408,314,313,536,100,36506,32543,11702,4239,160,2.1,4,4,104,77777,9,999999999,6,0.046,0,88,0,0,1 -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,22027,17786,9847,3333,70,8.2,4,4,104,77777,9,999999999,6,0.046,0,88,0,0,1 -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,7292,1484,4683,1502,80,7.7,4,4,104,77777,9,999999999,7,0.046,0,88,0,0,1 -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,0,0,0,0,60,5.2,4,4,80,77777,9,999999999,7,0.046,0,88,0,0,1 -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,77777,9,999999999,7,0.046,0,88,0,0,1 -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,488,9,999999999,7,0.046,0,88,0,0,1 -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,6096,9,999999999,7,0.046,0,88,0,0,1 -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,396,9,999999999,7,0.046,0,88,0,0,1 -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,305,9,999999999,7,0.046,0,88,0,0,1 -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,213,9,999999999,7,0.046,0,88,0,0,1 -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,7,0.046,0,88,0,0,1 -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,7,0.046,0,88,0,0,1 -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,7,0.046,0,88,0,0,1 -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,7,0.046,0,88,0,0,1 -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,7,0.046,0,88,0,0,1 -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,10,10,0.8,30,9,999999999,7,0.046,0,88,0,0,1 -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,7,0.046,0,88,0,0,1 -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,10,9,3.2,61,9,999999999,8,0.046,0,88,0,0,1 -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,1067,0,1074,408,0,0,10,10,2.8,61,9,999999999,8,0.046,0,88,0,0,1 -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,4543,0,4576,1802,70,1.5,10,10,4,183,9,999999999,8,0.046,0,88,0,0,1 -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,7513,0,7573,3145,10,3.1,10,10,1.6,122,9,999999999,8,0.046,0,88,0,0,1 -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,9714,0,9793,4202,40,2.6,10,10,2.4,152,9,999999999,8,0.046,0,88,0,0,1 -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,-2.2,83,83300,650,1409,284,126,0,126,12802,0,12910,5438,30,2.1,10,10,6.4,244,9,999999999,9,0.046,0,88,0,0,1 -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,18677,0,18832,7091,80,4.1,10,10,9.6,6096,9,999999999,9,0.046,0,88,0,0,1 -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,39457,35867,13932,4909,360,4.6,10,6,16,6096,9,999999999,9,0.046,0,88,0,0,1 -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,17531,7419,13481,4213,320,4.6,10,8,12.8,7315,9,999999999,9,0.046,0,88,0,0,1 -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,-2.8,79,83200,228,1409,266,84,71,72,9135,1878,7859,2189,350,4.6,10,7,14.4,7315,9,999999999,9,0.046,0,88,0,0,1 -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,0,0,0,0,360,3.6,10,9,11.2,4267,9,999999999,9,0.046,0,88,0,0,1 -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,10,0.046,0,88,0,0,1 -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,10,0.046,0,88,0,0,1 -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,10,10,9.6,366,9,999999999,10,0.046,0,88,0,0,1 -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,10,9,9.6,4267,9,999999999,10,0.046,0,88,0,0,1 -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,10,10,8,366,9,999999999,10,0.046,0,88,0,0,1 -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,10,10,8,366,9,999999999,11,0.046,0,88,0,0,1 -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,2,2,8,77777,9,999999999,11,0.046,0,88,0,0,1 -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,77777,9,999999999,11,0.046,0,88,0,0,1 -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,10,9,8,4572,9,999999999,11,0.046,0,88,0,0,1 -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,11,0.046,0,88,0,0,1 -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,12,0.046,0,88,0,0,1 -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,12,0.046,0,88,0,0,1 -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,11,0.046,0,88,0,0,1 -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,1676,9,999999999,11,0.046,0,88,0,0,1 -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,1261,0,1269,467,360,2.6,10,10,6.4,244,9,999999999,11,0.046,0,88,0,0,1 -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,4443,0,4475,1763,20,1.5,10,10,1,152,9,999999999,11,0.046,0,88,0,0,1 -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,7511,0,7570,3137,360,2.1,10,10,0.8,122,9,999999999,10,0.046,0,88,0,0,1 -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,11530,0,11625,4817,70,2.6,10,10,1.2,244,9,999999999,10,0.046,0,88,0,0,1 -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,12700,0,12806,5392,360,4.1,10,10,4.8,366,9,999999999,10,0.046,0,88,0,0,1 -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,14922,0,15046,6050,350,2.6,10,10,11.2,427,9,999999999,9,0.046,0,88,0,0,1 -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,12912,0,13017,5110,320,2.1,10,10,16,671,9,999999999,9,0.046,0,88,0,0,1 -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,7777,0,7836,3083,360,3.6,10,10,16,396,9,999999999,9,0.046,0,88,0,0,1 -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,4710,0,4744,1686,90,1.5,10,10,16,427,9,999999999,9,0.046,0,88,0,0,1 -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,0,0,0,0,140,1.5,10,10,12.8,335,9,999999999,8,0.046,0,88,0,0,1 -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,8,0.046,0,88,0,0,1 -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,8,0.046,0,88,0,0,1 -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,8,0.046,0,88,0,0,1 -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,7,0.046,0,88,0,0,1 -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,7,0.046,0,88,0,0,1 -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,95,83400,0,0,229,0,0,0,0,0,0,0,110,3.1,0,0,11.2,77777,9,999999999,7,0.046,0,88,0,0,1 -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,-6.1,91,83500,0,0,226,0,0,0,0,0,0,0,130,2.1,0,0,16,77777,9,999999999,6,0.046,0,88,0,0,1 -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,77777,9,999999999,6,0.045,0,88,0,0,1 -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,77777,9,999999999,6,0.045,0,88,0,0,1 -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,77777,9,999999999,6,0.045,0,88,0,0,1 -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,77777,9,999999999,5,0.045,0,88,0,0,1 -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,77777,9,999999999,5,0.045,0,88,0,0,1 -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,77777,9,999999999,5,0.045,0,88,0,0,1 -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,6706,9,999999999,5,0.045,0,88,0,0,1 -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,2343,0,2124,621,150,4.6,9,7,112,6706,9,999999999,5,0.045,0,88,0,0,1 -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,10343,3126,8481,2601,110,3.1,8,8,112,6706,9,999999999,5,0.045,0,88,0,0,1 -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,18289,3955,16143,5045,130,4.1,9,9,112,4877,9,999999999,5,0.045,0,88,0,0,1 -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,14784,4004,11654,4290,150,4.6,9,9,96,4572,9,999999999,5,0.045,0,88,0,0,1 -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,-5.6,31,83300,645,1409,300,358,468,144,41243,33018,16658,6002,180,7.2,7,6,96,6706,9,999999999,5,0.045,0,88,0,0,1 -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,32631,18689,20192,6906,350,5.2,8,5,112,6706,9,999999999,5,0.045,0,88,0,0,1 -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,42487,39873,11998,4321,350,4.6,2,2,64,77777,9,999999999,5,0.045,0,88,0,0,1 -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,25262,22551,10572,3516,360,5.2,3,3,48,77777,9,999999999,5,0.045,0,88,0,0,1 -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,10126,3827,6027,1829,10,3.1,4,4,16,77777,9,999999999,5,0.045,0,88,0,0,1 -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,-2.2,83,83200,31,763,259,11,19,10,0,0,0,0,350,2.1,6,4,16,3962,9,999999999,5,0.045,0,88,0,0,1 -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,3962,9,999999999,5,0.045,0,88,0,0,1 -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,77777,9,999999999,5,0.045,0,88,0,0,1 -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,77777,9,999999999,5,0.045,0,88,0,0,1 -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,396,9,999999999,5,0.045,0,88,0,0,1 -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,427,9,999999999,5,0.045,0,88,0,0,1 -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,488,9,999999999,5,0.045,0,88,0,0,1 -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,305,9,999999999,5,0.045,0,88,0,0,1 -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,5,0.045,0,88,0,0,1 -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,5,0.045,0,88,0,0,1 -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,5,0.045,0,88,0,0,1 -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,5,0.045,0,88,0,0,1 -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,274,9,999999999,5,0.045,0,88,0,0,1 -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,5,0.045,0,88,0,0,1 -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,5,0.045,0,88,0,0,1 -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,1164,0,1171,430,60,2.6,10,10,9.6,1402,9,999999999,5,0.045,0,88,0,0,1 -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,7566,736,7022,2245,80,2.6,10,9,6.4,427,9,999999999,5,0.045,0,88,0,0,1 -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,10120,0,10199,3940,10,1.5,10,10,6.4,427,9,999999999,5,0.045,0,88,0,0,1 -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,20734,3490,18564,6245,80,2.1,7,7,16,1280,9,999999999,4,0.045,0,88,0,0,1 -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,40814,27132,24818,7977,70,3.6,8,8,19.2,2134,9,999999999,4,0.045,0,88,0,0,1 -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,14421,0,14540,5875,70,3.1,10,10,19.2,1676,9,999999999,4,0.045,0,88,0,0,1 -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,26593,5880,23654,6983,350,1.5,10,9,19.2,1280,9,999999999,4,0.045,0,88,0,0,1 -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,18731,11529,11934,3848,50,2.6,10,7,19.2,1524,9,999999999,4,0.045,0,88,0,0,1 -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,11927,2944,10817,2465,0,0,8,8,19.2,3048,9,999999999,4,0.045,0,88,0,0,1 -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,0,0,0,0,160,3.6,5,2,19.2,77777,9,999999999,4,0.045,0,88,0,0,1 -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,4,0.045,0,88,0,0,1 -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,4,0.045,0,88,0,0,1 -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,-7.8,79,84100,0,0,224,0,0,0,0,0,0,0,200,3.1,0,0,32,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,3,0.045,0,88,0,0,1 -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,77777,9,999999999,3,0.045,0,88,0,0,1 -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,77777,9,999999999,3,0.045,0,88,0,0,1 -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,77777,9,999999999,3,0.045,0,88,0,0,1 -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,77777,9,999999999,3,0.045,0,88,0,0,1 -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,77777,9,999999999,3,0.045,0,88,0,0,1 -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,77777,9,999999999,3,0.045,0,88,0,0,1 -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,77777,9,999999999,3,0.045,0,88,0,0,1 -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,77777,9,999999999,3,0.045,0,88,0,0,1 -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,77777,9,999999999,3,0.045,0,88,0,0,1 -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,3377,0,1805,535,180,4.1,5,2,112,77777,9,999999999,3,0.045,0,88,0,0,1 -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,16990,13221,6288,2043,210,3.1,3,3,112,77777,9,999999999,3,0.045,0,88,0,0,1 -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,34783,33381,6708,2430,190,5.2,1,1,112,77777,9,999999999,3,0.045,0,88,0,0,1 -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,44658,42866,14247,5072,200,4.6,3,3,112,77777,9,999999999,3,0.045,0,88,0,0,1 -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,55353,50827,10792,4090,180,4.1,2,2,112,77777,9,999999999,3,0.045,0,88,0,0,1 -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,42787,37185,11326,4255,30,1.5,3,3,112,77777,9,999999999,3,0.045,0,88,0,0,1 -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,43611,43418,12770,4538,290,4.1,6,2,112,77777,9,999999999,3,0.045,0,88,0,0,1 -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,26874,25592,7932,2755,300,9.8,3,3,96,77777,9,999999999,3,0.045,0,88,0,0,1 -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,13106,5505,4683,1494,330,5.2,4,2,96,77777,9,999999999,3,0.045,0,88,0,0,1 -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,0,0,0,0,310,8.2,4,3,96,77777,9,999999999,3,0.045,0,88,0,0,1 -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,77777,9,999999999,3,0.045,0,88,0,0,1 -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,77777,9,999999999,2,0.045,0,88,0,0,1 -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,77777,9,999999999,2,0.045,0,88,0,0,1 -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,77777,9,999999999,2,0.045,0,88,0,0,1 -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,-15.6,39,84100,0,0,218,0,0,0,0,0,0,0,350,3.1,0,0,32,77777,9,999999999,2,0.045,0,88,0,0,1 -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,32,77777,9,999999999,2,0.045,0,88,0,0,1 -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,48,84200,0,0,213,0,0,0,0,0,0,0,0,0,0,0,32,77777,9,999999999,2,0.045,0,88,0,0,1 -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,48,77777,9,999999999,2,0.045,0,88,0,0,1 -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,48,77777,9,999999999,2,0.045,0,88,0,0,1 -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,77777,9,999999999,2,0.045,0,88,0,0,1 -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,58,84300,0,0,206,0,0,0,0,0,0,0,180,2.6,0,0,48,77777,9,999999999,2,0.045,0,88,0,0,1 -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,60,84300,0,0,204,0,0,0,0,0,0,0,170,3.1,0,0,48,77777,9,999999999,2,0.045,0,88,0,0,1 -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,67,84400,0,0,200,0,0,0,0,0,0,0,130,2.6,0,0,48,77777,9,999999999,2,0.045,0,88,0,0,1 -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,77777,9,999999999,2,0.045,0,88,0,0,1 -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,3521,19722,1672,238,170,4.6,0,0,777.7,77777,9,999999999,2,0.045,0,88,0,0,1 -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,-16.1,37,84500,285,1411,217,179,758,26,19125,62430,4218,679,150,6.2,0,0,777.7,77777,9,999999999,2,0.045,0,88,0,0,1 -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,31,84500,460,1411,229,322,870,38,34325,80220,5975,985,150,4.1,1,0,777.7,77777,9,999999999,3,0.045,0,88,0,0,1 -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,45849,89618,6922,1173,150,5.7,1,0,777.7,77777,9,999999999,3,0.045,0,88,0,0,1 -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,51826,94551,7017,1231,150,3.1,0,0,120,77777,9,999999999,3,0.045,0,88,0,0,1 -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,50893,93981,6881,1209,330,3.1,0,0,120,77777,9,999999999,3,0.045,0,88,0,0,1 -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,43600,89335,6359,1095,350,3.1,0,0,120,77777,9,999999999,3,0.045,0,88,0,0,1 -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,30714,78083,5250,882,350,5.2,0,0,96,77777,9,999999999,3,0.045,0,88,0,0,1 -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,14226,52793,3758,575,330,4.6,0,0,88,77777,9,999999999,3,0.045,0,88,0,0,1 -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,49,84100,31,764,233,12,192,4,0,0,0,0,310,2.6,0,0,88,77777,9,999999999,3,0.045,0,88,0,0,1 -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,56,84000,0,0,228,0,0,0,0,0,0,0,310,2.1,0,0,32,77777,9,999999999,3,0.045,0,88,0,0,1 -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,-10,65,84000,0,0,222,0,0,0,0,0,0,0,0,0,1,0,32,77777,9,999999999,3,0.045,0,88,0,0,1 -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,61,84000,0,0,234,0,0,0,0,0,0,0,160,2.1,5,3,32,77777,9,999999999,3,0.045,0,88,0,0,1 -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,-10,65,83900,0,0,240,0,0,0,0,0,0,0,160,2.1,9,7,32,6706,9,999999999,3,0.045,0,88,0,0,1 -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,68,83800,0,0,233,0,0,0,0,0,0,0,190,2.1,8,5,32,6706,9,999999999,3,0.045,0,88,0,0,1 -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,68,83700,0,0,238,0,0,0,0,0,0,0,120,2.1,10,7,32,6706,9,999999999,3,0.045,0,88,0,0,1 -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,10,8,32,6706,9,999999999,3,0.045,0,88,0,0,1 -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,68,83500,0,0,254,0,0,0,0,0,0,0,0,0,10,10,32,6706,9,999999999,4,0.045,0,88,0,0,1 -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,75,83400,0,0,250,0,0,0,0,0,0,0,290,1.5,10,10,32,6706,9,999999999,4,0.045,0,88,0,0,1 -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,6096,9,999999999,4,0.045,0,88,0,0,1 -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,68,83200,0,0,254,0,0,0,0,0,0,0,170,1.5,10,10,32,5486,9,999999999,4,0.045,0,88,0,0,1 -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,68,83000,0,0,254,0,0,0,0,0,0,0,120,2.1,10,10,32,5486,9,999999999,4,0.045,0,88,0,0,1 -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,-8.9,71,82900,0,0,258,0,0,0,0,0,0,0,140,2.1,10,10,32,4572,9,999999999,4,0.045,0,88,0,0,1 -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,4572,9,999999999,4,0.045,0,88,0,0,1 -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,-9.4,68,82700,72,1141,250,17,14,16,1901,0,1793,524,340,2.1,9,9,112,4572,9,999999999,4,0.045,0,88,0,0,1 -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,59,82600,282,1411,254,83,0,83,8194,0,8254,2679,60,1.5,10,9,112,3658,9,999999999,4,0.045,0,88,0,0,1 -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,12120,0,12214,4430,330,5.7,10,10,112,4572,9,999999999,4,0.045,0,88,0,0,1 -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,21508,4926,18438,6167,10,2.6,10,9,112,4572,9,999999999,4,0.045,0,88,0,0,1 -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,47,82600,637,1411,264,425,315,282,46285,30602,30893,8809,70,3.1,10,9,96,3962,9,999999999,4,0.045,0,88,0,0,1 -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,24378,7828,19250,6621,150,2.1,10,9,96,3962,9,999999999,4,0.045,0,88,0,0,1 -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,40825,38818,11031,3998,310,2.6,5,2,96,77777,9,999999999,4,0.045,0,88,0,0,1 -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,12367,2944,10474,3474,310,7.7,9,9,96,3962,9,999999999,4,0.045,0,88,0,0,1 -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,16,82800,226,1411,274,94,206,60,10383,4497,6649,1953,280,8.2,7,4,96,77777,9,999999999,4,0.045,0,88,0,0,1 -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,0,0,0,0,310,9.8,4,4,80,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,32,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,48,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,-13.3,48,83800,69,1117,229,18,89,12,2055,0,1372,417,160,3.6,3,3,96,77777,9,999999999,4,0.045,0,88,0,0,1 -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,15529,9703,4562,1533,160,3.6,2,2,112,77777,9,999999999,4,0.045,0,88,0,0,1 -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,35814,37613,10480,3599,190,3.1,3,3,112,77777,9,999999999,4,0.045,0,88,0,0,1 -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,47136,44454,9333,3480,150,3.1,2,2,112,77777,9,999999999,4,0.045,0,88,0,0,1 -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,44403,38690,11879,4453,150,6.7,3,3,112,77777,9,999999999,4,0.045,0,88,0,0,1 -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,49488,45409,11968,4464,160,7.7,2,2,112,77777,9,999999999,4,0.045,0,88,0,0,1 -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,34045,29054,15090,5184,140,8.2,3,3,112,77777,9,999999999,4,0.045,0,88,0,0,1 -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,27631,26521,8033,2783,140,5.2,4,2,112,77777,9,999999999,5,0.045,0,88,0,0,1 -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,12076,4800,4682,1492,140,3.1,5,3,96,77777,9,999999999,5,0.045,0,88,0,0,1 -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,0,0,0,0,360,1,6,6,64,5486,9,999999999,5,0.045,0,88,0,0,1 -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,8,6,32,7010,9,999999999,5,0.045,0,88,0,0,1 -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,-8.3,49,83500,0,0,253,0,0,0,0,0,0,0,160,1.5,5,4,32,77777,9,999999999,5,0.045,0,88,0,0,1 -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,77777,9,999999999,5,0.045,0,88,0,0,1 -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,77777,9,999999999,5,0.045,0,88,0,0,1 -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,54,83500,0,0,242,0,0,0,0,0,0,0,90,2.1,4,4,32,77777,9,999999999,5,0.045,0,88,0,0,1 -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,56,83500,0,0,240,0,0,0,0,0,0,0,350,1,4,4,32,77777,9,999999999,5,0.045,0,88,0,0,1 -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,5182,9,999999999,5,0.045,0,88,0,0,1 -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,77777,9,999999999,5,0.046,0,88,0,0,1 -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,4267,9,999999999,6,0.046,0,88,0,0,1 -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,3962,9,999999999,6,0.046,0,88,0,0,1 -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,4267,9,999999999,6,0.046,0,88,0,0,1 -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,3353,9,999999999,6,0.046,0,88,0,0,1 -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,1,1,32,77777,9,999999999,6,0.046,0,88,0,0,1 -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,77777,9,999999999,6,0.046,0,88,0,0,1 -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,-8.3,75,83300,67,1118,228,25,227,12,2844,0,1367,413,160,2.1,1,1,96,77777,9,999999999,6,0.046,0,88,0,0,1 -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,17136,10595,4555,1528,0,0,1,1,96,77777,9,999999999,6,0.046,0,88,0,0,1 -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,34464,31708,5795,2105,340,1.5,1,1,96,77777,9,999999999,6,0.046,0,88,0,0,1 -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,41927,79033,9105,1293,20,2.1,1,1,96,77777,9,999999999,6,0.046,0,88,0,0,1 -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,46514,82329,8609,1354,10,3.1,1,1,88,77777,9,999999999,6,0.046,0,88,0,0,1 -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,48530,43721,12173,4533,20,2.6,3,3,88,77777,9,999999999,6,0.046,0,88,0,0,1 -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,41723,38352,8390,3115,10,3.1,2,2,80,77777,9,999999999,6,0.046,0,88,0,0,1 -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,25894,21089,15805,4590,60,4.1,4,4,64,77777,9,999999999,6,0.046,0,88,0,0,1 -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,11398,5537,7954,2185,350,6.2,4,4,80,77777,9,999999999,6,0.046,0,88,0,0,1 -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,0,0,0,0,350,5.2,6,6,64,3658,9,999999999,6,0.046,0,88,0,0,1 -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,6096,9,999999999,6,0.046,0,88,0,0,1 -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,3962,9,999999999,6,0.046,0,88,0,0,1 -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,2,2,32,77777,9,999999999,6,0.046,0,88,0,0,1 -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,77777,9,999999999,6,0.046,0,88,0,0,1 -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,1036,9,999999999,6,0.046,0,88,0,0,1 -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,975,9,999999999,6,0.046,0,88,0,0,1 -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,77777,9,999999999,6,0.046,0,88,0,0,1 -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,77777,9,999999999,6,0.046,0,88,0,0,1 -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,77777,9,999999999,6,0.046,0,88,0,0,1 -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,-7.8,79,83100,0,0,232,0,0,0,0,0,0,0,210,1.5,7,2,24,77777,9,999999999,6,0.046,0,88,0,0,1 -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,77777,9,999999999,6,0.046,0,88,0,0,1 -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,77777,9,999999999,6,0.046,0,88,0,0,1 -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,77777,9,999999999,6,0.046,0,88,0,0,1 -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,77777,9,999999999,5,0.046,0,88,0,0,1 -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,-8.3,75,83200,65,1094,233,18,57,15,2005,0,1674,484,180,2.1,8,3,80,77777,9,999999999,5,0.046,0,88,0,0,1 -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,14942,10375,6874,2158,190,4.1,7,2,96,77777,9,999999999,5,0.046,0,88,0,0,1 -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,32625,32605,10142,3489,220,3.6,4,3,80,77777,9,999999999,5,0.046,0,88,0,0,1 -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,43051,39821,9872,3658,0,0,2,2,80,77777,9,999999999,5,0.046,0,88,0,0,1 -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,46937,42223,15553,5616,320,4.1,3,3,96,77777,9,999999999,5,0.046,0,88,0,0,1 -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,53843,48351,8406,3210,310,9.3,1,1,112,77777,9,999999999,5,0.046,0,88,0,0,1 -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,17,83300,551,1412,264,352,740,63,42458,39348,7616,2840,320,8.2,1,1,112,77777,9,999999999,4,0.046,0,88,0,0,1 -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,18,83300,415,1412,260,233,562,68,27083,25797,7925,2749,320,8.2,1,1,112,77777,9,999999999,4,0.046,0,88,0,0,1 -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,13215,4833,4261,1377,320,7.7,1,1,96,77777,9,999999999,4,0.046,0,88,0,0,1 -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,25,83400,32,765,239,10,96,6,0,0,0,0,340,4.6,0,0,80,77777,9,999999999,4,0.046,0,88,0,0,1 -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,-15,27,83500,0,0,235,0,0,0,0,0,0,0,320,2.6,0,0,48,77777,9,999999999,4,0.046,0,88,0,0,1 -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,77777,9,999999999,4,0.046,0,88,0,0,1 -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,77777,9,999999999,4,0.046,0,88,0,0,1 -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,77777,9,999999999,3,0.046,0,88,0,0,1 -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,77777,9,999999999,3,0.046,0,88,0,0,1 -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,77777,9,999999999,3,0.046,0,88,0,0,1 -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,77777,9,999999999,3,0.046,0,88,0,0,1 -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,77777,9,999999999,3,0.046,0,88,0,0,1 -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,77777,9,999999999,3,0.046,0,88,0,0,1 -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,-16.7,35,83500,0,0,226,0,0,0,0,0,0,0,140,2.1,3,3,48,77777,9,999999999,3,0.046,0,88,0,0,1 -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,77777,9,999999999,3,0.046,0,88,0,0,1 -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,77777,9,999999999,2,0.046,0,88,0,0,1 -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,77777,9,999999999,2,0.046,0,88,0,0,1 -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,77777,9,999999999,3,0.046,0,88,0,0,1 -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,2201,0,1875,520,320,1.5,9,4,96,77777,9,999999999,3,0.046,0,88,0,0,1 -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,12617,7218,8107,2423,260,1.5,8,3,96,77777,9,999999999,3,0.046,0,88,0,0,1 -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,-13.3,32,83400,448,1412,244,270,564,91,30935,30713,10461,3571,340,3.1,5,2,80,77777,9,999999999,3,0.046,0,88,0,0,1 -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,38235,34624,12595,4533,300,2.1,4,3,80,77777,9,999999999,3,0.046,0,88,0,0,1 -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,46907,42469,14802,5382,350,3.1,7,2,80,77777,9,999999999,3,0.046,0,88,0,0,1 -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,-15.6,18,83300,624,1412,263,418,706,106,49158,45522,12508,4634,10,4.1,4,3,96,77777,9,999999999,3,0.046,0,88,0,0,1 -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,46318,43841,7838,2918,360,3.1,0,0,96,77777,9,999999999,3,0.046,0,88,0,0,1 -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,29966,28718,6950,2445,310,10.3,1,1,96,77777,9,999999999,3,0.046,0,88,0,0,1 -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,12940,6520,5416,1681,300,10.3,2,2,80,77777,9,999999999,3,0.046,0,88,0,0,1 -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,0,0,0,0,300,8.8,3,3,80,77777,9,999999999,3,0.046,0,88,0,0,1 -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,77777,9,999999999,3,0.046,0,88,0,0,1 -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,77777,9,999999999,4,0.046,0,88,0,0,1 -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,77777,9,999999999,4,0.046,0,88,0,0,1 -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,77777,9,999999999,4,0.046,0,88,0,0,1 -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,77777,9,999999999,4,0.046,0,88,0,0,1 -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,4572,9,999999999,4,0.046,0,88,0,0,1 -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,77777,9,999999999,4,0.046,0,88,0,0,1 -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,-15,41,83600,0,0,218,0,0,0,0,0,0,0,170,3.1,0,0,48,77777,9,999999999,4,0.046,0,88,0,0,1 -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,-15,41,83600,0,0,218,0,0,0,0,0,0,0,170,4.1,0,0,48,77777,9,999999999,4,0.046,0,88,0,0,1 -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,39,83600,0,0,220,0,0,0,0,0,0,0,180,4.6,0,0,48,77777,9,999999999,4,0.046,0,88,0,0,1 -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,77777,9,999999999,4,0.046,0,88,0,0,1 -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,-15.6,39,83500,0,0,218,0,0,0,0,0,0,0,180,3.1,0,0,48,77777,9,999999999,4,0.046,0,88,0,0,1 -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,48,83600,0,0,213,0,0,0,0,0,0,0,170,2.6,0,0,48,77777,9,999999999,4,0.046,0,88,0,0,1 -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,80,77777,9,999999999,4,0.046,0,88,0,0,1 -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,-15,41,83700,61,1048,218,22,174,11,2501,0,1252,376,190,2.6,0,0,112,77777,9,999999999,4,0.046,0,88,0,0,1 -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,-13.9,30,83700,268,1412,236,148,577,39,17214,10714,4545,1515,220,3.1,1,0,112,77777,9,999999999,4,0.046,0,88,0,0,1 -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,33198,32416,7553,2686,190,4.6,3,1,112,77777,9,999999999,4,0.046,0,88,0,0,1 -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,40874,38266,13015,4657,200,2.6,6,2,112,77777,9,999999999,5,0.046,0,88,0,0,1 -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,47252,42296,11970,4471,150,2.1,6,3,112,77777,9,999999999,5,0.046,0,88,0,0,1 -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,19,83500,624,1412,298,336,419,151,38395,30354,17329,6086,360,4.6,7,4,112,8230,9,999999999,5,0.046,0,88,0,0,1 -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,-8.9,23,83500,550,1412,292,317,439,145,35783,30829,16438,5521,310,12.9,6,4,112,8230,9,999999999,5,0.046,0,88,0,0,1 -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,26352,24846,11303,3683,330,7.7,7,4,112,77777,9,999999999,5,0.046,0,88,0,0,1 -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,8775,2292,7155,2057,310,10.3,8,4,96,77777,9,999999999,5,0.046,0,88,0,0,1 -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,0,0,0,0,310,5.7,7,4,80,7620,9,999999999,5,0.046,0,88,0,0,1 -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,7620,9,999999999,5,0.046,0,88,0,0,1 -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,7620,9,999999999,5,0.046,0,88,0,0,1 -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,7620,9,999999999,5,0.046,0,88,0,0,1 -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,7620,9,999999999,5,0.046,0,88,0,0,1 -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,7620,9,999999999,5,0.046,0,88,0,0,1 -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,77777,9,999999999,5,0.046,0,88,0,0,1 -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,77777,9,999999999,5,0.046,0,88,0,0,1 -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,77777,9,999999999,5,0.046,0,88,0,0,1 -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,4572,9,999999999,5,0.046,0,88,0,0,1 -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,4572,9,999999999,5,0.046,0,88,0,0,1 -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,77777,9,999999999,5,0.046,0,88,0,0,1 -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,45,84000,0,0,251,0,0,0,0,0,0,0,200,2.1,6,5,48,3658,9,999999999,5,0.046,0,88,0,0,1 -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,49,84000,0,0,252,0,0,0,0,0,0,0,220,3.6,7,7,48,3962,9,999999999,5,0.046,0,88,0,0,1 -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,41,84100,0,0,265,0,0,0,0,0,0,0,250,4.1,8,8,80,3962,9,999999999,5,0.046,0,88,0,0,1 -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,2025,0,1353,399,190,3.6,7,4,80,77777,9,999999999,5,0.046,0,88,0,0,1 -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,-9.4,31,84200,266,1413,276,89,46,80,9752,1640,8798,2533,190,5.7,9,6,80,6401,9,999999999,5,0.046,0,88,0,0,1 -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,21725,16072,11811,3922,120,3.1,9,6,80,6401,9,999999999,5,0.046,0,88,0,0,1 -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,26492,15249,16714,5679,160,3.6,9,8,80,6401,9,999999999,5,0.046,0,88,0,0,1 -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,40750,34125,14567,5306,130,2.6,7,5,80,6401,9,999999999,5,0.046,0,88,0,0,1 -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,46701,42182,15513,5569,140,2.1,8,4,80,6401,9,999999999,5,0.046,0,88,0,0,1 -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,38325,35333,12628,4484,40,2.1,5,2,80,77777,9,999999999,5,0.046,0,88,0,0,1 -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,24688,22091,10569,3499,80,2.6,6,4,80,6401,9,999999999,5,0.046,0,88,0,0,1 -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,11688,5039,9153,2353,100,2.6,6,4,80,5486,9,999999999,5,0.046,0,88,0,0,1 -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,0,0,0,0,90,3.1,8,4,80,5486,9,999999999,5,0.046,0,88,0,0,1 -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,77777,9,999999999,5,0.046,0,88,0,0,1 -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,77777,9,999999999,5,0.046,0,88,0,0,1 -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,77777,9,999999999,5,0.046,0,88,0,0,1 -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,77777,9,999999999,5,0.046,0,88,0,0,1 -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,77777,9,999999999,5,0.046,0,88,0,0,1 -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,77777,9,999999999,5,0.046,0,88,0,0,1 -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,77777,9,999999999,5,0.046,0,88,0,0,1 -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,77777,9,999999999,5,0.045,0,88,0,0,1 -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,77777,9,999999999,5,0.045,0,88,0,0,1 -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,77777,9,999999999,5,0.045,0,88,0,0,1 -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,77777,9,999999999,5,0.045,0,88,0,0,1 -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,77777,9,999999999,5,0.045,0,88,0,0,1 -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,77777,9,999999999,5,0.045,0,88,0,0,1 -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,77777,9,999999999,5,0.045,0,88,0,0,1 -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,39,83900,58,1024,248,24,260,9,2558,13079,1501,188,180,4.6,1,1,96,77777,9,999999999,4,0.045,0,88,0,0,1 -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,-9.4,31,83900,264,1413,267,135,505,40,15636,8892,4642,1538,220,2.6,2,2,96,77777,9,999999999,4,0.045,0,88,0,0,1 -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,22,83800,442,1413,279,291,827,32,31230,75833,5087,887,190,4.1,1,1,96,77777,9,999999999,4,0.045,0,88,0,0,1 -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,42026,83745,6645,1133,190,3.1,1,1,96,77777,9,999999999,4,0.045,0,88,0,0,1 -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,47383,87098,6740,1192,210,2.6,1,1,96,77777,9,999999999,4,0.045,0,88,0,0,1 -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,54768,50530,9635,3649,180,2.6,2,2,96,77777,9,999999999,4,0.045,0,88,0,0,1 -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,48052,46731,8727,3227,130,3.1,3,3,96,77777,9,999999999,4,0.045,0,88,0,0,1 -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,33392,31669,5855,2087,100,3.1,2,2,96,77777,9,999999999,4,0.045,0,88,0,0,1 -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,14500,3904,3514,1163,80,3.1,1,1,96,77777,9,999999999,4,0.045,0,88,0,0,1 -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,0,0,0,0,70,1.5,1,1,96,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,3,0.045,0,88,0,0,1 -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,77777,9,999999999,3,0.045,0,88,0,0,1 -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,51,83100,0,0,232,0,0,0,0,0,0,0,190,2.1,0,0,40,77777,9,999999999,3,0.045,0,88,0,0,1 -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,77777,9,999999999,3,0.045,0,88,0,0,1 -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,-12.2,24,83300,0,0,255,0,0,0,0,0,0,0,290,10.3,0,0,32,77777,9,999999999,3,0.045,0,88,0,0,1 -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,-15.6,18,83300,0,0,252,0,0,0,0,0,0,0,280,11.8,0,0,64,77777,9,999999999,3,0.045,0,88,0,0,1 -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,2089,0,1653,457,270,9.8,5,5,80,77777,9,999999999,3,0.045,0,88,0,0,1 -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,5019,580,4209,1406,310,11.3,8,8,64,3962,9,999999999,3,0.045,0,88,0,0,1 -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,14688,8388,8299,2914,310,9.3,7,7,64,3962,9,999999999,3,0.045,0,88,0,0,1 -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,41262,38722,12246,4410,290,6.7,5,4,80,77777,9,999999999,3,0.045,0,88,0,0,1 -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,45341,40343,15637,5620,290,11.8,2,2,80,77777,9,999999999,3,0.045,0,88,0,0,1 -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,53096,50104,13145,4837,290,11.3,3,3,80,77777,9,999999999,3,0.045,0,88,0,0,1 -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,42714,40777,10150,3706,300,7.7,2,2,80,77777,9,999999999,3,0.045,0,88,0,0,1 -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,23506,20516,8244,2850,300,11.8,3,3,80,77777,9,999999999,3,0.045,0,88,0,0,1 -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,13760,6557,4902,1557,290,9.3,1,1,80,77777,9,999999999,3,0.045,0,88,0,0,1 -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,1135,0,682,201,280,7.7,1,1,80,77777,9,999999999,3,0.045,0,88,0,0,1 -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,77777,9,999999999,3,0.045,0,88,0,0,1 -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,77777,9,999999999,3,0.045,0,88,0,0,1 -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,77777,9,999999999,3,0.045,0,88,0,0,1 -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,77777,9,999999999,3,0.045,0,88,0,0,1 -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,77777,9,999999999,3,0.045,0,88,0,0,1 -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,77777,9,999999999,3,0.045,0,88,0,0,1 -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,77777,9,999999999,3,0.045,0,88,0,0,1 -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,77777,9,999999999,3,0.045,0,88,0,0,1 -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,77777,9,999999999,3,0.045,0,88,0,0,1 -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,-15.6,39,83700,0,0,218,0,0,0,0,0,0,0,150,2.1,0,0,40,77777,9,999999999,3,0.045,0,88,0,0,1 -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,77777,9,999999999,3,0.045,0,88,0,0,1 -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,77777,9,999999999,3,0.045,0,88,0,0,1 -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,77777,9,999999999,3,0.045,0,88,0,0,1 -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,77777,9,999999999,3,0.045,0,88,0,0,1 -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,2026,0,1240,364,170,2.1,0,0,96,77777,9,999999999,3,0.045,0,88,0,0,1 -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,16463,9561,4531,1499,200,3.6,0,0,96,77777,9,999999999,3,0.045,0,88,0,0,1 -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,34169,32808,6442,2310,190,3.1,0,0,96,77777,9,999999999,3,0.045,0,88,0,0,1 -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,-11.1,19,83900,564,1413,275,397,832,65,47885,44729,7858,2943,140,2.1,0,0,96,77777,9,999999999,3,0.045,0,88,0,0,1 -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,55110,49272,8518,3253,80,1.5,0,0,96,77777,9,999999999,4,0.045,0,88,0,0,1 -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,18,83800,623,1413,288,450,862,70,54571,48949,8509,3245,360,2.1,0,0,96,77777,9,999999999,4,0.045,0,88,0,0,1 -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,42876,39494,7946,2957,60,2.6,1,0,96,77777,9,999999999,4,0.045,0,88,0,0,1 -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,30648,28363,6404,2272,360,4.6,1,0,96,77777,9,999999999,4,0.045,0,88,0,0,1 -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,14006,5357,4372,1416,50,4.1,1,0,96,77777,9,999999999,4,0.045,0,88,0,0,1 -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,1234,0,786,227,110,2.6,0,0,80,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,41,84100,0,0,242,0,0,0,0,0,0,0,160,4.1,0,0,48,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,2281,0,1028,309,180,3.1,0,0,112,77777,9,999999999,4,0.045,0,88,0,0,1 -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,15721,50672,5144,670,200,5.2,0,0,112,77777,9,999999999,4,0.045,0,88,0,0,1 -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,24,84300,437,1414,270,294,807,44,31251,73628,6886,1013,210,4.1,0,0,112,77777,9,999999999,4,0.045,0,88,0,0,1 -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,18,84200,564,1414,285,404,881,53,42861,84071,8107,1234,180,4.1,0,0,112,77777,9,999999999,4,0.045,0,88,0,0,1 -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,-13.3,11,84200,627,1414,293,461,910,57,48782,87995,8616,1342,150,3.1,0,0,112,77777,9,999999999,4,0.045,0,88,0,0,1 -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,48342,87698,8620,1337,290,1.5,0,0,112,77777,9,999999999,4,0.045,0,88,0,0,1 -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,41837,83150,7972,1211,90,3.6,0,0,112,77777,9,999999999,4,0.045,0,88,0,0,1 -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,29590,71658,6748,979,70,2.1,0,0,112,77777,9,999999999,4,0.045,0,88,0,0,1 -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,15146,5002,3735,1233,160,1.5,1,0,112,77777,9,999999999,4,0.045,0,88,0,0,1 -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,1432,0,993,273,130,2.1,5,1,80,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,-11.7,37,84700,52,978,248,19,116,13,2098,0,1439,403,190,1.5,4,3,112,77777,9,999999999,4,0.045,0,88,0,0,1 -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,15341,7885,4308,1429,200,2.1,2,2,112,77777,9,999999999,4,0.045,0,88,0,0,1 -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,32587,80638,5089,882,180,3.6,0,0,112,77777,9,999999999,4,0.045,0,88,0,0,1 -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,-11.7,18,84800,563,1414,275,415,946,38,44423,90386,5913,1054,210,2.6,0,0,112,77777,9,999999999,4,0.045,0,88,0,0,1 -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,50399,93985,6451,1158,230,2.1,0,0,112,77777,9,999999999,4,0.045,0,88,0,0,1 -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,50137,93871,6309,1139,60,1,0,0,96,77777,9,999999999,4,0.045,0,88,0,0,1 -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,43555,89817,5921,1048,140,2.6,0,0,96,77777,9,999999999,4,0.045,0,88,0,0,1 -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,30833,77402,5249,884,80,3.6,1,0,96,77777,9,999999999,4,0.045,0,88,0,0,1 -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,13512,45515,4531,615,110,1.5,3,1,96,77777,9,999999999,4,0.045,0,88,0,0,1 -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,1704,8614,1005,119,80,1.5,4,0,80,77777,9,999999999,4,0.045,0,88,0,0,1 -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,35,84600,0,0,249,0,0,0,0,0,0,0,110,2.6,3,0,32,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,47,84600,0,0,236,0,0,0,0,0,0,0,140,3.1,0,0,32,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,77777,9,999999999,4,0.045,0,88,0,0,1 -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,-10,65,84200,0,0,227,0,0,0,0,0,0,0,160,2.6,9,1,32,77777,9,999999999,4,0.045,0,88,0,0,1 -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,59,84200,0,0,230,0,0,0,0,0,0,0,150,2.1,10,1,32,77777,9,999999999,4,0.045,0,88,0,0,1 -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,1063,0,1070,355,160,2.1,10,10,80,7620,9,999999999,5,0.045,0,88,0,0,1 -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,6794,0,6842,2263,180,1.5,10,10,96,7620,9,999999999,5,0.045,0,88,0,0,1 -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,12294,0,12389,4335,190,1.5,10,10,96,6706,9,999999999,5,0.045,0,88,0,0,1 -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,16360,0,16492,6010,340,1.5,10,10,96,6706,9,999999999,5,0.045,0,88,0,0,1 -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,18372,0,18523,6898,340,1.5,10,10,64,6706,9,999999999,5,0.045,0,88,0,0,1 -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,26,83900,624,1414,307,181,0,181,18370,0,18521,6875,330,1.5,10,10,56,6096,9,999999999,5,0.045,0,88,0,0,1 -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,16048,0,16177,5877,290,1,10,10,56,6096,9,999999999,6,0.045,0,88,0,0,1 -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,11882,0,11973,4160,360,1,10,10,64,5486,9,999999999,6,0.045,0,88,0,0,1 -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,28,83800,240,1414,302,65,0,65,6391,0,6437,2095,130,1.5,10,10,64,5486,9,999999999,6,0.045,0,88,0,0,1 -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,31,83800,40,860,286,6,8,6,686,0,686,205,90,2.1,10,9,64,5486,9,999999999,6,0.045,0,88,0,0,1 -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,5486,9,999999999,6,0.045,0,88,0,0,1 -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,5182,9,999999999,6,0.045,0,88,0,0,1 -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,5182,9,999999999,7,0.045,0,88,0,0,1 -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,4267,9,999999999,7,0.045,0,88,0,0,1 -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,4267,9,999999999,7,0.045,0,88,0,0,1 -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,10,10,32,4267,9,999999999,7,0.045,0,88,0,0,1 -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,3658,9,999999999,7,0.045,0,88,0,0,1 -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,3962,9,999999999,7,0.045,0,88,0,0,1 -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,77777,9,999999999,8,0.045,0,88,0,0,1 -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,77777,9,999999999,8,0.045,0,88,0,0,1 -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,77777,9,999999999,8,0.045,0,88,0,0,1 -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,10,2,32,77777,9,999999999,8,0.045,0,88,0,0,1 -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,77777,9,999999999,8,0.045,0,88,0,0,1 -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,3048,9,999999999,8,0.045,0,88,0,0,1 -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,2138,0,1931,473,170,2.6,9,8,80,3353,9,999999999,8,0.045,0,88,0,0,1 -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,13375,7925,8951,2488,200,3.6,9,5,72,7620,9,999999999,8,0.045,0,88,0,0,1 -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,26540,24359,9566,3278,180,3.1,8,4,80,7620,9,999999999,8,0.045,0,88,0,0,1 -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,22970,12821,13834,4870,190,3.1,7,7,96,4572,9,999999999,8,0.045,0,88,0,0,1 -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,37270,19666,26642,8098,0,0,8,8,96,4572,9,999999999,8,0.045,0,88,0,0,1 -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,-5.6,22,83400,625,1414,319,166,195,79,19936,11269,9514,3609,130,2.1,5,5,96,77777,9,999999999,8,0.045,0,88,0,0,1 -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,-5,24,83400,556,1414,318,359,656,101,41713,39371,11775,4234,90,4.6,4,4,96,77777,9,999999999,8,0.045,0,88,0,0,1 -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,24,83500,425,1414,309,252,656,55,29794,27072,6517,2316,70,5.2,2,2,96,77777,9,999999999,8,0.045,0,88,0,0,1 -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,26,83400,242,1414,308,138,522,49,15551,8615,5537,1737,80,4.1,3,3,96,77777,9,999999999,7,0.045,0,88,0,0,1 -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,31,83500,41,884,290,16,158,8,1789,0,896,258,130,1.5,1,1,80,77777,9,999999999,7,0.045,0,88,0,0,1 -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,77777,9,999999999,7,0.045,0,88,0,0,1 -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,77777,9,999999999,7,0.045,0,88,0,0,1 -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,77777,9,999999999,7,0.045,0,88,0,0,1 -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,1,1,24,77777,9,999999999,7,0.045,0,88,0,0,1 -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,77777,9,999999999,7,0.045,0,88,0,0,1 -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,77777,9,999999999,7,0.045,0,88,0,0,1 -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,77777,9,999999999,7,0.045,0,88,0,0,1 -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,-6.1,60,83500,0,0,253,0,0,0,0,0,0,0,150,2.1,3,3,32,77777,9,999999999,7,0.045,0,88,0,0,1 -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,77777,9,999999999,7,0.045,0,88,0,0,1 -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,77777,9,999999999,7,0.045,0,88,0,0,1 -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,77777,9,999999999,7,0.045,0,88,0,0,1 -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,2743,9,999999999,7,0.045,0,88,0,0,1 -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,2743,9,999999999,7,0.045,0,88,0,0,1 -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,2743,9,999999999,7,0.045,0,88,0,0,1 -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,1469,0,1019,302,190,4.1,6,6,112,2743,9,999999999,7,0.045,0,88,0,0,1 -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,12031,2326,11123,2727,190,4.1,8,8,128,2743,9,999999999,7,0.045,0,88,0,0,1 -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,22607,16859,12809,4117,190,4.6,6,6,120,2743,9,999999999,7,0.045,0,88,0,0,1 -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,33458,28549,9399,3476,190,3.6,5,5,120,77777,9,999999999,7,0.045,0,88,0,0,1 -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,37642,27897,18906,6512,200,2.6,5,5,120,77777,9,999999999,7,0.045,0,88,0,0,1 -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,-7.8,18,83600,626,1414,320,388,654,98,45853,40465,11619,4339,140,1.5,6,6,112,2591,9,999999999,7,0.045,0,88,0,0,1 -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,-6.7,20,83500,558,1414,310,396,838,65,47635,44072,7837,2925,100,3.1,2,2,112,77777,9,999999999,7,0.045,0,88,0,0,1 -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,22905,18845,10696,3559,140,4.1,5,5,112,77777,9,999999999,7,0.045,0,88,0,0,1 -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,25,83500,244,1414,318,56,109,37,6459,1191,4277,1401,130,4.6,6,6,112,3048,9,999999999,7,0.045,0,88,0,0,1 -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,30,83600,43,884,306,11,62,8,1233,0,898,261,130,4.6,6,6,96,3048,9,999999999,7,0.045,0,88,0,0,1 -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,34,83600,0,0,302,0,0,0,0,0,0,0,120,5.2,7,7,48,3353,9,999999999,7,0.045,0,88,0,0,1 -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,37,83600,0,0,302,0,0,0,0,0,0,0,130,4.1,8,8,48,3353,9,999999999,7,0.045,0,88,0,0,1 -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,3353,9,999999999,7,0.045,0,88,0,0,1 -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,3353,9,999999999,7,0.045,0,88,0,0,1 -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,6,6,48,3353,9,999999999,7,0.045,0,88,0,0,1 -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,3353,9,999999999,7,0.045,0,88,0,0,1 -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,77777,9,999999999,7,0.045,0,88,0,0,1 -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,77777,9,999999999,7,0.045,0,88,0,0,1 -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,3353,9,999999999,7,0.045,0,88,0,0,1 -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,3353,9,999999999,7,0.045,0,88,0,0,1 -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,3353,9,999999999,7,0.045,0,88,0,0,1 -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,3353,9,999999999,7,0.045,0,88,0,0,1 -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,3353,9,999999999,7,0.045,0,88,0,0,1 -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,3353,9,999999999,7,0.045,0,88,0,0,1 -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,806,0,807,245,190,4.6,8,8,80,3353,9,999999999,7,0.045,0,88,0,0,1 -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,13006,7825,6914,2096,190,4.1,4,4,80,77777,9,999999999,7,0.045,0,88,0,0,1 -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,28047,65760,6594,992,190,4.1,1,1,96,77777,9,999999999,6,0.045,0,88,0,0,1 -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,-5.6,31,83900,562,1414,286,388,869,43,41536,83208,6654,1127,170,2.1,1,1,96,77777,9,999999999,6,0.045,0,88,0,0,1 -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,47378,87461,6601,1174,200,1.5,1,1,96,77777,9,999999999,6,0.045,0,88,0,0,1 -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,47055,86848,6602,1173,60,2.1,1,1,96,77777,9,999999999,6,0.045,0,88,0,0,1 -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,41217,81082,7827,1209,360,1.5,1,1,96,77777,9,999999999,6,0.045,0,88,0,0,1 -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,32703,29481,5641,2025,350,2.1,1,1,96,77777,9,999999999,6,0.045,0,88,0,0,1 -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,14203,47447,4533,629,50,2.1,1,1,96,77777,9,999999999,6,0.045,0,88,0,0,1 -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,1920,9905,1169,132,360,2.6,1,1,64,77777,9,999999999,6,0.045,0,88,0,0,1 -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,77777,9,999999999,6,0.045,0,88,0,0,1 -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,-6.1,42,83700,0,0,261,0,0,0,0,0,0,0,170,2.1,0,0,48,77777,9,999999999,6,0.045,0,88,0,0,1 -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,77777,9,999999999,6,0.045,0,88,0,0,1 -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,77777,9,999999999,6,0.045,0,88,0,0,1 -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,77777,9,999999999,6,0.045,0,88,0,0,1 -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,77777,9,999999999,6,0.045,0,88,0,0,1 -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,77777,9,999999999,6,0.045,0,88,0,0,1 -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,77777,9,999999999,6,0.045,0,88,0,0,1 -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,-8.3,49,83600,0,0,241,0,0,0,0,0,0,0,170,3.1,0,0,48,77777,9,999999999,6,0.045,0,88,0,0,1 -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,77777,9,999999999,6,0.045,0,88,0,0,1 -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,77777,9,999999999,6,0.045,0,88,0,0,1 -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,77777,9,999999999,6,0.045,0,88,0,0,1 -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,64,77777,9,999999999,6,0.045,0,88,0,0,1 -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,77777,9,999999999,6,0.045,0,88,0,0,1 -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,1690,0,1016,298,190,3.6,0,0,112,77777,9,999999999,6,0.045,0,88,0,0,1 -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,15377,7413,4402,1450,180,4.1,0,0,112,77777,9,999999999,6,0.045,0,88,0,0,1 -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,-7.2,38,84000,432,1415,260,278,733,54,33008,30973,6425,2297,170,2.6,0,0,112,77777,9,999999999,6,0.045,0,88,0,0,1 -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,46976,43446,7848,2935,170,3.1,0,0,112,77777,9,999999999,6,0.045,0,88,0,0,1 -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,54477,48319,8514,3251,160,3.1,0,0,112,77777,9,999999999,6,0.045,0,88,0,0,1 -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,54471,48374,8513,3250,90,2.6,0,0,112,77777,9,999999999,6,0.045,0,88,0,0,1 -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,46830,43350,7843,2930,90,4.6,0,0,112,77777,9,999999999,6,0.045,0,88,0,0,1 -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,32854,30712,6418,2289,100,5.7,0,0,112,77777,9,999999999,6,0.045,0,88,0,0,1 -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,-7.8,26,83800,249,1415,279,132,534,38,15226,6791,4392,1439,80,5.2,0,0,112,77777,9,999999999,6,0.045,0,88,0,0,1 -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,1564,0,1007,290,90,3.1,0,0,64,77777,9,999999999,6,0.045,0,88,0,0,1 -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,-6.7,40,83900,0,0,261,0,0,0,0,0,0,0,90,3.1,0,0,48,77777,9,999999999,6,0.045,0,88,0,0,1 -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,77777,9,999999999,6,0.045,0,88,0,0,1 -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,77777,9,999999999,6,0.045,0,88,0,0,1 -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,77777,9,999999999,6,0.045,0,88,0,0,1 -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,77777,9,999999999,6,0.045,0,88,0,0,1 -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,77777,9,999999999,6,0.045,0,88,0,0,1 -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,77777,9,999999999,6,0.045,0,88,0,0,1 -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,77777,9,999999999,6,0.044,0,88,0,0,1 -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,77777,9,999999999,6,0.044,0,88,0,0,1 -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,77777,9,999999999,6,0.044,0,88,0,0,1 -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,48,77777,9,999999999,6,0.044,0,88,0,0,1 -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,77777,9,999999999,6,0.044,0,88,0,0,1 -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,-7.8,79,83800,0,0,224,0,0,0,0,0,0,0,200,1.5,0,0,48,77777,9,999999999,6,0.044,0,88,0,0,1 -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,77777,9,999999999,6,0.044,0,88,0,0,1 -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,2039,12320,1013,148,160,2.6,0,0,112,77777,9,999999999,6,0.044,0,88,0,0,1 -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,15996,56975,3759,603,180,2.1,0,0,112,77777,9,999999999,6,0.044,0,88,0,0,1 -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,-7.2,38,83800,432,1415,265,277,756,46,29449,68827,7189,1013,220,2.6,1,1,112,77777,9,999999999,6,0.044,0,88,0,0,1 -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,42574,86277,5916,1053,200,2.6,1,1,112,77777,9,999999999,6,0.044,0,88,0,0,1 -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,-8.3,25,83500,629,1415,284,430,809,70,52177,45840,8515,3252,300,1.5,1,1,112,77777,9,999999999,6,0.044,0,88,0,0,1 -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,46188,84681,6744,1190,350,2.6,1,1,112,77777,9,999999999,6,0.044,0,88,0,0,1 -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,44574,42981,12114,4351,10,4.6,3,3,80,77777,9,999999999,6,0.044,0,88,0,0,1 -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,31554,28828,6419,2292,360,5.7,2,2,80,77777,9,999999999,6,0.044,0,88,0,0,1 -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,14825,7428,5030,1621,360,5.2,3,3,80,77777,9,999999999,6,0.044,0,88,0,0,1 -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,1715,0,801,241,10,3.1,1,1,64,77777,9,999999999,6,0.044,0,88,0,0,1 -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,77777,9,999999999,6,0.044,0,88,0,0,1 -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,-5.6,62,83400,0,0,243,0,0,0,0,0,0,0,170,1.5,0,0,48,77777,9,999999999,6,0.044,0,88,0,0,1 -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,77777,9,999999999,6,0.044,0,88,0,0,1 -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,77777,9,999999999,6,0.044,0,88,0,0,1 -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,77777,9,999999999,6,0.044,0,88,0,0,1 -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,77777,9,999999999,6,0.044,0,88,0,0,1 -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,77777,9,999999999,6,0.044,0,88,0,0,1 -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,77777,9,999999999,6,0.044,0,88,0,0,1 -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,77777,9,999999999,6,0.044,0,88,0,0,1 -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,77777,9,999999999,6,0.044,0,88,0,0,1 -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,-7.8,79,83200,0,0,232,0,0,0,0,0,0,0,350,2.1,2,2,32,77777,9,999999999,6,0.044,0,88,0,0,1 -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,-6.7,86,83300,0,0,235,0,0,0,0,0,0,0,0,0,5,3,32,77777,9,999999999,6,0.044,0,88,0,0,1 -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,-6.7,86,83300,0,0,233,0,0,0,0,0,0,0,180,1.5,4,2,32,77777,9,999999999,6,0.044,0,88,0,0,1 -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,8,6,80,6096,9,999999999,6,0.044,0,88,0,0,1 -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,1215,0,1218,341,120,1.5,10,9,88,6096,9,999999999,6,0.044,0,88,0,0,1 -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,61,83300,249,1415,286,63,0,63,6195,0,6240,2106,120,1.5,10,10,88,6096,9,999999999,6,0.044,0,88,0,0,1 -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,17573,1806,16779,4861,0,0,9,9,112,6096,9,999999999,6,0.044,0,88,0,0,1 -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,33508,5778,31244,7636,0,0,9,9,112,6096,9,999999999,6,0.044,0,88,0,0,1 -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,18168,0,18318,6860,80,2.1,10,10,112,6096,9,999999999,6,0.044,0,88,0,0,1 -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,14503,0,14623,5866,10,6.7,10,10,96,2438,9,999999999,6,0.044,0,88,0,0,1 -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,12812,0,12916,5076,350,3.1,10,10,96,2896,9,999999999,6,0.044,0,88,0,0,1 -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,-5,46,83300,436,1415,288,245,174,192,26228,13931,20664,5291,330,2.6,10,8,96,2896,9,999999999,6,0.044,0,88,0,0,1 -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,48,83300,254,1415,281,108,100,90,11621,3766,9725,2562,0,0,9,7,64,2896,9,999999999,6,0.044,0,88,0,0,1 -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,1713,0,1719,425,150,3.6,10,9,48,6096,9,999999999,6,0.044,0,88,0,0,1 -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,3048,9,999999999,6,0.044,0,88,0,0,1 -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,50,83500,0,0,298,0,0,0,0,0,0,0,130,2.1,10,10,32,2743,9,999999999,6,0.044,0,88,0,0,1 -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,52,83500,0,0,295,0,0,0,0,0,0,0,200,2.1,10,10,32,2743,9,999999999,6,0.044,0,88,0,0,1 -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,54,83500,0,0,293,0,0,0,0,0,0,0,70,5.2,10,10,24,2286,9,999999999,6,0.044,0,88,0,0,1 -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,3658,9,999999999,6,0.044,0,88,0,0,1 -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,1402,9,999999999,7,0.044,0,88,0,0,1 -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,-1.7,87,83600,0,0,285,0,0,0,0,0,0,0,350,3.6,10,10,9.6,305,9,999999999,7,0.044,0,88,0,0,1 -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,-1.1,91,83600,0,0,286,0,0,0,0,0,0,0,360,3.1,10,10,8,274,9,999999999,7,0.044,0,88,0,0,1 -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,7,0.044,0,88,0,0,1 -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,152,9,999999999,7,0.044,0,88,0,0,1 -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,7,0.044,0,88,0,0,1 -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,7,0.044,0,88,0,0,1 -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,152,9,999999999,7,0.044,0,88,0,0,1 -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,7,0.044,0,88,0,0,1 -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,95,83600,45,908,264,4,0,4,386,0,388,149,330,3.6,10,10,1.6,122,9,999999999,7,0.044,0,88,0,0,1 -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,95,83600,248,1415,264,26,0,26,2557,0,2575,1047,360,4.1,10,10,3.2,152,9,999999999,7,0.044,0,88,0,0,1 -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,5390,0,5432,2295,350,4.6,10,10,1.6,183,9,999999999,7,0.044,0,88,0,0,1 -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,7667,0,7729,3362,360,3.6,10,10,3.2,183,9,999999999,6,0.044,0,88,0,0,1 -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,91,83500,631,1415,266,89,0,89,9029,0,9104,4012,360,3.1,10,10,3.2,183,9,999999999,6,0.044,0,88,0,0,1 -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,91,83400,633,1415,266,89,0,89,9029,0,9104,4014,350,3.1,10,10,1.6,152,9,999999999,6,0.044,0,88,0,0,1 -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,87,83400,567,1415,268,77,0,77,7770,0,7833,3404,350,3.1,10,10,4.8,152,9,999999999,6,0.044,0,88,0,0,1 -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,91,83400,439,1415,266,55,0,55,5492,0,5534,2336,360,4.6,10,10,6.4,152,9,999999999,6,0.044,0,88,0,0,1 -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,91,83500,257,1415,266,32,0,32,3148,0,3170,1257,360,4.1,10,10,3.2,213,9,999999999,6,0.044,0,88,0,0,1 -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,91,83500,52,979,266,6,0,6,579,0,583,215,40,3.1,10,10,3.2,213,9,999999999,6,0.044,0,88,0,0,1 -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,6,0.044,0,88,0,0,1 -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,6,0.044,0,88,0,0,1 -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,6,0.044,0,88,0,0,1 -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,-6.1,91,83600,0,0,260,0,0,0,0,0,0,0,60,4.1,10,10,3.2,610,9,999999999,6,0.044,0,88,0,0,1 -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,6,0.044,0,88,0,0,1 -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,6,0.044,0,88,0,0,1 -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,6,0.044,0,88,0,0,1 -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,5,0.044,0,88,0,0,1 -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,1524,9,999999999,5,0.044,0,88,0,0,1 -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,5,0.044,0,88,0,0,1 -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,5,0.044,0,88,0,0,1 -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,5,0.044,0,88,0,0,1 -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,457,9,999999999,5,0.044,0,88,0,0,1 -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,762,9,999999999,5,0.044,0,88,0,0,1 -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,-11.7,86,84000,45,908,230,9,10,8,1019,0,907,268,20,2.6,9,9,6.4,1981,9,999999999,5,0.044,0,88,0,0,1 -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,9937,2744,8330,2352,80,3.1,10,8,2.4,671,9,999999999,5,0.044,0,88,0,0,1 -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,25800,15808,19096,5150,60,3.1,10,7,6.4,1372,9,999999999,5,0.044,0,88,0,0,1 -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,45089,44105,11807,4259,50,3.1,5,4,9.6,77777,9,999999999,4,0.044,0,88,0,0,1 -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,48088,43718,14574,5303,80,3.6,4,4,19.2,77777,9,999999999,4,0.044,0,88,0,0,1 -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,30753,17441,19151,6595,40,3.6,4,4,19.2,77777,9,999999999,4,0.044,0,88,0,0,1 -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,43622,42115,13320,4728,120,3.1,5,5,16,77777,9,999999999,4,0.044,0,88,0,0,1 -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,21564,10126,16716,4887,70,3.6,6,6,16,457,9,999999999,4,0.044,0,88,0,0,1 -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,-13.3,74,84100,260,1415,220,80,209,41,9214,3489,4732,1549,80,2.6,7,7,19.2,701,9,999999999,4,0.044,0,88,0,0,1 -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,1548,0,1330,373,80,2.6,8,8,16,488,9,999999999,4,0.044,0,88,0,0,1 -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,77777,9,999999999,3,0.044,0,88,0,0,1 -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,77777,9,999999999,3,0.044,0,88,0,0,1 -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,86,84200,0,0,196,0,0,0,0,0,0,0,190,2.1,5,1,24,77777,9,999999999,3,0.044,0,88,0,0,1 -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,-16.7,85,84200,0,0,194,0,0,0,0,0,0,0,120,2.1,3,3,16,77777,9,999999999,3,0.044,0,88,0,0,1 -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,77777,9,999999999,3,0.044,0,88,0,0,1 -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,85,84100,0,0,174,0,0,0,0,0,0,0,320,2.1,0,0,12.8,77777,9,999999999,3,0.044,0,88,0,0,1 -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,1,1,9.6,77777,9,999999999,3,0.044,0,88,0,0,1 +LOCATION,Denver Intl AP,CO,USA,TMY3,725650,39.83300,-104.6500,-7.0,1650.0 +DESIGN CONDITIONS,1,2017 ASHRAE Handbook -- Fundamentals - Chapter 14 Climatic Design Information,,Heating,12,-18.2,-14.8,-22.4,0.6,-11.3,-19.8,0.8,-7,13.7,3.8,11.9,2.9,3.4,230,Cooling,7,15.2,34.9,15.4,33.5,15.4,31.9,15.3,18.2,27.2,17.6,26.9,16.9,26.4,4.1,30,15.9,13.9,20,15,13.1,19.8,14.1,12.3,19.7,58.3,26.9,55.8,26.8,53.7,26.3,20.7,Extremes,12.1,10.6,8.9,-23.8,37.3,3.2,1.2,-26.2,38.2,-28.1,38.9,-29.9,39.6,-32.3,40.4,-24.1 +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,"NREL TMY Data Set (2008) updated 2015 to include better precipitation;Period of Record 1973-2005 (Generally)" +COMMENTS 2,"Downloaded from Climate.Onebuilding.Org -- Ground temps represent undisturbed earth temperatures - calculated from this weather data." +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,-19.7,85,83700,0,0,181,0,0,0,0,0,0,0,0,0,2,2,6.4,20306,9,999999999,3,0.044,0,88,0,0,1 +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,3,3,6.4,18674,9,999999999,3,0.044,0,88,0,0,1 +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,3,3,6.4,16614,9,999999999,3,0.044,0,88,0,0,1 +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,4,4,6.4,14677,9,999999999,3,0.044,0,88,0,0,1 +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,-14.6,86,83400,0,0,205,0,0,0,0,0,0,0,0,0,5,5,6.4,12892,9,999999999,2,0.044,0,88,0,0,1 +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,6,6,6.4,11077,9,999999999,2,0.044,0,88,0,0,1 +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,6,6,6.4,11821,9,999999999,2,0.044,0,88,0,0,1 +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,82,82800,45,908,231,9,17,8,1017,0,906,267,120,1.4,7,7,6.4,8786,9,999999999,2,0.044,0,88,0,0,1 +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,9702,2331,8425,2365,140,1.3,7,7,6.4,7581,9,999999999,2,0.044,0,88,0,0,1 +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,66,82700,433,1415,247,266,494,115,29735,29187,12906,4128,200,1.7,8,4,6.4,11251,9,999999999,2,0.044,0,88,0,0,1 +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,40531,37439,15847,5427,310,1.7,8,4,6.4,9436,9,999999999,2,0.044,0,88,0,0,1 +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,48353,42657,21129,7086,20,4.6,7,7,6.4,6706,9,999999999,2,0.044,0,88,0,0,1 +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,40696,30546,21350,7150,20,7.2,8,5,6.4,6706,9,999999999,2,0.044,0,88,0,0,1 +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,39102,35282,14922,5203,10,8.2,7,4,6.4,77777,9,999999999,2,0.044,0,88,0,0,1 +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,27579,21976,16933,4963,10,7.7,8,3,6.4,77777,9,999999999,2,0.044,0,88,0,0,1 +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,36,82100,263,1415,252,131,369,62,14618,9882,6940,2128,10,6.2,4,1,6.4,77777,9,999999999,2,0.044,0,88,0,0,1 +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,2017,0,1235,360,20,3.6,1,0,6.4,77777,9,999999999,2,0.044,0,88,0,0,1 +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,6.4,77777,9,999999999,2,0.044,0,88,0,0,1 +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,-9.4,68,82100,0,0,223,0,0,0,0,0,0,0,350,5.7,0,0,6.4,77777,9,999999999,2,0.044,0,88,0,0,1 +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,6.4,77777,9,999999999,2,0.044,0,88,0,0,1 +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,6.4,77777,9,999999999,2,0.044,0,88,0,0,1 +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,6.4,77777,9,999999999,2,0.044,0,88,0,0,1 +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,6.4,77777,9,999999999,2,0.044,0,88,0,0,1 +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,-12.8,50,81900,0,0,220,0,0,0,0,0,0,0,10,8.8,0,0,6.4,77777,9,999999999,2,0.044,0,88,0,0,1 +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,-13.3,48,81900,0,0,220,0,0,0,0,0,0,0,20,8.8,0,0,6.4,77777,9,999999999,2,0.044,0,88,0,0,1 +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,6.4,77777,9,999999999,2,0.044,0,88,0,0,1 +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,-15,41,81900,0,0,218,0,0,0,0,0,0,0,20,7.2,0,0,6.4,77777,9,999999999,2,0.044,0,88,0,0,1 +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,48,81900,0,0,213,0,0,0,0,0,0,0,20,6.7,0,0,6.4,77777,9,999999999,2,0.044,0,88,0,0,1 +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,43,82400,0,0,216,0,0,0,0,0,0,0,360,3.6,0,0,6.4,77777,9,999999999,2,0.044,0,88,0,0,1 +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,45,81900,0,0,219,0,0,0,0,0,0,0,10,3.1,1,1,6.4,77777,9,999999999,2,0.044,0,88,0,0,1 +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,6.4,77777,9,999999999,2,0.044,0,88,0,0,1 +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,34,82000,44,908,230,15,63,12,1640,0,1315,354,40,1.5,9,1,6.4,77777,9,999999999,2,0.044,0,88,0,0,1 +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,9415,3114,7113,2121,110,2.1,7,7,6.4,4572,9,999999999,3,0.044,0,88,0,0,1 +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,26275,23064,13639,4289,140,2.1,8,5,6.4,7620,9,999999999,3,0.044,0,88,0,0,1 +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,45947,44608,11053,4026,130,2.6,5,4,6.4,77777,9,999999999,3,0.044,0,88,0,0,1 +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,39300,28280,21777,7239,160,2.1,8,5,6.4,7620,9,999999999,3,0.044,0,88,0,0,1 +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,38102,30848,13295,4917,180,2.6,9,6,6.4,7620,9,999999999,3,0.044,0,88,0,0,1 +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,31171,12577,24851,7285,140,2.6,9,8,6.4,4572,9,999999999,3,0.044,0,88,0,0,1 +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,-8.3,25,82300,447,1415,301,260,368,144,28633,24914,15930,4815,150,3.1,9,7,6.4,4572,9,999999999,3,0.044,0,88,0,0,1 +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,25,82300,266,1415,284,109,249,62,12178,6771,6948,2139,140,3.1,8,5,6.4,7620,9,999999999,3,0.044,0,88,0,0,1 +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,26,82100,58,1026,272,21,102,15,2303,0,1649,452,150,2.6,6,2,6.4,77777,9,999999999,3,0.044,0,88,0,0,1 +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,-10,30,82100,0,0,269,0,0,0,0,0,0,0,170,3.6,6,3,6.4,77777,9,999999999,3,0.044,0,88,0,0,1 +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,39,82300,0,0,248,0,0,0,0,0,0,0,150,3.6,2,1,6.4,77777,9,999999999,3,0.044,0,88,0,0,1 +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,-10,43,82200,0,0,244,0,0,0,0,0,0,0,180,3.6,3,1,6.4,77777,9,999999999,3,0.044,0,88,0,0,1 +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,6.4,77777,9,999999999,3,0.044,0,88,0,0,1 +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,6.4,77777,9,999999999,3,0.044,0,88,0,0,1 +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,1,1,6.4,77777,9,999999999,3,0.044,0,88,0,0,1 +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,-13.3,32,82100,0,0,236,0,0,0,0,0,0,0,230,2.6,1,0,6.4,77777,9,999999999,3,0.044,0,88,0,0,1 +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,6.4,77777,9,999999999,3,0.044,0,88,0,0,1 +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,6.4,77777,9,999999999,3,0.044,0,88,0,0,1 +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,6.4,77777,9,999999999,4,0.044,0,88,0,0,1 +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,6.4,77777,9,999999999,4,0.044,0,88,0,0,1 +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,6.4,77777,9,999999999,4,0.044,0,88,0,0,1 +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,6.4,77777,9,999999999,4,0.044,0,88,0,0,1 +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,6.4,7620,9,999999999,4,0.044,0,88,0,0,1 +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,1530,0,1314,353,250,6.7,7,5,6.4,7620,9,999999999,4,0.044,0,88,0,0,1 +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,8888,3088,5979,1865,210,4.6,8,5,6.4,7010,9,999999999,3,0.044,0,88,0,0,1 +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,21515,15197,12712,4086,210,5.2,7,6,6.4,7620,9,999999999,3,0.044,0,88,0,0,1 +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,38215,34424,10615,3887,290,1.5,6,3,6.4,77777,9,999999999,3,0.044,0,88,0,0,1 +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,53327,49159,11651,4370,250,7.7,2,1,6.4,77777,9,999999999,3,0.044,0,88,0,0,1 +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,29,83400,641,1415,265,426,757,83,51150,45215,9994,3800,280,9.3,4,1,6.4,77777,9,999999999,3,0.044,0,88,0,0,1 +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,42817,39540,10202,3767,300,11.1,5,2,6.4,77777,9,999999999,3,0.044,0,88,0,0,1 +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,28697,26840,12134,4008,280,7.4,6,3,6.4,77777,9,999999999,3,0.044,0,88,0,0,1 +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,12873,6503,9200,2594,260,6.7,10,5,6.4,77777,9,999999999,3,0.044,0,88,0,0,1 +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,-12.9,42,83600,60,1049,240,22,15,21,2354,0,2254,553,230,4.6,10,5,6.4,77777,9,999999999,3,0.044,0,88,0,0,1 +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,58,83500,0,0,231,0,0,0,0,0,0,0,240,2.8,10,5,6.4,77777,9,999999999,3,0.044,0,88,0,0,1 +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,6.4,6096,9,999999999,3,0.044,0,88,0,0,1 +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,6.4,6096,9,999999999,3,0.044,0,88,0,0,1 +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,6.4,5486,9,999999999,3,0.044,0,88,0,0,1 +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,6.4,5486,9,999999999,3,0.044,0,88,0,0,1 +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,6.4,4572,9,999999999,3,0.044,0,88,0,0,1 +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,6.4,4572,9,999999999,3,0.044,0,88,0,0,1 +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,6.4,3658,9,999999999,3,0.044,0,88,0,0,1 +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,10,10,6.4,3353,9,999999999,3,0.044,0,88,0,0,1 +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,6706,9,999999999,3,0.044,0,88,0,0,1 +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,77777,9,999999999,3,0.044,0,88,0,0,1 +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,77777,9,999999999,3,0.044,0,88,0,0,1 +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,77777,9,999999999,3,0.044,0,88,0,0,1 +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,8.1,77777,9,999999999,3,0.044,0,88,0,0,1 +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,64,83300,44,908,210,14,139,7,1599,0,800,240,0,0,1,1,8.1,77777,9,999999999,3,0.044,0,88,0,0,1 +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,6910,1729,3754,1252,0,0,7,6,8.1,7620,9,999999999,3,0.044,0,88,0,0,1 +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,14618,7448,9352,3211,180,1.5,10,9,8.1,3658,9,999999999,3,0.044,0,88,0,0,1 +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,15354,0,15478,5790,210,2.1,10,10,8.1,4267,9,999999999,3,0.044,0,88,0,0,1 +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,17675,0,17822,6793,0,0,10,10,8.1,4267,9,999999999,3,0.044,0,88,0,0,1 +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,-6.8,32,83600,644,1415,314,140,0,140,14222,0,14340,5834,350,3.6,10,10,8.1,2438,9,999999999,3,0.044,0,88,0,0,1 +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,12631,0,12734,5089,10,4.1,10,10,8.2,2438,9,999999999,4,0.044,0,88,0,0,1 +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,12050,2781,10132,3482,360,3.6,9,9,8.2,1981,9,999999999,4,0.044,0,88,0,0,1 +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,-5.6,31,83300,273,1415,309,44,59,33,5178,861,3890,1315,300,7.2,10,8,8.2,4267,9,999999999,4,0.044,0,88,0,0,1 +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,2184,0,1861,506,0,0,9,7,8.2,4267,9,999999999,4,0.044,0,88,0,0,1 +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,40,83000,0,0,297,0,0,0,0,0,0,0,80,3.1,8,8,8.2,7315,9,999999999,4,0.044,0,88,0,0,1 +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.2,7315,9,999999999,4,0.044,0,88,0,0,1 +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.2,77777,9,999999999,4,0.044,0,88,0,0,1 +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.3,77777,9,999999999,4,0.044,0,88,0,0,1 +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,29,82700,0,0,271,0,0,0,0,0,0,0,160,3.1,3,3,8.3,77777,9,999999999,4,0.044,0,88,0,0,1 +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,-9.4,31,82600,0,0,267,0,0,0,0,0,0,0,250,3.1,2,2,8.3,77777,9,999999999,4,0.044,0,88,0,0,1 +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,-10,21,82600,0,0,276,0,0,0,0,0,0,0,210,6.7,0,0,8.3,77777,9,999999999,5,0.044,0,88,0,0,1 +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,-9.4,31,82400,0,0,258,0,0,0,0,0,0,0,210,4.6,0,0,8.3,77777,9,999999999,5,0.044,0,88,0,0,1 +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.3,77777,9,999999999,5,0.044,0,88,0,0,1 +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.3,77777,9,999999999,5,0.044,0,88,0,0,1 +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.4,77777,9,999999999,5,0.044,0,88,0,0,1 +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.4,77777,9,999999999,5,0.044,0,88,0,0,1 +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.4,77777,9,999999999,5,0.044,0,88,0,0,1 +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,-6.1,42,82800,0,0,261,0,0,0,0,0,0,0,300,4.6,0,0,8.4,77777,9,999999999,5,0.044,0,88,0,0,1 +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,-5,33,82800,44,908,282,16,174,7,1825,0,799,240,360,1.5,0,0,8.4,77777,9,999999999,5,0.044,0,88,0,0,1 +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,35,82900,249,1415,277,142,630,31,15139,49899,4994,645,50,4.1,0,0,8.4,77777,9,999999999,5,0.044,0,88,0,0,1 +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,31144,73964,6743,1000,360,4.6,0,0,8.4,77777,9,999999999,5,0.044,0,88,0,0,1 +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,46004,41676,7746,2907,40,5.7,3,1,8.5,77777,9,999999999,5,0.044,0,88,0,0,1 +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,-6.7,20,83000,642,1415,306,465,894,60,49326,86938,9035,1381,30,5.1,2,1,8.5,77777,9,999999999,5,0.044,0,88,0,0,1 +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,54820,47244,8426,3239,30,4.1,3,1,8.5,77777,9,999999999,5,0.044,0,88,0,0,1 +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,47474,42912,8213,3089,50,3.1,2,1,8.5,77777,9,999999999,5,0.044,0,88,0,0,1 +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,-3.9,36,83100,457,1415,288,239,526,68,28006,24737,7989,2839,70,2.6,3,1,8.5,77777,9,999999999,5,0.044,0,88,0,0,1 +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,14622,7878,4651,1552,100,2.1,2,1,8.5,77777,9,999999999,5,0.044,0,88,0,0,1 +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,2630,0,1868,515,160,2.6,5,3,8.5,77777,9,999999999,5,0.044,0,88,0,0,1 +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.6,77777,9,999999999,5,0.044,0,88,0,0,1 +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,32,83200,0,0,264,0,0,0,0,0,0,0,170,4.1,3,3,8.6,77777,9,999999999,5,0.044,0,88,0,0,1 +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.6,77777,9,999999999,5,0.044,0,88,0,0,1 +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.6,77777,9,999999999,6,0.044,0,88,0,0,1 +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,-8.9,47,83200,0,0,257,0,0,0,0,0,0,0,110,2.1,6,6,8.6,7620,9,999999999,6,0.044,0,88,0,0,1 +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,41,83600,0,0,256,0,0,0,0,0,0,0,180,1.5,8,5,8.6,7620,9,999999999,6,0.044,0,88,0,0,1 +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,-10.6,40,83100,0,0,255,0,0,0,0,0,0,0,240,3.1,7,6,8.7,7620,9,999999999,6,0.044,0,88,0,0,1 +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,-11.7,37,83200,0,0,274,0,0,0,0,0,0,0,250,3.6,10,10,8.7,7620,9,999999999,6,0.043,0,88,0,0,1 +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.7,6706,9,999999999,6,0.043,0,88,0,0,1 +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.7,6706,9,999999999,6,0.043,0,88,0,0,1 +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,-14.4,29,83300,0,0,264,0,0,0,0,0,0,0,330,3.6,10,9,8.7,6706,9,999999999,6,0.043,0,88,0,0,1 +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.7,8534,9,999999999,6,0.043,0,88,0,0,1 +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,-13.9,30,83500,0,0,236,0,0,0,0,0,0,0,200,3.1,0,0,8.7,77777,9,999999999,6,0.043,0,88,0,0,1 +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.8,7620,9,999999999,6,0.043,0,88,0,0,1 +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,1130,0,905,266,240,5.2,5,3,8.8,77777,9,999999999,5,0.043,0,88,0,0,1 +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,14021,8242,5669,1791,240,4.1,4,2,8.8,77777,9,999999999,5,0.043,0,88,0,0,1 +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,-7.8,52,83900,437,1415,252,265,510,107,29831,29167,12090,3951,280,3.6,3,3,8.8,77777,9,999999999,5,0.043,0,88,0,0,1 +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,-7.8,52,84000,571,1415,241,406,859,58,43021,82130,8826,1272,210,1.5,0,0,8.8,77777,9,999999999,5,0.043,0,88,0,0,1 +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,49796,86812,9600,1409,130,3.6,0,0,8.8,77777,9,999999999,5,0.043,0,88,0,0,1 +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,50257,87146,9594,1416,130,7.7,0,0,8.8,77777,9,999999999,5,0.043,0,88,0,0,1 +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,44495,83289,8955,1297,120,6.7,0,0,8.9,77777,9,999999999,5,0.043,0,88,0,0,1 +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,32776,73243,7761,1068,120,8.2,0,0,8.9,77777,9,999999999,5,0.043,0,88,0,0,1 +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,18950,11287,4336,1459,130,7.2,0,0,8.9,77777,9,999999999,5,0.043,0,88,0,0,1 +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,2926,0,1466,433,140,8.2,0,0,8.9,77777,9,999999999,5,0.043,0,88,0,0,1 +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.9,77777,9,999999999,5,0.043,0,88,0,0,1 +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.9,77777,9,999999999,5,0.043,0,88,0,0,1 +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.9,77777,9,999999999,4,0.043,0,88,0,0,1 +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,9,77777,9,999999999,4,0.043,0,88,0,0,1 +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,9,6706,9,999999999,4,0.043,0,88,0,0,1 +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,82,83900,0,0,246,0,0,0,0,0,0,0,250,2.1,10,10,9,2743,9,999999999,4,0.043,0,88,0,0,1 +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,9,2743,9,999999999,4,0.043,0,88,0,0,1 +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,9,2286,9,999999999,4,0.043,0,88,0,0,1 +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,86,83500,0,0,244,0,0,0,0,0,0,0,260,2.6,10,10,9,2438,9,999999999,4,0.043,0,88,0,0,1 +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,9,1676,9,999999999,4,0.043,0,88,0,0,1 +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,9.1,1219,9,999999999,4,0.043,0,88,0,0,1 +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,10,10,9.1,1829,9,999999999,4,0.043,0,88,0,0,1 +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,9.1,732,9,999999999,4,0.043,0,88,0,0,1 +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,9.1,61,9,999999999,4,0.043,0,88,0,0,1 +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,483,0,486,181,240,3.6,10,10,9.1,152,9,999999999,4,0.043,0,88,0,0,1 +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,3742,0,3769,1447,190,4.1,10,10,9.1,61,9,999999999,4,0.043,0,88,0,0,1 +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,25,83700,438,1415,275,69,0,69,6902,0,6955,2833,260,1.5,10,10,9.1,30,9,999999999,4,0.043,0,88,0,0,1 +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,9403,0,9479,4011,10,1.5,10,10,9.2,30,9,999999999,4,0.043,0,88,0,0,1 +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,-13.3,22,83700,646,1415,293,105,0,105,10679,0,10768,4653,80,2.1,10,10,9.2,152,9,999999999,4,0.043,0,88,0,0,1 +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,18,83700,652,1415,294,106,0,106,10788,0,10877,4705,100,2.1,10,10,9.2,152,9,999999999,4,0.043,0,88,0,0,1 +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,-16.7,16,83700,590,1415,289,95,0,95,9621,0,9699,4126,330,2.1,10,10,9.2,0,9,999999999,4,0.043,0,88,0,0,1 +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,-16.7,16,83600,464,1415,289,74,0,74,7419,0,7476,3061,110,3.1,10,10,9.2,122,9,999999999,4,0.043,0,88,0,0,1 +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,4346,0,4377,1691,120,2.1,10,10,9.2,183,9,999999999,4,0.043,0,88,0,0,1 +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,-15.6,18,83300,72,1144,291,9,0,9,872,0,878,325,150,3.6,10,10,9.2,183,9,999999999,4,0.043,0,88,0,0,1 +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,9.3,1158,9,999999999,4,0.043,0,88,0,0,1 +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,-16.1,17,83300,0,0,290,0,0,0,0,0,0,0,220,3.6,10,10,9.3,1097,9,999999999,4,0.043,0,88,0,0,1 +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,9.3,1676,9,999999999,4,0.043,0,88,0,0,1 +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,23,83100,0,0,272,0,0,0,0,0,0,0,210,5.2,10,9,9.3,2438,9,999999999,4,0.043,0,88,0,0,1 +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,9.3,2438,9,999999999,5,0.043,0,88,0,0,1 +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,-11.7,37,83200,0,0,254,0,0,0,0,0,0,0,230,4.6,6,6,9.3,6096,9,999999999,5,0.043,0,88,0,0,1 +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,9.3,2438,9,999999999,5,0.043,0,88,0,0,1 +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,9.4,1219,9,999999999,5,0.043,0,88,0,0,1 +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,9.4,975,9,999999999,5,0.043,0,88,0,0,1 +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,9.4,1829,9,999999999,5,0.043,0,88,0,0,1 +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,9.4,152,9,999999999,5,0.043,0,88,0,0,1 +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,9.4,2438,9,999999999,5,0.043,0,88,0,0,1 +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,9.4,2134,9,999999999,5,0.043,0,88,0,0,1 +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,9.4,77777,9,999999999,5,0.043,0,88,0,0,1 +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,1568,0,1010,292,270,3.1,3,3,9.5,77777,9,999999999,5,0.043,0,88,0,0,1 +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,14054,46276,4531,642,280,6.7,1,1,9.5,77777,9,999999999,5,0.043,0,88,0,0,1 +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,-11.1,27,83000,439,1415,261,290,797,43,30827,72657,6737,1005,260,5.2,1,1,9.5,77777,9,999999999,5,0.043,0,88,0,0,1 +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,41607,38777,12910,4630,270,7.2,2,2,9.5,77777,9,999999999,5,0.043,0,88,0,0,1 +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,50839,44975,10678,4054,290,7.2,3,3,9.5,77777,9,999999999,5,0.043,0,88,0,0,1 +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,54949,48424,10129,3869,280,7.7,1,1,9.5,77777,9,999999999,5,0.043,0,88,0,0,1 +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,46906,91111,6482,1134,280,5.2,0,0,9.5,77777,9,999999999,5,0.043,0,88,0,0,1 +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,35228,82196,5528,946,290,5.2,0,0,9.6,77777,9,999999999,5,0.043,0,88,0,0,1 +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,19274,62134,4220,675,300,2.6,0,0,9.6,77777,9,999999999,5,0.043,0,88,0,0,1 +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,31,82200,75,1167,260,29,272,12,3309,0,1371,416,290,3.6,2,1,9.6,77777,9,999999999,5,0.043,0,88,0,0,1 +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,41,82200,0,0,252,0,0,0,0,0,0,0,240,3.6,5,3,9.6,77777,9,999999999,5,0.043,0,88,0,0,1 +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,9.6,7620,9,999999999,5,0.043,0,88,0,0,1 +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,9.6,77777,9,999999999,5,0.043,0,88,0,0,1 +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,9.6,7620,9,999999999,5,0.043,0,88,0,0,1 +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,9.7,4572,9,999999999,5,0.043,0,88,0,0,1 +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,9.7,4572,9,999999999,6,0.043,0,88,0,0,1 +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,9.7,4572,9,999999999,6,0.043,0,88,0,0,1 +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,9.7,77777,9,999999999,6,0.043,0,88,0,0,1 +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,9.7,77777,9,999999999,6,0.043,0,88,0,0,1 +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,9.7,77777,9,999999999,6,0.043,0,88,0,0,1 +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,9.8,77777,9,999999999,6,0.043,0,88,0,0,1 +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,9.8,77777,9,999999999,6,0.043,0,88,0,0,1 +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,9.8,77777,9,999999999,6,0.043,0,88,0,0,1 +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,-8.3,75,82100,0,0,224,0,0,0,0,0,0,0,0,0,1,0,9.8,77777,9,999999999,6,0.043,0,88,0,0,1 +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,1583,0,906,268,130,2.6,1,1,9.8,77777,9,999999999,6,0.043,0,88,0,0,1 +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,15730,7805,4404,1450,140,2.6,0,0,9.8,77777,9,999999999,6,0.043,0,88,0,0,1 +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,35,82500,441,1415,249,287,749,53,34199,32224,6329,2272,110,4.6,0,0,9.8,77777,9,999999999,6,0.043,0,88,0,0,1 +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,48990,44800,7759,2919,100,5.2,0,0,9.9,77777,9,999999999,6,0.043,0,88,0,0,1 +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,49687,84567,10440,1444,100,5.2,0,0,9.9,77777,9,999999999,6,0.043,0,88,0,0,1 +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,50320,84976,10572,1458,90,6.2,0,0,9.9,77777,9,999999999,6,0.043,0,88,0,0,1 +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,51103,46101,8011,3031,100,6.2,0,0,9.9,77777,9,999999999,6,0.043,0,88,0,0,1 +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,37390,35317,6704,2431,120,5.7,0,0,9.9,77777,9,999999999,6,0.043,0,88,0,0,1 +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,19337,12936,4786,1609,70,4.6,0,0,9.9,77777,9,999999999,7,0.043,0,88,0,0,1 +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,3148,0,1690,501,100,4.1,0,0,9.9,77777,9,999999999,7,0.043,0,88,0,0,1 +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,10,77777,9,999999999,7,0.043,0,88,0,0,1 +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,-6.1,60,82200,0,0,243,0,0,0,0,0,0,0,170,4.6,0,0,10,77777,9,999999999,7,0.043,0,88,0,0,1 +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,10,77777,9,999999999,7,0.043,0,88,0,0,1 +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,10,77777,9,999999999,7,0.043,0,88,0,0,1 +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,10,77777,9,999999999,7,0.043,0,88,0,0,1 +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,10,77777,9,999999999,7,0.043,0,88,0,0,1 +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,10,77777,9,999999999,7,0.043,0,88,0,0,1 +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,10.1,77777,9,999999999,7,0.043,0,88,0,0,1 +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,-8.3,75,81900,0,0,224,0,0,0,0,0,0,0,210,5.2,0,0,10.1,77777,9,999999999,7,0.043,0,88,0,0,1 +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,-8.3,75,81900,0,0,224,0,0,0,0,0,0,0,190,4.1,0,0,10.1,77777,9,999999999,7,0.043,0,88,0,0,1 +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,10.1,77777,9,999999999,7,0.043,0,88,0,0,1 +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,10.1,77777,9,999999999,7,0.043,0,88,0,0,1 +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,10.1,77777,9,999999999,7,0.043,0,88,0,0,1 +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,10.1,77777,9,999999999,7,0.043,0,88,0,0,1 +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,-10.6,61,81800,46,908,222,19,234,7,2024,10640,1171,143,200,5.2,0,0,10.2,77777,9,999999999,7,0.043,0,88,0,0,1 +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,16040,55244,4068,626,220,5.7,0,0,10.2,77777,9,999999999,7,0.043,0,88,0,0,1 +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,32409,78199,5540,928,240,5.7,0,0,10.2,77777,9,999999999,7,0.043,0,88,0,0,1 +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,45010,88534,6637,1140,220,5.7,0,0,10.2,77777,9,999999999,7,0.043,0,88,0,0,1 +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,51931,92603,7153,1253,220,4.1,0,0,10.2,77777,9,999999999,7,0.043,0,88,0,0,1 +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,52575,93012,7147,1258,220,1.5,0,0,10.2,77777,9,999999999,7,0.043,0,88,0,0,1 +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,46881,89759,6767,1168,210,2.1,0,0,10.2,77777,9,999999999,7,0.043,0,88,0,0,1 +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,35436,80989,5821,979,0,0,0,0,10.3,77777,9,999999999,7,0.043,0,88,0,0,1 +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,19558,61429,4372,695,40,2.6,0,0,10.3,77777,9,999999999,7,0.043,0,88,0,0,1 +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,3827,19847,1990,242,70,2.1,0,0,10.3,77777,9,999999999,7,0.043,0,88,0,0,1 +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,10.3,77777,9,999999999,7,0.043,0,88,0,0,1 +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,10.3,77777,9,999999999,7,0.043,0,88,0,0,1 +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,10.3,77777,9,999999999,7,0.043,0,88,0,0,1 +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,10.3,77777,9,999999999,7,0.043,0,88,0,0,1 +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,10.4,77777,9,999999999,7,0.043,0,88,0,0,1 +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,61,82600,0,0,224,0,0,0,0,0,0,0,220,3.6,0,0,10.4,77777,9,999999999,7,0.043,0,88,0,0,1 +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,-11.1,59,82000,0,0,221,0,0,0,0,0,0,0,210,7.7,0,0,10.4,77777,9,999999999,6,0.043,0,88,0,0,1 +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,10.4,77777,9,999999999,6,0.043,0,88,0,0,1 +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,10.4,77777,9,999999999,6,0.043,0,88,0,0,1 +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,10.4,77777,9,999999999,6,0.043,0,88,0,0,1 +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,10.4,77777,9,999999999,6,0.043,0,88,0,0,1 +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,-12.2,53,82400,0,0,225,0,0,0,0,0,0,0,230,6.2,4,1,10.5,77777,9,999999999,6,0.043,0,88,0,0,1 +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,10.5,77777,9,999999999,6,0.043,0,88,0,0,1 +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,10.5,77777,9,999999999,6,0.043,0,88,0,0,1 +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,1864,0,1319,359,220,5.7,6,2,10.5,77777,9,999999999,6,0.043,0,88,0,0,1 +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,12367,6921,6201,1935,210,6.7,8,3,10.5,77777,9,999999999,6,0.043,0,88,0,0,1 +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,32895,33357,9378,3241,230,4.6,7,2,10.5,77777,9,999999999,6,0.043,0,88,0,0,1 +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,38012,33802,12285,4454,200,3.1,8,3,10.5,77777,9,999999999,6,0.043,0,88,0,0,1 +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,53644,49158,14106,5225,110,2.1,7,2,10.6,77777,9,999999999,6,0.043,0,88,0,0,1 +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,53893,49501,18848,6662,90,6.2,8,4,10.6,77777,9,999999999,6,0.043,0,88,0,0,1 +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,49304,47913,13856,4995,90,7.7,7,4,10.6,77777,9,999999999,6,0.043,0,88,0,0,1 +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,22469,13209,15042,4821,110,7.2,9,5,10.6,7925,9,999999999,6,0.043,0,88,0,0,1 +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,-17.8,10,83000,301,1414,290,104,103,81,11513,4111,8999,2700,110,4.6,10,7,10.6,6096,9,999999999,6,0.043,0,88,0,0,1 +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,3446,0,3025,769,120,4.1,9,6,10.6,5486,9,999999999,5,0.043,0,88,0,0,1 +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,10.6,5486,9,999999999,5,0.043,0,88,0,0,1 +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,10.7,5486,9,999999999,5,0.043,0,88,0,0,1 +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,10.7,6096,9,999999999,5,0.043,0,88,0,0,1 +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,10.7,5486,9,999999999,5,0.043,0,88,0,0,1 +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,18,82200,0,0,288,0,0,0,0,0,0,0,260,4.6,10,9,10.7,4877,9,999999999,5,0.043,0,88,0,0,1 +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,10.7,3962,9,999999999,5,0.043,0,88,0,0,1 +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,10.7,3353,9,999999999,5,0.043,0,88,0,0,1 +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,10.7,2438,9,999999999,5,0.043,0,88,0,0,1 +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,-12.2,35,82100,0,0,274,0,0,0,0,0,0,0,220,3.6,10,10,10.8,1158,9,999999999,5,0.043,0,88,0,0,1 +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,10.8,274,9,999999999,5,0.043,0,88,0,0,1 +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,10.8,244,9,999999999,5,0.043,0,88,0,0,1 +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,-11.1,59,82500,0,0,256,0,0,0,0,0,0,0,220,3.6,10,10,10.8,244,9,999999999,5,0.043,0,88,0,0,1 +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,10.8,244,9,999999999,5,0.043,0,88,0,0,1 +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,10.8,183,9,999999999,5,0.043,0,88,0,0,1 +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,386,0,389,150,240,4.1,10,10,10.8,152,9,999999999,5,0.043,0,88,0,0,1 +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,3743,0,3770,1457,230,4.1,10,10,10.9,213,9,999999999,5,0.043,0,88,0,0,1 +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,7605,0,7664,3086,220,4.1,10,10,10.9,305,9,999999999,4,0.043,0,88,0,0,1 +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,10523,0,10608,4428,240,3.1,10,10,10.9,305,9,999999999,4,0.043,0,88,0,0,1 +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,10180,0,10265,4506,180,1.5,10,10,10.9,183,9,999999999,4,0.043,0,88,0,0,1 +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,12429,0,12533,5333,120,4.1,10,10,10.9,274,9,999999999,4,0.043,0,88,0,0,1 +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,9227,0,9302,4029,90,5.7,10,10,10.9,183,9,999999999,4,0.043,0,88,0,0,1 +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,8332,0,8397,3414,100,5.2,10,10,11,213,9,999999999,4,0.043,0,88,0,0,1 +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,4649,0,4683,1824,100,4.1,10,10,11,274,9,999999999,4,0.043,0,88,0,0,1 +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,1165,0,1173,433,110,5.2,10,10,11,427,9,999999999,4,0.043,0,88,0,0,1 +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,11,488,9,999999999,4,0.043,0,88,0,0,1 +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,11,183,9,999999999,4,0.043,0,88,0,0,1 +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,11,1280,9,999999999,4,0.043,0,88,0,0,1 +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,11,1829,9,999999999,4,0.043,0,88,0,0,1 +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,11.1,1829,9,999999999,4,0.043,0,88,0,0,1 +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,11.1,1829,9,999999999,4,0.043,0,88,0,0,1 +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,49,83500,0,0,247,0,0,0,0,0,0,0,220,4.1,8,5,11.1,2134,9,999999999,4,0.043,0,88,0,0,1 +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,41,83600,0,0,252,0,0,0,0,0,0,0,210,4.6,4,3,11.1,77777,9,999999999,4,0.043,0,88,0,0,1 +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,34,83600,0,0,268,0,0,0,0,0,0,0,220,4.1,7,6,11.1,1981,9,999999999,4,0.043,0,88,0,0,1 +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,35,83700,0,0,260,0,0,0,0,0,0,0,220,5.2,3,3,11.1,77777,9,999999999,4,0.043,0,88,0,0,1 +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,11.1,77777,9,999999999,3,0.043,0,88,0,0,1 +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,11.2,77777,9,999999999,3,0.043,0,88,0,0,1 +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,11.2,77777,9,999999999,3,0.043,0,88,0,0,1 +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,11.2,77777,9,999999999,4,0.043,0,88,0,0,1 +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,2252,13620,1013,148,230,5.7,0,0,11.2,77777,9,999999999,4,0.043,0,88,0,0,1 +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,17197,60470,3603,599,230,3.6,0,0,11.2,77777,9,999999999,4,0.043,0,88,0,0,1 +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,34185,82994,4935,873,250,4.1,0,0,11.2,77777,9,999999999,4,0.043,0,88,0,0,1 +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,47179,92942,5899,1067,230,4.1,0,0,11.2,77777,9,999999999,4,0.043,0,88,0,0,1 +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,54381,96946,6424,1179,230,2.6,0,0,11.3,77777,9,999999999,4,0.043,0,88,0,0,1 +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,-9.4,22,84400,672,1414,282,494,845,92,59174,52378,11054,4225,210,1.5,1,1,11.3,77777,9,999999999,4,0.043,0,88,0,0,1 +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,22,84400,613,1414,274,456,954,42,48756,92224,6467,1147,180,1.5,1,0,11.3,77777,9,999999999,4,0.043,0,88,0,0,1 +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,22,84400,489,1414,279,323,835,35,34619,77864,5517,959,0,0,1,1,11.3,77777,9,999999999,4,0.043,0,88,0,0,1 +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,22,84500,310,1414,279,171,674,24,18385,56618,3907,669,0,0,1,1,11.3,77777,9,999999999,4,0.043,0,88,0,0,1 +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,24,84200,92,1285,275,40,314,18,4496,0,2027,603,20,4.1,4,1,11.3,77777,9,999999999,4,0.043,0,88,0,0,1 +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,26,84400,0,0,271,0,0,0,0,0,0,0,40,2.6,4,1,11.3,77777,9,999999999,5,0.043,0,88,0,0,1 +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,11.4,77777,9,999999999,5,0.043,0,88,0,0,1 +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,5,4,11.4,77777,9,999999999,5,0.043,0,88,0,0,1 +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,11.4,77777,9,999999999,5,0.043,0,88,0,0,1 +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,11.4,77777,9,999999999,5,0.043,0,88,0,0,1 +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,11.4,77777,9,999999999,5,0.043,0,88,0,0,1 +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,11.4,3658,9,999999999,5,0.043,0,88,0,0,1 +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,11.4,3658,9,999999999,5,0.043,0,88,0,0,1 +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,11.5,1981,9,999999999,5,0.043,0,88,0,0,1 +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,11.5,2591,9,999999999,5,0.043,0,88,0,0,1 +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,11.5,2591,9,999999999,5,0.043,0,88,0,0,1 +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,11.5,77777,9,999999999,5,0.043,0,88,0,0,1 +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,11.5,77777,9,999999999,5,0.043,0,88,0,0,1 +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,11.5,3658,9,999999999,5,0.043,0,88,0,0,1 +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,1541,0,1324,366,170,6.2,8,8,11.5,3962,9,999999999,5,0.043,0,88,0,0,1 +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,13149,7818,7650,2275,200,5.7,5,4,11.6,77777,9,999999999,5,0.043,0,88,0,0,1 +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,-8.3,25,84400,452,1414,290,246,355,133,27305,23037,14826,4633,220,4.1,5,3,11.6,77777,9,999999999,5,0.043,0,88,0,0,1 +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,39342,34614,13161,4750,210,6.2,5,4,11.6,77777,9,999999999,5,0.043,0,88,0,0,1 +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,60634,55439,12809,4824,220,3.1,3,3,11.6,77777,9,999999999,5,0.043,0,88,0,0,1 +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,34640,25599,11061,4234,160,2.1,4,4,11.6,77777,9,999999999,5,0.043,0,88,0,0,1 +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,28894,19097,14735,5301,100,3.1,8,8,11.6,7620,9,999999999,5,0.043,0,88,0,0,1 +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,26528,17863,16724,5251,80,6.2,9,7,11.6,7620,9,999999999,5,0.043,0,88,0,0,1 +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,9370,1351,8618,2671,90,5.2,10,9,11.7,2896,9,999999999,5,0.043,0,88,0,0,1 +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,-8.9,23,83600,96,1308,312,17,15,16,1936,0,1825,557,80,4.1,10,9,11.7,2896,9,999999999,5,0.043,0,88,0,0,1 +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,11.7,2438,9,999999999,5,0.043,0,88,0,0,1 +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,11.7,1067,9,999999999,5,0.043,0,88,0,0,1 +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,11.7,152,9,999999999,5,0.043,0,88,0,0,1 +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,11.7,610,9,999999999,5,0.043,0,88,0,0,1 +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,11.7,274,9,999999999,5,0.043,0,88,0,0,1 +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,11.8,274,9,999999999,5,0.043,0,88,0,0,1 +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,11.8,274,9,999999999,5,0.043,0,88,0,0,1 +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,11.8,152,9,999999999,5,0.043,0,88,0,0,1 +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,11.8,77777,9,999999999,5,0.043,0,88,0,0,1 +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,11.8,77777,9,999999999,5,0.043,0,88,0,0,1 +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,11.8,77777,9,999999999,5,0.043,0,88,0,0,1 +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,11.8,77777,9,999999999,5,0.043,0,88,0,0,1 +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,11.9,77777,9,999999999,5,0.043,0,88,0,0,1 +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,11.9,77777,9,999999999,5,0.043,0,88,0,0,1 +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,2138,11704,1174,156,230,4.6,0,0,11.9,77777,9,999999999,5,0.043,0,88,0,0,1 +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,16792,56679,4223,646,230,4.6,0,0,11.9,77777,9,999999999,5,0.043,0,88,0,0,1 +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,33602,79572,5685,950,240,3.6,0,0,11.9,77777,9,999999999,6,0.043,0,88,0,0,1 +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,-10,21,83600,594,1414,276,436,933,44,46538,89788,6773,1164,240,3.1,0,0,11.9,77777,9,999999999,6,0.043,0,88,0,0,1 +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,53784,93888,7427,1294,0,0,0,0,11.9,77777,9,999999999,6,0.043,0,88,0,0,1 +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,51753,88377,7847,1342,0,0,1,0,12,77777,9,999999999,6,0.043,0,88,0,0,1 +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,48380,89307,7475,1251,360,1.5,1,0,12,77777,9,999999999,6,0.043,0,88,0,0,1 +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,37208,81615,6404,1046,0,0,1,0,12,77777,9,999999999,6,0.043,0,88,0,0,1 +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,21168,62855,4982,758,30,2.1,1,0,12,77777,9,999999999,6,0.043,0,88,0,0,1 +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,4909,24864,2317,293,40,2.6,0,0,12,77777,9,999999999,6,0.043,0,88,0,0,1 +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,12,77777,9,999999999,6,0.043,0,88,0,0,1 +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,12.1,77777,9,999999999,6,0.043,0,88,0,0,1 +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,12.1,77777,9,999999999,6,0.043,0,88,0,0,1 +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,12.1,77777,9,999999999,6,0.043,0,88,0,0,1 +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,12.1,77777,9,999999999,6,0.043,0,88,0,0,1 +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,12.1,77777,9,999999999,6,0.043,0,88,0,0,1 +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,-9.4,45,83600,0,0,252,0,0,0,0,0,0,0,260,2.6,7,4,12.1,7620,9,999999999,6,0.043,0,88,0,0,1 +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,12.1,7620,9,999999999,6,0.043,0,88,0,0,1 +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,12.2,6706,9,999999999,6,0.043,0,88,0,0,1 +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,26,83500,0,0,279,0,0,0,0,0,0,0,250,3.6,6,5,12.2,6706,9,999999999,6,0.043,0,88,0,0,1 +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,12.2,77777,9,999999999,6,0.043,0,88,0,0,1 +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,12.2,77777,9,999999999,6,0.043,0,88,0,0,1 +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,12.2,5182,9,999999999,6,0.043,0,88,0,0,1 +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,12.2,5182,9,999999999,6,0.043,0,88,0,0,1 +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,-5.6,62,83500,51,954,260,12,23,11,1335,0,1226,351,220,3.6,9,6,12.2,5182,9,999999999,6,0.043,0,88,0,0,1 +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,-5.6,62,83600,264,1414,260,95,118,73,10461,3691,8067,2374,100,2.1,7,6,12.3,4572,9,999999999,6,0.043,0,88,0,0,1 +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,25011,10625,20482,5541,70,4.6,9,8,12.3,4572,9,999999999,5,0.043,0,88,0,0,1 +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,-2.8,79,83800,597,1414,263,277,266,164,31210,19537,18562,6265,50,6.7,7,6,12.3,4572,9,999999999,5,0.043,0,88,0,0,1 +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,40383,26343,22836,7734,30,5.7,8,8,12.3,4572,9,999999999,5,0.043,0,88,0,0,1 +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,48841,35661,27233,8719,20,9.3,7,7,12.3,4572,9,999999999,5,0.043,0,88,0,0,1 +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,44495,37611,20032,6769,10,9.8,8,3,12.3,77777,9,999999999,5,0.043,0,88,0,0,1 +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,32864,30016,10135,3597,10,10.3,5,2,12.3,77777,9,999999999,5,0.043,0,88,0,0,1 +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,19919,16915,8533,2684,10,6.2,4,3,12.4,77777,9,999999999,5,0.043,0,88,0,0,1 +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,4338,0,3373,904,350,4.1,4,2,12.4,77777,9,999999999,5,0.043,0,88,0,0,1 +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,-3.9,72,83500,0,0,250,0,0,0,0,0,0,0,10,4.1,3,1,12.4,77777,9,999999999,5,0.043,0,88,0,0,1 +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,12.4,77777,9,999999999,5,0.043,0,88,0,0,1 +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,12.4,7620,9,999999999,5,0.043,0,88,0,0,1 +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,12.4,4877,9,999999999,5,0.043,0,88,0,0,1 +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,12.4,518,9,999999999,5,0.043,0,88,0,0,1 +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,49,83500,0,0,252,0,0,0,0,0,0,0,340,3.6,7,7,12.5,4877,9,999999999,4,0.043,0,88,0,0,1 +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,51,83700,0,0,267,0,0,0,0,0,0,0,360,3.1,10,10,12.5,1524,9,999999999,4,0.043,0,88,0,0,1 +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,12.5,1402,9,999999999,4,0.042,0,88,0,0,1 +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,12.5,1372,9,999999999,4,0.042,0,88,0,0,1 +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,12.5,1250,9,999999999,4,0.042,0,88,0,0,1 +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,12.5,792,9,999999999,4,0.042,0,88,0,0,1 +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,12.5,853,9,999999999,4,0.042,0,88,0,0,1 +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,12.6,1250,9,999999999,4,0.042,0,88,0,0,1 +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,-11.1,39,83600,0,0,268,0,0,0,0,0,0,0,340,2.6,10,9,12.6,1158,9,999999999,4,0.042,0,88,0,0,1 +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,-8.9,71,83800,53,954,258,7,0,7,676,0,681,248,280,3.1,10,10,12.6,1006,9,999999999,4,0.042,0,88,0,0,1 +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,5124,0,5161,1889,300,3.1,10,10,12.6,1463,9,999999999,4,0.042,0,88,0,0,1 +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,-7.8,52,83900,460,1414,261,177,227,104,20083,13044,11843,3971,330,4.6,7,7,12.6,3658,9,999999999,4,0.042,0,88,0,0,1 +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,-7.2,54,84100,600,1414,266,300,270,185,33522,21224,20772,6785,360,5.2,8,8,12.6,3658,9,999999999,4,0.042,0,88,0,0,1 +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,42927,34265,13492,5079,20,4.1,6,6,12.6,3658,9,999999999,4,0.042,0,88,0,0,1 +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,50351,42281,18167,6574,310,3.1,6,6,12.7,3658,9,999999999,4,0.042,0,88,0,0,1 +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,47548,42985,17333,6095,10,2.1,5,5,12.7,77777,9,999999999,4,0.042,0,88,0,0,1 +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,61,84000,507,1414,238,333,733,70,39413,37868,8306,3016,350,3.6,5,5,12.7,77777,9,999999999,4,0.042,0,88,0,0,1 +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,17615,11610,12121,3390,20,3.1,6,6,12.7,3658,9,999999999,4,0.042,0,88,0,0,1 +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,2621,0,2055,631,10,1.5,8,6,12.7,3658,9,999999999,4,0.042,0,88,0,0,1 +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,4,4,12.7,77777,9,999999999,4,0.042,0,88,0,0,1 +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,12.7,77777,9,999999999,4,0.042,0,88,0,0,1 +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,12.8,1676,9,999999999,4,0.042,0,88,0,0,1 +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,-12.8,78,83600,0,0,224,0,0,0,0,0,0,0,230,2.1,10,8,12.8,1219,9,999999999,4,0.042,0,88,0,0,1 +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,12.8,1372,9,999999999,4,0.042,0,88,0,0,1 +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,12.8,1829,9,999999999,3,0.042,0,88,0,0,1 +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,12.8,2134,9,999999999,3,0.042,0,88,0,0,1 +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,12.8,77777,9,999999999,3,0.042,0,88,0,0,1 +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,12.8,77777,9,999999999,3,0.042,0,88,0,0,1 +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,12.9,77777,9,999999999,3,0.042,0,88,0,0,1 +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,12.9,77777,9,999999999,3,0.042,0,88,0,0,1 +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,12.9,77777,9,999999999,3,0.042,0,88,0,0,1 +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,12.9,77777,9,999999999,3,0.042,0,88,0,0,1 +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,12.9,77777,9,999999999,3,0.042,0,88,0,0,1 +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,2566,15395,1177,165,230,3.6,0,0,12.9,77777,9,999999999,3,0.042,0,88,0,0,1 +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,18147,62442,3601,608,270,2.6,0,0,12.9,77777,9,999999999,4,0.042,0,88,0,0,1 +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,35564,84515,4928,880,330,2.1,0,0,13,77777,9,999999999,4,0.042,0,88,0,0,1 +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,48924,94389,5888,1076,310,2.1,0,0,13,77777,9,999999999,4,0.042,0,88,0,0,1 +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,56339,98264,6409,1190,300,1.5,0,0,13,77777,9,999999999,4,0.042,0,88,0,0,1 +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,57378,98710,6544,1214,280,2.1,0,0,13,77777,9,999999999,4,0.042,0,88,0,0,1 +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,51664,95768,6156,1127,240,2.1,0,0,13,77777,9,999999999,4,0.042,0,88,0,0,1 +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,40061,88047,5353,957,200,2.1,0,0,13,77777,9,999999999,4,0.042,0,88,0,0,1 +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,12,83700,333,1413,278,220,829,25,23602,70806,4056,701,0,0,0,0,13,77777,9,999999999,4,0.042,0,88,0,0,1 +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,12,83300,113,1402,278,56,534,13,5982,32829,2164,319,50,3.1,0,0,13.1,77777,9,999999999,4,0.042,0,88,0,0,1 +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,-14.4,14,83300,0,0,272,0,0,0,0,0,0,0,60,3.6,0,0,13.1,77777,9,999999999,4,0.042,0,88,0,0,1 +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,13,83100,0,0,275,0,0,0,0,0,0,0,90,3.6,0,0,13.1,77777,9,999999999,4,0.042,0,88,0,0,1 +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,13,83100,0,0,273,0,0,0,0,0,0,0,100,3.6,0,0,13.1,77777,9,999999999,4,0.042,0,88,0,0,1 +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,13.1,77777,9,999999999,4,0.042,0,88,0,0,1 +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,13.1,77777,9,999999999,4,0.042,0,88,0,0,1 +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,13.1,77777,9,999999999,4,0.042,0,88,0,0,1 +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,13.2,77777,9,999999999,4,0.042,0,88,0,0,1 +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,13.2,77777,9,999999999,4,0.042,0,88,0,0,1 +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,13.2,77777,9,999999999,4,0.042,0,88,0,0,1 +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,13.2,77777,9,999999999,4,0.042,0,88,0,0,1 +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,5,1,13.2,77777,9,999999999,4,0.042,0,88,0,0,1 +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,20,82900,0,0,255,0,0,0,0,0,0,0,260,1.5,5,1,13.2,77777,9,999999999,4,0.042,0,88,0,0,1 +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,13.3,77777,9,999999999,5,0.042,0,88,0,0,1 +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,5,3,13.3,77777,9,999999999,5,0.042,0,88,0,0,1 +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,2331,11450,1496,167,230,2.1,1,0,13.3,77777,9,999999999,5,0.042,0,88,0,0,1 +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,18697,10874,4005,1349,160,2.6,3,0,13.3,77777,9,999999999,5,0.042,0,88,0,0,1 +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,33888,77570,6421,1018,160,2.6,1,0,13.3,77777,9,999999999,5,0.042,0,88,0,0,1 +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,-17.8,7,83400,607,1413,287,442,911,51,46826,87588,7774,1261,230,2.1,1,0,13.3,77777,9,999999999,5,0.042,0,88,0,0,1 +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,-16.7,8,83800,686,1413,289,519,960,52,55041,93772,7838,1348,40,2.6,0,0,13.3,77777,9,999999999,5,0.042,0,88,0,0,1 +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,52965,87139,9103,1460,40,4.1,3,1,13.4,77777,9,999999999,5,0.042,0,88,0,0,1 +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,53766,47540,8310,3184,50,5.7,4,1,13.4,77777,9,999999999,5,0.042,0,88,0,0,1 +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,-17.8,7,83500,517,1413,287,352,807,57,42445,40370,6888,2540,60,5.2,4,0,13.4,77777,9,999999999,5,0.042,0,88,0,0,1 +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,24068,21267,5943,2016,90,4.1,7,0,13.4,77777,9,999999999,5,0.042,0,88,0,0,1 +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,5873,0,2490,753,100,2.1,5,0,13.4,77777,9,999999999,5,0.042,0,88,0,0,1 +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,13.4,77777,9,999999999,5,0.042,0,88,0,0,1 +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,13.4,77777,9,999999999,6,0.042,0,88,0,0,1 +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,13.5,77777,9,999999999,6,0.042,0,88,0,0,1 +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,13.5,77777,9,999999999,6,0.042,0,88,0,0,1 +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,13.5,77777,9,999999999,6,0.042,0,88,0,0,1 +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,-7.8,79,83600,0,0,224,0,0,0,0,0,0,0,150,3.1,0,0,13.5,77777,9,999999999,6,0.042,0,88,0,0,1 +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,13.5,77777,9,999999999,6,0.042,0,88,0,0,1 +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,13.5,77777,9,999999999,6,0.043,0,88,0,0,1 +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,13.5,77777,9,999999999,6,0.043,0,88,0,0,1 +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,-6.1,91,83000,0,0,226,0,0,0,0,0,0,0,170,3.1,0,0,13.6,77777,9,999999999,6,0.043,0,88,0,0,1 +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,-6.1,91,83000,0,0,226,0,0,0,0,0,0,0,180,3.1,0,0,13.6,77777,9,999999999,6,0.043,0,88,0,0,1 +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,-5.6,95,83300,0,0,226,0,0,0,0,0,0,0,190,3.6,0,0,13.6,77777,9,999999999,6,0.043,0,88,0,0,1 +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,-6.1,91,83000,0,0,226,0,0,0,0,0,0,0,190,3.6,0,0,13.6,77777,9,999999999,6,0.043,0,88,0,0,1 +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,13.6,77777,9,999999999,6,0.043,0,88,0,0,1 +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,2488,0,1133,337,200,2.1,0,0,13.6,77777,9,999999999,6,0.043,0,88,0,0,1 +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,17168,54192,5144,697,130,2.1,0,0,13.6,77777,9,999999999,6,0.043,0,88,0,0,1 +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,34253,77198,6870,1048,0,0,0,0,13.7,77777,9,999999999,6,0.043,0,88,0,0,1 +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,61,83300,611,1413,248,446,907,53,47520,87809,8066,1285,20,2.6,0,0,13.7,77777,9,999999999,6,0.043,0,88,0,0,1 +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,58,83600,690,1413,250,517,938,59,54978,92148,8836,1433,30,2.6,0,0,13.7,77777,9,999999999,6,0.043,0,88,0,0,1 +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,56129,92663,8822,1446,40,2.1,0,0,13.7,77777,9,999999999,6,0.043,0,88,0,0,1 +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,50619,89672,8462,1350,40,3.6,0,0,13.7,77777,9,999999999,5,0.043,0,88,0,0,1 +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,39195,81697,7421,1140,30,2.6,0,0,13.7,77777,9,999999999,5,0.043,0,88,0,0,1 +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,23041,63873,5736,825,20,3.1,0,0,13.7,77777,9,999999999,5,0.043,0,88,0,0,1 +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,6385,0,2284,707,360,2.1,0,0,13.8,77777,9,999999999,5,0.043,0,88,0,0,1 +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,13.8,77777,9,999999999,5,0.043,0,88,0,0,1 +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,13.8,77777,9,999999999,5,0.043,0,88,0,0,1 +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,-6.1,60,83200,0,0,243,0,0,0,0,0,0,0,290,2.1,0,0,13.8,77777,9,999999999,5,0.043,0,88,0,0,1 +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,13.8,77777,9,999999999,5,0.043,0,88,0,0,1 +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,13.8,77777,9,999999999,5,0.043,0,88,0,0,1 +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,13.8,77777,9,999999999,4,0.043,0,88,0,0,1 +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,13.9,77777,9,999999999,4,0.043,0,88,0,0,1 +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,-7.8,79,82900,0,0,224,0,0,0,0,0,0,0,210,3.1,1,0,13.9,77777,9,999999999,4,0.043,0,88,0,0,1 +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,13.9,77777,9,999999999,4,0.043,0,88,0,0,1 +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,13.9,77777,9,999999999,4,0.043,0,88,0,0,1 +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,13.9,77777,9,999999999,4,0.043,0,88,0,0,1 +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,13.9,77777,9,999999999,4,0.043,0,88,0,0,1 +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,13.9,77777,9,999999999,4,0.043,0,88,0,0,1 +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,14,77777,9,999999999,4,0.043,0,88,0,0,1 +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,2609,0,1136,340,200,4.1,0,0,14,77777,9,999999999,4,0.043,0,88,0,0,1 +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,17450,54410,5295,705,230,4.6,0,0,14,77777,9,999999999,4,0.043,0,88,0,0,1 +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,34786,77692,7162,1067,240,4.6,0,0,14,77777,9,999999999,4,0.043,0,88,0,0,1 +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,48183,88333,8491,1316,220,3.6,0,0,14,77777,9,999999999,4,0.043,0,88,0,0,1 +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,55714,92619,9110,1457,210,3.1,0,0,14,77777,9,999999999,4,0.043,0,88,0,0,1 +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,16,82500,706,1413,300,527,912,71,55556,89406,10501,1542,180,2.1,3,1,14,77777,9,999999999,4,0.043,0,88,0,0,1 +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,48225,42632,14616,5363,160,1.5,2,2,14.1,77777,9,999999999,4,0.043,0,88,0,0,1 +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,37332,76445,7560,1154,130,3.1,1,1,14.1,77777,9,999999999,4,0.043,0,88,0,0,1 +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,-12.2,13,82500,348,1413,304,204,613,53,23707,20831,6174,2101,120,2.1,2,2,14.1,77777,9,999999999,4,0.043,0,88,0,0,1 +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,3799,0,3024,896,100,3.6,3,3,14.1,77777,9,999999999,4,0.043,0,88,0,0,1 +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,14.1,77777,9,999999999,4,0.043,0,88,0,0,1 +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,14.1,77777,9,999999999,3,0.043,0,88,0,0,1 +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,14.1,77777,9,999999999,3,0.043,0,88,0,0,1 +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,14.2,77777,9,999999999,3,0.043,0,88,0,0,1 +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,14.2,77777,9,999999999,3,0.043,0,88,0,0,1 +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,14.2,4267,9,999999999,3,0.043,0,88,0,0,1 +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,14.2,6706,9,999999999,3,0.043,0,88,0,0,1 +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,14.2,6706,9,999999999,3,0.043,0,88,0,0,1 +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,41,82300,0,0,256,0,0,0,0,0,0,0,160,4.6,6,5,14.2,6706,9,999999999,3,0.043,0,88,0,0,1 +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,14.2,77777,9,999999999,3,0.043,0,88,0,0,1 +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,14.3,77777,9,999999999,3,0.043,0,88,0,0,1 +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,-12.2,35,82700,0,0,242,0,0,0,0,0,0,0,190,5.2,1,1,14.3,77777,9,999999999,3,0.043,0,88,0,0,1 +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,14.3,77777,9,999999999,3,0.043,0,88,0,0,1 +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,14.3,77777,9,999999999,3,0.043,0,88,0,0,1 +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,2882,16256,1341,185,170,4.1,0,0,14.3,77777,9,999999999,3,0.043,0,88,0,0,1 +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,19066,63085,3910,645,150,4.6,0,0,14.3,77777,9,999999999,3,0.043,0,88,0,0,1 +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,36711,84902,5372,937,170,6.7,0,0,14.3,77777,9,999999999,3,0.043,0,88,0,0,1 +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,50260,94515,6459,1152,190,4.6,0,0,14.4,77777,9,999999999,3,0.043,0,88,0,0,1 +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,10,83000,699,1412,288,543,1005,46,57843,98508,6967,1270,230,4.1,0,0,14.4,77777,9,999999999,3,0.043,0,88,0,0,1 +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,59070,98983,6955,1279,210,4.6,0,0,14.4,77777,9,999999999,3,0.043,0,88,0,0,1 +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,53582,96382,6575,1190,210,4.6,0,0,14.4,77777,9,999999999,3,0.043,0,88,0,0,1 +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,6,83100,532,1412,289,393,944,37,41934,89001,5786,1017,200,1.5,0,0,14.4,77777,9,999999999,3,0.043,0,88,0,0,1 +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,-18.9,7,83100,353,1412,286,238,839,28,25442,72592,4512,760,180,2.6,0,0,14.4,77777,9,999999999,3,0.043,0,88,0,0,1 +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,6793,32024,2958,370,150,3.1,1,1,14.5,77777,9,999999999,3,0.043,0,88,0,0,1 +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,17,83000,1,106,264,0,22,0,0,0,0,0,170,5.7,1,1,14.5,77777,9,999999999,3,0.043,0,88,0,0,1 +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,14.5,77777,9,999999999,3,0.043,0,88,0,0,1 +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,14.5,77777,9,999999999,3,0.043,0,88,0,0,1 +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,14.5,77777,9,999999999,3,0.043,0,88,0,0,1 +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,14.5,77777,9,999999999,3,0.043,0,88,0,0,1 +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,14.5,77777,9,999999999,3,0.043,0,88,0,0,1 +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,-11.1,39,82800,0,0,238,0,0,0,0,0,0,0,210,8.8,0,0,14.6,77777,9,999999999,3,0.043,0,88,0,0,1 +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,-11.7,37,82700,0,0,242,0,0,0,0,0,0,0,210,7.7,1,1,14.6,77777,9,999999999,3,0.043,0,88,0,0,1 +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,14.6,4877,9,999999999,2,0.043,0,88,0,0,1 +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,14.6,77777,9,999999999,2,0.043,0,88,0,0,1 +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,14.6,77777,9,999999999,2,0.043,0,88,0,0,1 +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,14.6,77777,9,999999999,2,0.043,0,88,0,0,1 +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,14.6,77777,9,999999999,2,0.043,0,88,0,0,1 +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,-12.8,33,83000,0,0,237,0,0,0,0,0,0,0,230,5.7,1,0,14.7,77777,9,999999999,2,0.043,0,88,0,0,1 +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,2586,0,1352,397,210,8.2,1,0,14.7,77777,9,999999999,3,0.043,0,88,0,0,1 +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,-12.2,24,83500,284,1412,255,167,641,38,19537,12686,4454,1500,220,5.2,0,0,14.7,77777,9,999999999,3,0.043,0,88,0,0,1 +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,28533,23887,14832,4782,230,5.2,4,4,14.7,77777,9,999999999,3,0.043,0,88,0,0,1 +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,38538,30081,18269,6318,250,4.6,6,6,14.7,7620,9,999999999,3,0.043,0,88,0,0,1 +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,-12.8,12,83500,704,1412,313,338,256,210,38180,21321,23841,8151,270,5.2,7,6,14.7,7620,9,999999999,3,0.043,0,88,0,0,1 +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,48817,38662,18705,6838,320,2.6,4,4,14.7,77777,9,999999999,3,0.043,0,88,0,0,1 +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,9,83500,659,1412,308,496,904,74,52064,87664,10988,1464,340,4.1,2,2,14.8,77777,9,999999999,3,0.043,0,88,0,0,1 +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,9,83500,537,1412,311,329,575,110,37853,36138,12702,4450,310,3.1,8,3,14.8,77777,9,999999999,3,0.043,0,88,0,0,1 +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,18890,9675,14749,3960,290,6.2,7,7,14.8,7620,9,999999999,3,0.043,0,88,0,0,1 +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,3599,0,3043,918,290,6.2,9,8,14.8,7620,9,999999999,3,0.043,0,88,0,0,1 +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,14.8,7620,9,999999999,3,0.043,0,88,0,0,1 +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,14.8,6706,9,999999999,3,0.043,0,88,0,0,1 +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,14.8,6706,9,999999999,3,0.043,0,88,0,0,1 +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,14.9,6706,9,999999999,3,0.043,0,88,0,0,1 +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,14.9,6706,9,999999999,3,0.043,0,88,0,0,1 +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,35,83400,0,0,260,0,0,0,0,0,0,0,130,4.6,3,3,14.9,77777,9,999999999,3,0.043,0,88,0,0,1 +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,14.9,77777,9,999999999,4,0.043,0,88,0,0,1 +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,14.9,77777,9,999999999,4,0.043,0,88,0,0,1 +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,14.9,77777,9,999999999,4,0.043,0,88,0,0,1 +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,14.9,77777,9,999999999,4,0.043,0,88,0,0,1 +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,20,82900,0,0,273,0,0,0,0,0,0,0,190,5.7,8,8,15,4572,9,999999999,4,0.043,0,88,0,0,1 +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,15,7620,9,999999999,4,0.043,0,88,0,0,1 +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,15,77777,9,999999999,4,0.043,0,88,0,0,1 +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,15,77777,9,999999999,4,0.043,0,88,0,0,1 +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,2389,0,2069,546,220,4.6,8,6,15,5486,9,999999999,4,0.043,0,88,0,0,1 +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,9000,2560,7109,2239,250,4.1,9,7,15,5486,9,999999999,4,0.043,0,88,0,0,1 +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,19815,7262,15877,5030,260,3.1,9,8,15,5486,9,999999999,4,0.043,0,88,0,0,1 +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,42882,37162,13801,5050,280,2.6,9,4,15.1,77777,9,999999999,5,0.043,0,88,0,0,1 +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,39096,22382,23848,8187,320,3.1,9,5,15.1,7315,9,999999999,5,0.043,0,88,0,0,1 +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,42158,26409,23690,8226,0,0,9,7,15.1,6096,9,999999999,5,0.043,0,88,0,0,1 +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,-7.8,18,83400,664,1412,320,456,615,167,52040,46259,19144,6744,350,2.1,8,6,15.1,5486,9,999999999,5,0.043,0,88,0,0,1 +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,36126,32967,12277,4345,10,2.6,4,2,15.1,77777,9,999999999,5,0.043,0,88,0,0,1 +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,18965,14671,9684,3091,320,3.1,4,3,15.1,77777,9,999999999,5,0.043,0,88,0,0,1 +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,6292,0,3153,954,310,5.7,2,1,15.1,77777,9,999999999,5,0.043,0,88,0,0,1 +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,15.2,77777,9,999999999,5,0.043,0,88,0,0,1 +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,15.2,77777,9,999999999,5,0.043,0,88,0,0,1 +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,15.2,77777,9,999999999,6,0.043,0,88,0,0,1 +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,15.2,77777,9,999999999,6,0.043,0,88,0,0,1 +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,15.2,77777,9,999999999,6,0.043,0,88,0,0,1 +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,15.2,77777,9,999999999,6,0.043,0,88,0,0,1 +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,15.2,77777,9,999999999,6,0.043,0,88,0,0,1 +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,15.3,77777,9,999999999,6,0.043,0,88,0,0,1 +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,15.3,77777,9,999999999,6,0.043,0,88,0,0,1 +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,15.3,77777,9,999999999,6,0.043,0,88,0,0,1 +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,15.3,77777,9,999999999,6,0.043,0,88,0,0,1 +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,15.3,77777,9,999999999,7,0.043,0,88,0,0,1 +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,15.3,77777,9,999999999,7,0.043,0,88,0,0,1 +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,15.3,77777,9,999999999,7,0.043,0,88,0,0,1 +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,3074,0,1254,379,150,3.1,0,0,15.4,77777,9,999999999,7,0.043,0,88,0,0,1 +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,18338,55781,5294,730,150,2.1,0,0,15.4,77777,9,999999999,7,0.043,0,88,0,0,1 +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,39540,37547,7282,2649,0,0,4,0,15.4,77777,9,999999999,7,0.043,0,88,0,0,1 +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,35877,18181,25749,7987,0,0,8,6,15.4,9144,9,999999999,7,0.043,0,88,0,0,1 +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,44157,27362,26365,8791,30,3.1,7,7,15.4,9144,9,999999999,7,0.043,0,88,0,0,1 +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,-9.4,22,83200,726,1411,291,479,554,194,54654,44253,22242,7883,320,4.1,10,4,15.4,77777,9,999999999,7,0.043,0,88,0,0,1 +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,33494,20008,19061,6745,330,5.2,10,5,15.4,77777,9,999999999,7,0.043,0,88,0,0,1 +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,39269,36853,15156,5166,70,5.7,9,4,15.5,77777,9,999999999,7,0.043,0,88,0,0,1 +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,19356,15594,8971,2931,20,11.3,10,2,15.5,77777,9,999999999,7,0.043,0,88,0,0,1 +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,5595,45,5291,1368,40,9.8,10,5,15.5,77777,9,999999999,7,0.043,0,88,0,0,1 +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,15.5,7620,9,999999999,7,0.043,0,88,0,0,1 +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,15.5,7620,9,999999999,7,0.043,0,88,0,0,1 +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,-7.2,38,82900,0,0,281,0,0,0,0,0,0,0,60,4.6,9,7,15.5,7620,9,999999999,7,0.043,0,88,0,0,1 +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,15.6,6706,9,999999999,7,0.043,0,88,0,0,1 +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,-5.6,44,82800,0,0,270,0,0,0,0,0,0,0,40,6.7,2,2,15.6,77777,9,999999999,7,0.043,0,88,0,0,1 +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,48,82800,0,0,271,0,0,0,0,0,0,0,60,5.2,4,3,15.6,77777,9,999999999,7,0.043,0,88,0,0,1 +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,15.6,77777,9,999999999,7,0.043,0,88,0,0,1 +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,15.6,77777,9,999999999,7,0.043,0,88,0,0,1 +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,15.6,77777,9,999999999,7,0.043,0,88,0,0,1 +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,15.6,77777,9,999999999,7,0.043,0,88,0,0,1 +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,91,82400,0,0,235,0,0,0,0,0,0,0,220,4.1,8,1,15.7,77777,9,999999999,7,0.043,0,88,0,0,1 +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,-6.7,86,82600,0,0,229,0,0,0,0,0,0,0,230,5.7,7,1,15.7,77777,9,999999999,7,0.043,0,88,0,0,1 +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,15.7,77777,9,999999999,8,0.043,0,88,0,0,1 +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,15.7,77777,9,999999999,8,0.043,0,88,0,0,1 +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,2094,0,1878,526,240,4.1,10,4,15.7,77777,9,999999999,8,0.043,0,88,0,0,1 +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,8296,2839,5543,1838,240,3.6,10,4,15.7,77777,9,999999999,8,0.043,0,88,0,0,1 +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,28143,19665,17852,5470,240,3.1,8,4,15.7,77777,9,999999999,8,0.043,0,88,0,0,1 +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,78,82800,636,1411,222,366,472,153,41857,34402,17573,6194,290,4.1,6,2,15.8,77777,9,999999999,8,0.043,0,88,0,0,1 +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,57028,47640,13261,5088,290,4.6,3,1,15.8,77777,9,999999999,8,0.043,0,88,0,0,1 +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,61,82700,731,1411,224,541,895,77,56910,88006,11297,1612,340,5.2,2,0,15.8,77777,9,999999999,8,0.043,0,88,0,0,1 +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,52130,87483,9560,1454,340,3.6,0,0,15.8,77777,9,999999999,8,0.043,0,88,0,0,1 +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,40801,79917,8411,1228,30,2.6,0,0,15.8,77777,9,999999999,9,0.043,0,88,0,0,1 +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,27193,23369,5234,1837,0,0,1,0,15.8,77777,9,999999999,9,0.043,0,88,0,0,1 +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,-7.8,79,82700,153,1411,224,69,402,26,7847,0,2963,921,110,2.1,1,0,15.8,77777,9,999999999,9,0.043,0,88,0,0,1 +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,-6.7,86,82800,3,223,225,0,17,0,0,0,0,0,180,5.7,0,0,15.9,77777,9,999999999,9,0.043,0,88,0,0,1 +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,15.9,77777,9,999999999,9,0.043,0,88,0,0,1 +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,91,82800,0,0,230,0,0,0,0,0,0,0,170,5.7,0,0,15.9,77777,9,999999999,9,0.043,0,88,0,0,1 +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,15.9,77777,9,999999999,9,0.043,0,88,0,0,1 +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,15.9,77777,9,999999999,9,0.043,0,88,0,0,1 +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,-4.3,90,82900,0,0,234,0,0,0,0,0,0,0,180,5.1,0,0,15.9,20446,9,999999999,10,0.043,0,88,0,0,1 +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,1,1,15.9,18892,9,999999999,10,0.043,0,88,0,0,1 +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,16,17338,9,999999999,10,0.043,0,88,0,0,1 +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,16,15785,9,999999999,10,0.043,0,88,0,0,1 +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,83,82500,0,0,246,0,0,0,0,0,0,0,240,5.8,2,2,16,14231,9,999999999,10,0.043,0,88,0,0,1 +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,16,12677,9,999999999,10,0.043,0,88,0,0,1 +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,16,11123,9,999999999,10,0.043,0,88,0,0,1 +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,16,9569,9,999999999,10,0.043,0,88,0,0,1 +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,16,8015,9,999999999,10,0.043,0,88,0,0,1 +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,74,82500,72,1117,269,17,52,14,1908,0,1574,465,270,5.9,10,5,16.1,6462,9,999999999,10,0.043,0,88,0,0,1 +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,67,82600,298,1411,280,145,148,114,15557,7490,12286,3207,310,5.8,10,7,16.1,4908,9,999999999,10,0.043,0,88,0,0,1 +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,58,82700,496,1411,279,281,397,141,31350,26626,15799,5087,300,3.6,10,6,16.1,3354,9,999999999,10,0.043,0,88,0,0,1 +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,-3.4,53,82600,641,1411,282,256,349,97,30340,21337,11533,4342,360,5.1,10,6,16.1,1800,9,999999999,10,0.043,0,88,0,0,1 +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,54484,44360,18162,6713,290,3.3,10,5,16.4,3483,9,999999999,10,0.043,0,88,0,0,1 +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,35765,8517,30496,9805,190,4.8,10,6,16.7,5167,9,999999999,9,0.043,0,88,0,0,1 +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,44143,26457,28744,8947,180,4.1,10,4,17,6850,9,999999999,9,0.043,0,88,0,0,1 +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,28276,21040,12741,4532,210,4.9,9,5,17.3,8533,9,999999999,9,0.043,0,88,0,0,1 +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,17906,11554,11276,3519,180,4.8,8,4,17.6,10217,9,999999999,9,0.043,0,88,0,0,1 +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,4559,0,2969,930,180,5.1,9,5,17.8,11900,9,999999999,9,0.043,0,88,0,0,1 +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,18.1,13583,9,999999999,9,0.043,0,88,0,0,1 +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,-5.1,71,82800,0,0,253,0,0,0,0,0,0,0,50,0.7,5,4,18.4,15267,9,999999999,9,0.043,0,88,0,0,1 +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,18.7,16950,9,999999999,9,0.043,0,88,0,0,1 +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,19,18633,9,999999999,9,0.043,0,88,0,0,1 +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,19.3,20317,9,999999999,9,0.043,0,88,0,0,1 +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,19.6,77777,9,999999999,8,0.043,0,88,0,0,1 +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,19.9,77777,9,999999999,8,0.043,0,88,0,0,1 +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,20.2,77777,9,999999999,8,0.043,0,88,0,0,1 +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,-6.1,91,82600,0,0,230,0,0,0,0,0,0,0,190,4.1,1,1,20.5,77777,9,999999999,8,0.043,0,88,0,0,1 +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,20.7,4267,9,999999999,8,0.043,0,88,0,0,1 +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,21,4572,9,999999999,8,0.043,0,88,0,0,1 +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,21.3,4572,9,999999999,8,0.043,0,88,0,0,1 +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,10,10,21.6,7010,9,999999999,8,0.043,0,88,0,0,1 +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,-13.9,70,82600,0,0,215,0,0,0,0,0,0,0,360,3.6,7,5,21.9,8534,9,999999999,8,0.043,0,88,0,0,1 +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,3451,0,2596,666,40,3.6,8,4,22.2,77777,9,999999999,8,0.043,0,88,0,0,1 +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,17231,11617,4697,1594,320,2.6,6,2,22.5,77777,9,999999999,8,0.043,0,88,0,0,1 +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,31316,27837,13961,4669,340,6.2,5,3,22.8,77777,9,999999999,8,0.043,0,88,0,0,1 +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,51203,45101,10559,4009,10,5.7,6,2,23.1,77777,9,999999999,8,0.043,0,88,0,0,1 +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,56421,46527,21617,7729,40,5.2,8,3,23.4,77777,9,999999999,8,0.043,0,88,0,0,1 +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,62323,53020,19315,7128,70,3.6,6,5,23.6,7620,9,999999999,7,0.043,0,88,0,0,1 +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,47636,38845,10522,4056,70,4.1,6,4,23.9,7620,9,999999999,7,0.043,0,88,0,0,1 +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,22284,13372,12229,4390,70,3.6,9,7,24.2,3962,9,999999999,7,0.043,0,88,0,0,1 +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,8557,0,8621,3178,110,3.1,10,10,24.5,2896,9,999999999,7,0.043,0,88,0,0,1 +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,3222,0,3244,1125,100,3.1,10,10,24.8,2438,9,999999999,7,0.043,0,88,0,0,1 +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,25.1,2743,9,999999999,7,0.043,0,88,0,0,1 +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,-6,84,82200,0,0,264,0,0,0,0,0,0,0,100,4.6,10,10,25.4,244,9,999999999,7,0.043,0,88,0,0,1 +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,-6.7,86,82200,0,0,260,0,0,0,0,0,0,0,120,4.1,10,10,25.7,152,9,999999999,7,0.043,0,88,0,0,1 +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,-6.1,91,82200,0,0,260,0,0,0,0,0,0,0,130,5.2,10,10,26,183,9,999999999,7,0.043,0,88,0,0,1 +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,26.3,213,9,999999999,7,0.043,0,88,0,0,1 +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,26.5,305,9,999999999,7,0.043,0,88,0,0,1 +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,26.8,427,9,999999999,7,0.043,0,88,0,0,1 +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,27.1,77777,9,999999999,7,0.043,0,88,0,0,1 +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,27.4,1128,9,999999999,7,0.043,0,88,0,0,1 +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,27.7,1219,9,999999999,7,0.043,0,88,0,0,1 +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,28,701,9,999999999,7,0.043,0,88,0,0,1 +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,28.3,1676,9,999999999,7,0.043,0,88,0,0,1 +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,82,81900,0,0,224,0,0,0,0,0,0,0,180,1.5,10,10,28.6,244,9,999999999,6,0.043,0,88,0,0,1 +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,-17.2,81,81800,0,0,204,0,0,0,0,0,0,0,320,1.5,10,8,28.9,2134,9,999999999,6,0.043,0,88,0,0,1 +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,-13.3,74,81800,78,1140,210,30,98,24,3246,0,2605,680,10,2.1,6,2,29.2,77777,9,999999999,6,0.043,0,88,0,0,1 +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,21013,15497,4704,1600,350,2.6,0,0,29.4,77777,9,999999999,6,0.043,0,88,0,0,1 +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,41607,39146,6646,2446,330,2.6,0,0,29.7,77777,9,999999999,6,0.043,0,88,0,0,1 +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,50023,85765,9873,1430,350,3.6,0,0,30,77777,9,999999999,6,0.043,0,88,0,0,1 +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,57811,90099,10736,1600,350,3.1,0,0,30.3,77777,9,999999999,6,0.043,0,88,0,0,1 +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,59260,90981,10856,1630,20,3.1,0,0,30.6,77777,9,999999999,6,0.043,0,88,0,0,1 +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,54030,88267,10242,1508,10,3.1,0,0,30.9,77777,9,999999999,6,0.043,0,88,0,0,1 +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,42644,80962,9117,1276,360,3.1,0,0,31.2,77777,9,999999999,5,0.043,0,88,0,0,1 +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,29595,26146,5478,1933,360,4.1,0,0,31.5,77777,9,999999999,5,0.043,0,88,0,0,1 +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,9122,0,3199,1004,350,3.6,0,0,31.8,77777,9,999999999,5,0.043,0,88,0,0,1 +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,78,81700,5,294,215,0,21,0,0,0,0,0,50,2.6,0,0,32.1,77777,9,999999999,5,0.043,0,88,0,0,1 +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,-12.2,82,81700,0,0,204,0,0,0,0,0,0,0,90,2.1,0,0,32.3,77777,9,999999999,5,0.043,0,88,0,0,1 +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,32.6,77777,9,999999999,5,0.043,0,88,0,0,1 +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,32.9,6096,9,999999999,5,0.043,0,88,0,0,1 +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,33.2,6096,9,999999999,5,0.043,0,88,0,0,1 +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,33.5,6096,9,999999999,4,0.043,0,88,0,0,1 +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,33.8,77777,9,999999999,4,0.043,0,88,0,0,1 +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,34.1,77777,9,999999999,4,0.043,0,88,0,0,1 +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,34.4,77777,9,999999999,4,0.043,0,88,0,0,1 +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,34.7,77777,9,999999999,4,0.043,0,88,0,0,1 +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,-14.4,67,82000,0,0,203,0,0,0,0,0,0,0,190,2.1,0,0,35,77777,9,999999999,4,0.043,0,88,0,0,1 +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,35.2,77777,9,999999999,4,0.043,0,88,0,0,1 +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,35.5,77777,9,999999999,4,0.043,0,88,0,0,1 +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,35.8,77777,9,999999999,4,0.043,0,88,0,0,1 +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,2906,0,1904,555,170,2.1,3,1,36.1,77777,9,999999999,4,0.043,0,88,0,0,1 +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,21120,16369,5145,1741,170,5.2,1,0,36.4,77777,9,999999999,4,0.043,0,88,0,0,1 +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,41327,39522,7324,2687,160,4.6,1,0,36.7,77777,9,999999999,4,0.043,0,88,0,0,1 +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,57653,50537,8901,3423,180,3.1,1,0,37,77777,9,999999999,4,0.043,0,88,0,0,1 +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,57113,87576,11144,1624,320,1.5,1,1,37.3,77777,9,999999999,4,0.043,0,88,0,0,1 +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,-8.3,49,82600,753,1410,246,540,866,77,56876,85488,11262,1654,350,3.6,1,1,37.6,77777,9,999999999,4,0.043,0,88,0,0,1 +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,58907,49196,9415,3664,350,3.1,1,1,37.9,77777,9,999999999,4,0.043,0,88,0,0,1 +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,49337,45339,7757,2914,20,2.1,0,0,38.1,77777,9,999999999,4,0.043,0,88,0,0,1 +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,29855,27027,5817,2051,10,4.6,0,0,38.4,77777,9,999999999,4,0.043,0,88,0,0,1 +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,9074,0,3524,1096,360,2.1,1,0,38.7,77777,9,999999999,5,0.043,0,88,0,0,1 +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,39,77777,9,999999999,5,0.043,0,88,0,0,1 +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,39.3,77777,9,999999999,5,0.043,0,88,0,0,1 +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,39.6,77777,9,999999999,5,0.043,0,88,0,0,1 +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,39.9,77777,9,999999999,5,0.043,0,88,0,0,1 +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,40.2,77777,9,999999999,5,0.043,0,88,0,0,1 +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,-11.7,56,83200,0,0,228,0,0,0,0,0,0,0,160,1.5,5,2,40.5,77777,9,999999999,5,0.043,0,88,0,0,1 +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,-11.7,56,82800,0,0,221,0,0,0,0,0,0,0,180,1.5,0,0,40.8,77777,9,999999999,5,0.043,0,88,0,0,1 +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,41,77777,9,999999999,5,0.044,0,88,0,0,1 +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,41.3,77777,9,999999999,5,0.044,0,88,0,0,1 +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,41.6,77777,9,999999999,5,0.044,0,88,0,0,1 +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,41.9,77777,9,999999999,5,0.044,0,88,0,0,1 +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,55,83300,0,0,222,0,0,0,0,0,0,0,200,3.1,6,6,42.2,6096,9,999999999,5,0.044,0,88,0,0,1 +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,58,83000,0,0,212,0,0,0,0,0,0,0,170,3.6,4,2,42.5,77777,9,999999999,5,0.044,0,88,0,0,1 +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,42.8,77777,9,999999999,6,0.044,0,88,0,0,1 +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,52,83000,84,1186,222,29,120,20,3209,0,2218,631,180,3.1,7,5,43.1,6096,9,999999999,6,0.044,0,88,0,0,1 +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,14922,5794,12381,3346,180,4.1,10,8,43.4,6096,9,999999999,6,0.044,0,88,0,0,1 +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,26426,17401,16307,5293,210,4.1,9,6,43.7,7620,9,999999999,6,0.044,0,88,0,0,1 +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,40988,31974,17343,6229,0,0,9,6,43.9,7620,9,999999999,6,0.044,0,88,0,0,1 +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,49864,37089,20940,7615,0,0,7,5,44.2,7620,9,999999999,6,0.044,0,88,0,0,1 +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,-11.1,27,83300,758,1409,274,443,494,177,51229,38088,20562,7567,80,2.6,10,6,44.5,6706,9,999999999,6,0.044,0,88,0,0,1 +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,-11.1,27,83200,703,1409,274,293,242,172,33621,18524,19826,7110,70,2.6,10,6,44.8,6706,9,999999999,6,0.044,0,88,0,0,1 +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,-11.7,26,83200,581,1409,281,261,107,217,28681,9200,23972,7218,80,2.6,10,8,45.1,6096,9,999999999,6,0.044,0,88,0,0,1 +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,27959,28045,12699,3922,80,4.1,10,5,45.4,6096,9,999999999,6,0.044,0,88,0,0,1 +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,9650,3348,7668,1805,90,3.1,10,5,45.7,6401,9,999999999,7,0.044,0,88,0,0,1 +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,46,6706,9,999999999,7,0.044,0,88,0,0,1 +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,61,83000,0,0,238,0,0,0,0,0,0,0,100,2.6,8,5,46.3,6706,9,999999999,7,0.044,0,88,0,0,1 +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,46.6,6706,9,999999999,7,0.044,0,88,0,0,1 +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,-13.3,48,83100,0,0,235,0,0,0,0,0,0,0,0,0,9,6,46.8,6706,9,999999999,7,0.044,0,88,0,0,1 +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,47.1,6706,9,999999999,7,0.044,0,88,0,0,1 +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,47.4,6706,9,999999999,7,0.044,0,88,0,0,1 +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,47.7,6706,9,999999999,7,0.044,0,88,0,0,1 +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,47,84000,0,0,218,0,0,0,0,0,0,0,260,3.3,2,2,48,77777,9,999999999,2,0.053,0,88,0,0,1 +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,38,84000,0,0,218,0,0,0,0,0,0,0,270,4.1,5,3,48,77777,9,999999999,2,0.053,0,88,0,0,1 +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,77777,9,999999999,2,0.053,0,88,0,0,1 +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,33,84000,0,0,205,0,0,0,0,0,0,0,270,5.7,1,0,48,77777,9,999999999,2,0.053,0,88,0,0,1 +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,31,84000,0,0,211,0,0,0,0,0,0,0,260,6.2,1,1,48,77777,9,999999999,2,0.053,0,88,0,0,1 +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,77777,9,999999999,2,0.053,0,88,0,0,1 +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,77777,9,999999999,2,0.053,0,88,0,0,1 +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,30,84000,88,1209,212,38,360,12,4037,20293,1993,261,270,5.2,1,1,112,77777,9,999999999,2,0.053,0,88,0,0,1 +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,-18.9,29,84000,321,1409,215,209,798,28,22302,67364,4520,732,280,4.6,0,0,112,77777,9,999999999,2,0.053,0,88,0,0,1 +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,40805,87464,6090,1040,290,5.7,0,0,112,77777,9,999999999,2,0.053,0,88,0,0,1 +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,54844,96397,7140,1262,270,6.2,0,0,112,77777,9,999999999,2,0.053,0,88,0,0,1 +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,18,84000,751,1409,228,592,1015,51,62800,99997,7625,1391,280,4.1,0,0,112,77777,9,999999999,2,0.053,0,88,0,0,1 +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,64289,100602,7751,1420,340,2.6,0,0,112,77777,9,999999999,2,0.053,0,88,0,0,1 +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,58998,98457,7388,1325,90,5.7,0,0,112,77777,9,999999999,2,0.053,0,88,0,0,1 +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,47289,92052,6486,1130,110,6.2,0,0,112,77777,9,999999999,2,0.053,0,88,0,0,1 +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,30397,77625,5104,859,110,6.2,0,0,112,77777,9,999999999,2,0.053,0,88,0,0,1 +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,10992,45004,3286,482,150,3.6,0,0,112,77777,9,999999999,2,0.053,0,88,0,0,1 +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,48,83700,9,387,213,3,83,1,0,0,0,0,130,2.1,0,0,80,77777,9,999999999,2,0.053,0,88,0,0,1 +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,50,83700,0,0,211,0,0,0,0,0,0,0,160,2.6,0,0,48,77777,9,999999999,2,0.053,0,88,0,0,1 +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,77777,9,999999999,2,0.053,0,88,0,0,1 +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,32,77777,9,999999999,2,0.053,0,88,0,0,1 +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,-17.2,52,83600,0,0,200,0,0,0,0,0,0,0,140,2.1,0,0,32,77777,9,999999999,2,0.053,0,88,0,0,1 +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,-17.8,49,83600,0,0,200,0,0,0,0,0,0,0,180,2.6,0,0,32,77777,9,999999999,2,0.053,0,88,0,0,1 +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,77777,9,999999999,2,0.053,0,88,0,0,1 +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,-18.9,44,83600,0,0,199,0,0,0,0,0,0,0,190,2.1,0,0,32,77777,9,999999999,2,0.053,0,88,0,0,1 +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,77777,9,999999999,2,0.053,0,88,0,0,1 +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,77777,9,999999999,2,0.053,0,88,0,0,1 +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,77777,9,999999999,2,0.053,0,88,0,0,1 +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,53,83500,0,0,192,0,0,0,0,0,0,0,0,0,1,1,48,77777,9,999999999,2,0.053,0,88,0,0,1 +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,77777,9,999999999,2,0.053,0,88,0,0,1 +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,53,83500,0,0,188,0,0,0,0,0,0,0,190,2.6,0,0,112,77777,9,999999999,2,0.053,0,88,0,0,1 +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,42,83500,92,1232,196,40,342,14,4234,19489,2310,266,160,4.1,0,0,112,77777,9,999999999,2,0.053,0,88,0,0,1 +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,21886,63218,5282,782,150,3.1,0,0,112,77777,9,999999999,3,0.053,0,88,0,0,1 +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,40119,83822,7119,1127,180,4.6,0,0,112,77777,9,999999999,3,0.053,0,88,0,0,1 +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,54166,93145,8282,1371,200,4.6,0,0,112,77777,9,999999999,3,0.053,0,88,0,0,1 +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,-13.3,22,83300,756,1408,254,588,983,60,62228,97026,8888,1522,190,2.6,0,0,112,77777,9,999999999,3,0.053,0,88,0,0,1 +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,63554,97396,9007,1551,110,1.5,0,0,112,77777,9,999999999,3,0.053,0,88,0,0,1 +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,58408,95320,8660,1451,350,3.1,0,0,96,77777,9,999999999,3,0.053,0,88,0,0,1 +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,46923,88960,7650,1236,350,5.2,0,0,64,77777,9,999999999,3,0.053,0,88,0,0,1 +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,30004,74122,6158,940,360,4.1,0,0,64,77777,9,999999999,3,0.053,0,88,0,0,1 +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,10850,41245,4065,503,350,3.1,0,0,64,77777,9,999999999,3,0.053,0,88,0,0,1 +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,77777,9,999999999,3,0.053,0,88,0,0,1 +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,77777,9,999999999,3,0.053,0,88,0,0,1 +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,77777,9,999999999,3,0.053,0,88,0,0,1 +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,77777,9,999999999,3,0.053,0,88,0,0,1 +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,77777,9,999999999,3,0.053,0,88,0,0,1 +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,77777,9,999999999,3,0.053,0,88,0,0,1 +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,-13.9,70,83500,0,0,210,0,0,0,0,0,0,0,150,3.1,2,2,24,77777,9,999999999,3,0.053,0,88,0,0,1 +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,3,0.053,0,88,0,0,1 +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,-12.2,82,83400,0,0,225,0,0,0,0,0,0,0,170,1.5,10,8,19.2,4572,9,999999999,3,0.053,0,88,0,0,1 +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,-14.4,67,83400,0,0,219,0,0,0,0,0,0,0,190,2.1,7,7,19.2,7010,9,999999999,3,0.053,0,88,0,0,1 +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,3,0.053,0,88,0,0,1 +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,7010,9,999999999,3,0.053,0,88,0,0,1 +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,77777,9,999999999,3,0.053,0,88,0,0,1 +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,77777,9,999999999,3,0.053,0,88,0,0,1 +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,3817,0,2138,634,120,1.5,4,4,80,77777,9,999999999,3,0.053,0,88,0,0,1 +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,23810,18686,4628,1598,200,4.1,2,2,80,77777,9,999999999,3,0.053,0,88,0,0,1 +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,36,83100,530,1408,233,357,725,83,41945,40979,9780,3540,180,2.1,3,3,80,77777,9,999999999,3,0.053,0,88,0,0,1 +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,52518,45766,13501,5079,280,1.5,4,2,80,77777,9,999999999,3,0.053,0,88,0,0,1 +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,52789,38514,23770,8484,340,2.1,8,4,64,77777,9,999999999,3,0.053,0,88,0,0,1 +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,-7.8,36,82900,777,1408,268,563,751,148,66200,54044,17474,6665,350,3.1,7,2,48,77777,9,999999999,3,0.053,0,88,0,0,1 +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,47344,36145,17522,6502,20,3.1,8,4,16,77777,9,999999999,3,0.053,0,88,0,0,1 +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,46654,42814,11228,4151,90,4.6,7,2,12.8,77777,9,999999999,3,0.053,0,88,0,0,1 +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,23155,19200,6068,2160,50,2.6,8,3,16,77777,9,999999999,3,0.053,0,88,0,0,1 +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,-6.1,60,83000,196,1408,257,83,143,63,8971,2482,6834,1828,60,4.6,5,5,16,77777,9,999999999,3,0.053,0,88,0,0,1 +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,45,83100,12,434,250,2,33,1,0,0,0,0,120,4.1,4,4,16,77777,9,999999999,3,0.053,0,88,0,0,1 +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,77777,9,999999999,3,0.053,0,88,0,0,1 +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,1,1,24,77777,9,999999999,3,0.053,0,88,0,0,1 +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,77777,9,999999999,3,0.053,0,88,0,0,1 +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,-12.8,50,83500,0,0,220,0,0,0,0,0,0,0,200,1.5,0,0,24,77777,9,999999999,3,0.053,0,88,0,0,1 +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,77777,9,999999999,3,0.053,0,88,0,0,1 +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,77777,9,999999999,3,0.053,0,88,0,0,1 +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,77777,9,999999999,3,0.054,0,88,0,0,1 +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,58,83500,0,0,206,0,0,0,0,0,0,0,240,2.1,0,0,32,77777,9,999999999,3,0.054,0,88,0,0,1 +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,77777,9,999999999,3,0.054,0,88,0,0,1 +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,77777,9,999999999,3,0.054,0,88,0,0,1 +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,32,77777,9,999999999,3,0.054,0,88,0,0,1 +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,77777,9,999999999,3,0.054,0,88,0,0,1 +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,77777,9,999999999,3,0.054,0,88,0,0,1 +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,-15,64,83300,99,1279,206,41,329,16,4683,0,1830,561,200,1.5,2,1,80,77777,9,999999999,3,0.054,0,88,0,0,1 +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,17727,14008,7110,2350,0,0,3,3,80,77777,9,999999999,3,0.054,0,88,0,0,1 +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,43046,42534,11088,3967,330,2.6,2,2,64,77777,9,999999999,3,0.054,0,88,0,0,1 +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,-9.4,45,83200,683,1408,245,490,838,83,59283,50800,10070,3888,350,2.1,3,1,64,77777,9,999999999,4,0.054,0,88,0,0,1 +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,64333,51377,13368,5225,360,2.6,2,2,64,77777,9,999999999,4,0.054,0,88,0,0,1 +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,60620,47201,15182,5901,340,4.1,3,3,64,77777,9,999999999,4,0.054,0,88,0,0,1 +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,62440,51160,10822,4226,120,2.1,2,2,64,77777,9,999999999,4,0.054,0,88,0,0,1 +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,42937,78659,7928,1268,340,3.1,4,3,48,77777,9,999999999,4,0.054,0,88,0,0,1 +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,-6.7,40,83100,426,1408,282,201,270,119,22345,16120,13283,4163,60,2.6,9,7,48,7010,9,999999999,4,0.054,0,88,0,0,1 +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,4309,0,4339,1492,80,3.1,10,10,64,3962,9,999999999,4,0.054,0,88,0,0,1 +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,3962,9,999999999,4,0.054,0,88,0,0,1 +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,76,83400,0,0,267,0,0,0,0,0,0,0,350,3.6,10,9,32,3962,9,999999999,4,0.054,0,88,0,0,1 +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,3962,9,999999999,4,0.054,0,88,0,0,1 +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,77777,9,999999999,4,0.054,0,88,0,0,1 +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,3962,9,999999999,4,0.054,0,88,0,0,1 +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,77777,9,999999999,4,0.054,0,88,0,0,1 +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,32,77777,9,999999999,4,0.054,0,88,0,0,1 +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,82,83600,0,0,213,0,0,0,0,0,0,0,0,0,0,0,32,77777,9,999999999,4,0.054,0,88,0,0,1 +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,78,83500,0,0,219,0,0,0,0,0,0,0,70,2.6,1,1,32,77777,9,999999999,4,0.054,0,88,0,0,1 +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,77777,9,999999999,4,0.054,0,88,0,0,1 +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,77777,9,999999999,4,0.054,0,88,0,0,1 +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,77777,9,999999999,4,0.054,0,88,0,0,1 +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,77777,9,999999999,4,0.054,0,88,0,0,1 +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,77777,9,999999999,4,0.054,0,88,0,0,1 +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,68,83400,103,1302,230,44,285,21,4931,0,2358,699,200,3.1,3,3,80,77777,9,999999999,4,0.054,0,88,0,0,1 +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,22427,17974,5294,1821,180,2.6,1,1,96,77777,9,999999999,4,0.054,0,88,0,0,1 +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,41010,37111,7031,2619,190,3.1,1,1,96,77777,9,999999999,4,0.054,0,88,0,0,1 +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,55157,92378,8692,1422,200,3.6,0,0,112,77777,9,999999999,4,0.054,0,88,0,0,1 +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,63147,96179,9285,1579,170,2.1,0,0,112,77777,9,999999999,4,0.054,0,88,0,0,1 +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,64661,96759,9402,1610,120,2.1,0,0,112,77777,9,999999999,4,0.054,0,88,0,0,1 +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,59358,94502,9059,1505,310,8.8,0,0,112,77777,9,999999999,4,0.054,0,88,0,0,1 +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,47835,88292,8062,1285,300,11.3,0,0,112,77777,9,999999999,4,0.054,0,88,0,0,1 +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,31061,74189,6445,977,300,6.7,0,0,112,77777,9,999999999,4,0.054,0,88,0,0,1 +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,11883,42954,4375,541,290,7.7,0,0,112,77777,9,999999999,4,0.054,0,88,0,0,1 +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,77777,9,999999999,3,0.054,0,88,0,0,1 +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,77777,9,999999999,3,0.054,0,88,0,0,1 +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,48,77777,9,999999999,3,0.054,0,88,0,0,1 +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,77777,9,999999999,3,0.054,0,88,0,0,1 +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,-13.9,30,83200,0,0,236,0,0,0,0,0,0,0,200,4.1,0,0,48,77777,9,999999999,3,0.054,0,88,0,0,1 +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,77777,9,999999999,3,0.054,0,88,0,0,1 +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,31,83200,0,0,229,0,0,0,0,0,0,0,190,3.6,0,0,48,77777,9,999999999,3,0.054,0,88,0,0,1 +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,34,83200,0,0,225,0,0,0,0,0,0,0,160,3.6,0,0,48,77777,9,999999999,3,0.054,0,88,0,0,1 +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,77777,9,999999999,3,0.054,0,88,0,0,1 +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,77777,9,999999999,3,0.054,0,88,0,0,1 +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,77777,9,999999999,3,0.054,0,88,0,0,1 +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,77777,9,999999999,3,0.054,0,88,0,0,1 +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,36,83200,0,0,231,0,0,0,0,0,0,0,190,5.2,4,2,48,77777,9,999999999,3,0.054,0,88,0,0,1 +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,36,83200,0,0,235,0,0,0,0,0,0,0,150,3.1,6,4,96,6401,9,999999999,3,0.054,0,88,0,0,1 +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,4497,0,4084,1015,180,4.1,7,6,96,6401,9,999999999,3,0.054,0,88,0,0,1 +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,-13.3,32,83300,345,1407,253,177,177,133,19068,10933,14395,3814,200,3.1,8,6,128,6401,9,999999999,3,0.054,0,88,0,0,1 +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,8906,2627,6478,2424,340,2.1,7,7,128,7315,9,999999999,3,0.054,0,88,0,0,1 +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,42718,30570,20540,7269,180,2.1,8,6,128,7315,9,999999999,3,0.054,0,88,0,0,1 +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,63744,51653,18475,6999,80,2.1,4,4,128,77777,9,999999999,3,0.054,0,88,0,0,1 +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,44538,27797,20910,7818,60,1.5,4,3,112,77777,9,999999999,3,0.054,0,88,0,0,1 +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,60481,50965,17586,6582,50,3.1,7,2,112,77777,9,999999999,3,0.054,0,88,0,0,1 +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,43962,39006,15598,5556,80,3.1,8,3,112,77777,9,999999999,3,0.054,0,88,0,0,1 +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,27947,26078,9882,3363,140,3.1,9,2,112,77777,9,999999999,4,0.054,0,88,0,0,1 +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,8194,1956,5776,1709,100,3.6,10,4,112,77777,9,999999999,4,0.054,0,88,0,0,1 +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,7315,9,999999999,4,0.054,0,88,0,0,1 +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,77777,9,999999999,4,0.054,0,88,0,0,1 +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,77777,9,999999999,4,0.054,0,88,0,0,1 +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,77777,9,999999999,4,0.054,0,88,0,0,1 +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,77777,9,999999999,4,0.054,0,88,0,0,1 +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,77777,9,999999999,4,0.054,0,88,0,0,1 +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,9,4,40,77777,9,999999999,4,0.054,0,88,0,0,1 +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,7315,9,999999999,4,0.055,0,88,0,0,1 +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,-7.2,83,83000,0,0,234,0,0,0,0,0,0,0,350,3.6,8,3,32,77777,9,999999999,4,0.055,0,88,0,0,1 +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,77777,9,999999999,4,0.055,0,88,0,0,1 +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,61,9,999999999,4,0.055,0,88,0,0,1 +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,4,0.055,0,88,0,0,1 +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,4,0.055,0,88,0,0,1 +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,5,0.055,0,88,0,0,1 +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,1069,0,1076,419,30,1,10,10,0.8,61,9,999999999,5,0.055,0,88,0,0,1 +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,5455,0,5496,2172,50,2.1,10,10,1.2,244,9,999999999,5,0.055,0,88,0,0,1 +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,8069,0,8133,3486,50,3.1,10,10,1.2,183,9,999999999,5,0.055,0,88,0,0,1 +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,10923,0,11015,4885,90,2.6,10,10,2.4,152,9,999999999,5,0.055,0,88,0,0,1 +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,-7.2,83,82700,785,1406,259,121,0,121,12433,0,12542,5676,350,3.1,10,10,0.8,183,9,999999999,5,0.055,0,88,0,0,1 +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,55147,19321,44680,12385,60,1.5,10,7,3.2,183,9,999999999,5,0.055,0,88,0,0,1 +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,40991,25554,20822,7589,360,3.6,10,6,6.4,7620,9,999999999,5,0.055,0,88,0,0,1 +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,11993,3755,8501,3240,360,2.6,10,6,6.4,7620,9,999999999,5,0.055,0,88,0,0,1 +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,26855,11863,22289,5476,360,4.1,10,6,6.4,7620,9,999999999,5,0.055,0,88,0,0,1 +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,6346,593,5583,1684,100,2.1,10,9,6.4,3658,9,999999999,6,0.055,0,88,0,0,1 +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,6,0.055,0,88,0,0,1 +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,-6.7,86,82400,0,0,260,0,0,0,0,0,0,0,90,2.6,10,10,4.8,3658,9,999999999,6,0.055,0,88,0,0,1 +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,-7.2,83,82400,0,0,259,0,0,0,0,0,0,0,330,2.6,10,10,4.8,3658,9,999999999,6,0.055,0,88,0,0,1 +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,6,0.055,0,88,0,0,1 +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,6,0.055,0,88,0,0,1 +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,43,82200,0,0,308,0,0,0,0,0,0,0,200,7.2,10,10,40,3658,9,999999999,6,0.055,0,88,0,0,1 +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,3658,9,999999999,6,0.055,0,88,0,0,1 +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,3962,9,999999999,6,0.055,0,88,0,0,1 +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,-5,66,82100,0,0,282,0,0,0,0,0,0,0,300,1.5,10,10,32,4267,9,999999999,6,0.055,0,88,0,0,1 +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,10,10,32,4572,9,999999999,7,0.055,0,88,0,0,1 +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,10,10,32,4572,9,999999999,7,0.055,0,88,0,0,1 +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,4572,9,999999999,7,0.055,0,88,0,0,1 +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,4267,9,999999999,7,0.055,0,88,0,0,1 +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,7,0.055,0,88,0,0,1 +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,1558,0,1568,583,50,4.1,10,10,4.8,244,9,999999999,6,0.055,0,88,0,0,1 +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,6061,0,6106,2374,50,4.6,10,10,3.2,396,9,999999999,6,0.055,0,88,0,0,1 +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,12325,0,12423,4903,60,4.1,10,10,3.2,518,9,999999999,6,0.055,0,88,0,0,1 +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,16155,0,16291,6701,70,3.6,10,10,8,579,9,999999999,6,0.055,0,88,0,0,1 +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,26872,9256,18737,7122,40,4.1,10,9,12.8,549,9,999999999,6,0.055,0,88,0,0,1 +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,33610,10696,25249,9130,70,2.6,10,8,9.6,579,9,999999999,6,0.055,0,88,0,0,1 +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,17441,0,17590,7306,60,4.1,10,10,8,640,9,999999999,6,0.055,0,88,0,0,1 +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,29941,15530,19978,6774,50,4.1,8,8,9.6,2286,9,999999999,6,0.055,0,88,0,0,1 +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,12823,7163,6783,2428,50,3.6,7,7,9.6,2286,9,999999999,6,0.055,0,88,0,0,1 +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,9455,1514,8630,2220,70,5.2,10,8,9.6,3962,9,999999999,5,0.055,0,88,0,0,1 +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,5,0.055,0,88,0,0,1 +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,-18.3,73,83100,0,0,213,0,0,0,0,0,0,0,80,3.1,10,10,12.8,2896,9,999999999,5,0.055,0,88,0,0,1 +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,5,0.055,0,88,0,0,1 +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,10,10,4.4,914,9,999999999,5,0.055,0,88,0,0,1 +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,-18.3,73,83300,0,0,207,0,0,0,0,0,0,0,70,2.1,9,9,9.6,1676,9,999999999,5,0.055,0,88,0,0,1 +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,77777,9,999999999,5,0.055,0,88,0,0,1 +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,32,77777,9,999999999,5,0.055,0,88,0,0,1 +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,-18.3,73,83300,0,0,185,0,0,0,0,0,0,0,190,2.6,0,0,24,77777,9,999999999,5,0.055,0,88,0,0,1 +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,77777,9,999999999,4,0.055,0,88,0,0,1 +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,77777,9,999999999,4,0.055,0,88,0,0,1 +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,-17.8,77,83300,0,0,185,0,0,0,0,0,0,0,30,1,0,0,24,77777,9,999999999,4,0.055,0,88,0,0,1 +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,24,77777,9,999999999,4,0.055,0,88,0,0,1 +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,77777,9,999999999,4,0.055,0,88,0,0,1 +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,77777,9,999999999,4,0.055,0,88,0,0,1 +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,77,83300,122,1393,199,42,186,25,4707,0,2808,836,260,1.5,1,1,96,77777,9,999999999,4,0.055,0,88,0,0,1 +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,24665,22109,6414,2195,0,0,0,0,96,77777,9,999999999,4,0.055,0,88,0,0,1 +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,45884,42824,8962,3325,60,1.5,0,0,80,77777,9,999999999,4,0.055,0,88,0,0,1 +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,62894,52529,10796,4198,30,2.6,0,0,48,77777,9,999999999,4,0.055,0,88,0,0,1 +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,72890,56629,11860,4717,340,4.1,0,0,32,77777,9,999999999,4,0.055,0,88,0,0,1 +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,-6.7,57,83100,813,1405,242,612,887,99,74652,57134,12114,4836,350,3.6,0,0,32,77777,9,999999999,4,0.055,0,88,0,0,1 +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,68072,54610,11441,4502,20,2.1,0,0,32,77777,9,999999999,4,0.055,0,88,0,0,1 +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,50916,44305,9754,3708,350,3.6,1,1,11.2,77777,9,999999999,5,0.055,0,88,0,0,1 +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,50,83000,455,1405,258,287,681,66,33690,31678,7767,2762,360,1.5,1,0,11.2,77777,9,999999999,5,0.055,0,88,0,0,1 +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,11765,4902,5506,1696,340,1.5,2,2,48,77777,9,999999999,5,0.055,0,88,0,0,1 +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,77777,9,999999999,5,0.055,0,88,0,0,1 +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,77777,9,999999999,5,0.055,0,88,0,0,1 +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,-5.6,62,82900,0,0,254,0,0,0,0,0,0,0,120,3.1,8,3,40,77777,9,999999999,5,0.055,0,88,0,0,1 +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,4572,9,999999999,5,0.055,0,88,0,0,1 +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,-7.8,36,83000,0,0,285,0,0,0,0,0,0,0,290,4.6,8,8,40,4572,9,999999999,5,0.055,0,88,0,0,1 +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,4572,9,999999999,5,0.055,0,88,0,0,1 +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,4267,9,999999999,5,0.055,0,88,0,0,1 +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,-9.4,31,83100,0,0,269,0,0,0,0,0,0,0,260,5.2,5,3,40,77777,9,999999999,5,0.056,0,88,0,0,1 +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,77777,9,999999999,5,0.056,0,88,0,0,1 +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,77777,9,999999999,5,0.056,0,88,0,0,1 +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,77777,9,999999999,5,0.056,0,88,0,0,1 +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,77777,9,999999999,5,0.056,0,88,0,0,1 +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,77777,9,999999999,5,0.056,0,88,0,0,1 +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,7620,9,999999999,5,0.056,0,88,0,0,1 +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,4590,0,3836,1061,180,1.5,7,5,96,7620,9,999999999,5,0.056,0,88,0,0,1 +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,20183,15327,11959,3599,140,2.1,6,5,96,7620,9,999999999,5,0.056,0,88,0,0,1 +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,-7.8,36,83400,569,1405,273,266,282,151,30028,20179,17120,5769,140,4.1,5,4,96,77777,9,999999999,5,0.056,0,88,0,0,1 +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,42180,18043,31653,9819,110,5.7,8,8,96,3048,9,999999999,5,0.056,0,88,0,0,1 +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,42523,26787,17006,6588,150,7.2,7,7,96,3048,9,999999999,5,0.056,0,88,0,0,1 +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,36951,15882,23672,8760,160,7.7,8,8,96,2743,9,999999999,5,0.056,0,88,0,0,1 +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,50257,35812,21424,7849,160,7.2,7,6,96,2896,9,999999999,5,0.056,0,88,0,0,1 +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,21511,11101,11977,4491,160,6.2,9,8,80,2743,9,999999999,5,0.056,0,88,0,0,1 +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,41,83000,461,1405,302,126,11,122,14103,678,13711,4429,160,5.7,9,9,80,2591,9,999999999,5,0.056,0,88,0,0,1 +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,6265,393,5722,1762,320,8.8,9,9,80,2591,9,999999999,5,0.056,0,88,0,0,1 +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,7620,9,999999999,5,0.056,0,88,0,0,1 +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,3353,9,999999999,5,0.056,0,88,0,0,1 +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,6,0.056,0,88,0,0,1 +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,6,0.056,0,88,0,0,1 +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,77777,9,999999999,6,0.056,0,88,0,0,1 +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,76,82800,0,0,248,0,0,0,0,0,0,0,360,2.1,3,3,24,77777,9,999999999,6,0.056,0,88,0,0,1 +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,77777,9,999999999,6,0.056,0,88,0,0,1 +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,77777,9,999999999,6,0.056,0,88,0,0,1 +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,91,82600,0,0,230,0,0,0,0,0,0,0,170,1.5,0,0,24,77777,9,999999999,6,0.056,0,88,0,0,1 +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,1,0,24,77777,9,999999999,6,0.056,0,88,0,0,1 +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,77777,9,999999999,6,0.056,0,88,0,0,1 +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,77777,9,999999999,6,0.056,0,88,0,0,1 +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,-6.1,91,82400,0,0,226,0,0,0,0,0,0,0,0,0,1,0,19.2,77777,9,999999999,6,0.056,0,88,0,0,1 +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,19.2,77777,9,999999999,6,0.056,0,88,0,0,1 +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,6999,0,2298,720,190,2.1,0,0,64,77777,9,999999999,6,0.056,0,88,0,0,1 +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,25559,67227,5877,874,170,2.6,0,0,80,77777,9,999999999,6,0.056,0,88,0,0,1 +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,44089,85236,7667,1219,60,2.1,0,0,72,77777,9,999999999,6,0.056,0,88,0,0,1 +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,58171,93364,8794,1475,70,2.6,0,0,72,77777,9,999999999,6,0.056,0,88,0,0,1 +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,60336,87183,9240,1629,20,5.2,1,1,48,77777,9,999999999,6,0.056,0,88,0,0,1 +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,65061,93089,9358,1663,10,5.7,1,1,40,77777,9,999999999,6,0.056,0,88,0,0,1 +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,-2.8,55,82100,770,1404,280,512,607,180,59174,46109,20899,7726,10,6.2,5,5,32,77777,9,999999999,6,0.056,0,88,0,0,1 +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,30996,15072,21065,7151,350,6.7,7,7,24,2743,9,999999999,6,0.056,0,88,0,0,1 +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,6700,0,6752,2823,10,7.2,10,10,1.6,183,9,999999999,6,0.056,0,88,0,0,1 +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,2945,0,2966,1169,360,7.2,10,10,0.4,61,9,999999999,6,0.056,0,88,0,0,1 +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,0,0,0,0,350,8.2,10,10,0.8,120,9,999999999,6,0.056,0,88,0,0,1 +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,6,0.056,0,88,0,0,1 +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,-6.1,91,83100,0,0,260,0,0,0,0,0,0,0,20,11.8,10,10,0.6,183,9,999999999,6,0.056,0,88,0,0,1 +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,6,0.056,0,88,0,0,1 +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,6,0.056,0,88,0,0,1 +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,6,0.056,0,88,0,0,1 +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,6,0.056,0,88,0,0,1 +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,6,0.055,0,88,0,0,1 +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,68,83800,0,0,254,0,0,0,0,0,0,0,320,3.1,10,10,12.8,1372,9,999999999,6,0.055,0,88,0,0,1 +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,2591,9,999999999,6,0.055,0,88,0,0,1 +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,86,83900,0,0,237,0,0,0,0,0,0,0,160,2.1,10,9,32,3962,9,999999999,6,0.055,0,88,0,0,1 +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,-11.1,91,84000,0,0,226,0,0,0,0,0,0,0,160,2.6,10,8,32,6096,9,999999999,6,0.055,0,88,0,0,1 +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,-11.1,91,84000,0,0,222,0,0,0,0,0,0,0,170,1.5,7,7,32,6096,9,999999999,6,0.055,0,88,0,0,1 +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,77777,9,999999999,6,0.055,0,88,0,0,1 +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,-11.1,91,84200,137,1404,212,58,238,34,6400,0,3762,1079,170,2.1,2,2,96,77777,9,999999999,6,0.055,0,88,0,0,1 +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,20542,51955,5268,845,180,1.5,1,1,96,77777,9,999999999,6,0.055,0,88,0,0,1 +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,59,84300,581,1404,230,389,821,49,41380,78715,7512,1215,180,3.1,1,1,96,77777,9,999999999,6,0.055,0,88,0,0,1 +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,58904,94460,8215,1432,180,3.6,0,0,96,77777,9,999999999,6,0.055,0,88,0,0,1 +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,67005,97861,8806,1597,190,5.2,0,0,96,77777,9,999999999,5,0.055,0,88,0,0,1 +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,68551,98370,8924,1631,150,5.2,0,0,112,77777,9,999999999,5,0.055,0,88,0,0,1 +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,63301,96419,8580,1521,180,3.6,0,0,112,77777,9,999999999,5,0.055,0,88,0,0,1 +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,51699,91087,7729,1306,180,4.6,0,0,112,77777,9,999999999,5,0.055,0,88,0,0,1 +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,-12.8,33,84300,472,1404,237,328,854,40,34949,78935,6271,1012,170,3.6,0,0,112,77777,9,999999999,5,0.055,0,88,0,0,1 +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,-12.2,35,84300,246,1404,237,142,658,27,15123,51482,4377,622,190,3.1,0,0,96,77777,9,999999999,5,0.055,0,88,0,0,1 +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,0,0,0,0,220,3.1,0,0,96,77777,9,999999999,4,0.055,0,88,0,0,1 +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,77777,9,999999999,4,0.055,0,88,0,0,1 +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,77777,9,999999999,4,0.055,0,88,0,0,1 +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,77777,9,999999999,4,0.055,0,88,0,0,1 +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,77777,9,999999999,4,0.055,0,88,0,0,1 +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,58,84600,0,0,206,0,0,0,0,0,0,0,180,2.6,0,0,48,77777,9,999999999,4,0.055,0,88,0,0,1 +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,58,84600,0,0,206,0,0,0,0,0,0,0,160,2.6,0,0,48,77777,9,999999999,4,0.055,0,88,0,0,1 +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,77777,9,999999999,3,0.056,0,88,0,0,1 +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,77777,9,999999999,3,0.056,0,88,0,0,1 +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,77777,9,999999999,3,0.056,0,88,0,0,1 +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,77777,9,999999999,3,0.056,0,88,0,0,1 +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,77777,9,999999999,3,0.056,0,88,0,0,1 +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,77777,9,999999999,3,0.056,0,88,0,0,1 +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,77777,9,999999999,3,0.056,0,88,0,0,1 +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,7897,37294,2648,389,190,5.2,0,0,128,77777,9,999999999,3,0.056,0,88,0,0,1 +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,27961,75071,4655,799,150,5.7,0,0,128,77777,9,999999999,3,0.056,0,88,0,0,1 +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,46895,91668,6191,1100,180,6.2,0,0,128,77777,9,999999999,3,0.056,0,88,0,0,1 +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,61292,99082,7215,1333,180,4.6,0,0,128,77777,9,999999999,3,0.056,0,88,0,0,1 +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,69490,102078,7685,1476,180,4.6,0,0,128,77777,9,999999999,3,0.056,0,88,0,0,1 +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,-11.7,18,84300,838,1403,280,623,933,66,65836,92910,9605,1707,190,4.6,1,1,128,77777,9,999999999,3,0.056,0,88,0,0,1 +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,61478,93837,7309,1386,190,4.6,1,1,128,77777,9,999999999,3,0.056,0,88,0,0,1 +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,11,84200,659,1403,291,459,739,112,54073,48863,13240,4950,0,0,6,2,128,77777,9,999999999,3,0.056,0,88,0,0,1 +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,29912,27138,12214,4127,180,3.1,8,3,128,77777,9,999999999,3,0.056,0,88,0,0,1 +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,20,84100,251,1403,293,89,170,58,9932,3908,6492,1984,160,1.5,7,4,96,77777,9,999999999,3,0.056,0,88,0,0,1 +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,0,0,0,0,150,1.5,8,3,96,77777,9,999999999,3,0.056,0,88,0,0,1 +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,77777,9,999999999,3,0.056,0,88,0,0,1 +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,-10,30,84000,0,0,269,0,0,0,0,0,0,0,190,4.1,5,3,48,77777,9,999999999,3,0.056,0,88,0,0,1 +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,77777,9,999999999,3,0.056,0,88,0,0,1 +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,77777,9,999999999,3,0.056,0,88,0,0,1 +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,77777,9,999999999,3,0.056,0,88,0,0,1 +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,77777,9,999999999,4,0.056,0,88,0,0,1 +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,6706,9,999999999,4,0.056,0,88,0,0,1 +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,6706,9,999999999,4,0.056,0,88,0,0,1 +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,7010,9,999999999,4,0.056,0,88,0,0,1 +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,7010,9,999999999,4,0.056,0,88,0,0,1 +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,6706,9,999999999,4,0.056,0,88,0,0,1 +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,6706,9,999999999,4,0.056,0,88,0,0,1 +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,6706,9,999999999,4,0.056,0,88,0,0,1 +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,5416,0,5000,1335,200,5.7,7,6,128,6706,9,999999999,4,0.056,0,88,0,0,1 +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,13512,2038,12455,3818,170,3.6,9,9,128,6706,9,999999999,4,0.056,0,88,0,0,1 +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,29369,5465,26678,7737,160,3.1,9,9,128,6706,9,999999999,4,0.056,0,88,0,0,1 +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,42467,12735,35200,10622,160,3.6,9,9,128,6706,9,999999999,4,0.056,0,88,0,0,1 +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,47497,26487,26524,9607,10,2.1,9,7,112,6706,9,999999999,4,0.056,0,88,0,0,1 +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,48464,18230,35808,11868,110,5.2,9,8,96,6096,9,999999999,4,0.056,0,88,0,0,1 +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,48879,31839,23345,8519,120,5.2,9,4,104,77777,9,999999999,4,0.056,0,88,0,0,1 +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,-7.8,26,83600,665,1403,291,429,499,192,48437,39795,21783,7432,120,4.6,8,3,104,77777,9,999999999,4,0.056,0,88,0,0,1 +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,32765,31049,12332,4180,130,6.2,7,1,104,77777,9,999999999,4,0.056,0,88,0,0,1 +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,12372,6754,7426,2204,130,4.1,8,3,80,77777,9,999999999,4,0.056,0,88,0,0,1 +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,0,0,0,0,130,3.1,7,2,80,77777,9,999999999,4,0.056,0,88,0,0,1 +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,77777,9,999999999,4,0.056,0,88,0,0,1 +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,77777,9,999999999,4,0.056,0,88,0,0,1 +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,77777,9,999999999,4,0.056,0,88,0,0,1 +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,77777,9,999999999,4,0.056,0,88,0,0,1 +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,77777,9,999999999,4,0.056,0,88,0,0,1 +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,77777,9,999999999,4,0.056,0,88,0,0,1 +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,77777,9,999999999,4,0.057,0,88,0,0,1 +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,77777,9,999999999,4,0.057,0,88,0,0,1 +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,77777,9,999999999,4,0.057,0,88,0,0,1 +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,-6.7,86,84200,0,0,225,0,0,0,0,0,0,0,330,1.5,0,0,32,77777,9,999999999,4,0.057,0,88,0,0,1 +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,77777,9,999999999,4,0.057,0,88,0,0,1 +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,77777,9,999999999,4,0.057,0,88,0,0,1 +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,-8.3,75,84200,2,175,224,0,6,0,0,0,0,0,150,2.1,0,0,112,77777,9,999999999,4,0.057,0,88,0,0,1 +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,7655,0,3385,1031,170,3.1,0,0,112,77777,9,999999999,4,0.057,0,88,0,0,1 +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,29054,26976,6366,2229,210,4.6,0,0,112,77777,9,999999999,4,0.057,0,88,0,0,1 +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,51200,46743,8696,3281,200,5.2,0,0,112,77777,9,999999999,4,0.057,0,88,0,0,1 +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,23,84100,749,1402,272,562,892,85,68676,55481,10416,4107,160,2.6,0,0,112,77777,9,999999999,4,0.057,0,88,0,0,1 +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,67197,91712,13154,1891,170,3.1,0,0,112,77777,9,999999999,4,0.057,0,88,0,0,1 +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,68671,92255,13257,1935,180,5.7,0,0,96,77777,9,999999999,4,0.057,0,88,0,0,1 +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,63261,89848,12827,1782,260,1.5,0,0,96,77777,9,999999999,4,0.057,0,88,0,0,1 +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,16,83900,671,1402,292,490,860,78,59453,51242,9489,3661,150,1,0,0,96,77777,9,999999999,4,0.057,0,88,0,0,1 +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,25,83900,490,1402,298,327,759,62,38897,36350,7392,2689,160,3.1,0,0,96,77777,9,999999999,4,0.057,0,88,0,0,1 +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,16212,8881,4840,1585,150,2.6,0,0,96,77777,9,999999999,4,0.057,0,88,0,0,1 +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,0,0,0,0,160,3.1,0,0,96,77777,9,999999999,4,0.057,0,88,0,0,1 +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,77777,9,999999999,4,0.057,0,88,0,0,1 +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,77777,9,999999999,4,0.057,0,88,0,0,1 +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,77777,9,999999999,4,0.057,0,88,0,0,1 +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,77777,9,999999999,4,0.057,0,88,0,0,1 +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,77777,9,999999999,4,0.057,0,88,0,0,1 +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,7620,9,999999999,4,0.057,0,88,0,0,1 +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,7620,9,999999999,4,0.057,0,88,0,0,1 +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,77777,9,999999999,5,0.057,0,88,0,0,1 +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,4572,9,999999999,5,0.057,0,88,0,0,1 +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,7620,9,999999999,5,0.057,0,88,0,0,1 +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,-12.2,24,83900,0,0,273,0,0,0,0,0,0,0,110,3.6,8,6,40,7620,9,999999999,5,0.057,0,88,0,0,1 +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,7620,9,999999999,5,0.057,0,88,0,0,1 +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,-12.8,23,83900,2,199,270,0,0,0,0,0,0,0,190,7.2,8,5,40,7620,9,999999999,5,0.057,0,88,0,0,1 +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,5156,0,4732,1335,190,8.2,10,6,96,7620,9,999999999,5,0.057,0,88,0,0,1 +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,14854,3588,12911,3973,190,5.7,10,9,112,4877,9,999999999,5,0.057,0,88,0,0,1 +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,-11.7,18,84000,606,1401,308,179,4,177,20117,311,19985,6653,200,5.7,9,9,112,4877,9,999999999,5,0.057,0,88,0,0,1 +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,39113,22747,21096,7721,220,7.7,8,6,112,6706,9,999999999,5,0.057,0,88,0,0,1 +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,68089,51281,18670,7261,220,5.7,7,2,112,77777,9,999999999,5,0.057,0,88,0,0,1 +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,56153,35368,26425,9741,210,4.6,9,4,112,77777,9,999999999,5,0.057,0,88,0,0,1 +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,50419,26261,32681,10844,210,3.6,10,6,112,7620,9,999999999,5,0.057,0,88,0,0,1 +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,47966,40142,16869,6153,340,1.5,10,5,112,77777,9,999999999,5,0.057,0,88,0,0,1 +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,-4.4,25,83800,495,1401,327,206,187,140,22997,12552,15697,5058,70,4.6,10,7,112,7620,9,999999999,5,0.057,0,88,0,0,1 +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,12597,5669,9376,2604,110,4.6,10,6,96,4877,9,999999999,5,0.057,0,88,0,0,1 +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,0,0,0,0,110,3.6,10,7,80,4877,9,999999999,5,0.057,0,88,0,0,1 +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,7925,9,999999999,5,0.057,0,88,0,0,1 +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,7925,9,999999999,5,0.057,0,88,0,0,1 +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,4877,9,999999999,5,0.057,0,88,0,0,1 +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,4877,9,999999999,5,0.057,0,88,0,0,1 +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,7925,9,999999999,5,0.057,0,88,0,0,1 +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,77777,9,999999999,5,0.057,0,88,0,0,1 +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,77777,9,999999999,5,0.058,0,88,0,0,1 +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,58,83700,0,0,261,0,0,0,0,0,0,0,350,2.6,5,3,32,77777,9,999999999,6,0.058,0,88,0,0,1 +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,5,2,32,77777,9,999999999,6,0.058,0,88,0,0,1 +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,77777,9,999999999,6,0.058,0,88,0,0,1 +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,3962,9,999999999,6,0.058,0,88,0,0,1 +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,6,6,32,3962,9,999999999,6,0.058,0,88,0,0,1 +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,4572,9,999999999,6,0.058,0,88,0,0,1 +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,4986,0,4334,1274,170,2.1,9,5,96,4877,9,999999999,6,0.058,0,88,0,0,1 +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,21178,4642,19354,4896,180,5.2,10,9,112,7315,9,999999999,6,0.058,0,88,0,0,1 +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,-9.4,22,83300,612,1401,320,146,0,146,14803,0,14924,5873,190,4.1,10,10,112,3962,9,999999999,6,0.058,0,88,0,0,1 +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,20010,0,20182,8156,190,5.7,10,10,112,3962,9,999999999,6,0.058,0,88,0,0,1 +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,18446,4909,12869,5177,180,6.2,9,9,112,3962,9,999999999,6,0.058,0,88,0,0,1 +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,-6.7,20,82900,863,1401,325,465,57,430,50932,6317,47423,13720,170,4.1,9,7,112,6706,9,999999999,6,0.058,0,88,0,0,1 +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,40528,7045,36196,11549,190,6.2,9,8,112,6706,9,999999999,7,0.058,0,88,0,0,1 +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,36316,21823,20587,7239,170,7.2,7,7,112,6706,9,999999999,7,0.058,0,88,0,0,1 +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,32935,29489,14786,4878,180,8.2,8,5,112,8534,9,999999999,7,0.058,0,88,0,0,1 +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,-3.9,26,82500,273,1401,321,116,178,81,12688,6254,8893,2555,180,6.7,6,5,112,7925,9,999999999,7,0.058,0,88,0,0,1 +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,1199,0,1093,292,180,5.2,3,3,112,77777,9,999999999,7,0.058,0,88,0,0,1 +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,77777,9,999999999,7,0.058,0,88,0,0,1 +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,3,3,32,77777,9,999999999,7,0.058,0,88,0,0,1 +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,-2.8,39,82300,0,0,289,0,0,0,0,0,0,0,190,5.2,1,1,32,77777,9,999999999,7,0.058,0,88,0,0,1 +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,77777,9,999999999,7,0.058,0,88,0,0,1 +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,-3.3,38,82100,0,0,298,0,0,0,0,0,0,0,140,4.1,6,4,48,7620,9,999999999,7,0.058,0,88,0,0,1 +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,7620,9,999999999,7,0.058,0,88,0,0,1 +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,77777,9,999999999,8,0.058,0,88,0,0,1 +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,77777,9,999999999,8,0.058,0,88,0,0,1 +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,4877,9,999999999,8,0.058,0,88,0,0,1 +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,4877,9,999999999,8,0.058,0,88,0,0,1 +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,4877,9,999999999,8,0.058,0,88,0,0,1 +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,7,5,48,7620,9,999999999,8,0.058,0,88,0,0,1 +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,6,268,269,1,32,0,0,0,0,0,170,3.6,3,3,96,77777,9,999999999,8,0.058,0,88,0,0,1 +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,9820,0,4140,1246,200,3.6,1,1,96,77777,9,999999999,8,0.058,0,88,0,0,1 +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,29847,74282,5557,903,200,6.7,0,0,96,77777,9,999999999,7,0.058,0,88,0,0,1 +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,25,81700,618,1400,303,390,776,47,41708,75351,7190,1226,200,8.2,1,1,96,77777,9,999999999,7,0.058,0,88,0,0,1 +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,51163,36150,21766,7983,190,7.2,6,6,96,3353,9,999999999,7,0.058,0,88,0,0,1 +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,24,81500,854,1400,305,614,877,79,64822,87693,11358,1874,190,9.3,2,1,96,77777,9,999999999,7,0.058,0,88,0,0,1 +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,53314,33176,21708,8369,200,10.3,6,6,96,6706,9,999999999,7,0.058,0,88,0,0,1 +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,48828,25529,30006,10392,290,10.3,6,6,96,7315,9,999999999,7,0.058,0,88,0,0,1 +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,52703,44314,13963,5270,190,2.1,5,5,96,77777,9,999999999,7,0.058,0,88,0,0,1 +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,32403,28894,8743,3165,50,4.1,6,5,96,7620,9,999999999,7,0.058,0,88,0,0,1 +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,35,81600,279,1400,305,102,190,64,11403,5435,7177,2226,340,6.7,8,8,96,3048,9,999999999,6,0.058,0,88,0,0,1 +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,1621,0,1301,336,360,1,5,5,104,77777,9,999999999,6,0.058,0,88,0,0,1 +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,40,81800,0,0,282,0,0,0,0,0,0,0,30,3.6,3,3,48,77777,9,999999999,6,0.058,0,88,0,0,1 +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,4572,9,999999999,6,0.058,0,88,0,0,1 +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,4572,9,999999999,6,0.058,0,88,0,0,1 +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,77777,9,999999999,6,0.058,0,88,0,0,1 +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,4572,9,999999999,6,0.058,0,88,0,0,1 +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,4267,9,999999999,6,0.058,0,88,0,0,1 +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,2286,9,999999999,5,0.059,0,88,0,0,1 +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,1829,9,999999999,5,0.059,0,88,0,0,1 +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,2438,9,999999999,5,0.059,0,88,0,0,1 +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,4,3,40,77777,9,999999999,5,0.059,0,88,0,0,1 +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,77777,9,999999999,5,0.059,0,88,0,0,1 +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,77777,9,999999999,5,0.059,0,88,0,0,1 +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,77777,9,999999999,5,0.059,0,88,0,0,1 +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,6174,291,4976,1442,190,2.6,4,3,96,77777,9,999999999,5,0.059,0,88,0,0,1 +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,20909,12081,14811,4447,200,3.1,7,7,96,7010,9,999999999,5,0.059,0,88,0,0,1 +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,37436,27589,18802,6477,230,2.1,8,4,96,77777,9,999999999,5,0.059,0,88,0,0,1 +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,58480,45277,21057,7799,10,1.5,6,2,96,77777,9,999999999,5,0.059,0,88,0,0,1 +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,68546,50044,21142,8152,10,2.6,4,3,96,77777,9,999999999,5,0.059,0,88,0,0,1 +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,31767,5695,26939,9993,40,2.1,7,7,80,2134,9,999999999,5,0.059,0,88,0,0,1 +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,17319,0,17471,7575,330,5.7,10,10,64,2134,9,999999999,5,0.059,0,88,0,0,1 +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,13877,0,13995,5932,20,4.6,10,10,80,2134,9,999999999,5,0.059,0,88,0,0,1 +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,30787,26605,13162,4508,360,3.6,6,6,96,3353,9,999999999,5,0.059,0,88,0,0,1 +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,16034,11590,9746,2756,50,3.1,5,5,96,77777,9,999999999,5,0.059,0,88,0,0,1 +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,1325,0,1107,310,110,2.6,3,3,80,77777,9,999999999,5,0.059,0,88,0,0,1 +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,77777,9,999999999,5,0.059,0,88,0,0,1 +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,-3.3,76,83000,0,0,245,0,0,0,0,0,0,0,120,3.1,0,0,48,77777,9,999999999,5,0.059,0,88,0,0,1 +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,4,2,32,77777,9,999999999,5,0.059,0,88,0,0,1 +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,5,0.059,0,88,0,0,1 +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,5,0.059,0,88,0,0,1 +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,91,9,999999999,5,0.059,0,88,0,0,1 +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,183,9,999999999,5,0.059,0,88,0,0,1 +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,5,0.059,0,88,0,0,1 +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,10,10,9.6,152,9,999999999,5,0.059,0,88,0,0,1 +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,4,0.059,0,88,0,0,1 +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,4,0.059,0,88,0,0,1 +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,9.6,77777,9,999999999,4,0.059,0,88,0,0,1 +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,4,0.059,0,88,0,0,1 +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,11603,0,3648,1146,190,4.1,2,2,64,77777,9,999999999,4,0.059,0,88,0,0,1 +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,-10.6,40,83600,427,1399,243,279,787,38,29760,71404,5998,949,170,3.1,1,1,80,77777,9,999999999,4,0.059,0,88,0,0,1 +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,50491,91901,7030,1223,160,2.1,0,0,112,77777,9,999999999,4,0.059,0,88,0,0,1 +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,64702,98463,8011,1471,140,2.6,0,0,112,77777,9,999999999,4,0.059,0,88,0,0,1 +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,72815,101227,8458,1634,130,2.1,0,0,112,77777,9,999999999,4,0.059,0,88,0,0,1 +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,18,83500,882,1399,261,682,988,58,72256,98699,8437,1653,60,2.1,1,1,112,77777,9,999999999,4,0.059,0,88,0,0,1 +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,72815,56530,15533,6125,50,4.1,7,2,112,77777,9,999999999,4,0.059,0,88,0,0,1 +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,60324,50861,10224,3972,90,4.1,5,3,112,77777,9,999999999,4,0.059,0,88,0,0,1 +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,24388,17459,12121,4235,70,5.2,7,7,112,3658,9,999999999,4,0.059,0,88,0,0,1 +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,13508,7883,8444,2543,70,5.7,8,5,96,3658,9,999999999,4,0.059,0,88,0,0,1 +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,1827,0,1617,407,70,6.2,7,5,96,6706,9,999999999,4,0.059,0,88,0,0,1 +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,3353,9,999999999,4,0.059,0,88,0,0,1 +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,2896,9,999999999,4,0.059,0,88,0,0,1 +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,2896,9,999999999,4,0.059,0,88,0,0,1 +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,77777,9,999999999,4,0.059,0,88,0,0,1 +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,77777,9,999999999,4,0.059,0,88,0,0,1 +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,77777,9,999999999,4,0.059,0,88,0,0,1 +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,-6.1,60,83500,0,0,243,0,0,0,0,0,0,0,180,4.1,0,0,32,77777,9,999999999,4,0.06,0,88,0,0,1 +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,77777,9,999999999,4,0.06,0,88,0,0,1 +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,77777,9,999999999,4,0.06,0,88,0,0,1 +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,77777,9,999999999,4,0.06,0,88,0,0,1 +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,2,2,32,77777,9,999999999,4,0.06,0,88,0,0,1 +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,-6.7,86,83500,0,0,225,0,0,0,0,0,0,0,0,0,0,0,32,77777,9,999999999,4,0.06,0,88,0,0,1 +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,77777,9,999999999,4,0.06,0,88,0,0,1 +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,9283,0,3972,1240,310,3.1,3,3,16,77777,9,999999999,4,0.06,0,88,0,0,1 +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,6189,0,6237,2583,320,2.6,10,10,4,122,9,999999999,4,0.06,0,88,0,0,1 +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,9846,0,9928,4341,320,2.6,10,10,4.8,152,9,999999999,4,0.06,0,88,0,0,1 +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,15103,0,15235,6691,360,3.6,10,10,8,305,9,999999999,4,0.06,0,88,0,0,1 +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,-4.4,69,83400,873,1398,282,197,0,197,20381,0,20563,8849,320,4.1,10,10,9.6,427,9,999999999,4,0.06,0,88,0,0,1 +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,63,83300,888,1398,284,201,0,201,20822,0,21009,9062,320,3.6,10,10,11.2,549,9,999999999,4,0.06,0,88,0,0,1 +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,19282,0,19452,8295,340,4.6,10,10,11.2,488,9,999999999,4,0.06,0,88,0,0,1 +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,-4.4,69,83200,707,1398,282,156,0,156,15925,0,16061,6655,340,5.2,10,10,9.6,488,9,999999999,4,0.06,0,88,0,0,1 +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,-4.4,69,83200,524,1398,282,110,0,110,11063,0,11151,4410,350,6.2,10,10,12.8,518,9,999999999,4,0.06,0,88,0,0,1 +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,5427,0,5467,2042,340,6.2,10,10,6.4,457,9,999999999,5,0.06,0,88,0,0,1 +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,482,0,486,184,360,6.2,10,10,2.4,122,9,999999999,5,0.06,0,88,0,0,1 +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,5,0.06,0,88,0,0,1 +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,183,9,999999999,5,0.06,0,88,0,0,1 +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,5,0.06,0,88,0,0,1 +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,5,0.06,0,88,0,0,1 +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,5,0.06,0,88,0,0,1 +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,-6.1,91,83300,0,0,260,0,0,0,0,0,0,0,340,4.1,10,10,3.2,244,9,999999999,5,0.06,0,88,0,0,1 +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,5,0.06,0,88,0,0,1 +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,5,0.06,0,88,0,0,1 +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,1676,9,999999999,5,0.06,0,88,0,0,1 +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,5,0.06,0,88,0,0,1 +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,5,0.06,0,88,0,0,1 +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,5,0.06,0,88,0,0,1 +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,5,0.06,0,88,0,0,1 +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,2252,0,2268,889,360,2.6,10,10,1.6,274,9,999999999,5,0.06,0,88,0,0,1 +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,7596,0,7654,3070,360,3.1,10,10,3.2,762,9,999999999,5,0.06,0,88,0,0,1 +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,-6.7,86,83200,644,1398,260,106,0,106,10772,0,10861,4694,360,2.6,10,10,4.8,274,9,999999999,5,0.06,0,88,0,0,1 +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,14297,0,14422,6417,360,3.6,10,10,3.2,244,9,999999999,5,0.06,0,88,0,0,1 +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,16262,0,16408,7415,360,3.1,10,10,11.2,366,9,999999999,5,0.06,0,88,0,0,1 +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,19910,0,20090,8780,340,2.1,10,10,11.2,1829,9,999999999,4,0.06,0,88,0,0,1 +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,18272,0,18434,7982,330,2.1,10,10,11.2,518,9,999999999,4,0.06,0,88,0,0,1 +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,14820,0,14946,6318,350,2.6,10,10,11.2,549,9,999999999,4,0.06,0,88,0,0,1 +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,9868,0,9947,4054,300,2.1,10,10,12.8,732,9,999999999,4,0.06,0,88,0,0,1 +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,56,83200,300,1398,263,45,0,45,4447,0,4480,1753,360,1,10,10,16,732,9,999999999,4,0.06,0,88,0,0,1 +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,870,0,875,305,40,2.1,10,10,11.2,762,9,999999999,4,0.06,0,88,0,0,1 +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,853,9,999999999,4,0.06,0,88,0,0,1 +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,-7.2,83,83300,0,0,259,0,0,0,0,0,0,0,120,1.5,10,10,11.2,853,9,999999999,4,0.06,0,88,0,0,1 +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,4,0.06,0,88,0,0,1 +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,975,9,999999999,4,0.06,0,88,0,0,1 +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,10,10,16,914,9,999999999,4,0.06,0,88,0,0,1 +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,3,0.06,0,88,0,0,1 +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,457,9,999999999,3,0.061,0,88,0,0,1 +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,77777,9,999999999,3,0.061,0,88,0,0,1 +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,77777,9,999999999,3,0.061,0,88,0,0,1 +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,-12.8,78,83300,0,0,204,0,0,0,0,0,0,0,210,1,0,0,40,77777,9,999999999,3,0.061,0,88,0,0,1 +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,77777,9,999999999,3,0.061,0,88,0,0,1 +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,1,1,64,77777,9,999999999,3,0.061,0,88,0,0,1 +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,77777,9,999999999,3,0.061,0,88,0,0,1 +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,10247,2318,4629,1428,290,5.2,1,0,96,77777,9,999999999,3,0.061,0,88,0,0,1 +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,32443,31488,8308,2922,230,2.6,1,0,96,77777,9,999999999,3,0.061,0,88,0,0,1 +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,55241,49270,10914,4146,230,4.1,0,0,96,77777,9,999999999,3,0.061,0,88,0,0,1 +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,25,83400,801,1397,239,601,861,107,72868,57453,13016,5159,290,5.7,0,0,120,77777,9,999999999,3,0.061,0,88,0,0,1 +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,83102,60579,14103,5705,310,6.7,0,0,112,77777,9,999999999,3,0.061,0,88,0,0,1 +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,84954,61140,14249,5782,290,6.7,0,0,112,77777,9,999999999,3,0.061,0,88,0,0,1 +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,77908,59043,13558,5432,240,6.2,0,0,112,77777,9,999999999,3,0.061,0,88,0,0,1 +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,60336,51680,14276,5446,220,2.1,1,1,112,77777,9,999999999,3,0.061,0,88,0,0,1 +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,18,83000,536,1397,272,315,499,123,35934,32845,14086,4843,260,3.1,6,5,112,6706,9,999999999,4,0.061,0,88,0,0,1 +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,13177,5816,10031,2924,150,2.6,6,5,112,6706,9,999999999,4,0.061,0,88,0,0,1 +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,1774,0,1444,409,290,4.6,5,4,112,77777,9,999999999,4,0.061,0,88,0,0,1 +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,77777,9,999999999,4,0.061,0,88,0,0,1 +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,-12.2,35,82900,0,0,254,0,0,0,0,0,0,0,350,3.6,8,6,48,4877,9,999999999,4,0.061,0,88,0,0,1 +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,4877,9,999999999,4,0.061,0,88,0,0,1 +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,-12.2,35,82800,0,0,254,0,0,0,0,0,0,0,200,1.5,8,6,48,4877,9,999999999,4,0.061,0,88,0,0,1 +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,4877,9,999999999,4,0.061,0,88,0,0,1 +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,4877,9,999999999,4,0.061,0,88,0,0,1 +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,6096,9,999999999,4,0.062,0,88,0,0,1 +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,4267,9,999999999,4,0.062,0,88,0,0,1 +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,4572,9,999999999,4,0.062,0,88,0,0,1 +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,4572,9,999999999,4,0.062,0,88,0,0,1 +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,4267,9,999999999,4,0.062,0,88,0,0,1 +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,4267,9,999999999,4,0.062,0,88,0,0,1 +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,6096,9,999999999,4,0.062,0,88,0,0,1 +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,13633,1801,3903,1251,260,2.1,2,2,96,77777,9,999999999,4,0.062,0,88,0,0,1 +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,31541,30104,9072,3172,300,4.1,4,3,96,77777,9,999999999,4,0.062,0,88,0,0,1 +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,-8.3,25,82400,658,1396,287,389,521,144,44909,37044,16693,6042,350,2.6,7,2,112,77777,9,999999999,4,0.062,0,88,0,0,1 +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,52380,36863,12681,5049,350,6.2,8,4,120,77777,9,999999999,4,0.062,0,88,0,0,1 +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,78118,55842,16702,6699,310,1.5,7,2,120,77777,9,999999999,5,0.062,0,88,0,0,1 +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,81014,58323,20193,7984,310,9.3,8,3,112,77777,9,999999999,5,0.062,0,88,0,0,1 +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,69012,50401,16811,6647,270,12.4,7,4,112,77777,9,999999999,5,0.062,0,88,0,0,1 +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,46315,33151,20551,7441,260,15.5,8,4,112,77777,9,999999999,5,0.062,0,88,0,0,1 +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,40447,37323,9579,3502,290,8.2,7,2,112,77777,9,999999999,5,0.062,0,88,0,0,1 +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,15490,10182,9328,2817,290,12.9,8,5,112,6706,9,999999999,5,0.062,0,88,0,0,1 +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,2546,0,1553,440,290,8.2,7,2,96,77777,9,999999999,5,0.062,0,88,0,0,1 +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,77777,9,999999999,5,0.062,0,88,0,0,1 +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,7620,9,999999999,5,0.062,0,88,0,0,1 +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,77777,9,999999999,5,0.062,0,88,0,0,1 +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,732,9,999999999,5,0.062,0,88,0,0,1 +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,-13.9,70,83500,0,0,234,0,0,0,0,0,0,0,360,3.1,10,10,8,884,9,999999999,5,0.062,0,88,0,0,1 +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,5,0.062,0,88,0,0,1 +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,-13.9,70,83600,0,0,210,0,0,0,0,0,0,0,360,3.1,2,2,11.2,77777,9,999999999,5,0.062,0,88,0,0,1 +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,-13.9,70,83500,0,0,212,0,0,0,0,0,0,0,110,2.6,3,3,16,77777,9,999999999,5,0.062,0,88,0,0,1 +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,-14.4,67,83500,0,0,207,0,0,0,0,0,0,0,110,3.6,1,1,24,77777,9,999999999,5,0.062,0,88,0,0,1 +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,67,83500,0,0,204,0,0,0,0,0,0,0,160,3.1,1,1,32,77777,9,999999999,6,0.062,0,88,0,0,1 +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,77777,9,999999999,6,0.062,0,88,0,0,1 +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,70,83700,0,0,203,0,0,0,0,0,0,0,90,4.1,1,1,40,77777,9,999999999,6,0.062,0,88,0,0,1 +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,67,83700,15,477,204,5,80,2,0,0,0,0,80,3.6,2,1,40,77777,9,999999999,6,0.062,0,88,0,0,1 +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,-14.4,67,83900,216,1396,213,70,270,28,8174,589,3274,1076,90,4.1,8,4,80,7620,9,999999999,6,0.062,0,88,0,0,1 +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,28921,26348,13218,4321,110,2.1,9,6,24,610,9,999999999,6,0.062,0,88,0,0,1 +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,42611,32044,20549,7136,100,2.6,9,4,48,77777,9,999999999,6,0.062,0,88,0,0,1 +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,43739,22689,25615,9304,80,3.6,7,6,48,762,9,999999999,6,0.062,0,88,0,0,1 +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,54967,29447,29947,10977,140,3.1,8,4,40,77777,9,999999999,6,0.062,0,88,0,0,1 +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,85553,63255,23088,8982,310,2.1,10,4,40,77777,9,999999999,6,0.062,0,88,0,0,1 +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,78379,60647,21571,8285,140,3.1,10,5,40,77777,9,999999999,6,0.062,0,88,0,0,1 +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,49734,36999,21646,7775,80,2.1,10,5,32,77777,9,999999999,6,0.062,0,88,0,0,1 +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,43418,42967,15481,5263,80,2.1,10,5,32,77777,9,999999999,6,0.062,0,88,0,0,1 +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,21298,18973,7800,2489,60,4.6,9,2,32,77777,9,999999999,6,0.062,0,88,0,0,1 +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,51,83700,70,1035,242,27,99,21,2906,0,2267,577,80,5.2,8,3,32,77777,9,999999999,6,0.062,0,88,0,0,1 +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,77777,9,999999999,6,0.062,0,88,0,0,1 +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,61,83800,0,0,234,0,0,0,0,0,0,0,330,3.6,8,3,32,77777,9,999999999,6,0.062,0,88,0,0,1 +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,-10.6,61,83800,0,0,229,0,0,0,0,0,0,0,340,3.1,4,2,32,77777,9,999999999,6,0.062,0,88,0,0,1 +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,71,83800,0,0,223,0,0,0,0,0,0,0,360,2.6,1,1,32,77777,9,999999999,6,0.062,0,88,0,0,1 +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,77777,9,999999999,6,0.062,0,88,0,0,1 +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,77777,9,999999999,6,0.062,0,88,0,0,1 +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,75,83700,0,0,217,0,0,0,0,0,0,0,190,1.5,1,0,32,77777,9,999999999,6,0.063,0,88,0,0,1 +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,71,83700,0,0,219,0,0,0,0,0,0,0,40,1.5,0,0,32,77777,9,999999999,7,0.063,0,88,0,0,1 +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,75,83600,0,0,217,0,0,0,0,0,0,0,0,0,0,0,40,77777,9,999999999,7,0.063,0,88,0,0,1 +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,2,1,40,77777,9,999999999,7,0.063,0,88,0,0,1 +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,77777,9,999999999,7,0.063,0,88,0,0,1 +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,77777,9,999999999,7,0.063,0,88,0,0,1 +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,77777,9,999999999,7,0.063,0,88,0,0,1 +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,10356,4094,7331,2049,80,1.5,6,4,96,7925,9,999999999,7,0.063,0,88,0,0,1 +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,30682,28582,10492,3626,110,1,9,3,120,77777,9,999999999,7,0.063,0,88,0,0,1 +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,54463,47419,14460,5396,0,0,7,2,112,77777,9,999999999,7,0.063,0,88,0,0,1 +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,62363,45288,22829,8547,360,3.1,9,3,96,77777,9,999999999,7,0.063,0,88,0,0,1 +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,79174,55745,19400,7710,10,2.1,9,2,96,77777,9,999999999,7,0.063,0,88,0,0,1 +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,80323,55611,18111,7277,60,3.1,9,5,96,6706,9,999999999,7,0.063,0,88,0,0,1 +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,59407,40018,18171,7163,50,3.6,9,5,96,6706,9,999999999,7,0.063,0,88,0,0,1 +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,38845,26407,12186,4756,80,5.2,9,5,80,6706,9,999999999,7,0.063,0,88,0,0,1 +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,36415,30415,17046,5685,80,5.7,9,4,80,77777,9,999999999,7,0.063,0,88,0,0,1 +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,18083,12134,12290,3383,60,5.2,9,6,80,6706,9,999999999,7,0.063,0,88,0,0,1 +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,2222,0,1670,482,360,4.6,9,5,80,6706,9,999999999,7,0.063,0,88,0,0,1 +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,6706,9,999999999,7,0.063,0,88,0,0,1 +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,6706,9,999999999,7,0.063,0,88,0,0,1 +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,9,4,48,77777,9,999999999,7,0.063,0,88,0,0,1 +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,77777,9,999999999,7,0.063,0,88,0,0,1 +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,10,5,48,77777,9,999999999,7,0.063,0,88,0,0,1 +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,-2.8,79,83400,0,0,266,0,0,0,0,0,0,0,0,0,10,7,32,6096,9,999999999,7,0.063,0,88,0,0,1 +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,10,10,32,6096,9,999999999,7,0.064,0,88,0,0,1 +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,6706,9,999999999,7,0.064,0,88,0,0,1 +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,-2.2,83,83200,0,0,277,0,0,0,0,0,0,0,160,2.1,10,9,32,6706,9,999999999,7,0.064,0,88,0,0,1 +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,-2.2,83,83200,0,0,271,0,0,0,0,0,0,0,210,2.1,10,8,40,6706,9,999999999,7,0.064,0,88,0,0,1 +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,-2.2,83,83200,0,0,266,0,0,0,0,0,0,0,190,2.1,10,7,48,7620,9,999999999,7,0.064,0,88,0,0,1 +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,4267,9,999999999,7,0.064,0,88,0,0,1 +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,4267,9,999999999,7,0.064,0,88,0,0,1 +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,9030,462,8743,2289,180,3.1,9,9,112,4267,9,999999999,7,0.064,0,88,0,0,1 +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,-2.8,55,83200,474,1394,286,142,95,109,16098,5551,12403,4177,170,1,9,7,128,7315,9,999999999,7,0.064,0,88,0,0,1 +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,20739,6258,15557,5770,140,2.6,9,8,120,4267,9,999999999,7,0.064,0,88,0,0,1 +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,44304,12263,36041,11791,170,4.1,10,7,112,4267,9,999999999,7,0.064,0,88,0,0,1 +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,70316,47032,25902,9883,130,2.6,9,6,112,7315,9,999999999,7,0.064,0,88,0,0,1 +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,-4.4,25,83000,926,1394,321,573,502,239,66532,41375,27897,10554,110,4.1,10,5,112,77777,9,999999999,7,0.064,0,88,0,0,1 +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,69143,49491,24758,9337,100,1.5,10,5,112,77777,9,999999999,7,0.064,0,88,0,0,1 +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,-6.7,20,82800,743,1394,325,381,181,284,42304,16966,31717,10139,20,1.5,10,7,112,2896,9,999999999,7,0.064,0,88,0,0,1 +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,26,82800,558,1394,324,208,129,156,23366,9288,17602,5844,320,5.7,10,8,112,2896,9,999999999,7,0.064,0,88,0,0,1 +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,12519,6801,7190,2360,20,4.1,10,7,112,2743,9,999999999,7,0.064,0,88,0,0,1 +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,2489,0,2388,628,50,3.1,10,9,112,2591,9,999999999,7,0.064,0,88,0,0,1 +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,2591,9,999999999,7,0.064,0,88,0,0,1 +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,7620,9,999999999,7,0.064,0,88,0,0,1 +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,2286,9,999999999,7,0.064,0,88,0,0,1 +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,1829,9,999999999,7,0.064,0,88,0,0,1 +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,67,83200,0,0,311,0,0,0,0,0,0,0,60,3.1,10,10,32,1829,9,999999999,7,0.064,0,88,0,0,1 +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,975,9,999999999,7,0.064,0,88,0,0,1 +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,9,9,32,1341,9,999999999,7,0.064,0,88,0,0,1 +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,76,83300,0,0,303,0,0,0,0,0,0,0,0,0,10,10,32,610,9,999999999,7,0.064,0,88,0,0,1 +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,76,83300,0,0,303,0,0,0,0,0,0,0,10,2.1,10,10,32,884,9,999999999,7,0.064,0,88,0,0,1 +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,85,83300,0,0,277,0,0,0,0,0,0,0,0,0,7,7,32,1676,9,999999999,7,0.064,0,88,0,0,1 +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,92,83300,0,0,263,0,0,0,0,0,0,0,170,1.5,8,3,32,77777,9,999999999,7,0.064,0,88,0,0,1 +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,92,83400,0,0,291,0,0,0,0,0,0,0,130,2.1,10,10,32,671,9,999999999,7,0.064,0,88,0,0,1 +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,88,83400,22,592,286,3,1,3,0,0,0,0,190,2.1,10,9,12.8,2438,9,999999999,7,0.064,0,88,0,0,1 +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,79,83500,236,1394,301,37,0,37,3629,0,3655,1388,210,2.6,10,10,12.8,1402,9,999999999,8,0.064,0,88,0,0,1 +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,67,83500,480,1394,296,177,207,105,20147,11794,11995,4094,310,1.5,8,8,11.2,1280,9,999999999,8,0.064,0,88,0,0,1 +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,32575,16427,20483,7240,350,2.6,7,7,16,1829,9,999999999,8,0.064,0,88,0,0,1 +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,-1.1,45,83500,834,1394,321,297,8,292,33407,728,33037,11276,30,4.1,9,9,32,1676,9,999999999,8,0.064,0,88,0,0,1 +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,56,83500,919,1394,303,474,179,356,53192,17307,40205,13535,60,3.1,7,7,32,1372,9,999999999,8,0.064,0,88,0,0,1 +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,56,83400,932,1394,308,455,175,338,51389,16430,38413,13305,60,5.7,8,8,32,1372,9,999999999,8,0.064,0,88,0,0,1 +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,56,83400,874,1394,303,545,581,180,64116,43119,21273,8267,50,5.2,7,7,24,1372,9,999999999,8,0.064,0,88,0,0,1 +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,70,83500,748,1394,308,160,0,160,16373,0,16514,6992,30,7.2,10,10,9.6,732,9,999999999,8,0.064,0,88,0,0,1 +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,7964,0,8029,3484,350,7.7,10,10,0.6,61,9,999999999,8,0.064,0,88,0,0,1 +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,3957,0,3986,1638,360,5.7,10,10,1.6,61,9,999999999,8,0.064,0,88,0,0,1 +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,774,0,779,298,10,4.1,10,10,1.4,61,9,999999999,8,0.064,0,88,0,0,1 +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,96,84000,0,0,289,0,0,0,0,0,0,0,320,3.1,10,10,4,61,9,999999999,8,0.064,0,88,0,0,1 +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,96,84000,0,0,289,0,0,0,0,0,0,0,310,2.6,10,10,4,183,9,999999999,8,0.064,0,88,0,0,1 +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,8,0.064,0,88,0,0,1 +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,8,0.064,0,88,0,0,1 +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,8,0.064,0,88,0,0,1 +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,77777,9,999999999,8,0.064,0,88,0,0,1 +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,-4.1,62,81500,0,0,285,0,0,0,0,0,0,0,210,4.7,9,7,32,7620,9,999999999,6,0.054,0,88,0,0,1 +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,7620,9,999999999,6,0.054,0,88,0,0,1 +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,77777,9,999999999,6,0.054,0,88,0,0,1 +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,7620,9,999999999,6,0.054,0,88,0,0,1 +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,7620,9,999999999,6,0.054,0,88,0,0,1 +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,7620,9,999999999,7,0.054,0,88,0,0,1 +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,5182,9,999999999,7,0.054,0,88,0,0,1 +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,7375,25,7290,2132,210,4.6,9,8,96,5182,9,999999999,7,0.054,0,88,0,0,1 +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,23492,9366,18752,5613,190,4.6,9,7,104,4572,9,999999999,7,0.054,0,88,0,0,1 +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,47873,38486,14083,5325,210,4.1,8,6,104,4572,9,999999999,7,0.054,0,88,0,0,1 +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,52875,32835,24651,9181,170,3.1,7,6,104,4572,9,999999999,7,0.054,0,88,0,0,1 +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,-7.2,19,81700,923,1393,313,686,792,161,82173,57723,19368,7744,160,2.6,6,3,96,77777,9,999999999,7,0.054,0,88,0,0,1 +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,72430,48109,22188,8768,190,2.1,7,4,96,77777,9,999999999,7,0.054,0,88,0,0,1 +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,62449,26971,45064,13825,10,4.6,10,9,96,2286,9,999999999,7,0.054,0,88,0,0,1 +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,26437,2883,24394,8645,360,3.6,10,9,96,2591,9,999999999,7,0.054,0,88,0,0,1 +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,15257,0,15380,5790,20,4.1,10,10,96,3353,9,999999999,7,0.054,0,88,0,0,1 +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,6441,0,6489,2449,10,3.6,10,10,96,2286,9,999999999,7,0.054,0,88,0,0,1 +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,1163,0,1171,425,20,4.1,10,10,48,2438,9,999999999,7,0.054,0,88,0,0,1 +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,7,0.054,0,88,0,0,1 +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,7,0.054,0,88,0,0,1 +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,610,9,999999999,8,0.054,0,88,0,0,1 +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,549,9,999999999,8,0.054,0,88,0,0,1 +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,518,9,999999999,8,0.054,0,88,0,0,1 +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,610,9,999999999,8,0.054,0,88,0,0,1 +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,8,0.055,0,88,0,0,1 +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,-7.8,79,82400,0,0,259,0,0,0,0,0,0,0,130,3.6,10,10,16,427,9,999999999,8,0.055,0,88,0,0,1 +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,-7.8,79,82300,0,0,259,0,0,0,0,0,0,0,110,3.6,10,10,16,427,9,999999999,8,0.055,0,88,0,0,1 +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,-7.8,79,82400,0,0,259,0,0,0,0,0,0,0,100,3.6,10,10,11.2,366,9,999999999,8,0.055,0,88,0,0,1 +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,-7.8,79,82400,0,0,259,0,0,0,0,0,0,0,80,2.1,10,10,9.6,305,9,999999999,8,0.055,0,88,0,0,1 +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,-7.8,79,82500,0,0,259,0,0,0,0,0,0,0,60,2.1,10,10,9.6,305,9,999999999,8,0.055,0,88,0,0,1 +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,-7.8,79,82500,26,638,259,2,0,2,0,0,0,0,60,2.6,10,10,9.6,305,9,999999999,8,0.055,0,88,0,0,1 +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,10434,1445,9722,2547,60,1.5,10,9,8,732,9,999999999,8,0.055,0,88,0,0,1 +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,9940,0,10018,3970,80,1.5,10,10,11.2,732,9,999999999,8,0.055,0,88,0,0,1 +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,19640,6612,13773,5237,0,0,10,9,11.2,732,9,999999999,8,0.055,0,88,0,0,1 +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,61,82700,846,1392,272,349,119,276,39564,10624,31467,11033,230,2.1,10,8,11.2,2438,9,999999999,8,0.055,0,88,0,0,1 +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,58875,34696,23474,9185,0,0,10,6,11.2,7620,9,999999999,8,0.055,0,88,0,0,1 +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,-4.4,48,82700,943,1392,276,528,433,234,61602,35247,27444,10509,40,2.1,9,4,11.2,77777,9,999999999,7,0.055,0,88,0,0,1 +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,55146,32730,24605,9379,130,1.5,10,5,11.2,77777,9,999999999,7,0.055,0,88,0,0,1 +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,42652,24730,23558,8463,320,2.1,10,8,9.6,6096,9,999999999,7,0.055,0,88,0,0,1 +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,43,82900,573,1392,299,230,67,202,25390,5478,22414,6951,350,4.1,10,9,12.8,6096,9,999999999,7,0.055,0,88,0,0,1 +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,-5,46,82900,341,1392,288,93,69,76,10482,2798,8594,2768,10,5.2,9,8,24,6096,9,999999999,7,0.055,0,88,0,0,1 +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,54,83000,88,1149,262,28,132,18,3126,0,2014,590,40,4.1,7,2,32,77777,9,999999999,7,0.055,0,88,0,0,1 +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,61,83100,0,0,261,0,0,0,0,0,0,0,130,2.6,9,4,24,77777,9,999999999,7,0.055,0,88,0,0,1 +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,77777,9,999999999,7,0.055,0,88,0,0,1 +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,77777,9,999999999,7,0.055,0,88,0,0,1 +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,77777,9,999999999,7,0.055,0,88,0,0,1 +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,77777,9,999999999,7,0.055,0,88,0,0,1 +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,77777,9,999999999,7,0.055,0,88,0,0,1 +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,77777,9,999999999,6,0.056,0,88,0,0,1 +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,77777,9,999999999,6,0.056,0,88,0,0,1 +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,77777,9,999999999,6,0.056,0,88,0,0,1 +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,-8.3,49,83300,0,0,241,0,0,0,0,0,0,0,200,1.5,0,0,32,77777,9,999999999,6,0.056,0,88,0,0,1 +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,77777,9,999999999,6,0.056,0,88,0,0,1 +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,77777,9,999999999,6,0.056,0,88,0,0,1 +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,0,0,0,0,180,1,0,0,112,77777,9,999999999,6,0.056,0,88,0,0,1 +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,14460,8205,5365,1724,320,7.2,0,0,112,77777,9,999999999,6,0.056,0,88,0,0,1 +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,20,83500,499,1392,279,322,691,75,37900,36491,8852,3195,320,8.2,0,0,112,77777,9,999999999,6,0.056,0,88,0,0,1 +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,58263,48791,11471,4440,340,3.1,1,1,104,77777,9,999999999,6,0.056,0,88,0,0,1 +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,78298,58112,13583,5464,310,4.1,1,0,104,77777,9,999999999,6,0.056,0,88,0,0,1 +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,88595,60883,14675,6007,290,5.2,0,0,104,77777,9,999999999,6,0.056,0,88,0,0,1 +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,90112,61049,14702,6036,300,10.3,1,1,112,77777,9,999999999,6,0.056,0,88,0,0,1 +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,56181,34496,23571,9070,330,7.2,8,4,112,7620,9,999999999,6,0.056,0,88,0,0,1 +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,45887,32465,15830,6101,290,3.1,6,4,112,7620,9,999999999,6,0.056,0,88,0,0,1 +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,42057,38025,17601,5962,130,3.1,6,5,112,7620,9,999999999,6,0.056,0,88,0,0,1 +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,12752,3841,10686,3263,280,6.7,7,6,96,7315,9,999999999,6,0.056,0,88,0,0,1 +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,-13.3,11,83200,92,1194,308,33,26,31,3540,0,3337,836,280,10.3,4,4,96,77777,9,999999999,6,0.056,0,88,0,0,1 +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,77777,9,999999999,6,0.056,0,88,0,0,1 +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,77777,9,999999999,6,0.056,0,88,0,0,1 +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,5486,9,999999999,5,0.056,0,88,0,0,1 +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,5486,9,999999999,5,0.056,0,88,0,0,1 +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,77777,9,999999999,5,0.056,0,88,0,0,1 +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,5486,9,999999999,5,0.056,0,88,0,0,1 +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,77777,9,999999999,5,0.056,0,88,0,0,1 +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,-6.7,28,83200,0,0,280,0,0,0,0,0,0,0,290,5.2,0,0,32,77777,9,999999999,5,0.056,0,88,0,0,1 +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,77777,9,999999999,5,0.056,0,88,0,0,1 +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,-8.3,25,83200,0,0,278,0,0,0,0,0,0,0,270,3.6,0,0,32,77777,9,999999999,5,0.056,0,88,0,0,1 +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,77777,9,999999999,5,0.056,0,88,0,0,1 +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,77777,9,999999999,5,0.056,0,88,0,0,1 +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,0,0,0,0,240,8.8,1,0,112,77777,9,999999999,6,0.056,0,88,0,0,1 +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,15045,47586,4839,670,120,1.5,4,1,104,77777,9,999999999,6,0.056,0,88,0,0,1 +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,31951,28210,13469,4586,210,6.7,8,3,112,77777,9,999999999,6,0.056,0,88,0,0,1 +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,59297,50302,14254,5433,240,6.2,6,2,112,77777,9,999999999,6,0.056,0,88,0,0,1 +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,14,83000,859,1391,322,276,313,83,34426,19716,10381,4224,290,2.6,8,5,96,6096,9,999999999,6,0.056,0,88,0,0,1 +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,63226,37603,26597,10243,220,2.1,10,6,96,6096,9,999999999,6,0.056,0,88,0,0,1 +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,70128,43651,27302,10517,270,2.1,10,6,96,6096,9,999999999,7,0.056,0,88,0,0,1 +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,45728,24742,20401,8040,270,4.1,10,6,96,6096,9,999999999,7,0.056,0,88,0,0,1 +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,45416,18160,33847,10827,310,5.2,10,9,96,6096,9,999999999,7,0.056,0,88,0,0,1 +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,26282,10381,20002,6558,340,2.1,10,9,96,6096,9,999999999,7,0.056,0,88,0,0,1 +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,17226,7138,13930,3847,230,3.6,10,9,80,6096,9,999999999,7,0.056,0,88,0,0,1 +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,3571,0,3148,831,250,7.2,10,9,48,6096,9,999999999,7,0.056,0,88,0,0,1 +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,6096,9,999999999,8,0.056,0,88,0,0,1 +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,-5,24,82400,0,0,349,0,0,0,0,0,0,0,220,5.2,10,10,32,6096,9,999999999,8,0.056,0,88,0,0,1 +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,-4.4,25,82400,0,0,349,0,0,0,0,0,0,0,220,8.8,10,10,48,4267,9,999999999,8,0.056,0,88,0,0,1 +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,4267,9,999999999,8,0.056,0,88,0,0,1 +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,4267,9,999999999,8,0.056,0,88,0,0,1 +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,4267,9,999999999,9,0.056,0,88,0,0,1 +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,3962,9,999999999,9,0.057,0,88,0,0,1 +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,3962,9,999999999,9,0.057,0,88,0,0,1 +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,7620,9,999999999,9,0.057,0,88,0,0,1 +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,7620,9,999999999,9,0.057,0,88,0,0,1 +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,3962,9,999999999,9,0.057,0,88,0,0,1 +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,3962,9,999999999,9,0.057,0,88,0,0,1 +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,43,81900,36,753,341,4,0,4,0,0,0,0,210,7.2,10,10,112,2438,9,999999999,9,0.057,0,88,0,0,1 +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,4916,0,4952,1843,230,6.7,10,10,32,2591,9,999999999,9,0.057,0,88,0,0.3,1 +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,10851,0,10937,4325,260,4.1,10,10,32,2438,9,999999999,9,0.057,0,88,0,0,1 +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,18162,4787,13580,5228,60,5.7,10,9,64,1372,9,999999999,9,0.057,0,88,0,0,1 +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,25162,0,25390,10338,50,4.6,10,10,40,3048,9,999999999,9,0.057,0,88,0,0,1 +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,22341,0,22548,9896,50,5.7,10,10,48,2591,9,999999999,9,0.057,0,88,0,0,1 +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,46435,13698,34022,12518,70,3.1,10,9,48,2591,9,999999999,9,0.057,0,88,0,0,1 +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,21127,0,21320,9274,360,7.7,10,10,9.6,671,9,999999999,9,0.057,0,88,0,2.3,1 +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,96,82200,775,1390,289,144,0,144,14772,0,14901,6555,360,5.2,10,10,0.8,305,9,999999999,9,0.057,0,88,0,2.5,1 +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,12827,0,12933,5221,80,1.5,10,10,16,1128,9,999999999,9,0.057,0,88,0,0,1 +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,6935,0,6987,2657,160,3.1,10,10,16,1250,9,999999999,9,0.057,0,88,0,0,1 +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,1453,0,1463,533,210,2.6,10,10,16,1219,9,999999999,9,0.057,0,88,0,0,1 +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,3048,9,999999999,9,0.057,0,88,0,0,1 +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,3048,9,999999999,9,0.057,0,88,0,0,1 +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,3658,9,999999999,9,0.057,0,88,0,0,1 +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,3658,9,999999999,8,0.057,0,88,0,0,1 +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,1676,9,999999999,8,0.057,0,88,0,0,1 +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,2438,9,999999999,8,0.057,0,88,0,0,1 +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,10,10,32,2438,9,999999999,8,0.058,0,88,0,0,1 +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,2438,9,999999999,8,0.058,0,88,0,0,1 +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,2438,9,999999999,8,0.058,0,88,0,0,1 +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,7620,9,999999999,8,0.058,0,88,0,0,1 +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,-5.6,62,82600,0,0,254,0,0,0,0,0,0,0,70,1.5,6,3,32,77777,9,999999999,8,0.058,0,88,0,0,1 +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,6,6,32,3353,9,999999999,8,0.058,0,88,0,0,1 +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,72,82700,40,776,264,10,20,9,0,0,0,0,80,1.5,8,8,64,1829,9,999999999,8,0.058,0,88,0,0,1 +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,7413,584,6872,2157,90,5.2,10,9,96,1524,9,999999999,8,0.058,0,88,0,0,1 +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,19380,4651,16652,5436,120,3.1,10,9,16,1524,9,999999999,8,0.058,0,88,0,0,1 +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,83,83000,724,1389,263,267,88,221,30169,7345,25101,8655,220,4.1,10,9,80,1219,9,999999999,7,0.058,0,88,0,0,1 +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,65361,40454,34466,11945,230,3.6,8,5,96,1524,9,999999999,7,0.058,0,88,0,0,1 +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,70543,87081,10215,2032,220,4.6,1,1,96,77777,9,999999999,7,0.058,0,88,0,0,1 +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,79643,98997,9523,1976,320,3.1,1,1,96,77777,9,999999999,7,0.058,0,88,0,0,1 +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,32,82900,908,1389,258,672,930,64,71166,93265,9211,1807,200,2.1,1,1,96,77777,9,999999999,7,0.058,0,88,0,0,1 +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,-14.4,20,82900,781,1389,258,513,696,121,61471,47830,14551,5693,250,2.6,1,1,96,77777,9,999999999,7,0.058,0,88,0,0,1 +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,-10.6,28,82900,594,1389,265,390,743,72,46990,41971,8697,3284,170,2.6,2,2,96,77777,9,999999999,6,0.058,0,88,0,0,1 +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,23228,21035,8337,2759,160,5.7,3,3,96,77777,9,999999999,6,0.058,0,88,0,0,1 +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,4295,0,2871,812,170,5.7,5,4,80,77777,9,999999999,6,0.058,0,88,0,0,1 +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,7620,9,999999999,6,0.058,0,88,0,0,1 +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,-5.6,62,83100,0,0,260,0,0,0,0,0,0,0,130,1.5,7,6,32,7620,9,999999999,6,0.058,0,88,0,0,1 +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,7620,9,999999999,6,0.058,0,88,0,0,1 +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,7620,9,999999999,6,0.058,0,88,0,0,1 +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,7620,9,999999999,5,0.058,0,88,0,0,1 +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,1402,9,999999999,5,0.058,0,88,0,0,1 +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,76,83000,0,0,275,0,0,0,0,0,0,0,130,3.6,10,10,32,2743,9,999999999,5,0.059,0,88,0,0,1 +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,8,8,32,7620,9,999999999,5,0.059,0,88,0,0,1 +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,87,83000,0,0,248,0,0,0,0,0,0,0,290,3.6,7,6,32,7620,9,999999999,5,0.059,0,88,0,0,1 +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,2896,9,999999999,5,0.059,0,88,0,0,1 +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,7620,9,999999999,5,0.059,0,88,0,0,1 +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,7620,9,999999999,5,0.059,0,88,0,0,1 +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,1615,0,1296,328,40,2.1,7,5,64,7620,9,999999999,4,0.059,0,88,0,0,1 +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,91,83200,283,1389,253,113,155,81,12427,5702,8941,2631,120,1.5,8,8,24,1676,9,999999999,4,0.059,0,88,0,0,1 +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,36052,73468,6676,1103,60,3.1,2,0,48,77777,9,999999999,4,0.059,0,88,0,0,1 +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,60137,96773,7357,1352,0,0,0,0,48,77777,9,999999999,4,0.059,0,88,0,0,1 +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,69291,94493,8019,1606,290,2.1,1,1,96,77777,9,999999999,4,0.059,0,88,0,0,1 +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,77323,97294,8315,1791,290,3.6,1,1,96,77777,9,999999999,4,0.059,0,88,0,0,1 +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,83309,104014,8702,1875,190,3.1,0,0,96,77777,9,999999999,4,0.059,0,88,0,0,1 +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,-16.1,17,82900,914,1389,251,732,1024,58,77530,102530,8381,1711,250,5.2,0,0,96,77777,9,999999999,4,0.059,0,88,0,0,1 +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,-17.2,15,82900,786,1389,250,616,996,51,65429,98739,7573,1434,250,6.2,0,0,96,77777,9,999999999,4,0.059,0,88,0,0,1 +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,-18.3,14,82900,600,1389,249,447,938,42,47622,90302,6467,1144,300,6.2,0,0,96,77777,9,999999999,4,0.059,0,88,0,0,1 +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,26097,71409,4659,790,300,7.2,0,0,96,77777,9,999999999,4,0.059,0,88,0,0,1 +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,5534,27189,2320,314,300,7.2,0,0,80,77777,9,999999999,4,0.059,0,88,0,0,1 +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,25,83000,0,0,239,0,0,0,0,0,0,0,280,4.1,0,0,48,77777,9,999999999,3,0.059,0,88,0,0,1 +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,77777,9,999999999,3,0.059,0,88,0,0,1 +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,77777,9,999999999,3,0.059,0,88,0,0,1 +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,7620,9,999999999,3,0.059,0,88,0,0,1 +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,77777,9,999999999,3,0.059,0,88,0,0,1 +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,77777,9,999999999,3,0.059,0,88,0,0,1 +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,77777,9,999999999,3,0.059,0,88,0,0,1 +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,25,83100,0,0,246,0,0,0,0,0,0,0,300,6.2,4,2,32,77777,9,999999999,3,0.059,0,88,0,0,1 +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,26,83100,0,0,241,0,0,0,0,0,0,0,320,5.2,3,1,32,77777,9,999999999,3,0.059,0,88,0,0,1 +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,-14.4,29,83200,0,0,235,0,0,0,0,0,0,0,300,3.1,1,0,32,77777,9,999999999,3,0.059,0,88,0,0,1 +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,-15,27,83300,0,0,235,0,0,0,0,0,0,0,320,6.2,0,0,32,77777,9,999999999,3,0.059,0,88,0,0,1 +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,26,83300,0,0,237,0,0,0,0,0,0,0,310,8.2,0,0,48,77777,9,999999999,3,0.059,0,88,0,0,1 +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,25,83400,48,844,239,17,140,9,1894,0,1005,286,310,6.2,0,0,80,77777,9,999999999,3,0.059,0,88,0,0,1 +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,22,83400,290,1388,245,170,631,38,19949,13530,4467,1512,350,4.6,0,0,112,77777,9,999999999,3,0.059,0,88,0,0,1 +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,39888,78746,8708,1221,320,5.2,0,0,96,77777,9,999999999,3,0.059,0,88,0,0,1 +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,-15.6,18,83500,737,1388,252,564,925,72,59303,91008,10571,1620,290,5.2,0,0,96,77777,9,999999999,3,0.059,0,88,0,0,1 +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,73568,96734,11812,2000,320,5.7,0,0,96,77777,9,999999999,3,0.059,0,88,0,0,1 +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,80672,52476,15328,6306,300,4.1,2,2,96,77777,9,999999999,3,0.059,0,88,0,0,1 +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,72547,45516,17412,7129,300,11.3,4,4,96,77777,9,999999999,3,0.059,0,88,0,0,1 +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,85131,58765,13159,5392,300,12.4,2,2,80,77777,9,999999999,3,0.059,0,88,0,0,1 +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,63573,49750,16582,6433,300,11.3,3,3,80,77777,9,999999999,3,0.059,0,88,0,0,1 +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,49782,45976,10392,3893,310,7.7,2,2,96,77777,9,999999999,3,0.059,0,88,0,0,1 +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,21161,18111,6877,2360,290,10.3,3,3,80,77777,9,999999999,3,0.059,0,88,0,0,1 +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,4694,0,2688,794,300,8.2,2,2,64,77777,9,999999999,3,0.059,0,88,0,0,1 +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,77777,9,999999999,3,0.059,0,88,0,0,1 +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,77777,9,999999999,3,0.059,0,88,0,0,1 +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,77777,9,999999999,3,0.059,0,88,0,0,1 +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,-12.2,35,84100,0,0,237,0,0,0,0,0,0,0,230,1.5,0,0,32,77777,9,999999999,3,0.059,0,88,0,0,1 +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,77777,9,999999999,3,0.059,0,88,0,0,1 +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,77777,9,999999999,3,0.059,0,88,0,0,1 +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,77777,9,999999999,3,0.06,0,88,0,0,1 +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,77777,9,999999999,3,0.06,0,88,0,0,1 +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,77777,9,999999999,3,0.06,0,88,0,0,1 +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,77777,9,999999999,3,0.06,0,88,0,0,1 +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,37,84200,0,0,222,0,0,0,0,0,0,0,200,3.6,0,0,32,77777,9,999999999,3,0.06,0,88,0,0,1 +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,77777,9,999999999,3,0.06,0,88,0,0,1 +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,2247,0,1013,295,180,5.2,0,0,80,77777,9,999999999,3,0.06,0,88,0,0,1 +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,19194,56671,5441,749,210,4.6,0,0,112,77777,9,999999999,3,0.06,0,88,0,0,1 +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,41146,82137,7829,1197,190,6.2,0,0,112,77777,9,999999999,3,0.06,0,88,0,0,1 +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,60503,93546,9445,1566,180,5.7,0,0,112,77777,9,999999999,3,0.06,0,88,0,0,1 +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,8,84100,892,1387,268,710,990,73,74587,98742,10449,1911,180,5.2,0,0,112,77777,9,999999999,3,0.06,0,88,0,0,1 +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,82403,100952,10968,2175,170,6.2,0,0,112,77777,9,999999999,3,0.06,0,88,0,0,1 +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,-18.9,7,83800,986,1387,286,796,1010,79,83460,101241,11079,2223,190,5.2,0,0,112,77777,9,999999999,3,0.06,0,88,0,0,1 +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,77706,99561,10660,2009,170,6.7,0,0,112,77777,9,999999999,4,0.06,0,88,0,0,1 +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,-18.3,7,83700,797,1387,287,601,922,71,63192,91288,10336,1715,160,6.7,1,0,112,77777,9,999999999,4,0.06,0,88,0,0,1 +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,46895,82749,10053,1380,170,8.8,3,0,112,77777,9,999999999,4,0.06,0,88,0,0,1 +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,28831,25868,5251,1849,170,8.8,2,0,112,77777,9,999999999,4,0.06,0,88,0,0,1 +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,5206,0,3109,896,160,7.7,6,1,96,77777,9,999999999,4,0.06,0,88,0,0,1 +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,14,83500,0,0,278,0,0,0,0,0,0,0,170,8.2,2,2,48,77777,9,999999999,4,0.06,0,88,0,0,1 +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,15,83500,0,0,276,0,0,0,0,0,0,0,170,6.2,3,3,32,77777,9,999999999,4,0.06,0,88,0,0,1 +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,77777,9,999999999,4,0.06,0,88,0,0,1 +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,77777,9,999999999,4,0.06,0,88,0,0,1 +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,77777,9,999999999,4,0.06,0,88,0,0,1 +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,77777,9,999999999,4,0.06,0,88,0,0,1 +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,77777,9,999999999,5,0.061,0,88,0,0,1 +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,77777,9,999999999,5,0.061,0,88,0,0,1 +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,77777,9,999999999,5,0.061,0,88,0,0,1 +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,77777,9,999999999,5,0.061,0,88,0,0,1 +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,77777,9,999999999,5,0.061,0,88,0,0,1 +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,7620,9,999999999,5,0.061,0,88,0,0,1 +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,1660,0,1331,374,190,4.6,8,5,80,7620,9,999999999,5,0.061,0,88,0,0,1 +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,14777,6968,11348,3152,180,4.6,7,4,96,7620,9,999999999,5,0.061,0,88,0,0,1 +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,39420,36752,13072,4622,200,4.1,8,3,112,77777,9,999999999,5,0.061,0,88,0,0,1 +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,58648,46958,16349,6251,190,4.1,7,2,112,77777,9,999999999,6,0.061,0,88,0,0,1 +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,77563,55878,23936,9232,180,4.6,8,3,112,77777,9,999999999,6,0.061,0,88,0,0,1 +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,79439,93137,14507,2473,260,5.2,4,1,112,77777,9,999999999,6,0.061,0,88,0,0,1 +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,87986,56219,15833,6539,260,7.7,4,1,112,77777,9,999999999,6,0.061,0,88,0,0,1 +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,76010,51508,21629,8572,280,6.7,7,2,96,77777,9,999999999,6,0.061,0,88,0,0,1 +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,62094,46696,20753,7854,240,4.6,8,3,96,77777,9,999999999,6,0.061,0,88,0,0,1 +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,46745,42107,14438,5241,280,4.6,7,2,96,77777,9,999999999,6,0.061,0,88,0,0,1 +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,22127,19116,9335,3082,260,5.7,8,3,96,77777,9,999999999,6,0.061,0,88,0,0,1 +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,-6.1,21,82800,122,1352,319,41,72,34,4478,0,3725,1029,270,5.7,9,5,96,7620,9,999999999,7,0.061,0,88,0,0,1 +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,77777,9,999999999,7,0.061,0,88,0,0,1 +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,77777,9,999999999,7,0.061,0,88,0,0,1 +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,77777,9,999999999,7,0.061,0,88,0,0,1 +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,77777,9,999999999,7,0.061,0,88,0,0,1 +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,77777,9,999999999,7,0.061,0,88,0,0,1 +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,77777,9,999999999,7,0.061,0,88,0,0,1 +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,77777,9,999999999,8,0.062,0,88,0,0,1 +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,77777,9,999999999,8,0.062,0,88,0,0,1 +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,77777,9,999999999,8,0.062,0,88,0,0,1 +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,77777,9,999999999,8,0.062,0,88,0,0,1 +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,77777,9,999999999,8,0.062,0,88,0,0,1 +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,77777,9,999999999,8,0.062,0,88,0,0,1 +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,2005,0,1339,386,120,2.6,6,2,96,77777,9,999999999,8,0.062,0,88,0,0,1 +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,18547,53622,4985,755,180,4.6,3,1,96,77777,9,999999999,8,0.062,0,88,0,0,1 +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,42940,86038,6361,1100,190,6.2,0,0,112,77777,9,999999999,7,0.062,0,88,0,0,1 +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,23,82300,758,1386,310,528,857,59,56196,85138,8735,1527,160,3.6,3,1,112,77777,9,999999999,7,0.062,0,88,0,0,1 +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,69922,91365,9353,1823,190,3.6,2,1,112,77777,9,999999999,7,0.062,0,88,0,0,1 +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,21,82100,987,1386,325,685,695,190,81826,52363,22803,9139,280,2.1,5,4,104,77777,9,999999999,7,0.062,0,88,0,0,1 +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,62212,29632,34311,12810,190,4.1,9,9,96,2743,9,999999999,7,0.062,0,88,0,0,1 +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,82800,57240,21422,8519,250,2.1,5,5,96,77777,9,999999999,7,0.062,0,88,0,0,1 +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,35791,21018,13832,5490,210,8.8,7,7,96,2896,9,999999999,7,0.062,0,88,0,0,1 +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,15,81800,620,1386,328,329,135,269,35878,12835,29505,8496,230,6.2,9,8,96,2743,9,999999999,6,0.062,0,88,0,0,1 +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,16,81700,387,1386,330,131,129,95,14716,6639,10710,3444,190,6.2,9,9,96,4267,9,999999999,6,0.062,0,88,0,0,1 +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,2726,0,2744,922,210,7.2,10,10,64,4267,9,999999999,6,0.062,0,88,0,0,1 +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,2743,9,999999999,6,0.062,0,88,0,0,1 +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,76,82100,0,0,303,0,0,0,0,0,0,0,340,7.7,10,10,24,1067,9,999999999,6,0.062,0,88,0,0,1 +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,82,82200,0,0,299,0,0,0,0,0,0,0,350,6.2,10,10,24,823,9,999999999,6,0.062,0,88,0,0,1 +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,1981,9,999999999,5,0.062,0,88,0,0,1 +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,1981,9,999999999,5,0.062,0,88,0,0,1 +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,79,82400,0,0,301,0,0,0,0,0,0,0,10,8.2,10,10,32,1036,9,999999999,5,0.062,0,88,0,0,1 +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,1067,9,999999999,5,0.062,0,88,0,0,1 +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,1829,9,999999999,5,0.062,0,88,0,0,1 +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,77777,9,999999999,5,0.062,0,88,0,0,1 +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,-5.6,62,82700,0,0,251,0,0,0,0,0,0,0,360,4.1,2,2,32,77777,9,999999999,5,0.062,0,88,0,0,1 +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,77777,9,999999999,4,0.062,0,88,0,0,1 +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,77777,9,999999999,4,0.062,0,88,0,0,1 +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,2218,0,1556,444,360,4.1,1,1,96,77777,9,999999999,4,0.062,0,88,0,0,1 +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,19319,15549,6763,2232,350,5.2,1,1,112,77777,9,999999999,4,0.062,0,88,0,0,1 +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,45126,41869,9527,3530,350,5.2,0,0,112,77777,9,999999999,4,0.062,0,88,0,0,1 +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,26,83100,764,1385,266,565,840,101,68449,54607,12275,4840,310,4.6,0,0,96,77777,9,999999999,4,0.062,0,88,0,0,1 +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,86226,60385,14174,5785,310,4.6,0,0,96,77777,9,999999999,4,0.062,0,88,0,0,1 +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,96413,62618,15154,6272,10,6.7,0,0,96,77777,9,999999999,4,0.062,0,88,0,0,1 +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,97746,63000,15294,6338,360,5.2,0,0,96,77777,9,999999999,4,0.062,0,88,0,0,1 +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,14,83000,942,1385,269,722,872,129,88349,60792,15845,6474,350,6.2,2,0,96,77777,9,999999999,4,0.062,0,88,0,0,1 +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,14,83000,813,1385,274,573,720,149,67970,52529,17747,6897,20,6.7,8,1,96,77777,9,999999999,4,0.062,0,88,0,0,1 +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,41788,35141,15340,5546,50,4.6,7,2,88,77777,9,999999999,4,0.062,0,88,0,0,1 +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,18837,11449,12794,3925,60,6.2,10,5,96,4877,9,999999999,4,0.062,0,88,0,0,1 +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,0,3853,1083,90,5.2,10,5,96,4572,9,999999999,4,0.062,0,88,0,0,1 +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,77777,9,999999999,4,0.062,0,88,0,0,1 +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,7620,9,999999999,4,0.062,0,88,0,0,1 +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,4267,9,999999999,4,0.062,0,88,0,0,1 +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,-8.9,47,83400,0,0,253,0,0,0,0,0,0,0,160,2.1,6,4,32,4267,9,999999999,4,0.062,0,88,0,0,1 +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,-8.9,47,83400,0,0,251,0,0,0,0,0,0,0,190,2.6,5,3,32,77777,9,999999999,4,0.062,0,88,0,0,1 +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,77777,9,999999999,4,0.062,0,88,0,0,1 +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,77777,9,999999999,4,0.063,0,88,0,0,1 +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,77777,9,999999999,4,0.063,0,88,0,0,1 +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,77777,9,999999999,4,0.063,0,88,0,0,1 +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,77777,9,999999999,4,0.063,0,88,0,0,1 +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,77777,9,999999999,4,0.063,0,88,0,0,1 +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,77777,9,999999999,4,0.063,0,88,0,0,1 +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,3036,0,1465,432,200,2.6,0,0,96,77777,9,999999999,4,0.063,0,88,0,0,1 +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,23123,18074,4846,1669,0,0,0,0,96,77777,9,999999999,4,0.063,0,88,0,0,1 +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,42687,80067,8960,1287,300,2.1,0,0,96,77777,9,999999999,4,0.063,0,88,0,0,1 +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,61814,90947,10929,1703,360,3.6,0,0,96,77777,9,999999999,4,0.063,0,88,0,0,1 +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,75759,96183,12010,2109,330,3.6,0,0,96,77777,9,999999999,4,0.063,0,88,0,0,1 +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,81087,94726,13019,2468,90,4.6,1,0,104,77777,9,999999999,4,0.063,0,88,0,0,1 +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,80823,94024,12344,2449,60,4.6,1,1,96,77777,9,999999999,4,0.063,0,88,0,0,1 +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,73298,87739,14191,2328,60,3.1,1,1,96,77777,9,999999999,4,0.063,0,88,0,0,1 +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,62962,46347,13973,5561,60,3.6,2,1,96,77777,9,999999999,4,0.063,0,88,0,0,1 +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,48256,43166,15138,5504,100,3.1,3,1,80,77777,9,999999999,4,0.063,0,88,0,0,1 +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,27538,24811,6159,2171,100,4.1,2,1,64,77777,9,999999999,4,0.063,0,88,0,0,1 +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,5944,0,3864,1100,90,5.7,5,3,64,77777,9,999999999,4,0.063,0,88,0,0,1 +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,77777,9,999999999,4,0.063,0,88,0,0,1 +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,7010,9,999999999,4,0.063,0,88,0,0,1 +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,7010,9,999999999,4,0.063,0,88,0,0,1 +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,7010,9,999999999,4,0.063,0,88,0,0,1 +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,77777,9,999999999,4,0.063,0,88,0,0,1 +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,77777,9,999999999,4,0.063,0,88,0,0,1 +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,10,8,32,6096,9,999999999,4,0.064,0,88,0,0,1 +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,38,83100,0,0,283,0,0,0,0,0,0,0,170,1.5,10,10,32,3048,9,999999999,4,0.064,0,88,0,0,1 +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,-7.8,52,83000,0,0,279,0,0,0,0,0,0,0,350,3.6,10,10,32,2438,9,999999999,5,0.064,0,88,0,0,1 +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,2134,9,999999999,5,0.064,0,88,0,0,1 +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,2134,9,999999999,5,0.064,0,88,0,0,1 +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,9,7,48,2134,9,999999999,5,0.064,0,88,0,0,1 +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,1356,0,1365,468,10,2.1,10,10,80,6096,9,999999999,5,0.064,0,88,0,0,1 +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,7725,1454,6473,2177,360,2.6,10,9,64,6706,9,999999999,5,0.064,0,88,0,0,1 +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,14561,0,14679,5673,340,4.1,10,10,64,6706,9,999999999,5,0.064,0,88,0,0,1 +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,41611,10304,35165,11186,330,2.6,10,9,64,6706,9,999999999,5,0.064,0,88,0,0,1 +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,40867,14198,27622,10502,250,1.5,10,9,64,6706,9,999999999,5,0.064,0,88,0,0,1 +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,26,82600,1005,1383,285,551,227,386,62486,22493,44060,15228,180,6.7,9,7,32,6706,9,999999999,5,0.064,0,88,0,0,1 +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,61328,14662,50102,16442,150,8.8,10,8,48,7620,9,999999999,5,0.064,0,88,0,0,1 +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,70396,41406,33782,12404,160,9.8,10,7,32,6096,9,999999999,5,0.064,0,88,0,0,1 +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,46028,17952,33279,11293,150,8.2,9,8,40,5486,9,999999999,5,0.064,0,88,0,0,1 +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,30897,14027,22016,7364,170,7.7,10,5,48,5486,9,999999999,5,0.064,0,88,0,0,1 +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,18080,4954,15866,4524,160,8.8,10,8,56,4877,9,999999999,5,0.064,0,88,0,0,1 +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,5589,1,5178,1331,160,9.3,10,7,64,4877,9,999999999,6,0.064,0,88,0,0,1 +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,4572,9,999999999,6,0.064,0,88,0,0,1 +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,77777,9,999999999,6,0.064,0,88,0,0,1 +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,77777,9,999999999,6,0.064,0,88,0,0,1 +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,-4.4,69,82700,0,0,253,0,0,0,0,0,0,0,210,4.1,7,2,32,77777,9,999999999,6,0.064,0,88,0,0,1 +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,-4.4,69,82700,0,0,261,0,0,0,0,0,0,0,190,4.6,8,6,32,1829,9,999999999,6,0.064,0,88,0,0,1 +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,4877,9,999999999,6,0.064,0,88,0,0,1 +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,-4.4,69,82700,0,0,282,0,0,0,0,0,0,0,250,3.6,10,10,24,701,9,999999999,6,0.065,0,88,0,0,1 +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,640,9,999999999,6,0.065,0,88,0,0,1 +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,610,9,999999999,6,0.065,0,88,0,0,1 +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,610,9,999999999,6,0.065,0,88,0,0,1 +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,640,9,999999999,6,0.065,0,88,0,0,1 +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,3048,9,999999999,6,0.065,0,88,0,0,1 +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,1259,0,1267,451,80,2.1,10,10,8,671,9,999999999,6,0.065,0,88,0,0,1 +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,6837,0,6888,2582,40,1.5,10,10,8,792,9,999999999,6,0.065,0,88,0,0,1 +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,12941,0,13047,5240,350,2.6,10,10,8,427,9,999999999,6,0.065,0,88,0,0,1 +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,18196,0,18355,7777,330,2.1,10,10,9.6,427,9,999999999,6,0.065,0,88,0,0,1 +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,22159,0,22361,9759,10,3.6,10,10,9.6,792,9,999999999,6,0.065,0,88,0,0,1 +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,51950,15549,37813,13843,360,2.1,9,9,11.2,792,9,999999999,6,0.065,0,88,0,0,1 +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,48,82800,1021,1383,292,288,27,267,33687,2263,31405,12090,80,2.6,9,9,11.2,2438,9,999999999,6,0.065,0,88,0,0,1 +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,44,82700,958,1383,291,393,280,198,46614,21467,23598,9341,50,2.1,8,8,11.2,2438,9,999999999,6,0.065,0,88,0,0,1 +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,44,82700,829,1383,286,472,326,277,53392,29245,31512,10957,340,4.1,10,7,11.2,6706,9,999999999,6,0.065,0,88,0,0,1 +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,41,82700,640,1383,287,282,244,169,32066,18313,19304,6735,340,4.6,10,6,11.2,6096,9,999999999,6,0.065,0,88,0,0,1 +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,-5.6,44,82800,407,1383,280,142,176,90,16101,8901,10240,3398,330,3.6,10,6,11.2,6096,9,999999999,6,0.065,0,88,0,0,1 +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,5768,0,3782,1109,320,3.6,8,4,11.2,77777,9,999999999,6,0.065,0,88,0,0,1 +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,6096,9,999999999,6,0.065,0,88,0,0,1 +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,77777,9,999999999,6,0.065,0,88,0,0,1 +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,2591,9,999999999,6,0.065,0,88,0,0,1 +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,77777,9,999999999,6,0.065,0,88,0,0,1 +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,19.2,77777,9,999999999,6,0.065,0,88,0,0,1 +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,6,0.065,0,88,0,0,1 +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,6,0.065,0,88,0,0,1 +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,6,0.065,0,88,0,0,1 +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,2438,9,999999999,6,0.065,0,88,0,0,1 +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,183,9,999999999,6,0.065,0,88,0,0,1 +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,183,9,999999999,6,0.065,0,88,0,0,1 +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,183,9,999999999,6,0.065,0,88,0,0,1 +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,969,0,975,369,40,2.1,10,10,4.8,152,9,999999999,6,0.065,0,88,0,0,1 +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,4164,0,4195,1736,60,1.5,10,10,4.8,244,9,999999999,6,0.065,0,88,0,0,1 +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,9005,0,9079,3938,120,3.6,10,10,4.8,244,9,999999999,6,0.065,0,88,0,0,1 +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,13680,0,13800,6213,0,0,10,10,4.8,244,9,999999999,6,0.065,0,88,0,0,1 +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,20503,0,20691,9214,0,0,10,10,6.4,427,9,999999999,6,0.065,0,88,0,0,1 +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,22835,0,23049,10344,100,1.5,10,10,9.6,488,9,999999999,6,0.065,0,88,0,0,1 +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,23061,0,23278,10457,30,2.6,10,10,9.6,610,9,999999999,6,0.065,0,88,0,0,1 +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,21277,0,21474,9591,10,3.6,10,10,11.2,610,9,999999999,6,0.065,0,88,0,0,1 +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,17546,0,17702,7766,360,4.1,10,10,11.2,610,9,999999999,6,0.065,0,88,0,0,1 +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,12298,0,12401,5261,20,3.1,10,10,11.2,671,9,999999999,6,0.065,0,88,0,0,1 +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,12808,4921,9407,3187,350,3.1,10,6,11.2,6096,9,999999999,6,0.065,0,88,0,0,1 +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,5697,61,5502,1423,20,3.1,10,6,11.2,6096,9,999999999,6,0.065,0,88,0,0,1 +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,6,0.065,0,88,0,0,1 +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,77777,9,999999999,6,0.065,0,88,0,0,1 +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,6,0.065,0,88,0,0,1 +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,2,2,11.2,77777,9,999999999,6,0.065,0,88,0,0,1 +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,6,0.065,0,88,0,0,1 +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,6,0.065,0,88,0,0,1 +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,6,0.066,0,88,0,0,1 +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,6,0.066,0,88,0,0,1 +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,6,0.066,0,88,0,0,1 +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,6,0.066,0,88,0,0,1 +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,77777,9,999999999,6,0.066,0,88,0,0,1 +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,77777,9,999999999,6,0.066,0,88,0,0,1 +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,4370,19675,2313,271,140,1.5,0,0,48,77777,9,999999999,6,0.066,0,88,0,0,1 +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,58,83500,354,1381,250,225,748,33,24117,65503,5276,827,170,2.1,1,0,80,77777,9,999999999,6,0.066,0,88,0,0,1 +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,45684,84653,7778,1263,220,1.5,1,0,80,77777,9,999999999,6,0.066,0,88,0,0,1 +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,65308,95682,8813,1592,290,4.1,0,0,80,77777,9,999999999,5,0.066,0,88,0,0,1 +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,69115,85846,10088,2002,240,2.6,1,0,80,77777,9,999999999,5,0.066,0,88,0,0,1 +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,85169,99510,10737,2324,280,3.6,1,0,112,77777,9,999999999,5,0.066,0,88,0,0,1 +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,87552,102200,10063,2259,80,2.6,0,0,96,77777,9,999999999,5,0.066,0,88,0,0,1 +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,81633,100833,9775,2028,340,3.1,0,0,96,77777,9,999999999,5,0.066,0,88,0,0,1 +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,63431,87222,10127,1782,250,2.6,2,1,96,77777,9,999999999,5,0.066,0,88,0,0,1 +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,44588,37306,14880,5488,20,3.1,8,4,96,7620,9,999999999,5,0.066,0,88,0,0,1 +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,20516,13354,12873,4071,120,5.7,7,4,96,7620,9,999999999,5,0.066,0,88,0,0,1 +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,-7.8,26,83400,155,1381,279,74,446,24,8494,0,2760,872,120,5.7,3,0,64,77777,9,999999999,5,0.066,0,88,0,0,1 +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,77777,9,999999999,5,0.066,0,88,0,0,1 +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,77777,9,999999999,5,0.066,0,88,0,0,1 +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,44,83500,0,0,265,0,0,0,0,0,0,0,170,4.1,0,0,48,77777,9,999999999,5,0.066,0,88,0,0,1 +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,77777,9,999999999,5,0.066,0,88,0,0,1 +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,77777,9,999999999,4,0.066,0,88,0,0,1 +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,77777,9,999999999,4,0.066,0,88,0,0,1 +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,77777,9,999999999,4,0.067,0,88,0,0,1 +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,77777,9,999999999,4,0.067,0,88,0,0,1 +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,77777,9,999999999,4,0.067,0,88,0,0,1 +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,77777,9,999999999,4,0.067,0,88,0,0,1 +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,77777,9,999999999,4,0.067,0,88,0,0,1 +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,49,83400,0,0,233,0,0,0,0,0,0,0,140,3.1,0,0,64,77777,9,999999999,4,0.067,0,88,0,0,1 +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,41,83500,99,1208,242,43,321,17,4886,0,1935,589,170,1.5,0,0,80,77777,9,999999999,4,0.067,0,88,0,0,1 +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,24600,64428,6027,875,0,0,0,0,96,77777,9,999999999,4,0.067,0,88,0,0,1 +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,46820,85364,8344,1309,0,0,0,0,96,77777,9,999999999,4,0.067,0,88,0,0,1 +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,62369,88671,10320,1734,240,2.6,1,0,96,77777,9,999999999,4,0.067,0,88,0,0,1 +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,78458,50825,13224,5459,270,2.6,1,1,96,77777,9,999999999,4,0.067,0,88,0,0,1 +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,87369,101333,11249,2416,270,2.6,0,0,96,77777,9,999999999,4,0.067,0,88,0,0,1 +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,86791,99210,11885,2530,290,2.6,1,0,96,77777,9,999999999,4,0.067,0,88,0,0,1 +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,91274,59363,14312,5921,360,3.1,2,0,96,77777,9,999999999,4,0.067,0,88,0,0,1 +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,69740,96270,10122,1791,110,7.7,0,0,80,77777,9,999999999,4,0.067,0,88,0,0,1 +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,-8.3,18,83400,655,1380,298,483,888,61,51175,86695,9144,1423,100,8.8,1,0,80,77777,9,999999999,4,0.067,0,88,0,0,1 +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,29799,70859,6596,983,110,7.7,0,0,64,77777,9,999999999,4,0.067,0,88,0,0,1 +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,8978,0,2767,879,100,5.7,0,0,48,77777,9,999999999,4,0.067,0,88,0,0,1 +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,77777,9,999999999,4,0.067,0,88,0,0,1 +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,77777,9,999999999,4,0.067,0,88,0,0,1 +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,77777,9,999999999,4,0.067,0,88,0,0,1 +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,77777,9,999999999,4,0.067,0,88,0,0,1 +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,77777,9,999999999,4,0.067,0,88,0,0,1 +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,77777,9,999999999,5,0.067,0,88,0,0,1 +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,-5.6,44,83500,0,0,262,0,0,0,0,0,0,0,170,6.2,0,0,32,77777,9,999999999,5,0.068,0,88,0,0,1 +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,77777,9,999999999,5,0.068,0,88,0,0,1 +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,-5.6,44,83300,0,0,262,0,0,0,0,0,0,0,180,7.7,0,0,32,77777,9,999999999,5,0.068,0,88,0,0,1 +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,77777,9,999999999,5,0.068,0,88,0,0,1 +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,77777,9,999999999,5,0.068,0,88,0,0,1 +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,1,0,80,77777,9,999999999,5,0.068,0,88,0,0,1 +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,4233,0,2568,753,0,0,1,0,80,77777,9,999999999,5,0.068,0,88,0,0,1 +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,24982,21912,6756,2324,330,1.5,1,0,80,77777,9,999999999,5,0.068,0,88,0,0,1 +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,51256,45101,9727,3683,340,2.1,0,0,64,77777,9,999999999,5,0.068,0,88,0,0,1 +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,-3.3,38,82900,811,1379,283,607,855,104,73899,55162,12703,5084,180,7.2,1,0,64,77777,9,999999999,5,0.068,0,88,0,0,1 +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,78246,92130,15486,2411,160,9.8,0,0,80,77777,9,999999999,5,0.068,0,88,0,0,1 +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,26,82500,1035,1379,295,817,923,124,85115,92982,16792,2882,160,11.8,1,0,64,77777,9,999999999,5,0.068,0,88,0,0,1 +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,85769,93142,16765,2937,160,11.8,1,0,48,77777,9,999999999,5,0.068,0,88,0,0,1 +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,-6.1,21,82100,979,1379,307,762,913,113,79544,91766,15541,2527,160,13.4,1,1,48,77777,9,999999999,5,0.068,0,88,0,0,1 +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,71542,50735,12557,5079,160,12.4,1,1,48,77777,9,999999999,5,0.068,0,88,0,0,1 +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,48396,40334,17357,6286,160,11.3,5,5,48,77777,9,999999999,5,0.068,0,88,0,0,1 +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,23285,19047,10078,3415,160,14.4,5,5,48,77777,9,999999999,5,0.068,0,88,0,0,1 +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,6708,0,3923,1185,160,13.4,3,1,48,77777,9,999999999,5,0.068,0,88,0,0,1 +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,77777,9,999999999,5,0.068,0,88,0,0,1 +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,9144,9,999999999,5,0.068,0,88,0,0,1 +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,7620,9,999999999,5,0.068,0,88,0,0,1 +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,3353,9,999999999,5,0.068,0,88,0,0,1 +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,2134,9,999999999,5,0.068,0,88,0,0,1 +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,2134,9,999999999,5,0.068,0,88,0,0,1 +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,2743,9,999999999,5,0.068,0,88,0,0,1 +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,22,81600,0,0,316,0,0,0,0,0,0,0,290,6.7,10,10,32,3048,9,999999999,5,0.068,0,88,0,0,1 +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,23,81600,0,0,305,0,0,0,0,0,0,0,310,7.7,10,9,32,3353,9,999999999,5,0.068,0,88,0,0,1 +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,23,81700,0,0,294,0,0,0,0,0,0,0,310,8.2,9,7,32,4572,9,999999999,5,0.068,0,88,0,0,1 +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,4267,9,999999999,5,0.068,0,88,0,0,1 +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,4267,9,999999999,5,0.068,0,88,0,0,1 +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,3309,0,3097,881,310,3.1,9,8,112,4267,9,999999999,5,0.068,0,88,0,0,1 +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,16911,11626,9223,3039,290,3.6,7,5,112,4572,9,999999999,5,0.068,0,88,0,0,1 +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,45870,40563,16812,5957,270,5.2,8,4,112,77777,9,999999999,5,0.068,0,88,0,0,1 +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,66658,50633,22676,8527,290,8.2,6,2,112,77777,9,999999999,5,0.068,0,88,0,0,1 +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,81868,54596,22092,8829,290,10.3,4,3,112,77777,9,999999999,5,0.068,0,88,0,0,1 +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,58377,30393,19747,8122,260,8.8,5,5,112,77777,9,999999999,5,0.068,0,88,0,0,1 +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,88755,95473,17876,3006,270,4.6,3,3,112,77777,9,999999999,5,0.068,0,88,0,0,1 +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,92303,59313,14337,5942,250,6.7,2,2,112,77777,9,999999999,5,0.068,0,88,0,0,1 +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,71227,98611,8733,1668,280,10.3,0,0,96,77777,9,999999999,5,0.068,0,88,0,0,1 +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,53155,91258,7561,1315,300,7.2,0,0,80,77777,9,999999999,5,0.068,0,88,0,0,1 +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,31397,75210,5692,936,300,8.8,0,0,64,77777,9,999999999,5,0.068,0,88,0,0,1 +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,9261,38041,3439,463,300,6.7,0,0,48,77777,9,999999999,5,0.068,0,88,0,0,1 +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,77777,9,999999999,5,0.068,0,88,0,0,1 +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,77777,9,999999999,5,0.068,0,88,0,0,1 +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,77777,9,999999999,5,0.068,0,88,0,0,1 +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,77777,9,999999999,5,0.068,0,88,0,0,1 +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,77777,9,999999999,5,0.068,0,88,0,0,1 +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,77777,9,999999999,5,0.068,0,88,0,0,1 +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,77777,9,999999999,5,0.069,0,88,0,0,1 +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,77777,9,999999999,5,0.069,0,88,0,0,1 +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,77777,9,999999999,5,0.069,0,88,0,0,1 +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,47,82300,0,0,246,0,0,0,0,0,0,0,140,2.6,6,3,32,77777,9,999999999,5,0.069,0,88,0,0,1 +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,-10.6,40,82300,0,0,253,0,0,0,0,0,0,0,190,1.5,7,5,32,7620,9,999999999,5,0.069,0,88,0,0,1 +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,-11.7,37,82300,0,0,248,0,0,0,0,0,0,0,170,1.5,10,3,80,77777,9,999999999,5,0.069,0,88,0,0,1 +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,-11.1,39,82300,119,1320,246,48,180,31,5278,0,3418,964,130,1.5,7,2,96,77777,9,999999999,5,0.069,0,88,0,0,1 +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,-11.1,27,82300,383,1378,256,247,753,38,26299,66881,6017,905,190,3.1,0,0,96,77777,9,999999999,5,0.069,0,88,0,0,1 +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,47539,83088,9178,1383,0,0,2,0,96,77777,9,999999999,5,0.069,0,88,0,0,1 +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,-11.1,19,82300,824,1378,287,461,485,171,54218,36661,20200,7769,40,2.1,8,3,96,77777,9,999999999,5,0.069,0,88,0,0,1 +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,83667,54254,16478,6767,130,6.2,7,2,96,77777,9,999999999,6,0.069,0,88,0,0,1 +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,88019,53582,25273,10160,130,7.2,9,3,96,77777,9,999999999,6,0.069,0,88,0,0,1 +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,89026,53256,33886,12984,130,6.2,10,5,96,77777,9,999999999,6,0.069,0,88,0,0,1 +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,18,81900,989,1378,329,224,0,224,23443,0,23660,10456,130,7.2,10,10,96,2591,9,999999999,6,0.069,0,88,0,0,1 +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,19879,0,20057,8674,90,5.2,10,10,80,2591,9,999999999,6,0.069,0,88,0,0,1 +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,14780,0,14905,6174,180,1.5,10,10,80,2743,9,999999999,6,0.069,0,88,0,0,1 +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,-5.6,31,81900,435,1378,315,90,0,89,8993,0,8962,3478,80,6.2,10,9,80,2743,9,999999999,7,0.069,0,88,0,0,1 +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,8279,1759,6476,1678,90,3.6,10,6,64,7620,9,999999999,7,0.069,0,88,0,0,1 +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,7620,9,999999999,7,0.069,0,88,0,0,1 +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,3353,9,999999999,7,0.069,0,88,0,0,1 +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,2438,9,999999999,7,0.069,0,88,0,0,1 +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,3658,9,999999999,7,0.069,0,88,0,0,1 +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,2896,9,999999999,8,0.069,0,88,0,0,1 +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,8,0.069,0,88,0,0,1 +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,82,82200,0,0,284,0,0,0,0,0,0,0,310,6.7,9,8,24,2438,9,999999999,8,0.07,0,88,0,0,1 +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,82,82200,0,0,299,0,0,0,0,0,0,0,330,6.2,10,10,11.2,244,9,999999999,8,0.07,0,88,0,0.5,1 +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,82,82200,0,0,299,0,0,0,0,0,0,0,360,5.7,10,10,19.2,335,9,999999999,8,0.07,0,88,0,0.5,1 +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,96,82300,0,0,289,0,0,0,0,0,0,0,340,4.6,10,10,4.8,366,9,999999999,9,0.07,0,88,0,0.5,1 +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,96,82300,0,0,289,0,0,0,0,0,0,0,310,3.6,10,10,8,122,9,999999999,9,0.07,0,88,0,0,1 +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,88,82400,0,0,294,0,0,0,0,0,0,0,20,2.1,10,10,32,244,9,999999999,8,0.07,0,88,0,0,1 +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,85,82400,126,1366,282,29,27,27,3234,0,3019,898,290,3.1,9,8,80,1829,9,999999999,8,0.07,0,88,0,0,1 +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,76,82400,390,1377,276,223,510,79,25415,22871,9032,3033,330,2.1,5,4,80,77777,9,999999999,8,0.07,0,88,0,0,1 +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,23407,8680,16938,6059,320,3.1,8,8,80,2896,9,999999999,8,0.07,0,88,0,0,1 +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,57792,38902,21935,8364,20,4.1,5,4,96,77777,9,999999999,8,0.07,0,88,0,0,1 +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,77477,46918,34210,12684,330,4.1,10,6,96,4267,9,999999999,7,0.07,0,88,0,0,1 +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,77212,36083,45462,15971,300,12.4,10,7,96,4267,9,999999999,7,0.07,0,88,0,0,1 +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,-10,21,82500,1059,1377,304,586,414,267,69024,34687,31625,12312,310,12.9,9,8,96,4267,9,999999999,7,0.07,0,88,0,0,1 +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,52139,24269,26082,10298,310,11.8,7,7,96,6706,9,999999999,7,0.07,0,88,0,0,1 +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,52314,20653,37614,12579,300,11.8,9,8,96,7620,9,999999999,7,0.07,0,88,0,0,1 +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,-11.1,19,82700,673,1377,294,379,307,229,42384,26580,25744,8469,300,13.4,7,6,96,7620,9,999999999,6,0.07,0,88,0,0,1 +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,19241,11043,12651,4128,290,7.7,8,6,80,7620,9,999999999,6,0.07,0,88,0,0,1 +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,6671,0,3853,1193,300,7.7,7,4,80,7620,9,999999999,6,0.07,0,88,0,0,1 +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,26,83000,4,241,277,0,10,0,0,0,0,0,260,3.6,5,3,64,77777,9,999999999,6,0.07,0,88,0,0,1 +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,77777,9,999999999,6,0.07,0,88,0,0,1 +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,77777,9,999999999,5,0.07,0,88,0,0,1 +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,28,83200,0,0,262,0,0,0,0,0,0,0,270,8.2,2,0,32,77777,9,999999999,5,0.07,0,88,0,0,1 +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,29,83200,0,0,260,0,0,0,0,0,0,0,270,6.2,1,0,32,77777,9,999999999,5,0.07,0,88,0,0,1 +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,77777,9,999999999,5,0.07,0,88,0,0,1 +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,77777,9,999999999,5,0.071,0,88,0,0,1 +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,-11.1,27,83400,0,0,256,0,0,0,0,0,0,0,270,6.2,0,0,32,77777,9,999999999,4,0.071,0,88,0,0,1 +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,31,83400,0,0,255,0,0,0,0,0,0,0,270,5.2,0,0,32,77777,9,999999999,4,0.071,0,88,0,0,1 +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,77777,9,999999999,4,0.071,0,88,0,0,1 +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,77777,9,999999999,4,0.071,0,88,0,0,1 +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,77777,9,999999999,4,0.071,0,88,0,0,1 +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,4846,0,3755,1072,210,4.1,7,2,96,77777,9,999999999,4,0.071,0,88,0,0,1 +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,19144,12819,11575,3699,210,4.6,5,3,96,77777,9,999999999,4,0.071,0,88,0,0,1 +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,43252,34588,19323,6738,160,4.1,7,5,96,9144,9,999999999,4,0.071,0,88,0,0,1 +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,-11.1,19,83700,837,1376,292,544,548,211,63077,44452,24587,9197,220,2.6,8,5,96,7620,9,999999999,4,0.071,0,88,0,0,1 +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,92179,61629,20142,8172,230,2.6,5,0,112,77777,9,999999999,4,0.071,0,88,0,0,1 +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,96032,59730,24881,10044,170,3.1,8,1,112,77777,9,999999999,4,0.071,0,88,0,0,1 +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,93114,56411,22993,9373,240,2.6,7,2,112,77777,9,999999999,4,0.071,0,88,0,0,1 +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,-11.7,13,83500,999,1376,307,703,624,250,82529,51972,29507,11426,110,2.6,9,3,112,77777,9,999999999,4,0.071,0,88,0,0,1 +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,61365,31441,39213,12930,150,2.1,9,5,96,9144,9,999999999,4,0.071,0,88,0,0,1 +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,45389,35221,19159,6882,130,3.6,9,4,96,77777,9,999999999,4,0.071,0,88,0,0,1 +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,28535,26188,13083,4251,110,4.1,6,2,96,77777,9,999999999,4,0.071,0,88,0,0,1 +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,5105,85,4897,1447,50,4.1,9,8,64,2743,9,999999999,4,0.071,0,88,0,0,1 +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,3353,9,999999999,4,0.071,0,88,0,0,1 +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,7620,9,999999999,4,0.071,0,88,0,0,1 +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,77777,9,999999999,4,0.071,0,88,0,0,1 +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,77777,9,999999999,4,0.071,0,88,0,0,1 +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,-7.8,36,83400,0,0,260,0,0,0,0,0,0,0,300,3.1,1,0,32,77777,9,999999999,4,0.071,0,88,0,0,1 +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,77777,9,999999999,4,0.071,0,88,0,0,1 +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,77777,9,999999999,4,0.071,0,88,0,0,1 +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,77777,9,999999999,4,0.071,0,88,0,0,1 +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,77777,9,999999999,4,0.071,0,88,0,0,1 +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,77777,9,999999999,4,0.071,0,88,0,0,1 +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,77777,9,999999999,4,0.071,0,88,0,0,1 +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,77777,9,999999999,4,0.071,0,88,0,0,1 +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,7133,30607,3276,394,160,2.6,0,0,112,77777,9,999999999,4,0.071,0,88,0,0,1 +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,28831,71398,6007,932,150,2.6,0,0,112,77777,9,999999999,5,0.071,0,88,0,0,1 +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,51258,89357,8012,1336,180,5.2,0,0,112,77777,9,999999999,5,0.071,0,88,0,0,1 +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,-10.6,14,83400,843,1375,296,663,976,64,70176,97460,9295,1717,170,4.6,0,0,112,77777,9,999999999,5,0.071,0,88,0,0,1 +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,83701,101274,10139,2135,110,3.6,0,0,112,77777,9,999999999,5,0.071,0,88,0,0,1 +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,91132,102939,10522,2469,340,2.6,0,0,112,77777,9,999999999,5,0.071,0,88,0,0,1 +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,-11.7,10,83100,1069,1375,316,871,1022,77,91643,103074,10640,2516,50,4.6,0,0,112,77777,9,999999999,5,0.071,0,88,0,0,1 +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,81368,95924,10767,2275,20,4.1,1,0,112,77777,9,999999999,5,0.071,0,88,0,0,1 +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,66424,86272,12094,2003,360,1.5,3,1,112,77777,9,999999999,5,0.071,0,88,0,0,1 +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,51304,82116,10510,1531,260,7.2,4,2,112,77777,9,999999999,5,0.071,0,88,0,0,1 +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,24871,16172,16694,5023,260,5.2,8,4,112,77777,9,999999999,5,0.071,0,88,0,0,1 +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,7988,1488,6826,1802,250,9.3,10,5,64,77777,9,999999999,5,0.071,0,88,0,0,1 +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,7620,9,999999999,5,0.071,0,88,0,0,1 +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,6706,9,999999999,5,0.071,0,88,0,0,1 +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,10,6,32,6706,9,999999999,5,0.071,0,88,0,0,1 +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,77777,9,999999999,5,0.071,0,88,0,0,1 +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,77777,9,999999999,5,0.071,0,88,0,0,1 +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,77777,9,999999999,5,0.071,0,88,0,0,1 +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,77777,9,999999999,5,0.072,0,88,0,0,1 +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,77777,9,999999999,5,0.072,0,88,0,0,1 +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,77777,9,999999999,5,0.072,0,88,0,0,1 +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,77777,9,999999999,5,0.072,0,88,0,0,1 +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,77777,9,999999999,5,0.072,0,88,0,0,1 +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,77777,9,999999999,5,0.072,0,88,0,0,1 +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,7714,0,2537,803,150,2.6,1,1,112,77777,9,999999999,5,0.072,0,88,0,0,1 +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,18576,13929,8033,2787,300,2.6,8,4,96,77777,9,999999999,5,0.072,0,88,0,0,1 +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,52040,46081,17998,6441,0,0,7,4,96,77777,9,999999999,5,0.072,0,88,0,0,1 +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,-10,15,82700,849,1375,312,567,638,173,66915,48158,20508,7963,190,2.6,9,4,96,77777,9,999999999,5,0.072,0,88,0,0,1 +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,12,82500,992,1375,329,728,786,161,88299,57070,19612,8001,210,5.2,10,5,96,77777,9,999999999,5,0.072,0,88,0,0,1 +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,-11.4,10,82400,1068,1375,335,787,719,228,94007,57118,27375,10942,240,6.7,10,5,96,77777,9,999999999,5,0.072,0,88,0,0,1 +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,71290,37113,28402,11304,180,6.2,10,7,96,7620,9,999999999,5,0.072,0,88,0,0,1 +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,-13.9,8,82300,1009,1375,344,684,322,447,76806,34244,50541,16515,240,6.2,10,8,96,7620,9,999999999,5,0.072,0,88,0,0,1 +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,49566,29293,20056,7890,210,7.7,10,7,96,7620,9,999999999,5,0.072,0,88,0,0,1 +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,-16.7,6,82200,687,1375,347,183,39,164,21095,2956,18988,6874,260,9.8,10,9,96,7620,9,999999999,5,0.072,0,88,0,0,1 +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,20834,13625,12388,4118,270,7.7,9,7,96,7620,9,999999999,5,0.072,0,88,0,0,1 +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,7469,810,6845,1830,260,4.6,10,8,96,7620,9,999999999,5,0.072,0,88,0,0,1 +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,9,82400,7,309,308,1,14,1,0,0,0,0,220,4.1,5,4,64,77777,9,999999999,5,0.072,0,88,0,0,1 +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,77777,9,999999999,5,0.072,0,88,0,0,1 +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,77777,9,999999999,5,0.072,0,88,0,0,1 +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,77777,9,999999999,5,0.072,0,88,0,0,1 +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,77777,9,999999999,5,0.072,0,88,0,0,1 +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,77777,9,999999999,5,0.072,0,88,0,0,1 +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,77777,9,999999999,5,0.073,0,88,0,0,1 +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,77777,9,999999999,5,0.073,0,88,0,0,1 +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,-6.1,30,82300,0,0,281,0,0,0,0,0,0,0,220,9.3,0,0,32,77777,9,999999999,5,0.073,0,88,0,0,1 +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,34,82400,0,0,279,0,0,0,0,0,0,0,230,6.7,0,0,32,77777,9,999999999,5,0.073,0,88,0,0,1 +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,77777,9,999999999,5,0.073,0,88,0,0,1 +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,77777,9,999999999,5,0.073,0,88,0,0,1 +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,37,82400,154,1374,275,69,367,28,7820,0,3180,985,240,3.1,0,0,96,77777,9,999999999,5,0.073,0,88,0,0,1 +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,31890,28699,6081,2175,210,8.2,0,0,80,77777,9,999999999,6,0.073,0,88,0,0,1 +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,50913,43567,15755,5804,220,6.7,3,3,96,77777,9,999999999,6,0.073,0,88,0,0,1 +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,75483,53451,12806,5190,210,8.2,1,1,96,77777,9,999999999,6,0.073,0,88,0,0,1 +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,-7.2,19,82200,997,1374,305,758,913,94,79502,91941,13012,2492,240,7.7,1,1,96,77777,9,999999999,6,0.073,0,88,0,0,1 +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,98810,59581,23575,9611,200,6.7,2,2,96,77777,9,999999999,6,0.073,0,88,0,0,1 +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,52976,18886,32154,12556,210,7.2,6,5,96,7620,9,999999999,6,0.073,0,88,0,0,1 +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,67226,30047,40335,14526,190,4.6,7,6,96,2438,9,999999999,6,0.073,0,88,0,0,1 +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,56748,34843,23681,9117,210,5.7,8,6,96,2438,9,999999999,6,0.073,0,88,0,0,1 +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,18383,0,18539,7380,50,5.2,10,10,64,3048,9,999999999,7,0.073,0,88,0,0,1 +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,8514,0,8580,3433,30,5.2,10,10,64,2591,9,999999999,7,0.073,0,88,0,0,1 +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,2740,0,2760,1053,310,5.2,10,10,64,2591,9,999999999,7,0.073,0,88,0,0,1 +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,1829,9,999999999,7,0.073,0,88,0,0,1 +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,2134,9,999999999,7,0.073,0,88,0,0,1 +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,1829,9,999999999,7,0.073,0,88,0,0,1 +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,76,81700,0,0,303,0,0,0,0,0,0,0,340,8.8,10,10,1.6,366,9,999999999,7,0.073,0,88,0,0,1 +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,96,81800,0,0,289,0,0,0,0,0,0,0,320,10.3,10,10,1.2,91,9,999999999,8,0.073,0,88,0,0,1 +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,96,81900,0,0,289,0,0,0,0,0,0,0,330,8.2,10,10,1.2,122,9,999999999,8,0.073,0,88,0,0,1 +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,152,9,999999999,8,0.074,0,88,0,0,1 +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.6,95,82000,0,0,286,0,0,0,0,0,0,0,10,10.8,10,10,32,305,9,999999999,8,0.074,0,88,0,0,1 +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,-2.2,83,82200,0,0,284,0,0,0,0,0,0,0,30,7.2,10,10,32,2438,9,999999999,8,0.074,0,88,0,0,1 +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,8,0.074,0,88,0,0,1 +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,-2.8,79,82500,0,0,284,0,0,0,0,0,0,0,0,0,10,10,32,1219,9,999999999,8,0.074,0,88,0,0,1 +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,6706,9,999999999,8,0.074,0,88,0,0,1 +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,3415,0,3439,1180,100,3.1,10,10,48,6706,9,999999999,8,0.074,0,88,0,0,1 +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,-3.3,76,82800,425,1373,275,175,42,162,19004,2998,17678,4999,160,4.1,10,9,64,6706,9,999999999,8,0.074,0,88,0,0,1 +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,42848,29613,22663,7741,170,4.1,7,7,96,6706,9,999999999,8,0.074,0,88,0,0,1 +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,65793,45021,17985,7138,190,3.1,3,3,96,77777,9,999999999,7,0.074,0,88,0,0,1 +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,78660,89037,14563,2630,170,3.6,1,1,96,77777,9,999999999,7,0.074,0,88,0,0,1 +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,87809,97743,9709,2409,300,7.7,1,1,96,77777,9,999999999,7,0.074,0,88,0,0,1 +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,-8.3,25,82700,1084,1373,287,822,939,80,86552,94891,10999,2656,350,6.2,2,2,96,77777,9,999999999,7,0.074,0,88,0,0,1 +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,91815,57609,20249,8290,70,2.6,3,3,96,77777,9,999999999,7,0.074,0,88,0,0,1 +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,68183,88250,11126,1975,220,5.2,2,2,96,77777,9,999999999,7,0.074,0,88,0,0,1 +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,54549,44834,12362,4764,190,3.1,3,3,96,77777,9,999999999,6,0.074,0,88,0,0,1 +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,27867,24585,7370,2657,180,2.6,2,2,96,77777,9,999999999,6,0.074,0,88,0,0,1 +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,11792,0,3040,996,300,6.7,1,1,96,77777,9,999999999,6,0.074,0,88,0,0,1 +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,26,82800,9,378,264,2,62,1,0,0,0,0,270,6.2,0,0,64,77777,9,999999999,6,0.074,0,88,0,0,1 +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,77777,9,999999999,6,0.074,0,88,0,0,1 +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,77777,9,999999999,5,0.074,0,88,0,0,1 +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,77777,9,999999999,5,0.074,0,88,0,0,1 +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,77777,9,999999999,5,0.074,0,88,0,0,1 +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,77777,9,999999999,5,0.074,0,88,0,0,1 +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,77777,9,999999999,5,0.074,0,88,0,0,1 +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,77777,9,999999999,5,0.074,0,88,0,0,1 +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,72,82900,0,0,240,0,0,0,0,0,0,0,180,2.6,0,0,48,77777,9,999999999,4,0.074,0,88,0,0,1 +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,77777,9,999999999,4,0.074,0,88,0,0,1 +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,77777,9,999999999,4,0.074,0,88,0,0,1 +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,77777,9,999999999,4,0.074,0,88,0,0,1 +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,9284,0,3100,982,180,3.1,0,0,128,77777,9,999999999,4,0.074,0,88,0,0,1 +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,30373,69310,7331,1029,190,2.6,0,0,112,77777,9,999999999,4,0.074,0,88,0,0,1 +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,52608,86656,9682,1481,360,2.1,0,0,112,77777,9,999999999,4,0.074,0,88,0,0,1 +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,25,83000,868,1372,268,678,948,78,71373,94758,11157,1936,20,3.1,0,0,112,77777,9,999999999,4,0.074,0,88,0,0,1 +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,84927,98773,12067,2455,10,3.6,0,0,112,77777,9,999999999,4,0.074,0,88,0,0,1 +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,92132,100528,12543,2890,90,5.2,0,0,112,77777,9,999999999,4,0.074,0,88,0,0,1 +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,-10.6,20,82900,1089,1372,276,883,996,92,92458,100453,12530,2918,40,5.2,0,0,112,77777,9,999999999,4,0.074,0,88,0,0,1 +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,86046,98909,12165,2525,120,3.1,0,0,96,77777,9,999999999,5,0.074,0,88,0,0,1 +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,73383,95337,11383,2008,110,3.6,0,0,96,77777,9,999999999,5,0.074,0,88,0,0,1 +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,55188,87881,9921,1539,110,2.1,0,0,96,77777,9,999999999,5,0.074,0,88,0,0,1 +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,-11.7,18,82800,465,1372,275,314,780,49,33281,72174,7599,1090,70,3.6,0,0,80,77777,9,999999999,5,0.074,0,88,0,0,1 +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,12150,671,3478,1128,100,2.6,0,0,64,77777,9,999999999,5,0.074,0,88,0,0,1 +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,77777,9,999999999,5,0.074,0,88,0,0,1 +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,77777,9,999999999,5,0.074,0,88,0,0,1 +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,26,82900,0,0,266,0,0,0,0,0,0,0,260,6.2,0,0,32,77777,9,999999999,5,0.074,0,88,0,0,1 +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,77777,9,999999999,5,0.074,0,88,0,0,1 +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,77777,9,999999999,5,0.074,0,88,0,0,1 +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,77777,9,999999999,5,0.074,0,88,0,0,1 +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,77777,9,999999999,5,0.075,0,88,0,0,1 +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,77777,9,999999999,5,0.075,0,88,0,0,1 +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,77777,9,999999999,5,0.075,0,88,0,0,1 +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,3962,9,999999999,5,0.075,0,88,0,0,1 +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,3962,9,999999999,5,0.075,0,88,0,0,1 +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,8,8,64,3962,9,999999999,5,0.075,0,88,0,0,1 +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,5661,128,4675,1384,180,2.6,9,7,96,3962,9,999999999,5,0.075,0,88,0,0,1 +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,11201,0,11288,4134,180,2.1,10,10,96,6096,9,999999999,5,0.075,0,88,0,0,1 +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,18978,0,19138,7470,170,2.6,10,10,96,3048,9,999999999,5,0.075,0,88,0,0,1 +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,50878,20267,35487,12284,70,3.1,10,9,80,1829,9,999999999,5,0.075,0,88,0,0,1 +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,24200,0,24428,10847,10,7.2,10,10,64,2743,9,999999999,6,0.075,0,88,0,0,1 +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,26246,0,26498,11815,40,7.7,10,10,16,2286,9,999999999,6,0.075,0,88,0,0,1 +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,18440,0,18618,8858,360,8.2,10,10,1,122,9,999999999,6,0.075,0,88,0,0,1 +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,17189,0,17352,8232,30,5.2,10,10,2.8,183,9,999999999,6,0.075,0,88,0,0,1 +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,20946,0,21136,9226,30,5.7,10,10,19.2,914,9,999999999,6,0.075,0,88,0,0,1 +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,15833,0,15969,6681,10,7.2,10,10,32,1829,9,999999999,6,0.075,0,88,0,0,1 +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,17719,2335,16464,5139,10,8.2,10,9,48,4267,9,999999999,6,0.075,0,88,0,0,1 +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,-5.6,62,83500,208,1371,260,93,88,79,9948,2521,8486,2144,360,8.2,10,6,48,4267,9,999999999,6,0.075,0,88,0,0,1 +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,1829,9,999999999,6,0.075,0,88,0,0,1 +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,853,9,999999999,6,0.075,0,88,0,0,1 +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,76,83800,0,0,275,0,0,0,0,0,0,0,10,6.7,10,10,6.4,914,9,999999999,6,0.075,0,88,0,0,1 +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,6,0.075,0,88,0,0,1 +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,6,0.075,0,88,0,0,1 +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,10,10,8,1067,9,999999999,6,0.075,0,88,0,0,1 +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,10,10,9.6,1250,9,999999999,6,0.076,0,88,0,0,1 +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,6,0.076,0,88,0,0,1 +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,6,0.076,0,88,0,0,1 +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,77777,9,999999999,6,0.076,0,88,0,0,1 +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,91,83900,0,0,230,0,0,0,0,0,0,0,190,3.1,0,0,32,77777,9,999999999,6,0.076,0,88,0,0,1 +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,6,286,228,1,47,0,0,0,0,0,190,3.6,0,0,64,77777,9,999999999,6,0.076,0,88,0,0,1 +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,10259,40423,3600,497,200,4.6,0,0,96,77777,9,999999999,6,0.076,0,88,0,0,1 +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,32672,75992,5835,964,200,4.6,0,0,112,77777,9,999999999,6,0.076,0,88,0,0,1 +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,54964,91468,7683,1350,190,4.6,0,0,112,77777,9,999999999,6,0.076,0,88,0,0,1 +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,73642,98621,8965,1748,200,4.1,0,0,112,77777,9,999999999,6,0.076,0,88,0,0,1 +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,86843,101951,9678,2186,230,1.5,0,0,104,77777,9,999999999,6,0.076,0,88,0,0,1 +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,94004,103476,9937,2532,170,2.6,0,0,104,77777,9,999999999,6,0.076,0,88,0,0,1 +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,94322,103518,10058,2575,260,2.1,0,0,96,77777,9,999999999,6,0.076,0,88,0,0,1 +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,19,83900,1031,1371,283,833,1014,69,88020,102304,9656,2223,40,2.1,0,0,96,77777,9,999999999,6,0.076,0,88,0,0,1 +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,75381,99167,9071,1796,60,3.6,0,0,96,77777,9,999999999,6,0.076,0,88,0,0,1 +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,57278,92698,7796,1387,30,5.2,0,0,96,77777,9,999999999,6,0.076,0,88,0,0,1 +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,20,84000,474,1371,281,330,843,39,35256,78514,6114,1014,70,3.1,0,0,96,77777,9,999999999,6,0.076,0,88,0,0,1 +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,-10,21,84000,213,1371,276,118,610,24,12594,46171,3913,562,60,2.1,0,0,96,77777,9,999999999,5,0.076,0,88,0,0,1 +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,77777,9,999999999,5,0.076,0,88,0,0,1 +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,77777,9,999999999,5,0.076,0,88,0,0,1 +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,48,84200,0,0,260,0,0,0,0,0,0,0,150,2.6,0,0,32,77777,9,999999999,5,0.076,0,88,0,0,1 +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,77777,9,999999999,5,0.076,0,88,0,0,1 +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,54,84300,0,0,254,0,0,0,0,0,0,0,190,3.6,0,0,32,77777,9,999999999,5,0.076,0,88,0,0,1 +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,77777,9,999999999,5,0.076,0,88,0,0,1 +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,77777,9,999999999,5,0.077,0,88,0,0,1 +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,77777,9,999999999,5,0.077,0,88,0,0,1 +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,77777,9,999999999,5,0.077,0,88,0,0,1 +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,77777,9,999999999,5,0.077,0,88,0,0,1 +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,77777,9,999999999,5,0.077,0,88,0,0,1 +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,77777,9,999999999,5,0.077,0,88,0,0,1 +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,9205,1088,4502,1379,200,5.2,0,0,96,77777,9,999999999,5,0.077,0,88,0,0,1 +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,32861,31281,8443,2994,190,3.6,0,0,96,77777,9,999999999,5,0.077,0,88,0,0,1 +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,59112,49792,11908,4595,150,3.1,0,0,112,77777,9,999999999,5,0.077,0,88,0,0,1 +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,82472,58359,14591,5924,170,2.1,0,0,112,77777,9,999999999,5,0.077,0,88,0,0,1 +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,15,84300,1025,1370,299,807,901,132,99875,62102,16399,6813,160,3.1,0,0,112,77777,9,999999999,5,0.077,0,88,0,0,1 +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,14,84200,1099,1370,304,877,919,138,90736,92427,18306,3541,170,3.6,0,0,112,77777,9,999999999,5,0.077,0,88,0,0,1 +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,13,84200,1103,1370,308,880,920,139,91025,92531,18417,3585,150,2.1,0,0,112,77777,9,999999999,5,0.077,0,88,0,0,1 +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,12,84100,1036,1370,310,817,904,133,101208,62347,16540,6879,200,2.1,0,0,112,77777,9,999999999,5,0.077,0,88,0,0,1 +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,12,84000,902,1370,315,691,866,121,84549,59040,14859,6053,80,1.5,0,0,112,77777,9,999999999,5,0.077,0,88,0,0,1 +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,12,84000,712,1370,315,514,794,101,61801,51268,12183,4733,120,4.6,0,0,112,77777,9,999999999,5,0.077,0,88,0,0,1 +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,35667,34035,8824,3162,120,4.1,0,0,96,77777,9,999999999,5,0.077,0,88,0,0,1 +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,11284,4018,4978,1554,120,3.1,0,0,96,77777,9,999999999,5,0.077,0,88,0,0,1 +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,77777,9,999999999,5,0.077,0,88,0,0,1 +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,77777,9,999999999,5,0.077,0,88,0,0,1 +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,77777,9,999999999,5,0.077,0,88,0,0,1 +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,77777,9,999999999,5,0.077,0,88,0,0,1 +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,33,84000,0,0,278,0,0,0,0,0,0,0,170,5.7,5,1,32,77777,9,999999999,5,0.077,0,88,0,0,1 +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,4,1,32,77777,9,999999999,4,0.077,0,88,0,0,1 +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,6096,9,999999999,8,0.073,0,88,0,0,1 +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,77777,9,999999999,8,0.073,0,88,0,0,1 +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,-1.8,81,81300,0,0,254,0,0,0,0,0,0,0,350,2.8,0,0,16,77777,9,999999999,8,0.073,0,88,0,0,1 +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,77777,9,999999999,8,0.073,0,88,0,0,1 +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,-1.7,87,81900,0,0,285,0,0,0,0,0,0,0,30,3.1,10,10,16,6096,9,999999999,8,0.073,0,88,0,0,1 +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,244,9,999999999,8,0.073,0,88,0,0,1 +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,-1,80,81800,196,1369,294,24,0,24,2348,0,2364,927,10,3.6,10,10,16.1,300,9,999999999,8,0.073,0,88,0,0,1 +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,5903,0,5949,2544,30,4.1,10,10,16,305,9,999999999,8,0.073,0,88,0,0,1 +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,8878,0,8954,4122,30,4.6,10,10,16,305,9,999999999,9,0.073,0,88,0,0,1 +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,11306,0,11409,5496,10,5.7,10,10,16,366,9,999999999,9,0.073,0,88,0,0,1 +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,18250,0,18423,8671,20,5.7,10,10,16,366,9,999999999,9,0.073,0,88,0,0,1 +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,19205,0,19391,9183,20,4.1,10,10,16,427,9,999999999,9,0.073,0,88,0,0,1 +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,15093,0,15240,7451,360,3.6,10,10,16,488,9,999999999,9,0.073,0,88,0,0,1 +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,36760,3046,33804,12948,30,4.6,10,10,16,427,9,999999999,9,0.073,0,88,0,0,1 +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,12459,0,12573,6020,20,3.6,10,10,16,427,9,999999999,9,0.073,0,88,0,0,1 +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,8995,0,9073,4207,360,3.1,10,10,16,427,9,999999999,9,0.073,0,88,0,0,1 +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,5112,0,5153,2274,350,2.6,10,10,2.4,488,9,999999999,9,0.073,0,88,0,0,1 +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,1961,0,1975,810,350,3.6,10,10,1.6,274,9,999999999,9,0.073,0,88,0,0,1 +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,9,0.073,0,88,0,0,1 +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,9,0.073,0,88,0,0,1 +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,9,0.073,0,88,0,0,1 +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,91,9,999999999,9,0.073,0,88,0,0,1 +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,9,0.073,0,88,0,0,1 +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,91,82300,0,0,266,0,0,0,0,0,0,0,360,5.2,10,10,1.2,122,9,999999999,10,0.073,0,88,0,0,1 +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,-5,92,82300,0,0,265,0,0,0,0,0,0,0,360,5.1,10,10,1.2,15,9,999999999,10,0.074,0,88,0,0,1 +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,-6,84,82400,0,0,264,0,0,0,0,0,0,0,360,4.6,10,10,4,450,9,999999999,10,0.074,0,88,0,0,1 +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,95,82400,0,0,264,0,0,0,0,0,0,0,340,5.2,10,10,3.2,762,9,999999999,10,0.074,0,88,0,0,1 +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,-5.6,95,82400,0,0,261,0,0,0,0,0,0,0,350,5.7,10,10,3.2,91,9,999999999,10,0.074,0,88,0,0,1 +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,-5.6,95,82800,0,0,261,0,0,0,0,0,0,0,350,5.2,10,10,3.2,122,9,999999999,10,0.074,0,88,0,0,1 +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,10,0.074,0,88,0,0,1 +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,-6,100,82400,203,1368,257,46,0,46,4508,0,4539,1566,10,4.6,10,10,3.2,120,9,999999999,10,0.074,0,88,0,0,1 +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,-6.1,91,82500,466,1368,260,81,0,81,8118,0,8182,3335,360,5.2,10,10,2,244,9,999999999,9,0.074,0,88,0,0,1 +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,10938,0,11031,4947,360,4.1,10,10,2.2,549,9,999999999,9,0.074,0,88,0,0,1 +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,13917,0,14043,6602,10,3.1,10,10,2.4,549,9,999999999,9,0.074,0,88,0,0,1 +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,15649,0,15797,7603,50,4.6,10,10,2.4,549,9,999999999,9,0.074,0,88,0,0,1 +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,22507,0,22725,10486,40,3.6,10,10,16,396,9,999999999,9,0.074,0,88,0,0,1 +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,18919,0,19102,9069,40,2.6,10,10,14.4,488,9,999999999,9,0.074,0,88,0,0,1 +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,15980,0,16132,7755,360,3.6,10,10,16,579,9,999999999,9,0.074,0,88,0,0,1 +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,12479,0,12593,6031,350,3.6,10,10,16,396,9,999999999,9,0.074,0,88,0,0,1 +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,9008,0,9086,4216,40,4.1,10,10,0.8,183,9,999999999,8,0.074,0,88,0,0,1 +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,5622,0,5666,2477,70,1.5,10,10,0.4,152,9,999999999,8,0.074,0,88,0,0,1 +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,-6,92,82300,226,1368,260,20,0,20,1964,0,1978,814,70,2.1,10,10,2.4,1800,9,999999999,8,0.074,0,88,0,0,1 +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,305,9,999999999,8,0.074,0,88,0,0,1 +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,-7,92,82300,0,0,256,0,0,0,0,0,0,0,150,2.1,10,10,4,1500,9,999999999,8,0.074,0,88,0,0,1 +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,8,0.074,0,88,0,0,1 +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,1524,9,999999999,8,0.074,0,88,0,0,1 +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,1402,9,999999999,8,0.074,0,88,0,0,1 +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,1280,9,999999999,8,0.074,0,88,0,0,1 +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,1158,9,999999999,7,0.075,0,88,0,0,1 +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,1036,9,999999999,7,0.075,0,88,0,0,1 +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,77777,9,999999999,7,0.075,0,88,0,0,1 +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,-8,92,81700,0,0,244,0,0,0,0,0,0,0,100,4.1,9,9,16.1,660,9,999999999,7,0.075,0,88,0,0,1 +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,610,9,999999999,7,0.075,0,88,0,0,1 +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,7,0.075,0,88,0,0,1 +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,2158,0,2173,873,0,0,10,10,11.2,549,9,999999999,7,0.075,0,88,0,0,1 +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,-6.7,86,81800,472,1367,253,52,0,52,5215,0,5256,2299,290,3.1,9,9,11.2,914,9,999999999,7,0.075,0,88,0,0,1 +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,8898,0,8974,4150,320,3.6,9,9,11.2,914,9,999999999,7,0.075,0,88,0,0,1 +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,12574,0,12689,6057,290,3.1,9,9,14.4,213,9,999999999,7,0.075,0,88,0,0,1 +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,38851,2135,36985,13861,240,2.1,9,9,12.8,6096,9,999999999,6,0.075,0,88,0,0,1 +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,52610,7926,44943,16308,190,2.6,9,9,11.2,6096,9,999999999,6,0.075,0,88,0,0,1 +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,-5.6,62,82000,1117,1367,273,602,270,381,69567,25283,44316,16165,150,2.1,9,9,16,6096,9,999999999,6,0.075,0,88,0,0,1 +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,52,82100,1049,1367,287,608,346,341,70171,31566,39601,14607,90,3.6,9,9,16,6096,9,999999999,6,0.075,0,88,0,0,1 +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,60030,31205,33299,12105,110,2.6,9,9,16,6096,9,999999999,6,0.075,0,88,0,0,1 +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,45389,27868,25258,8778,120,4.6,9,9,16,6096,9,999999999,6,0.075,0,88,0,0,1 +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,24322,12960,17069,5401,150,5.7,9,9,16,6706,9,999999999,6,0.075,0,88,0,0,1 +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,14136,9266,7368,2113,160,3.6,9,9,16,6096,9,999999999,6,0.075,0,88,0,0,1 +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,69,82200,18,536,271,0,0,0,0,0,0,0,150,3.1,9,9,16,6096,9,999999999,6,0.075,0,88,0,0,1 +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,79,82200,0,0,265,0,0,0,0,0,0,0,110,3.1,9,9,16,6706,9,999999999,6,0.075,0,88,0,0,1 +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,77777,9,999999999,6,0.075,0,88,0,0,1 +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,77777,9,999999999,6,0.075,0,88,0,0,1 +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,77777,9,999999999,6,0.075,0,88,0,0,1 +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,77777,9,999999999,5,0.075,0,88,0,0,1 +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,77777,9,999999999,5,0.075,0,88,0,0,1 +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,77777,9,999999999,5,0.075,0,88,0,0,1 +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,77777,9,999999999,5,0.075,0,88,0,0,1 +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,6096,9,999999999,5,0.075,0,88,0,0,1 +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,3353,9,999999999,5,0.075,0,88,0,0,1 +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,-8.3,75,82100,14,467,251,0,0,0,0,0,0,0,150,2.6,9,9,16,6096,9,999999999,5,0.075,0,88,0,0,1 +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,10673,4041,8226,2180,190,4.6,9,9,16,6096,9,999999999,5,0.075,0,88,0,0,1 +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,-5.6,62,82400,479,1367,273,301,534,113,34177,32409,12879,4359,210,3.1,9,9,16,2743,9,999999999,6,0.075,0,88,0,0,1 +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,55596,44790,19079,7040,250,2.6,9,9,16,6096,9,999999999,6,0.075,0,88,0,0,1 +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,81281,56270,18594,7471,200,2.1,9,9,16,6706,9,999999999,6,0.075,0,88,0,0,1 +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,101039,61894,19434,8026,150,3.6,9,9,16,6096,9,999999999,6,0.075,0,88,0,0,1 +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,106564,60666,20092,8331,150,5.7,9,9,16,7620,9,999999999,6,0.075,0,88,0,0,1 +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,97276,54873,28820,11544,160,7.2,9,9,16,7620,9,999999999,6,0.075,0,88,0,0,1 +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,95818,58562,23645,9609,180,6.7,9,9,16,7620,9,999999999,7,0.075,0,88,0,0,1 +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,65517,37737,32483,11917,160,7.2,9,9,16,7620,9,999999999,7,0.075,0,88,0,0,1 +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,35,82500,728,1367,320,318,118,256,35616,10481,28831,9615,180,11.8,10,10,16,7620,9,999999999,7,0.075,0,88,0,0,1 +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,17605,1995,16565,5323,170,9.3,10,10,16,7620,9,999999999,7,0.075,0,88,0,0,1 +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,7205,761,6561,1972,160,9.3,10,10,16,7620,9,999999999,7,0.075,0,88,0,0,1 +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,7620,9,999999999,7,0.075,0,88,0,0,1 +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,7620,9,999999999,7,0.075,0,88,0,0,1 +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,3658,9,999999999,8,0.075,0,88,0,0,1 +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,3353,9,999999999,8,0.075,0,88,0,0,1 +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,1372,9,999999999,8,0.075,0,88,0,0,1 +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,8,0.075,0,88,0,0,1 +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,8,0.076,0,88,0,0,1 +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,-1,92,82000,0,0,286,0,0,0,0,0,0,0,10,3.1,10,10,3.2,30,9,999999999,8,0.076,0,88,0,0,1 +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,-1.1,91,82000,0,0,286,0,0,0,0,0,0,0,340,4.6,10,10,3.6,30,9,999999999,9,0.076,0,88,0,0,1 +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,-1.1,91,82100,0,0,286,0,0,0,0,0,0,0,340,8.2,10,10,2,30,9,999999999,9,0.076,0,88,0,0,1 +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.6,95,82300,0,0,286,0,0,0,0,0,0,0,340,7.2,10,10,0.4,30,9,999999999,9,0.076,0,88,0,0,1 +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,-1.1,91,82200,16,489,286,0,0,0,0,0,0,0,340,7.2,10,10,4,30,9,999999999,9,0.076,0,88,0,0,1 +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,-1.1,91,82300,224,1366,278,107,209,72,11612,5346,7843,2167,10,6.7,10,9,11.2,6096,9,999999999,9,0.076,0,88,0,0,1 +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,-1.1,91,82400,485,1366,278,241,178,178,26380,13454,19581,5824,360,3.6,10,9,14.4,6096,9,999999999,8,0.076,0,88,0,0,1 +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,36369,10915,29281,9648,10,4.1,8,5,16,77777,9,999999999,8,0.076,0,88,0,0,1 +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,86278,60744,24011,9377,20,8.2,7,5,16,77777,9,999999999,8,0.076,0,88,0,0,1 +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,88830,98413,12876,2769,10,4.6,8,5,16,77777,9,999999999,8,0.076,0,88,0,0,1 +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,94506,96741,15601,3615,10,4.1,8,5,16,77777,9,999999999,8,0.076,0,88,0,0,1 +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,95181,94384,19202,3917,10,4.6,8,5,16,77777,9,999999999,8,0.076,0,88,0,0,1 +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,88239,97172,12986,2814,350,2.6,7,5,16,77777,9,999999999,8,0.076,0,88,0,0,1 +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,74700,91833,13041,2229,320,3.6,8,5,16,77777,9,999999999,7,0.076,0,88,0,0,1 +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,62530,50456,13342,5193,0,0,7,5,16,77777,9,999999999,7,0.076,0,88,0,0,1 +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,39464,37119,8317,3032,180,2.1,8,5,16,77777,9,999999999,7,0.076,0,88,0,0,1 +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,15307,7919,5229,1664,110,5.2,7,5,16,77777,9,999999999,7,0.076,0,88,0,0,1 +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,-3.3,53,82900,21,580,280,0,0,0,0,0,0,0,120,4.1,8,5,16,77777,9,999999999,7,0.076,0,88,0,0,1 +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,77777,9,999999999,7,0.076,0,88,0,0,1 +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,77777,9,999999999,7,0.076,0,88,0,0,1 +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,77777,9,999999999,7,0.076,0,88,0,0,1 +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,77777,9,999999999,6,0.076,0,88,0,0,1 +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,77777,9,999999999,6,0.076,0,88,0,0,1 +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,77777,9,999999999,6,0.076,0,88,0,0,1 +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,77777,9,999999999,6,0.076,0,88,0,0,1 +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,77777,9,999999999,6,0.076,0,88,0,0,1 +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,77777,9,999999999,6,0.076,0,88,0,0,1 +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,77777,9,999999999,6,0.076,0,88,0,0,1 +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,-4.4,69,82800,18,535,259,0,0,0,0,0,0,0,270,3.1,6,5,16,77777,9,999999999,6,0.076,0,88,0,0,1 +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,14812,10161,7871,2207,250,3.6,6,5,16,77777,9,999999999,6,0.076,0,88,0,0,1 +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,39860,38371,9820,3512,360,3.6,6,5,16,77777,9,999999999,6,0.076,0,88,0,0,1 +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,68651,54896,10968,4317,270,3.6,2,2,16,77777,9,999999999,6,0.076,0,88,0,0,1 +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,-3.9,36,83400,920,1365,295,707,911,92,74391,91634,12920,2212,210,2.1,3,3,16,77777,9,999999999,6,0.076,0,88,0,0,1 +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,85555,92475,14523,2970,150,2.6,2,2,16,77777,9,999999999,6,0.076,0,88,0,0,1 +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,92834,93472,16704,3783,90,4.1,6,5,16,77777,9,999999999,6,0.076,0,88,0,0,1 +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,93962,93146,18439,3938,90,6.7,5,4,16,77777,9,999999999,6,0.076,0,88,0,0,1 +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,105863,63070,16945,7066,170,9.3,3,3,16,77777,9,999999999,6,0.076,0,88,0,0,1 +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,74824,91820,12633,2219,180,9.3,2,2,16,77777,9,999999999,6,0.076,0,88,0,0,1 +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,67771,53779,10654,4209,170,8.8,3,3,16,77777,9,999999999,6,0.076,0,88,0,0,1 +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,12,82600,502,1365,323,349,771,64,41703,39254,7666,2816,280,5.2,2,2,16,77777,9,999999999,6,0.076,0,88,0,0,1 +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,15662,7348,4501,1471,280,4.1,3,3,16,77777,9,999999999,6,0.076,0,88,0,0,1 +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,27,83100,23,603,310,0,0,0,0,0,0,0,290,2.6,6,5,16,77777,9,999999999,7,0.076,0,88,0,0,1 +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,77777,9,999999999,7,0.076,0,88,0,0,1 +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,77777,9,999999999,7,0.076,0,88,0,0,1 +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,-3.9,36,83100,0,0,283,0,0,0,0,0,0,0,210,5.2,0,0,16,77777,9,999999999,7,0.076,0,88,0,0,1 +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,77777,9,999999999,7,0.076,0,88,0,0,1 +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,77777,9,999999999,7,0.076,0,88,0,0,1 +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,77777,9,999999999,7,0.077,0,88,0,0,1 +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,77777,9,999999999,7,0.077,0,88,0,0,1 +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,77777,9,999999999,7,0.077,0,88,0,0,1 +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,77777,9,999999999,7,0.077,0,88,0,0,1 +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,77777,9,999999999,7,0.077,0,88,0,0,1 +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,77777,9,999999999,7,0.077,0,88,0,0,1 +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,16714,13088,7895,2245,150,2.1,0,0,16,77777,9,999999999,7,0.077,0,88,0,0,1 +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,43323,42297,9512,3427,110,5.2,0,0,16,77777,9,999999999,7,0.077,0,88,0,0,1 +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,67639,54357,11551,4542,100,7.2,4,3,16,77777,9,999999999,7,0.077,0,88,0,0,1 +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,73296,88327,14222,2293,100,6.2,4,2,16,77777,9,999999999,7,0.077,0,88,0,0,1 +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,19,83200,1061,1364,330,818,881,131,101785,59611,16364,6836,120,8.8,4,3,16,77777,9,999999999,7,0.077,0,88,0,0,1 +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,95137,96742,15319,3687,110,9.8,4,2,16,77777,9,999999999,7,0.077,0,88,0,0,1 +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,94227,97031,13552,3454,140,10.3,4,3,16,77777,9,999999999,7,0.077,0,88,0,0,1 +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,87657,95366,13221,2895,140,12.9,9,5,16,77777,9,999999999,7,0.077,0,88,0,0,1 +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,77539,96198,11430,2138,130,11.8,9,5,16,77777,9,999999999,7,0.077,0,88,0,0,1 +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,-7.8,13,83100,740,1364,339,561,871,87,68559,54289,10663,4217,150,13.4,9,5,16,77777,9,999999999,7,0.077,0,88,0,0,1 +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,42378,39597,7559,2785,140,14.9,9,5,16,77777,9,999999999,7,0.077,0,88,0,0,1 +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,16374,7801,4507,1479,130,14.4,9,5,14.4,77777,9,999999999,7,0.077,0,88,0,0,1 +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,6096,9,999999999,7,0.077,0,88,0,0,1 +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,6096,9,999999999,7,0.077,0,88,0,0,1 +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,6096,9,999999999,7,0.077,0,88,0,0,1 +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.6,47,82000,0,0,321,0,0,0,0,0,0,0,160,9.8,10,9,16,6096,9,999999999,7,0.077,0,88,0,0,1 +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,77777,9,999999999,7,0.077,0,88,0,0,1 +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,6096,9,999999999,7,0.077,0,88,0,0,1 +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,-3,34,81700,0,0,309,0,0,0,0,0,0,0,240,7.7,9,5,16.1,77777,9,999999999,7,0.077,0,88,0,0,1 +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,77777,9,999999999,7,0.077,0,88,0,0,1 +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,2591,9,999999999,7,0.077,0,88,0,0,1 +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,1981,9,999999999,7,0.077,0,88,0,0,1 +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,1494,9,999999999,7,0.077,0,88,0,0,1 +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,26,81600,24,602,296,0,0,0,0,0,0,0,280,11.3,10,9,16,2591,9,999999999,7,0.077,0,88,0,0,1 +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,26,81700,244,1363,298,140,182,108,14834,8551,11497,2698,280,9.8,10,9,16,3962,9,999999999,7,0.077,0,88,0,0,1 +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,24,81800,504,1363,303,87,0,87,8755,0,8824,3652,300,15.5,10,9,16,4267,9,999999999,7,0.077,0,88,0,0,1 +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,-9.4,22,82000,738,1363,311,464,399,248,52254,35140,28080,9546,280,16,10,9,16,6096,9,999999999,7,0.077,0,88,0,0,1 +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,84553,58154,20570,8238,300,15.5,9,5,14.4,77777,9,999999999,7,0.077,0,88,0,0,1 +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,87527,91714,17280,3230,300,12.9,9,5,16,77777,9,999999999,7,0.077,0,88,0,0,1 +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,95372,96455,15671,3785,330,10.8,9,5,16,77777,9,999999999,7,0.077,0,88,0,0,1 +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,93291,95050,14292,3610,320,9.3,4,2,16,77777,9,999999999,7,0.077,0,88,0,0,1 +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,86762,93398,13847,2993,300,10.8,4,3,16,77777,9,999999999,7,0.077,0,88,0,0,1 +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,74776,90662,13011,2272,300,7.7,4,2,16,77777,9,999999999,7,0.077,0,88,0,0,1 +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,63307,50516,13596,5308,350,4.1,4,3,16,77777,9,999999999,7,0.077,0,88,0,0,1 +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,39407,37052,9110,3317,330,5.2,4,2,16,77777,9,999999999,7,0.077,0,88,0,0,1 +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,16221,9404,5153,1667,350,4.6,4,3,16,77777,9,999999999,6,0.077,0,88,0,0,1 +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,77777,9,999999999,6,0.077,0,88,0,0,1 +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,67,82800,0,0,269,0,0,0,0,0,0,0,80,3.1,0,0,16,77777,9,999999999,6,0.077,0,88,0,0,1 +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,77777,9,999999999,6,0.077,0,88,0,0,1 +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,77777,9,999999999,6,0.077,0,88,0,0,1 +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,77777,9,999999999,6,0.077,0,88,0,0,1 +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,77777,9,999999999,6,0.077,0,88,0,0,1 +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,77777,9,999999999,6,0.078,0,88,0,0,1 +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,77777,9,999999999,6,0.078,0,88,0,0,1 +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,77777,9,999999999,6,0.078,0,88,0,0,1 +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,-2.8,79,82200,0,0,246,0,0,0,0,0,0,0,170,4.6,0,0,16,77777,9,999999999,6,0.078,0,88,0,0,1 +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,77777,9,999999999,6,0.078,0,88,0,0,1 +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,77777,9,999999999,6,0.078,0,88,0,0,1 +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,67,82300,250,1362,269,167,476,80,18167,15339,8737,2457,150,8.2,0,0,16,77777,9,999999999,6,0.078,0,88,0,0,1 +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,43274,40773,9316,3389,180,11.3,0,0,16,77777,9,999999999,6,0.078,0,88,0,0,1 +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,69110,53804,11676,4612,170,11.8,3,3,16,77777,9,999999999,5,0.078,0,88,0,0,1 +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,77514,92872,14331,2343,140,11.8,2,2,16,77777,9,999999999,5,0.078,0,88,0,0,1 +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,88487,95250,13719,2997,140,12.9,3,3,16,77777,9,999999999,5,0.078,0,88,0,0,1 +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,114959,64077,18887,7856,160,14.9,7,5,16,77777,9,999999999,5,0.078,0,88,0,0,1 +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,102654,57717,31159,12358,180,12.4,10,9,16,3048,9,999999999,5,0.078,0,88,0,0,1 +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,48129,13613,33374,12943,220,9.3,10,10,16,3048,9,999999999,5,0.078,0,88,0,0,1 +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,-9.4,16,81800,937,1362,333,639,582,237,74715,47961,27856,10697,250,7.2,10,9,16,3962,9,999999999,5,0.078,0,88,0,0,1 +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,62439,50056,16590,6360,310,10.8,10,9,16,3962,9,999999999,5,0.078,0,88,0,0,1 +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,40654,40428,15422,5163,290,10.3,10,9,16,3962,9,999999999,5,0.078,0,88,0,0,1 +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,23,81800,255,1362,305,55,0,55,5418,0,5457,1951,270,12.4,10,9,16,3048,9,999999999,5,0.078,0,88,0,0,1 +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,2134,9,999999999,5,0.078,0,88,0,0,1 +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,2134,9,999999999,5,0.078,0,88,0,0,1 +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,5,0.078,0,88,0,0,1 +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,10,10,16,3048,9,999999999,5,0.078,0,88,0,0,1 +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,2743,9,999999999,5,0.078,0,88,0,0,1 +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,4572,9,999999999,5,0.078,0,88,0,0,1 +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,77777,9,999999999,5,0.079,0,88,0,0,1 +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,77777,9,999999999,4,0.079,0,88,0,0,1 +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,9,5,16,77777,9,999999999,4,0.079,0,88,0,0,1 +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,77777,9,999999999,4,0.079,0,88,0,0,1 +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,6706,9,999999999,4,0.079,0,88,0,0,1 +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,77777,9,999999999,4,0.079,0,88,0,0,1 +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,20,82100,257,1362,265,174,508,78,19069,17661,8580,2461,270,9.8,9,5,16,77777,9,999999999,4,0.079,0,88,0,0,1 +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,-14.4,20,82300,516,1362,284,381,662,129,43254,44357,14704,4991,270,9.8,10,9,16,6706,9,999999999,4,0.079,0,88,0,0,1 +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,50511,30215,30138,10086,270,9.8,10,9,16,7315,9,999999999,4,0.079,0,88,0,0,1 +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,82214,55540,21398,8557,290,8.8,10,9,16,7315,9,999999999,4,0.079,0,88,0,0,1 +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,94584,56271,26332,10610,300,11.3,10,9,16,6096,9,999999999,4,0.079,0,88,0,0,1 +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,115059,64488,19028,7906,310,10.8,10,9,16,6096,9,999999999,4,0.079,0,88,0,0,1 +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,94281,95447,14260,3701,320,12.9,10,9,16,6096,9,999999999,4,0.079,0,88,0,0,1 +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,89104,96281,13052,2957,320,8.2,10,9,16,6096,9,999999999,4,0.079,0,88,0,0,1 +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,87029,60123,22397,8912,340,9.8,10,9,16,6096,9,999999999,4,0.079,0,88,0,0,1 +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,33030,7684,27635,9546,360,8.8,9,5,16,77777,9,999999999,4,0.079,0,88,0,0,1 +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,40862,40340,15230,5133,10,11.3,9,5,16,77777,9,999999999,4,0.079,0,88,0,0,1 +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,17214,10213,4747,1565,10,9.8,9,5,16,77777,9,999999999,4,0.079,0,88,0,0,1 +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,77777,9,999999999,4,0.079,0,88,0,0,1 +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,77777,9,999999999,4,0.079,0,88,0,0,1 +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,4,2,16,77777,9,999999999,4,0.079,0,88,0,0,1 +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,77777,9,999999999,4,0.079,0,88,0,0,1 +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,77777,9,999999999,4,0.079,0,88,0,0,1 +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,77777,9,999999999,4,0.079,0,88,0,0,1 +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,77777,9,999999999,4,0.079,0,88,0,0,1 +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,77777,9,999999999,4,0.079,0,88,0,0,1 +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,77777,9,999999999,4,0.079,0,88,0,0,1 +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,77777,9,999999999,4,0.079,0,88,0,0,1 +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,77777,9,999999999,4,0.079,0,88,0,0,1 +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,75,83100,33,714,217,0,81,0,0,0,0,0,150,4.1,0,0,16,77777,9,999999999,5,0.079,0,88,0,0,1 +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,-6.7,57,83500,263,1361,242,171,504,74,18851,16408,8187,2420,130,4.6,0,0,16,77777,9,999999999,5,0.079,0,88,0,0,1 +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,41770,40049,10768,3879,110,5.2,2,2,16,77777,9,999999999,5,0.079,0,88,0,0,1 +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,64547,51814,17709,6759,100,4.6,3,3,16,77777,9,999999999,5,0.079,0,88,0,0,1 +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,91549,61191,16789,6873,120,5.2,2,2,16,77777,9,999999999,5,0.079,0,88,0,0,1 +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,90948,98129,12792,2952,130,6.2,3,3,16,77777,9,999999999,5,0.079,0,88,0,0,1 +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,98657,99045,15504,3932,100,6.2,9,5,16,77777,9,999999999,5,0.079,0,88,0,0,1 +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,97185,98773,13752,3665,60,3.1,9,5,16,77777,9,999999999,5,0.079,0,88,0,0,1 +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,15,84100,1079,1361,317,853,824,198,103294,62321,24093,9817,130,4.6,9,5,16,77777,9,999999999,5,0.079,0,88,0,0,1 +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,-11.1,14,84000,945,1361,331,571,369,314,65392,33949,36175,13068,160,6.2,10,9,16,7620,9,999999999,6,0.079,0,88,0,0,1 +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,15,84000,754,1361,335,568,742,155,66623,54454,18257,6935,150,6.7,10,9,16,7620,9,999999999,6,0.079,0,88,0,0,1 +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,42987,40459,8476,3123,150,7.2,9,5,16,77777,9,999999999,6,0.079,0,88,0,0,1 +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,17774,10682,4858,1604,150,6.2,10,9,16,7315,9,999999999,6,0.079,0,88,0,0,1 +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,7315,9,999999999,6,0.079,0,88,0,0,1 +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,6096,9,999999999,6,0.079,0,88,0,0,1 +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,6096,9,999999999,6,0.079,0,88,0,0,1 +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,6096,9,999999999,6,0.079,0,88,0,0,1 +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,77777,9,999999999,6,0.079,0,88,0,0,1 +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,77777,9,999999999,7,0.079,0,88,0,0,1 +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,77777,9,999999999,7,0.08,0,88,0,0,1 +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,77777,9,999999999,7,0.08,0,88,0,0,1 +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,77777,9,999999999,7,0.08,0,88,0,0,1 +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,77777,9,999999999,7,0.08,0,88,0,0,1 +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,77777,9,999999999,7,0.08,0,88,0,0,1 +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,77777,9,999999999,7,0.08,0,88,0,0,1 +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,-3.9,51,83700,270,1360,272,178,564,66,19848,16520,7383,2276,250,4.6,2,2,16,77777,9,999999999,7,0.08,0,88,0,0,1 +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,45575,43226,9472,3473,280,3.1,3,3,16,77777,9,999999999,7,0.08,0,88,0,0,1 +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,-4.4,34,83900,761,1360,292,581,876,90,71058,54657,11040,4394,320,2.1,2,2,16,77777,9,999999999,7,0.08,0,88,0,0,1 +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,76369,89113,15197,2443,0,0,3,3,16,77777,9,999999999,7,0.08,0,88,0,0,1 +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,89681,92630,17092,3407,30,1.5,6,5,16,77777,9,999999999,8,0.08,0,88,0,0,1 +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,117882,64553,19378,8051,50,4.1,6,5,16,77777,9,999999999,8,0.08,0,88,0,0,1 +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,-5,17,84100,1153,1360,343,918,959,103,96127,97139,13745,3709,60,6.2,6,5,16,77777,9,999999999,8,0.08,0,88,0,0,1 +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,17,84000,1083,1360,366,871,968,99,91343,97912,13424,3059,70,6.7,10,9,16,6096,9,999999999,8,0.08,0,88,0,0,1 +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,90541,61275,20289,8189,70,8.2,10,9,16,6096,9,999999999,8,0.08,0,88,0,0,1 +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,44253,22832,27650,9614,70,8.8,10,9,16,6096,9,999999999,8,0.08,0,88,0,0,1 +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,21302,5475,18151,5865,50,9.3,10,9,16,6096,9,999999999,8,0.08,0,88,0,0,1 +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,16974,13325,8904,2571,50,7.2,10,9,16,6096,9,999999999,8,0.08,0,88,0,0,1 +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,6096,9,999999999,8,0.08,0,88,0,0,1 +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,3353,9,999999999,8,0.08,0,88,0,0,1 +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,6096,9,999999999,8,0.08,0,88,0,0,1 +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,77777,9,999999999,8,0.08,0,88,0,0,1 +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,77777,9,999999999,8,0.08,0,88,0,0,1 +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,77777,9,999999999,8,0.08,0,88,0,0,1 +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,-2.2,58,83100,0,0,276,0,0,0,0,0,0,0,300,4.1,3,3,16,77777,9,999999999,8,0.08,0,88,0,0,1 +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,77777,9,999999999,8,0.08,0,88,0,0,1 +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,77777,9,999999999,9,0.08,0,88,0,0,1 +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,77777,9,999999999,9,0.08,0,88,0,0,1 +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,77777,9,999999999,9,0.08,0,88,0,0,1 +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,0,0,0,0,250,4.6,5,5,16,77777,9,999999999,9,0.08,0,88,0,0,1 +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,20448,17925,8319,2503,270,3.6,5,5,16,77777,9,999999999,9,0.08,0,88,0,0,1 +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,44880,42437,11110,4020,320,5.7,5,5,16,77777,9,999999999,9,0.08,0,88,0,0,1 +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,43,83400,766,1359,332,561,772,125,66926,51459,14968,5858,340,6.2,9,9,16,6096,9,999999999,9,0.08,0,88,0,0,1 +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,2.8,44,83500,955,1359,329,717,710,218,84420,54503,25799,10138,320,7.2,5,5,16,77777,9,999999999,10,0.08,0,88,0,0,1 +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,39314,5341,33268,12992,10,7.7,7,7,16,2438,9,999999999,10,0.08,0,88,0,0,1 +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,70286,22588,46161,16828,20,9.3,9,9,16,6096,9,999999999,10,0.08,0,88,0,0,1 +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,41,83500,1156,1359,368,798,563,318,93895,46589,37647,14486,40,8.8,9,9,16,1524,9,999999999,10,0.08,0,88,0,0,1 +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,62672,19888,42555,15635,20,5.7,9,9,16,1829,9,999999999,10,0.08,0,88,0,0,1 +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,31802,2361,29528,11323,40,4.6,9,9,16,1524,9,999999999,10,0.08,0,88,0,0,1 +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,10125,0,10214,4783,50,3.1,9,9,16,6096,9,999999999,11,0.08,0,88,0,0,1 +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,18090,4347,15100,5171,50,5.7,9,9,16,6096,9,999999999,11,0.08,0,88,0,0,1 +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,55,83200,271,1359,346,160,381,84,17448,13091,9196,2648,50,4.6,9,9,16,2896,9,999999999,11,0.08,0,88,0,0,1 +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,7.2,83,83000,37,759,312,2,112,2,0,0,0,0,120,5.2,5,5,16,77777,9,999999999,11,0.08,0,88,0,0,1 +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,11,0.08,0,88,0,0,1 +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,12,0.08,0,88,0,0,1 +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,762,9,999999999,12,0.08,0,88,0,0,1 +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,1006,9,999999999,12,0.08,0,88,0,0,1 +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,12,0.08,0,88,0,0,1 +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,1158,9,999999999,12,0.081,0,88,0,0,1 +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,12,0.081,0,88,0,0.3,1 +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,1524,9,999999999,13,0.081,0,88,0,0,1 +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,4,87,83000,0,0,317,0,0,0,0,0,0,0,340,9.3,10,10,12.9,300,9,999999999,13,0.081,0,88,0,0,1 +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,3.3,89,83100,0,0,312,0,0,0,0,0,0,0,340,10.3,10,10,16,396,9,999999999,13,0.081,0,88,0,0,1 +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,333,3414,353,72,360,8.8,10,10,16,244,9,999999999,13,0.081,0,88,0,0,1 +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,96,83100,282,1359,289,192,349,119,20454,18038,12737,3178,360,11.3,10,10,2.4,122,9,999999999,12,0.081,0,88,0,0,1 +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,100,83300,540,1359,287,163,38,148,18359,2622,16742,5631,360,9.8,10,10,0.4,61,9,999999999,12,0.081,0,88,0,0,1 +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,100,83400,771,1359,287,119,0,119,12221,0,12328,5636,360,10.3,10,10,0.4,61,9,999999999,12,0.081,0,88,0,0,1 +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.6,95,83500,960,1359,286,121,0,121,12623,0,12740,6197,10,10.3,10,10,0.4,61,9,999999999,12,0.081,0,88,0,0,1 +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.6,95,83800,1093,1359,286,210,6,206,25366,446,25007,10182,10,8.2,10,10,3.2,122,9,999999999,11,0.081,0,88,0,0,1 +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,-1,80,83600,1161,1359,286,315,12,305,37278,1001,36311,14066,20,11.8,9,9,16.1,660,9,999999999,11,0.081,0,88,0,0,1 +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,65535,17860,46859,17007,10,11.3,9,9,16,762,9,999999999,11,0.081,0,88,0,0,1 +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,27424,915,26355,10659,360,10.3,9,9,16,1128,9,999999999,11,0.081,0,88,0,0,1 +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,50257,14785,37579,13513,10,8.2,10,10,16,1158,9,999999999,10,0.081,0,88,0,0,1 +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,21777,459,21413,7975,30,7.7,9,9,16,1372,9,999999999,10,0.081,0,88,0,0,1 +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,18594,1653,17665,5806,20,7.2,10,10,16,1433,9,999999999,10,0.081,0,88,0,0,1 +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,4237,0,4268,1659,20,5.7,10,10,9.6,1036,9,999999999,9,0.081,0,88,0,0,1 +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,0,0,0,0,20,6.2,10,10,16,1676,9,999999999,9,0.081,0,88,0,0,1 +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,9,0.081,0,88,0,0,1 +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,1676,9,999999999,9,0.081,0,88,0,0,1 +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,1433,9,999999999,8,0.081,0,88,0,0,1 +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,8,0.081,0,88,0,0,1 +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,-2,92,83700,0,0,280,0,0,0,0,0,0,0,360,3.1,10,10,2,510,9,999999999,8,0.081,0,88,0,0,1 +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,7,0.081,0,88,0,0,1 +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,7,0.081,0,88,0,0,1 +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,7,0.081,0,88,0,0,1 +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,-4,100,83700,0,0,266,0,0,0,0,0,0,0,20,10.8,10,10,0.8,90,9,999999999,7,0.081,0,88,0,0,1 +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,6,0.081,0,88,0,0,1 +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,97,0,97,40,30,4.1,10,10,16,1524,9,999999999,6,0.081,0,88,0,0,1 +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,5334,0,5373,2022,20,3.6,9,9,16,1524,9,999999999,6,0.081,0,88,0,0,1 +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,9291,0,9366,3952,360,6.2,9,9,16,2743,9,999999999,6,0.081,0,88,0,0,1 +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,33335,3903,30805,10483,310,6.2,5,5,16,77777,9,999999999,6,0.081,0,88,0,0,1 +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,40047,3853,36825,13390,330,6.7,5,5,16,77777,9,999999999,6,0.081,0,88,0,0,1 +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,-11.7,37,84100,1097,1358,252,575,241,380,66406,22869,44171,16064,330,11.8,5,5,16,77777,9,999999999,6,0.081,0,88,0,0,1 +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,65142,15284,50005,17754,340,10.8,5,5,16,77777,9,999999999,5,0.081,0,88,0,0,1 +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,66189,17388,48697,17447,350,10.8,5,5,16,77777,9,999999999,5,0.081,0,88,0,0,1 +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,-11,36,83900,1093,1358,272,602,323,342,70060,29353,40049,14974,350,12.9,9,9,6.4,2400,9,999999999,5,0.081,0,88,0,0,1 +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,38,83900,958,1358,260,240,30,219,28342,2396,25993,10195,340,10.3,5,5,16,77777,9,999999999,5,0.081,0,88,0,0,1 +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,63261,47957,28154,9813,330,10.3,9,9,16,2591,9,999999999,5,0.081,0,88,0,0,1 +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,9994,0,10075,4165,340,12.9,7,7,16,2438,9,999999999,5,0.081,0,88,0,0,1 +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,7823,360,7624,2359,350,12.4,5,5,16,77777,9,999999999,5,0.081,0,88,0,0,1 +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,440,5158,352,72,350,8.2,9,9,16,2896,9,999999999,4,0.081,0,88,0,0,1 +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,3048,9,999999999,4,0.081,0,88,0,0,1 +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,2743,9,999999999,4,0.081,0,88,0,0,1 +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,2438,9,999999999,4,0.081,0,88,0,0,1 +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,2438,9,999999999,4,0.081,0,88,0,0,1 +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,77777,9,999999999,4,0.081,0,88,0,0,1 +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,77777,9,999999999,4,0.082,0,88,0,0,1 +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,77777,9,999999999,3,0.082,0,88,0,0,1 +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,2743,9,999999999,3,0.082,0,88,0,0,1 +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,2743,9,999999999,3,0.082,0,88,0,0,1 +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,-11.7,56,83800,0,0,234,0,0,0,0,0,0,0,280,3.1,5,5,16,77777,9,999999999,3,0.082,0,88,0,0,1 +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,-12.2,53,83500,51,871,234,6,149,2,663,6934,355,75,290,3.1,5,5,16,77777,9,999999999,3,0.082,0,88,0,0,1 +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,21925,20591,8080,2518,210,3.6,5,5,16,77777,9,999999999,3,0.082,0,88,0,0,1 +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,43698,41480,18280,6054,220,4.1,9,9,16,6096,9,999999999,3,0.082,0,88,0,0,1 +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,37700,9021,31577,10694,350,5.2,9,9,16,6096,9,999999999,3,0.082,0,88,0,0,1 +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,-11,36,83700,969,1357,279,589,358,333,67423,33469,38353,13804,330,10.8,10,10,14.5,1440,9,999999999,3,0.082,0,88,0,0,1 +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,36471,2042,34427,13359,340,7.2,10,10,16,2438,9,999999999,3,0.082,0,88,0,0,1 +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,22521,0,22742,10563,220,7.7,10,10,16,2134,9,999999999,3,0.082,0,88,0,0,1 +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,25924,0,26179,11851,230,4.6,10,10,16,2286,9,999999999,4,0.082,0,88,0,0,1 +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,14781,0,14924,7310,140,4.6,10,10,12.8,1463,9,999999999,4,0.082,0,88,0,0,1 +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,13156,0,13279,6430,30,7.7,10,10,0.8,183,9,999999999,4,0.082,0,88,0,0,1 +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,-3,92,83500,771,1357,275,99,0,99,10177,0,10266,4809,30,7.7,10,10,0.8,180,9,999999999,4,0.082,0,88,0,0,1 +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,9988,0,10068,4178,10,4.6,10,10,16,1494,9,999999999,4,0.082,0,88,0,0,1 +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,3454,0,3479,1408,350,11.8,9,9,8,1311,9,999999999,4,0.082,0,88,0,0,1 +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,545,4844,520,97,350,4.1,10,10,16,2438,9,999999999,4,0.082,0,88,0,0,1 +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,4,0.082,0,88,0,0,1 +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,1829,9,999999999,4,0.082,0,88,0,0,1 +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,2591,9,999999999,4,0.082,0,88,0,0,1 +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,77777,9,999999999,4,0.082,0,88,0,0,1 +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,77777,9,999999999,4,0.082,0,88,0,0,1 +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,77777,9,999999999,4,0.082,0,88,0,0,1 +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,77777,9,999999999,4,0.082,0,88,0,0,1 +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,77777,9,999999999,4,0.082,0,88,0,0,1 +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,77777,9,999999999,4,0.082,0,88,0,0,1 +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,77777,9,999999999,5,0.082,0,88,0,0,1 +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,760,5354,689,127,220,6.2,5,5,16,77777,9,999999999,5,0.082,0,88,0,0,1 +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,68,83700,300,1356,230,203,398,114,21900,21019,12353,3304,210,6.2,3,3,16,77777,9,999999999,5,0.082,0,88,0,0,1 +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,38886,33036,18402,6118,210,6.2,2,2,16,77777,9,999999999,5,0.082,0,88,0,0,1 +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,62038,46534,21086,7964,200,6.2,0,0,16,77777,9,999999999,5,0.082,0,88,0,0,1 +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,83720,53809,24173,9635,210,5.2,0,0,16,77777,9,999999999,5,0.082,0,88,0,0,1 +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,107610,62360,20203,8369,230,2.1,0,0,16,77777,9,999999999,5,0.082,0,88,0,0,1 +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,29,84100,1172,1356,260,946,956,118,98302,96486,15539,4292,220,3.1,0,0,16,77777,9,999999999,5,0.082,0,88,0,0,1 +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,98876,98742,13556,3914,240,2.1,3,3,16,77777,9,999999999,5,0.082,0,88,0,0,1 +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,93583,99006,13241,3180,270,2.6,5,5,16,77777,9,999999999,5,0.082,0,88,0,0,1 +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,80127,96381,10952,2212,290,2.6,5,5,16,77777,9,999999999,5,0.082,0,88,0,0,1 +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,72638,55201,10847,4339,320,4.1,5,5,16,77777,9,999999999,5,0.082,0,88,0,0,1 +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,46609,43123,8627,3210,270,1.5,5,5,16,77777,9,999999999,5,0.082,0,88,0,0,1 +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,30,84100,287,1356,303,172,607,44,19944,13835,5113,1714,220,4.1,5,5,16,77777,9,999999999,5,0.082,0,88,0,0,1 +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,548,6083,521,99,210,5.7,5,5,16,77777,9,999999999,5,0.082,0,88,0,0,1 +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,77777,9,999999999,5,0.082,0,88,0,0,1 +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,-3.9,51,83800,0,0,279,0,0,0,0,0,0,0,200,7.7,5,5,16,77777,9,999999999,5,0.082,0,88,0,0,1 +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,-3.9,51,83700,0,0,279,0,0,0,0,0,0,0,200,6.7,5,5,16,77777,9,999999999,5,0.082,0,88,0,0,1 +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,77777,9,999999999,5,0.082,0,88,0,0,1 +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,77777,9,999999999,5,0.082,0,88,0,0,1 +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,-3.9,51,83600,0,0,272,0,0,0,0,0,0,0,210,7.7,2,2,16,77777,9,999999999,5,0.083,0,88,0,0,1 +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,77777,9,999999999,5,0.083,0,88,0,0,1 +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,-4.4,48,83500,0,0,272,0,0,0,0,0,0,0,230,5.2,2,2,16,77777,9,999999999,5,0.083,0,88,0,0,1 +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,77777,9,999999999,5,0.083,0,88,0,0,1 +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,77777,9,999999999,5,0.083,0,88,0,0,1 +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,-3.9,51,83600,59,937,279,8,166,3,882,8277,526,106,240,5.7,5,5,16,77777,9,999999999,5,0.083,0,88,0,0,1 +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,21678,19145,7588,2437,260,7.2,7,7,16,7620,9,999999999,5,0.083,0,88,0,0,1 +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,48509,44912,9658,3596,270,8.2,9,9,16,7620,9,999999999,5,0.083,0,88,0,0,1 +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,72490,54830,13036,5198,290,9.3,9,9,16,7620,9,999999999,6,0.083,0,88,0,0,1 +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,78718,89041,15626,2612,310,8.2,9,9,16,7620,9,999999999,6,0.083,0,88,0,0,1 +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,91850,92564,17491,3726,300,6.7,9,9,16,7620,9,999999999,6,0.083,0,88,0,0,1 +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,116061,62645,22577,9290,290,5.2,9,9,16,7620,9,999999999,6,0.083,0,88,0,0,1 +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,98919,51259,36870,14251,290,6.2,9,9,16,7315,9,999999999,6,0.083,0,88,0,0,1 +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,73682,30080,43541,15951,290,4.1,9,9,16,7315,9,999999999,6,0.083,0,88,0,0,1 +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,78464,48790,28652,11098,320,4.6,9,9,16,7315,9,999999999,6,0.083,0,88,0,0,1 +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,-6.1,16,84200,778,1355,362,304,83,257,34396,7293,29238,10160,340,4.6,9,9,16,7315,9,999999999,7,0.083,0,88,0,0,1 +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,18799,2090,17526,5859,340,2.6,9,9,16,7315,9,999999999,7,0.083,0,88,0,0,1 +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,-3,25,84200,291,1355,351,173,396,88,18982,16048,9692,2838,330,11.3,9,9,16.1,7200,9,999999999,7,0.083,0,88,0,0,1 +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,761,7255,687,121,360,9.8,9,9,16,7315,9,999999999,7,0.083,0,88,0,0,1 +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,7315,9,999999999,7,0.083,0,88,0,0,1 +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,77777,9,999999999,7,0.083,0,88,0,0,1 +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,77777,9,999999999,8,0.083,0,88,0,0,1 +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,77777,9,999999999,8,0.083,0,88,0,0,1 +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,77777,9,999999999,8,0.083,0,88,0,0,1 +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,7620,9,999999999,8,0.083,0,88,0,0,1 +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,77777,9,999999999,8,0.083,0,88,0,0,1 +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,77777,9,999999999,8,0.083,0,88,0,0,1 +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,77777,9,999999999,9,0.083,0,88,0,0,1 +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,77777,9,999999999,9,0.083,0,88,0,0,1 +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,1216,10529,527,108,210,7.2,5,5,16,77777,9,999999999,9,0.083,0,88,0,0,1 +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,23608,20359,6862,2262,210,7.2,5,5,16,77777,9,999999999,9,0.083,0,88,0,0,1 +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,-1.1,33,84000,567,1355,325,421,807,83,49969,45501,9880,3685,230,4.6,5,5,16,77777,9,999999999,9,0.083,0,88,0,0,1 +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,19,84100,796,1355,335,603,844,107,73275,55137,13046,5211,300,3.6,5,5,16,77777,9,999999999,9,0.083,0,88,0,0,1 +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,89758,57293,19952,8142,290,1.5,9,9,16,7620,9,999999999,9,0.083,0,88,0,0,1 +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,18,83600,1112,1355,360,748,525,316,87794,45428,37314,14277,270,2.1,9,9,16,7620,9,999999999,9,0.083,0,88,0,0,1 +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,16,84100,1179,1355,369,527,126,417,61095,11955,48672,17527,260,7.2,9,9,16,7620,9,999999999,9,0.083,0,88,0,0,1 +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,102880,54229,35334,13776,340,4.1,9,9,16,7620,9,999999999,9,0.083,0,88,0,0,1 +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,14,84100,1105,1355,377,883,830,204,107075,62208,24860,10135,260,4.1,9,9,16,7620,9,999999999,9,0.083,0,88,0,0,1 +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,77092,47459,26145,10302,360,3.6,9,9,16,7620,9,999999999,9,0.083,0,88,0,0,1 +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,15,83900,781,1355,374,526,625,164,61705,46085,19323,7389,350,4.1,9,9,16,7620,9,999999999,9,0.083,0,88,0,0,1 +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,33792,24589,18885,6197,290,2.6,10,10,14.4,7620,9,999999999,9,0.083,0,88,0,0,1 +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,17185,12265,6505,2125,120,1.5,10,10,16,7620,9,999999999,9,0.083,0,88,0,0,1 +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,482,0,485,182,180,3.1,10,10,16,7620,9,999999999,9,0.083,0,88,0,0,1 +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,7620,9,999999999,9,0.083,0,88,0,0,1 +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,7620,9,999999999,9,0.083,0,88,0,0,1 +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,44,83200,0,0,330,0,0,0,0,0,0,0,150,2.1,9,9,16,7620,9,999999999,9,0.083,0,88,0,0,1 +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,7620,9,999999999,9,0.083,0,88,0,0,1 +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,52,83000,0,0,319,0,0,0,0,0,0,0,140,3.1,9,9,16,7620,9,999999999,9,0.083,0,88,0,0,1 +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,48,83100,0,0,325,0,0,0,0,0,0,0,250,3.1,10,9,16,7620,9,999999999,9,0.083,0,88,0,0,1 +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,56,83000,0,0,314,0,0,0,0,0,0,0,230,3.6,10,9,16,7620,9,999999999,9,0.083,0,88,0,0,1 +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,7620,9,999999999,9,0.083,0,88,0,0,1 +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,7620,9,999999999,9,0.083,0,88,0,0,1 +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,7620,9,999999999,9,0.083,0,88,0,0,1 +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,833,0,715,225,220,1.5,10,9,16,7620,9,999999999,9,0.083,0,88,0,0,1 +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,12143,1954,11204,3262,210,3.6,10,9,16,7620,9,999999999,9,0.083,0,88,0,0,1 +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,27162,8948,22062,7019,190,3.1,10,9,16,6096,9,999999999,9,0.083,0,88,0,0,1 +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,56188,33279,31432,10856,190,4.6,10,9,16,6096,9,999999999,9,0.083,0,88,0,0,1 +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,94834,60666,20629,8407,280,2.6,10,9,16,7620,9,999999999,9,0.083,0,88,0,0,1 +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,105209,60252,28825,11558,0,0,10,9,16,7620,9,999999999,9,0.083,0,88,0,0,1 +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,56344,8373,47485,17258,130,3.6,10,9,16,5486,9,999999999,9,0.083,0,88,0,0,1 +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,55356,7276,47786,17324,90,3.6,10,9,16,5486,9,999999999,9,0.083,0,88,0,0,1 +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,62919,18802,43888,16077,280,2.1,10,9,16,3353,9,999999999,9,0.083,0,88,0,0,1 +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,13693,0,13821,6687,290,3.6,10,9,16,5486,9,999999999,9,0.083,0,88,0,0,1 +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.6,25,83000,784,1354,369,149,0,149,15325,0,15460,6858,10,3.6,10,9,16,3353,9,999999999,9,0.083,0,88,0,0,1 +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,29,82500,554,1354,372,120,0,120,12104,0,12203,4917,90,5.7,10,10,16,5486,9,999999999,9,0.083,0,88,0,0,1 +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,4836,0,4872,1896,80,4.6,10,10,16,5486,9,999999999,9,0.083,0,88,0,0,1 +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,36,82800,54,914,355,10,168,5,1088,8090,853,143,360,3.1,10,10,16,3048,9,999999999,9,0.083,0,88,0,0,1 +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,2743,9,999999999,9,0.083,0,88,0,0,1 +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,3658,9,999999999,9,0.083,0,88,0,0,1 +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,2438,9,999999999,9,0.083,0,88,0,0,1 +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,2438,9,999999999,9,0.083,0,88,0,0,1 +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,4572,9,999999999,9,0.083,0,88,0,0,1 +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,3353,9,999999999,9,0.084,0,88,0,0,1 +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,77777,9,999999999,9,0.084,0,88,0,0,1 +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,3658,9,999999999,9,0.084,0,88,0,0,1 +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,77777,9,999999999,9,0.084,0,88,0,0,1 +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,77777,9,999999999,9,0.084,0,88,0,0,1 +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,2.8,86,82100,71,1026,286,0,0,0,0,0,0,0,150,3.1,6,5,16,77777,9,999999999,9,0.084,0,88,0,0,1 +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,25917,23291,7719,2523,130,4.1,10,9,16,7620,9,999999999,10,0.084,0,88,0,0,1 +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,50,82400,577,1353,322,427,806,82,50830,45333,9789,3673,90,3.6,10,9,16,7620,9,999999999,10,0.084,0,88,0,0,1 +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,67767,92374,13028,1893,60,4.6,6,5,16,77777,9,999999999,10,0.084,0,88,0,0,1 +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,82138,95569,11823,2410,90,4.6,10,9,16,7620,9,999999999,10,0.084,0,88,0,0,1 +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,109651,62475,24677,10079,30,5.2,10,9,16,7620,9,999999999,10,0.084,0,88,0,0,1 +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,90523,41864,41764,15738,20,3.6,10,9,16,7620,9,999999999,10,0.084,0,88,0,0,1 +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,-3.3,27,82400,1182,1353,341,756,503,315,89619,42427,37568,14492,360,4.6,10,9,16,6096,9,999999999,10,0.084,0,88,0,0,1 +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,81180,38317,40140,15091,40,3.6,10,9,16,6096,9,999999999,10,0.084,0,88,0,0,1 +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,26483,1391,25063,9962,90,5.2,10,9,16,3353,9,999999999,10,0.084,0,88,0,0,1 +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,-4,29,82300,787,1353,340,150,0,150,15446,0,15582,6909,110,5.7,10,10,16.1,2400,9,999999999,10,0.084,0,88,0,0,1 +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,21081,3866,18813,6226,90,5.7,10,10,16,2743,9,999999999,10,0.084,0,88,0,0,1 +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,3062,0,3085,1288,320,5.2,10,10,16,2286,9,999999999,10,0.084,0,88,0,0,1 +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,96,0,97,40,270,6.2,10,10,12.8,1128,9,999999999,10,0.084,0,88,0,0,1 +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,1189,9,999999999,10,0.084,0,88,0,0,1 +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,975,9,999999999,10,0.084,0,88,0,0,1 +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,10,0.084,0,88,0,0,1 +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,4.4,96,82200,0,0,313,0,0,0,0,0,0,0,30,4.1,10,10,12.8,213,9,999999999,10,0.084,0,88,0,0,1 +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,610,9,999999999,10,0.084,0,88,0,0,1 +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,11,0.084,0,88,0,0,1 +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,3,100,81900,0,0,303,0,0,0,0,0,0,0,120,3.6,10,10,8,120,9,999999999,11,0.084,0,88,0,0,1 +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,11,0.084,0,88,0,0,1 +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,100,81900,0,0,287,0,0,0,0,0,0,0,0,0,10,10,2.8,213,9,999999999,11,0.084,0,88,0,0,1 +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,100,82300,0,0,287,0,0,0,0,0,0,0,0,0,10,10,2.4,213,9,999999999,11,0.084,0,88,0,0,1 +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,100,82000,76,1071,287,0,0,0,0,0,0,0,310,2.1,10,10,0.8,152,9,999999999,11,0.084,0,88,0,0,1 +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.6,95,82100,329,1352,286,34,0,34,3365,0,3390,1430,290,2.1,10,10,0.8,91,9,999999999,11,0.084,0,88,0,0,1 +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,100,82200,582,1352,287,70,0,70,7078,0,7137,3212,330,1.5,10,10,0.4,91,9,999999999,11,0.084,0,88,0,0,1 +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,100,82100,809,1352,287,105,0,105,10821,0,10918,5161,330,1.5,10,10,0.4,90,9,999999999,11,0.084,0,88,0,0,1 +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,96,82300,994,1352,289,126,0,126,13184,0,13308,6504,310,2.6,10,10,0.6,61,9,999999999,11,0.084,0,88,0,0,1 +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,17021,0,17188,8304,350,4.1,10,10,0.8,122,9,999999999,11,0.084,0,88,0,0,1 +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,16154,0,16315,7946,290,4.6,10,10,2.4,122,9,999999999,11,0.084,0,88,0,0,1 +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,23372,0,23605,10927,290,4.1,10,10,4,61,9,999999999,11,0.084,0,88,0,0,1 +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,1,93,82500,1114,1352,296,222,0,222,23450,0,23679,10888,290,4.1,10,10,0.8,60,9,999999999,11,0.084,0,88,0,0,1 +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,26380,462,26039,10314,290,3.6,10,10,4.8,305,9,999999999,11,0.084,0,88,0,0,1 +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,9667,0,9753,4640,280,3.1,10,10,4.8,183,9,999999999,11,0.084,0,88,0,0,1 +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,6353,0,6405,2888,280,3.6,10,10,0.8,152,9,999999999,11,0.084,0,88,0,1,1 +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,3551,0,3578,1474,320,1.5,10,10,4,274,9,999999999,11,0.084,0,88,0,0,1 +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,2,93,83000,60,958,302,4,0,4,386,0,388,153,70,10.3,10,10,6.4,90,9,999999999,11,0.084,0,88,0,0,1 +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,11,0.084,0,88,0,0,1 +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,11,0.084,0,88,0,0,1 +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,122,9,999999999,11,0.084,0,88,0,0,1 +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,100,83500,0,0,287,0,0,0,0,0,0,0,70,1.5,10,10,3.2,122,9,999999999,11,0.084,0,88,0,0,1 +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,100,83400,0,0,287,0,0,0,0,0,0,0,320,1.5,10,10,1.6,152,9,999999999,11,0.084,0,88,0,0,1 +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.6,95,83500,0,0,286,0,0,0,0,0,0,0,0,0,10,10,1.6,152,9,999999999,11,0.085,0,88,0,0,1 +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.6,95,83400,0,0,286,0,0,0,0,0,0,0,20,2.6,10,10,1.6,274,9,999999999,11,0.085,0,88,0,0,1 +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,-1,92,83400,0,0,286,0,0,0,0,0,0,0,20,2.6,10,10,1.6,270,9,999999999,11,0.085,0,88,0,0,1 +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,11,0.085,0,88,0,0,1 +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,91,9,999999999,11,0.085,0,88,0,0,1 +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,-1,100,83500,80,1093,281,0,0,0,0,0,0,0,80,4.1,10,10,4.8,150,9,999999999,11,0.085,0,88,0,0,1 +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,7428,0,7484,2752,70,7.2,10,10,1.6,152,9,999999999,11,0.085,0,88,0,0,1 +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,7796,0,7860,3502,70,6.7,10,10,1.6,335,9,999999999,11,0.085,0,88,0,0,1 +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,10834,0,10930,5173,70,5.2,10,10,1.6,305,9,999999999,11,0.085,0,88,0,0,1 +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,13930,0,14061,6832,80,2.1,10,10,8,305,9,999999999,10,0.085,0,88,0,0,1 +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,15662,0,15815,7714,0,0,10,10,4,274,9,999999999,10,0.085,0,88,0,0,1 +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,-1.1,91,83900,1192,1352,286,182,0,182,19358,0,19551,9311,0,0,10,10,4.8,335,9,999999999,10,0.085,0,88,0,0,1 +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,-1.1,91,83900,1188,1352,286,208,0,208,22117,0,22337,10431,0,0,10,10,8,244,9,999999999,10,0.085,0,88,0,0,1 +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,-1.1,91,83800,1117,1352,286,292,12,283,34574,984,33703,13189,0,0,10,10,9.6,640,9,999999999,10,0.085,0,88,0,0,1 +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,-1,86,83800,982,1352,290,252,6,247,29564,485,29134,11331,0,0,10,10,16.1,1110,9,999999999,10,0.085,0,88,0,0,1 +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,15448,0,15585,6936,0,0,10,10,16,1067,9,999999999,10,0.085,0,88,0,0,1 +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,6867,0,6923,3097,0,0,10,10,6.4,396,9,999999999,10,0.085,0,88,0,0,1 +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,3161,0,3185,1334,0,0,10,10,4.8,335,9,999999999,10,0.085,0,88,0,0,1 +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,1514,9704,1182,179,0,0,10,10,4.8,274,9,999999999,10,0.085,0,88,0,0,1 +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,10,10,16,335,9,999999999,10,0.085,0,88,0,0,1 +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,10,10,11.2,305,9,999999999,10,0.085,0,88,0,0,1 +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,10,10,16,366,9,999999999,10,0.085,0,88,0,0,1 +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,610,9,999999999,10,0.085,0,88,0,0,1 +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,488,9,999999999,10,0.085,0,88,0,0,1 +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,1524,9,999999999,10,0.085,0,88,0,0,1 +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,77777,9,999999999,10,0.085,0,88,0,0,1 +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,77777,9,999999999,10,0.085,0,88,0,0,1 +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,77777,9,999999999,10,0.085,0,88,0,0,1 +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,77777,9,999999999,10,0.085,0,88,0,0,1 +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,77777,9,999999999,10,0.085,0,88,0,0,1 +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,-2.2,83,83700,339,1351,261,240,688,67,27382,25906,7667,2547,0,0,6,5,16,77777,9,999999999,10,0.085,0,88,0,0,1 +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,51605,48568,16739,5891,230,2.1,6,5,16,77777,9,999999999,11,0.085,0,88,0,0,1 +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,79,83800,818,1351,292,536,421,280,60605,37318,31842,11115,210,1.5,10,9,16,914,9,999999999,11,0.085,0,88,0,0,1 +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,52628,12450,41591,14880,180,3.1,10,9,16,610,9,999999999,11,0.085,0,88,0,0,1 +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,53578,8267,45080,16481,190,2.6,10,9,16,671,9,999999999,11,0.085,0,88,0,0,1 +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,87655,36801,45706,16863,230,4.1,10,9,16,792,9,999999999,11,0.085,0,88,0,0,1 +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,55946,7200,48381,17536,150,4.6,10,9,16,853,9,999999999,11,0.085,0,88,0,0,1 +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,49886,3889,46162,16715,160,5.2,10,10,16,792,9,999999999,12,0.085,0,88,0,0,1 +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,45173,6936,38896,14118,140,9.3,10,10,16,732,9,999999999,12,0.085,0,88,0,0,1 +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,23162,457,22809,8569,160,7.2,10,10,16,884,9,999999999,12,0.085,0,88,0,0,1 +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,8978,0,9052,3913,150,7.7,10,10,16,853,9,999999999,12,0.085,0,88,0,0,1 +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,3160,0,3183,1338,140,5.2,10,10,16,853,9,999999999,12,0.085,0,88,0,0,1 +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,2.2,82,83400,65,1002,311,10,83,7,1172,0,821,256,150,7.2,10,10,16,1280,9,999999999,12,0.085,0,88,0,0,1 +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,914,9,999999999,12,0.085,0,88,0,0,1 +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,2,87,83300,0,0,306,0,0,0,0,0,0,0,140,8.7,10,10,16.1,840,9,999999999,13,0.085,0,88,0,0,1 +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,853,9,999999999,13,0.085,0,88,0,0,1 +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,853,9,999999999,13,0.085,0,88,0,0,1 +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,884,9,999999999,13,0.085,0,88,0,0,1 +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,884,9,999999999,13,0.086,0,88,0,0,1 +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,13,0.086,0,88,0,0,1 +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,366,9,999999999,14,0.086,0,88,0,0,1 +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,1067,9,999999999,14,0.086,0,88,0,0,1 +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,914,9,999999999,14,0.086,0,88,0,0.3,1 +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,1,100,82600,89,1159,292,0,0,0,0,0,0,0,290,4.1,10,10,4,600,9,999999999,14,0.086,0,88,0,0,1 +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,96,82600,344,1350,289,156,187,109,17123,9665,12014,3571,270,4.1,10,10,3.2,61,9,999999999,14,0.086,0,88,0,0.8,1 +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,93,82600,597,1350,291,90,0,90,9113,0,9188,4030,270,4.1,10,10,2.4,60,9,999999999,13,0.086,0,88,0,0,1 +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,96,82600,822,1350,289,118,0,118,12175,0,12284,5753,290,2.1,10,10,5.6,122,9,999999999,13,0.086,0,88,0,0,1 +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,39459,4129,35504,13351,280,3.1,10,9,16,2134,9,999999999,13,0.086,0,88,0,0,1 +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,2.8,86,82700,1133,1350,311,648,289,405,74709,26831,47009,16979,310,2.1,10,10,16,396,9,999999999,13,0.086,0,88,0,0,1 +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,78819,27049,48738,17656,340,2.1,10,9,16,427,9,999999999,13,0.086,0,88,0,0,1 +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,62048,11231,50123,17973,40,3.1,10,10,16,610,9,999999999,13,0.086,0,88,0,0,1 +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,49952,4405,45641,16603,90,3.1,10,10,16,914,9,999999999,13,0.086,0,88,0,0,1 +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,61691,25430,37959,13906,90,2.6,10,9,16,1097,9,999999999,12,0.086,0,88,0,0,1 +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,10289,0,10381,4925,50,2.6,10,10,16,3048,9,999999999,12,0.086,0,88,0,0,1 +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,22372,4292,19668,6519,110,4.6,10,10,16,1036,9,999999999,12,0.086,0,88,0,0,1 +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,13576,5984,9972,3030,170,4.1,10,9,16,2743,9,999999999,12,0.086,0,88,0,0,1 +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,2.2,82,82600,68,1024,302,18,214,9,2076,0,1039,321,160,4.6,10,9,16,6096,9,999999999,12,0.086,0,88,0,0,1 +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,6096,9,999999999,12,0.086,0,88,0,0,1 +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,77777,9,999999999,12,0.086,0,88,0,0,1 +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,77777,9,999999999,11,0.086,0,88,0,0,1 +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,92,82600,0,0,267,0,0,0,0,0,0,0,180,4.1,10,5,16,77777,9,999999999,11,0.086,0,88,0,0,1 +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,77777,9,999999999,11,0.086,0,88,0,0,1 +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,77777,9,999999999,11,0.086,0,88,0,0,1 +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,-1.7,87,82200,0,0,262,0,0,0,0,0,0,0,160,3.1,5,5,16,77777,9,999999999,11,0.086,0,88,0,0,1 +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,77777,9,999999999,11,0.086,0,88,0,0,1 +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,-2.2,83,82100,0,0,261,0,0,0,0,0,0,0,170,2.1,5,5,16,77777,9,999999999,11,0.086,0,88,0,0,1 +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,7,7,16,3353,9,999999999,10,0.086,0,88,0,0,1 +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,2438,9,999999999,11,0.086,0,88,0,0,1 +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,27742,26655,8633,2837,190,1.5,9,9,16,2743,9,999999999,11,0.086,0,88,0,0,1 +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,3,76,82600,601,1349,312,416,660,121,48254,41956,14089,5153,290,5.7,9,9,16.1,5400,9,999999999,11,0.086,0,88,0,0,1 +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,75078,55325,23358,8875,300,4.1,9,9,9.6,2743,9,999999999,11,0.086,0,88,0,0,1 +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,29174,2277,26583,10601,10,4.1,9,9,8,6096,9,999999999,11,0.086,0,88,0,0,1 +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,70164,24162,43893,16217,20,5.2,9,9,12.8,2438,9,999999999,11,0.086,0,88,0,0,1 +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,113873,58972,31386,12516,360,3.6,9,9,16,2286,9,999999999,11,0.086,0,88,0,0,1 +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,94790,44021,40458,15413,30,2.6,9,9,16,945,9,999999999,11,0.086,0,88,0,0,1 +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,95123,50037,30161,12046,50,4.6,9,9,16,6096,9,999999999,11,0.086,0,88,0,0,1 +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,81248,48095,26510,10521,0,0,9,9,16,6096,9,999999999,11,0.086,0,88,0,0,1 +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,47066,21734,30151,10608,10,3.1,9,9,16,6096,9,999999999,11,0.086,0,88,0,0,1 +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,20117,2082,18743,6326,50,4.1,9,9,16,2896,9,999999999,11,0.086,0,88,0,0,1 +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,3160,0,3183,1346,60,2.1,9,9,16,2896,9,999999999,11,0.086,0,88,0,0,1 +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,3.9,66,83100,71,1046,326,11,64,8,1285,0,935,293,90,1.5,9,9,16,6096,9,999999999,11,0.086,0,88,0,0,1 +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,77777,9,999999999,11,0.086,0,88,0,0,1 +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,77777,9,999999999,11,0.086,0,88,0,0,1 +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,2.8,86,82800,0,0,286,0,0,0,0,0,0,0,170,4.6,5,5,16,77777,9,999999999,11,0.086,0,88,0,0,1 +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,77777,9,999999999,11,0.086,0,88,0,0,1 +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,77777,9,999999999,11,0.086,0,88,0,0,1 +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,77777,9,999999999,11,0.086,0,88,0,0,1 +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,77777,9,999999999,11,0.086,0,88,0,0,1 +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,77777,9,999999999,11,0.086,0,88,0,0,1 +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,77777,9,999999999,11,0.086,0,88,0,0,1 +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,6096,9,999999999,11,0.086,0,88,0,0,1 +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,6096,9,999999999,11,0.086,0,88,0,0,1 +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,16046,6976,12250,3677,250,2.6,9,9,16,6096,9,999999999,11,0.086,0,88,0,0,1 +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,18823,430,18566,6457,0,0,9,9,16,3658,9,999999999,12,0.086,0,88,0,0,1 +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,38439,8994,31361,11116,220,3.6,9,9,16,6096,9,999999999,12,0.086,0,88,0,0,1 +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,84707,49128,32740,12587,290,2.1,9,9,16,6706,9,999999999,12,0.086,0,88,0,0,1 +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,113620,62922,26543,10776,0,0,9,9,16,6706,9,999999999,12,0.086,0,88,0,0,1 +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,99512,47737,40079,15310,360,2.1,9,9,16,6706,9,999999999,12,0.086,0,88,0,0,1 +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,120474,62885,25622,10450,0,0,9,9,16,6706,9,999999999,12,0.086,0,88,0,0,1 +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,108162,60333,28967,11630,110,4.6,9,9,16,6096,9,999999999,12,0.086,0,88,0,0,1 +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,55190,18073,38330,14040,80,3.6,9,9,16,6706,9,999999999,12,0.086,0,88,0,0,1 +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,29100,1979,27651,9998,60,4.6,9,9,16,2896,9,999999999,12,0.086,0,88,0,0,1 +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,11707,0,11804,4891,40,3.6,9,9,16,2743,9,999999999,12,0.086,0,88,0,0,1 +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,48,83300,324,1349,357,92,28,85,10222,1121,9479,2958,50,3.6,9,9,16,6096,9,999999999,12,0.086,0,88,0,0,1 +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,965,0,971,357,60,4.6,9,9,16,6096,9,999999999,12,0.086,0,88,0,0,1 +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,6096,9,999999999,12,0.086,0,88,0,0,1 +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,6096,9,999999999,12,0.086,0,88,0,0,1 +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,6096,9,999999999,12,0.086,0,88,0,0,1 +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,6096,9,999999999,12,0.086,0,88,0,0,1 +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,6096,9,999999999,13,0.086,0,88,0,0,1 +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,6096,9,999999999,13,0.087,0,88,0,0,1 +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,7620,9,999999999,13,0.087,0,88,0,0,1 +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,93,82900,0,0,293,0,0,0,0,0,0,0,210,3.6,6,5,14.4,77777,9,999999999,13,0.087,0,88,0,0,1 +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,89,83000,0,0,313,0,0,0,0,0,0,0,180,3.4,9,9,14.4,6096,9,999999999,13,0.087,0,88,0,0,1 +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,13,0.087,0,88,0,0,1 +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,3.9,93,83000,103,1247,304,0,0,0,0,0,0,0,140,2.1,9,9,12.8,6096,9,999999999,13,0.087,0,88,0,0,1 +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,12448,1002,11945,3650,150,4.6,9,9,16,6096,9,999999999,13,0.087,0,88,0,0,1 +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,32907,14396,23948,7729,170,3.1,9,9,16,6096,9,999999999,13,0.087,0,88,0,0,1 +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,30511,2517,28496,10421,140,4.6,10,10,16,6096,9,999999999,14,0.087,0,88,0,0,1 +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,66033,24981,42974,15351,150,3.6,10,10,16,6096,9,999999999,14,0.087,0,88,0,0,1 +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,39225,2413,36383,14106,130,5.7,7,7,16,6096,9,999999999,14,0.087,0,88,0,0,1 +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,49351,2122,47109,17300,130,1.5,9,9,16,975,9,999999999,14,0.087,0,88,0,0,1 +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,48584,2595,45746,16938,130,6.7,10,10,16,6096,9,999999999,14,0.087,0,88,0,0,1 +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,30165,882,29127,11714,100,10.8,10,10,16,6096,9,999999999,14,0.087,0,88,0,0,1 +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,63517,28111,34737,13115,140,11.8,9,9,16,6096,9,999999999,15,0.087,0,88,0,0,1 +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,43873,16139,31195,10915,140,11.3,10,10,16,6096,9,999999999,15,0.087,0,88,0,0,1 +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,6850,0,6907,3129,170,7.2,10,10,16,1981,9,999999999,15,0.087,0,88,0,0,1 +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,7.2,83,83200,328,1348,339,32,0,32,3157,0,3181,1354,160,8.8,10,10,16,1524,9,999999999,15,0.087,0,88,0,0,1 +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,1631,0,1050,330,100,9.8,10,10,16,1341,9,999999999,15,0.087,0,88,0,0,1 +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,15,0.087,0,88,0,0,1 +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,16,0.087,0,88,0,0,1 +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,2438,9,999999999,16,0.087,0,88,0,8.1,1 +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,1981,9,999999999,16,0.087,0,88,0,0,1 +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,1676,9,999999999,16,0.087,0,88,0,0,1 +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,457,9,999999999,16,0.087,0,88,0,0,1 +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,457,9,999999999,16,0.087,0,88,0,0,1 +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,1829,9,999999999,17,0.087,0,88,0,0,1 +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,93,82900,0,0,319,0,0,0,0,0,0,0,120,6.2,10,10,16,1433,9,999999999,17,0.087,0,88,0,0,1 +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,1981,9,999999999,17,0.087,0,88,0,0,1 +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,4572,9,999999999,17,0.087,0,88,0,0,1 +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,89,83300,364,1347,321,152,106,124,16584,5928,13589,3980,100,5.7,10,10,16,640,9,999999999,17,0.087,0,88,0,0,1 +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,33491,14200,24893,7949,120,10.3,10,10,16,335,9,999999999,17,0.087,0,88,0,0,1 +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,30464,1485,29371,10681,140,9.3,10,10,16,396,9,999999999,17,0.087,0,88,0,0,1 +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,36518,1507,35220,13366,140,9.3,10,10,16,518,9,999999999,17,0.087,0,88,0,0,1 +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,28012,0,28291,12624,140,8.2,10,10,9.6,488,9,999999999,17,0.087,0,88,0,0,1 +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,25296,415,24807,10165,130,11.3,10,10,16,549,9,999999999,17,0.087,0,88,0,0,1 +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,6.7,80,83500,1204,1347,339,369,18,353,43390,1512,41778,15834,130,10.3,10,10,16,579,9,999999999,17,0.087,0,88,0,0,1 +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,35238,948,34257,13421,140,10.8,10,10,16,640,9,999999999,17,0.087,0,88,0,0,1 +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,13157,0,13282,6520,110,8.2,9,9,14.4,1250,9,999999999,17,0.087,0,88,0,0,1 +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,29191,1924,27630,10048,110,9.8,10,10,16,427,9,999999999,17,0.087,0,88,0,0,1 +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,12207,0,12308,5083,120,10.8,10,10,16,366,9,999999999,17,0.087,0,88,0,0,1 +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,12269,3114,10319,3173,120,13.4,9,9,16,366,9,999999999,17,0.087,0,88,0,0,1 +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,386,0,389,159,130,10.3,10,10,16,244,9,999999999,17,0.087,0,88,0,0,1 +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,17,0.087,0,88,0,0,1 +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,17,0.087,0,88,0,0,1 +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,17,0.087,0,88,0,0,1 +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,17,0.087,0,88,0,0,1 +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,792,9,999999999,17,0.087,0,88,0,0,1 +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,671,9,999999999,17,0.088,0,88,0,0,1 +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,732,9,999999999,17,0.088,0,88,0,0,1 +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,17,0.088,0,88,0,0,1 +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,274,9,999999999,17,0.088,0,88,0,0,1 +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,17,0.088,0,88,0,0,1 +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,213,9,999999999,17,0.088,0,88,0,0,1 +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,5550,0,5592,2278,140,7.7,10,10,8,610,9,999999999,17,0.088,0,88,0,0,1 +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,7699,0,7763,3531,150,7.2,10,10,6.4,610,9,999999999,17,0.088,0,88,0,0,1 +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,89,83600,841,1347,321,111,0,111,11453,0,11557,5507,140,9.3,10,10,9.6,762,9,999999999,17,0.088,0,88,0,0,1 +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,6,93,83600,1022,1347,324,132,0,132,13819,0,13951,6842,130,6.7,10,10,16.1,1140,9,999999999,17,0.088,0,88,0,0,1 +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,16283,0,16445,8012,120,7.7,10,10,8,457,9,999999999,17,0.088,0,88,0,0,1 +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,18067,0,18250,8796,150,4.6,10,10,2.4,518,9,999999999,16,0.088,0,88,0,4.3,1 +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,16471,0,16637,8103,220,5.7,10,10,2.4,610,9,999999999,16,0.088,0,88,0,0,1 +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,6,93,83400,1135,1347,324,146,0,146,15425,0,15578,7631,220,5.7,10,10,2.4,600,9,999999999,16,0.088,0,88,0,4.6,1 +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,4,100,83400,1001,1347,308,126,0,126,13178,0,13303,6526,280,4.6,10,10,3.2,540,9,999999999,16,0.088,0,88,0,4.1,1 +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,4.4,96,83400,814,1347,313,100,0,100,10297,0,10389,4960,300,3.6,10,10,3.2,518,9,999999999,16,0.088,0,88,0,0,1 +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,4.4,96,83400,586,1347,313,69,0,69,6970,0,7028,3183,340,3.1,10,10,1.6,427,9,999999999,16,0.088,0,88,0,0,1 +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,96,83300,335,1347,316,37,0,37,3657,0,3684,1549,310,5.2,10,10,0.4,213,9,999999999,16,0.088,0,88,0,0,1 +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,5,93,83200,84,1133,318,18,81,13,2054,0,1485,457,310,5.1,10,10,5.2,210,9,999999999,16,0.088,0,88,0,0,1 +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,4.4,96,83400,0,0,313,0,0,0,0,0,0,0,270,4.1,10,10,11.2,122,9,999999999,15,0.088,0,88,0,0,1 +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,15,0.088,0,88,0,0,1 +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,97,83400,0,0,298,0,0,0,0,0,0,0,0,2,9,9,11.2,427,9,999999999,15,0.088,0,88,0,0,1 +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,15,0.088,0,88,0,0,1 +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,15,0.088,0,88,0,0,1 +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,77777,9,999999999,5,0.089,0,88,0,0,1 +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,77777,9,999999999,5,0.089,0,88,0,0,1 +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,77777,9,999999999,5,0.089,0,88,0,0,1 +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,-2.2,83,83700,0,0,246,0,0,0,0,0,0,0,260,1.5,0,0,32,77777,9,999999999,4,0.089,0,88,0,0,1 +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,77777,9,999999999,4,0.089,0,88,0,0,1 +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,5676,0,2388,734,200,2.1,0,0,96,77777,9,999999999,4,0.089,0,88,0,0,1 +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,28416,23828,5143,1824,0,0,0,0,96,77777,9,999999999,5,0.089,0,88,0,0,1 +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,48514,83197,9311,1409,310,2.1,0,0,96,77777,9,999999999,5,0.089,0,88,0,0,1 +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,69808,93022,11040,1915,230,2.1,0,0,96,77777,9,999999999,5,0.089,0,88,0,0,1 +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,-1.1,45,83600,1025,1346,286,825,966,89,87122,97959,12255,2644,310,1.5,0,0,96,77777,9,999999999,5,0.089,0,88,0,0,1 +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,99287,100638,12846,3663,20,3.1,0,0,96,77777,9,999999999,5,0.089,0,88,0,0,1 +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,105333,101696,13057,4580,50,3.1,0,0,80,77777,9,999999999,5,0.089,0,88,0,0,1 +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,104745,101532,13069,4499,100,3.6,0,0,80,77777,9,999999999,5,0.089,0,88,0,0,1 +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,28,83200,1137,1346,331,885,938,93,93409,95479,12502,3454,70,4.1,1,1,96,77777,9,999999999,6,0.089,0,88,0,0,1 +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,72824,41178,22046,8976,120,5.7,5,3,96,77777,9,999999999,6,0.089,0,88,0,0,1 +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,70633,51762,17130,6764,100,4.6,7,4,96,77777,9,999999999,6,0.089,0,88,0,0,1 +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,42454,36275,15899,5649,130,2.1,8,4,96,77777,9,999999999,6,0.089,0,88,0,0,1 +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,15942,3197,14501,3896,140,2.1,9,7,96,7620,9,999999999,6,0.089,0,88,0,0,1 +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,2132,0,1912,569,190,3.1,9,6,80,7620,9,999999999,6,0.089,0,88,0,0,1 +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,77777,9,999999999,6,0.089,0,88,0,0,1 +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,77777,9,999999999,7,0.089,0,88,0,0,1 +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,77777,9,999999999,7,0.089,0,88,0,0,1 +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,77777,9,999999999,7,0.089,0,88,0,0,1 +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,77777,9,999999999,7,0.089,0,88,0,0,1 +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,32,77777,9,999999999,7,0.089,0,88,0,0,1 +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,77777,9,999999999,7,0.089,0,88,0,0,1 +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,77777,9,999999999,7,0.089,0,88,0,0,1 +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,77777,9,999999999,8,0.089,0,88,0,0,1 +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,77777,9,999999999,8,0.089,0,88,0,0,1 +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,5021,0,3020,897,340,4.6,0,0,96,77777,9,999999999,8,0.089,0,88,0,0,1 +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,25865,22940,7008,2433,350,5.2,0,0,80,77777,9,999999999,8,0.089,0,88,0,0,1 +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,52292,44421,10344,3954,340,5.2,0,0,64,77777,9,999999999,8,0.089,0,88,0,0,1 +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,78279,54389,13275,5393,360,4.6,0,0,64,77777,9,999999999,8,0.089,0,88,0,0,1 +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,95618,55897,16081,6716,350,6.2,1,1,64,77777,9,999999999,8,0.089,0,88,0,0,1 +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,95387,92456,17313,4419,340,5.2,1,1,64,77777,9,999999999,8,0.089,0,88,0,0,1 +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,119526,61709,26960,10942,30,5.2,3,3,64,77777,9,999999999,8,0.089,0,88,0,0,1 +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,112325,57841,34281,13494,320,4.1,6,5,64,6706,9,999999999,8,0.089,0,88,0,0,1 +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,84669,40842,35378,13762,340,6.2,8,6,32,6706,9,999999999,8,0.089,0,88,0,0,1 +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,69861,35805,32961,12628,350,6.2,7,5,16,6706,9,999999999,8,0.089,0,88,0,0,1 +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,52634,31003,25407,9460,330,8.2,6,6,24,6706,9,999999999,8,0.089,0,88,0,0,1 +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,41370,34152,16641,5876,330,5.2,6,6,24,1280,9,999999999,8,0.089,0,88,0,0,1 +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,12873,7339,6394,2186,350,7.2,5,5,24,77777,9,999999999,8,0.089,0,88,0,0,1 +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,2746,0,2533,713,350,5.2,7,7,24,1372,9,999999999,8,0.089,0,88,0,0,1 +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,1067,9,999999999,8,0.089,0,88,0,0,1 +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,975,9,999999999,8,0.089,0,88,0,0,1 +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,-2.2,58,83100,0,0,306,0,0,0,0,0,0,0,20,5.2,10,10,32,1036,9,999999999,8,0.089,0,88,0,0,1 +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,671,9,999999999,8,0.089,0,88,0,0,1 +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,671,9,999999999,8,0.089,0,88,0,0,1 +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,640,9,999999999,8,0.089,0,88,0,0,1 +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,77777,9,999999999,8,0.089,0,88,0,0,1 +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,77777,9,999999999,8,0.089,0,88,0,0,1 +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,77777,9,999999999,8,0.089,0,88,0,0,1 +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,77777,9,999999999,8,0.089,0,88,0,0,1 +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,5007,0,3235,956,120,2.1,0,0,32,77777,9,999999999,8,0.089,0,88,0,0,1 +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,25259,22135,7552,2609,100,2.1,0,0,16,77777,9,999999999,8,0.089,0,88,0,0,1 +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.6,67,83000,630,1344,272,410,645,108,48340,40532,12777,4808,80,3.1,1,1,19.2,77777,9,999999999,8,0.089,0,88,0,0,1 +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,60,83000,852,1344,276,634,812,120,77081,53579,14642,5926,100,2.6,0,0,19.2,77777,9,999999999,8,0.089,0,88,0,0,1 +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,93449,53955,16776,6999,10,2.1,1,1,19.2,77777,9,999999999,8,0.089,0,88,0,0,1 +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,99121,51258,25488,10395,360,3.6,3,3,24,77777,9,999999999,8,0.089,0,88,0,0,1 +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,61996,14239,45150,16795,80,6.2,7,7,19.2,6706,9,999999999,8,0.089,0,88,0,0,1 +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,36,82700,1213,1344,345,421,84,346,49773,7186,41166,15654,80,6.7,9,9,24,3048,9,999999999,8,0.089,0,88,0,0,1 +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,51650,11467,38473,14710,90,7.7,9,7,24,7620,9,999999999,8,0.089,0,88,0,0,1 +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.6,34,82600,1008,1344,337,559,225,390,63546,21697,44628,15653,90,6.2,9,8,24,3353,9,999999999,9,0.089,0,88,0,0,1 +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,21780,0,21975,9226,90,6.7,10,10,24,3353,9,999999999,9,0.089,0,88,0,0,1 +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,36,82700,595,1344,345,154,63,126,17807,4124,14626,5302,60,5.2,9,9,24,3353,9,999999999,9,0.089,0,88,0,0,1 +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,40,82800,345,1344,337,109,34,100,12056,1658,11103,3402,60,5.2,9,9,32,3353,9,999999999,9,0.089,0,88,0,0,1 +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,43,82800,93,1199,332,20,0,20,1938,0,1951,657,90,3.1,9,9,32,3353,9,999999999,9,0.089,0,88,0,0,1 +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,50,83000,0,0,331,0,0,0,0,0,0,0,20,7.2,10,10,24,3353,9,999999999,9,0.089,0,88,0,0,1 +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,2438,9,999999999,9,0.089,0,88,0,0,1 +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,610,9,999999999,9,0.089,0,88,0,0.3,1 +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,2.8,86,83400,0,0,311,0,0,0,0,0,0,0,350,5.2,10,10,16,732,9,999999999,9,0.089,0,88,0,0,1 +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,3.3,89,83400,0,0,312,0,0,0,0,0,0,0,360,4.1,10,10,11.2,366,9,999999999,9,0.089,0,88,0,0,1 +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,305,9,999999999,9,0.089,0,88,0,0,1 +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,2.8,86,83400,0,0,311,0,0,0,0,0,0,0,60,3.6,10,10,16,244,9,999999999,9,0.089,0,88,0,0,1 +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,213,9,999999999,9,0.089,0,88,0,0,1 +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,10,0.089,0,88,0,0,1 +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,10,0.089,0,88,0,0,1 +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,1457,0,1467,570,350,2.1,10,10,19.2,244,9,999999999,10,0.089,0,88,0,0,1 +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,2.8,86,83500,386,1344,311,60,0,60,5963,0,6008,2453,40,2.6,10,10,19.2,274,9,999999999,9,0.089,0,88,0,0,1 +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,3.3,89,83500,634,1344,312,111,0,111,11265,0,11360,4931,20,2.6,10,10,19.2,244,9,999999999,9,0.089,0,88,0,0,1 +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,16338,0,16487,7500,40,2.1,10,10,19.2,274,9,999999999,9,0.089,0,88,0,0,1 +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,20460,0,20657,9609,10,2.1,10,10,24,396,9,999999999,9,0.089,0,88,0,0,1 +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,27882,0,28159,12588,70,3.1,10,10,32,518,9,999999999,9,0.089,0,88,0,0,1 +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,29614,0,29914,13296,100,4.6,10,10,32,610,9,999999999,9,0.089,0,88,0,0.3,1 +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,29501,0,29798,13247,80,6.2,10,10,24,762,9,999999999,9,0.089,0,88,0,1,1 +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,2.8,86,83600,1143,1344,311,259,0,259,27424,0,27695,12402,90,5.2,10,10,11.2,732,9,999999999,9,0.089,0,88,0,0.8,1 +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,23780,0,24006,10774,60,6.2,10,10,16,549,9,999999999,9,0.089,0,88,0,0,1 +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,18668,0,18836,8226,50,4.1,10,10,24,1372,9,999999999,9,0.089,0,88,0,0.5,1 +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,10524,0,10612,4560,60,3.1,10,10,16,244,9,999999999,9,0.089,0,88,0,0.5,1 +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,5250,0,5290,2135,20,2.6,10,10,16,244,9,999999999,9,0.089,0,88,0,0.5,1 +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,1065,0,1072,410,360,3.1,10,10,8,335,9,999999999,8,0.089,0,88,0,0,1 +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,335,9,999999999,8,0.089,0,88,0,0.5,1 +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,8,0.089,0,88,0,0,1 +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,8,0.089,0,88,0,1.8,1 +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,8,0.089,0,88,0,0.8,1 +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,8,0.089,0,88,0,0.3,1 +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,8,0.089,0,88,0,0.3,1 +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,396,9,999999999,8,0.089,0,88,0,0,1 +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,10,10,11.2,1006,9,999999999,8,0.089,0,88,0,0,1 +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,10,10,11.2,1097,9,999999999,8,0.089,0,88,0,0,1 +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,10,10,8,975,9,999999999,8,0.089,0,88,0,0,1 +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,1945,0,1958,733,190,1.5,10,10,8,488,9,999999999,8,0.089,0,88,0,0,1 +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,7464,0,7522,2950,100,3.1,10,10,16,457,9,999999999,8,0.089,0,88,0,0,1 +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,39446,7598,35902,9615,130,1.5,10,9,19.2,853,9,999999999,8,0.089,0,88,0,0,1 +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,57215,31133,30494,11117,250,2.1,9,9,48,610,9,999999999,8,0.089,0,88,0,0,1 +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,82641,46494,26851,10768,330,2.1,7,7,64,853,9,999999999,8,0.089,0,88,0,0,1 +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,105184,54701,22425,9242,20,3.1,4,4,80,77777,9,999999999,8,0.089,0,88,0,0,1 +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,97121,89888,16091,5594,330,2.6,2,2,96,77777,9,999999999,8,0.089,0,88,0,0,1 +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,102875,93779,19499,6141,20,3.1,3,3,96,77777,9,999999999,8,0.089,0,88,0,0,1 +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,93877,92755,15481,4083,40,3.6,2,2,80,77777,9,999999999,8,0.089,0,88,0,0,1 +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,38,84000,1012,1343,316,717,772,135,88533,51791,16735,6966,40,4.6,3,3,80,77777,9,999999999,8,0.089,0,88,0,0,1 +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,72623,51461,14699,5904,360,2.6,1,1,80,77777,9,999999999,8,0.089,0,88,0,0,1 +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,43297,76278,8194,1316,350,2.6,1,1,80,77777,9,999999999,8,0.089,0,88,0,0,1 +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,23365,19712,6525,2242,80,2.1,1,1,80,77777,9,999999999,8,0.089,0,88,0,0,1 +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,44,84000,100,1242,294,41,293,17,4661,0,1936,594,90,3.1,1,0,80,77777,9,999999999,8,0.089,0,88,0,0,1 +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,52,84000,0,0,290,0,0,0,0,0,0,0,110,2.6,1,1,80,77777,9,999999999,8,0.089,0,88,0,0,1 +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,52,84100,0,0,284,0,0,0,0,0,0,0,120,1.5,3,0,32,77777,9,999999999,8,0.089,0,88,0,0,1 +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,56,84100,0,0,285,0,0,0,0,0,0,0,160,4.1,2,1,32,77777,9,999999999,8,0.089,0,88,0,0,1 +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,77777,9,999999999,8,0.089,0,88,0,0,1 +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,77777,9,999999999,8,0.089,0,88,0,0,1 +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,62,83900,0,0,288,0,0,0,0,0,0,0,200,4.1,5,4,32,77777,9,999999999,8,0.089,0,88,0,0,1 +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,77777,9,999999999,8,0.089,0,88,0,0,1 +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,77777,9,999999999,8,0.089,0,88,0,0,1 +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,67,83800,0,0,275,0,0,0,0,0,0,0,210,2.1,8,1,32,77777,9,999999999,8,0.089,0,88,0,0,1 +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,73,83900,1,123,274,0,2,0,0,0,0,0,320,2.1,7,2,64,77777,9,999999999,8,0.089,0,88,0,0,1 +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,5245,0,3468,1040,190,2.1,5,1,96,77777,9,999999999,8,0.089,0,88,0,0,1 +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,25963,22685,8216,2837,180,2.6,2,1,96,77777,9,999999999,8,0.089,0,88,0,0,1 +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,50597,41150,10703,4112,90,1,4,1,96,77777,9,999999999,8,0.089,0,88,0,0,1 +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,65729,43321,21458,8405,0,0,7,2,96,77777,9,999999999,8,0.089,0,88,0,0,1 +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,92414,55078,28660,11383,190,2.1,9,4,96,77777,9,999999999,9,0.089,0,88,0,0,1 +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,98572,51091,27245,11029,140,3.1,7,2,96,77777,9,999999999,9,0.089,0,88,0,0,1 +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,115939,58998,26446,10747,40,1.5,6,3,80,77777,9,999999999,9,0.089,0,88,0,0,1 +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,-2.8,21,83500,1219,1342,353,691,355,368,81447,31300,43658,16383,120,4.1,7,7,96,3962,9,999999999,9,0.089,0,88,0,0,1 +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,-4.4,18,83400,1148,1342,364,642,105,551,72569,11425,62754,20118,130,3.6,10,9,96,3962,9,999999999,9,0.089,0,88,0,0,1 +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,-3.3,20,83400,1015,1342,365,530,218,364,60701,20466,41956,15107,130,2.6,10,9,96,6706,9,999999999,10,0.089,0,88,0,0,1 +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,18191,0,18354,8074,170,3.6,10,10,96,2896,9,999999999,10,0.089,0,88,0,0,1 +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,12064,0,12164,5108,320,5.2,10,10,96,2743,9,999999999,10,0.089,0,88,0,0,1 +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,32,83400,355,1342,363,59,0,59,5852,0,5897,2348,310,5.2,10,10,96,2743,9,999999999,10,0.089,0,88,0,0,1 +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,1551,0,1562,571,50,2.6,10,10,64,2591,9,999999999,10,0.089,0,88,0,0,1 +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.6,37,83500,0,0,356,0,0,0,0,0,0,0,50,2.6,10,10,32,2438,9,999999999,10,0.089,0,88,0,0,1 +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.6,37,83500,0,0,356,0,0,0,0,0,0,0,20,1.5,10,10,32,2134,9,999999999,11,0.089,0,88,0,0,1 +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,1676,9,999999999,11,0.089,0,88,0,0,1 +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,63,83500,0,0,345,0,0,0,0,0,0,0,130,5.2,10,10,32,1981,9,999999999,11,0.089,0,88,0,0,1 +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,3353,9,999999999,11,0.089,0,88,0,0,1 +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,74,83400,0,0,309,0,0,0,0,0,0,0,120,3.1,10,6,32,8534,9,999999999,11,0.089,0,88,0,0,1 +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,80,83400,0,0,300,0,0,0,0,0,0,0,130,3.1,9,4,32,77777,9,999999999,11,0.089,0,88,0,0,1 +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,80,83300,0,0,297,0,0,0,0,0,0,0,130,2.6,10,3,32,77777,9,999999999,12,0.089,0,88,0,0,1 +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,86,83300,0,0,295,0,0,0,0,0,0,0,150,1.5,10,4,32,77777,9,999999999,12,0.089,0,88,0,0,1 +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,93,83400,1,145,319,0,0,0,0,0,0,0,130,1.5,10,10,64,3353,9,999999999,12,0.089,0,88,0,0,1 +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,2623,0,2642,948,210,2.1,10,10,80,3353,9,999999999,12,0.089,0,88,0,0,1 +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,5.6,74,83500,398,1342,328,72,28,63,8385,1113,7356,2584,230,1.5,10,9,80,3353,9,999999999,12,0.089,0,88,0,0,1 +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,66,83500,644,1342,342,161,0,161,16345,0,16484,6647,310,2.6,10,10,64,3048,9,999999999,12,0.089,0,88,0,0,1 +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,59,83500,864,1342,341,395,95,333,44367,8788,37637,12863,360,3.1,10,9,64,3353,9,999999999,12,0.089,0,88,0,0,1 +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,65178,25746,38839,14507,120,2.6,9,7,64,7620,9,999999999,12,0.089,0,88,0,0,1 +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,89186,41901,36701,14232,360,2.6,8,5,64,7620,9,999999999,12,0.089,0,88,0,0,1 +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,114370,56652,25738,10495,20,3.1,5,2,64,77777,9,999999999,11,0.089,0,88,0,0,1 +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,81852,25995,53519,18913,330,2.6,8,6,72,7620,9,999999999,11,0.089,0,88,0,0,1 +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,85119,41636,28078,11330,70,3.1,7,5,96,7620,9,999999999,11,0.089,0,88,0,0,1 +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,2.2,31,83500,1017,1342,346,711,565,282,83012,46869,33115,12743,360,4.6,5,3,96,77777,9,999999999,11,0.089,0,88,0,0,1 +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,26,83500,832,1342,347,493,472,200,57451,36371,23420,8931,40,2.6,5,4,80,77777,9,999999999,11,0.089,0,88,0,0,1 +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,35078,23634,17960,6313,50,2.1,5,5,80,77777,9,999999999,11,0.089,0,88,0,0,1 +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,21096,16765,6856,2356,10,3.1,2,2,80,77777,9,999999999,11,0.089,0,88,0,0,1 +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,4351,0,2572,762,40,3.6,3,3,96,77777,9,999999999,11,0.089,0,88,0,0,1 +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,77777,9,999999999,11,0.089,0,88,0,0,1 +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,77777,9,999999999,11,0.089,0,88,0,0,1 +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,63,83800,0,0,299,0,0,0,0,0,0,0,190,1.5,0,0,32,77777,9,999999999,11,0.089,0,88,0,0,1 +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,77777,9,999999999,11,0.089,0,88,0,0,1 +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,77777,9,999999999,11,0.089,0,88,0,0,1 +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,77777,9,999999999,11,0.089,0,88,0,0,1 +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,77777,9,999999999,11,0.089,0,88,0,0,1 +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,77777,9,999999999,11,0.089,0,88,0,0,1 +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,77777,9,999999999,10,0.089,0,88,0,0,1 +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,77777,9,999999999,10,0.089,0,88,0,0,1 +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,6407,0,3380,1036,200,2.6,3,1,112,77777,9,999999999,10,0.089,0,88,0,0,1 +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,27134,23672,8337,2891,210,3.6,2,1,112,77777,9,999999999,10,0.089,0,88,0,0,1 +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,54817,44431,9485,3678,210,5.7,1,0,112,77777,9,999999999,10,0.089,0,88,0,0,1 +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,66062,83136,13008,2100,180,5.2,1,1,112,77777,9,999999999,10,0.089,0,88,0,0,1 +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,85681,91850,14899,3055,210,2.6,1,0,112,77777,9,999999999,10,0.089,0,88,0,0,1 +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,95717,92998,15399,4411,140,3.6,2,1,112,77777,9,999999999,10,0.089,0,88,0,0,1 +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,102933,93849,18238,6302,170,4.6,3,0,112,77777,9,999999999,10,0.089,0,88,0,0,1 +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.6,18,83300,1223,1341,363,904,770,201,111581,55277,24934,10190,130,5.2,5,2,112,77777,9,999999999,10,0.089,0,88,0,0,1 +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,19,83200,1151,1341,362,811,742,173,100253,51781,21484,8880,140,3.1,8,1,112,77777,9,999999999,10,0.089,0,88,0,0,1 +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,92315,54240,18244,7569,130,4.6,7,1,112,77777,9,999999999,10,0.089,0,88,0,0,1 +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,69930,48696,16284,6511,150,8.2,8,1,112,77777,9,999999999,10,0.089,0,88,0,0,1 +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,47695,40873,15421,5599,150,7.7,7,1,96,77777,9,999999999,10,0.089,0,88,0,0,1 +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.6,20,83000,362,1341,360,190,378,88,21349,17394,9923,3210,150,12.4,6,1,80,77777,9,999999999,10,0.089,0,88,0,0,1 +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,4209,0,2887,840,170,10.8,6,2,88,77777,9,999999999,10,0.089,0,88,0,0,1 +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,24,83000,0,0,349,0,0,0,0,0,0,0,170,7.2,5,3,48,77777,9,999999999,10,0.089,0,88,0,0,1 +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,1.7,30,83100,0,0,342,0,0,0,0,0,0,0,190,5.7,2,2,32,77777,9,999999999,10,0.089,0,88,0,0,1 +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,77777,9,999999999,10,0.089,0,88,0,0,1 +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,77777,9,999999999,10,0.089,0,88,0,0,1 +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,77777,9,999999999,10,0.089,0,88,0,0,1 +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,77777,9,999999999,10,0.09,0,88,0,0,1 +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,77777,9,999999999,10,0.09,0,88,0,0,1 +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,2.2,42,82800,0,0,323,0,0,0,0,0,0,0,170,5.7,6,3,32,77777,9,999999999,10,0.09,0,88,0,0,1 +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,77777,9,999999999,10,0.09,0,88,0,0,1 +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,7620,9,999999999,10,0.09,0,88,0,0,1 +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,2.8,44,82800,152,1341,336,59,73,50,6373,121,5420,1457,160,4.1,9,7,96,4877,9,999999999,10,0.09,0,88,0,0,1 +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,18205,7126,14184,4369,140,4.1,9,8,96,4877,9,999999999,10,0.09,0,88,0,0,1 +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,3.9,35,82800,651,1341,361,200,190,108,23655,11725,12818,4880,170,4.1,9,7,96,4267,9,999999999,10,0.09,0,88,0,0,1 +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,49035,22048,28587,10690,340,3.1,9,8,80,4572,9,999999999,10,0.09,0,88,0,0,1 +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,59302,21500,36031,13757,350,2.6,9,7,96,4572,9,999999999,10,0.09,0,88,0,0,1 +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,70280,19112,50515,17983,190,8.2,9,8,96,7620,9,999999999,10,0.09,0,88,0,0,1 +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,93858,41224,42645,16119,190,9.3,9,7,96,7620,9,999999999,10,0.09,0,88,0,0,1 +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,79099,21692,56411,19556,190,10.3,9,8,96,7620,9,999999999,10,0.09,0,88,0,0,1 +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,-3.3,15,82600,1153,1341,391,316,37,283,37680,3018,33940,13320,160,7.7,10,9,96,7620,9,999999999,10,0.09,0,88,0,0,1 +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,59450,23217,36211,13659,170,10.3,9,8,96,7620,9,999999999,10,0.09,0,88,0,0,1 +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,55258,35581,17534,6965,160,9.8,9,5,80,6706,9,999999999,10,0.09,0,88,0,0,1 +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,34164,24139,15231,5547,170,10.8,8,6,80,7010,9,999999999,10,0.09,0,88,0,0,1 +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,12,82500,365,1341,380,157,280,81,17802,12743,9214,3038,180,9.8,9,7,80,5486,9,999999999,10,0.09,0,88,0,0,1 +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,-4.4,13,82600,114,1329,371,30,49,26,3336,0,2899,850,180,5.7,9,6,88,5182,9,999999999,10,0.09,0,88,0,0,1 +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,7620,9,999999999,10,0.09,0,88,0,0,1 +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,7620,9,999999999,10,0.09,0,88,0,0,1 +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,-2.8,21,82700,0,0,343,0,0,0,0,0,0,0,170,5.2,6,4,32,7620,9,999999999,10,0.09,0,88,0,0,1 +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,77777,9,999999999,10,0.09,0,88,0,0,1 +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,77777,9,999999999,10,0.09,0,88,0,0,1 +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,77777,9,999999999,10,0.09,0,88,0,0,1 +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,77777,9,999999999,10,0.09,0,88,0,0,1 +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,-3.3,27,82800,0,0,314,0,0,0,0,0,0,0,130,3.6,2,2,32,77777,9,999999999,10,0.09,0,88,0,0,1 +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,77777,9,999999999,10,0.09,0,88,0,0,1 +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,77777,9,999999999,10,0.09,0,88,0,0,1 +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,-1.7,31,82900,156,1340,322,44,102,32,4951,0,3609,1107,160,5.2,8,4,96,7620,9,999999999,10,0.09,0,88,0,0,1 +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,27329,24800,9751,3318,180,3.1,7,2,96,77777,9,999999999,10,0.09,0,88,0,0,1 +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,42827,30814,19848,7064,200,3.1,8,3,96,77777,9,999999999,10,0.09,0,88,0,0,1 +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,73732,50449,18087,7252,160,3.6,5,2,96,77777,9,999999999,10,0.09,0,88,0,0,1 +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,82978,46391,23004,9412,250,2.6,5,3,96,77777,9,999999999,10,0.09,0,88,0,0,1 +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,109435,57359,19950,8266,220,8.2,4,2,96,77777,9,999999999,10,0.09,0,88,0,0,1 +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,113722,55677,24499,10028,150,11.3,4,3,96,77777,9,999999999,10,0.09,0,88,0,0,1 +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,15,82800,1227,1340,384,969,938,110,101701,95525,14356,5326,150,12.4,2,2,96,77777,9,999999999,10,0.09,0,88,0,0,1 +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,15,82800,1155,1340,387,895,900,119,93757,91489,15687,4289,150,10.8,3,3,96,77777,9,999999999,10,0.09,0,88,0,0,1 +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,15,82700,1023,1340,384,704,670,193,84788,49241,23356,9503,160,11.3,4,2,96,77777,9,999999999,10,0.09,0,88,0,0,1 +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,-3.9,10,82700,839,1340,388,444,481,142,53254,33676,17100,6814,180,7.2,4,3,88,77777,9,999999999,10,0.09,0,88,0,0,1 +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,46318,39694,11885,4471,170,7.2,7,2,80,77777,9,999999999,10,0.09,0,88,0,0,1 +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,21332,16943,10253,3316,160,10.3,9,3,80,77777,9,999999999,10,0.09,0,88,0,0,1 +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,3.3,24,82700,117,1329,368,39,127,28,4314,0,3105,905,140,5.7,7,2,72,77777,9,999999999,10,0.09,0,88,0,0,1 +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,77777,9,999999999,10,0.09,0,88,0,0,1 +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,77777,9,999999999,10,0.09,0,88,0,0,1 +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,11.1,57,83100,0,0,342,0,0,0,0,0,0,0,150,11.3,0,0,16,77777,9,999999999,10,0.09,0,88,0,0,1 +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,12.2,61,83100,0,0,344,0,0,0,0,0,0,0,170,10.8,0,0,16,77777,9,999999999,10,0.09,0,88,0,0,1 +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,10,0.09,0,88,0,0,1 +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,10,0.09,0,88,0,0,1 +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,10,0.09,0,88,0,0,1 +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,63,83200,0,0,328,0,0,0,0,0,0,0,170,5.2,0,0,19.2,77777,9,999999999,10,0.09,0,88,0,0,1 +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,10,0.09,0,88,0,0,1 +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,10,72,83300,3,234,332,0,1,0,0,0,0,0,180,3.6,3,3,32,77777,9,999999999,10,0.09,0,88,0,0,1 +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,6703,0,4629,1350,190,5.2,5,2,80,77777,9,999999999,10,0.09,0,88,0,0,1 +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,25051,20236,8991,3115,190,5.2,5,1,96,77777,9,999999999,10,0.09,0,88,0,0,1 +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,50669,39466,13038,4976,150,4.1,4,1,96,77777,9,999999999,10,0.09,0,88,0,0,1 +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,31,83400,875,1339,348,652,791,135,78784,52310,16377,6639,180,3.6,3,0,96,77777,9,999999999,10,0.09,0,88,0,0,1 +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,1.7,22,83300,1051,1339,362,691,700,142,85475,46903,17637,7361,170,5.7,2,1,96,77777,9,999999999,10,0.09,0,88,0,0,1 +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,96983,91335,18681,5042,180,7.7,0,0,112,77777,9,999999999,9,0.09,0,88,0,0,1 +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,111505,55516,24430,9987,170,7.2,6,1,112,77777,9,999999999,9,0.09,0,88,0,0,1 +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,110015,53992,21728,8954,150,7.2,3,1,112,77777,9,999999999,9,0.09,0,88,0,0,1 +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,10,83000,1157,1339,374,873,818,166,108465,57470,20717,8572,160,7.2,2,2,112,77777,9,999999999,9,0.09,0,88,0,0,1 +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,86804,51560,24405,9875,160,10.3,4,4,112,77777,9,999999999,9,0.09,0,88,0,0,1 +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,67876,47751,20989,8175,160,7.7,4,4,112,77777,9,999999999,9,0.09,0,88,0,0,1 +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,46113,39333,14611,5373,150,5.7,3,3,112,77777,9,999999999,9,0.09,0,88,0,0,1 +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,20580,16762,8601,2890,160,5.2,2,2,96,77777,9,999999999,9,0.09,0,88,0,0,1 +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,4127,0,3019,892,150,6.2,3,3,64,77777,9,999999999,9,0.09,0,88,0,0,1 +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,77777,9,999999999,9,0.09,0,88,0,0,1 +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,77777,9,999999999,8,0.09,0,88,0,0,1 +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,77777,9,999999999,8,0.09,0,88,0,0,1 +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,77777,9,999999999,8,0.09,0,88,0,0,1 +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,77777,9,999999999,8,0.09,0,88,0,0,1 +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,77777,9,999999999,8,0.09,0,88,0,0,1 +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,77777,9,999999999,8,0.09,0,88,0,0,1 +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,77777,9,999999999,8,0.09,0,88,0,0,1 +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,-2.2,41,83300,0,0,290,0,0,0,0,0,0,0,70,3.6,1,1,32,77777,9,999999999,8,0.09,0,88,0,0,1 +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,77777,9,999999999,8,0.09,0,88,0,0,1 +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,8902,35542,3599,468,300,1.5,0,0,80,77777,9,999999999,8,0.09,0,88,0,0,1 +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,29921,71342,5849,948,70,1.5,0,0,80,77777,9,999999999,7,0.09,0,88,0,0,1 +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,49762,82899,7695,1344,150,3.1,1,1,96,77777,9,999999999,7,0.09,0,88,0,0,1 +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,71227,93127,9076,1798,340,2.1,1,1,96,77777,9,999999999,7,0.09,0,88,0,0,1 +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,89738,99783,10096,2491,270,2.6,0,0,96,77777,9,999999999,7,0.09,0,88,0,0,1 +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,101234,101799,10615,3493,260,4.1,0,0,112,77777,9,999999999,7,0.09,0,88,0,0,1 +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,104940,100776,10608,4366,310,2.6,1,1,112,77777,9,999999999,7,0.09,0,88,0,0,1 +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,-11.7,10,83500,1230,1339,316,1013,1013,82,106275,102526,10869,4350,220,7.2,0,0,96,77777,9,999999999,7,0.09,0,88,0,0,1 +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,99599,101488,10520,3298,240,6.2,0,0,112,77777,9,999999999,7,0.09,0,88,0,0,1 +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,87125,99175,10010,2360,260,5.7,0,0,112,77777,9,999999999,7,0.09,0,88,0,0,1 +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,69838,94646,8983,1724,290,5.2,0,0,112,77777,9,999999999,6,0.09,0,88,0,0,1 +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,48790,85807,7586,1293,210,5.2,0,0,112,77777,9,999999999,6,0.09,0,88,0,0,1 +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,-11.7,10,83500,375,1339,316,245,752,35,26145,66936,5563,882,50,3.6,0,0,112,77777,9,999999999,6,0.09,0,88,0,0,1 +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,6167,27287,2958,363,50,4.1,0,0,112,77777,9,999999999,6,0.09,0,88,0,0,1 +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,77777,9,999999999,6,0.09,0,88,0,0,1 +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,77777,9,999999999,6,0.09,0,88,0,0,1 +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,77777,9,999999999,6,0.09,0,88,0,0,1 +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,-8.3,25,83700,0,0,278,0,0,0,0,0,0,0,190,2.1,0,0,32,77777,9,999999999,6,0.09,0,88,0,0,1 +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,77777,9,999999999,6,0.09,0,88,0,0,1 +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,32,77777,9,999999999,6,0.09,0,88,0,0,1 +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,77777,9,999999999,5,0.09,0,88,0,0,1 +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,77777,9,999999999,5,0.09,0,88,0,0,1 +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,32,77777,9,999999999,5,0.09,0,88,0,0,1 +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,6,279,264,1,32,0,0,0,0,0,160,2.1,1,1,48,77777,9,999999999,5,0.09,0,88,0,0,1 +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,9364,0,2895,930,170,4.1,1,1,80,77777,9,999999999,5,0.09,0,88,0,0,1 +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,31334,28213,5773,2083,170,4.1,1,1,96,77777,9,999999999,5,0.09,0,88,0,0,1 +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,54411,45903,12663,4843,220,4.1,1,1,96,77777,9,999999999,5,0.09,0,88,0,0,1 +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,70223,91264,9338,1837,230,2.1,1,1,112,77777,9,999999999,6,0.09,0,88,0,0,1 +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,85515,94356,10220,2525,140,5.2,1,1,112,77777,9,999999999,6,0.09,0,88,0,0,1 +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,93898,93617,10612,3518,180,4.1,1,1,112,77777,9,999999999,6,0.09,0,88,0,0,1 +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,-5.6,12,83400,1237,1338,357,969,882,153,100142,89170,19496,6981,170,4.1,2,2,112,77777,9,999999999,6,0.09,0,88,0,0,1 +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,98530,91164,15177,5730,150,6.2,5,1,112,77777,9,999999999,6,0.09,0,88,0,0,1 +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,104770,55985,26817,10867,180,7.2,6,4,112,8534,9,999999999,6,0.09,0,88,0,0,1 +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,79244,41902,37703,14116,160,6.2,8,6,112,8534,9,999999999,6,0.09,0,88,0,0,1 +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,42414,9209,35634,12268,140,8.2,10,9,96,6096,9,999999999,6,0.09,0,88,0,0,1 +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,22075,5440,18151,6447,160,13.9,9,8,64,5182,9,999999999,6,0.09,0,88,0,0,1 +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,15894,7766,11122,3562,170,12.4,9,7,96,5182,9,999999999,7,0.09,0,88,0,0,1 +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,6011,0,3947,1102,190,8.2,6,3,80,77777,9,999999999,7,0.09,0,88,0,0,1 +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.6,25,83000,0,56,340,0,4,0,0,0,0,0,170,5.2,5,2,48,77777,9,999999999,7,0.09,0,88,0,0,1 +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,77777,9,999999999,7,0.09,0,88,0,0,1 +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,77777,9,999999999,7,0.09,0,88,0,0,1 +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,77777,9,999999999,7,0.09,0,88,0,0,1 +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,77777,9,999999999,7,0.09,0,88,0,0,1 +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,77777,9,999999999,7,0.09,0,88,0,0,1 +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,77777,9,999999999,8,0.09,0,88,0,0,1 +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,77777,9,999999999,8,0.09,0,88,0,0,1 +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,77777,9,999999999,8,0.09,0,88,0,0,1 +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,62,82900,5,301,283,0,13,0,0,0,0,0,160,1.5,2,2,48,77777,9,999999999,8,0.09,0,88,0,0,1 +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,7493,287,4974,1454,150,1.5,8,3,96,77777,9,999999999,8,0.09,0,88,0,0,1 +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,22764,12086,16604,4928,190,4.1,9,5,96,7620,9,999999999,8,0.09,0,88,0,0,1 +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,28,82900,665,1337,344,351,326,189,39891,25163,21583,7597,210,4.1,9,5,96,7620,9,999999999,8,0.09,0,88,0,0,1 +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,59991,36494,21439,8474,230,3.1,9,6,96,7620,9,999999999,8,0.09,0,88,0,0,1 +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,62277,19859,43217,15723,230,5.2,9,6,96,7620,9,999999999,8,0.09,0,88,0,0,1 +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,102767,53201,28242,11389,210,6.7,10,4,96,77777,9,999999999,8,0.09,0,88,0,0,1 +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,109400,54176,30413,12180,210,8.8,10,6,96,8534,9,999999999,8,0.09,0,88,0,0,1 +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,82562,32127,43276,16300,190,7.2,9,7,96,8534,9,999999999,8,0.09,0,88,0,0,1 +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,73637,26995,43950,16306,200,9.8,9,8,32,7620,9,999999999,8,0.09,0,88,0,0,1 +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,86348,50811,30881,12086,220,7.2,9,5,96,7620,9,999999999,8,0.09,0,88,0,0,1 +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,65978,45659,22016,8540,220,4.1,8,4,80,77777,9,999999999,8,0.09,0,88,0,0,1 +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,45071,37559,13664,5093,170,8.2,7,2,80,77777,9,999999999,8,0.09,0,88,0,0,1 +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,23141,19436,11446,3650,140,7.2,6,3,80,77777,9,999999999,8,0.09,0,88,0,0,1 +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,5331,0,3341,990,150,6.7,5,2,80,77777,9,999999999,8,0.09,0,88,0,0,1 +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,77777,9,999999999,8,0.09,0,88,0,0,1 +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,77777,9,999999999,8,0.09,0,88,0,0,1 +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,77777,9,999999999,8,0.09,0,88,0,0,1 +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,6706,9,999999999,8,0.09,0,88,0,0,1 +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,6706,9,999999999,8,0.09,0,88,0,0,1 +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,77777,9,999999999,8,0.09,0,88,0,0,1 +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,7620,9,999999999,8,0.09,0,88,0,0,1 +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,4,3,32,77777,9,999999999,8,0.09,0,88,0,0,1 +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,77777,9,999999999,8,0.09,0,88,0,0,1 +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,77777,9,999999999,8,0.09,0,88,0,0,1 +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,8930,0,3327,1062,20,3.1,1,1,96,77777,9,999999999,9,0.09,0,88,0,0,1 +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,27452,23912,9679,3346,10,6.2,3,3,96,77777,9,999999999,9,0.09,0,88,0,0,1 +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,37905,11172,31388,9641,360,8.2,6,6,96,1402,9,999999999,9,0.09,0,88,0,0,1 +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,49,82800,884,1337,364,194,0,194,20101,0,20286,9007,10,6.2,10,10,80,1250,9,999999999,9,0.09,0,88,0,0,1 +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,24895,0,25137,11361,360,7.7,10,10,64,1036,9,999999999,10,0.09,0,88,0,0,1 +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,28305,0,28590,12804,10,9.3,10,10,48,762,9,999999999,10,0.09,0,88,0,0,1 +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,8.3,64,82800,1240,1337,365,281,0,281,29934,0,30241,13471,350,7.2,10,10,32,792,9,999999999,10,0.09,0,88,0,1,1 +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,4.4,68,82900,1234,1337,336,280,0,280,29866,0,30170,13421,250,7.2,10,10,9.6,884,9,999999999,10,0.09,0,88,0,3.8,1 +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,27878,0,28156,12615,200,6.2,10,10,6.4,884,9,999999999,11,0.09,0,88,0,2.8,1 +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,74,82900,1033,1337,334,231,0,231,24230,0,24463,11038,290,5.7,10,10,96,2438,9,999999999,11,0.09,0,88,0,0,1 +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,50660,27343,23460,9049,260,7.7,7,6,96,7620,9,999999999,11,0.09,0,88,0,0,1 +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,43498,32880,18234,6509,230,4.1,5,4,80,77777,9,999999999,11,0.09,0,88,0,0,1 +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,3.9,47,82900,384,1337,330,143,212,82,16255,9510,9352,3139,310,2.1,5,5,96,77777,9,999999999,12,0.09,0,88,0,0,1 +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,4635,0,3652,1067,40,5.7,6,4,80,7620,9,999999999,12,0.09,0,88,0,0,1 +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,3962,9,999999999,12,0.09,0,88,0,0,1 +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,1981,9,999999999,12,0.09,0,88,0,0,1 +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,1006,9,999999999,13,0.09,0,88,0,0,1 +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,975,9,999999999,13,0.09,0,88,0,0,1 +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,6.7,80,83300,0,0,339,0,0,0,0,0,0,0,290,3.1,10,10,32,671,9,999999999,13,0.09,0,88,0,3.3,1 +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,518,9,999999999,14,0.091,0,88,0,0.3,1 +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,671,9,999999999,14,0.091,0,88,0,0.3,1 +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,14,0.091,0,88,0,0,1 +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,14,0.091,0,88,0,0.8,1 +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,15,0.091,0,88,0,0.3,1 +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,2338,0,2355,913,290,3.6,10,10,9.6,427,9,999999999,14,0.091,0,88,0,0.3,1 +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,6374,0,6425,2690,320,3.6,10,10,8,305,9,999999999,14,0.091,0,88,0,1,1 +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,9661,0,9744,4432,340,6.2,10,10,9.6,152,9,999999999,14,0.091,0,88,0,0.8,1 +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,19785,0,19967,8908,350,4.1,10,10,11.2,457,9,999999999,14,0.091,0,88,0,0,1 +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,24696,0,24936,11292,340,3.1,10,10,32,1219,9,999999999,14,0.091,0,88,0,0,1 +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,57472,16096,36198,14124,330,2.1,9,9,48,7010,9,999999999,14,0.091,0,88,0,0,1 +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,29849,0,30154,13438,300,3.1,10,10,48,1981,9,999999999,14,0.091,0,88,0,0,1 +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,104911,47884,39576,15260,310,3.1,9,7,64,1524,9,999999999,14,0.091,0,88,0,0,1 +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,6.7,58,83500,1165,1336,353,401,149,271,47938,11423,32584,12920,10,3.6,9,9,80,1036,9,999999999,14,0.091,0,88,0,0,1 +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,41631,15296,20543,8491,360,3.1,7,7,64,2134,9,999999999,14,0.091,0,88,0,0,1 +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,53599,31808,18102,7230,350,5.2,6,4,64,7620,9,999999999,14,0.091,0,88,0,0,1 +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,45334,34800,17592,6344,20,6.2,9,6,80,2743,9,999999999,14,0.091,0,88,0,0,1 +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,11934,6019,5920,2106,30,6.7,9,8,48,2743,9,999999999,14,0.091,0,88,0,0,1 +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,4061,0,3963,1141,360,3.6,9,6,48,2743,9,999999999,14,0.091,0,88,0,0,1 +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,1219,9,999999999,14,0.091,0,88,0,0,1 +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,1372,9,999999999,14,0.091,0,88,0,0,1 +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,13,0.091,0,88,0,0,1 +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,1097,9,999999999,13,0.091,0,88,0,0,1 +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,77777,9,999999999,13,0.091,0,88,0,0,1 +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,10,9,32,1494,9,999999999,13,0.091,0,88,0,0,1 +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,10,9,24,1402,9,999999999,13,0.091,0,88,0,0,1 +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,77777,9,999999999,13,0.091,0,88,0,0,1 +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,77777,9,999999999,13,0.091,0,88,0,0,1 +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,8,8,40,1372,9,999999999,13,0.091,0,88,0,0,1 +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,8349,1300,7200,1865,80,2.1,6,6,48,1372,9,999999999,13,0.091,0,88,0,0,1 +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,31467,26550,6877,2480,0,0,1,0,64,77777,9,999999999,13,0.091,0,88,0,0,1 +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,54089,41583,11092,4317,280,1.5,2,2,64,77777,9,999999999,13,0.091,0,88,0,0,1 +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,78299,50461,16524,6727,310,2.6,3,3,80,77777,9,999999999,13,0.091,0,88,0,0,1 +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,58409,20374,35726,13736,0,0,7,7,64,975,9,999999999,13,0.091,0,88,0,0,1 +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,5.6,53,83700,1183,1336,335,884,644,313,104830,52075,37345,14478,30,2.1,6,6,32,975,9,999999999,13,0.091,0,88,0,0,1 +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,115913,54367,23121,9513,60,2.6,5,5,24,77777,9,999999999,12,0.091,0,88,0,0,1 +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,100869,45956,34831,13730,50,4.1,5,5,19.2,77777,9,999999999,12,0.091,0,88,0,0,1 +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,78565,33771,33386,13185,50,3.1,5,5,19.2,77777,9,999999999,12,0.091,0,88,0,0,1 +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,87013,48549,29480,11687,30,2.6,6,6,24,1676,9,999999999,12,0.091,0,88,0,0,1 +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,39,83500,855,1336,350,577,569,212,67129,43539,24789,9487,70,2.6,5,4,32,77777,9,999999999,12,0.091,0,88,0,0,1 +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,28167,9597,21512,7401,40,3.1,8,8,24,1981,9,999999999,12,0.091,0,88,0,0,1 +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,8364,1157,7338,2566,340,3.1,9,9,24,2134,9,999999999,12,0.091,0,88,0,0,1 +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,3574,0,3359,1016,10,3.1,9,8,24,1981,9,999999999,12,0.091,0,88,0,0,1 +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,1981,9,999999999,12,0.091,0,88,0,0,1 +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,1981,9,999999999,12,0.091,0,88,0,0,1 +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,1829,9,999999999,12,0.091,0,88,0,0,1 +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,1981,9,999999999,12,0.091,0,88,0,0,1 +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,1981,9,999999999,12,0.091,0,88,0,0,1 +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,1981,9,999999999,12,0.091,0,88,0,0,1 +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,1676,9,999999999,11,0.091,0,88,0,0,1 +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,1676,9,999999999,11,0.091,0,88,0,0,1 +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,1676,9,999999999,11,0.091,0,88,0,0,1 +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,1829,9,999999999,11,0.091,0,88,0,0,1 +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,83,83800,184,1335,327,52,34,47,5732,69,5197,1547,130,5.2,6,5,64,7620,9,999999999,11,0.091,0,88,0,0,1 +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,9.4,69,83800,433,1335,328,225,324,119,25111,18026,13336,4354,130,4.1,4,2,64,77777,9,999999999,11,0.091,0,88,0,0,1 +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,49300,34955,23131,8077,140,4.1,8,3,64,77777,9,999999999,11,0.091,0,88,0,0,1 +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,70730,42528,31244,11583,150,6.2,10,4,64,77777,9,999999999,12,0.091,0,88,0,0,1 +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,79261,39135,31981,12593,160,4.1,8,3,64,77777,9,999999999,12,0.091,0,88,0,0,1 +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,98366,46327,36531,14241,160,4.1,10,4,96,77777,9,999999999,12,0.091,0,88,0,0,1 +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,100598,41305,51476,18580,130,3.1,10,3,96,77777,9,999999999,12,0.091,0,88,0,0,1 +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,108962,51200,34601,13660,140,6.7,10,4,96,77777,9,999999999,12,0.091,0,88,0,0,1 +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,7.2,32,83400,1168,1335,377,836,620,293,99379,48670,35039,13734,160,12.9,9,3,96,77777,9,999999999,12,0.091,0,88,0,0,1 +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,78489,40977,30027,11877,130,11.3,10,2,96,77777,9,999999999,12,0.091,0,88,0,0,1 +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,62808,37781,24198,9331,160,10.3,10,3,64,77777,9,999999999,12,0.091,0,88,0,0,1 +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,48973,37688,18949,6763,140,6.2,10,0,56,77777,9,999999999,12,0.091,0,88,0,0,1 +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,24363,18887,11839,3811,130,7.7,9,0,56,77777,9,999999999,12,0.091,0,88,0,0,1 +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,5545,0,4472,1264,150,6.7,7,1,72,77777,9,999999999,12,0.091,0,88,0,0,1 +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,77777,9,999999999,13,0.091,0,88,0,0,1 +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,77777,9,999999999,13,0.091,0,88,0,0,1 +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,13,0.091,0,88,0,0,1 +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,77777,9,999999999,13,0.091,0,88,0,0,1 +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,13,0.091,0,88,0,0,1 +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,13,0.091,0,88,0,0,1 +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,13,0.091,0,88,0,0,1 +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,77777,9,999999999,13,0.091,0,88,0,0,1 +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,7620,9,999999999,13,0.091,0,88,0,0,1 +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,7620,9,999999999,13,0.091,0,88,0,0,1 +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,9414,0,4382,1365,180,3.6,2,2,48,77777,9,999999999,13,0.091,0,88,0,0,1 +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,32163,25336,6542,2378,190,4.1,1,1,64,77777,9,999999999,13,0.091,0,88,0,0,1 +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,51,83800,677,1335,350,460,763,73,56220,40631,8945,3526,200,4.6,1,1,64,77777,9,999999999,13,0.091,0,88,0,0,1 +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,72491,89434,12828,2187,170,3.6,0,0,64,77777,9,999999999,13,0.091,0,88,0,0,1 +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,97513,54003,21893,9036,160,6.2,2,2,96,77777,9,999999999,13,0.091,0,88,0,0,1 +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,93686,89679,14342,4601,160,7.2,1,1,96,77777,9,999999999,13,0.091,0,88,0,0,1 +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,15,83600,1245,1335,379,914,860,112,95859,87599,14526,6041,170,7.7,1,1,96,77777,9,999999999,14,0.091,0,88,0,0,1 +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.6,14,83500,1240,1335,383,865,777,143,109790,51394,18227,7568,150,8.2,3,1,96,77777,9,999999999,14,0.091,0,88,0,0,1 +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,107679,55058,24527,10045,160,8.2,6,2,96,77777,9,999999999,14,0.091,0,88,0,0,1 +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,50787,10761,40189,14875,170,13.4,9,9,96,7620,9,999999999,14,0.091,0,88,0,0,1 +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,35470,6856,29433,10874,140,7.7,10,9,64,2134,9,999999999,14,0.091,0,88,0,0,1 +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,13181,0,13293,5636,130,10.8,10,10,80,2134,9,999999999,14,0.091,0,88,0,0,1 +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,17566,4085,15455,4534,230,5.7,10,9,64,2286,9,999999999,14,0.091,0,88,0,0,1 +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,39,83800,148,1335,373,41,12,40,4493,0,4397,1258,170,3.6,10,9,80,4267,9,999999999,14,0.091,0,88,0,0,1 +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,3962,9,999999999,14,0.091,0,88,0,0,1 +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,40,83800,0,0,381,0,0,0,0,0,0,0,150,6.2,10,10,24,1829,9,999999999,14,0.091,0,88,0,0,1 +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,1981,9,999999999,14,0.091,0,88,0,0,1 +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,3962,9,999999999,14,0.091,0,88,0,0,1 +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,3962,9,999999999,14,0.091,0,88,0,0,1 +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,4572,9,999999999,14,0.091,0,88,0,0,1 +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,4572,9,999999999,14,0.091,0,88,0,0,1 +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,4267,9,999999999,14,0.091,0,88,0,0,1 +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,4267,9,999999999,14,0.091,0,88,0,0,1 +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,7620,9,999999999,14,0.091,0,88,0,0,1 +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,6665,422,6140,1752,190,6.2,9,8,80,7315,9,999999999,14,0.091,0,88,0,0,1 +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,39,83600,438,1334,360,262,242,182,28321,17996,19775,5542,190,7.2,9,7,80,7315,9,999999999,14,0.091,0,88,0,0,1 +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,35,83600,679,1334,364,371,489,122,43713,31316,14428,5508,200,5.2,8,6,80,7315,9,999999999,14,0.091,0,88,0,0,1 +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,58012,32619,22985,9060,190,3.6,7,6,80,6706,9,999999999,14,0.091,0,88,0,0,1 +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,76650,38674,25276,10293,200,4.6,8,5,80,6706,9,999999999,14,0.091,0,88,0,0,1 +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,5,28,83500,1187,1334,388,627,346,319,74317,28224,38045,14701,160,5.7,10,7,80,6706,9,999999999,15,0.091,0,88,0,0,1 +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,38186,0,38577,16204,180,7.2,10,10,80,7620,9,999999999,15,0.091,0,88,0,0,1 +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,41392,7237,30483,12231,190,4.1,10,9,80,7620,9,999999999,15,0.091,0,88,0,0,1 +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,43015,9762,29036,11703,260,4.6,10,9,80,3658,9,999999999,15,0.091,0,88,0,0,1 +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,55323,10924,45130,16121,230,2.6,10,9,80,7620,9,999999999,15,0.091,0,88,0,0,1 +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,25009,0,25238,10500,180,2.6,10,10,80,8534,9,999999999,15,0.091,0,88,0,0,1 +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,17774,0,17924,7054,190,8.2,10,10,80,8534,9,999999999,15,0.091,0,88,0,0,1 +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,39,83400,399,1334,365,56,61,38,6785,2012,4611,1667,210,4.6,10,8,80,8534,9,999999999,15,0.091,0,88,0,0,1 +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,7734,0,4099,1208,200,2.6,4,4,64,77777,9,999999999,15,0.091,0,88,0,0,1 +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,8534,9,999999999,16,0.091,0,88,0,0,1 +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,46,83400,0,0,337,0,0,0,0,0,0,0,200,3.1,10,4,32,77777,9,999999999,16,0.091,0,88,0,0,1 +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,48,83300,0,0,332,0,0,0,0,0,0,0,180,1.5,10,3,32,77777,9,999999999,16,0.091,0,88,0,0,1 +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,48,83300,0,0,367,0,0,0,0,0,0,0,160,1.5,10,10,32,8534,9,999999999,16,0.091,0,88,0,0,1 +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,5182,9,999999999,16,0.091,0,88,0,0,1 +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,5182,9,999999999,16,0.092,0,88,0,0,1 +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,4877,9,999999999,16,0.092,0,88,0,0,1 +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,4572,9,999999999,16,0.092,0,88,0,0,1 +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,5486,9,999999999,16,0.092,0,88,0,0,1 +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,4877,9,999999999,16,0.092,0,88,0,0,1 +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,6377,380,5736,1686,340,2.6,10,9,80,7620,9,999999999,17,0.092,0,88,0,0,1 +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,28076,22971,9272,3271,330,1.5,8,4,96,77777,9,999999999,17,0.092,0,88,0,0,1 +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,18207,0,18365,7425,0,0,10,10,64,7620,9,999999999,17,0.092,0,88,0,0,1 +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,66303,38040,29568,11147,330,2.1,10,8,64,7620,9,999999999,17,0.092,0,88,0,0,1 +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,64472,19380,45191,16321,330,2.1,10,7,64,7620,9,999999999,17,0.092,0,88,0,0,1 +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,88108,24318,65200,20944,280,1.5,9,8,64,7620,9,999999999,17,0.092,0,88,0,0,1 +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,91980,40365,28112,11382,50,2.1,7,7,64,7620,9,999999999,17,0.092,0,88,0,0,1 +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,83920,20701,62611,20934,90,4.6,9,8,80,7620,9,999999999,17,0.092,0,88,0,0,1 +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,112852,59924,33135,13093,0,0,6,6,80,7620,9,999999999,17,0.092,0,88,0,0,1 +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,37675,5043,32087,12542,360,5.2,8,8,80,7620,9,999999999,17,0.092,0,88,0,0,1 +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,19545,0,19724,8731,300,4.1,10,10,80,2438,9,999999999,17,0.092,0,88,0,0,1 +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,16944,0,17089,6840,200,4.6,10,10,80,8534,9,999999999,17,0.092,0,88,0,0,1 +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,5.6,39,83100,402,1334,388,93,0,93,9245,0,9317,3519,230,3.1,10,10,80,4267,9,999999999,17,0.092,0,88,0,0,1 +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,2624,0,2642,965,210,2.1,10,10,64,8534,9,999999999,17,0.092,0,88,0,0,1 +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,8534,9,999999999,17,0.092,0,88,0,0,1 +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,8534,9,999999999,17,0.092,0,88,0,0,1 +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,8534,9,999999999,18,0.092,0,88,0,0,1 +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,7.2,60,83100,0,0,364,0,0,0,0,0,0,0,210,1.5,10,10,32,3048,9,999999999,18,0.092,0,88,0,0,1 +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,7620,9,999999999,18,0.092,0,88,0,0,1 +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,4267,9,999999999,18,0.092,0,88,0,0,1 +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,10,9,32,7620,9,999999999,18,0.092,0,88,0,0,1 +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,77777,9,999999999,18,0.092,0,88,0,0,1 +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,6706,9,999999999,18,0.092,0,88,0,0,1 +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,4572,9,999999999,18,0.092,0,88,0,0,1 +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,5052,49,4615,1439,240,1.5,9,8,96,4267,9,999999999,18,0.092,0,88,0,0,1 +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,26221,19566,14006,4558,220,2.6,7,6,96,2896,9,999999999,18,0.092,0,88,0,0,1 +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,38886,17833,26515,8930,290,2.6,8,8,88,2743,9,999999999,18,0.092,0,88,0,0,1 +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,59374,23666,40441,13835,360,9.3,7,7,80,2591,9,999999999,18,0.092,0,88,0,0,1 +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,82721,41501,33448,13077,30,6.7,5,4,80,77777,9,999999999,18,0.092,0,88,0,0,1 +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,90439,40846,27043,11003,20,4.1,5,5,80,77777,9,999999999,18,0.092,0,88,0,0,1 +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,7.8,45,83400,1249,1333,356,872,698,218,107166,48624,26934,10963,50,2.1,4,4,64,77777,9,999999999,18,0.092,0,88,0,0,1 +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,113186,52988,28635,11584,350,2.6,2,2,64,77777,9,999999999,18,0.092,0,88,0,0,1 +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,102740,50809,31178,12454,100,4.1,3,3,64,77777,9,999999999,18,0.092,0,88,0,0,1 +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,29025,5996,20581,8519,310,1.5,9,9,96,7620,9,999999999,18,0.092,0,88,0,0,1 +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,6.7,31,83200,865,1333,386,283,207,148,33900,13894,17803,7158,40,3.1,8,6,80,7620,9,999999999,18,0.092,0,88,0,0,1 +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,12385,0,12490,5387,20,6.2,10,10,64,1981,9,999999999,18,0.092,0,88,0,0,1 +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,75,83400,404,1333,364,64,0,64,6349,0,6399,2635,340,7.2,10,10,48,2134,9,999999999,18,0.092,0,88,0,0,1 +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,2618,0,2637,971,360,5.2,10,10,9.6,2286,9,999999999,18,0.092,0,88,0,0,1 +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,2438,9,999999999,17,0.092,0,88,0,0.3,1 +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,1981,9,999999999,17,0.092,0,88,0,0.5,1 +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,1981,9,999999999,17,0.092,0,88,0,0,1 +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,3658,9,999999999,17,0.092,0,88,0,0,1 +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,1829,9,999999999,17,0.092,0,88,0,0,1 +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,1676,9,999999999,17,0.092,0,88,0,0,1 +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,89,83700,0,0,314,0,0,0,0,0,0,0,180,1.5,2,2,24,77777,9,999999999,17,0.092,0,88,0,0,1 +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,93,83700,0,0,331,0,0,0,0,0,0,0,190,2.6,8,8,16,3962,9,999999999,17,0.092,0,88,0,0,1 +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,89,83600,0,0,329,0,0,0,0,0,0,0,130,2.1,10,7,16,4267,9,999999999,17,0.092,0,88,0,0,1 +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,89,83700,13,455,322,2,3,2,0,0,0,0,120,2.1,10,5,40,4267,9,999999999,17,0.092,0,88,0,0,1 +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,86,83800,197,1332,327,71,60,62,7701,787,6749,1899,90,3.1,7,6,48,4267,9,999999999,17,0.092,0,88,0,0,1 +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,8621,1447,7222,2620,90,3.6,10,9,24,975,9,999999999,17,0.092,0,88,0,0,1 +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,21822,4218,18207,6759,110,2.1,10,9,16,1067,9,999999999,17,0.092,0,88,0,0,1 +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,10,72,83800,897,1332,357,390,147,291,44488,12243,33392,12230,350,2.6,10,9,16,1128,9,999999999,17,0.092,0,88,0,0,1 +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,67,83800,1070,1332,350,652,374,351,75279,31902,40787,15235,10,2.6,9,7,16,1219,9,999999999,17,0.092,0,88,0,0,1 +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,65,83700,1190,1332,358,790,292,528,89848,28896,60507,20232,10,3.1,10,8,16,671,9,999999999,17,0.092,0,88,0,0,1 +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,29930,0,30239,13503,10,4.1,10,10,16,792,9,999999999,17,0.092,0,88,0,0,1 +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,29810,0,30118,13453,10,5.2,10,10,16,1097,9,999999999,17,0.092,0,88,0,0.5,1 +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,51746,10855,37565,14564,20,3.1,10,9,19.2,1372,9,999999999,16,0.092,0,88,0,5.1,1 +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,24108,0,24342,11062,360,5.2,10,10,12.8,1372,9,999999999,16,0.092,0,88,0,0.8,1 +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,19016,0,19191,8568,90,4.1,10,10,19.2,2286,9,999999999,16,0.092,0,88,0,0.3,1 +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,34954,9793,29187,9100,90,3.1,10,8,24,3658,9,999999999,16,0.092,0,88,0,0,1 +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,12039,1137,11180,3707,190,3.1,10,7,32,3353,9,999999999,16,0.092,0,88,0,0,1 +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,2428,0,2445,918,180,2.6,10,10,32,2591,9,999999999,16,0.092,0,88,0,0,1 +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,2896,9,999999999,16,0.092,0,88,0,0,1 +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,2896,9,999999999,16,0.092,0,88,0,0,1 +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,16,0.092,0,88,0,0,1 +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,16,0.092,0,88,0,0,1 +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,93,83900,0,0,348,0,0,0,0,0,0,0,200,1.5,10,10,24,2286,9,999999999,16,0.092,0,88,0,0,1 +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,2286,9,999999999,15,0.092,0,88,0,0,1 +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,10,9,24,2896,9,999999999,15,0.092,0,88,0,0,1 +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,2896,9,999999999,15,0.092,0,88,0,0,1 +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,2896,9,999999999,15,0.092,0,88,0,0,1 +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,7.8,86,83800,14,477,331,2,1,2,0,0,0,0,220,2.6,10,9,19.2,1676,9,999999999,15,0.092,0,88,0,0,1 +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,7.8,86,83800,199,1332,331,26,10,24,3053,0,2822,939,230,2.6,10,9,80,2134,9,999999999,15,0.092,0,88,0,0,1 +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,20508,7546,16171,5049,240,2.6,10,7,88,1829,9,999999999,15,0.092,0,88,0,0,1 +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,33824,11128,26011,8851,340,3.1,8,8,80,1829,9,999999999,15,0.092,0,88,0,0,1 +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,69625,39453,33411,12244,360,4.1,10,6,48,1676,9,999999999,15,0.092,0,88,0,0,1 +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,69,83900,1071,1332,360,209,109,121,26175,6627,15212,6411,310,3.1,10,9,64,1676,9,999999999,15,0.092,0,88,0,0,1 +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,63734,14787,46454,17136,310,3.1,10,9,64,1676,9,999999999,15,0.092,0,88,0,0,1 +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,52357,12294,34343,13582,80,1.5,9,9,96,3048,9,999999999,15,0.092,0,88,0,0,1 +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,97931,42778,37342,14566,270,2.1,9,7,96,7620,9,999999999,15,0.092,0,88,0,0,1 +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,51012,13273,33001,13069,340,1.5,9,8,96,7620,9,999999999,15,0.092,0,88,0,0,1 +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,6.1,40,83600,1048,1332,364,721,436,378,82622,39652,43602,15813,230,1.5,7,7,96,7620,9,999999999,15,0.092,0,88,0,0,1 +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,66698,42251,17376,7009,240,3.6,8,4,80,7620,9,999999999,15,0.092,0,88,0,0,1 +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,24303,4858,20767,7317,360,4.1,9,9,80,1981,9,999999999,15,0.092,0,88,0,0,1 +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,24772,19684,11927,3902,360,4.1,6,3,64,77777,9,999999999,15,0.092,0,88,0,0,1 +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,6074,60,5442,1510,340,2.1,10,7,64,2591,9,999999999,15,0.092,0,88,0,0,1 +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,75,83700,5,277,354,0,1,0,0,0,0,0,100,2.6,10,9,32,2134,9,999999999,15,0.092,0,88,0,0,1 +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,2134,9,999999999,15,0.092,0,88,0,0,1 +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,77777,9,999999999,15,0.092,0,88,0,0,1 +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,77777,9,999999999,15,0.092,0,88,0,0,1 +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,77777,9,999999999,15,0.092,0,88,0,0,1 +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,77777,9,999999999,15,0.093,0,88,0,0,1 +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,7.8,86,83600,0,0,295,0,0,0,0,0,0,0,160,1.5,0,0,32,77777,9,999999999,15,0.093,0,88,0,0,1 +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,32,77777,9,999999999,15,0.093,0,88,0,0,1 +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,24,77777,9,999999999,15,0.093,0,88,0,0,1 +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,77777,9,999999999,15,0.093,0,88,0,0,1 +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,6.7,80,83600,201,1331,294,103,488,29,11933,0,3366,1107,190,2.6,0,0,88,77777,9,999999999,15,0.093,0,88,0,0,1 +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,31806,69289,7175,1072,160,2.1,0,0,88,77777,9,999999999,15,0.093,0,88,0,0,1 +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,6.7,58,83600,687,1331,315,500,846,63,53863,84682,9368,1522,220,1.5,0,0,80,77777,9,999999999,15,0.093,0,88,0,0,1 +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,73879,92395,10933,2072,190,1.5,0,0,96,77777,9,999999999,15,0.093,0,88,0,0,1 +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,90085,96374,11875,2933,120,2.1,0,0,112,77777,9,999999999,15,0.093,0,88,0,0,1 +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,110034,53832,24809,10163,60,2.6,1,1,112,77777,9,999999999,15,0.093,0,88,0,0,1 +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,30,83300,1251,1331,362,910,802,156,114811,52336,19770,8193,220,3.1,2,2,112,77777,9,999999999,15,0.093,0,88,0,0,1 +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,93830,83033,17067,6971,140,3.1,3,3,112,77777,9,999999999,15,0.093,0,88,0,0,1 +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,29,83200,1178,1331,368,874,837,134,91845,85561,17446,5089,140,4.6,4,2,112,77777,9,999999999,15,0.093,0,88,0,0,1 +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,29,83100,1049,1331,369,612,513,207,73558,37342,25005,10169,80,3.1,8,3,112,77777,9,999999999,15,0.093,0,88,0,0,1 +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,4.4,26,83000,870,1331,370,635,762,137,76661,50779,16605,6724,130,2.1,7,2,112,77777,9,999999999,15,0.093,0,88,0,0,1 +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,5,28,83000,653,1331,374,425,622,119,49923,39354,14030,5306,120,5.2,6,3,112,77777,9,999999999,15,0.093,0,88,0,0,1 +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,26143,21709,9317,3211,130,3.1,7,2,96,77777,9,999999999,15,0.093,0,88,0,0,1 +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,5851,0,3722,1154,130,3.1,8,4,80,9144,9,999999999,15,0.093,0,88,0,0,1 +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,2438,9,999999999,15,0.093,0,88,0,1,1 +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,1981,9,999999999,15,0.093,0,88,0,0,1 +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,9144,9,999999999,15,0.093,0,88,0,0,1 +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,77777,9,999999999,15,0.093,0,88,0,0,1 +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,77,83300,0,0,324,0,0,0,0,0,0,0,120,3.1,2,2,32,77777,9,999999999,15,0.093,0,88,0,0,1 +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,77777,9,999999999,15,0.093,0,88,0,0,1 +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,77777,9,999999999,15,0.093,0,88,0,0,1 +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,2,2,32,77777,9,999999999,15,0.093,0,88,0,0,1 +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,9.4,96,83300,0,0,302,0,0,0,0,0,0,0,200,2.6,3,1,24,77777,9,999999999,16,0.093,0,88,0,0,1 +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,8.3,89,83200,15,499,310,2,8,2,0,0,0,0,120,1.5,5,4,80,77777,9,999999999,16,0.093,0,88,0,0,1 +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,11211,0,3898,1265,180,2.6,0,0,96,77777,9,999999999,15,0.093,0,88,0,0,1 +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,7.8,62,83200,450,1331,316,287,683,56,34196,28265,6687,2444,200,2.6,0,0,96,77777,9,999999999,15,0.093,0,88,0,0,1 +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,59177,44394,9666,3812,220,3.1,1,0,96,77777,9,999999999,15,0.093,0,88,0,0,1 +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,78408,47938,12111,5018,210,2.6,2,2,96,77777,9,999999999,15,0.093,0,88,0,0,1 +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,99471,54813,21141,8753,100,3.1,3,3,96,77777,9,999999999,15,0.093,0,88,0,0,1 +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,68250,18459,47100,17291,120,2.1,9,7,96,4267,9,999999999,15,0.093,0,88,0,0.5,1 +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,59975,10517,46767,17396,350,5.2,10,9,96,2591,9,999999999,15,0.093,0,88,0,0,1 +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,11.1,57,83100,1247,1331,370,866,601,302,103683,45330,36380,14284,10,5.2,7,7,96,2438,9,999999999,15,0.093,0,88,0,0,1 +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,88204,39814,34338,13520,70,5.2,8,6,96,9144,9,999999999,14,0.093,0,88,0,0,1 +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,73674,36379,28554,11424,90,4.6,6,5,96,9144,9,999999999,14,0.093,0,88,0,0,1 +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,64690,39546,23005,9002,180,2.1,6,5,96,9144,9,999999999,14,0.093,0,88,0,0,1 +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,38993,25780,17147,6318,50,5.2,7,6,96,9144,9,999999999,14,0.093,0,88,0,0,1 +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,21191,10806,15111,4623,60,6.2,9,8,96,9144,9,999999999,14,0.093,0,88,0,0,1 +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,8151,1029,6353,1678,130,2.1,6,4,96,9144,9,999999999,14,0.093,0,88,0,0,1 +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,77777,9,999999999,14,0.093,0,88,0,0,1 +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,9.4,69,83200,0,0,328,0,0,0,0,0,0,0,50,2.1,2,2,32,77777,9,999999999,13,0.093,0,88,0,0,1 +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,77777,9,999999999,13,0.093,0,88,0,0,1 +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,89,83400,0,0,310,0,0,0,0,0,0,0,350,2.1,1,1,32,77777,9,999999999,13,0.093,0,88,0,0,1 +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,77777,9,999999999,13,0.093,0,88,0,0,1 +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,89,83400,0,0,334,0,0,0,0,0,0,0,30,1.5,8,8,32,1097,9,999999999,13,0.093,0,88,0,0,1 +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,83,83500,0,0,346,0,0,0,0,0,0,0,10,2.1,9,9,32,945,9,999999999,13,0.093,0,88,0,0,1 +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,792,9,999999999,13,0.093,0,88,0,0,1 +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,975,9,999999999,13,0.093,0,88,0,0,1 +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,86,83600,16,521,353,2,0,2,0,0,0,0,10,1,10,10,24,975,9,999999999,12,0.093,0,88,0,0,1 +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,86,83700,206,1331,353,33,0,33,3217,0,3241,1238,350,2.1,10,10,14.4,610,9,999999999,13,0.093,0,88,0,0,1 +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,20314,4147,18109,5448,360,2.1,10,9,24,762,9,999999999,13,0.093,0,88,0,0,1 +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,75,83700,690,1331,354,378,232,258,41958,19496,28801,9487,60,1.5,10,9,12.8,1097,9,999999999,13,0.093,0,88,0,0,1 +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,20827,0,21022,9373,0,0,10,10,12.8,671,9,999999999,13,0.093,0,88,0,0,1 +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,55470,6404,49563,17365,120,3.1,10,9,12.8,1006,9,999999999,13,0.093,0,88,0,0,1 +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,63969,21285,34039,13450,130,3.6,8,8,24,1036,9,999999999,13,0.093,0,88,0,0,1 +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,8.9,49,83500,1253,1331,360,944,663,319,112770,51814,38347,14913,160,3.1,5,5,48,77777,9,999999999,13,0.093,0,88,0,0,1 +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,46,83400,1248,1331,376,803,565,273,96957,41490,33157,13198,120,4.1,6,6,40,1524,9,999999999,14,0.093,0,88,0,0,1 +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,107308,52809,30069,12082,110,3.1,5,5,80,77777,9,999999999,14,0.093,0,88,0,0,1 +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,61759,27835,24997,10180,130,5.2,5,5,80,77777,9,999999999,14,0.093,0,88,0,0,1 +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,68189,42993,16722,6778,120,4.1,4,4,80,77777,9,999999999,14,0.093,0,88,0,0,1 +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,27,83100,657,1331,387,336,354,161,38575,24995,18566,6744,150,5.7,8,6,80,7620,9,999999999,14,0.093,0,88,0,0,1 +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,46,83100,418,1331,369,256,556,81,29337,24584,9312,3228,310,4.1,5,4,80,77777,9,999999999,14,0.093,0,88,0,0,1 +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,56,83200,172,1331,353,68,253,36,7609,0,4039,1246,310,4.1,5,4,80,77777,9,999999999,14,0.093,0,88,0,0,1 +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,77777,9,999999999,15,0.093,0,88,0,0,1 +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,11.1,77,83400,0,0,326,0,0,0,0,0,0,0,290,2.1,1,1,32,77777,9,999999999,15,0.093,0,88,0,0,1 +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,77777,9,999999999,15,0.093,0,88,0,0,1 +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,77777,9,999999999,15,0.093,0,88,0,0,1 +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,77777,9,999999999,15,0.093,0,88,0,0,1 +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,274,9,999999999,15,0.094,0,88,0,0,1 +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,15,0.094,0,88,0,0,1 +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,16,0.094,0,88,0,0,1 +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,16,0.094,0,88,0,0,1 +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,305,9,999999999,16,0.094,0,88,0,0,1 +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,2731,0,2751,1083,350,1.5,10,10,32,366,9,999999999,16,0.094,0,88,0,0,1 +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,77,83700,453,1330,362,75,0,75,7475,0,7535,3142,10,1.5,10,10,48,366,9,999999999,16,0.094,0,88,0,0,1 +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,38603,22133,19390,7159,0,0,6,6,48,3658,9,999999999,15,0.094,0,88,0,0,1 +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,78083,47115,15751,6476,80,1.5,2,2,24,77777,9,999999999,15,0.094,0,88,0,0,1 +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,90944,97045,11628,2914,30,2.1,1,1,24,77777,9,999999999,15,0.094,0,88,0,0,1 +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,97365,94020,12102,4252,10,3.1,1,1,24,77777,9,999999999,15,0.094,0,88,0,0,1 +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,109886,49388,28545,11564,80,4.1,3,3,24,77777,9,999999999,15,0.094,0,88,0,0,1 +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,41,83300,1249,1330,371,946,909,92,101449,94068,12086,5417,50,4.6,2,2,24,77777,9,999999999,15,0.094,0,88,0,0,1 +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,85019,37315,20824,8647,330,2.6,5,5,24,77777,9,999999999,14,0.094,0,88,0,0,1 +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,10.6,40,83100,1053,1330,384,790,812,146,97318,51354,18062,7559,20,3.6,4,4,48,77777,9,999999999,14,0.094,0,88,0,0,1 +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,69461,42206,23072,9059,30,6.2,5,3,16,77777,9,999999999,14,0.094,0,88,0,0,1 +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,48725,35570,14545,5514,30,8.2,7,6,16,9144,9,999999999,14,0.094,0,88,0,0,1 +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,12.2,61,83200,420,1330,377,192,99,160,20793,6377,17414,5055,40,4.1,8,8,16,1676,9,999999999,14,0.094,0,88,0,0,1 +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,9072,0,4042,1253,50,3.1,4,2,19.2,77777,9,999999999,14,0.094,0,88,0,0,1 +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,3658,9,999999999,14,0.094,0,88,0,0,1 +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,8.9,67,83600,0,0,366,0,0,0,0,0,0,0,50,5.7,10,10,11.2,1097,9,999999999,13,0.094,0,88,0,6.6,1 +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,1097,9,999999999,13,0.094,0,88,0,0,1 +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,13,0.094,0,88,0,0.3,1 +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,8534,9,999999999,13,0.094,0,88,0,0,1 +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,77777,9,999999999,13,0.094,0,88,0,0,1 +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,32,77777,9,999999999,13,0.094,0,88,0,0,1 +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,8.3,89,83700,0,0,295,0,0,0,0,0,0,0,260,1.5,0,0,32,77777,9,999999999,12,0.094,0,88,0,0,1 +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,77777,9,999999999,12,0.094,0,88,0,0,1 +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,77777,9,999999999,12,0.094,0,88,0,0,1 +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,10226,1895,4958,1559,190,2.6,0,0,80,77777,9,999999999,12,0.094,0,88,0,0,1 +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,32030,26956,8878,3181,180,2.1,0,0,96,77777,9,999999999,12,0.094,0,88,0,0,1 +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,57681,43556,12582,4903,200,2.6,0,0,96,77777,9,999999999,12,0.094,0,88,0,0,1 +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,82413,51639,15665,6436,190,2.1,0,0,96,77777,9,999999999,12,0.094,0,88,0,0,1 +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,97939,51542,18029,7546,120,2.6,1,1,96,77777,9,999999999,12,0.094,0,88,0,0,1 +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,112405,54259,21714,8978,190,2.1,1,1,96,77777,9,999999999,12,0.094,0,88,0,0,1 +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,118805,54147,20250,8384,120,2.6,1,1,96,77777,9,999999999,12,0.094,0,88,0,0,1 +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,120671,57570,29598,11930,160,3.1,3,3,96,77777,9,999999999,11,0.094,0,88,0,0,1 +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,29,83000,1182,1330,368,886,811,165,110349,54161,20644,8557,130,2.6,2,2,96,77777,9,999999999,11,0.094,0,88,0,0,1 +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,62513,25023,34094,13227,160,3.6,4,4,96,77777,9,999999999,11,0.094,0,88,0,0,1 +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,62235,28059,40444,13644,340,6.2,5,5,96,77777,9,999999999,11,0.094,0,88,0,0,1 +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,47285,35474,17722,6515,50,3.1,3,3,96,77777,9,999999999,11,0.094,0,88,0,0,1 +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,23691,17580,8152,2885,360,5.2,2,2,96,77777,9,999999999,11,0.094,0,88,0,0,1 +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,7673,0,4572,1385,50,4.1,3,1,96,77777,9,999999999,11,0.094,0,88,0,0,1 +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,77777,9,999999999,11,0.094,0,88,0,0,1 +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,77777,9,999999999,11,0.094,0,88,0,0,1 +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,77777,9,999999999,11,0.094,0,88,0,0,1 +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,32,77777,9,999999999,11,0.094,0,88,0,0,1 +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,77777,9,999999999,11,0.094,0,88,0,0,1 +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,77777,9,999999999,10,0.094,0,88,0,0,1 +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,6.7,80,82700,0,0,294,0,0,0,0,0,0,0,220,2.1,0,0,48,77777,9,999999999,10,0.094,0,88,0,0,1 +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,77777,9,999999999,10,0.094,0,88,0,0,1 +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,77777,9,999999999,10,0.094,0,88,0,0,1 +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,77777,9,999999999,10,0.094,0,88,0,0,1 +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,66,82500,211,1329,309,82,159,57,9041,2402,6305,1873,220,2.1,4,3,96,77777,9,999999999,10,0.094,0,88,0,0,1 +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,28763,23871,13362,4464,200,2.1,7,2,96,77777,9,999999999,11,0.094,0,88,0,0,1 +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,54920,43479,20241,7394,180,2.6,8,5,96,7620,9,999999999,11,0.094,0,88,0,0,1 +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,2.2,31,82300,904,1329,352,599,559,218,70245,43282,25695,10003,340,3.6,7,5,80,7620,9,999999999,11,0.094,0,88,0,0,1 +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,84466,43080,33770,13188,350,4.1,6,3,80,77777,9,999999999,11,0.094,0,88,0,0,1 +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,31,82200,1195,1329,369,702,511,242,85137,37787,29511,11877,350,2.1,7,5,80,7620,9,999999999,11,0.094,0,88,0,0,1 +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,-2.2,16,82100,1255,1329,365,957,773,227,117779,57202,28086,11358,40,3.6,3,3,80,77777,9,999999999,11,0.094,0,88,0,0,1 +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,126868,62022,21937,9028,170,2.1,2,2,80,77777,9,999999999,12,0.094,0,88,0,0,1 +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,94485,87572,17998,5348,160,5.2,3,3,64,77777,9,999999999,12,0.094,0,88,0,0,1 +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,92650,51873,24156,9867,330,5.2,6,2,64,77777,9,999999999,12,0.094,0,88,0,0,1 +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,55740,26138,31938,11723,320,5.7,8,8,32,7620,9,999999999,12,0.094,0,88,0,0,1 +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,31236,12584,21723,7661,340,6.2,9,7,32,7620,9,999999999,12,0.094,0,88,0,0,1 +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,24642,17790,13099,4258,350,2.6,8,4,64,77777,9,999999999,13,0.094,0,88,0,0,1 +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,7329,0,4677,1417,340,2.6,6,2,80,77777,9,999999999,13,0.094,0,88,0,0,1 +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,58,82100,9,388,340,1,6,1,0,0,0,0,360,5.2,1,1,32,77777,9,999999999,13,0.094,0,88,0,0,1 +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,77777,9,999999999,13,0.094,0,88,0,0,1 +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,7.8,62,82400,0,0,322,0,0,0,0,0,0,0,300,2.1,1,1,32,77777,9,999999999,13,0.094,0,88,0,0,1 +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,1219,9,999999999,14,0.094,0,88,0,0,1 +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,6.1,55,82400,0,0,353,0,0,0,0,0,0,0,330,2.1,9,9,32,1036,9,999999999,14,0.094,0,88,0,0,1 +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,975,9,999999999,14,0.095,0,88,0,0,1 +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,975,9,999999999,14,0.095,0,88,0,0,1 +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,975,9,999999999,14,0.095,0,88,0,0,1 +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,1128,9,999999999,14,0.095,0,88,0,0,1 +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,1463,9,999999999,15,0.095,0,88,0,0,1 +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,9169,1693,8014,2183,340,3.1,7,7,80,5182,9,999999999,15,0.095,0,88,0,0,1 +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,20593,4654,18162,5502,10,3.6,8,8,80,5182,9,999999999,15,0.095,0,88,0,0,1 +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,40935,25509,19344,7147,350,3.6,7,7,64,7620,9,999999999,15,0.095,0,88,0,0,1 +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,58193,28087,31692,11827,360,4.1,8,6,64,7620,9,999999999,15,0.095,0,88,0,0,1 +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,56,82900,1076,1329,363,577,440,220,69186,31324,26518,10773,360,3.1,7,7,64,4572,9,999999999,16,0.095,0,88,0,0,1 +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,75744,17939,56680,19565,350,3.1,9,9,64,7620,9,999999999,16,0.095,0,88,0,0,1 +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,51,82900,1256,1329,386,698,271,441,81317,23974,51744,18733,360,2.1,9,9,48,4267,9,999999999,16,0.095,0,88,0,0,1 +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,104232,42392,52021,18789,10,3.1,10,8,32,7620,9,999999999,16,0.095,0,88,0,0,1 +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,11.7,59,82900,1184,1329,371,671,391,322,79244,30592,38267,14808,20,5.2,10,7,32,7620,9,999999999,16,0.095,0,88,0,0,1 +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,60221,21708,34989,13542,50,4.6,10,8,40,1219,9,999999999,17,0.095,0,88,0,0,1 +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,51708,20924,32766,11961,60,4.6,9,7,40,2134,9,999999999,17,0.095,0,88,0,1,1 +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,27328,4509,23982,8247,10,5.7,10,9,32,2134,9,999999999,17,0.095,0,88,0,0,1 +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,8736,0,8805,3478,40,2.6,10,10,24,1676,9,999999999,17,0.095,0,88,0,0,1 +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,3107,0,3129,1163,20,2.1,10,10,19.2,1676,9,999999999,17,0.095,0,88,0,0,1 +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,488,9,999999999,18,0.095,0,88,0,0,1 +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,18,0.095,0,88,0,0,1 +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,18,0.095,0,88,0,0.8,1 +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,2743,9,999999999,18,0.095,0,88,0,0,1 +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,77777,9,999999999,18,0.095,0,88,0,0,1 +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,16,0.102,0,88,0,0,1 +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,12.2,96,83700,0,0,365,0,0,0,0,0,0,0,330,0.4,10,10,11.2,244,9,999999999,16,0.102,0,88,0,0,1 +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,12.2,93,83700,0,0,365,0,0,0,0,0,0,0,320,0.2,10,10,11.2,244,9,999999999,16,0.102,0,88,0,0,1 +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,9,9,19.2,488,9,999999999,16,0.102,0,88,0,0,1 +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,2,2,24,77777,9,999999999,16,0.102,0,88,0,0,1 +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,12.8,87,83700,214,1328,335,98,318,47,10949,1920,5266,1651,230,2.6,3,3,24,77777,9,999999999,16,0.102,0,88,0,0,1 +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,29232,22160,8325,3016,210,1.5,1,1,24,77777,9,999999999,16,0.102,0,88,0,0,1 +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,57028,39568,10100,4000,170,2.1,1,1,24,77777,9,999999999,16,0.102,0,88,0,0,1 +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,72676,86759,14125,2321,0,0,1,1,24,77777,9,999999999,16,0.102,0,88,0,0,1 +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,97168,49907,23898,9835,10,2.6,4,1,24,77777,9,999999999,16,0.102,0,88,0,0,1 +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,109412,49820,21087,8754,360,2.6,5,2,24,77777,9,999999999,16,0.102,0,88,0,0,1 +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,114958,50209,19521,8104,350,3.1,3,1,24,77777,9,999999999,16,0.102,0,88,0,0,1 +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,24,83600,1252,1328,377,958,884,124,100848,90533,15953,6982,340,2.6,1,1,32,77777,9,999999999,17,0.102,0,88,0,0,1 +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,94316,88750,15702,4976,20,4.1,1,1,64,77777,9,999999999,17,0.102,0,88,0,0,1 +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,86460,90462,15089,3262,120,2.6,1,1,64,77777,9,999999999,17,0.102,0,88,0,0,1 +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,78173,49390,12199,5032,130,2.6,1,1,64,77777,9,999999999,17,0.102,0,88,0,0,1 +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,53955,42884,15594,5869,130,3.1,2,2,64,77777,9,999999999,17,0.102,0,88,0,0,1 +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,27818,22750,9031,3171,130,3.1,3,3,64,77777,9,999999999,17,0.102,0,88,0,0,1 +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,10,39,83600,186,1328,395,46,95,33,5221,0,3754,1196,110,5.7,7,7,80,3962,9,999999999,17,0.102,0,88,0,0,1 +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,49,83600,11,432,388,2,3,2,0,0,0,0,40,8.2,9,9,48,2286,9,999999999,17,0.102,0,88,0,0,1 +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,2134,9,999999999,17,0.102,0,88,0,0,1 +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,2134,9,999999999,17,0.102,0,88,0,0,1 +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,2743,9,999999999,17,0.102,0,88,0,0,1 +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,2896,9,999999999,17,0.102,0,88,0,0,1 +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,3048,9,999999999,17,0.102,0,88,0,0,1 +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,6096,9,999999999,17,0.102,0,88,0,0,1 +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,3353,9,999999999,17,0.102,0,88,0,0,1 +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,6096,9,999999999,17,0.102,0,88,0,0,1 +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,6096,9,999999999,17,0.102,0,88,0,0,1 +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,11.1,77,84100,215,1328,359,55,22,51,6114,209,5687,1754,230,2.1,9,9,96,2896,9,999999999,17,0.102,0,88,0,0,1 +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,24812,16237,13528,4536,190,2.6,6,6,80,6096,9,999999999,17,0.102,0,88,0,0,1 +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,10.6,55,84200,695,1328,362,377,395,170,43334,27311,19631,7254,260,2.6,5,5,80,77777,9,999999999,17,0.102,0,88,0,0,1 +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,55555,27639,25511,9982,320,2.1,3,3,72,77777,9,999999999,17,0.102,0,88,0,0,1 +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,95685,48849,20184,8411,330,3.6,2,2,72,77777,9,999999999,17,0.102,0,88,0,0,1 +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,73033,26049,36922,14404,350,2.1,6,6,72,1524,9,999999999,17,0.102,0,88,0,0,1 +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,117934,53556,35972,14169,10,3.1,5,5,56,77777,9,999999999,17,0.102,0,88,0,0,1 +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,100865,39815,50380,18394,10,2.6,8,8,56,2134,9,999999999,17,0.102,0,88,0,0,1 +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,41,84000,1186,1328,403,423,107,327,49961,8531,38866,14986,60,4.6,9,9,56,3658,9,999999999,17,0.102,0,88,0,0,1 +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,24187,0,24425,11157,120,6.2,10,10,24,1524,9,999999999,17,0.102,0,88,0,0,1 +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,56309,26285,31592,11683,140,6.7,9,7,64,3658,9,999999999,17,0.102,0,88,0,0,1 +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,19549,1711,18019,6656,120,3.6,9,8,64,4267,9,999999999,17,0.102,0,88,0,0,1 +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,23099,12836,15359,4791,150,4.1,6,6,64,7620,9,999999999,17,0.102,0,88,0,0,1 +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,8156,1020,7003,1881,160,5.2,6,4,80,7620,9,999999999,17,0.102,0,88,0,0,1 +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,3658,9,999999999,17,0.102,0,88,0,0,1 +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,1829,9,999999999,17,0.102,0,88,0,0,1 +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,1372,9,999999999,17,0.102,0,88,0,0,1 +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,1829,9,999999999,17,0.102,0,88,0,0,1 +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,4267,9,999999999,17,0.102,0,88,0,0,1 +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,77777,9,999999999,17,0.103,0,88,0,0,1 +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,77777,9,999999999,17,0.103,0,88,0,0,1 +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,77777,9,999999999,17,0.103,0,88,0,0,1 +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,77777,9,999999999,17,0.103,0,88,0,0,1 +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,77777,9,999999999,17,0.103,0,88,0,0,1 +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,10847,1880,5271,1658,300,2.6,3,1,72,77777,9,999999999,17,0.103,0,88,0,0,1 +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,5672,0,5718,2502,350,2.6,10,10,0.8,61,9,999999999,17,0.103,0,88,0,0,1 +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,50436,34199,21509,7812,330,3.1,8,3,4.8,77777,9,999999999,17,0.103,0,88,0,0,1 +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,62928,31378,31359,11787,350,3.1,10,5,6.4,77777,9,999999999,17,0.103,0,88,0,0,1 +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,90086,44822,29562,11864,350,3.1,10,5,9.6,77777,9,999999999,17,0.103,0,88,0,0,1 +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,100883,44988,30960,12438,340,3.1,9,4,11.2,77777,9,999999999,18,0.103,0,88,0,0,1 +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,67069,23243,24254,9981,0,0,9,4,12.8,77777,9,999999999,18,0.103,0,88,0,0,1 +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,77872,15099,61019,20797,0,0,9,9,16,3658,9,999999999,18,0.103,0,88,0,0,1 +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,54131,8210,44135,16518,50,2.1,9,9,16,3658,9,999999999,18,0.103,0,88,0,0,1 +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,73944,33041,32888,12921,170,6.2,7,7,24,7620,9,999999999,18,0.103,0,88,0,0,1 +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,40274,7257,33783,12278,170,7.7,9,9,24,3658,9,999999999,18,0.103,0,88,0,0,1 +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,30364,11214,21177,7579,180,8.8,9,7,48,2134,9,999999999,18,0.103,0,88,0,0,1 +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,20545,10185,13606,4432,190,5.7,9,8,48,2134,9,999999999,18,0.103,0,88,0,0,1 +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,68,83600,191,1328,376,56,73,45,6192,0,4991,1521,160,6.7,7,6,80,8230,9,999999999,18,0.103,0,88,0,0,1 +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,68,83600,12,454,370,2,7,1,0,0,0,0,160,6.2,5,4,48,77777,9,999999999,18,0.103,0,88,0,0,1 +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,14.4,70,83600,0,0,346,0,0,0,0,0,0,0,160,4.1,0,0,40,77777,9,999999999,18,0.103,0,88,0,0,1 +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,77777,9,999999999,18,0.103,0,88,0,0,1 +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,77777,9,999999999,18,0.103,0,88,0,0,1 +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,77777,9,999999999,18,0.103,0,88,0,0,1 +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,12.8,87,83500,0,0,321,0,0,0,0,0,0,0,190,2.1,0,0,40,77777,9,999999999,18,0.103,0,88,0,0,1 +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,11.7,81,83500,0,0,320,0,0,0,0,0,0,0,310,1.5,0,0,40,77777,9,999999999,18,0.103,0,88,0,0,1 +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,77777,9,999999999,18,0.103,0,88,0,0,1 +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,77777,9,999999999,18,0.103,0,88,0,0,1 +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,83,83500,21,608,325,4,2,4,0,0,0,0,190,2.6,9,4,96,6096,9,999999999,18,0.103,0,88,0,0,1 +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,10,72,83600,217,1327,344,62,36,56,6851,474,6208,1879,210,2.1,9,7,96,6096,9,999999999,18,0.103,0,88,0,0,1 +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,11122,1883,9529,3405,220,3.1,9,8,80,3962,9,999999999,18,0.103,0,88,0,0,1 +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,35365,14600,24191,8519,200,3.1,9,7,112,3962,9,999999999,17,0.103,0,88,0,0,1 +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,53359,27701,21611,8651,190,3.6,8,6,112,7010,9,999999999,17,0.103,0,88,0,0,1 +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,72219,33739,31175,12349,250,2.1,7,5,112,6706,9,999999999,17,0.103,0,88,0,0,1 +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,73856,26879,39725,15232,270,1.5,8,6,112,6096,9,999999999,17,0.103,0,88,0,0,1 +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,15,83500,1258,1327,396,504,320,200,62618,22687,24973,10203,140,3.6,7,5,112,6096,9,999999999,17,0.103,0,88,0,0,1 +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.6,15,83400,1254,1327,397,797,439,381,94253,38253,45357,16992,120,4.1,6,4,112,6096,9,999999999,16,0.103,0,88,0,0,1 +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,104127,52473,32240,12803,80,3.6,4,2,112,77777,9,999999999,16,0.103,0,88,0,0,1 +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,90573,50742,28913,11549,90,4.6,4,3,112,77777,9,999999999,16,0.103,0,88,0,0,1 +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,72365,47164,26515,10178,90,4.1,4,4,96,77777,9,999999999,16,0.103,0,88,0,0,1 +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,52128,41775,17915,6611,120,4.1,4,4,64,77777,9,999999999,16,0.103,0,88,0,0,1 +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,14,83200,436,1327,403,106,72,82,12245,3604,9502,3322,80,3.1,6,6,64,6096,9,999999999,15,0.103,0,88,0,0,1 +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,16,83200,193,1327,390,51,53,43,5709,290,4826,1480,120,3.6,5,5,80,77777,9,999999999,15,0.103,0,88,0,0,1 +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,77777,9,999999999,15,0.103,0,88,0,0,1 +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,31,83300,0,0,363,0,0,0,0,0,0,0,0,0,3,3,32,77777,9,999999999,15,0.103,0,88,0,0,1 +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,77777,9,999999999,15,0.103,0,88,0,0,1 +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,77777,9,999999999,14,0.103,0,88,0,0,1 +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,77777,9,999999999,14,0.103,0,88,0,0,1 +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,77777,9,999999999,14,0.103,0,88,0,0,1 +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,77777,9,999999999,14,0.103,0,88,0,0,1 +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,7.2,60,83600,0,0,315,0,0,0,0,0,0,0,300,3.1,0,0,40,77777,9,999999999,13,0.103,0,88,0,0,1 +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,77777,9,999999999,13,0.103,0,88,0,0,1 +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,77777,9,999999999,13,0.103,0,88,0,0,1 +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,11972,2452,4457,1443,200,4.1,0,0,96,77777,9,999999999,13,0.103,0,88,0,0,1 +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,34577,29733,7597,2770,200,3.6,0,0,96,77777,9,999999999,13,0.103,0,88,0,0,1 +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,60457,45564,10593,4177,220,2.1,0,0,96,77777,9,999999999,13,0.103,0,88,0,0,1 +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,85238,52556,13053,5409,230,1.5,0,0,96,77777,9,999999999,14,0.103,0,88,0,0,1 +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,89337,91431,15791,3531,10,1.5,0,0,96,77777,9,999999999,14,0.103,0,88,0,0,1 +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,98742,91507,17105,5606,110,4.1,1,0,96,77777,9,999999999,14,0.103,0,88,0,0,1 +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,104832,93069,17360,7801,130,4.1,1,0,96,77777,9,999999999,14,0.103,0,88,0,0,1 +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,4.4,20,83600,1255,1327,390,943,856,133,98963,87548,17020,7515,100,6.2,2,1,96,77777,9,999999999,14,0.103,0,88,0,0,1 +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,111545,54070,18924,7870,120,5.7,3,1,96,77777,9,999999999,14,0.103,0,88,0,0,1 +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,82302,84218,15955,3393,140,5.7,2,1,96,77777,9,999999999,14,0.103,0,88,0,0,1 +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,81175,51362,12788,5276,130,5.7,3,3,96,77777,9,999999999,14,0.103,0,88,0,0,1 +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,55724,43730,14308,5465,120,5.7,2,2,96,77777,9,999999999,15,0.103,0,88,0,0,1 +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,26032,20085,12331,4126,140,7.7,4,3,80,77777,9,999999999,15,0.103,0,88,0,0,1 +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,9557,2521,6648,1863,150,6.7,4,4,80,77777,9,999999999,15,0.103,0,88,0,0,1 +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,7.2,32,83400,14,475,380,2,7,2,0,0,0,0,140,3.6,6,4,80,6096,9,999999999,15,0.103,0,88,0,0,1 +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,77777,9,999999999,15,0.103,0,88,0,0,1 +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,77777,9,999999999,15,0.103,0,88,0,0,1 +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,77777,9,999999999,15,0.103,0,88,0,0,1 +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,77777,9,999999999,15,0.103,0,88,0,0,1 +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,77777,9,999999999,15,0.103,0,88,0,0,1 +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,6.1,40,83300,0,0,337,0,0,0,0,0,0,0,150,6.2,0,0,40,77777,9,999999999,16,0.103,0,88,0,0,1 +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,77777,9,999999999,16,0.103,0,88,0,0,1 +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,77777,9,999999999,16,0.103,0,88,0,0,1 +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,77777,9,999999999,16,0.103,0,88,0,0,1 +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,12227,2313,4352,1416,170,2.6,0,0,80,77777,9,999999999,16,0.103,0,88,0,0,1 +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,34917,29211,7262,2659,240,3.1,0,0,96,77777,9,999999999,15,0.103,0,88,0,0,1 +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,60818,44981,10022,3964,190,5.2,0,0,96,77777,9,999999999,15,0.103,0,88,0,0,1 +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,73088,87547,13824,2323,190,6.2,0,0,96,77777,9,999999999,15,0.103,0,88,0,0,1 +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,3.3,18,83200,1078,1326,381,844,901,112,88983,91844,15020,3455,160,5.7,0,0,96,77777,9,999999999,15,0.103,0,88,0,0,1 +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,99641,93722,15621,5300,210,6.2,0,0,112,77777,9,999999999,14,0.103,0,88,0,0,1 +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,99631,89154,15777,7288,170,5.2,1,1,112,77777,9,999999999,14,0.103,0,88,0,0,1 +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,117145,55129,21823,8989,130,7.2,3,3,112,77777,9,999999999,14,0.103,0,88,0,0,1 +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,12,82900,1189,1326,414,927,797,212,113650,58124,26125,10634,150,7.2,5,5,112,77777,9,999999999,14,0.103,0,88,0,0,1 +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,68981,33565,27495,11058,170,7.7,6,5,112,7620,9,999999999,13,0.103,0,88,0,0,1 +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,57964,30757,29897,11199,180,6.7,9,7,112,4877,9,999999999,13,0.103,0,88,0,0,1 +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,31717,11756,23451,8166,280,4.1,8,6,112,8230,9,999999999,13,0.103,0,88,0,0,1 +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,2.8,18,82800,440,1326,403,215,206,147,23694,13635,16274,5015,220,3.6,6,5,112,8230,9,999999999,13,0.103,0,88,0,0,1 +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,9980,2513,6052,1764,180,3.1,3,3,112,77777,9,999999999,13,0.103,0,88,0,0,1 +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,77777,9,999999999,12,0.103,0,88,0,0,1 +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,77777,9,999999999,12,0.103,0,88,0,0,1 +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,77777,9,999999999,12,0.103,0,88,0,0,1 +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,-3.9,19,82900,0,0,331,0,0,0,0,0,0,0,190,3.1,3,1,40,77777,9,999999999,12,0.103,0,88,0,0,1 +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,77777,9,999999999,11,0.103,0,88,0,0,1 +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,32,82900,0,0,353,0,0,0,0,0,0,0,140,3.6,10,9,40,7010,9,999999999,11,0.104,0,88,0,0,1 +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,33,82900,0,0,351,0,0,0,0,0,0,0,160,2.1,10,9,40,7010,9,999999999,11,0.104,0,88,0,0,1 +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,7010,9,999999999,11,0.104,0,88,0,0,1 +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,7010,9,999999999,10,0.104,0,88,0,0,1 +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,77777,9,999999999,10,0.104,0,88,0,0,1 +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,8400,2134,4893,1561,210,3.6,5,5,96,77777,9,999999999,10,0.104,0,88,0,0,1 +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,22178,14909,11817,4079,220,5.7,5,4,96,77777,9,999999999,10,0.104,0,88,0,0,1 +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,19,83100,697,1326,353,507,815,78,62175,47961,9591,3792,220,2.6,0,0,96,77777,9,999999999,10,0.104,0,88,0,0,1 +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,16,83100,907,1326,366,698,880,95,73663,88893,13281,2297,220,1.5,0,0,112,77777,9,999999999,10,0.104,0,88,0,0,1 +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,10,83100,1078,1326,365,849,907,112,88696,91719,14999,3459,310,3.6,1,0,112,77777,9,999999999,11,0.104,0,88,0,0,1 +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,-6.1,9,83100,1198,1326,376,905,829,155,113838,57084,19582,8112,140,3.6,5,1,112,77777,9,999999999,11,0.104,0,88,0,0,1 +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,99829,87739,17807,8028,40,2.6,4,1,112,77777,9,999999999,11,0.104,0,88,0,0,1 +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,9,83000,1256,1326,398,984,864,165,124098,59612,20904,8620,170,4.6,4,4,112,77777,9,999999999,11,0.104,0,88,0,0,1 +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,88040,41346,29914,11991,170,3.6,4,4,112,77777,9,999999999,11,0.104,0,88,0,0,1 +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,76074,39999,23114,9476,140,4.1,4,4,112,77777,9,999999999,11,0.104,0,88,0,0,1 +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,9,82800,891,1326,392,571,613,159,68584,44188,19180,7711,350,2.1,6,4,112,8534,9,999999999,11,0.104,0,88,0,0,1 +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,9,82800,678,1326,401,483,649,151,56137,46682,17624,6539,320,3.1,6,5,112,8534,9,999999999,11,0.104,0,88,0,0,1 +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,20631,12243,12902,4279,350,5.2,5,5,112,77777,9,999999999,11,0.104,0,88,0,0,1 +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,19,82900,200,1326,371,56,113,38,6352,453,4321,1367,360,3.6,4,4,112,77777,9,999999999,11,0.104,0,88,0,0,1 +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,77777,9,999999999,11,0.104,0,88,0,0,1 +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,77777,9,999999999,12,0.104,0,88,0,0,1 +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,49,83200,0,0,361,0,0,0,0,0,0,0,60,4.1,3,3,32,77777,9,999999999,12,0.104,0,88,0,0,1 +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,77777,9,999999999,12,0.104,0,88,0,0,1 +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,77777,9,999999999,12,0.104,0,88,0,0,1 +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,77777,9,999999999,12,0.104,0,88,0,0,1 +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,5.6,53,83500,0,0,314,0,0,0,0,0,0,0,350,1.5,0,0,40,77777,9,999999999,12,0.104,0,88,0,0,1 +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,57,83600,0,0,306,0,0,0,0,0,0,0,300,2.1,0,0,40,77777,9,999999999,12,0.104,0,88,0,0,1 +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,57,83600,0,0,306,0,0,0,0,0,0,0,0,0,0,0,40,77777,9,999999999,12,0.104,0,88,0,0,1 +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,32,77777,9,999999999,12,0.104,0,88,0,0,1 +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,12785,2350,4040,1327,40,2.6,0,0,80,77777,9,999999999,12,0.104,0,88,0,0,1 +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,36055,31185,6722,2469,30,2.6,0,0,80,77777,9,999999999,12,0.104,0,88,0,0,1 +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,3.3,33,83900,697,1326,333,506,818,75,53945,81528,11015,1631,40,2.1,0,0,80,77777,9,999999999,12,0.104,0,88,0,0,1 +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,73752,89463,12760,2265,70,2.1,0,0,80,77777,9,999999999,12,0.104,0,88,0,0,1 +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,90119,93987,13757,3303,180,2.1,0,0,80,77777,9,999999999,13,0.104,0,88,0,0,1 +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,101649,96546,14417,5023,100,2.1,0,0,80,77777,9,999999999,13,0.104,0,88,0,0,1 +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,100595,90656,14475,6842,130,3.6,1,1,96,77777,9,999999999,13,0.104,0,88,0,0,1 +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,25,83600,1256,1326,383,945,794,192,117585,54316,24009,9849,170,4.1,3,3,96,77777,9,999999999,13,0.104,0,88,0,0,1 +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,102263,48459,35173,13819,90,5.7,5,5,96,77777,9,999999999,13,0.104,0,88,0,0,1 +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,73382,34941,26715,10830,130,5.7,4,4,80,77777,9,999999999,13,0.104,0,88,0,0,1 +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,36,83500,892,1326,389,615,754,107,75767,45188,13228,5469,130,6.2,4,4,80,77777,9,999999999,13,0.104,0,88,0,0,1 +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,48165,34943,13982,5371,140,3.6,3,3,80,77777,9,999999999,13,0.104,0,88,0,0,1 +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,28329,23352,10775,3725,0,0,2,2,80,77777,9,999999999,13,0.104,0,88,0,0,1 +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,8.9,36,83600,201,1326,379,83,287,39,9374,391,4415,1400,50,5.7,3,3,80,77777,9,999999999,13,0.104,0,88,0,0,1 +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,77777,9,999999999,13,0.104,0,88,0,0,1 +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,77777,9,999999999,13,0.104,0,88,0,0,1 +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,77777,9,999999999,13,0.104,0,88,0,0,1 +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,77777,9,999999999,13,0.104,0,88,0,0,1 +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,77777,9,999999999,13,0.104,0,88,0,0,1 +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,77777,9,999999999,13,0.104,0,88,0,0,1 +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,77777,9,999999999,13,0.104,0,88,0,0,1 +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,77777,9,999999999,13,0.104,0,88,0,0,1 +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,4,4,40,77777,9,999999999,13,0.104,0,88,0,0,1 +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,5,5,40,77777,9,999999999,13,0.104,0,88,0,0,1 +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,9883,2784,8067,2241,150,2.1,4,4,72,77777,9,999999999,13,0.104,0,88,0,0,1 +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,27831,21964,14028,4667,240,2.1,2,2,80,77777,9,999999999,13,0.104,0,88,0,0,1 +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,50378,38021,17800,6679,160,2.1,1,0,80,77777,9,999999999,13,0.104,0,88,0,0,1 +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,77505,50923,22128,8814,140,3.6,0,0,96,77777,9,999999999,13,0.104,0,88,0,0,1 +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,28,84200,1078,1325,325,811,740,209,98056,54931,25397,10340,150,5.2,0,0,96,77777,9,999999999,13,0.104,0,88,0,0,1 +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,112928,57062,27644,11195,140,5.7,0,0,96,77777,9,999999999,13,0.104,0,88,0,0,1 +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,120588,57454,28768,11620,90,4.1,0,0,96,77777,9,999999999,13,0.104,0,88,0,0,1 +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,120339,57415,28643,11575,150,3.6,0,0,96,77777,9,999999999,13,0.104,0,88,0,0,1 +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,107799,53305,29172,11754,100,3.6,1,1,96,77777,9,999999999,13,0.104,0,88,0,0,1 +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,5,28,83800,1067,1325,377,659,456,291,77416,37103,34387,13366,60,3.6,6,4,80,7010,9,999999999,13,0.104,0,88,0,0,1 +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,4.4,26,83800,894,1325,402,269,122,186,31862,8872,22135,8783,70,4.1,9,9,80,3962,9,999999999,13,0.104,0,88,0,0,1 +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,19426,2802,17055,6386,50,3.6,9,9,80,3962,9,999999999,13,0.104,0,88,0,0,1 +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,25928,19620,13523,4454,80,5.2,4,3,80,77777,9,999999999,13,0.104,0,88,0,0,1 +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,8563,1612,7181,1993,110,5.2,2,2,80,77777,9,999999999,13,0.104,0,88,0,0,1 +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,77777,9,999999999,13,0.104,0,88,0,0,1 +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,77777,9,999999999,13,0.104,0,88,0,0,1 +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,77777,9,999999999,13,0.104,0,88,0,0,1 +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,7.2,60,84000,0,0,315,0,0,0,0,0,0,0,160,2.1,0,0,48,77777,9,999999999,13,0.104,0,88,0,0,1 +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,77777,9,999999999,13,0.104,0,88,0,0,1 +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,77777,9,999999999,13,0.104,0,88,0,0,1 +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,61,84100,0,0,301,0,0,0,0,0,0,0,330,2.6,0,0,32,77777,9,999999999,13,0.104,0,88,0,0,1 +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,77777,9,999999999,13,0.104,0,88,0,0,1 +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,1.1,54,84200,0,0,288,0,0,0,0,0,0,0,330,2.1,0,0,48,77777,9,999999999,13,0.104,0,88,0,0,1 +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.6,52,84200,23,629,287,7,89,4,0,0,0,0,330,1.5,0,0,112,77777,9,999999999,13,0.104,0,88,0,0,1 +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,13826,2351,3403,1135,0,0,0,0,112,77777,9,999999999,13,0.104,0,88,0,0,1 +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,33128,71099,7004,1087,360,2.6,0,0,112,77777,9,999999999,13,0.104,0,88,0,0,1 +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,54759,85379,9053,1521,70,2.6,0,0,112,77777,9,999999999,13,0.104,0,88,0,0,1 +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.6,27,84200,907,1325,330,701,916,74,74583,92761,10492,2063,0,0,0,0,112,77777,9,999999999,13,0.104,0,88,0,0,1 +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,24,84200,1078,1325,335,855,949,83,90565,96584,11320,2923,70,2.6,0,0,112,77777,9,999999999,13,0.104,0,88,0,0,1 +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,23,84200,1198,1325,340,964,967,89,101829,98595,11798,4323,60,3.1,0,0,112,77777,9,999999999,13,0.104,0,88,0,0,1 +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,21,84100,1259,1325,359,960,823,177,120402,56606,22305,9176,0,0,2,2,112,77777,9,999999999,13,0.104,0,88,0,0,1 +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,19,84000,1257,1325,368,910,820,131,94974,83447,16750,7616,30,2.1,3,3,112,77777,9,999999999,13,0.104,0,88,0,0,1 +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,19,83900,1192,1325,367,898,831,150,112999,55657,18957,7874,70,3.6,5,2,112,77777,9,999999999,13,0.104,0,88,0,0,1 +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,18,83900,1068,1325,379,863,879,153,106638,60179,18986,7906,350,2.1,5,5,112,77777,9,999999999,13,0.104,0,88,0,0,1 +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,17,83800,895,1325,373,636,783,107,78671,50273,13280,5475,220,1.5,2,2,96,77777,9,999999999,13,0.104,0,88,0,0,1 +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,17,83800,683,1325,368,473,797,62,50488,79053,9219,1508,120,3.1,1,1,80,77777,9,999999999,13,0.104,0,88,0,0,1 +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,31976,28288,8015,2880,120,3.1,2,2,80,77777,9,999999999,13,0.104,0,88,0,0,1 +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,12309,2019,4226,1353,60,4.1,3,3,80,77777,9,999999999,13,0.104,0,88,0,0,1 +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,77777,9,999999999,13,0.104,0,88,0,0,1 +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,2.2,31,83900,0,0,338,0,0,0,0,0,0,0,120,2.1,1,1,48,77777,9,999999999,13,0.104,0,88,0,0,1 +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,77777,9,999999999,13,0.104,0,88,0,0,1 +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,77777,9,999999999,13,0.104,0,88,0,0,1 +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,77777,9,999999999,13,0.104,0,88,0,0,1 +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,46,83800,0,0,320,0,0,0,0,0,0,0,180,3.1,0,0,32,77777,9,999999999,13,0.104,0,88,0,0,1 +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,69,83700,0,0,321,0,0,0,0,0,0,0,230,2.1,0,0,32,77777,9,999999999,13,0.104,0,88,0,0,1 +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,77777,9,999999999,13,0.104,0,88,0,0,1 +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,77777,9,999999999,13,0.104,0,88,0,0,1 +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,77777,9,999999999,13,0.104,0,88,0,0,1 +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,12173,3201,4676,1509,300,1.5,1,1,64,77777,9,999999999,13,0.104,0,88,0,0,1 +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,36306,30492,6385,2354,350,2.1,1,0,80,77777,9,999999999,13,0.104,0,88,0,0,1 +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,54360,83234,10178,1596,350,1.5,0,0,80,77777,9,999999999,13,0.104,0,88,0,0,1 +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,74140,90942,11831,2195,10,2.6,0,0,96,77777,9,999999999,13,0.104,0,88,0,0,1 +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,90375,95104,12736,3159,30,3.6,0,0,80,77777,9,999999999,13,0.104,0,88,0,0,1 +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,5.6,29,83800,1198,1325,360,962,951,101,102031,97557,13302,4751,40,2.6,0,0,80,77777,9,999999999,13,0.104,0,88,0,0,1 +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,107616,98370,13493,6514,40,3.1,0,0,80,77777,9,999999999,13,0.104,0,88,0,0,1 +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,102314,93398,13254,6327,120,3.1,1,1,80,77777,9,999999999,13,0.104,0,88,0,0,1 +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,2.8,18,83600,1192,1325,397,932,829,185,115413,57516,23020,9471,120,2.6,3,3,80,77777,9,999999999,13,0.104,0,88,0,0,1 +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,93836,51214,20356,8445,100,2.1,2,2,80,77777,9,999999999,13,0.104,0,88,0,0,1 +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,2.2,17,83500,896,1325,396,521,543,154,62684,37712,18607,7526,360,4.1,3,3,80,77777,9,999999999,13,0.104,0,88,0,0,1 +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,48769,34141,23883,8336,360,4.1,5,4,80,77777,9,999999999,13,0.104,0,88,0,0,1 +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,21177,15556,6474,2365,100,3.6,6,5,80,9144,9,999999999,13,0.104,0,88,0,0,1 +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,9777,2434,7983,2134,160,4.1,6,5,80,9144,9,999999999,13,0.104,0,88,0,0,1 +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,9144,9,999999999,13,0.104,0,88,0,0,1 +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,77777,9,999999999,13,0.104,0,88,0,0,1 +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,77777,9,999999999,13,0.104,0,88,0,0,1 +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,77777,9,999999999,13,0.104,0,88,0,0,1 +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,7.2,43,83500,0,0,338,0,0,0,0,0,0,0,190,4.6,0,0,48,77777,9,999999999,13,0.104,0,88,0,0,1 +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,77777,9,999999999,13,0.104,0,88,0,0,1 +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,77777,9,999999999,13,0.104,0,88,0,0,1 +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,77777,9,999999999,13,0.104,0,88,0,0,1 +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,77777,9,999999999,13,0.104,0,88,0,0,1 +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,77777,9,999999999,13,0.104,0,88,0,0,1 +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,10934,3918,5312,1676,210,4.1,5,2,112,77777,9,999999999,13,0.104,0,88,0,0,1 +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,30173,25673,8594,3103,190,4.6,4,1,112,77777,9,999999999,13,0.104,0,88,0,0,1 +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,55180,42608,14619,5632,200,5.7,4,2,112,77777,9,999999999,13,0.104,0,88,0,0,1 +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,74972,46625,15592,6410,180,5.2,3,3,128,77777,9,999999999,13,0.104,0,88,0,0,1 +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,84252,84620,16645,3632,200,5.2,2,2,128,77777,9,999999999,13,0.104,0,88,0,0,1 +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,12,83300,1198,1325,411,795,663,195,98230,47175,24213,9919,170,3.1,5,3,128,77777,9,999999999,13,0.104,0,88,0,0,1 +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,107183,49658,29256,11789,190,4.1,7,5,128,7620,9,999999999,13,0.104,0,88,0,0,1 +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,57637,17000,32108,12798,210,5.7,10,8,112,7620,9,999999999,13,0.104,0,88,0,0,1 +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,57972,18016,33629,13275,190,2.6,9,7,112,5486,9,999999999,13,0.104,0,88,0,0,1 +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,81345,28629,56973,18701,350,6.2,9,8,96,5486,9,999999999,13,0.104,0,88,0,0,1 +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,25469,0,25704,10879,360,3.1,10,10,96,3658,9,999999999,14,0.104,0,88,0,0,1 +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,18169,0,18326,7444,60,4.1,10,10,96,4572,9,999999999,14,0.104,0,88,0,0,1 +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,10498,0,10581,4077,120,2.1,10,10,96,4572,9,999999999,14,0.104,0,88,0,0,1 +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,3815,0,3842,1418,150,2.1,10,10,96,4572,9,999999999,14,0.104,0,88,0,0,1 +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,4572,9,999999999,14,0.104,0,88,0,0,1 +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,4572,9,999999999,14,0.104,0,88,0,0,1 +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,4.4,36,83300,0,0,346,0,0,0,0,0,0,0,180,1.5,2,2,40,77777,9,999999999,14,0.104,0,88,0,0,1 +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,40,83300,0,0,337,0,0,0,0,0,0,0,190,3.6,1,1,40,77777,9,999999999,14,0.104,0,88,0,0,1 +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,77777,9,999999999,14,0.104,0,88,0,0,1 +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,77777,9,999999999,14,0.104,0,88,0,0,1 +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,77777,9,999999999,14,0.104,0,88,0,0,1 +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,77777,9,999999999,14,0.104,0,88,0,0,1 +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,5,51,83300,0,0,319,0,0,0,0,0,0,0,210,3.1,4,1,64,77777,9,999999999,15,0.104,0,88,0,0,1 +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,5,51,83300,24,629,319,6,61,4,0,0,0,0,210,3.6,4,1,96,77777,9,999999999,15,0.104,0,88,0,0,1 +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,12836,3512,4365,1422,200,3.6,5,0,96,77777,9,999999999,15,0.104,0,88,0,0,1 +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,35,83200,463,1324,340,299,673,64,35438,30800,7604,2775,220,3.6,5,0,96,77777,9,999999999,15,0.104,0,88,0,0,1 +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,51980,39214,16692,6331,190,7.2,5,3,112,77777,9,999999999,14,0.104,0,88,0,0,1 +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,3.3,18,83200,907,1324,394,646,751,132,78779,49716,16160,6631,210,4.6,6,2,112,77777,9,999999999,14,0.104,0,88,0,0,1 +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,90270,49044,22120,9120,210,2.1,9,3,112,77777,9,999999999,14,0.104,0,88,0,0,1 +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,113294,55717,19449,8067,90,1.5,7,2,112,77777,9,999999999,14,0.104,0,88,0,0,1 +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,108461,50611,31655,12644,180,2.1,9,3,112,77777,9,999999999,14,0.104,0,88,0,0,1 +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,11,83000,1258,1324,426,1002,780,260,122129,59482,31870,12720,360,3.1,10,4,112,77777,9,999999999,14,0.104,0,88,0,0,1 +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,84845,37258,35079,13758,270,2.6,10,5,112,77777,9,999999999,14,0.104,0,88,0,0,1 +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,11,82800,1071,1324,430,649,524,226,77912,39905,27273,11002,280,2.1,10,5,112,77777,9,999999999,14,0.104,0,88,0,0,1 +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,36576,17296,14782,6072,300,4.6,8,8,104,4877,9,999999999,14,0.104,0,88,0,0,1 +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,25421,1149,24757,8565,310,3.6,9,9,96,6096,9,999999999,14,0.104,0,88,0,0,1 +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,12,82800,452,1324,439,175,57,155,19284,3956,17160,5270,320,2.6,9,9,96,6096,9,999999999,14,0.104,0,88,0,0,1 +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,14,82800,210,1324,435,43,0,43,4213,0,4243,1532,50,2.1,10,10,96,6096,9,999999999,14,0.104,0,88,0,0,1 +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,6096,9,999999999,14,0.104,0,88,0,0,1 +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,1.1,21,82800,0,0,366,0,0,0,0,0,0,0,170,3.6,7,2,40,77777,9,999999999,14,0.104,0,88,0,0,1 +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.6,20,82800,0,0,372,0,0,0,0,0,0,0,190,4.6,8,4,40,6096,9,999999999,14,0.104,0,88,0,0,1 +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,6096,9,999999999,13,0.104,0,88,0,0,1 +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,77777,9,999999999,13,0.104,0,88,0,0,1 +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,77777,9,999999999,13,0.104,0,88,0,0,1 +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,77777,9,999999999,13,0.104,0,88,0,0,1 +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,7620,9,999999999,13,0.104,0,88,0,0,1 +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,7620,9,999999999,13,0.104,0,88,0,0,1 +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,7925,9,999999999,13,0.104,0,88,0,0,1 +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,9993,3521,7162,2089,170,4.1,10,6,96,7925,9,999999999,13,0.104,0,88,0,0,1 +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,27530,19854,15672,5060,170,3.6,10,6,96,7925,9,999999999,13,0.104,0,88,0,0,1 +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,43327,24634,25748,8898,180,3.6,9,6,96,7925,9,999999999,13,0.104,0,88,0,0,1 +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,59626,27663,36082,12989,220,3.6,8,8,112,6401,9,999999999,13,0.104,0,88,0,0,1 +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,51284,18688,27889,11221,240,2.1,7,6,112,6401,9,999999999,13,0.104,0,88,0,0,1 +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,62313,19247,37471,14524,350,2.1,8,8,112,6401,9,999999999,13,0.104,0,88,0,0,1 +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,110084,52061,35534,13962,210,6.2,5,5,112,77777,9,999999999,13,0.104,0,88,0,0,1 +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,102313,46470,37663,14658,300,3.1,6,5,128,8230,9,999999999,13,0.104,0,88,0,0,1 +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,115999,60205,26746,10855,180,5.7,5,5,128,77777,9,999999999,13,0.104,0,88,0,0,1 +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,89562,49519,25056,10201,200,2.6,3,3,128,77777,9,999999999,13,0.104,0,88,0,0,1 +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,77526,50539,15366,6297,300,2.1,2,2,128,77777,9,999999999,13,0.104,0,88,0,0,1 +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,41965,29251,16902,6351,310,4.6,8,4,112,8534,9,999999999,13,0.104,0,88,0,0,1 +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,28623,24756,9764,3445,330,5.2,7,4,112,8534,9,999999999,13,0.104,0,88,0,0,1 +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,12,82500,212,1324,411,89,162,63,9745,3236,6922,1990,360,3.6,6,4,96,7620,9,999999999,13,0.104,0,88,0,0,1 +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,7620,9,999999999,13,0.104,0,88,0,0,1 +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,8.3,35,82900,0,0,379,0,0,0,0,0,0,0,60,7.2,3,3,48,77777,9,999999999,13,0.104,0,88,0,0,1 +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,77777,9,999999999,13,0.104,0,88,0,0,1 +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,77777,9,999999999,13,0.104,0,88,0,0,1 +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,77777,9,999999999,13,0.104,0,88,0,0,1 +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,77777,9,999999999,13,0.103,0,88,0,0,1 +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,77777,9,999999999,13,0.103,0,88,0,0,1 +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,77777,9,999999999,13,0.103,0,88,0,0,1 +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,77777,9,999999999,13,0.103,0,88,0,0,1 +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,96,77777,9,999999999,13,0.103,0,88,0,0,1 +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,13187,1578,3507,1169,230,2.1,1,1,96,77777,9,999999999,13,0.103,0,88,0,0,1 +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,41,83300,462,1324,338,270,596,61,32117,26829,7273,2662,90,1,2,2,96,77777,9,999999999,13,0.103,0,88,0,0,1 +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,9.4,50,83300,696,1324,355,419,479,167,48297,33219,19337,7179,50,3.1,3,3,88,77777,9,999999999,13,0.103,0,88,0,0,1 +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,49,83300,906,1324,367,520,582,121,63654,35879,14867,6142,150,2.6,5,5,80,77777,9,999999999,13,0.103,0,88,0,0,1 +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,47,83300,1077,1324,370,614,577,144,76065,36422,17915,7508,50,5.2,5,5,72,77777,9,999999999,14,0.103,0,88,0,0,1 +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,44,83200,1197,1324,366,916,861,137,97116,88791,17732,5804,20,2.1,2,2,72,77777,9,999999999,14,0.103,0,88,0,0,1 +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,10,39,83200,1259,1324,365,1021,985,84,109770,102001,11056,5512,190,2.1,0,0,64,77777,9,999999999,14,0.103,0,88,0,0,1 +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,109816,102021,11062,5467,70,2.1,0,0,64,77777,9,999999999,14,0.103,0,88,0,0,1 +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,103218,100599,10825,3970,140,6.2,0,0,64,77777,9,999999999,14,0.103,0,88,0,0,1 +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,91450,98454,10448,2717,140,5.7,0,0,64,77777,9,999999999,14,0.103,0,88,0,0,1 +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,74894,94556,9310,1895,180,6.2,1,1,64,77777,9,999999999,14,0.103,0,88,0,0,1 +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,10.6,30,82800,689,1324,398,476,789,65,51646,79589,9653,1547,350,7.2,1,1,64,77777,9,999999999,14,0.103,0,88,0,0,1 +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,33512,73735,6285,1024,310,5.2,0,0,56,77777,9,999999999,14,0.103,0,88,0,0,1 +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,12574,43911,4237,587,330,3.1,0,0,48,77777,9,999999999,14,0.103,0,88,0,0,1 +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,77777,9,999999999,14,0.103,0,88,0,0,1 +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,40,77777,9,999999999,14,0.103,0,88,0,0,1 +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,77777,9,999999999,14,0.103,0,88,0,0,1 +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,11.7,59,83100,0,0,343,0,0,0,0,0,0,0,230,2.6,0,0,40,77777,9,999999999,14,0.103,0,88,0,0,1 +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,77777,9,999999999,14,0.103,0,88,0,0,1 +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,77777,9,999999999,14,0.103,0,88,0,0,1 +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,396,9,999999999,14,0.103,0,88,0,0,1 +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,427,9,999999999,14,0.103,0,88,0,0,1 +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,640,9,999999999,15,0.103,0,88,0,0,1 +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,853,9,999999999,15,0.103,0,88,0,0,1 +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,2631,0,2651,1068,360,4.1,10,10,19.2,366,9,999999999,15,0.103,0,88,0,0,1 +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,7167,0,7225,3066,360,3.6,10,10,19.2,305,9,999999999,15,0.103,0,88,0,0,1 +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,12301,0,12410,5553,40,4.6,10,10,16,305,9,999999999,15,0.103,0,88,0,0,1 +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,20388,0,20580,9269,30,5.2,10,10,19.2,427,9,999999999,15,0.103,0,88,0,0,1 +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,70645,22145,48305,17169,30,2.6,7,7,24,914,9,999999999,15,0.103,0,88,0,0,1 +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,73764,26599,36271,14206,340,3.6,8,8,24,914,9,999999999,15,0.103,0,88,0,0,1 +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,104100,93675,14736,7059,340,4.6,1,1,24,77777,9,999999999,15,0.103,0,88,0,0,1 +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,108112,97603,14982,7100,360,2.1,0,0,24,77777,9,999999999,15,0.103,0,88,0,0,1 +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,101911,96381,14693,5042,40,4.1,0,0,19.2,77777,9,999999999,15,0.103,0,88,0,0,1 +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,90410,94040,14183,3311,80,4.6,0,0,24,77777,9,999999999,15,0.103,0,88,0,0,1 +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,66984,38073,13815,5719,120,6.2,1,1,24,77777,9,999999999,15,0.103,0,88,0,0,1 +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,11.7,32,83400,690,1324,392,497,805,76,60703,42686,9308,3689,60,6.2,0,0,32,77777,9,999999999,15,0.103,0,88,0,0,1 +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,34895,27174,6684,2455,30,6.2,0,0,32,77777,9,999999999,15,0.103,0,88,0,0,1 +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,12.2,45,83500,214,1324,368,106,437,35,12131,46,4014,1314,340,7.2,0,0,32,77777,9,999999999,15,0.103,0,88,0,0,1 +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,77777,9,999999999,15,0.103,0,88,0,0,1 +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,77777,9,999999999,15,0.103,0,88,0,0,1 +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,77777,9,999999999,15,0.103,0,88,0,0,1 +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,77777,9,999999999,15,0.103,0,88,0,0,1 +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,77777,9,999999999,15,0.103,0,88,0,0,1 +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,77777,9,999999999,15,0.103,0,88,0,0,1 +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,77777,9,999999999,15,0.103,0,88,0,0,1 +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,77777,9,999999999,15,0.103,0,88,0,0,1 +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,77777,9,999999999,15,0.103,0,88,0,0,1 +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,15,0.103,0,88,0,0,1 +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,2139,0,2155,891,350,3.1,10,10,4,61,9,999999999,15,0.103,0,88,0,0,1 +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,8245,0,8313,3447,360,3.1,10,10,9.6,549,9,999999999,15,0.103,0,88,0,0,1 +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,78,84200,695,1323,383,275,73,237,30701,5606,26606,9132,60,2.6,10,9,12.8,762,9,999999999,16,0.103,0,88,0,0,1 +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,68,84100,905,1323,380,490,394,220,57112,27753,25778,10103,70,3.1,7,7,14.4,792,9,999999999,16,0.103,0,88,0,0,1 +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,73611,29793,38848,14781,20,2.6,8,6,14.4,792,9,999999999,16,0.103,0,88,0,0,1 +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,99653,44033,31761,12719,10,4.1,7,5,17.6,7010,9,999999999,17,0.103,0,88,0,0,1 +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,100279,37105,53078,19130,60,5.2,5,5,19.2,77777,9,999999999,17,0.103,0,88,0,0,1 +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,115717,48200,21243,8810,50,3.1,2,2,19.2,77777,9,999999999,17,0.103,0,88,0,0,1 +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,106925,47857,24746,10177,10,4.1,3,3,32,77777,9,999999999,18,0.103,0,88,0,0,1 +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,47,84000,1073,1323,402,736,607,244,87289,42581,29100,11708,70,5.7,4,4,40,77777,9,999999999,18,0.103,0,88,0,0,1 +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,85511,52999,21629,8671,80,3.1,4,4,48,77777,9,999999999,18,0.103,0,88,0,0,1 +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,52046,36297,17113,6472,50,2.1,5,5,48,77777,9,999999999,18,0.103,0,88,0,0,1 +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,20498,4267,18080,5499,120,3.1,5,5,32,77777,9,999999999,19,0.103,0,88,0,0,1 +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,8849,1132,5770,1776,110,6.2,5,5,32,77777,9,999999999,19,0.103,0,88,0,0,1 +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,60,84000,22,607,387,4,3,4,0,0,0,0,110,3.1,6,6,32,7620,9,999999999,19,0.103,0,88,0,0,1 +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,66,84100,0,0,409,0,0,0,0,0,0,0,130,2.1,10,10,24,7620,9,999999999,20,0.103,0,88,0,0,1 +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,7620,9,999999999,20,0.103,0,88,0,0,1 +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,7620,9,999999999,20,0.103,0,88,0,0,1 +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,7010,9,999999999,20,0.103,0,88,0,0,1 +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,7010,9,999999999,21,0.103,0,88,0,0,1 +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,81,84000,0,0,345,0,0,0,0,0,0,0,360,1.5,6,1,24,77777,9,999999999,21,0.103,0,88,0,0,1 +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,90,84000,0,0,338,0,0,0,0,0,0,0,0,0,3,1,24,77777,9,999999999,21,0.103,0,88,0,0,1 +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,77777,9,999999999,22,0.103,0,88,0,0,1 +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,4,3,12.8,77777,9,999999999,22,0.103,0,88,0,0,1 +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,2719,0,2740,1101,350,3.1,10,10,6.4,244,9,999999999,22,0.103,0,88,0,0,1 +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,5359,0,5403,2391,320,3.6,10,10,4.8,152,9,999999999,22,0.103,0,88,0,0,1 +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,16.7,81,84100,694,1323,402,114,0,114,11546,0,11648,5280,320,3.1,10,10,9.6,335,9,999999999,22,0.103,0,88,0,0,1 +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,61086,31866,19296,7855,260,2.6,5,5,11.2,77777,9,999999999,21,0.103,0,88,0,0,1 +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,98486,47611,18199,7646,320,1.5,1,0,11.2,77777,9,999999999,21,0.103,0,88,0,0,1 +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,91621,37969,24040,9919,350,2.6,1,1,12.8,77777,9,999999999,21,0.103,0,88,0,0,1 +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,84527,30221,36694,14446,330,3.6,5,5,16,77777,9,999999999,21,0.103,0,88,0,0,1 +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,81376,16436,62662,21199,300,6.2,9,9,16,1676,9,999999999,21,0.103,0,88,0,0,1 +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,28084,0,28375,12829,350,2.1,10,10,11.2,1676,9,999999999,21,0.103,0,88,0,0,1 +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,30821,0,31123,13471,360,3.1,10,10,32,3353,9,999999999,21,0.103,0,88,0,0,1 +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,24678,0,24908,10691,20,6.2,10,10,32,3353,9,999999999,21,0.103,0,88,0,0,1 +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,17227,0,17380,7241,230,4.6,10,10,32,10668,9,999999999,20,0.103,0,88,0,0,1 +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,9653,0,9731,3876,270,3.1,10,10,48,10668,9,999999999,20,0.103,0,88,0,0,1 +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,4086,0,4116,1523,160,2.1,10,10,48,10668,9,999999999,20,0.103,0,88,0,0,1 +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,3048,9,999999999,20,0.103,0,88,0,0,1 +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,7620,9,999999999,20,0.103,0,88,0,0,1 +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,7620,9,999999999,20,0.103,0,88,0,0,1 +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,7620,9,999999999,20,0.103,0,88,0,0,1 +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,7620,9,999999999,20,0.103,0,88,0,0,1 +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,7620,9,999999999,19,0.103,0,88,0,0,1 +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,7620,9,999999999,19,0.103,0,88,0,0,1 +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,77777,9,999999999,19,0.103,0,88,0,0,1 +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,77777,9,999999999,19,0.103,0,88,0,0,1 +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,63,83800,23,628,345,5,36,4,0,0,0,0,160,2.6,4,4,96,77777,9,999999999,19,0.103,0,88,0,0,1 +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,12659,2685,4872,1563,270,1.5,3,3,112,77777,9,999999999,19,0.103,0,88,0,0,1 +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,32390,24952,6588,2429,290,2.6,1,1,112,77777,9,999999999,20,0.103,0,88,0,0,1 +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,57087,40038,9663,3833,310,1.5,1,1,112,77777,9,999999999,20,0.103,0,88,0,0,1 +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,12.2,45,84000,903,1323,368,683,870,89,73810,89644,12530,2242,340,2.6,0,0,112,77777,9,999999999,20,0.103,0,88,0,0,1 +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,95388,47584,17892,7507,350,2.6,1,1,112,77777,9,999999999,20,0.103,0,88,0,0,1 +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,111609,52257,26393,10778,340,2.6,2,2,112,77777,9,999999999,21,0.103,0,88,0,0,1 +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,108770,46854,20718,8579,350,4.6,3,3,112,77777,9,999999999,21,0.103,0,88,0,0,1 +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,94353,39267,33828,13429,10,3.1,6,4,112,6096,9,999999999,21,0.103,0,88,0,0,1 +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,78489,29471,39970,15338,40,4.6,8,8,112,6096,9,999999999,22,0.103,0,88,0,0,1 +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,82826,40998,30309,12088,330,7.7,7,7,64,3962,9,999999999,22,0.103,0,88,0,0,1 +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,68133,38684,29195,11121,340,9.8,8,8,64,3962,9,999999999,22,0.103,0,88,0,0,1 +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,35640,19509,18247,6822,310,8.2,7,7,64,5486,9,999999999,22,0.103,0,88,0,0,1 +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,10854,0,10941,4234,140,5.2,10,10,64,5486,9,999999999,23,0.103,0,88,0,0,1 +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,4037,0,3698,1227,110,3.1,9,9,64,3658,9,999999999,23,0.103,0,88,0,0,1 +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,7620,9,999999999,23,0.103,0,88,0,0,1 +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,12.8,63,84200,0,0,365,0,0,0,0,0,0,0,200,2.6,7,5,40,7620,9,999999999,24,0.103,0,88,0,0,1 +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,7620,9,999999999,24,0.103,0,88,0,0,1 +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,3658,9,999999999,24,0.103,0,88,0,0,1 +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,3962,9,999999999,24,0.103,0,88,0,0,1 +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,7620,9,999999999,25,0.102,0,88,0,0,1 +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,77777,9,999999999,25,0.102,0,88,0,0,1 +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,77777,9,999999999,25,0.102,0,88,0,0,1 +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,12.8,87,84100,0,0,340,0,0,0,0,0,0,0,190,1.5,5,5,40,77777,9,999999999,25,0.102,0,88,0,0,1 +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,12.2,83,84100,23,628,337,4,2,4,0,0,0,0,190,2.1,5,4,96,77777,9,999999999,26,0.102,0,88,0,0,1 +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,8569,1607,6614,1978,190,1.5,5,5,104,77777,9,999999999,26,0.102,0,88,0,0,1 +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,17622,5818,13637,4578,220,1.5,8,8,96,4267,9,999999999,26,0.102,0,88,0,0,1 +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,46894,31514,18563,6938,340,2.1,7,6,96,7620,9,999999999,26,0.102,0,88,0,0,1 +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,62796,32666,29485,11234,320,3.1,6,5,96,7620,9,999999999,27,0.102,0,88,0,0,1 +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,71941,32268,27949,11295,40,3.1,5,4,96,77777,9,999999999,27,0.102,0,88,0,0,1 +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,107234,50620,35281,13880,340,2.6,4,4,96,77777,9,999999999,27,0.102,0,88,0,0,1 +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,112107,49769,33784,13431,60,4.1,4,4,80,77777,9,999999999,27,0.102,0,88,0,0,1 +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,72106,18346,48169,17849,60,3.1,6,6,64,7620,9,999999999,28,0.102,0,88,0,0,1 +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,87124,33256,46032,17085,60,6.2,7,7,56,3048,9,999999999,28,0.102,0,88,0,0,1 +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,76260,29520,45421,16486,80,5.2,10,8,56,3048,9,999999999,28,0.102,0,88,0,0,1 +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,19522,0,19706,8952,340,10.3,10,10,24,1829,9,999999999,28,0.102,0,88,0,0,1 +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,13676,0,13798,6060,360,5.2,10,10,24,1829,9,999999999,29,0.102,0,88,0,0,1 +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,7544,0,7606,3196,340,5.2,10,10,24,1829,9,999999999,29,0.102,0,88,0,0,1 +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,81,84300,219,1323,391,35,0,35,3404,0,3429,1322,300,2.1,10,10,24,1219,9,999999999,29,0.102,0,88,0,0,1 +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,29,0.102,0,88,0,0,1 +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,30,0.102,0,88,0,0,1 +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,3048,9,999999999,30,0.102,0,88,0,0,1 +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,4572,9,999999999,30,0.102,0,88,0,0,1 +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,4572,9,999999999,30,0.102,0,88,0,0,1 +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,87,84200,0,0,353,0,0,0,0,0,0,0,350,3.1,10,5,19.2,77777,9,999999999,31,0.102,0,88,0,0,1 +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,31,0.102,0,88,0,0,1 +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,90,84200,0,0,382,0,0,0,0,0,0,0,350,1.5,10,10,9.6,244,9,999999999,31,0.102,0,88,0,0,1 +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,96,84100,0,0,340,0,0,0,0,0,0,0,170,1.5,6,3,12.8,77777,9,999999999,31,0.102,0,88,0,0,1 +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,77777,9,999999999,32,0.102,0,88,0,0,1 +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,87,84200,217,1322,357,76,76,64,8285,1064,7002,2055,190,2.1,6,6,12.8,3353,9,999999999,32,0.102,0,88,0,0,1 +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,14025,3696,10986,3859,190,3.1,9,9,9.6,732,9,999999999,31,0.102,0,88,0,0,1 +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,44606,28750,15946,6101,150,2.1,3,3,11.2,77777,9,999999999,31,0.102,0,88,0,0,1 +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,77473,44048,14596,6046,70,2.6,4,2,16,77777,9,999999999,31,0.102,0,88,0,0,1 +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,86084,41245,19586,8190,210,2.1,6,3,19.2,77777,9,999999999,31,0.102,0,88,0,0,1 +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,106353,47608,25437,10437,130,3.6,7,2,24,77777,9,999999999,31,0.102,0,88,0,0,1 +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,117934,50641,22550,9315,320,2.1,8,3,24,77777,9,999999999,31,0.102,0,88,0,0,1 +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,83919,24303,53783,19286,0,0,7,6,24,9144,9,999999999,31,0.102,0,88,0,0,1 +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,67656,21919,35651,14024,110,5.2,9,8,24,6706,9,999999999,31,0.102,0,88,0,0,1 +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,49893,10723,37098,14270,100,2.6,9,9,32,3658,9,999999999,31,0.102,0,88,0,0,1 +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,46225,15782,29373,11228,230,1.5,10,8,32,3658,9,999999999,31,0.102,0,88,0,0,1 +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,39122,22457,16789,6385,130,2.6,10,7,32,3658,9,999999999,31,0.102,0,88,0,0,1 +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,11602,0,11697,4465,200,3.1,10,10,32,3658,9,999999999,31,0.102,0,88,0,0,1 +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,3692,0,3719,1415,170,6.7,10,10,24,1676,9,999999999,31,0.102,0,88,0,0,1 +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,81,83900,23,628,391,3,0,3,0,0,0,0,200,3.6,10,10,32,3658,9,999999999,31,0.102,0,88,0,0,1 +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,3658,9,999999999,31,0.102,0,88,0,0,1 +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,7620,9,999999999,31,0.102,0,88,0,0,1 +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,7620,9,999999999,30,0.102,0,88,0,0,1 +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,87,83700,0,0,366,0,0,0,0,0,0,0,170,2.1,8,8,40,3353,9,999999999,30,0.102,0,88,0,0,1 +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,3353,9,999999999,30,0.102,0,88,0,0,1 +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,3658,9,999999999,30,0.102,0,88,0,0,1 +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,3658,9,999999999,30,0.102,0,88,0,0,1 +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,3658,9,999999999,30,0.102,0,88,0,0,1 +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,7315,9,999999999,30,0.102,0,88,0,0,1 +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,9055,1500,5381,1691,200,3.6,7,5,112,7315,9,999999999,30,0.102,0,88,0,0,1 +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,22408,14824,9733,3470,190,3.6,6,4,104,9754,9,999999999,30,0.102,0,88,0,0,1 +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,12.2,45,83700,691,1322,386,343,445,110,40757,25950,13118,5115,140,1.5,7,4,96,9754,9,999999999,29,0.102,0,88,0,0,1 +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,46276,15984,30100,11415,30,7.7,8,8,80,2896,9,999999999,29,0.102,0,88,0,0,1 +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,25514,0,25766,11677,40,5.2,10,10,80,2286,9,999999999,29,0.102,0,88,0,0,1 +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,28791,0,29087,13061,320,5.7,10,10,16,1829,9,999999999,29,0.102,0,88,0,0,1 +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,30679,0,30999,13812,330,4.1,10,10,80,2743,9,999999999,29,0.102,0,88,0,0,1 +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,39551,7049,27169,11076,210,3.1,8,8,80,3658,9,999999999,29,0.102,0,88,0,0,1 +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,64438,22275,28500,11566,130,2.1,6,6,40,9144,9,999999999,28,0.102,0,88,0,0,1 +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,97324,49319,20071,8370,0,0,6,5,40,6706,9,999999999,28,0.102,0,88,0,0,1 +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,56543,27009,28077,10811,50,3.1,9,7,40,3658,9,999999999,28,0.102,0,88,0,0,1 +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,50529,35110,18657,6969,40,4.1,8,6,40,3962,9,999999999,28,0.102,0,88,0,0,1 +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,12.2,61,83800,462,1322,371,144,135,97,16448,6712,11119,3891,30,4.1,7,7,40,3658,9,999999999,28,0.102,0,88,0,0,1 +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,13.9,68,83900,220,1322,366,64,75,52,7106,666,5791,1795,10,4.1,5,5,64,77777,9,999999999,27,0.102,0,88,0,0,1 +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,77777,9,999999999,27,0.102,0,88,0,0,1 +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,77777,9,999999999,27,0.102,0,88,0,0,1 +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,40,77777,9,999999999,27,0.102,0,88,0,0,1 +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,1341,9,999999999,27,0.102,0,88,0,0,1 +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,1280,9,999999999,26,0.102,0,88,0,0,1 +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,1463,9,999999999,26,0.101,0,88,0,0,1 +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,3,3,32,77777,9,999999999,26,0.101,0,88,0,0,1 +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,77777,9,999999999,26,0.101,0,88,0,0,1 +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,77777,9,999999999,26,0.101,0,88,0,0,1 +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,77777,9,999999999,25,0.101,0,88,0,0,1 +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,11755,681,4232,1383,110,1.5,0,0,64,77777,9,999999999,25,0.101,0,88,0,0,1 +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,33952,26378,7021,2577,130,1.5,0,0,64,77777,9,999999999,25,0.101,0,88,0,0,1 +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,59120,41838,9881,3914,0,0,0,0,64,77777,9,999999999,24,0.101,0,88,0,0,1 +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,72323,86786,13725,2305,100,3.1,0,0,64,77777,9,999999999,24,0.101,0,88,0,0,1 +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,88544,91307,14805,3412,130,3.6,0,0,64,77777,9,999999999,24,0.101,0,88,0,0,1 +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,9.4,37,84000,1194,1322,364,937,907,118,99650,93538,15415,5262,120,1.5,0,0,64,77777,9,999999999,23,0.101,0,88,0,0,1 +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,105092,94180,15677,7430,360,2.6,0,0,80,77777,9,999999999,23,0.101,0,88,0,0,1 +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,100808,89999,15432,7357,320,1.5,1,1,80,77777,9,999999999,22,0.101,0,88,0,0,1 +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,82844,30102,47814,17519,320,5.2,6,6,80,4877,9,999999999,22,0.101,0,88,0,0,1 +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,66893,30200,27718,11179,70,2.6,5,5,80,77777,9,999999999,22,0.101,0,88,0,0,1 +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,69699,42702,20089,8097,40,4.1,4,4,80,77777,9,999999999,21,0.101,0,88,0,0,1 +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,46023,17403,35972,10717,20,7.2,7,7,80,3658,9,999999999,21,0.101,0,88,0,0,1 +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,23219,7126,19612,5786,60,4.1,6,6,80,6401,9,999999999,21,0.101,0,88,0,0,1 +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,12234,4069,5402,1697,170,3.1,2,2,80,77777,9,999999999,20,0.101,0,88,0,0,1 +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,4572,9,999999999,20,0.101,0,88,0,0,1 +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,77777,9,999999999,19,0.101,0,88,0,0,1 +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,7.2,43,84000,0,0,344,0,0,0,0,0,0,0,170,1.5,1,1,48,77777,9,999999999,19,0.101,0,88,0,0,1 +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,77777,9,999999999,19,0.101,0,88,0,0,1 +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,77777,9,999999999,18,0.101,0,88,0,0,1 +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,65,84000,0,0,340,0,0,0,0,0,0,0,90,2.1,3,3,40,77777,9,999999999,18,0.101,0,88,0,0,1 +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,69,83900,0,0,327,0,0,0,0,0,0,0,150,2.1,1,1,48,77777,9,999999999,18,0.101,0,88,0,0,1 +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,77,83900,0,0,314,0,0,0,0,0,0,0,110,2.6,0,0,48,77777,9,999999999,17,0.101,0,88,0,0,1 +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,77,83900,0,0,314,0,0,0,0,0,0,0,200,3.6,1,0,64,77777,9,999999999,17,0.101,0,88,0,0,1 +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,75,84000,21,606,316,6,74,3,0,0,0,0,190,3.1,0,0,96,77777,9,999999999,17,0.101,0,88,0,0,1 +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,12901,35,3493,1162,220,3.6,0,0,112,77777,9,999999999,16,0.101,0,88,0,0,1 +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,32477,69813,7317,1095,200,3.6,0,0,112,77777,9,999999999,16,0.101,0,88,0,0,1 +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,54140,84523,9359,1534,200,2.6,0,0,112,77777,9,999999999,16,0.101,0,88,0,0,1 +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,74105,91972,10922,2093,210,4.6,0,0,112,77777,9,999999999,16,0.101,0,88,0,0,1 +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,21,83900,1071,1322,380,844,934,87,89887,95595,11853,2989,360,2.1,0,0,112,77777,9,999999999,16,0.101,0,88,0,0,1 +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,100302,96852,12292,4448,350,3.1,0,0,112,77777,9,999999999,16,0.101,0,88,0,0,1 +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,106410,97958,12498,6154,360,3.1,0,0,112,77777,9,999999999,16,0.101,0,88,0,0,1 +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,97891,89171,12738,6281,360,3.1,1,1,112,77777,9,999999999,16,0.101,0,88,0,0,1 +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,95942,92175,12041,4407,10,3.1,1,1,112,77777,9,999999999,16,0.101,0,88,0,0,1 +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,98104,54625,21435,8858,340,2.1,3,3,112,77777,9,999999999,16,0.101,0,88,0,0,1 +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,69635,85614,10626,2074,40,3.1,1,1,112,77777,9,999999999,16,0.101,0,88,0,0,1 +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,13,83600,696,1322,395,476,785,62,50818,78046,9196,1530,40,2.6,1,1,112,77777,9,999999999,16,0.101,0,88,0,0,1 +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,22174,14197,12441,4254,130,2.6,5,5,112,77777,9,999999999,16,0.101,0,88,0,0,1 +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,3.3,18,83600,222,1322,398,105,362,45,11869,4149,5100,1620,130,2.1,3,3,112,77777,9,999999999,16,0.101,0,88,0,0,1 +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,77777,9,999999999,16,0.101,0,88,0,0,1 +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,4.4,26,83700,0,0,374,0,0,0,0,0,0,0,190,4.1,3,3,48,77777,9,999999999,16,0.101,0,88,0,0,1 +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,77777,9,999999999,16,0.101,0,88,0,0,1 +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,77777,9,999999999,16,0.101,0,88,0,0,1 +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,7.8,45,83600,0,0,350,0,0,0,0,0,0,0,190,3.1,2,2,48,77777,9,999999999,16,0.101,0,88,0,0,1 +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,7.8,45,83600,0,0,350,0,0,0,0,0,0,0,180,2.6,5,2,48,77777,9,999999999,15,0.1,0,88,0,0,1 +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,6.1,40,83500,0,0,351,0,0,0,0,0,0,0,180,3.1,3,3,48,77777,9,999999999,15,0.1,0,88,0,0,1 +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,77777,9,999999999,15,0.1,0,88,0,0,1 +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,5,4,48,77777,9,999999999,15,0.1,0,88,0,0,1 +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,77777,9,999999999,15,0.1,0,88,0,0,1 +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,10568,2948,5186,1631,150,2.1,4,4,96,77777,9,999999999,15,0.1,0,88,0,0,1 +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,6.1,30,83600,454,1322,379,209,359,85,24174,17948,9863,3494,220,2.6,4,4,96,77777,9,999999999,15,0.1,0,88,0,0,1 +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,50129,37419,14918,5720,20,2.6,4,4,96,77777,9,999999999,15,0.1,0,88,0,0,1 +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,70172,44193,22867,9057,30,3.1,4,4,96,77777,9,999999999,15,0.1,0,88,0,0,1 +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,9,83800,1070,1322,398,592,545,150,73412,37779,18679,7779,10,6.2,4,4,96,77777,9,999999999,15,0.1,0,88,0,0,1 +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,93370,87644,14883,5126,40,3.6,2,1,96,77777,9,999999999,15,0.1,0,88,0,0,1 +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,96532,84272,17802,8186,20,3.1,3,1,96,77777,9,999999999,15,0.1,0,88,0,0,1 +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,96408,85974,15168,7266,130,4.1,2,1,96,77777,9,999999999,14,0.1,0,88,0,0,1 +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,93694,86731,15986,5441,70,6.7,3,1,96,77777,9,999999999,14,0.1,0,88,0,0,1 +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,100540,54751,17742,7415,70,4.1,2,1,96,77777,9,999999999,14,0.1,0,88,0,0,1 +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.6,11,83600,906,1322,403,692,874,93,73127,88357,13019,2281,110,5.2,0,0,96,77777,9,999999999,14,0.1,0,88,0,0,1 +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,61830,46966,9471,3748,90,5.2,0,0,96,77777,9,999999999,14,0.1,0,88,0,0,1 +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,35888,31007,6834,2508,70,6.7,0,0,96,77777,9,999999999,14,0.1,0,88,0,0,1 +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,2.8,18,83600,222,1322,381,112,452,36,12894,3273,4153,1360,50,5.2,0,0,96,77777,9,999999999,14,0.1,0,88,0,0,1 +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,77777,9,999999999,14,0.1,0,88,0,0,1 +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,77777,9,999999999,14,0.1,0,88,0,0,1 +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,33,83800,0,0,346,0,0,0,0,0,0,0,120,2.1,0,0,48,77777,9,999999999,13,0.1,0,88,0,0,1 +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,77777,9,999999999,13,0.1,0,88,0,0,1 +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,77777,9,999999999,13,0.1,0,88,0,0,1 +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,77777,9,999999999,13,0.1,0,88,0,0,1 +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,77777,9,999999999,13,0.1,0,88,0,0,1 +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,77777,9,999999999,13,0.1,0,88,0,0,1 +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,8.3,64,83600,0,0,317,0,0,0,0,0,0,0,170,1.5,0,0,64,77777,9,999999999,13,0.1,0,88,0,0,1 +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,77777,9,999999999,13,0.1,0,88,0,0,1 +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,11190,2066,4759,1520,210,2.1,2,0,96,77777,9,999999999,13,0.1,0,88,0,0,1 +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,26813,21222,10391,3652,240,2.1,3,3,96,77777,9,999999999,13,0.1,0,88,0,0,1 +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,59197,44178,10685,4206,0,0,0,0,96,77777,9,999999999,13,0.1,0,88,0,0,1 +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,83903,51783,13267,5492,0,0,0,0,96,77777,9,999999999,13,0.1,0,88,0,0,1 +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,88915,90930,16188,3537,140,3.1,0,0,96,77777,9,999999999,13,0.1,0,88,0,0,1 +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,100222,93232,16751,5531,130,3.1,0,0,96,77777,9,999999999,13,0.1,0,88,0,0,1 +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,105370,93718,17099,7922,110,3.1,0,0,96,77777,9,999999999,13,0.1,0,88,0,0,1 +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,105205,93511,17088,7979,180,2.6,0,0,96,77777,9,999999999,13,0.1,0,88,0,0,1 +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,99765,92642,16840,5634,180,3.1,0,0,96,77777,9,999999999,13,0.1,0,88,0,0,1 +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,88186,89826,16135,3586,180,2.1,0,0,96,77777,9,999999999,13,0.1,0,88,0,0,1 +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,-2.2,7,83200,906,1322,426,687,845,108,85157,54847,13433,5550,80,2.1,0,0,96,77777,9,999999999,13,0.1,0,88,0,0,1 +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,60527,47777,10849,4265,310,4.1,0,0,96,77777,9,999999999,13,0.1,0,88,0,0,1 +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,34737,32042,7844,2849,260,5.2,0,0,96,77777,9,999999999,13,0.1,0,88,0,0,1 +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,12215,4624,4691,1510,260,4.1,0,0,96,77777,9,999999999,14,0.1,0,88,0,0,1 +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,77777,9,999999999,14,0.1,0,88,0,0,1 +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,77777,9,999999999,14,0.1,0,88,0,0,1 +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,77777,9,999999999,14,0.1,0,88,0,0,1 +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,77777,9,999999999,14,0.1,0,88,0,0,1 +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,19,83500,0,0,353,0,0,0,0,0,0,0,300,2.6,0,0,48,77777,9,999999999,14,0.1,0,88,0,0,1 +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,77777,9,999999999,14,0.099,0,88,0,0,1 +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,1.7,30,83600,0,0,332,0,0,0,0,0,0,0,140,3.6,0,0,32,77777,9,999999999,14,0.099,0,88,0,0,1 +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,77777,9,999999999,14,0.099,0,88,0,0,1 +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,77777,9,999999999,14,0.099,0,88,0,0,1 +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,77777,9,999999999,14,0.099,0,88,0,0,1 +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,3.9,35,84000,210,1322,349,86,179,57,9497,2858,6315,1884,170,3.6,6,3,88,77777,9,999999999,14,0.099,0,88,0,0,1 +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,27334,22708,10832,3774,140,3.6,2,1,88,77777,9,999999999,14,0.099,0,88,0,0,1 +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,-1.7,17,84000,685,1322,350,469,678,117,55711,44465,13948,5372,60,3.6,1,0,96,77777,9,999999999,14,0.099,0,88,0,0,1 +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,79748,52291,17401,7084,130,5.2,1,0,96,77777,9,999999999,14,0.099,0,88,0,0,1 +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,98583,54234,20026,8319,130,7.2,1,0,96,77777,9,999999999,14,0.099,0,88,0,0,1 +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,115315,57252,22800,9387,130,4.6,2,0,96,77777,9,999999999,14,0.099,0,88,0,0,1 +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,119129,55794,23466,9630,160,4.6,3,1,96,77777,9,999999999,14,0.099,0,88,0,0,1 +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,116069,53709,23000,9451,70,2.1,2,2,96,77777,9,999999999,14,0.099,0,88,0,0,1 +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,106649,52495,26276,10694,50,4.6,3,3,96,77777,9,999999999,14,0.099,0,88,0,0,1 +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,95453,52621,24041,9844,110,3.1,2,2,96,77777,9,999999999,14,0.099,0,88,0,0,1 +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,70053,43330,22106,8815,80,3.6,3,3,96,77777,9,999999999,14,0.099,0,88,0,0,1 +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,53807,40979,20256,7437,50,4.1,2,2,96,77777,9,999999999,14,0.099,0,88,0,0,1 +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,12,83800,464,1322,417,243,346,121,27428,21244,13712,4593,360,5.2,4,4,96,77777,9,999999999,14,0.099,0,88,0,0,1 +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,8772,2368,6349,1923,30,5.2,4,4,96,77777,9,999999999,14,0.099,0,88,0,0,1 +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,77777,9,999999999,14,0.099,0,88,0,0,1 +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,77777,9,999999999,14,0.099,0,88,0,0,1 +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,77777,9,999999999,14,0.099,0,88,0,0,1 +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,3962,9,999999999,14,0.099,0,88,0,0,1 +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,77777,9,999999999,14,0.099,0,88,0,0,1 +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.6,27,84000,0,0,345,0,0,0,0,0,0,0,350,4.1,3,3,48,77777,9,999999999,14,0.098,0,88,0,0,1 +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,27,84100,0,0,333,0,0,0,0,0,0,0,330,5.2,1,1,48,77777,9,999999999,14,0.098,0,88,0,0,1 +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,77777,9,999999999,14,0.098,0,88,0,0,1 +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,77777,9,999999999,14,0.098,0,88,0,0,1 +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,38,84300,19,562,303,5,49,3,0,0,0,0,320,1.5,0,0,96,77777,9,999999999,14,0.098,0,88,0,0,1 +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,12009,1870,3818,1250,340,2.1,0,0,96,77777,9,999999999,14,0.098,0,88,0,0,1 +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,1.1,28,84400,450,1322,331,291,701,53,34943,30654,6377,2336,360,3.1,0,0,96,77777,9,999999999,14,0.098,0,88,0,0,1 +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,24,84400,684,1322,344,468,748,81,57134,44266,9916,3904,10,3.1,1,1,96,77777,9,999999999,14,0.098,0,88,0,0,1 +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,68659,83327,12777,2236,20,3.1,1,1,96,77777,9,999999999,14,0.098,0,88,0,0,1 +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,1.7,22,84300,1068,1322,366,800,801,153,98881,54371,18992,7913,0,0,2,2,96,77777,9,999999999,14,0.098,0,88,0,0,1 +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,94427,44606,29900,12004,0,0,3,3,96,77777,9,999999999,14,0.098,0,88,0,0,1 +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,1.7,16,84200,1255,1322,392,946,834,154,98453,84907,19486,8676,40,4.1,2,2,96,77777,9,999999999,14,0.098,0,88,0,0,1 +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,125127,58665,22298,9178,300,2.1,3,3,96,77777,9,999999999,14,0.098,0,88,0,0,1 +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,95070,88489,15500,5334,360,7.2,2,2,96,77777,9,999999999,15,0.098,0,88,0,0,1 +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,99177,55416,27069,10946,320,6.7,4,4,96,77777,9,999999999,15,0.098,0,88,0,0,1 +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,56326,31927,16733,6849,350,5.7,6,6,96,4267,9,999999999,15,0.098,0,88,0,0,1 +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,45940,31935,18643,6953,30,4.1,6,6,96,4877,9,999999999,15,0.098,0,88,0,0,1 +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,18593,8344,12974,4405,40,4.1,7,7,96,4572,9,999999999,15,0.098,0,88,0,0,1 +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,1.1,16,84000,223,1322,404,89,112,70,9714,2802,7669,2186,80,4.1,6,6,96,4572,9,999999999,15,0.098,0,88,0,0,1 +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,77777,9,999999999,15,0.098,0,88,0,0,1 +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,3.3,24,84100,0,0,375,0,0,0,0,0,0,0,140,3.6,4,4,40,77777,9,999999999,15,0.098,0,88,0,0,1 +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,77777,9,999999999,15,0.098,0,88,0,0,1 +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,36,84100,0,0,345,0,0,0,0,0,0,0,160,1,1,1,40,77777,9,999999999,15,0.098,0,88,0,0,1 +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,77777,9,999999999,16,0.098,0,88,0,0,1 +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,77777,9,999999999,16,0.098,0,88,0,0,1 +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,77777,9,999999999,16,0.098,0,88,0,0,1 +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,77777,9,999999999,16,0.098,0,88,0,0,1 +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,77777,9,999999999,16,0.098,0,88,0,0,1 +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,77777,9,999999999,16,0.098,0,88,0,0,1 +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,10395,3637,6808,1972,210,3.1,3,3,112,77777,9,999999999,16,0.098,0,88,0,0,1 +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,28650,23935,11340,3916,220,3.6,2,2,112,77777,9,999999999,16,0.098,0,88,0,0,1 +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,43380,29735,16745,6317,190,3.6,3,3,112,77777,9,999999999,16,0.098,0,88,0,0,1 +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,70701,86577,12258,2196,190,2.1,2,2,112,77777,9,999999999,16,0.098,0,88,0,0,1 +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,21494,3976,15266,6417,10,2.6,8,8,96,3962,9,999999999,16,0.098,0,88,0,0,1 +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,83141,33993,41180,15656,360,3.6,7,7,96,4267,9,999999999,16,0.098,0,88,0,0,1 +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,111793,52970,34149,13503,160,1,4,4,96,77777,9,999999999,16,0.098,0,88,0,0,1 +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,116816,55338,27530,11161,350,5.2,4,4,80,77777,9,999999999,15,0.098,0,88,0,0,1 +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,90583,82773,16718,5611,350,3.6,3,3,96,77777,9,999999999,15,0.098,0,88,0,0,1 +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,85535,40942,43279,15923,180,3.6,4,4,96,77777,9,999999999,15,0.098,0,88,0,0,1 +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,39371,10669,28959,11060,180,6.2,8,8,96,3658,9,999999999,15,0.098,0,88,0,0,1 +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,20451,4102,16663,6334,10,8.2,9,9,80,3658,9,999999999,15,0.098,0,88,0,0,1 +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,25844,5359,23509,6276,70,4.6,8,8,96,4877,9,999999999,15,0.098,0,88,0,0,1 +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,7.8,33,83800,223,1322,392,42,31,37,4818,182,4254,1393,120,4.1,7,7,96,4877,9,999999999,15,0.098,0,88,0,0,1 +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,77777,9,999999999,15,0.098,0,88,0,0,1 +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,77777,9,999999999,15,0.098,0,88,0,0,1 +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,77777,9,999999999,15,0.098,0,88,0,0,1 +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,77777,9,999999999,15,0.098,0,88,0,0,1 +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,77777,9,999999999,15,0.098,0,88,0,0,1 +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,77777,9,999999999,15,0.097,0,88,0,0,1 +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,77777,9,999999999,15,0.097,0,88,0,0,1 +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,77777,9,999999999,15,0.097,0,88,0,0,1 +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,77777,9,999999999,14,0.097,0,88,0,0,1 +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,77777,9,999999999,14,0.097,0,88,0,0,1 +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,11635,1003,3809,1245,170,3.6,0,0,112,77777,9,999999999,14,0.097,0,88,0,0,1 +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,34340,29033,6475,2371,180,2.1,0,0,112,77777,9,999999999,15,0.097,0,88,0,0,1 +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,23,83900,681,1321,372,490,809,73,52408,80694,10762,1598,210,3.6,0,0,112,77777,9,999999999,15,0.097,0,88,0,0,1 +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,71952,88336,12513,2211,210,1.5,0,0,112,77777,9,999999999,15,0.097,0,88,0,0,1 +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,83066,86305,14019,3274,80,2.1,1,1,112,77777,9,999999999,15,0.097,0,88,0,0,1 +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,78098,35234,15654,6532,280,3.1,3,3,112,77777,9,999999999,15,0.097,0,88,0,0,1 +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,-2.8,9,83700,1254,1321,411,991,913,124,103293,92716,15895,7413,340,8.2,2,2,112,77777,9,999999999,15,0.097,0,88,0,0,1 +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,111533,51248,19372,8015,310,2.6,4,3,112,77777,9,999999999,15,0.097,0,88,0,0,1 +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,109937,53464,19098,7927,10,5.2,4,2,112,77777,9,999999999,15,0.097,0,88,0,0,1 +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,78635,40496,23029,9465,310,5.2,6,3,112,77777,9,999999999,15,0.097,0,88,0,0,1 +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,75565,48585,20569,8268,310,4.1,5,4,112,77777,9,999999999,15,0.097,0,88,0,0,1 +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,-1.7,9,83600,698,1321,424,431,492,171,49794,36603,19845,7315,350,4.1,5,5,112,77777,9,999999999,15,0.097,0,88,0,0,1 +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,26674,21200,11718,4059,50,4.1,4,4,96,77777,9,999999999,15,0.097,0,88,0,0,1 +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,6645,1102,4478,1454,60,3.6,6,5,96,8534,9,999999999,15,0.097,0,88,0,0,1 +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,3658,9,999999999,15,0.097,0,88,0,0,1 +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,77777,9,999999999,15,0.097,0,88,0,0,1 +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,20,83700,0,0,374,0,0,0,0,0,0,0,150,5.3,2,2,40,77777,9,999999999,15,0.097,0,88,0,0,1 +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,77777,9,999999999,15,0.097,0,88,0,0,1 +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,77777,9,999999999,15,0.097,0,88,0,0,1 +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,4.6,56,83800,0,0,339,0,0,0,0,0,0,0,180,3.9,0,0,32,77777,9,999999999,16,0.089,0,88,0,0,1 +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,77777,9,999999999,15,0.089,0,88,0,0,1 +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,1,1,32,77777,9,999999999,15,0.089,0,88,0,0,1 +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,77777,9,999999999,15,0.089,0,88,0,0,1 +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,77777,9,999999999,15,0.089,0,88,0,0,1 +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,10419,1568,4541,1447,250,1.5,0,0,112,77777,9,999999999,15,0.089,0,88,0,0,1 +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,32070,27518,8009,2888,300,2.1,0,0,112,77777,9,999999999,15,0.089,0,88,0,0,1 +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,57401,44469,11250,4401,40,2.1,0,0,112,77777,9,999999999,15,0.089,0,88,0,0,1 +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,82064,52284,14076,5800,70,3.1,0,0,112,77777,9,999999999,15,0.089,0,88,0,0,1 +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,30,84000,1065,1321,351,825,864,128,86862,88152,17064,3564,50,2.1,0,0,112,77777,9,999999999,16,0.089,0,88,0,0,1 +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,98652,91037,17855,5670,80,3.1,0,0,112,77777,9,999999999,16,0.089,0,88,0,0,1 +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,104708,92256,18200,8179,100,3.6,0,0,112,77777,9,999999999,16,0.089,0,88,0,0,1 +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,104710,92102,18186,8298,120,4.1,0,0,112,77777,9,999999999,16,0.089,0,88,0,0,1 +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,98999,90925,17823,5834,100,5.7,0,0,112,77777,9,999999999,16,0.089,0,88,0,0,1 +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,87661,88172,17147,3680,70,3.1,0,0,112,77777,9,999999999,16,0.089,0,88,0,0,1 +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,76147,48187,20654,8308,50,3.1,3,3,96,77777,9,999999999,16,0.089,0,88,0,0,1 +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,3.9,19,83700,698,1321,395,455,608,134,53500,40501,15818,6046,60,4.1,5,2,96,77777,9,999999999,16,0.089,0,88,0,0,1 +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,19019,3485,17107,5370,60,4.1,8,8,96,3658,9,999999999,17,0.089,0,88,0,0,1 +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,7521,1340,5516,1731,30,6.2,6,6,96,3658,9,999999999,17,0.089,0,88,0,0,1 +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,5,28,83900,24,650,384,4,8,4,0,0,0,0,20,3.6,6,6,64,3658,9,999999999,17,0.089,0,88,0,0,1 +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,77777,9,999999999,17,0.089,0,88,0,0,1 +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,77777,9,999999999,17,0.089,0,88,0,0,1 +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,6.1,40,84000,0,0,354,0,0,0,0,0,0,0,350,3.1,4,4,32,77777,9,999999999,17,0.089,0,88,0,0,1 +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,77777,9,999999999,17,0.089,0,88,0,0,1 +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,77777,9,999999999,17,0.089,0,88,0,0,1 +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,77777,9,999999999,18,0.089,0,88,0,0,1 +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,77777,9,999999999,18,0.089,0,88,0,0,1 +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,77777,9,999999999,18,0.089,0,88,0,0,1 +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,77777,9,999999999,18,0.089,0,88,0,0,1 +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,11544,0,3585,1177,10,1.5,0,0,96,77777,9,999999999,18,0.089,0,88,0,0,1 +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,34245,27854,6020,2210,30,3.1,0,0,112,77777,9,999999999,18,0.089,0,88,0,0,1 +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,58438,43958,10557,4147,30,2.1,4,0,96,77777,9,999999999,18,0.089,0,88,0,0,1 +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,69038,41208,24072,9466,20,4.1,8,6,96,3353,9,999999999,18,0.089,0,88,0,0,1 +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,87613,44455,20405,8490,70,3.1,2,2,96,77777,9,999999999,19,0.089,0,88,0,0,1 +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,94216,88185,15193,5090,50,4.1,1,1,96,77777,9,999999999,19,0.089,0,88,0,0,1 +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,11.1,42,84200,1253,1321,373,953,897,102,102144,92994,13282,6341,60,1.5,1,1,64,77777,9,999999999,19,0.089,0,88,0,0,1 +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,105752,45481,25926,10601,20,1.5,3,3,64,77777,9,999999999,19,0.089,0,88,0,0,1 +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,95472,88034,16395,5523,20,3.6,2,2,64,77777,9,999999999,19,0.089,0,88,0,0,1 +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,31,84000,1076,1321,401,820,854,124,87255,87926,16552,3628,80,3.6,3,3,64,77777,9,999999999,19,0.089,0,88,0,0,1 +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,70565,84390,12909,2279,70,3.6,2,2,64,77777,9,999999999,19,0.089,0,88,0,0,1 +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,44804,28541,20839,7629,10,5.7,5,5,64,77777,9,999999999,19,0.089,0,88,0,0,1 +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,33255,28776,11047,3875,40,6.2,2,2,64,77777,9,999999999,20,0.089,0,88,0,0,1 +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,11518,3292,5095,1624,30,4.6,3,3,64,77777,9,999999999,20,0.089,0,88,0,0,1 +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,2438,9,999999999,20,0.089,0,88,0,0,1 +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,2438,9,999999999,20,0.089,0,88,0,11.2,1 +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,2591,9,999999999,20,0.089,0,88,0,3,1 +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,20,0.089,0,88,0,1.5,1 +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,2896,9,999999999,20,0.089,0,88,0,0,1 +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,7620,9,999999999,20,0.088,0,88,0,0,1 +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,2743,9,999999999,20,0.088,0,88,0,0,1 +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,77777,9,999999999,21,0.088,0,88,0,0,1 +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,77777,9,999999999,21,0.088,0,88,0,0,1 +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,77777,9,999999999,21,0.088,0,88,0,0,1 +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,11974,0,3144,1046,150,2.6,0,0,88,77777,9,999999999,21,0.088,0,88,0,0,1 +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,31641,69839,6742,1047,230,1.5,0,0,80,77777,9,999999999,21,0.088,0,88,0,0,1 +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,53302,84812,8822,1477,320,1.5,0,0,80,77777,9,999999999,20,0.088,0,88,0,0,1 +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,73192,92266,10278,1996,190,1,0,0,80,77777,9,999999999,20,0.088,0,88,0,0,1 +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,89668,96342,11119,2808,180,2.1,0,0,88,77777,9,999999999,20,0.088,0,88,0,0,1 +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,94872,91670,11348,4068,140,1.5,1,1,80,77777,9,999999999,20,0.088,0,88,0,0,1 +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,103556,95564,11564,5607,70,2.1,1,1,80,77777,9,999999999,20,0.088,0,88,0,0,1 +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,104648,96716,11432,5638,110,3.1,2,2,80,77777,9,999999999,20,0.088,0,88,0,0,1 +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,34,84100,1195,1321,392,877,780,171,109031,50393,21359,8850,140,4.1,3,3,80,77777,9,999999999,19,0.088,0,88,0,0,1 +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,98983,51629,17127,7183,300,3.1,2,2,80,77777,9,999999999,19,0.088,0,88,0,0,1 +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,61714,32767,29043,11094,30,4.1,8,8,80,2591,9,999999999,19,0.088,0,88,0,0,1 +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,46022,31212,18396,6889,50,3.1,6,6,80,9144,9,999999999,19,0.088,0,88,0,0,1 +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,17476,8788,10844,3811,30,3.6,8,8,80,9144,9,999999999,19,0.088,0,88,0,0,1 +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,6.7,31,84000,222,1321,390,87,50,78,9389,1340,8452,2312,40,3.1,7,7,80,9144,9,999999999,19,0.088,0,88,0,0,1 +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,6,6,48,9144,9,999999999,18,0.088,0,88,0,0,1 +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,49,84100,0,0,346,0,0,0,0,0,0,0,360,2.6,0,0,32,77777,9,999999999,18,0.088,0,88,0,0,1 +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,77777,9,999999999,18,0.088,0,88,0,0,1 +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,77777,9,999999999,18,0.088,0,88,0,0,1 +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,32,77777,9,999999999,18,0.088,0,88,0,0,1 +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,77777,9,999999999,17,0.087,0,88,0,0,1 +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,11.1,77,84100,0,0,320,0,0,0,0,0,0,0,180,2.1,0,0,32,77777,9,999999999,17,0.087,0,88,0,0,1 +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,77777,9,999999999,17,0.087,0,88,0,0,1 +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,8.9,67,84000,0,0,317,0,0,0,0,0,0,0,200,2.6,0,0,32,77777,9,999999999,17,0.087,0,88,0,0,1 +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,77777,9,999999999,17,0.087,0,88,0,0,1 +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,10064,640,4421,1406,190,4.1,0,0,104,77777,9,999999999,17,0.087,0,88,0,0,1 +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,31595,26149,7772,2805,200,3.1,0,0,96,77777,9,999999999,16,0.087,0,88,0,0,1 +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,56894,43157,11003,4307,190,3.1,0,0,96,77777,9,999999999,16,0.087,0,88,0,0,1 +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,6.1,30,84000,887,1321,360,663,822,111,81621,51348,13713,5655,240,3.1,0,0,96,77777,9,999999999,16,0.087,0,88,0,0,1 +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,86505,88389,16822,3514,320,1.5,0,0,112,77777,9,999999999,16,0.087,0,88,0,0,1 +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,-2.2,12,83900,1186,1321,374,936,893,135,97418,90576,17470,5541,170,2.1,0,0,112,77777,9,999999999,15,0.087,0,88,0,0,1 +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,107130,49026,20891,8622,140,2.1,1,1,112,77777,9,999999999,15,0.087,0,88,0,0,1 +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,13,83800,1255,1321,395,952,854,140,99156,86861,17816,8114,340,3.1,1,1,112,77777,9,999999999,15,0.087,0,88,0,0,1 +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,98378,90989,17321,5719,350,2.1,1,1,112,77777,9,999999999,15,0.087,0,88,0,0,1 +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,81475,81534,16511,3625,140,2.6,1,1,112,77777,9,999999999,15,0.087,0,88,0,0,1 +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,79532,51328,17312,7066,230,1.5,1,1,112,77777,9,999999999,14,0.087,0,88,0,0,1 +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,57471,44936,12640,4929,110,2.1,1,1,112,77777,9,999999999,14,0.087,0,88,0,0,1 +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,14,83600,463,1321,395,270,493,97,31026,27404,11185,3905,120,2.1,2,2,112,77777,9,999999999,14,0.087,0,88,0,0,1 +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,2.8,18,83600,221,1321,400,62,129,40,7080,1208,4578,1481,80,3.1,4,4,112,77777,9,999999999,14,0.087,0,88,0,0,1 +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,77777,9,999999999,13,0.087,0,88,0,0,1 +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,77777,9,999999999,13,0.087,0,88,0,0,1 +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,30,83600,0,0,351,0,0,0,0,0,0,0,160,2.6,0,0,32,77777,9,999999999,13,0.087,0,88,0,0,1 +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,77777,9,999999999,13,0.087,0,88,0,0,1 +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,77777,9,999999999,13,0.087,0,88,0,0,1 +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,41,83600,0,0,328,0,0,0,0,0,0,0,180,2.6,0,0,32,77777,9,999999999,12,0.087,0,88,0,0,1 +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,77777,9,999999999,12,0.087,0,88,0,0,1 +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,77777,9,999999999,12,0.087,0,88,0,0,1 +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,77777,9,999999999,12,0.087,0,88,0,0,1 +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,77777,9,999999999,11,0.087,0,88,0,0,1 +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,11018,315,3795,1229,190,3.1,0,0,104,77777,9,999999999,11,0.087,0,88,0,0,1 +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,33573,28866,6465,2357,200,2.6,0,0,96,77777,9,999999999,12,0.087,0,88,0,0,1 +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,59547,45555,9090,3582,180,2.1,0,0,104,77777,9,999999999,12,0.087,0,88,0,0,1 +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,20,83600,886,1321,387,678,876,90,72156,88979,12672,2199,210,2.6,0,0,104,77777,9,999999999,12,0.087,0,88,0,0,1 +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,88303,93130,13785,3200,190,2.1,0,0,104,77777,9,999999999,12,0.087,0,88,0,0,1 +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,94408,89764,14054,4774,120,2.1,1,1,104,77777,9,999999999,12,0.087,0,88,0,0,1 +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,1.7,12,83500,1251,1321,422,954,733,259,116218,55474,31731,12675,340,5.2,3,3,112,77777,9,999999999,12,0.087,0,88,0,0,1 +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,121948,58100,25212,10294,340,3.6,2,2,112,77777,9,999999999,12,0.087,0,88,0,0,1 +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.6,11,83500,1194,1321,421,856,657,262,103428,50794,31836,12679,310,6.2,3,3,112,77777,9,999999999,12,0.087,0,88,0,0,1 +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,87639,46123,17625,7369,310,7.7,2,2,112,77777,9,999999999,12,0.087,0,88,0,0,1 +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,64045,34719,31681,11842,310,2.6,6,6,96,4572,9,999999999,12,0.087,0,88,0,0,1 +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,21741,6366,16046,6117,30,2.6,6,6,96,4572,9,999999999,13,0.087,0,88,0,0,1 +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,35086,31921,8708,3139,50,3.6,3,3,80,77777,9,999999999,13,0.087,0,88,0,0,1 +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,12017,4478,5001,1594,40,2.6,2,1,64,77777,9,999999999,13,0.087,0,88,0,0,1 +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,77777,9,999999999,13,0.087,0,88,0,0,1 +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,29,83500,0,0,368,0,0,0,0,0,0,0,90,2.6,2,2,48,77777,9,999999999,13,0.087,0,88,0,0,1 +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,3.3,24,83500,0,0,372,0,0,0,0,0,0,0,250,3.1,3,3,32,77777,9,999999999,13,0.087,0,88,0,0,1 +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,77777,9,999999999,13,0.087,0,88,0,0,1 +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,6.7,42,83500,0,0,352,0,0,0,0,0,0,0,0,0,3,3,32,77777,9,999999999,13,0.087,0,88,0,0,1 +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,77777,9,999999999,13,0.086,0,88,0,0,1 +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,77777,9,999999999,13,0.086,0,88,0,0,1 +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,77777,9,999999999,14,0.086,0,88,0,0,1 +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,77777,9,999999999,14,0.086,0,88,0,0,1 +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,77777,9,999999999,14,0.086,0,88,0,0,1 +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,9334,1508,4735,1477,180,2.1,0,0,112,77777,9,999999999,14,0.086,0,88,0,0,1 +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,28969,24965,8434,3008,220,3.6,1,1,112,77777,9,999999999,14,0.086,0,88,0,0,1 +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,50544,38875,15858,5990,220,2.6,2,2,112,77777,9,999999999,14,0.086,0,88,0,0,1 +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,15989,1633,13824,5695,200,3.1,8,8,112,5486,9,999999999,14,0.086,0,88,0,0,1 +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,3.3,18,83600,1059,1321,412,574,130,470,64930,13148,53547,18077,200,2.1,7,7,112,3962,9,999999999,14,0.086,0,88,0,0,1 +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,100324,48585,36921,14353,130,1.5,5,5,112,77777,9,999999999,15,0.086,0,88,0,0,1 +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,1.1,12,83500,1250,1321,428,691,288,418,81155,25989,49431,18111,160,2.1,6,5,112,7620,9,999999999,15,0.086,0,88,0,0,1 +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,59807,10090,47267,17539,90,5.7,8,8,112,4267,9,999999999,15,0.086,0,88,0,0,1 +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,53095,13455,34964,13733,250,5.7,7,7,112,4572,9,999999999,15,0.086,0,88,0,0,1 +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,58181,10604,48085,17074,230,5.2,9,9,96,3353,9,999999999,15,0.086,0,88,0,0,1 +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,67985,38566,31869,11900,320,7.2,9,7,96,3353,9,999999999,15,0.086,0,88,0,0,1 +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,37405,15062,26878,9167,40,5.2,8,8,96,4877,9,999999999,16,0.086,0,88,0,0,1 +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,22,83700,462,1321,409,259,271,165,28449,19057,18211,5571,330,6.2,7,7,96,4877,9,999999999,16,0.086,0,88,0,0,1 +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,8858,692,8351,2288,200,2.1,8,6,96,4877,9,999999999,16,0.086,0,88,0,0,1 +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,7620,9,999999999,16,0.086,0,88,0,0,1 +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,77777,9,999999999,16,0.086,0,88,0,0,1 +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,77777,9,999999999,16,0.086,0,88,0,0,1 +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,77777,9,999999999,16,0.086,0,88,0,0,1 +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,77777,9,999999999,17,0.086,0,88,0,0,1 +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,7.2,43,83700,0,0,349,0,0,0,0,0,0,0,160,3.1,2,2,32,77777,9,999999999,17,0.086,0,88,0,0,1 +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,77777,9,999999999,17,0.086,0,88,0,0,1 +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,77777,9,999999999,17,0.086,0,88,0,0,1 +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,5.6,39,83700,0,0,356,0,0,0,0,0,0,0,180,2.1,6,5,48,3048,9,999999999,17,0.086,0,88,0,0,1 +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,5.6,39,83700,13,473,363,2,1,1,0,0,0,0,220,3.6,7,7,96,4572,9,999999999,17,0.086,0,88,0,0,1 +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,3786,0,3678,1192,350,3.1,8,8,104,3658,9,999999999,18,0.086,0,88,0,0,1 +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,12623,2006,11185,3831,140,1,9,9,112,3962,9,999999999,18,0.086,0,88,0,0,1 +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,29346,2817,27610,9134,10,5.7,9,8,104,3353,9,999999999,18,0.086,0,88,0,0,1 +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,61426,35521,18314,7421,360,7.7,7,4,64,77777,9,999999999,18,0.086,0,88,0,0,1 +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,40,84100,1058,1321,378,775,678,233,92376,49325,27922,11254,360,7.7,3,3,48,77777,9,999999999,19,0.086,0,88,0,0,1 +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,91456,84276,16925,5357,360,6.2,5,2,48,77777,9,999999999,19,0.086,0,88,0,0,1 +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,110568,49056,27977,11363,360,5.2,8,3,48,77777,9,999999999,19,0.086,0,88,0,0,1 +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,110038,48910,35125,13880,360,5.7,7,4,64,77777,9,999999999,20,0.086,0,88,0,0,1 +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,34,84200,1193,1321,413,484,126,370,56738,10514,43663,16426,30,5.2,8,8,48,7620,9,999999999,20,0.086,0,88,0,0,1 +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,9.4,37,84200,1075,1321,394,790,665,249,93927,49546,29769,11910,0,0,7,7,48,4572,9,999999999,20,0.086,0,88,0,0,1 +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,57985,24550,35576,12909,210,4.6,9,8,48,4572,9,999999999,20,0.086,0,88,0,0,1 +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,26754,6825,20909,7652,230,4.1,10,9,48,4572,9,999999999,21,0.086,0,88,0,0,1 +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,28799,20621,15911,5123,210,2.6,9,8,48,7620,9,999999999,21,0.086,0,88,0,0,1 +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,9345,1042,8520,2311,180,4.1,10,7,48,7620,9,999999999,21,0.086,0,88,0,0,1 +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,7620,9,999999999,22,0.086,0,88,0,0,1 +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,7620,9,999999999,22,0.086,0,88,0,0,1 +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,7620,9,999999999,22,0.086,0,88,0,0,1 +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,77777,9,999999999,22,0.086,0,88,0,0,1 +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,11.1,57,84200,0,0,376,0,0,0,0,0,0,0,150,6.2,10,8,32,7620,9,999999999,23,0.086,0,88,0,0,1 +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,11.1,57,84100,0,0,366,0,0,0,0,0,0,0,140,5.2,8,6,32,7620,9,999999999,23,0.086,0,88,0,0,1 +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,77777,9,999999999,23,0.086,0,88,0,0,1 +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,7620,9,999999999,24,0.086,0,88,0,0,1 +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,7620,9,999999999,24,0.086,0,88,0,0,1 +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,6096,9,999999999,24,0.086,0,88,0,0,1 +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,4457,0,3664,1188,220,1.5,9,7,64,6096,9,999999999,24,0.086,0,88,0,0,1 +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,6838,1776,4647,1713,180,2.1,9,8,80,6096,9,999999999,24,0.086,0,88,0,0,1 +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,35052,17019,21431,7667,280,3.1,9,7,80,6096,9,999999999,24,0.086,0,88,0,0,1 +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,25619,0,25859,10912,340,2.6,10,10,80,6096,9,999999999,24,0.086,0,88,0,0,1 +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,75463,35776,26208,10662,360,4.1,10,7,64,6096,9,999999999,24,0.086,0,88,0,0,1 +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,99139,43686,44738,16710,320,4.6,9,6,48,6096,9,999999999,24,0.086,0,88,0,0,1 +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,94691,35301,49209,18103,340,3.1,10,7,48,4267,9,999999999,24,0.086,0,88,0,0,1 +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,72556,14811,54758,19489,310,4.1,9,8,64,4267,9,999999999,24,0.086,0,88,0,0,1 +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,81922,32769,36060,14129,120,2.1,7,6,48,7620,9,999999999,24,0.086,0,88,0,0,1 +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,25745,0,25999,11757,260,6.2,10,10,48,2896,9,999999999,23,0.086,0,88,0,0,1 +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,12.8,63,83700,904,1321,386,483,136,389,53863,12681,43674,14663,170,6.7,9,9,64,4572,9,999999999,23,0.086,0,88,0,0,1 +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,34650,11866,25593,8893,230,4.6,8,8,80,4572,9,999999999,23,0.086,0,88,0,0,1 +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,32851,25562,8763,3170,240,3.1,6,2,80,77777,9,999999999,23,0.086,0,88,0,0,1 +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,9387,2043,6205,1889,160,3.6,8,5,80,7620,9,999999999,23,0.086,0,88,0,0,1 +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,7620,9,999999999,23,0.086,0,88,0,0,1 +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,3658,9,999999999,23,0.086,0,88,0,0,1 +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,7620,9,999999999,23,0.086,0,88,0,0,1 +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,77777,9,999999999,23,0.086,0,88,0,0,1 +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,77777,9,999999999,23,0.086,0,88,0,0,1 +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,77777,9,999999999,23,0.085,0,88,0,0,1 +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,77777,9,999999999,23,0.085,0,88,0,0,1 +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,77777,9,999999999,23,0.085,0,88,0,0,1 +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,77777,9,999999999,22,0.085,0,88,0,0,1 +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,77777,9,999999999,22,0.085,0,88,0,0,1 +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,10307,0,3557,1154,200,2.6,1,1,96,77777,9,999999999,22,0.085,0,88,0,0,1 +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,30448,69543,6149,994,210,1.5,1,1,96,77777,9,999999999,22,0.085,0,88,0,0,1 +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,41,83700,667,1321,375,370,578,78,44992,31261,9511,3741,80,2.1,3,3,96,77777,9,999999999,22,0.085,0,88,0,0,1 +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,78325,47426,12185,5043,80,1.5,2,2,96,77777,9,999999999,22,0.085,0,88,0,0,1 +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,88338,45287,16489,6927,40,5.2,3,3,96,77777,9,999999999,22,0.085,0,88,0,0,1 +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,70664,66236,11355,3984,60,5.2,2,2,96,77777,9,999999999,22,0.085,0,88,0,0,1 +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,33,83700,1248,1321,398,942,860,130,99987,88796,16688,7384,350,4.1,4,4,96,77777,9,999999999,22,0.085,0,88,0,0,1 +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,120105,55159,32304,12913,350,4.6,5,5,96,77777,9,999999999,22,0.085,0,88,0,0,1 +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,33,83600,1192,1321,401,968,887,167,120513,56995,20888,8665,10,4.6,5,5,80,77777,9,999999999,22,0.085,0,88,0,0,1 +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,64760,25953,32390,12785,80,2.6,4,4,64,77777,9,999999999,22,0.085,0,88,0,0,1 +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,33,83500,904,1321,405,542,432,246,62815,33373,28667,10984,10,5.2,8,6,64,6096,9,999999999,22,0.085,0,88,0,0,1 +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,39299,15559,28438,9510,180,5.2,9,9,32,3658,9,999999999,22,0.085,0,88,0,0,1 +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,15.6,76,83600,460,1321,390,150,57,130,16693,3144,14530,4810,300,5.7,10,9,24,2286,9,999999999,22,0.085,0,88,0,0.3,1 +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,3698,0,3725,1415,340,5.2,10,10,16,2286,9,999999999,22,0.085,0,88,0,0,1 +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,90,83700,22,606,364,5,17,5,0,0,0,0,90,3.1,8,8,32,1676,9,999999999,22,0.085,0,88,0,0,1 +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,90,83700,0,0,351,0,0,0,0,0,0,0,270,2.1,5,5,32,77777,9,999999999,22,0.085,0,88,0,0,1 +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,90,83800,0,0,354,0,0,0,0,0,0,0,210,2.1,8,6,32,4267,9,999999999,22,0.085,0,88,0,0,1 +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,96,83800,0,0,337,0,0,0,0,0,0,0,90,1.5,2,2,32,77777,9,999999999,22,0.085,0,88,0,0,1 +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,96,83800,0,0,326,0,0,0,0,0,0,0,240,1.5,0,0,32,77777,9,999999999,22,0.085,0,88,0,0,1 +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,77777,9,999999999,22,0.085,0,88,0,0,1 +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,13.9,93,83600,0,0,322,0,0,0,0,0,0,0,200,2.1,0,0,32,77777,9,999999999,22,0.085,0,88,0,0,1 +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,13.9,93,83600,0,0,329,0,0,0,0,0,0,0,160,2.1,1,1,32,77777,9,999999999,22,0.085,0,88,0,0,1 +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,11.1,77,83600,0,0,326,0,0,0,0,0,0,0,190,2.6,1,1,32,77777,9,999999999,22,0.085,0,88,0,0,1 +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,77777,9,999999999,22,0.085,0,88,0,0,1 +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,10476,39192,3929,534,190,2.1,0,0,96,77777,9,999999999,22,0.085,0,88,0,0,1 +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,30841,70935,6007,980,200,2.6,0,0,96,77777,9,999999999,23,0.085,0,88,0,0,1 +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,50088,81316,7701,1360,220,2.1,1,1,112,77777,9,999999999,23,0.085,0,88,0,0,1 +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,68657,87871,9081,1827,190,3.1,1,1,112,77777,9,999999999,23,0.085,0,88,0,0,1 +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,87396,43522,14957,6308,70,1.5,2,2,112,77777,9,999999999,23,0.085,0,88,0,0,1 +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,99747,46911,29091,11743,160,2.1,3,3,112,77777,9,999999999,23,0.085,0,88,0,0,1 +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,94884,82803,17762,7693,340,2.1,5,5,96,77777,9,999999999,23,0.085,0,88,0,0,1 +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,86126,23633,59592,20512,240,4.1,8,8,96,3962,9,999999999,23,0.085,0,88,0,0,1 +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,93036,41772,36000,14089,160,2.1,7,7,96,4267,9,999999999,23,0.085,0,88,0,0,1 +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,8.3,26,83500,1073,1322,411,889,866,185,108148,59241,22614,9332,170,4.6,5,5,88,77777,9,999999999,23,0.085,0,88,0,2.5,1 +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,32858,3205,29681,11301,360,3.6,9,9,64,1981,9,999999999,24,0.085,0,88,0,0.3,1 +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,55293,38650,12888,5041,90,4.6,5,4,80,77777,9,999999999,24,0.085,0,88,0,0,1 +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,33201,26337,8441,3060,120,3.1,4,2,80,77777,9,999999999,24,0.085,0,88,0,0,1 +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,9169,1460,7906,2205,130,2.1,8,8,80,4267,9,999999999,24,0.085,0,88,0,0,1 +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,3353,9,999999999,24,0.085,0,88,0,0,1 +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,3353,9,999999999,24,0.085,0,88,0,0,1 +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,3353,9,999999999,24,0.085,0,88,0,0,1 +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,3353,9,999999999,24,0.085,0,88,0,0,1 +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,10.6,55,83700,0,0,370,0,0,0,0,0,0,0,180,3.1,10,7,32,7620,9,999999999,24,0.085,0,88,0,0,1 +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,7620,9,999999999,24,0.085,0,88,0,0,1 +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,7620,9,999999999,25,0.085,0,88,0,0,1 +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,7620,9,999999999,25,0.085,0,88,0,0,1 +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,3048,9,999999999,25,0.085,0,88,0,0,1 +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,3658,9,999999999,25,0.085,0,88,0,0,1 +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,4247,0,3335,1085,310,3.1,9,8,64,3353,9,999999999,25,0.085,0,88,0,0,1 +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,10218,4252,5540,2028,290,2.1,7,7,64,3353,9,999999999,24,0.085,0,88,0,0,1 +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,33655,7101,29078,9348,260,4.1,9,9,96,3048,9,999999999,24,0.085,0,88,0,0,1 +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,47,84000,877,1322,373,428,233,273,48984,18936,31425,11633,260,1.5,7,6,96,7620,9,999999999,24,0.085,0,88,0,0,1 +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,92211,48175,21049,8734,230,2.6,4,3,96,77777,9,999999999,24,0.085,0,88,0,0,1 +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,37,84000,1178,1322,380,888,834,144,94018,85944,18644,5556,120,1.5,2,2,96,77777,9,999999999,24,0.085,0,88,0,0,1 +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,104512,95638,13782,6275,190,1.5,1,1,96,77777,9,999999999,23,0.085,0,88,0,0,1 +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,104591,45978,24441,10026,70,2.6,4,4,96,77777,9,999999999,23,0.085,0,88,0,0,1 +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,51959,9007,40407,15462,340,2.6,9,9,80,3962,9,999999999,23,0.085,0,88,0,0,1 +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,41290,9218,29553,11828,290,2.1,9,9,80,4267,9,999999999,23,0.085,0,88,0,0,1 +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,47027,7851,40651,14036,290,2.1,10,8,80,4267,9,999999999,23,0.085,0,88,0,0,1 +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,28814,11814,18364,6870,250,3.1,9,7,80,3962,9,999999999,22,0.085,0,88,0,0,1 +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,21169,9863,14994,4895,260,3.1,9,6,80,7315,9,999999999,22,0.085,0,88,0,0,1 +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,8632,1807,6106,1854,200,5.2,9,6,80,7315,9,999999999,22,0.085,0,88,0,0,1 +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,77777,9,999999999,22,0.085,0,88,0,0,1 +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,51,84100,0,0,355,0,0,0,0,0,0,0,170,3.1,5,2,32,77777,9,999999999,21,0.085,0,88,0,0,1 +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,77777,9,999999999,21,0.085,0,88,0,0,1 +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,56,84100,0,0,347,0,0,0,0,0,0,0,200,2.6,5,2,32,77777,9,999999999,21,0.085,0,88,0,0,1 +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,56,84100,0,0,350,0,0,0,0,0,0,0,180,3.1,3,3,32,77777,9,999999999,21,0.085,0,88,0,0,1 +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,60,84100,0,0,337,0,0,0,0,0,0,0,180,4.1,3,1,32,77777,9,999999999,21,0.084,0,88,0,0,1 +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,63,84100,0,0,334,0,0,0,0,0,0,0,170,3.1,1,1,32,77777,9,999999999,20,0.084,0,88,0,0,1 +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,77777,9,999999999,20,0.084,0,88,0,0,1 +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,69,84200,0,0,321,0,0,0,0,0,0,0,180,2.6,2,0,64,77777,9,999999999,20,0.084,0,88,0,0,1 +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,10,72,84200,9,408,332,1,7,1,0,0,0,0,210,2.6,5,3,96,77777,9,999999999,20,0.084,0,88,0,0,1 +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,9175,0,3860,1228,230,4.1,0,0,96,77777,9,999999999,20,0.084,0,88,0,0,1 +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,30574,24203,6863,2481,240,2.6,0,0,96,77777,9,999999999,20,0.084,0,88,0,0,1 +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,55787,40587,9830,3857,190,1.5,0,0,96,77777,9,999999999,20,0.084,0,88,0,0,1 +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,80632,48829,12284,5080,130,2.1,0,0,80,77777,9,999999999,20,0.084,0,88,0,0,1 +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,86365,44757,23759,9753,0,0,2,2,96,77777,9,999999999,20,0.084,0,88,0,0,1 +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,100393,48163,28771,11618,80,2.1,3,3,80,77777,9,999999999,20,0.084,0,88,0,0,1 +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,125513,58969,24556,10064,150,3.6,4,4,80,77777,9,999999999,20,0.084,0,88,0,0,1 +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,31,84200,1249,1322,422,479,262,231,58655,18193,28442,11530,350,5.7,8,8,64,2591,9,999999999,20,0.084,0,88,0,0,1 +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,92897,41796,31951,12747,100,6.2,7,7,48,3962,9,999999999,20,0.084,0,88,0,0.3,1 +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,24959,0,25206,11483,320,7.7,10,10,9.6,2134,9,999999999,21,0.084,0,88,0,2.8,1 +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,20167,0,20357,9182,20,8.2,10,10,24,2286,9,999999999,21,0.084,0,88,0,0,1 +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,38875,4254,36613,10784,280,2.6,10,9,32,2896,9,999999999,21,0.084,0,88,0,0.3,1 +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,8169,933,7121,2615,150,3.6,10,9,48,2896,9,999999999,21,0.084,0,88,0,0.3,1 +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,6501,181,6190,1871,220,5.2,9,8,64,2896,9,999999999,21,0.084,0,88,0,0,1 +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,77777,9,999999999,21,0.084,0,88,0,0,1 +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,3048,9,999999999,21,0.084,0,88,0,0,1 +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,3048,9,999999999,21,0.084,0,88,0,0,1 +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,77777,9,999999999,21,0.084,0,88,0,0,1 +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,77777,9,999999999,21,0.084,0,88,0,0,1 +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,77777,9,999999999,21,0.084,0,88,0,0,1 +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,77777,9,999999999,21,0.084,0,88,0,0,1 +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,77777,9,999999999,21,0.084,0,88,0,0,1 +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,77777,9,999999999,22,0.084,0,88,0,0,1 +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,77777,9,999999999,22,0.084,0,88,0,0,1 +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,9479,0,3433,1107,280,1.5,0,0,24,77777,9,999999999,21,0.084,0,88,0,0,1 +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,31298,23412,6082,2215,210,1.5,0,0,9.6,77777,9,999999999,21,0.084,0,88,0,0,1 +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,56816,39879,8575,3381,210,1.5,0,0,9.6,77777,9,999999999,21,0.084,0,88,0,0,1 +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,70966,88615,12197,2124,120,1.5,0,0,80,77777,9,999999999,21,0.084,0,88,0,0,1 +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,87479,93109,13341,3057,280,1.5,0,0,96,77777,9,999999999,21,0.084,0,88,0,0,1 +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,11.1,42,84400,1176,1322,366,927,923,106,99302,95568,13996,4588,220,3.1,0,0,96,77777,9,999999999,20,0.084,0,88,0,0,1 +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,105359,96438,14276,6381,140,2.6,0,0,96,77777,9,999999999,20,0.084,0,88,0,0,1 +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,97447,88322,13895,6403,0,0,1,1,96,77777,9,999999999,20,0.084,0,88,0,0,1 +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,102290,48645,31177,12474,110,2.1,3,3,80,77777,9,999999999,20,0.084,0,88,0,0,1 +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,90723,47358,22606,9328,150,4.1,2,2,80,77777,9,999999999,20,0.084,0,88,0,0,1 +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,67498,40001,19714,7968,130,3.1,5,3,96,77777,9,999999999,19,0.084,0,88,0,0,1 +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,35720,13606,25974,8931,110,3.6,7,6,96,9144,9,999999999,19,0.084,0,88,0,0,1 +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,24935,17154,12913,4372,110,2.6,5,3,96,77777,9,999999999,19,0.084,0,88,0,0,1 +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,11494,3159,5484,1702,120,2.6,5,2,80,77777,9,999999999,19,0.084,0,88,0,0,1 +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,77777,9,999999999,19,0.084,0,88,0,0,1 +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,77777,9,999999999,18,0.084,0,88,0,0,1 +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,77777,9,999999999,18,0.084,0,88,0,0,1 +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,11.7,59,84200,0,0,343,0,0,0,0,0,0,0,180,7.2,0,0,32,77777,9,999999999,18,0.084,0,88,0,0,1 +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,77777,9,999999999,18,0.084,0,88,0,0,1 +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,77777,9,999999999,18,0.084,0,88,0,0,1 +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,77777,9,999999999,17,0.084,0,88,0,0,1 +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,32,77777,9,999999999,17,0.084,0,88,0,0,1 +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,77777,9,999999999,17,0.084,0,88,0,0,1 +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,77777,9,999999999,17,0.084,0,88,0,0,1 +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,9852,37917,3768,510,210,2.6,0,0,112,77777,9,999999999,17,0.084,0,88,0,0,1 +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,10.6,55,84100,419,1322,342,275,751,37,30153,70714,5855,960,210,2.6,0,0,112,77777,9,999999999,16,0.084,0,88,0,0,1 +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,52181,86223,7701,1353,220,4.1,0,0,112,77777,9,999999999,16,0.084,0,88,0,0,1 +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,72233,93773,9217,1831,190,3.6,0,0,112,77777,9,999999999,16,0.084,0,88,0,0,1 +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,89177,97999,10102,2544,150,3.1,0,0,112,77777,9,999999999,16,0.084,0,88,0,0,1 +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,100830,99871,10606,3690,130,1.5,0,0,112,77777,9,999999999,16,0.084,0,88,0,0,1 +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,107090,100791,10827,5020,180,4.6,0,0,112,77777,9,999999999,16,0.084,0,88,0,0,1 +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,20,83900,1247,1322,387,1008,980,82,107422,100632,10813,5140,180,4.1,0,0,112,77777,9,999999999,15,0.084,0,88,0,0,1 +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,101515,99501,10565,3860,190,5.2,0,0,104,77777,9,999999999,15,0.084,0,88,0,0,1 +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,90449,97651,10176,2675,170,3.1,0,0,104,77777,9,999999999,15,0.084,0,88,0,0,1 +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,74483,93989,9295,1903,150,5.2,0,0,104,77777,9,999999999,15,0.084,0,88,0,0,1 +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,54906,87294,7939,1412,160,7.2,0,0,96,77777,9,999999999,15,0.084,0,88,0,0,1 +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,21,83700,454,1322,380,306,776,39,33180,73366,6125,1015,150,6.7,0,0,96,77777,9,999999999,15,0.084,0,88,0,0,1 +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,12369,43759,4077,585,170,6.2,0,0,96,77777,9,999999999,14,0.084,0,88,0,0,1 +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,77777,9,999999999,14,0.084,0,88,0,0,1 +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,77777,9,999999999,14,0.084,0,88,0,0,1 +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,77777,9,999999999,14,0.084,0,88,0,0,1 +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,77777,9,999999999,14,0.084,0,88,0,0,1 +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,77777,9,999999999,14,0.084,0,88,0,0,1 +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,77777,9,999999999,13,0.084,0,88,0,0,1 +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,77777,9,999999999,13,0.084,0,88,0,0,1 +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,77777,9,999999999,13,0.084,0,88,0,0,1 +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,77777,9,999999999,13,0.084,0,88,0,0,1 +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,77777,9,999999999,13,0.084,0,88,0,0,1 +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,9380,0,3324,1069,200,1.5,0,0,112,77777,9,999999999,13,0.084,0,88,0,0,1 +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,31671,25384,5868,2131,200,2.6,0,0,112,77777,9,999999999,13,0.084,0,88,0,0,1 +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,50657,81139,10112,1522,0,0,0,0,112,77777,9,999999999,13,0.084,0,88,0,0,1 +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,71124,89818,11919,2094,0,0,0,0,112,77777,9,999999999,13,0.084,0,88,0,0,1 +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,87954,94440,12949,2986,0,0,0,0,112,77777,9,999999999,14,0.084,0,88,0,0,1 +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,99725,96730,13614,4456,140,1.5,0,0,112,77777,9,999999999,14,0.084,0,88,0,0,1 +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,100933,92640,13537,6038,50,2.6,1,1,112,77777,9,999999999,14,0.084,0,88,0,0,1 +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,99196,86702,18588,7916,110,3.1,1,1,112,77777,9,999999999,14,0.084,0,88,0,0,1 +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,3.3,14,83600,1188,1322,425,725,469,303,86485,37715,36363,14185,70,3.6,3,3,96,77777,9,999999999,14,0.084,0,88,0,0,1 +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,88684,93695,12871,3133,50,2.6,1,1,88,77777,9,999999999,14,0.084,0,88,0,0,1 +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,67679,82486,11709,2165,10,4.1,1,1,96,77777,9,999999999,15,0.084,0,88,0,0,1 +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,11,83500,688,1322,419,453,692,92,54806,42235,11164,4376,20,7.2,2,2,96,77777,9,999999999,15,0.084,0,88,0,0,1 +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,8.3,26,83600,452,1322,405,214,329,101,24379,17367,11548,3989,10,8.2,3,3,80,77777,9,999999999,15,0.084,0,88,0,0,1 +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,10773,846,4020,1309,10,5.2,2,2,80,77777,9,999999999,15,0.084,0,88,0,0,1 +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,8.9,36,83700,17,540,379,4,30,3,0,0,0,0,40,1.5,3,3,64,77777,9,999999999,15,0.084,0,88,0,0,1 +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,32,77777,9,999999999,15,0.084,0,88,0,0,1 +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,77777,9,999999999,15,0.084,0,88,0,0,1 +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,77777,9,999999999,16,0.084,0,88,0,0,1 +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,77777,9,999999999,16,0.084,0,88,0,0,1 +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,77777,9,999999999,16,0.085,0,88,0,0,1 +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,77777,9,999999999,16,0.085,0,88,0,0,1 +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,77777,9,999999999,16,0.085,0,88,0,0,1 +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,77777,9,999999999,16,0.085,0,88,0,0,1 +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,69,83900,6,342,327,0,2,0,0,0,0,0,180,1.5,1,1,96,77777,9,999999999,17,0.085,0,88,0,0,1 +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,58,84000,170,1322,333,66,199,40,7341,0,4461,1359,180,2.1,1,0,96,77777,9,999999999,17,0.085,0,88,0,0,1 +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,27253,22277,8687,3050,200,2.1,0,0,96,77777,9,999999999,17,0.085,0,88,0,0,1 +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,8.9,36,84000,653,1322,364,440,676,106,52154,40051,12608,4847,210,1.5,0,0,96,77777,9,999999999,17,0.085,0,88,0,0,1 +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,75934,48322,16484,6704,320,1.5,1,0,96,77777,9,999999999,17,0.085,0,88,0,0,1 +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,7.8,25,84000,1045,1322,387,792,805,155,97277,52955,19121,7968,80,1.5,1,0,96,77777,9,999999999,17,0.085,0,88,0,0,1 +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,113111,54975,20854,8648,270,4.1,1,0,96,77777,9,999999999,17,0.085,0,88,0,0,1 +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,116608,52664,20807,8613,350,5.2,1,1,96,77777,9,999999999,17,0.085,0,88,0,0,1 +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,116922,55658,28958,11690,340,4.6,1,1,96,77777,9,999999999,17,0.085,0,88,0,0,1 +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,108521,53081,20699,8569,280,2.6,2,2,96,77777,9,999999999,17,0.085,0,88,0,0,1 +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,80478,40360,31348,12406,340,3.1,3,3,96,77777,9,999999999,18,0.085,0,88,0,0,1 +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,69670,42370,27641,10615,340,2.6,7,4,80,6096,9,999999999,18,0.085,0,88,0,0,1 +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,38917,10146,32738,10202,310,6.2,6,5,80,6096,9,999999999,18,0.085,0,88,0,0,1 +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,27400,22069,10814,3770,300,5.2,4,4,80,77777,9,999999999,18,0.085,0,88,0,0,1 +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,7252,776,6395,1888,280,4.1,8,5,80,7620,9,999999999,18,0.085,0,88,0,0,1 +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,77777,9,999999999,18,0.085,0,88,0,0,1 +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,77777,9,999999999,18,0.085,0,88,0,0,1 +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,32,77777,9,999999999,18,0.085,0,88,0,0,1 +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,77777,9,999999999,18,0.085,0,88,0,0,1 +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,77777,9,999999999,18,0.085,0,88,0,0,1 +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,77777,9,999999999,18,0.086,0,88,0,0,1 +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,7.8,45,83900,0,0,345,0,0,0,0,0,0,0,190,2.1,3,1,32,77777,9,999999999,19,0.086,0,88,0,0,1 +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,77777,9,999999999,19,0.086,0,88,0,0,1 +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,77777,9,999999999,19,0.086,0,88,0,0,1 +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,77777,9,999999999,19,0.086,0,88,0,0,1 +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,8.3,47,83900,168,1322,339,75,348,31,8512,0,3526,1117,190,2.6,0,0,96,77777,9,999999999,19,0.086,0,88,0,0,1 +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,30017,24244,6302,2274,200,3.1,0,0,96,77777,9,999999999,19,0.086,0,88,0,0,1 +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,55544,41962,9037,3539,210,1.5,0,0,96,77777,9,999999999,20,0.086,0,88,0,0,1 +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,69329,86673,12865,2141,120,1.5,0,0,96,77777,9,999999999,20,0.086,0,88,0,0,1 +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,85930,91310,14108,3104,0,0,0,0,96,77777,9,999999999,20,0.086,0,88,0,0,1 +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,97586,93818,14735,4661,0,0,0,0,96,77777,9,999999999,20,0.086,0,88,0,0,1 +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,100977,92066,14763,6386,30,2.1,1,1,96,77777,9,999999999,21,0.086,0,88,0,0,1 +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,104145,94945,14748,6560,50,2.6,1,1,96,77777,9,999999999,21,0.086,0,88,0,0,1 +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,113083,55497,24362,9995,90,3.6,3,3,96,77777,9,999999999,21,0.086,0,88,0,0,1 +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,84452,43661,27215,11003,100,3.6,4,4,96,77777,9,999999999,21,0.086,0,88,0,0,1 +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,69438,42579,20939,8391,120,2.6,4,4,64,77777,9,999999999,22,0.086,0,88,0,0,1 +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,18,83500,685,1322,430,259,128,193,29514,9705,22101,7916,360,4.1,7,7,64,3048,9,999999999,22,0.086,0,88,0,0,1 +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,24392,7748,20724,5842,310,5.2,8,8,64,3658,9,999999999,22,0.086,0,88,0,0,1 +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,37,83700,204,1322,398,46,87,33,5282,0,3797,1242,330,6.7,7,7,64,3658,9,999999999,22,0.086,0,88,0,0,1 +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,3353,9,999999999,23,0.086,0,88,0,0,1 +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,3658,9,999999999,23,0.086,0,88,0,0,1 +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,40,83800,0,0,398,0,0,0,0,0,0,0,310,3.6,9,8,32,3658,9,999999999,23,0.086,0,88,0,0,1 +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,7,6,32,7620,9,999999999,23,0.086,0,88,0,0,1 +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,7620,9,999999999,24,0.086,0,88,0,0,1 +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,7620,9,999999999,24,0.087,0,88,0,0,1 +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,77777,9,999999999,24,0.087,0,88,0,0,1 +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,11.1,57,83500,0,0,349,0,0,0,0,0,0,0,130,1.5,3,1,32,77777,9,999999999,24,0.087,0,88,0,0,1 +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,77777,9,999999999,25,0.087,0,88,0,0,1 +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,77777,9,999999999,25,0.087,0,88,0,0,1 +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,6725,0,3933,1219,200,2.1,2,2,96,77777,9,999999999,25,0.087,0,88,0,0,1 +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,25061,18801,12749,4140,180,2.6,3,3,96,77777,9,999999999,25,0.087,0,88,0,0,1 +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,11.1,42,83600,648,1322,385,340,436,126,39682,26745,14763,5575,190,2.1,4,4,96,77777,9,999999999,25,0.087,0,88,0,0,1 +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,66478,40546,20237,8072,140,2.1,4,4,96,77777,9,999999999,25,0.087,0,88,0,0,1 +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,30,83600,1042,1322,400,753,740,169,91752,48927,20687,8582,80,2.6,2,2,96,77777,9,999999999,26,0.087,0,88,0,0,1 +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,103859,50648,27934,11320,80,4.6,3,3,96,77777,9,999999999,26,0.087,0,88,0,0,1 +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,86312,33824,39350,15214,70,5.2,5,5,96,77777,9,999999999,26,0.087,0,88,0,0,1 +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,75759,26845,37148,14519,0,0,8,8,96,4267,9,999999999,26,0.087,0,88,0,0,1 +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,107894,52082,24921,10210,60,2.1,4,2,96,77777,9,999999999,26,0.087,0,88,0,0,1 +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,45816,16324,22713,9361,350,5.2,8,8,96,4267,9,999999999,26,0.087,0,88,0,0,1 +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,33693,2025,31930,11882,360,7.7,9,9,80,3048,9,999999999,26,0.087,0,88,0,0,1 +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,31412,8181,25377,8753,20,5.2,10,9,80,3353,9,999999999,26,0.087,0,88,0,0,1 +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,61,83700,447,1322,404,95,25,86,10904,1107,9904,3505,30,3.1,10,9,80,2743,9,999999999,27,0.087,0,88,0,0,1 +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,3695,0,3722,1386,160,2.1,10,10,80,3048,9,999999999,27,0.087,0,88,0,0,1 +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,3353,9,999999999,27,0.087,0,88,0,0,1 +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,2286,9,999999999,27,0.087,0,88,0,0,1 +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,11.1,57,83900,0,0,363,0,0,0,0,0,0,0,90,2.1,7,5,32,3658,9,999999999,27,0.087,0,88,0,0,1 +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,77777,9,999999999,27,0.087,0,88,0,0,1 +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,77777,9,999999999,27,0.087,0,88,0,0,1 +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,77777,9,999999999,27,0.088,0,88,0,0,1 +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,77777,9,999999999,28,0.088,0,88,0,0,1 +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,77777,9,999999999,28,0.088,0,88,0,0,1 +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,77777,9,999999999,28,0.088,0,88,0,0,1 +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,6,276,340,1,17,0,0,0,0,0,0,0,7,2,80,77777,9,999999999,28,0.088,0,88,0,0,1 +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,6465,0,4023,1237,200,1.5,8,3,96,77777,9,999999999,28,0.088,0,88,0,0,1 +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,24487,18219,9183,3187,0,0,5,2,96,77777,9,999999999,28,0.088,0,88,0,0,1 +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,47029,32714,10013,3909,120,1.5,5,3,64,77777,9,999999999,28,0.088,0,88,0,0,1 +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,72121,44494,17111,6938,140,2.6,7,2,80,77777,9,999999999,27,0.088,0,88,0,0,1 +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,90029,45258,14685,6196,70,2.1,6,3,80,77777,9,999999999,27,0.088,0,88,0,0,1 +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,90099,40319,26857,10947,110,3.1,6,2,96,77777,9,999999999,27,0.088,0,88,0,0,1 +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,11.7,32,83600,1237,1323,412,891,720,217,109335,48439,26771,10921,140,1.5,8,4,96,77777,9,999999999,27,0.088,0,88,0,0,1 +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,86333,34027,34960,13815,180,2.1,9,6,80,9144,9,999999999,27,0.088,0,88,0,0,1 +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,28,83500,1183,1323,432,746,476,320,88316,37582,38121,14764,0,0,9,8,80,4267,9,999999999,27,0.088,0,88,0,0,1 +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,31731,0,32042,13743,250,6.2,10,10,64,4267,9,999999999,27,0.088,0,88,0,0,1 +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,11.7,43,83500,893,1323,412,474,73,424,52426,7217,47224,15097,140,5.2,10,9,80,3353,9,999999999,26,0.088,0,88,0,0,1 +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,35446,17413,21188,7663,130,4.1,10,7,96,3658,9,999999999,26,0.088,0,88,0,0.3,1 +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,11.7,43,83700,445,1323,423,90,0,90,8957,0,9029,3627,250,8.2,10,10,64,2286,9,999999999,26,0.088,0,88,0,0,1 +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,7448,304,7043,1988,350,5.2,10,9,80,2438,9,999999999,26,0.088,0,88,0,0,1 +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,76,83800,14,474,397,2,0,2,0,0,0,0,50,1.5,10,10,64,3658,9,999999999,26,0.088,0,88,0,0,1 +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,77777,9,999999999,26,0.088,0,88,0,0,1 +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,4267,9,999999999,25,0.088,0,88,0,0,1 +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,4267,9,999999999,25,0.088,0,88,0,0,1 +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,7620,9,999999999,25,0.088,0,88,0,0,1 +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,3962,9,999999999,25,0.09,0,88,0,0,1 +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,7620,9,999999999,25,0.09,0,88,0,0,1 +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,3,3,32,77777,9,999999999,25,0.09,0,88,0,0,1 +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,32,77777,9,999999999,25,0.09,0,88,0,0,1 +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,12.2,83,83700,4,254,327,0,10,0,0,0,0,0,0,0,3,1,80,77777,9,999999999,24,0.09,0,88,0,0,1 +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,7603,0,3811,1179,210,2.6,2,1,96,77777,9,999999999,25,0.09,0,88,0,0,1 +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,22292,15544,7684,2722,220,2.1,4,3,96,77777,9,999999999,25,0.09,0,88,0,0,1 +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,48527,35517,11905,4588,220,3.1,4,2,96,77777,9,999999999,25,0.09,0,88,0,0,1 +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,65277,39337,17890,7220,170,2.6,4,3,96,77777,9,999999999,25,0.09,0,88,0,0,1 +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,80279,40504,17239,7229,90,3.1,2,1,96,77777,9,999999999,25,0.09,0,88,0,0,1 +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,95195,44551,32397,12884,40,2.1,5,3,96,77777,9,999999999,26,0.09,0,88,0,0,1 +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,8.3,26,83800,1236,1323,419,730,463,297,87617,35481,35863,14097,350,2.6,7,7,96,9144,9,999999999,26,0.09,0,88,0,0,1 +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,99404,43515,25103,10279,30,2.1,9,4,96,77777,9,999999999,26,0.09,0,88,0,0,1 +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,102587,48936,34480,13591,60,5.2,9,6,80,9144,9,999999999,26,0.09,0,88,0,0,1 +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,51973,10253,41150,15339,50,5.2,9,9,64,4572,9,999999999,26,0.09,0,88,0,0.5,1 +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,76,83900,892,1323,386,242,60,201,28351,4095,23667,9360,260,7.2,10,9,19.2,2591,9,999999999,27,0.09,0,88,0,1,1 +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,31395,3047,29364,9590,330,2.6,10,9,24,2591,9,999999999,27,0.09,0,88,0,0.8,1 +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,8220,0,8287,3396,220,4.1,10,10,24,2743,9,999999999,27,0.09,0,88,0,0.3,1 +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,14.4,70,84000,197,1323,399,29,0,29,2817,0,2838,1107,280,3.6,10,10,72,2896,9,999999999,27,0.09,0,88,0,0,1 +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,76,84100,13,474,386,2,1,2,0,0,0,0,240,4.6,10,9,32,2896,9,999999999,27,0.09,0,88,0,0,1 +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,4267,9,999999999,28,0.09,0,88,0,0,1 +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,78,84200,0,0,362,0,0,0,0,0,0,0,170,3.1,6,5,32,4267,9,999999999,28,0.09,0,88,0,0,1 +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,77777,9,999999999,28,0.09,0,88,0,0,1 +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,7620,9,999999999,28,0.09,0,88,0,0,1 +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,77777,9,999999999,28,0.091,0,88,0,0,1 +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,77777,9,999999999,28,0.091,0,88,0,0,1 +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,77777,9,999999999,29,0.091,0,88,0,0,1 +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,7620,9,999999999,29,0.091,0,88,0,0,1 +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,5486,9,999999999,29,0.091,0,88,0,0,1 +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,6059,0,4420,1314,210,2.1,8,3,96,77777,9,999999999,29,0.091,0,88,0,0,1 +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,13208,5214,8640,3013,190,1.5,9,7,96,8230,9,999999999,29,0.091,0,88,0,0,1 +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,32285,11031,24623,8270,350,3.1,9,8,96,4267,9,999999999,29,0.091,0,88,0,0,1 +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,72178,44749,19525,7813,50,2.6,7,2,96,77777,9,999999999,29,0.091,0,88,0,0,1 +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,90778,48111,25574,10404,30,3.1,5,3,96,77777,9,999999999,28,0.091,0,88,0,0,1 +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,93690,42117,37210,14466,30,2.6,6,5,96,7620,9,999999999,28,0.091,0,88,0,0,1 +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,84481,30381,44005,16624,360,3.1,8,8,96,4267,9,999999999,28,0.091,0,88,0,0,1 +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,10.6,30,84000,1240,1323,423,626,363,285,75323,26915,34499,13658,10,4.6,7,7,96,4267,9,999999999,28,0.091,0,88,0,0,1 +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,48340,175,48443,17663,360,4.6,9,9,96,4267,9,999999999,28,0.091,0,88,0,0,1 +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,59669,22636,32022,12634,360,5.2,7,7,80,4267,9,999999999,28,0.091,0,88,0,0,1 +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,45709,4926,41962,14180,310,3.1,9,9,80,4267,9,999999999,28,0.091,0,88,0,0,1 +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,35215,5216,32008,10002,220,3.6,10,9,96,4267,9,999999999,28,0.091,0,88,0,0,1 +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,9465,0,9541,3766,300,6.2,10,10,80,4267,9,999999999,28,0.091,0,88,0,0,1 +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,5361,70,4928,1530,310,6.7,10,9,88,3962,9,999999999,27,0.091,0,88,0,0,1 +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,3962,9,999999999,27,0.091,0,88,0,0,1 +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,4267,9,999999999,27,0.091,0,88,0,0,1 +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,4267,9,999999999,27,0.091,0,88,0,0,1 +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,4267,9,999999999,27,0.091,0,88,0,0,1 +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,3962,9,999999999,27,0.091,0,88,0,0,1 +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,11.1,57,84000,0,0,376,0,0,0,0,0,0,0,180,2.1,9,8,32,3962,9,999999999,27,0.094,0,88,0,0,1 +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,3962,9,999999999,27,0.094,0,88,0,0,1 +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,3353,9,999999999,26,0.094,0,88,0,0,1 +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,9,9,32,3658,9,999999999,26,0.094,0,88,0,0,1 +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,3962,9,999999999,26,0.094,0,88,0,0,1 +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,3512,0,3179,1005,200,2.1,9,9,96,3962,9,999999999,26,0.094,0,88,0,0,1 +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,12.8,63,84200,399,1323,386,128,33,118,14158,1715,13108,4172,180,2.1,10,9,96,3658,9,999999999,27,0.094,0,88,0,0,1 +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,29089,5716,25341,8401,220,2.1,10,9,96,2896,9,999999999,27,0.094,0,88,0,0,1 +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,38895,8984,30860,11350,350,5.2,10,9,96,2896,9,999999999,27,0.094,0,88,0,0,1 +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,30633,0,30934,13305,10,5.7,10,10,96,4267,9,999999999,27,0.094,0,88,0,0,1 +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,58353,13398,41315,15711,320,4.1,10,9,64,4267,9,999999999,27,0.094,0,88,0,0,1 +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,82683,25425,50526,18407,10,3.6,9,9,48,4572,9,999999999,27,0.094,0,88,0,0,1 +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,67597,12482,52438,18889,320,3.1,8,6,48,7620,9,999999999,27,0.094,0,88,0,2.5,1 +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,28397,0,28689,12913,280,9.3,10,10,32,1006,9,999999999,28,0.094,0,88,0,3.6,1 +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,25132,0,25381,11525,310,9.3,10,10,9.6,1036,9,999999999,28,0.094,0,88,0,3.3,1 +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,90,84300,889,1323,382,198,0,198,20420,0,20613,9234,340,7.7,10,10,6.4,1067,9,999999999,28,0.094,0,88,0,0.8,1 +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,14780,0,14910,6390,360,7.2,10,10,12.8,1067,9,999999999,28,0.094,0,88,0,3.8,1 +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,13.9,93,84500,439,1323,372,87,0,87,8639,0,8709,3511,360,3.6,10,10,9.6,1981,9,999999999,28,0.094,0,88,0,0,1 +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,14.4,96,84500,192,1323,373,22,0,22,2136,0,2152,868,10,3.6,10,10,6.4,152,9,999999999,28,0.094,0,88,0,2.8,1 +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,14.4,96,84600,11,430,362,1,2,1,0,0,0,0,50,3.6,10,9,11.2,152,9,999999999,29,0.094,0,88,0,0,1 +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,2743,9,999999999,29,0.094,0,88,0,0.8,1 +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,29,0.094,0,88,0,0,1 +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,29,0.094,0,88,0,0,1 +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,792,9,999999999,29,0.094,0,88,0,0.3,1 +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,29,0.095,0,88,0,0,1 +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,29,0.095,0,88,0,0,1 +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,30,0.095,0,88,0,1,1 +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,30,0.095,0,88,0,0.3,1 +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,30,0.095,0,88,0,0,1 +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,2324,0,2341,883,60,2.6,10,10,9.6,427,9,999999999,29,0.095,0,88,0,0.5,1 +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,4458,0,4493,1947,60,2.6,10,10,9.6,152,9,999999999,29,0.095,0,88,0,0.3,1 +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,8696,0,8771,4011,50,3.1,10,10,12.8,183,9,999999999,29,0.095,0,88,0,0,1 +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,18550,0,18722,8409,60,2.6,10,10,19.2,488,9,999999999,28,0.095,0,88,0,0,1 +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,19773,0,19966,9415,60,2.6,10,10,9.6,305,9,999999999,28,0.095,0,88,0,0,1 +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,19131,0,19325,9266,50,2.6,10,10,4,183,9,999999999,28,0.095,0,88,0,0,1 +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,12.8,87,84600,1232,1323,371,276,0,276,29339,0,29642,13297,60,3.6,10,10,11.2,457,9,999999999,27,0.095,0,88,0,0,1 +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,29470,0,29775,13347,20,3.6,10,10,24,488,9,999999999,27,0.095,0,88,0,0,1 +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,27728,0,28010,12642,60,2.6,10,10,24,488,9,999999999,26,0.095,0,88,0,0,1 +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,66833,17097,50568,17538,60,3.6,10,7,24,853,9,999999999,26,0.095,0,88,0,0,1 +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,19419,0,19601,8853,30,2.6,10,10,24,671,9,999999999,26,0.095,0,88,0,0,1 +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,13492,0,13610,5925,50,2.6,10,10,16,853,9,999999999,25,0.095,0,88,0,0,1 +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,7353,0,7412,3076,70,2.6,10,10,24,427,9,999999999,25,0.095,0,88,0,0,1 +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,4639,0,4083,1304,90,2.1,9,9,32,1067,9,999999999,24,0.095,0,88,0,0,1 +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,12.2,83,84500,11,430,352,1,0,1,0,0,0,0,120,1.5,8,8,32,1676,9,999999999,24,0.095,0,88,0,0,1 +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,12.8,87,84600,0,0,347,0,0,0,0,0,0,0,80,2.1,7,7,32,1067,9,999999999,24,0.095,0,88,0,0,1 +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,1067,9,999999999,23,0.095,0,88,0,0,1 +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,914,9,999999999,23,0.095,0,88,0,0,1 +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,640,9,999999999,23,0.095,0,88,0,0,1 +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,3353,9,999999999,22,0.096,0,88,0,0,1 +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,914,9,999999999,22,0.096,0,88,0,0,1 +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,1006,9,999999999,21,0.096,0,88,0,0,1 +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,10,10,24,1097,9,999999999,21,0.096,0,88,0,0,1 +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,12.2,83,84300,2,188,370,0,0,0,0,0,0,0,0,0,10,10,24,1097,9,999999999,21,0.096,0,88,0,0,1 +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,12.8,87,84300,147,1324,371,25,0,25,2421,0,2438,908,360,1.5,10,10,24,1219,9,999999999,21,0.096,0,88,0,0,1 +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,6236,0,6286,2594,0,0,10,10,24,1189,9,999999999,21,0.096,0,88,0,0,1 +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,32212,5288,29095,9039,10,2.1,10,9,24,1219,9,999999999,21,0.096,0,88,0,0,1 +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,18347,0,18516,8324,10,1.5,10,10,24,1158,9,999999999,21,0.096,0,88,0,0,1 +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,23543,0,23773,10856,40,3.1,10,10,24,853,9,999999999,22,0.096,0,88,0,0,1 +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,11.1,57,84300,1161,1324,395,257,0,257,27190,0,27465,12412,50,3.1,10,10,24,1372,9,999999999,22,0.096,0,88,0,0,1 +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,29250,0,29552,13255,80,3.1,10,10,24,1036,9,999999999,22,0.096,0,88,0,0,1 +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,29360,0,29663,13305,350,4.1,10,10,24,914,9,999999999,22,0.096,0,88,0,0,1 +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,27618,0,27900,12600,310,3.1,10,10,11.2,792,9,999999999,22,0.096,0,88,0,0,1 +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,24183,0,24422,11169,300,3.1,10,10,16,2134,9,999999999,23,0.096,0,88,0,0,1 +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,24177,0,24403,10472,270,3.1,10,10,48,3658,9,999999999,23,0.096,0,88,0,0,1 +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,16742,0,16889,6994,280,3.1,10,10,24,3658,9,999999999,23,0.096,0,88,0,0,1 +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,15798,4443,12824,4269,200,2.1,9,7,24,3658,9,999999999,23,0.096,0,88,0,0,1 +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,5767,29,5006,1530,190,2.1,9,9,24,3658,9,999999999,23,0.096,0,88,0,0,1 +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,10,9,32,3658,9,999999999,24,0.096,0,88,0,0,1 +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,3658,9,999999999,24,0.096,0,88,0,0,1 +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,9,9,32,3658,9,999999999,24,0.096,0,88,0,0,1 +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,11.7,81,84200,0,0,339,0,0,0,0,0,0,0,200,2.6,5,5,32,77777,9,999999999,24,0.096,0,88,0,0,1 +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,7620,9,999999999,25,0.096,0,88,0,0,1 +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,77777,9,999999999,25,0.098,0,88,0,0,1 +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,77777,9,999999999,25,0.098,0,88,0,0,1 +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,77777,9,999999999,25,0.098,0,88,0,0,1 +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,77777,9,999999999,25,0.098,0,88,0,0,1 +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,26,0.098,0,88,0,0,1 +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,3781,0,2640,844,190,1.5,8,8,16,4267,9,999999999,25,0.098,0,88,0,0,1 +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,11.7,81,84100,390,1324,346,110,71,89,12431,3126,10093,3397,200,2.1,7,7,16,4267,9,999999999,25,0.098,0,88,0,0,1 +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,41598,14591,33815,9594,220,3.1,8,8,16,4267,9,999999999,25,0.098,0,88,0,0,1 +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,11.1,57,84100,850,1324,354,550,693,105,67426,40893,12916,5302,260,2.6,2,2,24,77777,9,999999999,25,0.098,0,88,0,0,1 +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,91667,48409,16644,6983,60,2.1,3,3,32,77777,9,999999999,25,0.098,0,88,0,0,1 +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,116024,57016,23196,9570,300,2.6,4,4,32,77777,9,999999999,25,0.098,0,88,0,0,1 +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,96171,36872,51353,18568,300,3.1,6,6,24,7620,9,999999999,25,0.098,0,88,0,0,1 +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,11.7,43,84000,1234,1324,392,1002,810,246,121744,56687,30058,12120,120,3.1,7,6,19.2,7620,9,999999999,24,0.098,0,88,0,0,1 +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,49,83900,1175,1324,380,525,108,429,60665,9681,49921,17998,150,5.7,9,8,19.2,1524,9,999999999,24,0.098,0,88,0,34.5,1 +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,17410,0,17581,8473,150,6.2,10,10,0.4,183,9,999999999,24,0.098,0,88,0,12.4,1 +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,35561,7485,27978,10689,160,3.1,9,9,64,3048,9,999999999,24,0.098,0,88,0,0,1 +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,46930,32555,16640,6258,110,3.6,5,5,80,77777,9,999999999,24,0.098,0,88,0,0,1 +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,24459,6587,21587,5730,180,2.1,8,8,80,7620,9,999999999,24,0.098,0,88,0,0,1 +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,4749,0,3016,992,290,2.6,9,9,64,7620,9,999999999,24,0.098,0,88,0,0,1 +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,2591,9,999999999,23,0.098,0,88,0,0,1 +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,77777,9,999999999,23,0.098,0,88,0,0,1 +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,77777,9,999999999,23,0.098,0,88,0,0,1 +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,11.7,81,84000,0,0,326,0,0,0,0,0,0,0,150,2.6,1,1,32,77777,9,999999999,23,0.098,0,88,0,0,1 +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,77777,9,999999999,23,0.098,0,88,0,0,1 +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,77777,9,999999999,23,0.099,0,88,0,0,1 +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,77777,9,999999999,23,0.099,0,88,0,0,1 +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,77777,9,999999999,22,0.099,0,88,0,0,1 +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,77777,9,999999999,22,0.099,0,88,0,0,1 +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,89,83900,1,143,310,0,1,0,0,0,0,0,120,1.5,3,1,80,77777,9,999999999,22,0.099,0,88,0,0,1 +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,6157,0,3367,1033,250,1,0,0,104,77777,9,999999999,22,0.099,0,88,0,0,1 +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,26078,20129,7120,2513,0,0,1,0,96,77777,9,999999999,22,0.099,0,88,0,0,1 +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,56,84000,629,1324,342,389,638,85,46656,34765,10225,3953,150,1.5,2,1,96,77777,9,999999999,22,0.099,0,88,0,0,1 +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,47,84000,848,1324,349,622,747,143,74509,48364,17201,6932,160,1.5,6,0,96,77777,9,999999999,22,0.099,0,88,0,0,1 +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,81969,43124,23674,9688,220,1.5,7,2,96,77777,9,999999999,22,0.099,0,88,0,0,1 +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,90699,39730,43240,16204,80,2.6,5,3,80,77777,9,999999999,22,0.099,0,88,0,0,1 +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,8.9,36,84000,1227,1324,393,792,593,242,96395,42362,29618,11945,50,2.6,7,7,80,9144,9,999999999,21,0.099,0,88,0,0,1 +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,43939,7801,31896,12755,80,3.1,9,9,80,9144,9,999999999,21,0.099,0,88,0,0,1 +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,8.9,36,83900,1173,1324,408,557,203,377,65042,17320,44317,16545,240,6.2,10,9,48,9144,9,999999999,21,0.099,0,88,0,0,1 +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,11.7,81,84200,1053,1324,369,232,0,232,24319,0,24558,11196,350,8.8,10,10,32,1981,9,999999999,21,0.099,0,88,0,0.5,1 +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,9.4,50,84100,881,1324,393,235,0,235,24315,0,24541,10480,50,4.1,10,10,64,3658,9,999999999,21,0.099,0,88,0,0,1 +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,27641,11004,18278,6746,130,4.6,9,8,64,4572,9,999999999,21,0.099,0,88,0,0,1 +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,51,84000,428,1324,372,203,147,155,22171,9524,17010,5119,170,3.1,9,7,96,7620,9,999999999,21,0.099,0,88,0,0,1 +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,11.1,57,84000,180,1324,376,54,22,51,5916,93,5606,1641,140,2.1,9,8,96,7620,9,999999999,21,0.099,0,88,0,0,1 +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,7620,9,999999999,21,0.099,0,88,0,0,1 +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,7620,9,999999999,21,0.099,0,88,0,0,1 +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,7620,9,999999999,20,0.099,0,88,0,0,1 +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,11.7,81,84100,0,0,334,0,0,0,0,0,0,0,190,2.1,8,3,32,77777,9,999999999,20,0.099,0,88,0,0,1 +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,77777,9,999999999,20,0.099,0,88,0,0,1 +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,77777,9,999999999,20,0.101,0,88,0,0,1 +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,3,1,32,77777,9,999999999,20,0.101,0,88,0,0,1 +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,83,84200,0,0,309,0,0,0,0,0,0,0,230,2.1,0,0,32,77777,9,999999999,20,0.101,0,88,0,0,1 +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,83,84200,0,0,315,0,0,0,0,0,0,0,210,1.5,1,1,40,77777,9,999999999,20,0.101,0,88,0,0,1 +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,86,84200,1,121,312,0,4,0,0,0,0,0,190,1.5,1,1,96,77777,9,999999999,20,0.101,0,88,0,0,1 +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,6582,0,2843,892,210,2.1,0,0,96,77777,9,999999999,20,0.101,0,88,0,0,1 +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,27640,21133,5706,2043,190,2.1,0,0,96,77777,9,999999999,19,0.101,0,88,0,0,1 +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,51,84300,627,1324,344,434,774,68,52914,39767,8311,3239,220,1.5,1,0,96,77777,9,999999999,19,0.101,0,88,0,0,1 +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,73366,47228,15409,6255,300,1,1,1,96,77777,9,999999999,19,0.101,0,88,0,0,1 +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,41,84300,1026,1324,366,759,858,95,81416,88397,13012,2851,100,2.1,1,1,96,77777,9,999999999,19,0.101,0,88,0,0,1 +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,108018,51540,17764,7428,20,3.1,2,2,88,77777,9,999999999,19,0.101,0,88,0,0,1 +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,83895,34179,31534,12622,30,4.6,5,5,96,77777,9,999999999,19,0.101,0,88,0,0,1 +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,121988,56832,24247,9959,50,4.1,4,4,96,77777,9,999999999,18,0.101,0,88,0,0,1 +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,86450,38354,32199,12818,50,4.1,5,5,96,77777,9,999999999,18,0.101,0,88,0,0,1 +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,81744,42294,23331,9583,30,3.6,5,5,96,77777,9,999999999,18,0.101,0,88,0,0,1 +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,73670,46381,18195,7361,50,3.1,4,4,96,77777,9,999999999,18,0.101,0,88,0,0,1 +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,55280,41171,9401,3694,350,2.1,1,1,96,77777,9,999999999,18,0.101,0,88,0,0,1 +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,29995,23856,6322,2297,350,3.1,1,1,96,77777,9,999999999,17,0.101,0,88,0,0,1 +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,37,84300,177,1324,368,82,389,30,9374,0,3436,1107,0,0,0,0,96,77777,9,999999999,17,0.101,0,88,0,0,1 +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,77777,9,999999999,17,0.101,0,88,0,0,1 +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,77777,9,999999999,17,0.101,0,88,0,0,1 +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,3,3,32,77777,9,999999999,17,0.101,0,88,0,0,1 +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,77777,9,999999999,17,0.101,0,88,0,0,1 +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,77777,9,999999999,16,0.101,0,88,0,0,1 +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,77777,9,999999999,16,0.102,0,88,0,0,1 +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,77777,9,999999999,16,0.102,0,88,0,0,1 +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,77777,9,999999999,16,0.102,0,88,0,0,1 +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,10.6,75,84300,0,0,319,0,0,0,0,0,0,0,190,2.1,0,0,40,77777,9,999999999,16,0.102,0,88,0,0,1 +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,77777,9,999999999,16,0.102,0,88,0,0,1 +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,65,84400,135,1325,326,50,191,30,5577,0,3355,1018,190,2.6,0,0,96,77777,9,999999999,16,0.102,0,88,0,0,1 +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,54,84400,382,1325,338,218,536,63,25289,19761,7328,2567,200,3.1,0,0,112,77777,9,999999999,16,0.102,0,88,0,0,1 +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,50402,38782,10877,4181,200,2.1,0,0,104,77777,9,999999999,16,0.102,0,88,0,0,1 +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,37,84400,844,1325,368,620,793,114,75500,48285,13932,5687,160,2.1,0,0,104,77777,9,999999999,16,0.102,0,88,0,0,1 +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,97295,53317,16301,6834,90,1.5,0,0,104,77777,9,999999999,16,0.102,0,88,0,0,1 +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,95210,89573,18488,4948,0,0,0,0,104,77777,9,999999999,16,0.102,0,88,0,0,1 +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,6.7,23,84400,1224,1325,386,968,888,147,101700,91016,18812,6912,100,5.2,0,0,104,77777,9,999999999,16,0.102,0,88,0,0,1 +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,102001,90966,18904,7150,80,3.1,0,0,104,77777,9,999999999,16,0.102,0,88,0,0,1 +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,95116,88348,18540,5294,70,4.1,1,0,104,77777,9,999999999,16,0.102,0,88,0,0,1 +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,93808,51500,20174,8374,160,3.6,1,1,104,77777,9,999999999,16,0.102,0,88,0,0,1 +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,75405,47867,14374,5898,70,4.1,1,1,96,77777,9,999999999,16,0.102,0,88,0,0,1 +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,51595,39470,11314,4397,70,3.6,1,1,96,77777,9,999999999,16,0.102,0,88,0,0,1 +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,6.1,22,84200,422,1325,392,237,524,69,27650,23022,8072,2870,100,4.1,1,1,96,77777,9,999999999,16,0.102,0,88,0,0,1 +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,7189,0,4167,1296,100,3.1,1,1,96,77777,9,999999999,16,0.102,0,88,0,0,1 +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,8.9,36,84300,6,320,376,0,4,0,0,0,0,0,120,3.6,2,2,48,77777,9,999999999,16,0.102,0,88,0,0,1 +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,77777,9,999999999,16,0.102,0,88,0,0,1 +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,77777,9,999999999,16,0.102,0,88,0,0,1 +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,77777,9,999999999,16,0.102,0,88,0,0,1 +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,77777,9,999999999,16,0.102,0,88,0,0,1 +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,77777,9,999999999,16,0.104,0,88,0,0,1 +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,58,84300,0,0,333,0,0,0,0,0,0,0,210,2.6,0,0,32,77777,9,999999999,16,0.104,0,88,0,0,1 +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,65,84300,0,0,326,0,0,0,0,0,0,0,190,2.1,0,0,32,77777,9,999999999,16,0.104,0,88,0,0,1 +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,77777,9,999999999,16,0.104,0,88,0,0,1 +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,77777,9,999999999,16,0.104,0,88,0,0,1 +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,65,84300,131,1325,326,48,174,30,5343,0,3348,1010,200,2.6,1,0,104,77777,9,999999999,16,0.104,0,88,0,0,1 +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,10,53,84300,379,1325,341,213,507,68,24539,19302,7857,2724,220,3.1,2,0,112,77777,9,999999999,16,0.104,0,88,0,0,1 +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,50020,39344,10991,4214,200,3.1,0,0,104,77777,9,999999999,16,0.104,0,88,0,0,1 +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,75219,48769,14047,5725,190,2.6,0,0,96,77777,9,999999999,16,0.104,0,88,0,0,1 +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,97027,53971,16422,6877,200,1.5,0,0,104,77777,9,999999999,16,0.104,0,88,0,0,1 +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,94522,88982,18605,4925,60,2.1,0,0,96,77777,9,999999999,16,0.104,0,88,0,0,1 +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,13,84200,1222,1325,388,967,886,149,100556,90019,19031,6898,60,3.6,0,0,104,77777,9,999999999,16,0.104,0,88,0,0,1 +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,97125,86332,18771,7047,30,4.6,1,1,104,77777,9,999999999,16,0.104,0,88,0,0,1 +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,95451,89064,18407,5233,130,1.5,1,1,104,77777,9,999999999,16,0.104,0,88,0,0,1 +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,91506,50809,19048,7925,360,4.6,2,2,104,77777,9,999999999,16,0.104,0,88,0,0,1 +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,71411,46757,23089,9053,40,3.6,3,3,112,77777,9,999999999,16,0.104,0,88,0,0,1 +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,50057,39506,15499,5831,30,4.1,2,2,112,77777,9,999999999,16,0.104,0,88,0,0,1 +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,23801,18246,12002,3989,30,2.1,5,3,112,77777,9,999999999,16,0.104,0,88,0,0,1 +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,7100,191,4784,1433,30,2.6,6,2,112,77777,9,999999999,16,0.104,0,88,0,0,1 +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,43,84000,6,298,372,0,2,0,0,0,0,0,130,2.6,3,3,64,77777,9,999999999,15,0.104,0,88,0,0,1 +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,77777,9,999999999,15,0.104,0,88,0,0,1 +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,77777,9,999999999,15,0.104,0,88,0,0,1 +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,77777,9,999999999,15,0.104,0,88,0,0,1 +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,77777,9,999999999,15,0.104,0,88,0,0,1 +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,77777,9,999999999,15,0.106,0,88,0,0,1 +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,77777,9,999999999,15,0.106,0,88,0,0,1 +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,5.6,39,84000,0,0,336,0,0,0,0,0,0,0,180,3.1,1,0,32,77777,9,999999999,15,0.106,0,88,0,0,1 +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,77777,9,999999999,15,0.106,0,88,0,0,1 +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,77777,9,999999999,15,0.106,0,88,0,0,1 +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,5146,0,3140,952,200,3.1,2,1,112,77777,9,999999999,15,0.106,0,88,0,0,1 +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,23211,18127,7643,2652,190,4.1,3,1,96,77777,9,999999999,16,0.106,0,88,0,0,1 +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,48787,38171,10435,4009,210,3.6,1,1,96,77777,9,999999999,16,0.106,0,88,0,0,1 +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,58093,35430,13254,5411,210,2.6,1,1,104,77777,9,999999999,16,0.106,0,88,0,0,1 +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,82623,87477,16344,3096,360,2.6,1,0,104,77777,9,999999999,16,0.106,0,88,0,0,1 +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,85368,38682,35475,13859,20,4.1,3,3,96,77777,9,999999999,16,0.106,0,88,0,0,1 +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,118869,59182,34492,13609,360,2.6,5,5,96,77777,9,999999999,17,0.106,0,88,0,0.8,1 +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,85700,25772,56861,19802,210,3.1,9,9,64,2743,9,999999999,17,0.106,0,88,0,0.3,1 +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,82437,22151,60867,20174,90,3.1,7,7,96,2438,9,999999999,17,0.106,0,88,0,0,1 +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,6.1,22,84000,1045,1325,411,663,422,329,76900,36047,38398,14491,120,3.1,6,6,80,7620,9,999999999,17,0.106,0,88,0,0,1 +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,25736,1408,24337,9472,50,6.2,9,9,96,2743,9,999999999,17,0.106,0,88,0,0,1 +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,27623,8769,20903,7444,190,3.6,9,8,80,2743,9,999999999,18,0.106,0,88,0,0,1 +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,18946,6946,15048,4671,200,5.2,9,7,80,2896,9,999999999,18,0.106,0,88,0,0,1 +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,4975,0,4768,1421,260,2.1,9,8,80,3048,9,999999999,18,0.106,0,88,0,0,1 +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,4267,9,999999999,18,0.106,0,88,0,0,1 +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,77777,9,999999999,18,0.106,0,88,0,0,1 +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,77777,9,999999999,19,0.106,0,88,0,0,1 +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,9.4,50,84200,0,0,347,0,0,0,0,0,0,0,190,4.1,1,1,32,77777,9,999999999,19,0.106,0,88,0,0,1 +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,56,84200,0,0,342,0,0,0,0,0,0,0,230,2.1,1,1,32,77777,9,999999999,19,0.106,0,88,0,0,1 +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,58,84200,0,0,340,0,0,0,0,0,0,0,160,2.6,1,1,32,77777,9,999999999,19,0.107,0,88,0,0,1 +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,77777,9,999999999,19,0.107,0,88,0,0,1 +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,77777,9,999999999,20,0.107,0,88,0,0,1 +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,77777,9,999999999,20,0.107,0,88,0,0,1 +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,77777,9,999999999,20,0.107,0,88,0,0,1 +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,65,84300,125,1326,326,48,199,29,5335,0,3231,969,180,2.1,3,0,96,77777,9,999999999,20,0.107,0,88,0,0,1 +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,25363,19013,6444,2274,350,2.6,0,0,96,77777,9,999999999,20,0.107,0,88,0,0,1 +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,50736,38619,9525,3680,340,3.1,0,0,96,77777,9,999999999,20,0.107,0,88,0,0,1 +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,75859,47662,12088,4956,360,2.6,0,0,96,77777,9,999999999,20,0.107,0,88,0,0,1 +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,11.7,43,84400,1018,1326,367,781,869,113,83694,89707,15356,3016,320,2.6,0,0,96,77777,9,999999999,19,0.107,0,88,0,0,1 +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,91806,88191,15825,4449,140,1.5,1,1,80,77777,9,999999999,19,0.107,0,88,0,0,1 +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,107878,49395,29775,12010,150,2.1,3,3,80,77777,9,999999999,19,0.107,0,88,0,0,1 +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,100994,91638,17022,6449,190,3.1,2,2,80,77777,9,999999999,19,0.107,0,88,0,0,1 +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,104433,49997,20583,8548,50,2.1,3,3,96,77777,9,999999999,19,0.107,0,88,0,0,1 +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,80453,40902,34819,13438,110,2.6,5,4,96,77777,9,999999999,19,0.107,0,88,0,0,1 +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,47181,23188,22818,8956,130,4.6,5,4,96,77777,9,999999999,19,0.107,0,88,0,0,1 +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,42534,23017,27624,8978,210,4.6,5,4,96,77777,9,999999999,19,0.107,0,88,0,0,1 +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,22466,16837,7937,2813,180,4.6,6,3,96,77777,9,999999999,19,0.107,0,88,0,0,1 +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,6925,0,4962,1451,180,4.1,7,2,80,77777,9,999999999,19,0.107,0,88,0,0,1 +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,77777,9,999999999,18,0.107,0,88,0,0,1 +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,77777,9,999999999,18,0.107,0,88,0,0,1 +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,77777,9,999999999,18,0.107,0,88,0,0,1 +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,77777,9,999999999,18,0.107,0,88,0,0,1 +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,77777,9,999999999,18,0.107,0,88,0,0,1 +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,77777,9,999999999,22,0.079,0,88,0,0,1 +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,11,75,83800,0,0,360,0,0,0,0,0,0,0,200,4.7,5,4,16,77777,9,999999999,23,0.079,0,88,0,0,1 +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,4,3,16,77777,9,999999999,23,0.079,0,88,0,0.3,1 +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,77777,9,999999999,24,0.079,0,88,0,0,1 +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,6096,9,999999999,24,0.079,0,88,0,0,1 +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,4267,9,999999999,25,0.079,0,88,0,0,1 +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,20025,12114,12486,3885,290,2.1,8,7,16,4267,9,999999999,25,0.079,0,88,0,0,1 +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,16.1,78,84400,612,1326,382,131,0,131,13182,0,13297,5604,300,4.1,8,8,16,4267,9,999999999,26,0.079,0,88,0,0,1 +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,24071,408,23730,9163,320,4.1,9,7,16,6706,9,999999999,27,0.079,0,88,0,0,1 +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,75756,35076,35207,13510,320,4.1,7,6,16,6706,9,999999999,27,0.079,0,88,0,0,1 +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,36,84100,1145,1326,400,828,681,238,99739,48880,28826,11637,20,4.6,7,7,16,77777,9,999999999,28,0.079,0,88,0,0,1 +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,12,39,84700,1216,1326,400,947,866,151,100593,89639,19360,6735,40,3.6,6,5,16.1,77777,9,999999999,28,0.079,0,88,0,0,1 +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,9,30,84700,1221,1326,401,932,815,179,115911,53505,22370,9235,30,3.6,5,5,16.1,77777,9,999999999,29,0.079,0,88,0,0,1 +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,10,32,84700,1161,1326,406,869,688,266,104020,51074,32024,12756,50,2.1,7,6,16.1,77777,9,999999999,29,0.079,0,88,0,0,1 +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,11,33,84700,1039,1326,424,357,95,282,41784,7391,33200,12958,70,3.6,9,8,16.1,3000,9,999999999,30,0.079,0,88,0,0.3,1 +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,11,33,84600,865,1326,424,101,0,101,10427,0,10524,5153,90,4.1,10,8,16.1,3000,9,999999999,31,0.079,0,88,0,0,1 +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,20263,823,19672,7087,310,6.7,8,8,16,1500,9,999999999,31,0.079,0,88,0,0,1 +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,15,78,84400,407,1326,376,256,510,99,28772,23239,11169,3756,340,9.3,9,8,16.1,3000,9,999999999,32,0.079,0,88,0,0,1 +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,15,73,84500,157,1326,371,70,415,21,8133,0,2443,802,290,3.6,8,6,16.1,4200,9,999999999,32,0.079,0,88,0,0,1 +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,16,88,84500,3,232,372,0,0,0,0,0,0,0,130,1.5,9,8,16.1,2100,9,999999999,33,0.079,0,88,0,0,1 +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,16,88,84400,0,0,366,0,0,0,0,0,0,0,150,3.1,9,7,16.1,6000,9,999999999,33,0.079,0,88,0,0,1 +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,16,83,84500,0,0,385,0,0,0,0,0,0,0,200,5.7,9,9,16.1,2100,9,999999999,34,0.079,0,88,0,0,1 +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,84,84300,0,0,388,0,0,0,0,0,0,0,290,2.6,10,10,16,1800,9,999999999,34,0.079,0,88,0,0,1 +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,14,73,84400,0,0,374,0,0,0,0,0,0,0,190,3.6,9,8,16.1,1500,9,999999999,33,0.079,0,88,0,0,1 +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,14,73,84300,0,0,382,0,0,0,0,0,0,0,210,5.1,9,9,16.1,2100,9,999999999,32,0.079,0,88,0,0,1 +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,3353,9,999999999,31,0.079,0,88,0,0,1 +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,87,84200,0,0,351,0,0,0,0,0,0,0,180,4.1,8,4,16,6096,9,999999999,30,0.079,0,88,0,3.6,1 +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,87,84200,0,0,353,0,0,0,0,0,0,0,140,3.1,9,5,16,6096,9,999999999,29,0.079,0,88,0,0,1 +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,77777,9,999999999,28,0.079,0,88,0,0,1 +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,77777,9,999999999,27,0.079,0,88,0,0,1 +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,15.6,76,84500,365,1326,359,238,578,79,26896,20947,8958,3023,210,1.5,2,2,16,77777,9,999999999,26,0.079,0,88,0,0,1 +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,61,84600,610,1326,367,434,782,73,52307,37743,8822,3421,220,4.1,1,1,16,77777,9,999999999,25,0.079,0,88,0,0,1 +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,56,84700,831,1326,384,632,848,99,77394,46891,12164,4991,250,3.1,3,3,16,77777,9,999999999,24,0.079,0,88,0,0,1 +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,86856,96740,11905,2635,280,2.6,3,3,16,77777,9,999999999,23,0.079,0,88,0,0,1 +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,98101,98677,11224,3458,310,4.1,4,4,16,77777,9,999999999,22,0.079,0,88,0,0,1 +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,105607,101089,11064,4398,10,3.6,5,5,16,77777,9,999999999,23,0.079,0,88,0,0,1 +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,104454,97494,13784,5389,330,5.2,7,6,16,77777,9,999999999,25,0.079,0,88,0,0,1 +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,15,40,84700,1159,1326,417,904,759,239,108728,51676,28906,11702,310,7.2,6,4,16,6706,9,999999999,26,0.079,0,88,0,0,1 +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,13280,0,13410,6667,140,7.7,9,8,8,2134,9,999999999,27,0.079,0,88,0,0,1 +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,11017,0,11120,5420,90,3.6,8,8,16,2744,9,999999999,29,0.079,0,88,0,0,1 +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,7065,0,7127,3361,170,2.6,7,7,16,3353,9,999999999,30,0.079,0,88,0,0,1 +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,9690,0,9767,3713,180,4.1,3,3,16,6096,9,999999999,31,0.079,0,88,0,0,1 +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,7512,0,4916,1422,180,7.2,4,4,16,6096,9,999999999,33,0.079,0,88,0,0,1 +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,77777,9,999999999,34,0.079,0,88,0,0,1 +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,77777,9,999999999,35,0.079,0,88,0,0,1 +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,77777,9,999999999,37,0.079,0,88,0,0,1 +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,13.3,65,84000,0,0,345,0,0,0,0,0,0,0,220,6.2,0,0,16,77777,9,999999999,38,0.079,0,88,0,0,1 +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,77777,9,999999999,37,0.079,0,88,0,0,1 +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,77777,9,999999999,36,0.08,0,88,0,0,1 +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,77777,9,999999999,35,0.08,0,88,0,0,1 +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,77777,9,999999999,34,0.08,0,88,0,0,1 +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,77777,9,999999999,34,0.08,0,88,0,0,1 +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,77777,9,999999999,33,0.08,0,88,0,0,1 +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,77777,9,999999999,32,0.08,0,88,0,0,1 +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,27772,20342,6524,2289,270,4.6,0,0,16,77777,9,999999999,31,0.08,0,88,0,0,1 +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,54044,39765,8709,3374,310,3.1,0,0,16,77777,9,999999999,30,0.08,0,88,0,0,1 +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,68833,91727,10807,1897,280,2.6,0,0,16,77777,9,999999999,29,0.08,0,88,0,0,1 +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,83566,93560,11242,2534,340,2.1,3,3,16,77777,9,999999999,28,0.08,0,88,0,0,1 +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,94489,93307,13611,3954,30,1.5,3,3,16,77777,9,999999999,27,0.08,0,88,0,0,1 +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,10.6,30,84500,1212,1327,408,947,926,99,101502,95867,13031,4992,90,2.1,3,3,16,77777,9,999999999,28,0.08,0,88,0,0,1 +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,102261,95089,14622,5588,170,3.1,3,3,16,77777,9,999999999,29,0.08,0,88,0,0,1 +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,26,84500,1157,1327,416,904,921,100,96765,95147,13304,4099,130,1.5,3,3,16,77777,9,999999999,31,0.08,0,88,0,0,1 +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,86684,95643,11044,2629,80,4.1,3,3,16,77777,9,999999999,32,0.08,0,88,0,0,1 +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,68960,86870,12876,2120,60,2.1,3,3,16,77777,9,999999999,33,0.08,0,88,0,0,1 +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,48992,79670,10124,1504,140,2.1,5,5,16,77777,9,999999999,34,0.08,0,88,0,0,1 +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,26,84300,400,1327,419,249,673,46,29770,22879,5510,1995,0,0,4,4,16,77777,9,999999999,35,0.08,0,88,0,0,1 +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,7880,0,2437,794,150,3.6,4,4,16,77777,9,999999999,36,0.08,0,88,0,0,1 +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,77777,9,999999999,37,0.08,0,88,0,0,1 +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,77777,9,999999999,38,0.08,0,88,0,0,1 +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,77777,9,999999999,39,0.08,0,88,0,0,1 +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,11.1,42,83400,0,0,385,0,0,0,0,0,0,0,210,6.7,7,4,16,77777,9,999999999,40,0.08,0,88,0,0,1 +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,6096,9,999999999,39,0.08,0,88,0,0,1 +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,77777,9,999999999,39,0.08,0,88,0,0,1 +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,77777,9,999999999,38,0.08,0,88,0,0,1 +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,77777,9,999999999,37,0.08,0,88,0,0,1 +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,77777,9,999999999,37,0.08,0,88,0,0,1 +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,51,83300,0,0,344,0,0,0,0,0,0,0,230,4.6,0,0,16,77777,9,999999999,36,0.08,0,88,0,0,1 +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,11.1,57,83600,109,1294,342,0,0,0,0,0,0,0,250,4.6,0,0,16,77777,9,999999999,36,0.08,0,88,0,0,1 +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,27624,21507,7272,2515,330,4.6,0,0,16,77777,9,999999999,35,0.08,0,88,0,0,1 +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,48123,37161,13535,5056,290,3.6,3,3,16,77777,9,999999999,34,0.08,0,88,0,0,1 +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,74178,46100,12281,5026,350,4.6,3,3,16,77777,9,999999999,34,0.08,0,88,0,0,1 +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,80424,86797,14996,2927,360,6.7,5,5,16,77777,9,999999999,33,0.08,0,88,0,0,1 +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,100874,48877,24489,10063,20,7.2,5,5,16,77777,9,999999999,33,0.08,0,88,0,0,1 +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,13.9,37,84100,1210,1327,419,941,890,128,100985,92679,16617,5907,80,4.6,6,5,16,77777,9,999999999,33,0.08,0,88,0,0,1 +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,102671,95979,14145,5388,50,3.6,6,6,16,77777,9,999999999,33,0.08,0,88,0,0,1 +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,113966,54504,19371,8081,40,4.1,7,6,16,77777,9,999999999,33,0.08,0,88,0,0,1 +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,64368,24104,38424,14472,100,3.6,9,9,16,3353,9,999999999,33,0.08,0,88,0,0,1 +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,69265,43273,23908,9292,130,1.5,9,8,16,3658,9,999999999,33,0.08,0,88,0,0,1 +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,20665,1247,19850,7086,150,3.1,9,7,16,3658,9,999999999,33,0.08,0,88,0,0,1 +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,12.8,35,84100,396,1327,432,44,0,44,4358,0,4392,1913,130,4.1,8,8,16,3658,9,999999999,33,0.08,0,88,0,0,1 +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,6551,0,4601,1331,130,2.6,6,5,16,3658,9,999999999,33,0.08,0,88,0,0,1 +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,3658,9,999999999,33,0.08,0,88,0,0,1 +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,3658,9,999999999,33,0.08,0,88,0,0,1 +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,3658,9,999999999,33,0.08,0,88,0,0,1 +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,13.3,48,83900,0,0,405,0,0,0,0,0,0,0,220,7.7,8,8,16,3353,9,999999999,33,0.08,0,88,0,0,1 +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,3048,9,999999999,33,0.08,0,88,0,0,1 +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,77777,9,999999999,32,0.08,0,88,0,0,1 +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,77777,9,999999999,32,0.08,0,88,0,0,1 +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,6096,9,999999999,31,0.08,0,88,0,0,1 +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,6096,9,999999999,31,0.08,0,88,0,0,1 +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,6096,9,999999999,30,0.08,0,88,0,0,1 +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,6096,9,999999999,30,0.08,0,88,0,0,1 +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,24179,19430,10402,3359,240,4.1,2,1,16,6096,9,999999999,29,0.08,0,88,0,0,1 +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,45898,35772,13330,4975,300,2.1,2,2,16,77777,9,999999999,29,0.08,0,88,0,0,1 +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,71959,47413,16014,6442,0,0,3,3,16,77777,9,999999999,28,0.08,0,88,0,0,1 +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,90643,50354,17860,7442,310,2.6,6,6,16,77777,9,999999999,27,0.08,0,88,0,0,1 +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,91065,87978,16219,4342,10,4.6,7,7,16,77777,9,999999999,27,0.08,0,88,0,0,1 +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,97810,89887,16595,5844,50,5.7,5,5,16,77777,9,999999999,27,0.08,0,88,0,0,1 +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,98375,88246,18755,6483,50,5.2,5,5,16,77777,9,999999999,26,0.08,0,88,0,0,1 +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,94160,90559,16050,4551,70,4.6,5,5,16,77777,9,999999999,26,0.08,0,88,0,0,1 +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,84117,91176,13511,2931,90,3.1,5,5,16,77777,9,999999999,26,0.08,0,88,0,0,1 +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,68802,89393,10606,1941,40,3.6,5,5,16,77777,9,999999999,26,0.08,0,88,0,0,1 +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,54991,42427,8453,3301,50,2.1,8,5,16,77777,9,999999999,26,0.08,0,88,0,0,1 +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,26,84700,392,1327,429,238,547,77,27275,22993,8852,3057,40,3.6,7,6,16,77777,9,999999999,25,0.08,0,88,0,0,1 +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,4821,0,3372,1043,40,3.1,8,6,16,77777,9,999999999,25,0.08,0,88,0,0,1 +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,77777,9,999999999,25,0.08,0,88,0,0,1 +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,34,84600,0,0,402,0,0,0,0,0,0,0,340,4.6,6,6,16,77777,9,999999999,25,0.08,0,88,0,0,1 +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,77777,9,999999999,25,0.08,0,88,0,0,1 +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,10,39,84100,0,0,395,0,0,0,0,0,0,0,220,4.6,8,7,16,77777,9,999999999,24,0.08,0,88,0,0,1 +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,77777,9,999999999,25,0.08,0,88,0,0,1 +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,43,84400,0,0,357,0,0,0,0,0,0,0,220,6.2,1,0,16,77777,9,999999999,26,0.08,0,88,0,0,1 +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,43,84400,0,0,363,0,0,0,0,0,0,0,220,6.7,2,1,16,77777,9,999999999,26,0.08,0,88,0,0,1 +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,44,84400,0,0,372,0,0,0,0,0,0,0,220,5.2,5,4,16,77777,9,999999999,27,0.08,0,88,0,0,1 +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,77777,9,999999999,28,0.08,0,88,0,0,1 +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,7620,9,999999999,28,0.08,0,88,0,0,1 +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,6706,9,999999999,29,0.08,0,88,0,0,1 +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,17621,8519,12641,3823,280,4.1,6,6,16,6706,9,999999999,30,0.08,0,88,0,0,1 +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,43075,32217,17992,6371,290,5.2,5,5,16,6706,9,999999999,31,0.08,0,88,0,0,1 +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,63954,40324,21694,8433,300,3.6,3,3,16,7620,9,999999999,31,0.08,0,88,0,0,1 +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,13,37,84900,1004,1328,415,733,733,177,88338,47997,21432,8829,30,3.6,6,6,16.1,7500,9,999999999,32,0.08,0,88,0,0,1 +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,95707,45996,28858,11655,50,3.6,3,3,16,7620,9,999999999,33,0.08,0,88,0,0,1 +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,108455,50319,26210,10705,140,4.6,3,3,16,77777,9,999999999,32,0.08,0,88,0,0,1 +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,112172,51709,23589,9715,150,6.2,3,3,16,77777,9,999999999,30,0.08,0,88,0,0,1 +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,106492,51646,21448,8895,130,7.7,7,6,16,7620,9,999999999,29,0.08,0,88,0,0,1 +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,89592,48427,28842,11516,230,10.3,8,7,16,4267,9,999999999,28,0.08,0,88,0,0,1 +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,56,84500,850,1328,390,207,18,196,24168,1256,22998,8976,270,8.2,9,8,16,2896,9,999999999,27,0.08,0,88,0,0,1 +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,54,84300,632,1328,393,70,0,70,7075,0,7136,3338,40,6.7,10,8,16,2400,9,999999999,26,0.08,0,88,0,0,1 +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,15,73,84600,388,1328,389,39,0,39,3853,0,3884,1708,300,2.1,10,9,16,3300,9,999999999,25,0.08,0,88,0,0,1 +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,73,84600,136,1328,388,55,155,39,6002,0,4269,1239,270,3.6,10,8,16,3353,9,999999999,24,0.08,0,88,0,0,1 +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,70,84700,1,100,380,0,0,0,0,0,0,0,320,3.1,10,6,16,3658,9,999999999,23,0.08,0,88,0,0,1 +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,75,84600,0,0,375,0,0,0,0,0,0,0,0,0,9,6,16,6096,9,999999999,22,0.08,0,88,0,0,1 +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,76,84500,0,0,364,0,0,0,0,0,0,0,240,5.7,9,5,16,6096,9,999999999,21,0.08,0,88,0,1,1 +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,13,64,84300,0,0,368,0,0,0,0,0,0,0,0,0,9,6,16,6096,9,999999999,20,0.08,0,88,0,0,1 +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,69,84400,0,0,367,0,0,0,0,0,0,0,180,4.1,9,7,16,77777,9,999999999,20,0.08,0,88,0,0,1 +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,62,84400,0,0,361,0,0,0,0,0,0,0,200,6.7,7,5,16,77777,9,999999999,21,0.08,0,88,0,0,1 +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,62,84400,0,0,358,0,0,0,0,0,0,0,200,4.1,5,4,16,77777,9,999999999,22,0.08,0,88,0,0,1 +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,12,60,84400,0,0,358,0,0,0,0,0,0,0,210,6.2,3,3,16,77777,9,999999999,22,0.08,0,88,0,0,1 +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,67,84400,0,0,336,0,0,0,0,0,0,0,180,3.6,2,1,16,77777,9,999999999,23,0.08,0,88,0,0,1 +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,77777,9,999999999,24,0.08,0,88,0,0,1 +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,11.7,59,84600,100,1229,343,0,0,0,0,0,0,0,230,2.6,0,0,16,77777,9,999999999,24,0.08,0,88,0,0,1 +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,23652,18777,9041,2993,250,4.6,0,0,16,77777,9,999999999,25,0.08,0,88,0,0,1 +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,51035,39643,10143,3876,250,2.6,2,1,16,77777,9,999999999,25,0.08,0,88,0,0,1 +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,12.8,47,84700,819,1328,384,581,727,132,69571,44736,15869,6385,260,2.6,3,3,16,77777,9,999999999,26,0.08,0,88,0,0,1 +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,95412,51714,15529,6517,0,0,3,3,16,77777,9,999999999,27,0.08,0,88,0,0,1 +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,95121,94013,14753,4043,130,5.2,3,3,16,77777,9,999999999,27,0.08,0,88,0,0,1 +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,96673,87217,18913,6200,120,5.7,3,3,16,77777,9,999999999,28,0.08,0,88,0,0,1 +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,100406,91924,17442,6043,160,4.6,3,3,16,77777,9,999999999,29,0.08,0,88,0,0,1 +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,106415,53772,27719,11237,150,5.7,4,3,16,77777,9,999999999,30,0.08,0,88,0,0,1 +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,45829,12141,32065,12536,130,8.2,4,4,16,77777,9,999999999,31,0.08,0,88,0,0,1 +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,66852,42458,25315,9683,150,6.7,5,4,16,77777,9,999999999,32,0.08,0,88,0,0,1 +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,53159,41207,9228,3585,160,4.6,5,5,16,77777,9,999999999,33,0.08,0,88,0,0,1 +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,8.3,26,84400,384,1328,408,242,698,40,26311,64277,6321,954,130,7.2,4,4,16,77777,9,999999999,34,0.08,0,88,0,0,1 +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,6121,0,2313,743,140,5.7,4,4,16,77777,9,999999999,34,0.08,0,88,0,0,1 +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,77777,9,999999999,35,0.08,0,88,0,0,1 +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,77777,9,999999999,36,0.08,0,88,0,0,1 +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,77777,9,999999999,37,0.08,0,88,0,0,1 +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,77777,9,999999999,38,0.08,0,88,0,0,1 +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,77777,9,999999999,36,0.08,0,88,0,0,1 +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,77777,9,999999999,35,0.08,0,88,0,0,1 +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,77777,9,999999999,33,0.08,0,88,0,0,1 +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,77777,9,999999999,31,0.08,0,88,0,0,1 +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,7.2,43,83700,0,0,338,0,0,0,0,0,0,0,190,4.6,0,0,16,77777,9,999999999,30,0.08,0,88,0,0,1 +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,77777,9,999999999,28,0.08,0,88,0,0,1 +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,77777,9,999999999,26,0.08,0,88,0,0,1 +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,23834,19915,8840,2926,240,5.7,3,3,16,77777,9,999999999,24,0.08,0,88,0,0,1 +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,50297,39976,10257,3908,260,4.1,3,3,16,77777,9,999999999,23,0.08,0,88,0,0,1 +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,36,84100,816,1329,383,607,849,85,65319,86579,12177,1953,290,2.1,2,2,16,77777,9,999999999,21,0.08,0,88,0,0,1 +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,33,84100,1000,1329,401,746,848,106,79770,87211,14504,2828,330,2.1,6,5,16,77777,9,999999999,19,0.08,0,88,0,0,1 +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,99668,49568,23690,9751,0,0,3,3,16,77777,9,999999999,18,0.08,0,88,0,0,1 +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,106506,50120,27689,11243,210,2.6,3,3,16,77777,9,999999999,18,0.08,0,88,0,0,1 +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,98783,89288,18779,6245,240,1.5,4,3,16,77777,9,999999999,18,0.08,0,88,0,0,1 +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,105220,52548,22948,9464,260,2.6,4,4,16,77777,9,999999999,19,0.08,0,88,0,0,1 +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,82170,87142,16343,3103,290,3.1,6,5,16,77777,9,999999999,19,0.08,0,88,0,0,1 +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,26,84000,843,1329,422,599,728,136,71986,46467,16410,6631,310,7.2,6,4,16,77777,9,999999999,19,0.08,0,88,0,0,1 +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,52446,40674,9108,3536,330,8.8,5,5,16,77777,9,999999999,20,0.08,0,88,0,0,1 +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,26520,22384,10489,3477,350,8.2,9,5,16,6706,9,999999999,20,0.08,0,88,0,0,1 +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,1163,0,1171,472,220,6.2,9,7,16,6706,9,999999999,20,0.08,0,88,0,0,1 +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,3658,9,999999999,21,0.08,0,88,0,0,1 +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,4267,9,999999999,21,0.08,0,88,0,0,1 +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,4267,9,999999999,21,0.08,0,88,0,0,1 +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,12.2,61,83900,0,0,367,0,0,0,0,0,0,0,10,11.8,7,6,16,77777,9,999999999,22,0.08,0,88,0,0,1 +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,77777,9,999999999,21,0.08,0,88,0,0,1 +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,2438,9,999999999,21,0.08,0,88,0,0,1 +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,2591,9,999999999,21,0.08,0,88,0,0,1 +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,2438,9,999999999,21,0.08,0,88,0,0,1 +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,2591,9,999999999,21,0.08,0,88,0,0,1 +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,2286,9,999999999,21,0.08,0,88,0,0,1 +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,488,9,999999999,21,0.08,0,88,0,0,1 +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,4825,0,4862,2010,40,6.7,10,10,16,396,9,999999999,21,0.08,0,88,0,0,1 +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,6943,0,7002,3217,60,6.7,10,10,12.8,396,9,999999999,21,0.08,0,88,0,0,1 +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,10059,0,10151,4908,50,6.7,10,10,11.2,305,9,999999999,21,0.08,0,88,0,0,1 +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,12514,0,12635,6274,20,5.7,10,10,16,366,9,999999999,20,0.08,0,88,0,0,1 +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,14970,0,15121,7455,10,6.2,10,10,11.2,427,9,999999999,20,0.08,0,88,0,0,1 +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,20563,0,20773,9877,330,4.6,10,10,11.2,671,9,999999999,21,0.08,0,88,0,0,1 +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,63,84500,1204,1329,379,281,6,275,33737,446,33211,13190,350,5.2,10,10,11.2,1067,9,999999999,22,0.08,0,88,0,0,1 +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,23778,404,23156,9548,340,3.1,10,10,11.2,914,9,999999999,23,0.08,0,88,0,0,1 +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,49530,9739,39784,14741,350,3.1,10,10,11.2,1372,9,999999999,25,0.08,0,88,0,0.3,1 +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,30167,1916,28603,10615,0,0,8,8,16,1676,9,999999999,26,0.08,0,88,0,0,1 +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,26195,3686,23868,7944,0,0,10,10,16,1676,9,999999999,27,0.08,0,88,0,0,1 +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,8130,0,8193,3153,210,2.6,10,10,16,1676,9,999999999,28,0.08,0,88,0,0,1 +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,581,0,585,247,220,3.6,10,10,16,1676,9,999999999,29,0.08,0,88,0,0,1 +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,6096,9,999999999,30,0.08,0,88,0,0,1 +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,1676,9,999999999,31,0.08,0,88,0,0,1 +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,77777,9,999999999,32,0.08,0,88,0,0,1 +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,33,0.08,0,88,0,0,1 +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,33,0.08,0,88,0,0,1 +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,3658,9,999999999,32,0.08,0,88,0,0,1 +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,3658,9,999999999,32,0.08,0,88,0,0,1 +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,77777,9,999999999,32,0.08,0,88,0,0,1 +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,77777,9,999999999,32,0.08,0,88,0,0,1 +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,6706,9,999999999,31,0.08,0,88,0,0,1 +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,5,5,16,6706,9,999999999,31,0.08,0,88,0,0,1 +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,3254,0,3279,1418,240,3.6,9,8,16,3048,9,999999999,31,0.08,0,88,0,0,1 +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,11.1,77,84200,587,1330,351,69,0,69,6955,0,7014,3212,280,4.6,9,8,16,3048,9,999999999,31,0.08,0,88,0,0,1 +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,16130,0,16277,7350,280,4.6,9,9,16,3048,9,999999999,31,0.08,0,88,0,0,1 +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,74657,37249,34350,13121,310,3.1,7,7,16,77777,9,999999999,30,0.08,0,88,0,0,1 +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,99467,49222,25909,10587,320,2.6,6,4,16,7620,9,999999999,30,0.08,0,88,0,0,1 +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,107254,50360,31806,12715,320,3.6,7,6,16,7620,9,999999999,29,0.08,0,88,0,0,1 +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,59713,10314,47468,17478,0,0,7,5,16,7620,9,999999999,28,0.08,0,88,0,0,1 +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,11.7,43,84400,1139,1330,383,428,72,367,49752,6023,42944,16084,230,2.6,4,3,16,7620,9,999999999,28,0.08,0,88,0,0,1 +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,86294,47120,30894,12143,110,2.6,6,6,16,6706,9,999999999,27,0.08,0,88,0,0,1 +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,52176,24870,30247,11049,110,2.1,9,7,16,4572,9,999999999,26,0.08,0,88,0,0,1 +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,6971,0,7031,3268,20,10.8,10,10,16,18410,9,999999999,25,0.08,0,88,0,0.5,1 +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,10,53,84300,371,1330,375,38,0,38,3762,0,3792,1649,250,10.8,9,8,8,18349,9,999999999,25,0.08,0,88,0,0,1 +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,2968,0,2287,725,0,0,10,9,16,18288,9,999999999,24,0.08,0,88,0,0,1 +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,87,84200,0,0,374,0,0,0,0,0,0,0,160,2.6,9,9,16,3048,9,999999999,23,0.08,0,88,0,0,1 +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,3048,9,999999999,22,0.08,0,88,0,0,1 +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,77777,9,999999999,22,0.08,0,88,0,1.8,1 +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,7620,9,999999999,21,0.08,0,88,0,0,1 +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,77777,9,999999999,21,0.08,0,88,0,0,1 +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,12.2,83,83900,0,0,321,0,0,0,0,0,0,0,210,4.6,0,0,16,77777,9,999999999,21,0.08,0,88,0,0,1 +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,77777,9,999999999,22,0.08,0,88,0,0,1 +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,77777,9,999999999,22,0.08,0,88,0,0,1 +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,77777,9,999999999,23,0.08,0,88,0,0,1 +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,23,0.08,0,88,0,0,1 +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,23,0.08,0,88,0,0,1 +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,14.4,96,84100,336,1330,355,115,40,105,12593,1732,11546,3523,280,3.1,8,8,0.4,30,9,999999999,24,0.08,0,88,0,0,1 +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,44020,33959,17392,6142,260,3.1,6,6,4.8,77777,9,999999999,24,0.08,0,88,0,0,1 +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,71523,46401,14721,5936,260,5.7,5,5,14.4,77777,9,999999999,24,0.08,0,88,0,0,1 +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,82059,91628,13378,2685,270,3.1,3,3,16,77777,9,999999999,25,0.08,0,88,0,0,1 +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,11.1,42,84500,1124,1330,382,865,904,99,92878,93550,13278,3664,120,2.1,3,3,16,77777,9,999999999,25,0.08,0,88,0,0,1 +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,35,84500,1194,1330,396,929,920,101,99389,95091,13331,4676,140,3.6,5,5,16,77777,9,999999999,25,0.08,0,88,0,0,1 +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,113648,54285,21385,8850,130,3.6,5,4,16,77777,9,999999999,26,0.08,0,88,0,0,1 +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,108350,55470,20298,8431,110,5.2,6,5,16,7620,9,999999999,26,0.08,0,88,0,0,1 +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,77457,41029,31937,12437,120,4.1,8,7,16,7620,9,999999999,27,0.08,0,88,0,0,1 +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,66758,44833,19855,7827,40,2.1,7,6,16,7620,9,999999999,27,0.08,0,88,0,0,1 +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,43604,33660,15753,5775,310,7.7,9,8,16,3658,9,999999999,27,0.08,0,88,0,0,1 +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,20366,14871,10050,3314,360,2.1,5,5,16,7620,9,999999999,28,0.08,0,88,0,0,1 +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,4888,0,2391,747,290,3.6,3,3,16,77777,9,999999999,28,0.08,0,88,0,0,1 +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,77777,9,999999999,28,0.08,0,88,0,0,1 +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,77777,9,999999999,29,0.08,0,88,0,0,1 +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,51,84200,0,0,359,0,0,0,0,0,0,0,210,5.2,3,3,16,77777,9,999999999,29,0.08,0,88,0,0,1 +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,77777,9,999999999,29,0.08,0,88,0,0,1 +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,77777,9,999999999,29,0.08,0,88,0,0,1 +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,77777,9,999999999,28,0.08,0,88,0,0,1 +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,77777,9,999999999,28,0.08,0,88,0,0,1 +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,77777,9,999999999,27,0.08,0,88,0,0,1 +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,77777,9,999999999,26,0.08,0,88,0,0,1 +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,77777,9,999999999,26,0.08,0,88,0,0,1 +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,77777,9,999999999,25,0.08,0,88,0,0,1 +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,24105,20582,9113,2955,290,3.6,1,1,16,77777,9,999999999,24,0.08,0,88,0,0,1 +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,44,84400,581,1330,366,397,711,86,47116,37984,10238,3878,300,4.1,2,2,16,77777,9,999999999,24,0.08,0,88,0,0,1 +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,43,84500,806,1330,363,582,776,111,70563,46919,13506,5460,320,2.6,1,1,16,77777,9,999999999,23,0.08,0,88,0,0,1 +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,10.6,40,84600,990,1330,373,727,788,140,89095,49692,17228,7180,350,2.1,1,1,16,77777,9,999999999,22,0.08,0,88,0,0,1 +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,90769,88300,17036,4191,10,5.2,3,3,16,77777,9,999999999,22,0.08,0,88,0,0,1 +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,99937,94603,14951,5025,50,5.7,3,3,16,77777,9,999999999,22,0.08,0,88,0,0,1 +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,98070,90778,17010,5577,10,4.6,3,3,16,77777,9,999999999,22,0.08,0,88,0,0,1 +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,7.2,24,84800,1133,1330,409,880,909,104,93558,93360,13863,3883,20,7.2,5,5,16,77777,9,999999999,23,0.08,0,88,0,0,1 +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,8.3,26,84700,1008,1330,405,753,810,138,92745,51841,17066,7128,80,2.6,3,3,16,77777,9,999999999,23,0.08,0,88,0,0,1 +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,6.1,22,84800,829,1330,402,592,710,149,70601,48057,17844,7111,60,4.1,3,3,16,77777,9,999999999,23,0.08,0,88,0,0,1 +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,6.1,22,84000,608,1330,408,362,420,170,41034,30132,19360,6778,20,4.1,5,5,16,77777,9,999999999,24,0.08,0,88,0,0,1 +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,25292,20127,5685,2012,30,4.6,5,4,16,77777,9,999999999,24,0.08,0,88,0,0,1 +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,4528,0,1744,560,70,5.7,5,5,16,77777,9,999999999,25,0.08,0,88,0,0,1 +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,77777,9,999999999,25,0.08,0,88,0,0,1 +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,66,84600,0,0,373,0,0,0,0,0,0,0,80,8.2,5,4,16,77777,9,999999999,25,0.08,0,88,0,0,1 +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,15,73,84500,0,0,371,0,0,0,0,0,0,0,80,6.2,6,6,16,77777,9,999999999,26,0.08,0,88,0,0,1 +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,78,84300,0,0,394,0,0,0,0,0,0,0,70,5.2,10,10,16,2896,9,999999999,26,0.08,0,88,0,0,1 +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,3048,9,999999999,25,0.08,0,88,0,0,1 +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,3048,9,999999999,25,0.08,0,88,0,0,1 +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,5,5,16,77777,9,999999999,24,0.08,0,88,0,0,1 +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,77777,9,999999999,23,0.08,0,88,0,0,1 +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,23,0.08,0,88,0,0,1 +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,13.3,90,84300,0,0,336,0,0,0,0,0,0,0,290,2.1,4,3,9.6,6706,9,999999999,22,0.08,0,88,0,0,1 +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,21,0.08,0,88,0,0,1 +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,23370,18656,12825,3709,290,1.5,3,3,11.2,6600,9,999999999,21,0.08,0,88,0,0,1 +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,28558,9928,22031,7225,90,2.1,3,3,11.2,6706,9,999999999,20,0.08,0,88,0,0,1 +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,67402,44054,19867,7764,100,3.1,1,1,16,77777,9,999999999,19,0.08,0,88,0,0,1 +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,87937,47150,17638,7353,100,3.6,4,3,16,77777,9,999999999,19,0.08,0,88,0,0,1 +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,103199,48156,18994,7958,110,7.2,4,4,16,77777,9,999999999,18,0.08,0,88,0,0,1 +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,101205,45647,37715,14667,90,5.2,4,4,16,6706,9,999999999,19,0.08,0,88,0,0,1 +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,8,38,84500,1193,1331,388,513,108,416,59609,9616,48673,17737,250,4.1,9,8,8,2400,9,999999999,19,0.08,0,88,0,0,1 +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,92255,40953,39158,15029,10,6.7,9,8,16,2438,9,999999999,20,0.08,0,88,0,0,1 +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,15.7,56,84500,1004,1331,402,121,0,121,12592,0,12715,6334,100,4.6,8,7,16,7315,9,999999999,21,0.08,0,88,0,0,1 +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,13.3,48,84500,825,1331,394,452,319,254,51463,24824,29083,10675,240,7.7,9,6,16,6706,9,999999999,22,0.08,0,88,0,0,1 +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,10,44,84500,604,1331,399,64,0,64,6466,0,6521,3034,250,8.2,9,9,16.1,2700,9,999999999,23,0.08,0,88,0,0.3,1 +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,3754,0,3784,1632,10,2.1,10,8,16,6096,9,999999999,23,0.08,0,88,0,0,1 +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,4124,0,2681,808,210,5.2,9,7,16,6096,9,999999999,24,0.08,0,88,0,0,1 +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,13.9,68,84300,0,0,379,0,0,0,0,0,0,0,220,6.7,9,8,16,3658,9,999999999,25,0.08,0,88,0,0,1 +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,13.3,65,84300,0,0,379,0,0,0,0,0,0,0,200,4.1,9,8,16,3658,9,999999999,26,0.08,0,88,0,0,1 +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,6096,9,999999999,27,0.08,0,88,0,0,1 +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,6096,9,999999999,27,0.08,0,88,0,0,1 +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,3353,9,999999999,28,0.08,0,88,0,0,1 +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,3353,9,999999999,29,0.079,0,88,0,0,1 +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,77777,9,999999999,29,0.079,0,88,0,0,1 +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,6096,9,999999999,30,0.079,0,88,0,6.8,1 +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,3048,9,999999999,30,0.079,0,88,0,0,1 +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,4572,9,999999999,31,0.079,0,88,0,0,1 +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,4267,9,999999999,31,0.079,0,88,0,0,1 +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,22904,18122,11004,3361,280,3.6,9,7,11.2,3658,9,999999999,32,0.079,0,88,0,0,1 +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,76,84000,576,1331,378,251,119,200,27718,8567,22202,7240,300,3.6,9,8,11.2,3658,9,999999999,32,0.079,0,88,0,0,1 +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,55458,30039,29877,10697,340,4.6,9,7,16,4267,9,999999999,33,0.079,0,88,0,0,1 +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,35412,4147,30811,12012,350,3.6,9,8,16,4267,9,999999999,34,0.079,0,88,0,0,1 +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,93891,44877,38429,14749,350,4.6,9,7,16,6706,9,999999999,34,0.079,0,88,0,0,1 +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,51668,5959,44502,16649,30,6.7,9,9,16,3962,9,999999999,34,0.079,0,88,0,0,1 +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,36182,895,35205,13857,340,5.7,10,10,16,3048,9,999999999,33,0.079,0,88,0,0,1 +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,44,84000,1127,1331,398,487,102,400,56176,9018,46455,16947,320,6.7,9,9,16,2438,9,999999999,32,0.079,0,88,0,0,1 +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,43,84000,1001,1331,392,327,24,309,37787,1978,35924,13598,290,2.6,9,8,16,3353,9,999999999,32,0.079,0,88,0,0,1 +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,10.6,40,84000,821,1331,395,100,0,100,10287,0,10381,5016,310,6.7,9,7,16,6096,9,999999999,31,0.079,0,88,0,0,1 +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,66,83500,599,1331,409,249,117,197,27693,8330,22023,7401,250,6.7,10,10,16,6096,9,999999999,30,0.079,0,88,0,0,1 +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,23874,18764,9153,3040,230,7.2,7,6,16,6096,9,999999999,30,0.079,0,88,0,0,1 +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,12.8,63,83900,99,1209,386,23,51,20,2591,0,2258,695,300,10.3,9,9,16,2438,9,999999999,29,0.079,0,88,0,0,1 +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,2134,9,999999999,29,0.079,0,88,0,0,1 +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,3353,9,999999999,28,0.079,0,88,0,0,1 +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,3353,9,999999999,27,0.079,0,88,0,0,1 +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,2896,9,999999999,27,0.079,0,88,0,0,1 +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,2591,9,999999999,27,0.079,0,88,0,0,1 +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,3353,9,999999999,27,0.079,0,88,0,0,1 +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,77777,9,999999999,27,0.079,0,88,0,0,1 +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,6096,9,999999999,27,0.079,0,88,0,0,1 +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,6096,9,999999999,27,0.079,0,88,0,0,1 +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,6096,9,999999999,27,0.079,0,88,0,0,1 +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,6706,9,999999999,27,0.079,0,88,0,0,1 +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,58,84000,323,1332,350,134,121,105,14651,5499,11528,3437,270,4.1,4,4,16,6706,9,999999999,27,0.079,0,88,0,0,1 +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,8.9,49,84200,572,1332,354,384,587,131,44030,36763,15082,5419,300,4.6,3,3,16,6706,9,999999999,27,0.079,0,88,0,0,1 +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,64155,43698,18714,7330,340,6.2,3,3,16,6096,9,999999999,27,0.079,0,88,0,0,1 +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,64428,26478,39039,14303,360,7.2,6,6,16,6706,9,999999999,27,0.079,0,88,0,0,1 +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,79159,33251,41123,15485,30,5.7,5,5,16,6096,9,999999999,27,0.079,0,88,0,0,1 +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,107922,53449,29685,11942,40,5.2,8,6,16,6096,9,999999999,26,0.079,0,88,0,0,1 +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,6,30,84300,1188,1332,404,656,300,388,76642,26256,45636,16917,60,2.6,9,9,16.1,3000,9,999999999,25,0.079,0,88,0,0,1 +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,23015,398,22511,9308,270,8.8,9,8,16,2438,9,999999999,24,0.079,0,88,0,0,1 +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,13154,0,13280,6555,360,5.7,7,6,16,6096,9,999999999,23,0.079,0,88,0,0,1 +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,10.6,55,84300,817,1332,362,463,307,274,52407,25362,31194,11150,70,5.7,7,5,16,6706,9,999999999,22,0.079,0,88,0,0,1 +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,10,53,84300,595,1332,383,154,6,151,17542,397,17276,6156,90,3.6,9,9,16,6706,9,999999999,21,0.079,0,88,0,0,1 +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,54,84300,346,1332,358,127,117,97,14099,5231,10810,3425,170,3.6,5,5,16,6706,9,999999999,19,0.079,0,88,0,0,1 +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,9.4,50,84300,94,1188,361,30,173,18,3402,0,2045,632,210,3.6,6,5,16,6706,9,999999999,18,0.079,0,88,0,0,1 +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,58,84200,0,0,350,0,0,0,0,0,0,0,220,3.1,5,4,16,3658,9,999999999,17,0.079,0,88,0,0,1 +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,6706,9,999999999,16,0.079,0,88,0,0,1 +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,65,84100,0,0,366,0,0,0,0,0,0,0,270,3.6,9,9,16,7620,9,999999999,15,0.079,0,88,0,0,1 +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,6096,9,999999999,14,0.079,0,88,0,0,1 +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,6096,9,999999999,14,0.079,0,88,0,0,1 +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,3048,9,999999999,14,0.079,0,88,0,0,1 +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,6096,9,999999999,14,0.079,0,88,0,0,1 +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,10,72,84000,0,0,318,0,0,0,0,0,0,0,200,4.1,1,0,16,77777,9,999999999,13,0.079,0,88,0,0.8,1 +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,80,84000,0,0,317,0,0,0,0,0,0,0,120,2.1,1,1,16,6096,9,999999999,13,0.079,0,88,0,0,1 +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,83,83900,0,0,327,0,0,0,0,0,0,0,100,2.6,5,5,16,6096,9,999999999,13,0.079,0,88,0,0,1 +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,83,84000,73,1033,330,0,0,0,0,0,0,0,190,2.6,6,6,16,77777,9,999999999,13,0.079,0,88,0,0,1 +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,22031,16668,7404,2467,130,2.1,7,6,16,77777,9,999999999,13,0.079,0,88,0,0,1 +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,47161,38942,10434,3923,0,0,5,5,16,77777,9,999999999,12,0.079,0,88,0,0,1 +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,51,84500,795,1332,359,563,666,165,66083,45372,19454,7578,290,2.1,4,3,16,77777,9,999999999,12,0.079,0,88,0,0,1 +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,47708,8878,39283,14358,330,4.6,5,4,16,77777,9,999999999,12,0.079,0,88,0,0,1 +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,54920,9489,44719,16450,0,0,4,4,16,6706,9,999999999,12,0.079,0,88,0,0,1 +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,41,84500,1182,1332,378,862,637,295,102595,48865,35323,13867,30,2.1,4,4,16,6706,9,999999999,11,0.079,0,88,0,0,1 +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,113196,53912,19933,8287,10,1.5,5,5,16,6706,9,999999999,11,0.079,0,88,0,0,1 +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,103973,52795,20915,8685,360,2.1,7,6,16,6706,9,999999999,11,0.079,0,88,0,0,1 +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,10,39,84400,994,1332,390,683,577,251,80131,43865,29612,11650,340,1.5,8,6,16,6706,9,999999999,10,0.079,0,88,0,0,1 +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,36141,8585,28889,10520,330,10.3,9,8,16,3300,9,999999999,10,0.079,0,88,0,0,1 +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,40265,30602,18344,6417,20,10.3,7,7,16,6096,9,999999999,9,0.079,0,88,0,0,1 +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,21151,16341,6837,2350,70,3.1,3,3,16,77777,9,999999999,9,0.079,0,88,0,0,1 +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,3063,17155,1847,289,50,2.1,4,4,16,77777,9,999999999,8,0.079,0,88,0,0,1 +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,77777,9,999999999,8,0.079,0,88,0,0,1 +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,6706,9,999999999,7,0.079,0,88,0,0,1 +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,2134,9,999999999,7,0.079,0,88,0,0.3,1 +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,77777,9,999999999,6,0.079,0,88,0,0,1 +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,10.6,75,84200,0,0,319,0,0,0,0,0,0,0,230,4.6,0,0,16,77777,9,999999999,7,0.079,0,88,0,0,1 +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,10,72,84100,0,0,318,0,0,0,0,0,0,0,220,6.2,0,0,16,77777,9,999999999,8,0.079,0,88,0,0,1 +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,8.9,67,84000,0,0,317,0,0,0,0,0,0,0,210,7.2,0,0,16,77777,9,999999999,8,0.079,0,88,0,0,1 +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,8.3,64,84000,0,0,317,0,0,0,0,0,0,0,220,5.2,0,0,16,77777,9,999999999,9,0.079,0,88,0,0,1 +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,77777,9,999999999,9,0.079,0,88,0,0,1 +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,16,77777,9,999999999,10,0.079,0,88,0,0,1 +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,77777,9,999999999,11,0.079,0,88,0,0,1 +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,9.4,69,84200,316,1333,331,187,500,68,21149,16152,7714,2542,260,3.1,3,3,16,77777,9,999999999,11,0.079,0,88,0,0,1 +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,47355,39359,9880,3724,280,3.1,3,3,16,77777,9,999999999,12,0.079,0,88,0,0,1 +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,63081,85978,12083,1882,350,4.1,3,3,16,77777,9,999999999,12,0.079,0,88,0,0,1 +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,78117,89105,12867,2556,10,2.1,3,3,16,77777,9,999999999,13,0.079,0,88,0,0,1 +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,4.4,26,84100,1109,1333,379,829,832,134,103889,53750,16860,7063,30,4.1,5,5,16,77777,9,999999999,14,0.079,0,88,0,0,1 +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,109339,54015,21345,8830,20,5.2,5,5,16,77777,9,999999999,14,0.079,0,88,0,0,1 +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,97361,91400,17047,5223,20,5.2,3,3,16,77777,9,999999999,13,0.079,0,88,0,0,1 +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,93468,96570,11625,3275,10,6.2,3,3,16,77777,9,999999999,13,0.079,0,88,0,0,1 +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,23,84700,990,1333,391,763,911,85,81337,93015,11786,2507,310,5.2,3,3,16,77777,9,999999999,13,0.079,0,88,0,0,1 +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,72453,50089,12073,4900,40,5.7,3,3,16,77777,9,999999999,13,0.079,0,88,0,0,1 +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,47563,41240,11276,4238,10,6.2,5,5,16,77777,9,999999999,13,0.079,0,88,0,0,1 +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,19524,15524,8426,2791,30,4.1,3,3,16,77777,9,999999999,12,0.079,0,88,0,0,1 +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,3090,0,1719,533,50,2.6,3,3,16,77777,9,999999999,12,0.079,0,88,0,0,1 +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,3,3,16,77777,9,999999999,12,0.079,0,88,0,0,1 +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,2.2,31,84400,0,0,346,0,0,0,0,0,0,0,150,1.5,3,3,16,77777,9,999999999,12,0.079,0,88,0,0,1 +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,77777,9,999999999,11,0.079,0,88,0,0,1 +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,77777,9,999999999,11,0.079,0,88,0,0,1 +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,41,84200,0,0,328,0,0,0,0,0,0,0,210,5.7,0,0,16,77777,9,999999999,12,0.079,0,88,0,0,1 +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,43,84200,0,0,325,0,0,0,0,0,0,0,210,5.7,0,0,16,77777,9,999999999,12,0.078,0,88,0,0,1 +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,77777,9,999999999,12,0.078,0,88,0,0,1 +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,77777,9,999999999,13,0.078,0,88,0,0,1 +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,77777,9,999999999,13,0.078,0,88,0,0,1 +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,5,51,84000,0,0,313,0,0,0,0,0,0,0,220,2.6,0,0,16,77777,9,999999999,13,0.078,0,88,0,0,1 +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,77777,9,999999999,13,0.078,0,88,0,0,1 +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,22405,18030,6878,2299,230,5.2,0,0,16,77777,9,999999999,14,0.078,0,88,0,0,1 +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,35,84400,563,1333,340,393,719,88,46477,40082,10439,3906,250,5.7,0,0,16,77777,9,999999999,14,0.078,0,88,0,0,1 +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,29,84500,789,1333,354,564,764,111,68325,48083,13494,5415,260,4.1,0,0,16,77777,9,999999999,14,0.078,0,88,0,0,1 +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,25,84600,974,1333,383,690,709,171,83288,49399,20734,8482,230,2.6,3,3,16,77777,9,999999999,15,0.078,0,88,0,0,1 +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,-1.1,13,83900,1106,1333,392,779,712,187,95353,51190,22999,9457,330,3.6,3,3,16,77777,9,999999999,15,0.078,0,88,0,0,1 +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.6,14,84600,1176,1333,392,831,685,226,101231,51128,27676,11198,320,2.6,3,3,16,77777,9,999999999,16,0.078,0,88,0,0,1 +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,101651,51269,30628,12245,300,3.1,3,3,16,77777,9,999999999,16,0.078,0,88,0,0,1 +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,96608,51696,26317,10688,290,3.6,3,3,16,77777,9,999999999,16,0.078,0,88,0,0,1 +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,13,84500,986,1333,405,700,696,183,84361,50575,22157,9022,230,2.1,3,3,16,77777,9,999999999,17,0.078,0,88,0,0,1 +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,66558,47473,16585,6584,170,2.1,3,3,16,77777,9,999999999,17,0.078,0,88,0,0,1 +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,13,83500,581,1333,398,385,709,76,46314,39578,9167,3488,110,3.6,2,2,16,77777,9,999999999,18,0.078,0,88,0,0,1 +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,22113,17984,6183,2130,130,2.1,5,5,16,77777,9,999999999,18,0.078,0,88,0,0,1 +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,2803,0,1286,406,160,4.1,6,6,16,77777,9,999999999,19,0.078,0,88,0,0,1 +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,7620,9,999999999,19,0.078,0,88,0,0,1 +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,77777,9,999999999,20,0.078,0,88,0,0,1 +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,77777,9,999999999,20,0.078,0,88,0,0,1 +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,77777,9,999999999,21,0.078,0,88,0,0,1 +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,77777,9,999999999,20,0.078,0,88,0,0,1 +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,77777,9,999999999,20,0.078,0,88,0,0,1 +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,2.8,32,83700,0,0,333,0,0,0,0,0,0,0,230,5.7,0,0,16,77777,9,999999999,19,0.078,0,88,0,0,1 +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,77777,9,999999999,19,0.078,0,88,0,0,1 +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,2.8,32,83600,0,0,333,0,0,0,0,0,0,0,220,6.7,0,0,16,77777,9,999999999,19,0.078,0,88,0,0,1 +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,77777,9,999999999,18,0.078,0,88,0,0,1 +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,1219,10628,697,139,220,6.7,0,0,16,77777,9,999999999,18,0.078,0,88,0,0,1 +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,22453,18809,7086,2349,220,7.2,0,0,16,77777,9,999999999,17,0.078,0,88,0,0,1 +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,43260,37839,12721,4647,220,6.2,0,0,16,77777,9,999999999,17,0.078,0,88,0,0,1 +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,2.8,18,84200,786,1334,381,564,765,113,68247,49014,13722,5492,220,4.1,0,0,16,77777,9,999999999,16,0.078,0,88,0,0,1 +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,86820,52790,17582,7268,230,3.1,3,3,16,77777,9,999999999,16,0.078,0,88,0,0,1 +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,90181,91834,14558,3635,0,0,4,4,16,77777,9,999999999,16,0.078,0,88,0,0,1 +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,95127,88930,18516,5257,40,2.6,4,4,16,77777,9,999999999,15,0.078,0,88,0,0,1 +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,93736,45270,36666,14238,90,2.6,8,6,16,7620,9,999999999,15,0.078,0,88,0,0,1 +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,87747,44302,36781,14168,130,4.1,10,7,16,7620,9,999999999,15,0.078,0,88,0,0,1 +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,28545,1405,27146,10763,70,3.6,9,7,16,3962,9,999999999,15,0.078,0,88,0,0,1 +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,34028,4556,30570,10838,30,7.7,10,9,16,2286,9,999999999,15,0.078,0,88,0,0,1 +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,23527,3162,21627,7114,70,8.2,10,10,16,2438,9,999999999,15,0.078,0,88,0,0,1 +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,11264,2393,9850,3112,80,5.7,9,7,16,3962,9,999999999,15,0.078,0,88,0,0,1 +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,2493,0,1703,518,140,5.7,9,7,16,3962,9,999999999,15,0.078,0,88,0,0,1 +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,3962,9,999999999,14,0.078,0,88,0,0,1 +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,6096,9,999999999,14,0.078,0,88,0,0,1 +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,6096,9,999999999,14,0.078,0,88,0,0,1 +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,35,83700,0,0,364,0,0,0,0,0,0,0,260,2.1,9,6,16,6096,9,999999999,14,0.078,0,88,0,0,1 +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,6096,9,999999999,14,0.078,0,88,0,0,1 +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,40,83700,0,0,347,0,0,0,0,0,0,0,170,2.1,9,4,16,6096,9,999999999,15,0.077,0,88,0,0,1 +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,6096,9,999999999,15,0.077,0,88,0,0,1 +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,6096,9,999999999,15,0.077,0,88,0,0,1 +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,6096,9,999999999,16,0.077,0,88,0,0,1 +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,3.3,33,83400,0,0,351,0,0,0,0,0,0,0,210,7.2,6,4,16,3962,9,999999999,16,0.077,0,88,0,0,1 +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,3.3,33,83700,62,967,348,10,153,5,1100,8203,861,160,200,5.7,6,3,16,7620,9,999999999,17,0.077,0,88,0,0,1 +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,21991,19692,9872,3016,220,7.2,6,5,16,6706,9,999999999,17,0.077,0,88,0,0,1 +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,36980,27804,19252,6433,220,7.2,6,5,16,6706,9,999999999,17,0.077,0,88,0,0,1 +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,57058,38400,22607,8528,230,6.2,7,6,16,6706,9,999999999,18,0.077,0,88,0,0,1 +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,3.3,18,84100,969,1334,412,640,503,274,74462,41484,32061,12271,210,7.2,8,7,16,6096,9,999999999,18,0.077,0,88,0,0,1 +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,4.4,20,83400,1101,1334,414,359,84,289,42406,6775,34338,13417,220,6.7,9,7,16,6096,9,999999999,18,0.077,0,88,0,0,1 +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,89401,40089,40421,15394,240,2.1,8,5,16,6096,9,999999999,19,0.077,0,88,0,0,1 +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,98627,48198,36026,14051,260,2.1,8,5,16,6096,9,999999999,20,0.077,0,88,0,0,1 +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,5,24,83800,1107,1334,405,316,30,291,37337,2414,34586,13508,280,20.6,9,8,2.8,2400,9,999999999,21,0.077,0,88,0,0,1 +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,20992,0,21191,9717,10,5.7,8,7,16,6096,9,999999999,22,0.077,0,88,0,0,1 +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,15425,0,15564,7023,10,6.2,7,6,16,6096,9,999999999,22,0.077,0,88,0,0,1 +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,38377,25731,23124,7382,240,3.1,9,7,16,6096,9,999999999,23,0.077,0,88,0,0,1 +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,40,83800,320,1334,384,73,0,73,7196,0,7251,2707,250,5.2,7,5,16,6096,9,999999999,24,0.077,0,88,0,0,1 +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,8,36,83800,71,1034,387,17,75,13,1936,0,1482,456,260,7.7,9,7,16,3600,9,999999999,25,0.077,0,88,0,0,1 +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,3658,9,999999999,26,0.077,0,88,0,0,1 +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,3353,9,999999999,27,0.077,0,88,0,0,1 +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,6096,9,999999999,27,0.077,0,88,0,0,1 +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,6096,9,999999999,28,0.077,0,88,0,0,1 +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,6096,9,999999999,27,0.077,0,88,0,0,1 +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,6096,9,999999999,27,0.077,0,88,0,0,1 +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,6096,9,999999999,26,0.077,0,88,0,0,1 +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,77777,9,999999999,25,0.077,0,88,0,0,1 +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,6096,9,999999999,24,0.077,0,88,0,0,1 +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,6706,9,999999999,23,0.077,0,88,0,0,1 +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,889,7192,695,136,210,4.1,6,4,16,6096,9,999999999,23,0.077,0,88,0,0,1 +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,19461,15289,8416,2676,230,5.7,6,5,16,6096,9,999999999,22,0.077,0,88,0,0,1 +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,42144,36142,13755,4953,250,3.6,4,4,16,6096,9,999999999,21,0.077,0,88,0,0,1 +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,61639,42520,18868,7327,330,3.1,5,5,16,6096,9,999999999,20,0.077,0,88,0,0,1 +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,80367,47368,22591,9148,330,2.1,6,6,16,6706,9,999999999,19,0.077,0,88,0,0,1 +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,78561,34581,39411,14949,320,3.1,8,8,16,6706,9,999999999,18,0.077,0,88,0,0,1 +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,106411,53386,24518,10050,260,3.1,9,9,16,6706,9,999999999,18,0.077,0,88,0,0,1 +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,109926,54288,20259,8411,290,3.1,5,5,16,77777,9,999999999,18,0.077,0,88,0,0,1 +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,5.6,21,83900,1103,1335,407,814,747,195,99087,52603,23854,9795,330,2.1,5,5,16,77777,9,999999999,17,0.077,0,88,0,0,1 +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,20,83900,974,1335,434,676,649,202,80578,47550,24197,9739,360,2.1,9,9,16,6706,9,999999999,17,0.077,0,88,0,0,1 +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,66995,46896,14174,5679,30,5.2,9,9,16,6706,9,999999999,17,0.077,0,88,0,0,1 +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,43280,37121,15405,5492,360,5.2,9,9,16,3353,9,999999999,16,0.077,0,88,0,0,1 +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,4044,0,4074,1688,10,6.7,9,9,16,3658,9,999999999,16,0.077,0,88,0,0,1 +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,1388,0,1158,362,10,3.6,9,9,16,6706,9,999999999,15,0.077,0,88,0,0,1 +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,4267,9,999999999,15,0.077,0,88,0,0,1 +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,6706,9,999999999,15,0.077,0,88,0,0,1 +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,6706,9,999999999,14,0.077,0,88,0,0,1 +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,6096,9,999999999,14,0.077,0,88,0,0,1 +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,6096,9,999999999,14,0.077,0,88,0,0,1 +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,7.8,45,83600,0,0,359,0,0,0,0,0,0,0,220,6.7,5,5,16,77777,9,999999999,15,0.076,0,88,0,0,1 +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,7.2,43,83600,0,0,352,0,0,0,0,0,0,0,230,5.2,3,3,16,77777,9,999999999,15,0.076,0,88,0,0,1 +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,77777,9,999999999,15,0.076,0,88,0,0,1 +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,6096,9,999999999,16,0.076,0,88,0,0,1 +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,5486,9,999999999,16,0.076,0,88,0,0,1 +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,852,0,487,154,220,4.1,5,3,16,6706,9,999999999,16,0.076,0,88,0,0,1 +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,7.2,43,83800,299,1336,358,157,253,101,17101,11070,11047,3203,220,4.1,7,5,16,6706,9,999999999,17,0.076,0,88,0,0,1 +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,20405,1365,19607,6479,220,5.2,8,6,16,6706,9,999999999,17,0.076,0,88,0,0,1 +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,32709,5004,28794,10224,270,3.6,7,6,16,6706,9,999999999,17,0.076,0,88,0,0,1 +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,76241,43385,29820,11573,0,0,7,5,16,6706,9,999999999,18,0.076,0,88,0,0,1 +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,85102,42468,32305,12760,20,5.2,8,6,16,6706,9,999999999,18,0.076,0,88,0,0,1 +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,88015,40399,35177,13777,40,5.2,6,5,16,6706,9,999999999,19,0.076,0,88,0,0,1 +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,88034,39681,38167,14718,30,5.2,7,5,16,6706,9,999999999,21,0.076,0,88,0,0,1 +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,69264,25048,42038,15679,120,2.6,8,5,16,6706,9,999999999,22,0.076,0,88,0,0,1 +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,36513,3467,33228,12638,130,1.5,10,8,16,3353,9,999999999,23,0.076,0,88,0,0,1 +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,14290,0,14418,6560,200,3.6,10,9,16,3353,9,999999999,24,0.076,0,88,0,0,1 +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,49,83600,560,1336,399,63,0,63,6341,0,6394,2920,190,9.8,10,10,16,3658,9,999999999,26,0.076,0,88,0,0,1 +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,2660,0,2680,1159,210,5.7,9,5,16,3658,9,999999999,27,0.076,0,88,0,0,1 +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,1597,0,1257,386,240,6.2,9,5,16,6096,9,999999999,28,0.076,0,88,0,0,1 +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,9.4,50,83900,0,0,361,0,0,0,0,0,0,0,230,6.2,7,5,16,6096,9,999999999,30,0.076,0,88,0,0,1 +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,54,83900,0,0,362,0,0,0,0,0,0,0,240,4.6,8,6,16,6096,9,999999999,31,0.076,0,88,0,0,1 +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,3048,9,999999999,32,0.076,0,88,0,0,1 +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,10,53,83700,0,0,394,0,0,0,0,0,0,0,300,3.6,10,10,16,2896,9,999999999,33,0.076,0,88,0,0,1 +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,10,9,16,2743,9,999999999,32,0.076,0,88,0,0,1 +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,3962,9,999999999,31,0.075,0,88,0,0,1 +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,6096,9,999999999,30,0.075,0,88,0,0,1 +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,6096,9,999999999,29,0.075,0,88,0,0,1 +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,77777,9,999999999,28,0.075,0,88,0,0,1 +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,10.6,75,83700,0,0,341,0,0,0,0,0,0,0,200,2.6,9,6,16,6096,9,999999999,27,0.075,0,88,0,0,1 +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,798,8995,358,77,200,2.1,10,6,16,6096,9,999999999,26,0.075,0,88,0,0,1 +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,60,84000,295,1336,351,194,604,60,22000,16034,6824,2250,240,4.1,9,5,16,7620,9,999999999,25,0.075,0,88,0,0,1 +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,10,53,84100,548,1336,365,367,545,143,41522,34894,16249,5642,40,1.5,9,6,16,6706,9,999999999,24,0.075,0,88,0,0,1 +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,36198,7649,30414,10595,70,2.1,10,7,16,3962,9,999999999,23,0.075,0,88,0,0,1 +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,11.1,57,84200,960,1336,370,171,0,171,17784,0,17954,8434,90,2.1,9,7,16,3962,9,999999999,22,0.075,0,88,0,0,1 +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,60607,16041,43264,16003,140,2.6,7,5,16,6706,9,999999999,21,0.075,0,88,0,0,1 +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,98902,47682,33761,13334,140,4.1,4,3,16,6706,9,999999999,22,0.075,0,88,0,0,1 +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,8.3,35,84200,1162,1336,382,888,839,157,110595,54229,19641,8175,0,0,4,4,16,6706,9,999999999,23,0.075,0,88,0,0,1 +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,104499,54038,16923,7101,100,4.6,3,3,16,6706,9,999999999,24,0.075,0,88,0,0,1 +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,80056,47239,25032,10012,150,3.1,4,4,16,6706,9,999999999,25,0.075,0,88,0,0,1 +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,56643,37633,22159,8396,230,3.1,4,4,14.4,7315,9,999999999,25,0.075,0,88,0,0,1 +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,33376,22063,19243,6444,320,3.6,8,8,16,7315,9,999999999,26,0.075,0,88,0,0,1 +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,18526,13382,6651,2225,10,4.1,3,3,16,77777,9,999999999,27,0.075,0,88,0,0,1 +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,1513,0,932,291,20,3.1,3,3,16,77777,9,999999999,28,0.075,0,88,0,0,1 +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,77777,9,999999999,28,0.075,0,88,0,0,1 +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,77777,9,999999999,29,0.075,0,88,0,0,1 +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,77777,9,999999999,30,0.075,0,88,0,0,1 +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,7.8,45,83500,0,0,339,0,0,0,0,0,0,0,220,6.2,0,0,16,77777,9,999999999,31,0.075,0,88,0,0,1 +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,7.8,45,83800,0,0,339,0,0,0,0,0,0,0,210,6.2,0,0,16,77777,9,999999999,30,0.075,0,88,0,0,1 +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,77777,9,999999999,29,0.075,0,88,0,0,1 +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,77777,9,999999999,28,0.075,0,88,0,0,1 +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,77777,9,999999999,27,0.075,0,88,0,0,1 +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,43,83600,0,0,325,0,0,0,0,0,0,0,220,7.7,0,0,16,77777,9,999999999,26,0.075,0,88,0,0,1 +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,46,83400,0,0,320,0,0,0,0,0,0,0,230,6.2,0,0,16,77777,9,999999999,25,0.075,0,88,0,0,1 +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,32,83600,52,880,315,6,151,2,671,7563,357,76,220,6.2,0,0,16,77777,9,999999999,24,0.075,0,88,0,0,1 +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,27,83800,292,1337,327,186,558,64,21039,17795,7261,2351,230,4.6,0,0,16,77777,9,999999999,23,0.075,0,88,0,0,1 +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,20,84000,544,1337,350,368,658,99,43006,38907,11608,4246,230,5.2,0,0,16,77777,9,999999999,22,0.075,0,88,0,0,1 +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,17,84100,772,1337,363,553,765,110,66923,49342,13358,5324,250,4.6,0,0,16,77777,9,999999999,21,0.075,0,88,0,0,1 +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,14,84300,957,1337,393,672,691,176,80830,49922,21266,8629,310,3.6,3,3,16,77777,9,999999999,20,0.075,0,88,0,0,1 +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,94799,52086,24182,9897,340,4.1,3,3,16,77777,9,999999999,19,0.075,0,88,0,0,1 +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,92468,88510,16874,4679,350,3.1,3,3,16,77777,9,999999999,18,0.075,0,88,0,0,1 +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,114496,60392,21661,8943,10,2.1,3,3,16,77777,9,999999999,17,0.075,0,88,0,0,1 +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,79364,36960,39046,14800,20,1.5,6,5,16,77777,9,999999999,16,0.075,0,88,0,0,1 +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,70750,39385,30876,11872,30,1.5,5,4,16,7315,9,999999999,15,0.075,0,88,0,0,1 +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,46646,23521,28368,10105,50,1.5,8,6,16,7315,9,999999999,14,0.075,0,88,0,0,1 +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,13233,0,13342,5324,60,5.7,9,7,16,7315,9,999999999,13,0.075,0,88,0,0,1 +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,10437,1788,9360,2885,70,3.6,8,5,16,4267,9,999999999,12,0.075,0,88,0,0,1 +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,97,0,97,41,80,2.1,5,4,16,4267,9,999999999,11,0.075,0,88,0,0,1 +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,2,20,84000,0,0,401,0,0,0,0,0,0,0,10,9.3,9,8,16.1,3000,9,999999999,10,0.075,0,88,0,0,1 +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,3353,9,999999999,9,0.075,0,88,0,0,1 +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,3962,9,999999999,8,0.075,0,88,0,0,1 +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,3962,9,999999999,7,0.075,0,88,0,0,1 +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,3353,9,999999999,8,0.075,0,88,0,0,1 +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,7315,9,999999999,9,0.074,0,88,0,0,1 +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,33,83800,0,0,366,0,0,0,0,0,0,0,280,3.6,8,5,16,7315,9,999999999,9,0.074,0,88,0,0,1 +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,3962,9,999999999,10,0.074,0,88,0,0,1 +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,77777,9,999999999,11,0.074,0,88,0,0,1 +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,3353,9,999999999,11,0.074,0,88,0,0,1 +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,10.6,55,84000,49,858,375,1,0,1,96,0,97,40,230,5.7,9,8,16,3353,9,999999999,12,0.074,0,88,0,0,1 +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,2661,0,2680,1137,130,4.6,8,8,16,3048,9,999999999,13,0.074,0,88,0,0,1 +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,6437,0,6490,2920,170,5.7,8,8,16,3048,9,999999999,13,0.074,0,88,0,0,1 +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,8,43,84200,768,1337,367,92,0,92,9432,0,9516,4541,110,12.3,8,6,14.5,4200,9,999999999,14,0.074,0,88,0,0,1 +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,18537,0,18712,8700,190,7.2,8,6,16,4267,9,999999999,14,0.074,0,88,0,0,1 +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,31646,1359,30028,11995,170,10.8,8,6,16,6706,9,999999999,15,0.074,0,88,0,0,1 +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,72800,25070,43969,16365,150,10.3,4,4,16,6706,9,999999999,15,0.074,0,88,0,0,1 +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,96776,47645,33126,13098,150,9.3,5,4,16,6706,9,999999999,15,0.074,0,88,0,0,1 +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,90697,47690,29840,11928,160,7.2,6,5,16,6706,9,999999999,16,0.074,0,88,0,0,1 +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,46378,8981,38392,13944,140,6.7,3,3,16,6096,9,999999999,16,0.074,0,88,0,0,1 +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,62018,44821,20297,7762,130,5.2,3,3,16,6096,9,999999999,16,0.074,0,88,0,0,1 +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,24,84400,544,1337,391,360,707,72,43090,36705,8641,3253,140,6.7,8,5,16,77777,9,999999999,16,0.074,0,88,0,0,1 +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,26,84300,291,1337,380,169,620,34,20091,12002,4048,1406,150,5.7,3,3,16,77777,9,999999999,16,0.074,0,88,0,0,1 +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,773,5985,693,132,140,4.1,3,3,16,77777,9,999999999,17,0.074,0,88,0,0,1 +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,77777,9,999999999,17,0.074,0,88,0,0,1 +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,77777,9,999999999,17,0.074,0,88,0,0,1 +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,77777,9,999999999,17,0.074,0,88,0,0,1 +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,5,51,83900,0,0,313,0,0,0,0,0,0,0,180,5.2,0,0,16,77777,9,999999999,17,0.074,0,88,0,0,1 +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,77777,9,999999999,17,0.074,0,88,0,0,1 +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,43,84000,0,0,325,0,0,0,0,0,0,0,210,6.2,0,0,16,77777,9,999999999,17,0.073,0,88,0,0,1 +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,77777,9,999999999,17,0.073,0,88,0,0,1 +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,77777,9,999999999,17,0.073,0,88,0,0,1 +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,77777,9,999999999,17,0.073,0,88,0,0,1 +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,77777,9,999999999,17,0.073,0,88,0,0,1 +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,449,4820,356,75,220,5.2,0,0,12.8,77777,9,999999999,17,0.073,0,88,0,0,1 +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,17997,13729,8472,2624,220,7.2,0,0,16,77777,9,999999999,17,0.073,0,88,0,0,1 +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,34,84300,538,1338,350,383,772,72,45739,39735,8621,3231,200,4.1,1,1,16,77777,9,999999999,17,0.073,0,88,0,0,1 +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,68868,49116,10607,4268,210,4.1,1,1,16,77777,9,999999999,17,0.073,0,88,0,0,1 +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,15,84600,951,1338,371,691,794,125,85197,52588,15470,6410,190,3.6,0,0,16,77777,9,999999999,17,0.073,0,88,0,0,1 +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,95492,53016,21893,9032,210,4.6,1,1,16,77777,9,999999999,17,0.073,0,88,0,0,1 +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,104307,54512,21754,8979,210,1.5,3,3,16,77777,9,999999999,17,0.073,0,88,0,0,1 +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,108820,56477,18968,7888,210,2.6,3,3,16,77777,9,999999999,16,0.073,0,88,0,0,1 +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,87156,89722,15126,3497,80,4.6,3,3,16,77777,9,999999999,16,0.073,0,88,0,0,1 +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,75886,88415,13434,2489,50,2.6,3,3,16,77777,9,999999999,16,0.073,0,88,0,0,1 +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,12,84500,766,1338,411,564,861,70,60033,86254,10199,1721,10,3.1,3,3,16,77777,9,999999999,16,0.073,0,88,0,0,1 +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,39562,75878,7956,1242,80,2.1,6,5,16,77777,9,999999999,16,0.073,0,88,0,0,1 +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,18873,11045,4042,1398,150,6.7,6,6,16,77777,9,999999999,16,0.073,0,88,0,0,1 +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,666,6179,525,105,170,5.2,4,4,16,77777,9,999999999,15,0.073,0,88,0,0,1 +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,77777,9,999999999,15,0.073,0,88,0,0,1 +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,77777,9,999999999,15,0.073,0,88,0,0,1 +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,77777,9,999999999,15,0.073,0,88,0,0,1 +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,77777,9,999999999,15,0.073,0,88,0,0,1 +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,6.7,42,83900,0,0,344,0,0,0,0,0,0,0,170,5.7,1,1,16,77777,9,999999999,15,0.073,0,88,0,0,1 +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,77777,9,999999999,15,0.072,0,88,0,0,1 +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,77777,9,999999999,15,0.072,0,88,0,0,1 +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,77777,9,999999999,15,0.072,0,88,0,0,1 +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,77777,9,999999999,15,0.072,0,88,0,0,1 +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,46,83700,0,0,320,0,0,0,0,0,0,0,230,6.2,0,0,16,77777,9,999999999,15,0.072,0,88,0,0,1 +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,448,4971,355,74,220,3.6,0,0,16,77777,9,999999999,15,0.072,0,88,0,0,1 +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,19829,16904,9678,2856,230,2.6,0,0,16,77777,9,999999999,15,0.072,0,88,0,0,1 +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,40054,35007,13170,4709,240,4.1,1,1,16,77777,9,999999999,15,0.072,0,88,0,0,1 +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,25,84300,762,1338,383,514,674,129,61253,44159,15432,6070,240,3.6,3,3,16,77777,9,999999999,15,0.072,0,88,0,0,1 +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,4.4,20,84400,948,1338,399,666,722,154,80695,49244,18739,7679,200,2.1,3,3,16,77777,9,999999999,15,0.072,0,88,0,0,1 +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,92734,50847,25031,10209,160,4.1,3,3,16,77777,9,999999999,16,0.072,0,88,0,0,1 +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,91146,87278,17652,4594,130,5.2,4,4,16,77777,9,999999999,16,0.072,0,88,0,0,1 +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,108486,58095,27324,11064,110,4.1,5,4,16,77777,9,999999999,17,0.072,0,88,0,0,1 +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,40048,5880,33388,13063,110,5.7,3,3,16,77777,9,999999999,17,0.072,0,88,0,0,1 +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,54054,17020,39360,14086,160,6.2,4,4,16,77777,9,999999999,18,0.072,0,88,0,0,1 +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,47513,24754,29006,10151,150,5.7,6,6,16,77777,9,999999999,18,0.072,0,88,0,0,1 +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,10985,0,11075,4558,160,8.2,5,5,16,77777,9,999999999,19,0.072,0,88,0,0,1 +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,17033,13242,8378,2598,160,6.7,8,6,16,6706,9,999999999,19,0.072,0,88,0,0,1 +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,193,0,194,79,170,8.2,6,5,16,6706,9,999999999,20,0.072,0,88,0,0,1 +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,-1.1,18,83900,0,0,372,0,0,0,0,0,0,0,180,7.2,6,5,16,6706,9,999999999,20,0.072,0,88,0,0,1 +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,6706,9,999999999,21,0.072,0,88,0,0,1 +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,77777,9,999999999,21,0.072,0,88,0,0,1 +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,77777,9,999999999,22,0.072,0,88,0,0,1 +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,6096,9,999999999,22,0.072,0,88,0,0,1 +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,6096,9,999999999,22,0.071,0,88,0,0,1 +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,6096,9,999999999,23,0.071,0,88,0,0,1 +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,2.2,31,83500,0,0,338,0,0,0,0,0,0,0,160,6.2,1,1,16,77777,9,999999999,23,0.071,0,88,0,0,1 +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,2.2,31,83500,0,0,338,0,0,0,0,0,0,0,210,5.2,1,1,16,77777,9,999999999,23,0.071,0,88,0,0,1 +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,77777,9,999999999,23,0.071,0,88,0,0,1 +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,263,0,131,40,260,3.1,3,3,16,77777,9,999999999,24,0.071,0,88,0,0,1 +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,10967,2614,9467,2797,290,6.2,5,4,16,77777,9,999999999,24,0.071,0,88,0,0,1 +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,40599,36364,14122,4973,280,5.7,3,3,16,77777,9,999999999,24,0.071,0,88,0,0,1 +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,65037,47752,13536,5371,300,4.6,3,3,16,77777,9,999999999,24,0.071,0,88,0,0,1 +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,77607,47330,21087,8542,310,4.1,3,3,16,77777,9,999999999,24,0.071,0,88,0,0,1 +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,92880,50803,24217,9912,280,2.6,3,3,16,77777,9,999999999,25,0.071,0,88,0,0,1 +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,98745,50975,34783,13607,250,2.6,5,4,16,77777,9,999999999,25,0.071,0,88,0,0,1 +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,48620,9929,36775,14233,300,1.5,9,6,16,77777,9,999999999,25,0.071,0,88,0,0,1 +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,79810,38006,37450,14310,350,8.8,9,6,16,7620,9,999999999,26,0.071,0,88,0,0,1 +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,53348,16778,38769,13913,350,7.2,10,7,16,7315,9,999999999,26,0.071,0,88,0,0,1 +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,2.8,18,83900,756,1339,403,447,366,240,50738,30365,27389,9719,300,5.2,8,5,16,7315,9,999999999,26,0.071,0,88,0,0,1 +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,11478,0,11572,4697,280,8.8,9,7,16,7315,9,999999999,27,0.071,0,88,0,0,1 +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,17415,13470,7840,2454,240,6.2,10,9,16,6706,9,999999999,27,0.071,0,88,0,0,1 +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,342,5724,183,40,190,3.6,10,9,16,6706,9,999999999,27,0.071,0,88,0,0,1 +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,3.3,33,83500,0,0,374,0,0,0,0,0,0,0,160,4.6,10,9,16,6706,9,999999999,28,0.071,0,88,0,0,1 +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,77777,9,999999999,28,0.071,0,88,0,0,1 +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,77777,9,999999999,28,0.071,0,88,0,0,1 +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,77777,9,999999999,29,0.071,0,88,0,0,1 +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,3.3,33,83300,0,0,353,0,0,0,0,0,0,0,210,6.7,8,5,16,77777,9,999999999,28,0.071,0,88,0,0,1 +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,77777,9,999999999,28,0.07,0,88,0,0,1 +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,77777,9,999999999,28,0.07,0,88,0,0,1 +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,77777,9,999999999,28,0.07,0,88,0,0,1 +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,77777,9,999999999,28,0.07,0,88,0,0,1 +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,77777,9,999999999,28,0.07,0,88,0,0,1 +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,227,3984,182,40,230,5.7,5,5,16,77777,9,999999999,28,0.07,0,88,0,0,1 +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,18293,14596,8848,2658,220,6.2,3,3,16,77777,9,999999999,27,0.07,0,88,0,0,1 +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,41773,37130,10358,3804,240,4.6,5,5,16,77777,9,999999999,27,0.07,0,88,0,0,1 +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,65311,48279,13083,5196,270,2.1,5,5,16,77777,9,999999999,27,0.07,0,88,0,0,1 +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,80853,50111,18164,7446,180,1.5,5,5,16,77777,9,999999999,27,0.07,0,88,0,0,1 +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,92491,51155,23203,9527,90,3.1,5,5,16,77777,9,999999999,27,0.07,0,88,0,0,1 +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,97559,50815,28196,11373,50,7.2,5,5,16,77777,9,999999999,26,0.07,0,88,0,0,1 +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,99467,52271,27857,11252,50,5.7,5,5,16,77777,9,999999999,26,0.07,0,88,0,0,1 +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,99582,54838,17476,7309,60,5.7,9,9,16,7620,9,999999999,26,0.07,0,88,0,0,1 +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,80794,51458,23315,9316,30,5.7,9,9,16,7620,9,999999999,26,0.07,0,88,0,0,1 +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,2.2,17,83800,750,1340,426,386,242,250,43634,20521,28416,9930,50,11.3,9,9,16,4200,9,999999999,25,0.07,0,88,0,0,1 +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,25760,9301,20666,6499,80,7.7,8,8,16,4267,9,999999999,25,0.07,0,88,0,0,1 +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,10500,3089,8541,2586,120,2.1,9,9,16,6706,9,999999999,25,0.07,0,88,0,0,1 +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,227,3493,182,40,170,5.7,9,9,16,6706,9,999999999,24,0.07,0,88,0,0,1 +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,6706,9,999999999,24,0.07,0,88,0,0,1 +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,6706,9,999999999,24,0.07,0,88,0,0,1 +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,3.9,35,83600,0,0,375,0,0,0,0,0,0,0,20,4.6,9,9,16,6706,9,999999999,23,0.07,0,88,0,0,1 +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,8.3,47,83300,0,0,373,0,0,0,0,0,0,0,10,5.7,8,8,16,6706,9,999999999,23,0.07,0,88,0,0,1 +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,6096,9,999999999,23,0.07,0,88,0,0,1 +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,6096,9,999999999,22,0.07,0,88,0,0,1 +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,6096,9,999999999,21,0.07,0,88,0,0,1 +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,7.2,60,83500,0,0,354,0,0,0,0,0,0,0,360,4.1,10,9,16,6096,9,999999999,21,0.07,0,88,0,0,1 +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,77777,9,999999999,20,0.07,0,88,0,0,1 +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,77777,9,999999999,19,0.07,0,88,0,0,1 +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,228,3990,182,40,0,0,4,4,16,7620,9,999999999,19,0.07,0,88,0,0,1 +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,6.7,58,83800,270,1340,334,167,449,76,18435,14150,8420,2556,360,1.5,6,5,16,77777,9,999999999,18,0.07,0,88,0,0,1 +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,42556,37505,10556,3865,0,0,6,5,16,77777,9,999999999,18,0.07,0,88,0,0,1 +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,60360,43277,15387,6035,40,1.5,6,5,16,77777,9,999999999,17,0.07,0,88,0,0,1 +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,78763,47324,19354,7901,80,1.5,6,5,16,77777,9,999999999,16,0.07,0,88,0,0,1 +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,95398,50596,20518,8527,120,3.6,6,5,16,77777,9,999999999,16,0.07,0,88,0,0,1 +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,41,84000,1137,1340,381,825,733,201,100414,50114,24588,10090,190,4.6,6,5,16,77777,9,999999999,16,0.07,0,88,0,0,1 +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,35,84100,1136,1340,396,870,851,147,108376,53585,18391,7690,120,3.6,6,5,16,77777,9,999999999,16,0.07,0,88,0,0,1 +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,94888,51353,25142,10262,130,6.2,10,9,16,7315,9,999999999,16,0.07,0,88,0,0,1 +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,55289,20463,36590,13326,230,9.8,10,10,12.8,3048,9,999999999,16,0.07,0,88,0,0,1 +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,10.3,54,83800,745,1340,383,88,0,88,8994,0,9075,4323,250,10.8,10,9,16,2286,9,999999999,16,0.07,0,88,0,0,1 +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,5728,0,5775,2600,130,6.7,9,7,16,6706,9,999999999,16,0.07,0,88,0,0,1 +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,16076,10282,7676,2379,210,4.1,10,9,16,3353,9,999999999,16,0.07,0,88,0,0,1 +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,6706,9,999999999,16,0.07,0,88,0,0,1 +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,6706,9,999999999,16,0.07,0,88,0,0,1 +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,8.3,47,83800,0,0,381,0,0,0,0,0,0,0,210,9.8,9,9,16,2438,9,999999999,16,0.07,0,88,0,0,1 +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,6096,9,999999999,15,0.07,0,88,0,0,1 +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,77777,9,999999999,15,0.07,0,88,0,0,1 +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,6096,9,999999999,17,0.07,0,88,0,0,1 +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,6.7,58,83500,0,0,321,0,0,0,0,0,0,0,110,4.6,1,1,16,77777,9,999999999,18,0.068,0,88,0,0,1 +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,77777,9,999999999,19,0.068,0,88,0,0,1 +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,6.1,55,83500,0,0,314,0,0,0,0,0,0,0,180,4.6,0,0,16,77777,9,999999999,21,0.068,0,88,0,1,1 +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,77777,9,999999999,22,0.068,0,88,0,0,1 +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,10,72,83500,0,0,329,0,0,0,0,0,0,0,200,3.1,3,2,16,77777,9,999999999,23,0.068,0,88,0,0,1 +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,10.6,75,83600,36,726,335,1,18,1,129,0,129,40,250,5.2,5,4,16,6706,9,999999999,25,0.068,0,88,0,0,1 +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,11256,3228,9105,2677,260,4.1,7,5,16,6706,9,999999999,26,0.068,0,88,0,0,1 +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,37638,31290,16878,5661,260,4.1,6,5,16,6706,9,999999999,27,0.068,0,88,0,0,1 +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,8.9,49,83900,749,1341,360,350,141,271,39160,12008,30496,10374,300,2.6,6,5,16,3962,9,999999999,28,0.068,0,88,0,0,1 +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,63398,31126,33966,12625,330,2.1,6,5,16,3962,9,999999999,30,0.068,0,88,0,0,1 +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,69118,26168,42321,15607,10,2.1,8,6,16,7620,9,999999999,31,0.068,0,88,0,0,1 +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,95115,47350,36523,14160,50,2.6,8,5,16,6706,9,999999999,31,0.068,0,88,0,0,1 +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,41222,2933,37933,14590,30,2.6,7,5,16,3962,9,999999999,30,0.068,0,88,0,0,1 +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,13558,0,13690,6783,0,0,9,6,16,3962,9,999999999,30,0.068,0,88,0,0,1 +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,54630,20226,36490,13253,230,8.2,8,6,16,3962,9,999999999,30,0.068,0,88,0,0,1 +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,13508,0,13628,6120,290,4.6,7,5,16,4267,9,999999999,30,0.068,0,88,0,0,1 +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,7222,0,7281,3179,320,5.2,10,10,16,3048,9,999999999,29,0.068,0,88,0,0,1 +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,4609,0,4643,1775,240,5.7,9,9,16,3353,9,999999999,29,0.068,0,88,0,0,1 +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,6706,9,999999999,29,0.068,0,88,0,0,1 +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,8.9,49,83800,0,0,357,0,0,0,0,0,0,0,210,7.2,5,4,16,6706,9,999999999,28,0.068,0,88,0,0,1 +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,6096,9,999999999,28,0.068,0,88,0,0,1 +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,77777,9,999999999,28,0.068,0,88,0,0,1 +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,77777,9,999999999,28,0.068,0,88,0,0,1 +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,4,3,16,6096,9,999999999,28,0.068,0,88,0,0,1 +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,77777,9,999999999,14,0.067,0,88,0,0,1 +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,77777,9,999999999,13,0.067,0,88,0,0,1 +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,77777,9,999999999,12,0.067,0,88,0,0,1 +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,77777,9,999999999,11,0.067,0,88,0,0,1 +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,77777,9,999999999,11,0.067,0,88,0,0,1 +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,1.7,56,83700,34,704,289,1,102,0,0,0,0,0,230,4.1,0,0,16,77777,9,999999999,10,0.067,0,88,0,0,1 +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,20048,16170,7078,2224,250,3.1,0,0,16,77777,9,999999999,10,0.067,0,88,0,0,1 +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,43796,40825,9801,3595,310,2.1,0,0,16,77777,9,999999999,9,0.067,0,88,0,0,1 +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,28,84200,746,1342,325,555,846,84,68218,51103,10354,4139,0,0,0,0,16,77777,9,999999999,9,0.067,0,88,0,0,1 +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,23,84300,932,1342,340,711,855,116,87871,55780,14387,5955,0,0,0,0,16,77777,9,999999999,9,0.067,0,88,0,0,1 +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,21,83800,1063,1342,360,829,929,92,87551,94430,12527,2966,0,0,3,3,16,77777,9,999999999,9,0.067,0,88,0,0,1 +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,94906,97396,12237,3455,50,1.5,3,3,16,77777,9,999999999,10,0.067,0,88,0,0,1 +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,94441,97622,11477,3288,90,4.1,3,3,16,77777,9,999999999,11,0.067,0,88,0,0,1 +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,84856,88277,16471,3359,80,5.7,3,3,16,77777,9,999999999,11,0.067,0,88,0,0,1 +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,75149,91084,12586,2300,90,3.1,3,3,16,77777,9,999999999,11,0.067,0,88,0,0,1 +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,57847,86761,9833,1636,90,4.1,4,4,16,77777,9,999999999,12,0.067,0,88,0,0,1 +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,42260,38795,6916,2581,70,3.1,5,5,16,77777,9,999999999,12,0.067,0,88,0,0,1 +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,15265,51001,4379,667,70,2.6,3,3,16,77777,9,999999999,12,0.067,0,88,0,0,1 +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,77777,9,999999999,13,0.067,0,88,0,0,1 +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,77777,9,999999999,13,0.067,0,88,0,0,1 +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,43,83900,0,0,325,0,0,0,0,0,0,0,170,5.2,0,0,16,77777,9,999999999,13,0.067,0,88,0,0,1 +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,77777,9,999999999,13,0.067,0,88,0,0,1 +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,77777,9,999999999,13,0.067,0,88,0,0,1 +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,77777,9,999999999,12,0.067,0,88,0,0,1 +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,77777,9,999999999,12,0.066,0,88,0,0,1 +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,4.4,49,83700,0,0,318,0,0,0,0,0,0,0,260,4.1,1,1,16,77777,9,999999999,12,0.066,0,88,0,0,1 +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,77777,9,999999999,12,0.066,0,88,0,0,1 +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,53,83800,0,0,321,0,0,0,0,0,0,0,240,3.1,2,2,16,77777,9,999999999,13,0.066,0,88,0,0,1 +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,77777,9,999999999,13,0.066,0,88,0,0,1 +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,6096,9,999999999,13,0.066,0,88,0,0,1 +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,19524,11877,5805,1891,260,2.6,3,3,16,7315,9,999999999,13,0.066,0,88,0,0,1 +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,41321,37000,11815,4239,290,1.5,7,7,16,6706,9,999999999,12,0.066,0,88,0,0,1 +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,70823,51677,11230,4482,320,1.5,5,5,16,77777,9,999999999,13,0.066,0,88,0,0,1 +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,84872,52177,15266,6311,350,1.5,5,5,16,77777,9,999999999,13,0.066,0,88,0,0,1 +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,23,83800,1059,1342,391,774,754,177,94270,52340,21658,8942,20,2.6,3,3,16,77777,9,999999999,13,0.066,0,88,0,0,1 +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,91224,90768,15769,3995,50,3.1,3,3,16,77777,9,999999999,13,0.066,0,88,0,0,1 +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,92064,93843,13511,3632,50,3.1,3,3,16,77777,9,999999999,14,0.066,0,88,0,0,1 +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,88769,94996,14842,3181,70,6.2,5,5,16,77777,9,999999999,14,0.066,0,88,0,0,1 +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,85017,57157,19928,8047,0,0,5,5,16,77777,9,999999999,15,0.066,0,88,0,0,1 +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,46078,26481,26975,9405,120,5.2,4,4,16,77777,9,999999999,16,0.066,0,88,0,0,1 +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,32949,27435,15184,5135,160,6.7,5,5,16,77777,9,999999999,17,0.066,0,88,0,0,1 +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,14448,8637,5999,1912,160,6.2,3,3,16,77777,9,999999999,18,0.066,0,88,0,0,1 +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,77777,9,999999999,18,0.066,0,88,0,0,1 +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,77777,9,999999999,19,0.066,0,88,0,0,1 +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,77777,9,999999999,19,0.066,0,88,0,0,1 +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,77777,9,999999999,18,0.066,0,88,0,0,1 +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,40,83800,0,0,350,0,0,0,0,0,0,0,190,6.2,5,5,16,77777,9,999999999,18,0.066,0,88,0,0,1 +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,77777,9,999999999,17,0.066,0,88,0,0,1 +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,77777,9,999999999,17,0.066,0,88,0,0,1 +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,4.4,36,83800,0,0,349,0,0,0,0,0,0,0,180,6.7,3,3,16,77777,9,999999999,17,0.066,0,88,0,0,1 +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,5,51,83800,0,0,329,0,0,0,0,0,0,0,150,5.2,4,4,16,77777,9,999999999,16,0.066,0,88,0,0,1 +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,5,51,83800,0,0,329,0,0,0,0,0,0,0,180,4.6,4,4,16,77777,9,999999999,15,0.066,0,88,0,0,1 +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,48,83800,0,0,334,0,0,0,0,0,0,0,210,1.5,4,4,16,4877,9,999999999,13,0.066,0,88,0,0,1 +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,5,51,83800,30,660,327,0,0,0,0,0,0,0,240,4.6,3,3,16,77777,9,999999999,13,0.066,0,88,0,0,1 +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,40,84100,255,1343,337,173,642,51,19633,12657,5803,1881,240,4.6,1,1,16,6706,9,999999999,13,0.066,0,88,0,0,1 +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,43636,38724,8128,3018,240,6.2,3,3,16,7620,9,999999999,13,0.066,0,88,0,0,1 +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,65800,49224,11691,4646,300,3.1,3,3,16,77777,9,999999999,13,0.066,0,88,0,0,1 +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,83980,53532,15853,6525,230,1.5,4,4,16,77777,9,999999999,13,0.066,0,88,0,0,1 +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,83828,87048,16494,3323,150,3.6,5,5,16,77777,9,999999999,13,0.066,0,88,0,0,1 +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,92870,92910,15899,3960,130,2.1,5,5,16,77777,9,999999999,13,0.066,0,88,0,0,1 +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,90689,47233,33036,12996,100,4.6,6,6,16,7620,9,999999999,13,0.066,0,88,0,0,1 +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,102533,60929,21213,8748,80,4.6,5,5,16,77777,9,999999999,13,0.066,0,88,0,0,1 +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,75218,48540,24763,9721,120,5.7,5,5,16,77777,9,999999999,15,0.066,0,88,0,0,1 +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,53269,39229,20779,7700,130,5.7,7,6,16,77777,9,999999999,16,0.066,0,88,0,0,1 +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.6,15,83500,490,1343,408,302,546,102,34810,31595,11798,4173,170,7.2,7,7,16,6096,9,999999999,17,0.066,0,88,0,0,1 +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,14885,5333,3757,1263,190,7.2,7,5,16,3962,9,999999999,17,0.066,0,88,0,0,1 +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,3962,9,999999999,17,0.066,0,88,0,0,1 +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,3962,9,999999999,17,0.066,0,88,0,0,1 +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,3962,9,999999999,16,0.066,0,88,0,0,1 +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,3962,9,999999999,16,0.066,0,88,0,0,1 +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,6706,9,999999999,16,0.066,0,88,0,0,1 +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,77777,9,999999999,16,0.066,0,88,0,0,1 +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,77777,9,999999999,16,0.065,0,88,0,0,1 +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,3.9,35,83600,0,0,349,0,0,0,0,0,0,0,190,5.2,4,3,16,6096,9,999999999,16,0.065,0,88,0,0,1 +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,6096,9,999999999,17,0.065,0,88,0,0,1 +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,6096,9,999999999,18,0.065,0,88,0,0,1 +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,6706,9,999999999,20,0.065,0,88,0,0,1 +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,5486,9,999999999,19,0.065,0,88,0,0,1 +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,5,37,83900,251,1344,353,165,624,48,18789,11107,5480,1786,230,4.1,4,4,16,77777,9,999999999,19,0.065,0,88,0,0,1 +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,31,83600,507,1344,366,367,801,64,43914,38599,7676,2855,240,3.1,4,4,16,77777,9,999999999,19,0.065,0,88,0,0,1 +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,66300,49163,10777,4293,320,2.6,5,5,16,77777,9,999999999,19,0.065,0,88,0,0,1 +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,76269,92974,12346,2262,30,4.6,5,5,16,77777,9,999999999,19,0.065,0,88,0,0,1 +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,87452,95459,12179,2839,20,3.1,6,6,16,77777,9,999999999,19,0.065,0,88,0,0,1 +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,3.9,19,84400,1118,1344,413,855,890,113,90184,90860,15049,3793,10,4.6,7,7,16,77777,9,999999999,19,0.065,0,88,0,0,1 +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,105081,55277,17102,7158,70,4.1,7,6,16,77777,9,999999999,19,0.065,0,88,0,0,1 +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,3.3,18,83500,1043,1344,404,817,908,111,86172,92457,15013,3118,40,2.1,5,5,16,77777,9,999999999,19,0.065,0,88,0,0,1 +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,73044,89117,13165,2277,360,1.5,5,4,16,77777,9,999999999,18,0.065,0,88,0,0,1 +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,65424,50148,10753,4263,330,2.6,5,5,16,77777,9,999999999,18,0.065,0,88,0,0,1 +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,37740,34525,9079,3306,40,2.6,6,5,16,77777,9,999999999,18,0.065,0,88,0,0,1 +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,15260,3845,3527,1187,340,6.7,4,4,16,77777,9,999999999,18,0.065,0,88,0,0,1 +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,5.6,29,84000,18,526,375,0,0,0,0,0,0,0,330,4.6,3,3,16,77777,9,999999999,18,0.065,0,88,0,0,1 +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,4267,9,999999999,18,0.065,0,88,0,0,1 +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,77777,9,999999999,18,0.065,0,88,0,0,1 +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,3658,9,999999999,18,0.065,0,88,0,0,1 +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,3658,9,999999999,18,0.065,0,88,0,0,1 +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,3658,9,999999999,18,0.065,0,88,0,0,1 +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,77777,9,999999999,18,0.064,0,88,0,0,1 +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,7.2,43,83500,0,0,371,0,0,0,0,0,0,0,220,4.6,8,8,16,3353,9,999999999,18,0.064,0,88,0,0,1 +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,6096,9,999999999,19,0.064,0,88,0,0,1 +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,6096,9,999999999,19,0.064,0,88,0,0,1 +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,3353,9,999999999,20,0.064,0,88,0,0,1 +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,4267,9,999999999,20,0.064,0,88,0,0,1 +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,17843,14537,10839,2803,230,4.6,5,5,16,4267,9,999999999,19,0.064,0,88,0,0,1 +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,22070,10998,14546,4976,240,5.2,3,3,16,77777,9,999999999,19,0.064,0,88,0,0,1 +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,61676,47776,21736,8013,310,2.6,3,3,16,77777,9,999999999,18,0.064,0,88,0,0,1 +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,80619,51967,20546,8276,10,3.1,3,3,16,77777,9,999999999,18,0.064,0,88,0,0,1 +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,2.2,17,83700,1048,1344,399,830,917,113,87362,93243,15255,3162,60,4.1,4,4,16,77777,9,999999999,17,0.064,0,88,0,0,1 +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,103918,55525,19078,7947,270,3.1,5,5,16,77777,9,999999999,18,0.064,0,88,0,0,1 +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,2.8,18,84300,1111,1344,407,815,671,260,97171,52464,31173,12385,310,2.1,6,6,16,4267,9,999999999,18,0.064,0,88,0,0,1 +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,44451,10281,33266,12905,260,3.1,7,7,16,4572,9,999999999,18,0.064,0,88,0,0,1 +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,62483,32608,33958,12394,200,2.1,7,7,16,4572,9,999999999,18,0.064,0,88,0,0,1 +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,12889,0,13001,5788,150,5.7,7,6,16,7620,9,999999999,19,0.064,0,88,0,0,1 +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,37147,35315,15328,5077,180,4.6,9,7,16,7620,9,999999999,19,0.064,0,88,0,0,1 +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,11730,4832,5429,1721,250,2.1,6,6,16,7620,9,999999999,19,0.064,0,88,0,0,1 +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,5.6,29,84200,16,482,378,0,0,0,0,0,0,0,330,4.6,5,4,16,7620,9,999999999,18,0.064,0,88,0,0,1 +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,35,83700,0,0,361,0,0,0,0,0,0,0,100,4.1,5,5,16,7620,9,999999999,17,0.064,0,88,0,0,1 +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,40,83900,0,0,350,0,0,0,0,0,0,0,140,3.1,5,5,16,77777,9,999999999,17,0.064,0,88,0,0,1 +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,77777,9,999999999,16,0.064,0,88,0,0,1 +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,77777,9,999999999,16,0.064,0,88,0,0,1 +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,16,77777,9,999999999,15,0.064,0,88,0,0,1 +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,77777,9,999999999,15,0.063,0,88,0,0,1 +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,77777,9,999999999,15,0.063,0,88,0,0,1 +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,77777,9,999999999,16,0.063,0,88,0,0,1 +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,77777,9,999999999,17,0.063,0,88,0,0,1 +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,77777,9,999999999,19,0.063,0,88,0,0,1 +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,6096,9,999999999,19,0.063,0,88,0,0,1 +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,18101,14949,10327,2717,330,6.2,6,6,16,4267,9,999999999,19,0.063,0,88,0,0,1 +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,28747,17438,18664,5911,310,6.2,8,8,16,4267,9,999999999,19,0.063,0,88,0,0,1 +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,44569,21894,29055,9863,300,4.6,10,9,16,3048,9,999999999,19,0.063,0,88,0,0,1 +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,44084,8582,36811,13188,20,3.6,10,9,16,2743,9,999999999,19,0.063,0,88,0,0,1 +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,47561,4875,43028,15647,30,4.6,9,9,16,2134,9,999999999,19,0.063,0,88,0,0,1 +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,14770,0,14916,7341,50,2.6,9,9,16,3048,9,999999999,20,0.063,0,88,0,0,1 +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,106496,58301,29980,11998,30,5.7,8,8,16,4267,9,999999999,20,0.063,0,88,0,0,1 +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,85889,46781,33382,12945,10,4.1,6,6,16,4267,9,999999999,20,0.063,0,88,0,0,1 +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,8.9,36,84600,896,1345,385,273,36,249,31553,2828,28938,10988,30,4.1,5,5,16,4267,9,999999999,22,0.063,0,88,0,0,1 +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,8.9,36,84600,704,1345,379,317,135,246,35469,11109,27678,9407,60,2.1,3,3,16,77777,9,999999999,23,0.063,0,88,0,0,1 +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,34538,30573,15267,5038,80,3.6,6,5,16,77777,9,999999999,24,0.063,0,88,0,0,1 +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,2345,0,2362,964,140,5.2,7,7,16,4572,9,999999999,23,0.063,0,88,0,0,1 +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,3300,9,999999999,23,0.063,0,88,0,0,1 +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,3658,9,999999999,22,0.063,0,88,0,0,1 +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,3658,9,999999999,22,0.063,0,88,0,0,1 +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,3962,9,999999999,21,0.063,0,88,0,0,1 +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,77,84100,0,0,344,0,0,0,0,0,0,0,180,3.1,9,8,16,3962,9,999999999,21,0.063,0,88,0,0,1 +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,77,84200,0,0,324,0,0,0,0,0,0,0,190,4.1,2,2,16,77777,9,999999999,20,0.063,0,88,0,0,1 +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,10,72,84200,0,0,332,0,0,0,0,0,0,0,170,4.6,3,3,16,6096,9,999999999,20,0.062,0,88,0,0,1 +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,75,84000,0,0,337,0,0,0,0,0,0,0,150,3.1,6,6,16,6096,9,999999999,20,0.062,0,88,0,0,1 +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,10.6,75,84000,0,0,350,0,0,0,0,0,0,0,240,3.1,8,8,16,3353,9,999999999,20,0.062,0,88,0,0,1 +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,83,84000,0,0,339,0,0,0,0,0,0,0,40,2.1,8,8,16,3353,9,999999999,21,0.062,0,88,0,0,1 +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,3353,9,999999999,21,0.062,0,88,0,0,1 +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,77777,9,999999999,21,0.062,0,88,0,0,1 +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,18609,13599,8302,2399,260,4.1,3,3,16,77777,9,999999999,20,0.062,0,88,0,0,1 +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,42695,36227,8515,3137,260,4.6,3,3,16,77777,9,999999999,20,0.062,0,88,0,0,1 +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,61405,44891,14186,5547,270,3.6,3,3,16,77777,9,999999999,20,0.062,0,88,0,0,1 +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,77703,93921,14380,2331,300,3.6,3,3,16,77777,9,999999999,19,0.062,0,88,0,0,1 +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,95325,51303,17562,7350,350,2.6,5,5,16,77777,9,999999999,19,0.062,0,88,0,0,1 +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,90069,90781,16111,3771,40,4.1,6,6,16,77777,9,999999999,19,0.062,0,88,0,0,1 +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,101944,53827,18330,7661,80,5.7,7,7,16,77777,9,999999999,19,0.062,0,88,0,0,1 +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,85495,93506,14419,2953,20,6.2,4,4,16,77777,9,999999999,19,0.062,0,88,0,0,1 +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,73044,91915,12007,2142,30,2.6,4,4,16,77777,9,999999999,19,0.062,0,88,0,0,1 +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,64804,50985,9931,3924,40,3.1,5,5,16,77777,9,999999999,20,0.062,0,88,0,0,1 +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,36003,33029,7623,2785,40,2.1,5,5,16,77777,9,999999999,20,0.062,0,88,0,0,1 +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,12806,901,3177,1061,50,3.6,5,5,16,77777,9,999999999,20,0.062,0,88,0,0,1 +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,77777,9,999999999,21,0.062,0,88,0,0,1 +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,6096,9,999999999,22,0.062,0,88,0,0,1 +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,3353,9,999999999,22,0.062,0,88,0,0,1 +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,11.7,59,84100,0,0,385,0,0,0,0,0,0,0,130,6.7,9,9,16,6096,9,999999999,22,0.062,0,88,0,0,1 +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,11.1,57,83800,0,0,363,0,0,0,0,0,0,0,160,6.2,5,5,16,77777,9,999999999,21,0.062,0,88,0,0,1 +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,77777,9,999999999,21,0.062,0,88,0,0,1 +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,77777,9,999999999,21,0.062,0,88,0,0,1 +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,6096,9,999999999,21,0.062,0,88,0,0,1 +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,77777,9,999999999,21,0.062,0,88,0,0,1 +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,77777,9,999999999,21,0.062,0,88,0,0,1 +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,6096,9,999999999,21,0.062,0,88,0,0,1 +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,11.1,77,83800,21,572,342,0,0,0,0,0,0,0,250,3.1,6,6,16,3658,9,999999999,21,0.062,0,88,0,0,1 +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,18164,8765,5847,1854,240,3.6,6,6,16,3658,9,999999999,21,0.062,0,88,0,0,1 +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,43,83800,492,1346,386,362,797,70,42777,36841,8294,3054,290,2.1,7,7,16,3658,9,999999999,21,0.062,0,88,0,0,1 +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,59226,42457,13727,5377,270,2.6,8,8,16,6706,9,999999999,21,0.062,0,88,0,0,1 +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,35,84300,907,1346,404,649,637,218,75842,47066,25607,9991,0,0,8,7,16,3962,9,999999999,20,0.062,0,88,0,0,1 +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,46217,11190,33929,13115,340,1.5,8,8,16,6706,9,999999999,20,0.062,0,88,0,0,1 +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,105886,57249,24135,9908,310,4.1,8,8,16,6706,9,999999999,21,0.062,0,88,0,0,1 +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,101023,54519,22215,9177,320,3.6,7,6,16,3900,9,999999999,22,0.062,0,88,0,0,1 +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,58949,19289,39896,14739,320,4.6,9,8,16,3962,9,999999999,23,0.062,0,88,0,0,1 +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,73420,46114,32437,11889,330,3.1,8,6,16,3962,9,999999999,24,0.062,0,88,0,0,1 +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,6,20,84200,692,1346,427,93,0,93,9484,0,9566,4420,230,5.2,8,7,16,6096,9,999999999,24,0.062,0,88,0,0,1 +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,11093,0,11182,4310,270,6.2,8,8,16,3962,9,999999999,24,0.062,0,88,0,0,1 +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,2248,0,2264,916,290,3.6,9,7,16,3962,9,999999999,24,0.062,0,88,0,0,1 +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,9,6,16,3962,9,999999999,24,0.062,0,88,0,0,1 +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,7,7,16,3353,9,999999999,23,0.062,0,88,0,0,1 +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,3658,9,999999999,24,0.062,0,88,0,0,1 +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,3353,9,999999999,24,0.062,0,88,0,0,1 +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,3658,9,999999999,24,0.062,0,88,0,0,1 +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,3658,9,999999999,23,0.062,0,88,0,0,1 +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,3658,9,999999999,23,0.061,0,88,0,0,1 +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,3658,9,999999999,23,0.061,0,88,0,0,1 +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,77777,9,999999999,22,0.061,0,88,0,0,1 +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,77777,9,999999999,22,0.061,0,88,0,0,1 +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,77777,9,999999999,22,0.061,0,88,0,0,1 +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,77777,9,999999999,21,0.061,0,88,0,0,1 +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,17791,13435,8386,2371,220,4.1,3,3,16,77777,9,999999999,21,0.061,0,88,0,0,1 +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,8.9,36,83200,488,1347,379,356,779,73,41916,36878,8619,3156,230,3.1,3,3,16,77777,9,999999999,20,0.061,0,88,0,0,1 +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,64533,47753,10727,4253,260,4.1,3,3,16,77777,9,999999999,20,0.061,0,88,0,0,1 +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,75172,47433,25617,9970,330,2.6,3,3,16,77777,9,999999999,21,0.061,0,88,0,0,1 +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,45522,10780,33814,13059,320,1.5,5,5,16,77777,9,999999999,21,0.061,0,88,0,0,1 +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,98457,53403,29399,11782,310,4.6,7,7,16,6096,9,999999999,21,0.061,0,88,0,0,1 +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,95429,51658,25707,10471,260,3.1,9,7,16,6096,9,999999999,22,0.061,0,88,0,0,1 +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,79023,42516,32685,12658,210,2.6,9,7,16,6096,9,999999999,22,0.061,0,88,0,0,1 +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,5.6,21,83600,879,1347,431,244,24,229,28347,1872,26745,10228,160,3.1,10,9,16,3353,9,999999999,23,0.061,0,88,0,0,1 +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,20620,431,20371,7425,270,9.8,9,8,16,3048,9,999999999,25,0.061,0,88,0,0,1 +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,7.2,32,82900,451,1347,391,60,0,60,5991,0,6039,2609,280,5.2,7,7,16,3048,9,999999999,26,0.061,0,88,0,0,1 +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,1463,0,1473,618,220,3.1,10,8,16,3658,9,999999999,25,0.061,0,88,0,0,1 +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,3658,9,999999999,24,0.061,0,88,0,0.3,1 +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,12.2,61,82900,0,0,385,0,0,0,0,0,0,0,130,3.1,10,9,16,3048,9,999999999,23,0.061,0,88,0,0,1 +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,3962,9,999999999,23,0.061,0,88,0,0,1 +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,3962,9,999999999,22,0.061,0,88,0,0,1 +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,3962,9,999999999,22,0.061,0,88,0,0,1 +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,6096,9,999999999,21,0.061,0,88,0,0,1 +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,3962,9,999999999,20,0.061,0,88,0,0,1 +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,3962,9,999999999,18,0.061,0,88,0,0,1 +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,3962,9,999999999,18,0.061,0,88,0,0,1 +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,6096,9,999999999,18,0.061,0,88,0,0,1 +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,4267,9,999999999,18,0.061,0,88,0,0,1 +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,6.1,40,83000,18,528,357,0,0,0,0,0,0,0,200,7.7,8,5,16,4267,9,999999999,15,0.061,0,88,0,0,1 +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,3035,0,3057,1214,240,7.7,9,7,16,4267,9,999999999,13,0.061,0,88,0,0,1 +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,13820,0,13931,5130,320,4.6,6,6,16,7620,9,999999999,10,0.061,0,88,0,0,1 +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,31,83400,714,1348,372,306,98,253,34243,8350,28470,9599,320,3.6,6,6,16,7620,9,999999999,10,0.061,0,88,0,0,1 +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,29,83400,900,1348,374,579,443,283,66338,37564,32612,12000,280,2.1,4,4,16,7620,9,999999999,10,0.061,0,88,0,0,1 +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,92565,54529,21356,8779,240,5.2,4,4,16,7620,9,999999999,9,0.061,0,88,0,0,1 +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,105148,58040,17408,7280,190,3.1,3,3,16,77777,9,999999999,9,0.061,0,88,0,0,1 +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.6,14,83600,1087,1348,392,779,683,227,93602,52117,27418,11061,140,4.1,3,3,16,77777,9,999999999,9,0.061,0,88,0,0,1 +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,95886,56739,15143,6332,190,4.6,3,3,16,77777,9,999999999,9,0.061,0,88,0,0,1 +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,68046,85304,13367,2163,240,4.6,3,3,16,77777,9,999999999,10,0.061,0,88,0,0,1 +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,59508,48575,10474,4098,170,2.6,3,3,16,77777,9,999999999,11,0.061,0,88,0,0,1 +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,32053,70655,7749,1099,100,3.6,6,5,16,77777,9,999999999,11,0.061,0,88,0,0,1 +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,11256,0,2935,969,140,5.2,3,3,16,77777,9,999999999,11,0.061,0,88,0,0,1 +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,77777,9,999999999,12,0.061,0,88,0,0,1 +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,-1.1,24,82800,0,0,328,0,0,0,0,0,0,0,160,5.2,0,0,16,77777,9,999999999,12,0.061,0,88,0,0,1 +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,77777,9,999999999,11,0.061,0,88,0,0,1 +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,77777,9,999999999,10,0.061,0,88,0,0,1 +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,77777,9,999999999,9,0.061,0,88,0,0,1 +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,2.2,31,83200,0,0,332,0,0,0,0,0,0,0,220,5.7,0,0,16,77777,9,999999999,9,0.061,0,88,0,0,1 +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,1.7,30,83100,0,0,332,0,0,0,0,0,0,0,220,6.7,0,0,16,77777,9,999999999,8,0.06,0,88,0,0,1 +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,1.1,28,83000,0,0,331,0,0,0,0,0,0,0,210,6.7,0,0,16,77777,9,999999999,7,0.06,0,88,0,0,1 +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,77777,9,999999999,7,0.06,0,88,0,0,1 +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,77777,9,999999999,7,0.06,0,88,0,0,1 +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,77777,9,999999999,7,0.06,0,88,0,0,1 +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.6,37,83200,17,506,308,0,0,0,0,0,0,0,220,3.6,0,0,16,77777,9,999999999,7,0.06,0,88,0,0,1 +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,17182,14169,8187,2291,210,4.6,5,5,16,77777,9,999999999,7,0.06,0,88,0,0,1 +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,38936,36003,7973,2917,210,5.2,0,0,16,77777,9,999999999,8,0.06,0,88,0,0,1 +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,-1.1,18,83800,710,1348,351,512,768,106,61442,48974,12763,4983,190,2.1,0,0,16,77777,9,999999999,8,0.06,0,88,0,0,1 +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,74966,49858,21158,8420,160,3.1,0,0,16,77777,9,999999999,8,0.06,0,88,0,0,1 +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,93859,55927,19762,8164,140,7.2,0,0,16,77777,9,999999999,9,0.06,0,88,0,0,1 +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,90107,95819,12342,3090,110,4.1,0,0,16,77777,9,999999999,9,0.06,0,88,0,0,1 +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,-3.9,10,83800,1083,1348,388,838,947,77,88620,96076,10554,2744,110,3.1,3,3,16,77777,9,999999999,10,0.06,0,88,0,0,1 +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,82969,94847,11620,2526,120,1.5,3,3,16,77777,9,999999999,11,0.06,0,88,0,0,1 +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,69923,90030,12047,2073,120,3.6,4,4,16,77777,9,999999999,12,0.06,0,88,0,0,1 +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,60493,49586,9557,3746,160,6.7,5,5,16,77777,9,999999999,13,0.06,0,88,0,0,1 +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,-3.9,10,82900,438,1348,394,290,689,65,34230,32604,7691,2767,100,7.7,5,5,16,77777,9,999999999,13,0.06,0,88,0,0,1 +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,9300,0,3144,1026,100,4.6,7,6,16,77777,9,999999999,14,0.06,0,88,0,0,1 +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,77777,9,999999999,15,0.06,0,88,0,0,1 +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,77777,9,999999999,15,0.06,0,88,0,0,1 +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,6706,9,999999999,15,0.06,0,88,0,0,1 +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,6706,9,999999999,15,0.06,0,88,0,0,1 +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,6706,9,999999999,15,0.06,0,88,0,0,1 +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,77777,9,999999999,14,0.06,0,88,0,0,1 +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,77777,9,999999999,14,0.06,0,88,0,0,1 +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,77777,9,999999999,13,0.06,0,88,0,0,1 +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,77777,9,999999999,13,0.06,0,88,0,0,1 +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,77777,9,999999999,13,0.06,0,88,0,0,1 +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,77777,9,999999999,13,0.06,0,88,0,0,1 +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,48,83000,16,483,302,0,0,0,0,0,0,0,170,4.6,3,3,16,77777,9,999999999,12,0.06,0,88,0,0,1 +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,15287,10097,7063,2072,160,2.6,3,3,16,77777,9,999999999,11,0.06,0,88,0,0,1 +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,37829,34825,8508,3092,120,3.6,3,3,16,77777,9,999999999,10,0.06,0,88,0,0,1 +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,61487,48671,12410,4851,170,2.6,3,3,16,77777,9,999999999,10,0.06,0,88,0,0,1 +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,79204,52838,15435,6303,220,3.6,3,3,16,77777,9,999999999,9,0.06,0,88,0,0,1 +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,91938,54779,18958,7846,0,0,5,5,16,77777,9,999999999,9,0.06,0,88,0,0,1 +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,11,83600,1084,1349,370,831,884,119,86659,89335,15895,3504,0,0,3,3,16,77777,9,999999999,9,0.06,0,88,0,0,1 +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,98847,56687,18557,7724,320,1.5,3,3,16,77777,9,999999999,9,0.06,0,88,0,0,1 +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,80619,89941,14727,2803,280,1.5,4,4,16,77777,9,999999999,10,0.06,0,88,0,0,1 +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,-11.7,5,83500,862,1349,376,652,819,127,79336,56704,15511,6278,240,3.6,3,3,16,77777,9,999999999,10,0.06,0,88,0,0,1 +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,6,83500,667,1349,382,440,557,164,50758,41776,19002,6914,310,3.1,3,3,16,77777,9,999999999,10,0.06,0,88,0,0,1 +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,11,82800,431,1349,378,294,529,124,32911,32986,13938,4509,10,5.2,5,5,16,77777,9,999999999,11,0.06,0,88,0,0,1 +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,1370,0,1380,570,10,5.2,3,3,16,77777,9,999999999,11,0.06,0,88,0,0,1 +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,77777,9,999999999,11,0.06,0,88,0,0,1 +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,4267,9,999999999,11,0.06,0,88,0,0,1 +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,77777,9,999999999,11,0.06,0,88,0,0,1 +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,77777,9,999999999,11,0.06,0,88,0,0,1 +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,77777,9,999999999,11,0.06,0,88,0,0,1 +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,43,83300,0,0,313,0,0,0,0,0,0,0,120,2.6,5,5,16,77777,9,999999999,11,0.06,0,88,0,0,1 +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,77777,9,999999999,11,0.059,0,88,0,0,1 +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,77777,9,999999999,12,0.059,0,88,0,0,1 +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,77777,9,999999999,11,0.059,0,88,0,0,1 +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,35,83200,0,0,283,0,0,0,0,0,0,0,120,5.2,1,1,16,77777,9,999999999,11,0.059,0,88,0,0,1 +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,77777,9,999999999,11,0.059,0,88,0,0,1 +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,3658,9,999999999,11,0.059,0,88,0,0,1 +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,13365,6444,5518,1718,110,5.7,9,9,16,77777,9,999999999,11,0.059,0,88,0,0,1 +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,28587,21839,15926,5150,100,5.7,10,10,16,3048,9,999999999,11,0.059,0,88,0,0,1 +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,27170,3068,25035,8704,70,5.2,6,6,16,6706,9,999999999,12,0.059,0,88,0,0,1 +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,-3.9,26,83900,888,1350,324,465,243,305,52978,22051,34955,12483,90,6.2,6,6,16,77777,9,999999999,12,0.059,0,88,0,0,1 +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,87038,52447,26928,10746,90,5.7,6,6,16,77777,9,999999999,12,0.059,0,88,0,0,1 +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,97156,55459,21758,8971,120,5.2,7,7,16,77777,9,999999999,12,0.059,0,88,0,0,1 +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,85906,90964,14035,3208,60,2.6,8,7,16,77777,9,999999999,12,0.059,0,88,0,0,1 +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,-3.9,19,83400,996,1350,347,739,806,143,90819,55676,17645,7309,0,0,7,6,16,7620,9,999999999,12,0.059,0,88,0,0,1 +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,76834,55559,21817,8527,30,5.7,9,9,16,3048,9,999999999,13,0.059,0,88,0,0,1 +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,31059,8868,25361,8517,70,6.2,8,7,16,4267,9,999999999,14,0.059,0,88,0,0,1 +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,6397,0,6447,2701,80,3.6,7,7,16,2591,9,999999999,14,0.059,0,88,0,0,1 +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,1660,0,1671,675,60,4.6,10,9,16,2591,9,999999999,14,0.059,0,88,0,0,1 +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,2743,9,999999999,14,0.059,0,88,0,0,1 +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,3353,9,999999999,13,0.059,0,88,0,0,1 +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,3353,9,999999999,13,0.059,0,88,0,0,1 +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,2134,9,999999999,13,0.059,0,88,0,0,1 +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,6.7,80,83700,0,0,317,0,0,0,0,0,0,0,40,3.6,7,7,16,2438,9,999999999,13,0.059,0,88,0,0,1 +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,2134,9,999999999,13,0.059,0,88,0,0,1 +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,1341,9,999999999,12,0.059,0,88,0,0,1 +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,2896,9,999999999,12,0.059,0,88,0,0,1 +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,77777,9,999999999,13,0.059,0,88,0,0,1 +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,77777,9,999999999,14,0.059,0,88,0,0,1 +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,77777,9,999999999,14,0.059,0,88,0,0,1 +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,77777,9,999999999,14,0.059,0,88,0,0,1 +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,15678,9954,6931,2014,180,8.2,0,0,16,77777,9,999999999,13,0.059,0,88,0,0,1 +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,2.8,44,83500,469,1351,324,345,789,70,40662,38058,8272,3002,190,12.4,3,3,16,77777,9,999999999,13,0.059,0,88,0,0,1 +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,65445,51780,10594,4168,180,10.3,3,3,16,77777,9,999999999,13,0.059,0,88,0,0,1 +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,78019,52477,18321,7377,190,8.2,3,3,16,77777,9,999999999,13,0.059,0,88,0,0,1 +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,90365,53078,18222,7560,170,10.8,5,5,16,77777,9,999999999,13,0.059,0,88,0,0,1 +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,96138,53974,21940,9049,160,8.2,7,6,16,5486,9,999999999,14,0.059,0,88,0,0,1 +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,95685,55057,31200,12315,220,4.6,7,5,16,3962,9,999999999,14,0.059,0,88,0,0,1 +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,15175,0,15319,7384,290,8.8,9,7,16,4877,9,999999999,15,0.059,0,88,0,0,1 +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,4,54,83600,850,1351,340,102,0,102,10546,0,10642,5149,210,10.8,10,9,16.1,2400,9,999999999,15,0.059,0,88,0,0,1 +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,2.8,44,83700,654,1351,349,76,0,76,7734,0,7800,3623,220,5.2,10,9,16,2743,9,999999999,15,0.059,0,88,0,0,1 +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,5,51,83400,417,1351,344,138,57,121,15379,3306,13540,4358,250,4.6,8,8,16,3962,9,999999999,16,0.059,0,88,0,0,1 +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,57,83600,157,1351,319,61,198,38,6807,0,4251,1293,240,6.2,3,3,16,77777,9,999999999,15,0.059,0,88,0,0,1 +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,77777,9,999999999,15,0.059,0,88,0,0,1 +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,80,83500,0,0,297,0,0,0,0,0,0,0,180,3.6,3,3,16,6706,9,999999999,14,0.059,0,88,0,0,1 +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,68,83500,0,0,312,0,0,0,0,0,0,0,210,5.2,5,5,16,77777,9,999999999,13,0.059,0,88,0,0,1 +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,74,83500,0,0,307,0,0,0,0,0,0,0,230,4.6,5,5,16,77777,9,999999999,12,0.059,0,88,0,0,1 +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,5,71,83500,0,0,304,0,0,0,0,0,0,0,220,5.7,3,3,16,77777,9,999999999,12,0.059,0,88,0,0.3,1 +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,3.9,66,83500,0,0,291,0,0,0,0,0,0,0,210,5.2,0,0,16,77777,9,999999999,11,0.059,0,88,0,0,1 +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,3.3,63,83500,0,0,290,0,0,0,0,0,0,0,220,5.7,0,0,16,77777,9,999999999,10,0.058,0,88,0,0,1 +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,77777,9,999999999,10,0.058,0,88,0,0,1 +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,77777,9,999999999,10,0.058,0,88,0,0,1 +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,77777,9,999999999,9,0.058,0,88,0,0,1 +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,54,83700,0,0,282,0,0,0,0,0,0,0,220,5.2,0,0,16,77777,9,999999999,9,0.058,0,88,0,0,1 +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,58,83700,12,417,278,0,0,0,0,0,0,0,230,6.2,0,0,16,77777,9,999999999,9,0.058,0,88,0,0,1 +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,46,83900,209,1351,291,134,458,63,14679,9216,6926,1995,230,6.7,0,0,16,77777,9,999999999,8,0.058,0,88,0,0,1 +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,36101,33850,9139,3275,220,6.7,0,0,16,77777,9,999999999,8,0.058,0,88,0,0,1 +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,57300,45984,13056,5056,220,4.6,0,0,16,77777,9,999999999,8,0.058,0,88,0,0,1 +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,17,84400,880,1351,326,618,711,154,74190,50903,18565,7444,250,2.6,0,0,16,77777,9,999999999,8,0.058,0,88,0,0,1 +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,87448,53304,20523,8420,270,2.6,3,3,16,77777,9,999999999,8,0.058,0,88,0,0,1 +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,84446,87338,16694,3425,210,3.1,3,3,16,77777,9,999999999,8,0.058,0,88,0,0,1 +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,83968,90191,13424,3052,140,3.6,3,3,16,77777,9,999999999,8,0.058,0,88,0,0,1 +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,78579,90147,13230,2590,110,3.1,3,3,16,77777,9,999999999,9,0.058,0,88,0,0,1 +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,-7.2,10,84200,844,1351,358,633,854,99,78191,55354,12267,5000,140,3.6,3,3,16,77777,9,999999999,9,0.058,0,88,0,0,1 +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,-7.2,10,84200,648,1351,358,465,797,83,56312,48140,10079,3903,120,4.1,3,3,16,77777,9,999999999,10,0.058,0,88,0,0,1 +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,32533,30134,5773,2085,130,5.7,2,2,16,77777,9,999999999,10,0.058,0,88,0,0,1 +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,7488,31685,3285,462,120,4.1,3,3,16,77777,9,999999999,10,0.058,0,88,0,0,1 +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,77777,9,999999999,10,0.058,0,88,0,0,1 +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,77777,9,999999999,10,0.058,0,88,0,0,1 +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,77777,9,999999999,10,0.058,0,88,0,0,1 +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,34,83800,0,0,310,0,0,0,0,0,0,0,170,8.2,0,0,16,77777,9,999999999,9,0.058,0,88,0,0,1 +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,40,83700,0,0,300,0,0,0,0,0,0,0,170,6.2,0,0,16,77777,9,999999999,9,0.058,0,88,0,0,1 +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,77777,9,999999999,9,0.058,0,88,0,0,1 +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,77777,9,999999999,9,0.058,0,88,0,0,1 +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,2.2,58,83600,0,0,289,0,0,0,0,0,0,0,190,3.6,0,0,16,77777,9,999999999,8,0.058,0,88,0,0,1 +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,77777,9,999999999,8,0.058,0,88,0,0,1 +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,77777,9,999999999,8,0.058,0,88,0,0,1 +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,77777,9,999999999,8,0.058,0,88,0,0,1 +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,44,83600,11,394,314,0,0,0,0,0,0,0,230,5.2,7,6,16,77777,9,999999999,8,0.058,0,88,0,0,1 +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,12842,4394,4970,1554,220,6.2,8,6,16,6706,9,999999999,8,0.058,0,88,0,0,1 +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,31860,27955,16280,5155,240,5.2,9,5,16,6706,9,999999999,8,0.058,0,88,0,0,1 +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,29299,5680,25487,8725,240,3.1,9,5,16,6706,9,999999999,9,0.058,0,88,0,0,1 +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,48275,14750,36968,12837,200,2.1,8,5,16,6706,9,999999999,9,0.058,0,88,0,0,1 +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,13,83600,1003,1352,364,496,181,361,56791,17048,41597,14957,170,2.1,6,5,16,6706,9,999999999,9,0.058,0,88,0,0,1 +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,-5.6,12,84200,1065,1352,374,242,12,233,28945,943,28015,11223,150,2.1,7,7,16,6706,9,999999999,10,0.058,0,88,0,0,1 +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,37549,1565,36125,13795,120,2.1,6,6,16,6706,9,999999999,10,0.058,0,88,0,0,1 +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,53965,16168,39775,14358,90,3.6,4,4,16,6706,9,999999999,10,0.058,0,88,0,0,1 +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,69369,49805,21213,8256,110,5.2,3,3,16,77777,9,999999999,11,0.058,0,88,0,0,1 +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,55931,47380,9163,3555,110,6.2,7,7,16,77777,9,999999999,12,0.058,0,88,0,0,1 +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,29601,29344,13009,4161,110,5.7,6,5,16,77777,9,999999999,13,0.058,0,88,0,0,1 +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,976,0,982,407,50,4.6,6,5,16,77777,9,999999999,12,0.058,0,88,0,0,1 +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,77777,9,999999999,12,0.058,0,88,0,0,1 +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,77777,9,999999999,11,0.058,0,88,0,0,1 +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,-2.2,22,83400,0,0,341,0,0,0,0,0,0,0,330,4.1,3,3,16,77777,9,999999999,10,0.058,0,88,0,0,1 +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,77777,9,999999999,10,0.058,0,88,0,0,1 +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,77777,9,999999999,9,0.058,0,88,0,0,1 +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,-2.2,30,83300,0,0,318,0,0,0,0,0,0,0,260,2.1,3,3,16,77777,9,999999999,9,0.058,0,88,0,0,1 +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,77777,9,999999999,8,0.058,0,88,0,0,1 +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,77777,9,999999999,8,0.058,0,88,0,0,1 +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,77777,9,999999999,7,0.058,0,88,0,0,1 +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,77777,9,999999999,7,0.058,0,88,0,0,1 +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,77777,9,999999999,7,0.058,0,88,0,0,1 +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,77777,9,999999999,7,0.058,0,88,0,0,1 +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,13912,8532,6705,1918,240,2.6,0,0,16,77777,9,999999999,6,0.058,0,88,0,0,1 +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,15,83200,457,1353,333,318,759,60,37889,35790,7165,2607,180,3.6,0,0,16,77777,9,999999999,6,0.058,0,88,0,0,1 +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,-7.8,10,83700,687,1353,354,467,658,132,54919,45598,15583,5896,220,3.1,2,2,16,77777,9,999999999,6,0.058,0,88,0,0,1 +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,72706,95610,10433,1937,200,2.6,3,3,16,77777,9,999999999,6,0.058,0,88,0,0,1 +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,84274,98653,10462,2316,170,4.1,2,2,16,77777,9,999999999,6,0.058,0,88,0,0,1 +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,89964,99593,10989,2677,190,1.5,0,0,16,77777,9,999999999,7,0.058,0,88,0,0,1 +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,87967,99189,9179,2318,200,4.6,3,3,16,77777,9,999999999,7,0.058,0,88,0,0,1 +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,79242,93629,11688,2384,270,1.5,3,3,16,77777,9,999999999,7,0.058,0,88,0,0,1 +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,66019,89346,10767,1884,340,3.6,3,3,16,77777,9,999999999,8,0.058,0,88,0,0,1 +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,-11.7,5,83700,634,1353,376,464,843,68,48914,82198,10121,1479,30,5.2,3,3,16,77777,9,999999999,8,0.058,0,88,0,0,1 +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,31578,29597,5533,1988,30,6.2,6,5,16,77777,9,999999999,8,0.058,0,88,0,0,1 +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,6874,0,2333,750,20,4.6,3,3,16,77777,9,999999999,8,0.058,0,88,0,0,1 +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,77777,9,999999999,8,0.058,0,88,0,0,1 +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,77777,9,999999999,8,0.058,0,88,0,0,1 +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,-7.2,14,83400,0,0,321,0,0,0,0,0,0,0,330,5.7,0,0,16,77777,9,999999999,8,0.058,0,88,0,0,1 +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,77777,9,999999999,8,0.058,0,88,0,0,1 +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,-6.7,20,83200,0,0,300,0,0,0,0,0,0,0,20,4.6,0,0,16,77777,9,999999999,7,0.058,0,88,0,0,1 +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,77777,9,999999999,7,0.058,0,88,0,0,1 +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,28,83200,0,0,300,0,0,0,0,0,0,0,250,3.6,2,2,16,77777,9,999999999,7,0.058,0,88,0,0,1 +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,77777,9,999999999,7,0.058,0,88,0,0,1 +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,6706,9,999999999,7,0.058,0,88,0,0,1 +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,6706,9,999999999,8,0.058,0,88,0,0,1 +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.6,52,83400,0,0,293,0,0,0,0,0,0,0,250,3.6,1,1,16,77777,9,999999999,8,0.058,0,88,0,0,1 +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,6706,9,999999999,8,0.058,0,88,0,0,1 +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,14175,8212,6784,1915,350,1.5,0,0,16,77777,9,999999999,8,0.058,0,88,0,0,1 +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,33608,31037,11966,4086,40,2.6,1,1,16,77777,9,999999999,8,0.058,0,88,0,0,1 +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,55338,43292,13766,5288,50,2.1,1,1,16,7620,9,999999999,8,0.058,0,88,0,0,1 +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,75147,50059,17022,6867,60,3.6,6,6,16,7620,9,999999999,8,0.058,0,88,0,0,1 +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,35,83500,994,1354,358,775,857,143,94933,56862,17589,7294,80,2.6,6,4,16,7620,9,999999999,9,0.058,0,88,0,0,1 +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,82468,44329,30339,12006,90,3.1,7,5,16,7620,9,999999999,9,0.058,0,88,0,0,1 +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,87643,50111,25339,10264,60,4.6,5,5,16,7620,9,999999999,9,0.058,0,88,0,0,1 +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,61343,26717,37099,13611,80,5.2,4,4,16,77777,9,999999999,9,0.058,0,88,0,0,1 +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,71958,52314,18065,7142,90,7.2,7,6,16,77777,9,999999999,9,0.058,0,88,0,0,1 +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,54168,45772,9356,3612,60,6.7,8,7,16,77777,9,999999999,10,0.058,0,88,0,0,1 +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,28985,25783,5736,2053,60,6.2,6,5,16,77777,9,999999999,10,0.058,0,88,0,0,1 +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,6579,0,2428,773,40,5.2,6,5,16,77777,9,999999999,10,0.058,0,88,0,0,1 +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,77777,9,999999999,10,0.058,0,88,0,0,1 +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,77777,9,999999999,10,0.058,0,88,0,0,1 +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,77777,9,999999999,9,0.058,0,88,0,0,1 +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,65,83700,0,0,345,0,0,0,0,0,0,0,60,4.6,6,5,16,77777,9,999999999,9,0.058,0,88,0,0,1 +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,77777,9,999999999,8,0.058,0,88,0,0,1 +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,77777,9,999999999,8,0.058,0,88,0,0,1 +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,77777,9,999999999,7,0.058,0,88,0,0,1 +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,6706,9,999999999,7,0.058,0,88,0,0,1 +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,77777,9,999999999,8,0.058,0,88,0,0,1 +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,77777,9,999999999,9,0.058,0,88,0,0,1 +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,4.4,68,83900,0,0,309,0,0,0,0,0,0,0,350,2.6,9,5,16,77777,9,999999999,10,0.058,0,88,0,0,1 +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,8.9,93,83900,7,350,341,0,0,0,0,0,0,0,0,0,10,10,0.2,61,9,999999999,10,0.058,0,88,0,0,1 +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,9216,1872,5944,1745,0,0,10,10,0.4,30,9,999999999,9,0.058,0,88,0,0,1 +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,8165,0,8231,3363,250,2.6,10,10,0.4,152,9,999999999,9,0.058,0,88,0,0,1 +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,28433,4847,25096,8566,190,2.1,9,5,9.6,77777,9,999999999,9,0.058,0,88,0,0,1 +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,73275,48508,22383,8750,130,2.1,4,3,16,77777,9,999999999,8,0.058,0,88,0,0,1 +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,89932,53458,16551,6879,50,3.6,0,0,16,77777,9,999999999,7,0.058,0,88,0,0,1 +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,82882,87460,16029,3193,60,2.6,0,0,16,77777,9,999999999,7,0.058,0,88,0,0,1 +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,81588,86229,16431,3150,100,4.1,0,0,16,77777,9,999999999,7,0.058,0,88,0,0,1 +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,78624,91528,14210,2543,70,2.1,0,0,16,77777,9,999999999,7,0.058,0,88,0,0,1 +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,65647,90281,10663,1846,0,0,4,2,16,77777,9,999999999,7,0.058,0,88,0,0,1 +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,54960,47296,8899,3433,70,2.6,4,3,16,77777,9,999999999,7,0.058,0,88,0,0,1 +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,11,84000,382,1354,366,237,641,55,27939,25800,6498,2296,90,3.1,4,2,16,77777,9,999999999,7,0.058,0,88,0,0,1 +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,6094,0,2419,763,90,2.6,0,0,16,77777,9,999999999,7,0.058,0,88,0,0,1 +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,77777,9,999999999,7,0.058,0,88,0,0,1 +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,77777,9,999999999,7,0.058,0,88,0,0,1 +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,77777,9,999999999,6,0.058,0,88,0,0,1 +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,77777,9,999999999,6,0.058,0,88,0,0,1 +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,77777,9,999999999,6,0.058,0,88,0,0,1 +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,46,84300,0,0,331,0,0,0,0,0,0,0,240,3.6,3,2,16,77777,9,999999999,6,0.058,0,88,0,0,1 +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,5,51,84200,0,0,323,0,0,0,0,0,0,0,210,4.6,2,2,16,77777,9,999999999,6,0.058,0,88,0,0,1 +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,1,1,16,77777,9,999999999,6,0.058,0,88,0,0,1 +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,77777,9,999999999,6,0.058,0,88,0,0,1 +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,77777,9,999999999,6,0.058,0,88,0,0,1 +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,77777,9,999999999,7,0.058,0,88,0,0,1 +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,77777,9,999999999,7,0.058,0,88,0,0,1 +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,13371,6853,6655,1855,240,2.1,0,0,16,77777,9,999999999,7,0.058,0,88,0,0,1 +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.6,27,84200,445,1355,330,298,672,76,34709,32874,8878,3151,240,5.7,0,0,16,77777,9,999999999,7,0.058,0,88,0,0,1 +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,21,84800,674,1355,351,468,696,121,55188,45642,14321,5446,240,4.1,1,1,16,77777,9,999999999,7,0.058,0,88,0,0,1 +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,74718,52355,16480,6631,150,2.1,2,2,16,77777,9,999999999,7,0.058,0,88,0,0,1 +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,83524,52189,22247,9013,150,2.1,4,3,16,77777,9,999999999,8,0.058,0,88,0,0,1 +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,90832,54126,24032,9772,160,2.1,4,4,16,77777,9,999999999,8,0.058,0,88,0,0,1 +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,83129,48582,26689,10697,160,3.1,4,4,16,7620,9,999999999,9,0.058,0,88,0,0,1 +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,6,84000,956,1355,384,731,841,136,89696,58605,16753,6899,160,5.2,2,2,16,7620,9,999999999,9,0.058,0,88,0,0,1 +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,71715,52746,12892,5197,130,4.1,2,2,16,7620,9,999999999,9,0.058,0,88,0,0,1 +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,-9.4,6,84700,614,1355,380,419,561,164,47812,42029,18797,6606,110,3.6,3,3,16,6706,9,999999999,10,0.058,0,88,0,0,1 +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,13961,3693,11885,3771,130,4.6,8,8,16,6706,9,999999999,10,0.058,0,88,0,0,1 +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,1948,0,1961,724,140,4.1,7,6,16,6706,9,999999999,10,0.058,0,88,0,0,1 +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,17,84300,0,0,343,0,0,0,0,0,0,0,150,4.1,6,4,16,6706,9,999999999,11,0.058,0,88,0,0,1 +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,3962,9,999999999,11,0.058,0,88,0,0,1 +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,6706,9,999999999,12,0.058,0,88,0,0,1 +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,77777,9,999999999,14,0.058,0,88,0,0,1 +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,77777,9,999999999,15,0.058,0,88,0,0,1 +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,77777,9,999999999,16,0.058,0,88,0,0,1 +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,6096,9,999999999,17,0.057,0,88,0,0,1 +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,6096,9,999999999,17,0.057,0,88,0,0,1 +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,77777,9,999999999,17,0.057,0,88,0,0,1 +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,77777,9,999999999,17,0.057,0,88,0,0,1 +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,6096,9,999999999,17,0.057,0,88,0,0,1 +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,-2.2,22,83900,6,305,349,0,0,0,0,0,0,0,210,5.2,8,6,16,6096,9,999999999,17,0.057,0,88,0,0,1 +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,9530,3146,6848,1863,200,6.2,5,4,16,3962,9,999999999,17,0.057,0,88,0,0,1 +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,19740,6485,16396,5041,220,7.7,3,3,16,4877,9,999999999,17,0.057,0,88,0,0,1 +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,53963,44583,18838,6858,220,6.7,3,3,16,77777,9,999999999,17,0.057,0,88,0,0,1 +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,70177,48104,20769,8155,210,6.2,10,6,16,6096,9,999999999,17,0.057,0,88,0,0,1 +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,48963,10964,39139,14196,200,8.2,10,6,16,4877,9,999999999,17,0.057,0,88,0,0,1 +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,26757,453,26415,10632,180,7.2,10,6,16,4877,9,999999999,17,0.057,0,88,0,0,1 +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,23720,0,23947,10829,180,5.2,10,7,16,3900,9,999999999,18,0.057,0,88,0,0,1 +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,15706,0,15854,7537,260,10.3,10,9,6.4,3353,9,999999999,18,0.057,0,88,0,0,1 +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,9873,0,9962,4785,320,5.2,10,7,16,3962,9,999999999,19,0.057,0,88,0,0,1 +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,27564,7694,22657,7525,310,4.1,9,7,16,3962,9,999999999,20,0.057,0,88,0,0,1 +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,16465,8214,11615,3686,10,1.5,9,7,16,4877,9,999999999,20,0.057,0,88,0,0,1 +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,29,83800,109,1254,382,8,0,8,776,0,781,320,0,0,9,7,16,3962,9,999999999,20,0.057,0,88,0,0,1 +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,3048,9,999999999,19,0.057,0,88,0,0,1 +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,3048,9,999999999,19,0.057,0,88,0,0,1 +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,3600,9,999999999,20,0.057,0,88,0,0,1 +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,3962,9,999999999,21,0.057,0,88,0,0,1 +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,69,83600,0,0,347,0,0,0,0,0,0,0,60,2.6,9,7,16,6096,9,999999999,23,0.057,0,88,0,0,1 +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,2896,9,999999999,23,0.057,0,88,0,0,1 +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,2743,9,999999999,23,0.057,0,88,0,0,1 +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,75,83600,0,0,354,0,0,0,0,0,0,0,170,4.1,10,9,16,2896,9,999999999,23,0.057,0,88,0,0,1 +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,10,72,83600,0,0,344,0,0,0,0,0,0,0,170,5.7,9,7,16,3962,9,999999999,21,0.057,0,88,0,0,1 +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,75,83600,0,0,364,0,0,0,0,0,0,0,140,3.6,10,10,16,4267,9,999999999,20,0.057,0,88,0,0,1 +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,4572,9,999999999,18,0.057,0,88,0,0,1 +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,4267,9,999999999,17,0.057,0,88,0,0,1 +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,83,83700,180,1357,330,64,16,62,6895,180,6705,1824,90,5.2,7,6,16,4267,9,999999999,16,0.057,0,88,0,0,1 +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,10.6,75,83700,437,1357,335,172,83,145,18893,5134,16001,4950,90,6.2,4,4,16,4267,9,999999999,16,0.057,0,88,0,0,1 +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,69,84000,666,1357,353,476,616,172,54292,43112,19710,7107,90,6.2,8,8,16,396,9,999999999,15,0.057,0,88,0,0,1 +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,61527,36698,27584,10302,50,6.2,8,8,16,1524,9,999999999,15,0.057,0,88,0,0,1 +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,65265,29484,37097,13668,60,5.7,8,8,16,1524,9,999999999,15,0.057,0,88,0,0,1 +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,92556,52426,23434,9577,60,5.7,9,8,16,1524,9,999999999,16,0.057,0,88,0,0,1 +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,85144,47927,27181,10881,50,4.6,9,8,16,1524,9,999999999,17,0.057,0,88,0,0,1 +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,47598,11082,37811,13632,70,5.7,8,8,16,1981,9,999999999,18,0.057,0,88,0,0,1 +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,23539,895,22838,8648,40,7.7,8,8,16,2438,9,999999999,19,0.057,0,88,0,0,1 +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,8088,0,8156,3677,200,6.2,9,9,16,2100,9,999999999,20,0.057,0,88,0,0,1 +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,60,83500,361,1357,364,38,0,38,3758,0,3788,1635,280,6.2,8,8,16,3962,9,999999999,21,0.057,0,88,0,0,1 +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,65,83900,102,1210,352,5,0,5,483,0,487,204,260,4.1,7,7,12.8,3658,9,999999999,21,0.057,0,88,0,0,1 +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,20,0.057,0,88,0,0,1 +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,2,2,16,3962,9,999999999,19,0.057,0,88,0,0,1 +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,6096,9,999999999,18,0.057,0,88,0,0,1 +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,5,5,16,77777,9,999999999,17,0.057,0,88,0,0,1 +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,77777,9,999999999,17,0.057,0,88,0,0,1 +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,77777,9,999999999,16,0.057,0,88,0,0,1 +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,6.7,80,83400,0,0,294,0,0,0,0,0,0,0,190,3.6,0,0,16,77777,9,999999999,16,0.058,0,88,0,0,1 +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,77777,9,999999999,15,0.058,0,88,0,0,1 +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,77777,9,999999999,15,0.058,0,88,0,0,1 +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,77777,9,999999999,15,0.058,0,88,0,0,1 +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,6.7,80,83400,0,0,309,0,0,0,0,0,0,0,230,2.6,4,4,16,77777,9,999999999,14,0.058,0,88,0,0,1 +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,77777,9,999999999,14,0.058,0,88,0,0,1 +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,12753,4598,6400,1755,300,1.5,0,0,16,77777,9,999999999,14,0.058,0,88,0,0,1 +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,33180,30917,10947,3738,0,0,5,5,16,77777,9,999999999,13,0.058,0,88,0,0,1 +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,53369,42967,14686,5543,360,2.1,3,3,16,77777,9,999999999,13,0.058,0,88,0,0,1 +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,69296,46904,17846,7113,0,0,5,5,16,77777,9,999999999,13,0.058,0,88,0,0,1 +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,30,83300,971,1357,379,707,779,148,86057,52302,18090,7453,60,2.1,7,7,16,77777,9,999999999,13,0.058,0,88,0,0,1 +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,89797,52431,20995,8641,110,3.1,5,5,16,6706,9,999999999,14,0.058,0,88,0,0,1 +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,88956,53506,26897,10744,0,0,7,6,16,6706,9,999999999,15,0.058,0,88,0,0,1 +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,40663,6740,34664,12769,50,2.1,8,7,16,6706,9,999999999,16,0.058,0,88,0,0,1 +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,40589,12063,31751,10976,90,5.7,6,5,16,6706,9,999999999,17,0.058,0,88,0,0,1 +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,28515,8085,23756,7635,80,6.2,7,7,16,6706,9,999999999,17,0.058,0,88,0,0,1 +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,17914,11595,11169,3518,80,7.7,9,9,16,6706,9,999999999,17,0.058,0,88,0,0,1 +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,3785,0,2678,792,0,0,7,6,16,6706,9,999999999,17,0.058,0,88,0,0,1 +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,2.2,31,83300,0,0,349,0,0,0,0,0,0,0,160,4.6,4,4,16,6706,9,999999999,16,0.058,0,88,0,0,1 +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,4572,9,999999999,16,0.058,0,88,0,0,1 +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,43,83300,0,0,365,0,0,0,0,0,0,0,240,4.6,9,9,16,6706,9,999999999,15,0.058,0,88,0,0,1 +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,6706,9,999999999,14,0.058,0,88,0,0,1 +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,5,51,83000,0,0,338,0,0,0,0,0,0,0,220,3.6,7,7,16,6706,9,999999999,13,0.058,0,88,0,0,1 +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,49,83100,0,0,316,0,0,0,0,0,0,0,260,3.1,0,0,16,77777,9,999999999,13,0.058,0,88,0,0,1 +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,77777,9,999999999,12,0.058,0,88,0,0,1 +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,77777,9,999999999,12,0.058,0,88,0,0,1 +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,6,4,16,6096,9,999999999,12,0.058,0,88,0,0,1 +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,3.9,47,83000,0,0,330,0,0,0,0,0,0,0,0,0,10,5,16,6096,9,999999999,13,0.058,0,88,0,0,1 +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,9,5,16,6096,9,999999999,13,0.058,0,88,0,0,1 +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,4267,9,999999999,12,0.058,0,88,0,0,1 +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,1267,0,1276,529,350,2.6,9,5,16,4267,9,999999999,12,0.058,0,88,0,0,1 +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,4482,0,4518,1982,10,4.1,9,6,16,4267,9,999999999,12,0.058,0,88,0,0,1 +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,10864,0,10957,4861,10,3.1,9,7,16,3962,9,999999999,12,0.058,0,88,0,0,1 +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,56481,30155,31484,11272,10,2.1,10,6,16,6096,9,999999999,12,0.058,0,88,0,0,1 +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,43044,4772,38847,14030,340,3.6,9,6,16,4267,9,999999999,12,0.058,0,88,0,0,1 +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,43060,2634,40686,14904,50,2.6,9,9,16,6096,9,999999999,13,0.058,0,88,0,0,1 +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,9.4,50,83400,1014,1358,374,469,156,352,53621,13687,40504,14791,20,3.1,10,8,16,6096,9,999999999,13,0.058,0,88,0,0,1 +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,49,83000,932,1358,374,643,620,217,75419,45513,25584,10064,20,2.6,10,7,16,6096,9,999999999,13,0.058,0,88,0,0,1 +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,62833,44094,20495,7861,20,3.6,7,6,16,6096,9,999999999,14,0.058,0,88,0,0,1 +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,35123,21188,21067,7035,70,3.6,7,6,16,4267,9,999999999,15,0.058,0,88,0,0,1 +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,22863,18389,9040,2984,50,3.6,9,8,16,6706,9,999999999,16,0.058,0,88,0,0,1 +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,3458,0,1616,510,40,3.1,7,6,16,6706,9,999999999,16,0.058,0,88,0,0,1 +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,6706,9,999999999,16,0.058,0,88,0,0,1 +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,6706,9,999999999,17,0.058,0,88,0,0,1 +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,6706,9,999999999,16,0.058,0,88,0,0,1 +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,4267,9,999999999,16,0.058,0,88,0,0,1 +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,1128,9,999999999,16,0.058,0,88,0,0,1 +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,305,9,999999999,17,0.058,0,88,0,0,1 +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,17,0.058,0,88,0,0,1 +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,17,0.058,0,88,0,0,1 +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,9.4,96,83200,0,0,342,0,0,0,0,0,0,0,10,3.1,10,10,0.8,30,9,999999999,17,0.058,0,88,0,0,1 +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,9,100,83200,0,0,337,0,0,0,0,0,0,0,10,3.6,10,10,0.4,30,9,999999999,17,0.058,0,88,0,0,1 +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,30,9,999999999,16,0.058,0,88,0,0,1 +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,30,9,999999999,15,0.058,0,88,0,0,1 +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,8,100,83400,168,1359,331,41,0,41,3990,0,4018,1372,20,2.6,10,10,0,90,9,999999999,14,0.058,0,88,0,0,1 +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,5969,0,6016,2541,40,2.6,10,10,3.2,61,9,999999999,13,0.058,0,88,0,0,1 +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,8.3,89,83600,653,1359,341,107,0,107,10854,0,10947,4848,0,0,10,10,4.8,61,9,999999999,13,0.058,0,88,0,0,1 +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,39174,10195,30833,11072,30,2.6,9,9,16,518,9,999999999,13,0.058,0,88,0,0,1 +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,65090,30113,37458,13643,60,2.1,5,5,16,77777,9,999999999,13,0.058,0,88,0,0,1 +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,87329,50491,25506,10279,80,2.6,5,5,16,77777,9,999999999,13,0.058,0,88,0,0,1 +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,7.2,43,83800,1008,1359,358,747,838,124,92554,52873,15422,6452,110,2.6,5,5,16,77777,9,999999999,13,0.058,0,88,0,0,1 +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,84584,51988,13526,5608,90,3.1,4,4,16,77777,9,999999999,14,0.058,0,88,0,0,1 +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,64577,46326,14792,5868,50,3.6,4,4,16,77777,9,999999999,14,0.058,0,88,0,0,1 +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,50016,42258,8579,3271,100,5.2,5,5,16,77777,9,999999999,14,0.058,0,88,0,0,1 +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,24137,19183,5754,2005,50,3.6,5,5,16,77777,9,999999999,14,0.058,0,88,0,0,1 +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,44,83800,84,1099,337,22,171,12,2559,0,1397,442,80,3.6,3,3,16,77777,9,999999999,14,0.058,0,88,0,0,1 +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,77777,9,999999999,13,0.058,0,88,0,0,1 +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,77777,9,999999999,13,0.058,0,88,0,0,1 +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,77777,9,999999999,12,0.058,0,88,0,0,1 +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,77777,9,999999999,12,0.058,0,88,0,0,1 +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,77777,9,999999999,11,0.058,0,88,0,0,1 +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,77777,9,999999999,11,0.058,0,88,0,0,1 +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,10,0.058,0,88,0,0,1 +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,10,0.058,0,88,0,0,1 +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,10,0.058,0,88,0,0,1 +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,11,0.058,0,88,0,0,1 +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,96,84100,0,0,286,0,0,0,0,0,0,0,180,3.6,3,3,12.8,77777,9,999999999,11,0.058,0,88,0,0,1 +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,93,84000,2,193,276,0,0,0,0,0,0,0,210,3.1,0,0,14.4,77777,9,999999999,11,0.058,0,88,0,0,1 +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,11122,0,4349,1313,180,3.1,3,3,16,77777,9,999999999,10,0.058,0,88,0,0,1 +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,36021,32035,6314,2276,130,4.1,4,4,16,77777,9,999999999,10,0.058,0,88,0,0,1 +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,34,84500,648,1360,324,464,796,83,56032,46621,10051,3887,120,7.2,3,3,16,77777,9,999999999,10,0.058,0,88,0,0,1 +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,70190,49170,15374,6169,140,7.2,1,1,16,77777,9,999999999,9,0.058,0,88,0,0,1 +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,81808,50783,18960,7753,130,7.2,0,0,16,77777,9,999999999,9,0.058,0,88,0,0,1 +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,93574,54963,16381,6831,110,3.1,0,0,16,77777,9,999999999,9,0.058,0,88,0,0,1 +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,19,84600,1002,1360,355,747,874,101,78686,88573,13863,2698,100,2.1,0,0,16,77777,9,999999999,9,0.058,0,88,0,0,1 +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,72664,88436,13280,2297,80,3.1,0,0,16,77777,9,999999999,9,0.058,0,88,0,0,1 +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,68160,50590,11086,4450,50,1.5,0,0,16,77777,9,999999999,9,0.058,0,88,0,0,1 +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,48419,40726,7784,2971,120,6.7,0,0,16,77777,9,999999999,10,0.058,0,88,0,0,1 +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,5,28,83700,332,1360,374,200,648,41,23715,17669,4870,1710,160,8.2,4,3,16,77777,9,999999999,10,0.058,0,88,0,0,1 +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,2366,0,1065,340,170,4.6,0,0,16,77777,9,999999999,10,0.058,0,88,0,0,1 +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,39,84300,0,0,333,0,0,0,0,0,0,0,220,4.1,0,0,16,77777,9,999999999,10,0.058,0,88,0,0,1 +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,77777,9,999999999,10,0.058,0,88,0,0,1 +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,77777,9,999999999,10,0.058,0,88,0,0,1 +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,77777,9,999999999,10,0.058,0,88,0,0,1 +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,77777,9,999999999,9,0.058,0,88,0,0,1 +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,77777,9,999999999,10,0.058,0,88,0,0,1 +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,77777,9,999999999,10,0.058,0,88,0,0,1 +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,77777,9,999999999,11,0.058,0,88,0,0,1 +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,2.8,44,83600,0,0,311,0,0,0,0,0,0,0,230,5.2,0,0,16,77777,9,999999999,12,0.058,0,88,0,0,1 +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,77777,9,999999999,13,0.058,0,88,0,0,1 +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,77777,9,999999999,14,0.058,0,88,0,0,1 +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,77777,9,999999999,14,0.058,0,88,0,0,1 +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,31,83900,159,1361,328,103,309,66,10956,4787,7049,1728,200,3.6,3,2,16,77777,9,999999999,14,0.058,0,88,0,0,1 +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,24,83700,416,1361,358,152,110,118,16956,6439,13217,4230,200,4.1,6,6,16,77777,9,999999999,13,0.058,0,88,0,0,1 +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,19,84300,644,1361,384,437,562,171,49831,41673,19588,6939,230,4.6,9,7,16,6706,9,999999999,13,0.058,0,88,0,0,1 +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,41277,11401,32645,11411,240,5.7,7,6,16,6706,9,999999999,13,0.058,0,88,0,0,1 +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,66107,33154,36192,13227,200,4.6,4,4,16,6706,9,999999999,13,0.058,0,88,0,0,1 +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.6,14,84200,1009,1361,392,782,847,151,95708,58544,18558,7674,220,5.2,3,3,16,6706,9,999999999,14,0.058,0,88,0,0,1 +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,91820,56725,18981,7820,190,1.5,6,5,16,6096,9,999999999,15,0.058,0,88,0,0,1 +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,15,83300,914,1361,396,550,369,301,62905,32684,34630,12579,160,5.2,8,5,16,6096,9,999999999,16,0.058,0,88,0,0,1 +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,14345,0,14473,6493,170,3.1,9,8,16,3353,9,999999999,17,0.058,0,88,0,0,1 +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,39390,29157,22577,7174,170,3.1,10,7,16,4267,9,999999999,17,0.058,0,88,0,0,1 +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,12328,3638,10144,3165,170,2.6,9,7,16,3353,9,999999999,17,0.058,0,88,0,0.5,1 +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,12,72,83800,73,1032,370,6,0,6,577,0,581,233,330,6.7,10,9,16,2134,9,999999999,19,0.058,0,88,0,0,1 +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,3300,9,999999999,20,0.058,0,88,0,0.3,1 +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,11.7,81,83500,0,0,359,0,0,0,0,0,0,0,330,6.7,10,9,16,2896,9,999999999,22,0.058,0,88,0,0,1 +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,11.1,77,83600,0,0,369,0,0,0,0,0,0,0,230,1.5,10,10,16,3048,9,999999999,22,0.058,0,88,0,0,1 +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,2438,9,999999999,23,0.058,0,88,0,0,1 +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,11.7,81,83500,0,0,369,0,0,0,0,0,0,0,220,4.6,10,10,16,2591,9,999999999,23,0.058,0,88,0,0,1 +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,12.8,87,83400,0,0,361,0,0,0,0,0,0,0,220,5.7,10,9,16,2743,9,999999999,23,0.058,0,88,0,0,1 +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,10.6,75,83500,0,0,368,0,0,0,0,0,0,0,230,7.2,10,10,16,2286,9,999999999,23,0.058,0,88,0,0,1 +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,75,83500,0,0,364,0,0,0,0,0,0,0,240,4.6,10,10,16,2438,9,999999999,23,0.058,0,88,0,0,1 +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,83,83700,0,0,356,0,0,0,0,0,0,0,20,9.3,10,10,16,2134,9,999999999,22,0.058,0,88,0,0,1 +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,74,83600,0,0,325,0,0,0,0,0,0,0,20,9.3,10,9,16,1676,9,999999999,22,0.058,0,88,0,0,1 +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,77,84100,0,0,322,0,0,0,0,0,0,0,360,6.2,10,9,16,1524,9,999999999,21,0.058,0,88,0,0,1 +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,823,9,999999999,20,0.058,0,88,0,0.1,1 +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,9667,2853,6827,1677,360,6.2,10,10,16,671,9,999999999,20,0.058,0,88,0,0,1 +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,6069,0,6116,2549,360,3.1,10,10,4.8,5182,9,999999999,19,0.058,0,88,0,0,1 +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,7507,0,7571,3494,350,4.6,8,8,16,457,9,999999999,19,0.058,0,88,0,0,1 +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,5,81,84400,822,1361,327,109,0,109,11230,0,11331,5377,10,5.1,10,10,16.1,600,9,999999999,18,0.058,0,88,0,0,1 +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,3.9,66,84400,946,1361,319,279,18,266,32338,1479,31005,11773,30,4.6,8,8,16,1219,9,999999999,17,0.058,0,88,0,0,1 +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,43752,4323,39880,14527,40,3.1,8,8,16,732,9,999999999,17,0.058,0,88,0,0,1 +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,62598,26450,37790,13912,40,3.1,8,8,16,853,9,999999999,17,0.058,0,88,0,0,1 +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,30215,2398,28040,10708,10,3.1,8,8,16,1036,9,999999999,16,0.058,0,88,0,0,1 +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,32939,6942,27883,9805,360,1.5,8,8,16,1097,9,999999999,15,0.058,0,88,0,0,1 +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,18484,847,18001,6122,100,2.1,8,8,16,1097,9,999999999,14,0.058,0,88,0,0,1 +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,9296,436,8991,2870,160,3.1,5,5,16,77777,9,999999999,13,0.058,0,88,0,0,1 +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,1726,0,1267,392,150,2.1,4,4,16,77777,9,999999999,12,0.058,0,88,0,0,1 +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,77777,9,999999999,12,0.058,0,88,0,0,1 +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,77777,9,999999999,12,0.058,0,88,0,0,1 +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,77777,9,999999999,12,0.058,0,88,0,0,1 +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,2.8,86,84100,0,0,279,0,0,0,0,0,0,0,170,4.1,2,2,16,77777,9,999999999,11,0.058,0,88,0,0,1 +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,77777,9,999999999,11,0.058,0,88,0,0.4,1 +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,77777,9,999999999,12,0.058,0,88,0,0,1 +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,77777,9,999999999,12,0.059,0,88,0,0,1 +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,77777,9,999999999,13,0.059,0,88,0,0,1 +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,77777,9,999999999,12,0.059,0,88,0,0,1 +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,77777,9,999999999,11,0.059,0,88,0,0,1 +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,6096,9,999999999,11,0.059,0,88,0,0,1 +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,6096,9,999999999,11,0.059,0,88,0,0,1 +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,1557,0,1568,625,0,0,4,4,16,6096,9,999999999,11,0.059,0,88,0,0,1 +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,14486,2885,12755,4086,270,1.5,4,3,16,6096,9,999999999,11,0.059,0,88,0,0,1 +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,47000,33628,26353,8430,0,0,4,2,14.4,6096,9,999999999,12,0.059,0,88,0,0,1 +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,17082,0,17236,7648,170,2.6,8,4,16,6096,9,999999999,12,0.059,0,88,0,0,1 +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,52252,16796,37685,13524,250,3.1,8,6,16,6096,9,999999999,12,0.059,0,88,0,0,1 +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,73623,38917,34934,13174,210,3.1,6,5,16,6096,9,999999999,12,0.059,0,88,0,0,1 +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,40743,8855,31843,12213,250,2.6,7,6,16,6096,9,999999999,13,0.059,0,88,0,0,1 +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,73032,48078,26427,10168,140,2.1,8,7,16,3962,9,999999999,13,0.059,0,88,0,0,1 +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,40429,16388,28728,9944,70,3.1,9,6,16,4267,9,999999999,13,0.059,0,88,0,0,1 +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,26899,8826,22028,6946,70,3.1,9,7,16,4267,9,999999999,13,0.059,0,88,0,0,1 +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,10121,935,9599,2981,70,3.1,7,7,16,3962,9,999999999,13,0.059,0,88,0,0,1 +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,1289,0,938,295,40,3.1,10,6,16,4572,9,999999999,13,0.059,0,88,0,0,1 +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,4572,9,999999999,13,0.059,0,88,0,0,1 +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,4572,9,999999999,13,0.059,0,88,0,0,1 +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,6706,9,999999999,12,0.059,0,88,0,0,1 +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,6096,9,999999999,12,0.059,0,88,0,0,1 +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,6096,9,999999999,11,0.059,0,88,0,0,1 +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,11,0.059,0,88,0,0,1 +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,10,0.059,0,88,0,0,1 +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,10,0.059,0,88,0,0,1 +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,6096,9,999999999,11,0.059,0,88,0,0,1 +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,6096,9,999999999,12,0.059,0,88,0,0,1 +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,6096,9,999999999,13,0.059,0,88,0,0,1 +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,77777,9,999999999,12,0.059,0,88,0,0,1 +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,10532,1573,5717,1497,220,5.7,0,0,16,77777,9,999999999,12,0.059,0,88,0,0,1 +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,30090,28257,8240,2866,240,5.2,0,0,16,77777,9,999999999,11,0.059,0,88,0,0,1 +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,53640,46988,11906,4512,250,4.1,0,0,16,77777,9,999999999,11,0.059,0,88,0,0,1 +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,62008,42814,25602,9479,280,2.6,0,0,16,77777,9,999999999,11,0.059,0,88,0,0,1 +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,80696,53196,19717,7977,310,1.5,0,0,16,77777,9,999999999,11,0.059,0,88,0,0,1 +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,90954,56210,15319,6372,340,3.6,0,0,16,77777,9,999999999,12,0.059,0,88,0,0,1 +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,78411,91769,12616,2469,40,5.7,3,3,16,77777,9,999999999,13,0.059,0,88,0,0,1 +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,71222,90333,11873,2115,320,3.6,3,3,16,77777,9,999999999,13,0.059,0,88,0,0,1 +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,64978,49746,10923,4350,330,3.1,3,3,16,77777,9,999999999,14,0.059,0,88,0,0,1 +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,45437,40527,7529,2841,340,3.6,3,3,16,77777,9,999999999,14,0.059,0,88,0,0,1 +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,20808,15782,4947,1702,20,3.1,5,5,16,77777,9,999999999,14,0.059,0,88,0,0,1 +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,1195,8096,1023,177,360,2.1,0,0,16,77777,9,999999999,14,0.059,0,88,0,0,1 +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,77777,9,999999999,14,0.059,0,88,0,0,1 +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,77777,9,999999999,14,0.059,0,88,0,0,1 +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,-2.8,21,83500,0,0,340,0,0,0,0,0,0,0,50,2.1,3,3,16,77777,9,999999999,14,0.059,0,88,0,0,1 +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,77777,9,999999999,14,0.059,0,88,0,0,1 +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,77777,9,999999999,14,0.059,0,88,0,0,1 +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,40,83100,0,0,320,0,0,0,0,0,0,0,230,3.2,0,0,16,77777,9,999999999,13,0.059,0,88,0,0,1 +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,6096,9,999999999,11,0.06,0,88,0,0,1 +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,39,83000,0,0,332,0,0,0,0,0,0,0,200,3.9,9,4,16,6096,9,999999999,11,0.06,0,88,0,0,1 +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,6096,9,999999999,11,0.06,0,88,0,0,1 +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,6096,9,999999999,12,0.06,0,88,0,0,1 +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,7620,9,999999999,12,0.06,0,88,0,0,1 +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,1.1,39,83100,0,80,322,0,0,0,0,0,0,0,190,5.2,8,3,16,7620,9,999999999,13,0.06,0,88,0,0,1 +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,1655,0,1666,652,190,5.2,7,4,16,6706,9,999999999,13,0.06,0,88,0,0,1 +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,33328,31002,7151,2520,200,2.6,7,5,16,6706,9,999999999,13,0.06,0,88,0,0,1 +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,57432,50994,12213,4611,270,6.2,7,5,16,6096,9,999999999,14,0.06,0,88,0,0,1 +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,62958,43377,27685,10030,270,5.7,7,4,16,6706,9,999999999,14,0.06,0,88,0,0,1 +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,80728,52664,19119,7753,210,5.2,7,4,16,6706,9,999999999,15,0.06,0,88,0,0,1 +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,19,83500,986,1365,371,763,841,153,92954,58356,18718,7703,240,2.6,6,4,16,6706,9,999999999,14,0.06,0,88,0,0,1 +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,92224,57244,15138,6289,350,4.1,6,4,16,6706,9,999999999,14,0.06,0,88,0,0,1 +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,81272,54182,13240,5437,230,3.6,5,4,16,7315,9,999999999,14,0.06,0,88,0,0,1 +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,59245,45828,16911,6500,250,2.1,4,3,16,7315,9,999999999,14,0.06,0,88,0,0,1 +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,41591,38585,14148,4993,150,4.1,5,4,16,77777,9,999999999,13,0.06,0,88,0,0,1 +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,16207,11490,7790,2505,130,4.1,10,5,16,77777,9,999999999,13,0.06,0,88,0,0,1 +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,719,0,599,189,160,3.1,4,3,16,77777,9,999999999,13,0.06,0,88,0,0,1 +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,77777,9,999999999,12,0.06,0,88,0,0,1 +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,77777,9,999999999,12,0.06,0,88,0,0,1 +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,77777,9,999999999,12,0.06,0,88,0,0,1 +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,-2.2,22,83200,0,0,346,0,0,0,0,0,0,0,190,2.6,10,5,16,77777,9,999999999,12,0.06,0,88,0,0,1 +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,36,83000,0,0,326,0,0,0,0,0,0,0,160,3.6,10,5,16,77777,9,999999999,11,0.06,0,88,0,0,1 +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,2.2,42,83100,0,0,310,0,0,0,0,0,0,0,40,9.3,1,0,16,77777,9,999999999,11,0.06,0,88,0,0,1 +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,5.6,74,83000,0,0,292,0,0,0,0,0,0,0,50,4.6,0,0,16,77777,9,999999999,12,0.06,0,88,0,0,1 +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,74,83000,0,0,289,0,0,0,0,0,0,0,280,1.5,0,0,16,77777,9,999999999,12,0.06,0,88,0,0,1 +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,82,82900,0,0,283,0,0,0,0,0,0,0,240,3.6,0,0,16,77777,9,999999999,12,0.06,0,88,0,0,1 +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,80,83000,0,0,285,0,0,0,0,0,0,0,250,2.1,0,0,16,6706,9,999999999,12,0.06,0,88,0,0,1 +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,1,0,16,77777,9,999999999,13,0.06,0,88,0,0,1 +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,3.9,93,82900,0,57,282,0,0,0,0,0,0,0,150,2.6,3,3,16,77777,9,999999999,13,0.06,0,88,0,0,1 +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,77777,9,999999999,13,0.06,0,88,0,0,1 +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,33533,29573,6699,2371,0,0,5,4,16,77777,9,999999999,13,0.06,0,88,0,0,1 +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,51375,43700,13594,5067,30,2.1,5,4,16,77777,9,999999999,14,0.06,0,88,0,0,1 +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,67144,92425,12911,1895,70,2.6,6,4,16,77777,9,999999999,14,0.06,0,88,0,0,1 +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,6.7,42,83100,925,1365,357,714,906,98,76018,92291,13695,2319,100,2.1,6,5,16,7315,9,999999999,14,0.06,0,88,0,0,1 +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,79599,90733,15112,2645,30,3.6,6,5,16,7315,9,999999999,15,0.06,0,88,0,0,1 +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,6.1,30,83600,966,1365,385,734,832,144,89396,55114,17611,7261,50,3.1,8,6,16,7315,9,999999999,16,0.06,0,88,0,0,1 +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,25,83700,881,1365,389,624,738,146,74997,49851,17620,7110,70,4.1,7,5,16,7315,9,999999999,17,0.06,0,88,0,0,1 +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,65062,49798,11445,4535,90,4.1,6,4,16,77777,9,999999999,18,0.06,0,88,0,0,1 +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,46610,42319,8168,3055,100,1.5,5,4,16,77777,9,999999999,19,0.06,0,88,0,0,1 +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,18818,56735,5450,771,110,2.6,6,5,16,77777,9,999999999,20,0.06,0,88,0,0,1 +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,662,6485,692,130,0,0,6,4,16,77777,9,999999999,21,0.06,0,88,0,0,1 +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,77777,9,999999999,22,0.06,0,88,0,0,1 +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,77777,9,999999999,23,0.06,0,88,0,0,1 +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,77777,9,999999999,24,0.06,0,88,0,0,1 +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,77777,9,999999999,25,0.06,0,88,0,0,1 +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,2,2,16,77777,9,999999999,26,0.06,0,88,0,0,1 +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,77777,9,999999999,25,0.06,0,88,0,0,1 +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,77777,9,999999999,24,0.06,0,88,0,0,1 +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,77777,9,999999999,23,0.06,0,88,0,0,1 +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,77777,9,999999999,22,0.06,0,88,0,0,1 +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,77777,9,999999999,21,0.06,0,88,0,0,1 +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,63,83000,0,0,299,0,0,0,0,0,0,0,210,5.7,0,0,16,77777,9,999999999,21,0.06,0,88,0,0,1 +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,77777,9,999999999,20,0.06,0,88,0,0,1 +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,59,83300,133,1366,319,0,0,0,0,0,0,0,360,3.1,4,4,16,77777,9,999999999,19,0.06,0,88,0,0,1 +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,17862,6609,14419,4319,300,2.1,6,6,16,3658,9,999999999,18,0.06,0,88,0,0,1 +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,51250,44954,16695,6004,210,2.1,3,3,16,77777,9,999999999,17,0.06,0,88,0,0,1 +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,67958,96420,11009,1804,120,2.1,5,5,16,77777,9,999999999,16,0.06,0,88,0,0,1 +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,74938,91321,13965,2309,60,4.6,4,4,16,77777,9,999999999,15,0.06,0,88,0,0,1 +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,91142,57534,20803,8473,130,3.6,5,5,16,6096,9,999999999,15,0.06,0,88,0,0,1 +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,71300,38294,36212,13292,30,3.1,8,7,16,6096,9,999999999,15,0.06,0,88,0,0,1 +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,29361,2349,27310,10335,10,13.4,8,7,16,3658,9,999999999,14,0.06,0,88,0,0,1 +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,44454,23329,27655,9500,30,13.4,9,9,16,3048,9,999999999,14,0.06,0,88,0,0,1 +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,35585,29798,15021,5187,40,7.2,9,9,16,3048,9,999999999,14,0.06,0,88,0,0,1 +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,6.7,58,83500,281,1366,346,150,466,54,17113,11389,6177,2043,30,9.3,8,8,16,3048,9,999999999,14,0.06,0,88,0,0,1 +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,490,0,367,115,70,4.1,6,6,16,6096,9,999999999,13,0.06,0,88,0,0,1 +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,6096,9,999999999,13,0.06,0,88,0,0,1 +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,6.1,77,83600,0,0,310,0,0,0,0,0,0,0,160,4.6,5,5,16,6096,9,999999999,13,0.06,0,88,0,0,1 +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,6.1,77,83500,0,0,329,0,0,0,0,0,0,0,170,4.6,9,9,16,6096,9,999999999,12,0.06,0,88,0,0,1 +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,6096,9,999999999,12,0.06,0,88,0,0,1 +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,6096,9,999999999,12,0.06,0,88,0,0,1 +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,2743,9,999999999,12,0.06,0,88,0,0,1 +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,63,83300,0,0,328,0,0,0,0,0,0,0,150,5.2,9,8,16,3048,9,999999999,12,0.061,0,88,0,0,1 +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,3048,9,999999999,12,0.061,0,88,0,0,1 +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,3048,9,999999999,12,0.061,0,88,0,0,1 +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,3048,9,999999999,12,0.061,0,88,0,0,1 +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,13,0.061,0,88,0,0,1 +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,7,100,83200,0,11,325,0,0,0,0,0,0,0,280,4.1,10,10,4.8,60,9,999999999,13,0.061,0,88,0,0,1 +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,13,0.061,0,88,0,0,1 +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,8528,0,8594,3260,280,4.1,10,10,4,61,9,999999999,13,0.061,0,88,0,0,1 +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,15770,0,15903,6307,270,4.1,10,10,3.2,183,9,999999999,13,0.061,0,88,0,0,1 +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,24376,453,24037,8940,280,4.6,10,10,9.6,244,9,999999999,13,0.061,0,88,0,0,1 +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,64292,33287,35031,12672,330,3.6,8,8,11.2,6096,9,999999999,13,0.061,0,88,0,0,1 +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,73249,39932,34061,12780,350,3.1,8,7,12.8,6096,9,999999999,14,0.061,0,88,0,0,1 +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,39340,5055,34730,12875,320,2.1,8,7,12.8,6096,9,999999999,14,0.061,0,88,0,0,1 +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,38364,4199,35193,12372,290,1.5,9,7,12.8,6096,9,999999999,15,0.061,0,88,0,0,1 +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,36038,10426,28950,9728,250,1.5,9,7,12.8,6096,9,999999999,15,0.061,0,88,0,0,1 +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,18644,2329,17271,5718,220,2.1,9,8,12.8,3353,9,999999999,16,0.061,0,88,0,0,1 +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,2554,0,2573,1089,190,5.2,7,7,12.8,3048,9,999999999,16,0.061,0,88,0,0,1 +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,8.3,64,83300,40,786,335,1,0,1,96,0,97,40,200,2.1,8,5,16,3658,9,999999999,17,0.061,0,88,0,0,1 +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,2896,9,999999999,17,0.061,0,88,0,0,1 +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,6096,9,999999999,18,0.061,0,88,0,0,1 +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,6096,9,999999999,18,0.061,0,88,0,0,1 +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,57,83200,0,0,353,0,0,0,0,0,0,0,270,3.1,10,10,16,6096,9,999999999,19,0.061,0,88,0,0,1 +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,3353,9,999999999,19,0.061,0,88,0,0,1 +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,19,0.061,0,88,0,0,1 +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,19,0.061,0,88,0,0,1 +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,8,100,83300,0,0,331,0,0,0,0,0,0,0,10,6.7,10,10,8.9,150,9,999999999,19,0.061,0,88,0,0,1 +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,20,0.061,0,88,0,0,1 +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,20,0.061,0,88,0,0,1 +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,20,0.061,0,88,0,0,1 +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,89,83500,0,0,306,0,0,0,0,0,0,0,50,4.6,8,8,11.2,213,9,999999999,20,0.061,0,88,0,0,1 +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,89,83600,124,1356,321,0,0,0,0,0,0,0,60,4.6,10,10,11.2,244,9,999999999,20,0.061,0,88,0,0,1 +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,4.4,96,83600,379,1368,313,47,0,47,4666,0,4702,1987,30,5.2,10,10,5.2,91,9,999999999,20,0.061,0,88,0,0,1 +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,4.4,96,83700,606,1368,313,81,0,81,8197,0,8266,3710,60,5.2,10,10,1.2,91,9,999999999,20,0.061,0,88,0,0.3,1 +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,11198,0,11298,5286,40,5.7,10,10,1.2,152,9,999999999,20,0.061,0,88,0,0,1 +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,4.4,96,83800,908,1368,313,130,0,130,13490,0,13615,6498,40,5.7,10,10,1.2,152,9,999999999,20,0.061,0,88,0,0,1 +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,13867,0,13997,6764,30,6.2,10,10,1.2,152,9,999999999,19,0.061,0,88,0,0,1 +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,17291,0,17452,8138,50,6.7,10,10,1.2,152,9,999999999,19,0.061,0,88,0,0,1 +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,26802,948,26008,9863,60,6.7,10,10,1.2,152,9,999999999,18,0.061,0,88,0,0,1 +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,21686,455,21443,7804,70,6.7,10,10,3.2,213,9,999999999,17,0.061,0,88,0,0,1 +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,14753,384,14585,5002,60,6.2,10,10,3.2,152,9,999999999,17,0.061,0,88,0,0,1 +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,5517,0,5557,2062,60,5.2,10,10,2.8,152,9,999999999,16,0.061,0,88,0,0,1 +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,100,83900,36,741,287,1,0,1,96,0,97,40,60,3.1,10,10,3.2,396,9,999999999,15,0.061,0,88,0,0,1 +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,14,0.061,0,88,0,0,1 +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,14,0.061,0,88,0,0,1 +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,13,0.061,0,88,0,0,1 +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,10,10,3.2,183,9,999999999,12,0.061,0,88,0,0,1 +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.6,95,84200,0,0,286,0,0,0,0,0,0,0,0,0,10,10,3.2,122,9,999999999,12,0.061,0,88,0,0,1 +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,10,10,3.2,122,9,999999999,11,0.061,0,88,0,0,1 +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,10,10,3.2,122,9,999999999,11,0.061,0,88,0,0,1 +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,10,10,3.2,122,9,999999999,11,0.061,0,88,0,0,1 +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,10,10,3.2,122,9,999999999,11,0.061,0,88,0,0,1 +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,10,10,3.2,122,9,999999999,10,0.061,0,88,0,0,1 +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,10,10,4.8,183,9,999999999,10,0.061,0,88,0,0,1 +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,10,10,4,305,9,999999999,10,0.061,0,88,0,0,1 +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,10,10,4,335,9,999999999,10,0.061,0,88,0,0,1 +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,10145,0,10222,3630,0,0,10,10,4,396,9,999999999,9,0.061,0,88,0,0,1 +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,17232,0,17375,6632,0,0,10,10,4,244,9,999999999,9,0.061,0,88,0,0,1 +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,21810,0,22003,8993,0,0,10,10,3.2,183,9,999999999,9,0.061,0,88,0,0,1 +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,24796,463,24446,9525,0,0,10,10,4,274,9,999999999,9,0.061,0,88,0,0,1 +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,96,84200,958,1369,289,194,0,194,20243,0,20432,9287,0,0,10,10,4,274,9,999999999,9,0.061,0,88,0,0,1 +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,92,84200,941,1369,291,160,0,160,16675,0,16830,7869,0,0,10,10,9.6,213,9,999999999,9,0.061,0,88,0,0,1 +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,15522,0,15662,7182,50,4.1,10,10,12.8,152,9,999999999,9,0.061,0,88,0,0,1 +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,15333,0,15465,6602,50,3.6,10,10,14.4,213,9,999999999,9,0.061,0,88,0,0.3,1 +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,10453,0,10537,4255,50,4.6,10,10,9.6,213,9,999999999,10,0.061,0,88,0,0,1 +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,4234,0,4264,1660,30,4.6,10,10,4.8,213,9,999999999,10,0.061,0,88,0,0,1 +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,152,9,999999999,10,0.061,0,88,0,0,1 +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,183,9,999999999,10,0.061,0,88,0,0,1 +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,10,0.061,0,88,0,0,1 +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,11,0.061,0,88,0,0,1 +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,11,0.061,0,88,0,0,1 +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,11,0.061,0,88,0,0,1 +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,11,0.061,0,88,0,0,1 +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,92,84500,0,0,291,0,0,0,0,0,0,0,150,2.6,10,10,14.4,1097,9,999999999,10,0.061,0,88,0,0,1 +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,92,84500,0,0,291,0,0,0,0,0,0,0,170,2.1,10,10,16,1097,9,999999999,10,0.061,0,88,0,0,1 +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,10,10,16,1219,9,999999999,10,0.061,0,88,0,0.7,1 +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,10,10,16,1341,9,999999999,9,0.061,0,88,0,0,1 +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,10,10,16,1280,9,999999999,9,0.061,0,88,0,0,1 +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,9,0.061,0,88,0,0,1 +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,1158,9,999999999,8,0.061,0,88,0,0,1 +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,7052,0,7105,2774,100,3.1,10,10,16,1158,9,999999999,8,0.061,0,88,0,0,1 +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,15186,0,15312,6048,110,2.6,10,10,16,1158,9,999999999,8,0.061,0,88,0,0,1 +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,19135,0,19303,8139,0,0,10,10,16,1219,9,999999999,8,0.061,0,88,0,0,1 +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,18701,0,18872,8502,110,2.6,10,10,16,1128,9,999999999,7,0.061,0,88,0,0,1 +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,-2.2,58,84800,952,1369,306,188,0,188,19619,0,19801,9029,80,2.6,10,10,16,1128,9,999999999,7,0.061,0,88,0,0,1 +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,-2.8,55,84700,935,1369,305,201,6,197,23846,456,23484,9311,0,0,10,10,16,1128,9,999999999,8,0.061,0,88,0,0,1 +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,16146,0,16292,7395,80,1.5,10,10,16,1128,9,999999999,8,0.061,0,88,0,0,1 +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,15943,0,16080,6773,80,4.1,10,10,16,1189,9,999999999,8,0.061,0,88,0,0,1 +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,-1.1,64,84700,495,1369,307,125,0,125,12562,0,12662,4847,80,3.6,10,10,16,1250,9,999999999,9,0.061,0,88,0,0,1 +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,-1.1,64,84600,252,1369,307,38,0,38,3741,0,3768,1487,100,3.6,10,10,16,1311,9,999999999,9,0.061,0,88,0,0,1 +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,1372,9,999999999,9,0.061,0,88,0,0,1 +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,76,84700,0,0,303,0,0,0,0,0,0,0,110,3.1,10,10,16,1433,9,999999999,10,0.061,0,88,0,0,1 +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,76,84700,0,0,303,0,0,0,0,0,0,0,180,2.6,10,10,16,1494,9,999999999,10,0.061,0,88,0,0,1 +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,1494,9,999999999,10,0.061,0,88,0,0,1 +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,77777,9,999999999,10,0.061,0,88,0,0,1 +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,77777,9,999999999,11,0.061,0,88,0,0,1 +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,1128,9,999999999,10,0.061,0,88,0,0,1 +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,1128,9,999999999,10,0.061,0,88,0,0,1 +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,1128,9,999999999,9,0.061,0,88,0,0,1 +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,1128,9,999999999,9,0.061,0,88,0,0,1 +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,1067,9,999999999,8,0.061,0,88,0,0,1 +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,1067,9,999999999,8,0.061,0,88,0,0,1 +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,1067,9,999999999,7,0.061,0,88,0,0,1 +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,1006,9,999999999,7,0.061,0,88,0,0,1 +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,20069,14114,12623,3834,170,6.2,4,4,16,77777,9,999999999,6,0.061,0,88,0,0,1 +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,-1.1,64,84500,591,1370,292,442,731,126,51085,48033,14619,5287,160,4.1,8,8,16,914,9,999999999,6,0.061,0,88,0,0,1 +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,65673,51312,21019,7911,210,3.1,5,5,16,77777,9,999999999,5,0.061,0,88,0,0,1 +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,56,84400,892,1370,308,708,918,108,87250,59080,13355,5480,160,3.1,8,8,16,975,9,999999999,5,0.061,0,88,0,0,1 +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,80339,96038,14546,2438,150,4.6,5,5,16,77777,9,999999999,5,0.061,0,88,0,0,1 +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,77925,94887,13933,2343,140,7.7,5,5,16,77777,9,999999999,6,0.061,0,88,0,0,1 +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,48,84500,842,1370,302,651,910,89,68823,91481,12667,2002,150,6.2,3,3,16,77777,9,999999999,6,0.061,0,88,0,0,1 +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,48,84500,692,1370,302,499,808,90,60375,48945,10922,4273,150,6.7,3,3,16,77777,9,999999999,7,0.061,0,88,0,0,1 +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,50,84500,488,1370,299,332,744,66,39514,36688,7875,2894,180,6.2,3,3,16,77777,9,999999999,7,0.061,0,88,0,0,1 +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,56,84200,245,1370,289,148,610,38,17180,8969,4420,1475,170,4.6,4,2,16,77777,9,999999999,8,0.061,0,88,0,0,1 +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,70,84300,26,628,267,0,0,0,0,0,0,0,160,5.7,0,0,16,77777,9,999999999,8,0.061,0,88,0,0,1 +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,82,84200,0,0,259,0,0,0,0,0,0,0,130,4.1,0,0,16,77777,9,999999999,9,0.061,0,88,0,0,1 +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,77777,9,999999999,9,0.061,0,88,0,0,1 +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,77777,9,999999999,10,0.061,0,88,0,0,1 +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,82,84000,0,0,270,0,0,0,0,0,0,0,180,5.7,4,3,16,77777,9,999999999,10,0.061,0,88,0,0,1 +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,85,84100,0,0,265,0,0,0,0,0,0,0,190,5.7,4,2,16,77777,9,999999999,11,0.061,0,88,0,0,1 +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,77777,9,999999999,10,0.061,0,88,0,0,1 +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,88,83800,0,0,255,0,0,0,0,0,0,0,190,5.2,0,0,16,77777,9,999999999,10,0.061,0,88,0,0,1 +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,77777,9,999999999,10,0.061,0,88,0,0,1 +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,77777,9,999999999,10,0.061,0,88,0,0,1 +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,-1.7,87,83600,0,0,247,0,0,0,0,0,0,0,0,0,0,0,16,77777,9,999999999,9,0.061,0,88,0,0,1 +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,-1.1,91,83900,0,0,247,0,0,0,0,0,0,0,200,2.6,0,0,16,77777,9,999999999,9,0.061,0,88,0,0,1 +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,-1.7,87,83600,0,0,247,0,0,0,0,0,0,0,210,3.1,0,0,16,77777,9,999999999,9,0.061,0,88,0,0,1 +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,77777,9,999999999,9,0.061,0,88,0,0,1 +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,79,83900,360,1371,261,246,730,54,28762,25988,6328,2201,260,1.5,0,0,16,77777,9,999999999,8,0.061,0,88,0,0,1 +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,47249,86306,9505,1359,0,0,0,0,16,77777,9,999999999,8,0.061,0,88,0,0,1 +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,62752,90885,12020,1776,30,1.5,0,0,16,77777,9,999999999,8,0.061,0,88,0,0,1 +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,78244,52768,16172,6564,60,2.1,3,3,16,77777,9,999999999,8,0.061,0,88,0,0,1 +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,85988,55141,15739,6483,90,2.1,3,3,16,77777,9,999999999,8,0.061,0,88,0,0,1 +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,85493,55772,15245,6267,90,3.6,3,3,16,77777,9,999999999,9,0.061,0,88,0,0,1 +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,68888,92132,12819,1988,80,4.1,3,3,16,77777,9,999999999,10,0.061,0,88,0,0,1 +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,30,84000,685,1371,334,527,919,66,56145,91039,9789,1536,90,4.6,3,3,16,77777,9,999999999,10,0.061,0,88,0,0,1 +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,36380,77220,8165,1159,70,4.1,3,3,16,77777,9,999999999,11,0.061,0,88,0,0,1 +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,16661,6613,3761,1266,10,2.1,3,3,16,77777,9,999999999,12,0.061,0,88,0,0,1 +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,77777,9,999999999,13,0.061,0,88,0,0,1 +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.6,52,83600,0,0,300,0,0,0,0,0,0,0,60,1.5,3,3,16,77777,9,999999999,13,0.061,0,88,0,0,1 +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,77777,9,999999999,14,0.061,0,88,0,0,1 +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,77777,9,999999999,15,0.061,0,88,0,0,1 +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,77777,9,999999999,16,0.061,0,88,0,0,1 +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,77777,9,999999999,16,0.061,0,88,0,0,1 +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,77777,9,999999999,16,0.061,0,88,0,0,1 +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,77777,9,999999999,16,0.061,0,88,0,0,1 +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,85,82800,0,0,256,0,0,0,0,0,0,0,200,3.1,0,0,16,77777,9,999999999,15,0.061,0,88,0,0,1 +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,77777,9,999999999,15,0.061,0,88,0,0,1 +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,77777,9,999999999,14,0.061,0,88,0,0,1 +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,67,83000,0,0,269,0,0,0,0,0,0,0,200,3.6,0,0,16,77777,9,999999999,14,0.061,0,88,0,0,1 +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,77777,9,999999999,13,0.061,0,88,0,0,1 +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,77777,9,999999999,13,0.061,0,88,0,0,1 +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,29781,30430,8975,2959,250,1.5,0,0,16,77777,9,999999999,13,0.061,0,88,0,0,1 +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,52030,46671,9911,3730,220,1.5,0,0,16,77777,9,999999999,12,0.061,0,88,0,0,1 +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,2.2,42,83400,760,1372,323,585,847,114,70249,54448,13738,5419,180,1.5,3,3,16,77777,9,999999999,12,0.061,0,88,0,0,1 +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,74223,97836,10448,1938,150,2.6,3,3,16,77777,9,999999999,11,0.061,0,88,0,0,1 +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,77801,96265,11816,2212,110,2.1,3,3,16,77777,9,999999999,12,0.061,0,88,0,0,1 +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,78521,99343,11451,2128,80,3.6,3,3,16,77777,9,999999999,12,0.061,0,88,0,0,1 +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,68622,92511,12965,1973,100,4.6,4,4,16,77777,9,999999999,12,0.061,0,88,0,0,1 +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,21,83400,678,1372,365,498,837,83,60470,49524,10107,3949,100,5.2,6,5,16,77777,9,999999999,13,0.061,0,88,0,0,1 +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,23,83300,474,1372,357,325,760,61,38790,35938,7297,2677,140,8.8,4,4,16,77777,9,999999999,13,0.061,0,88,0,0,1 +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,13752,46689,4690,648,150,8.8,5,5,16,77777,9,999999999,13,0.061,0,88,0,0,1 +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,77777,9,999999999,13,0.061,0,88,0,0,1 +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,77777,9,999999999,14,0.061,0,88,0,0,1 +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,77777,9,999999999,14,0.061,0,88,0,0,1 +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,77777,9,999999999,14,0.061,0,88,0,0,1 +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,2.8,61,82700,0,0,302,0,0,0,0,0,0,0,160,7.2,3,3,16,77777,9,999999999,15,0.061,0,88,0,0,1 +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,77777,9,999999999,15,0.061,0,88,0,0,1 +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,77777,9,999999999,15,0.061,0,88,0,0,1 +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,77777,9,999999999,15,0.061,0,88,0,0,1 +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,77777,9,999999999,14,0.061,0,88,0,0,1 +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,40,82800,0,0,300,0,0,0,0,0,0,0,210,7.2,0,0,16,77777,9,999999999,14,0.061,0,88,0,0,1 +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,77777,9,999999999,14,0.061,0,88,0,0,1 +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,2.2,82,82900,0,0,269,0,0,0,0,0,0,0,280,1.5,0,0,16,77777,9,999999999,14,0.061,0,88,0,0,1 +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,77777,9,999999999,14,0.061,0,88,0,0,1 +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,77777,9,999999999,14,0.061,0,88,0,0,1 +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,25552,23344,8430,2802,310,3.6,3,3,16,77777,9,999999999,14,0.061,0,88,0,0,1 +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,50735,44438,9119,3445,340,1.5,3,3,16,77777,9,999999999,13,0.061,0,88,0,0,1 +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,43,83300,755,1373,339,579,884,91,70592,52746,11129,4439,10,3.1,3,3,16,77777,9,999999999,13,0.061,0,88,0,0,1 +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,80341,54616,12857,5262,150,7.2,3,3,16,77777,9,999999999,13,0.061,0,88,0,0,1 +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,85476,55555,14915,6141,150,8.8,3,3,16,77777,9,999999999,13,0.061,0,88,0,0,1 +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,1.1,21,83300,910,1373,369,703,927,86,74506,93735,12129,2164,140,7.7,3,3,16,77777,9,999999999,13,0.061,0,88,0,0,1 +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,64501,88164,11490,1890,190,7.2,3,3,16,77777,9,999999999,13,0.061,0,88,0,0,1 +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,61387,51185,9648,3766,190,8.8,3,3,16,77777,9,999999999,13,0.061,0,88,0,0,1 +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,38137,35842,7069,2587,200,7.7,3,3,16,77777,9,999999999,13,0.061,0,88,0,0,1 +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,14317,4212,3526,1180,180,8.2,8,8,16,7620,9,999999999,13,0.061,0,88,0,0,1 +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,7620,9,999999999,13,0.061,0,88,0,0,1 +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,6096,9,999999999,12,0.061,0,88,0,0,1 +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,-1.1,24,83300,0,0,345,0,0,0,0,0,0,0,200,7.7,8,4,16,6096,9,999999999,12,0.061,0,88,0,0,1 +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,5486,9,999999999,12,0.061,0,88,0,0,1 +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,6096,9,999999999,12,0.061,0,88,0,0,1 +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,6096,9,999999999,12,0.061,0,88,0,0,1 +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,6096,9,999999999,12,0.061,0,88,0,0,1 +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,2.8,61,82800,0,0,305,0,0,0,0,0,0,0,80,2.6,10,4,16,6096,9,999999999,12,0.061,0,88,0,0,1 +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,6096,9,999999999,12,0.061,0,88,0,0,1 +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,2.8,61,82900,0,0,305,0,0,0,0,0,0,0,350,2.6,7,4,16,6096,9,999999999,12,0.061,0,88,0,0,1 +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,6096,9,999999999,12,0.061,0,88,0,0,1 +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,6096,9,999999999,12,0.061,0,88,0,0,1 +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,77777,9,999999999,12,0.061,0,88,0,0,1 +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,2.8,61,83100,95,1202,302,0,0,0,0,0,0,0,210,1.5,3,3,16,77777,9,999999999,11,0.061,0,88,0,0,1 +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,28857,29874,9878,3154,270,2.6,3,3,16,77777,9,999999999,11,0.061,0,88,0,0,1 +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,44484,40305,15921,5590,260,2.1,3,3,16,77777,9,999999999,11,0.061,0,88,0,0,1 +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,69618,54327,13151,5184,320,1.5,3,3,16,77777,9,999999999,11,0.061,0,88,0,0,1 +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,82600,55967,12721,5204,330,2.6,3,3,16,77777,9,999999999,11,0.061,0,88,0,0,1 +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,78132,95617,14358,2321,340,2.6,3,3,16,77777,9,999999999,11,0.061,0,88,0,0,1 +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,75093,93850,13609,2227,50,5.7,3,3,16,77777,9,999999999,11,0.061,0,88,0,0,1 +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,67056,92124,12326,1913,60,4.6,3,3,16,77777,9,999999999,11,0.061,0,88,0,0,1 +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,60326,49605,9737,3795,60,5.7,3,3,16,77777,9,999999999,10,0.061,0,88,0,0,1 +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,36488,33726,7600,2762,50,6.7,4,4,16,77777,9,999999999,10,0.061,0,88,0,0,1 +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,13680,2739,3513,1171,360,6.2,5,5,16,77777,9,999999999,10,0.061,0,88,0,0,1 +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,2,41,83200,16,492,328,0,0,0,0,0,0,0,280,6.2,5,5,16.1,77777,9,999999999,10,0.061,0,88,0,0,1 +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,77777,9,999999999,10,0.061,0,88,0,0,1 +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,77777,9,999999999,10,0.061,0,88,0,0,1 +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,77777,9,999999999,10,0.061,0,88,0,0,1 +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,77777,9,999999999,9,0.061,0,88,0,0,1 +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,2,2,16,77777,9,999999999,9,0.061,0,88,0,0,1 +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,77777,9,999999999,10,0.061,0,88,0,0,1 +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,85,82900,0,0,270,0,0,0,0,0,0,0,130,3.1,4,4,16,77777,9,999999999,10,0.061,0,88,0,0,1 +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,77777,9,999999999,10,0.061,0,88,0,0,1 +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,77777,9,999999999,11,0.061,0,88,0,0,1 +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,77777,9,999999999,11,0.061,0,88,0,0,1 +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,77777,9,999999999,11,0.061,0,88,0,0,1 +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,77777,9,999999999,12,0.061,0,88,0,0,1 +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,77777,9,999999999,12,0.061,0,88,0,0,1 +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,11568,346,11504,3484,180,3.1,4,4,16,77777,9,999999999,12,0.061,0,88,0,0,1 +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,35749,24559,21311,6853,170,3.1,3,3,16,7620,9,999999999,13,0.061,0,88,0,0,1 +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,59542,45642,23775,8583,120,4.6,3,3,16,77777,9,999999999,13,0.061,0,88,0,0,1 +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,78308,55988,17580,7030,130,5.2,3,3,16,77777,9,999999999,13,0.061,0,88,0,0,1 +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,73995,49185,25497,9897,250,3.6,6,6,16,4572,9,999999999,13,0.061,0,88,0,0,1 +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,62104,33830,34105,12269,260,3.1,5,5,16,77777,9,999999999,13,0.061,0,88,0,0,1 +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,72828,55907,16568,6539,280,2.6,3,3,16,77777,9,999999999,12,0.061,0,88,0,0,1 +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,60504,52192,9521,3697,290,2.1,4,4,16,77777,9,999999999,12,0.061,0,88,0,0,1 +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,37314,36096,6832,2487,310,3.6,4,4,16,77777,9,999999999,12,0.061,0,88,0,0,1 +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,12257,44354,4378,602,350,2.1,8,8,16,7620,9,999999999,11,0.061,0,88,0,0,1 +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,7620,9,999999999,11,0.061,0,88,0,0,1 +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,7620,9,999999999,11,0.061,0,88,0,0,1 +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,62,83300,0,0,288,0,0,0,0,0,0,0,140,1.5,4,4,16,77777,9,999999999,10,0.061,0,88,0,0,1 +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,67,83300,0,0,285,0,0,0,0,0,0,0,140,2.1,5,5,16,77777,9,999999999,10,0.061,0,88,0,0,1 +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,-1.1,64,83200,0,0,275,0,0,0,0,0,0,0,160,4.1,2,2,16,77777,9,999999999,10,0.061,0,88,0,0,1 +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,77777,9,999999999,9,0.061,0,88,0,0,1 +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,-1.1,64,83200,0,0,278,0,0,0,0,0,0,0,240,3.1,3,3,16,77777,9,999999999,9,0.061,0,88,0,0,1 +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,77777,9,999999999,9,0.061,0,88,0,0,1 +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,77777,9,999999999,9,0.061,0,88,0,0,1 +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,77777,9,999999999,8,0.061,0,88,0,0,1 +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,-4.4,48,83300,0,0,274,0,0,0,0,0,0,0,310,2.6,3,3,16,77777,9,999999999,8,0.061,0,88,0,0,1 +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,77777,9,999999999,8,0.061,0,88,0,0,1 +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,77777,9,999999999,8,0.061,0,88,0,0,1 +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,77777,9,999999999,8,0.061,0,88,0,0,1 +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,56,83800,336,1375,292,236,718,60,27165,25040,6925,2342,120,3.6,3,3,16,77777,9,999999999,7,0.061,0,88,0,0,1 +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,-1.1,45,83900,560,1375,298,391,703,104,45575,42609,12164,4434,110,5.7,3,3,16,77777,9,999999999,7,0.061,0,88,0,0,1 +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,59587,47233,20573,7631,90,4.6,4,4,16,77777,9,999999999,7,0.061,0,88,0,0,1 +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,75343,54048,17346,6929,120,6.2,4,4,16,6706,9,999999999,7,0.061,0,88,0,0,1 +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,74077,49790,21621,8580,110,2.6,4,3,16,77777,9,999999999,7,0.061,0,88,0,0,1 +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,-5,24,83800,891,1375,327,638,658,210,74797,51888,24742,9561,100,3.6,8,7,16,77777,9,999999999,7,0.061,0,88,0,0,1 +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,24,83800,803,1375,336,431,291,260,48967,25427,29703,10495,80,2.6,10,9,16,3048,9,999999999,8,0.061,0,88,0,0,1 +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,28477,6336,24455,8169,180,5.7,9,9,16,2438,9,999999999,8,0.061,0,88,0,0,1 +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,6609,0,6661,2806,290,5.7,9,8,16,2134,9,999999999,9,0.061,0,88,0,0,1 +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,1962,0,1976,810,260,2.6,7,7,16,2743,9,999999999,9,0.061,0,88,0,0,1 +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,-1.1,45,83900,11,424,314,0,0,0,0,0,0,0,360,4.6,8,8,16,3048,9,999999999,10,0.061,0,88,0,0,1 +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,3048,9,999999999,10,0.061,0,88,0,0,1 +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,3048,9,999999999,11,0.061,0,88,0,0,1 +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,8,8,16,3048,9,999999999,11,0.061,0,88,0,0,1 +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,10,9,16,3353,9,999999999,11,0.061,0,88,0,0,1 +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,3048,9,999999999,12,0.061,0,88,0,0,1 +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,6096,9,999999999,12,0.061,0,88,0,0,1 +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,6096,9,999999999,11,0.061,0,88,0,0,1 +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,77777,9,999999999,11,0.061,0,88,0,0,1 +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,77777,9,999999999,11,0.061,0,88,0,0,1 +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,3,3,16,77777,9,999999999,11,0.061,0,88,0,0,1 +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,77777,9,999999999,11,0.061,0,88,0,0,1 +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,16,77777,9,999999999,10,0.061,0,88,0,0,1 +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,77777,9,999999999,10,0.061,0,88,0,0,1 +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,24108,22767,8288,2706,220,3.1,0,0,16,77777,9,999999999,10,0.061,0,88,0,0,1 +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.6,47,83900,555,1376,286,398,759,91,46819,43732,10738,3960,210,4.1,0,0,16,77777,9,999999999,10,0.061,0,88,0,0,1 +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,61129,49516,20120,7471,230,2.6,0,0,16,77777,9,999999999,10,0.061,0,88,0,0,1 +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,69974,91585,13859,2050,250,2.6,0,0,16,77777,9,999999999,9,0.061,0,88,0,0,1 +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,-1.7,31,83900,904,1376,319,708,932,94,74602,93861,13206,2202,270,2.1,3,3,16,77777,9,999999999,10,0.061,0,88,0,0,1 +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,82748,56831,13571,5552,290,2.6,4,3,16,77777,9,999999999,10,0.061,0,88,0,0,1 +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,64330,90489,12090,1853,40,4.1,3,3,16,77777,9,999999999,11,0.061,0,88,0,0,1 +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,28,84000,645,1376,339,474,800,98,56465,48908,11712,4475,90,5.7,3,3,16,77777,9,999999999,11,0.061,0,88,0,0,1 +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,32975,30671,7674,2756,140,5.7,5,5,16,77777,9,999999999,12,0.061,0,88,0,0,1 +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,34,83400,197,1376,329,101,485,31,11684,819,3593,1175,190,5.2,8,5,16,77777,9,999999999,12,0.061,0,88,0,0,1 +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,77777,9,999999999,13,0.061,0,88,0,0,1 +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,77777,9,999999999,13,0.061,0,88,0,0,1 +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,77777,9,999999999,14,0.061,0,88,0,0,1 +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,77777,9,999999999,14,0.061,0,88,0,0,1 +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,77777,9,999999999,15,0.061,0,88,0,0,1 +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,77777,9,999999999,15,0.061,0,88,0,0,1 +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,77777,9,999999999,15,0.061,0,88,0,0,1 +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,77777,9,999999999,14,0.06,0,88,0,0,1 +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,77777,9,999999999,13,0.06,0,88,0,0,1 +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,77777,9,999999999,13,0.06,0,88,0,0,1 +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,77777,9,999999999,12,0.06,0,88,0,0,1 +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.6,73,83600,0,0,268,0,0,0,0,0,0,0,220,5.2,0,0,16,77777,9,999999999,12,0.06,0,88,0,0,1 +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,79,83500,0,0,261,0,0,0,0,0,0,0,270,3.6,0,0,16,77777,9,999999999,11,0.06,0,88,0,0,1 +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,77777,9,999999999,11,0.06,0,88,0,0,1 +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,22463,19891,7852,2579,210,3.6,0,0,16,77777,9,999999999,10,0.06,0,88,0,0,1 +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,44,84000,550,1377,294,392,784,78,46606,42754,9299,3464,70,2.6,0,0,16,77777,9,999999999,10,0.06,0,88,0,0,1 +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,40,84100,728,1377,300,554,854,102,66735,53697,12327,4837,0,0,0,0,16,77777,9,999999999,9,0.06,0,88,0,0,1 +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,70775,93406,13741,2028,120,3.6,0,0,16,77777,9,999999999,8,0.06,0,88,0,0,1 +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,74528,97028,10414,1971,110,4.6,1,0,16,77777,9,999999999,9,0.06,0,88,0,0,1 +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,70786,90118,13793,2139,100,4.1,0,0,16,77777,9,999999999,9,0.06,0,88,0,0,1 +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,68103,51325,13375,5333,110,3.6,0,0,16,77777,9,999999999,9,0.06,0,88,0,0,1 +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,55337,50023,14444,5376,140,4.6,0,0,16,77777,9,999999999,9,0.06,0,88,0,0,1 +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,28648,26454,12567,4158,130,4.1,0,0,16,77777,9,999999999,10,0.06,0,88,0,0,1 +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,-3.3,27,83700,191,1377,314,91,406,35,10403,1350,4010,1284,110,3.6,4,2,16,77777,9,999999999,10,0.06,0,88,0,0,1 +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,77777,9,999999999,10,0.06,0,88,0,0,1 +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,77777,9,999999999,11,0.06,0,88,0,0,1 +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,77777,9,999999999,11,0.06,0,88,0,0,1 +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,77777,9,999999999,11,0.06,0,88,0,0,1 +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,16,77777,9,999999999,11,0.06,0,88,0,0,1 +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,-1.7,61,83900,0,0,265,0,0,0,0,0,0,0,290,3.1,0,0,16,77777,9,999999999,12,0.06,0,88,0,0,1 +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,77777,9,999999999,11,0.06,0,88,0,0,1 +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,77777,9,999999999,11,0.06,0,88,0,0,1 +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,77777,9,999999999,11,0.06,0,88,0,0,1 +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,77777,9,999999999,10,0.06,0,88,0,0,1 +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,77777,9,999999999,10,0.06,0,88,0,0,1 +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,77777,9,999999999,9,0.06,0,88,0,0,1 +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,77777,9,999999999,9,0.06,0,88,0,0,1 +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,77777,9,999999999,9,0.06,0,88,0,0,1 +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,26659,24376,6682,2242,220,5.2,0,0,16,77777,9,999999999,8,0.06,0,88,0,0,1 +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,42512,81817,9266,1280,240,3.6,0,0,16,77777,9,999999999,8,0.06,0,88,0,0,1 +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,65557,52965,11648,4575,300,3.1,0,0,16,77777,9,999999999,8,0.06,0,88,0,0,1 +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,34,84200,841,1377,310,628,822,125,75895,54820,15163,6090,350,2.6,0,0,16,77777,9,999999999,7,0.06,0,88,0,0,1 +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,73011,92907,13110,2153,40,4.1,0,0,16,77777,9,999999999,8,0.06,0,88,0,0,1 +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,71333,93988,11405,1996,50,3.1,0,0,16,77777,9,999999999,8,0.06,0,88,0,0,1 +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,69592,51825,11429,4585,50,3.1,0,0,16,77777,9,999999999,9,0.06,0,88,0,0,1 +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,-2.2,22,84700,632,1377,327,467,852,75,56658,48806,9123,3519,60,3.1,0,0,16,77777,9,999999999,9,0.06,0,88,0,0,1 +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,34270,32209,6559,2364,90,2.6,0,0,16,77777,9,999999999,10,0.06,0,88,0,0,1 +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,10278,444,3891,1242,110,2.1,0,0,16,77777,9,999999999,10,0.06,0,88,0,0,1 +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,77777,9,999999999,10,0.06,0,88,0,0,1 +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,77777,9,999999999,11,0.06,0,88,0,0,1 +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,77777,9,999999999,11,0.06,0,88,0,0,1 +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,77777,9,999999999,12,0.06,0,88,0,0,1 +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,-2.8,55,83900,0,0,264,0,0,0,0,0,0,0,160,3.6,0,0,16,77777,9,999999999,12,0.06,0,88,0,0,1 +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,56,84000,0,0,280,0,0,0,0,0,0,0,200,5.2,0,0,16,77777,9,999999999,13,0.06,0,88,0,0,1 +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,77777,9,999999999,12,0.06,0,88,0,0,1 +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,77777,9,999999999,12,0.06,0,88,0,0,1 +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,58,83900,0,0,278,0,0,0,0,0,0,0,210,6.2,0,0,16,77777,9,999999999,11,0.06,0,88,0,0,1 +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,56,83900,0,0,280,0,0,0,0,0,0,0,200,6.2,0,0,16,77777,9,999999999,11,0.06,0,88,0,0,1 +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,58,83900,0,0,278,0,0,0,0,0,0,0,200,5.7,0,0,16,77777,9,999999999,10,0.06,0,88,0,0,1 +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,77777,9,999999999,9,0.06,0,88,0,0,1 +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,77777,9,999999999,9,0.06,0,88,0,0,1 +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,77777,9,999999999,8,0.06,0,88,0,0,1 +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,22780,19916,7196,2377,210,5.2,0,0,16,77777,9,999999999,8,0.06,0,88,0,0,1 +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,-1.1,33,84300,539,1378,306,400,841,70,47857,44315,8396,3133,230,4.1,0,0,16,77777,9,999999999,7,0.06,0,88,0,0,1 +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,59558,49241,20059,7377,210,3.6,0,0,16,77777,9,999999999,7,0.06,0,88,0,0,1 +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,75272,54979,14818,5947,240,3.1,0,0,16,77777,9,999999999,6,0.06,0,88,0,0,1 +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,71867,91721,13379,2144,240,2.1,0,0,16,77777,9,999999999,6,0.06,0,88,0,0,1 +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,69293,89185,13953,2097,180,2.1,0,0,16,77777,9,999999999,7,0.06,0,88,0,0,1 +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,-8.3,10,84300,777,1378,342,596,909,82,62686,90289,11847,1796,130,1.5,0,0,16,77777,9,999999999,7,0.06,0,88,0,0,1 +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,48694,84008,10151,1446,70,3.6,0,0,16,77777,9,999999999,8,0.06,0,88,0,0,1 +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,34218,32767,6332,2278,120,2.1,0,0,16,77777,9,999999999,8,0.06,0,88,0,0,1 +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,10299,0,3246,1052,80,2.6,0,0,16,77777,9,999999999,9,0.06,0,88,0,0,1 +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,77777,9,999999999,9,0.06,0,88,0,0,1 +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,77777,9,999999999,10,0.06,0,88,0,0,1 +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,77777,9,999999999,10,0.06,0,88,0,0,1 +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,77777,9,999999999,11,0.06,0,88,0,0,1 +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,77777,9,999999999,11,0.06,0,88,0,0,1 +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,77777,9,999999999,11,0.06,0,88,0,0,1 +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,77777,9,999999999,11,0.06,0,88,0,0,1 +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,77777,9,999999999,11,0.059,0,88,0,0,1 +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,77777,9,999999999,11,0.059,0,88,0,0,1 +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,35,83400,0,0,277,0,0,0,0,0,0,0,220,5.2,0,0,16,77777,9,999999999,11,0.059,0,88,0,0,1 +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,31,83400,0,0,284,0,0,0,0,0,0,0,220,4.1,0,0,16,77777,9,999999999,11,0.059,0,88,0,0,1 +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,77777,9,999999999,11,0.059,0,88,0,0,1 +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,77777,9,999999999,11,0.059,0,88,0,0,1 +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,1072,0,834,264,200,6.7,3,2,16,77777,9,999999999,10,0.059,0,88,0,0,1 +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,14701,7318,10905,3204,220,5.7,3,2,16,77777,9,999999999,10,0.059,0,88,0,0,1 +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,45430,45802,15813,5390,210,5.7,0,0,16,77777,9,999999999,10,0.059,0,88,0,0,1 +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,-3.9,19,84000,711,1379,331,504,647,169,58246,48289,19618,7219,180,2.1,1,1,16,77777,9,999999999,10,0.059,0,88,0,0,1 +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,67878,91134,13642,1968,140,1.5,3,3,16,77777,9,999999999,10,0.059,0,88,0,0,1 +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,15,84000,880,1379,351,672,902,95,70570,90437,13393,2123,90,2.6,5,4,16,7620,9,999999999,11,0.059,0,88,0,0,1 +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,72453,52189,21337,8324,50,3.6,4,4,16,7620,9,999999999,12,0.059,0,88,0,0,1 +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,15,83900,771,1379,353,544,778,108,65809,50860,13109,5197,90,4.6,5,5,16,7620,9,999999999,13,0.059,0,88,0,0,1 +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,15,83900,619,1379,354,406,552,158,46385,40298,18130,6404,70,5.7,6,6,16,7620,9,999999999,14,0.059,0,88,0,0,1 +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,15,83800,414,1379,354,126,34,115,14098,2003,12918,4154,90,6.2,7,6,16,7620,9,999999999,15,0.059,0,88,0,0,1 +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,5691,262,4700,1421,80,4.1,8,8,16,7620,9,999999999,16,0.059,0,88,0,0,1 +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,3658,9,999999999,17,0.059,0,88,0,0,1 +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,-3.9,26,83700,0,0,328,0,0,0,0,0,0,0,120,3.1,7,7,16,3658,9,999999999,19,0.059,0,88,0,0,1 +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,3658,9,999999999,20,0.059,0,88,0,0,1 +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,3658,9,999999999,21,0.059,0,88,0,0,1 +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,3658,9,999999999,22,0.059,0,88,0,0,1 +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,3658,9,999999999,23,0.059,0,88,0,0,1 +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,-3.9,36,83600,0,0,311,0,0,0,0,0,0,0,50,3.6,8,8,16,3048,9,999999999,22,0.059,0,88,0,0,1 +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,3048,9,999999999,21,0.059,0,88,0,0,1 +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,77777,9,999999999,20,0.059,0,88,0,0,1 +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,77777,9,999999999,19,0.059,0,88,0,0,1 +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,77777,9,999999999,18,0.059,0,88,0,0,1 +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,77777,9,999999999,17,0.059,0,88,0,0,1 +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,16,77777,9,999999999,16,0.059,0,88,0,0,1 +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,1335,12367,529,111,260,2.1,0,0,16,77777,9,999999999,15,0.059,0,88,0,0,1 +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,54,83900,305,1380,282,203,670,54,23338,19502,6224,2082,0,0,0,0,16,77777,9,999999999,14,0.059,0,88,0,0,1 +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,48,84000,529,1380,289,374,755,83,44045,41311,9804,3597,40,1.5,0,0,16,77777,9,999999999,13,0.059,0,88,0,0,1 +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,43,84000,705,1380,296,536,891,79,56808,88293,11581,1624,70,1.5,0,0,16,77777,9,999999999,12,0.059,0,88,0,0,1 +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,38,84000,823,1380,316,628,925,75,66723,92915,10825,1834,90,2.6,3,3,16,77777,9,999999999,11,0.059,0,88,0,0,1 +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,70372,90860,13151,2093,100,4.1,3,3,16,77777,9,999999999,11,0.059,0,88,0,0,1 +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,30,84000,854,1380,334,678,963,81,71880,96920,11580,1958,110,4.1,3,3,16,77777,9,999999999,11,0.059,0,88,0,0,1 +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,28,84000,764,1380,339,584,939,62,62376,93939,9124,1598,100,5.7,3,3,16,77777,9,999999999,11,0.059,0,88,0,0,1 +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.6,25,83900,612,1380,343,455,857,73,55080,47914,8860,3397,110,6.7,3,3,16,77777,9,999999999,11,0.059,0,88,0,0,1 +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,31154,29489,7071,2507,120,9.8,3,3,16,77777,9,999999999,11,0.059,0,88,0,0,1 +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,9855,0,3330,1061,140,6.7,2,2,16,77777,9,999999999,11,0.059,0,88,0,0,1 +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,77777,9,999999999,11,0.059,0,88,0,0,1 +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,77777,9,999999999,11,0.059,0,88,0,0,1 +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,77777,9,999999999,11,0.059,0,88,0,0,1 +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,77777,9,999999999,12,0.059,0,88,0,0,1 +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,77777,9,999999999,12,0.059,0,88,0,0,1 +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,77777,9,999999999,12,0.059,0,88,0,0,1 +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,77777,9,999999999,12,0.059,0,88,0,0,1 +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,77777,9,999999999,11,0.059,0,88,0,0,1 +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,77777,9,999999999,11,0.059,0,88,0,0,1 +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,77777,9,999999999,11,0.059,0,88,0,0,1 +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,77777,9,999999999,11,0.059,0,88,0,0,1 +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,77777,9,999999999,11,0.059,0,88,0,0,1 +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,70,82700,0,0,267,0,0,0,0,0,0,0,260,3.6,0,0,16,77777,9,999999999,11,0.059,0,88,0,0,1 +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,70,82800,62,978,267,10,159,4,1103,8501,696,137,260,2.1,0,0,16,77777,9,999999999,11,0.059,0,88,0,0,1 +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,20764,18802,9026,2783,270,3.1,0,0,16,77777,9,999999999,11,0.059,0,88,0,0,1 +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,41440,39747,12593,4460,260,3.1,0,0,16,77777,9,999999999,11,0.059,0,88,0,0,1 +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,32,83300,700,1381,315,504,794,101,60442,49540,12152,4722,270,2.6,0,0,16,77777,9,999999999,11,0.059,0,88,0,0,1 +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,-1.1,24,82800,817,1381,342,585,732,150,69457,51666,17883,7015,320,1.5,3,3,16,77777,9,999999999,11,0.059,0,88,0,0,1 +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,80874,57348,15113,6116,10,4.1,3,3,16,77777,9,999999999,11,0.059,0,88,0,0,1 +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,67941,90684,12400,1986,350,5.7,3,3,16,77777,9,999999999,11,0.059,0,88,0,0,1 +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,58796,86931,10793,1706,350,4.1,3,3,16,77777,9,999999999,11,0.059,0,88,0,0,1 +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,52375,46106,8629,3302,340,2.6,5,5,16,77777,9,999999999,11,0.059,0,88,0,0,1 +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,17,83100,401,1381,349,245,489,102,27582,26702,11526,3766,160,7.7,6,6,16,77777,9,999999999,11,0.059,0,88,0,0,1 +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,4692,0,4257,1288,150,9.3,9,8,16,6096,9,999999999,11,0.059,0,88,0,0,1 +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,6096,9,999999999,11,0.059,0,88,0,0,1 +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,6096,9,999999999,11,0.059,0,88,0,0,1 +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,6096,9,999999999,11,0.059,0,88,0,0,1 +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,3353,9,999999999,12,0.059,0,88,0,0,1 +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,3353,9,999999999,12,0.059,0,88,0,0,1 +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,6096,9,999999999,12,0.059,0,88,0,0,1 +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,6.1,77,82700,0,0,308,0,0,0,0,0,0,0,140,3.1,5,4,16,77777,9,999999999,12,0.059,0,88,0,0,1 +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,77777,9,999999999,13,0.058,0,88,0,0,1 +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,77777,9,999999999,13,0.058,0,88,0,0,1 +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,6096,9,999999999,14,0.058,0,88,0,0,1 +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,6096,9,999999999,14,0.058,0,88,0,0,1 +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,3658,9,999999999,15,0.058,0,88,0,0,1 +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,3.9,93,83000,0,0,289,0,0,0,0,0,0,0,310,1.5,8,6,16,6096,9,999999999,15,0.058,0,88,0,0,1 +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,611,0,489,155,310,1.5,10,10,0.4,91,9,999999999,16,0.058,0,88,0,0,1 +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,10325,1071,9813,2924,360,10.3,10,10,12.8,244,9,999999999,16,0.058,0,88,0,0,1 +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,6931,0,6987,3050,360,7.2,10,10,16,274,9,999999999,17,0.058,0,88,0,0,1 +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,5,100,83500,694,1381,314,91,0,91,9271,0,9351,4300,350,8.2,10,10,4,152,9,999999999,17,0.058,0,88,0,0,1 +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,96,83600,811,1381,316,100,0,100,10287,0,10379,4941,320,7.7,10,10,3.2,152,9,999999999,18,0.058,0,88,0,0,1 +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,5,100,83600,862,1381,314,109,0,109,11259,0,11361,5448,340,8.2,10,10,4.8,152,9,999999999,18,0.058,0,88,0,0,1 +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,4.4,96,83700,841,1381,313,106,0,106,10934,0,11033,5272,330,6.2,10,10,4.8,152,9,999999999,17,0.058,0,88,0,0,1 +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,4.4,96,83800,752,1381,313,92,0,92,9421,0,9504,4471,320,7.2,10,10,14.4,152,9,999999999,17,0.058,0,88,0,0,1 +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,4.4,96,83900,599,1381,313,71,0,71,7181,0,7241,3290,340,5.7,10,10,2.4,152,9,999999999,17,0.058,0,88,0,0.5,1 +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,3977,0,4008,1744,350,5.7,10,10,2.4,152,9,999999999,17,0.058,0,88,0,0,1 +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,1363,0,1373,558,330,6.7,10,10,2.4,152,9,999999999,17,0.058,0,88,0,0,1 +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,17,0.058,0,88,0,0,1 +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,152,9,999999999,16,0.058,0,88,0,0,1 +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,152,9,999999999,16,0.058,0,88,0,0,1 +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,122,9,999999999,16,0.058,0,88,0,0,1 +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,152,9,999999999,16,0.058,0,88,0,0,1 +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,213,9,999999999,16,0.058,0,88,0,0,1 +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,396,9,999999999,15,0.058,0,88,0,0,1 +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,14,0.058,0,88,0,0,1 +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,14,0.058,0,88,0,0,1 +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,13,0.058,0,88,0,7.9,1 +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,10,10,9.6,244,9,999999999,13,0.058,0,88,0,0,1 +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,10,10,11.2,244,9,999999999,12,0.058,0,88,0,0,1 +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,11,0.058,0,88,0,0,1 +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,3.9,93,84300,56,933,312,2,0,2,193,0,194,80,90,1.5,10,10,9.6,183,9,999999999,11,0.058,0,88,0,0,1 +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,4.4,96,84300,290,1382,313,52,0,52,5122,0,5160,1985,80,2.6,10,10,9.6,183,9,999999999,10,0.058,0,88,0,0,1 +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,93,84500,513,1382,319,97,0,97,9734,0,9813,4033,170,2.6,10,10,11.2,244,9,999999999,10,0.058,0,88,0,0,1 +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,32263,5809,28767,9313,150,2.1,10,9,14.4,305,9,999999999,9,0.058,0,88,0,0,1 +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,35691,4242,32627,11158,120,2.1,9,9,16,457,9,999999999,9,0.058,0,88,0,0,1 +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,6.7,80,84400,856,1382,329,333,42,307,37497,3734,34778,12072,70,2.6,10,9,16,457,9,999999999,9,0.058,0,88,0,0,1 +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,43739,13071,33708,11667,80,5.2,9,9,16,579,9,999999999,10,0.058,0,88,0,0,1 +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,51088,32644,26135,9214,90,5.2,9,8,16,1128,9,999999999,10,0.058,0,88,0,0,1 +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,26140,7049,21689,7144,70,6.7,10,9,16,1219,9,999999999,11,0.058,0,88,0,0,1 +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,7837,0,7898,3076,240,4.6,10,9,16,1402,9,999999999,11,0.058,0,88,0,0,1 +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,1264,0,1272,518,260,5.7,10,10,16,6096,9,999999999,12,0.058,0,88,0,0,1 +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,12,0.058,0,88,0,0,1 +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,13,0.058,0,88,0,0,1 +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,13,0.058,0,88,0,0,1 +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,6096,9,999999999,14,0.058,0,88,0,0,1 +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,3048,9,999999999,14,0.058,0,88,0,0,1 +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,6096,9,999999999,15,0.058,0,88,0,0,1 +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,3048,9,999999999,15,0.058,0,88,0,0,1 +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,2743,9,999999999,14,0.057,0,88,0,0,1 +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,2743,9,999999999,14,0.057,0,88,0,0,1 +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,2438,9,999999999,14,0.057,0,88,0,0.3,1 +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,6096,9,999999999,14,0.057,0,88,0,0,1 +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,6096,9,999999999,13,0.057,0,88,0,0,1 +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,13,0.057,0,88,0,0,1 +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,96,0,97,40,270,5.7,10,10,0.3,30,9,999999999,13,0.057,0,88,0,0,1 +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,3443,0,3468,1420,260,4.1,10,10,0.3,30,9,999999999,13,0.057,0,88,0,0,1 +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,27654,15227,19154,5989,270,2.6,10,10,2,30,9,999999999,12,0.057,0,88,0,0,1 +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,7,93,83700,683,1383,314,136,0,136,13829,0,13949,5979,250,3.1,8,8,4.8,150,9,999999999,12,0.057,0,88,0,0,1 +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,65488,47353,22981,8626,260,3.6,5,5,4.8,77777,9,999999999,12,0.057,0,88,0,0,1 +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,80779,55909,14242,5766,310,3.1,5,5,4.8,77777,9,999999999,12,0.057,0,88,0,0,1 +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,68035,92084,12867,1948,310,3.6,5,5,4.8,77777,9,999999999,13,0.057,0,88,0,0,1 +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,59676,91940,9454,1585,310,3.1,4,4,9.6,77777,9,999999999,13,0.057,0,88,0,0,1 +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,49537,43976,12954,4764,10,3.1,5,5,9.6,77777,9,999999999,13,0.057,0,88,0,0,1 +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,23936,19985,10489,3446,310,4.6,5,5,12.8,77777,9,999999999,14,0.057,0,88,0,0,1 +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,7258,0,4302,1253,290,4.6,9,5,12.8,77777,9,999999999,14,0.057,0,88,0,0,1 +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,77777,9,999999999,14,0.057,0,88,0,0,1 +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,77777,9,999999999,15,0.057,0,88,0,0,1 +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,6.7,80,83500,0,0,306,0,0,0,0,0,0,0,300,3.1,3,3,16,77777,9,999999999,15,0.057,0,88,0,0,1 +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,77777,9,999999999,15,0.057,0,88,0,0,1 +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,77777,9,999999999,15,0.057,0,88,0,0,1 +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,77777,9,999999999,16,0.057,0,88,0,0,1 +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,16,0.057,0,88,0,0,1 +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,77777,9,999999999,15,0.056,0,88,0,0,1 +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,77777,9,999999999,15,0.056,0,88,0,0,1 +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,77777,9,999999999,15,0.056,0,88,0,0,1 +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,1.7,79,83100,0,0,269,0,0,0,0,0,0,0,200,4.6,0,0,16,77777,9,999999999,15,0.056,0,88,0,0,1 +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.6,73,83200,0,0,279,0,0,0,0,0,0,0,200,5.7,3,3,16,77777,9,999999999,14,0.056,0,88,0,0,1 +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,77777,9,999999999,14,0.056,0,88,0,0,1 +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,552,5911,525,105,200,5.2,3,3,16,77777,9,999999999,14,0.056,0,88,0,0,1 +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,56,83300,280,1384,292,176,454,84,19345,17148,9268,2742,210,5.2,3,3,16,77777,9,999999999,14,0.056,0,88,0,0,1 +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,41053,39118,9201,3346,210,4.6,3,3,16,77777,9,999999999,14,0.056,0,88,0,0,1 +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,56349,91532,11072,1554,270,2.1,5,5,16,77777,9,999999999,13,0.056,0,88,0,0,1 +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,63497,91867,10051,1717,150,1.5,5,5,16,77777,9,999999999,13,0.056,0,88,0,0,1 +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,76706,54554,12104,4917,70,3.6,5,5,16,77777,9,999999999,13,0.056,0,88,0,0,1 +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,66738,92796,11231,1858,30,2.1,3,3,16,77777,9,999999999,13,0.056,0,88,0,0,1 +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,65566,53080,12235,4806,350,1.5,4,3,16,77777,9,999999999,13,0.056,0,88,0,0,1 +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,44059,40140,14161,5107,50,2.6,4,4,16,77777,9,999999999,13,0.056,0,88,0,0,1 +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,-3.3,27,83500,376,1384,322,256,576,99,28674,29834,11130,3569,0,0,5,5,16,77777,9,999999999,13,0.056,0,88,0,0,1 +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,2533,0,2551,923,200,1.5,9,8,16,3048,9,999999999,12,0.056,0,88,0,0,1 +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,44,83400,0,81,311,0,0,0,0,0,0,0,240,2.6,5,5,16,77777,9,999999999,12,0.056,0,88,0,0,1 +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,-1.1,45,83400,0,0,298,0,0,0,0,0,0,0,290,3.6,3,3,16,77777,9,999999999,12,0.056,0,88,0,0,1 +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,-1.7,43,83300,0,0,297,0,0,0,0,0,0,0,280,2.6,3,3,16,77777,9,999999999,12,0.056,0,88,0,0,1 +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,-1.7,43,83400,0,0,297,0,0,0,0,0,0,0,250,3.1,3,3,16,77777,9,999999999,12,0.056,0,88,0,0,1 +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,6096,9,999999999,12,0.056,0,88,0,0,1 +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,4,4,16,6096,9,999999999,12,0.056,0,88,0,0,1 +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,77777,9,999999999,11,0.056,0,88,0,0,1 +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,77777,9,999999999,11,0.056,0,88,0,0,1 +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,77777,9,999999999,11,0.056,0,88,0,0,1 +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,77777,9,999999999,10,0.056,0,88,0,0,1 +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,77777,9,999999999,10,0.056,0,88,0,0,1 +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,77777,9,999999999,10,0.056,0,88,0,0,1 +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,77777,9,999999999,10,0.056,0,88,0,0,1 +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,556,8071,356,75,220,5.7,0,0,16,77777,9,999999999,9,0.056,0,88,0,0,1 +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,21950,19401,7000,2222,230,4.6,0,0,16,77777,9,999999999,9,0.056,0,88,0,0,1 +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,-1.7,43,83500,496,1385,285,364,846,59,43705,40694,7100,2623,240,4.6,0,0,16,77777,9,999999999,9,0.056,0,88,0,0,1 +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,60820,51875,11092,4286,240,2.6,0,0,16,77777,9,999999999,8,0.056,0,88,0,0,1 +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,40,83300,788,1385,300,611,962,61,65300,96438,8958,1610,260,2.1,0,0,16,77777,9,999999999,8,0.056,0,88,0,0,1 +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,36,83600,837,1385,308,642,914,87,67914,91794,12429,1952,110,2.6,0,0,16,77777,9,999999999,8,0.056,0,88,0,0,1 +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,73873,54459,13188,5299,100,2.1,0,0,16,77777,9,999999999,9,0.056,0,88,0,0,1 +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,62006,48994,10527,4159,80,1.5,3,3,16,77777,9,999999999,9,0.056,0,88,0,0,1 +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,50204,45053,7901,2998,70,3.1,3,3,16,77777,9,999999999,9,0.056,0,88,0,0,1 +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,28325,26086,6243,2187,60,3.1,3,3,16,77777,9,999999999,9,0.056,0,88,0,0,1 +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,5680,0,2845,885,60,3.6,5,5,16,77777,9,999999999,10,0.056,0,88,0,0,1 +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,52,83400,0,35,297,0,0,0,0,0,0,0,40,3.6,3,3,16,77777,9,999999999,10,0.056,0,88,0,0,1 +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,77777,9,999999999,10,0.056,0,88,0,0,1 +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,60,83300,0,0,281,0,0,0,0,0,0,0,80,2.1,1,1,16,77777,9,999999999,11,0.056,0,88,0,0,1 +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,67,83200,0,0,278,0,0,0,0,0,0,0,190,3.6,3,2,16,77777,9,999999999,11,0.056,0,88,0,0,1 +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,77777,9,999999999,11,0.056,0,88,0,0,1 +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,77777,9,999999999,12,0.056,0,88,0,0,1 +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,-1.1,64,83200,0,0,275,0,0,0,0,0,0,0,200,4.6,2,2,16,77777,9,999999999,12,0.056,0,88,0,0,1 +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,77777,9,999999999,13,0.055,0,88,0,0,1 +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,77777,9,999999999,13,0.055,0,88,0,0,1 +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,77777,9,999999999,14,0.055,0,88,0,0,1 +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,77777,9,999999999,15,0.055,0,88,0,0,1 +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,77777,9,999999999,15,0.055,0,88,0,0,1 +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,73,83300,0,0,274,0,0,0,0,0,0,0,240,2.1,4,2,16,7620,9,999999999,16,0.055,0,88,0,0,1 +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,334,3875,355,74,220,2.6,3,1,16,7620,9,999999999,17,0.055,0,88,0,0,1 +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,15803,11380,8318,2507,240,1.5,2,1,16,7620,9,999999999,17,0.055,0,88,0,0,1 +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,35299,33290,12077,4206,0,0,4,2,16,7620,9,999999999,18,0.055,0,88,0,0,1 +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,47447,35300,23618,8035,70,2.1,5,4,16,7620,9,999999999,19,0.055,0,88,0,0,1 +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,64696,48232,15217,5988,90,2.1,3,2,16,7620,9,999999999,19,0.055,0,88,0,0,1 +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,5.6,53,83800,831,1385,327,545,577,197,63341,43147,23008,8763,100,4.1,4,3,16,7620,9,999999999,19,0.055,0,88,0,0,1 +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,72792,53096,15167,6036,80,3.6,5,4,16,7620,9,999999999,19,0.055,0,88,0,0,1 +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,63290,51640,19375,7199,60,6.7,5,4,16,7620,9,999999999,19,0.055,0,88,0,0,1 +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,25317,7384,20868,6782,50,5.2,9,6,16,7620,9,999999999,19,0.055,0,88,0,0,1 +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,7226,0,7282,2818,360,6.2,9,5,16,6706,9,999999999,19,0.055,0,88,0,0,1 +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,5050,0,3853,1111,280,5.2,9,8,16,6706,9,999999999,19,0.055,0,88,0,0,1 +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,7.2,83,83500,0,12,312,0,0,0,0,0,0,0,290,5.2,7,5,12.8,6706,9,999999999,18,0.055,0,88,0,0,1 +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,10,4,12.8,6096,9,999999999,18,0.055,0,88,0,0,1 +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,18,0.055,0,88,0,0,1 +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,18,0.055,0,88,0,0,1 +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,93,83200,0,0,290,0,0,0,0,0,0,0,140,2.1,9,4,8,6096,9,999999999,18,0.055,0,88,0,0,1 +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,3353,9,999999999,18,0.055,0,88,0,0,1 +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,93,83100,0,0,290,0,0,0,0,0,0,0,130,3.1,8,4,11.2,3658,9,999999999,18,0.055,0,88,0,0,1 +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,3658,9,999999999,17,0.054,0,88,0,0,1 +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,6096,9,999999999,17,0.054,0,88,0,0,1 +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,6096,9,999999999,17,0.054,0,88,0,0,1 +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,6096,9,999999999,16,0.054,0,88,0,0,1 +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,10,9,16,2438,9,999999999,16,0.054,0,88,0,0,1 +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,2438,9,999999999,16,0.054,0,88,0,0,1 +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,96,0,97,40,140,3.6,10,8,16,3353,9,999999999,15,0.054,0,88,0,0,1 +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,8.9,93,83100,264,1386,320,54,0,54,5296,0,5335,1977,130,3.6,9,7,16,5486,9,999999999,15,0.054,0,88,0,0,1 +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,10504,0,10588,4184,250,3.6,9,5,8,6096,9,999999999,14,0.054,0,88,0,0,1 +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,25324,962,24785,8264,270,2.6,10,7,9.6,6096,9,999999999,14,0.054,0,88,0,0,1 +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,30238,2485,28477,9970,280,2.1,9,8,11.2,3353,9,999999999,14,0.054,0,88,0,0,1 +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,7.8,62,83100,826,1386,338,103,0,103,10592,0,10687,5098,220,3.1,9,6,16,6096,9,999999999,14,0.054,0,88,0,0,1 +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,33416,5899,28818,10264,310,5.7,10,7,9.6,6096,9,999999999,13,0.054,0,88,0,0,1 +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,18567,817,17948,6735,300,4.6,8,6,9.6,6096,9,999999999,13,0.054,0,88,0,0,1 +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,26495,9586,20834,6731,360,4.1,10,7,9.6,6096,9,999999999,13,0.054,0,88,0,0,1 +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,21083,16577,11139,3500,110,5.2,9,7,16,6096,9,999999999,12,0.054,0,88,0,0,1 +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,5938,0,3639,1051,250,4.1,10,10,16,6096,9,999999999,12,0.054,0,88,0,0,1 +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,7.2,83,82700,0,0,318,0,0,0,0,0,0,0,280,3.6,8,7,16,7620,9,999999999,12,0.054,0,88,0,0,1 +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,6858,9,999999999,12,0.054,0,88,0,0,1 +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,6096,9,999999999,11,0.054,0,88,0,0,1 +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,6096,9,999999999,11,0.054,0,88,0,0,1 +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,2134,9,999999999,11,0.054,0,88,0,0,1 +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,2134,9,999999999,10,0.054,0,88,0,0,1 +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,1219,9,999999999,10,0.054,0,88,0,0,1 +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,30,9,999999999,10,0.054,0,88,0,0,1 +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,30,9,999999999,10,0.054,0,88,0,0,1 +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,10,0.054,0,88,0,0.3,1 +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,10,0.054,0,88,0,0,1 +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,1981,9,999999999,10,0.054,0,88,0,0,1 +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,10,10,11.2,2316,9,999999999,10,0.054,0,88,0,0,1 +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,131,0,130,40,80,3.1,9,9,16,3353,9,999999999,10,0.054,0,88,0,0,1 +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,9881,954,9376,2657,100,2.6,9,9,16,2438,9,999999999,10,0.054,0,88,0,0,1 +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,14099,0,14212,5110,130,3.1,8,8,16,2438,9,999999999,10,0.054,0,88,0,0,1 +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,26149,3409,24039,8056,130,3.6,8,8,16,2591,9,999999999,10,0.054,0,88,0,0,1 +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,61123,45112,21902,8160,160,3.6,5,5,16,77777,9,999999999,10,0.054,0,88,0,0,1 +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,72875,52333,13062,5258,290,3.1,4,4,16,77777,9,999999999,10,0.054,0,88,0,0,1 +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,71320,52380,11781,4734,260,5.2,4,4,16,77777,9,999999999,10,0.054,0,88,0,0,1 +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,58849,47329,10831,4246,270,4.6,3,3,16,77777,9,999999999,10,0.054,0,88,0,0,1 +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,45598,41593,8541,3205,280,2.1,3,3,16,77777,9,999999999,10,0.054,0,88,0,0,1 +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,27096,23283,5120,1800,290,4.1,3,3,16,77777,9,999999999,10,0.054,0,88,0,0,1 +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,5265,0,2293,717,270,3.6,5,5,16,77777,9,999999999,10,0.054,0,88,0,0,1 +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,77777,9,999999999,10,0.054,0,88,0,0,1 +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,77777,9,999999999,10,0.054,0,88,0,0,1 +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,1,1,16,77777,9,999999999,10,0.054,0,88,0,0,1 +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.6,67,83000,0,0,267,0,0,0,0,0,0,0,150,3.6,1,0,16,77777,9,999999999,10,0.054,0,88,0,0,1 +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,77777,9,999999999,10,0.054,0,88,0,0,1 +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,77777,9,999999999,10,0.054,0,88,0,0,1 +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,77777,9,999999999,10,0.054,0,88,0,0,1 +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,77777,9,999999999,10,0.053,0,88,0,0,1 +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,77777,9,999999999,9,0.053,0,88,0,0,1 +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,77777,9,999999999,9,0.053,0,88,0,0,1 +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,77777,9,999999999,9,0.053,0,88,0,0,1 +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,77777,9,999999999,9,0.053,0,88,0,0,1 +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,7620,9,999999999,9,0.053,0,88,0,0,1 +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,130,0,130,40,240,3.6,8,4,16,77777,9,999999999,9,0.053,0,88,0,0,1 +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.6,67,83000,254,1388,275,101,106,82,11017,3656,8979,2558,240,3.6,4,2,16,6706,9,999999999,9,0.053,0,88,0,0,1 +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,40301,42301,14952,4888,270,5.2,1,1,16,6706,9,999999999,9,0.053,0,88,0,0,1 +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,54074,91157,10989,1493,260,3.1,2,2,16,77777,9,999999999,9,0.053,0,88,0,0,1 +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,66,83000,765,1388,309,549,781,117,65700,49719,14052,5532,310,1.5,3,3,16,77777,9,999999999,9,0.053,0,88,0,0,1 +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,72417,53903,17614,6912,0,0,6,5,16,6706,9,999999999,9,0.053,0,88,0,0,1 +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,51792,29271,29957,10432,250,2.1,1,1,16,6706,9,999999999,9,0.053,0,88,0,0,1 +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,3.9,47,83200,703,1388,318,513,765,124,60503,49643,14680,5617,170,2.1,1,1,16,6706,9,999999999,10,0.053,0,88,0,0,1 +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,44796,40409,9839,3650,80,2.6,1,0,16,77777,9,999999999,10,0.053,0,88,0,0,1 +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,3.3,45,83200,347,1388,333,194,482,73,22037,18931,8318,2762,10,3.1,6,6,16,77777,9,999999999,10,0.053,0,88,0,0,1 +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,5015,0,2904,865,350,4.6,9,9,16,6706,9,999999999,11,0.053,0,88,0,0,1 +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,6706,9,999999999,11,0.053,0,88,0,0,1 +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,77777,9,999999999,11,0.053,0,88,0,0,1 +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,77777,9,999999999,11,0.053,0,88,0,0,1 +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,77777,9,999999999,12,0.053,0,88,0,0,1 +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,77777,9,999999999,12,0.053,0,88,0,0,1 +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,77777,9,999999999,12,0.053,0,88,0,0,1 +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,77777,9,999999999,12,0.053,0,88,0,0,1 +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,77777,9,999999999,11,0.052,0,88,0,0,1 +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,77777,9,999999999,11,0.052,0,88,0,0,1 +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,77777,9,999999999,10,0.052,0,88,0,0,1 +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,77777,9,999999999,10,0.052,0,88,0,0,1 +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,85,82800,0,0,256,0,0,0,0,0,0,0,240,4.1,0,0,16,6096,9,999999999,10,0.052,0,88,0,0,1 +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,183,9,999999999,9,0.052,0,88,0,0,1 +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,244,9,999999999,9,0.052,0,88,0,0,1 +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,17802,14628,11818,2851,10,4.1,10,10,16,244,9,999999999,8,0.052,0,88,0,0,1 +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,3.3,89,82800,469,1388,312,191,107,154,21078,7297,17073,5309,360,2.1,10,10,12.8,183,9,999999999,8,0.052,0,88,0,0,1 +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,4,93,82800,643,1388,313,195,6,192,21956,460,21724,7436,320,3.6,10,10,1.6,120,9,999999999,8,0.052,0,88,0,0,1 +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,3.9,93,82800,759,1388,312,106,0,106,10859,0,10954,5066,340,2.1,10,10,2.4,122,9,999999999,7,0.052,0,88,0,0,1 +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,5,93,82700,808,1388,318,97,0,97,9972,0,10061,4794,20,2.1,10,10,2.8,120,9,999999999,7,0.052,0,88,0,0.3,1 +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,5,93,82700,787,1388,318,94,0,94,9648,0,9733,4620,0,0,10,10,2.8,90,9,999999999,7,0.052,0,88,0,0,1 +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,96,82600,697,1388,316,108,0,108,11004,0,11099,4986,280,1.5,10,10,1.6,183,9,999999999,7,0.052,0,88,0,0,1 +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,93,82600,545,1388,319,76,0,76,7647,0,7710,3373,260,3.6,10,10,9.6,183,9,999999999,7,0.052,0,88,0,0.3,1 +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,6231,0,6278,2449,100,3.1,9,8,11.2,2896,9,999999999,7,0.052,0,88,0,0,1 +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,93,82300,104,1284,319,8,0,8,775,0,781,317,310,2.6,10,10,14.4,1981,9,999999999,6,0.052,0,88,0,0,1 +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,96,82400,0,0,308,0,0,0,0,0,0,0,270,2.6,9,9,9.6,3048,9,999999999,6,0.052,0,88,0,0,1 +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,96,82400,0,0,316,0,0,0,0,0,0,0,260,6.2,10,10,9.6,549,9,999999999,6,0.052,0,88,0,0,1 +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,6,0.052,0,88,0,0,1 +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,6,0.052,0,88,0,0,1 +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,1219,9,999999999,6,0.052,0,88,0,1.3,1 +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,92,82300,0,0,283,0,0,0,0,0,0,0,170,6.7,10,10,16,1981,9,999999999,6,0.052,0,88,0,0,1 +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,2896,9,999999999,5,0.052,0,88,0,0,1 +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,1158,9,999999999,8,0.052,0,88,0,0,1 +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,-6.7,91,83600,0,0,260,0,0,0,0,0,0,0,20,3.6,10,10,4.8,1250,9,999999999,8,0.052,0,88,0,0,1 +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,8,0.052,0,88,0,0,1 +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,86,83700,0,0,244,0,0,0,0,0,0,0,90,1.5,10,10,16,945,9,999999999,8,0.052,0,88,0,0,1 +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,8,0.052,0,88,0,0,1 +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,9,0.052,0,88,0,0,1 +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,9,0.052,0,88,0,0,1 +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,11162,3668,9357,2554,120,3.1,10,9,11.2,1067,9,999999999,9,0.052,0,88,0,0,1 +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,5717,0,5762,2489,110,2.6,10,9,16,3962,9,999999999,8,0.052,0,88,0,0,1 +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,9260,0,9337,4160,120,3.6,10,5,16,77777,9,999999999,8,0.052,0,88,0,0,1 +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,-6.7,86,83900,756,1388,247,187,0,187,19203,0,19370,7992,80,4.1,10,8,16,701,9,999999999,8,0.052,0,88,0,0,1 +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,87,83700,805,1388,261,139,0,139,14326,0,14453,6519,110,4.1,10,9,16,640,9,999999999,8,0.052,0,88,0,0,1 +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,-6.1,91,83600,783,1388,260,100,0,100,10292,0,10382,4866,360,6.2,10,10,1.6,701,9,999999999,9,0.052,0,88,0,0,1 +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,13385,0,13498,5828,10,5.7,10,10,2,91,9,999999999,9,0.052,0,88,0,0,1 +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,8782,0,8853,3766,10,5.7,10,10,2,30,9,999999999,9,0.052,0,88,0,0,1 +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,6649,0,6698,2553,360,4.1,10,10,2,30,9,999999999,9,0.052,0,88,0,0,1 +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,1556,0,1566,579,340,3.6,10,10,0.4,30,9,999999999,9,0.052,0,88,0,0,1 +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,9,0.052,0,88,0,0,1 +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,9,0.052,0,88,0,0,1 +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,10,10,0.4,30,9,999999999,10,0.052,0,88,0,0,1 +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,10,10,0.4,30,9,999999999,10,0.052,0,88,0,0,1 +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,10,10,1.2,30,9,999999999,10,0.052,0,88,0,0,1 +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,10,10,1.2,91,9,999999999,10,0.052,0,88,0,0,1 +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,10,10,1.2,91,9,999999999,10,0.052,0,88,0,0,1 +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,10,0.051,0,88,0,0,1 +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,10,10,2.4,91,9,999999999,10,0.051,0,88,0,0,1 +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,9,0.051,0,88,0,0,1 +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,10,10,1.6,91,9,999999999,9,0.051,0,88,0,0,1 +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,10,10,1.6,91,9,999999999,9,0.051,0,88,0,0,1 +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,9,0.051,0,88,0,0,1 +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,10,10,0.8,61,9,999999999,9,0.051,0,88,0,0,1 +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,2755,0,2774,1119,0,0,10,10,0.8,61,9,999999999,10,0.051,0,88,0,0,1 +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,-5.6,95,83000,461,1389,261,106,0,106,10621,0,10705,4097,0,0,10,10,2.4,61,9,999999999,9,0.051,0,88,0,0,1 +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,13927,0,14043,5787,0,0,10,10,2,61,9,999999999,9,0.051,0,88,0,0,1 +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,10877,0,10972,5035,0,0,10,10,0.8,122,9,999999999,9,0.051,0,88,0,0,1 +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,12466,0,12576,5781,30,2.1,10,10,2.4,122,9,999999999,9,0.051,0,88,0,0,1 +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,15119,0,15252,6726,20,1.5,10,10,2.4,183,9,999999999,9,0.051,0,88,0,0,1 +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,25085,1970,23848,8205,0,0,10,10,2.4,244,9,999999999,8,0.051,0,88,0,0,1 +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,83,83000,536,1389,263,211,88,177,23431,6732,19750,6279,20,3.1,9,9,2.4,3048,9,999999999,9,0.051,0,88,0,0,1 +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,83,83100,333,1389,248,139,184,95,15406,8749,10569,3239,10,3.1,6,5,2.4,77777,9,999999999,9,0.051,0,88,0,0,1 +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,3332,0,1841,573,330,4.1,6,5,2.4,77777,9,999999999,9,0.051,0,88,0,0,1 +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,9,0.051,0,88,0,0,1 +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,10,10,2.4,1433,9,999999999,8,0.051,0,88,0,0,1 +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,87,83300,0,0,268,0,0,0,0,0,0,0,270,2.1,10,10,6.4,1494,9,999999999,8,0.051,0,88,0,0,1 +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,7,0.051,0,88,0,0,1 +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,10,10,1.6,396,9,999999999,7,0.051,0,88,0,0,1 +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,-5.6,95,83500,0,0,261,0,0,0,0,0,0,0,70,2.1,10,10,1.6,213,9,999999999,7,0.051,0,88,0,0,1 +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,6,0.051,0,88,0,0,1 +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,95,83300,0,0,264,0,0,0,0,0,0,0,170,2.1,10,10,2.4,549,9,999999999,6,0.051,0,88,0,0,1 +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,95,83300,0,0,264,0,0,0,0,0,0,0,0,0,10,10,3.2,518,9,999999999,6,0.051,0,88,0,0,1 +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,-5.6,95,83300,0,0,261,0,0,0,0,0,0,0,150,1.5,10,10,4.8,823,9,999999999,6,0.051,0,88,0,0,1 +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,95,83400,0,0,257,0,0,0,0,0,0,0,230,1.5,9,9,1.6,335,9,999999999,7,0.051,0,88,0,0,1 +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,95,83700,0,0,264,0,0,0,0,0,0,0,220,3.1,10,10,4.8,914,9,999999999,7,0.051,0,88,0,0,1 +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,6,0.051,0,88,0,0,1 +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,6,0.051,0,88,0,0,1 +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,4722,0,4755,1728,210,4.6,2,2,16,77777,9,999999999,5,0.051,0,88,0,0,1 +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,5711,0,5756,2469,200,5.2,3,3,16,77777,9,999999999,5,0.051,0,88,0,0,1 +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,7925,0,7991,3615,210,3.6,2,2,16,77777,9,999999999,5,0.051,0,88,0,0,1 +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,11488,0,11588,5262,200,3.1,3,3,16,77777,9,999999999,4,0.051,0,88,0,0,1 +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,-8.9,47,83900,793,1390,240,163,0,163,16795,0,16942,7368,190,2.6,0,0,16,77777,9,999999999,4,0.051,0,88,0,0,1 +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,37669,10415,30758,10383,180,2.6,3,3,16,77777,9,999999999,4,0.051,0,88,0,0,1 +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,31689,7378,27374,8923,170,3.6,2,2,16,77777,9,999999999,4,0.051,0,88,0,0,1 +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,24554,9091,19647,6212,140,3.1,3,3,16,77777,9,999999999,4,0.051,0,88,0,0,1 +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,17823,14414,8601,2765,140,2.6,2,2,16,77777,9,999999999,3,0.051,0,88,0,0,1 +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,3744,0,2046,622,150,3.6,3,3,16,77777,9,999999999,3,0.051,0,88,0,0,1 +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,77777,9,999999999,3,0.051,0,88,0,0,1 +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,77777,9,999999999,3,0.051,0,88,0,0,1 +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,-11.1,59,83500,0,0,221,0,0,0,0,0,0,0,170,5.2,0,0,16,77777,9,999999999,3,0.051,0,88,0,0,1 +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,77777,9,999999999,3,0.051,0,88,0,0,1 +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,77777,9,999999999,3,0.051,0,88,0,0,1 +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,77777,9,999999999,3,0.051,0,88,0,0,1 +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,75,83100,0,0,217,0,0,0,0,0,0,0,160,3.1,0,0,16,77777,9,999999999,3,0.051,0,88,0,0,1 +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,-8.9,71,83000,0,0,228,0,0,0,0,0,0,0,240,3.1,1,1,16,77777,9,999999999,3,0.05,0,88,0,0,1 +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,-8.9,71,83000,0,0,235,0,0,0,0,0,0,0,190,2.1,5,4,16,77777,9,999999999,3,0.05,0,88,0,0,1 +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,77777,9,999999999,4,0.05,0,88,0,0,1 +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,6096,9,999999999,5,0.05,0,88,0,0,1 +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,6096,9,999999999,5,0.05,0,88,0,0,1 +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,6096,9,999999999,5,0.05,0,88,0,0,1 +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,-7.8,79,82700,25,637,236,0,0,0,0,0,0,0,270,4.1,10,4,16,6096,9,999999999,6,0.05,0,88,0,0,1 +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,6685,0,6732,2166,280,3.6,9,5,16,6706,9,999999999,6,0.05,0,88,0,0,1 +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,11416,0,11505,4262,270,1.5,8,5,14.4,6096,9,999999999,6,0.05,0,88,0,0,1 +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,9243,0,9320,4117,270,3.1,7,5,16,3962,9,999999999,7,0.05,0,88,0,0,1 +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,15994,0,16132,6880,230,2.6,9,5,16,4572,9,999999999,7,0.05,0,88,0,0,1 +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,14928,0,15059,6683,270,2.1,9,9,16,4572,9,999999999,7,0.05,0,88,0,0,1 +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,41776,17612,29666,10100,300,3.1,5,5,16,77777,9,999999999,7,0.05,0,88,0,0,1 +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,46860,36812,19796,7086,340,3.6,7,6,16,6706,9,999999999,7,0.05,0,88,0,0,1 +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,34574,30739,13560,4726,350,2.6,9,7,16,6706,9,999999999,7,0.05,0,88,0,0,1 +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,16931,12452,9614,2986,250,3.1,8,5,16,6706,9,999999999,6,0.05,0,88,0,0,1 +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,971,0,977,377,320,2.1,7,7,16,6706,9,999999999,6,0.05,0,88,0,0,1 +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,3658,9,999999999,5,0.05,0,88,0,0,1 +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,-5,66,82600,0,0,261,0,0,0,0,0,0,0,180,2.1,9,6,16,3658,9,999999999,5,0.05,0,88,0,0,1 +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,76,82600,0,0,246,0,0,0,0,0,0,0,70,2.1,5,2,16,6096,9,999999999,5,0.05,0,88,0,0,1 +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,6096,9,999999999,5,0.05,0,88,0,0,1 +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,6096,9,999999999,5,0.05,0,88,0,0,1 +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,77777,9,999999999,4,0.05,0,88,0,0,1 +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,6096,9,999999999,5,0.05,0,88,0,0,1 +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,6096,9,999999999,5,0.049,0,88,0,0,1 +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,77777,9,999999999,5,0.049,0,88,0,0,1 +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,77777,9,999999999,5,0.049,0,88,0,0,1 +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,3048,9,999999999,5,0.049,0,88,0,0,1 +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,-9.4,68,83000,0,0,234,0,0,0,0,0,0,0,140,1.5,4,4,16,77777,9,999999999,5,0.049,0,88,0,0,1 +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,77777,9,999999999,5,0.049,0,88,0,0,1 +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,77777,9,999999999,4,0.049,0,88,0,0,1 +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,13861,9649,8480,2302,230,3.1,3,3,16,77777,9,999999999,4,0.049,0,88,0,0,1 +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,20443,7089,16894,5072,240,3.1,3,3,16,77777,9,999999999,4,0.049,0,88,0,0,1 +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,29698,8409,24954,7889,210,3.1,0,0,16,77777,9,999999999,4,0.049,0,88,0,0,1 +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,43347,21724,29171,9707,270,3.6,3,3,16,77777,9,999999999,4,0.049,0,88,0,0,1 +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,56166,39600,25640,9221,270,4.6,3,3,16,77777,9,999999999,4,0.049,0,88,0,0,1 +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,65529,52780,14186,5548,290,3.6,3,3,16,77777,9,999999999,4,0.049,0,88,0,0,1 +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,60433,51234,9180,3571,290,3.1,1,1,16,77777,9,999999999,4,0.049,0,88,0,0,1 +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,-8.9,23,83700,520,1391,278,377,845,60,45464,43047,7251,2695,330,2.1,0,0,16,77777,9,999999999,5,0.049,0,88,0,0,1 +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,21215,61804,5435,800,0,0,0,0,16,77777,9,999999999,5,0.049,0,88,0,0,1 +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,3533,21027,1998,276,100,2.6,0,0,16,77777,9,999999999,5,0.049,0,88,0,0,1 +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,77777,9,999999999,5,0.049,0,88,0,0,1 +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,77777,9,999999999,5,0.049,0,88,0,0,1 +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,56,83600,0,0,252,0,0,0,0,0,0,0,190,3.1,0,0,16,77777,9,999999999,5,0.049,0,88,0,0,1 +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,77777,9,999999999,5,0.049,0,88,0,0,1 +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,77777,9,999999999,6,0.049,0,88,0,0,1 +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,77777,9,999999999,6,0.049,0,88,0,0,1 +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,77777,9,999999999,6,0.049,0,88,0,0,1 +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,6096,9,999999999,6,0.049,0,88,0,0,1 +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,6096,9,999999999,6,0.049,0,88,0,0,1 +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,77777,9,999999999,6,0.049,0,88,0,0,1 +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,77777,9,999999999,6,0.049,0,88,0,0,1 +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,77777,9,999999999,7,0.049,0,88,0,0,1 +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,77777,9,999999999,6,0.049,0,88,0,0,1 +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,77777,9,999999999,6,0.049,0,88,0,0,1 +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,-6,45,83900,220,1392,258,140,394,78,15121,11839,8458,2267,0,0,0,0,16.1,77777,9,999999999,5,0.049,0,88,0,0,1 +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,37416,40516,11299,3807,140,2.1,0,0,16,77777,9,999999999,5,0.049,0,88,0,0,1 +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,51692,47320,11841,4424,130,2.6,0,0,16,77777,9,999999999,5,0.049,0,88,0,0,1 +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,58446,88947,12100,1660,130,3.1,0,0,16,77777,9,999999999,5,0.049,0,88,0,0,1 +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,62904,93801,9531,1634,120,4.1,0,0,16,77777,9,999999999,5,0.049,0,88,0,0,1 +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,-6.1,21,84200,755,1392,301,582,956,62,61803,94937,9145,1571,110,5.2,0,0,16,77777,9,999999999,5,0.049,0,88,0,0,1 +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,53639,90546,9264,1455,140,4.1,0,0,16,77777,9,999999999,5,0.049,0,88,0,0,1 +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,39272,79303,9011,1213,120,6.2,0,0,16,77777,9,999999999,5,0.049,0,88,0,0,1 +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,21666,63020,5894,805,120,4.6,0,0,16,77777,9,999999999,5,0.049,0,88,0,0,1 +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,3128,20514,1678,256,130,2.6,1,0,16,77777,9,999999999,5,0.049,0,88,0,0,1 +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,-2.8,55,83800,0,0,264,0,0,0,0,0,0,0,160,6.2,0,0,16,77777,9,999999999,5,0.049,0,88,0,0,1 +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,77777,9,999999999,5,0.049,0,88,0,0,1 +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,77777,9,999999999,4,0.049,0,88,0,0,1 +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,44,83800,0,0,265,0,0,0,0,0,0,0,240,7.2,0,0,16,77777,9,999999999,4,0.049,0,88,0,0,1 +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,44,83800,0,0,265,0,0,0,0,0,0,0,220,7.7,0,0,16,77777,9,999999999,4,0.049,0,88,0,0,1 +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,77777,9,999999999,3,0.049,0,88,0,0,1 +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,77777,9,999999999,3,0.049,0,88,0,0,1 +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,-7.2,38,83400,0,0,260,0,0,0,0,0,0,0,210,7.7,0,0,16,77777,9,999999999,3,0.048,0,88,0,0,1 +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,-7.8,36,83400,0,0,260,0,0,0,0,0,0,0,210,7.7,0,0,16,77777,9,999999999,3,0.048,0,88,0,0,1 +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,77777,9,999999999,3,0.048,0,88,0,0,1 +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,-9.4,31,83300,0,0,258,0,0,0,0,0,0,0,210,8.2,0,0,16,77777,9,999999999,2,0.048,0,88,0,0,1 +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,29,83400,0,0,260,0,0,0,0,0,0,0,200,8.2,0,0,16,77777,9,999999999,2,0.048,0,88,0,0,1 +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,77777,9,999999999,2,0.048,0,88,0,0,1 +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,77777,9,999999999,2,0.048,0,88,0,0,1 +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,24,83500,215,1393,284,112,265,71,12173,7023,7746,2134,210,7.7,5,4,16,77777,9,999999999,2,0.048,0,88,0,0,1 +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,31297,31295,13579,4346,220,8.2,6,4,16,77777,9,999999999,2,0.048,0,88,0,0,1 +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,-8.3,18,83600,607,1393,316,340,350,187,38157,27692,21088,7013,220,5.7,10,5,16,6706,9,999999999,2,0.048,0,88,0,0,1 +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,41239,19092,29107,9589,220,5.7,10,4,16,6706,9,999999999,2,0.048,0,88,0,0,1 +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,31517,3732,28963,9959,250,5.7,10,4,16,6706,9,999999999,3,0.048,0,88,0,0,1 +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,20425,456,20167,7500,340,2.6,9,4,16,6706,9,999999999,3,0.048,0,88,0,0,1 +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,33045,13524,24659,8179,10,3.6,8,4,16,6706,9,999999999,4,0.048,0,88,0,0,1 +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,15151,400,14986,5040,10,2.6,6,4,16,6706,9,999999999,4,0.048,0,88,0,0,1 +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,-5,24,83100,308,1393,318,42,0,42,4155,0,4185,1691,140,2.6,6,4,16,6706,9,999999999,4,0.048,0,88,0,0,1 +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,388,0,390,160,180,2.6,9,8,16,6096,9,999999999,5,0.048,0,88,0,0,1 +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,6096,9,999999999,5,0.048,0,88,0,0,1 +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,6096,9,999999999,5,0.048,0,88,0,0,1 +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,6096,9,999999999,5,0.048,0,88,0,0,1 +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,6096,9,999999999,6,0.048,0,88,0,0,1 +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,6096,9,999999999,6,0.048,0,88,0,0,1 +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,24,82600,0,0,286,0,0,0,0,0,0,0,210,5.2,8,5,16,6096,9,999999999,6,0.048,0,88,0,0,1 +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,6096,9,999999999,7,0.048,0,88,0,0,1 +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,77777,9,999999999,7,0.048,0,88,0,0,1 +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,26,82300,0,0,275,0,0,0,0,0,0,0,210,5.7,4,3,16,77777,9,999999999,8,0.048,0,88,0,0,1 +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,77777,9,999999999,8,0.048,0,88,0,0,1 +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,77777,9,999999999,9,0.048,0,88,0,0,1 +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,77777,9,999999999,9,0.048,0,88,0,0,1 +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,-5,46,82200,0,0,274,0,0,0,0,0,0,0,240,4.1,3,3,16,77777,9,999999999,9,0.048,0,88,0,0,1 +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,3,3,16,77777,9,999999999,8,0.048,0,88,0,0,1 +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,-3.9,36,82400,210,1393,300,134,237,98,14119,9314,10375,2346,220,5.2,7,5,16,6706,9,999999999,8,0.048,0,88,0,0,1 +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,6487,0,6537,2704,140,2.6,8,5,16,6706,9,999999999,9,0.048,0,88,0,0,1 +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,7289,0,7349,3315,160,4.1,7,6,16,6706,9,999999999,10,0.048,0,88,0,0,1 +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,-5,24,82100,716,1393,318,338,188,241,37937,16303,27196,9146,190,5.7,5,4,16,6706,9,999999999,11,0.048,0,88,0,0,1 +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,23,82400,765,1393,320,466,397,248,52651,34461,28172,9739,240,2.6,7,4,16,4572,9,999999999,11,0.048,0,88,0,0,1 +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,14456,0,14581,6367,270,6.7,4,4,16,4572,9,999999999,11,0.048,0,88,0,0,1 +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,34941,17099,24089,8020,340,6.7,3,3,16,6706,9,999999999,11,0.048,0,88,0,0,1 +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,40116,40170,14222,4825,300,12.4,3,3,16,77777,9,999999999,10,0.048,0,88,0,0,1 +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,22369,19903,7060,2301,310,10.3,6,5,16,77777,9,999999999,8,0.048,0,88,0,0,1 +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,2312,0,1273,395,330,6.7,9,5,16,77777,9,999999999,7,0.048,0,88,0,0,1 +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,6706,9,999999999,8,0.048,0,88,0,0,1 +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,6706,9,999999999,9,0.048,0,88,0,0,1 +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,6096,9,999999999,9,0.048,0,88,0,0,1 +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,6096,9,999999999,10,0.048,0,88,0,0,1 +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,5486,9,999999999,10,0.048,0,88,0,0,1 +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,77777,9,999999999,10,0.048,0,88,0,0,1 +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,77777,9,999999999,10,0.048,0,88,0,0,1 +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,5486,9,999999999,10,0.047,0,88,0,0,1 +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,5486,9,999999999,10,0.047,0,88,0,0,1 +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,77777,9,999999999,10,0.047,0,88,0,0,1 +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,77777,9,999999999,10,0.047,0,88,0,0,1 +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,77777,9,999999999,10,0.047,0,88,0,0,1 +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,77777,9,999999999,10,0.047,0,88,0,0,1 +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,77777,9,999999999,10,0.047,0,88,0,0,1 +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,54,81800,205,1394,299,116,283,74,12479,7022,7993,2110,270,7.7,5,5,16,77777,9,999999999,10,0.047,0,88,0,0,1 +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,31379,31258,12893,4144,240,2.6,3,3,16,77777,9,999999999,10,0.047,0,88,0,0,1 +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,31998,15089,23372,7406,250,4.6,3,3,16,77777,9,999999999,10,0.047,0,88,0,0,1 +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,38197,13233,30152,9681,280,4.6,8,8,16,77777,9,999999999,10,0.047,0,88,0,0,1 +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,41199,13406,32593,10611,300,7.7,9,9,16,2896,9,999999999,10,0.047,0,88,0,0,1 +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.6,47,82000,739,1394,321,359,149,279,39943,13594,31222,10160,280,10.3,9,9,16,1829,9,999999999,10,0.047,0,88,0,0,1 +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,33869,12224,26710,8502,70,3.1,8,8,16,4877,9,999999999,10,0.047,0,88,0,0,1 +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,1.1,54,81900,500,1394,323,230,145,178,25262,10876,19647,5973,40,2.6,9,9,16,2134,9,999999999,9,0.047,0,88,0,0,1 +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,12877,5397,9722,2902,10,4.6,9,9,16,2896,9,999999999,8,0.047,0,88,0,0,1 +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,1382,0,1268,392,290,6.7,10,10,16,3048,9,999999999,8,0.047,0,88,0,0,1 +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,3353,9,999999999,8,0.047,0,88,0,0,1 +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,3962,9,999999999,7,0.047,0,88,0,0,1 +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,50,82000,0,0,284,0,0,0,0,0,0,0,230,7.2,8,8,16,1981,9,999999999,7,0.047,0,88,0,0,1 +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,77777,9,999999999,7,0.047,0,88,0,0,1 +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,77777,9,999999999,6,0.047,0,88,0,0,1 +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,77777,9,999999999,6,0.047,0,88,0,0,1 +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,77777,9,999999999,5,0.047,0,88,0,0,1 +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,77777,9,999999999,5,0.047,0,88,0,0,1 +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,77777,9,999999999,5,0.047,0,88,0,0,1 +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,77777,9,999999999,4,0.047,0,88,0,0,1 +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,77777,9,999999999,4,0.047,0,88,0,0,1 +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,77777,9,999999999,4,0.047,0,88,0,0,1 +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,77777,9,999999999,4,0.047,0,88,0,0,1 +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,77777,9,999999999,4,0.047,0,88,0,0,1 +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,10221,2816,8875,2163,230,3.6,4,4,16,77777,9,999999999,4,0.047,0,88,0,0,1 +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,28,82700,418,1395,277,188,146,144,20624,9863,15869,4697,270,6.7,6,5,16,77777,9,999999999,4,0.047,0,88,0,0,1 +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,31851,13392,24819,7600,280,5.2,10,6,16,3658,9,999999999,4,0.047,0,88,0,0,1 +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,38240,13941,29848,9563,290,4.1,8,6,16,3962,9,999999999,5,0.047,0,88,0,0,1 +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,41253,14162,32297,10490,0,0,6,6,16,6706,9,999999999,5,0.047,0,88,0,0,1 +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,39339,13345,31046,10060,330,1.5,3,3,16,3962,9,999999999,5,0.047,0,88,0,0,1 +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,33947,13131,26546,8410,290,2.1,6,6,16,6096,9,999999999,6,0.047,0,88,0,0,1 +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,24757,10378,19570,5911,260,3.6,6,6,16,3962,9,999999999,5,0.047,0,88,0,0,1 +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,24,82700,294,1395,288,116,116,92,12727,5107,10133,2951,310,4.6,8,6,16,3962,9,999999999,5,0.047,0,88,0,0,1 +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,1273,0,1158,358,290,5.7,7,7,16,3962,9,999999999,5,0.047,0,88,0,0,1 +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,-9.4,31,82700,0,0,276,0,0,0,0,0,0,0,300,4.6,7,6,16,3962,9,999999999,5,0.047,0,88,0,0,1 +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,3962,9,999999999,5,0.047,0,88,0,0,1 +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,4,4,16,6096,9,999999999,5,0.047,0,88,0,0,1 +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,77777,9,999999999,5,0.047,0,88,0,0,1 +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,6096,9,999999999,5,0.047,0,88,0,0,1 +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,-8.3,49,82900,0,0,258,0,0,0,0,0,0,0,170,3.6,6,6,16,6096,9,999999999,6,0.047,0,88,0,0,1 +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,-8.9,47,82600,0,0,257,0,0,0,0,0,0,0,180,3.6,6,6,16,6096,9,999999999,6,0.047,0,88,0,0,1 +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,77777,9,999999999,6,0.046,0,88,0,0,1 +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,-8.9,47,82700,0,0,260,0,0,0,0,0,0,0,220,5.2,8,7,16,77777,9,999999999,6,0.046,0,88,0,0,1 +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,6096,9,999999999,5,0.046,0,88,0,0,1 +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,49,82700,0,0,247,0,0,0,0,0,0,0,250,3.6,5,5,16,77777,9,999999999,5,0.046,0,88,0,0,1 +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,2,2,16,6096,9,999999999,4,0.046,0,88,0,0,1 +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,45,82900,0,0,248,0,0,0,0,0,0,0,280,3.1,3,3,16,6096,9,999999999,4,0.046,0,88,0,0,1 +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,47,82900,12,454,252,0,0,0,0,0,0,0,280,3.1,6,6,16,6706,9,999999999,5,0.046,0,88,0,0,1 +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,10486,4251,8165,2059,290,2.1,5,5,16,6706,9,999999999,5,0.046,0,88,0,0,1 +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,26096,24138,11742,3820,360,2.1,8,8,16,6706,9,999999999,5,0.046,0,88,0,0,1 +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,41376,36875,15651,5517,40,5.7,9,9,16,3353,9,999999999,5,0.046,0,88,0,0,1 +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,59786,50628,12812,4932,50,6.7,9,9,16,2286,9,999999999,5,0.046,0,88,0,0,1 +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,60334,48211,15468,5969,40,7.2,7,7,16,6096,9,999999999,5,0.046,0,88,0,0,1 +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,48,83600,728,1395,292,447,454,209,50862,36915,23900,8442,30,6.2,9,9,16,3353,9,999999999,5,0.046,0,88,0,0,1 +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,-5,46,83700,640,1395,278,312,207,216,34817,17321,24229,7924,30,5.2,6,5,16,3962,9,999999999,5,0.046,0,88,0,0,1 +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,24214,11817,17996,5595,20,6.2,5,5,16,6096,9,999999999,6,0.046,0,88,0,0,1 +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,8264,382,8067,2511,30,5.2,7,7,16,6096,9,999999999,6,0.046,0,88,0,0,1 +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,1393,0,1046,325,50,4.6,8,8,16,2438,9,999999999,7,0.046,0,88,0,0,1 +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,8,8,16,1676,9,999999999,6,0.046,0,88,0,0,1 +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,-3.9,72,83900,0,0,256,0,0,0,0,0,0,0,230,4.1,3,3,16,77777,9,999999999,6,0.046,0,88,0,0,1 +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,77777,9,999999999,6,0.046,0,88,0,0,1 +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,77777,9,999999999,5,0.046,0,88,0,0,1 +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,77777,9,999999999,5,0.046,0,88,0,0,1 +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,77777,9,999999999,5,0.046,0,88,0,0,1 +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,77777,9,999999999,4,0.046,0,88,0,0,1 +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,77777,9,999999999,4,0.046,0,88,0,0,1 +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,77777,9,999999999,4,0.046,0,88,0,0,1 +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,56,83900,0,0,228,0,0,0,0,0,0,0,210,6.7,0,0,16,77777,9,999999999,3,0.046,0,88,0,0,1 +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,77777,9,999999999,3,0.046,0,88,0,0,1 +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,77777,9,999999999,3,0.046,0,88,0,0,1 +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,-11.1,59,83800,0,0,221,0,0,0,0,0,0,0,200,5.2,0,0,16,77777,9,999999999,3,0.046,0,88,0,0,1 +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,77777,9,999999999,3,0.046,0,88,0,0,1 +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,11880,7029,7952,2000,210,7.2,0,0,16,77777,9,999999999,3,0.046,0,88,0,0,1 +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,32502,35645,12558,3986,210,5.7,0,0,16,77777,9,999999999,4,0.046,0,88,0,0,1 +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,42876,39618,15958,5578,220,5.2,0,0,16,77777,9,999999999,4,0.046,0,88,0,0,1 +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,56211,47923,12479,4799,210,3.6,0,0,16,77777,9,999999999,4,0.046,0,88,0,0,1 +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,63962,52197,11687,4596,250,3.1,0,0,16,77777,9,999999999,5,0.046,0,88,0,0,1 +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,64019,52835,10065,3960,280,3.1,1,1,16,77777,9,999999999,5,0.046,0,88,0,0,1 +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,48483,84998,8873,1388,270,4.6,1,1,16,77777,9,999999999,5,0.046,0,88,0,0,1 +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,35613,75855,8018,1140,200,1.5,0,0,16,77777,9,999999999,5,0.046,0,88,0,0,1 +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,17690,55486,4678,716,0,0,1,1,16,77777,9,999999999,5,0.046,0,88,0,0,1 +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,1402,10224,1023,178,170,2.1,6,5,16,77777,9,999999999,5,0.046,0,88,0,0,1 +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,77777,9,999999999,6,0.046,0,88,0,0,1 +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,77777,9,999999999,7,0.046,0,88,0,0,1 +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,77777,9,999999999,8,0.046,0,88,0,0,1 +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,77777,9,999999999,8,0.046,0,88,0,0,1 +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,77777,9,999999999,9,0.046,0,88,0,0,1 +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,20,83700,0,0,265,0,0,0,0,0,0,0,210,6.2,6,5,16,77777,9,999999999,10,0.046,0,88,0,0,1 +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,5486,9,999999999,10,0.046,0,88,0,0,1 +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,5486,9,999999999,10,0.045,0,88,0,0,1 +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,5486,9,999999999,10,0.045,0,88,0,0,1 +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,5486,9,999999999,10,0.045,0,88,0,0,1 +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,5486,9,999999999,10,0.045,0,88,0,0,1 +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,5486,9,999999999,10,0.045,0,88,0,0,1 +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,77777,9,999999999,10,0.045,0,88,0,0,1 +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,6706,9,999999999,10,0.045,0,88,0,0,1 +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,3329,0,3352,1224,140,1.5,9,9,16,6096,9,999999999,10,0.045,0,88,0,0,1 +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,5783,0,5827,2404,310,3.6,9,9,16,6706,9,999999999,10,0.045,0,88,0,0,1 +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,29192,13358,21752,6913,0,0,9,9,16,6096,9,999999999,10,0.045,0,88,0,0,1 +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,24105,1460,23202,8022,20,7.2,8,8,16,6706,9,999999999,10,0.045,0,88,0,0,1 +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,26070,1005,25521,8905,50,6.2,9,9,16,3962,9,999999999,11,0.045,0,88,0,0,1 +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,15037,0,15166,6468,70,5.2,10,7,16,3962,9,999999999,11,0.045,0,88,0,0,1 +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,32379,15716,22520,7486,80,6.2,8,5,16,3962,9,999999999,11,0.045,0,88,0,0,1 +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,5318,0,5360,2354,90,4.6,7,5,16,3962,9,999999999,11,0.045,0,88,0,0,1 +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,-4.4,34,83200,281,1397,299,28,0,28,2763,0,2783,1159,110,3.6,7,5,16,3962,9,999999999,11,0.045,0,88,0,0,1 +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,580,0,584,225,290,1.5,10,10,16,3353,9,999999999,12,0.045,0,88,0,0,1 +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,-4.4,34,83200,0,0,317,0,0,0,0,0,0,0,0,0,10,9,16,2743,9,999999999,12,0.045,0,88,0,0,1 +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,1463,9,999999999,12,0.045,0,88,0,0,1 +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,60,83300,0,0,318,0,0,0,0,0,0,0,120,4.6,10,10,16,1676,9,999999999,11,0.045,0,88,0,0,1 +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,62,83400,0,0,316,0,0,0,0,0,0,0,100,3.1,10,10,16,1128,9,999999999,11,0.045,0,88,0,0,1 +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,-1,69,83200,0,0,303,0,0,0,0,0,0,0,80,1.5,10,10,16.1,1800,9,999999999,11,0.045,0,88,0,0,1 +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,1524,9,999999999,11,0.045,0,88,0,0,1 +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,2591,9,999999999,11,0.045,0,88,0,0,1 +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,2591,9,999999999,10,0.045,0,88,0,0,1 +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,10,10,16,2438,9,999999999,9,0.045,0,88,0,0,1 +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,2743,9,999999999,9,0.045,0,88,0,0.8,1 +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,9,0.045,0,88,0,0,1 +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,2896,9,999999999,8,0.045,0,88,0,0,1 +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,1829,9,999999999,8,0.045,0,88,0,0,1 +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,2896,9,999999999,8,0.045,0,88,0,0,1 +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,92,83400,180,1397,277,58,0,58,5666,0,5706,1731,240,3.6,8,8,16,2743,9,999999999,8,0.045,0,88,0,0,1 +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,79,83500,397,1397,286,286,696,87,32444,33453,9903,3300,320,2.6,8,8,16,2591,9,999999999,8,0.045,0,88,0,0,1 +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,45334,42902,17671,5984,40,2.6,8,8,16,2591,9,999999999,8,0.045,0,88,0,0,1 +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,19432,875,18825,6827,60,3.1,8,8,16,2438,9,999999999,7,0.045,0,88,0,0,1 +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,62,83600,733,1397,307,546,716,169,63157,52685,19636,7271,90,3.1,9,9,16,2591,9,999999999,7,0.045,0,88,0,0,1 +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,55795,45655,18719,6913,0,0,8,8,16,2286,9,999999999,8,0.045,0,88,0,0,1 +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,38664,25556,22911,7535,70,3.1,7,7,16,6096,9,999999999,8,0.045,0,88,0,0,1 +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,37920,39035,13710,4570,50,2.1,6,6,16,6096,9,999999999,7,0.045,0,88,0,0,1 +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,15657,10896,6371,2056,80,4.1,6,6,16,6096,9,999999999,7,0.045,0,88,0,0,1 +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,1199,8265,858,155,70,4.1,7,7,16,6096,9,999999999,7,0.045,0,88,0,0,1 +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,2743,9,999999999,7,0.045,0,88,0,0,1 +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,3962,9,999999999,7,0.045,0,88,0,0,1 +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,-1.7,87,83300,0,0,264,0,0,0,0,0,0,0,160,3.6,8,6,16,3962,9,999999999,7,0.045,0,88,0,0,1 +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,3962,9,999999999,7,0.045,0,88,0,0,1 +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,-2.2,83,83200,0,0,277,0,0,0,0,0,0,0,160,3.6,10,9,16,2743,9,999999999,7,0.045,0,88,0,0,1 +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,-2.2,83,83400,0,0,277,0,0,0,0,0,0,0,170,3.1,10,9,16,2743,9,999999999,7,0.045,0,88,0,0,1 +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,-2.8,79,83100,0,0,276,0,0,0,0,0,0,0,170,4.1,9,9,16,2896,9,999999999,7,0.045,0,88,0,0,1 +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,-2.8,79,83100,0,0,276,0,0,0,0,0,0,0,200,4.6,10,9,16,3048,9,999999999,7,0.045,0,88,0,0,1 +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,10,9,16,2743,9,999999999,7,0.045,0,88,0,0,1 +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,-2.8,79,83200,0,0,276,0,0,0,0,0,0,0,0,0,10,9,16,2134,9,999999999,7,0.045,0,88,0,0,1 +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,-2.2,83,83200,0,0,277,0,0,0,0,0,0,0,30,2.6,10,9,16,2134,9,999999999,8,0.045,0,88,0,0,1 +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,-1.7,87,83500,0,0,285,0,0,0,0,0,0,0,320,2.1,10,10,16,1341,9,999999999,8,0.045,0,88,0,0,1 +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,1829,9,999999999,8,0.045,0,88,0,0,1 +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,1219,9,999999999,7,0.045,0,88,0,0,1 +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,2345,0,2362,909,350,5.2,9,9,16,1372,9,999999999,7,0.045,0,88,0,0,1 +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,24970,20918,14521,4286,350,7.2,8,8,16,1311,9,999999999,7,0.045,0,88,0,0,1 +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,12010,0,12108,4898,360,6.7,8,8,16,1067,9,999999999,7,0.045,0,88,0,0,1 +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,33674,12836,25530,8481,10,7.2,8,8,16,579,9,999999999,7,0.045,0,88,0,0,1 +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,-1.7,61,84000,728,1398,292,158,0,158,16164,0,16303,6882,360,7.2,8,8,16,1219,9,999999999,7,0.045,0,88,0,0,1 +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,20243,451,19989,7266,10,6.7,9,9,16,1189,9,999999999,7,0.045,0,88,0,0,1 +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,45906,39936,17662,6228,10,4.6,6,6,16,6096,9,999999999,6,0.045,0,88,0,0,1 +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,34330,32052,8694,3118,70,4.1,5,5,16,77777,9,999999999,7,0.045,0,88,0,0,1 +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,17710,9955,4230,1433,110,1.5,5,5,16,77777,9,999999999,7,0.045,0,88,0,0,1 +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,826,0,708,221,210,3.1,5,5,16,77777,9,999999999,7,0.045,0,88,0,0,1 +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,1829,9,999999999,6,0.045,0,88,0,0,1 +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,-2.8,79,84000,0,0,257,0,0,0,0,0,0,0,210,4.6,3,3,16,77777,9,999999999,6,0.045,0,88,0,0,1 +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,77777,9,999999999,6,0.045,0,88,0,0,1 +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,77777,9,999999999,6,0.045,0,88,0,0,1 +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,77777,9,999999999,5,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,51,83700,0,0,232,0,0,0,0,0,0,0,220,6.2,0,0,16,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,5,0.045,0,88,0,0,1 +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,5968,0,6010,1715,220,5.7,3,3,16,77777,9,999999999,5,0.045,0,88,0,0,1 +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,30963,32957,9786,3233,230,3.6,3,3,16,77777,9,999999999,5,0.045,0,88,0,0,1 +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,41240,38905,13333,4750,270,6.2,3,3,16,77777,9,999999999,5,0.045,0,88,0,0,1 +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,52329,45348,14839,5552,270,4.1,3,3,16,77777,9,999999999,6,0.045,0,88,0,0,1 +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,64924,54909,12424,4831,280,4.6,4,4,16,7620,9,999999999,6,0.045,0,88,0,0,1 +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,60740,50833,10477,4088,280,6.2,3,3,16,7620,9,999999999,6,0.045,0,88,0,0,1 +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,48378,43847,11419,4281,300,7.7,5,5,16,7620,9,999999999,7,0.045,0,88,0,0,1 +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,34986,34355,8594,3072,280,6.7,7,6,16,7620,9,999999999,6,0.045,0,88,0,0,1 +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,13,83900,270,1399,300,159,551,52,18125,14017,5943,1923,280,6.2,9,8,16,6706,9,999999999,6,0.045,0,88,0,0,1 +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,978,9146,691,131,270,4.6,7,7,16,7620,9,999999999,6,0.045,0,88,0,0,1 +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,7620,9,999999999,6,0.045,0,88,0,0,1 +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,7620,9,999999999,6,0.045,0,88,0,0,1 +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,77777,9,999999999,6,0.045,0,88,0,0,1 +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,6706,9,999999999,6,0.045,0,88,0,0,1 +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,-11.1,27,83200,0,0,265,0,0,0,0,0,0,0,210,6.7,3,2,16,6706,9,999999999,5,0.045,0,88,0,0,1 +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,-11.7,26,83200,0,0,264,0,0,0,0,0,0,0,210,7.2,3,2,16,77777,9,999999999,5,0.045,0,88,0,0,1 +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,-13.3,22,83000,0,0,267,0,0,0,0,0,0,0,220,7.2,6,4,16,6706,9,999999999,5,0.045,0,88,0,0,1 +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,-11.7,26,83000,0,0,267,0,0,0,0,0,0,0,210,6.2,6,3,16,6706,9,999999999,5,0.044,0,88,0,0,1 +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,6706,9,999999999,5,0.044,0,88,0,0,1 +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,6706,9,999999999,6,0.044,0,88,0,0,1 +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,6706,9,999999999,6,0.044,0,88,0,0,1 +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,6706,9,999999999,7,0.044,0,88,0,0,1 +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,6096,9,999999999,6,0.044,0,88,0,0,1 +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,6096,9,999999999,6,0.044,0,88,0,0,1 +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,3617,0,3642,1255,160,5.2,6,5,16,6096,9,999999999,6,0.044,0,88,0,0,1 +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,21454,17635,11328,3593,170,3.1,7,6,16,6096,9,999999999,7,0.044,0,88,0,0,1 +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,35959,30610,16061,5493,80,5.2,5,4,16,6096,9,999999999,7,0.044,0,88,0,0,1 +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,43162,30535,23331,7908,70,6.2,5,5,16,7620,9,999999999,7,0.044,0,88,0,0,1 +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,61441,52771,15833,6001,90,7.2,4,4,16,7620,9,999999999,7,0.044,0,88,0,0,1 +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,60557,52173,12150,4689,90,7.7,3,3,16,7620,9,999999999,7,0.044,0,88,0,0,1 +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,-15,10,83200,613,1399,303,390,621,117,45508,41315,13702,5018,90,5.7,6,3,16,7620,9,999999999,8,0.044,0,88,0,0,1 +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,34094,34409,11481,3929,120,5.2,9,7,16,7620,9,999999999,7,0.044,0,88,0,0,1 +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,12524,7266,8007,2406,40,2.6,10,6,16,7315,9,999999999,7,0.044,0,88,0,0,1 +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,-12.8,16,82800,50,921,300,1,0,1,97,0,97,40,90,3.1,8,8,16,7315,9,999999999,7,0.044,0,88,0,0,1 +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,4267,9,999999999,7,0.044,0,88,0,0,1 +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,3048,9,999999999,7,0.044,0,88,0,0,1 +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,4267,9,999999999,7,0.044,0,88,0,0,1 +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,3048,9,999999999,7,0.044,0,88,0,0,1 +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,1981,9,999999999,6,0.044,0,88,0,0,1 +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,2134,9,999999999,6,0.044,0,88,0,0,1 +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,3048,9,999999999,6,0.044,0,88,0,0,1 +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,2743,9,999999999,5,0.044,0,88,0,0,1 +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,-6.7,40,83200,0,0,293,0,0,0,0,0,0,0,360,2.6,9,9,16,3048,9,999999999,5,0.044,0,88,0,0,1 +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,2134,9,999999999,5,0.044,0,88,0,0,1 +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,77777,9,999999999,5,0.044,0,88,0,0,1 +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,77777,9,999999999,5,0.044,0,88,0,0,1 +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,77777,9,999999999,4,0.044,0,88,0,0,1 +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,77777,9,999999999,4,0.044,0,88,0,0,1 +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,6251,0,6294,1680,170,3.1,3,3,16,77777,9,999999999,4,0.044,0,88,0,0,1 +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,28956,26306,5803,2039,130,3.6,3,3,16,77777,9,999999999,4,0.044,0,88,0,0,1 +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,42938,40496,10056,3693,130,3.6,4,4,16,77777,9,999999999,4,0.044,0,88,0,0,1 +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,54892,49106,15561,5754,140,4.1,10,5,16,77777,9,999999999,4,0.044,0,88,0,0,1 +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,41634,23296,26243,8886,170,2.1,4,4,16,77777,9,999999999,4,0.044,0,88,0,0,1 +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,-9.4,22,83900,695,1400,291,505,758,127,59421,52016,15000,5661,200,3.1,5,4,16,77777,9,999999999,4,0.044,0,88,0,0,1 +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,53257,49621,10516,3955,250,1.5,4,4,16,77777,9,999999999,4,0.044,0,88,0,0,1 +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,35142,34237,7921,2841,250,1.5,7,6,16,77777,9,999999999,4,0.044,0,88,0,0,1 +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,-11.1,19,84000,263,1400,298,154,637,34,18099,10198,4003,1349,250,2.6,9,7,16,7315,9,999999999,4,0.044,0,88,0,0,1 +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,593,0,593,185,260,4.1,10,7,16,7315,9,999999999,4,0.044,0,88,0,0,1 +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,7315,9,999999999,4,0.044,0,88,0,0,1 +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,6706,9,999999999,4,0.044,0,88,0,0,1 +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,6096,9,999999999,4,0.044,0,88,0,0,1 +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,6096,9,999999999,4,0.044,0,88,0,0,1 +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,6096,9,999999999,5,0.044,0,88,0,0,1 +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,6096,9,999999999,5,0.044,0,88,0,0,1 +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,-14.4,20,83700,0,0,284,0,0,0,0,0,0,0,230,6.7,10,9,16,6096,9,999999999,5,0.044,0,88,0,0,1 +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,6096,9,999999999,6,0.044,0,88,0,0,1 +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,6096,9,999999999,6,0.044,0,88,0,0,1 +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,6096,9,999999999,6,0.044,0,88,0,0,1 +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,77777,9,999999999,6,0.044,0,88,0,0,1 +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,77777,9,999999999,6,0.044,0,88,0,0,1 +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,-13.9,21,83800,0,0,269,0,0,0,0,0,0,0,250,6.7,7,5,16,77777,9,999999999,6,0.044,0,88,0,0,1 +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,77777,9,999999999,6,0.044,0,88,0,0,1 +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,-11.1,27,83900,155,1400,272,40,0,40,3909,0,3936,1294,10,2.1,7,5,16,77777,9,999999999,5,0.044,0,88,0,0,1 +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,26,84100,371,1400,279,253,624,87,28546,30134,9850,3200,60,4.1,8,5,16,77777,9,999999999,5,0.044,0,88,0,0,1 +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,25,84100,544,1400,282,345,592,114,39741,37730,13180,4656,100,1.5,6,4,16,77777,9,999999999,5,0.044,0,88,0,0,1 +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,22,84000,659,1400,288,440,686,116,51796,45564,13704,5139,140,2.1,4,4,16,77777,9,999999999,5,0.044,0,88,0,0,1 +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,20,84100,709,1400,293,516,860,78,63174,52145,9575,3756,180,3.1,4,4,16,77777,9,999999999,5,0.044,0,88,0,0,1 +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,52746,85469,10080,1526,220,1.5,4,4,16,77777,9,999999999,6,0.044,0,88,0,0,1 +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,51650,46166,7936,3027,290,3.6,6,6,16,77777,9,999999999,6,0.044,0,88,0,0,1 +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,34292,76477,8046,1090,320,5.2,5,5,16,77777,9,999999999,6,0.044,0,88,0,0,1 +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,16837,55659,4683,675,280,5.2,3,3,16,77777,9,999999999,6,0.044,0,88,0,0,1 +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,875,10599,523,103,290,3.6,8,5,16,77777,9,999999999,7,0.044,0,88,0,0,1 +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,77777,9,999999999,7,0.044,0,88,0,0,1 +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,77777,9,999999999,8,0.044,0,88,0,0,1 +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,77777,9,999999999,8,0.044,0,88,0,0,1 +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,77777,9,999999999,9,0.044,0,88,0,0,1 +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,-6.7,40,84000,0,0,274,0,0,0,0,0,0,0,270,3.6,4,4,16,6706,9,999999999,9,0.044,0,88,0,0,1 +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,77777,9,999999999,9,0.044,0,88,0,0,1 +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,6706,9,999999999,9,0.044,0,88,0,0,1 +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,-6.7,40,83900,0,0,282,0,0,0,0,0,0,0,230,5.2,8,7,16,6706,9,999999999,9,0.044,0,88,0,0,1 +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,2591,9,999999999,9,0.044,0,88,0,0,1 +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,2591,9,999999999,9,0.044,0,88,0,0,1 +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,-6.1,42,84100,0,0,287,0,0,0,0,0,0,0,230,3.6,8,8,16,2438,9,999999999,8,0.044,0,88,0,0,1 +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,2438,9,999999999,8,0.044,0,88,0,0,1 +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,77777,9,999999999,8,0.044,0,88,0,0,1 +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,77777,9,999999999,8,0.044,0,88,0,0,1 +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,13246,3887,5728,1495,160,3.1,3,3,16,77777,9,999999999,8,0.044,0,88,0,0,1 +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,30301,29546,7189,2458,160,2.6,3,3,16,77777,9,999999999,8,0.044,0,88,0,0,1 +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,44858,42496,9044,3337,220,2.6,0,0,16,77777,9,999999999,8,0.044,0,88,0,0,1 +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,54327,46982,10705,4099,280,1.5,0,0,16,77777,9,999999999,8,0.044,0,88,0,0,1 +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,62327,50752,9558,3747,330,4.1,0,0,16,77777,9,999999999,9,0.044,0,88,0,0,1 +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,57316,47952,10990,4253,40,5.2,0,0,16,77777,9,999999999,9,0.044,0,88,0,0,1 +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,-3.9,26,84500,601,1401,303,418,816,67,50707,44655,8147,3103,20,5.7,0,0,16,77777,9,999999999,9,0.044,0,88,0,0,1 +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,33848,76169,7760,1078,60,4.6,1,1,16,77777,9,999999999,9,0.044,0,88,0,0,1 +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,15484,52280,4070,640,30,2.1,0,0,16,77777,9,999999999,9,0.044,0,88,0,0,1 +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,769,10210,523,102,0,0,2,2,16,77777,9,999999999,9,0.044,0,88,0,0,1 +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,-3.9,36,84400,0,0,283,0,0,0,0,0,0,0,140,1.5,0,0,16,77777,9,999999999,9,0.044,0,88,0,0,1 +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,77777,9,999999999,9,0.044,0,88,0,0,1 +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,77777,9,999999999,10,0.044,0,88,0,0,1 +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,77777,9,999999999,10,0.044,0,88,0,0,1 +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,-3.9,51,84100,0,0,263,0,0,0,0,0,0,0,180,4.6,0,0,16,77777,9,999999999,10,0.044,0,88,0,0,1 +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,-4.4,48,84100,0,0,263,0,0,0,0,0,0,0,200,6.2,0,0,16,77777,9,999999999,9,0.044,0,88,0,0,1 +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,77777,9,999999999,10,0.044,0,88,0,0,1 +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,63,83800,0,0,246,0,0,0,0,0,0,0,180,2.6,0,0,16,77777,9,999999999,10,0.044,0,88,0,0,1 +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,77777,9,999999999,10,0.044,0,88,0,0,1 +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,77777,9,999999999,10,0.044,0,88,0,0,1 +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,2438,9,999999999,11,0.044,0,88,0,0,1 +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,2286,9,999999999,11,0.044,0,88,0,0,1 +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,77777,9,999999999,11,0.044,0,88,0,0,1 +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,77777,9,999999999,11,0.044,0,88,0,0,1 +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,-3.3,53,84400,146,1402,275,98,609,35,10891,0,3900,1155,220,5.2,3,3,16,77777,9,999999999,10,0.044,0,88,0,0,1 +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,27234,24198,6209,2151,230,4.1,0,0,16,77777,9,999999999,10,0.044,0,88,0,0,1 +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,43524,40253,8368,3099,240,3.1,0,0,16,77777,9,999999999,10,0.044,0,88,0,0,1 +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,54529,46476,10019,3847,320,4.6,0,0,16,77777,9,999999999,9,0.044,0,88,0,0,1 +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,59550,48493,10561,4118,40,3.6,0,0,16,77777,9,999999999,9,0.044,0,88,0,0,1 +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.6,34,84700,682,1402,320,476,806,82,57682,47429,9965,3873,20,3.6,3,3,16,77777,9,999999999,9,0.044,0,88,0,0,1 +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,49081,42863,8584,3259,40,3.6,3,3,16,77777,9,999999999,9,0.044,0,88,0,0,1 +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,34853,31590,6459,2341,40,4.1,0,0,16,77777,9,999999999,9,0.044,0,88,0,0,1 +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,15737,6293,3764,1268,0,0,1,1,16,77777,9,999999999,9,0.044,0,88,0,0,1 +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,660,7936,522,101,0,0,5,5,16,77777,9,999999999,9,0.044,0,88,0,0,1 +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,77777,9,999999999,9,0.044,0,88,0,0,1 +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,77777,9,999999999,9,0.044,0,88,0,0,1 +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,-1.7,61,84100,0,0,265,0,0,0,0,0,0,0,170,4.1,0,0,16,77777,9,999999999,8,0.044,0,88,0,0,1 +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,77777,9,999999999,8,0.044,0,88,0,0,1 +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,77777,9,999999999,7,0.044,0,88,0,0,1 +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,77777,9,999999999,6,0.044,0,88,0,0,1 +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,77777,9,999999999,5,0.044,0,88,0,0,1 +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,77777,9,999999999,5,0.044,0,88,0,0,1 +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,77777,9,999999999,4,0.044,0,88,0,0,1 +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,-3.9,51,83600,0,0,268,0,0,0,0,0,0,0,210,8.2,1,1,16,77777,9,999999999,5,0.044,0,88,0,0,1 +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,-5,46,83500,0,0,262,0,0,0,0,0,0,0,210,7.7,0,0,16,77777,9,999999999,5,0.044,0,88,0,0,1 +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,-6.1,42,83600,0,0,261,0,0,0,0,0,0,0,220,8.8,0,0,16,77777,9,999999999,5,0.044,0,88,0,0,1 +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,77777,9,999999999,5,0.044,0,88,0,0,1 +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,77777,9,999999999,5,0.044,0,88,0,0,1 +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,11021,790,5204,1375,220,8.2,0,0,16,77777,9,999999999,5,0.044,0,88,0,0,1 +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,25193,23551,7068,2403,220,6.2,3,2,16,77777,9,999999999,5,0.044,0,88,0,0,1 +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,36891,33968,15454,5221,200,5.7,6,4,16,77777,9,999999999,5,0.044,0,88,0,0,1 +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,-8.3,13,83400,645,1402,333,491,783,129,57144,53502,15071,5538,250,3.6,5,3,16,77777,9,999999999,5,0.044,0,88,0,0,1 +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,10,84000,696,1402,342,474,638,156,54877,46985,18138,6650,270,8.2,7,5,16,77777,9,999999999,5,0.044,0,88,0,0,1 +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,10,83900,678,1402,345,517,848,105,61535,54885,12539,4783,290,9.3,9,6,16,77777,9,999999999,5,0.044,0,88,0,0,1 +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,50277,49281,16830,5862,310,5.2,9,5,16,7620,9,999999999,5,0.044,0,88,0,0,1 +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,18754,6852,15158,4737,320,2.6,10,4,16,6706,9,999999999,5,0.044,0,88,0,0,1 +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,11419,5785,7341,2205,360,4.1,9,4,16,6096,9,999999999,5,0.044,0,88,0,0,1 +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,193,0,194,78,320,9.3,7,7,16,6706,9,999999999,5,0.044,0,88,0,0,1 +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,6096,9,999999999,6,0.044,0,88,0,0,1 +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,4267,9,999999999,6,0.044,0,88,0,0,1 +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,-7.2,27,83700,0,0,294,0,0,0,0,0,0,0,30,4.6,8,4,16,4267,9,999999999,6,0.044,0,88,0,0,1 +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,4267,9,999999999,7,0.044,0,88,0,0,1 +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,48,83400,0,0,278,0,0,0,0,0,0,0,120,4.1,7,6,16,4267,9,999999999,7,0.044,0,88,0,0,1 +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,-4.4,48,83700,0,0,281,0,0,0,0,0,0,0,160,2.1,10,6,16,6096,9,999999999,8,0.044,0,88,0,0,1 +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,3962,9,999999999,8,0.044,0,88,0,0,1 +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,48,83500,0,0,281,0,0,0,0,0,0,0,270,2.6,7,7,16,77777,9,999999999,8,0.044,0,88,0,0,1 +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,6096,9,999999999,8,0.044,0,88,0,0,1 +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,6096,9,999999999,8,0.044,0,88,0,0,1 +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,6096,9,999999999,9,0.044,0,88,0,0,1 +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,6096,9,999999999,9,0.044,0,88,0,0,1 +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,-2.8,79,83200,0,0,270,0,0,0,0,0,0,0,180,3.1,10,8,16,6096,9,999999999,9,0.044,0,88,0,0,1 +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,6096,9,999999999,9,0.044,0,88,0,0,1 +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,1461,0,1471,577,120,3.1,8,5,16,6096,9,999999999,9,0.044,0,88,0,0,1 +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,65,83400,352,1403,287,189,376,94,21025,17648,10496,3283,150,4.6,7,5,16,6096,9,999999999,9,0.044,0,88,0,0,1 +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,54,83500,525,1403,305,240,173,175,26529,12931,19438,6084,180,6.7,8,7,16,6096,9,999999999,9,0.044,0,88,0,0,1 +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,43334,33541,20864,7141,270,3.6,9,8,16,6706,9,999999999,8,0.044,0,88,0,0,1 +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,52765,43635,14745,5570,280,5.2,6,6,16,6706,9,999999999,9,0.044,0,88,0,0,1 +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,51088,42744,14263,5365,300,1.5,8,7,16,7620,9,999999999,9,0.044,0,88,0,0,1 +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,-1.1,45,83100,590,1403,305,350,514,133,40135,34346,15313,5431,340,3.6,8,6,16,7620,9,999999999,9,0.044,0,88,0,0,1 +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,28932,26714,10973,3725,340,2.1,6,6,16,77777,9,999999999,9,0.044,0,88,0,0,1 +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,15611,9300,5671,1806,320,3.1,5,4,16,77777,9,999999999,8,0.044,0,88,0,0,1 +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,193,0,194,78,310,5.2,6,5,16,77777,9,999999999,8,0.044,0,88,0,0,1 +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,77777,9,999999999,7,0.044,0,88,0,0,1 +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,77777,9,999999999,7,0.044,0,88,0,0,1 +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,77777,9,999999999,7,0.044,0,88,0,0,1 +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,77777,9,999999999,7,0.044,0,88,0,0,1 +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,77777,9,999999999,8,0.044,0,88,0,0,1 +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,762,9,999999999,8,0.044,0,88,0,0,1 +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,701,9,999999999,8,0.044,0,88,0,0,1 +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,488,9,999999999,8,0.044,0,88,0,0,1 +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,549,9,999999999,9,0.044,0,88,0,0,1 +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,671,9,999999999,9,0.044,0,88,0,0,1 +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,-7,84,83000,0,0,260,0,0,0,0,0,0,0,350,7.7,10,10,14.5,840,9,999999999,9,0.044,0,88,0,0,1 +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,9,0.044,0,88,0,0,1 +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,9,0.044,0,88,0,0,1 +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,9,0.044,0,88,0,0,1 +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,-7,92,83400,132,1403,256,16,0,16,1559,0,1570,606,60,4.6,10,10,4.8,330,9,999999999,8,0.044,0,88,0,0,1 +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,10985,295,10804,3325,50,4.1,10,10,2.4,244,9,999999999,8,0.044,0,88,0,0,1 +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,-6.1,91,83600,520,1403,260,220,142,167,24418,10561,18623,5887,70,4.1,10,10,2.4,457,9,999999999,8,0.044,0,88,0,0,1 +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,16058,0,16192,6403,90,3.1,10,10,16,457,9,999999999,8,0.044,0,88,0,0,1 +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,10511,0,10600,4729,70,1.5,10,10,14.4,701,9,999999999,8,0.044,0,88,0,0,1 +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,14369,0,14490,6041,30,2.6,10,10,16,640,9,999999999,7,0.044,0,88,0,0,1 +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,12552,0,12654,5135,60,2.6,10,10,16,823,9,999999999,7,0.044,0,88,0,0,1 +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,4801,0,4838,2096,90,3.1,10,10,16,640,9,999999999,7,0.044,0,88,0,0,1 +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,5216,0,5254,1877,0,0,10,10,16,701,9,999999999,7,0.044,0,88,0,0,1 +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,484,0,363,113,80,2.6,10,10,14.4,823,9,999999999,8,0.044,0,88,0,0,1 +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,7,0.044,0,88,0,0,1 +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,-5.6,95,83700,0,0,261,0,0,0,0,0,0,0,110,3.6,10,10,3.2,762,9,999999999,7,0.044,0,88,0,0,1 +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,-6.1,91,83700,0,0,260,0,0,0,0,0,0,0,110,4.6,10,10,2,366,9,999999999,7,0.044,0,88,0,0,1 +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,-7,92,83600,0,0,256,0,0,0,0,0,0,0,110,4.6,10,10,0.8,150,9,999999999,7,0.044,0,88,0,0,1 +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,7,0.044,0,88,0,0,1 +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,7,0.044,0,88,0,0,1 +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,7,0.044,0,88,0,0,1 +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,7,0.044,0,88,0,0,1 +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,7,0.044,0,88,0,0,1 +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,7,0.044,0,88,0,0,1 +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,7,0.044,0,88,0,0,1 +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,7,0.044,0,88,0,0,1 +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,7,0.044,0,88,0,0,1 +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,4.6,30,9,999999999,7,0.044,0,88,0,0,1 +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,61,9,999999999,7,0.044,0,88,0,0,1 +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,8334,0,8396,3003,280,2.6,10,10,0.4,30,9,999999999,6,0.044,0,88,0,0,1 +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,6038,0,6086,2676,220,4.6,10,10,5.2,91,9,999999999,6,0.044,0,88,0,0,1 +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,54558,51745,21998,7343,220,6.2,4,4,9.6,77777,9,999999999,5,0.044,0,88,0,0,1 +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,56155,94008,9111,1459,220,4.1,3,3,11.2,77777,9,999999999,5,0.044,0,88,0,0,1 +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,58560,54141,18878,6744,220,3.6,3,3,11.2,77777,9,999999999,5,0.044,0,88,0,0,1 +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,11433,0,11526,4765,230,2.6,3,3,12.8,77777,9,999999999,4,0.044,0,88,0,0,1 +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,25528,17764,16841,4983,190,3.6,3,3,12.8,77777,9,999999999,4,0.044,0,88,0,0,1 +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,16145,12048,7212,2148,0,0,3,3,16,77777,9,999999999,4,0.044,0,88,0,0,1 +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,441,7517,353,73,80,4.1,3,3,12.8,77777,9,999999999,4,0.044,0,88,0,0,1 +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,4,0.044,0,88,0,0,1 +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,78,83300,0,0,215,0,0,0,0,0,0,0,150,3.6,0,0,16,77777,9,999999999,4,0.044,0,88,0,0,1 +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,77777,9,999999999,4,0.044,0,88,0,0,1 +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,77777,9,999999999,4,0.044,0,88,0,0,1 +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,77777,9,999999999,3,0.044,0,88,0,0,1 +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,77777,9,999999999,3,0.044,0,88,0,0,1 +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,77777,9,999999999,3,0.044,0,88,0,0,1 +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,77777,9,999999999,3,0.044,0,88,0,0,1 +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,77777,9,999999999,3,0.044,0,88,0,0,1 +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,77777,9,999999999,3,0.044,0,88,0,0,1 +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,77777,9,999999999,3,0.044,0,88,0,0,1 +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,77777,9,999999999,3,0.044,0,88,0,0,1 +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,77777,9,999999999,3,0.044,0,88,0,0,1 +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,77777,9,999999999,3,0.044,0,88,0,0,1 +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,77777,9,999999999,3,0.044,0,88,0,0,1 +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,28665,26600,5745,1971,140,4.1,0,0,16,77777,9,999999999,3,0.044,0,88,0,0,1 +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,40341,84355,8147,1175,110,5.2,0,0,16,77777,9,999999999,3,0.044,0,88,0,0,1 +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,50762,90725,9034,1378,130,4.6,0,0,16,77777,9,999999999,4,0.044,0,88,0,0,1 +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,55411,93192,9114,1454,130,3.1,0,0,16,77777,9,999999999,4,0.044,0,88,0,0,1 +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,59099,54724,15124,5603,0,0,0,0,16,77777,9,999999999,4,0.044,0,88,0,0,1 +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,38301,32198,18158,6129,140,2.1,0,0,16,77777,9,999999999,4,0.044,0,88,0,0,1 +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,29701,29281,10124,3456,110,2.6,0,0,16,77777,9,999999999,4,0.044,0,88,0,0,1 +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,15952,9976,5558,1758,120,2.1,0,0,16,77777,9,999999999,3,0.044,0,88,0,0,1 +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,77777,9,999999999,3,0.044,0,88,0,0,1 +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,77777,9,999999999,3,0.044,0,88,0,0,1 +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,77777,9,999999999,3,0.044,0,88,0,0,1 +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,77777,9,999999999,3,0.044,0,88,0,0,1 +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,71,83700,0,0,228,0,0,0,0,0,0,0,200,6.2,4,3,16,77777,9,999999999,3,0.044,0,88,0,0,1 +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,71,83700,0,0,237,0,0,0,0,0,0,0,210,6.2,8,7,16,77777,9,999999999,3,0.044,0,88,0,0,1 +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,68,83800,0,0,236,0,0,0,0,0,0,0,200,4.1,6,6,16,77777,9,999999999,3,0.044,0,88,0,0,1 +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,77777,9,999999999,3,0.044,0,88,0,0,1 +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,77777,9,999999999,3,0.044,0,88,0,0,1 +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,-11.7,56,83500,0,0,232,0,0,0,0,0,0,0,240,4.6,6,4,16,77777,9,999999999,3,0.044,0,88,0,0,1 +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,77777,9,999999999,3,0.044,0,88,0,0,1 +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,6706,9,999999999,3,0.044,0,88,0,0,1 +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,4572,9,999999999,4,0.044,0,88,0,0,1 +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,6706,9,999999999,4,0.044,0,88,0,0,1 +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,4572,9,999999999,4,0.044,0,88,0,0,1 +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,4572,9,999999999,5,0.044,0,88,0,0,1 +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,45,83700,334,1405,254,238,809,45,25170,69495,7088,836,230,5.2,6,6,16,4572,9,999999999,5,0.044,0,88,0,0,1 +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,43687,45971,12428,4318,250,2.6,8,8,16,2743,9,999999999,6,0.044,0,88,0,0,1 +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,45464,39777,17667,6214,290,3.1,7,7,16,5486,9,999999999,6,0.044,0,88,0,0,1 +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,61518,54908,12416,4733,300,1.5,6,6,16,77777,9,999999999,6,0.044,0,88,0,0,1 +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,29,83900,660,1405,278,506,949,58,53640,92654,8712,1401,20,2.6,6,6,16,77777,9,999999999,6,0.044,0,88,0,0,1 +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,29,83900,577,1405,273,429,910,54,45509,87317,8231,1268,130,2.6,4,4,16,77777,9,999999999,6,0.044,0,88,0,0,1 +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,33029,76933,7773,1039,0,0,6,6,16,77777,9,999999999,6,0.044,0,88,0,0,1 +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,15060,52885,4223,621,0,0,5,5,16,77777,9,999999999,6,0.044,0,88,0,0,1 +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,77777,9,999999999,5,0.044,0,88,0,0,1 +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,77777,9,999999999,5,0.044,0,88,0,0,1 +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,77777,9,999999999,5,0.044,0,88,0,0,1 +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,83,83800,0,0,234,0,0,0,0,0,0,0,150,4.6,0,0,16,77777,9,999999999,5,0.044,0,88,0,0,1 +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,77777,9,999999999,5,0.044,0,88,0,0,1 +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,77777,9,999999999,5,0.044,0,88,0,0,1 +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,77777,9,999999999,5,0.044,0,88,0,0,1 +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,-7.2,83,83700,0,0,225,0,0,0,0,0,0,0,160,4.1,0,0,16,77777,9,999999999,6,0.044,0,88,0,0,1 +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,-6.7,86,83600,0,0,225,0,0,0,0,0,0,0,170,4.6,0,0,16,77777,9,999999999,6,0.044,0,88,0,0,1 +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,77777,9,999999999,6,0.044,0,88,0,0,1 +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,77777,9,999999999,6,0.044,0,88,0,0,1 +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,77777,9,999999999,6,0.044,0,88,0,0,1 +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,77777,9,999999999,6,0.044,0,88,0,0,1 +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,77777,9,999999999,7,0.044,0,88,0,0,1 +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,77777,9,999999999,7,0.044,0,88,0,0,1 +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,77777,9,999999999,8,0.044,0,88,0,0,1 +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,27814,24956,5832,1988,210,8.2,0,0,16,77777,9,999999999,8,0.044,0,88,0,0,1 +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,39886,84567,8161,1162,210,6.2,1,1,16,77777,9,999999999,8,0.044,0,88,0,0,1 +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,50407,91009,8908,1359,220,3.6,1,1,16,77777,9,999999999,8,0.044,0,88,0,0,1 +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,54996,93388,8987,1434,0,0,1,1,16,77777,9,999999999,8,0.044,0,88,0,0,1 +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,53340,92518,8581,1387,100,1.5,0,0,16,77777,9,999999999,8,0.044,0,88,0,0,1 +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,45183,87174,7951,1247,120,2.1,1,1,16,77777,9,999999999,8,0.044,0,88,0,0,1 +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,-1.7,31,84300,431,1405,312,301,838,43,32218,76904,6744,1004,130,3.1,1,1,16,77777,9,999999999,8,0.044,0,88,0,0,1 +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,43,84200,237,1405,296,136,661,24,14670,52389,3918,603,110,3.6,0,0,16,77777,9,999999999,8,0.044,0,88,0,0,1 +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,60,83800,35,785,292,0,0,0,0,0,0,0,170,4.1,6,5,16,77777,9,999999999,8,0.044,0,88,0,0,1 +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,77777,9,999999999,8,0.044,0,88,0,0,1 +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,77777,9,999999999,7,0.044,0,88,0,0,1 +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,77777,9,999999999,7,0.044,0,88,0,0,1 +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,43,83800,0,0,266,0,0,0,0,0,0,0,210,7.7,0,0,16,77777,9,999999999,7,0.044,0,88,0,0,1 +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,-4.4,48,83600,0,0,263,0,0,0,0,0,0,0,220,5.7,0,0,16,77777,9,999999999,7,0.044,0,88,0,0,1 +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,-4.4,48,83700,0,0,263,0,0,0,0,0,0,0,230,5.7,0,0,16,77777,9,999999999,7,0.044,0,88,0,0,1 +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,77777,9,999999999,7,0.044,0,88,0,0,1 +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,77777,9,999999999,7,0.045,0,88,0,0,1 +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,-5,46,83300,0,0,271,0,0,0,0,0,0,0,210,7.2,2,2,16,77777,9,999999999,7,0.045,0,88,0,0,1 +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,-5.6,44,83200,0,0,262,0,0,0,0,0,0,0,210,7.2,0,0,16,77777,9,999999999,7,0.045,0,88,0,0,1 +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,-6.1,42,83200,0,0,261,0,0,0,0,0,0,0,210,8.2,0,0,16,77777,9,999999999,6,0.045,0,88,0,0,1 +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,77777,9,999999999,5,0.045,0,88,0,0,1 +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,77777,9,999999999,5,0.045,0,88,0,0,1 +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,77777,9,999999999,5,0.045,0,88,0,0,1 +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,77777,9,999999999,5,0.045,0,88,0,0,1 +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,27301,23018,5283,1813,230,5.7,6,5,16,77777,9,999999999,5,0.045,0,88,0,0,1 +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,39884,84310,8601,1165,240,2.6,6,5,16,77777,9,999999999,6,0.045,0,88,0,0,1 +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,49792,90388,8913,1354,50,2.6,3,3,16,77777,9,999999999,6,0.045,0,88,0,0,1 +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,54409,92821,8993,1430,80,6.2,2,2,16,77777,9,999999999,7,0.045,0,88,0,0,1 +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,53253,92385,8869,1402,90,7.2,3,3,16,77777,9,999999999,7,0.045,0,88,0,0,1 +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,51034,46342,7982,3006,60,6.7,2,2,16,77777,9,999999999,7,0.045,0,88,0,0,1 +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,33789,31499,6535,2338,60,5.2,3,3,16,77777,9,999999999,7,0.045,0,88,0,0,1 +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,-2.2,41,83700,235,1406,294,140,617,37,16134,6255,4273,1399,60,4.6,2,2,16,77777,9,999999999,8,0.045,0,88,0,0,1 +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,77777,9,999999999,8,0.045,0,88,0,0,1 +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,77777,9,999999999,8,0.045,0,88,0,0,1 +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,77777,9,999999999,8,0.045,0,88,0,0,1 +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,77777,9,999999999,9,0.045,0,88,0,0,1 +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,77777,9,999999999,9,0.045,0,88,0,0,1 +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,72,83500,0,0,240,0,0,0,0,0,0,0,160,4.1,0,0,16,77777,9,999999999,8,0.045,0,88,0,0,1 +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,77777,9,999999999,8,0.045,0,88,0,0,1 +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,77777,9,999999999,8,0.045,0,88,0,0,1 +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,77777,9,999999999,8,0.045,0,88,0,0,1 +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,77777,9,999999999,8,0.045,0,88,0,0,1 +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,51,83500,0,0,232,0,0,0,0,0,0,0,150,2.6,0,0,16,77777,9,999999999,8,0.045,0,88,0,0,1 +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,77777,9,999999999,8,0.045,0,88,0,0,1 +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,-10,65,83900,0,0,222,0,0,0,0,0,0,0,170,5.2,0,0,16,77777,9,999999999,8,0.045,0,88,0,0,1 +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,71,83500,0,0,219,0,0,0,0,0,0,0,160,4.1,0,0,16,77777,9,999999999,9,0.045,0,88,0,0,1 +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,77777,9,999999999,9,0.045,0,88,0,0,1 +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,6706,9,999999999,9,0.045,0,88,0,0,1 +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,27305,23915,5496,1872,130,3.6,1,1,16,6706,9,999999999,9,0.045,0,88,0,0,1 +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,39147,83363,8310,1152,130,4.6,0,0,16,6706,9,999999999,10,0.045,0,88,0,0,1 +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,31,84000,612,1406,264,468,936,59,49548,90481,8912,1348,120,4.6,2,2,16,6706,9,999999999,10,0.045,0,88,0,0,1 +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,54219,93022,8851,1416,180,2.6,1,1,16,6706,9,999999999,10,0.045,0,88,0,0,1 +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,52452,91453,8727,1389,230,3.1,4,4,16,77777,9,999999999,10,0.045,0,88,0,0,1 +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,48081,48218,16208,5578,300,1.5,7,6,16,6706,9,999999999,10,0.045,0,88,0,0,1 +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,16956,5076,14246,4420,0,0,5,4,16,6706,9,999999999,10,0.045,0,88,0,0,1 +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,14878,10684,7686,2194,80,1.5,2,2,16,77777,9,999999999,9,0.045,0,88,0,0,1 +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,77777,9,999999999,9,0.045,0,88,0,0,1 +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,77777,9,999999999,9,0.045,0,88,0,0,1 +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,77777,9,999999999,9,0.045,0,88,0,0,1 +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,77777,9,999999999,9,0.045,0,88,0,0,1 +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,77777,9,999999999,9,0.045,0,88,0,0,1 +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,51,83400,0,0,252,0,0,0,0,0,0,0,210,5.8,1,1,16,77777,9,999999999,9,0.045,0,88,0,0,1 +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,-7,59,83600,0,0,264,0,0,0,0,0,0,0,190,5.3,5,5,16,77777,9,999999999,9,0.045,0,88,0,0,1 +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,77777,9,999999999,10,0.045,0,88,0,0,1 +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,77777,9,999999999,6,0.045,0,88,0,0,1 +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,40,77777,9,999999999,6,0.045,0,88,0,0,1 +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,77777,9,999999999,6,0.045,0,88,0,0,1 +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,77777,9,999999999,6,0.045,0,88,0,0,1 +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,77777,9,999999999,6,0.045,0,88,0,0,1 +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,77777,9,999999999,6,0.045,0,88,0,0,1 +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,77777,9,999999999,6,0.045,0,88,0,0,1 +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,4603,0,2475,740,210,4.1,2,1,120,77777,9,999999999,6,0.045,0,88,0,0,1 +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,21167,17172,5595,1897,190,5.2,3,1,120,77777,9,999999999,6,0.045,0,88,0,0,1 +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,-7.8,18,83400,491,1407,299,333,817,48,35420,76460,7437,1115,190,5.2,1,0,112,77777,9,999999999,5,0.045,0,88,0,0,1 +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,46073,84381,8632,1328,210,4.1,1,0,120,77777,9,999999999,5,0.045,0,88,0,0,1 +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,-7.8,13,83300,662,1407,320,474,878,60,50265,85815,8998,1420,310,2.1,1,0,120,77777,9,999999999,5,0.045,0,88,0,0,1 +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,49915,86961,8874,1394,340,3.6,1,0,120,77777,9,999999999,5,0.045,0,88,0,0,1 +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,43328,84763,7810,1228,10,4.1,0,0,120,77777,9,999999999,5,0.045,0,88,0,0,1 +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,30296,73078,6596,988,40,4.6,0,0,120,77777,9,999999999,5,0.045,0,88,0,0,1 +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,21,83200,232,1407,309,129,607,29,13766,47395,4687,618,80,3.6,0,0,104,77777,9,999999999,5,0.045,0,88,0,0,1 +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,26,83200,33,762,295,11,137,5,0,0,0,0,50,3.1,0,0,104,77777,9,999999999,5,0.045,0,88,0,0,1 +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,35,83200,0,0,277,0,0,0,0,0,0,0,130,3.1,0,0,80,77777,9,999999999,5,0.045,0,88,0,0,1 +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,77777,9,999999999,5,0.045,0,88,0,0,1 +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,77777,9,999999999,5,0.045,0,88,0,0,1 +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,48,83200,0,0,260,0,0,0,0,0,0,0,180,3.6,0,0,48,77777,9,999999999,5,0.045,0,88,0,0,1 +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,77777,9,999999999,5,0.045,0,88,0,0,1 +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,77777,9,999999999,5,0.045,0,88,0,0,1 +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,77777,9,999999999,5,0.045,0,88,0,0,1 +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,77777,9,999999999,5,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,48,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,5029,27406,2162,307,190,4.1,0,0,112,77777,9,999999999,4,0.045,0,88,0,0,1 +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,21591,66679,4214,708,200,4.1,0,0,112,77777,9,999999999,5,0.045,0,88,0,0,1 +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,35448,77525,6997,1087,190,3.6,1,1,112,77777,9,999999999,5,0.045,0,88,0,0,1 +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,16,82900,605,1407,298,429,885,48,45691,85535,7337,1233,200,3.1,1,1,112,77777,9,999999999,5,0.045,0,88,0,0,1 +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,48949,82952,9707,1451,120,2.1,1,1,112,77777,9,999999999,5,0.045,0,88,0,0,1 +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,49198,88782,6575,1191,30,1.5,1,1,112,77777,9,999999999,5,0.045,0,88,0,0,1 +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,47285,46880,12154,4390,310,5.2,5,5,112,77777,9,999999999,5,0.045,0,88,0,0,1 +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,32327,33597,9660,3286,10,4.6,5,5,112,77777,9,999999999,5,0.045,0,88,0,0,1 +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,-11.7,13,82900,231,1407,300,135,672,25,14406,52198,4068,600,20,3.6,1,1,112,77777,9,999999999,5,0.045,0,88,0,0,1 +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,0,0,0,0,360,2.6,1,1,112,77777,9,999999999,5,0.045,0,88,0,0,1 +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,77777,9,999999999,5,0.045,0,88,0,0,1 +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,4267,9,999999999,5,0.045,0,88,0,0,1 +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,77777,9,999999999,5,0.045,0,88,0,0,1 +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,77777,9,999999999,5,0.045,0,88,0,0,1 +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,77777,9,999999999,5,0.045,0,88,0,0,1 +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,4267,9,999999999,5,0.045,0,88,0,0,1 +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,4267,9,999999999,6,0.045,0,88,0,0,1 +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,5486,9,999999999,6,0.046,0,88,0,0,1 +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,77777,9,999999999,6,0.046,0,88,0,0,1 +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,77777,9,999999999,6,0.046,0,88,0,0,1 +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,77777,9,999999999,6,0.046,0,88,0,0,1 +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,77777,9,999999999,6,0.046,0,88,0,0,1 +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,77777,9,999999999,6,0.046,0,88,0,0,1 +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,1,1,96,77777,9,999999999,6,0.046,0,88,0,0,1 +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,36,83400,96,1302,252,33,169,21,3698,0,2358,699,240,1.5,1,1,112,77777,9,999999999,6,0.046,0,88,0,0,1 +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,18738,14702,5797,1945,200,4.1,1,1,112,77777,9,999999999,6,0.046,0,88,0,0,1 +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,20,83400,483,1408,284,297,670,66,35203,33428,7842,2841,190,3.6,2,1,112,77777,9,999999999,6,0.046,0,88,0,0,1 +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,39881,34376,15578,5530,200,3.1,8,3,112,77777,9,999999999,6,0.046,0,88,0,0,1 +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,51088,45870,17139,6184,120,3.1,7,2,112,77777,9,999999999,6,0.046,0,88,0,0,1 +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,47391,41200,19637,6813,90,3.1,8,3,112,77777,9,999999999,6,0.046,0,88,0,0,1 +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,40587,38152,13540,4804,110,2.6,7,2,112,77777,9,999999999,6,0.046,0,88,0,0,1 +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,-11.1,14,83100,422,1408,310,229,441,96,25957,23879,10920,3622,350,3.6,9,4,112,77777,9,999999999,6,0.046,0,88,0,0,1 +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,10282,3171,8475,2293,350,3.1,10,6,96,7620,9,999999999,6,0.046,0,88,0,0,1 +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,0,0,0,0,340,2.1,10,9,80,7925,9,999999999,6,0.046,0,88,0,0,1 +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,7925,9,999999999,6,0.046,0,88,0,0,1 +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,10,10,48,7925,9,999999999,6,0.046,0,88,0,0,1 +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,7925,9,999999999,6,0.046,0,88,0,0,1 +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,7925,9,999999999,6,0.046,0,88,0,0,1 +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,7925,9,999999999,6,0.046,0,88,0,0,1 +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,4877,9,999999999,6,0.046,0,88,0,0,1 +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,4877,9,999999999,6,0.046,0,88,0,0,1 +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,56,83000,0,0,291,0,0,0,0,0,0,0,170,2.1,10,10,48,4877,9,999999999,6,0.046,0,88,0,0,1 +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,4572,9,999999999,6,0.046,0,88,0,0,1 +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,4572,9,999999999,6,0.046,0,88,0,0,1 +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,5486,9,999999999,6,0.046,0,88,0,0,1 +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,5486,9,999999999,6,0.046,0,88,0,0,1 +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,5486,9,999999999,6,0.046,0,88,0,0,1 +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,5486,9,999999999,6,0.046,0,88,0,0,1 +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,3301,0,2758,778,110,2.1,5,5,112,77777,9,999999999,6,0.046,0,88,0,0,1 +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,37,83300,305,1408,289,204,691,54,23405,20107,6211,2059,120,2.6,4,4,112,77777,9,999999999,6,0.046,0,88,0,0,1 +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,31122,28898,11178,3874,340,2.6,4,3,112,77777,9,999999999,6,0.046,0,88,0,0,1 +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,50650,47672,11463,4248,300,5.7,2,2,112,77777,9,999999999,6,0.046,0,88,0,0,1 +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,46687,39533,17972,6413,160,2.1,3,3,112,77777,9,999999999,6,0.046,0,88,0,0,1 +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,54729,48951,10449,3975,130,2.6,2,2,112,77777,9,999999999,6,0.046,0,88,0,0,1 +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,-7.8,18,83200,561,1408,314,313,536,100,36506,32543,11702,4239,160,2.1,4,4,104,77777,9,999999999,6,0.046,0,88,0,0,1 +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,22027,17786,9847,3333,70,8.2,4,4,104,77777,9,999999999,6,0.046,0,88,0,0,1 +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,7292,1484,4683,1502,80,7.7,4,4,104,77777,9,999999999,7,0.046,0,88,0,0,1 +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,0,0,0,0,60,5.2,4,4,80,77777,9,999999999,7,0.046,0,88,0,0,1 +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,77777,9,999999999,7,0.046,0,88,0,0,1 +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,488,9,999999999,7,0.046,0,88,0,0,1 +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,6096,9,999999999,7,0.046,0,88,0,0,1 +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,396,9,999999999,7,0.046,0,88,0,0,1 +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,305,9,999999999,7,0.046,0,88,0,0,1 +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,213,9,999999999,7,0.046,0,88,0,0,1 +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,7,0.046,0,88,0,0,1 +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,7,0.046,0,88,0,0,1 +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,7,0.046,0,88,0,0,1 +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,7,0.046,0,88,0,0,1 +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,7,0.046,0,88,0,0,1 +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,10,10,0.8,30,9,999999999,7,0.046,0,88,0,0,1 +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,7,0.046,0,88,0,0,1 +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,10,9,3.2,61,9,999999999,8,0.046,0,88,0,0,1 +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,1067,0,1074,408,0,0,10,10,2.8,61,9,999999999,8,0.046,0,88,0,0,1 +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,4543,0,4576,1802,70,1.5,10,10,4,183,9,999999999,8,0.046,0,88,0,0,1 +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,7513,0,7573,3145,10,3.1,10,10,1.6,122,9,999999999,8,0.046,0,88,0,0,1 +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,9714,0,9793,4202,40,2.6,10,10,2.4,152,9,999999999,8,0.046,0,88,0,0,1 +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,-2.2,83,83300,650,1409,284,126,0,126,12802,0,12910,5438,30,2.1,10,10,6.4,244,9,999999999,9,0.046,0,88,0,0,1 +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,18677,0,18832,7091,80,4.1,10,10,9.6,6096,9,999999999,9,0.046,0,88,0,0,1 +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,39457,35867,13932,4909,360,4.6,10,6,16,6096,9,999999999,9,0.046,0,88,0,0,1 +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,17531,7419,13481,4213,320,4.6,10,8,12.8,7315,9,999999999,9,0.046,0,88,0,0,1 +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,-2.8,79,83200,228,1409,266,84,71,72,9135,1878,7859,2189,350,4.6,10,7,14.4,7315,9,999999999,9,0.046,0,88,0,0,1 +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,0,0,0,0,360,3.6,10,9,11.2,4267,9,999999999,9,0.046,0,88,0,0,1 +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,10,0.046,0,88,0,0,1 +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,10,0.046,0,88,0,0,1 +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,10,10,9.6,366,9,999999999,10,0.046,0,88,0,0,1 +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,10,9,9.6,4267,9,999999999,10,0.046,0,88,0,0,1 +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,10,10,8,366,9,999999999,10,0.046,0,88,0,0,1 +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,10,10,8,366,9,999999999,11,0.046,0,88,0,0,1 +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,2,2,8,77777,9,999999999,11,0.046,0,88,0,0,1 +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,77777,9,999999999,11,0.046,0,88,0,0,1 +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,10,9,8,4572,9,999999999,11,0.046,0,88,0,0,1 +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,11,0.046,0,88,0,0,1 +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,12,0.046,0,88,0,0,1 +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,12,0.046,0,88,0,0,1 +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,11,0.046,0,88,0,0,1 +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,1676,9,999999999,11,0.046,0,88,0,0,1 +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,1261,0,1269,467,360,2.6,10,10,6.4,244,9,999999999,11,0.046,0,88,0,0,1 +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,4443,0,4475,1763,20,1.5,10,10,1,152,9,999999999,11,0.046,0,88,0,0,1 +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,7511,0,7570,3137,360,2.1,10,10,0.8,122,9,999999999,10,0.046,0,88,0,0,1 +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,11530,0,11625,4817,70,2.6,10,10,1.2,244,9,999999999,10,0.046,0,88,0,0,1 +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,12700,0,12806,5392,360,4.1,10,10,4.8,366,9,999999999,10,0.046,0,88,0,0,1 +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,14922,0,15046,6050,350,2.6,10,10,11.2,427,9,999999999,9,0.046,0,88,0,0,1 +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,12912,0,13017,5110,320,2.1,10,10,16,671,9,999999999,9,0.046,0,88,0,0,1 +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,7777,0,7836,3083,360,3.6,10,10,16,396,9,999999999,9,0.046,0,88,0,0,1 +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,4710,0,4744,1686,90,1.5,10,10,16,427,9,999999999,9,0.046,0,88,0,0,1 +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,0,0,0,0,140,1.5,10,10,12.8,335,9,999999999,8,0.046,0,88,0,0,1 +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,8,0.046,0,88,0,0,1 +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,8,0.046,0,88,0,0,1 +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,8,0.046,0,88,0,0,1 +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,7,0.046,0,88,0,0,1 +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,7,0.046,0,88,0,0,1 +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,95,83400,0,0,229,0,0,0,0,0,0,0,110,3.1,0,0,11.2,77777,9,999999999,7,0.046,0,88,0,0,1 +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,-6.1,91,83500,0,0,226,0,0,0,0,0,0,0,130,2.1,0,0,16,77777,9,999999999,6,0.046,0,88,0,0,1 +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,77777,9,999999999,6,0.045,0,88,0,0,1 +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,77777,9,999999999,6,0.045,0,88,0,0,1 +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,77777,9,999999999,6,0.045,0,88,0,0,1 +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,77777,9,999999999,5,0.045,0,88,0,0,1 +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,77777,9,999999999,5,0.045,0,88,0,0,1 +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,77777,9,999999999,5,0.045,0,88,0,0,1 +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,6706,9,999999999,5,0.045,0,88,0,0,1 +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,2343,0,2124,621,150,4.6,9,7,112,6706,9,999999999,5,0.045,0,88,0,0,1 +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,10343,3126,8481,2601,110,3.1,8,8,112,6706,9,999999999,5,0.045,0,88,0,0,1 +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,18289,3955,16143,5045,130,4.1,9,9,112,4877,9,999999999,5,0.045,0,88,0,0,1 +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,14784,4004,11654,4290,150,4.6,9,9,96,4572,9,999999999,5,0.045,0,88,0,0,1 +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,-5.6,31,83300,645,1409,300,358,468,144,41243,33018,16658,6002,180,7.2,7,6,96,6706,9,999999999,5,0.045,0,88,0,0,1 +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,32631,18689,20192,6906,350,5.2,8,5,112,6706,9,999999999,5,0.045,0,88,0,0,1 +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,42487,39873,11998,4321,350,4.6,2,2,64,77777,9,999999999,5,0.045,0,88,0,0,1 +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,25262,22551,10572,3516,360,5.2,3,3,48,77777,9,999999999,5,0.045,0,88,0,0,1 +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,10126,3827,6027,1829,10,3.1,4,4,16,77777,9,999999999,5,0.045,0,88,0,0,1 +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,-2.2,83,83200,31,763,259,11,19,10,0,0,0,0,350,2.1,6,4,16,3962,9,999999999,5,0.045,0,88,0,0,1 +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,3962,9,999999999,5,0.045,0,88,0,0,1 +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,77777,9,999999999,5,0.045,0,88,0,0,1 +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,77777,9,999999999,5,0.045,0,88,0,0,1 +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,396,9,999999999,5,0.045,0,88,0,0,1 +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,427,9,999999999,5,0.045,0,88,0,0,1 +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,488,9,999999999,5,0.045,0,88,0,0,1 +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,305,9,999999999,5,0.045,0,88,0,0,1 +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,5,0.045,0,88,0,0,1 +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,5,0.045,0,88,0,0,1 +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,5,0.045,0,88,0,0,1 +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,5,0.045,0,88,0,0,1 +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,274,9,999999999,5,0.045,0,88,0,0,1 +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,5,0.045,0,88,0,0,1 +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,5,0.045,0,88,0,0,1 +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,1164,0,1171,430,60,2.6,10,10,9.6,1402,9,999999999,5,0.045,0,88,0,0,1 +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,7566,736,7022,2245,80,2.6,10,9,6.4,427,9,999999999,5,0.045,0,88,0,0,1 +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,10120,0,10199,3940,10,1.5,10,10,6.4,427,9,999999999,5,0.045,0,88,0,0,1 +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,20734,3490,18564,6245,80,2.1,7,7,16,1280,9,999999999,4,0.045,0,88,0,0,1 +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,40814,27132,24818,7977,70,3.6,8,8,19.2,2134,9,999999999,4,0.045,0,88,0,0,1 +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,14421,0,14540,5875,70,3.1,10,10,19.2,1676,9,999999999,4,0.045,0,88,0,0,1 +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,26593,5880,23654,6983,350,1.5,10,9,19.2,1280,9,999999999,4,0.045,0,88,0,0,1 +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,18731,11529,11934,3848,50,2.6,10,7,19.2,1524,9,999999999,4,0.045,0,88,0,0,1 +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,11927,2944,10817,2465,0,0,8,8,19.2,3048,9,999999999,4,0.045,0,88,0,0,1 +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,0,0,0,0,160,3.6,5,2,19.2,77777,9,999999999,4,0.045,0,88,0,0,1 +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,4,0.045,0,88,0,0,1 +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,4,0.045,0,88,0,0,1 +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,-7.8,79,84100,0,0,224,0,0,0,0,0,0,0,200,3.1,0,0,32,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,3,0.045,0,88,0,0,1 +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,77777,9,999999999,3,0.045,0,88,0,0,1 +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,77777,9,999999999,3,0.045,0,88,0,0,1 +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,77777,9,999999999,3,0.045,0,88,0,0,1 +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,77777,9,999999999,3,0.045,0,88,0,0,1 +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,77777,9,999999999,3,0.045,0,88,0,0,1 +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,77777,9,999999999,3,0.045,0,88,0,0,1 +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,77777,9,999999999,3,0.045,0,88,0,0,1 +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,77777,9,999999999,3,0.045,0,88,0,0,1 +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,77777,9,999999999,3,0.045,0,88,0,0,1 +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,3377,0,1805,535,180,4.1,5,2,112,77777,9,999999999,3,0.045,0,88,0,0,1 +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,16990,13221,6288,2043,210,3.1,3,3,112,77777,9,999999999,3,0.045,0,88,0,0,1 +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,34783,33381,6708,2430,190,5.2,1,1,112,77777,9,999999999,3,0.045,0,88,0,0,1 +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,44658,42866,14247,5072,200,4.6,3,3,112,77777,9,999999999,3,0.045,0,88,0,0,1 +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,55353,50827,10792,4090,180,4.1,2,2,112,77777,9,999999999,3,0.045,0,88,0,0,1 +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,42787,37185,11326,4255,30,1.5,3,3,112,77777,9,999999999,3,0.045,0,88,0,0,1 +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,43611,43418,12770,4538,290,4.1,6,2,112,77777,9,999999999,3,0.045,0,88,0,0,1 +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,26874,25592,7932,2755,300,9.8,3,3,96,77777,9,999999999,3,0.045,0,88,0,0,1 +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,13106,5505,4683,1494,330,5.2,4,2,96,77777,9,999999999,3,0.045,0,88,0,0,1 +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,0,0,0,0,310,8.2,4,3,96,77777,9,999999999,3,0.045,0,88,0,0,1 +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,77777,9,999999999,3,0.045,0,88,0,0,1 +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,77777,9,999999999,2,0.045,0,88,0,0,1 +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,77777,9,999999999,2,0.045,0,88,0,0,1 +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,77777,9,999999999,2,0.045,0,88,0,0,1 +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,-15.6,39,84100,0,0,218,0,0,0,0,0,0,0,350,3.1,0,0,32,77777,9,999999999,2,0.045,0,88,0,0,1 +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,32,77777,9,999999999,2,0.045,0,88,0,0,1 +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,48,84200,0,0,213,0,0,0,0,0,0,0,0,0,0,0,32,77777,9,999999999,2,0.045,0,88,0,0,1 +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,48,77777,9,999999999,2,0.045,0,88,0,0,1 +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,48,77777,9,999999999,2,0.045,0,88,0,0,1 +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,77777,9,999999999,2,0.045,0,88,0,0,1 +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,58,84300,0,0,206,0,0,0,0,0,0,0,180,2.6,0,0,48,77777,9,999999999,2,0.045,0,88,0,0,1 +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,60,84300,0,0,204,0,0,0,0,0,0,0,170,3.1,0,0,48,77777,9,999999999,2,0.045,0,88,0,0,1 +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,67,84400,0,0,200,0,0,0,0,0,0,0,130,2.6,0,0,48,77777,9,999999999,2,0.045,0,88,0,0,1 +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,77777,9,999999999,2,0.045,0,88,0,0,1 +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,3521,19722,1672,238,170,4.6,0,0,777.7,77777,9,999999999,2,0.045,0,88,0,0,1 +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,-16.1,37,84500,285,1411,217,179,758,26,19125,62430,4218,679,150,6.2,0,0,777.7,77777,9,999999999,2,0.045,0,88,0,0,1 +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,31,84500,460,1411,229,322,870,38,34325,80220,5975,985,150,4.1,1,0,777.7,77777,9,999999999,3,0.045,0,88,0,0,1 +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,45849,89618,6922,1173,150,5.7,1,0,777.7,77777,9,999999999,3,0.045,0,88,0,0,1 +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,51826,94551,7017,1231,150,3.1,0,0,120,77777,9,999999999,3,0.045,0,88,0,0,1 +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,50893,93981,6881,1209,330,3.1,0,0,120,77777,9,999999999,3,0.045,0,88,0,0,1 +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,43600,89335,6359,1095,350,3.1,0,0,120,77777,9,999999999,3,0.045,0,88,0,0,1 +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,30714,78083,5250,882,350,5.2,0,0,96,77777,9,999999999,3,0.045,0,88,0,0,1 +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,14226,52793,3758,575,330,4.6,0,0,88,77777,9,999999999,3,0.045,0,88,0,0,1 +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,49,84100,31,764,233,12,192,4,0,0,0,0,310,2.6,0,0,88,77777,9,999999999,3,0.045,0,88,0,0,1 +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,56,84000,0,0,228,0,0,0,0,0,0,0,310,2.1,0,0,32,77777,9,999999999,3,0.045,0,88,0,0,1 +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,-10,65,84000,0,0,222,0,0,0,0,0,0,0,0,0,1,0,32,77777,9,999999999,3,0.045,0,88,0,0,1 +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,61,84000,0,0,234,0,0,0,0,0,0,0,160,2.1,5,3,32,77777,9,999999999,3,0.045,0,88,0,0,1 +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,-10,65,83900,0,0,240,0,0,0,0,0,0,0,160,2.1,9,7,32,6706,9,999999999,3,0.045,0,88,0,0,1 +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,68,83800,0,0,233,0,0,0,0,0,0,0,190,2.1,8,5,32,6706,9,999999999,3,0.045,0,88,0,0,1 +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,68,83700,0,0,238,0,0,0,0,0,0,0,120,2.1,10,7,32,6706,9,999999999,3,0.045,0,88,0,0,1 +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,10,8,32,6706,9,999999999,3,0.045,0,88,0,0,1 +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,68,83500,0,0,254,0,0,0,0,0,0,0,0,0,10,10,32,6706,9,999999999,4,0.045,0,88,0,0,1 +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,75,83400,0,0,250,0,0,0,0,0,0,0,290,1.5,10,10,32,6706,9,999999999,4,0.045,0,88,0,0,1 +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,6096,9,999999999,4,0.045,0,88,0,0,1 +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,68,83200,0,0,254,0,0,0,0,0,0,0,170,1.5,10,10,32,5486,9,999999999,4,0.045,0,88,0,0,1 +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,68,83000,0,0,254,0,0,0,0,0,0,0,120,2.1,10,10,32,5486,9,999999999,4,0.045,0,88,0,0,1 +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,-8.9,71,82900,0,0,258,0,0,0,0,0,0,0,140,2.1,10,10,32,4572,9,999999999,4,0.045,0,88,0,0,1 +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,4572,9,999999999,4,0.045,0,88,0,0,1 +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,-9.4,68,82700,72,1141,250,17,14,16,1901,0,1793,524,340,2.1,9,9,112,4572,9,999999999,4,0.045,0,88,0,0,1 +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,59,82600,282,1411,254,83,0,83,8194,0,8254,2679,60,1.5,10,9,112,3658,9,999999999,4,0.045,0,88,0,0,1 +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,12120,0,12214,4430,330,5.7,10,10,112,4572,9,999999999,4,0.045,0,88,0,0,1 +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,21508,4926,18438,6167,10,2.6,10,9,112,4572,9,999999999,4,0.045,0,88,0,0,1 +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,47,82600,637,1411,264,425,315,282,46285,30602,30893,8809,70,3.1,10,9,96,3962,9,999999999,4,0.045,0,88,0,0,1 +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,24378,7828,19250,6621,150,2.1,10,9,96,3962,9,999999999,4,0.045,0,88,0,0,1 +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,40825,38818,11031,3998,310,2.6,5,2,96,77777,9,999999999,4,0.045,0,88,0,0,1 +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,12367,2944,10474,3474,310,7.7,9,9,96,3962,9,999999999,4,0.045,0,88,0,0,1 +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,16,82800,226,1411,274,94,206,60,10383,4497,6649,1953,280,8.2,7,4,96,77777,9,999999999,4,0.045,0,88,0,0,1 +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,0,0,0,0,310,9.8,4,4,80,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,32,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,48,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,-13.3,48,83800,69,1117,229,18,89,12,2055,0,1372,417,160,3.6,3,3,96,77777,9,999999999,4,0.045,0,88,0,0,1 +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,15529,9703,4562,1533,160,3.6,2,2,112,77777,9,999999999,4,0.045,0,88,0,0,1 +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,35814,37613,10480,3599,190,3.1,3,3,112,77777,9,999999999,4,0.045,0,88,0,0,1 +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,47136,44454,9333,3480,150,3.1,2,2,112,77777,9,999999999,4,0.045,0,88,0,0,1 +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,44403,38690,11879,4453,150,6.7,3,3,112,77777,9,999999999,4,0.045,0,88,0,0,1 +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,49488,45409,11968,4464,160,7.7,2,2,112,77777,9,999999999,4,0.045,0,88,0,0,1 +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,34045,29054,15090,5184,140,8.2,3,3,112,77777,9,999999999,4,0.045,0,88,0,0,1 +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,27631,26521,8033,2783,140,5.2,4,2,112,77777,9,999999999,5,0.045,0,88,0,0,1 +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,12076,4800,4682,1492,140,3.1,5,3,96,77777,9,999999999,5,0.045,0,88,0,0,1 +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,0,0,0,0,360,1,6,6,64,5486,9,999999999,5,0.045,0,88,0,0,1 +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,8,6,32,7010,9,999999999,5,0.045,0,88,0,0,1 +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,-8.3,49,83500,0,0,253,0,0,0,0,0,0,0,160,1.5,5,4,32,77777,9,999999999,5,0.045,0,88,0,0,1 +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,77777,9,999999999,5,0.045,0,88,0,0,1 +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,77777,9,999999999,5,0.045,0,88,0,0,1 +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,54,83500,0,0,242,0,0,0,0,0,0,0,90,2.1,4,4,32,77777,9,999999999,5,0.045,0,88,0,0,1 +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,56,83500,0,0,240,0,0,0,0,0,0,0,350,1,4,4,32,77777,9,999999999,5,0.045,0,88,0,0,1 +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,5182,9,999999999,5,0.045,0,88,0,0,1 +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,77777,9,999999999,5,0.046,0,88,0,0,1 +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,4267,9,999999999,6,0.046,0,88,0,0,1 +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,3962,9,999999999,6,0.046,0,88,0,0,1 +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,4267,9,999999999,6,0.046,0,88,0,0,1 +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,3353,9,999999999,6,0.046,0,88,0,0,1 +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,1,1,32,77777,9,999999999,6,0.046,0,88,0,0,1 +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,77777,9,999999999,6,0.046,0,88,0,0,1 +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,-8.3,75,83300,67,1118,228,25,227,12,2844,0,1367,413,160,2.1,1,1,96,77777,9,999999999,6,0.046,0,88,0,0,1 +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,17136,10595,4555,1528,0,0,1,1,96,77777,9,999999999,6,0.046,0,88,0,0,1 +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,34464,31708,5795,2105,340,1.5,1,1,96,77777,9,999999999,6,0.046,0,88,0,0,1 +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,41927,79033,9105,1293,20,2.1,1,1,96,77777,9,999999999,6,0.046,0,88,0,0,1 +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,46514,82329,8609,1354,10,3.1,1,1,88,77777,9,999999999,6,0.046,0,88,0,0,1 +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,48530,43721,12173,4533,20,2.6,3,3,88,77777,9,999999999,6,0.046,0,88,0,0,1 +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,41723,38352,8390,3115,10,3.1,2,2,80,77777,9,999999999,6,0.046,0,88,0,0,1 +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,25894,21089,15805,4590,60,4.1,4,4,64,77777,9,999999999,6,0.046,0,88,0,0,1 +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,11398,5537,7954,2185,350,6.2,4,4,80,77777,9,999999999,6,0.046,0,88,0,0,1 +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,0,0,0,0,350,5.2,6,6,64,3658,9,999999999,6,0.046,0,88,0,0,1 +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,6096,9,999999999,6,0.046,0,88,0,0,1 +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,3962,9,999999999,6,0.046,0,88,0,0,1 +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,2,2,32,77777,9,999999999,6,0.046,0,88,0,0,1 +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,77777,9,999999999,6,0.046,0,88,0,0,1 +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,1036,9,999999999,6,0.046,0,88,0,0,1 +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,975,9,999999999,6,0.046,0,88,0,0,1 +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,77777,9,999999999,6,0.046,0,88,0,0,1 +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,77777,9,999999999,6,0.046,0,88,0,0,1 +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,77777,9,999999999,6,0.046,0,88,0,0,1 +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,-7.8,79,83100,0,0,232,0,0,0,0,0,0,0,210,1.5,7,2,24,77777,9,999999999,6,0.046,0,88,0,0,1 +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,77777,9,999999999,6,0.046,0,88,0,0,1 +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,77777,9,999999999,6,0.046,0,88,0,0,1 +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,77777,9,999999999,6,0.046,0,88,0,0,1 +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,77777,9,999999999,5,0.046,0,88,0,0,1 +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,-8.3,75,83200,65,1094,233,18,57,15,2005,0,1674,484,180,2.1,8,3,80,77777,9,999999999,5,0.046,0,88,0,0,1 +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,14942,10375,6874,2158,190,4.1,7,2,96,77777,9,999999999,5,0.046,0,88,0,0,1 +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,32625,32605,10142,3489,220,3.6,4,3,80,77777,9,999999999,5,0.046,0,88,0,0,1 +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,43051,39821,9872,3658,0,0,2,2,80,77777,9,999999999,5,0.046,0,88,0,0,1 +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,46937,42223,15553,5616,320,4.1,3,3,96,77777,9,999999999,5,0.046,0,88,0,0,1 +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,53843,48351,8406,3210,310,9.3,1,1,112,77777,9,999999999,5,0.046,0,88,0,0,1 +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,17,83300,551,1412,264,352,740,63,42458,39348,7616,2840,320,8.2,1,1,112,77777,9,999999999,4,0.046,0,88,0,0,1 +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,18,83300,415,1412,260,233,562,68,27083,25797,7925,2749,320,8.2,1,1,112,77777,9,999999999,4,0.046,0,88,0,0,1 +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,13215,4833,4261,1377,320,7.7,1,1,96,77777,9,999999999,4,0.046,0,88,0,0,1 +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,25,83400,32,765,239,10,96,6,0,0,0,0,340,4.6,0,0,80,77777,9,999999999,4,0.046,0,88,0,0,1 +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,-15,27,83500,0,0,235,0,0,0,0,0,0,0,320,2.6,0,0,48,77777,9,999999999,4,0.046,0,88,0,0,1 +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,77777,9,999999999,4,0.046,0,88,0,0,1 +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,77777,9,999999999,4,0.046,0,88,0,0,1 +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,77777,9,999999999,3,0.046,0,88,0,0,1 +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,77777,9,999999999,3,0.046,0,88,0,0,1 +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,77777,9,999999999,3,0.046,0,88,0,0,1 +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,77777,9,999999999,3,0.046,0,88,0,0,1 +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,77777,9,999999999,3,0.046,0,88,0,0,1 +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,77777,9,999999999,3,0.046,0,88,0,0,1 +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,-16.7,35,83500,0,0,226,0,0,0,0,0,0,0,140,2.1,3,3,48,77777,9,999999999,3,0.046,0,88,0,0,1 +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,77777,9,999999999,3,0.046,0,88,0,0,1 +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,77777,9,999999999,2,0.046,0,88,0,0,1 +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,77777,9,999999999,2,0.046,0,88,0,0,1 +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,77777,9,999999999,3,0.046,0,88,0,0,1 +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,2201,0,1875,520,320,1.5,9,4,96,77777,9,999999999,3,0.046,0,88,0,0,1 +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,12617,7218,8107,2423,260,1.5,8,3,96,77777,9,999999999,3,0.046,0,88,0,0,1 +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,-13.3,32,83400,448,1412,244,270,564,91,30935,30713,10461,3571,340,3.1,5,2,80,77777,9,999999999,3,0.046,0,88,0,0,1 +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,38235,34624,12595,4533,300,2.1,4,3,80,77777,9,999999999,3,0.046,0,88,0,0,1 +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,46907,42469,14802,5382,350,3.1,7,2,80,77777,9,999999999,3,0.046,0,88,0,0,1 +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,-15.6,18,83300,624,1412,263,418,706,106,49158,45522,12508,4634,10,4.1,4,3,96,77777,9,999999999,3,0.046,0,88,0,0,1 +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,46318,43841,7838,2918,360,3.1,0,0,96,77777,9,999999999,3,0.046,0,88,0,0,1 +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,29966,28718,6950,2445,310,10.3,1,1,96,77777,9,999999999,3,0.046,0,88,0,0,1 +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,12940,6520,5416,1681,300,10.3,2,2,80,77777,9,999999999,3,0.046,0,88,0,0,1 +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,0,0,0,0,300,8.8,3,3,80,77777,9,999999999,3,0.046,0,88,0,0,1 +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,77777,9,999999999,3,0.046,0,88,0,0,1 +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,77777,9,999999999,4,0.046,0,88,0,0,1 +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,77777,9,999999999,4,0.046,0,88,0,0,1 +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,77777,9,999999999,4,0.046,0,88,0,0,1 +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,77777,9,999999999,4,0.046,0,88,0,0,1 +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,4572,9,999999999,4,0.046,0,88,0,0,1 +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,77777,9,999999999,4,0.046,0,88,0,0,1 +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,-15,41,83600,0,0,218,0,0,0,0,0,0,0,170,3.1,0,0,48,77777,9,999999999,4,0.046,0,88,0,0,1 +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,-15,41,83600,0,0,218,0,0,0,0,0,0,0,170,4.1,0,0,48,77777,9,999999999,4,0.046,0,88,0,0,1 +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,39,83600,0,0,220,0,0,0,0,0,0,0,180,4.6,0,0,48,77777,9,999999999,4,0.046,0,88,0,0,1 +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,77777,9,999999999,4,0.046,0,88,0,0,1 +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,-15.6,39,83500,0,0,218,0,0,0,0,0,0,0,180,3.1,0,0,48,77777,9,999999999,4,0.046,0,88,0,0,1 +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,48,83600,0,0,213,0,0,0,0,0,0,0,170,2.6,0,0,48,77777,9,999999999,4,0.046,0,88,0,0,1 +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,80,77777,9,999999999,4,0.046,0,88,0,0,1 +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,-15,41,83700,61,1048,218,22,174,11,2501,0,1252,376,190,2.6,0,0,112,77777,9,999999999,4,0.046,0,88,0,0,1 +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,-13.9,30,83700,268,1412,236,148,577,39,17214,10714,4545,1515,220,3.1,1,0,112,77777,9,999999999,4,0.046,0,88,0,0,1 +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,33198,32416,7553,2686,190,4.6,3,1,112,77777,9,999999999,4,0.046,0,88,0,0,1 +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,40874,38266,13015,4657,200,2.6,6,2,112,77777,9,999999999,5,0.046,0,88,0,0,1 +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,47252,42296,11970,4471,150,2.1,6,3,112,77777,9,999999999,5,0.046,0,88,0,0,1 +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,19,83500,624,1412,298,336,419,151,38395,30354,17329,6086,360,4.6,7,4,112,8230,9,999999999,5,0.046,0,88,0,0,1 +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,-8.9,23,83500,550,1412,292,317,439,145,35783,30829,16438,5521,310,12.9,6,4,112,8230,9,999999999,5,0.046,0,88,0,0,1 +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,26352,24846,11303,3683,330,7.7,7,4,112,77777,9,999999999,5,0.046,0,88,0,0,1 +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,8775,2292,7155,2057,310,10.3,8,4,96,77777,9,999999999,5,0.046,0,88,0,0,1 +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,0,0,0,0,310,5.7,7,4,80,7620,9,999999999,5,0.046,0,88,0,0,1 +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,7620,9,999999999,5,0.046,0,88,0,0,1 +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,7620,9,999999999,5,0.046,0,88,0,0,1 +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,7620,9,999999999,5,0.046,0,88,0,0,1 +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,7620,9,999999999,5,0.046,0,88,0,0,1 +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,7620,9,999999999,5,0.046,0,88,0,0,1 +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,77777,9,999999999,5,0.046,0,88,0,0,1 +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,77777,9,999999999,5,0.046,0,88,0,0,1 +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,77777,9,999999999,5,0.046,0,88,0,0,1 +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,4572,9,999999999,5,0.046,0,88,0,0,1 +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,4572,9,999999999,5,0.046,0,88,0,0,1 +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,77777,9,999999999,5,0.046,0,88,0,0,1 +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,45,84000,0,0,251,0,0,0,0,0,0,0,200,2.1,6,5,48,3658,9,999999999,5,0.046,0,88,0,0,1 +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,49,84000,0,0,252,0,0,0,0,0,0,0,220,3.6,7,7,48,3962,9,999999999,5,0.046,0,88,0,0,1 +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,41,84100,0,0,265,0,0,0,0,0,0,0,250,4.1,8,8,80,3962,9,999999999,5,0.046,0,88,0,0,1 +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,2025,0,1353,399,190,3.6,7,4,80,77777,9,999999999,5,0.046,0,88,0,0,1 +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,-9.4,31,84200,266,1413,276,89,46,80,9752,1640,8798,2533,190,5.7,9,6,80,6401,9,999999999,5,0.046,0,88,0,0,1 +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,21725,16072,11811,3922,120,3.1,9,6,80,6401,9,999999999,5,0.046,0,88,0,0,1 +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,26492,15249,16714,5679,160,3.6,9,8,80,6401,9,999999999,5,0.046,0,88,0,0,1 +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,40750,34125,14567,5306,130,2.6,7,5,80,6401,9,999999999,5,0.046,0,88,0,0,1 +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,46701,42182,15513,5569,140,2.1,8,4,80,6401,9,999999999,5,0.046,0,88,0,0,1 +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,38325,35333,12628,4484,40,2.1,5,2,80,77777,9,999999999,5,0.046,0,88,0,0,1 +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,24688,22091,10569,3499,80,2.6,6,4,80,6401,9,999999999,5,0.046,0,88,0,0,1 +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,11688,5039,9153,2353,100,2.6,6,4,80,5486,9,999999999,5,0.046,0,88,0,0,1 +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,0,0,0,0,90,3.1,8,4,80,5486,9,999999999,5,0.046,0,88,0,0,1 +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,77777,9,999999999,5,0.046,0,88,0,0,1 +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,77777,9,999999999,5,0.046,0,88,0,0,1 +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,77777,9,999999999,5,0.046,0,88,0,0,1 +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,77777,9,999999999,5,0.046,0,88,0,0,1 +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,77777,9,999999999,5,0.046,0,88,0,0,1 +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,77777,9,999999999,5,0.046,0,88,0,0,1 +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,77777,9,999999999,5,0.046,0,88,0,0,1 +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,77777,9,999999999,5,0.045,0,88,0,0,1 +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,77777,9,999999999,5,0.045,0,88,0,0,1 +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,77777,9,999999999,5,0.045,0,88,0,0,1 +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,77777,9,999999999,5,0.045,0,88,0,0,1 +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,77777,9,999999999,5,0.045,0,88,0,0,1 +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,77777,9,999999999,5,0.045,0,88,0,0,1 +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,77777,9,999999999,5,0.045,0,88,0,0,1 +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,39,83900,58,1024,248,24,260,9,2558,13079,1501,188,180,4.6,1,1,96,77777,9,999999999,4,0.045,0,88,0,0,1 +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,-9.4,31,83900,264,1413,267,135,505,40,15636,8892,4642,1538,220,2.6,2,2,96,77777,9,999999999,4,0.045,0,88,0,0,1 +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,22,83800,442,1413,279,291,827,32,31230,75833,5087,887,190,4.1,1,1,96,77777,9,999999999,4,0.045,0,88,0,0,1 +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,42026,83745,6645,1133,190,3.1,1,1,96,77777,9,999999999,4,0.045,0,88,0,0,1 +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,47383,87098,6740,1192,210,2.6,1,1,96,77777,9,999999999,4,0.045,0,88,0,0,1 +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,54768,50530,9635,3649,180,2.6,2,2,96,77777,9,999999999,4,0.045,0,88,0,0,1 +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,48052,46731,8727,3227,130,3.1,3,3,96,77777,9,999999999,4,0.045,0,88,0,0,1 +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,33392,31669,5855,2087,100,3.1,2,2,96,77777,9,999999999,4,0.045,0,88,0,0,1 +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,14500,3904,3514,1163,80,3.1,1,1,96,77777,9,999999999,4,0.045,0,88,0,0,1 +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,0,0,0,0,70,1.5,1,1,96,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,3,0.045,0,88,0,0,1 +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,77777,9,999999999,3,0.045,0,88,0,0,1 +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,51,83100,0,0,232,0,0,0,0,0,0,0,190,2.1,0,0,40,77777,9,999999999,3,0.045,0,88,0,0,1 +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,77777,9,999999999,3,0.045,0,88,0,0,1 +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,-12.2,24,83300,0,0,255,0,0,0,0,0,0,0,290,10.3,0,0,32,77777,9,999999999,3,0.045,0,88,0,0,1 +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,-15.6,18,83300,0,0,252,0,0,0,0,0,0,0,280,11.8,0,0,64,77777,9,999999999,3,0.045,0,88,0,0,1 +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,2089,0,1653,457,270,9.8,5,5,80,77777,9,999999999,3,0.045,0,88,0,0,1 +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,5019,580,4209,1406,310,11.3,8,8,64,3962,9,999999999,3,0.045,0,88,0,0,1 +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,14688,8388,8299,2914,310,9.3,7,7,64,3962,9,999999999,3,0.045,0,88,0,0,1 +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,41262,38722,12246,4410,290,6.7,5,4,80,77777,9,999999999,3,0.045,0,88,0,0,1 +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,45341,40343,15637,5620,290,11.8,2,2,80,77777,9,999999999,3,0.045,0,88,0,0,1 +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,53096,50104,13145,4837,290,11.3,3,3,80,77777,9,999999999,3,0.045,0,88,0,0,1 +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,42714,40777,10150,3706,300,7.7,2,2,80,77777,9,999999999,3,0.045,0,88,0,0,1 +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,23506,20516,8244,2850,300,11.8,3,3,80,77777,9,999999999,3,0.045,0,88,0,0,1 +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,13760,6557,4902,1557,290,9.3,1,1,80,77777,9,999999999,3,0.045,0,88,0,0,1 +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,1135,0,682,201,280,7.7,1,1,80,77777,9,999999999,3,0.045,0,88,0,0,1 +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,77777,9,999999999,3,0.045,0,88,0,0,1 +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,77777,9,999999999,3,0.045,0,88,0,0,1 +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,77777,9,999999999,3,0.045,0,88,0,0,1 +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,77777,9,999999999,3,0.045,0,88,0,0,1 +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,77777,9,999999999,3,0.045,0,88,0,0,1 +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,77777,9,999999999,3,0.045,0,88,0,0,1 +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,77777,9,999999999,3,0.045,0,88,0,0,1 +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,77777,9,999999999,3,0.045,0,88,0,0,1 +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,77777,9,999999999,3,0.045,0,88,0,0,1 +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,-15.6,39,83700,0,0,218,0,0,0,0,0,0,0,150,2.1,0,0,40,77777,9,999999999,3,0.045,0,88,0,0,1 +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,77777,9,999999999,3,0.045,0,88,0,0,1 +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,77777,9,999999999,3,0.045,0,88,0,0,1 +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,77777,9,999999999,3,0.045,0,88,0,0,1 +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,77777,9,999999999,3,0.045,0,88,0,0,1 +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,2026,0,1240,364,170,2.1,0,0,96,77777,9,999999999,3,0.045,0,88,0,0,1 +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,16463,9561,4531,1499,200,3.6,0,0,96,77777,9,999999999,3,0.045,0,88,0,0,1 +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,34169,32808,6442,2310,190,3.1,0,0,96,77777,9,999999999,3,0.045,0,88,0,0,1 +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,-11.1,19,83900,564,1413,275,397,832,65,47885,44729,7858,2943,140,2.1,0,0,96,77777,9,999999999,3,0.045,0,88,0,0,1 +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,55110,49272,8518,3253,80,1.5,0,0,96,77777,9,999999999,4,0.045,0,88,0,0,1 +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,18,83800,623,1413,288,450,862,70,54571,48949,8509,3245,360,2.1,0,0,96,77777,9,999999999,4,0.045,0,88,0,0,1 +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,42876,39494,7946,2957,60,2.6,1,0,96,77777,9,999999999,4,0.045,0,88,0,0,1 +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,30648,28363,6404,2272,360,4.6,1,0,96,77777,9,999999999,4,0.045,0,88,0,0,1 +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,14006,5357,4372,1416,50,4.1,1,0,96,77777,9,999999999,4,0.045,0,88,0,0,1 +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,1234,0,786,227,110,2.6,0,0,80,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,41,84100,0,0,242,0,0,0,0,0,0,0,160,4.1,0,0,48,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,2281,0,1028,309,180,3.1,0,0,112,77777,9,999999999,4,0.045,0,88,0,0,1 +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,15721,50672,5144,670,200,5.2,0,0,112,77777,9,999999999,4,0.045,0,88,0,0,1 +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,24,84300,437,1414,270,294,807,44,31251,73628,6886,1013,210,4.1,0,0,112,77777,9,999999999,4,0.045,0,88,0,0,1 +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,18,84200,564,1414,285,404,881,53,42861,84071,8107,1234,180,4.1,0,0,112,77777,9,999999999,4,0.045,0,88,0,0,1 +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,-13.3,11,84200,627,1414,293,461,910,57,48782,87995,8616,1342,150,3.1,0,0,112,77777,9,999999999,4,0.045,0,88,0,0,1 +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,48342,87698,8620,1337,290,1.5,0,0,112,77777,9,999999999,4,0.045,0,88,0,0,1 +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,41837,83150,7972,1211,90,3.6,0,0,112,77777,9,999999999,4,0.045,0,88,0,0,1 +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,29590,71658,6748,979,70,2.1,0,0,112,77777,9,999999999,4,0.045,0,88,0,0,1 +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,15146,5002,3735,1233,160,1.5,1,0,112,77777,9,999999999,4,0.045,0,88,0,0,1 +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,1432,0,993,273,130,2.1,5,1,80,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,-11.7,37,84700,52,978,248,19,116,13,2098,0,1439,403,190,1.5,4,3,112,77777,9,999999999,4,0.045,0,88,0,0,1 +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,15341,7885,4308,1429,200,2.1,2,2,112,77777,9,999999999,4,0.045,0,88,0,0,1 +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,32587,80638,5089,882,180,3.6,0,0,112,77777,9,999999999,4,0.045,0,88,0,0,1 +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,-11.7,18,84800,563,1414,275,415,946,38,44423,90386,5913,1054,210,2.6,0,0,112,77777,9,999999999,4,0.045,0,88,0,0,1 +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,50399,93985,6451,1158,230,2.1,0,0,112,77777,9,999999999,4,0.045,0,88,0,0,1 +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,50137,93871,6309,1139,60,1,0,0,96,77777,9,999999999,4,0.045,0,88,0,0,1 +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,43555,89817,5921,1048,140,2.6,0,0,96,77777,9,999999999,4,0.045,0,88,0,0,1 +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,30833,77402,5249,884,80,3.6,1,0,96,77777,9,999999999,4,0.045,0,88,0,0,1 +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,13512,45515,4531,615,110,1.5,3,1,96,77777,9,999999999,4,0.045,0,88,0,0,1 +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,1704,8614,1005,119,80,1.5,4,0,80,77777,9,999999999,4,0.045,0,88,0,0,1 +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,35,84600,0,0,249,0,0,0,0,0,0,0,110,2.6,3,0,32,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,47,84600,0,0,236,0,0,0,0,0,0,0,140,3.1,0,0,32,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,77777,9,999999999,4,0.045,0,88,0,0,1 +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,-10,65,84200,0,0,227,0,0,0,0,0,0,0,160,2.6,9,1,32,77777,9,999999999,4,0.045,0,88,0,0,1 +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,59,84200,0,0,230,0,0,0,0,0,0,0,150,2.1,10,1,32,77777,9,999999999,4,0.045,0,88,0,0,1 +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,1063,0,1070,355,160,2.1,10,10,80,7620,9,999999999,5,0.045,0,88,0,0,1 +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,6794,0,6842,2263,180,1.5,10,10,96,7620,9,999999999,5,0.045,0,88,0,0,1 +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,12294,0,12389,4335,190,1.5,10,10,96,6706,9,999999999,5,0.045,0,88,0,0,1 +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,16360,0,16492,6010,340,1.5,10,10,96,6706,9,999999999,5,0.045,0,88,0,0,1 +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,18372,0,18523,6898,340,1.5,10,10,64,6706,9,999999999,5,0.045,0,88,0,0,1 +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,26,83900,624,1414,307,181,0,181,18370,0,18521,6875,330,1.5,10,10,56,6096,9,999999999,5,0.045,0,88,0,0,1 +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,16048,0,16177,5877,290,1,10,10,56,6096,9,999999999,6,0.045,0,88,0,0,1 +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,11882,0,11973,4160,360,1,10,10,64,5486,9,999999999,6,0.045,0,88,0,0,1 +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,28,83800,240,1414,302,65,0,65,6391,0,6437,2095,130,1.5,10,10,64,5486,9,999999999,6,0.045,0,88,0,0,1 +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,31,83800,40,860,286,6,8,6,686,0,686,205,90,2.1,10,9,64,5486,9,999999999,6,0.045,0,88,0,0,1 +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,5486,9,999999999,6,0.045,0,88,0,0,1 +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,5182,9,999999999,6,0.045,0,88,0,0,1 +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,5182,9,999999999,7,0.045,0,88,0,0,1 +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,4267,9,999999999,7,0.045,0,88,0,0,1 +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,4267,9,999999999,7,0.045,0,88,0,0,1 +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,10,10,32,4267,9,999999999,7,0.045,0,88,0,0,1 +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,3658,9,999999999,7,0.045,0,88,0,0,1 +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,3962,9,999999999,7,0.045,0,88,0,0,1 +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,77777,9,999999999,8,0.045,0,88,0,0,1 +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,77777,9,999999999,8,0.045,0,88,0,0,1 +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,77777,9,999999999,8,0.045,0,88,0,0,1 +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,10,2,32,77777,9,999999999,8,0.045,0,88,0,0,1 +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,77777,9,999999999,8,0.045,0,88,0,0,1 +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,3048,9,999999999,8,0.045,0,88,0,0,1 +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,2138,0,1931,473,170,2.6,9,8,80,3353,9,999999999,8,0.045,0,88,0,0,1 +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,13375,7925,8951,2488,200,3.6,9,5,72,7620,9,999999999,8,0.045,0,88,0,0,1 +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,26540,24359,9566,3278,180,3.1,8,4,80,7620,9,999999999,8,0.045,0,88,0,0,1 +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,22970,12821,13834,4870,190,3.1,7,7,96,4572,9,999999999,8,0.045,0,88,0,0,1 +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,37270,19666,26642,8098,0,0,8,8,96,4572,9,999999999,8,0.045,0,88,0,0,1 +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,-5.6,22,83400,625,1414,319,166,195,79,19936,11269,9514,3609,130,2.1,5,5,96,77777,9,999999999,8,0.045,0,88,0,0,1 +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,-5,24,83400,556,1414,318,359,656,101,41713,39371,11775,4234,90,4.6,4,4,96,77777,9,999999999,8,0.045,0,88,0,0,1 +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,24,83500,425,1414,309,252,656,55,29794,27072,6517,2316,70,5.2,2,2,96,77777,9,999999999,8,0.045,0,88,0,0,1 +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,26,83400,242,1414,308,138,522,49,15551,8615,5537,1737,80,4.1,3,3,96,77777,9,999999999,7,0.045,0,88,0,0,1 +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,31,83500,41,884,290,16,158,8,1789,0,896,258,130,1.5,1,1,80,77777,9,999999999,7,0.045,0,88,0,0,1 +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,77777,9,999999999,7,0.045,0,88,0,0,1 +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,77777,9,999999999,7,0.045,0,88,0,0,1 +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,77777,9,999999999,7,0.045,0,88,0,0,1 +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,1,1,24,77777,9,999999999,7,0.045,0,88,0,0,1 +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,77777,9,999999999,7,0.045,0,88,0,0,1 +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,77777,9,999999999,7,0.045,0,88,0,0,1 +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,77777,9,999999999,7,0.045,0,88,0,0,1 +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,-6.1,60,83500,0,0,253,0,0,0,0,0,0,0,150,2.1,3,3,32,77777,9,999999999,7,0.045,0,88,0,0,1 +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,77777,9,999999999,7,0.045,0,88,0,0,1 +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,77777,9,999999999,7,0.045,0,88,0,0,1 +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,77777,9,999999999,7,0.045,0,88,0,0,1 +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,2743,9,999999999,7,0.045,0,88,0,0,1 +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,2743,9,999999999,7,0.045,0,88,0,0,1 +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,2743,9,999999999,7,0.045,0,88,0,0,1 +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,1469,0,1019,302,190,4.1,6,6,112,2743,9,999999999,7,0.045,0,88,0,0,1 +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,12031,2326,11123,2727,190,4.1,8,8,128,2743,9,999999999,7,0.045,0,88,0,0,1 +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,22607,16859,12809,4117,190,4.6,6,6,120,2743,9,999999999,7,0.045,0,88,0,0,1 +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,33458,28549,9399,3476,190,3.6,5,5,120,77777,9,999999999,7,0.045,0,88,0,0,1 +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,37642,27897,18906,6512,200,2.6,5,5,120,77777,9,999999999,7,0.045,0,88,0,0,1 +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,-7.8,18,83600,626,1414,320,388,654,98,45853,40465,11619,4339,140,1.5,6,6,112,2591,9,999999999,7,0.045,0,88,0,0,1 +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,-6.7,20,83500,558,1414,310,396,838,65,47635,44072,7837,2925,100,3.1,2,2,112,77777,9,999999999,7,0.045,0,88,0,0,1 +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,22905,18845,10696,3559,140,4.1,5,5,112,77777,9,999999999,7,0.045,0,88,0,0,1 +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,25,83500,244,1414,318,56,109,37,6459,1191,4277,1401,130,4.6,6,6,112,3048,9,999999999,7,0.045,0,88,0,0,1 +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,30,83600,43,884,306,11,62,8,1233,0,898,261,130,4.6,6,6,96,3048,9,999999999,7,0.045,0,88,0,0,1 +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,34,83600,0,0,302,0,0,0,0,0,0,0,120,5.2,7,7,48,3353,9,999999999,7,0.045,0,88,0,0,1 +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,37,83600,0,0,302,0,0,0,0,0,0,0,130,4.1,8,8,48,3353,9,999999999,7,0.045,0,88,0,0,1 +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,3353,9,999999999,7,0.045,0,88,0,0,1 +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,3353,9,999999999,7,0.045,0,88,0,0,1 +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,6,6,48,3353,9,999999999,7,0.045,0,88,0,0,1 +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,3353,9,999999999,7,0.045,0,88,0,0,1 +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,77777,9,999999999,7,0.045,0,88,0,0,1 +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,77777,9,999999999,7,0.045,0,88,0,0,1 +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,3353,9,999999999,7,0.045,0,88,0,0,1 +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,3353,9,999999999,7,0.045,0,88,0,0,1 +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,3353,9,999999999,7,0.045,0,88,0,0,1 +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,3353,9,999999999,7,0.045,0,88,0,0,1 +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,3353,9,999999999,7,0.045,0,88,0,0,1 +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,3353,9,999999999,7,0.045,0,88,0,0,1 +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,806,0,807,245,190,4.6,8,8,80,3353,9,999999999,7,0.045,0,88,0,0,1 +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,13006,7825,6914,2096,190,4.1,4,4,80,77777,9,999999999,7,0.045,0,88,0,0,1 +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,28047,65760,6594,992,190,4.1,1,1,96,77777,9,999999999,6,0.045,0,88,0,0,1 +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,-5.6,31,83900,562,1414,286,388,869,43,41536,83208,6654,1127,170,2.1,1,1,96,77777,9,999999999,6,0.045,0,88,0,0,1 +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,47378,87461,6601,1174,200,1.5,1,1,96,77777,9,999999999,6,0.045,0,88,0,0,1 +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,47055,86848,6602,1173,60,2.1,1,1,96,77777,9,999999999,6,0.045,0,88,0,0,1 +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,41217,81082,7827,1209,360,1.5,1,1,96,77777,9,999999999,6,0.045,0,88,0,0,1 +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,32703,29481,5641,2025,350,2.1,1,1,96,77777,9,999999999,6,0.045,0,88,0,0,1 +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,14203,47447,4533,629,50,2.1,1,1,96,77777,9,999999999,6,0.045,0,88,0,0,1 +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,1920,9905,1169,132,360,2.6,1,1,64,77777,9,999999999,6,0.045,0,88,0,0,1 +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,77777,9,999999999,6,0.045,0,88,0,0,1 +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,-6.1,42,83700,0,0,261,0,0,0,0,0,0,0,170,2.1,0,0,48,77777,9,999999999,6,0.045,0,88,0,0,1 +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,77777,9,999999999,6,0.045,0,88,0,0,1 +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,77777,9,999999999,6,0.045,0,88,0,0,1 +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,77777,9,999999999,6,0.045,0,88,0,0,1 +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,77777,9,999999999,6,0.045,0,88,0,0,1 +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,77777,9,999999999,6,0.045,0,88,0,0,1 +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,77777,9,999999999,6,0.045,0,88,0,0,1 +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,-8.3,49,83600,0,0,241,0,0,0,0,0,0,0,170,3.1,0,0,48,77777,9,999999999,6,0.045,0,88,0,0,1 +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,77777,9,999999999,6,0.045,0,88,0,0,1 +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,77777,9,999999999,6,0.045,0,88,0,0,1 +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,77777,9,999999999,6,0.045,0,88,0,0,1 +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,64,77777,9,999999999,6,0.045,0,88,0,0,1 +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,77777,9,999999999,6,0.045,0,88,0,0,1 +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,1690,0,1016,298,190,3.6,0,0,112,77777,9,999999999,6,0.045,0,88,0,0,1 +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,15377,7413,4402,1450,180,4.1,0,0,112,77777,9,999999999,6,0.045,0,88,0,0,1 +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,-7.2,38,84000,432,1415,260,278,733,54,33008,30973,6425,2297,170,2.6,0,0,112,77777,9,999999999,6,0.045,0,88,0,0,1 +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,46976,43446,7848,2935,170,3.1,0,0,112,77777,9,999999999,6,0.045,0,88,0,0,1 +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,54477,48319,8514,3251,160,3.1,0,0,112,77777,9,999999999,6,0.045,0,88,0,0,1 +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,54471,48374,8513,3250,90,2.6,0,0,112,77777,9,999999999,6,0.045,0,88,0,0,1 +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,46830,43350,7843,2930,90,4.6,0,0,112,77777,9,999999999,6,0.045,0,88,0,0,1 +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,32854,30712,6418,2289,100,5.7,0,0,112,77777,9,999999999,6,0.045,0,88,0,0,1 +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,-7.8,26,83800,249,1415,279,132,534,38,15226,6791,4392,1439,80,5.2,0,0,112,77777,9,999999999,6,0.045,0,88,0,0,1 +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,1564,0,1007,290,90,3.1,0,0,64,77777,9,999999999,6,0.045,0,88,0,0,1 +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,-6.7,40,83900,0,0,261,0,0,0,0,0,0,0,90,3.1,0,0,48,77777,9,999999999,6,0.045,0,88,0,0,1 +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,77777,9,999999999,6,0.045,0,88,0,0,1 +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,77777,9,999999999,6,0.045,0,88,0,0,1 +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,77777,9,999999999,6,0.045,0,88,0,0,1 +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,77777,9,999999999,6,0.045,0,88,0,0,1 +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,77777,9,999999999,6,0.045,0,88,0,0,1 +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,77777,9,999999999,6,0.045,0,88,0,0,1 +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,77777,9,999999999,6,0.044,0,88,0,0,1 +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,77777,9,999999999,6,0.044,0,88,0,0,1 +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,77777,9,999999999,6,0.044,0,88,0,0,1 +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,48,77777,9,999999999,6,0.044,0,88,0,0,1 +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,77777,9,999999999,6,0.044,0,88,0,0,1 +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,-7.8,79,83800,0,0,224,0,0,0,0,0,0,0,200,1.5,0,0,48,77777,9,999999999,6,0.044,0,88,0,0,1 +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,77777,9,999999999,6,0.044,0,88,0,0,1 +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,2039,12320,1013,148,160,2.6,0,0,112,77777,9,999999999,6,0.044,0,88,0,0,1 +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,15996,56975,3759,603,180,2.1,0,0,112,77777,9,999999999,6,0.044,0,88,0,0,1 +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,-7.2,38,83800,432,1415,265,277,756,46,29449,68827,7189,1013,220,2.6,1,1,112,77777,9,999999999,6,0.044,0,88,0,0,1 +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,42574,86277,5916,1053,200,2.6,1,1,112,77777,9,999999999,6,0.044,0,88,0,0,1 +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,-8.3,25,83500,629,1415,284,430,809,70,52177,45840,8515,3252,300,1.5,1,1,112,77777,9,999999999,6,0.044,0,88,0,0,1 +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,46188,84681,6744,1190,350,2.6,1,1,112,77777,9,999999999,6,0.044,0,88,0,0,1 +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,44574,42981,12114,4351,10,4.6,3,3,80,77777,9,999999999,6,0.044,0,88,0,0,1 +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,31554,28828,6419,2292,360,5.7,2,2,80,77777,9,999999999,6,0.044,0,88,0,0,1 +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,14825,7428,5030,1621,360,5.2,3,3,80,77777,9,999999999,6,0.044,0,88,0,0,1 +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,1715,0,801,241,10,3.1,1,1,64,77777,9,999999999,6,0.044,0,88,0,0,1 +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,77777,9,999999999,6,0.044,0,88,0,0,1 +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,-5.6,62,83400,0,0,243,0,0,0,0,0,0,0,170,1.5,0,0,48,77777,9,999999999,6,0.044,0,88,0,0,1 +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,77777,9,999999999,6,0.044,0,88,0,0,1 +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,77777,9,999999999,6,0.044,0,88,0,0,1 +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,77777,9,999999999,6,0.044,0,88,0,0,1 +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,77777,9,999999999,6,0.044,0,88,0,0,1 +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,77777,9,999999999,6,0.044,0,88,0,0,1 +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,77777,9,999999999,6,0.044,0,88,0,0,1 +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,77777,9,999999999,6,0.044,0,88,0,0,1 +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,77777,9,999999999,6,0.044,0,88,0,0,1 +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,-7.8,79,83200,0,0,232,0,0,0,0,0,0,0,350,2.1,2,2,32,77777,9,999999999,6,0.044,0,88,0,0,1 +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,-6.7,86,83300,0,0,235,0,0,0,0,0,0,0,0,0,5,3,32,77777,9,999999999,6,0.044,0,88,0,0,1 +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,-6.7,86,83300,0,0,233,0,0,0,0,0,0,0,180,1.5,4,2,32,77777,9,999999999,6,0.044,0,88,0,0,1 +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,8,6,80,6096,9,999999999,6,0.044,0,88,0,0,1 +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,1215,0,1218,341,120,1.5,10,9,88,6096,9,999999999,6,0.044,0,88,0,0,1 +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,61,83300,249,1415,286,63,0,63,6195,0,6240,2106,120,1.5,10,10,88,6096,9,999999999,6,0.044,0,88,0,0,1 +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,17573,1806,16779,4861,0,0,9,9,112,6096,9,999999999,6,0.044,0,88,0,0,1 +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,33508,5778,31244,7636,0,0,9,9,112,6096,9,999999999,6,0.044,0,88,0,0,1 +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,18168,0,18318,6860,80,2.1,10,10,112,6096,9,999999999,6,0.044,0,88,0,0,1 +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,14503,0,14623,5866,10,6.7,10,10,96,2438,9,999999999,6,0.044,0,88,0,0,1 +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,12812,0,12916,5076,350,3.1,10,10,96,2896,9,999999999,6,0.044,0,88,0,0,1 +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,-5,46,83300,436,1415,288,245,174,192,26228,13931,20664,5291,330,2.6,10,8,96,2896,9,999999999,6,0.044,0,88,0,0,1 +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,48,83300,254,1415,281,108,100,90,11621,3766,9725,2562,0,0,9,7,64,2896,9,999999999,6,0.044,0,88,0,0,1 +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,1713,0,1719,425,150,3.6,10,9,48,6096,9,999999999,6,0.044,0,88,0,0,1 +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,3048,9,999999999,6,0.044,0,88,0,0,1 +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,50,83500,0,0,298,0,0,0,0,0,0,0,130,2.1,10,10,32,2743,9,999999999,6,0.044,0,88,0,0,1 +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,52,83500,0,0,295,0,0,0,0,0,0,0,200,2.1,10,10,32,2743,9,999999999,6,0.044,0,88,0,0,1 +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,54,83500,0,0,293,0,0,0,0,0,0,0,70,5.2,10,10,24,2286,9,999999999,6,0.044,0,88,0,0,1 +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,3658,9,999999999,6,0.044,0,88,0,0,1 +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,1402,9,999999999,7,0.044,0,88,0,0,1 +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,-1.7,87,83600,0,0,285,0,0,0,0,0,0,0,350,3.6,10,10,9.6,305,9,999999999,7,0.044,0,88,0,0,1 +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,-1.1,91,83600,0,0,286,0,0,0,0,0,0,0,360,3.1,10,10,8,274,9,999999999,7,0.044,0,88,0,0,1 +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,7,0.044,0,88,0,0,1 +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,152,9,999999999,7,0.044,0,88,0,0,1 +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,7,0.044,0,88,0,0,1 +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,7,0.044,0,88,0,0,1 +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,152,9,999999999,7,0.044,0,88,0,0,1 +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,7,0.044,0,88,0,0,1 +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,95,83600,45,908,264,4,0,4,386,0,388,149,330,3.6,10,10,1.6,122,9,999999999,7,0.044,0,88,0,0,1 +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,95,83600,248,1415,264,26,0,26,2557,0,2575,1047,360,4.1,10,10,3.2,152,9,999999999,7,0.044,0,88,0,0,1 +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,5390,0,5432,2295,350,4.6,10,10,1.6,183,9,999999999,7,0.044,0,88,0,0,1 +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,7667,0,7729,3362,360,3.6,10,10,3.2,183,9,999999999,6,0.044,0,88,0,0,1 +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,91,83500,631,1415,266,89,0,89,9029,0,9104,4012,360,3.1,10,10,3.2,183,9,999999999,6,0.044,0,88,0,0,1 +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,91,83400,633,1415,266,89,0,89,9029,0,9104,4014,350,3.1,10,10,1.6,152,9,999999999,6,0.044,0,88,0,0,1 +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,87,83400,567,1415,268,77,0,77,7770,0,7833,3404,350,3.1,10,10,4.8,152,9,999999999,6,0.044,0,88,0,0,1 +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,91,83400,439,1415,266,55,0,55,5492,0,5534,2336,360,4.6,10,10,6.4,152,9,999999999,6,0.044,0,88,0,0,1 +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,91,83500,257,1415,266,32,0,32,3148,0,3170,1257,360,4.1,10,10,3.2,213,9,999999999,6,0.044,0,88,0,0,1 +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,91,83500,52,979,266,6,0,6,579,0,583,215,40,3.1,10,10,3.2,213,9,999999999,6,0.044,0,88,0,0,1 +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,6,0.044,0,88,0,0,1 +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,6,0.044,0,88,0,0,1 +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,6,0.044,0,88,0,0,1 +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,-6.1,91,83600,0,0,260,0,0,0,0,0,0,0,60,4.1,10,10,3.2,610,9,999999999,6,0.044,0,88,0,0,1 +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,6,0.044,0,88,0,0,1 +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,6,0.044,0,88,0,0,1 +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,6,0.044,0,88,0,0,1 +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,5,0.044,0,88,0,0,1 +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,1524,9,999999999,5,0.044,0,88,0,0,1 +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,5,0.044,0,88,0,0,1 +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,5,0.044,0,88,0,0,1 +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,5,0.044,0,88,0,0,1 +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,457,9,999999999,5,0.044,0,88,0,0,1 +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,762,9,999999999,5,0.044,0,88,0,0,1 +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,-11.7,86,84000,45,908,230,9,10,8,1019,0,907,268,20,2.6,9,9,6.4,1981,9,999999999,5,0.044,0,88,0,0,1 +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,9937,2744,8330,2352,80,3.1,10,8,2.4,671,9,999999999,5,0.044,0,88,0,0,1 +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,25800,15808,19096,5150,60,3.1,10,7,6.4,1372,9,999999999,5,0.044,0,88,0,0,1 +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,45089,44105,11807,4259,50,3.1,5,4,9.6,77777,9,999999999,4,0.044,0,88,0,0,1 +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,48088,43718,14574,5303,80,3.6,4,4,19.2,77777,9,999999999,4,0.044,0,88,0,0,1 +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,30753,17441,19151,6595,40,3.6,4,4,19.2,77777,9,999999999,4,0.044,0,88,0,0,1 +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,43622,42115,13320,4728,120,3.1,5,5,16,77777,9,999999999,4,0.044,0,88,0,0,1 +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,21564,10126,16716,4887,70,3.6,6,6,16,457,9,999999999,4,0.044,0,88,0,0,1 +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,-13.3,74,84100,260,1415,220,80,209,41,9214,3489,4732,1549,80,2.6,7,7,19.2,701,9,999999999,4,0.044,0,88,0,0,1 +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,1548,0,1330,373,80,2.6,8,8,16,488,9,999999999,4,0.044,0,88,0,0,1 +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,77777,9,999999999,3,0.044,0,88,0,0,1 +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,77777,9,999999999,3,0.044,0,88,0,0,1 +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,86,84200,0,0,196,0,0,0,0,0,0,0,190,2.1,5,1,24,77777,9,999999999,3,0.044,0,88,0,0,1 +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,-16.7,85,84200,0,0,194,0,0,0,0,0,0,0,120,2.1,3,3,16,77777,9,999999999,3,0.044,0,88,0,0,1 +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,77777,9,999999999,3,0.044,0,88,0,0,1 +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,85,84100,0,0,174,0,0,0,0,0,0,0,320,2.1,0,0,12.8,77777,9,999999999,3,0.044,0,88,0,0,1 +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,1,1,9.6,77777,9,999999999,3,0.044,0,88,0,0,1 diff --git a/AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/725650.mos b/AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD100.mos similarity index 100% rename from AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/725650.mos rename to AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD100.mos diff --git a/AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD200.epw b/AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD200.epw new file mode 100644 index 0000000000..bc91a33056 --- /dev/null +++ b/AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD200.epw @@ -0,0 +1,8768 @@ +LOCATION,Atlanta-Hartsfield-Jackson Intl AP,GA,USA,TMY3,722190,33.63300,-84.43300,-5.0,308.0 +DESIGN CONDITIONS,1,2017 ASHRAE Handbook -- Fundamentals - Chapter 14 Climatic Design Information,,Heating,1,-5.6,-3,-15.1,1,-1.5,-12.6,1.3,0.5,11.1,4.3,10.4,4,5.3,320,Cooling,7,9.3,34.4,23.4,33.1,23.2,32,22.9,25.2,31.3,24.6,30.3,24.1,29.3,3.9,300,23.5,19,27.4,23,18.4,26.8,22.6,17.9,26.5,78.3,31.3,75.9,30.4,73.9,29.6,28,Extremes,9.5,8.5,7.6,-9.5,35.9,2.6,2,-11.3,37.4,-12.8,38.6,-14.3,39.7,-16.1,41.2,-10.8 +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,"NREL TMY Data Set (2008) updated 2015 to include better precipitation;Period of Record 1973-2005 (Generally)" +COMMENTS 2,"Downloaded from Climate.Onebuilding.Org -- Ground temps represent undisturbed earth temperatures - calculated from this weather data." +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,17,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,1.3,1.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,4372,0,4271,1328,210,3.6,10,10,4.0,820,9,999999999,19,0.0000,0,88,0.000,1.0,1.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,15270,237,15231,4545,180,3.1,10,10,11.3,730,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,15099,244,14931,5349,190,3.6,10,10,8.0,730,9,999999999,21,0.0000,0,88,0.000,0.8,1.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,28765,249,28820,9419,240,4.1,10,10,8.0,730,9,999999999,22,0.0000,0,88,0.000,1.0,1.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,19745,67,19721,7421,250,3.1,10,10,2.4,210,9,999999999,23,0.0000,0,88,0.000,1.0,1.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,15969,0,16008,6842,290,3.6,10,10,1.6,90,9,999999999,22,0.0000,0,88,0.000,0.5,1.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,17870,131,17836,6386,300,3.1,10,10,1.2,60,9,999999999,22,0.0000,0,88,0.000,0.3,1.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,12683,56,12732,4348,320,6.7,10,10,4.8,90,9,999999999,17,0.0000,0,88,0.000,2.0,1.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,5401,0,5441,2011,320,6.2,10,10,6.4,120,9,999999999,16,0.0000,0,88,0.000,0.3,1.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,1250,0,1258,382,320,6.2,10,10,6.4,90,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.3,1.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,15,0.0000,0,88,0.000,1.8,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.5,1.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,13,0.0000,0,88,0.000,0.5,1.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,13,0.0000,0,88,0.000,0.3,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.5,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,5273,0,5310,1679,340,4.1,10,10,12.9,210,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,15013,62,15081,4509,20,4.1,10,10,12.9,340,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,20299,0,20365,7140,80,7.2,10,10,24.1,760,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,30931,182,31001,9794,90,5.2,10,10,24.1,760,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,60002,45649,24948,8890,50,5.7,10,7,24.1,1830,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,57147,44623,21141,7728,50,5.2,10,4,24.1,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,27027,5448,23687,7826,120,4.1,10,9,24.1,850,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,10436,478,10120,3593,60,5.2,10,10,24.1,850,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,9505,149,9432,2721,110,5.2,10,10,24.1,850,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,1638,0,1649,451,70,4.1,10,10,16.1,850,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,1.3,1.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,12,0.0000,0,88,0.000,1.8,1.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,12,0.0000,0,88,0.000,1.3,1.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,12,0.0000,0,88,0.000,1.5,1.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,12,0.0000,0,88,0.000,1.8,1.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,2908,0,2912,950,70,6.7,10,10,6.4,180,9,999999999,11,0.0000,0,88,0.000,1.3,1.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,8869,317,8664,2986,60,9.3,10,10,6.4,180,9,999999999,11,0.0000,0,88,0.000,1.5,1.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,12395,242,12203,4493,70,6.7,10,10,8.0,180,9,999999999,11,0.0000,0,88,0.000,0.5,1.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,16586,137,16536,6220,70,5.2,10,10,9.7,120,9,999999999,11,0.0000,0,88,0.000,0.5,1.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,18559,71,18640,7062,90,7.2,10,10,9.7,120,9,999999999,12,0.0000,0,88,0.000,0.3,1.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,18489,71,18569,6964,80,5.7,10,10,9.7,120,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,17126,139,17083,6169,80,5.7,10,10,4.8,90,9,999999999,12,0.0000,0,88,0.000,0.3,1.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,17935,0,18078,5866,80,4.1,10,10,8.0,120,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,6343,25,6361,2056,60,3.1,10,10,1.6,90,9,999999999,12,0.0000,0,88,0.000,0.5,1.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,1253,0,1261,396,80,5.7,10,10,1.6,90,9,999999999,12,0.0000,0,88,0.000,0.3,1.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,12,0.0000,0,88,0.000,0.5,1.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,12,0.0000,0,88,0.000,1.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.3,1.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,13,0.0000,0,88,0.000,0.3,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.3,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,6199,12,6221,1727,300,7.2,10,10,24.1,520,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,25186,21847,10881,3599,300,5.2,5,5,24.1,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,41853,36113,13615,4939,310,6.7,4,4,24.1,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,59581,49442,15572,5905,310,7.2,5,4,24.1,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,70422,58310,19525,7345,300,8.2,5,5,24.1,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,52623,39085,20636,7598,330,7.7,5,4,24.1,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,49276,42108,18070,6459,290,7.2,9,4,24.1,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,26127,18665,14587,4849,320,7.2,9,7,24.1,7620,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,9881,2632,8244,2516,320,6.2,9,7,24.1,7620,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,2712,0,2618,539,320,5.7,9,9,24.1,7620,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,8479,2303,6437,1758,310,7.2,9,6,40.2,4570,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,27192,26291,9858,3320,330,6.2,8,2,40.2,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,45668,82330,9640,1351,340,8.2,2,0,40.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,57557,90948,10042,1563,320,6.2,1,0,40.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,61822,92217,10380,1669,320,7.7,1,0,40.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,60489,93219,9578,1583,320,5.2,0,0,40.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,51308,88096,8855,1406,320,6.2,0,0,40.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,29261,22165,17323,5475,310,6.2,5,4,40.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,14194,9183,8679,2618,320,6.7,7,5,24.1,7620,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,3546,0,2048,513,320,4.1,3,2,24.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,5883,424,5121,1515,310,3.6,10,9,40.2,3350,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,17751,9850,11954,3859,320,4.6,10,9,40.2,3350,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,25757,4968,23099,7305,340,3.6,10,9,40.2,3350,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,30952,1858,30007,9658,300,4.1,10,9,40.2,3050,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,21160,773,20555,7666,330,3.1,10,10,24.1,2440,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,22259,1026,21552,7876,20,3.1,10,10,24.1,2440,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,35253,17571,24410,8055,330,3.1,10,9,24.1,2440,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,13361,739,12837,4416,310,2.6,10,10,19.3,7620,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,8002,0,8060,2698,350,3.1,10,10,19.3,2740,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,1451,0,1460,458,310,2.6,10,10,19.3,2740,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,3768,0,3662,1162,70,8.2,10,10,4.8,730,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,14151,309,14101,4331,70,10.8,10,10,2.4,670,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,21960,400,21733,7051,90,7.2,10,10,1.6,670,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,27369,433,27179,9121,90,9.3,10,10,1.6,610,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,29284,265,29219,9986,80,7.2,10,10,1.0,310,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,32342,94,32532,10466,70,8.2,10,10,1.0,310,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,27153,88,27191,8627,80,5.2,10,10,1.0,310,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,19578,77,19674,5969,60,8.2,10,10,1.6,310,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,10475,45,10517,2997,80,8.8,10,10,1.6,240,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,2708,0,2726,619,80,9.3,10,10,11.3,310,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,7827,0,7882,1983,50,2.1,10,10,3.2,90,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,21279,82,21396,5212,330,2.1,10,10,3.2,90,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,28986,94,29155,8213,360,2.1,10,10,3.2,90,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,37483,103,37613,10757,360,2.6,10,10,6.4,90,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,39164,206,39305,11722,310,2.6,10,10,4.8,150,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,37105,101,37339,11221,310,4.1,10,10,4.8,150,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,31489,95,31566,9329,340,3.6,10,10,6.4,270,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,25154,89,25297,6700,320,4.6,10,10,9.7,270,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,13232,0,13329,3439,320,4.6,10,10,9.7,400,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,3383,0,3405,643,320,4.6,10,10,9.7,340,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,4999,6,5013,1495,300,3.1,10,10,8.0,270,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,13259,586,12977,4107,320,1.5,10,10,8.0,270,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,38255,18882,28967,8211,330,2.6,10,9,8.0,6100,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,41103,10098,35512,10562,350,2.1,10,9,8.0,6100,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,57593,31601,38824,11700,10,3.1,10,9,9.7,6100,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,37343,8702,31842,10402,330,2.1,9,8,11.3,6100,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,51704,40790,27221,8696,330,2.6,7,6,11.3,6100,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,37731,29663,24242,6654,340,2.1,9,8,11.3,2740,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,14775,8944,9629,2877,350,2.1,8,7,11.3,2740,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,2855,0,2866,661,310,2.6,8,8,11.3,2440,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,4207,0,4236,1451,320,2.6,10,10,0.2,0,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,14782,626,14514,4428,10,2.1,10,10,0.2,0,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,22770,245,22775,7294,10,2.6,10,10,0.4,90,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,57984,45488,26888,9106,10,2.1,6,6,3.2,240,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,63597,91630,12432,1771,0,0.0,0,0,4.8,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,60291,88227,12194,1724,30,2.6,0,0,4.8,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,61324,51256,9271,3600,290,1.5,0,0,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,43513,40104,7449,2755,0,0.0,0,0,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,21491,15660,5033,1713,310,2.1,0,0,11.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,4464,0,2184,590,320,3.1,0,0,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,11046,44055,3446,506,340,2.1,0,0,6.4,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,30639,75663,5249,889,70,2.6,0,0,6.4,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,47795,89534,6612,1165,60,2.1,0,0,9.7,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,59379,95534,7358,1352,0,0.0,0,0,9.7,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,64784,97862,7721,1450,30,3.1,0,0,11.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,62827,97002,7600,1417,30,2.1,0,0,11.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,54286,93219,6982,1263,80,2.1,0,0,11.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,39708,84065,5939,1033,90,1.5,0,0,12.9,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,20752,63372,4370,718,120,2.6,0,0,12.9,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,5182,0,1580,470,190,1.5,0,0,12.9,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,6140,504,4814,1455,120,3.1,8,4,9.7,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,26052,23149,12061,3912,120,5.2,4,2,9.7,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,43821,38632,14197,5146,130,4.1,7,2,11.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,52224,38529,24419,8551,140,3.1,8,3,12.9,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,60134,43623,27198,9604,140,3.1,10,4,19.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,57924,43532,24160,8708,120,3.1,8,3,19.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,40384,25360,23354,7969,170,2.1,9,5,19.3,7620,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,20716,4697,18126,5809,30,1.5,10,5,19.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,14982,7600,11090,3206,250,2.1,10,7,19.3,7620,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,1374,0,1376,421,120,3.6,10,9,19.3,7620,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.5,1.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,11,0.0000,0,88,0.000,0.5,1.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,13,0.0000,0,88,0.000,0.8,1.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,5105,20,5008,1504,280,4.6,10,10,3.2,150,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,14341,119,14292,4415,300,5.2,10,10,4.8,400,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,25373,3922,23166,7424,300,6.2,10,9,11.3,550,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,55930,43288,14510,5595,290,8.8,4,3,16.1,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,71938,54266,12414,4942,300,7.7,3,3,16.1,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,59791,88948,9556,1618,300,8.2,1,1,32.2,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,53681,89154,8828,1441,290,8.8,0,0,32.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,39084,79444,7551,1170,290,7.2,0,0,32.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,20352,57824,5589,797,310,6.2,0,0,24.1,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,4894,0,2006,580,310,6.2,0,0,24.1,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,10063,2217,4821,1461,320,3.6,7,1,32.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,28703,27809,11455,3772,30,2.6,8,3,32.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,46885,43056,15187,5453,60,3.1,9,4,32.2,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,55116,43603,20851,7610,110,2.6,9,4,32.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,55512,36462,28932,10065,50,2.6,9,4,32.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,58003,44190,21751,8054,40,2.6,10,5,32.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,36026,23638,17682,6477,100,4.1,9,4,32.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,35220,31891,13889,4813,100,3.6,8,4,32.2,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,21133,17127,5176,1774,70,1.5,3,1,32.2,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,4751,0,2925,758,90,3.1,3,1,32.2,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,11561,45941,3288,505,80,4.1,0,0,32.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,31098,76367,5092,879,90,4.6,0,0,32.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,48751,90801,6457,1155,70,3.6,0,0,32.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,60730,96676,7343,1361,50,2.6,0,0,32.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,66031,98797,7561,1445,70,2.6,0,0,32.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,64677,98689,7580,1430,60,2.1,0,0,32.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,56062,94681,6964,1274,60,1.5,0,0,32.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,41539,86367,5926,1044,0,0.0,0,0,32.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,22422,66608,4364,734,120,2.1,0,0,32.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,5414,20714,2310,258,90,2.6,0,0,32.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,11310,43274,3756,525,90,3.6,1,0,32.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,31011,72642,7187,1016,140,5.7,3,0,32.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,49535,43964,9742,3690,100,4.6,6,1,32.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,69326,56230,10649,4200,150,5.2,6,0,32.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,63102,89033,12251,1813,150,5.2,7,1,32.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,69412,55226,14558,5711,120,5.2,8,1,32.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,59323,50117,11126,4311,140,4.6,8,1,32.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,44407,41053,7720,2877,130,5.7,6,1,32.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,20614,18195,8066,2621,160,4.6,7,2,32.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,5044,0,4221,924,120,3.6,9,3,32.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,3568,0,3459,1117,90,7.7,10,10,4.8,340,9,999999999,11,0.0000,0,88,0.000,0.3,1.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,11109,260,10921,3661,90,6.2,10,10,2.4,150,9,999999999,11,0.0000,0,88,0.000,4.1,1.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,12810,725,12146,4529,90,7.2,10,10,1.6,90,9,999999999,12,0.0000,0,88,0.000,2.3,1.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,16806,543,16401,6270,80,5.2,10,10,1.6,90,9,999999999,12,0.0000,0,88,0.000,3.8,1.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,18809,352,18535,7156,290,7.7,10,10,1.6,150,9,999999999,13,0.0000,0,88,0.000,7.6,1.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,19071,354,18919,7236,80,3.6,10,10,2.0,460,9,999999999,13,0.0000,0,88,0.000,1.3,1.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,16541,202,16374,6131,90,4.1,10,10,2.4,90,9,999999999,13,0.0000,0,88,0.000,0.5,1.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,14258,187,14200,4960,60,4.6,10,10,0.8,90,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,9706,2010,8265,2691,60,6.2,10,9,1.6,120,9,999999999,13,0.0000,0,88,0.000,3.3,1.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,3097,0,3118,881,100,5.2,10,10,8.0,340,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.3,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,4810,12,4711,1453,80,2.1,10,10,0.0,0,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,15373,247,15333,4674,70,3.1,10,10,0.2,0,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,21571,525,21341,7135,100,3.1,10,10,0.2,0,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,25210,157,25229,8892,50,2.6,10,10,0.2,0,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,22960,513,22609,8481,110,3.1,10,10,0.2,0,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,18070,267,17912,6928,70,3.1,10,10,0.2,0,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,17249,66,17206,6422,60,3.1,10,10,0.2,0,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,21188,74,21298,6634,60,4.1,10,10,0.4,0,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,10937,0,11021,3548,70,3.1,10,10,0.4,30,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,3183,0,3205,915,90,3.6,10,10,0.2,30,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.3,1.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,22,0.0000,0,88,0.000,1.3,1.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,23,0.0000,0,88,0.000,0.5,1.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,23,0.0000,0,88,0.000,4.1,1.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,7087,12,7115,1932,140,5.7,10,10,0.2,60,9,999999999,23,0.0000,0,88,0.000,0.3,1.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,16501,61,16582,4920,140,5.7,10,10,0.0,30,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,14922,59,14983,5476,140,7.7,10,10,3.2,120,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,32666,86,32868,10557,140,7.2,10,10,11.3,180,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,32617,167,32704,11111,150,6.2,10,10,11.3,340,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,32942,169,33032,11042,160,7.7,10,10,11.3,400,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,28593,161,28648,9376,160,9.3,10,10,16.1,460,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,21347,71,21460,6712,160,10.8,10,10,16.1,760,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,7692,30,7717,2580,130,6.7,10,10,16.1,700,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,3171,0,3194,935,110,6.7,10,10,16.1,700,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.3,1.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,27,0.0000,0,88,0.000,0.3,1.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,27,0.0000,0,88,0.000,0.3,1.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,26,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,15.7,1.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,23,0.0000,0,88,0.000,5.1,1.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,22,0.0000,0,88,0.000,4.1,1.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,21,0.0000,0,88,0.000,1.5,1.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,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,6506,10,6530,1847,270,4.1,10,10,0.2,30,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,15932,60,16008,4838,220,3.1,10,10,0.0,30,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,25255,79,25395,8010,250,3.6,10,10,3.2,90,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,29538,0,29800,10473,260,5.2,10,10,11.3,180,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,40041,13482,29152,10327,240,4.1,9,7,12.9,7620,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,36418,13270,25132,9181,240,6.2,9,5,16.1,7620,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,34373,16892,20653,7485,230,5.2,9,7,32.2,7620,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,29636,17105,18694,6170,220,6.2,9,7,32.2,7620,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,17668,10401,11680,3516,210,4.6,10,6,24.1,7620,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,3580,0,3374,922,220,5.2,10,7,24.1,7620,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,5671,188,5353,1614,310,5.2,10,9,24.1,3350,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,21166,9366,16416,4911,330,7.7,9,8,24.1,3050,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,28386,2901,26884,8264,330,6.2,10,9,24.1,3050,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,25708,1059,25040,8890,330,7.2,10,10,24.1,3050,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,28878,426,28693,10205,320,5.7,10,10,24.1,3050,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,44420,13829,35282,11506,310,5.7,10,8,24.1,7620,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,37951,20736,22332,7949,310,5.2,8,7,24.1,7620,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,19331,5395,15758,5453,310,6.2,10,9,24.1,3050,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,18176,13601,8948,2917,320,4.6,5,5,24.1,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,5997,0,2267,692,310,6.7,0,0,24.1,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,12430,1947,4115,1311,310,6.7,1,1,24.1,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,29051,26985,10443,3564,320,9.3,4,4,24.1,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,39053,27391,21261,7178,310,10.3,6,6,24.1,910,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,63970,51692,19310,7260,300,7.7,6,6,24.1,910,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,54746,37001,20490,7853,340,9.3,5,5,24.1,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,43652,20673,27614,9865,300,6.2,6,6,24.1,910,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,47669,34605,20887,7570,280,8.8,6,6,24.1,910,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,43761,40729,11943,4347,310,6.7,3,3,24.1,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,23570,63473,5425,845,300,7.2,1,1,24.1,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,6732,0,2171,671,300,4.6,0,0,24.1,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,12481,1037,3589,1167,230,4.1,0,0,40.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,31249,70388,7472,1051,240,4.6,0,0,40.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,48739,84636,9169,1396,240,6.7,0,0,40.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,61217,91452,10251,1658,240,5.7,0,0,40.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,67184,94104,10703,1799,270,6.2,0,0,40.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,65704,93274,10587,1766,290,7.2,0,0,40.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,57722,90121,9893,1573,260,7.2,0,0,40.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,43089,81354,8668,1286,280,7.2,0,0,40.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,26927,23010,5013,1764,280,5.2,0,0,24.1,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,6222,0,2494,760,270,4.6,0,0,24.1,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,10378,3982,6092,1792,200,3.6,3,2,24.1,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,33362,31050,7445,2663,210,5.2,0,0,24.1,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,50859,44688,13847,5135,220,3.6,4,4,24.1,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,64823,51655,21477,7959,210,5.2,8,3,24.1,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,40089,11976,31092,10876,220,6.7,9,7,24.1,2130,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,52598,28199,32058,10995,260,6.2,10,9,24.1,1680,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,26645,3022,24616,8622,210,4.6,10,9,24.1,1680,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,21228,157,21221,6821,220,4.6,10,9,24.1,2130,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,13132,1657,12188,3709,200,3.1,10,9,24.1,2130,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,1847,0,1859,684,210,3.6,10,10,24.1,2130,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,1.0,1.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,14,0.0000,0,88,0.000,1.5,1.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,14,0.0000,0,88,0.000,1.3,1.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,13,0.0000,0,88,0.000,1.3,1.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,13,0.0000,0,88,0.000,0.8,1.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,13,0.0000,0,88,0.000,0.5,1.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,13,0.0000,0,88,0.000,0.0,1.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,4943,8,4957,1545,280,3.6,10,10,8.0,370,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,18180,282,18160,5285,290,4.6,10,10,4.8,120,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,19421,366,19282,6752,300,7.2,10,10,2.4,180,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,50975,31220,27501,9615,310,6.7,7,7,16.1,1220,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,60573,41796,20950,8055,300,7.2,6,6,24.1,760,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,66675,49416,16314,6431,300,9.8,3,3,40.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,61953,49998,11994,4696,300,10.8,2,2,40.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,48259,43978,8907,3351,300,10.8,2,2,40.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,18559,13595,10159,3279,290,9.3,3,3,40.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,4537,0,3439,996,280,6.2,4,4,40.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,12764,45919,4222,576,270,5.2,0,0,24.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,33335,76624,6276,1005,290,6.7,0,0,24.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,51173,89914,7724,1311,270,6.7,0,0,24.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,63638,95744,8700,1553,280,6.7,0,0,24.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,69565,97963,9168,1690,290,4.1,0,0,24.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,68766,98193,9048,1659,320,5.7,0,0,24.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,60217,94618,8467,1485,270,7.2,0,0,24.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,45699,86754,7347,1222,280,8.2,0,0,24.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,26426,69220,5564,877,320,7.7,0,0,24.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,7482,0,2306,725,310,6.7,0,0,24.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,13898,2255,3392,1119,290,4.1,0,0,24.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,32939,74161,7017,1053,320,5.2,0,0,24.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,50953,87882,8722,1391,320,5.7,0,0,24.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,63733,94441,9805,1656,310,5.7,0,0,24.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,69788,96859,10120,1790,300,5.7,0,0,24.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,68501,96241,10139,1769,290,4.1,0,0,24.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,60182,92963,9439,1574,340,2.1,0,0,24.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,45811,85446,8208,1289,320,4.6,0,0,24.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,26322,66844,6314,922,280,5.7,0,0,24.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,7218,0,2525,789,310,3.1,0,0,24.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,13245,47541,4069,584,280,3.6,0,0,24.1,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,34002,77562,6125,1000,290,4.1,0,0,19.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,52048,90678,7576,1305,300,4.1,0,0,19.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,64710,96604,8414,1535,270,4.1,0,0,19.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,70554,98615,8884,1674,290,3.1,0,0,32.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,69126,97869,8763,1643,250,3.1,0,0,32.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,61224,95233,8176,1468,170,2.1,0,0,32.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,46651,87665,7196,1218,240,4.1,0,0,32.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,27206,70557,5412,876,230,4.6,0,0,24.1,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,7349,31706,3277,400,270,3.1,0,0,24.1,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,13849,50482,3760,575,230,3.1,0,0,40.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,34630,79704,5527,951,270,3.1,0,0,24.1,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,52482,91120,7574,1309,270,3.1,1,0,24.1,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,65006,96595,8550,1555,240,3.1,1,0,24.1,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,70906,96443,11200,1892,250,3.1,3,0,24.1,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,69646,95737,11219,1868,200,6.2,3,0,24.1,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,56078,43274,16475,6321,200,3.6,4,1,24.1,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,43569,79762,7625,1260,190,3.6,4,1,24.1,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,24417,22210,8317,2839,210,4.6,10,3,24.1,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,6883,476,6380,1492,200,4.1,10,3,24.1,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10737,4305,7147,2068,140,2.6,10,4,12.9,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,25078,15648,16314,5095,160,4.6,9,4,12.9,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,40035,26857,20283,7125,170,6.7,9,4,19.3,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,68926,52962,22507,8394,180,5.7,10,5,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,56664,33713,26397,9844,210,6.2,10,6,40.2,1370,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,32686,1216,31851,11203,180,6.7,10,10,40.2,1370,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,39366,6911,35171,11036,190,6.7,10,9,40.2,1370,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,19146,4343,15771,5644,190,4.6,10,9,40.2,1370,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,17073,3185,15514,4483,160,6.2,10,9,24.1,1370,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,6119,33,5495,1436,160,4.6,9,7,24.1,1370,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,30,106,336,5,1,4,0,0,0,0,150,4.6,9,7,16.1,1370,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,4982,49,4881,1565,110,4.1,10,10,24.1,1370,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,14411,355,14248,4674,120,3.6,10,10,24.1,1370,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,44924,31986,21097,7371,150,4.6,8,5,12.9,7620,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,55603,34049,28069,9965,170,5.7,9,5,16.1,7620,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,61323,36490,29343,10705,200,6.2,8,5,24.1,7620,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,31561,8474,23555,8972,190,4.1,10,8,24.1,1070,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,34489,10439,26602,9367,180,5.7,9,8,24.1,7620,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,21424,3627,18919,6533,170,6.7,10,9,24.1,1370,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,15083,2855,13490,4165,150,3.6,10,8,24.1,3050,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,3068,0,2960,933,120,4.1,10,9,24.1,2740,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,687,0,692,305,100,9.3,10,10,3.2,430,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,1904,0,1919,901,110,5.2,10,10,4.8,240,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,13371,507,12942,4915,100,5.2,10,10,4.8,340,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,6378,0,6434,3170,120,5.2,10,10,4.8,240,9,999999999,20,0.0000,0,88,0.000,0.3,1.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,14786,0,14920,6863,120,6.7,10,10,4.0,120,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,18803,0,18972,8306,120,6.2,10,10,4.0,120,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,39266,1983,38304,11606,120,7.2,10,10,6.4,180,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,21748,0,21930,7683,130,7.2,10,10,6.4,180,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,18202,6858,14538,4393,90,4.6,5,4,6.4,77777,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,1263,0,1272,518,110,5.7,10,10,8.0,980,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.3,1.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,23,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,2.8,1.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,18,0.0000,0,88,0.000,2.8,1.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,16,0.0000,0,88,0.000,3.6,1.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,15,0.0000,0,88,0.000,2.8,1.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,14,0.0000,0,88,0.000,0.3,1.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,12,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,14001,6774,5021,1609,280,8.8,6,6,40.2,730,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,36680,34298,7615,2765,290,7.7,6,6,48.3,730,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,59737,50583,9963,3860,300,6.2,7,7,48.3,760,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,76665,60095,15511,6115,290,7.7,4,4,48.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,82494,59772,14430,5833,280,8.2,2,2,48.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,77218,57920,19984,7816,290,8.2,3,3,48.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,68993,56709,19816,7479,290,10.3,4,4,48.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,49976,45549,13829,5089,290,9.3,4,4,40.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,30926,31480,9537,3236,300,9.3,3,3,32.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,8631,0,4550,1327,300,8.8,2,2,32.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,6,200,235,1,3,0,0,0,0,0,290,5.2,1,1,32.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,3,0.0000,0,88,0.000,0.0,1.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,3,0.0000,0,88,0.000,0.0,1.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,3,0.0000,0,88,0.000,0.0,1.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,3,0.0000,0,88,0.000,0.0,1.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,3,0.0000,0,88,0.000,0.0,1.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,2,0.0000,0,88,0.000,0.0,1.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,2,0.0000,0,88,0.000,0.0,1.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,2,0.0000,0,88,0.000,0.0,1.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,2,0.0000,0,88,0.000,0.0,1.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,1,0.0000,0,88,0.000,0.0,1.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,1,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,290,5.2,0,0,24.1,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,13978,47604,4068,617,290,6.7,0,0,40.2,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,35340,78799,5362,948,300,6.2,0,0,48.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,54482,92558,7258,1299,300,5.2,0,0,48.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,67198,98336,7535,1465,310,7.2,0,0,48.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,73636,100469,8423,1667,310,8.2,0,0,48.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,72961,100384,8575,1670,290,7.7,0,0,48.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,64868,97338,8690,1561,330,7.7,0,0,48.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,50442,90362,8026,1320,290,7.2,0,0,48.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,30458,74644,5846,940,260,5.2,0,0,48.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,10418,0,3212,1014,280,5.2,0,0,48.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,24,223,230,4,11,2,0,0,0,0,290,4.1,0,0,40.2,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,3,0.0000,0,88,0.000,0.0,1.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,3,0.0000,0,88,0.000,0.0,1.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,3,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,260,4.1,2,2,32.2,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,13993,6742,4403,1447,240,4.1,7,2,32.2,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,29430,25951,12067,4158,280,4.1,9,3,32.2,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,44937,34727,18214,6632,270,3.6,9,6,32.2,7620,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,65992,49879,17877,6969,270,5.7,5,2,32.2,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,80352,56365,12171,4968,260,5.2,7,3,32.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,82137,59703,13982,5660,290,4.1,8,5,32.2,7620,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,72260,58330,15800,6168,280,10.3,9,5,32.2,7620,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,56232,49862,9336,3575,300,7.7,5,3,32.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,33298,32496,7195,2548,320,6.2,5,3,32.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,10212,0,3639,1135,310,6.7,3,2,32.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,3,0.0000,0,88,0.000,0.0,1.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,3,0.0000,0,88,0.000,0.0,1.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,3,0.0000,0,88,0.000,0.0,1.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,3,0.0000,0,88,0.000,0.0,1.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,3,0.0000,0,88,0.000,0.0,1.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,3,0.0000,0,88,0.000,0.0,1.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,3,0.0000,0,88,0.000,0.0,1.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,2,0.0000,0,88,0.000,0.0,1.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,2,0.0000,0,88,0.000,0.0,1.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,2,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,340,3.6,0,0,24.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,16318,7928,4087,1359,340,2.6,4,0,32.2,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,35878,80959,4000,776,70,2.6,3,0,24.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,53927,90734,6818,1257,120,4.6,4,0,24.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,67147,97314,7243,1438,120,5.2,2,0,32.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,73419,99349,7996,1626,180,2.1,4,0,32.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,69673,90895,12486,2032,160,4.1,7,6,32.2,7620,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,45573,15869,35423,11425,90,3.1,10,9,32.2,7620,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,32630,6943,29059,8724,140,4.1,10,10,32.2,7620,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,17851,2400,16724,4896,130,4.1,10,10,40.2,4270,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,3916,0,3943,1349,130,3.6,10,10,40.2,4270,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,6,270,287,1,0,1,0,0,0,0,100,4.6,10,10,32.2,2740,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,320,1.5,10,10,3.2,760,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,1082,0,1090,476,340,1.0,10,10,4.8,760,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,3613,0,3642,1668,80,2.1,10,10,4.8,610,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,9793,0,9876,4475,70,1.5,10,10,6.4,490,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,16502,0,16649,7386,80,1.0,10,10,6.4,430,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,21351,0,21545,9337,40,1.0,10,10,6.4,490,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,34239,450,34100,12020,180,1.5,10,10,6.4,850,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,52479,30338,29962,10395,160,2.6,9,9,9.7,850,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,42343,32541,17931,6406,160,2.6,10,10,9.7,850,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,24572,19747,11880,3933,170,3.1,9,7,11.3,700,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,4672,1,4685,1410,180,3.1,9,8,11.3,1520,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,6,293,311,1,0,1,0,0,0,0,170,3.1,10,10,9.7,1520,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,70,1.5,10,10,3.2,60,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,1965,0,1979,836,60,4.1,10,10,0.2,0,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,8521,0,8589,3566,80,4.1,10,10,0.4,0,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,6827,0,6885,3260,80,4.1,10,10,2.4,60,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,7828,0,7898,3872,80,3.1,10,10,2.4,90,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,6625,0,6686,3376,50,2.1,10,10,1.3,90,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,7135,0,7200,3610,60,3.1,10,10,0.8,60,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,4723,0,4765,2396,50,3.6,10,10,1.3,90,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,8414,0,8485,3853,70,3.1,10,10,1.3,90,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,2989,0,3012,1366,120,4.1,10,10,1.3,60,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,585,0,589,255,70,2.6,10,10,0.6,60,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.3,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,270,5.2,10,10,6.4,90,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,2156,0,2172,915,260,4.1,10,10,6.4,120,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,9890,50,9921,3580,290,6.2,9,7,11.3,340,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,33260,14599,22245,7874,310,7.2,10,8,24.1,6100,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,26298,2618,23984,9045,290,7.2,10,8,24.1,490,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,67065,41915,27481,10401,340,6.2,7,3,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,70762,47535,17279,6950,310,8.2,4,3,40.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,72905,53497,10993,4426,290,8.2,1,1,40.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,51784,86494,10555,1483,300,9.3,0,0,40.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,31695,73207,6581,1016,300,10.3,0,0,48.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,11605,0,3139,1020,290,10.8,0,0,48.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,330,2.1,3,0,40.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,15482,8332,4112,1384,350,2.1,2,0,40.2,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,36267,77841,5196,946,30,3.1,1,0,40.2,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,54424,90204,5792,1136,80,2.1,1,0,40.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,66740,94767,6659,1375,330,2.1,2,0,40.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,73782,51044,17702,7123,50,2.1,8,3,40.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,69296,40811,39116,13235,120,2.1,10,8,40.2,7620,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,33840,2314,32333,11044,60,1.5,10,9,40.2,7620,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,25905,2627,24347,8085,120,2.1,10,9,32.2,7620,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,14097,127,14042,4509,130,3.1,10,10,40.2,4270,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,5434,11,5450,1615,130,5.7,10,10,40.2,4270,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,70,7.2,10,10,32.2,610,9,999999999,15,0.0000,0,88,0.000,2.5,1.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,3016,58,2898,998,60,8.2,10,10,3.2,340,9,999999999,16,0.0000,0,88,0.000,2.5,1.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,10868,1172,9964,3607,80,7.7,10,10,3.2,270,9,999999999,17,0.0000,0,88,0.000,2.8,1.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,12778,62,12702,4928,60,10.3,10,10,3.2,120,9,999999999,18,0.0000,0,88,0.000,8.1,1.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,19061,280,18906,7435,70,9.3,10,10,3.2,150,9,999999999,19,0.0000,0,88,0.000,7.6,1.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,21040,632,20419,8147,70,5.7,10,10,3.2,1070,9,999999999,20,0.0000,0,88,0.000,6.6,1.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,19779,482,19388,7756,80,7.7,10,10,3.2,150,9,999999999,20,0.0000,0,88,0.000,5.3,1.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,22163,147,22270,8448,100,5.2,10,10,6.4,120,9,999999999,21,0.0000,0,88,0.000,9.1,1.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,17492,272,17336,6331,80,7.2,10,10,1.6,60,9,999999999,22,0.0000,0,88,0.000,6.9,1.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,9044,46,8955,3169,80,5.2,10,10,4.0,90,9,999999999,23,0.0000,0,88,0.000,2.3,1.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,195,0,197,88,110,5.7,10,10,4.0,90,9,999999999,24,0.0000,0,88,0.000,5.6,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,6.6,1.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,24,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,5.3,1.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,24,0.0000,0,88,0.000,6.6,1.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,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.8,1.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,21,0.0000,0,88,0.000,0.2,1.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,21,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,270,5.2,9,9,24.1,670,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,2258,0,2274,963,300,10.8,10,10,19.3,210,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,2711,0,2733,1288,260,9.3,10,10,19.3,340,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,31919,186,32107,10086,300,9.8,10,10,3.2,120,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,32164,0,32348,12015,300,11.3,10,10,19.3,240,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,32345,5092,27720,10538,290,9.3,9,8,40.2,580,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,61268,35589,29406,10979,290,8.2,6,6,40.2,820,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,53777,33625,25926,9530,300,7.2,6,6,40.2,820,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,36717,15911,27184,8749,300,10.3,7,7,40.2,820,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,20752,13255,12406,4157,300,11.3,5,5,40.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,12109,2636,4121,1313,280,10.3,3,3,40.2,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,3,0.0000,0,88,0.000,0.0,1.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,3,0.0000,0,88,0.000,0.0,1.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,3,0.0000,0,88,0.000,0.0,1.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,3,0.0000,0,88,0.000,0.0,1.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,3,0.0000,0,88,0.000,0.0,1.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,3,0.0000,0,88,0.000,0.0,1.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,3,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,320,5.7,2,2,32.2,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,16944,10260,3916,1334,320,5.2,6,1,40.2,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,39057,79745,7107,1142,360,3.1,5,1,40.2,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,59798,48304,9952,3917,70,5.2,6,1,40.2,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,67264,88153,13054,2011,120,3.1,8,1,40.2,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,86240,61246,18869,7588,80,3.1,9,2,40.2,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,75977,96689,11869,2108,70,3.6,9,2,40.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,80721,61738,13110,5264,50,5.7,8,1,40.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,53545,87566,10233,1513,40,2.6,10,2,40.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,33201,32765,10096,3526,100,6.2,9,2,40.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,10561,3245,4553,1435,50,4.6,7,3,40.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,772,0,0,0,60,7.7,2,0,32.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,17088,10513,3922,1340,60,9.3,3,1,40.2,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,37106,75913,6221,1072,60,8.2,7,1,40.2,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,66044,53908,10075,3971,60,9.3,9,1,40.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,68769,90460,12372,2001,110,5.7,9,1,40.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,84281,59642,22004,8718,100,5.2,10,3,40.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,79618,55439,30675,11393,70,3.6,10,4,40.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,66198,45322,32778,11334,110,4.6,10,5,40.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,50258,39435,24351,8243,70,4.6,10,7,40.2,4570,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,12861,905,12337,4175,50,5.2,10,9,40.2,790,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,3634,0,3660,1361,70,6.2,10,10,40.2,7620,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,1118,0,896,257,60,5.7,8,6,24.1,1220,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,16004,11972,8476,2588,60,6.2,5,1,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,40907,38176,9485,3482,70,5.2,3,0,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,61824,48658,10639,4197,80,5.7,5,1,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,76407,54025,15216,6138,70,4.6,8,2,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,80477,53477,19422,7831,80,4.6,10,4,32.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,72522,46924,24135,9444,70,6.2,10,5,32.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,59150,37430,27659,10120,50,3.6,9,6,32.2,7620,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,43233,30294,20108,7214,80,4.1,9,6,40.2,7620,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,22292,14845,12215,4169,60,3.1,9,6,40.2,7620,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,8862,2469,6112,1833,60,5.2,9,5,40.2,7620,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,1401,0,1405,361,60,4.6,10,7,24.1,3050,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,10651,1610,9700,2860,60,6.7,10,9,19.3,3050,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,19735,0,19895,6637,80,6.2,10,8,19.3,3660,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,37036,4502,34490,10715,70,5.7,9,8,19.3,3660,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,35145,720,34788,12158,90,6.2,10,10,24.1,610,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,47040,1614,46125,15022,90,7.7,10,10,32.2,3660,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,36128,0,36463,13683,90,5.7,10,10,32.2,3660,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,40613,0,40980,13385,90,6.7,10,9,32.2,3660,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,35776,3088,34242,10080,90,6.7,10,10,40.2,3660,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,24991,15253,15954,5108,90,6.2,10,9,40.2,3660,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,6004,83,5911,1805,80,6.2,10,10,40.2,3660,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,672,0,677,240,70,5.2,10,9,24.1,2740,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,6197,0,6243,2307,100,6.7,10,9,24.1,2740,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,20632,2417,19283,6238,100,8.8,10,9,32.2,2740,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,26980,81,27015,9353,120,6.7,10,9,32.2,2740,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,43004,2675,41273,13518,110,6.2,10,10,32.2,2740,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,45217,1250,44512,14840,120,7.2,10,10,32.2,3050,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,47666,3980,44851,14779,110,6.2,9,8,40.2,7620,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,39636,5665,35374,12093,120,4.1,10,8,40.2,3050,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,33255,1102,32798,9977,150,7.2,10,10,32.2,3050,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,18708,2077,17581,5476,160,8.2,10,9,24.1,3050,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,4342,10,4352,1418,120,5.2,10,10,24.1,3050,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,96,0,96,40,80,4.6,10,10,11.3,210,9,999999999,27,0.0000,0,88,0.000,0.3,1.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,2350,9,2351,825,110,4.6,10,10,9.7,210,9,999999999,27,0.0000,0,88,0.000,0.8,1.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,6448,43,6461,2452,110,5.2,10,10,8.0,150,9,999999999,26,0.0000,0,88,0.000,2.3,1.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,7852,51,7745,3110,90,6.2,10,10,3.2,120,9,999999999,26,0.0000,0,88,0.000,1.0,1.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,14785,60,14720,6012,110,4.1,10,10,8.0,120,9,999999999,26,0.0000,0,88,0.000,1.8,1.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,11496,56,11407,4766,110,6.2,10,10,3.2,120,9,999999999,25,0.0000,0,88,0.000,1.0,1.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,8582,0,8663,4365,110,4.1,10,10,6.4,120,9,999999999,25,0.0000,0,88,0.000,0.5,1.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,8010,0,8083,4006,110,4.1,10,10,2.4,120,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,9020,0,9099,4217,110,5.2,10,10,8.0,120,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,5349,36,5358,2000,120,5.2,10,10,6.4,340,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,1952,0,1953,669,90,4.6,10,10,8.0,790,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.5,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,1.5,1.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,25,0.0000,0,88,0.000,1.0,1.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,25,0.0000,0,88,0.000,2.0,1.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,25,0.0000,0,88,0.000,0.8,1.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,26,0.0000,0,88,0.000,0.5,1.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,26,0.0000,0,88,0.000,0.8,1.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,26,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.8,1.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,27,0.0000,0,88,0.000,0.5,1.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,27,0.0000,0,88,0.000,1.8,1.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,96,0,96,40,90,5.2,10,10,4.0,90,9,999999999,27,0.0000,0,88,0.000,7.4,1.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,5221,54,5116,1756,120,5.7,10,10,3.2,120,9,999999999,26,0.0000,0,88,0.000,6.6,1.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,14045,451,13757,4908,90,3.6,10,10,6.4,180,9,999999999,26,0.0000,0,88,0.000,4.1,1.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,19032,585,18535,7060,120,5.2,10,10,6.4,180,9,999999999,25,0.0000,0,88,0.000,2.8,1.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,21003,593,20390,8116,110,6.7,10,10,6.4,180,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,13228,57,13150,5486,120,5.2,10,10,9.7,180,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,11250,55,11159,4664,120,4.6,10,10,4.8,90,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,10421,54,10327,4249,130,3.6,10,10,11.3,180,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,12806,56,12733,4959,120,5.2,10,10,11.3,180,9,999999999,23,0.0000,0,88,0.000,0.3,1.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,4788,35,4795,1796,120,6.2,10,10,11.3,310,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,1843,0,1843,632,110,4.1,10,10,16.1,240,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.8,1.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,26,0.0000,0,88,0.000,2.0,1.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,27,0.0000,0,88,0.000,2.3,1.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,27,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,96,0,96,40,60,3.1,10,10,2.4,90,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,1539,8,1538,537,0,0.0,10,10,4.8,90,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,6350,44,6363,2425,300,1.5,10,10,2.0,60,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,11051,55,10963,4385,300,3.1,10,10,3.2,60,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,10254,54,10159,4210,300,3.6,10,10,11.3,210,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,26190,71,26211,10320,300,3.1,10,9,12.9,340,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,35263,3470,31887,12003,280,5.2,9,8,16.1,370,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,57442,26737,36055,12406,270,4.1,9,8,19.3,7620,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,28047,2517,26291,8964,290,4.1,10,8,19.3,7620,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,24518,9458,19141,5880,270,4.1,10,9,19.3,7620,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,11511,3777,8966,2458,300,4.1,8,6,24.1,7620,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,2650,0,923,285,290,5.2,0,0,19.3,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,21015,12742,4281,1493,300,7.7,0,0,24.1,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,41177,77732,7956,1248,300,8.2,0,0,32.2,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,59915,89480,8997,1576,300,7.2,0,0,32.2,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,73554,96036,9209,1823,300,8.8,0,0,32.2,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,80150,97775,10311,2117,300,9.3,1,1,40.2,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,79029,97275,10332,2089,300,10.8,0,0,48.3,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,64931,84090,11701,1989,310,7.7,1,1,40.2,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,56215,88069,9487,1543,320,9.3,0,0,40.2,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,37041,75862,8162,1171,320,8.8,0,0,40.2,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,15768,6047,4182,1389,310,6.2,0,0,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,300,3.6,0,0,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,2980,11206,695,135,300,2.6,3,0,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,19961,57479,4370,735,320,5.2,3,0,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,43518,84884,5757,1051,330,5.7,2,0,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,62575,96583,5313,1102,320,5.2,1,1,40.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,73879,92984,12425,2141,300,4.1,2,2,40.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,82135,101960,7339,1680,290,4.6,2,2,40.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,88379,56962,16690,6861,320,5.2,7,3,40.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,87973,67104,28595,10609,310,5.2,7,5,32.2,7620,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,54361,42305,18432,6877,300,5.2,8,6,32.2,7620,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,27438,21650,11151,3965,320,6.2,9,6,32.2,7620,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,7948,542,7532,2246,320,4.1,9,8,32.2,7620,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,320,4.1,10,9,40.2,7620,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,2569,0,2470,620,90,3.6,10,8,40.2,3050,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,9342,1217,8582,2765,90,4.6,10,9,40.2,1830,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,15348,133,15295,5411,100,5.2,10,9,40.2,1830,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,31871,1425,31038,10518,110,5.2,10,9,40.2,3050,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,61973,22118,46405,14760,110,4.1,9,9,40.2,3050,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,66407,27069,44376,15178,150,4.1,9,9,32.2,3050,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,39252,816,38811,13883,180,3.1,10,8,24.1,3050,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,14380,127,14310,5833,230,2.6,10,10,19.3,1220,9,999999999,22,0.0000,0,88,0.000,1.8,1.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,5731,95,5612,2238,290,2.1,10,10,6.4,880,9,999999999,23,0.0000,0,88,0.000,1.5,1.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,4364,72,4244,1598,120,6.2,10,10,6.4,850,9,999999999,24,0.0000,0,88,0.000,0.5,1.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,2876,4,2759,949,130,6.2,10,10,8.0,1160,9,999999999,25,0.0000,0,88,0.000,0.5,1.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,0,0,0,0,130,5.2,10,10,8.0,910,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.5,1.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,23,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,3021,0,1047,326,220,4.1,0,0,40.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,21320,59692,4827,784,240,6.2,0,0,48.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,43589,82026,7065,1199,240,7.7,0,0,48.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,61866,91006,8830,1586,240,8.2,0,0,48.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,72824,90852,11863,2138,220,8.2,3,3,48.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,72816,42340,28882,11215,220,10.3,8,6,48.3,1520,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,78119,47719,31984,12102,240,10.3,9,6,48.3,1830,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,51981,22885,33250,11905,240,9.3,8,4,48.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,54408,41260,22444,8098,240,12.9,5,4,56.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,37745,35528,13318,4625,250,8.2,4,4,56.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,12513,7260,6331,1999,270,9.3,3,3,56.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,270,6.7,1,1,56.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,3554,14106,530,112,270,4.6,0,0,48.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,23352,64429,5430,830,280,7.2,0,0,48.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,45452,86177,6325,1130,280,7.2,0,0,48.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,64183,95504,7280,1413,290,9.3,0,0,48.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,77526,100213,8077,1715,290,7.7,0,0,48.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,83977,101970,8389,1903,300,9.3,0,0,48.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,82358,100341,9078,1984,290,8.2,0,0,48.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,74557,98360,9216,1808,290,8.8,0,0,48.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,59744,92989,8327,1476,290,7.2,0,0,48.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,39431,80301,7261,1152,310,5.7,0,0,48.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,16243,51009,4992,691,280,5.2,0,0,48.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,300,5.2,0,0,48.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,3103,0,1381,426,270,2.6,7,1,48.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,22663,60229,6033,865,310,2.1,7,2,48.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,44166,78607,9497,1362,320,4.1,5,2,48.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,61219,88207,9226,1643,300,4.1,4,2,48.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,76731,97779,8885,1845,360,5.2,4,3,48.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,93163,57561,15170,6305,310,5.2,8,6,48.3,9140,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,76037,46072,26267,10366,320,4.1,9,8,48.3,9140,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,60844,31908,34893,12390,320,5.2,10,9,48.3,9140,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,44563,21965,29839,9953,300,4.1,10,10,48.3,9140,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,24042,10749,17636,5760,320,4.1,8,6,48.3,7620,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,8942,2259,7177,2230,300,3.1,6,4,48.3,7620,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,270,2.6,3,1,24.1,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,3553,0,1492,461,310,4.1,0,0,19.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,22611,17211,4888,1720,300,5.7,0,0,19.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,48219,39893,7585,2908,300,5.7,0,0,19.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,60134,84563,10326,1745,310,5.7,0,0,19.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,73424,90986,10631,2075,340,6.2,0,0,19.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,79371,91620,12352,2476,300,6.7,0,0,24.1,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,78202,90348,13162,2500,320,5.2,0,0,24.1,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,69031,85233,13498,2185,290,4.1,0,0,24.1,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,63147,47519,10657,4232,300,5.7,0,0,24.1,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,40506,35525,8145,3028,320,4.1,0,0,24.1,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,15406,9355,5720,1871,340,3.1,0,0,24.1,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,340,2.6,0,0,24.1,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,4102,0,1712,524,90,3.6,0,0,40.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,24490,19964,5121,1802,90,5.2,1,0,40.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,44003,77463,9052,1364,80,4.1,3,0,32.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,62499,86647,11537,1832,100,3.6,6,0,32.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,79486,52005,18803,7628,100,3.6,10,1,32.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,84728,52212,28234,11092,130,3.1,10,4,24.1,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,68135,34759,34792,13026,310,2.1,10,4,24.1,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,53366,16654,40818,13768,0,0.0,10,5,24.1,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,54271,38481,23999,8642,0,0.0,10,5,24.1,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,39486,35872,15153,5206,100,2.1,10,4,24.1,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,16050,9307,5092,1698,170,3.1,3,0,24.1,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,130,3.1,0,0,19.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,2853,0,2751,773,210,4.1,7,5,11.3,7620,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,13767,4117,11369,3552,220,6.2,9,7,11.3,7620,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,41673,33235,17315,6131,220,6.2,5,2,8.0,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,64654,45889,18161,7098,200,4.6,4,1,8.0,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,58127,17092,44988,15001,240,9.3,8,5,9.7,3660,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,71854,38356,30714,11925,260,8.2,7,2,11.3,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,65409,30249,36147,13450,260,8.8,9,6,11.3,2740,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,46020,5699,41925,14050,240,10.8,8,6,12.9,2740,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,60291,44140,27471,9565,240,7.2,8,5,12.9,7620,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,35382,29488,13678,4821,210,8.2,7,5,12.9,7620,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,8369,1011,7612,2377,230,6.2,8,7,11.3,2440,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,230,6.7,6,5,11.3,6100,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,2138,0,2142,649,150,3.6,10,10,9.7,180,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,9411,0,9483,3419,120,5.2,10,10,8.0,180,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,22237,611,22012,7354,100,5.2,10,10,8.0,210,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,16469,392,16175,6420,170,4.1,10,10,8.0,210,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,19970,608,19333,7874,180,3.1,10,10,8.0,240,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,28071,303,27865,11040,170,4.1,10,10,4.8,240,9,999999999,19,0.0000,0,88,0.000,0.5,1.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,39716,265,39739,14429,130,3.1,10,10,6.4,370,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,36471,264,36468,12970,160,4.1,10,10,8.0,490,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,19090,69,19058,7244,170,3.1,10,10,8.0,400,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,17073,0,17214,6192,130,3.6,10,10,8.0,310,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,9607,36,9645,2820,130,4.1,10,10,8.0,240,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,130,3.6,10,10,4.0,180,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,2568,0,2462,736,340,4.6,10,9,6.4,270,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,13372,2151,12206,3795,350,5.2,8,8,12.9,310,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,47224,38694,15729,5730,320,4.1,3,2,16.1,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,70447,47549,12147,4920,330,2.6,3,1,19.3,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,66000,32621,35559,13058,340,2.6,8,6,24.1,7620,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,66946,30622,35827,13502,350,4.1,8,7,32.2,3050,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,74639,41019,28288,11154,360,4.1,7,7,32.2,1070,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,37841,3799,34628,12558,320,6.2,10,10,32.2,1070,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,32187,89,32266,10697,300,7.2,9,9,32.2,1370,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,14077,123,14017,4953,360,5.7,10,10,24.1,910,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,13081,6018,9269,2768,290,5.2,5,5,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,310,3.1,4,4,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,5711,0,3194,907,90,3.6,4,2,19.3,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,25974,22446,7006,2442,100,5.7,3,1,19.3,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,45599,37109,10776,4108,80,6.7,7,3,24.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,42825,14829,31220,11023,90,4.6,10,8,24.1,3660,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,88792,56889,21851,8811,100,5.2,6,3,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,82564,46627,30233,11845,150,5.2,7,3,32.2,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,89597,52378,19073,7879,100,5.2,7,2,32.2,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,77179,49212,21385,8552,130,6.2,6,3,32.2,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,60419,43993,16057,6261,100,5.2,8,3,32.2,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,38985,33006,13390,4786,170,5.7,9,3,24.1,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,17143,10968,6073,2012,160,7.7,5,2,24.1,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,3322,0,1772,360,140,4.6,1,1,24.1,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,2578,0,2584,785,120,5.7,10,10,0.8,60,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,10148,392,9958,3317,150,4.6,10,10,0.8,90,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,26563,816,26268,8377,150,5.2,10,10,2.4,120,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,31706,250,31665,11205,130,5.2,10,10,3.2,240,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,40291,529,40096,14279,130,5.2,10,10,8.0,490,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,44989,10610,33093,12790,160,5.2,7,7,11.3,700,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,93674,54619,28362,11243,180,6.2,6,6,24.1,850,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,69896,40383,23533,9336,190,6.7,4,4,24.1,77777,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,54374,35258,22942,8507,200,6.7,5,5,24.1,77777,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,27850,10522,21577,6823,200,5.2,7,7,24.1,1220,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,15327,8601,8965,2749,220,5.2,7,7,24.1,1220,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,1999,0,1584,367,200,6.2,2,2,24.1,77777,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,2.3,1.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,26,0.0000,0,88,0.000,0.3,1.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,26,0.0000,0,88,0.000,0.5,1.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,27,0.0000,0,88,0.000,0.8,1.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,27,0.0000,0,88,0.000,0.5,1.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,28,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,4911,0,4715,1196,310,3.6,10,9,48.3,850,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,13465,2428,12066,3854,320,3.1,9,9,48.3,1370,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,26374,4607,23365,7834,310,6.2,9,9,48.3,1370,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,58464,33888,30198,10870,310,6.2,8,4,40.2,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,64278,35093,22328,9015,300,6.7,7,2,40.2,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,84247,47782,24775,10029,300,7.2,8,2,40.2,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,93027,55149,19690,8123,310,6.2,8,1,40.2,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,83237,54232,19664,7951,320,6.7,9,1,40.2,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,63701,48309,18531,7120,330,6.7,10,2,40.2,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,41562,37230,15893,5521,310,6.7,10,2,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,17819,14039,8717,2701,310,5.2,8,2,40.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,3165,0,2461,390,340,7.2,7,2,40.2,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,4924,0,3951,1105,340,4.1,1,0,24.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,24704,21939,9937,3336,350,5.2,0,0,24.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,50541,43094,14998,5569,20,2.1,0,0,32.2,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,73474,53271,18865,7435,100,5.2,0,0,32.2,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,90024,58029,21399,8673,100,2.6,0,0,32.2,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,97924,59847,22498,9193,180,1.5,0,0,32.2,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,96713,59619,22226,9071,100,1.5,0,0,32.2,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,85353,57065,20711,8334,70,4.1,0,0,32.2,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,66285,50772,17678,6847,30,2.1,0,0,32.2,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,41674,37406,13361,4809,90,3.1,0,0,40.2,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,16409,12046,8005,2549,140,3.1,0,0,40.2,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,2399,0,2094,431,120,4.1,0,0,32.2,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,7604,0,2308,730,90,7.2,0,0,12.9,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,28708,70037,5855,936,90,8.8,0,0,16.1,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,51490,87768,7996,1358,110,8.2,0,0,16.1,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,70270,95551,9271,1752,100,8.8,0,0,19.3,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,42729,8059,35199,13126,90,6.7,10,9,19.3,910,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,73620,37479,33249,12853,90,7.2,8,7,19.3,910,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,58942,21145,38141,14201,90,6.7,8,7,19.3,1010,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,62151,32899,30020,11432,90,5.7,9,8,19.3,1010,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,55875,37941,23202,8628,140,5.2,7,6,19.3,4270,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,41883,36473,12925,4694,110,5.2,5,2,19.3,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,14467,8219,8934,2785,120,5.2,10,6,19.3,7620,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,3159,0,2764,438,90,4.6,10,5,19.3,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,6072,0,3875,1128,100,2.6,8,1,11.3,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,27496,23647,7710,2717,80,1.5,5,1,8.0,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,56290,42681,8569,3351,220,5.2,1,0,11.3,77777,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,69043,89752,12407,2016,230,4.1,1,0,12.9,77777,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,77498,88969,12383,2467,240,5.7,2,1,12.9,77777,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,93299,50072,17551,7343,260,5.2,2,1,12.9,77777,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,80392,86630,14600,2916,260,5.7,2,1,16.1,77777,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,78066,45436,17285,7114,260,5.7,3,3,16.1,77777,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,64942,45051,15762,6227,270,6.2,5,3,24.1,77777,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,40980,33190,13325,4843,280,6.7,4,3,24.1,77777,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,16707,10442,9328,2895,250,6.2,7,3,24.1,77777,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,2982,0,2582,484,280,5.2,8,5,24.1,7620,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,3041,0,3048,950,240,2.6,10,10,11.3,1520,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,15449,854,14969,4609,280,3.6,10,10,8.0,1680,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,44505,24489,28627,9115,290,4.6,9,7,9.7,1680,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,63784,37554,26807,10121,270,4.6,8,6,11.3,1830,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,45110,9330,35571,13361,280,5.2,10,8,11.3,7620,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,41403,4377,36656,13978,310,4.1,10,10,11.3,1520,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,54218,15406,37647,14189,330,5.2,10,8,11.3,7620,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,45738,657,45492,15271,100,6.7,10,10,11.3,3050,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,58891,37331,25241,9303,330,6.2,7,6,12.9,3050,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,35344,23859,18375,6277,330,8.2,8,6,24.1,3050,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,16154,9531,8720,2772,310,7.2,6,3,24.1,77777,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,3466,0,2970,500,350,5.2,7,3,24.1,77777,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,6708,325,6414,1566,50,2.1,10,8,40.2,7620,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,23179,17263,13041,4215,80,2.1,7,4,40.2,7620,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,55515,47333,15723,5879,70,2.6,10,3,40.2,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,55580,33953,21264,8334,140,4.6,7,3,40.2,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,90685,56819,22262,9039,70,1.5,6,3,40.2,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,93216,54194,21667,8913,340,3.1,5,2,40.2,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,82373,88173,15157,3037,360,1.0,2,2,40.2,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,74161,86502,13724,2443,330,3.1,2,2,40.2,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,70868,53220,14297,5688,340,4.1,2,2,40.2,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,24603,12136,16087,5665,50,3.6,6,6,40.2,3660,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,15122,3896,13346,3627,340,1.5,8,7,40.2,3660,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,3889,0,2426,534,200,3.6,3,2,40.2,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,6,127,306,1,0,1,0,0,0,0,160,2.6,9,4,19.3,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,5248,0,4936,1396,160,3.1,10,8,16.1,7620,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,12402,598,11996,3994,160,5.2,10,9,16.1,3050,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,46063,28801,26962,8902,170,7.7,9,7,16.1,3050,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,54143,23522,34684,12259,200,5.2,8,7,16.1,3050,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,86119,50088,26958,10736,200,4.1,8,4,16.1,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,100966,56619,23517,9643,180,8.2,7,3,24.1,77777,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,80046,41631,22774,9355,210,8.8,7,3,24.1,77777,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,73230,41613,21364,8666,210,8.2,5,4,19.3,77777,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,62053,41905,21911,8342,220,11.8,7,3,11.3,77777,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,31839,17509,19983,6710,210,6.2,10,5,12.9,77777,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,18866,13271,10189,3132,210,6.7,10,6,12.9,7620,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,3419,0,2810,571,220,7.2,9,4,12.9,77777,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,6,150,384,1,0,1,0,0,0,0,270,6.2,10,10,11.3,370,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,3693,0,3702,1149,270,6.2,10,10,11.3,370,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,18012,1012,17556,5203,270,7.2,10,10,12.9,550,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,14737,60,14795,5642,330,8.8,10,10,8.0,370,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,48742,15699,36100,12632,330,6.7,9,9,32.2,850,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,84804,49803,30548,11909,310,8.2,9,4,32.2,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,93031,52126,34103,13230,320,8.2,10,4,40.2,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,85767,46843,35027,13449,330,7.7,10,4,40.2,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,83563,53036,21921,8844,330,8.2,10,4,40.2,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,69386,52295,21158,8091,340,7.7,10,2,40.2,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,33420,24022,15682,5587,300,7.2,8,2,40.2,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,20577,17480,8279,2690,330,6.2,8,2,32.2,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,3300,0,2350,566,320,5.7,7,2,24.1,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,18,173,267,3,7,1,0,0,0,0,330,1.5,0,0,24.1,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,9192,0,3108,993,320,1.5,0,0,40.2,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,30652,67994,7319,1065,70,2.1,0,0,40.2,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,53589,85296,9503,1520,160,3.6,0,0,24.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,71894,92618,10967,2002,180,2.6,0,0,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,84879,96592,11757,2532,230,2.6,0,0,24.1,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,90431,97747,12142,2907,290,4.1,0,0,24.1,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,89230,97642,12055,2798,270,3.6,0,0,32.2,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,75940,89614,11080,2264,280,3.1,1,1,32.2,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,62129,84770,10987,1830,240,3.6,1,1,32.2,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,44775,79726,8795,1339,260,2.1,0,0,32.2,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,22178,14590,5174,1802,250,5.7,1,1,32.2,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,4006,0,3405,629,260,3.1,5,5,24.1,77777,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,18,219,322,3,8,1,0,0,0,0,250,4.6,3,1,12.9,77777,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,7002,0,4458,1356,310,5.7,6,3,12.9,77777,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,25296,17548,13262,4402,310,4.1,7,6,12.9,1220,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,60044,46770,18290,6805,320,4.6,6,6,12.9,1220,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,59026,27988,34194,12308,330,4.1,8,8,12.9,1830,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,93677,50022,15633,6562,280,4.1,2,2,12.9,77777,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,88743,45817,30541,12152,350,5.2,7,7,11.3,1830,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,50973,11467,38616,14567,320,6.2,10,10,11.3,850,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,50687,15334,35651,13258,330,7.2,8,8,11.3,1520,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,52503,23716,34729,11761,320,5.2,8,8,11.3,1520,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,43341,34609,12862,4767,310,8.2,4,3,12.9,77777,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,16859,10585,9412,3005,320,6.2,7,5,24.1,1830,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,2286,0,1965,537,340,7.2,9,7,24.1,2440,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,7345,1121,5720,1637,350,5.2,7,3,32.2,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,30963,28284,13565,4487,20,6.2,8,3,40.2,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,53756,42276,21304,7684,30,4.6,8,3,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,67085,42802,24440,9498,20,3.6,6,2,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,91499,55494,27593,10985,200,2.1,6,2,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,99690,55770,18303,7632,140,2.1,4,1,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,98504,56741,20896,8634,0,0.0,4,1,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,83790,52272,24639,9840,0,0.0,6,2,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,67602,48938,22289,8506,200,2.6,7,2,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,45900,39897,12925,4782,10,1.5,5,1,40.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,20452,16900,7677,2560,50,3.1,4,1,40.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,3932,0,2773,661,60,3.1,2,0,40.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,18,265,320,3,0,3,0,0,0,0,80,4.1,10,10,24.1,2130,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,3911,0,3939,1392,80,5.2,10,10,24.1,2130,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,13215,60,13266,4441,70,4.6,10,10,24.1,2440,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,27575,86,27613,9292,70,5.2,10,10,19.3,2740,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,30573,421,30395,11342,90,6.2,10,10,19.3,2740,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,44019,754,43616,15615,110,6.2,10,10,19.3,2740,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,25377,223,25262,10286,100,5.2,10,10,19.3,2740,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,29197,312,28994,11575,100,5.2,10,10,19.3,2740,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,37332,90,37560,13784,90,6.2,10,10,19.3,1220,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,34414,92,34507,11773,80,5.2,10,10,19.3,1010,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,23763,164,23775,7655,110,5.7,10,10,16.1,820,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,12169,52,12220,3625,70,4.6,10,10,16.1,820,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,2511,0,2528,681,70,5.2,10,10,16.1,820,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,6653,201,6457,1825,310,3.6,10,8,16.1,7620,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,22928,4721,20643,5927,330,4.1,10,8,16.1,2740,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,38203,17802,25564,8871,340,6.2,10,8,16.1,3050,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,27630,561,27189,10427,330,6.2,10,10,16.1,3050,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,36362,865,35640,13554,310,9.3,10,10,24.1,2740,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,83515,38935,44819,16289,320,9.3,9,7,24.1,2740,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,70535,30472,38475,14535,300,5.7,6,4,24.1,7620,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,80826,49376,25242,10070,340,8.2,4,3,24.1,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,72358,51715,12673,5124,340,9.3,1,1,40.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,50226,44584,10983,4145,310,10.3,0,0,40.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,22521,19687,7063,2398,300,11.3,0,0,40.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,3978,0,2696,686,310,8.8,0,0,32.2,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,3,0.0000,0,88,0.000,0.0,1.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,3,0.0000,0,88,0.000,0.0,1.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,3,0.0000,0,88,0.000,0.0,1.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,3,0.0000,0,88,0.000,0.0,1.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,11523,42000,4224,558,330,7.7,0,0,40.2,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,36072,78269,6848,1082,340,8.8,0,0,40.2,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,59307,92759,8751,1509,320,6.7,0,0,40.2,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,78270,99449,10096,1991,340,6.2,0,0,40.2,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,91346,102913,10774,2531,310,6.2,0,0,40.2,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,97133,104087,11038,2903,340,7.7,0,0,40.2,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,95549,103899,10948,2775,310,7.2,0,0,40.2,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,86461,101895,10483,2275,310,7.7,0,0,40.2,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,70670,97402,9556,1757,340,8.2,0,0,40.2,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,49228,87724,8028,1319,360,7.2,0,0,40.2,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,24597,65469,5724,864,350,6.2,0,0,40.2,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,5661,0,2003,574,330,5.7,0,0,40.2,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,3,0.0000,0,88,0.000,0.0,1.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,3,0.0000,0,88,0.000,0.0,1.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,3,0.0000,0,88,0.000,0.0,1.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,3,0.0000,0,88,0.000,0.0,1.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,3,0.0000,0,88,0.000,0.0,1.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,3,0.0000,0,88,0.000,0.0,1.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,3,0.0000,0,88,0.000,0.0,1.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,3,0.0000,0,88,0.000,0.0,1.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,3,0.0000,0,88,0.000,0.0,1.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,3,0.0000,0,88,0.000,0.0,1.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,3,0.0000,0,88,0.000,0.0,1.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,3,0.0000,0,88,0.000,0.0,1.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,12930,1280,3384,1112,80,2.6,0,0,32.2,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,36136,76774,7430,1124,100,4.1,0,0,32.2,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,59607,91667,9440,1574,110,5.2,0,0,32.2,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,77976,97824,10888,2094,130,3.6,0,0,32.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,90774,101117,11539,2675,130,4.1,0,0,32.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,96503,102238,11794,3079,140,1.5,0,0,32.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,94786,101920,11708,2937,230,1.5,0,0,32.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,85762,99979,11262,2395,130,4.1,0,0,32.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,70068,95288,10233,1829,270,2.1,0,0,32.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,48576,85076,8599,1363,190,3.1,0,0,32.2,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,24261,62879,6175,888,130,3.6,0,0,32.2,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,5408,0,2213,626,150,4.1,0,0,32.2,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,9902,3409,7536,2098,90,1.5,7,3,24.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,33303,30105,12936,4451,120,2.1,6,3,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,62777,48416,11227,4440,120,2.6,3,1,9.7,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,71378,85675,13269,2304,180,3.6,2,1,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,84040,90014,14233,3042,130,3.6,2,1,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,87947,88891,15578,3682,170,4.1,3,1,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,99524,56766,23038,9457,110,2.6,7,2,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,87789,54595,26183,10431,170,4.1,8,2,16.1,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,61062,41133,20524,8004,160,5.2,10,5,16.1,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,31699,16956,20246,6971,200,4.6,10,7,16.1,7620,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,13422,3400,11581,3580,130,4.1,10,8,16.1,7620,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,1170,0,1171,368,130,4.1,10,10,16.1,7620,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,1.5,1.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,20,0.0000,0,88,0.000,1.3,1.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,21,0.0000,0,88,0.000,0.5,1.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,2511,0,2513,851,110,6.2,10,10,12.9,1370,9,999999999,21,0.0000,0,88,0.000,0.3,1.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,7605,0,7566,3231,110,7.7,10,10,11.3,240,9,999999999,20,0.0000,0,88,0.000,0.3,1.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,14955,376,14654,5722,90,8.2,10,10,12.9,1370,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,36118,687,35765,13000,90,8.8,10,10,19.3,370,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,39820,427,39608,14812,100,7.2,10,10,24.1,460,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,31056,374,30633,12226,100,7.7,10,10,12.9,460,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,29183,148,29223,11726,110,8.8,10,10,12.9,580,9,999999999,19,0.0000,0,88,0.000,0.3,1.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,27150,74,27176,10824,90,7.2,10,10,12.9,760,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,17393,0,17552,7873,90,9.8,10,10,9.7,490,9,999999999,19,0.0000,0,88,0.000,0.3,1.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,15034,62,14978,5526,100,11.8,10,10,11.3,240,9,999999999,19,0.0000,0,88,0.000,1.0,1.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,7257,34,7162,2467,100,12.9,10,10,9.7,240,9,999999999,18,0.0000,0,88,0.000,1.5,1.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,1735,0,1747,597,90,10.8,10,10,9.7,210,9,999999999,18,0.0000,0,88,0.000,0.3,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,1.3,1.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,18,0.0000,0,88,0.000,1.0,1.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,18,0.0000,0,88,0.000,2.5,1.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,18,0.0000,0,88,0.000,0.5,1.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,19,0.0000,0,88,0.000,2.8,1.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,19,0.0000,0,88,0.000,2.0,1.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,19,0.0000,0,88,0.000,0.3,1.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,19,0.0000,0,88,0.000,0.3,1.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,19,0.0000,0,88,0.000,0.8,1.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,19,0.0000,0,88,0.000,2.0,1.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,19,0.0000,0,88,0.000,3.8,1.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,6731,20,6753,2012,70,7.2,10,10,12.9,210,9,999999999,19,0.0000,0,88,0.000,0.3,1.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,10572,54,10606,3808,70,8.2,10,10,11.3,150,9,999999999,18,0.0000,0,88,0.000,0.5,1.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,18671,71,18753,7112,70,7.7,10,10,6.4,150,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,23248,74,23241,9253,80,7.7,10,10,4.0,120,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,26709,75,26606,10742,80,7.7,10,10,1.8,120,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,51199,194,51329,17924,100,5.2,10,10,1.8,120,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,41254,0,41658,16467,80,6.2,10,10,1.8,120,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,40739,91,40884,14816,70,5.2,10,10,1.8,120,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,32022,87,32207,11475,70,4.1,10,10,4.0,120,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,20486,0,20658,7623,70,4.6,10,10,4.0,120,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,13053,55,13109,3926,70,4.6,10,10,4.0,120,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,3095,0,3116,859,80,5.2,10,10,1.6,90,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,5683,0,5724,1972,260,3.1,10,10,3.2,90,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,14944,0,15065,5505,290,3.1,10,10,3.2,270,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,24344,0,24456,9483,300,4.6,10,10,3.2,180,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,75947,45404,19221,7838,250,2.6,1,1,12.9,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,73352,31419,40456,15085,300,5.2,5,5,16.1,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,56492,3021,53924,18498,270,6.7,10,10,19.3,760,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,73952,26312,47099,16931,300,4.1,8,8,19.3,760,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,60570,23384,36913,13827,260,6.7,8,8,24.1,910,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,67792,43662,29017,10686,300,5.7,6,6,24.1,910,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,45342,34508,20967,7234,300,5.2,3,3,24.1,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,19673,13639,10658,3430,290,4.6,3,3,24.1,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,3670,0,3140,835,270,4.1,2,2,24.1,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.3,1.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,15,0.0000,0,88,0.000,1.3,1.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,15,0.0000,0,88,0.000,1.3,1.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,15,0.0000,0,88,0.000,0.3,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,12664,4641,5328,1713,280,4.1,0,0,6.4,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,39966,35490,12644,4468,270,5.2,3,3,11.3,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,64159,47269,17228,6662,300,5.2,3,3,12.9,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,25460,4309,20267,8228,270,9.3,10,10,11.3,610,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,102888,56231,17551,7345,300,7.2,1,1,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,100935,53121,25820,10524,290,7.7,3,3,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,58313,15467,41619,15547,300,9.3,6,6,24.1,1070,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,59635,26871,29506,11610,300,7.2,4,4,24.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,59614,33154,32267,11547,300,6.2,5,5,24.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,42192,31831,17849,6412,300,8.2,4,4,48.3,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,20529,15709,9961,3266,300,7.7,4,4,48.3,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,3480,0,3055,833,300,6.2,5,5,48.3,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,14315,6396,4512,1491,320,4.1,0,0,40.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,42589,37803,7476,2789,330,5.2,0,0,40.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,60528,86435,11879,1772,340,6.7,0,0,40.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,79124,93385,13340,2425,330,7.2,0,0,40.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,91621,96797,14165,3239,320,5.2,0,0,40.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,96359,97352,14507,3816,20,4.6,0,0,40.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,95163,97727,14314,3573,260,3.1,0,0,40.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,86109,95680,13810,2799,340,5.2,0,0,40.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,70261,90743,12759,2059,20,3.1,0,0,40.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,56443,47093,8799,3408,320,4.1,0,0,40.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,27661,24057,5923,2089,320,2.6,0,0,40.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,5511,0,2763,787,300,3.1,0,0,40.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,80,2.1,0,0,24.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,16534,6948,3876,1306,80,3.1,0,0,24.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,39586,78005,7982,1211,90,6.2,0,0,24.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,62866,91518,10081,1691,90,2.6,0,0,32.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,81493,97736,11352,2270,130,2.1,0,0,32.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,93698,100525,12108,2992,190,4.1,0,0,32.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,99122,101600,12358,3488,150,4.1,0,0,32.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,96465,99737,13165,3439,190,5.2,1,0,32.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,87241,95562,15336,2945,190,6.2,3,0,32.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,66377,84990,12213,2042,180,5.2,3,1,32.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,54285,45341,9820,3790,150,7.2,4,1,40.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,26364,23541,7017,2444,210,4.6,5,1,40.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,5755,0,3376,911,160,3.6,5,1,40.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,90,2.1,7,3,16.1,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,12422,6287,7456,2278,180,3.6,9,3,16.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,34040,25770,17547,5838,180,4.1,9,3,16.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,57764,39615,23243,8628,230,5.7,9,4,16.1,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,79571,47891,29798,11506,210,6.2,9,4,16.1,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,78647,37633,35543,13739,240,8.8,10,4,16.1,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,84910,39088,38340,14697,240,10.3,10,5,24.1,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,71778,27912,40169,15187,270,8.2,10,6,24.1,7620,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,53275,17940,33888,13038,240,5.2,9,6,32.2,7620,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,33422,6217,27693,10406,230,5.2,10,9,32.2,3050,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,17692,473,17423,6345,220,5.2,10,10,32.2,3050,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,9414,212,9332,3141,270,5.2,10,10,24.1,2740,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,2606,0,2624,849,0,0.0,10,10,24.1,2440,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,200,3.1,10,10,1.2,90,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,6706,74,6615,2108,200,2.6,10,10,2.4,90,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,17432,190,17288,5829,200,4.1,10,10,1.2,90,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,31600,248,31564,10817,200,4.6,10,10,2.4,150,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,36530,246,36528,13503,190,6.7,10,10,2.4,270,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,41592,0,41901,16561,200,5.2,10,10,9.7,430,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,47720,86,47824,17347,220,5.2,10,10,11.3,520,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,49046,12087,32930,13031,230,7.2,9,9,16.1,760,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,38364,82,38493,14412,240,6.7,10,10,12.9,820,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,35868,3340,33010,11894,200,5.2,10,10,12.9,820,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,18239,65,18323,6643,220,4.6,10,10,19.3,1370,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,10007,41,10043,3351,230,4.6,10,10,19.3,1370,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,4153,0,4061,1044,210,5.7,9,9,19.3,3050,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,29,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,220,4.1,10,10,12.9,760,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,7330,105,7243,2282,250,5.7,10,10,12.9,490,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,20199,674,19857,6453,230,4.6,10,10,12.9,490,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,25339,864,24669,9133,230,5.2,10,10,12.9,550,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,47013,828,46668,15826,230,5.2,10,10,12.9,610,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,39505,241,39410,14964,230,4.6,10,10,16.1,2740,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,58126,14131,40802,15498,240,7.2,10,8,19.3,2740,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,54497,8721,44776,16509,200,7.7,9,8,19.3,2740,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,81503,42129,27592,11075,200,6.2,7,3,24.1,77777,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,78665,46949,11999,4952,240,7.2,5,2,24.1,77777,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,49799,35969,11115,4301,180,6.2,5,1,40.2,77777,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,28751,19726,5139,1852,200,6.2,1,0,40.2,77777,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,5848,0,2876,847,200,5.2,5,1,32.2,77777,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,190,3.6,10,8,11.3,760,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,15841,8606,8884,2665,200,3.6,10,4,12.9,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,16220,60,16179,5613,230,3.6,10,10,12.9,370,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,39433,8508,32949,11224,230,2.6,10,9,12.9,520,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,66819,31478,31745,12230,190,5.7,9,6,19.3,760,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,90135,43952,27848,11285,220,5.2,10,4,19.3,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,98678,46855,38138,14715,210,5.7,10,4,19.3,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,107609,55400,29906,12010,180,5.7,10,3,24.1,77777,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,85651,46189,25660,10396,210,6.7,10,3,24.1,77777,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,67595,41370,23388,9134,230,7.2,10,4,24.1,77777,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,52669,40500,16667,6171,200,6.7,9,3,24.1,77777,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,24993,19279,10282,3434,220,5.2,8,3,24.1,77777,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,4657,0,4675,1152,210,5.2,8,6,24.1,7620,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,190,7.2,10,10,11.3,210,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,13037,4597,9709,2852,190,8.2,8,7,12.9,310,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,19754,3819,17026,5865,190,7.2,9,9,12.9,370,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,24721,425,24390,9117,200,10.3,10,10,12.9,460,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,41497,679,41203,14794,200,13.9,10,10,12.9,700,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,22101,504,21347,8879,310,11.3,10,10,4.8,210,9,999999999,20,0.0000,0,88,0.000,5.1,1.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,24317,398,23825,9813,290,9.3,10,10,3.2,460,9,999999999,21,0.0000,0,88,0.000,4.6,1.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,50856,367,50873,17981,260,4.1,10,10,24.1,1070,9,999999999,22,0.0000,0,88,0.000,0.8,1.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,39359,169,39379,14696,260,3.6,10,10,32.2,1520,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,70175,43083,26849,10247,260,6.7,4,4,40.2,77777,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,47461,35174,18841,6824,280,7.2,4,3,40.2,77777,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,21466,14930,12619,4002,270,7.2,5,4,40.2,77777,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,5195,0,4018,1081,250,5.2,4,3,40.2,77777,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.3,1.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,15,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,0,0.0,10,10,32.2,1520,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,4671,55,4680,1598,0,0.0,10,10,40.2,3050,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,16259,265,16099,5622,60,4.1,10,10,40.2,3050,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,17253,340,16965,6687,100,4.1,10,10,40.2,1220,9,999999999,19,0.0000,0,88,0.000,0.3,1.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,23701,505,23093,9352,80,5.2,10,10,40.2,3050,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,43852,268,43791,16144,100,4.6,10,10,40.2,3050,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,67974,14334,53569,18670,100,4.6,10,9,40.2,3050,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,38978,333,38749,14829,90,3.1,10,10,40.2,910,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,45554,2452,43435,15727,160,2.1,10,10,40.2,910,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,26703,0,26845,11086,90,4.1,10,10,40.2,910,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,24819,159,24838,8369,90,4.1,10,10,40.2,910,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,10085,46,10120,3405,100,3.6,10,10,40.2,820,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,3293,0,3316,1044,90,4.1,10,10,32.2,610,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,29,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,1339,0,1348,342,190,2.6,10,10,3.2,90,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,3726,0,3655,1504,150,2.1,10,10,0.0,0,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,11529,52,11570,4297,150,3.1,10,10,0.8,30,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,29848,78,30022,10705,180,4.6,10,10,8.0,240,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,58195,13560,45955,15919,200,6.7,8,8,12.9,760,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,69901,16409,53354,18420,220,6.2,10,9,12.9,610,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,33013,348,32613,12999,210,6.2,10,10,12.9,640,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,63168,14352,46608,17058,210,6.2,10,9,12.9,700,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,38901,1020,37991,14395,200,6.2,10,10,16.1,700,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,26803,632,26251,10125,180,7.2,10,10,16.1,820,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,22942,3949,19514,7074,180,6.2,9,9,24.1,9140,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,10812,747,10286,3475,180,5.2,9,9,24.1,1070,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,4289,0,4305,1160,180,4.6,9,9,24.1,7620,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,29,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.0,1.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,33,0.0000,0,88,0.000,0.0,1.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,34,0.0000,0,88,0.000,0.0,1.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,34,0.0000,0,88,0.000,1.3,1.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,1091,0,1093,302,220,1.5,10,10,24.1,1070,9,999999999,35,0.0000,0,88,0.000,0.5,1.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,4783,17,4793,1652,220,2.6,10,10,6.4,1070,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,12739,215,12553,4632,320,1.5,10,10,9.7,90,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,15977,121,15802,6325,310,1.5,10,10,6.4,150,9,999999999,34,0.0000,0,88,0.000,0.3,1.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,26238,349,25901,10405,0,0.0,10,10,3.2,120,9,999999999,34,0.0000,0,88,0.000,0.3,1.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,28022,206,27814,11284,10,1.5,10,10,6.4,180,9,999999999,33,0.0000,0,88,0.000,0.3,1.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,49944,88,50301,18043,10,2.1,10,10,6.4,180,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,53884,184,54051,18738,10,7.2,10,10,8.0,180,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,38899,0,39176,15630,10,7.2,10,10,8.0,180,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,38348,88,38481,13334,30,3.6,10,10,24.1,820,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,25989,78,26021,8699,60,5.2,10,10,24.1,520,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,22228,14831,11662,3838,80,4.1,5,5,24.1,77777,9,999999999,31,0.0000,0,88,0.000,0.0,1.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,5137,0,4619,1221,90,4.1,9,8,24.1,7620,9,999999999,31,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,29,0.0000,0,88,0.000,0.0,1.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,29,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,2086,0,1884,423,170,3.1,9,6,2.4,210,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,11898,1181,11190,3255,160,6.7,10,9,2.4,150,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,28327,10630,20799,6915,200,7.7,10,9,12.9,400,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,35615,7569,28769,10479,190,7.2,10,10,16.1,700,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,43025,673,42748,15332,190,8.2,10,10,19.3,760,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,39494,1433,37870,14610,200,7.7,10,10,24.1,850,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,47866,329,47741,17474,200,8.2,10,10,24.1,1070,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,77650,29050,39195,15068,190,9.3,8,8,24.1,1520,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,33470,653,32849,12896,190,12.9,10,10,24.1,820,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,33694,2297,31604,11723,180,9.3,10,10,24.1,1520,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,21811,890,21238,7579,190,12.9,10,10,16.1,1520,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,11416,271,11348,3776,180,10.3,10,10,11.3,980,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,3120,0,3016,920,190,12.9,10,10,9.7,980,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,3.3,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,2195,0,2203,472,260,4.6,9,8,40.2,1520,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,10174,543,9879,3024,250,6.2,8,7,40.2,2740,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,39504,32094,12115,4495,260,7.7,6,2,40.2,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,36036,11174,26271,9762,260,11.8,9,9,40.2,880,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,55369,12410,44406,15664,270,11.8,9,9,32.2,910,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,106995,58790,30360,12120,280,10.3,7,7,40.2,1070,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,97796,48520,36189,14083,290,9.3,6,6,40.2,1070,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,109699,59300,28027,11310,290,11.3,5,5,40.2,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,98019,56610,20208,8366,300,8.2,3,3,40.2,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,70073,45631,21716,8603,300,8.8,4,4,40.2,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,40234,23763,23740,8191,280,7.7,5,5,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,25556,21068,13835,4347,300,7.7,6,6,40.2,1220,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,5775,0,3563,1047,300,6.2,3,3,40.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,3180,0,2127,498,260,4.6,0,0,40.2,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,20337,16140,6255,2116,290,4.6,0,0,48.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,48757,42452,9947,3762,300,5.7,0,0,48.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,75983,54413,13136,5313,270,4.6,0,0,48.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,83821,90650,16631,2954,300,7.2,0,0,48.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,95424,93622,17471,4260,290,7.7,0,0,48.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,100299,94692,17780,5189,270,9.3,0,0,48.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,98382,94660,17626,4693,280,8.8,0,0,48.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,88802,92154,16977,3382,290,8.2,0,0,48.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,85603,56857,13967,5738,290,9.3,0,0,48.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,58715,47788,11126,4326,290,8.8,0,0,48.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,29894,27249,7522,2665,310,8.2,0,0,48.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,6340,0,3568,1057,320,6.2,0,0,48.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,3896,0,1845,485,190,2.1,0,0,40.2,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,21234,15333,4964,1724,210,2.1,1,1,40.2,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,32021,20200,17511,6157,200,2.1,6,6,40.2,3660,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,63843,85784,10108,1821,200,5.2,1,1,40.2,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,83869,94358,11745,2575,200,5.2,0,0,40.2,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,97277,98969,12362,3522,270,6.2,0,0,40.2,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,101812,99631,12613,4196,270,6.2,0,0,40.2,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,99387,99030,12558,3843,270,6.2,0,0,40.2,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,90379,97565,12031,2882,260,11.3,0,0,56.3,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,74708,93489,11074,2075,260,7.7,0,0,48.3,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,56671,42819,9081,3573,280,7.2,1,1,40.2,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,30546,24504,5421,1969,260,7.7,1,1,40.2,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,7284,0,2737,859,270,4.1,0,0,40.2,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,4022,0,1853,504,240,4.1,0,0,40.2,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,23453,15030,4412,1552,270,5.2,0,0,40.2,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,46131,81477,8491,1341,300,5.2,0,0,40.2,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,69208,92887,10392,1856,300,4.1,0,0,40.2,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,86413,97195,11362,2544,30,4.1,0,0,40.2,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,98590,100236,11982,3486,360,5.2,0,0,40.2,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,103159,100948,12232,4157,320,4.1,0,0,40.2,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,100300,100087,12033,3771,320,5.2,0,0,40.2,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,96284,53254,19638,8162,360,7.2,2,2,40.2,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,74779,93753,10789,2057,320,5.2,0,0,40.2,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,53806,85874,9230,1502,320,5.2,0,0,40.2,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,29770,68526,6892,1021,360,5.2,0,0,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,7651,0,2746,864,350,5.2,0,0,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,4113,0,2171,573,350,4.6,0,0,48.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,23607,18495,5204,1813,50,5.2,0,0,48.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,52698,44216,8070,3105,70,5.2,0,0,48.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,67832,89068,11978,1985,90,4.1,0,0,48.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,85816,94841,13139,2793,60,5.2,0,0,48.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,97592,97784,13831,3904,90,3.1,0,0,48.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,102310,98556,14065,4687,320,3.1,0,0,48.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,100329,98542,13896,4233,0,0.0,0,0,48.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,90784,96392,13540,3142,140,2.1,0,0,48.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,74586,91932,12375,2205,170,1.5,0,0,48.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,53311,82957,10621,1582,130,1.5,0,0,48.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,32500,28165,6106,2210,160,2.1,0,0,48.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,7478,0,3066,954,180,2.6,0,0,48.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,3204,0,2679,665,220,2.1,0,0,40.2,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,20026,15430,7989,2664,0,0.0,0,0,40.2,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,47024,39034,12945,4837,220,2.6,0,0,40.2,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,73883,50824,17101,6851,230,4.6,0,0,40.2,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,96141,55915,20098,8309,240,2.1,0,0,40.2,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,111173,57856,21818,9017,180,2.6,0,0,40.2,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,117368,58540,22540,9290,200,2.6,0,0,40.2,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,113878,57835,22113,9130,360,1.5,0,0,40.2,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,101565,56353,20676,8573,230,1.5,0,0,40.2,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,81146,52159,18162,7381,240,1.5,0,0,40.2,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,55299,41833,14321,5502,130,2.1,0,0,40.2,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,27904,23155,9562,3329,180,3.1,0,0,40.2,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,5741,0,4097,1209,180,3.6,0,0,40.2,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,4336,0,2392,646,0,0.0,0,0,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,23652,17369,5750,2008,290,2.6,0,0,32.2,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,52006,40810,8852,3417,270,3.6,0,0,32.2,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,68507,87656,13055,2065,310,2.1,0,0,32.2,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,86104,93063,14300,2965,300,2.1,0,0,32.2,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,97895,95956,14967,4211,360,1.0,0,0,32.2,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,102148,96648,15184,5092,40,3.6,0,0,32.2,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,99327,95818,15012,4565,200,1.5,0,0,32.2,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,89857,93675,14564,3316,170,2.1,0,0,32.2,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,69545,83733,12517,2235,220,1.5,1,1,32.2,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,56535,41317,10220,4027,260,2.1,1,1,32.2,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,31529,25728,6653,2408,170,3.1,0,0,32.2,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,7220,0,3279,1022,180,3.6,0,0,32.2,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,12,102,344,2,1,1,0,0,0,0,200,3.1,0,0,32.2,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,3535,0,2902,745,320,1.5,5,5,24.1,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,17578,10496,10498,3342,280,2.6,5,5,24.1,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,38383,25991,18077,6456,300,2.6,3,3,19.3,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,69670,44466,20166,7992,300,2.6,4,3,19.3,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,92453,50058,20966,8676,280,4.1,3,2,19.3,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,92145,88163,16328,4494,260,3.1,1,1,19.3,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,101142,93883,17007,5577,30,2.6,0,0,19.3,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,100956,48399,26320,10735,350,3.6,3,3,24.1,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,96420,51656,26071,10607,180,3.1,3,3,24.1,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,64979,34458,32447,12068,120,2.6,6,6,32.2,1370,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,53960,40625,17167,6464,200,1.5,5,5,32.2,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,22154,14764,11572,3918,180,2.6,3,2,32.2,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,7023,0,3800,1158,160,2.6,2,0,24.1,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,12,125,345,2,1,1,0,0,0,0,170,3.1,0,0,24.1,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,3737,0,2314,662,0,0.0,2,2,19.3,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,22282,16343,7793,2655,180,2.1,4,4,16.1,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,41487,29177,17334,6273,180,3.1,6,5,16.1,1830,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,64999,38818,25694,9831,240,3.1,4,4,16.1,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,88090,95817,12754,2849,210,2.1,0,0,16.1,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,98779,97448,13332,4005,140,1.5,0,0,19.3,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,103069,98284,13438,4802,160,2.6,0,0,19.3,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,71728,27402,34096,13448,120,4.1,6,6,24.1,1220,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,80638,39858,30886,12269,180,2.6,6,6,24.1,1680,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,75053,46502,25696,10048,130,2.1,6,6,24.1,3660,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,40940,19680,27106,9172,150,4.1,5,5,24.1,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,31136,24295,6217,2268,180,3.6,1,1,24.1,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,8084,0,3080,978,170,3.1,0,0,24.1,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,18,125,340,3,4,1,0,0,0,0,180,2.6,0,0,24.1,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,5306,0,2327,676,280,2.1,0,0,16.1,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,26684,18211,4893,1745,240,3.1,0,0,16.1,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,48682,82040,9030,1417,290,3.6,0,0,19.3,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,70958,91943,10747,1955,300,3.1,0,0,19.3,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,88444,96748,11828,2749,340,2.6,0,0,19.3,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,99978,99320,12435,3861,340,2.6,0,0,19.3,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,103889,99595,12552,4624,270,1.5,0,0,19.3,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,109874,54177,25115,10280,10,2.1,3,3,19.3,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,101165,52695,17346,7275,200,1.5,2,2,24.1,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,82107,49739,14208,5882,180,5.2,2,2,24.1,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,59963,43846,9448,3743,100,1.5,1,1,24.1,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,30769,67961,7186,1060,190,3.6,0,0,24.1,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,8469,0,2981,954,180,3.1,0,0,24.1,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,24,147,344,4,7,1,0,0,0,0,190,3.6,0,0,24.1,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,3756,0,3446,893,240,1.5,2,0,24.1,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,20515,15192,9727,3212,270,2.6,0,0,24.1,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,46915,37023,15818,5840,290,3.6,0,0,24.1,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,72951,48058,20701,8203,290,3.6,0,0,24.1,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,94400,53103,24322,9925,310,3.1,0,0,24.1,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,109330,55599,26435,10762,320,1.5,0,0,24.1,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,115174,56359,27287,11083,260,2.1,0,0,24.1,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,111640,55981,26738,10875,60,4.1,0,0,24.1,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,99202,53618,24895,10179,120,3.1,0,0,24.1,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,75835,46280,21529,8651,170,4.1,1,1,24.1,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,53261,39624,17204,6504,150,2.6,0,0,24.1,77777,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,27025,21421,11397,3900,170,4.1,0,0,24.1,77777,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,5345,0,4131,1258,180,2.6,1,1,24.1,77777,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,6,170,347,1,0,1,0,0,0,0,180,2.6,0,0,24.1,77777,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,3899,0,3260,887,250,1.5,0,0,11.3,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,22149,16877,9002,3035,310,2.6,0,0,11.3,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,48727,37785,14193,5341,330,3.6,0,0,16.1,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,74939,47874,18365,7394,290,2.6,0,0,16.1,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,97067,53291,21386,8843,320,2.6,0,0,16.1,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,111637,55593,23351,9616,340,4.6,0,0,16.1,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,117096,55901,23958,9844,320,1.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,106903,52506,30577,12256,270,2.6,3,3,16.1,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,85287,42341,33889,13263,180,2.1,4,4,16.1,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,65444,32618,34931,12815,240,2.1,6,6,16.1,1370,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,39212,20924,22338,8053,300,2.6,6,6,16.1,1370,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,18712,4490,16145,5044,140,3.6,8,8,16.1,2440,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,4134,0,4033,1242,180,2.6,8,8,16.1,3050,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,12,192,367,2,0,2,0,0,0,0,0,0.0,4,4,16.1,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,4938,0,2971,850,290,4.1,3,1,16.1,77777,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,25837,19999,6563,2314,300,3.6,1,0,14.5,77777,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,53927,40202,9457,3685,340,4.1,0,0,14.5,77777,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,69687,42939,19144,7691,330,4.1,3,3,12.9,77777,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,85009,89316,14367,3153,350,2.6,1,1,12.9,77777,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,91480,87017,15149,4604,10,2.1,1,1,12.9,77777,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,102121,94266,15855,5759,280,2.6,0,0,12.9,77777,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,99802,94244,15694,5066,60,1.5,0,0,16.1,77777,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,90065,90433,16894,3731,40,3.1,2,0,16.1,77777,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,83934,51261,16167,6664,250,2.1,2,2,16.1,77777,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,58200,41425,9686,3846,270,1.5,1,1,16.1,77777,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,31575,26003,7560,2739,0,0.0,1,1,16.1,77777,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,5884,0,4453,1349,240,2.1,6,6,16.1,9140,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,3580,0,3483,964,250,2.1,10,6,11.3,9140,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,14579,1704,13652,4179,360,1.5,10,9,9.7,9140,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,28395,6531,23824,8102,0,0.0,10,8,6.4,9140,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,51854,18704,35920,12732,320,2.1,10,8,8.0,9140,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,61633,18947,41550,15405,290,3.1,9,7,12.9,9140,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,96305,44097,38122,14745,360,3.6,8,4,12.9,77777,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,104036,47526,38961,15064,270,2.6,6,2,12.9,77777,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,45811,859,45060,16779,120,1.5,10,10,12.9,9140,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,39601,246,39503,14984,200,4.1,10,10,16.1,7620,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,30316,540,29905,11451,220,3.6,10,10,16.1,7620,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,24913,77,25046,8810,270,3.6,10,10,16.1,7620,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,14765,115,14719,4782,240,2.6,10,10,16.1,7620,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,3887,0,3915,1358,90,4.1,10,10,16.1,1370,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,6,215,406,1,0,1,0,0,0,0,70,7.2,10,10,16.1,1370,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,2700,0,2719,903,100,2.6,10,10,6.4,3050,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,12998,51,13053,4090,110,2.1,10,10,6.4,3660,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,21348,0,21534,8117,130,2.6,10,10,8.0,2130,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,64291,34164,31876,11769,200,2.1,9,4,11.3,77777,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,90118,46021,27732,11203,150,2.1,4,2,12.9,77777,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,103774,47389,45045,16771,140,3.6,7,7,12.9,1070,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,88641,31608,49021,17961,140,4.6,7,7,16.1,1220,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,83617,29832,47244,17398,170,5.7,8,8,16.1,1220,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,100581,52607,36908,14237,160,6.2,6,6,19.3,1370,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,29399,3905,25058,9916,160,5.2,8,8,19.3,1370,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,47015,28883,24027,8564,150,5.2,6,6,16.1,1370,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,18615,6522,14553,4753,180,4.1,5,5,16.1,77777,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,6527,0,4771,1439,150,3.6,3,3,16.1,77777,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,12,237,349,2,0,2,0,0,0,0,40,4.1,0,0,16.1,77777,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,3605,0,3506,1003,90,2.1,10,8,6.4,7620,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,13242,361,13077,4121,70,3.1,10,10,6.4,7620,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,16622,63,16693,6215,140,2.6,10,10,8.0,3660,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,67823,39460,26152,10115,140,3.1,7,3,11.3,77777,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,94584,49365,24098,9893,130,3.1,5,2,12.9,77777,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,95646,42149,42305,16004,130,3.1,8,7,12.9,1830,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,64616,12178,49975,18197,110,6.7,10,9,12.9,1830,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,79130,19057,59050,20059,130,6.2,10,8,12.9,1070,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,77570,32038,40495,15281,130,7.7,10,8,14.5,1010,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,48300,9487,39981,14141,130,6.7,10,8,14.5,3050,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,25292,2217,23598,8473,140,7.7,10,9,14.5,3050,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,12173,2325,10255,3619,130,6.7,10,9,14.5,3050,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,5077,0,4981,1495,130,4.6,10,9,14.5,3050,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,2693,0,2699,831,120,4.6,10,10,6.4,370,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,14329,1585,13284,4195,120,5.2,10,10,9.7,270,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,25804,607,25386,8570,130,6.2,10,10,9.7,270,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,34010,160,33990,12391,140,6.2,10,10,11.3,370,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,41471,325,41283,15422,130,7.2,10,10,12.9,430,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,43068,706,42416,16080,130,6.7,10,10,16.1,580,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,45660,0,46135,18321,130,6.7,10,10,16.1,1220,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,45821,404,45551,16995,160,5.2,10,10,19.3,3050,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,46059,84,46149,16800,120,6.2,10,10,19.3,3050,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,23025,66,23022,9263,120,5.7,10,10,32.2,910,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,24433,0,24652,9381,120,5.7,10,10,24.1,3050,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,16165,57,16131,5153,110,4.1,10,10,24.1,3050,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,5859,1,5879,1692,110,5.2,10,10,24.1,8530,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,18,259,401,3,0,3,0,0,0,0,120,3.6,10,10,24.1,8530,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,3377,0,3401,1099,120,5.2,10,10,19.3,1520,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,11865,0,11959,4225,160,5.2,10,10,16.1,270,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,27606,79,27653,9081,140,4.1,10,10,16.1,760,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,39087,87,39342,13671,140,4.1,10,10,16.1,370,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,44328,85,44516,16261,140,3.6,10,10,16.1,490,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,55121,90,55418,19309,130,3.6,10,10,16.1,580,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,50483,84,50730,18445,160,3.1,10,10,19.3,910,9,999999999,28,0.0000,0,88,0.000,0.3,1.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,51684,6050,43813,16528,160,3.1,9,9,24.1,910,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,42757,724,42114,15777,180,3.1,10,10,24.1,1220,9,999999999,28,0.0000,0,88,0.000,0.3,1.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,36086,949,35279,13062,180,3.6,10,10,24.1,1130,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,23627,0,23839,9208,150,2.1,10,10,32.2,1160,9,999999999,28,0.0000,0,88,0.000,0.8,1.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,15698,507,15436,5018,0,0.0,10,10,24.1,1160,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,4977,0,4881,1493,0,0.0,10,10,24.1,1220,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,29,0.0000,0,88,0.000,1.3,1.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,30,0.0000,0,88,0.000,0.3,1.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,31,0.0000,0,88,0.000,0.4,1.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,32,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.5,1.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,33,0.0000,0,88,0.000,0.0,1.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,34,0.0000,0,88,0.000,0.5,1.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,35,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,3181,0,3203,1074,160,3.6,10,10,6.4,180,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,12528,48,12580,4091,160,3.1,10,10,6.4,180,9,999999999,35,0.0000,0,88,0.000,0.3,1.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,13741,0,13761,5964,160,3.6,10,10,8.0,180,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,36912,83,37148,13229,170,3.6,10,10,8.0,180,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,48213,5796,41716,15578,190,3.6,10,9,11.3,910,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,66074,17752,42543,16137,190,3.6,8,8,16.1,910,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,95506,34400,52232,18829,190,4.6,8,8,24.1,1220,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,89541,31263,51936,18629,220,5.2,7,7,32.2,7620,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,63250,18196,42060,15760,230,5.7,8,6,48.3,1220,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,62416,27361,34902,12971,190,5.7,8,6,48.3,1220,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,46752,25272,26606,9306,180,3.6,7,4,48.3,7620,9,999999999,31,0.0000,0,88,0.000,0.0,1.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,25035,13537,16177,5194,180,5.2,7,4,48.3,7620,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,4069,0,4099,1454,140,4.1,10,9,48.3,7620,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,29,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,5318,0,4464,1251,290,5.2,4,4,11.3,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,19151,5301,16291,4856,310,5.2,8,8,16.1,180,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,32780,9353,26233,8848,280,5.2,9,9,16.1,340,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,49901,9917,42010,14264,280,7.2,9,9,19.3,610,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,45082,2143,43067,15906,300,6.2,9,9,32.2,910,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,100755,45718,42079,15961,320,4.1,8,8,40.2,1070,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,93311,34441,51494,18610,320,7.2,6,6,40.2,1070,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,73087,27446,32888,13077,320,7.2,6,6,40.2,1220,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,86178,41932,32115,12722,310,9.3,6,6,40.2,1220,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,74297,43003,27214,10665,310,7.7,4,4,40.2,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,46897,30330,20192,7538,310,6.7,4,4,40.2,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,30959,25548,9770,3492,320,6.2,1,1,40.2,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,9751,0,4091,1302,310,5.2,0,0,40.2,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,4223,0,3677,1102,290,4.1,2,2,24.1,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,23372,16866,11956,3963,340,3.6,2,2,24.1,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,51807,38762,19806,7227,320,5.2,3,3,24.1,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,70955,41951,28677,10966,320,5.2,3,3,24.1,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,92718,48597,35849,13861,320,7.7,4,4,24.1,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,111281,55776,35916,14047,320,7.7,4,4,24.1,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,80573,26481,48297,17766,320,5.2,5,5,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,114505,56318,46559,17220,270,6.2,5,5,24.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,96950,50856,36146,13993,300,6.7,5,5,32.2,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,67681,36311,32169,12175,280,6.2,3,3,32.2,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,51127,35443,21635,7968,300,7.2,3,3,32.2,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,29025,24197,11512,4017,320,6.7,1,1,32.2,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,7978,1485,5557,1663,280,7.2,0,0,32.2,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,6,101,260,1,1,1,0,0,0,0,290,4.6,0,0,32.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,6999,0,3281,1014,300,4.6,0,0,32.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,31671,27609,6657,2397,310,4.1,0,0,32.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,60375,46746,9784,3849,330,4.6,0,0,32.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,70226,42694,26043,10141,310,6.2,4,4,32.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,103530,57217,21319,8821,340,6.2,2,2,32.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,80246,33674,34749,13656,340,7.2,4,4,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,81215,30216,41765,15918,320,6.2,6,6,40.2,1220,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,73570,21915,48400,17689,310,5.7,8,8,40.2,1220,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,55361,13975,39926,15102,300,5.2,8,8,40.2,1370,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,69420,40544,24129,9622,330,6.7,5,5,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,54999,40470,21127,7825,310,7.2,3,3,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,36823,32870,7190,2640,300,6.7,1,1,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,10746,1156,4010,1287,300,4.1,0,0,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,6,124,267,1,0,1,0,0,0,0,270,3.1,0,0,32.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,5160,0,4625,1329,270,3.1,0,0,32.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,24063,18104,12529,4137,270,3.1,0,0,32.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,50616,37536,19761,7242,270,3.6,0,0,32.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,76200,47926,25608,10018,270,5.2,0,0,32.2,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,97740,53411,29759,11894,270,5.2,0,0,40.2,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,112065,56318,32271,12835,250,5.2,0,0,40.2,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,108859,51226,33249,13197,300,5.2,1,1,40.2,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,104807,49762,39024,15052,300,7.7,2,2,40.2,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,100848,53977,30314,12106,260,7.2,0,0,40.2,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,77901,46966,26417,10415,320,4.6,0,0,40.2,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,54884,39564,20895,7776,290,4.1,0,0,40.2,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,28357,21910,13838,4678,280,5.2,0,0,40.2,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,7590,1183,6180,1816,260,4.1,0,0,40.2,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,6,146,284,1,0,1,0,0,0,0,260,3.1,0,0,40.2,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,6405,0,4430,1304,250,3.6,2,0,40.2,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,28609,24425,9798,3411,240,6.2,1,0,40.2,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,56292,43003,14570,5603,270,5.2,1,0,40.2,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,82497,51566,18411,7508,250,6.7,1,0,40.2,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,102528,55103,24696,10113,250,7.2,2,2,40.2,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,109638,52757,29635,11936,250,7.2,5,2,40.2,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,107624,48646,37342,14585,250,7.2,7,2,40.2,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,111239,53528,35091,13813,250,6.2,8,2,40.2,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,97537,49705,33577,13217,260,6.7,8,2,40.2,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,80745,47742,25273,10059,240,6.2,3,1,40.2,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,55986,38935,23311,8504,240,6.2,7,3,40.2,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,31665,26038,11398,4017,240,6.7,3,1,40.2,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,8827,1849,6781,1946,250,5.2,6,2,40.2,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,6,168,336,1,2,1,0,0,0,0,250,5.2,4,4,24.1,77777,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,5498,0,4633,1363,270,4.6,8,8,12.9,4270,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,15345,647,15081,4776,240,6.2,10,10,12.9,4270,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,19020,401,18758,6994,250,5.2,10,10,12.9,4270,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,40614,533,40427,14133,280,3.6,10,10,16.1,3050,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,81189,33274,44743,16407,250,4.1,9,8,16.1,3050,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,77869,27715,38887,15061,310,3.1,8,7,16.1,3050,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,41060,839,40012,15471,250,2.6,10,10,16.1,3050,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,53779,10785,38386,14928,260,4.6,10,9,16.1,3350,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,64790,13343,50806,17948,230,3.6,8,8,19.3,3050,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,62167,27389,33524,12672,290,4.1,8,7,19.3,1070,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,40786,14620,29703,10136,270,4.6,10,9,16.1,1220,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,15121,2393,13256,4567,270,2.6,10,9,16.1,1220,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,6776,191,6361,1884,290,3.1,9,9,11.3,1220,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,3705,0,3714,1160,80,4.1,10,10,6.4,150,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,10605,183,10413,3626,120,2.6,10,10,6.4,120,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,23708,74,23831,8452,80,4.1,10,10,8.0,240,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,31500,308,31337,11874,70,3.6,10,10,8.0,270,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,47314,693,46837,16943,80,4.1,10,10,9.7,430,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,65689,15965,44875,16834,140,3.1,10,9,11.3,2440,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,49893,2173,47302,17621,120,3.1,10,9,9.7,2440,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,81493,26086,47061,17479,140,4.1,8,8,9.7,2440,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,72625,25554,40925,15509,130,3.1,8,7,8.0,7620,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,49678,14486,34435,12958,90,5.7,9,8,8.0,2440,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,30787,10411,20663,7785,90,6.2,10,9,8.0,2440,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,8458,163,8246,3040,80,4.1,10,10,8.0,670,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,3788,0,3681,1218,60,3.1,10,10,8.0,400,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,29,0.0000,0,88,0.000,0.0,1.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,29,0.0000,0,88,0.000,0.0,1.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,29,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,4627,0,4642,1393,110,4.1,10,10,3.2,60,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,14399,269,14351,4672,110,4.1,10,10,1.6,90,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,27895,156,27943,9464,120,3.6,10,10,1.6,90,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,38058,250,38075,13681,140,3.1,10,10,1.6,90,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,43349,164,43410,16110,120,5.7,10,10,2.4,520,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,53186,173,53463,19021,80,4.6,10,10,4.8,370,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,52151,85,52299,18921,120,3.6,10,10,8.0,460,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,84574,30167,43221,16401,80,4.1,8,7,9.7,820,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,81549,35954,25261,10370,110,4.1,7,5,11.3,7620,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,62560,29522,28049,11034,80,3.1,7,5,12.9,7620,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,55193,35754,23267,8553,150,4.1,7,4,12.9,7620,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,25414,11868,17909,5699,110,4.1,10,7,12.9,7620,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,8708,888,7879,2182,100,5.2,10,8,12.9,7620,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,29,0.0000,0,88,0.000,0.0,1.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,29,0.0000,0,88,0.000,0.0,1.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,29,0.0000,0,88,0.000,0.0,1.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,29,0.0000,0,88,0.000,0.0,1.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,29,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,6,235,380,1,0,1,0,0,0,0,90,3.6,10,10,4.8,180,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,3510,0,3517,1123,120,6.7,10,10,4.8,150,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,11953,144,11886,4071,130,4.6,10,10,3.2,2440,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,29341,8790,21716,7934,130,4.1,9,8,4.8,7620,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,45250,9259,36291,13273,110,3.6,10,9,8.0,430,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,73850,28703,37276,14402,110,3.1,10,5,8.0,77777,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,92194,35750,42692,16237,90,2.6,10,5,12.9,77777,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,84974,26136,50931,18584,120,3.6,10,7,12.9,980,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,73962,20489,47150,17500,130,6.2,10,8,12.9,1070,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,66177,17526,46390,16951,120,4.6,10,8,12.9,1070,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,47645,13064,33958,12842,120,6.2,10,8,12.9,7620,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,29293,396,29124,10071,120,4.1,10,10,12.9,7620,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,19437,5938,15147,5096,110,5.2,10,8,12.9,7620,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,7142,449,6284,1901,100,4.6,10,7,11.3,7620,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,5470,0,5268,1554,140,2.6,10,8,4.8,3660,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,22323,9839,16020,5078,160,2.6,8,6,4.0,3660,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,54905,36279,25913,9056,0,0.0,8,6,8.0,2440,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,36900,5202,31451,11970,180,1.5,9,7,8.0,3660,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,71474,21376,48446,17366,170,2.1,5,5,9.7,77777,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,77191,18856,55234,19434,150,3.1,8,8,12.9,3660,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,76458,20783,48433,17946,140,2.1,8,8,16.1,1070,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,87272,24672,59049,20290,280,4.6,8,8,24.1,1070,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,101049,46980,27360,11155,250,2.6,3,3,19.3,77777,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,70409,31446,40107,14455,160,3.6,6,6,24.1,1220,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,45210,24723,22431,8339,190,5.2,5,5,24.1,77777,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,31245,21912,16084,5336,220,5.2,6,6,24.1,3050,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,6507,131,6196,1891,230,2.1,9,9,24.1,3050,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,12,280,340,2,0,2,0,0,0,0,180,2.1,8,4,11.3,77777,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,6490,102,6188,1742,190,2.1,10,3,11.3,77777,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,22606,3802,20780,5884,220,3.6,10,7,12.9,3960,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,47219,26142,26666,9257,220,2.6,8,3,12.9,77777,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,75465,41334,29216,11314,220,2.6,3,0,16.1,77777,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,80767,33439,39594,15089,190,3.1,4,3,19.3,77777,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,106413,44505,51849,18666,180,5.2,7,6,19.3,1070,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,57690,6650,49161,18129,210,6.2,10,9,32.2,3050,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,62052,10125,49385,18087,210,4.6,9,9,32.2,3050,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,82197,31392,46882,17080,220,6.7,7,7,32.2,3050,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,71598,33540,39117,14222,230,3.6,8,3,32.2,77777,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,44611,20564,28251,9898,250,3.1,9,4,32.2,77777,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,23439,9263,17552,5677,280,4.1,9,4,24.1,77777,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,7997,970,6816,2034,240,2.6,6,2,24.1,77777,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,5953,30,5198,1562,250,2.6,9,5,12.9,7620,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,28531,20884,13083,4428,290,2.6,5,2,16.1,77777,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,54654,36476,15223,5916,290,3.1,4,1,19.3,77777,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,58865,27867,25343,10071,300,3.1,7,6,19.3,4570,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,93866,45188,34986,13692,290,4.1,8,4,19.3,77777,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,104609,45627,34963,13824,300,4.1,5,4,19.3,77777,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,100277,40410,39628,15374,280,5.2,7,4,24.1,4570,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,109806,48373,34009,13514,260,4.1,6,3,24.1,77777,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,99820,47590,26875,10960,260,2.6,2,1,24.1,77777,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,79638,43219,21386,8749,240,2.1,2,2,24.1,77777,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,61956,41726,15223,5999,230,2.6,2,0,24.1,77777,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,34605,27143,10567,3821,260,2.6,2,0,24.1,77777,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,10642,2950,7630,2204,240,2.6,8,2,24.1,77777,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,9322,0,4279,1352,300,3.6,3,1,40.2,77777,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,34266,25638,7884,2881,300,4.1,3,0,32.2,77777,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,59991,38359,9783,3917,280,3.1,1,0,24.1,77777,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,77262,88637,14580,2499,270,4.1,2,0,24.1,77777,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,107505,51139,20344,8497,320,3.1,6,0,32.2,77777,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,101330,43104,34624,13718,260,2.6,10,3,32.2,77777,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,102012,40950,42053,16130,200,3.6,10,3,32.2,77777,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,106924,46327,31890,12787,200,3.6,10,3,32.2,77777,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,91238,41642,30106,12111,280,4.1,8,2,32.2,77777,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,82893,45394,21393,8756,280,4.1,7,2,32.2,77777,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,58308,38381,15229,6006,240,3.6,7,2,32.2,77777,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,30582,20912,15077,5131,270,4.1,4,4,32.2,77777,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,11272,2100,5597,1775,260,4.1,3,3,32.2,77777,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,29,0.0000,0,88,0.000,0.0,1.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,29,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,10096,0,3866,1248,270,3.1,1,0,24.1,77777,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,34621,24988,7012,2588,280,4.6,1,0,20.9,77777,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,57515,36977,12359,4905,280,4.1,3,1,20.9,77777,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,82450,42647,14184,5940,280,5.2,2,1,24.1,77777,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,71336,27804,29964,12071,300,3.1,6,6,24.1,980,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,87570,30411,47196,17528,300,5.7,7,7,24.1,1070,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,74762,19654,47247,17658,290,4.6,7,7,24.1,1160,9,999999999,29,0.0000,0,88,0.000,16.3,1.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,30728,401,30297,12235,310,4.1,10,10,9.7,760,9,999999999,29,0.0000,0,88,0.000,0.3,1.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,27934,1417,25784,10597,320,5.2,10,10,16.1,1220,9,999999999,30,0.0000,0,88,0.000,0.5,1.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,33616,293,33476,12795,340,4.1,10,10,16.1,7620,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,33140,82,33235,11055,320,5.2,10,10,16.1,7620,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,15531,440,15263,5199,320,4.1,10,10,24.1,7620,9,999999999,31,0.0000,0,88,0.000,0.0,1.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,6595,43,6617,2029,320,2.1,10,10,24.1,7620,9,999999999,31,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,29,0.0000,0,88,0.000,0.0,1.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,29,0.0000,0,88,0.000,0.0,1.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,29,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,2692,0,2696,904,330,3.6,10,10,0.4,30,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,17735,4759,14115,4746,330,3.6,9,8,4.0,90,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,48985,26478,27494,9561,320,1.5,9,5,9.7,9140,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,71128,35677,29963,11611,320,1.0,8,5,12.9,9140,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,78855,30409,40329,15344,340,2.6,8,4,16.1,77777,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,107740,46160,37813,14779,290,2.6,7,3,16.1,77777,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,90769,30278,48999,18138,330,5.2,9,5,19.3,9140,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,100627,40786,41515,15936,290,6.2,8,4,24.1,77777,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,90903,38916,41669,15762,320,5.2,8,4,24.1,77777,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,74850,36636,35701,13410,340,3.6,8,3,24.1,77777,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,47005,23631,26244,9478,340,4.1,7,2,24.1,77777,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,30225,18827,17465,5731,320,4.1,8,2,24.1,77777,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,8134,937,6839,2085,300,4.1,8,4,24.1,77777,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,7372,697,5851,1750,340,4.1,6,3,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,24277,15428,13150,4494,330,5.7,5,3,32.2,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,55249,39101,17713,6772,360,6.7,3,1,40.2,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,79711,48433,20440,8318,30,6.7,0,0,48.3,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,104459,55396,23353,9604,350,5.7,0,0,48.3,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,119197,57266,25078,10258,360,6.2,0,0,48.3,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,123820,57081,25664,10481,310,4.1,0,0,48.3,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,120018,57542,26037,10617,330,6.2,1,0,48.3,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,107301,56261,25801,10519,340,6.7,2,0,48.3,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,87473,53416,22544,9143,320,5.2,2,0,48.3,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,62320,46203,17541,6799,340,6.7,1,0,48.3,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,34823,30581,12266,4351,340,6.2,1,0,48.3,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,11057,5056,6497,2005,340,6.2,1,0,40.2,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,340,6.2,1,0,40.2,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,8338,1142,7609,2077,90,5.2,8,8,40.2,880,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,30642,25367,14479,4832,80,6.2,5,4,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,55703,41471,17782,6783,90,5.7,3,2,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,87774,55401,19455,7949,90,5.2,3,0,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,108369,57099,19118,7959,50,5.2,0,0,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,123970,59345,20567,8508,100,4.1,0,0,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,106025,90594,20866,9831,60,3.1,0,0,32.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,124359,58316,20696,8562,10,1.5,0,0,32.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,111913,57192,19380,8067,350,6.2,0,0,32.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,91574,54356,17232,7148,350,4.6,0,0,32.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,65744,48379,14113,5592,330,3.6,0,0,32.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,37763,33725,10116,3687,340,4.1,0,0,32.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,12450,6244,5674,1810,330,4.1,0,0,32.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,320,3.6,0,0,32.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,11303,1915,4234,1363,80,4.1,0,0,32.2,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,36681,31701,7521,2765,90,5.2,0,0,32.2,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,65021,46805,10542,4207,80,3.6,0,0,24.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,78303,88757,15163,2588,110,2.1,1,0,24.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,102742,51111,23857,9823,150,4.1,2,2,32.2,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,71194,25664,31539,12628,160,2.1,6,6,32.2,1220,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,85674,28801,47873,17779,190,2.1,7,7,32.2,1370,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,88963,34568,42089,16053,140,1.5,7,7,32.2,1370,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,62358,15101,45625,16773,40,1.5,7,7,32.2,1370,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,59271,17270,43953,15426,180,2.6,8,8,32.2,1370,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,51580,27402,30902,10623,150,2.1,9,8,32.2,1370,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,32278,22307,18613,6011,180,3.6,8,7,32.2,7620,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,8787,1311,7716,2295,180,2.6,9,9,32.2,7620,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,140,3.1,8,8,24.1,7620,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,9201,2405,6705,1958,0,0.0,10,4,24.1,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,23426,11058,16729,5398,230,2.6,10,3,24.1,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,53260,34141,26262,9299,230,4.1,8,3,24.1,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,85332,50494,21523,8750,210,2.6,6,3,24.1,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,77656,35049,26710,10869,220,3.6,5,4,24.1,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,106668,48282,31086,12473,200,4.6,4,4,24.1,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,106121,44529,45687,17173,290,1.5,6,6,24.1,1830,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,85689,32485,40309,15523,240,1.5,6,6,24.1,1830,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,88607,41255,35275,13794,340,2.6,5,5,24.1,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,79836,44604,28017,11078,320,3.6,4,4,24.1,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,62131,43039,15863,6249,330,3.1,3,3,24.1,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,28900,20279,13302,4695,320,3.6,3,2,24.1,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,12726,5726,6495,2036,320,2.1,3,2,24.1,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,320,3.1,3,3,24.1,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10048,2453,5486,1704,310,2.1,0,0,16.1,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,33837,28490,10347,3710,340,3.1,0,0,16.1,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,60922,43166,14782,5798,330,2.6,0,0,16.1,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,86868,51843,18301,7540,290,3.1,0,0,16.1,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,108515,55906,20835,8646,300,3.6,0,0,24.1,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,121749,57194,22311,9200,340,4.6,0,0,32.2,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,127263,58481,22908,9418,330,2.1,0,0,32.2,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,123169,58073,22468,9254,330,2.6,0,0,32.2,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,110264,56607,21135,8753,340,5.2,0,0,32.2,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,89994,52538,18712,7736,320,4.1,0,0,32.2,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,64738,46854,15347,6058,320,5.7,0,0,32.2,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,37025,31471,10981,3989,300,5.2,0,0,32.2,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,12481,6044,6202,1969,310,4.1,0,0,32.2,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,320,3.1,1,0,32.2,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,9560,2301,7524,2136,310,5.7,10,3,16.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,31299,23400,16223,5321,310,4.1,10,3,16.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,54737,35754,25001,9010,310,4.6,10,4,16.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,76941,41162,36173,13418,310,5.2,10,4,16.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,85994,36560,44509,16456,310,5.2,10,5,19.3,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,102837,40307,57492,19973,310,6.2,10,7,24.1,7620,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,60036,11893,43475,16543,340,6.2,10,8,19.3,7620,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,50602,3424,46338,17303,270,5.2,10,10,19.3,7620,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,39861,82,39997,15246,300,5.7,10,10,19.3,7620,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,31623,706,31098,12073,340,5.2,10,10,19.3,7620,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,40923,17020,26744,9665,320,5.2,9,8,16.1,7620,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,17977,3816,15441,5300,320,5.2,9,8,16.1,7620,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,8543,349,8355,2458,300,4.6,9,8,16.1,7620,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,320,2.6,8,8,16.1,7620,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,3285,0,3173,1066,320,3.1,9,9,11.3,4270,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,20405,5300,17046,5522,320,2.6,8,8,16.1,3660,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,34507,9443,27100,9566,320,3.6,8,8,16.1,3660,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,74207,39830,31370,12066,360,2.6,4,4,16.1,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,100266,49721,28165,11402,20,2.6,0,0,19.3,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,114634,52128,30286,12201,40,4.1,0,0,19.3,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,120552,53379,31016,12474,90,2.1,0,0,19.3,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,116634,53318,30455,12258,360,2.1,0,0,16.1,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,103767,51357,28477,11516,120,2.1,0,0,16.1,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,84428,48128,25183,10133,50,3.6,0,0,16.1,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,59648,40665,20364,7796,60,3.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,31744,23385,14280,4999,70,3.1,1,1,19.3,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,10978,4157,7343,2260,90,1.5,0,0,19.3,77777,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,200,1.0,2,0,19.3,77777,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,12253,1637,4246,1393,80,3.6,0,0,11.3,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,37632,27927,7282,2713,90,4.6,0,0,11.3,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,65764,44095,10194,4098,90,4.6,0,0,11.3,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,78772,89534,13718,2556,110,5.2,0,0,11.3,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,95314,94109,14784,3998,120,4.6,0,0,11.3,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,104739,45601,26756,10919,120,5.7,3,3,11.3,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,105078,42951,43219,16487,160,3.6,5,5,11.3,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,103153,44795,31246,12542,120,4.1,5,5,11.3,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,110715,55542,28466,11519,160,2.6,5,5,11.3,77777,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,96899,56210,19270,7968,180,4.1,3,3,12.9,77777,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,56772,36980,20571,7876,180,3.1,3,3,12.9,77777,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,29896,20992,13861,4891,190,2.1,3,2,11.3,77777,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,12705,5814,6932,2176,160,3.1,4,3,11.3,77777,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,130,2.6,5,5,11.3,77777,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,7485,653,6737,2024,160,1.0,8,7,16.1,2740,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,18215,6156,13745,4740,190,3.1,8,7,12.9,2740,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,43366,23845,20860,7860,200,4.1,5,5,12.9,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,88523,48496,14851,6213,180,3.1,0,0,12.9,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,93395,89495,17640,4417,190,1.5,0,0,16.1,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,103757,91906,18204,7313,140,2.1,0,0,16.1,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,120605,53353,38773,15114,140,1.5,6,6,16.1,1830,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,104044,44590,38182,14885,160,5.7,5,5,16.1,77777,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,80843,32846,39203,15039,210,2.1,5,5,16.1,77777,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,77051,39937,34100,13016,160,3.6,5,5,16.1,77777,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,45375,23471,23669,8848,130,2.6,8,6,16.1,3050,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,30668,21028,15228,5284,190,4.6,8,4,16.1,77777,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,11248,3397,8770,2580,200,3.1,9,4,16.1,77777,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,180,3.6,9,4,12.9,77777,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,11973,3945,6228,1921,240,1.5,6,1,12.9,77777,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,34527,26821,9595,3504,230,3.1,6,1,12.9,77777,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,60453,39957,13670,5430,280,3.1,6,1,12.9,77777,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,82670,45902,19396,7995,270,3.1,8,1,12.9,77777,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,102516,47336,17430,7317,330,4.6,6,1,12.9,77777,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,99579,87730,17833,7266,320,3.6,4,1,11.3,77777,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,111839,47598,37998,14865,270,4.6,8,4,11.3,77777,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,108703,47097,26455,10806,140,3.1,7,3,11.3,77777,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,102228,49934,28937,11684,240,3.1,7,3,11.3,77777,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,74767,37170,35173,13337,250,3.1,5,4,11.3,77777,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,62067,41774,19056,7397,310,3.6,3,3,11.3,77777,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,37170,29561,12590,4535,280,3.6,3,3,11.3,77777,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,7853,220,7658,2364,300,3.1,7,7,11.3,1830,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,30,3.1,6,6,11.3,1830,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,12143,2065,4778,1558,350,3.1,0,0,4.8,77777,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,35550,27002,8290,3071,340,3.6,0,0,4.8,77777,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,52906,33604,17082,6648,330,4.6,3,1,8.0,77777,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,77814,41796,19723,8127,320,3.6,4,2,9.7,77777,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,101817,47666,22601,9364,340,4.1,2,2,9.7,77777,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,99584,88321,16990,7069,330,5.7,0,0,9.7,77777,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,103698,89743,17188,9428,10,6.2,0,0,11.3,77777,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,103932,92203,17179,7551,40,4.6,0,0,11.3,77777,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,111887,52728,18311,7660,20,3.6,2,2,11.3,77777,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,81625,43902,23059,9408,10,5.2,2,2,11.3,77777,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,62551,40936,15099,6017,330,3.1,2,2,11.3,77777,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,39292,31211,11515,4209,360,5.2,2,2,11.3,77777,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,10047,1646,8880,2630,30,5.2,8,7,11.3,7620,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,40,4.6,6,3,11.3,77777,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,9226,2010,7054,2120,210,2.6,0,0,4.8,77777,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,29867,20730,14373,4941,0,0.0,0,0,4.0,77777,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,54817,35063,21293,8022,110,2.6,0,0,4.8,77777,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,80093,43593,26683,10624,120,3.1,0,0,8.0,77777,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,99417,47520,30488,12237,60,3.1,0,0,9.7,77777,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,110566,47874,32505,13007,60,3.6,1,1,9.7,77777,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,118008,50538,33606,13401,70,4.1,1,1,9.7,77777,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,104171,43771,41512,15933,0,0.0,2,2,11.3,77777,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,67364,14391,51809,18349,180,1.5,6,6,11.3,1370,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,84379,43284,40865,14884,220,4.1,6,6,11.3,1370,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,40578,13277,29814,10539,300,4.1,6,6,11.3,1520,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,12615,0,12721,5087,20,8.2,10,10,9.7,1520,9,999999999,31,0.0000,0,88,0.000,2.8,1.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,3651,6,3657,1263,30,7.7,10,10,6.4,3050,9,999999999,31,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,30,5.2,10,10,8.0,3050,9,999999999,31,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.0,1.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,33,0.0000,0,88,0.000,0.0,1.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,33,0.0000,0,88,0.000,0.0,1.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,33,0.0000,0,88,0.000,0.0,1.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,33,0.0000,0,88,0.000,0.0,1.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,33,0.0000,0,88,0.000,0.0,1.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,34,0.0000,0,88,0.000,0.0,1.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,12119,3646,6134,1922,70,4.6,5,1,6.4,77777,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,37688,27632,7628,2849,90,4.6,0,0,6.4,77777,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,47884,24393,26851,9607,90,5.2,9,9,6.4,3050,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,64694,26750,36628,13652,100,4.6,8,6,6.4,3050,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,107151,47912,18789,7881,90,6.2,2,2,6.4,77777,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,106706,43654,29512,11971,100,6.7,5,5,6.4,77777,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,103591,40243,36558,14433,90,7.2,5,5,6.4,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,101580,40684,32160,12911,130,5.2,4,4,8.0,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,106694,49965,32186,12851,100,5.2,5,5,9.7,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,63322,28209,27759,11080,110,6.2,5,5,9.7,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,54332,31743,21491,8239,130,7.7,4,4,9.7,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,36858,27208,12678,4595,130,6.2,2,2,9.7,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,14159,5924,6425,2091,120,5.7,3,2,9.7,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,100,4.1,3,3,9.7,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,33,0.0000,0,88,0.000,0.0,1.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,33,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,6211,33,6231,1954,120,4.1,10,10,0.8,30,9,999999999,31,0.0000,0,88,0.000,0.0,1.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,22630,7324,17748,5788,120,3.6,8,8,1.6,150,9,999999999,31,0.0000,0,88,0.000,0.0,1.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,59229,37765,21034,7974,110,2.1,4,4,4.0,77777,9,999999999,31,0.0000,0,88,0.000,0.0,1.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,72380,35205,31285,12133,100,2.6,4,4,4.0,77777,9,999999999,31,0.0000,0,88,0.000,0.0,1.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,95468,43505,30890,12395,140,2.6,4,4,6.4,77777,9,999999999,31,0.0000,0,88,0.000,0.0,1.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,111843,47482,32249,12934,140,2.6,4,4,8.0,77777,9,999999999,31,0.0000,0,88,0.000,0.0,1.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,121805,51652,35363,14022,140,3.6,5,5,8.0,77777,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,106040,43791,38448,15010,140,3.6,3,3,8.0,77777,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,53248,12633,35876,14050,110,4.6,9,7,9.7,7620,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,79632,40650,35829,13565,160,4.6,8,6,11.3,7620,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,37886,11370,27636,10044,300,6.7,9,8,11.3,7620,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,21835,4255,18935,6281,350,7.7,9,8,11.3,7620,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,3987,36,3994,1376,30,5.7,10,10,11.3,7620,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,1526,0,1536,356,360,4.1,10,9,14.5,1830,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,70,4.6,7,6,4.8,7620,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,8524,930,7458,2234,70,3.6,8,7,3.2,3050,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,23057,10285,15289,5215,80,5.2,7,6,3.2,3660,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,45593,21773,26213,9469,70,4.1,8,7,3.2,3660,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,53018,13220,39683,14456,90,5.2,8,8,3.2,580,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,76480,28559,37778,14640,50,4.6,8,8,4.0,700,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,85920,29454,43429,16533,60,5.7,5,5,4.0,77777,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,122194,50610,28004,11410,120,5.2,4,4,4.0,77777,9,999999999,28,0.0000,0,88,0.000,0.3,1.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,101817,38884,42307,16245,130,3.1,5,5,8.0,77777,9,999999999,28,0.0000,0,88,0.000,0.5,1.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,53039,15297,29083,11777,90,5.2,9,8,12.9,1220,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,48368,13146,33177,12825,60,6.2,10,9,12.9,980,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,59794,37018,22811,8663,90,7.2,7,6,19.3,7620,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,33137,21142,18884,6275,90,6.7,7,5,24.1,7620,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,8966,1141,7998,2490,110,3.6,5,4,24.1,77777,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,1487,0,1385,343,100,3.6,6,3,24.1,77777,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,29,0.0000,0,88,0.000,0.0,1.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,29,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.0,1.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,33,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,50,5.2,10,10,16.1,4270,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,7372,216,7066,2157,50,4.6,10,9,16.1,2440,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,9181,1470,7530,2820,80,6.7,10,10,11.3,580,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,16721,363,16436,6451,20,5.7,10,10,8.0,2440,9,999999999,34,0.0000,0,88,0.000,0.5,1.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,38910,492,38588,14177,20,5.2,10,10,11.3,2440,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,26706,520,25998,10650,30,5.2,10,10,4.8,760,9,999999999,34,0.0000,0,88,0.000,0.5,1.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,29972,197,29777,12058,360,5.2,10,10,4.8,850,9,999999999,34,0.0000,0,88,0.000,0.3,1.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,35990,553,35244,13989,30,5.2,10,10,8.0,850,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,29703,389,29137,11828,50,5.2,10,10,3.2,370,9,999999999,35,0.0000,0,88,0.000,4.3,1.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,27053,0,27330,12405,40,6.7,10,10,3.2,910,9,999999999,35,0.0000,0,88,0.000,1.9,1.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,25884,199,25784,10424,10,5.7,10,10,3.2,880,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,29780,77,29955,10661,20,5.7,10,10,9.7,2440,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,17432,62,17513,5972,60,5.7,10,10,11.3,820,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,6639,0,6690,2405,50,4.1,10,10,12.9,850,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,1525,0,1535,382,60,6.2,10,10,11.3,700,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.3,1.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,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,20,5.2,10,10,12.9,370,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,7206,0,7260,2371,10,4.1,10,10,12.9,270,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,16051,0,16185,5847,40,4.1,10,10,19.3,310,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,31587,81,31665,10768,60,5.2,10,10,24.1,310,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,34531,0,34866,14079,30,2.6,10,10,19.3,760,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,45691,82,46008,16946,40,3.6,10,10,19.3,340,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,51221,83,51478,18720,70,2.6,10,10,19.3,400,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,52441,164,52711,19181,90,3.1,10,10,19.3,400,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,54036,84,54324,19456,40,2.6,10,10,19.3,400,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,47396,82,47616,17432,90,2.1,10,10,19.3,400,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,37170,0,37536,14980,360,2.1,10,10,19.3,400,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,30290,77,30469,10804,60,5.2,10,10,19.3,610,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,19462,65,19560,6470,60,4.1,10,10,19.3,610,9,999999999,31,0.0000,0,88,0.000,0.0,1.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,9462,29,9501,2834,100,3.6,10,10,19.3,980,9,999999999,31,0.0000,0,88,0.000,0.0,1.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,1619,0,1630,401,100,3.1,10,10,19.3,700,9,999999999,31,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.0,1.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,33,0.0000,0,88,0.000,0.0,1.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,33,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,330,1.5,10,10,6.4,460,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,6413,0,6462,2216,30,3.1,10,10,6.4,1160,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,16452,58,16528,5551,60,4.1,10,10,6.4,310,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,27214,73,27368,9796,50,3.1,10,10,6.4,310,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,41654,6112,34890,13230,90,4.1,9,9,8.0,460,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,39224,667,38537,14881,90,2.6,10,10,11.3,760,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,76492,18880,51757,18805,80,4.1,9,7,11.3,910,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,102986,36478,52694,19186,30,2.1,7,6,16.1,7620,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,61206,8462,50045,18395,80,2.6,9,9,19.3,7620,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,58334,7329,49866,17985,40,2.1,9,9,19.3,7620,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,52713,5936,47326,16422,120,2.1,9,9,19.3,7620,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,13312,539,12630,5128,90,4.1,10,10,19.3,1220,9,999999999,37,0.0000,0,88,0.000,1.5,1.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,11173,239,10977,4084,360,5.2,10,10,8.0,1220,9,999999999,38,0.0000,0,88,0.000,1.5,1.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,5065,25,5077,1730,60,5.2,10,10,6.4,910,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,762,0,767,265,80,3.6,10,10,8.0,1220,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.3,1.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,37,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,34,0.0000,0,88,0.000,0.0,1.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,34,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,80,4.6,10,10,6.4,120,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,6346,49,6254,1985,80,4.1,10,10,2.4,60,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,18717,127,18699,6042,120,3.6,10,10,4.0,120,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,32893,82,32984,11065,90,4.1,10,10,9.7,210,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,40428,0,40822,15501,90,3.6,10,10,11.3,400,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,48037,84,48262,17513,140,2.6,10,10,12.9,430,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,68334,10080,56216,19843,160,4.1,10,9,24.1,580,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,101805,38227,41017,15885,160,3.6,8,7,24.1,3050,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,75011,12504,60359,20777,100,2.1,8,8,24.1,3050,9,999999999,31,0.0000,0,88,0.000,0.0,1.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,53537,10654,39145,15089,0,0.0,9,9,24.1,3050,9,999999999,31,0.0000,0,88,0.000,0.0,1.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,66546,22224,45087,15960,0,0.0,9,9,24.1,3660,9,999999999,31,0.0000,0,88,0.000,0.0,1.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,51004,27734,17706,7020,90,3.6,5,5,24.1,77777,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,26557,12844,16390,5718,80,3.6,5,5,24.1,77777,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,11602,3941,7387,2382,100,5.2,5,5,24.1,77777,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,2100,0,1792,426,100,3.6,5,5,24.1,77777,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,80,4.1,3,2,11.3,77777,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,7422,514,6668,2090,70,3.6,7,7,14.5,3050,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,21818,8897,14796,5119,70,3.1,9,8,16.1,3050,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,42349,13684,31535,10782,40,3.1,8,6,16.1,3050,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,73747,36251,28279,11209,50,2.6,4,4,20.9,77777,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,50335,7517,40605,15494,110,3.1,9,9,24.1,850,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,60212,7072,51301,18679,110,2.1,9,9,24.1,910,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,60078,5643,52779,19195,110,3.1,9,9,24.1,980,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,62269,6008,54936,19601,340,2.1,9,9,24.1,980,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,54795,7503,45862,16985,0,0.0,9,9,24.1,980,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,53534,15867,36143,13719,200,2.1,9,9,24.1,1220,9,999999999,32,0.0000,0,88,0.000,13.5,1.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,14822,57,14880,5987,40,7.2,10,10,11.3,980,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,7598,0,7663,3421,80,4.6,10,10,24.1,910,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,5916,16,5932,1993,40,5.7,10,10,24.1,3660,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,1335,0,1344,398,300,2.1,10,10,24.1,3660,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,330,2.1,6,2,11.3,77777,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,8764,70,8691,2515,300,2.1,10,10,9.7,3660,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,14483,853,13861,4867,90,2.1,10,10,11.3,3660,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,40438,12808,29889,10426,340,2.1,8,8,14.5,5180,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,78916,40585,28838,11390,20,2.6,0,0,24.1,77777,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,96410,43542,33005,13120,320,2.6,0,0,32.2,77777,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,106790,43971,42600,16293,10,3.6,3,3,32.2,77777,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,98580,35550,46134,17409,300,2.6,4,4,32.2,77777,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,100269,36331,52897,19119,100,2.1,4,4,32.2,77777,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,94044,39911,41226,15709,0,0.0,4,4,32.2,77777,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,69524,28330,39757,14710,160,2.1,4,4,32.2,77777,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,54578,29388,27727,10146,280,2.6,3,3,32.2,77777,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,32224,19370,17986,6145,300,3.6,4,4,32.2,77777,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,11167,3050,8433,2649,300,2.6,4,4,24.1,77777,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,1337,0,1346,405,310,2.6,8,7,24.1,7620,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,29,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,10,2.6,0,0,16.1,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,11340,3226,7181,2219,180,1.0,2,0,16.1,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,31558,21932,12924,4600,60,1.5,2,1,19.3,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,55825,34000,17948,7002,80,2.6,0,0,19.3,77777,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,83157,42981,22149,9078,290,3.1,0,0,19.3,77777,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,103140,46623,25191,10365,290,3.1,0,0,19.3,77777,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,105624,42845,38821,15142,350,2.1,4,4,22.5,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,93128,32059,45700,17285,300,2.1,7,7,19.3,1070,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,88752,28958,49333,18216,340,4.1,5,5,19.3,77777,9,999999999,35,0.0000,0,88,0.000,0.5,1.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,95155,39897,43812,16447,360,3.6,6,6,19.3,1070,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,66310,22287,43562,15675,120,3.6,6,6,16.1,2740,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,36929,12133,24713,9321,150,2.6,6,6,16.1,2740,9,999999999,36,0.0000,0,88,0.000,0.3,1.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,18425,4567,14276,5157,140,4.1,8,8,16.1,3050,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,9545,1517,7796,2511,130,1.5,5,5,16.1,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,2199,0,1997,480,160,2.6,0,0,12.9,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,70,3.1,8,4,4.8,77777,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,4716,68,4380,1477,70,3.6,10,10,4.8,2740,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,27954,12704,19613,6263,90,3.1,8,6,4.8,7620,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,46164,22276,24746,9132,120,3.6,9,4,11.3,77777,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,73431,34775,31708,12315,100,2.6,9,4,12.9,77777,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,83447,33899,28294,11514,130,4.1,5,2,12.9,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,108664,43708,30307,12270,180,2.6,4,2,12.9,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,110520,41078,52450,19152,220,1.5,7,7,12.9,910,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,61054,6160,53237,19234,130,2.6,9,9,11.3,980,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,55533,4378,50632,18197,150,2.1,8,8,11.3,980,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,37365,308,37258,14078,270,3.1,10,10,11.3,9140,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,23641,479,23181,8846,270,6.7,10,10,12.9,9140,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,26188,11752,17388,6013,250,3.1,9,8,12.9,9140,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,13156,2873,11373,3239,0,0.0,10,7,12.9,9140,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,1714,0,1720,452,250,1.5,10,6,9.7,3660,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,34,0.0000,0,88,0.000,0.0,1.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,33,0.0000,0,88,0.000,0.0,1.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,33,0.0000,0,88,0.000,0.0,1.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,33,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,270,4.1,3,1,11.3,77777,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,8731,704,7997,2402,280,3.6,5,5,11.3,77777,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,24821,7238,20224,6388,300,4.1,8,8,11.3,3660,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,34863,1078,34306,11368,320,4.1,9,9,16.1,3660,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,36274,688,35695,13470,320,7.2,10,10,19.3,9140,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,57246,13138,40370,15409,320,3.6,8,8,24.1,9140,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,98551,35119,54704,19499,320,3.6,7,7,40.2,9140,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,76725,14963,57951,20419,270,2.1,7,7,40.2,7620,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,110852,47138,38548,15039,270,5.7,6,2,40.2,77777,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,94040,41831,36421,14227,280,7.2,5,2,40.2,77777,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,78841,39711,28948,11520,300,2.1,5,3,40.2,77777,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,55811,31034,27143,10013,320,5.2,4,3,40.2,77777,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,34226,21968,18656,6338,280,5.2,4,3,40.2,77777,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,13280,4312,10493,3103,310,3.6,6,3,40.2,77777,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,2220,0,2122,513,310,3.6,8,3,40.2,77777,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,300,4.1,1,0,32.2,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,10252,2203,8540,2505,310,4.1,3,0,40.2,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,30020,19039,17153,5721,330,2.6,2,0,32.2,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,55091,34103,25747,9374,330,3.6,2,0,32.2,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,73915,36661,35970,13502,330,6.2,3,3,40.2,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,93837,42254,43544,16264,320,7.2,4,4,40.2,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,97917,38242,48828,17995,320,3.1,4,4,40.2,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,115645,49379,42440,16275,270,5.2,4,4,40.2,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,98711,35514,55504,19703,300,5.2,4,4,40.2,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,98149,43971,45427,16842,360,5.2,5,5,40.2,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,64497,23380,40976,15024,350,4.6,4,4,40.2,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,54771,28687,30895,10984,310,4.1,3,3,40.2,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,24180,9750,17024,5927,330,3.1,2,2,40.2,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,13034,4543,10117,3041,340,2.6,3,0,40.2,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,2316,0,2325,543,320,2.6,2,0,40.2,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,340,2.6,0,0,24.1,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,9742,1919,8130,2432,320,1.5,0,0,24.1,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,29368,18102,16827,5652,360,2.6,0,0,24.1,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,54661,33128,25186,9233,40,2.6,0,0,24.1,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,78349,41616,31872,12323,70,4.6,0,0,24.1,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,97288,45628,35756,13985,320,3.1,1,1,32.2,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,106354,45508,42871,16335,320,2.6,3,3,32.2,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,105528,40796,48574,18069,250,3.6,3,3,32.2,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,107354,44839,44349,16803,300,5.2,3,3,32.2,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,84654,32535,44955,16732,310,3.6,3,3,40.2,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,80776,40020,38736,14455,330,4.1,3,3,40.2,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,56468,31878,28162,10297,290,4.1,2,2,40.2,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,33657,21386,18485,6314,320,2.6,0,0,40.2,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,12444,4091,9618,2950,310,3.1,0,0,40.2,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,2322,0,2330,555,310,2.6,0,0,40.2,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,70,3.6,0,0,24.1,77777,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,14862,4760,4619,1548,70,3.1,0,0,24.1,77777,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,40027,30254,7666,2881,100,3.6,0,0,24.1,77777,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,67132,42311,10444,4230,150,2.1,0,0,24.1,77777,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,80043,89318,13943,2670,130,2.1,0,0,24.1,77777,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,96332,93635,14869,4242,180,2.6,0,0,24.1,77777,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,86612,29400,47088,17558,210,2.6,8,8,24.1,1070,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,97674,38312,26941,10993,240,3.6,4,4,24.1,77777,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,114308,49113,28674,11636,240,3.6,4,4,24.1,77777,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,107512,51169,29331,11843,260,2.6,4,4,24.1,77777,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,75357,37816,26921,10829,230,3.1,4,4,24.1,77777,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,60879,37997,20230,7902,340,3.1,5,4,24.1,77777,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,35717,24368,17544,6087,300,2.6,5,4,24.1,77777,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,10514,3469,7144,2360,310,1.5,5,3,24.1,77777,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,3114,0,2814,600,180,2.1,5,3,24.1,77777,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,200,2.1,2,0,12.9,77777,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,12829,4632,6491,2069,200,2.1,2,0,12.9,77777,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,36217,26885,10599,3889,180,3.6,0,0,12.9,77777,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,62776,39916,14801,5893,280,3.6,0,0,12.9,77777,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,87161,45565,18045,7516,270,4.1,0,0,16.1,77777,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,102846,46875,20118,8395,300,4.1,1,1,19.3,77777,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,116715,48857,20069,8342,270,5.7,1,1,19.3,77777,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,121481,50214,25770,10558,250,4.1,2,2,19.3,77777,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,115909,48749,25217,10351,310,4.6,2,2,19.3,77777,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,104273,46927,21352,8872,270,2.6,1,1,19.3,77777,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,94456,51351,23249,9529,270,5.2,2,2,19.3,77777,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,67747,43001,15501,6234,260,5.2,0,0,19.3,77777,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,41240,31023,11488,4289,310,4.1,0,0,19.3,77777,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,16865,9566,7039,2338,300,2.6,0,0,19.3,77777,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,2658,0,2241,566,280,2.6,0,0,16.1,77777,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,280,4.6,3,1,16.1,77777,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,12020,4877,6923,2172,260,4.1,1,0,16.1,77777,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,34448,25423,12101,4363,280,4.6,0,0,12.9,77777,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,59812,37894,17433,6830,260,6.7,1,0,12.9,77777,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,83846,43232,21604,8882,290,6.7,1,0,12.9,77777,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,104154,46759,25753,10578,330,7.2,2,0,12.9,77777,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,117083,48111,26255,10770,290,8.2,1,0,16.1,77777,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,119504,47316,25719,10558,300,7.2,1,1,19.3,77777,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,114202,46337,25292,10395,280,9.3,1,1,19.3,77777,9,999999999,31,0.0000,0,88,0.000,0.0,1.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,99839,43435,25306,10406,260,8.2,1,1,24.1,77777,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,72578,32389,34356,13265,300,7.2,3,3,19.3,77777,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,61925,37400,22684,8731,290,8.2,2,2,19.3,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,39817,28961,16588,5856,280,7.7,3,3,19.3,77777,9,999999999,33,0.0000,0,88,0.000,0.8,1.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,7314,880,6417,2164,320,12.9,9,8,4.8,1520,9,999999999,34,0.0000,0,88,0.000,3.3,1.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,764,0,770,289,260,4.6,10,10,11.3,3050,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,29,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,330,4.6,2,1,19.3,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,14116,6391,5478,1796,330,6.2,1,0,32.2,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,38355,31446,9232,3421,330,6.7,1,0,32.2,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,66027,45527,12299,4935,330,7.7,0,0,32.2,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,91187,51663,15732,6571,10,7.7,1,0,32.2,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,103887,50067,18100,7563,330,6.7,1,1,32.2,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,99447,87794,16546,7536,300,5.7,1,1,40.2,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,103699,86747,19594,12167,290,6.2,1,1,40.2,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,100083,86813,17574,8708,20,4.6,1,1,40.2,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,96407,89796,17571,5219,340,4.6,0,0,40.2,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,96669,52790,15361,6450,350,7.2,0,0,40.2,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,71168,47516,12861,5218,340,6.2,0,0,40.2,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,44804,36746,9680,3660,340,5.2,0,0,40.2,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,18789,12961,6125,2075,330,5.2,0,0,40.2,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,3220,0,2261,583,340,4.1,0,0,40.2,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,340,3.1,0,0,32.2,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,14793,7443,5172,1708,360,4.1,0,0,40.2,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,40086,34000,8587,3195,30,3.6,0,0,32.2,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,67702,47720,11748,4718,70,3.6,0,0,32.2,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,79385,87392,15574,2778,120,3.1,0,0,40.2,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,95290,90867,17535,4682,120,3.6,1,0,40.2,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,106736,48042,33841,13421,170,3.1,7,4,40.2,9140,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,108426,46928,37216,14577,260,2.1,8,6,40.2,9140,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,77395,24774,44092,16688,300,3.1,8,6,40.2,9140,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,110243,55452,27524,11162,240,2.1,8,2,40.2,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,97535,54896,15505,6499,220,3.1,1,0,40.2,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,72372,49390,12879,5222,240,4.1,1,0,40.2,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,45910,38876,9255,3506,250,4.1,0,0,40.2,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,19462,14213,5922,2016,230,2.1,0,0,40.2,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,3447,0,2269,591,260,2.6,0,0,40.2,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,260,2.1,1,1,32.2,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,10015,2530,8173,2447,230,4.1,0,0,40.2,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,29760,19799,16694,5614,260,6.2,0,0,40.2,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,54718,34827,24854,9124,260,6.7,0,0,40.2,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,78328,42774,31299,12130,270,7.2,0,0,40.2,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,98737,47637,35929,14023,260,6.7,0,0,40.2,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,111964,49894,38799,15083,260,8.8,0,0,40.2,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,116008,49454,39440,15345,310,7.7,1,1,40.2,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,94548,31696,55161,19658,290,7.7,4,4,40.2,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,91515,37869,43894,16463,290,7.7,3,3,24.1,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,75649,35354,35846,13698,310,8.2,3,3,24.1,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,56157,30387,28808,10538,310,7.7,2,2,24.1,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,33833,19920,19973,6738,320,5.2,6,2,24.1,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,10258,2034,8728,2797,320,5.2,7,3,24.1,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,2551,0,2560,639,340,4.1,1,0,24.1,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,320,2.1,2,2,32.2,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,10847,4417,6843,2152,290,3.1,1,0,32.2,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,33808,26826,13645,4807,280,1.5,1,0,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,60316,41951,19923,7631,180,1.5,2,0,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,80980,46617,26976,10722,170,1.5,3,1,24.1,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,100299,50470,30112,12070,240,2.6,3,1,32.2,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,118671,56206,30694,12316,310,5.2,2,0,40.2,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,123887,56830,30869,12388,300,5.7,2,0,40.2,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,119984,56129,30533,12262,280,5.2,2,0,40.2,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,102614,50921,26308,10707,320,5.7,2,1,40.2,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,82825,46353,25298,10233,330,6.2,2,1,40.2,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,61529,40909,22877,8762,300,5.7,2,1,40.2,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,39232,31784,15247,5469,330,5.2,3,1,40.2,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,16097,10399,9086,2878,320,3.1,2,0,40.2,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,2772,0,2675,660,310,3.6,2,0,40.2,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,20,2.6,1,1,32.2,77777,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,14706,6918,4642,1553,40,4.1,1,1,32.2,77777,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,37402,31468,9466,3496,50,5.2,1,1,32.2,77777,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,67118,46080,10374,4186,80,5.2,0,0,32.2,77777,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,78171,87458,13768,2662,50,3.6,0,0,32.2,77777,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,93689,91176,14696,4231,10,2.1,0,0,32.2,77777,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,103384,92903,15101,7041,10,2.1,0,0,32.2,77777,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,108390,94440,15339,10039,340,5.2,0,0,32.2,77777,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,102606,89616,16639,8477,310,4.1,3,1,32.2,77777,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,97846,92323,15518,4896,340,7.2,1,0,20.9,77777,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,89501,43604,14725,6220,330,5.7,4,1,20.9,77777,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,62645,37977,20667,8095,330,4.1,6,2,20.9,77777,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,36024,24101,16093,5753,350,3.6,7,2,24.1,77777,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,13216,5201,9029,2886,320,2.6,9,5,24.1,9140,9,999999999,31,0.0000,0,88,0.000,0.0,1.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,3245,0,3048,707,270,2.6,10,7,24.1,9140,9,999999999,31,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,7.1,1.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,30,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.3,1.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,30,0.0000,0,88,0.000,0.8,1.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,30,0.0000,0,88,0.000,0.0,1.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,29,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,180,3.6,9,8,11.3,7620,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,11156,1950,9696,2735,200,2.1,8,7,9.7,7620,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,26050,13739,14156,4985,250,5.2,7,3,9.7,77777,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,61386,35187,12755,5148,270,5.2,3,1,11.3,77777,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,80083,87534,15284,2756,270,6.7,1,0,11.3,77777,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,96359,92796,15537,4362,280,5.2,0,0,11.3,77777,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,107176,95341,16029,7356,270,5.7,0,0,12.9,77777,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,110726,43078,35810,14205,290,4.1,4,4,16.1,77777,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,108938,42782,27448,11221,300,3.1,3,3,16.1,77777,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,104997,46420,33579,13356,280,4.6,5,5,24.1,77777,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,72286,33200,29077,11613,250,7.2,4,4,24.1,77777,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,60604,35312,18795,7464,250,5.7,5,5,24.1,77777,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,30321,15984,17438,6140,260,2.6,5,5,24.1,77777,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,19108,10644,7258,2434,260,3.6,2,2,24.1,77777,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,3656,0,2265,618,230,3.1,0,0,24.1,77777,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,280,4.1,2,2,11.3,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,13329,3448,5550,1827,290,3.6,0,0,11.3,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,37106,26061,9393,3495,300,3.1,0,0,11.3,77777,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,63200,38004,12999,5232,280,1.5,0,0,11.3,77777,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,87702,43371,15742,6616,210,2.1,0,0,11.3,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,107710,45309,17739,7468,310,2.6,0,0,11.3,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,104868,90458,19267,8445,310,3.1,0,0,16.1,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,114135,44788,30294,12266,170,2.1,2,2,16.1,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,105810,41841,28046,11433,360,1.5,2,2,16.1,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,57553,14318,37267,14539,180,1.5,7,7,19.3,1520,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,78589,35301,38627,14537,340,4.1,8,8,19.3,1520,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,41289,7035,35615,12223,250,3.1,8,8,19.3,3050,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,34582,21834,15766,5677,160,5.2,6,3,19.3,77777,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,14237,5622,9528,3021,160,3.1,10,4,19.3,77777,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,2750,0,2760,698,240,3.1,9,5,19.3,7620,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,42,0.0000,0,88,0.000,0.0,1.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,42,0.0000,0,88,0.000,0.0,1.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,43,0.0000,0,88,0.000,0.0,1.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,43,0.0000,0,88,0.000,0.0,1.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,44,0.0000,0,88,0.000,0.0,1.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,45,0.0000,0,88,0.000,0.0,1.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,45,0.0000,0,88,0.000,0.0,1.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,46,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,70,4.1,10,10,11.3,4570,9,999999999,46,0.0000,0,88,0.000,0.0,1.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,7692,156,7499,2317,80,2.6,10,9,9.7,3660,9,999999999,47,0.0000,0,88,0.000,0.0,1.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,16072,1508,14900,5183,110,4.1,10,9,11.3,3660,9,999999999,46,0.0000,0,88,0.000,0.0,1.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,34406,5915,29552,10388,110,4.1,10,7,11.3,3660,9,999999999,46,0.0000,0,88,0.000,0.0,1.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,44838,8472,35451,13418,150,3.6,10,8,11.3,3660,9,999999999,45,0.0000,0,88,0.000,0.0,1.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,66842,17192,45181,16786,0,0.0,9,7,11.3,7620,9,999999999,44,0.0000,0,88,0.000,0.0,1.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,104886,39443,50784,18600,320,3.1,9,4,11.3,77777,9,999999999,44,0.0000,0,88,0.000,0.0,1.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,71386,10117,58340,20574,270,2.6,10,9,11.3,4270,9,999999999,43,0.0000,0,88,0.000,0.0,1.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,50451,468,50117,18493,270,2.6,10,10,11.3,4270,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,38091,1141,36671,14368,320,4.6,10,10,11.3,4270,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,30665,623,30136,11984,320,3.6,10,10,11.3,4270,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,25925,490,25487,9654,340,6.2,10,10,16.1,7620,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,19329,3871,16102,5775,320,3.1,9,9,19.3,7620,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,10763,555,10365,3208,320,5.2,9,9,24.1,7620,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,1532,0,1446,500,340,3.6,10,10,24.1,4270,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,350,4.1,10,10,19.3,3350,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,8585,72,8619,2544,310,2.1,10,10,19.3,3350,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,22021,3031,20043,6370,290,2.6,10,9,19.3,7620,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,29387,3458,26367,9576,320,3.6,10,10,24.1,3050,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,33715,1321,32406,12517,320,4.1,10,10,24.1,3050,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,63078,16288,42374,16001,300,3.6,10,8,24.1,3050,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,39743,571,39047,15224,260,4.1,10,10,24.1,3050,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,43274,1378,41289,15983,270,5.2,10,10,24.1,3660,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,45364,229,45324,17149,270,4.1,10,10,24.1,3660,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,43147,381,42972,16271,300,3.6,10,10,24.1,3660,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,38001,609,37551,14255,300,5.2,10,10,24.1,3660,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,30046,370,29882,10906,320,5.2,10,10,24.1,3660,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,20989,3503,18269,6387,320,4.6,9,9,24.1,3660,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,13783,3357,11663,3474,290,4.1,8,8,24.1,7620,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,1160,0,1045,331,300,2.6,10,10,24.1,3660,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,43,0.0000,0,88,0.000,0.0,1.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,43,0.0000,0,88,0.000,0.0,1.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,43,0.0000,0,88,0.000,0.0,1.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,43,0.0000,0,88,0.000,0.0,1.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,43,0.0000,0,88,0.000,0.0,1.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,44,0.0000,0,88,0.000,0.0,1.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,44,0.0000,0,88,0.000,0.0,1.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,44,0.0000,0,88,0.000,0.0,1.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,44,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,320,6.2,9,4,6.4,77777,9,999999999,45,0.0000,0,88,0.000,0.0,1.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,6334,346,5330,1767,290,2.1,10,10,6.4,3350,9,999999999,45,0.0000,0,88,0.000,0.0,1.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,20691,4408,17456,5825,360,2.6,10,8,6.4,7620,9,999999999,45,0.0000,0,88,0.000,0.0,1.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,46667,19334,30252,10548,60,2.6,10,7,6.4,7620,9,999999999,45,0.0000,0,88,0.000,0.0,1.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,66875,27045,36461,13705,220,2.1,9,6,6.4,7620,9,999999999,45,0.0000,0,88,0.000,0.0,1.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,41030,4202,35016,13811,240,1.0,10,10,6.4,7620,9,999999999,45,0.0000,0,88,0.000,0.0,1.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,39632,482,39179,15294,310,3.6,10,10,8.0,7620,9,999999999,45,0.0000,0,88,0.000,0.0,1.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,84779,21692,53912,19565,280,5.2,9,7,8.0,3660,9,999999999,44,0.0000,0,88,0.000,0.0,1.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,61488,11581,43564,16670,270,4.6,9,9,8.0,3660,9,999999999,44,0.0000,0,88,0.000,0.0,1.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,54192,8711,42825,16212,320,4.1,9,9,8.0,3660,9,999999999,44,0.0000,0,88,0.000,0.0,1.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,49466,4956,44565,16049,340,3.6,9,9,8.0,3660,9,999999999,44,0.0000,0,88,0.000,0.0,1.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,37797,7774,30756,11131,320,3.1,9,9,8.0,3660,9,999999999,44,0.0000,0,88,0.000,0.0,1.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,29587,6963,25253,7903,340,3.6,9,9,8.0,3660,9,999999999,44,0.0000,0,88,0.000,0.0,1.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,7479,377,7047,2392,70,5.7,9,9,9.7,7620,9,999999999,44,0.0000,0,88,0.000,0.0,1.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,2071,0,2077,598,140,3.6,10,10,9.7,3660,9,999999999,44,0.0000,0,88,0.000,0.0,1.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,44,0.0000,0,88,0.000,0.0,1.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,44,0.0000,0,88,0.000,0.0,1.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,45,0.0000,0,88,0.000,0.0,1.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,45,0.0000,0,88,0.000,0.0,1.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,45,0.0000,0,88,0.000,0.0,1.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,45,0.0000,0,88,0.000,0.0,1.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,45,0.0000,0,88,0.000,0.0,1.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,46,0.0000,0,88,0.000,0.0,1.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,46,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,90,3.1,10,10,1.6,60,9,999999999,46,0.0000,0,88,0.000,0.0,1.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,6047,47,5953,1937,100,3.1,10,10,4.8,150,9,999999999,46,0.0000,0,88,0.000,0.0,1.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,25889,12151,16634,5626,100,3.1,8,8,4.8,5490,9,999999999,46,0.0000,0,88,0.000,0.0,1.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,39910,13418,28076,10025,140,1.5,8,7,8.0,5490,9,999999999,45,0.0000,0,88,0.000,0.0,1.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,57093,14273,42888,15286,160,1.5,8,7,12.9,5490,9,999999999,45,0.0000,0,88,0.000,0.0,1.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,87566,34859,39800,15286,100,1.5,8,4,12.9,77777,9,999999999,45,0.0000,0,88,0.000,0.0,1.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,66040,6229,58708,20437,240,1.5,10,9,12.9,3050,9,999999999,44,0.0000,0,88,0.000,0.0,1.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,72906,14717,52443,19159,240,2.1,10,9,12.9,1010,9,999999999,44,0.0000,0,88,0.000,0.0,1.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,73671,11490,59672,20728,220,3.1,10,9,12.9,3050,9,999999999,44,0.0000,0,88,0.000,0.0,1.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,51074,7501,40942,15680,320,5.2,9,9,11.3,1070,9,999999999,43,0.0000,0,88,0.000,0.0,1.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,47629,5087,42131,15502,140,3.6,9,9,16.1,1070,9,999999999,43,0.0000,0,88,0.000,0.3,1.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,17074,386,16671,6735,60,2.6,10,10,16.1,1070,9,999999999,43,0.0000,0,88,0.000,0.0,1.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,19710,1558,18455,6457,70,2.1,10,10,12.9,1070,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,7925,0,7987,2925,70,3.6,10,10,11.3,1070,9,999999999,42,0.0000,0,88,0.000,0.3,1.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,860,0,866,333,140,3.1,10,10,11.3,1070,9,999999999,42,0.0000,0,88,0.000,0.3,1.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,43,0.0000,0,88,0.000,0.3,1.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,43,0.0000,0,88,0.000,0.0,1.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,43,0.0000,0,88,0.000,0.0,1.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,44,0.0000,0,88,0.000,0.0,1.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,44,0.0000,0,88,0.000,0.0,1.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,44,0.0000,0,88,0.000,0.0,1.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,45,0.0000,0,88,0.000,0.0,1.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,45,0.0000,0,88,0.000,0.0,1.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,45,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,0,0.0,10,10,12.9,3660,9,999999999,46,0.0000,0,88,0.000,0.0,1.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,6755,27,6778,2144,260,3.1,10,10,12.9,3660,9,999999999,46,0.0000,0,88,0.000,0.0,1.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,17286,117,17258,5770,250,4.1,10,10,12.9,3660,9,999999999,46,0.0000,0,88,0.000,0.0,1.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,23244,0,23356,9451,280,5.7,10,10,11.3,3660,9,999999999,45,0.0000,0,88,0.000,0.0,1.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,43380,246,43456,15419,320,5.2,10,10,12.9,3660,9,999999999,45,0.0000,0,88,0.000,0.0,1.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,47063,77,47402,17377,290,3.1,10,10,12.9,3660,9,999999999,45,0.0000,0,88,0.000,0.0,1.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,76054,17219,52127,18975,280,3.6,10,9,12.9,3660,9,999999999,44,0.0000,0,88,0.000,0.0,1.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,93513,30965,39473,15458,320,3.6,8,6,12.9,7620,9,999999999,44,0.0000,0,88,0.000,0.0,1.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,86986,25175,50824,18698,260,3.1,8,7,12.9,3660,9,999999999,44,0.0000,0,88,0.000,0.0,1.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,55404,7955,44609,16759,300,3.1,9,9,12.9,3660,9,999999999,43,0.0000,0,88,0.000,0.0,1.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,47263,6169,40472,15078,240,5.2,9,9,12.9,1370,9,999999999,43,0.0000,0,88,0.000,1.5,1.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,32622,8994,21626,8496,0,0.0,9,9,11.3,1220,9,999999999,43,0.0000,0,88,0.000,0.0,1.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,15096,3596,11155,4236,120,5.2,9,9,24.1,1220,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,12152,4076,6948,2369,240,5.2,5,5,24.1,77777,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,2893,0,2580,700,220,3.6,4,4,16.1,77777,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,42,0.0000,0,88,0.000,0.0,1.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,42,0.0000,0,88,0.000,0.0,1.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,42,0.0000,0,88,0.000,0.0,1.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,42,0.0000,0,88,0.000,0.0,1.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,42,0.0000,0,88,0.000,0.0,1.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,42,0.0000,0,88,0.000,0.0,1.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,42,0.0000,0,88,0.000,0.0,1.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,42,0.0000,0,88,0.000,0.0,1.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,42,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,280,3.1,8,7,11.3,7620,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,9380,1214,7992,2414,270,6.2,9,7,11.3,7620,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,33805,22806,13624,4821,270,3.1,8,4,17.7,77777,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,51943,29242,19527,7544,320,4.6,6,3,24.1,77777,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,80734,39847,20671,8541,310,4.6,5,3,24.1,77777,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,85424,35674,27990,11395,240,6.2,6,5,40.2,7620,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,88133,32370,36099,14251,270,5.2,8,5,32.2,7620,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,117595,45589,34188,13670,290,6.7,8,5,32.2,7620,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,115784,46331,39527,15422,300,6.2,7,5,32.2,7620,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,58864,16913,31108,12534,270,5.2,7,7,32.2,7620,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,80853,37574,27377,11078,300,4.1,7,7,32.2,7620,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,59260,32131,27618,10308,280,5.2,6,6,32.2,7620,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,34087,18377,20264,6913,270,5.7,7,7,32.2,7620,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,16173,7891,9451,3035,270,3.6,5,5,32.2,77777,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,3762,0,2588,704,270,3.6,5,5,32.2,77777,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,42,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,270,5.2,8,4,9.7,77777,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,9423,891,8591,2528,280,4.6,9,7,9.7,3660,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,29773,17741,16019,5461,270,5.7,7,5,12.9,7620,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,54825,31882,17693,6926,280,4.6,3,2,19.3,77777,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,75785,36250,26577,10669,300,5.2,4,3,19.3,77777,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,70392,20820,42409,16053,250,5.7,8,8,22.5,820,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,87779,28662,45551,17198,290,5.2,8,8,24.1,880,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,104837,38183,36295,14396,290,6.7,7,7,24.1,1010,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,107394,41497,41868,16145,280,6.2,8,6,32.2,1070,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,91473,37216,32033,12843,300,6.7,7,5,32.2,1070,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,81425,38896,29068,11642,280,5.7,7,3,32.2,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,59844,33200,22803,8858,300,6.2,6,3,32.2,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,41214,28249,15665,5688,280,5.2,8,2,32.2,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,11053,1688,9653,3089,280,5.2,10,7,32.2,1220,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,2882,0,2785,741,360,3.6,10,6,32.2,1070,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,34,0.0000,0,88,0.000,0.0,1.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,34,0.0000,0,88,0.000,0.0,1.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,34,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,290,3.6,0,0,16.1,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,9169,1593,6984,2185,310,4.1,2,1,19.3,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,28349,15592,16530,5583,330,5.2,3,2,19.3,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,50792,26310,26501,9602,310,4.1,4,3,19.3,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,73499,33597,35834,13511,310,6.7,6,3,24.1,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,88808,35593,42081,15931,330,6.2,5,2,24.1,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,91943,29474,53062,19155,320,5.2,4,3,32.2,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,111597,42541,47628,17877,350,5.2,3,3,24.1,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,98186,35189,44941,17062,340,4.1,3,3,24.1,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,90201,34128,44829,16796,330,6.2,5,5,24.1,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,74268,32777,33091,12949,330,7.2,2,2,24.1,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,59168,32558,23999,9239,330,6.2,1,1,32.2,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,35479,21942,16737,5999,330,5.2,1,1,32.2,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,15211,6357,10070,3188,320,3.1,1,0,32.2,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,3084,0,2988,773,320,1.5,3,0,24.1,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,33,0.0000,0,88,0.000,0.0,1.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,33,0.0000,0,88,0.000,0.0,1.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,34,0.0000,0,88,0.000,0.0,1.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,34,0.0000,0,88,0.000,0.0,1.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,34,0.0000,0,88,0.000,0.0,1.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,34,0.0000,0,88,0.000,0.0,1.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,34,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,290,2.1,8,3,11.3,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,10196,1873,8385,2481,300,1.5,10,5,11.3,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,23216,5800,19483,6230,200,2.1,10,5,11.3,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,49892,26234,25480,9316,250,1.5,9,6,12.9,7620,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,58152,20322,35870,13506,230,2.1,10,7,12.9,7620,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,55532,8972,44199,16517,270,3.1,10,6,16.1,7620,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,74665,21876,40078,15567,320,4.1,9,7,16.1,7620,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,83197,21718,52281,19132,300,2.6,9,6,16.1,7620,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,47982,10309,28117,11480,270,3.1,10,8,16.1,7620,9,999999999,37,0.0000,0,88,0.000,2.3,1.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,43568,6212,34160,13556,40,1.5,9,9,19.3,1220,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,61289,20675,35939,13830,90,1.5,8,7,19.3,9140,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,46223,19047,25423,9705,160,4.1,5,4,24.1,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,37108,23181,15021,5506,170,5.2,4,3,24.1,77777,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,15302,2867,13656,3857,150,4.6,7,5,24.1,9140,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,1366,0,1368,431,180,7.2,10,8,19.3,910,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,270,4.1,8,7,11.3,7620,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,3839,0,3729,1277,270,4.6,10,10,11.3,7620,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,12898,988,11916,4308,270,5.7,9,9,11.3,7620,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,31170,3678,27981,9987,260,4.1,8,8,11.3,7620,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,61167,24103,30417,11930,270,4.6,5,5,16.1,77777,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,72584,19857,47704,17443,330,4.1,5,5,16.1,77777,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,101315,37643,38243,15008,310,5.2,5,5,16.1,77777,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,114976,43149,49804,18505,300,4.1,5,5,19.3,77777,9,999999999,43,0.0000,0,88,0.000,0.0,1.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,109098,41854,45244,17158,310,5.2,5,5,19.3,77777,9,999999999,43,0.0000,0,88,0.000,0.0,1.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,49084,5437,41786,15947,10,7.7,8,8,24.1,1520,9,999999999,43,0.0000,0,88,0.000,0.3,1.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,78994,35195,31600,12510,320,3.1,7,3,24.1,77777,9,999999999,44,0.0000,0,88,0.000,0.0,1.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,57994,27904,31434,11373,350,6.2,7,3,24.1,77777,9,999999999,44,0.0000,0,88,0.000,0.0,1.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,32959,16900,19424,6737,350,5.2,7,5,48.3,9140,9,999999999,45,0.0000,0,88,0.000,0.0,1.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,13489,3719,10792,3354,330,5.2,5,5,48.3,77777,9,999999999,45,0.0000,0,88,0.000,0.0,1.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,2497,0,2395,680,330,2.1,4,3,40.2,77777,9,999999999,44,0.0000,0,88,0.000,0.0,1.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,43,0.0000,0,88,0.000,0.0,1.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,43,0.0000,0,88,0.000,0.0,1.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,42,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,340,4.1,8,3,19.3,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,8730,828,7777,2351,340,3.6,8,3,19.3,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,14924,416,14651,5089,340,3.1,9,9,19.3,9140,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,35581,5406,31227,10716,350,3.6,9,8,19.3,9140,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,68654,29244,35692,13465,0,0.0,5,4,16.1,77777,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,80420,27396,45634,16904,270,2.1,2,2,16.1,77777,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,105916,40754,39148,15289,340,2.6,1,1,16.1,77777,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,110017,41434,42640,16428,270,5.2,2,2,19.3,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,109819,42451,51976,18954,300,5.7,4,4,24.1,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,84066,30473,43608,16443,330,5.2,3,3,40.2,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,79583,37039,34966,13519,290,5.7,2,2,40.2,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,58144,30152,29010,10720,330,3.6,3,2,32.2,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,36108,21663,19043,6637,280,4.1,0,0,32.2,77777,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,14615,5397,10592,3315,300,3.6,0,0,32.2,77777,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,2397,0,2403,683,300,3.6,4,3,24.1,77777,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,33,0.0000,0,88,0.000,0.0,1.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,33,0.0000,0,88,0.000,0.0,1.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,34,0.0000,0,88,0.000,0.0,1.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,34,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,250,3.6,9,5,24.1,7620,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,9718,1119,8673,2517,270,3.6,9,6,24.1,7620,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,28018,11988,20275,6357,270,5.2,5,5,24.1,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,54916,32199,21431,8130,210,2.6,5,5,24.1,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,73292,35307,24520,9935,270,3.6,3,3,24.1,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,105922,44976,22735,9462,270,5.7,2,2,24.1,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,114157,43875,24238,10026,240,4.1,2,2,24.1,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,118335,45620,32047,12918,270,4.1,3,3,24.1,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,105243,40261,31969,12876,260,4.1,4,4,24.1,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,94289,37721,33095,13225,290,2.6,5,5,24.1,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,87280,43217,23255,9580,300,6.2,5,2,24.1,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,61349,34550,24878,9523,290,5.7,7,3,32.2,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,34481,15641,23630,7697,280,4.1,7,6,24.1,9140,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,15336,5859,10780,3362,300,4.6,8,8,24.1,3350,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,3193,0,2991,788,300,2.6,7,6,24.1,9140,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,42,0.0000,0,88,0.000,0.0,1.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,42,0.0000,0,88,0.000,0.0,1.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,43,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,250,3.6,10,10,14.5,2440,9,999999999,43,0.0000,0,88,0.000,0.0,1.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,4035,0,4043,1374,280,3.1,10,10,12.9,2440,9,999999999,44,0.0000,0,88,0.000,0.0,1.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,15484,105,15555,5321,250,2.1,10,10,12.9,2440,9,999999999,44,0.0000,0,88,0.000,0.0,1.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,26161,4110,21932,8287,270,2.6,9,9,12.9,2440,9,999999999,44,0.0000,0,88,0.000,0.0,1.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,22833,1615,20420,8442,270,4.1,10,10,11.3,2440,9,999999999,44,0.0000,0,88,0.000,0.0,1.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,31972,634,31091,12519,250,4.1,10,10,11.3,2440,9,999999999,44,0.0000,0,88,0.000,0.0,1.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,101035,36688,45888,17312,270,5.2,9,8,16.1,2440,9,999999999,44,0.0000,0,88,0.000,0.0,1.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,71762,14072,50851,18792,270,6.2,9,8,19.3,3660,9,999999999,44,0.0000,0,88,0.000,0.0,1.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,100408,36103,35806,14228,260,4.1,5,5,19.3,77777,9,999999999,45,0.0000,0,88,0.000,0.0,1.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,92656,36374,34293,13633,270,6.2,8,4,19.3,77777,9,999999999,45,0.0000,0,88,0.000,0.0,1.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,80977,36376,33872,13230,200,5.2,9,7,19.3,1370,9,999999999,45,0.0000,0,88,0.000,1.8,1.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,17513,276,17233,6962,360,3.1,10,10,9.7,3660,9,999999999,45,0.0000,0,88,0.000,0.3,1.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,36810,21784,17530,6256,270,2.6,8,6,16.1,7620,9,999999999,45,0.0000,0,88,0.000,0.0,1.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,10398,1760,8415,2800,280,2.6,8,7,24.1,7620,9,999999999,45,0.0000,0,88,0.000,0.0,1.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,2198,0,2093,621,280,2.6,8,6,24.1,7620,9,999999999,44,0.0000,0,88,0.000,0.0,1.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,44,0.0000,0,88,0.000,0.0,1.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,43,0.0000,0,88,0.000,0.0,1.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,43,0.0000,0,88,0.000,0.0,1.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,42,0.0000,0,88,0.000,0.3,1.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,42,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,260,3.1,3,1,24.1,77777,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,10421,2155,7156,2205,240,2.6,1,0,24.1,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,31055,19935,13381,4726,260,4.1,0,0,16.1,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,56353,32433,19144,7404,260,3.6,0,0,16.1,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,79617,38178,23797,9695,290,3.6,0,0,16.1,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,99489,41933,27209,11145,240,3.6,0,0,12.9,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,108376,41291,30560,12392,250,5.7,1,1,12.9,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,113275,42593,44346,16957,330,3.1,4,4,11.3,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,110219,43165,42534,16350,250,3.6,4,4,12.9,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,98203,40882,32251,12925,250,5.2,3,3,12.9,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,84702,40217,33504,13099,240,4.1,3,3,12.9,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,49871,21798,27710,10381,250,2.6,3,3,12.9,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,39167,26107,15481,5651,200,5.2,1,1,12.9,77777,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,16581,8104,9158,2989,230,3.6,0,0,12.9,77777,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,3106,0,2902,778,250,2.6,0,0,9.7,77777,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,33,0.0000,0,88,0.000,0.0,1.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,33,0.0000,0,88,0.000,0.0,1.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,33,0.0000,0,88,0.000,0.0,1.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,33,0.0000,0,88,0.000,0.0,1.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,33,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,250,4.1,0,0,16.1,77777,9,999999999,31,0.0000,0,88,0.000,0.0,1.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,9289,1456,7568,2285,270,5.2,0,0,19.3,77777,9,999999999,31,0.0000,0,88,0.000,0.0,1.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,28503,16294,15771,5358,270,6.2,0,0,16.1,77777,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,52582,29332,23519,8743,270,6.2,0,0,16.1,77777,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,76214,36400,29663,11669,260,4.1,0,0,24.1,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,96269,40689,35357,13932,310,5.2,2,2,24.1,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,98750,34745,49267,18219,270,6.2,4,4,19.3,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,81426,19840,52938,19320,270,5.2,4,4,19.3,77777,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,76836,19098,49134,18251,250,4.1,4,4,16.1,77777,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,52870,1238,51646,18541,230,11.3,9,9,16.1,1520,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,40954,7957,30365,12096,290,6.2,8,8,16.1,1520,9,999999999,43,0.0000,0,88,0.000,0.0,1.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,55199,23106,34564,12141,240,3.6,7,5,16.1,7620,9,999999999,44,0.0000,0,88,0.000,0.0,1.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,35168,18799,20134,6940,230,4.1,2,1,19.3,77777,9,999999999,46,0.0000,0,88,0.000,0.0,1.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,14916,5314,10462,3305,240,4.6,0,0,19.3,77777,9,999999999,47,0.0000,0,88,0.000,0.0,1.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,2982,0,2992,794,230,3.6,0,0,16.1,77777,9,999999999,46,0.0000,0,88,0.000,0.0,1.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,45,0.0000,0,88,0.000,0.0,1.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,44,0.0000,0,88,0.000,0.0,1.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,43,0.0000,0,88,0.000,0.0,1.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,42,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,250,5.7,8,3,19.3,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,9472,1305,7541,2279,250,5.2,8,4,16.1,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,31108,18148,17675,5806,290,5.2,7,3,16.1,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,46015,22860,22325,8395,270,6.2,7,3,16.1,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,75772,35587,22694,9293,270,5.2,6,2,19.3,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,92069,37996,33169,13218,230,5.7,6,2,24.1,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,107092,41639,36045,14279,270,6.7,5,3,24.1,77777,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,28299,184,28213,11512,310,6.2,10,10,19.3,3660,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,76486,16944,53626,19384,300,5.2,9,8,24.1,3660,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,92380,35096,46224,17185,290,6.2,7,6,24.1,8530,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,84434,38309,40431,15096,270,6.2,7,7,24.1,8530,9,999999999,43,0.0000,0,88,0.000,0.0,1.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,57501,29403,24924,9568,270,5.7,5,4,32.2,77777,9,999999999,43,0.0000,0,88,0.000,0.0,1.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,31692,13625,21499,7259,260,5.2,7,6,32.2,10670,9,999999999,44,0.0000,0,88,0.000,0.0,1.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,9723,1052,8636,2860,250,5.7,7,6,32.2,9140,9,999999999,45,0.0000,0,88,0.000,0.0,1.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,2902,0,2803,764,230,3.6,7,6,32.2,9140,9,999999999,45,0.0000,0,88,0.000,0.0,1.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,44,0.0000,0,88,0.000,0.0,1.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,44,0.0000,0,88,0.000,0.0,1.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,44,0.0000,0,88,0.000,0.0,1.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,43,0.0000,0,88,0.000,0.0,1.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,43,0.0000,0,88,0.000,0.0,1.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,43,0.0000,0,88,0.000,0.0,1.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,42,0.0000,0,88,0.000,0.0,1.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,42,0.0000,0,88,0.000,0.0,1.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,42,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,230,2.1,8,3,24.1,77777,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,9335,496,8835,2509,230,2.1,7,3,24.1,77777,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,27220,13533,17387,5728,270,2.1,2,0,24.1,77777,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,50007,26118,25709,9337,260,2.6,1,0,24.1,77777,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,73612,34408,32350,12482,240,2.6,0,0,24.1,77777,9,999999999,43,0.0000,0,88,0.000,0.0,1.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,93432,38724,37522,14608,210,4.6,0,0,24.1,77777,9,999999999,44,0.0000,0,88,0.000,0.0,1.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,90954,29929,47208,17665,260,5.2,3,3,32.2,77777,9,999999999,44,0.0000,0,88,0.000,0.0,1.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,101212,34592,48736,18204,240,4.6,5,5,32.2,77777,9,999999999,45,0.0000,0,88,0.000,0.0,1.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,89679,25831,55238,19769,220,6.2,5,5,40.2,77777,9,999999999,46,0.0000,0,88,0.000,0.0,1.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,79731,26063,45627,17014,250,7.7,5,5,40.2,77777,9,999999999,46,0.0000,0,88,0.000,0.0,1.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,28647,137,28570,11476,300,15.9,10,10,32.2,760,9,999999999,47,0.0000,0,88,0.000,0.0,1.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,33905,3036,31163,11327,190,3.6,9,9,32.2,3050,9,999999999,48,0.0000,0,88,0.000,0.0,1.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,19241,1652,17976,6382,220,3.6,10,9,32.2,3050,9,999999999,48,0.0000,0,88,0.000,0.0,1.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,10556,429,10268,3263,100,2.6,9,8,32.2,9140,9,999999999,49,0.0000,0,88,0.000,0.0,1.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,2797,0,2698,747,140,4.1,7,3,24.1,77777,9,999999999,48,0.0000,0,88,0.000,0.0,1.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,48,0.0000,0,88,0.000,0.0,1.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,47,0.0000,0,88,0.000,0.0,1.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,47,0.0000,0,88,0.000,0.0,1.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,46,0.0000,0,88,0.000,0.0,1.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,46,0.0000,0,88,0.000,0.0,1.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,45,0.0000,0,88,0.000,0.0,1.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,44,0.0000,0,88,0.000,0.0,1.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,44,0.0000,0,88,0.000,0.0,1.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,43,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,240,3.6,4,4,24.1,77777,9,999999999,43,0.0000,0,88,0.000,0.0,1.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,11465,2262,6526,2042,230,4.1,4,3,19.3,77777,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,36072,23054,8249,3083,240,4.1,0,0,19.3,77777,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,61435,33912,11362,4597,240,4.1,0,0,19.3,77777,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,47517,10400,35694,13445,250,5.2,8,6,24.1,9140,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,55100,11903,38145,14803,280,5.7,8,7,40.2,3660,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,117086,46429,33126,13296,280,4.6,5,5,40.2,77777,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,93240,29914,44639,17051,260,4.6,6,6,40.2,1160,9,999999999,42,0.0000,0,88,0.000,7.4,1.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,54432,13720,26010,10710,240,4.6,8,8,24.1,1520,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,74603,23396,40313,15538,280,3.1,8,7,24.1,7620,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,28400,63,28444,11477,240,5.2,10,10,24.1,3660,9,999999999,41,0.0000,0,88,0.000,0.3,1.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,17606,218,17447,7050,240,4.1,10,10,24.1,3660,9,999999999,41,0.0000,0,88,0.000,9.9,1.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,14209,99,14153,5265,230,4.1,10,10,16.1,1220,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,9826,154,9754,3146,230,2.1,10,10,16.1,1220,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,1268,0,1270,404,240,6.2,10,10,11.3,460,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.5,1.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,38,0.0000,0,88,0.000,0.8,1.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,38,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,320,1.5,9,9,24.1,3660,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,2848,0,2852,980,230,1.5,10,10,19.3,3660,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,29552,16502,17996,5840,250,1.5,8,3,19.3,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,49448,26738,23197,8619,270,2.6,7,2,19.3,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,78020,38729,24369,9869,250,2.1,6,2,19.3,77777,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,95849,41267,30225,12203,260,2.6,6,2,19.3,77777,9,999999999,31,0.0000,0,88,0.000,0.0,1.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,106948,41716,31708,12787,310,2.6,5,2,19.3,77777,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,111160,41506,31795,12835,290,3.6,4,3,19.3,77777,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,110530,43000,41848,16148,270,3.1,5,4,19.3,77777,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,79000,25256,45257,16927,270,3.1,6,6,19.3,7620,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,81261,37366,33403,13073,310,4.1,7,3,16.1,77777,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,63959,36046,27219,10241,310,4.1,8,3,16.1,77777,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,42682,29553,18217,6441,310,3.1,9,2,19.3,77777,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,16422,7476,11323,3483,320,3.6,9,2,19.3,77777,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,3885,0,3690,877,290,4.1,9,2,19.3,77777,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,10517,2819,7257,2186,40,2.1,9,2,12.9,77777,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,31267,21200,14745,5053,50,2.1,9,2,12.9,77777,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,56238,34058,26064,9389,70,2.6,9,2,12.9,77777,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,72236,35333,25270,10170,120,2.1,8,3,12.9,77777,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,96557,42691,27828,11338,100,1.5,8,3,12.9,77777,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,116208,48998,33905,13524,300,1.5,7,2,12.9,77777,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,94850,32190,45205,17177,40,1.5,6,4,12.9,9140,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,119317,48701,34007,13581,100,2.6,5,5,12.9,77777,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,97748,40796,33379,13303,120,2.1,4,4,12.9,77777,9,999999999,31,0.0000,0,88,0.000,0.0,1.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,91623,44506,20552,8567,80,4.6,3,1,12.9,77777,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,65103,37893,17746,7131,0,0.0,4,1,12.9,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,41953,29469,15079,5531,100,3.1,7,1,12.9,77777,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,18118,10130,11026,3420,90,2.6,10,2,12.9,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,3308,0,3105,810,90,3.6,10,3,12.9,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,34,0.0000,0,88,0.000,0.0,1.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,34,0.0000,0,88,0.000,0.0,1.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,34,0.0000,0,88,0.000,0.0,1.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,34,0.0000,0,88,0.000,0.0,1.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,34,0.0000,0,88,0.000,0.0,1.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,33,0.0000,0,88,0.000,0.0,1.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,33,0.0000,0,88,0.000,0.0,1.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,33,0.0000,0,88,0.000,0.0,1.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,9956,1613,6917,2114,80,3.6,2,0,6.4,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,29406,18036,13237,4650,90,3.6,1,1,6.4,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,56455,32981,17934,6971,100,2.1,0,0,8.0,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,80532,38998,22345,9154,80,2.6,0,0,11.3,77777,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,92826,38284,25960,10685,90,2.6,1,1,12.9,77777,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,109970,43367,31591,12745,10,2.1,3,3,12.9,77777,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,107443,41232,38372,15055,100,2.6,2,2,16.1,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,112455,44276,29041,11816,60,1.5,1,1,19.3,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,102280,42563,25983,10679,80,2.6,1,1,19.3,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,80676,37140,32324,12734,80,4.1,3,3,19.3,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,54178,27713,21849,8575,90,5.7,1,1,19.3,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,40588,27219,14737,5433,80,4.1,0,0,19.3,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,17291,9043,8957,2943,90,3.6,0,0,19.3,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,3210,0,2899,780,100,3.1,0,0,19.3,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,11129,669,5581,1792,320,2.6,0,0,11.3,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,33570,21582,9955,3649,330,3.6,0,0,11.3,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,59324,34317,13908,5548,320,2.6,0,0,12.9,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,73907,35125,28661,11318,250,3.6,6,2,12.9,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,87718,35880,30087,12159,330,2.1,7,2,12.9,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,107974,43192,28369,11566,10,1.5,7,2,12.9,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,92637,31363,42339,16317,70,2.1,8,4,12.9,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,97229,33659,47313,17744,320,2.6,9,7,11.3,1520,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,76837,24737,42665,16205,360,3.6,8,3,11.3,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,75672,33651,31364,12421,310,3.1,5,5,9.7,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,60431,33000,21957,8611,340,3.1,4,4,9.7,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,34368,16527,22220,7428,310,3.1,6,6,9.7,3350,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,5062,10478,3310,360,3.6,8,4,9.7,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,3485,0,3287,833,10,2.1,8,3,9.7,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,8859,994,6806,2076,310,3.1,0,0,6.4,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,29077,17668,13642,4750,350,4.6,0,0,6.4,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,53955,31036,19957,7622,360,3.1,0,0,6.4,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,77879,38911,25116,10117,20,2.6,0,0,6.4,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,98182,41895,28846,11730,270,2.1,0,0,6.4,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,111268,43184,31100,12583,50,2.6,0,0,6.4,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,117509,44542,32110,12952,350,4.1,0,0,6.4,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,109410,41357,32697,13151,320,2.1,3,1,6.4,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,93391,37228,39513,15275,280,2.1,3,3,6.4,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,86976,41401,26854,10908,260,3.6,0,0,8.0,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,64219,35432,22253,8718,280,3.1,0,0,9.7,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,39338,24527,16284,5911,280,4.1,0,0,9.7,77777,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,16259,7126,9549,3095,280,3.1,0,0,9.7,77777,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,2692,0,2593,726,290,2.6,3,2,9.7,77777,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,33,0.0000,0,88,0.000,0.0,1.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,33,0.0000,0,88,0.000,0.0,1.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,33,0.0000,0,88,0.000,0.0,1.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,33,0.0000,0,88,0.000,0.0,1.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,33,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,12639,0,4223,1408,290,1.5,0,0,9.7,77777,9,999999999,31,0.0000,0,88,0.000,0.0,1.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,36614,21788,7128,2678,230,2.1,0,0,6.4,77777,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,62647,34178,9883,4008,270,2.1,0,0,6.4,77777,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,79476,89993,13521,2536,200,2.1,0,0,9.7,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,95125,93226,14585,3996,310,2.1,0,0,6.4,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,107328,96485,14989,6602,220,3.6,0,0,8.0,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,110451,96071,15176,9635,280,5.2,0,0,9.7,77777,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,107772,93373,17519,9051,30,2.6,2,0,9.7,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,114760,49009,24053,9951,130,1.5,7,0,8.0,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,89001,42599,22995,9503,360,3.1,9,1,8.0,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,58985,31734,23903,9239,50,1.5,10,5,8.0,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,38671,24705,17266,6181,200,1.5,10,5,8.0,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,15786,5029,12600,3722,180,3.6,10,5,8.0,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,3809,0,3186,816,180,2.1,9,4,8.0,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,8844,976,6794,2060,270,3.6,0,0,6.4,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,28565,17216,13838,4789,300,2.1,0,0,6.4,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,53196,30262,20465,7773,320,2.1,0,0,6.4,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,77390,37645,25821,10367,350,2.6,0,0,8.0,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,97531,42115,29633,11999,300,3.1,0,0,9.7,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,111434,44860,32047,12897,290,2.6,0,0,9.7,77777,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,117575,45728,33157,13308,320,3.6,1,1,9.7,77777,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,110519,42939,33517,13424,10,2.6,1,1,11.3,77777,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,100036,42190,30040,12150,360,2.1,1,1,11.3,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,78469,35270,34820,13501,320,2.1,2,2,11.3,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,59738,31804,26991,10179,320,2.1,2,2,9.7,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,28255,5369,24669,7916,220,2.1,7,7,8.0,7620,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,3509,24,3392,1217,200,7.7,10,10,6.4,7620,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,2387,0,2404,739,200,7.7,10,10,8.0,7620,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.3,1.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,32,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,2.3,1.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,31,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,9799,1508,6994,2092,250,3.6,7,2,4.8,77777,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,30458,19937,12277,4342,250,5.7,3,1,8.0,77777,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,57173,34048,16086,6312,230,4.6,0,0,9.7,77777,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,81775,40597,20031,8273,290,5.2,0,0,11.3,77777,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,101596,43736,22936,9535,280,3.6,0,0,11.3,77777,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,115092,44921,24671,10194,310,4.6,0,0,12.9,77777,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,122021,45816,25404,10468,240,3.6,0,0,12.9,77777,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,120023,46348,25124,10358,300,4.1,0,0,12.9,77777,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,104956,44124,24291,10037,180,3.6,1,1,12.9,77777,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,88352,42866,24451,10036,210,4.1,1,1,12.9,77777,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,65608,38136,21978,8608,240,4.1,1,1,11.3,77777,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,40732,27748,15167,5559,180,3.1,1,1,11.3,77777,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,16545,8440,8750,2882,230,3.6,2,2,11.3,77777,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,2197,0,2093,617,210,5.2,5,5,11.3,77777,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.0,1.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,33,0.0000,0,88,0.000,0.0,1.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,33,0.0000,0,88,0.000,0.0,1.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,34,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,8755,976,6590,1999,270,3.1,0,0,9.7,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,28315,17865,13540,4686,270,2.1,0,0,12.9,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,53345,32511,20101,7623,270,3.1,0,0,19.3,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,77860,41077,25382,10169,300,4.6,0,0,40.2,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,97816,44531,29152,11800,250,3.6,0,0,40.2,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,111566,46604,31544,12697,290,4.1,0,0,40.2,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,84336,23990,50474,18624,250,4.6,3,3,40.2,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,103985,40475,40820,15801,190,3.6,4,4,40.2,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,76921,24299,45210,16893,230,6.7,6,6,40.2,1520,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,69590,25160,42426,15584,220,5.2,5,5,48.3,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,51064,22121,30408,11108,200,5.2,6,6,48.3,1520,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,24435,6500,19260,6706,190,5.2,7,7,48.3,1370,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,10305,846,9565,3086,180,5.2,8,8,48.3,3660,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,2398,0,2295,658,220,4.6,1,1,48.3,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,9259,808,5972,1854,240,2.1,0,0,24.1,77777,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,30392,19936,11426,4079,300,2.6,0,0,24.1,77777,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,54309,32731,16421,6412,280,1.5,1,1,32.2,77777,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,75210,37249,28554,11241,330,2.1,2,2,40.2,77777,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,90012,38840,31769,12712,230,2.1,3,3,40.2,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,109543,45193,31640,12735,200,2.6,3,3,40.2,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,101352,36845,46651,17573,160,4.6,6,6,40.2,1520,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,92214,31661,45304,17149,190,4.1,7,7,40.2,1520,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,79900,24340,50255,18182,190,2.6,8,8,40.2,1520,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,44271,4826,38902,14666,150,3.1,9,9,40.2,1520,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,38712,12680,25407,9697,180,3.6,8,8,40.2,1520,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,9567,1516,7648,2972,270,5.2,9,9,40.2,1520,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,11143,2424,8834,2904,300,4.1,9,9,40.2,1520,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,1882,0,1886,565,200,3.6,9,9,40.2,1520,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,34,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,10180,1292,6371,1937,280,3.1,6,6,24.1,3660,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,21392,5942,17198,5556,320,3.1,8,8,16.1,3660,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,33547,6957,27576,9689,310,4.1,8,8,17.7,3660,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,66215,25635,39724,14372,210,2.6,8,8,19.3,5490,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,63565,10271,52188,18374,290,3.6,9,9,24.1,5490,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,85316,29817,30989,12535,270,4.1,6,6,24.1,5490,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,109716,41155,33688,13500,300,2.1,5,5,32.2,77777,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,121900,49047,29243,11894,110,1.5,4,4,40.2,77777,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,92864,37271,31339,12616,310,2.1,4,4,40.2,77777,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,80795,37050,30888,12273,240,4.1,4,4,40.2,77777,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,59710,32402,24751,9497,270,2.6,4,4,40.2,77777,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,47183,34851,15796,5742,280,3.1,4,4,40.2,77777,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,15883,7438,9253,3004,320,2.1,4,4,40.2,77777,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,3423,0,2683,725,340,3.1,3,3,24.1,77777,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,42,0.0000,0,88,0.000,0.0,1.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,42,0.0000,0,88,0.000,0.0,1.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,42,0.0000,0,88,0.000,0.0,1.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,42,0.0000,0,88,0.000,0.0,1.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,42,0.0000,0,88,0.000,0.0,1.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,42,0.0000,0,88,0.000,0.0,1.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,43,0.0000,0,88,0.000,0.0,1.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,43,0.0000,0,88,0.000,0.0,1.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,43,0.0000,0,88,0.000,0.0,1.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,5783,0,5242,1665,310,1.5,3,3,9.7,77777,9,999999999,43,0.0000,0,88,0.000,0.0,1.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,25782,14261,14012,4795,330,2.1,2,2,9.7,77777,9,999999999,43,0.0000,0,88,0.000,0.0,1.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,49081,27509,21107,7923,310,3.1,1,1,11.3,77777,9,999999999,44,0.0000,0,88,0.000,0.0,1.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,70964,34266,27140,10770,310,2.6,1,1,16.1,77777,9,999999999,44,0.0000,0,88,0.000,0.0,1.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,93045,40365,36656,14298,360,2.6,2,2,19.3,77777,9,999999999,45,0.0000,0,88,0.000,0.0,1.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,98412,36128,47096,17593,0,0.0,5,5,19.3,77777,9,999999999,45,0.0000,0,88,0.000,0.0,1.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,101458,36112,45343,17221,280,2.6,4,4,19.3,77777,9,999999999,46,0.0000,0,88,0.000,0.0,1.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,103848,38868,45796,17301,320,2.6,4,4,19.3,77777,9,999999999,46,0.0000,0,88,0.000,0.0,1.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,96540,39770,41719,15914,300,4.1,4,4,24.1,77777,9,999999999,46,0.0000,0,88,0.000,0.0,1.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,81133,37806,32437,12759,280,4.1,3,3,24.1,77777,9,999999999,47,0.0000,0,88,0.000,0.0,1.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,58614,31734,26705,10071,0,0.0,2,2,24.1,77777,9,999999999,47,0.0000,0,88,0.000,0.0,1.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,32923,17774,18629,6531,290,3.6,4,4,24.1,77777,9,999999999,48,0.0000,0,88,0.000,0.0,1.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,5974,586,4930,1744,100,6.2,9,9,16.1,910,9,999999999,48,0.0000,0,88,0.000,0.0,1.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,1336,0,1346,484,180,6.2,9,9,11.3,1070,9,999999999,47,0.0000,0,88,0.000,0.0,1.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,46,0.0000,0,88,0.000,0.0,1.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,46,0.0000,0,88,0.000,0.0,1.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,45,0.0000,0,88,0.000,0.0,1.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,44,0.0000,0,88,0.000,0.0,1.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,43,0.0000,0,88,0.000,0.0,1.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,42,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,6625,93,5650,1759,60,2.6,1,1,12.9,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,25606,13580,15144,5068,0,0.0,1,1,12.9,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,48088,25930,24060,8758,80,3.1,1,1,16.1,77777,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,73537,36192,29609,11558,130,2.6,0,0,16.1,77777,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,93308,40020,34324,13572,40,2.1,0,0,16.1,77777,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,103114,39808,37098,14615,20,5.2,1,1,19.3,77777,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,104961,37936,45638,17314,60,4.1,2,2,24.1,77777,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,104758,39001,46745,17576,40,3.6,3,3,24.1,77777,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,95526,37953,44592,16737,30,4.1,2,2,24.1,77777,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,67290,23907,40021,14971,90,4.1,2,2,19.3,77777,9,999999999,43,0.0000,0,88,0.000,0.0,1.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,46004,13872,33563,11888,110,4.1,6,6,32.2,2440,9,999999999,43,0.0000,0,88,0.000,0.0,1.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,19248,1666,17869,6331,70,2.1,9,9,24.1,2740,9,999999999,43,0.0000,0,88,0.000,0.0,1.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,5970,0,6017,2378,350,4.6,9,9,40.2,1220,9,999999999,44,0.0000,0,88,0.000,0.0,1.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,1339,0,1348,482,60,1.5,10,9,24.1,3050,9,999999999,44,0.0000,0,88,0.000,0.0,1.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,43,0.0000,0,88,0.000,0.0,1.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,43,0.0000,0,88,0.000,0.0,1.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,43,0.0000,0,88,0.000,0.0,1.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,42,0.0000,0,88,0.000,0.0,1.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,42,0.0000,0,88,0.000,0.0,1.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,42,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,6161,51,5851,1798,40,2.1,9,7,12.9,7620,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,12841,234,12667,4411,40,2.1,10,10,12.9,7620,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,34179,10359,24870,8969,40,4.1,9,8,11.3,7620,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,41198,8403,31402,12104,80,4.1,9,9,9.7,7620,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,52349,7344,43001,16161,90,3.6,9,9,9.7,7620,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,84896,23861,53010,19120,120,5.2,9,9,9.7,7620,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,71499,13341,52304,19140,110,4.1,9,9,9.7,7620,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,88677,29281,40893,15861,120,4.1,8,6,9.7,7620,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,64538,12412,48580,17803,90,5.2,6,6,16.1,4570,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,63417,20289,40072,14994,110,4.6,7,7,16.1,4570,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,66612,37698,26610,10061,100,5.2,7,4,16.1,4570,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,28573,11297,19293,6707,130,3.1,6,6,16.1,1370,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,14752,3388,12657,3689,130,4.1,9,6,12.9,1520,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,2780,0,2575,694,150,3.6,3,2,9.7,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,6976,183,6345,1899,0,0.0,8,4,8.0,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,19649,4312,16656,5389,120,2.6,8,4,9.7,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,43280,17117,29286,10020,130,2.1,8,4,11.3,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,69888,31087,36366,13486,180,2.1,9,3,11.3,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,67767,17293,46879,17140,180,2.1,9,8,11.3,7620,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,54350,1128,53254,19165,180,3.6,9,9,11.3,1220,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,71411,7561,62076,21343,140,5.2,9,9,12.9,1220,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,49230,1616,47224,17691,150,2.1,9,9,12.9,1220,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,90243,34664,45083,16849,110,4.1,5,5,11.3,77777,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,76828,33308,39010,14676,170,2.6,5,5,12.9,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,60974,33297,27621,10331,190,2.6,5,3,12.9,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,32568,16937,19231,6674,120,3.1,6,4,12.9,4570,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,15042,6534,9659,3082,170,2.1,3,3,11.3,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,1975,0,1980,575,170,3.1,2,2,9.7,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,34,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,8311,164,5336,1663,190,1.5,2,1,19.3,77777,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,29453,20006,12981,4477,220,3.1,4,2,19.3,77777,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,53599,33072,16183,6297,220,1.5,2,2,19.3,77777,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,72789,36701,21801,8890,180,2.6,3,3,19.3,77777,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,66346,13852,50838,18038,200,2.6,9,8,19.3,2740,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,80288,22012,50737,18533,130,4.1,10,8,24.1,2740,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,42421,783,41394,16020,130,3.6,10,10,24.1,3050,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,100609,38188,40558,15719,110,3.6,6,3,19.3,77777,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,101634,42160,22452,9330,150,3.1,3,1,19.3,77777,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,91471,45035,19087,7985,190,2.6,0,0,19.3,77777,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,64941,37759,16182,6543,120,3.6,1,1,19.3,77777,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,33897,17704,21001,7090,110,3.6,8,7,16.1,3660,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,10542,1495,9133,2953,110,3.6,9,9,16.1,3660,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,1980,0,1875,549,140,3.6,10,10,12.9,7620,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,7447,220,6934,1992,130,2.6,9,3,24.1,77777,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,22120,7577,17166,5462,160,2.6,8,3,19.3,77777,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,50286,27698,27586,9593,150,2.6,7,2,24.1,77777,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,72545,36619,31042,11947,150,4.6,8,2,32.2,77777,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,91960,38620,46014,16890,0,0.0,8,3,32.2,77777,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,108838,45162,43336,16500,150,3.1,8,3,32.2,77777,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,105107,39520,45393,17206,150,3.1,9,4,32.2,77777,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,59493,7109,49956,18417,110,3.6,9,9,40.2,1370,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,91149,33142,51162,18385,150,4.1,8,4,40.2,77777,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,77858,33611,40682,15117,110,4.1,9,4,40.2,77777,9,999999999,43,0.0000,0,88,0.000,0.0,1.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,53365,24229,30870,11195,110,2.1,8,4,40.2,77777,9,999999999,43,0.0000,0,88,0.000,0.0,1.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,23180,4207,20048,6862,120,5.2,8,8,40.2,3660,9,999999999,43,0.0000,0,88,0.000,0.5,1.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,4271,84,4040,1440,120,4.6,10,10,16.1,1520,9,999999999,43,0.0000,0,88,0.000,1.0,1.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,2354,0,2362,643,160,4.1,9,9,24.1,3050,9,999999999,43,0.0000,0,88,0.000,0.0,1.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,43,0.0000,0,88,0.000,0.0,1.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,42,0.0000,0,88,0.000,0.0,1.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,42,0.0000,0,88,0.000,0.0,1.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,42,0.0000,0,88,0.000,0.0,1.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,42,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,8051,329,6223,1847,90,3.6,6,3,32.2,77777,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,9891,306,9578,3466,120,3.1,10,10,19.3,210,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,20418,120,20405,7669,120,3.6,10,10,4.0,120,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,26740,380,26421,10510,130,3.6,10,10,12.9,310,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,38705,3113,34359,13588,150,3.6,9,9,19.3,610,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,70120,14469,50305,18441,100,5.2,8,8,24.1,700,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,93725,31496,42191,16286,150,5.2,7,6,32.2,760,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,93094,32958,36589,14468,110,4.1,7,6,32.2,910,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,91538,35829,35804,14123,130,3.1,5,2,32.2,77777,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,88099,42651,27157,11001,130,5.7,5,2,32.2,77777,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,60936,33338,24272,9329,120,6.2,4,2,32.2,77777,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,40116,26932,13849,5125,120,3.6,3,1,32.2,77777,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,15773,7384,8194,2705,140,3.1,3,1,32.2,77777,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,2856,0,2654,679,250,4.1,5,3,32.2,77777,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,9017,0,5406,1662,270,1.5,3,0,32.2,77777,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,30650,20261,9790,3527,280,3.1,1,0,32.2,77777,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,56646,35437,14098,5550,180,1.5,1,0,32.2,77777,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,81904,42030,16888,7026,0,0.0,0,0,40.2,77777,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,96335,41860,20196,8459,180,2.6,2,1,40.2,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,91375,33455,39996,15505,180,3.1,5,5,40.2,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,107569,40761,28611,11664,180,3.1,5,4,40.2,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,100985,37235,45655,17249,200,4.1,6,6,40.2,1370,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,98743,41617,34983,13834,200,2.1,4,4,40.2,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,95093,47754,25629,10454,190,3.6,3,3,40.2,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,57270,30970,20628,8132,260,2.1,2,2,40.2,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,40729,27501,12029,4525,250,2.1,2,2,40.2,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,17045,8666,9221,2957,200,3.1,2,2,40.2,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,3055,0,2749,681,160,4.1,5,2,40.2,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,8224,376,6408,1863,310,4.1,7,3,24.1,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,28682,18626,12825,4408,310,6.2,6,2,24.1,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,54159,33161,18600,7086,340,5.2,4,2,24.1,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,74052,36938,23276,9416,280,4.1,5,2,24.1,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,76324,28255,36885,14364,300,3.1,8,7,24.1,910,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,87032,29148,44876,16956,290,4.1,7,7,24.1,910,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,81706,22423,48790,18175,250,5.2,8,8,24.1,1070,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,94275,30871,52153,18983,220,4.1,8,8,24.1,1220,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,98861,41635,30662,12369,240,4.1,4,4,40.2,77777,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,78164,36397,28055,11296,240,3.1,4,4,40.2,77777,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,68599,40860,21066,8273,240,3.1,5,3,40.2,77777,9,999999999,31,0.0000,0,88,0.000,0.0,1.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,40070,27200,14485,5312,200,4.1,5,2,40.2,77777,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,16939,8616,7878,2610,220,4.6,5,1,40.2,77777,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,2701,0,2059,571,240,4.1,3,1,40.2,77777,9,999999999,31,0.0000,0,88,0.000,0.0,1.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,33,0.0000,0,88,0.000,0.0,1.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,34,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,42,0.0000,0,88,0.000,0.0,1.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,43,0.0000,0,88,0.000,0.0,1.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,45,0.0000,0,88,0.000,0.0,1.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,8403,44,5804,1732,300,5.7,4,0,24.1,77777,9,999999999,46,0.0000,0,88,0.000,0.0,1.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,28158,18424,12099,4198,270,4.1,5,1,24.1,77777,9,999999999,46,0.0000,0,88,0.000,0.0,1.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,52524,31979,18283,6973,270,5.2,5,1,19.3,77777,9,999999999,47,0.0000,0,88,0.000,0.0,1.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,72956,35785,23581,9524,270,6.2,5,1,19.3,77777,9,999999999,47,0.0000,0,88,0.000,0.0,1.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,86460,35331,38497,14846,300,5.2,5,4,19.3,77777,9,999999999,47,0.0000,0,88,0.000,0.0,1.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,105505,41797,31187,12595,290,5.2,4,3,19.3,77777,9,999999999,48,0.0000,0,88,0.000,0.0,1.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,62987,12283,43981,16806,330,4.1,8,7,19.3,1520,9,999999999,48,0.0000,0,88,0.000,0.0,1.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,42505,1746,39807,15498,350,9.3,9,9,19.3,1070,9,999999999,48,0.0000,0,88,0.000,0.0,1.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,47824,544,47472,17501,20,5.2,10,10,19.3,7620,9,999999999,49,0.0000,0,88,0.000,0.0,1.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,48932,5986,42539,15591,360,4.6,10,9,19.3,7620,9,999999999,49,0.0000,0,88,0.000,0.0,1.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,28990,3461,25362,9664,190,4.1,10,10,24.1,3660,9,999999999,49,0.0000,0,88,0.000,0.0,1.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,11782,243,11590,4370,250,6.2,10,10,32.2,3660,9,999999999,50,0.0000,0,88,0.000,0.0,1.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,6389,20,6407,2190,170,2.6,10,10,32.2,3660,9,999999999,50,0.0000,0,88,0.000,0.0,1.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,2001,0,2015,597,230,1.5,10,10,24.1,3660,9,999999999,50,0.0000,0,88,0.000,0.0,1.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,50,0.0000,0,88,0.000,0.0,1.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,49,0.0000,0,88,0.000,0.0,1.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,49,0.0000,0,88,0.000,0.0,1.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,49,0.0000,0,88,0.000,0.0,1.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,49,0.0000,0,88,0.000,0.0,1.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,49,0.0000,0,88,0.000,0.0,1.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,49,0.0000,0,88,0.000,0.0,1.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,48,0.0000,0,88,0.000,0.0,1.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,48,0.0000,0,88,0.000,0.0,1.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,48,0.0000,0,88,0.000,0.0,1.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,5136,0,4366,1388,70,4.1,10,8,9.7,3660,9,999999999,48,0.0000,0,88,0.000,0.0,1.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,28668,18295,10086,3605,70,6.2,3,1,9.7,77777,9,999999999,47,0.0000,0,88,0.000,0.0,1.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,55883,33613,13401,5295,70,5.7,0,0,11.3,77777,9,999999999,45,0.0000,0,88,0.000,0.0,1.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,77043,38495,19080,7874,70,7.2,3,3,11.3,77777,9,999999999,44,0.0000,0,88,0.000,0.0,1.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,76731,28871,34787,13711,70,6.7,5,5,11.3,77777,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,32995,313,32596,13101,90,6.2,10,10,11.3,910,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,57196,5872,48577,18136,100,5.2,10,9,11.3,910,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,76828,19409,48702,18107,70,5.7,8,6,11.3,7620,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,86301,33119,30377,12287,80,6.2,6,5,9.7,7620,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,79787,36240,24468,10045,90,5.2,5,4,12.9,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,64477,36483,21988,8581,110,6.2,3,3,12.9,77777,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,39821,26517,15197,5521,110,4.6,2,2,12.9,77777,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,15769,7508,7458,2485,110,4.6,2,1,19.3,77777,9,999999999,31,0.0000,0,88,0.000,0.0,1.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,2582,0,2050,557,110,4.1,2,1,19.3,77777,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,29,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,5296,0,4981,1534,150,2.1,9,9,8.0,1680,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,29230,19443,15070,4931,170,3.6,6,6,9.7,1830,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,56880,34713,12964,5129,170,3.6,0,0,12.9,77777,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,82780,44807,16233,6745,180,4.6,0,0,24.1,77777,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,103148,47093,18612,7816,180,4.1,0,0,24.1,77777,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,118711,50074,22291,9243,180,3.6,2,0,24.1,77777,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,124271,50525,22800,9426,170,4.1,2,0,24.1,77777,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,114959,47723,26206,10738,200,5.2,3,1,24.1,77777,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,107664,48113,23513,9719,100,3.6,4,1,24.1,77777,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,90513,45689,19309,8059,220,4.1,3,1,24.1,77777,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,64398,38677,19680,7773,210,4.6,2,2,24.1,77777,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,36962,25457,12365,4611,210,2.6,1,1,24.1,77777,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,18071,10050,6839,2303,180,2.6,0,0,24.1,77777,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,2972,0,2343,592,170,2.1,0,0,24.1,77777,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,29,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.0,1.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,33,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,8419,109,5595,1658,190,4.1,8,2,32.2,77777,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,26670,18115,11798,4081,210,5.2,5,4,32.2,77777,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,58689,36557,10317,4122,190,5.2,0,0,24.1,77777,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,82928,41543,14141,5927,190,4.6,2,0,19.3,77777,9,999999999,43,0.0000,0,88,0.000,0.0,1.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,96304,42332,27000,11051,230,5.2,6,3,16.1,77777,9,999999999,44,0.0000,0,88,0.000,0.0,1.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,79636,25296,41799,16050,220,4.6,8,5,16.1,7620,9,999999999,45,0.0000,0,88,0.000,0.0,1.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,50527,2679,46882,17645,200,5.2,10,9,12.9,3050,9,999999999,46,0.0000,0,88,0.000,0.0,1.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,64853,12299,46871,17594,220,5.2,8,7,12.9,3050,9,999999999,47,0.0000,0,88,0.000,0.0,1.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,40564,773,39779,15361,320,3.1,10,10,14.5,940,9,999999999,48,0.0000,0,88,0.000,0.0,1.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,32736,269,32587,12802,280,4.1,10,10,12.9,910,9,999999999,49,0.0000,0,88,0.000,8.4,1.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,18988,286,18723,7462,270,4.1,10,10,11.3,1520,9,999999999,50,0.0000,0,88,0.000,0.0,1.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,10457,132,10256,3905,190,3.1,10,10,19.3,7620,9,999999999,51,0.0000,0,88,0.000,0.0,1.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,4990,38,5002,1748,200,3.6,10,10,19.3,2740,9,999999999,52,0.0000,0,88,0.000,0.0,1.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,1828,0,1834,506,230,3.1,10,10,16.1,7620,9,999999999,52,0.0000,0,88,0.000,0.0,1.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,52,0.0000,0,88,0.000,0.0,1.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,52,0.0000,0,88,0.000,0.0,1.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,52,0.0000,0,88,0.000,0.0,1.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,52,0.0000,0,88,0.000,0.0,1.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,53,0.0000,0,88,0.000,0.0,1.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,53,0.0000,0,88,0.000,0.0,1.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,53,0.0000,0,88,0.000,0.0,1.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,53,0.0000,0,88,0.000,0.0,1.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,53,0.0000,0,88,0.000,0.0,1.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,24,298,422,4,0,4,0,0,0,0,310,4.1,10,10,2.4,60,9,999999999,53,0.0000,0,88,0.000,0.0,1.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,4327,0,4359,1516,310,4.6,10,10,2.4,60,9,999999999,53,0.0000,0,88,0.000,0.0,1.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,12598,42,12651,4325,330,2.6,10,10,4.0,210,9,999999999,52,0.0000,0,88,0.000,0.0,1.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,24875,66,25015,8886,310,2.6,10,10,4.8,270,9,999999999,51,0.0000,0,88,0.000,0.0,1.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,32291,0,32609,13239,300,3.6,10,10,8.0,370,9,999999999,50,0.0000,0,88,0.000,0.0,1.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,89780,36163,41677,15771,270,3.1,5,5,9.7,77777,9,999999999,49,0.0000,0,88,0.000,0.0,1.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,102728,38615,38141,14966,310,2.6,5,2,11.3,77777,9,999999999,48,0.0000,0,88,0.000,0.0,1.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,99437,33070,49030,18267,290,2.6,6,4,12.9,7620,9,999999999,48,0.0000,0,88,0.000,0.0,1.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,71867,13599,53379,19295,320,2.6,9,8,12.9,7620,9,999999999,47,0.0000,0,88,0.000,0.0,1.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,59943,12235,42879,16268,340,5.2,9,9,12.9,1220,9,999999999,46,0.0000,0,88,0.000,0.0,1.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,51701,11428,38255,14454,340,4.1,9,9,12.9,1220,9,999999999,45,0.0000,0,88,0.000,0.0,1.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,51426,18688,35137,12119,340,4.1,9,9,12.9,1220,9,999999999,44,0.0000,0,88,0.000,0.0,1.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,20769,3257,18064,6305,340,4.1,9,9,12.9,7620,9,999999999,43,0.0000,0,88,0.000,0.0,1.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,5870,208,5308,1846,180,3.6,9,9,11.3,7620,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,1517,0,1528,481,180,7.7,10,10,9.7,550,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,42,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,18,276,418,3,0,3,0,0,0,0,60,7.2,10,10,8.0,210,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,3174,0,3198,1199,70,5.2,10,10,8.0,240,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,8559,104,8469,3072,70,6.2,10,10,8.0,580,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,12911,50,12840,5072,90,6.2,10,10,8.0,850,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,39068,159,39101,14017,70,6.7,10,10,8.0,910,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,41135,152,41295,15617,60,7.2,10,10,9.7,1010,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,56383,6571,47671,17694,90,6.2,9,9,12.9,1830,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,53748,1453,52157,19021,90,5.7,10,10,12.9,1980,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,50560,794,49756,18342,90,5.2,10,10,12.9,1980,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,50097,656,49651,17996,140,5.7,10,10,12.9,1070,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,34072,143,34050,13215,140,6.2,10,10,11.3,1070,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,28217,493,27922,10337,140,4.1,10,10,9.7,1070,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,19853,188,19842,6723,130,3.6,10,10,9.7,1220,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,7398,22,7422,2455,110,5.2,10,10,9.7,1220,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,1808,0,1821,520,90,5.7,10,10,9.7,1220,9,999999999,36,0.0000,0,88,0.000,1.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.5,1.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,38,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.5,1.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,40,0.0000,0,88,0.000,0.5,1.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,41,0.0000,0,88,0.000,0.0,1.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,6,254,402,1,0,1,0,0,0,0,50,3.6,10,10,2.4,90,9,999999999,41,0.0000,0,88,0.000,0.3,1.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,2701,0,2721,1046,60,4.1,10,10,0.8,90,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,9303,39,9333,3338,60,6.2,10,10,2.4,90,9,999999999,42,0.0000,0,88,0.000,0.3,1.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,16051,56,16119,6214,70,6.7,10,10,2.4,120,9,999999999,42,0.0000,0,88,0.000,0.5,1.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,22069,62,22179,8980,70,6.7,10,10,2.4,120,9,999999999,42,0.0000,0,88,0.000,0.8,1.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,29518,66,29688,11982,80,7.2,10,10,2.4,150,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,31351,65,31417,12659,80,7.7,10,10,3.2,210,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,29482,0,29796,13468,90,6.2,10,10,3.2,180,9,999999999,43,0.0000,0,88,0.000,0.0,1.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,55977,169,56171,19902,80,7.2,10,10,4.8,180,9,999999999,43,0.0000,0,88,0.000,0.3,1.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,25545,0,25809,11880,80,7.2,10,10,4.8,180,9,999999999,43,0.0000,0,88,0.000,0.0,1.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,40528,80,40683,15046,70,5.7,10,10,9.7,370,9,999999999,43,0.0000,0,88,0.000,0.0,1.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,30940,77,31011,11114,110,7.2,10,10,11.3,490,9,999999999,43,0.0000,0,88,0.000,0.0,1.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,21199,68,21310,7027,100,7.2,10,10,11.3,490,9,999999999,43,0.0000,0,88,0.000,0.0,1.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,9041,30,9075,2853,90,6.2,10,10,9.7,340,9,999999999,43,0.0000,0,88,0.000,0.0,1.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,2004,0,2017,529,90,6.2,10,10,9.7,270,9,999999999,43,0.0000,0,88,0.000,0.0,1.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,43,0.0000,0,88,0.000,0.0,1.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,44,0.0000,0,88,0.000,0.0,1.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,44,0.0000,0,88,0.000,0.0,1.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,44,0.0000,0,88,0.000,0.0,1.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,44,0.0000,0,88,0.000,0.0,1.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,45,0.0000,0,88,0.000,0.0,1.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,45,0.0000,0,88,0.000,0.0,1.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,45,0.0000,0,88,0.000,0.0,1.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,46,0.0000,0,88,0.000,0.3,1.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,6,232,391,1,0,1,0,0,0,0,90,2.6,10,10,3.2,150,9,999999999,46,0.0000,0,88,0.000,9.9,1.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,2995,0,3017,1131,70,3.6,10,10,0.8,60,9,999999999,46,0.0000,0,88,0.000,9.9,1.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,7127,0,7185,3025,90,2.1,10,10,0.4,60,9,999999999,47,0.0000,0,88,0.000,9.9,1.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,15317,57,15380,5948,90,2.1,10,10,1.3,120,9,999999999,47,0.0000,0,88,0.000,9.9,1.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,19387,0,19574,9012,100,2.1,10,10,2.4,90,9,999999999,48,0.0000,0,88,0.000,0.0,1.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,41820,0,42246,16828,130,3.1,10,10,2.4,240,9,999999999,48,0.0000,0,88,0.000,0.0,1.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,50700,80,50956,18533,180,3.1,10,10,3.2,120,9,999999999,48,0.0000,0,88,0.000,4.1,1.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,32881,64,32961,13231,170,3.6,10,10,2.4,90,9,999999999,49,0.0000,0,88,0.000,0.0,1.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,31296,61,31363,12681,200,3.1,10,10,6.4,120,9,999999999,49,0.0000,0,88,0.000,0.0,1.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,46666,75,46887,17343,220,3.1,10,10,11.3,270,9,999999999,50,0.0000,0,88,0.000,0.0,1.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,22526,0,22753,10528,200,3.1,10,10,11.3,370,9,999999999,51,0.0000,0,88,0.000,0.3,1.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,15765,0,15913,7279,170,4.1,10,10,6.4,120,9,999999999,51,0.0000,0,88,0.000,0.3,1.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,10954,0,11050,4713,190,3.1,10,10,9.7,210,9,999999999,52,0.0000,0,88,0.000,0.0,1.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,7878,0,7940,2817,210,3.6,10,10,11.3,760,9,999999999,52,0.0000,0,88,0.000,0.0,1.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,2093,0,2101,505,220,3.6,9,9,16.1,2440,9,999999999,51,0.0000,0,88,0.000,0.0,1.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,50,0.0000,0,88,0.000,0.0,1.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,48,0.0000,0,88,0.000,0.0,1.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,47,0.0000,0,88,0.000,0.0,1.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,46,0.0000,0,88,0.000,0.0,1.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,45,0.0000,0,88,0.000,0.0,1.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,44,0.0000,0,88,0.000,0.0,1.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,43,0.0000,0,88,0.000,0.0,1.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,42,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,4619,0,4523,1388,230,3.6,10,9,2.4,150,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,8849,100,8762,3156,280,3.6,10,10,4.8,120,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,20446,522,19977,7450,290,3.6,10,10,6.4,270,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,30880,666,30259,11656,310,3.1,10,10,8.0,400,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,65593,18076,42763,16030,320,3.1,9,8,12.9,520,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,80127,26072,37177,14633,280,2.1,8,8,12.9,670,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,66614,15664,40309,15699,310,2.1,8,8,16.1,910,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,83993,24999,47453,17744,290,3.6,5,5,11.3,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,79211,26741,42035,15998,300,2.1,6,6,9.7,980,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,66658,27858,26953,10905,340,2.6,5,5,9.7,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,40189,12829,27439,10176,320,3.1,5,5,9.7,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,38882,25447,13549,4973,280,3.6,2,2,9.7,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,10741,1773,8912,2804,230,3.6,5,5,9.7,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,1889,0,1896,471,160,3.6,8,8,9.7,4570,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,42,0.0000,0,88,0.000,0.0,1.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,43,0.0000,0,88,0.000,0.0,1.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,6,210,355,1,0,1,0,0,0,0,240,1.5,1,0,9.7,77777,9,999999999,43,0.0000,0,88,0.000,0.0,1.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,6507,0,5224,1531,250,2.6,3,0,4.8,77777,9,999999999,44,0.0000,0,88,0.000,0.0,1.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,25656,15307,11070,3846,280,4.1,0,0,6.4,77777,9,999999999,43,0.0000,0,88,0.000,0.0,1.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,48602,27809,16039,6189,280,5.2,1,1,9.7,77777,9,999999999,43,0.0000,0,88,0.000,0.0,1.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,70761,33912,25853,10264,270,3.1,4,4,11.3,77777,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,68664,22120,38451,14826,250,3.1,7,7,11.3,640,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,93832,31979,50274,18384,210,3.1,7,7,16.1,880,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,86130,25542,47072,17702,290,3.6,5,5,19.3,77777,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,94839,31864,45942,17347,240,3.1,5,5,24.1,77777,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,60832,15239,38079,14834,260,5.2,5,5,24.1,77777,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,69232,29377,30548,12100,250,4.6,4,4,24.1,77777,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,57445,30350,25850,9712,240,4.1,7,3,24.1,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,35013,17056,23839,7464,250,3.6,10,3,24.1,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,11183,1498,9922,3001,250,3.1,10,8,24.1,7620,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,1507,0,1403,387,220,2.1,9,6,24.1,7620,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,6,188,370,1,0,1,0,0,0,0,310,2.1,1,0,11.3,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,6364,0,4513,1370,0,0.0,0,0,9.7,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,26605,16751,9926,3502,0,0.0,0,0,9.7,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,52653,32412,14770,5739,310,3.6,0,0,11.3,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,77472,39155,18799,7741,330,4.1,0,0,11.3,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,98347,43406,21597,9019,10,3.1,0,0,11.3,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,107779,42972,21862,9097,0,0.0,1,1,12.9,77777,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,108979,42861,34418,13725,0,0.0,3,3,12.9,77777,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,113971,46742,34331,13683,350,3.6,4,4,12.9,77777,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,88552,34488,41766,15891,290,2.6,5,5,11.3,77777,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,79500,38295,29941,11879,10,3.1,5,4,11.3,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,62303,36693,23991,9129,110,6.2,7,4,11.3,7620,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,34908,21930,16914,5917,180,3.6,8,5,11.3,7620,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,6063,265,5620,1911,170,4.1,9,9,11.3,7620,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,686,0,687,213,0,0.0,9,9,11.3,7620,9,999999999,37,0.0000,0,88,0.000,1.5,1.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,36,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,5208,0,5008,1468,0,0.0,10,5,8.0,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,23718,12630,14561,4701,80,2.1,6,3,8.0,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,48514,28843,16048,6171,10,1.5,2,1,9.7,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,75253,38361,21217,8630,160,3.1,1,0,9.7,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,96153,42403,23831,9878,170,4.1,0,0,9.7,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,106674,42256,26725,10976,150,2.6,1,1,9.7,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,116814,46321,30685,12423,150,6.2,2,2,11.3,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,104203,41305,38779,15140,140,2.6,3,3,12.9,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,100833,44542,29508,11943,140,4.6,2,2,12.9,77777,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,84614,42744,27770,11144,110,2.6,2,2,12.9,77777,9,999999999,31,0.0000,0,88,0.000,0.0,1.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,61582,36667,22179,8548,180,3.1,2,2,12.9,77777,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,36658,24937,13874,5037,200,4.1,3,1,11.3,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,12450,3644,9210,2825,230,4.1,8,3,11.3,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,1774,0,1781,418,90,6.2,8,6,11.3,7620,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,1.5,1.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,37,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,6,166,385,1,0,1,0,0,0,0,0,0.0,5,2,9.7,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,4620,0,4193,1283,340,1.5,4,2,8.0,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,23339,13225,12723,4254,70,2.6,1,0,9.7,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,48016,29292,19482,7244,40,1.5,0,0,11.3,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,72269,37852,25389,10057,50,1.5,0,0,12.9,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,92841,41683,29500,11922,20,1.5,0,0,12.9,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,107454,44326,32141,12913,60,4.1,0,0,12.9,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,109547,41925,33115,13294,80,3.6,1,1,12.9,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,104455,40827,40708,15755,50,3.1,3,3,12.9,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,71745,22798,40097,15404,100,2.6,3,3,12.9,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,79261,37452,32478,12681,100,5.7,3,3,12.9,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,57051,30408,27950,10246,140,4.6,4,3,16.1,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,28701,11907,20194,6677,110,3.1,7,5,16.1,7620,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,3660,8,3666,1285,160,4.1,10,10,4.8,1220,9,999999999,37,0.0000,0,88,0.000,7.9,1.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,948,0,954,307,110,3.1,10,10,8.0,7620,9,999999999,38,0.0000,0,88,0.000,1.3,1.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,42,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,4981,0,4889,1425,60,3.6,10,9,8.0,3050,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,17050,4271,13923,4533,90,3.6,10,8,8.0,3050,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,39246,18336,22043,7984,80,4.1,7,5,6.4,3050,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,74344,35714,16646,6915,90,3.1,4,1,8.0,77777,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,61305,17997,36507,14221,100,3.1,8,7,9.7,3050,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,103453,40160,29939,12163,90,3.1,4,4,11.3,77777,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,96917,34579,35871,14243,0,0.0,4,4,11.3,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,109636,43005,32463,13056,190,1.5,4,4,12.9,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,102193,42684,25047,10342,290,7.7,5,5,11.3,77777,9,999999999,37,0.0000,0,88,0.000,28.7,1.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,82780,39266,20856,8661,260,2.1,4,3,16.1,77777,9,999999999,36,0.0000,0,88,0.000,14.0,1.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,46588,22621,17445,6954,210,3.1,3,2,16.1,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,36357,23131,15490,5500,270,3.6,4,2,16.1,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,12851,3838,9076,2769,170,5.2,7,4,16.1,7620,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,1374,0,1379,349,50,5.7,9,9,11.3,7620,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,3043,0,3050,980,130,3.1,10,10,4.0,150,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,12119,41,12169,4099,100,2.1,10,10,4.0,120,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,28712,4448,25067,8737,100,3.1,10,8,11.3,1220,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,68888,34095,27153,10631,90,2.1,6,4,12.9,7620,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,86994,37293,30984,12439,110,1.5,8,5,12.9,1220,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,80838,27573,34949,13886,80,2.6,8,6,12.9,1220,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,39027,133,39048,15287,130,5.2,10,10,12.9,610,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,62952,7961,52409,18998,90,3.1,9,9,8.0,760,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,48364,6223,39675,15292,20,3.1,9,9,9.7,1220,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,39122,7540,28692,11480,360,6.7,9,9,8.0,3050,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,34721,11798,21215,8230,160,7.7,9,8,11.3,7620,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,28465,12925,18700,6307,120,4.6,9,7,11.3,7620,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,14309,5508,9470,2829,100,3.6,8,4,11.3,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,1858,0,1659,361,90,3.1,9,5,11.3,7620,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,12,122,387,2,0,2,0,0,0,0,100,2.1,8,4,6.4,77777,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,6175,0,4674,1363,0,0.0,7,2,6.4,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,23832,13696,12579,4190,280,2.6,7,2,9.7,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,51736,31450,15260,5884,310,2.6,8,1,11.3,77777,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,65352,31680,22720,9142,360,2.6,8,1,19.3,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,95271,41466,20881,8745,30,2.6,8,1,19.3,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,106355,42919,30186,12236,290,4.1,8,3,19.3,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,116380,44748,23247,9635,300,2.6,8,3,19.3,77777,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,97750,36780,37131,14622,200,7.2,5,4,16.1,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,74234,26069,34923,13797,240,5.2,6,6,16.1,1070,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,64040,25909,30809,12137,230,5.2,5,5,19.3,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,63377,38370,21579,8320,240,6.2,5,5,19.3,77777,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,27096,11752,18413,6212,270,4.1,5,5,19.3,77777,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,12909,4217,7034,2271,270,3.6,6,5,19.3,7620,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,1839,0,1744,344,320,2.1,5,5,19.3,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,6,100,384,1,0,0,0,0,0,0,270,2.1,4,3,19.3,77777,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,5718,0,3860,1178,280,2.6,3,3,24.1,77777,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,24080,14025,11019,3775,280,3.6,3,3,24.1,77777,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,42148,23361,14067,5467,290,3.1,3,3,24.1,77777,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,76014,39777,20431,8315,310,2.6,3,3,24.1,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,84940,36844,31006,12429,270,1.5,5,5,24.1,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,65307,16754,39894,15453,240,3.1,7,7,24.1,910,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,84853,27576,40751,15795,270,4.1,7,7,24.1,910,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,69837,17147,43864,16707,290,5.2,8,8,24.1,1220,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,64617,22674,17257,7282,180,8.8,8,8,24.1,1220,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,37785,9750,22333,9225,210,5.2,8,8,24.1,3660,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,21083,1091,19788,7742,290,2.6,10,10,19.3,1280,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,9772,0,9855,4208,0,0.0,10,10,16.1,850,9,999999999,33,0.0000,0,88,0.000,3.6,1.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,3853,2,3860,1340,230,7.2,10,10,16.1,670,9,999999999,40,0.0000,0,88,0.000,0.3,1.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,0,0,0,0,290,3.6,10,10,12.9,3050,9,999999999,36,0.0000,0,88,0.000,2.3,1.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,37,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,34,0.0000,0,88,0.000,0.0,1.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,4475,0,4270,1259,300,2.1,9,8,16.1,7620,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,21408,11700,11867,3983,320,2.6,5,5,16.1,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,36919,15198,24224,8482,310,3.1,7,7,16.1,7620,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,60515,27455,27768,10799,320,3.6,7,6,16.1,7620,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,85555,36642,29317,11864,310,3.1,5,5,16.1,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,107077,42837,28921,11788,360,1.5,9,4,19.3,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,78127,23119,40691,15789,260,2.6,9,6,19.3,7620,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,84894,25567,49397,18212,290,2.6,10,8,16.1,7620,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,67681,16637,46712,17212,200,2.6,10,8,16.1,7620,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,48695,5038,43725,15638,350,4.6,10,9,11.3,980,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,14404,153,14341,5792,90,3.6,10,10,11.3,980,9,999999999,38,0.0000,0,88,0.000,16.3,1.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,19866,538,19639,6461,0,0.0,10,10,11.3,7620,9,999999999,40,0.0000,0,88,0.000,0.3,1.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,5330,17,5230,1765,0,0.0,10,10,11.3,7620,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,280,1.5,10,10,9.7,7620,9,999999999,44,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,42,0.0000,0,88,0.000,0.0,1.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,42,0.0000,0,88,0.000,0.0,1.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,42,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,3947,0,3849,1162,90,2.1,4,0,11.3,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,18279,5772,13855,4454,70,2.6,3,3,9.7,77777,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,39343,17506,24251,8489,80,3.1,4,1,11.3,77777,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,63219,27150,35775,13031,140,2.6,5,2,16.1,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,76796,28650,41774,15687,140,4.6,5,4,12.9,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,76913,21096,48593,17897,140,3.6,6,5,24.1,7620,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,86205,24367,53528,19301,130,3.6,6,5,24.1,7620,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,99322,36785,45496,17154,120,2.6,7,5,24.1,7620,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,73131,16055,55806,19205,160,1.5,8,7,24.1,1220,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,58946,15381,43609,15565,140,3.6,7,5,19.3,7620,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,46659,16584,32565,11243,160,8.2,7,5,19.3,7620,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,23551,6096,19026,6301,170,4.6,8,7,19.3,7620,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,6472,56,6381,2075,290,3.1,10,8,19.3,7620,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,310,2.1,10,5,19.3,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,4922,0,3840,1153,0,0.0,5,1,9.7,77777,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,22449,12235,11717,3932,310,1.5,8,2,9.7,77777,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,39897,18254,24362,8495,250,2.6,7,6,9.7,3660,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,59699,26923,26772,10472,210,2.1,5,5,12.9,77777,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,79671,32792,32250,12848,0,0.0,5,5,12.9,77777,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,62829,14658,41033,15795,40,1.5,8,8,16.1,910,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,103836,39275,41793,16112,130,2.1,7,7,16.1,1070,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,61829,7066,52798,19041,290,3.1,9,9,12.9,1070,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,36595,272,36359,14257,0,0.0,10,10,12.9,1070,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,43428,4828,38008,14211,0,0.0,10,8,12.9,2440,9,999999999,41,0.0000,0,88,0.000,0.5,1.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,59095,33623,26247,9664,30,2.1,7,6,12.9,2740,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,22755,7896,16361,5639,170,2.1,6,5,12.9,3050,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,10689,2080,7993,2447,210,3.1,7,5,12.9,7620,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,190,1.5,6,5,12.9,7620,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,5056,0,4534,1284,100,3.1,10,3,4.8,77777,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,11066,223,10885,3703,80,4.1,10,10,4.8,180,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,21852,184,21855,7848,80,3.1,10,10,4.8,210,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,32922,351,32671,12208,50,2.1,10,10,11.3,400,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,43854,5110,37054,14365,60,4.1,9,9,11.3,610,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,58806,11450,41973,16076,80,3.6,8,8,12.9,670,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,85087,28686,34031,13609,70,4.6,7,6,16.1,760,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,106576,41782,34270,13676,70,2.6,7,5,19.3,7620,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,81059,30805,35717,14042,60,2.6,7,5,19.3,7620,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,65304,26260,34701,13256,60,5.7,9,5,19.3,7620,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,27410,7792,17575,6949,130,5.7,10,8,16.1,7620,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,31902,18848,15913,5510,110,5.2,9,3,40.2,77777,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,9740,1285,6552,2101,120,5.7,9,4,40.2,77777,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,90,4.1,9,3,19.3,77777,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,42,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,3323,0,3221,994,80,4.1,9,9,9.7,430,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,8150,0,8118,3253,70,3.1,10,9,9.7,370,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,35189,14199,22911,8102,100,4.6,8,6,11.3,700,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,36155,5499,30174,11482,100,4.1,8,7,12.9,460,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,83690,35865,34856,13667,110,4.1,7,5,16.1,7620,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,50912,3745,46144,17220,130,5.2,9,8,16.1,3660,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,97542,35613,43323,16555,110,3.6,8,6,24.1,3050,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,81343,26357,42246,16186,130,6.2,5,4,24.1,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,92258,38577,34176,13542,140,6.2,4,4,40.2,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,78044,37974,31287,12215,60,5.2,4,4,40.2,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,56282,32767,23526,8836,110,4.1,3,3,40.2,77777,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,33620,22900,12929,4642,90,4.1,3,1,40.2,77777,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,10215,2010,6461,2062,90,4.6,3,1,40.2,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,90,3.1,2,1,24.1,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,5787,0,3013,936,50,2.6,1,0,24.1,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,27508,15139,6337,2300,80,3.1,1,0,19.3,77777,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,46351,28054,18308,6805,70,2.6,3,3,24.1,77777,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,52845,16203,37414,13348,40,3.1,7,7,24.1,760,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,84157,36645,28966,11724,70,4.1,6,6,24.1,980,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,83068,30497,34388,13664,100,3.6,5,5,24.1,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,104808,41433,39965,15517,60,2.6,6,6,24.1,1160,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,107349,44290,30660,12388,130,3.6,5,5,32.2,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,71233,21016,45699,16872,60,4.1,6,6,32.2,1220,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,79272,40005,24903,10080,110,4.6,5,5,40.2,77777,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,68516,43740,17085,6733,110,3.6,4,4,40.2,77777,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,31095,20723,13036,4658,90,3.1,4,4,40.2,77777,9,999999999,31,0.0000,0,88,0.000,0.0,1.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,10903,2247,5636,1834,100,4.1,3,3,40.2,77777,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,33,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,34,0.0000,0,88,0.000,0.0,1.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,33,0.0000,0,88,0.000,0.0,1.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,34,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,34,0.0000,0,88,0.000,0.0,1.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,34,0.0000,0,88,0.000,0.0,1.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,34,0.0000,0,88,0.000,0.0,1.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,4028,0,3822,1115,60,4.1,8,8,40.2,3660,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,16569,3300,14457,4492,60,3.6,9,9,32.2,3050,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,45436,27976,17476,6534,60,4.1,6,5,32.2,3050,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,73534,39719,20518,8301,60,7.2,3,3,40.2,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,77132,31770,34768,13617,70,7.2,5,5,40.2,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,59473,7795,49824,18137,70,7.2,9,9,40.2,1160,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,94378,34337,41465,15983,70,6.7,7,6,40.2,1830,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,56467,5885,48716,17974,50,7.7,8,7,40.2,2740,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,68642,18898,45658,16857,50,6.7,8,7,40.2,2740,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,71908,32589,30769,12045,70,3.6,8,6,40.2,7620,9,999999999,38,0.0000,0,88,0.000,0.8,1.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,57077,33376,21771,8279,80,5.2,7,4,40.2,7620,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,32564,20597,16414,5571,70,7.2,8,4,40.2,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,11097,2662,7754,2324,60,4.1,8,4,32.2,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,3607,0,3509,1042,60,4.6,7,7,24.1,430,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,19691,9448,11997,3943,90,4.6,3,2,24.1,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,41510,21334,23498,8201,90,5.2,3,3,24.1,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,67861,32961,34030,12496,100,5.2,8,6,32.2,580,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,76596,28815,41781,15647,120,5.7,7,5,32.2,7620,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,100840,40289,45002,16899,120,5.7,4,3,32.2,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,103471,38827,45294,17125,90,4.1,5,3,32.2,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,91880,31563,48426,17905,130,4.1,5,4,32.2,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,94470,39779,41924,15871,80,3.6,5,4,32.2,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,67468,27681,36412,13668,110,3.1,5,3,32.2,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,44894,19180,27655,9912,90,4.6,7,3,40.2,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,24624,6852,20045,6337,130,6.7,9,6,40.2,7620,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,6215,74,5900,1890,170,4.1,9,9,40.2,7620,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,4165,0,3298,988,70,2.1,3,1,12.9,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,22659,13132,11264,3753,70,2.1,3,2,12.9,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,45796,28163,18084,6704,80,2.6,2,2,12.9,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,70716,37518,20928,8440,0,0.0,2,2,24.1,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,85590,38286,29722,11969,0,0.0,4,3,24.1,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,78100,25265,42421,16161,60,3.6,6,6,24.1,7620,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,89613,31712,39219,15289,0,0.0,6,6,24.1,7620,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,105433,42492,36004,14235,70,3.1,7,6,24.1,3050,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,70256,23307,37815,14669,130,2.6,7,6,24.1,3050,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,67823,30911,25246,10193,100,4.1,5,5,24.1,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,47381,25321,20918,7972,100,5.2,3,3,24.1,77777,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,32641,21969,12445,4451,100,5.2,1,1,24.1,77777,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,10202,1977,6825,2092,90,5.2,2,2,24.1,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,3080,0,3089,934,60,1.5,4,3,19.3,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,16497,3208,14286,4416,90,2.6,7,5,16.1,7620,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,40907,21744,21292,7613,70,3.1,2,2,19.3,77777,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,65080,31490,30101,11404,60,3.6,4,3,24.1,77777,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,74866,27936,40451,15279,130,4.6,4,3,24.1,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,97086,38414,38666,15049,140,4.1,3,2,24.1,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,102506,39047,39926,15521,180,3.1,3,2,24.1,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,103171,41411,40837,15748,130,5.2,2,2,24.1,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,91455,38904,37169,14461,170,2.6,2,2,24.1,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,73065,33972,34171,13000,160,5.2,2,2,24.1,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,50709,26234,27304,9769,180,3.6,2,2,40.2,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,28163,15976,15543,5289,160,4.1,0,0,40.2,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,8489,730,7100,2136,160,3.1,0,0,40.2,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,4668,0,3485,1014,280,2.6,1,0,16.1,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,23950,14043,8655,3016,310,4.1,1,1,19.3,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,47737,29435,15285,5811,320,3.1,2,2,19.3,77777,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,68977,35469,19903,8069,310,4.6,2,2,19.3,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,94040,41959,18894,7953,0,0.0,1,1,19.3,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,110071,44945,20606,8613,0,0.0,2,2,16.1,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,106736,44401,34312,13649,130,2.1,2,2,16.1,77777,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,107447,44171,24728,10202,140,2.1,2,2,16.1,77777,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,97071,44049,25214,10374,270,2.6,2,2,16.1,77777,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,80413,41704,20439,8416,160,3.6,3,1,16.1,77777,9,999999999,31,0.0000,0,88,0.000,0.0,1.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,57743,36448,15087,5967,140,4.1,3,1,16.1,77777,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,32302,22135,11266,4065,230,4.6,2,1,24.1,77777,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,10421,1226,5783,1820,150,4.6,2,0,16.1,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,34,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,3770,0,3674,1042,240,3.1,7,2,16.1,77777,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,21241,9584,15061,4520,260,3.1,9,0,16.1,77777,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,45935,26089,25703,8631,280,2.6,10,0,16.1,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,67343,33347,33143,12201,200,2.6,9,1,19.3,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,81167,32313,43841,16135,230,3.6,8,3,19.3,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,89807,31984,49393,17994,240,5.7,9,4,19.3,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,92970,32215,49562,18216,230,3.6,9,4,19.3,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,94249,33185,52157,18776,230,5.2,10,4,24.1,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,81523,28941,47196,17194,160,3.6,9,4,24.1,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,62720,22258,40128,14505,180,5.2,9,5,24.1,7620,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,40329,11805,30238,10422,200,3.1,9,7,24.1,7620,9,999999999,42,0.0000,0,88,0.000,0.3,1.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,18152,5065,13729,4780,230,6.7,9,9,24.1,7620,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,6136,3,6158,1899,220,8.8,10,10,19.3,7620,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.3,1.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,41,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,3254,0,3264,953,250,4.1,10,10,4.8,120,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,11602,493,11206,3702,210,4.1,10,9,4.8,120,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,19687,172,19673,7139,270,3.6,10,10,4.0,150,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,30593,135,30550,11502,270,4.1,10,10,4.0,180,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,57154,15698,36067,14019,210,4.1,10,8,4.8,370,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,58871,10909,43442,16459,230,4.1,8,7,4.8,670,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,73249,21973,32289,13025,260,3.1,8,7,4.8,2740,9,999999999,43,0.0000,0,88,0.000,2.3,1.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,109053,44509,39190,15252,200,6.7,7,6,11.3,2740,9,999999999,39,0.0000,0,88,0.000,2.0,1.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,82729,30595,41822,15830,230,4.6,8,7,11.3,2740,9,999999999,42,0.0000,0,88,0.000,1.5,1.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,84467,42779,32201,12402,210,6.7,8,6,16.1,7620,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,45210,21896,21923,8239,230,4.1,7,4,24.1,7620,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,10893,331,10586,3835,340,6.7,10,10,16.1,910,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,4094,0,3989,1322,300,3.1,10,10,8.0,2440,9,999999999,38,0.0000,0,88,0.000,7.6,1.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,38,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,2650,0,2657,809,300,2.6,10,10,2.4,60,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,11076,108,11009,3638,310,2.1,10,10,4.0,120,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,22471,128,22592,7886,310,3.1,10,10,4.0,120,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,19259,221,18993,7724,320,3.1,10,10,4.0,120,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,42391,225,42455,15783,290,3.1,10,10,4.0,150,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,44833,0,45305,17992,310,2.1,10,10,6.4,270,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,58422,5951,50514,18487,310,3.1,10,9,6.4,370,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,95118,34070,48891,17983,280,3.1,7,5,9.7,3050,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,87371,36165,32255,12891,280,2.1,6,4,11.3,7620,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,73789,35751,23304,9465,240,3.1,6,2,11.3,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,49250,26371,22358,8337,270,2.1,7,3,11.3,77777,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,32102,20823,11615,4143,320,3.1,5,2,11.3,77777,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,7721,0,5422,1698,290,3.6,5,4,11.3,77777,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.3,1.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,40,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,4725,0,2754,826,70,2.6,1,1,11.3,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,18106,8812,8629,2983,70,3.6,4,3,11.3,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,44195,25811,22271,7790,70,3.6,6,6,11.3,3050,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,59774,28428,23101,9169,70,5.2,6,6,11.3,3050,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,81321,34591,27180,11090,100,3.1,5,5,11.3,77777,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,65012,16360,41611,15915,110,4.1,8,8,11.3,760,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,90362,29026,50960,18578,80,4.1,8,8,11.3,850,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,100393,39298,32231,12963,60,5.2,7,7,12.9,850,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,70591,20275,46325,16954,90,6.7,7,7,12.9,850,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,61048,25285,30416,11808,100,4.1,8,7,12.9,850,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,32455,454,32219,10696,120,5.7,10,10,12.9,850,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,20089,2548,18447,5797,150,3.1,8,8,11.3,3050,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,8484,349,7989,2166,160,4.1,7,5,11.3,7620,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.3,1.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,33,0.0000,0,88,0.000,0.3,1.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,34,0.0000,0,88,0.000,13.2,1.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,1626,0,1638,610,90,4.1,10,10,4.0,490,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,8822,125,8738,3005,80,4.1,10,10,4.0,400,9,999999999,36,0.0000,0,88,0.000,0.3,1.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,21576,380,21463,7563,80,3.1,10,10,1.6,240,9,999999999,37,0.0000,0,88,0.000,1.5,1.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,26471,456,26038,10099,90,3.6,10,10,3.2,310,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,42733,154,42798,15830,120,3.1,10,10,3.2,310,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,42871,364,42699,16214,110,2.1,10,10,3.2,310,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,46984,223,46971,17539,80,2.1,10,10,3.2,310,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,48888,76,49131,18030,80,4.1,10,10,4.8,610,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,90179,38307,35481,13923,40,4.1,6,5,3.2,3050,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,60683,20248,40129,14401,60,4.6,8,8,6.4,910,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,36200,4684,32799,10754,70,4.1,9,9,6.4,910,9,999999999,41,0.0000,0,88,0.000,0.3,1.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,25103,10348,18024,5680,90,4.6,9,7,6.4,3050,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,2499,0,2518,1011,50,3.6,10,10,6.4,910,9,999999999,42,0.0000,0,88,0.000,0.8,1.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,42,0.0000,0,88,0.000,0.0,1.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,42,0.0000,0,88,0.000,0.0,1.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,42,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,2124,0,2129,662,260,2.6,10,10,0.8,60,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,5631,121,5526,1992,280,4.1,10,10,0.8,60,9,999999999,39,0.0000,0,88,0.000,0.3,1.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,15316,450,14803,5611,280,2.6,10,10,2.4,90,9,999999999,41,0.0000,0,88,0.000,2.5,1.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,39964,6502,33551,12229,280,3.1,10,9,2.4,240,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,49968,8179,40083,15121,280,2.6,8,6,2.4,7620,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,84641,29667,43196,16354,270,2.1,10,6,8.0,7620,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,97784,36317,43606,16594,270,2.1,10,5,11.3,77777,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,95656,36309,38657,15075,270,3.1,10,4,16.1,77777,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,75093,22787,48985,17552,270,3.1,10,8,16.1,7620,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,49030,11028,37892,13817,310,3.6,9,7,16.1,7620,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,40693,18507,22840,8402,320,5.2,9,7,16.1,7620,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,24269,12406,14694,4918,310,3.6,9,5,16.1,7620,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,8457,0,4687,1475,300,3.1,3,2,16.1,77777,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,30,256,380,5,7,3,0,0,0,0,290,3.1,0,0,16.1,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,29,0.0000,0,88,0.000,0.0,1.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,29,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,3449,0,3352,919,310,3.6,0,0,16.1,77777,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,17589,8515,11663,3729,320,4.1,0,0,16.1,77777,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,41484,26600,20218,7174,310,3.1,0,0,19.3,77777,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,66305,38357,27362,10431,310,2.6,0,0,19.3,77777,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,87895,45589,32578,12793,20,4.1,0,0,32.2,77777,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,102352,48485,35678,13984,350,3.6,0,0,32.2,77777,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,108103,49050,37018,14480,310,3.6,0,0,40.2,77777,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,105214,49128,36364,14232,340,4.6,0,0,40.2,77777,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,93264,46271,33880,13315,330,3.6,0,0,40.2,77777,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,74159,41255,29293,11337,310,5.2,0,0,40.2,77777,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,50215,31975,22889,8342,330,3.1,0,0,40.2,77777,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,25115,15552,14573,4839,270,4.6,0,0,40.2,77777,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,6457,214,5820,1711,290,2.6,0,0,40.2,77777,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,18,234,376,3,0,3,0,0,0,0,300,2.1,0,0,40.2,77777,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,4571,0,2947,835,250,3.1,0,0,24.1,77777,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,23816,15861,6955,2440,290,2.1,0,0,24.1,77777,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,50625,35314,10635,4127,290,2.1,0,0,19.3,77777,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,76729,43585,13691,5650,270,3.1,0,0,19.3,77777,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,86837,42135,25181,10309,270,2.6,2,2,24.1,77777,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,98837,42853,27512,11229,310,1.5,3,3,19.3,77777,9,999999999,31,0.0000,0,88,0.000,0.0,1.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,115810,50124,25449,10462,280,4.1,3,3,19.3,77777,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,105856,48464,31955,12781,0,0.0,4,4,19.3,77777,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,81190,35609,33876,13338,210,6.2,7,7,24.1,7620,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,49271,11802,38215,13789,240,4.1,7,6,24.1,7620,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,53422,35549,20504,7638,240,4.1,8,5,19.3,7620,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,29325,21589,12974,4418,190,3.1,6,2,19.3,77777,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,8172,0,4874,1493,230,2.6,3,2,19.3,77777,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,6,212,394,1,3,0,0,0,0,0,250,2.6,1,1,19.3,77777,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.0,1.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,33,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,4451,0,2831,806,130,1.5,0,0,9.7,77777,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,23493,13099,6498,2298,140,2.1,0,0,8.0,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,50000,32088,9935,3878,0,0.0,0,0,9.7,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,76308,41318,12866,5329,90,1.5,0,0,11.3,77777,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,96513,44868,16689,7050,10,1.5,2,0,11.3,77777,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,96858,90648,17683,5005,100,2.1,1,0,11.3,77777,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,104471,43508,30593,12357,160,4.6,3,3,11.3,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,100065,42788,30616,12347,160,5.2,4,4,11.3,77777,9,999999999,31,0.0000,0,88,0.000,0.0,1.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,81460,36385,31779,12650,150,4.1,5,5,11.3,77777,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,78187,43176,19576,8011,140,4.6,4,2,12.9,77777,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,45324,25103,24256,8672,140,5.7,7,4,12.9,7620,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,26979,16748,15599,5032,140,5.7,9,5,12.9,7620,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,6450,0,5265,1563,140,5.2,10,4,12.9,77777,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,6,167,402,1,2,1,0,0,0,0,120,4.1,7,3,12.9,77777,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,34,0.0000,0,88,0.000,0.0,1.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,33,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,3245,0,2821,796,70,5.2,7,6,9.7,90,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,21155,12241,8807,2988,70,5.2,4,2,11.3,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,42091,25939,18823,6782,40,4.1,5,2,11.3,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,62129,32815,22686,8951,50,5.7,5,4,40.2,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,71175,30805,26119,10652,70,5.7,4,4,40.2,77777,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,103803,46208,30156,12177,10,4.6,4,4,40.2,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,81213,25254,47770,17664,60,4.6,8,8,40.2,1280,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,52081,10379,36760,14413,80,3.6,8,8,40.2,1280,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,32985,3241,28279,11476,40,2.6,9,9,40.2,1220,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,65060,31353,29301,11323,340,3.1,8,5,40.2,7620,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,52947,33677,16127,6223,60,2.6,5,3,40.2,77777,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,27297,17678,14542,4769,50,4.1,9,3,40.2,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,6604,0,5541,1600,60,3.1,9,4,40.2,77777,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,6,145,408,1,1,1,0,0,0,0,60,2.6,7,3,32.2,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,3714,0,3302,867,190,6.2,3,0,19.3,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,20707,11455,11553,3668,150,6.2,8,0,16.1,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,43500,27214,16586,6124,300,7.2,5,1,16.1,77777,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,66511,35781,21026,8385,280,7.2,3,1,19.3,77777,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,83977,39699,31251,12397,230,6.7,3,3,24.1,77777,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,83659,29503,47102,17314,210,6.7,7,7,24.1,7620,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,62440,11470,47397,17563,330,8.2,9,9,19.3,2440,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,81663,29722,40277,15479,320,6.2,5,4,19.3,77777,9,999999999,31,0.0000,0,88,0.000,0.0,1.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,80545,35648,33803,13299,330,7.2,4,3,19.3,77777,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,69675,36433,29003,11197,340,8.2,4,3,19.3,77777,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,49224,31037,20198,7491,320,8.8,4,4,16.1,77777,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,25872,16533,11631,4009,340,10.3,4,1,16.1,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,6318,0,4918,1457,360,9.8,4,1,11.3,77777,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,34,0.0000,0,88,0.000,0.0,1.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,34,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,3780,0,3690,896,310,2.6,9,6,4.0,3050,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,15143,4728,11681,3674,310,4.1,9,7,4.0,3050,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,39277,22100,22259,7629,320,3.1,10,7,4.0,7620,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,47507,11534,37739,13020,30,1.5,10,7,6.4,7620,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,56876,14132,40964,15238,330,3.1,10,7,6.4,7620,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,24589,965,23002,9564,320,3.1,10,10,8.0,7620,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,42652,878,41645,15951,320,4.1,10,10,4.8,3050,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,73902,22751,43570,16432,60,1.5,10,8,8.0,3050,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,32044,207,31880,12685,90,1.5,10,10,9.7,3050,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,68294,35215,25499,10075,0,0.0,7,3,16.1,77777,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,30754,7125,24851,8740,350,2.6,8,8,11.3,7620,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,18664,5190,15111,4835,340,5.2,9,9,11.3,1220,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,6421,0,3997,1233,320,4.6,3,1,11.3,77777,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,12,101,373,2,1,1,0,0,0,0,10,4.1,3,0,11.3,77777,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,33,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,2888,0,2897,781,60,4.6,10,10,3.2,150,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,5584,0,5629,2309,80,5.2,10,10,3.2,150,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,13437,0,13556,5739,80,5.7,10,10,2.4,150,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,35886,717,35552,12523,70,6.2,10,10,2.4,240,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,34716,361,34465,13388,90,5.2,10,10,4.0,310,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,40806,515,40376,15468,100,6.2,10,10,6.4,430,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,45090,6123,35608,14068,90,5.7,10,9,6.4,430,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,44122,154,44193,16594,60,6.2,10,10,8.0,430,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,32063,1665,29877,12013,70,5.7,10,10,8.0,430,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,30712,504,30315,11551,70,6.2,10,10,8.0,520,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,22359,464,22134,7999,70,6.2,10,10,6.4,460,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,13621,196,13569,4457,70,5.7,10,10,6.4,460,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,4078,0,4090,1241,70,5.7,10,10,8.0,400,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,6,56,418,1,0,1,0,0,0,0,100,4.6,10,10,8.0,430,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,34,0.0000,0,88,0.000,0.0,1.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,33,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,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,38,0.0000,0,88,0.000,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,38,0.0000,0,88,0.000,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,39,0.0000,0,88,0.000,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,39,0.0000,0,88,0.000,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,39,0.0000,0,88,0.000,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,3469,0,3483,840,80,4.1,9,9,4.8,2438,9,999999999,39,0.0000,0,88,0.000,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,14094,1297,13396,3967,60,5.7,9,9,8.0,1036,9,999999999,40,0.0000,0,88,0.000,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,27547,6815,22668,7681,60,5.2,9,9,6.4,2743,9,999999999,40,0.0000,0,88,0.000,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,36205,5290,31299,11458,60,5.7,9,9,6.4,2438,9,999999999,40,0.0000,0,88,0.000,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,51675,16115,30810,12218,60,4.1,9,9,8.0,2591,9,999999999,41,0.0000,0,88,0.000,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,84567,34303,37181,14475,70,6.2,5,5,11.2,77777,9,999999999,41,0.0000,0,88,0.000,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,64424,17671,39640,15305,70,5.7,5,5,14.4,77777,9,999999999,41,0.0000,0,88,0.000,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,41402,0,41722,16952,80,6.7,9,9,16.0,2438,9,999999999,42,0.0000,0,88,0.000,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,55181,16003,35024,13657,70,6.7,9,9,14.4,2438,9,999999999,42,0.0000,0,88,0.000,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,38533,6011,32686,12176,70,5.7,9,9,16.0,2438,9,999999999,42,0.0000,0,88,0.000,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,18704,3567,15024,5779,60,5.2,9,9,16.0,2438,9,999999999,42,0.0000,0,88,0.000,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,6527,0,6580,2773,80,5.2,10,10,14.4,2438,9,999999999,43,0.0000,0,88,0.000,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,2604,0,2623,969,80,4.6,10,10,14.4,2134,9,999999999,43,0.0000,0,88,0.000,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,43,0.0000,0,88,0.000,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,44,0.0000,0,88,0.000,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,44,0.0000,0,88,0.000,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,44,0.0000,0,88,0.000,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,45,0.0000,0,88,0.000,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,45,0.0000,0,88,0.000,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,45,0.0000,0,88,0.000,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,46,0.0000,0,88,0.000,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,46,0.0000,0,88,0.000,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,46,0.0000,0,88,0.000,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,46,0.0000,0,88,0.000,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,1339,0,1348,486,60,4.1,10,10,16.0,975,9,999999999,47,0.0000,0,88,0.000,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,5497,0,5541,2263,50,5.2,10,10,16.0,762,9,999999999,47,0.0000,0,88,0.000,0.3,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,11341,0,11440,4989,70,4.6,10,10,4.8,914,9,999999999,47,0.0000,0,88,0.000,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,17813,0,17981,8149,80,4.6,10,10,6.4,701,9,999999999,46,0.0000,0,88,0.000,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,19427,0,19620,9314,80,5.2,10,10,11.2,244,9,999999999,46,0.0000,0,88,0.000,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,22346,0,22576,10618,90,4.1,10,10,4.8,274,9,999999999,46,0.0000,0,88,0.000,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,23485,0,23730,11106,90,3.6,10,10,16.0,366,9,999999999,46,0.0000,0,88,0.000,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,22680,0,22915,10772,90,4.6,10,10,11.2,305,9,999999999,46,0.0000,0,88,0.000,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,20201,0,20405,9693,80,4.6,10,10,12.8,244,9,999999999,46,0.0000,0,88,0.000,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,16123,0,16278,7672,100,3.6,10,10,12.8,305,9,999999999,46,0.0000,0,88,0.000,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,10783,0,10880,4960,90,4.1,10,10,12.8,305,9,999999999,45,0.0000,0,88,0.000,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,5316,0,5360,2326,80,4.1,10,10,14.4,305,9,999999999,45,0.0000,0,88,0.000,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,2016,0,2031,782,70,3.6,10,10,12.8,305,9,999999999,45,0.0000,0,88,0.000,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,45,0.0000,0,88,0.000,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,45,0.0000,0,88,0.000,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,45,0.0000,0,88,0.000,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,45,0.0000,0,88,0.000,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,44,0.0000,0,88,0.000,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,44,0.0000,0,88,0.000,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,44,0.0000,0,88,0.000,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,44,0.0000,0,88,0.000,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,44,0.0000,0,88,0.000,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,44,0.0000,0,88,0.000,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,44,0.0000,0,88,0.000,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,763,0,768,301,90,3.1,10,10,0.4,30,9,999999999,43,0.0000,0,88,0.000,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,4010,0,4042,1729,100,3.1,10,10,6.8,30,9,999999999,43,0.0000,0,88,0.000,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,8711,0,8788,3996,130,2.1,10,10,4.8,91,9,999999999,43,0.0000,0,88,0.000,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,15730,0,15879,7363,130,1.5,10,10,4.8,274,9,999999999,43,0.0000,0,88,0.000,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,23854,0,24092,11020,130,2.1,10,10,16.0,427,9,999999999,42,0.0000,0,88,0.000,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,27109,0,27389,12445,120,1.5,10,10,16.0,945,9,999999999,42,0.0000,0,88,0.000,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,79816,29258,30332,12272,120,2.6,5,5,16.0,77777,9,999999999,42,0.0000,0,88,0.000,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,27569,0,27855,12638,110,1.5,10,10,16.0,1158,9,999999999,42,0.0000,0,88,0.000,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,53924,4627,49326,17347,70,1.5,9,9,16.0,1676,9,999999999,41,0.0000,0,88,0.000,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,63905,31776,25911,10148,40,2.1,5,5,16.0,77777,9,999999999,41,0.0000,0,88,0.000,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,19260,3551,15496,5920,0,0.0,9,9,16.0,2743,9,999999999,41,0.0000,0,88,0.000,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,13166,1974,11538,3885,280,4.1,9,9,16.0,1097,9,999999999,41,0.0000,0,88,0.000,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,4208,0,3442,1049,40,5.7,7,7,16.0,1433,9,999999999,41,0.0000,0,88,0.000,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,40,0.0000,0,88,0.000,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,40,0.0000,0,88,0.000,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,40,0.0000,0,88,0.000,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,40,0.0000,0,88,0.000,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,39,0.0000,0,88,0.000,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,39,0.0000,0,88,0.000,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,39,0.0000,0,88,0.000,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,39,0.0000,0,88,0.000,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,38,0.0000,0,88,0.000,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,38,0.0000,0,88,0.000,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,38,0.0000,0,88,0.000,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,2657,0,1775,528,0,0.0,2,2,12.8,77777,9,999999999,38,0.0000,0,88,0.000,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,21492,13594,8874,2945,70,4.1,3,3,14.4,77777,9,999999999,38,0.0000,0,88,0.000,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,38372,20951,22680,7634,90,2.6,5,5,12.8,77777,9,999999999,38,0.0000,0,88,0.000,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,66780,37106,18694,7510,60,2.6,3,3,16.0,77777,9,999999999,38,0.0000,0,88,0.000,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,53112,19138,23222,9587,40,2.1,5,5,16.0,77777,9,999999999,38,0.0000,0,88,0.000,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,56706,4294,52101,18415,20,3.1,10,9,16.0,1250,9,999999999,38,0.0000,0,88,0.000,5.1,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,29845,3528,23236,9642,0,0.0,10,9,12.8,1067,9,999999999,38,0.0000,0,88,0.000,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,47563,4061,42295,16044,0,0.0,10,9,8.0,610,9,999999999,39,0.0000,0,88,0.000,0.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,73531,30089,36300,14018,70,1.5,5,5,16.0,77777,9,999999999,39,0.0000,0,88,0.000,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,66047,34058,23846,9450,140,4.1,5,5,16.0,77777,9,999999999,39,0.0000,0,88,0.000,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,43032,26506,14401,5536,170,2.1,5,5,16.0,77777,9,999999999,39,0.0000,0,88,0.000,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,17278,5665,13486,4322,200,2.1,5,5,16.0,77777,9,999999999,39,0.0000,0,88,0.000,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,4520,0,3427,1033,120,2.1,5,5,16.0,77777,9,999999999,39,0.0000,0,88,0.000,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,40,0.0000,0,88,0.000,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,40,0.0000,0,88,0.000,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,40,0.0000,0,88,0.000,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,40,0.0000,0,88,0.000,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,40,0.0000,0,88,0.000,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,40,0.0000,0,88,0.000,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,40,0.0000,0,88,0.000,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,41,0.0000,0,88,0.000,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,41,0.0000,0,88,0.000,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,41,0.0000,0,88,0.000,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,41,0.0000,0,88,0.000,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,1525,0,1535,522,60,4.1,10,10,9.6,3658,9,999999999,41,0.0000,0,88,0.000,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,5084,0,5124,2110,70,4.6,10,10,9.6,640,9,999999999,41,0.0000,0,88,0.000,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,30666,3170,28790,8715,80,5.2,9,9,12.8,274,9,999999999,41,0.0000,0,88,0.000,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,41168,5420,36634,12637,80,5.7,9,9,16.0,792,9,999999999,41,0.0000,0,88,0.000,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,23101,0,23332,10729,60,5.7,10,10,16.0,579,9,999999999,41,0.0000,0,88,0.000,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,83222,21233,61959,20187,60,4.1,9,9,16.0,853,9,999999999,41,0.0000,0,88,0.000,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,46268,3018,42252,16088,40,4.1,9,9,16.0,1829,9,999999999,40,0.0000,0,88,0.000,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,51414,7207,41970,15935,40,4.6,9,9,16.0,1829,9,999999999,40,0.0000,0,88,0.000,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,59694,18929,36253,13994,40,4.1,5,5,16.0,77777,9,999999999,40,0.0000,0,88,0.000,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,67719,37385,21065,8455,80,3.6,2,2,16.0,77777,9,999999999,40,0.0000,0,88,0.000,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,45657,29377,18348,6783,80,3.6,3,3,16.0,77777,9,999999999,40,0.0000,0,88,0.000,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,19756,8234,14584,4514,40,3.6,5,5,16.0,77777,9,999999999,40,0.0000,0,88,0.000,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,4112,0,3008,921,60,4.6,3,3,16.0,77777,9,999999999,40,0.0000,0,88,0.000,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,40,0.0000,0,88,0.000,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,39,0.0000,0,88,0.000,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,39,0.0000,0,88,0.000,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,39,0.0000,0,88,0.000,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,39,0.0000,0,88,0.000,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,39,0.0000,0,88,0.000,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,39,0.0000,0,88,0.000,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,39,0.0000,0,88,0.000,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,39,0.0000,0,88,0.000,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,38,0.0000,0,88,0.000,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,38,0.0000,0,88,0.000,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,2295,0,1862,538,280,3.1,2,0,11.2,77777,9,999999999,38,0.0000,0,88,0.000,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,19452,10174,8010,2700,290,3.6,3,0,16.0,77777,9,999999999,38,0.0000,0,88,0.000,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,45009,29499,12374,4697,260,4.1,2,0,16.0,77777,9,999999999,39,0.0000,0,88,0.000,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,63093,34709,20743,8211,280,3.6,3,0,16.0,77777,9,999999999,39,0.0000,0,88,0.000,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,80567,38001,29477,11758,310,5.7,7,2,16.0,77777,9,999999999,39,0.0000,0,88,0.000,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,90105,37718,28085,11451,280,6.2,8,3,16.0,77777,9,999999999,39,0.0000,0,88,0.000,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,97928,38570,48857,17848,290,5.2,10,5,16.0,77777,9,999999999,39,0.0000,0,88,0.000,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,90946,36344,42351,16038,310,3.6,10,5,16.0,77777,9,999999999,40,0.0000,0,88,0.000,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,77954,32045,41765,15498,300,4.1,10,5,16.0,77777,9,999999999,40,0.0000,0,88,0.000,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,46727,9604,38279,13366,260,3.1,10,5,16.0,77777,9,999999999,40,0.0000,0,88,0.000,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,44724,27639,20720,7442,260,2.6,7,2,16.0,77777,9,999999999,40,0.0000,0,88,0.000,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,21832,12548,12402,4024,250,3.1,8,3,16.0,77777,9,999999999,40,0.0000,0,88,0.000,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,3940,0,3293,977,230,1.5,7,2,16.0,77777,9,999999999,41,0.0000,0,88,0.000,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,41,0.0000,0,88,0.000,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,41,0.0000,0,88,0.000,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,41,0.0000,0,88,0.000,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,41,0.0000,0,88,0.000,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,42,0.0000,0,88,0.000,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,42,0.0000,0,88,0.000,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,42,0.0000,0,88,0.000,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,42,0.0000,0,88,0.000,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,42,0.0000,0,88,0.000,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,42,0.0000,0,88,0.000,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,43,0.0000,0,88,0.000,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,2394,0,1855,531,0,0.0,3,0,4.8,77777,9,999999999,43,0.0000,0,88,0.000,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,19598,9758,7273,2483,270,2.6,2,0,6.4,77777,9,999999999,43,0.0000,0,88,0.000,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,44984,29139,12251,4651,280,3.1,3,0,8.0,77777,9,999999999,42,0.0000,0,88,0.000,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,70004,39057,15474,6302,300,4.1,2,0,11.2,77777,9,999999999,42,0.0000,0,88,0.000,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,85505,40089,20086,8382,290,4.1,6,1,9.6,77777,9,999999999,42,0.0000,0,88,0.000,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,89478,38259,31313,12565,250,3.1,9,2,11.2,77777,9,999999999,42,0.0000,0,88,0.000,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,92063,37503,34052,13527,270,2.6,10,4,11.2,1280,9,999999999,42,0.0000,0,88,0.000,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,83210,32641,37403,14559,280,3.6,10,5,9.6,77777,9,999999999,41,0.0000,0,88,0.000,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,77673,34983,31912,12616,240,4.1,10,5,11.2,77777,9,999999999,41,0.0000,0,88,0.000,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,70897,39104,22502,8938,290,3.6,9,2,9.6,77777,9,999999999,41,0.0000,0,88,0.000,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,44928,28611,14454,5512,280,3.6,9,3,9.6,77777,9,999999999,41,0.0000,0,88,0.000,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,21661,13156,10648,3565,270,3.1,9,2,8.0,77777,9,999999999,41,0.0000,0,88,0.000,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,3497,0,3179,937,250,2.1,9,3,11.2,77777,9,999999999,40,0.0000,0,88,0.000,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,40,0.0000,0,88,0.000,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,40,0.0000,0,88,0.000,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,40,0.0000,0,88,0.000,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,39,0.0000,0,88,0.000,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,39,0.0000,0,88,0.000,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,39,0.0000,0,88,0.000,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,39,0.0000,0,88,0.000,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,39,0.0000,0,88,0.000,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,38,0.0000,0,88,0.000,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,38,0.0000,0,88,0.000,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,38,0.0000,0,88,0.000,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,2445,0,1448,433,270,2.1,0,0,8.0,77777,9,999999999,38,0.0000,0,88,0.000,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,21349,10367,5583,1956,290,2.1,0,0,9.6,77777,9,999999999,38,0.0000,0,88,0.000,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,47939,31065,8653,3357,290,3.1,0,0,11.2,77777,9,999999999,37,0.0000,0,88,0.000,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,73621,39617,11307,4669,280,3.1,0,0,11.2,77777,9,999999999,37,0.0000,0,88,0.000,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,88630,40251,14975,6342,320,3.6,2,2,8.0,77777,9,999999999,37,0.0000,0,88,0.000,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,65415,22459,31057,12481,250,4.1,3,3,9.6,77777,9,999999999,37,0.0000,0,88,0.000,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,82047,31588,19175,8046,280,3.6,5,5,9.6,77777,9,999999999,37,0.0000,0,88,0.000,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,58507,17892,31157,12514,290,3.1,5,5,9.6,77777,9,999999999,36,0.0000,0,88,0.000,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,81527,38762,21450,8911,290,3.1,2,2,9.6,77777,9,999999999,36,0.0000,0,88,0.000,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,61839,33410,21774,8654,300,5.2,3,3,9.6,77777,9,999999999,36,0.0000,0,88,0.000,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,52601,34837,9195,3614,300,3.6,0,0,9.6,77777,9,999999999,36,0.0000,0,88,0.000,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,25648,15662,6104,2191,290,3.1,0,0,9.6,77777,9,999999999,36,0.0000,0,88,0.000,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,4252,0,2355,728,340,2.1,0,0,8.0,77777,9,999999999,35,0.0000,0,88,0.000,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,35,0.0000,0,88,0.000,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,35,0.0000,0,88,0.000,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,35,0.0000,0,88,0.000,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,34,0.0000,0,88,0.000,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,34,0.0000,0,88,0.000,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,34,0.0000,0,88,0.000,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,34,0.0000,0,88,0.000,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,34,0.0000,0,88,0.000,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,33,0.0000,0,88,0.000,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,33,0.0000,0,88,0.000,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,33,0.0000,0,88,0.000,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,1970,0,1646,475,0,0.0,0,0,4.8,77777,9,999999999,33,0.0000,0,88,0.000,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,18907,9697,7268,2466,0,0.0,0,0,4.8,77777,9,999999999,33,0.0000,0,88,0.000,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,44434,29154,11705,4448,230,2.1,0,0,8.0,77777,9,999999999,34,0.0000,0,88,0.000,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,69776,38816,15450,6285,230,2.1,0,0,9.6,77777,9,999999999,35,0.0000,0,88,0.000,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,67113,28265,27444,11058,240,2.6,4,3,9.6,77777,9,999999999,35,0.0000,0,88,0.000,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,80187,32092,28597,11628,250,2.1,5,5,11.2,77777,9,999999999,36,0.0000,0,88,0.000,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,75099,26987,33794,13434,290,2.1,5,5,11.2,77777,9,999999999,36,0.0000,0,88,0.000,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,76172,30254,26133,10726,320,9.3,5,5,14.4,77777,9,999999999,37,0.0000,0,88,0.000,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,53405,15249,34195,13311,360,4.6,10,9,11.2,3048,9,999999999,38,0.0000,0,88,0.000,0.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,54195,25750,23864,9353,190,1.5,5,5,12.8,77777,9,999999999,38,0.0000,0,88,0.000,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,40083,22154,22835,7875,0,0.0,5,5,16.0,77777,9,999999999,39,0.0000,0,88,0.000,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,18458,9155,11431,3712,150,2.1,5,5,16.0,77777,9,999999999,39,0.0000,0,88,0.000,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,3573,0,3150,898,100,1.5,5,4,16.0,2286,9,999999999,40,0.0000,0,88,0.000,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,40,0.0000,0,88,0.000,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,41,0.0000,0,88,0.000,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,42,0.0000,0,88,0.000,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,42,0.0000,0,88,0.000,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,43,0.0000,0,88,0.000,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,43,0.0000,0,88,0.000,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,44,0.0000,0,88,0.000,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,45,0.0000,0,88,0.000,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,45,0.0000,0,88,0.000,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,46,0.0000,0,88,0.000,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,46,0.0000,0,88,0.000,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,1886,0,1334,399,0,0.0,5,5,6.4,3353,9,999999999,47,0.0000,0,88,0.000,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,18060,5171,15394,4005,290,2.1,10,9,9.7,3300,9,999999999,46,0.0000,0,88,0.000,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,18341,2113,16490,5953,0,0.0,10,9,9.6,3048,9,999999999,46,0.0000,0,88,0.000,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,34589,1384,33571,11824,0,0.0,10,9,8.0,3353,9,999999999,46,0.0000,0,88,0.000,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,51334,5823,45716,16129,300,2.6,10,9,9.6,2896,9,999999999,45,0.0000,0,88,0.000,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,58367,6006,52076,18285,290,2.1,10,9,16.0,3658,9,999999999,45,0.0000,0,88,0.000,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,37687,6297,27241,11139,0,0.0,10,9,16.0,2743,9,999999999,44,0.0000,0,88,0.000,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,53890,5534,47491,17316,300,2.1,10,9,14.4,3048,9,999999999,44,0.0000,0,88,0.000,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,45066,4785,39737,14860,0,0.0,10,9,14.4,3658,9,999999999,43,0.0000,0,88,0.000,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,44733,18342,23764,9289,20,2.1,6,5,16.0,77777,9,999999999,43,0.0000,0,88,0.000,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,33993,18950,14512,5482,0,0.0,6,5,14.5,77777,9,999999999,42,0.0000,0,88,0.000,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,13018,792,12416,3906,360,2.6,10,9,12.8,1036,9,999999999,42,0.0000,0,88,0.000,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,3137,0,2021,627,0,0.0,5,5,12.8,975,9,999999999,41,0.0000,0,88,0.000,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,41,0.0000,0,88,0.000,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,41,0.0000,0,88,0.000,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,40,0.0000,0,88,0.000,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,40,0.0000,0,88,0.000,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,39,0.0000,0,88,0.000,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,39,0.0000,0,88,0.000,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,38,0.0000,0,88,0.000,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,38,0.0000,0,88,0.000,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,37,0.0000,0,88,0.000,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,37,0.0000,0,88,0.000,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,37,0.0000,0,88,0.000,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,2202,0,1434,418,0,0.0,3,3,4.8,77777,9,999999999,36,0.0000,0,88,0.000,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,20781,9500,5353,1872,300,2.1,0,0,4.8,77777,9,999999999,36,0.0000,0,88,0.000,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,47498,30275,8299,3216,260,2.1,0,0,4.8,77777,9,999999999,36,0.0000,0,88,0.000,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,66595,86992,12775,1989,270,2.6,0,0,8.0,77777,9,999999999,35,0.0000,0,88,0.000,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,78397,35925,20145,8392,290,3.6,3,3,9.6,77777,9,999999999,35,0.0000,0,88,0.000,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,91814,39622,27459,11218,320,3.1,5,5,9.6,77777,9,999999999,35,0.0000,0,88,0.000,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,93530,37507,21188,8858,310,4.6,3,3,9.6,77777,9,999999999,34,0.0000,0,88,0.000,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,101903,44871,24275,10043,310,2.1,2,2,9.6,77777,9,999999999,34,0.0000,0,88,0.000,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,86662,42152,26557,10777,300,2.6,3,3,11.2,77777,9,999999999,34,0.0000,0,88,0.000,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,69645,37744,13738,5662,330,4.1,2,2,12.8,77777,9,999999999,34,0.0000,0,88,0.000,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,43237,28725,13219,5030,300,3.1,3,3,12.8,77777,9,999999999,33,0.0000,0,88,0.000,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,22237,12917,15438,4384,330,4.1,5,5,16.0,77777,9,999999999,33,0.0000,0,88,0.000,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,3728,0,2529,737,280,2.6,5,5,16.0,77777,9,999999999,33,0.0000,0,88,0.000,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,33,0.0000,0,88,0.000,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,32,0.0000,0,88,0.000,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,32,0.0000,0,88,0.000,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,32,0.0000,0,88,0.000,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,32,0.0000,0,88,0.000,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,31,0.0000,0,88,0.000,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,31,0.0000,0,88,0.000,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,31,0.0000,0,88,0.000,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,30,0.0000,0,88,0.000,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,30,0.0000,0,88,0.000,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,30,0.0000,0,88,0.000,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,1336,0,1345,434,0,0.0,2,2,6.4,77777,9,999999999,30,0.0000,0,88,0.000,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,12585,2884,10329,3202,70,4.6,3,3,8.0,77777,9,999999999,29,0.0000,0,88,0.000,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,35713,20955,19515,6728,100,3.1,0,0,11.2,77777,9,999999999,29,0.0000,0,88,0.000,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,59698,32997,27329,10173,30,2.6,0,0,14.4,77777,9,999999999,29,0.0000,0,88,0.000,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,70934,29644,38621,14377,320,2.1,2,2,16.0,77777,9,999999999,29,0.0000,0,88,0.000,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,73860,24467,44970,16596,310,2.1,5,5,14.4,77777,9,999999999,29,0.0000,0,88,0.000,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,57077,12759,39866,15314,290,3.1,5,5,14.4,77777,9,999999999,28,0.0000,0,88,0.000,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,74668,26406,41424,15678,320,4.6,5,5,12.8,77777,9,999999999,28,0.0000,0,88,0.000,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,61552,23495,33120,12900,330,3.6,5,5,14.4,77777,9,999999999,28,0.0000,0,88,0.000,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,58902,30113,30137,11119,290,4.6,3,3,16.0,77777,9,999999999,28,0.0000,0,88,0.000,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,35389,16167,24018,8004,310,5.2,2,2,16.0,77777,9,999999999,27,0.0000,0,88,0.000,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,15961,6457,11495,3637,290,5.7,0,0,14.4,77777,9,999999999,27,0.0000,0,88,0.000,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,2305,0,2311,677,300,4.6,0,0,11.2,77777,9,999999999,27,0.0000,0,88,0.000,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,27,0.0000,0,88,0.000,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,26,0.0000,0,88,0.000,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,26,0.0000,0,88,0.000,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,26,0.0000,0,88,0.000,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,26,0.0000,0,88,0.000,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,25,0.0000,0,88,0.000,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,25,0.0000,0,88,0.000,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,25,0.0000,0,88,0.000,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,25,0.0000,0,88,0.000,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,25,0.0000,0,88,0.000,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,24,0.0000,0,88,0.000,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,1533,0,1427,406,300,3.6,4,3,6.4,77777,9,999999999,24,0.0000,0,88,0.000,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,9997,1172,9030,2889,300,5.7,10,9,11.2,457,9,999999999,24,0.0000,0,88,0.000,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,34722,22679,17951,6280,310,7.2,5,5,16.0,77777,9,999999999,23,0.0000,0,88,0.000,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,63800,41831,23006,8814,300,7.2,0,0,16.0,77777,9,999999999,23,0.0000,0,88,0.000,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,72550,35778,34805,13236,300,5.7,5,5,16.0,77777,9,999999999,23,0.0000,0,88,0.000,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,47586,3392,44184,16301,280,6.2,10,9,16.0,3658,9,999999999,22,0.0000,0,88,0.000,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,103350,51488,30952,12383,330,5.7,0,0,16.0,77777,9,999999999,22,0.0000,0,88,0.000,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,99395,51012,30154,12082,320,5.7,0,0,16.1,77777,9,999999999,22,0.0000,0,88,0.000,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,86618,48454,27719,11079,310,5.7,0,0,16.0,77777,9,999999999,22,0.0000,0,88,0.000,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,60778,35638,27724,10370,300,6.7,4,2,16.0,77777,9,999999999,21,0.0000,0,88,0.000,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,41814,30837,17557,6319,320,4.6,0,0,16.0,77777,9,999999999,21,0.0000,0,88,0.000,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,17322,10636,10207,3297,330,5.7,0,0,16.0,77777,9,999999999,21,0.0000,0,88,0.000,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,2214,0,2109,617,300,4.1,0,0,16.0,77777,9,999999999,20,0.0000,0,88,0.000,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,20,0.0000,0,88,0.000,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,20,0.0000,0,88,0.000,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,19,0.0000,0,88,0.000,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,19,0.0000,0,88,0.000,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,19,0.0000,0,88,0.000,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,18,0.0000,0,88,0.000,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,18,0.0000,0,88,0.000,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,18,0.0000,0,88,0.000,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,17,0.0000,0,88,0.000,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,17,0.0000,0,88,0.000,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,17,0.0000,0,88,0.000,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,1544,0,1326,379,310,4.1,0,0,12.8,77777,9,999999999,16,0.0000,0,88,0.000,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,16873,10697,8012,2618,310,4.1,0,0,16.0,77777,9,999999999,17,0.0000,0,88,0.000,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,42272,33261,13485,4966,280,3.1,0,0,16.0,77777,9,999999999,17,0.0000,0,88,0.000,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,68045,45766,17977,7120,320,4.6,0,0,16.0,77777,9,999999999,17,0.0000,0,88,0.000,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,89115,51371,21201,8702,330,3.1,0,0,16.0,77777,9,999999999,18,0.0000,0,88,0.000,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,103054,54360,23162,9543,300,4.6,0,0,16.0,77777,9,999999999,18,0.0000,0,88,0.000,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,108174,55734,23884,9812,330,3.6,0,0,16.0,77777,9,999999999,18,0.0000,0,88,0.000,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,103945,55134,23320,9598,270,4.1,0,0,16.0,77777,9,999999999,19,0.0000,0,88,0.000,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,90823,52659,21505,8835,290,5.2,0,0,16.0,77777,9,999999999,19,0.0000,0,88,0.000,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,70193,47193,18400,7328,280,4.1,0,0,16.0,77777,9,999999999,19,0.0000,0,88,0.000,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,44824,35943,14024,5216,310,3.6,0,0,16.0,77777,9,999999999,20,0.0000,0,88,0.000,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,19154,13896,8528,2844,320,2.6,0,0,16.0,77777,9,999999999,20,0.0000,0,88,0.000,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,2213,0,1997,580,300,2.6,0,0,16.0,77777,9,999999999,20,0.0000,0,88,0.000,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,21,0.0000,0,88,0.000,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,21,0.0000,0,88,0.000,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,21,0.0000,0,88,0.000,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,22,0.0000,0,88,0.000,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,22,0.0000,0,88,0.000,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,22,0.0000,0,88,0.000,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,23,0.0000,0,88,0.000,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,23,0.0000,0,88,0.000,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,23,0.0000,0,88,0.000,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,24,0.0000,0,88,0.000,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,24,0.0000,0,88,0.000,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,1647,0,1321,373,0,0.0,0,0,16.0,77777,9,999999999,24,0.0000,0,88,0.000,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,17998,11541,6854,2296,0,0.0,0,0,16.0,77777,9,999999999,25,0.0000,0,88,0.000,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,43880,35118,11213,4209,120,2.6,0,0,16.0,77777,9,999999999,26,0.0000,0,88,0.000,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,69569,45993,14739,5935,170,2.1,0,0,16.0,77777,9,999999999,26,0.0000,0,88,0.000,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,90420,50430,17324,7218,210,3.1,0,0,16.0,77777,9,999999999,27,0.0000,0,88,0.000,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,104112,52401,18877,7897,290,2.6,0,0,16.0,77777,9,999999999,27,0.0000,0,88,0.000,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,109061,52675,19443,8115,0,0.0,0,0,16.0,77777,9,999999999,28,0.0000,0,88,0.000,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,104696,51473,18996,7950,230,3.6,0,0,16.0,77777,9,999999999,29,0.0000,0,88,0.000,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,91557,49196,17455,7295,190,2.6,0,0,16.0,77777,9,999999999,29,0.0000,0,88,0.000,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,71181,44870,14992,6081,160,3.1,0,0,16.0,77777,9,999999999,30,0.0000,0,88,0.000,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,37837,23675,20813,7130,120,2.6,5,5,16.0,77777,9,999999999,31,0.0000,0,88,0.000,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,19885,12979,7221,2467,110,2.1,0,0,16.0,77777,9,999999999,31,0.0000,0,88,0.000,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,2212,0,1774,521,120,2.1,0,0,16.0,77777,9,999999999,32,0.0000,0,88,0.000,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,33,0.0000,0,88,0.000,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,33,0.0000,0,88,0.000,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,34,0.0000,0,88,0.000,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,34,0.0000,0,88,0.000,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,35,0.0000,0,88,0.000,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,36,0.0000,0,88,0.000,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,36,0.0000,0,88,0.000,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,37,0.0000,0,88,0.000,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,38,0.0000,0,88,0.000,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,38,0.0000,0,88,0.000,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,39,0.0000,0,88,0.000,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,761,0,766,272,170,2.6,10,10,4.0,1128,9,999999999,40,0.0000,0,88,0.000,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,3801,0,3831,1602,180,2.6,10,10,2.8,244,9,999999999,40,0.0000,0,88,0.000,0.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,7579,0,7645,3470,180,2.6,10,10,2.4,122,9,999999999,40,0.0000,0,88,0.000,0.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,14444,0,14580,6742,170,4.1,10,10,6.4,244,9,999999999,39,0.0000,0,88,0.000,0.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,18663,0,18849,8929,180,2.1,10,10,6.4,244,9,999999999,39,0.0000,0,88,0.000,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,22258,0,22382,10537,180,2.6,10,10,11.2,549,9,999999999,39,0.0000,0,88,0.000,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,43008,4550,36482,14296,190,4.1,10,9,16.0,762,9,999999999,39,0.0000,0,88,0.000,1.5,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,69344,14357,54070,18616,190,4.1,10,9,2.8,1158,9,999999999,39,0.0000,0,88,0.000,0.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,18892,0,19080,9054,0,0.0,10,10,16.0,274,9,999999999,39,0.0000,0,88,0.000,0.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,12300,0,12417,5938,280,5.2,10,10,0.4,152,9,999999999,39,0.0000,0,88,0.000,0.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,21289,4600,16976,6130,230,2.1,10,9,16.0,640,9,999999999,39,0.0000,0,88,0.000,0.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,8223,565,7459,2541,180,3.6,10,9,16.0,3353,9,999999999,39,0.0000,0,88,0.000,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,1763,0,1546,462,190,2.1,5,5,16.0,77777,9,999999999,39,0.0000,0,88,0.000,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,39,0.0000,0,88,0.000,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,39,0.0000,0,88,0.000,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,39,0.0000,0,88,0.000,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,39,0.0000,0,88,0.000,0.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,39,0.0000,0,88,0.000,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,39,0.0000,0,88,0.000,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,39,0.0000,0,88,0.000,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,39,0.0000,0,88,0.000,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,38,0.0000,0,88,0.000,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,38,0.0000,0,88,0.000,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,38,0.0000,0,88,0.000,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,474,0,478,182,260,3.6,10,10,6.4,122,9,999999999,38,0.0000,0,88,0.000,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,4670,0,4707,1905,260,3.6,10,10,8.0,518,9,999999999,38,0.0000,0,88,0.000,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,12746,1901,10442,3967,280,5.2,9,9,11.2,549,9,999999999,37,0.0000,0,88,0.000,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,28022,8100,17902,7120,320,5.2,9,9,14.4,457,9,999999999,37,0.0000,0,88,0.000,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,26010,3949,19870,8248,300,5.7,9,9,16.0,1067,9,999999999,36,0.0000,0,88,0.000,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,75513,31104,21682,9052,310,6.7,5,5,16.0,77777,9,999999999,36,0.0000,0,88,0.000,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,78872,31177,29869,12075,320,6.2,5,5,16.0,77777,9,999999999,35,0.0000,0,88,0.000,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,64862,16064,46756,16987,320,5.7,9,9,16.0,1981,9,999999999,34,0.0000,0,88,0.000,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,59869,25828,19930,8281,310,6.2,5,5,16.0,77777,9,999999999,34,0.0000,0,88,0.000,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,50572,24544,25308,9592,310,7.7,5,5,16.0,77777,9,999999999,33,0.0000,0,88,0.000,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,35476,21181,18500,6495,310,6.7,3,3,16.0,77777,9,999999999,33,0.0000,0,88,0.000,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,17697,8980,6222,2149,330,5.2,2,2,16.0,77777,9,999999999,32,0.0000,0,88,0.000,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,2121,0,1342,402,320,4.1,0,0,16.0,77777,9,999999999,32,0.0000,0,88,0.000,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,31,0.0000,0,88,0.000,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,31,0.0000,0,88,0.000,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,30,0.0000,0,88,0.000,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,30,0.0000,0,88,0.000,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,29,0.0000,0,88,0.000,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,29,0.0000,0,88,0.000,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,28,0.0000,0,88,0.000,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,27,0.0000,0,88,0.000,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,27,0.0000,0,88,0.000,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,26,0.0000,0,88,0.000,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,26,0.0000,0,88,0.000,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,1200,0,1203,334,320,3.6,7,5,4.8,77777,9,999999999,25,0.0000,0,88,0.000,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,13186,5080,9707,2974,320,2.6,8,3,8.0,77777,9,999999999,25,0.0000,0,88,0.000,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,39386,29683,14065,5114,330,2.6,0,0,12.8,77777,9,999999999,25,0.0000,0,88,0.000,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,64456,41965,18987,7447,20,2.6,0,0,16.0,77777,9,999999999,24,0.0000,0,88,0.000,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,76697,41420,26964,10732,350,1.5,7,2,16.0,77777,9,999999999,24,0.0000,0,88,0.000,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,90725,44580,36538,14125,320,2.1,8,3,16.0,77777,9,999999999,24,0.0000,0,88,0.000,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,88223,39888,36288,14130,290,4.6,8,3,16.0,1372,9,999999999,24,0.0000,0,88,0.000,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,75645,31780,36649,14178,310,4.6,8,3,16.0,77777,9,999999999,23,0.0000,0,88,0.000,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,81346,44061,33407,12808,320,4.6,7,2,16.0,77777,9,999999999,23,0.0000,0,88,0.000,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,60904,37256,26473,9863,320,3.1,8,3,16.0,77777,9,999999999,23,0.0000,0,88,0.000,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,35380,23024,18678,6483,330,6.2,7,2,16.0,77777,9,999999999,23,0.0000,0,88,0.000,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,16272,9934,8445,2752,320,5.7,0,0,16.0,77777,9,999999999,22,0.0000,0,88,0.000,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,1547,0,1439,415,310,4.6,0,0,16.0,77777,9,999999999,22,0.0000,0,88,0.000,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,22,0.0000,0,88,0.000,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,22,0.0000,0,88,0.000,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,21,0.0000,0,88,0.000,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,21,0.0000,0,88,0.000,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,21,0.0000,0,88,0.000,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,21,0.0000,0,88,0.000,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,20,0.0000,0,88,0.000,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,20,0.0000,0,88,0.000,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,20,0.0000,0,88,0.000,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,20,0.0000,0,88,0.000,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,19,0.0000,0,88,0.000,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,1217,0,998,287,50,2.6,5,5,16.0,1524,9,999999999,19,0.0000,0,88,0.000,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,9275,36,9310,2872,50,3.6,10,9,16.0,1524,9,999999999,19,0.0000,0,88,0.000,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,35847,24546,18909,6421,90,2.6,5,5,16.0,77777,9,999999999,19,0.0000,0,88,0.000,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,68857,46862,14378,5771,120,3.1,0,0,16.0,77777,9,999999999,19,0.0000,0,88,0.000,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,89954,51279,16835,7005,50,1.5,0,0,16.0,77777,9,999999999,19,0.0000,0,88,0.000,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,103619,53331,18379,7698,30,4.6,0,0,16.0,77777,9,999999999,19,0.0000,0,88,0.000,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,88070,41752,30483,12208,100,2.6,5,5,16.0,77777,9,999999999,20,0.0000,0,88,0.000,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,90800,45751,23970,9861,190,2.1,2,2,16.0,77777,9,999999999,20,0.0000,0,88,0.000,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,61414,30547,20808,8547,280,2.6,3,3,16.0,77777,9,999999999,20,0.0000,0,88,0.000,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,65350,43488,19042,7483,290,2.1,2,2,16.0,77777,9,999999999,20,0.0000,0,88,0.000,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,37739,27848,15503,5579,290,3.1,3,3,16.0,77777,9,999999999,20,0.0000,0,88,0.000,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,17523,11622,7598,2511,320,3.6,2,2,16.0,77777,9,999999999,20,0.0000,0,88,0.000,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,1556,0,1225,358,330,2.6,0,0,16.0,77777,9,999999999,20,0.0000,0,88,0.000,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,20,0.0000,0,88,0.000,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,20,0.0000,0,88,0.000,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,20,0.0000,0,88,0.000,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,20,0.0000,0,88,0.000,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,20,0.0000,0,88,0.000,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,20,0.0000,0,88,0.000,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,20,0.0000,0,88,0.000,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,20,0.0000,0,88,0.000,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,20,0.0000,0,88,0.000,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,20,0.0000,0,88,0.000,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,21,0.0000,0,88,0.000,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,1102,0,994,282,70,2.6,0,0,9.6,77777,9,999999999,21,0.0000,0,88,0.000,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,15355,8662,7646,2471,100,3.1,0,0,9.6,77777,9,999999999,21,0.0000,0,88,0.000,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,40063,31138,13096,4790,70,3.6,0,0,14.4,77777,9,999999999,21,0.0000,0,88,0.000,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,65344,43791,17563,6925,150,3.1,0,0,16.0,77777,9,999999999,21,0.0000,0,88,0.000,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,85994,49397,20874,8550,140,4.1,0,0,16.0,77777,9,999999999,21,0.0000,0,88,0.000,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,86300,42910,28845,11610,70,3.1,3,3,16.0,77777,9,999999999,21,0.0000,0,88,0.000,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,94666,46084,24397,10031,100,4.6,2,2,16.0,77777,9,999999999,22,0.0000,0,88,0.000,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,48835,9142,38378,14648,120,1.5,5,5,16.0,77777,9,999999999,22,0.0000,0,88,0.000,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,38717,0,39089,15074,130,3.6,9,9,16.0,1524,9,999999999,22,0.0000,0,88,0.000,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,62918,41215,20641,8008,150,2.6,3,3,16.0,77777,9,999999999,22,0.0000,0,88,0.000,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,35130,21539,21006,6963,120,2.1,5,5,16.0,77777,9,999999999,22,0.0000,0,88,0.000,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,15863,9594,7788,2545,100,3.1,0,0,16.0,77777,9,999999999,22,0.0000,0,88,0.000,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,1322,0,1215,348,100,1.5,0,0,16.0,77777,9,999999999,23,0.0000,0,88,0.000,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,23,0.0000,0,88,0.000,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,23,0.0000,0,88,0.000,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,23,0.0000,0,88,0.000,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,23,0.0000,0,88,0.000,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,23,0.0000,0,88,0.000,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,24,0.0000,0,88,0.000,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,24,0.0000,0,88,0.000,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,24,0.0000,0,88,0.000,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,24,0.0000,0,88,0.000,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,24,0.0000,0,88,0.000,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,24,0.0000,0,88,0.000,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,1095,0,987,277,110,2.1,3,3,11.2,77777,9,999999999,25,0.0000,0,88,0.000,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,15514,7996,7105,2326,130,3.1,0,0,11.2,77777,9,999999999,25,0.0000,0,88,0.000,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,37671,26681,17685,6093,130,3.6,3,3,14.4,77777,9,999999999,25,0.0000,0,88,0.000,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,47672,21996,28402,10245,120,4.1,5,5,16.0,77777,9,999999999,24,0.0000,0,88,0.000,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,70583,34844,32368,12412,140,3.6,3,3,16.0,77777,9,999999999,24,0.0000,0,88,0.000,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,25273,3784,18978,7962,140,5.7,9,9,16.0,945,9,999999999,24,0.0000,0,88,0.000,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,25990,0,26254,11958,140,3.1,10,10,16.0,975,9,999999999,24,0.0000,0,88,0.000,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,49417,5463,43535,16078,140,6.2,9,9,16.0,1067,9,999999999,24,0.0000,0,88,0.000,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,21511,0,21721,9953,90,3.1,10,10,4.8,1067,9,999999999,24,0.0000,0,88,0.000,0.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,16426,0,16578,7433,0,0.0,10,10,6.4,610,9,999999999,24,0.0000,0,88,0.000,0.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,17472,1168,16645,5872,0,0.0,9,9,16.0,1829,9,999999999,24,0.0000,0,88,0.000,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,3224,0,3249,1377,200,1.5,10,10,16.0,122,9,999999999,24,0.0000,0,88,0.000,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,572,0,576,212,280,1.5,10,10,16.0,305,9,999999999,24,0.0000,0,88,0.000,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,24,0.0000,0,88,0.000,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,24,0.0000,0,88,0.000,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,24,0.0000,0,88,0.000,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,24,0.0000,0,88,0.000,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,24,0.0000,0,88,0.000,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,24,0.0000,0,88,0.000,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,24,0.0000,0,88,0.000,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,24,0.0000,0,88,0.000,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,24,0.0000,0,88,0.000,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,24,0.0000,0,88,0.000,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,24,0.0000,0,88,0.000,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,859,0,865,273,280,3.6,5,2,6.4,77777,9,999999999,24,0.0000,0,88,0.000,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,11219,2945,8943,2758,280,2.6,6,5,8.0,77777,9,999999999,24,0.0000,0,88,0.000,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,34238,22613,17367,5992,290,4.1,0,0,14.4,77777,9,999999999,24,0.0000,0,88,0.000,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,48533,21556,30780,10800,280,5.2,5,3,16.0,77777,9,999999999,23,0.0000,0,88,0.000,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,78355,42949,29579,11535,290,4.6,0,0,16.0,77777,9,999999999,23,0.0000,0,88,0.000,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,91668,47421,32550,12833,310,5.2,0,0,16.0,77777,9,999999999,23,0.0000,0,88,0.000,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,82647,35670,42119,15764,350,6.7,5,2,16.0,77777,9,999999999,23,0.0000,0,88,0.000,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,86487,40084,44747,16308,310,8.8,5,3,16.0,77777,9,999999999,23,0.0000,0,88,0.000,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,71664,34252,39267,14249,300,7.7,5,2,16.0,77777,9,999999999,23,0.0000,0,88,0.000,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,58557,37355,24583,9179,320,7.2,0,0,16.0,77777,9,999999999,23,0.0000,0,88,0.000,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,34481,23666,17432,6029,320,6.2,0,0,16.0,77777,9,999999999,23,0.0000,0,88,0.000,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,12371,4668,9091,2813,320,4.6,0,0,16.0,77777,9,999999999,23,0.0000,0,88,0.000,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,992,0,994,283,280,2.6,0,0,16.0,77777,9,999999999,22,0.0000,0,88,0.000,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,22,0.0000,0,88,0.000,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,22,0.0000,0,88,0.000,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,22,0.0000,0,88,0.000,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,22,0.0000,0,88,0.000,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,22,0.0000,0,88,0.000,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,22,0.0000,0,88,0.000,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,22,0.0000,0,88,0.000,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,22,0.0000,0,88,0.000,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,21,0.0000,0,88,0.000,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,21,0.0000,0,88,0.000,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,21,0.0000,0,88,0.000,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,0,0,0,0,270,3.6,0,0,16.0,77777,9,999999999,21,0.0000,0,88,0.000,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,16855,8637,5632,1897,280,4.1,0,0,16.0,77777,9,999999999,21,0.0000,0,88,0.000,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,42898,32804,9270,3497,290,4.1,0,0,16.0,77777,9,999999999,21,0.0000,0,88,0.000,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,68516,44319,12290,4966,310,5.7,0,0,16.0,77777,9,999999999,21,0.0000,0,88,0.000,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,89419,49432,14484,6060,320,5.2,0,0,16.0,77777,9,999999999,21,0.0000,0,88,0.000,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,88582,90707,16995,3525,300,5.7,0,0,16.0,77777,9,999999999,21,0.0000,0,88,0.000,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,92150,91608,17239,3977,340,5.2,0,0,16.0,77777,9,999999999,21,0.0000,0,88,0.000,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,88630,90849,16996,3534,300,5.2,0,0,16.0,77777,9,999999999,21,0.0000,0,88,0.000,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,89291,49029,14484,6063,300,5.7,0,0,16.0,77777,9,999999999,21,0.0000,0,88,0.000,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,68354,44952,12304,4972,290,5.7,0,0,16.0,77777,9,999999999,21,0.0000,0,88,0.000,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,42705,33064,9280,3505,300,4.6,0,0,16.0,77777,9,999999999,21,0.0000,0,88,0.000,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,16618,7949,5630,1904,290,3.6,0,0,16.0,77777,9,999999999,21,0.0000,0,88,0.000,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,1113,0,781,229,290,2.1,0,0,16.0,77777,9,999999999,21,0.0000,0,88,0.000,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,21,0.0000,0,88,0.000,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,21,0.0000,0,88,0.000,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,21,0.0000,0,88,0.000,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,21,0.0000,0,88,0.000,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,21,0.0000,0,88,0.000,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,21,0.0000,0,88,0.000,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,21,0.0000,0,88,0.000,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,21,0.0000,0,88,0.000,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,21,0.0000,0,88,0.000,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,21,0.0000,0,88,0.000,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,21,0.0000,0,88,0.000,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,0,0,0,0,270,2.6,0,0,16.0,77777,9,999999999,21,0.0000,0,88,0.000,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,14433,6942,7184,2320,300,3.6,0,0,16.0,77777,9,999999999,21,0.0000,0,88,0.000,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,38879,29238,12390,4537,290,2.6,0,0,16.0,77777,9,999999999,21,0.0000,0,88,0.000,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,63911,42384,16727,6600,290,3.1,0,0,16.0,77777,9,999999999,21,0.0000,0,88,0.000,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,84253,47597,19894,8167,280,3.1,0,0,16.0,77777,9,999999999,22,0.0000,0,88,0.000,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,97467,49439,21682,9003,320,3.6,0,0,16.0,77777,9,999999999,22,0.0000,0,88,0.000,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,100809,50337,27084,11027,350,4.1,2,2,16.0,77777,9,999999999,22,0.0000,0,88,0.000,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,84258,40396,34824,13551,290,4.1,3,3,16.0,77777,9,999999999,23,0.0000,0,88,0.000,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,77349,41622,19758,8125,290,3.6,2,2,16.0,77777,9,999999999,23,0.0000,0,88,0.000,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,33305,15062,15828,6287,280,2.1,3,3,16.0,77777,9,999999999,23,0.0000,0,88,0.000,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,38349,29066,12289,4505,260,2.1,0,0,16.0,77777,9,999999999,23,0.0000,0,88,0.000,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,14011,6217,6971,2268,0,0.0,0,0,16.0,77777,9,999999999,24,0.0000,0,88,0.000,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,0,0,0,0,320,2.6,0,0,16.0,77777,9,999999999,24,0.0000,0,88,0.000,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,24,0.0000,0,88,0.000,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,24,0.0000,0,88,0.000,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,25,0.0000,0,88,0.000,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,25,0.0000,0,88,0.000,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,25,0.0000,0,88,0.000,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,25,0.0000,0,88,0.000,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,26,0.0000,0,88,0.000,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,26,0.0000,0,88,0.000,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,26,0.0000,0,88,0.000,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,26,0.0000,0,88,0.000,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,27,0.0000,0,88,0.000,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,0,0,0,0,0,0.0,3,3,12.8,77777,9,999999999,27,0.0000,0,88,0.000,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,17095,6223,4862,1659,20,1.5,0,0,16.0,77777,9,999999999,27,0.0000,0,88,0.000,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,43192,31115,7917,3009,40,2.1,0,0,14.4,77777,9,999999999,27,0.0000,0,88,0.000,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,68771,43150,10451,4242,30,3.1,0,0,16.0,77777,9,999999999,27,0.0000,0,88,0.000,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,77982,90611,13765,2492,0,0.0,0,0,16.0,77777,9,999999999,27,0.0000,0,88,0.000,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,88348,93366,14498,3216,210,1.5,0,0,16.0,77777,9,999999999,27,0.0000,0,88,0.000,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,64090,26282,25868,10574,0,0.0,5,5,16.0,77777,9,999999999,27,0.0000,0,88,0.000,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,41809,4956,36108,13917,360,1.5,9,9,16.0,1829,9,999999999,27,0.0000,0,88,0.000,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,78935,44893,23430,9435,0,0.0,3,3,16.0,77777,9,999999999,28,0.0000,0,88,0.000,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,60212,39668,18990,7363,110,3.1,2,2,16.0,77777,9,999999999,28,0.0000,0,88,0.000,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,42418,31396,7808,2965,140,2.6,0,0,16.0,77777,9,999999999,28,0.0000,0,88,0.000,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,16309,5923,4753,1621,150,1.5,0,0,16.0,77777,9,999999999,28,0.0000,0,88,0.000,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,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,28,0.0000,0,88,0.000,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,28,0.0000,0,88,0.000,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,28,0.0000,0,88,0.000,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,28,0.0000,0,88,0.000,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,28,0.0000,0,88,0.000,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,28,0.0000,0,88,0.000,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,28,0.0000,0,88,0.000,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,29,0.0000,0,88,0.000,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,29,0.0000,0,88,0.000,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,29,0.0000,0,88,0.000,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,29,0.0000,0,88,0.000,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,29,0.0000,0,88,0.000,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,0,0,0,0,140,1.5,5,5,12.8,77777,9,999999999,29,0.0000,0,88,0.000,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,16285,5822,5173,1749,140,2.6,0,0,12.8,77777,9,999999999,29,0.0000,0,88,0.000,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,17969,2290,16132,5610,140,3.1,10,9,16.0,1036,9,999999999,30,0.0000,0,88,0.000,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,16767,0,16921,7463,140,2.6,10,10,16.0,549,9,999999999,30,0.0000,0,88,0.000,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,21670,0,21880,9917,140,3.6,10,10,16.0,732,9,999999999,31,0.0000,0,88,0.000,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,68664,28652,29918,11973,120,3.6,5,5,16.0,77777,9,999999999,31,0.0000,0,88,0.000,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,68737,27993,28342,11479,150,4.1,5,5,16.0,1676,9,999999999,32,0.0000,0,88,0.000,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,74503,34350,25765,10514,140,3.6,5,5,16.0,1676,9,999999999,32,0.0000,0,88,0.000,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,58439,24957,31590,12066,150,5.2,5,5,16.0,77777,9,999999999,33,0.0000,0,88,0.000,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,31409,4288,27851,9945,140,4.6,10,9,16.0,2286,9,999999999,33,0.0000,0,88,0.000,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,30518,20412,9655,3611,120,3.6,2,2,16.0,77777,9,999999999,34,0.0000,0,88,0.000,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,12292,4264,6107,2007,130,3.6,3,3,16.0,77777,9,999999999,34,0.0000,0,88,0.000,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,0,0,0,0,130,2.1,2,2,16.0,77777,9,999999999,34,0.0000,0,88,0.000,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,35,0.0000,0,88,0.000,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,35,0.0000,0,88,0.000,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,36,0.0000,0,88,0.000,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,36,0.0000,0,88,0.000,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,37,0.0000,0,88,0.000,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,37,0.0000,0,88,0.000,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,38,0.0000,0,88,0.000,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,38,0.0000,0,88,0.000,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,39,0.0000,0,88,0.000,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,39,0.0000,0,88,0.000,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,39,0.0000,0,88,0.000,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,0,0,0,0,150,3.1,10,10,4.0,610,9,999999999,40,0.0000,0,88,0.000,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,4473,0,4507,1774,150,4.1,10,10,14.4,427,9,999999999,40,0.0000,0,88,0.000,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,9157,0,9235,3981,170,5.2,10,10,16.0,366,9,999999999,40,0.0000,0,88,0.000,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,14313,0,14445,6557,150,3.6,10,10,16.0,366,9,999999999,41,0.0000,0,88,0.000,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,21928,0,22141,10009,160,3.6,10,10,16.0,427,9,999999999,41,0.0000,0,88,0.000,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,24952,0,25203,11473,140,3.1,10,10,16.0,579,9,999999999,41,0.0000,0,88,0.000,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,21780,0,22001,10351,140,2.6,10,10,16.0,396,9,999999999,41,0.0000,0,88,0.000,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,20774,0,20983,9892,140,3.6,10,10,16.0,366,9,999999999,41,0.0000,0,88,0.000,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,21713,0,21924,9913,150,2.1,10,10,16.0,914,9,999999999,42,0.0000,0,88,0.000,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,23005,3445,19165,7413,150,1.5,9,9,16.0,1128,9,999999999,42,0.0000,0,88,0.000,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,10519,0,10610,4435,150,2.6,10,10,14.4,1280,9,999999999,42,0.0000,0,88,0.000,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,4168,0,4200,1662,130,1.5,10,10,12.8,1524,9,999999999,42,0.0000,0,88,0.000,0.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,0,0,0,0,0,0.0,10,10,16.0,2438,9,999999999,43,0.0000,0,88,0.000,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,43,0.0000,0,88,0.000,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,43,0.0000,0,88,0.000,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,43,0.0000,0,88,0.000,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,43,0.0000,0,88,0.000,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,44,0.0000,0,88,0.000,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,44,0.0000,0,88,0.000,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,44,0.0000,0,88,0.000,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,44,0.0000,0,88,0.000,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,45,0.0000,0,88,0.000,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,45,0.0000,0,88,0.000,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,45,0.0000,0,88,0.000,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,0,0,0,0,140,2.6,9,9,16.0,1981,9,999999999,45,0.0000,0,88,0.000,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,6229,314,5678,1888,140,4.1,9,9,16.0,1128,9,999999999,44,0.0000,0,88,0.000,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,25449,6687,21083,6702,170,4.1,9,9,16.0,305,9,999999999,44,0.0000,0,88,0.000,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,16021,0,16169,7175,190,5.2,10,10,16.0,427,9,999999999,43,0.0000,0,88,0.000,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,20980,0,21185,9654,200,2.6,10,10,3.2,427,9,999999999,42,0.0000,0,88,0.000,0.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,16813,0,16983,8269,200,1.5,10,10,2.4,152,9,999999999,42,0.0000,0,88,0.000,4.1,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,17604,0,17782,8639,230,4.6,10,10,6.4,152,9,999999999,41,0.0000,0,88,0.000,0.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,20101,0,20301,9589,300,7.7,10,10,12.8,366,9,999999999,40,0.0000,0,88,0.000,0.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,14557,0,14697,7076,330,6.2,10,10,16.0,183,9,999999999,40,0.0000,0,88,0.000,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,24545,3804,20958,7930,320,6.2,9,9,16.0,366,9,999999999,39,0.0000,0,88,0.000,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,7898,0,7964,3467,320,6.2,10,10,16.0,305,9,999999999,38,0.0000,0,88,0.000,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,5806,272,5364,1770,320,6.7,9,9,16.0,3658,9,999999999,38,0.0000,0,88,0.000,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,37,0.0000,0,88,0.000,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,36,0.0000,0,88,0.000,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,35,0.0000,0,88,0.000,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,35,0.0000,0,88,0.000,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,34,0.0000,0,88,0.000,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,33,0.0000,0,88,0.000,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,33,0.0000,0,88,0.000,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,32,0.0000,0,88,0.000,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,31,0.0000,0,88,0.000,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,31,0.0000,0,88,0.000,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,30,0.0000,0,88,0.000,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,29,0.0000,0,88,0.000,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,0,0,0,0,340,2.6,10,10,16.0,122,9,999999999,28,0.0000,0,88,0.000,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,3525,0,3551,1436,350,2.6,10,10,16.0,305,9,999999999,29,0.0000,0,88,0.000,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,16619,1867,15327,5327,10,3.6,10,9,16.0,549,9,999999999,29,0.0000,0,88,0.000,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,15724,0,15865,7012,50,5.2,10,10,16.0,549,9,999999999,29,0.0000,0,88,0.000,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,20704,0,20901,9484,70,4.6,10,10,16.0,488,9,999999999,29,0.0000,0,88,0.000,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,23909,0,24145,11022,70,3.1,10,10,16.0,488,9,999999999,29,0.0000,0,88,0.000,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,24910,0,25158,11478,70,2.1,10,10,16.0,488,9,999999999,29,0.0000,0,88,0.000,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,40329,4571,35096,13541,60,3.1,10,9,16.0,488,9,999999999,29,0.0000,0,88,0.000,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,38646,6746,31953,12064,90,4.6,10,9,16.0,549,9,999999999,29,0.0000,0,88,0.000,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,30046,3515,27272,9657,40,5.2,10,9,16.0,610,9,999999999,30,0.0000,0,88,0.000,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,8884,0,8958,3812,80,3.1,10,10,16.0,610,9,999999999,30,0.0000,0,88,0.000,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,3998,0,4028,1573,80,3.6,10,10,16.0,671,9,999999999,30,0.0000,0,88,0.000,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,30,0.0000,0,88,0.000,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,30,0.0000,0,88,0.000,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,30,0.0000,0,88,0.000,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,30,0.0000,0,88,0.000,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,31,0.0000,0,88,0.000,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,31,0.0000,0,88,0.000,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,31,0.0000,0,88,0.000,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,31,0.0000,0,88,0.000,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,31,0.0000,0,88,0.000,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,31,0.0000,0,88,0.000,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,31,0.0000,0,88,0.000,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,31,0.0000,0,88,0.000,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,0,0,0,0,60,6.2,10,10,3.2,122,9,999999999,32,0.0000,0,88,0.000,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,2637,0,2657,1113,60,5.2,10,10,2.4,122,9,999999999,32,0.0000,0,88,0.000,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,6897,0,6955,3093,60,6.2,10,10,8.0,183,9,999999999,32,0.0000,0,88,0.000,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,11212,0,11313,5280,60,6.7,10,10,11.2,183,9,999999999,32,0.0000,0,88,0.000,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,14687,0,14827,7113,70,6.7,10,10,11.2,183,9,999999999,32,0.0000,0,88,0.000,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,20247,0,20446,9613,70,6.2,10,10,14.4,244,9,999999999,32,0.0000,0,88,0.000,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,21049,0,21258,9989,70,8.2,10,10,16.0,305,9,999999999,32,0.0000,0,88,0.000,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,20030,0,20227,9517,70,6.2,10,10,16.0,305,9,999999999,32,0.0000,0,88,0.000,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,17362,0,17527,8174,50,6.7,10,10,16.0,305,9,999999999,33,0.0000,0,88,0.000,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,13032,0,13149,5964,70,6.2,10,10,16.0,305,9,999999999,33,0.0000,0,88,0.000,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,7790,0,7854,3399,70,7.2,10,10,16.0,305,9,999999999,33,0.0000,0,88,0.000,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,2731,0,2752,1130,70,7.2,10,10,16.0,244,9,999999999,33,0.0000,0,88,0.000,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,33,0.0000,0,88,0.000,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,33,0.0000,0,88,0.000,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,33,0.0000,0,88,0.000,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,33,0.0000,0,88,0.000,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,33,0.0000,0,88,0.000,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,34,0.0000,0,88,0.000,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,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,20,4.1,8,7,32.2,460,9,999999999,36,0.0000,0,88,0.000,0.0,1.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,7406,211,7209,2258,20,5.2,7,7,32.2,700,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,11759,0,11859,4790,360,5.7,10,10,32.2,340,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,7618,0,7687,3748,30,5.2,10,10,32.2,340,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,14635,0,14776,7101,30,4.1,10,10,32.2,340,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,45270,84,45472,16250,70,4.1,10,10,48.3,340,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,46553,168,46768,16786,90,3.1,10,10,48.3,1070,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,38955,0,39342,15589,0,0.0,10,10,48.3,1070,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,34951,78,35171,12878,60,3.1,10,10,48.3,1070,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,32076,7870,25348,9105,70,1.5,9,9,40.2,910,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,22892,9195,16188,5439,50,2.1,7,7,40.2,980,9,999999999,31,0.0000,0,88,0.000,0.0,1.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,8132,877,6837,2104,90,3.1,6,6,40.2,980,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,29,0.0000,0,88,0.000,0.0,1.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,29,0.0000,0,88,0.000,0.0,1.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,29,0.0000,0,88,0.000,0.0,1.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,29,0.0000,0,88,0.000,0.0,1.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,29,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,270,3.6,0,0,4.8,77777,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,12189,3914,6893,2172,290,3.1,0,0,9.7,77777,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,33654,23550,12180,4396,280,4.1,1,1,11.3,77777,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,48144,26413,23856,8763,290,4.1,5,5,11.3,77777,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,76452,42694,25110,9939,260,5.2,2,2,19.3,77777,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,85354,42194,38217,14395,280,5.2,6,6,19.3,940,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,71389,20880,51073,17643,300,5.2,6,6,16.1,980,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,75544,35697,32619,12726,340,4.1,5,5,16.1,77777,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,63638,28701,37180,13308,260,6.2,5,5,16.1,77777,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,49371,29601,21247,7917,270,3.6,2,2,19.3,77777,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,32491,23829,12130,4312,250,7.2,1,0,19.3,77777,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,8201,926,7133,2142,270,3.1,7,5,12.9,2740,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,300,5.2,1,1,24.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,10434,3267,7016,2183,300,4.6,1,1,48.3,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,33512,25310,14438,5022,300,4.1,1,1,48.3,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,56019,84970,6761,1318,310,4.1,1,1,48.3,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,73796,93072,7811,1701,300,5.2,0,0,48.3,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,81376,90990,10951,2519,280,6.2,3,3,48.3,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,72701,35391,27798,11183,300,7.2,6,6,48.3,1830,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,82606,46017,22747,9303,280,8.2,6,5,48.3,9140,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,69891,43278,19714,7948,260,8.2,7,6,48.3,9140,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,55186,40751,17612,6711,270,8.2,5,4,40.2,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,31952,26487,13356,4616,260,7.2,5,5,40.2,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,10867,3526,5107,1635,300,4.1,3,1,40.2,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,260,2.6,6,2,24.1,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,10041,3030,7640,2304,300,3.1,9,4,12.9,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,33458,27376,12996,4587,300,2.6,8,3,12.9,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,53965,37524,22083,8162,270,2.6,8,3,12.9,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,74691,46678,20856,8383,170,2.6,8,3,48.3,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,98118,56633,17101,7135,160,5.2,8,3,48.3,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,85399,93505,11015,2674,220,3.1,8,3,48.3,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,81332,88712,15247,2909,230,5.2,5,4,48.3,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,76939,49459,20459,8205,230,5.2,5,5,48.3,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,28432,4849,24822,8797,220,4.1,6,5,48.3,7620,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,9908,0,9988,4043,200,5.2,7,6,48.3,2440,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,1498,0,1498,509,200,4.1,7,7,48.3,1460,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,8863,957,8127,2388,310,5.7,10,10,6.4,120,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,36723,30055,8552,3168,320,6.2,4,1,12.9,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,60781,42129,10527,4208,320,6.2,2,2,16.1,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,61923,32147,30034,11374,320,6.7,4,3,24.1,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,72012,28083,46213,16190,320,6.7,5,4,32.2,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,74061,29852,44230,15996,320,6.2,8,6,32.2,850,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,76273,38187,35874,13577,320,3.1,7,6,32.2,850,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,61579,34075,25087,9779,320,7.2,6,5,32.2,850,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,48830,33105,19250,7200,320,7.7,6,5,32.2,850,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,35010,29834,10002,3594,320,7.2,3,2,32.2,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,10896,2232,5068,1601,320,4.6,2,2,24.1,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,12609,41533,3768,612,340,3.1,0,0,16.1,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,35003,72206,5799,1022,50,5.2,0,0,19.3,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,56134,86081,7336,1381,60,7.2,0,0,24.1,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,71333,90240,9043,1858,40,4.1,0,0,48.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,83364,96203,9267,2187,350,5.2,0,0,48.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,86281,96927,9209,2302,40,4.1,0,0,48.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,82979,97125,8752,2065,100,4.1,0,0,48.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,71614,93125,8801,1786,100,3.1,0,0,48.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,54460,86586,7504,1375,70,3.6,0,0,48.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,31949,69623,5966,1015,50,4.1,0,0,48.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,9559,34853,3452,547,50,3.6,0,0,48.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,12501,42098,3455,582,0,0.0,0,0,12.9,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,34968,75294,3541,711,320,2.6,0,0,16.1,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,55020,86660,5194,1068,290,4.6,0,0,19.3,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,72328,94772,5470,1256,300,3.6,0,0,40.2,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,81211,94832,7810,1904,340,5.2,0,0,40.2,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,85524,97250,8031,2049,260,5.2,0,0,40.2,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,80980,95784,7822,1878,10,4.1,0,0,40.2,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,69515,91974,7433,1577,350,3.1,0,0,48.3,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,51783,82921,7224,1336,320,3.6,0,0,48.3,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,30280,66490,5820,996,290,2.6,0,0,48.3,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,9593,0,2608,874,320,2.1,0,0,48.3,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,11645,753,2974,1013,250,1.5,0,0,32.2,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,31191,63636,6104,1047,290,1.5,2,1,24.1,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,51504,78173,8205,1469,300,4.1,3,0,19.3,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,67564,85651,9073,1839,320,4.6,0,0,19.3,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,77060,87618,10762,2377,320,3.1,0,0,24.1,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,81835,90412,11353,2605,300,3.1,0,0,40.2,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,78369,89880,11448,2422,300,5.7,1,1,40.2,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,67431,85670,11285,2025,290,3.6,1,1,40.2,77777,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,50793,79039,9383,1530,320,3.1,0,0,48.3,77777,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,31820,23038,6016,2228,290,2.6,0,0,48.3,77777,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,8411,0,2808,936,270,2.6,0,0,40.2,77777,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,9319,2065,7152,2136,310,3.6,0,0,19.3,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,31936,22991,7287,2714,290,3.1,0,0,19.3,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,54636,35693,10129,4043,290,3.6,0,0,19.3,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,74236,41749,12145,5042,290,3.6,0,0,19.3,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,86226,43937,13842,5832,320,4.1,0,0,19.3,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,89050,45459,16797,7053,300,4.1,0,0,19.3,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,75885,39755,21855,8946,300,3.6,1,1,19.3,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,71059,42037,16056,6547,300,4.1,0,0,19.3,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,52243,35550,11515,4521,290,4.6,0,0,24.1,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,29093,21238,8084,2935,310,3.1,0,0,24.1,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,7523,0,3541,1151,310,2.1,0,0,24.1,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,9999,198,4031,1341,310,3.1,0,0,11.3,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,31415,21328,6272,2350,270,3.1,0,0,11.3,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,53201,33311,8746,3504,290,4.1,0,0,11.3,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,71662,39077,11776,4893,290,3.1,0,0,16.1,77777,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,75526,82882,14606,2722,340,3.1,0,0,16.1,77777,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,79027,84128,15415,2970,290,3.1,0,0,16.1,77777,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,88582,48102,20473,8431,320,3.6,0,0,19.3,77777,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,68287,39513,15356,6274,260,3.1,1,1,19.3,77777,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,51252,35513,13806,5331,270,3.6,1,1,32.2,77777,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,27629,20018,8929,3198,300,3.1,0,0,32.2,77777,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,6922,0,3526,1140,290,2.6,0,0,32.2,77777,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,9594,965,4866,1573,270,4.6,0,0,11.3,77777,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,30042,21301,8793,3223,300,5.2,0,0,11.3,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,51777,33462,12331,4866,300,6.2,0,0,11.3,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,71986,39736,14036,5797,310,4.6,0,0,11.3,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,84756,42799,16310,6835,290,4.1,0,0,11.3,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,87482,43565,18770,7842,290,5.2,0,0,11.3,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,81386,42467,19990,8245,300,5.7,0,0,11.3,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,69637,41446,17454,7048,280,6.2,0,0,11.3,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,56381,41020,9727,3826,310,5.2,0,0,24.1,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,30445,67866,7177,1064,310,6.2,0,0,24.1,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,9041,0,2903,947,320,3.6,0,0,24.1,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,11923,40956,4076,600,300,4.1,0,0,40.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,33501,75005,3394,682,340,4.1,0,0,40.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,54945,89934,4038,856,10,4.6,0,0,40.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,71884,96482,5913,1312,340,5.2,0,0,40.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,93137,55947,17673,7316,350,5.7,0,0,40.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,96841,56554,18095,7518,300,5.2,0,0,40.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,90961,55962,17531,7239,310,4.1,0,0,40.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,70728,97226,7194,1495,310,5.2,0,0,40.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,53162,89069,7400,1326,310,5.2,0,0,40.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,31068,71944,6139,994,300,7.2,0,0,40.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,9111,0,3004,970,310,4.1,0,0,40.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,6,149,310,1,1,1,0,0,0,0,340,3.1,0,0,24.1,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,11761,42234,3453,558,60,2.6,0,0,40.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,33707,75178,4006,777,100,4.6,0,0,32.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,55125,89466,5934,1166,90,3.1,0,0,32.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,71095,95492,6616,1430,250,1.5,0,0,32.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,80511,97882,6632,1597,70,2.1,0,0,32.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,81236,94579,9008,2119,120,2.6,0,0,32.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,78599,95776,8545,1912,40,3.1,0,0,32.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,66681,91266,7756,1569,30,2.6,0,0,32.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,49080,81227,8124,1390,340,4.6,0,0,32.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,27185,62515,5993,977,350,2.1,0,0,32.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,7451,0,2565,836,300,2.1,0,0,24.1,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,6,103,320,1,0,1,0,0,0,0,300,2.1,0,0,24.1,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,11266,88,3491,1157,80,2.1,0,0,32.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,30723,64047,7009,1095,140,3.1,0,0,19.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,52241,81566,9075,1513,170,3.6,0,0,24.1,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,67797,88347,9923,1878,170,4.6,0,0,32.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,78133,92006,11072,2297,130,4.1,0,0,32.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,80792,92100,11793,2505,160,5.2,0,0,32.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,76516,90603,11892,2333,140,5.7,0,0,32.2,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,65146,85946,11601,1954,130,3.6,0,0,32.2,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,55587,42525,8922,3492,120,3.1,0,0,24.1,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,29982,23897,5428,1978,170,4.1,0,0,24.1,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,7003,0,2875,922,150,3.6,0,0,24.1,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,9649,1131,4438,1424,80,2.6,0,0,12.9,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,30405,24192,8358,3039,90,3.1,0,0,12.9,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,48529,32508,22335,7994,90,2.1,0,0,12.9,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,58531,32022,23929,9294,150,2.1,4,4,14.5,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,84789,45742,16514,6878,170,3.6,5,5,19.3,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,65790,31776,24664,9975,110,3.1,5,5,24.1,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,88768,53677,24732,9865,160,3.6,5,5,24.1,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,65282,41441,21474,8366,120,2.1,4,4,24.1,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,44824,31932,17084,6296,160,5.2,4,4,24.1,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,16596,8819,9301,3237,140,4.1,1,1,24.1,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,5604,0,3483,1080,120,3.6,0,0,19.3,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,9280,453,4933,1551,80,3.1,3,2,3.2,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,31930,24045,8968,3240,90,4.1,6,2,8.0,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,48410,32088,17058,6437,130,5.2,9,3,16.1,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,68374,40150,18330,7370,150,4.6,9,2,19.3,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,58401,25279,29600,11510,110,6.2,9,3,24.1,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,77076,38813,35546,13404,160,6.2,9,6,32.2,7620,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,60449,26085,33915,12685,160,4.6,10,8,40.2,7620,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,41401,9359,33775,11769,140,5.2,10,9,40.2,7620,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,31327,10188,24125,8131,150,5.2,9,9,40.2,7620,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,17770,5506,14325,4480,90,5.2,10,7,40.2,7620,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,3475,0,3500,1187,100,3.6,10,9,24.1,4270,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,6040,46,5729,1730,100,3.6,10,9,2.4,150,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,19213,4473,16216,5175,120,6.2,9,8,4.8,180,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,39648,17884,25798,8817,150,5.2,9,7,11.3,5180,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,56359,23902,35378,12381,150,5.2,9,8,16.1,460,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,59428,20390,39315,14170,160,5.7,9,7,24.1,700,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,50682,8160,42995,15242,160,5.2,10,7,24.1,4880,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,43090,3341,40213,14217,170,6.2,10,9,24.1,4880,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,27264,1521,25922,9729,160,5.2,10,10,24.1,7620,9,999999999,31,0.0000,0,88,0.000,0.0,1.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,30237,6267,25986,8476,140,7.2,10,8,24.1,7620,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,9311,1115,8071,2848,150,5.7,9,8,24.1,7620,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,4039,0,4069,1288,150,3.1,10,10,24.1,3960,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,33,0.0000,0,88,0.000,0.0,1.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,33,0.0000,0,88,0.000,0.0,1.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,33,0.0000,0,88,0.000,0.0,1.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,34,0.0000,0,88,0.000,0.0,1.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,34,0.0000,0,88,0.000,0.0,1.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,34,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.3,1.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,35,0.0000,0,88,0.000,0.8,1.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,35,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,6011,0,5702,1715,160,4.1,10,10,8.0,7620,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,15425,674,15053,4904,200,4.6,10,10,8.0,150,9,999999999,37,0.0000,0,88,0.000,0.0,1.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,11341,562,10779,4252,190,4.1,10,10,11.3,1370,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,27448,473,27145,10248,220,6.2,10,10,12.9,370,9,999999999,38,0.0000,0,88,0.000,0.0,1.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,34437,576,33966,12781,220,8.2,10,10,19.3,430,9,999999999,39,0.0000,0,88,0.000,0.0,1.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,38624,229,38653,14205,200,5.2,10,10,22.5,430,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,35447,223,35446,13062,220,6.2,10,10,19.3,580,9,999999999,40,0.0000,0,88,0.000,0.0,1.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,30007,71,30188,10871,220,4.6,10,10,19.3,3050,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,22372,191,22381,7678,220,5.7,10,10,24.1,3050,9,999999999,41,0.0000,0,88,0.000,0.0,1.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,12929,42,12877,4125,200,6.2,10,10,19.3,5490,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,3637,0,3663,1190,180,3.6,10,10,19.3,5180,9,999999999,42,0.0000,0,88,0.000,0.0,1.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,43,0.0000,0,88,0.000,0.0,1.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,42,0.0000,0,88,0.000,0.0,1.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,42,0.0000,0,88,0.000,0.0,1.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,41,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,40,0.0000,0,88,0.000,0.0,1.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,39,0.0000,0,88,0.000,0.0,1.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,38,0.0000,0,88,0.000,0.5,1.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,38,0.0000,0,88,0.000,0.0,1.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,37,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,2318,0,2335,934,310,3.1,10,10,11.3,1370,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,9086,0,9161,3695,310,3.6,10,10,9.7,210,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,17526,58,17490,6539,310,3.1,10,10,11.3,1520,9,999999999,31,0.0000,0,88,0.000,0.0,1.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,24318,0,24546,10243,320,3.1,10,10,14.5,1830,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,37811,1190,36799,13456,290,2.6,10,10,24.1,1830,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,21522,0,21731,9921,270,3.6,10,10,24.1,1830,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,32028,2722,29199,11238,270,3.6,10,10,24.1,2130,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,60548,36023,28681,10394,260,4.1,9,7,32.2,7620,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,27024,10153,18972,6743,270,5.7,8,7,32.2,2740,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,17664,4099,15463,4564,270,4.1,8,5,32.2,7620,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,3431,0,3329,1000,270,4.1,7,4,32.2,7620,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,6,264,286,1,7,0,0,0,0,0,310,5.2,1,0,24.1,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,9616,37944,2981,490,320,6.2,0,0,24.1,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,31768,75589,3252,650,320,5.2,2,2,24.1,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,57003,46038,12538,4829,340,6.2,2,2,24.1,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,69555,47759,18835,7450,320,4.1,6,6,24.1,7620,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,68604,39687,26332,10318,320,3.6,7,5,24.1,7620,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,52065,15657,37765,13786,320,4.6,8,6,24.1,7620,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,57651,26803,32921,12209,320,3.6,9,9,24.1,7620,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,48226,20557,32906,11313,320,3.6,9,6,32.2,7620,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,29372,6932,25184,8118,320,4.1,10,9,32.2,6710,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,19489,10717,13712,4197,310,6.2,9,7,32.2,6710,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,3029,0,2924,888,300,2.6,7,3,32.2,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,5211,44,5116,1538,20,4.1,9,7,32.2,7620,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,25578,19898,11409,3901,60,2.6,9,6,32.2,7620,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,43405,28325,22889,7949,60,2.6,9,6,32.2,7620,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,66159,43523,15577,6267,90,3.6,7,5,32.2,7620,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,77306,46996,18653,7615,90,1.5,7,5,32.2,7620,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,78660,46804,26396,10429,160,2.6,9,5,32.2,7620,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,64391,31932,36679,13134,90,1.5,7,7,32.2,7620,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,63958,45004,20004,7727,330,2.1,5,5,32.2,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,43151,74447,8758,1376,270,1.5,3,3,32.2,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,23898,18086,5480,1957,60,2.6,5,4,32.2,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,4433,0,2391,745,100,2.6,5,4,32.2,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,3793,0,3820,1357,0,0.0,9,8,16.1,3660,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,15793,5444,11890,4024,40,1.5,8,8,16.1,3050,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,35368,22889,12701,4878,90,3.1,5,4,24.1,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,64135,88668,8073,1583,60,5.2,2,2,24.1,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,73968,92925,8071,1753,90,6.2,1,1,24.1,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,76295,92764,9109,1978,60,6.7,1,1,24.1,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,71593,90047,9859,1962,70,3.6,1,1,24.1,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,60169,83095,11567,1834,30,2.1,1,1,24.1,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,49067,37632,7481,2896,70,5.2,1,1,24.1,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,24892,18059,4915,1761,80,5.2,2,2,24.1,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,4374,0,1420,460,100,4.6,3,2,24.1,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,3884,0,3912,1371,60,4.6,10,10,11.3,3660,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,7155,0,7212,2988,90,7.2,10,10,11.3,7620,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,16913,0,17059,6908,90,5.2,10,10,11.3,7620,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,14378,0,14509,6684,90,6.2,10,10,11.3,3660,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,17198,0,17360,8075,80,9.3,10,10,11.3,1070,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,15057,0,15199,7277,70,5.2,10,10,11.3,3660,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,24729,0,24960,10665,90,7.2,10,10,11.3,3660,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,31737,172,31811,10927,90,9.8,10,10,24.1,3660,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,15453,0,15583,6201,90,10.3,10,9,24.1,3660,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,7816,0,7877,3021,90,7.7,10,9,24.1,1370,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,1159,0,1167,456,80,8.2,10,10,16.1,1070,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,2529,0,2547,974,90,6.2,10,10,12.9,400,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,17327,198,17302,5130,90,6.2,10,9,16.1,400,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,25074,398,24984,8330,90,8.8,10,10,16.1,400,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,22725,0,22931,9543,70,7.2,10,10,16.1,610,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,33195,83,33276,12290,120,8.2,10,10,24.1,610,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,13302,0,13428,6513,110,7.2,10,10,24.1,400,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,12005,0,12117,5870,90,6.7,10,10,24.1,370,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,15366,0,15504,6917,90,6.7,10,10,24.1,370,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,9987,0,10072,4391,100,7.7,10,10,12.9,340,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,4943,0,4981,2075,160,7.7,10,10,12.9,270,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,869,0,875,350,90,6.7,10,10,9.7,210,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,2.0,1.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,20,0.0000,0,88,0.000,2.0,1.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,19,0.0000,0,88,0.000,1.8,1.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,18,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,1753,0,1765,706,310,10.8,7,7,24.1,340,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,6861,161,6758,2436,300,7.7,7,7,24.1,520,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,42340,24251,27570,8786,310,11.3,7,7,24.1,700,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,63374,44023,20513,7937,300,8.2,6,6,32.2,700,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,79539,51711,18731,7587,300,8.2,3,3,40.2,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,96899,63030,16213,6678,310,11.8,3,2,48.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,72835,91968,12018,2124,310,7.2,0,0,48.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,62834,91798,9377,1648,300,11.3,0,0,48.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,45567,81845,8920,1353,290,6.7,0,0,48.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,23726,61290,6178,901,310,7.2,0,0,48.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,4926,0,1409,449,290,5.2,0,0,48.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,6,150,263,1,3,0,0,0,0,0,270,3.6,1,1,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,6694,0,2890,931,270,3.1,0,0,48.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,28444,69168,4487,818,300,3.6,0,0,48.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,48871,85326,6279,1170,300,6.2,1,0,48.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,64855,93111,7110,1426,290,6.7,1,0,48.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,74011,95214,8497,1775,270,7.2,1,0,48.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,70425,42568,18227,7443,290,7.7,7,4,48.3,7320,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,75492,49799,30736,11384,260,6.7,7,4,48.3,6710,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,60048,44015,17533,6796,280,5.7,7,5,48.3,7620,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,40040,32526,15667,5602,300,5.2,7,5,48.3,7620,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,16348,9096,10940,3442,280,5.2,8,5,48.3,7620,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,2322,0,2338,766,260,3.6,8,6,24.1,7620,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,1751,0,1763,700,90,3.6,10,9,24.1,2440,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,11269,1405,10280,3503,120,6.7,9,8,19.3,2440,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,36311,17170,25454,8297,50,5.2,9,8,19.3,5490,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,46387,17381,33590,11444,120,7.2,8,7,40.2,5490,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,70307,85635,13744,2251,120,6.2,5,5,48.3,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,75664,91868,12488,2275,120,6.2,3,3,48.3,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,71092,91878,10443,1956,140,7.2,3,3,48.3,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,63820,46793,14301,5648,130,7.7,6,3,48.3,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,24952,2639,23529,7452,160,7.7,10,10,48.3,2740,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,7130,0,7185,2745,160,5.7,10,9,48.3,2740,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,967,0,974,377,140,3.6,10,9,24.1,2740,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,3.3,1.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,20,0.0000,0,88,0.000,0.8,1.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,22,0.0000,0,88,0.000,9.1,1.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,23,0.0000,0,88,0.000,4.8,1.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,24,0.0000,0,88,0.000,0.8,1.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,25,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,29,0.0000,0,88,0.000,0.0,1.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,775,0,781,331,120,2.1,10,10,2.4,210,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,3764,0,3794,1684,170,3.1,10,10,3.2,240,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,7264,0,7327,3400,150,2.6,10,10,4.8,180,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,9920,0,10010,4803,190,3.6,10,10,4.8,150,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,11749,0,11860,5774,220,4.1,10,10,4.8,90,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,13937,0,14070,6767,240,3.1,10,10,4.8,150,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,17351,2218,14371,5905,270,3.6,10,10,8.0,210,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,16422,3021,12751,5098,260,5.2,10,10,9.7,210,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,7108,0,7169,3254,270,6.2,10,10,9.7,210,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,3140,0,3165,1377,270,3.6,10,10,9.7,180,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,384,0,386,161,260,4.1,10,10,3.2,90,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,1450,0,1450,482,340,5.7,10,10,4.0,90,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,4858,0,4896,2107,300,4.1,10,10,6.4,120,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,13536,0,13652,5717,320,3.6,10,9,6.4,240,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,20280,0,20463,8648,320,4.1,10,9,6.4,1520,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,31116,80,31180,11555,290,3.1,10,10,9.7,1070,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,17291,0,17454,8091,310,4.1,10,10,8.0,1070,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,17126,0,17284,7877,310,4.1,10,10,11.3,980,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,11237,0,11337,5249,330,3.6,10,10,12.9,980,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,7850,0,7916,3521,340,4.1,10,10,12.9,980,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,2862,0,2884,1255,320,4.1,10,10,9.7,980,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,386,0,388,160,310,2.6,10,10,6.4,980,9,999999999,31,0.0000,0,88,0.000,0.8,1.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,32,0.0000,0,88,0.000,1.3,1.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,33,0.0000,0,88,0.000,1.3,1.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,33,0.0000,0,88,0.000,1.3,1.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,34,0.0000,0,88,0.000,0.5,1.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,34,0.0000,0,88,0.000,0.3,1.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,35,0.0000,0,88,0.000,0.3,1.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,35,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.3,1.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,37,0.0000,0,88,0.000,0.3,1.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,37,0.0000,0,88,0.000,0.5,1.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,38,0.0000,0,88,0.000,0.8,1.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,38,0.0000,0,88,0.000,3.0,1.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,39,0.0000,0,88,0.000,2.0,1.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,388,0,391,169,340,2.6,10,10,3.2,60,9,999999999,37,0.0000,0,88,0.000,0.3,1.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,1191,0,1200,563,30,2.1,10,10,3.2,60,9,999999999,36,0.0000,0,88,0.000,0.3,1.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,5152,0,5196,2472,70,4.1,10,10,3.2,90,9,999999999,34,0.0000,0,88,0.000,0.0,1.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,5426,0,5475,2745,60,3.1,10,10,8.0,120,9,999999999,33,0.0000,0,88,0.000,0.3,1.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,5989,0,6045,3090,90,6.7,10,10,8.0,120,9,999999999,31,0.0000,0,88,0.000,0.3,1.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,7244,0,7312,3717,60,3.6,10,10,8.0,150,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,6082,0,6138,3119,70,3.6,10,10,8.0,150,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,26218,78,26245,9312,70,4.1,10,10,9.7,180,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,18697,0,18752,6757,50,4.1,10,10,8.0,150,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,788,0,794,367,50,3.6,10,10,8.0,120,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,1637,0,1648,562,50,3.6,10,10,3.2,120,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,1845,0,1858,717,360,3.6,10,9,3.2,90,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,8939,0,9009,3432,350,3.6,9,9,6.4,150,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,44834,35407,18174,6444,310,3.6,1,1,9.7,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,60901,87010,9935,1705,320,4.1,0,0,12.9,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,71639,94287,8818,1764,290,3.6,0,0,12.9,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,74666,96110,8640,1792,360,4.6,0,0,24.1,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,71266,97069,7606,1562,330,5.2,0,0,48.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,59864,93194,6758,1310,320,4.6,0,0,48.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,42679,83394,6196,1102,320,5.7,0,0,48.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,21712,62644,4364,744,300,3.6,0,0,48.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,3566,15650,186,41,310,4.6,0,0,48.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,2716,0,2735,974,70,6.7,10,10,11.3,340,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,13968,391,13808,4248,90,6.2,10,10,16.1,370,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,17255,464,16985,6090,90,7.7,10,10,19.3,400,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,66598,46806,14642,5806,60,5.7,5,2,24.1,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,80356,51173,15208,6206,70,4.1,4,0,24.1,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,76310,47205,19522,7871,80,4.6,7,2,24.1,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,51717,26081,26633,10048,90,4.6,10,4,32.2,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,56267,37322,27953,9646,110,5.2,10,4,32.2,77777,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,38786,30603,14547,5173,90,6.2,9,3,32.2,77777,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,15237,4854,12592,3590,80,5.2,10,9,32.2,760,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,2967,0,2871,709,80,5.2,10,9,32.2,640,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,4563,0,4360,1229,80,4.1,8,8,19.3,7620,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,20244,5885,17549,4791,70,5.2,10,7,19.3,7620,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,40300,28667,15218,5564,90,5.2,10,5,24.1,77777,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,50769,27311,28188,9979,80,4.1,9,7,24.1,7620,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,46924,13958,34986,12370,130,4.1,10,8,24.1,7620,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,39940,12619,26654,10272,120,5.2,9,8,24.1,7620,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,44962,16917,29649,10877,120,6.2,10,7,24.1,7620,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,42277,23018,22676,8270,80,4.6,10,7,32.2,7620,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,26199,10241,19522,6413,100,5.2,10,8,32.2,2440,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,11477,2338,9859,3058,110,4.6,10,9,32.2,7620,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,1774,0,1667,489,90,3.6,10,8,32.2,7620,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,5073,0,4549,1245,70,2.1,8,3,24.1,77777,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,19672,11443,12318,3894,100,4.6,9,6,16.1,7620,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,32003,12862,23632,7660,100,4.1,9,7,19.3,3050,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,39739,14513,27962,9882,80,5.2,10,7,19.3,2440,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,31980,4199,28008,10519,100,4.6,10,9,19.3,7620,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,28513,75,28556,10820,120,5.2,10,10,19.3,2130,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,28704,228,28637,10577,60,3.1,10,10,24.1,1830,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,21189,674,20716,7687,70,3.6,10,10,24.1,1830,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,16021,480,15750,5474,110,6.7,10,10,32.2,850,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,7382,445,6834,2290,90,4.6,10,9,40.2,1830,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,2455,0,2356,608,80,4.1,10,10,40.2,1680,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,2597,0,2603,814,80,2.6,10,10,24.1,850,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,5112,53,5121,1840,130,2.1,10,10,24.1,3050,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,20327,534,19979,6829,330,1.5,10,10,19.3,3050,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,14607,170,14425,5718,290,1.5,10,10,16.1,3050,9,999999999,25,0.0000,0,88,0.000,0.3,1.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,19401,503,18894,7556,310,3.1,10,10,11.3,1010,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,16354,0,16404,7611,350,1.5,10,10,11.3,1010,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,32978,239,32954,11649,320,3.6,10,10,19.3,1070,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,29047,158,29105,9786,360,2.1,10,10,40.2,1160,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,22317,4685,19209,6292,40,3.1,9,8,19.3,3050,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,13641,3730,11308,3295,120,3.1,8,6,24.1,3050,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,3420,0,3019,644,90,4.1,7,3,24.1,77777,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,29,0.0000,0,88,0.000,0.0,1.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,29,0.0000,0,88,0.000,0.0,1.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,29,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,4640,0,4223,1157,50,2.1,7,6,16.1,3050,9,999999999,31,0.0000,0,88,0.000,0.0,1.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,11175,1023,10320,3389,40,2.1,10,9,12.9,2740,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,14472,2570,11947,4478,50,2.1,10,9,9.7,2740,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,36738,7425,31153,10530,0,0.0,10,9,9.7,2740,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,54916,23666,34395,12113,120,1.5,8,7,11.3,2740,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,63886,34677,29424,11020,230,2.6,7,6,12.9,2740,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,67835,42387,21198,8272,290,2.1,5,4,24.1,77777,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,46024,28542,19073,7147,340,1.5,4,4,24.1,77777,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,35055,25555,16651,5660,350,2.1,5,4,19.3,77777,9,999999999,27,0.0000,0,88,0.000,0.0,1.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,17243,10388,9592,2944,340,3.1,4,4,24.1,77777,9,999999999,27,0.0000,0,88,0.000,0.8,1.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,3101,0,2907,612,330,2.1,5,4,24.1,77777,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,5294,0,3318,969,300,5.2,0,0,12.9,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,24965,19424,7185,2493,300,4.1,0,0,12.9,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,47639,37935,10223,3867,310,5.7,0,0,19.3,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,59684,41810,13684,5405,320,8.2,1,1,19.3,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,78378,51628,13802,5616,320,10.3,0,0,24.1,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,80573,51860,14090,5766,310,7.2,0,0,24.1,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,76201,53280,13559,5480,300,9.8,0,0,24.1,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,62526,49429,11965,4686,330,8.2,0,0,32.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,42333,38120,9487,3502,310,8.2,0,0,40.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,19063,14251,6217,2074,320,7.7,0,0,48.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,3197,0,2245,544,320,8.8,0,0,48.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,5063,0,3421,977,300,9.3,0,0,40.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,24269,21244,7844,2672,320,7.7,0,0,40.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,47168,41912,11357,4230,340,6.2,0,0,40.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,66180,51536,13836,5430,310,7.7,0,0,40.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,78175,55646,15305,6161,300,4.1,0,0,40.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,81292,56636,15711,6361,310,6.2,0,0,40.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,75750,55431,15036,6019,310,6.2,0,0,40.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,61505,50085,13302,5155,320,7.2,0,0,40.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,40929,37970,10470,3816,310,5.7,0,0,40.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,17891,13680,6742,2211,320,6.2,0,0,40.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,3064,0,2333,534,310,4.6,0,0,40.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,5327,0,3004,879,320,2.6,0,0,40.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,25315,21873,6549,2272,50,2.6,0,0,40.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,48473,42561,9361,3534,80,2.6,0,0,40.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,67618,52058,11467,4546,130,2.1,0,0,40.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,79660,55922,12684,5151,160,2.1,0,0,40.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,82479,56708,12969,5296,110,2.6,0,0,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,76857,55495,12420,5018,120,2.1,0,0,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,62676,50316,10943,4289,240,1.5,0,0,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,42111,38564,8707,3219,160,3.1,0,0,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,18791,13755,5778,1932,130,3.1,0,0,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,3181,0,2128,499,130,3.1,0,0,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,3217,0,2892,845,70,2.1,9,8,32.2,1520,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,314,9708,3153,90,2.6,10,10,32.2,1520,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,18929,3965,16145,5673,60,2.6,10,9,32.2,1520,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,34861,15967,21617,7958,0,0.0,9,8,32.2,3660,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,58832,37023,23602,9001,120,1.0,8,7,19.3,3660,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,34684,4454,30981,11261,180,2.6,9,9,19.3,4570,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,34512,8463,27460,10025,230,2.1,9,9,32.2,4570,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,27667,6257,23134,8170,240,3.6,9,9,32.2,4270,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,26522,11104,20351,6322,230,3.6,10,9,40.2,3960,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,13206,5200,10191,2966,260,1.5,10,8,40.2,2440,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,1529,0,1423,391,0,0.0,8,8,19.3,2440,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,2664,0,2670,789,50,2.1,10,9,9.7,1830,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,13640,1346,12932,3823,50,3.6,10,9,8.0,3660,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,14109,1351,13117,4775,70,3.1,10,10,8.0,1830,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,21275,574,20914,7740,70,3.6,10,10,9.7,3660,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,25532,1052,24617,9301,80,2.6,10,10,11.3,3660,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,38875,5418,34689,12135,50,3.6,9,9,14.5,6100,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,38968,5573,34938,11751,50,3.1,10,9,24.1,7010,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,13989,34204,10284,50,5.7,9,8,24.1,7010,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,20713,3296,18809,5992,60,4.6,10,9,24.1,7010,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,11625,2045,10583,3007,30,3.1,10,9,24.1,6100,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,1111,0,1114,321,50,2.1,10,9,24.1,6100,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,5936,0,2357,707,270,1.5,0,0,9.7,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,23896,62538,6191,879,320,2.6,0,0,8.0,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,43521,81563,8245,1273,320,3.6,0,0,9.7,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,59044,90252,9603,1584,330,4.1,0,0,16.1,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,68827,94465,10413,1819,10,4.6,0,0,20.9,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,71339,95260,10498,1882,300,5.2,0,0,24.1,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,67243,94425,10168,1760,330,5.2,0,0,24.1,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,56079,89807,9373,1511,320,4.6,0,0,32.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,38648,78180,7710,1174,320,4.1,0,0,32.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,19932,11222,4135,1416,310,5.2,0,0,32.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,3514,0,1709,416,310,4.6,0,0,32.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,4257,0,3065,847,100,1.5,0,0,19.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,21888,18208,7470,2515,70,6.2,0,0,24.1,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,43957,39188,10965,4049,100,6.7,0,0,24.1,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,62697,49470,13542,5275,110,4.6,0,0,24.1,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,74738,53811,15003,6004,90,3.1,0,0,32.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,77945,54717,15405,6204,80,3.6,0,0,32.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,72290,52881,14729,5865,90,2.1,0,0,24.1,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,58431,47361,12897,4969,10,2.1,0,0,24.1,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,38557,34920,10079,3648,40,3.1,0,0,24.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,16203,10720,6477,2099,90,2.1,0,0,24.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,2026,0,1605,393,80,3.1,1,1,24.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,4091,0,3456,893,90,4.1,10,4,24.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,18326,8251,14729,3967,90,5.7,10,6,32.2,7620,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,27170,14767,17779,5997,70,5.2,10,7,32.2,7620,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,52486,35844,28304,9509,70,3.6,10,6,32.2,7620,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,45918,16692,33850,11548,90,2.1,10,8,32.2,7620,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,34360,7286,28190,10364,110,2.1,10,9,24.1,7620,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,29992,4232,26697,9681,40,2.1,10,10,24.1,7620,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,22214,933,21633,7659,100,2.1,10,10,24.1,7620,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,14823,389,14656,4959,0,0.0,10,10,24.1,7620,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,9237,1845,7928,2441,0,0.0,10,8,19.3,7620,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,2949,0,2554,380,70,1.0,10,5,19.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,4851,0,2542,723,310,3.1,0,0,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,23072,18564,5634,1946,0,0.0,1,0,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,46502,42169,7869,2958,60,2.1,0,0,24.1,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,64941,52578,10179,4011,40,2.1,1,0,32.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,65545,88624,12997,1917,110,1.5,1,0,32.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,68201,89633,13346,2004,300,3.6,1,0,32.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,63778,87739,12908,1863,290,4.1,1,0,32.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,61327,49697,9309,3641,260,4.1,0,0,32.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,41129,37325,7331,2709,340,2.6,0,0,32.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,17857,11047,4880,1634,360,3.1,0,0,24.1,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,2844,0,1691,378,310,1.5,0,0,19.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,4499,0,2531,711,280,3.6,0,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,23018,17957,5621,1938,290,5.7,0,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,46121,40164,8067,3030,280,4.6,0,0,12.9,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,65148,50564,10032,3958,320,6.2,0,0,19.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,76447,55065,12600,5072,310,5.7,2,0,19.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,79915,56200,12996,5264,330,6.2,2,0,24.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,74242,53950,11428,4595,330,5.2,1,0,24.1,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,60728,48518,9518,3718,310,5.7,0,0,24.1,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,39757,35782,8091,2969,270,4.6,2,1,19.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,13515,7745,8004,2435,280,5.2,7,3,19.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,2478,0,1970,371,280,2.6,8,2,19.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,2023,0,1802,542,260,2.1,10,9,8.0,1220,9,999999999,13,0.0000,0,88,0.000,2.3,1.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,6235,29,6251,2126,310,2.1,10,10,1.6,370,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,18198,340,18058,6000,310,5.2,10,10,6.4,430,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,26043,713,25618,8819,220,6.2,10,10,6.4,340,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,26050,533,25843,9509,250,5.2,10,10,6.4,240,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,30757,245,30708,10969,240,4.6,10,10,6.4,240,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,31139,501,30983,10674,240,7.7,10,10,6.4,310,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,24718,986,24062,8215,250,6.2,10,9,6.4,2440,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,16279,2781,14431,4872,270,4.1,10,9,9.7,1830,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,8595,759,7962,2420,290,4.6,10,9,8.0,1830,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,2325,0,2235,334,290,5.7,10,8,8.0,7620,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,3043,0,2507,685,280,4.1,3,3,9.7,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,20278,15084,7084,2361,290,5.2,1,1,9.7,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,25167,3074,23661,7008,320,6.2,8,8,11.3,910,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,28830,12508,18141,6748,300,6.2,8,8,11.3,910,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,31151,2456,29389,10383,330,7.2,9,9,16.1,1070,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,65241,44406,27204,9992,320,6.2,7,7,40.2,1070,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,67605,51913,17890,6923,310,8.2,4,4,40.2,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,54619,45486,14384,5427,320,9.3,2,2,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,39163,35206,7420,2728,320,4.6,0,0,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,16751,9392,4863,1616,300,7.2,0,0,56.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,280,5.2,0,0,56.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,4031,0,2404,654,270,5.2,0,0,56.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,21054,16431,6030,2042,290,4.1,1,0,48.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,43258,39460,9482,3497,290,4.1,2,0,40.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,61895,49846,11695,4553,270,5.2,2,0,40.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,73918,54878,13253,5295,290,3.6,2,0,40.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,77524,56311,13656,5492,310,5.2,2,0,40.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,72156,54861,12998,5168,290,5.2,2,0,40.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,58746,48935,10182,3945,290,5.2,0,0,40.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,38806,35980,7971,2910,320,3.1,0,0,40.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,16020,9806,5391,1762,320,2.6,1,0,48.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,300,2.1,1,0,48.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,2587,0,2487,655,230,2.6,10,9,8.0,1520,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,10306,116,10237,3091,200,3.1,10,10,0.0,0,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,12714,218,12647,4511,160,4.1,10,10,0.0,0,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,20930,485,20689,7479,180,4.1,10,10,0.0,0,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,26536,150,26567,9637,230,5.2,10,10,3.2,150,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,31949,484,31801,11143,240,5.2,10,10,4.8,240,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,30431,238,30387,10459,190,6.2,10,10,9.7,430,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,54171,40884,16830,6221,200,8.2,3,3,16.1,77777,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,19517,5669,15595,5112,190,8.2,8,8,16.1,1220,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,13453,5407,6693,2107,190,6.2,2,2,24.1,77777,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,180,5.2,9,7,16.1,1220,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,7.1,1.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,20,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,3553,0,3358,715,280,4.1,10,9,40.2,850,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,8969,952,8324,2643,300,10.3,9,9,40.2,850,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,19193,3897,16911,5609,300,8.2,10,9,40.2,850,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,31057,11303,23010,8035,300,7.2,10,9,40.2,850,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,42738,14782,32495,10956,300,8.2,10,9,40.2,790,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,28973,679,28557,10260,300,8.2,10,10,40.2,640,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,29461,3594,26758,9506,300,8.2,10,9,40.2,670,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,30125,5736,26712,8621,300,8.2,10,9,40.2,700,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,16414,2901,14676,4850,300,7.2,10,9,40.2,700,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,8991,812,8474,2464,300,5.2,10,9,40.2,640,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,290,7.7,10,9,24.1,640,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,3942,0,1976,543,290,4.1,0,0,32.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,21305,15546,4717,1618,280,6.2,0,0,32.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,38470,76129,8570,1219,290,7.7,0,0,32.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,54235,86963,10218,1540,290,7.7,0,0,32.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,63433,90896,11027,1763,300,6.7,0,0,32.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,66426,92286,11249,1835,300,6.7,0,0,32.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,72163,55782,11738,4672,300,5.7,3,0,40.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,58429,50767,11507,4402,290,8.8,5,0,40.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,26174,18856,14777,4858,290,4.6,8,5,40.2,7620,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,10031,1901,8975,2537,300,4.6,7,5,40.2,7620,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,300,4.6,8,6,32.2,7620,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,3350,0,2168,564,310,4.6,0,0,24.1,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,19117,15279,6427,2123,300,5.7,3,0,24.1,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,37242,34453,10975,3940,310,3.1,7,1,24.1,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,52826,43968,17683,6503,300,5.2,7,2,32.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,48229,30620,22661,8412,300,5.7,7,5,32.2,7620,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,64765,48002,19952,7679,300,4.6,7,5,32.2,7620,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,65834,51023,12528,4960,300,3.6,3,1,32.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,55783,47930,10391,3995,310,5.2,1,0,32.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,36917,34616,7735,2810,310,3.1,0,0,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,15136,8586,5057,1650,280,3.6,0,0,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,300,2.1,0,0,32.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,3426,0,2256,562,0,0.0,3,0,24.1,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,18930,14262,6096,2023,0,0.0,3,0,9.7,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,35932,32440,15723,5251,0,0.0,7,3,9.7,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,36839,21358,21592,7589,230,1.0,8,6,9.7,7620,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,47653,28096,25615,9225,190,1.5,9,7,12.9,7620,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,37897,7366,32689,11138,180,4.1,10,9,16.1,7010,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,33159,12868,22676,8332,170,2.6,10,9,19.3,3660,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,32417,8634,27367,8647,180,3.6,9,8,19.3,3660,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,23922,13862,15981,5102,160,4.6,8,7,19.3,3050,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,12591,6790,7536,2251,150,3.6,7,4,24.1,7620,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,140,4.1,8,5,24.1,7620,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.3,1.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,12,0.0000,0,88,0.000,0.5,1.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,12,0.0000,0,88,0.000,0.8,1.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,12,0.0000,0,88,0.000,0.8,1.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,12,0.0000,0,88,0.000,1.5,1.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,12,0.0000,0,88,0.000,0.8,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,2570,0,2041,520,280,4.6,4,4,6.4,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,15498,9594,7323,2348,290,5.7,2,2,8.0,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,37246,32409,10910,3911,260,8.2,2,2,11.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,54864,44587,13171,5026,290,9.8,4,4,12.9,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,50857,31365,26192,9360,310,11.3,7,7,16.1,1010,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,47608,24970,27596,9912,310,10.3,7,7,32.2,1070,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,45656,25566,26031,9229,330,9.8,6,6,40.2,1070,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,52242,44798,16792,6109,330,9.3,4,4,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,29933,26033,10203,3595,340,7.7,2,2,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,13488,7235,6087,1916,330,6.7,1,1,32.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,300,5.2,0,0,32.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,3436,0,1939,491,300,4.1,3,2,24.1,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,19261,12879,5116,1723,20,3.6,5,0,8.0,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,40532,37624,8980,3274,70,3.1,7,0,12.9,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,59713,49952,11186,4314,70,3.1,6,0,16.1,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,62411,46356,12960,5133,100,3.1,5,1,19.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,73516,54431,13024,5206,110,2.6,7,1,24.1,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,61426,46976,14936,5822,130,4.1,7,1,24.1,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,57803,48052,9009,3483,150,2.6,3,0,32.2,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,36154,31533,6158,2262,150,3.6,4,1,32.2,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,16043,5475,3753,1260,190,3.1,1,0,32.2,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,130,3.1,0,0,32.2,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,3797,0,1632,434,80,3.1,0,0,11.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,18187,55227,5145,734,80,4.1,1,1,8.0,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,37161,32370,7975,2932,70,3.1,2,2,8.0,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,52083,85076,10271,1503,140,3.6,3,2,11.3,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,57885,83684,11086,1721,130,5.2,3,2,12.9,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,64989,46873,17767,6916,130,5.7,5,2,12.9,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,65501,47837,10766,4288,140,4.6,5,2,16.1,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,39166,28370,16542,6017,120,4.1,7,5,19.3,7620,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,24033,12815,16946,5256,120,4.6,9,6,24.1,7620,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,8567,1225,7605,2243,150,5.2,9,8,24.1,7620,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,110,2.1,10,8,24.1,7620,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,1051,0,1058,348,220,6.2,10,10,9.7,240,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,4396,0,4429,1739,200,8.2,10,10,9.7,210,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,12583,153,12518,4366,220,6.2,10,10,9.7,270,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,19382,66,19360,6944,230,8.2,10,10,12.9,460,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,23036,348,22810,8411,230,6.7,10,10,12.9,7620,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,42514,15118,30497,10577,230,7.7,10,9,24.1,670,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,32276,922,31804,10468,220,6.7,10,10,24.1,730,9,999999999,31,0.0000,0,88,0.000,0.0,1.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,22625,643,22294,7560,220,6.2,10,10,24.1,2740,9,999999999,31,0.0000,0,88,0.000,0.0,1.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,9883,257,9685,3443,220,5.2,10,10,16.1,730,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,6434,139,6232,1948,200,4.1,10,9,24.1,850,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,210,4.1,10,8,19.3,1830,9,999999999,33,0.0000,0,88,0.000,0.0,1.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,33,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,1633,0,1643,434,310,5.2,10,10,12.9,340,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,7470,132,7382,2313,320,7.2,10,10,19.3,7620,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,19553,3245,17759,5585,300,6.2,10,8,32.2,7620,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,39454,25565,21698,7495,290,3.1,10,5,32.2,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,60343,46734,20944,7792,320,6.7,10,4,40.2,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,54688,34583,28519,10031,340,5.2,10,4,40.2,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,52436,36071,26012,9126,300,7.2,10,3,40.2,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,42836,32615,21009,7195,310,5.2,10,3,40.2,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,24381,17279,13989,4586,310,4.6,10,3,40.2,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,11868,5998,7719,2247,310,4.6,8,2,56.3,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,310,4.1,6,1,48.3,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,3012,0,2190,435,20,2.6,8,7,32.2,2440,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,8050,1040,7291,2273,340,3.1,10,9,32.2,2440,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,17514,5737,13954,4693,340,2.1,10,9,32.2,2440,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,22071,0,22257,8089,310,2.1,10,10,24.1,2130,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,53608,38111,22840,8332,340,2.1,9,6,24.1,2290,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,31031,178,31095,10602,280,2.6,10,10,24.1,980,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,29002,955,28483,9690,310,2.1,10,10,24.1,2740,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,20272,302,20139,6969,310,1.5,10,10,24.1,980,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,18596,437,18466,5470,40,1.5,10,10,24.1,980,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,7585,128,7502,2201,290,2.6,10,10,24.1,1160,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,320,2.1,10,10,19.3,1100,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.8,1.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,24,0.0000,0,88,0.000,0.3,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,25,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.3,1.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,27,0.0000,0,88,0.000,2.0,1.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,27,0.0000,0,88,0.000,4.1,1.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,1057,0,1064,326,80,5.2,10,10,4.8,820,9,999999999,27,0.0000,0,88,0.000,3.0,1.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,5069,34,4965,1652,60,6.2,10,10,3.2,120,9,999999999,27,0.0000,0,88,0.000,4.1,1.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,11042,107,10964,3858,60,5.7,10,10,1.6,120,9,999999999,28,0.0000,0,88,0.000,3.6,1.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,15217,65,15161,5621,80,6.2,10,10,1.6,90,9,999999999,28,0.0000,0,88,0.000,0.5,1.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,18312,69,18275,6946,90,8.2,10,10,3.2,90,9,999999999,28,0.0000,0,88,0.000,1.5,1.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,17733,0,17890,7680,90,6.7,10,10,1.3,90,9,999999999,28,0.0000,0,88,0.000,1.5,1.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,19769,71,19859,7411,90,7.2,10,10,1.6,90,9,999999999,28,0.0000,0,88,0.000,0.5,1.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,13663,0,13779,5713,100,8.2,10,10,4.0,120,9,999999999,28,0.0000,0,88,0.000,0.3,1.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,9577,0,9653,3800,90,7.2,10,10,3.2,120,9,999999999,28,0.0000,0,88,0.000,0.3,1.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,4893,11,4905,1589,90,8.8,10,10,8.0,150,9,999999999,29,0.0000,0,88,0.000,1.3,1.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,0,0,0,0,90,8.2,10,10,8.0,150,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,29,0.0000,0,88,0.000,0.0,1.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,29,0.0000,0,88,0.000,0.3,1.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,30,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,2003,0,1692,377,280,3.6,0,0,40.2,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,14346,9340,6344,2018,280,3.6,0,0,32.2,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,34765,33022,9913,3520,260,3.6,0,0,32.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,52720,45987,12691,4788,280,4.1,0,0,32.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,64382,51606,14265,5555,250,4.1,0,0,40.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,68408,53395,14790,5810,250,4.1,0,0,40.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,63818,51714,14246,5530,260,2.6,0,0,48.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,51251,45539,12441,4665,270,4.1,0,0,48.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,32729,31392,9546,3355,250,3.6,0,0,48.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,12486,6575,5866,1831,250,3.6,0,0,48.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,260,4.1,0,0,48.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,2777,0,1393,338,320,9.3,1,1,40.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,16555,8622,3999,1347,330,8.8,1,1,40.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,34896,33125,8392,3026,330,7.2,1,1,40.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,50586,87552,8580,1382,320,7.7,0,0,40.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,58450,87468,10959,1673,340,6.7,2,0,40.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,62722,90010,11864,1774,350,6.7,3,0,40.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,68914,55866,11113,4381,350,6.2,4,0,40.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,56569,49538,8659,3326,340,5.7,3,0,40.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,37526,35422,6707,2433,300,4.1,3,0,40.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,15475,6221,3963,1311,310,5.7,2,0,40.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,310,6.2,2,0,40.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,4,0.0000,0,88,0.000,0.0,1.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,3,0.0000,0,88,0.000,0.0,1.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,3,0.0000,0,88,0.000,0.0,1.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,3,0.0000,0,88,0.000,0.0,1.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,2536,0,1485,335,90,4.1,4,1,40.2,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,14725,10178,6539,2045,90,7.7,9,2,40.2,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,28518,24127,14033,4637,90,5.2,10,5,40.2,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,43543,35666,17653,6310,90,3.6,10,3,40.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,61331,50110,16901,6439,90,4.1,10,2,40.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,62879,49514,18530,7077,80,2.6,10,2,40.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,60785,50237,19378,7207,120,3.6,9,2,40.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,51158,46726,14504,5322,90,3.6,8,2,40.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,34230,33423,8786,3113,110,4.1,7,1,40.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,14875,6855,4391,1435,110,3.6,3,0,40.2,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,160,2.6,1,0,40.2,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,290,3.1,1,0,24.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,15385,7642,4204,1402,290,5.2,1,1,24.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,34454,76537,6561,1047,300,4.1,1,0,24.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,49872,87820,8017,1332,320,5.2,1,0,24.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,60590,94468,8323,1476,320,5.2,0,0,32.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,63605,95481,8560,1542,310,5.2,0,0,32.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,60016,94147,8329,1470,280,5.2,0,0,32.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,49521,88499,7453,1272,290,4.6,0,0,32.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,33635,76596,6125,999,280,4.1,0,0,32.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,14507,49811,4378,623,290,2.6,0,0,32.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,290,2.1,0,0,32.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,260,2.1,0,0,12.9,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,14514,8025,5155,1672,210,1.5,0,0,12.9,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,35561,33323,7817,2821,200,2.1,0,0,12.9,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,53658,46892,10451,3982,200,2.1,1,0,12.9,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,65905,52898,11888,4670,200,3.6,1,0,12.9,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,66808,51477,12407,4917,210,4.1,2,1,19.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,58983,47595,16633,6323,240,3.6,3,2,24.1,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,45114,38404,17479,6195,170,4.1,4,3,32.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,22760,14232,14677,4690,190,5.2,7,6,32.2,7620,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,11424,5097,8301,2313,180,3.1,6,4,32.2,7620,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,180,3.6,7,7,32.2,7620,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.3,1.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,25,0.0000,0,88,0.000,0.8,1.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,26,0.0000,0,88,0.000,0.3,1.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,28,0.0000,0,88,0.000,0.3,1.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,0,0,0,0,140,1.5,10,10,3.2,1220,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,2531,1,2533,868,140,2.1,10,10,3.2,1220,9,999999999,28,0.0000,0,88,0.000,0.3,1.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,7780,332,7446,2704,110,3.1,10,10,3.2,2130,9,999999999,28,0.0000,0,88,0.000,0.3,1.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,12766,58,12694,4769,100,3.6,10,10,2.4,2130,9,999999999,28,0.0000,0,88,0.000,0.5,1.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,13805,476,13377,5231,110,3.1,10,10,1.6,120,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,15848,432,15436,6041,100,3.1,10,10,1.6,90,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,15386,61,15329,5912,130,1.5,10,10,1.6,90,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,14770,238,14597,5370,240,1.5,10,10,1.6,90,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,7746,0,7809,3205,140,2.1,10,10,2.4,90,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,5751,0,5793,1985,210,2.1,10,10,2.4,60,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,240,3.1,10,10,1.6,90,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,24,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,310,5.2,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,14020,6344,5027,1627,290,4.1,0,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,34735,31442,7791,2806,300,5.2,0,0,12.9,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,53413,45640,9870,3769,300,5.7,0,0,32.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,65380,51613,11193,4406,300,6.2,0,0,48.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,69478,53854,11717,4651,310,5.7,0,0,48.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,65394,52511,11195,4400,310,5.2,0,0,48.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,52578,45918,9871,3757,310,5.2,0,0,48.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,34183,31815,7681,2754,230,5.2,0,0,48.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,13443,5856,4910,1578,270,3.1,0,0,48.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,220,2.6,0,0,48.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,310,6.2,0,0,40.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,13814,6521,4921,1590,320,7.7,0,0,40.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,34836,32441,7576,2727,320,10.8,0,0,48.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,53511,46255,9647,3682,310,6.2,0,0,48.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,65724,52483,10966,4315,340,8.2,0,0,48.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,69707,54227,11939,4731,320,7.7,1,0,56.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,65699,53152,11530,4521,340,8.2,1,0,56.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,53633,47034,9647,3675,310,8.8,0,0,56.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,34574,32820,7899,2824,330,6.7,1,0,56.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,13648,6278,5016,1606,330,5.2,1,0,56.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,320,5.2,0,0,48.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,70,5.2,0,0,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,13965,46678,4686,631,90,6.7,0,0,48.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,32741,74098,6722,1038,80,5.7,0,0,48.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,48290,86150,8180,1325,90,5.2,0,0,48.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,58372,91663,9045,1522,80,4.1,0,0,48.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,61704,93103,9275,1591,70,3.1,0,0,48.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,58179,91288,9046,1521,80,2.1,0,0,48.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,48261,86060,8183,1324,110,3.1,0,0,48.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,32702,73724,6725,1035,150,2.6,0,0,48.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,13997,46670,4688,626,160,2.6,0,0,48.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,140,3.1,0,0,48.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,0,0.0,0,0,32.2,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,14122,4799,4059,1336,230,1.5,0,0,32.2,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,35343,31931,6242,2268,230,5.2,0,0,9.7,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,46970,81754,9759,1401,170,3.1,0,0,11.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,57068,87666,10870,1624,200,1.5,0,0,24.1,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,60609,89291,11086,1702,230,2.1,0,0,24.1,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,57078,87634,10867,1624,150,2.1,0,0,24.1,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,47217,81965,9899,1406,190,2.6,0,0,24.1,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,35648,32043,6353,2308,190,2.6,0,0,24.1,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,14436,4941,4166,1369,170,3.1,0,0,40.2,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,220,2.6,0,0,32.2,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,8089,958,7350,2129,100,2.1,8,8,6.4,670,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,26707,21698,10005,3476,160,3.1,1,1,8.0,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,46365,36785,10916,4131,160,4.1,1,1,11.3,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,58254,42277,12457,4875,140,3.1,0,0,24.1,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,41281,16826,28577,9824,190,5.2,5,5,24.1,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,45948,29308,20672,7575,130,5.7,5,4,24.1,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,49583,41675,16943,6041,210,4.1,5,4,40.2,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,30835,25593,13638,4458,200,4.1,5,4,40.2,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,10826,3242,6428,1962,160,4.1,4,3,40.2,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,140,3.6,2,2,40.2,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,6499,92,6410,1933,160,2.6,10,10,0.0,0,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,12837,52,12890,4250,180,1.0,10,10,1.6,60,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,37005,25706,14236,5228,180,5.2,2,2,16.1,77777,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,61110,42521,10317,4083,200,5.7,2,2,32.2,77777,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,60854,42198,14619,5729,190,6.7,5,4,48.3,77777,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,52073,36059,20123,7414,190,5.2,7,6,48.3,3050,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,37086,25753,15863,5733,180,5.2,8,5,48.3,3050,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,12896,575,12610,4206,180,4.1,10,10,48.3,3050,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,8227,283,8042,2279,180,3.1,10,10,48.3,5490,9,999999999,25,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,150,3.1,10,10,40.2,5490,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,26,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,28,0.0000,0,88,0.000,0.0,1.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,8836,23,8874,2333,190,4.1,10,10,11.3,610,9,999999999,28,0.0000,0,88,0.000,0.0,1.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,13964,2122,12338,4109,190,4.1,10,9,11.3,610,9,999999999,29,0.0000,0,88,0.000,0.0,1.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,30085,10831,22934,7475,210,4.6,10,9,11.3,2740,9,999999999,30,0.0000,0,88,0.000,0.0,1.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,27741,233,27677,9311,240,4.1,10,10,12.9,700,9,999999999,31,0.0000,0,88,0.000,0.0,1.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,26405,225,26325,9282,230,5.2,10,10,16.1,610,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,17259,245,17101,6485,290,3.1,10,10,12.9,460,9,999999999,32,0.0000,0,88,0.000,0.0,1.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,13364,591,12831,4797,250,3.1,10,10,11.3,370,9,999999999,33,0.0000,0,88,0.000,0.8,1.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,12433,335,12258,4127,290,2.6,10,10,4.8,430,9,999999999,34,0.0000,0,88,0.000,0.3,1.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,4968,14,4868,1580,310,3.6,10,10,6.4,90,9,999999999,35,0.0000,0,88,0.000,0.3,1.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,0,0,0,0,320,2.1,10,10,9.7,120,9,999999999,35,0.0000,0,88,0.000,0.0,1.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,36,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,35,0.0000,0,88,0.000,0.0,1.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,34,0.0000,0,88,0.000,0.0,1.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,34,0.0000,0,88,0.000,0.0,1.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,33,0.0000,0,88,0.000,0.0,1.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,33,0.0000,0,88,0.000,0.0,1.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,32,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,31,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,30,0.0000,0,88,0.000,0.0,1.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,29,0.0000,0,88,0.000,0.0,1.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,27,0.0000,0,88,0.000,0.0,1.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,10780,3078,9219,2342,330,4.6,8,5,19.3,2130,9,999999999,26,0.0000,0,88,0.000,0.0,1.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,26122,15638,18628,5280,340,4.1,9,8,19.3,460,9,999999999,24,0.0000,0,88,0.000,0.0,1.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,28343,7853,23706,7573,320,3.6,10,6,19.3,7620,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,55675,43561,16760,6322,10,3.6,9,4,19.3,77777,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,43891,22142,27611,9545,350,2.6,10,7,24.1,7620,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,23406,689,22952,8169,340,3.6,10,10,24.1,760,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,20680,805,20215,6885,340,4.6,10,10,24.1,760,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,22322,15315,11600,3935,340,2.6,10,6,24.1,760,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,9029,1460,7971,2268,10,2.6,10,8,32.2,820,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,290,2.1,10,10,32.2,910,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,11383,5250,7029,2015,70,6.2,5,5,32.2,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,28705,25604,7753,2754,80,8.8,2,2,24.1,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,45644,38929,9611,3642,80,8.2,3,1,24.1,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,42137,21520,28096,9318,90,6.2,7,7,24.1,980,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,39071,9303,33162,10643,70,6.7,10,9,40.2,1010,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,46687,28612,27306,9196,100,6.7,10,9,40.2,1010,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,22375,561,22149,7312,100,5.2,10,10,40.2,700,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,16277,1261,15682,4885,90,5.7,10,10,40.2,640,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,6770,155,6680,2016,80,5.2,10,10,40.2,670,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,100,5.7,10,10,40.2,640,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,4852,8,4864,1532,40,2.6,10,10,11.3,310,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,16410,2092,15377,4719,100,3.1,10,9,16.1,270,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,27757,5322,24806,7733,50,2.6,10,9,16.1,270,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,45355,28665,24610,8536,360,2.1,7,6,19.3,2290,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,43617,25166,23409,8461,20,2.6,7,6,19.3,2130,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,41645,24076,23151,8216,320,3.6,8,7,24.1,2130,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,24617,324,24638,7827,350,5.2,10,10,24.1,1520,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,17507,4549,14913,4741,350,5.7,10,9,24.1,1370,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,8264,407,8077,2295,320,5.7,10,9,32.2,1520,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,310,3.6,10,9,24.1,1830,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,12341,43938,4532,578,330,7.7,0,0,48.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,31233,73738,6438,994,330,8.8,0,0,48.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,47291,86860,8056,1293,330,7.7,0,0,48.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,57506,92175,8784,1479,310,7.7,0,0,48.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,61366,94012,9152,1563,300,6.2,0,0,48.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,58419,92833,8914,1500,320,7.2,0,0,48.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,48929,87840,8182,1320,320,6.7,0,0,48.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,33515,75930,6721,1037,310,6.7,0,0,48.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,14660,48772,4838,638,310,5.2,0,0,48.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,310,5.2,1,1,48.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,5,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,12122,43347,4377,572,320,3.1,0,0,32.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,30894,30497,9366,3230,270,2.6,2,2,32.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,48519,45381,15273,5463,250,2.6,8,2,32.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,55588,45909,14720,5612,220,2.6,9,3,40.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,65195,54265,18657,7024,260,2.6,9,3,40.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,58280,47273,11522,4499,250,3.1,9,3,40.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,44497,38927,14578,5311,220,3.1,9,3,40.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,33244,32358,9210,3238,280,3.6,5,2,40.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,15341,6676,4075,1347,270,2.6,3,0,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,240,2.6,2,0,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,12178,45216,3914,559,290,3.6,0,0,32.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,30610,73774,5693,937,290,5.2,0,0,32.2,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,46683,87157,7048,1208,290,6.2,0,0,32.2,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,57121,92768,7798,1386,260,5.2,0,0,32.2,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,60861,94199,8173,1470,250,6.7,0,0,40.2,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,57646,91592,8633,1477,260,6.2,1,0,40.2,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,48615,88063,7173,1237,250,6.2,0,0,40.2,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,33457,76687,5976,986,250,5.2,0,0,40.2,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,14828,49552,4532,637,240,4.6,1,0,40.2,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,250,3.6,1,0,32.2,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,6475,49,6387,1843,350,3.6,9,7,24.1,7620,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,17314,8494,12076,3951,30,4.6,10,8,24.1,7620,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,25251,9353,19253,6519,100,5.2,10,8,24.1,7620,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,51965,38359,25893,8785,100,5.7,9,6,24.1,7620,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,47014,25448,30056,10014,90,6.2,8,3,24.1,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,52097,40369,19609,7203,110,4.6,8,3,24.1,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,40531,29617,22054,7301,90,6.2,8,3,24.1,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,24463,16559,15188,4806,100,4.6,9,4,24.1,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,9703,3150,7413,2190,80,5.7,10,4,24.1,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,70,5.7,10,6,24.1,7620,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,5557,31,5462,1646,80,6.7,10,10,9.7,270,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,18303,645,18068,5057,90,8.2,10,10,11.3,370,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,24373,335,24281,7557,60,7.2,10,10,14.5,430,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,28138,867,27732,9177,50,7.2,10,10,14.5,670,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,27834,681,27532,9469,60,6.2,10,10,16.1,700,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,30615,91,30680,9857,80,5.7,10,10,19.3,700,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,23055,161,23061,7527,100,5.2,10,10,19.3,820,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,15929,132,15890,4962,110,6.2,10,10,19.3,700,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,7585,26,7611,2237,110,6.2,10,10,19.3,820,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,70,6.2,10,10,19.3,850,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,4831,5,4731,1470,70,4.1,10,10,11.3,850,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,16571,133,16540,4830,140,3.6,10,10,11.3,850,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,22131,0,22314,7544,90,6.7,10,10,11.3,850,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,28468,87,28628,9353,90,5.2,10,10,11.3,980,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,31564,91,31749,10348,80,5.2,10,10,11.3,2740,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,26420,0,26649,9552,130,5.7,10,10,11.3,3050,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,24554,164,24574,7837,110,5.2,10,10,11.3,640,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,17627,69,17601,5291,140,4.1,10,10,11.3,550,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,5534,15,5549,1774,110,4.1,10,10,16.1,460,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,150,3.1,10,10,16.1,460,9,999999999,23,0.0000,0,88,0.000,0.0,1.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,23,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,7119,16,7147,1946,110,5.2,10,10,0.4,0,9,999999999,15,0.0000,0,88,0.000,0.0,1.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,15422,62,15493,4650,130,4.1,10,10,0.4,0,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,23257,79,23380,7387,80,3.6,10,10,0.4,30,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,27590,166,27633,9162,120,4.1,10,10,1.6,60,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,30879,87,30949,10211,110,4.1,10,10,2.4,90,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,34319,13458,24171,8485,120,5.2,8,7,9.7,3050,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,25169,962,24639,7866,120,4.6,10,10,9.7,270,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,14181,577,13904,4554,110,5.2,10,10,9.7,270,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,7072,40,6985,2127,110,5.2,10,10,9.7,270,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,110,4.6,10,10,9.7,910,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,20,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,21,0.0000,0,88,0.000,0.0,1.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,5732,0,5773,1823,160,7.7,10,10,11.3,270,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,11460,816,10939,3657,170,8.2,10,10,6.4,340,9,999999999,20,0.0000,0,88,0.000,1.8,1.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,14848,59,14909,5363,240,9.8,10,10,2.4,150,9,999999999,19,0.0000,0,88,0.000,1.0,1.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,15024,426,14611,5593,280,7.7,10,10,9.7,1830,9,999999999,19,0.0000,0,88,0.000,1.8,1.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,17642,519,17130,6558,210,5.7,10,10,4.8,1370,9,999999999,19,0.0000,0,88,0.000,0.8,1.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,16684,507,16284,6197,220,5.7,10,10,4.8,270,9,999999999,18,0.0000,0,88,0.000,1.0,1.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,22657,225,22663,7488,220,6.2,10,10,16.1,240,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,17681,262,17658,5334,210,5.7,10,10,19.3,310,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,7812,1307,6269,1968,230,7.7,8,8,32.2,460,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,240,6.2,4,4,32.2,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,3,4512,1404,280,8.2,10,10,19.3,400,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,8463,481,8138,2842,280,8.8,10,10,19.3,580,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,20558,151,20545,6789,280,10.3,10,10,19.3,580,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,23767,632,23432,8186,310,9.8,10,10,24.1,580,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,16153,67,16099,6193,310,9.3,10,10,12.9,400,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,28281,6489,23515,8308,300,9.8,10,9,19.3,700,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,22792,712,22458,7432,300,8.2,10,10,24.1,640,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,14645,620,14369,4670,310,8.2,10,10,32.2,700,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,8430,298,8241,2390,310,7.7,10,10,48.3,700,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,0,0,0,0,310,7.7,10,10,32.2,610,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,10,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,4424,10,4093,1293,310,7.7,9,9,24.1,340,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,26622,23668,9629,3278,320,7.7,3,2,32.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,44081,38527,13389,4871,320,7.2,4,1,32.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,60133,49816,15651,5919,320,7.2,6,0,32.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,65427,52171,16215,6232,310,7.2,5,0,32.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,62080,50169,14718,5653,290,6.7,4,0,40.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,51584,45628,14779,5408,300,5.7,6,0,40.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,34402,32364,10816,3751,320,5.2,5,0,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,14367,7981,5785,1850,310,5.2,1,0,40.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,2179,0,1771,351,310,5.2,1,0,24.1,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,9,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,8,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,6,0.0000,0,88,0.000,0.0,1.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,7,0.0000,0,88,0.000,0.0,1.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,10637,651,4197,1317,320,6.2,1,1,24.1,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,31453,27933,6185,2210,300,4.1,0,0,32.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,49601,43527,8911,3369,300,5.2,2,0,32.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,56652,45654,11921,4625,300,5.2,4,2,32.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,61483,48873,17758,6741,300,5.2,6,2,32.2,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.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,56667,44956,21855,7869,300,5.2,8,3,32.2,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.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,47910,41524,18103,6377,300,5.7,9,4,32.2,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,25567,19537,12833,4308,340,6.2,10,4,32.2,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,10756,3735,8262,2413,300,5.2,10,5,32.2,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,2545,0,2250,345,310,5.7,8,4,24.1,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,12,0.0000,0,88,0.000,0.0,1.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,9422,2802,6739,1840,80,6.2,5,3,12.9,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,20422,13170,12548,4014,70,5.7,8,6,12.9,7620,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,26016,8672,20757,6820,90,6.2,10,8,19.3,2740,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,36344,10438,30089,9597,70,7.2,10,8,19.3,2740,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,39546,6644,35689,11002,70,6.7,10,9,24.1,2740,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,31519,6019,27518,9279,60,5.2,10,9,24.1,2440,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,20976,688,20622,7037,110,5.2,10,10,24.1,7620,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,23512,3905,21903,5967,100,5.2,10,9,24.1,7620,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,11298,2038,10374,2754,80,4.1,10,9,24.1,7620,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,0,1296,331,80,4.6,10,9,24.1,7620,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,11,0.0000,0,88,0.000,0.0,1.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,5945,231,5633,1639,110,3.6,10,9,24.1,4880,9,999999999,11,0.0000,0,88,0.000,0.0,1.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,18166,3141,16723,4783,120,4.6,10,9,24.1,7010,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,20179,605,19937,6633,130,3.1,10,10,24.1,4880,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,26561,4823,23156,8106,140,4.6,10,9,24.1,4880,9,999999999,12,0.0000,0,88,0.000,0.0,1.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,55641,41976,21760,7974,130,4.1,10,5,24.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,21591,387,21346,7736,140,3.1,10,10,48.3,1070,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,20663,155,20648,7050,90,3.6,10,10,32.2,1070,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,16437,741,16064,5083,140,2.1,10,10,24.1,850,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,10351,203,10287,2761,110,4.1,10,10,24.1,3660,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,1687,0,1693,382,130,3.1,10,10,24.1,1010,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,16,0.0000,0,88,0.000,0.0,1.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,17,0.0000,0,88,0.000,0.0,1.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,18,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,0.0,1.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,19,0.0000,0,88,0.000,2.3,1.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,20,0.0000,0,88,0.000,2.3,1.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,21,0.0000,0,88,0.000,2.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.5,1.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,23,0.0000,0,88,0.000,0.0,1.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,22,0.0000,0,88,0.000,0.0,1.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,6392,11,6415,1780,160,2.1,10,10,3.2,240,9,999999999,22,0.0000,0,88,0.000,0.0,1.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,15103,298,14952,4502,220,2.6,10,10,2.4,90,9,999999999,21,0.0000,0,88,0.000,0.0,1.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,22225,229,22229,7134,250,4.1,10,10,6.4,120,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,31439,89,31517,9858,290,6.2,10,10,11.3,150,9,999999999,20,0.0000,0,88,0.000,0.0,1.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,32018,89,32209,10479,290,5.7,10,10,11.3,210,9,999999999,19,0.0000,0,88,0.000,0.0,1.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,32589,91,32786,10314,300,5.2,10,10,6.4,120,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,25599,165,25629,8144,300,5.2,10,10,9.7,340,9,999999999,18,0.0000,0,88,0.000,0.0,1.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,17371,0,17510,5658,300,5.2,10,10,9.7,310,9,999999999,17,0.0000,0,88,0.000,0.0,1.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,9242,33,9169,2617,340,5.2,10,10,9.7,430,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,2016,0,2030,410,340,6.2,10,10,8.0,270,9,999999999,16,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,15,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,14,0.0000,0,88,0.000,0.0,1.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,3316,0,3340,1224,300,5.2,10,10,3.2,90,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,15001,61,15069,4516,290,5.7,10,10,11.3,150,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,23363,80,23487,7363,300,5.2,10,10,9.7,150,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,26812,167,26846,8990,310,6.7,10,10,4.8,150,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,29321,86,29374,9922,300,7.2,10,10,4.8,150,9,999999999,14,0.0000,0,88,0.000,0.0,1.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,27867,169,27908,9410,300,4.6,10,10,9.7,210,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,21477,0,21658,7785,280,6.7,10,10,9.7,240,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,17809,69,17783,5458,300,6.2,10,10,8.0,210,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,7467,0,7522,2486,300,4.6,10,10,8.0,240,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,2020,0,2033,429,300,4.6,10,10,9.7,210,9,999999999,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.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,13,0.0000,0,88,0.000,0.0,1.0 diff --git a/AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD200.mos b/AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD200.mos new file mode 100644 index 0000000000..07f1ddb90a --- /dev/null +++ b/AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD200.mos @@ -0,0 +1,8800 @@ +#1 +double tab1(8760,30) +#LOCATION,Atlanta-Hartsfield-Jackson Intl AP,GA,USA,TMY3,722190,33.63300,-84.43300,-5.0,308.0 +#DESIGN CONDITIONS,1,2017 ASHRAE Handbook -- Fundamentals - Chapter 14 Climatic Design Information,,Heating,1,-5.6,-3,-15.1,1,-1.5,-12.6,1.3,0.5,11.1,4.3,10.4,4,5.3,320,Cooling,7,9.3,34.4,23.4,33.1,23.2,32,22.9,25.2,31.3,24.6,30.3,24.1,29.3,3.9,300,23.5,19,27.4,23,18.4,26.8,22.6,17.9,26.5,78.3,31.3,75.9,30.4,73.9,29.6,28,Extremes,9.5,8.5,7.6,-9.5,35.9,2.6,2,-11.3,37.4,-12.8,38.6,-14.3,39.7,-16.1,41.2,-10.8 +#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,"NREL TMY Data Set (2008) updated 2015 to include better precipitation;Period of Record 1973-2005 (Generally)" +#COMMENTS 2,"Downloaded from Climate.Onebuilding.Org -- Ground temps represent undisturbed earth temperatures - calculated from this weather data." +#DATA PERIODS,1,1,Data,Sunday, 1/ 1,12/31 +#C1 Time in seconds. Beginning of a year is 0s. +#C2 Dry bulb temperature in Celsius at indicated time +#C3 Dew point temperature in Celsius at indicated time +#C4 Relative humidity in percent at indicated time +#C5 Atmospheric station pressure in Pa at indicated time +#C6 Extraterrestrial horizontal radiation in Wh/m2 +#C7 Extraterrestrial direct normal radiation in Wh/m2 +#C8 Horizontal infrared radiation intensity in Wh/m2 +#C9 Global horizontal radiation in Wh/m2 +#C10 Direct normal radiation in Wh/m2 +#C11 Diffuse horizontal radiation in Wh/m2 +#C12 Averaged global horizontal illuminance in lux during minutes preceding the indicated time +#C13 Direct normal illuminance in lux during minutes preceding the indicated time +#C14 Diffuse horizontal illuminance in lux during minutes preceding the indicated time +#C15 Zenith luminance in Cd/m2 during minutes preceding the indicated time +#C16 Wind direction at indicated time. N=0, E=90, S=180, W=270 +#C17 Wind speed in m/s at indicated time +#C18 Total sky cover at indicated time +#C19 Opaque sky cover at indicated time +#C20 Visibility in km at indicated time +#C21 Ceiling height in m +#C22 Present weather observation +#C23 Present weather codes +#C24 Precipitable water in mm +#C25 Aerosol optical depth +#C26 Snow depth in cm +#C27 Days since last snowfall +#C28 Albedo +#C29 Liquid precipitation depth in mm at indicated time +#C30 Liquid precipitation quantity +0.0 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 17 0.0000 0 88 0.000 0.0 1.0 +3600.0 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 17 0.0000 0 88 0.000 0.0 1.0 +7200.0 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 17 0.0000 0 88 0.000 0.0 1.0 +10800.0 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 17 0.0000 0 88 0.000 0.0 1.0 +14400.0 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 18 0.0000 0 88 0.000 0.0 1.0 +18000.0 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 18 0.0000 0 88 0.000 0.0 1.0 +21600.0 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 19 0.0000 0 88 0.000 0.0 1.0 +25200.0 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 19 0.0000 0 88 0.000 0.0 1.0 +28800.0 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 19 0.0000 0 88 0.000 1.3 1.0 +32400.0 11.7 10.0 90 98800 191 1415 351 39 2 38 4372 0 4271 1328 210 3.6 10 10 4.0 820 9 999999999 19 0.0000 0 88 0.000 1.0 1.0 +36000.0 12.2 10.6 90 98800 421 1415 354 140 4 139 15270 237 15231 4545 180 3.1 10 10 11.3 730 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +39600.0 12.8 11.1 90 98800 603 1415 358 132 4 130 15099 244 14931 5349 190 3.6 10 10 8.0 730 9 999999999 21 0.0000 0 88 0.000 0.8 1.0 +43200.0 13.9 12.2 90 98800 723 1415 364 260 3 259 28765 249 28820 9419 240 4.1 10 10 8.0 730 9 999999999 22 0.0000 0 88 0.000 1.0 1.0 +46800.0 13.9 12.8 93 98700 774 1415 365 171 1 170 19745 67 19721 7421 250 3.1 10 10 2.4 210 9 999999999 23 0.0000 0 88 0.000 1.0 1.0 +50400.0 12.8 12.2 97 98700 751 1415 359 157 0 156 15969 0 16008 6842 290 3.6 10 10 1.6 90 9 999999999 22 0.0000 0 88 0.000 0.5 1.0 +54000.0 12.8 12.2 97 98600 656 1415 359 157 2 156 17870 131 17836 6386 300 3.1 10 10 1.2 60 9 999999999 22 0.0000 0 88 0.000 0.3 1.0 +57600.0 8.9 8.3 96 98700 496 1415 335 112 1 112 12683 56 12732 4348 320 6.7 10 10 4.8 90 9 999999999 17 0.0000 0 88 0.000 2.0 1.0 +61200.0 7.2 6.7 96 98700 281 1415 326 55 0 55 5401 0 5441 2011 320 6.2 10 10 6.4 120 9 999999999 16 0.0000 0 88 0.000 0.3 1.0 +64800.0 6.7 6.1 96 98800 51 908 323 13 0 13 1250 0 1258 382 320 6.2 10 10 6.4 90 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +68400.0 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 15 0.0000 0 88 0.000 0.3 1.0 +72000.0 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 15 0.0000 0 88 0.000 1.8 1.0 +75600.0 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 14 0.0000 0 88 0.000 0.0 1.0 +79200.0 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 14 0.0000 0 88 0.000 0.0 1.0 +82800.0 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 13 0.0000 0 88 0.000 0.0 1.0 +86400.0 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 13 0.0000 0 88 0.000 0.5 1.0 +90000.0 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 13 0.0000 0 88 0.000 0.5 1.0 +93600.0 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 13 0.0000 0 88 0.000 0.3 1.0 +97200.0 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 12 0.0000 0 88 0.000 0.0 1.0 +100800.0 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 12 0.0000 0 88 0.000 0.5 1.0 +104400.0 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 12 0.0000 0 88 0.000 0.0 1.0 +108000.0 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 12 0.0000 0 88 0.000 0.0 1.0 +111600.0 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 11 0.0000 0 88 0.000 0.0 1.0 +115200.0 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 12 0.0000 0 88 0.000 0.0 1.0 +118800.0 3.9 2.2 89 99200 191 1415 306 54 0 54 5273 0 5310 1679 340 4.1 10 10 12.9 210 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +122400.0 5.6 2.8 83 99200 421 1415 314 137 1 137 15013 62 15081 4509 20 4.1 10 10 12.9 340 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +126000.0 6.7 3.3 80 99200 604 1415 320 201 0 200 20299 0 20365 7140 80 7.2 10 10 24.1 760 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +129600.0 7.2 2.8 74 99200 725 1415 321 280 2 279 30931 182 31001 9794 90 5.2 10 10 24.1 760 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +133200.0 7.8 0.0 58 99100 775 1415 301 527 563 218 60002 45649 24948 8890 50 5.7 10 7 24.1 1830 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +136800.0 8.9 0.6 56 99100 753 1415 298 497 590 183 57147 44623 21141 7728 50 5.2 10 4 24.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +140400.0 8.3 0.6 58 99100 658 1415 315 242 67 211 27027 5448 23687 7826 120 4.1 10 9 24.1 850 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +144000.0 8.3 0.6 58 99000 499 1415 324 90 9 87 10436 478 10120 3593 60 5.2 10 10 24.1 850 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +147600.0 8.3 1.1 61 99100 285 1415 324 87 4 86 9505 149 9432 2721 110 5.2 10 10 24.1 850 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +151200.0 7.2 1.1 66 99100 53 932 319 17 0 17 1638 0 1649 451 70 4.1 10 10 16.1 850 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +154800.0 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 11 0.0000 0 88 0.000 0.0 1.0 +158400.0 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 11 0.0000 0 88 0.000 0.0 1.0 +162000.0 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 11 0.0000 0 88 0.000 0.0 1.0 +165600.0 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 11 0.0000 0 88 0.000 0.0 1.0 +169200.0 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 11 0.0000 0 88 0.000 0.0 1.0 +172800.0 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 11 0.0000 0 88 0.000 0.0 1.0 +176400.0 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 11 0.0000 0 88 0.000 0.0 1.0 +180000.0 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 11 0.0000 0 88 0.000 0.0 1.0 +183600.0 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 12 0.0000 0 88 0.000 0.0 1.0 +187200.0 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 12 0.0000 0 88 0.000 1.3 1.0 +190800.0 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 12 0.0000 0 88 0.000 1.8 1.0 +194400.0 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 12 0.0000 0 88 0.000 1.3 1.0 +198000.0 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 12 0.0000 0 88 0.000 1.5 1.0 +201600.0 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 12 0.0000 0 88 0.000 1.8 1.0 +205200.0 1.7 0.6 92 98800 190 1415 294 25 2 25 2908 0 2912 950 70 6.7 10 10 6.4 180 9 999999999 11 0.0000 0 88 0.000 1.3 1.0 +208800.0 1.7 0.6 92 98800 421 1415 294 77 7 75 8869 317 8664 2986 60 9.3 10 10 6.4 180 9 999999999 11 0.0000 0 88 0.000 1.5 1.0 +212400.0 1.7 1.1 96 98800 604 1415 295 106 4 104 12395 242 12203 4493 70 6.7 10 10 8.0 180 9 999999999 11 0.0000 0 88 0.000 0.5 1.0 +216000.0 2.2 1.1 93 98700 726 1415 297 142 2 141 16586 137 16536 6220 70 5.2 10 10 9.7 120 9 999999999 11 0.0000 0 88 0.000 0.5 1.0 +219600.0 2.2 1.7 96 98600 777 1415 298 159 1 159 18559 71 18640 7062 90 7.2 10 10 9.7 120 9 999999999 12 0.0000 0 88 0.000 0.3 1.0 +223200.0 2.8 1.7 93 98400 755 1415 300 159 1 159 18489 71 18569 6964 80 5.7 10 10 9.7 120 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +226800.0 2.8 2.2 96 98400 661 1415 301 149 2 148 17126 139 17083 6169 80 5.7 10 10 4.8 90 9 999999999 12 0.0000 0 88 0.000 0.3 1.0 +230400.0 2.8 2.2 96 98400 502 1415 301 179 0 179 17935 0 18078 5866 80 4.1 10 10 8.0 120 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +234000.0 2.8 2.2 96 98400 288 1415 301 56 1 56 6343 25 6361 2056 60 3.1 10 10 1.6 90 9 999999999 12 0.0000 0 88 0.000 0.5 1.0 +237600.0 2.8 2.2 96 98300 55 955 301 13 0 13 1253 0 1261 396 80 5.7 10 10 1.6 90 9 999999999 12 0.0000 0 88 0.000 0.3 1.0 +241200.0 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 12 0.0000 0 88 0.000 0.5 1.0 +244800.0 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 12 0.0000 0 88 0.000 1.0 1.0 +248400.0 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 12 0.0000 0 88 0.000 0.0 1.0 +252000.0 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 13 0.0000 0 88 0.000 0.3 1.0 +255600.0 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 13 0.0000 0 88 0.000 0.3 1.0 +259200.0 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 13 0.0000 0 88 0.000 0.0 1.0 +262800.0 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 13 0.0000 0 88 0.000 0.3 1.0 +266400.0 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 13 0.0000 0 88 0.000 0.0 1.0 +270000.0 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 13 0.0000 0 88 0.000 0.0 1.0 +273600.0 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 13 0.0000 0 88 0.000 0.0 1.0 +277200.0 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 13 0.0000 0 88 0.000 0.0 1.0 +280800.0 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 13 0.0000 0 88 0.000 0.0 1.0 +284400.0 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 12 0.0000 0 88 0.000 0.0 1.0 +288000.0 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 11 0.0000 0 88 0.000 0.0 1.0 +291600.0 3.3 0.0 79 98700 190 1415 301 57 1 57 6199 12 6221 1727 300 7.2 10 10 24.1 520 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +295200.0 3.9 0.0 76 98800 421 1415 279 223 424 96 25186 21847 10881 3599 300 5.2 5 5 24.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +298800.0 4.4 -1.1 68 98800 605 1415 277 361 567 117 41853 36113 13615 4939 310 6.7 4 4 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +302400.0 5.0 -1.7 62 98900 727 1415 279 507 727 132 59581 49442 15572 5905 310 7.2 5 4 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +306000.0 5.6 -1.1 63 98800 779 1415 284 605 794 167 70422 58310 19525 7345 300 8.2 5 5 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +309600.0 6.7 -1.7 56 98700 758 1415 286 456 518 178 52623 39085 20636 7598 330 7.7 5 4 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +313200.0 6.7 -2.2 54 98700 664 1415 286 430 583 157 49276 42108 18070 6459 290 7.2 9 4 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +316800.0 6.1 -2.8 53 98700 505 1415 290 232 290 129 26127 18665 14587 4849 320 7.2 9 7 24.1 7620 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +320400.0 5.6 -3.3 53 98800 292 1415 288 89 77 74 9881 2632 8244 2516 320 6.2 9 7 24.1 7620 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +324000.0 5.0 -3.3 55 98800 57 955 296 26 10 25 2712 0 2618 539 320 5.7 9 9 24.1 7620 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +327600.0 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 9 0.0000 0 88 0.000 0.0 1.0 +331200.0 3.3 -3.3 62 98900 0 0 269 0 0 0 0 0 0 0 310 6.7 8 3 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +334800.0 2.8 -5.0 57 98900 0 0 265 0 0 0 0 0 0 0 320 6.2 9 3 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +338400.0 2.2 -4.4 62 99000 0 0 263 0 0 0 0 0 0 0 330 5.2 9 3 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +342000.0 1.7 -4.4 64 99000 0 0 261 0 0 0 0 0 0 0 310 4.6 8 3 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +345600.0 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 7 0.0000 0 88 0.000 0.0 1.0 +349200.0 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 7 0.0000 0 88 0.000 0.0 1.0 +352800.0 -0.6 -8.3 56 99100 0 0 251 0 0 0 0 0 0 0 330 7.7 10 4 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +356400.0 -1.1 -9.4 54 99100 0 0 246 0 0 0 0 0 0 0 340 6.7 9 3 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +360000.0 -1.7 -10.6 51 99100 0 0 241 0 0 0 0 0 0 0 330 6.2 10 2 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +363600.0 -2.2 -12.2 47 99100 0 0 242 0 0 0 0 0 0 0 330 8.2 9 4 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +367200.0 -2.2 -12.2 47 99100 0 0 240 0 0 0 0 0 0 0 340 6.7 10 3 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +370800.0 -2.8 -12.8 47 99200 0 0 239 0 0 0 0 0 0 0 330 6.2 10 4 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +374400.0 -2.8 -15.0 39 99300 8 366 237 7 9 6 0 0 0 0 330 7.2 9 4 40.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +378000.0 -2.8 -14.4 41 99400 190 1415 241 78 145 59 8479 2303 6437 1758 310 7.2 9 6 40.2 4570 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +381600.0 -2.2 -16.1 34 99500 422 1415 234 238 510 86 27192 26291 9858 3320 330 6.2 8 2 40.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +385200.0 -1.1 -17.8 27 99500 606 1415 228 434 858 64 45668 82330 9640 1351 340 8.2 2 0 40.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +388800.0 0.6 -17.8 24 99500 728 1415 234 547 927 68 57557 90948 10042 1563 320 6.2 1 0 40.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +392400.0 1.7 -17.8 22 99400 781 1415 238 588 934 71 61822 92217 10380 1669 320 7.7 1 0 40.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +396000.0 2.2 -18.3 20 99300 760 1415 239 574 946 65 60489 93219 9578 1583 320 5.2 0 0 40.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +399600.0 2.8 -18.3 20 99300 667 1415 241 486 906 59 51308 88096 8855 1406 320 6.2 0 0 40.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +403200.0 2.2 -18.3 20 99300 508 1415 252 263 304 155 29261 22165 17323 5475 310 6.2 5 4 40.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +406800.0 1.1 -17.2 24 99300 295 1415 251 128 240 78 14194 9183 8679 2618 320 6.7 7 5 24.1 7620 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +410400.0 0.0 -18.3 24 99300 60 979 239 33 143 19 3546 0 2048 513 320 4.1 3 2 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +414000.0 -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 4 0.0000 0 88 0.000 0.0 1.0 +417600.0 -1.1 -17.2 29 99300 0 0 239 0 0 0 0 0 0 0 310 4.6 4 3 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +421200.0 -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 4 0.0000 0 88 0.000 0.0 1.0 +424800.0 -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 5 0.0000 0 88 0.000 0.0 1.0 +428400.0 -2.8 -15.6 37 99300 0 0 232 0 0 0 0 0 0 0 310 5.7 3 2 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +432000.0 -3.3 -15.6 39 99300 0 0 235 0 0 0 0 0 0 0 320 4.6 4 4 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +435600.0 -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 5 0.0000 0 88 0.000 0.0 1.0 +439200.0 -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 5 0.0000 0 88 0.000 0.0 1.0 +442800.0 -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 5 0.0000 0 88 0.000 0.0 1.0 +446400.0 -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 5 0.0000 0 88 0.000 0.0 1.0 +450000.0 -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 5 0.0000 0 88 0.000 0.0 1.0 +453600.0 -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 5 0.0000 0 88 0.000 0.0 1.0 +457200.0 -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 5 0.0000 0 88 0.000 0.0 1.0 +460800.0 -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 4 0.0000 0 88 0.000 0.0 1.0 +464400.0 -4.4 -15.6 42 99300 189 1415 246 53 53 46 5883 424 5121 1515 310 3.6 10 9 40.2 3350 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +468000.0 -3.9 -16.1 39 99400 422 1415 248 158 172 106 17751 9850 11954 3859 320 4.6 10 9 40.2 3350 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +471600.0 -3.3 -16.7 35 99400 607 1415 249 232 59 207 25757 4968 23099 7305 340 3.6 10 9 40.2 3350 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +475200.0 -2.2 -16.1 34 99400 730 1415 254 278 20 268 30952 1858 30007 9658 300 4.1 10 9 40.2 3050 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +478800.0 -1.7 -16.1 33 99300 783 1415 263 182 10 176 21160 773 20555 7666 330 3.1 10 10 24.1 2440 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +482400.0 -1.1 -14.4 36 99200 763 1415 267 193 13 186 22259 1026 21552 7876 20 3.1 10 10 24.1 2440 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +486000.0 -1.1 -9.4 54 99100 671 1415 265 315 208 217 35253 17571 24410 8055 330 3.1 10 9 24.1 2440 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +489600.0 -0.6 -7.8 59 99100 512 1415 276 117 12 112 13361 739 12837 4416 310 2.6 10 10 19.3 7620 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +493200.0 -0.6 -7.8 59 99100 299 1415 276 81 0 81 8002 0 8060 2698 350 3.1 10 10 19.3 2740 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +496800.0 -0.6 -8.3 56 99100 62 1002 276 15 0 15 1451 0 1460 458 310 2.6 10 10 19.3 2740 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +500400.0 -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 6 0.0000 0 88 0.000 0.0 1.0 +504000.0 -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 6 0.0000 0 88 0.000 0.0 1.0 +507600.0 -0.6 -11.7 43 99100 0 0 244 0 0 0 0 0 0 0 20 3.1 7 2 19.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +511200.0 -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 5 0.0000 0 88 0.000 0.0 1.0 +514800.0 -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 6 0.0000 0 88 0.000 0.0 1.0 +518400.0 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 6 0.0000 0 88 0.000 0.0 1.0 +522000.0 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 6 0.0000 0 88 0.000 0.0 1.0 +525600.0 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 5 0.0000 0 88 0.000 0.0 1.0 +529200.0 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 5 0.0000 0 88 0.000 0.0 1.0 +532800.0 -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 5 0.0000 0 88 0.000 0.0 1.0 +536400.0 -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 5 0.0000 0 88 0.000 0.0 1.0 +540000.0 -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 5 0.0000 0 88 0.000 0.0 1.0 +543600.0 -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 6 0.0000 0 88 0.000 0.0 1.0 +547200.0 -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 7 0.0000 0 88 0.000 0.0 1.0 +550800.0 -3.9 -6.1 85 99000 190 1415 265 33 2 32 3768 0 3662 1162 70 8.2 10 10 4.8 730 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +554400.0 -3.9 -5.6 88 99000 423 1415 265 128 5 127 14151 309 14101 4331 70 10.8 10 10 2.4 670 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +558000.0 -3.9 -5.0 92 99000 608 1415 266 197 5 194 21960 400 21733 7051 90 7.2 10 10 1.6 670 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +561600.0 -3.9 -4.4 96 98800 732 1415 266 244 5 241 27369 433 27179 9121 90 9.3 10 10 1.6 610 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +565200.0 -3.3 -4.4 92 98700 786 1415 269 260 3 258 29284 265 29219 9986 80 7.2 10 10 1.0 310 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +568800.0 -3.9 -5.0 92 98500 766 1415 266 291 1 291 32342 94 32532 10466 70 8.2 10 10 1.0 310 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +572400.0 -3.9 -5.0 92 98400 674 1415 266 245 1 244 27153 88 27191 8627 80 5.2 10 10 1.0 310 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +576000.0 -3.9 -5.0 92 98500 516 1415 266 178 1 178 19578 77 19674 5969 60 8.2 10 10 1.6 310 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +579600.0 -5.0 -6.1 92 98500 303 1415 260 96 1 96 10475 45 10517 2997 80 8.8 10 10 1.6 240 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +583200.0 -5.0 -6.7 88 98400 65 1026 260 28 0 28 2708 0 2726 619 80 9.3 10 10 11.3 310 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +586800.0 -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 7 0.0000 0 88 0.000 0.0 1.0 +590400.0 -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 7 0.0000 0 88 0.000 0.0 1.0 +594000.0 -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 7 0.0000 0 88 0.000 0.0 1.0 +597600.0 -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 7 0.0000 0 88 0.000 0.0 1.0 +601200.0 -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 7 0.0000 0 88 0.000 0.0 1.0 +604800.0 -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 7 0.0000 0 88 0.000 0.0 1.0 +608400.0 -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 7 0.0000 0 88 0.000 0.0 1.0 +612000.0 -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 7 0.0000 0 88 0.000 0.0 1.0 +615600.0 -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 7 0.0000 0 88 0.000 0.0 1.0 +619200.0 -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 7 0.0000 0 88 0.000 0.0 1.0 +622800.0 -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 8 0.0000 0 88 0.000 0.0 1.0 +626400.0 -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 8 0.0000 0 88 0.000 0.0 1.0 +630000.0 -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 8 0.0000 0 88 0.000 0.0 1.0 +633600.0 -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 8 0.0000 0 88 0.000 0.0 1.0 +637200.0 -4.4 -5.0 96 98300 190 1415 264 80 0 80 7827 0 7882 1983 50 2.1 10 10 3.2 90 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +640800.0 -3.3 -4.4 92 98300 423 1415 269 200 1 200 21279 82 21396 5212 330 2.1 10 10 3.2 90 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +644400.0 -2.8 -4.4 89 98300 609 1415 271 267 1 267 28986 94 29155 8213 360 2.1 10 10 3.2 90 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +648000.0 -2.2 -3.9 89 98300 734 1415 274 344 1 343 37483 103 37613 10757 360 2.6 10 10 6.4 90 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +651600.0 -1.1 -3.3 85 98200 788 1415 279 357 2 356 39164 206 39305 11722 310 2.6 10 10 4.8 150 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +655200.0 -0.6 -2.8 85 98200 769 1415 281 338 1 338 37105 101 37339 11221 310 4.1 10 10 4.8 150 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +658800.0 0.0 -1.7 89 98100 677 1415 285 288 1 287 31489 95 31566 9329 340 3.6 10 10 6.4 270 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +662400.0 0.0 -1.7 89 98200 519 1415 285 234 1 234 25154 89 25297 6700 320 4.6 10 10 9.7 270 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +666000.0 0.0 -2.8 82 98300 306 1415 284 134 0 134 13232 0 13329 3439 320 4.6 10 10 9.7 400 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +669600.0 -0.6 -2.2 89 98300 68 1049 282 35 0 35 3383 0 3405 643 320 4.6 10 10 9.7 340 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +673200.0 -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 9 0.0000 0 88 0.000 0.0 1.0 +676800.0 -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 9 0.0000 0 88 0.000 0.0 1.0 +680400.0 -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 9 0.0000 0 88 0.000 0.0 1.0 +684000.0 -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 9 0.0000 0 88 0.000 0.0 1.0 +687600.0 -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 9 0.0000 0 88 0.000 0.0 1.0 +691200.0 -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 9 0.0000 0 88 0.000 0.0 1.0 +694800.0 -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 9 0.0000 0 88 0.000 0.0 1.0 +698400.0 -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 9 0.0000 0 88 0.000 0.0 1.0 +702000.0 -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 9 0.0000 0 88 0.000 0.0 1.0 +705600.0 -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 9 0.0000 0 88 0.000 0.0 1.0 +709200.0 -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 8 0.0000 0 88 0.000 0.0 1.0 +712800.0 -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 9 0.0000 0 88 0.000 0.0 1.0 +716400.0 -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 8 0.0000 0 88 0.000 0.0 1.0 +720000.0 -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 8 0.0000 0 88 0.000 0.0 1.0 +723600.0 -3.3 -5.0 88 98600 190 1415 268 45 1 45 4999 6 5013 1495 300 3.1 10 10 8.0 270 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +727200.0 -2.8 -5.0 85 98600 424 1415 270 119 10 116 13259 586 12977 4107 320 1.5 10 10 8.0 270 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +730800.0 -2.2 -5.0 82 98600 611 1415 265 352 201 265 38255 18882 28967 8211 330 2.6 10 9 8.0 6100 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +734400.0 -1.7 -5.0 78 98600 736 1415 267 375 101 322 41103 10098 35512 10562 350 2.1 10 9 8.0 6100 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +738000.0 -0.6 -4.4 75 98500 791 1415 272 524 309 351 57593 31601 38824 11700 10 3.1 10 9 9.7 6100 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +741600.0 0.6 -4.4 70 98400 772 1415 271 335 94 284 37343 8702 31842 10402 330 2.1 9 8 11.3 6100 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +745200.0 1.1 -3.9 70 98400 681 1415 266 466 463 244 51704 40790 27221 8696 330 2.6 7 6 11.3 6100 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +748800.0 1.7 -5.0 62 98400 523 1415 275 349 341 223 37731 29663 24242 6654 340 2.1 9 8 11.3 2740 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +752400.0 1.7 -4.4 64 98400 310 1415 271 134 216 87 14775 8944 9629 2877 350 2.1 8 7 11.3 2740 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +756000.0 1.1 -3.9 70 98400 70 1073 273 27 5 27 2855 0 2866 661 310 2.6 8 8 11.3 2440 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +759600.0 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 9 0.0000 0 88 0.000 0.0 1.0 +763200.0 -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 9 0.0000 0 88 0.000 0.0 1.0 +766800.0 -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 8 0.0000 0 88 0.000 0.0 1.0 +770400.0 -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 9 0.0000 0 88 0.000 0.0 1.0 +774000.0 -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 8 0.0000 0 88 0.000 0.0 1.0 +777600.0 -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 8 0.0000 0 88 0.000 0.0 1.0 +781200.0 -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 9 0.0000 0 88 0.000 0.0 1.0 +784800.0 -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 8 0.0000 0 88 0.000 0.0 1.0 +788400.0 -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 8 0.0000 0 88 0.000 0.0 1.0 +792000.0 -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 8 0.0000 0 88 0.000 0.0 1.0 +795600.0 -3.3 -5.0 88 98600 0 0 240 0 0 0 0 0 0 0 330 3.6 2 2 9.7 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +799200.0 -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 8 0.0000 0 88 0.000 0.0 1.0 +802800.0 -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 8 0.0000 0 88 0.000 0.0 1.0 +806400.0 -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 8 0.0000 0 88 0.000 0.0 1.0 +810000.0 -4.4 -4.4 100 98900 191 1415 264 43 0 43 4207 0 4236 1451 320 2.6 10 10 0.2 0 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +813600.0 -3.3 -3.9 96 99000 425 1415 269 134 10 131 14782 626 14514 4428 10 2.1 10 10 0.2 0 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +817200.0 -2.2 -3.3 92 99000 612 1415 274 205 3 204 22770 245 22775 7294 10 2.6 10 10 0.4 90 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +820800.0 1.1 -2.8 76 98900 738 1415 267 516 531 238 57984 45488 26888 9106 10 2.1 6 6 3.2 240 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +824400.0 2.8 -2.8 67 98900 794 1415 256 603 921 86 63597 91630 12432 1771 0 0.0 0 0 4.8 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +828000.0 3.9 -2.2 65 98800 775 1415 261 571 888 84 60291 88227 12194 1724 30 2.6 0 0 4.8 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +831600.0 4.4 -2.2 62 98800 684 1415 263 504 884 76 61324 51256 9271 3600 290 1.5 0 0 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +835200.0 5.0 -2.2 60 98800 527 1415 265 363 811 62 43513 40104 7449 2755 0 0.0 0 0 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +838800.0 4.4 -1.7 65 98900 314 1415 263 184 643 43 21491 15660 5033 1713 310 2.1 0 0 11.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +842400.0 2.8 -2.2 70 98900 73 1073 257 41 210 20 4464 0 2184 590 320 3.1 0 0 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +846000.0 1.7 -2.2 76 98900 0 0 253 0 0 0 0 0 0 0 340 4.6 0 0 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +849600.0 0.0 -3.3 79 99000 0 0 245 0 0 0 0 0 0 0 350 5.2 0 0 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +853200.0 -1.1 -3.9 82 99000 0 0 241 0 0 0 0 0 0 0 330 1.5 0 0 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +856800.0 -1.1 -3.9 82 99000 0 0 241 0 0 0 0 0 0 0 350 2.6 0 0 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +860400.0 -2.2 -3.3 92 99000 0 0 238 0 0 0 0 0 0 0 330 2.1 0 0 9.7 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +864000.0 -2.2 -3.9 89 99000 0 0 237 0 0 0 0 0 0 0 320 3.1 0 0 8.0 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +867600.0 -2.8 -3.9 92 99000 0 0 235 0 0 0 0 0 0 0 310 2.6 0 0 8.0 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +871200.0 -3.3 -4.4 92 99000 0 0 233 0 0 0 0 0 0 0 330 2.1 0 0 8.0 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +874800.0 -2.8 -3.9 92 99000 0 0 235 0 0 0 0 0 0 0 40 3.1 0 0 8.0 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +878400.0 -2.2 -5.0 82 99000 0 0 236 0 0 0 0 0 0 0 50 2.6 0 0 8.0 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +882000.0 -2.8 -5.6 81 99000 0 0 234 0 0 0 0 0 0 0 20 3.1 0 0 8.0 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +885600.0 -2.8 -5.0 85 99000 0 0 234 0 0 0 0 0 0 0 30 3.1 0 0 8.0 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +889200.0 -3.9 -6.1 85 99100 0 0 229 0 0 0 0 0 0 0 340 4.1 0 0 8.0 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +892800.0 -3.3 -5.6 85 99100 8 365 232 13 80 4 0 0 0 0 40 3.1 0 0 6.4 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +896400.0 -2.8 -5.0 85 99100 191 1414 234 103 600 21 11046 44055 3446 506 340 2.1 0 0 6.4 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +900000.0 0.0 -5.0 69 99100 426 1414 244 285 830 33 30639 75663 5249 889 70 2.6 0 0 6.4 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +903600.0 2.8 -5.6 55 99100 614 1414 254 446 923 43 47795 89534 6612 1165 60 2.1 0 0 9.7 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +907200.0 5.0 -5.0 49 99100 740 1414 262 555 964 49 59379 95534 7358 1352 0 0.0 0 0 9.7 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +910800.0 5.0 -4.4 51 99000 796 1414 263 606 981 52 64784 97862 7721 1450 30 3.1 0 0 11.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +914400.0 6.7 -5.6 42 98900 779 1414 268 588 975 51 62827 97002 7600 1417 30 2.1 0 0 11.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +918000.0 6.7 -5.6 42 98900 688 1414 268 507 948 46 54286 93219 6982 1263 80 2.1 0 0 11.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +921600.0 7.2 -6.1 39 98900 531 1414 270 370 886 38 39708 84065 5939 1033 90 1.5 0 0 12.9 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +925200.0 6.1 -5.6 43 98900 319 1414 266 193 746 27 20752 63372 4370 718 120 2.6 0 0 12.9 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +928800.0 5.6 -6.1 43 98900 76 1096 263 46 318 14 5182 0 1580 470 190 1.5 0 0 12.9 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +932400.0 4.4 -6.1 47 99000 0 0 259 0 0 0 0 0 0 0 120 3.6 0 0 16.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +936000.0 2.8 -5.6 55 99000 0 0 254 0 0 0 0 0 0 0 120 4.1 0 0 16.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +939600.0 1.7 -6.1 57 98900 0 0 249 0 0 0 0 0 0 0 110 3.1 0 0 16.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +943200.0 0.0 -5.6 67 98900 0 0 243 0 0 0 0 0 0 0 90 3.1 0 0 16.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +946800.0 -0.6 -6.1 67 99000 0 0 241 0 0 0 0 0 0 0 0 0.0 0 0 16.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +950400.0 -1.1 -5.6 72 99000 0 0 240 0 0 0 0 0 0 0 120 3.1 0 0 16.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +954000.0 -1.7 -6.1 72 99000 0 0 237 0 0 0 0 0 0 0 0 0.0 0 0 16.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +957600.0 -1.7 -6.1 72 98900 0 0 237 0 0 0 0 0 0 0 100 3.6 1 0 12.9 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +961200.0 -2.8 -6.7 75 98900 0 0 233 0 0 0 0 0 0 0 100 3.6 2 0 12.9 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +964800.0 -3.3 -6.7 78 98800 0 0 231 0 0 0 0 0 0 0 100 2.1 1 0 12.9 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +968400.0 -3.3 -6.7 78 98900 0 0 231 0 0 0 0 0 0 0 90 2.1 3 0 12.9 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +972000.0 -3.3 -6.1 81 98900 0 0 231 0 0 0 0 0 0 0 90 2.6 3 0 12.9 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +975600.0 -3.3 -7.2 75 98900 0 0 230 0 0 0 0 0 0 0 110 4.6 2 0 12.9 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +979200.0 -2.2 -6.7 72 98900 8 365 245 4 2 4 0 0 0 0 100 3.6 7 3 8.0 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +982800.0 -1.7 -6.7 69 99000 192 1414 249 55 93 43 6140 504 4814 1455 120 3.1 8 4 9.7 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +986400.0 1.1 -6.1 59 99000 428 1414 255 232 410 107 26052 23149 12061 3912 120 5.2 4 2 9.7 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +990000.0 2.8 -6.1 52 99000 616 1414 261 378 585 122 43821 38632 14197 5146 130 4.1 7 2 11.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +993600.0 5.0 -6.7 43 99000 743 1414 272 460 467 214 52224 38529 24419 8551 140 3.1 8 3 12.9 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +997200.0 6.1 -6.1 42 98900 799 1414 279 529 512 238 60134 43623 27198 9604 140 3.1 10 4 19.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1000800.0 7.2 -6.1 39 98800 782 1414 281 506 536 210 57924 43532 24160 8708 120 3.1 8 3 19.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1004400.0 8.3 -6.7 34 98800 692 1414 289 358 310 206 40384 25360 23354 7969 170 2.1 9 5 19.3 7620 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1008000.0 10.0 -6.7 31 98800 535 1414 297 186 64 162 20716 4697 18126 5809 30 1.5 10 5 19.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1011600.0 8.9 -5.0 37 98800 323 1414 300 137 159 101 14982 7600 11090 3206 250 2.1 10 7 19.3 7620 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1015200.0 8.3 -5.6 37 98800 79 1120 308 12 6 12 1374 0 1376 421 120 3.6 10 9 19.3 7620 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1018800.0 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 8 0.0000 0 88 0.000 0.0 1.0 +1022400.0 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 8 0.0000 0 88 0.000 0.0 1.0 +1026000.0 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 8 0.0000 0 88 0.000 0.0 1.0 +1029600.0 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 8 0.0000 0 88 0.000 0.0 1.0 +1033200.0 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 8 0.0000 0 88 0.000 0.0 1.0 +1036800.0 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 8 0.0000 0 88 0.000 0.0 1.0 +1040400.0 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 9 0.0000 0 88 0.000 0.0 1.0 +1044000.0 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 9 0.0000 0 88 0.000 0.0 1.0 +1047600.0 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 9 0.0000 0 88 0.000 0.0 1.0 +1051200.0 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 9 0.0000 0 88 0.000 0.0 1.0 +1054800.0 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 11 0.0000 0 88 0.000 0.0 1.0 +1058400.0 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 11 0.0000 0 88 0.000 0.5 1.0 +1062000.0 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 11 0.0000 0 88 0.000 0.5 1.0 +1065600.0 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 13 0.0000 0 88 0.000 0.8 1.0 +1069200.0 4.4 3.9 96 98700 193 1414 310 46 5 45 5105 20 5008 1504 280 4.6 10 10 3.2 150 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1072800.0 5.6 4.4 93 98700 429 1414 316 130 2 129 14341 119 14292 4415 300 5.2 10 10 4.8 400 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1076400.0 5.6 3.9 89 98700 618 1414 306 229 49 208 25373 3922 23166 7424 300 6.2 10 9 11.3 550 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1080000.0 6.7 2.2 74 98700 745 1414 288 472 663 122 55930 43288 14510 5595 290 8.8 4 3 16.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1083600.0 7.2 1.1 66 98700 803 1414 289 593 863 102 71938 54266 12414 4942 300 7.7 3 3 16.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1087200.0 7.2 -0.6 58 98700 786 1414 280 561 891 65 59791 88948 9556 1618 300 8.2 1 1 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1090800.0 6.7 -5.6 42 98700 696 1414 268 505 907 59 53681 89154 8828 1441 290 8.8 0 0 32.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1094400.0 6.1 -6.7 40 98800 539 1414 265 367 837 49 39084 79444 7551 1170 290 7.2 0 0 32.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1098000.0 3.3 -8.3 43 98900 327 1414 253 191 679 35 20352 57824 5589 797 310 6.2 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1101600.0 3.3 -8.3 43 99000 83 1143 253 44 254 18 4894 0 2006 580 310 6.2 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1105200.0 1.7 -8.3 48 99000 0 0 247 0 0 0 0 0 0 0 320 5.7 0 0 16.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1108800.0 0.6 -8.9 50 99000 0 0 243 0 0 0 0 0 0 0 310 5.7 0 0 16.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1112400.0 -0.6 -9.4 52 99100 0 0 238 0 0 0 0 0 0 0 300 5.2 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1116000.0 -1.7 -8.9 58 99100 0 0 234 0 0 0 0 0 0 0 310 6.7 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1119600.0 -2.2 -9.4 58 99200 0 0 232 0 0 0 0 0 0 0 320 6.7 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1123200.0 -3.3 -9.4 63 99200 0 0 229 0 0 0 0 0 0 0 330 5.7 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1126800.0 -3.9 -9.4 66 99200 0 0 227 0 0 0 0 0 0 0 330 6.2 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1130400.0 -5.0 -10.0 68 99300 0 0 222 0 0 0 0 0 0 0 320 5.2 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1134000.0 -5.6 -10.0 71 99300 0 0 220 0 0 0 0 0 0 0 330 5.7 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1137600.0 -6.1 -10.0 74 99300 0 0 219 0 0 0 0 0 0 0 330 6.2 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1141200.0 -6.1 -10.6 71 99200 0 0 218 0 0 0 0 0 0 0 340 4.6 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1144800.0 -6.7 -10.6 74 99200 0 0 216 0 0 0 0 0 0 0 320 4.6 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1148400.0 -6.7 -10.6 74 99300 0 0 216 0 0 0 0 0 0 0 330 6.7 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1152000.0 -6.7 -11.1 71 99300 9 389 216 10 39 5 0 0 0 0 340 5.2 1 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1155600.0 -5.0 -11.1 63 99400 194 1414 226 90 341 43 10063 2217 4821 1461 320 3.6 7 1 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1159200.0 -2.2 -11.7 49 99400 431 1414 240 254 498 101 28703 27809 11455 3772 30 2.6 8 3 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1162800.0 -1.7 -12.8 43 99500 620 1414 243 406 625 131 46885 43056 15187 5453 60 3.1 9 4 32.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1166400.0 0.6 -11.7 40 99400 748 1414 252 478 561 180 55116 43603 20851 7610 110 2.6 9 4 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1170000.0 2.2 -11.1 37 99300 806 1414 259 490 413 254 55512 36462 28932 10065 50 2.6 9 4 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1173600.0 2.2 -11.7 35 99300 789 1414 260 501 563 187 58003 44190 21751 8054 40 2.6 10 5 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1177200.0 3.9 -11.7 32 99200 700 1414 265 311 323 152 36026 23638 17682 6477 100 4.1 9 4 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1180800.0 3.9 -12.2 30 99100 544 1414 264 308 489 121 35220 31891 13889 4813 100 3.6 8 4 32.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1184400.0 2.8 -13.3 30 99200 331 1414 251 180 589 44 21133 17127 5176 1774 70 1.5 3 1 32.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1188000.0 2.2 -12.8 32 99200 86 1167 249 44 170 27 4751 0 2925 758 90 3.1 3 1 32.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1191600.0 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 5 0.0000 0 88 0.000 0.0 1.0 +1195200.0 1.1 -11.7 38 99300 0 0 252 0 0 0 0 0 0 0 70 4.6 5 3 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1198800.0 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 6 0.0000 0 88 0.000 0.0 1.0 +1202400.0 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 6 0.0000 0 88 0.000 0.0 1.0 +1206000.0 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 6 0.0000 0 88 0.000 0.0 1.0 +1209600.0 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 6 0.0000 0 88 0.000 0.0 1.0 +1213200.0 -1.1 -10.6 49 99100 0 0 247 0 0 0 0 0 0 0 90 3.6 5 4 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1216800.0 -1.7 -10.6 51 99100 0 0 245 0 0 0 0 0 0 0 90 4.6 4 4 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1220400.0 -2.2 -10.6 53 99100 0 0 239 0 0 0 0 0 0 0 70 4.1 2 2 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1224000.0 -2.8 -10.6 56 99100 0 0 234 0 0 0 0 0 0 0 60 3.6 1 1 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1227600.0 -3.3 -10.6 58 99100 0 0 232 0 0 0 0 0 0 0 70 3.6 1 1 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1231200.0 -3.3 -10.6 58 99100 0 0 232 0 0 0 0 0 0 0 60 3.1 1 1 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1234800.0 -3.9 -10.6 60 99100 0 0 230 0 0 0 0 0 0 0 50 3.6 1 1 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1238400.0 -4.4 -10.0 66 99200 9 389 224 15 91 5 0 0 0 0 60 3.1 0 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1242000.0 -3.3 -10.6 58 99200 195 1414 228 108 624 20 11561 45941 3288 505 80 4.1 0 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1245600.0 -1.1 -10.6 49 99200 433 1414 235 290 838 32 31098 76367 5092 879 90 4.6 0 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1249200.0 0.6 -10.6 44 99200 622 1414 241 456 937 42 48751 90801 6457 1155 70 3.6 0 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1252800.0 1.7 -11.7 37 99200 751 1414 244 570 978 49 60730 96676 7343 1361 50 2.6 0 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1256400.0 3.3 -11.1 34 99000 809 1414 250 620 993 51 66031 98797 7561 1445 70 2.6 0 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1260000.0 5.0 -10.0 33 98900 793 1414 257 607 993 51 64677 98689 7580 1430 60 2.1 0 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1263600.0 6.1 -10.0 31 98800 704 1414 262 525 963 46 56062 94681 6964 1274 60 1.5 0 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1267200.0 7.2 -10.6 27 98800 548 1414 265 388 908 38 41539 86367 5926 1044 0 0.0 0 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1270800.0 6.7 -10.6 28 98800 336 1414 263 209 776 27 22422 66608 4364 734 120 2.1 0 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1274400.0 5.6 -11.1 29 98800 89 1190 259 51 365 14 5414 20714 2310 258 90 2.6 0 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1278000.0 3.9 -10.0 36 98900 0 0 253 0 0 0 0 0 0 0 110 3.1 0 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1281600.0 3.9 -10.0 36 98900 0 0 253 0 0 0 0 0 0 0 120 3.1 0 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1285200.0 2.2 -10.0 40 98900 0 0 247 0 0 0 0 0 0 0 130 3.6 0 0 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1288800.0 2.2 -10.0 40 98900 0 0 247 0 0 0 0 0 0 0 140 4.1 0 0 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1292400.0 0.6 -10.0 46 99000 0 0 242 0 0 0 0 0 0 0 120 4.1 0 0 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1296000.0 0.6 -10.0 46 99000 0 0 242 0 0 0 0 0 0 0 100 4.1 0 0 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1299600.0 -1.7 -9.4 56 98900 0 0 234 0 0 0 0 0 0 0 90 3.1 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1303200.0 -1.1 -10.0 51 99000 0 0 236 0 0 0 0 0 0 0 120 3.1 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1306800.0 -1.7 -9.4 56 99000 0 0 234 0 0 0 0 0 0 0 90 4.6 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1310400.0 -1.7 -9.4 56 99000 0 0 234 0 0 0 0 0 0 0 120 2.6 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1314000.0 -2.8 -9.4 61 99000 0 0 230 0 0 0 0 0 0 0 110 2.6 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1317600.0 -2.8 -9.4 61 99000 0 0 230 0 0 0 0 0 0 0 90 4.6 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1321200.0 -2.8 -9.4 61 99100 0 0 230 0 0 0 0 0 0 0 80 3.6 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1324800.0 -2.8 -9.4 61 99100 9 389 230 15 81 5 0 0 0 0 90 5.2 0 0 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1328400.0 -1.7 -9.4 56 99100 197 1414 234 106 587 23 11310 43274 3756 525 90 3.6 1 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1332000.0 1.7 -8.9 46 99200 434 1414 246 292 798 46 31011 72642 7187 1016 140 5.7 3 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1335600.0 3.3 -8.9 41 99200 625 1414 257 413 748 81 49535 43964 9742 3690 100 4.6 6 1 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1339200.0 5.6 -9.4 33 99100 754 1414 260 568 900 87 69326 56230 10649 4200 150 5.2 6 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1342800.0 7.8 -9.4 29 99000 813 1414 274 601 897 85 63102 89033 12251 1813 150 5.2 7 1 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1346400.0 8.9 -9.4 27 98900 797 1414 278 579 811 121 69412 55226 14558 5711 120 5.2 8 1 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1350000.0 10.0 -8.9 26 98900 708 1414 283 492 801 92 59323 50117 11126 4311 140 4.6 8 1 32.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1353600.0 10.6 -8.3 26 98900 552 1414 286 369 783 64 44407 41053 7720 2877 130 5.7 6 1 32.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1357200.0 10.6 -8.3 26 98900 340 1414 290 182 466 71 20614 18195 8066 2621 160 4.6 7 2 32.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1360800.0 8.3 -7.8 31 98900 93 1213 284 48 79 40 5044 0 4221 924 120 3.6 9 3 32.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1364400.0 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 7 0.0000 0 88 0.000 0.0 1.0 +1368000.0 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 7 0.0000 0 88 0.000 0.0 1.0 +1371600.0 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 7 0.0000 0 88 0.000 0.0 1.0 +1375200.0 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 7 0.0000 0 88 0.000 0.0 1.0 +1378800.0 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 7 0.0000 0 88 0.000 0.0 1.0 +1382400.0 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 7 0.0000 0 88 0.000 0.0 1.0 +1386000.0 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 7 0.0000 0 88 0.000 0.0 1.0 +1389600.0 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 8 0.0000 0 88 0.000 0.0 1.0 +1393200.0 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 8 0.0000 0 88 0.000 0.0 1.0 +1396800.0 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 8 0.0000 0 88 0.000 0.0 1.0 +1400400.0 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 8 0.0000 0 88 0.000 0.0 1.0 +1404000.0 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 9 0.0000 0 88 0.000 0.0 1.0 +1407600.0 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 10 0.0000 0 88 0.000 0.0 1.0 +1411200.0 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 11 0.0000 0 88 0.000 0.0 1.0 +1414800.0 2.2 0.0 85 98500 198 1414 296 31 6 30 3568 0 3459 1117 90 7.7 10 10 4.8 340 9 999999999 11 0.0000 0 88 0.000 0.3 1.0 +1418400.0 2.2 1.1 93 98500 436 1414 297 98 5 96 11109 260 10921 3661 90 6.2 10 10 2.4 150 9 999999999 11 0.0000 0 88 0.000 4.1 1.0 +1422000.0 2.8 2.2 96 98400 627 1414 301 109 12 103 12810 725 12146 4529 90 7.2 10 10 1.6 90 9 999999999 12 0.0000 0 88 0.000 2.3 1.0 +1425600.0 3.3 2.8 96 98400 757 1414 304 143 8 139 16806 543 16401 6270 80 5.2 10 10 1.6 90 9 999999999 12 0.0000 0 88 0.000 3.8 1.0 +1429200.0 3.9 3.3 96 98300 816 1414 307 160 5 157 18809 352 18535 7156 290 7.7 10 10 1.6 150 9 999999999 13 0.0000 0 88 0.000 7.6 1.0 +1432800.0 4.4 3.9 96 98200 801 1414 310 163 5 161 19071 354 18919 7236 80 3.6 10 10 2.0 460 9 999999999 13 0.0000 0 88 0.000 1.3 1.0 +1436400.0 4.4 3.9 96 98100 713 1414 310 142 3 140 16541 202 16374 6131 90 4.1 10 10 2.4 90 9 999999999 13 0.0000 0 88 0.000 0.5 1.0 +1440000.0 4.4 3.9 96 98100 557 1414 310 125 3 124 14258 187 14200 4960 60 4.6 10 10 0.8 90 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1443600.0 3.9 3.3 96 98100 345 1414 298 86 54 73 9706 2010 8265 2691 60 6.2 10 9 1.6 120 9 999999999 13 0.0000 0 88 0.000 3.3 1.0 +1447200.0 4.4 3.3 93 98100 97 1237 309 32 0 32 3097 0 3118 881 100 5.2 10 10 8.0 340 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1450800.0 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 13 0.0000 0 88 0.000 0.0 1.0 +1454400.0 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 13 0.0000 0 88 0.000 0.0 1.0 +1458000.0 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 13 0.0000 0 88 0.000 0.0 1.0 +1461600.0 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 13 0.0000 0 88 0.000 0.0 1.0 +1465200.0 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 14 0.0000 0 88 0.000 0.3 1.0 +1468800.0 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 14 0.0000 0 88 0.000 0.0 1.0 +1472400.0 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 14 0.0000 0 88 0.000 0.0 1.0 +1476000.0 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 14 0.0000 0 88 0.000 0.0 1.0 +1479600.0 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 14 0.0000 0 88 0.000 0.0 1.0 +1483200.0 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 14 0.0000 0 88 0.000 0.0 1.0 +1486800.0 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 14 0.0000 0 88 0.000 0.0 1.0 +1490400.0 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 14 0.0000 0 88 0.000 0.0 1.0 +1494000.0 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 15 0.0000 0 88 0.000 0.0 1.0 +1497600.0 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 15 0.0000 0 88 0.000 0.0 1.0 +1501200.0 6.1 6.1 100 98200 200 1413 320 43 5 42 4810 12 4711 1453 80 2.1 10 10 0.0 0 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1504800.0 6.7 6.7 100 98200 439 1413 323 140 4 139 15373 247 15333 4674 70 3.1 10 10 0.2 0 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1508400.0 7.2 7.2 100 98200 630 1413 326 193 7 190 21571 525 21341 7135 100 3.1 10 10 0.2 0 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1512000.0 8.3 8.3 100 98100 760 1413 332 223 2 222 25210 157 25229 8892 50 2.6 10 10 0.2 0 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1515600.0 8.9 8.9 100 98100 820 1413 336 199 7 195 22960 513 22609 8481 110 3.1 10 10 0.2 0 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1519200.0 9.4 9.4 100 98000 805 1413 339 154 4 152 18070 267 17912 6928 70 3.1 10 10 0.2 0 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1522800.0 10.0 10.0 100 97900 717 1413 343 149 1 148 17249 66 17206 6422 60 3.1 10 10 0.2 0 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1526400.0 10.6 10.6 100 97900 561 1413 346 193 1 193 21188 74 21298 6634 60 4.1 10 10 0.4 0 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1530000.0 11.1 10.6 96 97900 349 1413 349 111 0 111 10937 0 11021 3548 70 3.1 10 10 0.4 30 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1533600.0 11.1 10.6 96 97900 101 1260 349 33 0 33 3183 0 3205 915 90 3.6 10 10 0.2 30 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1537200.0 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 20 0.0000 0 88 0.000 0.0 1.0 +1540800.0 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 20 0.0000 0 88 0.000 0.0 1.0 +1544400.0 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 20 0.0000 0 88 0.000 0.0 1.0 +1548000.0 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 20 0.0000 0 88 0.000 0.0 1.0 +1551600.0 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 20 0.0000 0 88 0.000 0.0 1.0 +1555200.0 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 20 0.0000 0 88 0.000 0.0 1.0 +1558800.0 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 20 0.0000 0 88 0.000 0.0 1.0 +1562400.0 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 20 0.0000 0 88 0.000 0.0 1.0 +1566000.0 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 21 0.0000 0 88 0.000 0.0 1.0 +1569600.0 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 21 0.0000 0 88 0.000 0.0 1.0 +1573200.0 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 22 0.0000 0 88 0.000 0.3 1.0 +1576800.0 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 22 0.0000 0 88 0.000 1.3 1.0 +1580400.0 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 23 0.0000 0 88 0.000 0.5 1.0 +1584000.0 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 23 0.0000 0 88 0.000 4.1 1.0 +1587600.0 13.3 13.3 100 97800 202 1413 363 66 1 66 7087 12 7115 1932 140 5.7 10 10 0.2 60 9 999999999 23 0.0000 0 88 0.000 0.3 1.0 +1591200.0 14.4 14.4 100 97900 441 1413 370 152 1 152 16501 61 16582 4920 140 5.7 10 10 0.0 30 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1594800.0 15.6 15.0 97 97900 633 1413 377 130 1 130 14922 59 14983 5476 140 7.7 10 10 3.2 120 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1598400.0 16.7 15.0 90 97800 764 1413 382 297 1 297 32666 86 32868 10557 140 7.2 10 10 11.3 180 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1602000.0 17.2 15.0 87 97700 824 1413 385 293 2 292 32617 167 32704 11111 150 6.2 10 10 11.3 340 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1605600.0 17.8 15.0 84 97500 810 1413 388 297 2 296 32942 169 33032 11042 160 7.7 10 10 11.3 400 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1609200.0 18.3 15.0 81 97500 722 1413 391 259 2 258 28593 161 28648 9376 160 9.3 10 10 16.1 460 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1612800.0 18.9 15.0 78 97400 566 1413 394 195 1 195 21347 71 21460 6712 160 10.8 10 10 16.1 760 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1616400.0 18.3 15.0 81 97400 354 1413 391 68 1 68 7692 30 7717 2580 130 6.7 10 10 16.1 700 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1620000.0 17.2 15.6 90 97300 104 1284 386 33 0 33 3171 0 3194 935 110 6.7 10 10 16.1 700 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1623600.0 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 27 0.0000 0 88 0.000 0.0 1.0 +1627200.0 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 27 0.0000 0 88 0.000 0.3 1.0 +1630800.0 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 27 0.0000 0 88 0.000 0.3 1.0 +1634400.0 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 27 0.0000 0 88 0.000 0.3 1.0 +1638000.0 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 26 0.0000 0 88 0.000 0.0 1.0 +1641600.0 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 27 0.0000 0 88 0.000 0.0 1.0 +1645200.0 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 26 0.0000 0 88 0.000 15.7 1.0 +1648800.0 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 23 0.0000 0 88 0.000 5.1 1.0 +1652400.0 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 22 0.0000 0 88 0.000 4.1 1.0 +1656000.0 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 21 0.0000 0 88 0.000 1.5 1.0 +1659600.0 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 22 0.0000 0 88 0.000 0.0 1.0 +1663200.0 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 22 0.0000 0 88 0.000 0.0 1.0 +1666800.0 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 22 0.0000 0 88 0.000 0.0 1.0 +1670400.0 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 21 0.0000 0 88 0.000 0.0 1.0 +1674000.0 12.2 12.2 100 97400 204 1413 356 60 1 60 6506 10 6530 1847 270 4.1 10 10 0.2 30 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +1677600.0 12.8 12.8 100 97400 443 1413 360 146 1 146 15932 60 16008 4838 220 3.1 10 10 0.0 30 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +1681200.0 13.9 12.8 93 97500 636 1413 365 230 1 230 25255 79 25395 8010 250 3.6 10 10 3.2 90 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +1684800.0 13.9 12.2 90 97500 767 1413 364 290 0 290 29538 0 29800 10473 260 5.2 10 10 11.3 180 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +1688400.0 15.6 12.2 81 97500 828 1413 350 355 168 257 40041 13482 29152 10327 240 4.1 9 7 12.9 7620 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +1692000.0 17.2 9.4 61 97300 814 1413 347 319 173 219 36418 13270 25132 9181 240 6.2 9 5 16.1 7620 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1695600.0 17.8 9.4 58 97300 726 1413 357 301 236 180 34373 16892 20653 7485 230 5.2 9 7 32.2 7620 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1699200.0 17.2 9.4 61 97400 571 1413 354 266 247 167 29636 17105 18694 6170 220 6.2 9 7 32.2 7620 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1702800.0 16.7 7.2 54 97400 359 1413 345 161 217 106 17668 10401 11680 3516 210 4.6 10 6 24.1 7620 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1706400.0 16.1 6.7 54 97400 108 1307 346 33 21 31 3580 0 3374 922 220 5.2 10 7 24.1 7620 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1710000.0 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 16 0.0000 0 88 0.000 0.0 1.0 +1713600.0 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 15 0.0000 0 88 0.000 0.0 1.0 +1717200.0 12.8 5.0 60 97500 0 0 314 0 0 0 0 0 0 0 260 3.6 7 2 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1720800.0 11.7 5.0 64 97500 0 0 309 0 0 0 0 0 0 0 260 3.6 7 2 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1724400.0 10.6 4.4 66 97500 0 0 303 0 0 0 0 0 0 0 280 3.6 8 2 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1728000.0 10.0 3.3 64 97500 0 0 300 0 0 0 0 0 0 0 280 4.1 9 2 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1731600.0 9.4 2.8 64 97500 0 0 300 0 0 0 0 0 0 0 290 5.2 5 3 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1735200.0 8.3 1.1 61 97500 0 0 290 0 0 0 0 0 0 0 300 5.2 3 2 24.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1738800.0 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 11 0.0000 0 88 0.000 0.0 1.0 +1742400.0 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 11 0.0000 0 88 0.000 0.0 1.0 +1746000.0 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 12 0.0000 0 88 0.000 0.0 1.0 +1749600.0 5.6 1.1 73 97500 0 0 282 0 0 0 0 0 0 0 310 7.2 6 3 24.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1753200.0 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 11 0.0000 0 88 0.000 0.0 1.0 +1756800.0 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 11 0.0000 0 88 0.000 0.0 1.0 +1760400.0 5.0 -0.6 68 97500 206 1413 299 51 20 48 5671 188 5353 1614 310 5.2 10 9 24.1 3350 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1764000.0 5.6 -0.6 65 97600 446 1413 295 193 139 149 21166 9366 16416 4911 330 7.7 9 8 24.1 3050 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1767600.0 6.7 -0.6 60 97600 639 1413 306 258 33 243 28386 2901 26884 8264 330 6.2 10 9 24.1 3050 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1771200.0 6.7 -0.6 60 97600 771 1413 315 226 13 219 25708 1059 25040 8890 330 7.2 10 10 24.1 3050 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1774800.0 7.2 -0.6 58 97500 832 1413 317 254 5 251 28878 426 28693 10205 320 5.7 10 10 24.1 3050 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1778400.0 8.3 0.0 56 97500 818 1413 308 399 146 315 44420 13829 35282 11506 310 5.7 10 8 24.1 7620 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1782000.0 10.0 0.0 50 97500 731 1413 310 333 266 195 37951 20736 22332 7949 310 5.2 8 7 24.1 7620 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1785600.0 9.4 -1.1 48 97500 576 1413 318 170 80 138 19331 5395 15758 5453 310 6.2 10 9 24.1 3050 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1789200.0 8.9 -0.6 52 97500 363 1413 299 161 322 79 18176 13601 8948 2917 320 4.6 5 5 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1792800.0 7.8 -0.6 56 97500 112 1330 277 53 331 20 5997 0 2267 692 310 6.7 0 0 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1796400.0 6.1 -1.1 60 97600 0 0 270 0 0 0 0 0 0 0 310 4.1 0 0 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1800000.0 5.6 -0.6 65 97700 0 0 269 0 0 0 0 0 0 0 290 5.2 0 0 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1803600.0 4.4 -1.1 68 97700 0 0 272 0 0 0 0 0 0 0 290 6.7 2 2 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1807200.0 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 9 0.0000 0 88 0.000 0.0 1.0 +1810800.0 3.9 -2.2 65 97800 0 0 269 0 0 0 0 0 0 0 310 5.2 2 2 16.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1814400.0 3.3 -2.8 65 97800 0 0 258 0 0 0 0 0 0 0 300 4.1 0 0 16.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1818000.0 2.8 -3.3 65 97800 0 0 256 0 0 0 0 0 0 0 300 5.2 0 0 16.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1821600.0 2.8 -3.3 65 97800 0 0 256 0 0 0 0 0 0 0 300 6.7 0 0 16.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1825200.0 1.7 -3.9 67 97900 0 0 259 0 0 0 0 0 0 0 310 5.7 2 2 16.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1828800.0 1.1 -4.4 67 97900 0 0 257 0 0 0 0 0 0 0 310 6.2 2 2 16.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1832400.0 0.0 -4.4 72 97900 0 0 249 0 0 0 0 0 0 0 310 4.6 1 1 16.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1836000.0 -0.6 -4.4 75 97900 0 0 242 0 0 0 0 0 0 0 290 4.1 0 0 16.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1839600.0 -0.6 -4.4 75 98100 0 0 242 0 0 0 0 0 0 0 300 4.6 0 0 16.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1843200.0 -0.6 -4.4 75 98100 12 435 247 14 62 7 0 0 0 0 300 4.6 1 1 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1846800.0 1.1 -4.4 67 98100 208 1412 253 109 490 36 12430 1947 4115 1311 310 6.7 1 1 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1850400.0 2.8 -5.0 57 98200 449 1412 267 254 509 91 29051 26985 10443 3564 320 9.3 4 4 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1854000.0 3.9 -4.4 55 98300 642 1412 277 347 349 188 39053 27391 21261 7178 310 10.3 6 6 24.1 910 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1857600.0 3.9 -4.4 55 98300 775 1412 277 549 699 165 63970 51692 19310 7260 300 7.7 6 6 24.1 910 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1861200.0 4.4 -4.4 53 98200 836 1412 276 467 494 174 54746 37001 20490 7853 340 9.3 5 5 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1864800.0 3.9 -3.9 57 98100 823 1412 277 383 244 241 43652 20673 27614 9865 300 6.2 6 6 24.1 910 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1868400.0 5.0 -4.4 51 98100 736 1412 281 415 451 181 47669 34605 20887 7570 280 8.8 6 6 24.1 910 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1872000.0 5.0 -5.0 49 98200 580 1412 274 375 668 102 43761 40729 11943 4347 310 6.7 3 3 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1875600.0 3.9 -5.0 53 98200 368 1412 263 220 721 34 23570 63473 5425 845 300 7.2 1 1 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1879200.0 2.8 -5.6 55 98200 117 1353 254 59 388 19 6732 0 2171 671 300 4.6 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1882800.0 1.1 -5.6 62 98300 0 0 247 0 0 0 0 0 0 0 320 4.1 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1886400.0 0.6 -5.6 64 98300 0 0 246 0 0 0 0 0 0 0 310 3.1 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1890000.0 -0.6 -5.6 69 98300 0 0 241 0 0 0 0 0 0 0 250 2.6 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1893600.0 0.0 -5.6 67 98200 0 0 243 0 0 0 0 0 0 0 330 3.1 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1897200.0 -1.7 -5.0 78 98200 0 0 238 0 0 0 0 0 0 0 280 2.1 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1900800.0 -0.6 -5.6 69 98200 0 0 241 0 0 0 0 0 0 0 250 3.1 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1904400.0 -2.2 -4.4 85 98200 0 0 237 0 0 0 0 0 0 0 280 3.1 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1908000.0 -2.2 -5.6 78 98200 0 0 236 0 0 0 0 0 0 0 260 3.6 0 0 16.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1911600.0 -1.7 -6.1 72 98200 0 0 237 0 0 0 0 0 0 0 280 3.6 0 0 16.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1915200.0 -1.1 -7.2 64 98200 0 0 238 0 0 0 0 0 0 0 250 3.6 0 0 16.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1918800.0 -1.7 -7.2 66 98100 0 0 236 0 0 0 0 0 0 0 230 4.1 0 0 16.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1922400.0 -1.7 -6.7 69 98100 0 0 236 0 0 0 0 0 0 0 250 4.1 0 0 16.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1926000.0 -1.1 -7.2 64 98100 0 0 238 0 0 0 0 0 0 0 240 5.2 0 0 16.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1929600.0 -1.7 -6.7 69 98100 12 435 236 13 48 7 0 0 0 0 240 4.1 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1933200.0 0.6 -6.1 61 98100 210 1412 245 108 515 31 12481 1037 3589 1167 230 4.1 0 0 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1936800.0 3.3 -6.7 48 98100 452 1412 254 294 766 48 31249 70388 7472 1051 240 4.6 0 0 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1940400.0 5.0 -7.8 40 98100 646 1412 260 460 870 61 48739 84636 9169 1396 240 6.7 0 0 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1944000.0 7.2 -7.2 35 98100 778 1412 268 579 922 70 61217 91452 10251 1658 240 5.7 0 0 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1947600.0 7.8 -6.7 36 98000 840 1412 271 636 943 74 67184 94104 10703 1799 270 6.2 0 0 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1951200.0 9.4 -7.2 30 97900 827 1412 277 622 936 73 65704 93274 10587 1766 290 7.2 0 0 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1954800.0 10.0 -6.1 32 97800 740 1412 281 545 912 67 57722 90121 9893 1573 260 7.2 0 0 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1958400.0 10.0 -6.7 31 97800 585 1412 280 406 847 57 43089 81354 8668 1286 280 7.2 0 0 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1962000.0 10.0 -6.7 31 97800 373 1412 280 226 707 42 26927 23010 5013 1764 280 5.2 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1965600.0 8.3 -7.2 33 97800 121 1377 273 55 325 22 6222 0 2494 760 270 4.6 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1969200.0 6.1 -6.7 40 97900 0 0 265 0 0 0 0 0 0 0 270 3.1 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1972800.0 5.6 -6.7 41 97900 0 0 263 0 0 0 0 0 0 0 220 3.6 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1976400.0 5.6 -6.7 41 97900 0 0 263 0 0 0 0 0 0 0 200 3.1 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1980000.0 3.9 -6.1 49 97900 0 0 257 0 0 0 0 0 0 0 200 3.1 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1983600.0 4.4 -5.6 49 97900 0 0 259 0 0 0 0 0 0 0 220 4.6 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1987200.0 3.9 -5.6 51 98000 0 0 258 0 0 0 0 0 0 0 230 4.1 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1990800.0 2.8 -5.6 55 97900 0 0 254 0 0 0 0 0 0 0 230 3.6 0 0 16.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1994400.0 2.2 -6.1 55 97900 0 0 251 0 0 0 0 0 0 0 230 2.1 0 0 16.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1998000.0 0.6 -5.6 64 98000 0 0 246 0 0 0 0 0 0 0 0 0.0 0 0 16.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2001600.0 1.1 -6.1 59 98000 0 0 247 0 0 0 0 0 0 0 200 2.6 0 0 16.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2005200.0 0.0 -6.1 64 98000 0 0 243 0 0 0 0 0 0 0 180 3.1 0 0 16.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2008800.0 0.0 -5.6 67 98000 0 0 243 0 0 0 0 0 0 0 180 3.1 0 0 16.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2012400.0 0.0 -5.6 67 98000 0 0 248 0 0 0 0 0 0 0 220 3.1 4 1 16.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2016000.0 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 8 0.0000 0 88 0.000 0.0 1.0 +2019600.0 2.8 -4.4 59 98000 213 1412 263 94 258 55 10378 3982 6092 1792 200 3.6 3 2 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2023200.0 5.0 -3.9 53 98100 455 1412 263 283 679 63 33362 31050 7445 2663 210 5.2 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2026800.0 7.2 -2.2 52 98100 649 1412 288 435 688 118 50859 44688 13847 5135 220 3.6 4 4 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2030400.0 11.7 -1.1 42 98100 782 1412 305 561 678 185 64823 51655 21477 7959 210 5.2 8 3 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2034000.0 11.7 -3.3 35 98000 845 1412 314 354 135 273 40089 11976 31092 10876 220 6.7 9 7 24.1 2130 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2037600.0 10.6 -1.7 43 98000 832 1412 323 467 313 283 52598 28199 32058 10995 260 6.2 10 9 24.1 1680 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2041200.0 11.1 -1.7 41 97900 745 1412 325 235 37 216 26645 3022 24616 8622 210 4.6 10 9 24.1 1680 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2044800.0 11.1 -1.1 43 97900 590 1412 326 191 2 190 21228 157 21221 6821 220 4.6 10 9 24.1 2130 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2048400.0 11.1 -1.1 43 97900 378 1412 326 119 31 110 13132 1657 12188 3709 200 3.1 10 9 24.1 2130 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2052000.0 10.6 -1.1 45 97900 125 1400 332 19 0 19 1847 0 1859 684 210 3.6 10 10 24.1 2130 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2055600.0 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 10 0.0000 0 88 0.000 0.0 1.0 +2059200.0 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 10 0.0000 0 88 0.000 0.0 1.0 +2062800.0 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 10 0.0000 0 88 0.000 0.0 1.0 +2066400.0 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 11 0.0000 0 88 0.000 0.0 1.0 +2070000.0 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 11 0.0000 0 88 0.000 0.0 1.0 +2073600.0 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 12 0.0000 0 88 0.000 0.0 1.0 +2077200.0 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 13 0.0000 0 88 0.000 0.0 1.0 +2080800.0 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 13 0.0000 0 88 0.000 1.0 1.0 +2084400.0 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 14 0.0000 0 88 0.000 1.5 1.0 +2088000.0 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 14 0.0000 0 88 0.000 1.3 1.0 +2091600.0 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 13 0.0000 0 88 0.000 1.3 1.0 +2095200.0 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 13 0.0000 0 88 0.000 0.8 1.0 +2098800.0 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 13 0.0000 0 88 0.000 0.5 1.0 +2102400.0 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 13 0.0000 0 88 0.000 0.0 1.0 +2106000.0 4.4 3.3 93 97500 216 1411 309 44 1 44 4943 8 4957 1545 280 3.6 10 10 8.0 370 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2109600.0 5.0 3.9 93 97500 458 1411 312 167 4 166 18180 282 18160 5285 290 4.6 10 10 4.8 120 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2113200.0 5.0 2.2 83 97500 653 1411 311 171 5 169 19421 366 19282 6752 300 7.2 10 10 2.4 180 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2116800.0 6.1 3.3 83 97500 786 1411 297 451 374 242 50975 31220 27501 9615 310 6.7 7 7 16.1 1220 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2120400.0 7.2 0.0 61 97400 849 1411 295 517 563 178 60573 41796 20950 8055 300 7.2 6 6 24.1 760 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2124000.0 8.3 -3.9 42 97300 837 1411 288 558 713 136 66675 49416 16314 6431 300 9.8 3 3 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2127600.0 8.3 -7.8 31 97300 750 1411 281 513 780 99 61953 49998 11994 4696 300 10.8 2 2 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2131200.0 8.3 -7.8 31 97300 595 1411 281 402 782 74 48259 43978 8907 3351 300 10.8 2 2 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2134800.0 6.7 -6.7 38 97500 383 1411 279 165 279 90 18559 13595 10159 3279 290 9.3 3 3 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2138400.0 6.1 -6.1 42 97500 130 1411 279 41 96 31 4537 0 3439 996 280 6.2 4 4 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2142000.0 5.0 -4.4 51 97600 0 12 279 0 0 0 0 0 0 0 260 4.6 5 5 16.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2145600.0 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 9 0.0000 0 88 0.000 0.0 1.0 +2149200.0 2.8 -2.8 67 97700 0 0 256 0 0 0 0 0 0 0 270 5.2 0 0 16.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2152800.0 2.2 -4.4 62 97800 0 0 261 0 0 0 0 0 0 0 280 6.7 2 2 16.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2156400.0 1.7 -6.1 57 97800 0 0 260 0 0 0 0 0 0 0 280 6.7 3 3 16.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2160000.0 1.1 -7.8 52 97800 0 0 253 0 0 0 0 0 0 0 280 9.8 2 2 16.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2163600.0 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 7 0.0000 0 88 0.000 0.0 1.0 +2167200.0 -1.7 -9.4 56 98000 0 0 246 0 0 0 0 0 0 0 300 9.3 4 4 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2170800.0 -2.8 -10.6 56 98100 0 0 239 0 0 0 0 0 0 0 310 8.2 3 3 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2174400.0 -3.3 -11.7 53 98200 0 0 227 0 0 0 0 0 0 0 300 7.2 0 0 19.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2178000.0 -4.4 -12.8 53 98100 0 0 222 0 0 0 0 0 0 0 300 6.2 0 0 19.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2181600.0 -5.0 -11.7 60 98100 0 0 221 0 0 0 0 0 0 0 300 5.2 0 0 19.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2185200.0 -5.0 -12.8 55 98300 0 0 224 0 0 0 0 0 0 0 310 5.2 1 1 19.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2188800.0 -5.6 -12.8 57 98300 14 482 218 17 84 7 0 0 0 0 280 3.6 0 0 32.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2192400.0 -4.4 -12.8 53 98400 218 1411 222 120 605 26 12764 45919 4222 576 270 5.2 0 0 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2196000.0 -3.3 -13.3 46 98500 461 1411 225 313 832 40 33335 76624 6276 1005 290 6.7 0 0 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2199600.0 -2.8 -14.4 41 98600 657 1411 226 482 924 51 51173 89914 7724 1311 270 6.7 0 0 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2203200.0 -1.1 -13.9 38 98600 791 1411 232 601 966 59 63638 95744 8700 1553 280 6.7 0 0 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2206800.0 0.0 -13.9 35 98600 854 1411 236 658 983 63 69565 97963 9168 1690 290 4.1 0 0 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2210400.0 0.0 -13.3 36 98500 842 1411 236 650 986 62 68766 98193 9048 1659 320 5.7 0 0 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2214000.0 2.2 -12.8 32 98500 755 1411 245 568 958 57 60217 94618 8467 1485 270 7.2 0 0 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2217600.0 2.2 -13.9 30 98500 600 1411 243 430 902 48 45699 86754 7347 1222 280 8.2 0 0 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2221200.0 2.2 -14.4 28 98600 388 1411 243 248 781 35 26426 69220 5564 877 320 7.7 0 0 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2224800.0 0.6 -13.9 33 98600 135 1411 238 65 443 20 7482 0 2306 725 310 6.7 0 0 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2228400.0 -0.6 -13.3 38 98700 0 35 234 0 0 0 0 0 0 0 320 5.2 0 0 16.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2232000.0 -1.1 -12.8 41 98800 0 0 233 0 0 0 0 0 0 0 320 4.1 0 0 16.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2235600.0 -1.7 -12.2 45 98900 0 0 232 0 0 0 0 0 0 0 310 3.6 0 0 16.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2239200.0 -2.2 -11.7 49 99000 0 0 230 0 0 0 0 0 0 0 300 3.6 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2242800.0 -2.8 -12.2 49 99000 0 0 228 0 0 0 0 0 0 0 310 4.1 0 0 16.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2246400.0 -3.9 -11.7 55 99000 0 0 225 0 0 0 0 0 0 0 300 3.6 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2250000.0 -3.9 -11.7 55 99000 0 0 225 0 0 0 0 0 0 0 320 4.1 0 0 19.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2253600.0 -4.4 -11.7 58 99100 0 0 223 0 0 0 0 0 0 0 310 4.1 0 0 19.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2257200.0 -5.0 -11.7 60 99100 0 0 221 0 0 0 0 0 0 0 320 4.1 0 0 19.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2260800.0 -5.0 -11.7 60 99100 0 0 221 0 0 0 0 0 0 0 330 5.2 0 0 19.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2264400.0 -5.6 -11.1 65 99100 0 0 219 0 0 0 0 0 0 0 310 3.6 0 0 19.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2268000.0 -6.1 -11.1 68 99200 0 0 218 0 0 0 0 0 0 0 290 4.1 0 0 19.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2271600.0 -6.7 -11.1 71 99300 0 0 216 0 0 0 0 0 0 0 310 4.6 0 0 19.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2275200.0 -6.7 -11.1 71 99400 15 482 216 16 68 8 0 0 0 0 290 4.1 0 0 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2278800.0 -5.0 -10.6 65 99500 221 1411 222 119 564 29 13898 2255 3392 1119 290 4.1 0 0 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2282400.0 -3.3 -11.1 55 99500 465 1411 227 310 804 45 32939 74161 7017 1053 320 5.2 0 0 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2286000.0 -1.7 -11.1 49 99500 661 1411 233 481 902 58 50953 87882 8722 1391 320 5.7 0 0 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2289600.0 -0.6 -13.3 38 99500 795 1411 234 604 953 67 63733 94441 9805 1656 310 5.7 0 0 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2293200.0 1.1 -13.3 34 99500 858 1411 240 662 972 70 69788 96859 10120 1790 300 5.7 0 0 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2296800.0 2.8 -13.9 28 99400 846 1411 246 650 967 70 68501 96241 10139 1769 290 4.1 0 0 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2300400.0 3.9 -14.4 25 99300 760 1411 249 570 942 64 60182 92963 9439 1574 340 2.1 0 0 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2304000.0 4.4 -16.7 20 99400 605 1411 249 433 889 54 45811 85446 8208 1289 320 4.6 0 0 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2307600.0 4.4 -15.0 23 99400 393 1411 250 248 753 40 26322 66844 6314 922 280 5.7 0 0 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2311200.0 3.3 -15.0 25 99500 139 1411 246 63 404 22 7218 0 2525 789 310 3.1 0 0 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2314800.0 1.7 -13.3 32 99600 0 59 242 0 0 0 0 0 0 0 320 5.2 0 0 16.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2318400.0 1.1 -12.8 35 99600 0 0 241 0 0 0 0 0 0 0 330 2.6 0 0 16.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2322000.0 0.0 -11.7 42 99600 0 0 238 0 0 0 0 0 0 0 280 2.1 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2325600.0 -0.6 -11.7 43 99700 0 0 236 0 0 0 0 0 0 0 260 3.1 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2329200.0 -1.1 -11.7 45 99700 0 0 234 0 0 0 0 0 0 0 270 2.6 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2332800.0 -2.2 -10.6 53 99700 0 0 231 0 0 0 0 0 0 0 290 3.1 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2336400.0 -1.7 -11.1 49 99700 0 0 233 0 0 0 0 0 0 0 260 3.1 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2340000.0 -2.2 -10.6 53 99700 0 0 231 0 0 0 0 0 0 0 280 3.1 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2343600.0 -2.8 -10.6 56 99700 0 0 229 0 0 0 0 0 0 0 290 2.6 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2347200.0 -3.3 -10.0 60 99700 0 0 228 0 0 0 0 0 0 0 290 3.1 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2350800.0 -3.3 -10.0 60 99600 0 0 228 0 0 0 0 0 0 0 300 3.1 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2354400.0 -3.3 -10.0 60 99700 0 0 228 0 0 0 0 0 0 0 300 3.6 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2358000.0 -3.3 -10.0 60 99800 0 0 228 0 0 0 0 0 0 0 290 3.1 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2361600.0 -4.4 -8.9 72 99800 16 505 225 17 97 7 0 0 0 0 290 4.1 0 0 16.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2365200.0 -1.7 -8.3 61 99900 224 1410 235 124 619 25 13245 47541 4069 584 280 3.6 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2368800.0 1.7 -7.8 50 99900 468 1410 247 318 837 39 34002 77562 6125 1000 290 4.1 0 0 19.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2372400.0 5.0 -7.2 41 100000 665 1410 260 488 927 50 52048 90678 7576 1305 300 4.1 0 0 19.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2376000.0 6.7 -6.7 38 99900 799 1410 267 608 970 57 64710 96604 8414 1535 270 4.1 0 0 19.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2379600.0 8.3 -6.7 34 99900 863 1410 273 664 985 61 70554 98615 8884 1674 290 3.1 0 0 32.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2383200.0 10.6 -6.1 31 99800 851 1410 283 650 978 60 69126 97869 8763 1643 250 3.1 0 0 32.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2386800.0 12.2 -7.2 25 99600 765 1410 288 575 960 55 61224 95233 8176 1468 170 2.1 0 0 32.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2390400.0 12.2 -7.2 25 99600 610 1410 288 437 906 47 46651 87665 7196 1218 240 4.1 0 0 32.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2394000.0 12.2 -7.2 25 99600 398 1410 288 254 788 34 27206 70557 5412 876 230 4.6 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2397600.0 10.6 -7.2 28 99600 144 1410 282 69 476 20 7349 31706 3277 400 270 3.1 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2401200.0 8.9 -7.2 32 99600 0 82 275 0 0 0 0 0 0 0 250 2.6 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2404800.0 8.9 -6.7 33 99600 0 0 276 0 0 0 0 0 0 0 220 3.6 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2408400.0 7.2 -6.7 37 99600 0 0 269 0 0 0 0 0 0 0 220 4.6 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2412000.0 5.6 -6.7 41 99600 0 0 263 0 0 0 0 0 0 0 220 4.1 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2415600.0 5.6 -6.7 41 99700 0 0 263 0 0 0 0 0 0 0 230 4.1 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2419200.0 5.0 -6.7 43 99700 0 0 261 0 0 0 0 0 0 0 230 3.6 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2422800.0 4.4 -6.7 45 99700 0 0 258 0 0 0 0 0 0 0 260 3.1 0 0 16.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2426400.0 2.8 -6.7 50 99600 0 0 252 0 0 0 0 0 0 0 0 0.0 0 0 16.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2430000.0 1.7 -6.7 54 99600 0 0 248 0 0 0 0 0 0 0 190 2.1 0 0 16.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2433600.0 0.6 -5.0 67 99600 0 0 246 0 0 0 0 0 0 0 0 0.0 0 0 16.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2437200.0 0.6 -5.6 64 99700 0 0 246 0 0 0 0 0 0 0 0 0.0 0 0 16.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2440800.0 0.6 -5.6 64 99700 0 0 246 0 0 0 0 0 0 0 0 0.0 0 0 16.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2444400.0 2.2 -5.6 57 99800 0 0 251 0 0 0 0 0 0 0 210 2.6 0 0 16.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2448000.0 2.2 -5.6 57 99800 17 529 251 20 116 7 0 0 0 0 230 2.1 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2451600.0 5.0 -5.0 49 99900 228 1410 262 129 652 23 13849 50482 3760 575 230 3.1 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2455200.0 8.9 -4.4 39 99900 472 1410 278 322 856 35 34630 79704 5527 951 270 3.1 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2458800.0 11.7 -4.4 32 100000 669 1410 289 491 929 50 52482 91120 7574 1309 270 3.1 1 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2462400.0 12.8 -4.4 30 99900 804 1410 294 610 968 58 65006 96595 8550 1555 240 3.1 1 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2466000.0 13.9 -4.4 28 99800 868 1410 298 671 963 78 70906 96443 11200 1892 250 3.1 3 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2469600.0 15.0 -6.1 23 99700 856 1410 301 660 958 78 69646 95737 11219 1868 200 6.2 3 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2473200.0 15.6 -6.7 21 99600 770 1410 309 475 615 139 56078 43274 16475 6321 200 3.6 4 1 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2476800.0 16.7 -7.8 18 99500 615 1410 312 409 824 50 43569 79762 7625 1260 190 3.6 4 1 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2480400.0 15.6 -7.8 20 99500 403 1410 315 212 494 72 24417 22210 8317 2839 210 4.6 10 3 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2484000.0 14.4 -6.7 23 99500 148 1410 311 65 46 60 6883 476 6380 1492 200 4.1 10 3 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2487600.0 13.3 -6.1 26 99500 1 106 307 0 0 0 0 0 0 0 180 5.2 10 3 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2491200.0 12.2 -6.7 26 99500 0 0 298 0 0 0 0 0 0 0 190 4.6 8 2 16.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2494800.0 10.0 -6.7 31 99500 0 0 285 0 0 0 0 0 0 0 180 4.1 8 1 16.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2498400.0 9.4 -5.6 35 99500 0 0 284 0 0 0 0 0 0 0 180 4.6 5 1 16.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2502000.0 7.8 -5.6 39 99500 0 0 272 0 0 0 0 0 0 0 180 3.6 2 0 16.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2505600.0 7.8 -5.0 40 99500 0 0 273 0 0 0 0 0 0 0 180 4.1 0 0 16.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2509200.0 5.6 -5.0 47 99500 0 0 265 0 0 0 0 0 0 0 180 2.6 2 0 16.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2512800.0 5.6 -5.0 47 99500 0 0 265 0 0 0 0 0 0 0 170 2.1 2 0 16.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2516400.0 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 8 0.0000 0 88 0.000 0.0 1.0 +2520000.0 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 8 0.0000 0 88 0.000 0.0 1.0 +2523600.0 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 8 0.0000 0 88 0.000 0.0 1.0 +2527200.0 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 8 0.0000 0 88 0.000 0.0 1.0 +2530800.0 3.9 -2.8 62 99500 0 0 272 0 0 0 0 0 0 0 120 2.6 7 3 16.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2534400.0 4.4 -0.6 70 99500 18 529 278 21 29 18 0 0 0 0 130 2.6 10 4 16.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2538000.0 6.7 1.7 71 99500 231 1410 290 98 199 65 10737 4305 7147 2068 140 2.6 10 4 12.9 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2541600.0 10.0 3.9 66 99500 476 1410 306 227 237 147 25078 15648 16314 5095 160 4.6 9 4 12.9 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2545200.0 14.4 5.6 56 99500 673 1410 327 353 366 178 40035 26857 20283 7125 170 6.7 9 4 19.3 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +2548800.0 16.1 4.4 46 99500 808 1410 336 597 702 194 68926 52962 22507 8394 180 5.7 10 5 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2552400.0 16.7 5.0 46 99400 873 1410 343 492 426 228 56664 33713 26397 9844 210 6.2 10 6 40.2 1370 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2556000.0 16.7 4.4 45 99300 862 1410 369 289 14 280 32686 1216 31851 11203 180 6.7 10 10 40.2 1370 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2559600.0 16.7 5.0 46 99200 776 1410 360 357 73 317 39366 6911 35171 11036 190 6.7 10 9 40.2 1370 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2563200.0 16.7 5.0 46 99200 621 1410 360 167 66 137 19146 4343 15771 5644 190 4.6 10 9 40.2 1370 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2566800.0 16.7 5.0 46 99100 408 1410 360 157 51 142 17073 3185 15514 4483 160 6.2 10 9 24.1 1370 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2570400.0 15.6 5.0 50 99100 153 1410 341 57 55 51 6119 33 5495 1436 160 4.6 9 7 24.1 1370 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +2574000.0 14.4 5.0 53 99100 30 106 336 5 1 4 0 0 0 0 150 4.6 9 7 16.1 1370 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2577600.0 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 15 0.0000 0 88 0.000 0.0 1.0 +2581200.0 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 15 0.0000 0 88 0.000 0.0 1.0 +2584800.0 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 15 0.0000 0 88 0.000 0.0 1.0 +2588400.0 11.7 6.1 69 99100 0 0 306 0 0 0 0 0 0 0 140 4.6 3 1 16.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +2592000.0 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 16 0.0000 0 88 0.000 0.0 1.0 +2595600.0 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 16 0.0000 0 88 0.000 0.0 1.0 +2599200.0 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 16 0.0000 0 88 0.000 0.0 1.0 +2602800.0 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 16 0.0000 0 88 0.000 0.0 1.0 +2606400.0 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 16 0.0000 0 88 0.000 0.0 1.0 +2610000.0 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 16 0.0000 0 88 0.000 0.0 1.0 +2613600.0 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 16 0.0000 0 88 0.000 0.0 1.0 +2617200.0 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 16 0.0000 0 88 0.000 0.0 1.0 +2620800.0 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 17 0.0000 0 88 0.000 0.0 1.0 +2624400.0 11.1 8.3 83 99100 234 1409 346 44 6 43 4982 49 4881 1565 110 4.1 10 10 24.1 1370 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2628000.0 11.1 8.3 83 99200 480 1409 346 129 6 127 14411 355 14248 4674 120 3.6 10 10 24.1 1370 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2631600.0 14.4 10.0 75 99200 677 1409 334 398 441 186 44924 31986 21097 7371 150 4.6 8 5 12.9 7620 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2635200.0 17.2 10.6 65 99100 813 1409 348 492 425 247 55603 34049 28069 9965 170 5.7 9 5 16.1 7620 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2638800.0 19.4 9.4 53 98900 878 1409 358 538 452 256 61323 36490 29343 10705 200 6.2 8 5 24.1 7620 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2642400.0 20.6 7.8 44 98800 867 1409 375 272 114 202 31561 8474 23555 8972 190 4.1 10 8 24.1 1070 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +2646000.0 21.1 6.7 39 98800 781 1409 376 305 129 234 34489 10439 26602 9367 180 5.7 9 8 24.1 7620 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +2649600.0 20.0 8.9 49 98800 626 1409 381 190 52 167 21424 3627 18919 6533 170 6.7 10 9 24.1 1370 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2653200.0 19.4 8.9 51 98800 413 1409 370 137 52 122 15083 2855 13490 4165 150 3.6 10 8 24.1 3050 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2656800.0 18.9 8.9 53 98800 158 1409 376 27 9 26 3068 0 2960 933 120 4.1 10 9 24.1 2740 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2660400.0 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 18 0.0000 0 88 0.000 0.0 1.0 +2664000.0 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 18 0.0000 0 88 0.000 0.0 1.0 +2667600.0 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 18 0.0000 0 88 0.000 0.0 1.0 +2671200.0 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 18 0.0000 0 88 0.000 0.0 1.0 +2674800.0 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 19 0.0000 0 88 0.000 0.0 1.0 +2678400.0 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 21 0.0000 0 88 0.000 0.0 1.0 +2682000.0 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 11 0.0000 0 88 0.000 0.0 1.0 +2685600.0 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 12 0.0000 0 88 0.000 0.0 1.0 +2689200.0 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 13 0.0000 0 88 0.000 0.0 1.0 +2692800.0 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 15 0.0000 0 88 0.000 0.0 1.0 +2696400.0 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 16 0.0000 0 88 0.000 0.0 1.0 +2700000.0 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 17 0.0000 0 88 0.000 0.0 1.0 +2703600.0 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 18 0.0000 0 88 0.000 0.0 1.0 +2707200.0 -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 19 0.0000 0 88 0.000 0.0 1.0 +2710800.0 -0.6 -2.8 85 98200 240 1409 281 7 0 7 687 0 692 305 100 9.3 10 10 3.2 430 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2714400.0 0.0 -2.2 85 98100 487 1409 284 19 0 19 1904 0 1919 901 110 5.2 10 10 4.8 240 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2718000.0 0.0 -0.6 96 98100 685 1409 286 113 8 109 13371 507 12942 4915 100 5.2 10 10 4.8 340 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2721600.0 0.6 0.0 96 97900 821 1409 289 62 0 62 6378 0 6434 3170 120 5.2 10 10 4.8 240 9 999999999 20 0.0000 0 88 0.000 0.3 1.0 +2725200.0 1.7 0.0 89 97700 886 1409 294 143 0 143 14786 0 14920 6863 120 6.7 10 10 4.0 120 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2728800.0 3.9 0.0 76 97500 876 1409 303 182 0 182 18803 0 18972 8306 120 6.2 10 10 4.0 120 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2732400.0 6.7 4.4 86 97400 790 1409 321 358 20 347 39266 1983 38304 11606 120 7.2 10 10 6.4 180 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2736000.0 7.2 5.0 86 97300 635 1409 324 215 0 215 21748 0 21930 7683 130 7.2 10 10 6.4 180 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2739600.0 8.9 6.7 86 97200 422 1409 304 166 116 132 18202 6858 14538 4393 90 4.6 5 4 6.4 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2743200.0 9.4 7.2 86 97100 166 1409 336 13 0 13 1263 0 1272 518 110 5.7 10 10 8.0 980 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2746800.0 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 24 0.0000 0 88 0.000 0.3 1.0 +2750400.0 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 23 0.0000 0 88 0.000 0.0 1.0 +2754000.0 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 21 0.0000 0 88 0.000 0.0 1.0 +2757600.0 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 20 0.0000 0 88 0.000 2.8 1.0 +2761200.0 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 18 0.0000 0 88 0.000 2.8 1.0 +2764800.0 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 16 0.0000 0 88 0.000 3.6 1.0 +2768400.0 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 15 0.0000 0 88 0.000 2.8 1.0 +2772000.0 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 14 0.0000 0 88 0.000 0.3 1.0 +2775600.0 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 12 0.0000 0 88 0.000 0.0 1.0 +2779200.0 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 10 0.0000 0 88 0.000 0.0 1.0 +2782800.0 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 9 0.0000 0 88 0.000 0.0 1.0 +2786400.0 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 8 0.0000 0 88 0.000 0.0 1.0 +2790000.0 -0.6 -3.3 82 97600 0 0 258 0 0 0 0 0 0 0 300 7.2 5 5 19.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2793600.0 -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 6 0.0000 0 88 0.000 0.0 1.0 +2797200.0 -1.1 -5.6 72 97800 244 1408 256 123 461 44 14001 6774 5021 1609 280 8.8 6 6 40.2 730 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2800800.0 -1.1 -5.6 72 98000 491 1408 256 309 706 64 36680 34298 7615 2765 290 7.7 6 6 48.3 730 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2804400.0 0.0 -6.1 64 98000 689 1408 263 493 843 82 59737 50583 9963 3860 300 6.2 7 7 48.3 760 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2808000.0 1.1 -6.1 59 98000 826 1408 260 640 874 129 76665 60095 15511 6115 290 7.7 4 4 48.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2811600.0 1.7 -7.2 52 97900 892 1408 256 677 887 118 82494 59772 14430 5833 280 8.2 2 2 48.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2815200.0 2.8 -8.3 44 98000 881 1408 262 652 778 168 77218 57920 19984 7816 290 8.2 3 3 48.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2818800.0 2.2 -8.9 44 98000 795 1408 261 591 753 169 68993 56709 19816 7479 290 10.3 4 4 48.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2822400.0 1.7 -8.9 46 98100 640 1408 259 428 689 118 49976 45549 13829 5089 290 9.3 4 4 40.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2826000.0 0.0 -10.6 45 98200 427 1408 249 270 628 83 30926 31480 9537 3236 300 9.3 3 3 32.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2829600.0 -1.7 -11.1 49 98300 171 1408 240 78 319 41 8631 0 4550 1327 300 8.8 2 2 32.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2833200.0 -2.2 -11.1 51 98400 6 200 235 1 3 0 0 0 0 0 290 5.2 1 1 32.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2836800.0 -2.8 -10.6 55 98400 0 0 229 0 0 0 0 0 0 0 300 6.2 0 0 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2840400.0 -3.3 -11.1 55 98500 0 0 227 0 0 0 0 0 0 0 290 4.1 0 0 24.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2844000.0 -3.9 -11.1 58 98500 0 0 225 0 0 0 0 0 0 0 300 4.6 0 0 24.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2847600.0 -3.9 -11.1 58 98700 0 0 225 0 0 0 0 0 0 0 290 4.6 0 0 24.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2851200.0 -5.0 -12.8 55 98700 0 0 220 0 0 0 0 0 0 0 300 5.2 0 0 24.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2854800.0 -5.6 -13.9 52 98800 0 0 217 0 0 0 0 0 0 0 310 8.8 0 0 24.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2858400.0 -6.1 -15.0 50 98800 0 0 214 0 0 0 0 0 0 0 300 5.2 0 0 24.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2862000.0 -6.7 -15.6 50 98800 0 0 212 0 0 0 0 0 0 0 310 6.2 0 0 24.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2865600.0 -7.2 -15.6 52 98900 0 0 210 0 0 0 0 0 0 0 300 5.2 0 0 24.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2869200.0 -7.8 -15.0 57 98900 0 0 209 0 0 0 0 0 0 0 310 4.6 0 0 24.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2872800.0 -8.3 -15.0 59 98900 0 0 208 0 0 0 0 0 0 0 280 5.2 0 0 24.1 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2876400.0 -8.9 -14.4 64 98900 0 0 206 0 0 0 0 0 0 0 290 4.1 0 0 24.1 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2880000.0 -8.9 -13.9 67 99000 24 598 207 5 5 4 0 0 0 0 290 5.2 0 0 24.1 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2883600.0 -7.2 -13.9 59 99100 248 1408 212 131 605 25 13978 47604 4068 617 290 6.7 0 0 40.2 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2887200.0 -5.0 -13.9 50 99100 495 1408 219 330 844 34 35340 78799 5362 948 300 6.2 0 0 48.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2890800.0 -3.3 -14.4 42 99200 694 1408 224 512 945 48 54482 92558 7258 1299 300 5.2 0 0 48.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2894400.0 -1.7 -15.0 36 99200 831 1408 229 632 988 51 67198 98336 7535 1465 310 7.2 0 0 48.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2898000.0 -1.1 -15.0 34 99100 897 1408 231 695 1005 58 73636 100469 8423 1667 310 8.2 0 0 48.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2901600.0 0.0 -15.0 32 99000 886 1408 235 689 1005 59 72961 100384 8575 1670 290 7.7 0 0 48.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2905200.0 1.1 -15.6 28 98900 801 1408 238 613 982 59 64868 97338 8690 1561 330 7.7 0 0 48.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2908800.0 1.7 -15.6 27 98900 645 1408 240 476 932 53 50442 90362 8026 1320 290 7.2 0 0 48.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2912400.0 1.1 -16.1 27 98900 432 1408 238 286 824 37 30458 74644 5846 940 260 5.2 0 0 48.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2916000.0 -0.6 -16.1 30 98900 175 1408 232 91 534 28 10418 0 3212 1014 280 5.2 0 0 48.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2919600.0 -1.1 -16.1 31 98900 24 223 230 4 11 2 0 0 0 0 290 4.1 0 0 40.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2923200.0 -2.2 -14.4 39 99000 0 0 228 0 0 0 0 0 0 0 290 3.1 0 0 40.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2926800.0 -2.8 -14.4 41 99000 0 0 226 0 0 0 0 0 0 0 290 2.1 0 0 32.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2930400.0 -3.3 -13.9 44 99000 0 0 225 0 0 0 0 0 0 0 290 3.1 0 0 32.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2934000.0 -3.9 -13.9 46 99000 0 0 223 0 0 0 0 0 0 0 270 3.1 0 0 32.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2937600.0 -5.0 -13.3 52 99000 0 0 220 0 0 0 0 0 0 0 260 3.1 0 0 32.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2941200.0 -5.0 -13.9 50 98900 0 0 219 0 0 0 0 0 0 0 250 4.6 0 0 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2944800.0 -5.0 -13.9 50 98900 0 0 219 0 0 0 0 0 0 0 270 4.1 0 0 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2948400.0 -6.1 -13.3 57 98900 0 0 216 0 0 0 0 0 0 0 260 4.1 0 0 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2952000.0 -5.6 -13.3 55 98900 0 0 218 0 0 0 0 0 0 0 260 4.1 0 0 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2955600.0 -5.6 -13.9 52 98900 0 0 217 0 0 0 0 0 0 0 270 3.6 0 0 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2959200.0 -6.1 -13.3 57 98900 0 0 220 0 0 0 0 0 0 0 270 3.6 1 1 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2962800.0 -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 5 0.0000 0 88 0.000 0.0 1.0 +2966400.0 -5.6 -13.3 55 98900 26 622 225 5 0 5 0 0 0 0 260 4.1 2 2 32.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2970000.0 -5.6 -13.3 55 99000 252 1408 225 121 469 38 13993 6742 4403 1447 240 4.1 7 2 32.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2973600.0 0.0 -12.2 40 99000 500 1408 248 257 432 105 29430 25951 12067 4158 280 4.1 9 3 32.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2977200.0 2.2 -11.7 35 99000 699 1408 263 389 469 157 44937 34727 18214 6632 270 3.6 9 6 32.2 7620 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2980800.0 3.9 -11.1 33 98900 836 1408 261 556 687 150 65992 49879 17877 6969 270 5.7 5 2 32.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2984400.0 5.6 -10.6 31 98800 902 1408 270 649 864 98 80352 56365 12171 4968 260 5.2 7 3 32.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2988000.0 5.6 -10.6 31 98600 892 1408 274 672 886 114 82137 59703 13982 5660 290 4.1 8 5 32.2 7620 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2991600.0 6.7 -10.0 30 98500 806 1408 279 606 835 132 72260 58330 15800 6168 280 10.3 9 5 32.2 7620 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2995200.0 7.8 -9.4 29 98500 651 1408 280 465 849 77 56232 49862 9336 3575 300 7.7 5 3 32.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2998800.0 6.7 -10.0 30 98600 437 1408 275 283 728 61 33298 32496 7195 2548 320 6.2 5 3 32.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3002400.0 4.4 -10.0 35 98700 180 1408 264 90 472 32 10212 0 3639 1135 310 6.7 3 2 32.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3006000.0 2.8 -10.0 39 98700 4 246 258 0 2 0 0 0 0 0 310 3.6 2 2 32.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3009600.0 1.7 -10.0 42 98800 0 0 245 0 0 0 0 0 0 0 280 6.2 0 0 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3013200.0 0.0 -10.6 45 98800 0 0 239 0 0 0 0 0 0 0 310 5.7 0 0 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3016800.0 -0.6 -11.1 45 98800 0 0 236 0 0 0 0 0 0 0 290 4.6 0 0 24.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3020400.0 -1.1 -12.2 43 98900 0 0 234 0 0 0 0 0 0 0 320 4.1 0 0 24.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3024000.0 -1.7 -12.2 45 98900 0 0 232 0 0 0 0 0 0 0 310 3.6 0 0 24.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3027600.0 -2.2 -12.8 45 98900 0 0 229 0 0 0 0 0 0 0 310 3.1 0 0 24.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3031200.0 -3.9 -13.9 46 98900 0 0 223 0 0 0 0 0 0 0 340 4.1 0 0 24.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3034800.0 -4.4 -15.0 44 98900 0 0 220 0 0 0 0 0 0 0 320 4.1 0 0 24.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3038400.0 -5.6 -15.6 46 99000 0 0 216 0 0 0 0 0 0 0 320 3.6 0 0 24.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3042000.0 -6.1 -15.0 50 99000 0 0 214 0 0 0 0 0 0 0 360 4.1 0 0 24.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3045600.0 -6.1 -15.0 50 99000 0 0 214 0 0 0 0 0 0 0 360 4.1 0 0 24.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3049200.0 -6.7 -15.0 52 99100 0 0 213 0 0 0 0 0 0 0 340 2.6 0 0 24.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3052800.0 -6.7 -15.0 52 99100 27 645 213 6 0 6 0 0 0 0 340 3.6 0 0 24.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3056400.0 -3.9 -12.2 53 99100 256 1407 224 140 584 35 16318 7928 4087 1359 340 2.6 4 0 32.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3060000.0 -1.7 -14.4 37 99300 504 1407 230 332 863 25 35878 80959 4000 776 70 2.6 3 0 24.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3063600.0 0.0 -15.6 30 99300 704 1407 234 506 925 45 53927 90734 6818 1257 120 4.6 4 0 24.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3067200.0 1.7 -16.1 26 99200 841 1407 240 631 977 49 67147 97314 7243 1438 120 5.2 2 0 32.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3070800.0 3.3 -15.6 24 99200 907 1407 246 692 993 55 73419 99349 7996 1626 180 2.1 4 0 32.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3074400.0 5.0 -15.6 21 99000 897 1407 269 666 912 88 69673 90895 12486 2032 160 4.1 7 6 32.2 7620 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3078000.0 5.0 -15.6 21 99000 811 1407 283 409 162 316 45573 15869 35423 11425 90 3.1 10 9 32.2 7620 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3081600.0 5.0 -14.4 23 99000 656 1407 292 297 74 263 32630 6943 29059 8724 140 4.1 10 10 32.2 7620 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3085200.0 4.4 -15.0 23 98900 442 1407 289 163 34 152 17851 2400 16724 4896 130 4.1 10 10 40.2 4270 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3088800.0 4.4 -13.9 25 98900 185 1407 290 40 0 40 3916 0 3943 1349 130 3.6 10 10 40.2 4270 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3092400.0 3.3 -12.8 30 98900 6 270 287 1 0 1 0 0 0 0 100 4.6 10 10 32.2 2740 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3096000.0 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 6 0.0000 0 88 0.000 0.0 1.0 +3099600.0 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 7 0.0000 0 88 0.000 0.0 1.0 +3103200.0 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 8 0.0000 0 88 0.000 0.0 1.0 +3106800.0 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 8 0.0000 0 88 0.000 0.0 1.0 +3110400.0 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 9 0.0000 0 88 0.000 0.0 1.0 +3114000.0 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 9 0.0000 0 88 0.000 0.0 1.0 +3117600.0 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 9 0.0000 0 88 0.000 0.0 1.0 +3121200.0 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 10 0.0000 0 88 0.000 0.0 1.0 +3124800.0 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 10 0.0000 0 88 0.000 0.0 1.0 +3128400.0 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 11 0.0000 0 88 0.000 0.0 1.0 +3132000.0 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 11 0.0000 0 88 0.000 0.0 1.0 +3135600.0 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 12 0.0000 0 88 0.000 0.0 1.0 +3139200.0 0.0 -2.8 82 98900 29 668 284 1 0 1 0 0 0 0 320 1.5 10 10 3.2 760 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +3142800.0 0.0 -2.2 85 98900 261 1407 284 11 0 11 1082 0 1090 476 340 1.0 10 10 4.8 760 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +3146400.0 0.6 -1.7 85 98900 509 1407 287 36 0 36 3613 0 3642 1668 80 2.1 10 10 4.8 610 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +3150000.0 1.1 -1.7 82 98900 709 1407 290 96 0 96 9793 0 9876 4475 70 1.5 10 10 6.4 490 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +3153600.0 2.2 -1.7 76 98900 847 1407 294 160 0 160 16502 0 16649 7386 80 1.0 10 10 6.4 430 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +3157200.0 3.3 -0.6 76 98800 913 1407 300 206 0 206 21351 0 21545 9337 40 1.0 10 10 6.4 490 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +3160800.0 5.0 0.0 70 98600 903 1407 308 302 5 299 34239 450 34100 12020 180 1.5 10 10 6.4 850 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +3164400.0 6.1 1.1 71 98500 817 1407 306 465 349 264 52479 30338 29962 10395 160 2.6 9 9 9.7 850 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +3168000.0 6.7 1.7 71 98500 661 1407 318 370 459 156 42343 32541 17931 6406 160 2.6 10 10 9.7 850 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +3171600.0 6.7 1.7 71 98500 447 1407 298 218 361 105 24572 19747 11880 3933 170 3.1 9 7 11.3 700 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3175200.0 6.1 2.2 76 98400 190 1407 300 42 1 42 4672 1 4685 1410 180 3.1 9 8 11.3 1520 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3178800.0 5.0 2.2 82 98400 6 293 311 1 0 1 0 0 0 0 170 3.1 10 10 9.7 1520 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3182400.0 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 9 0.0000 0 88 0.000 0.0 1.0 +3186000.0 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 10 0.0000 0 88 0.000 0.0 1.0 +3189600.0 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 10 0.0000 0 88 0.000 0.0 1.0 +3193200.0 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 11 0.0000 0 88 0.000 0.0 1.0 +3196800.0 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 11 0.0000 0 88 0.000 0.0 1.0 +3200400.0 2.8 1.7 92 98300 0 0 274 0 0 0 0 0 0 0 130 2.6 4 4 6.4 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +3204000.0 2.2 1.1 92 98300 0 0 271 0 0 0 0 0 0 0 150 2.6 4 4 8.0 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +3207600.0 2.2 1.1 92 98300 0 0 271 0 0 0 0 0 0 0 150 1.5 4 4 8.0 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +3211200.0 1.7 0.0 89 98100 0 0 268 0 0 0 0 0 0 0 110 2.6 4 4 6.4 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +3214800.0 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 13 0.0000 0 88 0.000 0.0 1.0 +3218400.0 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 14 0.0000 0 88 0.000 0.0 1.0 +3222000.0 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 14 0.0000 0 88 0.000 0.0 1.0 +3225600.0 2.8 1.7 92 98100 31 691 300 2 0 2 0 0 0 0 70 1.5 10 10 3.2 60 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +3229200.0 2.8 2.2 96 98100 265 1406 301 20 0 20 1965 0 1979 836 60 4.1 10 10 0.2 0 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +3232800.0 3.9 3.3 96 98000 514 1406 307 85 0 85 8521 0 8589 3566 80 4.1 10 10 0.4 0 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +3236400.0 4.4 3.3 93 98000 714 1406 309 67 0 67 6827 0 6885 3260 80 4.1 10 10 2.4 60 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +3240000.0 5.6 3.9 89 98000 852 1406 315 76 0 76 7828 0 7898 3872 80 3.1 10 10 2.4 90 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +3243600.0 5.6 4.4 93 97900 918 1406 316 64 0 64 6625 0 6686 3376 50 2.1 10 10 1.3 90 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +3247200.0 5.6 5.0 96 97700 908 1406 316 69 0 69 7135 0 7200 3610 60 3.1 10 10 0.8 60 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +3250800.0 6.1 5.6 96 97700 822 1406 319 46 0 46 4723 0 4765 2396 50 3.6 10 10 1.3 90 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +3254400.0 6.7 6.1 96 97600 667 1406 323 83 0 83 8414 0 8485 3853 70 3.1 10 10 1.3 90 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +3258000.0 6.7 5.6 93 97700 452 1406 322 30 0 30 2989 0 3012 1366 120 4.1 10 10 1.3 60 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +3261600.0 6.1 5.6 96 97700 195 1406 319 6 0 6 585 0 589 255 70 2.6 10 10 0.6 60 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +3265200.0 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 16 0.0000 0 88 0.000 0.0 1.0 +3268800.0 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 16 0.0000 0 88 0.000 0.0 1.0 +3272400.0 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 15 0.0000 0 88 0.000 0.0 1.0 +3276000.0 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 15 0.0000 0 88 0.000 0.0 1.0 +3279600.0 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 15 0.0000 0 88 0.000 0.0 1.0 +3283200.0 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 15 0.0000 0 88 0.000 0.0 1.0 +3286800.0 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 15 0.0000 0 88 0.000 0.3 1.0 +3290400.0 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 14 0.0000 0 88 0.000 0.0 1.0 +3294000.0 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 14 0.0000 0 88 0.000 0.0 1.0 +3297600.0 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 14 0.0000 0 88 0.000 0.0 1.0 +3301200.0 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 14 0.0000 0 88 0.000 0.0 1.0 +3304800.0 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 13 0.0000 0 88 0.000 0.0 1.0 +3308400.0 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 13 0.0000 0 88 0.000 0.0 1.0 +3312000.0 8.9 7.8 93 97200 33 715 335 1 0 1 0 0 0 0 270 5.2 10 10 6.4 90 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +3315600.0 8.9 8.3 96 97300 270 1406 335 22 0 22 2156 0 2172 915 260 4.1 10 10 6.4 120 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +3319200.0 9.4 8.3 93 97400 518 1406 316 85 1 85 9890 50 9921 3580 290 6.2 9 7 11.3 340 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +3322800.0 8.9 5.6 80 97400 719 1406 316 293 192 195 33260 14599 22245 7874 310 7.2 10 8 24.1 6100 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +3326400.0 8.3 3.3 71 97500 857 1406 311 227 34 206 26298 2618 23984 9045 290 7.2 10 8 24.1 490 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +3330000.0 9.4 3.3 66 97500 924 1406 300 579 524 236 67065 41915 27481 10401 340 6.2 7 3 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3333600.0 11.1 0.0 47 97500 914 1406 304 588 689 143 70762 47535 17279 6950 310 8.2 4 3 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +3337200.0 10.6 -2.8 39 97500 828 1406 292 592 860 89 72905 53497 10993 4426 290 8.2 1 1 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +3340800.0 10.6 -5.6 32 97500 672 1406 283 490 885 71 51784 86494 10555 1483 300 9.3 0 0 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +3344400.0 9.4 -6.7 32 97600 457 1406 278 297 795 42 31695 73207 6581 1016 300 10.3 0 0 48.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3348000.0 7.2 -7.8 34 97700 199 1406 268 100 533 27 11605 0 3139 1020 290 10.8 0 0 48.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3351600.0 6.1 -8.3 35 97800 7 340 263 2 23 0 0 0 0 0 310 5.2 0 0 48.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3355200.0 5.0 -8.3 38 97900 0 0 259 0 0 0 0 0 0 0 300 6.2 0 0 40.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3358800.0 3.3 -8.9 41 97900 0 0 252 0 0 0 0 0 0 0 330 4.6 0 0 40.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3362400.0 1.7 -9.4 44 97900 0 0 246 0 0 0 0 0 0 0 350 4.6 0 0 40.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3366000.0 0.0 -9.4 49 98000 0 0 240 0 0 0 0 0 0 0 320 4.1 0 0 40.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3369600.0 -1.1 -10.0 51 98000 0 0 236 0 0 0 0 0 0 0 320 3.1 0 0 40.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3373200.0 -2.2 -11.1 51 98000 0 0 231 0 0 0 0 0 0 0 320 4.1 0 0 40.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3376800.0 -2.2 -11.1 51 98000 0 0 231 0 0 0 0 0 0 0 290 2.1 0 0 40.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3380400.0 -3.3 -11.7 53 98100 0 0 227 0 0 0 0 0 0 0 310 3.6 0 0 40.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3384000.0 -3.3 -11.7 53 98100 0 0 227 0 0 0 0 0 0 0 290 2.1 0 0 40.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3387600.0 -5.0 -13.3 52 98100 0 0 220 0 0 0 0 0 0 0 300 3.1 0 0 40.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3391200.0 -4.4 -12.2 55 98200 0 0 222 0 0 0 0 0 0 0 300 3.1 0 0 40.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3394800.0 -5.6 -13.3 55 98300 0 0 222 0 0 0 0 0 0 0 300 3.1 1 1 40.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3398400.0 -5.6 -12.2 60 98400 35 714 218 5 9 4 0 0 0 0 330 2.1 3 0 40.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3402000.0 0.0 -11.1 43 98400 274 1405 238 132 503 35 15482 8332 4112 1384 350 2.1 2 0 40.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3405600.0 3.3 -13.3 29 98500 523 1405 248 338 825 33 36267 77841 5196 946 30 3.1 1 0 40.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3409200.0 5.6 -15.6 20 98500 724 1405 254 508 916 38 54424 90204 5792 1136 80 2.1 1 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3412800.0 7.8 -18.3 14 98500 863 1405 259 626 950 45 66740 94767 6659 1375 330 2.1 2 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3416400.0 9.4 -17.8 13 98400 929 1405 277 611 706 146 73782 51044 17702 7123 50 2.1 8 3 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3420000.0 10.6 -16.1 14 98300 919 1405 299 615 415 345 69296 40811 39116 13235 120 2.1 10 8 40.2 7620 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +3423600.0 11.1 -14.4 15 98300 833 1405 310 300 25 285 33840 2314 32333 11044 60 1.5 10 9 40.2 7620 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +3427200.0 12.2 -13.3 16 98200 677 1405 316 231 31 216 25905 2627 24347 8085 120 2.1 10 9 32.2 7620 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +3430800.0 11.7 -12.8 17 98300 462 1405 323 126 2 125 14097 127 14042 4509 130 3.1 10 10 40.2 4270 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +3434400.0 10.6 -11.1 21 98300 204 1405 320 49 1 49 5434 11 5450 1615 130 5.7 10 10 40.2 4270 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3438000.0 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 9 0.0000 0 88 0.000 0.0 1.0 +3441600.0 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 9 0.0000 0 88 0.000 0.0 1.0 +3445200.0 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 10 0.0000 0 88 0.000 0.0 1.0 +3448800.0 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 10 0.0000 0 88 0.000 0.0 1.0 +3452400.0 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 11 0.0000 0 88 0.000 0.0 1.0 +3456000.0 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 11 0.0000 0 88 0.000 0.0 1.0 +3459600.0 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 11 0.0000 0 88 0.000 0.0 1.0 +3463200.0 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 12 0.0000 0 88 0.000 0.0 1.0 +3466800.0 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 12 0.0000 0 88 0.000 0.0 1.0 +3470400.0 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 13 0.0000 0 88 0.000 0.0 1.0 +3474000.0 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 13 0.0000 0 88 0.000 0.0 1.0 +3477600.0 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 14 0.0000 0 88 0.000 0.0 1.0 +3481200.0 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 14 0.0000 0 88 0.000 0.0 1.0 +3484800.0 5.6 0.0 68 98100 37 737 311 1 0 1 0 0 0 0 70 7.2 10 10 32.2 610 9 999999999 15 0.0000 0 88 0.000 2.5 1.0 +3488400.0 4.4 2.2 86 97900 279 1405 308 25 6 24 3016 58 2898 998 60 8.2 10 10 3.2 340 9 999999999 16 0.0000 0 88 0.000 2.5 1.0 +3492000.0 4.4 2.8 89 97900 528 1405 309 93 22 85 10868 1172 9964 3607 80 7.7 10 10 3.2 270 9 999999999 17 0.0000 0 88 0.000 2.8 1.0 +3495600.0 4.4 3.3 93 97700 729 1405 309 107 1 106 12778 62 12702 4928 60 10.3 10 10 3.2 120 9 999999999 18 0.0000 0 88 0.000 8.1 1.0 +3499200.0 5.6 4.4 93 97500 868 1405 316 161 4 159 19061 280 18906 7435 70 9.3 10 10 3.2 150 9 999999999 19 0.0000 0 88 0.000 7.6 1.0 +3502800.0 6.7 6.1 96 97600 935 1405 323 177 9 171 21040 632 20419 8147 70 5.7 10 10 3.2 1070 9 999999999 20 0.0000 0 88 0.000 6.6 1.0 +3506400.0 6.7 6.7 100 97400 925 1405 323 166 7 162 19779 482 19388 7756 80 7.7 10 10 3.2 150 9 999999999 20 0.0000 0 88 0.000 5.3 1.0 +3510000.0 6.7 6.7 100 97400 839 1405 323 191 2 191 22163 147 22270 8448 100 5.2 10 10 6.4 120 9 999999999 21 0.0000 0 88 0.000 9.1 1.0 +3513600.0 6.7 6.7 100 97300 683 1405 323 152 4 150 17492 272 17336 6331 80 7.2 10 10 1.6 60 9 999999999 22 0.0000 0 88 0.000 6.9 1.0 +3517200.0 6.7 6.7 100 97300 468 1405 323 78 1 77 9044 46 8955 3169 80 5.2 10 10 4.0 90 9 999999999 23 0.0000 0 88 0.000 2.3 1.0 +3520800.0 6.7 6.1 96 97300 209 1405 323 2 0 2 195 0 197 88 110 5.7 10 10 4.0 90 9 999999999 24 0.0000 0 88 0.000 5.6 1.0 +3524400.0 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 25 0.0000 0 88 0.000 0.0 1.0 +3528000.0 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 25 0.0000 0 88 0.000 6.6 1.0 +3531600.0 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 24 0.0000 0 88 0.000 0.0 1.0 +3535200.0 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 24 0.0000 0 88 0.000 5.3 1.0 +3538800.0 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 24 0.0000 0 88 0.000 6.6 1.0 +3542400.0 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 23 0.0000 0 88 0.000 0.0 1.0 +3546000.0 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 23 0.0000 0 88 0.000 0.0 1.0 +3549600.0 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 23 0.0000 0 88 0.000 0.0 1.0 +3553200.0 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 22 0.0000 0 88 0.000 0.0 1.0 +3556800.0 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 22 0.0000 0 88 0.000 0.0 1.0 +3560400.0 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 22 0.0000 0 88 0.000 0.8 1.0 +3564000.0 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 21 0.0000 0 88 0.000 0.2 1.0 +3567600.0 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 21 0.0000 0 88 0.000 0.0 1.0 +3571200.0 12.2 10.6 90 97400 40 761 344 2 0 2 0 0 0 0 270 5.2 9 9 24.1 670 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +3574800.0 9.4 7.8 89 97500 284 1404 337 23 0 23 2258 0 2274 963 300 10.8 10 10 19.3 210 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +3578400.0 6.7 3.3 80 97700 533 1404 320 27 0 27 2711 0 2733 1288 260 9.3 10 10 19.3 340 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +3582000.0 2.2 0.6 89 98000 735 1404 297 289 2 289 31919 186 32107 10086 300 9.8 10 10 3.2 120 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +3585600.0 -1.7 -3.9 85 98200 874 1404 276 311 0 310 32164 0 32348 12015 300 11.3 10 10 19.3 240 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +3589200.0 0.0 -5.0 69 98300 940 1404 268 278 62 237 32345 5092 27720 10538 290 9.3 9 8 40.2 580 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +3592800.0 0.0 -6.7 61 98400 930 1404 259 530 420 253 61268 35589 29406 10979 290 8.2 6 6 40.2 820 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +3596400.0 -2.2 -8.9 61 98600 844 1404 249 467 406 224 53777 33625 25926 9530 300 7.2 6 6 40.2 820 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +3600000.0 -3.3 -10.0 60 98800 688 1404 247 330 179 243 36717 15911 27184 8749 300 10.3 7 7 40.2 820 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +3603600.0 -3.3 -10.6 58 98900 473 1404 241 183 222 109 20752 13255 12406 4157 300 11.3 5 5 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +3607200.0 -5.0 -12.2 57 99200 214 1404 230 106 478 36 12109 2636 4121 1313 280 10.3 3 3 40.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3610800.0 -6.1 -13.9 55 99200 11 410 220 15 57 7 0 0 0 0 310 10.3 1 1 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3614400.0 -6.7 -13.9 57 99300 0 0 214 0 0 0 0 0 0 0 310 6.7 0 0 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3618000.0 -7.2 -14.4 57 99400 0 0 211 0 0 0 0 0 0 0 310 6.2 0 0 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3621600.0 -7.8 -15.0 57 99600 0 0 209 0 0 0 0 0 0 0 310 7.2 0 0 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3625200.0 -8.3 -16.7 51 99600 0 0 206 0 0 0 0 0 0 0 330 5.2 0 0 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3628800.0 -9.4 -17.8 51 99700 0 0 202 0 0 0 0 0 0 0 330 7.2 0 0 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3632400.0 -10.0 -17.8 53 99700 0 0 200 0 0 0 0 0 0 0 310 9.3 0 0 32.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3636000.0 -10.6 -18.3 53 99800 0 0 198 0 0 0 0 0 0 0 320 5.7 0 0 32.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3639600.0 -11.1 -18.9 53 99700 0 0 196 0 0 0 0 0 0 0 310 7.2 0 0 32.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3643200.0 -11.7 -18.9 55 99800 0 0 194 0 0 0 0 0 0 0 330 6.7 0 0 32.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3646800.0 -11.7 -18.9 55 99800 0 0 194 0 0 0 0 0 0 0 330 6.7 0 0 32.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3650400.0 -12.2 -18.9 58 99800 0 0 192 0 0 0 0 0 0 0 320 8.2 0 0 32.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3654000.0 -12.8 -18.3 63 99900 0 0 198 0 0 0 0 0 0 0 320 7.2 2 2 32.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3657600.0 -12.2 -18.3 61 100000 42 784 199 6 28 3 0 0 0 0 320 5.7 2 2 32.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3661200.0 -10.6 -17.8 56 100200 289 1404 202 143 543 33 16944 10260 3916 1334 320 5.2 6 1 40.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3664800.0 -8.3 -17.2 49 100200 539 1404 210 368 844 46 39057 79745 7107 1142 360 3.1 5 1 40.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3668400.0 -5.0 -17.2 38 100200 740 1404 220 488 776 81 59798 48304 9952 3917 70 5.2 6 1 40.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3672000.0 -2.2 -16.1 34 100300 879 1404 231 644 886 92 67264 88153 13054 2011 120 3.1 8 1 40.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3675600.0 -1.1 -15.6 33 100200 946 1404 238 716 836 156 86240 61246 18869 7588 80 3.1 9 2 40.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3679200.0 0.6 -15.0 30 100100 936 1404 245 725 967 84 75977 96689 11869 2108 70 3.6 9 2 40.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3682800.0 2.8 -15.6 25 100100 850 1404 249 661 922 107 80721 61738 13110 5264 50 5.7 8 1 40.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3686400.0 3.3 -16.1 23 100000 693 1404 253 509 897 69 53545 87566 10233 1513 40 2.6 10 2 40.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3690000.0 3.9 -16.7 21 100000 478 1404 255 287 595 87 33201 32765 10096 3526 100 6.2 9 2 40.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3693600.0 1.7 -16.7 24 100100 218 1404 249 93 354 40 10561 3245 4553 1435 50 4.6 7 3 40.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3697200.0 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 4 0.0000 0 88 0.000 0.0 1.0 +3700800.0 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 4 0.0000 0 88 0.000 0.0 1.0 +3704400.0 -1.1 -15.6 33 100200 0 0 238 0 0 0 0 0 0 0 70 4.1 3 2 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3708000.0 -1.7 -15.0 36 100200 0 0 229 0 0 0 0 0 0 0 90 6.2 0 0 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3711600.0 -2.2 -14.4 39 100200 0 0 228 0 0 0 0 0 0 0 80 6.2 0 0 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3715200.0 -2.2 -15.0 37 100200 0 0 227 0 0 0 0 0 0 0 80 6.2 0 0 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3718800.0 -3.3 -15.0 40 100200 0 0 224 0 0 0 0 0 0 0 80 6.2 0 0 32.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3722400.0 -3.3 -15.0 40 100300 0 0 224 0 0 0 0 0 0 0 70 6.2 0 0 32.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3726000.0 -3.9 -15.6 40 100300 0 0 221 0 0 0 0 0 0 0 70 6.2 0 0 32.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3729600.0 -5.0 -15.6 44 100300 0 0 218 0 0 0 0 0 0 0 60 9.3 0 0 32.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3733200.0 -5.0 -16.1 42 100200 0 0 217 0 0 0 0 0 0 0 60 7.2 0 0 32.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3736800.0 -5.6 -16.7 42 100300 0 0 215 0 0 0 0 0 0 0 60 7.2 0 0 32.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3740400.0 -5.6 -16.7 42 100300 0 0 215 0 0 0 0 0 0 0 60 7.7 1 0 32.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3744000.0 -5.6 -16.1 44 100400 45 807 215 8 87 0 772 0 0 0 60 7.7 2 0 32.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3747600.0 -3.3 -16.1 37 100400 294 1403 227 144 537 33 17088 10513 3922 1340 60 9.3 3 1 40.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3751200.0 -1.1 -16.1 31 100400 544 1403 234 348 801 40 37106 75913 6221 1072 60 8.2 7 1 40.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3754800.0 0.6 -16.1 28 100400 746 1403 240 539 864 82 66044 53908 10075 3971 60 9.3 9 1 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3758400.0 2.8 -15.0 26 100400 885 1403 249 657 908 87 68769 90460 12372 2001 110 5.7 9 1 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3762000.0 4.4 -15.6 22 100300 952 1403 260 708 777 184 84281 59642 22004 8718 100 5.2 10 3 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3765600.0 5.0 -16.1 20 100200 941 1403 264 689 636 264 79618 55439 30675 11393 70 3.6 10 4 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +3769200.0 6.7 -15.6 19 100100 855 1403 273 585 490 288 66198 45322 32778 11334 110 4.6 10 5 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +3772800.0 6.1 -15.0 21 100100 699 1403 277 446 467 215 50258 39435 24351 8243 70 4.6 10 7 40.2 4570 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +3776400.0 6.1 -13.9 23 100100 483 1403 289 113 15 108 12861 905 12337 4175 50 5.2 10 9 40.2 790 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +3780000.0 5.6 -12.8 26 100000 223 1403 296 37 0 37 3634 0 3660 1361 70 6.2 10 10 40.2 7620 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3783600.0 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 9 0.0000 0 88 0.000 0.0 1.0 +3787200.0 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 9 0.0000 0 88 0.000 0.0 1.0 +3790800.0 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 9 0.0000 0 88 0.000 0.0 1.0 +3794400.0 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 9 0.0000 0 88 0.000 0.0 1.0 +3798000.0 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 9 0.0000 0 88 0.000 0.0 1.0 +3801600.0 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 9 0.0000 0 88 0.000 0.0 1.0 +3805200.0 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 9 0.0000 0 88 0.000 0.0 1.0 +3808800.0 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 9 0.0000 0 88 0.000 0.0 1.0 +3812400.0 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 9 0.0000 0 88 0.000 0.0 1.0 +3816000.0 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 9 0.0000 0 88 0.000 0.0 1.0 +3819600.0 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 9 0.0000 0 88 0.000 0.0 1.0 +3823200.0 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 9 0.0000 0 88 0.000 0.0 1.0 +3826800.0 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 9 0.0000 0 88 0.000 0.0 1.0 +3830400.0 0.6 -9.4 48 100000 47 830 259 10 22 8 1118 0 896 257 60 5.7 8 6 24.1 1220 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3834000.0 2.2 -9.4 42 100100 299 1403 253 144 325 76 16004 11972 8476 2588 60 6.2 5 1 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3837600.0 5.6 -7.2 40 100100 549 1403 262 346 686 80 40907 38176 9485 3482 70 5.2 3 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3841200.0 7.2 -5.0 42 100100 751 1403 276 507 789 87 61824 48658 10639 4197 80 5.7 5 1 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3844800.0 10.0 -3.3 39 100000 890 1403 293 630 800 125 76407 54025 15216 6138 70 4.6 8 2 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3848400.0 10.6 -1.1 45 99900 957 1403 303 670 750 161 80477 53477 19422 7831 80 4.6 10 4 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3852000.0 12.2 0.0 43 99800 947 1403 313 616 613 204 72522 46924 24135 9444 70 6.2 10 5 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3855600.0 12.8 0.6 43 99700 861 1403 320 516 453 240 59150 37430 27659 10120 50 3.6 9 6 32.2 7620 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3859200.0 13.9 1.1 42 99600 704 1403 325 378 407 175 43233 30294 20108 7214 80 4.1 9 6 40.2 7620 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3862800.0 13.3 1.1 44 99600 488 1403 322 196 259 107 22292 14845 12215 4169 60 3.1 9 6 40.2 7620 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3866400.0 12.2 1.1 47 99600 228 1403 315 80 158 55 8862 2469 6112 1833 60 5.2 9 5 40.2 7620 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3870000.0 10.0 0.6 52 99600 14 456 297 3 8 2 0 0 0 0 70 4.1 3 2 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3873600.0 8.3 0.6 58 99600 0 0 281 0 0 0 0 0 0 0 60 2.6 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3877200.0 8.3 0.6 58 99600 0 0 281 0 0 0 0 0 0 0 60 4.6 0 0 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +3880800.0 7.2 0.6 63 99600 0 0 276 0 0 0 0 0 0 0 80 3.1 2 0 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +3884400.0 6.1 0.0 65 99600 0 0 271 0 0 0 0 0 0 0 80 4.6 2 0 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +3888000.0 5.6 0.0 68 99600 0 0 269 0 0 0 0 0 0 0 90 4.1 0 0 24.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +3891600.0 5.6 0.0 68 99600 0 0 269 0 0 0 0 0 0 0 70 4.1 0 0 24.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +3895200.0 5.0 0.6 73 99600 0 0 268 0 0 0 0 0 0 0 80 5.2 0 0 24.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +3898800.0 4.4 0.0 73 99600 0 0 265 0 0 0 0 0 0 0 100 3.6 0 0 24.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +3902400.0 3.9 0.0 76 99600 0 0 263 0 0 0 0 0 0 0 80 3.1 0 0 24.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +3906000.0 4.4 0.0 73 99600 0 0 265 0 0 0 0 0 0 0 40 5.7 0 0 24.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +3909600.0 4.4 0.0 73 99600 0 0 276 0 0 0 0 0 0 0 60 5.2 3 3 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +3913200.0 4.4 -0.6 70 99600 0 0 278 0 0 0 0 0 0 0 80 5.2 5 4 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +3916800.0 4.4 -0.6 70 99700 50 853 286 13 1 13 1401 0 1405 361 60 4.6 10 7 24.1 3050 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +3920400.0 5.0 -0.6 68 99700 304 1402 299 97 40 88 10651 1610 9700 2860 60 6.7 10 9 19.3 3050 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +3924000.0 7.8 0.6 61 99700 555 1402 306 196 0 196 19735 0 19895 6637 80 6.2 10 8 19.3 3660 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +3927600.0 9.4 1.1 56 99700 757 1402 314 336 47 311 37036 4502 34490 10715 70 5.7 9 8 19.3 3660 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +3931200.0 11.7 2.8 55 99600 896 1402 342 311 8 306 35145 720 34788 12158 90 6.2 10 10 24.1 610 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +3934800.0 12.8 3.9 55 99500 963 1402 349 422 16 411 47040 1614 46125 15022 90 7.7 10 10 32.2 3660 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +3938400.0 15.0 4.4 50 99400 953 1402 360 348 0 348 36128 0 36463 13683 90 5.7 10 10 32.2 3660 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +3942000.0 16.1 5.0 48 99300 866 1402 357 394 0 394 40613 0 40980 13385 90 6.7 10 9 32.2 3660 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +3945600.0 16.1 4.4 46 99300 709 1402 366 328 32 312 35776 3088 34242 10080 90 6.7 10 10 40.2 3660 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +3949200.0 16.1 5.0 48 99200 493 1402 357 225 235 143 24991 15253 15954 5108 90 6.2 10 9 40.2 3660 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +3952800.0 15.6 5.0 50 99200 232 1402 364 54 6 53 6004 83 5911 1805 80 6.2 10 10 40.2 3660 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +3956400.0 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 15 0.0000 0 88 0.000 0.0 1.0 +3960000.0 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 15 0.0000 0 88 0.000 0.0 1.0 +3963600.0 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 16 0.0000 0 88 0.000 0.0 1.0 +3967200.0 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 16 0.0000 0 88 0.000 0.0 1.0 +3970800.0 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 17 0.0000 0 88 0.000 0.0 1.0 +3974400.0 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 18 0.0000 0 88 0.000 0.0 1.0 +3978000.0 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 18 0.0000 0 88 0.000 0.0 1.0 +3981600.0 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 19 0.0000 0 88 0.000 0.0 1.0 +3985200.0 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 19 0.0000 0 88 0.000 0.0 1.0 +3988800.0 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 20 0.0000 0 88 0.000 0.0 1.0 +3992400.0 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 20 0.0000 0 88 0.000 0.0 1.0 +3996000.0 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 20 0.0000 0 88 0.000 0.0 1.0 +3999600.0 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 21 0.0000 0 88 0.000 0.0 1.0 +4003200.0 10.0 7.8 86 99200 53 876 331 7 0 7 672 0 677 240 70 5.2 10 9 24.1 2740 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +4006800.0 10.6 7.8 83 99200 309 1401 333 63 0 63 6197 0 6243 2307 100 6.7 10 9 24.1 2740 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +4010400.0 12.2 8.3 77 99200 560 1401 342 186 34 173 20632 2417 19283 6238 100 8.8 10 9 32.2 2740 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +4014000.0 15.0 8.9 67 99200 763 1401 356 240 1 239 26980 81 27015 9353 120 6.7 10 9 32.2 2740 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +4017600.0 15.6 8.9 65 99100 902 1401 369 387 28 369 43004 2675 41273 13518 110 6.2 10 10 32.2 2740 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +4021200.0 17.2 9.4 60 99100 969 1401 378 405 13 396 45217 1250 44512 14840 120 7.2 10 10 32.2 3050 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +4024800.0 18.3 9.4 56 99000 958 1401 365 428 41 400 47666 3980 44851 14779 110 6.2 9 8 40.2 7620 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +4028400.0 19.4 10.0 55 98900 872 1401 372 354 64 314 39636 5665 35374 12093 120 4.1 10 8 40.2 3050 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +4032000.0 20.0 8.9 49 98900 714 1401 392 304 12 298 33255 1102 32798 9977 150 7.2 10 10 32.2 3050 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4035600.0 20.6 8.9 47 98900 498 1401 384 170 31 159 18708 2077 17581 5476 160 8.2 10 9 24.1 3050 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +4039200.0 18.9 8.9 52 98900 237 1401 386 38 2 38 4342 10 4352 1418 120 5.2 10 10 24.1 3050 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4042800.0 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 5 0.0000 0 88 0.000 0.0 1.0 +4046400.0 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 7 0.0000 0 88 0.000 0.0 1.0 +4050000.0 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 9 0.0000 0 88 0.000 0.0 1.0 +4053600.0 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 10 0.0000 0 88 0.000 0.0 1.0 +4057200.0 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 12 0.0000 0 88 0.000 0.0 1.0 +4060800.0 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 14 0.0000 0 88 0.000 0.0 1.0 +4064400.0 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 16 0.0000 0 88 0.000 0.0 1.0 +4068000.0 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 18 0.0000 0 88 0.000 0.0 1.0 +4071600.0 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 20 0.0000 0 88 0.000 0.0 1.0 +4075200.0 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 22 0.0000 0 88 0.000 0.0 1.0 +4078800.0 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 23 0.0000 0 88 0.000 0.0 1.0 +4082400.0 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 25 0.0000 0 88 0.000 0.0 1.0 +4086000.0 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 27 0.0000 0 88 0.000 0.0 1.0 +4089600.0 12.8 11.7 93 98800 56 899 358 1 0 1 96 0 96 40 80 4.6 10 10 11.3 210 9 999999999 27 0.0000 0 88 0.000 0.3 1.0 +4093200.0 12.8 11.7 93 98800 315 1401 358 19 1 19 2350 9 2351 825 110 4.6 10 10 9.7 210 9 999999999 27 0.0000 0 88 0.000 0.8 1.0 +4096800.0 13.3 12.2 93 98800 566 1401 361 53 1 53 6448 43 6461 2452 110 5.2 10 10 8.0 150 9 999999999 26 0.0000 0 88 0.000 2.3 1.0 +4100400.0 13.3 12.8 96 98800 768 1401 362 63 1 62 7852 51 7745 3110 90 6.2 10 10 3.2 120 9 999999999 26 0.0000 0 88 0.000 1.0 1.0 +4104000.0 13.9 12.8 93 98800 908 1401 365 122 1 121 14785 60 14720 6012 110 4.1 10 10 8.0 120 9 999999999 26 0.0000 0 88 0.000 1.8 1.0 +4107600.0 13.9 13.3 96 98700 974 1401 366 92 1 91 11496 56 11407 4766 110 6.2 10 10 3.2 120 9 999999999 25 0.0000 0 88 0.000 1.0 1.0 +4111200.0 13.9 13.3 96 98600 964 1401 366 83 0 83 8582 0 8663 4365 110 4.1 10 10 6.4 120 9 999999999 25 0.0000 0 88 0.000 0.5 1.0 +4114800.0 14.4 13.3 93 98600 877 1401 368 78 0 78 8010 0 8083 4006 110 4.1 10 10 2.4 120 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +4118400.0 15.0 13.9 93 98500 720 1401 372 89 0 89 9020 0 9099 4217 110 5.2 10 10 8.0 120 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +4122000.0 15.6 14.4 93 98500 503 1401 376 44 1 44 5349 36 5358 2000 120 5.2 10 10 6.4 340 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +4125600.0 15.6 14.4 93 98500 242 1401 376 16 1 16 1952 0 1953 669 90 4.6 10 10 8.0 790 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +4129200.0 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 24 0.0000 0 88 0.000 0.0 1.0 +4132800.0 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 24 0.0000 0 88 0.000 0.5 1.0 +4136400.0 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 25 0.0000 0 88 0.000 0.0 1.0 +4140000.0 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 25 0.0000 0 88 0.000 1.5 1.0 +4143600.0 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 25 0.0000 0 88 0.000 1.0 1.0 +4147200.0 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 25 0.0000 0 88 0.000 2.0 1.0 +4150800.0 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 25 0.0000 0 88 0.000 0.8 1.0 +4154400.0 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 26 0.0000 0 88 0.000 0.5 1.0 +4158000.0 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 26 0.0000 0 88 0.000 0.8 1.0 +4161600.0 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 26 0.0000 0 88 0.000 0.0 1.0 +4165200.0 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 27 0.0000 0 88 0.000 0.8 1.0 +4168800.0 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 27 0.0000 0 88 0.000 0.5 1.0 +4172400.0 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 27 0.0000 0 88 0.000 1.8 1.0 +4176000.0 14.4 13.9 96 98400 60 922 369 1 0 1 96 0 96 40 90 5.2 10 10 4.0 90 9 999999999 27 0.0000 0 88 0.000 7.4 1.0 +4179600.0 14.4 13.9 96 98400 320 1400 369 45 3 44 5221 54 5116 1756 120 5.7 10 10 3.2 120 9 999999999 26 0.0000 0 88 0.000 6.6 1.0 +4183200.0 14.4 13.9 96 98400 572 1400 369 123 8 120 14045 451 13757 4908 90 3.6 10 10 6.4 180 9 999999999 26 0.0000 0 88 0.000 4.1 1.0 +4186800.0 14.4 13.9 96 98400 774 1400 369 164 9 159 19032 585 18535 7060 120 5.2 10 10 6.4 180 9 999999999 25 0.0000 0 88 0.000 2.8 1.0 +4190400.0 14.4 13.9 96 98400 913 1400 369 178 9 172 21003 593 20390 8116 110 6.7 10 10 6.4 180 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +4194000.0 15.6 13.9 90 98300 980 1400 375 107 1 106 13228 57 13150 5486 120 5.2 10 10 9.7 180 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +4197600.0 15.6 14.4 93 98200 970 1400 376 90 1 89 11250 55 11159 4664 120 4.6 10 10 4.8 90 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +4201200.0 16.1 14.4 90 98200 883 1400 378 84 1 83 10421 54 10327 4249 130 3.6 10 10 11.3 180 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +4204800.0 17.2 15.0 87 98100 725 1400 385 108 1 107 12806 56 12733 4959 120 5.2 10 10 11.3 180 9 999999999 23 0.0000 0 88 0.000 0.3 1.0 +4208400.0 17.2 15.0 87 98100 508 1400 385 39 1 39 4788 35 4795 1796 120 6.2 10 10 11.3 310 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +4212000.0 16.7 14.4 87 98100 246 1400 382 15 1 15 1843 0 1843 632 110 4.1 10 10 16.1 240 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +4215600.0 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 22 0.0000 0 88 0.000 0.0 1.0 +4219200.0 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 23 0.0000 0 88 0.000 0.0 1.0 +4222800.0 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 23 0.0000 0 88 0.000 0.0 1.0 +4226400.0 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 23 0.0000 0 88 0.000 0.0 1.0 +4230000.0 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 24 0.0000 0 88 0.000 0.0 1.0 +4233600.0 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 25 0.0000 0 88 0.000 0.0 1.0 +4237200.0 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 25 0.0000 0 88 0.000 0.0 1.0 +4240800.0 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 25 0.0000 0 88 0.000 0.8 1.0 +4244400.0 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 26 0.0000 0 88 0.000 2.0 1.0 +4248000.0 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 27 0.0000 0 88 0.000 2.3 1.0 +4251600.0 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 27 0.0000 0 88 0.000 0.0 1.0 +4255200.0 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 28 0.0000 0 88 0.000 0.0 1.0 +4258800.0 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 28 0.0000 0 88 0.000 0.0 1.0 +4262400.0 12.8 12.8 100 97900 63 945 360 1 0 1 96 0 96 40 60 3.1 10 10 2.4 90 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +4266000.0 12.8 12.2 96 98000 326 1400 359 12 1 12 1539 8 1538 537 0 0.0 10 10 4.8 90 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +4269600.0 12.8 12.2 96 98000 577 1400 359 52 1 52 6350 44 6363 2425 300 1.5 10 10 2.0 60 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +4273200.0 13.9 13.3 96 97900 780 1400 366 91 1 90 11051 55 10963 4385 300 3.1 10 10 3.2 60 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +4276800.0 15.0 13.3 90 97900 919 1400 371 82 1 81 10254 54 10159 4210 300 3.6 10 10 11.3 210 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +4280400.0 17.8 13.9 78 97800 986 1400 376 224 1 223 26190 71 26211 10320 300 3.1 10 9 12.9 340 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +4284000.0 18.3 12.8 70 97700 975 1400 369 307 44 276 35263 3470 31887 12003 280 5.2 9 8 16.1 370 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +4287600.0 19.4 12.2 63 97600 888 1400 374 513 306 320 57442 26737 36055 12406 270 4.1 9 8 19.3 7620 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +4291200.0 19.4 12.2 63 97600 730 1400 374 251 32 234 28047 2517 26291 8964 290 4.1 10 8 19.3 7620 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +4294800.0 19.4 11.7 61 97500 513 1400 382 224 137 174 24518 9458 19141 5880 270 4.1 10 9 19.3 7620 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +4298400.0 19.4 11.7 61 97500 251 1400 364 107 137 83 11511 3777 8966 2458 300 4.1 8 6 24.1 7620 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +4302000.0 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 19 0.0000 0 88 0.000 0.0 1.0 +4305600.0 15.6 9.4 67 97500 0 0 327 0 0 0 0 0 0 0 280 3.6 4 1 24.1 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +4309200.0 13.9 8.9 72 97500 0 0 312 0 0 0 0 0 0 0 260 3.1 0 0 24.1 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +4312800.0 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 18 0.0000 0 88 0.000 0.0 1.0 +4316400.0 13.9 8.3 69 97400 0 0 312 0 0 0 0 0 0 0 240 4.6 0 0 24.1 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +4320000.0 13.9 8.3 69 97400 0 0 330 0 0 0 0 0 0 0 250 5.2 5 5 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +4323600.0 12.8 8.3 75 97400 0 0 307 0 0 0 0 0 0 0 270 4.6 0 0 16.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +4327200.0 12.2 8.9 80 97300 0 0 305 0 0 0 0 0 0 0 260 5.7 0 0 16.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +4330800.0 12.2 9.4 83 97200 0 0 316 0 0 0 0 0 0 0 250 6.2 2 2 19.3 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +4334400.0 12.2 10.0 86 97200 0 0 306 0 0 0 0 0 0 0 260 6.2 0 0 19.3 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +4338000.0 12.2 10.0 86 97200 0 0 306 0 0 0 0 0 0 0 260 6.2 0 0 19.3 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +4341600.0 11.7 9.4 86 97200 0 0 303 0 0 0 0 0 0 0 290 6.2 0 0 19.3 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +4345200.0 11.1 8.3 83 97300 0 0 300 0 0 0 0 0 0 0 290 6.2 0 0 19.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +4348800.0 10.6 7.2 80 97300 67 968 297 23 139 8 2650 0 923 285 290 5.2 0 0 19.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +4352400.0 11.7 6.7 72 97400 331 1399 301 177 603 36 21015 12742 4281 1493 300 7.7 0 0 24.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +4356000.0 13.9 3.3 49 97400 583 1399 306 383 801 52 41177 77732 7956 1248 300 8.2 0 0 32.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +4359600.0 15.6 1.1 38 97400 786 1399 311 560 894 61 59915 89480 8997 1576 300 7.2 0 0 32.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +4363200.0 17.2 1.1 34 97500 925 1399 318 688 949 64 73554 96036 9209 1823 300 8.8 0 0 32.2 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +4366800.0 17.8 1.7 34 97400 992 1399 328 752 963 73 80150 97775 10311 2117 300 9.3 1 1 40.2 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +4370400.0 18.3 2.2 34 97400 981 1399 324 741 958 73 79029 97275 10332 2089 300 10.8 0 0 48.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +4374000.0 18.9 2.2 33 97400 893 1399 333 611 833 82 64931 84090 11701 1989 310 7.7 1 1 40.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +4377600.0 19.4 1.7 31 97400 735 1399 329 526 885 64 56215 88069 9487 1543 320 9.3 0 0 40.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +4381200.0 18.3 1.7 33 97400 518 1399 324 346 799 53 37041 75862 8162 1171 320 8.8 0 0 40.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +4384800.0 17.2 1.7 35 97500 256 1399 319 136 558 36 15768 6047 4182 1389 310 6.2 0 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4388400.0 14.4 1.7 42 97500 24 595 307 22 92 10 0 0 0 0 300 3.6 0 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4392000.0 12.8 2.2 49 97600 0 0 301 0 0 0 0 0 0 0 300 2.6 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4395600.0 11.7 2.2 53 97600 0 0 296 0 0 0 0 0 0 0 280 4.6 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4399200.0 10.0 2.8 61 97600 0 0 290 0 0 0 0 0 0 0 290 5.2 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4402800.0 10.6 2.2 57 97600 0 0 292 0 0 0 0 0 0 0 300 5.2 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4406400.0 10.0 2.2 59 97700 0 0 289 0 0 0 0 0 0 0 300 4.1 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4410000.0 9.4 1.7 59 97600 0 0 286 0 0 0 0 0 0 0 290 3.1 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4413600.0 7.8 1.7 66 97600 0 0 280 0 0 0 0 0 0 0 310 3.6 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4417200.0 7.8 1.7 66 97600 0 0 280 0 0 0 0 0 0 0 320 4.1 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4420800.0 6.7 1.7 71 97600 0 0 275 0 0 0 0 0 0 0 280 4.1 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4424400.0 6.7 1.7 71 97700 0 0 275 0 0 0 0 0 0 0 280 4.6 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4428000.0 5.6 1.7 76 97700 0 0 271 0 0 0 0 0 0 0 290 4.1 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4431600.0 5.6 1.7 76 97700 0 0 271 0 0 0 0 0 0 0 280 4.1 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4435200.0 5.6 1.7 76 97800 70 1014 271 27 213 4 2980 11206 695 135 300 2.6 3 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4438800.0 9.4 2.2 61 97800 337 1398 287 184 661 27 19961 57479 4370 735 320 5.2 3 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4442400.0 13.3 2.8 49 97900 589 1398 303 401 872 37 43518 84884 5757 1051 330 5.7 2 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4446000.0 16.7 1.7 37 97900 792 1398 323 575 961 35 62575 96583 5313 1102 320 5.2 1 1 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +4449600.0 18.3 0.6 30 97900 931 1398 333 698 921 88 73879 92984 12425 2141 300 4.1 2 2 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +4453200.0 20.6 -1.1 23 97800 997 1398 342 765 1005 51 82135 101960 7339 1680 290 4.6 2 2 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +4456800.0 21.7 -1.7 21 97700 986 1398 350 723 836 136 88379 56962 16690 6861 320 5.2 7 3 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +4460400.0 22.8 0.0 22 97600 899 1398 363 764 809 247 87973 67104 28595 10609 310 5.2 7 5 32.2 7620 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +4464000.0 22.2 0.0 23 97600 740 1398 363 468 589 158 54361 42305 18432 6877 300 5.2 8 6 32.2 7620 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +4467600.0 21.7 -1.7 21 97600 522 1398 358 237 380 96 27438 21650 11151 3965 320 6.2 9 6 32.2 7620 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +4471200.0 20.0 -0.6 25 97600 260 1398 361 72 20 68 7948 542 7532 2246 320 4.1 9 8 32.2 7620 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +4474800.0 18.3 -0.6 28 97600 26 618 361 4 1 4 0 0 0 0 320 4.1 10 9 40.2 7620 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +4478400.0 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 8 0.0000 0 88 0.000 0.0 1.0 +4482000.0 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 8 0.0000 0 88 0.000 0.0 1.0 +4485600.0 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 9 0.0000 0 88 0.000 0.0 1.0 +4489200.0 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 9 0.0000 0 88 0.000 0.0 1.0 +4492800.0 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 10 0.0000 0 88 0.000 0.0 1.0 +4496400.0 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 10 0.0000 0 88 0.000 0.0 1.0 +4500000.0 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 11 0.0000 0 88 0.000 0.0 1.0 +4503600.0 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 12 0.0000 0 88 0.000 0.0 1.0 +4507200.0 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 12 0.0000 0 88 0.000 0.0 1.0 +4510800.0 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 13 0.0000 0 88 0.000 0.0 1.0 +4514400.0 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 13 0.0000 0 88 0.000 0.0 1.0 +4518000.0 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 14 0.0000 0 88 0.000 0.0 1.0 +4521600.0 10.6 1.1 52 97600 74 1037 319 24 13 23 2569 0 2470 620 90 3.6 10 8 40.2 3050 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +4525200.0 11.7 0.0 45 97600 343 1398 330 83 31 76 9342 1217 8582 2765 90 4.6 10 9 40.2 1830 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +4528800.0 12.8 0.0 42 97600 595 1398 335 134 2 133 15348 133 15295 5411 100 5.2 10 9 40.2 1830 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +4532400.0 13.9 0.6 40 97600 797 1398 341 284 16 275 31871 1425 31038 10518 110 5.2 10 9 40.2 3050 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +4536000.0 17.2 1.1 34 97500 937 1398 357 558 214 415 61973 22118 46405 14760 110 4.1 9 9 40.2 3050 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +4539600.0 18.9 2.2 33 97400 1003 1398 367 589 278 391 66407 27069 44376 15178 150 4.1 9 9 32.2 3050 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +4543200.0 20.6 4.4 35 97300 992 1398 371 345 9 339 39252 816 38811 13883 180 3.1 10 8 24.1 3050 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +4546800.0 20.0 6.1 41 97200 904 1398 388 118 2 117 14380 127 14310 5833 230 2.6 10 10 19.3 1220 9 999999999 22 0.0000 0 88 0.000 1.8 1.0 +4550400.0 14.4 12.8 90 97300 746 1398 368 45 2 44 5731 95 5612 2238 290 2.1 10 10 6.4 880 9 999999999 23 0.0000 0 88 0.000 1.5 1.0 +4554000.0 15.0 13.3 90 97200 527 1398 371 35 2 34 4364 72 4244 1598 120 6.2 10 10 6.4 850 9 999999999 24 0.0000 0 88 0.000 0.5 1.0 +4557600.0 13.9 13.3 96 97100 265 1398 366 24 6 23 2876 4 2759 949 130 6.2 10 10 8.0 1160 9 999999999 25 0.0000 0 88 0.000 0.5 1.0 +4561200.0 13.9 13.3 96 97100 27 641 366 1 1 1 0 0 0 0 130 5.2 10 10 8.0 910 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +4564800.0 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 25 0.0000 0 88 0.000 0.5 1.0 +4568400.0 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 23 0.0000 0 88 0.000 0.0 1.0 +4572000.0 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 22 0.0000 0 88 0.000 0.0 1.0 +4575600.0 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 20 0.0000 0 88 0.000 0.0 1.0 +4579200.0 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 19 0.0000 0 88 0.000 0.0 1.0 +4582800.0 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 17 0.0000 0 88 0.000 0.0 1.0 +4586400.0 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 15 0.0000 0 88 0.000 0.0 1.0 +4590000.0 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 14 0.0000 0 88 0.000 0.0 1.0 +4593600.0 6.7 3.3 80 97300 0 0 286 0 0 0 0 0 0 0 260 4.6 2 2 32.2 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +4597200.0 6.1 2.8 79 97300 0 0 274 0 0 0 0 0 0 0 250 5.2 0 0 32.2 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +4600800.0 5.6 2.2 79 97300 0 0 271 0 0 0 0 0 0 0 230 4.6 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4604400.0 5.0 2.2 82 97400 0 0 274 0 0 0 0 0 0 0 230 5.2 1 1 32.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +4608000.0 5.0 2.2 82 97400 78 1059 269 26 159 9 3021 0 1047 326 220 4.1 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +4611600.0 6.1 2.2 76 97400 349 1397 273 197 681 30 21320 59692 4827 784 240 6.2 0 0 48.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +4615200.0 8.3 1.1 61 97400 601 1397 281 405 843 46 43589 82026 7065 1199 240 7.7 0 0 48.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +4618800.0 10.6 -0.6 46 97400 803 1397 289 579 909 60 61866 91006 8830 1586 240 8.2 0 0 48.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +4622400.0 12.2 -0.6 42 97300 943 1397 308 688 900 84 72824 90852 11863 2138 220 8.2 3 3 48.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +4626000.0 13.3 -1.7 36 97300 1009 1397 319 621 523 245 72816 42340 28882 11215 220 10.3 8 6 48.3 1520 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4629600.0 13.9 -3.3 30 97100 997 1397 320 673 561 274 78119 47719 31984 12102 240 10.3 9 6 48.3 1830 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4633200.0 15.0 -3.9 27 97000 909 1397 319 456 256 290 51981 22885 33250 11905 240 9.3 8 4 48.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4636800.0 16.1 -3.3 26 97000 751 1397 325 475 525 195 54408 41260 22444 8098 240 12.9 5 4 56.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4640400.0 15.6 -5.0 24 97000 532 1397 320 330 567 116 37745 35528 13318 4625 250 8.2 4 4 56.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4644000.0 14.4 -7.8 21 97100 269 1397 309 111 296 56 12513 7260 6331 1999 270 9.3 3 3 56.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4647600.0 13.3 -7.2 23 97100 29 664 298 13 20 11 0 0 0 0 270 6.7 1 1 56.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4651200.0 11.7 -7.2 26 97200 0 0 286 0 0 0 0 0 0 0 270 7.2 0 0 56.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4654800.0 8.9 -6.7 33 97300 0 0 276 0 0 0 0 0 0 0 270 5.2 0 0 56.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4658400.0 8.9 -7.2 32 97300 0 0 275 0 0 0 0 0 0 0 270 5.2 0 0 48.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +4662000.0 7.8 -6.7 36 97400 0 0 271 0 0 0 0 0 0 0 270 5.2 0 0 48.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +4665600.0 6.7 -6.1 40 97400 0 0 268 0 0 0 0 0 0 0 260 4.1 0 0 48.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +4669200.0 6.1 -6.7 40 97400 0 0 265 0 0 0 0 0 0 0 250 4.1 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +4672800.0 5.6 -6.7 41 97400 0 0 263 0 0 0 0 0 0 0 250 4.1 0 0 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +4676400.0 5.0 -6.1 45 97300 0 0 261 0 0 0 0 0 0 0 260 4.1 0 0 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +4680000.0 5.0 -5.6 47 97300 0 0 262 0 0 0 0 0 0 0 270 4.1 0 0 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +4683600.0 3.9 -5.0 53 97400 0 0 258 0 0 0 0 0 0 0 270 4.1 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4687200.0 3.9 -5.0 53 97500 0 0 258 0 0 0 0 0 0 0 270 4.6 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4690800.0 2.8 -5.0 57 97500 0 0 254 0 0 0 0 0 0 0 260 4.1 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4694400.0 4.4 -5.0 51 97600 83 1082 260 32 254 3 3554 14106 530 112 270 4.6 0 0 48.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4698000.0 7.2 -4.4 44 97700 355 1396 271 218 738 34 23352 64429 5430 830 280 7.2 0 0 48.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4701600.0 9.4 -3.9 39 97700 607 1396 280 423 888 41 45452 86177 6325 1130 280 7.2 0 0 48.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4705200.0 11.7 -3.9 34 97800 809 1396 290 599 955 49 64183 95504 7280 1413 290 9.3 0 0 48.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4708800.0 13.3 -5.6 27 97800 948 1396 294 727 994 56 77526 100213 8077 1715 290 7.7 0 0 48.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4712400.0 15.0 -6.1 23 97800 1015 1396 301 789 1009 59 83977 101970 8389 1903 300 9.3 0 0 48.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4716000.0 15.6 -5.0 24 97700 1003 1396 305 775 993 64 82358 100341 9078 1984 290 8.2 0 0 48.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4719600.0 16.7 -3.9 24 97700 915 1396 311 701 977 64 74557 98360 9216 1808 290 8.8 0 0 48.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4723200.0 16.1 -3.9 25 97800 756 1396 308 560 936 56 59744 92989 8327 1476 290 7.2 0 0 48.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4726800.0 16.1 -3.9 25 97800 537 1396 308 369 844 47 39431 80301 7261 1152 310 5.7 0 0 48.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4730400.0 15.0 -4.4 26 97900 274 1396 303 152 627 31 16243 51009 4992 691 280 5.2 0 0 48.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4734000.0 12.8 -4.4 30 98000 31 663 294 23 82 13 0 0 0 0 300 5.2 0 0 48.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4737600.0 11.1 -4.4 34 98000 0 0 287 0 0 0 0 0 0 0 290 4.6 0 0 48.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4741200.0 8.9 -4.4 39 98000 0 0 278 0 0 0 0 0 0 0 270 3.1 0 0 48.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4744800.0 7.2 -4.4 44 98100 0 0 271 0 0 0 0 0 0 0 280 3.6 0 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4748400.0 6.7 -3.9 47 98100 0 0 270 0 0 0 0 0 0 0 300 3.1 0 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4752000.0 7.2 -4.4 44 98100 0 0 271 0 0 0 0 0 0 0 290 3.6 0 0 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4755600.0 6.7 -4.4 45 98100 0 0 269 0 0 0 0 0 0 0 270 2.1 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4759200.0 4.4 -4.4 53 98100 0 0 261 0 0 0 0 0 0 0 290 2.6 0 0 40.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +4762800.0 6.1 -4.4 47 98100 0 0 267 0 0 0 0 0 0 0 270 3.6 0 0 40.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +4766400.0 3.9 -4.4 55 98100 0 0 259 0 0 0 0 0 0 0 0 0.0 3 0 40.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +4770000.0 3.3 -3.9 60 98100 0 0 257 0 0 0 0 0 0 0 300 3.1 3 0 40.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +4773600.0 2.2 -3.9 64 98200 0 0 258 0 0 0 0 0 0 0 270 2.6 5 1 32.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +4777200.0 1.7 -4.4 64 98200 0 0 255 0 0 0 0 0 0 0 290 2.6 7 1 40.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +4780800.0 3.3 -3.9 60 98200 87 1105 262 27 136 12 3103 0 1381 426 270 2.6 7 1 48.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +4784400.0 7.2 -3.3 47 98300 361 1396 281 212 687 38 22663 60229 6033 865 310 2.1 7 2 48.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +4788000.0 11.1 -3.3 37 98300 613 1396 297 416 811 63 44166 78607 9497 1362 320 4.1 5 2 48.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4791600.0 15.0 -2.8 29 98300 815 1396 315 575 882 63 61219 88207 9226 1643 300 4.1 4 2 48.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4795200.0 17.8 -2.8 25 98300 954 1396 330 720 968 62 76731 97779 8885 1845 360 5.2 4 3 48.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4798800.0 18.9 -2.8 23 98200 1020 1396 343 752 865 122 93163 57561 15170 6305 310 5.2 8 6 48.3 9140 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4802400.0 20.0 -3.3 21 98100 1009 1396 358 643 587 221 76037 46072 26267 10366 320 4.1 9 8 48.3 9140 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4806000.0 21.7 -3.3 19 98100 920 1396 374 535 351 305 60844 31908 34893 12390 320 5.2 10 9 48.3 9140 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4809600.0 20.6 -3.9 19 98000 761 1396 378 398 245 265 44563 21965 29839 9953 300 4.1 10 10 48.3 9140 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4813200.0 20.0 -3.3 21 98000 542 1396 348 215 150 157 24042 10749 17636 5760 320 4.1 8 6 48.3 7620 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +4816800.0 18.3 -2.8 24 98000 278 1396 335 80 80 64 8942 2259 7177 2230 300 3.1 6 4 48.3 7620 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +4820400.0 17.2 -3.3 25 98000 33 686 319 11 69 3 0 0 0 0 270 2.6 3 1 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +4824000.0 13.9 -2.2 33 98000 0 0 301 0 0 0 0 0 0 0 270 3.1 2 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +4827600.0 12.8 -1.1 39 98100 0 0 297 0 0 0 0 0 0 0 280 3.6 2 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +4831200.0 12.2 -1.1 40 98100 0 0 295 0 0 0 0 0 0 0 290 3.6 2 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +4834800.0 10.6 -0.6 46 98100 0 0 289 0 0 0 0 0 0 0 300 4.1 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +4838400.0 11.1 -0.6 45 98100 0 0 291 0 0 0 0 0 0 0 290 4.1 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +4842000.0 10.0 0.0 50 98100 0 0 287 0 0 0 0 0 0 0 280 4.6 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +4845600.0 8.9 0.0 54 98100 0 0 282 0 0 0 0 0 0 0 280 4.1 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +4849200.0 9.4 0.0 52 98100 0 0 284 0 0 0 0 0 0 0 290 4.6 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +4852800.0 8.3 0.0 56 98100 0 0 280 0 0 0 0 0 0 0 290 3.1 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4856400.0 7.2 0.0 60 98100 0 0 276 0 0 0 0 0 0 0 300 3.1 0 0 19.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4860000.0 8.3 0.0 56 98100 0 0 280 0 0 0 0 0 0 0 310 3.6 0 0 19.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4863600.0 8.3 0.0 56 98200 0 0 280 0 0 0 0 0 0 0 310 4.1 0 0 19.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4867200.0 10.0 0.6 52 98300 92 1128 287 31 174 13 3553 0 1492 461 310 4.1 0 0 19.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4870800.0 13.3 0.6 42 98300 367 1395 301 190 577 41 22611 17211 4888 1720 300 5.7 0 0 19.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4874400.0 16.1 1.1 36 98300 619 1395 314 395 757 62 48219 39893 7585 2908 300 5.7 0 0 19.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4878000.0 20.6 1.7 29 98300 821 1395 334 564 842 71 60134 84563 10326 1745 310 5.7 0 0 19.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4881600.0 22.8 2.2 26 98300 960 1395 345 689 897 75 73424 90986 10631 2075 340 6.2 0 0 19.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4885200.0 23.9 2.8 25 98200 1026 1395 351 748 901 89 79371 91620 12352 2476 300 6.7 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4888800.0 24.4 2.2 23 98100 1014 1395 352 739 890 95 78202 90348 13162 2500 320 5.2 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4892400.0 25.0 1.7 22 98100 925 1395 355 653 844 96 69031 85233 13498 2185 290 4.1 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4896000.0 24.4 1.1 22 98100 766 1395 351 517 788 87 63147 47519 10657 4232 300 5.7 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4899600.0 23.9 1.1 22 98100 546 1395 349 339 697 68 40506 35525 8145 3028 320 4.1 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4903200.0 22.8 1.1 24 98100 283 1395 344 135 429 50 15406 9355 5720 1871 340 3.1 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4906800.0 20.0 1.7 30 98100 35 709 332 8 48 2 0 0 0 0 340 2.6 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4910400.0 20.0 1.7 30 98200 0 0 332 0 0 0 0 0 0 0 320 2.1 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4914000.0 16.7 2.8 40 98200 0 0 318 0 0 0 0 0 0 0 290 3.1 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4917600.0 16.1 2.8 41 98200 0 0 315 0 0 0 0 0 0 0 300 3.1 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4921200.0 15.0 2.8 44 98200 0 0 311 0 0 0 0 0 0 0 300 2.1 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4924800.0 13.9 2.8 47 98300 0 0 306 0 0 0 0 0 0 0 10 1.5 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4928400.0 13.3 2.8 49 98300 0 0 303 0 0 0 0 0 0 0 320 2.6 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4932000.0 12.8 2.8 51 98300 0 0 301 0 0 0 0 0 0 0 320 2.6 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +4935600.0 12.2 3.3 55 98300 0 0 299 0 0 0 0 0 0 0 90 2.1 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +4939200.0 11.1 1.7 53 98300 0 0 293 0 0 0 0 0 0 0 70 2.6 0 0 32.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +4942800.0 11.7 -0.6 43 98400 0 0 293 0 0 0 0 0 0 0 80 2.1 0 0 19.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +4946400.0 10.0 -1.7 44 98400 0 0 285 0 0 0 0 0 0 0 70 3.1 0 0 19.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +4950000.0 8.9 -2.2 46 98500 0 0 280 0 0 0 0 0 0 0 70 3.6 0 0 16.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +4953600.0 9.4 -2.2 44 98600 96 1174 282 36 190 15 4102 0 1712 524 90 3.6 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +4957200.0 11.1 -3.3 37 98700 373 1394 288 206 619 43 24490 19964 5121 1802 90 5.2 1 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +4960800.0 12.8 -3.9 31 98700 625 1394 294 414 797 60 44003 77463 9052 1364 80 4.1 3 0 32.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +4964400.0 15.0 -4.4 26 98700 827 1394 303 592 868 80 62499 86647 11537 1832 100 3.6 6 0 32.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +4968000.0 17.2 -4.4 23 98700 966 1394 318 658 730 155 79486 52005 18803 7628 100 3.6 10 1 32.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +4971600.0 19.4 -3.9 20 98600 1032 1394 339 718 651 238 84728 52212 28234 11092 130 3.1 10 4 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4975200.0 20.6 -2.8 21 98500 1019 1394 346 589 398 299 68135 34759 34792 13026 310 2.1 10 4 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4978800.0 21.1 -1.7 22 98400 930 1394 352 475 171 361 53366 16654 40818 13768 0 0.0 10 5 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4982400.0 22.8 0.0 22 98400 770 1394 363 475 483 209 54271 38481 23999 8642 0 0.0 10 5 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4986000.0 22.2 1.1 25 98300 551 1394 358 348 549 133 39486 35872 15153 5206 100 2.1 10 4 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4989600.0 21.7 1.1 26 98300 287 1394 339 139 466 44 16050 9307 5092 1698 170 3.1 3 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4993200.0 20.0 1.1 29 98300 37 732 331 9 63 2 0 0 0 0 130 3.1 0 0 19.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +4996800.0 18.9 1.7 32 98400 0 0 327 0 0 0 0 0 0 0 130 3.6 0 0 19.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +5000400.0 17.8 1.7 34 98400 0 0 322 0 0 0 0 0 0 0 150 4.1 0 0 19.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +5004000.0 15.6 1.1 38 98400 0 0 311 0 0 0 0 0 0 0 180 3.6 0 0 19.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +5007600.0 14.4 1.1 41 98400 0 0 306 0 0 0 0 0 0 0 180 4.6 0 0 19.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +5011200.0 14.4 1.1 41 98400 0 0 306 0 0 0 0 0 0 0 180 4.1 0 0 19.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +5014800.0 14.4 1.1 41 98400 0 0 306 0 0 0 0 0 0 0 190 4.1 0 0 19.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +5018400.0 12.8 0.6 43 98400 0 0 299 0 0 0 0 0 0 0 190 4.1 0 0 19.3 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +5022000.0 12.8 0.6 43 98300 0 0 299 0 0 0 0 0 0 0 200 4.1 0 0 19.3 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +5025600.0 11.1 0.6 49 98300 0 0 292 0 0 0 0 0 0 0 220 3.6 0 0 19.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +5029200.0 10.6 0.6 50 98300 0 0 290 0 0 0 0 0 0 0 220 4.6 0 0 16.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +5032800.0 10.6 0.0 48 98300 0 0 289 0 0 0 0 0 0 0 210 4.1 0 0 16.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +5036400.0 11.7 0.0 45 98300 0 0 306 0 0 0 0 0 0 0 210 4.6 6 3 16.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +5040000.0 11.7 0.0 45 98300 101 1196 311 26 5 25 2853 0 2751 773 210 4.1 7 5 11.3 7620 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +5043600.0 12.8 1.7 47 98300 379 1394 325 124 82 102 13767 4117 11369 3552 220 6.2 9 7 11.3 7620 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +5047200.0 16.7 2.2 38 98300 631 1394 328 365 477 151 41673 33235 17315 6131 220 6.2 5 2 8.0 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +5050800.0 20.6 4.4 35 98300 833 1394 344 547 663 153 64654 45889 18161 7098 200 4.6 4 1 8.0 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +5054400.0 22.2 3.9 30 98200 972 1394 365 519 173 399 58127 17092 44988 15001 240 9.3 8 5 9.7 3660 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +5058000.0 23.3 3.9 28 98100 1037 1394 361 614 477 261 71854 38356 30714 11925 260 8.2 7 2 11.3 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +5061600.0 25.0 4.4 27 98000 1025 1394 383 568 350 312 65409 30249 36147 13450 260 8.8 9 6 11.3 2740 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +5065200.0 25.0 4.4 27 97900 935 1394 383 411 59 372 46020 5699 41925 14050 240 10.8 8 6 12.9 2740 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +5068800.0 23.3 3.3 27 97800 775 1394 369 534 528 242 60291 44140 27471 9565 240 7.2 8 5 12.9 7620 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +5072400.0 23.9 3.9 27 97700 555 1394 373 309 480 119 35382 29488 13678 4821 210 8.2 7 5 12.9 7620 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +5076000.0 22.8 3.3 28 97800 291 1394 374 75 34 68 8369 1011 7612 2377 230 6.2 8 7 11.3 2440 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +5079600.0 21.7 3.9 31 97800 39 755 362 7 6 6 0 0 0 0 230 6.7 6 5 11.3 6100 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +5083200.0 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 23 0.0000 0 88 0.000 0.0 1.0 +5086800.0 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 23 0.0000 0 88 0.000 0.0 1.0 +5090400.0 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 23 0.0000 0 88 0.000 0.0 1.0 +5094000.0 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 24 0.0000 0 88 0.000 0.0 1.0 +5097600.0 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 25 0.0000 0 88 0.000 0.0 1.0 +5101200.0 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 11 0.0000 0 88 0.000 0.0 1.0 +5104800.0 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 12 0.0000 0 88 0.000 0.0 1.0 +5108400.0 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 13 0.0000 0 88 0.000 0.0 1.0 +5112000.0 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 14 0.0000 0 88 0.000 0.0 1.0 +5115600.0 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 15 0.0000 0 88 0.000 0.0 1.0 +5119200.0 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 15 0.0000 0 88 0.000 0.0 1.0 +5122800.0 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 16 0.0000 0 88 0.000 0.0 1.0 +5126400.0 8.9 6.1 83 98300 106 1219 333 19 1 19 2138 0 2142 649 150 3.6 10 10 9.7 180 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +5130000.0 8.9 6.7 86 98300 385 1393 334 95 0 95 9411 0 9483 3419 120 5.2 10 10 8.0 180 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +5133600.0 8.9 6.7 86 98100 637 1393 334 199 8 196 22237 611 22012 7354 100 5.2 10 10 8.0 210 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +5137200.0 9.4 7.2 86 98200 840 1393 336 138 6 135 16469 392 16175 6420 170 4.1 10 10 8.0 210 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +5140800.0 10.0 7.8 86 98200 978 1393 340 166 9 160 19970 608 19333 7874 180 3.1 10 10 8.0 240 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +5144400.0 10.0 7.2 83 98100 1043 1393 339 238 4 235 28071 303 27865 11040 170 4.1 10 10 4.8 240 9 999999999 19 0.0000 0 88 0.000 0.5 1.0 +5148000.0 10.6 8.3 86 97900 1030 1393 343 348 3 346 39716 265 39739 14429 130 3.1 10 10 6.4 370 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +5151600.0 11.1 8.3 83 97900 941 1393 346 322 3 320 36471 264 36468 12970 160 4.1 10 10 8.0 490 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +5155200.0 11.7 8.3 80 97800 780 1393 349 164 1 163 19090 69 19058 7244 170 3.1 10 10 8.0 400 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +5158800.0 11.7 8.3 80 97800 560 1393 349 170 0 170 17073 0 17214 6192 130 3.6 10 10 8.0 310 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +5162400.0 11.7 8.3 80 97700 296 1393 349 88 1 88 9607 36 9645 2820 130 4.1 10 10 8.0 240 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +5166000.0 11.1 9.4 90 97700 42 778 347 10 0 10 0 0 0 0 130 3.6 10 10 4.0 180 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +5169600.0 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 21 0.0000 0 88 0.000 0.0 1.0 +5173200.0 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 20 0.0000 0 88 0.000 0.0 1.0 +5176800.0 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 20 0.0000 0 88 0.000 0.0 1.0 +5180400.0 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 19 0.0000 0 88 0.000 0.0 1.0 +5184000.0 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 19 0.0000 0 88 0.000 0.0 1.0 +5187600.0 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 19 0.0000 0 88 0.000 0.0 1.0 +5191200.0 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 18 0.0000 0 88 0.000 0.0 1.0 +5194800.0 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 18 0.0000 0 88 0.000 0.0 1.0 +5198400.0 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 17 0.0000 0 88 0.000 0.0 1.0 +5202000.0 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 17 0.0000 0 88 0.000 0.0 1.0 +5205600.0 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 16 0.0000 0 88 0.000 0.0 1.0 +5209200.0 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 16 0.0000 0 88 0.000 0.0 1.0 +5212800.0 9.4 6.7 83 98000 112 1241 327 23 15 22 2568 0 2462 736 340 4.6 10 9 6.4 270 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +5216400.0 10.0 7.2 83 98100 391 1392 323 121 42 110 13372 2151 12206 3795 350 5.2 8 8 12.9 310 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +5220000.0 11.7 7.8 77 98100 643 1392 312 410 599 136 47224 38694 15729 5730 320 4.1 3 2 16.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +5223600.0 13.3 7.2 67 98100 846 1392 314 576 789 99 70447 47549 12147 4920 330 2.6 3 1 19.3 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +5227200.0 15.0 7.8 62 98100 984 1392 338 577 381 309 66000 32621 35559 13058 340 2.6 8 6 24.1 7620 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +5230800.0 16.1 6.1 52 98100 1049 1392 345 579 362 308 66946 30622 35827 13502 350 4.1 8 7 32.2 3050 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +5234400.0 16.7 6.1 50 98000 1036 1392 348 634 533 239 74639 41019 28288 11154 360 4.1 7 7 32.2 1070 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +5238000.0 16.7 6.7 52 98000 946 1392 372 332 44 302 37841 3799 34628 12558 320 6.2 10 10 32.2 1070 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +5241600.0 16.7 6.7 52 98000 785 1392 362 289 1 288 32187 89 32266 10697 300 7.2 9 9 32.2 1370 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +5245200.0 15.6 5.6 52 98000 565 1392 365 123 2 122 14077 123 14017 4953 360 5.7 10 10 24.1 910 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +5248800.0 15.0 5.0 52 98000 300 1392 332 119 165 84 13081 6018 9269 2768 290 5.2 5 5 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +5252400.0 13.9 5.0 55 98100 44 777 324 25 36 21 0 0 0 0 310 3.1 4 4 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +5256000.0 12.8 5.0 60 98100 0 0 304 0 0 0 0 0 0 0 340 2.1 0 0 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +5259600.0 11.7 5.0 64 98200 0 0 299 0 0 0 0 0 0 0 320 3.1 2 0 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +5263200.0 10.6 5.0 69 98200 0 0 294 0 0 0 0 0 0 0 300 3.1 2 0 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +5266800.0 9.4 5.0 74 98200 0 0 289 0 0 0 0 0 0 0 310 2.1 0 0 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +5270400.0 8.3 5.0 80 98200 0 0 294 0 0 0 0 0 0 0 300 3.1 5 2 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +5274000.0 8.3 3.9 74 98200 0 0 289 0 0 0 0 0 0 0 0 0.0 4 1 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +5277600.0 7.2 4.4 83 98200 0 0 280 0 0 0 0 0 0 0 0 0.0 0 0 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +5281200.0 6.7 4.4 86 98200 0 0 278 0 0 0 0 0 0 0 0 0.0 0 0 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +5284800.0 6.7 3.9 83 98200 0 0 277 0 0 0 0 0 0 0 0 0.0 0 0 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +5288400.0 7.2 3.9 80 98200 0 0 279 0 0 0 0 0 0 0 70 1.5 0 0 16.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +5292000.0 7.2 3.3 77 98300 0 0 279 0 0 0 0 0 0 0 90 3.6 0 0 16.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +5295600.0 6.1 2.8 80 98300 0 0 274 0 0 0 0 0 0 0 100 2.6 2 0 16.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +5299200.0 7.2 2.2 71 98400 117 1287 287 52 213 29 5711 0 3194 907 90 3.6 4 2 19.3 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +5302800.0 10.0 2.2 59 98500 398 1392 295 223 582 60 25974 22446 7006 2442 100 5.7 3 1 19.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +5306400.0 12.2 1.7 49 98500 650 1392 310 382 632 90 45599 37109 10776 4108 80 6.7 7 3 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +5310000.0 13.9 2.8 47 98600 852 1392 336 378 171 274 42825 14829 31220 11023 90 4.6 10 8 24.1 3660 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +5313600.0 16.1 4.4 46 98500 990 1392 331 743 794 182 88792 56889 21851 8811 100 5.2 6 3 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +5317200.0 17.8 5.6 45 98400 1054 1392 340 703 592 256 82564 46627 30233 11845 150 5.2 7 3 32.2 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +5320800.0 18.3 6.1 45 98400 1041 1392 340 736 778 156 89597 52378 19073 7879 100 5.2 7 2 32.2 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +5324400.0 19.4 5.6 40 98200 951 1392 348 649 691 179 77179 49212 21385 8552 130 6.2 6 3 32.2 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +5328000.0 20.0 5.6 39 98100 790 1392 351 510 665 135 60419 43993 16057 6261 100 5.2 8 3 32.2 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +5331600.0 19.4 6.1 42 98100 569 1392 348 339 548 116 38985 33006 13390 4786 170 5.7 9 3 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +5335200.0 18.9 5.6 42 98200 304 1392 342 150 448 53 17143 10968 6073 2012 160 7.7 5 2 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +5338800.0 17.8 6.1 47 98200 46 800 333 32 125 17 3322 0 1772 360 140 4.6 1 1 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +5342400.0 16.7 6.1 50 98200 0 0 322 0 0 0 0 0 0 0 110 5.2 0 0 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +5346000.0 15.6 6.1 54 98200 0 0 317 0 0 0 0 0 0 0 130 4.1 0 0 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +5349600.0 14.4 6.1 58 98300 0 0 312 0 0 0 0 0 0 0 120 4.6 2 0 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +5353200.0 13.9 5.6 58 98200 0 0 315 0 0 0 0 0 0 0 130 5.2 7 1 24.1 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +5356800.0 12.8 5.6 62 98200 0 0 310 0 0 0 0 0 0 0 120 4.6 8 1 24.1 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +5360400.0 12.8 6.1 64 98200 0 0 315 0 0 0 0 0 0 0 140 4.6 9 2 24.1 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +5364000.0 11.7 6.7 72 98200 0 0 311 0 0 0 0 0 0 0 130 4.1 9 2 24.1 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +5367600.0 10.6 7.2 80 98100 0 0 302 0 0 0 0 0 0 0 130 4.6 5 1 24.1 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +5371200.0 10.6 7.2 80 98100 0 0 302 0 0 0 0 0 0 0 120 4.6 4 1 24.1 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +5374800.0 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 18 0.0000 0 88 0.000 0.0 1.0 +5378400.0 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 18 0.0000 0 88 0.000 0.0 1.0 +5382000.0 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 18 0.0000 0 88 0.000 0.0 1.0 +5385600.0 11.1 9.4 90 98200 123 1310 347 23 1 23 2578 0 2584 785 120 5.7 10 10 0.8 60 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +5389200.0 12.2 10.6 90 98200 404 1391 354 90 9 88 10148 392 9958 3317 150 4.6 10 10 0.8 90 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +5392800.0 12.8 10.6 87 98200 656 1391 357 241 10 237 26563 816 26268 8377 150 5.2 10 10 2.4 120 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +5396400.0 13.9 11.1 84 98200 858 1391 363 281 3 279 31706 250 31665 11205 130 5.2 10 10 3.2 240 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +5400000.0 15.6 11.7 78 98200 996 1391 373 356 6 352 40291 529 40096 14279 130 5.2 10 10 8.0 490 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +5403600.0 18.3 12.2 68 98100 1060 1391 363 387 136 283 44989 10610 33093 12790 160 5.2 7 7 11.3 700 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +5407200.0 21.7 12.2 55 98000 1046 1391 376 797 744 240 93674 54619 28362 11243 180 6.2 6 6 24.1 850 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +5410800.0 23.3 12.2 50 97900 956 1391 378 594 577 199 69896 40383 23533 9336 190 6.7 4 4 24.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +5414400.0 23.9 11.1 45 97900 795 1391 382 474 484 199 54374 35258 22942 8507 200 6.7 5 5 24.1 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +5418000.0 24.4 11.1 43 97900 574 1391 393 253 142 195 27850 10522 21577 6823 200 5.2 7 7 24.1 1220 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +5421600.0 23.3 11.1 46 97900 309 1391 387 139 261 81 15327 8601 8965 2749 220 5.2 7 7 24.1 1220 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +5425200.0 21.7 11.1 51 97900 48 823 362 19 40 15 1999 0 1584 367 200 6.2 2 2 24.1 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +5428800.0 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 23 0.0000 0 88 0.000 0.0 1.0 +5432400.0 20.0 11.7 59 97900 0 0 343 0 0 0 0 0 0 0 180 5.2 0 0 24.1 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +5436000.0 19.4 12.2 63 97900 0 0 341 0 0 0 0 0 0 0 210 5.2 0 0 24.1 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +5439600.0 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 25 0.0000 0 88 0.000 0.0 1.0 +5443200.0 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 25 0.0000 0 88 0.000 0.0 1.0 +5446800.0 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 25 0.0000 0 88 0.000 2.3 1.0 +5450400.0 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 26 0.0000 0 88 0.000 0.3 1.0 +5454000.0 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 26 0.0000 0 88 0.000 0.5 1.0 +5457600.0 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 27 0.0000 0 88 0.000 0.8 1.0 +5461200.0 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 27 0.0000 0 88 0.000 0.5 1.0 +5464800.0 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 28 0.0000 0 88 0.000 0.0 1.0 +5468400.0 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 28 0.0000 0 88 0.000 0.0 1.0 +5472000.0 10.6 6.7 77 98300 129 1332 332 46 20 44 4911 0 4715 1196 310 3.6 10 9 48.3 850 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +5475600.0 10.6 7.2 80 98300 410 1390 333 121 47 108 13465 2428 12066 3854 320 3.1 9 9 48.3 1370 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +5479200.0 11.7 7.2 74 98400 662 1390 338 236 59 208 26374 4607 23365 7834 310 6.2 9 9 48.3 1370 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +5482800.0 13.3 6.1 62 98500 864 1390 323 514 405 264 58464 33888 30198 10870 310 6.2 8 4 40.2 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +5486400.0 15.6 5.6 52 98500 1001 1390 327 538 491 186 64278 35093 22328 9015 300 6.7 7 2 40.2 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +5490000.0 16.1 5.0 48 98500 1065 1390 328 704 653 206 84247 47782 24775 10029 300 7.2 8 2 40.2 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +5493600.0 17.2 3.3 40 98400 1052 1390 327 764 800 161 93027 55149 19690 8123 310 6.2 8 1 40.2 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +5497200.0 17.8 2.2 36 98400 961 1390 328 693 770 163 83237 54232 19664 7951 320 6.7 9 1 40.2 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +5500800.0 17.8 -1.1 28 98400 799 1390 329 542 673 157 63701 48309 18531 7120 330 6.7 10 2 40.2 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +5504400.0 17.2 -2.2 27 98400 578 1390 325 365 547 139 41562 37230 15893 5521 310 6.7 10 2 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +5508000.0 16.1 -2.8 28 98500 313 1390 319 160 370 78 17819 14039 8717 2701 310 5.2 8 2 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +5511600.0 14.4 -3.9 28 98500 51 846 311 31 55 24 3165 0 2461 390 340 7.2 7 2 40.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +5515200.0 12.8 -3.3 33 98600 0 0 300 0 0 0 0 0 0 0 320 5.2 7 1 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +5518800.0 11.7 -3.3 35 98700 0 0 303 0 0 0 0 0 0 0 320 3.1 7 3 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +5522400.0 10.6 -4.4 35 98700 0 0 297 0 0 0 0 0 0 0 320 6.2 7 3 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +5526000.0 9.4 -3.9 39 98700 0 0 290 0 0 0 0 0 0 0 340 6.2 7 2 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +5529600.0 8.9 -5.0 37 98700 0 0 283 0 0 0 0 0 0 0 320 7.2 3 1 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +5533200.0 7.8 -4.4 42 98700 0 0 274 0 0 0 0 0 0 0 320 6.7 1 0 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +5536800.0 6.7 -4.4 45 98700 0 0 269 0 0 0 0 0 0 0 330 6.2 0 0 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +5540400.0 6.1 -4.4 47 98700 0 0 267 0 0 0 0 0 0 0 330 6.2 0 0 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +5544000.0 5.0 -3.3 55 98700 0 0 264 0 0 0 0 0 0 0 320 5.7 0 0 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +5547600.0 4.4 -3.9 55 98700 0 0 261 0 0 0 0 0 0 0 320 6.2 0 0 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +5551200.0 3.3 -3.9 60 98800 0 0 257 0 0 0 0 0 0 0 330 5.2 1 0 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +5554800.0 2.8 -4.4 59 98900 0 0 255 0 0 0 0 0 0 0 330 2.6 1 0 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +5558400.0 2.8 -3.9 62 98900 134 1355 255 45 82 36 4924 0 3951 1105 340 4.1 1 0 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +5562000.0 4.4 -3.9 55 99100 416 1389 261 217 441 87 24704 21939 9937 3336 350 5.2 0 0 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +5565600.0 7.2 -3.3 47 99200 668 1389 272 433 640 128 50541 43094 14998 5569 20 2.1 0 0 32.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +5569200.0 10.6 -3.3 38 99200 870 1389 286 618 739 158 73474 53271 18865 7435 100 5.2 0 0 32.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +5572800.0 12.2 -3.9 33 99100 1007 1389 292 748 791 177 90024 58029 21399 8673 100 2.6 0 0 32.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +5576400.0 14.4 -3.9 28 99100 1071 1389 301 809 814 185 97924 59847 22498 9193 180 1.5 0 0 32.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +5580000.0 16.1 -3.3 26 99000 1057 1389 309 800 813 183 96713 59619 22226 9071 100 1.5 0 0 32.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +5583600.0 17.2 -3.3 25 98900 966 1389 313 712 781 172 85353 57065 20711 8334 70 4.1 0 0 32.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +5587200.0 18.3 -2.8 24 98900 804 1389 319 561 715 149 66285 50772 17678 6847 30 2.1 0 0 32.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +5590800.0 17.8 -3.9 23 98900 582 1389 315 360 588 115 41674 37406 13361 4809 90 3.1 0 0 40.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +5594400.0 17.8 -2.8 25 98900 317 1389 317 146 337 71 16409 12046 8005 2549 140 3.1 0 0 40.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +5598000.0 16.1 -2.8 28 99000 53 868 309 23 19 20 2399 0 2094 431 120 4.1 0 0 32.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +5601600.0 15.6 -2.8 29 99100 0 0 307 0 0 0 0 0 0 0 110 5.7 3 0 32.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +5605200.0 14.4 -3.3 29 99100 0 0 301 0 0 0 0 0 0 0 100 6.2 3 0 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +5608800.0 12.8 -2.8 34 99200 0 0 295 0 0 0 0 0 0 0 100 5.2 0 0 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +5612400.0 11.1 -1.7 41 99200 0 0 290 0 0 0 0 0 0 0 100 5.2 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +5616000.0 10.6 -2.2 41 99300 0 0 287 0 0 0 0 0 0 0 80 6.2 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +5619600.0 9.4 -2.2 44 99300 0 0 282 0 0 0 0 0 0 0 100 5.7 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +5623200.0 8.3 -2.2 48 99400 0 0 278 0 0 0 0 0 0 0 100 5.7 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +5626800.0 7.8 -2.8 48 99400 0 0 275 0 0 0 0 0 0 0 90 6.7 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +5630400.0 6.7 -2.8 51 99400 0 0 271 0 0 0 0 0 0 0 90 6.2 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +5634000.0 6.1 -2.2 56 99400 0 0 269 0 0 0 0 0 0 0 90 6.7 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +5637600.0 5.6 -2.8 55 99500 0 0 267 0 0 0 0 0 0 0 80 7.2 0 0 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +5641200.0 5.0 -2.2 60 99500 0 12 265 0 0 0 0 0 0 0 90 6.2 0 0 12.9 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +5644800.0 5.0 -2.2 60 99600 141 1389 265 66 418 20 7604 0 2308 730 90 7.2 0 0 12.9 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +5648400.0 6.1 -1.1 60 99600 423 1389 270 267 767 37 28708 70037 5855 936 90 8.8 0 0 16.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +5652000.0 8.3 -1.1 52 99700 674 1389 279 481 891 53 51490 87768 7996 1358 110 8.2 0 0 16.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +5655600.0 10.0 -1.1 46 99700 876 1389 286 659 949 64 70270 95551 9271 1752 100 8.8 0 0 19.3 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +5659200.0 12.2 -1.7 38 99600 1013 1389 330 370 92 303 42729 8059 35199 13126 90 6.7 10 9 19.3 910 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +5662800.0 12.8 -1.7 37 99500 1076 1389 321 628 448 282 73620 37479 33249 12853 90 7.2 8 7 19.3 910 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +5666400.0 14.4 -0.6 36 99400 1062 1389 329 510 238 328 58942 21145 38141 14201 90 6.7 8 7 19.3 1010 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +5670000.0 15.6 1.1 38 99300 970 1389 342 535 400 257 62151 32899 30020 11432 90 5.7 9 8 19.3 1010 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +5673600.0 15.6 1.1 38 99200 808 1389 333 484 490 200 55875 37941 23202 8628 140 5.2 7 6 19.3 4270 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +5677200.0 16.7 2.2 38 99200 587 1389 328 361 596 111 41883 36473 12925 4694 110 5.2 5 2 19.3 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +5680800.0 16.1 2.8 41 99200 321 1389 337 130 217 80 14467 8219 8934 2785 120 5.2 10 6 19.3 7620 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +5684400.0 15.0 2.8 44 99200 55 891 329 31 37 27 3159 0 2764 438 90 4.6 10 5 19.3 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +5688000.0 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 15 0.0000 0 88 0.000 0.0 1.0 +5691600.0 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 16 0.0000 0 88 0.000 0.0 1.0 +5695200.0 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 16 0.0000 0 88 0.000 0.0 1.0 +5698800.0 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 17 0.0000 0 88 0.000 0.0 1.0 +5702400.0 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 17 0.0000 0 88 0.000 0.0 1.0 +5706000.0 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 18 0.0000 0 88 0.000 0.0 1.0 +5709600.0 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 18 0.0000 0 88 0.000 0.0 1.0 +5713200.0 10.6 1.1 52 99100 0 0 305 0 0 0 0 0 0 0 130 3.1 9 4 19.3 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +5716800.0 9.4 2.2 61 99000 0 0 299 0 0 0 0 0 0 0 90 2.1 10 3 19.3 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +5720400.0 9.4 1.1 56 99000 0 0 291 0 0 0 0 0 0 0 70 2.6 6 1 19.3 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +5724000.0 8.3 1.7 63 99100 0 0 287 0 0 0 0 0 0 0 90 2.1 6 1 19.3 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +5727600.0 8.3 0.6 58 99100 0 35 281 0 0 0 0 0 0 0 100 2.6 5 0 16.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +5731200.0 8.3 1.7 63 99100 147 1388 287 55 186 35 6072 0 3875 1128 100 2.6 8 1 11.3 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +5734800.0 10.6 4.4 66 99100 429 1388 299 236 560 66 27496 23647 7710 2717 80 1.5 5 1 8.0 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +5738400.0 15.0 8.3 65 99100 681 1388 317 461 804 70 56290 42681 8569 3351 220 5.2 1 0 11.3 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +5742000.0 18.3 10.0 59 99000 882 1388 333 642 879 87 69043 89752 12407 2016 230 4.1 1 0 12.9 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +5745600.0 21.1 10.6 51 99000 1019 1388 354 720 864 89 77498 88969 12383 2467 240 5.7 2 1 12.9 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +5749200.0 22.2 10.6 48 98900 1082 1388 359 758 795 142 93299 50072 17551 7343 260 5.2 2 1 12.9 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +5752800.0 22.8 10.6 46 98700 1067 1388 362 751 841 107 80392 86630 14600 2916 260 5.7 2 1 16.1 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +5756400.0 24.4 11.1 43 98700 975 1388 379 644 716 142 78066 45436 17285 7114 260 5.7 3 3 16.1 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +5760000.0 23.9 10.0 42 98600 813 1388 375 546 710 132 64942 45051 15762 6227 270 6.2 5 3 24.1 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +5763600.0 23.9 10.0 42 98600 591 1388 375 355 567 115 40980 33190 13325 4843 280 6.7 4 3 24.1 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +5767200.0 22.8 10.0 45 98600 325 1388 370 151 287 84 16707 10442 9328 2895 250 6.2 7 3 24.1 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +5770800.0 21.7 9.4 46 98700 58 891 369 29 27 25 2982 0 2582 484 280 5.2 8 5 24.1 7620 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +5774400.0 20.0 10.0 53 98700 0 0 356 0 0 0 0 0 0 0 280 3.6 7 3 24.1 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +5778000.0 18.9 10.0 57 98700 0 0 350 0 0 0 0 0 0 0 280 3.6 7 3 24.1 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +5781600.0 18.3 10.0 59 98700 0 0 348 0 0 0 0 0 0 0 270 4.1 7 3 24.1 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +5785200.0 17.8 11.1 65 98700 0 0 343 0 0 0 0 0 0 0 270 5.2 6 2 24.1 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +5788800.0 17.2 11.7 70 98700 0 0 350 0 0 0 0 0 0 0 280 6.7 10 5 24.1 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +5792400.0 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 25 0.0000 0 88 0.000 0.0 1.0 +5796000.0 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 26 0.0000 0 88 0.000 0.0 1.0 +5799600.0 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 26 0.0000 0 88 0.000 0.0 1.0 +5803200.0 16.1 12.8 81 98500 0 0 343 0 0 0 0 0 0 0 270 4.6 10 4 24.1 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +5806800.0 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 27 0.0000 0 88 0.000 0.0 1.0 +5810400.0 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 28 0.0000 0 88 0.000 0.0 1.0 +5814000.0 13.9 12.2 90 98600 0 58 335 0 0 0 0 0 0 0 270 3.6 5 5 11.3 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +5817600.0 15.6 12.8 84 98600 153 1387 374 27 6 27 3041 0 3048 950 240 2.6 10 10 11.3 1520 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +5821200.0 16.7 13.3 81 98700 436 1387 380 141 15 136 15449 854 14969 4609 280 3.6 10 10 8.0 1680 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +5824800.0 19.4 13.9 70 98700 687 1387 370 405 297 259 44505 24489 28627 9115 290 4.6 9 7 9.7 1680 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +5828400.0 21.1 13.9 64 98700 888 1387 375 555 507 232 63784 37554 26807 10121 270 4.6 8 6 11.3 1830 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +5832000.0 20.6 13.9 66 98700 1024 1387 383 393 116 308 45110 9330 35571 13361 280 5.2 10 8 11.3 7620 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +5835600.0 21.7 13.9 61 98700 1087 1387 408 358 55 315 41403 4377 36656 13978 310 4.1 10 10 11.3 1520 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +5839200.0 21.7 13.9 61 98600 1072 1387 388 471 190 325 54218 15406 37647 14189 330 5.2 10 8 11.3 7620 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +5842800.0 21.7 13.3 59 98500 980 1387 407 410 7 405 45738 657 45492 15271 100 6.7 10 10 11.3 3050 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +5846400.0 20.6 13.3 63 98500 817 1387 372 516 504 220 58891 37331 25241 9303 330 6.2 7 6 12.9 3050 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +5850000.0 19.4 12.2 63 98500 595 1387 364 315 357 163 35344 23859 18375 6277 330 8.2 8 6 24.1 3050 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +5853600.0 17.8 11.1 65 98600 329 1387 346 145 281 78 16154 9531 8720 2772 310 7.2 6 3 24.1 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +5857200.0 17.2 10.0 63 98600 60 913 342 34 46 29 3466 0 2970 500 350 5.2 7 3 24.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +5860800.0 15.6 8.3 62 98700 0 0 330 0 0 0 0 0 0 0 340 3.6 5 2 24.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +5864400.0 15.0 8.3 65 98700 0 0 327 0 0 0 0 0 0 0 330 3.1 4 2 24.1 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +5868000.0 13.9 6.7 62 98800 0 0 316 0 0 0 0 0 0 0 320 2.1 4 1 24.1 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +5871600.0 13.3 4.4 55 98800 0 0 311 0 0 0 0 0 0 0 350 3.1 4 1 24.1 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +5875200.0 12.2 2.8 53 98800 0 0 304 0 0 0 0 0 0 0 350 4.1 2 1 24.1 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +5878800.0 11.1 0.0 47 98700 0 0 297 0 0 0 0 0 0 0 350 3.1 2 1 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +5882400.0 10.6 -1.1 45 98700 0 0 298 0 0 0 0 0 0 0 340 4.1 6 2 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +5886000.0 9.4 -1.1 48 98700 0 0 289 0 0 0 0 0 0 0 340 5.7 3 1 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +5889600.0 8.9 -1.7 48 98700 0 0 293 0 0 0 0 0 0 0 340 4.1 3 3 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +5893200.0 8.9 -2.8 44 98700 0 0 289 0 0 0 0 0 0 0 230 4.1 6 2 19.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +5896800.0 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 12 0.0000 0 88 0.000 0.0 1.0 +5900400.0 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 11 0.0000 0 88 0.000 0.0 1.0 +5904000.0 9.4 -4.4 38 98800 159 1386 307 63 30 60 6708 325 6414 1566 50 2.1 10 8 40.2 7620 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +5907600.0 10.6 -3.3 38 98900 442 1386 301 207 292 116 23179 17263 13041 4215 80 2.1 7 4 40.2 7620 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +5911200.0 12.2 -3.3 34 98900 693 1386 305 475 690 134 55515 47333 15723 5879 70 2.6 10 3 40.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +5914800.0 15.0 -4.4 26 98900 894 1386 316 470 453 179 55580 33953 21264 8334 140 4.6 7 3 40.2 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +5918400.0 15.6 -3.9 26 98900 1030 1386 319 753 769 184 90685 56819 22262 9039 70 1.5 6 3 40.2 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +5922000.0 16.7 -3.9 24 98800 1092 1386 321 765 749 177 93216 54194 21667 8913 340 3.1 5 2 40.2 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +5925600.0 18.3 -6.1 19 98700 1077 1386 325 789 874 112 82373 88173 15157 3037 360 1.0 2 2 40.2 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +5929200.0 19.4 -5.0 19 98500 985 1386 332 707 859 99 74161 86502 13724 2443 330 3.1 2 2 40.2 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +5932800.0 20.0 -5.0 18 98500 822 1386 334 587 795 118 70868 53220 14297 5688 340 4.1 2 2 40.2 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +5936400.0 20.6 -5.6 17 98400 599 1386 348 215 175 140 24603 12136 16087 5665 50 3.6 6 6 40.2 3660 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +5940000.0 20.6 -4.4 18 98400 333 1386 354 140 69 123 15122 3896 13346 3627 340 1.5 8 7 40.2 3660 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +5943600.0 18.9 -3.3 22 98400 63 936 331 37 119 23 3889 0 2426 534 200 3.6 3 2 40.2 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +5947200.0 19.4 -3.3 21 98400 0 0 323 0 0 0 0 0 0 0 170 4.6 1 0 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +5950800.0 17.8 -3.3 24 98400 0 0 316 0 0 0 0 0 0 0 160 3.1 1 0 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +5954400.0 16.7 -2.8 27 98400 0 0 312 0 0 0 0 0 0 0 180 4.1 1 0 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +5958000.0 15.6 -2.8 29 98400 0 0 307 0 0 0 0 0 0 0 160 2.6 1 0 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +5961600.0 13.9 -1.7 34 98400 0 0 301 0 0 0 0 0 0 0 150 2.6 1 0 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +5965200.0 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 16 0.0000 0 88 0.000 0.0 1.0 +5968800.0 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 17 0.0000 0 88 0.000 0.0 1.0 +5972400.0 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 17 0.0000 0 88 0.000 0.0 1.0 +5976000.0 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 17 0.0000 0 88 0.000 0.0 1.0 +5979600.0 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 17 0.0000 0 88 0.000 0.0 1.0 +5983200.0 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 17 0.0000 0 88 0.000 0.0 1.0 +5986800.0 11.1 0.0 47 98300 6 127 306 1 0 1 0 0 0 0 160 2.6 9 4 19.3 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +5990400.0 11.7 1.7 51 98300 166 1386 325 48 27 45 5248 0 4936 1396 160 3.1 10 8 16.1 7620 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +5994000.0 12.8 4.4 57 98300 448 1386 340 110 11 106 12402 598 11996 3994 160 5.2 10 9 16.1 3050 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +5997600.0 15.6 7.2 58 98300 699 1386 344 414 346 241 46063 28801 26962 8902 170 7.7 9 7 16.1 3050 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +6001200.0 18.3 8.3 52 98300 900 1386 358 479 270 305 54143 23522 34684 12259 200 5.2 8 7 16.1 3050 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +6004800.0 21.7 8.9 44 98200 1035 1386 366 729 676 227 86119 50088 26958 10736 200 4.1 8 4 16.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +6008400.0 23.3 8.9 40 98100 1098 1386 371 837 815 194 100966 56619 23517 9643 180 8.2 7 3 24.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +6012000.0 25.0 10.6 40 97900 1082 1386 381 664 612 188 80046 41631 22774 9355 210 8.8 7 3 24.1 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +6015600.0 26.1 10.6 38 97800 989 1386 390 613 612 178 73230 41613 21364 8666 210 8.2 5 4 19.3 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +6019200.0 26.1 10.0 36 97700 826 1386 386 535 586 188 62053 41905 21911 8342 220 11.8 7 3 11.3 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +6022800.0 25.6 10.6 39 97700 603 1386 391 285 247 178 31839 17509 19983 6710 210 6.2 10 5 12.9 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +6026400.0 24.4 8.9 37 97600 337 1386 385 171 324 92 18866 13271 10189 3132 210 6.7 10 6 12.9 7620 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +6030000.0 23.3 9.4 41 97600 65 958 374 33 60 27 3419 0 2810 571 220 7.2 9 4 12.9 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +6033600.0 22.2 10.0 46 97600 0 0 367 0 0 0 0 0 0 0 220 5.2 7 3 16.1 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +6037200.0 21.7 11.1 51 97600 0 0 365 0 0 0 0 0 0 0 210 6.2 7 3 16.1 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +6040800.0 20.6 11.7 57 97700 0 0 361 0 0 0 0 0 0 0 210 5.7 7 3 11.3 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +6044400.0 19.4 12.8 66 97700 0 0 356 0 0 0 0 0 0 0 210 6.2 6 3 11.3 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +6048000.0 18.9 12.2 65 97700 0 0 353 0 0 0 0 0 0 0 220 6.2 6 3 11.3 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +6051600.0 18.3 12.8 70 97700 0 0 347 0 0 0 0 0 0 0 240 6.7 6 2 11.3 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +6055200.0 17.8 12.8 73 97600 0 0 348 0 0 0 0 0 0 0 230 6.2 8 3 11.3 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +6058800.0 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 14 0.0000 0 88 0.000 0.0 1.0 +6062400.0 16.7 13.3 81 97500 0 0 340 0 0 0 0 0 0 0 240 7.2 8 2 11.3 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +6066000.0 16.7 13.3 81 97500 0 0 340 0 0 0 0 0 0 0 230 8.8 8 2 11.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +6069600.0 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 9 0.0000 0 88 0.000 0.0 1.0 +6073200.0 17.2 13.9 81 97600 6 150 384 1 0 1 0 0 0 0 270 6.2 10 10 11.3 370 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +6076800.0 17.2 13.9 81 97600 172 1385 384 33 2 33 3693 0 3702 1149 270 6.2 10 10 11.3 370 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +6080400.0 18.3 14.4 78 97700 455 1385 390 166 16 161 18012 1012 17556 5203 270 7.2 10 10 12.9 550 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +6084000.0 15.0 13.3 90 97800 705 1385 371 126 1 126 14737 60 14795 5642 330 8.8 10 10 8.0 370 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +6087600.0 16.1 7.2 56 97800 905 1385 359 432 176 318 48742 15699 36100 12632 330 6.7 9 9 32.2 850 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +6091200.0 17.8 3.3 38 97900 1041 1385 340 723 621 259 84804 49803 30548 11909 310 8.2 9 4 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +6094800.0 17.8 3.9 40 97900 1103 1385 341 793 636 289 93031 52126 34103 13230 320 8.2 10 4 40.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +6098400.0 17.8 1.7 34 97900 1087 1385 338 734 557 298 85767 46843 35027 13449 330 7.7 10 4 40.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +6102000.0 17.2 -2.2 27 97900 994 1385 331 697 720 182 83563 53036 21921 8844 330 8.2 10 4 40.2 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +6105600.0 17.2 -3.3 25 97800 830 1385 324 593 693 180 69386 52295 21158 8091 340 7.7 10 2 40.2 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +6109200.0 16.7 -2.8 27 97900 607 1385 322 291 353 136 33420 24022 15682 5587 300 7.2 8 2 40.2 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +6112800.0 16.1 -3.3 26 98000 341 1385 319 182 446 73 20577 17480 8279 2690 330 6.2 8 2 32.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +6116400.0 14.4 -2.2 32 98000 68 958 313 31 80 22 3300 0 2350 566 320 5.7 7 2 24.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +6120000.0 13.3 -3.3 32 98100 0 0 303 0 0 0 0 0 0 0 330 5.2 6 1 24.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +6123600.0 12.2 -3.3 34 98100 0 0 298 0 0 0 0 0 0 0 340 4.1 5 1 24.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +6127200.0 11.7 -3.3 35 98100 0 0 296 0 0 0 0 0 0 0 340 4.1 3 1 24.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +6130800.0 10.6 -3.3 38 98100 0 0 286 0 0 0 0 0 0 0 340 4.6 0 0 24.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +6134400.0 10.0 -3.3 39 98100 0 0 283 0 0 0 0 0 0 0 330 4.1 0 0 24.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +6138000.0 8.9 -3.3 42 98100 0 0 279 0 0 0 0 0 0 0 330 2.6 0 0 24.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +6141600.0 8.3 -3.3 44 98100 0 0 277 0 0 0 0 0 0 0 320 2.1 0 0 24.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +6145200.0 7.8 -3.3 46 98000 0 0 275 0 0 0 0 0 0 0 320 1.5 0 0 24.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +6148800.0 7.2 -2.8 49 98000 0 0 273 0 0 0 0 0 0 0 360 1.5 0 0 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +6152400.0 6.7 -2.8 51 98000 0 0 271 0 0 0 0 0 0 0 360 1.5 0 0 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +6156000.0 6.7 -2.2 54 98000 0 0 272 0 0 0 0 0 0 0 300 1.5 0 0 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +6159600.0 5.6 -2.2 58 98100 18 173 267 3 7 1 0 0 0 0 330 1.5 0 0 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +6163200.0 7.8 -1.7 52 98200 178 1384 276 80 432 27 9192 0 3108 993 320 1.5 0 0 40.2 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +6166800.0 11.1 -2.2 40 98200 461 1384 289 287 733 47 30652 67994 7319 1065 70 2.1 0 0 40.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +6170400.0 13.3 -2.8 33 98200 712 1384 297 504 863 64 53589 85296 9503 1520 160 3.6 0 0 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +6174000.0 16.1 -2.8 28 98200 911 1384 309 679 920 77 71894 92618 10967 2002 180 2.6 0 0 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +6177600.0 18.3 -2.8 24 98200 1047 1384 319 804 954 85 84879 96592 11757 2532 230 2.6 0 0 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +6181200.0 20.6 -0.6 24 98100 1108 1384 332 856 962 89 90431 97747 12142 2907 290 4.1 0 0 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +6184800.0 22.2 1.7 26 98000 1092 1384 342 842 959 88 89230 97642 12055 2798 270 3.6 0 0 32.2 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +6188400.0 23.9 3.9 27 98000 998 1384 359 712 880 79 75940 89614 11080 2264 280 3.1 1 1 32.2 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +6192000.0 24.4 6.1 31 97900 834 1384 364 580 838 76 62129 84770 10987 1830 240 3.6 1 1 32.2 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +6195600.0 24.4 8.3 36 97900 611 1384 360 414 809 58 44775 79726 8795 1339 260 2.1 0 0 32.2 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +6199200.0 23.9 9.4 40 97900 345 1384 366 189 588 44 22178 14590 5174 1802 250 5.7 1 1 32.2 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +6202800.0 22.8 9.4 43 97900 71 980 375 39 50 33 4006 0 3405 629 260 3.1 5 5 24.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +6206400.0 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 21 0.0000 0 88 0.000 0.0 1.0 +6210000.0 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 21 0.0000 0 88 0.000 0.0 1.0 +6213600.0 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 21 0.0000 0 88 0.000 0.0 1.0 +6217200.0 18.9 10.6 59 98000 0 0 357 0 0 0 0 0 0 0 250 3.6 5 5 24.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +6220800.0 17.8 10.0 61 98000 0 0 342 0 0 0 0 0 0 0 300 2.6 3 2 24.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +6224400.0 16.7 9.4 63 97900 0 0 325 0 0 0 0 0 0 0 230 4.1 0 0 24.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +6228000.0 15.6 9.4 67 97900 0 0 320 0 0 0 0 0 0 0 230 3.6 0 0 24.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +6231600.0 15.0 9.4 70 97800 0 0 318 0 0 0 0 0 0 0 250 4.1 0 0 24.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +6235200.0 14.4 10.0 75 97800 0 0 316 0 0 0 0 0 0 0 270 3.6 0 0 24.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +6238800.0 13.3 9.4 78 97800 0 0 310 0 0 0 0 0 0 0 270 3.6 0 0 16.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +6242400.0 13.3 9.4 78 97800 0 0 310 0 0 0 0 0 0 0 280 3.6 0 0 16.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +6246000.0 14.4 10.6 78 97800 18 219 322 3 8 1 0 0 0 0 250 4.6 3 1 12.9 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +6249600.0 14.4 10.6 78 97900 185 1383 330 63 179 40 7002 0 4458 1356 310 5.7 6 3 12.9 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +6253200.0 16.1 11.7 75 98000 467 1383 347 226 322 118 25296 17548 13262 4402 310 4.1 7 6 12.9 1220 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +6256800.0 17.8 12.2 70 98000 718 1383 356 521 707 158 60044 46770 18290 6805 320 4.6 6 6 12.9 1220 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +6260400.0 20.6 12.2 59 98000 917 1383 380 521 335 300 59026 27988 34194 12308 330 4.1 8 8 12.9 1830 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +6264000.0 21.7 12.8 57 97900 1052 1383 364 758 835 126 93677 50022 15633 6562 280 4.1 2 2 12.9 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +6267600.0 22.2 11.7 51 97800 1113 1383 382 751 617 257 88743 45817 30541 12152 350 5.2 7 7 11.3 1830 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +6271200.0 20.6 11.1 55 97800 1096 1383 398 441 138 332 50973 11467 38616 14567 320 6.2 10 10 11.3 850 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +6274800.0 20.6 10.6 53 97700 1003 1383 378 442 184 309 50687 15334 35651 13258 330 7.2 8 8 11.3 1520 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +6278400.0 20.0 10.0 53 97700 839 1383 375 470 268 309 52503 23716 34729 11761 320 5.2 8 8 11.3 1520 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +6282000.0 20.6 9.4 49 97700 615 1383 358 372 592 110 43341 34609 12862 4767 310 8.2 4 3 12.9 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +6285600.0 17.8 7.8 52 97800 349 1383 348 151 266 84 16859 10585 9412 3005 320 6.2 7 5 24.1 1830 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +6289200.0 15.6 6.1 54 97900 73 1003 343 21 25 18 2286 0 1965 537 340 7.2 9 7 24.1 2440 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +6292800.0 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 22 0.0000 0 88 0.000 0.0 1.0 +6296400.0 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 21 0.0000 0 88 0.000 0.0 1.0 +6300000.0 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 20 0.0000 0 88 0.000 0.0 1.0 +6303600.0 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 19 0.0000 0 88 0.000 0.0 1.0 +6307200.0 8.9 2.8 66 98100 0 0 295 0 0 0 0 0 0 0 320 7.2 3 2 19.3 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +6310800.0 8.3 1.7 63 98100 0 0 294 0 0 0 0 0 0 0 320 6.2 4 3 19.3 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +6314400.0 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 15 0.0000 0 88 0.000 0.0 1.0 +6318000.0 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 14 0.0000 0 88 0.000 0.0 1.0 +6321600.0 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 13 0.0000 0 88 0.000 0.0 1.0 +6325200.0 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 12 0.0000 0 88 0.000 0.0 1.0 +6328800.0 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 11 0.0000 0 88 0.000 0.0 1.0 +6332400.0 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 10 0.0000 0 88 0.000 0.0 1.0 +6336000.0 7.8 -1.7 52 98400 191 1383 288 67 120 52 7345 1121 5720 1637 350 5.2 7 3 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +6339600.0 9.4 -2.8 43 98500 474 1383 294 275 461 120 30963 28284 13565 4487 20 6.2 8 3 40.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +6343200.0 10.6 -3.3 38 98500 724 1383 298 469 548 185 53756 42276 21304 7684 30 4.6 8 3 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +6346800.0 12.2 -3.3 34 98500 923 1383 302 571 549 207 67085 42802 24440 9498 20 3.6 6 2 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +6350400.0 13.3 -2.2 34 98500 1057 1383 308 770 708 231 91499 55494 27593 10985 200 2.1 6 2 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +6354000.0 14.4 -2.2 32 98400 1118 1383 308 804 815 147 99690 55770 18303 7632 140 2.1 4 1 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +6357600.0 16.7 -1.7 29 98300 1101 1383 319 805 800 170 98504 56741 20896 8634 0 0.0 4 1 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +6361200.0 17.2 -2.2 27 98200 1007 1383 325 704 685 206 83790 52272 24639 9840 0 0.0 6 2 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +6364800.0 17.8 -2.2 26 98200 843 1383 328 579 640 190 67602 48938 22289 8506 200 2.6 7 2 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +6368400.0 17.8 -2.8 25 98200 619 1383 323 392 631 110 45900 39897 12925 4782 10 1.5 5 1 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +6372000.0 17.8 -2.8 25 98200 353 1383 323 179 442 67 20452 16900 7677 2560 50 3.1 4 1 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +6375600.0 17.2 -3.3 25 98200 76 1025 313 37 94 26 3932 0 2773 661 60 3.1 2 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +6379200.0 16.1 -2.2 29 98300 0 0 310 0 0 0 0 0 0 0 60 3.1 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +6382800.0 13.3 -0.6 39 98400 0 0 300 0 0 0 0 0 0 0 280 1.5 2 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +6386400.0 12.8 -1.7 37 98400 0 0 297 0 0 0 0 0 0 0 50 3.6 1 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +6390000.0 11.7 -2.2 38 98400 0 0 291 0 0 0 0 0 0 0 360 3.1 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +6393600.0 11.7 -2.2 38 98400 0 0 291 0 0 0 0 0 0 0 60 3.1 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +6397200.0 10.6 -0.6 47 98400 0 0 289 0 0 0 0 0 0 0 110 2.6 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +6400800.0 10.0 -0.6 48 98400 0 0 286 0 0 0 0 0 0 0 110 1.5 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +6404400.0 9.4 0.0 52 98400 0 0 284 0 0 0 0 0 0 0 90 2.1 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +6408000.0 8.9 0.0 54 98300 0 0 282 0 0 0 0 0 0 0 80 2.1 2 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +6411600.0 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 7 0.0000 0 88 0.000 0.0 1.0 +6415200.0 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 7 0.0000 0 88 0.000 0.0 1.0 +6418800.0 7.8 -0.6 56 98400 18 265 320 3 0 3 0 0 0 0 80 4.1 10 10 24.1 2130 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +6422400.0 7.8 -0.6 56 98500 198 1382 320 40 0 40 3911 0 3939 1392 80 5.2 10 10 24.1 2130 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +6426000.0 8.3 -0.6 54 98500 480 1382 322 117 1 117 13215 60 13266 4441 70 4.6 10 10 24.1 2440 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +6429600.0 10.0 0.0 50 98500 730 1382 331 246 1 245 27575 86 27613 9292 70 5.2 10 10 19.3 2740 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +6433200.0 11.7 -0.6 43 98400 929 1382 338 265 5 262 30573 421 30395 11342 90 6.2 10 10 19.3 2740 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +6436800.0 12.2 0.0 43 98400 1063 1382 341 385 8 379 44019 754 43616 15615 110 6.2 10 10 19.3 2740 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +6440400.0 12.8 0.0 42 98300 1123 1382 344 210 3 208 25377 223 25262 10286 100 5.2 10 10 19.3 2740 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +6444000.0 12.8 0.0 42 98200 1106 1382 344 245 4 242 29197 312 28994 11575 100 5.2 10 10 19.3 2740 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +6447600.0 12.2 0.0 43 98100 1011 1382 341 325 1 325 37332 90 37560 13784 90 6.2 10 10 19.3 1220 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +6451200.0 11.7 -0.6 43 98100 847 1382 338 306 1 305 34414 92 34507 11773 80 5.2 10 10 19.3 1010 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +6454800.0 11.7 0.6 47 98000 623 1382 340 214 2 213 23763 164 23775 7655 110 5.7 10 10 16.1 820 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +6458400.0 11.1 1.7 53 98000 356 1382 338 111 1 111 12169 52 12220 3625 70 4.6 10 10 16.1 820 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +6462000.0 10.6 2.2 57 98000 79 1048 336 26 0 26 2511 0 2528 681 70 5.2 10 10 16.1 820 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +6465600.0 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 21 0.0000 0 88 0.000 0.0 1.0 +6469200.0 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 20 0.0000 0 88 0.000 0.0 1.0 +6472800.0 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 20 0.0000 0 88 0.000 0.0 1.0 +6476400.0 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 19 0.0000 0 88 0.000 0.0 1.0 +6480000.0 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 18 0.0000 0 88 0.000 0.0 1.0 +6483600.0 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 18 0.0000 0 88 0.000 0.0 1.0 +6487200.0 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 17 0.0000 0 88 0.000 0.0 1.0 +6490800.0 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 16 0.0000 0 88 0.000 0.0 1.0 +6494400.0 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 15 0.0000 0 88 0.000 0.0 1.0 +6498000.0 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 15 0.0000 0 88 0.000 0.0 1.0 +6501600.0 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 14 0.0000 0 88 0.000 0.0 1.0 +6505200.0 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 13 0.0000 0 88 0.000 0.0 1.0 +6508800.0 8.3 2.2 66 97600 204 1381 310 61 14 59 6653 201 6457 1825 310 3.6 10 8 16.1 7620 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +6512400.0 10.0 1.7 57 97600 487 1381 317 211 61 189 22928 4721 20643 5927 330 4.1 10 8 16.1 2740 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +6516000.0 11.7 -0.6 43 97600 736 1381 322 338 215 225 38203 17802 25564 8871 340 6.2 10 8 16.1 3050 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +6519600.0 12.2 0.0 43 97600 934 1381 341 237 7 232 27630 561 27189 10427 330 6.2 10 10 16.1 3050 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +6523200.0 12.8 -3.3 33 97600 1068 1381 340 312 10 304 36362 865 35640 13554 310 9.3 10 10 24.1 2740 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +6526800.0 13.3 -2.8 33 97500 1128 1381 322 724 416 386 83515 38935 44819 16289 320 9.3 9 7 24.1 2740 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +6530400.0 15.0 -4.4 26 97500 1110 1381 318 605 345 328 70535 30472 38475 14535 300 5.7 6 4 24.1 7620 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +6534000.0 16.1 -5.0 23 97400 1015 1381 320 679 638 211 80826 49376 25242 10070 340 8.2 4 3 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +6537600.0 16.7 -6.7 20 97400 851 1381 313 590 793 103 72358 51715 12673 5124 340 9.3 1 1 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +6541200.0 16.7 -7.2 19 97300 627 1381 307 422 732 92 50226 44584 10983 4145 310 10.3 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +6544800.0 15.6 -7.8 20 97400 360 1381 301 195 517 61 22521 19687 7063 2398 300 11.3 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +6548400.0 13.9 -6.1 25 97500 81 1047 296 37 101 25 3978 0 2696 686 310 8.8 0 0 32.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +6552000.0 11.7 -7.2 26 97600 0 0 286 0 0 0 0 0 0 0 340 9.8 0 0 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +6555600.0 10.0 -7.8 28 97700 0 0 279 0 0 0 0 0 0 0 330 8.8 0 0 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +6559200.0 9.4 -6.7 32 97800 0 0 278 0 0 0 0 0 0 0 340 6.7 0 0 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6562800.0 8.3 -7.2 33 97900 0 0 273 0 0 0 0 0 0 0 310 8.2 0 0 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6566400.0 7.2 -8.3 33 97900 0 0 267 0 0 0 0 0 0 0 320 8.8 0 0 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6570000.0 6.7 -8.9 32 98000 0 0 265 0 0 0 0 0 0 0 310 5.7 0 0 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6573600.0 5.6 -7.8 38 98000 0 0 262 0 0 0 0 0 0 0 320 4.6 0 0 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6577200.0 4.4 -6.7 45 98000 0 0 258 0 0 0 0 0 0 0 320 7.7 0 0 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6580800.0 3.9 -6.7 47 98000 0 0 257 0 0 0 0 0 0 0 320 7.2 0 0 24.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6584400.0 3.3 -5.6 53 98000 0 0 255 0 0 0 0 0 0 0 320 6.2 0 0 24.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6588000.0 2.8 -5.6 55 98000 0 0 254 0 0 0 0 0 0 0 320 5.2 0 0 24.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6591600.0 2.2 -6.1 55 98100 8 334 251 10 39 4 0 0 0 0 330 7.2 0 0 24.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6595200.0 2.8 -6.1 52 98200 211 1380 253 108 558 26 11523 42000 4224 558 330 7.7 0 0 40.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6598800.0 3.9 -6.7 47 98300 493 1380 257 338 835 44 36072 78269 6848 1082 340 8.8 0 0 40.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6602400.0 5.0 -9.4 35 98400 742 1380 258 559 938 59 59307 92759 8751 1509 320 6.7 0 0 40.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6606000.0 6.7 -11.7 26 98400 940 1380 262 742 991 71 78270 99449 10096 1991 340 6.2 0 0 40.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6609600.0 7.8 -10.6 26 98400 1073 1380 267 868 1020 78 91346 102913 10774 2531 310 6.2 0 0 40.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6613200.0 9.4 -12.2 21 98400 1133 1380 272 925 1031 81 97133 104087 11038 2903 340 7.7 0 0 40.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6616800.0 10.0 -11.1 22 98300 1115 1380 275 909 1029 80 95549 103899 10948 2775 310 7.2 0 0 40.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6620400.0 11.1 -11.7 19 98300 1020 1380 279 821 1012 75 86461 101895 10483 2275 310 7.7 0 0 40.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6624000.0 11.7 -12.8 17 98200 855 1380 280 669 976 66 70670 97402 9556 1757 340 8.2 0 0 40.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6627600.0 11.1 -12.8 18 98300 631 1380 278 464 904 53 49228 87724 8028 1319 360 7.2 0 0 40.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6631200.0 11.1 -12.2 18 98300 364 1380 278 231 747 36 24597 65469 5724 864 350 6.2 0 0 40.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6634800.0 9.4 -12.2 21 98300 84 1070 272 51 283 18 5661 0 2003 574 330 5.7 0 0 40.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6638400.0 8.3 -10.6 25 98400 0 0 269 0 0 0 0 0 0 0 350 4.1 0 0 40.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6642000.0 7.8 -9.4 29 98400 0 0 269 0 0 0 0 0 0 0 340 3.1 0 0 40.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6645600.0 6.1 -8.3 35 98500 0 0 263 0 0 0 0 0 0 0 330 3.1 0 0 40.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6649200.0 3.9 -6.7 47 98500 0 0 257 0 0 0 0 0 0 0 310 3.1 0 0 24.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6652800.0 4.4 -7.2 43 98600 0 0 258 0 0 0 0 0 0 0 300 3.1 0 0 24.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6656400.0 3.9 -7.2 45 98700 0 0 256 0 0 0 0 0 0 0 320 3.1 0 0 24.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6660000.0 3.3 -7.2 46 98600 0 0 254 0 0 0 0 0 0 0 330 3.1 0 0 24.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6663600.0 3.3 -8.9 41 98600 0 0 252 0 0 0 0 0 0 0 360 2.1 0 0 24.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6667200.0 1.7 -6.7 54 98600 0 0 248 0 0 0 0 0 0 0 360 2.1 0 0 24.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6670800.0 2.2 -7.2 50 98700 0 0 250 0 0 0 0 0 0 0 0 0.0 0 0 24.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6674400.0 1.7 -6.7 54 98700 0 0 248 0 0 0 0 0 0 0 0 0.0 0 0 24.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6678000.0 1.1 -6.1 59 98800 9 356 247 10 39 5 0 0 0 0 0 0.0 0 0 32.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6681600.0 3.9 -7.2 45 98800 217 1379 256 111 542 29 12930 1280 3384 1112 80 2.6 0 0 32.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6685200.0 6.1 -9.4 32 98900 499 1379 262 340 819 48 36136 76774 7430 1124 100 4.1 0 0 32.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6688800.0 7.8 -12.2 23 98900 748 1379 266 564 928 64 59607 91667 9440 1574 110 5.2 0 0 32.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6692400.0 9.4 -11.7 22 98900 946 1379 272 741 975 77 77976 97824 10888 2094 130 3.6 0 0 32.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6696000.0 11.7 -11.7 19 98900 1079 1379 281 865 1003 84 90774 101117 11539 2675 130 4.1 0 0 32.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6699600.0 12.8 -12.2 16 98800 1138 1379 285 921 1013 87 96503 102238 11794 3079 140 1.5 0 0 32.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6703200.0 15.0 -11.7 15 98700 1119 1379 295 904 1010 86 94786 101920 11708 2937 230 1.5 0 0 32.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6706800.0 16.1 -11.1 14 98600 1024 1379 300 816 993 81 85762 99979 11262 2395 130 4.1 0 0 32.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6710400.0 16.7 -10.6 15 98500 858 1379 303 664 954 71 70068 95288 10233 1829 270 2.1 0 0 32.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6714000.0 16.7 -9.4 16 98500 635 1379 304 458 875 57 48576 85076 8599 1363 190 3.1 0 0 32.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +6717600.0 16.1 -9.4 17 98500 368 1379 302 228 715 39 24261 62879 6175 888 130 3.6 0 0 32.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +6721200.0 15.0 -9.4 18 98500 87 1092 297 49 257 20 5408 0 2213 626 150 4.1 0 0 32.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +6724800.0 14.4 -10.0 18 98500 0 0 294 0 0 0 0 0 0 0 150 4.1 0 0 32.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +6728400.0 13.3 -9.4 20 98500 0 0 290 0 0 0 0 0 0 0 160 5.2 0 0 32.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +6732000.0 12.2 -8.9 22 98600 0 0 286 0 0 0 0 0 0 0 170 4.6 0 0 32.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +6735600.0 10.6 -8.3 26 98600 0 0 281 0 0 0 0 0 0 0 180 4.6 0 0 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +6739200.0 8.9 -7.8 30 98600 0 0 274 0 0 0 0 0 0 0 190 3.6 0 0 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +6742800.0 8.3 -7.8 31 98500 0 0 272 0 0 0 0 0 0 0 190 3.6 0 0 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +6746400.0 8.3 -7.8 31 98500 0 0 272 0 0 0 0 0 0 0 180 2.6 0 0 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +6750000.0 7.2 -8.3 33 98500 0 0 267 0 0 0 0 0 0 0 190 2.6 0 0 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +6753600.0 6.7 -8.3 34 98500 0 0 265 0 0 0 0 0 0 0 200 2.6 0 0 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +6757200.0 5.0 -5.6 47 98500 0 0 262 0 0 0 0 0 0 0 90 1.5 0 0 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +6760800.0 5.0 -5.0 49 98500 0 0 262 0 0 0 0 0 0 0 120 1.5 0 0 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +6764400.0 5.0 -4.4 51 98500 11 402 272 6 11 5 0 0 0 0 90 2.1 5 2 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +6768000.0 5.6 -4.4 49 98600 224 1379 277 91 140 69 9902 3409 7536 2098 90 1.5 7 3 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +6771600.0 8.3 -3.3 44 98600 506 1379 289 292 494 113 33303 30105 12936 4451 120 2.1 6 3 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +6775200.0 11.7 -2.2 38 98600 754 1379 297 516 781 92 62777 48416 11227 4440 120 2.6 3 1 9.7 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +6778800.0 15.0 -3.9 27 98600 951 1379 309 679 851 95 71378 85675 13269 2304 180 3.6 2 1 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +6782400.0 17.8 -3.9 23 98500 1084 1379 321 802 890 105 84040 90014 14233 3042 130 3.6 2 1 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +6786000.0 18.3 -5.0 20 98400 1142 1379 322 843 879 117 87947 88891 15578 3682 170 4.1 3 1 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +6789600.0 18.9 -5.6 19 98300 1123 1379 329 816 773 188 99524 56766 23038 9457 110 2.6 7 2 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +6793200.0 20.0 -5.6 17 98200 1028 1379 334 738 698 219 87789 54595 26183 10431 170 4.1 8 2 16.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +6796800.0 20.0 -5.0 18 98200 862 1379 343 517 552 173 61062 41133 20524 8004 160 5.2 10 5 16.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +6800400.0 19.4 -5.0 19 98100 638 1379 347 280 221 178 31699 16956 20246 6971 200 4.6 10 7 16.1 7620 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +6804000.0 18.9 -4.4 20 98100 371 1379 351 121 65 104 13422 3400 11581 3580 130 4.1 10 8 16.1 7620 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +6807600.0 17.8 -3.3 24 98100 90 1114 365 10 6 10 1170 0 1171 368 130 4.1 10 10 16.1 7620 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +6811200.0 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 9 0.0000 0 88 0.000 0.0 1.0 +6814800.0 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 10 0.0000 0 88 0.000 0.0 1.0 +6818400.0 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 11 0.0000 0 88 0.000 0.0 1.0 +6822000.0 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 12 0.0000 0 88 0.000 0.0 1.0 +6825600.0 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 13 0.0000 0 88 0.000 0.0 1.0 +6829200.0 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 15 0.0000 0 88 0.000 0.0 1.0 +6832800.0 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 16 0.0000 0 88 0.000 0.0 1.0 +6836400.0 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 17 0.0000 0 88 0.000 0.0 1.0 +6840000.0 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 18 0.0000 0 88 0.000 0.0 1.0 +6843600.0 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 19 0.0000 0 88 0.000 1.5 1.0 +6847200.0 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 20 0.0000 0 88 0.000 1.3 1.0 +6850800.0 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 21 0.0000 0 88 0.000 0.5 1.0 +6854400.0 10.6 8.3 86 97900 230 1378 343 21 3 21 2511 0 2513 851 110 6.2 10 10 12.9 1370 9 999999999 21 0.0000 0 88 0.000 0.3 1.0 +6858000.0 10.6 8.3 86 97800 512 1378 343 76 0 75 7605 0 7566 3231 110 7.7 10 10 11.3 240 9 999999999 20 0.0000 0 88 0.000 0.3 1.0 +6861600.0 11.1 8.9 86 97800 760 1378 347 126 6 123 14955 376 14654 5722 90 8.2 10 10 12.9 1370 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +6865200.0 11.7 8.9 83 97700 957 1378 350 317 8 312 36118 687 35765 13000 90 8.8 10 10 19.3 370 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +6868800.0 12.8 8.9 77 97700 1089 1378 355 345 5 341 39820 427 39608 14812 100 7.2 10 10 24.1 460 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +6872400.0 12.8 9.4 80 97600 1147 1378 356 261 5 256 31056 374 30633 12226 100 7.7 10 10 12.9 460 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +6876000.0 12.8 9.4 80 97500 1128 1378 356 245 2 244 29183 148 29223 11726 110 8.8 10 10 12.9 580 9 999999999 19 0.0000 0 88 0.000 0.3 1.0 +6879600.0 12.8 10.0 83 97400 1032 1378 356 230 1 229 27150 74 27176 10824 90 7.2 10 10 12.9 760 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +6883200.0 12.2 10.6 90 97400 866 1378 354 169 0 169 17393 0 17552 7873 90 9.8 10 10 9.7 490 9 999999999 19 0.0000 0 88 0.000 0.3 1.0 +6886800.0 12.2 10.6 90 97300 642 1378 354 130 1 129 15034 62 14978 5526 100 11.8 10 10 11.3 240 9 999999999 19 0.0000 0 88 0.000 1.0 1.0 +6890400.0 12.2 10.6 90 97300 375 1378 354 63 1 62 7257 34 7162 2467 100 12.9 10 10 9.7 240 9 999999999 18 0.0000 0 88 0.000 1.5 1.0 +6894000.0 11.7 10.0 90 97300 93 1114 351 18 0 18 1735 0 1747 597 90 10.8 10 10 9.7 210 9 999999999 18 0.0000 0 88 0.000 0.3 1.0 +6897600.0 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 18 0.0000 0 88 0.000 0.0 1.0 +6901200.0 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 18 0.0000 0 88 0.000 1.3 1.0 +6904800.0 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 18 0.0000 0 88 0.000 1.0 1.0 +6908400.0 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 18 0.0000 0 88 0.000 2.5 1.0 +6912000.0 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 18 0.0000 0 88 0.000 0.5 1.0 +6915600.0 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 19 0.0000 0 88 0.000 2.8 1.0 +6919200.0 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 19 0.0000 0 88 0.000 2.0 1.0 +6922800.0 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 19 0.0000 0 88 0.000 0.3 1.0 +6926400.0 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 19 0.0000 0 88 0.000 0.3 1.0 +6930000.0 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 19 0.0000 0 88 0.000 0.8 1.0 +6933600.0 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 19 0.0000 0 88 0.000 2.0 1.0 +6937200.0 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 19 0.0000 0 88 0.000 3.8 1.0 +6940800.0 5.0 3.3 89 97400 237 1377 312 61 1 61 6731 20 6753 2012 70 7.2 10 10 12.9 210 9 999999999 19 0.0000 0 88 0.000 0.3 1.0 +6944400.0 4.4 3.3 93 97400 518 1377 309 91 1 91 10572 54 10606 3808 70 8.2 10 10 11.3 150 9 999999999 18 0.0000 0 88 0.000 0.5 1.0 +6948000.0 4.4 2.8 89 97400 766 1377 309 160 1 160 18671 71 18753 7112 70 7.7 10 10 6.4 150 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +6951600.0 4.4 3.3 93 97400 962 1377 309 196 1 195 23248 74 23241 9253 80 7.7 10 10 4.0 120 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +6955200.0 4.4 2.8 89 97400 1094 1377 309 223 1 221 26709 75 26606 10742 80 7.7 10 10 1.8 120 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +6958800.0 4.4 3.3 93 97400 1152 1377 309 448 2 446 51199 194 51329 17924 100 5.2 10 10 1.8 120 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +6962400.0 4.4 3.3 93 97400 1132 1377 309 391 0 391 41254 0 41658 16467 80 6.2 10 10 1.8 120 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +6966000.0 5.0 3.3 89 97400 1036 1377 312 356 1 355 40739 91 40884 14816 70 5.2 10 10 1.8 120 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +6969600.0 5.6 3.3 86 97400 870 1377 315 282 1 282 32022 87 32207 11475 70 4.1 10 10 4.0 120 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +6973200.0 5.6 3.9 89 97400 645 1377 315 202 0 202 20486 0 20658 7623 70 4.6 10 10 4.0 120 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +6976800.0 5.6 3.9 89 97500 378 1377 315 119 1 119 13053 55 13109 3926 70 4.6 10 10 4.0 120 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +6980400.0 5.6 3.9 89 97500 95 1136 315 32 0 32 3095 0 3116 859 80 5.2 10 10 1.6 90 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +6984000.0 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 14 0.0000 0 88 0.000 0.0 1.0 +6987600.0 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 14 0.0000 0 88 0.000 0.0 1.0 +6991200.0 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 14 0.0000 0 88 0.000 0.0 1.0 +6994800.0 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 14 0.0000 0 88 0.000 0.0 1.0 +6998400.0 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 14 0.0000 0 88 0.000 0.0 1.0 +7002000.0 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 15 0.0000 0 88 0.000 0.0 1.0 +7005600.0 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 15 0.0000 0 88 0.000 0.0 1.0 +7009200.0 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 15 0.0000 0 88 0.000 0.0 1.0 +7012800.0 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 15 0.0000 0 88 0.000 0.0 1.0 +7016400.0 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 15 0.0000 0 88 0.000 0.0 1.0 +7020000.0 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 15 0.0000 0 88 0.000 0.0 1.0 +7023600.0 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 15 0.0000 0 88 0.000 0.0 1.0 +7027200.0 6.7 5.0 89 97800 243 1376 321 58 0 58 5683 0 5724 1972 260 3.1 10 10 3.2 90 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +7030800.0 8.3 6.1 86 97800 524 1376 330 149 0 149 14944 0 15065 5505 290 3.1 10 10 3.2 270 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +7034400.0 10.0 7.8 86 97800 772 1376 340 238 0 237 24344 0 24456 9483 300 4.6 10 10 3.2 180 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +7038000.0 12.2 8.3 77 97800 968 1376 310 631 676 159 75947 45404 19221 7838 250 2.6 1 1 12.9 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +7041600.0 14.4 7.2 62 97800 1099 1376 331 635 362 348 73352 31419 40456 15085 300 5.2 5 5 16.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +7045200.0 14.4 7.8 65 97800 1156 1376 362 497 31 471 56492 3021 53924 18498 270 6.7 10 10 19.3 760 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +7048800.0 15.0 7.8 62 97700 1136 1376 347 645 287 408 73952 26312 47099 16931 300 4.1 8 8 19.3 760 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +7052400.0 17.2 6.7 50 97700 1039 1376 357 525 274 318 60570 23384 36913 13827 260 6.7 8 8 24.1 910 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +7056000.0 17.8 6.7 48 97600 873 1376 350 592 537 252 67792 43662 29017 10686 300 5.7 6 6 24.1 910 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +7059600.0 18.3 5.6 43 97600 649 1376 342 402 462 185 45342 34508 20967 7234 300 5.2 3 3 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +7063200.0 17.8 6.1 47 97600 382 1376 341 176 291 95 19673 13639 10658 3430 290 4.6 3 3 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +7066800.0 16.1 6.1 52 97700 98 1158 330 34 50 29 3670 0 3140 835 270 4.1 2 2 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +7070400.0 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 15 0.0000 0 88 0.000 0.0 1.0 +7074000.0 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 15 0.0000 0 88 0.000 0.0 1.0 +7077600.0 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 15 0.0000 0 88 0.000 0.0 1.0 +7081200.0 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 15 0.0000 0 88 0.000 0.0 1.0 +7084800.0 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 15 0.0000 0 88 0.000 0.0 1.0 +7088400.0 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 15 0.0000 0 88 0.000 0.3 1.0 +7092000.0 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 15 0.0000 0 88 0.000 1.3 1.0 +7095600.0 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 15 0.0000 0 88 0.000 1.3 1.0 +7099200.0 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 15 0.0000 0 88 0.000 0.3 1.0 +7102800.0 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 15 0.0000 0 88 0.000 0.0 1.0 +7106400.0 10.6 8.9 90 97600 0 0 314 0 0 0 0 0 0 0 260 3.6 4 4 11.3 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +7110000.0 10.0 8.9 93 97600 19 516 309 9 11 8 0 0 0 0 290 4.1 3 3 0.8 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +7113600.0 10.6 8.9 90 97700 250 1375 298 112 372 47 12664 4641 5328 1713 280 4.1 0 0 6.4 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +7117200.0 11.7 8.9 83 97700 531 1375 316 349 627 110 39966 35490 12644 4468 270 5.2 3 3 11.3 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +7120800.0 13.3 8.9 75 97700 777 1375 323 546 714 146 64159 47269 17228 6662 300 5.2 3 3 12.9 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +7124400.0 13.9 5.6 58 97800 973 1375 356 212 62 168 25460 4309 20267 8228 270 9.3 10 10 11.3 610 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +7128000.0 13.3 5.6 60 97700 1104 1375 312 830 862 141 102888 56231 17551 7345 300 7.2 1 1 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +7131600.0 15.6 5.6 52 97600 1161 1375 330 833 738 212 100935 53121 25820 10524 290 7.7 3 3 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +7135200.0 16.1 3.9 44 97500 1140 1375 338 502 176 356 58313 15467 41619 15547 300 9.3 6 6 24.1 1070 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +7138800.0 17.2 2.8 38 97400 1043 1375 337 506 340 249 59635 26871 29506 11610 300 7.2 4 4 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +7142400.0 17.2 1.7 35 97400 877 1375 338 524 380 282 59614 33154 32267 11547 300 6.2 5 5 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +7146000.0 17.2 1.7 35 97400 652 1375 335 368 450 155 42192 31831 17849 6412 300 8.2 4 4 48.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +7149600.0 16.7 1.1 35 97400 385 1375 332 182 335 88 20529 15709 9961 3266 300 7.7 4 4 48.3 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +7153200.0 15.6 1.7 39 97600 101 1181 331 32 33 28 3480 0 3055 833 300 6.2 5 5 48.3 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +7156800.0 13.9 0.6 40 97700 0 0 304 0 0 0 0 0 0 0 310 5.7 0 0 48.3 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +7160400.0 13.3 0.0 40 97800 0 0 310 0 0 0 0 0 0 0 310 5.7 2 2 48.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +7164000.0 12.2 -1.1 40 97900 0 0 295 0 0 0 0 0 0 0 300 4.6 0 0 48.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +7167600.0 10.6 -1.7 43 98000 0 0 288 0 0 0 0 0 0 0 360 3.1 0 0 48.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +7171200.0 9.4 -1.7 46 98000 0 0 283 0 0 0 0 0 0 0 330 3.1 0 0 48.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +7174800.0 7.8 0.0 58 98000 0 0 278 0 0 0 0 0 0 0 320 1.5 0 0 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +7178400.0 6.7 -0.6 60 97900 0 0 273 0 0 0 0 0 0 0 210 1.5 0 0 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +7182000.0 6.1 0.0 65 97900 0 0 271 0 0 0 0 0 0 0 220 2.6 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +7185600.0 5.6 -0.6 65 97900 0 0 269 0 0 0 0 0 0 0 280 2.1 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +7189200.0 5.0 -0.6 68 97900 0 0 267 0 0 0 0 0 0 0 300 3.1 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +7192800.0 4.4 -0.6 70 98000 0 0 264 0 0 0 0 0 0 0 310 2.6 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +7196400.0 5.6 -0.6 65 98100 22 561 269 15 42 10 0 0 0 0 340 4.6 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +7200000.0 7.8 0.0 58 98200 256 1375 278 124 473 39 14315 6396 4512 1491 320 4.1 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +7203600.0 10.0 0.0 50 98300 537 1375 287 354 758 62 42589 37803 7476 2789 330 5.2 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +7207200.0 11.1 0.6 49 98400 783 1375 292 571 865 82 60528 86435 11879 1772 340 6.7 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +7210800.0 12.2 1.1 47 98400 978 1375 297 749 922 96 79124 93385 13340 2425 330 7.2 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +7214400.0 12.8 0.0 42 98500 1109 1375 298 871 953 105 91621 96797 14165 3239 320 5.2 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +7218000.0 13.9 -1.7 34 98500 1165 1375 301 919 959 109 96359 97352 14507 3816 20 4.6 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +7221600.0 15.0 -1.7 32 98500 1144 1375 306 907 963 107 95163 97727 14314 3573 260 3.1 0 0 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +7225200.0 16.1 -1.7 30 98500 1047 1375 310 819 945 101 86109 95680 13810 2799 340 5.2 0 0 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +7228800.0 16.7 -1.7 29 98500 880 1375 313 666 903 90 70261 90743 12759 2059 20 3.1 0 0 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +7232400.0 16.7 -3.3 25 98500 656 1375 311 463 823 72 56443 47093 8799 3408 320 4.1 0 0 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +7236000.0 16.1 -2.8 28 98500 389 1375 309 234 655 50 27661 24057 5923 2089 320 2.6 0 0 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +7239600.0 15.0 -1.7 32 98600 104 1180 306 50 223 25 5511 0 2763 787 300 3.1 0 0 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +7243200.0 13.3 -0.6 39 98700 0 0 300 0 0 0 0 0 0 0 340 3.6 0 0 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +7246800.0 12.8 0.0 42 98800 0 0 298 0 0 0 0 0 0 0 340 3.6 0 0 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +7250400.0 11.1 0.0 47 98800 0 0 291 0 0 0 0 0 0 0 330 3.6 0 0 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +7254000.0 9.4 0.0 52 98800 0 0 284 0 0 0 0 0 0 0 340 1.5 0 0 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +7257600.0 8.3 0.0 56 98800 0 0 280 0 0 0 0 0 0 0 330 2.6 0 0 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +7261200.0 8.3 0.0 56 98900 0 0 280 0 0 0 0 0 0 0 330 1.5 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +7264800.0 7.8 0.6 61 98900 0 0 279 0 0 0 0 0 0 0 10 2.1 0 0 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +7268400.0 7.8 0.6 61 98900 0 0 279 0 0 0 0 0 0 0 60 2.1 0 0 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +7272000.0 7.8 0.6 61 98900 0 0 279 0 0 0 0 0 0 0 70 3.1 0 0 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +7275600.0 6.7 0.0 63 99000 0 0 274 0 0 0 0 0 0 0 80 3.1 0 0 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +7279200.0 6.1 0.6 68 99100 0 0 272 0 0 0 0 0 0 0 90 3.1 0 0 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +7282800.0 5.6 -0.6 65 99200 24 584 269 18 72 10 0 0 0 0 80 2.1 0 0 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +7286400.0 7.8 0.0 58 99200 263 1374 278 141 580 33 16534 6948 3876 1306 80 3.1 0 0 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +7290000.0 9.4 0.0 52 99300 543 1374 284 370 814 52 39586 78005 7982 1211 90 6.2 0 0 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +7293600.0 12.2 0.6 45 99300 789 1374 296 590 914 69 62866 91518 10081 1691 90 2.6 0 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +7297200.0 14.4 0.6 39 99400 983 1374 306 768 964 81 81493 97736 11352 2270 130 2.1 0 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +7300800.0 16.7 -1.7 29 99300 1113 1374 313 888 990 89 93698 100525 12108 2992 190 4.1 0 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +7304400.0 17.8 -1.1 28 99200 1169 1374 318 940 999 92 99122 101600 12358 3488 150 4.1 0 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +7308000.0 18.9 -2.8 23 99100 1148 1374 321 918 983 98 96465 99737 13165 3439 190 5.2 1 0 32.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +7311600.0 20.0 -2.2 22 99000 1051 1374 327 833 945 113 87241 95562 15336 2945 190 6.2 3 0 32.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +7315200.0 20.6 -2.8 21 98900 884 1374 335 629 846 86 66377 84990 12213 2042 180 5.2 3 1 32.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +7318800.0 20.0 -2.8 21 98900 659 1374 332 449 771 81 54285 45341 9820 3790 150 7.2 4 1 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +7322400.0 20.0 -2.8 21 98900 392 1374 332 226 587 60 26364 23541 7017 2444 210 4.6 5 1 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +7326000.0 18.9 -2.2 24 98900 107 1202 328 53 189 31 5755 0 3376 911 160 3.6 5 1 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +7329600.0 18.3 -2.2 25 98900 0 0 319 0 0 0 0 0 0 0 160 4.6 3 0 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +7333200.0 16.7 -2.2 28 98900 0 0 312 0 0 0 0 0 0 0 170 3.6 1 0 32.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +7336800.0 15.0 -1.7 32 98900 0 0 306 0 0 0 0 0 0 0 160 5.2 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +7340400.0 13.3 -0.6 39 98900 0 0 300 0 0 0 0 0 0 0 180 3.6 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +7344000.0 12.8 -0.6 40 98900 0 0 298 0 0 0 0 0 0 0 180 3.1 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +7347600.0 11.7 -1.1 42 98800 0 0 293 0 0 0 0 0 0 0 180 3.1 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +7351200.0 11.7 -1.1 42 98800 0 0 293 0 0 0 0 0 0 0 200 3.1 0 0 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +7354800.0 10.6 -1.1 45 98800 0 0 288 0 0 0 0 0 0 0 230 3.1 0 0 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +7358400.0 10.0 -0.6 48 98700 0 0 286 0 0 0 0 0 0 0 220 3.1 0 0 24.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +7362000.0 8.9 -0.6 52 98700 0 0 282 0 0 0 0 0 0 0 150 1.5 0 0 24.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +7365600.0 10.0 -0.6 48 98800 0 0 286 0 0 0 0 0 0 0 190 2.6 0 0 24.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +7369200.0 8.9 0.6 56 98700 27 606 295 14 5 13 0 0 0 0 90 2.1 7 3 16.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +7372800.0 10.6 3.9 64 98800 269 1373 306 112 235 67 12422 6287 7456 2278 180 3.6 9 3 16.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +7376400.0 12.8 5.6 62 98800 549 1373 317 304 375 156 34040 25770 17547 5838 180 4.1 9 3 16.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +7380000.0 15.6 6.7 56 98800 794 1373 334 502 525 201 57764 39615 23243 8628 230 5.7 9 4 16.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +7383600.0 18.3 4.4 40 98800 989 1373 344 682 598 254 79571 47891 29798 11506 210 6.2 9 4 16.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +7387200.0 20.6 3.3 32 98700 1118 1373 353 670 454 301 78647 37633 35543 13739 240 8.8 10 4 16.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +7390800.0 21.7 3.9 31 98600 1174 1373 362 722 467 324 84910 39088 38340 14697 240 10.3 10 5 24.1 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +7394400.0 21.1 5.0 35 98600 1152 1373 364 615 326 342 71778 27912 40169 15187 270 8.2 10 6 24.1 7620 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +7398000.0 21.7 6.1 37 98500 1054 1373 368 457 219 289 53275 17940 33888 13038 240 5.2 9 6 32.2 7620 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +7401600.0 21.7 7.8 41 98300 887 1373 389 290 79 239 33422 6217 27693 10406 230 5.2 10 9 32.2 3050 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +7405200.0 21.1 7.8 42 98300 663 1373 397 154 7 151 17692 473 17423 6345 220 5.2 10 10 32.2 3050 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +7408800.0 18.9 9.4 55 98300 396 1373 387 83 5 82 9414 212 9332 3141 270 5.2 10 10 24.1 2740 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +7412400.0 17.8 10.6 63 98300 110 1224 383 27 0 27 2606 0 2624 849 0 0.0 10 10 24.1 2440 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +7416000.0 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 22 0.0000 0 88 0.000 0.0 1.0 +7419600.0 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 22 0.0000 0 88 0.000 0.0 1.0 +7423200.0 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 22 0.0000 0 88 0.000 0.0 1.0 +7426800.0 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 22 0.0000 0 88 0.000 0.0 1.0 +7430400.0 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 22 0.0000 0 88 0.000 0.0 1.0 +7434000.0 17.8 12.2 70 98100 0 0 353 0 0 0 0 0 0 0 200 5.7 5 5 19.3 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +7437600.0 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 22 0.0000 0 88 0.000 0.0 1.0 +7441200.0 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 22 0.0000 0 88 0.000 0.0 1.0 +7444800.0 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 22 0.0000 0 88 0.000 0.0 1.0 +7448400.0 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 22 0.0000 0 88 0.000 0.0 1.0 +7452000.0 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 22 0.0000 0 88 0.000 0.0 1.0 +7455600.0 15.0 13.9 93 98200 30 652 372 4 0 4 0 0 0 0 200 3.1 10 10 1.2 90 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +7459200.0 15.0 13.9 93 98200 275 1372 372 60 4 59 6706 74 6615 2108 200 2.6 10 10 2.4 90 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +7462800.0 15.6 13.9 90 98200 555 1372 375 156 3 154 17432 190 17288 5829 200 4.1 10 10 1.2 90 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +7466400.0 16.7 13.9 84 98200 800 1372 381 283 3 281 31600 248 31564 10817 200 4.6 10 10 2.4 150 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +7470000.0 17.8 13.9 78 98100 994 1372 387 320 3 318 36530 246 36528 13503 190 6.7 10 10 2.4 270 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +7473600.0 19.4 15.0 76 98100 1123 1372 397 397 0 396 41592 0 41901 16561 200 5.2 10 10 9.7 430 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +7477200.0 20.6 15.6 73 98000 1178 1372 404 416 1 414 47720 86 47824 17347 220 5.2 10 10 11.3 520 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +7480800.0 23.3 13.9 56 98000 1156 1372 405 415 164 277 49046 12087 32930 13031 230 7.2 9 9 16.1 760 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +7484400.0 23.3 13.9 56 97900 1058 1372 417 334 1 333 38364 82 38493 14412 240 6.7 10 10 12.9 820 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +7488000.0 23.9 13.9 54 97800 891 1372 420 317 41 290 35868 3340 33010 11894 200 5.2 10 10 12.9 820 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +7491600.0 25.0 14.4 52 97800 666 1372 427 160 1 160 18239 65 18323 6643 220 4.6 10 10 19.3 1370 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +7495200.0 24.4 14.4 54 97800 399 1372 424 89 1 89 10007 41 10043 3351 230 4.6 10 10 19.3 1370 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +7498800.0 23.9 14.4 56 97800 113 1246 409 39 11 38 4153 0 4061 1044 210 5.7 9 9 19.3 3050 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +7502400.0 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 29 0.0000 0 88 0.000 0.0 1.0 +7506000.0 22.2 14.4 62 97900 0 0 368 0 0 0 0 0 0 0 200 5.2 4 2 16.1 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +7509600.0 21.1 14.4 66 97900 0 0 363 0 0 0 0 0 0 0 200 5.2 4 2 16.1 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +7513200.0 20.6 13.3 63 98000 0 0 348 0 0 0 0 0 0 0 210 5.7 2 0 16.1 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +7516800.0 19.4 13.3 68 98000 0 0 348 0 0 0 0 0 0 0 220 6.2 5 1 16.1 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +7520400.0 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 27 0.0000 0 88 0.000 0.0 1.0 +7524000.0 17.8 13.9 78 97900 0 0 350 0 0 0 0 0 0 0 220 6.7 8 3 16.1 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +7527600.0 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 26 0.0000 0 88 0.000 0.0 1.0 +7531200.0 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 26 0.0000 0 88 0.000 0.0 1.0 +7534800.0 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 26 0.0000 0 88 0.000 0.0 1.0 +7538400.0 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 25 0.0000 0 88 0.000 0.0 1.0 +7542000.0 17.2 15.0 87 97900 33 674 385 8 0 8 0 0 0 0 220 4.1 10 10 12.9 760 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +7545600.0 17.8 15.0 84 98100 282 1371 388 66 5 65 7330 105 7243 2282 250 5.7 10 10 12.9 490 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +7549200.0 18.9 15.6 81 98100 561 1371 395 183 10 179 20199 674 19857 6453 230 4.6 10 10 12.9 490 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +7552800.0 20.0 15.0 73 98200 806 1371 400 222 12 215 25339 864 24669 9133 230 5.2 10 10 12.9 550 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +7556400.0 21.7 15.6 68 98100 999 1371 410 421 9 415 47013 828 46668 15826 230 5.2 10 10 12.9 610 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +7560000.0 21.1 14.4 66 98100 1127 1371 405 341 3 338 39505 241 39410 14964 230 4.6 10 10 16.1 2740 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +7563600.0 23.3 14.4 58 98000 1182 1371 397 499 177 348 58126 14131 40802 15498 240 7.2 10 8 19.3 2740 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +7567200.0 24.4 13.9 52 97900 1159 1371 403 473 103 386 54497 8721 44776 16509 200 7.7 9 8 19.3 2740 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +7570800.0 25.6 13.3 47 97900 1061 1371 388 689 592 232 81503 42129 27592 11075 200 6.2 7 3 24.1 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +7574400.0 26.7 13.3 44 97800 894 1371 390 638 832 97 78665 46949 11999 4952 240 7.2 5 2 24.1 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +7578000.0 25.6 13.3 47 97800 669 1371 379 418 667 93 49799 35969 11115 4301 180 6.2 5 1 40.2 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +7581600.0 25.6 13.3 47 97800 402 1371 372 241 683 43 28751 19726 5139 1852 200 6.2 1 0 40.2 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +7585200.0 25.0 13.3 48 97800 116 1246 376 53 237 26 5848 0 2876 847 200 5.2 5 1 32.2 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +7588800.0 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 23 0.0000 0 88 0.000 0.0 1.0 +7592400.0 22.8 13.9 57 97900 0 0 371 0 0 0 0 0 0 0 190 4.6 7 2 24.1 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +7596000.0 21.7 13.9 61 97900 0 0 353 0 0 0 0 0 0 0 210 4.1 3 0 24.1 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +7599600.0 20.6 13.3 63 97900 0 0 348 0 0 0 0 0 0 0 230 5.2 3 0 24.1 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +7603200.0 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 22 0.0000 0 88 0.000 0.0 1.0 +7606800.0 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 22 0.0000 0 88 0.000 0.0 1.0 +7610400.0 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 21 0.0000 0 88 0.000 0.0 1.0 +7614000.0 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 21 0.0000 0 88 0.000 0.0 1.0 +7617600.0 17.2 13.9 81 97900 0 0 350 0 0 0 0 0 0 0 230 3.6 9 4 16.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +7621200.0 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 20 0.0000 0 88 0.000 0.0 1.0 +7624800.0 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 20 0.0000 0 88 0.000 0.0 1.0 +7628400.0 17.8 15.6 87 98000 36 697 370 11 9 10 0 0 0 0 190 3.6 10 8 11.3 760 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +7632000.0 18.3 15.6 84 98000 288 1371 357 145 309 81 15841 8606 8884 2665 200 3.6 10 4 12.9 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +7635600.0 18.9 15.0 78 97900 567 1371 394 144 1 143 16220 60 16179 5613 230 3.6 10 10 12.9 370 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +7639200.0 20.0 15.0 73 97900 811 1371 389 354 102 294 39433 8508 32949 11224 230 2.6 10 9 12.9 520 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +7642800.0 22.2 15.6 66 97900 1004 1371 382 578 419 273 66819 31478 31745 12230 190 5.7 9 6 19.3 760 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +7646400.0 25.0 14.4 52 97900 1132 1371 389 755 636 232 90135 43952 27848 11285 220 5.2 10 4 19.3 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +7650000.0 26.7 13.3 44 97800 1186 1371 397 841 600 323 98678 46855 38138 14715 210 5.7 10 4 19.3 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +7653600.0 27.8 12.2 38 97700 1163 1371 398 901 770 249 107609 55400 29906 12010 180 5.7 10 3 24.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +7657200.0 27.8 10.6 34 97700 1065 1371 396 718 651 214 85651 46189 25660 10396 210 6.7 10 3 24.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +7660800.0 27.8 11.1 36 97700 897 1371 400 578 580 199 67595 41370 23388 9134 230 7.2 10 4 24.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +7664400.0 26.7 12.8 42 97600 672 1371 393 457 640 144 52669 40500 16667 6171 200 6.7 9 3 24.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +7668000.0 26.1 12.8 44 97600 406 1371 390 222 443 91 24993 19279 10282 3434 220 5.2 8 3 24.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +7671600.0 25.6 12.8 45 97600 119 1268 397 44 6 44 4657 0 4675 1152 210 5.2 8 6 24.1 7620 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +7675200.0 24.4 12.8 48 97600 0 0 381 0 0 0 0 0 0 0 190 4.1 4 3 24.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +7678800.0 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 20 0.0000 0 88 0.000 0.0 1.0 +7682400.0 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 20 0.0000 0 88 0.000 0.0 1.0 +7686000.0 21.7 12.2 55 97600 0 0 358 0 0 0 0 0 0 0 190 5.2 1 1 24.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +7689600.0 20.0 12.2 61 97600 0 0 344 0 0 0 0 0 0 0 180 3.6 0 0 24.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +7693200.0 18.9 12.2 65 97600 0 0 338 0 0 0 0 0 0 0 190 4.1 0 0 24.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +7696800.0 18.3 13.3 73 97600 0 0 337 0 0 0 0 0 0 0 190 5.2 0 0 24.1 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +7700400.0 17.8 13.3 75 97600 0 0 352 0 0 0 0 0 0 0 200 5.7 4 4 24.1 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +7704000.0 17.2 13.3 78 97500 0 0 332 0 0 0 0 0 0 0 200 4.1 0 0 24.1 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +7707600.0 16.7 13.9 84 97500 0 0 330 0 0 0 0 0 0 0 190 6.2 0 0 12.9 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +7711200.0 17.2 15.6 90 97500 0 0 349 0 0 0 0 0 0 0 200 6.2 7 3 11.3 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +7714800.0 17.8 15.0 84 97600 39 742 388 9 4 9 0 0 0 0 190 7.2 10 10 11.3 210 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +7718400.0 18.3 15.6 84 97600 294 1370 367 120 145 89 13037 4597 9709 2852 190 8.2 8 7 12.9 310 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +7722000.0 20.0 15.6 76 97500 573 1370 390 176 62 151 19754 3819 17026 5865 190 7.2 9 9 12.9 370 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +7725600.0 20.6 15.6 73 97500 816 1370 404 216 6 212 24721 425 24390 9117 200 10.3 10 10 12.9 460 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +7729200.0 21.7 16.1 71 97400 1009 1370 411 367 8 362 41497 679 41203 14794 200 13.9 10 10 12.9 700 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +7732800.0 16.7 14.4 87 97600 1136 1370 382 181 8 174 22101 504 21347 8879 310 11.3 10 10 4.8 210 9 999999999 20 0.0000 0 88 0.000 5.1 1.0 +7736400.0 13.9 11.7 87 97700 1190 1370 364 199 6 194 24317 398 23825 9813 290 9.3 10 10 3.2 460 9 999999999 21 0.0000 0 88 0.000 4.6 1.0 +7740000.0 13.3 11.7 90 97600 1167 1370 361 445 4 442 50856 367 50873 17981 260 4.1 10 10 24.1 1070 9 999999999 22 0.0000 0 88 0.000 0.8 1.0 +7743600.0 15.0 11.1 78 97600 1068 1370 369 342 2 340 39359 169 39379 14696 260 3.6 10 10 32.2 1520 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +7747200.0 17.2 11.7 70 97500 900 1370 347 607 574 231 70175 43083 26849 10247 260 6.7 4 4 40.2 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +7750800.0 18.3 9.4 56 97500 675 1370 347 415 510 164 47461 35174 18841 6824 280 7.2 4 3 40.2 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +7754400.0 17.8 3.3 38 97500 409 1370 340 193 271 113 21466 14930 12619 4002 270 7.2 5 4 40.2 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +7758000.0 16.7 2.8 40 97500 123 1290 332 48 101 37 5195 0 4018 1081 250 5.2 4 3 40.2 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +7761600.0 14.4 2.8 46 97600 0 0 314 0 0 0 0 0 0 0 270 5.2 1 1 40.2 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +7765200.0 12.8 3.3 53 97700 0 0 302 0 0 0 0 0 0 0 250 4.6 0 0 24.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +7768800.0 12.6 3.4 57 97700 0 0 301 0 0 0 0 0 0 0 270 4.4 0 0 24.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +7772400.0 12.3 3.5 55 97800 0 0 300 0 0 0 0 0 0 0 290 4.2 0 0 24.1 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +7776000.0 12.1 3.6 57 97800 0 0 299 0 0 0 0 0 0 0 270 4.0 0 0 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +7779600.0 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 12 0.0000 0 88 0.000 0.0 1.0 +7783200.0 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 13 0.0000 0 88 0.000 0.0 1.0 +7786800.0 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 13 0.0000 0 88 0.000 0.0 1.0 +7790400.0 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 14 0.0000 0 88 0.000 0.0 1.0 +7794000.0 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 15 0.0000 0 88 0.000 0.3 1.0 +7797600.0 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 15 0.0000 0 88 0.000 0.0 1.0 +7801200.0 12.8 3.9 55 98300 42 764 349 8 0 8 0 0 0 0 0 0.0 10 10 32.2 1520 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +7804800.0 10.6 7.8 83 98300 300 1369 343 40 3 40 4671 55 4680 1598 0 0.0 10 10 40.2 3050 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +7808400.0 12.8 5.0 59 98300 578 1369 350 143 4 141 16259 265 16099 5622 60 4.1 10 10 40.2 3050 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +7812000.0 13.3 3.3 51 98400 821 1369 351 145 5 142 17253 340 16965 6687 100 4.1 10 10 40.2 1220 9 999999999 19 0.0000 0 88 0.000 0.3 1.0 +7815600.0 13.3 5.0 57 98300 1013 1369 353 198 7 192 23701 505 23093 9352 80 5.2 10 10 40.2 3050 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +7819200.0 15.6 5.0 50 98300 1140 1369 364 379 3 376 43852 268 43791 16144 100 4.6 10 10 40.2 3050 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +7822800.0 16.1 5.6 50 98200 1193 1369 357 593 149 464 67974 14334 53569 18670 100 4.6 10 9 40.2 3050 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +7826400.0 17.2 6.1 48 98100 1170 1369 374 332 4 328 38978 333 38749 14829 90 3.1 10 10 40.2 910 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +7830000.0 17.2 6.7 50 98100 1071 1369 375 398 27 377 45554 2452 43435 15727 160 2.1 10 10 40.2 910 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +7833600.0 17.2 6.7 50 98100 903 1369 375 258 0 257 26703 0 26845 11086 90 4.1 10 10 40.2 910 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +7837200.0 17.8 7.8 52 98000 678 1369 379 222 2 221 24819 159 24838 8369 90 4.1 10 10 40.2 910 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +7840800.0 17.2 7.8 54 98000 412 1369 376 89 1 89 10085 46 10120 3405 100 3.6 10 10 40.2 820 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +7844400.0 17.2 7.8 54 98000 126 1312 376 34 0 34 3293 0 3316 1044 90 4.1 10 10 32.2 610 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +7848000.0 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 29 0.0000 0 88 0.000 0.0 1.0 +7851600.0 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 28 0.0000 0 88 0.000 0.0 1.0 +7855200.0 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 28 0.0000 0 88 0.000 0.0 1.0 +7858800.0 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 28 0.0000 0 88 0.000 0.0 1.0 +7862400.0 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 27 0.0000 0 88 0.000 0.0 1.0 +7866000.0 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 27 0.0000 0 88 0.000 0.0 1.0 +7869600.0 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 27 0.0000 0 88 0.000 0.0 1.0 +7873200.0 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 26 0.0000 0 88 0.000 0.0 1.0 +7876800.0 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 26 0.0000 0 88 0.000 0.0 1.0 +7880400.0 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 26 0.0000 0 88 0.000 0.0 1.0 +7884000.0 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 25 0.0000 0 88 0.000 0.0 1.0 +7887600.0 12.8 12.2 96 98000 45 787 359 14 0 14 1339 0 1348 342 190 2.6 10 10 3.2 90 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +7891200.0 13.3 13.3 100 98000 306 1368 363 38 0 37 3726 0 3655 1504 150 2.1 10 10 0.0 0 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +7894800.0 15.6 15.0 97 98000 584 1368 377 99 1 99 11529 52 11570 4297 150 3.1 10 10 0.8 30 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +7898400.0 17.2 15.6 90 98000 826 1368 386 265 1 265 29848 78 30022 10705 180 4.6 10 10 8.0 240 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +7902000.0 21.1 16.7 76 98000 1018 1368 389 519 152 407 58195 13560 45955 15919 200 6.7 8 8 12.9 760 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +7905600.0 22.2 17.2 73 97900 1144 1368 404 619 181 469 69901 16409 53354 18420 220 6.2 10 9 12.9 610 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +7909200.0 22.2 17.2 73 97900 1197 1368 415 278 5 273 33013 348 32613 12999 210 6.2 10 10 12.9 640 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +7912800.0 22.8 16.7 69 97800 1173 1368 406 550 172 403 63168 14352 46608 17058 210 6.2 10 9 12.9 700 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +7916400.0 24.4 16.7 62 97800 1074 1368 427 338 13 328 38901 1020 37991 14395 200 6.2 10 10 16.1 700 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +7920000.0 23.9 16.7 64 97700 906 1368 424 232 9 226 26803 632 26251 10125 180 7.2 10 10 16.1 820 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +7923600.0 25.0 16.7 60 97600 681 1368 418 202 61 171 22942 3949 19514 7074 180 6.2 9 9 24.1 9140 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +7927200.0 24.4 16.1 60 97600 415 1368 414 96 18 91 10812 747 10286 3475 180 5.2 9 9 24.1 1070 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +7930800.0 23.3 16.1 64 97600 129 1311 408 40 1 40 4289 0 4305 1160 180 4.6 9 9 24.1 7620 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +7934400.0 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 28 0.0000 0 88 0.000 0.0 1.0 +7938000.0 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 28 0.0000 0 88 0.000 0.0 1.0 +7941600.0 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 29 0.0000 0 88 0.000 0.0 1.0 +7945200.0 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 30 0.0000 0 88 0.000 0.0 1.0 +7948800.0 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 30 0.0000 0 88 0.000 0.0 1.0 +7952400.0 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 31 0.0000 0 88 0.000 0.0 1.0 +7956000.0 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 32 0.0000 0 88 0.000 0.0 1.0 +7959600.0 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 32 0.0000 0 88 0.000 0.0 1.0 +7963200.0 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 33 0.0000 0 88 0.000 0.0 1.0 +7966800.0 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 34 0.0000 0 88 0.000 0.0 1.0 +7970400.0 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 34 0.0000 0 88 0.000 1.3 1.0 +7974000.0 14.4 12.8 90 97800 49 809 368 10 1 10 1091 0 1093 302 220 1.5 10 10 24.1 1070 9 999999999 35 0.0000 0 88 0.000 0.5 1.0 +7977600.0 13.9 13.3 96 97800 312 1367 366 41 1 41 4783 17 4793 1652 220 2.6 10 10 6.4 1070 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +7981200.0 15.0 15.0 100 97900 589 1367 373 110 4 108 12739 215 12553 4632 320 1.5 10 10 9.7 90 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +7984800.0 15.6 14.4 93 97900 832 1367 376 134 2 132 15977 121 15802 6325 310 1.5 10 10 6.4 150 9 999999999 34 0.0000 0 88 0.000 0.3 1.0 +7988400.0 15.0 13.9 93 97900 1022 1367 372 222 5 218 26238 349 25901 10405 0 0.0 10 10 3.2 120 9 999999999 34 0.0000 0 88 0.000 0.3 1.0 +7992000.0 15.6 14.4 93 97800 1148 1367 376 234 3 231 28022 206 27814 11284 10 1.5 10 10 6.4 180 9 999999999 33 0.0000 0 88 0.000 0.3 1.0 +7995600.0 15.6 14.4 93 97800 1201 1367 376 435 1 435 49944 88 50301 18043 10 2.1 10 10 6.4 180 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +7999200.0 15.6 14.4 93 97800 1177 1367 376 474 2 472 53884 184 54051 18738 10 7.2 10 10 8.0 180 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +8002800.0 15.6 13.3 87 97800 1077 1367 374 372 0 371 38899 0 39176 15630 10 7.2 10 10 8.0 180 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +8006400.0 16.7 13.3 81 97700 909 1367 380 342 1 341 38348 88 38481 13334 30 3.6 10 10 24.1 820 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +8010000.0 17.2 13.9 81 97600 684 1367 384 234 1 233 25989 78 26021 8699 60 5.2 10 10 24.1 520 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +8013600.0 16.7 13.9 84 97500 418 1367 350 199 314 104 22228 14831 11662 3838 80 4.1 5 5 24.1 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +8017200.0 16.1 13.9 87 97600 132 1333 360 48 41 43 5137 0 4619 1221 90 4.1 9 8 24.1 7620 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +8020800.0 15.6 13.3 87 97500 0 0 344 0 0 0 0 0 0 0 110 6.2 5 5 24.1 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +8024400.0 15.0 13.3 90 97600 0 0 341 0 0 0 0 0 0 0 120 5.2 5 5 24.1 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +8028000.0 14.4 13.3 93 97500 0 0 336 0 0 0 0 0 0 0 120 4.1 4 4 24.1 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +8031600.0 13.9 12.8 93 97500 0 0 327 0 0 0 0 0 0 0 90 4.1 2 2 24.1 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +8035200.0 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 28 0.0000 0 88 0.000 0.0 1.0 +8038800.0 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 28 0.0000 0 88 0.000 0.0 1.0 +8042400.0 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 27 0.0000 0 88 0.000 0.0 1.0 +8046000.0 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 26 0.0000 0 88 0.000 0.0 1.0 +8049600.0 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 26 0.0000 0 88 0.000 0.0 1.0 +8053200.0 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 25 0.0000 0 88 0.000 0.0 1.0 +8056800.0 15.6 15.0 97 97200 0 0 340 0 0 0 0 0 0 0 180 3.6 3 3 6.4 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +8060400.0 16.7 16.1 97 97200 53 854 355 20 15 18 2086 0 1884 423 170 3.1 9 6 2.4 210 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +8064000.0 18.3 16.7 90 97100 318 1367 382 110 31 103 11898 1181 11190 3255 160 6.7 10 9 2.4 150 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +8067600.0 20.6 17.8 84 97100 595 1367 396 256 159 187 28327 10630 20799 6915 200 7.7 10 9 12.9 400 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +8071200.0 21.1 17.8 81 97100 837 1367 410 315 102 253 35615 7569 28769 10479 190 7.2 10 10 16.1 700 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +8074800.0 22.8 17.8 74 97000 1027 1367 419 381 8 376 43025 673 42748 15332 190 8.2 10 10 19.3 760 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +8078400.0 22.8 17.2 71 97000 1152 1367 418 339 19 323 39494 1433 37870 14610 200 7.7 10 10 24.1 850 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +8082000.0 23.3 17.8 71 96800 1205 1367 422 416 4 412 47866 329 47741 17474 200 8.2 10 10 24.1 1070 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +8085600.0 25.0 17.8 64 96600 1180 1367 411 666 386 334 77650 29050 39195 15068 190 9.3 8 8 24.1 1520 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +8089200.0 25.6 17.2 60 96400 1080 1367 434 287 9 280 33470 653 32849 12896 190 12.9 10 10 24.1 820 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +8092800.0 25.6 16.7 58 96300 912 1367 434 296 30 276 33694 2297 31604 11723 180 9.3 10 10 24.1 1520 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +8096400.0 25.6 15.6 54 96200 687 1367 432 193 13 187 21811 890 21238 7579 190 12.9 10 10 16.1 1520 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +8100000.0 25.0 15.6 56 96200 421 1367 429 102 6 101 11416 271 11348 3776 180 10.3 10 10 11.3 980 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +8103600.0 24.4 15.0 56 96200 135 1355 425 28 3 27 3120 0 3016 920 190 12.9 10 10 9.7 980 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +8107200.0 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 28 0.0000 0 88 0.000 0.0 1.0 +8110800.0 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 27 0.0000 0 88 0.000 0.0 1.0 +8114400.0 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 27 0.0000 0 88 0.000 0.0 1.0 +8118000.0 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 26 0.0000 0 88 0.000 0.0 1.0 +8121600.0 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 25 0.0000 0 88 0.000 3.3 1.0 +8125200.0 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 25 0.0000 0 88 0.000 0.0 1.0 +8128800.0 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 25 0.0000 0 88 0.000 0.0 1.0 +8132400.0 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 24 0.0000 0 88 0.000 0.0 1.0 +8136000.0 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 23 0.0000 0 88 0.000 0.0 1.0 +8139600.0 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 23 0.0000 0 88 0.000 0.0 1.0 +8143200.0 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 23 0.0000 0 88 0.000 0.0 1.0 +8146800.0 8.9 3.9 71 96700 56 876 314 21 7 21 2195 0 2203 472 260 4.6 9 8 40.2 1520 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +8150400.0 9.4 3.3 66 96700 324 1366 311 92 13 89 10174 543 9879 3024 250 6.2 8 7 40.2 2740 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +8154000.0 10.0 3.3 64 96800 600 1366 300 337 537 103 39504 32094 12115 4495 260 7.7 6 2 40.2 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +8157600.0 10.6 3.3 61 97000 842 1366 328 313 140 227 36036 11174 26271 9762 260 11.8 9 9 40.2 880 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +8161200.0 7.8 3.3 74 97100 1031 1366 316 487 131 388 55369 12410 44406 15664 270 11.8 9 9 32.2 910 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +8164800.0 10.0 1.7 57 97100 1156 1366 312 893 759 252 106995 58790 30360 12120 280 10.3 7 7 40.2 1070 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +8168400.0 10.0 -2.2 43 97200 1208 1366 304 821 588 302 97796 48520 36189 14083 290 9.3 6 6 40.2 1070 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +8172000.0 10.6 -2.2 41 97400 1183 1366 304 905 781 230 109699 59300 28027 11310 290 11.3 5 5 40.2 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +8175600.0 10.0 -2.8 41 97400 1083 1366 296 799 802 164 98019 56610 20208 8366 300 8.2 3 3 40.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +8179200.0 10.0 -3.3 39 97500 915 1366 298 590 611 182 70073 45631 21716 8603 300 8.8 4 4 40.2 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +8182800.0 10.0 -3.3 39 97600 690 1366 300 356 292 209 40234 23763 23740 8191 280 7.7 5 5 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +8186400.0 8.9 -3.9 41 97800 425 1366 298 230 345 124 25556 21068 13835 4347 300 7.7 6 6 40.2 1220 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +8190000.0 7.8 -5.0 40 97800 139 1354 285 52 179 32 5775 0 3563 1047 300 6.2 3 3 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +8193600.0 5.6 -4.4 49 98000 0 0 274 0 0 0 0 0 0 0 280 3.6 2 2 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +8197200.0 3.9 -3.3 60 98100 0 0 260 0 0 0 0 0 0 0 270 3.6 0 0 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +8200800.0 3.3 -2.8 65 98200 0 0 258 0 0 0 0 0 0 0 270 3.1 0 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +8204400.0 1.7 -2.8 73 98200 0 0 252 0 0 0 0 0 0 0 280 3.1 0 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +8208000.0 1.7 -2.8 73 98300 0 0 252 0 0 0 0 0 0 0 270 3.1 0 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +8211600.0 2.2 -2.8 70 98300 0 0 254 0 0 0 0 0 0 0 260 4.1 0 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +8215200.0 1.7 -2.8 73 98300 0 0 252 0 0 0 0 0 0 0 270 4.1 0 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +8218800.0 0.6 -2.8 79 98300 0 0 248 0 0 0 0 0 0 0 270 3.1 0 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +8222400.0 1.1 -2.8 76 98400 0 0 250 0 0 0 0 0 0 0 250 3.1 0 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +8226000.0 0.0 -2.8 82 98400 0 0 246 0 0 0 0 0 0 0 250 3.1 0 0 32.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +8229600.0 1.1 -2.8 76 98500 0 0 250 0 0 0 0 0 0 0 250 4.1 0 0 32.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +8233200.0 1.7 -2.8 73 98500 60 899 252 30 81 20 3180 0 2127 498 260 4.6 0 0 40.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +8236800.0 5.0 -1.7 62 98600 330 1365 265 176 514 54 20337 16140 6255 2116 290 4.6 0 0 48.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +8240400.0 7.2 -1.7 54 98700 606 1365 274 408 737 83 48757 42452 9947 3762 300 5.7 0 0 48.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +8244000.0 10.0 -4.4 36 98800 847 1365 282 621 833 107 75983 54413 13136 5313 270 4.6 0 0 48.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +8247600.0 11.7 -4.4 32 98800 1036 1365 289 804 899 123 83821 90650 16631 2954 300 7.2 0 0 48.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +8251200.0 13.3 -3.3 32 98700 1160 1365 297 917 925 133 95424 93622 17471 4260 290 7.7 0 0 48.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +8254800.0 14.4 -2.2 32 98700 1212 1365 303 964 934 137 100299 94692 17780 5189 270 9.3 0 0 48.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +8258400.0 15.0 -2.2 31 98700 1186 1365 305 945 934 135 98382 94660 17626 4693 280 8.8 0 0 48.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +8262000.0 15.6 -2.2 30 98600 1086 1365 308 851 911 127 88802 92154 16977 3382 290 8.2 0 0 48.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +8265600.0 15.6 -2.2 30 98600 918 1365 308 695 867 113 85603 56857 13967 5738 290 9.3 0 0 48.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +8269200.0 15.6 -1.7 31 98600 693 1365 308 487 781 92 58715 47788 11126 4326 290 8.8 0 0 48.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +8272800.0 15.0 -2.2 31 98700 428 1365 305 255 614 64 29894 27249 7522 2665 310 8.2 0 0 48.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +8276400.0 12.8 -1.7 37 98700 142 1365 297 57 227 32 6340 0 3568 1057 320 6.2 0 0 48.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +8280000.0 11.7 -1.7 40 98800 0 11 292 0 0 0 0 0 0 0 310 3.1 0 0 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +8283600.0 9.4 -1.7 46 98900 0 0 283 0 0 0 0 0 0 0 310 2.6 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +8287200.0 6.7 -1.7 56 98900 0 0 272 0 0 0 0 0 0 0 290 4.1 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +8290800.0 6.1 -1.1 60 99000 0 0 270 0 0 0 0 0 0 0 270 3.6 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +8294400.0 5.0 -1.1 65 99000 0 0 266 0 0 0 0 0 0 0 280 3.6 0 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +8298000.0 3.9 -1.1 70 99100 0 0 262 0 0 0 0 0 0 0 280 4.1 0 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +8301600.0 3.9 -1.1 70 99100 0 0 262 0 0 0 0 0 0 0 280 3.1 0 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +8305200.0 4.4 -0.6 70 99000 0 0 264 0 0 0 0 0 0 0 200 1.5 0 0 40.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +8308800.0 3.9 -0.6 73 99100 0 0 262 0 0 0 0 0 0 0 260 2.1 0 0 40.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +8312400.0 3.3 -1.1 73 99100 0 0 260 0 0 0 0 0 0 0 300 1.0 0 0 40.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +8316000.0 2.8 0.0 82 99100 0 0 259 0 0 0 0 0 0 0 210 2.6 0 0 40.2 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +8319600.0 2.8 0.0 82 99100 64 943 259 36 169 17 3896 0 1845 485 190 2.1 0 0 40.2 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +8323200.0 7.2 1.7 68 99200 336 1364 283 180 569 42 21234 15333 4964 1724 210 2.1 1 1 40.2 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +8326800.0 11.7 1.1 49 99200 611 1364 315 281 287 153 32021 20200 17511 6157 200 2.1 6 6 40.2 3660 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +8330400.0 15.6 2.2 41 99200 852 1364 319 598 850 70 63843 85784 10108 1821 200 5.2 1 1 40.2 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +8334000.0 17.8 2.2 35 99200 1040 1364 322 790 927 85 83869 94358 11745 2575 200 5.2 0 0 40.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +8337600.0 19.4 4.4 37 99100 1164 1364 332 916 967 92 97277 98969 12362 3522 270 6.2 0 0 40.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +8341200.0 21.7 5.0 34 99000 1215 1364 343 959 972 95 101812 99631 12613 4196 270 6.2 0 0 40.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +8344800.0 22.2 6.7 37 98900 1189 1364 348 933 964 94 99387 99030 12558 3843 270 6.2 0 0 40.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +8348400.0 24.4 5.6 30 98800 1089 1364 357 848 953 88 90379 97565 12031 2882 260 11.3 0 0 56.3 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +8352000.0 24.4 6.7 32 98700 921 1364 358 697 917 78 74708 93489 11074 2075 260 7.7 0 0 48.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +8355600.0 24.4 5.0 29 98600 696 1364 363 463 765 74 56671 42819 9081 3573 280 7.2 1 1 40.2 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +8359200.0 23.9 6.1 32 98600 431 1364 362 254 669 45 30546 24504 5421 1969 260 7.7 1 1 40.2 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +8362800.0 21.1 6.1 38 98600 145 1364 342 64 364 24 7284 0 2737 859 270 4.1 0 0 40.2 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +8366400.0 16.7 7.2 54 98700 0 34 323 0 0 0 0 0 0 0 250 4.1 0 0 40.2 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +8370000.0 16.1 6.7 54 98700 0 0 320 0 0 0 0 0 0 0 240 2.6 0 0 40.2 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +8373600.0 15.0 7.8 62 98700 0 0 316 0 0 0 0 0 0 0 240 4.1 0 0 40.2 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +8377200.0 13.3 8.9 75 98700 0 0 310 0 0 0 0 0 0 0 240 4.1 0 0 40.2 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +8380800.0 12.8 8.9 77 98700 0 0 308 0 0 0 0 0 0 0 240 4.1 0 0 40.2 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +8384400.0 12.2 8.9 80 98700 0 0 305 0 0 0 0 0 0 0 230 4.1 0 0 40.2 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +8388000.0 11.1 8.3 83 98600 0 0 300 0 0 0 0 0 0 0 230 4.1 0 0 40.2 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +8391600.0 13.3 7.2 67 98600 0 0 308 0 0 0 0 0 0 0 250 4.1 0 0 40.2 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +8395200.0 12.8 7.2 69 98600 0 0 306 0 0 0 0 0 0 0 250 4.1 0 0 40.2 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +8398800.0 11.7 7.2 74 98600 0 0 301 0 0 0 0 0 0 0 240 3.1 0 0 40.2 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +8402400.0 9.4 7.2 86 98600 0 0 292 0 0 0 0 0 0 0 230 3.6 0 0 40.2 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +8406000.0 10.0 7.2 83 98600 69 966 294 37 188 17 4022 0 1853 504 240 4.1 0 0 40.2 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +8409600.0 15.0 8.3 65 98700 342 1363 317 197 647 37 23453 15030 4412 1552 270 5.2 0 0 40.2 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +8413200.0 17.2 8.3 56 98700 617 1363 326 426 824 56 46131 81477 8491 1341 300 5.2 0 0 40.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +8416800.0 20.6 10.0 51 98700 856 1363 344 640 909 72 69208 92887 10392 1856 300 4.1 0 0 40.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +8420400.0 22.2 8.9 43 98700 1044 1363 350 804 945 82 86413 97195 11362 2544 30 4.1 0 0 40.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +8424000.0 23.9 7.8 36 98700 1168 1363 357 922 974 89 98590 100236 11982 3486 360 5.2 0 0 40.2 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +8427600.0 24.4 6.1 31 98700 1218 1363 357 969 983 92 103159 100948 12232 4157 320 4.1 0 0 40.2 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +8431200.0 25.6 2.2 22 98700 1192 1363 358 947 980 90 100300 100087 12033 3771 320 5.2 0 0 40.2 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +8434800.0 25.6 2.8 23 98600 1092 1363 371 783 780 159 96284 53254 19638 8162 360 7.2 2 2 40.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +8438400.0 25.6 2.2 22 98500 923 1363 358 702 925 76 74779 93753 10789 2057 320 5.2 0 0 40.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +8442000.0 25.6 3.3 24 98500 699 1363 360 502 863 62 53806 85874 9230 1502 320 5.2 0 0 40.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +8445600.0 24.4 2.2 23 98500 434 1363 352 277 741 44 29770 68526 6892 1021 360 5.2 0 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +8449200.0 21.7 2.2 28 98500 148 1363 340 67 388 24 7651 0 2746 864 350 5.2 0 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +8452800.0 20.6 -0.6 24 98600 0 57 332 0 0 0 0 0 0 0 350 5.7 0 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +8456400.0 17.8 -1.1 28 98700 0 0 318 0 0 0 0 0 0 0 340 3.6 0 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +8460000.0 16.7 -1.1 30 98700 0 0 314 0 0 0 0 0 0 0 330 3.6 0 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +8463600.0 14.4 -0.6 36 98700 0 0 304 0 0 0 0 0 0 0 340 4.1 0 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +8467200.0 13.3 -1.1 37 98800 0 0 299 0 0 0 0 0 0 0 340 4.6 0 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +8470800.0 11.7 -1.1 41 98800 0 0 293 0 0 0 0 0 0 0 340 4.1 0 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +8474400.0 11.1 -1.1 43 98800 0 0 290 0 0 0 0 0 0 0 340 4.1 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +8478000.0 11.1 -1.7 41 98800 0 0 290 0 0 0 0 0 0 0 340 4.1 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +8481600.0 8.9 -1.1 50 98800 0 0 281 0 0 0 0 0 0 0 350 3.6 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +8485200.0 7.8 -0.6 56 98800 0 0 277 0 0 0 0 0 0 0 340 3.6 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +8488800.0 6.7 -0.6 60 98900 0 0 273 0 0 0 0 0 0 0 350 4.6 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +8492400.0 8.9 -1.1 50 98900 73 988 281 38 162 20 4113 0 2171 573 350 4.6 0 0 48.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +8496000.0 11.1 -0.6 45 99100 348 1362 291 200 619 44 23607 18495 5204 1813 50 5.2 0 0 48.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +8499600.0 13.3 -1.1 37 99100 622 1362 299 432 808 66 52698 44216 8070 3105 70 5.2 0 0 48.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +8503200.0 15.6 -2.2 30 99100 861 1362 308 642 887 84 67832 89068 11978 1985 90 4.1 0 0 48.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +8506800.0 16.7 -1.7 29 99100 1049 1362 313 815 936 96 85816 94841 13139 2793 60 5.2 0 0 48.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +8510400.0 18.3 -2.2 25 99100 1171 1362 319 930 963 104 97592 97784 13831 3904 90 3.1 0 0 48.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +8514000.0 20.0 -1.1 24 99100 1221 1362 328 975 969 107 102310 98556 14065 4687 320 3.1 0 0 48.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +8517600.0 20.6 1.1 28 99100 1195 1362 334 953 967 105 100329 98542 13896 4233 0 0.0 0 0 48.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +8521200.0 21.7 1.7 27 99000 1094 1362 339 860 947 100 90784 96392 13540 3142 140 2.1 0 0 48.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +8524800.0 21.7 -1.1 22 98900 926 1362 336 706 911 88 74586 91932 12375 2205 170 1.5 0 0 48.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +8528400.0 21.7 -0.6 23 98900 702 1362 337 502 838 72 53311 82957 10621 1582 130 1.5 0 0 48.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +8532000.0 21.1 1.7 28 98900 437 1362 337 272 695 51 32500 28165 6106 2210 160 2.1 0 0 48.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +8535600.0 17.2 3.3 40 98900 152 1362 321 66 341 27 7478 0 3066 954 180 2.6 0 0 48.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +8539200.0 13.9 2.8 47 98900 0 57 306 0 0 0 0 0 0 0 240 2.6 0 0 40.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +8542800.0 13.3 2.8 49 99000 0 0 303 0 0 0 0 0 0 0 230 2.6 0 0 40.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +8546400.0 11.7 3.9 59 99000 0 0 298 0 0 0 0 0 0 0 240 2.6 0 0 40.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +8550000.0 12.2 2.8 53 99000 0 0 299 0 0 0 0 0 0 0 220 2.6 0 0 40.2 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +8553600.0 11.7 1.1 49 99000 0 0 295 0 0 0 0 0 0 0 270 2.6 0 0 40.2 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +8557200.0 11.7 1.1 49 99000 0 0 295 0 0 0 0 0 0 0 270 2.6 0 0 40.2 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +8560800.0 10.0 1.7 57 99000 0 0 289 0 0 0 0 0 0 0 0 0.0 0 0 40.2 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +8564400.0 10.6 1.7 54 99000 0 0 291 0 0 0 0 0 0 0 0 0.0 0 0 40.2 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +8568000.0 8.9 2.8 66 99000 0 0 285 0 0 0 0 0 0 0 0 0.0 0 0 40.2 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +8571600.0 8.9 3.3 68 99000 0 0 286 0 0 0 0 0 0 0 0 0.0 0 0 40.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +8575200.0 8.3 2.2 66 99100 0 0 282 0 0 0 0 0 0 0 0 0.0 0 0 40.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +8578800.0 8.9 1.7 61 99200 77 1033 284 30 48 25 3204 0 2679 665 220 2.1 0 0 40.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +8582400.0 12.2 5.0 62 99200 353 1362 301 176 414 70 20026 15430 7989 2664 0 0.0 0 0 40.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +8586000.0 15.6 3.9 46 99300 627 1362 314 401 635 110 47024 39034 12945 4837 220 2.6 0 0 40.2 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +8589600.0 18.3 3.3 37 99300 866 1362 326 616 749 142 73883 50824 17101 6851 230 4.6 0 0 40.2 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +8593200.0 20.0 3.3 33 99300 1053 1362 333 788 810 164 96141 55915 20098 8309 240 2.1 0 0 40.2 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +8596800.0 21.7 3.9 31 99300 1175 1362 342 901 842 176 111173 57856 21818 9017 180 2.6 0 0 40.2 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +8600400.0 23.3 3.9 28 99200 1225 1362 349 947 853 181 117368 58540 22540 9290 200 2.6 0 0 40.2 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +8604000.0 25.0 4.4 27 99100 1198 1362 358 921 845 178 113878 57835 22113 9130 360 1.5 0 0 40.2 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +8607600.0 25.6 4.4 26 99100 1097 1362 361 829 822 168 101565 56353 20676 8573 230 1.5 0 0 40.2 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +8611200.0 25.6 5.0 27 99000 929 1362 362 673 769 150 81146 52159 18162 7381 240 1.5 0 0 40.2 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +8614800.0 25.0 8.9 36 99000 704 1362 364 469 674 121 55299 41833 14321 5502 130 2.1 0 0 40.2 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +8618400.0 23.3 8.3 38 99000 440 1362 355 243 498 83 27904 23155 9562 3329 180 3.1 0 0 40.2 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +8622000.0 20.0 8.3 47 99000 155 1362 339 52 138 37 5741 0 4097 1209 180 3.6 0 0 40.2 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +8625600.0 18.9 7.8 49 99100 0 79 333 0 0 0 0 0 0 0 190 3.6 0 0 40.2 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +8629200.0 18.3 7.8 50 99100 0 0 331 0 0 0 0 0 0 0 190 3.6 0 0 40.2 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +8632800.0 15.0 8.3 65 99200 0 0 317 0 0 0 0 0 0 0 200 3.1 0 0 40.2 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +8636400.0 13.3 8.3 72 99200 0 0 309 0 0 0 0 0 0 0 210 3.1 0 0 40.2 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +8640000.0 13.3 8.3 72 99200 0 0 309 0 0 0 0 0 0 0 220 3.6 0 0 40.2 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +8643600.0 12.2 7.8 75 99200 0 0 304 0 0 0 0 0 0 0 240 3.6 0 0 40.2 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +8647200.0 12.2 7.8 75 99200 0 0 304 0 0 0 0 0 0 0 230 2.6 0 0 40.2 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +8650800.0 12.2 7.2 72 99200 0 0 303 0 0 0 0 0 0 0 0 0.0 0 0 40.2 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +8654400.0 12.2 7.2 72 99200 0 0 303 0 0 0 0 0 0 0 250 3.6 0 0 40.2 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +8658000.0 11.1 6.1 72 99300 0 0 298 0 0 0 0 0 0 0 260 3.1 0 0 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +8661600.0 11.1 6.7 74 99300 0 0 298 0 0 0 0 0 0 0 270 2.6 0 0 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +8665200.0 11.7 7.2 74 99400 81 1055 301 40 155 22 4336 0 2392 646 0 0.0 0 0 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +8668800.0 17.2 8.3 56 99400 359 1361 326 202 590 49 23652 17369 5750 2008 290 2.6 0 0 32.2 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +8672400.0 19.4 8.3 49 99500 632 1361 336 430 774 73 52006 40810 8852 3417 270 3.6 0 0 32.2 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +8676000.0 21.7 7.8 41 99500 870 1361 346 641 862 92 68507 87656 13055 2065 310 2.1 0 0 32.2 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +8679600.0 23.3 8.3 38 99500 1057 1361 355 808 907 105 86104 93063 14300 2965 300 2.1 0 0 32.2 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +8683200.0 25.0 9.4 37 99500 1179 1361 364 919 931 113 97895 95956 14967 4211 360 1.0 0 0 32.2 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +8686800.0 26.7 8.9 33 99400 1228 1361 372 961 938 116 102148 96648 15184 5092 40 3.6 0 0 32.2 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +8690400.0 26.7 7.2 29 99300 1201 1361 370 937 933 114 99327 95818 15012 4565 200 1.5 0 0 32.2 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +8694000.0 27.8 8.9 31 99300 1100 1361 377 843 911 108 89857 93675 14564 3316 170 2.1 0 0 32.2 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +8697600.0 27.2 7.8 29 99200 931 1361 380 650 820 89 69545 83733 12517 2235 220 1.5 1 1 32.2 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +8701200.0 27.2 8.9 32 99200 707 1361 382 466 738 84 56535 41317 10220 4027 260 2.1 1 1 32.2 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +8704800.0 25.0 8.3 35 99200 443 1361 363 266 650 56 31529 25728 6653 2408 170 3.1 0 0 32.2 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +8708400.0 21.7 8.9 44 99200 158 1361 348 64 305 29 7220 0 3279 1022 180 3.6 0 0 32.2 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +8712000.0 21.1 8.3 44 99200 12 102 344 2 1 1 0 0 0 0 200 3.1 0 0 32.2 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +8715600.0 21.1 8.9 46 99300 0 0 345 0 0 0 0 0 0 0 210 4.6 0 0 24.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +8719200.0 17.2 9.4 60 99300 0 0 328 0 0 0 0 0 0 0 200 3.1 0 0 24.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +8722800.0 15.0 10.0 72 99300 0 0 318 0 0 0 0 0 0 0 220 3.1 0 0 24.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +8726400.0 15.0 10.0 72 99300 0 0 318 0 0 0 0 0 0 0 220 3.1 0 0 24.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +8730000.0 15.0 9.4 70 99300 0 0 318 0 0 0 0 0 0 0 260 3.1 0 0 24.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +8733600.0 13.9 8.9 72 99300 0 0 312 0 0 0 0 0 0 0 250 3.1 0 0 24.1 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +8737200.0 13.9 8.9 72 99300 0 0 312 0 0 0 0 0 0 0 270 2.6 0 0 24.1 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +8740800.0 14.4 8.3 67 99300 0 0 314 0 0 0 0 0 0 0 300 2.1 0 0 24.1 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +8744400.0 13.9 8.3 69 99300 0 0 312 0 0 0 0 0 0 0 320 1.5 0 0 24.1 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +8748000.0 13.9 8.3 69 99300 0 0 318 0 0 0 0 0 0 0 0 0.0 1 1 24.1 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +8751600.0 16.1 7.8 58 99400 86 1077 340 33 49 27 3535 0 2902 745 320 1.5 5 5 24.1 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +8755200.0 18.3 9.4 56 99400 365 1360 352 158 239 94 17578 10496 10498 3342 280 2.6 5 5 24.1 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +8758800.0 18.9 10.0 57 99400 637 1360 350 337 385 158 38383 25991 18077 6456 300 2.6 3 3 19.3 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +8762400.0 22.2 11.1 50 99400 875 1360 368 590 657 170 69670 44466 20166 7992 300 2.6 4 3 19.3 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +8766000.0 25.0 11.1 42 99400 1060 1360 378 762 759 172 92453 50058 20966 8676 280 4.1 3 2 19.3 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +8769600.0 26.1 11.1 39 99300 1182 1360 379 864 853 124 92145 88163 16328 4494 260 3.1 1 1 19.3 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +8773200.0 27.8 8.9 31 99200 1231 1360 377 955 912 131 101142 93883 17007 5577 30 2.6 0 0 19.3 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +8776800.0 28.9 9.4 30 99100 1204 1360 400 829 696 215 100956 48399 26320 10735 350 3.6 3 3 24.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +8780400.0 28.3 9.4 31 99000 1102 1360 397 803 726 216 96420 51656 26071 10607 180 3.1 3 3 24.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +8784000.0 27.8 7.8 28 99000 934 1360 402 566 416 281 64979 34458 32447 12068 120 2.6 6 6 32.2 1370 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +8787600.0 27.2 8.3 30 98900 710 1360 396 464 609 147 53960 40625 17167 6464 200 1.5 5 5 32.2 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +8791200.0 23.9 10.0 42 98900 446 1360 371 196 290 102 22154 14764 11572 3918 180 2.6 3 2 32.2 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +8794800.0 22.8 10.6 46 98900 161 1360 355 63 248 34 7023 0 3800 1158 160 2.6 2 0 24.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +8798400.0 21.1 8.9 46 99000 12 125 345 2 1 1 0 0 0 0 170 3.1 0 0 24.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +8802000.0 19.4 9.4 53 99000 0 0 338 0 0 0 0 0 0 0 180 3.6 0 0 24.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +8805600.0 17.8 10.0 61 99000 0 0 331 0 0 0 0 0 0 0 200 2.1 0 0 24.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +8809200.0 18.3 8.9 54 99000 0 0 332 0 0 0 0 0 0 0 220 1.5 0 0 24.1 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +8812800.0 17.2 8.9 58 99000 0 0 327 0 0 0 0 0 0 0 190 2.1 0 0 24.1 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +8816400.0 16.7 8.9 60 98900 0 0 325 0 0 0 0 0 0 0 240 2.1 0 0 24.1 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +8820000.0 15.0 9.4 70 98900 0 0 318 0 0 0 0 0 0 0 270 2.6 0 0 24.1 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +8823600.0 15.0 9.4 70 98800 0 0 318 0 0 0 0 0 0 0 260 2.1 0 0 24.1 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +8827200.0 14.4 8.9 70 98800 0 0 315 0 0 0 0 0 0 0 240 2.1 0 0 24.1 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +8830800.0 13.3 8.9 75 98800 0 0 310 0 0 0 0 0 0 0 0 0.0 0 0 24.1 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +8834400.0 13.3 9.4 78 98800 0 0 316 0 0 0 0 0 0 0 0 0.0 1 1 24.1 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +8838000.0 12.2 9.4 83 98900 90 1099 316 34 124 21 3737 0 2314 662 0 0.0 2 2 19.3 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +8841600.0 15.6 11.7 78 98900 370 1359 339 195 471 68 22282 16343 7793 2655 180 2.1 4 4 16.1 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +8845200.0 18.3 12.2 68 98900 642 1359 356 363 450 151 41487 29177 17334 6273 180 3.1 6 5 16.1 1830 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +8848800.0 21.1 12.8 59 98900 879 1359 367 562 530 221 64999 38818 25694 9831 240 3.1 4 4 16.1 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +8852400.0 24.4 12.8 48 98900 1064 1359 365 815 924 93 88090 95817 12754 2849 210 2.1 0 0 16.1 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +8856000.0 26.1 11.7 41 98800 1185 1359 372 919 940 100 98779 97448 13332 4005 140 1.5 0 0 19.3 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +8859600.0 26.7 9.4 34 98700 1234 1359 373 965 952 102 103069 98284 13438 4802 160 2.6 0 0 19.3 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +8863200.0 26.7 8.3 31 98600 1206 1359 397 601 357 284 71728 27402 34096 13448 120 4.1 6 6 24.1 1220 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +8866800.0 27.2 7.2 28 98500 1105 1359 398 680 519 259 80638 39858 30886 12269 180 2.6 6 6 24.1 1680 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +8870400.0 26.7 6.1 27 98400 936 1359 394 640 614 218 75053 46502 25696 10048 130 2.1 6 6 24.1 3660 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +8874000.0 26.1 7.8 31 98300 713 1359 389 366 239 241 40940 19680 27106 9172 150 4.1 5 5 24.1 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +8877600.0 23.9 10.0 42 98300 449 1359 366 261 638 52 31136 24295 6217 2268 180 3.6 1 1 24.1 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +8881200.0 21.1 9.4 47 98300 165 1359 345 71 372 27 8084 0 3080 978 170 3.1 0 0 24.1 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +8884800.0 20.0 9.4 51 98300 18 125 340 3 4 1 0 0 0 0 180 2.6 0 0 24.1 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +8888400.0 18.9 9.4 54 98300 0 0 335 0 0 0 0 0 0 0 180 3.1 0 0 24.1 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +8892000.0 17.8 9.4 58 98300 0 0 330 0 0 0 0 0 0 0 200 2.1 0 0 24.1 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +8895600.0 18.3 8.9 54 98300 0 0 332 0 0 0 0 0 0 0 210 2.1 0 0 24.1 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +8899200.0 16.1 9.4 65 98300 0 0 323 0 0 0 0 0 0 0 200 1.5 0 0 24.1 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +8902800.0 15.0 8.3 65 98300 0 0 317 0 0 0 0 0 0 0 230 1.5 0 0 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +8906400.0 14.4 8.3 67 98200 0 0 314 0 0 0 0 0 0 0 250 2.6 0 0 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +8910000.0 13.9 7.8 67 98200 0 0 311 0 0 0 0 0 0 0 0 0.0 0 0 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +8913600.0 13.9 7.8 67 98200 0 0 311 0 0 0 0 0 0 0 0 0.0 0 0 19.3 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +8917200.0 12.8 7.2 69 98200 0 0 306 0 0 0 0 0 0 0 0 0.0 0 0 19.3 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +8920800.0 11.7 6.7 72 98200 0 0 301 0 0 0 0 0 0 0 270 1.5 0 0 19.3 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +8924400.0 12.2 8.3 77 98200 95 1143 304 48 244 21 5306 0 2327 676 280 2.1 0 0 16.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +8928000.0 16.1 11.1 72 98300 375 1359 324 224 669 41 26684 18211 4893 1745 240 3.1 0 0 16.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +8931600.0 19.4 10.6 57 98300 647 1359 339 448 821 60 48682 82040 9030 1417 290 3.6 0 0 19.3 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +8935200.0 21.1 10.6 51 98300 883 1359 347 656 897 75 70958 91943 10747 1955 300 3.1 0 0 19.3 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +8938800.0 23.9 10.6 43 98300 1068 1359 360 821 937 86 88444 96748 11828 2749 340 2.6 0 0 19.3 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +8942400.0 26.1 10.0 36 98200 1188 1359 370 932 961 93 99978 99320 12435 3861 340 2.6 0 0 19.3 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +8946000.0 26.7 7.2 29 98100 1236 1359 370 975 968 95 103889 99595 12552 4624 270 1.5 0 0 19.3 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +8949600.0 27.2 7.2 28 98100 1209 1359 388 897 779 204 109874 54177 25115 10280 10 2.1 3 3 19.3 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +8953200.0 27.2 8.3 30 98000 1107 1359 386 814 829 139 101165 52695 17346 7275 200 1.5 2 2 24.1 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +8956800.0 27.2 7.8 29 97900 939 1359 385 667 801 115 82107 49739 14208 5882 180 5.2 2 2 24.1 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +8960400.0 26.7 7.8 30 97900 715 1359 378 490 789 77 59963 43846 9448 3743 100 1.5 1 1 24.1 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +8964000.0 25.0 9.4 37 97900 452 1359 364 283 720 46 30769 67961 7186 1060 190 3.6 0 0 24.1 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +8967600.0 21.7 8.9 44 98000 168 1359 348 74 403 26 8469 0 2981 954 180 3.1 0 0 24.1 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +8971200.0 21.1 8.3 44 98000 24 147 344 4 7 1 0 0 0 0 190 3.6 0 0 24.1 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +8974800.0 20.0 8.9 49 98000 0 0 340 0 0 0 0 0 0 0 190 4.6 0 0 19.3 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +8978400.0 17.2 8.9 58 98000 0 0 327 0 0 0 0 0 0 0 210 2.6 0 0 19.3 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +8982000.0 16.7 8.3 58 98100 0 0 324 0 0 0 0 0 0 0 210 2.1 0 0 19.3 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +8985600.0 15.0 6.7 58 98100 0 0 315 0 0 0 0 0 0 0 250 2.6 0 0 24.1 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +8989200.0 14.4 6.7 60 98100 0 0 312 0 0 0 0 0 0 0 240 2.1 0 0 24.1 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +8992800.0 12.8 5.6 62 98100 0 0 304 0 0 0 0 0 0 0 270 3.6 0 0 24.1 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +8996400.0 14.4 5.0 53 98000 0 0 310 0 0 0 0 0 0 0 250 2.6 0 0 24.1 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +9000000.0 12.2 4.4 59 98100 0 0 300 0 0 0 0 0 0 0 290 4.1 0 0 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +9003600.0 11.7 5.6 66 98100 0 0 300 0 0 0 0 0 0 0 310 2.1 0 0 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +9007200.0 11.7 5.6 66 98100 0 0 300 0 0 0 0 0 0 0 0 0.0 2 0 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +9010800.0 13.9 6.1 60 98200 100 1165 309 35 35 32 3756 0 3446 893 240 1.5 2 0 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +9014400.0 18.3 7.8 50 98200 381 1358 331 182 349 86 20515 15192 9727 3212 270 2.6 0 0 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +9018000.0 20.6 6.1 39 98200 652 1358 339 405 564 136 46915 37023 15818 5840 290 3.6 0 0 24.1 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +9021600.0 23.3 6.1 33 98300 887 1358 352 616 679 174 72951 48058 20701 8203 290 3.6 0 0 24.1 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +9025200.0 25.6 6.1 29 98200 1072 1358 363 784 741 201 94400 53103 24322 9925 310 3.1 0 0 24.1 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +9028800.0 26.7 6.1 27 98200 1192 1358 368 898 778 216 109330 55599 26435 10762 320 1.5 0 0 24.1 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +9032400.0 26.7 6.1 27 98100 1239 1358 368 942 790 222 115174 56359 27287 11083 260 2.1 0 0 24.1 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +9036000.0 27.8 5.6 24 98100 1211 1358 373 915 782 218 111640 55981 26738 10875 60 4.1 0 0 24.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +9039600.0 27.8 7.2 27 98100 1110 1358 375 821 755 205 99202 53618 24895 10179 120 3.1 0 0 24.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +9043200.0 28.3 7.8 27 98000 941 1358 386 637 660 180 75835 46280 21529 8651 170 4.1 1 1 24.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +9046800.0 26.7 7.2 29 98000 718 1358 370 457 589 147 53261 39624 17204 6504 150 2.6 0 0 24.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +9050400.0 25.0 8.9 36 98000 454 1358 364 238 416 100 27025 21421 11397 3900 170 4.1 0 0 24.1 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +9054000.0 23.3 10.0 43 98000 171 1358 363 48 92 37 5345 0 4131 1258 180 2.6 1 1 24.1 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +9057600.0 21.7 8.3 43 98000 6 170 347 1 0 1 0 0 0 0 180 2.6 0 0 24.1 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +9061200.0 19.4 8.3 49 98100 0 0 336 0 0 0 0 0 0 0 230 2.6 0 0 24.1 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +9064800.0 19.4 7.2 45 98100 0 0 342 0 0 0 0 0 0 0 40 1.5 1 1 24.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +9068400.0 19.4 8.3 49 98100 0 0 336 0 0 0 0 0 0 0 80 1.5 0 0 24.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +9072000.0 18.3 7.8 50 98200 0 0 331 0 0 0 0 0 0 0 150 2.1 0 0 19.3 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +9075600.0 16.7 7.2 54 98200 0 0 329 0 0 0 0 0 0 0 0 0.0 1 1 19.3 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +9079200.0 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 20 0.0000 0 88 0.000 0.0 1.0 +9082800.0 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 20 0.0000 0 88 0.000 0.0 1.0 +9086400.0 15.0 7.2 60 98100 0 0 332 0 0 0 0 0 0 0 240 1.5 4 4 24.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +9090000.0 13.3 6.7 64 98200 0 0 307 0 0 0 0 0 0 0 0 0.0 0 0 24.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +9093600.0 13.3 6.7 64 98200 0 0 307 0 0 0 0 0 0 0 250 1.5 1 0 11.3 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +9097200.0 13.3 8.3 72 98300 104 1187 309 36 61 30 3899 0 3260 887 250 1.5 0 0 11.3 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +9100800.0 18.3 9.4 56 98300 386 1357 333 195 412 79 22149 16877 9002 3035 310 2.6 0 0 11.3 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +9104400.0 21.1 9.4 47 98300 656 1357 345 417 616 121 48727 37785 14193 5341 330 3.6 0 0 16.1 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +9108000.0 22.2 9.4 44 98300 892 1357 351 627 722 153 74939 47874 18365 7394 290 2.6 0 0 16.1 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +9111600.0 26.1 8.3 32 98300 1075 1357 368 798 787 175 97067 53291 21386 8843 320 2.6 0 0 16.1 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +9115200.0 27.2 7.8 29 98200 1195 1357 373 908 818 189 111637 55593 23351 9616 340 4.6 0 0 16.1 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +9118800.0 28.3 7.8 27 98200 1242 1357 379 948 825 193 117096 55901 23958 9844 320 1.5 0 0 16.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +9122400.0 28.9 7.2 26 98100 1214 1357 397 886 709 252 106903 52506 30577 12256 270 2.6 3 3 16.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +9126000.0 27.2 7.8 29 98100 1112 1357 392 724 535 286 85287 42341 33889 13263 180 2.1 4 4 16.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +9129600.0 26.7 9.4 34 98000 944 1357 398 573 386 304 65444 32618 34931 12815 240 2.1 6 6 16.1 1370 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +9133200.0 26.7 7.8 30 98000 720 1357 396 344 280 195 39212 20924 22338 8053 300 2.6 6 6 16.1 1370 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +9136800.0 25.6 10.6 39 98000 457 1357 405 170 72 146 18712 4490 16145 5044 140 3.6 8 8 16.1 2440 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +9140400.0 22.2 11.1 50 98000 174 1357 387 37 10 36 4134 0 4033 1242 180 2.6 8 8 16.1 3050 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +9144000.0 22.2 8.3 41 98100 12 192 367 2 0 2 0 0 0 0 0 0.0 4 4 16.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +9147600.0 21.7 10.0 48 98100 0 0 367 0 0 0 0 0 0 0 0 0.0 4 4 16.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +9151200.0 19.4 10.0 55 98100 0 0 353 0 0 0 0 0 0 0 180 2.1 3 3 16.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +9154800.0 17.2 11.7 70 98100 0 0 341 0 0 0 0 0 0 0 260 2.1 2 2 16.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +9158400.0 16.1 10.6 70 98100 0 0 324 0 0 0 0 0 0 0 260 3.1 0 0 16.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +9162000.0 16.1 9.4 65 98100 0 0 323 0 0 0 0 0 0 0 260 4.1 0 0 16.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +9165600.0 15.0 8.3 65 98100 0 0 317 0 0 0 0 0 0 0 270 4.1 0 0 19.3 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +9169200.0 15.0 8.3 65 98100 0 0 323 0 0 0 0 0 0 0 360 3.6 4 1 24.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +9172800.0 14.4 7.2 62 98100 0 0 319 0 0 0 0 0 0 0 280 4.6 3 1 24.1 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +9176400.0 15.0 7.2 60 98100 0 0 321 0 0 0 0 0 0 0 290 5.2 3 1 24.1 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +9180000.0 13.3 7.8 69 98200 0 0 315 0 0 0 0 0 0 0 280 4.6 5 1 24.1 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +9183600.0 15.0 8.9 67 98200 109 1209 323 45 166 27 4938 0 2971 850 290 4.1 3 1 16.1 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +9187200.0 17.8 9.4 58 98200 391 1356 330 221 579 56 25837 19999 6563 2314 300 3.6 1 0 14.5 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +9190800.0 20.0 10.6 55 98300 661 1356 342 446 757 78 53927 40202 9457 3685 340 4.1 0 0 14.5 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +9194400.0 22.8 10.6 46 98300 896 1356 370 585 646 160 69687 42939 19144 7691 330 4.1 3 3 12.9 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +9198000.0 25.6 10.6 39 98300 1079 1356 376 794 866 106 85009 89316 14367 3153 350 2.6 1 1 12.9 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +9201600.0 26.7 10.6 36 98200 1198 1356 381 857 842 115 91480 87017 15149 4604 10 2.1 1 1 12.9 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +9205200.0 27.8 10.0 33 98200 1245 1356 379 960 913 122 102121 94266 15855 5759 280 2.6 0 0 12.9 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +9208800.0 28.9 8.3 28 98100 1216 1356 382 941 916 120 99802 94244 15694 5066 60 1.5 0 0 16.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +9212400.0 28.9 7.8 27 98100 1114 1356 382 851 882 127 90065 90433 16894 3731 40 3.1 2 0 16.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +9216000.0 28.9 7.8 27 98000 946 1356 394 688 799 132 83934 51261 16167 6664 250 2.1 2 2 16.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +9219600.0 28.3 8.9 30 98000 723 1356 387 476 747 79 58200 41425 9686 3846 270 1.5 1 1 16.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +9223200.0 26.7 8.9 33 98000 460 1356 379 268 609 64 31575 26003 7560 2739 0 0.0 1 1 16.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +9226800.0 25.0 10.0 39 98000 177 1356 390 53 102 40 5884 0 4453 1349 240 2.1 6 6 16.1 9140 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +9230400.0 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 21 0.0000 0 88 0.000 0.0 1.0 +9234000.0 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 22 0.0000 0 88 0.000 0.0 1.0 +9237600.0 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 22 0.0000 0 88 0.000 0.0 1.0 +9241200.0 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 22 0.0000 0 88 0.000 0.0 1.0 +9244800.0 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 23 0.0000 0 88 0.000 0.0 1.0 +9248400.0 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 23 0.0000 0 88 0.000 0.0 1.0 +9252000.0 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 23 0.0000 0 88 0.000 0.0 1.0 +9255600.0 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 24 0.0000 0 88 0.000 0.0 1.0 +9259200.0 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 24 0.0000 0 88 0.000 0.0 1.0 +9262800.0 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 24 0.0000 0 88 0.000 0.0 1.0 +9266400.0 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 25 0.0000 0 88 0.000 0.0 1.0 +9270000.0 13.3 11.1 87 98200 114 1254 334 33 4 32 3580 0 3483 964 250 2.1 10 6 11.3 9140 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +9273600.0 19.4 12.2 63 98300 396 1355 382 133 32 124 14579 1704 13652 4179 360 1.5 10 9 9.7 9140 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +9277200.0 22.2 11.7 51 98300 665 1355 388 254 86 212 28395 6531 23824 8102 0 0.0 10 8 6.4 9140 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +9280800.0 24.4 10.6 42 98300 899 1355 398 459 216 316 51854 18704 35920 12732 320 2.1 10 8 8.0 9140 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +9284400.0 26.1 11.7 41 98300 1082 1355 403 536 222 359 61633 18947 41550 15405 290 3.1 9 7 12.9 9140 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +9288000.0 27.2 11.1 37 98200 1201 1355 397 816 560 321 96305 44097 38122 14745 360 3.6 8 4 12.9 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +9291600.0 27.8 8.9 31 98200 1247 1355 390 876 598 326 104036 47526 38961 15064 270 2.6 6 2 12.9 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +9295200.0 27.2 8.3 30 98200 1218 1355 431 392 10 383 45811 859 45060 16779 120 1.5 10 10 12.9 9140 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +9298800.0 25.6 11.7 42 98100 1116 1355 427 341 3 338 39601 246 39503 14984 200 4.1 10 10 16.1 7620 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +9302400.0 25.6 11.7 42 98000 948 1355 427 262 7 257 30316 540 29905 11451 220 3.6 10 10 16.1 7620 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +9306000.0 25.6 11.7 42 98000 725 1355 427 221 1 221 24913 77 25046 8810 270 3.6 10 10 16.1 7620 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +9309600.0 24.4 12.8 48 98100 463 1355 422 133 2 132 14765 115 14719 4782 240 2.6 10 10 16.1 7620 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +9313200.0 22.8 10.6 46 98100 181 1355 410 40 0 40 3887 0 3915 1358 90 4.1 10 10 16.1 1370 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +9316800.0 21.7 12.8 57 98200 6 215 406 1 0 1 0 0 0 0 70 7.2 10 10 16.1 1370 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +9320400.0 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 25 0.0000 0 88 0.000 0.0 1.0 +9324000.0 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 25 0.0000 0 88 0.000 0.0 1.0 +9327600.0 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 26 0.0000 0 88 0.000 0.0 1.0 +9331200.0 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 26 0.0000 0 88 0.000 0.0 1.0 +9334800.0 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 26 0.0000 0 88 0.000 0.0 1.0 +9338400.0 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 26 0.0000 0 88 0.000 0.0 1.0 +9342000.0 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 26 0.0000 0 88 0.000 0.0 1.0 +9345600.0 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 27 0.0000 0 88 0.000 0.0 1.0 +9349200.0 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 27 0.0000 0 88 0.000 0.0 1.0 +9352800.0 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 27 0.0000 0 88 0.000 0.0 1.0 +9356400.0 16.1 13.3 84 98400 119 1276 377 28 0 28 2700 0 2719 903 100 2.6 10 10 6.4 3050 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +9360000.0 17.2 13.3 78 98400 401 1355 383 118 1 118 12998 51 13053 4090 110 2.1 10 10 6.4 3660 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +9363600.0 19.4 13.3 68 98400 670 1355 395 211 0 211 21348 0 21534 8117 130 2.6 10 10 8.0 2130 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +9367200.0 21.7 13.9 61 98400 903 1355 372 564 431 278 64291 34164 31876 11769 200 2.1 9 4 11.3 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +9370800.0 23.9 13.9 54 98500 1085 1355 376 758 657 232 90118 46021 27732 11203 150 2.1 4 2 12.9 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +9374400.0 25.0 13.9 50 98400 1203 1355 400 893 572 385 103774 47389 45045 16771 140 3.6 7 7 12.9 1070 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +9378000.0 25.0 13.9 50 98300 1250 1355 400 763 373 419 88641 31608 49021 17961 140 4.6 7 7 16.1 1220 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +9381600.0 25.6 12.8 45 98300 1221 1355 408 720 351 404 83617 29832 47244 17398 170 5.7 8 8 16.1 1220 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +9385200.0 26.7 12.2 41 98200 1119 1355 402 861 664 314 100581 52607 36908 14237 160 6.2 6 6 19.3 1370 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +9388800.0 26.7 10.6 36 98200 950 1355 411 250 54 212 29399 3905 25058 9916 160 5.2 8 8 19.3 1370 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +9392400.0 26.1 10.6 38 98100 728 1355 397 415 382 211 47015 28883 24027 8564 150 5.2 6 6 16.1 1370 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +9396000.0 25.0 9.4 37 98200 466 1355 386 167 110 130 18615 6522 14553 4753 180 4.1 5 5 16.1 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +9399600.0 22.8 11.7 50 98200 184 1355 372 59 117 43 6527 0 4771 1439 150 3.6 3 3 16.1 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +9403200.0 20.6 14.4 68 98200 12 237 349 2 0 2 0 0 0 0 40 4.1 0 0 16.1 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +9406800.0 18.9 14.4 76 98200 0 0 341 0 0 0 0 0 0 0 90 5.2 0 0 16.1 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +9410400.0 17.8 14.4 81 98300 0 0 336 0 0 0 0 0 0 0 90 4.1 0 0 16.1 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +9414000.0 16.1 13.9 87 98300 0 0 327 0 0 0 0 0 0 0 90 3.1 0 0 16.1 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +9417600.0 16.1 13.9 87 98300 0 0 327 0 0 0 0 0 0 0 80 3.6 0 0 12.9 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +9421200.0 16.1 13.9 87 98300 0 0 334 0 0 0 0 0 0 0 120 3.1 4 1 11.3 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +9424800.0 15.6 13.3 87 98400 0 0 331 0 0 0 0 0 0 0 130 2.1 3 1 11.3 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +9428400.0 14.4 12.8 90 98300 0 0 325 0 0 0 0 0 0 0 200 2.1 3 1 11.3 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +9432000.0 14.4 12.2 87 98400 0 0 324 0 0 0 0 0 0 0 110 2.1 3 1 11.3 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +9435600.0 13.9 12.2 90 98400 0 0 326 0 0 0 0 0 0 0 90 2.6 5 2 9.7 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +9439200.0 13.9 12.2 90 98400 0 0 326 0 0 0 0 0 0 0 150 2.1 6 2 8.0 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +9442800.0 15.0 12.8 87 98500 124 1297 353 33 6 32 3605 0 3506 1003 90 2.1 10 8 6.4 7620 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +9446400.0 16.1 12.8 81 98500 406 1354 376 120 7 118 13242 361 13077 4121 70 3.1 10 10 6.4 7620 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +9450000.0 18.3 13.3 73 98600 674 1354 389 144 1 144 16622 63 16693 6215 140 2.6 10 10 8.0 3660 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +9453600.0 20.6 12.8 61 98700 907 1354 362 584 540 224 67823 39460 26152 10115 140 3.1 7 3 11.3 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +9457200.0 22.2 12.2 53 98600 1088 1354 366 785 729 199 94584 49365 24098 9893 130 3.1 5 2 12.9 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +9460800.0 23.9 11.7 46 98500 1206 1354 391 817 515 359 95646 42149 42305 16004 130 3.1 8 7 12.9 1830 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +9464400.0 23.9 11.7 46 98500 1252 1354 406 556 140 427 64616 12178 49975 18197 110 6.7 10 9 12.9 1830 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +9468000.0 23.9 12.2 48 98500 1223 1354 398 694 199 514 79130 19057 59050 20059 130 6.2 10 8 12.9 1070 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +9471600.0 23.9 12.2 48 98400 1121 1354 398 669 388 347 77570 32038 40495 15281 130 7.7 10 8 14.5 1010 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +9475200.0 24.4 12.8 48 98400 953 1354 401 428 108 352 48300 9487 39981 14141 130 6.7 10 8 14.5 3050 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +9478800.0 23.3 12.2 50 98400 730 1354 403 223 30 207 25292 2217 23598 8473 140 7.7 10 9 14.5 3050 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +9482400.0 22.8 12.2 51 98400 468 1354 400 106 49 89 12173 2325 10255 3619 130 6.7 10 9 14.5 3050 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +9486000.0 22.2 12.2 53 98300 187 1354 397 46 9 45 5077 0 4981 1495 130 4.6 10 9 14.5 3050 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +9489600.0 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 25 0.0000 0 88 0.000 0.0 1.0 +9493200.0 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 25 0.0000 0 88 0.000 0.0 1.0 +9496800.0 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 25 0.0000 0 88 0.000 0.0 1.0 +9500400.0 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 24 0.0000 0 88 0.000 0.0 1.0 +9504000.0 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 24 0.0000 0 88 0.000 0.0 1.0 +9507600.0 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 24 0.0000 0 88 0.000 0.0 1.0 +9511200.0 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 24 0.0000 0 88 0.000 0.0 1.0 +9514800.0 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 24 0.0000 0 88 0.000 0.0 1.0 +9518400.0 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 23 0.0000 0 88 0.000 0.0 1.0 +9522000.0 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 23 0.0000 0 88 0.000 0.0 1.0 +9525600.0 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 23 0.0000 0 88 0.000 0.0 1.0 +9529200.0 15.0 13.9 93 98800 129 1319 372 24 3 24 2693 0 2699 831 120 4.6 10 10 6.4 370 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +9532800.0 16.1 14.4 90 98800 411 1353 378 130 31 120 14329 1585 13284 4195 120 5.2 10 10 9.7 270 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +9536400.0 17.2 15.0 87 98800 678 1353 385 232 8 227 25804 607 25386 8570 130 6.2 10 10 9.7 270 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +9540000.0 18.9 15.6 81 98900 911 1353 395 300 2 298 34010 160 33990 12391 140 6.2 10 10 11.3 370 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +9543600.0 20.0 16.1 78 98800 1092 1353 401 361 4 357 41471 325 41283 15422 130 7.2 10 10 12.9 430 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +9547200.0 21.1 16.1 73 98800 1209 1353 407 369 9 361 43068 706 42416 16080 130 6.7 10 10 16.1 580 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +9550800.0 22.2 16.1 68 98800 1254 1353 414 431 0 431 45660 0 46135 18321 130 6.7 10 10 16.1 1220 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +9554400.0 22.8 16.1 66 98700 1225 1353 417 394 5 389 45821 404 45551 16995 160 5.2 10 10 19.3 3050 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +9558000.0 22.8 16.7 69 98700 1123 1353 418 403 1 401 46059 84 46149 16800 120 6.2 10 10 19.3 3050 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +9561600.0 22.8 16.1 66 98600 955 1353 417 195 1 194 23025 66 23022 9263 120 5.7 10 10 32.2 910 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +9565200.0 21.7 17.2 76 98600 732 1353 412 241 0 241 24433 0 24652 9381 120 5.7 10 10 24.1 3050 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +9568800.0 21.7 17.2 76 98600 471 1353 412 147 1 146 16165 57 16131 5153 110 4.1 10 10 24.1 3050 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +9572400.0 21.7 16.7 73 98500 190 1353 412 54 1 54 5859 1 5879 1692 110 5.2 10 10 24.1 8530 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +9576000.0 20.0 15.6 76 98600 18 259 401 3 0 3 0 0 0 0 120 3.6 10 10 24.1 8530 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +9579600.0 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 30 0.0000 0 88 0.000 0.0 1.0 +9583200.0 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 30 0.0000 0 88 0.000 0.0 1.0 +9586800.0 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 30 0.0000 0 88 0.000 0.0 1.0 +9590400.0 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 30 0.0000 0 88 0.000 0.0 1.0 +9594000.0 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 30 0.0000 0 88 0.000 0.0 1.0 +9597600.0 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 30 0.0000 0 88 0.000 0.0 1.0 +9601200.0 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 30 0.0000 0 88 0.000 0.0 1.0 +9604800.0 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 30 0.0000 0 88 0.000 0.0 1.0 +9608400.0 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 30 0.0000 0 88 0.000 0.0 1.0 +9612000.0 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 30 0.0000 0 88 0.000 0.0 1.0 +9615600.0 16.7 14.4 87 98700 134 1341 382 35 0 35 3377 0 3401 1099 120 5.2 10 10 19.3 1520 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +9619200.0 17.2 15.0 87 98700 415 1352 385 120 0 120 11865 0 11959 4225 160 5.2 10 10 16.1 270 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +9622800.0 17.8 15.6 87 98700 682 1352 389 250 1 249 27606 79 27653 9081 140 4.1 10 10 16.1 760 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +9626400.0 19.4 15.6 78 98700 914 1352 398 349 1 349 39087 87 39342 13671 140 4.1 10 10 16.1 370 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +9630000.0 20.0 15.6 76 98700 1095 1352 401 388 1 387 44328 85 44516 16261 140 3.6 10 10 16.1 490 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +9633600.0 21.1 16.1 73 98700 1211 1352 407 483 1 482 55121 90 55418 19309 130 3.6 10 10 16.1 580 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +9637200.0 21.1 16.1 73 98600 1256 1352 407 436 1 435 50483 84 50730 18445 160 3.1 10 10 19.3 910 9 999999999 28 0.0000 0 88 0.000 0.3 1.0 +9640800.0 20.6 16.7 79 98500 1227 1352 394 443 77 373 51684 6050 43813 16528 160 3.1 9 9 24.1 910 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +9644400.0 22.2 16.7 71 98500 1125 1352 414 371 9 363 42757 724 42114 15777 180 3.1 10 10 24.1 1220 9 999999999 28 0.0000 0 88 0.000 0.3 1.0 +9648000.0 21.7 16.7 73 98400 957 1352 412 317 12 308 36086 949 35279 13062 180 3.6 10 10 24.1 1130 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +9651600.0 21.7 17.2 76 98400 735 1352 412 233 0 233 23627 0 23839 9208 150 2.1 10 10 32.2 1160 9 999999999 28 0.0000 0 88 0.000 0.8 1.0 +9655200.0 19.4 16.7 84 98400 474 1352 399 142 9 139 15698 507 15436 5018 0 0.0 10 10 24.1 1160 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +9658800.0 20.6 16.1 76 98300 193 1352 405 45 3 44 4977 0 4881 1493 0 0.0 10 10 24.1 1220 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +9662400.0 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 28 0.0000 0 88 0.000 0.0 1.0 +9666000.0 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 28 0.0000 0 88 0.000 0.0 1.0 +9669600.0 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 29 0.0000 0 88 0.000 1.3 1.0 +9673200.0 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 30 0.0000 0 88 0.000 0.3 1.0 +9676800.0 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 31 0.0000 0 88 0.000 0.4 1.0 +9680400.0 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 32 0.0000 0 88 0.000 0.0 1.0 +9684000.0 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 32 0.0000 0 88 0.000 0.5 1.0 +9687600.0 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 33 0.0000 0 88 0.000 0.0 1.0 +9691200.0 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 34 0.0000 0 88 0.000 0.5 1.0 +9694800.0 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 35 0.0000 0 88 0.000 0.0 1.0 +9698400.0 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 35 0.0000 0 88 0.000 0.0 1.0 +9702000.0 16.7 16.1 97 98300 139 1352 384 33 0 33 3181 0 3203 1074 160 3.6 10 10 6.4 180 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +9705600.0 17.2 16.7 97 98200 420 1352 387 113 1 113 12528 48 12580 4091 160 3.1 10 10 6.4 180 9 999999999 35 0.0000 0 88 0.000 0.3 1.0 +9709200.0 17.8 16.7 93 98200 686 1352 390 136 0 135 13741 0 13761 5964 160 3.6 10 10 8.0 180 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +9712800.0 17.8 16.7 93 98200 918 1352 390 328 1 328 36912 83 37148 13229 170 3.6 10 10 8.0 180 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +9716400.0 18.9 17.2 90 98200 1097 1352 386 420 72 361 48213 5796 41716 15578 190 3.6 10 9 11.3 910 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +9720000.0 21.1 16.7 76 98200 1214 1352 389 566 228 362 66074 17752 42543 16137 190 3.6 8 8 16.1 910 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +9723600.0 22.8 16.7 69 98100 1259 1352 398 827 406 449 95506 34400 52232 18829 190 4.6 8 8 24.1 1220 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +9727200.0 23.9 16.1 62 98000 1229 1352 397 778 363 448 89541 31263 51936 18629 220 5.2 7 7 32.2 7620 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +9730800.0 24.4 15.6 58 97800 1127 1352 394 548 224 362 63250 18196 42060 15760 230 5.7 8 6 48.3 1220 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +9734400.0 24.4 15.6 58 97800 959 1352 394 547 344 304 62416 27361 34902 12971 190 5.7 8 6 48.3 1220 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +9738000.0 25.0 15.6 56 97700 737 1352 391 417 334 236 46752 25272 26606 9306 180 3.6 7 4 48.3 7620 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +9741600.0 23.9 15.6 60 97700 477 1352 385 227 229 146 25035 13537 16177 5194 180 5.2 7 4 48.3 7620 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +9745200.0 20.6 16.1 76 97700 196 1352 394 42 0 42 4069 0 4099 1454 140 4.1 10 9 48.3 7620 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +9748800.0 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 29 0.0000 0 88 0.000 0.0 1.0 +9752400.0 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 28 0.0000 0 88 0.000 0.0 1.0 +9756000.0 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 27 0.0000 0 88 0.000 0.0 1.0 +9759600.0 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 25 0.0000 0 88 0.000 0.0 1.0 +9763200.0 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 24 0.0000 0 88 0.000 0.0 1.0 +9766800.0 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 23 0.0000 0 88 0.000 0.0 1.0 +9770400.0 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 22 0.0000 0 88 0.000 0.0 1.0 +9774000.0 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 21 0.0000 0 88 0.000 0.0 1.0 +9777600.0 13.9 13.9 100 97500 0 0 324 0 0 0 0 0 0 0 280 3.6 1 1 9.7 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +9781200.0 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 18 0.0000 0 88 0.000 0.0 1.0 +9784800.0 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 17 0.0000 0 88 0.000 0.0 1.0 +9788400.0 13.3 12.2 93 97600 143 1351 329 49 72 41 5318 0 4464 1251 290 5.2 4 4 11.3 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +9792000.0 15.0 12.8 87 97600 424 1351 353 176 87 149 19151 5301 16291 4856 310 5.2 8 8 16.1 180 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +9795600.0 14.4 11.7 84 97600 690 1351 356 294 118 234 32780 9353 26233 8848 280 5.2 9 9 16.1 340 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +9799200.0 16.7 11.1 70 97600 921 1351 367 446 107 373 49901 9917 42010 14264 280 7.2 9 9 19.3 610 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +9802800.0 18.3 12.2 68 97500 1100 1351 377 392 25 372 45082 2143 43067 15906 300 6.2 9 9 32.2 910 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +9806400.0 18.9 10.6 59 97600 1216 1351 370 858 558 356 100755 45718 42079 15961 320 4.1 8 8 40.2 1070 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +9810000.0 18.9 10.6 59 97500 1261 1351 360 803 389 440 93311 34441 51494 18610 320 7.2 6 6 40.2 1070 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +9813600.0 18.9 9.4 54 97500 1231 1351 358 608 369 272 73087 27446 32888 13077 320 7.2 6 6 40.2 1220 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +9817200.0 20.0 8.3 47 97500 1129 1351 362 726 547 269 86178 41932 32115 12722 310 9.3 6 6 40.2 1220 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +9820800.0 20.6 8.3 46 97400 961 1351 360 634 568 231 74297 43003 27214 10665 310 7.7 4 4 40.2 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +9824400.0 21.1 7.8 42 97400 739 1351 361 406 426 174 46897 30330 20192 7538 310 6.7 4 4 40.2 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +9828000.0 20.6 8.3 46 97400 479 1351 348 267 519 84 30959 25548 9770 3492 320 6.2 1 1 40.2 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +9831600.0 18.3 7.8 50 97400 200 1351 331 86 349 36 9751 0 4091 1302 310 5.2 0 0 40.2 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +9835200.0 16.1 6.7 54 97400 7 326 320 5 9 4 0 0 0 0 300 3.1 0 0 40.2 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +9838800.0 13.3 6.7 64 97400 0 0 307 0 0 0 0 0 0 0 290 3.1 0 0 40.2 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +9842400.0 12.8 8.9 77 97500 0 0 308 0 0 0 0 0 0 0 300 4.1 0 0 40.2 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +9846000.0 12.2 8.9 80 97500 0 0 305 0 0 0 0 0 0 0 290 4.1 0 0 32.2 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +9849600.0 12.8 8.9 77 97400 0 0 308 0 0 0 0 0 0 0 300 4.6 0 0 32.2 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +9853200.0 12.2 8.9 80 97400 0 0 305 0 0 0 0 0 0 0 300 5.7 0 0 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +9856800.0 11.7 8.9 83 97300 0 0 303 0 0 0 0 0 0 0 310 3.6 0 0 19.3 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +9860400.0 10.6 8.9 90 97300 0 0 298 0 0 0 0 0 0 0 330 4.1 0 0 19.3 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +9864000.0 10.0 8.3 89 97300 0 0 295 0 0 0 0 0 0 0 310 4.1 0 0 19.3 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +9867600.0 9.4 8.3 93 97300 0 0 293 0 0 0 0 0 0 0 290 3.1 0 0 19.3 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +9871200.0 9.4 7.8 89 97400 0 79 298 0 0 0 0 0 0 0 290 4.1 1 1 24.1 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +9874800.0 9.4 7.8 89 97400 148 1350 302 38 49 33 4223 0 3677 1102 290 4.1 2 2 24.1 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +9878400.0 12.2 8.3 77 97400 429 1350 314 208 323 106 23372 16866 11956 3963 340 3.6 2 2 24.1 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +9882000.0 12.8 8.3 75 97400 694 1350 320 452 547 172 51807 38762 19806 7227 320 5.2 3 3 24.1 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +9885600.0 15.0 8.3 65 97400 924 1350 330 612 536 246 70955 41951 28677 10966 320 5.2 3 3 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +9889200.0 16.1 7.2 56 97400 1103 1350 337 791 597 304 92718 48597 35849 13861 320 7.7 4 4 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +9892800.0 17.2 4.4 43 97300 1219 1350 339 932 701 299 111281 55776 35916 14047 320 7.7 4 4 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +9896400.0 18.3 3.3 37 97300 1263 1350 345 687 297 409 80573 26481 48297 17766 320 5.2 5 5 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +9900000.0 18.9 4.4 39 97300 1233 1350 349 978 638 395 114505 56318 46559 17220 270 6.2 5 5 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +9903600.0 18.3 3.9 39 97200 1130 1350 346 823 618 305 96950 50856 36146 13993 300 6.7 5 5 32.2 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +9907200.0 17.8 1.7 34 97200 963 1350 336 584 433 276 67681 36311 32169 12175 280 6.2 3 3 32.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +9910800.0 16.7 2.2 38 97300 742 1350 331 444 469 187 51127 35443 21635 7968 300 7.2 3 3 32.2 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +9914400.0 16.1 1.7 38 97300 482 1350 320 253 432 100 29025 24197 11512 4017 320 6.7 1 1 32.2 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +9918000.0 14.4 1.7 42 97300 203 1350 307 72 148 50 7978 1485 5557 1663 280 7.2 0 0 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +9921600.0 12.8 1.7 47 97400 8 326 300 4 0 4 0 0 0 0 300 4.1 0 0 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +9925200.0 11.1 1.7 53 97500 0 0 293 0 0 0 0 0 0 0 310 3.1 0 0 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +9928800.0 10.0 1.7 57 97500 0 0 289 0 0 0 0 0 0 0 320 4.1 0 0 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +9932400.0 9.4 1.7 59 97500 0 0 286 0 0 0 0 0 0 0 310 3.6 0 0 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +9936000.0 7.8 1.7 66 97600 0 0 280 0 0 0 0 0 0 0 310 3.6 0 0 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +9939600.0 6.1 1.7 73 97600 0 0 273 0 0 0 0 0 0 0 280 4.1 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +9943200.0 5.0 1.7 79 97500 0 0 269 0 0 0 0 0 0 0 300 3.1 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +9946800.0 4.4 1.1 79 97500 0 0 266 0 0 0 0 0 0 0 290 3.1 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +9950400.0 4.4 1.1 79 97500 0 0 266 0 0 0 0 0 0 0 300 3.1 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +9954000.0 2.8 1.1 89 97600 0 0 260 0 0 0 0 0 0 0 280 3.6 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +9957600.0 2.8 1.1 89 97700 6 101 260 1 1 1 0 0 0 0 290 4.6 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +9961200.0 4.4 1.7 82 97700 153 1349 266 62 299 29 6999 0 3281 1014 300 4.6 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +9964800.0 7.8 2.2 68 97800 433 1349 280 267 662 56 31671 27609 6657 2397 310 4.1 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +9968400.0 11.1 2.8 57 97800 698 1349 294 495 806 80 60375 46746 9784 3849 330 4.6 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +9972000.0 12.2 2.8 53 97800 927 1349 314 599 551 221 70226 42694 26043 10141 310 6.2 4 4 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +9975600.0 13.9 1.7 44 97900 1106 1349 315 844 819 173 103530 57217 21319 8821 340 6.2 2 2 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +9979200.0 16.1 0.0 34 97800 1221 1349 328 669 421 288 80246 33674 34749 13656 340 7.2 4 4 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +9982800.0 15.6 -0.6 34 97800 1265 1349 331 683 356 349 81215 30216 41765 15918 320 6.2 6 6 40.2 1220 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +9986400.0 15.6 -1.7 31 97800 1234 1349 339 629 239 411 73570 21915 48400 17689 310 5.7 8 8 40.2 1220 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +9990000.0 15.6 -1.1 32 97700 1132 1349 339 473 160 339 55361 13975 39926 15102 300 5.2 8 8 40.2 1370 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +9993600.0 16.1 -0.6 32 97700 965 1349 330 584 536 202 69420 40544 24129 9622 330 6.7 5 5 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +9997200.0 16.1 -0.6 32 97800 744 1349 325 476 535 182 54999 40470 21127 7825 310 7.2 3 3 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.00008E7 15.6 -0.6 34 97800 485 1349 315 308 695 60 36823 32870 7190 2640 300 6.7 1 1 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.00044E7 14.4 -0.6 36 97900 206 1349 304 94 395 35 10746 1156 4010 1287 300 4.1 0 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.0008E7 10.6 0.6 50 97900 8 349 290 6 14 4 0 0 0 0 290 2.6 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.00116E7 10.0 1.7 57 98000 0 0 289 0 0 0 0 0 0 0 270 2.6 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.00152E7 8.3 2.2 66 98000 0 0 282 0 0 0 0 0 0 0 270 2.6 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.00188E7 6.7 2.2 74 98100 0 0 276 0 0 0 0 0 0 0 280 3.1 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.00224E7 6.1 2.2 76 98100 0 0 273 0 0 0 0 0 0 0 290 4.1 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.0026E7 5.6 2.2 79 98100 0 0 271 0 0 0 0 0 0 0 280 3.6 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.00296E7 5.6 2.2 79 98100 0 0 271 0 0 0 0 0 0 0 280 3.6 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.00332E7 5.6 2.2 79 98100 0 0 271 0 0 0 0 0 0 0 280 3.6 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.00368E7 5.6 2.2 79 98200 0 0 271 0 0 0 0 0 0 0 290 3.6 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.00404E7 5.0 2.2 82 98200 0 0 269 0 0 0 0 0 0 0 270 3.1 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.0044E7 4.4 2.2 86 98200 6 124 267 1 0 1 0 0 0 0 270 3.1 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.00476E7 6.1 2.2 76 98300 158 1349 273 47 45 42 5160 0 4625 1329 270 3.1 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.00512E7 10.0 3.3 64 98400 437 1349 290 214 322 111 24063 18104 12529 4137 270 3.1 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.00548E7 13.3 4.4 55 98400 701 1349 305 440 518 171 50616 37536 19761 7242 270 3.6 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.00584E7 16.1 4.4 46 98400 930 1349 317 649 628 217 76200 47926 25608 10018 270 5.2 0 0 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.0062E7 18.3 3.9 39 98400 1108 1349 326 819 695 248 97740 53411 29759 11894 270 5.2 0 0 40.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.00656E7 18.9 2.8 34 98400 1223 1349 328 929 732 266 112065 56318 32271 12835 250 5.2 0 0 40.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.00692E7 20.6 2.8 31 98300 1267 1349 342 899 667 273 108859 51226 33249 13197 300 5.2 1 1 40.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.00728E7 21.7 3.3 30 98300 1236 1349 352 881 606 326 104807 49762 39024 15052 300 7.7 2 2 40.2 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.00764E7 21.7 3.9 31 98200 1134 1349 342 843 703 252 100848 53977 30314 12106 260 7.2 0 0 40.2 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.008E7 22.2 3.9 30 98200 967 1349 344 661 613 223 77901 46966 26417 10415 320 4.6 0 0 40.2 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.00836E7 22.2 3.9 30 98200 746 1349 344 475 536 180 54884 39564 20895 7776 290 4.1 0 0 40.2 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.00872E7 21.7 3.9 31 98200 487 1349 342 251 361 122 28357 21910 13838 4678 280 5.2 0 0 40.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.00908E7 18.9 4.4 39 98200 209 1349 330 69 88 56 7590 1183 6180 1816 260 4.1 0 0 40.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.00944E7 15.6 5.6 52 98200 9 371 316 5 0 5 0 0 0 0 240 2.6 0 0 32.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.0098E7 14.4 6.1 58 98300 0 0 312 0 0 0 0 0 0 0 250 2.6 0 0 24.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.01016E7 13.3 5.6 60 98400 0 0 306 0 0 0 0 0 0 0 240 2.6 0 0 24.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.01052E7 11.1 5.6 69 98400 0 0 297 0 0 0 0 0 0 0 230 3.1 0 0 24.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.01088E7 12.2 5.6 64 98400 0 0 302 0 0 0 0 0 0 0 240 4.1 0 0 24.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.01124E7 11.7 5.0 64 98400 0 0 299 0 0 0 0 0 0 0 240 3.1 0 0 24.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.0116E7 11.7 5.0 64 98400 0 0 299 0 0 0 0 0 0 0 260 4.1 0 0 24.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.01196E7 11.1 4.4 64 98300 0 0 296 0 0 0 0 0 0 0 250 3.6 0 0 24.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.01232E7 8.9 4.4 74 98300 0 0 287 0 0 0 0 0 0 0 280 3.1 0 0 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.01268E7 8.9 4.4 74 98400 0 0 287 0 0 0 0 0 0 0 270 3.6 0 0 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.01304E7 8.3 3.9 74 98400 6 146 284 1 0 1 0 0 0 0 260 3.1 0 0 40.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.0134E7 11.7 5.0 64 98500 162 1348 299 58 152 40 6405 0 4430 1304 250 3.6 2 0 40.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.01376E7 15.6 6.1 54 98500 441 1348 317 249 504 85 28609 24425 9798 3411 240 6.2 1 0 40.2 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.01412E7 18.3 7.2 49 98400 705 1348 330 477 679 123 56292 43003 14570 5603 270 5.2 1 0 40.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.01448E7 18.3 7.2 49 98400 933 1348 330 684 770 152 82497 51566 18411 7508 250 6.7 1 0 40.2 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.01484E7 19.4 7.8 47 98400 1111 1348 347 847 783 203 102528 55103 24696 10113 250 7.2 2 2 40.2 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.0152E7 23.3 7.8 37 98300 1225 1348 366 904 727 243 109638 52757 29635 11936 250 7.2 5 2 40.2 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.01556E7 23.9 8.3 37 98300 1268 1348 369 899 626 310 107624 48646 37342 14585 250 7.2 7 2 40.2 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.01592E7 25.0 7.2 32 98200 1238 1348 373 928 694 291 111239 53528 35091 13813 250 6.2 8 2 40.2 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.01628E7 25.6 9.4 36 98100 1136 1348 379 824 644 282 97537 49705 33577 13217 260 6.7 8 2 40.2 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.01664E7 25.0 9.4 37 98000 969 1348 371 684 656 213 80745 47742 25273 10059 240 6.2 3 1 40.2 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.017E7 23.9 8.9 39 98000 748 1348 374 490 519 203 55986 38935 23311 8504 240 6.2 7 3 40.2 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.01736E7 23.9 8.9 39 98000 490 1348 365 276 491 99 31665 26038 11398 4017 240 6.7 3 1 40.2 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.01772E7 22.2 9.4 44 98000 212 1348 362 81 125 62 8827 1849 6781 1946 250 5.2 6 2 40.2 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.01808E7 20.0 10.6 55 98000 10 393 342 6 2 6 0 0 0 0 220 4.6 0 0 32.2 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.01844E7 18.3 10.6 61 98000 0 0 334 0 0 0 0 0 0 0 230 5.2 0 0 32.2 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +1.0188E7 17.2 10.6 65 98100 0 0 329 0 0 0 0 0 0 0 240 5.2 0 0 32.2 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +1.01916E7 17.2 10.6 65 98100 0 0 329 0 0 0 0 0 0 0 240 5.2 0 0 32.2 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +1.01952E7 17.2 10.6 65 98100 0 0 329 0 0 0 0 0 0 0 250 3.6 0 0 24.1 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +1.01988E7 16.1 10.6 70 98100 0 0 324 0 0 0 0 0 0 0 260 5.2 0 0 24.1 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +1.02024E7 15.0 10.0 72 98100 0 0 324 0 0 0 0 0 0 0 270 5.2 1 1 24.1 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +1.0206E7 14.4 10.0 75 98000 0 0 322 0 0 0 0 0 0 0 270 5.2 1 1 24.1 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +1.02096E7 13.9 10.6 80 98000 0 0 320 0 0 0 0 0 0 0 240 3.6 1 1 24.1 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +1.02132E7 13.9 10.6 80 98100 0 0 325 0 0 0 0 0 0 0 260 5.2 6 2 24.1 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +1.02168E7 15.0 11.1 78 98200 6 168 336 1 2 1 0 0 0 0 250 5.2 4 4 24.1 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.02204E7 15.0 10.6 75 98200 166 1347 350 50 71 42 5498 0 4633 1363 270 4.6 8 8 12.9 4270 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.0224E7 15.6 11.7 78 98300 445 1347 373 139 11 136 15345 647 15081 4776 240 6.2 10 10 12.9 4270 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.02276E7 16.1 12.2 78 98300 708 1347 376 165 6 162 19020 401 18758 6994 250 5.2 10 10 12.9 4270 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.02312E7 16.7 12.8 78 98400 936 1347 380 361 6 357 40614 533 40427 14133 280 3.6 10 10 16.1 3050 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.02348E7 18.9 13.3 70 98400 1113 1347 373 707 387 387 81189 33274 44743 16407 250 4.1 9 8 16.1 3050 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.02384E7 21.7 14.4 64 98400 1227 1347 383 659 364 327 77869 27715 38887 15061 310 3.1 8 7 16.1 3050 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.0242E7 22.2 13.9 59 98300 1270 1347 411 346 11 335 41060 839 40012 15471 250 2.6 10 10 16.1 3050 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.02456E7 23.3 15.0 60 98300 1240 1347 407 454 144 322 53779 10785 38386 14928 260 4.6 10 9 16.1 3350 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.02492E7 23.9 15.0 58 98200 1137 1347 401 569 149 443 64790 13343 50806 17948 230 3.6 8 8 19.3 3050 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.02528E7 23.9 14.4 56 98200 970 1347 394 541 349 290 62167 27389 33524 12672 290 4.1 8 7 19.3 1070 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.02564E7 23.9 15.0 58 98200 750 1347 410 366 182 265 40786 14620 29703 10136 270 4.6 10 9 16.1 1220 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.026E7 22.2 15.0 64 98200 492 1347 401 134 45 117 15121 2393 13256 4567 270 2.6 10 9 16.1 1220 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.02636E7 21.7 15.6 68 98200 215 1347 399 62 22 58 6776 191 6361 1884 290 3.1 9 9 11.3 1220 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.02672E7 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 26 0.0000 0 88 0.000 0.0 1.0 +1.02708E7 18.3 16.1 87 98300 0 0 355 0 0 0 0 0 0 0 260 2.1 4 3 12.9 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.02744E7 17.2 15.6 90 98300 0 0 349 0 0 0 0 0 0 0 270 2.1 3 3 12.9 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.0278E7 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 25 0.0000 0 88 0.000 0.0 1.0 +1.02816E7 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 24 0.0000 0 88 0.000 0.0 1.0 +1.02852E7 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 24 0.0000 0 88 0.000 0.0 1.0 +1.02888E7 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 24 0.0000 0 88 0.000 0.0 1.0 +1.02924E7 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 23 0.0000 0 88 0.000 0.0 1.0 +1.0296E7 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 23 0.0000 0 88 0.000 0.0 1.0 +1.02996E7 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 23 0.0000 0 88 0.000 0.0 1.0 +1.03032E7 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 22 0.0000 0 88 0.000 0.0 1.0 +1.03068E7 13.3 13.3 100 98500 171 1347 363 33 1 33 3705 0 3714 1160 80 4.1 10 10 6.4 150 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +1.03104E7 13.9 13.9 100 98600 449 1347 366 93 4 91 10605 183 10413 3626 120 2.6 10 10 6.4 120 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +1.0314E7 14.4 13.3 93 98700 712 1347 368 210 1 210 23708 74 23831 8452 80 4.1 10 10 8.0 240 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +1.03176E7 17.2 14.4 84 98700 939 1347 384 274 4 271 31500 308 31337 11874 70 3.6 10 10 8.0 270 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +1.03212E7 18.9 15.0 78 98700 1115 1347 394 414 8 407 47314 693 46837 16943 80 4.1 10 10 9.7 430 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +1.03248E7 20.6 15.6 73 98700 1229 1347 393 563 199 382 65689 15965 44875 16834 140 3.1 10 9 11.3 2440 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +1.03284E7 21.7 16.1 71 98700 1272 1347 399 427 27 402 49893 2173 47302 17621 120 3.1 10 9 9.7 2440 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +1.0332E7 22.8 17.2 71 98500 1241 1347 398 701 325 402 81493 26086 47061 17479 140 4.1 8 8 9.7 2440 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +1.03356E7 22.8 17.2 71 98500 1139 1347 392 627 327 351 72625 25554 40925 15509 130 3.1 8 7 8.0 7620 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.03392E7 22.8 16.7 69 98400 972 1347 398 434 187 299 49678 14486 34435 12958 90 5.7 9 8 8.0 2440 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.03428E7 21.1 17.2 79 98400 753 1347 398 268 160 179 30787 10411 20663 7785 90 6.2 10 9 8.0 2440 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.03464E7 20.0 16.7 81 98500 495 1347 402 72 4 70 8458 163 8246 3040 80 4.1 10 10 8.0 670 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.035E7 18.9 16.7 87 98500 218 1347 396 33 5 32 3788 0 3681 1218 60 3.1 10 10 8.0 400 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.03536E7 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 26 0.0000 0 88 0.000 0.0 1.0 +1.03572E7 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 27 0.0000 0 88 0.000 0.0 1.0 +1.03608E7 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 27 0.0000 0 88 0.000 0.0 1.0 +1.03644E7 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 27 0.0000 0 88 0.000 0.0 1.0 +1.0368E7 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 28 0.0000 0 88 0.000 0.0 1.0 +1.03716E7 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 28 0.0000 0 88 0.000 0.0 1.0 +1.03752E7 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 28 0.0000 0 88 0.000 0.0 1.0 +1.03788E7 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 29 0.0000 0 88 0.000 0.0 1.0 +1.03824E7 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 29 0.0000 0 88 0.000 0.0 1.0 +1.0386E7 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 29 0.0000 0 88 0.000 0.0 1.0 +1.03896E7 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 30 0.0000 0 88 0.000 0.0 1.0 +1.03932E7 15.0 15.0 100 98700 175 1346 373 42 1 42 4627 0 4642 1393 110 4.1 10 10 3.2 60 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.03968E7 16.1 16.1 100 98800 453 1346 380 130 5 129 14399 269 14351 4672 110 4.1 10 10 1.6 90 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.04004E7 16.7 16.1 97 98900 715 1346 384 251 2 250 27895 156 27943 9464 120 3.6 10 10 1.6 90 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.0404E7 16.7 16.1 97 98900 942 1346 384 337 3 335 38058 250 38075 13681 140 3.1 10 10 1.6 90 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.04076E7 17.8 16.1 90 98900 1118 1346 390 377 2 375 43349 164 43410 16110 120 5.7 10 10 2.4 520 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.04112E7 18.9 16.7 87 98800 1231 1346 396 463 2 462 53186 173 53463 19021 80 4.6 10 10 4.8 370 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.04148E7 20.0 16.1 78 98800 1273 1346 401 450 1 448 52151 85 52299 18921 120 3.6 10 10 8.0 460 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.04184E7 22.2 15.6 66 98700 1243 1346 387 721 385 366 84574 30167 43221 16401 80 4.1 8 7 9.7 820 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.0422E7 22.2 15.6 66 98700 1141 1346 379 675 552 208 81549 35954 25261 10370 110 4.1 7 5 11.3 7620 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.04256E7 23.3 15.0 60 98600 974 1346 384 536 411 239 62560 29522 28049 11034 80 3.1 7 5 12.9 7620 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.04292E7 23.9 14.4 56 98500 755 1346 384 484 502 203 55193 35754 23267 8553 150 4.1 7 4 12.9 7620 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.04328E7 22.2 15.0 64 98500 498 1346 386 231 186 162 25414 11868 17909 5699 110 4.1 10 7 12.9 7620 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.04364E7 21.7 15.6 68 98500 221 1346 390 81 51 73 8708 888 7879 2182 100 5.2 10 8 12.9 7620 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.044E7 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 30 0.0000 0 88 0.000 0.0 1.0 +1.04436E7 18.3 16.7 90 98600 0 0 358 0 0 0 0 0 0 0 80 4.1 8 4 12.9 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.04472E7 17.8 16.7 93 98700 0 0 349 0 0 0 0 0 0 0 80 4.1 7 2 12.9 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.04508E7 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 29 0.0000 0 88 0.000 0.0 1.0 +1.04544E7 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 29 0.0000 0 88 0.000 0.0 1.0 +1.0458E7 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 29 0.0000 0 88 0.000 0.0 1.0 +1.04616E7 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 29 0.0000 0 88 0.000 0.0 1.0 +1.04652E7 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 29 0.0000 0 88 0.000 0.0 1.0 +1.04688E7 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 28 0.0000 0 88 0.000 0.0 1.0 +1.04724E7 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 28 0.0000 0 88 0.000 0.0 1.0 +1.0476E7 16.1 16.1 100 98700 6 235 380 1 0 1 0 0 0 0 90 3.6 10 10 4.8 180 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.04796E7 15.0 15.0 100 98700 179 1345 373 31 2 31 3510 0 3517 1123 120 6.7 10 10 4.8 150 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.04832E7 17.2 16.1 93 98700 457 1345 386 106 3 105 11953 144 11886 4071 130 4.6 10 10 3.2 2440 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.04868E7 18.3 16.1 87 98700 718 1345 373 258 129 190 29341 8790 21716 7934 130 4.1 9 8 4.8 7620 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.04904E7 20.0 16.7 81 98800 944 1345 391 399 115 318 45250 9259 36291 13273 110 3.6 10 9 8.0 430 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.0494E7 21.7 16.7 73 98700 1120 1345 378 634 379 318 73850 28703 37276 14402 110 3.1 10 5 8.0 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.04976E7 23.3 16.7 66 98700 1233 1345 386 787 463 362 92194 35750 42692 16237 90 2.6 10 5 12.9 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.05012E7 24.4 15.6 58 98600 1275 1345 399 731 312 435 84974 26136 50931 18584 120 3.6 10 7 12.9 980 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.05048E7 23.9 15.6 60 98500 1244 1345 402 635 251 402 73962 20489 47150 17500 130 6.2 10 8 12.9 1070 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.05084E7 24.4 15.0 56 98400 1142 1345 404 576 206 401 66177 17526 46390 16951 120 4.6 10 8 12.9 1070 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.0512E7 24.4 15.6 58 98400 976 1345 405 415 168 294 47645 13064 33958 12842 120 6.2 10 8 12.9 7620 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.05156E7 23.9 15.0 58 98300 757 1345 422 262 5 259 29293 396 29124 10071 120 4.1 10 10 12.9 7620 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.05192E7 23.3 15.6 62 98300 500 1345 399 174 104 135 19437 5938 15147 5096 110 5.2 10 8 12.9 7620 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.05228E7 21.7 16.1 71 98300 224 1345 385 65 49 57 7142 449 6284 1901 100 4.6 10 7 11.3 7620 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.05264E7 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 28 0.0000 0 88 0.000 0.0 1.0 +1.053E7 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 28 0.0000 0 88 0.000 0.0 1.0 +1.05336E7 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 27 0.0000 0 88 0.000 0.0 1.0 +1.05372E7 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 27 0.0000 0 88 0.000 0.0 1.0 +1.05408E7 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 27 0.0000 0 88 0.000 0.0 1.0 +1.05444E7 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 27 0.0000 0 88 0.000 0.0 1.0 +1.0548E7 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 26 0.0000 0 88 0.000 0.0 1.0 +1.05516E7 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 26 0.0000 0 88 0.000 0.0 1.0 +1.05552E7 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 26 0.0000 0 88 0.000 0.0 1.0 +1.05588E7 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 25 0.0000 0 88 0.000 0.0 1.0 +1.05624E7 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 25 0.0000 0 88 0.000 0.0 1.0 +1.0566E7 16.1 15.6 97 98400 183 1344 362 50 10 48 5470 0 5268 1554 140 2.6 10 8 4.8 3660 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.05696E7 16.7 15.6 93 98500 460 1344 355 203 168 145 22323 9839 16020 5078 160 2.6 8 6 4.0 3660 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.05732E7 19.4 16.1 81 98500 721 1344 369 490 487 230 54905 36279 25913 9056 0 0.0 8 6 8.0 2440 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.05768E7 21.7 16.1 71 98500 947 1344 385 321 69 272 36900 5202 31451 11970 180 1.5 9 7 8.0 3660 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.05804E7 24.4 16.1 60 98500 1122 1344 391 627 246 422 71474 21376 48446 17366 170 2.1 5 5 9.7 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.0584E7 25.0 16.1 58 98500 1234 1344 409 673 213 478 77191 18856 55234 19434 150 3.1 8 8 12.9 3660 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.05876E7 25.0 16.1 58 98400 1277 1344 409 655 256 412 76458 20783 48433 17946 140 2.1 8 8 16.1 1070 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.05912E7 22.8 16.1 66 98300 1246 1344 397 764 270 513 87272 24672 59049 20290 280 4.6 8 8 24.1 1070 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.05948E7 26.1 17.8 60 98300 1144 1344 396 843 724 227 101049 46980 27360 11155 250 2.6 3 3 19.3 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.05984E7 25.0 15.6 56 98200 978 1344 397 622 372 352 70409 31446 40107 14455 160 3.6 6 6 24.1 1220 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.0602E7 25.0 15.0 54 98100 759 1344 393 395 356 195 45210 24723 22431 8339 190 5.2 5 5 24.1 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.06056E7 23.9 15.6 60 98100 503 1344 391 281 370 144 31245 21912 16084 5336 220 5.2 6 6 24.1 3050 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.06092E7 21.1 15.0 68 98100 227 1344 395 59 13 56 6507 131 6196 1891 230 2.1 9 9 24.1 3050 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.06128E7 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 28 0.0000 0 88 0.000 0.0 1.0 +1.06164E7 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 27 0.0000 0 88 0.000 0.0 1.0 +1.062E7 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 27 0.0000 0 88 0.000 0.0 1.0 +1.06236E7 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 27 0.0000 0 88 0.000 0.0 1.0 +1.06272E7 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 26 0.0000 0 88 0.000 0.0 1.0 +1.06308E7 17.8 16.1 90 98200 0 0 349 0 0 0 0 0 0 0 0 0.0 3 2 16.1 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.06344E7 16.1 15.6 97 98100 0 0 329 0 0 0 0 0 0 0 120 1.5 0 0 16.1 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.0638E7 15.6 15.6 100 98100 0 0 327 0 0 0 0 0 0 0 120 1.5 1 0 16.1 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.06416E7 15.0 15.0 100 98200 0 0 324 0 0 0 0 0 0 0 210 2.1 0 0 16.1 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.06452E7 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 25 0.0000 0 88 0.000 0.0 1.0 +1.06488E7 15.0 14.4 97 98200 12 280 340 2 0 2 0 0 0 0 180 2.1 8 4 11.3 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +1.06524E7 15.0 14.4 97 98300 187 1344 337 60 20 57 6490 102 6188 1742 190 2.1 10 3 11.3 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +1.0656E7 16.7 13.9 84 98400 464 1344 357 210 53 192 22606 3802 20780 5884 220 3.6 10 7 12.9 3960 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +1.06596E7 20.0 15.6 76 98400 724 1344 362 422 344 237 47219 26142 26666 9257 220 2.6 8 3 12.9 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.06632E7 22.8 16.1 66 98300 949 1344 361 652 568 251 75465 41334 29216 11314 220 2.6 3 0 16.1 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.06668E7 24.4 16.1 60 98300 1124 1344 385 696 427 339 80767 33439 39594 15089 190 3.1 4 3 19.3 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.06704E7 25.6 15.6 54 98200 1236 1344 400 922 518 446 106413 44505 51849 18666 180 5.2 7 6 19.3 1070 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.0674E7 26.1 14.4 49 98200 1278 1344 422 494 80 418 57690 6650 49161 18129 210 6.2 10 9 32.2 3050 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.06776E7 26.1 14.4 49 98200 1247 1344 422 534 120 422 62052 10125 49385 18087 210 4.6 9 9 32.2 3050 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.06812E7 26.7 13.9 45 98100 1145 1344 409 715 364 405 82197 31392 46882 17080 220 6.7 7 7 32.2 3050 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.06848E7 26.7 13.9 45 98000 979 1344 394 630 396 342 71598 33540 39117 14222 230 3.6 8 3 32.2 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.06884E7 26.1 13.3 45 98000 761 1344 394 397 260 250 44611 20564 28251 9898 250 3.1 9 4 32.2 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.0692E7 25.6 13.9 49 98000 505 1344 392 212 145 158 23439 9263 17552 5677 280 4.1 9 4 24.1 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.06956E7 22.8 14.4 59 98000 230 1344 371 73 69 62 7997 970 6816 2034 240 2.6 6 2 24.1 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.06992E7 20.6 13.9 66 98000 16 482 363 4 0 4 0 0 0 0 240 2.6 6 3 24.1 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.07028E7 20.6 13.9 66 98000 0 0 363 0 0 0 0 0 0 0 240 2.6 8 3 24.1 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.07064E7 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 26 0.0000 0 88 0.000 0.0 1.0 +1.071E7 17.8 12.8 73 98000 0 0 351 0 0 0 0 0 0 0 240 2.6 9 4 32.2 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.07136E7 17.2 13.3 78 98000 0 0 349 0 0 0 0 0 0 0 270 3.1 8 4 32.2 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.07172E7 17.2 13.3 78 98000 0 0 349 0 0 0 0 0 0 0 270 2.6 8 4 32.2 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.07208E7 16.1 13.3 84 97900 0 0 338 0 0 0 0 0 0 0 240 2.1 7 2 32.2 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.07244E7 16.1 13.3 84 97900 0 0 338 0 0 0 0 0 0 0 240 2.1 7 2 32.2 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.0728E7 14.4 12.2 87 98000 0 0 334 0 0 0 0 0 0 0 190 2.1 10 4 32.2 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.07316E7 14.4 12.2 87 98000 0 0 334 0 0 0 0 0 0 0 180 2.1 10 4 32.2 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.07352E7 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 24 0.0000 0 88 0.000 0.0 1.0 +1.07388E7 16.1 13.3 84 98000 191 1343 346 54 48 47 5953 30 5198 1562 250 2.6 9 5 12.9 7620 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +1.07424E7 19.4 14.4 73 98000 467 1343 354 254 397 116 28531 20884 13083 4428 290 2.6 5 2 16.1 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +1.0746E7 22.2 15.6 66 98100 727 1343 365 465 620 129 54654 36476 15223 5916 290 3.1 4 1 19.3 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.07496E7 23.9 15.6 60 98000 952 1343 391 502 405 215 58865 27867 25343 10071 300 3.1 7 6 19.3 4570 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.07532E7 25.6 14.4 50 98000 1126 1343 392 799 600 296 93866 45188 34986 13692 290 4.1 8 4 19.3 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.07568E7 26.7 15.0 49 98000 1238 1343 399 876 634 291 104609 45627 34963 13824 300 4.1 5 4 19.3 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.07604E7 27.2 14.4 46 97900 1279 1343 401 843 537 331 100277 40410 39628 15374 280 5.2 7 4 24.1 4570 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.0764E7 27.8 15.0 46 97900 1248 1343 402 916 682 282 109806 48373 34009 13514 260 4.1 6 3 24.1 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.07676E7 27.8 15.0 46 97800 1146 1343 392 829 711 222 99820 47590 26875 10960 260 2.6 2 1 24.1 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.07712E7 27.8 15.0 46 97800 981 1343 398 666 670 178 79638 43219 21386 8749 240 2.1 2 2 24.1 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.07748E7 28.3 14.4 43 97800 763 1343 387 523 698 128 61956 41726 15223 5999 230 2.6 2 0 24.1 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.07784E7 27.2 13.3 42 97700 508 1343 380 299 552 91 34605 27143 10567 3821 260 2.6 2 0 24.1 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.0782E7 25.6 14.4 50 97700 233 1343 385 98 160 70 10642 2950 7630 2204 240 2.6 8 2 24.1 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.07856E7 22.8 14.4 59 97800 17 504 371 8 4 7 0 0 0 0 230 3.1 6 2 24.1 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.07892E7 21.7 14.4 64 97800 0 0 366 0 0 0 0 0 0 0 240 2.6 4 2 24.1 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.07928E7 20.6 14.4 68 97900 0 0 355 0 0 0 0 0 0 0 230 2.6 3 1 24.1 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.07964E7 19.4 13.3 68 97900 0 0 342 0 0 0 0 0 0 0 230 3.6 4 0 32.2 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.08E7 18.3 12.2 68 97900 0 0 342 0 0 0 0 0 0 0 240 3.1 7 1 32.2 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.08036E7 18.3 12.2 68 97900 0 0 336 0 0 0 0 0 0 0 240 3.1 3 0 32.2 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.08072E7 17.8 13.3 75 97800 0 0 335 0 0 0 0 0 0 0 250 2.6 3 0 32.2 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.08108E7 16.7 13.9 84 97900 0 0 330 0 0 0 0 0 0 0 290 3.1 2 0 32.2 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.08144E7 17.2 14.4 84 97900 0 0 347 0 0 0 0 0 0 0 300 3.6 4 3 32.2 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.0818E7 16.1 13.3 84 97900 0 0 341 0 0 0 0 0 0 0 290 3.1 4 3 32.2 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.08216E7 18.9 13.9 73 98000 7 324 351 4 10 3 0 0 0 0 300 3.1 3 2 40.2 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +1.08252E7 18.9 14.4 76 98000 195 1342 347 83 315 38 9322 0 4279 1352 300 3.6 3 1 40.2 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +1.08288E7 21.7 15.6 68 98000 470 1342 355 292 645 67 34266 25638 7884 2881 300 4.1 3 0 32.2 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +1.08324E7 23.9 16.1 62 98100 729 1342 367 492 757 80 59991 38359 9783 3917 280 3.1 1 0 24.1 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.0836E7 26.1 16.1 54 98100 954 1342 378 710 851 105 77262 88637 14580 2499 270 4.1 2 0 24.1 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.08396E7 27.2 16.1 51 98100 1128 1342 383 876 846 165 107505 51139 20344 8497 320 3.1 6 0 32.2 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.08432E7 27.2 15.6 49 98000 1239 1342 399 848 606 288 101330 43104 34624 13718 260 2.6 10 3 32.2 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.08468E7 28.3 15.0 44 98000 1281 1342 404 862 534 353 102012 40950 42053 16130 200 3.6 10 3 32.2 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.08504E7 28.3 15.0 44 97900 1250 1342 404 887 670 263 106924 46327 31890 12787 200 3.6 10 3 32.2 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.0854E7 28.9 15.6 44 97900 1148 1342 404 765 601 251 91238 41642 30106 12111 280 4.1 8 2 32.2 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.08576E7 30.0 15.0 40 97900 983 1342 410 693 704 178 82893 45394 21393 8756 280 4.1 7 2 32.2 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.08612E7 27.8 14.4 44 97800 765 1342 397 492 642 128 58308 38381 15229 6006 240 3.6 7 2 32.2 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.08648E7 27.2 16.1 51 97800 510 1342 403 273 369 134 30582 20912 15077 5131 270 4.1 4 4 32.2 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.08684E7 26.7 16.7 54 97800 236 1342 398 101 296 50 11272 2100 5597 1775 260 4.1 3 3 32.2 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.0872E7 23.9 16.7 64 97900 19 526 383 12 20 10 0 0 0 0 250 3.1 3 3 32.2 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.08756E7 22.8 16.7 69 97900 0 0 378 0 0 0 0 0 0 0 240 2.6 3 3 32.2 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.08792E7 22.2 16.1 68 97900 0 0 370 0 0 0 0 0 0 0 260 2.1 2 2 24.1 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.08828E7 21.1 15.6 71 97900 0 0 368 0 0 0 0 0 0 0 240 2.1 7 3 32.2 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.08864E7 20.6 15.0 71 97900 0 0 365 0 0 0 0 0 0 0 250 3.1 7 3 32.2 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.089E7 20.0 15.0 73 98000 0 0 353 0 0 0 0 0 0 0 270 5.2 3 1 32.2 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.08936E7 18.9 13.9 73 97900 0 0 340 0 0 0 0 0 0 0 280 4.1 3 0 32.2 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.08972E7 17.2 13.3 78 97900 0 0 332 0 0 0 0 0 0 0 290 3.1 3 0 32.2 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.09008E7 16.7 14.4 87 97900 0 0 331 0 0 0 0 0 0 0 290 3.1 2 0 32.2 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.09044E7 16.1 13.9 87 97900 0 0 327 0 0 0 0 0 0 0 270 3.1 1 0 32.2 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.0908E7 16.1 15.0 93 98000 8 347 329 6 16 4 0 0 0 0 270 2.6 2 0 24.1 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.09116E7 18.9 15.6 81 98000 198 1342 342 89 375 34 10096 0 3866 1248 270 3.1 1 0 24.1 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.09152E7 21.1 16.1 73 98000 473 1342 353 292 665 59 34621 24988 7012 2588 280 4.6 1 0 20.9 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.09188E7 23.3 17.2 69 98000 732 1342 372 481 694 103 57515 36977 12359 4905 280 4.1 3 1 20.9 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.09224E7 25.0 17.8 64 98000 956 1342 381 671 781 115 82450 42647 14184 5940 280 5.2 2 1 24.1 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.0926E7 27.2 18.3 58 98000 1129 1342 413 601 415 251 71336 27804 29964 12071 300 3.1 6 6 24.1 980 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.09296E7 27.8 17.2 53 98000 1240 1342 419 753 379 403 87570 30411 47196 17528 300 5.7 7 7 24.1 1070 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.09332E7 28.3 17.2 51 97900 1282 1342 422 639 249 401 74762 19654 47247 17658 290 4.6 7 7 24.1 1160 9 999999999 29 0.0000 0 88 0.000 16.3 1.0 +1.09368E7 18.9 16.1 84 98000 1251 1342 395 254 6 249 30728 401 30297 12235 310 4.1 10 10 9.7 760 9 999999999 29 0.0000 0 88 0.000 0.3 1.0 +1.09404E7 22.2 19.4 84 97900 1149 1342 418 232 23 213 27934 1417 25784 10597 320 5.2 10 10 16.1 1220 9 999999999 30 0.0000 0 88 0.000 0.5 1.0 +1.0944E7 21.1 19.4 90 97800 984 1342 412 293 4 290 33616 293 33476 12795 340 4.1 10 10 16.1 7620 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.09476E7 24.4 17.8 66 97700 767 1342 428 300 1 299 33140 82 33235 11055 320 5.2 10 10 16.1 7620 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.09512E7 24.4 18.3 69 97700 512 1342 429 139 8 136 15531 440 15263 5199 320 4.1 10 10 24.1 7620 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.09548E7 21.7 18.3 81 97800 239 1342 414 60 4 60 6595 43 6617 2029 320 2.1 10 10 24.1 7620 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.09584E7 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 31 0.0000 0 88 0.000 0.0 1.0 +1.0962E7 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 30 0.0000 0 88 0.000 0.0 1.0 +1.09656E7 21.1 17.8 81 97800 0 0 376 0 0 0 0 0 0 0 300 2.6 5 5 19.3 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.09692E7 18.9 17.2 90 97800 0 0 344 0 0 0 0 0 0 0 290 2.6 0 0 16.1 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.09728E7 18.3 16.7 90 97800 0 0 340 0 0 0 0 0 0 0 270 3.6 0 0 16.1 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.09764E7 17.8 16.7 93 97800 0 0 338 0 0 0 0 0 0 0 270 2.6 1 0 12.9 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.098E7 17.2 16.7 97 97700 0 0 335 0 0 0 0 0 0 0 290 3.6 2 0 12.9 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.09836E7 16.7 16.1 97 97800 0 0 332 0 0 0 0 0 0 0 300 3.1 2 0 12.9 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.09872E7 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 28 0.0000 0 88 0.000 0.0 1.0 +1.09908E7 17.2 16.1 93 97800 0 0 341 0 0 0 0 0 0 0 300 2.6 5 1 11.3 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.09944E7 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 27 0.0000 0 88 0.000 0.0 1.0 +1.0998E7 17.2 17.2 100 97800 202 1341 388 23 1 23 2692 0 2696 904 330 3.6 10 10 0.4 30 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.10016E7 18.3 17.8 97 97900 476 1341 375 159 91 126 17735 4759 14115 4746 330 3.6 9 8 4.0 90 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.10052E7 21.7 18.3 81 97900 735 1341 380 439 356 245 48985 26478 27494 9561 320 1.5 9 5 9.7 9140 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.10088E7 22.8 18.3 76 97800 958 1341 385 616 501 258 71128 35677 29963 11611 320 1.0 8 5 12.9 9140 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.10124E7 24.4 18.3 69 97800 1131 1341 391 681 397 346 78855 30409 40329 15344 340 2.6 8 4 16.1 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.1016E7 24.4 17.2 64 97700 1242 1341 387 909 639 317 107740 46160 37813 14779 290 2.6 7 3 16.1 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.10196E7 26.7 17.2 56 97700 1283 1341 405 778 377 417 90769 30278 48999 18138 330 5.2 9 5 19.3 9140 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.10232E7 27.8 16.7 51 97600 1252 1341 407 854 540 350 100627 40786 41515 15936 290 6.2 8 4 24.1 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.10268E7 28.9 17.2 49 97500 1151 1341 414 784 497 357 90903 38916 41669 15762 320 5.2 8 4 24.1 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.10304E7 27.8 16.7 51 97400 986 1341 404 654 468 310 74850 36636 35701 13410 340 3.6 8 3 24.1 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.1034E7 27.8 16.7 51 97300 769 1341 400 416 323 231 47005 23631 26244 9478 340 4.1 7 2 24.1 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.10376E7 26.1 16.1 54 97300 515 1341 390 273 304 157 30225 18827 17465 5731 320 4.1 8 2 24.1 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.10412E7 24.4 16.7 62 97300 242 1341 389 74 68 62 8134 937 6839 2085 300 4.1 8 4 24.1 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.10448E7 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 25 0.0000 0 88 0.000 0.0 1.0 +1.10484E7 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 24 0.0000 0 88 0.000 0.0 1.0 +1.1052E7 20.0 14.4 71 97300 0 0 367 0 0 0 0 0 0 0 270 4.1 5 5 19.3 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +1.10556E7 18.3 14.4 78 97300 0 0 353 0 0 0 0 0 0 0 290 4.1 6 3 16.1 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +1.10592E7 17.2 15.0 87 97200 0 0 348 0 0 0 0 0 0 0 280 3.6 6 3 12.9 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +1.10628E7 17.2 15.0 87 97200 0 0 340 0 0 0 0 0 0 0 260 3.1 3 1 12.9 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.10664E7 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 19 0.0000 0 88 0.000 0.0 1.0 +1.107E7 16.1 14.4 90 97200 0 0 345 0 0 0 0 0 0 0 280 4.6 8 4 12.9 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.10736E7 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 17 0.0000 0 88 0.000 0.0 1.0 +1.10772E7 16.1 13.3 84 97200 0 0 344 0 0 0 0 0 0 0 310 4.6 8 4 16.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.10808E7 15.6 12.8 84 97200 10 369 335 4 0 4 0 0 0 0 300 3.6 8 2 19.3 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.10844E7 15.0 12.2 84 97300 205 1341 335 67 93 53 7372 697 5851 1750 340 4.1 6 3 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.1088E7 16.7 11.7 73 97300 479 1341 342 215 280 116 24277 15428 13150 4494 330 5.7 5 3 32.2 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.10916E7 19.4 9.4 53 97400 737 1341 344 473 586 151 55249 39101 17713 6772 360 6.7 3 1 40.2 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.10952E7 20.6 3.3 32 97400 960 1341 336 662 688 169 79711 48433 20440 8318 30 6.7 0 0 48.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.10988E7 21.7 3.9 31 97300 1132 1341 342 854 787 190 104459 55396 23353 9604 350 5.7 0 0 48.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.11024E7 22.2 5.0 33 97300 1243 1341 346 965 822 202 119197 57266 25078 10258 360 6.2 0 0 48.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.1106E7 23.3 6.1 33 97300 1284 1341 352 999 827 206 123820 57081 25664 10481 310 4.1 0 0 48.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.11096E7 22.8 4.4 30 97300 1253 1341 348 973 816 210 120018 57542 26037 10617 330 6.2 1 0 48.3 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.11132E7 22.8 4.4 30 97200 1152 1341 348 882 781 211 107301 56261 25801 10519 340 6.7 2 0 48.3 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.11168E7 22.8 2.8 27 97200 987 1341 346 729 738 187 87473 53416 22544 9143 320 5.2 2 0 48.3 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.11204E7 21.1 1.7 28 97300 771 1341 337 528 664 148 62320 46203 17541 6799 340 6.7 1 0 48.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.1124E7 20.0 -0.6 25 97300 517 1341 329 302 513 106 34823 30581 12266 4351 340 6.2 1 0 48.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.11276E7 17.8 -1.7 27 97300 245 1341 318 99 228 58 11057 5056 6497 2005 340 6.2 1 0 40.2 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.11312E7 15.6 -2.2 30 97300 22 570 308 12 4 11 0 0 0 0 340 6.2 1 0 40.2 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.11348E7 13.3 -2.2 34 97400 0 0 298 0 0 0 0 0 0 0 340 5.2 1 0 32.2 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.11384E7 11.1 -1.7 41 97400 0 0 290 0 0 0 0 0 0 0 340 5.2 1 0 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.1142E7 12.2 -1.7 38 97400 0 0 294 0 0 0 0 0 0 0 350 5.2 0 0 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.11456E7 11.1 -1.7 41 97500 0 0 290 0 0 0 0 0 0 0 360 4.6 0 0 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.11492E7 10.6 -1.7 43 97500 0 0 288 0 0 0 0 0 0 0 20 5.2 0 0 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.11528E7 10.6 -1.7 43 97500 0 0 288 0 0 0 0 0 0 0 40 4.6 0 0 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.11564E7 10.0 -1.7 44 97600 0 0 285 0 0 0 0 0 0 0 40 5.2 0 0 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.116E7 8.9 -1.1 50 97600 0 0 281 0 0 0 0 0 0 0 50 5.2 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.11636E7 8.9 -1.1 50 97700 0 0 296 0 0 0 0 0 0 0 70 4.1 4 4 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.11672E7 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 9 0.0000 0 88 0.000 0.0 1.0 +1.11708E7 9.4 -1.1 48 97800 209 1340 311 77 49 70 8338 1142 7609 2077 90 5.2 8 8 40.2 880 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.11744E7 11.1 0.0 47 97800 482 1340 306 272 400 128 30642 25367 14479 4832 80 6.2 5 4 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.1178E7 13.9 0.0 39 97900 739 1340 313 475 587 151 55703 41471 17782 6783 90 5.7 3 2 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.11816E7 15.6 0.0 35 97900 962 1340 310 725 787 160 87774 55401 19455 7949 90 5.2 3 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.11852E7 17.2 1.7 35 97900 1134 1340 319 871 847 153 108369 57099 19118 7959 50 5.2 0 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.11888E7 17.8 2.8 37 97800 1244 1340 323 987 887 163 123970 59345 20567 8508 100 4.1 0 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.11924E7 20.0 3.9 35 97800 1285 1340 334 1018 888 166 106025 90594 20866 9831 60 3.1 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.1196E7 20.6 5.0 36 97700 1254 1340 338 990 883 164 124359 58316 20696 8562 10 1.5 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.11996E7 21.7 5.0 34 97700 1153 1340 343 899 864 155 111913 57192 19380 8067 350 6.2 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.12032E7 22.2 5.0 33 97600 989 1340 346 747 823 140 91574 54356 17232 7148 350 4.6 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.12068E7 21.7 2.8 29 97600 773 1340 341 547 749 117 65744 48379 14113 5592 330 3.6 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.12104E7 21.1 0.0 25 97600 520 1340 335 322 612 86 37763 33725 10116 3687 340 4.1 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.1214E7 20.0 -1.7 23 97600 248 1340 328 110 330 50 12450 6244 5674 1810 330 4.1 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.12176E7 16.7 0.0 32 97700 24 592 315 12 13 10 0 0 0 0 320 3.6 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.12212E7 15.0 0.6 38 97700 0 0 308 0 0 0 0 0 0 0 340 4.1 0 0 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.12248E7 13.3 0.6 42 97800 0 0 301 0 0 0 0 0 0 0 320 3.6 0 0 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.12284E7 12.2 1.1 47 97800 0 0 297 0 0 0 0 0 0 0 320 2.6 0 0 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.1232E7 11.1 1.1 50 97800 0 0 292 0 0 0 0 0 0 0 340 2.6 0 0 32.2 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.12356E7 10.0 1.1 54 97900 0 0 288 0 0 0 0 0 0 0 320 2.1 0 0 32.2 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.12392E7 10.0 1.1 54 97800 0 0 288 0 0 0 0 0 0 0 10 2.6 0 0 32.2 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.12428E7 10.0 1.7 57 97900 0 0 289 0 0 0 0 0 0 0 50 3.1 0 0 32.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.12464E7 9.4 2.8 63 97900 0 0 287 0 0 0 0 0 0 0 70 3.6 0 0 32.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.125E7 8.3 2.2 66 98000 0 0 282 0 0 0 0 0 0 0 80 3.1 0 0 32.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.12536E7 7.8 2.8 71 98100 11 413 281 8 17 6 0 0 0 0 100 4.1 0 0 32.2 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.12572E7 10.0 2.8 61 98200 212 1339 290 99 392 37 11303 1915 4234 1363 80 4.1 0 0 32.2 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.12608E7 11.7 3.9 59 98200 485 1339 298 308 677 63 36681 31701 7521 2765 90 5.2 0 0 32.2 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.12644E7 14.4 6.7 60 98300 742 1339 312 532 806 86 65021 46805 10542 4207 80 3.6 0 0 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.1268E7 17.2 10.6 65 98300 963 1339 329 732 864 110 78303 88757 15163 2588 110 2.1 1 0 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.12716E7 20.0 11.7 59 98300 1135 1339 354 844 765 195 102742 51111 23857 9823 150 4.1 2 2 32.2 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.12752E7 22.8 9.4 43 98300 1246 1339 378 588 353 259 71194 25664 31539 12628 160 2.1 6 6 32.2 1220 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.12788E7 22.2 8.9 43 98200 1286 1339 379 728 338 404 85674 28801 47873 17779 190 2.1 7 7 32.2 1370 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.12824E7 22.8 8.3 40 98200 1255 1339 381 751 423 353 88963 34568 42089 16053 140 1.5 7 7 32.2 1370 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.1286E7 22.8 7.8 38 98200 1154 1339 380 538 171 391 62358 15101 45625 16773 40 1.5 7 7 32.2 1370 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.12896E7 22.8 9.4 43 98200 990 1339 388 524 187 386 59271 17270 43953 15426 180 2.6 8 8 32.2 1370 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.12932E7 22.8 9.4 43 98200 775 1339 388 460 323 274 51580 27402 30902 10623 150 2.1 9 8 32.2 1370 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.12968E7 22.8 8.3 40 98200 522 1339 381 291 320 167 32278 22307 18613 6011 180 3.6 8 7 32.2 7620 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.13004E7 20.6 8.3 46 98200 250 1339 384 80 53 70 8787 1311 7716 2295 180 2.6 9 9 32.2 7620 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.1304E7 18.9 8.9 52 98200 25 614 368 13 12 12 0 0 0 0 140 3.1 8 8 24.1 7620 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.13076E7 17.2 8.9 58 98200 0 0 346 0 0 0 0 0 0 0 120 2.6 5 5 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.13112E7 16.7 9.4 63 98200 0 0 345 0 0 0 0 0 0 0 130 2.1 5 5 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.13148E7 16.1 9.4 65 98300 0 0 339 0 0 0 0 0 0 0 140 2.1 5 4 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.13184E7 16.1 8.3 60 98300 0 0 332 0 0 0 0 0 0 0 0 0.0 2 2 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.1322E7 15.6 7.2 58 98300 0 0 318 0 0 0 0 0 0 0 0 0.0 0 0 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.13256E7 15.0 7.8 62 98300 0 0 316 0 0 0 0 0 0 0 0 0.0 0 0 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.13292E7 13.3 7.8 69 98300 0 0 309 0 0 0 0 0 0 0 170 1.5 0 0 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.13328E7 12.2 7.8 75 98300 0 0 304 0 0 0 0 0 0 0 160 1.5 0 0 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.13364E7 11.7 7.2 74 98400 0 0 301 0 0 0 0 0 0 0 0 0.0 1 0 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.134E7 11.1 7.2 77 98500 12 435 309 7 8 6 0 0 0 0 0 0.0 4 2 24.1 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.13436E7 11.7 7.8 77 98600 215 1339 317 84 150 61 9201 2405 6705 1958 0 0.0 10 4 24.1 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.13472E7 15.0 8.3 65 98700 488 1339 330 211 169 150 23426 11058 16729 5398 230 2.6 10 3 24.1 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.13508E7 16.7 9.4 63 98700 744 1339 339 471 432 231 53260 34141 26262 9299 230 4.1 8 3 24.1 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.13544E7 20.0 10.0 53 98700 965 1339 356 713 739 179 85332 50494 21523 8750 210 2.6 6 3 24.1 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.1358E7 21.1 10.0 49 98700 1137 1339 364 643 498 220 77656 35049 26710 10869 220 3.6 5 4 24.1 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.13616E7 22.8 10.0 44 98600 1247 1339 372 880 671 255 106668 48282 31086 12473 200 4.6 4 4 24.1 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.13652E7 22.8 8.9 41 98500 1287 1339 377 898 534 384 106121 44529 45687 17173 290 1.5 6 6 24.1 1830 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.13688E7 23.9 9.4 40 98500 1256 1339 384 721 408 337 85689 32485 40309 15523 240 1.5 6 6 24.1 1830 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.13724E7 23.9 8.3 37 98400 1156 1339 379 748 525 296 88607 41255 35275 13794 340 2.6 5 5 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.1376E7 24.4 10.0 40 98300 992 1339 381 679 597 237 79836 44604 28017 11078 320 3.6 4 4 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.13796E7 24.4 9.4 39 98300 777 1339 377 523 673 133 62131 43039 15863 6249 330 3.1 3 3 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.13832E7 23.3 10.0 43 98200 524 1339 368 253 352 116 28900 20279 13302 4695 320 3.6 3 2 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.13868E7 22.2 9.4 44 98200 253 1339 362 114 300 58 12726 5726 6495 2036 320 2.1 3 2 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.13904E7 20.6 8.3 46 98300 26 614 357 10 17 8 0 0 0 0 320 3.1 3 3 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.1394E7 18.9 8.9 52 98300 0 0 346 0 0 0 0 0 0 0 340 2.6 2 2 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.13976E7 17.8 8.3 54 98300 0 0 335 0 0 0 0 0 0 0 320 2.6 1 1 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.14012E7 15.0 8.9 67 98300 0 0 317 0 0 0 0 0 0 0 330 2.1 0 0 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.14048E7 13.3 9.4 78 98300 0 0 310 0 0 0 0 0 0 0 320 2.1 0 0 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.14084E7 13.3 10.6 83 98300 0 0 312 0 0 0 0 0 0 0 300 3.6 0 0 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.1412E7 12.8 10.0 83 98300 0 0 309 0 0 0 0 0 0 0 300 2.6 0 0 19.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.14156E7 12.8 9.4 80 98300 0 0 308 0 0 0 0 0 0 0 320 3.1 0 0 19.3 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.14192E7 13.3 8.9 75 98300 0 0 310 0 0 0 0 0 0 0 330 2.6 0 0 19.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.14228E7 13.3 6.1 62 98300 0 0 307 0 0 0 0 0 0 0 340 2.6 0 0 19.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.14264E7 11.7 8.3 80 98300 13 457 302 6 4 6 0 0 0 0 330 2.6 0 0 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.143E7 13.3 8.9 75 98400 218 1338 310 90 253 49 10048 2453 5486 1704 310 2.1 0 0 16.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.14336E7 17.2 8.3 56 98400 490 1338 326 292 556 89 33837 28490 10347 3710 340 3.1 0 0 16.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.14372E7 20.0 10.6 55 98400 746 1338 342 513 698 124 60922 43166 14782 5798 330 2.6 0 0 16.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.14408E7 22.2 7.2 38 98400 967 1338 348 715 781 150 86868 51843 18301 7540 290 3.1 0 0 16.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.14444E7 23.3 6.7 34 98400 1138 1338 353 879 836 168 108515 55906 20835 8646 300 3.6 0 0 24.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.1448E7 23.9 6.1 32 98300 1248 1338 355 976 855 178 121749 57194 22311 9200 340 4.6 0 0 32.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.14516E7 25.0 4.4 27 98200 1288 1338 358 1016 866 182 127263 58481 22908 9418 330 2.1 0 0 32.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.14552E7 26.1 4.4 25 98200 1257 1338 363 986 859 179 123169 58073 22468 9254 330 2.6 0 0 32.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.14588E7 26.7 4.4 24 98100 1157 1338 366 891 834 170 110264 56607 21135 8753 340 5.2 0 0 32.2 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.14624E7 27.2 7.2 28 98100 993 1338 372 739 790 153 89994 52538 18712 7736 320 4.1 0 0 32.2 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.1466E7 26.1 4.4 25 98000 778 1338 363 542 714 128 64738 46854 15347 6058 320 5.7 0 0 32.2 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.14696E7 25.6 6.1 29 98000 527 1338 363 318 573 94 37025 31471 10981 3989 300 5.2 0 0 32.2 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.14732E7 23.9 5.6 31 98000 256 1338 354 111 301 55 12481 6044 6202 1969 310 4.1 0 0 32.2 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.14768E7 21.7 6.1 37 98100 28 636 344 14 10 12 0 0 0 0 320 3.1 1 0 32.2 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.14804E7 17.2 6.1 48 98100 0 0 335 0 0 0 0 0 0 0 270 3.6 2 2 32.2 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.1484E7 15.6 7.2 58 98100 0 0 329 0 0 0 0 0 0 0 270 3.1 2 2 32.2 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.14876E7 14.4 7.8 65 98100 0 0 319 0 0 0 0 0 0 0 290 4.1 2 1 32.2 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.14912E7 14.4 8.3 67 98100 0 0 320 0 0 0 0 0 0 0 300 4.1 2 1 32.2 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.14948E7 13.9 8.3 69 98000 0 0 318 0 0 0 0 0 0 0 290 4.1 2 1 32.2 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.14984E7 14.4 8.9 70 98000 0 0 315 0 0 0 0 0 0 0 300 4.1 1 0 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.1502E7 12.8 9.4 80 98000 0 0 308 0 0 0 0 0 0 0 300 4.1 0 0 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.15056E7 13.3 9.4 78 97900 0 0 310 0 0 0 0 0 0 0 300 4.1 0 0 19.3 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.15092E7 12.8 9.4 80 97900 0 0 308 0 0 0 0 0 0 0 300 4.6 2 0 19.3 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.15128E7 11.7 9.4 86 97900 14 457 309 7 1 6 0 0 0 0 290 2.6 8 1 19.3 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.15164E7 13.3 9.4 78 98000 221 1337 324 88 114 69 9560 2301 7524 2136 310 5.7 10 3 16.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.152E7 15.6 10.0 70 98000 492 1337 335 281 369 145 31299 23400 16223 5321 310 4.1 10 3 16.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.15236E7 18.9 11.1 61 98100 748 1337 355 482 470 219 54737 35754 25001 9010 310 4.6 10 4 16.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.15272E7 21.7 11.7 53 98000 968 1337 369 672 495 314 76941 41162 36173 13418 310 5.2 10 4 16.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.15308E7 23.9 10.6 43 98000 1139 1337 382 743 424 382 85994 36560 44509 16456 310 5.2 10 5 19.3 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.15344E7 24.4 8.3 36 98000 1249 1337 389 892 425 495 102837 40307 57492 19973 310 6.2 10 7 24.1 7620 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.1538E7 23.9 10.0 42 97900 1289 1337 395 506 147 364 60036 11893 43475 16543 340 6.2 10 8 19.3 7620 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.15416E7 25.0 11.1 42 97900 1258 1337 423 431 41 392 50602 3424 46338 17303 270 5.2 10 10 19.3 7620 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.15452E7 25.6 8.9 35 97900 1158 1337 423 340 1 339 39861 82 39997 15246 300 5.7 10 10 19.3 7620 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.15488E7 25.6 8.9 35 97800 995 1337 423 271 9 265 31623 706 31098 12073 340 5.2 10 10 19.3 7620 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.15524E7 25.6 10.0 38 97800 780 1337 404 360 217 234 40923 17020 26744 9665 320 5.2 9 8 16.1 7620 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.1556E7 25.6 7.2 31 97800 529 1337 400 159 60 136 17977 3816 15441 5300 320 5.2 9 8 16.1 7620 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.15596E7 22.8 7.2 37 97800 259 1337 386 78 12 76 8543 349 8355 2458 300 4.6 9 8 16.1 7620 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.15632E7 20.6 7.2 42 97800 29 658 374 9 1 9 0 0 0 0 320 2.6 8 8 16.1 7620 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.15668E7 18.9 8.3 51 97900 0 0 351 0 0 0 0 0 0 0 320 3.6 5 4 16.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.15704E7 17.2 8.9 58 97900 0 0 344 0 0 0 0 0 0 0 300 3.1 4 4 16.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.1574E7 15.6 9.4 67 97800 0 0 334 0 0 0 0 0 0 0 310 3.1 5 3 16.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.15776E7 14.4 10.0 75 97800 0 0 329 0 0 0 0 0 0 0 280 4.1 7 3 16.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.15812E7 13.9 10.0 78 97800 0 0 327 0 0 0 0 0 0 0 300 4.1 7 3 16.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.15848E7 13.3 10.0 80 97800 0 0 321 0 0 0 0 0 0 0 280 4.6 6 2 16.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.15884E7 12.8 10.0 83 97800 0 0 322 0 0 0 0 0 0 0 300 4.1 6 3 12.9 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.1592E7 12.8 10.0 83 97800 0 0 322 0 0 0 0 0 0 0 300 4.1 6 3 12.9 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.15956E7 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 15 0.0000 0 88 0.000 0.0 1.0 +1.15992E7 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 15 0.0000 0 88 0.000 0.0 1.0 +1.16028E7 14.4 10.0 75 97900 224 1337 354 28 8 27 3285 0 3173 1066 320 3.1 9 9 11.3 4270 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.16064E7 16.1 11.1 72 98000 495 1337 356 184 82 153 20405 5300 17046 5522 320 2.6 8 8 16.1 3660 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.161E7 20.6 11.7 57 98000 749 1337 380 306 120 239 34507 9443 27100 9566 320 3.6 8 8 16.1 3660 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.16136E7 23.9 11.7 46 98000 970 1337 380 640 512 269 74207 39830 31370 12066 360 2.6 4 4 16.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.16172E7 25.6 11.7 42 98000 1140 1337 370 834 705 233 100266 49721 28165 11402 20 2.6 0 0 19.3 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.16208E7 26.7 11.7 39 98000 1250 1337 375 944 743 248 114634 52128 30286 12201 40 4.1 0 0 19.3 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.16244E7 27.8 11.7 37 97900 1290 1337 381 989 763 253 120552 53379 31016 12474 90 2.1 0 0 19.3 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.1628E7 28.3 10.6 33 97900 1259 1337 382 959 753 249 116634 53318 30455 12258 360 2.1 0 0 16.1 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.16316E7 28.3 10.6 33 97900 1159 1337 382 861 722 235 103767 51357 28477 11516 120 2.1 0 0 16.1 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.16352E7 28.9 10.0 31 97900 996 1337 384 711 672 211 84428 48128 25183 10133 50 3.6 0 0 16.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.16388E7 28.9 8.9 29 97900 782 1337 383 512 579 174 59648 40665 20364 7796 60 3.1 0 0 16.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.16424E7 27.8 9.4 32 97900 531 1337 385 279 389 125 31744 23385 14280 4999 70 3.1 1 1 19.3 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.1646E7 27.2 8.3 30 97900 262 1337 374 99 170 66 10978 4157 7343 2260 90 1.5 0 0 19.3 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +1.16496E7 24.4 9.4 39 98000 31 680 361 14 2 14 0 0 0 0 200 1.0 2 0 19.3 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +1.16532E7 22.8 10.0 44 98000 0 0 354 0 0 0 0 0 0 0 180 1.0 1 0 16.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.16568E7 22.2 10.6 48 98100 0 0 352 0 0 0 0 0 0 0 30 1.0 0 0 12.9 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.16604E7 21.7 11.7 53 98200 0 0 358 0 0 0 0 0 0 0 80 2.1 3 1 12.9 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.1664E7 20.0 11.7 59 98100 0 0 350 0 0 0 0 0 0 0 160 1.5 3 1 12.9 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.16676E7 16.7 11.7 73 98100 0 0 334 0 0 0 0 0 0 0 300 2.6 2 1 12.9 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.16712E7 17.8 12.8 73 98100 0 0 340 0 0 0 0 0 0 0 10 1.5 2 1 12.9 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.16748E7 15.6 12.8 84 98100 0 0 324 0 0 0 0 0 0 0 0 0.0 2 0 11.3 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.16784E7 17.2 12.2 73 98200 0 0 337 0 0 0 0 0 0 0 60 2.6 4 1 11.3 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.1682E7 16.1 12.2 78 98200 0 0 332 0 0 0 0 0 0 0 40 2.1 3 1 11.3 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.16856E7 15.6 11.1 75 98300 17 501 328 9 23 6 0 0 0 0 60 3.6 3 1 11.3 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.16892E7 17.2 11.1 68 98400 226 1336 329 107 415 37 12253 1637 4246 1393 80 3.6 0 0 11.3 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.16928E7 20.0 15.0 73 98500 497 1336 347 316 687 61 37632 27927 7282 2713 90 4.6 0 0 11.3 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.16964E7 21.7 12.2 55 98600 751 1336 352 537 808 83 65764 44095 10194 4098 90 4.6 0 0 11.3 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.17E7 23.9 13.3 52 98600 971 1336 363 729 865 99 78772 89534 13718 2556 110 5.2 0 0 11.3 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.17036E7 26.1 13.9 47 98600 1141 1336 375 884 904 111 95314 94109 14784 3998 120 4.6 0 0 11.3 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.17072E7 27.8 12.2 38 98600 1250 1336 398 854 681 217 104739 45601 26756 10919 120 5.7 3 3 11.3 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.17108E7 28.3 12.2 37 98600 1291 1336 407 886 542 362 105078 42951 43219 16487 160 3.6 5 5 11.3 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.17144E7 28.3 11.1 34 98500 1260 1336 405 850 630 256 103153 44795 31246 12542 120 4.1 5 5 11.3 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.1718E7 29.4 11.7 33 98500 1160 1336 412 919 789 235 110715 55542 28466 11519 160 2.6 5 5 11.3 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +1.17216E7 29.4 10.0 30 98400 998 1336 404 798 858 158 96899 56210 19270 7968 180 4.1 3 3 12.9 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +1.17252E7 28.9 10.6 32 98400 784 1336 402 488 532 176 56772 36980 20571 7876 180 3.1 3 3 12.9 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +1.17288E7 28.3 10.0 32 98400 534 1336 394 262 356 121 29896 20992 13861 4891 190 2.1 3 2 11.3 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +1.17324E7 27.8 10.6 34 98400 264 1336 396 114 267 62 12705 5814 6932 2176 160 3.1 4 3 11.3 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +1.1736E7 24.4 11.7 45 98400 32 679 386 11 15 9 0 0 0 0 130 2.6 5 5 11.3 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +1.17396E7 23.3 12.2 50 98500 0 0 381 0 0 0 0 0 0 0 130 2.6 5 5 11.3 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +1.17432E7 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 22 0.0000 0 88 0.000 0.0 1.0 +1.17468E7 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 22 0.0000 0 88 0.000 0.0 1.0 +1.17504E7 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 22 0.0000 0 88 0.000 0.0 1.0 +1.1754E7 18.9 11.7 63 98600 0 0 352 0 0 0 0 0 0 0 180 4.1 7 3 11.3 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +1.17576E7 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 21 0.0000 0 88 0.000 0.0 1.0 +1.17612E7 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 21 0.0000 0 88 0.000 0.0 1.0 +1.17648E7 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 21 0.0000 0 88 0.000 0.0 1.0 +1.17684E7 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 20 0.0000 0 88 0.000 0.0 1.0 +1.1772E7 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 20 0.0000 0 88 0.000 0.0 1.0 +1.17756E7 17.2 11.1 68 98800 229 1336 356 68 40 61 7485 653 6737 2024 160 1.0 8 7 16.1 2740 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.17792E7 19.4 11.7 61 98800 499 1336 368 161 108 121 18215 6156 13745 4740 190 3.1 8 7 12.9 2740 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.17828E7 22.2 13.3 57 98800 753 1336 376 376 348 180 43366 23845 20860 7860 200 4.1 5 5 12.9 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.17864E7 24.4 13.3 50 98800 972 1336 366 718 821 120 88523 48496 14851 6213 180 3.1 0 0 12.9 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.179E7 26.1 13.9 47 98800 1142 1336 375 871 861 134 93395 89495 17640 4417 190 1.5 0 0 16.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.17936E7 27.2 13.9 44 98800 1251 1336 381 970 883 142 103757 91906 18204 7313 140 2.1 0 0 16.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.17972E7 28.3 12.8 38 98700 1292 1336 411 1008 709 322 120605 53353 38773 15114 140 1.5 6 6 16.1 1830 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.18008E7 27.8 12.2 38 98700 1261 1336 404 872 587 318 104044 44590 38182 14885 160 5.7 5 5 16.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +1.18044E7 28.9 11.7 34 98600 1161 1336 410 689 411 332 80843 32846 39203 15039 210 2.1 5 5 16.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +1.1808E7 28.3 11.7 36 98500 999 1336 406 666 500 293 77051 39937 34100 13016 160 3.6 5 5 16.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +1.18116E7 28.9 12.2 36 98500 786 1336 414 395 323 205 45375 23471 23669 8848 130 2.6 8 6 16.1 3050 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +1.18152E7 28.3 11.1 34 98400 536 1336 402 271 344 134 30668 21028 15228 5284 190 4.6 8 4 16.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +1.18188E7 26.7 11.1 38 98500 267 1336 394 103 115 80 11248 3397 8770 2580 200 3.1 9 4 16.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +1.18224E7 25.0 12.2 45 98500 34 701 386 17 10 16 0 0 0 0 180 3.6 9 4 12.9 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +1.1826E7 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 21 0.0000 0 88 0.000 0.0 1.0 +1.18296E7 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 22 0.0000 0 88 0.000 0.0 1.0 +1.18332E7 20.6 12.2 59 98500 0 0 364 0 0 0 0 0 0 0 210 2.6 8 4 12.9 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +1.18368E7 20.6 12.2 59 98500 0 0 364 0 0 0 0 0 0 0 240 2.6 8 4 12.9 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +1.18404E7 18.3 11.7 65 98500 0 0 352 0 0 0 0 0 0 0 260 2.6 8 4 12.9 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +1.1844E7 18.3 11.7 65 98500 0 0 350 0 0 0 0 0 0 0 260 2.1 7 3 12.9 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +1.18476E7 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 22 0.0000 0 88 0.000 0.0 1.0 +1.18512E7 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 23 0.0000 0 88 0.000 0.0 1.0 +1.18548E7 16.7 12.2 75 98500 0 0 345 0 0 0 0 0 0 0 330 1.0 8 4 12.9 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +1.18584E7 15.6 12.8 84 98500 19 523 338 11 17 9 0 0 0 0 220 2.6 7 3 11.3 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +1.1862E7 18.3 12.8 70 98600 231 1335 343 108 301 56 11973 3945 6228 1921 240 1.5 6 1 12.9 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +1.18656E7 22.2 13.3 57 98600 501 1335 362 296 570 82 34527 26821 9595 3504 230 3.1 6 1 12.9 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +1.18692E7 24.4 14.4 54 98700 754 1335 374 506 693 114 60453 39957 13670 5430 280 3.1 6 1 12.9 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +1.18728E7 25.6 13.3 47 98700 973 1335 379 685 720 160 82670 45902 19396 7995 270 3.1 8 1 12.9 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.18764E7 27.2 13.9 44 98600 1143 1335 388 821 796 139 102516 47336 17430 7317 330 4.6 6 1 12.9 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.188E7 28.9 13.3 38 98500 1252 1335 396 932 844 139 99579 87730 17833 7266 320 3.6 4 1 11.3 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.18836E7 28.9 12.8 37 98500 1292 1335 408 933 638 315 111839 47598 37998 14865 270 4.6 8 4 11.3 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.18872E7 28.3 12.2 37 98400 1262 1335 401 884 708 214 108703 47097 26455 10806 140 3.1 7 3 11.3 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.18908E7 29.4 11.1 32 98300 1162 1335 405 849 702 239 102228 49934 28937 11684 240 3.1 7 3 11.3 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.18944E7 29.4 12.2 35 98300 1000 1335 410 648 461 303 74767 37170 35173 13337 250 3.1 5 4 11.3 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.1898E7 29.4 11.7 33 98200 787 1335 406 530 626 162 62067 41774 19056 7397 310 3.6 3 3 11.3 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.19016E7 28.9 11.7 34 98200 538 1335 403 323 533 109 37170 29561 12590 4535 280 3.6 3 3 11.3 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.19052E7 27.8 12.2 38 98200 270 1335 413 71 9 69 7853 220 7658 2364 300 3.1 7 7 11.3 1830 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.19088E7 26.1 12.8 44 98300 35 723 399 13 18 11 0 0 0 0 30 3.1 6 6 11.3 1830 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.19124E7 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 28 0.0000 0 88 0.000 0.0 1.0 +1.1916E7 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 28 0.0000 0 88 0.000 0.0 1.0 +1.19196E7 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 28 0.0000 0 88 0.000 0.0 1.0 +1.19232E7 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 28 0.0000 0 88 0.000 0.0 1.0 +1.19268E7 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 28 0.0000 0 88 0.000 0.0 1.0 +1.19304E7 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 27 0.0000 0 88 0.000 0.0 1.0 +1.1934E7 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 27 0.0000 0 88 0.000 0.0 1.0 +1.19376E7 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 27 0.0000 0 88 0.000 0.0 1.0 +1.19412E7 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 27 0.0000 0 88 0.000 0.0 1.0 +1.19448E7 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 26 0.0000 0 88 0.000 0.0 1.0 +1.19484E7 18.9 14.4 76 98400 234 1335 341 107 374 42 12143 2065 4778 1558 350 3.1 0 0 4.8 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.1952E7 20.6 13.9 66 98400 503 1335 348 301 614 70 35550 27002 8290 3071 340 3.6 0 0 4.8 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.19556E7 24.4 14.4 54 98400 756 1335 374 451 539 145 52906 33604 17082 6648 330 4.6 3 1 8.0 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.19592E7 25.6 14.4 50 98400 975 1335 385 646 661 163 77814 41796 19723 8127 320 3.6 4 2 9.7 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.19628E7 27.8 15.0 46 98400 1144 1335 398 833 756 184 101817 47666 22601 9364 340 4.1 2 2 9.7 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.19664E7 28.9 13.9 40 98300 1253 1335 389 929 848 132 99584 88321 16990 7069 330 5.7 0 0 9.7 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.197E7 30.0 12.2 33 98300 1293 1335 393 973 865 135 103698 89743 17188 9428 10 6.2 0 0 11.3 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.19736E7 30.6 11.7 31 98200 1262 1335 395 976 890 134 103932 92203 17179 7551 40 4.6 0 0 11.3 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.19772E7 30.6 12.2 32 98100 1163 1335 409 896 861 146 111887 52728 18311 7660 20 3.6 2 2 11.3 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.19808E7 30.6 13.3 35 98100 1002 1335 410 683 654 192 81625 43902 23059 9408 10 5.2 2 2 11.3 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.19844E7 30.6 12.8 34 98000 789 1335 410 524 674 126 62551 40936 15099 6017 330 3.1 2 2 11.3 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.1988E7 29.4 13.3 37 98000 540 1335 404 339 597 99 39292 31211 11515 4209 360 5.2 2 2 11.3 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.19916E7 28.3 12.8 38 98100 272 1335 416 92 56 81 10047 1646 8880 2630 30 5.2 8 7 11.3 7620 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.19952E7 25.6 12.2 44 98100 37 723 387 16 23 13 0 0 0 0 40 4.6 6 3 11.3 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.19988E7 23.9 11.7 46 98100 0 0 374 0 0 0 0 0 0 0 90 2.1 6 2 11.3 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.20024E7 22.2 11.7 51 98100 0 0 365 0 0 0 0 0 0 0 110 2.6 6 2 11.3 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.2006E7 20.6 12.8 61 98100 0 0 358 0 0 0 0 0 0 0 270 2.6 6 2 11.3 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.20096E7 20.0 12.8 63 98100 0 0 356 0 0 0 0 0 0 0 240 2.6 6 2 9.7 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.20132E7 18.9 13.3 70 98100 0 0 354 0 0 0 0 0 0 0 310 2.1 9 3 9.7 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.20168E7 17.8 12.8 73 98100 0 0 348 0 0 0 0 0 0 0 300 2.1 9 3 9.7 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.20204E7 17.2 13.3 78 98100 0 0 343 0 0 0 0 0 0 0 270 1.5 5 2 9.7 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.2024E7 17.2 13.3 78 98100 0 0 332 0 0 0 0 0 0 0 320 2.1 3 0 9.7 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.20276E7 17.2 13.3 78 98000 0 0 332 0 0 0 0 0 0 0 0 0.0 3 0 9.7 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.20312E7 18.3 13.9 75 98100 20 545 355 6 0 6 0 0 0 0 0 0.0 4 4 8.0 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.20348E7 18.3 13.3 73 98200 236 1334 337 84 116 64 9226 2010 7054 2120 210 2.6 0 0 4.8 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.20384E7 20.6 13.9 66 98200 505 1334 348 265 364 127 29867 20730 14373 4941 0 0.0 0 0 4.0 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.2042E7 23.9 14.4 56 98200 757 1334 365 476 514 184 54817 35063 21293 8022 110 2.6 0 0 4.8 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.20456E7 26.1 15.0 50 98200 976 1334 376 682 622 226 80093 43593 26683 10624 120 3.1 0 0 8.0 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.20492E7 27.8 14.4 44 98200 1145 1334 384 833 674 254 99417 47520 30488 12237 60 3.1 0 0 9.7 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.20528E7 28.9 15.0 43 98200 1253 1334 398 917 690 268 110566 47874 32505 13007 60 3.6 1 1 9.7 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.20564E7 30.0 13.9 37 98200 1294 1334 403 975 719 276 118008 50538 33606 13401 70 4.1 1 1 9.7 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.206E7 30.0 12.8 35 98100 1263 1334 407 879 560 348 104171 43771 41512 15933 0 0.0 2 2 11.3 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.20636E7 29.4 12.8 36 98000 1164 1334 417 588 159 449 67364 14391 51809 18349 180 1.5 6 6 11.3 1370 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.20672E7 26.7 15.0 49 98000 1003 1334 406 742 512 357 84379 43284 40865 14884 220 4.1 6 6 11.3 1370 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.20708E7 26.1 12.2 42 97900 791 1334 399 360 164 263 40578 13277 29814 10539 300 4.1 6 6 11.3 1520 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.20744E7 25.6 13.9 49 98000 542 1334 430 126 0 126 12615 0 12721 5087 20 8.2 10 10 9.7 1520 9 999999999 31 0.0000 0 88 0.000 2.8 1.0 +1.2078E7 21.1 16.7 76 98100 275 1334 408 31 1 31 3651 6 3657 1263 30 7.7 10 10 6.4 3050 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.20816E7 20.6 16.7 79 98100 38 745 405 7 0 7 0 0 0 0 30 5.2 10 10 8.0 3050 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.20852E7 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 32 0.0000 0 88 0.000 0.0 1.0 +1.20888E7 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 32 0.0000 0 88 0.000 0.0 1.0 +1.20924E7 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 32 0.0000 0 88 0.000 0.0 1.0 +1.2096E7 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 32 0.0000 0 88 0.000 0.0 1.0 +1.20996E7 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 33 0.0000 0 88 0.000 0.0 1.0 +1.21032E7 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 33 0.0000 0 88 0.000 0.0 1.0 +1.21068E7 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 33 0.0000 0 88 0.000 0.0 1.0 +1.21104E7 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 33 0.0000 0 88 0.000 0.0 1.0 +1.2114E7 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 33 0.0000 0 88 0.000 0.0 1.0 +1.21176E7 16.1 15.0 93 98300 21 567 348 11 13 10 0 0 0 0 70 4.1 5 5 6.4 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.21212E7 16.7 15.0 90 98300 238 1334 338 109 303 55 12119 3646 6134 1922 70 4.6 5 1 6.4 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.21248E7 18.3 15.6 84 98400 506 1334 339 317 667 64 37688 27632 7628 2849 90 4.6 0 0 6.4 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.21284E7 20.0 16.7 81 98400 758 1334 391 425 329 237 47884 24393 26851 9607 90 5.2 9 9 6.4 3050 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.2132E7 21.7 17.2 76 98400 976 1334 382 567 339 319 64694 26750 36628 13652 100 4.6 8 6 6.4 3050 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.21356E7 23.3 17.2 69 98400 1145 1334 377 865 830 151 107151 47912 18789 7881 90 6.2 2 2 6.4 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.21392E7 25.6 17.8 62 98300 1254 1334 400 880 678 242 106706 43654 29512 11971 100 6.7 5 5 6.4 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.21428E7 26.1 17.2 58 98300 1294 1334 402 864 577 303 103591 40243 36558 14433 90 7.2 5 5 6.4 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.21464E7 25.6 17.2 60 98300 1264 1334 396 842 608 265 101580 40684 32160 12911 130 5.2 4 4 8.0 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.215E7 26.1 16.7 56 98300 1165 1334 401 897 718 269 106694 49965 32186 12851 100 5.2 5 5 9.7 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.21536E7 26.7 16.1 52 98200 1004 1334 403 539 405 235 63322 28209 27759 11080 110 6.2 5 5 9.7 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.21572E7 26.7 16.7 54 98200 792 1334 401 470 481 185 54332 31743 21491 8239 130 7.7 4 4 9.7 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.21608E7 25.6 16.1 56 98200 544 1334 388 321 519 110 36858 27208 12678 4595 130 6.2 2 2 9.7 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.21644E7 23.9 16.1 62 98200 278 1334 379 126 340 57 14159 5924 6425 2091 120 5.7 3 2 9.7 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.2168E7 22.2 16.7 71 98300 40 767 375 19 41 14 0 0 0 0 100 4.1 3 3 9.7 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.21716E7 21.1 16.1 73 98300 0 0 368 0 0 0 0 0 0 0 120 3.6 3 3 8.0 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.21752E7 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 33 0.0000 0 88 0.000 0.0 1.0 +1.21788E7 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 32 0.0000 0 88 0.000 0.0 1.0 +1.21824E7 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 32 0.0000 0 88 0.000 0.0 1.0 +1.2186E7 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 32 0.0000 0 88 0.000 0.0 1.0 +1.21896E7 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 32 0.0000 0 88 0.000 0.0 1.0 +1.21932E7 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 32 0.0000 0 88 0.000 0.0 1.0 +1.21968E7 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 32 0.0000 0 88 0.000 0.0 1.0 +1.22004E7 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 31 0.0000 0 88 0.000 0.0 1.0 +1.2204E7 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 31 0.0000 0 88 0.000 0.0 1.0 +1.22076E7 17.2 17.2 100 98500 240 1333 388 56 3 56 6211 33 6231 1954 120 4.1 10 10 0.8 30 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.22112E7 18.9 17.2 90 98500 508 1333 378 205 119 160 22630 7324 17748 5788 120 3.6 8 8 1.6 150 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.22148E7 20.6 17.8 84 98600 760 1333 371 515 583 182 59229 37765 21034 7974 110 2.1 4 4 4.0 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.22184E7 22.8 17.8 74 98600 977 1333 382 626 486 269 72380 35205 31285 12133 100 2.6 4 4 4.0 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.2222E7 24.4 16.7 62 98600 1146 1333 389 802 632 258 95468 43505 30890 12395 140 2.6 4 4 6.4 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.22256E7 25.0 16.7 60 98600 1254 1333 392 928 702 266 111843 47482 32249 12934 140 2.6 4 4 8.0 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.22292E7 26.1 16.1 54 98500 1295 1333 400 1012 740 292 121805 51652 35363 14022 140 3.6 5 5 8.0 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.22328E7 26.7 16.1 52 98500 1265 1333 397 891 600 321 106040 43791 38448 15010 140 3.6 3 3 8.0 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.22364E7 27.2 15.0 47 98400 1166 1333 413 451 170 302 53248 12633 35876 14050 110 4.6 9 7 9.7 7620 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.224E7 27.2 13.3 42 98400 1005 1333 406 691 506 309 79632 40650 35829 13565 160 4.6 8 6 11.3 7620 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.22436E7 22.8 17.2 71 98400 794 1333 398 335 154 243 37886 11370 27636 10044 300 6.7 9 8 11.3 7620 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.22472E7 21.1 16.7 76 98500 547 1333 389 197 66 170 21835 4255 18935 6281 350 7.7 9 8 11.3 7620 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.22508E7 21.1 15.6 71 98500 280 1333 407 34 4 34 3987 36 3994 1376 30 5.7 10 10 11.3 7620 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.22544E7 20.0 15.6 76 98400 41 789 390 16 0 16 1526 0 1536 356 360 4.1 10 9 14.5 1830 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.2258E7 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 32 0.0000 0 88 0.000 0.0 1.0 +1.22616E7 18.9 16.1 84 98500 0 0 357 0 0 0 0 0 0 0 40 4.1 6 3 11.3 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.22652E7 18.3 15.6 84 98500 0 0 357 0 0 0 0 0 0 0 50 4.1 8 4 12.9 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.22688E7 18.3 15.6 84 98400 0 0 357 0 0 0 0 0 0 0 60 5.2 8 4 12.9 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.22724E7 17.2 16.1 93 98400 0 0 346 0 0 0 0 0 0 0 90 4.1 6 2 12.9 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.2276E7 16.7 15.6 93 98400 0 0 343 0 0 0 0 0 0 0 60 4.1 6 2 9.7 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.22796E7 16.7 15.6 93 98400 0 0 343 0 0 0 0 0 0 0 70 5.7 6 2 9.7 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.22832E7 16.7 15.6 93 98500 0 0 343 0 0 0 0 0 0 0 70 3.6 6 2 8.0 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.22868E7 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 30 0.0000 0 88 0.000 0.0 1.0 +1.22904E7 17.2 16.1 93 98600 23 589 358 10 6 9 0 0 0 0 70 4.6 7 6 4.8 7620 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.2294E7 18.3 16.7 90 98600 242 1332 368 78 54 68 8524 930 7458 2234 70 3.6 8 7 3.2 3050 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.22976E7 19.4 17.2 87 98700 509 1332 370 206 183 136 23057 10285 15289 5215 80 5.2 7 6 3.2 3660 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.23012E7 21.1 17.8 81 98700 761 1332 384 404 302 231 45593 21773 26213 9469 70 4.1 8 7 3.2 3660 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.23048E7 21.1 17.8 81 98700 978 1332 390 468 162 348 53018 13220 39683 14456 90 5.2 8 8 3.2 580 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.23084E7 23.3 17.8 71 98600 1147 1332 402 654 386 321 76480 28559 37778 14640 50 4.6 8 8 4.0 700 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.2312E7 25.6 17.2 60 98500 1255 1332 399 731 386 367 85920 29454 43429 16533 60 5.7 5 5 4.0 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.23156E7 26.1 16.1 54 98500 1295 1332 397 996 790 227 122194 50610 28004 11410 120 5.2 4 4 4.0 2000 9 999999999 28 0.0000 0 88 0.000 0.3 1.0 +1.23192E7 22.8 19.4 82 98400 1265 1332 387 865 534 357 101817 38884 42307 16245 130 3.1 5 5 8.0 2000 9 999999999 28 0.0000 0 88 0.000 0.5 1.0 +1.23228E7 27.2 16.7 53 98300 1167 1332 422 442 229 241 53039 15297 29083 11777 90 5.2 9 8 12.9 1220 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.23264E7 26.7 16.7 54 98200 1007 1332 428 418 176 285 48368 13146 33177 12825 60 6.2 10 9 12.9 980 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.233E7 27.2 15.6 49 98200 796 1332 409 519 539 197 59794 37018 22811 8663 90 7.2 7 6 19.3 7620 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.23336E7 25.0 13.9 50 98200 549 1332 392 298 317 169 33137 21142 18884 6275 90 6.7 7 5 24.1 7620 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.23372E7 23.9 13.3 52 98200 283 1332 382 81 43 72 8966 1141 7998 2490 110 3.6 5 4 24.1 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.23408E7 21.7 13.3 59 98300 43 788 368 14 17 13 1487 0 1385 343 100 3.6 6 3 24.1 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.23444E7 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 27 0.0000 0 88 0.000 0.0 1.0 +1.2348E7 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 28 0.0000 0 88 0.000 0.0 1.0 +1.23516E7 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 29 0.0000 0 88 0.000 0.0 1.0 +1.23552E7 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 29 0.0000 0 88 0.000 0.0 1.0 +1.23588E7 18.3 12.8 70 98300 0 0 351 0 0 0 0 0 0 0 70 4.1 7 3 24.1 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.23624E7 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 31 0.0000 0 88 0.000 0.0 1.0 +1.2366E7 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 31 0.0000 0 88 0.000 0.0 1.0 +1.23696E7 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 32 0.0000 0 88 0.000 0.0 1.0 +1.23732E7 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 33 0.0000 0 88 0.000 0.0 1.0 +1.23768E7 18.3 16.1 87 98300 24 610 392 7 0 7 0 0 0 0 50 5.2 10 10 16.1 4270 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.23804E7 18.9 15.6 81 98400 244 1332 384 67 13 64 7372 216 7066 2157 50 4.6 10 9 16.1 2440 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.2384E7 18.9 15.0 78 98400 511 1332 394 77 35 63 9181 1470 7530 2820 80 6.7 10 10 11.3 580 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.23876E7 17.2 15.6 90 98400 762 1332 386 142 6 139 16721 363 16436 6451 20 5.7 10 10 8.0 2440 9 999999999 34 0.0000 0 88 0.000 0.5 1.0 +1.23912E7 18.3 16.1 87 98400 979 1332 392 342 6 337 38910 492 38588 14177 20 5.2 10 10 11.3 2440 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.23948E7 18.3 16.1 87 98400 1147 1332 392 221 8 214 26706 520 25998 10650 30 5.2 10 10 4.8 760 9 999999999 34 0.0000 0 88 0.000 0.5 1.0 +1.23984E7 18.9 16.7 87 98400 1255 1332 396 247 3 244 29972 197 29777 12058 360 5.2 10 10 4.8 850 9 999999999 34 0.0000 0 88 0.000 0.3 1.0 +1.2402E7 18.9 16.7 87 98300 1296 1332 396 299 8 291 35990 553 35244 13989 30 5.2 10 10 8.0 850 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.24056E7 18.9 16.7 87 98300 1266 1332 396 244 6 238 29703 389 29137 11828 50 5.2 10 10 3.2 370 9 999999999 35 0.0000 0 88 0.000 4.3 1.0 +1.24092E7 18.3 17.2 93 98300 1168 1332 394 257 0 257 27053 0 27330 12405 40 6.7 10 10 3.2 910 9 999999999 35 0.0000 0 88 0.000 1.9 1.0 +1.24128E7 18.3 17.2 93 98200 1008 1332 394 219 3 217 25884 199 25784 10424 10 5.7 10 10 3.2 880 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.24164E7 19.4 17.2 87 98200 797 1332 400 265 1 265 29780 77 29955 10661 20 5.7 10 10 9.7 2440 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.242E7 19.4 16.7 84 98100 551 1332 399 156 1 156 17432 62 17513 5972 60 5.7 10 10 11.3 820 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.24236E7 19.4 16.7 84 98100 285 1332 399 68 0 68 6639 0 6690 2405 50 4.1 10 10 12.9 850 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.24272E7 19.4 16.7 84 98100 44 810 399 16 0 16 1525 0 1535 382 60 6.2 10 10 11.3 700 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.24308E7 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 35 0.0000 0 88 0.000 0.0 1.0 +1.24344E7 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 35 0.0000 0 88 0.000 0.0 1.0 +1.2438E7 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 35 0.0000 0 88 0.000 0.0 1.0 +1.24416E7 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 35 0.0000 0 88 0.000 0.0 1.0 +1.24452E7 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 35 0.0000 0 88 0.000 0.0 1.0 +1.24488E7 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 36 0.0000 0 88 0.000 0.3 1.0 +1.24524E7 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 36 0.0000 0 88 0.000 0.0 1.0 +1.2456E7 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 36 0.0000 0 88 0.000 0.0 1.0 +1.24596E7 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 36 0.0000 0 88 0.000 0.0 1.0 +1.24632E7 16.7 16.1 97 97900 25 610 384 12 0 12 0 0 0 0 20 5.2 10 10 12.9 370 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.24668E7 17.2 16.1 93 98000 245 1331 386 74 0 74 7206 0 7260 2371 10 4.1 10 10 12.9 270 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.24704E7 17.8 16.1 90 98000 512 1331 390 161 0 161 16051 0 16185 5847 40 4.1 10 10 19.3 310 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.2474E7 18.3 16.1 87 98000 763 1331 392 284 1 283 31587 81 31665 10768 60 5.2 10 10 24.1 310 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.24776E7 20.0 16.7 81 98000 979 1331 402 333 0 333 34531 0 34866 14079 30 2.6 10 10 19.3 760 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.24812E7 20.0 17.2 84 98000 1148 1331 403 397 1 397 45691 82 46008 16946 40 3.6 10 10 19.3 340 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.24848E7 20.0 17.2 84 97900 1256 1331 403 442 1 441 51221 83 51478 18720 70 2.6 10 10 19.3 400 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.24884E7 20.6 17.8 84 97900 1296 1331 407 451 2 450 52441 164 52711 19181 90 3.1 10 10 19.3 400 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.2492E7 20.0 17.8 87 97800 1266 1331 404 468 1 467 54036 84 54324 19456 40 2.6 10 10 19.3 400 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.24956E7 20.6 17.8 84 97700 1169 1331 407 412 1 411 47396 82 47616 17432 90 2.1 10 10 19.3 400 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.24992E7 21.1 17.8 81 97600 1009 1331 410 358 0 358 37170 0 37536 14980 360 2.1 10 10 19.3 400 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.25028E7 21.1 17.8 81 97600 799 1331 410 270 1 270 30290 77 30469 10804 60 5.2 10 10 19.3 610 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.25064E7 21.1 17.8 81 97600 553 1331 410 176 1 176 19462 65 19560 6470 60 4.1 10 10 19.3 610 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.251E7 20.6 17.8 84 97600 288 1331 407 87 1 87 9462 29 9501 2834 100 3.6 10 10 19.3 980 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.25136E7 20.0 17.8 87 97600 46 832 404 17 0 17 1619 0 1630 401 100 3.1 10 10 19.3 700 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.25172E7 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 31 0.0000 0 88 0.000 0.0 1.0 +1.25208E7 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 32 0.0000 0 88 0.000 0.0 1.0 +1.25244E7 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 32 0.0000 0 88 0.000 0.0 1.0 +1.2528E7 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 32 0.0000 0 88 0.000 0.0 1.0 +1.25316E7 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 32 0.0000 0 88 0.000 0.0 1.0 +1.25352E7 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 32 0.0000 0 88 0.000 0.0 1.0 +1.25388E7 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 32 0.0000 0 88 0.000 0.0 1.0 +1.25424E7 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 33 0.0000 0 88 0.000 0.0 1.0 +1.2546E7 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 33 0.0000 0 88 0.000 0.0 1.0 +1.25496E7 18.9 18.3 97 97500 26 610 398 12 0 12 0 0 0 0 330 1.5 10 10 6.4 460 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.25532E7 20.0 18.3 90 97500 247 1331 404 66 0 66 6413 0 6462 2216 30 3.1 10 10 6.4 1160 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.25568E7 20.0 18.3 90 97600 513 1331 404 148 1 148 16452 58 16528 5551 60 4.1 10 10 6.4 310 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.25604E7 20.6 18.3 87 97600 763 1331 408 242 1 242 27214 73 27368 9796 50 3.1 10 10 6.4 310 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.2564E7 23.3 19.4 79 97500 980 1331 413 364 82 303 41654 6112 34890 13230 90 4.1 9 9 8.0 460 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.25676E7 22.8 18.3 76 97600 1148 1331 420 336 9 328 39224 667 38537 14881 90 2.6 10 10 11.3 760 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.25712E7 23.9 18.3 71 97500 1256 1331 399 661 230 444 76492 18880 51757 18805 80 4.1 9 7 11.3 910 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.25748E7 25.0 18.3 67 97400 1297 1331 401 886 448 450 102986 36478 52694 19186 30 2.1 7 6 16.1 7620 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.25784E7 25.6 17.2 60 97300 1267 1331 423 526 104 427 61206 8462 50045 18395 80 2.6 9 9 19.3 7620 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.2582E7 26.7 17.8 58 97300 1169 1331 430 509 87 432 58334 7329 49866 17985 40 2.1 9 9 19.3 7620 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.25856E7 28.3 17.8 53 97200 1010 1331 439 470 67 419 52713 5936 47326 16422 120 2.1 9 9 19.3 7620 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.25892E7 25.6 17.2 60 97200 801 1331 434 110 10 104 13312 539 12630 5128 90 4.1 10 10 19.3 1220 9 999999999 37 0.0000 0 88 0.000 1.5 1.0 +1.25928E7 20.0 17.8 87 97300 555 1331 404 96 5 94 11173 239 10977 4084 360 5.2 10 10 8.0 1220 9 999999999 38 0.0000 0 88 0.000 1.5 1.0 +1.25964E7 18.9 17.8 93 97300 290 1331 398 44 2 44 5065 25 5077 1730 60 5.2 10 10 6.4 910 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.26E7 18.3 17.8 97 97400 48 832 394 8 0 8 762 0 767 265 80 3.6 10 10 8.0 1220 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.26036E7 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 37 0.0000 0 88 0.000 0.3 1.0 +1.26072E7 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 37 0.0000 0 88 0.000 0.0 1.0 +1.26108E7 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 36 0.0000 0 88 0.000 0.0 1.0 +1.26144E7 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 36 0.0000 0 88 0.000 0.0 1.0 +1.2618E7 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 35 0.0000 0 88 0.000 0.0 1.0 +1.26216E7 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 35 0.0000 0 88 0.000 0.0 1.0 +1.26252E7 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 35 0.0000 0 88 0.000 0.0 1.0 +1.26288E7 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 34 0.0000 0 88 0.000 0.0 1.0 +1.26324E7 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 34 0.0000 0 88 0.000 0.0 1.0 +1.2636E7 17.8 17.2 97 97500 27 632 391 7 0 7 0 0 0 0 80 4.6 10 10 6.4 120 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.26396E7 17.8 17.2 97 97500 248 1331 391 57 4 56 6346 49 6254 1985 80 4.1 10 10 2.4 60 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.26432E7 17.8 17.2 97 97600 514 1331 391 170 2 169 18717 127 18699 6042 120 3.6 10 10 4.0 120 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.26468E7 18.3 17.2 93 97600 764 1331 394 297 1 296 32893 82 32984 11065 90 4.1 10 10 9.7 210 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.26504E7 19.4 17.2 87 97600 981 1331 400 390 0 390 40428 0 40822 15501 90 3.6 10 10 11.3 400 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.2654E7 20.0 17.2 84 97600 1148 1331 403 419 1 418 48037 84 48262 17513 140 2.6 10 10 12.9 430 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.26576E7 21.1 17.2 79 97500 1256 1331 398 594 116 485 68334 10080 56216 19843 160 4.1 10 9 24.1 580 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.26612E7 23.3 17.8 71 97500 1297 1331 395 857 527 343 101805 38227 41017 15885 160 3.6 8 7 24.1 3050 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.26648E7 24.4 17.2 64 97400 1268 1331 407 655 139 523 75011 12504 60359 20777 100 2.1 8 8 24.1 3050 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.26684E7 25.0 16.7 60 97400 1170 1331 418 457 141 332 53537 10654 39145 15089 0 0.0 9 9 24.1 3050 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.2672E7 25.6 16.7 58 97300 1011 1331 422 590 255 397 66546 22224 45087 15960 0 0.0 9 9 24.1 3660 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.26756E7 23.3 18.9 76 97300 802 1331 389 434 473 150 51004 27734 17706 7020 90 3.6 5 5 24.1 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.26792E7 22.8 17.2 71 97200 557 1331 384 236 218 145 26557 12844 16390 5718 80 3.6 5 5 24.1 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.26828E7 22.8 17.2 71 97300 292 1331 384 104 179 66 11602 3941 7387 2382 100 5.2 5 5 24.1 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.26864E7 21.7 17.2 76 97300 49 854 378 20 22 17 2100 0 1792 426 100 3.6 5 5 24.1 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.269E7 21.1 17.8 81 97300 0 0 376 0 0 0 0 0 0 0 110 3.6 5 5 24.1 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.26936E7 20.0 17.8 87 97300 0 0 368 0 0 0 0 0 0 0 120 2.1 4 4 24.1 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.26972E7 19.4 17.2 87 97300 0 0 346 0 0 0 0 0 0 0 90 3.6 2 0 32.2 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.27008E7 18.3 16.1 87 97300 0 0 340 0 0 0 0 0 0 0 150 1.5 0 0 32.2 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.27044E7 18.3 16.1 87 97300 0 0 340 0 0 0 0 0 0 0 100 2.1 2 0 32.2 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.2708E7 17.8 16.1 90 97300 0 0 344 0 0 0 0 0 0 0 70 2.1 3 1 24.1 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.27116E7 17.2 16.1 93 97300 0 0 335 0 0 0 0 0 0 0 60 2.6 1 0 24.1 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.27152E7 17.2 16.1 93 97300 0 0 335 0 0 0 0 0 0 0 70 1.5 1 0 24.1 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.27188E7 18.3 16.7 90 97300 0 0 355 0 0 0 0 0 0 0 70 4.1 4 3 24.1 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.27224E7 17.8 16.7 93 97300 27 632 349 8 3 8 0 0 0 0 80 4.1 3 2 11.3 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.2726E7 18.3 17.2 93 97400 250 1330 369 67 36 60 7422 514 6668 2090 70 3.6 7 7 14.5 3050 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.27296E7 20.0 17.2 84 97400 515 1330 383 194 161 131 21818 8897 14796 5119 70 3.1 9 8 16.1 3050 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.27332E7 21.1 17.8 81 97400 765 1330 379 381 172 282 42349 13684 31535 10782 40 3.1 8 6 16.1 3050 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.27368E7 23.3 18.3 74 97400 981 1330 385 632 529 241 73747 36251 28279 11209 50 2.6 4 4 20.9 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.27404E7 25.0 18.3 67 97400 1149 1330 421 433 99 347 50335 7517 40605 15494 110 3.1 9 9 24.1 850 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.2744E7 25.6 16.7 58 97300 1257 1330 422 519 85 439 60212 7072 51301 18679 110 2.1 9 9 24.1 910 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.27476E7 26.7 16.7 54 97200 1297 1330 428 516 68 450 60078 5643 52779 19195 110 3.1 9 9 24.1 980 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.27512E7 26.1 16.7 56 97100 1268 1330 425 539 70 472 62269 6008 54936 19601 340 2.1 9 9 24.1 980 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.27548E7 26.7 16.7 54 97100 1171 1330 428 474 92 394 54795 7503 45862 16985 0 0.0 9 9 24.1 980 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.27584E7 27.2 15.6 49 97000 1013 1330 429 465 202 312 53534 15867 36143 13719 200 2.1 9 9 24.1 1220 9 999999999 32 0.0000 0 88 0.000 13.5 1.0 +1.2762E7 21.7 16.7 73 97100 804 1330 412 124 1 124 14822 57 14880 5987 40 7.2 10 10 11.3 980 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.27656E7 22.8 17.2 71 97100 559 1330 418 76 0 76 7598 0 7663 3421 80 4.6 10 10 24.1 910 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.27692E7 22.2 17.8 76 97100 295 1330 416 52 1 52 5916 16 5932 1993 40 5.7 10 10 24.1 3660 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.27728E7 20.6 17.2 81 97100 51 853 406 14 0 14 1335 0 1344 398 300 2.1 10 10 24.1 3660 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.27764E7 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 32 0.0000 0 88 0.000 0.0 1.0 +1.278E7 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 32 0.0000 0 88 0.000 0.0 1.0 +1.27836E7 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 31 0.0000 0 88 0.000 0.0 1.0 +1.27872E7 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 31 0.0000 0 88 0.000 0.0 1.0 +1.27908E7 18.9 16.7 87 97200 0 0 355 0 0 0 0 0 0 0 80 2.1 3 2 16.1 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.27944E7 18.3 16.7 90 97200 0 0 347 0 0 0 0 0 0 0 60 2.1 3 1 16.1 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.2798E7 18.3 16.7 90 97200 0 0 347 0 0 0 0 0 0 0 40 1.5 3 1 16.1 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.28016E7 18.3 17.2 93 97300 0 0 348 0 0 0 0 0 0 0 360 2.1 3 1 12.9 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.28052E7 17.2 16.7 97 97300 0 0 335 0 0 0 0 0 0 0 80 2.1 1 0 12.9 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.28088E7 17.8 16.7 93 97400 28 654 349 11 0 11 0 0 0 0 330 2.1 6 2 11.3 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.28124E7 18.3 17.2 93 97500 251 1330 394 81 3 80 8764 70 8691 2515 300 2.1 10 10 9.7 3660 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.2816E7 20.0 17.2 84 97500 516 1330 403 128 16 122 14483 853 13861 4867 90 2.1 10 10 11.3 3660 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.28196E7 21.7 17.8 79 97500 765 1330 393 362 166 266 40438 12808 29889 10426 340 2.1 8 8 14.5 5180 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.28232E7 25.0 17.8 64 97600 981 1330 374 677 583 246 78916 40585 28838 11390 20 2.6 0 0 24.1 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.28268E7 26.7 17.2 56 97600 1149 1330 382 814 621 277 96410 43542 33005 13120 320 2.6 0 0 32.2 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.28304E7 27.8 16.7 51 97500 1257 1330 404 906 579 359 106790 43971 42600 16293 10 3.6 3 3 32.2 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.2834E7 28.9 16.7 48 97500 1298 1330 413 837 458 389 98580 35550 46134 17409 300 2.6 4 4 32.2 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.28376E7 28.3 16.7 49 97500 1269 1330 410 865 432 453 100269 36331 52897 19119 100 2.1 4 4 32.2 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.28412E7 29.4 16.7 46 97400 1172 1330 416 806 516 351 94044 39911 41226 15709 0 0.0 4 4 32.2 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.28448E7 30.0 16.1 43 97400 1014 1330 418 609 346 346 69524 28330 39757 14710 160 2.1 4 4 32.2 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.28484E7 30.0 16.1 43 97400 805 1330 415 481 394 243 54578 29388 27727 10146 280 2.6 3 3 32.2 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.2852E7 29.4 15.6 43 97400 561 1330 414 288 305 160 32224 19370 17986 6145 300 3.6 4 4 32.2 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.28556E7 27.8 16.1 49 97400 297 1330 406 101 111 76 11167 3050 8433 2649 300 2.6 4 4 24.1 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.28592E7 27.2 16.1 51 97500 52 875 414 14 0 14 1337 0 1346 405 310 2.6 8 7 24.1 7620 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.28628E7 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 28 0.0000 0 88 0.000 0.0 1.0 +1.28664E7 22.8 17.2 71 97700 0 0 384 0 0 0 0 0 0 0 0 0.0 5 5 24.1 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.287E7 22.2 17.2 73 97700 0 0 372 0 0 0 0 0 0 0 320 2.1 2 2 19.3 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.28736E7 21.1 16.7 76 97700 0 0 354 0 0 0 0 0 0 0 320 2.6 1 0 19.3 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.28772E7 20.6 16.7 79 97700 0 0 351 0 0 0 0 0 0 0 0 0.0 0 0 16.1 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.28808E7 21.1 16.7 76 97600 0 0 354 0 0 0 0 0 0 0 0 0.0 0 0 16.1 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.28844E7 20.0 16.7 81 97600 0 0 349 0 0 0 0 0 0 0 10 1.5 0 0 16.1 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.2888E7 20.0 16.7 81 97600 0 0 349 0 0 0 0 0 0 0 350 2.1 0 0 16.1 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.28916E7 18.3 16.7 90 97700 0 0 352 0 0 0 0 0 0 0 20 1.5 2 2 16.1 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.28952E7 20.6 16.7 79 97800 29 654 351 9 4 9 0 0 0 0 10 2.6 0 0 16.1 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.28988E7 21.7 17.8 79 97800 252 1329 358 103 198 65 11340 3226 7181 2219 180 1.0 2 0 16.1 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.29024E7 23.9 16.7 64 97900 517 1329 374 277 423 113 31558 21932 12924 4600 60 1.5 2 1 19.3 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.2906E7 26.7 17.8 58 98000 766 1329 383 478 563 153 55825 34000 17948 7002 80 2.6 0 0 19.3 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.29096E7 27.8 18.3 56 98000 982 1329 389 698 693 185 83157 42981 22149 9078 290 3.1 0 0 19.3 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.29132E7 28.9 17.8 51 98000 1149 1329 394 852 745 207 103140 46623 25191 10365 290 3.1 0 0 19.3 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.29168E7 29.4 17.8 49 97900 1257 1329 417 890 597 325 105624 42845 38821 15142 350 2.1 4 4 22.5 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.29204E7 29.4 16.7 46 97900 1298 1329 428 790 415 385 93128 32059 45700 17285 300 2.1 7 7 19.3 1070 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.2924E7 30.6 16.7 43 97800 1269 1329 426 761 357 420 88752 28958 49333 18216 340 4.1 5 5 19.3 2000 9 999999999 35 0.0000 0 88 0.000 0.5 1.0 +1.29276E7 30.6 17.2 45 97800 1173 1329 430 820 504 375 95155 39897 43812 16447 360 3.6 6 6 19.3 1070 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.29312E7 27.8 18.9 58 97800 1015 1329 417 587 268 383 66310 22287 43562 15675 120 3.6 6 6 16.1 2740 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.29348E7 28.3 18.9 57 97800 807 1329 419 323 179 215 36929 12133 24713 9321 150 2.6 6 6 16.1 2740 9 999999999 36 0.0000 0 88 0.000 0.3 1.0 +1.29384E7 27.8 20.0 63 97800 562 1329 430 162 88 125 18425 4567 14276 5157 140 4.1 8 8 16.1 3050 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.2942E7 25.6 20.0 71 97800 299 1329 402 86 71 70 9545 1517 7796 2511 130 1.5 5 5 16.1 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.29456E7 25.0 20.6 76 97900 54 897 377 21 12 19 2199 0 1997 480 160 2.6 0 0 12.9 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.29492E7 23.9 20.0 79 97900 0 0 371 0 0 0 0 0 0 0 150 1.5 0 0 12.9 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.29528E7 22.2 20.6 90 98000 0 0 363 0 0 0 0 0 0 0 140 2.1 0 0 12.9 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.29564E7 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 38 0.0000 0 88 0.000 0.0 1.0 +1.296E7 22.2 20.0 87 98100 0 0 379 0 0 0 0 0 0 0 90 3.6 3 3 11.3 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.29636E7 21.7 19.4 87 98000 0 0 375 0 0 0 0 0 0 0 80 2.6 3 3 11.3 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.29672E7 21.1 19.4 90 98000 0 0 357 0 0 0 0 0 0 0 70 3.1 0 0 11.3 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.29708E7 21.1 19.4 90 98000 0 0 369 0 0 0 0 0 0 0 80 3.6 2 2 11.3 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.29744E7 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 39 0.0000 0 88 0.000 0.0 1.0 +1.2978E7 20.0 18.3 90 98000 0 0 365 0 0 0 0 0 0 0 80 3.1 6 3 11.3 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.29816E7 19.4 18.3 93 98000 29 653 365 9 0 8 0 0 0 0 70 3.1 8 4 4.8 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.29852E7 19.4 18.3 93 98100 253 1329 401 41 17 38 4716 68 4380 1477 70 3.6 10 10 4.8 2740 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.29888E7 20.0 18.3 90 98100 518 1329 374 255 197 178 27954 12704 19613 6263 90 3.1 8 6 4.8 7620 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.29924E7 22.8 19.4 82 98000 766 1329 384 407 327 217 46164 22276 24746 9132 120 3.6 9 4 11.3 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.2996E7 24.4 19.4 74 98000 982 1329 392 636 490 273 73431 34775 31708 12315 100 2.6 9 4 12.9 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.29996E7 26.1 19.4 67 98000 1149 1329 394 697 533 235 83447 33899 28294 11514 130 4.1 5 2 12.9 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.30032E7 27.8 18.9 58 98000 1257 1329 403 898 686 249 108664 43708 30307 12270 180 2.6 4 2 12.9 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.30068E7 28.3 19.4 59 98000 1298 1329 425 951 514 448 110520 41078 52450 19152 220 1.5 7 7 12.9 910 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.30104E7 28.9 18.9 55 97900 1270 1329 444 528 75 457 61054 6160 53237 19234 130 2.6 9 9 11.3 980 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.3014E7 28.9 18.3 53 97900 1173 1329 434 485 52 439 55533 4378 50632 18197 150 2.1 8 8 11.3 980 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.30176E7 28.9 18.3 53 97800 1016 1329 456 326 4 323 37365 308 37258 14078 270 3.1 10 10 11.3 9140 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.30212E7 24.4 16.1 60 97800 808 1329 426 205 7 200 23641 479 23181 8846 270 6.7 10 10 12.9 9140 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.30248E7 26.1 15.0 50 97700 564 1329 413 233 187 154 26188 11752 17388 6013 250 3.1 9 8 12.9 9140 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.30284E7 23.9 15.6 60 97700 301 1329 396 122 73 105 13156 2873 11373 3239 0 0.0 10 7 12.9 9140 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.3032E7 22.2 16.1 68 97700 56 897 383 16 1 16 1714 0 1720 452 250 1.5 10 6 9.7 3660 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.30356E7 22.2 17.2 73 97700 0 0 381 0 0 0 0 0 0 0 250 3.1 10 5 9.7 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.30392E7 21.8 17.1 76 97800 0 0 373 0 0 0 0 0 0 0 220 3.2 8 3 9.7 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.30428E7 21.4 17.1 79 97800 0 0 367 0 0 0 0 0 0 0 240 3.2 6 2 11.3 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.30464E7 21.0 17.0 81 97800 0 0 365 0 0 0 0 0 0 0 270 3.3 6 2 11.3 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.305E7 20.6 16.9 78 97700 0 0 363 0 0 0 0 0 0 0 270 3.4 6 2 11.3 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.30536E7 20.2 16.8 84 97700 0 0 361 0 0 0 0 0 0 0 270 3.5 7 2 11.3 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.30572E7 19.8 16.8 84 97600 0 0 354 0 0 0 0 0 0 0 270 3.5 3 1 11.3 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.30608E7 19.4 16.7 84 97600 0 0 357 0 0 0 0 0 0 0 250 3.6 6 2 11.3 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.30644E7 19.4 17.2 87 97600 0 0 353 0 0 0 0 0 0 0 270 4.1 3 1 11.3 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.3068E7 18.9 17.2 90 97600 30 675 350 10 2 10 0 0 0 0 270 4.1 3 1 11.3 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.30716E7 20.6 17.8 84 97600 254 1328 374 80 35 73 8731 704 7997 2402 280 3.6 5 5 11.3 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.30752E7 22.2 18.3 79 97700 518 1328 396 227 110 184 24821 7238 20224 6388 300 4.1 8 8 11.3 3660 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.30788E7 23.9 18.3 71 97700 767 1328 414 316 13 309 34863 1078 34306 11368 320 4.1 9 9 16.1 3660 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.30824E7 25.6 18.3 64 97700 982 1328 436 317 9 310 36274 688 35695 13470 320 7.2 10 10 19.3 9140 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.3086E7 26.7 16.1 52 97700 1149 1328 418 491 169 344 57246 13138 40370 15409 320 3.6 8 8 24.1 9140 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.30896E7 28.3 15.6 46 97600 1257 1328 420 853 404 470 98551 35119 54704 19499 320 3.6 7 7 40.2 9140 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.30932E7 29.4 15.0 41 97600 1298 1328 425 663 169 497 76725 14963 57951 20419 270 2.1 7 7 40.2 7620 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.30968E7 29.4 14.4 40 97500 1270 1328 405 929 635 321 110852 47138 38548 15039 270 5.7 6 2 40.2 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +1.31004E7 29.4 13.3 37 97500 1174 1328 404 795 552 306 94040 41831 36421 14227 280 7.2 5 2 40.2 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +1.3104E7 29.4 15.0 41 97400 1017 1328 410 671 556 245 78841 39711 28948 11520 300 2.1 5 3 40.2 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +1.31076E7 29.4 15.0 41 97300 810 1328 410 490 416 237 55811 31034 27143 10013 320 5.2 4 3 40.2 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +1.31112E7 28.9 13.9 40 97300 566 1328 406 306 332 166 34226 21968 18656 6338 280 5.2 4 3 40.2 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +1.31148E7 27.8 14.4 44 97300 304 1328 401 122 116 96 13280 4312 10493 3103 310 3.6 6 3 40.2 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +1.31184E7 25.0 12.8 47 97400 57 919 384 21 5 20 2220 0 2122 513 310 3.6 8 3 40.2 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +1.3122E7 23.9 13.3 52 97400 0 0 379 0 0 0 0 0 0 0 330 3.6 8 3 40.2 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +1.31256E7 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 21 0.0000 0 88 0.000 0.0 1.0 +1.31292E7 22.2 13.3 57 97500 0 0 371 0 0 0 0 0 0 0 330 3.6 8 3 32.2 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +1.31328E7 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 21 0.0000 0 88 0.000 0.0 1.0 +1.31364E7 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 20 0.0000 0 88 0.000 0.0 1.0 +1.314E7 18.9 12.8 68 97500 0 0 357 0 0 0 0 0 0 0 320 1.5 8 4 24.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.31436E7 16.7 12.8 78 97400 0 0 346 0 0 0 0 0 0 0 320 2.1 8 4 24.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.31472E7 16.1 12.8 81 97500 0 0 337 0 0 0 0 0 0 0 300 2.6 5 2 24.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.31508E7 15.0 12.8 87 97500 0 0 327 0 0 0 0 0 0 0 280 2.1 2 1 32.2 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.31544E7 16.1 12.8 81 97500 30 675 326 13 0 13 0 0 0 0 300 4.1 1 0 32.2 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.3158E7 18.9 12.2 65 97600 255 1328 338 94 81 78 10252 2203 8540 2505 310 4.1 3 0 40.2 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.31616E7 22.2 12.2 53 97600 519 1328 354 269 296 153 30020 19039 17153 5721 330 2.6 2 0 32.2 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.31652E7 23.9 11.7 46 97700 767 1328 362 484 448 225 55091 34103 25747 9374 330 3.6 2 0 32.2 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.31688E7 25.6 12.2 44 97700 982 1328 387 643 448 311 73915 36661 35970 13502 330 6.2 3 3 40.2 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.31724E7 26.7 11.1 38 97700 1149 1328 394 807 501 372 93837 42254 43544 16264 320 7.2 4 4 40.2 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.3176E7 25.6 10.0 38 97700 1257 1328 387 836 445 414 97917 38242 48828 17995 320 3.1 4 4 40.2 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.31796E7 25.0 11.7 43 97700 1299 1328 386 971 629 354 115645 49379 42440 16275 270 5.2 4 4 40.2 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.31832E7 27.8 11.1 35 97600 1270 1328 400 851 393 475 98711 35514 55504 19703 300 5.2 4 4 40.2 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.31868E7 27.2 11.1 37 97600 1175 1328 400 844 516 388 98149 43971 45427 16842 360 5.2 5 5 40.2 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.31904E7 27.2 11.7 38 97600 1018 1328 397 564 271 356 64497 23380 40976 15024 350 4.6 4 4 40.2 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.3194E7 27.8 11.7 37 97600 811 1328 397 485 350 272 54771 28687 30895 10984 310 4.1 3 3 40.2 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.31976E7 26.7 11.7 39 97600 568 1328 388 214 151 150 24180 9750 17024 5927 330 3.1 2 2 40.2 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.32012E7 26.1 11.7 41 97600 306 1328 372 119 120 92 13034 4543 10117 3041 340 2.6 3 0 40.2 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.32048E7 23.3 11.1 46 97700 59 941 358 22 1 22 2316 0 2325 543 320 2.6 2 0 40.2 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.32084E7 20.6 11.7 57 97700 0 0 346 0 0 0 0 0 0 0 300 2.6 1 0 40.2 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.3212E7 20.0 12.2 61 97800 0 0 344 0 0 0 0 0 0 0 320 2.6 0 0 32.2 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.32156E7 21.1 12.8 59 97800 0 0 349 0 0 0 0 0 0 0 310 2.6 0 0 32.2 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.32192E7 20.0 12.8 63 97800 0 0 344 0 0 0 0 0 0 0 320 3.6 0 0 32.2 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.32228E7 18.9 12.8 68 97800 0 0 339 0 0 0 0 0 0 0 330 2.6 0 0 32.2 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.32264E7 19.4 12.8 66 97800 0 0 341 0 0 0 0 0 0 0 290 1.0 0 0 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.323E7 16.1 12.8 81 97800 0 0 326 0 0 0 0 0 0 0 350 2.6 0 0 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.32336E7 17.2 12.8 75 97800 0 0 331 0 0 0 0 0 0 0 260 1.5 0 0 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.32372E7 15.6 12.8 84 97900 0 0 324 0 0 0 0 0 0 0 330 2.1 0 0 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.32408E7 18.3 12.8 70 97900 31 675 336 13 0 13 0 0 0 0 340 2.6 0 0 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.32444E7 20.6 13.9 66 98000 256 1328 348 89 79 74 9742 1919 8130 2432 320 1.5 0 0 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.3248E7 23.9 13.9 54 98100 519 1328 364 263 290 150 29368 18102 16827 5652 360 2.6 0 0 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.32516E7 25.6 13.9 49 98200 767 1328 373 480 449 220 54661 33128 25186 9233 40 2.6 0 0 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.32552E7 27.2 13.3 42 98200 982 1328 380 675 543 273 78349 41616 31872 12323 70 4.6 0 0 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.32588E7 27.2 13.3 42 98200 1149 1328 387 824 602 301 97288 45628 35756 13985 320 3.1 1 1 32.2 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.32624E7 28.3 11.7 36 98200 1257 1328 400 899 569 360 106354 45508 42871 16335 320 2.6 3 3 32.2 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.3266E7 28.9 13.3 38 98100 1299 1328 405 897 496 410 105528 40796 48574 18069 250 3.6 3 3 32.2 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.32696E7 29.4 12.8 36 98100 1271 1328 407 909 560 373 107354 44839 44349 16803 300 5.2 3 3 32.2 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.32732E7 30.0 12.8 35 98100 1175 1328 411 728 389 384 84654 32535 44955 16732 310 3.6 3 3 40.2 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.32768E7 30.0 12.2 33 98100 1019 1328 410 703 479 335 80776 40020 38736 14455 330 4.1 3 3 40.2 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.32804E7 29.4 12.2 35 98000 812 1328 403 496 409 246 56468 31878 28162 10297 290 4.1 2 2 40.2 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.3284E7 29.4 12.2 35 98100 570 1328 390 300 319 164 33657 21386 18485 6314 320 2.6 0 0 40.2 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.32876E7 27.8 11.7 37 98100 308 1328 381 113 113 87 12444 4091 9618 2950 310 3.1 0 0 40.2 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.32912E7 25.0 11.7 43 98100 60 940 367 22 1 22 2322 0 2330 555 310 2.6 0 0 40.2 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.32948E7 23.3 12.2 50 98200 0 0 359 0 0 0 0 0 0 0 330 3.1 0 0 32.2 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.32984E7 20.6 11.7 57 98200 0 0 346 0 0 0 0 0 0 0 330 2.6 0 0 32.2 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.3302E7 22.2 11.7 51 98300 0 0 353 0 0 0 0 0 0 0 10 4.1 2 0 24.1 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.33056E7 22.2 12.2 53 98300 0 0 361 0 0 0 0 0 0 0 360 4.1 1 1 24.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.33092E7 21.1 11.7 55 98300 0 0 348 0 0 0 0 0 0 0 30 4.1 3 0 24.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.33128E7 21.1 11.7 55 98300 0 0 348 0 0 0 0 0 0 0 20 2.1 2 0 24.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.33164E7 20.6 11.7 57 98300 0 0 346 0 0 0 0 0 0 0 30 3.6 0 0 24.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +1.332E7 20.0 11.7 59 98300 0 0 343 0 0 0 0 0 0 0 70 1.5 0 0 24.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +1.33236E7 19.4 12.2 63 98300 0 0 341 0 0 0 0 0 0 0 80 3.6 0 0 24.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +1.33272E7 20.6 12.2 59 98400 31 675 346 19 57 13 0 0 0 0 70 3.6 0 0 24.1 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +1.33308E7 20.0 12.8 63 98400 256 1327 344 129 458 40 14862 4760 4619 1548 70 3.1 0 0 24.1 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +1.33344E7 22.2 13.9 59 98400 519 1327 356 335 692 64 40027 30254 7666 2881 100 3.6 0 0 24.1 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +1.3338E7 24.4 15.0 56 98500 767 1327 368 548 799 85 67132 42311 10444 4230 150 2.1 0 0 24.1 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +1.33416E7 26.7 15.6 51 98500 982 1327 380 736 857 101 80043 89318 13943 2670 130 2.1 0 0 24.1 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +1.33452E7 29.4 15.6 43 98400 1149 1327 394 889 895 112 96332 93635 14869 4242 180 2.6 0 0 24.1 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +1.33488E7 29.4 13.9 39 98400 1257 1327 431 739 359 399 86612 29400 47088 17558 210 2.6 8 8 24.1 1070 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +1.33524E7 30.6 13.3 35 98400 1299 1327 418 791 586 217 97674 38312 26941 10993 240 3.6 4 4 24.1 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +1.3356E7 30.6 13.3 35 98300 1271 1327 418 934 731 233 114308 49113 28674 11636 240 3.6 4 4 24.1 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +1.33596E7 31.1 12.8 33 98300 1176 1327 420 892 732 242 107512 51169 29331 11843 260 2.6 4 4 24.1 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.33632E7 31.1 12.8 33 98200 1020 1327 420 636 533 226 75357 37816 26921 10829 230 3.1 4 4 24.1 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.33668E7 31.7 13.3 33 98200 814 1327 424 520 569 172 60879 37997 20230 7902 340 3.1 5 4 24.1 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.33704E7 30.6 13.3 35 98200 571 1327 418 317 378 155 35717 24368 17544 6087 300 2.6 5 4 24.1 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.3374E7 29.4 13.3 37 98200 310 1327 408 93 131 63 10514 3469 7144 2360 310 1.5 5 3 24.1 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.33776E7 27.8 13.9 43 98200 62 962 400 30 31 27 3114 0 2814 600 180 2.1 5 3 24.1 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.33812E7 25.6 15.0 52 98200 0 0 390 0 0 0 0 0 0 0 230 2.6 5 3 24.1 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.33848E7 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 25 0.0000 0 88 0.000 0.0 1.0 +1.33884E7 22.8 15.6 64 98300 0 0 373 0 0 0 0 0 0 0 300 2.1 2 2 19.3 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.3392E7 23.3 15.6 62 98300 0 0 363 0 0 0 0 0 0 0 300 2.6 0 0 19.3 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.33956E7 22.2 15.6 66 98300 0 0 358 0 0 0 0 0 0 0 280 3.1 0 0 16.1 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.33992E7 21.1 15.6 71 98300 0 0 353 0 0 0 0 0 0 0 250 2.6 0 0 16.1 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +1.34028E7 21.7 15.6 68 98300 0 0 355 0 0 0 0 0 0 0 270 1.5 0 0 16.1 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +1.34064E7 21.1 15.6 71 98200 0 0 353 0 0 0 0 0 0 0 220 2.1 3 0 16.1 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +1.341E7 19.4 15.6 78 98200 0 0 351 0 0 0 0 0 0 0 190 2.1 2 1 12.9 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +1.34136E7 19.4 15.6 78 98200 31 697 344 16 15 15 0 0 0 0 200 2.1 2 0 12.9 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +1.34172E7 20.6 16.1 76 98200 257 1327 351 115 296 58 12829 4632 6491 2069 200 2.1 2 0 12.9 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +1.34208E7 23.3 16.1 64 98200 520 1327 364 312 563 91 36217 26885 10599 3889 180 3.6 0 0 12.9 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +1.34244E7 26.1 16.7 56 98200 767 1327 378 528 698 124 62776 39916 14801 5893 280 3.6 0 0 12.9 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +1.3428E7 28.9 16.7 48 98200 982 1327 393 718 768 148 87161 45565 18045 7516 270 4.1 0 0 16.1 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +1.34316E7 30.0 15.0 40 98200 1149 1327 404 832 772 162 102846 46875 20118 8395 300 4.1 1 1 19.3 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +1.34352E7 30.6 13.9 36 98200 1257 1327 406 929 811 159 116715 48857 20069 8342 270 5.7 1 1 19.3 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +1.34388E7 31.7 14.4 35 98100 1299 1327 418 981 789 207 121481 50214 25770 10558 250 4.1 2 2 19.3 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.34424E7 31.7 14.4 35 98000 1271 1327 418 938 766 203 115909 48749 25217 10351 310 4.6 2 2 19.3 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.3446E7 31.7 14.4 35 97900 1177 1327 412 844 758 172 104273 46927 21352 8872 270 2.6 1 1 19.3 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.34496E7 32.2 13.9 33 97800 1021 1327 420 788 773 193 94456 51351 23249 9529 270 5.2 2 2 19.3 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.34532E7 32.2 13.9 33 97800 815 1327 407 566 713 129 67747 43001 15501 6234 260 5.2 0 0 19.3 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.34568E7 31.1 14.4 36 97800 573 1327 401 353 593 98 41240 31023 11488 4289 310 4.1 0 0 19.3 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.34604E7 29.4 14.4 40 97700 312 1327 393 149 375 62 16865 9566 7039 2338 300 2.6 0 0 19.3 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.3464E7 27.2 14.4 46 97700 63 962 381 25 41 21 2658 0 2241 566 280 2.6 0 0 16.1 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.34676E7 23.9 15.0 58 97700 0 0 365 0 0 0 0 0 0 0 290 2.6 0 0 16.1 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.34712E7 22.2 15.0 64 97700 0 0 357 0 0 0 0 0 0 0 290 2.6 0 0 16.1 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.34748E7 20.6 15.0 71 97700 0 0 349 0 0 0 0 0 0 0 290 3.6 0 0 16.1 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.34784E7 19.4 14.4 73 97700 0 0 343 0 0 0 0 0 0 0 280 4.1 0 0 16.1 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.3482E7 18.3 14.4 78 97600 0 0 338 0 0 0 0 0 0 0 280 3.6 0 0 16.1 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.34856E7 18.3 13.9 75 97500 0 0 337 0 0 0 0 0 0 0 270 4.1 0 0 16.1 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.34892E7 19.4 12.8 66 97500 0 0 341 0 0 0 0 0 0 0 270 3.1 0 0 16.1 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.34928E7 18.9 12.8 68 97500 0 0 339 0 0 0 0 0 0 0 270 4.1 0 0 16.1 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.34964E7 18.9 13.3 70 97400 0 0 340 0 0 0 0 0 0 0 280 4.6 0 0 16.1 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.35E7 18.9 13.3 70 97400 32 696 346 13 5 12 0 0 0 0 280 4.6 3 1 16.1 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.35036E7 21.1 12.2 57 97400 257 1326 349 108 237 62 12020 4877 6923 2172 260 4.1 1 0 16.1 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.35072E7 23.9 15.6 60 97400 520 1326 366 300 496 105 34448 25423 12101 4363 280 4.6 0 0 12.9 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.35108E7 26.1 16.7 56 97300 767 1326 378 510 624 148 59812 37894 17433 6830 260 6.7 1 0 12.9 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.35144E7 28.9 18.3 53 97300 982 1326 395 702 704 180 83846 43232 21604 8882 290 6.7 1 0 12.9 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.3518E7 31.1 18.3 47 97200 1149 1326 406 862 748 212 104154 46759 25753 10578 330 7.2 2 0 12.9 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.35216E7 32.8 17.8 41 97100 1257 1326 415 955 781 213 117083 48111 26255 10770 290 8.2 1 0 16.1 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.35252E7 33.3 17.2 38 97000 1299 1326 425 967 774 207 119504 47316 25719 10558 300 7.2 1 1 19.3 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.35288E7 33.9 16.7 36 97000 1272 1326 428 926 751 204 114202 46337 25292 10395 280 9.3 1 1 19.3 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.35324E7 34.4 17.2 36 96800 1177 1326 431 821 692 207 99839 43435 25306 10406 260 8.2 1 1 24.1 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.3536E7 33.9 16.7 36 96700 1022 1326 438 627 430 295 72578 32389 34356 13265 300 7.2 3 3 19.3 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.35396E7 33.9 16.1 34 96500 816 1326 433 535 553 195 61925 37400 22684 8731 290 8.2 2 2 19.3 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.35432E7 32.8 15.6 35 96700 575 1326 430 352 476 146 39817 28961 16588 5856 280 7.7 3 3 19.3 2000 9 999999999 33 0.0000 0 88 0.000 0.8 1.0 +1.35468E7 27.8 13.3 41 96900 314 1326 421 64 36 56 7314 880 6417 2164 320 12.9 9 8 4.8 1520 9 999999999 34 0.0000 0 88 0.000 3.3 1.0 +1.35504E7 20.0 17.2 84 96900 65 984 403 8 0 8 764 0 770 289 260 4.6 10 10 11.3 3050 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.3554E7 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 32 0.0000 0 88 0.000 0.0 1.0 +1.35576E7 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 30 0.0000 0 88 0.000 0.0 1.0 +1.35612E7 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 29 0.0000 0 88 0.000 0.0 1.0 +1.35648E7 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 28 0.0000 0 88 0.000 0.0 1.0 +1.35684E7 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 27 0.0000 0 88 0.000 0.0 1.0 +1.3572E7 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 25 0.0000 0 88 0.000 0.0 1.0 +1.35756E7 16.1 12.8 81 97000 0 0 340 0 0 0 0 0 0 0 350 6.2 6 3 19.3 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +1.35792E7 15.6 10.6 72 97000 0 0 328 0 0 0 0 0 0 0 350 5.2 4 1 19.3 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +1.35828E7 13.9 11.1 83 97100 0 0 321 0 0 0 0 0 0 0 320 4.6 3 1 19.3 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +1.35864E7 13.3 10.6 83 97100 32 696 317 15 28 12 0 0 0 0 330 4.6 2 1 19.3 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.359E7 14.4 9.4 72 97200 257 1326 315 124 391 48 14116 6391 5478 1796 330 6.2 1 0 32.2 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.35936E7 16.1 9.4 65 97300 520 1326 323 325 631 78 38355 31446 9232 3421 330 6.7 1 0 32.2 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.35972E7 18.9 8.9 52 97300 767 1326 335 544 765 101 66027 45527 12299 4935 330 7.7 0 0 32.2 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.36008E7 20.0 8.9 49 97400 982 1326 340 739 825 127 91187 51663 15732 6571 10 7.7 1 0 32.2 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.36044E7 21.1 8.3 44 97400 1149 1326 351 830 789 144 103887 50067 18100 7563 330 6.7 1 1 32.2 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.3608E7 22.2 8.9 43 97400 1257 1326 357 939 852 129 99447 87794 16546 7536 300 5.7 1 1 40.2 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.36116E7 22.8 9.4 43 97300 1299 1326 360 984 842 156 103699 86747 19594 12167 290 6.2 1 1 40.2 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.36152E7 23.3 9.4 41 97300 1272 1326 363 946 842 138 100083 86813 17574 8708 20 4.6 1 1 40.2 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.36188E7 23.9 9.4 40 97200 1178 1326 359 910 872 135 96407 89796 17571 5219 340 4.6 0 0 40.2 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.36224E7 24.4 8.3 36 97200 1023 1326 360 777 848 123 96669 52790 15361 6450 350 7.2 0 0 40.2 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.3626E7 23.9 7.2 34 97200 817 1326 356 583 777 105 71168 47516 12861 5218 340 6.2 0 0 40.2 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.36296E7 23.3 6.7 34 97300 576 1326 353 376 682 81 44804 36746 9680 3660 340 5.2 0 0 40.2 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.36332E7 22.2 6.7 37 97300 315 1326 348 163 470 53 18789 12961 6125 2075 330 5.2 0 0 40.2 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.36368E7 20.6 7.2 42 97300 66 984 341 30 85 21 3220 0 2261 583 340 4.1 0 0 40.2 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.36404E7 18.9 7.8 49 97400 0 0 333 0 0 0 0 0 0 0 330 3.6 0 0 40.2 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.3644E7 17.8 7.8 52 97500 0 0 328 0 0 0 0 0 0 0 340 3.1 0 0 40.2 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.36476E7 17.2 7.2 52 97400 0 0 325 0 0 0 0 0 0 0 320 5.2 0 0 40.2 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.36512E7 15.6 6.7 56 97500 0 0 317 0 0 0 0 0 0 0 320 3.6 0 0 32.2 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.36548E7 13.9 6.7 62 97400 0 0 310 0 0 0 0 0 0 0 320 2.6 0 0 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.36584E7 11.7 7.8 77 97500 0 0 302 0 0 0 0 0 0 0 270 2.6 0 0 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.3662E7 12.8 6.7 67 97500 0 0 305 0 0 0 0 0 0 0 320 2.6 0 0 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.36656E7 11.7 6.1 69 97500 0 0 300 0 0 0 0 0 0 0 340 2.6 0 0 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.36692E7 11.7 5.6 66 97600 0 0 300 0 0 0 0 0 0 0 340 2.6 0 0 24.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.36728E7 11.7 5.0 64 97600 32 696 299 17 42 13 0 0 0 0 340 3.1 0 0 32.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.36764E7 13.9 5.0 55 97700 258 1326 308 129 431 45 14793 7443 5172 1708 360 4.1 0 0 40.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.368E7 17.2 5.6 46 97800 520 1326 323 337 674 72 40086 34000 8587 3195 30 3.6 0 0 32.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.36836E7 19.4 6.1 42 97800 767 1326 334 555 793 96 67702 47720 11748 4718 70 3.6 0 0 32.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.36872E7 20.0 6.7 42 97800 981 1326 337 749 856 114 79385 87392 15574 2778 120 3.1 0 0 40.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.36908E7 21.7 6.7 38 97800 1149 1326 345 904 887 134 95290 90867 17535 4682 120 3.6 1 0 40.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.36944E7 22.8 6.1 34 97700 1257 1326 368 882 635 278 106736 48042 33841 13421 170 3.1 7 4 40.2 9140 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.3698E7 22.8 4.4 30 97700 1299 1326 372 897 601 306 108426 46928 37216 14577 260 2.1 8 6 40.2 9140 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.37016E7 23.9 5.0 30 97600 1272 1326 378 652 295 369 77395 24774 44092 16688 300 3.1 8 6 40.2 9140 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.37052E7 25.6 5.6 28 97600 1178 1326 374 906 767 225 110243 55452 27524 11162 240 2.1 8 2 40.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.37088E7 26.1 3.9 24 97600 1024 1326 363 783 853 124 97535 54896 15505 6499 220 3.1 1 0 40.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.37124E7 26.7 3.9 23 97600 819 1326 366 592 789 105 72372 49390 12879 5222 240 4.1 1 0 40.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.3716E7 26.1 1.7 20 97500 578 1326 360 383 705 77 45910 38876 9255 3506 250 4.1 0 0 40.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.37196E7 25.0 3.3 25 97500 317 1326 357 168 498 51 19462 14213 5922 2016 230 2.1 0 0 40.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.37232E7 21.7 4.4 33 97500 68 1005 342 32 100 21 3447 0 2269 591 260 2.6 0 0 40.2 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.37268E7 20.6 5.6 38 97500 0 0 339 0 0 0 0 0 0 0 220 2.1 0 0 32.2 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.37304E7 18.9 7.2 47 97600 0 0 333 0 0 0 0 0 0 0 220 2.1 0 0 32.2 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.3734E7 17.2 7.8 54 97600 0 0 326 0 0 0 0 0 0 0 220 2.1 0 0 32.2 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.37376E7 16.7 6.7 52 97600 0 0 322 0 0 0 0 0 0 0 230 2.6 0 0 32.2 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.37412E7 15.6 5.0 50 97600 0 0 316 0 0 0 0 0 0 0 240 3.6 0 0 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.37448E7 15.6 5.6 52 97500 0 0 316 0 0 0 0 0 0 0 260 3.6 0 0 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.37484E7 15.6 5.6 52 97500 0 0 316 0 0 0 0 0 0 0 250 2.6 0 0 24.1 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.3752E7 14.4 4.4 51 97500 0 0 310 0 0 0 0 0 0 0 250 3.6 0 0 24.1 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.37556E7 13.9 5.0 55 97500 0 0 314 0 0 0 0 0 0 0 270 3.6 1 1 24.1 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.37592E7 13.3 5.6 60 97600 32 696 312 9 0 9 0 0 0 0 260 2.1 1 1 32.2 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.37628E7 17.2 6.7 50 97700 258 1325 325 91 87 74 10015 2530 8173 2447 230 4.1 0 0 40.2 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.37664E7 21.1 6.7 39 97700 520 1325 342 265 298 148 29760 19799 16694 5614 260 6.2 0 0 40.2 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.377E7 22.8 7.8 38 97700 767 1325 352 478 452 216 54718 34827 24854 9124 260 6.7 0 0 40.2 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.37736E7 24.4 9.4 39 97700 981 1325 361 672 545 267 78328 42774 31299 12130 270 7.2 0 0 40.2 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.37772E7 26.7 10.6 36 97700 1148 1325 374 835 613 302 98737 47637 35929 14023 260 6.7 0 0 40.2 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.37808E7 28.3 11.1 34 97700 1257 1325 383 938 648 323 111964 49894 38799 15083 260 8.8 0 0 40.2 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.37844E7 29.4 12.2 35 97600 1299 1325 397 968 653 327 116008 49454 39440 15345 310 7.7 1 1 40.2 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.3788E7 30.0 12.8 35 97600 1273 1325 414 815 357 472 94548 31696 55161 19658 290 7.7 4 4 40.2 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.37916E7 29.4 13.3 37 97600 1179 1325 408 785 461 374 91515 37869 43894 16463 290 7.7 3 3 24.1 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.37952E7 29.4 13.9 39 97600 1025 1325 409 654 447 308 75649 35354 35846 13698 310 8.2 3 3 24.1 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.37988E7 29.4 13.9 39 97600 820 1325 405 494 393 252 56157 30387 28808 10538 310 7.7 2 2 24.1 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.38024E7 28.3 12.8 38 97600 579 1325 398 303 287 178 33833 19920 19973 6738 320 5.2 6 2 24.1 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.3806E7 27.2 12.8 41 97700 319 1325 396 92 61 78 10258 2034 8728 2797 320 5.2 7 3 24.1 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.38096E7 25.0 12.2 45 97700 69 1005 368 24 2 24 2551 0 2560 639 340 4.1 1 0 24.1 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.38132E7 22.8 6.7 35 97800 0 0 350 0 0 0 0 0 0 0 360 5.2 0 0 24.1 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.38168E7 21.7 5.0 34 97900 0 0 343 0 0 0 0 0 0 0 360 4.1 0 0 24.1 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.38204E7 20.6 4.4 35 97900 0 0 337 0 0 0 0 0 0 0 360 4.1 0 0 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.3824E7 18.3 4.4 40 97900 0 0 327 0 0 0 0 0 0 0 340 3.6 0 0 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.38276E7 15.6 4.4 48 97900 0 0 315 0 0 0 0 0 0 0 0 0.0 0 0 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.38312E7 15.6 4.4 48 98000 0 0 315 0 0 0 0 0 0 0 360 2.6 0 0 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.38348E7 11.7 5.0 64 98000 0 0 299 0 0 0 0 0 0 0 0 0.0 0 0 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.38384E7 12.2 5.0 62 98000 0 0 301 0 0 0 0 0 0 0 340 2.6 0 0 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.3842E7 11.1 6.7 74 98100 0 0 304 0 0 0 0 0 0 0 0 0.0 1 1 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.38456E7 12.2 6.1 67 98200 33 696 312 9 3 9 0 0 0 0 320 2.1 2 2 32.2 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.38492E7 13.9 6.7 62 98200 258 1325 310 97 188 61 10847 4417 6843 2152 290 3.1 1 0 32.2 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.38528E7 16.1 8.3 60 98300 520 1325 321 296 452 119 33808 26826 13645 4807 280 1.5 1 0 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.38564E7 20.6 7.8 44 98200 766 1325 341 517 597 170 60316 41951 19923 7631 180 1.5 2 0 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.386E7 21.7 6.1 37 98200 981 1325 351 685 617 227 80980 46617 26976 10722 170 1.5 3 1 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.38636E7 23.9 6.1 32 98200 1148 1325 362 834 674 249 100299 50470 30112 12070 240 2.6 3 1 32.2 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.38672E7 25.6 3.9 25 98200 1257 1325 360 972 759 250 118671 56206 30694 12316 310 5.2 2 0 40.2 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.38708E7 26.7 3.3 22 98200 1299 1325 365 1009 772 250 123887 56830 30869 12388 300 5.7 2 0 40.2 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.38744E7 28.9 3.3 19 98100 1273 1325 376 980 760 248 119984 56129 30533 12262 280 5.2 2 0 40.2 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.3878E7 29.4 2.2 17 98100 1179 1325 384 839 702 214 102614 50921 26308 10707 320 5.7 2 1 40.2 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.38816E7 30.0 1.7 16 98000 1025 1325 386 691 621 210 82825 46353 25298 10233 330 6.2 2 1 40.2 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.38852E7 29.4 0.6 15 98000 821 1325 382 527 537 195 61529 40909 22877 8762 300 5.7 2 1 40.2 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.38888E7 28.9 0.6 16 98000 581 1325 379 341 479 132 39232 31784 15247 5469 330 5.2 3 1 40.2 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.38924E7 27.2 2.2 20 97900 321 1325 366 144 260 81 16097 10399 9086 2878 320 3.1 2 0 40.2 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.3896E7 24.4 3.3 25 98000 70 1027 354 26 15 25 2772 0 2675 660 310 3.6 2 0 40.2 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.38996E7 22.2 3.9 30 98000 0 0 344 0 0 0 0 0 0 0 330 2.6 0 0 40.2 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.39032E7 21.1 3.9 32 98100 0 0 339 0 0 0 0 0 0 0 350 3.6 0 0 40.2 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.39068E7 21.1 3.9 32 98100 0 0 339 0 0 0 0 0 0 0 350 0.5 0 0 40.2 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +1.39104E7 20.6 3.9 34 98100 0 0 337 0 0 0 0 0 0 0 320 2.1 0 0 40.2 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +1.3914E7 19.4 4.4 37 98100 0 0 332 0 0 0 0 0 0 0 340 2.6 0 0 40.2 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +1.39176E7 18.3 4.4 40 98000 0 0 333 0 0 0 0 0 0 0 320 2.1 1 1 32.2 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +1.39212E7 16.1 6.7 54 98000 0 0 326 0 0 0 0 0 0 0 0 0.0 1 1 24.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +1.39248E7 16.1 6.7 54 98000 0 0 320 0 0 0 0 0 0 0 20 2.6 0 0 24.1 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +1.39284E7 13.3 7.2 67 98000 0 0 308 0 0 0 0 0 0 0 310 2.1 0 0 24.1 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +1.3932E7 17.8 5.0 43 98100 33 696 332 16 52 11 0 0 0 0 20 2.6 1 1 32.2 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +1.39356E7 20.0 4.4 36 98100 258 1325 341 127 448 40 14706 6918 4642 1553 40 4.1 1 1 32.2 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +1.39392E7 21.7 5.6 35 98100 519 1325 350 317 603 80 37402 31468 9466 3496 50 5.2 1 1 32.2 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +1.39428E7 23.3 7.2 36 98200 766 1325 353 545 796 84 67118 46080 10374 4186 80 5.2 0 0 32.2 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +1.39464E7 25.0 7.2 32 98100 980 1325 361 734 855 100 78171 87458 13768 2662 50 3.6 0 0 32.2 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +1.395E7 26.7 7.8 30 98100 1148 1325 371 882 887 111 93689 91176 14696 4231 10 2.1 0 0 32.2 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.39536E7 28.3 10.0 32 98000 1256 1325 381 971 899 117 103384 92903 15101 7041 10 2.1 0 0 32.2 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.39572E7 30.0 12.8 35 98000 1299 1325 394 1012 908 120 108390 94440 15339 10039 340 5.2 0 0 32.2 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.39608E7 31.1 13.9 35 97900 1273 1325 408 957 860 130 102606 89616 16639 8477 310 4.1 3 1 32.2 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.39644E7 32.2 16.1 38 97800 1180 1325 409 903 881 118 97846 92323 15518 4896 340 7.2 1 0 20.9 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.3968E7 32.8 16.1 37 97700 1026 1325 421 720 776 118 89501 43604 14725 6220 330 5.7 4 1 20.9 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.39716E7 32.2 15.6 37 97700 822 1325 422 536 581 176 62645 37977 20667 8095 330 4.1 6 2 20.9 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.39752E7 32.2 15.6 37 97600 582 1325 422 317 402 141 36024 24101 16093 5753 350 3.6 7 2 24.1 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.39788E7 31.1 15.6 39 97700 322 1325 427 119 160 81 13216 5201 9029 2886 320 2.6 9 5 24.1 9140 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.39824E7 28.3 16.1 48 97700 72 1027 421 31 14 29 3245 0 3048 707 270 2.6 10 7 24.1 9140 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.3986E7 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 31 0.0000 0 88 0.000 0.0 1.0 +1.39896E7 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 30 0.0000 0 88 0.000 0.0 1.0 +1.39932E7 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 30 0.0000 0 88 0.000 0.0 1.0 +1.39968E7 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 30 0.0000 0 88 0.000 7.1 1.0 +1.40004E7 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 30 0.0000 0 88 0.000 0.0 1.0 +1.4004E7 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 30 0.0000 0 88 0.000 0.3 1.0 +1.40076E7 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 30 0.0000 0 88 0.000 0.8 1.0 +1.40112E7 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 30 0.0000 0 88 0.000 0.0 1.0 +1.40148E7 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 29 0.0000 0 88 0.000 0.0 1.0 +1.40184E7 21.7 18.9 84 97700 33 695 395 12 2 12 0 0 0 0 180 3.6 9 8 11.3 7620 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.4022E7 21.7 19.4 87 97700 258 1325 389 104 74 90 11156 1950 9696 2735 200 2.1 8 7 9.7 7620 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.40256E7 23.9 20.0 79 97700 519 1325 387 231 269 125 26050 13739 14156 4985 250 5.2 7 3 9.7 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.40292E7 26.1 20.6 72 97800 766 1325 390 512 700 106 61386 35187 12755 5148 270 5.2 3 1 11.3 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.40328E7 28.9 20.6 61 97800 980 1325 398 724 826 111 80083 87534 15284 2756 270 6.7 1 0 11.3 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.40364E7 30.0 20.6 57 97800 1147 1325 403 873 872 117 96359 92796 15537 4362 280 5.2 0 0 11.3 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.404E7 31.1 20.0 52 97700 1256 1325 409 976 897 124 107176 95341 16029 7356 270 5.7 0 0 12.9 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.40436E7 32.2 18.3 44 97700 1299 1325 434 921 636 296 110726 43078 35810 14205 290 4.1 4 4 16.1 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.40472E7 32.2 18.3 44 97600 1273 1325 430 890 693 223 108938 42782 27448 11221 300 3.1 3 3 16.1 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.40508E7 33.3 18.3 41 97600 1180 1325 443 884 676 281 104997 46420 33579 13356 280 4.6 5 5 24.1 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.40544E7 33.3 16.7 37 97500 1027 1325 438 615 476 246 72286 33200 29077 11613 250 7.2 4 4 24.1 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.4058E7 32.2 17.2 41 97500 823 1325 435 515 574 159 60604 35312 18795 7464 250 5.7 5 5 24.1 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.40616E7 31.7 17.2 42 97500 583 1325 433 269 262 154 30321 15984 17438 6140 260 2.6 5 5 24.1 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.40652E7 31.1 17.8 45 97500 324 1325 419 169 432 64 19108 10644 7258 2434 260 3.6 2 2 24.1 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.40688E7 28.3 18.9 57 97500 73 1027 392 34 124 21 3656 0 2265 618 230 3.1 0 0 24.1 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.40724E7 26.7 18.9 62 97600 0 0 384 0 0 0 0 0 0 0 230 2.6 0 0 19.3 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.4076E7 25.6 18.9 67 97600 0 0 379 0 0 0 0 0 0 0 240 3.1 0 0 12.9 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.40796E7 24.4 17.8 66 97700 0 0 371 0 0 0 0 0 0 0 0 0.0 0 0 12.9 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.40832E7 23.9 17.8 69 97700 0 0 369 0 0 0 0 0 0 0 260 2.1 3 0 12.9 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.40868E7 23.9 17.8 69 97700 0 0 391 0 0 0 0 0 0 0 280 2.6 5 5 16.1 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.40904E7 22.8 17.8 74 97700 0 0 382 0 0 0 0 0 0 0 230 3.1 5 4 16.1 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.4094E7 22.2 17.8 76 97700 0 0 379 0 0 0 0 0 0 0 240 3.1 5 4 16.1 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.40976E7 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 32 0.0000 0 88 0.000 0.0 1.0 +1.41012E7 20.6 17.8 84 97700 0 0 364 0 0 0 0 0 0 0 270 3.6 4 2 16.1 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.41048E7 20.0 17.8 87 97800 32 695 361 10 14 9 0 0 0 0 280 4.1 2 2 11.3 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.41084E7 22.2 18.3 79 97800 257 1324 361 118 350 49 13329 3448 5550 1827 290 3.6 0 0 11.3 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.4112E7 25.0 18.3 67 97900 519 1324 375 317 603 80 37106 26061 9393 3495 300 3.1 0 0 11.3 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.41156E7 27.2 18.9 60 97900 765 1324 387 527 723 108 63200 38004 12999 5232 280 1.5 0 0 11.3 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.41192E7 30.0 18.9 51 97900 979 1324 401 716 792 128 87702 43371 15742 6616 210 2.1 0 0 11.3 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.41228E7 31.7 19.4 48 98000 1147 1324 411 866 833 142 107710 45309 17739 7468 310 2.6 0 0 11.3 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.41264E7 32.2 18.9 45 98000 1256 1324 413 965 856 151 104868 90458 19267 8445 310 3.1 0 0 16.1 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.413E7 33.3 17.8 40 97900 1299 1324 431 936 700 247 114135 44788 30294 12266 170 2.1 2 2 16.1 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.41336E7 33.9 17.2 37 97900 1274 1324 434 865 661 228 105810 41841 28046 11433 360 1.5 2 2 16.1 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.41372E7 32.8 16.7 38 97800 1181 1324 447 488 195 314 57553 14318 37267 14539 180 1.5 7 7 19.3 1520 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.41408E7 32.2 18.3 44 97800 1028 1324 453 686 453 335 78589 35301 38627 14537 340 4.1 8 8 19.3 1520 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.41444E7 32.8 17.8 41 97700 824 1324 456 371 85 318 41289 7035 35615 12223 250 3.1 8 8 19.3 3050 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.4148E7 32.2 17.2 41 97700 585 1324 429 304 377 138 34582 21834 15766 5677 160 5.2 6 3 19.3 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.41516E7 30.6 18.3 48 97800 325 1324 425 129 176 86 14237 5622 9528 3021 160 3.1 10 4 19.3 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.41552E7 29.4 18.9 53 97900 74 1048 422 26 8 26 2750 0 2760 698 240 3.1 9 5 19.3 7620 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.41588E7 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 41 0.0000 0 88 0.000 0.0 1.0 +1.41624E7 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 42 0.0000 0 88 0.000 0.0 1.0 +1.4166E7 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 42 0.0000 0 88 0.000 0.0 1.0 +1.41696E7 25.6 16.7 58 98100 0 0 392 0 0 0 0 0 0 0 320 5.7 4 3 19.3 2000 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.41732E7 25.6 16.7 58 98100 0 0 376 0 0 0 0 0 0 0 330 5.7 2 0 16.1 2000 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.41768E7 23.9 17.2 66 98100 0 0 368 0 0 0 0 0 0 0 330 5.2 3 0 16.1 2000 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +1.41804E7 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 45 0.0000 0 88 0.000 0.0 1.0 +1.4184E7 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 45 0.0000 0 88 0.000 0.0 1.0 +1.41876E7 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 46 0.0000 0 88 0.000 0.0 1.0 +1.41912E7 21.7 18.3 81 98200 32 695 414 7 0 7 0 0 0 0 70 4.1 10 10 11.3 4570 9 999999999 46 0.0000 0 88 0.000 0.0 1.0 +1.41948E7 22.2 18.9 82 98200 257 1324 406 70 9 68 7692 156 7499 2317 80 2.6 10 9 9.7 3660 9 999999999 47 0.0000 0 88 0.000 0.0 1.0 +1.41984E7 22.8 18.9 79 98200 518 1324 409 143 28 132 16072 1508 14900 5183 110 4.1 10 9 11.3 3660 9 999999999 46 0.0000 0 88 0.000 0.0 1.0 +1.4202E7 25.0 19.4 71 98300 765 1324 407 308 79 263 34406 5915 29552 10388 110 4.1 10 7 11.3 3660 9 999999999 46 0.0000 0 88 0.000 0.0 1.0 +1.42056E7 25.6 19.4 69 98300 979 1324 416 392 113 308 44838 8472 35451 13418 150 3.6 10 8 11.3 3660 9 999999999 45 0.0000 0 88 0.000 0.0 1.0 +1.42092E7 27.8 20.0 63 98300 1146 1324 423 581 220 390 66842 17192 45181 16786 0 0.0 9 7 11.3 7620 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +1.42128E7 29.4 19.4 55 98300 1256 1324 419 905 494 435 104886 39443 50784 18600 320 3.1 9 4 11.3 2000 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +1.42164E7 29.4 18.9 53 98300 1299 1324 447 619 119 502 71386 10117 58340 20574 270 2.6 10 9 11.3 4270 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.422E7 30.0 20.0 55 98200 1274 1324 465 434 6 428 50451 468 50117 18493 270 2.6 10 10 11.3 4270 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.42236E7 30.6 18.3 48 98200 1181 1324 466 323 16 309 38091 1141 36671 14368 320 4.6 10 10 11.3 4270 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.42272E7 31.1 18.3 47 98200 1028 1324 469 262 9 256 30665 623 30136 11984 320 3.6 10 10 11.3 4270 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.42308E7 30.6 17.2 45 98200 825 1324 464 226 7 221 25925 490 25487 9654 340 6.2 10 10 16.1 7620 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.42344E7 30.0 16.1 43 98200 586 1324 446 170 65 141 19329 3871 16102 5775 320 3.1 9 9 19.3 7620 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.4238E7 28.3 16.1 48 98200 327 1324 436 98 15 94 10763 555 10365 3208 320 5.2 9 9 24.1 7620 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.42416E7 27.8 16.7 51 98200 75 1048 447 16 0 15 1532 0 1446 500 340 3.6 10 10 24.1 4270 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.42452E7 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 39 0.0000 0 88 0.000 0.0 1.0 +1.42488E7 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 39 0.0000 0 88 0.000 0.0 1.0 +1.42524E7 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 39 0.0000 0 88 0.000 0.0 1.0 +1.4256E7 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 39 0.0000 0 88 0.000 0.0 1.0 +1.42596E7 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 40 0.0000 0 88 0.000 0.0 1.0 +1.42632E7 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 40 0.0000 0 88 0.000 0.0 1.0 +1.42668E7 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 40 0.0000 0 88 0.000 0.0 1.0 +1.42704E7 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 40 0.0000 0 88 0.000 0.0 1.0 +1.4274E7 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 40 0.0000 0 88 0.000 0.0 1.0 +1.42776E7 22.2 16.7 71 98300 32 695 414 11 0 11 0 0 0 0 350 4.1 10 10 19.3 3350 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.42812E7 22.2 17.2 73 98300 256 1324 415 79 3 79 8585 72 8619 2544 310 2.1 10 10 19.3 3350 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.42848E7 22.2 17.8 76 98400 518 1324 404 201 46 182 22021 3031 20043 6370 290 2.6 10 9 19.3 7620 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.42884E7 24.4 17.8 66 98400 764 1324 428 260 48 232 29387 3458 26367 9576 320 3.6 10 10 24.1 3050 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.4292E7 24.4 17.8 66 98400 978 1324 428 292 18 279 33715 1321 32406 12517 320 4.1 10 10 24.1 3050 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.42956E7 26.1 17.8 60 98400 1146 1324 417 544 209 363 63078 16288 42374 16001 300 3.6 10 8 24.1 3050 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.42992E7 26.7 18.3 60 98400 1255 1324 442 335 8 327 39743 571 39047 15224 260 4.1 10 10 24.1 3050 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.43028E7 26.7 17.8 58 98400 1299 1324 442 364 19 345 43274 1378 41289 15983 270 5.2 10 10 24.1 3660 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.43064E7 26.7 17.8 58 98300 1274 1324 442 386 3 383 45364 229 45324 17149 270 4.1 10 10 24.1 3660 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.431E7 26.1 18.9 65 98300 1182 1324 440 371 5 367 43147 381 42972 16271 300 3.6 10 10 24.1 3660 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.43136E7 26.1 18.9 65 98200 1029 1324 440 331 8 325 38001 609 37551 14255 300 5.2 10 10 24.1 3660 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.43172E7 26.1 18.9 65 98200 826 1324 440 266 5 263 30046 370 29882 10906 320 5.2 10 10 24.1 3660 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.43208E7 25.6 18.3 64 98100 587 1324 424 187 57 162 20989 3503 18269 6387 320 4.6 9 9 24.1 3660 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.43244E7 24.4 17.8 66 98100 328 1324 408 127 84 107 13783 3357 11663 3474 290 4.1 8 8 24.1 7620 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.4328E7 23.3 17.8 71 98200 76 1070 422 10 1 9 1160 0 1045 331 300 2.6 10 10 24.1 3660 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.43316E7 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 43 0.0000 0 88 0.000 0.0 1.0 +1.43352E7 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 43 0.0000 0 88 0.000 0.0 1.0 +1.43388E7 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 43 0.0000 0 88 0.000 0.0 1.0 +1.43424E7 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 43 0.0000 0 88 0.000 0.0 1.0 +1.4346E7 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 43 0.0000 0 88 0.000 0.0 1.0 +1.43496E7 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 44 0.0000 0 88 0.000 0.0 1.0 +1.43532E7 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 44 0.0000 0 88 0.000 0.0 1.0 +1.43568E7 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 44 0.0000 0 88 0.000 0.0 1.0 +1.43604E7 20.6 19.4 93 98100 0 0 370 0 0 0 0 0 0 0 320 3.6 4 3 9.7 2000 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +1.4364E7 21.1 19.4 90 98100 32 695 375 12 3 12 0 0 0 0 320 6.2 9 4 6.4 2000 9 999999999 45 0.0000 0 88 0.000 0.0 1.0 +1.43676E7 21.7 20.0 90 98200 256 1324 416 56 50 47 6334 346 5330 1767 290 2.1 10 10 6.4 3350 9 999999999 45 0.0000 0 88 0.000 0.0 1.0 +1.43712E7 22.8 20.0 84 98200 517 1324 402 187 76 157 20691 4408 17456 5825 360 2.6 10 8 6.4 7620 9 999999999 45 0.0000 0 88 0.000 0.0 1.0 +1.43748E7 25.0 20.0 74 98300 763 1324 407 419 257 270 46667 19334 30252 10548 60 2.6 10 7 6.4 7620 9 999999999 45 0.0000 0 88 0.000 0.0 1.0 +1.43784E7 26.1 20.6 72 98300 978 1324 409 587 362 318 66875 27045 36461 13705 220 2.1 9 6 6.4 7620 9 999999999 45 0.0000 0 88 0.000 0.0 1.0 +1.4382E7 27.8 20.0 63 98300 1145 1324 451 349 61 296 41030 4202 35016 13811 240 1.0 10 10 6.4 7620 9 999999999 45 0.0000 0 88 0.000 0.0 1.0 +1.43856E7 27.2 20.6 67 98300 1255 1324 449 335 7 329 39632 482 39179 15294 310 3.6 10 10 8.0 7620 9 999999999 45 0.0000 0 88 0.000 0.0 1.0 +1.43892E7 29.4 21.1 61 98200 1299 1324 433 732 275 462 84779 21692 53912 19565 280 5.2 9 7 8.0 3660 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +1.43928E7 28.3 20.6 63 98200 1274 1324 443 523 161 368 61488 11581 43564 16670 270 4.6 9 9 8.0 3660 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +1.43964E7 28.3 17.2 51 98200 1182 1324 438 465 112 365 54192 8711 42825 16212 320 4.1 9 9 8.0 3660 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +1.44E7 31.1 18.3 47 98100 1030 1324 456 437 59 391 49466 4956 44565 16049 340 3.6 9 9 8.0 3660 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +1.44036E7 30.0 17.8 48 98100 827 1324 449 335 102 271 37797 7774 30756 11131 320 3.1 9 9 8.0 3660 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +1.44072E7 28.3 17.2 51 98100 588 1324 438 271 92 230 29587 6963 25253 7903 340 3.6 9 9 8.0 3660 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +1.44108E7 25.6 20.0 71 98200 329 1324 426 66 17 62 7479 377 7047 2392 70 5.7 9 9 9.7 7620 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +1.44144E7 24.4 20.0 76 98200 77 1070 431 19 1 19 2071 0 2077 598 140 3.6 10 10 9.7 3660 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +1.4418E7 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 44 0.0000 0 88 0.000 0.0 1.0 +1.44216E7 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 44 0.0000 0 88 0.000 0.0 1.0 +1.44252E7 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 45 0.0000 0 88 0.000 0.0 1.0 +1.44288E7 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 45 0.0000 0 88 0.000 0.0 1.0 +1.44324E7 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 45 0.0000 0 88 0.000 0.0 1.0 +1.4436E7 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 45 0.0000 0 88 0.000 0.0 1.0 +1.44396E7 20.0 19.4 97 98200 0 0 358 0 0 0 0 0 0 0 90 2.6 4 1 6.4 2000 9 999999999 45 0.0000 0 88 0.000 0.0 1.0 +1.44432E7 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 46 0.0000 0 88 0.000 0.0 1.0 +1.44468E7 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 46 0.0000 0 88 0.000 0.0 1.0 +1.44504E7 20.0 20.0 100 98200 32 695 406 7 0 7 0 0 0 0 90 3.1 10 10 1.6 60 9 999999999 46 0.0000 0 88 0.000 0.0 1.0 +1.4454E7 20.6 20.0 97 98200 255 1323 410 54 5 53 6047 47 5953 1937 100 3.1 10 10 4.8 150 9 999999999 46 0.0000 0 88 0.000 0.0 1.0 +1.44576E7 21.7 20.0 90 98200 516 1323 396 233 216 149 25889 12151 16634 5626 100 3.1 8 8 4.8 5490 9 999999999 46 0.0000 0 88 0.000 0.0 1.0 +1.44612E7 24.4 20.0 76 98200 763 1323 404 356 186 249 39910 13418 28076 10025 140 1.5 8 7 8.0 5490 9 999999999 45 0.0000 0 88 0.000 0.0 1.0 +1.44648E7 27.2 20.0 65 98200 977 1323 420 508 173 379 57093 14273 42888 15286 160 1.5 8 7 12.9 5490 9 999999999 45 0.0000 0 88 0.000 0.0 1.0 +1.44684E7 28.3 20.0 61 98200 1145 1323 414 753 476 340 87566 34859 39800 15286 100 1.5 8 4 12.9 2000 9 999999999 45 0.0000 0 88 0.000 0.0 1.0 +1.4472E7 28.9 19.4 57 98200 1255 1323 445 577 72 509 66040 6229 58708 20437 240 1.5 10 9 12.9 3050 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +1.44756E7 30.0 18.3 50 98200 1299 1323 450 626 182 447 72906 14717 52443 19159 240 2.1 10 9 12.9 1010 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +1.44792E7 30.6 18.3 48 98100 1274 1323 453 642 131 516 73671 11490 59672 20728 220 3.1 10 9 12.9 3050 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +1.44828E7 26.1 18.3 62 98100 1183 1323 427 437 100 348 51074 7501 40942 15680 320 5.2 9 9 11.3 1070 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.44864E7 25.6 21.1 77 98100 1030 1323 428 420 65 369 47629 5087 42131 15502 140 3.6 9 9 16.1 1070 9 999999999 43 0.0000 0 88 0.000 0.3 1.0 +1.449E7 23.3 20.6 84 98100 828 1323 426 144 7 140 17074 386 16671 6735 60 2.6 10 10 16.1 1070 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.44936E7 22.8 20.0 84 98100 589 1323 422 176 26 164 19710 1558 18455 6457 70 2.1 10 10 12.9 1070 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.44972E7 22.8 18.9 79 98100 331 1323 421 81 0 81 7925 0 7987 2925 70 3.6 10 10 11.3 1070 9 999999999 42 0.0000 0 88 0.000 0.3 1.0 +1.45008E7 22.8 18.9 79 98100 78 1070 421 9 0 9 860 0 866 333 140 3.1 10 10 11.3 1070 9 999999999 42 0.0000 0 88 0.000 0.3 1.0 +1.45044E7 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 43 0.0000 0 88 0.000 0.3 1.0 +1.4508E7 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 43 0.0000 0 88 0.000 0.0 1.0 +1.45116E7 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 43 0.0000 0 88 0.000 0.0 1.0 +1.45152E7 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 44 0.0000 0 88 0.000 0.0 1.0 +1.45188E7 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 44 0.0000 0 88 0.000 0.0 1.0 +1.45224E7 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 44 0.0000 0 88 0.000 0.0 1.0 +1.4526E7 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 45 0.0000 0 88 0.000 0.0 1.0 +1.45296E7 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 45 0.0000 0 88 0.000 0.0 1.0 +1.45332E7 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 45 0.0000 0 88 0.000 0.0 1.0 +1.45368E7 19.4 19.4 100 98100 31 695 402 11 1 11 0 0 0 0 0 0.0 10 10 12.9 3660 9 999999999 46 0.0000 0 88 0.000 0.0 1.0 +1.45404E7 20.0 19.4 97 98100 255 1323 406 61 2 61 6755 27 6778 2144 260 3.1 10 10 12.9 3660 9 999999999 46 0.0000 0 88 0.000 0.0 1.0 +1.4544E7 20.6 19.4 93 98200 515 1323 409 156 2 155 17286 117 17258 5770 250 4.1 10 10 12.9 3660 9 999999999 46 0.0000 0 88 0.000 0.0 1.0 +1.45476E7 21.7 20.0 90 98200 762 1323 416 229 0 228 23244 0 23356 9451 280 5.7 10 10 11.3 3660 9 999999999 45 0.0000 0 88 0.000 0.0 1.0 +1.45512E7 24.4 21.1 82 98200 976 1323 433 387 3 385 43380 246 43456 15419 320 5.2 10 10 12.9 3660 9 999999999 45 0.0000 0 88 0.000 0.0 1.0 +1.45548E7 26.7 22.2 77 98200 1144 1323 448 412 1 412 47063 77 47402 17377 290 3.1 10 10 12.9 3660 9 999999999 45 0.0000 0 88 0.000 0.0 1.0 +1.45584E7 27.2 22.2 74 98200 1254 1323 438 660 222 449 76054 17219 52127 18975 280 3.6 10 9 12.9 3660 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +1.4562E7 28.3 21.7 67 98100 1298 1323 423 787 465 330 93513 30965 39473 15458 320 3.6 8 6 12.9 7620 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +1.45656E7 29.4 21.1 61 98000 1274 1323 433 750 326 435 86986 25175 50824 18698 260 3.1 8 7 12.9 3660 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +1.45692E7 31.1 21.1 55 98000 1183 1323 460 479 106 383 55404 7955 44609 16759 300 3.1 9 9 12.9 3660 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.45728E7 31.7 20.6 52 97900 1031 1323 463 415 80 353 47263 6169 40472 15078 240 5.2 9 9 12.9 1370 9 999999999 43 0.0000 0 88 0.000 1.5 1.0 +1.45764E7 28.3 22.8 72 97900 829 1323 446 282 154 186 32622 8994 21626 8496 0 0.0 9 9 11.3 1220 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.458E7 27.2 20.0 65 97900 590 1323 435 129 77 95 15096 3596 11155 4236 120 5.2 9 9 24.1 1220 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.45836E7 25.6 20.0 71 97900 332 1323 402 107 184 61 12152 4076 6948 2369 240 5.2 5 5 24.1 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.45872E7 24.4 20.0 76 97900 79 1069 393 27 24 24 2893 0 2580 700 220 3.6 4 4 16.1 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.45908E7 22.8 20.0 84 97900 0 0 385 0 0 0 0 0 0 0 230 3.6 4 4 16.1 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.45944E7 22.8 20.6 87 98000 0 0 382 0 0 0 0 0 0 0 220 2.1 3 3 12.9 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.4598E7 22.2 20.6 90 98000 0 0 370 0 0 0 0 0 0 0 250 2.6 3 1 12.9 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.46016E7 21.7 20.0 90 98000 0 0 367 0 0 0 0 0 0 0 280 3.6 3 1 12.9 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.46052E7 21.1 20.0 93 97900 0 0 364 0 0 0 0 0 0 0 250 2.6 2 1 12.9 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.46088E7 20.6 19.4 93 97900 0 0 366 0 0 0 0 0 0 0 270 3.1 4 2 11.3 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.46124E7 20.6 19.4 93 98000 0 0 366 0 0 0 0 0 0 0 250 1.5 5 2 11.3 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.4616E7 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 42 0.0000 0 88 0.000 0.0 1.0 +1.46196E7 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 42 0.0000 0 88 0.000 0.0 1.0 +1.46232E7 20.6 19.4 93 98000 31 695 383 14 11 13 0 0 0 0 280 3.1 8 7 11.3 7620 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.46268E7 21.1 19.4 90 98100 254 1323 386 86 65 73 9380 1214 7992 2414 270 6.2 9 7 11.3 7620 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.46304E7 22.8 20.0 84 98100 515 1323 385 299 457 120 33805 22806 13624 4821 270 3.1 8 4 17.7 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.4634E7 24.4 20.0 76 98100 761 1323 390 449 486 168 51943 29242 19527 7544 320 4.6 6 3 24.1 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.46376E7 28.3 20.0 61 98100 976 1323 411 675 680 172 80734 39847 20671 8541 310 4.6 5 3 24.1 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.46412E7 29.4 18.3 51 98000 1144 1323 421 712 553 232 85424 35674 27990 11395 240 6.2 6 5 40.2 7620 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.46448E7 28.9 16.7 48 98000 1254 1323 416 737 459 300 88133 32370 36099 14251 270 5.2 8 5 32.2 7620 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.46484E7 30.0 20.0 55 98000 1298 1323 427 976 706 282 117595 45589 34188 13670 290 6.7 8 5 32.2 7620 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.4652E7 31.7 20.0 50 98000 1274 1323 436 976 668 331 115784 46331 39527 15422 300 6.2 7 5 32.2 7620 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.46556E7 31.7 20.0 50 97900 1183 1323 445 493 262 259 58864 16913 31108 12534 270 5.2 7 7 32.2 7620 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.46592E7 32.2 20.0 48 97800 1032 1323 448 686 583 231 80853 37574 27377 11078 300 4.1 7 7 32.2 7620 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.46628E7 31.7 17.8 44 97800 830 1323 437 520 446 241 59260 32131 27618 10308 280 5.2 6 6 32.2 7620 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.46664E7 30.6 17.8 46 97800 591 1323 436 306 280 181 34087 18377 20264 6913 270 5.7 7 7 32.2 7620 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.467E7 29.4 18.3 51 97800 333 1323 421 146 244 85 16173 7891 9451 3035 270 3.6 5 5 32.2 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.46736E7 26.7 18.3 60 97800 80 1091 406 35 106 24 3762 0 2588 704 270 3.6 5 5 32.2 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.46772E7 25.6 18.9 67 97900 0 0 401 0 0 0 0 0 0 0 230 7.7 5 5 32.2 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.46808E7 23.3 18.9 76 97900 0 0 389 0 0 0 0 0 0 0 240 5.2 5 5 24.1 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.46844E7 21.7 19.4 87 97900 0 0 367 0 0 0 0 0 0 0 290 2.6 3 1 19.3 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.4688E7 21.1 19.4 90 97900 0 0 364 0 0 0 0 0 0 0 270 4.1 3 1 19.3 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.46916E7 20.6 19.4 93 97900 0 0 361 0 0 0 0 0 0 0 260 4.6 3 1 19.3 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.46952E7 20.6 19.4 93 98000 0 0 370 0 0 0 0 0 0 0 260 4.1 4 3 19.3 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.46988E7 20.6 19.4 93 97900 0 0 370 0 0 0 0 0 0 0 270 4.1 4 3 19.3 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.47024E7 19.4 18.9 97 97900 0 0 366 0 0 0 0 0 0 0 250 3.1 5 4 16.1 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.4706E7 19.4 18.9 97 97900 0 0 360 0 0 0 0 0 0 0 230 3.1 4 2 12.9 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.47096E7 19.4 19.4 100 98000 31 672 367 11 3 11 0 0 0 0 270 5.2 8 4 9.7 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.47132E7 20.0 19.4 97 98000 253 1323 380 87 42 79 9423 891 8591 2528 280 4.6 9 7 9.7 3660 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.47168E7 21.7 19.4 87 98100 514 1323 381 267 319 143 29773 17741 16019 5461 270 5.7 7 5 12.9 7620 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.47204E7 25.0 20.0 74 98100 760 1323 389 470 553 151 54825 31882 17693 6926 280 4.6 3 2 19.3 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.4724E7 26.7 21.1 72 98000 975 1323 403 648 571 226 75785 36250 26577 10669 300 5.2 4 3 19.3 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.47276E7 28.9 21.7 65 98000 1143 1323 438 610 283 365 70392 20820 42409 16053 250 5.7 8 8 22.5 820 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.47312E7 28.9 20.0 59 98000 1253 1323 436 751 383 387 87779 28662 45551 17198 290 5.2 8 8 24.1 880 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.47348E7 30.6 20.6 55 98000 1298 1323 440 875 583 301 104837 38183 36295 14396 290 6.7 7 7 24.1 1010 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.47384E7 30.0 19.4 53 97900 1274 1323 430 909 577 352 107394 41497 41868 16145 280 6.2 8 6 32.2 1070 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.4742E7 31.7 18.9 47 97900 1184 1323 435 767 559 267 91473 37216 32033 12843 300 6.7 7 5 32.2 1070 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.47456E7 31.7 18.3 45 97800 1032 1323 427 693 572 246 81425 38896 29068 11642 280 5.7 7 3 32.2 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.47492E7 31.1 18.9 48 97700 830 1323 425 517 513 196 59844 33200 22803 8858 300 6.2 6 3 32.2 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.47528E7 30.6 18.9 50 97800 592 1323 418 362 504 137 41214 28249 15665 5688 280 5.2 8 2 32.2 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.47564E7 28.9 18.9 55 97900 334 1323 428 100 52 87 11053 1688 9653 3089 280 5.2 10 7 32.2 1220 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.476E7 21.7 19.4 87 97900 81 1091 384 27 15 26 2882 0 2785 741 360 3.6 10 6 32.2 1070 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.47636E7 21.7 18.3 81 97900 0 0 374 0 0 0 0 0 0 0 280 3.1 10 3 32.2 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.47672E7 20.6 18.9 90 98000 0 0 354 0 0 0 0 0 0 0 280 3.1 8 0 24.1 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.47708E7 20.6 18.9 90 98000 0 0 361 0 0 0 0 0 0 0 310 4.1 5 1 19.3 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.47744E7 20.6 18.9 90 98000 0 0 372 0 0 0 0 0 0 0 300 4.1 8 4 16.1 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.4778E7 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 35 0.0000 0 88 0.000 0.0 1.0 +1.47816E7 20.6 18.9 90 97900 0 0 372 0 0 0 0 0 0 0 300 3.6 8 4 16.1 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.47852E7 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 34 0.0000 0 88 0.000 0.0 1.0 +1.47888E7 20.0 18.3 90 98000 0 0 368 0 0 0 0 0 0 0 300 3.1 8 4 16.1 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.47924E7 19.4 18.3 93 98000 0 0 354 0 0 0 0 0 0 0 290 3.6 2 1 16.1 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.4796E7 19.4 18.3 93 98000 30 672 347 14 1 14 0 0 0 0 290 3.6 0 0 16.1 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.47996E7 21.1 18.3 84 98100 252 1322 362 83 104 63 9169 1593 6984 2185 310 4.1 2 1 19.3 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.48032E7 23.9 19.4 76 98100 513 1322 383 255 275 148 28349 15592 16530 5583 330 5.2 3 2 19.3 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.48068E7 26.1 20.0 69 98200 759 1322 399 451 376 234 50792 26310 26501 9602 310 4.1 4 3 19.3 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.48104E7 27.8 20.0 63 98200 974 1322 408 644 449 312 73499 33597 35834 13511 310 6.7 6 3 24.1 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.4814E7 28.9 19.4 57 98200 1142 1322 409 767 468 361 88808 35593 42081 15931 330 6.2 5 2 24.1 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.48176E7 30.0 18.9 51 98200 1253 1322 419 796 358 456 91943 29474 53062 19155 320 5.2 4 3 32.2 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.48212E7 30.0 18.9 51 98100 1298 1322 419 951 557 403 111597 42541 47628 17877 350 5.2 3 3 24.1 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.48248E7 31.7 19.4 48 98100 1274 1322 429 836 473 380 98186 35189 44941 17062 340 4.1 3 3 24.1 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.48284E7 32.2 18.9 45 98100 1184 1322 438 778 439 384 90201 34128 44829 16796 330 6.2 5 5 24.1 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.4832E7 31.7 18.3 45 98000 1033 1322 423 639 455 283 74268 32777 33091 12949 330 7.2 2 2 24.1 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.48356E7 31.7 18.3 45 98000 831 1322 417 513 487 207 59168 32558 23999 9239 330 6.2 1 1 32.2 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.48392E7 30.6 17.8 46 98000 593 1322 411 313 371 147 35479 21942 16737 5999 330 5.2 1 1 32.2 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.48428E7 30.0 18.3 50 98000 335 1322 401 138 184 91 15211 6357 10070 3188 320 3.1 1 0 32.2 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.48464E7 28.9 17.8 51 98000 82 1091 394 29 6 28 3084 0 2988 773 320 1.5 3 0 24.1 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.485E7 26.7 18.3 60 98100 0 0 383 0 0 0 0 0 0 0 300 1.5 3 0 24.1 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.48536E7 25.6 18.3 64 98200 0 0 378 0 0 0 0 0 0 0 330 2.6 2 0 24.1 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.48572E7 23.3 19.4 79 98200 0 0 368 0 0 0 0 0 0 0 290 2.6 1 0 24.1 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.48608E7 25.0 18.9 69 98200 0 0 375 0 0 0 0 0 0 0 320 2.1 0 0 19.3 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.48644E7 23.9 18.9 74 98100 0 0 370 0 0 0 0 0 0 0 310 1.5 0 0 19.3 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.4868E7 22.2 18.9 82 98100 0 0 362 0 0 0 0 0 0 0 340 2.1 0 0 16.1 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.48716E7 22.2 18.9 82 98100 0 0 362 0 0 0 0 0 0 0 270 1.5 0 0 12.9 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.48752E7 21.1 18.9 87 98100 0 0 356 0 0 0 0 0 0 0 230 1.5 0 0 11.3 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.48788E7 20.0 18.9 93 98200 0 0 358 0 0 0 0 0 0 0 260 2.1 2 1 11.3 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.48824E7 20.6 18.9 90 98200 30 672 369 10 2 9 0 0 0 0 290 2.1 8 3 11.3 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.4886E7 22.8 19.4 82 98200 251 1322 387 94 93 77 10196 1873 8385 2481 300 1.5 10 5 11.3 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.48896E7 26.1 19.4 67 98300 512 1322 404 212 92 177 23216 5800 19483 6230 200 2.1 10 5 11.3 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.48932E7 28.3 18.9 57 98300 758 1322 419 441 376 224 49892 26234 25480 9316 250 1.5 9 6 12.9 7620 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.48968E7 29.4 18.9 53 98300 973 1322 431 509 267 312 58152 20322 35870 13506 230 2.1 10 7 12.9 7620 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.49004E7 30.6 20.0 53 98300 1142 1322 434 482 116 381 55532 8972 44199 16517 270 3.1 10 6 16.1 7620 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.4904E7 31.7 20.0 50 98300 1252 1322 445 632 311 337 74665 21876 40078 15567 320 4.1 9 7 16.1 7620 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.49076E7 32.2 19.4 47 98200 1298 1322 442 715 273 446 83197 21718 52281 19132 300 2.6 9 6 16.1 7620 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.49112E7 31.7 19.4 48 98200 1274 1322 452 393 169 229 47982 10309 28117 11480 270 3.1 10 8 16.1 7620 9 999999999 37 0.0000 0 88 0.000 2.3 1.0 +1.49148E7 28.9 18.3 53 98200 1184 1322 443 367 90 286 43568 6212 34160 13556 40 1.5 9 9 19.3 1220 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.49184E7 30.6 20.0 53 98100 1033 1322 439 532 283 310 61289 20675 35939 13830 90 1.5 8 7 19.3 9140 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.4922E7 32.2 21.1 52 98000 832 1322 437 404 291 221 46223 19047 25423 9705 160 4.1 5 4 24.1 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.49256E7 30.6 20.0 53 98000 594 1322 423 325 432 131 37108 23181 15021 5506 170 5.2 4 3 24.1 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.49292E7 29.4 20.0 57 98100 335 1322 423 143 64 127 15302 2867 13656 3857 150 4.6 7 5 24.1 9140 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.49328E7 27.2 21.1 69 98200 82 1091 428 12 2 12 1366 0 1368 431 180 7.2 10 8 19.3 910 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.49364E7 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 39 0.0000 0 88 0.000 0.0 1.0 +1.494E7 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 39 0.0000 0 88 0.000 0.0 1.0 +1.49436E7 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 39 0.0000 0 88 0.000 0.0 1.0 +1.49472E7 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 39 0.0000 0 88 0.000 0.0 1.0 +1.49508E7 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 40 0.0000 0 88 0.000 0.0 1.0 +1.49544E7 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 40 0.0000 0 88 0.000 0.0 1.0 +1.4958E7 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 40 0.0000 0 88 0.000 0.0 1.0 +1.49616E7 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 40 0.0000 0 88 0.000 0.0 1.0 +1.49652E7 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 40 0.0000 0 88 0.000 0.0 1.0 +1.49688E7 21.1 20.6 97 98300 29 672 387 8 0 8 0 0 0 0 270 4.1 8 7 11.3 7620 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.49724E7 21.7 20.6 93 98400 250 1322 417 33 3 32 3839 0 3729 1277 270 4.6 10 10 11.3 7620 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.4976E7 23.9 21.1 85 98400 511 1322 418 113 22 104 12898 988 11916 4308 270 5.7 9 9 11.3 7620 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.49796E7 25.6 22.2 82 98400 757 1322 420 279 53 249 31170 3678 27981 9987 260 4.1 8 8 11.3 7620 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.49832E7 27.8 22.2 72 98400 972 1322 417 530 364 262 61167 24103 30417 11930 270 4.6 5 5 16.1 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.49868E7 30.0 22.2 63 98400 1141 1322 430 636 255 415 72584 19857 47704 17443 330 4.1 5 5 16.1 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.49904E7 31.7 21.7 55 98400 1252 1322 439 856 564 321 101315 37643 38243 15008 310 5.2 5 5 16.1 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.4994E7 32.2 21.1 52 98300 1297 1322 441 986 571 424 114976 43149 49804 18505 300 4.1 5 5 19.3 2000 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.49976E7 32.8 20.0 47 98300 1274 1322 443 930 566 383 109098 41854 45244 17158 310 5.2 5 5 19.3 2000 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.50012E7 30.6 19.4 52 98200 1184 1322 445 421 73 356 49084 5437 41786 15947 10 7.7 8 8 24.1 1520 9 999999999 43 0.0000 0 88 0.000 0.3 1.0 +1.50048E7 30.6 21.1 57 98200 1034 1322 425 679 523 270 78994 35195 31600 12510 320 3.1 7 3 24.1 2000 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +1.50084E7 31.7 20.6 52 98200 832 1322 430 516 378 278 57994 27904 31434 11373 350 6.2 7 3 24.1 2000 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +1.5012E7 29.4 19.4 55 98200 594 1322 423 295 271 173 32959 16900 19424 6737 350 5.2 7 5 48.3 9140 9 999999999 45 0.0000 0 88 0.000 0.0 1.0 +1.50156E7 28.3 17.8 53 98200 336 1322 414 123 99 98 13489 3719 10792 3354 330 5.2 5 5 48.3 2000 9 999999999 45 0.0000 0 88 0.000 0.0 1.0 +1.50192E7 26.1 19.4 67 98200 83 1113 398 23 14 22 2497 0 2395 680 330 2.1 4 3 40.2 2000 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +1.50228E7 24.4 20.0 76 98300 0 0 393 0 0 0 0 0 0 0 260 2.1 5 4 32.2 2000 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.50264E7 23.9 20.0 79 98400 0 0 390 0 0 0 0 0 0 0 270 1.5 5 4 32.2 2000 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.503E7 22.2 20.6 90 98400 0 0 376 0 0 0 0 0 0 0 270 2.1 4 2 24.1 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.50336E7 22.2 20.6 90 98400 0 0 370 0 0 0 0 0 0 0 290 3.6 4 1 24.1 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.50372E7 21.7 20.0 90 98300 0 0 367 0 0 0 0 0 0 0 310 4.1 4 1 24.1 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.50408E7 21.7 20.0 90 98300 0 0 372 0 0 0 0 0 0 0 310 2.6 6 2 24.1 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.50444E7 22.2 20.0 87 98300 0 0 379 0 0 0 0 0 0 0 320 5.2 6 3 24.1 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.5048E7 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 38 0.0000 0 88 0.000 0.0 1.0 +1.50516E7 21.1 19.4 90 98300 0 0 369 0 0 0 0 0 0 0 300 4.1 7 2 19.3 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.50552E7 21.7 19.4 87 98300 29 672 375 11 0 11 0 0 0 0 340 4.1 8 3 19.3 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.50588E7 22.8 19.4 82 98300 249 1322 381 80 48 71 8730 828 7777 2351 340 3.6 8 3 19.3 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.50624E7 24.4 20.0 76 98300 510 1322 419 133 8 130 14924 416 14651 5089 340 3.1 9 9 19.3 9140 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.5066E7 26.7 20.6 69 98300 756 1322 424 321 71 280 35581 5406 31227 10716 350 3.6 9 8 19.3 9140 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.50696E7 28.3 20.6 63 98300 971 1322 415 602 395 311 68654 29244 35692 13465 0 0.0 5 4 16.1 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.50732E7 29.4 21.1 61 98300 1140 1322 414 701 354 395 80420 27396 45634 16904 270 2.1 2 2 16.1 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.50768E7 31.1 21.1 55 98300 1251 1322 418 896 597 329 105916 40754 39148 15289 340 2.6 1 1 16.1 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.50804E7 32.2 20.0 48 98300 1297 1322 428 930 582 358 110017 41434 42640 16428 270 5.2 2 2 19.3 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.5084E7 32.2 17.8 42 98200 1274 1322 433 945 519 444 109819 42451 51976 18954 300 5.7 4 4 24.1 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.50876E7 32.8 17.2 39 98200 1185 1322 432 722 389 372 84066 30473 43608 16443 330 5.2 3 3 40.2 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.50912E7 33.3 17.2 38 98100 1034 1322 431 687 494 300 79583 37039 34966 13519 290 5.7 2 2 40.2 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.50948E7 32.8 17.8 41 98000 833 1322 429 512 409 254 58144 30152 29010 10720 330 3.6 3 2 32.2 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.50984E7 32.2 17.8 42 98000 595 1322 412 322 342 169 36108 21663 19043 6637 280 4.1 0 0 32.2 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.5102E7 30.6 17.8 46 98000 337 1322 403 133 146 96 14615 5397 10592 3315 300 3.6 0 0 32.2 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.51056E7 28.3 16.7 49 98100 83 1113 407 22 1 22 2397 0 2403 683 300 3.6 4 3 24.1 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.51092E7 27.8 18.9 58 98100 0 0 413 0 0 0 0 0 0 0 290 2.1 5 5 24.1 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.51128E7 26.1 18.3 62 98100 0 0 393 0 0 0 0 0 0 0 220 5.7 2 2 24.1 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.51164E7 24.4 19.4 74 98100 0 0 389 0 0 0 0 0 0 0 250 3.6 3 3 24.1 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.512E7 24.4 18.9 71 98100 0 0 385 0 0 0 0 0 0 0 260 4.1 2 2 24.1 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.51236E7 23.9 18.3 71 98100 0 0 381 0 0 0 0 0 0 0 310 5.2 2 2 24.1 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.51272E7 22.2 18.9 82 98000 0 0 369 0 0 0 0 0 0 0 290 3.6 3 1 24.1 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.51308E7 22.2 18.9 82 98000 0 0 369 0 0 0 0 0 0 0 260 2.1 3 1 24.1 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.51344E7 21.7 19.4 87 98000 0 0 367 0 0 0 0 0 0 0 0 0.0 2 1 24.1 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.5138E7 21.7 19.4 87 98000 0 0 375 0 0 0 0 0 0 0 250 1.5 7 3 24.1 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.51416E7 21.7 19.4 87 98000 28 650 381 14 5 14 0 0 0 0 250 3.6 9 5 24.1 7620 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.51452E7 21.7 19.4 87 98000 248 1322 384 90 53 80 9718 1119 8673 2517 270 3.6 9 6 24.1 7620 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.51488E7 23.3 19.4 79 98100 508 1322 389 257 185 185 28018 11988 20275 6357 270 5.2 5 5 24.1 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.51524E7 26.7 20.0 67 98100 755 1322 408 479 512 186 54916 32199 21431 8130 210 2.6 5 5 24.1 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.5156E7 29.4 20.0 57 98100 970 1322 417 622 563 207 73292 35307 24520 9935 270 3.6 3 3 24.1 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.51596E7 30.0 21.1 59 98000 1140 1322 417 871 793 186 105922 44976 22735 9462 270 5.7 2 2 24.1 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.51632E7 31.1 20.6 53 98000 1251 1322 423 928 771 196 114157 43875 24238 10026 240 4.1 2 2 24.1 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.51668E7 32.2 20.0 48 98000 1297 1322 432 977 725 263 118335 45620 32047 12918 270 4.1 3 3 24.1 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.51704E7 32.2 19.4 47 97900 1274 1322 435 871 629 263 105243 40261 31969 12876 260 4.1 4 4 24.1 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.5174E7 31.1 20.6 53 97800 1185 1322 434 794 576 277 94289 37721 33095 13225 290 2.6 5 5 24.1 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.51776E7 33.3 17.2 38 97700 1034 1322 431 728 683 193 87280 43217 23255 9580 300 6.2 5 2 24.1 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.51812E7 32.8 17.8 41 97700 833 1322 433 533 505 215 61349 34550 24878 9523 290 5.7 7 3 32.2 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.51848E7 30.6 19.4 52 97700 596 1322 433 314 223 214 34481 15641 23630 7697 280 4.1 7 6 24.1 9140 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.51884E7 29.4 19.4 55 97700 337 1322 438 140 163 98 15336 5859 10780 3362 300 4.6 8 8 24.1 3350 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.5192E7 26.7 20.0 67 97800 84 1113 412 30 15 28 3193 0 2991 788 300 2.6 7 6 24.1 9140 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.51956E7 26.7 20.0 67 97800 0 0 405 0 0 0 0 0 0 0 240 2.1 4 4 24.1 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.51992E7 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 39 0.0000 0 88 0.000 0.0 1.0 +1.52028E7 25.6 21.1 77 97800 0 0 404 0 0 0 0 0 0 0 240 3.6 10 5 19.3 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.52064E7 24.4 20.6 79 97800 0 0 397 0 0 0 0 0 0 0 230 2.6 10 5 19.3 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.521E7 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 41 0.0000 0 88 0.000 0.0 1.0 +1.52136E7 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 41 0.0000 0 88 0.000 0.0 1.0 +1.52172E7 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 42 0.0000 0 88 0.000 0.0 1.0 +1.52208E7 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 42 0.0000 0 88 0.000 0.0 1.0 +1.52244E7 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 43 0.0000 0 88 0.000 0.0 1.0 +1.5228E7 23.3 21.1 87 97800 28 650 426 5 0 5 0 0 0 0 250 3.6 10 10 14.5 2440 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.52316E7 23.3 21.1 87 97800 246 1322 426 35 2 35 4035 0 4043 1374 280 3.1 10 10 12.9 2440 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +1.52352E7 24.4 21.1 82 97900 507 1322 433 139 2 139 15484 105 15555 5321 250 2.1 10 10 12.9 2440 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +1.52388E7 26.7 21.1 72 97900 754 1322 434 229 66 191 26161 4110 21932 8287 270 2.6 9 9 12.9 2440 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +1.52424E7 25.6 20.6 74 97900 969 1322 439 191 28 170 22833 1615 20420 8442 270 4.1 10 10 11.3 2440 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +1.5246E7 27.2 21.7 72 97900 1139 1322 450 270 10 261 31972 634 31091 12519 250 4.1 10 10 11.3 2440 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +1.52496E7 28.3 21.7 67 97900 1250 1322 435 867 502 391 101035 36688 45888 17312 270 5.2 9 8 16.1 2440 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +1.52532E7 30.0 21.7 61 97800 1297 1322 445 617 186 434 71762 14072 50851 18792 270 6.2 9 8 19.3 3660 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +1.52568E7 30.6 21.7 59 97800 1274 1322 432 841 562 298 100408 36103 35806 14228 260 4.1 5 5 19.3 2000 9 999999999 45 0.0000 0 88 0.000 0.0 1.0 +1.52604E7 31.1 21.1 55 97700 1185 1322 431 783 552 288 92656 36374 34293 13633 270 6.2 8 4 19.3 2000 9 999999999 45 0.0000 0 88 0.000 0.0 1.0 +1.5264E7 28.9 21.1 63 97700 1035 1322 431 700 523 291 80977 36376 33872 13230 200 5.2 9 7 19.3 1370 9 999999999 45 0.0000 0 88 0.000 1.8 1.0 +1.52676E7 22.8 21.1 90 97800 834 1322 424 148 5 145 17513 276 17233 6962 360 3.1 10 10 9.7 3660 9 999999999 45 0.0000 0 88 0.000 0.3 1.0 +1.52712E7 23.3 21.1 87 97800 596 1322 395 327 383 155 36810 21784 17530 6256 270 2.6 8 6 16.1 7620 9 999999999 45 0.0000 0 88 0.000 0.0 1.0 +1.52748E7 22.8 21.1 90 97800 338 1322 397 93 67 75 10398 1760 8415 2800 280 2.6 8 7 24.1 7620 9 999999999 45 0.0000 0 88 0.000 0.0 1.0 +1.52784E7 22.8 21.1 90 97800 84 1113 392 20 11 19 2198 0 2093 621 280 2.6 8 6 24.1 7620 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +1.5282E7 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 44 0.0000 0 88 0.000 0.0 1.0 +1.52856E7 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 43 0.0000 0 88 0.000 0.0 1.0 +1.52892E7 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 43 0.0000 0 88 0.000 0.0 1.0 +1.52928E7 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 42 0.0000 0 88 0.000 0.3 1.0 +1.52964E7 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 42 0.0000 0 88 0.000 0.0 1.0 +1.53E7 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 41 0.0000 0 88 0.000 0.0 1.0 +1.53036E7 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 40 0.0000 0 88 0.000 0.0 1.0 +1.53072E7 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 40 0.0000 0 88 0.000 0.0 1.0 +1.53108E7 20.0 19.4 97 97900 0 0 367 0 0 0 0 0 0 0 250 2.6 7 3 16.1 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.53144E7 20.0 19.4 97 97900 27 650 358 9 1 8 0 0 0 0 260 3.1 3 1 24.1 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.5318E7 21.7 20.0 90 98000 245 1322 360 95 161 65 10421 2155 7156 2205 240 2.6 1 0 24.1 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.53216E7 23.9 20.6 82 98000 506 1322 372 275 411 118 31055 19935 13381 4726 260 4.1 0 0 16.1 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.53252E7 25.6 21.7 79 98000 753 1322 382 488 563 165 56353 32433 19144 7404 260 3.6 0 0 16.1 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.53288E7 27.2 22.2 74 98100 968 1322 391 676 645 201 79617 38178 23797 9695 290 3.6 0 0 16.1 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.53324E7 28.9 21.7 65 98100 1138 1322 399 831 700 226 99489 41933 27209 11145 240 3.6 0 0 12.9 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.5336E7 30.6 21.7 59 98100 1250 1322 416 899 682 252 108376 41291 30560 12392 250 5.7 1 1 12.9 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.53396E7 32.2 21.1 52 98100 1296 1322 437 962 598 374 113275 42593 44346 16957 330 3.1 4 4 11.3 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.53432E7 32.2 19.4 47 98000 1274 1322 435 934 596 358 110219 43165 42534 16350 250 3.6 4 4 12.9 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.53468E7 32.2 19.4 47 98000 1185 1322 432 824 618 269 98203 40882 32251 12925 250 5.2 3 3 12.9 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.53504E7 32.8 19.4 45 97900 1035 1322 435 730 565 287 84702 40217 33504 13099 240 4.1 3 3 12.9 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.5354E7 32.2 19.4 47 97900 834 1322 432 438 310 242 49871 21798 27710 10381 250 2.6 3 3 12.9 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.53576E7 31.7 18.3 45 97800 597 1322 417 343 463 135 39167 26107 15481 5651 200 5.2 1 1 12.9 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.53612E7 30.6 18.9 50 97900 338 1322 405 149 259 82 16581 8104 9158 2989 230 3.6 0 0 12.9 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.53648E7 28.3 17.8 53 97900 84 1112 391 29 19 27 3106 0 2902 778 250 2.6 0 0 9.7 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.53684E7 27.2 18.3 58 97900 0 0 386 0 0 0 0 0 0 0 230 2.6 0 0 11.3 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.5372E7 26.1 18.9 65 98000 0 0 381 0 0 0 0 0 0 0 230 2.6 0 0 11.3 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.53756E7 25.6 18.9 67 98000 0 0 386 0 0 0 0 0 0 0 240 2.6 1 1 11.3 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.53792E7 24.4 18.9 71 98000 0 0 372 0 0 0 0 0 0 0 240 3.1 0 0 11.3 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.53828E7 23.9 18.9 74 97900 0 0 370 0 0 0 0 0 0 0 230 3.6 0 0 11.3 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.53864E7 22.8 19.4 82 97900 0 0 365 0 0 0 0 0 0 0 240 2.1 0 0 11.3 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.539E7 22.8 18.9 79 97900 0 0 365 0 0 0 0 0 0 0 250 3.6 0 0 11.3 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.53936E7 23.3 18.3 74 97900 0 0 366 0 0 0 0 0 0 0 240 4.6 0 0 11.3 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.53972E7 23.3 18.9 76 98000 0 0 367 0 0 0 0 0 0 0 260 4.6 0 0 11.3 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.54008E7 22.2 18.9 82 98000 26 628 362 12 0 12 0 0 0 0 250 4.1 0 0 16.1 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.54044E7 22.8 18.3 76 98100 243 1322 364 85 86 69 9289 1456 7568 2285 270 5.2 0 0 19.3 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.5408E7 25.0 20.0 74 98100 504 1322 377 256 300 141 28503 16294 15771 5358 270 6.2 0 0 16.1 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.54116E7 26.7 20.6 69 98100 752 1322 386 463 450 206 52582 29332 23519 8743 270 6.2 0 0 16.1 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.54152E7 28.9 21.7 65 98100 967 1322 399 659 550 255 76214 36400 29663 11669 260 4.1 0 0 24.1 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.54188E7 30.6 21.7 59 98100 1137 1322 422 822 605 300 96269 40689 35357 13932 310 5.2 2 2 24.1 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.54224E7 31.1 21.1 55 98100 1249 1322 431 852 453 422 98750 34745 49267 18219 270 6.2 4 4 19.3 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.5426E7 32.2 21.1 52 98000 1296 1322 437 702 254 453 81426 19840 52938 19320 270 5.2 4 4 19.3 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.54296E7 31.1 20.6 53 98000 1274 1322 430 660 250 419 76836 19098 49134 18251 250 4.1 4 4 16.1 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.54332E7 30.6 20.0 53 98000 1185 1322 456 462 15 448 52870 1238 51646 18541 230 11.3 9 9 16.1 1520 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.54368E7 26.1 19.4 67 97900 1035 1322 419 350 117 258 40954 7957 30365 12096 290 6.2 8 8 16.1 1520 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.54404E7 27.8 20.6 65 97800 835 1322 415 495 297 308 55199 23106 34564 12141 240 3.6 7 5 16.1 7620 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +1.5444E7 30.6 20.6 55 97800 597 1322 414 316 302 180 35168 18799 20134 6940 230 4.1 2 1 19.3 2000 9 999999999 46 0.0000 0 88 0.000 0.0 1.0 +1.54476E7 30.0 21.1 59 97800 339 1322 404 136 161 95 14916 5314 10462 3305 240 4.6 0 0 19.3 2000 9 999999999 47 0.0000 0 88 0.000 0.0 1.0 +1.54512E7 27.8 20.6 65 97900 85 1112 392 28 5 28 2982 0 2992 794 230 3.6 0 0 16.1 2000 9 999999999 46 0.0000 0 88 0.000 0.0 1.0 +1.54548E7 26.1 20.0 69 97900 0 0 382 0 0 0 0 0 0 0 230 3.1 0 0 16.1 2000 9 999999999 45 0.0000 0 88 0.000 0.0 1.0 +1.54584E7 26.1 19.4 67 98000 0 0 382 0 0 0 0 0 0 0 250 3.6 0 0 16.1 2000 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +1.5462E7 26.1 18.3 62 98000 0 0 380 0 0 0 0 0 0 0 250 4.6 0 0 19.3 2000 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.54656E7 25.6 18.9 67 98000 0 0 379 0 0 0 0 0 0 0 250 4.1 0 0 19.3 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.54692E7 24.4 18.9 71 98000 0 0 372 0 0 0 0 0 0 0 250 5.2 0 0 19.3 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.54728E7 23.3 19.4 79 97900 0 0 368 0 0 0 0 0 0 0 240 4.1 0 0 19.3 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.54764E7 23.3 19.4 79 97800 0 0 368 0 0 0 0 0 0 0 250 4.1 0 0 19.3 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.548E7 22.8 20.0 84 97800 0 0 366 0 0 0 0 0 0 0 230 4.1 1 0 19.3 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.54836E7 22.2 20.0 87 97800 0 0 379 0 0 0 0 0 0 0 220 3.1 7 3 19.3 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.54872E7 22.2 20.6 90 98000 26 628 379 12 3 12 0 0 0 0 250 5.7 8 3 19.3 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.54908E7 23.3 21.1 87 98000 242 1322 389 87 97 69 9472 1305 7541 2279 250 5.2 8 4 16.1 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.54944E7 23.3 21.7 90 98100 503 1322 386 283 322 160 31108 18148 17675 5806 290 5.2 7 3 16.1 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.5498E7 26.1 21.7 77 98100 750 1322 401 404 368 195 46015 22860 22325 8395 270 6.2 7 3 16.1 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.55016E7 28.9 22.2 67 98100 966 1322 413 641 613 191 75772 35587 22694 9293 270 5.2 6 2 19.3 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.55052E7 29.4 21.7 63 98100 1136 1322 415 782 582 280 92069 37996 33169 13218 230 5.7 6 2 24.1 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.55088E7 30.6 21.1 57 98100 1249 1322 425 900 633 301 107092 41639 36045 14279 270 6.7 5 3 24.1 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.55124E7 29.4 18.9 53 98100 1296 1322 459 231 3 229 28299 184 28213 11512 310 6.2 10 10 19.3 3660 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.5516E7 28.9 19.4 57 98000 1274 1322 435 661 208 460 76486 16944 53626 19384 300 5.2 9 8 24.1 3660 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.55196E7 30.6 19.4 52 98000 1185 1322 433 799 448 397 92380 35096 46224 17185 290 6.2 7 6 24.1 8530 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.55232E7 31.1 20.0 52 97900 1036 1322 442 740 494 352 84434 38309 40431 15096 270 6.2 7 7 24.1 8530 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.55268E7 31.7 20.6 52 97900 835 1322 434 501 450 216 57501 29403 24924 9568 270 5.7 5 4 32.2 2000 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.55304E7 30.6 19.4 52 97900 597 1322 433 286 206 193 31692 13625 21499 7259 260 5.2 7 6 32.2 10670 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +1.5534E7 30.6 20.0 53 97900 339 1322 434 87 37 77 9723 1052 8636 2860 250 5.7 7 6 32.2 9140 9 999999999 45 0.0000 0 88 0.000 0.0 1.0 +1.55376E7 27.8 18.3 56 98000 85 1112 416 27 9 26 2902 0 2803 764 230 3.6 7 6 32.2 9140 9 999999999 45 0.0000 0 88 0.000 0.0 1.0 +1.55412E7 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 44 0.0000 0 88 0.000 0.0 1.0 +1.55448E7 25.0 20.6 76 98100 0 0 400 0 0 0 0 0 0 0 210 4.1 5 5 32.2 2000 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +1.55484E7 23.9 20.0 79 98100 0 0 393 0 0 0 0 0 0 0 240 4.1 5 5 32.2 2000 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +1.5552E7 23.3 20.6 84 98100 0 0 391 0 0 0 0 0 0 0 250 3.6 5 5 32.2 2000 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.55556E7 22.8 20.0 84 98100 0 0 382 0 0 0 0 0 0 0 240 2.6 3 3 24.1 2000 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.55592E7 22.2 20.0 87 98000 0 0 375 0 0 0 0 0 0 0 240 3.1 2 2 24.1 2000 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.55628E7 21.7 20.6 93 98000 0 0 368 0 0 0 0 0 0 0 250 3.1 1 1 24.1 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.55664E7 21.7 20.6 93 98000 0 0 373 0 0 0 0 0 0 0 230 2.6 6 2 24.1 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.557E7 21.1 20.0 93 98000 0 0 373 0 0 0 0 0 0 0 300 3.1 4 3 24.1 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.55736E7 21.1 20.0 93 98100 25 606 373 11 0 11 0 0 0 0 230 2.1 8 3 24.1 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.55772E7 22.2 20.6 90 98200 240 1321 379 87 25 82 9335 496 8835 2509 230 2.1 7 3 24.1 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.55808E7 23.9 20.6 82 98200 501 1321 372 247 237 157 27220 13533 17387 5728 270 2.1 2 0 24.1 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.55844E7 27.2 20.6 67 98200 749 1321 389 444 382 227 50007 26118 25709 9337 260 2.6 1 0 24.1 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.5588E7 28.9 21.1 63 98200 965 1321 398 641 492 280 73612 34408 32350 12482 240 2.6 0 0 24.1 2000 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.55916E7 30.0 21.7 61 98200 1136 1321 405 802 559 320 93432 38724 37522 14608 210 4.6 0 0 24.1 2000 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +1.55952E7 30.6 21.1 57 98200 1248 1321 425 782 399 403 90954 29929 47208 17665 260 5.2 3 3 32.2 2000 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +1.55988E7 31.1 20.6 53 98200 1295 1321 434 866 459 414 101212 34592 48736 18204 240 4.6 5 5 32.2 2000 9 999999999 45 0.0000 0 88 0.000 0.0 1.0 +1.56024E7 32.8 19.4 45 98200 1274 1321 442 777 312 475 89679 25831 55238 19769 220 6.2 5 5 40.2 2000 9 999999999 46 0.0000 0 88 0.000 0.0 1.0 +1.5606E7 33.3 18.3 41 98000 1185 1321 443 688 330 391 79731 26063 45627 17014 250 7.7 5 5 40.2 2000 9 999999999 46 0.0000 0 88 0.000 0.0 1.0 +1.56096E7 24.4 17.2 64 98200 1036 1321 428 243 2 241 28647 137 28570 11476 300 15.9 10 10 32.2 760 9 999999999 47 0.0000 0 88 0.000 0.0 1.0 +1.56132E7 25.0 20.0 74 98100 835 1321 423 301 41 275 33905 3036 31163 11327 190 3.6 9 9 32.2 3050 9 999999999 48 0.0000 0 88 0.000 0.0 1.0 +1.56168E7 25.0 20.0 74 98100 597 1321 423 171 28 159 19241 1652 17976 6382 220 3.6 10 9 32.2 3050 9 999999999 48 0.0000 0 88 0.000 0.0 1.0 +1.56204E7 25.6 20.6 74 98200 339 1321 418 96 13 93 10556 429 10268 3263 100 2.6 9 8 32.2 9140 9 999999999 49 0.0000 0 88 0.000 0.0 1.0 +1.5624E7 23.3 20.6 84 98200 85 1112 385 26 1 25 2797 0 2698 747 140 4.1 7 3 24.1 2000 9 999999999 48 0.0000 0 88 0.000 0.0 1.0 +1.56276E7 22.8 20.6 87 98200 0 0 382 0 0 0 0 0 0 0 170 3.1 7 3 24.1 2000 9 999999999 48 0.0000 0 88 0.000 0.0 1.0 +1.56312E7 22.6 20.5 87 98200 0 0 381 0 0 0 0 0 0 0 150 3.1 7 3 24.1 2000 9 999999999 47 0.0000 0 88 0.000 0.0 1.0 +1.56348E7 22.5 20.4 93 98200 0 0 381 0 0 0 0 0 0 0 0 3.1 7 3 24.1 2000 9 999999999 47 0.0000 0 88 0.000 0.0 1.0 +1.56384E7 22.3 20.3 93 98200 0 0 376 0 0 0 0 0 0 0 180 3.1 6 2 24.1 2000 9 999999999 46 0.0000 0 88 0.000 0.0 1.0 +1.5642E7 22.2 20.3 90 98200 0 0 382 0 0 0 0 0 0 0 220 3.1 4 4 24.1 2000 9 999999999 46 0.0000 0 88 0.000 0.0 1.0 +1.56456E7 22.0 20.2 90 98100 0 0 374 0 0 0 0 0 0 0 200 3.1 2 2 24.1 2000 9 999999999 45 0.0000 0 88 0.000 0.0 1.0 +1.56492E7 21.9 20.1 90 98100 0 0 368 0 0 0 0 0 0 0 270 3.1 1 1 24.1 2000 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +1.56528E7 21.7 20.0 90 98200 0 0 372 0 0 0 0 0 0 0 240 3.1 2 2 24.1 2000 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +1.56564E7 21.7 20.0 90 98200 0 0 372 0 0 0 0 0 0 0 260 5.2 2 2 24.1 2000 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.566E7 22.2 20.0 87 98200 24 606 382 15 12 14 0 0 0 0 240 3.6 4 4 24.1 2000 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.56636E7 22.2 20.6 90 98200 239 1321 379 104 249 59 11465 2262 6526 2042 230 4.1 4 3 19.3 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.56672E7 24.4 21.1 82 98300 500 1321 375 307 624 70 36072 23054 8249 3083 240 4.1 0 0 19.3 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.56708E7 27.2 22.2 74 98300 748 1321 391 510 733 94 61435 33912 11362 4597 240 4.1 0 0 19.3 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.56744E7 28.3 22.2 70 98300 964 1321 424 418 144 312 47517 10400 35694 13445 250 5.2 8 6 24.1 9140 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.5678E7 30.0 22.2 63 98300 1135 1321 438 474 172 326 55100 11903 38145 14803 280 5.7 8 7 40.2 3660 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.56816E7 30.0 21.7 61 98300 1247 1321 429 978 741 275 117086 46429 33126 13296 280 4.6 5 5 40.2 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.56852E7 31.7 21.7 55 98200 1295 1321 442 793 423 377 93240 29914 44639 17051 260 4.6 6 6 40.2 1160 9 999999999 42 0.0000 0 88 0.000 7.4 1.0 +1.56888E7 27.8 21.4 58 98200 1274 1321 432 444 241 211 54432 13720 26010 10710 240 4.6 8 8 24.1 1520 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.56924E7 29.4 21.1 61 98100 1185 1321 433 639 329 343 74603 23396 40313 15538 280 3.1 8 7 24.1 7620 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.5696E7 26.7 21.7 74 98200 1036 1321 447 242 1 241 28400 63 28444 11477 240 5.2 10 10 24.1 3660 9 999999999 41 0.0000 0 88 0.000 0.3 1.0 +1.56996E7 23.9 21.7 87 98200 835 1321 431 149 4 147 17606 218 17447 7050 240 4.1 10 10 24.1 3660 9 999999999 41 0.0000 0 88 0.000 9.9 1.0 +1.57032E7 23.3 22.2 94 98200 598 1321 428 124 2 123 14209 99 14153 5265 230 4.1 10 10 16.1 1220 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.57068E7 23.9 21.1 85 98200 339 1321 430 89 5 88 9826 154 9754 3146 230 2.1 10 10 16.1 1220 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.57104E7 20.0 18.9 93 98200 85 1112 405 11 1 11 1268 0 1270 404 240 6.2 10 10 11.3 460 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.5714E7 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 40 0.0000 0 88 0.000 0.0 1.0 +1.57176E7 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 40 0.0000 0 88 0.000 0.0 1.0 +1.57212E7 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 39 0.0000 0 88 0.000 0.0 1.0 +1.57248E7 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 39 0.0000 0 88 0.000 0.5 1.0 +1.57284E7 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 38 0.0000 0 88 0.000 0.8 1.0 +1.5732E7 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 38 0.0000 0 88 0.000 0.0 1.0 +1.57356E7 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 38 0.0000 0 88 0.000 0.0 1.0 +1.57392E7 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 37 0.0000 0 88 0.000 0.0 1.0 +1.57428E7 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 37 0.0000 0 88 0.000 0.0 1.0 +1.57464E7 19.4 18.3 93 98300 23 606 390 4 0 4 0 0 0 0 320 1.5 9 9 24.1 3660 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.575E7 20.0 18.3 90 98400 237 1321 404 24 4 24 2848 0 2852 980 230 1.5 10 10 19.3 3660 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.57536E7 22.2 20.0 87 98400 498 1321 379 269 279 163 29552 16502 17996 5840 250 1.5 8 3 19.3 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.57572E7 25.0 20.0 74 98400 746 1321 389 435 408 203 49448 26738 23197 8619 270 2.6 7 2 19.3 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.57608E7 26.1 20.6 72 98400 963 1321 396 663 625 206 78020 38729 24369 9869 250 2.1 6 2 19.3 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.57644E7 27.2 20.6 67 98400 1134 1321 402 807 644 253 95849 41267 30225 12203 260 2.6 6 2 19.3 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.5768E7 28.9 20.6 61 98300 1247 1321 411 889 663 262 106948 41716 31708 12787 310 2.6 5 2 19.3 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.57716E7 30.0 20.6 57 98300 1295 1321 421 918 669 261 111160 41506 31795 12835 290 3.6 4 3 19.3 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.57752E7 28.9 20.0 59 98200 1274 1321 417 936 604 352 110530 43000 41848 16148 270 3.1 5 4 19.3 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.57788E7 30.6 19.4 52 98200 1185 1321 433 682 326 388 79000 25256 45257 16927 270 3.1 6 6 19.3 7620 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.57824E7 31.1 19.4 50 98200 1036 1321 425 700 526 286 81261 37366 33403 13073 310 4.1 7 3 16.1 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.5786E7 30.6 18.3 48 98100 835 1321 421 560 509 237 63959 36046 27219 10241 310 4.1 8 3 16.1 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +1.57896E7 30.6 18.3 48 98100 598 1321 417 379 482 161 42682 29553 18217 6441 310 3.1 9 2 19.3 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +1.57932E7 28.3 16.7 49 98100 339 1321 403 150 184 103 16422 7476 11323 3483 320 3.6 9 2 19.3 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +1.57968E7 25.6 16.1 56 98200 85 1112 388 37 19 35 3885 0 3690 877 290 4.1 9 2 19.3 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +1.58004E7 23.3 16.1 64 98200 0 0 376 0 0 0 0 0 0 0 320 2.6 8 2 19.3 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +1.5804E7 22.8 15.6 64 98300 0 0 376 0 0 0 0 0 0 0 330 2.1 8 3 19.3 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +1.58076E7 22.2 15.6 66 98300 0 0 365 0 0 0 0 0 0 0 340 2.1 4 1 19.3 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +1.58112E7 21.1 16.1 73 98300 0 0 360 0 0 0 0 0 0 0 320 2.1 4 1 19.3 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +1.58148E7 21.1 15.6 71 98200 0 0 353 0 0 0 0 0 0 0 0 0.0 0 0 19.3 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +1.58184E7 19.4 16.1 81 98200 0 0 345 0 0 0 0 0 0 0 0 0.0 0 0 19.3 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +1.5822E7 17.8 16.1 90 98200 0 0 338 0 0 0 0 0 0 0 320 2.1 0 0 19.3 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +1.58256E7 17.8 16.1 90 98200 0 0 338 0 0 0 0 0 0 0 340 2.1 0 0 19.3 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +1.58292E7 17.8 15.6 87 98200 0 0 337 0 0 0 0 0 0 0 0 0.0 1 0 19.3 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +1.58328E7 18.3 15.6 84 98300 23 584 354 10 1 10 0 0 0 0 340 2.1 6 3 16.1 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +1.58364E7 20.6 16.1 76 98300 235 1321 362 96 169 66 10517 2819 7257 2186 40 2.1 9 2 12.9 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +1.584E7 24.4 17.8 66 98300 497 1321 383 279 390 131 31267 21200 14745 5053 50 2.1 9 2 12.9 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.58436E7 25.6 18.3 64 98300 745 1321 390 499 476 230 56238 34058 26064 9389 70 2.6 9 2 12.9 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.58472E7 25.6 19.4 69 98400 962 1321 396 615 549 214 72236 35333 25270 10170 120 2.1 8 3 12.9 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.58508E7 26.7 18.9 62 98400 1133 1321 401 806 668 231 96557 42691 27828 11338 100 1.5 8 3 12.9 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.58544E7 28.9 18.3 53 98300 1246 1321 408 969 728 281 116208 48998 33905 13524 300 1.5 7 2 12.9 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.5858E7 29.4 18.9 53 98400 1294 1321 419 805 432 381 94850 32190 45205 17177 40 1.5 6 4 12.9 9140 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.58616E7 30.0 18.9 51 98300 1273 1321 425 992 736 281 119317 48701 34007 13581 100 2.6 5 5 12.9 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.58652E7 29.4 18.9 53 98300 1185 1321 419 822 603 279 97748 40796 33379 13303 120 2.1 4 4 12.9 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.58688E7 29.4 18.3 51 98300 1036 1321 405 757 748 169 91623 44506 20552 8567 80 4.6 3 1 12.9 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.58724E7 30.0 17.2 46 98200 835 1321 407 549 631 149 65103 37893 17746 7131 0 0.0 4 1 12.9 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.5876E7 29.4 17.2 48 98200 598 1321 404 366 519 131 41953 29469 15079 5531 100 3.1 7 1 12.9 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.58796E7 28.3 16.1 48 98200 339 1321 402 165 252 100 18118 10130 11026 3420 90 2.6 10 2 12.9 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.58832E7 26.7 16.1 52 98200 84 1112 397 31 17 29 3308 0 3105 810 90 3.6 10 3 12.9 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.58868E7 26.1 16.1 54 98300 0 0 394 0 0 0 0 0 0 0 70 3.1 10 3 12.9 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.58904E7 25.6 16.1 56 98400 0 0 391 0 0 0 0 0 0 0 0 0.0 10 3 12.9 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.5894E7 24.4 17.8 66 98400 0 0 387 0 0 0 0 0 0 0 0 0.0 10 3 12.9 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.58976E7 23.9 17.8 69 98400 0 0 385 0 0 0 0 0 0 0 60 2.1 10 3 12.9 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.59012E7 22.8 18.9 79 98400 0 0 377 0 0 0 0 0 0 0 0 0.0 7 2 12.9 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.59048E7 22.8 18.9 79 98400 0 0 377 0 0 0 0 0 0 0 0 0.0 7 2 12.9 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.59084E7 21.7 19.4 87 98300 0 0 372 0 0 0 0 0 0 0 70 2.1 3 2 12.9 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.5912E7 21.1 19.4 90 98300 0 0 369 0 0 0 0 0 0 0 80 1.5 2 2 12.9 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.59156E7 20.6 19.4 93 98400 0 0 366 0 0 0 0 0 0 0 40 2.6 2 2 12.9 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.59192E7 21.1 20.0 93 98400 22 584 373 9 1 9 0 0 0 0 80 2.6 7 3 6.4 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.59228E7 21.7 20.6 93 98500 233 1321 361 91 158 63 9956 1613 6917 2114 80 3.6 2 0 6.4 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.59264E7 22.8 21.1 90 98600 495 1321 374 261 381 117 29406 18036 13237 4650 90 3.6 1 1 6.4 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.593E7 25.0 21.7 82 98600 743 1321 379 487 589 154 56455 32981 17934 6971 100 2.1 0 0 8.0 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.59336E7 27.2 22.2 74 98600 961 1321 391 681 675 188 80532 38998 22345 9154 80 2.6 0 0 11.3 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.59372E7 29.4 21.7 63 98600 1132 1321 409 773 650 215 92826 38284 25960 10685 90 2.6 1 1 12.9 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.59408E7 30.0 20.6 57 98600 1246 1321 421 914 690 261 109970 43367 31591 12745 10 2.1 3 3 12.9 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.59444E7 31.1 18.3 47 98500 1294 1321 420 899 591 319 107443 41232 38372 15055 100 2.6 2 2 16.1 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.5948E7 31.7 18.9 47 98500 1273 1321 418 923 711 237 112455 44276 29041 11816 60 1.5 1 1 19.3 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.59516E7 31.1 19.4 50 98400 1185 1321 416 843 700 213 102280 42563 25983 10679 80 2.6 1 1 19.3 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.59552E7 32.2 19.4 47 98400 1036 1321 432 693 531 276 80676 37140 32324 12734 80 4.1 3 3 19.3 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.59588E7 30.0 19.4 53 98300 835 1321 410 466 441 187 54178 27713 21849 8575 90 5.7 1 1 19.3 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.59624E7 30.6 18.9 50 98300 598 1321 405 354 500 128 40588 27219 14737 5433 80 4.1 0 0 19.3 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.5966E7 30.0 18.9 51 98300 339 1321 401 155 294 80 17291 9043 8957 2943 90 3.6 0 0 19.3 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.59696E7 28.3 19.4 59 98300 84 1112 393 30 27 27 3210 0 2899 780 100 3.1 0 0 19.3 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.59732E7 27.2 20.0 65 98400 0 0 388 0 0 0 0 0 0 0 160 2.6 0 0 19.3 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.59768E7 26.1 20.6 72 98400 0 0 383 0 0 0 0 0 0 0 160 2.6 0 0 16.1 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.59804E7 26.1 21.1 74 98400 0 0 384 0 0 0 0 0 0 0 170 2.6 0 0 16.1 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.5984E7 25.0 20.6 76 98400 0 0 377 0 0 0 0 0 0 0 0 0.0 0 0 16.1 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.59876E7 24.4 21.1 82 98400 0 0 375 0 0 0 0 0 0 0 0 0.0 0 0 16.1 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.59912E7 23.3 20.6 84 98300 0 0 369 0 0 0 0 0 0 0 0 0.0 0 0 16.1 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.59948E7 23.3 20.6 84 98300 0 0 369 0 0 0 0 0 0 0 0 0.0 0 0 16.1 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.59984E7 22.2 20.6 90 98300 0 0 363 0 0 0 0 0 0 0 140 1.5 0 0 11.3 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.6002E7 21.7 20.6 93 98400 0 0 361 0 0 0 0 0 0 0 250 2.6 0 0 11.3 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.60056E7 21.7 20.6 93 98400 21 562 361 11 10 10 0 0 0 0 250 2.6 0 0 11.3 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.60092E7 23.9 21.7 87 98400 232 1321 373 100 284 50 11129 669 5581 1792 320 2.6 0 0 11.3 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.60128E7 26.1 21.7 77 98400 493 1321 384 291 547 86 33570 21582 9955 3649 330 3.6 0 0 11.3 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.60164E7 28.3 21.7 67 98500 742 1321 396 501 681 117 59324 34317 13908 5548 320 2.6 0 0 12.9 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.602E7 30.0 21.7 61 98500 959 1321 418 638 538 246 73907 35125 28661 11318 250 3.6 6 2 12.9 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.60236E7 31.1 21.1 55 98500 1131 1321 424 739 566 252 87718 35880 30087 12159 330 2.1 7 2 12.9 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.60272E7 31.7 18.9 47 98500 1245 1321 424 888 694 232 107974 43192 28369 11566 10 1.5 7 2 12.9 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.60308E7 32.2 18.9 45 98400 1293 1321 434 782 434 355 92637 31363 42339 16317 70 2.1 8 4 12.9 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.60344E7 32.2 20.0 48 98300 1273 1321 448 832 445 402 97229 33659 47313 17744 320 2.6 9 7 11.3 1520 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.6038E7 32.8 19.4 45 98300 1185 1321 435 660 329 364 76837 24737 42665 16205 360 3.6 8 3 11.3 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.60416E7 32.8 18.9 44 98200 1036 1321 441 648 484 267 75672 33651 31364 12421 310 3.1 5 5 9.7 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.60452E7 32.2 19.4 47 98100 835 1321 435 520 524 188 60431 33000 21957 8611 340 3.1 4 4 9.7 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.60488E7 31.7 19.4 48 98100 597 1321 439 311 245 200 34368 16527 22220 7428 310 3.1 6 6 9.7 3350 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.60524E7 30.6 20.0 53 98100 338 1321 427 132 147 95 14500 5062 10478 3310 360 3.6 8 4 9.7 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.6056E7 29.4 20.0 57 98100 84 1112 417 33 22 31 3485 0 3287 833 10 2.1 8 3 9.7 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.60596E7 27.8 20.0 63 98100 0 0 404 0 0 0 0 0 0 0 0 0.0 7 2 9.7 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.60632E7 27.8 20.0 63 98200 0 0 408 0 0 0 0 0 0 0 330 2.1 6 3 9.7 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.60668E7 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 37 0.0000 0 88 0.000 0.0 1.0 +1.60704E7 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 37 0.0000 0 88 0.000 0.0 1.0 +1.6074E7 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 37 0.0000 0 88 0.000 0.0 1.0 +1.60776E7 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 37 0.0000 0 88 0.000 0.0 1.0 +1.60812E7 22.8 21.1 90 98000 0 0 374 0 0 0 0 0 0 0 290 3.1 2 1 9.7 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.60848E7 22.8 20.6 87 98000 0 0 366 0 0 0 0 0 0 0 290 3.6 0 0 8.0 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.60884E7 22.8 20.6 87 98100 0 0 366 0 0 0 0 0 0 0 310 3.1 0 0 8.0 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.6092E7 22.8 20.6 87 98100 20 562 379 8 0 8 0 0 0 0 300 3.1 2 2 6.4 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.60956E7 23.9 20.6 82 98100 230 1321 372 81 108 62 8859 994 6806 2076 310 3.1 0 0 6.4 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.60992E7 26.7 21.1 72 98100 492 1321 387 259 367 121 29077 17668 13642 4750 350 4.6 0 0 6.4 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.61028E7 29.4 21.7 63 98100 740 1321 402 470 527 173 53955 31036 19957 7622 360 3.1 0 0 6.4 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.61064E7 30.0 20.6 57 98100 958 1321 403 664 619 213 77879 38911 25116 10117 20 2.6 0 0 6.4 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.611E7 31.1 21.7 57 98100 1130 1321 411 825 681 241 98182 41895 28846 11730 270 2.1 0 0 6.4 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.61136E7 31.7 21.7 55 98100 1244 1321 414 925 707 257 111268 43184 31100 12583 50 2.6 0 0 6.4 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.61172E7 32.8 21.1 50 98000 1293 1321 419 972 722 264 117509 44542 32110 12952 350 4.1 0 0 6.4 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.61208E7 33.3 21.1 49 97900 1273 1321 430 909 661 270 109410 41357 32697 13151 320 2.1 3 1 6.4 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.61244E7 33.3 19.4 44 97900 1185 1321 438 797 514 335 93391 37228 39513 15275 280 2.1 3 3 6.4 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.6128E7 33.9 20.0 44 97800 1036 1321 424 736 649 226 86976 41401 26854 10908 260 3.6 0 0 8.0 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.61316E7 33.3 20.6 47 97800 835 1321 421 554 572 191 64219 35432 22253 8718 280 3.1 0 0 9.7 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.61352E7 32.2 21.1 52 97800 597 1321 416 347 449 143 39338 24527 16284 5911 280 4.1 0 0 9.7 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.61388E7 31.7 21.1 54 97800 338 1321 413 147 237 86 16259 7126 9549 3095 280 3.1 0 0 9.7 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.61424E7 28.9 21.7 65 97800 83 1090 412 25 11 24 2692 0 2593 726 290 2.6 3 2 9.7 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.6146E7 28.3 21.7 67 97800 0 0 409 0 0 0 0 0 0 0 240 1.5 3 2 9.7 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.61496E7 27.8 20.6 65 97800 0 0 405 0 0 0 0 0 0 0 60 2.1 3 2 9.7 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.61532E7 27.2 21.1 69 97800 0 0 389 0 0 0 0 0 0 0 310 1.5 0 0 9.7 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.61568E7 26.7 21.7 74 97800 0 0 387 0 0 0 0 0 0 0 290 2.1 0 0 9.7 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.61604E7 26.7 21.1 72 97800 0 0 387 0 0 0 0 0 0 0 350 3.1 0 0 9.7 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.6164E7 26.7 21.1 72 97800 0 0 387 0 0 0 0 0 0 0 340 2.6 0 0 9.7 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.61676E7 26.1 20.0 69 97800 0 0 382 0 0 0 0 0 0 0 350 2.1 0 0 9.7 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.61712E7 25.6 20.0 71 97800 0 0 380 0 0 0 0 0 0 0 350 1.5 0 0 9.7 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.61748E7 23.3 20.0 82 97800 0 0 368 0 0 0 0 0 0 0 310 2.6 0 0 9.7 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.61784E7 23.9 20.6 82 97900 20 540 384 11 17 9 0 0 0 0 310 3.1 4 2 6.4 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.6182E7 25.0 21.7 82 97900 228 1321 379 111 422 37 12639 0 4223 1408 290 1.5 0 0 9.7 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.61856E7 26.7 22.2 77 97900 490 1321 388 309 667 60 36614 21788 7128 2678 230 2.1 0 0 6.4 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.61892E7 29.4 22.2 65 97900 739 1321 402 515 773 81 62647 34178 9883 4008 270 2.1 0 0 6.4 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.61928E7 31.1 21.7 57 97900 957 1321 411 712 845 97 79476 89993 13521 2536 200 2.1 0 0 9.7 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.61964E7 32.2 21.1 52 97900 1129 1321 416 858 874 109 95125 93226 14585 3996 310 2.1 0 0 6.4 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.62E7 33.3 22.2 52 97900 1243 1321 423 965 899 115 107328 96485 14989 6602 220 3.6 0 0 8.0 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.62036E7 33.9 20.6 46 97800 1292 1321 425 1002 901 118 110451 96071 15176 9635 280 5.2 0 0 9.7 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.62072E7 34.4 19.4 41 97800 1272 1321 426 987 881 137 107772 93373 17519 9051 30 2.6 2 0 9.7 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.62108E7 35.0 19.4 40 97700 1185 1321 429 940 828 196 114760 49009 24053 9951 130 1.5 7 0 8.0 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.62144E7 35.6 19.4 39 97700 1035 1321 441 743 702 191 89001 42599 22995 9503 360 3.1 9 1 8.0 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.6218E7 35.0 18.9 39 97700 835 1321 454 511 481 206 58985 31734 23903 9239 50 1.5 10 5 8.0 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.62216E7 33.9 18.9 41 97700 597 1321 448 342 419 152 38671 24705 17266 6181 200 1.5 10 5 8.0 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.62252E7 33.3 18.9 42 97700 338 1321 444 146 118 116 15786 5029 12600 3722 180 3.6 10 5 8.0 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.62288E7 31.1 20.0 52 97700 83 1090 430 36 58 30 3809 0 3186 816 180 2.1 9 4 8.0 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.62324E7 30.6 19.4 52 97700 0 0 426 0 0 0 0 0 0 0 180 3.1 8 4 9.7 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.6236E7 29.4 20.0 57 97800 0 0 417 0 0 0 0 0 0 0 180 2.6 7 3 9.7 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.62396E7 27.8 20.6 65 97800 0 0 392 0 0 0 0 0 0 0 180 1.5 0 0 9.7 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.62432E7 27.8 21.1 67 97800 0 0 392 0 0 0 0 0 0 0 180 3.1 0 0 9.7 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.62468E7 26.7 21.1 72 97800 0 0 387 0 0 0 0 0 0 0 240 2.6 0 0 9.7 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.62504E7 24.4 21.1 82 97800 0 0 375 0 0 0 0 0 0 0 250 3.1 0 0 9.7 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.6254E7 24.4 21.1 82 97800 0 0 375 0 0 0 0 0 0 0 250 2.6 0 0 8.0 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.62576E7 23.3 21.1 87 97900 0 0 370 0 0 0 0 0 0 0 290 4.1 0 0 8.0 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.62612E7 22.8 21.1 90 97900 0 0 367 0 0 0 0 0 0 0 240 2.6 0 0 8.0 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.62648E7 23.3 20.6 84 97900 19 540 369 9 0 9 0 0 0 0 270 2.6 0 0 6.4 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.62684E7 23.9 20.6 82 97900 226 1321 372 81 113 62 8844 976 6794 2060 270 3.6 0 0 6.4 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.6272E7 26.7 21.1 72 98000 488 1321 387 255 355 123 28565 17216 13838 4789 300 2.1 0 0 6.4 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.62756E7 29.4 22.2 65 98000 737 1321 402 465 513 178 53196 30262 20465 7773 320 2.1 0 0 6.4 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.62792E7 31.7 22.2 57 98000 956 1321 415 663 611 220 77390 37645 25821 10367 350 2.6 0 0 8.0 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.62828E7 33.9 21.1 47 98100 1128 1321 425 821 668 248 97531 42115 29633 11999 300 3.1 0 0 9.7 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.62864E7 34.4 20.0 43 98100 1243 1321 427 927 701 265 111434 44860 32047 12897 290 2.6 0 0 9.7 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.629E7 35.6 20.0 40 98000 1292 1321 442 974 716 273 117575 45728 33157 13308 320 3.6 1 1 9.7 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.62936E7 36.1 20.0 39 98000 1272 1321 444 919 665 277 110519 42939 33517 13424 10 2.6 1 1 11.3 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.62972E7 36.7 18.9 35 97900 1184 1321 446 834 651 249 100036 42190 30040 12150 360 2.1 1 1 11.3 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.63008E7 36.7 18.9 35 97800 1035 1321 452 678 483 299 78469 35270 34820 13501 320 2.1 2 2 11.3 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.63044E7 34.4 18.9 40 97700 835 1321 439 523 455 235 59738 31804 26991 10179 320 2.1 2 2 9.7 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.6308E7 34.4 18.9 40 97800 596 1321 460 258 74 224 28255 5369 24669 7916 220 2.1 7 7 8.0 7620 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.63116E7 31.7 20.0 50 97900 337 1321 475 29 2 28 3509 24 3392 1217 200 7.7 10 10 6.4 7620 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.63152E7 28.3 20.0 61 97900 82 1090 454 25 0 25 2387 0 2404 739 200 7.7 10 10 8.0 7620 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.63188E7 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 32 0.0000 0 88 0.000 0.3 1.0 +1.63224E7 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 32 0.0000 0 88 0.000 0.0 1.0 +1.6326E7 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 31 0.0000 0 88 0.000 0.0 1.0 +1.63296E7 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 31 0.0000 0 88 0.000 0.0 1.0 +1.63332E7 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 31 0.0000 0 88 0.000 2.3 1.0 +1.63368E7 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 31 0.0000 0 88 0.000 0.0 1.0 +1.63404E7 21.7 20.6 93 98100 0 0 373 0 0 0 0 0 0 0 290 1.5 5 2 8.0 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.6344E7 21.1 20.6 97 98100 0 0 374 0 0 0 0 0 0 0 220 3.6 5 3 8.0 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.63476E7 20.6 20.6 100 98200 0 0 356 0 0 0 0 0 0 0 260 3.1 0 0 8.0 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.63512E7 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 30 0.0000 0 88 0.000 0.0 1.0 +1.63548E7 21.1 20.0 93 98200 224 1321 369 90 150 64 9799 1508 6994 2092 250 3.6 7 2 4.8 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.63584E7 22.8 20.6 87 98300 486 1321 373 269 437 108 30458 19937 12277 4342 250 5.7 3 1 8.0 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.6362E7 25.0 21.1 79 98300 736 1321 378 489 628 137 57173 34048 16086 6312 230 4.6 0 0 9.7 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.63656E7 28.3 21.1 65 98300 954 1321 395 685 714 167 81775 40597 20031 8273 290 5.2 0 0 11.3 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.63692E7 29.4 20.6 59 98300 1127 1321 400 837 758 188 101596 43736 22936 9535 280 3.6 0 0 11.3 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.63728E7 31.1 20.6 53 98300 1242 1321 409 938 783 200 115092 44921 24671 10194 310 4.6 0 0 12.9 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.63764E7 31.7 20.6 52 98200 1291 1321 413 990 801 205 122021 45816 25404 10468 240 3.6 0 0 12.9 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.638E7 32.8 20.0 47 98200 1271 1321 418 975 799 203 120023 46348 25124 10358 300 4.1 0 0 12.9 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.63836E7 33.9 18.9 41 98100 1184 1321 430 860 736 198 104956 44124 24291 10037 180 3.6 1 1 12.9 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.63872E7 33.9 18.9 41 98000 1035 1321 430 741 684 204 88352 42866 24451 10036 210 4.1 1 1 12.9 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.63908E7 33.3 18.3 41 98000 834 1321 426 564 594 188 65608 38136 21978 8608 240 4.1 1 1 11.3 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.63944E7 32.8 18.3 42 98000 596 1321 424 356 497 132 40732 27748 15167 5559 180 3.1 1 1 11.3 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.6398E7 32.2 18.3 44 98100 336 1321 426 148 276 78 16545 8440 8750 2882 230 3.6 2 2 11.3 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.64016E7 29.4 20.0 57 98100 81 1090 423 20 9 19 2197 0 2093 617 210 5.2 5 5 11.3 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.64052E7 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 30 0.0000 0 88 0.000 0.0 1.0 +1.64088E7 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 31 0.0000 0 88 0.000 0.0 1.0 +1.64124E7 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 32 0.0000 0 88 0.000 0.0 1.0 +1.6416E7 24.4 19.4 74 98200 0 0 389 0 0 0 0 0 0 0 250 4.1 7 3 12.9 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.64196E7 22.8 19.4 82 98200 0 0 372 0 0 0 0 0 0 0 240 2.6 4 1 12.9 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.64232E7 22.8 19.4 82 98200 0 0 372 0 0 0 0 0 0 0 230 2.6 3 1 12.9 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.64268E7 22.2 19.4 84 98200 0 0 362 0 0 0 0 0 0 0 240 2.6 0 0 12.9 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.64304E7 21.7 19.4 87 98300 0 0 360 0 0 0 0 0 0 0 230 2.6 0 0 12.9 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.6434E7 21.1 19.4 90 98300 0 0 357 0 0 0 0 0 0 0 250 2.6 0 0 11.3 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.64376E7 20.0 18.9 93 98300 17 518 351 8 0 8 0 0 0 0 270 2.1 0 0 11.3 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.64412E7 21.1 19.4 90 98300 221 1322 357 80 115 60 8755 976 6590 1999 270 3.1 0 0 9.7 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.64448E7 23.3 19.4 79 98300 484 1322 368 252 359 120 28315 17865 13540 4686 270 2.1 0 0 12.9 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.64484E7 25.6 18.9 67 98400 734 1322 379 464 520 174 53345 32511 20101 7623 270 3.1 0 0 19.3 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.6452E7 27.2 17.8 56 98400 953 1322 385 663 619 215 77860 41077 25382 10169 300 4.6 0 0 40.2 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.64556E7 28.9 18.3 53 98400 1126 1322 395 820 676 243 97816 44531 29152 11800 250 3.6 0 0 40.2 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.64592E7 30.6 17.8 46 98400 1241 1322 403 925 706 260 111566 46604 31544 12697 290 4.1 0 0 40.2 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.64628E7 31.1 17.8 45 98300 1291 1322 423 722 300 429 84336 23990 50474 18624 250 4.6 3 3 40.2 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.64664E7 32.2 17.8 42 98300 1271 1322 433 877 556 342 103985 40475 40820 15801 190 3.6 4 4 40.2 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.647E7 32.2 17.8 42 98200 1184 1322 440 663 307 387 76921 24299 45210 16893 230 6.7 6 6 40.2 1520 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.64736E7 32.8 17.8 41 98100 1035 1322 440 611 307 370 69590 25160 42426 15584 220 5.2 5 5 48.3 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.64772E7 32.2 17.2 41 98100 834 1322 439 451 291 267 51064 22121 30408 11108 200 5.2 6 6 48.3 1520 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.64808E7 30.6 17.8 46 98100 595 1322 436 218 102 171 24435 6500 19260 6706 190 5.2 7 7 48.3 1370 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.64844E7 30.0 18.9 51 98100 335 1322 441 93 26 86 10305 846 9565 3086 180 5.2 8 8 48.3 3660 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.6488E7 28.3 18.9 57 98200 80 1068 400 22 11 21 2398 0 2295 658 220 4.6 1 1 48.3 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.64916E7 26.7 18.9 62 98200 0 0 384 0 0 0 0 0 0 0 230 3.6 0 0 40.2 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.64952E7 25.6 19.4 69 98300 0 0 386 0 0 0 0 0 0 0 230 4.1 2 1 32.2 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.64988E7 24.4 18.3 69 98300 0 0 372 0 0 0 0 0 0 0 240 4.6 0 0 24.1 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.65024E7 23.9 18.9 74 98300 0 0 370 0 0 0 0 0 0 0 240 5.2 0 0 24.1 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.6506E7 23.3 19.4 79 98300 0 0 368 0 0 0 0 0 0 0 250 2.6 0 0 24.1 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.65096E7 21.1 19.4 90 98300 0 0 357 0 0 0 0 0 0 0 250 2.6 0 0 24.1 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.65132E7 20.6 19.4 93 98300 0 0 354 0 0 0 0 0 0 0 270 2.6 0 0 24.1 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.65168E7 20.0 19.4 97 98300 0 0 351 0 0 0 0 0 0 0 270 2.6 0 0 19.3 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.65204E7 20.6 19.4 93 98300 0 0 354 0 0 0 0 0 0 0 260 2.1 0 0 19.3 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.6524E7 20.0 19.4 97 98300 16 496 351 9 2 8 0 0 0 0 230 2.1 0 0 24.1 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.65276E7 21.7 20.0 90 98400 219 1322 360 84 181 54 9259 808 5972 1854 240 2.1 0 0 24.1 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.65312E7 24.4 20.6 79 98400 482 1322 374 267 457 100 30392 19936 11426 4079 300 2.6 0 0 24.1 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.65348E7 26.1 20.0 69 98400 733 1322 390 465 584 140 54309 32731 16421 6412 280 1.5 1 1 32.2 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.65384E7 27.2 20.6 67 98400 952 1322 402 649 558 245 75210 37249 28554 11241 330 2.1 2 2 40.2 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.6542E7 28.9 19.4 57 98400 1125 1322 413 761 579 267 90012 38840 31769 12712 230 2.1 3 3 40.2 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.65456E7 30.0 18.3 50 98400 1240 1322 418 909 689 261 109543 45193 31640 12735 200 2.6 3 3 40.2 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.65492E7 30.6 17.8 46 98300 1290 1322 431 862 479 394 101352 36845 46651 17573 160 4.6 6 6 40.2 1520 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.65528E7 32.2 18.3 44 98300 1271 1322 446 785 417 383 92214 31661 45304 17149 190 4.1 7 7 40.2 1520 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.65564E7 31.1 17.8 45 98200 1183 1322 446 695 291 434 79900 24340 50255 18182 190 2.6 8 8 40.2 1520 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.656E7 31.1 18.3 47 98100 1034 1322 456 386 62 337 44271 4826 38902 14666 150 3.1 9 9 40.2 1520 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.65636E7 30.6 18.3 48 98100 833 1322 444 337 185 220 38712 12680 25407 9697 180 3.6 8 8 40.2 1520 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.65672E7 28.3 18.9 57 98100 595 1322 440 79 36 63 9567 1516 7648 2972 270 5.2 9 9 40.2 1520 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.65708E7 25.6 20.0 71 98200 334 1322 426 100 84 79 11143 2424 8834 2904 300 4.1 9 9 40.2 1520 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.65744E7 25.6 20.0 71 98200 79 1068 426 17 4 17 1882 0 1886 565 200 3.6 9 9 40.2 1520 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.6578E7 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 34 0.0000 0 88 0.000 0.0 1.0 +1.65816E7 25.6 18.9 67 98300 0 0 401 0 0 0 0 0 0 0 230 3.6 5 5 24.1 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.65852E7 23.9 19.4 76 98300 0 0 378 0 0 0 0 0 0 0 260 2.6 2 1 24.1 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.65888E7 23.3 20.0 82 98200 0 0 368 0 0 0 0 0 0 0 240 2.6 0 0 24.1 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.65924E7 22.8 20.0 84 98200 0 0 366 0 0 0 0 0 0 0 260 2.1 0 0 24.1 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.6596E7 22.2 19.4 84 98200 0 0 362 0 0 0 0 0 0 0 250 2.6 0 0 24.1 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.65996E7 21.1 20.0 93 98200 0 0 357 0 0 0 0 0 0 0 270 2.6 0 0 24.1 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.66032E7 20.6 19.4 93 98200 0 0 354 0 0 0 0 0 0 0 260 2.6 0 0 19.3 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.66068E7 20.6 20.0 97 98200 0 0 362 0 0 0 0 0 0 0 240 2.6 1 1 19.3 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.66104E7 20.6 20.0 97 98300 15 474 370 8 13 6 0 0 0 0 270 3.1 3 3 19.3 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.6614E7 21.1 20.0 93 98400 217 1322 382 93 211 58 10180 1292 6371 1937 280 3.1 6 6 24.1 3660 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.66176E7 22.8 20.6 87 98400 481 1322 403 195 105 156 21392 5942 17198 5556 320 3.1 8 8 16.1 3660 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.66212E7 24.4 21.1 82 98500 731 1322 412 301 98 246 33547 6957 27576 9689 310 4.1 8 8 17.7 3660 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.66248E7 27.2 21.7 72 98400 951 1322 429 589 329 351 66215 25635 39724 14372 210 2.6 8 8 19.3 5490 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.66284E7 28.3 21.1 65 98400 1124 1322 443 562 122 458 63565 10271 52188 18374 290 3.6 9 9 24.1 5490 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.6632E7 29.4 21.1 61 98400 1240 1322 428 709 482 256 85316 29817 30989 12535 270 4.1 6 6 24.1 5490 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.66356E7 30.0 20.6 57 98400 1290 1322 427 911 647 278 109716 41155 33688 13500 300 2.1 5 5 32.2 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.66392E7 30.6 19.4 52 98300 1270 1322 426 1002 792 239 121900 49047 29243 11894 110 1.5 4 4 40.2 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.66428E7 31.1 20.0 52 98200 1183 1322 430 778 576 261 92864 37271 31339 12616 310 2.1 4 4 40.2 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.66464E7 31.1 20.0 52 98200 1034 1322 430 692 546 263 80795 37050 30888 12273 240 4.1 4 4 40.2 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.665E7 31.7 18.9 47 98200 833 1322 432 519 483 214 59710 32402 24751 9497 270 2.6 4 4 40.2 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.66536E7 32.2 18.3 44 98200 594 1322 434 414 612 138 47183 34851 15796 5742 280 3.1 4 4 40.2 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.66572E7 31.1 18.9 48 98200 333 1322 428 143 237 83 15883 7438 9253 3004 320 2.1 4 4 40.2 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.66608E7 28.9 20.6 61 98200 79 1068 415 32 68 25 3423 0 2683 725 340 3.1 3 3 24.1 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.66644E7 27.8 21.1 67 98200 0 0 409 0 0 0 0 0 0 0 320 2.1 3 3 24.1 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.6668E7 27.2 20.6 67 98300 0 0 402 0 0 0 0 0 0 0 0 0.0 2 2 24.1 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.66716E7 26.1 20.0 69 98400 0 0 382 0 0 0 0 0 0 0 360 3.6 0 0 24.1 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.66752E7 25.6 20.6 74 98400 0 0 381 0 0 0 0 0 0 0 360 2.6 0 0 19.3 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.66788E7 24.4 20.6 79 98400 0 0 374 0 0 0 0 0 0 0 320 1.5 0 0 16.1 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.66824E7 22.8 20.6 87 98300 0 0 366 0 0 0 0 0 0 0 300 2.1 0 0 16.1 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.6686E7 22.8 20.6 87 98300 0 0 366 0 0 0 0 0 0 0 280 2.6 0 0 16.1 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.66896E7 22.2 20.6 90 98300 0 0 363 0 0 0 0 0 0 0 290 1.5 0 0 16.1 2000 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.66932E7 22.8 21.1 90 98300 0 0 367 0 0 0 0 0 0 0 240 1.5 0 0 16.1 2000 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.66968E7 22.8 21.1 90 98400 15 474 379 5 0 5 0 0 0 0 310 2.6 2 2 11.3 2000 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.67004E7 23.3 20.6 84 98400 215 1322 385 52 33 47 5783 0 5242 1665 310 1.5 3 3 9.7 2000 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.6704E7 26.7 21.1 72 98500 479 1322 400 231 293 125 25782 14261 14012 4795 330 2.1 2 2 9.7 2000 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.67076E7 28.3 20.6 63 98500 729 1322 402 430 443 184 49081 27509 21107 7923 310 3.1 1 1 11.3 2000 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +1.67112E7 30.0 20.6 57 98600 949 1322 411 610 525 232 70964 34266 27140 10770 310 2.6 1 1 16.1 2000 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +1.67148E7 31.1 20.0 52 98600 1123 1322 422 797 569 312 93045 40365 36656 14298 360 2.6 2 2 19.3 2000 9 999999999 45 0.0000 0 88 0.000 0.0 1.0 +1.67184E7 32.2 20.0 48 98500 1239 1322 439 846 472 402 98412 36128 47096 17593 0 0.0 5 5 19.3 2000 9 999999999 45 0.0000 0 88 0.000 0.0 1.0 +1.6722E7 33.3 20.0 45 98500 1289 1322 442 863 491 383 101458 36112 45343 17221 280 2.6 4 4 19.3 2000 9 999999999 46 0.0000 0 88 0.000 0.0 1.0 +1.67256E7 33.3 19.4 44 98400 1270 1322 441 886 517 388 103848 38868 45796 17301 320 2.6 4 4 19.3 2000 9 999999999 46 0.0000 0 88 0.000 0.0 1.0 +1.67292E7 34.4 18.3 38 98300 1182 1322 446 827 526 355 96540 39770 41719 15914 300 4.1 4 4 24.1 2000 9 999999999 46 0.0000 0 88 0.000 0.0 1.0 +1.67328E7 34.4 18.9 40 98300 1033 1322 444 697 535 277 81133 37806 32437 12759 280 4.1 3 3 24.1 2000 9 999999999 47 0.0000 0 88 0.000 0.0 1.0 +1.67364E7 34.4 17.2 36 98200 832 1322 437 512 445 232 58614 31734 26705 10071 0 0.0 2 2 24.1 2000 9 999999999 47 0.0000 0 88 0.000 0.0 1.0 +1.674E7 33.9 17.8 38 98200 593 1322 443 293 284 165 32923 17774 18629 6531 290 3.6 4 4 24.1 2000 9 999999999 48 0.0000 0 88 0.000 0.0 1.0 +1.67436E7 26.7 20.0 67 98500 332 1322 433 51 36 42 5974 586 4930 1744 100 6.2 9 9 16.1 910 9 999999999 48 0.0000 0 88 0.000 0.0 1.0 +1.67472E7 22.8 20.0 84 98500 77 1046 410 14 0 14 1336 0 1346 484 180 6.2 9 9 11.3 1070 9 999999999 47 0.0000 0 88 0.000 0.0 1.0 +1.67508E7 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 46 0.0000 0 88 0.000 0.0 1.0 +1.67544E7 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 46 0.0000 0 88 0.000 0.0 1.0 +1.6758E7 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 45 0.0000 0 88 0.000 0.0 1.0 +1.67616E7 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 44 0.0000 0 88 0.000 0.0 1.0 +1.67652E7 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 43 0.0000 0 88 0.000 0.0 1.0 +1.67688E7 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 42 0.0000 0 88 0.000 0.0 1.0 +1.67724E7 23.3 21.1 87 98400 0 0 385 0 0 0 0 0 0 0 70 2.1 5 3 12.9 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.6776E7 22.8 21.7 93 98400 0 0 380 0 0 0 0 0 0 0 140 1.5 3 2 12.9 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.67796E7 23.3 21.1 87 98400 0 0 377 0 0 0 0 0 0 0 330 1.5 1 1 12.9 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.67832E7 23.3 20.0 82 98500 14 452 375 6 0 6 0 0 0 0 60 1.5 1 1 12.9 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.67868E7 24.4 20.0 76 98500 213 1322 381 60 51 51 6625 93 5650 1759 60 2.6 1 1 12.9 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.67904E7 27.2 20.6 67 98600 477 1322 396 231 262 136 25606 13580 15144 5068 0 0.0 1 1 12.9 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.6794E7 28.9 20.0 59 98600 728 1322 404 426 386 212 48088 25930 24060 8758 80 3.1 1 1 16.1 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.67976E7 30.6 20.6 55 98600 948 1322 407 637 532 255 73537 36192 29609 11558 130 2.6 0 0 16.1 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.68012E7 31.7 21.1 54 98600 1122 1322 413 796 593 291 93308 40020 34324 13572 40 2.1 0 0 16.1 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.68048E7 33.3 21.1 49 98500 1238 1322 430 870 595 311 103114 39808 37098 14615 20 5.2 1 1 19.3 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.68084E7 33.9 20.6 46 98500 1288 1322 439 894 519 386 104961 37936 45638 17314 60 4.1 2 2 24.1 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.6812E7 34.4 20.0 43 98400 1269 1322 445 896 518 397 104758 39001 46745 17576 40 3.6 3 3 24.1 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.68156E7 35.0 19.4 40 98400 1182 1322 443 824 493 382 95526 37953 44592 16737 30 4.1 2 2 24.1 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.68192E7 33.9 19.4 43 98300 1033 1322 437 589 307 348 67290 23907 40021 14971 90 4.1 2 2 19.3 2000 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.68228E7 34.4 19.4 41 98200 831 1322 455 411 178 298 46004 13872 33563 11888 110 4.1 6 6 32.2 2440 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.68264E7 32.8 19.4 45 98200 592 1322 468 171 28 158 19248 1666 17869 6331 70 2.1 9 9 24.1 2740 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.683E7 28.9 18.9 55 98200 331 1322 444 61 0 61 5970 0 6017 2378 350 4.6 9 9 40.2 1220 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +1.68336E7 30.0 18.3 50 98300 76 1046 450 14 0 14 1339 0 1348 482 60 1.5 10 9 24.1 3050 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +1.68372E7 28.3 18.3 55 98300 0 0 405 0 0 0 0 0 0 0 350 2.6 5 2 19.3 2000 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.68408E7 27.8 18.9 58 98400 0 0 390 0 0 0 0 0 0 0 60 3.1 0 0 19.3 2000 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.68444E7 27.8 17.8 55 98400 0 0 401 0 0 0 0 0 0 0 60 3.1 5 2 19.3 2000 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.6848E7 27.8 17.8 55 98300 0 0 405 0 0 0 0 0 0 0 60 3.6 7 3 19.3 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.68516E7 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 42 0.0000 0 88 0.000 0.0 1.0 +1.68552E7 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 42 0.0000 0 88 0.000 0.0 1.0 +1.68588E7 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 41 0.0000 0 88 0.000 0.0 1.0 +1.68624E7 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 41 0.0000 0 88 0.000 0.0 1.0 +1.6866E7 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 41 0.0000 0 88 0.000 0.0 1.0 +1.68696E7 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 40 0.0000 0 88 0.000 0.0 1.0 +1.68732E7 24.4 19.4 74 98400 210 1322 403 56 16 53 6161 51 5851 1798 40 2.1 9 7 12.9 7620 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.68768E7 26.7 20.0 67 98500 474 1322 445 114 5 112 12841 234 12667 4411 40 2.1 10 10 12.9 7620 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.68804E7 28.3 20.6 63 98500 726 1322 433 304 153 220 34179 10359 24870 8969 40 4.1 9 8 11.3 7620 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.6884E7 30.0 21.1 59 98500 946 1322 453 359 121 272 41198 8403 31402 12104 80 4.1 9 9 9.7 7620 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.68876E7 31.1 22.2 59 98500 1121 1322 462 456 99 372 52349 7344 43001 16161 90 3.6 9 9 9.7 7620 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.68912E7 32.8 21.7 52 98400 1237 1322 471 739 300 458 84896 23861 53010 19120 120 5.2 9 9 9.7 7620 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.68948E7 33.3 21.7 50 98400 1288 1322 474 617 173 448 71499 13341 52304 19140 110 4.1 9 9 9.7 7620 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.68984E7 33.9 21.1 47 98300 1269 1322 455 751 423 344 88677 29281 40893 15861 120 4.1 8 6 9.7 7620 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.6902E7 32.8 21.1 50 98300 1181 1322 448 562 158 420 64538 12412 48580 17803 90 5.2 6 6 16.1 4570 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.69056E7 33.3 20.6 47 98200 1032 1322 456 556 265 349 63417 20289 40072 14994 110 4.6 7 7 16.1 4570 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.69092E7 33.3 20.6 47 98200 831 1322 443 584 558 232 66612 37698 26610 10061 100 5.2 7 4 16.1 4570 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.69128E7 33.3 20.6 47 98200 591 1322 450 256 186 172 28573 11297 19293 6707 130 3.1 6 6 16.1 1370 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.69164E7 31.7 20.0 50 98200 330 1322 440 137 82 117 14752 3388 12657 3689 130 4.1 9 6 12.9 1520 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.692E7 30.6 20.6 55 98200 75 1047 420 26 21 24 2780 0 2575 694 150 3.6 3 2 9.7 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.69236E7 29.4 20.6 59 98300 0 0 413 0 0 0 0 0 0 0 160 2.6 6 2 9.7 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.69272E7 28.9 20.6 61 98300 0 0 411 0 0 0 0 0 0 0 170 1.5 6 2 9.7 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.69308E7 28.3 20.6 63 98400 0 0 412 0 0 0 0 0 0 0 190 1.5 7 3 9.7 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.69344E7 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 37 0.0000 0 88 0.000 0.0 1.0 +1.6938E7 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 37 0.0000 0 88 0.000 0.0 1.0 +1.69416E7 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 36 0.0000 0 88 0.000 0.0 1.0 +1.69452E7 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 36 0.0000 0 88 0.000 0.0 1.0 +1.69488E7 24.4 20.0 76 98400 0 0 390 0 0 0 0 0 0 0 0 0.0 7 3 11.3 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.69524E7 23.9 20.0 79 98400 0 0 384 0 0 0 0 0 0 0 90 2.1 5 2 11.3 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.6956E7 22.8 20.0 84 98400 12 430 385 5 0 5 0 0 0 0 100 2.1 8 4 8.0 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.69596E7 23.3 20.0 82 98500 208 1322 387 64 39 58 6976 183 6345 1899 0 0.0 8 4 8.0 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.69632E7 25.6 20.6 74 98500 472 1322 400 179 78 151 19649 4312 16656 5389 120 2.6 8 4 9.7 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.69668E7 27.8 21.1 67 98500 724 1322 413 391 232 263 43280 17117 29286 10020 130 2.1 8 4 11.3 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.69704E7 29.4 21.1 61 98500 945 1322 418 617 414 319 69888 31087 36366 13486 180 2.1 9 3 11.3 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.6974E7 30.6 21.1 57 98600 1120 1322 447 594 218 408 67767 17293 46879 17140 180 2.1 9 8 11.3 7620 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.69776E7 32.2 21.1 52 98500 1236 1322 467 473 14 460 54350 1128 53254 19165 180 3.6 9 9 11.3 1220 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.69812E7 32.2 21.1 52 98500 1287 1322 467 625 88 539 71411 7561 62076 21343 140 5.2 9 9 12.9 1220 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.69848E7 33.9 18.9 41 98400 1268 1322 474 421 21 401 49230 1616 47224 17691 150 2.1 9 9 12.9 1220 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.69884E7 33.3 17.8 40 98400 1181 1322 442 778 438 386 90243 34664 45083 16849 110 4.1 5 5 11.3 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.6992E7 33.3 17.8 40 98300 1031 1322 442 670 424 338 76828 33308 39010 14676 170 2.6 5 5 12.9 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.69956E7 32.8 18.3 42 98300 830 1322 434 535 466 241 60974 33297 27621 10331 190 2.6 5 3 12.9 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.69992E7 32.8 18.3 42 98200 590 1322 437 291 268 171 32568 16937 19231 6674 120 3.1 6 4 12.9 4570 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.70028E7 31.1 17.8 45 98300 328 1322 423 136 195 87 15042 6534 9659 3082 170 2.1 3 3 11.3 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.70064E7 30.0 17.8 48 98300 74 1025 413 18 7 18 1975 0 1980 575 170 3.1 2 2 9.7 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.701E7 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 34 0.0000 0 88 0.000 0.0 1.0 +1.70136E7 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 35 0.0000 0 88 0.000 0.0 1.0 +1.70172E7 28.3 17.8 53 98400 0 0 411 0 0 0 0 0 0 0 0 0.0 8 4 11.3 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.70208E7 27.2 17.8 56 98400 0 0 405 0 0 0 0 0 0 0 0 0.0 8 4 11.3 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.70244E7 25.0 19.4 71 98400 0 0 395 0 0 0 0 0 0 0 140 3.6 8 4 11.3 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.7028E7 23.9 18.9 74 98400 0 0 386 0 0 0 0 0 0 0 190 5.2 5 3 12.9 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.70316E7 22.8 18.3 76 98400 0 0 371 0 0 0 0 0 0 0 240 3.1 3 1 16.1 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.70352E7 22.8 18.3 76 98400 0 0 371 0 0 0 0 0 0 0 200 3.1 3 1 16.1 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.70388E7 21.7 18.3 81 98400 0 0 365 0 0 0 0 0 0 0 0 0.0 3 1 19.3 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.70424E7 21.7 18.3 81 98500 11 408 358 6 3 5 0 0 0 0 160 1.5 0 0 19.3 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.7046E7 21.7 18.3 81 98500 205 1322 365 75 175 48 8311 164 5336 1663 190 1.5 2 1 19.3 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.70496E7 23.9 18.9 74 98500 470 1322 382 262 411 115 29453 20006 12981 4477 220 3.1 4 2 19.3 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.70532E7 26.1 19.4 67 98600 722 1322 394 459 586 138 53599 33072 16183 6297 220 1.5 2 2 19.3 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.70568E7 27.8 19.4 61 98500 944 1322 407 614 602 183 72789 36701 21801 8890 180 2.6 3 3 19.3 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.70604E7 28.3 20.0 61 98500 1119 1322 433 585 164 445 66346 13852 50838 18038 200 2.6 9 8 19.3 2740 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.7064E7 28.3 20.0 61 98600 1235 1322 433 695 276 436 80288 22012 50737 18533 130 4.1 10 8 24.1 2740 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.70676E7 29.4 19.4 55 98500 1286 1322 460 358 11 347 42421 783 41394 16020 130 3.6 10 10 24.1 3050 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.70712E7 29.4 18.3 51 98400 1267 1322 415 849 529 340 100609 38188 40558 15719 110 3.6 6 3 19.3 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.70748E7 30.6 18.9 50 98300 1180 1322 412 828 721 182 101634 42160 22452 9330 150 3.1 3 1 19.3 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.70784E7 32.2 17.2 41 98200 1031 1322 411 751 760 156 91471 45035 19087 7985 190 2.6 0 0 19.3 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.7082E7 32.8 17.2 39 98300 829 1322 422 544 649 135 64941 37759 16182 6543 120 3.6 1 1 19.3 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.70856E7 31.7 17.2 42 98200 589 1322 441 305 262 188 33897 17704 21001 7090 110 3.6 8 7 16.1 3660 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.70892E7 30.0 18.9 51 98300 327 1322 450 95 49 82 10542 1495 9133 2953 110 3.6 9 9 16.1 3660 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.70928E7 28.9 18.3 53 98300 72 1025 456 18 10 17 1980 0 1875 549 140 3.6 10 10 12.9 7620 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.70964E7 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 41 0.0000 0 88 0.000 0.0 1.0 +1.71E7 25.6 17.8 62 98500 0 0 394 0 0 0 0 0 0 0 0 0.0 7 3 16.1 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.71036E7 25.0 18.3 67 98500 0 0 387 0 0 0 0 0 0 0 150 3.1 6 2 19.3 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.71072E7 23.3 18.3 74 98400 0 0 373 0 0 0 0 0 0 0 250 2.6 4 1 19.3 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.71108E7 23.3 18.9 76 98400 0 0 374 0 0 0 0 0 0 0 140 2.1 3 1 19.3 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.71144E7 22.2 18.9 82 98400 0 0 374 0 0 0 0 0 0 0 130 1.5 3 2 19.3 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.7118E7 21.7 18.9 84 98400 0 0 375 0 0 0 0 0 0 0 160 2.6 4 3 19.3 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.71216E7 21.1 18.9 87 98400 0 0 368 0 0 0 0 0 0 0 0 0.0 3 2 17.7 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.71252E7 21.1 19.4 90 98400 0 0 372 0 0 0 0 0 0 0 140 2.1 4 3 17.7 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.71288E7 21.1 19.4 90 98400 11 408 375 5 0 5 0 0 0 0 170 1.5 8 4 24.1 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.71324E7 21.7 19.4 87 98500 203 1322 375 69 28 64 7447 220 6934 1992 130 2.6 9 3 24.1 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.7136E7 23.3 19.4 79 98500 468 1322 383 202 131 156 22120 7577 17166 5462 160 2.6 8 3 19.3 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.71396E7 25.6 18.9 67 98500 721 1322 391 451 375 246 50286 27698 27586 9593 150 2.6 7 2 24.1 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.71432E7 26.7 18.3 60 98500 942 1322 396 630 506 268 72545 36619 31042 11947 150 4.6 8 2 32.2 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.71468E7 27.8 18.9 58 98500 1117 1322 407 803 476 399 91960 38620 46014 16890 0 0.0 8 3 32.2 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.71504E7 28.9 18.3 53 98500 1235 1322 412 928 599 367 108838 45162 43336 16500 150 3.1 8 3 32.2 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.7154E7 30.0 18.3 50 98400 1285 1322 421 893 523 383 105107 39520 45393 17206 150 3.1 9 4 32.2 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.71576E7 30.0 18.3 50 98400 1267 1322 450 511 89 426 59493 7109 49956 18417 110 3.6 9 9 40.2 1370 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.71612E7 31.7 18.3 45 98300 1179 1322 431 795 394 443 91149 33142 51162 18385 150 4.1 8 4 40.2 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.71648E7 31.7 18.3 45 98300 1030 1322 431 682 421 354 77858 33611 40682 15117 110 4.1 9 4 40.2 2000 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.71684E7 31.7 18.3 45 98200 828 1322 431 473 320 272 53365 24229 30870 11195 110 2.1 8 4 40.2 2000 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.7172E7 31.1 18.3 47 98200 587 1322 446 208 65 179 23180 4207 20048 6862 120 5.2 8 8 40.2 3660 9 999999999 43 0.0000 0 88 0.000 0.5 1.0 +1.71756E7 23.3 21.7 90 98400 325 1322 427 36 8 34 4271 84 4040 1440 120 4.6 10 10 16.1 1520 9 999999999 43 0.0000 0 88 0.000 1.0 1.0 +1.71792E7 22.8 21.7 93 98400 71 1003 413 22 1 22 2354 0 2362 643 160 4.1 9 9 24.1 3050 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.71828E7 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 43 0.0000 0 88 0.000 0.0 1.0 +1.71864E7 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 42 0.0000 0 88 0.000 0.0 1.0 +1.719E7 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 42 0.0000 0 88 0.000 0.0 1.0 +1.71936E7 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 42 0.0000 0 88 0.000 0.0 1.0 +1.71972E7 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 42 0.0000 0 88 0.000 0.0 1.0 +1.72008E7 22.2 21.1 93 98400 0 0 383 0 0 0 0 0 0 0 70 2.1 4 4 16.1 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.72044E7 21.7 20.6 93 98400 0 0 377 0 0 0 0 0 0 0 80 2.1 3 3 16.1 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.7208E7 21.7 20.6 93 98400 0 0 373 0 0 0 0 0 0 0 70 2.6 2 2 16.1 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.72116E7 21.1 20.6 97 98300 0 0 365 0 0 0 0 0 0 0 80 3.1 1 1 16.1 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.72152E7 20.6 20.0 97 98400 10 386 376 4 0 4 0 0 0 0 100 3.6 5 5 32.2 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.72188E7 21.1 20.0 93 98400 201 1323 373 74 109 57 8051 329 6223 1847 90 3.6 6 3 32.2 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.72224E7 21.7 21.1 97 98500 466 1323 417 86 8 83 9891 306 9578 3466 120 3.1 10 10 19.3 210 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.7226E7 22.2 21.7 97 98500 719 1323 421 179 2 178 20418 120 20405 7669 120 3.6 10 10 4.0 120 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.72296E7 23.3 21.7 90 98500 941 1323 427 230 6 226 26740 380 26421 10510 130 3.6 10 10 12.9 310 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.72332E7 25.0 22.2 85 98500 1116 1323 426 331 47 292 38705 3113 34359 13588 150 3.6 9 9 19.3 610 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.72368E7 26.7 21.7 74 98500 1234 1323 426 608 187 433 70120 14469 50305 18441 100 5.2 8 8 24.1 700 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.72404E7 28.9 21.1 63 98400 1285 1323 426 794 451 355 93725 31496 42191 16286 150 5.2 7 6 32.2 760 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.7244E7 29.4 20.6 59 98300 1266 1323 428 781 496 305 93094 32958 36589 14468 110 4.1 7 6 32.2 910 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.72476E7 30.6 21.1 57 98300 1179 1323 421 777 532 302 91538 35829 35804 14123 130 3.1 5 2 32.2 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.72512E7 31.7 20.0 50 98300 1029 1323 425 747 664 229 88099 42651 27157 11001 130 5.7 5 2 32.2 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.72548E7 31.7 20.0 50 98200 827 1323 425 530 510 210 60936 33338 24272 9329 120 6.2 4 2 32.2 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.72584E7 31.7 19.4 48 98200 586 1323 419 349 516 120 40116 26932 13849 5125 120 3.6 3 1 32.2 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.7262E7 30.0 19.4 53 98200 323 1323 410 141 278 73 15773 7384 8194 2705 140 3.1 3 1 32.2 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.72656E7 27.2 20.6 67 98200 70 1003 406 27 14 25 2856 0 2654 679 250 4.1 5 3 32.2 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.72692E7 25.6 20.6 74 98300 0 0 388 0 0 0 0 0 0 0 250 3.6 2 1 32.2 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.72728E7 25.6 20.6 74 98400 0 0 388 0 0 0 0 0 0 0 240 2.1 2 1 32.2 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.72764E7 23.3 20.6 84 98400 0 0 376 0 0 0 0 0 0 0 0 0.0 2 1 32.2 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.728E7 22.8 20.6 87 98400 0 0 373 0 0 0 0 0 0 0 0 0.0 2 1 32.2 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.72836E7 22.8 20.6 87 98400 0 0 373 0 0 0 0 0 0 0 0 0.0 2 1 24.1 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.72872E7 22.8 20.6 87 98300 0 0 373 0 0 0 0 0 0 0 230 2.1 2 1 24.1 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.72908E7 21.7 20.6 93 98300 0 0 361 0 0 0 0 0 0 0 0 0.0 1 0 24.1 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.72944E7 21.1 20.6 97 98300 0 0 358 0 0 0 0 0 0 0 0 0.0 1 0 24.1 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.7298E7 21.1 20.6 97 98200 0 0 358 0 0 0 0 0 0 0 140 2.1 1 0 24.1 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.73016E7 21.1 20.6 97 98300 9 386 374 4 1 4 0 0 0 0 110 1.5 7 3 24.1 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.73052E7 21.7 20.6 93 98400 198 1323 361 82 218 49 9017 0 5406 1662 270 1.5 3 0 32.2 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.73088E7 23.9 20.6 82 98500 464 1323 372 267 517 85 30650 20261 9790 3527 280 3.1 1 0 32.2 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.73124E7 26.1 19.4 67 98500 717 1323 382 480 663 119 56646 35437 14098 5550 180 1.5 1 0 32.2 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.7316E7 27.8 19.4 61 98500 939 1323 390 677 754 139 81904 42030 16888 7026 0 0.0 0 0 40.2 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.73196E7 28.9 19.4 57 98500 1115 1323 404 786 736 164 96335 41860 20196 8459 180 2.6 2 1 40.2 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.73232E7 30.0 19.4 53 98500 1233 1323 426 775 468 337 91375 33455 39996 15505 180 3.1 5 5 40.2 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.73268E7 30.6 19.4 52 98400 1284 1323 426 881 666 233 107569 40761 28611 11664 180 3.1 5 4 40.2 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.73304E7 31.1 19.4 50 98300 1265 1323 436 862 495 387 100985 37235 45655 17249 200 4.1 6 6 40.2 1370 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.7334E7 32.8 19.4 45 98200 1178 1323 438 835 606 294 98743 41617 34983 13834 200 2.1 4 4 40.2 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.73376E7 32.8 19.4 45 98200 1028 1323 435 802 753 215 95093 47754 25629 10454 190 3.6 3 3 40.2 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.73412E7 32.8 19.4 45 98100 825 1323 431 491 504 176 57270 30970 20628 8132 260 2.1 2 2 40.2 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.73448E7 32.2 18.9 45 98100 584 1323 427 350 556 103 40729 27501 12029 4525 250 2.1 2 2 40.2 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.73484E7 31.7 18.9 47 98100 322 1323 424 154 285 83 17045 8666 9221 2957 200 3.1 2 2 40.2 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.7352E7 29.4 19.4 55 98200 68 981 412 29 31 26 3055 0 2749 681 160 4.1 5 2 40.2 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.73556E7 28.3 20.0 61 98200 0 0 394 0 0 0 0 0 0 0 240 2.6 0 0 32.2 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.73592E7 27.8 20.0 63 98300 0 0 391 0 0 0 0 0 0 0 240 3.6 0 0 32.2 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.73628E7 26.1 19.4 67 98300 0 0 382 0 0 0 0 0 0 0 270 3.6 0 0 32.2 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.73664E7 24.4 19.4 74 98300 0 0 373 0 0 0 0 0 0 0 270 2.6 0 0 32.2 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.737E7 24.4 20.0 76 98300 0 0 374 0 0 0 0 0 0 0 240 3.1 0 0 24.1 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.73736E7 23.9 20.0 79 98300 0 0 371 0 0 0 0 0 0 0 270 2.6 0 0 24.1 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.73772E7 22.8 19.4 82 98200 0 0 365 0 0 0 0 0 0 0 300 2.1 0 0 24.1 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.73808E7 22.8 19.4 82 98200 0 0 365 0 0 0 0 0 0 0 260 2.1 1 0 24.1 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.73844E7 22.8 20.0 84 98300 0 0 366 0 0 0 0 0 0 0 0 0.0 1 0 24.1 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.7388E7 22.8 19.4 82 98300 9 364 381 5 2 5 0 0 0 0 280 2.1 7 3 24.1 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.73916E7 23.3 20.0 82 98400 196 1323 384 76 113 59 8224 376 6408 1863 310 4.1 7 3 24.1 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.73952E7 25.6 20.6 74 98400 462 1323 393 256 404 114 28682 18626 12825 4408 310 6.2 6 2 24.1 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.73988E7 28.9 21.1 63 98500 715 1323 411 471 572 161 54159 33161 18600 7086 340 5.2 4 2 24.1 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.74024E7 30.0 21.1 59 98400 938 1323 417 630 609 197 74052 36938 23276 9416 280 4.1 5 2 24.1 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.7406E7 31.1 21.1 55 98500 1114 1323 443 656 403 315 76324 28255 36885 14364 300 3.1 8 7 24.1 910 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.74096E7 32.2 20.0 48 98400 1232 1323 448 746 389 382 87032 29148 44876 16956 290 4.1 7 7 24.1 910 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.74132E7 32.8 20.0 47 98400 1283 1323 459 700 293 415 81706 22423 48790 18175 250 5.2 8 8 24.1 1070 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.74168E7 32.8 19.4 45 98300 1264 1323 458 814 383 447 94275 30871 52153 18983 220 4.1 8 8 24.1 1220 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.74204E7 33.3 19.4 44 98200 1177 1323 441 827 641 255 98861 41635 30662 12369 240 4.1 4 4 40.2 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.7424E7 33.3 18.9 42 98100 1027 1323 441 664 548 237 78164 36397 28055 11296 240 3.1 4 4 40.2 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.74276E7 33.9 18.9 41 98000 824 1323 441 589 653 180 68599 40860 21066 8273 240 3.1 5 3 40.2 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.74312E7 33.3 18.9 42 98000 583 1323 433 350 505 126 40070 27200 14485 5312 200 4.1 5 2 40.2 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.74348E7 31.7 18.9 47 98000 320 1323 418 151 335 70 16939 8616 7878 2610 220 4.6 5 1 40.2 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.74384E7 29.4 18.9 53 98000 66 981 406 25 51 19 2701 0 2059 571 240 4.1 3 1 40.2 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.7442E7 28.9 18.9 55 98100 0 0 403 0 0 0 0 0 0 0 240 4.1 3 1 32.2 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.74456E7 27.8 18.3 56 98100 0 0 397 0 0 0 0 0 0 0 260 4.1 3 1 32.2 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.74492E7 26.7 17.8 58 98100 0 0 390 0 0 0 0 0 0 0 260 4.1 3 1 32.2 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.74528E7 26.1 17.8 60 98100 0 0 387 0 0 0 0 0 0 0 270 4.1 3 1 24.1 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.74564E7 25.0 18.3 67 98100 0 0 382 0 0 0 0 0 0 0 270 4.1 3 1 24.1 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.746E7 25.0 18.3 67 98100 0 0 382 0 0 0 0 0 0 0 280 4.1 3 1 24.1 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.74636E7 23.3 18.3 74 98100 0 0 382 0 0 0 0 0 0 0 280 3.6 8 3 24.1 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.74672E7 22.2 18.9 82 98100 0 0 369 0 0 0 0 0 0 0 270 3.6 4 1 24.1 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.74708E7 21.7 19.4 87 98100 0 0 367 0 0 0 0 0 0 0 270 2.6 4 1 24.1 2000 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.74744E7 21.7 19.4 87 98100 8 342 367 3 1 3 0 0 0 0 280 3.6 3 1 24.1 2000 9 999999999 45 0.0000 0 88 0.000 0.0 1.0 +1.7478E7 22.8 19.4 82 98200 193 1323 365 77 168 53 8403 44 5804 1732 300 5.7 4 0 24.1 2000 9 999999999 46 0.0000 0 88 0.000 0.0 1.0 +1.74816E7 25.6 20.0 71 98100 460 1323 387 250 409 107 28158 18424 12099 4198 270 4.1 5 1 24.1 2000 9 999999999 46 0.0000 0 88 0.000 0.0 1.0 +1.74852E7 27.8 20.6 65 98200 713 1323 399 456 550 158 52524 31979 18283 6973 270 5.2 5 1 19.3 2000 9 999999999 47 0.0000 0 88 0.000 0.0 1.0 +1.74888E7 30.0 21.7 61 98200 936 1323 413 622 594 200 72956 35785 23581 9524 270 6.2 5 1 19.3 2000 9 999999999 47 0.0000 0 88 0.000 0.0 1.0 +1.74924E7 32.2 21.1 52 98200 1113 1323 437 746 493 330 86460 35331 38497 14846 300 5.2 5 4 19.3 2000 9 999999999 47 0.0000 0 88 0.000 0.0 1.0 +1.7496E7 32.8 20.6 49 98200 1231 1323 437 878 665 258 105505 41797 31187 12595 290 5.2 4 3 19.3 2000 9 999999999 48 0.0000 0 88 0.000 0.0 1.0 +1.74996E7 33.9 20.0 44 98100 1282 1323 458 535 169 371 62987 12283 43981 16806 330 4.1 8 7 19.3 1520 9 999999999 48 0.0000 0 88 0.000 0.0 1.0 +1.75032E7 31.7 20.0 50 98000 1263 1323 462 359 25 334 42505 1746 39807 15498 350 9.3 9 9 19.3 1070 9 999999999 48 0.0000 0 88 0.000 0.0 1.0 +1.75068E7 30.0 21.1 59 98000 1176 1323 466 416 7 410 47824 544 47472 17501 20 5.2 10 10 19.3 7620 9 999999999 49 0.0000 0 88 0.000 0.0 1.0 +1.75104E7 32.2 21.1 52 98000 1026 1323 467 432 76 373 48932 5986 42539 15591 360 4.6 10 9 19.3 7620 9 999999999 49 0.0000 0 88 0.000 0.0 1.0 +1.7514E7 28.9 22.2 67 98000 823 1323 461 254 54 221 28990 3461 25362 9664 190 4.1 10 10 24.1 3660 9 999999999 49 0.0000 0 88 0.000 0.0 1.0 +1.75176E7 24.4 18.9 71 98100 581 1323 430 101 5 99 11782 243 11590 4370 250 6.2 10 10 32.2 3660 9 999999999 50 0.0000 0 88 0.000 0.0 1.0 +1.75212E7 23.9 19.4 76 98000 318 1323 428 56 1 56 6389 20 6407 2190 170 2.6 10 10 32.2 3660 9 999999999 50 0.0000 0 88 0.000 0.0 1.0 +1.75248E7 22.8 20.0 84 98100 65 959 422 21 0 21 2001 0 2015 597 230 1.5 10 10 24.1 3660 9 999999999 50 0.0000 0 88 0.000 0.0 1.0 +1.75284E7 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 50 0.0000 0 88 0.000 0.0 1.0 +1.7532E7 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 49 0.0000 0 88 0.000 0.0 1.0 +1.75356E7 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 49 0.0000 0 88 0.000 0.0 1.0 +1.75392E7 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 49 0.0000 0 88 0.000 0.0 1.0 +1.75428E7 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 49 0.0000 0 88 0.000 0.0 1.0 +1.75464E7 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 49 0.0000 0 88 0.000 0.0 1.0 +1.755E7 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 49 0.0000 0 88 0.000 0.0 1.0 +1.75536E7 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 48 0.0000 0 88 0.000 0.0 1.0 +1.75572E7 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 48 0.0000 0 88 0.000 0.0 1.0 +1.75608E7 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 48 0.0000 0 88 0.000 0.0 1.0 +1.75644E7 22.2 20.6 90 98300 190 1323 399 46 49 39 5136 0 4366 1388 70 4.1 10 8 9.7 3660 9 999999999 48 0.0000 0 88 0.000 0.0 1.0 +1.7568E7 23.9 21.1 85 98300 457 1323 380 251 470 88 28668 18295 10086 3605 70 6.2 3 1 9.7 2000 9 999999999 47 0.0000 0 88 0.000 0.0 1.0 +1.75716E7 26.7 21.1 72 98300 712 1323 387 473 667 113 55883 33613 13401 5295 70 5.7 0 0 11.3 2000 9 999999999 45 0.0000 0 88 0.000 0.0 1.0 +1.75752E7 27.2 21.1 69 98400 935 1323 406 645 686 159 77043 38495 19080 7874 70 7.2 3 3 11.3 2000 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +1.75788E7 27.8 21.7 69 98400 1112 1323 417 657 428 296 76731 28871 34787 13711 70 6.7 5 5 11.3 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.75824E7 27.2 21.7 72 98400 1230 1323 450 276 5 271 32995 313 32596 13101 90 6.2 10 10 11.3 910 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.7586E7 29.4 21.7 63 98300 1281 1323 451 491 79 414 57196 5872 48577 18136 100 5.2 10 9 11.3 910 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.75896E7 29.4 21.1 61 98300 1263 1323 428 661 256 416 76828 19409 48702 18107 70 5.7 8 6 11.3 7620 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.75932E7 28.9 21.1 63 98300 1175 1323 422 723 528 253 86301 33119 30377 12287 80 6.2 6 5 9.7 7620 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.75968E7 29.4 21.1 61 98200 1024 1323 422 672 601 205 79787 36240 24468 10045 90 5.2 5 4 12.9 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.76004E7 30.0 20.6 57 98200 821 1323 421 557 590 189 64477 36483 21988 8581 110 6.2 3 3 12.9 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.7604E7 28.9 20.0 59 98200 579 1323 410 350 492 133 39821 26517 15197 5521 110 4.6 2 2 12.9 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.76076E7 28.3 18.3 55 98200 315 1323 399 140 306 66 15769 7508 7458 2485 110 4.6 2 1 19.3 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.76112E7 27.2 18.3 58 98200 63 937 393 24 43 19 2582 0 2050 557 110 4.1 2 1 19.3 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.76148E7 25.6 17.8 62 98300 0 0 384 0 0 0 0 0 0 0 110 4.1 4 1 19.3 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.76184E7 25.0 17.8 64 98300 0 0 381 0 0 0 0 0 0 0 100 3.1 3 1 19.3 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.7622E7 24.4 17.2 64 98400 0 0 370 0 0 0 0 0 0 0 120 3.1 0 0 19.3 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.76256E7 23.9 17.2 66 98400 0 0 368 0 0 0 0 0 0 0 120 4.1 0 0 19.3 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.76292E7 22.2 17.8 76 98300 0 0 360 0 0 0 0 0 0 0 160 3.1 0 0 19.3 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.76328E7 21.7 18.9 84 98300 0 0 375 0 0 0 0 0 0 0 150 2.6 3 3 16.1 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.76364E7 21.1 18.9 87 98300 0 0 372 0 0 0 0 0 0 0 130 2.6 3 3 16.1 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +1.764E7 20.6 18.9 90 98300 0 0 354 0 0 0 0 0 0 0 130 2.1 0 0 12.9 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.76436E7 20.6 18.9 90 98300 0 0 354 0 0 0 0 0 0 0 120 2.6 0 0 9.7 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +1.76472E7 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 24 0.0000 0 88 0.000 0.0 1.0 +1.76508E7 21.1 19.4 90 98400 188 1324 400 48 15 45 5296 0 4981 1534 150 2.1 9 9 8.0 1680 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +1.76544E7 22.2 20.0 87 98400 455 1324 388 265 374 136 29230 19443 15070 4931 170 3.6 6 6 9.7 1830 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +1.7658E7 25.0 20.6 76 98400 710 1324 377 480 689 109 56880 34713 12964 5129 170 3.6 0 0 12.9 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +1.76616E7 27.2 16.7 53 98400 933 1324 384 681 774 133 82780 44807 16233 6745 180 4.6 0 0 24.1 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +1.76652E7 27.8 17.2 53 98400 1110 1324 388 835 814 150 103148 47093 18612 7816 180 4.1 0 0 24.1 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +1.76688E7 28.9 16.7 48 98300 1229 1324 393 958 836 179 118711 50074 22291 9243 180 3.6 2 0 24.1 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +1.76724E7 30.0 16.1 43 98300 1280 1324 398 997 840 182 124271 50525 22800 9426 170 4.1 2 0 24.1 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +1.7676E7 30.0 16.1 43 98300 1262 1324 405 935 757 212 114959 47723 26206 10738 200 5.2 3 1 24.1 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +1.76796E7 30.6 16.1 42 98200 1174 1324 409 879 773 191 107664 48113 23513 9719 100 3.6 4 1 24.1 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +1.76832E7 31.1 16.1 40 98100 1023 1324 411 744 754 158 90513 45689 19309 8059 220 4.1 3 1 24.1 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +1.76868E7 31.1 16.7 42 98100 820 1324 418 549 613 167 64398 38677 19680 7773 210 4.6 2 2 24.1 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +1.76904E7 30.6 16.1 42 98000 577 1324 409 318 483 106 36962 25457 12365 4611 210 2.6 1 1 24.1 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +1.7694E7 30.0 16.1 43 98100 313 1324 398 159 413 60 18071 10050 6839 2303 180 2.6 0 0 24.1 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +1.76976E7 28.9 16.1 46 98100 61 938 392 28 55 22 2972 0 2343 592 170 2.1 0 0 24.1 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.77012E7 26.7 17.2 56 98100 0 0 382 0 0 0 0 0 0 0 140 3.1 0 0 19.3 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.77048E7 25.6 17.2 60 98100 0 0 377 0 0 0 0 0 0 0 140 3.6 0 0 19.3 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +1.77084E7 25.0 15.6 56 98200 0 0 372 0 0 0 0 0 0 0 160 3.1 0 0 24.1 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.7712E7 23.9 14.4 56 98200 0 0 365 0 0 0 0 0 0 0 230 2.6 0 0 24.1 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.77156E7 23.9 15.0 58 98200 0 0 365 0 0 0 0 0 0 0 200 2.1 2 0 32.2 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.77192E7 22.2 16.7 71 98100 0 0 359 0 0 0 0 0 0 0 140 1.5 0 0 32.2 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.77228E7 21.7 16.1 71 98000 0 0 356 0 0 0 0 0 0 0 190 5.2 1 0 32.2 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.77264E7 21.7 16.1 71 98000 0 0 356 0 0 0 0 0 0 0 180 4.1 2 0 32.2 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.773E7 21.7 16.1 71 98100 0 0 363 0 0 0 0 0 0 0 180 3.6 3 1 32.2 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.77336E7 21.1 16.7 76 98100 6 298 361 3 7 2 0 0 0 0 180 3.6 3 1 32.2 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.77372E7 21.1 16.7 76 98100 185 1324 365 77 187 51 8419 109 5595 1658 190 4.1 8 2 32.2 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.77408E7 21.7 17.2 76 98200 453 1324 376 236 385 104 26670 18115 11798 4081 210 5.2 5 4 32.2 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.77444E7 24.4 18.3 69 98200 708 1324 372 485 743 85 58689 36557 10317 4122 190 5.2 0 0 24.1 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.7748E7 26.1 20.0 69 98100 932 1324 382 677 796 115 82928 41543 14141 5927 190 4.6 2 0 19.3 2000 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.77516E7 28.9 21.1 63 98100 1109 1324 415 807 693 225 96304 42332 27000 11051 230 5.2 6 3 16.1 2000 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +1.77552E7 30.0 20.0 55 98100 1228 1324 427 679 349 354 79636 25296 41799 16050 220 4.6 8 5 16.1 7620 9 999999999 45 0.0000 0 88 0.000 0.0 1.0 +1.77588E7 30.0 20.6 57 98000 1279 1324 453 432 36 398 50527 2679 46882 17645 200 5.2 10 9 12.9 3050 9 999999999 46 0.0000 0 88 0.000 0.0 1.0 +1.77624E7 30.6 20.6 55 97900 1261 1324 440 556 164 399 64853 12299 46871 17594 220 5.2 8 7 12.9 3050 9 999999999 47 0.0000 0 88 0.000 0.0 1.0 +1.7766E7 29.4 21.7 63 97900 1173 1324 463 348 11 339 40564 773 39779 15361 320 3.1 10 10 14.5 940 9 999999999 48 0.0000 0 88 0.000 0.0 1.0 +1.77696E7 29.4 22.2 65 97900 1022 1324 464 283 4 280 32736 269 32587 12802 280 4.1 10 10 12.9 910 9 999999999 49 0.0000 0 88 0.000 8.4 1.0 +1.77732E7 22.8 21.1 90 98000 818 1324 424 162 5 159 18988 286 18723 7462 270 4.1 10 10 11.3 1520 9 999999999 50 0.0000 0 88 0.000 0.0 1.0 +1.77768E7 23.3 20.6 84 97900 575 1324 426 89 3 87 10457 132 10256 3905 190 3.1 10 10 19.3 7620 9 999999999 51 0.0000 0 88 0.000 0.0 1.0 +1.77804E7 23.3 21.1 87 97900 311 1324 426 43 3 43 4990 38 5002 1748 200 3.6 10 10 19.3 2740 9 999999999 52 0.0000 0 88 0.000 0.0 1.0 +1.7784E7 22.8 21.7 93 97800 59 916 424 17 1 17 1828 0 1834 506 230 3.1 10 10 16.1 7620 9 999999999 52 0.0000 0 88 0.000 0.0 1.0 +1.77876E7 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 52 0.0000 0 88 0.000 0.0 1.0 +1.77912E7 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 52 0.0000 0 88 0.000 0.0 1.0 +1.77948E7 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 52 0.0000 0 88 0.000 0.0 1.0 +1.77984E7 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 52 0.0000 0 88 0.000 0.0 1.0 +1.7802E7 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 53 0.0000 0 88 0.000 0.0 1.0 +1.78056E7 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 53 0.0000 0 88 0.000 0.0 1.0 +1.78092E7 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 53 0.0000 0 88 0.000 0.0 1.0 +1.78128E7 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 53 0.0000 0 88 0.000 0.0 1.0 +1.78164E7 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 53 0.0000 0 88 0.000 0.0 1.0 +1.782E7 22.2 22.2 100 97900 24 298 422 4 0 4 0 0 0 0 310 4.1 10 10 2.4 60 9 999999999 53 0.0000 0 88 0.000 0.0 1.0 +1.78236E7 22.2 22.2 100 97900 182 1324 422 45 0 45 4327 0 4359 1516 310 4.6 10 10 2.4 60 9 999999999 53 0.0000 0 88 0.000 0.0 1.0 +1.78272E7 23.3 22.8 97 98000 450 1324 429 113 1 113 12598 42 12651 4325 330 2.6 10 10 4.0 210 9 999999999 52 0.0000 0 88 0.000 0.0 1.0 +1.78308E7 23.9 22.8 94 98100 706 1324 432 223 1 223 24875 66 25015 8886 310 2.6 10 10 4.8 270 9 999999999 51 0.0000 0 88 0.000 0.0 1.0 +1.78344E7 26.1 23.3 85 98100 930 1324 446 315 0 315 32291 0 32609 13239 300 3.6 10 10 8.0 370 9 999999999 50 0.0000 0 88 0.000 0.0 1.0 +1.7838E7 27.8 23.3 77 98100 1108 1324 419 783 503 361 89780 36163 41677 15771 270 3.1 5 5 9.7 2000 9 999999999 49 0.0000 0 88 0.000 0.0 1.0 +1.78416E7 28.9 23.3 72 98100 1227 1324 414 873 593 322 102728 38615 38141 14966 310 2.6 5 2 11.3 2000 9 999999999 48 0.0000 0 88 0.000 0.0 1.0 +1.78452E7 29.4 22.8 67 98000 1278 1324 424 856 451 419 99437 33070 49030 18267 290 2.6 6 4 12.9 7620 9 999999999 48 0.0000 0 88 0.000 0.0 1.0 +1.78488E7 30.6 21.7 59 97900 1260 1324 448 624 172 460 71867 13599 53379 19295 320 2.6 9 8 12.9 7620 9 999999999 47 0.0000 0 88 0.000 0.0 1.0 +1.78524E7 31.1 22.2 59 97900 1172 1324 462 518 169 368 59943 12235 42879 16268 340 5.2 9 9 12.9 1220 9 999999999 46 0.0000 0 88 0.000 0.0 1.0 +1.7856E7 30.6 21.7 59 97800 1020 1324 458 453 155 333 51701 11428 38255 14454 340 4.1 9 9 12.9 1220 9 999999999 45 0.0000 0 88 0.000 0.0 1.0 +1.78596E7 30.6 21.7 59 97800 816 1324 458 464 240 315 51426 18688 35137 12119 340 4.1 9 9 12.9 1220 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +1.78632E7 30.6 21.7 59 97800 573 1324 458 186 57 161 20769 3257 18064 6305 340 4.1 9 9 12.9 7620 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.78668E7 27.8 22.8 74 97800 308 1324 443 51 19 46 5870 208 5308 1846 180 3.6 9 9 11.3 7620 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.78704E7 25.6 22.8 85 97900 57 894 442 16 0 16 1517 0 1528 481 180 7.7 10 10 9.7 550 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.7874E7 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 42 0.0000 0 88 0.000 0.0 1.0 +1.78776E7 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 41 0.0000 0 88 0.000 0.0 1.0 +1.78812E7 23.3 22.8 97 97900 0 0 391 0 0 0 0 0 0 0 220 2.6 5 4 11.3 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.78848E7 22.8 22.8 100 97900 0 0 376 0 0 0 0 0 0 0 270 2.6 4 1 11.3 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.78884E7 22.8 22.8 100 97900 0 0 376 0 0 0 0 0 0 0 0 0.0 4 1 11.3 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.7892E7 22.8 22.8 100 97900 0 0 376 0 0 0 0 0 0 0 110 2.6 4 1 8.0 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.78956E7 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 40 0.0000 0 88 0.000 0.0 1.0 +1.78992E7 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 40 0.0000 0 88 0.000 0.0 1.0 +1.79028E7 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 40 0.0000 0 88 0.000 0.0 1.0 +1.79064E7 21.7 21.7 100 98100 18 276 418 3 0 3 0 0 0 0 60 7.2 10 10 8.0 210 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.791E7 21.7 21.7 100 98100 180 1324 418 33 0 33 3174 0 3198 1199 70 5.2 10 10 8.0 240 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.79136E7 21.7 21.1 97 98200 448 1324 417 74 3 73 8559 104 8469 3072 70 6.2 10 10 8.0 580 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.79172E7 21.1 20.6 97 98200 704 1324 413 109 1 108 12911 50 12840 5072 90 6.2 10 10 8.0 850 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.79208E7 21.1 20.6 97 98200 929 1324 413 348 2 346 39068 159 39101 14017 70 6.7 10 10 8.0 910 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.79244E7 22.8 20.0 84 98200 1107 1324 422 357 2 356 41135 152 41295 15617 60 7.2 10 10 9.7 1010 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.7928E7 23.3 19.4 79 98200 1225 1324 413 486 84 408 56383 6571 47671 17694 90 6.2 9 9 12.9 1830 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.79316E7 24.4 18.9 71 98100 1277 1324 430 463 18 446 53748 1453 52157 19021 90 5.7 10 10 12.9 1980 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.79352E7 25.0 18.9 69 98100 1259 1324 433 435 10 425 50560 794 49756 18342 90 5.2 10 10 12.9 1980 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.79388E7 24.4 19.4 74 98100 1170 1324 431 437 8 430 50097 656 49651 17996 140 5.7 10 10 12.9 1070 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.79424E7 22.2 20.0 87 98100 1019 1324 419 295 2 293 34072 143 34050 13215 140 6.2 10 10 11.3 1070 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.7946E7 21.7 20.0 90 98100 815 1324 416 249 7 245 28217 493 27922 10337 140 4.1 10 10 9.7 1070 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.79496E7 21.7 20.0 90 98100 571 1324 416 179 3 178 19853 188 19842 6723 130 3.6 10 10 9.7 1220 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.79532E7 21.7 20.0 90 98100 306 1324 416 66 1 66 7398 22 7422 2455 110 5.2 10 10 9.7 1220 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.79568E7 21.7 20.0 90 98200 56 894 416 19 0 19 1808 0 1821 520 90 5.7 10 10 9.7 1220 9 999999999 36 0.0000 0 88 0.000 1.0 1.0 +1.79604E7 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 36 0.0000 0 88 0.000 0.0 1.0 +1.7964E7 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 37 0.0000 0 88 0.000 0.0 1.0 +1.79676E7 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 37 0.0000 0 88 0.000 0.0 1.0 +1.79712E7 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 38 0.0000 0 88 0.000 0.5 1.0 +1.79748E7 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 38 0.0000 0 88 0.000 0.0 1.0 +1.79784E7 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 39 0.0000 0 88 0.000 0.0 1.0 +1.7982E7 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 40 0.0000 0 88 0.000 0.5 1.0 +1.79856E7 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 40 0.0000 0 88 0.000 0.5 1.0 +1.79892E7 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 41 0.0000 0 88 0.000 0.0 1.0 +1.79928E7 19.4 19.4 100 98200 6 254 402 1 0 1 0 0 0 0 50 3.6 10 10 2.4 90 9 999999999 41 0.0000 0 88 0.000 0.3 1.0 +1.79964E7 19.4 19.4 100 98300 177 1325 402 28 0 28 2701 0 2721 1046 60 4.1 10 10 0.8 90 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.8E7 19.4 19.4 100 98400 446 1325 402 81 1 81 9303 39 9333 3338 60 6.2 10 10 2.4 90 9 999999999 42 0.0000 0 88 0.000 0.3 1.0 +1.80036E7 19.4 19.4 100 98400 702 1325 402 138 1 138 16051 56 16119 6214 70 6.7 10 10 2.4 120 9 999999999 42 0.0000 0 88 0.000 0.5 1.0 +1.80072E7 19.4 19.4 100 98500 927 1325 402 187 1 187 22069 62 22179 8980 70 6.7 10 10 2.4 120 9 999999999 42 0.0000 0 88 0.000 0.8 1.0 +1.80108E7 19.4 19.4 100 98500 1105 1325 402 249 1 249 29518 66 29688 11982 80 7.2 10 10 2.4 150 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.80144E7 19.4 19.4 100 98500 1224 1325 402 261 1 260 31351 65 31417 12659 80 7.7 10 10 3.2 210 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.8018E7 19.4 19.4 100 98500 1276 1325 402 278 0 278 29482 0 29796 13468 90 6.2 10 10 3.2 180 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.80216E7 19.4 19.4 100 98500 1257 1325 402 487 2 485 55977 169 56171 19902 80 7.2 10 10 4.8 180 9 999999999 43 0.0000 0 88 0.000 0.3 1.0 +1.80252E7 19.4 19.4 100 98400 1169 1325 402 243 0 243 25545 0 25809 11880 80 7.2 10 10 4.8 180 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.80288E7 19.4 18.9 97 98400 1017 1325 402 356 1 355 40528 80 40683 15046 70 5.7 10 10 9.7 370 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.80324E7 18.9 17.8 93 98400 813 1325 398 275 1 274 30940 77 31011 11114 110 7.2 10 10 11.3 490 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.8036E7 18.9 17.8 93 98400 569 1325 398 192 1 192 21199 68 21310 7027 100 7.2 10 10 11.3 490 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.80396E7 18.9 17.8 93 98500 303 1325 398 82 1 82 9041 30 9075 2853 90 6.2 10 10 9.7 340 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.80432E7 18.3 17.8 97 98400 54 872 394 21 0 21 2004 0 2017 529 90 6.2 10 10 9.7 270 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.80468E7 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 43 0.0000 0 88 0.000 0.0 1.0 +1.80504E7 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 44 0.0000 0 88 0.000 0.0 1.0 +1.8054E7 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 44 0.0000 0 88 0.000 0.0 1.0 +1.80576E7 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 44 0.0000 0 88 0.000 0.0 1.0 +1.80612E7 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 44 0.0000 0 88 0.000 0.0 1.0 +1.80648E7 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 45 0.0000 0 88 0.000 0.0 1.0 +1.80684E7 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 45 0.0000 0 88 0.000 0.0 1.0 +1.8072E7 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 45 0.0000 0 88 0.000 0.0 1.0 +1.80756E7 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 46 0.0000 0 88 0.000 0.3 1.0 +1.80792E7 17.8 17.2 97 98300 6 232 391 1 0 1 0 0 0 0 90 2.6 10 10 3.2 150 9 999999999 46 0.0000 0 88 0.000 9.9 1.0 +1.80828E7 17.8 17.8 100 98300 174 1325 392 31 0 31 2995 0 3017 1131 70 3.6 10 10 0.8 60 9 999999999 46 0.0000 0 88 0.000 9.9 1.0 +1.80864E7 17.8 17.8 100 98400 444 1325 392 72 0 72 7127 0 7185 3025 90 2.1 10 10 0.4 60 9 999999999 47 0.0000 0 88 0.000 9.9 1.0 +1.809E7 17.8 17.8 100 98400 700 1325 392 131 1 131 15317 57 15380 5948 90 2.1 10 10 1.3 120 9 999999999 47 0.0000 0 88 0.000 9.9 1.0 +1.80936E7 18.3 18.3 100 98300 925 1325 395 188 0 188 19387 0 19574 9012 100 2.1 10 10 2.4 90 9 999999999 48 0.0000 0 88 0.000 0.0 1.0 +1.80972E7 19.4 19.4 100 98300 1104 1325 402 400 0 400 41820 0 42246 16828 130 3.1 10 10 2.4 240 9 999999999 48 0.0000 0 88 0.000 0.0 1.0 +1.81008E7 20.0 20.0 100 98300 1223 1325 406 440 1 439 50700 80 50956 18533 180 3.1 10 10 3.2 120 9 999999999 48 0.0000 0 88 0.000 4.1 1.0 +1.81044E7 20.0 20.0 100 98200 1275 1325 406 273 1 272 32881 64 32961 13231 170 3.6 10 10 2.4 90 9 999999999 49 0.0000 0 88 0.000 0.0 1.0 +1.8108E7 21.7 21.7 100 98200 1256 1325 418 260 1 259 31296 61 31363 12681 200 3.1 10 10 6.4 120 9 999999999 49 0.0000 0 88 0.000 0.0 1.0 +1.81116E7 23.9 22.8 94 98100 1168 1325 432 407 1 406 46666 75 46887 17343 220 3.1 10 10 11.3 270 9 999999999 50 0.0000 0 88 0.000 0.0 1.0 +1.81152E7 24.4 22.8 90 98100 1016 1325 435 218 0 218 22526 0 22753 10528 200 3.1 10 10 11.3 370 9 999999999 51 0.0000 0 88 0.000 0.3 1.0 +1.81188E7 22.8 21.7 93 98100 811 1325 424 155 0 155 15765 0 15913 7279 170 4.1 10 10 6.4 120 9 999999999 51 0.0000 0 88 0.000 0.3 1.0 +1.81224E7 22.2 21.7 97 98100 566 1325 421 110 0 110 10954 0 11050 4713 190 3.1 10 10 9.7 210 9 999999999 52 0.0000 0 88 0.000 0.0 1.0 +1.8126E7 21.7 21.7 100 98100 300 1325 418 81 0 81 7878 0 7940 2817 210 3.6 10 10 11.3 760 9 999999999 52 0.0000 0 88 0.000 0.0 1.0 +1.81296E7 21.1 21.1 100 98100 52 850 403 20 1 20 2093 0 2101 505 220 3.6 9 9 16.1 2440 9 999999999 51 0.0000 0 88 0.000 0.0 1.0 +1.81332E7 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 50 0.0000 0 88 0.000 0.0 1.0 +1.81368E7 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 48 0.0000 0 88 0.000 0.0 1.0 +1.81404E7 20.6 20.6 100 98100 0 0 374 0 0 0 0 0 0 0 250 3.6 9 4 11.3 2000 9 999999999 47 0.0000 0 88 0.000 0.0 1.0 +1.8144E7 20.0 20.0 100 98100 0 0 370 0 0 0 0 0 0 0 260 3.6 9 4 11.3 2000 9 999999999 46 0.0000 0 88 0.000 0.0 1.0 +1.81476E7 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 45 0.0000 0 88 0.000 0.0 1.0 +1.81512E7 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 44 0.0000 0 88 0.000 0.0 1.0 +1.81548E7 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 43 0.0000 0 88 0.000 0.0 1.0 +1.81584E7 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 42 0.0000 0 88 0.000 0.0 1.0 +1.8162E7 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 40 0.0000 0 88 0.000 0.0 1.0 +1.81656E7 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 39 0.0000 0 88 0.000 0.0 1.0 +1.81692E7 21.7 21.7 100 98100 172 1325 407 42 11 41 4619 0 4523 1388 230 3.6 10 9 2.4 150 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.81728E7 22.2 22.2 100 98100 441 1325 422 77 3 76 8849 100 8762 3156 280 3.6 10 10 4.8 120 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.81764E7 23.9 22.8 94 98200 698 1325 432 180 9 175 20446 522 19977 7450 290 3.6 10 10 6.4 270 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.818E7 24.4 22.8 90 98200 924 1325 435 270 10 263 30880 666 30259 11656 310 3.1 10 10 8.0 400 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.81836E7 27.2 22.2 74 98100 1103 1325 429 573 242 371 65593 18076 42763 16030 320 3.1 9 8 12.9 520 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.81872E7 27.8 22.2 72 98100 1222 1325 433 679 395 313 80127 26072 37177 14633 280 2.1 8 8 12.9 670 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.81908E7 29.4 22.2 65 98000 1274 1325 442 564 233 339 66614 15664 40309 15699 310 2.1 8 8 16.1 910 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.81944E7 30.0 21.1 59 97900 1255 1325 428 722 333 405 83993 24999 47453 17744 290 3.6 5 5 11.3 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.8198E7 30.6 21.1 57 97900 1166 1325 435 683 365 360 79211 26741 42035 15998 300 2.1 6 6 9.7 980 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.82016E7 30.6 21.1 57 97800 1014 1325 432 567 442 228 66658 27858 26953 10905 340 2.6 5 5 9.7 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.82052E7 30.6 21.1 57 97800 809 1325 432 355 187 241 40189 12829 27439 10176 320 3.1 5 5 9.7 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.82088E7 30.6 21.1 57 97800 564 1325 421 340 516 118 38882 25447 13549 4973 280 3.6 2 2 9.7 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.82124E7 28.3 22.2 70 97800 297 1325 420 98 76 81 10741 1773 8912 2804 230 3.6 5 5 9.7 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.8216E7 27.2 22.8 77 97900 50 828 430 18 7 18 1889 0 1896 471 160 3.6 8 8 9.7 4570 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.82196E7 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 37 0.0000 0 88 0.000 0.0 1.0 +1.82232E7 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 38 0.0000 0 88 0.000 0.0 1.0 +1.82268E7 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 39 0.0000 0 88 0.000 0.0 1.0 +1.82304E7 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 39 0.0000 0 88 0.000 0.0 1.0 +1.8234E7 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 40 0.0000 0 88 0.000 0.0 1.0 +1.82376E7 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 41 0.0000 0 88 0.000 0.0 1.0 +1.82412E7 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 41 0.0000 0 88 0.000 0.0 1.0 +1.82448E7 21.1 20.0 93 97800 0 0 369 0 0 0 0 0 0 0 0 0.0 4 2 11.3 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.82484E7 20.6 20.0 97 97800 0 0 355 0 0 0 0 0 0 0 280 2.6 2 0 11.3 2000 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.8252E7 20.6 20.0 97 97900 6 210 355 1 0 1 0 0 0 0 240 1.5 1 0 9.7 2000 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.82556E7 21.1 21.1 100 98000 169 1326 359 60 90 48 6507 0 5224 1531 250 2.6 3 0 4.8 2000 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +1.82592E7 23.3 22.2 94 98000 439 1326 371 228 393 98 25656 15307 11070 3846 280 4.1 0 0 6.4 2000 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.82628E7 25.6 22.8 85 98000 696 1326 390 420 535 138 48602 27809 16039 6189 280 5.2 1 1 9.7 2000 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +1.82664E7 27.2 23.3 79 98000 922 1326 412 611 557 222 70761 33912 25853 10264 270 3.1 4 4 11.3 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.827E7 28.3 22.8 72 98000 1101 1326 429 595 317 331 68664 22120 38451 14826 250 3.1 7 7 11.3 640 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.82736E7 29.4 22.2 65 97900 1221 1326 435 816 414 434 93832 31979 50274 18384 210 3.1 7 7 16.1 880 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.82772E7 30.6 22.2 61 97900 1273 1326 433 739 351 401 86130 25542 47072 17702 290 3.6 5 5 19.3 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.82808E7 30.6 22.8 63 97800 1254 1326 434 815 445 392 94839 31864 45942 17347 240 3.1 5 5 24.1 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.82844E7 30.6 22.2 61 97700 1165 1326 433 521 223 324 60832 15239 38079 14834 260 5.2 5 5 24.1 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.8288E7 30.6 20.6 55 97700 1012 1326 428 595 436 261 69232 29377 30548 12100 250 4.6 4 4 24.1 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.82916E7 31.1 21.1 55 97700 806 1326 428 505 456 226 57445 30350 25850 9712 240 4.1 7 3 24.1 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.82952E7 30.0 20.6 57 97700 561 1326 421 322 244 218 35013 17056 23839 7464 250 3.6 10 3 24.1 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.82988E7 28.9 21.1 63 97700 294 1326 437 103 53 91 11183 1498 9922 3001 250 3.1 10 8 24.1 7620 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.83024E7 27.2 21.7 72 97700 48 829 417 14 3 13 1507 0 1403 387 220 2.1 9 6 24.1 7620 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.8306E7 26.1 21.7 77 97800 0 0 401 0 0 0 0 0 0 0 220 2.6 7 3 24.1 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.83096E7 25.8 21.6 85 97900 0 0 395 0 0 0 0 0 0 0 280 2.6 6 2 19.3 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.83132E7 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 38 0.0000 0 88 0.000 0.0 1.0 +1.83168E7 25.2 21.4 76 98500 0 0 392 0 0 0 0 0 0 0 120 2.6 2 2 24.1 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.83204E7 24.8 21.4 74 98100 0 0 377 0 0 0 0 0 0 0 320 2.6 0 0 12.9 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.8324E7 24.5 21.3 82 98200 0 0 376 0 0 0 0 0 0 0 290 2.6 0 0 12.9 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.83276E7 24.2 21.2 85 98100 0 0 374 0 0 0 0 0 0 0 290 2.6 0 0 12.9 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.83312E7 23.9 21.1 85 98100 0 0 373 0 0 0 0 0 0 0 290 2.6 0 0 12.9 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.83348E7 23.3 21.1 87 98200 0 0 370 0 0 0 0 0 0 0 320 2.6 0 0 12.9 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.83384E7 23.3 21.1 87 98200 6 188 370 1 0 1 0 0 0 0 310 2.1 1 0 11.3 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.8342E7 23.9 21.1 85 98300 165 1326 373 58 136 41 6364 0 4513 1370 0 0.0 0 0 9.7 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.83456E7 26.1 21.1 74 98300 436 1326 384 234 447 87 26605 16751 9926 3502 0 0.0 0 0 9.7 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.83492E7 27.8 21.1 67 98400 694 1326 392 451 619 126 52653 32412 14770 5739 310 3.6 0 0 11.3 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.83528E7 30.0 21.7 61 98400 920 1326 405 650 709 157 77472 39155 18799 7741 330 4.1 0 0 11.3 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.83564E7 32.2 20.6 50 98400 1099 1326 415 810 762 177 98347 43406 21597 9019 10 3.1 0 0 11.3 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.836E7 33.3 19.4 44 98300 1219 1326 428 872 755 176 107779 42972 21862 9097 0 0.0 1 1 12.9 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.83636E7 33.9 19.4 43 98300 1271 1326 441 908 649 285 108979 42861 34418 13725 0 0.0 3 3 12.9 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.83672E7 33.9 19.4 43 98200 1252 1326 445 952 704 285 113971 46742 34331 13683 350 3.6 4 4 12.9 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.83708E7 35.0 19.4 40 98100 1163 1326 455 762 459 357 88552 34488 41766 15891 290 2.6 5 5 11.3 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.83744E7 35.0 18.9 39 98000 1010 1326 451 681 557 255 79500 38295 29941 11879 10 3.1 5 4 11.3 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.8378E7 35.0 18.9 39 98000 803 1326 451 543 550 208 62303 36693 23991 9129 110 6.2 7 4 11.3 7620 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.83816E7 33.3 19.4 44 98000 558 1326 445 311 380 150 34908 21930 16914 5917 180 3.6 8 5 11.3 7620 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.83852E7 30.6 18.9 50 98100 290 1326 454 53 18 49 6063 265 5620 1911 170 4.1 9 9 11.3 7620 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.83888E7 25.6 21.1 77 98200 45 807 428 6 1 6 686 0 687 213 0 0.0 9 9 11.3 7620 9 999999999 37 0.0000 0 88 0.000 1.5 1.0 +1.83924E7 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 36 0.0000 0 88 0.000 0.0 1.0 +1.8396E7 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 37 0.0000 0 88 0.000 0.0 1.0 +1.83996E7 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 36 0.0000 0 88 0.000 0.0 1.0 +1.84032E7 25.6 20.6 74 98300 0 0 400 0 0 0 0 0 0 0 200 2.1 8 4 11.3 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.84068E7 25.0 20.6 76 98300 0 0 394 0 0 0 0 0 0 0 180 2.1 7 3 11.3 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.84104E7 25.0 21.1 79 98300 0 0 394 0 0 0 0 0 0 0 270 2.1 8 3 11.3 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.8414E7 24.4 20.6 79 98300 0 0 387 0 0 0 0 0 0 0 180 1.5 7 2 11.3 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.84176E7 23.9 20.6 82 98300 0 0 379 0 0 0 0 0 0 0 180 2.1 5 1 11.3 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.84212E7 23.3 20.6 85 98300 0 0 376 0 0 0 0 0 0 0 120 2.1 4 1 11.3 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.84248E7 23.9 21.1 85 98300 2 166 380 0 0 0 0 0 0 0 50 1.5 4 1 9.7 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.84284E7 23.9 21.1 85 98400 162 1327 395 48 21 46 5208 0 5008 1468 0 0.0 10 5 8.0 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.8432E7 25.6 21.1 77 98500 433 1327 398 216 258 132 23718 12630 14561 4701 80 2.1 6 3 8.0 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.84356E7 28.3 21.7 67 98500 692 1327 403 419 539 138 48514 28843 16048 6171 10 1.5 2 1 9.7 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.84392E7 30.6 21.7 59 98500 918 1327 408 638 662 179 75253 38361 21217 8630 160 3.1 1 0 9.7 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.84428E7 31.7 21.1 54 98500 1098 1327 413 799 726 197 96153 42403 23831 9878 170 4.1 0 0 9.7 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.84464E7 32.8 21.1 50 98500 1218 1327 427 879 718 219 106674 42256 26725 10976 150 2.6 1 1 9.7 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.845E7 33.9 20.0 44 98400 1270 1327 438 965 742 252 116814 46321 30685 12423 150 6.2 2 2 11.3 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.84536E7 33.9 18.9 41 98300 1251 1327 441 879 585 325 104203 41305 38779 15140 140 2.6 3 3 12.9 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.84572E7 34.4 18.3 39 98300 1161 1327 438 842 680 245 100833 44542 29508 11943 140 4.6 2 2 12.9 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.84608E7 35.0 18.3 37 98300 1008 1327 442 720 636 235 84614 42744 27770 11144 110 2.6 2 2 12.9 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.84644E7 34.4 18.3 39 98200 801 1327 438 533 564 191 61582 36667 22179 8548 180 3.1 2 2 12.9 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.8468E7 32.8 18.9 44 98200 555 1327 424 321 476 121 36658 24937 13874 5037 200 4.1 3 1 11.3 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.84716E7 32.8 20.0 47 98300 286 1327 436 114 138 84 12450 3644 9210 2825 230 4.1 8 3 11.3 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.84752E7 30.6 20.6 55 98300 43 785 435 17 3 17 1774 0 1781 418 90 6.2 8 6 11.3 7620 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.84788E7 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 36 0.0000 0 88 0.000 1.5 1.0 +1.84824E7 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 37 0.0000 0 88 0.000 0.0 1.0 +1.8486E7 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 37 0.0000 0 88 0.000 0.0 1.0 +1.84896E7 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 40 0.0000 0 88 0.000 0.0 1.0 +1.84932E7 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 40 0.0000 0 88 0.000 0.0 1.0 +1.84968E7 23.9 21.7 87 98400 0 0 386 0 0 0 0 0 0 0 50 1.5 8 2 8.0 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.85004E7 23.9 21.1 85 98300 0 0 385 0 0 0 0 0 0 0 50 2.6 10 2 8.0 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.8504E7 23.9 21.7 87 98400 0 0 386 0 0 0 0 0 0 0 50 1.5 8 2 8.0 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.85076E7 23.9 21.1 85 98400 0 0 380 0 0 0 0 0 0 0 0 0.0 5 1 11.3 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.85112E7 23.9 21.1 85 98400 6 166 385 1 0 1 0 0 0 0 0 0.0 5 2 9.7 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.85148E7 23.9 21.7 87 98400 160 1327 386 42 35 38 4620 0 4193 1283 340 1.5 4 2 8.0 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.85184E7 25.6 20.6 74 98500 431 1327 381 210 295 114 23339 13225 12723 4254 70 2.6 1 0 9.7 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.8522E7 27.8 20.0 63 98500 690 1327 391 421 481 170 48016 29292 19482 7244 40 1.5 0 0 11.3 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.85256E7 28.9 20.0 59 98500 917 1327 397 621 584 217 72269 37852 25389 10057 50 1.5 0 0 12.9 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.85292E7 30.6 20.6 55 98500 1097 1327 407 785 648 248 92841 41683 29500 11922 20 1.5 0 0 12.9 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.85328E7 31.7 20.0 50 98400 1217 1327 412 898 685 267 107454 44326 32141 12913 60 4.1 0 0 12.9 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.85364E7 32.8 21.1 50 98300 1269 1327 427 912 665 274 109547 41925 33115 13294 80 3.6 1 1 12.9 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.854E7 33.3 20.0 46 98300 1249 1327 439 886 575 343 104455 40827 40708 15755 50 3.1 3 3 12.9 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.85436E7 33.9 20.0 44 98200 1160 1327 442 616 312 342 71745 22798 40097 15404 100 2.6 3 3 12.9 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.85472E7 33.9 20.0 44 98100 1006 1327 442 685 533 279 79261 37452 32478 12681 100 5.7 3 3 12.9 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.85508E7 33.9 20.0 44 98100 799 1327 442 505 429 246 57051 30408 27950 10246 140 4.6 4 3 16.1 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.85544E7 32.8 18.9 44 98100 552 1327 441 260 184 182 28701 11907 20194 6677 110 3.1 7 5 16.1 7620 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.8558E7 28.3 21.1 65 98300 283 1327 456 31 2 31 3660 8 3666 1285 160 4.1 10 10 4.8 1220 9 999999999 37 0.0000 0 88 0.000 7.9 1.0 +1.85616E7 26.7 21.7 74 98200 41 763 447 10 0 10 948 0 954 307 110 3.1 10 10 8.0 7620 9 999999999 38 0.0000 0 88 0.000 1.3 1.0 +1.85652E7 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 42 0.0000 0 88 0.000 0.0 1.0 +1.85688E7 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 41 0.0000 0 88 0.000 0.0 1.0 +1.85724E7 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 40 0.0000 0 88 0.000 0.0 1.0 +1.8576E7 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 40 0.0000 0 88 0.000 0.0 1.0 +1.85796E7 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 41 0.0000 0 88 0.000 0.0 1.0 +1.85832E7 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 38 0.0000 0 88 0.000 0.0 1.0 +1.85868E7 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 40 0.0000 0 88 0.000 0.0 1.0 +1.85904E7 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 39 0.0000 0 88 0.000 0.0 1.0 +1.8594E7 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 38 0.0000 0 88 0.000 0.0 1.0 +1.85976E7 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 40 0.0000 0 88 0.000 0.0 1.0 +1.86012E7 23.9 21.7 87 98400 157 1327 419 46 12 45 4981 0 4889 1425 60 3.6 10 9 8.0 3050 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.86048E7 25.0 21.7 82 98400 428 1327 416 155 92 126 17050 4271 13923 4533 90 3.6 10 8 8.0 3050 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.86084E7 25.6 22.2 82 98400 688 1327 405 349 295 195 39246 18336 22043 7984 80 4.1 7 5 6.4 3050 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.8612E7 27.8 22.8 74 98400 915 1327 402 619 695 138 74344 35714 16646 6915 90 3.1 4 1 8.0 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.86156E7 28.9 22.2 67 98400 1095 1327 432 529 261 313 61305 17997 36507 14221 100 3.1 8 7 9.7 3050 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.86192E7 30.6 22.2 61 98400 1215 1327 430 862 668 248 103453 40160 29939 12163 90 3.1 4 4 11.3 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.86228E7 30.0 21.7 61 98300 1267 1327 426 813 536 299 96917 34579 35871 14243 0 0.0 4 4 11.3 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.86264E7 31.7 21.1 54 98200 1248 1327 434 914 683 269 109636 43005 32463 13056 190 1.5 4 4 12.9 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.863E7 25.0 21.1 79 98100 1158 1327 401 845 730 206 102193 42684 25047 10342 290 7.7 5 5 11.3 2000 9 999999999 37 0.0000 0 88 0.000 28.7 1.0 +1.86336E7 28.3 20.6 63 98100 1004 1327 412 690 681 173 82780 39266 20856 8661 260 2.1 4 3 16.1 2000 9 999999999 36 0.0000 0 88 0.000 14.0 1.0 +1.86372E7 31.1 21.7 57 98000 796 1327 424 397 412 148 46588 22621 17445 6954 210 3.1 3 2 16.1 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.86408E7 28.9 21.7 65 98000 549 1327 412 323 444 137 36357 23131 15490 5500 270 3.6 4 2 16.1 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.86444E7 28.3 21.1 65 98100 280 1327 415 118 160 83 12851 3838 9076 2769 170 5.2 7 4 16.1 7620 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.8648E7 26.7 21.1 72 98200 39 741 434 13 3 13 1374 0 1379 349 50 5.7 9 9 11.3 7620 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.86516E7 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 38 0.0000 0 88 0.000 0.0 1.0 +1.86552E7 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 40 0.0000 0 88 0.000 0.0 1.0 +1.86588E7 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 40 0.0000 0 88 0.000 0.0 1.0 +1.86624E7 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 40 0.0000 0 88 0.000 0.0 1.0 +1.8666E7 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 41 0.0000 0 88 0.000 0.0 1.0 +1.86696E7 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 39 0.0000 0 88 0.000 0.0 1.0 +1.86732E7 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 38 0.0000 0 88 0.000 0.0 1.0 +1.86768E7 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 38 0.0000 0 88 0.000 0.0 1.0 +1.86804E7 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 38 0.0000 0 88 0.000 0.0 1.0 +1.8684E7 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 40 0.0000 0 88 0.000 0.0 1.0 +1.86876E7 22.8 22.2 97 98300 154 1328 425 27 7 27 3043 0 3050 980 130 3.1 10 10 4.0 150 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.86912E7 23.3 22.2 94 98300 426 1328 428 109 1 109 12119 41 12169 4099 100 2.1 10 10 4.0 120 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.86948E7 23.9 21.1 85 98300 686 1328 409 258 65 224 28712 4448 25067 8737 100 3.1 10 8 11.3 1220 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.86984E7 25.6 21.7 79 98300 913 1328 401 597 526 234 68888 34095 27153 10631 90 2.1 6 4 12.9 7620 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.8702E7 27.2 21.7 72 98300 1094 1328 413 740 579 262 86994 37293 30984 12439 110 1.5 8 5 12.9 1220 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.87056E7 27.8 21.7 69 98300 1214 1328 420 682 424 293 80838 27573 34949 13886 80 2.6 8 6 12.9 1220 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.87092E7 29.4 22.2 65 98200 1266 1328 464 330 2 328 39027 133 39048 15287 130 5.2 10 10 12.9 610 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.87128E7 29.4 21.7 63 98100 1246 1328 451 547 101 452 62952 7961 52409 18998 90 3.1 9 9 8.0 760 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.87164E7 29.4 21.7 63 98100 1156 1328 451 416 88 339 48364 6223 39675 15292 20 3.1 9 9 9.7 1220 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.872E7 27.8 22.8 74 98000 1002 1328 443 336 120 245 39122 7540 28692 11480 360 6.7 9 9 8.0 3050 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.87236E7 27.2 21.7 72 98100 793 1328 429 301 197 183 34721 11798 21215 8230 160 7.7 9 8 11.3 7620 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.87272E7 25.0 20.6 76 98100 546 1328 408 257 216 168 28465 12925 18700 6307 120 4.6 9 7 11.3 7620 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.87308E7 26.1 20.6 72 98000 276 1328 403 132 213 87 14309 5508 9470 2829 100 3.6 8 4 11.3 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.87344E7 25.6 21.1 77 98100 37 719 404 18 15 16 1858 0 1659 361 90 3.1 9 5 11.3 7620 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.8738E7 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 40 0.0000 0 88 0.000 0.0 1.0 +1.87416E7 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 37 0.0000 0 88 0.000 0.0 1.0 +1.87452E7 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 38 0.0000 0 88 0.000 0.0 1.0 +1.87488E7 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 37 0.0000 0 88 0.000 0.0 1.0 +1.87524E7 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 38 0.0000 0 88 0.000 0.0 1.0 +1.8756E7 23.3 22.2 94 98100 0 0 387 0 0 0 0 0 0 0 120 2.1 7 3 16.1 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.87596E7 22.8 21.7 94 98100 0 0 384 0 0 0 0 0 0 0 140 1.5 6 3 16.1 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.87632E7 22.8 21.7 94 98100 0 0 368 0 0 0 0 0 0 0 0 0.0 3 0 16.1 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.87668E7 22.8 21.7 94 98100 0 0 368 0 0 0 0 0 0 0 0 0.0 0 0 16.1 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.87704E7 22.8 21.7 94 98200 12 122 387 2 0 2 0 0 0 0 100 2.1 8 4 6.4 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.8774E7 23.3 21.7 90 98200 151 1328 382 57 128 43 6175 0 4674 1363 0 0.0 7 2 6.4 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.87776E7 24.4 21.7 85 98200 423 1328 388 215 320 113 23832 13696 12579 4190 280 2.6 7 2 9.7 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.87812E7 26.7 22.2 77 98200 684 1328 396 446 609 131 51736 31450 15260 5884 310 2.6 8 1 11.3 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.87848E7 29.4 21.7 63 98200 912 1328 409 558 530 193 65352 31680 22720 9142 360 2.6 8 1 19.3 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.87884E7 30.6 21.1 57 98200 1092 1328 415 784 743 171 95271 41466 20881 8745 30 2.6 8 1 19.3 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.8792E7 31.1 21.1 55 98200 1212 1328 428 886 694 250 106355 42919 30186 12236 290 4.1 8 3 19.3 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.87956E7 32.2 20.0 48 98100 1264 1328 432 941 789 187 116380 44748 23247 9635 300 2.6 8 3 19.3 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.87992E7 32.8 20.6 49 98000 1245 1328 440 824 545 311 97750 36780 37131 14622 200 7.2 5 4 16.1 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.88028E7 31.7 20.6 52 98000 1154 1328 441 631 384 295 74234 26069 34923 13797 240 5.2 6 6 16.1 1070 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.88064E7 32.8 20.6 49 97900 999 1328 443 552 381 264 64040 25909 30809 12137 230 5.2 5 5 19.3 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.881E7 32.2 19.4 47 97900 791 1328 438 549 607 186 63377 38370 21579 8320 240 6.2 5 5 19.3 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.88136E7 32.2 18.9 45 97900 542 1328 438 244 192 165 27096 11752 18413 6212 270 4.1 5 5 19.3 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.88172E7 31.1 20.0 52 97900 272 1328 433 116 254 63 12909 4217 7034 2271 270 3.6 6 5 19.3 7620 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.88208E7 30.0 21.1 59 98000 35 697 428 18 11 17 1839 0 1744 344 320 2.1 5 5 19.3 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.88244E7 28.9 21.7 65 98000 0 0 423 0 0 0 0 0 0 0 80 3.1 5 5 19.3 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.8828E7 27.8 21.7 69 98100 0 0 417 0 0 0 0 0 0 0 290 3.1 5 5 19.3 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.88316E7 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 38 0.0000 0 88 0.000 0.0 1.0 +1.88352E7 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 39 0.0000 0 88 0.000 0.0 1.0 +1.88388E7 25.0 22.2 85 98100 0 0 399 0 0 0 0 0 0 0 0 0.0 4 4 19.3 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.88424E7 25.0 22.2 85 98100 0 0 392 0 0 0 0 0 0 0 290 1.5 3 2 19.3 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.8846E7 24.4 22.2 88 98000 0 0 389 0 0 0 0 0 0 0 280 2.1 3 2 19.3 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.88496E7 23.9 22.2 90 98000 0 0 386 0 0 0 0 0 0 0 280 3.1 2 2 19.3 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.88532E7 23.3 22.2 94 98000 0 0 378 0 0 0 0 0 0 0 280 3.1 1 1 19.3 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.88568E7 22.8 21.7 94 98100 6 100 384 1 0 0 0 0 0 0 270 2.1 4 3 19.3 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.88604E7 23.3 22.2 94 98100 148 1329 387 52 160 35 5718 0 3860 1178 280 2.6 3 3 24.1 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.8864E7 25.6 22.2 82 98200 421 1329 399 215 369 98 24080 14025 11019 3775 280 3.6 3 3 24.1 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.88676E7 27.8 22.2 72 98200 682 1329 411 361 469 120 42148 23361 14067 5467 290 3.1 3 3 24.1 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.88712E7 29.4 21.1 61 98200 910 1329 418 643 686 172 76014 39777 20431 8315 310 2.6 3 3 24.1 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.88748E7 30.6 20.6 55 98200 1091 1329 431 722 559 262 84940 36844 31006 12429 270 1.5 5 5 24.1 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.88784E7 30.6 21.1 57 98100 1211 1329 440 557 239 338 65307 16754 39894 15453 240 3.1 7 7 24.1 910 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.8882E7 32.2 20.6 50 98100 1263 1329 449 719 394 343 84853 27576 40751 15795 270 4.1 7 7 24.1 910 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.88856E7 31.7 21.7 55 98000 1243 1329 455 598 239 373 69837 17147 43864 16707 290 5.2 8 8 24.1 1220 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.88892E7 32.8 21.1 50 98000 1152 1329 461 519 437 138 64617 22674 17257 7282 180 8.8 8 8 24.1 1220 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.88928E7 31.7 22.8 59 97900 997 1329 456 318 173 187 37785 9750 22333 9225 210 5.2 8 8 24.1 3660 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.88964E7 30.6 22.2 61 98000 788 1329 472 182 19 170 21083 1091 19788 7742 290 2.6 10 10 19.3 1280 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.89E7 25.0 18.9 69 98000 539 1329 433 98 0 98 9772 0 9855 4208 0 0.0 10 10 16.1 850 9 999999999 33 0.0000 0 88 0.000 3.6 1.0 +1.89036E7 25.6 22.2 82 98000 268 1329 441 33 2 33 3853 2 3860 1340 230 7.2 10 10 16.1 670 9 999999999 40 0.0000 0 88 0.000 0.3 1.0 +1.89072E7 22.8 20.6 87 98100 32 675 423 11 0 11 0 0 0 0 290 3.6 10 10 12.9 3050 9 999999999 36 0.0000 0 88 0.000 2.3 1.0 +1.89108E7 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 37 0.0000 0 88 0.000 0.0 1.0 +1.89144E7 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 37 0.0000 0 88 0.000 0.0 1.0 +1.8918E7 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 36 0.0000 0 88 0.000 0.0 1.0 +1.89216E7 22.8 21.1 90 98100 0 0 386 0 0 0 0 0 0 0 130 3.6 4 4 12.9 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.89252E7 21.7 21.1 97 98000 0 0 374 0 0 0 0 0 0 0 350 2.1 2 2 16.1 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.89288E7 21.7 21.1 97 98000 0 0 377 0 0 0 0 0 0 0 280 1.5 3 3 16.1 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.89324E7 21.1 20.6 97 97900 0 0 374 0 0 0 0 0 0 0 270 2.6 3 3 16.1 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.8936E7 20.6 20.6 100 98000 0 0 367 0 0 0 0 0 0 0 0 0.0 6 2 16.1 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.89396E7 20.6 20.0 97 98000 0 0 370 0 0 0 0 0 0 0 290 1.5 7 3 16.1 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.89432E7 20.6 19.4 93 98000 0 78 366 0 0 0 0 0 0 0 310 2.6 5 2 16.1 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.89468E7 21.7 19.4 87 98100 145 1329 395 41 15 39 4475 0 4270 1259 300 2.1 9 8 16.1 7620 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.89504E7 23.3 20.0 82 98100 419 1329 390 192 273 106 21408 11700 11867 3983 320 2.6 5 5 16.1 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.8954E7 25.0 20.6 76 98100 679 1329 408 331 224 216 36919 15198 24224 8482 310 3.1 7 7 16.1 7620 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.89576E7 26.7 21.7 74 98100 908 1329 414 526 418 240 60515 27455 27768 10799 320 3.6 7 6 16.1 7620 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.89612E7 29.4 21.7 63 98100 1089 1329 426 725 582 247 85555 36642 29317 11864 310 3.1 5 5 16.1 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.89648E7 31.1 21.7 57 98100 1210 1329 432 890 713 239 107077 42837 28921 11788 360 1.5 9 4 19.3 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.89684E7 31.7 21.7 55 98000 1261 1329 442 663 337 343 78127 23119 40691 15789 260 2.6 9 6 19.3 7620 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.8972E7 31.1 21.1 55 98000 1241 1329 450 734 331 424 84894 25567 49397 18212 290 2.6 10 8 16.1 7620 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.89756E7 31.1 21.7 57 97900 1150 1329 451 591 215 405 67681 16637 46712 17212 200 2.6 10 8 16.1 7620 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.89792E7 30.6 22.2 61 97900 994 1329 459 434 63 387 48695 5038 43725 15638 350 4.6 10 9 11.3 980 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.89828E7 23.9 21.7 87 97900 785 1329 431 121 3 120 14404 153 14341 5792 90 3.6 10 10 11.3 980 9 999999999 38 0.0000 0 88 0.000 16.3 1.0 +1.89864E7 26.7 22.2 77 97800 536 1329 448 181 9 178 19866 538 19639 6461 0 0.0 10 10 11.3 7620 9 999999999 40 0.0000 0 88 0.000 0.3 1.0 +1.899E7 27.8 23.3 77 97900 264 1329 456 47 4 46 5330 17 5230 1765 0 0.0 10 10 11.3 7620 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.89936E7 26.1 23.9 88 97900 30 653 447 13 0 13 0 0 0 0 280 1.5 10 10 9.7 7620 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +1.89972E7 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 41 0.0000 0 88 0.000 0.0 1.0 +1.90008E7 25.6 23.3 88 98000 0 0 403 0 0 0 0 0 0 0 0 0.0 10 4 11.3 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.90044E7 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 42 0.0000 0 88 0.000 0.0 1.0 +1.9008E7 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 42 0.0000 0 88 0.000 0.0 1.0 +1.90116E7 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 41 0.0000 0 88 0.000 0.0 1.0 +1.90152E7 24.4 22.8 91 97900 0 0 389 0 0 0 0 0 0 0 0 0.0 5 2 11.3 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.90188E7 25.0 21.7 82 97900 0 0 395 0 0 0 0 0 0 0 0 0.0 8 3 11.3 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.90224E7 24.4 21.7 85 97900 0 0 395 0 0 0 0 0 0 0 0 0.0 8 4 11.3 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.9026E7 24.4 21.1 82 97900 0 0 387 0 0 0 0 0 0 0 60 2.6 5 2 11.3 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.90296E7 24.4 21.1 82 98000 0 55 382 0 0 0 0 0 0 0 90 2.1 4 1 11.3 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.90332E7 24.4 21.7 85 98000 143 1330 376 36 7 35 3947 0 3849 1162 90 2.1 4 0 11.3 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.90368E7 26.1 22.8 82 98100 416 1330 402 167 130 126 18279 5772 13855 4454 70 2.6 3 3 9.7 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.90404E7 27.8 22.8 74 98100 677 1330 402 354 269 217 39343 17506 24251 8489 80 3.1 4 1 11.3 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.9044E7 30.0 21.7 61 98100 906 1330 418 562 361 316 63219 27150 35775 13031 140 2.6 5 2 16.1 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.90476E7 30.6 20.6 55 98100 1087 1330 428 670 375 362 76796 28650 41774 15687 140 4.6 5 4 12.9 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.90512E7 31.1 21.7 57 98100 1208 1330 435 668 274 419 76913 21096 48593 17897 140 3.6 6 5 24.1 7620 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.90548E7 32.2 20.6 50 98000 1260 1330 440 748 302 461 86205 24367 53528 19301 130 3.6 6 5 24.1 7620 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.90584E7 32.2 21.1 52 98000 1239 1330 441 853 497 388 99322 36785 45496 17154 120 2.6 7 5 24.1 7620 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.9062E7 32.8 19.4 45 97900 1148 1330 451 647 181 490 73131 16055 55806 19205 160 1.5 8 7 24.1 1220 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.90656E7 32.2 20.0 48 97900 992 1330 439 524 186 385 58946 15381 43609 15565 140 3.6 7 5 19.3 7620 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.90692E7 31.1 21.7 57 97900 782 1330 435 421 219 292 46659 16584 32565 11243 160 8.2 7 5 19.3 7620 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.90728E7 30.0 21.7 61 97900 532 1330 438 214 103 172 23551 6096 19026 6301 170 4.6 8 7 19.3 7620 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.90764E7 28.3 21.1 65 98000 260 1330 434 58 5 57 6472 56 6381 2075 290 3.1 10 8 19.3 7620 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.908E7 27.8 21.7 69 97900 28 632 417 13 0 13 0 0 0 0 310 2.1 10 5 19.3 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.90836E7 27.8 20.6 65 98000 0 0 399 0 0 0 0 0 0 0 240 1.5 3 1 19.3 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.90872E7 28.3 20.6 63 98000 0 0 394 0 0 0 0 0 0 0 150 1.5 2 0 19.3 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.90908E7 27.2 21.1 69 98100 0 0 397 0 0 0 0 0 0 0 140 2.1 3 1 19.3 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.90944E7 26.1 22.2 79 98100 0 0 392 0 0 0 0 0 0 0 170 2.1 1 1 19.3 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.9098E7 25.6 21.7 79 98100 0 0 382 0 0 0 0 0 0 0 270 1.0 1 0 16.1 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.91016E7 25.0 22.2 85 98000 0 0 379 0 0 0 0 0 0 0 330 1.0 0 0 16.1 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.91052E7 25.0 21.7 82 98100 0 0 386 0 0 0 0 0 0 0 0 0.0 3 1 16.1 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.91088E7 23.9 22.2 90 98000 0 0 374 0 0 0 0 0 0 0 0 0.0 2 0 12.9 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.91124E7 24.4 22.2 88 98100 0 0 376 0 0 0 0 0 0 0 0 0.0 1 0 11.3 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.9116E7 24.4 21.7 85 98100 0 55 383 0 0 0 0 0 0 0 60 1.0 4 1 11.3 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.91196E7 25.0 22.2 85 98200 140 1330 387 45 94 35 4922 0 3840 1153 0 0.0 5 1 9.7 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.91232E7 27.2 22.2 74 98300 414 1330 404 202 310 105 22449 12235 11717 3932 310 1.5 8 2 9.7 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.91268E7 28.9 22.2 67 98300 675 1330 427 359 276 218 39897 18254 24362 8495 250 2.6 7 6 9.7 3660 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.91304E7 30.6 22.2 61 98300 905 1330 433 518 421 231 59699 26923 26772 10472 210 2.1 5 5 12.9 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.9134E7 32.2 21.7 54 98300 1086 1330 441 681 498 274 79671 32792 32250 12848 0 0.0 5 5 12.9 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.91376E7 31.1 21.7 57 98300 1206 1330 451 538 208 349 62829 14658 41033 15795 40 1.5 8 8 16.1 910 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.91412E7 31.1 21.1 55 98200 1258 1330 443 883 558 353 103836 39275 41793 16112 130 2.1 7 7 16.1 1070 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.91448E7 30.6 21.1 57 98100 1237 1330 457 538 88 456 61829 7066 52798 19041 290 3.1 9 9 12.9 1070 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.91484E7 31.1 21.7 57 98100 1146 1330 474 313 4 309 36595 272 36359 14257 0 0.0 10 10 12.9 1070 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.9152E7 31.7 22.8 59 98000 989 1330 456 383 66 333 43428 4828 38008 14211 0 0.0 10 8 12.9 2440 9 999999999 41 0.0000 0 88 0.000 0.5 1.0 +1.91556E7 32.8 21.1 50 98000 779 1330 448 523 496 231 59095 33623 26247 9664 30 2.1 7 6 12.9 2740 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.91592E7 31.7 21.1 54 98000 528 1330 438 204 145 146 22755 7896 16361 5639 170 2.1 6 5 12.9 3050 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.91628E7 30.6 21.7 59 98100 256 1330 432 98 125 73 10689 2080 7993 2447 210 3.1 7 5 12.9 7620 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.91664E7 29.4 21.7 63 98200 26 610 426 13 3 12 0 0 0 0 190 1.5 6 5 12.9 7620 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.917E7 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 40 0.0000 0 88 0.000 0.0 1.0 +1.91736E7 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 40 0.0000 0 88 0.000 0.0 1.0 +1.91772E7 23.9 21.7 87 98300 0 0 389 0 0 0 0 0 0 0 0 0.0 6 3 12.9 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.91808E7 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 36 0.0000 0 88 0.000 0.0 1.0 +1.91844E7 23.9 21.1 85 98300 0 0 373 0 0 0 0 0 0 0 100 2.1 0 0 11.3 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.9188E7 23.3 21.7 90 98200 0 0 370 0 0 0 0 0 0 0 80 4.1 0 0 9.7 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.91916E7 22.8 21.7 94 98200 0 0 368 0 0 0 0 0 0 0 80 3.6 0 0 9.7 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.91952E7 23.3 21.7 90 98200 0 0 370 0 0 0 0 0 0 0 100 3.1 0 0 9.7 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.91988E7 22.8 21.7 94 98200 0 0 368 0 0 0 0 0 0 0 100 4.1 0 0 9.7 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.92024E7 22.8 21.7 94 98300 0 33 384 0 0 0 0 0 0 0 90 3.6 8 3 4.8 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.9206E7 22.8 21.7 94 98400 137 1330 384 47 48 42 5056 0 4534 1284 100 3.1 10 3 4.8 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.92096E7 23.3 22.2 94 98500 411 1330 428 99 6 97 11066 223 10885 3703 80 4.1 10 10 4.8 180 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.92132E7 24.4 22.8 91 98500 673 1330 435 195 3 194 21852 184 21855 7848 80 3.1 10 10 4.8 210 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.92168E7 26.1 22.8 82 98500 903 1330 445 291 5 287 32922 351 32671 12208 50 2.1 10 10 11.3 400 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.92204E7 27.8 22.8 74 98500 1084 1330 443 380 74 319 43854 5110 37054 14365 60 4.1 9 9 11.3 610 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.9224E7 28.9 22.2 67 98500 1205 1330 439 505 162 358 58806 11450 41973 16076 80 3.6 8 8 12.9 670 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.92276E7 30.0 21.7 61 98400 1256 1330 433 712 453 283 85087 28686 34031 13609 70 4.6 7 6 16.1 760 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.92312E7 30.6 21.7 59 98300 1235 1330 432 895 653 286 106576 41782 34270 13676 70 2.6 7 5 19.3 7620 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.92348E7 31.1 21.1 55 98200 1143 1330 434 692 451 303 81059 30805 35717 14042 60 2.6 7 5 19.3 7620 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.92384E7 31.7 20.6 52 98200 986 1330 437 570 362 301 65304 26260 34701 13256 60 5.7 9 5 19.3 7620 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.9242E7 24.4 22.8 91 98300 775 1330 414 235 145 150 27410 7792 17575 6949 130 5.7 10 8 16.1 7620 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.92456E7 25.0 22.2 85 98200 525 1330 396 286 362 142 31902 18848 15913 5510 110 5.2 9 3 40.2 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.92492E7 24.4 22.8 91 98300 252 1330 396 88 150 59 9740 1285 6552 2101 120 5.7 9 4 40.2 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.92528E7 24.4 22.8 91 98300 25 588 393 16 12 14 0 0 0 0 90 4.1 9 3 19.3 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.92564E7 24.4 22.8 91 98300 0 0 393 0 0 0 0 0 0 0 90 4.6 8 3 19.3 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.926E7 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 42 0.0000 0 88 0.000 0.0 1.0 +1.92636E7 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 41 0.0000 0 88 0.000 0.0 1.0 +1.92672E7 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 41 0.0000 0 88 0.000 0.0 1.0 +1.92708E7 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 41 0.0000 0 88 0.000 0.0 1.0 +1.92744E7 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 41 0.0000 0 88 0.000 0.0 1.0 +1.9278E7 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 40 0.0000 0 88 0.000 0.0 1.0 +1.92816E7 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 40 0.0000 0 88 0.000 0.0 1.0 +1.92852E7 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 40 0.0000 0 88 0.000 0.0 1.0 +1.92888E7 22.8 21.7 94 98400 0 11 384 0 0 0 0 0 0 0 90 3.1 4 3 9.7 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.92924E7 23.3 21.7 90 98500 134 1331 415 30 4 29 3323 0 3221 994 80 4.1 9 9 9.7 430 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.9296E7 23.9 21.7 87 98500 409 1331 419 83 0 82 8150 0 8118 3253 70 3.1 10 9 9.7 370 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.92996E7 24.4 21.7 85 98500 671 1331 402 315 220 204 35189 14199 22911 8102 100 4.6 8 6 11.3 700 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.93032E7 26.1 21.7 77 98600 901 1331 416 317 80 263 36155 5499 30174 11482 100 4.1 8 7 12.9 460 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.93068E7 27.8 21.1 67 98600 1083 1331 416 720 518 298 83690 35865 34856 13667 110 4.1 7 5 16.1 7620 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.93104E7 28.3 20.6 63 98500 1203 1331 433 440 49 396 50912 3745 46144 17220 130 5.2 9 8 16.1 3660 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.9314E7 28.9 20.6 61 98500 1255 1331 425 832 492 367 97542 35613 43323 16555 110 3.6 8 6 24.1 3050 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.93176E7 30.6 20.0 53 98400 1233 1331 427 694 362 358 81343 26357 42246 16186 130 6.2 5 4 24.1 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.93212E7 31.1 21.1 55 98400 1141 1331 431 785 576 289 92258 38577 34176 13542 140 6.2 4 4 40.2 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.93248E7 31.7 20.0 50 98300 984 1331 433 675 545 269 78044 37974 31287 12215 60 5.2 4 4 40.2 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.93284E7 31.1 19.4 50 98300 772 1331 425 493 495 205 56282 32767 23526 8836 110 4.1 3 3 40.2 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.9332E7 31.1 18.9 48 98200 521 1331 415 295 459 113 33620 22900 12929 4642 90 4.1 3 1 40.2 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.93356E7 30.0 20.0 55 98300 248 1331 410 92 179 58 10215 2010 6461 2062 90 4.6 3 1 40.2 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.93392E7 28.9 20.0 59 98300 23 566 404 10 3 10 0 0 0 0 90 3.1 2 1 24.1 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.93428E7 28.3 20.6 63 98300 0 0 394 0 0 0 0 0 0 0 90 3.6 0 0 19.3 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.93464E7 27.2 20.6 67 98400 0 0 389 0 0 0 0 0 0 0 100 3.6 0 0 19.3 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.935E7 26.7 21.1 72 98400 0 0 387 0 0 0 0 0 0 0 100 4.1 0 0 19.3 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.93536E7 26.1 20.6 72 98400 0 0 383 0 0 0 0 0 0 0 150 4.6 0 0 19.3 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.93572E7 25.0 20.6 76 98400 0 0 377 0 0 0 0 0 0 0 160 3.6 0 0 19.3 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.93608E7 23.9 21.1 85 98400 0 0 373 0 0 0 0 0 0 0 110 2.6 0 0 19.3 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.93644E7 23.3 21.1 87 98400 0 0 370 0 0 0 0 0 0 0 100 2.6 0 0 19.3 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.9368E7 22.8 20.6 87 98400 0 0 366 0 0 0 0 0 0 0 80 2.1 0 0 19.3 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.93716E7 22.8 20.6 87 98400 0 0 366 0 0 0 0 0 0 0 100 2.6 0 0 19.3 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.93752E7 22.2 20.6 90 98400 0 11 363 0 0 0 0 0 0 0 80 3.1 0 0 24.1 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.93788E7 22.8 21.1 90 98500 131 1331 367 52 236 27 5787 0 3013 936 50 2.6 1 0 24.1 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.93824E7 24.4 21.7 85 98500 406 1331 376 235 590 54 27508 15139 6337 2300 80 3.1 1 0 19.3 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.9386E7 26.1 21.7 77 98500 669 1331 401 407 491 160 46351 28054 18308 6805 70 2.6 3 3 24.1 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.93896E7 26.7 21.1 72 98600 899 1331 418 472 207 332 52845 16203 37414 13348 40 3.1 7 7 24.1 760 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.93932E7 27.8 21.1 67 98600 1081 1331 419 713 576 244 84157 36645 28966 11724 70 4.1 6 6 24.1 980 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.93968E7 28.3 20.0 61 98500 1201 1331 417 700 455 288 83068 30497 34388 13664 100 3.6 5 5 24.1 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.94004E7 30.0 19.4 53 98500 1253 1331 430 887 583 336 104808 41433 39965 15517 60 2.6 6 6 24.1 1160 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.9404E7 30.6 18.9 50 98400 1231 1331 429 891 687 253 107349 44290 30660 12388 130 3.6 5 5 32.2 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.94076E7 30.6 18.9 50 98300 1139 1331 432 620 262 395 71233 21016 45699 16872 60 4.1 6 6 32.2 1220 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.94112E7 30.0 18.9 51 98200 981 1331 425 672 623 210 79272 40005 24903 10080 110 4.6 5 5 40.2 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.94148E7 31.1 18.9 48 98200 769 1331 428 584 754 145 68516 43740 17085 6733 110 3.6 4 4 40.2 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.94184E7 31.1 17.8 45 98100 517 1331 427 273 405 114 31095 20723 13036 4658 90 3.1 4 4 40.2 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.9422E7 30.0 18.3 50 98100 243 1331 418 97 251 50 10903 2247 5636 1834 100 4.1 3 3 40.2 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.94256E7 29.4 18.3 51 98200 21 544 397 17 41 12 0 0 0 0 90 3.1 3 0 40.2 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.94292E7 28.3 18.9 57 98200 0 0 392 0 0 0 0 0 0 0 90 2.6 0 0 19.3 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.94328E7 27.8 15.6 47 98200 0 0 386 0 0 0 0 0 0 0 90 2.1 0 0 19.3 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.94364E7 26.7 19.4 65 98200 0 0 385 0 0 0 0 0 0 0 0 0.0 0 0 19.3 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.944E7 26.1 18.9 65 98200 0 0 381 0 0 0 0 0 0 0 60 1.5 0 0 19.3 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.94436E7 25.0 19.4 71 98200 0 0 376 0 0 0 0 0 0 0 360 2.1 0 0 19.3 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.94472E7 26.1 18.3 62 98100 0 0 380 0 0 0 0 0 0 0 50 3.1 0 0 19.3 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.94508E7 25.6 18.3 64 98100 0 0 378 0 0 0 0 0 0 0 40 3.1 0 0 19.3 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.94544E7 24.4 19.4 74 98200 0 0 395 0 0 0 0 0 0 0 60 3.1 5 5 19.3 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.9458E7 23.3 19.4 79 98200 0 0 375 0 0 0 0 0 0 0 50 3.6 1 1 19.3 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.94616E7 23.3 19.4 79 98300 0 0 387 0 0 0 0 0 0 0 50 4.1 4 4 24.1 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.94652E7 23.9 20.0 79 98300 128 1321 408 37 22 35 4028 0 3822 1115 60 4.1 8 8 40.2 3660 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.94688E7 24.4 20.0 76 98300 404 1332 419 152 67 132 16569 3300 14457 4492 60 3.6 9 9 32.2 3050 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.94724E7 26.1 20.6 72 98300 667 1332 406 397 489 152 45436 27976 17476 6534 60 4.1 6 5 32.2 3050 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.9476E7 27.8 20.0 63 98300 897 1332 408 623 666 173 73534 39719 20518 8301 60 7.2 3 3 40.2 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.94796E7 28.9 20.0 59 98300 1079 1332 420 663 450 297 77132 31770 34768 13617 70 7.2 5 5 40.2 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.94832E7 29.4 19.4 55 98200 1200 1332 448 517 96 430 59473 7795 49824 18137 70 7.2 9 9 40.2 1160 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.94868E7 30.0 20.0 55 98200 1251 1332 430 802 479 350 94378 34337 41465 15983 70 6.7 7 6 40.2 1830 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.94904E7 30.6 20.0 53 98100 1229 1332 439 488 75 418 56467 5885 48716 17974 50 7.7 8 7 40.2 2740 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.9494E7 31.1 19.4 50 98100 1136 1332 441 598 237 395 68642 18898 45658 16857 50 6.7 8 7 40.2 2740 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.94976E7 30.6 21.7 59 98000 978 1332 436 623 485 265 71908 32589 30769 12045 70 3.6 8 6 40.2 7620 9 999999999 38 0.0000 0 88 0.000 0.8 1.0 +1.95012E7 31.1 20.6 53 98000 765 1332 430 498 534 189 57077 33376 21771 8279 80 5.2 7 4 40.2 7620 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.95048E7 30.0 20.6 57 98000 513 1332 424 293 374 147 32564 20597 16414 5571 70 7.2 8 4 40.2 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.95084E7 29.4 20.0 57 98000 239 1332 420 102 168 71 11097 2662 7754 2324 60 4.1 8 4 32.2 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.9512E7 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 38 0.0000 0 88 0.000 0.0 1.0 +1.95156E7 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 38 0.0000 0 88 0.000 0.0 1.0 +1.95192E7 25.0 21.7 82 98200 0 0 391 0 0 0 0 0 0 0 80 4.6 4 2 19.3 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.95228E7 24.4 22.2 88 98200 0 0 376 0 0 0 0 0 0 0 90 3.6 0 0 19.3 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.95264E7 23.9 22.2 90 98200 0 0 374 0 0 0 0 0 0 0 90 4.6 0 0 19.3 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.953E7 23.3 22.2 94 98200 0 0 390 0 0 0 0 0 0 0 70 3.6 4 4 19.3 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.95336E7 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 38 0.0000 0 88 0.000 0.0 1.0 +1.95372E7 22.8 21.7 94 98100 0 0 387 0 0 0 0 0 0 0 100 3.6 4 4 16.1 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.95408E7 22.8 21.7 94 98100 0 0 390 0 0 0 0 0 0 0 50 3.1 5 5 16.1 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.95444E7 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 39 0.0000 0 88 0.000 0.0 1.0 +1.9548E7 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 37 0.0000 0 88 0.000 0.0 1.0 +1.95516E7 22.8 21.1 90 98200 125 1299 397 33 4 32 3607 0 3509 1042 60 4.6 7 7 24.1 430 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.95552E7 24.4 21.1 82 98200 401 1332 387 178 230 108 19691 9448 11997 3943 90 4.6 3 2 24.1 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.95588E7 25.6 21.7 79 98200 665 1332 398 373 325 210 41510 21334 23498 8201 90 5.2 3 3 24.1 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.95624E7 27.2 21.7 72 98300 895 1332 417 602 448 300 67861 32961 34030 12496 100 5.2 8 6 32.2 580 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.9566E7 28.3 21.1 65 98300 1077 1332 419 670 378 363 76596 28815 41781 15647 120 5.7 7 5 32.2 7620 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.95696E7 28.3 21.1 65 98200 1198 1332 412 871 537 386 100840 40289 45002 16899 120 5.7 4 3 32.2 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.95732E7 29.4 21.7 63 98200 1249 1332 419 888 533 386 103471 38827 45294 17125 90 4.1 5 3 32.2 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.95768E7 30.0 21.1 59 98100 1227 1332 425 795 410 416 91880 31563 48426 17905 130 4.1 5 4 32.2 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.95804E7 32.2 21.1 52 98000 1133 1332 437 819 535 361 94470 39779 41924 15871 80 3.6 5 4 32.2 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.9584E7 32.2 21.1 52 98000 975 1332 434 593 373 318 67468 27681 36412 13668 110 3.1 5 3 32.2 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.95876E7 31.1 20.0 52 98000 761 1332 426 400 268 245 44894 19180 27655 9912 90 4.6 7 3 40.2 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.95912E7 30.6 21.1 57 98000 509 1332 435 226 110 183 24624 6852 20045 6337 130 6.7 9 6 40.2 7620 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.95948E7 27.8 22.2 72 98000 234 1332 442 56 18 53 6215 74 5900 1890 170 4.1 9 9 40.2 7620 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.95984E7 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 38 0.0000 0 88 0.000 0.0 1.0 +1.9602E7 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 38 0.0000 0 88 0.000 0.0 1.0 +1.96056E7 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 40 0.0000 0 88 0.000 0.0 1.0 +1.96092E7 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 38 0.0000 0 88 0.000 0.0 1.0 +1.96128E7 24.4 21.1 82 98100 0 0 391 0 0 0 0 0 0 0 130 3.1 5 3 19.3 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.96164E7 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 38 0.0000 0 88 0.000 0.0 1.0 +1.962E7 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 38 0.0000 0 88 0.000 0.0 1.0 +1.96236E7 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 38 0.0000 0 88 0.000 0.0 1.0 +1.96272E7 23.3 21.7 90 98100 0 0 386 0 0 0 0 0 0 0 70 2.6 7 3 16.1 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.96308E7 23.3 21.7 90 98100 0 0 386 0 0 0 0 0 0 0 60 2.6 7 3 16.1 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.96344E7 22.8 21.7 94 98100 0 0 375 0 0 0 0 0 0 0 80 2.1 4 1 12.9 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.9638E7 23.3 21.7 90 98100 123 1277 377 38 70 30 4165 0 3298 988 70 2.1 3 1 12.9 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.96416E7 25.0 21.7 82 98200 398 1333 391 204 344 101 22659 13132 11264 3753 70 2.1 3 2 12.9 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.96452E7 27.8 21.1 67 98200 662 1333 405 402 489 158 45796 28163 18084 6704 80 2.6 2 2 12.9 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.96488E7 29.4 20.6 59 98200 893 1333 413 601 631 177 70716 37518 20928 8440 0 0.0 2 2 24.1 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.96524E7 30.6 20.6 55 98200 1075 1333 424 727 588 251 85590 38286 29722 11969 0 0.0 4 3 24.1 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.9656E7 31.1 20.6 53 98100 1196 1333 438 671 344 362 78100 25265 42421 16161 60 3.6 6 6 24.1 7620 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.96596E7 31.7 20.6 52 98100 1247 1333 441 759 458 330 89613 31712 39219 15289 0 0.0 6 6 24.1 7620 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.96632E7 32.8 21.1 50 98100 1225 1333 448 890 639 302 105433 42492 36004 14235 70 3.1 7 6 24.1 3050 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.96668E7 32.8 21.1 50 98000 1131 1333 448 604 330 323 70256 23307 37815 14669 130 2.6 7 6 24.1 3050 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.96704E7 32.8 21.1 50 97900 971 1333 444 578 497 214 67823 30911 25246 10193 100 4.1 5 5 24.1 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.9674E7 33.3 19.4 44 97900 758 1333 438 412 403 181 47381 25321 20918 7972 100 5.2 3 3 24.1 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.96776E7 32.2 20.0 48 97900 504 1333 422 287 465 109 32641 21969 12445 4451 100 5.2 1 1 24.1 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.96812E7 31.7 19.4 48 98000 229 1333 425 93 177 62 10202 1977 6825 2092 90 5.2 2 2 24.1 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.96848E7 30.6 20.6 55 98000 16 478 420 11 3 10 0 0 0 0 90 4.1 8 2 24.1 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.96884E7 28.9 21.7 65 98000 0 0 407 0 0 0 0 0 0 0 150 5.7 8 1 24.1 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.9692E7 27.2 22.2 74 98100 0 0 391 0 0 0 0 0 0 0 170 4.1 2 0 24.1 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.96956E7 26.1 21.7 77 98100 0 0 384 0 0 0 0 0 0 0 170 3.1 0 0 24.1 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.96992E7 25.0 21.7 82 98100 0 0 379 0 0 0 0 0 0 0 190 2.6 0 0 24.1 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.97028E7 25.0 21.7 82 98100 0 0 379 0 0 0 0 0 0 0 160 2.1 0 0 24.1 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.97064E7 24.4 22.2 88 98100 0 0 376 0 0 0 0 0 0 0 160 2.1 0 0 24.1 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.971E7 23.9 21.7 87 98100 0 0 373 0 0 0 0 0 0 0 0 0.0 1 0 24.1 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.97136E7 23.3 21.7 90 98100 0 0 370 0 0 0 0 0 0 0 200 1.5 0 0 24.1 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.97172E7 23.3 21.7 90 98100 0 0 370 0 0 0 0 0 0 0 0 0.0 0 0 19.3 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.97208E7 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 38 0.0000 0 88 0.000 0.0 1.0 +1.97244E7 24.4 21.7 85 98200 120 1278 392 28 5 28 3080 0 3089 934 60 1.5 4 3 19.3 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.9728E7 26.1 22.2 79 98200 396 1333 408 152 70 131 16497 3208 14286 4416 90 2.6 7 5 16.1 7620 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.97316E7 28.3 22.2 70 98200 660 1333 410 365 354 189 40907 21744 21292 7613 70 3.1 2 2 19.3 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.97352E7 28.9 22.2 67 98300 891 1333 417 572 461 263 65080 31490 30101 11404 60 3.6 4 3 24.1 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.97388E7 30.6 21.7 59 98300 1074 1333 426 654 376 351 74866 27936 40451 15279 130 4.6 4 3 24.1 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.97424E7 31.7 21.7 55 98200 1194 1333 428 829 558 328 97086 38414 38666 15049 140 4.1 3 2 24.1 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.9746E7 32.8 21.7 52 98200 1245 1333 434 871 570 337 102506 39047 39926 15521 180 3.1 3 2 24.1 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.97496E7 33.3 20.6 47 98200 1222 1333 435 880 581 346 103171 41411 40837 15748 130 5.2 2 2 24.1 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.97532E7 33.3 20.6 47 98100 1128 1333 435 785 550 317 91455 38904 37169 14461 170 2.6 2 2 24.1 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.97568E7 33.3 20.6 47 98100 968 1333 435 639 468 297 73065 33972 34171 13000 160 5.2 2 2 24.1 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.97604E7 33.3 20.0 46 98000 754 1333 434 452 368 242 50709 26234 27304 9769 180 3.6 2 2 40.2 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.9764E7 32.2 20.6 50 98000 500 1333 415 253 301 139 28163 15976 15543 5289 160 4.1 0 0 40.2 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.97676E7 31.1 21.1 55 98000 224 1333 410 78 74 65 8489 730 7100 2136 160 3.1 0 0 40.2 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.97712E7 30.0 21.7 61 98000 14 456 405 8 0 8 0 0 0 0 210 4.6 0 0 19.3 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.97748E7 28.9 21.7 65 98100 0 0 399 0 0 0 0 0 0 0 190 3.6 0 0 19.3 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.97784E7 27.8 21.7 69 98100 0 0 393 0 0 0 0 0 0 0 200 3.6 0 0 19.3 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.9782E7 27.8 21.7 69 98100 0 0 393 0 0 0 0 0 0 0 220 3.6 0 0 19.3 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.97856E7 26.7 21.7 74 98100 0 0 387 0 0 0 0 0 0 0 210 2.6 0 0 19.3 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.97892E7 26.1 21.1 74 98000 0 0 384 0 0 0 0 0 0 0 230 2.6 0 0 19.3 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.97928E7 25.6 21.1 77 98000 0 0 381 0 0 0 0 0 0 0 280 2.6 0 0 19.3 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.97964E7 24.4 21.1 82 98000 0 0 375 0 0 0 0 0 0 0 300 1.5 0 0 19.3 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.98E7 23.3 21.1 87 98000 0 0 370 0 0 0 0 0 0 0 300 2.1 0 0 19.3 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.98036E7 23.3 21.7 90 98000 0 0 370 0 0 0 0 0 0 0 300 3.1 0 0 19.3 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.98072E7 22.8 21.1 90 98000 0 0 367 0 0 0 0 0 0 0 290 2.1 1 0 19.3 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.98108E7 23.9 21.7 87 98000 117 1256 373 43 101 32 4668 0 3485 1014 280 2.6 1 0 16.1 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.98144E7 26.1 21.7 77 98000 393 1334 392 211 457 76 23950 14043 8655 3016 310 4.1 1 1 19.3 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.9818E7 28.3 22.2 70 98000 658 1334 410 414 570 132 47737 29435 15285 5811 320 3.1 2 2 19.3 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.98216E7 30.0 21.7 61 98000 889 1334 418 585 623 168 68977 35469 19903 8069 310 4.6 2 2 19.3 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.98252E7 32.2 20.6 50 98000 1072 1334 423 770 764 154 94040 41959 18894 7953 0 0.0 1 1 19.3 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.98288E7 33.9 20.0 44 98000 1192 1334 438 891 808 166 110071 44945 20606 8613 0 0.0 2 2 16.1 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.98324E7 34.4 17.8 37 97900 1243 1334 438 892 649 285 106736 44401 34312 13649 130 2.1 2 2 16.1 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +1.9836E7 33.3 18.9 42 97800 1220 1334 433 878 738 201 107447 44171 24728 10202 140 2.1 2 2 16.1 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.98396E7 34.4 18.3 39 97800 1125 1334 438 805 705 208 97071 44049 25214 10374 270 2.6 2 2 16.1 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +1.98432E7 35.0 18.3 37 97700 965 1334 436 672 690 170 80413 41704 20439 8416 160 3.6 3 1 16.1 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.98468E7 34.4 17.2 36 97700 750 1334 431 488 638 127 57743 36448 15087 5967 140 4.1 3 1 16.1 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.98504E7 33.9 19.4 43 97700 495 1334 431 282 490 98 32302 22135 11266 4065 230 4.6 2 1 24.1 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.9854E7 32.8 19.4 45 97700 219 1334 417 94 250 52 10421 1226 5783 1820 150 4.6 2 0 16.1 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.98576E7 31.7 18.3 45 97700 12 411 410 9 6 8 0 0 0 0 180 5.2 0 0 16.1 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.98612E7 31.1 19.4 50 97700 0 0 408 0 0 0 0 0 0 0 180 4.1 0 0 16.1 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +1.98648E7 29.4 20.6 59 97800 0 0 400 0 0 0 0 0 0 0 190 4.1 0 0 16.1 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.98684E7 28.9 21.1 63 97800 0 0 398 0 0 0 0 0 0 0 190 3.6 0 0 16.1 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.9872E7 27.8 21.1 67 97800 0 0 392 0 0 0 0 0 0 0 200 3.1 0 0 16.1 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.98756E7 26.7 21.7 74 97800 0 0 387 0 0 0 0 0 0 0 210 4.1 0 0 16.1 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.98792E7 26.1 21.7 77 97800 0 0 384 0 0 0 0 0 0 0 270 3.6 0 0 16.1 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.98828E7 25.6 21.7 79 97800 0 0 382 0 0 0 0 0 0 0 270 3.6 0 0 16.1 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.98864E7 25.0 22.2 85 97800 0 0 379 0 0 0 0 0 0 0 270 2.6 0 0 16.1 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.989E7 24.4 21.7 85 97800 0 0 376 0 0 0 0 0 0 0 250 2.1 0 0 16.1 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.98936E7 24.4 22.2 88 97800 0 0 384 0 0 0 0 0 0 0 270 3.1 2 1 16.1 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.98972E7 25.6 22.2 82 97800 114 1234 395 35 6 34 3770 0 3674 1042 240 3.1 7 2 16.1 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.99008E7 27.2 22.2 74 97800 391 1334 391 197 200 139 21241 9584 15061 4520 260 3.1 9 0 16.1 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.99044E7 29.4 21.7 63 97900 656 1334 402 417 375 232 45935 26089 25703 8631 280 2.6 10 0 16.1 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.9908E7 31.7 21.7 55 97800 887 1334 422 597 458 292 67343 33347 33143 12201 200 2.6 9 1 19.3 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +1.99116E7 32.2 21.1 52 97800 1070 1334 434 714 411 383 81167 32313 43841 16135 230 3.6 8 3 19.3 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +1.99152E7 32.8 20.0 47 97800 1190 1334 439 782 397 427 89807 31984 49393 17994 240 5.7 9 4 19.3 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.99188E7 33.3 19.4 44 97700 1241 1334 441 803 405 425 92970 32215 49562 18216 230 3.6 9 4 19.3 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +1.99224E7 33.9 20.0 44 97600 1217 1334 446 821 405 451 94249 33185 52157 18776 230 5.2 10 4 24.1 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +1.9926E7 33.3 20.6 47 97600 1122 1334 443 715 360 411 81523 28941 47196 17194 160 3.6 9 4 24.1 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.99296E7 32.8 20.6 49 97500 961 1334 443 557 280 354 62720 22258 40128 14505 180 5.2 9 5 24.1 7620 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +1.99332E7 30.0 23.3 68 97500 746 1334 440 365 165 272 40329 11805 30238 10422 200 3.1 9 7 24.1 7620 9 999999999 42 0.0000 0 88 0.000 0.3 1.0 +1.99368E7 28.3 22.2 70 97500 491 1334 445 162 108 122 18152 5065 13729 4780 230 6.7 9 9 24.1 7620 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.99404E7 27.8 22.2 72 97500 214 1334 454 56 1 56 6136 3 6158 1899 220 8.8 10 10 19.3 7620 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.9944E7 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 40 0.0000 0 88 0.000 0.3 1.0 +1.99476E7 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 41 0.0000 0 88 0.000 0.0 1.0 +1.99512E7 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 39 0.0000 0 88 0.000 0.0 1.0 +1.99548E7 25.6 22.8 85 97600 0 0 400 0 0 0 0 0 0 0 160 3.1 6 3 16.1 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.99584E7 25.0 22.2 85 97600 0 0 392 0 0 0 0 0 0 0 190 4.1 6 2 16.1 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +1.9962E7 24.4 22.2 88 97600 0 0 384 0 0 0 0 0 0 0 200 3.1 6 1 16.1 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +1.99656E7 24.4 22.8 91 97600 0 0 377 0 0 0 0 0 0 0 210 5.2 1 0 16.1 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.99692E7 24.4 22.8 91 97500 0 0 389 0 0 0 0 0 0 0 250 5.2 4 2 16.1 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +1.99728E7 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 41 0.0000 0 88 0.000 0.0 1.0 +1.99764E7 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 41 0.0000 0 88 0.000 0.0 1.0 +1.998E7 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 41 0.0000 0 88 0.000 0.0 1.0 +1.99836E7 23.9 23.3 97 97600 112 1235 433 30 2 30 3254 0 3264 953 250 4.1 10 10 4.8 120 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.99872E7 24.4 23.3 94 97600 388 1335 424 105 14 101 11602 493 11206 3702 210 4.1 10 9 4.8 120 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.99908E7 25.0 23.3 91 97600 654 1335 439 175 3 174 19687 172 19673 7139 270 3.6 10 10 4.0 150 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.99944E7 26.1 23.3 85 97600 885 1335 446 270 2 268 30593 135 30550 11502 270 4.1 10 10 4.0 180 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +1.9998E7 26.7 23.3 82 97600 1068 1335 428 496 231 311 57154 15698 36067 14019 210 4.1 10 8 4.8 370 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +2.00016E7 30.0 22.8 65 97500 1188 1335 439 509 152 373 58871 10909 43442 16459 230 4.1 8 7 4.8 670 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.00052E7 26.7 23.9 85 97500 1238 1335 422 614 371 269 73249 21973 32289 13025 260 3.1 8 7 4.8 2740 9 999999999 43 0.0000 0 88 0.000 2.3 1.0 +2.00088E7 29.4 22.2 65 97400 1215 1335 430 930 654 332 109053 44509 39190 15252 200 6.7 7 6 11.3 2740 9 999999999 39 0.0000 0 88 0.000 2.0 1.0 +2.00124E7 25.6 23.3 88 97400 1119 1335 415 721 426 362 82729 30595 41822 15830 230 4.6 8 7 11.3 2740 9 999999999 42 0.0000 0 88 0.000 1.5 1.0 +2.0016E7 28.3 23.3 74 97300 958 1335 425 739 637 280 84467 42779 32201 12402 210 6.7 8 6 16.1 7620 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +2.00196E7 27.8 23.3 77 97400 742 1335 415 398 368 192 45210 21896 21923 8239 230 4.1 7 4 24.1 7620 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +2.00232E7 26.1 21.1 74 97500 486 1335 443 95 8 92 10893 331 10586 3835 340 6.7 10 10 16.1 910 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +2.00268E7 22.8 21.7 94 97500 209 1335 424 36 5 35 4094 0 3989 1322 300 3.1 10 10 8.0 2440 9 999999999 38 0.0000 0 88 0.000 7.6 1.0 +2.00304E7 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 38 0.0000 0 88 0.000 0.0 1.0 +2.0034E7 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 38 0.0000 0 88 0.000 0.0 1.0 +2.00376E7 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 38 0.0000 0 88 0.000 0.0 1.0 +2.00412E7 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 38 0.0000 0 88 0.000 0.0 1.0 +2.00448E7 22.8 22.2 97 97500 0 0 390 0 0 0 0 0 0 0 190 3.1 5 5 11.3 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.00484E7 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 38 0.0000 0 88 0.000 0.0 1.0 +2.0052E7 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 39 0.0000 0 88 0.000 0.0 1.0 +2.00556E7 22.2 21.7 97 97500 0 0 384 0 0 0 0 0 0 0 260 2.1 5 4 8.0 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +2.00592E7 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 38 0.0000 0 88 0.000 0.0 1.0 +2.00628E7 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 38 0.0000 0 88 0.000 0.0 1.0 +2.00664E7 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 39 0.0000 0 88 0.000 0.0 1.0 +2.007E7 22.2 22.2 100 97600 109 1213 422 24 1 24 2650 0 2657 809 300 2.6 10 10 2.4 60 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.00736E7 22.8 22.2 97 97600 386 1336 425 100 3 99 11076 108 11009 3638 310 2.1 10 10 4.0 120 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.00772E7 23.3 22.2 94 97700 651 1336 428 202 2 202 22471 128 22592 7886 310 3.1 10 10 4.0 120 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.00808E7 23.9 22.2 90 97700 883 1336 431 163 4 160 19259 221 18993 7724 320 3.1 10 10 4.0 120 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.00844E7 25.0 22.8 88 97700 1066 1336 439 373 3 371 42391 225 42455 15783 290 3.1 10 10 4.0 150 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.0088E7 26.1 22.8 82 97700 1186 1336 445 428 0 428 44833 0 45305 17992 310 2.1 10 10 6.4 270 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.00916E7 27.2 22.8 77 97700 1236 1336 439 508 78 436 58422 5951 50514 18487 310 3.1 10 9 6.4 370 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.00952E7 27.2 22.2 74 97600 1212 1336 414 827 445 422 95118 34070 48891 17983 280 3.1 7 5 9.7 3050 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.00988E7 30.0 22.2 63 97500 1116 1336 426 744 561 273 87371 36165 32255 12891 280 2.1 6 4 11.3 7620 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.01024E7 30.0 21.7 61 97500 954 1336 418 627 599 197 73789 35751 23304 9465 240 3.1 6 2 11.3 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +2.0106E7 30.6 22.2 61 97500 738 1336 426 434 427 196 49250 26371 22358 8337 270 2.1 7 3 11.3 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.01096E7 30.0 22.2 63 97500 482 1336 419 283 496 102 32102 20823 11615 4143 320 3.1 5 2 11.3 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.01132E7 28.9 22.2 67 97600 204 1336 420 70 132 49 7721 0 5422 1698 290 3.6 5 4 11.3 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.01168E7 27.8 22.2 72 97600 8 345 401 4 3 4 0 0 0 0 310 2.6 4 1 16.1 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.01204E7 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 38 0.0000 0 88 0.000 0.0 1.0 +2.0124E7 25.6 22.8 85 97700 0 0 403 0 0 0 0 0 0 0 50 2.6 4 4 16.1 2000 9 999999999 41 0.0000 0 88 0.000 0.3 1.0 +2.01276E7 25.0 22.2 85 97700 0 0 392 0 0 0 0 0 0 0 40 3.1 2 2 16.1 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.01312E7 24.4 21.7 85 97800 0 0 395 0 0 0 0 0 0 0 0 0.0 4 4 16.1 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +2.01348E7 23.3 22.2 94 97800 0 0 371 0 0 0 0 0 0 0 320 1.5 0 0 16.1 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.01384E7 23.3 21.7 90 97800 0 0 370 0 0 0 0 0 0 0 130 1.5 0 0 16.1 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +2.0142E7 23.9 21.7 87 97800 0 0 373 0 0 0 0 0 0 0 60 1.5 0 0 16.1 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +2.01456E7 23.3 21.1 87 97800 0 0 370 0 0 0 0 0 0 0 60 2.6 0 0 16.1 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +2.01492E7 22.8 21.1 90 97800 0 0 367 0 0 0 0 0 0 0 80 2.6 0 0 16.1 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +2.01528E7 22.8 21.1 90 97900 0 0 367 0 0 0 0 0 0 0 70 2.6 0 0 11.3 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +2.01564E7 22.8 21.7 94 97900 106 1191 375 43 174 25 4725 0 2754 826 70 2.6 1 1 11.3 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +2.016E7 23.9 21.7 87 98000 383 1336 389 160 295 76 18106 8812 8629 2983 70 3.6 4 3 11.3 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +2.01636E7 25.0 22.2 85 98000 649 1336 405 397 408 199 44195 25811 22271 7790 70 3.6 6 6 11.3 3050 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.01672E7 27.2 22.8 77 98000 881 1336 418 515 479 198 59774 28428 23101 9169 70 5.2 6 6 11.3 3050 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.01708E7 28.3 22.8 72 98100 1064 1336 421 689 576 229 81321 34591 27180 11090 100 3.1 5 5 11.3 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.01744E7 29.4 22.2 65 98000 1184 1336 442 560 230 356 65012 16360 41611 15915 110 4.1 8 8 11.3 760 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.0178E7 28.9 22.2 67 98000 1234 1336 439 786 374 440 90362 29026 50960 18578 80 4.1 8 8 11.3 850 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.01816E7 30.0 22.2 63 98000 1210 1336 438 843 631 269 100393 39298 32231 12963 60 5.2 7 7 12.9 850 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.01852E7 30.0 21.7 61 97900 1113 1336 438 620 258 404 70591 20275 46325 16954 90 6.7 7 7 12.9 850 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +2.01888E7 30.0 21.7 61 97900 951 1336 438 531 374 263 61048 25285 30416 11808 100 4.1 8 7 12.9 850 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +2.01924E7 28.3 22.8 72 97900 734 1336 458 296 6 292 32455 454 32219 10696 120 5.7 10 10 12.9 850 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.0196E7 28.9 22.8 70 98000 477 1336 440 185 45 169 20089 2548 18447 5797 150 3.1 8 8 11.3 3050 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.01996E7 27.8 22.8 74 98000 199 1336 418 80 37 75 8484 349 7989 2166 160 4.1 7 5 11.3 7620 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.02032E7 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 40 0.0000 0 88 0.000 0.0 1.0 +2.02068E7 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 41 0.0000 0 88 0.000 0.0 1.0 +2.02104E7 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 41 0.0000 0 88 0.000 0.0 1.0 +2.0214E7 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 41 0.0000 0 88 0.000 0.0 1.0 +2.02176E7 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 41 0.0000 0 88 0.000 0.0 1.0 +2.02212E7 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 41 0.0000 0 88 0.000 0.0 1.0 +2.02248E7 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 41 0.0000 0 88 0.000 0.0 1.0 +2.02284E7 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 41 0.0000 0 88 0.000 0.0 1.0 +2.0232E7 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 41 0.0000 0 88 0.000 0.3 1.0 +2.02356E7 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 33 0.0000 0 88 0.000 0.3 1.0 +2.02392E7 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 34 0.0000 0 88 0.000 13.2 1.0 +2.02428E7 21.7 20.6 93 98200 104 1192 417 17 0 17 1626 0 1638 610 90 4.1 10 10 4.0 490 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +2.02464E7 22.2 20.6 90 98300 380 1337 419 78 4 77 8822 125 8738 3005 80 4.1 10 10 4.0 400 9 999999999 36 0.0000 0 88 0.000 0.3 1.0 +2.025E7 22.2 21.1 94 98300 647 1337 420 193 6 191 21576 380 21463 7563 80 3.1 10 10 1.6 240 9 999999999 37 0.0000 0 88 0.000 1.5 1.0 +2.02536E7 22.8 21.1 90 98300 879 1337 424 230 7 225 26471 456 26038 10099 90 3.6 10 10 3.2 310 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +2.02572E7 23.9 21.7 87 98300 1062 1337 431 376 2 374 42733 154 42798 15830 120 3.1 10 10 3.2 310 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +2.02608E7 24.4 21.7 85 98300 1182 1337 434 370 5 366 42871 364 42699 16214 110 2.1 10 10 3.2 310 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +2.02644E7 25.6 22.2 82 98200 1231 1337 441 406 3 403 46984 223 46971 17539 80 2.1 10 10 3.2 310 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.0268E7 27.2 22.8 77 98100 1207 1337 452 426 1 425 48888 76 49131 18030 80 4.1 10 10 4.8 610 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.02716E7 27.8 22.2 72 98000 1110 1337 417 775 566 303 90179 38307 35481 13923 40 4.1 6 5 3.2 3050 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.02752E7 26.7 22.8 79 97900 947 1337 427 542 262 356 60683 20248 40129 14401 60 4.6 8 8 6.4 910 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.02788E7 27.2 22.8 77 97900 729 1337 439 331 61 298 36200 4684 32799 10754 70 4.1 9 9 6.4 910 9 999999999 41 0.0000 0 88 0.000 0.3 1.0 +2.02824E7 26.1 22.8 82 97900 472 1337 417 231 186 165 25103 10348 18024 5680 90 4.6 9 7 6.4 3050 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.0286E7 25.6 23.3 88 97900 194 1337 443 26 0 26 2499 0 2518 1011 50 3.6 10 10 6.4 910 9 999999999 42 0.0000 0 88 0.000 0.8 1.0 +2.02896E7 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 42 0.0000 0 88 0.000 0.0 1.0 +2.02932E7 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 42 0.0000 0 88 0.000 0.0 1.0 +2.02968E7 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 42 0.0000 0 88 0.000 0.0 1.0 +2.03004E7 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 41 0.0000 0 88 0.000 0.0 1.0 +2.0304E7 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 41 0.0000 0 88 0.000 0.0 1.0 +2.03076E7 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 40 0.0000 0 88 0.000 0.0 1.0 +2.03112E7 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 40 0.0000 0 88 0.000 0.0 1.0 +2.03148E7 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 40 0.0000 0 88 0.000 0.0 1.0 +2.03184E7 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 38 0.0000 0 88 0.000 0.0 1.0 +2.0322E7 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 41 0.0000 0 88 0.000 0.0 1.0 +2.03256E7 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 41 0.0000 0 88 0.000 0.0 1.0 +2.03292E7 23.3 22.2 94 97800 101 1170 428 19 1 19 2124 0 2129 662 260 2.6 10 10 0.8 60 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.03328E7 23.9 22.2 90 97800 378 1337 431 48 6 47 5631 121 5526 1992 280 4.1 10 10 0.8 60 9 999999999 39 0.0000 0 88 0.000 0.3 1.0 +2.03364E7 23.3 22.8 97 97700 644 1337 429 133 9 128 15316 450 14803 5611 280 2.6 10 10 2.4 90 9 999999999 41 0.0000 0 88 0.000 2.5 1.0 +2.034E7 23.9 22.8 94 97800 877 1337 420 356 90 297 39964 6502 33551 12229 280 3.1 10 9 2.4 240 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.03436E7 25.0 22.8 88 97800 1060 1337 406 438 112 349 49968 8179 40083 15121 280 2.6 8 6 2.4 7620 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.03472E7 27.2 22.2 74 97800 1180 1337 418 732 408 371 84641 29667 43196 16354 270 2.1 10 6 8.0 7620 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.03508E7 28.3 22.2 70 97700 1229 1337 420 840 508 372 97784 36317 43606 16594 270 2.1 10 5 11.3 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.03544E7 28.9 22.8 70 97600 1204 1337 421 817 541 328 95656 36309 38657 15075 270 3.1 10 4 16.1 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.0358E7 29.4 22.2 65 97500 1106 1337 442 664 282 430 75093 22787 48985 17552 270 3.1 10 8 16.1 7620 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.03616E7 30.0 21.1 59 97500 943 1337 437 435 143 334 49030 11028 37892 13817 310 3.6 9 7 16.1 7620 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +2.03652E7 28.9 21.7 65 97500 725 1337 431 360 292 201 40693 18507 22840 8402 320 5.2 9 7 16.1 7620 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +2.03688E7 28.3 21.1 65 97500 467 1337 419 219 248 132 24269 12406 14694 4918 310 3.6 9 5 16.1 7620 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +2.03724E7 27.8 19.4 61 97500 188 1337 403 76 238 42 8457 0 4687 1475 300 3.1 3 2 16.1 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +2.0376E7 25.6 20.0 72 97500 30 256 380 5 7 3 0 0 0 0 290 3.1 0 0 16.1 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +2.03796E7 25.0 20.6 76 97600 0 0 377 0 0 0 0 0 0 0 290 2.1 0 0 16.1 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +2.03832E7 23.9 21.1 85 97600 0 0 373 0 0 0 0 0 0 0 280 2.6 0 0 16.1 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +2.03868E7 23.3 21.1 87 97600 0 0 370 0 0 0 0 0 0 0 300 3.1 0 0 16.1 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +2.03904E7 21.7 21.1 97 97500 0 0 362 0 0 0 0 0 0 0 290 2.1 0 0 16.1 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +2.0394E7 21.7 18.3 81 97500 0 0 358 0 0 0 0 0 0 0 280 2.1 0 0 16.1 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +2.03976E7 21.7 18.9 84 97600 0 0 359 0 0 0 0 0 0 0 300 3.6 0 0 16.1 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +2.04012E7 20.6 18.3 87 97600 0 0 353 0 0 0 0 0 0 0 300 3.6 0 0 16.1 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +2.04048E7 20.0 17.2 84 97500 0 0 349 0 0 0 0 0 0 0 310 3.1 0 0 16.1 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +2.04084E7 19.4 17.2 87 97500 0 0 346 0 0 0 0 0 0 0 310 4.6 0 0 16.1 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +2.0412E7 18.3 16.7 90 97600 0 0 340 0 0 0 0 0 0 0 310 3.6 0 0 16.1 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.04156E7 18.9 16.1 84 97600 99 1148 343 32 7 31 3449 0 3352 919 310 3.6 0 0 16.1 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.04192E7 21.7 15.6 68 97700 375 1338 355 159 191 105 17589 8515 11663 3729 320 4.1 0 0 16.1 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +2.04228E7 24.4 14.4 54 97700 642 1338 367 367 391 178 41484 26600 20218 7174 310 3.1 0 0 19.3 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +2.04264E7 27.8 13.9 43 97700 875 1338 384 575 518 236 66305 38357 27362 10431 310 2.6 0 0 19.3 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.043E7 28.9 11.7 35 97700 1058 1338 387 749 596 276 87895 45589 32578 12793 20 4.1 0 0 32.2 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.04336E7 29.4 12.2 35 97700 1177 1338 390 863 639 299 102352 48485 35678 13984 350 3.6 0 0 32.2 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.04372E7 30.0 12.8 35 97600 1226 1338 394 908 651 309 108103 49050 37018 14480 310 3.6 0 0 40.2 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.04408E7 31.1 11.7 30 97500 1201 1338 398 885 645 304 105214 49128 36364 14232 340 4.6 0 0 40.2 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.04444E7 31.1 12.8 33 97500 1103 1338 399 792 611 286 93264 46271 33880 13315 330 3.6 0 0 40.2 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.0448E7 31.7 13.3 33 97400 939 1338 403 639 550 251 74159 41255 29293 11337 310 5.2 0 0 40.2 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.04516E7 31.1 13.3 34 97400 720 1338 400 441 445 200 50215 31975 22889 8342 330 3.1 0 0 40.2 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.04552E7 30.0 13.3 36 97400 462 1338 394 225 272 130 25115 15552 14573 4839 270 4.6 0 0 40.2 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.04588E7 28.9 13.3 38 97400 183 1338 389 59 42 53 6457 214 5820 1711 290 2.6 0 0 40.2 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.04624E7 26.1 15.0 51 97500 18 234 376 3 0 3 0 0 0 0 300 2.1 0 0 40.2 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +2.0466E7 26.1 14.4 49 97500 0 0 376 0 0 0 0 0 0 0 290 2.1 0 0 40.2 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +2.04696E7 25.6 14.4 50 97500 0 0 373 0 0 0 0 0 0 0 260 2.1 0 0 24.1 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +2.04732E7 24.4 14.4 54 97500 0 0 367 0 0 0 0 0 0 0 280 1.5 0 0 24.1 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +2.04768E7 23.9 15.0 58 97500 0 0 365 0 0 0 0 0 0 0 280 2.1 0 0 24.1 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +2.04804E7 21.7 15.6 68 97500 0 0 355 0 0 0 0 0 0 0 0 0.0 0 0 24.1 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +2.0484E7 22.2 15.0 64 97500 0 0 369 0 0 0 0 0 0 0 0 0.0 2 2 24.1 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +2.04876E7 21.7 15.6 68 97500 0 0 367 0 0 0 0 0 0 0 260 2.6 2 2 24.1 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +2.04912E7 21.7 14.4 64 97400 0 0 354 0 0 0 0 0 0 0 280 2.1 0 0 24.1 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +2.04948E7 21.7 14.4 64 97500 0 0 354 0 0 0 0 0 0 0 250 3.1 0 0 24.1 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +2.04984E7 21.7 15.0 66 97500 0 0 355 0 0 0 0 0 0 0 250 3.6 0 0 16.1 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +2.0502E7 22.2 15.6 66 97500 96 1127 358 42 133 27 4571 0 2947 835 250 3.1 0 0 24.1 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +2.05056E7 22.8 16.1 66 97600 372 1338 361 206 522 60 23816 15861 6955 2440 290 2.1 0 0 24.1 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.05092E7 24.4 16.7 62 97600 640 1338 370 425 703 89 50625 35314 10635 4127 290 2.1 0 0 19.3 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.05128E7 27.2 17.2 54 97600 873 1338 385 630 792 112 76729 43585 13691 5650 270 3.1 0 0 19.3 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +2.05164E7 28.9 17.8 51 97600 1055 1338 407 728 655 210 86837 42135 25181 10309 270 2.6 2 2 24.1 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +2.052E7 30.6 18.3 48 97600 1175 1338 421 820 673 227 98837 42853 27512 11229 310 1.5 3 3 19.3 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +2.05236E7 31.7 17.2 42 97600 1224 1338 426 947 806 207 115810 50124 25449 10462 280 4.1 3 3 19.3 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +2.05272E7 32.8 14.4 33 97400 1198 1338 432 883 687 265 105856 48464 31955 12781 0 0.0 4 4 19.3 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +2.05308E7 31.1 16.7 42 97400 1099 1338 437 692 490 287 81190 35609 33876 13338 210 6.2 7 7 24.1 7620 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.05344E7 31.1 16.7 42 97400 935 1338 432 436 143 336 49271 11802 38215 13789 240 4.1 7 6 24.1 7620 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.0538E7 30.6 15.6 40 97500 716 1338 424 466 534 178 53422 35549 20504 7638 240 4.1 8 5 19.3 7620 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +2.05416E7 30.6 16.1 42 97400 457 1338 414 261 423 115 29325 21589 12974 4418 190 3.1 6 2 19.3 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.05452E7 28.9 17.8 51 97400 177 1338 407 74 225 44 8172 0 4874 1493 230 2.6 3 2 19.3 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +2.05488E7 27.2 18.9 60 97500 6 212 394 1 3 0 0 0 0 0 250 2.6 1 1 19.3 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +2.05524E7 27.2 18.9 60 97600 0 0 387 0 0 0 0 0 0 0 200 3.6 0 0 19.3 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +2.0556E7 25.6 18.9 67 97600 0 0 379 0 0 0 0 0 0 0 200 3.1 0 0 19.3 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +2.05596E7 24.4 17.8 67 97700 0 0 371 0 0 0 0 0 0 0 240 2.6 0 0 19.3 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +2.05632E7 23.9 17.8 69 97700 0 0 376 0 0 0 0 0 0 0 170 2.6 4 1 16.1 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +2.05668E7 23.3 17.2 69 97700 0 0 372 0 0 0 0 0 0 0 190 1.5 3 1 16.1 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +2.05704E7 22.8 17.8 74 97700 0 0 363 0 0 0 0 0 0 0 130 1.5 0 0 16.1 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +2.0574E7 22.2 17.8 76 97700 0 0 360 0 0 0 0 0 0 0 130 2.1 0 0 16.1 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +2.05776E7 21.7 17.8 79 97700 0 0 358 0 0 0 0 0 0 0 120 1.5 0 0 16.1 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +2.05812E7 20.6 17.8 84 97700 0 0 353 0 0 0 0 0 0 0 120 1.5 0 0 16.1 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +2.05848E7 20.6 18.3 87 97800 0 0 353 0 0 0 0 0 0 0 120 2.1 0 0 16.1 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +2.05884E7 21.1 18.9 87 97900 94 1127 356 41 144 26 4451 0 2831 806 130 1.5 0 0 9.7 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +2.0592E7 22.8 20.0 84 97900 370 1339 366 203 528 56 23493 13099 6498 2298 140 2.1 0 0 8.0 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +2.05956E7 25.0 20.0 74 97900 637 1339 377 419 704 83 50000 32088 9935 3878 0 0.0 0 0 9.7 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +2.05992E7 27.2 19.4 63 97900 870 1339 387 625 798 105 76308 41318 12866 5329 90 1.5 0 0 11.3 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +2.06028E7 30.6 19.4 52 98000 1053 1339 405 784 823 135 96513 44868 16689 7050 10 1.5 2 0 11.3 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +2.06064E7 31.1 18.3 47 97900 1173 1339 406 890 860 135 96858 90648 17683 5005 100 2.1 1 0 11.3 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +2.061E7 31.7 18.9 47 97900 1221 1339 428 869 672 253 104471 43508 30593 12357 160 4.6 3 3 11.3 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +2.06136E7 31.7 18.3 45 97800 1195 1339 431 835 649 254 100065 42788 30616 12347 160 5.2 4 4 11.3 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +2.06172E7 31.7 16.7 41 97800 1096 1339 432 691 514 268 81460 36385 31779 12650 150 4.1 5 5 11.3 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +2.06208E7 31.7 16.7 41 97800 931 1339 421 654 701 163 78187 43176 19576 8011 140 4.6 4 2 12.9 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +2.06244E7 31.1 16.7 42 97800 711 1339 425 402 352 214 45324 25103 24256 8672 140 5.7 7 4 12.9 7620 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +2.0628E7 30.0 18.3 50 97800 451 1339 424 245 304 141 26979 16748 15599 5032 140 5.7 9 5 12.9 7620 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +2.06316E7 28.9 17.8 51 97900 172 1339 414 59 84 48 6450 0 5265 1563 140 5.2 10 4 12.9 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +2.06352E7 27.2 17.8 56 97900 6 167 402 1 2 1 0 0 0 0 120 4.1 7 3 12.9 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +2.06388E7 26.1 20.0 69 98000 0 0 395 0 0 0 0 0 0 0 150 3.6 2 2 12.9 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +2.06424E7 25.0 21.1 79 98000 0 0 378 0 0 0 0 0 0 0 140 3.6 2 0 11.3 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +2.0646E7 23.9 20.6 82 98000 0 0 372 0 0 0 0 0 0 0 100 3.6 0 0 11.3 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +2.06496E7 22.8 19.4 82 98100 0 0 365 0 0 0 0 0 0 0 90 3.1 0 0 11.3 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +2.06532E7 22.2 19.4 84 98100 0 0 362 0 0 0 0 0 0 0 120 2.1 0 0 11.3 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +2.06568E7 22.2 20.0 87 98000 0 0 363 0 0 0 0 0 0 0 90 2.1 0 0 11.3 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +2.06604E7 21.7 20.0 90 98000 0 0 360 0 0 0 0 0 0 0 90 3.6 0 0 11.3 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +2.0664E7 21.1 20.0 93 98000 0 0 357 0 0 0 0 0 0 0 60 2.6 0 0 11.3 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +2.06676E7 21.7 20.0 90 98000 0 0 360 0 0 0 0 0 0 0 60 2.1 0 0 11.3 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +2.06712E7 21.1 20.0 93 98000 0 0 369 0 0 0 0 0 0 0 60 4.6 2 2 11.3 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +2.06748E7 21.1 20.0 93 98100 91 1105 382 30 29 26 3245 0 2821 796 70 5.2 7 6 9.7 90 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +2.06784E7 22.8 20.6 87 98100 367 1340 379 188 401 78 21155 12241 8807 2988 70 5.2 4 2 11.3 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +2.0682E7 24.4 20.6 79 98100 635 1340 387 373 435 166 42091 25939 18823 6782 40 4.1 5 2 11.3 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +2.06856E7 26.1 20.0 69 98100 868 1340 402 534 523 194 62129 32815 22686 8951 50 5.7 5 4 40.2 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +2.06892E7 26.7 19.4 65 98100 1051 1340 405 600 484 219 71175 30805 26119 10652 70 5.7 4 4 40.2 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +2.06928E7 27.8 18.9 59 98000 1170 1340 410 869 706 251 103803 46208 30156 12177 10 4.6 4 4 40.2 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +2.06964E7 28.3 19.4 59 98000 1218 1340 432 702 320 410 81213 25254 47770 17664 60 4.6 8 8 40.2 1280 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +2.07E7 28.3 19.4 59 97900 1192 1340 432 442 148 310 52081 10379 36760 14413 80 3.6 8 8 40.2 1280 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +2.07036E7 29.4 19.4 55 97800 1092 1340 448 278 50 237 32985 3241 28279 11476 40 2.6 9 9 40.2 1220 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +2.07072E7 30.0 19.4 53 97800 927 1340 426 565 449 253 65060 31353 29301 11323 340 3.1 8 5 40.2 7620 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +2.07108E7 31.1 19.4 50 97800 706 1340 425 455 597 138 52947 33677 16127 6223 60 2.6 5 3 40.2 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +2.07144E7 30.0 19.4 53 97800 446 1340 419 247 345 131 27297 17678 14542 4769 50 4.1 9 3 40.2 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +2.0718E7 29.4 19.4 55 97800 166 1340 419 61 74 51 6604 0 5541 1600 60 3.1 9 4 40.2 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +2.07216E7 27.8 20.0 63 97900 6 145 408 1 1 1 0 0 0 0 60 2.6 7 3 32.2 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +2.07252E7 26.1 20.6 72 97900 0 0 403 0 0 0 0 0 0 0 70 3.6 4 4 32.2 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +2.07288E7 25.0 21.1 79 98000 0 0 385 0 0 0 0 0 0 0 110 3.1 1 1 24.1 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +2.07324E7 24.4 21.1 82 98000 0 0 375 0 0 0 0 0 0 0 130 3.1 1 0 24.1 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +2.0736E7 23.9 21.7 87 98000 0 0 373 0 0 0 0 0 0 0 150 3.1 0 0 24.1 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +2.07396E7 23.3 21.7 90 98000 0 0 370 0 0 0 0 0 0 0 170 7.2 1 0 24.1 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +2.07432E7 22.8 21.1 90 98000 0 0 367 0 0 0 0 0 0 0 170 7.2 2 0 24.1 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +2.07468E7 22.8 21.1 90 97900 0 0 367 0 0 0 0 0 0 0 170 7.2 2 0 24.1 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +2.07504E7 22.2 21.1 94 97900 0 0 371 0 0 0 0 0 0 0 140 6.2 2 1 24.1 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +2.0754E7 22.8 21.1 90 97900 0 0 367 0 0 0 0 0 0 0 150 6.2 1 0 24.1 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +2.07576E7 22.2 21.1 94 98000 0 0 364 0 0 0 0 0 0 0 150 6.7 1 0 24.1 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +2.07612E7 22.8 21.1 90 98000 89 1083 367 35 39 31 3714 0 3302 867 190 6.2 3 0 19.3 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +2.07648E7 24.4 21.7 85 98000 364 1340 376 189 308 105 20707 11455 11553 3668 150 6.2 8 0 16.1 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +2.07684E7 26.7 21.7 74 98000 632 1340 395 382 500 145 43500 27214 16586 6124 300 7.2 5 1 16.1 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +2.0772E7 28.9 21.1 63 98100 866 1340 406 569 602 179 66511 35781 21026 8385 280 7.2 3 1 19.3 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +2.07756E7 30.0 19.4 53 98000 1048 1340 419 719 577 266 83977 39699 31251 12397 230 6.7 3 3 24.1 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +2.07792E7 30.6 19.4 52 98000 1168 1340 438 728 368 407 83659 29503 47102 17314 210 6.7 7 7 24.1 7620 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +2.07828E7 30.0 20.0 55 98000 1216 1340 452 540 147 407 62440 11470 47397 17563 330 8.2 9 9 19.3 2440 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +2.07864E7 32.8 18.3 42 97900 1188 1340 437 698 399 342 81663 29722 40277 15479 320 6.2 5 4 19.3 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +2.079E7 33.3 17.2 38 97800 1088 1340 435 688 492 287 80545 35648 33803 13299 330 7.2 4 3 19.3 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +2.07936E7 32.2 17.8 42 97700 922 1340 429 604 511 250 69675 36433 29003 11197 340 8.2 4 3 19.3 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +2.07972E7 32.2 17.8 42 97700 701 1340 433 431 483 176 49224 31037 20198 7491 320 8.8 4 4 16.1 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +2.08008E7 29.4 20.0 57 97700 441 1340 407 230 382 103 25872 16533 11631 4009 340 10.3 4 1 16.1 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +2.08044E7 27.8 20.6 65 97700 160 1340 399 58 107 45 6318 0 4918 1457 360 9.8 4 1 11.3 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +2.0808E7 27.2 21.1 69 97800 1 123 397 0 0 0 0 0 0 0 40 8.2 3 1 11.3 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +2.08116E7 25.6 20.6 74 97900 0 0 397 0 0 0 0 0 0 0 140 8.8 3 3 11.3 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +2.08152E7 24.4 19.4 74 97900 0 0 385 0 0 0 0 0 0 0 160 7.2 2 2 11.3 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +2.08188E7 24.4 19.4 74 97900 0 0 385 0 0 0 0 0 0 0 0 0.0 2 2 11.3 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +2.08224E7 23.3 20.6 85 97900 0 0 369 0 0 0 0 0 0 0 300 3.6 0 0 11.3 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +2.0826E7 22.8 21.1 90 97900 0 0 367 0 0 0 0 0 0 0 310 2.6 0 0 11.3 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +2.08296E7 22.2 20.0 87 97800 0 0 363 0 0 0 0 0 0 0 310 3.1 2 0 11.3 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +2.08332E7 21.1 20.6 97 97800 0 0 358 0 0 0 0 0 0 0 330 2.6 2 0 11.3 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +2.08368E7 21.1 18.3 84 97700 0 0 371 0 0 0 0 0 0 0 320 2.6 7 3 11.3 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +2.08404E7 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 31 0.0000 0 88 0.000 0.0 1.0 +2.0844E7 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 31 0.0000 0 88 0.000 0.0 1.0 +2.08476E7 20.0 18.9 93 97900 87 1084 375 36 13 35 3780 0 3690 896 310 2.6 9 6 4.0 3050 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +2.08512E7 21.1 18.9 87 97900 361 1341 385 138 116 106 15143 4728 11681 3674 310 4.1 9 7 4.0 3050 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +2.08548E7 22.2 18.9 82 97900 630 1341 391 353 327 199 39277 22100 22259 7629 320 3.1 10 7 4.0 7620 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +2.08584E7 25.0 19.4 71 97900 863 1341 407 427 140 337 47507 11534 37739 13020 30 1.5 10 7 6.4 7620 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +2.0862E7 25.6 20.0 72 97900 1046 1341 411 499 181 357 56876 14132 40964 15238 330 3.1 10 7 6.4 7620 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +2.08656E7 25.6 21.1 77 97900 1165 1341 440 202 17 188 24589 965 23002 9564 320 3.1 10 10 8.0 7620 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +2.08692E7 26.7 20.0 67 97900 1213 1341 445 365 12 354 42652 878 41645 15951 320 4.1 10 10 4.8 3050 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +2.08728E7 29.4 19.4 55 97700 1185 1341 438 637 298 373 73902 22751 43570 16432 60 1.5 10 8 8.0 3050 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +2.08764E7 29.4 18.9 53 97700 1085 1341 459 273 3 270 32044 207 31880 12685 90 1.5 10 10 9.7 3050 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +2.088E7 30.0 19.4 53 97600 918 1341 419 587 536 218 68294 35215 25499 10075 0 0.0 7 3 16.1 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +2.08836E7 30.6 19.4 52 97600 696 1341 445 275 102 221 30754 7125 24851 8740 350 2.6 8 8 11.3 7620 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +2.08872E7 28.9 19.4 57 97600 435 1341 445 170 99 137 18664 5190 15111 4835 340 5.2 9 9 11.3 1220 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +2.08908E7 26.1 20.0 69 97600 154 1341 390 58 192 36 6421 0 3997 1233 320 4.6 3 1 11.3 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +2.08944E7 24.4 19.4 74 97700 12 101 373 2 1 1 0 0 0 0 10 4.1 3 0 11.3 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +2.0898E7 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 33 0.0000 0 88 0.000 0.0 1.0 +2.09016E7 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 35 0.0000 0 88 0.000 0.0 1.0 +2.09052E7 22.8 20.6 87 97800 0 0 385 0 0 0 0 0 0 0 130 3.1 4 4 11.3 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +2.09088E7 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 36 0.0000 0 88 0.000 0.0 1.0 +2.09124E7 21.7 20.6 93 97800 0 0 383 0 0 0 0 0 0 0 80 2.1 5 5 9.7 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +2.0916E7 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 36 0.0000 0 88 0.000 0.0 1.0 +2.09196E7 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 37 0.0000 0 88 0.000 0.0 1.0 +2.09232E7 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 37 0.0000 0 88 0.000 0.0 1.0 +2.09268E7 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 36 0.0000 0 88 0.000 0.0 1.0 +2.09304E7 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 35 0.0000 0 88 0.000 0.0 1.0 +2.0934E7 21.1 20.0 93 97900 84 1062 412 27 2 27 2888 0 2897 781 60 4.6 10 10 3.2 150 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +2.09376E7 21.1 20.0 93 97900 359 1342 412 57 0 57 5584 0 5629 2309 80 5.2 10 10 3.2 150 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +2.09412E7 21.1 20.0 93 98000 627 1342 412 134 0 134 13437 0 13556 5739 80 5.7 10 10 2.4 150 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +2.09448E7 22.2 19.4 84 98100 861 1342 418 321 9 316 35886 717 35552 12523 70 6.2 10 10 2.4 240 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +2.09484E7 22.8 19.4 82 98100 1044 1342 421 300 5 296 34716 361 34465 13388 90 5.2 10 10 4.0 310 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +2.0952E7 23.9 20.0 79 98100 1163 1342 428 351 7 345 40806 515 40376 15468 100 6.2 10 10 6.4 430 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +2.09556E7 24.4 20.0 76 98100 1210 1342 419 381 90 299 45090 6123 35608 14068 90 5.7 10 9 6.4 430 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +2.09592E7 23.9 19.4 76 98100 1182 1342 428 381 2 379 44122 154 44193 16594 60 6.2 10 10 8.0 430 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +2.09628E7 23.9 19.4 76 98100 1081 1342 428 272 25 252 32063 1665 29877 12013 70 5.7 10 10 8.0 430 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +2.09664E7 23.3 18.9 76 98000 913 1342 424 268 7 263 30712 504 30315 11551 70 6.2 10 10 8.0 520 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +2.097E7 22.8 18.9 79 98000 691 1342 421 198 7 195 22359 464 22134 7999 70 6.2 10 10 6.4 460 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +2.09736E7 22.8 18.9 79 98000 430 1342 421 123 4 122 13621 196 13569 4457 70 5.7 10 10 6.4 460 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +2.09772E7 22.2 18.9 82 98100 149 1342 417 37 1 37 4078 0 4090 1241 70 5.7 10 10 8.0 400 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +2.09808E7 22.2 19.4 84 98100 6 56 418 1 0 1 0 0 0 0 100 4.6 10 10 8.0 430 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +2.09844E7 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 34 0.0000 0 88 0.000 0.0 1.0 +2.0988E7 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 33 0.0000 0 88 0.000 0.0 1.0 +2.09916E7 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 31 0.0000 0 88 0.000 0.0 1.0 +2.09952E7 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 30 0.0000 0 88 0.000 0.0 1.0 +2.09988E7 21.4 18.1 76 97800 0 0 357 0 0 0 0 0 0 0 90 3.5 0 0 8.0 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +2.10024E7 21.3 17.8 78 97800 0 0 368 0 0 0 0 0 0 0 70 3.2 2 2 8.0 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +2.1006E7 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 38 0.0000 0 88 0.000 0.0 1.0 +2.10096E7 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 39 0.0000 0 88 0.000 0.0 1.0 +2.10132E7 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 39 0.0000 0 88 0.000 0.0 1.0 +2.10168E7 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 39 0.0000 0 88 0.000 0.0 1.0 +2.10204E7 20.6 17.2 81 97900 82 1040 395 33 2 33 3469 0 3483 840 80 4.1 9 9 4.8 2438 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.1024E7 20.0 16.7 81 97900 356 1342 391 130 27 123 14094 1297 13396 3967 60 5.7 9 9 8.0 1036 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.10276E7 21.1 17.8 81 97900 625 1342 398 248 98 203 27547 6815 22668 7681 60 5.2 9 9 6.4 2743 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.10312E7 21.7 18.3 81 98000 858 1342 402 320 70 275 36205 5290 31299 11458 60 5.7 9 9 6.4 2438 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.10348E7 22.8 18.3 76 98000 1041 1342 408 442 231 262 51675 16115 30810 12218 60 4.1 9 9 8.0 2591 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.10384E7 23.9 17.8 69 97900 1160 1342 391 721 469 315 84567 34303 37181 14475 70 6.2 5 5 11.2 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.1042E7 25.0 17.2 62 97900 1206 1342 396 548 237 335 64424 17671 39640 15305 70 5.7 5 5 14.4 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.10456E7 25.6 17.2 60 97900 1178 1342 423 393 0 392 41402 0 41722 16952 80 6.7 9 9 16.0 2438 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +2.10492E7 26.7 17.8 58 97800 1077 1342 430 474 218 299 55181 16003 35024 13657 70 6.7 9 9 14.4 2438 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +2.10528E7 24.4 16.7 62 97800 909 1342 415 338 78 285 38533 6011 32686 12176 70 5.7 9 9 16.0 2438 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +2.10564E7 24.4 16.7 62 97800 686 1342 415 160 62 128 18704 3567 15024 5779 60 5.2 9 9 16.0 2438 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +2.106E7 23.9 17.2 66 97800 424 1342 425 66 0 66 6527 0 6580 2773 80 5.2 10 10 14.4 2438 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +2.10636E7 23.3 17.2 69 97800 142 1342 421 27 0 27 2604 0 2623 969 80 4.6 10 10 14.4 2134 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +2.10672E7 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 43 0.0000 0 88 0.000 0.0 1.0 +2.10708E7 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 44 0.0000 0 88 0.000 0.0 1.0 +2.10744E7 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 44 0.0000 0 88 0.000 0.0 1.0 +2.1078E7 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 44 0.0000 0 88 0.000 0.0 1.0 +2.10816E7 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 45 0.0000 0 88 0.000 0.0 1.0 +2.10852E7 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 45 0.0000 0 88 0.000 0.0 1.0 +2.10888E7 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 45 0.0000 0 88 0.000 0.0 1.0 +2.10924E7 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 46 0.0000 0 88 0.000 0.0 1.0 +2.1096E7 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 46 0.0000 0 88 0.000 0.0 1.0 +2.10996E7 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 46 0.0000 0 88 0.000 0.0 1.0 +2.11032E7 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 46 0.0000 0 88 0.000 0.0 1.0 +2.11068E7 20.6 18.3 87 97800 79 1041 408 14 0 14 1339 0 1348 486 60 4.1 10 10 16.0 975 9 999999999 47 0.0000 0 88 0.000 0.0 1.0 +2.11104E7 21.1 17.8 81 97900 353 1343 410 56 0 56 5497 0 5541 2263 50 5.2 10 10 16.0 762 9 999999999 47 0.0000 0 88 0.000 0.3 1.0 +2.1114E7 20.6 18.9 90 97900 622 1343 408 113 0 113 11341 0 11440 4989 70 4.6 10 10 4.8 914 9 999999999 47 0.0000 0 88 0.000 0.0 1.0 +2.11176E7 21.1 18.9 87 97900 856 1343 411 174 0 174 17813 0 17981 8149 80 4.6 10 10 6.4 701 9 999999999 46 0.0000 0 88 0.000 0.0 1.0 +2.11212E7 21.7 19.4 87 97900 1038 1343 415 187 0 187 19427 0 19620 9314 80 5.2 10 10 11.2 244 9 999999999 46 0.0000 0 88 0.000 0.0 1.0 +2.11248E7 22.2 19.4 84 97900 1157 1343 418 213 0 213 22346 0 22576 10618 90 4.1 10 10 4.8 274 9 999999999 46 0.0000 0 88 0.000 0.0 1.0 +2.11284E7 22.8 19.4 81 97900 1203 1343 421 223 0 223 23485 0 23730 11106 90 3.6 10 10 16.0 366 9 999999999 46 0.0000 0 88 0.000 0.0 1.0 +2.1132E7 22.8 20.0 84 97800 1175 1343 422 216 0 216 22680 0 22915 10772 90 4.6 10 10 11.2 305 9 999999999 46 0.0000 0 88 0.000 0.0 1.0 +2.11356E7 23.3 20.0 82 97800 1072 1343 425 194 0 194 20201 0 20405 9693 80 4.6 10 10 12.8 244 9 999999999 46 0.0000 0 88 0.000 0.0 1.0 +2.11392E7 23.3 20.0 82 97700 904 1343 425 157 0 157 16123 0 16278 7672 100 3.6 10 10 12.8 305 9 999999999 46 0.0000 0 88 0.000 0.0 1.0 +2.11428E7 23.3 20.0 82 97700 681 1343 425 107 0 107 10783 0 10880 4960 90 4.1 10 10 12.8 305 9 999999999 45 0.0000 0 88 0.000 0.0 1.0 +2.11464E7 23.3 20.6 85 97700 418 1343 426 54 0 54 5316 0 5360 2326 80 4.1 10 10 14.4 305 9 999999999 45 0.0000 0 88 0.000 0.0 1.0 +2.115E7 22.8 20.6 87 97700 136 1343 423 21 0 21 2016 0 2031 782 70 3.6 10 10 12.8 305 9 999999999 45 0.0000 0 88 0.000 0.0 1.0 +2.11536E7 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 45 0.0000 0 88 0.000 0.0 1.0 +2.11572E7 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 45 0.0000 0 88 0.000 0.0 1.0 +2.11608E7 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 45 0.0000 0 88 0.000 0.0 1.0 +2.11644E7 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 45 0.0000 0 88 0.000 0.0 1.0 +2.1168E7 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 44 0.0000 0 88 0.000 0.0 1.0 +2.11716E7 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 44 0.0000 0 88 0.000 0.0 1.0 +2.11752E7 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 44 0.0000 0 88 0.000 0.0 1.0 +2.11788E7 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 44 0.0000 0 88 0.000 0.0 1.0 +2.11824E7 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 44 0.0000 0 88 0.000 0.0 1.0 +2.1186E7 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 44 0.0000 0 88 0.000 0.0 1.0 +2.11896E7 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 44 0.0000 0 88 0.000 0.0 1.0 +2.11932E7 21.7 20.6 93 97800 77 1019 417 8 0 8 763 0 768 301 90 3.1 10 10 0.4 30 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +2.11968E7 22.2 20.6 91 97800 350 1344 419 41 0 41 4010 0 4042 1729 100 3.1 10 10 6.8 30 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +2.12004E7 22.8 20.6 87 97800 619 1344 423 87 0 87 8711 0 8788 3996 130 2.1 10 10 4.8 91 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +2.1204E7 24.4 20.6 79 97800 853 1344 432 154 0 154 15730 0 15879 7363 130 1.5 10 10 4.8 274 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +2.12076E7 25.0 20.6 77 97800 1036 1344 436 230 0 230 23854 0 24092 11020 130 2.1 10 10 16.0 427 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +2.12112E7 26.7 21.1 71 97800 1154 1344 446 259 0 259 27109 0 27389 12445 120 1.5 10 10 16.0 945 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +2.12148E7 28.3 20.6 63 97700 1200 1344 418 667 464 252 79816 29258 30332 12272 120 2.6 5 5 16.0 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +2.12184E7 28.3 21.1 65 97700 1171 1344 456 263 0 263 27569 0 27855 12638 110 1.5 10 10 16.0 1158 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +2.1222E7 29.4 20.0 57 97600 1068 1344 448 479 54 435 53924 4627 49326 17347 70 1.5 9 9 16.0 1676 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.12256E7 30.0 21.1 59 97500 899 1344 428 553 492 223 63905 31776 25911 10148 40 2.1 5 5 16.0 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.12292E7 30.0 19.4 53 97500 675 1344 451 166 64 133 19260 3551 15496 5920 0 0.0 9 9 16.0 2743 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.12328E7 27.8 20.6 65 97500 412 1344 440 118 48 103 13166 1974 11538 3885 280 4.1 9 9 16.0 1097 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.12364E7 25.6 18.3 64 97500 131 1310 409 38 73 31 4208 0 3442 1049 40 5.7 7 7 16.0 1433 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.124E7 22.8 17.8 73 97600 0 0 385 0 0 0 0 0 0 0 50 3.6 5 5 16.0 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.12436E7 22.2 18.3 79 97700 0 0 382 0 0 0 0 0 0 0 130 2.1 5 5 16.0 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.12472E7 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 40 0.0000 0 88 0.000 0.0 1.0 +2.12508E7 21.7 17.2 76 97600 0 0 373 0 0 0 0 0 0 0 220 2.1 3 3 16.0 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.12544E7 21.1 17.2 78 97500 0 0 354 0 0 0 0 0 0 0 240 1.5 0 0 16.0 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.1258E7 21.1 17.8 81 97600 0 0 355 0 0 0 0 0 0 0 0 0.0 0 0 16.0 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.12616E7 20.6 17.8 84 97600 0 0 353 0 0 0 0 0 0 0 20 2.1 0 0 16.0 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.12652E7 20.6 17.8 84 97500 0 0 364 0 0 0 0 0 0 0 100 1.5 2 2 16.0 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.12688E7 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 38 0.0000 0 88 0.000 0.0 1.0 +2.12724E7 20.0 17.8 87 97600 0 0 350 0 0 0 0 0 0 0 60 2.6 0 0 16.0 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +2.1276E7 20.0 18.3 90 97600 0 0 365 0 0 0 0 0 0 0 0 0.0 3 3 14.4 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +2.12796E7 21.1 18.3 84 97600 75 997 367 24 117 16 2657 0 1775 528 0 0.0 2 2 12.8 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +2.12832E7 22.8 18.9 79 97700 347 1344 380 192 437 79 21492 13594 8874 2945 70 4.1 3 3 14.4 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +2.12868E7 25.0 20.0 74 97700 617 1344 399 347 311 204 38372 20951 22680 7634 90 2.6 5 5 12.8 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +2.12904E7 26.7 20.6 69 97700 851 1344 403 567 646 158 66780 37106 18694 7510 60 2.6 3 3 16.0 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +2.1294E7 28.3 21.7 67 97700 1033 1344 419 446 328 194 53112 19138 23222 9587 40 2.1 5 5 16.0 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +2.12976E7 27.2 20.6 67 97600 1151 1344 436 500 51 456 56706 4294 52101 18415 20 3.1 10 9 16.0 1250 9 999999999 38 0.0000 0 88 0.000 5.1 1.0 +2.13012E7 27.8 20.0 63 97500 1197 1344 439 244 61 189 29845 3528 23236 9642 0 0.0 10 9 12.8 1067 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +2.13048E7 26.1 21.1 74 97500 1167 1344 431 411 55 363 47563 4061 42295 16044 0 0.0 10 9 8.0 610 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.13084E7 28.3 19.4 59 97400 1064 1344 416 636 410 312 73531 30089 36300 14018 70 1.5 5 5 16.0 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.1312E7 27.8 21.1 67 97400 895 1344 416 568 547 204 66047 34058 23846 9450 140 4.1 5 5 16.0 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.13156E7 28.3 19.4 59 97400 670 1344 416 369 493 123 43032 26506 14401 5536 170 2.1 5 5 16.0 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.13192E7 27.2 18.9 61 97400 406 1344 410 157 118 122 17278 5665 13486 4322 200 2.1 5 5 16.0 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.13228E7 25.0 18.9 69 97400 125 1288 398 41 103 31 4520 0 3427 1033 120 2.1 5 5 16.0 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.13264E7 25.6 18.9 67 97500 0 0 401 0 0 0 0 0 0 0 40 3.1 5 5 16.0 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.133E7 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 40 0.0000 0 88 0.000 0.0 1.0 +2.13336E7 23.9 20.0 79 97600 0 0 393 0 0 0 0 0 0 0 50 3.6 5 5 16.0 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.13372E7 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 40 0.0000 0 88 0.000 0.0 1.0 +2.13408E7 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 40 0.0000 0 88 0.000 0.0 1.0 +2.13444E7 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 40 0.0000 0 88 0.000 0.0 1.0 +2.1348E7 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 40 0.0000 0 88 0.000 0.0 1.0 +2.13516E7 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 41 0.0000 0 88 0.000 0.0 1.0 +2.13552E7 21.1 19.4 90 97500 0 0 369 0 0 0 0 0 0 0 70 4.6 2 2 12.8 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.13588E7 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 41 0.0000 0 88 0.000 0.0 1.0 +2.13624E7 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 41 0.0000 0 88 0.000 0.0 1.0 +2.1366E7 22.2 20.6 91 97600 73 998 419 16 0 16 1525 0 1535 522 60 4.1 10 10 9.6 3658 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.13696E7 22.8 20.6 87 97600 345 1345 423 52 0 52 5084 0 5124 2110 70 4.6 10 10 9.6 640 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.13732E7 24.4 21.1 82 97600 614 1345 421 284 41 265 30666 3170 28790 8715 80 5.2 9 9 12.8 274 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.13768E7 25.6 21.1 76 97700 848 1345 428 371 68 328 41168 5420 36634 12637 80 5.7 9 9 16.0 792 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.13804E7 25.0 21.1 79 97600 1030 1345 436 223 0 223 23101 0 23332 10729 60 5.7 10 10 16.0 579 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.1384E7 27.8 21.1 67 97600 1148 1345 440 746 228 551 83222 21233 61959 20187 60 4.1 9 9 16.0 853 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.13876E7 28.9 20.6 61 97500 1194 1345 446 398 41 361 46268 3018 42252 16088 40 4.1 9 9 16.0 1829 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.13912E7 28.3 20.6 63 97500 1163 1345 443 444 97 360 51414 7207 41970 15935 40 4.6 9 9 16.0 1829 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.13948E7 30.0 20.0 55 97400 1060 1345 427 517 260 312 59694 18929 36253 13994 40 4.1 5 5 16.0 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.13984E7 28.3 18.3 55 97300 890 1345 405 575 600 178 67719 37385 21065 8455 80 3.6 2 2 16.0 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.1402E7 29.4 18.9 53 97300 665 1345 415 400 485 160 45657 29377 18348 6783 80 3.6 3 3 16.0 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.14056E7 28.9 18.3 53 97300 401 1345 418 181 160 133 19756 8234 14584 4514 40 3.6 5 5 16.0 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.14092E7 27.2 18.3 58 97300 119 1267 403 37 107 27 4112 0 3008 921 60 4.6 3 3 16.0 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.14128E7 26.1 18.9 65 97400 0 0 404 0 0 0 0 0 0 0 70 4.6 5 5 16.0 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.14164E7 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 39 0.0000 0 88 0.000 0.0 1.0 +2.142E7 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 39 0.0000 0 88 0.000 0.0 1.0 +2.14236E7 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 39 0.0000 0 88 0.000 0.0 1.0 +2.14272E7 23.9 19.4 76 97400 0 0 371 0 0 0 0 0 0 0 0 0.0 0 0 16.0 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.14308E7 22.2 19.4 84 97400 0 0 362 0 0 0 0 0 0 0 280 2.6 2 0 16.0 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.14344E7 21.7 18.9 84 97400 0 0 359 0 0 0 0 0 0 0 280 2.6 3 0 16.0 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.1438E7 21.7 19.4 87 97400 0 0 360 0 0 0 0 0 0 0 280 2.6 2 0 14.4 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.14416E7 21.7 20.0 90 97400 0 0 360 0 0 0 0 0 0 0 280 2.6 3 0 14.4 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.14452E7 21.1 19.4 90 97400 0 0 357 0 0 0 0 0 0 0 270 2.6 2 0 16.0 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +2.14488E7 21.7 20.0 90 97500 0 0 360 0 0 0 0 0 0 0 280 2.6 3 0 14.4 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +2.14524E7 22.2 20.0 87 97500 71 976 363 21 58 17 2295 0 1862 538 280 3.1 2 0 11.2 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +2.1456E7 24.4 21.1 82 97600 342 1346 375 173 402 71 19452 10174 8010 2700 290 3.6 3 0 16.0 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +2.14596E7 26.7 21.1 71 97600 611 1346 387 387 617 106 45009 29499 12374 4697 260 4.1 2 0 16.0 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.14632E7 28.3 20.6 63 97600 846 1346 394 541 578 177 63093 34709 20743 8211 280 3.6 3 0 16.0 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.14668E7 28.9 20.6 61 97600 1028 1346 411 690 574 251 80567 38001 29477 11758 310 5.7 7 2 16.0 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.14704E7 30.6 21.1 57 97600 1145 1346 425 755 612 234 90105 37718 28085 11451 280 6.2 8 3 16.0 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.1474E7 31.1 21.1 55 97500 1190 1346 434 854 488 423 97928 38570 48857 17848 290 5.2 10 5 16.0 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.14776E7 31.1 21.1 55 97500 1160 1346 434 787 490 364 90946 36344 42351 16038 310 3.6 10 5 16.0 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.14812E7 29.4 20.0 57 97500 1055 1346 423 684 408 364 77954 32045 41765 15498 300 4.1 10 5 16.0 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.14848E7 30.0 20.0 55 97500 885 1346 427 419 118 341 46727 9604 38279 13366 260 3.1 10 5 16.0 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.14884E7 30.6 20.0 53 97500 659 1346 419 397 437 183 44724 27639 20720 7442 260 2.6 7 2 16.0 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.1492E7 29.4 20.6 59 97500 395 1346 418 198 294 112 21832 12548 12402 4024 250 3.1 8 3 16.0 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.14956E7 27.8 20.6 65 97500 113 1222 405 36 55 30 3940 0 3293 977 230 1.5 7 2 16.0 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.14992E7 27.2 21.1 69 97500 0 0 389 0 0 0 0 0 0 0 240 1.5 3 0 16.0 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.15028E7 26.7 20.6 69 97600 0 0 386 0 0 0 0 0 0 0 240 1.5 2 0 16.0 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.15064E7 26.7 21.1 71 97600 0 0 410 0 0 0 0 0 0 0 240 3.1 10 5 16.0 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.151E7 25.0 21.1 79 97600 0 0 378 0 0 0 0 0 0 0 220 1.5 2 0 12.8 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.15136E7 24.4 21.1 82 97600 0 0 375 0 0 0 0 0 0 0 260 2.1 3 0 11.2 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +2.15172E7 23.9 21.1 84 97600 0 0 373 0 0 0 0 0 0 0 240 2.1 3 0 9.6 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +2.15208E7 23.3 21.1 87 97600 0 0 370 0 0 0 0 0 0 0 260 2.6 2 0 9.6 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +2.15244E7 23.3 20.6 85 97600 0 0 369 0 0 0 0 0 0 0 260 2.1 3 0 8.0 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +2.1528E7 22.8 20.6 87 97600 0 0 366 0 0 0 0 0 0 0 270 2.1 2 0 11.2 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +2.15316E7 22.2 20.6 91 97600 0 0 363 0 0 0 0 0 0 0 270 2.6 3 0 8.0 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +2.15352E7 22.2 20.6 91 97700 0 0 363 0 0 0 0 0 0 0 270 2.6 2 0 6.4 2000 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +2.15388E7 22.8 20.6 87 97700 69 954 366 22 66 17 2394 0 1855 531 0 0.0 3 0 4.8 2000 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +2.15424E7 24.4 21.1 82 97800 339 1346 375 173 430 64 19598 9758 7273 2483 270 2.6 2 0 6.4 2000 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +2.1546E7 26.7 21.7 74 97700 609 1346 387 387 623 105 44984 29139 12251 4651 280 3.1 3 0 8.0 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +2.15496E7 27.8 20.6 65 97800 843 1346 392 586 729 129 70004 39057 15474 6302 300 4.1 2 0 11.2 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +2.15532E7 29.4 21.1 61 97900 1025 1346 409 710 714 166 85505 40089 20086 8382 290 4.1 6 1 9.6 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +2.15568E7 31.1 20.0 52 97700 1142 1346 422 756 580 263 89478 38259 31313 12565 250 3.1 9 2 11.2 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +2.15604E7 30.6 20.0 53 97700 1187 1346 427 778 557 286 92063 37503 34052 13527 270 2.6 10 4 11.2 1280 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +2.1564E7 31.1 20.0 52 97600 1156 1346 433 712 459 318 83210 32641 37403 14559 280 3.6 10 5 9.6 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.15676E7 31.7 19.4 48 97500 1051 1346 435 666 504 272 77673 34983 31912 12616 240 4.1 10 5 11.2 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.15712E7 31.7 20.6 52 97500 880 1346 426 608 635 192 70897 39104 22502 8938 290 3.6 9 2 9.6 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.15748E7 30.6 20.0 53 97500 654 1346 423 387 539 124 44928 28611 14454 5512 280 3.6 9 3 9.6 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.15784E7 30.0 20.0 55 97500 389 1346 416 194 344 95 21661 13156 10648 3565 270 3.1 9 2 8.0 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.1582E7 28.3 20.6 63 97500 108 1200 412 32 36 29 3497 0 3179 937 250 2.1 9 3 11.2 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.15856E7 27.2 20.6 67 97600 0 0 402 0 0 0 0 0 0 0 260 3.1 9 2 9.6 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.15892E7 25.6 20.0 71 97600 0 0 380 0 0 0 0 0 0 0 310 3.6 3 0 12.8 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.15928E7 24.4 18.9 71 97700 0 0 372 0 0 0 0 0 0 0 320 2.1 2 0 12.8 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.15964E7 23.9 18.9 74 97700 0 0 370 0 0 0 0 0 0 0 0 0.0 3 0 12.8 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.16E7 22.8 18.9 79 97700 0 0 377 0 0 0 0 0 0 0 0 0.0 9 2 12.8 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.16036E7 22.8 18.9 79 97600 0 0 365 0 0 0 0 0 0 0 0 0.0 0 0 12.8 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.16072E7 21.7 18.9 84 97600 0 0 359 0 0 0 0 0 0 0 270 2.6 0 0 12.8 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.16108E7 21.7 18.3 81 97600 0 0 358 0 0 0 0 0 0 0 280 2.6 0 0 12.8 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.16144E7 21.7 18.3 81 97500 0 0 358 0 0 0 0 0 0 0 280 2.6 0 0 12.8 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +2.1618E7 21.1 18.3 84 97600 0 0 356 0 0 0 0 0 0 0 280 2.6 0 0 11.2 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +2.16216E7 21.1 18.3 84 97600 0 0 356 0 0 0 0 0 0 0 280 2.1 0 0 11.2 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +2.16252E7 21.1 18.9 87 97700 66 954 356 22 128 13 2445 0 1448 433 270 2.1 0 0 8.0 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +2.16288E7 23.3 19.4 79 97700 336 1347 368 184 543 48 21349 10367 5583 1956 290 2.1 0 0 9.6 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +2.16324E7 26.1 20.0 69 97700 606 1347 382 400 728 72 47939 31065 8653 3357 290 3.1 0 0 11.2 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +2.1636E7 27.2 20.6 67 97800 840 1347 389 601 816 92 73621 39617 11307 4669 280 3.1 0 0 11.2 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +2.16396E7 29.4 21.1 61 98000 1022 1347 414 719 787 121 88630 40251 14975 6342 320 3.6 2 2 8.0 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +2.16432E7 30.6 20.6 55 97800 1139 1347 424 553 345 261 65415 22459 31057 12481 250 4.1 3 3 9.6 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +2.16468E7 30.6 20.0 53 97700 1183 1347 430 662 578 154 82047 31588 19175 8046 280 3.6 5 5 9.6 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +2.16504E7 31.1 19.4 50 97700 1152 1347 432 493 270 261 58507 17892 31157 12514 290 3.1 5 5 9.6 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +2.1654E7 31.1 18.3 47 97600 1047 1347 420 676 642 177 81527 38762 21450 8911 290 3.1 2 2 9.6 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +2.16576E7 31.1 18.3 47 97500 875 1347 424 528 527 185 61839 33410 21774 8654 300 5.2 3 3 9.6 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +2.16612E7 30.6 18.3 48 97500 648 1347 404 436 748 76 52601 34837 9195 3614 300 3.6 0 0 9.6 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +2.16648E7 28.9 18.9 55 97500 383 1347 396 219 588 52 25648 15662 6104 2191 290 3.1 0 0 9.6 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +2.16684E7 28.3 19.4 59 97500 102 1156 393 38 199 21 4252 0 2355 728 340 2.1 0 0 8.0 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +2.1672E7 27.8 19.4 60 97600 0 0 390 0 0 0 0 0 0 0 10 2.6 0 0 9.6 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +2.16756E7 25.6 20.0 71 97700 0 0 380 0 0 0 0 0 0 0 0 0.0 0 0 8.0 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +2.16792E7 25.0 20.0 74 97700 0 0 377 0 0 0 0 0 0 0 0 0.0 0 0 8.0 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +2.16828E7 23.9 20.0 79 97700 0 0 371 0 0 0 0 0 0 0 0 0.0 0 0 9.6 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +2.16864E7 23.3 20.0 82 97700 0 0 368 0 0 0 0 0 0 0 0 0.0 0 0 9.6 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +2.169E7 22.8 19.4 81 97700 0 0 365 0 0 0 0 0 0 0 0 0.0 0 0 6.4 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +2.16936E7 22.2 19.4 84 97600 0 0 362 0 0 0 0 0 0 0 200 1.5 0 0 6.4 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +2.16972E7 22.2 18.9 82 97600 0 0 362 0 0 0 0 0 0 0 0 0.0 0 0 6.4 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +2.17008E7 21.7 19.4 87 97600 0 0 360 0 0 0 0 0 0 0 0 0.0 0 0 8.0 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +2.17044E7 21.7 18.9 84 97600 0 0 359 0 0 0 0 0 0 0 0 0.0 0 0 6.4 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +2.1708E7 22.2 18.9 82 97700 0 0 362 0 0 0 0 0 0 0 0 0.0 0 0 6.4 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +2.17116E7 22.2 18.9 82 97700 64 932 362 18 53 15 1970 0 1646 475 0 0.0 0 0 4.8 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +2.17152E7 25.0 20.0 74 97800 333 1348 377 167 414 64 18907 9697 7268 2466 0 0.0 0 0 4.8 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +2.17188E7 28.3 21.1 65 97800 603 1348 395 381 627 100 44434 29154 11705 4448 230 2.1 0 0 8.0 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +2.17224E7 28.9 21.1 63 97800 837 1348 398 585 733 129 69776 38816 15450 6285 230 2.1 0 0 9.6 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +2.1726E7 30.6 21.7 59 97800 1019 1348 426 573 449 233 67113 28265 27444 11058 240 2.6 4 3 9.6 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +2.17296E7 30.0 21.1 59 97800 1136 1348 428 674 515 239 80187 32092 28597 11628 250 2.1 5 5 11.2 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +2.17332E7 30.6 20.0 53 97700 1180 1348 430 635 401 284 75099 26987 33794 13434 290 2.1 5 5 11.2 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +2.17368E7 26.7 19.4 64 97700 1148 1348 408 633 489 216 76172 30254 26133 10726 320 9.3 5 5 14.4 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +2.17404E7 23.9 20.6 82 97700 1042 1348 417 462 216 294 53405 15249 34195 13311 360 4.6 10 9 11.2 3048 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +2.1744E7 23.3 20.6 85 97700 870 1348 391 468 406 205 54195 25750 23864 9353 190 1.5 5 5 12.8 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +2.17476E7 23.9 19.4 76 97600 643 1348 393 360 327 204 40083 22154 22835 7875 0 0.0 5 5 16.0 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.17512E7 23.9 20.0 79 97700 376 1348 393 167 230 103 18458 9155 11431 3712 150 2.1 5 5 16.0 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.17548E7 23.3 20.6 85 97700 97 1134 388 33 46 29 3573 0 3150 898 100 1.5 5 4 16.0 2286 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.17584E7 22.8 20.6 87 97800 0 0 379 0 0 0 0 0 0 0 50 1.5 4 2 14.4 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.1762E7 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 41 0.0000 0 88 0.000 0.0 1.0 +2.17656E7 22.8 21.1 90 97900 0 0 389 0 0 0 0 0 0 0 250 2.6 5 5 9.6 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +2.17692E7 22.2 20.6 91 97900 0 0 379 0 0 0 0 0 0 0 230 2.6 4 3 11.2 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +2.17728E7 22.2 20.0 87 97800 0 0 363 0 0 0 0 0 0 0 230 1.5 0 0 11.2 2000 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +2.17764E7 21.7 20.0 90 97800 0 0 360 0 0 0 0 0 0 0 290 1.5 0 0 11.2 2000 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +2.178E7 21.7 20.0 90 97800 0 0 376 0 0 0 0 0 0 0 0 0.0 5 3 6.4 2000 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +2.17836E7 21.1 19.4 90 97800 0 0 369 0 0 0 0 0 0 0 20 2.6 5 2 9.6 2000 9 999999999 45 0.0000 0 88 0.000 0.0 1.0 +2.17872E7 21.7 20.0 90 97800 0 0 376 0 0 0 0 0 0 0 10 2.6 5 3 8.0 2000 9 999999999 45 0.0000 0 88 0.000 0.0 1.0 +2.17908E7 21.7 19.4 87 97800 0 0 381 0 0 0 0 0 0 0 310 2.6 6 5 8.0 2000 9 999999999 46 0.0000 0 88 0.000 0.0 1.0 +2.17944E7 21.7 20.0 90 97900 0 0 360 0 0 0 0 0 0 0 0 0.0 0 0 8.0 2000 9 999999999 46 0.0000 0 88 0.000 0.0 1.0 +2.1798E7 22.2 20.6 91 97900 62 910 385 17 68 12 1886 0 1334 399 0 0.0 5 5 6.4 3353 9 999999999 47 0.0000 0 88 0.000 0.0 1.0 +2.18016E7 23.0 20.0 83 97900 330 1348 412 171 102 145 18060 5171 15394 4005 290 2.1 10 9 9.7 3300 9 999999999 46 0.0000 0 88 0.000 0.0 1.0 +2.18052E7 22.8 20.6 87 98000 600 1348 411 162 38 145 18341 2113 16490 5953 0 0.0 10 9 9.6 3048 9 999999999 46 0.0000 0 88 0.000 0.0 1.0 +2.18088E7 22.8 20.6 87 98000 835 1348 411 310 18 299 34589 1384 33571 11824 0 0.0 10 9 8.0 3353 9 999999999 46 0.0000 0 88 0.000 0.0 1.0 +2.18124E7 23.9 21.1 84 98000 1016 1348 418 458 70 405 51334 5823 45716 16129 300 2.6 10 9 9.6 2896 9 999999999 45 0.0000 0 88 0.000 0.0 1.0 +2.1816E7 24.4 20.0 76 98000 1133 1348 419 516 70 457 58367 6006 52076 18285 290 2.1 10 9 16.0 3658 9 999999999 45 0.0000 0 88 0.000 0.0 1.0 +2.18196E7 25.6 19.4 69 97900 1176 1348 425 313 101 225 37687 6297 27241 11139 0 0.0 10 9 16.0 2743 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +2.18232E7 26.1 20.6 72 97800 1144 1348 430 472 69 413 53890 5534 47491 17316 300 2.1 10 9 14.4 3048 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +2.18268E7 27.2 20.0 65 97700 1037 1348 435 395 62 346 45066 4785 39737 14860 0 0.0 10 9 14.4 3658 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +2.18304E7 28.3 19.4 59 97700 864 1348 416 386 283 204 44733 18342 23764 9289 20 2.1 6 5 16.0 2000 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +2.1834E7 28.0 20.0 62 97700 637 1348 416 294 357 125 33993 18950 14512 5482 0 0.0 6 5 14.5 2000 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +2.18376E7 26.7 20.6 69 97800 370 1348 433 119 19 113 13018 792 12416 3906 360 2.6 10 9 12.8 1036 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +2.18412E7 25.6 21.1 76 97800 92 1112 404 28 123 18 3137 0 2021 627 0 0.0 5 5 12.8 975 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.18448E7 25.0 20.6 77 97700 0 0 377 0 0 0 0 0 0 0 360 2.1 0 0 12.8 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.18484E7 23.3 20.6 85 97800 0 0 369 0 0 0 0 0 0 0 0 0.0 0 0 11.2 2000 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.1852E7 22.8 20.6 87 97800 0 0 366 0 0 0 0 0 0 0 0 0.0 0 0 9.6 2000 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.18556E7 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 40 0.0000 0 88 0.000 0.0 1.0 +2.18592E7 22.2 19.4 84 97800 0 0 384 0 0 0 0 0 0 0 0 0.0 6 5 11.2 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.18628E7 21.1 19.4 90 97800 0 0 357 0 0 0 0 0 0 0 330 1.5 0 0 11.2 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.18664E7 21.1 18.9 87 97700 0 0 356 0 0 0 0 0 0 0 310 2.6 0 0 9.6 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +2.187E7 20.0 18.3 90 97700 0 0 350 0 0 0 0 0 0 0 0 0.0 0 0 9.6 2000 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +2.18736E7 20.0 18.3 90 97700 0 0 350 0 0 0 0 0 0 0 0 0.0 0 0 8.0 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +2.18772E7 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 37 0.0000 0 88 0.000 0.0 1.0 +2.18808E7 19.4 17.8 90 97700 0 0 358 0 0 0 0 0 0 0 300 2.1 2 2 9.6 2000 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +2.18844E7 20.0 18.3 90 97800 60 911 365 20 100 13 2202 0 1434 418 0 0.0 3 3 4.8 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +2.1888E7 21.7 19.4 87 97800 327 1349 360 179 550 46 20781 9500 5353 1872 300 2.1 0 0 4.8 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +2.18916E7 23.3 20.6 85 97800 598 1349 369 396 737 69 47498 30275 8299 3216 260 2.1 0 0 4.8 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +2.18952E7 25.0 21.1 79 97800 832 1349 378 597 825 89 66595 86992 12775 1989 270 2.6 0 0 8.0 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +2.18988E7 26.7 21.7 74 97800 1013 1349 404 653 646 167 78397 35925 20145 8392 290 3.6 3 3 9.6 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +2.19024E7 27.2 21.1 69 97700 1129 1349 413 770 645 229 91814 39622 27459 11218 320 3.1 5 5 9.6 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +2.1906E7 27.2 21.1 69 97700 1172 1349 406 763 680 172 93530 37507 21188 8858 310 4.6 3 3 9.6 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +2.19096E7 27.8 20.6 65 97600 1139 1349 405 844 761 200 101903 44871 24275 10043 310 2.1 2 2 9.6 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +2.19132E7 29.4 20.6 59 97600 1033 1349 418 735 668 224 86662 42152 26557 10777 300 2.6 3 3 11.2 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +2.19168E7 30.0 20.0 55 97500 859 1349 416 575 724 113 69645 37744 13738 5662 330 4.1 2 2 12.8 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +2.19204E7 29.4 18.9 53 97500 631 1349 415 371 551 113 43237 28725 13219 5030 300 3.1 3 3 12.8 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +2.1924E7 26.7 17.2 56 97500 364 1349 405 207 238 143 22237 12917 15438 4384 330 4.1 5 5 16.0 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +2.19276E7 25.6 17.2 60 97500 87 1068 399 34 143 23 3728 0 2529 737 280 2.6 5 5 16.0 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +2.19312E7 23.9 17.8 69 97600 0 0 369 0 0 0 0 0 0 0 300 2.6 0 0 16.0 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +2.19348E7 22.8 18.9 79 97600 0 0 365 0 0 0 0 0 0 0 310 2.6 0 0 12.8 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +2.19384E7 23.3 18.3 74 97600 0 0 366 0 0 0 0 0 0 0 330 3.1 0 0 14.4 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +2.1942E7 22.8 18.3 76 97600 0 0 364 0 0 0 0 0 0 0 330 3.6 0 0 14.4 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +2.19456E7 21.7 18.9 84 97600 0 0 359 0 0 0 0 0 0 0 350 2.6 0 0 12.8 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +2.19492E7 21.1 18.9 87 97500 0 0 356 0 0 0 0 0 0 0 0 0.0 0 0 11.2 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +2.19528E7 20.0 18.3 90 97500 0 0 350 0 0 0 0 0 0 0 310 2.1 0 0 11.2 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +2.19564E7 20.6 18.3 87 97500 0 0 353 0 0 0 0 0 0 0 20 2.1 0 0 11.2 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +2.196E7 21.1 18.9 87 97600 0 0 363 0 0 0 0 0 0 0 20 2.1 1 1 11.2 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +2.19636E7 21.1 18.9 87 97600 0 0 363 0 0 0 0 0 0 0 40 2.6 1 1 9.6 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +2.19672E7 21.1 18.9 87 97600 0 0 368 0 0 0 0 0 0 0 50 3.1 2 2 8.0 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +2.19708E7 20.0 17.8 87 97600 58 889 361 14 0 14 1336 0 1345 434 0 0.0 2 2 6.4 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +2.19744E7 22.8 19.4 81 97600 324 1350 381 115 86 94 12585 2884 10329 3202 70 4.6 3 3 8.0 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +2.1978E7 24.4 18.9 71 97700 595 1350 372 320 332 174 35713 20955 19515 6728 100 3.1 0 0 11.2 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +2.19816E7 26.1 18.9 65 97600 829 1350 381 525 466 239 59698 32997 27329 10173 30 2.6 0 0 14.4 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +2.19852E7 27.8 19.4 60 97600 1010 1350 403 623 381 337 70934 29644 38621 14377 320 2.1 2 2 16.0 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +2.19888E7 28.9 19.4 57 97600 1126 1350 420 645 306 390 73860 24467 44970 16596 310 2.1 5 5 14.4 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +2.19924E7 28.9 19.4 57 97500 1169 1350 420 490 173 340 57077 12759 39866 15314 290 3.1 5 5 14.4 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.1996E7 29.4 18.9 53 97400 1135 1350 422 646 344 356 74668 26406 41424 15678 320 4.6 5 5 12.8 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.19996E7 30.6 18.3 48 97400 1028 1350 428 531 324 284 61552 23495 33120 12900 330 3.6 5 5 14.4 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.20032E7 30.0 17.8 48 97300 854 1350 417 519 403 264 58902 30113 30137 11119 290 4.6 3 3 16.0 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.20068E7 29.4 17.8 50 97300 625 1350 410 320 225 216 35389 16167 24018 8004 310 5.2 2 2 16.0 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +2.20104E7 27.8 17.8 55 97300 358 1350 388 145 156 104 15961 6457 11495 3637 290 5.7 0 0 14.4 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +2.2014E7 26.1 18.3 62 97300 82 1046 380 21 3 21 2305 0 2311 677 300 4.6 0 0 11.2 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +2.20176E7 24.4 18.3 69 97400 0 0 372 0 0 0 0 0 0 0 280 2.6 0 0 12.8 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +2.20212E7 23.3 18.9 76 97400 0 0 367 0 0 0 0 0 0 0 0 0.0 0 0 11.2 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +2.20248E7 23.3 18.3 74 97400 0 0 366 0 0 0 0 0 0 0 280 1.5 0 0 11.2 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +2.20284E7 22.8 17.8 73 97300 0 0 363 0 0 0 0 0 0 0 260 1.5 0 0 11.2 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +2.2032E7 21.1 17.2 78 97300 0 0 354 0 0 0 0 0 0 0 280 3.1 0 0 12.8 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +2.20356E7 20.6 17.2 81 97300 0 0 352 0 0 0 0 0 0 0 280 3.1 0 0 12.8 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +2.20392E7 19.4 17.2 87 97300 0 0 346 0 0 0 0 0 0 0 290 3.1 0 0 9.6 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +2.20428E7 19.4 16.7 84 97200 0 0 346 0 0 0 0 0 0 0 300 3.6 0 0 9.6 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +2.20464E7 19.4 16.1 81 97200 0 0 345 0 0 0 0 0 0 0 310 4.1 0 0 12.8 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +2.205E7 18.9 15.6 81 97300 0 0 342 0 0 0 0 0 0 0 320 4.1 0 0 12.8 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +2.20536E7 17.8 15.6 87 97300 0 0 337 0 0 0 0 0 0 0 310 3.6 0 0 11.2 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.20572E7 18.3 16.1 87 97400 56 867 355 14 3 13 1533 0 1427 406 300 3.6 4 3 6.4 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.20608E7 18.9 15.6 81 97400 321 1351 384 90 36 81 9997 1172 9030 2889 300 5.7 10 9 11.2 457 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.20644E7 20.6 11.1 54 97500 592 1351 366 307 340 158 34722 22679 17951 6280 310 7.2 5 5 16.0 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.2068E7 21.7 9.4 45 97500 826 1351 348 549 575 197 63800 41831 23006 8814 300 7.2 0 0 16.0 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.20716E7 22.8 10.0 44 97500 1007 1351 375 627 439 299 72550 35778 34805 13236 300 5.7 5 5 16.0 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.20752E7 22.8 10.0 44 97500 1123 1351 398 412 39 380 47586 3392 44184 16301 280 6.2 10 9 16.0 3658 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.20788E7 23.9 10.6 43 97400 1165 1351 360 863 703 257 103350 51488 30952 12383 330 5.7 0 0 16.0 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.20824E7 24.0 10.0 41 97400 1131 1351 360 832 693 251 99395 51012 30154 12082 320 5.7 0 0 16.1 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.2086E7 25.6 10.0 37 97300 1023 1351 368 732 658 233 86618 48454 27719 11079 310 5.7 0 0 16.0 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.20896E7 24.4 10.0 40 97300 848 1351 374 529 458 240 60778 35638 27724 10370 300 6.7 4 2 16.0 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.20932E7 23.3 10.0 43 97300 619 1351 357 366 463 153 41814 30837 17557 6319 320 4.6 0 0 16.0 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.20968E7 22.2 9.4 44 97400 352 1351 351 155 245 91 17322 10636 10207 3297 330 5.7 0 0 16.0 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.21004E7 20.6 10.6 53 97400 77 1024 345 20 11 19 2214 0 2109 617 300 4.1 0 0 16.0 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.2104E7 18.3 11.1 63 97500 0 0 334 0 0 0 0 0 0 0 300 2.6 0 0 16.0 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.21076E7 17.8 11.7 67 97500 0 0 333 0 0 0 0 0 0 0 310 3.1 0 0 16.0 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.21112E7 16.7 11.7 72 97600 0 0 328 0 0 0 0 0 0 0 290 3.1 0 0 16.0 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.21148E7 16.0 12.0 77 97600 0 0 325 0 0 0 0 0 0 0 290 3.1 0 0 16.1 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.21184E7 15.6 11.7 78 97600 0 0 323 0 0 0 0 0 0 0 300 3.1 0 0 16.0 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.2122E7 14.4 11.1 81 97600 0 0 317 0 0 0 0 0 0 0 290 2.1 0 0 16.0 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.21256E7 14.4 11.1 81 97500 0 0 317 0 0 0 0 0 0 0 310 2.6 0 0 16.0 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.21292E7 13.9 11.1 83 97600 0 0 315 0 0 0 0 0 0 0 290 2.1 0 0 16.0 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.21328E7 12.8 10.6 86 97600 0 0 309 0 0 0 0 0 0 0 290 2.6 0 0 16.0 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +2.21364E7 12.2 10.0 86 97600 0 0 306 0 0 0 0 0 0 0 290 3.1 0 0 16.0 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +2.214E7 12.2 10.0 86 97700 0 0 306 0 0 0 0 0 0 0 300 3.1 0 0 16.0 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +2.21436E7 12.8 10.6 86 97800 54 867 309 14 23 12 1544 0 1326 379 310 4.1 0 0 12.8 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +2.21472E7 15.0 11.7 81 97800 318 1351 320 150 337 71 16873 10697 8012 2618 310 4.1 0 0 16.0 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +2.21508E7 18.3 11.7 65 97900 589 1351 335 365 572 116 42272 33261 13485 4966 280 3.1 0 0 16.0 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +2.21544E7 20.6 10.0 51 97900 823 1351 344 574 693 151 68045 45766 17977 7120 320 4.6 0 0 16.0 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +2.2158E7 22.2 9.4 44 97900 1004 1351 351 739 758 175 89115 51371 21201 8702 330 3.1 0 0 16.0 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.21616E7 23.3 7.8 37 97800 1119 1351 354 845 791 189 103054 54360 23162 9543 300 4.6 0 0 16.0 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.21652E7 25.0 6.1 30 97800 1161 1351 360 883 802 194 108174 55734 23884 9812 330 3.6 0 0 16.0 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.21688E7 25.6 6.1 29 97700 1126 1351 363 851 793 190 103945 55134 23320 9598 270 4.1 0 0 16.0 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.21724E7 26.1 6.7 29 97700 1018 1351 366 751 761 177 90823 52659 21505 8835 290 5.2 0 0 16.0 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.2176E7 25.6 7.8 32 97700 843 1351 365 590 699 154 70193 47193 18400 7328 280 4.1 0 0 16.0 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.21796E7 25.0 8.3 35 97600 613 1351 363 385 585 120 44824 35943 14024 5216 310 3.6 0 0 16.0 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.21832E7 23.3 8.9 40 97600 345 1351 355 169 365 75 19154 13896 8528 2844 320 2.6 0 0 16.0 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.21868E7 21.7 8.9 44 97700 72 980 348 20 37 18 2213 0 1997 580 300 2.6 0 0 16.0 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.21904E7 21.7 9.4 45 97700 0 0 348 0 0 0 0 0 0 0 320 1.5 0 0 16.0 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.2194E7 20.0 9.4 50 97700 0 0 340 0 0 0 0 0 0 0 310 2.1 0 0 16.0 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.21976E7 18.9 10.6 59 97800 0 0 337 0 0 0 0 0 0 0 0 0.0 0 0 16.0 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.22012E7 17.2 10.6 65 97800 0 0 329 0 0 0 0 0 0 0 0 0.0 0 0 16.0 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.22048E7 17.2 11.1 67 97800 0 0 329 0 0 0 0 0 0 0 0 0.0 0 0 16.0 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.22084E7 16.1 11.1 72 97800 0 0 324 0 0 0 0 0 0 0 0 0.0 0 0 16.0 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.2212E7 15.6 11.1 75 97800 0 0 322 0 0 0 0 0 0 0 0 0.0 0 0 16.0 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.22156E7 15.0 10.6 75 97800 0 0 319 0 0 0 0 0 0 0 0 0.0 0 0 16.0 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.22192E7 15.0 10.6 75 97700 0 0 319 0 0 0 0 0 0 0 0 0.0 0 0 16.0 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.22228E7 15.0 10.6 75 97800 0 0 319 0 0 0 0 0 0 0 0 0.0 0 0 16.0 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.22264E7 14.4 10.6 78 97800 0 0 316 0 0 0 0 0 0 0 0 0.0 0 0 16.0 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.223E7 15.0 11.1 77 97800 53 845 320 15 48 12 1647 0 1321 373 0 0.0 0 0 16.0 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.22336E7 18.9 11.7 63 97900 315 1352 338 158 420 60 17998 11541 6854 2296 0 0.0 0 0 16.0 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +2.22372E7 21.7 10.6 49 97900 586 1352 350 373 642 95 43880 35118 11213 4209 120 2.6 0 0 16.0 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +2.22408E7 23.9 11.1 45 98000 820 1352 361 578 750 122 69569 45993 14739 5935 170 2.1 0 0 16.0 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +2.22444E7 25.6 11.7 42 98000 1000 1352 370 739 807 141 90420 50430 17324 7218 210 3.1 0 0 16.0 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +2.2248E7 26.7 11.7 39 97900 1115 1352 375 842 836 152 104112 52401 18877 7897 290 2.6 0 0 16.0 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +2.22516E7 27.8 12.2 38 97800 1157 1352 382 879 845 156 109061 52675 19443 8115 0 0.0 0 0 16.0 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.22552E7 28.3 13.3 40 97800 1122 1352 385 847 836 153 104696 51473 18996 7950 230 3.6 0 0 16.0 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +2.22588E7 29.4 13.9 39 97700 1013 1352 392 748 808 142 91557 49196 17455 7295 190 2.6 0 0 16.0 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +2.22624E7 28.9 13.9 40 97600 837 1352 389 591 753 124 71181 44870 14992 6081 160 3.1 0 0 16.0 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +2.2266E7 27.8 13.9 42 97600 607 1352 406 338 339 185 37837 23675 20813 7130 120 2.6 5 5 16.0 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +2.22696E7 27.2 15.0 47 97600 339 1352 382 174 442 63 19885 12979 7221 2467 110 2.1 0 0 16.0 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +2.22732E7 26.1 15.0 50 97600 68 958 376 20 66 16 2212 0 1774 521 120 2.1 0 0 16.0 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +2.22768E7 25.6 15.0 52 97600 0 0 374 0 0 0 0 0 0 0 130 2.1 0 0 16.0 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +2.22804E7 25.0 14.4 52 97600 0 0 370 0 0 0 0 0 0 0 110 3.6 0 0 16.0 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +2.2284E7 23.9 14.4 55 97600 0 0 365 0 0 0 0 0 0 0 110 3.1 0 0 16.0 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +2.22876E7 24.4 13.9 52 97600 0 0 388 0 0 0 0 0 0 0 120 3.6 5 5 16.0 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +2.22912E7 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 35 0.0000 0 88 0.000 0.0 1.0 +2.22948E7 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 36 0.0000 0 88 0.000 0.0 1.0 +2.22984E7 22.8 15.0 61 97500 0 0 381 0 0 0 0 0 0 0 140 3.1 5 5 16.0 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +2.2302E7 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 37 0.0000 0 88 0.000 0.0 1.0 +2.23056E7 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 38 0.0000 0 88 0.000 0.0 1.0 +2.23092E7 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 38 0.0000 0 88 0.000 0.0 1.0 +2.23128E7 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 39 0.0000 0 88 0.000 0.0 1.0 +2.23164E7 22.2 20.0 87 97500 51 823 419 8 0 8 761 0 766 272 170 2.6 10 10 4.0 1128 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.232E7 22.2 20.6 91 97500 312 1353 419 39 0 39 3801 0 3831 1602 180 2.6 10 10 2.8 244 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.23236E7 22.8 21.1 90 97500 583 1353 424 76 0 76 7579 0 7645 3470 180 2.6 10 10 2.4 122 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.23272E7 22.8 21.1 90 97500 817 1353 424 142 0 142 14444 0 14580 6742 170 4.1 10 10 6.4 244 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.23308E7 23.9 22.2 90 97400 997 1353 431 181 0 181 18663 0 18849 8929 180 2.1 10 10 6.4 244 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.23344E7 26.1 22.8 82 97500 1112 1353 445 214 0 213 22258 0 22382 10537 180 2.6 10 10 11.2 549 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.2338E7 27.8 22.8 74 97300 1153 1353 443 369 68 311 43008 4550 36482 14296 190 4.1 10 9 16.0 762 9 999999999 39 0.0000 0 88 0.000 1.5 1.0 +2.23416E7 26.7 22.8 79 97200 1117 1353 436 619 169 479 69344 14357 54070 18616 190 4.1 10 9 2.8 1158 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.23452E7 25.0 22.2 84 97200 1008 1353 438 183 0 183 18892 0 19080 9054 0 0.0 10 10 16.0 274 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.23488E7 23.9 22.8 94 97100 832 1353 432 121 0 121 12300 0 12417 5938 280 5.2 10 10 0.4 152 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.23524E7 25.6 23.3 87 97200 601 1353 431 189 87 150 21289 4600 16976 6130 230 2.1 10 9 16.0 640 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.2356E7 25.6 23.3 87 97200 332 1353 431 73 28 66 8223 565 7459 2541 180 3.6 10 9 16.0 3353 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.23596E7 24.4 22.8 91 97200 63 913 399 16 25 14 1763 0 1546 462 190 2.1 5 5 16.0 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.23632E7 24.4 22.8 91 97200 0 0 399 0 0 0 0 0 0 0 200 3.1 5 5 16.0 2000 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.23668E7 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 39 0.0000 0 88 0.000 0.0 1.0 +2.23704E7 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 39 0.0000 0 88 0.000 0.0 1.0 +2.2374E7 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 39 0.0000 0 88 0.000 0.0 1.0 +2.23776E7 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 39 0.0000 0 88 0.000 0.0 1.0 +2.23812E7 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 39 0.0000 0 88 0.000 0.0 1.0 +2.23848E7 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 39 0.0000 0 88 0.000 0.0 1.0 +2.23884E7 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 39 0.0000 0 88 0.000 0.0 1.0 +2.2392E7 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 38 0.0000 0 88 0.000 0.0 1.0 +2.23956E7 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 38 0.0000 0 88 0.000 0.0 1.0 +2.23992E7 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 38 0.0000 0 88 0.000 0.0 1.0 +2.24028E7 22.8 21.1 90 97500 49 823 424 5 0 5 474 0 478 182 260 3.6 10 10 6.4 122 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +2.24064E7 23.3 21.7 91 97500 309 1354 427 48 0 48 4670 0 4707 1905 260 3.6 10 10 8.0 518 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +2.241E7 25.0 22.2 84 97600 580 1354 426 109 45 89 12746 1901 10442 3967 280 5.2 9 9 11.2 549 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +2.24136E7 24.4 21.1 82 97600 814 1354 421 239 144 152 28022 8100 17902 7120 320 5.2 9 9 14.4 457 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +2.24172E7 25.6 21.1 76 97700 994 1354 428 217 70 165 26010 3949 19870 8248 300 5.7 9 9 16.0 1067 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +2.24208E7 27.2 20.6 67 97600 1108 1354 412 623 544 178 75513 31104 21682 9052 310 6.7 5 5 16.0 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +2.24244E7 27.2 20.6 67 97600 1149 1354 412 664 488 250 78872 31177 29869 12075 320 6.2 5 5 16.0 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +2.2428E7 27.2 20.0 65 97600 1113 1354 435 570 197 408 64862 16064 46756 16987 320 5.7 9 9 16.0 1981 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +2.24316E7 28.3 20.0 61 97500 1003 1354 417 498 448 165 59869 25828 19930 8281 310 6.2 5 5 16.0 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +2.24352E7 26.7 19.4 64 97500 826 1354 408 442 363 220 50572 24544 25308 9592 310 7.7 5 5 16.0 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +2.24388E7 25.0 18.9 69 97600 595 1354 392 316 346 164 35476 21181 18500 6495 310 6.7 3 3 16.0 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +2.24424E7 24.4 18.3 69 97600 326 1354 384 154 412 54 17697 8980 6222 2149 330 5.2 2 2 16.0 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +2.2446E7 22.2 16.1 68 97700 59 891 358 19 93 12 2121 0 1342 402 320 4.1 0 0 16.0 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +2.24496E7 21.1 15.0 68 97800 0 0 352 0 0 0 0 0 0 0 330 5.2 0 0 16.0 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +2.24532E7 20.0 15.0 73 97800 0 0 347 0 0 0 0 0 0 0 320 4.6 0 0 16.0 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +2.24568E7 18.9 15.0 78 97800 0 0 341 0 0 0 0 0 0 0 310 4.1 0 0 16.0 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +2.24604E7 17.8 15.0 84 97800 0 0 336 0 0 0 0 0 0 0 320 4.6 0 0 16.0 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +2.2464E7 17.2 14.4 84 97800 0 0 333 0 0 0 0 0 0 0 310 4.1 0 0 16.0 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +2.24676E7 16.1 14.4 90 97900 0 0 328 0 0 0 0 0 0 0 290 3.6 0 0 16.0 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +2.24712E7 15.6 13.9 90 97800 0 0 325 0 0 0 0 0 0 0 300 2.6 0 0 12.8 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.24748E7 15.0 13.9 93 97800 0 0 322 0 0 0 0 0 0 0 300 3.1 0 0 11.2 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +2.24784E7 15.0 13.3 90 97800 0 0 322 0 0 0 0 0 0 0 310 2.6 0 0 9.6 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +2.2482E7 14.4 13.3 93 97800 0 0 338 0 0 0 0 0 0 0 320 2.6 7 5 9.6 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +2.24856E7 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 26 0.0000 0 88 0.000 0.0 1.0 +2.24892E7 15.0 13.3 90 98000 47 801 341 11 3 11 1200 0 1203 334 320 3.6 7 5 4.8 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +2.24928E7 16.1 13.9 87 98100 306 1354 342 120 145 88 13186 5080 9707 2974 320 2.6 8 3 8.0 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +2.24964E7 18.9 14.4 75 98100 577 1354 341 343 520 122 39386 29683 14065 5114 330 2.6 0 0 12.8 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +2.25E7 21.7 13.9 61 98100 810 1354 353 549 647 161 64456 41965 18987 7447 20 2.6 0 0 16.0 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.25036E7 23.3 13.3 53 98100 990 1354 372 652 579 228 76697 41420 26964 10732 350 1.5 7 2 16.0 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.25072E7 24.4 13.3 50 98100 1104 1354 382 777 570 311 90725 44580 36538 14125 320 2.1 8 3 16.0 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.25108E7 25.6 14.4 50 98000 1145 1354 389 751 525 307 88223 39888 36288 14130 290 4.6 8 3 16.0 1372 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.25144E7 25.0 14.4 52 97900 1108 1354 386 648 411 312 75645 31780 36649 14178 310 4.6 8 3 16.0 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.2518E7 23.3 13.3 53 97900 998 1354 372 703 564 287 81346 44061 33407 12808 320 4.6 7 2 16.0 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.25216E7 25.6 13.3 47 97900 821 1354 388 532 498 230 60904 37256 26473 9863 320 3.1 8 3 16.0 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.25252E7 24.4 12.2 46 97900 589 1354 377 314 342 165 35380 23024 18678 6483 330 6.2 7 2 16.0 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.25288E7 22.8 12.2 51 98000 319 1354 357 145 296 75 16272 9934 8445 2752 320 5.7 0 0 16.0 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.25324E7 20.6 11.7 57 98000 55 869 346 14 16 13 1547 0 1439 415 310 4.6 0 0 16.0 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.2536E7 18.9 11.7 63 98000 0 0 338 0 0 0 0 0 0 0 310 4.1 0 0 16.0 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.25396E7 18.3 11.7 65 98100 0 0 335 0 0 0 0 0 0 0 320 3.6 0 0 16.0 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.25432E7 17.2 11.7 70 98100 0 0 330 0 0 0 0 0 0 0 330 3.1 0 0 16.0 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.25468E7 17.8 11.1 65 98000 0 0 332 0 0 0 0 0 0 0 360 4.1 0 0 16.0 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.25504E7 17.8 11.1 65 98000 0 0 332 0 0 0 0 0 0 0 20 4.6 0 0 16.0 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.2554E7 16.7 11.1 70 98000 0 0 327 0 0 0 0 0 0 0 40 3.1 0 0 16.0 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.25576E7 15.6 11.7 78 98000 0 0 323 0 0 0 0 0 0 0 50 3.1 0 0 16.0 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.25612E7 15.0 11.7 81 98000 0 0 320 0 0 0 0 0 0 0 70 2.1 0 0 16.0 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.25648E7 14.4 11.1 81 97900 0 0 317 0 0 0 0 0 0 0 70 3.1 0 0 16.0 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.25684E7 14.4 11.1 81 98000 0 0 317 0 0 0 0 0 0 0 70 3.1 0 0 16.0 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.2572E7 13.9 10.6 80 98100 0 0 314 0 0 0 0 0 0 0 50 2.1 0 0 16.0 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.25756E7 16.1 11.1 72 98100 45 779 344 11 23 9 1217 0 998 287 50 2.6 5 5 16.0 1524 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.25792E7 17.8 10.6 63 98100 303 1355 372 84 1 84 9275 36 9310 2872 50 3.6 10 9 16.0 1524 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.25828E7 19.4 11.7 61 98200 574 1355 360 320 360 168 35847 24546 18909 6421 90 2.6 5 5 16.0 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.25864E7 21.1 10.0 49 98100 807 1355 346 572 761 119 68857 46862 14378 5771 120 3.1 0 0 16.0 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.259E7 23.3 11.1 46 98100 987 1355 358 735 820 137 89954 51279 16835 7005 50 1.5 0 0 16.0 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.25936E7 23.9 11.1 45 98100 1101 1355 361 838 849 148 103619 53331 18379 7698 30 4.6 0 0 16.0 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.25972E7 25.0 11.7 43 98000 1140 1355 389 738 574 254 88070 41752 30483 12208 100 2.6 5 5 16.0 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.26008E7 24.4 11.7 45 97900 1103 1355 376 750 678 197 90800 45751 23970 9861 190 2.1 2 2 16.0 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.26044E7 25.0 11.7 43 97800 992 1355 383 510 462 172 61414 30547 20808 8547 280 2.6 3 3 16.0 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.2608E7 25.6 11.7 42 97800 815 1355 382 555 655 161 65350 43488 19042 7483 290 2.1 2 2 16.0 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.26116E7 25.0 12.2 45 97800 583 1355 383 330 453 135 37739 27848 15503 5579 290 3.1 3 3 16.0 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.26152E7 23.9 11.7 46 97800 313 1355 374 155 382 67 17523 11622 7598 2511 320 3.6 2 2 16.0 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.26188E7 21.7 12.2 55 97800 51 824 352 14 50 11 1556 0 1225 358 330 2.6 0 0 16.0 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.26224E7 20.6 12.8 61 97800 0 0 347 0 0 0 0 0 0 0 320 2.1 0 0 16.0 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.2626E7 20.0 12.8 63 97900 0 0 344 0 0 0 0 0 0 0 110 2.1 0 0 16.0 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.26296E7 18.3 12.8 70 97900 0 0 336 0 0 0 0 0 0 0 0 0.0 0 0 16.0 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.26332E7 18.3 12.8 70 97900 0 0 336 0 0 0 0 0 0 0 0 0.0 0 0 16.0 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.26368E7 17.8 12.8 73 97900 0 0 334 0 0 0 0 0 0 0 0 0.0 0 0 16.0 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.26404E7 16.1 12.8 81 97900 0 0 326 0 0 0 0 0 0 0 0 0.0 0 0 16.0 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.2644E7 16.1 12.8 81 97900 0 0 326 0 0 0 0 0 0 0 0 0.0 0 0 16.0 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.26476E7 16.1 12.2 78 97900 0 0 326 0 0 0 0 0 0 0 80 2.1 0 0 14.4 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.26512E7 16.1 12.2 78 97900 0 0 326 0 0 0 0 0 0 0 0 0.0 0 0 12.8 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.26548E7 15.6 12.2 80 98000 0 0 323 0 0 0 0 0 0 0 0 0.0 0 0 12.8 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.26584E7 15.6 12.2 80 98000 0 0 323 0 0 0 0 0 0 0 0 0.0 0 0 11.2 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.2662E7 16.1 11.1 72 98100 43 780 324 10 16 9 1102 0 994 282 70 2.6 0 0 9.6 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.26656E7 18.3 12.8 70 98100 300 1356 336 137 312 68 15355 8662 7646 2471 100 3.1 0 0 9.6 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.26692E7 20.0 13.3 65 98100 570 1356 345 347 556 113 40063 31138 13096 4790 70 3.6 0 0 14.4 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.26728E7 22.8 12.2 51 98100 804 1356 357 553 681 148 65344 43791 17563 6925 150 3.1 0 0 16.0 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.26764E7 24.4 12.2 46 98100 983 1356 365 716 748 173 85994 49397 20874 8550 140 4.1 0 0 16.0 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.268E7 23.9 12.2 48 98100 1097 1356 378 725 597 241 86300 42910 28845 11610 70 3.1 3 3 16.0 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.26836E7 25.0 12.8 47 98000 1136 1356 380 780 692 200 94666 46084 24397 10031 100 4.6 2 2 16.0 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.26872E7 25.0 12.2 45 97900 1099 1356 389 420 113 328 48835 9142 38378 14648 120 1.5 5 5 16.0 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.26908E7 25.6 12.2 43 97900 987 1356 416 372 0 372 38717 0 39089 15074 130 3.6 9 9 16.0 1524 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.26944E7 25.6 12.8 45 97800 809 1356 387 539 608 176 62918 41215 20641 8008 150 2.6 3 3 16.0 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.2698E7 25.0 12.2 45 97800 577 1356 389 316 300 188 35130 21539 21006 6963 120 2.1 5 5 16.0 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.27016E7 23.9 12.2 48 97800 306 1356 362 141 319 69 15863 9594 7788 2545 100 3.1 0 0 16.0 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.27052E7 22.2 12.8 55 97800 47 802 355 12 18 11 1322 0 1215 348 100 1.5 0 0 16.0 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.27088E7 21.1 13.3 61 97800 0 0 350 0 0 0 0 0 0 0 0 0.0 0 0 16.0 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.27124E7 20.6 13.3 63 97900 0 0 348 0 0 0 0 0 0 0 0 0.0 0 0 16.0 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.2716E7 18.3 13.9 76 97800 0 0 337 0 0 0 0 0 0 0 90 2.6 0 0 12.8 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.27196E7 18.3 13.9 76 97800 0 0 337 0 0 0 0 0 0 0 80 2.1 0 0 12.8 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.27232E7 18.3 13.9 76 97800 0 0 337 0 0 0 0 0 0 0 90 2.1 0 0 14.4 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.27268E7 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 24 0.0000 0 88 0.000 0.0 1.0 +2.27304E7 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 24 0.0000 0 88 0.000 0.0 1.0 +2.2734E7 18.3 13.3 73 97800 0 0 351 0 0 0 0 0 0 0 120 3.1 3 3 16.0 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.27376E7 18.3 13.9 76 97800 0 0 337 0 0 0 0 0 0 0 120 1.5 0 0 14.4 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.27412E7 17.8 14.4 80 97700 0 0 336 0 0 0 0 0 0 0 110 1.5 0 0 14.4 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.27448E7 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 24 0.0000 0 88 0.000 0.0 1.0 +2.27484E7 17.8 15.0 84 97800 42 758 351 10 16 9 1095 0 987 277 110 2.1 3 3 11.2 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +2.2752E7 18.9 15.6 81 97800 296 1357 342 138 344 63 15514 7996 7105 2326 130 3.1 0 0 11.2 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +2.27556E7 20.6 16.1 75 97800 567 1357 366 336 427 157 37671 26681 17685 6093 130 3.6 3 3 14.4 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +2.27592E7 22.8 16.1 66 97700 800 1357 383 422 290 250 47672 21996 28402 10245 120 4.1 5 5 16.0 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.27628E7 25.0 16.1 58 97600 980 1357 388 612 462 279 70583 34844 32368 12412 140 3.6 3 3 16.0 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.27664E7 25.0 16.7 60 97500 1093 1357 418 206 64 154 25273 3784 18978 7962 140 5.7 9 9 16.0 945 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.277E7 25.6 17.8 62 97300 1132 1357 435 248 0 248 25990 0 26254 11958 140 3.1 10 10 16.0 975 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.27736E7 24.4 17.8 67 97200 1094 1357 417 432 67 378 49417 5463 43535 16078 140 6.2 9 9 16.0 1067 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.27772E7 22.8 18.9 79 97200 982 1357 421 208 0 208 21511 0 21721 9953 90 3.1 10 10 4.8 1067 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.27808E7 18.9 17.8 93 97300 803 1357 398 161 0 161 16426 0 16578 7433 0 0.0 10 10 6.4 610 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.27844E7 19.4 18.3 93 97300 571 1357 390 155 20 147 17472 1168 16645 5872 0 0.0 9 9 16.0 1829 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.2788E7 20.0 18.3 90 97300 300 1357 404 33 0 33 3224 0 3249 1377 200 1.5 10 10 16.0 122 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.27916E7 19.4 17.8 90 97300 43 780 400 6 0 6 572 0 576 212 280 1.5 10 10 16.0 305 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.27952E7 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 24 0.0000 0 88 0.000 0.0 1.0 +2.27988E7 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 24 0.0000 0 88 0.000 0.0 1.0 +2.28024E7 18.9 17.8 93 97400 0 0 365 0 0 0 0 0 0 0 310 3.1 5 5 9.6 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.2806E7 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 24 0.0000 0 88 0.000 0.0 1.0 +2.28096E7 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 24 0.0000 0 88 0.000 0.0 1.0 +2.28132E7 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 24 0.0000 0 88 0.000 0.0 1.0 +2.28168E7 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 24 0.0000 0 88 0.000 0.0 1.0 +2.28204E7 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 24 0.0000 0 88 0.000 0.0 1.0 +2.2824E7 17.2 15.6 90 97500 0 0 354 0 0 0 0 0 0 0 310 3.1 6 5 11.2 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.28276E7 16.7 15.0 90 97600 0 0 342 0 0 0 0 0 0 0 310 3.6 5 2 9.6 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.28312E7 15.6 14.4 93 97700 0 0 345 0 0 0 0 0 0 0 290 2.6 6 5 8.0 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.28348E7 15.6 14.4 93 97800 40 735 336 9 0 9 859 0 865 273 280 3.6 5 2 6.4 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.28384E7 17.2 15.6 90 97800 293 1357 354 102 99 81 11219 2945 8943 2758 280 2.6 6 5 8.0 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.2842E7 18.3 15.6 84 97900 564 1357 339 305 363 154 34238 22613 17367 5992 290 4.1 0 0 14.4 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.28456E7 20.6 16.1 75 97900 797 1357 366 433 272 273 48533 21556 30780 10800 280 5.2 5 3 16.0 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.28492E7 23.3 15.0 60 97900 976 1357 363 674 585 253 78355 42949 29579 11535 290 4.6 0 0 16.0 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.28528E7 25.0 12.2 45 97900 1089 1357 368 779 627 275 91668 47421 32550 12833 310 5.2 0 0 16.0 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.28564E7 26.1 11.1 39 97800 1127 1357 384 713 423 361 82647 35670 42119 15764 350 6.7 5 2 16.0 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.286E7 26.7 12.2 41 97800 1089 1357 392 755 458 388 86487 40084 44747 16308 310 8.8 5 3 16.0 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.28636E7 26.7 12.2 41 97800 977 1357 388 630 398 343 71664 34252 39267 14249 300 7.7 5 2 16.0 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.28672E7 26.7 11.7 39 97800 798 1357 375 510 505 213 58557 37355 24583 9179 320 7.2 0 0 16.0 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.28708E7 26.1 12.2 42 97800 564 1357 373 306 364 154 34481 23666 17432 6029 320 6.2 0 0 16.0 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.28744E7 24.4 11.7 45 97800 293 1357 364 112 138 82 12371 4668 9091 2813 320 4.6 0 0 16.0 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.2878E7 22.2 12.2 53 97800 40 735 354 9 1 9 992 0 994 283 280 2.6 0 0 16.0 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.28816E7 21.7 12.8 57 97900 0 0 352 0 0 0 0 0 0 0 260 2.1 0 0 16.0 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.28852E7 19.4 13.3 68 97900 0 0 342 0 0 0 0 0 0 0 260 2.1 0 0 16.0 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.28888E7 18.9 13.3 70 98000 0 0 340 0 0 0 0 0 0 0 280 3.6 0 0 16.0 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.28924E7 18.3 13.3 73 98000 0 0 337 0 0 0 0 0 0 0 280 3.6 0 0 16.0 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.2896E7 17.8 13.3 75 98000 0 0 335 0 0 0 0 0 0 0 280 3.1 0 0 16.0 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.28996E7 17.8 13.3 75 98000 0 0 335 0 0 0 0 0 0 0 280 3.6 0 0 16.0 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.29032E7 17.2 13.3 78 98000 0 0 332 0 0 0 0 0 0 0 280 2.6 0 0 16.0 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.29068E7 17.2 12.8 75 98000 0 0 331 0 0 0 0 0 0 0 290 2.6 0 0 16.0 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.29104E7 16.7 12.8 78 98000 0 0 329 0 0 0 0 0 0 0 300 3.1 0 0 16.0 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.2914E7 16.1 12.8 81 98000 0 0 326 0 0 0 0 0 0 0 280 2.6 0 0 16.0 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.29176E7 16.1 12.2 78 98100 0 0 326 0 0 0 0 0 0 0 280 3.6 0 0 16.0 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.29212E7 17.8 12.8 73 98100 38 713 334 11 54 8 0 0 0 0 270 3.6 0 0 16.0 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.29248E7 20.0 13.3 65 98200 290 1358 345 147 458 49 16855 8637 5632 1897 280 4.1 0 0 16.0 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.29284E7 22.2 14.4 61 98200 561 1358 356 362 687 78 42898 32804 9270 3497 290 4.1 0 0 16.0 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.2932E7 25.0 14.4 52 98200 794 1358 370 565 793 101 68516 44319 12290 4966 310 5.7 0 0 16.0 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.29356E7 26.7 13.9 45 98200 972 1358 378 725 848 117 89419 49432 14484 6060 320 5.2 0 0 16.0 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.29392E7 27.8 13.3 41 98200 1085 1358 383 826 875 127 88582 90707 16995 3525 300 5.7 0 0 16.0 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.29428E7 28.9 13.3 38 98200 1123 1358 389 860 883 130 92150 91608 17239 3977 340 5.2 0 0 16.0 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.29464E7 29.4 13.9 39 98100 1084 1358 392 825 875 127 88630 90849 16996 3534 300 5.2 0 0 16.0 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.295E7 28.9 14.4 41 98100 971 1358 390 724 847 117 89291 49029 14484 6063 300 5.7 0 0 16.0 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.29536E7 28.9 13.3 38 98000 792 1358 389 563 792 101 68354 44952 12304 4972 290 5.7 0 0 16.0 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.29572E7 27.8 13.9 42 98100 558 1358 384 360 685 78 42705 33064 9280 3505 300 4.6 0 0 16.0 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.29608E7 26.1 15.6 52 98100 287 1358 377 145 454 49 16618 7949 5630 1904 290 3.6 0 0 16.0 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.29644E7 24.4 15.6 58 98100 37 713 369 10 51 7 1113 0 781 229 290 2.1 0 0 16.0 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.2968E7 22.8 16.1 66 98100 0 0 361 0 0 0 0 0 0 0 0 0.0 0 0 16.0 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.29716E7 22.2 16.1 68 98200 0 0 358 0 0 0 0 0 0 0 270 2.1 0 0 16.0 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.29752E7 21.7 16.1 70 98200 0 0 356 0 0 0 0 0 0 0 280 1.5 0 0 16.0 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.29788E7 20.0 16.1 78 98100 0 0 348 0 0 0 0 0 0 0 0 0.0 0 0 16.0 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.29824E7 19.4 16.1 81 98100 0 0 345 0 0 0 0 0 0 0 0 0.0 0 0 16.0 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.2986E7 18.3 15.6 84 98100 0 0 339 0 0 0 0 0 0 0 0 0.0 0 0 16.0 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.29896E7 18.3 15.0 81 98100 0 0 339 0 0 0 0 0 0 0 290 1.5 0 0 16.0 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.29932E7 18.3 15.0 81 98000 0 0 339 0 0 0 0 0 0 0 0 0.0 0 0 16.0 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.29968E7 17.8 15.0 84 98000 0 0 336 0 0 0 0 0 0 0 260 2.1 0 0 16.0 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.30004E7 16.1 14.4 90 98100 0 0 328 0 0 0 0 0 0 0 290 3.1 0 0 16.0 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.3004E7 16.1 13.9 87 98100 0 0 327 0 0 0 0 0 0 0 290 3.1 0 0 16.0 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.30076E7 17.2 13.9 81 98100 37 714 332 8 14 7 0 0 0 0 270 2.6 0 0 16.0 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.30112E7 21.1 15.6 71 98200 287 1359 353 129 310 64 14433 6942 7184 2320 300 3.6 0 0 16.0 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.30148E7 23.3 16.1 64 98200 557 1359 364 337 561 107 38879 29238 12390 4537 290 2.6 0 0 16.0 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.30184E7 26.1 14.4 48 98200 790 1359 376 541 687 141 63911 42384 16727 6600 290 3.1 0 0 16.0 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.3022E7 27.8 15.0 46 98200 969 1359 385 702 754 165 84253 47597 19894 8167 280 3.1 0 0 16.0 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.30256E7 28.3 15.6 46 98200 1081 1359 388 804 787 178 97467 49439 21682 9003 320 3.6 0 0 16.0 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.30292E7 28.9 15.6 44 98100 1118 1359 404 842 749 225 100809 50337 27084 11027 350 4.1 2 2 16.0 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.30328E7 28.3 15.6 46 98000 1079 1359 405 723 535 297 84258 40396 34824 13551 290 4.1 3 3 16.0 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.30364E7 28.9 16.7 48 98000 966 1359 406 645 677 164 77349 41622 19758 8125 290 3.6 2 2 16.0 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.304E7 28.9 16.1 46 98000 786 1359 409 281 255 133 33305 15062 15828 6287 280 2.1 3 3 16.0 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.30436E7 27.8 15.6 47 97900 552 1359 386 332 555 106 38349 29066 12289 4505 260 2.1 0 0 16.0 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.30472E7 26.7 16.7 54 98000 280 1359 381 125 301 62 14011 6217 6971 2268 0 0.0 0 0 16.0 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.30508E7 25.6 16.7 58 97900 33 668 376 7 12 7 0 0 0 0 320 2.6 0 0 16.0 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.30544E7 25.0 15.6 56 98000 0 0 372 0 0 0 0 0 0 0 340 2.1 0 0 16.0 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.3058E7 23.9 15.6 60 98000 0 0 366 0 0 0 0 0 0 0 320 2.1 0 0 16.0 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.30616E7 23.9 15.6 60 98000 0 0 366 0 0 0 0 0 0 0 310 1.5 0 0 16.0 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +2.30652E7 22.8 16.1 66 98000 0 0 361 0 0 0 0 0 0 0 300 1.5 0 0 16.0 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +2.30688E7 22.8 16.7 68 98000 0 0 362 0 0 0 0 0 0 0 310 1.5 0 0 16.0 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +2.30724E7 22.2 15.6 66 98000 0 0 358 0 0 0 0 0 0 0 320 1.5 0 0 16.0 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +2.3076E7 21.1 16.1 73 98000 0 0 353 0 0 0 0 0 0 0 0 0.0 0 0 16.0 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +2.30796E7 20.0 16.7 81 97900 0 0 349 0 0 0 0 0 0 0 0 0.0 0 0 16.0 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +2.30832E7 20.6 16.1 75 97900 0 0 351 0 0 0 0 0 0 0 300 2.1 0 0 16.0 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +2.30868E7 19.4 16.1 81 98000 0 0 345 0 0 0 0 0 0 0 0 0.0 0 0 16.0 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +2.30904E7 19.4 15.0 76 98000 0 0 344 0 0 0 0 0 0 0 0 0.0 0 0 16.0 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +2.3094E7 19.4 15.6 79 98100 35 691 359 8 40 6 0 0 0 0 0 0.0 3 3 12.8 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +2.30976E7 21.7 16.7 73 98100 283 1360 357 148 509 42 17095 6223 4862 1659 20 1.5 0 0 16.0 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +2.31012E7 24.4 16.7 62 98200 554 1360 370 361 724 66 43192 31115 7917 3009 40 2.1 0 0 14.4 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +2.31048E7 26.7 15.6 51 98200 787 1360 380 561 822 85 68771 43150 10451 4242 30 3.1 0 0 16.0 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +2.31084E7 28.3 15.0 44 98200 965 1360 388 718 872 99 77982 90611 13765 2492 0 0.0 0 0 16.0 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +2.3112E7 28.9 14.4 41 98100 1076 1360 390 817 897 107 88348 93366 14498 3216 210 1.5 0 0 16.0 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +2.31156E7 27.8 13.9 42 98000 1114 1360 406 533 389 214 64090 26282 25868 10574 0 0.0 5 5 16.0 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +2.31192E7 30.6 15.0 39 98000 1074 1360 448 360 64 309 41809 4956 36108 13917 360 1.5 9 9 16.0 1829 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +2.31228E7 29.4 14.4 40 97900 960 1360 409 667 665 197 78935 44893 23430 9435 0 0.0 3 3 16.0 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.31264E7 29.4 15.0 42 97900 780 1360 406 516 617 162 60212 39668 18990 7363 110 3.1 2 2 16.0 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.313E7 28.9 15.6 44 97900 545 1360 391 354 719 65 42418 31396 7808 2965 140 2.6 0 0 16.0 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.31336E7 27.2 16.1 51 98000 274 1360 383 141 496 41 16309 5923 4753 1621 150 1.5 0 0 16.0 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.31372E7 25.6 16.7 58 98000 30 646 376 8 65 5 0 0 0 0 0 0.0 0 0 16.0 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.31408E7 25.0 16.7 60 98000 0 0 373 0 0 0 0 0 0 0 110 2.1 0 0 16.0 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.31444E7 25.0 16.7 60 98100 0 0 373 0 0 0 0 0 0 0 110 2.6 0 0 16.0 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.3148E7 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 28 0.0000 0 88 0.000 0.0 1.0 +2.31516E7 21.7 17.2 76 98100 0 0 378 0 0 0 0 0 0 0 70 3.6 5 5 12.8 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.31552E7 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 28 0.0000 0 88 0.000 0.0 1.0 +2.31588E7 21.1 16.7 76 98100 0 0 354 0 0 0 0 0 0 0 90 3.6 0 0 14.4 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.31624E7 21.7 16.7 73 98100 0 0 357 0 0 0 0 0 0 0 110 1.5 0 0 14.4 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +2.3166E7 20.6 16.7 78 98100 0 0 351 0 0 0 0 0 0 0 130 2.6 0 0 14.4 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +2.31696E7 20.6 16.1 75 98100 0 0 351 0 0 0 0 0 0 0 150 3.1 0 0 16.0 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +2.31732E7 20.0 16.1 78 98100 0 0 348 0 0 0 0 0 0 0 150 2.6 0 0 16.0 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +2.31768E7 20.0 16.7 81 98200 0 0 349 0 0 0 0 0 0 0 150 2.1 0 0 16.0 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +2.31804E7 20.0 17.2 84 98300 33 669 370 7 20 6 0 0 0 0 140 1.5 5 5 12.8 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +2.3184E7 21.1 17.2 78 98300 280 1361 354 142 469 45 16285 5822 5173 1749 140 2.6 0 0 12.8 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +2.31876E7 22.2 18.3 79 98400 550 1361 405 160 40 143 17969 2290 16132 5610 140 3.1 10 9 16.0 1036 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +2.31912E7 23.9 19.4 76 98300 783 1361 428 165 0 165 16767 0 16921 7463 140 2.6 10 10 16.0 549 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +2.31948E7 25.0 18.9 69 98300 961 1361 433 210 0 210 21670 0 21880 9917 140 3.6 10 10 16.0 732 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +2.31984E7 27.8 18.3 56 98300 1072 1361 412 584 419 253 68664 28652 29918 11973 120 3.6 5 5 16.0 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +2.3202E7 27.2 17.2 54 98200 1109 1361 408 578 417 237 68737 27993 28342 11479 150 4.1 5 5 16.0 1676 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +2.32056E7 27.8 16.7 51 98300 1069 1361 410 625 521 215 74503 34350 25765 10514 140 3.6 5 5 16.0 1676 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +2.32092E7 28.9 16.7 48 98100 954 1361 416 508 334 273 58439 24957 31590 12066 150 5.2 5 5 16.0 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +2.32128E7 27.8 16.7 51 98100 774 1361 434 279 57 246 31409 4288 27851 9945 140 4.6 10 9 16.0 2286 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +2.32164E7 27.8 17.2 53 98100 539 1361 401 260 449 82 30518 20412 9655 3611 120 3.6 2 2 16.0 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +2.322E7 27.2 17.2 54 98000 267 1361 401 109 281 54 12292 4264 6107 2007 130 3.6 3 3 16.0 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +2.32236E7 25.6 17.8 62 98100 27 624 390 6 34 5 0 0 0 0 130 2.1 2 2 16.0 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +2.32272E7 25.6 17.8 62 98100 0 0 394 0 0 0 0 0 0 0 140 3.1 3 3 16.0 2000 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +2.32308E7 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 35 0.0000 0 88 0.000 0.0 1.0 +2.32344E7 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 36 0.0000 0 88 0.000 0.0 1.0 +2.3238E7 24.4 17.8 67 98300 0 0 371 0 0 0 0 0 0 0 130 4.1 0 0 16.0 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +2.32416E7 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 37 0.0000 0 88 0.000 0.0 1.0 +2.32452E7 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 37 0.0000 0 88 0.000 0.0 1.0 +2.32488E7 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 38 0.0000 0 88 0.000 0.0 1.0 +2.32524E7 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 38 0.0000 0 88 0.000 0.0 1.0 +2.3256E7 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 39 0.0000 0 88 0.000 0.0 1.0 +2.32596E7 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 39 0.0000 0 88 0.000 0.0 1.0 +2.32632E7 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 39 0.0000 0 88 0.000 0.0 1.0 +2.32668E7 21.7 19.4 87 98300 32 669 415 4 0 4 0 0 0 0 150 3.1 10 10 4.0 610 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.32704E7 21.7 20.0 90 98300 277 1361 416 46 0 46 4473 0 4507 1774 150 4.1 10 10 14.4 427 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.3274E7 22.2 20.0 87 98400 547 1361 419 92 0 92 9157 0 9235 3981 170 5.2 10 10 16.0 366 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.32776E7 22.8 20.0 84 98400 779 1361 422 141 0 141 14313 0 14445 6557 150 3.6 10 10 16.0 366 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.32812E7 23.3 20.6 85 98400 957 1361 426 213 0 213 21928 0 22141 10009 160 3.6 10 10 16.0 427 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.32848E7 23.3 20.0 82 98400 1068 1361 425 240 0 240 24952 0 25203 11473 140 3.1 10 10 16.0 579 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.32884E7 23.3 20.6 85 98300 1104 1361 426 209 0 209 21780 0 22001 10351 140 2.6 10 10 16.0 396 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.3292E7 24.4 20.6 79 98200 1064 1361 432 200 0 200 20774 0 20983 9892 140 3.6 10 10 16.0 366 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.32956E7 25.0 20.6 77 98200 949 1361 436 211 0 211 21713 0 21924 9913 150 2.1 10 10 16.0 914 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +2.32992E7 25.6 21.1 76 98100 768 1361 428 199 59 165 23005 3445 19165 7413 150 1.5 9 9 16.0 1128 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +2.33028E7 24.4 21.7 85 98200 533 1361 434 106 0 106 10519 0 10610 4435 150 2.6 10 10 14.4 1280 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +2.33064E7 23.3 21.7 91 98200 260 1361 427 43 0 43 4168 0 4200 1662 130 1.5 10 10 12.8 1524 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +2.331E7 22.8 20.6 87 98100 25 579 423 3 0 3 0 0 0 0 0 0.0 10 10 16.0 2438 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +2.33136E7 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 43 0.0000 0 88 0.000 0.0 1.0 +2.33172E7 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 43 0.0000 0 88 0.000 0.0 1.0 +2.33208E7 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 43 0.0000 0 88 0.000 0.0 1.0 +2.33244E7 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 43 0.0000 0 88 0.000 0.0 1.0 +2.3328E7 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 44 0.0000 0 88 0.000 0.0 1.0 +2.33316E7 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 44 0.0000 0 88 0.000 0.0 1.0 +2.33352E7 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 44 0.0000 0 88 0.000 0.0 1.0 +2.33388E7 22.2 20.6 91 97900 0 0 385 0 0 0 0 0 0 0 120 2.1 5 5 11.2 2000 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +2.33424E7 21.7 20.0 90 97900 0 0 382 0 0 0 0 0 0 0 140 2.6 5 5 14.4 2000 9 999999999 45 0.0000 0 88 0.000 0.0 1.0 +2.3346E7 21.1 18.9 87 97900 0 0 356 0 0 0 0 0 0 0 160 3.1 0 0 16.0 2000 9 999999999 45 0.0000 0 88 0.000 0.0 1.0 +2.33496E7 21.1 18.3 84 97900 0 0 377 0 0 0 0 0 0 0 140 2.6 5 5 16.0 2000 9 999999999 45 0.0000 0 88 0.000 0.0 1.0 +2.33532E7 21.1 18.3 84 97900 30 647 399 6 7 6 0 0 0 0 140 2.6 9 9 16.0 1981 9 999999999 45 0.0000 0 88 0.000 0.0 1.0 +2.33568E7 21.7 18.9 84 97800 273 1362 403 55 27 50 6229 314 5678 1888 140 4.1 9 9 16.0 1128 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +2.33604E7 22.8 20.0 84 97900 544 1362 410 233 102 192 25449 6687 21083 6702 170 4.1 9 9 16.0 305 9 999999999 44 0.0000 0 88 0.000 0.0 1.0 +2.3364E7 23.9 20.6 82 97900 776 1362 429 158 0 158 16021 0 16169 7175 190 5.2 10 10 16.0 427 9 999999999 43 0.0000 0 88 0.000 0.0 1.0 +2.33676E7 22.8 21.1 90 97900 953 1362 424 204 0 204 20980 0 21185 9654 200 2.6 10 10 3.2 427 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +2.33712E7 22.8 21.1 90 98000 1064 1362 424 162 0 162 16813 0 16983 8269 200 1.5 10 10 2.4 152 9 999999999 42 0.0000 0 88 0.000 4.1 1.0 +2.33748E7 21.7 20.6 93 97800 1099 1362 417 169 0 169 17604 0 17782 8639 230 4.6 10 10 6.4 152 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.33784E7 19.4 17.8 90 97900 1058 1362 400 193 0 193 20101 0 20301 9589 300 7.7 10 10 12.8 366 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.3382E7 19.4 17.2 87 97800 943 1362 400 141 0 141 14557 0 14697 7076 330 6.2 10 10 16.0 183 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.33856E7 18.3 15.6 84 97800 762 1362 381 213 57 181 24545 3804 20958 7930 320 6.2 9 9 16.0 366 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.33892E7 17.2 14.4 84 97900 526 1362 384 79 0 79 7898 0 7964 3467 320 6.2 10 10 16.0 305 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +2.33928E7 16.1 13.3 83 97900 254 1362 367 51 20 47 5806 272 5364 1770 320 6.7 9 9 16.0 3658 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +2.33964E7 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 37 0.0000 0 88 0.000 0.0 1.0 +2.34E7 15.6 12.8 83 97900 0 0 343 0 0 0 0 0 0 0 320 4.1 5 5 16.0 2000 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +2.34036E7 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 35 0.0000 0 88 0.000 0.0 1.0 +2.34072E7 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 35 0.0000 0 88 0.000 0.0 1.0 +2.34108E7 13.9 11.7 87 98000 0 0 326 0 0 0 0 0 0 0 290 2.6 2 2 16.0 2000 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +2.34144E7 13.3 11.1 87 98000 0 0 331 0 0 0 0 0 0 0 310 2.6 5 5 16.0 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +2.3418E7 12.8 11.1 89 98000 0 0 310 0 0 0 0 0 0 0 310 3.1 0 0 16.0 2000 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +2.34216E7 12.2 10.6 90 98000 0 0 307 0 0 0 0 0 0 0 310 2.1 0 0 16.0 2000 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +2.34252E7 12.2 10.6 90 98000 0 0 307 0 0 0 0 0 0 0 310 4.1 0 0 16.0 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +2.34288E7 11.7 10.6 93 98000 0 0 305 0 0 0 0 0 0 0 310 2.6 0 0 16.0 2000 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +2.34324E7 12.2 10.6 90 98100 0 0 325 0 0 0 0 0 0 0 340 4.6 6 5 16.0 2000 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +2.3436E7 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 29 0.0000 0 88 0.000 0.0 1.0 +2.34396E7 13.3 11.1 87 98100 29 625 360 3 0 3 0 0 0 0 340 2.6 10 10 16.0 122 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.34432E7 14.4 12.2 87 98200 270 1363 367 36 0 36 3525 0 3551 1436 350 2.6 10 10 16.0 305 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +2.34468E7 16.7 12.8 78 98300 540 1363 369 147 31 135 16619 1867 15327 5327 10 3.6 10 9 16.0 549 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +2.34504E7 17.2 13.3 78 98300 772 1363 383 154 0 154 15724 0 15865 7012 50 5.2 10 10 16.0 549 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +2.3454E7 19.4 14.4 73 98300 949 1363 396 200 0 200 20704 0 20901 9484 70 4.6 10 10 16.0 488 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +2.34576E7 20.0 15.0 73 98300 1059 1363 400 229 0 229 23909 0 24145 11022 70 3.1 10 10 16.0 488 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +2.34612E7 19.4 15.6 79 98300 1095 1363 398 238 0 238 24910 0 25158 11478 70 2.1 10 10 16.0 488 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +2.34648E7 20.0 16.1 78 98200 1053 1363 390 348 60 301 40329 4571 35096 13541 60 3.1 10 9 16.0 488 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +2.34684E7 21.7 15.6 68 98200 938 1363 399 337 88 277 38646 6746 31953 12064 90 4.6 10 9 16.0 549 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +2.3472E7 20.6 15.0 70 98200 756 1363 392 267 46 241 30046 3515 27272 9657 40 5.2 10 9 16.0 610 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +2.34756E7 20.6 15.6 73 98200 520 1363 404 89 0 89 8884 0 8958 3812 80 3.1 10 10 16.0 610 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +2.34792E7 20.6 15.6 73 98300 247 1363 404 41 0 41 3998 0 4028 1573 80 3.6 10 10 16.0 671 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +2.34828E7 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 30 0.0000 0 88 0.000 0.0 1.0 +2.34864E7 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 30 0.0000 0 88 0.000 0.0 1.0 +2.349E7 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 30 0.0000 0 88 0.000 0.0 1.0 +2.34936E7 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 30 0.0000 0 88 0.000 0.0 1.0 +2.34972E7 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 31 0.0000 0 88 0.000 0.0 1.0 +2.35008E7 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 31 0.0000 0 88 0.000 0.0 1.0 +2.35044E7 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 31 0.0000 0 88 0.000 0.0 1.0 +2.3508E7 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 31 0.0000 0 88 0.000 0.0 1.0 +2.35116E7 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 31 0.0000 0 88 0.000 0.0 1.0 +2.35152E7 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 31 0.0000 0 88 0.000 0.0 1.0 +2.35188E7 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 31 0.0000 0 88 0.000 0.0 1.0 +2.35224E7 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 31 0.0000 0 88 0.000 0.0 1.0 +2.3526E7 16.7 15.0 90 98600 27 625 382 2 0 2 0 0 0 0 60 6.2 10 10 3.2 122 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +2.35296E7 16.7 15.0 90 98600 266 1364 382 27 0 27 2637 0 2657 1113 60 5.2 10 10 2.4 122 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +2.35332E7 17.2 15.0 87 98700 536 1364 385 69 0 69 6897 0 6955 3093 60 6.2 10 10 8.0 183 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +2.35368E7 17.2 15.0 87 98700 768 1364 385 110 0 110 11212 0 11313 5280 60 6.7 10 10 11.2 183 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +2.35404E7 17.8 15.0 84 98800 945 1364 388 142 0 142 14687 0 14827 7113 70 6.7 10 10 11.2 183 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +2.3544E7 17.8 15.0 84 98800 1055 1364 388 194 0 194 20247 0 20446 9613 70 6.2 10 10 14.4 244 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +2.35476E7 17.8 14.4 80 98700 1090 1364 387 201 0 201 21049 0 21258 9989 70 8.2 10 10 16.0 305 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +2.35512E7 17.8 15.0 84 98700 1048 1364 388 192 0 192 20030 0 20227 9517 70 6.2 10 10 16.0 305 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +2.35548E7 17.8 15.0 84 98700 932 1364 388 168 0 168 17362 0 17527 8174 50 6.7 10 10 16.0 305 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +2.35584E7 18.3 15.0 81 98700 750 1364 391 128 0 128 13032 0 13149 5964 70 6.2 10 10 16.0 305 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +2.3562E7 17.8 14.4 80 98700 514 1364 387 78 0 78 7790 0 7854 3399 70 7.2 10 10 16.0 305 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +2.35656E7 17.2 14.4 84 98700 241 1364 384 28 0 28 2731 0 2752 1130 70 7.2 10 10 16.0 244 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +2.35692E7 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 33 0.0000 0 88 0.000 0.0 1.0 +2.35728E7 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 33 0.0000 0 88 0.000 0.0 1.0 +2.35764E7 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 33 0.0000 0 88 0.000 0.0 1.0 +2.358E7 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 33 0.0000 0 88 0.000 0.0 1.0 +2.35836E7 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 33 0.0000 0 88 0.000 0.0 1.0 +2.35872E7 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 34 0.0000 0 88 0.000 0.0 1.0 +2.35908E7 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 36 0.0000 0 88 0.000 0.0 1.0 +2.35944E7 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 36 0.0000 0 88 0.000 0.0 1.0 +2.3598E7 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 36 0.0000 0 88 0.000 0.0 1.0 +2.36016E7 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 36 0.0000 0 88 0.000 0.0 1.0 +2.36052E7 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 36 0.0000 0 88 0.000 0.0 1.0 +2.36088E7 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 36 0.0000 0 88 0.000 0.0 1.0 +2.36124E7 17.8 17.2 97 97500 26 603 366 1 0 1 0 0 0 0 20 4.1 8 7 32.2 460 9 999999999 36 0.0000 0 88 0.000 0.0 1.0 +2.3616E7 19.4 17.8 90 97500 263 1365 375 67 12 65 7406 211 7209 2258 20 5.2 7 7 32.2 700 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +2.36196E7 19.4 17.8 90 97500 533 1365 400 118 0 118 11759 0 11859 4790 360 5.7 10 10 32.2 340 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +2.36232E7 20.0 18.3 90 97500 765 1365 404 75 0 75 7618 0 7687 3748 30 5.2 10 10 32.2 340 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +2.36268E7 20.0 18.3 90 97500 941 1365 404 142 0 142 14635 0 14776 7101 30 4.1 10 10 32.2 340 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +2.36304E7 21.1 18.9 87 97500 1051 1365 411 401 1 400 45270 84 45472 16250 70 4.1 10 10 48.3 340 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +2.3634E7 22.2 18.9 82 97500 1086 1365 417 411 2 410 46553 168 46768 16786 90 3.1 10 10 48.3 1070 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +2.36376E7 22.8 18.9 79 97400 1043 1365 421 375 0 375 38955 0 39342 15589 0 0.0 10 10 48.3 1070 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +2.36412E7 22.8 18.9 79 97400 927 1365 421 309 1 309 34951 78 35171 12878 60 3.1 10 10 48.3 1070 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +2.36448E7 23.9 18.9 74 97400 744 1365 415 285 112 224 32076 7870 25348 9105 70 1.5 9 9 40.2 910 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +2.36484E7 23.9 18.9 74 97400 508 1365 400 206 163 145 22892 9195 16188 5439 50 2.1 7 7 40.2 980 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +2.3652E7 22.8 18.9 79 97400 235 1365 390 74 72 62 8132 877 6837 2104 90 3.1 6 6 40.2 980 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +2.36556E7 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 30 0.0000 0 88 0.000 0.0 1.0 +2.36592E7 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 30 0.0000 0 88 0.000 0.0 1.0 +2.36628E7 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 30 0.0000 0 88 0.000 0.0 1.0 +2.36664E7 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 30 0.0000 0 88 0.000 0.0 1.0 +2.367E7 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 29 0.0000 0 88 0.000 0.0 1.0 +2.36736E7 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 29 0.0000 0 88 0.000 0.0 1.0 +2.36772E7 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 29 0.0000 0 88 0.000 0.0 1.0 +2.36808E7 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 29 0.0000 0 88 0.000 0.0 1.0 +2.36844E7 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 29 0.0000 0 88 0.000 0.0 1.0 +2.3688E7 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 28 0.0000 0 88 0.000 0.0 1.0 +2.36916E7 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 28 0.0000 0 88 0.000 0.0 1.0 +2.36952E7 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 28 0.0000 0 88 0.000 0.0 1.0 +2.36988E7 17.2 17.2 100 97500 25 580 336 13 5 13 0 0 0 0 270 3.6 0 0 4.8 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.37024E7 18.3 17.8 97 97600 260 1365 342 110 247 62 12189 3914 6893 2172 290 3.1 0 0 9.7 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.3706E7 21.1 18.3 84 97600 530 1365 362 294 482 106 33654 23550 12180 4396 280 4.1 1 1 11.3 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.37096E7 23.3 17.8 71 97600 761 1365 388 424 383 209 48144 26413 23856 8763 290 4.1 5 5 11.3 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.37132E7 23.9 17.8 69 97600 937 1365 381 655 638 214 76452 42694 25110 9939 260 5.2 2 2 19.3 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.37168E7 25.0 17.2 62 97600 1046 1365 399 744 536 331 85354 42194 38217 14395 280 5.2 6 6 19.3 940 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.37204E7 25.0 17.8 64 97500 1081 1365 400 635 232 451 71389 20880 51073 17643 300 5.2 6 6 16.1 980 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.3724E7 26.7 16.7 54 97400 1038 1365 404 650 485 279 75544 35697 32619 12726 340 4.1 5 5 16.1 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.37276E7 26.7 17.2 56 97400 921 1365 405 565 350 328 63638 28701 37180 13308 260 6.2 5 5 16.1 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.37312E7 26.7 17.8 58 97400 738 1365 395 432 452 185 49371 29601 21247 7917 270 3.6 2 2 19.3 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.37348E7 25.6 17.2 60 97400 502 1365 377 285 484 106 32491 23829 12130 4312 250 7.2 1 0 19.3 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.37384E7 24.4 17.2 64 97400 229 1365 393 75 64 65 8201 926 7133 2142 270 3.1 7 5 12.9 2740 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.3742E7 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 28 0.0000 0 88 0.000 0.0 1.0 +2.37456E7 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 27 0.0000 0 88 0.000 0.0 1.0 +2.37492E7 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 25 0.0000 0 88 0.000 0.0 1.0 +2.37528E7 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 24 0.0000 0 88 0.000 0.0 1.0 +2.37564E7 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 23 0.0000 0 88 0.000 0.0 1.0 +2.376E7 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 22 0.0000 0 88 0.000 0.0 1.0 +2.37636E7 15.0 12.8 87 97600 0 0 335 0 0 0 0 0 0 0 310 4.6 5 3 16.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.37672E7 13.9 12.8 93 97500 0 0 333 0 0 0 0 0 0 0 300 5.7 5 4 16.1 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.37708E7 12.8 12.8 100 97500 0 0 322 0 0 0 0 0 0 0 300 2.1 2 2 16.1 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.37744E7 12.2 12.2 100 97500 0 0 314 0 0 0 0 0 0 0 300 5.7 1 1 16.1 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +2.3778E7 11.7 11.7 100 97500 0 0 312 0 0 0 0 0 0 0 300 5.2 1 1 16.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +2.37816E7 11.1 11.1 100 97500 0 0 308 0 0 0 0 0 0 0 300 5.2 1 1 16.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.37852E7 11.1 11.1 100 97600 23 581 308 8 1 8 0 0 0 0 300 5.2 1 1 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2.37888E7 12.2 12.2 100 97600 256 1366 314 94 159 63 10434 3267 7016 2183 300 4.6 1 1 48.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2.37924E7 16.7 12.8 78 97600 526 1366 335 296 435 127 33512 25310 14438 5022 300 4.1 1 1 48.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2.3796E7 19.4 11.1 59 97600 757 1366 346 510 834 45 56019 84970 6761 1318 310 4.1 1 1 48.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2.37996E7 21.7 12.8 57 97500 933 1366 352 672 899 54 73796 93072 7811 1701 300 5.2 0 0 48.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2.38032E7 21.1 7.8 42 97500 1042 1366 359 758 886 79 81376 90990 10951 2519 280 6.2 3 3 48.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2.38068E7 21.7 7.8 41 97400 1076 1366 370 610 478 232 72701 35391 27798 11183 300 7.2 6 6 48.3 1830 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.38104E7 21.7 7.2 39 97300 1033 1366 366 686 656 188 82606 46017 22747 9303 280 8.2 6 5 48.3 9140 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.3814E7 22.2 5.6 34 97300 915 1366 370 584 624 164 69891 43278 19714 7948 260 8.2 7 6 48.3 9140 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.38176E7 21.7 6.1 37 97300 732 1366 362 472 597 150 55186 40751 17612 6711 270 8.2 5 4 40.2 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.38212E7 21.1 6.1 38 97400 495 1366 362 281 448 117 31952 26487 13356 4616 260 7.2 5 5 40.2 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.38248E7 18.9 6.1 43 97400 222 1366 338 96 310 45 10867 3526 5107 1635 300 4.1 3 1 40.2 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.38284E7 16.7 7.2 54 97400 12 398 329 1 0 1 0 0 0 0 290 3.1 2 1 40.2 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.3832E7 13.9 7.8 67 97500 0 0 317 0 0 0 0 0 0 0 270 3.1 2 1 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.38356E7 12.8 8.9 77 97500 0 0 308 0 0 0 0 0 0 0 280 4.1 0 0 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.38392E7 12.8 8.3 75 97500 0 0 307 0 0 0 0 0 0 0 290 4.1 0 0 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2.38428E7 11.7 8.3 80 97600 0 0 302 0 0 0 0 0 0 0 280 4.1 0 0 16.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2.38464E7 11.1 8.3 83 97600 0 0 300 0 0 0 0 0 0 0 280 4.1 0 0 16.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2.385E7 10.0 8.3 89 97500 0 0 295 0 0 0 0 0 0 0 300 3.1 0 0 16.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2.38536E7 10.0 8.3 89 97600 0 0 295 0 0 0 0 0 0 0 310 5.2 0 0 16.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.38572E7 8.9 8.3 96 97600 0 0 291 0 0 0 0 0 0 0 310 3.1 0 0 16.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.38608E7 8.3 7.8 96 97600 0 0 288 0 0 0 0 0 0 0 310 6.2 0 0 16.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.38644E7 7.8 7.2 96 97600 0 0 285 0 0 0 0 0 0 0 300 2.6 1 0 16.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.3868E7 7.2 7.2 100 97600 0 0 295 0 0 0 0 0 0 0 300 2.6 4 3 16.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.38716E7 7.2 7.2 100 97700 22 558 292 8 45 2 0 0 0 0 260 2.6 6 2 24.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.38752E7 8.3 6.7 89 97800 252 1367 301 91 117 69 10041 3030 7640 2304 300 3.1 9 4 12.9 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.38788E7 10.0 6.1 77 97800 522 1367 306 292 465 113 33458 27376 12996 4587 300 2.6 8 3 12.9 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.38824E7 13.9 5.6 57 97900 753 1367 322 469 502 191 53965 37524 22083 8162 270 2.6 8 3 12.9 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2.3886E7 15.0 5.6 54 97800 929 1367 327 626 662 174 74691 46678 20856 8383 170 2.6 8 3 48.3 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.38896E7 16.7 4.4 45 97800 1037 1367 334 795 861 138 98118 56633 17101 7135 160 5.2 8 3 48.3 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.38932E7 18.9 5.6 42 97700 1071 1367 345 799 913 80 85399 93505 11015 2674 220 3.1 8 3 48.3 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +2.38968E7 19.4 6.7 44 97600 1027 1367 352 767 868 112 81332 88712 15247 2909 230 5.2 5 4 48.3 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +2.39004E7 21.1 7.2 41 97600 910 1367 363 646 711 171 76939 49459 20459 8205 230 5.2 5 5 48.3 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +2.3904E7 20.6 7.8 44 97500 726 1367 362 251 62 218 28432 4849 24822 8797 220 4.1 6 5 48.3 7620 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +2.39076E7 20.6 7.8 44 97500 489 1367 365 99 0 99 9908 0 9988 4043 200 5.2 7 6 48.3 2440 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.39112E7 20.0 8.9 49 97500 216 1367 367 12 2 12 1498 0 1498 509 200 4.1 7 7 48.3 1460 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.39148E7 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 19 0.0000 0 88 0.000 0.0 1.0 +2.39184E7 16.1 10.0 67 97700 0 0 334 0 0 0 0 0 0 0 260 2.1 3 2 40.2 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.3922E7 17.2 9.4 60 97800 0 0 338 0 0 0 0 0 0 0 220 2.6 3 2 40.2 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.39256E7 17.2 10.0 63 97800 0 0 345 0 0 0 0 0 0 0 180 2.6 5 4 32.2 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.39292E7 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 19 0.0000 0 88 0.000 0.0 1.0 +2.39328E7 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 19 0.0000 0 88 0.000 0.0 1.0 +2.39364E7 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 20 0.0000 0 88 0.000 0.0 1.0 +2.394E7 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 20 0.0000 0 88 0.000 0.0 1.0 +2.39436E7 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 20 0.0000 0 88 0.000 0.0 1.0 +2.39472E7 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 20 0.0000 0 88 0.000 0.0 1.0 +2.39508E7 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 20 0.0000 0 88 0.000 0.0 1.0 +2.39544E7 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 20 0.0000 0 88 0.000 0.0 1.0 +2.3958E7 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 20 0.0000 0 88 0.000 0.0 1.0 +2.39616E7 9.4 8.9 96 97900 249 1368 338 81 36 74 8863 957 8127 2388 310 5.7 10 10 6.4 120 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.39652E7 11.7 8.9 83 97900 518 1368 309 310 623 72 36723 30055 8552 3168 320 6.2 4 1 12.9 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.39688E7 14.4 10.0 75 98000 749 1368 326 498 748 86 60781 42129 10527 4208 320 6.2 2 2 16.1 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.39724E7 16.1 10.6 70 98000 924 1368 338 537 409 259 61923 32147 30034 11374 320 6.7 4 3 24.1 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.3976E7 18.9 11.7 63 98100 1032 1368 355 637 305 406 72012 28083 46213 16190 320 6.7 5 4 32.2 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.39796E7 20.0 11.7 59 98100 1065 1368 367 649 337 385 74061 29852 44230 15996 320 6.2 8 6 32.2 850 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.39832E7 20.0 11.7 59 98000 1022 1368 367 661 469 309 76273 38187 35874 13577 320 3.1 7 6 32.2 850 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.39868E7 20.6 12.2 59 98000 904 1368 367 528 472 214 61579 34075 25087 9779 320 7.2 6 5 32.2 850 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +2.39904E7 20.0 11.1 57 98100 720 1368 363 423 486 166 48830 33105 19250 7200 320 7.7 6 5 32.2 850 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +2.3994E7 18.3 10.6 61 98100 483 1368 345 302 609 86 35010 29834 10002 3594 320 7.2 3 2 32.2 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +2.39976E7 16.7 10.6 67 98200 209 1368 337 97 336 45 10896 2232 5068 1601 320 4.6 2 2 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +2.40012E7 15.0 10.0 72 98300 8 353 329 2 20 0 0 0 0 0 340 5.2 2 2 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +2.40048E7 13.3 9.4 78 98400 0 0 316 0 0 0 0 0 0 0 330 4.1 1 1 16.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +2.40084E7 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 15 0.0000 0 88 0.000 0.0 1.0 +2.4012E7 12.2 8.3 77 98500 0 0 310 0 0 0 0 0 0 0 350 4.6 1 1 16.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +2.40156E7 11.1 8.3 83 98500 0 0 300 0 0 0 0 0 0 0 350 3.1 0 0 16.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.40192E7 10.6 8.3 86 98500 0 0 307 0 0 0 0 0 0 0 30 3.1 2 2 16.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.40228E7 10.0 8.3 89 98500 0 0 305 0 0 0 0 0 0 0 360 1.5 2 2 16.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.40264E7 9.4 8.9 96 98500 0 0 303 0 0 0 0 0 0 0 310 3.1 2 2 16.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2.403E7 7.8 7.8 100 98500 0 0 295 0 0 0 0 0 0 0 320 3.1 2 2 16.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2.40336E7 7.8 7.8 100 98600 0 0 295 0 0 0 0 0 0 0 350 3.1 2 2 16.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.40372E7 7.2 7.2 100 98600 0 0 288 0 0 0 0 0 0 0 340 2.1 1 1 16.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.40408E7 7.2 7.2 100 98700 0 0 288 0 0 0 0 0 0 0 340 3.6 1 1 16.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.40444E7 7.2 7.2 100 98700 19 513 288 5 44 0 0 0 0 0 20 3.6 1 1 16.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.4048E7 10.0 8.9 93 98800 245 1369 296 115 506 23 12609 41533 3768 612 340 3.1 0 0 16.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.40516E7 13.3 8.3 72 98800 514 1369 309 320 746 37 35003 72206 5799 1022 50 5.2 0 0 19.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.40552E7 14.4 7.8 65 98800 745 1369 313 516 852 49 56134 86081 7336 1381 60 7.2 0 0 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.40588E7 16.1 7.8 58 98800 920 1369 321 660 882 63 71333 90240 9043 1858 40 4.1 0 0 48.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.40624E7 17.8 6.7 48 98800 1027 1369 327 774 938 66 83364 96203 9267 2187 350 5.2 0 0 48.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.4066E7 18.3 6.1 45 98700 1060 1369 329 802 945 66 86281 96927 9209 2302 40 4.1 0 0 48.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.40696E7 19.4 6.7 44 98700 1016 1369 335 769 947 62 82979 97125 8752 2065 100 4.1 0 0 48.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.40732E7 20.0 7.8 45 98600 898 1369 339 662 911 61 71614 93125 8801 1786 100 3.1 0 0 48.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.40768E7 20.6 5.6 38 98500 714 1369 339 503 863 50 54460 86586 7504 1375 70 3.6 0 0 48.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.40804E7 20.0 5.6 39 98500 476 1369 336 294 731 38 31949 69623 5966 1015 50 4.1 0 0 48.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.4084E7 18.3 3.9 39 98500 203 1369 326 88 449 21 9559 34853 3452 547 50 3.6 0 0 48.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.40876E7 16.7 3.9 43 98500 7 308 319 4 1 4 0 0 0 0 50 3.1 0 0 48.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.40912E7 15.0 6.1 56 98600 0 0 314 0 0 0 0 0 0 0 60 2.1 0 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.40948E7 13.3 8.3 72 98600 0 0 309 0 0 0 0 0 0 0 350 2.6 0 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.40984E7 12.2 8.9 80 98600 0 0 305 0 0 0 0 0 0 0 360 3.1 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.4102E7 11.7 8.9 83 98700 0 0 303 0 0 0 0 0 0 0 340 3.6 0 0 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.41056E7 11.7 8.3 80 98600 0 0 302 0 0 0 0 0 0 0 360 1.5 0 0 16.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.41092E7 11.7 8.3 80 98600 0 0 302 0 0 0 0 0 0 0 0 0.0 0 0 16.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.41128E7 11.1 8.3 83 98600 0 0 300 0 0 0 0 0 0 0 0 0.0 0 0 16.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.41164E7 10.6 7.8 83 98500 0 0 297 0 0 0 0 0 0 0 0 0.0 0 0 16.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.412E7 8.9 7.8 93 98500 0 0 290 0 0 0 0 0 0 0 0 0.0 0 0 16.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.41236E7 7.8 7.8 100 98500 0 0 286 0 0 0 0 0 0 0 310 2.1 0 0 16.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.41272E7 7.8 7.8 100 98500 0 0 286 0 0 0 0 0 0 0 330 2.1 0 0 16.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.41308E7 7.8 7.8 100 98500 18 514 286 4 44 0 0 0 0 0 330 2.1 0 0 24.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.41344E7 11.1 7.8 80 98500 241 1369 299 114 516 21 12501 42098 3455 582 0 0.0 0 0 12.9 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.4138E7 13.9 8.3 69 98500 511 1369 312 315 777 22 34968 75294 3541 711 320 2.6 0 0 16.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.41416E7 15.6 8.3 62 98500 741 1369 319 500 856 34 55020 86660 5194 1068 290 4.6 0 0 19.3 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.41452E7 19.4 6.1 42 98500 915 1369 334 661 927 37 72328 94772 5470 1256 300 3.6 0 0 40.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.41488E7 20.6 6.7 41 98400 1023 1369 340 750 924 55 81211 94832 7810 1904 340 5.2 0 0 40.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.41524E7 21.7 7.2 39 98300 1055 1369 346 790 946 57 85524 97250 8031 2049 260 5.2 0 0 40.2 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2.4156E7 22.8 5.0 32 98200 1011 1369 348 750 936 55 80980 95784 7822 1878 10 4.1 0 0 40.2 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2.41596E7 23.3 4.4 29 98100 892 1369 350 643 904 51 69515 91974 7433 1577 350 3.1 0 0 48.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2.41632E7 24.4 3.9 26 98100 707 1369 355 479 829 48 51783 82921 7224 1336 320 3.6 0 0 48.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2.41668E7 23.3 4.4 29 98100 470 1369 350 279 701 37 30280 66490 5820 996 290 2.6 0 0 48.3 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.41704E7 21.1 7.2 41 98100 196 1369 343 81 409 22 9593 0 2608 874 320 2.1 0 0 48.3 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.4174E7 18.9 8.3 51 98100 6 285 334 4 0 4 0 0 0 0 320 2.1 0 0 40.2 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.41776E7 17.8 7.8 52 98100 0 0 328 0 0 0 0 0 0 0 320 2.1 0 0 40.2 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.41812E7 17.2 8.3 56 98200 0 0 326 0 0 0 0 0 0 0 0 0.0 0 0 40.2 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.41848E7 16.1 8.9 63 98200 0 0 322 0 0 0 0 0 0 0 0 0.0 0 0 32.2 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +2.41884E7 15.0 8.9 67 98200 0 0 317 0 0 0 0 0 0 0 320 1.5 0 0 32.2 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +2.4192E7 14.4 8.3 67 98100 0 0 314 0 0 0 0 0 0 0 290 3.6 0 0 16.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +2.41956E7 13.3 8.3 72 98100 0 0 309 0 0 0 0 0 0 0 270 2.6 0 0 16.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +2.41992E7 13.3 8.3 72 98000 0 0 309 0 0 0 0 0 0 0 270 2.6 0 0 16.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +2.42028E7 12.8 8.3 75 98000 0 0 307 0 0 0 0 0 0 0 280 3.1 0 0 16.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +2.42064E7 11.7 8.3 80 98000 0 0 302 0 0 0 0 0 0 0 280 3.1 0 0 16.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +2.421E7 11.7 8.3 80 98000 0 0 302 0 0 0 0 0 0 0 280 1.5 0 0 16.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +2.42136E7 11.1 8.3 83 98000 0 0 300 0 0 0 0 0 0 0 280 1.5 0 0 16.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +2.42172E7 11.1 8.3 83 98000 17 491 300 2 24 0 0 0 0 0 0 0.0 0 0 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +2.42208E7 13.3 9.4 78 98100 238 1370 310 98 412 25 11645 753 2974 1013 250 1.5 0 0 32.2 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +2.42244E7 17.8 9.4 58 98100 507 1370 337 285 658 39 31191 63636 6104 1047 290 1.5 2 1 24.1 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +2.4228E7 20.0 11.7 59 98100 736 1370 343 471 769 55 51504 78173 8205 1469 300 4.1 3 0 19.3 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.42316E7 23.3 12.8 52 98100 911 1370 360 618 829 63 67564 85651 9073 1839 320 4.6 0 0 19.3 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.42352E7 23.9 13.3 52 98000 1018 1370 363 708 844 77 77060 87618 10762 2377 320 3.1 0 0 24.1 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.42388E7 24.4 13.9 52 98000 1050 1370 367 752 869 82 81835 90412 11353 2605 300 3.1 0 0 40.2 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.42424E7 26.7 14.4 47 97900 1005 1370 386 719 864 82 78369 89880 11448 2422 300 5.7 1 1 40.2 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.4246E7 27.2 14.4 46 97800 886 1370 389 618 828 79 67431 85670 11285 2025 290 3.6 1 1 40.2 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.42496E7 27.2 14.4 46 97800 701 1370 381 463 776 63 50793 79039 9383 1530 320 3.1 0 0 48.3 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.42532E7 26.7 14.4 47 97800 464 1370 379 265 632 50 31820 23038 6016 2228 290 2.6 0 0 48.3 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.42568E7 23.9 14.4 56 97800 190 1370 365 72 340 24 8411 0 2808 936 270 2.6 0 0 40.2 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.42604E7 22.2 15.0 64 97800 4 263 357 0 7 0 0 0 0 0 280 3.1 0 0 40.2 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.4264E7 20.6 15.0 71 97800 0 0 349 0 0 0 0 0 0 0 290 3.1 0 0 40.2 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.42676E7 18.9 15.6 81 97800 0 0 342 0 0 0 0 0 0 0 290 2.6 0 0 32.2 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.42712E7 18.3 15.0 81 97900 0 0 339 0 0 0 0 0 0 0 280 3.6 0 0 32.2 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.42748E7 17.8 14.4 81 97900 0 0 336 0 0 0 0 0 0 0 280 3.6 0 0 24.1 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.42784E7 17.2 13.9 81 97900 0 0 332 0 0 0 0 0 0 0 280 3.6 0 0 24.1 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.4282E7 16.7 13.3 81 97800 0 0 329 0 0 0 0 0 0 0 280 4.1 0 0 24.1 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.42856E7 16.7 13.3 81 97800 0 0 329 0 0 0 0 0 0 0 280 4.1 0 0 24.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.42892E7 15.6 12.8 84 97800 0 0 324 0 0 0 0 0 0 0 280 4.1 0 0 24.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.42928E7 15.0 12.2 84 97800 0 0 321 0 0 0 0 0 0 0 280 4.1 0 0 24.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.42964E7 14.4 12.2 87 97800 0 0 318 0 0 0 0 0 0 0 280 4.1 0 0 24.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.43E7 14.4 12.2 87 97800 0 0 318 0 0 0 0 0 0 0 300 4.1 0 0 24.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.43036E7 13.3 11.7 90 97900 16 468 313 2 16 0 0 0 0 0 310 3.1 0 0 11.3 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.43072E7 17.8 13.3 75 97900 234 1371 335 85 117 65 9319 2065 7152 2136 310 3.6 0 0 19.3 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.43108E7 21.1 14.4 66 97900 503 1371 351 268 558 61 31936 22991 7287 2714 290 3.1 0 0 19.3 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.43144E7 22.2 14.4 62 97900 732 1371 356 449 679 83 54636 35693 10129 4043 290 3.6 0 0 19.3 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.4318E7 24.4 15.0 56 97900 906 1371 368 601 756 98 74236 41749 12145 5042 290 3.6 0 0 19.3 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.43216E7 23.9 15.6 60 97900 1013 1371 366 694 784 111 86226 43937 13842 5832 320 4.1 0 0 19.3 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.43252E7 26.1 15.0 50 97900 1045 1371 376 724 768 136 89050 45459 16797 7053 300 4.1 0 0 19.3 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.43288E7 27.2 15.6 49 97800 999 1371 390 635 618 182 75885 39755 21855 8946 300 3.6 1 1 19.3 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.43324E7 27.8 15.6 47 98100 880 1371 386 591 709 133 71059 42037 16056 6547 300 4.1 0 0 19.3 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.4336E7 27.8 15.6 47 97700 695 1371 386 437 668 96 52243 35550 11515 4521 290 4.6 0 0 24.1 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.43396E7 26.7 15.6 51 97700 457 1371 380 249 535 69 29093 21238 8084 2935 310 3.1 0 0 24.1 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.43432E7 24.4 16.1 60 97700 184 1371 369 66 260 31 7523 0 3541 1151 310 2.1 0 0 24.1 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.43468E7 22.8 16.1 66 97800 3 217 361 0 2 0 0 0 0 0 300 1.5 0 0 19.3 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.43504E7 21.7 16.1 71 97800 0 0 356 0 0 0 0 0 0 0 280 2.1 0 0 19.3 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.4354E7 20.6 16.1 76 97800 0 0 351 0 0 0 0 0 0 0 270 2.1 0 0 19.3 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.43576E7 20.0 16.1 78 97900 0 0 348 0 0 0 0 0 0 0 290 2.6 0 0 19.3 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.43612E7 18.9 16.1 84 97900 0 0 343 0 0 0 0 0 0 0 280 3.1 0 0 19.3 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.43648E7 18.9 16.1 84 97900 0 0 343 0 0 0 0 0 0 0 280 3.1 0 0 24.1 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.43684E7 17.2 15.6 90 97900 0 0 334 0 0 0 0 0 0 0 0 0.0 0 0 24.1 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.4372E7 17.2 15.6 90 97900 0 0 334 0 0 0 0 0 0 0 280 4.1 0 0 24.1 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.43756E7 16.1 14.4 90 97900 0 0 328 0 0 0 0 0 0 0 280 4.1 0 0 24.1 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.43792E7 16.1 14.4 90 97900 0 0 328 0 0 0 0 0 0 0 280 3.1 0 0 24.1 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.43828E7 16.1 14.4 90 97900 0 0 328 0 0 0 0 0 0 0 280 3.1 0 0 24.1 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.43864E7 15.0 13.9 93 97900 0 0 322 0 0 0 0 0 0 0 280 2.6 0 0 11.3 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.439E7 15.0 13.9 93 97900 14 446 322 2 10 1 0 0 0 0 0 0.0 0 0 8.0 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.43936E7 18.9 15.6 81 97900 230 1372 342 87 307 35 9999 198 4031 1341 310 3.1 0 0 11.3 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.43972E7 20.6 16.1 76 97900 499 1372 351 261 570 52 31415 21328 6272 2350 270 3.1 0 0 11.3 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.44008E7 23.3 16.1 64 98000 728 1372 364 433 678 71 53201 33311 8746 3504 290 4.1 0 0 11.3 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.44044E7 26.1 16.7 56 97900 902 1372 378 580 733 95 71662 39077 11776 4893 290 3.1 0 0 16.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.4408E7 27.8 17.8 55 97900 1008 1372 388 690 790 106 75526 82882 14606 2722 340 3.1 0 0 16.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.44116E7 28.3 17.2 51 97900 1039 1372 390 725 803 113 79027 84128 15415 2970 290 3.1 0 0 16.1 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.44152E7 29.4 17.2 48 97800 994 1372 396 739 782 170 88582 48102 20473 8431 320 3.6 0 0 19.3 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.44188E7 28.9 16.7 48 97700 874 1372 400 567 687 127 68287 39513 15356 6274 260 3.1 1 1 19.3 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.44224E7 30.0 16.1 43 97700 689 1372 405 436 632 117 51252 35513 13806 5331 270 3.6 1 1 32.2 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.4426E7 28.9 16.1 46 97700 451 1372 392 239 490 77 27629 20018 8929 3198 300 3.1 0 0 32.2 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +2.44296E7 26.1 17.8 60 97700 178 1372 380 61 232 31 6922 0 3526 1140 290 2.6 0 0 32.2 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +2.44332E7 23.3 17.8 71 97700 3 194 366 0 0 0 0 0 0 0 280 3.1 0 0 24.1 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +2.44368E7 22.2 17.8 76 97700 0 0 360 0 0 0 0 0 0 0 280 3.1 0 0 24.1 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +2.44404E7 21.1 17.8 81 97800 0 0 355 0 0 0 0 0 0 0 280 3.6 0 0 19.3 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +2.4444E7 21.1 17.2 79 97800 0 0 354 0 0 0 0 0 0 0 290 3.1 0 0 19.3 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +2.44476E7 20.6 17.8 84 97800 0 0 353 0 0 0 0 0 0 0 290 3.6 0 0 19.3 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +2.44512E7 20.0 17.2 84 97800 0 0 349 0 0 0 0 0 0 0 280 4.6 0 0 19.3 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +2.44548E7 19.4 16.7 84 97800 0 0 346 0 0 0 0 0 0 0 290 4.6 0 0 19.3 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +2.44584E7 17.8 15.6 87 97700 0 0 337 0 0 0 0 0 0 0 280 3.6 0 0 19.3 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.4462E7 17.8 15.6 87 97700 0 0 337 0 0 0 0 0 0 0 280 4.1 0 0 19.3 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.44656E7 16.7 14.4 87 97700 0 0 337 0 0 0 0 0 0 0 280 4.1 1 1 19.3 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.44692E7 18.9 15.6 81 97600 0 0 342 0 0 0 0 0 0 0 250 4.1 0 0 19.3 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.44728E7 17.8 15.6 87 97700 0 0 343 0 0 0 0 0 0 0 280 4.1 1 1 16.1 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.44764E7 17.2 15.0 87 97700 13 446 340 1 3 1 0 0 0 0 280 4.1 1 1 16.1 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.448E7 18.3 15.6 84 97700 226 1373 339 85 251 43 9594 965 4866 1573 270 4.6 0 0 11.3 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.44836E7 20.6 16.1 76 97700 495 1373 351 257 501 75 30042 21301 8793 3223 300 5.2 0 0 11.3 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.44872E7 22.8 16.7 69 97700 724 1373 362 434 624 103 51777 33462 12331 4866 300 6.2 0 0 11.3 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.44908E7 25.6 17.8 62 97700 897 1373 377 592 725 115 71986 39736 14036 5797 310 4.6 0 0 11.3 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.44944E7 26.1 18.3 62 97700 1003 1373 380 694 764 133 84756 42799 16310 6835 290 4.1 0 0 11.3 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +2.4498E7 27.2 18.3 58 97600 1034 1373 386 721 749 154 87482 43565 18770 7842 290 5.2 0 0 11.3 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +2.45016E7 27.8 18.3 56 97500 988 1373 389 679 708 166 81386 42467 19990 8245 300 5.7 0 0 11.3 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.45052E7 27.2 16.7 53 97500 868 1373 384 585 690 146 69637 41446 17454 7048 280 6.2 0 0 11.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2.45088E7 26.1 11.7 41 97500 683 1373 372 465 769 80 56381 41020 9727 3826 310 5.2 0 0 24.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.45124E7 24.4 5.6 30 97500 445 1373 357 282 723 46 30445 67866 7177 1064 310 6.2 0 0 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.4516E7 22.2 6.7 37 97500 172 1373 348 78 415 25 9041 0 2903 947 320 3.6 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.45196E7 19.4 5.0 39 97600 2 172 333 0 3 0 0 0 0 0 290 4.1 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.45232E7 18.3 3.3 37 97700 0 0 326 0 0 0 0 0 0 0 290 4.6 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.45268E7 16.1 3.3 43 97700 0 0 316 0 0 0 0 0 0 0 280 4.1 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.45304E7 14.4 3.9 49 97700 0 0 309 0 0 0 0 0 0 0 290 3.1 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.4534E7 14.4 3.9 49 97700 0 0 309 0 0 0 0 0 0 0 290 5.2 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.45376E7 13.3 2.8 49 97700 0 0 303 0 0 0 0 0 0 0 290 4.1 0 0 32.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.45412E7 12.2 2.8 53 97700 0 0 299 0 0 0 0 0 0 0 300 4.1 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.45448E7 11.7 2.2 53 97800 0 0 296 0 0 0 0 0 0 0 300 5.2 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.45484E7 11.1 2.2 55 97800 0 0 294 0 0 0 0 0 0 0 320 5.7 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.4552E7 10.0 2.8 61 97800 0 0 290 0 0 0 0 0 0 0 320 3.1 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.45556E7 9.4 3.3 66 97800 0 0 288 0 0 0 0 0 0 0 300 3.6 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.45592E7 8.3 3.3 71 97900 0 0 283 0 0 0 0 0 0 0 300 3.1 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.45628E7 7.2 3.9 80 98000 12 423 279 3 30 0 0 0 0 0 280 4.1 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.45664E7 10.0 5.0 71 98000 223 1373 292 110 518 25 11923 40956 4076 600 300 4.1 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.457E7 13.3 5.6 60 98100 490 1373 306 303 783 21 33501 75005 3394 682 340 4.1 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.45736E7 15.0 5.6 54 98100 719 1373 314 498 894 26 54945 89934 4038 856 10 4.6 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.45772E7 17.8 5.6 45 98100 892 1373 326 659 946 40 71884 96482 5913 1312 340 5.2 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.45808E7 18.3 5.6 43 98100 998 1373 328 762 844 144 93137 55947 17673 7316 350 5.7 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.45844E7 19.4 5.6 40 98000 1029 1373 333 790 852 147 96841 56554 18095 7518 300 5.2 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.4588E7 20.6 4.4 35 97900 983 1373 337 745 838 143 90961 55962 17531 7239 310 4.1 0 0 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.45916E7 20.6 3.9 34 97900 863 1373 337 654 958 49 70728 97226 7194 1495 310 5.2 0 0 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.45952E7 20.6 2.8 31 97900 677 1373 336 493 896 49 53162 89069 7400 1326 310 5.2 0 0 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.45988E7 20.0 4.4 36 97900 439 1373 335 287 769 39 31068 71944 6139 994 300 7.2 0 0 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.46024E7 17.8 3.9 40 98000 165 1373 324 79 431 26 9111 0 3004 970 310 4.1 0 0 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.4606E7 14.4 4.4 51 98000 6 149 310 1 1 1 0 0 0 0 340 3.1 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.46096E7 12.8 5.6 62 98100 0 0 304 0 0 0 0 0 0 0 300 3.1 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.46132E7 12.2 6.1 67 98100 0 0 302 0 0 0 0 0 0 0 340 3.1 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.46168E7 11.1 6.1 72 98200 0 0 298 0 0 0 0 0 0 0 320 4.1 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.46204E7 10.0 5.0 71 98200 0 0 292 0 0 0 0 0 0 0 320 4.1 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.4624E7 8.9 3.9 71 98200 0 0 286 0 0 0 0 0 0 0 320 4.1 0 0 32.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.46276E7 8.9 3.9 71 98200 0 0 286 0 0 0 0 0 0 0 320 5.2 0 0 32.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.46312E7 8.3 3.3 71 98200 0 0 283 0 0 0 0 0 0 0 330 5.2 0 0 32.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.46348E7 7.8 2.8 71 98200 0 0 281 0 0 0 0 0 0 0 340 4.1 0 0 32.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.46384E7 6.7 2.8 76 98200 0 0 276 0 0 0 0 0 0 0 310 1.5 0 0 32.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.4642E7 6.1 2.8 79 98300 0 0 274 0 0 0 0 0 0 0 0 0.0 0 0 32.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.46456E7 5.6 2.8 83 98400 0 0 272 0 0 0 0 0 0 0 0 0.0 0 0 32.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.46492E7 5.6 2.8 83 98400 11 401 272 3 30 0 0 0 0 0 330 2.1 0 0 32.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.46528E7 10.6 5.0 69 98500 219 1374 294 108 536 21 11761 42234 3453 558 60 2.6 0 0 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.46564E7 12.2 4.4 59 98500 486 1374 300 307 788 25 33707 75178 4006 777 100 4.6 0 0 32.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.466E7 13.3 5.0 57 98600 715 1374 306 506 892 39 55125 89466 5934 1166 90 3.1 0 0 32.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.46636E7 15.0 5.6 54 98500 888 1374 314 654 937 45 71095 95492 6616 1430 250 1.5 0 0 32.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.46672E7 16.7 3.9 43 98500 993 1374 319 743 958 46 80511 97882 6632 1597 70 2.1 0 0 32.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.46708E7 17.8 3.9 40 98400 1023 1374 324 757 926 64 81236 94579 9008 2119 120 2.6 0 0 32.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.46744E7 20.6 3.9 34 98300 977 1374 337 731 939 60 78599 95776 8545 1912 40 3.1 0 0 32.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.4678E7 21.7 3.9 31 98300 857 1374 342 618 900 53 66681 91266 7756 1569 30 2.6 0 0 32.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.46816E7 22.2 5.0 33 98300 671 1374 346 455 816 54 49080 81227 8124 1390 340 4.6 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.46852E7 21.1 4.4 34 98300 432 1374 340 251 670 38 27185 62515 5993 977 350 2.1 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.46888E7 18.9 5.6 42 98300 159 1374 331 64 359 22 7451 0 2565 836 300 2.1 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.46924E7 16.1 6.7 54 98400 6 103 320 1 0 1 0 0 0 0 300 2.1 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.4696E7 13.9 6.7 62 98400 0 0 310 0 0 0 0 0 0 0 340 2.1 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.46996E7 13.3 6.7 64 98400 0 0 307 0 0 0 0 0 0 0 330 2.6 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.47032E7 12.2 5.6 64 98400 0 0 302 0 0 0 0 0 0 0 330 2.6 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.47068E7 12.8 5.0 59 98400 0 0 304 0 0 0 0 0 0 0 340 1.5 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.47104E7 11.7 3.9 59 98400 0 0 298 0 0 0 0 0 0 0 0 0.0 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.4714E7 10.6 5.6 71 98400 0 0 295 0 0 0 0 0 0 0 0 0.0 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.47176E7 10.6 6.1 74 98400 0 0 295 0 0 0 0 0 0 0 0 0.0 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.47212E7 10.0 6.1 77 98400 0 0 293 0 0 0 0 0 0 0 0 0.0 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.47248E7 7.8 4.4 80 98400 0 0 282 0 0 0 0 0 0 0 0 0.0 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.47284E7 8.3 4.4 77 98400 0 0 284 0 0 0 0 0 0 0 0 0.0 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.4732E7 8.3 5.6 83 98500 0 0 286 0 0 0 0 0 0 0 0 0.0 0 0 19.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.47356E7 8.3 6.1 86 98600 10 378 286 3 15 1 0 0 0 0 0 0.0 0 0 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.47392E7 11.7 7.8 77 98700 215 1375 302 97 420 30 11266 88 3491 1157 80 2.1 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.47428E7 13.9 7.8 67 98700 482 1375 311 283 671 45 30723 64047 7009 1095 140 3.1 0 0 19.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.47464E7 16.7 7.2 54 98700 710 1375 323 484 813 61 52241 81566 9075 1513 170 3.6 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.475E7 19.4 7.8 47 98700 883 1375 336 629 866 69 67797 88347 9923 1878 170 4.6 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.47536E7 20.0 8.3 47 98600 988 1375 339 727 897 79 78133 92006 11072 2297 130 4.1 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.47572E7 21.1 7.2 41 98500 1018 1375 343 755 899 85 80792 92100 11793 2505 160 5.2 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.47608E7 22.2 7.2 38 98400 971 1375 348 715 886 85 76516 90603 11892 2333 140 5.7 0 0 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.47644E7 22.2 7.2 38 98400 851 1375 348 608 846 81 65146 85946 11601 1954 130 3.6 0 0 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.4768E7 22.2 7.8 40 98300 665 1375 349 456 787 73 55587 42525 8922 3492 120 3.1 0 0 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.47716E7 22.2 7.2 38 98300 426 1375 348 249 651 45 29982 23897 5428 1978 170 4.1 0 0 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.47752E7 20.6 7.2 42 98300 154 1375 341 61 317 25 7003 0 2875 922 150 3.6 0 0 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.47788E7 19.4 7.8 47 98400 0 80 336 0 0 0 0 0 0 0 130 3.6 0 0 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.47824E7 17.8 8.9 56 98400 0 0 330 0 0 0 0 0 0 0 140 4.1 0 0 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.4786E7 16.1 8.3 60 98400 0 0 321 0 0 0 0 0 0 0 140 3.6 0 0 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.47896E7 15.0 8.3 65 98400 0 0 317 0 0 0 0 0 0 0 130 2.6 0 0 24.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.47932E7 15.0 7.8 62 98400 0 0 316 0 0 0 0 0 0 0 120 3.1 0 0 24.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.47968E7 13.3 7.8 69 98400 0 0 309 0 0 0 0 0 0 0 90 2.6 0 0 24.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.48004E7 12.8 7.8 72 98400 0 0 306 0 0 0 0 0 0 0 90 3.1 0 0 24.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.4804E7 12.2 7.8 75 98500 0 0 304 0 0 0 0 0 0 0 90 3.1 0 0 19.3 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.48076E7 12.2 6.7 69 98500 0 0 303 0 0 0 0 0 0 0 80 2.6 0 0 16.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.48112E7 12.2 6.7 69 98500 0 0 303 0 0 0 0 0 0 0 100 2.6 0 0 16.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.48148E7 10.6 6.7 77 98500 0 0 296 0 0 0 0 0 0 0 70 2.6 0 0 16.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2.48184E7 11.1 6.7 74 98500 0 0 298 0 0 0 0 0 0 0 60 2.1 0 0 16.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2.4822E7 10.0 7.2 83 98500 9 355 294 2 5 1 0 0 0 0 70 2.1 0 0 12.9 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2.48256E7 12.2 8.3 77 98600 211 1376 304 85 293 39 9649 1131 4438 1424 80 2.6 0 0 12.9 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2.48292E7 14.4 10.0 75 98700 478 1376 316 259 536 71 30405 24192 8358 3039 90 3.1 0 0 12.9 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.48328E7 17.2 12.2 73 98700 706 1376 331 428 449 196 48529 32508 22335 7994 90 2.1 0 0 12.9 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.48364E7 20.6 15.6 73 98700 878 1376 368 504 465 205 58531 32022 23929 9294 150 2.1 4 4 14.5 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.484E7 21.7 16.1 71 98600 983 1376 377 696 781 135 84789 45742 16514 6878 170 3.6 5 5 19.3 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.48436E7 22.2 15.0 64 98500 1013 1376 378 555 470 207 65790 31776 24664 9975 110 3.1 5 5 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +2.48472E7 23.9 13.9 54 98400 966 1376 386 754 773 209 88768 53677 24732 9865 160 3.6 5 5 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +2.48508E7 23.3 13.3 54 98400 845 1376 379 559 608 183 65282 41441 21474 8366 120 2.1 4 4 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +2.48544E7 24.4 13.3 50 98400 659 1376 385 390 502 148 44824 31932 17084 6296 160 5.2 4 4 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +2.4858E7 23.9 13.3 52 98400 420 1376 370 145 209 81 16596 8819 9301 3237 140 4.1 1 1 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +2.48616E7 22.2 13.3 57 98400 148 1376 355 50 179 31 5604 0 3483 1080 120 3.6 0 0 19.3 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +2.48652E7 20.6 13.9 66 98400 0 57 348 0 0 0 0 0 0 0 120 3.6 0 0 19.3 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +2.48688E7 20.0 13.9 68 98500 0 0 345 0 0 0 0 0 0 0 120 3.6 0 0 19.3 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +2.48724E7 19.4 14.4 73 98500 0 0 343 0 0 0 0 0 0 0 120 3.6 0 0 19.3 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +2.4876E7 17.2 13.9 81 98500 0 0 332 0 0 0 0 0 0 0 90 3.6 0 0 19.3 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +2.48796E7 16.1 13.9 87 98500 0 0 327 0 0 0 0 0 0 0 90 3.1 0 0 19.3 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +2.48832E7 15.6 13.9 90 98500 0 0 325 0 0 0 0 0 0 0 100 3.6 0 0 19.3 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +2.48868E7 15.0 13.3 90 98600 0 0 322 0 0 0 0 0 0 0 80 3.1 0 0 16.1 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +2.48904E7 14.4 13.3 93 98600 0 0 319 0 0 0 0 0 0 0 100 3.1 0 0 16.1 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +2.4894E7 13.9 13.3 96 98500 0 0 317 0 0 0 0 0 0 0 80 3.6 0 0 16.1 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +2.48976E7 13.9 10.6 80 98500 0 0 314 0 0 0 0 0 0 0 90 2.6 0 0 12.9 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.49012E7 13.3 13.3 100 98500 0 0 314 0 0 0 0 0 0 0 100 3.1 0 0 9.7 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.49048E7 12.8 12.8 100 98500 0 0 312 0 0 0 0 0 0 0 80 3.1 0 0 9.7 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.49084E7 12.8 12.8 100 98600 8 356 322 1 3 1 0 0 0 0 80 3.1 2 2 3.2 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.4912E7 14.4 14.4 100 98700 207 1377 331 83 259 44 9280 453 4933 1551 80 3.1 3 2 3.2 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.49156E7 16.7 15.6 93 98700 474 1377 343 275 569 77 31930 24045 8968 3240 90 4.1 6 2 8.0 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.49192E7 19.4 16.7 84 98700 701 1377 361 419 529 147 48410 32088 17058 6437 130 5.2 9 3 16.1 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.49228E7 22.2 17.2 73 98700 873 1377 372 577 662 154 68374 40150 18330 7370 150 4.6 9 2 19.3 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.49264E7 24.4 16.7 62 98700 978 1377 386 504 350 254 58401 25279 29600 11510 110 6.2 9 3 24.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.493E7 24.4 16.1 60 98600 1007 1377 395 672 495 308 77076 38813 35546 13404 160 6.2 9 6 32.2 7620 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.49336E7 25.0 16.1 58 98500 960 1377 409 529 334 295 60449 26085 33915 12685 160 4.6 10 8 40.2 7620 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.49372E7 25.0 16.1 58 98400 839 1377 418 370 114 300 41401 9359 33775 11769 140 5.2 10 9 40.2 7620 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.49408E7 25.0 16.1 58 98400 653 1377 418 282 139 216 31327 10188 24125 8131 150 5.2 9 9 40.2 7620 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.49444E7 24.4 16.1 60 98400 414 1377 399 162 104 130 17770 5506 14325 4480 90 5.2 10 7 40.2 7620 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.4948E7 23.3 16.1 64 98400 142 1377 408 36 0 36 3475 0 3500 1187 100 3.6 10 9 24.1 4270 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.49516E7 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 22 0.0000 0 88 0.000 0.0 1.0 +2.49552E7 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 22 0.0000 0 88 0.000 0.0 1.0 +2.49588E7 21.1 16.1 73 98500 0 0 368 0 0 0 0 0 0 0 110 5.7 7 3 19.3 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.49624E7 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 23 0.0000 0 88 0.000 0.0 1.0 +2.4966E7 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 24 0.0000 0 88 0.000 0.0 1.0 +2.49696E7 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 24 0.0000 0 88 0.000 0.0 1.0 +2.49732E7 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 25 0.0000 0 88 0.000 0.0 1.0 +2.49768E7 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 25 0.0000 0 88 0.000 0.0 1.0 +2.49804E7 17.2 16.7 97 98400 0 0 342 0 0 0 0 0 0 0 90 4.1 4 1 11.3 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +2.4984E7 17.2 16.7 97 98300 0 0 342 0 0 0 0 0 0 0 90 4.1 3 1 11.3 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +2.49876E7 16.7 16.7 100 98300 0 0 339 0 0 0 0 0 0 0 90 3.1 3 1 11.3 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +2.49912E7 16.1 16.1 100 98300 0 0 336 0 0 0 0 0 0 0 110 4.1 3 1 4.8 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +2.49948E7 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 27 0.0000 0 88 0.000 0.0 1.0 +2.49984E7 17.2 17.2 100 98400 203 1377 377 55 16 52 6040 46 5729 1730 100 3.6 10 9 2.4 150 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.5002E7 18.9 18.3 97 98400 469 1377 379 175 79 147 19213 4473 16216 5175 120 6.2 9 8 4.8 180 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.50056E7 21.1 18.9 87 98400 697 1377 385 357 247 231 39648 17884 25798 8817 150 5.2 9 7 11.3 5180 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.50092E7 23.3 19.4 79 98300 869 1377 404 505 299 315 56359 23902 35378 12381 150 5.2 9 8 16.1 460 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +2.50128E7 24.4 20.0 76 98300 973 1377 404 528 255 347 59428 20390 39315 14170 160 5.7 9 7 24.1 700 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +2.50164E7 25.6 18.9 67 98200 1002 1377 409 451 97 380 50682 8160 42995 15242 160 5.2 10 7 24.1 4880 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +2.502E7 25.0 18.3 67 98100 954 1377 421 384 40 356 43090 3341 40213 14217 170 6.2 10 9 24.1 4880 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +2.50236E7 26.1 18.9 65 98100 833 1377 440 239 22 226 27264 1521 25922 9729 160 5.2 10 10 24.1 7620 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +2.50272E7 26.1 18.3 62 98000 647 1377 418 275 84 235 30237 6267 25986 8476 140 7.2 10 8 24.1 7620 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +2.50308E7 25.6 18.3 64 98000 408 1377 415 81 33 70 9311 1115 8071 2848 150 5.7 9 8 24.1 7620 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +2.50344E7 24.4 18.9 71 98100 136 1366 430 42 0 42 4039 0 4069 1288 150 3.1 10 10 24.1 3960 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +2.5038E7 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 33 0.0000 0 88 0.000 0.0 1.0 +2.50416E7 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 33 0.0000 0 88 0.000 0.0 1.0 +2.50452E7 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 33 0.0000 0 88 0.000 0.0 1.0 +2.50488E7 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 34 0.0000 0 88 0.000 0.0 1.0 +2.50524E7 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 34 0.0000 0 88 0.000 0.0 1.0 +2.5056E7 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 34 0.0000 0 88 0.000 0.0 1.0 +2.50596E7 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 35 0.0000 0 88 0.000 0.3 1.0 +2.50632E7 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 35 0.0000 0 88 0.000 0.8 1.0 +2.50668E7 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 35 0.0000 0 88 0.000 0.0 1.0 +2.50704E7 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 35 0.0000 0 88 0.000 0.0 1.0 +2.5074E7 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 35 0.0000 0 88 0.000 0.0 1.0 +2.50776E7 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 36 0.0000 0 88 0.000 0.0 1.0 +2.50812E7 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 36 0.0000 0 88 0.000 0.0 1.0 +2.50848E7 20.0 20.0 100 97900 199 1378 406 55 17 52 6011 0 5702 1715 160 4.1 10 10 8.0 7620 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +2.50884E7 21.1 20.0 93 97900 465 1378 412 140 13 136 15425 674 15053 4904 200 4.6 10 10 8.0 150 9 999999999 37 0.0000 0 88 0.000 0.0 1.0 +2.5092E7 21.7 20.6 93 98000 692 1378 417 95 12 90 11341 562 10779 4252 190 4.1 10 10 11.3 1370 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +2.50956E7 23.9 21.1 85 98000 864 1378 430 241 7 237 27448 473 27145 10248 220 6.2 10 10 12.9 370 9 999999999 38 0.0000 0 88 0.000 0.0 1.0 +2.50992E7 23.9 21.7 87 97900 967 1378 431 303 8 297 34437 576 33966 12781 220 8.2 10 10 19.3 430 9 999999999 39 0.0000 0 88 0.000 0.0 1.0 +2.51028E7 23.9 21.7 87 97900 996 1378 431 342 3 340 38624 229 38653 14205 200 5.2 10 10 22.5 430 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.51064E7 25.0 21.7 82 97800 949 1378 437 314 3 312 35447 223 35446 13062 220 6.2 10 10 19.3 580 9 999999999 40 0.0000 0 88 0.000 0.0 1.0 +2.511E7 25.0 22.2 85 97700 827 1378 438 268 1 268 30007 71 30188 10871 220 4.6 10 10 19.3 3050 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.51136E7 25.6 22.2 82 97700 641 1378 441 202 3 201 22372 191 22381 7678 220 5.7 10 10 24.1 3050 9 999999999 41 0.0000 0 88 0.000 0.0 1.0 +2.51172E7 25.0 22.2 85 97700 402 1378 438 118 1 117 12929 42 12877 4125 200 6.2 10 10 19.3 5490 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +2.51208E7 24.4 22.2 87 97600 131 1344 434 38 0 38 3637 0 3663 1190 180 3.6 10 10 19.3 5180 9 999999999 42 0.0000 0 88 0.000 0.0 1.0 +2.51244E7 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 43 0.0000 0 88 0.000 0.0 1.0 +2.5128E7 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 42 0.0000 0 88 0.000 0.0 1.0 +2.51316E7 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 42 0.0000 0 88 0.000 0.0 1.0 +2.51352E7 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 41 0.0000 0 88 0.000 0.0 1.0 +2.51388E7 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 40 0.0000 0 88 0.000 0.0 1.0 +2.51424E7 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 40 0.0000 0 88 0.000 0.0 1.0 +2.5146E7 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 39 0.0000 0 88 0.000 0.0 1.0 +2.51496E7 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 38 0.0000 0 88 0.000 0.5 1.0 +2.51532E7 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 38 0.0000 0 88 0.000 0.0 1.0 +2.51568E7 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 37 0.0000 0 88 0.000 0.0 1.0 +2.51604E7 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 36 0.0000 0 88 0.000 0.0 1.0 +2.5164E7 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 36 0.0000 0 88 0.000 0.0 1.0 +2.51676E7 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 35 0.0000 0 88 0.000 0.0 1.0 +2.51712E7 19.4 19.4 100 97600 195 1379 402 24 0 24 2318 0 2335 934 310 3.1 10 10 11.3 1370 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +2.51748E7 20.0 20.0 100 97700 461 1379 406 92 0 92 9086 0 9161 3695 310 3.6 10 10 9.7 210 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +2.51784E7 20.6 20.0 97 97700 688 1379 410 153 1 152 17526 58 17490 6539 310 3.1 10 10 11.3 1520 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +2.5182E7 22.2 19.4 84 97700 859 1379 418 238 0 238 24318 0 24546 10243 320 3.1 10 10 14.5 1830 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +2.51856E7 22.2 18.3 79 97700 962 1379 416 334 15 323 37811 1190 36799 13456 290 2.6 10 10 24.1 1830 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.51892E7 22.2 17.8 76 97600 991 1379 416 208 0 208 21522 0 21731 9921 270 3.6 10 10 24.1 1830 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +2.51928E7 23.9 17.8 69 97600 943 1379 425 278 38 252 32028 2722 29199 11238 270 3.6 10 10 24.1 2130 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +2.51964E7 23.9 15.6 60 97500 822 1379 396 535 472 252 60548 36023 28681 10394 260 4.1 9 7 32.2 7620 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.52E7 24.4 15.6 58 97500 635 1379 399 239 156 167 27024 10153 18972 6743 270 5.7 8 7 32.2 2740 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.52036E7 23.9 15.6 60 97500 396 1379 388 163 73 142 17664 4099 15463 4564 270 4.1 8 5 32.2 7620 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.52072E7 21.1 15.0 68 97500 125 1322 370 31 11 30 3431 0 3329 1000 270 4.1 7 4 32.2 7620 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.52108E7 19.4 15.6 78 97500 0 0 356 0 0 0 0 0 0 0 270 4.1 6 2 24.1 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.52144E7 18.3 15.0 81 97600 0 0 345 0 0 0 0 0 0 0 280 4.1 3 1 24.1 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +2.5218E7 17.2 15.0 87 97600 0 0 340 0 0 0 0 0 0 0 280 3.1 3 1 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +2.52216E7 16.7 15.0 90 97600 0 0 338 0 0 0 0 0 0 0 290 4.1 3 1 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +2.52252E7 16.7 15.0 90 97700 0 0 338 0 0 0 0 0 0 0 300 4.6 4 1 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +2.52288E7 15.0 11.7 81 97700 0 0 326 0 0 0 0 0 0 0 310 5.2 3 1 19.3 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.52324E7 13.9 10.6 80 97700 0 0 320 0 0 0 0 0 0 0 320 5.2 3 1 19.3 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.5236E7 12.8 10.0 83 97800 0 0 309 0 0 0 0 0 0 0 320 5.2 0 0 19.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2.52396E7 12.2 9.4 83 97800 0 0 306 0 0 0 0 0 0 0 300 5.2 0 0 19.3 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.52432E7 11.1 9.4 90 97800 0 0 301 0 0 0 0 0 0 0 310 5.2 1 0 19.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.52468E7 10.0 8.9 93 97900 0 0 296 0 0 0 0 0 0 0 310 5.7 1 0 19.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.52504E7 9.4 7.2 86 97900 0 0 292 0 0 0 0 0 0 0 330 4.1 1 0 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.5254E7 8.3 6.1 86 97900 6 264 286 1 7 0 0 0 0 0 310 5.2 1 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.52576E7 8.3 6.1 86 97900 191 1380 286 88 500 18 9616 37944 2981 490 320 6.2 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.52612E7 11.1 6.1 72 98000 456 1380 307 287 799 20 31768 75589 3252 650 320 5.2 2 2 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.52648E7 13.3 4.4 55 98000 683 1380 315 479 751 105 57003 46038 12538 4829 340 6.2 2 2 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.52684E7 15.6 5.0 50 98000 854 1380 337 586 688 158 69555 47759 18835 7450 320 4.1 6 6 24.1 7620 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.5272E7 17.2 4.4 43 98000 957 1380 341 584 517 223 68604 39687 26332 10318 320 3.6 7 5 24.1 7620 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.52756E7 18.3 5.0 42 98000 985 1380 350 455 177 328 52065 15657 37765 13786 320 4.6 8 6 24.1 7620 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.52792E7 17.8 5.6 45 97900 937 1380 366 502 318 285 57651 26803 32921 12209 320 3.6 9 9 24.1 7620 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.52828E7 19.4 5.0 39 97900 816 1380 356 429 232 291 48226 20557 32906 11313 320 3.6 9 6 32.2 7620 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.52864E7 18.3 5.0 42 97900 629 1380 368 265 84 226 29372 6932 25184 8118 320 4.1 10 9 32.2 6710 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.529E7 17.8 5.0 43 97900 391 1380 352 177 187 124 19489 10717 13712 4197 310 6.2 9 7 32.2 6710 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.52936E7 15.6 5.0 50 98000 120 1299 329 27 9 26 3029 0 2924 888 300 2.6 7 3 32.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.52972E7 13.3 5.6 60 98000 0 0 320 0 0 0 0 0 0 0 290 3.6 7 3 32.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.53008E7 11.7 6.1 69 98000 0 0 313 0 0 0 0 0 0 0 290 3.6 6 3 32.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.53044E7 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 12 0.0000 0 88 0.000 0.0 1.0 +2.5308E7 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 12 0.0000 0 88 0.000 0.0 1.0 +2.53116E7 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 12 0.0000 0 88 0.000 0.0 1.0 +2.53152E7 10.6 7.2 80 98100 0 0 314 0 0 0 0 0 0 0 290 3.6 10 5 32.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.53188E7 10.0 6.7 80 98100 0 0 294 0 0 0 0 0 0 0 330 5.2 3 0 40.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.53224E7 10.6 6.1 74 98100 0 0 308 0 0 0 0 0 0 0 330 4.1 6 3 40.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.5326E7 8.9 6.1 83 98100 0 0 288 0 0 0 0 0 0 0 340 4.1 2 0 40.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.53296E7 8.3 6.1 86 98100 0 0 286 0 0 0 0 0 0 0 320 4.1 1 0 40.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.53332E7 8.3 6.1 86 98100 0 0 301 0 0 0 0 0 0 0 350 3.1 8 4 40.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.53368E7 7.8 5.6 86 98200 0 0 298 0 0 0 0 0 0 0 350 4.1 9 4 32.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.53404E7 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 12 0.0000 0 88 0.000 0.0 1.0 +2.5344E7 11.1 5.6 69 98200 187 1381 321 47 10 46 5211 44 5116 1538 20 4.1 9 7 32.2 7620 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.53476E7 13.9 6.7 62 98300 452 1381 331 225 378 100 25578 19898 11409 3901 60 2.6 9 6 32.2 7620 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.53512E7 16.1 7.8 58 98300 678 1381 343 385 371 202 43405 28325 22889 7949 60 2.6 9 6 32.2 7620 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.53548E7 18.9 8.3 51 98300 849 1381 354 550 681 129 66159 43523 15577 6267 90 3.6 7 5 32.2 7620 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.53584E7 20.0 7.8 45 98300 952 1381 359 641 703 154 77306 46996 18653 7615 90 1.5 7 5 32.2 7620 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.5362E7 20.0 7.2 44 98200 980 1381 358 668 623 223 78660 46804 26396 10429 160 2.6 9 5 32.2 7620 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.53656E7 21.1 7.2 41 98100 932 1381 371 567 362 321 64391 31932 36679 13134 90 1.5 7 7 32.2 7620 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.53692E7 22.2 6.7 37 98000 810 1381 368 546 637 170 63958 45004 20004 7727 330 2.1 5 5 32.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.53728E7 22.2 6.7 37 98000 624 1381 363 400 753 58 43151 74447 8758 1376 270 1.5 3 3 32.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.53764E7 21.1 7.2 41 98000 385 1381 361 201 549 46 23898 18086 5480 1957 60 2.6 5 4 32.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.538E7 19.4 6.7 44 98000 115 1277 352 39 160 21 4433 0 2391 745 100 2.6 5 4 32.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.53836E7 19.4 7.2 45 98100 0 0 352 0 0 0 0 0 0 0 140 3.6 5 4 24.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.53872E7 15.0 9.4 70 98100 0 0 334 0 0 0 0 0 0 0 300 2.6 4 4 24.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.53908E7 16.1 8.9 63 98100 0 0 339 0 0 0 0 0 0 0 250 2.6 10 4 32.2 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2.53944E7 14.4 8.9 70 98100 0 0 333 0 0 0 0 0 0 0 290 1.5 10 5 32.2 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2.5398E7 13.3 8.9 75 98100 0 0 320 0 0 0 0 0 0 0 320 2.1 7 2 32.2 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.54016E7 13.9 8.9 72 98100 0 0 326 0 0 0 0 0 0 0 300 1.5 5 3 32.2 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.54052E7 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 15 0.0000 0 88 0.000 0.0 1.0 +2.54088E7 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 15 0.0000 0 88 0.000 0.0 1.0 +2.54124E7 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 15 0.0000 0 88 0.000 0.0 1.0 +2.5416E7 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 16 0.0000 0 88 0.000 0.0 1.0 +2.54196E7 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 16 0.0000 0 88 0.000 0.0 1.0 +2.54232E7 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 17 0.0000 0 88 0.000 0.0 1.0 +2.54268E7 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 17 0.0000 0 88 0.000 0.0 1.0 +2.54304E7 13.3 10.6 83 98200 182 1381 342 39 0 39 3793 0 3820 1357 0 0.0 9 8 16.1 3660 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +2.5434E7 15.0 11.7 81 98300 447 1381 352 140 107 105 15793 5444 11890 4024 40 1.5 8 8 16.1 3050 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +2.54376E7 16.7 10.6 67 98400 674 1381 343 299 392 107 35368 22889 12701 4878 90 3.1 5 4 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +2.54412E7 20.6 11.1 55 98400 844 1381 356 587 865 55 64135 88668 8073 1583 60 5.2 2 2 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +2.54448E7 22.2 10.6 48 98300 947 1381 359 678 902 56 73968 92925 8071 1753 90 6.2 1 1 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +2.54484E7 23.3 10.0 43 98300 975 1381 363 703 901 64 76295 92764 9109 1978 60 6.7 1 1 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +2.5452E7 23.3 9.4 41 98200 926 1381 363 662 878 69 71593 90047 9859 1962 70 3.6 1 1 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +2.54556E7 23.3 9.4 41 98200 804 1381 363 559 818 80 60169 83095 11567 1834 30 2.1 1 1 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +2.54592E7 23.3 8.9 40 98200 618 1381 362 401 754 61 49067 37632 7481 2896 70 5.2 1 1 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +2.54628E7 22.2 8.9 43 98200 379 1381 362 208 603 41 24892 18059 4915 1761 80 5.2 2 2 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +2.54664E7 20.6 9.4 49 98300 110 1255 354 37 232 12 4374 0 1420 460 100 4.6 3 2 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +2.547E7 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 15 0.0000 0 88 0.000 0.0 1.0 +2.54736E7 17.2 10.0 63 98400 0 0 342 0 0 0 0 0 0 0 80 3.6 6 3 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +2.54772E7 16.7 10.6 67 98500 0 0 337 0 0 0 0 0 0 0 80 3.1 3 2 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +2.54808E7 16.1 10.0 67 98500 0 0 337 0 0 0 0 0 0 0 70 4.1 6 3 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +2.54844E7 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 16 0.0000 0 88 0.000 0.0 1.0 +2.5488E7 13.9 10.0 78 98500 0 0 330 0 0 0 0 0 0 0 70 3.1 10 4 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +2.54916E7 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 16 0.0000 0 88 0.000 0.0 1.0 +2.54952E7 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 17 0.0000 0 88 0.000 0.0 1.0 +2.54988E7 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 17 0.0000 0 88 0.000 0.0 1.0 +2.55024E7 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 17 0.0000 0 88 0.000 0.0 1.0 +2.5506E7 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 18 0.0000 0 88 0.000 0.0 1.0 +2.55096E7 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 18 0.0000 0 88 0.000 0.0 1.0 +2.55132E7 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 18 0.0000 0 88 0.000 0.0 1.0 +2.55168E7 13.3 12.2 93 98700 178 1382 361 40 0 40 3884 0 3912 1371 60 4.6 10 10 11.3 3660 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.55204E7 14.4 11.7 84 98700 443 1382 366 72 0 72 7155 0 7212 2988 90 7.2 10 10 11.3 7620 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.5524E7 16.7 11.7 73 98700 669 1382 378 167 0 167 16913 0 17059 6908 90 5.2 10 10 11.3 7620 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.55276E7 16.7 11.7 73 98700 839 1382 378 140 0 140 14378 0 14509 6684 90 6.2 10 10 11.3 3660 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.55312E7 17.8 11.1 65 98600 941 1382 383 166 0 166 17198 0 17360 8075 80 9.3 10 10 11.3 1070 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.55348E7 16.1 11.1 72 98600 969 1382 374 145 0 145 15057 0 15199 7277 70 5.2 10 10 11.3 3660 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.55384E7 17.8 10.6 63 98600 921 1382 383 239 0 239 24729 0 24960 10665 90 7.2 10 10 11.3 3660 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.5542E7 17.8 8.9 56 98600 799 1382 380 283 2 282 31737 172 31811 10927 90 9.8 10 10 24.1 3660 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.55456E7 16.7 8.9 60 98600 612 1382 364 153 0 153 15453 0 15583 6201 90 10.3 10 9 24.1 3660 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.55492E7 15.6 10.0 70 98600 374 1382 360 79 0 79 7816 0 7877 3021 90 7.7 10 9 24.1 1370 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +2.55528E7 13.9 10.6 80 98600 105 1232 363 12 0 12 1159 0 1167 456 80 8.2 10 10 16.1 1070 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +2.55564E7 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 26 0.0000 0 88 0.000 0.0 1.0 +2.556E7 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 26 0.0000 0 88 0.000 0.0 1.0 +2.55636E7 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 25 0.0000 0 88 0.000 0.0 1.0 +2.55672E7 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 25 0.0000 0 88 0.000 0.0 1.0 +2.55708E7 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 25 0.0000 0 88 0.000 0.0 1.0 +2.55744E7 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 24 0.0000 0 88 0.000 0.0 1.0 +2.5578E7 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 24 0.0000 0 88 0.000 0.0 1.0 +2.55816E7 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 24 0.0000 0 88 0.000 0.0 1.0 +2.55852E7 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 23 0.0000 0 88 0.000 0.0 1.0 +2.55888E7 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 23 0.0000 0 88 0.000 0.0 1.0 +2.55924E7 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 23 0.0000 0 88 0.000 0.0 1.0 +2.5596E7 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 22 0.0000 0 88 0.000 0.0 1.0 +2.55996E7 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 22 0.0000 0 88 0.000 0.0 1.0 +2.56032E7 10.6 8.9 90 98600 174 1383 344 26 0 26 2529 0 2547 974 90 6.2 10 10 12.9 400 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.56068E7 11.1 8.9 86 98600 438 1383 337 159 3 158 17327 198 17302 5130 90 6.2 10 9 16.1 400 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.56104E7 12.2 8.9 80 98600 664 1383 352 225 5 223 25074 398 24984 8330 90 8.8 10 10 16.1 400 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.5614E7 13.3 8.9 75 98600 834 1383 357 221 0 221 22725 0 22931 9543 70 7.2 10 10 16.1 610 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.56176E7 13.3 8.9 75 98500 936 1383 357 290 1 289 33195 83 33276 12290 120 8.2 10 10 24.1 610 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.56212E7 12.8 8.9 77 98400 964 1383 355 128 0 128 13302 0 13428 6513 110 7.2 10 10 24.1 400 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +2.56248E7 12.2 9.4 83 98300 915 1383 353 116 0 116 12005 0 12117 5870 90 6.7 10 10 24.1 370 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +2.56284E7 12.2 10.0 86 98300 793 1383 353 150 0 150 15366 0 15504 6917 90 6.7 10 10 24.1 370 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +2.5632E7 11.7 10.0 90 98200 607 1383 351 99 0 99 9987 0 10072 4391 100 7.7 10 10 12.9 340 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +2.56356E7 11.1 10.6 96 98100 368 1383 349 50 0 50 4943 0 4981 2075 160 7.7 10 10 12.9 270 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +2.56392E7 10.6 10.6 100 98100 101 1187 346 9 0 9 869 0 875 350 90 6.7 10 10 9.7 210 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +2.56428E7 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 27 0.0000 0 88 0.000 0.0 1.0 +2.56464E7 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 26 0.0000 0 88 0.000 0.0 1.0 +2.565E7 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 25 0.0000 0 88 0.000 0.0 1.0 +2.56536E7 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 23 0.0000 0 88 0.000 0.0 1.0 +2.56572E7 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 22 0.0000 0 88 0.000 0.0 1.0 +2.56608E7 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 21 0.0000 0 88 0.000 2.0 1.0 +2.56644E7 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 20 0.0000 0 88 0.000 2.0 1.0 +2.5668E7 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 19 0.0000 0 88 0.000 1.8 1.0 +2.56716E7 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 18 0.0000 0 88 0.000 0.0 1.0 +2.56752E7 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 16 0.0000 0 88 0.000 0.0 1.0 +2.56788E7 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 15 0.0000 0 88 0.000 0.0 1.0 +2.56824E7 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 14 0.0000 0 88 0.000 0.0 1.0 +2.5686E7 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 13 0.0000 0 88 0.000 0.0 1.0 +2.56896E7 7.2 6.7 96 97800 170 1384 305 18 0 18 1753 0 1765 706 310 10.8 7 7 24.1 340 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2.56932E7 7.8 6.7 93 97900 434 1384 308 58 4 57 6861 161 6758 2436 300 7.7 7 7 24.1 520 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.56968E7 8.3 5.0 80 98000 659 1384 308 383 282 248 42340 24251 27570 8786 310 11.3 7 7 24.1 700 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.57004E7 8.9 3.3 68 98000 829 1384 305 540 607 174 63374 44023 20513 7937 300 8.2 6 6 32.2 700 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.5704E7 10.6 3.3 61 98000 931 1384 305 661 748 155 79539 51711 18731 7587 300 8.2 3 3 40.2 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.57076E7 11.7 2.2 53 97900 958 1384 306 792 948 132 96899 63030 16213 6678 310 11.8 3 2 48.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.57112E7 12.2 1.1 47 97900 909 1384 297 687 910 85 72835 91968 12018 2124 310 7.2 0 0 48.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.57148E7 12.8 1.1 45 97900 788 1384 299 588 915 64 62834 91798 9377 1648 300 11.3 0 0 48.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.57184E7 12.2 1.7 49 97900 601 1384 298 426 838 59 45567 81845 8920 1353 290 6.7 0 0 48.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.5722E7 11.1 0.6 49 97900 363 1384 292 221 687 39 23726 61290 6178 901 310 7.2 0 0 48.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.57256E7 9.4 1.1 56 98000 97 1165 286 42 280 12 4926 0 1409 449 290 5.2 0 0 48.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.57292E7 7.8 1.1 63 98000 0 0 279 0 0 0 0 0 0 0 290 3.1 0 0 48.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.57328E7 7.2 1.7 68 98100 0 0 277 0 0 0 0 0 0 0 260 2.1 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.57364E7 6.1 1.7 73 98100 0 0 273 0 0 0 0 0 0 0 270 2.1 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.574E7 5.6 2.2 79 98200 0 0 271 0 0 0 0 0 0 0 280 2.6 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.57436E7 5.0 2.2 82 98200 0 0 269 0 0 0 0 0 0 0 280 2.6 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.57472E7 4.4 2.2 86 98200 0 0 267 0 0 0 0 0 0 0 260 2.6 0 0 32.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.57508E7 3.9 2.2 89 98200 0 0 265 0 0 0 0 0 0 0 280 3.1 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.57544E7 3.9 1.7 86 98200 0 0 264 0 0 0 0 0 0 0 260 3.6 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.5758E7 3.9 1.7 86 98200 0 0 264 0 0 0 0 0 0 0 260 3.6 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.57616E7 2.8 1.7 92 98200 0 0 260 0 0 0 0 0 0 0 260 3.6 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.57652E7 2.2 1.7 96 98300 0 0 258 0 0 0 0 0 0 0 270 3.1 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.57688E7 2.2 1.7 96 98300 0 0 258 0 0 0 0 0 0 0 270 4.1 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.57724E7 2.2 1.7 96 98400 6 150 263 1 3 0 0 0 0 0 270 3.6 1 1 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.5776E7 4.4 2.2 86 98500 166 1385 267 58 272 25 6694 0 2890 931 270 3.1 0 0 48.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.57796E7 8.3 2.8 68 98600 429 1385 283 261 745 28 28444 69168 4487 818 300 3.6 0 0 48.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.57832E7 12.2 4.4 59 98700 654 1385 300 450 860 41 48871 85326 6279 1170 300 6.2 1 0 48.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.57868E7 13.9 4.4 53 98700 824 1385 308 599 920 48 64855 93111 7110 1426 290 6.7 1 0 48.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.57904E7 16.1 3.9 44 98600 925 1385 317 688 936 59 74011 95214 8497 1775 270 7.2 1 0 48.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.5794E7 16.7 3.9 43 98500 953 1385 336 582 625 150 70425 42568 18227 7443 290 7.7 7 4 48.3 7320 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.57976E7 18.3 3.3 37 98400 904 1385 342 657 595 266 75492 49799 30736 11384 260 6.7 7 4 48.3 6710 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.58012E7 18.9 2.8 34 98400 782 1385 347 509 636 148 60048 44015 17533 6796 280 5.7 7 5 48.3 7620 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.58048E7 17.8 3.3 38 98300 596 1385 343 349 491 136 40040 32526 15667 5602 300 5.2 7 5 48.3 7620 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.58084E7 17.8 3.3 38 98300 357 1385 343 147 189 98 16348 9096 10940 3442 280 5.2 8 5 48.3 7620 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.5812E7 14.4 5.0 53 98400 92 1142 332 24 0 24 2322 0 2338 766 260 3.6 8 6 24.1 7620 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.58156E7 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 10 0.0000 0 88 0.000 0.0 1.0 +2.58192E7 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 10 0.0000 0 88 0.000 0.0 1.0 +2.58228E7 11.1 6.1 72 98400 0 0 310 0 0 0 0 0 0 0 320 3.1 3 3 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.58264E7 9.4 6.1 80 98400 0 0 303 0 0 0 0 0 0 0 340 3.6 4 3 16.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.583E7 10.6 6.7 77 98400 0 0 314 0 0 0 0 0 0 0 290 2.1 10 5 12.9 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.58336E7 10.6 7.8 83 98400 0 0 315 0 0 0 0 0 0 0 170 2.1 10 5 12.9 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.58372E7 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 11 0.0000 0 88 0.000 0.0 1.0 +2.58408E7 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 12 0.0000 0 88 0.000 0.0 1.0 +2.58444E7 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 12 0.0000 0 88 0.000 0.0 1.0 +2.5848E7 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 12 0.0000 0 88 0.000 0.0 1.0 +2.58516E7 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 13 0.0000 0 88 0.000 0.0 1.0 +2.58552E7 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 13 0.0000 0 88 0.000 0.0 1.0 +2.58588E7 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 13 0.0000 0 88 0.000 0.0 1.0 +2.58624E7 10.0 7.2 83 98500 162 1385 330 18 0 18 1751 0 1763 700 90 3.6 10 9 24.1 2440 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2.5866E7 12.8 6.7 67 98400 425 1385 335 99 29 90 11269 1405 10280 3503 120 6.7 9 8 19.3 2440 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2.58696E7 14.4 6.1 58 98500 650 1385 342 327 209 228 36311 17170 25454 8297 50 5.2 9 8 19.3 5490 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2.58732E7 15.6 7.2 58 98400 819 1385 344 414 196 298 46387 17381 33590 11444 120 7.2 8 7 40.2 5490 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2.58768E7 16.7 7.8 56 98300 920 1385 343 659 840 98 70307 85635 13744 2251 120 6.2 5 5 48.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2.58804E7 19.4 7.2 45 98200 947 1385 350 708 900 89 75664 91868 12488 2275 120 6.2 3 3 48.3 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.5884E7 20.0 6.7 42 98100 898 1385 352 662 902 73 71092 91878 10443 1956 140 7.2 3 3 48.3 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.58876E7 20.6 5.6 38 98000 777 1385 353 533 734 119 63820 46793 14301 5648 130 7.7 6 3 48.3 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.58912E7 20.6 6.1 39 98000 590 1385 392 226 33 212 24952 2639 23529 7452 160 7.7 10 10 48.3 2740 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.58948E7 19.4 4.4 37 98000 352 1385 372 72 0 72 7130 0 7185 2745 160 5.7 10 9 48.3 2740 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.58984E7 18.3 5.0 42 98100 88 1120 368 10 0 10 967 0 974 377 140 3.6 10 9 24.1 2740 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.5902E7 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 14 0.0000 0 88 0.000 0.0 1.0 +2.59056E7 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 15 0.0000 0 88 0.000 0.0 1.0 +2.59092E7 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 16 0.0000 0 88 0.000 0.0 1.0 +2.59128E7 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 18 0.0000 0 88 0.000 0.0 1.0 +2.59164E7 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 19 0.0000 0 88 0.000 3.3 1.0 +2.592E7 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 20 0.0000 0 88 0.000 0.8 1.0 +2.59236E7 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 22 0.0000 0 88 0.000 9.1 1.0 +2.59272E7 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 23 0.0000 0 88 0.000 4.8 1.0 +2.59308E7 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 24 0.0000 0 88 0.000 0.8 1.0 +2.59344E7 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 25 0.0000 0 88 0.000 0.0 1.0 +2.5938E7 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 27 0.0000 0 88 0.000 0.0 1.0 +2.59416E7 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 28 0.0000 0 88 0.000 0.0 1.0 +2.59452E7 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 29 0.0000 0 88 0.000 0.0 1.0 +2.59488E7 12.2 12.2 100 97800 157 1386 356 8 0 8 775 0 781 331 120 2.1 10 10 2.4 210 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +2.59524E7 13.3 13.3 100 97900 420 1386 363 38 0 38 3764 0 3794 1684 170 3.1 10 10 3.2 240 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.5956E7 13.9 13.9 100 97900 645 1386 366 72 0 72 7264 0 7327 3400 150 2.6 10 10 4.8 180 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.59596E7 14.4 14.4 100 97800 813 1386 370 97 0 97 9920 0 10010 4803 190 3.6 10 10 4.8 150 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.59632E7 15.0 15.0 100 97800 915 1386 373 114 0 114 11749 0 11860 5774 220 4.1 10 10 4.8 90 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.59668E7 15.6 15.6 100 97800 942 1386 377 135 0 135 13937 0 14070 6767 240 3.1 10 10 4.8 150 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.59704E7 16.7 16.1 97 97700 893 1386 384 143 39 118 17351 2218 14371 5905 270 3.6 10 10 8.0 210 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +2.5974E7 17.2 17.2 100 97800 771 1386 388 137 56 106 16422 3021 12751 5098 260 5.2 10 10 9.7 210 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +2.59776E7 17.2 17.2 100 97800 585 1386 388 71 0 71 7108 0 7169 3254 270 6.2 10 10 9.7 210 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +2.59812E7 17.2 17.2 100 97800 347 1386 388 32 0 32 3140 0 3165 1377 270 3.6 10 10 9.7 180 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +2.59848E7 16.7 16.7 100 97900 84 1097 384 4 0 4 384 0 386 161 260 4.1 10 10 3.2 90 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +2.59884E7 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 26 0.0000 0 88 0.000 0.0 1.0 +2.5992E7 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 25 0.0000 0 88 0.000 0.0 1.0 +2.59956E7 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 25 0.0000 0 88 0.000 0.0 1.0 +2.59992E7 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 25 0.0000 0 88 0.000 0.0 1.0 +2.60028E7 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 24 0.0000 0 88 0.000 0.0 1.0 +2.60064E7 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 23 0.0000 0 88 0.000 0.0 1.0 +2.601E7 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 23 0.0000 0 88 0.000 0.0 1.0 +2.60136E7 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 23 0.0000 0 88 0.000 0.0 1.0 +2.60172E7 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 22 0.0000 0 88 0.000 0.0 1.0 +2.60208E7 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 22 0.0000 0 88 0.000 0.0 1.0 +2.60244E7 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 21 0.0000 0 88 0.000 0.0 1.0 +2.6028E7 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 20 0.0000 0 88 0.000 0.0 1.0 +2.60316E7 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 20 0.0000 0 88 0.000 0.0 1.0 +2.60352E7 12.2 12.2 100 98200 153 1387 356 12 1 12 1450 0 1450 482 340 5.7 10 10 4.0 90 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.60388E7 12.2 11.7 96 98300 416 1387 355 49 0 49 4858 0 4896 2107 300 4.1 10 10 6.4 120 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.60424E7 12.8 11.7 93 98300 640 1387 348 134 0 134 13536 0 13652 5717 320 3.6 10 9 6.4 240 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.6046E7 13.9 11.7 87 98300 808 1387 354 198 0 198 20280 0 20463 8648 320 4.1 10 9 6.4 1520 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.60496E7 13.9 11.1 83 98300 910 1387 363 272 1 271 31116 80 31180 11555 290 3.1 10 10 9.7 1070 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +2.60532E7 15.0 11.1 78 98200 937 1387 369 167 0 167 17291 0 17454 8091 310 4.1 10 10 8.0 1070 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +2.60568E7 13.9 10.6 80 98100 888 1387 363 166 0 166 17126 0 17284 7877 310 4.1 10 10 11.3 980 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +2.60604E7 13.3 10.6 83 98100 766 1387 359 110 0 110 11237 0 11337 5249 330 3.6 10 10 12.9 980 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.6064E7 12.2 10.0 86 98200 580 1387 353 78 0 78 7850 0 7916 3521 340 4.1 10 10 12.9 980 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +2.60676E7 11.1 9.4 90 98300 342 1387 347 29 0 29 2862 0 2884 1255 320 4.1 10 10 9.7 980 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +2.60712E7 10.0 9.4 96 98300 81 1075 342 4 0 4 386 0 388 160 310 2.6 10 10 6.4 980 9 999999999 31 0.0000 0 88 0.000 0.8 1.0 +2.60748E7 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 32 0.0000 0 88 0.000 1.3 1.0 +2.60784E7 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 33 0.0000 0 88 0.000 1.3 1.0 +2.6082E7 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 33 0.0000 0 88 0.000 1.3 1.0 +2.60856E7 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 34 0.0000 0 88 0.000 0.5 1.0 +2.60892E7 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 34 0.0000 0 88 0.000 0.3 1.0 +2.60928E7 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 35 0.0000 0 88 0.000 0.3 1.0 +2.60964E7 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 35 0.0000 0 88 0.000 0.0 1.0 +2.61E7 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 36 0.0000 0 88 0.000 0.3 1.0 +2.61036E7 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 37 0.0000 0 88 0.000 0.3 1.0 +2.61072E7 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 37 0.0000 0 88 0.000 0.5 1.0 +2.61108E7 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 38 0.0000 0 88 0.000 0.8 1.0 +2.61144E7 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 38 0.0000 0 88 0.000 3.0 1.0 +2.6118E7 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 39 0.0000 0 88 0.000 2.0 1.0 +2.61216E7 8.9 8.9 100 98500 149 1388 336 4 0 4 388 0 391 169 340 2.6 10 10 3.2 60 9 999999999 37 0.0000 0 88 0.000 0.3 1.0 +2.61252E7 10.0 10.0 100 98500 411 1388 343 12 0 12 1191 0 1200 563 30 2.1 10 10 3.2 60 9 999999999 36 0.0000 0 88 0.000 0.3 1.0 +2.61288E7 11.1 11.1 100 98500 635 1388 349 51 0 51 5152 0 5196 2472 70 4.1 10 10 3.2 90 9 999999999 34 0.0000 0 88 0.000 0.0 1.0 +2.61324E7 11.7 11.7 100 98500 803 1388 353 53 0 53 5426 0 5475 2745 60 3.1 10 10 8.0 120 9 999999999 33 0.0000 0 88 0.000 0.3 1.0 +2.6136E7 12.2 11.1 93 98500 904 1388 355 58 0 58 5989 0 6045 3090 90 6.7 10 10 8.0 120 9 999999999 31 0.0000 0 88 0.000 0.3 1.0 +2.61396E7 12.2 11.1 93 98400 931 1388 355 70 0 70 7244 0 7312 3717 60 3.6 10 10 8.0 150 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +2.61432E7 11.7 11.1 96 98400 882 1388 352 59 0 59 6082 0 6138 3119 70 3.6 10 10 8.0 150 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.61468E7 11.7 11.1 96 98400 760 1388 352 232 1 231 26218 78 26245 9312 70 4.1 10 10 9.7 180 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +2.61504E7 11.1 11.1 100 98400 574 1388 349 186 0 185 18697 0 18752 6757 50 4.1 10 10 8.0 150 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +2.6154E7 11.1 11.1 100 98500 337 1388 349 8 0 8 788 0 794 367 50 3.6 10 10 8.0 120 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.61576E7 10.6 10.6 100 98500 77 1052 346 17 0 17 1637 0 1648 562 50 3.6 10 10 3.2 120 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.61612E7 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 20 0.0000 0 88 0.000 0.0 1.0 +2.61648E7 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 19 0.0000 0 88 0.000 0.0 1.0 +2.61684E7 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 18 0.0000 0 88 0.000 0.0 1.0 +2.6172E7 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 18 0.0000 0 88 0.000 0.0 1.0 +2.61756E7 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 17 0.0000 0 88 0.000 0.0 1.0 +2.61792E7 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 16 0.0000 0 88 0.000 0.0 1.0 +2.61828E7 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 15 0.0000 0 88 0.000 0.0 1.0 +2.61864E7 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 14 0.0000 0 88 0.000 0.0 1.0 +2.619E7 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 13 0.0000 0 88 0.000 0.0 1.0 +2.61936E7 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 13 0.0000 0 88 0.000 0.0 1.0 +2.61972E7 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 12 0.0000 0 88 0.000 0.0 1.0 +2.62008E7 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 11 0.0000 0 88 0.000 0.0 1.0 +2.62044E7 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 10 0.0000 0 88 0.000 0.0 1.0 +2.6208E7 7.8 7.8 100 98600 144 1388 321 19 0 19 1845 0 1858 717 360 3.6 10 9 3.2 90 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.62116E7 7.8 7.2 96 98700 406 1388 320 90 0 90 8939 0 9009 3432 350 3.6 9 9 6.4 150 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.62152E7 10.6 7.8 83 98700 630 1388 303 394 514 159 44834 35407 18174 6444 310 3.6 1 1 9.7 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.62188E7 12.8 7.8 72 98600 798 1388 306 565 859 68 60901 87010 9935 1705 320 4.1 0 0 12.9 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.62224E7 14.4 7.2 62 98600 899 1388 313 663 924 61 71639 94287 8818 1764 290 3.6 0 0 12.9 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.6226E7 16.1 6.1 52 98500 926 1388 319 692 942 60 74666 96110 8640 1792 360 4.6 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.62296E7 17.8 5.0 43 98400 877 1388 325 659 955 52 71266 97069 7606 1562 330 5.2 0 0 48.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.62332E7 18.9 3.3 36 98300 755 1388 328 553 928 45 59864 93194 6758 1310 320 4.6 0 0 48.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.62368E7 18.9 -1.1 26 98300 569 1388 323 396 861 40 42679 83394 6196 1102 320 5.7 0 0 48.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.62404E7 17.2 -2.2 27 98300 332 1388 315 201 718 27 21712 62644 4364 744 300 3.6 0 0 48.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.6244E7 12.2 -0.6 42 98300 74 1030 295 31 276 1 3566 15650 186 41 310 4.6 0 0 48.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.62476E7 12.2 -0.6 42 98300 0 0 295 0 0 0 0 0 0 0 310 4.6 0 0 48.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.62512E7 10.6 -0.6 46 98400 0 0 289 0 0 0 0 0 0 0 320 3.6 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.62548E7 9.4 0.0 52 98400 0 0 284 0 0 0 0 0 0 0 310 4.1 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.62584E7 9.5 1.2 52 98400 0 0 286 0 0 0 0 0 0 0 320 4.5 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.6262E7 9.6 2.4 56 98400 0 0 288 0 0 0 0 0 0 0 310 5.0 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.62656E7 9.7 3.6 61 98300 0 0 289 0 0 0 0 0 0 0 300 5.4 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.62692E7 9.7 4.7 83 99100 0 0 290 0 0 0 0 0 0 0 70 5.9 0 0 16.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +2.62728E7 9.8 5.9 89 99100 0 0 292 0 0 0 0 0 0 0 70 6.3 0 0 16.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +2.62764E7 9.9 7.1 93 99100 0 0 294 0 0 0 0 0 0 0 60 6.8 0 0 16.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +2.628E7 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 15 0.0000 0 88 0.000 0.0 1.0 +2.62836E7 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 15 0.0000 0 88 0.000 0.0 1.0 +2.62872E7 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 15 0.0000 0 88 0.000 0.0 1.0 +2.62908E7 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 15 0.0000 0 88 0.000 0.0 1.0 +2.62944E7 9.4 8.9 96 99100 141 1388 338 28 0 28 2716 0 2735 974 70 6.7 10 10 11.3 340 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +2.6298E7 11.1 8.9 86 99200 403 1388 347 127 7 125 13968 391 13808 4248 90 6.2 10 10 16.1 370 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +2.63016E7 12.2 8.9 80 99200 626 1388 352 151 7 148 17255 464 16985 6090 90 7.7 10 10 19.3 400 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +2.63052E7 15.6 9.4 67 99100 794 1388 331 557 751 122 66598 46806 14642 5806 60 5.7 5 2 24.1 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.63088E7 17.8 10.6 63 99100 895 1388 332 663 826 125 80356 51173 15208 6206 70 4.1 4 0 24.1 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.63124E7 20.0 11.1 57 99000 922 1388 354 640 711 163 76310 47205 19522 7871 80 4.6 7 2 24.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.6316E7 20.6 11.1 55 98900 873 1388 363 449 344 230 51717 26081 26633 10048 90 4.6 10 4 32.2 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.63196E7 20.6 11.7 57 98800 751 1388 364 502 464 248 56267 37322 27953 9646 110 5.2 10 4 32.2 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.63232E7 21.1 12.2 57 98800 565 1388 364 340 516 127 38786 30603 14547 5173 90 6.2 9 3 32.2 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.63268E7 20.0 12.8 63 98800 328 1388 386 141 103 116 15237 4854 12592 3590 80 5.2 10 9 32.2 760 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.63304E7 18.9 13.3 70 98800 71 1030 381 28 8 27 2967 0 2871 709 80 5.2 10 9 32.2 640 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.6334E7 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 24 0.0000 0 88 0.000 0.0 1.0 +2.63376E7 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 24 0.0000 0 88 0.000 0.0 1.0 +2.63412E7 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 24 0.0000 0 88 0.000 0.0 1.0 +2.63448E7 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 23 0.0000 0 88 0.000 0.0 1.0 +2.63484E7 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 23 0.0000 0 88 0.000 0.0 1.0 +2.6352E7 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 23 0.0000 0 88 0.000 0.0 1.0 +2.63556E7 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 23 0.0000 0 88 0.000 0.0 1.0 +2.63592E7 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 23 0.0000 0 88 0.000 0.0 1.0 +2.63628E7 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 23 0.0000 0 88 0.000 0.0 1.0 +2.63664E7 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 23 0.0000 0 88 0.000 0.0 1.0 +2.637E7 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 22 0.0000 0 88 0.000 0.0 1.0 +2.63736E7 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 22 0.0000 0 88 0.000 0.0 1.0 +2.63772E7 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 22 0.0000 0 88 0.000 0.0 1.0 +2.63808E7 13.9 12.8 93 98800 137 1389 348 42 20 40 4563 0 4360 1229 80 4.1 8 8 19.3 7620 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.63844E7 15.0 13.3 90 98800 398 1389 348 189 92 163 20244 5885 17549 4791 70 5.2 10 7 19.3 7620 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.6388E7 18.9 14.4 76 98900 621 1389 361 351 482 132 40300 28667 15218 5564 90 5.2 10 5 24.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.63916E7 20.0 14.4 71 98800 789 1389 374 451 351 249 50769 27311 28188 9979 80 4.1 9 7 24.1 7620 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.63952E7 21.1 14.4 66 98800 890 1389 386 417 167 309 46924 13958 34986 12370 130 4.1 10 8 24.1 7620 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.63988E7 23.3 14.4 58 98700 916 1389 397 345 174 229 39940 12619 26654 10272 120 5.2 9 8 24.1 7620 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.64024E7 23.3 13.3 54 98600 867 1389 390 395 216 259 44962 16917 29649 10877 120 6.2 10 7 24.1 7620 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.6406E7 22.8 12.8 53 98500 746 1389 387 371 320 198 42277 23018 22676 8270 80 4.6 10 7 32.2 7620 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.64096E7 22.2 12.2 53 98500 560 1389 389 236 148 175 26199 10241 19522 6413 100 5.2 10 8 32.2 2440 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.64132E7 21.1 12.2 57 98500 324 1389 391 104 62 89 11477 2338 9859 3058 110 4.6 10 9 32.2 7620 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.64168E7 19.4 12.8 66 98500 68 1007 375 16 15 15 1774 0 1667 489 90 3.6 10 8 32.2 7620 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.64204E7 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 18 0.0000 0 88 0.000 0.0 1.0 +2.6424E7 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 18 0.0000 0 88 0.000 0.0 1.0 +2.64276E7 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 19 0.0000 0 88 0.000 0.0 1.0 +2.64312E7 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 19 0.0000 0 88 0.000 0.0 1.0 +2.64348E7 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 19 0.0000 0 88 0.000 0.0 1.0 +2.64384E7 15.0 12.8 87 98600 0 0 338 0 0 0 0 0 0 0 40 2.6 8 4 24.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.6442E7 15.0 12.2 84 98600 0 0 335 0 0 0 0 0 0 0 60 2.1 3 3 24.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.64456E7 15.0 12.8 87 98500 0 0 332 0 0 0 0 0 0 0 60 2.1 3 2 24.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.64492E7 14.4 12.2 87 98500 0 0 329 0 0 0 0 0 0 0 60 2.1 7 2 16.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.64528E7 13.9 12.2 90 98500 0 0 326 0 0 0 0 0 0 0 60 3.1 7 2 16.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.64564E7 13.9 12.2 90 98500 0 0 329 0 0 0 0 0 0 0 40 2.1 7 3 16.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.646E7 13.9 12.2 90 98500 0 0 329 0 0 0 0 0 0 0 50 1.5 5 3 16.1 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.64636E7 13.3 12.2 93 98600 0 12 327 0 0 0 0 0 0 0 60 2.1 8 3 24.1 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.64672E7 13.9 12.2 90 98600 133 1390 329 47 53 42 5073 0 4549 1245 70 2.1 8 3 24.1 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.64708E7 16.1 12.8 81 98700 393 1390 349 178 234 111 19672 11443 12318 3894 100 4.6 9 6 16.1 7620 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.64744E7 20.0 13.9 68 98700 616 1390 374 290 171 213 32003 12862 23632 7660 100 4.1 9 7 19.3 3050 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.6478E7 21.7 13.9 61 98600 784 1390 382 353 186 247 39739 14513 27962 9882 80 5.2 10 7 19.3 2440 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.64816E7 21.7 14.4 64 98600 885 1390 397 279 56 243 31980 4199 28008 10519 100 4.6 10 9 19.3 7620 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.64852E7 21.1 14.4 66 98500 911 1390 405 248 1 247 28513 75 28556 10820 120 5.2 10 10 19.3 2130 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.64888E7 21.7 15.0 66 98500 862 1390 409 252 3 250 28704 228 28637 10577 60 3.1 10 10 24.1 1830 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.64924E7 21.7 15.0 66 98400 741 1390 409 185 10 180 21189 674 20716 7687 70 3.6 10 10 24.1 1830 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.6496E7 21.1 14.4 66 98400 555 1390 405 142 8 139 16021 480 15750 5474 110 6.7 10 10 32.2 850 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.64996E7 21.1 15.0 68 98400 319 1390 395 65 18 60 7382 445 6834 2290 90 4.6 10 9 40.2 1830 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.65032E7 20.0 15.0 73 98400 65 984 400 23 10 22 2455 0 2356 608 80 4.1 10 10 40.2 1680 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.65068E7 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 23 0.0000 0 88 0.000 0.0 1.0 +2.65104E7 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 23 0.0000 0 88 0.000 0.0 1.0 +2.6514E7 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 23 0.0000 0 88 0.000 0.0 1.0 +2.65176E7 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 23 0.0000 0 88 0.000 0.0 1.0 +2.65212E7 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 23 0.0000 0 88 0.000 0.0 1.0 +2.65248E7 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 23 0.0000 0 88 0.000 0.0 1.0 +2.65284E7 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 23 0.0000 0 88 0.000 0.0 1.0 +2.6532E7 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 24 0.0000 0 88 0.000 0.0 1.0 +2.65356E7 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 24 0.0000 0 88 0.000 0.0 1.0 +2.65392E7 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 24 0.0000 0 88 0.000 0.0 1.0 +2.65428E7 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 24 0.0000 0 88 0.000 0.0 1.0 +2.65464E7 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 24 0.0000 0 88 0.000 0.0 1.0 +2.655E7 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 24 0.0000 0 88 0.000 0.0 1.0 +2.65536E7 16.7 15.0 90 98500 128 1379 382 23 1 23 2597 0 2603 814 80 2.6 10 10 24.1 850 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.65572E7 16.1 15.0 93 98600 388 1391 379 43 2 43 5112 53 5121 1840 130 2.1 10 10 24.1 3050 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +2.65608E7 16.7 16.1 97 98600 611 1391 384 182 8 178 20327 534 19979 6829 330 1.5 10 10 19.3 3050 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +2.65644E7 16.7 16.7 100 98700 779 1391 384 123 3 121 14607 170 14425 5718 290 1.5 10 10 16.1 3050 9 999999999 25 0.0000 0 88 0.000 0.3 1.0 +2.6568E7 17.2 15.6 90 98600 879 1391 386 164 8 159 19401 503 18894 7556 310 3.1 10 10 11.3 1010 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +2.65716E7 16.7 16.1 97 98500 906 1391 384 159 0 158 16354 0 16404 7611 350 1.5 10 10 11.3 1010 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +2.65752E7 17.8 17.2 97 98400 857 1391 391 294 3 292 32978 239 32954 11649 320 3.6 10 10 19.3 1070 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +2.65788E7 18.3 16.7 90 98400 736 1391 393 262 2 261 29047 158 29105 9786 360 2.1 10 10 40.2 1160 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +2.65824E7 21.1 16.7 76 98300 551 1391 389 202 72 173 22317 4685 19209 6292 40 3.1 9 8 19.3 3050 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +2.6586E7 21.7 16.1 71 98300 314 1391 381 126 95 104 13641 3730 11308 3295 120 3.1 8 6 24.1 3050 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +2.65896E7 19.4 15.6 78 98300 62 962 359 33 33 29 3420 0 3019 644 90 4.1 7 3 24.1 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +2.65932E7 18.3 15.6 84 98300 0 0 354 0 0 0 0 0 0 0 60 2.6 6 3 24.1 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +2.65968E7 18.3 15.6 84 98300 0 0 351 0 0 0 0 0 0 0 70 2.6 6 2 19.3 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +2.66004E7 17.8 15.6 87 98300 0 0 343 0 0 0 0 0 0 0 70 2.1 5 1 19.3 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.6604E7 17.2 15.6 90 98300 0 0 345 0 0 0 0 0 0 0 70 2.6 5 2 19.3 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.66076E7 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 28 0.0000 0 88 0.000 0.0 1.0 +2.66112E7 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 29 0.0000 0 88 0.000 0.0 1.0 +2.66148E7 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 29 0.0000 0 88 0.000 0.0 1.0 +2.66184E7 15.6 13.9 90 98300 0 0 339 0 0 0 0 0 0 0 130 2.6 7 3 16.1 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +2.6622E7 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 30 0.0000 0 88 0.000 0.0 1.0 +2.66256E7 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 30 0.0000 0 88 0.000 0.0 1.0 +2.66292E7 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 30 0.0000 0 88 0.000 0.0 1.0 +2.66328E7 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 31 0.0000 0 88 0.000 0.0 1.0 +2.66364E7 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 31 0.0000 0 88 0.000 0.0 1.0 +2.664E7 14.4 13.3 93 98200 124 1356 341 43 46 39 4640 0 4223 1157 50 2.1 7 6 16.1 3050 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +2.66436E7 16.1 15.0 93 98300 384 1391 369 100 25 92 11175 1023 10320 3389 40 2.1 10 9 12.9 2740 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +2.66472E7 17.2 15.6 90 98200 606 1391 375 124 49 102 14472 2570 11947 4478 50 2.1 10 9 9.7 2740 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +2.66508E7 18.9 16.7 87 98200 774 1391 385 331 92 279 36738 7425 31153 10530 0 0.0 10 9 9.7 2740 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +2.66544E7 20.6 17.2 81 98200 874 1391 381 490 292 305 54916 23666 34395 12113 120 1.5 8 7 11.3 2740 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +2.6658E7 22.2 16.1 68 98000 901 1391 383 559 463 256 63886 34677 29424 11020 230 2.6 7 6 12.9 2740 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.66616E7 23.3 16.1 64 97900 852 1391 383 582 646 181 67835 42387 21198 8272 290 2.1 5 4 24.1 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.66652E7 23.9 15.6 60 97900 731 1391 385 400 442 165 46024 28542 19073 7147 340 1.5 4 4 24.1 2000 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.66688E7 24.4 14.4 54 97800 546 1391 386 313 414 148 35055 25555 16651 5660 350 2.1 5 4 19.3 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +2.66724E7 22.2 15.0 64 97800 310 1391 376 157 309 87 17243 10388 9592 2944 340 3.1 4 4 24.1 2000 9 999999999 27 0.0000 0 88 0.000 0.8 1.0 +2.6676E7 18.9 16.7 87 97800 60 939 361 30 11 28 3101 0 2907 612 330 2.1 5 4 24.1 2000 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +2.66796E7 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 26 0.0000 0 88 0.000 0.0 1.0 +2.66832E7 16.7 16.7 100 97900 0 0 347 0 0 0 0 0 0 0 270 3.6 3 3 19.3 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +2.66868E7 16.7 16.7 100 97800 0 0 339 0 0 0 0 0 0 0 300 3.1 1 1 16.1 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.66904E7 15.6 15.6 100 97900 0 0 327 0 0 0 0 0 0 0 290 3.6 0 0 16.1 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.6694E7 15.0 15.0 100 97800 0 0 324 0 0 0 0 0 0 0 290 4.1 0 0 12.9 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.66976E7 13.3 13.3 100 97800 0 0 314 0 0 0 0 0 0 0 280 3.1 0 0 12.9 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.67012E7 13.3 13.3 100 97800 0 0 314 0 0 0 0 0 0 0 300 4.1 0 0 11.3 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.67048E7 12.8 12.2 96 97800 0 0 311 0 0 0 0 0 0 0 310 4.1 0 0 11.3 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.67084E7 12.2 11.7 96 97800 0 0 308 0 0 0 0 0 0 0 310 4.1 0 0 11.3 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +2.6712E7 11.1 10.0 93 97800 0 0 301 0 0 0 0 0 0 0 300 4.1 0 0 11.3 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +2.67156E7 10.0 8.9 93 97800 0 0 296 0 0 0 0 0 0 0 310 4.1 0 0 11.3 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +2.67192E7 9.4 8.3 93 97800 0 0 293 0 0 0 0 0 0 0 300 4.1 0 0 11.3 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.67228E7 8.9 7.8 93 97800 0 0 290 0 0 0 0 0 0 0 300 4.1 0 0 11.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2.67264E7 10.0 8.9 93 97800 120 1334 296 48 178 30 5294 0 3318 969 300 5.2 0 0 12.9 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.673E7 12.2 10.0 86 97900 379 1392 306 216 556 62 24965 19424 7185 2493 300 4.1 0 0 12.9 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.67336E7 14.4 11.1 81 97800 601 1392 317 402 721 86 47639 37935 10223 3867 310 5.7 0 0 19.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.67372E7 17.2 10.0 63 97800 769 1392 334 499 689 114 59684 41810 13684 5405 320 8.2 1 1 19.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.67408E7 17.8 8.9 56 97800 869 1392 330 644 841 113 78378 51628 13802 5616 320 10.3 0 0 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.67444E7 18.9 8.3 51 97700 896 1392 334 660 837 115 80573 51860 14090 5766 310 7.2 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.6748E7 20.6 3.3 32 97600 847 1392 336 626 837 111 76201 53280 13559 5480 300 9.8 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.67516E7 20.6 0.6 26 97600 726 1392 333 519 796 99 62526 49429 11965 4686 330 8.2 0 0 32.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.67552E7 20.6 0.6 26 97500 541 1392 333 358 704 80 42333 38120 9487 3502 310 8.2 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.67588E7 18.9 0.0 28 97500 306 1392 325 166 497 54 19063 14251 6217 2074 320 7.7 0 0 48.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.67624E7 16.7 -2.8 26 97600 57 916 312 30 82 21 3197 0 2245 544 320 8.8 0 0 48.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.6766E7 14.4 -1.7 33 97600 0 0 303 0 0 0 0 0 0 0 300 6.7 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.67696E7 12.8 -1.1 39 97700 0 0 297 0 0 0 0 0 0 0 300 7.2 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.67732E7 12.2 -1.1 40 97700 0 0 295 0 0 0 0 0 0 0 310 6.2 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.67768E7 11.1 -0.6 45 97700 0 0 291 0 0 0 0 0 0 0 310 5.7 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.67804E7 10.6 -1.1 45 97800 0 0 288 0 0 0 0 0 0 0 310 6.2 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.6784E7 9.4 -1.7 46 97800 0 0 283 0 0 0 0 0 0 0 310 7.2 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.67876E7 8.9 -1.7 48 97800 0 0 281 0 0 0 0 0 0 0 320 8.2 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.67912E7 8.3 -2.2 48 97800 0 0 278 0 0 0 0 0 0 0 320 10.8 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.67948E7 7.8 -2.2 50 97800 0 0 276 0 0 0 0 0 0 0 310 8.2 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.67984E7 7.2 -2.2 51 97800 0 0 273 0 0 0 0 0 0 0 310 9.3 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.6802E7 6.7 -2.2 53 97800 0 0 272 0 0 0 0 0 0 0 300 8.2 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.68056E7 6.1 -1.7 58 97900 0 0 270 0 0 0 0 0 0 0 300 6.2 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.68092E7 5.6 -2.2 58 97900 0 0 267 0 0 0 0 0 0 0 300 7.7 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.68128E7 6.1 -1.1 60 98000 116 1311 270 46 143 31 5063 0 3421 977 300 9.3 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.68164E7 8.9 0.0 54 98000 374 1393 282 211 523 68 24269 21244 7844 2672 320 7.7 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.682E7 11.7 -1.1 41 98000 597 1393 293 400 702 96 47168 41912 11357 4230 340 6.2 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.68236E7 13.9 -1.1 36 98100 764 1393 302 552 788 115 66180 51536 13836 5430 310 7.7 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.68272E7 16.1 -1.1 31 98100 864 1393 311 646 829 126 78175 55646 15305 6161 300 4.1 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.68308E7 17.8 -2.2 26 98000 891 1393 317 670 836 129 81292 56636 15711 6361 310 6.2 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.68344E7 18.3 -3.3 23 97900 842 1393 318 627 822 124 75750 55431 15036 6019 310 6.2 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.6838E7 18.9 -3.3 22 97900 722 1393 321 515 770 111 61505 50085 13302 5155 320 7.2 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.68416E7 18.3 -3.9 22 97900 537 1393 317 349 665 89 40929 37970 10470 3816 310 5.7 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.68452E7 16.7 -3.3 25 97900 302 1393 311 157 443 59 17891 13680 6742 2211 320 6.2 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.68488E7 13.3 -3.3 32 98000 55 894 297 29 59 22 3064 0 2333 534 310 4.6 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.68524E7 11.7 -3.3 35 98000 0 0 290 0 0 0 0 0 0 0 330 3.1 0 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.6856E7 10.0 -2.8 41 98100 0 0 284 0 0 0 0 0 0 0 330 3.1 0 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.68596E7 9.4 -2.2 44 98100 0 0 282 0 0 0 0 0 0 0 310 3.1 0 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.68632E7 8.3 -1.7 50 98100 0 0 278 0 0 0 0 0 0 0 310 2.6 0 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.68668E7 8.3 -1.7 50 98100 0 0 278 0 0 0 0 0 0 0 310 3.1 0 0 32.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.68704E7 5.6 -1.1 63 98100 0 0 268 0 0 0 0 0 0 0 280 2.6 0 0 32.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.6874E7 5.6 -1.1 63 98100 0 0 268 0 0 0 0 0 0 0 290 3.6 0 0 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.68776E7 5.6 -1.1 63 98100 0 0 268 0 0 0 0 0 0 0 300 2.6 0 0 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.68812E7 5.0 -1.7 62 98100 0 0 265 0 0 0 0 0 0 0 300 3.6 0 0 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.68848E7 5.0 -1.7 62 98100 0 0 265 0 0 0 0 0 0 0 310 3.6 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.68884E7 3.3 -2.8 65 98200 0 0 258 0 0 0 0 0 0 0 310 2.1 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.6892E7 4.4 -2.2 62 98200 0 0 263 0 0 0 0 0 0 0 310 2.1 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.68956E7 4.4 -2.2 62 98300 0 0 263 0 0 0 0 0 0 0 310 3.1 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.68992E7 4.4 -1.1 68 98400 112 1289 264 48 201 27 5327 0 3004 879 320 2.6 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.69028E7 9.4 -0.6 50 98400 370 1393 284 217 598 56 25315 21873 6549 2272 50 2.6 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.69064E7 11.7 -0.6 43 98500 592 1393 293 405 762 78 48473 42561 9361 3534 80 2.6 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.691E7 15.0 -0.6 35 98500 759 1393 307 556 840 94 67618 52058 11467 4546 130 2.1 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.69136E7 17.8 -0.6 29 98400 859 1393 319 649 876 103 79660 55922 12684 5151 160 2.1 0 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.69172E7 19.4 -1.7 24 98400 886 1393 325 670 880 105 82479 56708 12969 5296 110 2.6 0 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.69208E7 20.6 -2.8 21 98300 837 1393 329 627 866 101 76857 55495 12420 5018 120 2.1 0 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.69244E7 21.7 -2.8 19 98300 717 1393 334 517 819 90 62676 50316 10943 4289 240 1.5 0 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.6928E7 21.7 -3.3 19 98300 533 1393 333 354 724 73 42111 38564 8707 3219 160 3.1 0 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.69316E7 21.1 -2.2 21 98300 298 1393 332 163 517 50 18791 13755 5778 1932 130 3.1 0 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.69352E7 19.4 -2.8 22 98300 52 894 324 30 95 20 3181 0 2128 499 130 3.1 0 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.69388E7 16.7 -1.7 29 98400 0 0 313 0 0 0 0 0 0 0 120 2.1 0 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.69424E7 16.1 -1.7 30 98400 0 0 310 0 0 0 0 0 0 0 130 4.1 1 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.6946E7 15.0 -1.7 32 98500 0 0 312 0 0 0 0 0 0 0 150 3.1 4 1 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.69496E7 13.9 -1.1 36 98500 0 0 302 0 0 0 0 0 0 0 130 3.1 2 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.69532E7 12.2 -0.6 42 98500 0 0 295 0 0 0 0 0 0 0 0 0.0 2 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.69568E7 11.1 0.0 47 98500 0 0 291 0 0 0 0 0 0 0 0 0.0 0 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.69604E7 10.0 0.6 52 98500 0 0 287 0 0 0 0 0 0 0 120 2.1 2 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.6964E7 8.3 0.6 58 98500 0 0 286 0 0 0 0 0 0 0 70 2.1 4 1 40.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.69676E7 7.8 0.0 58 98500 0 0 283 0 0 0 0 0 0 0 0 0.0 4 1 40.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.69712E7 7.2 -0.6 58 98500 0 0 284 0 0 0 0 0 0 0 0 0.0 5 2 40.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.69748E7 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 10 0.0000 0 88 0.000 0.0 1.0 +2.69784E7 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 10 0.0000 0 88 0.000 0.0 1.0 +2.6982E7 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 10 0.0000 0 88 0.000 0.0 1.0 +2.69856E7 8.3 0.6 58 98600 108 1266 308 29 31 26 3217 0 2892 845 70 2.1 9 8 32.2 1520 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.69892E7 8.9 1.7 61 98700 365 1394 328 88 7 86 9900 314 9708 3153 90 2.6 10 10 32.2 1520 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.69928E7 10.6 2.8 59 98600 587 1394 328 166 59 141 18929 3965 16145 5673 60 2.6 10 9 32.2 1520 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.69964E7 13.3 3.9 53 98700 754 1394 335 303 213 187 34861 15967 21617 7958 0 0.0 9 8 32.2 3660 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.7E7 15.6 5.0 50 98600 854 1394 341 506 490 202 58832 37023 23602 9001 120 1.0 8 7 19.3 3660 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2.70036E7 17.2 5.6 46 98600 881 1394 363 304 53 270 34684 4454 30981 11261 180 2.6 9 9 19.3 4570 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.70072E7 19.4 6.1 42 98500 833 1394 375 302 105 239 34512 8463 27460 10025 230 2.1 9 9 32.2 4570 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.70108E7 20.0 5.6 39 98400 712 1394 377 244 81 203 27667 6257 23134 8170 240 3.6 9 9 32.2 4270 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +2.70144E7 20.0 6.1 41 98400 528 1394 378 241 149 184 26522 11104 20351 6322 230 3.6 10 9 40.2 3960 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +2.7018E7 20.6 6.1 39 98400 294 1394 373 121 130 93 13206 5200 10191 2966 260 1.5 10 8 40.2 2440 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +2.70216E7 18.9 6.1 43 98400 50 871 364 14 10 13 1529 0 1423 391 0 0.0 8 8 19.3 2440 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +2.70252E7 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 17 0.0000 0 88 0.000 0.0 1.0 +2.70288E7 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 17 0.0000 0 88 0.000 0.0 1.0 +2.70324E7 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 17 0.0000 0 88 0.000 0.0 1.0 +2.7036E7 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 18 0.0000 0 88 0.000 0.0 1.0 +2.70396E7 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 18 0.0000 0 88 0.000 0.0 1.0 +2.70432E7 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 18 0.0000 0 88 0.000 0.0 1.0 +2.70468E7 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 18 0.0000 0 88 0.000 0.0 1.0 +2.70504E7 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 18 0.0000 0 88 0.000 0.0 1.0 +2.7054E7 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 18 0.0000 0 88 0.000 0.0 1.0 +2.70576E7 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 19 0.0000 0 88 0.000 0.0 1.0 +2.70612E7 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 19 0.0000 0 88 0.000 0.0 1.0 +2.70648E7 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 19 0.0000 0 88 0.000 0.0 1.0 +2.70684E7 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 19 0.0000 0 88 0.000 0.0 1.0 +2.7072E7 11.7 8.3 80 98500 104 1244 339 24 5 24 2664 0 2670 789 50 2.1 10 9 9.7 1830 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.70756E7 12.8 8.9 77 98500 360 1395 345 125 26 118 13640 1346 12932 3823 50 3.6 10 9 8.0 3660 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.70792E7 13.3 8.9 75 98500 582 1395 357 122 23 113 14109 1351 13117 4775 70 3.1 10 10 8.0 1830 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.70828E7 15.0 8.9 67 98500 749 1395 366 185 8 181 21275 574 20914 7740 70 3.6 10 10 9.7 3660 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.70864E7 16.1 8.9 63 98400 849 1395 372 221 14 212 25532 1052 24617 9301 80 2.6 10 10 11.3 3660 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.709E7 16.7 8.9 60 98400 876 1395 364 345 62 306 38875 5418 34689 12135 50 3.6 9 9 14.5 6100 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.70936E7 17.8 8.3 54 98300 828 1395 369 349 62 311 38968 5573 34938 11751 50 3.1 10 9 24.1 7010 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.70972E7 18.9 7.2 47 98200 708 1395 366 387 148 311 42300 13989 34204 10284 50 5.7 9 8 24.1 7010 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.71008E7 18.3 5.0 42 98300 524 1395 368 187 46 169 20713 3296 18809 5992 60 4.6 10 9 24.1 7010 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.71044E7 17.2 5.0 45 98300 290 1395 362 107 49 97 11625 2045 10583 3007 30 3.1 10 9 24.1 6100 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +2.7108E7 15.6 5.6 52 98300 48 848 355 10 3 10 1111 0 1114 321 50 2.1 10 9 24.1 6100 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +2.71116E7 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 17 0.0000 0 88 0.000 0.0 1.0 +2.71152E7 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 16 0.0000 0 88 0.000 0.0 1.0 +2.71188E7 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 16 0.0000 0 88 0.000 0.0 1.0 +2.71224E7 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 15 0.0000 0 88 0.000 0.0 1.0 +2.7126E7 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 15 0.0000 0 88 0.000 0.0 1.0 +2.71296E7 11.7 7.8 77 98400 0 0 317 0 0 0 0 0 0 0 50 3.6 9 4 19.3 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.71332E7 11.1 7.2 77 98400 0 0 309 0 0 0 0 0 0 0 20 4.6 6 2 19.3 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.71368E7 10.0 7.2 83 98300 0 0 300 0 0 0 0 0 0 0 30 4.6 4 1 19.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2.71404E7 9.4 6.7 83 98300 0 0 301 0 0 0 0 0 0 0 20 4.1 2 2 19.3 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.7144E7 8.3 6.1 86 98300 0 0 286 0 0 0 0 0 0 0 360 2.6 0 0 12.9 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.71476E7 7.8 6.7 93 98300 0 0 285 0 0 0 0 0 0 0 340 3.1 0 0 11.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.71512E7 6.1 5.6 96 98300 0 0 277 0 0 0 0 0 0 0 320 1.5 0 0 11.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.71548E7 6.7 5.6 93 98400 0 0 279 0 0 0 0 0 0 0 290 1.5 0 0 8.0 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.71584E7 6.1 5.0 93 98400 100 1221 276 53 301 21 5936 0 2357 707 270 1.5 0 0 9.7 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.7162E7 8.9 6.1 83 98400 355 1395 288 221 702 39 23896 62538 6191 879 320 2.6 0 0 8.0 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.71656E7 13.3 6.7 64 98400 577 1395 307 403 835 54 43521 81563 8245 1273 320 3.6 0 0 9.7 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.71692E7 16.7 6.1 50 98400 744 1395 322 549 899 65 59044 90252 9603 1584 330 4.1 0 0 16.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.71728E7 19.4 5.6 40 98300 844 1395 333 642 933 72 68827 94465 10413 1819 10 4.6 0 0 20.9 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.71764E7 21.1 3.3 31 98200 871 1395 338 668 942 73 71339 95260 10498 1882 300 5.2 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.718E7 21.1 3.3 31 98100 823 1395 338 629 937 70 67243 94425 10168 1760 330 5.2 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.71836E7 21.1 3.9 32 98100 704 1395 339 523 902 63 56079 89807 9373 1511 320 4.6 0 0 32.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.71872E7 21.7 2.2 28 98100 520 1395 340 360 818 50 38648 78180 7710 1174 320 4.1 0 0 32.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.71908E7 19.4 2.2 32 98100 286 1395 329 169 638 35 19932 11222 4135 1416 310 5.2 0 0 32.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.71944E7 16.7 2.8 40 98100 46 849 318 33 162 16 3514 0 1709 416 310 4.6 0 0 32.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.7198E7 14.4 2.2 44 98100 0 0 307 0 0 0 0 0 0 0 310 5.2 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.72016E7 13.3 3.3 51 98100 0 0 304 0 0 0 0 0 0 0 320 6.2 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.72052E7 12.2 3.9 57 98200 0 0 300 0 0 0 0 0 0 0 320 4.6 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.72088E7 11.1 3.9 61 98200 0 0 295 0 0 0 0 0 0 0 310 4.1 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.72124E7 8.9 3.9 71 98200 0 0 286 0 0 0 0 0 0 0 320 4.1 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.7216E7 7.8 3.3 74 98200 0 0 281 0 0 0 0 0 0 0 320 2.6 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.72196E7 6.7 2.8 76 98200 0 0 276 0 0 0 0 0 0 0 320 3.1 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.72232E7 6.7 2.8 76 98200 0 0 276 0 0 0 0 0 0 0 330 3.1 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.72268E7 6.1 2.8 79 98200 0 0 274 0 0 0 0 0 0 0 360 2.6 0 0 19.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.72304E7 7.2 2.8 74 98200 0 0 278 0 0 0 0 0 0 0 20 2.6 0 0 19.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.7234E7 7.8 1.7 66 98200 0 0 280 0 0 0 0 0 0 0 80 2.6 0 0 16.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.72376E7 7.2 1.1 65 98200 0 0 277 0 0 0 0 0 0 0 60 2.6 0 0 16.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.72412E7 7.2 0.6 63 98300 0 0 276 0 0 0 0 0 0 0 60 2.1 0 0 19.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.72448E7 8.3 0.6 58 98400 96 1198 281 39 108 28 4257 0 3065 847 100 1.5 0 0 19.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.72484E7 10.0 1.1 54 98500 351 1396 288 191 492 65 21888 18208 7470 2515 70 6.2 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.7252E7 11.7 1.1 49 98500 572 1396 295 374 679 93 43957 39188 10965 4049 100 6.7 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.72556E7 13.9 1.7 44 98500 739 1396 305 525 772 113 62697 49470 13542 5275 110 4.6 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.72592E7 16.7 2.2 38 98500 839 1396 317 620 817 124 74738 53811 15003 6004 90 3.1 0 0 32.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.72628E7 17.8 2.2 35 98400 867 1396 322 645 826 127 77945 54717 15405 6204 80 3.6 0 0 32.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.72664E7 18.9 2.8 34 98300 819 1396 328 601 809 122 72290 52881 14729 5865 90 2.1 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.727E7 20.0 2.2 31 98300 699 1396 332 491 755 108 58431 47361 12897 4969 10 2.1 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.72736E7 19.4 2.2 32 98300 516 1396 329 330 649 86 38557 34920 10079 3648 40 3.1 0 0 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.72772E7 17.8 2.8 37 98300 283 1396 323 143 417 57 16203 10720 6477 2099 90 2.1 0 0 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.72808E7 15.0 2.8 44 98300 44 826 317 19 38 15 2026 0 1605 393 80 3.1 1 1 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.72844E7 13.9 2.8 47 98300 0 0 312 0 0 0 0 0 0 0 90 3.1 1 1 19.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.7288E7 12.8 2.8 51 98400 0 0 301 0 0 0 0 0 0 0 90 3.1 0 0 19.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.72916E7 11.1 2.2 55 98400 0 0 294 0 0 0 0 0 0 0 90 4.1 0 0 19.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.72952E7 10.6 0.6 50 98500 0 0 290 0 0 0 0 0 0 0 90 3.1 0 0 19.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.72988E7 8.9 0.0 54 98500 0 0 282 0 0 0 0 0 0 0 80 3.6 2 0 19.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.73024E7 8.3 -1.1 52 98500 0 0 279 0 0 0 0 0 0 0 70 2.1 2 0 19.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.7306E7 7.8 -2.2 50 98500 0 0 276 0 0 0 0 0 0 0 70 2.6 0 0 19.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.73096E7 6.7 -2.2 53 98600 0 0 272 0 0 0 0 0 0 0 100 2.1 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.73132E7 6.7 -2.8 51 98600 0 0 271 0 0 0 0 0 0 0 80 3.6 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.73168E7 5.6 -2.8 55 98600 0 0 267 0 0 0 0 0 0 0 70 4.6 2 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.73204E7 4.4 -2.8 60 98700 0 0 262 0 0 0 0 0 0 0 90 4.1 3 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.7324E7 3.9 -2.8 62 98800 0 0 269 0 0 0 0 0 0 0 80 4.1 8 2 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.73276E7 3.3 -3.3 62 98800 0 0 266 0 0 0 0 0 0 0 80 5.2 7 2 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.73312E7 3.9 -3.3 60 98900 93 1176 273 38 54 32 4091 0 3456 893 90 4.1 10 4 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.73348E7 4.4 -3.3 57 98900 346 1397 280 170 134 136 18326 8251 14729 3967 90 5.7 10 6 32.2 7620 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.73384E7 6.7 -3.3 49 98900 567 1397 292 241 205 157 27170 14767 17779 5997 70 5.2 10 7 32.2 7620 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.7342E7 9.4 -3.3 41 98900 734 1397 300 468 409 251 52486 35844 28304 9509 70 3.6 10 6 32.2 7620 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.73456E7 10.0 -3.3 39 98800 835 1397 311 408 181 299 45918 16692 33850 11548 90 2.1 10 8 32.2 7620 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.73492E7 12.2 -2.8 35 98700 862 1397 329 299 87 244 34360 7286 28190 10364 110 2.1 10 9 24.1 7620 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.73528E7 13.3 -2.8 33 98600 815 1397 343 262 51 232 29992 4232 26697 9681 40 2.1 10 10 24.1 7620 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.73564E7 14.4 -2.2 32 98500 695 1397 349 195 12 189 22214 933 21633 7659 100 2.1 10 10 24.1 7620 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.736E7 14.4 -2.2 32 98500 512 1397 349 131 6 129 14823 389 14656 4959 0 0.0 10 10 24.1 7620 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.73636E7 13.3 -1.7 36 98400 279 1397 328 83 57 71 9237 1845 7928 2441 0 0.0 10 8 19.3 7620 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.73672E7 12.2 -2.2 37 98400 43 803 311 29 40 25 2949 0 2554 380 70 1.0 10 5 19.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.73708E7 10.6 -0.6 46 98500 0 0 304 0 0 0 0 0 0 0 0 0.0 9 4 19.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.73744E7 10.0 -0.6 48 98500 0 0 301 0 0 0 0 0 0 0 0 0.0 9 4 19.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.7378E7 9.4 -0.6 50 98500 0 0 298 0 0 0 0 0 0 0 0 0.0 10 4 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.73816E7 7.8 0.0 58 98500 0 0 292 0 0 0 0 0 0 0 0 0.0 10 4 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.73852E7 7.2 0.0 60 98500 0 0 290 0 0 0 0 0 0 0 0 0.0 10 4 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.73888E7 6.1 0.0 65 98500 0 0 283 0 0 0 0 0 0 0 330 1.5 10 3 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.73924E7 6.1 0.6 68 98500 0 0 272 0 0 0 0 0 0 0 0 0.0 4 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.7396E7 6.1 -0.6 63 98500 0 0 271 0 0 0 0 0 0 0 30 1.5 3 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.73996E7 5.6 -0.6 65 98500 0 0 269 0 0 0 0 0 0 0 20 1.5 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.74032E7 5.6 -1.7 60 98400 0 0 268 0 0 0 0 0 0 0 40 2.6 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.74068E7 4.4 -1.7 65 98400 0 0 263 0 0 0 0 0 0 0 70 3.1 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.74104E7 3.9 -2.8 62 98500 0 0 265 0 0 0 0 0 0 0 60 2.6 3 1 19.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.7414E7 3.3 -2.8 65 98500 0 0 258 0 0 0 0 0 0 0 0 0.0 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.74176E7 1.7 -1.7 79 98600 89 1153 253 44 203 23 4851 0 2542 723 310 3.1 0 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.74212E7 8.9 -1.1 50 98600 341 1397 281 197 601 48 23072 18564 5634 1946 0 0.0 1 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.74248E7 11.7 -7.8 25 98600 563 1397 286 385 786 65 46502 42169 7869 2958 60 2.1 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.74284E7 13.9 -9.4 19 98500 729 1397 293 531 852 83 64941 52578 10179 4011 40 2.1 1 0 32.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.7432E7 15.0 -8.3 19 98500 830 1397 298 625 890 91 65545 88624 12997 1917 110 1.5 1 0 32.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.74356E7 17.2 -4.4 23 98300 857 1397 312 649 896 94 68201 89633 13346 2004 300 3.6 1 0 32.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.74392E7 18.3 -3.9 22 98200 810 1397 317 606 880 90 63778 87739 12908 1863 290 4.1 1 0 32.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.74428E7 20.0 -2.2 22 98100 691 1397 327 502 850 76 61327 49697 9309 3641 260 4.1 0 0 32.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.74464E7 19.4 -2.2 23 98000 509 1397 324 343 762 61 41129 37325 7331 2709 340 2.6 0 0 32.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.745E7 17.8 -1.7 27 98000 276 1397 318 154 556 42 17857 11047 4880 1634 360 3.1 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.74536E7 15.0 -1.7 32 98000 41 803 306 27 100 16 2844 0 1691 378 310 1.5 0 0 19.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.74572E7 12.8 -1.1 39 98000 0 0 297 0 0 0 0 0 0 0 300 2.6 0 0 19.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.74608E7 11.7 -0.6 43 98000 0 0 293 0 0 0 0 0 0 0 290 2.6 0 0 19.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.74644E7 10.0 0.6 52 98000 0 0 287 0 0 0 0 0 0 0 300 3.6 0 0 19.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.7468E7 8.3 0.6 58 98000 0 0 281 0 0 0 0 0 0 0 270 4.1 0 0 19.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.74716E7 7.8 0.6 61 98000 0 0 279 0 0 0 0 0 0 0 270 4.6 0 0 19.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.74752E7 7.2 1.1 65 98000 0 0 277 0 0 0 0 0 0 0 270 5.2 0 0 19.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.74788E7 6.7 1.1 68 97900 0 0 275 0 0 0 0 0 0 0 270 4.6 0 0 19.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.74824E7 7.2 1.1 65 97900 0 0 277 0 0 0 0 0 0 0 300 4.1 0 0 19.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.7486E7 7.2 1.7 68 97900 0 0 277 0 0 0 0 0 0 0 290 4.1 0 0 19.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.74896E7 6.7 1.7 71 97900 0 0 275 0 0 0 0 0 0 0 310 5.2 0 0 19.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.74932E7 6.7 1.7 71 97900 0 0 275 0 0 0 0 0 0 0 300 4.6 0 0 19.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.74968E7 5.0 1.1 76 97900 0 0 268 0 0 0 0 0 0 0 290 2.6 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.75004E7 3.9 1.1 82 97900 0 0 264 0 0 0 0 0 0 0 270 3.1 0 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.7504E7 5.6 1.7 76 97900 86 1153 271 41 184 23 4499 0 2531 711 280 3.6 0 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.75076E7 8.3 2.2 66 97900 337 1398 282 197 613 48 23018 17957 5621 1938 290 5.7 0 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.75112E7 12.8 2.8 51 97900 558 1398 301 384 785 67 46121 40164 8067 3030 280 4.6 0 0 12.9 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.75148E7 17.2 2.8 38 97900 725 1398 320 534 864 82 65148 50564 10032 3958 320 6.2 0 0 19.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.75184E7 18.9 2.8 34 97900 825 1398 328 627 879 103 76447 55065 12600 5072 310 5.7 2 0 19.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.7522E7 20.0 2.8 32 97800 853 1398 333 654 890 106 79915 56200 12996 5264 330 6.2 2 0 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.75256E7 21.1 2.2 29 97700 806 1398 337 606 880 93 74242 53950 11428 4595 330 5.2 1 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.75292E7 21.7 2.2 28 97600 687 1398 340 499 845 78 60728 48518 9518 3718 310 5.7 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.75328E7 21.1 2.2 29 97600 505 1398 344 335 729 68 39757 35782 8091 2969 270 4.6 2 1 19.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.75364E7 20.0 1.7 30 97600 273 1398 346 122 250 72 13515 7745 8004 2435 280 5.2 7 3 19.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.754E7 16.7 1.7 37 97600 39 781 327 24 47 19 2478 0 1970 371 280 2.6 8 2 19.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.75436E7 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 7 0.0000 0 88 0.000 0.0 1.0 +2.75472E7 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 8 0.0000 0 88 0.000 0.0 1.0 +2.75508E7 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 8 0.0000 0 88 0.000 0.0 1.0 +2.75544E7 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 9 0.0000 0 88 0.000 0.0 1.0 +2.7558E7 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 9 0.0000 0 88 0.000 0.0 1.0 +2.75616E7 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 9 0.0000 0 88 0.000 0.0 1.0 +2.75652E7 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 10 0.0000 0 88 0.000 0.0 1.0 +2.75688E7 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 10 0.0000 0 88 0.000 0.0 1.0 +2.75724E7 10.6 2.8 59 97500 0 0 309 0 0 0 0 0 0 0 280 3.1 10 5 16.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.7576E7 9.4 2.2 61 97500 0 0 299 0 0 0 0 0 0 0 280 3.6 8 3 16.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.75796E7 8.9 2.2 63 97500 0 0 297 0 0 0 0 0 0 0 270 2.6 4 3 16.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.75832E7 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 13 0.0000 0 88 0.000 0.0 1.0 +2.75868E7 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 13 0.0000 0 88 0.000 0.0 1.0 +2.75904E7 9.4 7.2 86 97500 82 1131 327 18 22 16 2023 0 1802 542 260 2.1 10 9 8.0 1220 9 999999999 13 0.0000 0 88 0.000 2.3 1.0 +2.7594E7 10.0 5.6 74 97400 332 1399 338 54 1 54 6235 29 6251 2126 310 2.1 10 10 1.6 370 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2.75976E7 10.6 9.4 93 97400 553 1399 345 163 5 161 18198 340 18058 6000 310 5.2 10 10 6.4 430 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.76012E7 11.1 9.4 90 97300 720 1399 347 232 9 227 26043 713 25618 8819 220 6.2 10 10 6.4 340 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.76048E7 12.8 11.1 90 97200 821 1399 358 228 7 225 26050 533 25843 9509 250 5.2 10 10 6.4 240 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.76084E7 12.8 11.7 93 97100 849 1399 358 272 3 270 30757 245 30708 10969 240 4.6 10 10 6.4 240 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.7612E7 15.0 11.7 81 97000 802 1399 369 278 6 275 31139 501 30983 10674 240 7.7 10 10 6.4 310 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.76156E7 16.1 12.2 78 97000 683 1399 365 221 13 214 24718 986 24062 8215 250 6.2 10 9 6.4 2440 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.76192E7 16.7 12.2 75 97000 502 1399 368 145 48 128 16279 2781 14431 4872 270 4.1 10 9 9.7 1830 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +2.76228E7 16.7 11.1 70 97000 270 1399 367 78 29 72 8595 759 7962 2420 290 4.6 10 9 8.0 1830 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +2.76264E7 15.0 10.6 75 97100 38 758 350 23 6 22 2325 0 2235 334 290 5.7 10 8 8.0 7620 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +2.763E7 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 15 0.0000 0 88 0.000 0.0 1.0 +2.76336E7 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 15 0.0000 0 88 0.000 0.0 1.0 +2.76372E7 13.3 6.1 62 97200 0 0 317 0 0 0 0 0 0 0 290 8.8 5 2 16.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +2.76408E7 11.7 4.4 62 97200 0 0 298 0 0 0 0 0 0 0 280 6.7 3 0 16.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.76444E7 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 14 0.0000 0 88 0.000 0.0 1.0 +2.7648E7 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 14 0.0000 0 88 0.000 0.0 1.0 +2.76516E7 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 14 0.0000 0 88 0.000 0.0 1.0 +2.76552E7 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 13 0.0000 0 88 0.000 0.0 1.0 +2.76588E7 8.9 6.1 83 97300 0 0 301 0 0 0 0 0 0 0 290 4.6 3 3 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2.76624E7 8.3 6.1 86 97300 0 0 286 0 0 0 0 0 0 0 290 5.2 0 0 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2.7666E7 7.2 5.6 89 97400 0 0 281 0 0 0 0 0 0 0 290 5.2 0 0 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2.76696E7 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 12 0.0000 0 88 0.000 0.0 1.0 +2.76732E7 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 12 0.0000 0 88 0.000 0.0 1.0 +2.76768E7 7.2 6.7 96 97500 79 1108 294 28 53 23 3043 0 2507 685 280 4.1 3 3 9.7 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.76804E7 10.0 7.8 86 97600 328 1399 300 178 491 62 20278 15084 7084 2361 290 5.2 1 1 9.7 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.7684E7 12.8 7.2 69 97700 548 1399 336 231 38 216 25167 3074 23661 7008 320 6.2 8 8 11.3 910 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.76876E7 14.4 5.6 55 97700 715 1399 342 249 180 156 28830 12508 18141 6748 300 6.2 8 8 11.3 910 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.76912E7 15.6 3.9 46 97600 816 1399 353 275 29 258 31151 2456 29389 10383 330 7.2 9 9 16.1 1070 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.76948E7 17.2 3.3 40 97600 844 1399 347 569 547 236 65241 44406 27204 9992 320 6.2 7 7 40.2 1070 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.76984E7 17.8 -0.6 29 97500 798 1399 336 573 734 151 67605 51913 17890 6923 310 8.2 4 4 40.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.7702E7 18.3 1.1 32 97500 680 1399 334 465 697 122 54619 45486 14384 5427 320 9.3 2 2 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.77056E7 18.3 0.0 29 97500 499 1399 322 328 734 62 39163 35206 7420 2728 320 4.6 0 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.77092E7 17.2 -0.6 30 97600 267 1399 316 145 522 42 16751 9392 4863 1616 300 7.2 0 0 56.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.77128E7 14.4 0.0 37 97600 37 758 305 25 83 16 0 0 0 0 280 5.2 0 0 56.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.77164E7 13.3 -1.1 37 97600 0 0 299 0 0 0 0 0 0 0 290 5.2 0 0 56.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.772E7 10.6 -0.6 46 97700 0 0 289 0 0 0 0 0 0 0 280 4.6 0 0 56.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.77236E7 10.6 -0.6 46 97700 0 0 289 0 0 0 0 0 0 0 290 4.6 0 0 56.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.77272E7 8.9 -0.6 52 97700 0 0 282 0 0 0 0 0 0 0 290 4.1 0 0 48.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.77308E7 7.8 -0.6 56 97800 0 0 277 0 0 0 0 0 0 0 290 4.1 0 0 48.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.77344E7 6.7 -0.6 60 97800 0 0 273 0 0 0 0 0 0 0 280 4.1 0 0 48.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.7738E7 5.0 0.0 70 97800 0 0 267 0 0 0 0 0 0 0 270 4.1 0 0 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.77416E7 5.0 -0.6 68 97800 0 0 267 0 0 0 0 0 0 0 270 3.6 0 0 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.77452E7 5.6 -1.1 63 97800 0 0 268 0 0 0 0 0 0 0 290 3.6 0 0 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.77488E7 5.0 -1.1 65 97800 0 0 266 0 0 0 0 0 0 0 290 3.6 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.77524E7 5.0 -1.1 65 97800 0 0 266 0 0 0 0 0 0 0 280 4.1 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.7756E7 4.4 -1.1 68 97800 0 0 264 0 0 0 0 0 0 0 280 4.1 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.77596E7 3.9 -1.1 70 97900 0 0 262 0 0 0 0 0 0 0 280 4.6 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.77632E7 4.4 -1.1 68 97900 76 1085 264 37 142 22 4031 0 2404 654 270 5.2 0 0 56.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.77668E7 7.8 0.0 58 97900 323 1400 278 182 554 52 21054 16431 6030 2042 290 4.1 1 0 48.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.77704E7 12.2 0.6 45 97900 544 1400 296 366 730 80 43258 39460 9482 3497 290 4.1 2 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.7774E7 15.6 1.7 39 98000 711 1400 312 515 815 97 61895 49846 11695 4553 270 5.2 2 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.77776E7 17.8 1.1 33 97900 812 1400 321 610 857 109 73918 54878 13253 5295 290 3.6 2 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.77812E7 19.4 0.0 27 97800 840 1400 327 638 868 112 77524 56311 13656 5492 310 5.2 2 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.77848E7 21.1 -1.1 23 97800 794 1400 333 596 853 107 72156 54861 12998 5168 290 5.2 2 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.77884E7 21.1 -1.7 22 97700 676 1400 332 486 824 84 58746 48935 10182 3945 290 5.2 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.7792E7 21.1 -2.8 20 97700 495 1400 331 327 724 67 38806 35980 7971 2910 320 3.1 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.77956E7 20.0 -2.8 21 97700 264 1400 326 140 484 47 16020 9806 5391 1762 320 2.6 1 0 48.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.77992E7 17.2 -1.7 28 97700 35 735 315 22 63 16 0 0 0 0 300 2.1 1 0 48.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.78028E7 15.0 -1.1 33 97800 0 0 306 0 0 0 0 0 0 0 300 3.1 0 0 48.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.78064E7 13.3 0.0 40 97800 0 0 300 0 0 0 0 0 0 0 320 2.1 0 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.781E7 12.2 0.0 43 97800 0 0 296 0 0 0 0 0 0 0 260 2.1 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.78136E7 11.1 -0.6 45 97800 0 0 291 0 0 0 0 0 0 0 270 2.1 0 0 32.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.78172E7 12.2 0.0 43 97800 0 0 296 0 0 0 0 0 0 0 250 3.1 0 0 32.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.78208E7 10.6 -0.6 46 97800 0 0 289 0 0 0 0 0 0 0 240 2.6 0 0 32.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.78244E7 12.8 -0.6 40 97800 0 0 298 0 0 0 0 0 0 0 200 2.1 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.7828E7 10.0 -0.6 48 97800 0 0 286 0 0 0 0 0 0 0 0 0.0 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.78316E7 8.9 0.0 54 97800 0 0 282 0 0 0 0 0 0 0 0 0.0 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.78352E7 8.3 0.6 58 97800 0 0 281 0 0 0 0 0 0 0 0 0.0 0 0 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.78388E7 8.3 0.0 56 97800 0 0 280 0 0 0 0 0 0 0 230 2.6 0 0 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.78424E7 10.0 0.6 52 97800 0 0 302 0 0 0 0 0 0 0 230 4.1 4 4 19.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.7846E7 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 11 0.0000 0 88 0.000 0.0 1.0 +2.78496E7 11.1 7.2 77 97800 72 1062 335 24 6 23 2587 0 2487 655 230 2.6 10 9 8.0 1520 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.78532E7 12.2 11.7 96 97800 318 1400 355 94 3 93 10306 116 10237 3091 200 3.1 10 10 0.0 0 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.78568E7 13.3 12.8 96 97800 539 1400 362 111 4 110 12714 218 12647 4511 160 4.1 10 10 0.0 0 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +2.78604E7 14.4 13.3 93 97800 706 1400 368 184 7 181 20930 485 20689 7479 180 4.1 10 10 0.0 0 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +2.7864E7 17.2 14.4 84 97800 807 1400 384 234 2 233 26536 150 26567 9637 230 5.2 10 10 3.2 150 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +2.78676E7 18.9 15.6 81 97700 836 1400 395 285 6 282 31949 484 31801 11143 240 5.2 10 10 4.8 240 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.78712E7 21.7 16.7 73 97600 790 1400 412 273 3 271 30431 238 30387 10459 190 6.2 10 10 9.7 430 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.78748E7 24.4 16.1 60 97500 673 1400 385 472 671 146 54171 40884 16830 6221 200 8.2 3 3 16.1 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.78784E7 23.9 15.6 60 97400 492 1400 402 176 98 140 19517 5669 15595 5112 190 8.2 8 8 16.1 1220 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.7882E7 23.3 15.0 60 97300 261 1400 374 121 319 60 13453 5407 6693 2107 190 6.2 2 2 24.1 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.78856E7 22.8 15.0 62 97400 34 735 389 22 5 22 0 0 0 0 180 5.2 9 7 16.1 1220 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +2.78892E7 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 26 0.0000 0 88 0.000 0.0 1.0 +2.78928E7 21.7 15.6 68 97300 0 0 371 0 0 0 0 0 0 0 180 7.2 4 3 19.3 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +2.78964E7 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 23 0.0000 0 88 0.000 0.0 1.0 +2.79E7 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 22 0.0000 0 88 0.000 0.0 1.0 +2.79036E7 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 21 0.0000 0 88 0.000 7.1 1.0 +2.79072E7 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 20 0.0000 0 88 0.000 0.0 1.0 +2.79108E7 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 19 0.0000 0 88 0.000 0.0 1.0 +2.79144E7 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 17 0.0000 0 88 0.000 0.0 1.0 +2.7918E7 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 16 0.0000 0 88 0.000 0.0 1.0 +2.79216E7 11.1 7.2 77 97200 0 0 316 0 0 0 0 0 0 0 300 8.2 5 5 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +2.79252E7 8.3 2.8 68 97300 0 0 283 0 0 0 0 0 0 0 320 9.8 0 0 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.79288E7 6.1 2.8 79 97400 0 0 274 0 0 0 0 0 0 0 280 6.7 0 0 24.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.79324E7 5.6 1.7 76 97400 0 0 280 0 0 0 0 0 0 0 280 4.6 2 2 32.2 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.7936E7 6.1 2.2 76 97500 69 1039 307 34 25 32 3553 0 3358 715 280 4.1 10 9 40.2 850 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.79396E7 5.6 0.0 68 97600 314 1401 302 80 26 74 8969 952 8324 2643 300 10.3 9 9 40.2 850 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.79432E7 5.0 -1.1 65 97700 535 1401 299 171 56 150 19193 3897 16911 5609 300 8.2 10 9 40.2 850 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.79468E7 4.4 -1.1 68 97700 701 1401 296 274 142 202 31057 11303 23010 8035 300 7.2 10 9 40.2 850 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.79504E7 3.9 -1.7 67 97800 803 1401 293 381 162 288 42738 14782 32495 10956 300 8.2 10 9 40.2 790 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.7954E7 4.4 -1.7 65 97800 832 1401 304 254 8 249 28973 679 28557 10260 300 8.2 10 10 40.2 640 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.79576E7 5.6 -1.7 60 97700 786 1401 300 259 43 234 29461 3594 26758 9506 300 8.2 10 9 40.2 670 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.79612E7 5.0 -2.8 58 97700 669 1401 297 271 66 239 30125 5736 26712 8621 300 8.2 10 9 40.2 700 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.79648E7 5.0 -2.8 58 97800 489 1401 297 146 45 130 16414 2901 14676 4850 300 7.2 10 9 40.2 700 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.79684E7 4.4 -1.7 65 97800 259 1401 295 82 25 77 8991 812 8474 2464 300 5.2 10 9 40.2 640 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.7972E7 4.4 -2.2 62 97800 33 712 295 7 2 7 0 0 0 0 290 7.7 10 9 24.1 640 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.79756E7 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 7 0.0000 0 88 0.000 0.0 1.0 +2.79792E7 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 7 0.0000 0 88 0.000 0.0 1.0 +2.79828E7 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 7 0.0000 0 88 0.000 0.0 1.0 +2.79864E7 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 7 0.0000 0 88 0.000 0.0 1.0 +2.799E7 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 7 0.0000 0 88 0.000 0.0 1.0 +2.79936E7 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 7 0.0000 0 88 0.000 0.0 1.0 +2.79972E7 0.0 -5.0 69 97900 0 0 254 0 0 0 0 0 0 0 290 5.2 3 3 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.80008E7 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 6 0.0000 0 88 0.000 0.0 1.0 +2.80044E7 -1.1 -5.6 72 98000 0 0 247 0 0 0 0 0 0 0 310 4.6 2 2 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.8008E7 -1.7 -6.1 72 98000 0 0 237 0 0 0 0 0 0 0 300 6.7 0 0 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.80116E7 -2.2 -6.1 75 98000 0 0 235 0 0 0 0 0 0 0 300 5.7 0 0 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.80152E7 -2.8 -6.1 78 98100 0 0 233 0 0 0 0 0 0 0 290 4.6 0 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.80188E7 -2.8 -6.1 78 98100 0 0 233 0 0 0 0 0 0 0 290 5.2 0 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.80224E7 -2.8 -5.6 81 98100 66 1016 234 36 178 18 3942 0 1976 543 290 4.1 0 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.8026E7 -0.6 -5.0 72 98200 309 1402 242 181 631 40 21305 15546 4717 1618 280 6.2 0 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.80296E7 2.2 -4.4 62 98200 530 1402 252 362 801 56 38470 76129 8570 1219 290 7.7 0 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.80332E7 4.4 -4.4 53 98200 697 1402 261 512 883 69 54235 86963 10218 1540 290 7.7 0 0 32.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.80368E7 6.1 -4.4 47 98100 799 1402 267 600 912 76 63433 90896 11027 1763 300 6.7 0 0 32.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.80404E7 7.2 -5.0 42 98100 828 1402 271 629 924 78 66426 92286 11249 1835 300 6.7 0 0 32.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.8044E7 8.9 -4.4 39 98100 783 1402 278 592 880 96 72163 55782 11738 4672 300 5.7 3 0 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.80476E7 10.0 -5.0 35 98000 666 1402 282 489 818 96 58429 50767 11507 4402 290 8.8 5 0 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.80512E7 9.4 -5.6 35 98000 487 1402 295 233 289 131 26174 18856 14777 4858 290 4.6 8 5 40.2 7620 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.80548E7 7.2 -5.0 42 98000 257 1402 287 92 54 82 10031 1901 8975 2537 300 4.6 7 5 40.2 7620 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.80584E7 5.6 -5.0 47 98000 32 713 283 17 8 17 0 0 0 0 300 4.6 8 6 32.2 7620 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.8062E7 4.4 -5.0 51 98000 0 0 269 0 0 0 0 0 0 0 280 4.6 7 2 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.80656E7 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 8 0.0000 0 88 0.000 0.0 1.0 +2.80692E7 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 8 0.0000 0 88 0.000 0.0 1.0 +2.80728E7 2.2 -4.4 62 98100 0 0 263 0 0 0 0 0 0 0 300 5.2 4 3 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.80764E7 1.1 -4.4 67 98100 0 0 253 0 0 0 0 0 0 0 300 4.1 4 1 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.808E7 -0.6 -5.0 72 98200 0 0 242 0 0 0 0 0 0 0 290 3.6 3 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.80836E7 -1.1 -5.0 75 98200 0 0 245 0 0 0 0 0 0 0 330 6.2 5 1 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.80872E7 -2.2 -5.0 82 98100 0 0 236 0 0 0 0 0 0 0 320 4.6 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.80908E7 -2.8 -5.6 81 98100 0 0 234 0 0 0 0 0 0 0 330 4.1 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.80944E7 -2.8 -5.6 81 98100 0 0 234 0 0 0 0 0 0 0 320 4.6 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.8098E7 -2.8 -5.6 81 98100 0 0 234 0 0 0 0 0 0 0 310 4.1 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.81016E7 -3.3 -5.6 85 98100 0 0 232 0 0 0 0 0 0 0 320 5.2 0 0 19.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.81052E7 -3.3 -5.6 85 98100 0 0 236 0 0 0 0 0 0 0 310 4.6 3 1 19.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.81088E7 -2.8 -5.6 81 98200 63 993 234 31 104 20 3350 0 2168 564 310 4.6 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.81124E7 0.6 -5.6 64 98200 305 1402 246 167 506 56 19117 15279 6427 2123 300 5.7 3 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.8116E7 3.3 -5.0 55 98200 526 1402 261 320 596 94 37242 34453 10975 3940 310 3.1 7 1 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.81196E7 5.6 -5.0 47 98200 693 1402 273 456 610 152 52826 43968 17683 6503 300 5.2 7 2 32.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.81232E7 6.7 -5.6 42 98200 794 1402 284 417 390 195 48229 30620 22661 8412 300 5.7 7 5 32.2 7620 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.81268E7 8.9 -5.6 36 98100 824 1402 293 551 645 169 64765 48002 19952 7679 300 4.6 7 5 32.2 7620 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.81304E7 11.1 -7.8 26 98100 779 1402 289 543 784 103 65834 51023 12528 4960 300 3.6 3 1 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.8134E7 12.2 -8.3 23 98000 663 1402 287 463 788 86 55783 47930 10391 3995 310 5.2 1 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.81376E7 12.2 -7.2 25 98000 484 1402 288 311 701 65 36917 34616 7735 2810 310 3.1 0 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.81412E7 11.1 -6.7 28 98000 254 1402 284 132 476 44 15136 8586 5057 1650 280 3.6 0 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.81448E7 8.9 -6.1 34 98000 31 713 276 20 56 14 0 0 0 0 300 2.1 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.81484E7 7.2 -5.0 42 98000 0 0 271 0 0 0 0 0 0 0 320 2.1 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.8152E7 6.1 -5.0 45 98100 0 0 266 0 0 0 0 0 0 0 320 2.1 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.81556E7 5.6 -5.6 45 98100 0 0 264 0 0 0 0 0 0 0 310 2.6 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.81592E7 5.0 -5.0 49 98100 0 0 262 0 0 0 0 0 0 0 330 1.5 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.81628E7 3.9 -5.6 51 98100 0 0 258 0 0 0 0 0 0 0 320 1.5 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.81664E7 3.3 -4.4 57 98100 0 0 257 0 0 0 0 0 0 0 350 2.1 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.817E7 3.9 -4.4 55 98100 0 0 267 0 0 0 0 0 0 0 0 0.0 7 2 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.81736E7 2.8 -4.4 59 98100 0 0 263 0 0 0 0 0 0 0 0 0.0 7 2 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.81772E7 1.7 -3.9 67 98100 0 0 256 0 0 0 0 0 0 0 320 1.5 6 1 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.81808E7 2.2 -3.9 64 98100 0 0 258 0 0 0 0 0 0 0 0 0.0 6 1 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.81844E7 2.8 -3.9 62 98100 0 0 260 0 0 0 0 0 0 0 0 0.0 5 1 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.8188E7 0.6 -3.9 72 98100 0 0 247 0 0 0 0 0 0 0 0 0.0 3 0 19.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.81916E7 1.1 -3.9 70 98200 0 0 249 0 0 0 0 0 0 0 0 0.0 3 0 19.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.81952E7 2.2 -3.3 67 98200 60 970 253 32 106 21 3426 0 2256 562 0 0.0 3 0 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.81988E7 5.0 -2.2 60 98200 301 1403 265 165 515 53 18930 14262 6096 2023 0 0.0 3 0 9.7 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.82024E7 9.4 -3.3 41 98300 521 1403 293 319 481 139 35932 32440 15723 5251 0 0.0 7 3 9.7 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.8206E7 11.7 -2.8 37 98300 688 1403 311 324 274 189 36839 21358 21592 7589 230 1.0 8 6 9.7 7620 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.82096E7 12.8 -2.8 34 98200 790 1403 319 417 342 223 47653 28096 25615 9225 190 1.5 9 7 12.9 7620 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.82132E7 13.3 -1.7 36 98000 820 1403 335 337 81 289 37897 7366 32689 11138 180 4.1 10 9 16.1 7010 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.82168E7 13.9 -1.7 34 98000 776 1403 338 288 165 196 33159 12868 22676 8332 170 2.6 10 9 19.3 3660 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.82204E7 13.9 -1.7 34 97900 660 1403 331 293 98 246 32417 8634 27367 8647 180 3.6 9 8 19.3 3660 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.8224E7 14.4 -1.1 35 97900 481 1403 329 215 207 143 23922 13862 15981 5102 160 4.6 8 7 19.3 3050 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.82276E7 13.9 -1.1 36 97800 252 1403 317 114 248 68 12591 6790 7536 2251 150 3.6 7 4 24.1 7620 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2.82312E7 13.9 -0.6 37 97800 31 690 320 17 12 16 0 0 0 0 140 4.1 8 5 24.1 7620 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2.82348E7 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 13 0.0000 0 88 0.000 0.0 1.0 +2.82384E7 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 13 0.0000 0 88 0.000 0.0 1.0 +2.8242E7 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 13 0.0000 0 88 0.000 0.0 1.0 +2.82456E7 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 13 0.0000 0 88 0.000 0.3 1.0 +2.82492E7 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 12 0.0000 0 88 0.000 0.5 1.0 +2.82528E7 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 12 0.0000 0 88 0.000 0.8 1.0 +2.82564E7 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 12 0.0000 0 88 0.000 0.8 1.0 +2.826E7 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 12 0.0000 0 88 0.000 1.5 1.0 +2.82636E7 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 12 0.0000 0 88 0.000 0.8 1.0 +2.82672E7 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 11 0.0000 0 88 0.000 0.0 1.0 +2.82708E7 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 11 0.0000 0 88 0.000 0.0 1.0 +2.82744E7 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 11 0.0000 0 88 0.000 0.0 1.0 +2.8278E7 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 11 0.0000 0 88 0.000 0.0 1.0 +2.82816E7 8.3 7.8 96 97400 58 947 302 24 49 19 2570 0 2041 520 280 4.6 4 4 6.4 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.82852E7 10.0 7.8 86 97400 296 1403 304 138 341 65 15498 9594 7323 2348 290 5.7 2 2 8.0 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.82888E7 11.7 8.3 80 97400 517 1403 312 322 613 94 37246 32409 10910 3911 260 8.2 2 2 11.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.82924E7 13.3 4.4 55 97400 684 1403 321 464 717 111 54864 44587 13171 5026 290 9.8 4 4 12.9 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.8296E7 12.8 2.8 51 97500 786 1403 326 447 385 229 50857 31365 26192 9360 310 11.3 7 7 16.1 1010 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.82996E7 12.8 2.8 51 97600 817 1403 326 418 302 241 47608 24970 27596 9912 310 10.3 7 7 32.2 1070 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.83032E7 13.3 1.7 45 97600 773 1403 323 402 312 228 45656 25566 26031 9229 330 9.8 6 6 40.2 1070 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.83068E7 12.2 1.1 47 97600 657 1403 312 453 648 145 52242 44798 16792 6109 330 9.3 4 4 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.83104E7 12.8 1.1 45 97700 479 1403 309 259 494 88 29933 26033 10203 3595 340 7.7 2 2 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.8314E7 11.1 1.1 50 97700 250 1403 298 120 362 54 13488 7235 6087 1916 330 6.7 1 1 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.83176E7 8.3 1.1 61 97800 30 690 281 21 56 14 0 0 0 0 300 5.2 0 0 32.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.83212E7 7.8 1.1 63 97900 0 0 279 0 0 0 0 0 0 0 320 6.2 0 0 32.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.83248E7 6.1 1.1 71 97900 0 0 272 0 0 0 0 0 0 0 320 5.2 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.83284E7 5.0 0.6 73 98000 0 0 268 0 0 0 0 0 0 0 320 4.6 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.8332E7 4.4 0.6 76 98000 0 0 265 0 0 0 0 0 0 0 310 4.6 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.83356E7 3.9 0.6 79 98000 0 0 263 0 0 0 0 0 0 0 320 4.1 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.83392E7 3.3 0.6 82 98000 0 0 261 0 0 0 0 0 0 0 320 4.1 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.83428E7 2.8 0.0 82 98000 0 0 259 0 0 0 0 0 0 0 310 4.6 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.83464E7 2.8 0.0 82 98000 0 0 259 0 0 0 0 0 0 0 320 5.2 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.835E7 2.8 0.0 82 98100 0 0 259 0 0 0 0 0 0 0 310 5.2 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.83536E7 2.2 0.0 85 98000 0 0 256 0 0 0 0 0 0 0 310 5.2 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.83572E7 1.7 0.0 89 98000 0 0 255 0 0 0 0 0 0 0 330 5.7 0 0 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.83608E7 0.6 -0.6 92 98100 0 0 250 0 0 0 0 0 0 0 310 3.1 0 0 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.83644E7 1.1 -0.6 89 98100 0 0 252 0 0 0 0 0 0 0 360 1.5 0 0 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.8368E7 1.1 -0.6 89 98100 55 924 260 32 138 18 3436 0 1939 491 300 4.1 3 2 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.83716E7 4.4 0.0 73 98100 292 1404 265 166 577 44 19261 12879 5116 1723 20 3.6 5 0 8.0 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.83752E7 7.2 0.6 63 98200 512 1404 276 344 728 76 40532 37624 8980 3274 70 3.1 7 0 12.9 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.83788E7 10.6 0.6 50 98200 680 1404 290 498 828 93 59713 49952 11186 4314 70 3.1 6 0 16.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.83824E7 12.2 1.1 47 98200 782 1404 303 517 729 107 62411 46356 12960 5133 100 3.1 5 1 19.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.8386E7 13.9 1.1 42 98100 813 1404 310 606 854 107 73516 54431 13024 5206 110 2.6 7 1 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.83896E7 16.1 0.6 35 98100 769 1404 319 516 707 125 61426 46976 14936 5822 130 4.1 7 1 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.83932E7 17.2 0.6 33 98100 655 1404 318 476 852 74 57803 48052 9009 3483 150 2.6 3 0 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.83968E7 17.2 0.6 33 98100 477 1404 324 300 724 51 36154 31533 6158 2262 150 3.6 4 1 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.84004E7 15.6 1.1 38 98000 249 1404 311 137 580 32 16043 5475 3753 1260 190 3.1 1 0 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.8404E7 13.9 1.1 42 98000 29 690 304 25 118 12 0 0 0 0 130 3.1 0 0 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.84076E7 12.8 1.7 47 98000 0 0 300 0 0 0 0 0 0 0 140 3.1 0 0 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.84112E7 10.6 1.7 54 98100 0 0 291 0 0 0 0 0 0 0 140 4.6 0 0 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.84148E7 10.6 1.7 54 98100 0 0 291 0 0 0 0 0 0 0 150 4.1 0 0 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.84184E7 8.9 1.7 61 98100 0 0 284 0 0 0 0 0 0 0 140 3.6 0 0 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.8422E7 8.3 1.7 63 98200 0 0 282 0 0 0 0 0 0 0 120 4.6 0 0 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.84256E7 8.9 1.7 61 98200 0 0 284 0 0 0 0 0 0 0 140 4.1 0 0 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.84292E7 7.2 1.7 68 98100 0 0 277 0 0 0 0 0 0 0 130 2.6 0 0 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.84328E7 5.6 1.7 76 98100 0 0 280 0 0 0 0 0 0 0 130 2.6 2 2 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.84364E7 6.1 1.7 73 98100 0 0 273 0 0 0 0 0 0 0 130 2.1 0 0 16.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.844E7 4.4 1.1 79 98100 0 0 266 0 0 0 0 0 0 0 90 3.1 0 0 16.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.84436E7 3.3 1.1 86 98200 0 0 262 0 0 0 0 0 0 0 90 3.1 0 0 16.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.84472E7 3.3 1.1 86 98200 0 0 262 0 0 0 0 0 0 0 90 4.1 0 0 16.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.84508E7 2.8 1.1 89 98200 0 0 260 0 0 0 0 0 0 0 90 4.1 0 0 16.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.84544E7 3.3 1.1 86 98300 52 901 262 35 196 15 3797 0 1632 434 80 3.1 0 0 11.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.8458E7 5.0 1.7 79 98400 288 1404 274 169 659 32 18187 55227 5145 734 80 4.1 1 1 8.0 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.84616E7 8.3 4.4 77 98400 508 1404 294 313 674 67 37161 32370 7975 2932 70 3.1 2 2 8.0 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.84652E7 12.2 6.7 69 98400 676 1404 313 485 856 69 52083 85076 10271 1503 140 3.6 3 2 11.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.84688E7 15.6 6.7 56 98400 779 1404 328 540 831 76 57885 83684 11086 1721 130 5.2 3 2 12.9 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.84724E7 17.2 6.1 48 98200 810 1404 335 551 688 150 64989 46873 17767 6916 130 5.7 5 2 12.9 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.8476E7 19.4 6.1 42 98100 766 1404 345 537 816 88 65501 47837 10766 4288 140 4.6 5 2 16.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.84796E7 20.0 4.4 36 98100 652 1404 355 340 420 143 39166 28370 16542 6017 120 4.1 7 5 19.3 7620 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.84832E7 20.0 4.4 36 98100 475 1404 358 218 190 153 24033 12815 16946 5256 120 4.6 9 6 24.1 7620 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.84868E7 18.9 5.0 40 98000 247 1404 363 78 49 69 8567 1225 7605 2243 150 5.2 9 8 24.1 7620 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.84904E7 17.2 5.6 46 98100 29 667 355 19 11 18 0 0 0 0 110 2.1 10 8 24.1 7620 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.8494E7 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 12 0.0000 0 88 0.000 0.0 1.0 +2.84976E7 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 13 0.0000 0 88 0.000 0.0 1.0 +2.85012E7 13.9 6.7 62 98100 0 0 326 0 0 0 0 0 0 0 150 3.6 8 4 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +2.85048E7 13.9 7.2 64 98100 0 0 321 0 0 0 0 0 0 0 160 3.6 5 2 19.3 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +2.85084E7 14.4 7.2 62 98000 0 0 319 0 0 0 0 0 0 0 180 4.6 4 1 19.3 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +2.8512E7 14.4 7.2 62 98100 0 0 323 0 0 0 0 0 0 0 180 4.1 5 2 19.3 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.85156E7 13.9 7.2 64 98100 0 0 321 0 0 0 0 0 0 0 170 3.1 5 2 16.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.85192E7 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 21 0.0000 0 88 0.000 0.0 1.0 +2.85228E7 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 23 0.0000 0 88 0.000 0.0 1.0 +2.85264E7 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 24 0.0000 0 88 0.000 0.0 1.0 +2.853E7 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 25 0.0000 0 88 0.000 0.0 1.0 +2.85336E7 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 27 0.0000 0 88 0.000 0.0 1.0 +2.85372E7 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 28 0.0000 0 88 0.000 0.0 1.0 +2.85408E7 17.8 15.6 87 98000 50 878 389 11 0 11 1051 0 1058 348 220 6.2 10 10 9.7 240 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.85444E7 17.8 15.6 87 98100 283 1405 389 45 0 45 4396 0 4429 1739 200 8.2 10 10 9.7 210 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +2.8548E7 18.3 15.6 84 98100 504 1405 392 111 3 110 12583 153 12518 4366 220 6.2 10 10 9.7 270 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +2.85516E7 19.4 15.6 78 98100 672 1405 398 171 1 170 19382 66 19360 6944 230 8.2 10 10 12.9 460 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +2.85552E7 21.1 15.6 71 98000 775 1405 407 202 5 199 23036 348 22810 8411 230 6.7 10 10 12.9 7620 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +2.85588E7 22.2 15.0 64 98000 806 1405 401 380 188 271 42514 15118 30497 10577 230 7.7 10 9 24.1 670 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +2.85624E7 22.2 15.0 64 97900 764 1405 412 292 11 286 32276 922 31804 10468 220 6.7 10 10 24.1 730 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +2.8566E7 22.2 15.0 64 97800 650 1405 412 203 9 199 22625 643 22294 7560 220 6.2 10 10 24.1 2740 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +2.85696E7 22.2 16.1 68 97800 473 1405 414 86 6 84 9883 257 9685 3443 220 5.2 10 10 16.1 730 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +2.85732E7 22.2 16.1 68 97800 246 1405 402 58 12 56 6434 139 6232 1948 200 4.1 10 9 24.1 850 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +2.85768E7 21.7 16.7 73 97800 28 667 392 15 3 15 0 0 0 0 210 4.1 10 8 19.3 1830 9 999999999 33 0.0000 0 88 0.000 0.0 1.0 +2.85804E7 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 33 0.0000 0 88 0.000 0.0 1.0 +2.8584E7 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 32 0.0000 0 88 0.000 0.0 1.0 +2.85876E7 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 31 0.0000 0 88 0.000 0.0 1.0 +2.85912E7 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 30 0.0000 0 88 0.000 0.0 1.0 +2.85948E7 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 28 0.0000 0 88 0.000 0.0 1.0 +2.85984E7 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 27 0.0000 0 88 0.000 0.0 1.0 +2.8602E7 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 26 0.0000 0 88 0.000 0.0 1.0 +2.86056E7 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 25 0.0000 0 88 0.000 0.0 1.0 +2.86092E7 14.4 11.7 84 97900 0 0 331 0 0 0 0 0 0 0 300 6.2 3 3 11.3 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.86128E7 12.8 11.1 90 98000 0 0 323 0 0 0 0 0 0 0 310 8.2 3 3 11.3 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.86164E7 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 21 0.0000 0 88 0.000 0.0 1.0 +2.862E7 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 20 0.0000 0 88 0.000 0.0 1.0 +2.86236E7 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 19 0.0000 0 88 0.000 0.0 1.0 +2.86272E7 10.6 8.3 86 98200 47 878 343 17 0 17 1633 0 1643 434 310 5.2 10 10 12.9 340 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.86308E7 10.0 7.8 86 98300 279 1405 340 67 5 66 7470 132 7382 2313 320 7.2 10 10 19.3 7620 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.86344E7 11.7 5.6 66 98400 500 1405 329 177 47 160 19553 3245 17759 5585 300 6.2 10 8 32.2 7620 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.8638E7 13.3 0.0 40 98500 668 1405 318 349 329 191 39454 25565 21698 7495 290 3.1 10 5 32.2 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.86416E7 13.9 -2.8 32 98400 771 1405 315 521 616 180 60343 46734 20944 7792 320 6.7 10 4 40.2 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.86452E7 15.6 -3.9 26 98400 803 1405 322 482 401 250 54688 34583 28519 10031 340 5.2 10 4 40.2 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.86488E7 17.2 -5.6 21 98300 761 1405 324 462 429 228 52436 36071 26012 9126 300 7.2 10 3 40.2 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.86524E7 16.7 -6.1 21 98300 648 1405 321 379 417 185 42836 32615 21009 7195 310 5.2 10 3 40.2 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.8656E7 16.7 -6.1 21 98300 471 1405 321 217 274 124 24381 17279 13989 4586 310 4.6 10 3 40.2 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.86596E7 15.0 -6.1 23 98300 244 1405 311 108 212 70 11868 5998 7719 2247 310 4.6 8 2 56.3 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.86632E7 12.8 -6.1 27 98400 28 668 297 14 15 12 0 0 0 0 310 4.1 6 1 48.3 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.86668E7 11.7 -5.0 31 98300 0 0 288 0 0 0 0 0 0 0 310 5.7 0 0 40.2 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.86704E7 10.6 -3.9 36 98400 0 0 285 0 0 0 0 0 0 0 320 4.1 0 0 40.2 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.8674E7 9.4 -3.3 41 98400 0 0 281 0 0 0 0 0 0 0 300 3.1 0 0 40.2 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.86776E7 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 18 0.0000 0 88 0.000 0.0 1.0 +2.86812E7 7.8 -2.2 50 98400 0 0 288 0 0 0 0 0 0 0 290 2.1 4 3 32.2 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.86848E7 7.2 -2.2 51 98400 0 0 273 0 0 0 0 0 0 0 300 3.6 0 0 32.2 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.86884E7 6.7 -2.2 53 98400 0 0 272 0 0 0 0 0 0 0 310 3.1 0 0 24.1 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.8692E7 6.7 -2.8 51 98400 0 0 271 0 0 0 0 0 0 0 320 4.6 0 0 24.1 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +2.86956E7 6.1 -2.8 53 98400 0 0 269 0 0 0 0 0 0 0 320 4.1 0 0 24.1 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +2.86992E7 5.0 -2.2 60 98400 0 0 265 0 0 0 0 0 0 0 310 3.1 0 0 24.1 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +2.87028E7 5.0 -2.2 60 98400 0 0 265 0 0 0 0 0 0 0 310 3.1 0 0 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +2.87064E7 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 16 0.0000 0 88 0.000 0.0 1.0 +2.871E7 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 16 0.0000 0 88 0.000 0.0 1.0 +2.87136E7 6.1 -1.1 60 98500 45 855 292 29 76 21 3012 0 2190 435 20 2.6 8 7 32.2 2440 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +2.87172E7 7.8 -1.1 54 98500 275 1406 311 72 36 65 8050 1040 7291 2273 340 3.1 10 9 32.2 2440 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +2.87208E7 9.4 -0.6 50 98500 496 1406 318 155 92 123 17514 5737 13954 4693 340 2.1 10 9 32.2 2440 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.87244E7 11.7 -1.1 41 98500 664 1406 338 217 0 217 22071 0 22257 8089 310 2.1 10 10 24.1 2130 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.8728E7 12.2 0.0 43 98500 768 1406 316 467 489 198 53608 38111 22840 8332 340 2.1 9 6 24.1 2290 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.87316E7 13.3 -0.6 39 98400 800 1406 346 276 2 275 31031 178 31095 10602 280 2.6 10 10 24.1 980 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.87352E7 13.9 -1.1 36 98300 758 1406 348 258 11 252 29002 955 28483 9690 310 2.1 10 10 24.1 2740 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.87388E7 13.9 -1.1 36 98300 645 1406 348 179 4 177 20272 302 20139 6969 310 1.5 10 10 24.1 980 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.87424E7 13.3 -0.6 39 98200 469 1406 346 170 6 168 18596 437 18466 5470 40 1.5 10 10 24.1 980 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.8746E7 13.3 0.0 40 98300 243 1406 347 69 5 68 7585 128 7502 2201 290 2.6 10 10 24.1 1160 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +2.87496E7 12.8 0.6 43 98300 27 668 345 12 0 12 0 0 0 0 320 2.1 10 10 19.3 1100 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.87532E7 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 22 0.0000 0 88 0.000 0.0 1.0 +2.87568E7 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 22 0.0000 0 88 0.000 0.0 1.0 +2.87604E7 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 23 0.0000 0 88 0.000 0.0 1.0 +2.8764E7 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 23 0.0000 0 88 0.000 0.0 1.0 +2.87676E7 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 24 0.0000 0 88 0.000 0.8 1.0 +2.87712E7 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 24 0.0000 0 88 0.000 0.3 1.0 +2.87748E7 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 25 0.0000 0 88 0.000 0.0 1.0 +2.87784E7 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 25 0.0000 0 88 0.000 0.0 1.0 +2.8782E7 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 25 0.0000 0 88 0.000 0.0 1.0 +2.87856E7 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 26 0.0000 0 88 0.000 0.0 1.0 +2.87892E7 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 26 0.0000 0 88 0.000 0.3 1.0 +2.87928E7 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 27 0.0000 0 88 0.000 2.0 1.0 +2.87964E7 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 27 0.0000 0 88 0.000 4.1 1.0 +2.88E7 6.1 5.6 96 98000 43 832 319 11 0 11 1057 0 1064 326 80 5.2 10 10 4.8 820 9 999999999 27 0.0000 0 88 0.000 3.0 1.0 +2.88036E7 5.6 5.0 96 98000 271 1406 316 44 2 43 5069 34 4965 1652 60 6.2 10 10 3.2 120 9 999999999 27 0.0000 0 88 0.000 4.1 1.0 +2.88072E7 5.6 5.6 100 98000 492 1406 317 96 2 95 11042 107 10964 3858 60 5.7 10 10 1.6 120 9 999999999 28 0.0000 0 88 0.000 3.6 1.0 +2.88108E7 6.1 6.1 100 98000 660 1406 320 131 1 130 15217 65 15161 5621 80 6.2 10 10 1.6 90 9 999999999 28 0.0000 0 88 0.000 0.5 1.0 +2.88144E7 6.7 6.7 100 97800 764 1406 323 157 1 156 18312 69 18275 6946 90 8.2 10 10 3.2 90 9 999999999 28 0.0000 0 88 0.000 1.5 1.0 +2.8818E7 6.7 6.7 100 97700 797 1406 323 173 0 173 17733 0 17890 7680 90 6.7 10 10 1.3 90 9 999999999 28 0.0000 0 88 0.000 1.5 1.0 +2.88216E7 6.7 6.7 100 97700 756 1406 323 171 1 171 19769 71 19859 7411 90 7.2 10 10 1.6 90 9 999999999 28 0.0000 0 88 0.000 0.5 1.0 +2.88252E7 7.2 7.2 100 97700 643 1406 326 135 0 135 13663 0 13779 5713 100 8.2 10 10 4.0 120 9 999999999 28 0.0000 0 88 0.000 0.3 1.0 +2.88288E7 7.2 7.2 100 97700 468 1406 326 96 0 96 9577 0 9653 3800 90 7.2 10 10 3.2 120 9 999999999 28 0.0000 0 88 0.000 0.3 1.0 +2.88324E7 7.2 7.2 100 97600 242 1406 326 43 1 43 4893 11 4905 1589 90 8.8 10 10 8.0 150 9 999999999 29 0.0000 0 88 0.000 1.3 1.0 +2.8836E7 6.7 6.7 100 97700 27 668 323 7 0 7 0 0 0 0 90 8.2 10 10 8.0 150 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +2.88396E7 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 29 0.0000 0 88 0.000 0.0 1.0 +2.88432E7 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 29 0.0000 0 88 0.000 0.3 1.0 +2.88468E7 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 30 0.0000 0 88 0.000 0.0 1.0 +2.88504E7 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 30 0.0000 0 88 0.000 0.0 1.0 +2.8854E7 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 30 0.0000 0 88 0.000 0.0 1.0 +2.88576E7 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 30 0.0000 0 88 0.000 0.0 1.0 +2.88612E7 0.8 -2.0 72 98500 0 0 250 0 0 0 0 0 0 0 270 6.5 3 0 40.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.88648E7 -0.3 -3.9 72 98600 0 0 244 0 0 0 0 0 0 0 270 5.7 3 0 40.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.88684E7 -1.5 -5.8 72 98600 0 0 238 0 0 0 0 0 0 0 270 4.9 2 0 40.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.8872E7 -2.8 -7.8 69 98500 0 0 232 0 0 0 0 0 0 0 300 4.1 2 0 40.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.88756E7 -2.8 -7.2 72 98500 0 0 232 0 0 0 0 0 0 0 270 4.6 0 0 40.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.88792E7 -3.9 -6.7 81 98600 0 0 229 0 0 0 0 0 0 0 260 3.6 0 0 40.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.88828E7 -3.9 -6.7 81 98600 0 0 229 0 0 0 0 0 0 0 270 4.1 1 0 40.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.88864E7 -3.3 -6.7 78 98600 42 809 231 19 30 16 2003 0 1692 377 280 3.6 0 0 40.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.889E7 -0.6 -6.1 66 98700 269 1407 241 127 372 56 14346 9340 6344 2018 280 3.6 0 0 32.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.88936E7 1.7 -5.0 62 98700 490 1407 250 299 612 85 34765 33022 9913 3520 260 3.6 0 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.88972E7 4.4 -4.4 53 98700 659 1407 261 446 722 107 52720 45987 12691 4788 280 4.1 0 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.89008E7 6.7 -5.6 42 98700 763 1407 268 539 770 119 64382 51606 14265 5555 250 4.1 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.89044E7 7.8 -6.1 37 98600 796 1407 272 571 787 123 68408 53395 14790 5810 250 4.1 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.8908E7 10.0 -6.1 32 98500 755 1407 281 535 771 119 63818 51714 14246 5530 260 2.6 0 0 48.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.89116E7 10.6 -8.3 26 98400 643 1407 281 434 714 105 51251 45539 12441 4665 270 4.1 0 0 48.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.89152E7 11.1 -10.0 22 98400 467 1407 281 282 594 82 32729 31392 9546 3355 250 3.6 0 0 48.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.89188E7 10.0 -9.4 25 98500 242 1407 277 111 334 52 12486 6575 5866 1831 250 3.6 0 0 48.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.89224E7 8.3 -10.0 26 98500 27 645 270 14 17 12 0 0 0 0 260 4.1 0 0 48.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.8926E7 5.6 -8.9 35 98500 0 0 261 0 0 0 0 0 0 0 260 4.1 0 0 48.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.89296E7 5.0 -7.8 40 98600 0 0 260 0 0 0 0 0 0 0 280 4.1 0 0 48.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.89332E7 4.4 -7.8 41 98700 0 0 257 0 0 0 0 0 0 0 280 4.6 0 0 48.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.89368E7 3.9 -7.2 45 98700 0 0 256 0 0 0 0 0 0 0 270 4.6 0 0 48.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.89404E7 3.3 -6.7 48 98700 0 0 254 0 0 0 0 0 0 0 270 4.6 0 0 48.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.8944E7 2.8 -6.7 50 98800 0 0 252 0 0 0 0 0 0 0 280 4.6 0 0 48.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.89476E7 3.3 -6.7 48 98700 0 0 254 0 0 0 0 0 0 0 290 6.2 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.89512E7 2.8 -6.7 50 98700 0 0 252 0 0 0 0 0 0 0 290 6.7 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.89548E7 2.2 -6.7 52 98800 0 0 250 0 0 0 0 0 0 0 310 5.7 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.89584E7 1.1 -6.1 59 98900 0 0 247 0 0 0 0 0 0 0 330 6.2 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.8962E7 0.0 -5.0 69 99000 0 0 244 0 0 0 0 0 0 0 320 7.2 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.89656E7 -1.1 -6.7 66 99000 0 0 239 0 0 0 0 0 0 0 320 6.7 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.89692E7 -2.2 -8.3 63 99100 0 0 233 0 0 0 0 0 0 0 330 7.7 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.89728E7 -2.8 -8.9 63 99100 39 786 235 26 126 13 2777 0 1393 338 320 9.3 1 1 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.89764E7 -1.1 -8.9 56 99200 265 1407 241 141 562 34 16555 8622 3999 1347 330 8.8 1 1 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.898E7 0.6 -9.4 48 99300 486 1407 247 296 648 71 34896 33125 8392 3026 330 7.2 1 1 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.89836E7 1.7 -10.0 42 99300 655 1407 245 477 898 57 50586 87552 8580 1382 320 7.7 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.89872E7 3.3 -10.0 37 99300 760 1407 251 555 885 75 58450 87468 10959 1673 340 6.7 2 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.89908E7 4.4 -10.0 35 99300 793 1407 255 597 908 82 62722 90010 11864 1774 350 6.7 3 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.89944E7 5.0 -10.0 33 99200 752 1407 257 566 883 91 68914 55866 11113 4381 350 6.2 4 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.8998E7 6.1 -10.0 31 99200 641 1407 262 465 859 71 56569 49538 8659 3326 340 5.7 3 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.90016E7 6.1 -10.0 31 99200 466 1407 262 314 768 56 37526 35422 6707 2433 300 4.1 3 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.90052E7 4.4 -10.6 33 99300 241 1407 255 133 567 34 15475 6221 3963 1311 310 5.7 2 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.90088E7 2.2 -11.7 35 99400 26 645 246 24 100 12 0 0 0 0 310 6.2 2 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.90124E7 1.1 -11.7 38 99400 0 0 242 0 0 0 0 0 0 0 320 5.7 2 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.9016E7 0.0 -11.7 42 99400 0 0 238 0 0 0 0 0 0 0 340 5.2 2 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.90196E7 -0.6 -11.1 45 99500 0 0 236 0 0 0 0 0 0 0 330 3.1 3 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.90232E7 -1.1 -10.6 49 99500 0 0 235 0 0 0 0 0 0 0 340 3.6 2 0 40.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.90268E7 -1.1 -10.6 49 99600 0 0 235 0 0 0 0 0 0 0 60 3.1 1 0 40.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.90304E7 0.0 -11.7 42 99600 0 0 238 0 0 0 0 0 0 0 60 5.2 0 0 40.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.9034E7 0.0 -11.1 43 99600 0 0 238 0 0 0 0 0 0 0 70 4.1 1 0 40.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.90376E7 -1.1 -11.1 47 99600 0 0 235 0 0 0 0 0 0 0 50 4.1 1 0 40.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.90412E7 -1.7 -11.1 49 99500 0 0 233 0 0 0 0 0 0 0 80 5.2 2 0 40.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.90448E7 -2.8 -11.1 53 99600 0 0 229 0 0 0 0 0 0 0 90 4.6 1 0 40.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.90484E7 -3.3 -11.1 55 99600 0 0 227 0 0 0 0 0 0 0 60 4.1 1 0 40.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.9052E7 -3.3 -11.1 55 99600 0 0 227 0 0 0 0 0 0 0 50 4.1 1 0 40.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.90556E7 -3.3 -11.1 55 99600 0 0 231 0 0 0 0 0 0 0 80 5.2 4 1 40.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.90592E7 -3.9 -11.7 55 99600 37 786 229 24 87 14 2536 0 1485 335 90 4.1 4 1 40.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.90628E7 -1.1 -12.2 43 99700 261 1408 241 131 394 58 14725 10178 6539 2045 90 7.7 9 2 40.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.90664E7 0.0 -12.2 40 99800 483 1408 251 253 375 124 28518 24127 14033 4637 90 5.2 10 5 40.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.907E7 1.7 -11.7 37 99900 652 1408 254 379 487 153 43543 35666 17653 6310 90 3.6 10 3 40.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.90736E7 3.3 -11.1 34 99800 757 1408 258 521 699 143 61331 50110 16901 6439 90 4.1 10 2 40.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.90772E7 5.0 -11.1 30 99700 790 1408 265 535 671 157 62879 49514 18530 7077 80 2.6 10 2 40.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.90808E7 6.1 -11.7 27 99600 750 1408 268 523 666 166 60785 50237 19378 7207 120 3.6 9 2 40.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.90844E7 6.1 -12.2 26 99400 639 1408 268 439 689 124 51158 46726 14504 5322 90 3.6 8 2 40.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.9088E7 6.7 -12.2 25 99400 465 1408 267 293 653 75 34230 33423 8786 3113 110 4.1 7 1 40.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.90916E7 5.6 -12.2 27 99400 240 1408 257 129 529 38 14875 6855 4391 1435 110 3.6 3 0 40.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.90952E7 4.4 -12.2 29 99400 26 645 253 22 89 12 0 0 0 0 160 2.6 1 0 40.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.90988E7 3.3 -12.2 31 99400 0 0 249 0 0 0 0 0 0 0 100 2.6 0 0 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.91024E7 2.8 -12.2 33 99400 0 0 247 0 0 0 0 0 0 0 360 1.5 0 0 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.9106E7 2.8 -11.7 34 99400 0 0 248 0 0 0 0 0 0 0 110 2.6 0 0 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.91096E7 1.7 -11.7 37 99300 0 0 244 0 0 0 0 0 0 0 160 2.1 0 0 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.91132E7 1.7 -11.1 38 99400 0 0 244 0 0 0 0 0 0 0 150 1.5 0 0 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.91168E7 1.7 -11.1 38 99300 0 0 244 0 0 0 0 0 0 0 150 2.1 0 0 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.91204E7 0.6 -10.6 44 99200 0 0 241 0 0 0 0 0 0 0 170 2.1 0 0 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.9124E7 -1.7 -9.4 56 99200 0 0 234 0 0 0 0 0 0 0 270 2.6 0 0 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.91276E7 -2.8 -8.3 66 99100 0 0 231 0 0 0 0 0 0 0 290 2.1 0 0 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.91312E7 -2.2 -8.9 61 99100 0 0 233 0 0 0 0 0 0 0 290 2.6 0 0 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.91348E7 -2.8 -8.9 63 99100 0 0 231 0 0 0 0 0 0 0 270 3.1 0 0 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.91384E7 -2.8 -8.9 63 99100 0 0 231 0 0 0 0 0 0 0 290 3.1 0 0 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.9142E7 -3.3 -8.9 66 99100 0 0 229 0 0 0 0 0 0 0 300 3.1 1 0 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.91456E7 -3.3 -8.9 66 99100 35 763 229 27 151 11 0 0 0 0 290 3.1 1 0 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.91492E7 0.0 -8.3 54 99000 258 1408 246 132 518 36 15385 7642 4204 1402 290 5.2 1 1 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.91528E7 3.9 -8.9 39 99000 479 1408 254 323 822 42 34454 76537 6561 1047 300 4.1 1 0 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.91564E7 6.7 -8.9 32 99000 648 1408 265 469 901 53 49872 87820 8017 1332 320 5.2 1 0 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.916E7 10.0 -8.9 26 99000 754 1408 278 570 954 56 60590 94468 8323 1476 320 5.2 0 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.91636E7 11.1 -9.4 23 98800 788 1408 281 599 961 58 63605 95481 8560 1542 310 5.2 0 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.91672E7 12.2 -10.0 20 98700 748 1408 285 565 952 56 60016 94147 8329 1470 280 5.2 0 0 32.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.91708E7 12.8 -10.0 20 98700 638 1408 288 465 910 49 49521 88499 7453 1272 290 4.6 0 0 32.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.91744E7 13.3 -10.0 19 98600 464 1408 290 315 828 39 33635 76596 6125 999 280 4.1 0 0 32.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.9178E7 12.2 -9.4 21 98600 240 1408 286 136 635 27 14507 49811 4378 623 290 2.6 0 0 32.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.91816E7 10.6 -8.3 26 98600 26 645 281 25 133 10 0 0 0 0 290 2.1 0 0 32.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.91852E7 8.3 -10.6 25 98600 0 0 269 0 0 0 0 0 0 0 310 2.1 0 0 32.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.91888E7 6.7 -7.2 37 98500 0 0 267 0 0 0 0 0 0 0 300 2.1 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.91924E7 5.0 -6.1 45 98500 0 0 261 0 0 0 0 0 0 0 300 2.1 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.9196E7 5.0 -6.1 45 98500 0 0 261 0 0 0 0 0 0 0 260 3.1 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.91996E7 4.4 -6.1 47 98500 0 0 259 0 0 0 0 0 0 0 250 3.6 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.92032E7 4.4 -6.7 45 98400 0 0 258 0 0 0 0 0 0 0 270 3.1 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.92068E7 3.3 -6.1 50 98400 0 0 255 0 0 0 0 0 0 0 280 4.1 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.92104E7 2.8 -6.7 50 98300 0 0 252 0 0 0 0 0 0 0 270 3.1 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.9214E7 2.2 -6.7 52 98300 0 0 250 0 0 0 0 0 0 0 280 3.1 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.92176E7 2.2 -6.7 52 98200 0 0 250 0 0 0 0 0 0 0 280 3.6 0 0 16.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.92212E7 1.7 -6.7 54 98200 0 0 248 0 0 0 0 0 0 0 270 3.6 0 0 16.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.92248E7 1.7 -6.7 54 98100 0 0 248 0 0 0 0 0 0 0 280 3.1 0 0 16.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.92284E7 1.1 -6.7 57 98100 0 0 246 0 0 0 0 0 0 0 280 3.1 0 0 16.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.9232E7 0.6 -6.7 59 98100 34 740 245 19 51 14 0 0 0 0 260 2.1 0 0 12.9 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.92356E7 5.6 -5.0 47 98100 254 1409 265 127 456 45 14514 8025 5155 1672 210 1.5 0 0 12.9 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.92392E7 8.3 -3.9 42 98100 475 1409 276 301 692 66 35561 33323 7817 2821 200 2.1 0 0 12.9 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.92428E7 11.1 -4.4 34 98100 645 1409 287 448 785 87 53658 46892 10451 3982 200 2.1 1 0 12.9 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.92464E7 12.8 -4.4 30 98000 751 1409 294 545 835 98 65905 52898 11888 4670 200 3.6 1 0 12.9 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.925E7 15.0 -4.4 26 97900 785 1409 309 551 801 102 66808 51477 12407 4917 210 4.1 2 1 19.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.92536E7 16.7 -4.4 23 97800 746 1409 320 502 678 141 58983 47595 16633 6323 240 3.6 3 2 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.92572E7 17.2 -6.7 19 97700 636 1409 323 394 532 152 45114 38404 17479 6195 170 4.1 4 3 32.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.92608E7 16.1 -7.2 20 97600 463 1409 325 204 220 131 22760 14232 14677 4690 190 5.2 7 6 32.2 7620 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.92644E7 14.4 -6.1 24 97600 239 1409 314 105 168 76 11424 5097 8301 2313 180 3.1 6 4 32.2 7620 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.9268E7 12.8 -5.6 28 97600 26 646 316 13 5 13 0 0 0 0 180 3.6 7 7 32.2 7620 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.92716E7 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 7 0.0000 0 88 0.000 0.0 1.0 +2.92752E7 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 9 0.0000 0 88 0.000 0.0 1.0 +2.92788E7 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 10 0.0000 0 88 0.000 0.0 1.0 +2.92824E7 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 12 0.0000 0 88 0.000 0.0 1.0 +2.9286E7 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 14 0.0000 0 88 0.000 0.0 1.0 +2.92896E7 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 16 0.0000 0 88 0.000 0.0 1.0 +2.92932E7 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 18 0.0000 0 88 0.000 0.0 1.0 +2.92968E7 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 19 0.0000 0 88 0.000 0.0 1.0 +2.93004E7 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 21 0.0000 0 88 0.000 0.0 1.0 +2.9304E7 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 23 0.0000 0 88 0.000 0.3 1.0 +2.93076E7 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 25 0.0000 0 88 0.000 0.8 1.0 +2.93112E7 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 26 0.0000 0 88 0.000 0.3 1.0 +2.93148E7 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 28 0.0000 0 88 0.000 0.3 1.0 +2.93184E7 8.9 8.9 100 97300 32 716 336 7 1 7 0 0 0 0 140 1.5 10 10 3.2 1220 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.9322E7 10.0 10.0 100 97200 250 1409 343 21 4 21 2531 1 2533 868 140 2.1 10 10 3.2 1220 9 999999999 28 0.0000 0 88 0.000 0.3 1.0 +2.93256E7 11.1 10.6 96 97200 472 1409 349 66 8 63 7780 332 7446 2704 110 3.1 10 10 3.2 2130 9 999999999 28 0.0000 0 88 0.000 0.3 1.0 +2.93292E7 11.1 10.6 96 97200 642 1409 349 109 1 108 12766 58 12694 4769 100 3.6 10 10 2.4 2130 9 999999999 28 0.0000 0 88 0.000 0.5 1.0 +2.93328E7 12.2 11.1 93 97000 748 1409 355 116 8 112 13805 476 13377 5231 110 3.1 10 10 1.6 120 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.93364E7 12.8 12.2 96 96900 783 1409 359 134 7 130 15848 432 15436 6041 100 3.1 10 10 1.6 90 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.934E7 12.8 12.8 100 96800 744 1409 360 131 1 130 15386 61 15329 5912 130 1.5 10 10 1.6 90 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.93436E7 13.3 12.8 96 96900 635 1409 362 128 4 126 14770 238 14597 5370 240 1.5 10 10 1.6 90 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.93472E7 13.3 13.3 100 96900 462 1409 363 78 0 78 7746 0 7809 3205 140 2.1 10 10 2.4 90 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.93508E7 13.3 13.3 100 96900 239 1409 363 59 0 59 5751 0 5793 1985 210 2.1 10 10 2.4 60 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.93544E7 13.3 13.3 100 96900 26 646 363 15 0 15 0 0 0 0 240 3.1 10 10 1.6 90 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.9358E7 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 28 0.0000 0 88 0.000 0.0 1.0 +2.93616E7 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 26 0.0000 0 88 0.000 0.0 1.0 +2.93652E7 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 24 0.0000 0 88 0.000 0.0 1.0 +2.93688E7 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 22 0.0000 0 88 0.000 0.0 1.0 +2.93724E7 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 20 0.0000 0 88 0.000 0.0 1.0 +2.9376E7 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 18 0.0000 0 88 0.000 0.0 1.0 +2.93796E7 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 16 0.0000 0 88 0.000 0.0 1.0 +2.93832E7 7.8 6.1 89 97300 0 0 284 0 0 0 0 0 0 0 330 2.6 0 0 16.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +2.93868E7 6.7 5.6 93 97300 0 0 279 0 0 0 0 0 0 0 320 2.1 0 0 16.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2.93904E7 5.6 5.0 96 97400 0 0 274 0 0 0 0 0 0 0 310 2.6 0 0 11.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.9394E7 5.0 4.4 96 97400 0 0 271 0 0 0 0 0 0 0 300 3.1 0 0 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.93976E7 3.9 3.3 96 97500 0 0 266 0 0 0 0 0 0 0 310 5.2 0 0 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.94012E7 2.8 2.8 100 97600 0 0 261 0 0 0 0 0 0 0 300 5.2 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.94048E7 1.7 1.1 96 97700 30 693 256 16 43 12 0 0 0 0 310 5.2 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.94084E7 2.8 1.7 92 97800 247 1409 260 123 449 44 14020 6344 5027 1627 290 4.1 0 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.9412E7 6.7 2.8 76 97900 468 1409 276 295 687 66 34735 31442 7791 2806 300 5.2 0 0 12.9 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.94156E7 8.9 0.6 56 97900 639 1409 283 445 796 82 53413 45640 9870 3769 300 5.7 0 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.94192E7 11.7 -1.1 41 97900 745 1409 293 539 839 92 65380 51613 11193 4406 300 6.2 0 0 48.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.94228E7 12.8 -3.3 33 97900 781 1409 295 571 854 96 69478 53854 11717 4651 310 5.7 0 0 48.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.94264E7 13.9 -4.4 28 97800 743 1409 298 539 843 92 65394 52511 11195 4400 310 5.2 0 0 48.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.943E7 15.0 -4.4 26 97800 634 1409 303 438 785 82 52578 45918 9871 3757 310 5.2 0 0 48.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.94336E7 15.0 -3.9 27 97900 462 1409 303 290 678 65 34183 31815 7681 2754 230 5.2 0 0 48.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.94372E7 14.4 -3.3 29 98000 239 1409 301 118 435 43 13443 5856 4910 1578 270 3.1 0 0 48.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.94408E7 12.2 -2.8 35 98000 26 646 293 17 42 13 0 0 0 0 220 2.6 0 0 48.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.94444E7 11.1 -3.3 37 98100 0 0 288 0 0 0 0 0 0 0 250 3.6 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.9448E7 10.0 -2.8 41 98200 0 0 284 0 0 0 0 0 0 0 260 4.1 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.94516E7 8.3 -1.7 50 98200 0 0 278 0 0 0 0 0 0 0 270 4.1 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.94552E7 7.8 -1.7 52 98300 0 0 276 0 0 0 0 0 0 0 270 4.1 0 0 32.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.94588E7 6.7 -1.1 58 98400 0 0 273 0 0 0 0 0 0 0 280 3.1 0 0 32.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.94624E7 6.1 -1.1 60 98400 0 0 270 0 0 0 0 0 0 0 290 3.6 0 0 32.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.9466E7 5.6 -1.1 63 98400 0 0 268 0 0 0 0 0 0 0 280 4.6 0 0 32.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.94696E7 5.6 -1.1 63 98400 0 0 268 0 0 0 0 0 0 0 290 3.6 0 0 32.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.94732E7 6.1 -1.7 58 98400 0 0 270 0 0 0 0 0 0 0 300 4.1 0 0 32.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.94768E7 6.1 -1.7 58 98500 0 0 270 0 0 0 0 0 0 0 270 3.1 0 0 32.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.94804E7 5.0 -1.7 62 98500 0 0 265 0 0 0 0 0 0 0 290 4.1 0 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.9484E7 5.6 -1.7 60 98700 0 0 268 0 0 0 0 0 0 0 310 4.6 0 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.94876E7 5.0 -1.7 62 98700 0 0 265 0 0 0 0 0 0 0 310 4.6 0 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.94912E7 4.4 -2.2 62 98800 28 693 263 17 47 12 0 0 0 0 310 6.2 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.94948E7 6.7 -2.8 51 98900 243 1410 271 121 455 43 13814 6521 4921 1590 320 7.7 0 0 40.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.94984E7 8.3 -2.2 48 98900 465 1410 278 295 697 64 34836 32441 7576 2727 320 10.8 0 0 48.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.9502E7 10.0 -1.7 44 99000 636 1410 285 445 804 80 53511 46255 9647 3682 310 6.2 0 0 48.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.95056E7 11.7 -2.8 37 99000 743 1410 291 541 852 90 65724 52483 10966 4315 340 8.2 0 0 48.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.95092E7 11.7 -3.3 35 98900 779 1410 290 574 856 98 69707 54227 11939 4731 320 7.7 1 0 56.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.95128E7 12.8 -4.4 30 98900 741 1410 294 543 847 95 65699 53152 11530 4521 340 8.2 1 0 56.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.95164E7 12.8 -5.0 29 98900 633 1410 293 446 808 80 53633 47034 9647 3675 310 8.8 0 0 56.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.952E7 12.8 -5.0 29 98900 462 1410 293 294 689 67 34574 32820 7899 2824 330 6.7 1 0 56.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.95236E7 11.1 -4.4 34 98900 239 1410 287 120 443 44 13648 6278 5016 1606 330 5.2 1 0 56.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.95272E7 8.3 -5.6 37 99000 26 646 274 18 47 13 0 0 0 0 320 5.2 0 0 48.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.95308E7 7.2 -6.7 37 99000 0 0 269 0 0 0 0 0 0 0 310 6.7 0 0 48.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.95344E7 6.1 -6.7 40 99100 0 0 265 0 0 0 0 0 0 0 310 5.7 0 0 48.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.9538E7 5.6 -6.7 41 99100 0 0 263 0 0 0 0 0 0 0 320 6.7 0 0 48.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.95416E7 4.4 -6.7 45 99100 0 0 258 0 0 0 0 0 0 0 310 6.7 0 0 48.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.95452E7 3.3 -6.7 48 99100 0 0 254 0 0 0 0 0 0 0 330 5.2 0 0 48.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.95488E7 2.2 -6.7 52 99100 0 0 250 0 0 0 0 0 0 0 330 5.2 0 0 48.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.95524E7 1.7 -6.7 54 99100 0 0 248 0 0 0 0 0 0 0 340 4.1 0 0 32.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.9556E7 1.1 -6.7 57 99100 0 0 246 0 0 0 0 0 0 0 340 3.6 0 0 32.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.95596E7 0.6 -6.7 59 99200 0 0 245 0 0 0 0 0 0 0 340 3.6 0 0 32.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.95632E7 0.6 -6.7 59 99200 0 0 245 0 0 0 0 0 0 0 340 3.1 0 0 32.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.95668E7 0.6 -6.1 61 99200 0 0 245 0 0 0 0 0 0 0 360 3.6 0 0 32.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.95704E7 2.2 -6.1 55 99200 0 0 251 0 0 0 0 0 0 0 60 4.6 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.9574E7 2.2 -6.7 52 99300 0 0 250 0 0 0 0 0 0 0 60 5.2 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.95776E7 1.7 -6.7 54 99300 27 670 248 21 108 10 0 0 0 0 70 5.2 0 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.95812E7 3.3 -7.2 46 99400 240 1410 254 131 594 29 13965 46678 4686 631 90 6.7 0 0 48.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.95848E7 5.6 -7.2 40 99500 462 1410 262 307 801 43 32741 74098 6722 1038 80 5.7 0 0 48.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.95884E7 7.2 -7.2 35 99500 633 1410 268 454 886 54 48290 86150 8180 1325 90 5.2 0 0 48.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.9592E7 9.4 -7.2 30 99400 740 1410 277 550 927 61 58372 91663 9045 1522 80 4.1 0 0 48.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.95956E7 10.6 -7.8 27 99300 777 1410 281 582 938 63 61704 93103 9275 1591 70 3.1 0 0 48.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.95992E7 12.2 -6.7 26 99200 740 1410 289 548 923 61 58179 91288 9046 1521 80 2.1 0 0 48.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.96028E7 13.3 -5.0 28 99200 632 1410 295 453 884 54 48261 86060 8183 1324 110 3.1 0 0 48.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.96064E7 14.4 -4.4 27 99200 461 1410 300 306 796 43 32702 73724 6725 1035 150 2.6 0 0 48.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.961E7 12.8 -3.9 31 99200 239 1410 294 131 594 29 13997 46670 4688 626 160 2.6 0 0 48.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.96136E7 11.7 -3.3 35 99200 27 670 290 24 112 11 0 0 0 0 140 3.1 0 0 48.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.96172E7 10.6 -2.8 39 99100 0 0 286 0 0 0 0 0 0 0 140 3.1 0 0 48.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.96208E7 10.0 -2.8 41 99100 0 0 284 0 0 0 0 0 0 0 150 3.1 0 0 48.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.96244E7 8.3 -2.8 46 99100 0 0 277 0 0 0 0 0 0 0 140 3.1 0 0 48.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.9628E7 6.7 -2.8 51 99100 0 0 271 0 0 0 0 0 0 0 70 1.5 0 0 48.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.96316E7 6.7 -2.8 51 99200 0 0 271 0 0 0 0 0 0 0 120 2.1 0 0 48.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.96352E7 6.1 -2.8 53 99100 0 0 269 0 0 0 0 0 0 0 130 3.1 0 0 48.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.96388E7 5.6 -2.8 55 99000 0 0 267 0 0 0 0 0 0 0 160 2.6 0 0 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.96424E7 4.4 -2.8 59 99000 0 0 262 0 0 0 0 0 0 0 0 0.0 0 0 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.9646E7 3.9 -2.8 62 99000 0 0 260 0 0 0 0 0 0 0 0 0.0 0 0 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.96496E7 3.3 -2.8 65 99000 0 0 258 0 0 0 0 0 0 0 0 0.0 0 0 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.96532E7 2.2 -2.8 70 99000 0 0 254 0 0 0 0 0 0 0 0 0.0 0 0 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.96568E7 2.8 -2.8 67 99000 0 0 256 0 0 0 0 0 0 0 0 0.0 0 0 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.96604E7 2.2 -2.8 70 99000 0 0 254 0 0 0 0 0 0 0 320 1.5 0 0 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.9664E7 1.7 -2.8 73 99000 25 647 252 19 69 11 0 0 0 0 0 0.0 0 0 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.96676E7 7.8 -3.3 46 99100 236 1411 275 122 515 35 14122 4799 4059 1336 230 1.5 0 0 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.96712E7 11.1 -2.2 40 99100 459 1411 289 295 743 52 35343 31931 6242 2268 230 5.2 0 0 9.7 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.96748E7 12.2 -1.7 38 99100 630 1411 294 442 839 65 46970 81754 9759 1401 170 3.1 0 0 11.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.96784E7 13.3 -1.1 37 99000 738 1411 299 538 884 74 57068 87666 10870 1624 200 1.5 0 0 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.9682E7 15.6 -1.7 31 98900 775 1411 308 572 897 76 60609 89291 11086 1702 230 2.1 0 0 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.96856E7 16.7 -2.8 26 98800 739 1411 312 539 885 74 57078 87634 10867 1624 150 2.1 0 0 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.96892E7 18.3 -2.8 24 98800 632 1411 319 445 842 66 47217 81965 9899 1406 190 2.6 0 0 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.96928E7 18.9 -1.1 26 98700 461 1411 323 298 745 53 35648 32043 6353 2308 190 2.6 0 0 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.96964E7 17.2 -1.1 29 98700 239 1411 316 125 523 36 14436 4941 4166 1369 170 3.1 0 0 40.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.97E7 16.7 -1.7 29 98700 27 670 313 21 76 12 0 0 0 0 220 2.6 0 0 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.97036E7 15.0 -1.7 32 98700 0 0 306 0 0 0 0 0 0 0 180 3.1 0 0 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.97072E7 13.3 -1.1 37 98700 0 0 299 0 0 0 0 0 0 0 130 3.1 0 0 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.97108E7 12.2 -0.6 42 98700 0 0 295 0 0 0 0 0 0 0 150 3.1 0 0 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.97144E7 10.6 0.6 50 98800 0 0 290 0 0 0 0 0 0 0 140 2.6 0 0 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.9718E7 9.4 2.2 61 98800 0 0 287 0 0 0 0 0 0 0 160 2.6 0 0 32.2 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.97216E7 9.4 5.6 77 98800 0 0 290 0 0 0 0 0 0 0 170 3.6 0 0 24.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.97252E7 8.3 4.4 77 98800 0 0 284 0 0 0 0 0 0 0 180 2.1 0 0 24.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.97288E7 7.8 5.6 86 98800 0 0 283 0 0 0 0 0 0 0 150 3.1 0 0 24.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.97324E7 7.8 6.1 89 98700 0 0 284 0 0 0 0 0 0 0 120 2.1 0 0 24.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.9736E7 7.2 5.6 89 98700 0 0 281 0 0 0 0 0 0 0 120 2.1 0 0 24.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.97396E7 6.7 5.0 89 98700 0 0 278 0 0 0 0 0 0 0 110 2.1 0 0 19.3 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.97432E7 5.6 4.4 93 98700 0 0 274 0 0 0 0 0 0 0 110 2.6 0 0 19.3 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.97468E7 5.6 4.4 93 98800 0 0 274 0 0 0 0 0 0 0 110 2.6 0 0 12.9 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.97504E7 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 13 0.0000 0 88 0.000 0.0 1.0 +2.9754E7 7.8 6.7 93 98900 233 1411 313 74 45 67 8089 958 7350 2129 100 2.1 8 8 6.4 670 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2.97576E7 11.7 7.8 77 99000 456 1411 308 233 450 87 26707 21698 10005 3476 160 3.1 1 1 8.0 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.97612E7 15.0 10.0 72 98900 627 1411 324 392 671 92 46365 36785 10916 4131 160 4.1 1 1 11.3 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.97648E7 17.8 11.7 68 98900 736 1411 333 488 733 104 58254 42277 12457 4875 140 3.1 0 0 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +2.97684E7 20.0 12.8 63 98800 774 1411 365 369 209 254 41281 16826 28577 9824 190 5.2 5 5 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +2.9772E7 21.1 12.8 59 98700 738 1411 367 402 423 180 45948 29308 20672 7575 130 5.7 5 4 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +2.97756E7 21.1 10.0 49 98700 631 1411 364 435 636 148 49583 41675 16943 6041 210 4.1 5 4 40.2 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +2.97792E7 21.1 12.8 59 98700 461 1411 367 277 470 122 30835 25593 13638 4458 200 4.1 5 4 40.2 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +2.97828E7 20.6 12.8 61 98700 240 1411 362 98 234 58 10826 3242 6428 1962 160 4.1 4 3 40.2 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +2.97864E7 18.9 12.8 68 98700 27 670 350 13 20 11 0 0 0 0 140 3.6 2 2 40.2 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.979E7 16.7 12.8 78 98700 0 0 340 0 0 0 0 0 0 0 120 4.1 2 2 32.2 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.97936E7 17.2 12.8 75 98700 0 0 348 0 0 0 0 0 0 0 140 3.6 4 4 32.2 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +2.97972E7 16.7 12.8 78 98800 0 0 343 0 0 0 0 0 0 0 160 4.1 3 3 24.1 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.98008E7 15.6 12.8 84 98800 0 0 330 0 0 0 0 0 0 0 130 2.6 1 1 24.1 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +2.98044E7 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 19 0.0000 0 88 0.000 0.0 1.0 +2.9808E7 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 19 0.0000 0 88 0.000 0.0 1.0 +2.98116E7 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 20 0.0000 0 88 0.000 0.0 1.0 +2.98152E7 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 20 0.0000 0 88 0.000 0.0 1.0 +2.98188E7 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 20 0.0000 0 88 0.000 0.0 1.0 +2.98224E7 13.3 12.8 96 98800 0 0 330 0 0 0 0 0 0 0 140 3.1 8 4 11.3 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +2.9826E7 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 20 0.0000 0 88 0.000 0.0 1.0 +2.98296E7 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 21 0.0000 0 88 0.000 0.0 1.0 +2.98332E7 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 21 0.0000 0 88 0.000 0.0 1.0 +2.98368E7 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 21 0.0000 0 88 0.000 0.0 1.0 +2.98404E7 12.2 12.2 100 98800 230 1411 356 59 7 58 6499 92 6410 1933 160 2.6 10 10 0.0 0 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.9844E7 13.9 13.3 96 98900 453 1411 366 115 1 115 12837 52 12890 4250 180 1.0 10 10 1.6 60 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +2.98476E7 18.3 13.9 75 98900 625 1411 349 321 443 123 37005 25706 14236 5228 180 5.2 2 2 16.1 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.98512E7 20.6 13.9 66 98800 734 1411 360 505 803 85 61110 42521 10317 4083 200 5.7 2 2 32.2 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.98548E7 21.1 13.9 64 98700 772 1411 369 514 711 123 60854 42198 14619 5729 190 6.7 5 4 48.3 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +2.98584E7 22.8 13.9 57 98600 737 1411 384 455 533 175 52073 36059 20123 7414 190 5.2 7 6 48.3 3050 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.9862E7 22.8 12.2 51 98500 631 1411 378 324 414 138 37086 25753 15863 5733 180 5.2 8 5 48.3 3050 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +2.98656E7 22.2 12.2 53 98500 461 1411 408 115 11 112 12896 575 12610 4206 180 4.1 10 10 48.3 3050 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +2.98692E7 21.7 12.8 57 98500 241 1411 406 76 13 74 8227 283 8042 2279 180 3.1 10 10 48.3 5490 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +2.98728E7 20.0 12.8 63 98400 28 670 397 15 0 15 0 0 0 0 150 3.1 10 10 40.2 5490 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +2.98764E7 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 26 0.0000 0 88 0.000 0.0 1.0 +2.988E7 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 26 0.0000 0 88 0.000 0.0 1.0 +2.98836E7 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 26 0.0000 0 88 0.000 0.0 1.0 +2.98872E7 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 26 0.0000 0 88 0.000 0.0 1.0 +2.98908E7 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 26 0.0000 0 88 0.000 0.0 1.0 +2.98944E7 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 26 0.0000 0 88 0.000 0.0 1.0 +2.9898E7 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 27 0.0000 0 88 0.000 0.0 1.0 +2.99016E7 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 27 0.0000 0 88 0.000 0.0 1.0 +2.99052E7 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 27 0.0000 0 88 0.000 0.0 1.0 +2.99088E7 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 27 0.0000 0 88 0.000 0.0 1.0 +2.99124E7 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 27 0.0000 0 88 0.000 0.0 1.0 +2.9916E7 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 27 0.0000 0 88 0.000 0.0 1.0 +2.99196E7 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 27 0.0000 0 88 0.000 0.0 1.0 +2.99232E7 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 28 0.0000 0 88 0.000 0.0 1.0 +2.99268E7 17.2 15.6 90 98300 227 1412 386 83 1 83 8836 23 8874 2333 190 4.1 10 10 11.3 610 9 999999999 28 0.0000 0 88 0.000 0.0 1.0 +2.99304E7 18.3 16.1 87 98300 450 1412 381 125 44 110 13964 2122 12338 4109 190 4.1 10 9 11.3 610 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +2.9934E7 19.4 16.7 84 98300 623 1412 388 273 151 207 30085 10831 22934 7475 210 4.6 10 9 11.3 2740 9 999999999 30 0.0000 0 88 0.000 0.0 1.0 +2.99376E7 20.0 16.1 78 98300 732 1412 401 250 3 248 27741 233 27677 9311 240 4.1 10 10 12.9 700 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +2.99412E7 20.6 15.6 73 98200 771 1412 404 235 3 233 26405 225 26325 9282 230 5.2 10 10 16.1 610 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +2.99448E7 18.3 16.1 87 98200 736 1412 392 149 4 147 17259 245 17101 6485 290 3.1 10 10 12.9 460 9 999999999 32 0.0000 0 88 0.000 0.0 1.0 +2.99484E7 18.3 16.1 87 98200 631 1412 392 115 11 110 13364 591 12831 4797 250 3.1 10 10 11.3 370 9 999999999 33 0.0000 0 88 0.000 0.8 1.0 +2.9952E7 17.2 16.7 97 98300 462 1412 387 111 7 109 12433 335 12258 4127 290 2.6 10 10 4.8 430 9 999999999 34 0.0000 0 88 0.000 0.3 1.0 +2.99556E7 16.7 16.7 100 98200 241 1412 384 44 4 43 4968 14 4868 1580 310 3.6 10 10 6.4 90 9 999999999 35 0.0000 0 88 0.000 0.3 1.0 +2.99592E7 16.1 16.1 100 98200 28 671 380 17 0 16 0 0 0 0 320 2.1 10 10 9.7 120 9 999999999 35 0.0000 0 88 0.000 0.0 1.0 +2.99628E7 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 36 0.0000 0 88 0.000 0.0 1.0 +2.99664E7 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 35 0.0000 0 88 0.000 0.0 1.0 +2.997E7 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 35 0.0000 0 88 0.000 0.0 1.0 +2.99736E7 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 34 0.0000 0 88 0.000 0.0 1.0 +2.99772E7 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 34 0.0000 0 88 0.000 0.0 1.0 +2.99808E7 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 33 0.0000 0 88 0.000 0.0 1.0 +2.99844E7 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 33 0.0000 0 88 0.000 0.0 1.0 +2.9988E7 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 32 0.0000 0 88 0.000 0.0 1.0 +2.99916E7 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 31 0.0000 0 88 0.000 0.0 1.0 +2.99952E7 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 31 0.0000 0 88 0.000 0.0 1.0 +2.99988E7 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 30 0.0000 0 88 0.000 0.0 1.0 +3.00024E7 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 30 0.0000 0 88 0.000 0.0 1.0 +3.0006E7 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 29 0.0000 0 88 0.000 0.0 1.0 +3.00096E7 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 27 0.0000 0 88 0.000 0.0 1.0 +3.00132E7 6.1 3.3 83 98700 224 1412 291 101 98 86 10780 3078 9219 2342 330 4.6 8 5 19.3 2130 9 999999999 26 0.0000 0 88 0.000 0.0 1.0 +3.00168E7 6.7 3.3 80 98800 447 1412 304 241 217 171 26122 15638 18628 5280 340 4.1 9 8 19.3 460 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +3.00204E7 10.6 3.9 64 98800 620 1412 313 256 97 213 28343 7853 23706 7573 320 3.6 10 6 19.3 7620 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +3.0024E7 12.2 4.4 59 98700 730 1412 316 477 642 143 55675 43561 16760 6322 10 3.6 9 4 19.3 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +3.00276E7 13.9 6.1 60 98700 770 1412 335 390 267 244 43891 22142 27611 9545 350 2.6 10 7 24.1 7620 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +3.00312E7 14.4 6.1 58 98600 736 1412 360 206 9 201 23406 689 22952 8169 340 3.6 10 10 24.1 760 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +3.00348E7 15.0 6.7 58 98600 631 1412 363 184 11 179 20680 805 20215 6885 340 4.6 10 10 24.1 760 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +3.00384E7 15.0 7.2 60 98600 462 1412 337 197 291 102 22322 15315 11600 3935 340 2.6 10 6 24.1 760 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +3.0042E7 13.9 7.2 64 98700 242 1412 341 83 59 73 9029 1460 7971 2268 10 2.6 10 8 32.2 820 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +3.00456E7 13.9 7.2 64 98700 29 694 358 8 1 8 0 0 0 0 290 2.1 10 10 32.2 910 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +3.00492E7 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 10 0.0000 0 88 0.000 0.0 1.0 +3.00528E7 8.9 4.4 74 98800 0 0 299 0 0 0 0 0 0 0 310 2.6 7 3 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +3.00564E7 7.2 3.9 80 98800 0 0 289 0 0 0 0 0 0 0 300 2.6 4 2 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +3.006E7 10.0 1.1 54 98800 0 0 303 0 0 0 0 0 0 0 70 3.6 8 4 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +3.00636E7 9.4 0.6 54 98800 0 0 297 0 0 0 0 0 0 0 80 4.6 8 3 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +3.00672E7 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 10 0.0000 0 88 0.000 0.0 1.0 +3.00708E7 6.7 -0.6 60 98800 0 0 278 0 0 0 0 0 0 0 90 5.7 4 1 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +3.00744E7 6.7 -0.6 60 98800 0 0 287 0 0 0 0 0 0 0 70 5.7 4 4 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +3.0078E7 5.0 -1.7 62 98800 0 0 274 0 0 0 0 0 0 0 70 6.2 2 2 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +3.00816E7 4.4 -2.2 62 98800 0 0 263 0 0 0 0 0 0 0 70 6.2 0 0 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +3.00852E7 4.4 -2.2 62 98900 0 0 263 0 0 0 0 0 0 0 70 6.2 0 0 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +3.00888E7 3.9 -2.8 62 98800 0 0 269 0 0 0 0 0 0 0 80 6.7 2 2 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +3.00924E7 3.3 -2.8 65 98900 0 0 269 0 0 0 0 0 0 0 70 6.7 3 3 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +3.0096E7 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 10 0.0000 0 88 0.000 0.0 1.0 +3.00996E7 3.3 -1.1 73 99000 221 1412 275 104 250 64 11383 5250 7029 2015 70 6.2 5 5 32.2 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +3.01032E7 6.1 -0.6 63 99000 445 1412 280 245 567 66 28705 25604 7753 2754 80 8.8 2 2 24.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +3.01068E7 8.3 -1.1 52 99000 618 1412 284 381 685 80 45644 38929 9611 3642 80 8.2 3 1 24.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +3.01104E7 9.4 -1.7 46 98900 729 1412 306 377 246 250 42137 21520 28096 9318 90 6.2 7 7 24.1 980 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +3.0114E7 10.0 -1.7 44 98800 769 1412 320 352 99 297 39071 9303 33162 10643 70 6.7 10 9 40.2 1010 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +3.01176E7 10.6 -3.3 38 98700 735 1412 321 416 331 242 46687 28612 27306 9196 100 6.7 10 9 40.2 1010 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +3.01212E7 10.0 -3.9 38 98700 631 1412 326 200 7 197 22375 561 22149 7312 100 5.2 10 10 40.2 700 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +3.01248E7 9.4 -3.3 41 98600 463 1412 324 147 19 141 16277 1261 15682 4885 90 5.7 10 10 40.2 640 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +3.01284E7 10.0 -3.3 39 98600 243 1412 327 61 7 60 6770 155 6680 2016 80 5.2 10 10 40.2 670 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +3.0132E7 8.9 -3.3 42 98500 29 694 322 19 2 19 0 0 0 0 100 5.7 10 10 40.2 640 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +3.01356E7 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 16 0.0000 0 88 0.000 0.0 1.0 +3.01392E7 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 16 0.0000 0 88 0.000 0.0 1.0 +3.01428E7 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 16 0.0000 0 88 0.000 0.0 1.0 +3.01464E7 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 16 0.0000 0 88 0.000 0.0 1.0 +3.015E7 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 16 0.0000 0 88 0.000 0.0 1.0 +3.01536E7 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 16 0.0000 0 88 0.000 0.0 1.0 +3.01572E7 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 16 0.0000 0 88 0.000 0.0 1.0 +3.01608E7 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 17 0.0000 0 88 0.000 0.0 1.0 +3.01644E7 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 17 0.0000 0 88 0.000 0.0 1.0 +3.0168E7 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 17 0.0000 0 88 0.000 0.0 1.0 +3.01716E7 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 17 0.0000 0 88 0.000 0.0 1.0 +3.01752E7 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 17 0.0000 0 88 0.000 0.0 1.0 +3.01788E7 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 17 0.0000 0 88 0.000 0.0 1.0 +3.01824E7 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 17 0.0000 0 88 0.000 0.0 1.0 +3.0186E7 5.0 2.8 86 98400 219 1412 311 43 1 43 4852 8 4864 1532 40 2.6 10 10 11.3 310 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +3.01896E7 6.1 3.3 83 98400 442 1412 308 149 33 139 16410 2092 15377 4719 100 3.1 10 9 16.1 270 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +3.01932E7 7.8 3.9 77 98300 616 1412 316 252 64 224 27757 5322 24806 7733 50 2.6 10 9 16.1 270 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +3.01968E7 10.6 4.4 66 98300 727 1412 314 402 358 217 45355 28665 24610 8536 360 2.1 7 6 19.3 2290 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +3.02004E7 11.7 5.0 64 98100 768 1412 320 382 326 204 43617 25166 23409 8461 20 2.6 7 6 19.3 2130 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +3.0204E7 14.4 6.7 60 98100 735 1412 338 367 314 203 41645 24076 23151 8216 320 3.6 8 7 24.1 2130 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +3.02076E7 14.4 7.2 62 98100 631 1412 361 223 4 222 24617 324 24638 7827 350 5.2 10 10 24.1 1520 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +3.02112E7 13.3 7.8 69 98100 464 1412 346 158 75 134 17507 4549 14913 4741 350 5.7 10 9 24.1 1370 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +3.02148E7 11.1 7.2 77 98200 245 1412 335 76 16 74 8264 407 8077 2295 320 5.7 10 9 32.2 1520 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +3.02184E7 10.6 7.2 80 98200 30 694 333 11 2 11 0 0 0 0 310 3.6 10 9 24.1 1830 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +3.0222E7 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 17 0.0000 0 88 0.000 0.0 1.0 +3.02256E7 8.9 6.7 86 98300 0 0 304 0 0 0 0 0 0 0 310 6.2 4 4 19.3 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +3.02292E7 7.8 6.7 93 98200 0 0 294 0 0 0 0 0 0 0 310 5.7 2 2 12.9 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +3.02328E7 7.2 6.7 96 98200 0 0 291 0 0 0 0 0 0 0 310 6.2 2 2 16.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +3.02364E7 7.2 5.0 86 98300 0 0 286 0 0 0 0 0 0 0 340 6.2 1 1 19.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +3.024E7 6.7 3.3 80 98300 0 0 282 0 0 0 0 0 0 0 320 7.2 1 1 19.3 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +3.02436E7 5.0 1.1 76 98300 0 0 273 0 0 0 0 0 0 0 320 10.8 1 1 24.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +3.02472E7 3.9 0.0 76 98300 0 0 272 0 0 0 0 0 0 0 320 8.2 2 2 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +3.02508E7 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 9 0.0000 0 88 0.000 0.0 1.0 +3.02544E7 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 8 0.0000 0 88 0.000 0.0 1.0 +3.0258E7 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 7 0.0000 0 88 0.000 0.0 1.0 +3.02616E7 -1.1 -6.1 69 98600 0 0 249 0 0 0 0 0 0 0 330 7.2 4 3 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3.02652E7 -1.7 -7.2 66 98800 0 0 236 0 0 0 0 0 0 0 320 6.2 0 0 32.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.02688E7 -2.2 -7.8 66 98800 17 530 234 17 84 8 0 0 0 0 330 9.3 0 0 48.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.02724E7 -1.7 -8.3 61 99000 216 1413 235 116 578 28 12341 43938 4532 578 330 7.7 0 0 48.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.0276E7 -0.6 -8.9 54 99100 440 1413 238 293 806 41 31233 73738 6438 994 330 8.8 0 0 48.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.02796E7 1.1 -8.9 48 99200 614 1413 244 445 898 53 47291 86860 8056 1293 330 7.7 0 0 48.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.02832E7 1.7 -8.9 46 99100 726 1413 246 542 935 59 57506 92175 8784 1479 310 7.7 0 0 48.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.02868E7 3.3 -8.9 41 99100 767 1413 252 579 949 62 61366 94012 9152 1563 300 6.2 0 0 48.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.02904E7 3.9 -9.4 38 99000 735 1413 254 551 941 60 58419 92833 8914 1500 320 7.2 0 0 48.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.0294E7 4.4 -10.6 33 99000 632 1413 255 461 906 54 48929 87840 8182 1320 320 6.7 0 0 48.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.02976E7 4.4 -11.1 32 99000 465 1413 254 315 823 43 33515 75930 6721 1037 310 6.7 0 0 48.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.03012E7 3.3 -11.7 33 99000 246 1413 250 138 621 30 14660 48772 4838 638 310 5.2 0 0 48.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.03048E7 1.1 -11.7 38 99000 30 718 246 24 117 12 0 0 0 0 310 5.2 1 1 48.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.03084E7 0.0 -12.2 40 99000 0 0 245 0 0 0 0 0 0 0 330 5.7 2 2 48.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.0312E7 -1.1 -12.2 43 99000 0 0 244 0 0 0 0 0 0 0 310 4.6 3 3 48.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.03156E7 -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 5 0.0000 0 88 0.000 0.0 1.0 +3.03192E7 -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 5 0.0000 0 88 0.000 0.0 1.0 +3.03228E7 -1.7 -12.2 45 99100 0 0 243 0 0 0 0 0 0 0 300 3.6 5 4 48.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.03264E7 -2.2 -11.7 49 99200 0 0 238 0 0 0 0 0 0 0 280 4.1 3 2 48.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.033E7 -3.3 -12.2 51 99100 0 0 226 0 0 0 0 0 0 0 330 3.1 0 0 48.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3.03336E7 -3.9 -12.2 53 99100 0 0 224 0 0 0 0 0 0 0 320 2.6 0 0 48.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3.03372E7 -3.9 -12.2 53 99100 0 0 224 0 0 0 0 0 0 0 320 2.6 0 0 48.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3.03408E7 -3.9 -12.2 53 99000 0 0 224 0 0 0 0 0 0 0 320 2.1 0 0 48.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3.03444E7 -5.0 -11.7 60 99000 0 0 221 0 0 0 0 0 0 0 330 3.1 0 0 48.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3.0348E7 -5.0 -11.1 63 99000 0 0 221 0 0 0 0 0 0 0 320 2.1 0 0 48.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3.03516E7 -5.0 -11.7 60 99100 0 0 225 0 0 0 0 0 0 0 320 3.6 1 1 48.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3.03552E7 -5.6 -11.7 62 99100 16 530 223 14 68 7 0 0 0 0 310 2.6 1 1 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3.03588E7 -2.2 -10.6 53 99100 214 1413 231 114 573 27 12122 43347 4377 572 320 3.1 0 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3.03624E7 0.6 -10.0 45 99100 438 1413 249 268 602 81 30894 30497 9366 3230 270 2.6 2 2 32.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +3.0366E7 3.3 -9.4 39 99100 613 1413 260 421 662 132 48519 45381 15273 5463 250 2.6 8 2 32.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +3.03696E7 4.4 -10.6 33 99000 725 1413 266 470 671 124 55588 45909 14720 5612 220 2.6 9 3 40.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +3.03732E7 6.7 -10.6 28 98900 766 1413 275 558 732 159 65195 54265 18657 7024 260 2.6 9 3 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +3.03768E7 7.8 -11.1 25 98800 735 1413 278 482 741 95 58280 47273 11522 4499 250 3.1 9 3 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +3.03804E7 10.0 -11.1 22 98800 632 1413 287 383 575 125 44497 38927 14578 5311 220 3.1 9 3 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +3.0384E7 10.0 -11.1 22 98700 466 1413 284 286 624 79 33244 32358 9210 3238 280 3.6 5 2 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +3.03876E7 10.0 -11.7 21 98700 247 1413 275 132 551 35 15341 6676 4075 1347 270 2.6 3 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3.03912E7 7.8 -12.2 23 98700 31 718 266 26 119 13 0 0 0 0 240 2.6 2 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3.03948E7 6.7 -10.6 28 98600 0 0 263 0 0 0 0 0 0 0 240 3.1 2 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3.03984E7 5.6 -10.6 31 98700 0 0 259 0 0 0 0 0 0 0 290 2.1 2 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3.0402E7 4.4 -10.0 35 98600 0 0 255 0 0 0 0 0 0 0 230 3.1 1 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3.04056E7 3.3 -9.4 39 98600 0 0 252 0 0 0 0 0 0 0 270 3.1 0 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3.04092E7 2.2 -8.9 44 98600 0 0 248 0 0 0 0 0 0 0 270 2.6 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3.04128E7 2.2 -8.9 44 98600 0 0 248 0 0 0 0 0 0 0 260 2.6 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3.04164E7 1.7 -8.9 46 98500 0 0 246 0 0 0 0 0 0 0 210 1.5 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3.042E7 1.1 -8.9 48 98500 0 0 244 0 0 0 0 0 0 0 260 2.1 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3.04236E7 0.6 -9.4 48 98500 0 0 242 0 0 0 0 0 0 0 250 2.6 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3.04272E7 0.0 -8.9 52 98400 0 0 240 0 0 0 0 0 0 0 280 3.6 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3.04308E7 0.0 -8.9 52 98400 0 0 240 0 0 0 0 0 0 0 270 3.6 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3.04344E7 0.0 -8.9 52 98400 0 0 240 0 0 0 0 0 0 0 300 3.6 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3.0438E7 0.0 -8.9 52 98500 0 0 240 0 0 0 0 0 0 0 270 3.6 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3.04416E7 -0.6 -8.9 54 98500 15 506 238 18 93 7 0 0 0 0 290 3.1 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3.04452E7 2.2 -8.3 46 98500 211 1413 249 114 598 24 12178 45216 3914 559 290 3.6 0 0 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3.04488E7 4.4 -8.3 39 98500 436 1413 257 286 807 36 30610 73774 5693 937 290 5.2 0 0 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +3.04524E7 7.2 -7.2 35 98500 611 1413 268 437 900 46 46683 87157 7048 1208 290 6.2 0 0 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +3.0456E7 10.0 -7.8 28 98400 724 1413 279 536 940 52 57121 92768 7798 1386 260 5.2 0 0 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +3.04596E7 11.7 -8.3 24 98300 766 1413 285 572 950 55 60861 94199 8173 1470 250 6.7 0 0 40.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +3.04632E7 13.9 -8.9 20 98200 735 1413 293 543 928 58 57646 91592 8633 1477 260 6.2 1 0 40.2 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +3.04668E7 13.9 -10.0 18 98200 633 1413 292 456 907 47 48615 88063 7173 1237 250 6.2 0 0 40.2 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +3.04704E7 14.4 -9.4 18 98200 467 1413 295 313 829 38 33457 76687 5976 986 250 5.2 0 0 40.2 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +3.0474E7 13.9 -8.3 21 98200 249 1413 294 139 627 28 14828 49552 4532 637 240 4.6 1 0 40.2 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +3.04776E7 12.2 -7.8 24 98200 32 718 288 26 147 11 0 0 0 0 250 3.6 1 0 32.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +3.04812E7 9.4 -5.6 35 98200 0 0 279 0 0 0 0 0 0 0 280 3.1 2 0 32.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +3.04848E7 8.3 -4.4 41 98200 0 0 276 0 0 0 0 0 0 0 270 3.1 2 0 32.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +3.04884E7 6.1 -3.9 49 98200 0 0 268 0 0 0 0 0 0 0 270 3.6 2 0 32.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +3.0492E7 5.6 -3.9 51 98200 0 0 266 0 0 0 0 0 0 0 270 4.1 2 0 32.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +3.04956E7 5.6 -3.9 51 98300 0 0 274 0 0 0 0 0 0 0 280 4.1 6 2 32.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +3.04992E7 5.6 -3.3 53 98300 0 0 271 0 0 0 0 0 0 0 280 4.6 8 1 32.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +3.05028E7 4.4 -3.3 57 98300 0 0 273 0 0 0 0 0 0 0 270 3.1 8 3 24.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +3.05064E7 3.9 -3.3 60 98300 0 0 271 0 0 0 0 0 0 0 270 4.1 8 3 24.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +3.051E7 3.9 -3.3 60 98300 0 0 268 0 0 0 0 0 0 0 280 3.6 7 2 24.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +3.05136E7 3.3 -3.3 62 98300 0 0 266 0 0 0 0 0 0 0 270 3.6 8 2 24.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +3.05172E7 2.8 -3.3 65 98300 0 0 261 0 0 0 0 0 0 0 280 3.6 5 1 24.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +3.05208E7 2.8 -3.3 65 98400 0 0 261 0 0 0 0 0 0 0 280 4.1 5 1 24.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +3.05244E7 2.8 -3.3 65 98400 0 0 261 0 0 0 0 0 0 0 320 2.6 5 1 24.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +3.0528E7 3.3 -3.3 62 98500 15 483 266 8 10 7 0 0 0 0 350 2.1 7 2 24.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +3.05316E7 6.7 -2.2 53 98600 209 1413 294 59 3 58 6475 49 6387 1843 350 3.6 9 7 24.1 7620 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +3.05352E7 10.0 -1.7 44 98700 434 1413 313 154 152 107 17314 8494 12076 3951 30 4.6 10 8 24.1 7620 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +3.05388E7 11.1 -3.3 37 98700 610 1413 316 224 125 170 25251 9353 19253 6519 100 5.2 10 8 24.1 7620 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +3.05424E7 11.1 -3.9 35 98700 723 1413 307 462 453 229 51965 38359 25893 8785 100 5.7 9 6 24.1 7620 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +3.0546E7 13.9 -3.9 29 98600 766 1413 312 420 283 267 47014 25448 30056 10014 90 6.2 8 3 24.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +3.05496E7 14.4 -4.4 27 98500 735 1413 313 451 540 169 52097 40369 19609 7203 110 4.6 8 3 24.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +3.05532E7 15.0 -4.4 26 98500 634 1413 316 362 370 196 40531 29617 22054 7301 90 6.2 8 3 24.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +3.05568E7 15.0 -4.4 26 98500 468 1413 318 220 253 136 24463 16559 15188 4806 100 4.6 9 4 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +3.05604E7 13.9 -3.9 29 98600 251 1413 314 88 119 67 9703 3150 7413 2190 80 5.7 10 4 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +3.0564E7 11.7 -3.9 34 98700 33 742 310 12 6 11 0 0 0 0 70 5.7 10 6 24.1 7620 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +3.05676E7 10.6 -3.9 36 98700 0 0 298 0 0 0 0 0 0 0 90 5.7 9 3 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +3.05712E7 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 10 0.0000 0 88 0.000 0.0 1.0 +3.05748E7 9.4 -3.9 39 98800 0 0 297 0 0 0 0 0 0 0 80 6.2 10 5 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +3.05784E7 8.3 -3.9 42 98800 0 0 285 0 0 0 0 0 0 0 70 6.2 8 2 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +3.0582E7 7.2 -3.3 47 98900 0 0 281 0 0 0 0 0 0 0 90 6.7 8 2 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +3.05856E7 6.7 -3.3 49 98900 0 0 279 0 0 0 0 0 0 0 80 6.7 5 2 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +3.05892E7 5.6 -3.3 53 98900 0 0 271 0 0 0 0 0 0 0 70 6.2 5 1 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3.05928E7 5.0 -3.3 55 98900 0 0 269 0 0 0 0 0 0 0 60 5.7 4 1 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3.05964E7 3.9 -3.3 60 98900 0 0 265 0 0 0 0 0 0 0 70 5.2 4 1 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3.06E7 2.8 -3.3 65 98900 0 0 261 0 0 0 0 0 0 0 80 6.2 4 1 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3.06036E7 1.7 -2.2 76 98900 0 0 261 0 0 0 0 0 0 0 70 6.2 5 2 19.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3.06072E7 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 9 0.0000 0 88 0.000 0.0 1.0 +3.06108E7 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 9 0.0000 0 88 0.000 0.0 1.0 +3.06144E7 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 9 0.0000 0 88 0.000 0.0 1.0 +3.0618E7 2.2 -0.6 82 99000 207 1414 295 50 3 49 5557 31 5462 1646 80 6.7 10 10 9.7 270 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +3.06216E7 2.8 0.0 82 99100 432 1414 299 169 9 166 18303 645 18068 5057 90 8.2 10 10 11.3 370 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +3.06252E7 4.4 0.0 73 99100 608 1414 306 221 4 219 24373 335 24281 7557 60 7.2 10 10 14.5 430 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +3.06288E7 5.0 0.0 70 99000 722 1414 308 252 10 247 28138 867 27732 9177 50 7.2 10 10 14.5 670 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +3.06324E7 5.6 0.0 68 99000 766 1414 311 247 8 243 27834 681 27532 9469 60 6.2 10 10 16.1 700 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +3.0636E7 6.1 0.6 68 98900 736 1414 314 276 1 275 30615 91 30680 9857 80 5.7 10 10 19.3 700 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +3.06396E7 6.7 1.1 68 98800 635 1414 317 207 2 206 23055 161 23061 7527 100 5.2 10 10 19.3 820 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +3.06432E7 7.2 1.1 65 98800 470 1414 319 144 2 143 15929 132 15890 4962 110 6.2 10 10 19.3 700 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +3.06468E7 6.7 1.1 68 98800 253 1414 317 69 1 69 7585 26 7611 2237 110 6.2 10 10 19.3 820 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +3.06504E7 6.1 1.1 71 98800 34 742 314 13 0 13 0 0 0 0 70 6.2 10 10 19.3 850 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +3.0654E7 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 14 0.0000 0 88 0.000 0.0 1.0 +3.06576E7 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 14 0.0000 0 88 0.000 0.0 1.0 +3.06612E7 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 15 0.0000 0 88 0.000 0.0 1.0 +3.06648E7 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 15 0.0000 0 88 0.000 0.0 1.0 +3.06684E7 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 15 0.0000 0 88 0.000 0.0 1.0 +3.0672E7 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 16 0.0000 0 88 0.000 0.0 1.0 +3.06756E7 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 16 0.0000 0 88 0.000 0.0 1.0 +3.06792E7 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 16 0.0000 0 88 0.000 0.0 1.0 +3.06828E7 4.4 1.7 82 98500 0 0 275 0 0 0 0 0 0 0 100 5.7 3 2 19.3 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +3.06864E7 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 17 0.0000 0 88 0.000 0.0 1.0 +3.069E7 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 17 0.0000 0 88 0.000 0.0 1.0 +3.06936E7 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 18 0.0000 0 88 0.000 0.0 1.0 +3.06972E7 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 18 0.0000 0 88 0.000 0.0 1.0 +3.07008E7 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 18 0.0000 0 88 0.000 0.0 1.0 +3.07044E7 5.0 2.2 82 98700 205 1414 311 43 1 42 4831 5 4731 1470 70 4.1 10 10 11.3 850 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +3.0708E7 6.1 2.8 79 98700 430 1414 316 152 2 151 16571 133 16540 4830 140 3.6 10 10 11.3 850 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +3.07116E7 6.7 2.8 76 98600 607 1414 319 219 0 219 22131 0 22314 7544 90 6.7 10 10 11.3 850 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +3.07152E7 7.8 3.3 74 98400 721 1414 325 256 1 256 28468 87 28628 9353 90 5.2 10 10 11.3 980 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +3.07188E7 8.9 3.3 68 98400 766 1414 330 284 1 284 31564 91 31749 10348 80 5.2 10 10 11.3 2740 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +3.07224E7 9.4 5.0 74 98300 736 1414 334 259 0 259 26420 0 26649 9552 130 5.7 10 10 11.3 3050 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +3.0726E7 10.0 5.0 71 98200 636 1414 337 222 2 221 24554 164 24574 7837 110 5.2 10 10 11.3 640 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +3.07296E7 10.0 5.0 71 98200 472 1414 337 161 1 160 17627 69 17601 5291 140 4.1 10 10 11.3 550 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +3.07332E7 11.1 6.1 72 98300 255 1414 343 49 1 49 5534 15 5549 1774 110 4.1 10 10 16.1 460 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +3.07368E7 10.0 6.7 80 98300 35 766 339 22 0 22 0 0 0 0 150 3.1 10 10 16.1 460 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +3.07404E7 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 23 0.0000 0 88 0.000 0.0 1.0 +3.0744E7 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 22 0.0000 0 88 0.000 0.0 1.0 +3.07476E7 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 22 0.0000 0 88 0.000 0.0 1.0 +3.07512E7 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 21 0.0000 0 88 0.000 0.0 1.0 +3.07548E7 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 20 0.0000 0 88 0.000 0.0 1.0 +3.07584E7 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 20 0.0000 0 88 0.000 0.0 1.0 +3.0762E7 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 19 0.0000 0 88 0.000 0.0 1.0 +3.07656E7 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 18 0.0000 0 88 0.000 0.0 1.0 +3.07692E7 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 18 0.0000 0 88 0.000 0.0 1.0 +3.07728E7 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 17 0.0000 0 88 0.000 0.0 1.0 +3.07764E7 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 16 0.0000 0 88 0.000 0.0 1.0 +3.078E7 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 16 0.0000 0 88 0.000 0.0 1.0 +3.07836E7 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 15 0.0000 0 88 0.000 0.0 1.0 +3.07872E7 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 15 0.0000 0 88 0.000 0.0 1.0 +3.07908E7 7.8 7.8 100 98300 203 1414 330 66 1 66 7119 16 7147 1946 110 5.2 10 10 0.4 0 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +3.07944E7 7.8 7.8 100 98400 429 1414 330 141 1 141 15422 62 15493 4650 130 4.1 10 10 0.4 0 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +3.0798E7 8.3 8.3 100 98400 606 1414 332 211 1 211 23257 79 23380 7387 80 3.6 10 10 0.4 30 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +3.08016E7 9.4 8.9 96 98400 721 1414 338 248 2 247 27590 166 27633 9162 120 4.1 10 10 1.6 60 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +3.08052E7 10.0 9.4 96 98200 766 1414 342 278 1 277 30879 87 30949 10211 110 4.1 10 10 2.4 90 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +3.08088E7 11.7 9.4 86 98200 737 1414 328 304 175 213 34319 13458 24171 8485 120 5.2 8 7 9.7 3050 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +3.08124E7 12.2 8.9 80 98100 637 1414 352 228 12 222 25169 962 24639 7866 120 4.6 10 10 9.7 270 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +3.0816E7 12.2 8.9 80 98100 473 1414 352 127 10 124 14181 577 13904 4554 110 5.2 10 10 9.7 270 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +3.08196E7 12.2 10.0 86 98100 257 1414 353 64 2 63 7072 40 6985 2127 110 5.2 10 10 9.7 270 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +3.08232E7 12.2 10.0 86 98100 36 766 353 12 2 11 0 0 0 0 110 4.6 10 10 9.7 910 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +3.08268E7 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 18 0.0000 0 88 0.000 0.0 1.0 +3.08304E7 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 18 0.0000 0 88 0.000 0.0 1.0 +3.0834E7 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 19 0.0000 0 88 0.000 0.0 1.0 +3.08376E7 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 19 0.0000 0 88 0.000 0.0 1.0 +3.08412E7 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 19 0.0000 0 88 0.000 0.0 1.0 +3.08448E7 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 19 0.0000 0 88 0.000 0.0 1.0 +3.08484E7 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 20 0.0000 0 88 0.000 0.0 1.0 +3.0852E7 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 20 0.0000 0 88 0.000 0.0 1.0 +3.08556E7 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 20 0.0000 0 88 0.000 0.0 1.0 +3.08592E7 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 20 0.0000 0 88 0.000 0.0 1.0 +3.08628E7 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 20 0.0000 0 88 0.000 0.0 1.0 +3.08664E7 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 21 0.0000 0 88 0.000 0.0 1.0 +3.087E7 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 21 0.0000 0 88 0.000 0.0 1.0 +3.08736E7 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 21 0.0000 0 88 0.000 0.0 1.0 +3.08772E7 15.0 13.3 90 97400 201 1414 371 59 0 59 5732 0 5773 1823 160 7.7 10 10 11.3 270 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +3.08808E7 16.7 13.9 84 97300 427 1414 381 102 18 97 11460 816 10939 3657 170 8.2 10 10 6.4 340 9 999999999 20 0.0000 0 88 0.000 1.8 1.0 +3.08844E7 15.0 14.4 97 97400 605 1414 373 130 1 130 14848 59 14909 5363 240 9.8 10 10 2.4 150 9 999999999 19 0.0000 0 88 0.000 1.0 1.0 +3.0888E7 13.3 11.7 90 97400 721 1414 361 128 7 124 15024 426 14611 5593 280 7.7 10 10 9.7 1830 9 999999999 19 0.0000 0 88 0.000 1.8 1.0 +3.08916E7 12.8 11.1 90 97400 766 1414 358 151 8 146 17642 519 17130 6558 210 5.7 10 10 4.8 1370 9 999999999 19 0.0000 0 88 0.000 0.8 1.0 +3.08952E7 12.8 11.7 93 97200 738 1414 358 143 8 139 16684 507 16284 6197 220 5.7 10 10 4.8 270 9 999999999 18 0.0000 0 88 0.000 1.0 1.0 +3.08988E7 12.2 11.7 96 97100 639 1414 355 204 3 203 22657 225 22663 7488 220 6.2 10 10 16.1 240 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +3.09024E7 12.8 11.7 93 97100 475 1414 358 162 4 161 17681 262 17658 5334 210 5.7 10 10 19.3 310 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +3.0906E7 12.8 11.1 90 97100 259 1414 340 70 80 56 7812 1307 6269 1968 230 7.7 8 8 32.2 460 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +3.09096E7 11.7 10.0 90 97100 38 790 320 15 29 12 0 0 0 0 240 6.2 4 4 32.2 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +3.09132E7 11.1 7.2 77 97200 0 0 309 0 0 0 0 0 0 0 240 5.2 2 2 32.2 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +3.09168E7 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 16 0.0000 0 88 0.000 0.0 1.0 +3.09204E7 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 16 0.0000 0 88 0.000 0.0 1.0 +3.0924E7 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 15 0.0000 0 88 0.000 0.0 1.0 +3.09276E7 8.9 5.0 77 97300 0 0 304 0 0 0 0 0 0 0 270 7.7 5 5 32.2 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +3.09312E7 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 15 0.0000 0 88 0.000 0.0 1.0 +3.09348E7 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 15 0.0000 0 88 0.000 0.0 1.0 +3.09384E7 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 15 0.0000 0 88 0.000 0.0 1.0 +3.0942E7 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 15 0.0000 0 88 0.000 0.0 1.0 +3.09456E7 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 15 0.0000 0 88 0.000 0.0 1.0 +3.09492E7 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 14 0.0000 0 88 0.000 0.0 1.0 +3.09528E7 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 14 0.0000 0 88 0.000 0.0 1.0 +3.09564E7 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 14 0.0000 0 88 0.000 0.0 1.0 +3.096E7 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 14 0.0000 0 88 0.000 0.0 1.0 +3.09636E7 5.0 2.2 82 97300 199 1414 311 40 1 40 4500 3 4512 1404 280 8.2 10 10 19.3 400 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +3.09672E7 5.0 2.8 86 97400 426 1414 311 73 11 70 8463 481 8138 2842 280 8.8 10 10 19.3 580 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +3.09708E7 5.6 2.8 83 97400 604 1414 314 184 2 183 20558 151 20545 6789 280 10.3 10 10 19.3 580 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +3.09744E7 5.0 2.8 86 97500 720 1414 311 210 8 206 23767 632 23432 8186 310 9.8 10 10 24.1 580 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +3.0978E7 4.4 2.8 89 97400 766 1414 309 137 1 136 16153 67 16099 6193 310 9.3 10 10 12.9 400 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +3.09816E7 6.1 1.7 73 97400 739 1414 306 249 82 206 28281 6489 23515 8308 300 9.8 10 9 19.3 700 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +3.09852E7 6.7 1.7 71 97400 641 1414 318 204 9 200 22792 712 22458 7432 300 8.2 10 10 24.1 640 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +3.09888E7 6.1 1.7 73 97500 477 1414 315 131 10 128 14645 620 14369 4670 310 8.2 10 10 32.2 700 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +3.09924E7 5.6 1.7 76 97500 261 1414 313 77 10 75 8430 298 8241 2390 310 7.7 10 10 48.3 700 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +3.0996E7 5.0 1.7 79 97600 39 790 310 15 1 15 0 0 0 0 310 7.7 10 10 32.2 610 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +3.09996E7 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 11 0.0000 0 88 0.000 0.0 1.0 +3.10032E7 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 11 0.0000 0 88 0.000 0.0 1.0 +3.10068E7 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 10 0.0000 0 88 0.000 0.0 1.0 +3.10104E7 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 10 0.0000 0 88 0.000 0.0 1.0 +3.1014E7 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 10 0.0000 0 88 0.000 0.0 1.0 +3.10176E7 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 9 0.0000 0 88 0.000 0.0 1.0 +3.10212E7 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 9 0.0000 0 88 0.000 0.0 1.0 +3.10248E7 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 9 0.0000 0 88 0.000 0.0 1.0 +3.10284E7 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 8 0.0000 0 88 0.000 0.0 1.0 +3.1032E7 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 8 0.0000 0 88 0.000 0.0 1.0 +3.10356E7 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 8 0.0000 0 88 0.000 0.0 1.0 +3.10392E7 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 7 0.0000 0 88 0.000 0.0 1.0 +3.10428E7 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 7 0.0000 0 88 0.000 0.0 1.0 +3.10464E7 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 7 0.0000 0 88 0.000 0.0 1.0 +3.105E7 3.3 1.1 86 98100 198 1414 294 39 15 36 4424 10 4093 1293 310 7.7 9 9 24.1 340 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +3.10536E7 5.0 1.7 79 98200 425 1414 278 233 494 84 26622 23668 9629 3278 320 7.7 3 2 32.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +3.10572E7 6.7 1.7 71 98200 604 1414 281 380 617 115 44081 38527 13389 4871 320 7.2 4 1 32.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +3.10608E7 8.3 1.7 63 98200 720 1414 282 513 742 133 60133 49816 15651 5919 320 7.2 6 0 32.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +3.10644E7 9.4 1.7 59 98100 767 1414 286 555 768 137 65427 52171 16215 6232 310 7.2 5 0 32.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +3.1068E7 11.7 1.7 51 98100 740 1414 296 525 763 124 62080 50169 14718 5653 290 6.7 4 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +3.10716E7 12.2 1.7 49 98000 642 1414 298 445 698 127 51584 45628 14779 5408 300 5.7 6 0 40.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +3.10752E7 12.2 1.7 49 98000 480 1414 298 300 605 94 34402 32364 10816 3751 320 5.2 5 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3.10788E7 10.0 1.1 54 98000 264 1414 288 127 413 51 14367 7981 5785 1850 310 5.2 1 0 40.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3.10824E7 8.3 1.1 61 98100 40 813 281 21 46 17 2179 0 1771 351 310 5.2 1 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3.1086E7 6.7 1.1 68 98100 0 0 275 0 0 0 0 0 0 0 310 4.1 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3.10896E7 5.6 1.1 73 98100 0 0 270 0 0 0 0 0 0 0 300 3.6 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3.10932E7 4.4 1.1 79 98100 0 0 266 0 0 0 0 0 0 0 300 5.2 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3.10968E7 3.9 1.1 82 98100 0 0 264 0 0 0 0 0 0 0 300 6.2 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +3.11004E7 3.3 0.6 82 98100 0 0 261 0 0 0 0 0 0 0 300 5.2 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +3.1104E7 3.3 0.6 82 98100 0 0 261 0 0 0 0 0 0 0 300 4.1 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +3.11076E7 2.8 0.6 85 98100 0 0 259 0 0 0 0 0 0 0 300 5.7 0 0 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +3.11112E7 2.8 0.6 85 98100 0 0 259 0 0 0 0 0 0 0 300 6.7 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +3.11148E7 2.2 0.6 89 98100 0 0 257 0 0 0 0 0 0 0 310 7.2 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +3.11184E7 2.2 0.6 89 98100 0 0 257 0 0 0 0 0 0 0 300 5.2 0 0 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +3.1122E7 2.2 0.0 85 98200 0 0 256 0 0 0 0 0 0 0 310 5.7 0 0 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3.11256E7 2.2 0.0 85 98200 0 0 256 0 0 0 0 0 0 0 310 5.2 0 0 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3.11292E7 1.7 -0.6 85 98200 0 0 254 0 0 0 0 0 0 0 320 6.2 0 0 32.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3.11328E7 2.2 -1.1 79 98300 10 413 255 8 28 5 0 0 0 0 310 7.7 0 0 32.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +3.11364E7 3.3 -1.1 73 98300 196 1415 265 94 408 37 10637 651 4197 1317 320 6.2 1 1 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +3.114E7 6.1 -0.6 63 98400 424 1415 271 265 707 52 31453 27933 6185 2210 300 4.1 0 0 32.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +3.11436E7 9.4 -0.6 50 98400 603 1415 284 413 792 74 49601 43527 8911 3369 300 5.2 2 0 32.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +3.11472E7 12.8 -1.7 37 98400 721 1415 306 472 731 99 56652 45654 11921 4625 300 5.2 4 2 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3.11508E7 15.0 -1.7 32 98300 768 1415 316 525 687 151 61483 48873 17758 6741 300 5.2 6 2 32.2 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3.11544E7 16.7 -2.2 28 98200 742 1415 326 495 579 190 56667 44956 21855 7869 300 5.2 8 3 32.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +3.1158E7 18.3 -2.2 25 98200 644 1415 336 420 574 158 47910 41524 18103 6377 300 5.7 9 4 32.2 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +3.11616E7 16.7 -1.1 30 98200 482 1415 330 226 330 113 25567 19537 12833 4308 340 6.2 10 4 32.2 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +3.11652E7 15.0 -1.1 33 98300 266 1415 325 98 120 75 10756 3735 8262 2413 300 5.2 10 5 32.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +3.11688E7 13.3 -1.1 37 98300 42 837 315 25 27 22 2545 0 2250 345 310 5.7 8 4 24.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +3.11724E7 11.7 -0.6 43 98300 0 0 306 0 0 0 0 0 0 0 330 6.2 7 3 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +3.1176E7 10.6 0.0 48 98400 0 0 302 0 0 0 0 0 0 0 340 5.7 8 3 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +3.11796E7 9.4 0.6 54 98400 0 0 297 0 0 0 0 0 0 0 310 4.6 8 3 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +3.11832E7 8.3 0.6 58 98400 0 0 293 0 0 0 0 0 0 0 320 5.2 8 3 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +3.11868E7 7.8 0.6 61 98400 0 0 291 0 0 0 0 0 0 0 360 2.6 10 3 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +3.11904E7 7.2 1.1 65 98400 0 0 289 0 0 0 0 0 0 0 320 5.2 10 3 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +3.1194E7 5.6 1.1 73 98400 0 0 276 0 0 0 0 0 0 0 320 5.7 3 1 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +3.11976E7 5.0 1.1 76 98400 0 0 273 0 0 0 0 0 0 0 350 3.1 3 1 24.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +3.12012E7 3.9 1.1 82 98400 0 0 269 0 0 0 0 0 0 0 340 4.6 2 1 24.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +3.12048E7 3.3 1.1 86 98500 0 0 262 0 0 0 0 0 0 0 350 4.1 0 0 16.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +3.12084E7 2.8 1.1 89 98600 0 0 260 0 0 0 0 0 0 0 340 4.6 0 0 12.9 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +3.1212E7 2.8 1.1 89 98600 0 0 265 0 0 0 0 0 0 0 340 3.1 1 1 12.9 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +3.12156E7 2.2 1.1 92 98700 0 0 269 0 0 0 0 0 0 0 360 4.1 4 3 11.3 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +3.12192E7 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 12 0.0000 0 88 0.000 0.0 1.0 +3.12228E7 6.1 1.1 71 98900 195 1415 284 87 180 62 9422 2802 6739 1840 80 6.2 5 3 12.9 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +3.12264E7 6.7 0.6 65 99000 423 1415 293 183 235 112 20422 13170 12548 4014 70 5.7 8 6 12.9 7620 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +3.123E7 8.9 0.6 56 99100 603 1415 311 233 113 185 26016 8672 20757 6820 90 6.2 10 8 19.3 2740 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +3.12336E7 10.0 -0.6 48 99000 721 1415 314 328 115 270 36344 10438 30089 9597 70 7.2 10 8 19.3 2740 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +3.12372E7 11.1 -0.6 45 99000 769 1415 326 359 68 322 39546 6644 35689 11002 70 6.7 10 9 24.1 2740 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +3.12408E7 12.8 -0.6 40 98900 743 1415 334 281 70 244 31519 6019 27518 9279 60 5.2 10 9 24.1 2440 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +3.12444E7 13.3 -0.6 39 98900 646 1415 346 186 9 182 20976 688 20622 7037 110 5.2 10 10 24.1 7620 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +3.1248E7 12.8 -0.6 40 98900 484 1415 334 218 48 202 23512 3905 21903 5967 100 5.2 10 9 24.1 7620 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +3.12516E7 12.2 -1.1 40 99000 269 1415 331 105 50 96 11298 2038 10374 2754 80 4.1 10 9 24.1 7620 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +3.12552E7 11.1 -1.7 41 99000 44 837 325 13 7 12 1400 0 1296 331 80 4.6 10 9 24.1 7620 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +3.12588E7 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 11 0.0000 0 88 0.000 0.0 1.0 +3.12624E7 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 11 0.0000 0 88 0.000 0.0 1.0 +3.1266E7 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 11 0.0000 0 88 0.000 0.0 1.0 +3.12696E7 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 11 0.0000 0 88 0.000 0.0 1.0 +3.12732E7 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 11 0.0000 0 88 0.000 0.0 1.0 +3.12768E7 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 11 0.0000 0 88 0.000 0.0 1.0 +3.12804E7 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 11 0.0000 0 88 0.000 0.0 1.0 +3.1284E7 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 11 0.0000 0 88 0.000 0.0 1.0 +3.12876E7 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 11 0.0000 0 88 0.000 0.0 1.0 +3.12912E7 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 11 0.0000 0 88 0.000 0.0 1.0 +3.12948E7 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 11 0.0000 0 88 0.000 0.0 1.0 +3.12984E7 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 11 0.0000 0 88 0.000 0.0 1.0 +3.1302E7 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 11 0.0000 0 88 0.000 0.0 1.0 +3.13056E7 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 11 0.0000 0 88 0.000 0.0 1.0 +3.13092E7 6.1 -1.7 58 98800 194 1415 303 54 24 51 5945 231 5633 1639 110 3.6 10 9 24.1 4880 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +3.13128E7 7.2 -1.7 54 98800 422 1415 307 167 46 153 18166 3141 16723 4783 120 4.6 10 9 24.1 7010 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +3.13164E7 8.9 -1.1 50 98800 603 1415 325 180 8 177 20179 605 19937 6633 130 3.1 10 10 24.1 4880 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +3.132E7 12.2 -3.9 33 98700 721 1415 327 234 60 203 26561 4823 23156 8106 140 4.6 10 9 24.1 4880 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +3.13236E7 13.3 -4.4 29 98600 770 1415 313 483 541 188 55641 41976 21760 7974 130 4.1 10 5 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +3.13272E7 14.4 -5.0 26 98500 745 1415 346 188 5 185 21591 387 21346 7736 140 3.1 10 10 48.3 1070 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +3.13308E7 15.0 -4.4 26 98400 648 1415 349 183 2 182 20663 155 20648 7050 90 3.6 10 10 32.2 1070 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +3.13344E7 14.4 -2.2 32 98400 487 1415 349 148 11 144 16437 741 16064 5083 140 2.1 10 10 24.1 850 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +3.1338E7 13.9 -1.7 34 98300 272 1415 347 96 5 95 10351 203 10287 2761 110 4.1 10 10 24.1 3660 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +3.13416E7 13.3 -1.7 36 98300 45 861 345 16 1 16 1687 0 1693 382 130 3.1 10 10 24.1 1010 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +3.13452E7 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 14 0.0000 0 88 0.000 0.0 1.0 +3.13488E7 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 15 0.0000 0 88 0.000 0.0 1.0 +3.13524E7 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 15 0.0000 0 88 0.000 0.0 1.0 +3.1356E7 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 16 0.0000 0 88 0.000 0.0 1.0 +3.13596E7 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 17 0.0000 0 88 0.000 0.0 1.0 +3.13632E7 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 18 0.0000 0 88 0.000 0.0 1.0 +3.13668E7 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 19 0.0000 0 88 0.000 0.0 1.0 +3.13704E7 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 19 0.0000 0 88 0.000 2.3 1.0 +3.1374E7 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 20 0.0000 0 88 0.000 2.3 1.0 +3.13776E7 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 21 0.0000 0 88 0.000 2.0 1.0 +3.13812E7 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 22 0.0000 0 88 0.000 0.0 1.0 +3.13848E7 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 22 0.0000 0 88 0.000 0.5 1.0 +3.13884E7 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 23 0.0000 0 88 0.000 0.0 1.0 +3.1392E7 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 22 0.0000 0 88 0.000 0.0 1.0 +3.13956E7 8.3 7.8 96 97600 193 1415 332 59 1 59 6392 11 6415 1780 160 2.1 10 10 3.2 240 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +3.13992E7 8.9 8.3 96 97600 422 1415 335 138 5 136 15103 298 14952 4502 220 2.6 10 10 2.4 90 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +3.14028E7 9.4 8.9 96 97600 603 1415 338 201 3 200 22225 229 22229 7134 250 4.1 10 10 6.4 120 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +3.14064E7 10.0 8.9 93 97600 722 1415 341 286 1 285 31439 89 31517 9858 290 6.2 10 10 11.3 150 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +3.141E7 10.0 8.9 93 97500 771 1415 341 289 1 289 32018 89 32209 10479 290 5.7 10 10 11.3 210 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +3.14136E7 9.4 8.3 93 97400 747 1415 338 296 1 296 32589 91 32786 10314 300 5.2 10 10 6.4 120 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +3.14172E7 8.9 7.8 93 97500 651 1415 335 232 2 231 25599 165 25629 8144 300 5.2 10 10 9.7 340 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +3.14208E7 8.9 7.8 93 97500 490 1415 335 174 0 174 17371 0 17510 5658 300 5.2 10 10 9.7 310 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +3.14244E7 8.3 7.2 93 97500 275 1415 331 85 1 84 9242 33 9169 2617 340 5.2 10 10 9.7 430 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +3.1428E7 8.3 7.2 93 97500 47 884 331 21 0 21 2016 0 2030 410 340 6.2 10 10 8.0 270 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +3.14316E7 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 15 0.0000 0 88 0.000 0.0 1.0 +3.14352E7 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 15 0.0000 0 88 0.000 0.0 1.0 +3.14388E7 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 15 0.0000 0 88 0.000 0.0 1.0 +3.14424E7 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 15 0.0000 0 88 0.000 0.0 1.0 +3.1446E7 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 15 0.0000 0 88 0.000 0.0 1.0 +3.14496E7 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 15 0.0000 0 88 0.000 0.0 1.0 +3.14532E7 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 15 0.0000 0 88 0.000 0.0 1.0 +3.14568E7 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 14 0.0000 0 88 0.000 0.0 1.0 +3.14604E7 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 14 0.0000 0 88 0.000 0.0 1.0 +3.1464E7 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 14 0.0000 0 88 0.000 0.0 1.0 +3.14676E7 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 14 0.0000 0 88 0.000 0.0 1.0 +3.14712E7 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 14 0.0000 0 88 0.000 0.0 1.0 +3.14748E7 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 14 0.0000 0 88 0.000 0.0 1.0 +3.14784E7 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 14 0.0000 0 88 0.000 0.0 1.0 +3.1482E7 5.6 5.6 100 97500 192 1415 317 34 0 34 3316 0 3340 1224 300 5.2 10 10 3.2 90 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +3.14856E7 6.1 5.6 96 97600 421 1415 319 137 1 137 15001 61 15069 4516 290 5.7 10 10 11.3 150 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +3.14892E7 6.1 5.6 96 97600 603 1415 319 212 1 212 23363 80 23487 7363 300 5.2 10 10 9.7 150 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +3.14928E7 5.6 5.6 100 97500 723 1415 317 240 2 239 26812 167 26846 8990 310 6.7 10 10 4.8 150 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +3.14964E7 5.6 5.6 100 97500 772 1415 317 262 1 261 29321 86 29374 9922 300 7.2 10 10 4.8 150 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +3.15E7 6.1 5.0 93 97400 749 1415 319 249 2 248 27867 169 27908 9410 300 4.6 10 10 9.7 210 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +3.15036E7 6.1 5.0 93 97400 653 1415 319 212 0 212 21477 0 21658 7785 280 6.7 10 10 9.7 240 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +3.15072E7 5.6 5.0 96 97400 492 1415 316 162 1 161 17809 69 17783 5458 300 6.2 10 10 8.0 210 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +3.15108E7 5.6 4.4 93 97400 278 1415 316 76 0 76 7467 0 7522 2486 300 4.6 10 10 8.0 240 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +3.15144E7 5.6 3.9 89 97400 49 884 315 21 0 21 2020 0 2033 429 300 4.6 10 10 9.7 210 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +3.1518E7 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 13 0.0000 0 88 0.000 0.0 1.0 +3.15216E7 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 13 0.0000 0 88 0.000 0.0 1.0 +3.15252E7 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 13 0.0000 0 88 0.000 0.0 1.0 +3.15288E7 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 13 0.0000 0 88 0.000 0.0 1.0 +3.15324E7 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 13 0.0000 0 88 0.000 0.0 1.0 diff --git a/AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD300.epw b/AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD300.epw new file mode 100644 index 0000000000..cb0ed317ae --- /dev/null +++ b/AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD300.epw @@ -0,0 +1,8768 @@ +LOCATION,Santiago Benitez Intl AP,RM,CHL,ISD-TMYx,855740,-33.393,-70.786,-4,474 +DESIGN CONDITIONS,1,2017 ASHRAE Handbook -- Fundamentals - Chapter 14 Climatic Design Information,,Heating,7,-1.1,0.1,-3.5,3,8,-2.1,3.3,7,7.1,10.6,6.1,11.6,1,10,Cooling,1,16.7,31.9,17.2,30.8,17.1,29.8,17,19,28.9,18.4,28.4,17.8,27.9,6.3,210,15,11.3,22.2,14.1,10.6,21.5,13.6,10.3,21,55.7,29,53.6,28.5,51.8,28,23.9,Extremes,8.5,7.8,7,-3.4,34.5,1.3,0.9,-4.3,35.2,-5.1,35.7,-5.9,36.2,-6.9,36.9,-3.7 +TYPICAL/EXTREME PERIODS,6,Summer - Week Nearest Max Temperature For Period,Extreme,10-Feb,16-Feb,Summer - Week Nearest Average Temperature For Period,Typical,22-Dec,5-Jan,Winter - Week Nearest Min Temperature For Period,Extreme,20-Jul,26-Jul,Winter - Week Nearest Average Temperature For Period,Typical,3-Aug,9-Aug,Autumn - Week Nearest Average Temperature For Period,Typical,5-Apr,11-Apr,Spring - Week Nearest Average Temperature For Period,Typical,6-Oct,12-Oct +GROUND TEMPERATURES,3,0.5,,,,20.62,21.08,20.05,18.52,14.58,11.58,9.61,9.07,10.2,12.6,15.74,18.62,2,,,,18.65,19.55,19.3,18.47,15.81,13.45,11.59,10.63,10.91,12.29,14.47,16.75,4,,,,17,17.95,18.12,17.8,16.28,14.68,13.23,12.25,12.05,12.66,13.96,15.51 +HOLIDAYS/DAYLIGHT SAVINGS,No,0,0,0 +COMMENTS 1,NCEI ISD - #years=[15] Period of Record=2004-2018; Jan=2006; Feb=2015; Mar=2017; Apr=2013; May=2008; Jun=2010; Jul=2013; Aug=2008; Sep=2004; Oct=2010; Nov=2010; Dec=2016 +COMMENTS 2,Downloaded from Climate.Onebuilding.org -- Ground temps represent undisturbed earth temperatures - calculated from this weather data. +DATA PERIODS,1,1,Data,Sunday,1-Jan,31-Dec +2006,1,1,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,15,9,67,95815,0,0,336,0,0,0,0,0,0,0,190,2.1,5,5,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,1,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14.2,8.8,70,96013,0,0,314,0,0,0,0,0,0,0,170,2.6,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,1,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,14,9,72,95797,0,0,334,0,0,0,0,0,0,0,130,2.1,6,6,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,1,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,12.9,8.9,77,95921,0,0,333,0,0,0,0,0,0,0,229,1.3,7,7,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,1,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11.9,8.9,82,96046,0,0,304,0,0,0,0,0,0,0,210,0.5,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,1,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,9,82,95759,0,0,322,0,0,0,0,0,0,0,90,0,5,5,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,1,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,9,77,95778,227,1157,309,80,153,55,8808,1998,6104,1852,339,0.5,0,0,5000,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,1,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15.2,9.1,67,96155,510,1415,318,286,444,126,32164,26289,14192,4791,200,0.5,0,0,5000,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,1,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18,9,56,95870,778,1415,345,513,655,152,59909,43924,17793,6807,210,1.5,3,3,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,1,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,9,49,95906,1015,1415,351,737,823,146,89627,53524,17855,7366,180,3.1,2,2,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,1,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,21.6,9.2,45,96138,1203,1415,348,917,815,223,110704,57929,27066,10995,140,4.6,0,0,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,1,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,9,41,95959,1330,1415,361,1037,822,263,125635,60016,32005,12795,200,5.7,1,1,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,1,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,24,9,38,95977,1387,1415,374,1077,825,267,130000,59776,32687,13056,210,7.2,3,3,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,1,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,25.5,9,35,96003,1371,1415,366,1075,824,275,130000,60577,33626,13376,17,5.6,0,0,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,1,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,27,9,32,96029,1281,1415,390,978,893,168,121806,57974,21080,8736,200,4.1,3,3,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,1,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,28,9,30,96046,1125,1415,395,834,833,170,101689,55564,20822,8636,210,5.7,3,3,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,1,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,26.5,9.8,35,95958,914,1415,388,638,765,143,76459,49579,17185,6937,210,6.7,3,3,9900,77777,9,999999999,24,0,0,88,0.2,0,0 +2006,1,1,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,25,9,36,95994,660,1415,379,411,580,140,47302,37549,16139,5901,200,7.2,3,3,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,1,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,8,38,95959,383,1415,353,185,325,97,20635,15080,10862,3466,210,5.1,0,0,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2006,1,1,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,20.8,7.1,41,95992,100,1415,341,23,0,23,2206,0,2221,756,200,5.7,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,1,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,5,37,95906,0,528,335,0,0,0,0,0,0,0,170,4.6,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2006,1,1,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,19,7,46,95888,0,0,344,0,0,0,0,0,0,0,140,3.1,2,2,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,1,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,18.1,5,42,96104,0,0,327,0,0,0,0,0,0,0,150,2.1,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2006,1,1,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,6,48,95852,0,0,334,0,0,0,0,0,0,0,110,1.5,2,2,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2006,1,2,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,15,7,59,95815,0,0,331,0,0,0,0,0,0,0,99,0.5,4,4,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,2,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,14.2,7,62,96013,0,0,312,0,0,0,0,0,0,0,315,0,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,2,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,15,7,59,95815,0,0,331,0,0,0,0,0,0,0,33,1,4,4,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,2,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,12,7,71,95759,0,0,323,0,0,0,0,0,0,0,277,1,6,6,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,2,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,11.5,7.2,75,95934,0,0,300,0,0,0,0,0,0,0,200,1,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,2,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,10,6,76,95721,0,0,317,0,0,0,0,0,0,0,138,1,7,7,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2006,1,2,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,12,7,71,95759,224,1140,323,69,80,56,7608,1142,6224,1867,292,1,6,6,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,2,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,16.7,7.6,55,96040,507,1415,323,284,444,125,31977,26517,14084,4748,140,1,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2006,1,2,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,20,7,43,95906,776,1415,344,521,687,144,61175,45939,16935,6509,131,1.5,1,1,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,2,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,22,7,38,95942,1013,1415,347,741,835,142,90284,54801,17417,7188,98,1.5,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,2,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,25,5.5,29,95994,1201,1415,359,921,815,228,111116,59823,27633,11183,172,2.3,0,0,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2006,1,2,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,28,4,22,96046,1329,1415,372,1044,822,270,126444,62530,32938,13096,180,3.1,0,0,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2006,1,2,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,29,9,29,96063,1387,1415,384,1090,825,281,130000,60793,34281,13610,160,2.1,0,0,9900,77777,9,999999999,22,0,0,88,0.2,0,0 +2006,1,2,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,29.3,8.4,27,95826,1371,1415,407,1001,716,307,120596,54850,37159,14564,200,5.1,5,5,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2006,1,2,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,30,9,27,96079,1282,1415,412,923,601,378,108085,50861,44542,16673,190,4.6,5,5,9900,77777,9,999999999,22,0,0,88,0.2,0,0 +2006,1,2,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,30,11,31,96079,1126,1415,439,435,89,364,49992,7704,42090,15542,200,8.2,9,9,9900,7500,9,999999999,27,0,0,88,0.2,0,0 +2006,1,2,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,28.2,10.4,33,95741,915,1415,404,602,581,226,69605,43758,26242,10007,200,7.7,5,5,9900,7500,9,999999999,26,0,0,88,0.2,0,0 +2006,1,2,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,27,10,34,96029,662,1415,391,411,578,140,47323,37190,16228,5934,210,8.2,3,3,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,2,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,26,9,34,96011,384,1415,385,184,311,99,20411,14471,11034,3512,180,7.2,3,3,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,2,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,23.9,9.1,39,95961,101,1415,358,23,0,23,2222,0,2237,762,180,4.1,0,0,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,2,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,22,9,43,95942,0,532,356,0,0,0,0,0,0,0,180,5.1,1,1,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,2,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,22,9,43,95942,0,0,356,0,0,0,0,0,0,0,130,2.6,1,1,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,2,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,20.3,9.3,49,96144,0,0,342,0,0,0,0,0,0,0,130,2.1,0,0,9900,77777,9,999999999,24,0,0,88,0.2,0,0 +2006,1,2,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,9,49,95906,0,0,351,0,0,0,0,0,0,0,150,2.1,2,2,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,3,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,18,9,56,95870,0,0,345,0,0,0,0,0,0,0,294,0.5,3,3,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,3,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,16.5,9.7,64,96141,0,0,325,0,0,0,0,0,0,0,250,1,0,0,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,3,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,16,10,68,95834,0,0,342,0,0,0,0,0,0,0,27,1,5,5,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,3,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,15,9,67,95815,0,0,336,0,0,0,0,0,0,0,336,0.5,5,5,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,3,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14.5,9.5,72,95806,0,0,337,0,0,0,0,0,0,0,101,0.8,6,6,9900,77777,9,999999999,24,0,0,88,0.2,0,0 +2006,1,3,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14,10,77,95797,0,0,339,0,0,0,0,0,0,0,14,1,7,7,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,3,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,17,10,63,95852,220,1123,347,72,112,55,7944,1257,6043,1819,105,0,5,5,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,3,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,18.2,10.8,62,96172,503,1415,334,280,435,125,31440,25157,14101,4745,290,1,0,0,9900,77777,9,999999999,27,0,0,88,0.2,0,0 +2006,1,3,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,22,9,43,95942,773,1415,356,517,688,141,60709,44935,16587,6389,87,1,1,1,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,3,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,23,9,41,95959,1010,1415,361,736,831,142,89653,53658,17328,7156,273,1.5,1,1,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,3,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,25.2,9.9,38,96078,1200,1415,366,913,815,221,110192,57469,26831,10912,170,4.1,0,0,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,3,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,27,10,34,96029,1328,1415,375,1033,822,261,125199,59421,31765,12716,160,5.1,0,0,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,3,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,28,10,32,96046,1386,1415,380,1088,825,279,130000,60189,34050,13536,150,4.6,0,0,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,3,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,29.5,10.3,30,95886,1371,1415,405,1059,902,184,130000,58356,23144,9529,200,6.2,3,3,9900,77777,9,999999999,26,0,0,88,0.2,0,0 +2006,1,3,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,30,11,31,96079,1282,1415,391,989,819,245,119640,58152,29823,12019,200,6.7,0,0,9900,77777,9,999999999,27,0,0,88,0.2,0,0 +2006,1,3,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,30,11,31,96079,1127,1415,391,843,859,158,103371,55168,19473,8122,200,7.2,0,0,9900,77777,9,999999999,27,0,0,88,0.2,0,0 +2006,1,3,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,28.8,11,33,95789,916,1415,402,638,766,142,76569,48975,17114,6919,200,6.7,3,3,9900,77777,9,999999999,27,0,0,88,0.2,0,0 +2006,1,3,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,27,11,37,96029,663,1415,376,417,644,115,48738,38029,13450,5059,200,8.7,0,0,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,3,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,24,10,41,95977,385,1415,367,186,324,98,20741,14818,10938,3495,200,7.2,1,1,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,3,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,20.5,9.1,48,95901,102,1415,360,22,0,22,2167,0,2182,750,160,6.7,4,4,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,3,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,8,46,95906,0,536,350,0,0,0,0,0,0,0,140,4.1,2,2,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2006,1,3,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,19,7,46,95888,0,0,344,0,0,0,0,0,0,0,150,4.1,2,2,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,3,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17.3,7.7,53,96023,0,0,340,0,0,0,0,0,0,0,150,4.6,3,3,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2006,1,3,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,8,55,95852,0,0,339,0,0,0,0,0,0,0,140,2.6,3,3,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2006,1,4,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,15,8,63,95815,0,0,335,0,0,0,0,0,0,0,160,1.5,5,5,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2006,1,4,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,14.9,7.7,62,95913,0,0,334,0,0,0,0,0,0,0,178,0,5,5,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2006,1,4,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,15,8,63,95815,0,0,330,0,0,0,0,0,0,0,76,0.5,3,3,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2006,1,4,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,14,8,67,95797,0,0,330,0,0,0,0,0,0,0,52,1.5,5,5,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2006,1,4,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14.6,8.1,65,95907,0,0,346,0,0,0,0,0,0,0,120,2.6,8,8,9900,7500,9,999999999,21,0,0,88,0.2,0,0 +2006,1,4,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,15,8,63,95815,0,0,355,0,0,0,0,0,0,0,82,1.5,9,9,9900,5100,9,999999999,21,0,0,88,0.2,0,0 +2006,1,4,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,16,8,59,95834,217,1105,340,69,59,60,7532,861,6567,1914,284,0,5,5,9900,7500,9,999999999,21,0,0,88,0.2,0,0 +2006,1,4,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,16.6,8.5,59,96039,500,1415,343,259,346,136,28896,21420,15270,5010,200,1.5,5,5,9900,7500,9,999999999,22,0,0,88,0.2,0,0 +2006,1,4,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,20,8,46,95906,770,1415,359,480,547,181,55212,39534,20977,7773,234,1,5,5,9900,7500,9,999999999,21,0,0,88,0.2,0,0 +2006,1,4,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,22,8,41,95942,1008,1415,369,684,629,236,80144,48012,27753,10854,66,1.5,5,5,9900,7500,9,999999999,21,0,0,88,0.2,0,0 +2006,1,4,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,23.9,8.4,37,95961,1198,1415,373,901,810,214,109129,57321,26079,10632,140,2.6,3,3,9900,7500,9,999999999,21,0,0,88,0.2,0,0 +2006,1,4,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,9,34,96011,1327,1415,369,1034,822,262,125245,59989,31905,12759,150,4.1,0,0,9900,7500,9,999999999,23,0,0,88,0.2,0,0 +2006,1,4,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,9,34,96011,1385,1415,369,1089,825,280,130000,60764,34217,13587,210,4.6,0,0,9900,7500,9,999999999,23,0,0,88,0.2,0,0 +2006,1,4,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,27.1,9.9,34,95827,1370,1415,375,1073,824,274,130000,60048,33454,13322,190,7.2,0,0,9900,7500,9,999999999,25,0,0,88,0.2,0,0 +2006,1,4,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,28,11,35,96046,1283,1415,381,989,819,245,119678,58149,29828,12021,200,8.2,0,0,9900,7500,9,999999999,27,0,0,88,0.2,0,0 +2006,1,4,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,28,10,32,96046,1128,1415,380,845,860,158,103658,55814,19520,8136,200,7.2,0,0,9900,7500,9,999999999,25,0,0,88,0.2,0,0 +2006,1,4,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,27.2,9.6,33,95733,917,1415,375,649,797,132,78347,50574,15995,6497,200,7.2,0,0,9900,7500,9,999999999,24,0,0,88,0.2,0,0 +2006,1,4,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,9,34,96011,664,1415,369,419,610,132,48512,38725,15376,5677,190,7.2,0,0,9900,7500,9,999999999,23,0,0,88,0.2,0,0 +2006,1,4,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,9,41,95959,386,1415,361,187,327,98,20871,15157,10950,3501,190,5.7,1,1,9900,7500,9,999999999,23,0,0,88,0.2,0,0 +2006,1,4,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,20.7,9.6,49,95819,103,1415,359,23,0,23,2227,0,2242,767,180,5.1,3,3,9900,7500,9,999999999,24,0,0,88,0.2,0,0 +2006,1,4,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,10,53,95906,0,539,356,0,0,0,0,0,0,0,140,3.6,3,3,9900,7500,9,999999999,25,0,0,88,0.2,0,0 +2006,1,4,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,19,9,52,95888,0,0,350,0,0,0,0,0,0,0,160,4.1,3,3,9900,7500,9,999999999,23,0,0,88,0.2,0,0 +2006,1,4,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17.5,7.8,53,95970,0,0,341,0,0,0,0,0,0,0,150,3.6,3,3,9900,7500,9,999999999,20,0,0,88,0.2,0,0 +2006,1,4,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,8,55,95852,0,0,339,0,0,0,0,0,0,0,140,3.1,3,3,9900,7500,9,999999999,21,0,0,88,0.2,0,0 +2006,1,5,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,9,63,95834,0,0,341,0,0,0,0,0,0,0,140,2.6,5,5,9900,7500,9,999999999,23,0,0,88,0.2,0,0 +2006,1,5,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,14.3,9.3,72,95930,0,0,328,0,0,0,0,0,0,0,220,0.5,3,3,9900,7500,9,999999999,24,0,0,88,0.2,0,0 +2006,1,5,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,10,77,95797,0,0,328,0,0,0,0,0,0,0,170,2.6,3,3,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,5,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,14,9,72,95797,0,0,326,0,0,0,0,0,0,0,253,0,3,3,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,5,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12.9,9,77,95951,0,0,321,0,0,0,0,0,0,0,170,2.1,3,3,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,5,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,13,10,82,95778,0,0,323,0,0,0,0,0,0,0,214,0,3,3,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,5,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,10,77,95797,213,1087,328,71,123,52,7822,1102,5795,1745,302,1,3,3,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,5,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17.3,10.2,63,96033,497,1415,343,271,412,126,30415,24065,14203,4742,20,1,3,3,8000,77777,9,999999999,26,0,0,88,0.2,0,0 +2006,1,5,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,20,10,53,95906,767,1415,356,505,661,146,59007,43319,17122,6555,108,1,3,3,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,5,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,24,10,41,95977,1006,1415,367,731,829,141,88927,52947,17179,7095,248,1,1,1,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,5,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,25.1,9.8,38,95934,1196,1415,365,909,895,151,112904,56966,18869,7882,140,2.1,0,0,9900,77777,9,999999999,24,0,0,88,0.2,0,0 +2006,1,5,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,27,11,37,96029,1325,1415,376,1029,822,258,124704,58757,31474,12618,140,5.1,0,0,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,5,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,28,8,28,96046,1385,1415,377,1090,825,282,130000,61320,34402,13645,200,8.7,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2006,1,5,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,27.9,8.2,29,95916,1370,1415,377,1076,824,277,130000,61027,33790,13429,180,9.3,0,0,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2006,1,5,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,29,6,23,96063,1283,1415,380,997,819,253,120628,60940,30758,12325,200,8.2,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2006,1,5,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,30,5,21,96079,1129,1415,383,852,860,165,104439,58584,20325,8434,190,7.2,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2006,1,5,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,27.6,7.5,28,95873,918,1415,375,652,759,159,77676,51725,19029,7611,210,2.6,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,5,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,27,9,32,96029,665,1415,374,420,556,158,47932,37909,18141,6504,200,8.2,0,0,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,5,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,10,39,95994,387,1415,372,188,327,98,20905,15002,10978,3512,190,7.7,1,1,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,5,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,23.5,10.5,44,95968,103,1415,365,23,0,23,2265,0,2281,778,261,6.9,1,1,9900,77777,9,999999999,26,0,0,88,0.2,0,0 +2006,1,5,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,22,11,50,95942,0,542,363,0,0,0,0,0,0,0,190,6.2,2,2,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,5,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,11,53,95924,0,0,362,0,0,0,0,0,0,0,180,3.6,3,3,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,5,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,19.5,11.8,61,96139,0,0,341,0,0,0,0,0,0,0,150,3.6,0,0,9900,77777,9,999999999,30,0,0,88,0.2,0,0 +2006,1,5,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18,12,68,95870,0,0,354,0,0,0,0,0,0,0,130,2.1,5,5,9900,77777,9,999999999,31,0,0,88,0.2,0,0 +2006,1,6,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,13,77,95852,0,0,357,0,0,0,0,0,0,0,130,3.1,7,7,9900,77777,9,999999999,34,0,0,88,0.2,0,0 +2006,1,6,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,16.8,13.1,79,96090,0,0,330,0,0,0,0,0,0,0,140,2.6,0,0,9900,77777,9,999999999,35,0,0,88,0.2,0,0 +2006,1,6,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,16,13,82,95834,0,0,358,0,0,0,0,0,0,0,52,1,8,8,9900,77777,9,999999999,34,0,0,88,0.2,0,0 +2006,1,6,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,15,13,88,95815,0,0,361,0,0,0,0,0,0,0,25,1.5,9,9,9900,77777,9,999999999,34,0,0,88,0.2,0,0 +2006,1,6,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15.6,12.9,84,96124,0,0,324,0,0,0,0,0,0,0,140,1.5,0,0,9900,77777,9,999999999,34,0,0,88,0.2,0,0 +2006,1,6,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,13,11,88,95778,0,0,349,0,0,0,0,0,0,0,129,1,9,9,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,6,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,16,14,88,95834,210,1068,367,40,0,40,3865,0,3893,1425,258,0.5,9,9,8000,77777,9,999999999,38,0,0,88,0.2,0,0 +2006,1,6,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,18.8,13.7,72,96145,494,1415,340,271,366,143,29940,21911,15856,5119,10,1.5,0,0,8000,77777,9,999999999,37,0,0,88,0.2,0,0 +2006,1,6,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,21,14,64,95924,764,1415,371,477,593,157,55345,38255,18230,6921,184,1.5,5,5,9900,77777,9,999999999,38,0,0,88,0.2,0,0 +2006,1,6,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,23,14,57,95959,1003,1415,378,709,754,173,84630,49042,20794,8470,122,0.5,4,4,9900,77777,9,999999999,37,0,0,88,0.2,0,0 +2006,1,6,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,25.5,12.7,45,96093,1194,1415,371,904,863,174,110797,55278,21486,8923,170,2.6,0,0,9900,77777,9,999999999,33,0,0,88,0.2,0,0 +2006,1,6,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,28,12,37,96046,1324,1415,382,1026,822,256,124348,58077,31232,12539,190,4.1,0,0,9900,77777,9,999999999,30,0,0,88,0.2,0,0 +2006,1,6,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,30,11,31,96079,1384,1415,391,1085,825,277,130000,59535,33776,13446,130,2.1,0,0,9900,77777,9,999999999,27,0,0,88,0.2,0,0 +2006,1,6,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,29.8,11.8,33,95920,1370,1415,408,1056,893,190,130000,57397,23815,9796,210,7.2,3,3,9900,77777,9,999999999,30,0,0,88,0.2,0,0 +2006,1,6,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,30,14,38,96079,1283,1415,412,972,875,178,120318,54654,22107,9160,200,6.2,3,3,9900,77777,9,999999999,37,0,0,88,0.2,0,0 +2006,1,6,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,30,15,40,96079,1129,1415,414,829,839,158,101389,51432,19455,8134,210,9.8,3,3,9900,77777,9,999999999,41,0,0,88,0.2,0,0 +2006,1,6,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,29.3,14.3,40,95835,919,1415,409,638,767,139,76462,46900,16731,6794,200,7.7,3,3,9900,77777,9,999999999,38,0,0,88,0.2,0,0 +2006,1,6,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,28,14,42,96046,666,1415,401,412,607,126,47755,35815,14637,5462,210,7.7,3,3,9900,77777,9,999999999,37,0,0,88,0.2,0,0 +2006,1,6,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9?9*9*9*9*9,27,14,45,96029,388,1415,392,187,305,103,20679,13649,11455,3630,200,7.2,2,2,9900,77777,9,999999999,37,0,0,88,0.2,0,0 +2006,1,6,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,24.8,11.4,43,95816,104,1415,366,24,0,24,2274,0,2290,782,200,6.2,0,0,9900,77777,9,999999999,29,0,0,88,0.2,0,0 +2006,1,6,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,24,10,41,95977,0,544,367,0,0,0,0,0,0,0,190,4.6,1,1,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,6,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,24,11,44,95977,0,0,368,0,0,0,0,0,0,0,130,3.1,1,1,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,6,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,21.5,8.1,42,95938,0,0,346,0,0,0,0,0,0,0,120,3.6,0,0,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2006,1,6,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,21,8,43,95924,0,0,358,0,0,0,0,0,0,0,130,4.1,3,3,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2006,1,7,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,21,7,40,95924,0,0,384,0,0,0,0,0,0,0,140,3.1,9,9,9900,1500,9,999999999,19,0,0,88,0.2,0,0 +2006,1,7,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19.4,7.2,45,95976,0,0,387,0,0,0,0,0,0,0,130,2.6,10,10,9900,1500,9,999999999,19,0,0,88,0.2,0,0 +2006,1,7,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19,7,46,95888,0,0,384,0,0,0,0,0,0,0,140,3.1,10,10,9900,2100,9,999999999,19,0,0,88,0.2,0,0 +2006,1,7,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18,6,45,95870,0,0,367,0,0,0,0,0,0,0,150,2.6,9,9,9900,2100,9,999999999,17,0,0,88,0.2,0,0 +2006,1,7,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17.7,6,46,96021,0,0,345,0,0,0,0,0,0,0,150,2.1,5,5,9900,2100,9,999999999,17,0,0,88,0.2,0,0 +2006,1,7,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17,5,45,95852,0,0,341,0,0,0,0,0,0,0,140,1.5,5,5,9900,2100,9,999999999,15,0,0,88,0.2,0,0 +2006,1,7,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,18,7,49,95870,206,1049,348,63,84,51,7009,743,5671,1695,160,2.1,5,5,9900,2100,9,999999999,19,0,0,88,0.2,0,0 +2006,1,7,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,19.5,7,44,96072,490,1415,350,268,414,124,30042,24558,13949,4645,176,0,3,3,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,7,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,22,6,35,95942,761,1415,361,503,652,151,58668,44682,17742,6730,170,2.1,3,3,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2006,1,7,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,24,7,34,95977,1001,1415,372,721,800,154,87159,53681,18650,7641,140,3.1,3,3,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,7,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,25.5,8.1,33,96036,1192,1415,372,908,874,171,111763,58148,21108,8757,130,4.6,1,1,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2006,1,7,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,27,8,30,96029,1323,1415,372,1032,822,262,124982,60496,31963,12772,160,3.1,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2006,1,7,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,28,9,30,96046,1383,1415,379,1087,880,225,130000,60647,27927,11338,200,6.7,0,0,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,7,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,27.8,9.2,31,95990,1370,1415,404,938,630,327,112365,49125,39394,15291,190,7.2,6,6,9900,7500,9,999999999,23,0,0,88,0.2,0,0 +2006,1,7,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,28,10,32,96046,1283,1415,380,991,856,213,121298,58728,26250,10717,210,7.2,0,0,9900,7500,9,999999999,25,0,0,88,0.2,0,0 +2006,1,7,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,28,9,30,96046,1130,1415,379,849,825,188,102777,56652,22930,9440,210,7.7,0,0,9900,7500,9,999999999,23,0,0,88,0.2,0,0 +2006,1,7,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,27.3,6.2,26,95934,919,1415,397,572,480,260,65618,39333,29984,11101,200,7.7,6,6,9900,7500,9,999999999,17,0,0,88,0.2,0,0 +2006,1,7,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,3,23,96011,666,1415,361,426,569,157,48734,40223,18073,6480,200,6.7,0,0,9900,7500,9,999999999,12,0,0,88,0.2,0,0 +2006,1,7,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,-2,18,95959,388,1415,341,193,294,112,21306,16150,12413,3820,200,8.2,0,0,9900,7500,9,999999999,8,0,0,88,0.2,0,0 +2006,1,7,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,21.3,-6.3,14,96142,104,1415,345,23,0,23,2263,0,2278,776,170,1.5,4,4,9900,7500,9,999999999,5,0,0,88,0.2,0,0 +2006,1,7,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,-3,19,95924,0,545,330,0,0,0,0,0,0,0,190,8.2,0,0,9900,7500,9,999999999,7,0,0,88,0.2,0,0 +2006,1,7,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,0,26,95906,0,0,330,0,0,0,0,0,0,0,130,2.1,0,0,9900,7500,9,999999999,9,0,0,88,0.2,0,0 +2006,1,7,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,19.1,0.2,28,96236,0,0,326,0,0,0,0,0,0,0,292,0,0,0,9900,7500,9,999999999,9,0,0,88,0.2,0,0 +2006,1,7,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,17,3,39,95852,0,0,326,0,0,0,0,0,0,0,150,0.5,1,1,9900,7500,9,999999999,13,0,0,88,0.2,0,0 +2006,1,8,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,17,1,34,95852,0,0,317,0,0,0,0,0,0,0,114,1.5,0,0,9900,7500,9,999999999,10,0,0,88,0.2,0,0 +2006,1,8,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15.3,4.4,48,96062,0,0,314,0,0,0,0,0,0,0,170,1.5,0,0,9900,7500,9,999999999,15,0,0,88,0.2,0,0 +2006,1,8,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,15,5,51,95815,0,0,327,0,0,0,0,0,0,0,77,0.5,3,3,9900,7500,9,999999999,15,0,0,88,0.2,0,0 +2006,1,8,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14,4,51,95797,0,0,321,0,0,0,0,0,0,0,193,1.5,3,3,9900,7500,9,999999999,14,0,0,88,0.2,0,0 +2006,1,8,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,4.7,61,95972,0,0,318,0,0,0,0,0,0,0,20,2.6,5,5,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2006,1,8,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,5,66,95740,0,0,314,0,0,0,0,0,0,0,166,1,5,5,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2006,1,8,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14,5,55,95797,202,1030,322,65,66,56,7153,781,6131,1775,350,0,3,3,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2006,1,8,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17.2,4.9,44,95993,487,1415,345,235,277,140,26123,17713,15584,5007,300,2.1,6,6,9900,7500,9,999999999,15,0,0,88,0.2,0,0 +2006,1,8,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,4,35,95906,758,1415,334,508,640,164,58914,45736,19142,7159,340,2.1,0,0,9900,7500,9,999999999,14,0,0,88,0.2,0,0 +2006,1,8,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,3,27,95959,998,1415,347,732,769,189,87247,56135,22578,9061,350,0.5,0,0,9900,7500,9,999999999,12,0,0,88,0.2,0,0 +2006,1,8,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,25.5,2.9,23,95875,1190,1415,383,798,585,305,94103,48231,36215,14024,130,1,6,6,9900,7500,9,999999999,12,0,0,88,0.2,0,0 +2006,1,8,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,27,5,24,96029,1321,1415,369,1035,889,203,127913,61921,25271,10331,160,2.6,0,0,9900,7500,9,999999999,15,0,0,88,0.2,0,0 +2006,1,8,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,29,7,25,96063,1382,1415,381,1090,893,215,130000,61716,26832,10921,160,3.1,0,0,9900,7500,9,999999999,18,0,0,88,0.2,0,0 +2006,1,8,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,30.1,6.1,22,95669,1369,1415,412,942,640,322,113141,50589,38914,15121,140,3.6,6,6,9900,7500,9,999999999,17,0,0,88,0.2,0,0 +2006,1,8,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,31,6,21,96096,1283,1415,390,998,877,200,122846,60915,24810,10161,160,5.1,0,0,9900,7500,9,999999999,17,0,0,88,0.2,0,0 +2006,1,8,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,32,5,18,96113,1130,1415,394,854,830,190,103564,58721,23178,9519,190,5.7,0,0,9900,7500,9,999999999,15,0,0,88,0.2,0,0 +2006,1,8,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,31.4,3.5,17,95500,920,1415,415,575,488,257,66082,40388,29716,11022,200,6.2,6,6,9900,7500,9,999999999,13,0,0,88,0.2,0,0 +2006,1,8,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,30,6,22,96079,667,1415,385,424,571,155,48593,39400,17817,6415,200,7.2,0,0,9900,7500,9,999999999,17,0,0,88,0.2,0,0 +2006,1,8,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,28,7,26,96046,389,1415,376,190,336,98,21243,15965,10963,3512,210,7.7,0,0,9900,7500,9,999999999,18,0,0,88,0.2,0,0 +2006,1,8,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,26.5,5.5,26,95542,105,1415,386,23,0,23,2236,0,2252,771,200,6.7,4,4,9900,7500,9,999999999,16,0,0,88,0.2,0,0 +2006,1,8,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,7,30,96011,0,545,366,0,0,0,0,0,0,0,180,7.7,0,0,9900,7500,9,999999999,18,0,0,88,0.2,0,0 +2006,1,8,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,7,32,95994,0,0,361,0,0,0,0,0,0,0,160,4.1,0,0,9900,7500,9,999999999,19,0,0,88,0.2,0,0 +2006,1,8,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,23,8.3,39,95633,0,0,371,0,0,0,0,0,0,0,190,4.1,4,4,9900,7500,9,999999999,21,0,0,88,0.2,0,0 +2006,1,8,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,9,46,95924,0,0,356,0,0,0,0,0,0,0,170,3.1,2,2,9900,7500,9,999999999,23,0,0,88,0.2,0,0 +2006,1,9,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,9,46,95924,0,0,356,0,0,0,0,0,0,0,190,3.1,2,2,9900,7500,9,999999999,23,0,0,88,0.2,0,0 +2006,1,9,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,18.8,9.3,54,95530,0,0,352,0,0,0,0,0,0,0,140,1.5,4,4,9900,7500,9,999999999,23,0,0,88,0.2,0,0 +2006,1,9,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,17,9,59,95852,0,0,343,0,0,0,0,0,0,0,284,1,4,4,9900,7500,9,999999999,23,0,0,88,0.2,0,0 +2006,1,9,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,16,9,63,95834,0,0,341,0,0,0,0,0,0,0,141,0,5,5,9900,7500,9,999999999,23,0,0,88,0.2,0,0 +2006,1,9,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,14.3,9.1,71,95665,0,0,328,0,0,0,0,0,0,0,200,1.5,3,3,9900,7500,9,999999999,23,0,0,88,0.2,0,0 +2006,1,9,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,13,9,77,95778,0,0,322,0,0,0,0,0,0,0,105,0,3,3,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,9,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,18,10,59,95870,199,1010,349,62,93,49,6842,441,5418,1620,296,1.5,4,4,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,9,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,19.7,9.6,52,95906,483,1415,339,264,419,121,29642,23867,13608,4536,170,2.6,0,0,9900,77777,9,999999999,24,0,0,88,0.2,0,0 +2006,1,9,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,22,9,43,95942,755,1415,356,501,678,139,58736,44065,16322,6251,93,1,1,1,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,9,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,24,9,38,95977,995,1415,359,723,827,140,87926,53278,17060,7031,89,1.5,0,0,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,9,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,25.8,8.4,33,95880,1188,1415,367,904,814,220,109121,58117,26669,10843,170,1.5,0,0,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2006,1,9,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,28,8,28,96046,1320,1415,377,1029,821,261,124647,60450,31857,12734,110,4.6,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2006,1,9,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,29,9,29,96063,1381,1415,384,1086,824,279,130000,60715,34095,13543,170,3.1,0,0,9900,77777,9,999999999,22,0,0,88,0.2,0,0 +2006,1,9,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,30.6,9.8,28,95829,1369,1415,393,1073,824,274,130000,60094,33458,13322,230,3.6,0,0,9900,77777,9,999999999,24,0,0,88,0.2,0,0 +2006,1,9,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,31,10,27,96096,1283,1415,395,992,819,247,119998,58790,30084,12106,230,5.1,0,0,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,9,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,31,12,31,96096,1130,1415,398,845,859,158,103596,54557,19481,8131,210,7.7,0,0,9900,77777,9,999999999,30,0,0,88,0.2,0,0 +2006,1,9,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,28.2,13.6,41,95732,920,1415,385,648,778,142,77710,48266,17051,6915,210,7.7,0,0,9900,77777,9,999999999,36,0,0,88,0.2,0,0 +2006,1,9,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,14,50,95994,668,1415,382,417,627,121,48502,36395,14080,5287,210,8.7,2,2,9900,77777,9,999999999,37,0,0,88,0.2,0,0 +2006,1,9,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,24,13,50,95977,389,1415,376,188,306,104,20789,13964,11513,3648,200,5.1,2,2,9900,77777,9,999999999,34,0,0,88,0.2,0,0 +2006,1,9,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,21.3,13.6,61,96038,105,1415,351,24,0,24,2287,0,2303,787,180,7.2,0,0,9900,77777,9,999999999,36,0,0,88,0.2,0,0 +2006,1,9,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,13,60,95924,0,545,367,0,0,0,0,0,0,0,180,5.7,4,4,9900,77777,9,999999999,34,0,0,88,0.2,0,0 +2006,1,9,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,19,14,73,95888,0,0,364,0,0,0,0,0,0,0,190,3.6,6,6,9900,77777,9,999999999,38,0,0,88,0.2,0,0 +2006,1,9,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,18.5,14,75,96215,0,0,339,0,0,0,0,0,0,0,190,3.1,0,0,9900,77777,9,999999999,38,0,0,88,0.2,0,0 +2006,1,9,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18,14,77,95870,0,0,364,0,0,0,0,0,0,0,180,2.6,7,7,9900,77777,9,999999999,38,0,0,88,0.2,0,0 +2006,1,10,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,14,82,95852,0,0,364,0,0,0,0,0,0,0,220,2.1,8,8,9900,77777,9,999999999,38,0,0,88,0.2,0,0 +2006,1,10,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,16.1,13.5,85,96077,0,0,327,0,0,0,0,0,0,0,200,1.5,0,0,9900,77777,9,999999999,36,0,0,88,0.2,0,0 +2006,1,10,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,15,12,82,95815,0,0,352,0,0,0,0,0,0,0,10,1,8,8,9900,77777,9,999999999,31,0,0,88,0.2,0,0 +2006,1,10,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,12,88,95797,0,0,316,0,0,0,0,0,0,0,267,1,0,0,5000,77777,9,999999999,31,0,0,88,0.2,0,0 +2006,1,10,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13.9,12.3,90,96064,0,0,316,0,0,0,0,0,0,0,101,0,0,0,5000,77777,9,999999999,32,0,0,88,0.2,0,0 +2006,1,10,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,12,94,95778,0,0,312,0,0,0,0,0,0,0,153,1,0,0,5000,77777,9,999999999,31,0,0,88,0.2,0,0 +2006,1,10,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,15,13,88,95815,195,990,361,35,0,35,3426,0,3451,1270,280,1,9,9,7000,77777,9,999999999,34,0,0,88,0.2,0,0 +2006,1,10,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17.9,14.3,79,96091,480,1414,336,259,393,126,28885,21556,14084,4646,300,1,0,0,7000,77777,9,999999999,39,0,0,88,0.2,0,0 +2006,1,10,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,20,14,68,95906,752,1414,366,452,509,181,51698,34848,20805,7665,158,1,5,5,9900,77777,9,999999999,38,0,0,88,0.2,0,0 +2006,1,10,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,24,14,54,95977,993,1414,381,706,773,162,84593,49330,19496,7970,68,1.5,3,3,9900,77777,9,999999999,37,0,0,88,0.2,0,0 +2006,1,10,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,25.5,13.2,46,95998,1186,1414,371,895,861,172,109774,54756,21188,8811,140,2.1,0,0,9900,77777,9,999999999,34,0,0,88,0.2,0,0 +2006,1,10,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,27,12,39,96029,1318,1414,385,1021,821,255,123679,57984,31020,12462,180,2.1,1,1,9900,77777,9,999999999,30,0,0,88,0.2,0,0 +2006,1,10,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,29,10,31,96063,1380,1414,385,1083,824,277,130000,60105,33856,13466,220,5.1,0,0,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,10,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,29.3,11.3,33,96068,1369,1414,388,1070,824,271,129797,59133,33128,13217,215,5.8,0,0,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,10,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,29.7,12.7,35,96074,1283,1414,392,988,819,243,119459,57010,29565,11938,49,6.5,0,0,9900,77777,9,999999999,32,0,0,88,0.2,0,0 +2006,1,10,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,30,14,38,96079,1131,1414,412,832,835,164,101585,52309,20076,8373,230,7.2,3,3,9900,77777,9,999999999,37,0,0,88,0.2,0,0 +2006,1,10,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,29,13,37,96063,921,1414,389,649,798,129,78421,48576,15646,6383,293,7.2,0,0,9900,77777,9,999999999,34,0,0,88,0.2,0,0 +2006,1,10,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,28,12,37,96046,668,1414,399,416,619,123,48343,37100,14366,5375,240,7.2,3,3,9900,77777,9,999999999,30,0,0,88,0.2,0,0 +2006,1,10,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,12,42,96011,390,1414,379,189,313,103,20980,14469,11461,3636,220,7.2,1,1,9900,77777,9,999999999,30,0,0,88,0.2,0,0 +2006,1,10,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,22.9,11.2,48,95887,105,1414,356,24,0,24,2295,0,2311,788,200,7.7,0,0,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,10,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,22,11,50,95942,0,543,363,0,0,0,0,0,0,0,190,7.2,2,2,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,10,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,10,49,95924,0,0,357,0,0,0,0,0,0,0,200,5.1,2,2,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,10,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,20.2,9.6,50,95905,0,0,342,0,0,0,0,0,0,0,170,3.1,0,0,9900,77777,9,999999999,24,0,0,88,0.2,0,0 +2006,1,10,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,19,9,52,95888,0,0,350,0,0,0,0,0,0,0,273,1.5,3,3,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,11,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,18,8,52,95870,0,0,344,0,0,0,0,0,0,0,143,1,3,3,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2006,1,11,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,16.9,9.2,60,95760,0,0,326,0,0,0,0,0,0,0,180,0.5,0,0,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,11,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,15,9,67,95815,0,0,336,0,0,0,0,0,0,0,270,0,5,5,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,11,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,15,9,67,95815,0,0,336,0,0,0,0,0,0,0,347,1,5,5,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,11,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,14.6,9,69,95888,0,0,316,0,0,0,0,0,0,0,140,0.5,0,0,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,11,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,9,67,95815,0,0,336,0,0,0,0,0,0,0,160,2.1,5,5,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,11,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,9,63,95834,191,970,341,57,72,47,6276,212,5215,1554,170,2.6,5,5,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,11,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17.4,8,54,96091,476,1414,327,259,433,113,29195,24092,12770,4293,190,1,0,0,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2006,1,11,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,19,9,52,95888,749,1414,350,491,657,143,57395,43152,16742,6373,10,1.5,3,3,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,11,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,19,8,49,95888,990,1414,345,716,816,144,86835,53396,17537,7203,324,1.5,2,2,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2006,1,11,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,22.9,10,44,96038,1184,1414,355,898,893,150,111388,56612,18635,7792,140,3.1,0,0,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,11,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,11,39,96011,1317,1414,378,1021,821,256,123696,58615,31152,12502,180,3.6,1,1,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,11,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,27,11,37,96029,1379,1414,376,1080,824,275,130000,59452,33602,13384,150,4.6,0,0,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,11,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,29,10.2,31,95925,1368,1414,385,1071,824,273,129966,59820,33332,13281,200,4.1,0,0,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,11,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,29,10,31,96063,1283,1414,385,991,819,247,119972,58769,30069,12101,200,6.2,0,0,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,11,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,30,11,31,96079,1131,1414,391,847,860,159,103840,55232,19549,8153,230,7.2,0,0,9900,77777,9,999999999,27,0,0,88,0.2,0,0 +2006,1,11,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,28.9,10.6,32,95791,921,1414,385,652,799,131,78768,50134,15913,6477,220,7.2,0,0,9900,77777,9,999999999,26,0,0,88,0.2,0,0 +2006,1,11,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,27,10,34,96029,668,1414,375,423,614,132,48933,38605,15379,5695,220,8.2,0,0,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,11,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,9,36,95994,390,1414,364,190,333,98,21211,15560,11004,3527,210,7.2,0,0,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,11,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,23.1,8.9,40,95900,104,1414,354,24,0,24,2299,0,2315,788,210,6.7,0,0,9900,77777,9,999999999,22,0,0,88,0.2,0,0 +2006,1,11,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,22,9,43,95942,0,542,356,0,0,0,0,0,0,0,210,5.7,1,1,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,11,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,9,46,95924,0,0,356,0,0,0,0,0,0,0,210,3.1,2,2,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,11,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,19.8,9.5,51,96021,0,0,340,0,0,0,0,0,0,0,230,0.5,0,0,9900,77777,9,999999999,24,0,0,88,0.2,0,0 +2006,1,11,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,19,9,52,95888,0,0,350,0,0,0,0,0,0,0,220,2.6,3,3,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,12,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18,10,59,95870,0,0,349,0,0,0,0,0,0,0,280,2.1,4,4,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,12,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,9.3,60,95923,0,0,327,0,0,0,0,0,0,0,181,0,0,0,8000,77777,9,999999999,24,0,0,88,0.2,0,0 +2006,1,12,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,8,55,95852,0,0,339,0,0,0,0,0,0,0,170,2.1,3,3,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2006,1,12,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,15,9,67,95815,0,0,336,0,0,0,0,0,0,0,8,0,5,5,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,12,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,13.7,9,73,95843,0,0,312,0,0,0,0,0,0,0,270,1,0,0,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,12,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14,9,72,95797,0,0,334,0,0,0,0,0,0,0,228,0,6,6,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,12,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,16,9,63,95834,187,949,341,55,67,46,6059,109,5100,1518,7,0.5,5,5,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,12,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,18.6,9.8,57,95924,473,1414,334,255,426,113,28729,23183,12746,4276,150,1,0,0,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,12,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,21,10,49,95924,746,1414,357,490,665,139,57290,42833,16284,6215,22,1,2,2,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,12,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,23,10,44,95959,987,1414,362,714,822,139,86689,52411,16967,6987,115,1,1,1,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,12,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,25.3,9.8,38,95786,1182,1414,366,896,893,149,111196,56701,18571,7766,270,1.5,0,0,9900,77777,9,999999999,24,0,0,88,0.2,0,0 +2006,1,12,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,28,9,30,96046,1315,1414,379,1023,821,258,123910,59810,31489,12609,210,2.6,0,0,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,12,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,29,9,29,96063,1378,1414,384,1083,824,278,130000,60658,33979,13502,180,5.1,0,0,9900,77777,9,999999999,22,0,0,88,0.2,0,0 +2006,1,12,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,30.5,9.7,28,95618,1367,1414,392,1071,824,274,130000,60117,33422,13309,220,5.1,0,0,9900,77777,9,999999999,24,0,0,88,0.2,0,0 +2006,1,12,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,32,9,24,96113,1283,1414,399,993,819,249,120147,59357,30263,12164,220,5.7,0,0,9900,77777,9,999999999,22,0,0,88,0.2,0,0 +2006,1,12,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,32,8,23,96113,1131,1414,398,851,866,158,104535,57032,19476,8114,230,5.7,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2006,1,12,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,31.4,7.5,23,95463,921,1414,394,656,801,133,79218,51848,16137,6554,240,6.2,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,12,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,31,6,21,96096,668,1414,390,426,612,136,49251,40162,15808,5820,240,5.1,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2006,1,12,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,29,5,22,96063,390,1414,378,192,340,98,21394,16465,10950,3510,230,5.7,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2006,1,12,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,26.7,3.5,22,95488,104,1414,365,24,0,24,2308,0,2323,788,200,4.6,0,0,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2006,1,12,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,4,26,95994,0,539,358,0,0,0,0,0,0,0,190,4.1,0,0,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2006,1,12,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,4,26,95994,0,0,358,0,0,0,0,0,0,0,180,4.6,0,0,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2006,1,12,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,22.9,4.5,30,95479,0,0,348,0,0,0,0,0,0,0,190,4.1,0,0,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2006,1,12,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,20,5,37,95906,0,0,335,0,0,0,0,0,0,0,118,1,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2006,1,13,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,18,7,49,95870,0,0,339,0,0,0,0,0,0,0,244,1,2,2,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,13,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,16,7,55,95834,0,0,333,0,0,0,0,0,0,0,61,1,3,3,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,13,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,15,7,59,95815,0,0,331,0,0,0,0,0,0,0,43,0.5,4,4,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,13,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14,6,59,95797,0,0,326,0,0,0,0,0,0,0,198,0,4,4,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2006,1,13,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,14,7,63,95797,0,0,329,0,0,0,0,0,0,0,153,0.5,5,5,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,13,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,13,7,67,95778,0,0,325,0,0,0,0,0,0,0,2,0.5,5,5,7000,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,13,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,16,7,55,95834,183,928,333,55,78,45,6070,95,4973,1479,305,0.5,3,3,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,13,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,20,7.2,43,95485,469,1414,338,253,427,111,28550,23652,12609,4223,326,0,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,13,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,23,7,36,95959,742,1414,352,491,669,140,57496,44271,16391,6234,267,1,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,13,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,25,7,32,95994,985,1414,361,715,826,139,86946,54029,16995,6985,141,1,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,13,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,27.9,6.9,26,95499,1179,1414,375,898,813,219,108377,58729,26602,10810,200,2.6,0,0,9900,77777,9,999999999,18,0,0,88,0.2,0,0 +2006,1,13,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,30,6,22,96079,1313,1414,385,1026,821,263,124273,61364,31994,12770,180,4.1,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2006,1,13,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,31,7,22,96096,1377,1414,391,1085,824,281,130000,61731,34343,13617,220,5.1,0,0,9900,77777,9,999999999,18,0,0,88,0.2,0,0 +2006,1,13,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,31.3,6.7,21,95508,1367,1414,392,1076,823,278,130000,61753,33992,13490,220,7.2,0,0,9900,77777,9,999999999,18,0,0,88,0.2,0,0 +2006,1,13,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,31,9,26,96096,1283,1414,394,993,819,249,120111,59343,30248,12159,220,7.7,0,0,9900,77777,9,999999999,22,0,0,88,0.2,0,0 +2006,1,13,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,30,9,27,96079,1131,1414,389,850,863,158,104285,56457,19539,8142,220,7.7,0,0,9900,77777,9,999999999,22,0,0,88,0.2,0,0 +2006,1,13,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,29.2,9.6,29,95464,921,1414,385,653,799,132,78936,50719,15999,6508,220,7.7,0,0,9900,77777,9,999999999,24,0,0,88,0.2,0,0 +2006,1,13,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,27,10,34,96029,668,1414,375,423,614,132,48957,38613,15376,5695,220,8.2,0,0,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,13,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,6,30,95994,389,1414,360,191,338,98,21333,16232,10962,3514,210,8.2,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2006,1,13,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,22.8,7.9,38,95591,104,1414,352,24,0,24,2284,0,2299,782,220,4.6,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2006,1,13,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,8,43,95924,0,536,350,0,0,0,0,0,0,0,170,4.1,1,1,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2006,1,13,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,19,7,46,95888,0,0,344,0,0,0,0,0,0,0,180,4.6,2,2,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,13,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,18,7.2,49,95657,0,0,329,0,0,0,0,0,0,0,170,2.6,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,13,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,7,52,95852,0,0,338,0,0,0,0,0,0,0,230,1.5,3,3,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,14,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,16,7,55,95834,0,0,333,0,0,0,0,0,0,0,119,1,3,3,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,14,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,15.2,7.1,58,95616,0,0,316,0,0,0,0,0,0,0,161,0,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,14,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14,8,67,95797,0,0,330,0,0,0,0,0,0,0,258,1,5,5,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2006,1,14,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,13,8,72,95778,0,0,329,0,0,0,0,0,0,0,139,0,6,6,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2006,1,14,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,12.9,7.6,70,95677,0,0,307,0,0,0,0,0,0,0,210,0.5,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2006,1,14,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,13,8,72,95778,0,0,329,0,0,0,0,0,0,0,66,0,6,6,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2006,1,14,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,13,8,72,95778,179,907,329,47,25,44,5175,0,4845,1441,220,0.5,6,6,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2006,1,14,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17.2,8.4,56,95870,465,1414,326,250,337,139,27612,20787,15393,4853,190,2.1,0,0,8000,77777,9,999999999,22,0,0,88,0.2,0,0 +2006,1,14,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,8,46,95906,739,1414,350,487,664,139,56898,43538,16340,6210,150,2.1,2,2,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2006,1,14,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,22,8,41,95942,982,1414,355,711,823,139,86406,53410,16962,6971,170,2.1,1,1,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2006,1,14,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,24.4,8.2,36,95941,1177,1414,360,894,812,217,107898,57990,26287,10701,180,1.5,0,0,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2006,1,14,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,9,34,96011,1312,1414,369,1020,820,257,123510,59740,31352,12559,230,6.2,0,0,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,14,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,11,39,96011,1376,1414,378,1077,824,274,130000,59382,33466,13336,210,7.2,1,1,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,14,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,26.1,10.5,38,95942,1366,1414,371,1069,823,272,129664,59576,33183,13230,220,7.2,0,0,9900,77777,9,999999999,26,0,0,88,0.2,0,0 +2006,1,14,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,10,37,96011,1282,1414,370,991,819,247,119865,58725,30025,12085,220,8.2,0,0,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,14,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,10,37,96011,1130,1414,370,848,861,159,104020,55837,19576,8160,210,9.3,0,0,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,14,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,25.5,9.1,35,95913,921,1414,366,654,799,132,78978,50981,16055,6527,210,7.7,0,0,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,14,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,9,36,95994,668,1414,364,423,613,133,49022,39022,15471,5722,220,6.7,0,0,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,14,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,9,41,95959,389,1414,361,190,333,98,21167,15505,10996,3524,210,6.2,1,1,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,14,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,20.4,7.8,44,96003,103,1414,340,23,0,23,2271,0,2286,778,200,4.6,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2006,1,14,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18,8,52,95870,0,532,344,0,0,0,0,0,0,0,150,3.6,3,3,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2006,1,14,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,8,55,95852,0,0,339,0,0,0,0,0,0,0,150,3.1,3,3,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2006,1,14,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,16,7.5,57,95834,0,0,337,0,0,0,0,0,0,0,249,2.8,4,4,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2006,1,14,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,7,59,95815,0,0,331,0,0,0,0,0,0,0,120,2.6,4,4,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,15,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14,7,63,95797,0,0,329,0,0,0,0,0,0,0,191,1.5,5,5,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,15,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,13.7,7.3,65,96117,0,0,310,0,0,0,0,0,0,0,20,0,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,15,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,13,7,67,95778,0,0,325,0,0,0,0,0,0,0,97,1.5,5,5,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,15,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,13,7,67,95778,0,0,325,0,0,0,0,0,0,0,168,1,5,5,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,15,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,12.6,7.1,69,96163,0,0,305,0,0,0,0,0,0,0,130,0.5,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,15,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,10,7,82,95721,0,0,323,0,0,0,0,0,0,0,73,1.5,8,8,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,15,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,11,7,76,95740,175,885,322,42,1,42,4686,0,4684,1395,211,0,7,7,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,15,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,15.2,7,58,96221,461,1414,316,247,336,137,27348,20814,15258,4801,216,0,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,15,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,8,55,95852,736,1414,339,477,635,146,55523,42358,17103,6449,280,1,3,3,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2006,1,15,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,20,8,46,95906,979,1414,350,707,817,140,85837,53219,17113,7024,325,0,2,2,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2006,1,15,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,21.6,8.5,43,95949,1175,1414,347,892,812,216,107576,57767,26139,10648,160,3.1,0,0,9900,77777,9,999999999,22,0,0,88,0.2,0,0 +2006,1,15,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,24,10,41,95977,1310,1414,367,1016,820,255,123091,59097,31064,12463,180,4.6,1,1,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,15,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,9,36,95994,1375,1414,364,1079,824,277,130000,60576,33824,13447,180,3.6,0,0,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,15,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,9,34,96011,1365,1414,369,1070,823,274,129876,60457,33453,13315,170,4.6,0,0,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,15,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,28,7,26,96046,1282,1414,376,995,819,251,120367,60382,30568,12262,200,5.7,0,0,9900,77777,9,999999999,18,0,0,88,0.2,0,0 +2006,1,15,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,29,5,22,96063,1130,1414,378,854,861,165,104711,58588,20341,8442,180,5.1,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2006,1,15,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,28.4,7.1,26,95858,921,1414,378,656,801,133,79247,52019,16168,6565,160,1.5,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,15,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,28,4,22,96046,668,1414,372,427,607,139,49307,40715,16190,5934,210,6.7,0,0,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2006,1,15,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,27,6,26,96029,389,1414,370,191,337,98,21276,16168,10944,3507,200,6.2,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2006,1,15,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,24.9,5.7,29,95874,102,1414,359,23,0,23,2261,0,2276,773,210,4.1,0,0,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2006,1,15,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,6,33,95959,0,527,350,0,0,0,0,0,0,0,140,2.1,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2006,1,15,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,22,7,38,95942,0,0,347,0,0,0,0,0,0,0,150,3.1,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,15,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,21,7.6,42,95919,0,0,343,0,0,0,0,0,0,0,170,7.7,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2006,1,15,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,7,43,95906,0,0,344,0,0,0,0,0,0,0,170,4.1,1,1,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,16,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,19,6,43,95888,0,0,338,0,0,0,0,0,0,0,170,4.6,1,1,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2006,1,16,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,16.9,5.2,46,95845,0,0,322,0,0,0,0,0,0,0,170,2.1,0,0,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2006,1,16,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,16,6,51,95834,0,0,332,0,0,0,0,0,0,0,71,0.5,3,3,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2006,1,16,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,13,5,58,95778,0,0,320,0,0,0,0,0,0,0,61,1.5,4,4,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2006,1,16,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,12.2,6.1,66,95881,0,0,302,0,0,0,0,0,0,0,176,0,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2006,1,16,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,13,7,67,95778,0,0,325,0,0,0,0,0,0,0,212,0.5,5,5,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,16,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,15,7,59,95815,171,863,331,48,53,42,5319,0,4624,1371,129,1,4,4,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,16,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18.1,8.1,52,95915,458,1414,330,244,413,110,27423,22320,12412,4132,100,0.5,0,0,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2006,1,16,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,21,8,43,95924,732,1414,350,481,662,138,56242,43255,16180,6139,215,1,1,1,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2006,1,16,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,8,38,95959,976,1414,353,706,821,138,85747,53249,16868,6926,160,2.1,0,0,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2006,1,16,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,26.1,8.2,32,95809,1172,1414,368,890,812,215,107373,57895,26123,10640,140,3.1,0,0,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2006,1,16,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,27,8,30,96029,1308,1414,372,1018,820,258,123287,60232,31410,12573,140,4.1,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2006,1,16,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,30,10,29,96079,1373,1414,390,1077,823,275,130000,59976,33602,13376,130,4.6,0,0,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,16,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,31.5,5.5,20,96104,1364,1414,392,1075,823,280,130000,62278,34129,13530,321,5.4,0,0,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2006,1,16,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,33,1,13,96129,1281,1414,393,1003,819,260,121304,62984,31608,12603,170,6.2,0,0,9900,77777,9,999999999,10,0,0,88,0.2,0,0 +2006,1,16,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,33,-1,11,96129,1130,1414,391,862,847,183,104960,61053,22422,9222,200,6.7,0,0,9900,77777,9,999999999,8,0,0,88,0.2,0,0 +2006,1,16,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,32.1,3.2,16,95484,921,1414,392,659,735,180,77987,53465,21403,8442,190,7.7,0,0,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2006,1,16,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,31,6,21,96096,668,1414,390,425,571,155,48685,39438,17810,6417,200,6.7,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2006,1,16,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,29,6,23,96063,388,1414,380,190,337,98,21231,16117,10930,3502,190,6.7,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2006,1,16,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,26.9,4.7,24,95548,101,1414,368,23,0,23,2243,0,2259,767,180,5.1,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2006,1,16,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,24,6,31,95977,0,521,355,0,0,0,0,0,0,0,130,4.1,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2006,1,16,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,22,6,35,95942,0,0,346,0,0,0,0,0,0,0,140,3.6,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2006,1,16,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,20.6,5.8,38,95609,0,0,339,0,0,0,0,0,0,0,150,2.1,0,0,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2006,1,16,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,6,40,95906,0,0,343,0,0,0,0,0,0,0,150,3.1,1,1,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2006,1,17,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,19,6,43,95888,0,0,338,0,0,0,0,0,0,0,239,0,1,1,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2006,1,17,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17.8,5.7,45,95635,0,0,326,0,0,0,0,0,0,0,170,1,0,0,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2006,1,17,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,16,6,51,95834,0,0,332,0,0,0,0,0,0,0,243,1,3,3,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2006,1,17,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,16,5,48,95834,0,0,328,0,0,0,0,0,0,0,260,0,2,2,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2006,1,17,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,14,6.6,61,95726,0,0,310,0,0,0,0,0,0,0,216,0,0,0,9900,77777,9,999999999,18,0,0,88,0.2,0,0 +2006,1,17,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,13,8,72,95778,0,0,329,0,0,0,0,0,0,0,52,0,6,6,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2006,1,17,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,16,7,55,95834,166,841,333,47,52,41,5170,0,4502,1334,48,0,3,3,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,17,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,19,7.2,46,95921,454,1413,333,241,411,109,27118,22217,12315,4092,130,1,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,17,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,6,38,95924,729,1413,341,480,656,141,56010,43858,16507,6231,140,3.1,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2006,1,17,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,6,33,95959,973,1413,350,706,818,141,85582,54175,17202,7044,150,3.6,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2006,1,17,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,25.1,6.4,30,95934,1170,1413,361,890,812,217,107378,58759,26319,10703,140,5.1,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2006,1,17,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,27,6,26,96029,1306,1413,370,1019,820,260,123431,61217,31707,12667,150,5.7,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2006,1,17,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,27,5,24,96029,1372,1413,369,1083,823,283,130000,62587,34513,13664,150,5.1,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2006,1,17,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,29.5,8,26,95820,1363,1413,385,1070,823,275,129880,60986,33604,13361,190,5.7,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2006,1,17,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,29,10,31,96063,1281,1413,385,989,818,246,119694,58685,29984,12070,210,7.7,0,0,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,17,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,27,11,37,96029,1129,1413,376,846,859,159,103702,55162,19533,8147,200,9.3,0,0,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,17,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,27,9.8,34,95768,920,1413,375,652,798,132,78807,50550,15978,6499,210,7.2,0,0,9900,77777,9,999999999,24,0,0,88,0.2,0,0 +2006,1,17,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,10,37,96011,667,1413,370,422,613,132,48838,38527,15366,5689,200,6.7,0,0,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,17,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,10,39,95994,387,1413,372,189,329,98,20985,15107,10965,3512,180,4.6,1,1,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,17,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,21.8,10.9,50,95810,100,1413,351,23,0,23,2201,0,2216,756,140,3.6,0,0,9900,77777,9,999999999,27,0,0,88,0.2,0,0 +2006,1,17,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,11,56,95906,0,515,357,0,0,0,0,0,0,0,150,5.7,3,3,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,17,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,19,11,60,95888,0,0,355,0,0,0,0,0,0,0,150,5.1,4,4,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,17,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17,10.8,67,95885,0,0,328,0,0,0,0,0,0,0,140,2.6,0,0,9900,77777,9,999999999,27,0,0,88,0.2,0,0 +2006,1,17,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,11,72,95834,0,0,346,0,0,0,0,0,0,0,150,2.6,6,6,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,18,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,11,77,95815,0,0,345,0,0,0,0,0,0,0,120,1,7,7,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,18,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,14.7,10.3,75,95767,0,0,317,0,0,0,0,0,0,0,170,1.5,0,0,9900,77777,9,999999999,26,0,0,88,0.2,0,0 +2006,1,18,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,10,77,95797,0,0,339,0,0,0,0,0,0,0,160,2.1,7,7,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,18,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,10,77,95797,0,0,339,0,0,0,0,0,0,0,160,2.1,7,7,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,18,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,10.4,84,95726,0,0,310,0,0,0,0,0,0,0,150,2.6,0,0,8000,77777,9,999999999,26,0,0,88,0.2,0,0 +2006,1,18,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,13,10,82,95778,0,0,340,0,0,0,0,0,0,0,140,2.6,8,8,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,18,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,13,11,88,95778,162,819,349,26,0,26,2516,0,2534,947,140,2.6,9,9,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,18,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13.1,11,87,95917,450,1413,325,234,354,121,25970,19434,13458,4358,150,3.1,3,3,6000,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,18,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,15,11,77,95815,725,1413,345,381,294,229,42613,23212,25811,8810,140,3.6,7,7,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,18,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18,12,68,95870,970,1413,354,636,567,246,73694,43070,28687,11015,140,4.1,5,5,9900,77777,9,999999999,31,0,0,88,0.2,0,0 +2006,1,18,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,19.5,11.8,61,95930,1168,1413,341,880,822,200,106558,55587,24293,9983,150,5.1,0,0,9900,77777,9,999999999,30,0,0,88,0.2,0,0 +2006,1,18,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,22,12,53,95942,1304,1413,368,997,890,175,124054,56424,21819,9034,150,5.7,3,3,9900,77777,9,999999999,31,0,0,88,0.2,0,0 +2006,1,18,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,12,50,95959,1371,1413,369,1064,823,265,129393,58171,32372,12958,140,5.1,2,2,9900,77777,9,999999999,31,0,0,88,0.2,0,0 +2006,1,18,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,24,12.5,49,95977,1362,1413,375,1057,823,263,128418,57817,32104,12864,47,5.4,2,2,9900,77777,9,999999999,32,0,0,88,0.2,0,0 +2006,1,18,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,13,47,95994,1280,1413,381,981,900,165,122125,55828,20646,8582,150,5.7,2,2,9900,77777,9,999999999,34,0,0,88,0.2,0,0 +2006,1,18,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,12,44,95994,1129,1413,374,843,878,141,104226,54152,17500,7345,170,5.1,1,1,9900,77777,9,999999999,31,0,0,88,0.2,0,0 +2006,1,18,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,24.7,12,45,95795,920,1413,366,650,797,130,78450,49175,15766,6425,210,6.2,0,0,9900,77777,9,999999999,30,0,0,88,0.2,0,0 +2006,1,18,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,24,12,47,95977,667,1413,374,419,575,147,48016,36977,16974,6184,210,6.2,2,2,9900,77777,9,999999999,31,0,0,88,0.2,0,0 +2006,1,18,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,22,12,53,95942,387,1413,368,185,299,103,20511,13813,11481,3629,210,5.7,3,3,9900,77777,9,999999999,31,0,0,88,0.2,0,0 +2006,1,18,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,20.8,11.7,56,95868,99,1413,347,23,0,23,2172,0,2187,747,160,4.6,0,0,9900,77777,9,999999999,30,0,0,88,0.2,0,0 +2006,1,18,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,19,11,60,95888,0,508,355,0,0,0,0,0,0,0,150,2.6,4,4,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,18,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,11,68,95852,0,0,348,0,0,0,0,0,0,0,140,3.6,5,5,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,18,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,16.8,11.1,69,95938,0,0,328,0,0,0,0,0,0,0,170,2.1,0,0,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,18,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,16,11,72,95834,0,0,346,0,0,0,0,0,0,0,144,1.5,6,6,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,19,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,11,77,95815,0,0,345,0,0,0,0,0,0,0,130,2.1,7,7,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,19,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,14,11,82,95797,0,0,346,0,0,0,0,0,0,0,140,3.1,8,8,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,19,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,13,11,88,95778,0,0,349,0,0,0,0,0,0,0,140,3.1,9,9,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,19,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,12,10,88,95759,0,0,343,0,0,0,0,0,0,0,130,2.1,9,9,8000,77777,9,999999999,26,0,0,88,0.2,0,0 +2006,1,19,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,10.4,90,95972,0,0,306,0,0,0,0,0,0,0,18,0,0,0,8000,77777,9,999999999,27,0,0,88,0.2,0,0 +2006,1,19,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,12,10,88,95759,0,0,343,0,0,0,0,0,0,0,319,1.5,9,9,8000,77777,9,999999999,26,0,0,88,0.2,0,0 +2006,1,19,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,12,10,88,95759,158,797,343,25,0,25,2414,0,2431,909,86,0,9,9,8000,77777,9,999999999,26,0,0,88,0.2,0,0 +2006,1,19,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15.5,11.1,75,95999,446,1413,322,234,367,118,26017,19767,13165,4272,160,0.5,0,0,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,19,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,17.2,11.6,69,95944,722,1413,353,425,487,176,48557,33883,20156,7338,248,0.8,6,6,8000,77777,9,999999999,30,0,0,88,0.2,0,0 +2006,1,19,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,19,12,64,95888,967,1413,359,655,659,203,77013,46564,24016,9505,265,1,5,5,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2006,1,19,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21.6,12.2,55,95921,1165,1413,351,878,861,167,107639,55035,20546,8558,150,3.6,0,0,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2006,1,19,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,24,13,50,95977,1302,1413,376,999,897,171,124377,55964,21404,8876,150,5.7,2,2,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2006,1,19,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,25,13,47,95994,1369,1413,381,1065,823,266,129301,57692,32508,13012,150,5.7,2,2,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2006,1,19,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,26.5,11.8,40,95750,1361,1413,375,1062,822,268,128862,58634,32766,13091,190,6.7,0,0,8000,77777,9,999999999,30,0,0,88,0.2,0,0 +2006,1,19,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,27,12,39,96029,1279,1413,385,985,818,243,119139,57364,29558,11930,210,7.2,1,1,9900,77777,9,999999999,30,0,0,88,0.2,0,0 +2006,1,19,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,27,13,42,96029,1128,1413,386,842,856,157,103167,53715,19356,8086,200,6.7,1,1,9900,77777,9,999999999,34,0,0,88,0.2,0,0 +2006,1,19,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,25.9,12.4,43,95645,919,1413,372,649,798,129,78385,48909,15665,6387,210,8.2,0,0,9900,77777,9,999999999,32,0,0,88,0.2,0,0 +2006,1,19,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,24,12,47,95977,666,1413,374,419,575,147,47986,36982,16925,6167,200,8.2,2,2,9900,77777,9,999999999,31,0,0,88,0.2,0,0 +2006,1,19,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,13,53,95959,386,1413,374,185,298,103,20418,13516,11448,3620,190,7.2,3,3,9900,77777,9,999999999,34,0,0,88,0.2,0,0 +2006,1,19,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,21.1,12,56,95760,98,1413,364,22,0,22,2121,0,2135,732,190,6.2,3,3,9900,77777,9,999999999,31,0,0,88,0.2,0,0 +2006,1,19,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,12,60,95906,0,501,361,0,0,0,0,0,0,0,180,5.1,4,4,9900,77777,9,999999999,31,0,0,88,0.2,0,0 +2006,1,19,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,19,12,64,95888,0,0,359,0,0,0,0,0,0,0,130,3.1,5,5,9900,77777,9,999999999,31,0,0,88,0.2,0,0 +2006,1,19,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17.8,11.4,66,95871,0,0,332,0,0,0,0,0,0,0,140,4.1,0,0,9900,77777,9,999999999,29,0,0,88,0.2,0,0 +2006,1,19,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,11,68,95852,0,0,348,0,0,0,0,0,0,0,150,2.1,5,5,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,20,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,11,72,95834,0,0,346,0,0,0,0,0,0,0,140,3.1,6,6,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,20,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,15.5,10.5,72,95825,0,0,343,0,0,0,0,0,0,0,62,1.5,6,6,9900,77777,9,999999999,27,0,0,88,0.2,0,0 +2006,1,20,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,15,10,72,95815,0,0,340,0,0,0,0,0,0,0,219,0,6,6,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,20,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,15,10,72,95815,0,0,340,0,0,0,0,0,0,0,141,1.5,6,6,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,20,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,14.5,10,74,95806,0,0,338,0,0,0,0,0,0,0,206,0.8,6,6,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,20,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,14,10,77,95797,0,0,328,0,0,0,0,0,0,0,168,0,3,3,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,20,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14,10,77,95797,154,774,339,33,0,33,3234,0,3257,1130,159,0,7,7,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,20,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,16,10.5,70,95772,442,1413,323,231,315,132,25434,18264,14626,4570,350,1,0,0,9900,77777,9,999999999,27,0,0,88,0.2,0,0 +2006,1,20,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,19,11,60,95888,718,1413,355,452,622,135,52673,39234,15760,5970,178,0,4,4,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,20,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,21,12,56,95924,964,1413,363,678,746,169,80851,49464,20190,8158,255,1,3,3,9900,77777,9,999999999,31,0,0,88,0.2,0,0 +2006,1,20,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,23.7,12.4,49,95711,1163,1413,361,875,860,166,107325,54843,20452,8522,270,1,0,0,9900,77777,9,999999999,32,0,0,88,0.2,0,0 +2006,1,20,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,13,45,96011,1300,1413,386,1002,819,247,121317,56862,30031,12112,140,2.1,2,2,9900,77777,9,999999999,34,0,0,88,0.2,0,0 +2006,1,20,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,27,12,39,96029,1367,1413,385,1068,823,270,129577,58566,32971,13167,180,3.6,1,1,9900,77777,9,999999999,30,0,0,88,0.2,0,0 +2006,1,20,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,29.4,11.5,33,95600,1360,1413,389,1062,822,269,128805,58820,32803,13102,210,7.2,0,0,9900,77777,9,999999999,29,0,0,88,0.2,0,0 +2006,1,20,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,29,11,33,96063,1278,1413,386,986,818,244,119245,58009,29730,11985,210,4.6,0,0,9900,77777,9,999999999,27,0,0,88,0.2,0,0 +2006,1,20,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,29,12,35,96063,1127,1413,404,832,832,167,101566,53670,20467,8514,210,6.7,3,3,9900,77777,9,999999999,30,0,0,88,0.2,0,0 +2006,1,20,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,28.4,11.1,34,95488,918,1413,400,641,768,142,76986,48983,17057,6906,210,7.7,3,3,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,20,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,28,11,35,96046,665,1413,381,420,650,113,49133,38229,13312,5020,210,7.7,0,0,9900,77777,9,999999999,27,0,0,88,0.2,0,0 +2006,1,20,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,11,39,96011,385,1413,378,186,311,102,20659,14359,11306,3580,200,6.2,1,1,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,20,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,23.4,11.2,46,95545,96,1413,359,22,0,22,2118,0,2133,728,190,5.1,0,0,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,20,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,22,12,53,95942,0,492,368,0,0,0,0,0,0,0,140,4.1,3,3,9900,77777,9,999999999,31,0,0,88,0.2,0,0 +2006,1,20,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,12,56,95924,0,0,363,0,0,0,0,0,0,0,140,4.1,3,3,9900,77777,9,999999999,31,0,0,88,0.2,0,0 +2006,1,20,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,19.5,11.3,59,95694,0,0,340,0,0,0,0,0,0,0,140,3.1,0,0,9900,77777,9,999999999,29,0,0,88,0.2,0,0 +2006,1,20,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,19,11,60,95888,0,0,355,0,0,0,0,0,0,0,150,3.6,4,4,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,21,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18,11,64,95870,0,0,353,0,0,0,0,0,0,0,170,2.1,5,5,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,21,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17.5,10.9,65,95573,0,0,331,0,0,0,0,0,0,0,140,0.5,0,0,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,21,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,17,11,68,95852,0,0,348,0,0,0,0,0,0,0,234,1.5,5,5,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,21,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,16,11,72,95834,0,0,346,0,0,0,0,0,0,0,239,1,6,6,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,21,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,15.5,10.9,74,95536,0,0,322,0,0,0,0,0,0,0,348,0,0,0,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,21,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,15,11,77,95815,0,0,345,0,0,0,0,0,0,0,97,0,7,7,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,21,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,16,11,72,95834,149,752,346,34,0,34,3332,0,3356,1144,122,1,6,6,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,21,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18.5,10.9,61,95723,438,1412,335,228,311,131,25062,17816,14494,4522,190,1,0,0,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,21,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,21,11,53,95924,715,1412,362,459,633,138,53397,40274,16152,6088,214,0.5,3,3,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,21,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,23,11,47,95959,961,1412,368,688,807,137,83251,50938,16694,6846,140,3.1,2,2,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,21,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,24.6,11.6,44,95784,1160,1412,365,874,886,145,108267,55060,18059,7572,150,3.1,0,0,8000,77777,9,999999999,29,0,0,88,0.2,0,0 +2006,1,21,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,12,42,96011,1298,1412,379,1002,819,249,121368,57595,30260,12186,130,3.1,1,1,9900,77777,9,999999999,30,0,0,88,0.2,0,0 +2006,1,21,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,27,12,39,96029,1366,1412,385,1066,822,270,129392,58534,32912,13146,150,3.6,1,1,9900,77777,9,999999999,30,0,0,88,0.2,0,0 +2006,1,21,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,28.9,11.9,35,95696,1359,1412,394,1060,822,267,128544,58496,32631,13044,190,4.6,1,1,9900,77777,9,999999999,30,0,0,88,0.2,0,0 +2006,1,21,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,29,11,33,96063,1277,1412,386,985,818,244,119134,57983,29695,11972,210,7.2,0,0,9900,77777,9,999999999,27,0,0,88,0.2,0,0 +2006,1,21,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,29,12,35,96063,1127,1412,387,842,857,157,103234,54413,19383,8091,200,8.2,0,0,9900,77777,9,999999999,30,0,0,88,0.2,0,0 +2006,1,21,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,28.2,11.3,35,95551,917,1412,399,640,767,141,76864,48828,17025,6894,200,7.7,3,3,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,21,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,12,42,96011,664,1412,379,418,644,115,48853,37621,13441,5064,200,8.7,1,1,9900,77777,9,999999999,30,0,0,88,0.2,0,0 +2006,1,21,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,11,47,95959,383,1412,368,185,307,102,20497,14144,11298,3574,200,9.3,2,2,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,21,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,21.7,10.6,49,95733,95,1412,392,11,0,11,1076,0,1084,419,180,6.7,9,9,9900,7500,9,999999999,27,0,0,88,0.2,0,0 +2006,1,21,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,20,10,53,95906,0,483,383,0,0,0,0,0,0,0,140,4.6,9,9,9900,7500,9,999999999,25,0,0,88,0.2,0,0 +2006,1,21,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,19,10,56,95888,0,0,351,0,0,0,0,0,0,0,130,4.1,3,3,9900,7500,9,999999999,25,0,0,88,0.2,0,0 +2006,1,21,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18.1,9.2,56,95801,0,0,354,0,0,0,0,0,0,0,140,4.1,6,6,9900,7500,9,999999999,23,0,0,88,0.2,0,0 +2006,1,21,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18,9,56,95870,0,0,345,0,0,0,0,0,0,0,140,2.1,3,3,9900,7500,9,999999999,23,0,0,88,0.2,0,0 +2006,1,22,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,9,59,95852,0,0,343,0,0,0,0,0,0,0,140,2.1,4,4,9900,7500,9,999999999,23,0,0,88,0.2,0,0 +2006,1,22,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,16.6,8.8,60,95802,0,0,324,0,0,0,0,0,0,0,150,1,0,0,9900,7500,9,999999999,22,0,0,88,0.2,0,0 +2006,1,22,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,16,9,63,95834,0,0,341,0,0,0,0,0,0,0,328,1.5,5,5,9900,7500,9,999999999,23,0,0,88,0.2,0,0 +2006,1,22,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,9,63,95834,0,0,341,0,0,0,0,0,0,0,160,2.1,5,5,9900,7500,9,999999999,23,0,0,88,0.2,0,0 +2006,1,22,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,14.8,8.3,65,95788,0,0,316,0,0,0,0,0,0,0,211,0,0,0,9900,7500,9,999999999,21,0,0,88,0.2,0,0 +2006,1,22,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14,8,67,95797,0,0,330,0,0,0,0,0,0,0,139,1,5,5,9900,7500,9,999999999,21,0,0,88,0.2,0,0 +2006,1,22,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14,9,72,95797,145,729,334,33,0,33,3184,0,3206,1096,0,1,6,6,9900,7500,9,999999999,23,0,0,88,0.2,0,0 +2006,1,22,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16.7,9.2,61,95889,434,1412,339,222,299,131,24501,17335,14441,4486,170,1.5,3,3,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,22,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,20,9,49,95906,711,1412,355,457,625,141,53054,40842,16466,6173,197,0.5,3,3,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,22,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,22,10,46,95942,958,1412,362,687,809,137,83155,51502,16639,6817,216,1.5,2,2,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,22,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,24.5,10.1,40,95772,1157,1412,378,863,861,156,106335,55298,19331,8072,100,1.5,3,3,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,22,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,11,39,96011,1296,1412,378,1003,819,250,121365,58248,30426,12239,170,3.1,1,1,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,22,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,28,11,35,96046,1364,1412,381,1067,822,271,129431,59179,33079,13197,130,3.6,0,0,9900,77777,9,999999999,27,0,0,88,0.2,0,0 +2006,1,22,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,28.5,10.7,33,95642,1357,1412,400,1047,871,208,129513,58110,25873,10579,150,5.7,3,3,9900,77777,9,999999999,27,0,0,88,0.2,0,0 +2006,1,22,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,29,10,31,96063,1276,1412,408,917,697,286,109648,52631,34450,13599,190,6.7,5,5,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,22,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,30,10,29,96079,1126,1412,413,786,578,324,91198,47773,37851,14391,200,5.7,5,5,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,22,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,30.2,11.2,31,95585,916,1412,441,335,82,281,38054,6735,32183,11701,140,5.1,9,9,9900,7500,9,999999999,28,0,0,88,0.2,0,0 +2006,1,22,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,29,10,31,96063,663,1412,432,216,9,212,24081,713,23722,7898,210,6.2,9,9,9900,7500,9,999999999,25,0,0,88,0.2,0,0 +2006,1,22,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,28,9,30,96046,382,1412,425,96,0,96,10663,13,10694,3427,210,6.2,9,9,9900,7500,9,999999999,23,0,0,88,0.2,0,0 +2006,1,22,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,25.1,6.8,31,95641,93,1412,383,20,0,20,1921,0,1934,670,200,5.1,5,5,9900,7500,9,999999999,18,0,0,88,0.2,0,0 +2006,1,22,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,24,6,31,95977,0,473,355,0,0,0,0,0,0,0,170,4.6,0,0,9900,7500,9,999999999,17,0,0,88,0.2,0,0 +2006,1,22,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,6,33,95959,0,0,350,0,0,0,0,0,0,0,130,2.1,0,0,9900,7500,9,999999999,17,0,0,88,0.2,0,0 +2006,1,22,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,21.3,5.3,35,95697,0,0,356,0,0,0,0,0,0,0,140,2.6,3,3,9900,7500,9,999999999,16,0,0,88,0.2,0,0 +2006,1,22,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,4,33,95924,0,0,339,0,0,0,0,0,0,0,140,3.1,0,0,9900,7500,9,999999999,14,0,0,88,0.2,0,0 +2006,1,23,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,5,37,95906,0,0,335,0,0,0,0,0,0,0,220,1,0,0,9900,7500,9,999999999,15,0,0,88,0.2,0,0 +2006,1,23,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17.7,7.2,50,95624,0,0,342,0,0,0,0,0,0,0,330,1,3,3,9900,7500,9,999999999,19,0,0,88,0.2,0,0 +2006,1,23,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,18,7,49,95870,0,0,339,0,0,0,0,0,0,0,339,0,2,2,9900,7500,9,999999999,19,0,0,88,0.2,0,0 +2006,1,23,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,16,7,55,95834,0,0,333,0,0,0,0,0,0,0,175,0.5,3,3,9900,7500,9,999999999,19,0,0,88,0.2,0,0 +2006,1,23,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,15.5,7.5,59,95825,0,0,334,0,0,0,0,0,0,0,185,0.2,4,4,8950,7500,9,999999999,20,0,0,88,0.2,0,0 +2006,1,23,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,8,63,95815,0,0,335,0,0,0,0,0,0,0,232,0,5,5,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2006,1,23,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,8,59,95834,141,706,340,33,0,33,3220,0,3243,1093,155,0.5,5,5,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2006,1,23,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20.4,7.8,44,95710,430,1412,358,215,278,131,23706,16304,14437,4461,120,0.5,4,4,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2006,1,23,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,22,9,43,95942,708,1412,356,459,595,160,52778,40809,18507,6791,278,1,1,1,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,23,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,23,7,36,95959,955,1412,352,688,815,136,83463,53132,16579,6780,175,0,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,23,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,27.1,7.6,29,95646,1155,1412,388,864,864,156,106580,56693,19279,8043,110,2.6,3,3,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2006,1,23,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,29,9,29,96063,1294,1412,400,991,897,168,123664,58027,21046,8719,140,3.6,3,3,9900,77777,9,999999999,22,0,0,88,0.2,0,0 +2006,1,23,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,30,9,27,96079,1362,1412,406,1055,822,260,128482,59369,31874,12763,150,4.6,3,3,9900,77777,9,999999999,22,0,0,88,0.2,0,0 +2006,1,23,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,31.1,7.4,23,95505,1356,1412,409,1051,822,261,128027,60168,31946,12779,210,6.2,3,3,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,23,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,31,8,24,96096,1275,1412,410,975,895,165,121570,58351,20670,8572,210,7.7,3,3,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2006,1,23,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,31,8,24,96096,1124,1412,410,835,835,169,101994,56041,20736,8601,210,8.2,3,3,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2006,1,23,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,29.9,7.8,25,95419,915,1412,403,642,770,142,77167,50684,17183,6938,210,8.2,3,3,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2006,1,23,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,29,8,27,96063,662,1412,382,419,611,133,48513,39084,15400,5680,210,8.2,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2006,1,23,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,27,8,30,96029,380,1412,372,184,327,96,20552,15045,10745,3432,200,6.7,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2006,1,23,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,25,7.2,32,95535,91,1412,361,21,0,21,2021,0,2034,692,190,5.7,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,23,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,6,33,95959,0,463,350,0,0,0,0,0,0,0,160,5.1,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2006,1,23,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,6,33,95959,0,0,350,0,0,0,0,0,0,0,140,2.6,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2006,1,23,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,21,6.2,38,95683,0,0,341,0,0,0,0,0,0,0,130,3.1,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2006,1,23,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,6,40,95906,0,0,343,0,0,0,0,0,0,0,140,2.1,1,1,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2006,1,24,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,19,7,46,95888,0,0,344,0,0,0,0,0,0,0,155,1,2,2,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,24,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,18,8,52,95638,0,0,330,0,0,0,0,0,0,0,160,1,0,0,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2006,1,24,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,16,8,59,95834,0,0,337,0,0,0,0,0,0,0,292,1.5,4,4,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2006,1,24,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,9,63,95834,0,0,341,0,0,0,0,0,0,0,110,2.1,5,5,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,24,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,16.2,9.6,65,95625,0,0,323,0,0,0,0,0,0,0,200,0.5,0,0,9900,77777,9,999999999,24,0,0,88,0.2,0,0 +2006,1,24,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,14,9,72,95797,0,0,334,0,0,0,0,0,0,0,118,1,6,6,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,24,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,16,9,63,95834,136,683,341,32,0,32,3107,0,3129,1056,360,0.5,5,5,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,24,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17.5,9.9,61,95800,426,1411,329,219,303,127,24087,17094,14074,4369,30,1,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,24,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,21,9,46,95924,704,1411,356,455,642,135,53033,41193,15746,5921,261,0.5,2,2,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,24,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,24,8,36,95977,952,1411,358,684,812,136,82943,52522,16501,6748,211,1.5,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2006,1,24,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,25.8,7,30,95804,1152,1411,365,873,809,211,105293,58082,25610,10440,150,2.1,0,0,9900,77777,9,999999999,18,0,0,88,0.2,0,0 +2006,1,24,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,28,9,30,96046,1292,1411,379,1002,818,252,121259,59379,30657,12308,120,3.6,0,0,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,24,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,30,10,29,96079,1361,1411,390,1065,822,272,129240,59740,33162,13219,140,3.6,0,0,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,24,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,30.2,8.6,26,95718,1354,1411,389,1062,821,272,128786,60480,33201,13221,210,6.2,0,0,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2006,1,24,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,30,7,24,96079,1273,1411,386,988,817,249,119485,60191,30323,12173,210,6.7,0,0,9900,77777,9,999999999,18,0,0,88,0.2,0,0 +2006,1,24,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,30,7,24,96079,1123,1411,386,846,866,155,104017,57339,19195,7998,210,7.7,0,0,9900,77777,9,999999999,18,0,0,88,0.2,0,0 +2006,1,24,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,30,8.5,26,95667,914,1411,388,649,798,131,78412,51075,15896,6456,210,7.7,0,0,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2006,1,24,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,28,10,32,96046,660,1411,380,417,588,141,47912,37889,16326,5965,210,8.7,0,0,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,24,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,10,37,96011,379,1411,370,183,322,96,20321,14407,10729,3425,200,7.2,0,0,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,24,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,24.8,9.6,38,95768,89,1411,363,20,0,20,1969,0,1982,676,190,6.2,0,0,9900,77777,9,999999999,24,0,0,88,0.2,0,0 +2006,1,24,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,24,9,38,95977,0,452,359,0,0,0,0,0,0,0,180,4.6,0,0,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,24,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,10,44,95959,0,0,362,0,0,0,0,0,0,0,150,2.1,1,1,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,24,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,21,10.5,51,95834,0,0,346,0,0,0,0,0,0,0,110,1,0,0,9900,77777,9,999999999,26,0,0,88,0.2,0,0 +2006,1,24,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,20,10,53,95906,0,0,356,0,0,0,0,0,0,0,288,0,3,3,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,25,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,19,10,56,95888,0,0,351,0,0,0,0,0,0,0,260,1,3,3,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,25,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17.9,10.5,62,95750,0,0,332,0,0,0,0,0,0,0,360,0.5,0,0,9900,77777,9,999999999,27,0,0,88,0.2,0,0 +2006,1,25,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,16,10,68,95834,0,0,342,0,0,0,0,0,0,0,146,0,5,5,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,25,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,16,10,68,95834,0,0,342,0,0,0,0,0,0,0,124,0.5,5,5,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,25,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,14.8,9.8,72,95703,0,0,317,0,0,0,0,0,0,0,228,0,0,0,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,25,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14,10,77,95797,0,0,339,0,0,0,0,0,0,0,80,1,7,7,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,25,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,10,72,95815,132,660,340,28,0,28,2695,0,2714,945,310,2.1,6,6,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,25,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,19,10.6,58,95742,422,1411,337,216,299,126,23730,16627,13929,4319,289,0,0,0,9900,77777,9,999999999,27,0,0,88,0.2,0,0 +2006,1,25,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,23,10,44,95959,700,1411,362,452,643,132,52673,40649,15491,5830,306,1,1,1,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,25,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,26,11,39,96011,949,1411,378,678,810,133,82197,50724,16185,6632,225,0,1,1,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,25,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,27.6,10.4,34,95693,1149,1411,378,866,863,163,106359,55921,20046,8353,130,2.1,0,0,9900,77777,9,999999999,26,0,0,88,0.2,0,0 +2006,1,25,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,30,10,29,96079,1289,1411,390,998,818,250,120833,58764,30414,12226,140,3.1,0,0,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,25,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,32,10,26,96113,1359,1411,400,1064,821,271,129044,59719,33119,13203,150,4.1,0,0,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,25,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,33.3,5,17,95579,1353,1411,400,1066,821,278,129306,62290,33864,13433,140,4.1,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2006,1,25,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,35,5,16,96162,1272,1411,409,990,817,252,119701,61147,30667,12285,140,5.7,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2006,1,25,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,35,6,17,96162,1122,1411,411,847,864,159,103944,57874,19565,8140,150,5.7,0,0,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2006,1,25,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,35.3,4.8,15,95431,913,1411,411,652,796,136,78630,52850,16507,6675,210,6.7,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2006,1,25,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,34,8,20,96146,659,1411,408,417,562,154,47667,38195,17701,6358,220,7.2,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2006,1,25,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,31,8,24,96096,377,1411,393,182,325,95,20299,14779,10647,3397,200,6.2,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2006,1,25,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,28.7,7.4,26,95484,87,1411,380,20,0,20,1932,0,1945,663,180,5.7,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,25,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,8,32,96011,0,440,367,0,0,0,0,0,0,0,120,3.6,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2006,1,25,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,7,32,95994,0,0,361,0,0,0,0,0,0,0,140,4.1,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2006,1,25,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,23.1,8.8,40,95568,0,0,354,0,0,0,0,0,0,0,110,2.1,0,0,9900,77777,9,999999999,22,0,0,88,0.2,0,0 +2006,1,25,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,23,8,38,95959,0,0,353,0,0,0,0,0,0,0,96,1.5,0,0,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2006,1,26,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,20,9,49,95906,0,0,351,0,0,0,0,0,0,0,10,1,2,2,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,26,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,19.6,8.3,48,95573,0,0,337,0,0,0,0,0,0,0,130,1,0,0,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2006,1,26,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,19,8,49,95888,0,0,345,0,0,0,0,0,0,0,122,0,2,2,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2006,1,26,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,17,9,59,95852,0,0,343,0,0,0,0,0,0,0,63,1,4,4,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,26,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15,8.3,64,95536,0,0,317,0,0,0,0,0,0,0,360,0.5,0,0,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2006,1,26,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,16,9,63,95834,0,0,341,0,0,0,0,0,0,0,179,0.5,5,5,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,26,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,16,9,63,95834,127,636,341,29,0,29,2766,0,2785,952,25,0.5,5,5,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,26,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,21,8,43,95924,418,1411,350,213,299,125,23496,16880,13785,4264,137,0,1,1,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2006,1,26,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,24,9,38,95977,697,1411,359,450,642,133,52409,40932,15524,5828,43,0.5,0,0,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,26,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,27,9,32,96029,945,1411,374,678,810,134,82114,51801,16292,6662,48,1,0,0,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2006,1,26,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,29,8,27,96063,1147,1411,382,867,809,209,104549,57461,25288,10323,160,2.6,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2006,1,26,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,30,9,27,96079,1287,1411,389,998,817,251,120757,59303,30515,12256,140,5.1,0,0,9900,77777,9,999999999,22,0,0,88,0.2,0,0 +2006,1,26,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,32,9,24,96113,1357,1411,399,1063,821,272,129023,60269,33246,13241,140,5.1,0,0,9900,77777,9,999999999,22,0,0,88,0.2,0,0 +2006,1,26,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,33,9,23,96129,1351,1411,404,1058,821,271,128360,60200,33032,13164,150,5.7,0,0,9900,77777,9,999999999,22,0,0,88,0.2,0,0 +2006,1,26,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,34,9,22,96146,1271,1411,410,982,817,246,118837,59071,29898,12032,160,6.2,0,0,9900,77777,9,999999999,22,0,0,88,0.2,0,0 +2006,1,26,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,33,8,21,96129,1121,1411,403,843,864,155,103523,56753,19178,7993,200,6.7,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2006,1,26,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,32,11,28,96113,911,1411,402,644,797,129,77823,49565,15595,6345,210,7.2,0,0,9900,77777,9,999999999,27,0,0,88,0.2,0,0 +2006,1,26,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,30,10,29,96079,657,1411,390,414,586,141,47629,37733,16249,5931,200,6.7,0,0,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,26,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,28,11,35,96046,375,1411,381,180,303,99,19933,13604,11030,3480,200,6.7,0,0,9900,77777,9,999999999,27,0,0,88,0.2,0,0 +2006,1,26,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,11,39,96011,85,1411,378,19,0,19,1871,0,1884,644,140,4.1,1,1,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,26,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,24,10,41,95977,0,428,367,0,0,0,0,0,0,0,140,4.1,1,1,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2006,1,26,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,12,50,95959,0,0,369,0,0,0,0,0,0,0,140,4.1,2,2,9900,77777,9,999999999,31,0,0,88,0.2,0,0 +2006,1,26,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,12,56,95924,0,0,363,0,0,0,0,0,0,0,130,3.6,3,3,9900,77777,9,999999999,31,0,0,88,0.2,0,0 +2006,1,26,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,11,56,95906,0,0,357,0,0,0,0,0,0,0,150,2.6,3,3,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,27,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,19,11,60,95888,0,0,355,0,0,0,0,0,0,0,229,1.5,4,4,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,27,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,18,12,68,95870,0,0,354,0,0,0,0,0,0,0,9,1.5,5,5,9900,77777,9,999999999,31,0,0,88,0.2,0,0 +2006,1,27,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,18,12,68,95870,0,0,354,0,0,0,0,0,0,0,39,1,5,5,9900,77777,9,999999999,31,0,0,88,0.2,0,0 +2006,1,27,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,17,12,72,95852,0,0,352,0,0,0,0,0,0,0,314,1.5,6,6,9900,77777,9,999999999,31,0,0,88,0.2,0,0 +2006,1,27,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,15,11,77,95815,0,0,345,0,0,0,0,0,0,0,267,1.5,7,7,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2006,1,27,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,15,12,82,95815,0,0,352,0,0,0,0,0,0,0,197,1,8,8,9900,77777,9,999999999,31,0,0,88,0.2,0,0 +2006,1,27,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,16,12,77,95834,123,613,351,23,0,23,2188,0,2203,793,17,1.5,7,7,9900,77777,9,999999999,31,0,0,88,0.2,0,0 +2006,1,27,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,18,12,68,95870,413,1410,375,108,17,103,12029,830,11502,3747,150,2.6,9,9,9900,77777,9,999999999,31,0,0,88,0.2,0,0 +2006,1,27,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,13,60,95924,693,1410,370,413,408,212,46184,30604,23865,8154,150,2.1,5,5,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2006,1,27,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,24,12,47,95977,942,1410,384,625,639,197,73347,44867,23253,9172,70,1.5,5,5,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2006,1,27,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,12,42,96011,1144,1410,394,799,647,274,94173,48892,32447,12807,140,2.1,5,5,8000,77777,9,999999999,30,0,0,88,0.2,0,0 +2006,1,27,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,28,11,35,96046,1285,1410,381,992,886,184,122769,57707,22879,9444,150,3.6,0,0,9900,77777,9,999999999,27,0,0,88,0.2,0,0 +2006,1,27,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,30,12,33,96079,1355,1410,393,1057,821,267,128167,58344,32560,13019,150,5.1,0,0,9900,77777,9,999999999,30,0,0,88,0.2,0,0 +2006,1,27,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,31,12,31,96096,1349,1410,398,1052,821,265,127539,58279,32359,12946,160,7.2,0,0,9900,77777,9,999999999,30,0,0,88,0.2,0,0 +2006,1,27,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,31,13,33,96096,1269,1410,399,975,816,239,117881,56462,29080,11763,160,6.7,0,0,9900,77777,9,999999999,33,0,0,88,0.2,0,0 +2006,1,27,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,32,13,31,96113,1119,1410,404,835,856,155,102292,53512,19050,7962,170,6.7,0,0,9900,77777,9,999999999,33,0,0,88,0.2,0,0 +2006,1,27,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,30,13,35,96079,910,1410,394,641,796,127,77378,48193,15351,6257,210,7.7,0,0,9900,77777,9,999999999,33,0,0,88,0.2,0,0 +2006,1,27,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,29,13,37,96063,655,1410,389,411,571,145,47010,36052,16658,6056,210,6.7,0,0,9900,77777,9,999999999,34,0,0,88,0.2,0,0 +2006,1,27,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,27,14,45,96029,373,1410,392,177,295,99,19593,12565,11007,3471,150,6.2,2,2,9900,77777,9,999999999,37,0,0,88,0.2,0,0 +2006,1,27,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,14,54,95977,82,1410,386,17,0,17,1682,0,1693,592,140,4.6,5,5,6000,77777,9,999999999,37,0,0,88,0.2,0,0 +2006,1,27,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,22,14,60,95942,0,415,373,0,0,0,0,0,0,0,192,4.1,4,4,7950,77777,9,999999999,37,0,0,88,0.2,0,0 +2006,1,27,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,14,68,95906,0,0,366,0,0,0,0,0,0,0,130,3.6,5,5,9900,77777,9,999999999,38,0,0,88,0.2,0,0 +2006,1,27,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,19,14,73,95888,0,0,364,0,0,0,0,0,0,0,160,4.1,6,6,9900,77777,9,999999999,38,0,0,88,0.2,0,0 +2006,1,27,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,13,77,95852,0,0,357,0,0,0,0,0,0,0,170,3.6,7,7,9900,77777,9,999999999,34,0,0,88,0.2,0,0 +2006,1,28,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,13,82,95834,0,0,358,0,0,0,0,0,0,0,150,2.6,8,8,9900,77777,9,999999999,34,0,0,88,0.2,0,0 +2006,1,28,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,13,88,95815,0,0,335,0,0,0,0,0,0,0,150,3.1,3,3,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2006,1,28,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,13,88,95815,0,0,335,0,0,0,0,0,0,0,160,2.6,3,3,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2006,1,28,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,13,94,95797,0,0,356,0,0,0,0,0,0,0,160,2.6,9,9,600,60,0,999999999,34,0,0,88,0.2,0,0 +2006,1,28,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,13,94,95797,0,0,366,0,0,0,0,0,0,0,150,2.6,10,10,600,30,0,999999999,34,0,0,88,0.2,0,0 +2006,1,28,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,14,13,94,95797,0,0,366,0,0,0,0,0,0,0,140,2.6,10,10,800,30,0,999999999,34,0,0,88,0.2,0,0 +2006,1,28,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,13,94,95797,118,590,366,9,0,9,825,0,831,339,130,2.6,10,10,600,30,0,999999999,34,0,0,88,0.2,0,0 +2006,1,28,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,14,100,95797,409,1410,367,65,0,65,6385,0,6435,2626,140,2.1,10,10,1200,90,0,999999999,38,0,0,88,0.2,0,0 +2006,1,28,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,14,94,95815,689,1410,372,139,0,139,14007,0,14129,5999,150,2.6,10,10,3000,90,0,999999999,38,0,0,88,0.2,0,0 +2006,1,28,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,14,88,95834,939,1410,347,620,556,249,71318,41934,28857,10937,150,3.6,5,5,4000,77777,0,999999999,38,0,0,88,0.2,0,0 +2006,1,28,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,15,78,95888,1141,1410,357,841,840,160,102994,51540,19722,8246,150,4.1,3,3,6000,77777,0,999999999,42,0,0,88,0.2,0,0 +2006,1,28,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,22,14,60,95942,1282,1410,373,953,820,206,116623,53356,25371,10410,140,4.6,4,4,9900,77777,0,999999999,37,0,0,88,0.2,0,0 +2006,1,28,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,14,57,95959,1353,1410,378,1029,856,206,127034,54982,25589,10490,150,6.2,4,4,9900,77777,0,999999999,37,0,0,88,0.2,0,0 +2006,1,28,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,24,15,57,95977,1348,1410,385,1022,861,198,126467,54043,24643,10136,150,7.2,4,4,9900,77777,0,999999999,41,0,0,88,0.2,0,0 +2006,1,28,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,15,51,96011,1267,1410,392,963,890,162,119737,53654,20253,8439,160,7.2,3,3,9900,77777,0,999999999,41,0,0,88,0.2,0,0 +2006,1,28,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,15,51,96011,1117,1410,392,825,809,183,99650,51758,22200,9187,150,6.7,3,3,9900,77777,0,999999999,41,0,0,88,0.2,0,0 +2006,1,28,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,27.4,14.5,45,95803,908,1410,405,593,594,211,68828,41881,24548,9485,150,5.7,5,5,9900,77777,0,999999999,39,0,0,88,0.2,0,0 +2006,1,28,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,27,15,48,96029,653,1410,404,380,490,152,43205,30806,17420,6278,150,6.7,5,5,9900,77777,0,999999999,41,0,0,88,0.2,0,0 +2006,1,28,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,15,54,95994,371,1410,387,174,322,89,19336,12340,9940,3217,160,6.2,3,3,9900,77777,0,999999999,41,0,0,88,0.2,0,0 +2006,1,28,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,15,61,95959,80,1410,383,17,0,17,1630,0,1642,575,150,5.1,5,5,8000,77777,9,999999999,41,0,0,88,0.2,0,0 +2006,1,28,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,15,64,95942,0,401,377,0,0,0,0,0,0,0,140,4.1,5,5,7000,77777,9,999999999,41,0,0,88,0.2,0,0 +2006,1,28,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,15,73,95906,0,0,367,0,0,0,0,0,0,0,140,3.6,5,5,7000,77777,9,999999999,42,0,0,88,0.2,0,0 +2006,1,28,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,19.5,14.5,73,95897,0,0,367,0,0,0,0,0,0,0,143,2,6,6,7000,77777,9,999999999,40,0,0,88,0.2,0,0 +2006,1,28,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,14,73,95888,0,0,356,0,0,0,0,0,0,0,18,0.5,3,3,7000,77777,9,999999999,38,0,0,88,0.2,0,0 +2006,1,29,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,13,77,95852,0,0,345,0,0,0,0,0,0,0,305,0.5,3,3,6000,77777,9,999999999,34,0,0,88,0.2,0,0 +2006,1,29,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15.9,12.7,81,95695,0,0,325,0,0,0,0,0,0,0,350,0.5,0,0,5000,77777,9,999999999,33,0,0,88,0.2,0,0 +2006,1,29,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,14,94,95815,0,0,323,0,0,0,0,0,0,0,53,0,0,0,5000,77777,9,999999999,38,0,0,88,0.2,0,0 +2006,1,29,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,13,82,95834,0,0,340,0,0,0,0,0,0,0,170,1.5,3,3,5000,77777,9,999999999,34,0,0,88,0.2,0,0 +2006,1,29,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16.1,13.4,84,95680,0,0,346,0,0,0,0,0,0,0,140,1,5,5,5000,77777,9,999999999,36,0,0,88,0.2,0,0 +2006,1,29,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,14,88,95834,0,0,367,0,0,0,0,0,0,0,170,1,9,9,5000,7500,9,999999999,38,0,0,88,0.2,0,0 +2006,1,29,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,13,82,95834,114,567,366,13,0,13,1300,0,1309,508,139,1,9,9,5000,7500,9,999999999,34,0,0,88,0.2,0,0 +2006,1,29,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,14,77,95870,405,1410,377,104,3,104,11595,130,11550,3730,19,1.5,9,9,5000,7500,9,999999999,38,0,0,88,0.2,0,0 +2006,1,29,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,15,73,95906,685,1410,389,225,32,209,25134,2360,23501,8030,170,2.1,9,9,5000,7500,9,999999999,42,0,0,88,0.2,0,0 +2006,1,29,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,15,64,95942,936,1410,377,616,553,249,70827,41262,28782,10906,150,3.6,5,5,5000,77777,9,999999999,41,0,0,88,0.2,0,0 +2006,1,29,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,15,61,95959,1138,1410,383,791,572,328,91603,45283,38222,14581,160,4.6,5,5,5000,77777,9,999999999,41,0,0,88,0.2,0,0 +2006,1,29,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,15,51,96011,1280,1410,422,507,70,443,58435,6082,51441,18503,160,5.1,9,9,8000,7500,9,999999999,41,0,0,88,0.2,0,0 +2006,1,29,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,27,14,45,96029,1351,1410,392,1048,605,467,121532,52982,54604,19525,160,5.1,2,2,9900,7500,9,999999999,37,0,0,88,0.2,0,0 +2006,1,29,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,28,14,42,96046,1346,1410,392,1045,820,261,126647,56726,31771,12752,150,4.6,1,1,9900,7500,9,999999999,37,0,0,88,0.2,0,0 +2006,1,29,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,29,13,37,96063,1266,1410,389,972,816,238,117501,56386,28966,11721,140,5.1,0,0,9900,7500,9,999999999,34,0,0,88,0.2,0,0 +2006,1,29,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,29,14,40,96063,1116,1410,397,830,855,153,101744,52648,18813,7871,200,5.7,1,1,9900,7500,9,999999999,37,0,0,88,0.2,0,0 +2006,1,29,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,29,14,40,96063,906,1410,397,637,795,125,76883,47359,15133,6172,200,5.7,1,1,9900,7500,9,999999999,37,0,0,88,0.2,0,0 +2006,1,29,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,27,14,45,96029,651,1410,392,406,563,146,46424,35189,16733,6068,210,6.7,2,2,9900,7500,9,999999999,37,0,0,88,0.2,0,0 +2006,1,29,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,15,51,96011,368,1410,392,173,284,99,19085,11739,10923,3436,190,4.6,3,3,9900,7500,9,999999999,41,0,0,88,0.2,0,0 +2006,1,29,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,24.7,14.7,54,95549,77,1410,394,15,0,15,1478,0,1488,529,160,4.6,6,6,9900,7500,9,999999999,40,0,0,88,0.2,0,0 +2006,1,29,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,22,15,64,95942,0,386,377,0,0,0,0,0,0,0,150,3.6,5,5,9900,7500,9,999999999,41,0,0,88,0.2,0,0 +2006,1,29,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,21,15,69,95924,0,0,367,0,0,0,0,0,0,0,140,3.1,3,3,9900,77777,9,999999999,41,0,0,88,0.2,0,0 +2006,1,29,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,20,14,68,95906,0,0,360,0,0,0,0,0,0,0,140,3.1,3,3,9900,77777,9,999999999,38,0,0,88,0.2,0,0 +2006,1,29,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19,14,73,95888,0,0,356,0,0,0,0,0,0,0,160,2.6,3,3,9900,77777,9,999999999,38,0,0,88,0.2,0,0 +2006,1,30,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18,14,77,95870,0,0,356,0,0,0,0,0,0,0,170,2.6,5,5,9900,77777,9,999999999,38,0,0,88,0.2,0,0 +2006,1,30,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,14,77,95870,0,0,356,0,0,0,0,0,0,0,140,2.1,5,5,8000,77777,9,999999999,38,0,0,88,0.2,0,0 +2006,1,30,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,14,82,95852,0,0,351,0,0,0,0,0,0,0,160,2.6,5,5,8000,77777,9,999999999,38,0,0,88,0.2,0,0 +2006,1,30,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,14,82,95852,0,0,351,0,0,0,0,0,0,0,150,2.1,5,5,8000,77777,9,999999999,38,0,0,88,0.2,0,0 +2006,1,30,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,14,82,95852,0,0,351,0,0,0,0,0,0,0,37,0,5,5,8000,77777,9,999999999,38,0,0,88,0.2,0,0 +2006,1,30,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,14,82,95852,0,0,351,0,0,0,0,0,0,0,32,1.5,5,5,8000,77777,9,999999999,38,0,0,88,0.2,0,0 +2006,1,30,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,14,82,95852,109,543,351,23,0,23,2246,0,2261,786,140,2.1,5,5,6000,77777,9,999999999,38,0,0,88,0.2,0,0 +2006,1,30,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,14,77,95870,401,1409,351,196,361,93,21983,15414,10504,3460,140,2.1,3,3,8000,77777,9,999999999,38,0,0,88,0.2,0,0 +2006,1,30,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,14,64,95924,682,1409,371,410,532,152,46941,33925,17465,6401,170,2.1,5,5,9900,77777,9,999999999,38,0,0,88,0.2,0,0 +2006,1,30,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,15,61,95959,932,1409,380,634,697,173,74989,45203,20487,8205,140,2.1,4,4,9900,77777,9,999999999,41,0,0,88,0.2,0,0 +2006,1,30,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,24,15,57,95977,1135,1409,385,829,817,170,100978,50993,20831,8676,150,3.1,4,4,9900,77777,9,999999999,41,0,0,88,0.2,0,0 +2006,1,30,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,26,15,51,96011,1277,1409,398,911,572,393,106064,46825,46010,17119,170,4.1,5,5,9900,77777,9,999999999,41,0,0,88,0.2,0,0 +2006,1,30,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,27,14,45,96029,1348,1409,426,541,118,427,63131,9937,50259,18441,170,5.1,9,9,9900,7500,9,999999999,37,0,0,88,0.2,0,0 +2006,1,30,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,28,13.6,41,95557,1344,1409,407,971,556,441,113107,47610,51677,18785,200,5.1,5,5,9900,7500,9,999999999,36,0,0,88,0.2,0,0 +2006,1,30,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,29,14,40,96063,1264,1409,413,901,675,295,107137,49826,35241,13876,200,5.1,5,5,9900,7500,9,999999999,37,0,0,88,0.2,0,0 +2006,1,30,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,30,14,38,96079,1114,1409,412,818,832,160,99890,51869,19608,8182,200,5.7,3,3,9900,77777,9,999999999,37,0,0,88,0.2,0,0 +2006,1,30,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,29,13,37,96063,904,1409,389,636,794,126,76792,48005,15234,6204,210,6.2,0,0,9900,77777,9,999999999,34,0,0,88,0.2,0,0 +2006,1,30,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,28,13,40,96046,649,1409,391,406,567,144,46399,35677,16564,6007,200,6.2,1,1,9900,77777,9,999999999,34,0,0,88,0.2,0,0 +2006,1,30,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,27,13,42,96029,366,1409,386,173,291,97,19112,12301,10794,3394,200,5.1,1,1,9900,77777,9,999999999,34,0,0,88,0.2,0,0 +2006,1,30,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,24.4,13.3,50,95496,74,1409,388,16,0,16,1519,0,1530,536,200,5.7,5,5,9900,77777,9,999999999,35,0,0,88,0.2,0,0 +2006,1,30,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,22,13,57,95942,0,371,372,0,0,0,0,0,0,0,140,3.1,4,4,9900,77777,9,999999999,34,0,0,88,0.2,0,0 +2006,1,30,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,13,60,95924,0,0,367,0,0,0,0,0,0,0,140,3.6,4,4,9900,77777,9,999999999,34,0,0,88,0.2,0,0 +2006,1,30,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,20,13.2,65,95608,0,0,360,0,0,0,0,0,0,0,140,2.6,3,3,9900,77777,9,999999999,35,0,0,88,0.2,0,0 +2006,1,30,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,19,13,68,95888,0,0,360,0,0,0,0,0,0,0,150,3.6,5,5,9900,77777,9,999999999,34,0,0,88,0.2,0,0 +2006,1,31,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18,13,73,95870,0,0,358,0,0,0,0,0,0,0,160,2.1,6,6,9900,77777,9,999999999,34,0,0,88,0.2,0,0 +2006,1,31,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17.2,12.7,75,95605,0,0,337,0,0,0,0,0,0,0,160,3.1,1,1,9900,77777,9,999999999,33,0,0,88,0.2,0,0 +2006,1,31,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,13,82,95834,0,0,358,0,0,0,0,0,0,0,170,2.1,8,8,9900,77777,9,999999999,34,0,0,88,0.2,0,0 +2006,1,31,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,12,77,95834,0,0,351,0,0,0,0,0,0,0,140,2.1,7,7,9900,77777,9,999999999,31,0,0,88,0.2,0,0 +2006,1,31,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,15,12,82,95815,0,0,352,0,0,0,0,0,0,0,183,1.5,8,8,9900,77777,9,999999999,31,0,0,88,0.2,0,0 +2006,1,31,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,12,82,95815,0,0,320,0,0,0,0,0,0,0,170,2.6,0,0,3000,77777,9,999999999,31,0,0,88,0.2,0,0 +2006,1,31,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,12,94,95778,105,520,350,12,0,12,1197,0,1206,467,150,2.6,9,9,500,60,0,999999999,31,0,0,88,0.2,0,0 +2006,1,31,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,13,94,95797,397,1409,356,101,9,99,11275,390,11043,3576,150,3.1,9,9,1800,60,0,999999999,34,0,0,88,0.2,0,0 +2006,1,31,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,14,88,95834,678,1409,327,430,499,190,48384,35156,21433,7480,170,3.6,0,0,5000,77777,0,999999999,38,0,0,88,0.2,0,0 +2006,1,31,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,19,14,73,95888,929,1409,364,566,440,275,64516,34792,31566,11647,140,3.6,6,6,7000,77777,0,999999999,38,0,0,88,0.2,0,0 +2006,1,31,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,21,14,64,95924,1132,1409,371,799,683,249,94565,48967,29646,11873,150,5.7,5,5,8000,77777,0,999999999,38,0,0,88,0.2,0,0 +2006,1,31,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,22,14,60,95942,1275,1409,373,946,787,233,114645,53284,28411,11531,150,6.7,4,4,8000,77777,0,999999999,37,0,0,88,0.2,0,0 +2006,1,31,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,14,54,95977,1346,1409,381,1032,878,192,127993,55312,23941,9860,160,7.2,3,3,8000,77777,0,999999999,37,0,0,88,0.2,0,0 +2006,1,31,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,14,50,95994,1342,1409,386,1028,878,191,127497,55253,23758,9790,150,6.2,3,3,8000,77777,0,999999999,37,0,0,88,0.2,0,0 +2006,1,31,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,15,51,96011,1262,1409,392,953,876,167,118110,53246,20752,8638,160,6.2,3,3,8000,77777,0,999999999,41,0,0,88,0.2,0,0 +2006,1,31,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,15,51,96011,1112,1409,392,815,835,155,99650,50963,18995,7946,150,6.7,3,3,8000,77777,0,999999999,41,0,0,88,0.2,0,0 +2006,1,31,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,14,45,96029,902,1409,396,625,763,136,74941,46556,16343,6624,150,6.2,3,3,8000,77777,0,999999999,37,0,0,88,0.2,0,0 +2006,1,31,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,14,48,96011,647,1409,391,398,535,152,45269,34027,17333,6225,160,6.7,3,3,8000,77777,0,999999999,37,0,0,88,0.2,0,0 +2006,1,31,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,21.9,14.9,64,95939,363,1409,384,168,274,98,18576,11252,10827,3393,177,4.7,3,3,8950,77777,9,999999999,39,0,0,88,0.2,0,0 +2006,1,31,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20.2,14.8,71,95910,71,1409,380,16,0,16,1502,0,1513,528,155,4.2,4,4,9900,77777,9,999999999,41,0,0,88,0.2,0,0 +2006,1,31,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,18.8,14.5,76,95884,0,356,376,0,0,0,0,0,0,0,157,3.5,6,6,9900,77777,9,999999999,41,0,0,88,0.2,0,0 +2006,1,31,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18.5,12,66,95879,0,0,370,0,0,0,0,0,0,0,152,3,7,7,9900,77777,9,999999999,42,0,0,88,0.2,0,0 +2006,1,31,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18.4,9.9,58,95826,0,0,364,0,0,0,0,0,0,0,157,2.6,7,7,9900,77777,9,999999999,38,0,0,88,0.2,0,0 +2006,1,31,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18.4,8.1,51,95826,0,0,364,0,0,0,0,0,0,0,160,2.2,8,8,9900,77777,9,999999999,38,0,0,88,0.2,0,0 +2015,2,1,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18.4,6.3,45,95826,0,0,335,0,0,0,0,0,0,0,160,2.2,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2015,2,1,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17.5,6.8,50,95777,0,0,330,0,0,0,0,0,0,0,157,2.2,0,0,8000,77777,9,999999999,18,0,0,88,0.2,0,0 +2015,2,1,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16.9,7,52,95817,0,0,339,0,0,0,0,0,0,0,128,1.8,2,2,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2015,2,1,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15.9,6.8,55,95799,0,0,338,0,0,0,0,0,0,0,180,1.8,3,3,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2015,2,1,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,16.1,6.8,54,95810,0,0,321,0,0,0,0,0,0,0,184,1.4,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2015,2,1,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,17.5,6.8,49,95867,0,0,333,0,0,0,0,0,0,0,183,1.1,3,3,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2015,2,1,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,14,6,59,95797,100,497,326,23,0,23,2180,0,2194,749,360,2.1,4,4,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2015,2,1,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,18,7.3,50,95894,393,1408,329,195,349,98,21784,16604,10954,3531,175,1,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2015,2,1,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,22,7,38,95942,674,1408,347,432,626,132,50193,40413,15435,5732,156,1,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2015,2,1,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,6,30,95994,925,1408,360,663,803,135,80206,52691,16335,6639,200,1.5,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2015,2,1,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,27.1,5.9,26,95883,1129,1408,370,854,806,207,102948,58109,25024,10206,180,2.6,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2015,2,1,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,7,25,96063,1272,1408,381,987,815,250,119431,60081,30359,12186,150,4.6,0,0,8000,77777,9,999999999,18,0,0,88,0.2,0,0 +2015,2,1,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,31,5,19,96096,1344,1408,389,1058,819,275,128296,62063,33554,13323,160,6.2,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2015,2,1,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,32.2,4.4,17,95751,1339,1408,394,1055,819,275,127903,62282,33505,13301,190,5.7,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2015,2,1,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,32,5,18,96113,1260,1408,394,978,815,249,118314,60861,30238,12130,220,7.7,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2015,2,1,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,32,5,18,96113,1110,1408,394,837,857,160,102566,58062,19747,8201,210,8.2,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2015,2,1,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,31.1,6,21,95619,900,1408,390,639,794,131,77172,51837,15920,6437,210,8.2,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2015,2,1,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,30,7,24,96079,644,1408,386,406,557,151,46368,37715,17283,6183,210,8.8,0,0,8000,77777,9,999999999,18,0,0,88,0.2,0,0 +2015,2,1,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,7,26,96046,360,1408,376,171,310,92,19022,13514,10227,3237,210,7.7,0,0,8000,77777,9,999999999,18,0,0,88,0.2,0,0 +2015,2,1,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,25.8,8.8,34,95653,68,1408,367,16,0,16,1512,0,1522,524,210,7.2,0,0,8000,77777,9,999999999,22,0,0,88,0.2,0,0 +2015,2,1,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,7,32,95994,0,339,361,0,0,0,0,0,0,0,180,5.7,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2015,2,1,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,9,38,95977,0,0,359,0,0,0,0,0,0,0,130,2.6,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2015,2,1,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,22.1,9.3,44,95683,0,0,350,0,0,0,0,0,0,0,150,2.6,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2015,2,1,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,21,10,49,95924,0,0,357,0,0,0,0,0,0,0,160,2.6,2,2,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,2,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,9,49,95906,0,0,351,0,0,0,0,0,0,0,160,3.1,2,2,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2015,2,2,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,19.6,9.3,51,95639,0,0,338,0,0,0,0,0,0,0,180,1,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2015,2,2,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,10,59,95870,0,0,349,0,0,0,0,0,0,0,170,3.1,4,4,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,2,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,10,63,95852,0,0,347,0,0,0,0,0,0,0,160,2.1,5,5,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,2,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,17.1,9.4,60,95641,0,0,327,0,0,0,0,0,0,0,194,0.5,0,0,8000,77777,9,999999999,24,0,0,88,0.2,0,0 +2015,2,2,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,8,63,95815,0,0,316,0,0,0,0,0,0,0,10,1.5,0,0,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2015,2,2,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,9,67,95815,95,473,317,22,0,22,2132,0,2147,729,242,1,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2015,2,2,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,18.9,9.8,55,95806,388,1408,336,191,339,97,21302,15581,10895,3505,276,0.5,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,2,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,22,10,46,95942,670,1408,362,426,619,131,49418,38816,15241,5667,200,1.5,2,2,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,2,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,25,10,39,95994,922,1408,372,656,802,130,79358,50475,15798,6441,75,1,1,1,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,2,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,27.5,9.7,33,95852,1126,1408,377,847,860,157,103932,55820,19391,8087,137,1.5,0,0,8000,77777,9,999999999,24,0,0,88,0.2,0,0 +2015,2,2,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,30,9,27,96079,1269,1408,389,982,815,246,118773,58953,29904,12034,170,5.1,0,0,8000,77777,9,999999999,22,0,0,88,0.2,0,0 +2015,2,2,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,31,8,24,96096,1341,1408,393,1051,819,270,127465,60522,32897,13108,180,6.7,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2015,2,2,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,30.9,7.4,23,95729,1337,1408,391,1048,819,269,127097,60788,32855,13089,220,7.2,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2015,2,2,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,31,8,24,96096,1257,1408,393,972,814,244,117555,59326,29628,11927,220,7.7,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2015,2,2,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,31,8,24,96096,1107,1408,393,831,861,153,102073,56414,18855,7860,220,8.8,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2015,2,2,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,30.2,8.6,26,95689,897,1408,389,635,793,128,76639,50450,15536,6295,220,8.8,0,0,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2015,2,2,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,8,27,96063,642,1408,382,403,582,137,46330,37647,15874,5765,210,9.3,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2015,2,2,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,7,28,96029,358,1408,371,169,306,91,18780,13232,10159,3211,210,8.2,0,0,8000,77777,9,999999999,18,0,0,88,0.2,0,0 +2015,2,2,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,24.6,5.9,30,95746,65,1408,358,15,0,15,1445,0,1455,501,200,8.8,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2015,2,2,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,6,31,95977,0,322,355,0,0,0,0,0,0,0,160,5.1,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2015,2,2,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,22,7,38,95942,0,0,347,0,0,0,0,0,0,0,150,4.6,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2015,2,2,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,20.6,8.1,45,95836,0,0,342,0,0,0,0,0,0,0,150,4.6,0,0,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2015,2,2,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,9,52,95888,0,0,350,0,0,0,0,0,0,0,160,4.1,3,3,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2015,2,3,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,8,49,95888,0,0,345,0,0,0,0,0,0,0,160,4.6,2,2,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2015,2,3,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,18.3,8.2,52,95776,0,0,331,0,0,0,0,0,0,0,160,3.6,0,0,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2015,2,3,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,9,63,95834,0,0,341,0,0,0,0,0,0,0,170,4.1,5,5,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2015,2,3,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,9,67,95815,0,0,336,0,0,0,0,0,0,0,170,3.1,5,5,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2015,2,3,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15.5,9.5,67,95773,0,0,320,0,0,0,0,0,0,0,190,2.1,0,0,8000,77777,9,999999999,24,0,0,88,0.2,0,0 +2015,2,3,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,14,9,72,95797,0,0,334,0,0,0,0,0,0,0,260,1.5,6,6,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2015,2,3,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,14,8,67,95797,91,450,330,19,0,19,1875,0,1888,656,350,1.5,5,5,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2015,2,3,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17.3,9.3,59,95862,384,1408,328,188,335,96,20962,15304,10796,3465,150,2.1,0,0,8000,77777,9,999999999,24,0,0,88,0.2,0,0 +2015,2,3,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,20,10,53,95906,667,1408,356,419,596,136,48411,37938,15796,5830,267,1,3,3,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,3,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,23,9,41,95959,919,1408,361,654,765,154,78085,50969,18453,7420,31,1,1,1,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2015,2,3,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,25.6,8.2,33,95772,1123,1408,366,846,863,156,103916,56605,19254,8027,273,1,0,0,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2015,2,3,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,9,30,96046,1267,1408,379,979,815,245,118455,58887,29795,11995,160,3.6,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2015,2,3,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,10,31,96063,1339,1408,385,1045,819,266,126781,59320,32406,12947,170,6.2,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,3,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,30.9,7.9,24,95663,1335,1408,392,1045,818,268,126736,60474,32674,13028,210,7.2,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2015,2,3,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,31,8,24,96096,1255,1408,393,970,814,243,117297,59273,29546,11897,210,8.2,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2015,2,3,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,30,8,25,96079,1105,1408,387,829,860,153,101797,56348,18810,7841,220,9.3,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2015,2,3,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,30.4,8.1,25,95598,895,1408,390,633,793,128,76419,50617,15537,6290,220,8.2,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2015,2,3,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,8,27,96063,639,1408,382,400,579,137,46040,37451,15852,5749,210,8.8,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2015,2,3,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,8,30,96029,355,1408,372,166,301,90,18489,12736,10097,3187,210,8.2,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2015,2,3,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,24.3,7.6,34,95646,61,1408,359,14,0,14,1365,0,1374,476,200,6.7,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2015,2,3,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,23,7,36,95959,0,305,352,0,0,0,0,0,0,0,150,4.1,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2015,2,3,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,21,6,38,95924,0,0,341,0,0,0,0,0,0,0,160,4.1,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2015,2,3,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,20.6,5.9,38,95694,0,0,346,0,0,0,0,0,0,0,150,3.1,1,1,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2015,2,3,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,5,37,95906,0,0,335,0,0,0,0,0,0,0,150,2.1,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2015,2,4,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,6,43,95888,0,0,338,0,0,0,0,0,0,0,160,3.1,1,1,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2015,2,4,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,16.6,6.6,52,95594,0,0,322,0,0,0,0,0,0,0,160,3.1,0,0,8000,77777,9,999999999,18,0,0,88,0.2,0,0 +2015,2,4,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,7,55,95834,0,0,333,0,0,0,0,0,0,0,170,3.1,3,3,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2015,2,4,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,7,59,95815,0,0,331,0,0,0,0,0,0,0,170,2.6,4,4,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2015,2,4,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15.8,7,56,95579,0,0,319,0,0,0,0,0,0,0,130,1.5,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2015,2,4,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,7,59,95815,0,0,331,0,0,0,0,0,0,0,260,1,4,4,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2015,2,4,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,14,7,63,95797,86,427,329,19,0,19,1843,0,1856,639,350,0.5,5,5,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2015,2,4,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,17.8,7.7,52,95710,380,1407,328,186,334,95,20709,15340,10665,3416,51,0,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2015,2,4,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,21,7,40,95924,663,1407,349,422,617,131,48985,39698,15304,5658,8,0.5,1,1,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2015,2,4,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,24,7,34,95977,915,1407,356,653,802,131,79011,51855,15874,6450,12,1,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2015,2,4,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,26.1,7.8,31,95677,1120,1407,368,844,805,202,101656,56948,24420,9983,180,3.1,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2015,2,4,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,8,28,96046,1264,1407,377,978,814,246,118332,59391,29892,12023,170,5.7,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2015,2,4,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,30,7,24,96079,1336,1407,386,1048,818,270,127083,60948,32912,13107,170,5.7,0,0,8000,77777,9,999999999,18,0,0,88,0.2,0,0 +2015,2,4,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,30.9,5.1,20,95530,1332,1407,388,1047,818,272,126984,61822,33127,13171,170,5.7,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2015,2,4,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,31,6,21,96096,1253,1407,390,971,814,245,117384,60243,29829,11988,220,7.2,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2015,2,4,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,31,6,21,96096,1103,1407,390,829,860,155,101793,57370,19100,7947,210,7.2,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2015,2,4,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,30,7.2,24,95449,892,1407,386,632,793,128,76280,50992,15523,6279,210,8.2,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2015,2,4,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,7,26,96046,636,1407,376,399,551,149,45549,37172,17143,6112,210,8.2,0,0,8000,77777,9,999999999,18,0,0,88,0.2,0,0 +2015,2,4,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,8,32,96011,351,1407,367,164,298,90,18260,12488,10008,3155,210,7.7,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2015,2,4,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,24.8,7.4,33,95503,58,1407,361,13,0,13,1290,0,1299,451,200,6.2,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2015,2,4,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,8,36,95977,0,287,358,0,0,0,0,0,0,0,150,3.1,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2015,2,4,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,22,8,41,95942,0,0,355,0,0,0,0,0,0,0,150,3.6,1,1,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2015,2,4,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,20.7,9.2,48,95602,0,0,343,0,0,0,0,0,0,0,150,3.6,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2015,2,4,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,9,49,95906,0,0,351,0,0,0,0,0,0,0,160,2.6,2,2,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2015,2,5,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,9,52,95888,0,0,350,0,0,0,0,0,0,0,150,2.1,3,3,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2015,2,5,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,18,9.6,58,95553,0,0,331,0,0,0,0,0,0,0,160,3.1,0,0,8000,77777,9,999999999,24,0,0,88,0.2,0,0 +2015,2,5,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,10,63,95852,0,0,347,0,0,0,0,0,0,0,160,2.6,5,5,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,5,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,9,59,95852,0,0,343,0,0,0,0,0,0,0,160,2.1,4,4,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2015,2,5,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,16,8.9,63,95545,0,0,322,0,0,0,0,0,0,0,200,2.1,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2015,2,5,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,16,9,63,95834,0,0,341,0,0,0,0,0,0,0,251,1,5,5,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2015,2,5,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,16,9,63,95834,82,404,341,18,0,18,1740,0,1752,606,209,0,5,5,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2015,2,5,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17,9.2,60,95809,376,1407,326,182,327,95,20281,14579,10588,3385,10,1.5,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2015,2,5,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,21,10,49,95924,659,1407,357,415,604,132,48039,37928,15326,5660,248,1,2,2,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,5,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,24,9,38,95977,912,1407,359,648,799,129,78342,50694,15693,6382,72,1,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2015,2,5,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,26.1,9.4,35,95772,1117,1407,370,839,859,155,102956,55777,19143,7984,190,5.1,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2015,2,5,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,9,32,96029,1261,1407,374,974,814,243,117826,58774,29603,11925,170,6.7,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2015,2,5,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,8,28,96046,1334,1407,377,1044,818,267,126586,60362,32615,13007,210,7.2,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2015,2,5,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,28.4,8.1,28,95725,1330,1407,379,1040,818,266,126136,60262,32457,12951,210,6.7,0,0,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2015,2,5,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,9,29,96063,1250,1407,384,964,813,240,116576,58616,29199,11777,210,7.2,0,0,8000,77777,9,999999999,22,0,0,88,0.2,0,0 +2015,2,5,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,9,29,96063,1100,1407,384,823,857,152,101025,55662,18720,7806,220,7.7,0,0,8000,77777,9,999999999,22,0,0,88,0.2,0,0 +2015,2,5,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,28.8,9.4,30,95571,889,1407,383,627,790,127,75681,49736,15332,6208,210,8.2,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2015,2,5,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,9,30,96046,633,1407,379,395,572,137,45346,36657,15842,5730,210,8.8,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2015,2,5,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,10,37,96011,348,1407,370,161,291,89,17911,11750,9944,3130,210,6.2,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,5,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,23.7,9.6,41,95626,54,1407,374,12,0,12,1188,0,1196,419,150,4.1,3,3,8000,77777,9,999999999,24,0,0,88,0.2,0,0 +2015,2,5,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,22,11,50,95942,0,268,363,0,0,0,0,0,0,0,160,4.1,2,2,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2015,2,5,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,11,56,95906,0,0,357,0,0,0,0,0,0,0,160,4.1,3,3,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2015,2,5,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,19.1,10.8,59,95715,0,0,358,0,0,0,0,0,0,0,160,4.6,5,5,8000,77777,9,999999999,27,0,0,88,0.2,0,0 +2015,2,5,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,18,11,64,95870,0,0,347,0,0,0,0,0,0,0,170,3.1,3,3,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2015,2,6,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,10,59,95870,0,0,349,0,0,0,0,0,0,0,180,3.6,4,4,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,6,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17,10.1,64,95687,0,0,334,0,0,0,0,0,0,0,170,3.1,1,1,8000,77777,9,999999999,26,0,0,88,0.2,0,0 +2015,2,6,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,10,68,95834,0,0,342,0,0,0,0,0,0,0,230,1.5,5,5,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,6,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,10,72,95815,0,0,340,0,0,0,0,0,0,0,170,1,6,6,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,6,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,14.5,9.5,72,95688,0,0,337,0,0,0,0,0,0,0,142,0.5,6,6,8000,7500,9,999999999,24,0,0,88,0.2,0,0 +2015,2,6,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,10,72,95815,0,0,357,0,0,0,0,0,0,0,78,1,9,9,8000,6706,9,999999999,25,0,0,88,0.2,0,0 +2015,2,6,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,15,10,72,95815,77,380,337,17,0,17,1604,0,1615,563,33,1,5,5,8000,7620,9,999999999,25,0,0,88,0.2,0,0 +2015,2,6,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15.9,10.1,68,95912,372,1406,345,156,197,104,17219,9204,11524,3576,290,1,6,6,8000,6000,9,999999999,26,0,0,88,0.2,0,0 +2015,2,6,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,21,11,53,95924,655,1406,362,409,560,147,46805,36392,16951,6143,55,0.5,3,3,8000,6000,9,999999999,28,0,0,88,0.2,0,0 +2015,2,6,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,24,11,44,95977,908,1406,368,642,765,147,76756,49458,17696,7130,104,1,1,1,8000,6000,9,999999999,28,0,0,88,0.2,0,0 +2015,2,6,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,26.1,10.7,38,95961,1114,1406,371,834,856,155,102308,54894,19072,7959,150,2.6,0,0,8000,6000,9,999999999,27,0,0,88,0.2,0,0 +2015,2,6,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,10,32,96046,1258,1406,380,970,884,178,120027,57831,22100,9141,160,5.7,0,0,8000,6000,9,999999999,25,0,0,88,0.2,0,0 +2015,2,6,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,29,4,20,96063,1331,1406,400,975,728,285,117793,56219,34679,13695,150,5.7,5,5,8000,6096,9,999999999,14,0,0,88,0.2,0,0 +2015,2,6,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,30.1,6.4,23,95887,1327,1406,409,968,741,269,117394,55376,32739,13040,160,6.2,5,5,8000,6000,9,999999999,17,0,0,88,0.2,0,0 +2015,2,6,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,31,7,22,96096,1248,1406,415,898,706,271,107635,53693,32661,12966,220,6.2,5,5,8000,6096,9,999999999,18,0,0,88,0.2,0,0 +2015,2,6,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,31,6,21,96096,1097,1406,390,825,822,182,99919,57357,22175,9120,220,5.1,0,0,8000,6096,9,999999999,17,0,0,88,0.2,0,0 +2015,2,6,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,29.1,7.3,25,95699,887,1406,405,583,613,196,68082,45033,22967,8875,220,8.2,5,5,8000,6096,9,999999999,19,0,0,88,0.2,0,0 +2015,2,6,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,28,7,26,96046,630,1406,398,366,466,157,41608,32105,17948,6310,220,8.2,5,5,8000,6096,9,999999999,18,0,0,88,0.2,0,0 +2015,2,6,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,7,26,96046,345,1406,376,160,301,86,17788,12203,9586,3032,210,7.2,0,0,8000,6096,9,999999999,18,0,0,88,0.2,0,0 +2015,2,6,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,26.1,6.6,29,95705,50,1406,382,12,0,12,1110,0,1117,393,210,3.6,3,3,8000,6096,9,999999999,18,0,0,88,0.2,0,0 +2015,2,6,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,8,36,95977,0,249,358,0,0,0,0,0,0,0,150,3.6,0,0,8000,6096,9,999999999,20,0,0,88,0.2,0,0 +2015,2,6,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,22,9,43,95942,0,0,364,0,0,0,0,0,0,0,160,3.6,3,3,8000,6096,9,999999999,23,0,0,88,0.2,0,0 +2015,2,6,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,21.1,9.5,47,95770,0,0,361,0,0,0,0,0,0,0,160,2.6,3,3,8000,6096,9,999999999,24,0,0,88,0.2,0,0 +2015,2,6,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,20,9,49,95906,0,0,355,0,0,0,0,0,0,0,170,2.6,3,3,8000,6096,9,999999999,23,0,0,88,0.2,0,0 +2015,2,7,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,19,9,52,95888,0,0,350,0,0,0,0,0,0,0,160,2.6,3,3,8000,6096,9,999999999,23,0,0,88,0.2,0,0 +2015,2,7,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,18.4,9.2,55,95750,0,0,333,0,0,0,0,0,0,0,160,2.1,0,0,8000,6096,9,999999999,23,0,0,88,0.2,0,0 +2015,2,7,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,10,63,95852,0,0,347,0,0,0,0,0,0,0,160,2.1,5,5,8000,6096,9,999999999,25,0,0,88,0.2,0,0 +2015,2,7,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,16,9,63,95834,0,0,341,0,0,0,0,0,0,0,191,0.5,5,5,8000,6096,9,999999999,23,0,0,88,0.2,0,0 +2015,2,7,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,14.5,8.4,67,95792,0,0,314,0,0,0,0,0,0,0,210,0,0,0,8000,6096,9,999999999,22,0,0,88,0.2,0,0 +2015,2,7,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,14,8,67,95797,0,0,325,0,0,0,0,0,0,0,20,1,3,3,8000,6096,9,999999999,21,0,0,88,0.2,0,0 +2015,2,7,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14,8,67,95797,73,357,330,16,0,16,1518,0,1528,533,350,1,5,5,9000,6096,9,999999999,21,0,0,88,0.2,0,0 +2015,2,7,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,18.4,9.3,55,95958,367,1406,353,164,249,99,18148,11280,10980,3440,198,0,5,5,9000,6096,9,999999999,24,0,0,88,0.2,0,0 +2015,2,7,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,22,10,46,95942,651,1406,366,406,561,145,46480,36552,16731,6062,166,1,3,3,9000,6096,9,999999999,25,0,0,88,0.2,0,0 +2015,2,7,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,10,41,95977,905,1406,367,641,763,149,76528,49974,17860,7179,190,2.1,1,1,9000,6096,9,999999999,25,0,0,88,0.2,0,0 +2015,2,7,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,26.9,8.6,32,95965,1111,1406,373,834,860,154,102440,56094,18940,7899,210,2.6,0,0,9000,6096,9,999999999,22,0,0,88,0.2,0,0 +2015,2,7,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,10,31,96063,1255,1406,385,967,813,240,117002,58082,29236,11798,190,3.6,0,0,9000,6096,9,999999999,25,0,0,88,0.2,0,0 +2015,2,7,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,30,7,24,96079,1328,1406,386,1041,817,268,126166,60788,32629,13006,210,5.7,0,0,9000,6096,9,999999999,18,0,0,88,0.2,0,0 +2015,2,7,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,30.5,7,23,95874,1325,1406,389,1037,817,267,125757,60744,32497,12958,220,7.2,0,0,9000,6096,9,999999999,18,0,0,88,0.2,0,0 +2015,2,7,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,30,10,29,96079,1245,1406,390,958,813,237,115815,57929,28852,11657,210,8.2,0,0,9000,6096,9,999999999,25,0,0,88,0.2,0,0 +2015,2,7,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,10,31,96063,1095,1406,385,817,855,151,100219,54934,18579,7750,210,9.3,0,0,9000,6096,9,999999999,25,0,0,88,0.2,0,0 +2015,2,7,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,29,10.4,31,95773,884,1406,385,621,756,145,74076,49046,17394,6964,200,8.8,0,0,9000,6096,9,999999999,26,0,0,88,0.2,0,0 +2015,2,7,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,11,37,96029,627,1406,376,389,557,140,44439,35284,16081,5783,200,8.8,0,0,9000,6096,9,999999999,28,0,0,88,0.2,0,0 +2015,2,7,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,11,41,95994,341,1406,373,156,269,91,17283,10720,10088,3136,210,8.2,1,1,9000,6096,9,999999999,28,0,0,88,0.2,0,0 +2015,2,7,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,21.9,9.4,45,95888,46,1406,349,11,0,11,1035,0,1042,368,190,6.7,0,0,9000,6096,9,999999999,24,0,0,88,0.2,0,0 +2015,2,7,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,22,9,43,95942,0,229,356,0,0,0,0,0,0,0,140,4.1,1,1,9000,6096,9,999999999,23,0,0,88,0.2,0,0 +2015,2,7,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,9,49,95906,0,0,351,0,0,0,0,0,0,0,150,5.1,2,2,9000,6096,9,999999999,23,0,0,88,0.2,0,0 +2015,2,7,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,18.7,9.4,55,96058,0,0,334,0,0,0,0,0,0,0,160,3.6,0,0,9000,6096,9,999999999,24,0,0,88,0.2,0,0 +2015,2,7,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,10,59,95870,0,0,349,0,0,0,0,0,0,0,170,2.1,4,4,9000,6096,9,999999999,25,0,0,88,0.2,0,0 +2015,2,8,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,17,10,63,95852,0,0,347,0,0,0,0,0,0,0,2,0.5,5,5,9000,6096,9,999999999,25,0,0,88,0.2,0,0 +2015,2,8,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,16.8,10.1,65,95976,0,0,326,0,0,0,0,0,0,0,85,0,0,0,9000,6096,9,999999999,26,0,0,88,0.2,0,0 +2015,2,8,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,10,63,95852,0,0,347,0,0,0,0,0,0,0,200,3.1,5,5,9000,6096,9,999999999,25,0,0,88,0.2,0,0 +2015,2,8,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,10,68,95834,0,0,342,0,0,0,0,0,0,0,170,2.6,5,5,9000,6096,9,999999999,25,0,0,88,0.2,0,0 +2015,2,8,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,14.7,10.6,76,95994,0,0,318,0,0,0,0,0,0,0,170,3.6,0,0,9000,6096,9,999999999,27,0,0,88,0.2,0,0 +2015,2,8,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14,11,82,95797,0,0,329,0,0,0,0,0,0,0,180,4.1,3,3,8000,6096,9,999999999,28,0,0,88,0.2,0,0 +2015,2,8,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,12,88,95797,68,334,335,15,0,15,1413,0,1423,499,170,4.6,5,5,5000,4572,9,999999999,31,0,0,88,0.2,0,0 +2015,2,8,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,11.7,86,96246,363,1405,354,89,0,89,8774,0,8842,3191,160,4.6,9,9,6000,90,9,999999999,30,0,0,88,0.2,0,0 +2015,2,8,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15,12,82,95815,647,1405,340,378,392,197,42169,28774,22105,7459,160,3.1,5,5,6000,90,9,999999999,31,0,0,88,0.2,0,0 +2015,2,8,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,20,10,53,95906,901,1405,356,631,738,157,75000,49120,18728,7485,190,1,3,3,6000,90,9,999999999,25,0,0,88,0.2,0,0 +2015,2,8,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,23,9.5,42,96135,1107,1405,361,829,856,154,101788,55456,18944,7901,200,2.1,1,1,6000,90,9,999999999,24,0,0,88,0.2,0,0 +2015,2,8,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,9,36,95994,1252,1405,364,966,813,241,116829,58586,29289,11811,160,2.1,0,0,6000,90,9,999999999,23,0,0,88,0.2,0,0 +2015,2,8,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,10,34,96029,1325,1405,375,1033,817,262,125255,59055,31934,12777,170,4.1,0,0,6000,90,9,999999999,25,0,0,88,0.2,0,0 +2015,2,8,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,28.7,7.2,26,95967,1322,1405,380,1034,817,265,125395,60577,32347,12906,170,6.2,0,0,6000,90,9,999999999,19,0,0,88,0.2,0,0 +2015,2,8,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,6,23,96063,1242,1405,380,961,812,242,116191,60004,29451,11851,210,6.7,0,0,6000,90,9,999999999,17,0,0,88,0.2,0,0 +2015,2,8,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,30,5,21,96079,1092,1405,383,821,853,157,100536,57592,19324,8024,220,6.7,0,0,6000,90,9,999999999,15,0,0,88,0.2,0,0 +2015,2,8,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,28.5,7.4,26,95803,881,1405,379,621,748,152,73920,50454,18112,7207,210,7.7,0,0,6000,90,9,999999999,19,0,0,88,0.2,0,0 +2015,2,8,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,8,30,96029,623,1405,372,388,567,136,44470,36418,15650,5638,220,8.2,0,0,6000,90,9,999999999,20,0,0,88,0.2,0,0 +2015,2,8,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,5,26,96011,337,1405,364,155,287,86,17257,11753,9635,3016,210,8.8,0,0,6000,90,9,999999999,15,0,0,88,0.2,0,0 +2015,2,8,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,23.4,5.6,32,95801,42,1405,352,10,0,10,950,0,956,339,200,7.7,0,0,6000,90,9,999999999,16,0,0,88,0.2,0,0 +2015,2,8,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,22,8,41,95942,0,209,355,0,0,0,0,0,0,0,190,6.7,1,1,6000,90,9,999999999,21,0,0,88,0.2,0,0 +2015,2,8,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,21,9,46,95924,0,0,356,0,0,0,0,0,0,0,140,4.1,2,2,6000,90,9,999999999,23,0,0,88,0.2,0,0 +2015,2,8,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,19.8,9.4,51,95832,0,0,339,0,0,0,0,0,0,0,160,2.1,0,0,6000,90,9,999999999,24,0,0,88,0.2,0,0 +2015,2,8,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,9,52,95888,0,0,350,0,0,0,0,0,0,0,160,2.6,3,3,6000,90,9,999999999,23,0,0,88,0.2,0,0 +2015,2,9,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,9,56,95870,0,0,345,0,0,0,0,0,0,0,160,3.1,3,3,6000,90,9,999999999,23,0,0,88,0.2,0,0 +2015,2,9,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,16.8,8.9,60,95777,0,0,325,0,0,0,0,0,0,0,150,2.1,0,0,6000,90,9,999999999,23,0,0,88,0.2,0,0 +2015,2,9,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,8,59,95834,0,0,337,0,0,0,0,0,0,0,150,2.1,4,4,6000,90,9,999999999,21,0,0,88,0.2,0,0 +2015,2,9,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,9,63,95834,0,0,341,0,0,0,0,0,0,0,170,2.6,5,5,6000,90,9,999999999,23,0,0,88,0.2,0,0 +2015,2,9,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15.5,8.5,63,95763,0,0,319,0,0,0,0,0,0,0,160,2.1,0,0,6000,90,9,999999999,22,0,0,88,0.2,0,0 +2015,2,9,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,15,8,63,95815,0,0,335,0,0,0,0,0,0,0,14,1,5,5,6000,90,9,999999999,21,0,0,88,0.2,0,0 +2015,2,9,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,15,8,63,95815,64,312,335,14,0,14,1356,0,1365,477,149,0.5,5,5,6000,90,9,999999999,21,0,0,88,0.2,0,0 +2015,2,9,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,16.2,8.6,61,95927,359,1405,328,170,308,91,18913,13147,10182,3227,213,1,1,1,6000,90,9,999999999,22,0,0,88,0.2,0,0 +2015,2,9,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,20,9,49,95906,643,1405,355,399,577,135,46018,36774,15610,5699,279,0.5,3,3,6000,90,9,999999999,23,0,0,88,0.2,0,0 +2015,2,9,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,22,9,43,95942,898,1405,370,591,583,218,68523,43943,25399,9696,180,2.1,5,5,6000,90,9,999999999,23,0,0,88,0.2,0,0 +2015,2,9,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,24.6,8.4,36,95964,1104,1405,405,428,66,375,48981,5943,43277,15750,160,3.1,9,9,6000,5400,9,999999999,21,0,0,88,0.2,0,0 +2015,2,9,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,24,9,38,95977,1249,1405,403,497,50,453,57243,4640,52474,18586,160,6.2,9,9,6000,5486,9,999999999,23,0,0,88,0.2,0,0 +2015,2,9,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,26,8,32,96011,1322,1405,412,534,90,449,62094,8102,52646,18923,190,6.7,9,9,6000,5486,9,999999999,20,0,0,88,0.2,0,0 +2015,2,9,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,24.4,7.4,34,95979,1319,1405,403,532,90,448,61960,8155,52500,18872,180,8.2,9,9,6000,5400,9,999999999,19,0,0,88,0.2,0,0 +2015,2,9,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,23,8,38,95959,1239,1405,396,493,50,449,56770,4690,52008,18431,170,7.2,9,9,6000,5182,9,999999999,21,0,0,88,0.2,0,0 +2015,2,9,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,23,8,38,95959,1089,1405,396,420,21,404,47762,1983,46200,16322,160,6.7,9,9,6000,4877,9,999999999,21,0,0,88,0.2,0,0 +2015,2,9,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,23.2,8.5,39,96006,877,1405,398,319,17,308,35802,1496,34821,12052,150,5.1,9,9,6000,5100,9,999999999,22,0,0,88,0.2,0,0 +2015,2,9,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,24,9,38,95977,620,1405,403,198,9,194,22062,640,21752,7190,150,5.1,9,9,6000,5182,9,999999999,23,0,0,88,0.2,0,0 +2015,2,9,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,24,9,38,95977,334,1405,403,78,0,78,7711,0,7770,2805,160,4.1,9,9,6000,5182,9,999999999,23,0,0,88,0.2,0,0 +2015,2,9,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,22.8,8.7,41,96027,38,1405,396,5,0,5,440,0,443,173,160,4.1,9,9,6000,5100,9,999999999,22,0,0,88,0.2,0,0 +2015,2,9,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,22,9,43,95942,0,188,392,0,0,0,0,0,0,0,180,3.1,9,9,6000,5182,9,999999999,23,0,0,88,0.2,0,0 +2015,2,9,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,21,9,46,95924,0,0,365,0,0,0,0,0,0,0,160,3.6,5,5,6000,5182,9,999999999,23,0,0,88,0.2,0,0 +2015,2,9,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19.3,9.5,53,96050,0,0,378,0,0,0,0,0,0,0,170,2.6,9,9,6000,5400,9,999999999,24,0,0,88,0.2,0,0 +2015,2,9,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,18,9,56,95870,0,0,345,0,0,0,0,0,0,0,175,0.5,3,3,6000,5400,9,999999999,23,0,0,88,0.2,0,0 +2015,2,10,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,9,56,95870,0,0,345,0,0,0,0,0,0,0,160,1,3,3,6000,5400,9,999999999,23,0,0,88,0.2,0,0 +2015,2,10,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17.8,8.4,54,95985,0,0,349,0,0,0,0,0,0,0,130,1.5,5,5,6000,6000,9,999999999,22,0,0,88,0.2,0,0 +2015,2,10,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16,9,63,95834,0,0,361,0,0,0,0,0,0,0,270,1,9,9,6000,7010,9,999999999,23,0,0,88,0.2,0,0 +2015,2,10,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,16,8,59,95834,0,0,337,0,0,0,0,0,0,0,52,0.5,4,4,6000,7010,9,999999999,21,0,0,88,0.2,0,0 +2015,2,10,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,14.7,7,60,96013,0,0,330,0,0,0,0,0,0,0,18,1,4,4,6000,7010,9,999999999,19,0,0,88,0.2,0,0 +2015,2,10,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,14,8,67,95797,0,0,330,0,0,0,0,0,0,0,149,1,5,5,9000,7010,9,999999999,21,0,0,88,0.2,0,0 +2015,2,10,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,8,67,95797,59,289,330,13,0,13,1235,0,1243,438,330,1.5,5,5,8000,4877,9,999999999,21,0,0,88,0.2,0,0 +2015,2,10,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,17.4,7.5,52,96167,355,1404,340,165,294,91,18392,12608,10168,3206,267,1,3,3,8000,4877,9,999999999,20,0,0,88,0.2,0,0 +2015,2,10,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,20,8,46,95906,640,1404,353,397,558,143,45532,36656,16427,5927,246,1,3,3,8000,4877,9,999999999,21,0,0,88,0.2,0,0 +2015,2,10,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,23,8,38,95959,894,1404,353,633,755,152,75498,50646,18185,7269,10,2.1,0,0,8000,4877,9,999999999,21,0,0,88,0.2,0,0 +2015,2,10,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,25.5,8.5,34,96121,1101,1404,366,825,858,152,101347,55906,18702,7799,5,1.5,0,0,8000,4877,9,999999999,22,0,0,88,0.2,0,0 +2015,2,10,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,8,30,96029,1246,1404,372,962,812,241,116328,59018,29272,11798,160,2.6,0,0,8000,4877,9,999999999,20,0,0,88,0.2,0,0 +2015,2,10,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,7,25,96063,1319,1404,381,1033,816,265,125171,60612,32317,12894,140,4.6,0,0,8000,4877,9,999999999,18,0,0,88,0.2,0,0 +2015,2,10,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,30.5,7.1,23,96017,1316,1404,389,1029,816,264,124766,60521,32177,12844,170,6.2,0,0,8000,4877,9,999999999,19,0,0,88,0.2,0,0 +2015,2,10,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,30,8,25,96079,1236,1404,387,953,811,238,115200,58876,28912,11666,220,7.2,0,0,8000,4877,9,999999999,20,0,0,88,0.2,0,0 +2015,2,10,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,31,8,24,96096,1085,1404,393,812,857,149,99638,55866,18323,7636,210,6.2,0,0,8000,4877,9,999999999,20,0,0,88,0.2,0,0 +2015,2,10,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,30.3,7.6,24,95937,874,1404,396,615,746,150,73176,50105,17941,7132,220,6.7,1,1,8000,4877,9,999999999,19,0,0,88,0.2,0,0 +2015,2,10,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,30,8,25,96079,616,1404,387,382,562,135,43768,35953,15546,5584,210,6.7,0,0,8000,4877,9,999999999,20,0,0,88,0.2,0,0 +2015,2,10,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,7,25,96063,330,1404,381,150,275,85,16597,10723,9447,2947,220,6.2,0,0,8000,4877,9,999999999,18,0,0,88,0.2,0,0 +2015,2,10,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,26.5,7.2,29,96006,34,1404,376,8,0,8,760,0,765,277,210,5.7,1,1,8000,4877,9,999999999,19,0,0,88,0.2,0,0 +2015,2,10,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,7,30,96011,0,167,366,0,0,0,0,0,0,0,200,4.6,0,0,8000,4877,9,999999999,18,0,0,88,0.2,0,0 +2015,2,10,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,7,34,95977,0,0,356,0,0,0,0,0,0,0,140,2.6,0,0,8000,4877,9,999999999,19,0,0,88,0.2,0,0 +2015,2,10,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,23.1,6.1,33,96070,0,0,351,0,0,0,0,0,0,0,150,2.1,0,0,8000,4877,9,999999999,17,0,0,88,0.2,0,0 +2015,2,10,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,22,6,35,95942,0,0,346,0,0,0,0,0,0,0,150,1.5,0,0,8000,4877,9,999999999,17,0,0,88,0.2,0,0 +2015,2,11,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,21,6,38,95924,0,0,341,0,0,0,0,0,0,0,170,2.1,0,0,8000,4877,9,999999999,17,0,0,88,0.2,0,0 +2015,2,11,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,19.4,6.8,44,95995,0,0,335,0,0,0,0,0,0,0,290,1,0,0,8000,4877,9,999999999,18,0,0,88,0.2,0,0 +2015,2,11,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,7,52,95852,0,0,338,0,0,0,0,0,0,0,360,1.5,3,3,8000,4877,9,999999999,19,0,0,88,0.2,0,0 +2015,2,11,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,17,6,48,95852,0,0,334,0,0,0,0,0,0,0,353,0,2,2,8000,4877,9,999999999,17,0,0,88,0.2,0,0 +2015,2,11,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,16.4,6.4,52,95969,0,0,321,0,0,0,0,0,0,0,166,0.5,0,0,8000,4877,9,999999999,18,0,0,88,0.2,0,0 +2015,2,11,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,7,55,95834,0,0,333,0,0,0,0,0,0,0,320,0.5,3,3,8000,4877,9,999999999,19,0,0,88,0.2,0,0 +2015,2,11,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,16,6,51,95834,54,266,332,13,0,13,1219,0,1227,428,272,0.5,3,3,8000,4877,9,999999999,17,0,0,88,0.2,0,0 +2015,2,11,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,20.3,7.6,44,96106,351,1404,340,165,301,89,18299,12625,9955,3142,351,1,0,0,8000,4877,9,999999999,20,0,0,88,0.2,0,0 +2015,2,11,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,23,8,38,95959,636,1404,353,399,548,150,45517,36793,17236,6145,139,0.5,0,0,8000,4877,9,999999999,21,0,0,88,0.2,0,0 +2015,2,11,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,26,7,30,96011,890,1404,366,631,793,127,76250,50986,15446,6250,131,0.5,0,0,8000,4877,9,999999999,18,0,0,88,0.2,0,0 +2015,2,11,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,28.2,7.2,27,96092,1097,1404,377,824,860,150,101271,56526,18543,7730,150,3.1,0,0,8000,4877,9,999999999,19,0,0,88,0.2,0,0 +2015,2,11,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,30,7,24,96079,1243,1404,386,961,811,241,116151,59477,29347,11819,150,4.6,0,0,8000,4877,9,999999999,18,0,0,88,0.2,0,0 +2015,2,11,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,32,6,20,96113,1316,1404,395,1032,815,266,125012,61051,32405,12919,160,6.2,0,0,8000,4877,9,999999999,17,0,0,88,0.2,0,0 +2015,2,11,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,32.4,6,19,95972,1313,1404,397,1028,815,265,124623,61008,32278,12873,210,6.2,0,0,8000,4877,9,999999999,17,0,0,88,0.2,0,0 +2015,2,11,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,33,6,19,96129,1233,1404,400,953,811,240,115194,59823,29159,11744,210,8.2,0,0,8000,4877,9,999999999,17,0,0,88,0.2,0,0 +2015,2,11,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,32,7,21,96113,1082,1404,396,810,858,148,99483,56308,18204,7584,210,8.2,0,0,8000,4877,9,999999999,18,0,0,88,0.2,0,0 +2015,2,11,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,32.2,7.3,21,95874,870,1404,398,612,745,150,72846,50131,17914,7114,210,8.8,0,0,8000,4877,9,999999999,19,0,0,88,0.2,0,0 +2015,2,11,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,30,6,22,96079,612,1404,385,380,564,133,43584,36442,15368,5515,220,9.3,0,0,8000,4877,9,999999999,17,0,0,88,0.2,0,0 +2015,2,11,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,6,23,96063,325,1404,380,147,272,84,16304,10509,9340,2907,210,7.2,0,0,8000,4877,9,999999999,17,0,0,88,0.2,0,0 +2015,2,11,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,26.8,5.2,25,95926,29,1404,368,7,0,7,663,0,667,244,210,7.2,0,0,8000,4877,9,999999999,15,0,0,88,0.2,0,0 +2015,2,11,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,4,26,95994,0,145,358,0,0,0,0,0,0,0,170,5.7,0,0,8000,4877,9,999999999,14,0,0,88,0.2,0,0 +2015,2,11,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,6,30,95994,0,0,360,0,0,0,0,0,0,0,140,3.6,0,0,8000,4877,9,999999999,17,0,0,88,0.2,0,0 +2015,2,11,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,22.7,5.3,32,96072,0,0,348,0,0,0,0,0,0,0,160,4.1,0,0,8000,4877,9,999999999,16,0,0,88,0.2,0,0 +2015,2,11,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,22,5,33,95942,0,0,345,0,0,0,0,0,0,0,150,3.1,0,0,8000,4877,9,999999999,15,0,0,88,0.2,0,0 +2015,2,12,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,21,6,38,95924,0,0,341,0,0,0,0,0,0,0,160,2.6,0,0,8000,4877,9,999999999,17,0,0,88,0.2,0,0 +2015,2,12,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,19.7,6.8,43,96076,0,0,336,0,0,0,0,0,0,0,180,2.6,0,0,8000,4877,9,999999999,18,0,0,88,0.2,0,0 +2015,2,12,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,7,46,95888,0,0,344,0,0,0,0,0,0,0,170,2.1,2,2,8000,4877,9,999999999,19,0,0,88,0.2,0,0 +2015,2,12,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,6,45,95870,0,0,338,0,0,0,0,0,0,0,180,1.5,2,2,8000,4877,9,999999999,17,0,0,88,0.2,0,0 +2015,2,12,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,17.1,5.7,47,96095,0,0,323,0,0,0,0,0,0,0,271,0,0,0,8000,4877,9,999999999,16,0,0,88,0.2,0,0 +2015,2,12,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,16,6,51,95834,0,0,332,0,0,0,0,0,0,0,111,1,3,3,8000,4877,9,999999999,17,0,0,88,0.2,0,0 +2015,2,12,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,15,6,55,95815,50,244,328,11,0,11,1108,0,1115,392,119,0,3,3,8000,4877,9,999999999,17,0,0,88,0.2,0,0 +2015,2,12,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,18.9,6.6,45,96166,346,1403,332,162,297,88,17989,12413,9848,3101,246,0.5,0,0,8000,4877,9,999999999,18,0,0,88,0.2,0,0 +2015,2,12,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,22,7,38,95942,632,1403,347,396,550,148,45239,36951,17006,6063,260,1,0,0,8000,4877,9,999999999,19,0,0,88,0.2,0,0 +2015,2,12,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,26,6,28,96011,887,1403,365,629,790,129,75888,51323,15631,6311,67,0.5,0,0,8000,4877,9,999999999,17,0,0,88,0.2,0,0 +2015,2,12,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,28,5.3,24,96079,1094,1403,374,823,854,156,100918,57439,19229,7991,134,1,0,0,8000,4877,9,999999999,16,0,0,88,0.2,0,0 +2015,2,12,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,30,6,22,96079,1239,1403,385,959,811,242,115952,59894,29402,11833,180,4.1,0,0,8000,4877,9,999999999,17,0,0,88,0.2,0,0 +2015,2,12,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,32,7,21,96113,1313,1403,396,1027,815,263,124472,60491,32104,12817,160,6.2,0,0,8000,4877,9,999999999,18,0,0,88,0.2,0,0 +2015,2,12,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,34.1,6.1,18,95839,1310,1403,406,1025,815,264,124253,60900,32154,12829,160,5.1,0,0,8000,4877,9,999999999,17,0,0,88,0.2,0,0 +2015,2,12,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,34,6,18,96146,1230,1403,406,950,810,239,114832,59753,29045,11703,210,6.7,0,0,8000,4877,9,999999999,17,0,0,88,0.2,0,0 +2015,2,12,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,35,5,16,96162,1079,1403,409,809,851,155,99104,57269,19011,7892,230,6.7,0,0,8000,4877,9,999999999,15,0,0,88,0.2,0,0 +2015,2,12,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,34.5,4.5,15,95684,867,1403,406,612,727,162,72386,51082,19251,7567,220,6.2,0,0,8000,4877,9,999999999,14,0,0,88,0.2,0,0 +2015,2,12,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,33,5,17,96129,608,1403,399,377,563,132,43282,36511,15260,5469,230,6.7,0,0,8000,4877,9,999999999,15,0,0,88,0.2,0,0 +2015,2,12,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,32,5,18,96113,321,1403,394,144,267,83,16004,10274,9229,2866,230,6.7,0,0,8000,4877,9,999999999,15,0,0,88,0.2,0,0 +2015,2,12,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,30.5,4.7,20,95704,25,1403,386,6,0,6,561,0,565,210,210,5.1,0,0,8000,4877,9,999999999,15,0,0,88,0.2,0,0 +2015,2,12,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,5,22,96063,0,122,378,0,0,0,0,0,0,0,170,4.1,0,0,8000,4877,9,999999999,15,0,0,88,0.2,0,0 +2015,2,12,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,6,26,96029,0,0,370,0,0,0,0,0,0,0,150,3.6,0,0,8000,4877,9,999999999,17,0,0,88,0.2,0,0 +2015,2,12,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,26.7,5,25,95734,0,0,367,0,0,0,0,0,0,0,190,3.1,0,0,8000,4877,9,999999999,15,0,0,88,0.2,0,0 +2015,2,12,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,6,30,95994,0,0,360,0,0,0,0,0,0,0,220,2.1,0,0,8000,4877,9,999999999,17,0,0,88,0.2,0,0 +2015,2,13,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,23,5,31,95959,0,0,349,0,0,0,0,0,0,0,2,0.5,0,0,8000,4877,9,999999999,15,0,0,88,0.2,0,0 +2015,2,13,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,20,6.1,40,95599,0,0,337,0,0,0,0,0,0,0,340,1.5,0,0,8000,4877,9,999999999,17,0,0,88,0.2,0,0 +2015,2,13,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,19,6,43,95888,0,0,338,0,0,0,0,0,0,0,41,1,1,1,8000,4877,9,999999999,17,0,0,88,0.2,0,0 +2015,2,13,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,6,45,95870,0,0,338,0,0,0,0,0,0,0,20,1.5,2,2,8000,4877,9,999999999,17,0,0,88,0.2,0,0 +2015,2,13,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,17.9,6.1,46,95580,0,0,327,0,0,0,0,0,0,0,251,1,0,0,8000,4877,9,999999999,17,0,0,88,0.2,0,0 +2015,2,13,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,18,6,45,95870,0,0,338,0,0,0,0,0,0,0,265,0.5,2,2,8000,4877,9,999999999,17,0,0,88,0.2,0,0 +2015,2,13,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,6,48,95852,45,221,334,11,0,11,1023,0,1030,363,350,1.5,2,2,8000,4877,9,999999999,17,0,0,88,0.2,0,0 +2015,2,13,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,20,6.6,42,95693,342,1403,337,159,294,87,17677,12062,9734,3060,45,1,0,0,8000,4877,9,999999999,18,0,0,88,0.2,0,0 +2015,2,13,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,7,34,95977,628,1403,356,393,548,148,44880,36734,16913,6022,10,1.5,0,0,8000,4877,9,999999999,19,0,0,88,0.2,0,0 +2015,2,13,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,27,7,28,96029,883,1403,371,625,791,126,75465,50734,15306,6185,32,1,0,0,8000,4877,9,999999999,18,0,0,88,0.2,0,0 +2015,2,13,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,31.1,7,22,95657,1091,1403,392,818,860,149,100580,56473,18349,7649,265,1,0,0,8000,4877,9,999999999,18,0,0,88,0.2,0,0 +2015,2,13,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,33,7,20,96129,1236,1403,402,955,810,240,115437,59353,29142,11744,262,2.1,0,0,8000,4877,9,999999999,18,0,0,88,0.2,0,0 +2015,2,13,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,34,7,19,96146,1310,1403,407,1024,815,263,124124,60441,32012,12784,150,4.6,0,0,8000,4877,9,999999999,18,0,0,88,0.2,0,0 +2015,2,13,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,35,5,16,96162,1306,1403,409,1024,814,265,124090,61358,32253,12858,220,7.7,0,0,8000,4877,9,999999999,15,0,0,88,0.2,0,0 +2015,2,13,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,35,4,14,96162,1226,1403,408,950,810,241,114791,60594,29282,11778,210,8.2,0,0,8000,4877,9,999999999,14,0,0,88,0.2,0,0 +2015,2,13,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,35,3,13,96162,1075,1403,407,809,844,161,98767,58104,19709,8153,210,8.2,0,0,8000,4877,9,999999999,12,0,0,88,0.2,0,0 +2015,2,13,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,34.3,4.1,15,95500,863,1403,404,609,724,163,72003,51092,19337,7587,210,8.8,0,0,8000,4877,9,999999999,14,0,0,88,0.2,0,0 +2015,2,13,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,32,3,16,96113,604,1403,391,375,567,130,43103,36929,15044,5390,210,9.3,0,0,8000,4877,9,999999999,12,0,0,88,0.2,0,0 +2015,2,13,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,30,1,15,96079,317,1403,378,142,226,91,15664,9611,10078,3023,200,9.3,0,0,8000,4877,9,999999999,10,0,0,88,0.2,0,0 +2015,2,13,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,28.8,0,15,95590,20,1403,371,5,0,5,461,0,464,175,180,6.7,0,0,8000,4877,9,999999999,9,0,0,88,0.2,0,0 +2015,2,13,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,-1,17,96011,0,99,356,0,0,0,0,0,0,0,140,5.1,0,0,8000,4877,9,999999999,8,0,0,88,0.2,0,0 +2015,2,13,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,3,25,95977,0,0,352,0,0,0,0,0,0,0,160,4.6,0,0,8000,4877,9,999999999,12,0,0,88,0.2,0,0 +2015,2,13,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,22.6,3.3,28,95673,0,0,345,0,0,0,0,0,0,0,160,3.1,0,0,8000,4877,9,999999999,13,0,0,88,0.2,0,0 +2015,2,13,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,21,5,35,95924,0,0,340,0,0,0,0,0,0,0,170,2.6,0,0,8000,4877,9,999999999,15,0,0,88,0.2,0,0 +2015,2,14,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,5,37,95906,0,0,335,0,0,0,0,0,0,0,160,3.1,0,0,8000,4877,9,999999999,15,0,0,88,0.2,0,0 +2015,2,14,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,20,5.3,38,95618,0,0,336,0,0,0,0,0,0,0,160,2.6,0,0,8000,4877,9,999999999,16,0,0,88,0.2,0,0 +2015,2,14,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,17,5,45,95852,0,0,332,0,0,0,0,0,0,0,54,1,2,2,8000,4877,9,999999999,15,0,0,88,0.2,0,0 +2015,2,14,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,16,6,51,95834,0,0,332,0,0,0,0,0,0,0,154,1,3,3,8000,4877,9,999999999,17,0,0,88,0.2,0,0 +2015,2,14,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,14.9,4.7,50,95572,0,0,312,0,0,0,0,0,0,0,319,0.5,0,0,8000,4877,9,999999999,15,0,0,88,0.2,0,0 +2015,2,14,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,15,5,51,95815,0,0,327,0,0,0,0,0,0,0,41,1,3,3,9000,4877,9,999999999,15,0,0,88,0.2,0,0 +2015,2,14,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,4,48,95815,41,199,312,10,0,10,927,0,933,331,46,0,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2015,2,14,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,19,4.7,39,95779,338,1402,330,156,291,86,17400,11989,9619,3017,188,0,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2015,2,14,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,22,6,35,95942,624,1402,346,390,544,148,44540,36755,16929,6010,160,3.1,0,0,8666,77777,9,999999999,17,0,0,88,0.2,0,0 +2015,2,14,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,6,30,95994,879,1402,360,622,787,128,75090,51059,15490,6246,170,3.1,0,0,9333,77777,9,999999999,17,0,0,88,0.2,0,0 +2015,2,14,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,27,6.1,26,95825,1087,1402,370,816,856,152,100154,56854,18683,7775,150,3.6,0,0,9333,77777,9,999999999,17,0,0,88,0.2,0,0 +2015,2,14,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,7,25,96063,1233,1402,381,952,810,239,115043,59263,29001,11693,170,6.2,0,0,9333,77777,9,999999999,18,0,0,88,0.2,0,0 +2015,2,14,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,30,6,22,96079,1306,1402,385,1023,814,263,123911,60851,32054,12793,160,6.2,0,0,9333,77777,9,999999999,17,0,0,88,0.2,0,0 +2015,2,14,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,30.7,7.2,23,95821,1303,1402,390,1018,814,260,123304,60214,31708,12676,220,7.7,0,0,9333,77777,9,999999999,19,0,0,88,0.2,0,0 +2015,2,14,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,30,9,27,96079,1223,1402,389,940,809,233,113559,58044,28281,11441,220,9.3,0,0,9333,77777,9,999999999,22,0,0,88,0.2,0,0 +2015,2,14,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,9,29,96063,1072,1402,384,798,851,147,97853,54945,18048,7521,210,9.8,0,0,9333,77777,9,999999999,22,0,0,88,0.2,0,0 +2015,2,14,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,28.5,8.5,29,95774,859,1402,380,601,742,146,71520,49119,17443,6925,210,8.8,0,0,9333,77777,9,999999999,21,0,0,88,0.2,0,0 +2015,2,14,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,9,32,96029,600,1402,374,368,544,135,42034,34381,15463,5508,200,7.2,0,0,9333,77777,9,999999999,23,0,0,88,0.2,0,0 +2015,2,14,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,10,39,95994,313,1402,372,137,251,81,15182,8659,9025,2793,160,6.2,1,1,9333,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,14,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,21.5,10.3,49,95881,16,1402,348,4,0,4,348,0,350,135,150,5.1,0,0,9333,77777,9,999999999,26,0,0,88,0.2,0,0 +2015,2,14,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,11,56,95906,0,76,357,0,0,0,0,0,0,0,160,6.7,3,3,9333,77777,9,999999999,28,0,0,88,0.2,0,0 +2015,2,14,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,10,56,95888,0,0,351,0,0,0,0,0,0,0,150,5.1,3,3,9333,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,14,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17.9,10.3,61,95968,0,0,332,0,0,0,0,0,0,0,160,3.6,0,0,9333,77777,9,999999999,26,0,0,88,0.2,0,0 +2015,2,14,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,11,68,95852,0,0,348,0,0,0,0,0,0,0,170,4.1,5,5,9333,77777,9,999999999,28,0,0,88,0.2,0,0 +2015,2,15,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,10,68,95834,0,0,342,0,0,0,0,0,0,0,170,3.1,5,5,9333,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,15,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,16.3,10.4,68,95835,0,0,325,0,0,0,0,0,0,0,200,1.5,0,0,9333,77777,9,999999999,26,0,0,88,0.2,0,0 +2015,2,15,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,11,77,95815,0,0,345,0,0,0,0,0,0,0,160,1.5,7,7,9333,77777,9,999999999,28,0,0,88,0.2,0,0 +2015,2,15,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,10,72,95815,0,0,340,0,0,0,0,0,0,0,170,1.5,6,6,9333,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,15,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.5,9.9,79,95726,0,0,312,0,0,0,0,0,0,0,330,1.5,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,15,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,10,82,95778,0,0,310,0,0,0,0,0,0,0,30,1,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,15,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,11,88,95778,36,177,311,9,0,9,816,0,822,296,237,1,0,0,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2015,2,15,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,16.7,10.7,68,95804,334,1401,327,152,277,86,16843,10444,9562,2994,84,1,0,0,8000,77777,9,999999999,27,0,0,88,0.2,0,0 +2015,2,15,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,20,10,53,95906,620,1401,356,380,539,142,43433,34612,16249,5811,40,0.5,3,3,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,15,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,22,10,46,95942,876,1401,362,614,748,146,73152,48806,17489,6985,203,1,2,2,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,15,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,25.4,10.3,39,95816,1084,1401,367,808,851,149,99023,54403,18312,7640,220,1.5,0,0,8000,77777,9,999999999,26,0,0,88,0.2,0,0 +2015,2,15,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,10,32,96046,1229,1401,380,944,809,233,114133,57537,28346,11472,170,4.1,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,15,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,30,7,24,96079,1303,1401,386,1018,814,261,123347,60288,31746,12689,150,6.7,0,0,8000,77777,9,999999999,18,0,0,88,0.2,0,0 +2015,2,15,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,30,6.9,23,95781,1300,1401,386,1015,813,260,122966,60292,31635,12648,210,8.8,0,0,8000,77777,9,999999999,18,0,0,88,0.2,0,0 +2015,2,15,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,30,9,27,96079,1219,1401,389,936,809,232,113160,57964,28154,11395,210,9.3,0,0,8000,77777,9,999999999,22,0,0,88,0.2,0,0 +2015,2,15,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,9,29,96063,1068,1401,384,795,850,146,97419,54844,17973,7488,210,9.8,0,0,8000,77777,9,999999999,22,0,0,88,0.2,0,0 +2015,2,15,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,27.8,8.7,30,95753,855,1401,377,598,740,145,71054,48853,17337,6879,210,9.3,0,0,8000,77777,9,999999999,22,0,0,88,0.2,0,0 +2015,2,15,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,9,34,96011,596,1401,369,364,539,135,41586,34047,15429,5483,200,8.2,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2015,2,15,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,9,36,95994,308,1401,364,134,246,80,14862,8434,8904,2749,200,6.2,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2015,2,15,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,22,10,46,95880,11,1401,350,2,0,2,240,0,241,95,150,5.7,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,15,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,10,53,95906,0,52,356,0,0,0,0,0,0,0,160,6.7,3,3,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,15,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,10,56,95888,0,0,351,0,0,0,0,0,0,0,160,5.7,3,3,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,15,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,18,10.1,60,95941,0,0,332,0,0,0,0,0,0,0,170,5.1,0,0,8000,77777,9,999999999,26,0,0,88,0.2,0,0 +2015,2,15,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,10,63,95852,0,0,347,0,0,0,0,0,0,0,160,4.6,5,5,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,16,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,10,63,95852,0,0,347,0,0,0,0,0,0,0,150,2.6,5,5,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,16,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,16.1,9.9,67,95850,0,0,323,0,0,0,0,0,0,0,23,1,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,16,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,10,72,95815,0,0,340,0,0,0,0,0,0,0,290,1.5,6,6,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,16,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,10,72,95815,0,0,340,0,0,0,0,0,0,0,160,2.6,6,6,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,16,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15,9.8,71,95811,0,0,318,0,0,0,0,0,0,0,200,1,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,16,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,13,9,77,95778,0,0,334,0,0,0,0,0,0,0,290,1.5,7,7,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2015,2,16,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,9,77,95778,32,155,309,7,0,7,718,0,723,263,40,2.1,0,0,6000,77777,9,999999999,23,0,0,88,0.2,0,0 +2015,2,16,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,15.4,9.9,70,95884,330,1401,320,149,273,85,16537,10228,9454,2954,57,1,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,16,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,11,60,95888,616,1401,338,380,549,139,43461,34592,15903,5700,70,1,0,0,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2015,2,16,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,22,10,46,95942,872,1401,362,611,746,146,72733,48659,17432,6957,90,1,2,2,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,16,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,24.5,10.3,41,95915,1080,1401,363,804,850,148,98609,54305,18237,7608,200,3.1,0,0,8000,77777,9,999999999,26,0,0,88,0.2,0,0 +2015,2,16,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,11,37,96029,1226,1401,376,940,809,231,113557,56842,28037,11365,160,4.1,0,0,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2015,2,16,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,11,35,96046,1300,1401,381,1009,813,253,122188,57935,30854,12395,160,6.2,0,0,8000,77777,9,999999999,27,0,0,88,0.2,0,0 +2015,2,16,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,29.8,9.8,29,95777,1296,1401,389,1007,813,254,122025,58632,30963,12426,160,5.1,0,0,8000,77777,9,999999999,24,0,0,88,0.2,0,0 +2015,2,16,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,30,8,25,96079,1216,1401,387,935,808,232,112920,58429,28195,11404,210,6.7,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2015,2,16,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,30,9,27,96079,1064,1401,389,791,849,145,96979,54743,17892,7453,220,7.7,0,0,8000,77777,9,999999999,22,0,0,88,0.2,0,0 +2015,2,16,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,28.8,9.9,31,95685,851,1401,384,593,741,142,70514,48070,16983,6747,210,8.8,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,16,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,10,34,96029,592,1401,375,360,532,135,41028,33286,15453,5477,210,8.2,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,16,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,10,39,95994,303,1401,372,131,239,79,14473,7848,8787,2707,210,6.7,1,1,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,16,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,22.9,10.5,45,95773,6,1401,355,1,0,1,128,0,129,53,180,4.1,0,0,8000,77777,9,999999999,26,0,0,88,0.2,0,0 +2015,2,16,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,21,11,53,95924,0,28,362,0,0,0,0,0,0,0,160,6.2,3,3,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2015,2,16,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,10,56,95888,0,0,351,0,0,0,0,0,0,0,160,4.6,3,3,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,16,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,10,56,95888,0,0,351,0,0,0,0,0,0,0,170,3.6,3,3,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,16,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,10,59,95870,0,0,349,0,0,0,0,0,0,0,170,2.6,4,4,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,17,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,10,63,95852,0,0,347,0,0,0,0,0,0,0,170,2.1,5,5,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,17,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15.5,10.2,71,95801,0,0,321,0,0,0,0,0,0,0,160,3.1,0,0,8000,77777,9,999999999,26,0,0,88,0.2,0,0 +2015,2,17,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,10,68,95834,0,0,342,0,0,0,0,0,0,0,130,1.5,5,5,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,17,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,15,9,67,95815,0,0,336,0,0,0,0,0,0,0,252,1,5,5,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2015,2,17,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,13.8,9.5,75,95694,0,0,313,0,0,0,0,0,0,0,330,1.5,0,0,8000,77777,9,999999999,24,0,0,88,0.2,0,0 +2015,2,17,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,9,72,95797,0,0,313,0,0,0,0,0,0,0,130,1,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2015,2,17,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,9,67,95815,27,133,317,6,0,6,619,0,624,230,46,1,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2015,2,17,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.8,10,68,95778,325,1400,322,147,269,84,16233,9875,9338,2913,330,1.5,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,17,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,11,60,95888,612,1400,355,365,487,152,41347,31889,17284,6072,330,1.5,4,4,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2015,2,17,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,23,11,47,95959,868,1400,368,606,746,143,72232,47941,17114,6838,153,1,2,2,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2015,2,17,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,25.7,9.4,36,95727,1076,1400,368,802,851,147,98420,54773,18146,7566,122,1.5,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2015,2,17,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,9,30,96046,1222,1400,379,939,808,233,113538,57973,28291,11445,190,3.1,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2015,2,17,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,30,5,21,96079,1296,1400,383,1015,813,262,122915,61109,31870,12721,150,5.1,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2015,2,17,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,30.9,5.8,21,95615,1293,1400,389,1010,812,259,122364,60694,31596,12627,220,6.2,0,0,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2015,2,17,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,32,3,16,96113,1212,1400,391,938,808,238,113313,60682,28921,11642,210,8.8,0,0,8000,77777,9,999999999,12,0,0,88,0.2,0,0 +2015,2,17,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,30,4,19,96079,1060,1400,382,794,843,155,96977,57240,19016,7874,220,9.8,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2015,2,17,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,5,22,96063,847,1400,378,594,723,156,70237,50109,18534,7270,200,9.8,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2015,2,17,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,5,24,96029,587,1400,369,359,544,131,41114,34922,15030,5331,210,8.8,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2015,2,17,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,5,28,95994,299,1400,359,129,240,78,14284,8245,8634,2652,190,6.7,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2015,2,17,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,21.8,6,36,95744,0,1403,345,0,0,0,0,0,0,0,150,5.7,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2015,2,17,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,5,37,95906,0,0,335,0,0,0,0,0,0,0,150,6.2,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2015,2,17,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,6,43,95888,0,0,338,0,0,0,0,0,0,0,160,6.2,1,1,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2015,2,17,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17.7,5.8,46,95907,0,0,326,0,0,0,0,0,0,0,170,4.6,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2015,2,17,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,6,48,95852,0,0,334,0,0,0,0,0,0,0,170,4.1,2,2,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2015,2,18,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,6,51,95834,0,0,332,0,0,0,0,0,0,0,170,3.1,3,3,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2015,2,18,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15.1,6.4,56,95841,0,0,315,0,0,0,0,0,0,0,150,1.5,0,0,8000,77777,9,999999999,18,0,0,88,0.2,0,0 +2015,2,18,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,6,55,95815,0,0,328,0,0,0,0,0,0,0,140,1.5,3,3,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2015,2,18,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,14,6,59,95797,0,0,326,0,0,0,0,0,0,0,236,0.5,4,4,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2015,2,18,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,12.8,5.8,62,95807,0,0,304,0,0,0,0,0,0,0,198,1,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2015,2,18,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,14,7,63,95797,0,0,329,0,0,0,0,0,0,0,140,3.1,5,5,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2015,2,18,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,13,7,67,95778,23,112,325,5,0,5,480,0,484,183,303,1,5,5,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2015,2,18,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15.4,7.3,58,95913,321,1400,317,144,267,83,15996,9996,9220,2868,170,2.1,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2015,2,18,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,6,45,95870,608,1400,338,376,560,133,43197,36101,15322,5493,160,3.6,2,2,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2015,2,18,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,6,40,95906,865,1400,343,609,781,126,73396,50467,15264,6137,160,2.6,1,1,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2015,2,18,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,22.2,6.5,36,95884,1073,1400,362,792,850,140,97619,55300,17331,7233,200,2.1,3,3,8000,77777,9,999999999,18,0,0,88,0.2,0,0 +2015,2,18,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,25,6,30,95994,1219,1400,376,928,883,158,115573,58232,19776,8223,150,3.1,3,3,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2015,2,18,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,5,26,96011,1292,1400,364,1011,812,260,122488,61019,31717,12666,170,4.1,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2015,2,18,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,27.5,3.6,22,95682,1289,1400,385,997,812,248,121196,60607,30366,12186,210,5.1,3,3,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2015,2,18,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,4,23,96029,1208,1400,367,933,807,235,112706,60163,28593,11528,210,6.7,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2015,2,18,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,3,20,96046,1056,1400,371,791,839,158,96514,57557,19313,7981,210,8.2,0,0,8000,77777,9,999999999,12,0,0,88,0.2,0,0 +2015,2,18,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,26,3.6,24,95609,843,1400,362,591,713,161,69724,50373,19101,7450,200,9.8,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2015,2,18,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,2,22,95994,583,1400,355,357,548,129,40906,35498,14795,5244,190,9.3,0,0,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2015,2,18,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,1,22,95977,294,1400,349,126,200,84,13898,7597,9306,2768,200,8.2,0,0,8000,77777,9,999999999,10,0,0,88,0.2,0,0 +2015,2,18,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,21.7,1.7,27,95714,0,1379,339,0,0,0,0,0,0,0,180,7.7,0,0,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2015,2,18,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,21,2,28,95924,0,0,336,0,0,0,0,0,0,0,200,6.7,0,0,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2015,2,18,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,3,34,95888,0,0,329,0,0,0,0,0,0,0,160,3.1,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2015,2,18,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17.9,3.1,37,95864,0,0,330,0,0,0,0,0,0,0,150,3.6,1,1,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2015,2,18,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,4,42,95852,0,0,327,0,0,0,0,0,0,0,170,2.1,1,1,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2015,2,19,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,4,45,95834,0,0,327,0,0,0,0,0,0,0,150,2.1,2,2,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2015,2,19,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15.2,4.3,48,95833,0,0,313,0,0,0,0,0,0,0,150,2.6,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2015,2,19,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,14,4,51,95797,0,0,321,0,0,0,0,0,0,0,200,1.5,3,3,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2015,2,19,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,13,4,54,95778,0,0,317,0,0,0,0,0,0,0,230,1.5,3,3,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2015,2,19,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,12.1,4.4,59,95804,0,0,300,0,0,0,0,0,0,0,350,1.5,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2015,2,19,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,3,58,95740,0,0,294,0,0,0,0,0,0,0,358,0,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2015,2,19,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,4,58,95759,19,90,299,4,0,4,424,0,427,162,40,0.5,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2015,2,19,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,14,4.2,52,95877,317,1399,308,142,268,82,15795,10150,9086,2821,232,0.5,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2015,2,19,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,4,42,95852,604,1399,321,375,566,130,43104,36655,15038,5393,220,1,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2015,2,19,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,21,4,33,95924,861,1399,339,608,722,163,71851,50981,19317,7579,268,1,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2015,2,19,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,22.6,3.2,28,95853,1069,1399,345,803,842,159,98125,57764,19516,8076,267,1.5,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2015,2,19,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,2,24,95977,1215,1399,350,943,807,241,113847,61065,29205,11741,170,2.6,0,0,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2015,2,19,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,4,26,95994,1289,1399,358,1009,812,261,122245,61389,31771,12679,200,5.1,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2015,2,19,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,25.5,4,25,95780,1285,1399,360,1006,811,260,121806,61339,31628,12628,210,7.2,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2015,2,19,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,5,26,96011,1204,1399,364,928,807,233,112114,59646,28300,11425,210,8.2,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2015,2,19,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,7,32,95994,1052,1399,361,783,850,143,96002,55511,17596,7320,210,8.2,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2015,2,19,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,23.9,6.2,32,95771,838,1399,355,585,727,149,69309,49301,17741,6976,210,8.8,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2015,2,19,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,22,7,38,95942,578,1399,347,350,530,131,39982,33503,15040,5305,210,7.7,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2015,2,19,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,7,43,95906,289,1399,344,122,225,75,13497,7115,8376,2562,160,6.2,1,1,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2015,2,19,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17.9,6.9,49,95911,0,1353,351,0,0,0,0,0,0,0,160,6.2,6,6,8000,6000,9,999999999,19,0,0,88,0.2,0,0 +2015,2,19,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,7,52,95852,0,0,338,0,0,0,0,0,0,0,160,5.1,3,3,8000,6000,9,999999999,19,0,0,88,0.2,0,0 +2015,2,19,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,7,55,95834,0,0,333,0,0,0,0,0,0,0,160,3.6,3,3,8000,6000,9,999999999,19,0,0,88,0.2,0,0 +2015,2,19,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15.7,6.7,55,96003,0,0,349,0,0,0,0,0,0,0,180,2.6,8,8,8000,6000,9,999999999,18,0,0,88,0.2,0,0 +2015,2,19,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,15,7,59,95815,0,0,331,0,0,0,0,0,0,0,134,0.5,4,4,8000,6000,9,999999999,19,0,0,88,0.2,0,0 +2015,2,20,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,15,7,59,95815,0,0,331,0,0,0,0,0,0,0,160,1,4,4,8000,6000,9,999999999,19,0,0,88,0.2,0,0 +2015,2,20,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14.9,6.5,57,95969,0,0,345,0,0,0,0,0,0,0,170,2.1,8,8,8000,6000,9,999999999,18,0,0,88,0.2,0,0 +2015,2,20,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,15,7,59,95815,0,0,331,0,0,0,0,0,0,0,90,1,4,4,8000,6000,9,999999999,19,0,0,88,0.2,0,0 +2015,2,20,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,14,7,63,95797,0,0,329,0,0,0,0,0,0,0,352,1,5,5,8000,6000,9,999999999,19,0,0,88,0.2,0,0 +2015,2,20,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,13.5,6.7,63,95915,0,0,339,0,0,0,0,0,0,0,10,1,8,8,8000,6000,9,999999999,18,0,0,88,0.2,0,0 +2015,2,20,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,7,63,95797,0,0,349,0,0,0,0,0,0,0,190,1,9,9,8000,5182,9,999999999,19,0,0,88,0.2,0,0 +2015,2,20,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,7,63,95797,14,69,349,2,0,2,166,0,167,68,305,0,9,9,8000,2743,9,999999999,19,0,0,88,0.2,0,0 +2015,2,20,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15.5,6.9,57,95943,313,1398,356,72,0,72,7057,0,7109,2567,329,0,9,9,8000,2400,9,999999999,19,0,0,88,0.2,0,0 +2015,2,20,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,7,55,95834,600,1398,359,191,8,187,21269,626,20971,6903,300,1.5,9,9,8000,3048,9,999999999,19,0,0,88,0.2,0,0 +2015,2,20,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,7,49,95870,857,1398,369,311,17,300,34905,1500,33937,11712,240,1.5,9,9,8000,3048,9,999999999,19,0,0,88,0.2,0,0 +2015,2,20,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19.6,6.7,43,95970,1065,1398,376,411,69,358,47036,6194,41253,15036,145,1,9,9,8000,3000,9,999999999,18,0,0,88,0.2,0,0 +2015,2,20,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,7,40,95924,1211,1398,384,481,51,437,55362,4712,50665,18020,160,3.6,9,9,8000,3048,9,999999999,19,0,0,88,0.2,0,0 +2015,2,20,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,8,41,95942,1285,1398,391,516,89,434,59984,8044,50784,18352,160,4.1,9,9,8000,1829,9,999999999,21,0,0,88,0.2,0,0 +2015,2,20,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23.8,7.5,35,95912,1281,1398,400,515,83,439,59751,7548,51259,18451,150,4.6,9,9,8000,1800,9,999999999,19,0,0,88,0.2,0,0 +2015,2,20,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,23.9,8.2,37,95944,1200,1398,357,920,734,289,109093,57318,34527,13547,275,5.1,0,0,8999,1800,9,999999999,21,0,0,88,0.2,0,0 +2015,2,20,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,24,9,38,95977,1047,1398,380,722,616,261,84513,47868,30659,11971,220,5.7,5,5,8999,3658,9,999999999,23,0,0,88,0.2,0,0 +2015,2,20,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,24,9,38,95849,834,1398,394,389,205,266,43905,17066,30259,10688,230,5.7,8,8,8999,5400,9,999999999,23,0,0,88,0.2,0,0 +2015,2,20,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,24,10,41,95977,573,1398,404,178,27,167,19861,1834,18731,6238,180,6.2,9,9,8999,5486,9,999999999,25,0,0,88,0.2,0,0 +2015,2,20,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,23,10,44,95959,284,1398,399,61,0,61,5986,0,6030,2196,230,4.6,9,9,8999,3048,9,999999999,25,0,0,88,0.2,0,0 +2015,2,20,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,21.1,9.3,47,95826,0,1328,366,0,0,0,0,0,0,0,220,4.1,5,5,8999,5400,9,999999999,23,0,0,88,0.2,0,0 +2015,2,20,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,9,49,95906,0,0,351,0,0,0,0,0,0,0,220,3.6,2,2,8999,5400,9,999999999,23,0,0,88,0.2,0,0 +2015,2,20,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,19,9,52,95888,0,0,355,0,0,0,0,0,0,0,180,3.1,5,5,8999,5400,9,999999999,23,0,0,88,0.2,0,0 +2015,2,20,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17.9,9.7,59,95920,0,0,351,0,0,0,0,0,0,0,160,4.1,5,5,8999,5400,9,999999999,25,0,0,88,0.2,0,0 +2015,2,20,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17,9,59,95852,0,0,346,0,0,0,0,0,0,0,160,3.6,5,5,8999,5400,9,999999999,23,0,0,88,0.2,0,0 +2015,2,21,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,16,9,63,95834,0,0,341,0,0,0,0,0,0,0,160,4.1,5,5,8999,5400,9,999999999,23,0,0,88,0.2,0,0 +2015,2,21,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15.7,9.5,67,95994,0,0,335,0,0,0,0,0,0,0,160,3.1,3,3,8999,5400,9,999999999,24,0,0,88,0.2,0,0 +2015,2,21,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15,9,67,95815,0,0,331,0,0,0,0,0,0,0,160,2.6,3,3,8999,5400,9,999999999,23,0,0,88,0.2,0,0 +2015,2,21,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,14,9,72,95797,0,0,332,0,0,0,0,0,0,0,180,2.1,5,5,8999,5400,9,999999999,23,0,0,88,0.2,0,0 +2015,2,21,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,13.9,9.4,74,96045,0,0,313,0,0,0,0,0,0,0,190,2.1,0,0,8999,5400,9,999999999,24,0,0,88,0.2,0,0 +2015,2,21,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,13,9,77,95778,0,0,334,0,0,0,0,0,0,0,170,2.1,7,7,8999,5400,9,999999999,23,0,0,88,0.2,0,0 +2015,2,21,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,13,10,82,95778,10,47,340,2,0,2,159,0,160,65,7,1,8,8,8999,5400,9,999999999,25,0,0,88,0.2,0,0 +2015,2,21,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,15,9.5,70,96160,309,1398,318,136,251,80,15012,8568,8893,2753,206,0,0,0,8999,5400,9,999999999,24,0,0,88,0.2,0,0 +2015,2,21,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,10,63,95852,596,1398,327,365,541,134,41690,33796,15371,5475,167,1,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,21,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,20,10,53,95906,853,1398,356,589,720,149,69878,47385,17737,7025,264,1,3,3,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,21,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,21.8,10.2,48,96132,1062,1398,350,788,846,145,96608,53907,17791,7417,140,2.1,0,0,8000,77777,9,999999999,26,0,0,88,0.2,0,0 +2015,2,21,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,11,44,95977,1208,1398,368,923,806,225,111479,56397,27340,11109,190,3.1,1,1,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2015,2,21,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,10,39,95994,1281,1398,372,994,811,250,120321,58191,30411,12227,140,5.7,1,1,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,21,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,26.1,9.7,36,96046,1277,1398,370,990,810,249,119915,58319,30324,12193,160,6.2,0,0,8000,77777,9,999999999,24,0,0,88,0.2,0,0 +2015,2,21,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,10,34,96029,1196,1398,375,914,806,224,110378,56891,27180,11042,170,6.2,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,21,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,10,34,96029,1043,1398,375,771,843,141,94459,53621,17395,7241,220,6.2,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,21,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,27.1,10.3,35,95931,829,1398,376,573,733,138,68107,47008,16469,6516,220,7.7,0,0,8000,77777,9,999999999,26,0,0,88,0.2,0,0 +2015,2,21,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,10,37,96011,568,1398,370,341,514,132,38750,31634,15023,5271,220,7.2,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,21,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,10,39,95994,278,1398,372,115,169,81,12579,5298,8927,2634,210,5.7,1,1,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,21,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,23,10.2,44,95993,0,1302,355,0,0,0,0,0,0,0,200,3.6,0,0,8000,77777,9,999999999,26,0,0,88,0.2,0,0 +2015,2,21,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,21,10,49,95924,0,0,357,0,0,0,0,0,0,0,150,5.1,2,2,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,21,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,11,56,95906,0,0,357,0,0,0,0,0,0,0,160,3.6,3,3,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2015,2,21,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,19,10.3,57,96082,0,0,337,0,0,0,0,0,0,0,180,3.6,0,0,8000,77777,9,999999999,26,0,0,88,0.2,0,0 +2015,2,21,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,10,59,95870,0,0,349,0,0,0,0,0,0,0,150,2.6,4,4,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,22,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,10,63,95852,0,0,347,0,0,0,0,0,0,0,170,2.6,5,5,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,22,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,16.1,9.8,66,96011,0,0,323,0,0,0,0,0,0,0,170,2.1,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,22,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,10,72,95815,0,0,340,0,0,0,0,0,0,0,170,3.1,6,6,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,22,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,14,9,72,95797,0,0,334,0,0,0,0,0,0,0,180,2.6,6,6,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2015,2,22,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,14.1,9.5,74,95992,0,0,314,0,0,0,0,0,0,0,170,1.5,0,0,8000,77777,9,999999999,24,0,0,88,0.2,0,0 +2015,2,22,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,10,72,95815,0,0,340,0,0,0,0,0,0,0,180,1.5,6,6,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,22,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,13,9,77,95778,5,26,334,1,0,1,100,0,101,41,162,0.5,7,7,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2015,2,22,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,15.5,9.7,68,96122,305,1397,320,133,246,79,14687,8165,8788,2715,169,0,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,22,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,19,10,56,95888,592,1397,351,355,505,141,40365,32206,16084,5662,151,1,3,3,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,22,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,21,11,53,95924,849,1397,362,585,721,146,69388,46698,17419,6907,27,1,3,3,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2015,2,22,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,23.5,10.8,45,96172,1058,1397,359,784,845,144,96072,53430,17676,7371,180,2.1,0,0,8000,77777,9,999999999,27,0,0,88,0.2,0,0 +2015,2,22,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,11,41,95994,1204,1397,373,920,806,225,111109,56365,27282,11087,150,3.6,1,1,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2015,2,22,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,11,37,96029,1277,1397,376,989,810,247,119696,57504,30095,12119,150,4.6,0,0,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2015,2,22,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,29,9.8,30,96058,1273,1397,385,987,810,248,119447,58187,30174,12139,160,4.6,0,0,8000,77777,9,999999999,24,0,0,88,0.2,0,0 +2015,2,22,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,30,10,29,96079,1192,1397,390,910,805,223,109909,56805,27042,10991,160,6.7,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,22,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,30,10,29,96079,1039,1397,390,767,842,141,93955,53505,17296,7198,220,6.7,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,22,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,28.9,10.6,32,95942,824,1397,385,569,731,137,67557,46645,16324,6455,220,7.2,0,0,8000,77777,9,999999999,26,0,0,88,0.2,0,0 +2015,2,22,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,11,37,96029,563,1397,376,336,505,132,38127,30783,15073,5269,220,6.7,0,0,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2015,2,22,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,11,37,96029,273,1397,376,111,196,73,12264,5231,8072,2443,200,4.6,0,0,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2015,2,22,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,23.8,10.9,44,95959,0,1276,360,0,0,0,0,0,0,0,160,4.1,0,0,8000,77777,9,999999999,27,0,0,88,0.2,0,0 +2015,2,22,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,22,11,50,95942,0,0,363,0,0,0,0,0,0,0,160,4.1,2,2,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2015,2,22,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,10,53,95906,0,0,356,0,0,0,0,0,0,0,160,5.1,3,3,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,22,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,19.5,10.1,55,96063,0,0,339,0,0,0,0,0,0,0,170,4.6,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,22,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,10,56,95888,0,0,351,0,0,0,0,0,0,0,160,2.6,3,3,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,23,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,10,59,95870,0,0,349,0,0,0,0,0,0,0,160,2.6,4,4,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,23,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17.1,9.9,63,95972,0,0,328,0,0,0,0,0,0,0,180,3.1,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,23,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,10,63,95852,0,0,347,0,0,0,0,0,0,0,160,2.6,5,5,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,23,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,9,63,95834,0,0,341,0,0,0,0,0,0,0,180,1,5,5,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2015,2,23,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15.3,9.6,69,95854,0,0,319,0,0,0,0,0,0,0,180,1.5,0,0,8000,77777,9,999999999,24,0,0,88,0.2,0,0 +2015,2,23,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,9,67,95815,0,0,336,0,0,0,0,0,0,0,180,1.5,5,5,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2015,2,23,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,14,10,77,95797,0,0,339,0,0,0,0,0,0,0,190,1,7,7,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,23,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,17.2,10.3,64,95927,300,1402,329,130,241,78,14383,7742,8673,2675,60,0.5,0,0,8000,77777,9,999999999,26,0,0,88,0.2,0,0 +2015,2,23,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,11,56,95906,588,1396,357,352,497,142,39889,31497,16155,5669,200,2.1,3,3,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2015,2,23,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,22,11,50,95942,845,1396,363,585,731,142,69495,46902,16923,6721,150,3.1,2,2,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2015,2,23,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,24.2,11.1,44,95919,1054,1396,362,780,844,143,95622,53149,17549,7318,170,3.6,0,0,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2015,2,23,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,11,39,96011,1200,1396,378,917,805,224,110705,56305,27184,11051,170,4.1,1,1,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2015,2,23,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,11,33,96063,1273,1396,386,985,810,246,119265,57440,29979,12077,180,4.1,0,0,8000,77777,9,999999999,27,0,0,88,0.2,0,0 +2015,2,23,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,29.9,10.1,29,95732,1269,1396,390,983,809,246,118938,57939,29992,12075,170,5.1,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,23,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,31,9,26,96096,1187,1396,394,908,804,223,109608,57300,27081,10999,170,6.7,0,0,8000,77777,9,999999999,22,0,0,88,0.2,0,0 +2015,2,23,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,11,33,96063,1034,1396,386,762,840,139,93279,52765,17123,7129,210,8.8,0,0,8000,77777,9,999999999,27,0,0,88,0.2,0,0 +2015,2,23,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,28.1,11.3,35,95635,819,1396,382,564,731,135,67006,46071,16050,6349,210,9.3,0,0,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2015,2,23,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,11,37,96029,558,1396,376,332,502,131,37658,30446,14940,5213,210,8.2,0,0,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2015,2,23,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,11,41,95994,268,1396,373,108,190,72,11899,4847,7910,2389,190,6.7,1,1,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2015,2,23,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,22,10.8,49,95748,0,1249,351,0,0,0,0,0,0,0,150,5.7,0,0,8000,77777,9,999999999,27,0,0,88,0.2,0,0 +2015,2,23,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,11,60,95888,0,0,355,0,0,0,0,0,0,0,160,6.2,4,4,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2015,2,23,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,11,64,95870,0,0,353,0,0,0,0,0,0,0,160,5.7,5,5,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2015,2,23,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,16.4,10.3,67,95799,0,0,347,0,0,0,0,0,0,0,160,5.7,6,6,8000,77777,9,999999999,26,0,0,88,0.2,0,0 +2015,2,23,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,10,72,95815,0,0,340,0,0,0,0,0,0,0,160,5.1,6,6,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,24,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,14,10,77,95797,0,0,339,0,0,0,0,0,0,0,160,5.1,7,7,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,24,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,12.9,10.1,83,95857,0,0,323,0,0,0,0,0,0,0,160,5.1,3,3,8000,77777,9,999999999,26,0,0,88,0.2,0,0 +2015,2,24,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,13,10,82,95778,0,0,328,0,0,0,0,0,0,0,160,4.6,5,5,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,24,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,10,82,95778,0,0,347,0,0,0,0,0,0,0,150,3.6,9,9,8000,183,9,999999999,25,0,0,88,0.2,0,0 +2015,2,24,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13.5,10.6,83,95877,0,0,351,0,0,0,0,0,0,0,180,3.6,9,9,8000,180,9,999999999,27,0,0,88,0.2,0,0 +2015,2,24,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,11,88,95778,0,0,358,0,0,0,0,0,0,0,160,2.6,10,10,8000,213,9,999999999,28,0,0,88,0.2,0,0 +2015,2,24,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,11,88,95778,0,0,358,0,0,0,0,0,0,0,190,1.5,10,10,7000,213,9,999999999,28,0,0,88,0.2,0,0 +2015,2,24,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13.4,10.7,84,96017,296,1381,360,40,0,40,3932,0,3961,1597,226,1,10,10,6000,180,9,999999999,27,0,0,88,0.2,0,0 +2015,2,24,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,11,82,95797,584,1396,364,112,0,112,11223,0,11317,4717,3,1,10,10,6000,244,9,999999999,28,0,0,88,0.2,0,0 +2015,2,24,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,10,72,95815,842,1396,367,184,0,184,21460,31,21531,8277,180,1.5,10,10,6000,244,9,999999999,25,0,0,88,0.2,0,0 +2015,2,24,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15.3,10.7,74,96081,1050,1396,370,245,8,238,28816,608,28241,11210,190,3.1,10,10,8000,240,9,999999999,27,0,0,88,0.2,0,0 +2015,2,24,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,11,68,95852,1196,1396,368,471,33,443,53939,3046,51042,18065,170,4.6,9,9,8000,457,9,999999999,28,0,0,88,0.2,0,0 +2015,2,24,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,11,64,95870,1269,1396,374,506,88,427,58732,7712,49827,18086,170,5.7,9,9,8000,610,9,999999999,28,0,0,88,0.2,0,0 +2015,2,24,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18.5,11.1,62,96054,1265,1396,376,504,79,433,58369,6989,50442,18221,160,7.2,9,9,8000,600,9,999999999,28,0,0,88,0.2,0,0 +2015,2,24,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19,11,60,95888,1183,1396,358,838,583,343,97714,47954,40252,15278,170,5.7,5,5,8000,600,9,999999999,28,0,0,88,0.2,0,0 +2015,2,24,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20,11,56,95906,1029,1396,363,705,680,203,83809,47745,24218,9776,150,6.2,5,5,8000,600,9,999999999,28,0,0,88,0.2,0,0 +2015,2,24,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.3,11.1,59,95908,814,1396,354,552,700,143,65254,45116,17002,6674,160,6.2,3,3,8000,600,9,999999999,28,0,0,88,0.2,0,0 +2015,2,24,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,18,11,64,95870,553,1396,347,323,478,134,36562,29194,15212,5267,210,6.2,3,3,8000,600,9,999999999,28,0,0,88,0.2,0,0 +2015,2,24,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,11,68,95852,262,1396,348,96,154,67,10565,3494,7381,2257,220,6.2,5,5,8000,600,9,999999999,28,0,0,88,0.2,0,0 +2015,2,24,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15.9,10.9,72,95960,0,1222,323,0,0,0,0,0,0,0,150,3.6,0,0,8000,600,9,999999999,28,0,0,88,0.2,0,0 +2015,2,24,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15,11,77,95815,0,0,333,0,0,0,0,0,0,0,160,3.6,3,3,8000,600,9,999999999,28,0,0,88,0.2,0,0 +2015,2,24,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,11,77,95815,0,0,358,0,0,0,0,0,0,0,160,3.1,9,9,8000,914,9,999999999,28,0,0,88,0.2,0,0 +2015,2,24,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15.7,10.9,73,95965,0,0,372,0,0,0,0,0,0,0,150,2.1,10,10,8000,750,9,999999999,28,0,0,88,0.2,0,0 +2015,2,24,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,16,11,72,95834,0,0,374,0,0,0,0,0,0,0,272,1,10,10,8000,610,9,999999999,28,0,0,88,0.2,0,0 +2015,2,25,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,10,72,95815,0,0,367,0,0,0,0,0,0,0,40,2.1,10,10,8000,610,9,999999999,25,0,0,88,0.2,0,0 +2015,2,25,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,10.3,73,95782,0,0,368,0,0,0,0,0,0,0,360,2.1,10,10,8000,600,9,999999999,26,0,0,88,0.2,0,0 +2015,2,25,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,15,11,77,95815,0,0,369,0,0,0,0,0,0,0,109,1,10,10,8000,518,9,999999999,28,0,0,88,0.2,0,0 +2015,2,25,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,11,77,95815,0,0,369,0,0,0,0,0,0,0,240,2.1,10,10,8000,518,9,999999999,28,0,0,88,0.2,0,0 +2015,2,25,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15.8,10.9,73,95750,0,0,373,0,0,0,0,0,0,0,250,2.1,10,10,8000,480,9,999999999,28,0,0,88,0.2,0,0 +2015,2,25,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,16,11,72,95834,0,0,374,0,0,0,0,0,0,0,275,1,10,10,8000,488,9,999999999,28,0,0,88,0.2,0,0 +2015,2,25,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,11,72,95834,0,0,374,0,0,0,0,0,0,0,10,2.6,10,10,5000,488,9,999999999,28,0,0,88,0.2,0,0 +2015,2,25,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15.7,10.9,73,95795,292,1360,372,39,0,39,3852,0,3881,1564,330,2.6,10,10,5000,450,9,999999999,28,0,0,88,0.2,0,0 +2015,2,25,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,11,72,95834,580,1395,343,327,366,175,36437,25600,19574,6485,340,2.6,5,5,5000,457,9,999999999,28,0,0,88,0.2,0,0 +2015,2,25,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,18,11,64,95870,838,1395,353,541,586,188,62802,41536,21989,8414,295,1.5,5,5,5000,457,9,999999999,28,0,0,88,0.2,0,0 +2015,2,25,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.8,11.1,57,95709,1046,1395,341,773,804,170,93449,53162,20579,8480,160,2.6,0,0,6000,457,9,999999999,28,0,0,88,0.2,0,0 +2015,2,25,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,11,47,95959,1192,1395,356,909,804,222,109825,56130,26912,10950,150,4.1,0,0,6000,77777,9,999999999,28,0,0,88,0.2,0,0 +2015,2,25,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,12,44,95994,1265,1395,367,976,808,242,118141,56616,29492,11907,150,4.1,0,0,9000,77777,9,999999999,31,0,0,88,0.2,0,0 +2015,2,25,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,26.9,9.3,33,95548,1260,1395,373,976,808,245,118119,58233,29833,12012,160,5.1,0,0,9000,77777,9,999999999,23,0,0,88,0.2,0,0 +2015,2,25,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,8,28,96046,1178,1395,377,901,803,222,108763,57643,26931,10938,170,5.1,0,0,9000,77777,9,999999999,20,0,0,88,0.2,0,0 +2015,2,25,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,27.6,9.2,32,95762,1024,1395,377,756,840,138,92517,53614,17021,7073,250,5.9,0,0,9000,77777,9,999999999,23,0,0,88,0.2,0,0 +2015,2,25,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,27.3,10.5,35,95479,809,1395,377,556,725,135,65963,46104,16080,6336,210,6.7,0,0,9000,77777,9,999999999,26,0,0,88,0.2,0,0 +2015,2,25,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,10,37,96011,547,1395,370,324,500,127,36768,30140,14524,5058,220,7.2,0,0,9000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,25,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,10,41,95977,257,1395,367,101,148,74,11092,3848,8147,2391,220,6.7,1,1,9000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,25,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,21.4,10.3,49,95557,0,1195,348,0,0,0,0,0,0,0,210,5.7,0,0,9000,77777,9,999999999,26,0,0,88,0.2,0,0 +2015,2,25,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,10,53,95906,0,0,356,0,0,0,0,0,0,0,160,4.1,3,3,9000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,25,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,11,64,95870,0,0,353,0,0,0,0,0,0,0,160,4.6,5,5,9000,77777,9,999999999,28,0,0,88,0.2,0,0 +2015,2,25,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17.2,10.5,65,95633,0,0,329,0,0,0,0,0,0,0,170,4.6,0,0,9000,77777,9,999999999,27,0,0,88,0.2,0,0 +2015,2,25,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,11,72,95834,0,0,346,0,0,0,0,0,0,0,160,4.1,6,6,9000,77777,9,999999999,28,0,0,88,0.2,0,0 +2015,2,26,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,11,77,95815,0,0,345,0,0,0,0,0,0,0,160,2.6,7,7,9000,77777,9,999999999,28,0,0,88,0.2,0,0 +2015,2,26,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,13.7,10.3,80,95588,0,0,313,0,0,0,0,0,0,0,170,3.6,0,0,9000,77777,9,999999999,26,0,0,88,0.2,0,0 +2015,2,26,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,10,82,95778,0,0,340,0,0,0,0,0,0,0,180,4.1,8,8,7500,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,26,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,11,94,95759,0,0,344,0,0,0,0,0,0,0,160,3.6,9,9,5000,61,9,999999999,28,0,0,88,0.2,0,0 +2015,2,26,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12.5,10.8,89,95565,0,0,346,0,0,0,0,0,0,0,160,3.6,9,9,5000,60,9,999999999,28,0,0,88,0.2,0,0 +2015,2,26,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,11,94,95759,0,0,344,0,0,0,0,0,0,0,170,2.6,9,9,4000,61,9,999999999,28,0,0,88,0.2,0,0 +2015,2,26,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,11,94,95759,0,0,353,0,0,0,0,0,0,0,180,1.5,10,10,4000,61,9,999999999,28,0,0,88,0.2,0,0 +2015,2,26,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12.9,10.8,87,95649,288,1340,358,38,0,38,3766,0,3795,1529,288,1,10,10,4000,120,9,999999999,28,0,0,88,0.2,0,0 +2015,2,26,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,11,77,95815,576,1394,358,180,26,169,20061,1811,18935,6317,328,1,9,9,5000,152,9,999999999,28,0,0,88,0.2,0,0 +2015,2,26,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16,11,72,95834,834,1394,343,538,540,214,61745,40272,24753,9241,180,4.1,5,5,7000,152,9,999999999,28,0,0,88,0.2,0,0 +2015,2,26,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,18,11.1,64,95743,1042,1394,333,770,803,169,92995,53043,20479,8437,160,4.6,0,0,7000,152,9,999999999,28,0,0,88,0.2,0,0 +2015,2,26,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,19.6,11.1,58,95727,1188,1394,358,883,834,171,108644,54022,21199,8803,276,5,4,4,7000,152,9,999999999,28,0,0,88,0.2,0,0 +2015,2,26,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,21.2,11.2,53,95711,1261,1394,363,963,881,165,119933,55822,20670,8584,307,5.3,3,3,7000,152,9,999999999,28,0,0,88,0.2,0,0 +2015,2,26,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,22.8,11.2,48,95695,1256,1394,356,969,808,241,117244,56976,29299,11830,160,5.7,0,0,7000,152,9,999999999,28,0,0,88,0.2,0,0 +2015,2,26,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,23.4,10.6,44,95684,1174,1394,365,892,803,216,107721,55979,26216,10690,112,6.4,1,1,7000,152,9,999999999,27,0,0,88,0.2,0,0 +2015,2,26,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,24,10,41,95672,1019,1394,367,750,836,138,91756,52982,16934,7036,136,7,1,1,7000,152,9,999999999,25,0,0,88,0.2,0,0 +2015,2,26,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,24.6,9.4,38,95660,804,1394,362,552,720,137,65442,46434,16260,6385,210,7.7,0,0,7000,152,9,999999999,23,0,0,88,0.2,0,0 +2015,2,26,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,22.9,9.4,42,95700,542,1394,361,320,496,126,36259,29905,14409,5005,341,6.5,1,1,7000,152,9,999999999,24,0,0,88,0.2,0,0 +2015,2,26,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,21.2,9.5,47,95739,251,1394,358,98,141,72,10686,3494,7945,2329,205,5.3,2,2,7000,152,9,999999999,24,0,0,88,0.2,0,0 +2015,2,26,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,19.5,9.5,52,95779,0,1167,338,0,0,0,0,0,0,0,190,4.1,0,0,7000,152,9,999999999,24,0,0,88,0.2,0,0 +2015,2,26,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,10,59,95870,0,0,349,0,0,0,0,0,0,0,180,5.1,4,4,7000,152,9,999999999,25,0,0,88,0.2,0,0 +2015,2,26,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,10,63,95852,0,0,347,0,0,0,0,0,0,0,150,4.1,5,5,7000,152,9,999999999,25,0,0,88,0.2,0,0 +2015,2,26,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15.9,9.9,68,95865,0,0,322,0,0,0,0,0,0,0,160,4.1,0,0,7000,152,9,999999999,25,0,0,88,0.2,0,0 +2015,2,26,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,10,72,95815,0,0,340,0,0,0,0,0,0,0,160,3.1,6,6,7000,152,9,999999999,25,0,0,88,0.2,0,0 +2015,2,27,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,14,10,77,95797,0,0,339,0,0,0,0,0,0,0,160,4.1,7,7,7000,152,9,999999999,25,0,0,88,0.2,0,0 +2015,2,27,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,14,9.8,76,95887,0,0,314,0,0,0,0,0,0,0,150,3.6,0,0,7000,152,9,999999999,25,0,0,88,0.2,0,0 +2015,2,27,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,14,10,77,95797,0,0,339,0,0,0,0,0,0,0,160,3.1,7,7,7000,152,9,999999999,25,0,0,88,0.2,0,0 +2015,2,27,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,13,9,77,95778,0,0,334,0,0,0,0,0,0,0,170,2.1,7,7,7000,152,9,999999999,23,0,0,88,0.2,0,0 +2015,2,27,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13.6,9.7,77,95917,0,0,350,0,0,0,0,0,0,0,170,1.5,9,9,7000,600,9,999999999,25,0,0,88,0.2,0,0 +2015,2,27,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,14,10,77,95797,0,0,352,0,0,0,0,0,0,0,226,1.5,9,9,7000,610,9,999999999,25,0,0,88,0.2,0,0 +2015,2,27,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,10,77,95797,0,0,362,0,0,0,0,0,0,0,192,1,10,10,9000,610,9,999999999,25,0,0,88,0.2,0,0 +2015,2,27,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14.4,9.9,74,96026,284,1319,364,38,0,38,3697,0,3725,1499,360,2.1,10,10,8000,600,9,999999999,25,0,0,88,0.2,0,0 +2015,2,27,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,16,10,68,95834,573,1394,362,179,57,155,20055,3789,17503,5951,75,1,9,9,8000,610,9,999999999,25,0,0,88,0.2,0,0 +2015,2,27,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,10,59,95870,830,1394,332,575,623,204,66346,45965,23652,8893,136,1,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,27,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,19.5,10.2,55,96006,1038,1394,339,768,841,140,94019,53300,17258,7186,41,1,0,0,8000,77777,9,999999999,26,0,0,88,0.2,0,0 +2015,2,27,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,22,10,46,95942,1184,1394,362,902,803,219,108962,56429,26625,10839,151,1,2,2,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,27,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,24,10,41,95977,1257,1394,367,971,807,243,117563,57700,29556,11916,4,1,1,1,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,27,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,25.6,9.6,36,95820,1251,1394,367,967,807,242,117060,57881,29465,11879,160,2.6,0,0,8000,77777,9,999999999,24,0,0,88,0.2,0,0 +2015,2,27,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,9,32,96029,1169,1394,374,891,802,218,107551,56896,26441,10763,140,3.1,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2015,2,27,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,10,32,96046,1014,1394,380,746,836,137,91260,52878,16784,6971,150,6.2,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2015,2,27,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,28.4,9.4,30,95716,799,1394,381,548,719,136,64910,46240,16137,6330,180,5.7,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2015,2,27,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,26,10,37,96011,536,1394,392,293,393,142,32913,24821,16001,5400,220,7.7,5,5,8000,6096,9,999999999,25,0,0,88,0.2,0,0 +2015,2,27,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,24,10,41,95977,245,1394,381,88,102,70,9626,2325,7689,2256,210,7.2,5,5,8000,6096,9,999999999,25,0,0,88,0.2,0,0 +2015,2,27,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,21.5,9.7,47,95796,0,1139,368,0,0,0,0,0,0,0,210,7.7,5,5,8000,6096,9,999999999,24,0,0,88,0.2,0,0 +2015,2,27,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,20,10,53,95906,0,0,361,0,0,0,0,0,0,0,200,5.1,5,5,8000,6096,9,999999999,25,0,0,88,0.2,0,0 +2015,2,27,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,18,10,59,95870,0,0,352,0,0,0,0,0,0,0,150,4.6,5,5,8000,6096,9,999999999,25,0,0,88,0.2,0,0 +2015,2,27,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17.1,9.6,61,95972,0,0,347,0,0,0,0,0,0,0,150,5.1,5,5,8000,6096,9,999999999,24,0,0,88,0.2,0,0 +2015,2,27,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17,9,59,95852,0,0,346,0,0,0,0,0,0,0,150,4.6,5,5,8000,6096,9,999999999,23,0,0,88,0.2,0,0 +2015,2,28,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,16,9,63,95834,0,0,341,0,0,0,0,0,0,0,130,3.1,5,5,8000,6096,9,999999999,23,0,0,88,0.2,0,0 +2015,2,28,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15.2,9.1,67,95966,0,0,337,0,0,0,0,0,0,0,170,4.1,5,5,8000,6096,9,999999999,23,0,0,88,0.2,0,0 +2015,2,28,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,9,67,95815,0,0,336,0,0,0,0,0,0,0,120,1.5,5,5,8000,6096,9,999999999,23,0,0,88,0.2,0,0 +2015,2,28,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15,9,67,95815,0,0,336,0,0,0,0,0,0,0,190,2.1,5,5,8000,6096,9,999999999,23,0,0,88,0.2,0,0 +2015,2,28,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15,9,67,96066,0,0,336,0,0,0,0,0,0,0,160,2.1,5,5,8000,6096,9,999999999,23,0,0,88,0.2,0,0 +2015,2,28,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,10,72,95815,0,0,357,0,0,0,0,0,0,0,170,2.1,9,9,8000,3048,9,999999999,25,0,0,88,0.2,0,0 +2015,2,28,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,9,67,95815,0,0,356,0,0,0,0,0,0,0,170,3.1,9,9,8000,3353,9,999999999,23,0,0,88,0.2,0,0 +2015,2,28,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15.4,9.6,68,96168,280,1299,334,116,167,82,12643,5364,8996,2658,170,3.1,3,3,8000,3353,9,999999999,24,0,0,88,0.2,0,0 +2015,2,28,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17,10,63,95852,569,1393,347,319,429,143,36001,27473,16273,5619,190,1.5,5,5,8000,3048,9,999999999,25,0,0,88,0.2,0,0 +2015,2,28,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,19,10,56,95888,826,1393,356,532,589,183,61864,41662,21357,8168,142,1,5,5,8000,7620,9,999999999,25,0,0,88,0.2,0,0 +2015,2,28,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,20.3,9.6,50,96172,1034,1393,362,712,667,216,84339,48324,25720,10312,183,1,5,5,8000,7620,9,999999999,24,0,0,88,0.2,0,0 +2015,2,28,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,21,10,49,95924,1180,1393,366,837,702,243,100334,51002,29225,11763,210,2.6,5,5,8000,7620,9,999999999,25,0,0,88,0.2,0,0 +2015,2,28,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,23,10,44,95959,1252,1393,376,900,711,261,108339,52068,31538,12608,140,4.1,5,5,8000,7620,9,999999999,25,0,0,88,0.2,0,0 +2015,2,28,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,24.6,9.8,39,96030,1247,1393,384,896,711,259,107814,52114,31317,12528,130,3.6,5,5,8000,7620,9,999999999,25,0,0,88,0.2,0,0 +2015,2,28,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,25,10,39,95994,1164,1393,387,824,700,238,98659,50775,28649,11552,190,4.1,5,5,8000,7620,9,999999999,25,0,0,88,0.2,0,0 +2015,2,28,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,25,10,39,95994,1009,1393,387,690,663,209,81649,47595,24850,9946,220,6.7,5,5,8000,7620,9,999999999,25,0,0,88,0.2,0,0 +2015,2,28,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,24.3,10.1,41,95930,793,1393,383,505,571,179,58436,40236,20851,7884,220,7.7,5,5,8000,7620,9,999999999,25,0,0,88,0.2,0,0 +2015,2,28,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,23,10,44,95959,531,1393,376,289,389,141,32401,24404,15847,5336,220,7.2,5,5,8000,7620,9,999999999,25,0,0,88,0.2,0,0 +2015,2,28,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,20,10.3,54,95946,239,1393,373,85,123,63,9298,2252,6987,2095,200,5.7,5,5,8000,7620,9,999999999,28,0,0,88,0.2,0,0 +2015,2,28,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,19,10.1,57,96013,0,1111,362,0,0,0,0,0,0,0,182,4.6,5,5,8000,7620,9,999999999,26,0,0,88,0.2,0,0 +2015,2,28,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18,10.1,60,95956,0,0,378,0,0,0,0,0,0,0,170,3.7,9,9,8000,1524,9,999999999,25,0,0,88,0.2,0,0 +2015,2,28,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17.7,11.3,66,95951,0,0,356,0,0,0,0,0,0,0,157,3.1,5,5,8000,1524,9,999999999,25,0,0,88,0.2,0,0 +2015,2,28,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17.4,12.4,73,95903,0,0,331,0,0,0,0,0,0,0,155,3.1,0,0,8000,1524,9,999999999,26,0,0,88,0.2,0,0 +2015,2,28,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17.1,13.3,78,95813,0,0,342,0,0,0,0,0,0,0,160,2.8,5,5,8000,1524,9,999999999,25,0,0,88,0.2,0,0 +2017,3,1,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17.6,14.3,81,95822,0,0,371,0,0,0,0,0,0,0,167,2.5,8,8,8000,4572,9,999999999,42,0,0,88,0.2,0,0 +2017,3,1,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17.4,14.1,81,95818,0,0,335,0,0,0,0,0,0,0,199,1.8,0,0,8000,4572,9,999999999,39,0,0,88,0.2,0,0 +2017,3,1,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,14,81,95857,0,0,364,0,0,0,0,0,0,0,186,1.3,8,8,9600,4572,9,999999999,38,0,0,88,0.2,0,0 +2017,3,1,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,13.8,81,95852,0,0,364,0,0,0,0,0,0,0,233,1.2,7,7,9200,4572,9,999999999,38,0,0,88,0.2,0,0 +2017,3,1,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,17,13.9,82,95808,0,0,364,0,0,0,0,0,0,0,276,1.2,8,8,8800,4572,9,999999999,38,0,0,88,0.2,0,0 +2017,3,1,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,17.8,14.1,79,95822,0,0,364,0,0,0,0,0,0,0,269,1.7,8,8,8400,4572,9,999999999,38,0,0,88,0.2,0,0 +2017,3,1,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16,13,82,95834,0,0,340,0,0,0,0,0,0,0,360,2.1,3,3,8000,4572,9,999999999,34,0,0,88,0.2,0,0 +2017,3,1,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18,14.4,79,95695,276,1279,351,112,193,74,12340,4838,8167,2481,360,2.1,3,3,6000,4572,9,999999999,39,0,0,88,0.2,0,0 +2017,3,1,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20,15,73,95906,565,1392,362,332,537,115,38071,29168,13182,4745,250,2.1,3,3,8000,4572,9,999999999,42,0,0,88,0.2,0,0 +2017,3,1,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,22,15,64,95942,822,1392,377,525,557,196,60454,38496,22664,8584,170,2.1,5,5,8000,4572,9,999999999,41,0,0,88,0.2,0,0 +2017,3,1,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,25,15,54,95994,1030,1392,416,390,38,362,44160,3211,41281,14876,150,2.6,9,9,8000,3962,9,999999999,41,0,0,88,0.2,0,0 +2017,3,1,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,26,16,54,96011,1175,1392,423,458,113,363,52981,9061,42269,15868,160,4.1,9,9,8000,3962,9,999999999,45,0,0,88,0.2,0,0 +2017,3,1,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,28,15,45,96046,1248,1392,409,890,572,377,103685,46225,44204,16586,160,6.2,5,5,8000,3962,9,999999999,41,0,0,88,0.2,0,0 +2017,3,1,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,27.7,15,46,96041,1242,1392,411,831,526,361,97017,41763,42477,16088,210,6.7,6,6,8000,3900,9,999999999,41,0,0,88,0.2,0,0 +2017,3,1,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,30,15,40,96079,1159,1392,420,813,682,245,96826,47558,29377,11833,200,6.2,5,5,8000,3962,9,999999999,41,0,0,88,0.2,0,0 +2017,3,1,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,29,15,43,96063,1004,1392,414,680,665,200,80473,44723,23787,9589,220,7.2,5,5,8000,3962,9,999999999,41,0,0,88,0.2,0,0 +2017,3,1,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,29,14,40,96063,788,1392,413,497,596,160,57918,38675,18691,7188,220,7.2,5,5,8000,3962,9,999999999,37,0,0,88,0.2,0,0 +2017,3,1,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,28,13,40,96046,525,1392,400,301,455,129,33858,26417,14571,4993,220,6.2,3,3,8000,3962,9,999999999,34,0,0,88,0.2,0,0 +2017,3,1,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,26,11,39,96011,233,1392,387,86,152,61,9506,2470,6729,2020,210,7.2,3,3,8000,3962,9,999999999,28,0,0,88,0.2,0,0 +2017,3,1,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,23.4,10.9,45,95573,0,1082,374,0,0,0,0,0,0,0,190,6.2,3,3,8000,3962,9,999999999,27,0,0,88,0.2,0,0 +2017,3,1,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,22,11,50,95942,0,0,395,0,0,0,0,0,0,0,140,3.1,9,9,8000,2438,9,999999999,28,0,0,88,0.2,0,0 +2017,3,1,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,20,13,64,95906,0,0,386,0,0,0,0,0,0,0,150,6.2,9,9,8000,2438,9,999999999,34,0,0,88,0.2,0,0 +2017,3,1,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,20,13,64,95906,0,0,386,0,0,0,0,0,0,0,160,4.6,9,9,8000,2134,9,999999999,34,0,0,88,0.2,0,0 +2017,3,1,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,18,14,77,95870,0,0,351,0,0,0,0,0,0,0,160,5.1,3,3,8000,2134,9,999999999,38,0,0,88,0.2,0,0 +2017,3,2,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,15,88,95852,0,0,373,0,0,0,0,0,0,0,150,3.6,9,9,8000,2134,9,999999999,42,0,0,88,0.2,0,0 +2017,3,2,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,16.9,14.3,85,95694,0,0,331,0,0,0,0,0,0,0,150,2.6,0,0,8000,2134,9,999999999,39,0,0,88,0.2,0,0 +2017,3,2,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,15,88,95852,0,0,373,0,0,0,0,0,0,0,150,2.1,9,9,8000,2134,9,999999999,42,0,0,88,0.2,0,0 +2017,3,2,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,15,88,95852,0,0,373,0,0,0,0,0,0,0,180,1.5,9,9,8000,2134,9,999999999,42,0,0,88,0.2,0,0 +2017,3,2,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,16,13,82,95834,0,0,358,0,0,0,0,0,0,0,84,1,8,8,8000,2134,9,999999999,34,0,0,88,0.2,0,0 +2017,3,2,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,13,82,95834,0,0,326,0,0,0,0,0,0,0,24,1,0,0,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2017,3,2,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,14,12,88,95797,0,0,330,0,0,0,0,0,0,0,198,1,3,3,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2017,3,2,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,16.4,13.4,82,95931,272,1259,342,110,189,73,12081,4717,8050,2440,232,0,3,3,7000,77777,9,999999999,36,0,0,88,0.2,0,0 +2017,3,2,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18,15,83,95870,561,1392,352,329,478,136,37140,28138,15445,5379,160,2.1,3,3,7000,77777,9,999999999,42,0,0,88,0.2,0,0 +2017,3,2,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21,15,69,95924,818,1392,367,553,740,118,66254,42806,14166,5676,150,2.6,3,3,8000,77777,9,999999999,41,0,0,88,0.2,0,0 +2017,3,2,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,23,14,57,95959,1026,1392,378,736,787,155,89147,49235,18895,7825,111,1,4,4,8000,77777,9,999999999,37,0,0,88,0.2,0,0 +2017,3,2,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,24,13,50,95977,1171,1392,376,883,845,171,108336,53732,21134,8788,245,1,2,2,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2017,3,2,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,27,13,42,96029,1243,1392,386,955,805,235,115497,55482,28536,11565,44,1.5,1,1,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2017,3,2,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,27.5,14.1,44,95767,1237,1392,399,936,864,167,115953,53248,20795,8652,210,4.6,3,3,8000,77777,9,999999999,37,0,0,88,0.2,0,0 +2017,3,2,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,15,51,96011,1154,1392,392,863,872,140,107141,51382,17424,7329,220,9.3,3,3,8000,77777,9,999999999,41,0,0,88,0.2,0,0 +2017,3,2,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,15,51,96011,999,1392,392,721,821,131,88023,48517,16061,6688,220,8.8,3,3,8000,77777,9,999999999,41,0,0,88,0.2,0,0 +2017,3,2,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,14,45,96029,782,1392,392,529,717,125,62705,42790,14887,5865,220,8.2,2,2,8000,77777,9,999999999,37,0,0,88,0.2,0,0 +2017,3,2,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,13,45,96011,519,1392,386,299,466,125,33747,26615,14164,4863,220,6.7,2,2,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2017,3,2,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,25,12,44,95994,227,1392,389,78,102,61,8550,1528,6748,2005,210,5.7,5,5,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2017,3,2,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,24.5,11.4,44,95791,0,1054,409,0,0,0,0,0,0,0,200,4.6,9,9,8000,1500,9,999999999,29,0,0,88,0.2,0,0 +2017,3,2,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,23,11,47,95959,0,0,400,0,0,0,0,0,0,0,200,6.2,9,9,8000,1524,9,999999999,28,0,0,88,0.2,0,0 +2017,3,2,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,23,10,44,95959,0,0,376,0,0,0,0,0,0,0,190,5.1,5,5,8000,1524,9,999999999,25,0,0,88,0.2,0,0 +2017,3,2,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,22,11,50,95942,0,0,367,0,0,0,0,0,0,0,200,2.6,3,3,8000,1524,9,999999999,28,0,0,88,0.2,0,0 +2017,3,2,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,20,10,53,95906,0,0,356,0,0,0,0,0,0,0,170,3.6,3,3,8000,1524,9,999999999,25,0,0,88,0.2,0,0 +2017,3,3,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,10,56,95888,0,0,351,0,0,0,0,0,0,0,170,3.1,3,3,8000,1524,9,999999999,25,0,0,88,0.2,0,0 +2017,3,3,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,19.2,9.7,54,95783,0,0,337,0,0,0,0,0,0,0,130,1.5,0,0,8000,1524,9,999999999,24,0,0,88,0.2,0,0 +2017,3,3,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,17,10,63,95852,0,0,341,0,0,0,0,0,0,0,9,1,3,3,8000,1524,9,999999999,25,0,0,88,0.2,0,0 +2017,3,3,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,9,52,95888,0,0,350,0,0,0,0,0,0,0,200,2.1,3,3,8000,1524,9,999999999,23,0,0,88,0.2,0,0 +2017,3,3,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,9,59,95852,0,0,343,0,0,0,0,0,0,0,150,2.6,4,4,8000,1524,9,999999999,23,0,0,88,0.2,0,0 +2017,3,3,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,10,68,95834,0,0,342,0,0,0,0,0,0,0,290,1,5,5,8000,1524,9,999999999,25,0,0,88,0.2,0,0 +2017,3,3,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,10,72,95815,0,0,318,0,0,0,0,0,0,0,21,1,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,3,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.3,9.5,60,95843,268,1240,328,110,165,78,11996,4815,8554,2521,360,1,0,0,8000,77777,9,999999999,24,0,0,88,0.2,0,0 +2017,3,3,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,19,9,52,95888,557,1391,355,310,426,140,35073,27124,15881,5464,295,1,5,5,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,3,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,21,9,46,95924,814,1391,365,524,589,179,60890,41720,20904,7980,8,0.5,5,5,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,3,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,23,10,44,95959,1022,1391,371,744,775,174,89467,52317,21047,8615,150,3.1,3,3,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,3,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,25,11,41,95994,1167,1391,382,876,858,155,108313,54372,19273,8049,150,3.6,3,3,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,3,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,26,12,42,96011,1239,1391,388,940,870,165,116779,54783,20622,8573,190,2.1,3,3,8000,77777,9,999999999,30,0,0,88,0.2,0,0 +2017,3,3,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,27.2,11.4,37,95771,1233,1391,394,936,690,324,110385,54338,38444,14850,180,3.1,3,3,8000,77777,9,999999999,29,0,0,88,0.2,0,0 +2017,3,3,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,28,11,35,96046,1149,1391,428,449,116,354,52066,9751,41222,15473,180,2.1,9,9,8000,1829,9,999999999,27,0,0,88,0.2,0,0 +2017,3,3,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,27,11,37,96029,993,1391,422,375,34,351,42474,3006,39974,14270,230,6.2,9,9,8000,1829,9,999999999,28,0,0,88,0.2,0,0 +2017,3,3,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,25,9,36,95994,777,1391,408,273,42,250,30720,3425,28251,9822,220,8.2,9,9,8000,1829,9,999999999,23,0,0,88,0.2,0,0 +2017,3,3,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,23,8,38,95959,513,1391,374,277,133,228,29750,11108,24620,6702,220,7.7,5,5,8000,4572,9,999999999,21,0,0,88,0.2,0,0 +2017,3,3,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,22,7,38,95942,221,1391,389,42,0,42,4084,0,4114,1514,190,6.7,9,9,8000,1829,9,999999999,19,0,0,88,0.2,0,0 +2017,3,3,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,21.6,7.7,41,95835,0,1025,366,0,0,0,0,0,0,0,150,5.1,5,5,8000,1829,9,999999999,20,0,0,88,0.2,0,0 +2017,3,3,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,20,7,43,95906,0,0,358,0,0,0,0,0,0,0,180,3.1,5,5,8000,5182,9,999999999,19,0,0,88,0.2,0,0 +2017,3,3,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,19,5,40,95888,0,0,350,0,0,0,0,0,0,0,150,4.6,5,5,8000,5182,9,999999999,15,0,0,88,0.2,0,0 +2017,3,3,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,18,3,37,95870,0,0,343,0,0,0,0,0,0,0,160,4.6,5,5,8000,5182,9,999999999,13,0,0,88,0.2,0,0 +2017,3,3,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17,3,39,95852,0,0,339,0,0,0,0,0,0,0,170,4.6,5,5,8000,5182,9,999999999,13,0,0,88,0.2,0,0 +2017,3,4,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15,4,48,95815,0,0,325,0,0,0,0,0,0,0,160,3.6,3,3,8000,5182,9,999999999,14,0,0,88,0.2,0,0 +2017,3,4,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,14.8,3.2,46,96015,0,0,310,0,0,0,0,0,0,0,160,2.1,0,0,8000,5182,9,999999999,13,0,0,88,0.2,0,0 +2017,3,4,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,3,44,95815,0,0,317,0,0,0,0,0,0,0,190,1.5,1,1,8000,5182,9,999999999,13,0,0,88,0.2,0,0 +2017,3,4,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,13,5,58,95778,0,0,320,0,0,0,0,0,0,0,300,1.5,4,4,8000,5182,9,999999999,15,0,0,88,0.2,0,0 +2017,3,4,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,13,4,54,95778,0,0,317,0,0,0,0,0,0,0,171,0.5,3,3,8000,5182,9,999999999,14,0,0,88,0.2,0,0 +2017,3,4,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,13,5,58,95778,0,0,320,0,0,0,0,0,0,0,170,1.5,4,4,8000,5182,9,999999999,15,0,0,88,0.2,0,0 +2017,3,4,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,13,6,62,95778,0,0,321,0,0,0,0,0,0,0,180,2.1,4,4,8000,5182,9,999999999,17,0,0,88,0.2,0,0 +2017,3,4,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,14.1,6,58,95983,264,1220,310,108,163,77,11790,4903,8422,2476,160,1.5,0,0,8000,5182,9,999999999,17,0,0,88,0.2,0,0 +2017,3,4,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,5,48,95834,552,1390,328,331,516,126,37770,32289,14431,5049,170,3.1,2,2,8000,5182,9,999999999,15,0,0,88,0.2,0,0 +2017,3,4,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,19,4,37,95888,810,1390,330,563,706,152,66447,48904,18015,7002,247,2.1,0,0,8000,5182,9,999999999,14,0,0,88,0.2,0,0 +2017,3,4,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,21,5,35,95924,1018,1390,340,755,835,144,92335,55549,17663,7308,208,2.1,0,0,8000,5182,9,999999999,15,0,0,88,0.2,0,0 +2017,3,4,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,23,7,36,95959,1162,1390,352,889,800,219,107232,57720,26598,10810,150,4.1,0,0,8000,5182,9,999999999,19,0,0,88,0.2,0,0 +2017,3,4,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,25,8,34,95994,1234,1390,362,954,804,240,115425,58390,29169,11761,202,3.1,0,0,8000,5182,9,999999999,20,0,0,88,0.2,0,0 +2017,3,4,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,26.6,7.5,30,95837,1228,1390,370,949,804,239,114770,58559,29021,11704,200,5.7,0,0,8000,5182,9,999999999,19,0,0,88,0.2,0,0 +2017,3,4,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,7,28,96029,1144,1390,371,871,798,214,105076,57395,25907,10553,220,5.7,0,0,8000,5182,9,999999999,18,0,0,88,0.2,0,0 +2017,3,4,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,8,30,96029,988,1390,372,725,831,133,88577,53279,16366,6771,210,6.2,0,0,8000,5182,9,999999999,20,0,0,88,0.2,0,0 +2017,3,4,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,8,30,96029,771,1390,372,525,703,134,61980,45650,15932,6191,220,6.2,0,0,8000,5182,9,999999999,20,0,0,88,0.2,0,0 +2017,3,4,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,8,32,96011,507,1390,367,293,474,119,33127,27748,13579,4653,210,5.7,0,0,8000,5182,9,999999999,20,0,0,88,0.2,0,0 +2017,3,4,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,8,36,95977,215,1390,358,77,169,51,8575,1741,5692,1736,220,6.2,0,0,8000,5182,9,999999999,20,0,0,88,0.2,0,0 +2017,3,4,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,22.5,6.8,36,95794,0,996,349,0,0,0,0,0,0,0,210,6.7,0,0,8000,5182,9,999999999,18,0,0,88,0.2,0,0 +2017,3,4,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,22,7,38,95942,0,0,347,0,0,0,0,0,0,0,210,5.7,0,0,8000,5182,9,999999999,19,0,0,88,0.2,0,0 +2017,3,4,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,21,7,40,95924,0,0,349,0,0,0,0,0,0,0,130,2.1,1,1,8000,5182,9,999999999,19,0,0,88,0.2,0,0 +2017,3,4,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,7,46,95888,0,0,344,0,0,0,0,0,0,0,130,1.5,2,2,8000,5182,9,999999999,19,0,0,88,0.2,0,0 +2017,3,4,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,7,49,95870,0,0,339,0,0,0,0,0,0,0,170,3.1,2,2,8000,5182,9,999999999,19,0,0,88,0.2,0,0 +2017,3,5,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,18,7,49,95870,0,0,339,0,0,0,0,0,0,0,31,0.5,2,2,8000,5182,9,999999999,19,0,0,88,0.2,0,0 +2017,3,5,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15.3,7.1,58,95722,0,0,317,0,0,0,0,0,0,0,320,1,0,0,8000,5182,9,999999999,19,0,0,88,0.2,0,0 +2017,3,5,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,15,6,55,95815,0,0,328,0,0,0,0,0,0,0,208,1,3,3,8000,5182,9,999999999,17,0,0,88,0.2,0,0 +2017,3,5,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,7,59,95815,0,0,331,0,0,0,0,0,0,0,20,2.1,4,4,8000,5182,9,999999999,19,0,0,88,0.2,0,0 +2017,3,5,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,7,59,95815,0,0,331,0,0,0,0,0,0,0,30,2.1,4,4,8000,5182,9,999999999,19,0,0,88,0.2,0,0 +2017,3,5,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,13,6,62,95778,0,0,321,0,0,0,0,0,0,0,360,2.1,4,4,8000,5182,9,999999999,17,0,0,88,0.2,0,0 +2017,3,5,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,12,6,67,95759,0,0,319,0,0,0,0,0,0,0,216,1,5,5,8000,5182,9,999999999,17,0,0,88,0.2,0,0 +2017,3,5,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14.3,6.5,59,95703,260,1200,350,54,0,54,5314,0,5353,1949,20,1.5,9,9,8000,5400,9,999999999,18,0,0,88,0.2,0,0 +2017,3,5,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17,7,52,95852,548,1389,364,169,54,148,19027,3612,16681,5629,50,1.5,9,9,8000,5791,9,999999999,19,0,0,88,0.2,0,0 +2017,3,5,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,20,6,40,95906,806,1389,343,558,626,195,64458,46804,22595,8465,228,1,1,1,8000,5791,9,999999999,17,0,0,88,0.2,0,0 +2017,3,5,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,23,7,36,95959,1013,1389,352,749,840,136,91841,54412,16782,6964,337,1,0,0,8000,5791,9,999999999,19,0,0,88,0.2,0,0 +2017,3,5,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,25,8,34,95994,1158,1389,362,883,738,268,104863,56597,31996,12680,54,1,0,0,8000,5791,9,999999999,20,0,0,88,0.2,0,0 +2017,3,5,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,28,7,26,96046,1229,1389,422,491,87,414,56953,7826,48361,17574,150,5.1,9,9,8000,6096,9,999999999,18,0,0,88,0.2,0,0 +2017,3,5,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,29,6,23,95660,1223,1389,426,489,51,444,56330,4768,51521,18294,170,4.6,9,9,8000,6000,9,999999999,17,0,0,88,0.2,0,0 +2017,3,5,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,29,6,23,96063,1138,1389,426,448,51,406,51380,4692,46928,16860,150,5.1,9,9,8000,6096,9,999999999,17,0,0,88,0.2,0,0 +2017,3,5,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,31,4,18,96096,982,1389,435,374,69,325,42683,6157,37327,13531,210,5.1,9,9,8000,6096,9,999999999,14,0,0,88,0.2,0,0 +2017,3,5,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,29,5,22,96063,765,1389,425,269,22,257,30238,1885,29034,9905,220,7.2,9,9,8000,5486,9,999999999,15,0,0,88,0.2,0,0 +2017,3,5,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,27,5,24,96029,501,1389,414,149,6,147,16606,397,16439,5321,210,6.2,9,9,8000,5182,9,999999999,15,0,0,88,0.2,0,0 +2017,3,5,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,26,4,24,96011,209,1389,407,38,0,38,3738,0,3765,1388,210,5.7,9,9,8000,4877,9,999999999,14,0,0,88,0.2,0,0 +2017,3,5,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,25,4.3,26,95715,0,966,402,0,0,0,0,0,0,0,180,5.7,9,9,8000,5400,9,999999999,14,0,0,88,0.2,0,0 +2017,3,5,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,23,6,33,95959,0,0,371,0,0,0,0,0,0,0,160,3.6,5,5,8000,5400,9,999999999,17,0,0,88,0.2,0,0 +2017,3,5,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,22,6,35,95942,0,0,346,0,0,0,0,0,0,0,160,3.6,0,0,8000,5400,9,999999999,17,0,0,88,0.2,0,0 +2017,3,5,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,21,4,33,95924,0,0,339,0,0,0,0,0,0,0,140,2.6,0,0,8000,5400,9,999999999,14,0,0,88,0.2,0,0 +2017,3,5,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,4,35,95906,0,0,334,0,0,0,0,0,0,0,150,1.5,0,0,8000,5400,9,999999999,14,0,0,88,0.2,0,0 +2017,3,6,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,5,48,95834,0,0,328,0,0,0,0,0,0,0,330,1.5,2,2,8000,5400,9,999999999,15,0,0,88,0.2,0,0 +2017,3,6,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,16.4,5,47,95817,0,0,319,0,0,0,0,0,0,0,189,0,0,0,8000,5400,9,999999999,15,0,0,88,0.2,0,0 +2017,3,6,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,15,5,51,95815,0,0,327,0,0,0,0,0,0,0,288,1,3,3,8000,5400,9,999999999,15,0,0,88,0.2,0,0 +2017,3,6,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,5,58,95778,0,0,304,0,0,0,0,0,0,0,236,1,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2017,3,6,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,5,55,95797,0,0,309,0,0,0,0,0,0,0,229,1,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2017,3,6,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,5,58,95778,0,0,304,0,0,0,0,0,0,0,20,2.6,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2017,3,6,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,14,5,55,95797,0,0,322,0,0,0,0,0,0,0,30,1.5,3,3,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2017,3,6,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,16.4,4.8,46,95893,256,1181,319,103,157,74,11278,4472,8140,2388,80,0,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2017,3,6,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,5,40,95888,544,1389,337,326,516,124,37165,31919,14144,4942,340,1.5,1,1,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2017,3,6,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,23,5,31,95959,801,1389,349,556,708,147,65606,48234,17391,6769,108,1,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2017,3,6,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,5,26,96011,1009,1389,364,748,833,142,91415,55326,17459,7219,20,1.5,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2017,3,6,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,27,5,24,96029,1153,1389,369,883,798,220,106562,58472,26636,10814,198,1.5,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2017,3,6,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,4,20,96063,1225,1389,377,952,803,243,115039,60105,29550,11877,170,4.1,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2017,3,6,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,30.7,4.4,19,95650,1218,1389,409,879,659,301,104445,53020,35938,14013,170,4.6,5,5,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2017,3,6,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,31,5,19,96096,1133,1389,389,864,859,163,106364,58066,20088,8352,150,5.1,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2017,3,6,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,32,5,18,96113,977,1389,394,718,824,138,87526,54489,16891,6953,170,4.6,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2017,3,6,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,32,3,16,96113,759,1389,391,519,681,146,60860,46919,17244,6595,200,5.1,0,0,8000,77777,9,999999999,12,0,0,88,0.2,0,0 +2017,3,6,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,31,2,16,96096,495,1389,385,286,478,115,32424,28517,13109,4475,220,5.1,0,0,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2017,3,6,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,1,16,96063,203,1389,373,71,91,58,7776,1356,6333,1827,220,5.1,0,0,8000,77777,9,999999999,10,0,0,88,0.2,0,0 +2017,3,6,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,27.5,0.1,17,95511,0,937,365,0,0,0,0,0,0,0,210,4.6,0,0,8000,77777,9,999999999,9,0,0,88,0.2,0,0 +2017,3,6,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,1,21,95994,0,0,354,0,0,0,0,0,0,0,150,3.1,0,0,8000,77777,9,999999999,10,0,0,88,0.2,0,0 +2017,3,6,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,3,25,95977,0,0,352,0,0,0,0,0,0,0,140,3.6,0,0,8000,77777,9,999999999,12,0,0,88,0.2,0,0 +2017,3,6,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,23,2,25,95959,0,0,346,0,0,0,0,0,0,0,140,1.5,0,0,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2017,3,6,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,20,4,35,95906,0,0,334,0,0,0,0,0,0,0,205,0.5,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2017,3,7,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,19,3,34,95888,0,0,329,0,0,0,0,0,0,0,261,1,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2017,3,7,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,17.9,2.7,36,95561,0,0,323,0,0,0,0,0,0,0,357,0,0,0,8000,77777,9,999999999,12,0,0,88,0.2,0,0 +2017,3,7,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,3,37,95870,0,0,324,0,0,0,0,0,0,0,180,1.5,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2017,3,7,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,16,5,48,95834,0,0,328,0,0,0,0,0,0,0,268,1,2,2,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2017,3,7,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,14,3,47,95797,0,0,317,0,0,0,0,0,0,0,47,1,2,2,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2017,3,7,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,16,4,45,95834,0,0,327,0,0,0,0,0,0,0,237,1,2,2,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2017,3,7,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,3,44,95815,0,0,317,0,0,0,0,0,0,0,30,1.5,1,1,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2017,3,7,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,17.2,3.2,39,95614,252,1162,360,52,0,52,5097,0,5134,1867,201,0,9,9,8000,6000,9,999999999,13,0,0,88,0.2,0,0 +2017,3,7,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,20,3,32,95906,540,1388,333,324,453,147,36377,30673,16613,5569,11,1,0,0,8000,6000,9,999999999,13,0,0,88,0.2,0,0 +2017,3,7,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,22,4,31,95942,797,1388,343,553,701,150,65145,48366,17717,6868,61,1,0,0,8000,6000,9,999999999,14,0,0,88,0.2,0,0 +2017,3,7,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,26,3,23,96011,1005,1388,361,746,826,148,90954,56082,18098,7456,194,0.5,0,0,8000,6000,9,999999999,12,0,0,88,0.2,0,0 +2017,3,7,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,3,20,96046,1149,1388,371,882,798,221,106342,59203,26787,10860,150,3.1,0,0,8000,6000,9,999999999,12,0,0,88,0.2,0,0 +2017,3,7,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,3,19,96063,1220,1388,376,949,764,277,113505,60026,33343,13168,180,3.6,0,0,8000,6000,9,999999999,12,0,0,88,0.2,0,0 +2017,3,7,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,29.5,0.4,15,95583,1212,1388,421,488,115,388,56880,10377,45491,16763,210,5.1,9,9,8000,6000,9,999999999,9,0,0,88,0.2,0,0 +2017,3,7,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,30,2,17,96079,1128,1388,380,863,757,248,102914,58820,29684,11849,220,5.1,0,0,8000,6000,9,999999999,11,0,0,88,0.2,0,0 +2017,3,7,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,5,23,96046,971,1388,373,713,822,137,86827,54299,16819,6918,200,5.7,0,0,8000,6000,9,999999999,15,0,0,88,0.2,0,0 +2017,3,7,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,5,24,96029,753,1388,369,512,685,140,60144,45962,16496,6333,180,6.2,0,0,8000,6000,9,999999999,15,0,0,88,0.2,0,0 +2017,3,7,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,5,24,96029,489,1388,369,279,465,115,31606,27131,13092,4453,180,4.6,0,0,8000,6000,9,999999999,15,0,0,88,0.2,0,0 +2017,3,7,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,4,26,95994,197,1388,358,67,141,47,7447,963,5248,1584,150,4.1,0,0,8000,6000,9,999999999,14,0,0,88,0.2,0,0 +2017,3,7,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,22.7,3.9,29,95675,0,907,364,0,0,0,0,0,0,0,190,6.7,4,4,8000,6000,9,999999999,14,0,0,88,0.2,0,0 +2017,3,7,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,22,3,29,95942,0,0,342,0,0,0,0,0,0,0,130,2.6,0,0,8000,6000,9,999999999,12,0,0,88,0.2,0,0 +2017,3,7,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,4,35,95906,0,0,334,0,0,0,0,0,0,0,160,3.6,0,0,8000,6000,9,999999999,14,0,0,88,0.2,0,0 +2017,3,7,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,4,39,95870,0,0,331,0,0,0,0,0,0,0,150,2.6,1,1,8000,6000,9,999999999,14,0,0,88,0.2,0,0 +2017,3,7,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,4,42,95852,0,0,327,0,0,0,0,0,0,0,170,3.1,1,1,8000,6000,9,999999999,14,0,0,88,0.2,0,0 +2017,3,8,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,17,4,42,95852,0,0,327,0,0,0,0,0,0,0,25,1,1,1,8000,6000,9,999999999,14,0,0,88,0.2,0,0 +2017,3,8,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15,3.3,45,95735,0,0,311,0,0,0,0,0,0,0,180,1.5,0,0,8000,6000,9,999999999,13,0,0,88,0.2,0,0 +2017,3,8,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,4,45,95834,0,0,327,0,0,0,0,0,0,0,150,1.5,2,2,8000,6000,9,999999999,14,0,0,88,0.2,0,0 +2017,3,8,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,13,4,54,95778,0,0,317,0,0,0,0,0,0,0,322,0.5,3,3,8000,6000,9,999999999,14,0,0,88,0.2,0,0 +2017,3,8,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,12,5,62,95759,0,0,316,0,0,0,0,0,0,0,280,1.5,4,4,8000,6000,9,999999999,15,0,0,88,0.2,0,0 +2017,3,8,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,11,4,62,95740,0,0,310,0,0,0,0,0,0,0,30,2.1,4,4,8000,6000,9,999999999,14,0,0,88,0.2,0,0 +2017,3,8,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,4,62,95740,0,0,295,0,0,0,0,0,0,0,17,1,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2017,3,8,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,13.4,4.4,54,95790,248,1143,306,98,149,71,10755,3975,7857,2300,356,0,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2017,3,8,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,4,42,95852,536,1387,327,320,512,122,36473,31600,13932,4854,290,2.1,1,1,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2017,3,8,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,20,4,35,95906,793,1387,334,549,700,149,64725,48198,17604,6819,193,1,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2017,3,8,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,23,3,27,95959,1000,1387,347,743,825,147,90471,55959,17999,7412,54,1,0,0,8000,77777,9,999999999,12,0,0,88,0.2,0,0 +2017,3,8,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,3,23,96011,1144,1387,361,878,797,220,105831,59099,26632,10803,160,3.6,0,0,8000,77777,9,999999999,12,0,0,88,0.2,0,0 +2017,3,8,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,2,20,96029,1215,1387,365,946,802,243,114241,60699,29529,11859,170,5.1,0,0,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2017,3,8,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,26.1,3.5,23,95705,1207,1387,362,936,801,239,113119,59984,28986,11669,210,5.7,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2017,3,8,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,2,20,96029,1122,1387,365,858,796,214,103385,59067,25931,10531,220,7.7,0,0,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2017,3,8,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,-1,16,96029,965,1387,361,714,808,151,86445,56459,18360,7484,210,7.7,0,0,8000,77777,9,999999999,8,0,0,88,0.2,0,0 +2017,3,8,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,-1,17,96011,747,1387,356,511,664,153,59700,47346,17974,6792,200,7.2,0,0,8000,77777,9,999999999,8,0,0,88,0.2,0,0 +2017,3,8,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,-1,18,95994,483,1387,351,277,414,133,31002,26688,14912,4874,220,5.7,0,0,8000,77777,9,999999999,8,0,0,88,0.2,0,0 +2017,3,8,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,23,-1,20,95959,190,1387,342,64,80,53,7037,876,5856,1689,210,5.1,0,0,8000,77777,9,999999999,8,0,0,88,0.2,0,0 +2017,3,8,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,19.9,-2.4,22,95843,0,877,326,0,0,0,0,0,0,0,180,5.7,0,0,8000,77777,9,999999999,7,0,0,88,0.2,0,0 +2017,3,8,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,2,34,95870,0,0,323,0,0,0,0,0,0,0,150,3.6,0,0,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2017,3,8,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17,3,39,95852,0,0,339,0,0,0,0,0,0,0,150,4.6,5,5,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2017,3,8,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17,3,39,95852,0,0,359,0,0,0,0,0,0,0,170,4.1,9,9,8000,5182,9,999999999,13,0,0,88,0.2,0,0 +2017,3,8,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17,4,42,95852,0,0,360,0,0,0,0,0,0,0,150,2.1,9,9,8000,4877,9,999999999,14,0,0,88,0.2,0,0 +2017,3,9,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16,4,45,95834,0,0,355,0,0,0,0,0,0,0,160,2.6,9,9,8000,3658,9,999999999,14,0,0,88,0.2,0,0 +2017,3,9,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15.7,6.4,54,96022,0,0,356,0,0,0,0,0,0,0,160,3.1,9,9,8000,4500,9,999999999,18,0,0,88,0.2,0,0 +2017,3,9,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16,8,59,95834,0,0,360,0,0,0,0,0,0,0,160,3.1,9,9,8000,4572,9,999999999,21,0,0,88,0.2,0,0 +2017,3,9,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15,9,67,95815,0,0,336,0,0,0,0,0,0,0,170,2.6,5,5,8000,4572,9,999999999,23,0,0,88,0.2,0,0 +2017,3,9,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,14,9,72,95797,0,0,332,0,0,0,0,0,0,0,180,2.6,5,5,8000,4572,9,999999999,23,0,0,88,0.2,0,0 +2017,3,9,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,15,9,67,95815,0,0,331,0,0,0,0,0,0,0,322,1,3,3,8000,4572,9,999999999,23,0,0,88,0.2,0,0 +2017,3,9,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,12,8,76,95759,0,0,328,0,0,0,0,0,0,0,264,1,7,7,8000,4572,9,999999999,21,0,0,88,0.2,0,0 +2017,3,9,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,13.9,7.3,64,96235,244,1124,324,94,136,70,10293,3295,7705,2257,66,0,3,3,8000,4572,9,999999999,19,0,0,88,0.2,0,0 +2017,3,9,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,17,9,59,95852,532,1386,343,305,454,131,34479,27798,14823,5090,16,1,4,4,8000,4572,9,999999999,23,0,0,88,0.2,0,0 +2017,3,9,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,18,7,49,95870,789,1386,339,540,704,140,63892,46600,16588,6467,234,1,2,2,8000,4572,9,999999999,19,0,0,88,0.2,0,0 +2017,3,9,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,20,7,43,95906,996,1386,344,734,856,118,90678,53691,14635,6095,16,3.1,1,1,8000,4572,9,999999999,19,0,0,88,0.2,0,0 +2017,3,9,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,22,10,46,95942,1140,1386,366,853,854,150,105453,54405,18678,7813,170,4.6,3,3,8000,4572,9,999999999,25,0,0,88,0.2,0,0 +2017,3,9,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,22,10,46,95942,1210,1386,366,917,868,160,113972,55526,19939,8300,160,4.1,3,3,8000,4572,9,999999999,25,0,0,88,0.2,0,0 +2017,3,9,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,23.4,9.9,42,96274,1202,1386,372,910,866,159,113025,55476,19821,8255,160,4.6,3,3,8000,4572,9,999999999,25,0,0,88,0.2,0,0 +2017,3,9,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,25,10,39,95994,1116,1386,381,832,851,146,102726,53990,18146,7598,160,4.6,3,3,8000,4572,9,999999999,25,0,0,88,0.2,0,0 +2017,3,9,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,9,36,95994,959,1386,364,698,821,129,85116,51898,15861,6541,170,4.1,0,0,8000,4572,9,999999999,23,0,0,88,0.2,0,0 +2017,3,9,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,8,34,95994,741,1386,362,498,688,131,58729,44205,15448,5953,160,4.6,0,0,8000,4572,9,999999999,20,0,0,88,0.2,0,0 +2017,3,9,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,7,32,95994,476,1386,361,268,450,114,30294,25462,12879,4354,210,5.7,0,0,8000,4572,9,999999999,19,0,0,88,0.2,0,0 +2017,3,9,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,23,5,31,95959,184,1386,349,60,119,44,6665,302,4931,1480,210,5.7,0,0,8000,4572,9,999999999,15,0,0,88,0.2,0,0 +2017,3,9,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,21.5,3.3,30,96118,0,847,340,0,0,0,0,0,0,0,220,4.1,0,0,8000,4572,9,999999999,13,0,0,88,0.2,0,0 +2017,3,9,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,21,3,30,95924,0,0,338,0,0,0,0,0,0,0,180,3.6,0,0,8000,4572,9,999999999,12,0,0,88,0.2,0,0 +2017,3,9,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,20,4,35,95906,0,0,334,0,0,0,0,0,0,0,210,1.5,0,0,8000,4572,9,999999999,14,0,0,88,0.2,0,0 +2017,3,9,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,5,40,95888,0,0,337,0,0,0,0,0,0,0,190,5.7,1,1,8000,4572,9,999999999,15,0,0,88,0.2,0,0 +2017,3,9,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,4,37,95888,0,0,330,0,0,0,0,0,0,0,200,3.1,0,0,8000,4572,9,999999999,14,0,0,88,0.2,0,0 +2017,3,10,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,6,51,95834,0,0,332,0,0,0,0,0,0,0,180,3.1,3,3,8000,4572,9,999999999,17,0,0,88,0.2,0,0 +2017,3,10,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15.8,6.4,54,95996,0,0,318,0,0,0,0,0,0,0,170,3.1,0,0,8000,4572,9,999999999,18,0,0,88,0.2,0,0 +2017,3,10,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,15,6,55,95815,0,0,328,0,0,0,0,0,0,0,138,1,3,3,8000,4572,9,999999999,17,0,0,88,0.2,0,0 +2017,3,10,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,14,6,59,95797,0,0,326,0,0,0,0,0,0,0,9,0.5,4,4,8000,4572,9,999999999,17,0,0,88,0.2,0,0 +2017,3,10,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,12,6,67,95759,0,0,319,0,0,0,0,0,0,0,50,2.1,5,5,8000,4572,9,999999999,17,0,0,88,0.2,0,0 +2017,3,10,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,11,5,66,95740,0,0,314,0,0,0,0,0,0,0,199,0.5,5,5,8000,4572,9,999999999,15,0,0,88,0.2,0,0 +2017,3,10,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,12,6,67,95759,0,0,319,0,0,0,0,0,0,0,50,1.5,5,5,8000,4572,9,999999999,17,0,0,88,0.2,0,0 +2017,3,10,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12,5.7,65,96057,240,1105,301,93,135,70,10199,3289,7675,2234,330,1,0,0,8000,4572,9,999999999,17,0,0,88,0.2,0,0 +2017,3,10,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,7,55,95834,528,1386,320,312,500,121,35483,30046,13863,4812,126,1,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2017,3,10,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,19,7,46,95888,785,1386,344,538,708,137,63693,46614,16320,6364,261,1,2,2,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2017,3,10,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,21,7,40,95924,992,1386,349,730,834,133,89397,53801,16363,6776,200,2.1,1,1,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2017,3,10,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,23,7,36,95959,1135,1386,352,864,796,212,104193,57101,25677,10467,200,2.6,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2017,3,10,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,7,32,95994,1205,1386,361,929,800,233,112321,58309,28339,11451,170,3.6,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2017,3,10,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,27,4.5,24,96005,1197,1386,368,925,800,234,111765,59343,28451,11479,180,5.1,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2017,3,10,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,3,21,96029,1111,1386,366,847,794,210,101989,58420,25392,10329,160,6.2,0,0,8000,77777,9,999999999,12,0,0,88,0.2,0,0 +2017,3,10,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,3,20,96046,953,1386,371,699,812,140,84891,54646,17118,7002,220,5.7,0,0,8000,77777,9,999999999,12,0,0,88,0.2,0,0 +2017,3,10,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,4,23,96029,735,1386,367,496,673,139,58223,45395,16416,6255,220,7.2,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2017,3,10,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,4,24,96011,470,1386,362,265,472,105,30079,26139,11926,4073,210,7.2,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2017,3,10,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,23,4,29,95959,177,1386,348,57,110,43,6307,91,4764,1426,210,7.2,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2017,3,10,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,21.1,4,33,95997,0,816,339,0,0,0,0,0,0,0,190,6.2,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2017,3,10,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,4,35,95906,0,0,334,0,0,0,0,0,0,0,170,3.6,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2017,3,10,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,5,40,95888,0,0,337,0,0,0,0,0,0,0,140,3.1,1,1,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2017,3,10,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,5,42,95870,0,0,333,0,0,0,0,0,0,0,150,3.1,1,1,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2017,3,10,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,5,48,95834,0,0,328,0,0,0,0,0,0,0,170,1.5,2,2,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2017,3,11,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,5,48,95834,0,0,328,0,0,0,0,0,0,0,170,1.5,2,2,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2017,3,11,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,13.7,5.1,56,96108,0,0,308,0,0,0,0,0,0,0,13,0,0,0,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2017,3,11,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,12,5,62,95759,0,0,316,0,0,0,0,0,0,0,138,0.5,4,4,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2017,3,11,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,13,5,58,95778,0,0,320,0,0,0,0,0,0,0,160,1,4,4,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2017,3,11,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,13,4,54,95778,0,0,317,0,0,0,0,0,0,0,160,3.6,3,3,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2017,3,11,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,12,4,58,95759,0,0,315,0,0,0,0,0,0,0,343,1.5,4,4,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2017,3,11,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,3,62,95721,0,0,290,0,0,0,0,0,0,0,143,0.5,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2017,3,11,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12,4.7,61,96293,236,1086,300,91,131,69,9952,3114,7533,2190,360,2.1,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2017,3,11,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,5,48,95834,524,1385,328,309,496,121,35107,30143,13801,4778,10,2.6,2,2,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2017,3,11,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,18,4,39,95870,780,1385,331,538,694,146,63373,47609,17322,6691,240,1,1,1,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2017,3,11,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,20,4,35,95906,987,1385,334,729,823,142,88917,55124,17409,7170,182,1,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2017,3,11,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,23,4,29,95959,1130,1385,348,863,795,214,104100,58347,25974,10561,170,3.1,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2017,3,11,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,5,29,95977,1200,1385,354,927,799,234,112062,59134,28485,11494,160,4.1,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2017,3,11,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,25.9,5.2,26,96223,1191,1385,363,919,799,232,111032,58910,28130,11365,180,6.2,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2017,3,11,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,2,20,96029,1105,1385,365,842,793,209,101472,58661,25327,10296,180,6.2,0,0,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2017,3,11,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,0,17,96029,947,1385,362,696,804,146,84327,55553,17780,7238,160,6.7,0,0,8000,77777,9,999999999,9,0,0,88,0.2,0,0 +2017,3,11,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,1,18,96029,728,1385,363,493,661,145,57631,45896,17068,6446,170,5.7,0,0,8000,77777,9,999999999,10,0,0,88,0.2,0,0 +2017,3,11,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,0,18,96011,464,1385,357,261,398,128,29178,24822,14337,4652,220,5.7,0,0,8000,77777,9,999999999,9,0,0,88,0.2,0,0 +2017,3,11,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,2,24,95977,171,1385,350,54,99,41,5943,0,4597,1372,220,5.7,0,0,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2017,3,11,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,22.6,3.1,28,96279,0,786,345,0,0,0,0,0,0,0,200,4.1,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2017,3,11,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,22,3,29,95942,0,0,342,0,0,0,0,0,0,0,200,4.6,0,0,8000,77777,9,999999999,12,0,0,88,0.2,0,0 +2017,3,11,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,4,35,95906,0,0,334,0,0,0,0,0,0,0,230,3.1,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2017,3,11,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,5,42,95870,0,0,333,0,0,0,0,0,0,0,240,1.5,1,1,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2017,3,11,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,4,48,95815,0,0,322,0,0,0,0,0,0,0,30,1.5,2,2,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2017,3,12,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,5,51,95815,0,0,313,0,0,0,0,0,0,0,320,2.1,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2017,3,12,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,13.7,4.5,54,96146,0,0,307,0,0,0,0,0,0,0,328,0,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2017,3,12,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,14,5,55,95797,0,0,322,0,0,0,0,0,0,0,126,1,3,3,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2017,3,12,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,11,4,62,95740,0,0,310,0,0,0,0,0,0,0,356,2.1,4,4,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2017,3,12,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,11,4,62,95740,0,0,310,0,0,0,0,0,0,0,48,1,4,4,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2017,3,12,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,10,4,66,95721,0,0,308,0,0,0,0,0,0,0,20,2.6,5,5,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2017,3,12,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,3,66,95702,0,0,286,0,0,0,0,0,0,0,10,2.1,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2017,3,12,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,13.1,4.3,55,95983,232,1067,304,89,128,67,9718,2923,7389,2147,50,2.1,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2017,3,12,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,5,48,95834,520,1384,328,306,494,120,34753,29865,13694,4735,310,2.1,2,2,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2017,3,12,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,20,5,37,95906,776,1384,335,534,698,142,62956,47116,16825,6514,107,0.5,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2017,3,12,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,4,29,95959,983,1384,348,726,823,141,88453,55011,17286,7117,10,2.1,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2017,3,12,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,26,3,23,96011,1125,1384,361,861,794,215,103724,58659,25986,10559,25,1.5,0,0,8000,77777,9,999999999,12,0,0,88,0.2,0,0 +2017,3,12,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,28,1,17,96046,1194,1384,368,928,799,239,112104,60645,28981,11655,174,1.5,0,0,8000,77777,9,999999999,10,0,0,88,0.2,0,0 +2017,3,12,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,30.8,0.3,14,95633,1186,1384,381,921,798,237,111164,60753,28755,11569,120,2.6,0,0,8000,77777,9,999999999,9,0,0,88,0.2,0,0 +2017,3,12,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,32,-2,11,96113,1099,1384,384,842,792,213,101352,59898,25722,10422,150,5.1,0,0,8000,77777,9,999999999,7,0,0,88,0.2,0,0 +2017,3,12,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,34,-3,9,96146,941,1384,393,694,800,150,83892,56331,18189,7375,160,5.1,0,0,8000,77777,9,999999999,7,0,0,88,0.2,0,0 +2017,3,12,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,34,-3,9,96146,722,1384,393,491,651,151,57191,46539,17642,6605,150,5.1,0,0,8000,77777,9,999999999,7,0,0,88,0.2,0,0 +2017,3,12,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,33,-2,10,96129,457,1384,389,257,397,126,28727,24710,14097,4565,170,5.7,0,0,8000,77777,9,999999999,7,0,0,88,0.2,0,0 +2017,3,12,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,30,-1,13,96079,164,1384,376,50,54,44,5559,51,4873,1411,220,4.1,0,0,8000,77777,9,999999999,8,0,0,88,0.2,0,0 +2017,3,12,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,26.4,0.7,19,95492,0,756,360,0,0,0,0,0,0,0,180,3.6,0,0,8000,77777,9,999999999,10,0,0,88,0.2,0,0 +2017,3,12,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,2,22,95994,0,0,355,0,0,0,0,0,0,0,150,3.1,0,0,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2017,3,12,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,2,24,95977,0,0,350,0,0,0,0,0,0,0,150,2.6,0,0,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2017,3,12,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,22,3,29,95942,0,0,342,0,0,0,0,0,0,0,190,1.5,0,0,8000,77777,9,999999999,12,0,0,88,0.2,0,0 +2017,3,12,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,19,2,32,95888,0,0,327,0,0,0,0,0,0,0,121,1,0,0,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2017,3,13,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,2,36,95852,0,0,318,0,0,0,0,0,0,0,360,1,0,0,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2017,3,13,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,15,1.9,41,95555,0,0,310,0,0,0,0,0,0,0,327,0,0,0,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2017,3,13,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,14,2,44,95797,0,0,311,0,0,0,0,0,0,0,122,1,1,1,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2017,3,13,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,13,2,47,95778,0,0,311,0,0,0,0,0,0,0,105,0,2,2,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2017,3,13,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,14,1,41,95797,0,0,310,0,0,0,0,0,0,0,80,0.5,1,1,8000,77777,9,999999999,10,0,0,88,0.2,0,0 +2017,3,13,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,12,1,47,95759,0,0,306,0,0,0,0,0,0,0,113,1,2,2,8000,77777,9,999999999,10,0,0,88,0.2,0,0 +2017,3,13,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,2,54,95740,0,0,293,0,0,0,0,0,0,0,3,0.5,0,0,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2017,3,13,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,14.5,0.9,40,95546,228,1049,306,87,95,71,9451,2422,7768,2196,73,0,0,0,8000,77777,9,999999999,10,0,0,88,0.2,0,0 +2017,3,13,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,3,34,95888,516,1383,329,304,500,118,34649,30315,13445,4650,150,1.5,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2017,3,13,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,2,24,95977,772,1383,350,533,684,151,62546,47841,17755,6810,140,2.1,0,0,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2017,3,13,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,2,21,96011,978,1383,360,724,817,146,88009,55698,17817,7310,160,3.6,0,0,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2017,3,13,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,4,22,96046,1120,1383,372,855,794,212,103042,58136,25667,10443,150,3.6,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2017,3,13,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,3,19,96063,1189,1383,376,921,867,175,113674,59822,21734,8983,160,5.1,0,0,8000,77777,9,999999999,12,0,0,88,0.2,0,0 +2017,3,13,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,29.2,3.5,19,95530,1180,1383,400,848,655,289,100677,52641,34527,13517,150,5.1,5,5,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2017,3,13,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,31,4,18,96096,1093,1383,387,829,849,158,101824,57614,19511,8108,160,5.1,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2017,3,13,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,30,7,24,96079,935,1383,386,678,816,127,82690,52234,15507,6365,180,5.1,0,0,8000,77777,9,999999999,18,0,0,88,0.2,0,0 +2017,3,13,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,10,31,96063,716,1383,385,475,677,125,55892,42033,14748,5659,220,6.2,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,13,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,10,37,96011,450,1383,370,247,439,104,27862,22581,11740,3968,220,6.2,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,13,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,23,11,47,95959,158,1383,368,46,54,40,5098,0,4440,1307,160,4.1,2,2,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,13,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,21.5,10.3,49,95578,0,725,372,0,0,0,0,0,0,0,150,4.6,6,6,8000,6900,9,999999999,26,0,0,88,0.2,0,0 +2017,3,13,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,10,53,95906,0,0,356,0,0,0,0,0,0,0,180,5.7,3,3,8000,6900,9,999999999,25,0,0,88,0.2,0,0 +2017,3,13,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,11,64,95870,0,0,353,0,0,0,0,0,0,0,160,3.6,5,5,8000,6900,9,999999999,28,0,0,88,0.2,0,0 +2017,3,13,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,10,63,95852,0,0,347,0,0,0,0,0,0,0,170,3.1,5,5,8000,6900,9,999999999,25,0,0,88,0.2,0,0 +2017,3,13,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17,10,63,95852,0,0,347,0,0,0,0,0,0,0,190,2.1,5,5,8000,6900,9,999999999,25,0,0,88,0.2,0,0 +2017,3,14,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16,10,68,95834,0,0,362,0,0,0,0,0,0,0,160,3.1,9,9,8000,5486,9,999999999,25,0,0,88,0.2,0,0 +2017,3,14,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15.3,10.3,72,95655,0,0,359,0,0,0,0,0,0,0,170,2.6,9,9,8000,5400,9,999999999,26,0,0,88,0.2,0,0 +2017,3,14,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,10,72,95815,0,0,357,0,0,0,0,0,0,0,180,3.6,9,9,8000,5486,9,999999999,25,0,0,88,0.2,0,0 +2017,3,14,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,11,82,95797,0,0,353,0,0,0,0,0,0,0,170,3.1,9,9,8000,4877,9,999999999,28,0,0,88,0.2,0,0 +2017,3,14,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,11,82,95797,0,0,353,0,0,0,0,0,0,0,170,3.1,9,9,8000,4877,9,999999999,28,0,0,88,0.2,0,0 +2017,3,14,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,11,88,95778,0,0,349,0,0,0,0,0,0,0,150,4.1,9,9,8000,4877,9,999999999,28,0,0,88,0.2,0,0 +2017,3,14,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,10,88,95759,0,0,343,0,0,0,0,0,0,0,170,5.1,9,9,8000,5182,9,999999999,26,0,0,88,0.2,0,0 +2017,3,14,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13.3,10.6,84,95949,224,1031,350,43,0,43,4203,0,4234,1559,170,4.1,9,9,8000,5100,9,999999999,27,0,0,88,0.2,0,0 +2017,3,14,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,11,77,95815,512,1383,358,153,15,148,17078,955,16533,5425,210,2.1,9,9,8000,4877,9,999999999,28,0,0,88,0.2,0,0 +2017,3,14,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17,11,68,95852,768,1383,368,269,40,247,30250,3218,27909,9715,190,1.5,9,9,8000,4877,9,999999999,28,0,0,88,0.2,0,0 +2017,3,14,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,19,10,56,95888,973,1383,356,661,551,273,76325,44089,31742,12026,170,2.6,5,5,8000,4877,9,999999999,25,0,0,88,0.2,0,0 +2017,3,14,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,21,11,53,95924,1115,1383,367,783,693,223,93638,49219,26826,10881,150,3.1,5,5,8000,4877,9,999999999,28,0,0,88,0.2,0,0 +2017,3,14,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,22,11,50,95942,1184,1383,373,842,700,242,101035,50292,29227,11775,170,4.1,5,5,8000,4877,9,999999999,28,0,0,88,0.2,0,0 +2017,3,14,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,22.6,11,48,95872,1174,1383,376,834,681,255,99507,49903,30647,12261,170,6.2,5,5,8000,4877,9,999999999,28,0,0,88,0.2,0,0 +2017,3,14,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,23.3,11,46,95924,1087,1383,370,813,844,149,99935,53533,18397,7689,183,6.2,2,2,8000,4877,9,999999999,28,0,0,88,0.2,0,0 +2017,3,14,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,24,11,44,95977,928,1383,377,660,780,136,79809,49112,16459,6733,210,6.2,3,3,8000,4877,9,999999999,28,0,0,88,0.2,0,0 +2017,3,14,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,10,41,95977,709,1383,367,470,673,124,55194,41693,14662,5615,210,5.1,1,1,8000,4877,9,999999999,25,0,0,88,0.2,0,0 +2017,3,14,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,23,10,44,95959,444,1383,362,241,433,103,27254,21988,11614,3913,220,5.7,1,1,8000,4877,9,999999999,25,0,0,88,0.2,0,0 +2017,3,14,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,22,10,46,95942,151,1383,362,43,61,37,4789,0,4059,1208,220,4.6,2,2,8000,4877,9,999999999,25,0,0,88,0.2,0,0 +2017,3,14,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,20.7,10.5,52,95942,0,694,345,0,0,0,0,0,0,0,210,3.6,0,0,8000,4877,9,999999999,26,0,0,88,0.2,0,0 +2017,3,14,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,10,56,95888,0,0,351,0,0,0,0,0,0,0,190,3.1,3,3,8000,4877,9,999999999,25,0,0,88,0.2,0,0 +2017,3,14,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,11,68,95852,0,0,348,0,0,0,0,0,0,0,160,3.6,5,5,8000,4877,9,999999999,28,0,0,88,0.2,0,0 +2017,3,14,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,11,72,95834,0,0,346,0,0,0,0,0,0,0,160,3.1,6,6,8000,4877,9,999999999,28,0,0,88,0.2,0,0 +2017,3,14,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,11,77,95815,0,0,345,0,0,0,0,0,0,0,160,2.1,7,7,8000,4877,9,999999999,28,0,0,88,0.2,0,0 +2017,3,15,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,15,11,77,95815,0,0,345,0,0,0,0,0,0,0,359,1,7,7,8000,4877,9,999999999,28,0,0,88,0.2,0,0 +2017,3,15,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,13.9,10.1,78,96083,0,0,314,0,0,0,0,0,0,0,310,1,0,0,8000,4877,9,999999999,26,0,0,88,0.2,0,0 +2017,3,15,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,13,9,77,95778,0,0,334,0,0,0,0,0,0,0,171,0.5,7,7,8000,4877,9,999999999,23,0,0,88,0.2,0,0 +2017,3,15,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,12,10,88,95759,0,0,343,0,0,0,0,0,0,0,170,2.6,9,9,8000,4877,9,999999999,26,0,0,88,0.2,0,0 +2017,3,15,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,13,11,88,95778,0,0,349,0,0,0,0,0,0,0,180,2.1,9,9,8000,4877,9,999999999,28,0,0,88,0.2,0,0 +2017,3,15,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,13,10,82,95778,0,0,340,0,0,0,0,0,0,0,214,0.5,8,8,8000,4877,9,999999999,25,0,0,88,0.2,0,0 +2017,3,15,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,9,87,95740,0,0,300,0,0,0,0,0,0,0,30,3.1,0,0,6000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,15,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.4,10,85,96121,220,1012,307,81,113,63,8871,1859,6929,2017,30,3.1,0,0,5000,77777,9,999999999,26,0,0,88,0.2,0,0 +2017,3,15,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,11,72,95834,508,1382,324,294,472,120,33233,26956,13673,4697,10,3.1,0,0,7000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,15,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,20,11,56,95906,763,1382,342,518,707,127,61286,43846,15096,5899,243,1,0,0,7000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,15,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,11,53,95924,969,1382,347,705,822,129,86180,50885,15790,6536,11,1.5,0,0,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,15,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,11,44,95977,1110,1382,361,837,792,200,100870,54324,24219,9933,170,3.1,0,0,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,15,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,9,36,95994,1179,1382,364,903,864,166,111523,56525,20554,8543,190,4.1,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,15,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,27.7,6.5,26,95969,1169,1382,393,867,789,199,105636,55433,24403,10006,150,3.6,4,4,8000,77777,9,999999999,18,0,0,88,0.2,0,0 +2017,3,15,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,8,27,96063,1081,1382,382,814,853,145,100197,55278,17989,7514,150,4.1,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2017,3,15,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,8,27,96063,922,1382,382,666,810,125,81105,51331,15272,6259,160,4.6,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2017,3,15,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,8,27,96063,703,1382,382,466,668,126,54657,42263,14833,5652,220,5.1,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2017,3,15,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,9,32,96029,437,1382,374,237,429,101,26734,21743,11446,3845,220,5.7,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,15,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,9,38,95977,144,1382,359,40,51,35,4453,0,3879,1152,220,6.7,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,15,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,22.3,9.3,43,95980,0,663,351,0,0,0,0,0,0,0,200,6.7,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,15,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,22,9,43,95942,0,0,356,0,0,0,0,0,0,0,130,3.6,1,1,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,15,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,21,9,46,95924,0,0,356,0,0,0,0,0,0,0,140,4.1,2,2,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,15,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,9,49,95906,0,0,351,0,0,0,0,0,0,0,150,4.1,2,2,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,15,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,9,56,95870,0,0,345,0,0,0,0,0,0,0,280,1.5,3,3,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,16,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,9,59,95852,0,0,343,0,0,0,0,0,0,0,290,1.5,4,4,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,16,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,14.8,8.2,65,96005,0,0,316,0,0,0,0,0,0,0,38,0,0,0,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2017,3,16,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,8,63,95815,0,0,335,0,0,0,0,0,0,0,290,1,5,5,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2017,3,16,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,12,7,71,95759,0,0,323,0,0,0,0,0,0,0,207,1,6,6,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2017,3,16,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,13,8,72,95778,0,0,329,0,0,0,0,0,0,0,147,0.5,6,6,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2017,3,16,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,13,8,72,95778,0,0,329,0,0,0,0,0,0,0,291,0,6,6,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2017,3,16,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,7,67,95778,0,0,307,0,0,0,0,0,0,0,238,0.5,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2017,3,16,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,8.4,72,96025,216,994,309,79,111,62,8669,1794,6793,1975,330,2.6,0,0,8000,77777,9,999999999,22,0,0,88,0.2,0,0 +2017,3,16,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,9,59,95852,504,1381,326,292,477,118,33073,27485,13375,4599,10,2.1,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,16,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,21,10,49,95924,759,1381,357,513,695,130,60568,43921,15476,6020,350,2.1,2,2,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,16,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,24,10,41,95977,964,1381,367,703,822,129,85832,51372,15768,6519,323,1,1,1,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,16,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,26,9,34,96011,1105,1381,369,835,791,201,100655,55390,24395,9984,90,2.1,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,16,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,9,30,96046,1173,1381,379,898,796,222,108475,56615,26934,10946,170,2.6,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,16,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,28.8,9,29,95931,1163,1381,383,889,795,219,107278,56444,26550,10803,170,4.1,0,0,8000,77777,9,999999999,22,0,0,88,0.2,0,0 +2017,3,16,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,10,31,96063,1075,1381,385,806,789,191,97039,54225,23132,9486,220,5.7,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,16,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,11,33,96063,916,1381,386,657,807,122,79990,49430,14926,6125,220,7.7,0,0,8000,77777,9,999999999,27,0,0,88,0.2,0,0 +2017,3,16,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,11,37,96029,696,1381,376,458,667,121,53750,40535,14314,5468,220,6.7,0,0,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,16,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,26,11,39,96011,431,1381,378,231,400,106,25904,20238,11964,3958,200,3.1,1,1,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,16,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,23,11,47,95959,138,1381,368,37,28,34,4088,0,3787,1117,210,5.1,2,2,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,16,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,21.6,11.1,51,96006,0,633,368,0,0,0,0,0,0,0,150,3.6,4,4,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,16,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,11,56,95906,0,0,357,0,0,0,0,0,0,0,150,4.6,3,3,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,16,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,11,60,95888,0,0,355,0,0,0,0,0,0,0,160,3.6,4,4,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,16,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,11,68,95852,0,0,348,0,0,0,0,0,0,0,160,3.6,5,5,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,16,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,11,68,95852,0,0,348,0,0,0,0,0,0,0,150,3.1,5,5,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,17,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,10,63,95852,0,0,347,0,0,0,0,0,0,0,190,2.1,5,5,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,17,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,15.2,10.3,73,96107,0,0,320,0,0,0,0,0,0,0,19,0,0,0,8000,77777,9,999999999,26,0,0,88,0.2,0,0 +2017,3,17,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,15,10,72,95815,0,0,340,0,0,0,0,0,0,0,154,1,6,6,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,17,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,14,10,77,95797,0,0,339,0,0,0,0,0,0,0,36,1,7,7,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,17,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,14,10,77,95797,0,0,339,0,0,0,0,0,0,0,210,1.5,7,7,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,17,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,12,9,82,95759,0,0,334,0,0,0,0,0,0,0,9,1,8,8,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,17,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,10,82,95778,0,0,310,0,0,0,0,0,0,0,20,0.5,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,17,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,13,9.6,80,96199,212,976,309,77,106,61,8402,1513,6642,1932,84,0,0,0,7000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,17,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,17,11,68,95852,500,1380,348,263,351,136,29381,21230,15245,5065,208,0,5,5,7000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,17,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,19,11,60,95888,755,1380,355,493,636,145,57714,41270,17074,6557,173,1,4,4,7000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,17,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,23,11,47,95959,959,1380,368,696,814,129,84838,50487,15836,6543,247,1,2,2,7000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,17,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,10,39,95994,1100,1380,372,829,791,199,99926,54691,24050,9857,220,1.5,1,1,7000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,17,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,9,32,96029,1168,1380,374,893,795,220,107855,56490,26734,10872,140,3.1,0,0,7000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,17,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,28.6,8.7,29,96013,1157,1380,381,884,794,217,106669,56477,26390,10742,170,5.7,0,0,7000,77777,9,999999999,22,0,0,88,0.2,0,0 +2017,3,17,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,29,8,27,96063,1069,1380,399,792,823,155,96971,54214,19026,7913,220,5.7,3,3,7000,77777,9,999999999,20,0,0,88,0.2,0,0 +2017,3,17,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,29,9,29,96063,909,1380,400,645,776,133,78005,49653,16199,6598,220,5.1,3,3,7000,77777,9,999999999,22,0,0,88,0.2,0,0 +2017,3,17,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,28,11,35,96046,689,1380,398,446,637,128,52123,39377,14979,5675,210,5.7,3,3,7000,77777,9,999999999,27,0,0,88,0.2,0,0 +2017,3,17,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,26,11,39,96011,424,1380,387,223,377,107,24934,19041,12010,3944,220,4.6,3,3,7000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,17,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,24,11,44,95977,131,1380,377,34,16,32,3719,0,3560,1052,210,3.6,3,3,7000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,17,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,22.4,10.5,47,96001,0,602,368,0,0,0,0,0,0,0,170,3.6,3,3,7000,77777,9,999999999,26,0,0,88,0.2,0,0 +2017,3,17,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,21,10,49,95924,0,0,357,0,0,0,0,0,0,0,150,4.1,2,2,7000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,17,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,10,53,95906,0,0,356,0,0,0,0,0,0,0,160,2.6,3,3,7000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,17,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,10,56,95888,0,0,351,0,0,0,0,0,0,0,150,1.5,3,3,7000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,17,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,10,59,95870,0,0,349,0,0,0,0,0,0,0,160,3.1,4,4,7000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,18,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,10,68,95834,0,0,342,0,0,0,0,0,0,0,160,2.6,5,5,7000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,18,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,16.3,10,66,95920,0,0,324,0,0,0,0,0,0,0,150,2.1,0,0,7000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,18,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,15,10,72,95815,0,0,340,0,0,0,0,0,0,0,283,0.5,6,6,7000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,18,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,9,77,95778,0,0,309,0,0,0,0,0,0,0,350,1,0,0,7000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,18,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,9,77,95778,0,0,309,0,0,0,0,0,0,0,148,0.5,0,0,7000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,18,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,9,77,95778,0,0,309,0,0,0,0,0,0,0,330,1,0,0,7000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,18,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,9,77,95778,0,0,309,0,0,0,0,0,0,0,250,1,0,0,7000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,18,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,15.7,10,69,95956,209,958,321,75,103,59,8173,1314,6498,1890,213,0,0,0,7000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,18,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,10,63,95852,496,1379,327,285,469,116,32249,26485,13218,4530,320,1.5,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,18,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,11,53,95924,750,1379,347,507,701,125,59936,43274,14859,5788,20,2.1,0,0,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,18,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,24,11,44,95977,955,1379,368,693,817,127,84544,50447,15581,6437,27,1.5,1,1,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,18,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,10,37,96011,1095,1379,370,825,790,197,99378,54585,23901,9797,180,1.5,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,18,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,30,10,29,96079,1162,1379,390,887,794,218,107090,55822,26401,10754,180,4.1,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,18,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,31.7,10.7,28,95856,1151,1379,400,876,794,213,105696,55221,25879,10564,170,4.6,0,0,8000,77777,9,999999999,26,0,0,88,0.2,0,0 +2017,3,18,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,32,10,26,96113,1063,1379,400,795,787,188,95688,53939,22732,9322,220,6.7,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,18,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,31,10,27,96096,903,1379,395,647,803,121,78691,49626,14774,6045,220,7.2,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,18,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,30,10,29,96079,683,1379,390,447,658,121,52421,40316,14279,5423,220,6.7,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,18,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,10,32,96046,417,1379,380,221,408,98,24899,19655,11043,3675,210,6.7,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,18,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,10,37,96011,124,1379,370,31,14,30,3463,0,3333,986,200,5.7,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,18,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,23.8,10.2,42,95864,0,571,359,0,0,0,0,0,0,0,160,3.6,0,0,8000,77777,9,999999999,26,0,0,88,0.2,0,0 +2017,3,18,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,22,10,46,95942,0,0,362,0,0,0,0,0,0,0,150,4.1,2,2,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,18,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,10,53,95906,0,0,356,0,0,0,0,0,0,0,150,4.6,3,3,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,18,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,9,52,95888,0,0,350,0,0,0,0,0,0,0,150,3.1,3,3,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,18,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,8,49,95888,0,0,345,0,0,0,0,0,0,0,150,4.6,2,2,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2017,3,19,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,8,52,95870,0,0,344,0,0,0,0,0,0,0,170,3.6,3,3,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2017,3,19,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,16.2,8.9,62,95965,0,0,336,0,0,0,0,0,0,0,170,3.1,3,3,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,19,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,9,67,95815,0,0,336,0,0,0,0,0,0,0,170,1.5,5,5,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,19,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,9,67,95815,0,0,336,0,0,0,0,0,0,0,150,1.5,5,5,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,19,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,8,63,95815,0,0,335,0,0,0,0,0,0,0,140,2.1,5,5,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2017,3,19,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,8,63,95815,0,0,335,0,0,0,0,0,0,0,150,2.6,5,5,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2017,3,19,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,14,8,67,95797,0,0,330,0,0,0,0,0,0,0,170,2.1,5,5,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2017,3,19,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,14.5,8.7,68,96170,205,940,315,73,99,58,7950,1218,6360,1848,170,3.1,0,0,8000,77777,9,999999999,22,0,0,88,0.2,0,0 +2017,3,19,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,10,63,95852,492,1379,347,268,398,126,30088,23323,14198,4770,180,1.5,5,5,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,19,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,20,9,49,95906,746,1379,351,502,687,130,59240,43775,15435,5973,268,1,2,2,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,19,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,22,9,43,95942,950,1379,356,691,817,128,84322,51494,15626,6443,286,1,1,1,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,19,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,25,9,36,95994,1090,1379,364,821,789,197,98956,55016,23872,9777,97,1.5,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,19,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,10,37,96011,1156,1379,370,882,794,216,106450,55684,26185,10674,160,3.1,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,19,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,27.5,10.7,35,95995,1145,1379,378,870,793,211,105013,55073,25647,10478,180,3.6,0,0,8000,77777,9,999999999,27,0,0,88,0.2,0,0 +2017,3,19,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,10,31,96063,1056,1379,385,789,786,186,94982,53768,22500,9227,160,5.1,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,19,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,10,31,96063,896,1379,385,641,801,120,77926,49398,14681,6000,170,6.7,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,19,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,11,35,96046,676,1379,381,441,654,120,51604,39435,14085,5344,210,5.7,0,0,8000,77777,9,999999999,27,0,0,88,0.2,0,0 +2017,3,19,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,11,39,96011,410,1379,378,216,380,102,24113,18424,11495,3766,220,5.7,1,1,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,19,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,23,11,47,95959,117,1379,368,29,3,29,3182,0,3165,935,210,6.2,2,2,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,19,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,20.9,10.5,51,96107,0,540,346,0,0,0,0,0,0,0,200,7.2,0,0,8000,77777,9,999999999,26,0,0,88,0.2,0,0 +2017,3,19,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,11,56,95906,0,0,357,0,0,0,0,0,0,0,140,3.6,3,3,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,19,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,11,60,95888,0,0,355,0,0,0,0,0,0,0,150,3.6,4,4,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,19,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,11,64,95870,0,0,353,0,0,0,0,0,0,0,160,4.1,5,5,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,19,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,11,68,95852,0,0,348,0,0,0,0,0,0,0,160,3.1,5,5,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,20,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,11,72,95834,0,0,346,0,0,0,0,0,0,0,140,1.5,6,6,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,20,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15.5,10.5,72,96189,0,0,321,0,0,0,0,0,0,0,150,2.6,0,0,8000,77777,9,999999999,27,0,0,88,0.2,0,0 +2017,3,20,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,14,10,77,95797,0,0,339,0,0,0,0,0,0,0,260,1.5,7,7,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,20,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,14,10,77,95797,0,0,339,0,0,0,0,0,0,0,33,0,7,7,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,20,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,13,10,82,95778,0,0,340,0,0,0,0,0,0,0,340,1,8,8,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,20,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,13,10,82,95778,0,0,340,0,0,0,0,0,0,0,49,0.5,8,8,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,20,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,10,82,95778,0,0,310,0,0,0,0,0,0,0,82,1,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,20,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,12.9,10,83,96206,201,922,309,71,157,48,7822,818,5306,1615,249,0,0,0,8000,77777,9,999999999,26,0,0,88,0.2,0,0 +2017,3,20,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,11,68,95852,487,1378,328,278,458,116,31404,25418,13168,4490,314,0.5,0,0,7000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,20,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,12,64,95888,741,1378,339,498,699,122,58933,42308,14519,5653,63,1,0,0,7000,77777,9,999999999,31,0,0,88,0.2,0,0 +2017,3,20,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,11,53,95924,945,1378,347,685,816,125,83569,50203,15345,6333,278,1,0,0,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,20,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,11,44,95977,1085,1378,368,813,867,131,100898,53200,16285,6845,180,2.1,1,1,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,20,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,11,39,96011,1151,1378,378,875,817,193,106449,54954,23576,9713,160,3.6,1,1,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,20,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,27.2,10.2,34,95980,1139,1378,402,756,563,290,88981,43921,34374,13448,170,5.7,6,6,8000,7500,9,999999999,25,0,0,88,0.2,0,0 +2017,3,20,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,10,32,96046,1050,1378,380,783,805,170,94885,53608,20656,8527,170,6.7,0,0,8000,7500,9,999999999,25,0,0,88,0.2,0,0 +2017,3,20,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,10,32,96046,890,1378,380,635,799,119,77210,49189,14548,5939,160,7.2,0,0,8000,7500,9,999999999,25,0,0,88,0.2,0,0 +2017,3,20,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,10,34,96029,669,1378,375,436,649,120,50985,39555,14119,5337,180,6.7,0,0,8000,7500,9,999999999,25,0,0,88,0.2,0,0 +2017,3,20,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,10,37,96011,404,1378,370,211,394,95,23705,18417,10760,3557,220,5.7,0,0,8000,7500,9,999999999,25,0,0,88,0.2,0,0 +2017,3,20,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,10,41,95977,111,1378,367,27,4,27,3022,0,2997,884,220,4.6,1,1,8000,7500,9,999999999,25,0,0,88,0.2,0,0 +2017,3,20,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,22,10,46,96003,0,509,366,0,0,0,0,0,0,0,180,4.1,3,3,8000,7500,9,999999999,25,0,0,88,0.2,0,0 +2017,3,20,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,10,53,95906,0,0,356,0,0,0,0,0,0,0,150,3.6,3,3,8000,7500,9,999999999,25,0,0,88,0.2,0,0 +2017,3,20,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,10,53,95906,0,0,356,0,0,0,0,0,0,0,130,2.1,3,3,8000,7500,9,999999999,25,0,0,88,0.2,0,0 +2017,3,20,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,9,56,95870,0,0,345,0,0,0,0,0,0,0,190,2.1,3,3,8000,7500,9,999999999,23,0,0,88,0.2,0,0 +2017,3,20,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,18,9,56,95870,0,0,345,0,0,0,0,0,0,0,47,1,3,3,8000,7500,9,999999999,23,0,0,88,0.2,0,0 +2017,3,21,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,9,56,95870,0,0,345,0,0,0,0,0,0,0,170,2.1,3,3,8000,7500,9,999999999,23,0,0,88,0.2,0,0 +2017,3,21,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15.8,8.6,62,95882,0,0,320,0,0,0,0,0,0,0,160,2.1,0,0,8000,7500,9,999999999,22,0,0,88,0.2,0,0 +2017,3,21,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,9,67,95815,0,0,317,0,0,0,0,0,0,0,317,0,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,21,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,8,72,95778,0,0,308,0,0,0,0,0,0,0,344,1,0,0,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2017,3,21,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,9,72,95797,0,0,313,0,0,0,0,0,0,0,58,1.5,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,21,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,8,72,95778,0,0,308,0,0,0,0,0,0,0,24,1,0,0,7000,77777,9,999999999,21,0,0,88,0.2,0,0 +2017,3,21,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,8,72,95778,0,0,308,0,0,0,0,0,0,0,330,0.5,0,0,6000,77777,9,999999999,21,0,0,88,0.2,0,0 +2017,3,21,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,14,9,72,96000,197,905,313,68,151,47,7592,706,5217,1584,270,0,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,21,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,10,63,95852,483,1377,327,275,459,114,31113,25485,12943,4413,352,1,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,21,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,20,10,53,95906,737,1377,341,496,693,125,58582,43149,14849,5753,129,1,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,21,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,24,10,41,95977,940,1377,367,681,814,125,83150,50656,15359,6329,268,1,1,1,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,21,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,10,37,96011,1079,1377,370,811,787,193,97657,54207,23376,9586,190,2.1,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,21,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,9,32,96029,1145,1377,374,873,792,214,105366,56014,25976,10590,170,5.1,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,21,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,29.1,8.5,28,95870,1133,1377,383,862,791,211,104043,56076,25611,10451,160,5.7,0,0,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2017,3,21,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,30,9,27,96079,1044,1377,389,779,785,184,93739,54020,22232,9105,160,5.7,0,0,8000,77777,9,999999999,22,0,0,88,0.2,0,0 +2017,3,21,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,9,29,96063,883,1377,384,630,797,119,76576,49522,14536,5922,220,5.7,0,0,8000,77777,9,999999999,22,0,0,88,0.2,0,0 +2017,3,21,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,10,34,96029,662,1377,375,430,644,120,50242,39145,14058,5300,220,6.7,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,21,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,10,41,95977,397,1377,367,206,386,94,23085,17750,10631,3501,210,7.2,1,1,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,21,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,23,10,44,95959,104,1377,362,26,0,26,2835,0,2839,835,210,5.1,1,1,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,21,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,20.5,10.2,52,95929,0,478,344,0,0,0,0,0,0,0,150,6.2,0,0,8000,77777,9,999999999,26,0,0,88,0.2,0,0 +2017,3,21,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,10,56,95888,0,0,351,0,0,0,0,0,0,0,150,5.1,3,3,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,21,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,10,59,95870,0,0,349,0,0,0,0,0,0,0,160,3.6,4,4,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,21,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,10,63,95852,0,0,347,0,0,0,0,0,0,0,160,4.1,5,5,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,21,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,10,72,95815,0,0,340,0,0,0,0,0,0,0,160,3.1,6,6,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,22,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,10,72,95815,0,0,340,0,0,0,0,0,0,0,160,3.1,6,6,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,22,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,14.1,9.4,73,95974,0,0,314,0,0,0,0,0,0,0,160,1.5,0,0,8000,77777,9,999999999,24,0,0,88,0.2,0,0 +2017,3,22,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,14,9,72,95797,0,0,334,0,0,0,0,0,0,0,170,2.1,6,6,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,22,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,13,10,82,95778,0,0,340,0,0,0,0,0,0,0,180,2.6,8,8,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,22,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,13,9,77,95778,0,0,334,0,0,0,0,0,0,0,161,1,7,7,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,22,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,13,10,82,95778,0,0,340,0,0,0,0,0,0,0,190,1.5,8,8,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,22,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,12,9,82,95759,0,0,334,0,0,0,0,0,0,0,220,0.5,8,8,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,22,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,12,9.1,82,96038,193,887,304,66,145,46,7369,506,5121,1553,68,0,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,22,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,10,72,95815,479,1376,318,272,457,113,30759,25183,12835,4370,21,1,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,22,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,18,10,59,95870,732,1376,349,478,634,141,55924,41051,16505,6305,130,1,4,4,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,22,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,21,11,53,95924,935,1376,362,669,789,133,81179,49343,16201,6652,190,1.5,3,3,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,22,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,11,44,95977,1074,1376,368,804,864,129,99704,52954,16063,6750,190,3.1,1,1,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,22,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,12,44,95994,1139,1376,374,863,791,208,104159,54026,25193,10317,160,5.1,1,1,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2017,3,22,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,25.3,11.5,42,95909,1127,1376,368,853,790,205,102863,54189,24902,10203,170,7.7,0,0,8000,77777,9,999999999,29,0,0,88,0.2,0,0 +2017,3,22,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,11,37,96029,1037,1376,376,770,859,123,95405,52239,15299,6417,160,6.7,0,0,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,22,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,11,37,96029,876,1376,376,622,794,117,75599,48143,14214,5794,160,6.2,0,0,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,22,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,11,39,96011,656,1376,378,423,641,118,49466,38295,13846,5215,160,6.2,1,1,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,22,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,12,47,95977,390,1376,374,200,356,99,22255,16222,11037,3580,160,6.2,2,2,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2017,3,22,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,21,12,56,95924,97,1376,363,24,0,24,2274,0,2290,773,160,4.6,3,3,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2017,3,22,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,19.2,11.9,63,95963,0,446,339,0,0,0,0,0,0,0,160,5.1,0,0,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2017,3,22,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,12,68,95870,0,0,354,0,0,0,0,0,0,0,140,4.1,5,5,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2017,3,22,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,12,68,95870,0,0,354,0,0,0,0,0,0,0,190,1.5,5,5,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2017,3,22,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,17,11,68,95852,0,0,348,0,0,0,0,0,0,0,54,1,5,5,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,22,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,15,11,77,95815,0,0,345,0,0,0,0,0,0,0,287,0,7,7,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,23,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,12,77,95834,0,0,351,0,0,0,0,0,0,0,150,2.1,7,7,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2017,3,23,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,14.2,10.4,78,95871,0,0,315,0,0,0,0,0,0,0,170,1.5,0,0,8000,77777,9,999999999,26,0,0,88,0.2,0,0 +2017,3,23,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,13,11,88,95778,0,0,349,0,0,0,0,0,0,0,160,2.6,9,9,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,23,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,13,11,88,95778,0,0,349,0,0,0,0,0,0,0,170,2.1,9,9,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,23,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,10,88,95759,0,0,305,0,0,0,0,0,0,0,282,1,0,0,8000,77777,9,999999999,26,0,0,88,0.2,0,0 +2017,3,23,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,9,87,95740,0,0,300,0,0,0,0,0,0,0,78,0,0,0,6000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,23,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,10,88,95759,0,0,305,0,0,0,0,0,0,0,215,1,0,0,6000,77777,9,999999999,26,0,0,88,0.2,0,0 +2017,3,23,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.6,10.2,85,95945,189,869,308,64,57,56,6986,473,6153,1752,230,1.5,0,0,8000,77777,9,999999999,26,0,0,88,0.2,0,0 +2017,3,23,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,15,11,77,95815,475,1375,345,216,217,141,23948,13289,15720,5052,65,1,7,7,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,23,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,12,68,95870,728,1375,334,487,622,157,56321,41168,18290,6876,71,1,0,0,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2017,3,23,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,22,12,53,95942,930,1375,353,671,810,123,81785,49112,15004,6185,85,1.5,0,0,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2017,3,23,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,13,50,95977,1069,1375,376,793,851,132,97997,51206,16326,6861,170,4.1,2,2,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2017,3,23,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,12,47,95977,1134,1375,374,856,869,140,106371,53281,17463,7334,160,6.2,2,2,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2017,3,23,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,25.2,12.1,44,95974,1121,1375,368,846,790,203,102071,53660,24584,10085,160,7.2,0,0,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2017,3,23,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,12,44,95994,1031,1375,374,763,853,123,94293,51365,15291,6412,160,7.2,1,1,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2017,3,23,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,12,44,95994,870,1375,374,615,789,116,74599,47226,14088,5739,160,6.7,1,1,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2017,3,23,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,12,47,95977,649,1375,374,416,631,118,48475,37227,13815,5191,160,6.7,2,2,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2017,3,23,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,23,12,50,95959,383,1375,369,194,345,98,21583,15466,10913,3524,160,6.2,2,2,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2017,3,23,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,12,60,95906,90,1375,361,22,0,22,2082,0,2096,712,150,5.1,4,4,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2017,3,23,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,18.8,12.2,65,95984,0,415,338,0,0,0,0,0,0,0,160,5.1,0,0,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2017,3,23,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,12,72,95852,0,0,352,0,0,0,0,0,0,0,160,4.1,6,6,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2017,3,23,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,12,77,95834,0,0,351,0,0,0,0,0,0,0,160,4.1,7,7,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2017,3,23,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,12,82,95815,0,0,352,0,0,0,0,0,0,0,150,3.6,8,8,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2017,3,23,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,12,88,95797,0,0,316,0,0,0,0,0,0,0,150,3.6,0,0,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2017,3,24,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,11,88,95778,0,0,311,0,0,0,0,0,0,0,160,4.1,0,0,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,24,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.9,11.3,90,96027,0,0,311,0,0,0,0,0,0,0,160,4.1,0,0,7000,77777,9,999999999,29,0,0,88,0.2,0,0 +2017,3,24,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13,12,94,95778,0,0,330,0,0,0,0,0,0,0,160,4.1,5,5,7000,77777,9,999999999,31,0,0,88,0.2,0,0 +2017,3,24,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,12,88,95797,0,0,355,0,0,0,0,0,0,0,160,3.6,9,9,7000,183,9,999999999,31,0,0,88,0.2,0,0 +2017,3,24,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,12,88,95797,0,0,365,0,0,0,0,0,0,0,160,3.1,10,10,6000,183,9,999999999,31,0,0,88,0.2,0,0 +2017,3,24,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,12,88,95797,0,0,365,0,0,0,0,0,0,0,160,2.6,10,10,5000,244,0,919999999,31,0,0,88,0.2,0,0 +2017,3,24,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,12,88,95797,0,0,365,0,0,0,0,0,0,0,0,1,10,10,5000,274,0,919999999,31,0,0,88,0.2,0,0 +2017,3,24,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13.6,11.9,89,96097,185,852,363,20,0,20,1901,0,1915,772,280,2.1,10,10,5000,270,0,919999999,31,0,0,88,0.2,0,0 +2017,3,24,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,12,88,95797,471,1375,365,83,0,83,8305,0,8372,3436,250,2.6,10,10,6000,274,0,919999999,31,0,0,88,0.2,0,0 +2017,3,24,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,12,88,95797,723,1375,365,152,0,152,15460,0,15596,6677,240,2.1,10,10,8000,366,0,919999999,31,0,0,88,0.2,0,0 +2017,3,24,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,12,82,95815,925,1375,370,210,3,208,24548,210,24440,9588,148,1.5,10,10,8000,366,0,919999999,31,0,0,88,0.2,0,0 +2017,3,24,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,12,77,95834,1063,1375,375,250,8,244,29471,593,28892,11513,226,0.5,10,10,8000,457,0,919999999,31,0,0,88,0.2,0,0 +2017,3,24,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,12,77,95834,1128,1375,375,269,9,261,31806,678,31092,12380,22,1,10,10,8000,457,0,919999999,31,0,0,88,0.2,0,0 +2017,3,24,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16.2,11.7,75,96164,1114,1375,376,265,9,258,31338,664,30651,12211,200,0,10,10,8000,600,0,919999999,30,0,0,88,0.2,0,0 +2017,3,24,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17,12,72,95852,1024,1375,380,238,4,235,28042,307,27824,11045,170,2.6,10,10,8000,610,0,919999999,31,0,0,88,0.2,0,0 +2017,3,24,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18,12,68,95870,863,1375,385,192,2,191,22377,139,22341,8671,160,4.6,10,10,8000,762,0,919999999,31,0,0,88,0.2,0,0 +2017,3,24,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18,11,64,95870,642,1375,384,130,0,130,13095,0,13207,5569,160,3.1,10,10,8000,914,0,919999999,28,0,0,88,0.2,0,0 +2017,3,24,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18,11,64,95870,376,1375,374,98,3,97,10926,131,10879,3488,150,2.6,9,9,8000,914,0,919999999,28,0,0,88,0.2,0,0 +2017,3,24,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18,11,64,95870,84,1375,374,11,0,11,1033,0,1040,400,180,3.1,9,9,8000,914,0,919999999,28,0,0,88,0.2,0,0 +2017,3,24,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17.5,11.5,68,96036,0,384,372,0,0,0,0,0,0,0,210,2.1,9,9,8000,900,9,999999999,29,0,0,88,0.2,0,0 +2017,3,24,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17,11,68,95852,0,0,368,0,0,0,0,0,0,0,190,2.1,9,9,8000,914,9,999999999,28,0,0,88,0.2,0,0 +2017,3,24,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17,11,68,95852,0,0,368,0,0,0,0,0,0,0,230,1.5,9,9,8000,914,9,999999999,28,0,0,88,0.2,0,0 +2017,3,24,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17,11,68,95852,0,0,379,0,0,0,0,0,0,0,170,2.6,10,10,8000,914,9,999999999,28,0,0,88,0.2,0,0 +2017,3,24,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17,11,68,95852,0,0,379,0,0,0,0,0,0,0,180,3.1,10,10,8000,914,9,999999999,28,0,0,88,0.2,0,0 +2017,3,25,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17,12,72,95852,0,0,380,0,0,0,0,0,0,0,200,3.1,10,10,8000,914,9,999999999,31,0,0,88,0.2,0,0 +2017,3,25,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16.4,11.5,73,95893,0,0,376,0,0,0,0,0,0,0,170,3.6,10,10,8000,900,9,999999999,29,0,0,88,0.2,0,0 +2017,3,25,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16,11,72,95834,0,0,374,0,0,0,0,0,0,0,170,3.1,10,10,8000,914,9,999999999,28,0,0,88,0.2,0,0 +2017,3,25,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16,11,72,95834,0,0,363,0,0,0,0,0,0,0,170,3.1,9,9,8000,914,9,999999999,28,0,0,88,0.2,0,0 +2017,3,25,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16,11,72,95834,0,0,363,0,0,0,0,0,0,0,160,1.5,9,9,8000,914,9,999999999,28,0,0,88,0.2,0,0 +2017,3,25,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16,11,72,95834,0,0,363,0,0,0,0,0,0,0,160,1.5,9,9,8000,914,9,999999999,28,0,0,88,0.2,0,0 +2017,3,25,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16,12,77,95834,0,0,365,0,0,0,0,0,0,0,160,1,9,9,8000,914,9,999999999,31,0,0,88,0.2,0,0 +2017,3,25,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16.5,11.6,73,95942,182,834,367,31,0,31,3014,0,3035,1134,170,1.5,9,9,8000,810,9,999999999,30,0,0,88,0.2,0,0 +2017,3,25,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,11,64,95870,467,1374,374,135,14,131,15061,824,14590,4758,200,1.5,9,9,8000,823,9,999999999,28,0,0,88,0.2,0,0 +2017,3,25,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,11,60,95888,719,1374,379,248,38,228,27803,2991,25699,8875,252,0.5,9,9,7000,823,9,999999999,28,0,0,88,0.2,0,0 +2017,3,25,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,11,60,95888,920,1374,338,663,659,221,77197,48723,25902,10039,280,2.1,0,0,7000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,25,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,11,53,95924,1058,1374,347,790,862,126,97958,52604,15684,6589,195,1,0,0,7000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,25,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,11,50,95942,1122,1374,352,849,789,205,102450,54331,24842,10176,220,2.6,0,0,7000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,25,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,11.4,45,95989,1108,1374,361,836,788,200,100812,53835,24280,9961,160,4.1,0,0,8000,77777,9,999999999,29,0,0,88,0.2,0,0 +2017,3,25,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,25,12,44,95994,1017,1374,383,742,808,143,90562,50586,17560,7303,220,6.7,3,3,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2017,3,25,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,24,11,44,95977,856,1374,377,597,758,124,71907,46750,15028,6073,220,7.2,3,3,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,25,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,23,11,47,95959,635,1374,372,400,599,124,46453,36253,14387,5338,220,6.7,3,3,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,25,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,22,10,46,95942,369,1374,362,185,355,90,20702,15153,10056,3264,210,6.2,2,2,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,25,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,10,56,95888,77,1374,351,19,0,19,1809,0,1821,618,210,6.2,3,3,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,25,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17.7,9.1,57,96030,0,353,344,0,0,0,0,0,0,0,200,5.7,3,3,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,25,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,9,63,95834,0,0,341,0,0,0,0,0,0,0,150,3.1,5,5,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,25,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,9,63,95834,0,0,341,0,0,0,0,0,0,0,150,3.1,5,5,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,25,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,8,63,95815,0,0,335,0,0,0,0,0,0,0,150,3.1,5,5,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2017,3,25,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,14,8,67,95797,0,0,330,0,0,0,0,0,0,0,150,3.6,5,5,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2017,3,26,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,14,8,67,95797,0,0,330,0,0,0,0,0,0,0,150,3.1,5,5,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2017,3,26,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,13.8,7.7,67,96195,0,0,311,0,0,0,0,0,0,0,150,2.1,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2017,3,26,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,12,8,76,95759,0,0,328,0,0,0,0,0,0,0,280,1.5,7,7,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2017,3,26,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,7,76,95740,0,0,298,0,0,0,0,0,0,0,50,1.5,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2017,3,26,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,8,82,95740,0,0,299,0,0,0,0,0,0,0,200,1,0,0,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2017,3,26,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,7,76,95740,0,0,298,0,0,0,0,0,0,0,202,1,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2017,3,26,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,7,82,95721,0,0,294,0,0,0,0,0,0,0,14,1,0,0,6000,77777,9,999999999,19,0,0,88,0.2,0,0 +2017,3,26,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.4,7.7,78,96187,178,817,300,58,122,43,6487,0,4743,1428,280,1.5,0,0,7000,77777,9,999999999,20,0,0,88,0.2,0,0 +2017,3,26,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,8,67,95797,463,1373,312,260,468,103,29568,24804,11688,4003,10,2.1,0,0,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2017,3,26,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,9,59,95852,714,1373,326,478,681,124,56303,42537,14623,5623,330,1.5,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,26,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,10,56,95888,915,1373,336,660,807,122,80427,49900,14894,6116,230,1.5,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,26,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,21,10,49,95924,1052,1373,357,783,855,128,96976,52879,15899,6669,71,1.5,2,2,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,26,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,22,10,46,95942,1116,1373,362,844,847,155,103937,54493,19173,8008,150,4.1,2,2,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,26,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,23.7,9.7,41,96043,1102,1373,380,775,644,258,91660,48690,30709,12199,180,4.1,5,5,8000,77777,9,999999999,24,0,0,88,0.2,0,0 +2017,3,26,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,10,41,95977,1011,1373,367,748,834,134,91811,52397,16455,6854,170,3.6,1,1,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,26,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,9,38,95977,849,1373,359,601,785,115,72804,48342,13974,5657,180,5.7,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,26,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,10,41,95977,628,1373,367,401,620,117,46643,37092,13649,5080,160,4.6,1,1,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,26,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,9,38,95977,362,1373,359,181,353,88,20235,14867,9856,3191,180,5.7,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,26,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,22,7,38,95942,70,1373,347,18,0,18,1694,0,1705,576,210,4.1,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2017,3,26,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,21,8,43,95924,0,323,350,0,0,0,0,0,0,0,210,4.6,1,1,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2017,3,26,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,8,49,95888,0,0,345,0,0,0,0,0,0,0,160,2.6,2,2,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2017,3,26,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,8,52,95870,0,0,344,0,0,0,0,0,0,0,150,3.6,3,3,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2017,3,26,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,8,55,95852,0,0,339,0,0,0,0,0,0,0,150,2.6,3,3,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2017,3,26,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,8,55,95852,0,0,339,0,0,0,0,0,0,0,150,2.1,3,3,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2017,3,27,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,15,8,63,95815,0,0,335,0,0,0,0,0,0,0,276,1,5,5,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2017,3,27,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,13.8,7.6,66,95968,0,0,311,0,0,0,0,0,0,0,277,0,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2017,3,27,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,13,7,67,95778,0,0,325,0,0,0,0,0,0,0,358,0,5,5,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2017,3,27,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,12,7,71,95759,0,0,323,0,0,0,0,0,0,0,139,0.5,6,6,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2017,3,27,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,12,7,71,95759,0,0,323,0,0,0,0,0,0,0,180,1.5,6,6,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2017,3,27,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,12,7,71,95759,0,0,323,0,0,0,0,0,0,0,54,0.5,6,6,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2017,3,27,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,6,81,95702,0,0,289,0,0,0,0,0,0,0,141,1,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2017,3,27,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,12.1,7.6,74,96097,174,800,303,56,116,42,6259,0,4648,1397,114,0,0,0,7000,77777,9,999999999,20,0,0,88,0.2,0,0 +2017,3,27,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,8,63,95815,458,1372,316,257,464,102,29174,24426,11616,3970,340,2.1,0,0,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2017,3,27,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,18,9,56,95870,710,1372,345,465,643,133,54475,41113,15597,5942,351,1,3,3,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,27,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,21,9,46,95924,910,1372,356,655,802,123,79784,50203,15037,6162,13,1,2,2,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,27,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,23,9,41,95959,1047,1372,361,783,783,185,94244,53954,22440,9193,117,1.5,1,1,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,27,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,9,36,95994,1110,1372,364,842,787,205,101478,55243,24787,10139,210,2.1,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,27,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,26.5,7.4,30,95940,1095,1372,369,830,786,202,100060,55808,24507,10016,210,2.6,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2017,3,27,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,7,28,96029,1004,1372,371,746,779,175,89714,54026,21205,8654,220,3.1,0,0,8000,77777,9,999999999,18,0,0,88,0.2,0,0 +2017,3,27,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,8,28,96046,842,1372,377,595,783,115,72155,48614,13951,5636,170,3.6,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2017,3,27,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,8,30,96029,621,1372,372,396,616,117,46090,37496,13674,5066,210,5.7,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2017,3,27,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,10,39,95994,355,1372,372,175,342,87,19598,13942,9725,3137,230,6.2,1,1,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,27,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,23,10,44,95959,63,1372,362,16,0,16,1522,0,1532,522,220,5.1,1,1,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,27,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,21.3,9.6,47,95877,0,292,347,0,0,0,0,0,0,0,200,4.6,0,0,8000,77777,9,999999999,24,0,0,88,0.2,0,0 +2017,3,27,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,10,56,95888,0,0,351,0,0,0,0,0,0,0,160,4.1,3,3,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,27,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,9,56,95870,0,0,345,0,0,0,0,0,0,0,150,3.1,3,3,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,27,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,9,59,95852,0,0,343,0,0,0,0,0,0,0,150,2.6,4,4,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,27,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,9,63,95834,0,0,341,0,0,0,0,0,0,0,160,2.1,5,5,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,28,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,15,9,67,95815,0,0,336,0,0,0,0,0,0,0,20,1,5,5,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,28,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,14.1,8.5,69,95898,0,0,313,0,0,0,0,0,0,0,270,1,0,0,8000,77777,9,999999999,22,0,0,88,0.2,0,0 +2017,3,28,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,13,8,72,95778,0,0,329,0,0,0,0,0,0,0,61,1,6,6,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2017,3,28,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,12,8,76,95759,0,0,328,0,0,0,0,0,0,0,310,1,7,7,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2017,3,28,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,8,72,95778,0,0,308,0,0,0,0,0,0,0,50,0.5,0,0,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2017,3,28,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,7,76,95740,0,0,298,0,0,0,0,0,0,0,209,1,0,0,6000,77777,9,999999999,19,0,0,88,0.2,0,0 +2017,3,28,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,7,82,95721,0,0,294,0,0,0,0,0,0,0,2,0,0,0,6000,77777,9,999999999,19,0,0,88,0.2,0,0 +2017,3,28,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,11.2,7.6,78,95985,170,782,299,55,110,41,6052,0,4549,1366,102,0,0,0,5000,77777,9,999999999,20,0,0,88,0.2,0,0 +2017,3,28,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,9,67,95815,454,1371,317,254,459,101,28752,23779,11547,3940,117,1,0,0,7000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,28,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,18,9,56,95870,705,1371,345,461,641,132,54031,40905,15495,5896,233,0.5,3,3,7000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,28,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,21,10,49,95924,905,1371,357,648,795,124,78815,49350,15074,6172,210,1.5,2,2,7000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,28,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,10,41,95977,1041,1371,367,777,782,183,93505,53270,22126,9073,140,5.1,1,1,7000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,28,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,10,39,95994,1104,1371,372,835,786,202,100664,54552,24434,10009,160,6.2,1,1,7000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,28,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,26.3,9.3,34,95889,1089,1371,370,822,785,198,99074,54671,24006,9833,170,5.7,0,0,7000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,28,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,10,34,96029,998,1371,375,736,851,117,91111,51874,14546,6079,170,5.7,0,0,7000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,28,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,10,34,96029,836,1371,375,588,780,112,71181,47298,13648,5515,220,5.1,0,0,7000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,28,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,10,37,96011,614,1371,370,389,612,115,45236,36242,13417,4970,230,6.7,0,0,7000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,28,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,10,41,95977,349,1371,367,171,335,85,19044,13323,9563,3074,210,5.1,1,1,7000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,28,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,22,11,50,95942,57,1371,363,14,0,14,1356,0,1365,470,200,4.6,2,2,7000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,28,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,19.7,10.2,54,95972,0,261,340,0,0,0,0,0,0,0,150,4.1,0,0,7000,77777,9,999999999,26,0,0,88,0.2,0,0 +2017,3,28,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,10,59,95870,0,0,349,0,0,0,0,0,0,0,160,3.6,4,4,7000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,28,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,10,63,95852,0,0,347,0,0,0,0,0,0,0,160,4.1,5,5,7000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,28,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,10,63,95852,0,0,347,0,0,0,0,0,0,0,160,2.1,5,5,7000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,28,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,10,68,95834,0,0,342,0,0,0,0,0,0,0,160,3.6,5,5,7000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,29,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,10,72,95815,0,0,340,0,0,0,0,0,0,0,150,3.1,6,6,7000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,29,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,14.7,9.7,72,96051,0,0,317,0,0,0,0,0,0,0,150,2.6,0,0,7000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,29,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,14,10,77,95797,0,0,339,0,0,0,0,0,0,0,170,3.1,7,7,7000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,29,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,13,10,82,95778,0,0,340,0,0,0,0,0,0,0,220,1.5,8,8,7000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,29,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,9,82,95759,0,0,304,0,0,0,0,0,0,0,323,0.5,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,29,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,12,10,88,95759,0,0,319,0,0,0,0,0,0,0,114,1,3,3,8000,77777,9,999999999,26,0,0,88,0.2,0,0 +2017,3,29,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12,10,88,95759,0,0,323,0,0,0,0,0,0,0,160,2.1,5,5,8000,77777,9,999999999,26,0,0,88,0.2,0,0 +2017,3,29,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.7,9.7,82,96127,166,765,326,49,68,41,5400,0,4502,1347,290,2.1,5,5,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,29,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15,10,72,95815,450,1371,337,232,361,114,26073,19579,12833,4264,190,2.1,5,5,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2017,3,29,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,18,11,64,95870,700,1371,353,432,563,144,50152,36430,16817,6320,140,2.6,5,5,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2017,3,29,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19,10,56,95888,900,1371,356,602,618,196,70554,44184,23069,9045,190,3.6,5,5,8000,6096,9,999999999,25,0,0,88,0.2,0,0 +2017,3,29,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,10,53,95906,1036,1371,356,763,817,146,93423,52295,17930,7465,170,4.1,3,3,8000,6096,9,999999999,25,0,0,88,0.2,0,0 +2017,3,29,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,21,10,49,95924,1098,1371,357,826,840,153,101574,53931,18874,7885,180,4.6,2,2,8000,6096,9,999999999,25,0,0,88,0.2,0,0 +2017,3,29,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,21.9,9.6,45,96163,1083,1371,370,759,674,227,90456,48917,27170,10961,170,3.6,5,5,8000,6096,9,999999999,24,0,0,88,0.2,0,0 +2017,3,29,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,23,10,44,95959,991,1371,376,680,556,277,78632,44448,32296,12317,160,4.1,5,5,8000,6096,9,999999999,25,0,0,88,0.2,0,0 +2017,3,29,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,23,9,41,95959,829,1371,397,301,54,268,33997,4469,30498,10827,200,5.1,9,9,8000,1829,9,999999999,23,0,0,88,0.2,0,0 +2017,3,29,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,22,8,41,95942,607,1371,369,358,402,179,40107,29206,20214,6849,210,6.2,5,5,8000,1829,9,999999999,21,0,0,88,0.2,0,0 +2017,3,29,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,21,7,40,95924,342,1371,363,155,261,90,17202,11039,9996,3147,220,4.6,5,5,8000,1829,9,999999999,19,0,0,88,0.2,0,0 +2017,3,29,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,19,7,46,95888,50,1371,353,12,0,12,1125,0,1133,398,220,5.1,5,5,8000,1829,9,999999999,19,0,0,88,0.2,0,0 +2017,3,29,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,18.2,7.3,49,96210,0,230,349,0,0,0,0,0,0,0,210,5.1,5,5,8000,1829,9,999999999,19,0,0,88,0.2,0,0 +2017,3,29,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,7,49,95870,0,0,339,0,0,0,0,0,0,0,130,2.6,2,2,8000,1829,9,999999999,19,0,0,88,0.2,0,0 +2017,3,29,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,7,52,95852,0,0,338,0,0,0,0,0,0,0,160,3.1,3,3,8000,1829,9,999999999,19,0,0,88,0.2,0,0 +2017,3,29,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,7,59,95815,0,0,331,0,0,0,0,0,0,0,140,2.1,4,4,8000,1829,9,999999999,19,0,0,88,0.2,0,0 +2017,3,29,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,14,7,63,95797,0,0,329,0,0,0,0,0,0,0,170,2.1,5,5,8000,1829,9,999999999,19,0,0,88,0.2,0,0 +2017,3,30,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,13,7,67,95778,0,0,325,0,0,0,0,0,0,0,309,1,5,5,8000,1829,9,999999999,19,0,0,88,0.2,0,0 +2017,3,30,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,12.2,6.7,69,96080,0,0,303,0,0,0,0,0,0,0,223,0,0,0,8000,1829,9,999999999,18,0,0,88,0.2,0,0 +2017,3,30,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,11,6,71,95740,0,0,317,0,0,0,0,0,0,0,310,1,6,6,8000,1829,9,999999999,17,0,0,88,0.2,0,0 +2017,3,30,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,10,6,76,95721,0,0,317,0,0,0,0,0,0,0,105,0,7,7,8000,1829,9,999999999,17,0,0,88,0.2,0,0 +2017,3,30,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,11,7,76,95740,0,0,322,0,0,0,0,0,0,0,155,1,7,7,8000,1829,9,999999999,19,0,0,88,0.2,0,0 +2017,3,30,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,10,7,82,95721,0,0,323,0,0,0,0,0,0,0,357,0.5,8,8,8000,1829,9,999999999,19,0,0,88,0.2,0,0 +2017,3,30,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,5,81,95683,0,0,284,0,0,0,0,0,0,0,310,1.5,0,0,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2017,3,30,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,9.1,5.7,79,96039,162,748,289,51,99,39,5646,0,4354,1303,109,0,0,0,5000,77777,9,999999999,17,0,0,88,0.2,0,0 +2017,3,30,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,8,72,95778,446,1370,308,248,454,100,28071,23387,11346,3858,20,1.5,0,0,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2017,3,30,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,16,8,59,95834,696,1370,337,450,615,137,52415,40090,16060,6055,100,1,4,4,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2017,3,30,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,19,8,49,95888,895,1370,345,641,793,123,77957,50102,15026,6134,30,1,2,2,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2017,3,30,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,21,8,43,95924,1030,1370,350,769,780,182,92545,54036,22013,9007,200,2.6,1,1,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2017,3,30,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,22,9,43,95942,1092,1370,356,825,785,199,99445,54796,24128,9881,170,2.6,1,1,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,30,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,24.6,7.6,34,95859,1076,1370,360,813,784,197,97910,55270,23832,9748,210,4.6,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2017,3,30,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,8,34,95994,984,1370,362,727,831,129,89180,52838,15925,6610,220,5.1,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2017,3,30,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,25,7,32,95994,822,1370,377,571,749,122,68682,47584,14694,5879,220,4.6,3,3,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2017,3,30,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,7,32,95994,600,1370,361,379,605,114,44067,36554,13314,4896,220,5.1,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2017,3,30,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,23,8,38,95959,335,1370,353,161,323,82,18009,12502,9225,2944,220,5.7,0,0,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2017,3,30,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,21,8,43,95924,43,1370,350,11,0,11,1049,0,1056,370,220,5.1,1,1,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2017,3,30,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,19.5,7.4,45,95779,0,199,336,0,0,0,0,0,0,0,210,5.1,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2017,3,30,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,7,46,95888,0,0,344,0,0,0,0,0,0,0,190,4.6,2,2,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2017,3,30,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,7,52,95852,0,0,338,0,0,0,0,0,0,0,150,2.6,3,3,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2017,3,30,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,7,55,95834,0,0,333,0,0,0,0,0,0,0,150,2.1,3,3,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2017,3,30,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,6,51,95834,0,0,332,0,0,0,0,0,0,0,150,2.6,3,3,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2017,3,31,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,6,55,95815,0,0,328,0,0,0,0,0,0,0,160,2.1,3,3,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2017,3,31,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,14.3,6.8,61,95873,0,0,312,0,0,0,0,0,0,0,160,2.6,0,0,8000,77777,9,999999999,18,0,0,88,0.2,0,0 +2017,3,31,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,13,7,67,95778,0,0,325,0,0,0,0,0,0,0,269,0.5,5,5,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2017,3,31,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,12,7,71,95759,0,0,323,0,0,0,0,0,0,0,140,0.5,6,6,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2017,3,31,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,12,6,67,95759,0,0,319,0,0,0,0,0,0,0,153,0.5,5,5,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2017,3,31,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,10,6,76,95721,0,0,317,0,0,0,0,0,0,0,87,1,7,7,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2017,3,31,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,6,81,95702,0,0,289,0,0,0,0,0,0,0,330,1,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2017,3,31,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,11.2,6.1,71,96004,159,731,298,49,92,38,5425,0,4257,1272,138,0,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2017,3,31,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,7,63,95797,442,1369,311,245,452,99,27744,23300,11243,3816,188,0,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2017,3,31,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,7,52,95852,691,1369,324,460,667,123,54027,42186,14506,5526,61,1,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2017,3,31,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,19,8,49,95888,890,1369,345,637,791,123,77368,49920,14948,6097,154,2.1,2,2,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2017,3,31,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,22,8,41,95942,1024,1369,355,764,779,181,91949,53911,21854,8939,200,2.6,1,1,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2017,3,31,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,23,8,38,95959,1086,1369,353,821,784,199,98960,55221,24126,9870,132,2.1,0,0,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2017,3,31,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,25.3,7.8,33,95966,1070,1369,364,807,783,195,97161,55011,23576,9646,150,3.1,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2017,3,31,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,8,32,96011,977,1369,367,721,850,113,89221,52453,14079,5867,180,4.6,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2017,3,31,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,8,32,96011,815,1369,367,571,772,112,69073,47564,13534,5435,160,4.1,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2017,3,31,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,9,36,95994,593,1369,364,372,597,113,43159,35278,13180,4839,210,5.7,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,31,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,23,9,41,95959,328,1369,361,156,312,81,17395,11610,9086,2889,220,5.7,1,1,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2017,3,31,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18.2,8,51,95923,37,1369,350,9,0,9,886,0,892,317,175,4.8,2,2,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2017,3,31,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17.2,8,54,95905,0,169,334,0,0,0,0,0,0,0,162,4.2,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2017,3,31,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,7.8,58,95834,0,0,339,0,0,0,0,0,0,0,157,3.2,3,3,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2017,3,31,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15.2,8.5,64,95820,0,0,339,0,0,0,0,0,0,0,160,3.2,3,3,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2017,3,31,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,14.4,9.2,71,95896,0,0,337,0,0,0,0,0,0,0,162,2.8,4,4,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2017,3,31,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,13.9,9.7,76,95887,0,0,329,0,0,0,0,0,0,0,167,2.3,5,5,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,1,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13.9,10.4,79,95887,0,0,364,0,0,0,0,0,0,0,187,2.2,10,10,8000,600,9,999999999,28,0,0,88,0.2,0,0 +2013,4,1,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13.9,10.2,78,95932,0,0,362,0,0,0,0,0,0,0,153,1.5,10,10,8000,450,9,999999999,27,0,0,88,0.2,0,0 +2013,4,1,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13.9,10,77,95842,0,0,362,0,0,0,0,0,0,0,151,1.2,10,10,8000,450,9,999999999,25,0,0,88,0.2,0,0 +2013,4,1,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13.9,10,77,95842,0,0,362,0,0,0,0,0,0,0,143,1.6,10,10,8000,450,9,999999999,25,0,0,88,0.2,0,0 +2013,4,1,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13.9,10.1,78,95887,0,0,361,0,0,0,0,0,0,0,128,2.2,10,10,8000,450,9,999999999,26,0,0,88,0.2,0,0 +2013,4,1,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13.9,10.1,77,95842,0,0,362,0,0,0,0,0,0,0,175,2.8,10,10,8000,450,9,999999999,25,0,0,88,0.2,0,0 +2013,4,1,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,10,77,95797,0,0,362,0,0,0,0,0,0,0,150,3.1,10,10,8000,600,9,999999999,25,0,0,88,0.2,0,0 +2013,4,1,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13.7,10.2,79,95976,155,714,361,15,0,15,1433,0,1443,582,190,3.6,10,10,8000,600,9,999999999,26,0,0,88,0.2,0,0 +2013,4,1,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,10,77,95797,437,1368,362,76,0,76,7525,0,7585,3093,210,3.1,10,10,8000,750,9,999999999,25,0,0,88,0.2,0,0 +2013,4,1,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,10,77,95797,686,1368,362,143,0,143,14495,0,14620,6212,180,2.6,10,10,8000,750,9,999999999,25,0,0,88,0.2,0,0 +2013,4,1,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14.5,9.9,74,96057,885,1368,365,199,1,199,23295,58,23350,9087,160,3.6,10,10,8000,750,9,999999999,25,0,0,88,0.2,0,0 +2013,4,1,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,10,72,95815,1019,1368,367,238,4,235,28042,287,27853,11043,160,3.6,10,10,8000,900,9,999999999,25,0,0,88,0.2,0,0 +2013,4,1,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17,10,63,95852,1080,1368,367,420,28,398,47836,2545,45624,16333,150,3.1,9,9,8000,900,9,999999999,25,0,0,88,0.2,0,0 +2013,4,1,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,18.5,8.8,53,96045,1063,1368,373,413,66,361,47309,5817,41699,15280,62,3.1,9,9,8000,1200,9,999999999,22,0,0,88,0.2,0,0 +2013,4,1,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19,9,52,95888,971,1368,355,664,557,268,76840,44511,31229,11907,180,4.1,5,5,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,4,1,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19,9,52,95888,808,1368,355,525,599,171,61336,41749,20075,7736,190,6.7,5,5,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,4,1,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18.7,8.7,52,96096,586,1368,353,341,464,142,38801,30090,16253,5730,170,7.2,5,5,8000,77777,9,999999999,22,0,0,88,0.2,0,0 +2013,4,1,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18,8,52,95870,321,1368,349,141,241,85,15652,9223,9419,2940,180,7.2,5,5,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,4,1,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17,9,59,95852,30,1368,366,4,0,4,376,0,378,149,220,5.1,9,9,8000,1500,9,999999999,23,0,0,88,0.2,0,0 +2013,4,1,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15.5,8.3,62,96293,0,138,358,0,0,0,0,0,0,0,220,5.1,9,9,8000,1500,9,999999999,21,0,0,88,0.2,0,0 +2013,4,1,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,8,63,95815,0,0,330,0,0,0,0,0,0,0,210,2.6,3,3,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,4,1,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14,8,67,95797,0,0,330,0,0,0,0,0,0,0,98,2.1,5,5,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,4,1,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,13.3,8,70,96393,0,0,315,0,0,0,0,0,0,0,160,2.1,1,1,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,4,1,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,8,76,95759,0,0,328,0,0,0,0,0,0,0,160,2.1,7,7,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,4,2,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,8,76,95759,0,0,316,0,0,0,0,0,0,0,140,2.6,3,3,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,4,2,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12.5,7.9,74,96407,0,0,343,0,0,0,0,0,0,0,140,2.6,9,9,9900,750,9,999999999,21,0,0,88,0.2,0,0 +2013,4,2,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,8,72,95778,0,0,355,0,0,0,0,0,0,0,180,1,10,10,9900,750,9,999999999,21,0,0,88,0.2,0,0 +2013,4,2,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,7,71,95759,0,0,349,0,0,0,0,0,0,0,170,2.1,10,10,9900,900,9,999999999,19,0,0,88,0.2,0,0 +2013,4,2,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12.1,7.4,73,96380,0,0,340,0,0,0,0,0,0,0,160,1.5,9,9,9900,750,9,999999999,20,0,0,88,0.2,0,0 +2013,4,2,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,8,76,95759,0,0,340,0,0,0,0,0,0,0,230,1.5,9,9,9900,750,9,999999999,21,0,0,88,0.2,0,0 +2013,4,2,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,8,76,95759,0,0,350,0,0,0,0,0,0,0,220,1.5,10,10,9900,750,9,999999999,21,0,0,88,0.2,0,0 +2013,4,2,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,12.4,7.7,73,96358,151,697,342,23,0,23,2265,0,2281,860,40,1,9,9,9900,750,9,999999999,20,0,0,88,0.2,0,0 +2013,4,2,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,13,8,72,95778,433,1367,329,208,229,135,22902,13822,14970,4663,338,1,6,6,9900,750,9,999999999,21,0,0,88,0.2,0,0 +2013,4,2,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,16,8,59,95834,682,1367,337,438,563,157,50383,38592,18193,6675,159,1,4,4,9900,750,9,999999999,21,0,0,88,0.2,0,0 +2013,4,2,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,17,7.7,54,96330,879,1367,339,623,769,128,75306,49221,15532,6303,288,1.5,3,3,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2013,4,2,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,19,7,46,95888,1013,1367,344,754,777,178,90739,53990,21475,8777,39,1.5,2,2,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,2,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,7,43,95906,1074,1367,344,811,782,197,97710,55388,23806,9735,220,2.6,1,1,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,2,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,22,5.6,34,96126,1057,1367,345,797,781,194,96029,55741,23451,9575,200,3.1,0,0,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2013,4,2,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,3,27,95959,964,1367,347,714,773,169,85789,54619,20381,8265,160,4.6,0,0,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,4,2,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,4,29,95959,801,1367,348,562,765,114,67854,48790,13850,5524,160,5.7,0,0,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,4,2,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,23.7,3.9,28,96033,579,1367,351,363,585,116,42065,36055,13427,4870,180,4.1,0,0,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,4,2,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,3,27,95959,314,1367,347,148,306,78,16523,11420,8708,2748,170,4.6,0,0,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,4,2,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,6,38,95924,23,1367,341,6,0,6,571,0,575,212,220,3.6,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,4,2,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,19.7,7,44,96057,0,108,336,0,0,0,0,0,0,0,210,4.1,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,2,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18,7,49,95870,0,0,339,0,0,0,0,0,0,0,160,3.6,2,2,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,2,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,8,55,95852,0,0,339,0,0,0,0,0,0,0,140,1.5,3,3,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,4,2,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15.9,7.4,57,96073,0,0,326,0,0,0,0,0,0,0,200,1.5,1,1,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2013,4,2,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14,7,63,95797,0,0,329,0,0,0,0,0,0,0,121,1,5,5,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,3,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14,5,55,95797,0,0,322,0,0,0,0,0,0,0,253,1,3,3,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,4,3,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12.9,6.1,63,95970,0,0,326,0,0,0,0,0,0,0,50,1.5,6,6,9900,6000,9,999999999,17,0,0,88,0.2,0,0 +2013,4,3,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,13,5,58,95778,0,0,320,0,0,0,0,0,0,0,38,1,4,4,9900,6000,9,999999999,15,0,0,88,0.2,0,0 +2013,4,3,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,11,5,66,95740,0,0,314,0,0,0,0,0,0,0,194,1,5,5,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,4,3,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,11.3,6,70,95855,0,0,316,0,0,0,0,0,0,0,84,1,5,5,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,4,3,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,5,66,95740,0,0,314,0,0,0,0,0,0,0,30,2.6,5,5,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,4,3,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,6,67,95759,0,0,319,0,0,0,0,0,0,0,140,1.5,5,5,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,4,3,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,11.4,5.2,66,95923,147,680,327,29,0,29,2847,0,2867,1023,180,2.6,8,8,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2013,4,3,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,15,8,63,95815,429,1367,335,219,281,130,24148,16579,14449,4534,6,1,5,5,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,4,3,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,7,55,95834,677,1367,333,441,631,128,51541,40441,15062,5676,310,1.5,3,3,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,3,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,20.1,7.1,43,95913,874,1367,356,606,723,144,72635,48013,17293,6949,101,1,4,4,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,3,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,22,6,35,95942,1007,1367,346,751,836,135,92314,54368,16656,6924,190,1.5,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,4,3,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,24,4,27,95977,1067,1367,353,810,781,199,97508,56643,24124,9833,315,1,0,0,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,4,3,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,25.3,3.8,25,95729,1050,1367,374,784,855,126,97439,55331,15766,6602,170,3.1,3,3,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,4,3,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,5,26,96011,957,1367,364,706,772,165,84834,53635,19925,8089,160,2.6,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,4,3,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,5,26,96011,794,1367,364,556,713,141,65878,48016,16792,6575,210,5.7,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,4,3,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,24.6,7.3,33,95651,572,1367,378,344,500,135,39229,31927,15425,5443,210,7.2,4,4,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,3,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,7,36,95959,307,1367,352,142,292,77,15868,10128,8576,2697,210,5.1,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,3,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,22,5,33,95942,17,1367,345,4,0,4,413,0,416,158,200,2.6,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,4,3,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,19.5,8,47,95779,0,78,336,0,0,0,0,0,0,0,160,3.6,0,0,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,4,3,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,9,59,95852,0,0,343,0,0,0,0,0,0,0,170,4.1,4,4,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,4,3,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,9,67,95815,0,0,336,0,0,0,0,0,0,0,170,4.6,5,5,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,4,3,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12.9,9.1,78,95932,0,0,322,0,0,0,0,0,0,0,160,5.7,3,3,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,4,3,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,10,88,95759,0,0,343,0,0,0,0,0,0,0,150,3.6,9,9,9900,77777,9,999999999,26,0,0,88,0.2,0,0 +2013,4,4,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,9,82,95759,0,0,322,0,0,0,0,0,0,0,150,4.6,5,5,7000,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,4,4,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.9,9.3,90,96055,0,0,318,0,0,0,0,0,0,0,160,2.6,5,5,5000,77777,9,999999999,24,0,0,88,0.2,0,0 +2013,4,4,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,9,87,95740,0,0,337,0,0,0,0,0,0,0,211,1,9,9,4000,90,9,999999999,23,0,0,88,0.2,0,0 +2013,4,4,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,10,9,93,95721,0,0,341,0,0,0,0,0,0,0,51,0.5,10,10,350,30,0,999999999,23,0,0,88,0.2,0,0 +2013,4,4,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,9.4,8.5,94,96045,0,0,338,0,0,0,0,0,0,0,180,2.6,10,10,300,30,0,999999999,22,0,0,88,0.2,0,0 +2013,4,4,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,10,94,95740,0,0,347,0,0,0,0,0,0,0,170,4.1,10,10,4000,60,0,999999999,26,0,0,88,0.2,0,0 +2013,4,4,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,10,94,95740,0,0,338,0,0,0,0,0,0,0,170,3.6,9,9,4000,120,0,999999999,26,0,0,88,0.2,0,0 +2013,4,4,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11.7,9.4,86,96212,144,663,350,13,0,13,1267,0,1276,516,177,1,10,10,4000,180,0,999999999,24,0,0,88,0.2,0,0 +2013,4,4,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,9,82,95759,425,1366,351,73,0,73,7231,0,7288,2965,277,1,10,10,4000,210,0,999999999,23,0,0,88,0.2,0,0 +2013,4,4,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,9,77,95778,672,1366,356,139,0,139,14126,0,14248,6036,310,2.1,10,10,4000,240,0,999999999,23,0,0,88,0.2,0,0 +2013,4,4,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14.1,8.9,71,96267,869,1366,352,320,55,285,36302,4670,32506,11637,200,1.5,9,9,5000,360,0,999999999,23,0,0,88,0.2,0,0 +2013,4,4,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,10,68,95834,1002,1366,323,741,683,241,86918,51398,28361,11158,170,4.1,0,0,8000,77777,0,999999999,25,0,0,88,0.2,0,0 +2013,4,4,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,9,56,95870,1061,1366,331,798,780,191,96088,54104,23132,9479,180,4.6,0,0,8000,77777,0,999999999,23,0,0,88,0.2,0,0 +2013,4,4,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19.6,9.6,52,96169,1044,1366,339,781,779,185,94010,53412,22409,9187,180,5.7,0,0,8000,77777,0,999999999,24,0,0,88,0.2,0,0 +2013,4,4,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,9,46,95924,950,1366,356,694,836,112,85624,51062,13890,5768,160,5.7,2,2,9900,77777,0,999999999,23,0,0,88,0.2,0,0 +2013,4,4,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,9,46,95924,787,1366,356,545,756,109,65693,45835,13194,5266,160,6.2,2,2,9900,77777,0,999999999,23,0,0,88,0.2,0,0 +2013,4,4,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,20.5,9.4,49,96100,566,1366,343,349,513,136,39627,32321,15526,5449,160,5.7,0,0,9900,77777,0,999999999,24,0,0,88,0.2,0,0 +2013,4,4,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,10,53,95906,301,1366,356,136,269,76,15046,8667,8512,2662,160,5.1,3,3,9900,77777,0,999999999,25,0,0,88,0.2,0,0 +2013,4,4,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18,10,59,95870,10,1366,349,3,0,3,244,0,246,97,160,4.1,4,4,9900,77777,0,999999999,25,0,0,88,0.2,0,0 +2013,4,4,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,16.5,9.6,64,96169,0,48,325,0,0,0,0,0,0,0,170,3.6,0,0,9900,77777,9,999999999,24,0,0,88,0.2,0,0 +2013,4,4,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,10,68,95834,0,0,342,0,0,0,0,0,0,0,160,3.6,5,5,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2013,4,4,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,9,67,95815,0,0,317,0,0,0,0,0,0,0,160,4.1,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,4,4,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13.3,8.5,73,96233,0,0,309,0,0,0,0,0,0,0,160,3.6,0,0,8000,77777,9,999999999,22,0,0,88,0.2,0,0 +2013,4,4,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,8,76,95759,0,0,303,0,0,0,0,0,0,0,150,2.6,0,0,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,4,5,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,8,82,95740,0,0,299,0,0,0,0,0,0,0,160,2.1,0,0,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,4,5,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11.4,7.9,79,96187,0,0,301,0,0,0,0,0,0,0,180,2.6,0,0,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,4,5,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,7,82,95721,0,0,294,0,0,0,0,0,0,0,270,1.5,0,0,6000,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,5,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,5,81,95683,0,0,284,0,0,0,0,0,0,0,30,1.5,0,0,6000,77777,9,999999999,16,0,0,88,0.2,0,0 +2013,4,5,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8.1,6.3,88,96067,0,0,302,0,0,0,0,0,0,0,161,0,5,5,200,77777,0,999999999,18,0,0,88,0.2,0,0 +2013,4,5,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,5,81,95683,0,0,301,0,0,0,0,0,0,0,36,1,5,5,4000,77777,0,999999999,16,0,0,88,0.2,0,0 +2013,4,5,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,5,87,95663,0,0,296,0,0,0,0,0,0,0,241,1,5,5,3000,77777,0,999999999,16,0,0,88,0.2,0,0 +2013,4,5,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6.1,4.7,91,96179,140,646,292,37,14,36,4114,0,3969,1162,10,1.5,5,5,300,77777,0,999999999,15,0,0,88,0.2,0,0 +2013,4,5,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,9.6,6.3,80,95979,420,1365,315,173,131,132,19036,7883,14642,4524,309,1,7,7,1900,77777,9,999999999,18,0,0,88,0.2,0,0 +2013,4,5,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,8,72,95778,667,1365,345,227,80,188,25651,5885,21347,7494,135,0.5,9,9,3500,5400,0,999999999,21,0,0,88,0.2,0,0 +2013,4,5,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,9.6,62,96235,864,1365,346,572,561,218,66244,42136,25311,9627,150,3.6,5,5,5000,77777,0,999999999,24,0,0,88,0.2,0,0 +2013,4,5,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,9,56,95870,996,1365,371,381,58,338,43445,5084,38847,14142,160,7.2,9,9,8000,5400,0,999999999,23,0,0,88,0.2,0,0 +2013,4,5,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,9,49,95906,1055,1365,381,409,21,393,46535,1934,44981,16025,170,7.2,9,9,8000,5400,0,999999999,23,0,0,88,0.2,0,0 +2013,4,5,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,21.1,7.2,41,96177,1037,1365,385,402,59,356,45966,5296,41064,14966,150,5.7,9,9,8000,7500,0,999999999,19,0,0,88,0.2,0,0 +2013,4,5,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,21.5,6.1,37,96059,943,1365,344,692,477,363,78027,44625,41134,14220,328,5.7,0,0,8000,7500,9,999999999,17,0,0,88,0.2,0,0 +2013,4,5,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,22,5,33,95942,780,1365,398,171,25,157,20075,1764,18455,7105,200,5.7,10,10,8000,5400,0,999999999,15,0,0,88,0.2,0,0 +2013,4,5,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,20.2,4.8,36,96170,559,1365,388,109,0,109,10963,0,11053,4574,160,5.7,10,10,8000,5400,0,999999999,15,0,0,88,0.2,0,0 +2013,4,5,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19,7,46,95888,294,1365,384,42,0,42,4126,0,4157,1666,190,4.1,10,10,8000,5400,0,999999999,19,0,0,88,0.2,0,0 +2013,4,5,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17,10,63,95852,2,1365,378,0,0,0,30,0,30,13,210,7.2,10,10,8000,4800,0,999999999,25,0,0,88,0.2,0,0 +2013,4,5,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16.5,9,61,96349,0,18,364,0,0,0,0,0,0,0,160,5.1,9,9,8000,4800,9,999999999,23,0,0,88,0.2,0,0 +2013,4,5,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16,10,68,95834,0,0,342,0,0,0,0,0,0,0,150,3.6,5,5,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2013,4,5,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,10,72,95815,0,0,332,0,0,0,0,0,0,0,140,3.1,3,3,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2013,4,5,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,14.1,9.5,74,96512,0,0,314,0,0,0,0,0,0,0,190,2.1,0,0,8000,77777,9,999999999,24,0,0,88,0.2,0,0 +2013,4,5,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,9,77,95778,0,0,334,0,0,0,0,0,0,0,20,1.5,7,7,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,4,6,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,8,82,95740,0,0,299,0,0,0,0,0,0,0,360,2.6,0,0,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,4,6,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11.8,8.8,82,96384,0,0,303,0,0,0,0,0,0,0,120,1.5,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,4,6,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,8,82,95740,0,0,299,0,0,0,0,0,0,0,160,3.1,0,0,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,4,6,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,8,82,95740,0,0,299,0,0,0,0,0,0,0,240,1,0,0,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,4,6,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9.4,6.9,84,96300,0,0,291,0,0,0,0,0,0,0,200,1,0,0,6000,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,6,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,8,93,95702,0,0,291,0,0,0,0,0,0,0,210,1,0,0,6000,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,4,6,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,6,87,95683,0,0,285,0,0,0,0,0,0,0,111,1,0,0,5000,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,4,6,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9.1,7.1,87,96417,136,629,290,38,53,33,4227,0,3657,1086,244,0.5,0,0,5000,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,6,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,9,82,95759,416,1364,304,225,425,95,25390,20481,10771,3614,350,1.5,0,0,5000,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,4,6,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,9,72,95797,663,1364,313,434,652,118,50932,39793,13843,5241,30,3.1,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,4,6,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,16.6,9,61,96341,858,1364,324,611,789,114,74270,48557,13948,5670,177,1.5,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,4,6,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,20,9,49,95906,990,1364,351,729,842,118,90150,51890,14674,6125,35,1.5,2,2,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,4,6,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,21,8,43,95924,1049,1364,350,787,779,189,94844,54306,22835,9348,169,1.5,1,1,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,4,6,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,23.2,4.4,29,96110,1031,1364,349,775,777,188,93302,55620,22745,9272,170,3.6,0,0,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,4,6,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,24,6,31,95977,937,1364,355,686,816,126,83929,52510,15448,6361,170,4.1,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,4,6,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,24,8,36,95977,773,1364,358,535,754,107,64456,45864,12941,5148,170,5.7,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2013,4,6,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,24.2,6.5,32,96013,552,1364,357,339,516,130,38604,32516,14885,5213,170,5.1,0,0,9900,77777,9,999999999,18,0,0,88,0.2,0,0 +2013,4,6,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,5,31,95959,287,1364,349,129,269,72,14350,8550,8077,2513,180,5.7,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,4,6,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,5,35,95924,0,1352,340,0,0,0,0,0,0,0,210,4.1,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,4,6,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,19.8,4,35,96106,0,0,333,0,0,0,0,0,0,0,200,4.6,0,0,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,4,6,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18,5,42,95870,0,0,333,0,0,0,0,0,0,0,150,2.6,1,1,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,4,6,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,5,48,95834,0,0,328,0,0,0,0,0,0,0,170,1.5,2,2,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,4,6,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,14.6,5.1,53,96172,0,0,311,0,0,0,0,0,0,0,327,1,0,0,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2013,4,6,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,6,55,95815,0,0,328,0,0,0,0,0,0,0,140,2.1,3,3,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,4,7,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,5,55,95797,0,0,322,0,0,0,0,0,0,0,180,2.6,3,3,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,4,7,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,12,6.2,68,96199,0,0,301,0,0,0,0,0,0,0,140,2.1,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,4,7,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,11,6,71,95740,0,0,317,0,0,0,0,0,0,0,310,1.5,6,6,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,4,7,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,10,4,66,95721,0,0,308,0,0,0,0,0,0,0,280,1.5,5,5,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,4,7,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,8.2,4.5,77,96126,0,0,284,0,0,0,0,0,0,0,50,2.1,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,4,7,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,8.1,4.2,77,95904,0,0,306,0,0,0,0,0,0,0,7,1.3,7,7,9000,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,4,7,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,4,76,95683,0,0,283,0,0,0,0,0,0,0,247,0.5,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,4,7,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,5,81,95683,132,612,284,37,47,32,4058,0,3560,1056,320,1,0,0,5000,77777,9,999999999,16,0,0,88,0.2,0,0 +2013,4,7,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,5,58,95778,412,1363,320,218,399,97,24563,20127,11003,3656,30,1.5,4,4,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,4,7,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,6,51,95834,658,1363,332,430,634,124,50202,40291,14530,5451,10,1.5,3,3,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,4,7,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,19.5,6,41,96176,853,1363,341,609,788,117,73997,49871,14211,5756,284,1,1,1,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,4,7,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,6,38,95924,984,1363,341,731,773,173,87869,53825,20852,8494,210,2.6,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,4,7,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,24,6,31,95977,1042,1363,355,785,778,190,94495,55178,22997,9392,160,4.1,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,4,7,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,25,4.8,27,95999,1024,1363,359,769,776,186,92541,55302,22488,9169,170,5.1,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,4,7,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,3,23,96011,930,1363,361,684,768,160,82107,53631,19281,7794,160,5.1,0,0,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,4,7,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,2,21,96011,766,1363,360,534,753,111,64264,48071,13370,5285,180,4.6,0,0,9900,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,4,7,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,26.5,3,22,95873,545,1363,364,335,510,132,38158,32942,15037,5224,170,5.7,0,0,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,4,7,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,3,24,95994,280,1363,356,125,264,71,13917,8233,7893,2448,210,4.6,0,0,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,4,7,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,3,27,95959,0,1321,347,0,0,0,0,0,0,0,210,4.1,0,0,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,4,7,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,20,3,32,95949,0,0,333,0,0,0,0,0,0,0,160,2.6,0,0,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,4,7,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18,5,42,95870,0,0,333,0,0,0,0,0,0,0,210,1.5,1,1,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,4,7,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,18,4,39,95870,0,0,331,0,0,0,0,0,0,0,58,1,1,1,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,4,7,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,15.7,4.4,47,96032,0,0,315,0,0,0,0,0,0,0,94,1,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,4,7,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,4,48,95815,0,0,322,0,0,0,0,0,0,0,250,1.5,2,2,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,4,8,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,3,54,95759,0,0,311,0,0,0,0,0,0,0,350,1.5,3,3,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,4,8,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,11.3,3.7,59,95978,0,0,296,0,0,0,0,0,0,0,30,1.5,0,0,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,4,8,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,11,3,58,95740,0,0,309,0,0,0,0,0,0,0,277,0.5,4,4,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,4,8,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,10,3,62,95721,0,0,305,0,0,0,0,0,0,0,34,0,4,4,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,4,8,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9.4,3.5,67,95856,0,0,288,0,0,0,0,0,0,0,256,0.5,0,0,7000,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,4,8,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,3,66,95702,0,0,286,0,0,0,0,0,0,0,201,0.5,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,4,8,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,3,66,95702,0,0,286,0,0,0,0,0,0,0,10,1.5,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,4,8,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9.4,3.4,66,95866,128,595,288,35,40,31,3874,0,3463,1026,237,1,0,0,6000,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,4,8,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,4,54,95778,408,1362,303,220,428,92,24944,21070,10469,3502,158,1,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,4,8,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,18,5,42,95870,653,1362,333,429,640,122,50163,40766,14362,5383,334,1,1,1,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,4,8,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,21.6,3.6,31,95854,848,1362,341,607,783,120,73567,50727,14608,5895,202,1,0,0,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,4,8,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,24,4,27,95977,978,1362,353,728,772,173,87484,54519,20928,8506,244,1,0,0,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,4,8,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,27,3,21,96029,1036,1362,366,783,777,192,94203,56283,23213,9452,160,2.1,0,0,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,4,8,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,28.7,3.5,20,95730,1017,1362,391,755,850,120,93806,54646,15009,6273,150,3.6,3,3,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,4,8,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,29,-2,13,96063,923,1362,369,683,797,142,82729,55198,17331,7048,210,6.2,0,0,9900,77777,9,999999999,7,0,0,88,0.2,0,0 +2013,4,8,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,28,1,17,95863,759,1362,368,529,684,147,62187,47713,17394,6684,207,6.7,0,0,9950,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,4,8,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,27,4.1,23,95664,538,1362,386,318,486,126,36244,30561,14435,5035,210,7.2,4,4,9950,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,4,8,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,3,24,95994,274,1362,356,120,255,69,13400,7598,7734,2390,210,6.7,0,0,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,4,8,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,3,27,95959,0,1291,347,0,0,0,0,0,0,0,190,5.7,0,0,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,4,8,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,20.9,2.6,30,95766,0,0,343,0,0,0,0,0,0,0,150,3.6,1,1,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,4,8,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,19,3,34,95888,0,0,329,0,0,0,0,0,0,0,150,3.6,0,0,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,4,8,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18,4,39,95870,0,0,331,0,0,0,0,0,0,0,160,3.6,1,1,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,4,8,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15.3,4.6,49,95854,0,0,320,0,0,0,0,0,0,0,160,4.1,1,1,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,4,8,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,5,51,95815,0,0,327,0,0,0,0,0,0,0,150,3.1,3,3,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,4,9,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,4,48,95815,0,0,322,0,0,0,0,0,0,0,210,1,2,2,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,4,9,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,12.3,4.8,60,95789,0,0,307,0,0,0,0,0,0,0,278,1,1,1,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,4,9,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,4,58,95759,0,0,315,0,0,0,0,0,0,0,190,2.1,4,4,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,4,9,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,5,62,95759,0,0,316,0,0,0,0,0,0,0,150,3.1,4,4,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,4,9,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,5,62,95759,0,0,316,0,0,0,0,0,0,0,150,2.6,4,4,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,4,9,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,10,5,71,95721,0,0,312,0,0,0,0,0,0,0,200,2.1,6,6,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2013,4,9,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,3,71,95683,0,0,282,0,0,0,0,0,0,0,300,2.1,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,4,9,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10,5.4,73,95972,125,578,321,22,0,22,2167,0,2182,794,270,2.1,8,8,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2013,4,9,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,7,71,95759,403,1362,339,112,8,109,12436,417,12223,3926,140,3.1,9,9,8000,6000,9,999999999,19,0,0,88,0.2,0,0 +2013,4,9,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,7,71,95759,648,1362,339,219,19,210,24462,1523,23549,7911,170,3.1,9,9,8000,5400,9,999999999,19,0,0,88,0.2,0,0 +2013,4,9,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13.5,7.7,68,96057,842,1362,347,309,64,269,35066,5358,30742,11019,140,2.6,9,9,8000,5400,9,999999999,20,0,0,88,0.2,0,0 +2013,4,9,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,7,59,95815,973,1362,354,371,68,323,42424,5944,37090,13546,200,2.6,9,9,8000,5400,9,999999999,19,0,0,88,0.2,0,0 +2013,4,9,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16,7,55,95834,1030,1362,359,399,26,379,45376,2381,43434,15495,210,2.6,9,9,8000,5400,9,999999999,19,0,0,88,0.2,0,0 +2013,4,9,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,16.6,6.8,52,96105,1011,1362,372,238,9,231,28044,675,27407,10870,160,2.1,10,10,8000,5400,9,999999999,18,0,0,88,0.2,0,0 +2013,4,9,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17,7,52,95852,916,1362,364,344,57,306,39173,4991,34982,12611,180,3.1,9,9,8000,5400,9,999999999,19,0,0,88,0.2,0,0 +2013,4,9,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17,8,55,95852,753,1362,375,163,2,162,18928,109,18910,7175,170,3.6,10,10,8000,4500,9,999999999,21,0,0,88,0.2,0,0 +2013,4,9,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16.1,8.7,61,96058,531,1362,371,101,0,101,10135,0,10218,4224,150,5.1,10,10,8000,4500,9,999999999,22,0,0,88,0.2,0,0 +2013,4,9,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,8,63,95815,267,1362,365,36,0,36,3562,0,3588,1437,160,3.6,10,10,8000,4500,9,999999999,21,0,0,88,0.2,0,0 +2013,4,9,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,14.9,8.2,65,95990,0,1260,335,0,0,0,0,0,0,0,89,3.3,5,5,8000,4500,9,999999999,21,0,0,88,0.2,0,0 +2013,4,9,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14.7,8.5,66,96164,0,0,354,0,0,0,0,0,0,0,180,3.1,9,9,8000,3900,9,999999999,22,0,0,88,0.2,0,0 +2013,4,9,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,8,63,95815,0,0,355,0,0,0,0,0,0,0,160,5.7,9,9,8000,3600,9,999999999,21,0,0,88,0.2,0,0 +2013,4,9,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,9,72,95797,0,0,351,0,0,0,0,0,0,0,90,4.1,9,9,8000,4500,9,999999999,23,0,0,88,0.2,0,0 +2013,4,9,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13.6,8.1,69,96078,0,0,332,0,0,0,0,0,0,0,310,2.6,6,6,8000,5400,9,999999999,21,0,0,88,0.2,0,0 +2013,4,9,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,14,8,67,95797,0,0,350,0,0,0,0,0,0,0,342,1,9,9,8000,4500,9,999999999,21,0,0,88,0.2,0,0 +2013,4,10,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,13,8,72,95778,0,0,326,0,0,0,0,0,0,0,110,1.5,5,5,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,4,10,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12.7,9.1,79,95947,0,0,345,0,0,0,0,0,0,0,200,3.6,9,9,8000,3600,9,999999999,23,0,0,88,0.2,0,0 +2013,4,10,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,9,82,95759,0,0,341,0,0,0,0,0,0,0,170,4.1,9,9,8000,4500,9,999999999,23,0,0,88,0.2,0,0 +2013,4,10,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,9,82,95759,0,0,341,0,0,0,0,0,0,0,130,3.6,9,9,9000,4800,9,999999999,23,0,0,88,0.2,0,0 +2013,4,10,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11.8,8.6,81,95949,0,0,340,0,0,0,0,0,0,0,320,4.1,9,9,8000,3600,9,999999999,22,0,0,88,0.2,0,0 +2013,4,10,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,9,93,95721,0,0,332,0,0,0,0,0,0,0,80,2.1,9,9,7000,4500,9,999999999,23,0,0,88,0.2,0,0 +2013,4,10,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,8,82,95740,0,0,317,0,0,0,0,0,0,0,279,1,5,5,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,4,10,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,8.8,86,96076,121,561,318,29,1,29,3241,0,3243,962,130,1.5,5,5,5000,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,4,10,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,9,82,95759,399,1361,322,197,326,102,22085,16028,11425,3723,240,1.5,5,5,5000,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,4,10,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,9,77,95778,643,1361,327,389,500,153,44567,33597,17561,6350,350,1.5,5,5,5000,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,4,10,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15.7,9,64,96060,837,1361,339,551,610,176,64630,42767,20754,8075,340,2.1,5,5,6000,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,4,10,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,8,49,95888,967,1361,354,663,680,181,79234,47429,21668,8763,33,1,5,5,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,4,10,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,21,6,38,95924,1024,1361,361,715,695,192,85752,49589,23161,9420,18,1.5,5,5,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,4,10,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,22.5,5.6,33,95936,1004,1361,368,698,665,208,83053,48949,24842,9973,210,2.6,5,5,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2013,4,10,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,23,-1,20,95959,909,1361,357,661,768,147,79695,53513,17832,7213,210,4.6,3,3,8000,77777,9,999999999,8,0,0,88,0.2,0,0 +2013,4,10,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,22,4,31,95942,746,1361,343,514,689,136,60641,46178,16143,6230,220,6.7,0,0,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,4,10,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,21.3,6,37,95915,524,1361,363,295,419,133,33319,26549,15128,5171,210,6.2,5,5,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,4,10,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,20,7,43,95906,261,1361,352,110,222,67,12158,5706,7471,2289,210,5.1,3,3,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,10,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18,6,45,95870,0,1230,342,0,0,0,0,0,0,0,210,5.1,3,3,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,4,10,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,16.3,5.2,48,96033,0,0,319,0,0,0,0,0,0,0,200,5.7,0,0,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2013,4,10,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,6,55,95815,0,0,328,0,0,0,0,0,0,0,150,3.6,3,3,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,4,10,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,7,63,95797,0,0,329,0,0,0,0,0,0,0,150,3.6,5,5,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,10,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,12.8,7.2,69,96110,0,0,306,0,0,0,0,0,0,0,140,3.1,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,10,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,7,76,95740,0,0,311,0,0,0,0,0,0,0,170,2.6,3,3,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,11,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,8,82,95740,0,0,312,0,0,0,0,0,0,0,190,2.6,3,3,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,4,11,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.5,8.6,88,96095,0,0,313,0,0,0,0,0,0,0,150,3.1,4,4,800,77777,0,999999999,22,0,0,88,0.2,0,0 +2013,4,11,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,9,8,93,95702,0,0,335,0,0,0,0,0,0,0,160,1,10,10,400,30,0,999999999,21,0,0,88,0.2,0,0 +2013,4,11,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,8,8,100,95683,0,0,331,0,0,0,0,0,0,0,247,0,10,10,2000,77777,0,999999999,21,0,0,88,0.2,0,0 +2013,4,11,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.4,6.5,94,96082,0,0,283,0,0,0,0,0,0,0,220,1,0,0,200,77777,0,999999999,18,0,0,88,0.2,0,0 +2013,4,11,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,9,8,93,95702,0,0,335,0,0,0,0,0,0,0,150,2.1,10,10,900,60,0,999999999,21,0,0,88,0.2,0,0 +2013,4,11,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,9,100,95702,0,0,337,0,0,0,0,0,0,0,210,2.1,10,10,1300,90,0,999999999,23,0,0,88,0.2,0,0 +2013,4,11,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8.6,7.9,95,96209,117,544,333,9,0,9,920,0,926,375,219,1,10,10,5000,150,0,999999999,21,0,0,88,0.2,0,0 +2013,4,11,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,8,93,95702,395,1360,335,66,0,66,6544,0,6595,2670,310,2.6,10,10,5000,180,0,999999999,21,0,0,88,0.2,0,0 +2013,4,11,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,9,87,95740,639,1360,346,130,0,130,13204,0,13316,5612,110,1,10,10,8000,270,0,999999999,23,0,0,88,0.2,0,0 +2013,4,11,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12.6,8.4,76,96248,832,1360,344,304,24,289,34212,2051,32768,11431,37,0.5,9,9,8000,5100,0,999999999,22,0,0,88,0.2,0,0 +2013,4,11,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,8,63,95815,961,1360,355,365,58,324,41640,5063,37196,13501,190,2.6,9,9,8000,5100,0,999999999,21,0,0,88,0.2,0,0 +2013,4,11,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,16,9,63,95834,1017,1360,341,721,611,265,84271,47793,31077,12093,238,2.6,5,5,9900,5100,0,999999999,23,0,0,88,0.2,0,0 +2013,4,11,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,18,8.5,54,96149,998,1360,347,716,777,146,87337,50640,17888,7406,236,2.6,4,4,9900,77777,0,999999999,22,0,0,88,0.2,0,0 +2013,4,11,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19,8,49,95888,902,1360,349,646,800,114,79066,49637,14068,5782,170,3.6,3,3,9900,77777,0,999999999,21,0,0,88,0.2,0,0 +2013,4,11,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,20,7,43,95906,739,1360,352,499,713,112,59676,44093,13390,5252,180,4.6,3,3,9900,77777,0,999999999,19,0,0,88,0.2,0,0 +2013,4,11,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,19.2,7.2,46,96086,518,1360,334,311,515,115,35484,30132,13145,4607,220,4.6,0,0,9900,77777,0,999999999,19,0,0,88,0.2,0,0 +2013,4,11,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18,6,45,95870,254,1360,338,107,225,65,11877,5494,7244,2217,220,5.1,2,2,9900,77777,0,999999999,17,0,0,88,0.2,0,0 +2013,4,11,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,5,45,95852,0,1200,332,0,0,0,0,0,0,0,210,4.1,2,2,9900,77777,0,999999999,15,0,0,88,0.2,0,0 +2013,4,11,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15.9,6,52,96253,0,0,318,0,0,0,0,0,0,0,200,4.6,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,4,11,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,7,63,95797,0,0,329,0,0,0,0,0,0,0,170,3.1,5,5,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,11,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,8,72,95778,0,0,329,0,0,0,0,0,0,0,170,4.6,6,6,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,4,11,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,12.5,7.6,72,96463,0,0,305,0,0,0,0,0,0,0,160,3.6,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2013,4,11,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,7,71,95759,0,0,323,0,0,0,0,0,0,0,170,3.1,6,6,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,12,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,11,7,76,95740,0,0,322,0,0,0,0,0,0,0,270,1.5,7,7,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,12,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.9,5.2,78,96460,0,0,288,0,0,0,0,0,0,0,60,2.1,0,0,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2013,4,12,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,5,76,95702,0,0,288,0,0,0,0,0,0,0,168,1,0,0,7000,77777,9,999999999,16,0,0,88,0.2,0,0 +2013,4,12,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,5,81,95683,0,0,284,0,0,0,0,0,0,0,262,0,0,0,7000,77777,9,999999999,16,0,0,88,0.2,0,0 +2013,4,12,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7.3,4.6,83,96373,0,0,281,0,0,0,0,0,0,0,231,0.5,0,0,5000,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,4,12,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,4,81,95663,0,0,279,0,0,0,0,0,0,0,187,0,0,0,6000,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,4,12,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,6,5,93,95644,0,0,318,0,0,0,0,0,0,0,187,1,10,10,3000,77777,9,999999999,16,0,0,88,0.2,0,0 +2013,4,12,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.5,5.5,87,96339,113,527,282,29,20,28,3249,0,3076,908,70,2.6,0,0,3000,77777,9,999999999,16,0,0,88,0.2,0,0 +2013,4,12,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,5,76,95702,391,1359,288,207,424,85,23501,19404,9720,3253,230,1.5,0,0,4000,77777,9,999999999,16,0,0,88,0.2,0,0 +2013,4,12,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,7,71,95759,634,1359,302,412,634,116,48122,38949,13619,5095,280,1.5,0,0,6000,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,12,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,15.1,6.8,58,96333,826,1359,315,585,779,112,71008,48506,13584,5480,312,1.5,0,0,6000,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,12,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,18,7,49,95870,955,1359,339,700,837,112,86626,51985,13909,5781,132,1,2,2,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,12,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,6,40,95906,1011,1359,343,757,773,181,91033,54366,21921,8945,200,2.1,1,1,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,4,12,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,21.6,3.3,30,96148,991,1359,341,741,772,179,89092,55036,21563,8767,190,4.1,0,0,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,4,12,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,4,29,95959,896,1359,348,652,763,149,78312,52152,18029,7268,180,4.6,0,0,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,4,12,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,24,3,25,95977,732,1359,352,503,738,106,60398,46100,12720,4990,160,4.6,0,0,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,4,12,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,23.6,1.4,23,96088,511,1359,348,308,524,111,35291,31345,12773,4471,160,4.6,0,0,9900,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,4,12,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,4,29,95959,248,1359,348,103,219,63,11466,5191,7066,2155,170,4.1,0,0,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,4,12,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,1,28,95906,0,1170,331,0,0,0,0,0,0,0,210,3.6,0,0,9900,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,4,12,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,18.7,1.9,32,96219,0,0,332,0,0,0,0,0,0,0,170,2.6,1,1,9900,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,4,12,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,3,39,95852,0,0,326,0,0,0,0,0,0,0,150,2.6,1,1,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,4,12,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,2,36,95852,0,0,318,0,0,0,0,0,0,0,160,4.1,0,0,9900,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,4,12,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,13.2,2.4,48,96316,0,0,303,0,0,0,0,0,0,0,310,1.5,0,0,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,4,12,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,12,2,50,95759,0,0,307,0,0,0,0,0,0,0,53,0,2,2,9900,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,4,13,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,10,2,57,95721,0,0,304,0,0,0,0,0,0,0,270,1,4,4,9900,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,4,13,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,9.9,1.8,57,96272,0,0,288,0,0,0,0,0,0,0,161,1,0,0,9900,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,4,13,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,9,2,61,95702,0,0,299,0,0,0,0,0,0,0,179,0.5,4,4,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,4,13,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,2,66,95683,0,0,281,0,0,0,0,0,0,0,9,1,0,0,6000,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,4,13,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,1.7,64,96169,0,0,297,0,0,0,0,0,0,0,187,1,5,5,7000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,4,13,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,2,66,95683,0,0,281,0,0,0,0,0,0,0,215,1,0,0,8000,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,4,13,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,1,66,95663,0,0,276,0,0,0,0,0,0,0,92,0,0,0,5000,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,4,13,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,1.7,64,96197,110,511,280,29,21,27,3172,0,2989,881,360,1.5,0,0,6000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,4,13,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,3,58,95740,386,1359,294,205,411,88,23174,19336,9996,3313,270,1.5,0,0,7000,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,4,13,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,3,42,95834,629,1359,315,410,623,122,47832,39976,14272,5289,67,1,0,0,9000,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,4,13,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,18.9,2.6,34,96137,821,1359,334,584,773,117,70701,50086,14229,5708,113,1,1,1,9000,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,4,13,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,3,30,95924,949,1359,338,703,813,135,85777,54123,16567,6813,270,1.5,0,0,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,4,13,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,23,1,23,95959,1005,1359,365,704,616,249,82788,49325,29417,11497,210,1.5,5,5,9900,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,4,13,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,25.8,0.6,19,95909,984,1359,382,645,435,330,73890,39196,38040,13862,140,3.1,6,6,9900,7500,9,999999999,10,0,0,88,0.2,0,0 +2013,4,13,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,26,1,20,96011,889,1359,374,641,633,227,74527,50373,26487,10095,160,6.7,3,3,9900,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,4,13,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,26,2,21,96011,725,1359,404,257,92,208,29251,7248,23811,8474,170,7.2,9,9,9900,7500,9,999999999,11,0,0,88,0.2,0,0 +2013,4,13,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,24.6,2.9,24,95840,504,1359,398,156,7,153,17372,512,17141,5553,160,6.2,9,9,9900,7500,9,999999999,12,0,0,88,0.2,0,0 +2013,4,13,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,23,3,27,95959,241,1359,389,51,0,51,5046,0,5082,1839,170,6.7,9,9,9900,7500,9,999999999,12,0,0,88,0.2,0,0 +2013,4,13,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,21,3,30,95924,0,1141,358,0,0,0,0,0,0,0,160,4.6,5,5,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,4,13,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,20,2.9,32,95854,0,0,339,0,0,0,0,0,0,0,150,3.1,1,1,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,4,13,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18,2,34,95870,0,0,323,0,0,0,0,0,0,0,150,2.6,0,0,9900,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,4,13,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,16.5,0.6,34,95846,0,0,315,0,0,0,0,0,0,0,97,1.3,0,0,9950,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,4,13,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,15.1,-0.9,33,95822,0,0,307,0,0,0,0,0,0,0,166,0,0,0,9950,77777,9,999999999,9,0,0,88,0.2,0,0 +2013,4,13,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,2,50,95759,0,0,297,0,0,0,0,0,0,0,290,1.5,0,0,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,4,14,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,1,50,95740,0,0,292,0,0,0,0,0,0,0,40,1,0,0,8000,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,4,14,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9.7,1.2,55,95862,0,0,287,0,0,0,0,0,0,0,5,1,0,0,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,4,14,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,2,57,95721,0,0,289,0,0,0,0,0,0,0,41,0.5,0,0,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,4,14,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,2,61,95702,0,0,285,0,0,0,0,0,0,0,75,0,0,0,7000,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,4,14,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,1.9,65,95810,0,0,281,0,0,0,0,0,0,0,345,1,0,0,7000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,4,14,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,2,66,95683,0,0,281,0,0,0,0,0,0,0,20,1.5,0,0,8000,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,4,14,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,2,61,95702,0,0,285,0,0,0,0,0,0,0,20,2.1,0,0,8000,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,4,14,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9.3,1.2,57,95826,106,494,285,28,20,26,3065,0,2900,853,62,0,0,0,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,4,14,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,1,47,95759,382,1358,306,202,342,106,22469,18013,11812,3736,260,1.5,2,2,9900,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,4,14,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,16,2,39,95834,624,1358,320,407,618,123,47370,39927,14329,5292,234,1,1,1,9900,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,4,14,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,20,1.9,30,95816,816,1358,332,580,772,117,70184,50141,14202,5688,252,1,0,0,9900,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,4,14,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,24,2,24,95977,943,1358,350,699,767,166,83907,54275,20037,8107,20,0.5,0,0,9900,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,4,14,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,27,0,17,96029,999,1358,362,752,772,185,90421,56382,22345,9063,119,1,0,0,9900,77777,9,999999999,9,0,0,88,0.2,0,0 +2013,4,14,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,29.7,-3.7,11,95624,978,1358,370,737,770,183,88456,56984,22038,8900,170,2.6,0,0,9900,77777,9,999999999,6,0,0,88,0.2,0,0 +2013,4,14,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,31,-6,8,96096,882,1358,374,650,796,133,78794,54966,16140,6527,150,6.2,0,0,9900,77777,9,999999999,5,0,0,88,0.2,0,0 +2013,4,14,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,32,-2,11,96113,718,1358,384,495,663,144,57984,46502,16982,6427,170,5.7,0,0,9900,77777,9,999999999,7,0,0,88,0.2,0,0 +2013,4,14,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,31,-2.3,11,95636,498,1358,379,299,457,131,33730,29805,14877,4984,170,5.1,0,0,9900,77777,9,999999999,7,0,0,88,0.2,0,0 +2013,4,14,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,29,-4,11,96063,235,1358,367,97,186,64,10664,4619,7137,2123,170,4.6,0,0,9900,77777,9,999999999,6,0,0,88,0.2,0,0 +2013,4,14,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,-3,14,96011,0,1112,354,0,0,0,0,0,0,0,150,2.6,0,0,9900,77777,9,999999999,7,0,0,88,0.2,0,0 +2013,4,14,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,24.6,-0.8,18,95746,0,0,350,0,0,0,0,0,0,0,150,3.6,0,0,9900,77777,9,999999999,8,0,0,88,0.2,0,0 +2013,4,14,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,22,0,23,95942,0,0,339,0,0,0,0,0,0,0,160,2.1,0,0,9900,77777,9,999999999,9,0,0,88,0.2,0,0 +2013,4,14,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,0,26,95906,0,0,330,0,0,0,0,0,0,0,160,2.1,0,0,9900,77777,9,999999999,9,0,0,88,0.2,0,0 +2013,4,14,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,16.4,0,33,95808,0,0,314,0,0,0,0,0,0,0,188,0.5,0,0,9900,77777,9,999999999,9,0,0,88,0.2,0,0 +2013,4,14,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,1,41,95797,0,0,310,0,0,0,0,0,0,0,30,1.5,1,1,9900,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,4,15,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,15,0,36,95815,0,0,308,0,0,0,0,0,0,0,92,1,0,0,9900,77777,9,999999999,9,0,0,88,0.2,0,0 +2013,4,15,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,12.1,0.6,45,95813,0,0,296,0,0,0,0,0,0,0,168,1,0,0,9900,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,4,15,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,0,50,95721,0,0,287,0,0,0,0,0,0,0,53,1,0,0,8000,77777,9,999999999,9,0,0,88,0.2,0,0 +2013,4,15,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,0,50,95721,0,0,287,0,0,0,0,0,0,0,38,0,0,0,8000,77777,9,999999999,9,0,0,88,0.2,0,0 +2013,4,15,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10.9,0.3,48,95753,0,0,291,0,0,0,0,0,0,0,318,1,0,0,8000,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,4,15,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,0,47,95740,0,0,291,0,0,0,0,0,0,0,115,1,0,0,8000,77777,9,999999999,9,0,0,88,0.2,0,0 +2013,4,15,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,0,57,95683,0,0,279,0,0,0,0,0,0,0,201,0.5,0,0,8000,77777,9,999999999,9,0,0,88,0.2,0,0 +2013,4,15,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8.7,0,54,95824,102,477,282,27,11,26,2957,0,2872,839,239,1,0,0,7000,77777,9,999999999,9,0,0,88,0.2,0,0 +2013,4,15,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,0,41,95778,378,1357,299,199,341,104,22200,17884,11656,3682,340,1.5,0,0,7000,77777,9,999999999,9,0,0,88,0.2,0,0 +2013,4,15,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,18,1,32,95870,619,1357,322,403,615,123,46924,39873,14349,5284,43,1,0,0,9900,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,4,15,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,21.1,1.1,26,95845,810,1357,350,569,744,125,68424,49366,15050,5992,144,1,3,3,9900,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,4,15,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,24,0,20,95977,937,1357,348,695,803,140,84564,54877,17138,7010,196,1,0,0,9900,77777,9,999999999,9,0,0,88,0.2,0,0 +2013,4,15,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,28,-2,14,96046,992,1357,364,749,771,185,89948,56829,22378,9059,116,1,0,0,9900,77777,9,999999999,7,0,0,88,0.2,0,0 +2013,4,15,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,29.9,-1.4,13,95703,971,1357,391,719,769,169,86713,55272,20474,8321,170,2.1,3,3,9900,77777,9,999999999,8,0,0,88,0.2,0,0 +2013,4,15,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,30,1,15,96079,876,1357,378,637,759,147,76454,52588,17730,7112,150,4.6,0,0,9900,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,4,15,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,31,0,14,96096,712,1357,382,488,664,139,57165,45664,16414,6224,170,5.7,0,0,9900,77777,9,999999999,9,0,0,88,0.2,0,0 +2013,4,15,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,28.7,1.6,17,95730,491,1357,373,292,507,108,33341,29627,12394,4302,210,5.7,0,0,9900,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,4,15,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,4,24,96011,229,1357,362,91,198,58,10136,3667,6465,1962,210,5.1,0,0,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,4,15,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,22,6,35,95942,0,1083,346,0,0,0,0,0,0,0,140,4.1,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,4,15,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,20.6,5.4,37,95912,0,0,339,0,0,0,0,0,0,0,150,4.6,0,0,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2013,4,15,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,19,5,40,95888,0,0,337,0,0,0,0,0,0,0,160,4.6,1,1,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,4,15,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,5,48,95834,0,0,328,0,0,0,0,0,0,0,160,2.6,2,2,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,4,15,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15.4,4.3,47,96026,0,0,314,0,0,0,0,0,0,0,160,2.6,0,0,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,4,15,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,4,51,95797,0,0,321,0,0,0,0,0,0,0,160,2.6,3,3,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,4,16,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,4,54,95778,0,0,317,0,0,0,0,0,0,0,220,1,3,3,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,4,16,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,11.2,4,61,96004,0,0,296,0,0,0,0,0,0,0,120,1,0,0,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,4,16,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,4,66,95721,0,0,291,0,0,0,0,0,0,0,13,0.5,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,4,16,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,6,67,95759,0,0,301,0,0,0,0,0,0,0,140,3.1,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,4,16,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10.4,5.5,72,95979,0,0,294,0,0,0,0,0,0,0,180,2.6,0,0,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2013,4,16,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,5,81,95683,0,0,284,0,0,0,0,0,0,0,176,1,0,0,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2013,4,16,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,4,76,95683,0,0,283,0,0,0,0,0,0,0,30,2.6,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,4,16,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.3,3.7,73,95995,99,460,284,26,17,24,2851,0,2723,800,280,1.5,0,0,6000,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,4,16,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,5,62,95759,374,1356,300,195,393,86,21968,17660,9781,3220,150,1.5,0,0,6000,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,4,16,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,5,45,95852,614,1356,322,397,620,116,46282,38477,13583,5033,20,0,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,4,16,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19.1,5.7,41,96056,805,1356,332,568,771,110,68740,48198,13420,5383,290,1.5,0,0,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2013,4,16,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,22,5,33,95942,931,1356,345,685,765,160,82295,52749,19276,7811,156,0.5,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,4,16,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,25,4,26,95994,986,1356,358,737,770,177,88568,54588,21394,8701,63,1.5,0,0,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,4,16,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,27.2,3,21,95876,965,1356,374,718,768,172,86255,54432,20725,8409,160,3.6,1,1,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,4,16,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,27,5,24,96029,869,1356,369,627,794,119,76341,50835,14514,5903,160,6.2,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,4,16,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,7,30,96011,705,1356,366,476,684,121,56292,43140,14352,5524,160,7.2,0,0,9900,77777,9,999999999,18,0,0,88,0.2,0,0 +2013,4,16,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,24.3,6.4,32,95864,485,1356,357,284,491,109,32377,27726,12435,4299,170,8.2,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,4,16,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,22,7,38,95942,222,1356,347,87,187,57,9666,2921,6300,1908,160,6.2,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,16,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,7,43,95906,0,1054,344,0,0,0,0,0,0,0,140,4.6,1,1,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,16,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,18.4,7.9,50,95939,0,0,331,0,0,0,0,0,0,0,180,3.1,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2013,4,16,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,8,55,95852,0,0,339,0,0,0,0,0,0,0,160,3.1,3,3,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,4,16,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,9,59,95852,0,0,343,0,0,0,0,0,0,0,140,3.1,4,4,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,4,16,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14.4,8,65,95979,0,0,314,0,0,0,0,0,0,0,180,2.6,0,0,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,4,16,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,8,72,95778,0,0,329,0,0,0,0,0,0,0,150,1.5,6,6,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,4,17,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,13,6,62,95778,0,0,321,0,0,0,0,0,0,0,81,1,4,4,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,4,17,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.9,5.3,73,95941,0,0,292,0,0,0,0,0,0,0,360,1,0,0,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2013,4,17,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,7,82,95721,0,0,294,0,0,0,0,0,0,0,20,1.5,0,0,7000,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,17,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,6,76,95721,0,0,293,0,0,0,0,0,0,0,108,1,0,0,7000,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,4,17,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.3,6.5,77,95902,0,0,295,0,0,0,0,0,0,0,190,1.5,0,0,7000,77777,9,999999999,18,0,0,88,0.2,0,0 +2013,4,17,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,5,81,95683,0,0,284,0,0,0,0,0,0,0,360,2.1,0,0,6000,77777,9,999999999,16,0,0,88,0.2,0,0 +2013,4,17,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,5,76,95702,0,0,288,0,0,0,0,0,0,0,20,2.6,0,0,6000,77777,9,999999999,16,0,0,88,0.2,0,0 +2013,4,17,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.5,5.3,70,95849,95,443,300,25,14,24,2736,0,2636,774,40,2.6,1,1,5000,77777,9,999999999,16,0,0,88,0.2,0,0 +2013,4,17,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,6,62,95778,369,1355,305,191,386,86,21542,17001,9720,3192,250,1,0,0,5000,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,4,17,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,6,51,95834,610,1355,318,392,619,114,45735,37826,13304,4932,310,1.5,0,0,7000,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,4,17,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19.6,6.7,43,95800,799,1355,335,562,769,108,68064,47517,13174,5284,185,1,0,0,8000,77777,9,999999999,18,0,0,88,0.2,0,0 +2013,4,17,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,24,6,31,95977,926,1355,355,679,764,157,81543,52133,18956,7684,180,2.6,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,4,17,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,7,30,96011,980,1355,366,728,769,172,87502,53099,20773,8470,160,4.1,0,0,9900,77777,9,999999999,18,0,0,88,0.2,0,0 +2013,4,17,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,28.2,4,21,95675,958,1355,373,711,767,169,85441,53874,20399,8279,180,3.6,0,0,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,4,17,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,29,4,20,96063,862,1355,377,622,790,120,75631,51029,14637,5938,160,5.1,0,0,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,4,17,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,29,3,19,96063,698,1355,376,474,666,131,55652,44159,15404,5858,160,5.7,0,0,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,4,17,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,28.2,3.3,20,95627,478,1355,372,280,493,107,31977,28071,12201,4209,170,5.1,0,0,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,4,17,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,5,26,96011,216,1355,364,84,134,62,9186,2492,6863,2002,190,4.6,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,4,17,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,8,38,95959,0,1026,353,0,0,0,0,0,0,0,160,4.1,0,0,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,4,17,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,20.2,9.5,50,95754,0,0,341,0,0,0,0,0,0,0,150,4.6,0,0,9900,77777,9,999999999,24,0,0,88,0.2,0,0 +2013,4,17,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,19,9,52,95888,0,0,350,0,0,0,0,0,0,0,160,2.6,3,3,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,4,17,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,9,59,95852,0,0,343,0,0,0,0,0,0,0,150,3.6,4,4,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,4,17,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15.8,8.9,64,95854,0,0,321,0,0,0,0,0,0,0,160,3.1,0,0,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,4,17,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,9,72,95797,0,0,334,0,0,0,0,0,0,0,150,2.1,6,6,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,4,18,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,8,72,95778,0,0,329,0,0,0,0,0,0,0,180,2.1,6,6,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,4,18,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,11.9,7.4,74,95800,0,0,302,0,0,0,0,0,0,0,180,1.5,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2013,4,18,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,11,7,76,95740,0,0,322,0,0,0,0,0,0,0,190,1,7,7,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,18,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,10,6,76,95721,0,0,317,0,0,0,0,0,0,0,78,0,7,7,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,4,18,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8.6,5.8,83,95746,0,0,287,0,0,0,0,0,0,0,250,1,0,0,6000,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,4,18,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,7,87,95702,0,0,290,0,0,0,0,0,0,0,195,1.5,0,0,4000,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,18,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,5,81,95683,0,0,284,0,0,0,0,0,0,0,268,0,0,0,3000,77777,9,999999999,16,0,0,88,0.2,0,0 +2013,4,18,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8.7,5.9,83,95805,91,427,287,24,11,23,2627,0,2551,748,44,0.5,0,0,3000,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,4,18,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,8,76,95759,365,1355,303,187,377,86,21069,16088,9675,3169,166,1,0,0,3000,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,4,18,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,8,63,95815,605,1355,316,387,617,111,45100,36761,12998,4825,58,0.5,0,0,6000,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,4,18,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18.3,9,55,95814,794,1355,332,555,766,106,67206,46153,12907,5180,108,1,0,0,6000,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,4,18,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,9,46,95924,920,1355,345,670,830,106,82731,50154,13175,5456,190,2.6,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,4,18,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,7,36,95959,974,1355,352,722,768,170,86807,52911,20546,8375,150,5.1,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,18,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,24.5,7.2,33,95678,952,1355,359,701,766,163,84327,52265,19741,8033,160,5.7,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,18,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,8,34,95994,856,1355,362,612,791,113,74580,48914,13775,5606,160,7.2,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2013,4,18,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,24,7,34,95977,692,1355,356,465,676,120,54827,42415,14177,5434,160,7.7,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,18,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,23.1,6.9,35,95653,472,1355,352,273,478,107,31080,26424,12217,4198,160,6.2,0,0,9900,77777,9,999999999,18,0,0,88,0.2,0,0 +2013,4,18,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,8,43,95924,210,1355,350,80,125,60,8722,1900,6630,1934,160,4.6,1,1,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,4,18,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,9,59,95852,0,998,343,0,0,0,0,0,0,0,160,5.1,4,4,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,4,18,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,16.1,8.7,61,95746,0,0,322,0,0,0,0,0,0,0,160,3.6,0,0,9900,77777,9,999999999,22,0,0,88,0.2,0,0 +2013,4,18,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,9,67,95815,0,0,336,0,0,0,0,0,0,0,150,3.1,5,5,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,4,18,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,9,67,95815,0,0,336,0,0,0,0,0,0,0,160,2.1,5,5,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,4,18,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,13.3,8.9,75,95807,0,0,310,0,0,0,0,0,0,0,150,2.1,0,0,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,4,18,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,7,71,95759,0,0,323,0,0,0,0,0,0,0,160,1.5,6,6,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,19,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,10,7,82,95721,0,0,323,0,0,0,0,0,0,0,88,0.5,8,8,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,19,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9.5,6.5,82,95773,0,0,291,0,0,0,0,0,0,0,256,1,0,0,8000,77777,9,999999999,18,0,0,88,0.2,0,0 +2013,4,19,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,7,82,95721,0,0,307,0,0,0,0,0,0,0,180,2.1,3,3,6000,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,19,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,7,82,95721,0,0,307,0,0,0,0,0,0,0,180,2.1,3,3,6000,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,19,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6.7,5.3,91,95870,0,0,313,0,0,0,0,0,0,0,51,1,9,9,800,90,0,999999999,16,0,0,88,0.2,0,0 +2013,4,19,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,5,93,95644,0,0,309,0,0,0,0,0,0,0,36,0.5,9,9,800,60,0,999999999,16,0,0,88,0.2,0,0 +2013,4,19,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,5,93,95644,0,0,292,0,0,0,0,0,0,0,85,0,5,5,2000,77777,0,999999999,16,0,0,88,0.2,0,0 +2013,4,19,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5.9,4.5,91,95930,87,410,291,21,0,21,2058,0,2072,701,354,0,5,5,800,77777,0,999999999,15,0,0,88,0.2,0,0 +2013,4,19,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,6,87,95683,361,1354,285,185,377,84,20826,16192,9539,3120,193,0,0,0,5000,77777,0,999999999,17,0,0,88,0.2,0,0 +2013,4,19,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,8,76,95759,600,1354,303,383,615,110,44635,36474,12888,4778,268,1,0,0,8000,77777,0,999999999,21,0,0,88,0.2,0,0 +2013,4,19,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,8.8,62,95990,789,1354,322,551,764,106,66655,46052,12832,5143,160,2.6,0,0,8000,77777,0,999999999,23,0,0,88,0.2,0,0 +2013,4,19,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,9,67,95815,914,1354,317,665,809,119,81340,50149,14602,6015,160,5.7,0,0,8000,77777,0,999999999,23,0,0,88,0.2,0,0 +2013,4,19,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,9,59,95852,967,1354,343,693,759,151,83971,49838,18420,7573,160,6.2,4,4,9900,77777,0,999999999,23,0,0,88,0.2,0,0 +2013,4,19,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17.4,8.8,57,95959,945,1354,328,694,819,122,85112,51108,15068,6239,170,7.7,0,0,9900,77777,0,999999999,22,0,0,88,0.2,0,0 +2013,4,19,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18,9,56,95870,849,1354,345,594,749,125,71746,47146,15123,6112,150,6.7,3,3,9900,77777,0,999999999,23,0,0,88,0.2,0,0 +2013,4,19,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,9,59,95852,685,1354,343,444,652,114,52511,39641,13556,5209,160,6.2,4,4,9900,77777,0,999999999,23,0,0,88,0.2,0,0 +2013,4,19,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,16.6,8.9,60,95963,465,1354,324,268,468,107,30352,25247,12143,4159,160,6.7,0,0,9900,77777,0,999999999,23,0,0,88,0.2,0,0 +2013,4,19,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,9,67,95815,204,1354,336,70,139,49,7801,1093,5489,1675,160,5.7,5,5,9900,77777,0,999999999,23,0,0,88,0.2,0,0 +2013,4,19,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,9,72,95797,0,970,334,0,0,0,0,0,0,0,170,5.1,6,6,9900,77777,0,999999999,23,0,0,88,0.2,0,0 +2013,4,19,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,12.5,8.8,78,96066,0,0,306,0,0,0,0,0,0,0,140,4.1,0,0,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,4,19,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,8,76,95759,0,0,303,0,0,0,0,0,0,0,170,2.6,0,0,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,4,19,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,8,76,95759,0,0,316,0,0,0,0,0,0,0,180,2.6,3,3,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,4,19,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.5,7.8,83,96085,0,0,310,0,0,0,0,0,0,0,160,2.6,3,3,6000,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,4,19,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,8,82,95740,0,0,312,0,0,0,0,0,0,0,150,2.6,3,3,6000,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,4,20,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,8,87,95721,0,0,308,0,0,0,0,0,0,0,160,2.1,3,3,6000,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,4,20,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.7,8.2,85,96136,0,0,334,0,0,0,0,0,0,0,150,3.1,9,9,6000,450,9,999999999,21,0,0,88,0.2,0,0 +2013,4,20,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,9,87,95740,0,0,337,0,0,0,0,0,0,0,160,2.6,9,9,6000,300,9,999999999,23,0,0,88,0.2,0,0 +2013,4,20,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,8,82,95740,0,0,336,0,0,0,0,0,0,0,280,1.5,9,9,6000,300,9,999999999,21,0,0,88,0.2,0,0 +2013,4,20,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11.3,8.5,83,96204,0,0,338,0,0,0,0,0,0,0,333,1,9,9,6000,300,9,999999999,22,0,0,88,0.2,0,0 +2013,4,20,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,8,82,95740,0,0,336,0,0,0,0,0,0,0,290,2.1,9,9,5000,300,9,999999999,21,0,0,88,0.2,0,0 +2013,4,20,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,9,87,95740,0,0,346,0,0,0,0,0,0,0,169,1,10,10,5000,450,9,999999999,23,0,0,88,0.2,0,0 +2013,4,20,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10.9,9.2,89,96405,84,393,346,7,0,7,662,0,666,268,167,1,10,10,800,150,0,999999999,24,0,0,88,0.2,0,0 +2013,4,20,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,10,94,95740,357,1353,347,57,0,57,5619,0,5662,2287,340,1.5,10,10,1200,150,0,919999999,26,0,0,88,0.2,0,0 +2013,4,20,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,9,82,95759,595,1353,351,119,0,119,12003,0,12104,5067,30,2.1,10,10,3000,450,0,919999999,23,0,0,88,0.2,0,0 +2013,4,20,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13.2,8.3,72,96363,783,1353,356,172,2,171,20048,126,20018,7659,30,2.1,10,10,5000,450,0,919999999,22,0,0,88,0.2,0,0 +2013,4,20,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,8,67,95797,908,1353,350,341,57,303,38792,4903,34646,12515,220,2.1,9,9,5000,510,0,919999999,21,0,0,88,0.2,0,0 +2013,4,20,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,9,63,95834,961,1353,322,708,678,227,83087,50727,26749,10515,180,2.1,0,0,6000,77777,0,919999999,23,0,0,88,0.2,0,0 +2013,4,20,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18.4,8.3,52,96327,939,1353,332,689,838,108,85229,51007,13354,5548,130,2.1,0,0,7000,77777,0,919999999,21,0,0,88,0.2,0,0 +2013,4,20,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,8,46,95906,842,1353,339,601,786,111,73089,48446,13580,5512,200,3.1,0,0,8000,77777,0,919999999,21,0,0,88,0.2,0,0 +2013,4,20,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,8,43,95924,679,1353,350,453,668,117,53318,41269,13892,5309,160,3.1,1,1,9900,77777,0,919999999,21,0,0,88,0.2,0,0 +2013,4,20,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,21.1,8.1,43,96338,459,1353,344,263,485,98,29981,25226,11257,3892,210,4.6,0,0,9900,77777,0,919999999,21,0,0,88,0.2,0,0 +2013,4,20,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,8,46,95906,198,1353,350,73,111,56,7958,1262,6191,1804,210,4.6,2,2,9900,77777,0,919999999,21,0,0,88,0.2,0,0 +2013,4,20,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18,8,52,95870,0,943,344,0,0,0,0,0,0,0,190,3.1,3,3,9900,77777,0,919999999,21,0,0,88,0.2,0,0 +2013,4,20,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,16.2,7.6,57,96523,0,0,321,0,0,0,0,0,0,0,180,4.1,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2013,4,20,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,8,63,95815,0,0,335,0,0,0,0,0,0,0,130,3.1,5,5,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,4,20,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,7,63,95797,0,0,329,0,0,0,0,0,0,0,160,2.6,5,5,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,20,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,13.5,6.9,64,96558,0,0,309,0,0,0,0,0,0,0,290,1,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,20,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,13,7,67,95778,0,0,325,0,0,0,0,0,0,0,325,1,5,5,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,21,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,11,6,71,95740,0,0,317,0,0,0,0,0,0,0,330,1.5,6,6,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,4,21,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.3,6.2,81,96421,0,0,290,0,0,0,0,0,0,0,40,2.1,0,0,8000,77777,9,999999999,18,0,0,88,0.2,0,0 +2013,4,21,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,6,81,95702,0,0,289,0,0,0,0,0,0,0,246,1,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,4,21,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,5,81,95683,0,0,284,0,0,0,0,0,0,0,10,0.5,0,0,6000,77777,9,999999999,16,0,0,88,0.2,0,0 +2013,4,21,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,5.5,84,96216,0,0,284,0,0,0,0,0,0,0,38,0.5,0,0,5000,77777,9,999999999,16,0,0,88,0.2,0,0 +2013,4,21,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,5,87,95663,0,0,280,0,0,0,0,0,0,0,255,0,0,0,3000,77777,9,999999999,16,0,0,88,0.2,0,0 +2013,4,21,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,4,87,95644,0,0,275,0,0,0,0,0,0,0,254,0,0,0,4000,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,4,21,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,5,87,95663,80,376,280,21,2,21,2319,0,2310,674,177,1,0,0,3000,77777,9,999999999,16,0,0,88,0.2,0,0 +2013,4,21,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,6,81,95702,352,1352,289,179,367,83,20085,15335,9374,3052,330,1.5,0,0,4000,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,4,21,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,8,67,95797,590,1352,312,375,608,109,43631,35816,12740,4707,206,1,0,0,4000,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,4,21,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16.6,7.8,56,96237,778,1352,323,542,759,105,65543,46093,12789,5109,199,1,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2013,4,21,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,9,52,95888,902,1352,335,654,824,105,80705,49622,12956,5350,91,1,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,4,21,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,22,8,41,95942,955,1352,355,704,765,164,84642,51889,19779,8060,160,2.6,1,1,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,4,21,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,23.1,7.8,37,96098,932,1352,353,683,837,106,84617,51089,13202,5479,170,3.6,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2013,4,21,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,24,8,36,95977,836,1352,358,595,784,110,72363,48214,13477,5463,190,5.1,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2013,4,21,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,24,8,36,95977,672,1352,358,447,665,117,52663,40947,13776,5255,210,5.7,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2013,4,21,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,22.6,8.4,40,96165,453,1352,351,258,478,98,29361,24565,11166,3849,210,6.2,0,0,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,4,21,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,8,43,95924,192,1352,350,69,105,54,7595,980,5976,1741,200,5.1,1,1,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,4,21,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,19,7,46,95888,0,916,344,0,0,0,0,0,0,0,150,4.1,2,2,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,21,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,18.2,5.7,44,96323,0,0,328,0,0,0,0,0,0,0,130,3.6,0,0,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2013,4,21,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18,5,42,95870,0,0,333,0,0,0,0,0,0,0,140,3.6,1,1,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,4,21,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,16,5,48,95834,0,0,328,0,0,0,0,0,0,0,288,0.5,2,2,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,4,21,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,13.9,4.9,55,96367,0,0,308,0,0,0,0,0,0,0,41,0.5,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,4,21,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,7,67,95778,0,0,325,0,0,0,0,0,0,0,150,2.1,5,5,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,22,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,8,76,95759,0,0,328,0,0,0,0,0,0,0,150,1.5,7,7,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,4,22,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,11.7,7.7,76,96325,0,0,302,0,0,0,0,0,0,0,180,2.1,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2013,4,22,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,10,6,76,95721,0,0,317,0,0,0,0,0,0,0,160,2.1,7,7,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,4,22,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,11,8,82,95740,0,0,329,0,0,0,0,0,0,0,130,3.1,8,8,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,4,22,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,5.8,80,96302,0,0,289,0,0,0,0,0,0,0,340,1.5,0,0,1000,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,4,22,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,5,87,95663,0,0,280,0,0,0,0,0,0,0,320,1.5,0,0,6000,77777,9,999999999,16,0,0,88,0.2,0,0 +2013,4,22,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,6,87,95683,0,0,285,0,0,0,0,0,0,0,40,2.1,0,0,5000,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,4,22,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.3,7.3,87,96345,76,359,311,17,0,17,1685,0,1697,587,40,2.1,6,6,4000,77777,9,999999999,20,0,0,88,0.2,0,0 +2013,4,22,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,7,76,95740,348,1352,298,176,362,82,19715,14745,9285,3017,53,1,0,0,3000,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,22,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,8,63,95815,585,1352,316,371,607,108,43182,35534,12626,4659,69,1,0,0,6000,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,4,22,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,16.9,8.1,56,96366,773,1352,347,469,444,216,53611,34181,24752,9035,251,1,6,6,6000,7500,9,999999999,21,0,0,88,0.2,0,0 +2013,4,22,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,19,7,46,95888,896,1352,344,650,761,146,78236,50637,17612,7134,78,1,2,2,9900,7500,9,999999999,19,0,0,88,0.2,0,0 +2013,4,22,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,7,40,95924,949,1352,349,700,823,122,85971,52100,15092,6251,170,2.1,1,1,9900,7500,9,999999999,19,0,0,88,0.2,0,0 +2013,4,22,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,23,7.2,36,96239,926,1352,370,656,740,149,79128,49343,18095,7373,160,2.6,4,4,9900,7500,9,999999999,19,0,0,88,0.2,0,0 +2013,4,22,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,24,7,34,95977,829,1352,356,590,783,110,71792,48486,13417,5429,180,4.1,0,0,9900,7500,9,999999999,19,0,0,88,0.2,0,0 +2013,4,22,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,24,7,34,95977,666,1352,356,443,662,117,52091,41034,13771,5236,160,4.6,0,0,9900,7500,9,999999999,19,0,0,88,0.2,0,0 +2013,4,22,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,23.8,7.7,36,96186,447,1352,378,236,380,110,26575,20791,12454,4175,160,4.6,5,5,9900,7500,9,999999999,20,0,0,88,0.2,0,0 +2013,4,22,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,8,38,95959,186,1352,353,66,100,52,7258,727,5766,1679,170,4.6,0,0,9900,7500,9,999999999,21,0,0,88,0.2,0,0 +2013,4,22,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,8,43,95924,0,889,350,0,0,0,0,0,0,0,220,2.6,1,1,9900,7500,9,999999999,21,0,0,88,0.2,0,0 +2013,4,22,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19.2,7.8,48,96247,0,0,358,0,0,0,0,0,0,0,200,1,6,6,9900,7500,9,999999999,20,0,0,88,0.2,0,0 +2013,4,22,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,9,59,95852,0,0,343,0,0,0,0,0,0,0,100,1.5,4,4,9900,7500,9,999999999,23,0,0,88,0.2,0,0 +2013,4,22,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,9,59,95852,0,0,343,0,0,0,0,0,0,0,170,1,4,4,9900,7500,9,999999999,23,0,0,88,0.2,0,0 +2013,4,22,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14.3,7.7,64,96242,0,0,334,0,0,0,0,0,0,0,270,1.5,6,6,9900,7500,9,999999999,20,0,0,88,0.2,0,0 +2013,4,22,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,15,8,63,95815,0,0,335,0,0,0,0,0,0,0,180,0.5,5,5,9900,7500,9,999999999,21,0,0,88,0.2,0,0 +2013,4,23,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,7,71,95759,0,0,302,0,0,0,0,0,0,0,163,0.5,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,23,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,12,6.8,70,96180,0,0,332,0,0,0,0,0,0,0,223,1,8,8,7000,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,23,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,7,76,95740,0,0,298,0,0,0,0,0,0,0,30,1.5,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,23,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,6,76,95721,0,0,293,0,0,0,0,0,0,0,30,1,0,0,6000,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,4,23,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.1,6.1,76,96115,0,0,322,0,0,0,0,0,0,0,40,1.5,8,8,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,4,23,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,7,76,95740,0,0,298,0,0,0,0,0,0,0,201,0.5,0,0,7000,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,23,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,7,76,95740,0,0,298,0,0,0,0,0,0,0,350,2.1,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,23,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.4,7.2,75,96187,73,343,329,13,0,13,1235,0,1243,455,20,2.1,8,8,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,23,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,7,63,95797,344,1351,311,172,357,82,19354,14325,9199,2982,50,1.5,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,23,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,8,55,95852,581,1351,325,367,603,107,42685,35200,12556,4625,328,0,0,0,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,4,23,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,19.5,8.9,50,96167,767,1351,361,465,439,215,53011,33622,24703,8997,50,1,6,6,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,4,23,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,9,46,95924,891,1351,345,644,764,141,77580,49573,17028,6911,325,1,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,4,23,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,9,41,95959,943,1351,354,692,737,178,82510,50945,21321,8601,180,2.1,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,4,23,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,24.4,7.6,34,95970,920,1351,394,452,220,302,51544,18868,34676,12615,180,3.1,8,8,8000,7500,9,999999999,20,0,0,88,0.2,0,0 +2013,4,23,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,7,32,95994,823,1351,361,585,704,156,69156,48113,18528,7287,160,3.6,0,0,9900,7500,9,999999999,19,0,0,88,0.2,0,0 +2013,4,23,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,8,34,95994,660,1351,362,436,552,167,49843,38764,19146,6894,180,6.2,0,0,9900,7500,9,999999999,20,0,0,88,0.2,0,0 +2013,4,23,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,23.7,8.7,38,95957,441,1351,392,167,110,131,18490,6508,14584,4656,180,5.7,8,8,9900,7500,9,999999999,22,0,0,88,0.2,0,0 +2013,4,23,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,22,9,43,95942,181,1351,392,32,0,32,3160,0,3183,1179,160,4.1,9,9,9900,7500,9,999999999,23,0,0,88,0.2,0,0 +2013,4,23,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,20,9,49,95906,0,863,381,0,0,0,0,0,0,0,150,3.6,9,9,9900,7500,9,999999999,23,0,0,88,0.2,0,0 +2013,4,23,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,18.7,9.5,55,96067,0,0,341,0,0,0,0,0,0,0,150,3.6,1,1,9900,7500,9,999999999,24,0,0,88,0.2,0,0 +2013,4,23,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18,9,56,95870,0,0,345,0,0,0,0,0,0,0,170,3.1,3,3,9900,7500,9,999999999,23,0,0,88,0.2,0,0 +2013,4,23,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,9,63,95834,0,0,341,0,0,0,0,0,0,0,160,2.1,5,5,9900,7500,9,999999999,23,0,0,88,0.2,0,0 +2013,4,23,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,14.9,8.6,66,96083,0,0,335,0,0,0,0,0,0,0,160,2.1,5,5,9900,7500,9,999999999,22,0,0,88,0.2,0,0 +2013,4,23,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,8,63,95815,0,0,335,0,0,0,0,0,0,0,160,2.6,5,5,9900,7500,9,999999999,21,0,0,88,0.2,0,0 +2013,4,24,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,8,67,95797,0,0,330,0,0,0,0,0,0,0,150,1.5,5,5,9900,7500,9,999999999,21,0,0,88,0.2,0,0 +2013,4,24,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10.5,6.1,74,96028,0,0,301,0,0,0,0,0,0,0,201,1,1,1,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,4,24,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,6,81,95702,0,0,289,0,0,0,0,0,0,0,205,1,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,4,24,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,7,82,95721,0,0,294,0,0,0,0,0,0,0,223,1,0,0,9000,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,24,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.7,5.3,79,96041,0,0,292,0,0,0,0,0,0,0,300,1.5,1,1,5000,77777,9,999999999,16,0,0,88,0.2,0,0 +2013,4,24,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,6,87,95683,0,0,285,0,0,0,0,0,0,0,217,1,0,0,3000,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,4,24,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,8,93,95702,0,0,291,0,0,0,0,0,0,0,30,2.1,0,0,5000,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,4,24,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.1,5.8,85,96067,69,326,290,18,0,18,1747,0,1759,589,270,1.5,1,1,4000,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,4,24,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,7,71,95759,340,1350,302,169,351,81,18990,13897,9115,2948,292,0,0,0,5000,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,24,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,8,63,95815,576,1350,316,363,599,107,42177,34851,12500,4595,163,1,0,0,7000,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,4,24,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17.8,8.7,55,95975,762,1350,346,510,683,124,60704,43062,14853,5842,334,1,4,4,7000,77777,9,999999999,22,0,0,88,0.2,0,0 +2013,4,24,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,9,49,95906,885,1350,340,639,800,115,78074,49238,14102,5782,190,2.1,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,4,24,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,9,41,95959,937,1350,361,686,815,121,84197,50691,14894,6163,150,3.1,1,1,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,4,24,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,24,8.5,37,95821,913,1350,377,644,734,147,77539,48339,17813,7249,190,4.1,4,4,9900,77777,9,999999999,22,0,0,88,0.2,0,0 +2013,4,24,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,24.5,8.2,35,95907,817,1350,360,578,777,108,70187,47404,13168,5317,208,4.6,0,0,9950,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,4,24,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,8,34,95994,653,1350,362,431,654,115,50646,39885,13515,5123,160,5.1,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2013,4,24,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,23.5,7.4,36,95850,435,1350,376,227,371,108,25541,19868,12158,4054,160,5.7,5,5,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,24,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,22,8,41,95942,175,1350,355,60,87,49,6562,265,5348,1558,190,4.1,1,1,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,4,24,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,19.5,7.8,47,95932,0,837,347,0,0,0,0,0,0,0,292,4.1,2,2,9950,77777,9,999999999,20,0,0,88,0.2,0,0 +2013,4,24,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17,7.7,54,95923,0,0,347,0,0,0,0,0,0,0,150,4.1,6,6,9950,7500,9,999999999,20,0,0,88,0.2,0,0 +2013,4,24,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,7,55,95834,0,0,333,0,0,0,0,0,0,0,150,3.6,3,3,9900,7500,9,999999999,19,0,0,88,0.2,0,0 +2013,4,24,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,7,59,95815,0,0,331,0,0,0,0,0,0,0,160,3.6,4,4,9900,7500,9,999999999,19,0,0,88,0.2,0,0 +2013,4,24,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13.8,6.5,61,95987,0,0,340,0,0,0,0,0,0,0,160,2.1,8,8,9900,7500,9,999999999,18,0,0,88,0.2,0,0 +2013,4,24,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,6,62,95778,0,0,321,0,0,0,0,0,0,0,160,3.1,4,4,9900,7500,9,999999999,17,0,0,88,0.2,0,0 +2013,4,25,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,12.4,6,65,95901,0,0,321,0,0,0,0,0,0,0,109,3.1,5,5,9950,7500,9,999999999,17,0,0,88,0.2,0,0 +2013,4,25,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11.7,6,68,96023,0,0,330,0,0,0,0,0,0,0,180,3.1,8,8,9950,7500,9,999999999,17,0,0,88,0.2,0,0 +2013,4,25,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,10,6,76,95721,0,0,317,0,0,0,0,0,0,0,180,2.6,7,7,9900,7500,9,999999999,17,0,0,88,0.2,0,0 +2013,4,25,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,10,6,76,95721,0,0,317,0,0,0,0,0,0,0,140,2.1,7,7,9900,7500,9,999999999,17,0,0,88,0.2,0,0 +2013,4,25,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.2,6.1,81,95994,0,0,325,0,0,0,0,0,0,0,170,1.5,9,9,8000,7500,9,999999999,17,0,0,88,0.2,0,0 +2013,4,25,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,5,81,95683,0,0,318,0,0,0,0,0,0,0,294,1,9,9,6000,5400,9,999999999,16,0,0,88,0.2,0,0 +2013,4,25,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,5,87,95663,0,0,314,0,0,0,0,0,0,0,38,1,9,9,6000,5400,9,999999999,16,0,0,88,0.2,0,0 +2013,4,25,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,8.2,5.5,83,96050,65,309,320,9,0,9,858,0,864,330,128,0.5,9,9,8000,5400,9,999999999,16,0,0,88,0.2,0,0 +2013,4,25,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,11,6,71,95740,335,1349,317,147,232,90,16392,9910,10014,3146,310,1,6,6,9900,5400,9,999999999,17,0,0,88,0.2,0,0 +2013,4,25,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,13,7,67,95778,571,1349,325,332,442,145,37640,29210,16499,5762,309,1,5,5,9900,5400,9,999999999,19,0,0,88,0.2,0,0 +2013,4,25,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,16,7,55,95834,757,1349,333,516,682,134,61105,44568,15943,6212,46,1,3,3,9900,5400,9,999999999,19,0,0,88,0.2,0,0 +2013,4,25,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,19,8,49,95888,879,1349,345,632,810,105,77772,49221,12924,5310,190,1.5,2,2,9900,5400,9,999999999,21,0,0,88,0.2,0,0 +2013,4,25,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,8,43,95924,930,1349,350,682,737,174,81358,51070,20818,8389,180,4.6,1,1,9900,5400,9,999999999,21,0,0,88,0.2,0,0 +2013,4,25,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,20,7.3,44,95826,907,1349,371,445,220,297,50690,18796,34064,12376,170,6.7,8,8,9900,7500,9,999999999,19,0,0,88,0.2,0,0 +2013,4,25,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,19,7,46,95888,810,1349,344,572,695,155,67599,47472,18393,7207,170,8.7,2,2,9900,7500,9,999999999,19,0,0,88,0.2,0,0 +2013,4,25,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18,7,49,95870,647,1349,339,425,598,138,49146,39202,16005,5912,160,7.7,2,2,9900,7500,9,999999999,19,0,0,88,0.2,0,0 +2013,4,25,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18.6,7.4,48,95744,429,1349,355,209,297,114,23372,16411,12858,4204,160,5.7,6,6,9900,7500,9,999999999,19,0,0,88,0.2,0,0 +2013,4,25,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18,7,49,95870,170,1349,343,56,77,47,6182,104,5135,1496,160,5.7,3,3,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,25,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,7,55,95834,0,811,333,0,0,0,0,0,0,0,160,3.1,3,3,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,25,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,14.4,7.1,61,95771,0,0,319,0,0,0,0,0,0,0,170,3.6,1,1,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,25,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,7,63,95797,0,0,324,0,0,0,0,0,0,0,150,2.1,3,3,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,25,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,7,67,95778,0,0,325,0,0,0,0,0,0,0,140,3.1,5,5,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,25,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,12.1,7.2,72,95823,0,0,309,0,0,0,0,0,0,0,180,3.1,1,1,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,25,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,11,7,76,95740,0,0,322,0,0,0,0,0,0,0,140,3.1,7,7,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,26,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,7,82,95721,0,0,294,0,0,0,0,0,0,0,170,2.6,0,0,6000,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,26,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,6.3,83,95915,0,0,306,0,0,0,0,0,0,0,170,3.1,5,5,500,77777,0,999999999,18,0,0,88,0.2,0,0 +2013,4,26,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,6,93,95663,0,0,297,0,0,0,0,0,0,0,170,3.6,5,5,2000,77777,0,999999999,17,0,0,88,0.2,0,0 +2013,4,26,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,7.7,6.8,94,95834,0,0,328,0,0,0,0,0,0,0,245,2.8,10,10,1250,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,26,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,8.3,7.5,95,96005,0,0,332,0,0,0,0,0,0,0,230,2.1,10,10,500,30,0,999999999,20,0,0,88,0.2,0,0 +2013,4,26,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,8,7,93,95683,0,0,330,0,0,0,0,0,0,0,170,2.1,10,10,2000,30,0,999999999,19,0,0,88,0.2,0,0 +2013,4,26,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,7,93,95683,0,0,321,0,0,0,0,0,0,0,170,3.6,9,9,2000,120,0,999999999,19,0,0,88,0.2,0,0 +2013,4,26,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.5,7.4,93,96169,62,292,332,5,0,5,493,0,496,199,180,2.6,10,10,5000,60,0,999999999,20,0,0,88,0.2,0,0 +2013,4,26,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,7,87,95702,331,1349,334,51,0,51,5077,0,5116,2056,130,3.6,10,10,7000,600,0,999999999,19,0,0,88,0.2,0,0 +2013,4,26,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,7,82,95721,566,1349,339,112,0,112,11267,0,11360,4726,120,2.1,10,10,8000,270,0,999999999,19,0,0,88,0.2,0,0 +2013,4,26,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.3,6.7,78,96459,751,1349,340,164,3,162,19071,219,18951,7205,190,2.1,10,10,7000,270,0,999999999,18,0,0,88,0.2,0,0 +2013,4,26,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,8,82,95740,873,1349,336,325,25,309,36728,2151,35147,12384,270,3.1,9,9,8000,270,0,999999999,21,0,0,88,0.2,0,0 +2013,4,26,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,7,71,95759,924,1349,339,350,67,304,39930,5785,34881,12710,100,2.1,9,9,7000,450,0,999999999,19,0,0,88,0.2,0,0 +2013,4,26,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13.6,6.9,64,96475,901,1349,347,339,57,300,38547,4952,34394,12416,101,1.5,9,9,7000,600,0,999999999,19,0,0,88,0.2,0,0 +2013,4,26,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,7,59,95815,804,1349,334,528,559,195,61226,41405,22722,8602,331,1.5,5,5,7000,77777,0,999999999,19,0,0,88,0.2,0,0 +2013,4,26,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,7,55,95834,641,1349,320,421,645,114,49403,39558,13457,5073,170,3.6,0,0,8000,77777,0,999999999,19,0,0,88,0.2,0,0 +2013,4,26,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15.9,6.4,53,96385,423,1349,332,232,437,95,26313,21904,10821,3661,190,5.7,3,3,8000,77777,0,999999999,18,0,0,88,0.2,0,0 +2013,4,26,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,6,55,95815,164,1349,328,53,115,39,5923,0,4375,1318,200,5.1,3,3,9900,77777,0,999999999,17,0,0,88,0.2,0,0 +2013,4,26,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,6,55,95815,0,786,328,0,0,0,0,0,0,0,200,4.1,3,3,9900,77777,0,999999999,17,0,0,88,0.2,0,0 +2013,4,26,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,13.2,6,62,96524,0,0,306,0,0,0,0,0,0,0,200,2.6,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,4,26,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,6,62,95778,0,0,321,0,0,0,0,0,0,0,160,2.6,4,4,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,4,26,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,5,71,95721,0,0,309,0,0,0,0,0,0,0,270,2.6,5,5,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2013,4,26,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.6,5.3,75,96512,0,0,326,0,0,0,0,0,0,0,30,2.1,9,9,8000,5100,9,999999999,16,0,0,88,0.2,0,0 +2013,4,26,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,6,76,95721,0,0,329,0,0,0,0,0,0,0,50,2.1,9,9,7000,4800,9,999999999,17,0,0,88,0.2,0,0 +2013,4,27,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,5,76,95702,0,0,323,0,0,0,0,0,0,0,250,1.5,9,9,6000,4500,9,999999999,16,0,0,88,0.2,0,0 +2013,4,27,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8.6,4.8,77,96502,0,0,303,0,0,0,0,0,0,0,133,1,5,5,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,4,27,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,5,81,95683,0,0,296,0,0,0,0,0,0,0,343,1,3,3,6000,77777,9,999999999,16,0,0,88,0.2,0,0 +2013,4,27,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,5,81,95683,0,0,284,0,0,0,0,0,0,0,210,2.1,0,0,6000,77777,9,999999999,16,0,0,88,0.2,0,0 +2013,4,27,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6.3,4,85,96447,0,0,276,0,0,0,0,0,0,0,56,0,0,0,2000,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,4,27,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,3,87,95624,0,0,270,0,0,0,0,0,0,0,164,1,0,0,3000,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,4,27,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,4,93,95624,0,0,271,0,0,0,0,0,0,0,97,1.5,0,0,3000,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,4,27,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5.6,3.2,85,96556,58,276,272,15,0,15,1483,0,1493,504,350,2.6,0,0,2000,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,4,27,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,4,81,95663,327,1348,279,161,342,78,18070,13263,8803,2829,40,1.5,0,0,4000,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,4,27,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,6,67,95759,562,1348,301,352,589,106,40864,34562,12414,4530,38,1,0,0,5000,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,4,27,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14.3,5.6,56,96469,746,1348,317,516,744,104,62192,45674,12583,4979,40,1.5,1,1,7000,77777,9,999999999,16,0,0,88,0.2,0,0 +2013,4,27,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,5,48,95834,868,1348,317,628,824,97,77596,50424,12073,4954,290,1,0,0,7000,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,4,27,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,5,42,95870,918,1348,340,666,817,109,82230,51240,13554,5602,180,3.6,3,3,7000,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,4,27,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19.4,3.7,35,96345,895,1348,337,654,797,125,79674,52030,15306,6254,150,4.1,1,1,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,4,27,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,21,2,28,95924,798,1348,356,527,572,189,61338,43071,22063,8361,140,4.1,5,5,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,4,27,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,1,26,95924,635,1348,335,420,628,124,49002,41037,14527,5399,140,4.1,0,0,9900,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,4,27,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,20.3,2.3,30,96229,417,1348,340,232,457,91,26408,22954,10355,3512,170,5.1,1,1,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,4,27,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,3,32,95906,159,1348,333,51,116,38,5728,0,4223,1269,180,4.1,0,0,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,4,27,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,4,42,95852,0,761,327,0,0,0,0,0,0,0,220,3.1,1,1,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,4,27,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15.6,3.7,45,96190,0,0,328,0,0,0,0,0,0,0,160,3.1,3,3,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,4,27,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14,3,47,95797,0,0,317,0,0,0,0,0,0,0,192,0.5,2,2,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,4,27,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,12,3,54,95759,0,0,311,0,0,0,0,0,0,0,273,0.5,3,3,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,4,27,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.9,2,58,96178,0,0,288,0,0,0,0,0,0,0,20,2.6,0,0,7000,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,4,27,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,2,61,95702,0,0,285,0,0,0,0,0,0,0,10,2.1,0,0,6000,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,4,28,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,2,66,95683,0,0,281,0,0,0,0,0,0,0,255,0.5,0,0,6000,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,4,28,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7.7,1.4,64,96135,0,0,291,0,0,0,0,0,0,0,33,1,3,3,5000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,4,28,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,2,70,95663,0,0,277,0,0,0,0,0,0,0,17,1,0,0,6000,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,4,28,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,2,70,95663,0,0,277,0,0,0,0,0,0,0,11,0.5,0,0,6000,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,4,28,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,5.9,1.3,72,96071,0,0,299,0,0,0,0,0,0,0,167,1,8,8,6000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,4,28,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,2,70,95663,0,0,277,0,0,0,0,0,0,0,30,2.6,0,0,6000,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,4,28,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,1,66,95663,0,0,276,0,0,0,0,0,0,0,5,0,0,0,4000,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,4,28,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6.4,1.2,69,96109,55,259,307,7,0,7,723,0,727,278,40,2.6,9,9,3000,6900,9,999999999,11,0,0,88,0.2,0,0 +2013,4,28,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,2,61,95702,323,1347,320,82,1,82,9161,51,9159,2900,30,1.5,9,9,5000,6900,9,999999999,12,0,0,88,0.2,0,0 +2013,4,28,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,2,54,95740,557,1347,329,181,17,174,20207,1269,19508,6425,190,1,9,9,5000,7500,9,999999999,11,0,0,88,0.2,0,0 +2013,4,28,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14.3,2.6,45,96195,741,1347,345,265,46,240,29969,3814,27287,9487,239,0,9,9,7000,7500,9,999999999,12,0,0,88,0.2,0,0 +2013,4,28,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,3,37,95870,862,1347,364,323,67,280,36757,5821,32025,11534,235,1,9,9,7000,7500,9,999999999,13,0,0,88,0.2,0,0 +2013,4,28,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19,2,32,95888,912,1347,367,347,25,331,39365,2256,37710,13291,220,2.1,9,9,7000,7500,9,999999999,11,0,0,88,0.2,0,0 +2013,4,28,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,20.9,0.8,26,96050,889,1347,368,438,214,297,49915,18960,34039,12226,180,2.1,8,8,7000,7500,9,999999999,10,0,0,88,0.2,0,0 +2013,4,28,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,22,2,27,95942,792,1347,341,562,695,153,66317,48761,18172,7070,160,3.6,0,0,9900,7500,9,999999999,11,0,0,88,0.2,0,0 +2013,4,28,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,22,2,27,95942,629,1347,341,414,627,121,48367,40444,14230,5289,170,3.1,0,0,9900,7500,9,999999999,11,0,0,88,0.2,0,0 +2013,4,28,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,21.7,2.9,29,95970,411,1347,358,220,407,96,24904,20818,10863,3632,170,5.1,4,4,9900,7500,9,999999999,12,0,0,88,0.2,0,0 +2013,4,28,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,3,32,95906,153,1347,333,49,65,41,5381,0,4577,1332,160,4.1,0,0,9900,7500,9,999999999,13,0,0,88,0.2,0,0 +2013,4,28,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18,3,37,95870,0,737,324,0,0,0,0,0,0,0,150,3.1,0,0,9900,7500,9,999999999,13,0,0,88,0.2,0,0 +2013,4,28,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15.4,2.9,43,96064,0,0,312,0,0,0,0,0,0,0,170,2.6,0,0,9900,7500,9,999999999,12,0,0,88,0.2,0,0 +2013,4,28,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,4,48,95815,0,0,322,0,0,0,0,0,0,0,150,2.1,2,2,9900,7500,9,999999999,14,0,0,88,0.2,0,0 +2013,4,28,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,4,48,95815,0,0,322,0,0,0,0,0,0,0,140,2.6,2,2,9900,7500,9,999999999,14,0,0,88,0.2,0,0 +2013,4,28,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,10.7,2.7,58,96183,0,0,292,0,0,0,0,0,0,0,173,1,0,0,9900,7500,9,999999999,12,0,0,88,0.2,0,0 +2013,4,28,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,10,3,62,95721,0,0,305,0,0,0,0,0,0,0,174,0,4,4,9900,7500,9,999999999,13,0,0,88,0.2,0,0 +2013,4,29,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,8.9,2.8,66,95943,0,0,302,0,0,0,0,0,0,0,49,0,5,5,8450,7500,9,999999999,12,0,0,88,0.2,0,0 +2013,4,29,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7.8,2.7,70,96165,0,0,293,0,0,0,0,0,0,0,249,0,3,3,7000,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,4,29,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,2,70,95663,0,0,289,0,0,0,0,0,0,0,340,0,3,3,7000,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,4,29,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,1,70,95644,0,0,272,0,0,0,0,0,0,0,20,2.1,0,0,7000,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,4,29,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.4,3.1,69,96035,0,0,283,0,0,0,0,0,0,0,80,1.5,0,0,2500,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,4,29,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,7.7,2.5,70,95849,0,0,299,0,0,0,0,0,0,0,328,1,6,6,4750,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,4,29,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,2,70,95663,0,0,277,0,0,0,0,0,0,0,130,0.5,0,0,7000,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,4,29,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5.9,1.4,73,96128,51,242,288,13,0,13,1216,0,1224,424,294,0.5,5,5,6000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,4,29,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,2,66,95683,319,1347,281,156,336,76,17478,12799,8589,2749,360,1.5,0,0,6000,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,4,29,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,3,58,95740,552,1347,294,346,529,129,39526,34026,14786,5208,20,1.5,0,0,6000,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,4,29,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,14.3,3.4,48,96185,736,1347,339,342,180,244,38527,15093,27634,9534,199,1,8,8,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,4,29,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,4,45,95834,856,1347,316,619,720,161,73554,50493,19186,7610,16,1,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,4,29,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,19,3,34,95888,907,1347,329,666,739,169,79532,52513,20249,8116,190,1.5,0,0,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,4,29,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,20.8,2.4,30,95992,883,1347,369,433,225,286,49452,19507,32839,11888,180,2.6,8,8,9900,7500,9,999999999,12,0,0,88,0.2,0,0 +2013,4,29,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,22,4,31,95942,786,1347,343,554,690,152,65413,47788,17985,6994,150,3.6,0,0,9900,7500,9,999999999,14,0,0,88,0.2,0,0 +2013,4,29,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,2,25,95959,623,1347,346,409,588,137,47256,39553,15915,5798,180,5.7,0,0,9900,7500,9,999999999,11,0,0,88,0.2,0,0 +2013,4,29,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,21.8,2.7,28,95990,406,1347,364,195,289,108,21818,15690,12113,3925,180,3.1,6,6,9900,7500,9,999999999,12,0,0,88,0.2,0,0 +2013,4,29,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,4,35,95906,148,1347,334,46,58,40,5079,0,4384,1278,160,4.1,0,0,9900,7500,9,999999999,14,0,0,88,0.2,0,0 +2013,4,29,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18,5,42,95870,0,713,333,0,0,0,0,0,0,0,150,3.6,1,1,9900,7500,9,999999999,15,0,0,88,0.2,0,0 +2013,4,29,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15.6,5.5,51,96143,0,0,316,0,0,0,0,0,0,0,170,3.1,0,0,9900,7500,9,999999999,16,0,0,88,0.2,0,0 +2013,4,29,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,7,63,95797,0,0,329,0,0,0,0,0,0,0,160,2.6,5,5,9900,7500,9,999999999,19,0,0,88,0.2,0,0 +2013,4,29,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,7,63,95797,0,0,329,0,0,0,0,0,0,0,150,3.1,5,5,9900,7500,9,999999999,19,0,0,88,0.2,0,0 +2013,4,29,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,11.5,6.2,70,96161,0,0,299,0,0,0,0,0,0,0,180,3.1,0,0,9900,7500,9,999999999,18,0,0,88,0.2,0,0 +2013,4,29,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,10,6,76,95721,0,0,317,0,0,0,0,0,0,0,190,2.1,7,7,9900,7500,9,999999999,17,0,0,88,0.2,0,0 +2013,4,30,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,6,81,95702,0,0,289,0,0,0,0,0,0,0,170,2.6,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,4,30,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.5,5.6,82,96075,0,0,286,0,0,0,0,0,0,0,160,2.1,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,4,30,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,5,87,95663,0,0,296,0,0,0,0,0,0,0,73,1,5,5,4000,77777,0,999999999,16,0,0,88,0.2,0,0 +2013,4,30,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,4,87,95644,0,0,291,0,0,0,0,0,0,0,160,1.5,5,5,3000,77777,0,999999999,14,0,0,88,0.2,0,0 +2013,4,30,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5.3,4.6,95,96012,0,0,306,0,0,0,0,0,0,0,180,1.5,9,9,600,60,0,999999999,15,0,0,88,0.2,0,0 +2013,4,30,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5,5,100,95624,0,0,305,0,0,0,0,0,0,0,160,1.5,9,9,400,30,0,999999999,16,0,0,88,0.2,0,0 +2013,4,30,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4,3,93,95604,0,0,299,0,0,0,0,0,0,0,330,1.5,9,9,400,30,0,999999999,13,0,0,88,0.2,0,0 +2013,4,30,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,2.9,2.4,97,96030,47,226,277,12,0,12,1128,0,1136,396,83,0.5,5,5,300,77777,0,999999999,12,0,0,88,0.2,0,0 +2013,4,30,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,4,93,95624,314,1346,287,142,258,81,15781,10017,9094,2857,49,0.5,5,5,1300,77777,0,999999999,14,0,0,88,0.2,0,0 +2013,4,30,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,6,87,95683,547,1346,285,340,526,126,38853,32832,14482,5110,329,1,0,0,3500,77777,0,999999999,17,0,0,88,0.2,0,0 +2013,4,30,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12.5,5.2,61,95991,730,1346,303,503,738,102,60537,45130,12370,4874,92,1,0,0,7000,77777,0,999999999,16,0,0,88,0.2,0,0 +2013,4,30,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,17,5,45,95852,851,1346,332,612,815,97,75489,49793,12010,4910,31,0.5,2,2,9900,77777,0,999999999,15,0,0,88,0.2,0,0 +2013,4,30,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,20,5,37,95906,901,1346,335,659,802,122,80492,51636,14975,6140,132,2.1,0,0,9900,77777,0,999999999,15,0,0,88,0.2,0,0 +2013,4,30,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,21,5.9,37,95863,877,1346,361,592,605,197,69382,44764,23253,9065,170,4.1,5,5,9900,77777,0,999999999,17,0,0,88,0.2,0,0 +2013,4,30,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,5,37,95906,780,1346,335,548,761,107,66327,47412,13030,5204,170,6.2,0,0,9900,77777,0,999999999,15,0,0,88,0.2,0,0 +2013,4,30,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,5,37,95906,617,1346,335,402,626,115,46987,38795,13501,5027,160,6.2,0,0,9900,77777,0,999999999,15,0,0,88,0.2,0,0 +2013,4,30,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,19,5.8,42,95874,400,1346,351,203,345,100,22760,17441,11260,3699,160,5.1,5,5,9900,77777,0,999999999,17,0,0,88,0.2,0,0 +2013,4,30,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,7,52,95852,143,1346,338,43,48,38,4732,0,4177,1222,180,6.2,3,3,9900,77777,0,999999999,19,0,0,88,0.2,0,0 +2013,4,30,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,11.9,7.1,72,95829,0,689,329,0,0,0,0,0,0,0,155,3.8,5,5,9900,77777,0,999999999,19,0,0,88,0.2,0,0 +2013,4,30,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,10.9,7,77,95914,0,0,323,0,0,0,0,0,0,0,205,2.9,5,5,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,30,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,10.1,6.7,80,95825,0,0,322,0,0,0,0,0,0,0,210,2.8,7,7,9000,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,30,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.3,7.4,82,95830,0,0,294,0,0,0,0,0,0,0,207,2.4,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,30,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.6,8,84,95920,0,0,294,0,0,0,0,0,0,0,207,2.6,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,4,30,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.6,8.6,87,95816,0,0,289,0,0,0,0,0,0,0,157,2.8,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,5,1,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.8,9.3,90,95821,0,0,343,0,0,0,0,0,0,0,155,2.7,9,9,7000,3000,9,999999999,26,0,0,88,0.2,0,0 +2008,5,1,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.1,8.9,92,95893,0,0,322,0,0,0,0,0,0,0,157,2.7,6,6,6000,3000,9,999999999,24,0,0,88,0.2,0,0 +2008,5,1,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.5,8.8,96,95798,0,0,313,0,0,0,0,0,0,0,160,2.5,5,5,5000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,5,1,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.5,8.8,96,95798,0,0,309,0,0,0,0,0,0,0,157,2.5,3,3,4000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,5,1,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.5,8.9,96,95915,0,0,308,0,0,0,0,0,0,0,157,2.5,5,5,3000,77777,9,999999999,22,0,0,88,0.2,0,0 +2008,5,1,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,9.8,9.1,95,95833,0,0,337,0,0,0,0,0,0,0,155,2.5,10,10,800,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,5,1,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,9,93,95721,0,0,332,0,0,0,0,0,0,0,150,2.1,9,9,2500,450,9,999999999,23,0,0,88,0.2,0,0 +2008,5,1,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,9.2,95,96189,47,226,342,4,0,4,378,0,380,153,150,2.6,10,10,2500,600,9,999999999,24,0,0,88,0.2,0,0 +2008,5,1,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,9,93,95721,314,1346,341,48,0,48,4682,0,4718,1896,150,2.6,10,10,3000,600,9,999999999,23,0,0,88,0.2,0,0 +2008,5,1,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,9,87,95740,547,1346,346,107,0,107,10705,0,10793,4484,160,1.5,10,10,4000,900,9,999999999,23,0,0,88,0.2,0,0 +2008,5,1,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11.9,8.9,82,96357,730,1346,341,258,42,235,29050,3377,26624,9274,160,2.1,9,9,6000,900,9,999999999,23,0,0,88,0.2,0,0 +2008,5,1,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,10,82,95778,851,1346,347,314,55,279,35583,4565,31835,11434,180,5.1,9,9,6000,600,9,999999999,25,0,0,88,0.2,0,0 +2008,5,1,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,8,67,95797,901,1346,330,610,548,243,70591,43010,28285,10755,130,4.1,5,5,6000,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,5,1,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14.7,7,60,96344,877,1346,335,554,470,248,63783,37631,28701,10746,150,4.1,6,6,6000,2400,9,999999999,19,0,0,88,0.2,0,0 +2008,5,1,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,7,59,95815,780,1346,354,282,23,268,31729,1988,30380,10526,130,1.5,9,9,6000,2400,9,999999999,19,0,0,88,0.2,0,0 +2008,5,1,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,7,59,95815,617,1346,354,207,19,198,23123,1448,22266,7459,160,5.1,9,9,6000,2400,9,999999999,19,0,0,88,0.2,0,0 +2008,5,1,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14.7,7,60,96457,400,1346,352,112,11,109,12503,570,12192,3925,160,4.6,9,9,6000,3000,9,999999999,19,0,0,88,0.2,0,0 +2008,5,1,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,7,63,95797,143,1346,329,40,32,37,4451,0,4086,1202,160,2.6,5,5,6000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,5,1,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,7,67,95778,0,689,325,0,0,0,0,0,0,0,220,2.1,5,5,6000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,5,1,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.8,6.8,76,96507,0,0,297,0,0,0,0,0,0,0,60,1,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,5,1,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,7,82,95721,0,0,294,0,0,0,0,0,0,0,40,1,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,5,1,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,7,82,95721,0,0,294,0,0,0,0,0,0,0,50,2.6,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,5,1,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.6,6.6,87,96540,0,0,300,0,0,0,0,0,0,0,180,1.5,3,3,6000,77777,9,999999999,18,0,0,88,0.2,0,0 +2008,5,1,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,6,87,95683,0,0,285,0,0,0,0,0,0,0,130,1,0,0,6000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,5,2,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,5,93,95644,0,0,276,0,0,0,0,0,0,0,300,1,0,0,5000,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,5,2,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4.8,4,95,96625,0,0,270,0,0,0,0,0,0,0,40,2.6,0,0,3000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,5,2,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5,4,93,95624,0,0,271,0,0,0,0,0,0,0,50,1.5,0,0,2500,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,5,2,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4,4,100,95604,0,0,267,0,0,0,0,0,0,0,40,2.1,0,0,2500,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,5,2,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3.8,3.7,99,96624,0,0,266,0,0,0,0,0,0,0,40,2.1,0,0,600,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,5,2,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,5,5,100,95624,0,0,314,0,0,0,0,0,0,0,70,2.1,10,10,800,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,5,2,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3,2,93,95584,0,0,261,0,0,0,0,0,0,0,153,0.5,0,0,1600,77777,0,999999999,12,0,0,88,0.2,0,0 +2008,5,2,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,2.2,1.8,97,96648,44,209,269,12,0,12,1112,0,1120,387,339,0,3,3,300,77777,0,999999999,12,0,0,88,0.2,0,0 +2008,5,2,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,5,4,93,95624,310,1345,313,63,0,63,6221,0,6268,2365,24,1,10,10,1500,77777,0,999999999,14,0,0,88,0.2,0,0 +2008,5,2,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,6,81,95702,543,1345,289,336,456,153,37819,30952,17231,5821,99,1,0,0,3500,77777,0,999999999,17,0,0,88,0.2,0,0 +2008,5,2,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11.8,7.4,74,96724,725,1345,302,497,735,100,59800,43955,12108,4773,200,1.5,0,0,5000,77777,0,999999999,20,0,0,88,0.2,0,0 +2008,5,2,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,7,59,95815,845,1345,315,606,807,99,74542,48802,12193,4980,196,1,0,0,6000,77777,0,999999999,19,0,0,88,0.2,0,0 +2008,5,2,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,7,55,95834,895,1345,320,652,827,102,80583,50321,12607,5203,99,1.5,0,0,7000,77777,0,999999999,19,0,0,88,0.2,0,0 +2008,5,2,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18.2,5.9,44,96560,871,1345,328,631,822,98,77901,50106,12191,5007,190,2.1,0,0,9000,77777,0,999999999,17,0,0,88,0.2,0,0 +2008,5,2,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,7,46,95888,774,1345,333,541,760,104,65550,46298,12643,5053,160,3.1,0,0,9000,77777,0,999999999,19,0,0,88,0.2,0,0 +2008,5,2,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,4,37,95888,612,1345,330,398,622,115,46475,38780,13519,5017,170,4.6,0,0,9000,77777,0,999999999,14,0,0,88,0.2,0,0 +2008,5,2,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,19,5,40,95888,395,1345,337,214,429,88,24267,20226,10006,3355,170,4.6,1,1,9900,77777,0,999999999,15,0,0,88,0.2,0,0 +2008,5,2,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,18,6,45,95870,138,1345,338,41,75,33,4553,0,3708,1107,170,3.6,2,2,9900,77777,0,999999999,17,0,0,88,0.2,0,0 +2008,5,2,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,16,5,48,95834,0,666,328,0,0,0,0,0,0,0,200,2.1,2,2,9900,77777,0,999999999,15,0,0,88,0.2,0,0 +2008,5,2,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13.3,5.3,58,96573,0,0,306,0,0,0,0,0,0,0,160,1,0,0,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,5,2,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,12,6,67,95759,0,0,319,0,0,0,0,0,0,0,142,1,5,5,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,5,2,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,10,5,71,95721,0,0,312,0,0,0,0,0,0,0,350,0,6,6,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,5,2,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.7,4.9,77,96608,0,0,286,0,0,0,0,0,0,0,30,2.6,0,0,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,5,2,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,4,76,95683,0,0,283,0,0,0,0,0,0,0,30,1.5,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,5,3,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,5,81,95683,0,0,284,0,0,0,0,0,0,0,31,1,0,0,6000,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,5,3,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.8,4.5,80,96571,0,0,282,0,0,0,0,0,0,0,130,1,0,0,6000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,5,3,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,4,81,95663,0,0,279,0,0,0,0,0,0,0,242,0,0,0,4000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,5,3,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5,3,87,95624,0,0,270,0,0,0,0,0,0,0,320,2.1,0,0,4000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,5,3,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4.4,3.2,92,96494,0,0,268,0,0,0,0,0,0,0,40,1.5,0,0,4000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,5,3,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,4,87,95644,0,0,275,0,0,0,0,0,0,0,290,0,0,0,4000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,5,3,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,4,87,95644,0,0,275,0,0,0,0,0,0,0,184,0,0,0,5000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,5,3,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4.4,3.3,93,96513,40,192,268,11,0,11,1033,0,1040,362,213,0,0,0,5000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,5,3,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,5,87,95663,306,1344,280,146,316,74,16373,11082,8349,2654,30,1.5,0,0,5000,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,5,3,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,6,71,95740,538,1344,297,332,572,103,38528,32868,12024,4349,224,1,0,0,7000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,5,3,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14.5,5.7,55,96425,720,1344,312,494,733,101,59392,44452,12170,4785,148,0.5,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,5,3,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,17,6,48,95852,840,1344,334,600,802,99,73767,48889,12219,4982,62,1,2,2,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,5,3,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,20,5,37,95906,889,1344,335,649,755,150,77911,51291,18037,7280,352,1,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,5,3,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,21.6,4.1,32,96119,865,1344,342,627,752,143,75301,50898,17286,6949,220,1.5,0,0,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,5,3,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,23,1,23,95959,768,1344,344,541,756,109,65387,48426,13234,5255,200,2.6,0,0,9900,77777,9,999999999,10,0,0,88,0.2,0,0 +2008,5,3,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,24,0,20,95977,606,1344,348,396,613,119,46087,39491,13957,5137,150,3.1,0,0,9900,77777,9,999999999,9,0,0,88,0.2,0,0 +2008,5,3,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,23.7,3.1,26,96024,390,1344,350,211,428,87,23887,20147,9864,3300,180,3.1,0,0,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,5,3,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,21,5,35,95924,133,1344,340,39,66,32,4300,0,3584,1068,180,3.1,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,5,3,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,18,5,42,95870,0,643,333,0,0,0,0,0,0,0,210,2.1,1,1,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,5,3,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,15.2,5.3,52,96060,0,0,314,0,0,0,0,0,0,0,175,1,0,0,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,5,3,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,15,5,51,95815,0,0,327,0,0,0,0,0,0,0,99,0.5,3,3,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,5,3,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,13,4,54,95778,0,0,317,0,0,0,0,0,0,0,20,1.5,3,3,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,5,3,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.8,4.8,66,96091,0,0,295,0,0,0,0,0,0,0,20,2.1,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,5,3,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,5,71,95721,0,0,292,0,0,0,0,0,0,0,304,1,0,0,6000,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,5,4,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,4,71,95702,0,0,287,0,0,0,0,0,0,0,177,0,0,0,5000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,5,4,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.4,4.4,81,96025,0,0,281,0,0,0,0,0,0,0,10,1,0,0,5000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,5,4,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,4,81,95663,0,0,279,0,0,0,0,0,0,0,78,1,0,0,5000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,5,4,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,4,87,95644,0,0,275,0,0,0,0,0,0,0,215,1,0,0,5000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,5,4,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5.4,2.8,83,95939,0,0,271,0,0,0,0,0,0,0,20,1.5,0,0,6000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,5,4,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,2,81,95624,0,0,269,0,0,0,0,0,0,0,202,0,0,0,7000,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,5,4,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,2,81,95624,0,0,269,0,0,0,0,0,0,0,267,0.5,0,0,6000,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,5,4,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4,2,87,96024,37,176,283,9,0,9,824,0,829,299,360,2.1,6,6,4000,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,5,4,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,2,66,95683,302,1344,281,144,315,73,16139,11147,8230,2611,215,1,0,0,6000,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,5,4,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,3,51,95778,533,1344,302,330,513,127,37659,32563,14491,5059,144,1,0,0,6000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,5,4,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,16.1,4.2,45,96077,715,1344,339,428,434,197,48875,33285,22616,8144,47,0.5,6,6,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,5,4,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,3,32,95906,834,1344,333,600,723,152,71451,50130,18121,7177,270,1.5,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,5,4,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,3,27,95959,883,1344,347,646,740,159,77167,51819,19098,7650,200,2.6,0,0,8000,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,5,4,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.5,3.6,26,95943,859,1344,379,544,491,230,62877,39008,26716,10071,160,3.1,6,6,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,5,4,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,25,3,24,95994,762,1344,356,535,696,140,63263,47264,16605,6457,160,3.1,0,0,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,5,4,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,26,2,21,96011,601,1344,360,390,613,116,45414,38616,13565,5000,150,4.6,0,0,9900,77777,9,999999999,11,0,0,88,0.2,0,0 +2008,5,4,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,24.4,2.2,23,95865,384,1344,352,207,423,86,23451,19807,9755,3255,160,5.7,0,0,9900,77777,9,999999999,11,0,0,88,0.2,0,0 +2008,5,4,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,21,5,35,95924,129,1344,340,36,56,31,4043,0,3461,1030,160,3.1,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,5,4,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,18,6,45,95870,0,621,338,0,0,0,0,0,0,0,140,3.1,2,2,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,5,4,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16.8,7.5,54,95948,0,0,324,0,0,0,0,0,0,0,150,3.6,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2008,5,4,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,7,55,95834,0,0,320,0,0,0,0,0,0,0,140,2.6,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,5,4,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,7,59,95815,0,0,315,0,0,0,0,0,0,0,150,2.6,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,5,4,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,6.4,69,96095,0,0,302,0,0,0,0,0,0,0,260,1.5,0,0,8000,77777,9,999999999,18,0,0,88,0.2,0,0 +2008,5,4,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,5,71,95721,0,0,292,0,0,0,0,0,0,0,90,1,0,0,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,5,5,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,5,76,95702,0,0,288,0,0,0,0,0,0,0,41,0,0,0,7000,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,5,5,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8.1,4.8,80,96086,0,0,284,0,0,0,0,0,0,0,265,1,0,0,7000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,5,5,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,5,81,95683,0,0,284,0,0,0,0,0,0,0,99,1,0,0,6000,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,5,5,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,3,81,95644,0,0,274,0,0,0,0,0,0,0,250,1,0,0,5000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,5,5,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,3.3,83,96149,0,0,274,0,0,0,0,0,0,0,103,0.5,0,0,6000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,5,5,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4,3,93,95604,0,0,266,0,0,0,0,0,0,0,50,1.5,0,0,5000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,5,5,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5,3,87,95624,0,0,282,0,0,0,0,0,0,0,300,1,3,3,5000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,5,5,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3.9,2.6,91,96201,33,159,281,8,0,8,793,0,798,287,302,0.5,5,5,3000,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,5,5,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,4,81,95663,298,1343,279,141,306,73,15738,10425,8164,2584,50,1.5,0,0,4000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,5,5,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,7,76,95740,529,1343,298,324,566,102,37529,31817,11793,4256,30,2.1,0,0,5000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,5,5,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15.2,5.3,52,96155,710,1343,314,485,728,100,58292,44102,12075,4733,340,2.1,0,0,5000,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,5,5,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,6,43,95888,829,1343,332,593,804,96,72853,48665,11895,4842,20,2.1,0,0,7000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,5,5,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,6,38,95924,878,1343,341,637,824,99,78831,50237,12251,5041,257,0.5,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,5,5,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22.1,5.1,33,95958,853,1343,345,616,818,96,76044,49862,11896,4870,180,1.5,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,5,5,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,5,29,95977,757,1343,354,528,752,104,63771,46423,12655,5027,160,6.7,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,5,5,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,23,5,31,95959,595,1343,349,383,614,111,44702,37369,12994,4807,170,7.2,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,5,5,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,22,2.9,28,95956,379,1343,342,203,416,85,22943,19127,9686,3222,180,6.2,0,0,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,5,5,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,20,3,32,95906,124,1343,333,34,46,30,3809,0,3343,992,140,2.6,0,0,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,5,5,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,18,5,42,95870,0,599,333,0,0,0,0,0,0,0,130,2.1,1,1,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,5,5,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15.8,6.9,55,96062,0,0,319,0,0,0,0,0,0,0,150,2.6,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,5,5,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,8,59,95834,0,0,321,0,0,0,0,0,0,0,150,2.6,0,0,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,5,5,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,6,62,95778,0,0,305,0,0,0,0,0,0,0,210,1.5,0,0,7000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,5,5,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12.5,6.7,68,96170,0,0,304,0,0,0,0,0,0,0,150,2.6,0,0,7000,77777,9,999999999,18,0,0,88,0.2,0,0 +2008,5,5,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,6,76,95721,0,0,293,0,0,0,0,0,0,0,300,1.5,0,0,7000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,5,6,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,6,87,95683,0,0,285,0,0,0,0,0,0,0,40,1,0,0,5000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,5,6,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.1,4.6,79,96171,0,0,284,0,0,0,0,0,0,0,190,1.5,0,0,5000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,5,6,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,3,81,95644,0,0,274,0,0,0,0,0,0,0,280,1,0,0,5000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,5,6,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,4,87,95644,0,0,275,0,0,0,0,0,0,0,40,2.6,0,0,4000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,5,6,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6.4,4.1,85,96109,0,0,276,0,0,0,0,0,0,0,50,1,0,0,5000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,5,6,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,2,81,95624,0,0,269,0,0,0,0,0,0,0,231,0.5,0,0,3000,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,5,6,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4,2,87,95604,0,0,281,0,0,0,0,0,0,0,33,1,5,5,3000,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,5,6,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5.3,2.7,83,96125,30,142,287,7,0,7,712,0,716,260,270,1.5,5,5,3500,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,5,6,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,4,71,95702,294,1342,304,129,238,76,14302,8341,8525,2655,319,0.5,5,5,5000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,5,6,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,4,54,95778,524,1342,303,322,506,125,36713,31616,14251,4960,30,1.5,0,0,6000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,5,6,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,4.4,46,96141,705,1342,317,482,727,100,57872,44233,12017,4703,320,0.5,0,0,6000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,5,6,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,6,43,95888,824,1342,332,588,802,96,72268,48488,11824,4808,90,1.5,0,0,6000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,5,6,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,5,35,95924,872,1342,340,634,827,96,78467,50501,11982,4926,190,2.6,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,5,6,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22.4,5,32,95916,848,1342,346,611,817,95,75443,49728,11807,4828,130,2.6,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,5,6,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,6,31,95977,751,1342,355,522,750,103,63107,45776,12439,4940,140,3.1,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,5,6,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,5,31,95959,590,1342,349,379,612,110,44191,37053,12852,4748,180,5.7,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,5,6,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22.4,4.6,31,95802,374,1342,346,198,408,85,22442,18300,9611,3189,160,5.1,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,5,6,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,3,32,95906,119,1342,333,32,37,29,3587,0,3226,956,190,3.6,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,5,6,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,6,45,95870,0,578,327,0,0,0,0,0,0,0,274,1,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,5,6,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16.3,5.9,50,95891,0,0,320,0,0,0,0,0,0,0,130,2.1,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,5,6,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,7,55,95834,0,0,320,0,0,0,0,0,0,0,150,1.5,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,5,6,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,7,63,95797,0,0,311,0,0,0,0,0,0,0,92,1,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,5,6,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,7.6,65,96028,0,0,311,0,0,0,0,0,0,0,140,2.1,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2008,5,6,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,6,76,95721,0,0,293,0,0,0,0,0,0,0,280,2.1,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,5,7,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,4,71,95702,0,0,287,0,0,0,0,0,0,0,92,0,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,5,7,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8.2,4.3,76,96022,0,0,301,0,0,0,0,0,0,0,276,0.5,5,5,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,5,7,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,5,81,95683,0,0,301,0,0,0,0,0,0,0,340,1.5,5,5,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,5,7,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,5,81,95683,0,0,284,0,0,0,0,0,0,0,10,1.5,0,0,7000,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,5,7,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.2,4.7,73,95918,0,0,305,0,0,0,0,0,0,0,40,1.5,5,5,7000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,5,7,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,4,76,95683,0,0,283,0,0,0,0,0,0,0,60,1,0,0,7000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,5,7,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,4,76,95683,0,0,317,0,0,0,0,0,0,0,180,1.5,9,9,7000,4800,9,999999999,14,0,0,88,0.2,0,0 +2008,5,7,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7.1,3.6,78,96057,26,126,295,7,0,7,627,0,631,232,33,1,5,5,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,5,7,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,4,66,95721,290,1342,303,134,285,72,14911,9371,8063,2534,70,0,3,3,7000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,5,7,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,6,62,95778,520,1342,319,313,530,108,36038,30670,12484,4441,171,0,3,3,7000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,5,7,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,7,55,95834,700,1342,333,469,698,105,56033,42215,12612,4915,160,1.5,3,3,7000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,5,7,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,9,56,95870,818,1342,345,573,765,106,69720,46206,13003,5266,150,3.6,3,3,9000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,5,7,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,18,9,56,95870,867,1342,345,613,773,114,74809,47496,13966,5711,210,6.7,3,3,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,5,7,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19,8.9,52,96082,842,1342,350,594,775,108,72537,47055,13210,5381,180,6.7,3,3,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,5,7,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,19,9,52,95888,746,1342,350,510,729,105,61403,43652,12700,5034,190,5.7,3,3,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,5,7,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,19,9,52,95888,584,1342,350,368,594,110,42866,34719,12818,4731,170,4.6,3,3,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,5,7,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18.8,8.9,53,96012,369,1342,349,191,391,83,21534,16404,9421,3129,170,4.6,3,3,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,5,7,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18,10,59,95870,115,1342,352,28,5,28,3135,0,3094,919,160,3.6,5,5,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,5,7,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16,9,63,95834,0,557,341,0,0,0,0,0,0,0,210,2.6,5,5,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,5,7,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15.5,9.4,67,96094,0,0,320,0,0,0,0,0,0,0,200,2.6,0,0,9900,77777,9,999999999,24,0,0,88,0.2,0,0 +2008,5,7,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,14,10,77,95797,0,0,339,0,0,0,0,0,0,0,150,2.6,7,7,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,5,7,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,10,82,95778,0,0,310,0,0,0,0,0,0,0,130,2.6,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,5,7,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12.1,9.8,86,96172,0,0,306,0,0,0,0,0,0,0,100,1.5,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,5,7,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,10,88,95759,0,0,305,0,0,0,0,0,0,0,150,2.6,0,0,6000,77777,9,999999999,26,0,0,88,0.2,0,0 +2008,5,8,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,9,93,95721,0,0,296,0,0,0,0,0,0,0,220,1.5,0,0,4000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,5,8,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.4,8.6,95,96206,0,0,293,0,0,0,0,0,0,0,270,1,0,0,4000,77777,9,999999999,22,0,0,88,0.2,0,0 +2008,5,8,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,7,93,95683,0,0,286,0,0,0,0,0,0,0,323,0,0,0,4000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,5,8,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,8,100,95683,0,0,304,0,0,0,0,0,0,0,9,0,5,5,2000,77777,0,999999999,21,0,0,88,0.2,0,0 +2008,5,8,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.5,7.3,99,96150,0,0,319,0,0,0,0,0,0,0,300,0.5,9,9,600,30,0,999999999,20,0,0,88,0.2,0,0 +2008,5,8,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,8,93,95702,0,0,326,0,0,0,0,0,0,0,67,0.5,9,9,3000,90,0,999999999,21,0,0,88,0.2,0,0 +2008,5,8,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,8,87,95721,0,0,331,0,0,0,0,0,0,0,15,1,9,9,3000,180,0,999999999,21,0,0,88,0.2,0,0 +2008,5,8,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.6,8.6,93,96247,23,109,339,2,0,2,183,0,184,75,40,2.1,10,10,3000,180,0,999999999,22,0,0,88,0.2,0,0 +2008,5,8,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,9,87,95740,286,1341,346,41,0,41,4065,0,4096,1642,123,1,10,10,3000,240,0,999999999,23,0,0,88,0.2,0,0 +2008,5,8,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,9,87,95740,515,1341,346,98,0,98,9845,0,9925,4103,99,1,10,10,3000,300,0,999999999,23,0,0,88,0.2,0,0 +2008,5,8,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12.4,9.5,82,96291,695,1341,354,148,0,148,15013,0,15144,6473,104,0,10,10,3600,330,0,999999999,24,0,0,88,0.2,0,0 +2008,5,8,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,10,82,95778,813,1341,357,181,1,180,21116,105,21109,8153,102,1,10,10,4000,330,0,999999999,25,0,0,88,0.2,0,0 +2008,5,8,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,10,77,95797,861,1341,333,576,525,238,66249,40676,27568,10364,190,3.1,5,5,4000,77777,0,999999999,25,0,0,88,0.2,0,0 +2008,5,8,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,9.9,72,96104,836,1341,332,588,756,117,71278,46383,14226,5767,170,4.1,3,3,5000,77777,0,999999999,25,0,0,88,0.2,0,0 +2008,5,8,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,9,59,95852,740,1341,326,510,743,100,61560,43845,12062,4788,170,4.6,0,0,5000,77777,0,999999999,23,0,0,88,0.2,0,0 +2008,5,8,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,10,63,95852,579,1341,327,367,605,105,42732,34420,12289,4549,160,5.1,0,0,5000,77777,0,999999999,25,0,0,88,0.2,0,0 +2008,5,8,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16.9,9.2,60,96082,364,1341,326,189,400,81,21405,16269,9154,3044,160,4.6,0,0,8000,77777,0,999999999,23,0,0,88,0.2,0,0 +2008,5,8,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,9,67,95815,110,1341,317,29,28,27,3245,0,2997,888,160,4.1,0,0,8000,77777,0,999999999,23,0,0,88,0.2,0,0 +2008,5,8,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,8,67,95797,0,536,312,0,0,0,0,0,0,0,150,2.6,0,0,8000,77777,0,999999999,21,0,0,88,0.2,0,0 +2008,5,8,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13.8,9.1,73,96129,0,0,312,0,0,0,0,0,0,0,140,3.6,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,5,8,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,9,82,95759,0,0,304,0,0,0,0,0,0,0,262,1,0,0,7000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,5,8,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,7,82,95721,0,0,294,0,0,0,0,0,0,0,243,1,0,0,6000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,5,8,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8.6,6.5,87,96190,0,0,288,0,0,0,0,0,0,0,21,0.5,0,0,5000,77777,9,999999999,18,0,0,88,0.2,0,0 +2008,5,8,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,7,93,95683,0,0,286,0,0,0,0,0,0,0,269,0.5,0,0,5000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,5,9,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,6,93,95663,0,0,281,0,0,0,0,0,0,0,202,1,0,0,4000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,5,9,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6.4,5.9,97,96109,0,0,278,0,0,0,0,0,0,0,20,1.5,0,0,900,77777,0,999999999,17,0,0,88,0.2,0,0 +2008,5,9,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,5,87,95663,0,0,280,0,0,0,0,0,0,0,249,0,0,0,1500,77777,0,999999999,16,0,0,88,0.2,0,0 +2008,5,9,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,4,93,95624,0,0,283,0,0,0,0,0,0,0,289,0,3,3,1500,77777,0,999999999,14,0,0,88,0.2,0,0 +2008,5,9,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4,3,93,96052,0,0,282,0,0,0,0,0,0,0,81,1,5,5,800,77777,0,999999999,13,0,0,88,0.2,0,0 +2008,5,9,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4,3,93,95604,0,0,282,0,0,0,0,0,0,0,290,1,5,5,1500,77777,0,999999999,13,0,0,88,0.2,0,0 +2008,5,9,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,2,2,100,95564,0,0,297,0,0,0,0,0,0,0,60,1.5,10,10,100,30,0,999999999,12,0,0,88,0.2,0,0 +2008,5,9,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,2.9,2.7,99,96162,19,93,262,5,0,5,499,0,502,187,156,0,0,0,100,77777,0,999999999,13,0,0,88,0.2,0,0 +2008,5,9,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4,4,100,95604,282,1341,267,130,287,69,14509,8916,7782,2443,242,1,0,0,700,77777,0,999999999,14,0,0,88,0.2,0,0 +2008,5,9,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,7,87,95702,511,1341,290,310,553,99,35785,30469,11453,4106,204,1.5,0,0,1200,77777,0,999999999,19,0,0,88,0.2,0,0 +2008,5,9,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,8.1,72,96133,690,1341,308,466,717,97,55899,41921,11629,4543,250,1,0,0,2000,77777,0,999999999,21,0,0,88,0.2,0,0 +2008,5,9,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,8,63,95815,808,1341,316,572,789,96,70066,46969,11855,4805,141,1,0,0,3000,77777,0,999999999,21,0,0,88,0.2,0,0 +2008,5,9,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,8,52,95870,856,1341,330,616,810,99,75869,48590,12251,5022,220,1.5,0,0,4000,77777,0,999999999,21,0,0,88,0.2,0,0 +2008,5,9,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19.9,5,38,95919,831,1341,335,596,810,94,73509,49150,11670,4756,180,2.6,0,0,5000,77777,0,999999999,15,0,0,88,0.2,0,0 +2008,5,9,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,3,30,95924,735,1341,338,511,744,103,61576,46227,12448,4913,160,3.6,0,0,7000,77777,0,999999999,12,0,0,88,0.2,0,0 +2008,5,9,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,6,38,95924,574,1341,341,365,605,106,42571,35688,12379,4559,150,4.6,0,0,8000,77777,0,999999999,17,0,0,88,0.2,0,0 +2008,5,9,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20.1,6.2,40,95884,360,1341,344,187,402,79,21172,16616,8992,2985,170,5.1,1,1,8000,77777,0,999999999,17,0,0,88,0.2,0,0 +2008,5,9,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,6,45,95870,106,1341,327,28,29,26,3148,0,2897,856,170,3.6,0,0,8000,77777,0,999999999,17,0,0,88,0.2,0,0 +2008,5,9,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,7,55,95834,0,516,320,0,0,0,0,0,0,0,150,3.1,0,0,6000,77777,0,999999999,19,0,0,88,0.2,0,0 +2008,5,9,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14.9,7.6,62,95969,0,0,315,0,0,0,0,0,0,0,170,2.6,0,0,6000,77777,9,999999999,20,0,0,88,0.2,0,0 +2008,5,9,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,7,63,95797,0,0,311,0,0,0,0,0,0,0,150,3.1,0,0,7000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,5,9,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,7,67,95778,0,0,307,0,0,0,0,0,0,0,180,2.6,0,0,7000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,5,9,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.9,6.4,74,96046,0,0,297,0,0,0,0,0,0,0,180,1.5,0,0,7000,77777,9,999999999,18,0,0,88,0.2,0,0 +2008,5,9,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,5,76,95702,0,0,288,0,0,0,0,0,0,0,70,0.5,0,0,7000,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,5,10,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,5,81,95683,0,0,284,0,0,0,0,0,0,0,260,0.5,0,0,7000,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,5,10,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8.3,6.4,88,96024,0,0,286,0,0,0,0,0,0,0,19,1,0,0,6000,77777,9,999999999,18,0,0,88,0.2,0,0 +2008,5,10,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,5,87,95663,0,0,280,0,0,0,0,0,0,0,274,0,0,0,5000,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,5,10,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,3,87,95624,0,0,270,0,0,0,0,0,0,0,342,0,0,0,5000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,5,10,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4.4,3,91,95975,0,0,268,0,0,0,0,0,0,0,30,0,0,0,4000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,5,10,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,4,93,95624,0,0,271,0,0,0,0,0,0,0,84,0.5,0,0,4000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,5,10,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,4,93,95624,0,0,271,0,0,0,0,0,0,0,72,1,0,0,4000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,5,10,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4.4,2.6,88,96107,16,77,267,4,0,4,411,0,413,157,32,0.5,0,0,4000,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,5,10,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,3,81,95644,278,1340,274,127,283,69,14226,8670,7686,2407,240,0.5,0,0,4000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,5,10,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,5,76,95702,506,1340,288,307,547,100,35426,30701,11614,4141,2,1,0,0,4000,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,5,10,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12.5,6,65,96180,685,1340,303,463,715,97,55550,42580,11713,4563,331,0.5,0,0,5000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,5,10,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,6,55,95815,803,1340,314,569,792,95,69829,47698,11656,4718,210,1.5,0,0,6000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,5,10,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,7,49,95870,851,1340,329,612,810,98,75425,48898,12152,4974,210,2.1,0,0,7000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,5,10,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18.6,6.5,45,96075,826,1340,331,590,801,96,72525,48306,11886,4838,190,2.1,0,0,8000,77777,9,999999999,18,0,0,88,0.2,0,0 +2008,5,10,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,7,46,95888,730,1340,333,503,740,100,60617,44346,12077,4773,170,3.1,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,5,10,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,6,43,95888,569,1340,332,361,601,105,42045,35324,12308,4524,160,5.1,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,5,10,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18.2,5.9,44,96106,355,1340,328,184,397,78,20782,16224,8907,2949,170,6.2,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,5,10,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,16,6,51,95834,102,1340,332,27,25,25,3003,0,2798,826,170,4.1,3,3,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,5,10,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,15,7,59,95815,0,497,331,0,0,0,0,0,0,0,150,4.6,4,4,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,5,10,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12.2,6.3,67,96240,0,0,302,0,0,0,0,0,0,0,170,3.1,0,0,9900,77777,9,999999999,18,0,0,88,0.2,0,0 +2008,5,10,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,6,71,95740,0,0,297,0,0,0,0,0,0,0,170,3.6,0,0,7000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,5,10,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,6,71,95740,0,0,297,0,0,0,0,0,0,0,140,2.6,0,0,6000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,5,10,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8.2,5.3,82,96277,0,0,285,0,0,0,0,0,0,0,47,0.5,0,0,3500,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,5,10,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,5,87,95663,0,0,280,0,0,0,0,0,0,0,266,1,0,0,3500,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,5,11,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,3,81,95644,0,0,274,0,0,0,0,0,0,0,64,0,0,0,3000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,5,11,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4.9,3.1,88,96231,0,0,270,0,0,0,0,0,0,0,352,0,0,0,2000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,5,11,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4,2,87,95604,0,0,265,0,0,0,0,0,0,0,10,1,0,0,2000,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,5,11,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4,3,93,95604,0,0,266,0,0,0,0,0,0,0,300,1,0,0,1800,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,5,11,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,2.1,1,92,96221,0,0,268,0,0,0,0,0,0,0,184,0.5,3,3,800,77777,9,999999999,11,0,0,88,0.2,0,0 +2008,5,11,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,2,2,100,95564,0,0,269,0,0,0,0,0,0,0,87,0.5,3,3,500,77777,0,999999999,12,0,0,88,0.2,0,0 +2008,5,11,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,1,1,100,95544,0,0,264,0,0,0,0,0,0,0,30,1,3,3,500,77777,0,999999999,11,0,0,88,0.2,0,0 +2008,5,11,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,0.5,0.5,100,96264,13,60,262,3,0,3,320,0,322,124,60,1,3,3,800,77777,0,999999999,10,0,0,88,0.2,0,0 +2008,5,11,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,4,93,95624,274,1339,271,124,276,68,13887,8147,7605,2377,67,1,0,0,2000,77777,0,999999999,14,0,0,88,0.2,0,0 +2008,5,11,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,5,81,95683,502,1339,284,303,543,100,34984,30333,11535,4106,53,0,0,0,4000,77777,0,999999999,16,0,0,88,0.2,0,0 +2008,5,11,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,5.7,65,96246,680,1339,301,459,713,97,55042,42440,11675,4541,300,0.5,0,0,4000,77777,0,999999999,17,0,0,88,0.2,0,0 +2008,5,11,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,6,55,95815,798,1339,314,565,790,95,69230,47496,11621,4698,26,1,0,0,4000,77777,0,999999999,17,0,0,88,0.2,0,0 +2008,5,11,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,6,45,95870,845,1339,327,609,811,97,75040,49166,11944,4884,30,2.1,0,0,5000,77777,0,999999999,17,0,0,88,0.2,0,0 +2008,5,11,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19.2,4.6,38,96029,820,1339,331,587,806,93,72332,48917,11538,4692,200,0.5,0,0,5000,77777,0,999999999,15,0,0,88,0.2,0,0 +2008,5,11,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,2,28,95924,725,1339,336,502,739,102,60508,46069,12346,4857,140,1.5,0,0,8000,77777,0,999999999,11,0,0,88,0.2,0,0 +2008,5,11,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,2,28,95924,564,1339,336,359,592,110,41720,36134,12778,4656,140,4.6,0,0,8000,77777,0,999999999,11,0,0,88,0.2,0,0 +2008,5,11,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,3.8,34,95977,351,1339,334,181,395,77,20481,16217,8792,2904,220,4.6,0,0,8000,77777,0,999999999,14,0,0,88,0.2,0,0 +2008,5,11,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,5,42,95870,98,1339,326,26,26,24,2909,0,2704,797,160,2.6,0,0,8000,77777,0,999999999,15,0,0,88,0.2,0,0 +2008,5,11,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,4,51,95797,0,478,308,0,0,0,0,0,0,0,170,3.1,0,0,8000,77777,0,999999999,14,0,0,88,0.2,0,0 +2008,5,11,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14.1,4.8,53,96125,0,0,309,0,0,0,0,0,0,0,140,4.1,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,5,11,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,13,5,58,95778,0,0,320,0,0,0,0,0,0,0,130,2.1,4,4,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,5,11,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,3,62,95721,0,0,290,0,0,0,0,0,0,0,320,2.6,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,5,11,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.4,3.4,76,96110,0,0,280,0,0,0,0,0,0,0,70,1,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,5,11,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,4,76,95683,0,0,283,0,0,0,0,0,0,0,176,0.5,0,0,7000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,5,12,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,3,81,95644,0,0,274,0,0,0,0,0,0,0,310,2.1,0,0,6000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,5,12,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5.6,2.4,80,96197,0,0,272,0,0,0,0,0,0,0,133,0.5,0,0,5000,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,5,12,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,2,81,95624,0,0,269,0,0,0,0,0,0,0,168,1,0,0,5000,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,5,12,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4,1,81,95604,0,0,264,0,0,0,0,0,0,0,270,1.5,0,0,4000,77777,9,999999999,11,0,0,88,0.2,0,0 +2008,5,12,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,2.2,0.1,86,96242,0,0,257,0,0,0,0,0,0,0,223,0.5,0,0,4000,77777,9,999999999,10,0,0,88,0.2,0,0 +2008,5,12,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3,1,87,95584,0,0,260,0,0,0,0,0,0,0,360,1,0,0,3000,77777,9,999999999,11,0,0,88,0.2,0,0 +2008,5,12,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3,1,87,95584,0,0,260,0,0,0,0,0,0,0,262,1,0,0,3000,77777,9,999999999,11,0,0,88,0.2,0,0 +2008,5,12,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,2.2,0.8,90,96346,9,44,257,2,0,2,238,0,239,94,234,0.5,0,0,3000,77777,9,999999999,10,0,0,88,0.2,0,0 +2008,5,12,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5,1,75,95624,270,1339,268,123,233,76,13557,7748,8398,2537,70,1.5,0,0,3000,77777,9,999999999,10,0,0,88,0.2,0,0 +2008,5,12,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,2,66,95683,498,1339,281,301,538,101,34727,30787,11725,4148,184,0,0,0,4000,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,5,12,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11.8,2.9,54,96346,676,1339,297,457,715,97,54853,43259,11632,4513,278,0,0,0,5000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,5,12,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,4,48,95815,793,1339,312,562,796,91,69103,48137,11269,4552,357,0.5,0,0,6000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,5,12,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,4,42,95852,840,1339,321,606,818,93,74940,49830,11535,4713,14,1,0,0,6000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,5,12,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19.3,3.1,34,96211,815,1339,330,584,810,91,72092,49324,11245,4569,280,1.5,0,0,6000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,5,12,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,0,25,95924,720,1339,334,499,740,102,60185,46502,12317,4836,24,0.5,0,0,8000,77777,9,999999999,9,0,0,88,0.2,0,0 +2008,5,12,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,-2,20,95942,560,1339,336,357,587,112,41480,36774,13030,4718,180,1.5,0,0,8000,77777,9,999999999,8,0,0,88,0.2,0,0 +2008,5,12,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20.8,0.8,26,96162,346,1339,334,179,323,95,19893,15342,10640,3339,160,3.6,0,0,8000,77777,9,999999999,10,0,0,88,0.2,0,0 +2008,5,12,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,3,37,95870,94,1339,324,25,26,23,2812,0,2615,769,160,3.1,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,5,12,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,4,45,95834,0,459,316,0,0,0,0,0,0,0,220,1.5,0,0,7000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,5,12,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14.9,5.6,54,96263,0,0,313,0,0,0,0,0,0,0,150,2.1,0,0,7000,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,5,12,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,5,62,95759,0,0,300,0,0,0,0,0,0,0,190,1.5,0,0,6000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,5,12,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,1,57,95702,0,0,284,0,0,0,0,0,0,0,166,1,0,0,6000,77777,9,999999999,10,0,0,88,0.2,0,0 +2008,5,12,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.2,0.9,64,96304,0,0,277,0,0,0,0,0,0,0,20,2.1,0,0,6000,77777,9,999999999,10,0,0,88,0.2,0,0 +2008,5,12,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,2,75,95644,0,0,273,0,0,0,0,0,0,0,96,0.5,0,0,6000,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,5,13,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,1,66,95663,0,0,276,0,0,0,0,0,0,0,20,1.5,0,0,6000,77777,9,999999999,10,0,0,88,0.2,0,0 +2008,5,13,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4.6,1,77,96244,0,0,266,0,0,0,0,0,0,0,360,1.5,0,0,6000,77777,9,999999999,11,0,0,88,0.2,0,0 +2008,5,13,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3,0,81,95584,0,0,259,0,0,0,0,0,0,0,50,1.5,0,0,6000,77777,9,999999999,10,0,0,88,0.2,0,0 +2008,5,13,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3,0,81,95584,0,0,259,0,0,0,0,0,0,0,20,1.5,0,0,6000,77777,9,999999999,10,0,0,88,0.2,0,0 +2008,5,13,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3.1,-0.4,77,96176,0,0,259,0,0,0,0,0,0,0,20,1,0,0,6000,77777,9,999999999,9,0,0,88,0.2,0,0 +2008,5,13,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,2,-3,67,95564,0,0,253,0,0,0,0,0,0,0,208,0,0,0,6000,77777,9,999999999,7,0,0,88,0.2,0,0 +2008,5,13,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,2,-2,73,95564,0,0,254,0,0,0,0,0,0,0,112,0,0,0,5000,77777,9,999999999,8,0,0,88,0.2,0,0 +2008,5,13,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,1.5,-1.5,79,96190,6,28,253,2,0,2,151,0,152,61,330,0.5,0,0,5000,77777,9,999999999,8,0,0,88,0.2,0,0 +2008,5,13,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4,-1,69,95604,266,1338,262,120,230,75,13309,7594,8275,2495,33,1,0,0,6000,77777,9,999999999,9,0,0,88,0.2,0,0 +2008,5,13,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,-2,45,95702,493,1338,281,300,533,103,34483,31263,11929,4193,40,1.5,0,0,8000,77777,9,999999999,8,0,0,88,0.2,0,0 +2008,5,13,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12.3,0,43,96271,671,1338,296,455,716,96,54631,43926,11571,4480,53,1,0,0,8000,77777,9,999999999,9,0,0,88,0.2,0,0 +2008,5,13,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,0,36,95815,788,1338,308,562,807,87,69296,49326,10713,4324,150,1,0,0,8000,77777,9,999999999,9,0,0,88,0.2,0,0 +2008,5,13,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,-1,26,95888,835,1338,324,606,746,141,72700,51554,16954,6763,30,1,0,0,8000,77777,9,999999999,8,0,0,88,0.2,0,0 +2008,5,13,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,21.7,-2.3,19,96093,810,1338,341,584,743,135,70049,51016,16189,6427,240,1.5,1,1,8000,77777,9,999999999,7,0,0,88,0.2,0,0 +2008,5,13,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,23,-5,14,95959,715,1338,337,499,745,101,60166,47620,12217,4787,200,3.1,0,0,9900,77777,9,999999999,6,0,0,88,0.2,0,0 +2008,5,13,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,24,-3,16,95977,555,1338,344,354,584,112,41054,36630,13009,4698,160,4.1,0,0,9900,77777,9,999999999,7,0,0,88,0.2,0,0 +2008,5,13,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,22.2,2.5,27,96073,342,1338,343,175,376,79,19745,15513,8945,2918,160,4.6,0,0,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,5,13,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,19,4,37,95888,90,1338,330,24,23,23,2694,0,2527,742,150,4.6,0,0,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,5,13,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,16,3,42,95834,0,441,321,0,0,0,0,0,0,0,170,3.1,1,1,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,5,13,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15.5,3.5,45,96255,0,0,314,0,0,0,0,0,0,0,150,3.1,0,0,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,5,13,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,13,4,54,95778,0,0,317,0,0,0,0,0,0,0,190,2.1,3,3,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,5,13,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,3,62,95721,0,0,290,0,0,0,0,0,0,0,310,1.5,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,5,13,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.9,2.4,68,96299,0,0,281,0,0,0,0,0,0,0,40,2.1,0,0,8000,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,5,13,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,2,66,95683,0,0,281,0,0,0,0,0,0,0,239,0.5,0,0,6000,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,5,14,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,2,75,95644,0,0,273,0,0,0,0,0,0,0,79,0.5,0,0,6000,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,5,14,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4.6,0.7,76,96244,0,0,266,0,0,0,0,0,0,0,180,1,0,0,6000,77777,9,999999999,10,0,0,88,0.2,0,0 +2008,5,14,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4,1,81,95604,0,0,264,0,0,0,0,0,0,0,40,2.1,0,0,5000,77777,9,999999999,11,0,0,88,0.2,0,0 +2008,5,14,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,1,75,95624,0,0,268,0,0,0,0,0,0,0,284,1,0,0,5000,77777,9,999999999,10,0,0,88,0.2,0,0 +2008,5,14,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3.9,0.8,80,96145,0,0,264,0,0,0,0,0,0,0,350,1.5,0,0,4000,77777,9,999999999,10,0,0,88,0.2,0,0 +2008,5,14,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,2,-2,73,95564,0,0,254,0,0,0,0,0,0,0,20,1,0,0,4000,77777,9,999999999,8,0,0,88,0.2,0,0 +2008,5,14,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3,-1,74,95584,0,0,259,0,0,0,0,0,0,0,163,0.5,0,0,5000,77777,9,999999999,9,0,0,88,0.2,0,0 +2008,5,14,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,1.8,-1.5,78,96215,4,12,254,1,0,1,65,0,65,27,237,0.5,0,0,5000,77777,9,999999999,8,0,0,88,0.2,0,0 +2008,5,14,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,-1,64,95624,262,1337,266,118,225,74,13016,7241,8157,2456,116,0,0,0,5000,77777,9,999999999,9,0,0,88,0.2,0,0 +2008,5,14,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,-1,49,95702,489,1337,282,296,530,102,34010,30694,11779,4138,195,0.5,0,0,5000,77777,9,999999999,9,0,0,88,0.2,0,0 +2008,5,14,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13.8,1.1,42,96299,666,1337,304,450,712,96,54010,43327,11511,4452,84,1,0,0,5000,77777,9,999999999,10,0,0,88,0.2,0,0 +2008,5,14,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,1,34,95852,783,1337,317,556,801,88,68528,48807,10815,4359,10,1.5,0,0,6000,77777,9,999999999,10,0,0,88,0.2,0,0 +2008,5,14,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,1,30,95888,830,1337,326,600,745,138,71975,50735,16571,6616,295,1,0,0,7000,77777,9,999999999,10,0,0,88,0.2,0,0 +2008,5,14,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20.8,0.7,26,96077,805,1337,334,577,814,87,71386,49771,10849,4399,180,3.1,0,0,7000,77777,9,999999999,10,0,0,88,0.2,0,0 +2008,5,14,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,1,25,95942,710,1337,340,490,734,100,59005,45686,12116,4748,150,4.1,0,0,7000,77777,9,999999999,10,0,0,88,0.2,0,0 +2008,5,14,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,2,27,95942,550,1337,341,347,535,127,39776,34426,14630,5171,180,3.6,0,0,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2008,5,14,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21.8,2,27,96047,338,1337,360,160,295,85,17926,12781,9605,3068,160,3.6,5,5,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2008,5,14,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,4,39,95870,86,1337,325,23,12,22,2578,0,2496,728,160,4.6,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,5,14,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,7,59,95815,0,424,315,0,0,0,0,0,0,0,160,4.6,0,0,6000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,5,14,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12.9,7.1,68,96225,0,0,306,0,0,0,0,0,0,0,150,5.1,0,0,5000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,5,14,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,7,76,95740,0,0,298,0,0,0,0,0,0,0,170,2.6,0,0,7000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,5,14,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,7,76,95740,0,0,298,0,0,0,0,0,0,0,160,3.1,0,0,7000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,5,14,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,6.4,90,96330,0,0,297,0,0,0,0,0,0,0,180,3.1,3,3,1400,77777,0,999999999,18,0,0,88,0.2,0,0 +2008,5,14,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,6,100,95644,0,0,293,0,0,0,0,0,0,0,160,2.1,5,5,400,77777,0,999999999,17,0,0,88,0.2,0,0 +2008,5,15,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,7,100,95663,0,0,316,0,0,0,0,0,0,0,160,3.6,9,9,300,60,0,999999999,19,0,0,88,0.2,0,0 +2008,5,15,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,7,7,100,96263,0,0,325,0,0,0,0,0,0,0,170,2.1,10,10,200,60,0,999999999,19,0,0,88,0.2,0,0 +2008,5,15,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,6.5,6.5,100,95953,0,0,322,0,0,0,0,0,0,0,281,1.5,10,10,200,60,9,999999999,18,0,0,88,0.2,0,0 +2008,5,15,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,6,6,100,95644,0,0,319,0,0,0,0,0,0,0,145,1,10,10,200,30,0,999999999,17,0,0,88,0.2,0,0 +2008,5,15,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,5,5,100,95624,0,0,314,0,0,0,0,0,0,0,50,1.5,10,10,200,30,0,999999999,16,0,0,88,0.2,0,0 +2008,5,15,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,4,4,100,95604,0,0,308,0,0,0,0,0,0,0,10,1.5,10,10,250,30,0,999999999,14,0,0,88,0.2,0,0 +2008,5,15,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,4,4,100,95604,0,0,308,0,0,0,0,0,0,0,170,0.5,10,10,200,30,0,999999999,14,0,0,88,0.2,0,0 +2008,5,15,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,2,2,100,95564,0,0,297,0,0,0,0,0,0,0,12,1,10,10,200,30,0,999999999,12,0,0,88,0.2,0,0 +2008,5,15,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,2,2,100,95564,259,1333,258,115,260,64,12809,7004,7213,2237,301,0.5,0,0,500,77777,0,999999999,12,0,0,88,0.2,0,0 +2008,5,15,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,4,81,95663,485,1337,279,290,529,98,33389,29235,11349,4004,148,1.5,0,0,3000,77777,0,999999999,14,0,0,88,0.2,0,0 +2008,5,15,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10.9,4.6,65,96187,662,1337,295,444,705,95,53181,41895,11428,4419,86,1,0,0,3000,77777,0,999999999,15,0,0,88,0.2,0,0 +2008,5,15,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,5,51,95815,778,1337,313,549,785,92,67224,47165,11286,4543,190,3.6,0,0,4000,77777,0,999999999,15,0,0,88,0.2,0,0 +2008,5,15,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,5,42,95870,825,1337,326,592,808,94,72977,48908,11566,4711,200,2.6,0,0,6000,77777,0,999999999,15,0,0,88,0.2,0,0 +2008,5,15,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20.9,3.2,31,96050,800,1337,337,571,803,90,70344,48734,11140,4511,170,5.1,0,0,6000,77777,0,999999999,13,0,0,88,0.2,0,0 +2008,5,15,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,5,37,95906,705,1337,335,483,729,98,58133,44042,11864,4653,160,6.7,0,0,6000,77777,0,999999999,15,0,0,88,0.2,0,0 +2008,5,15,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,3,30,95924,546,1337,338,343,583,105,39859,34590,12279,4454,180,6.7,0,0,8000,77777,0,999999999,12,0,0,88,0.2,0,0 +2008,5,15,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20.3,3.3,32,96134,334,1337,352,163,329,81,18335,13496,9149,2945,150,3.6,4,4,8000,77777,0,999999999,13,0,0,88,0.2,0,0 +2008,5,15,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,5,42,95870,83,1337,326,22,11,22,2478,0,2407,702,150,4.1,0,0,7000,77777,0,999999999,15,0,0,88,0.2,0,0 +2008,5,15,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,5,48,95834,0,407,317,0,0,0,0,0,0,0,190,1,0,0,7000,77777,0,999999999,15,0,0,88,0.2,0,0 +2008,5,15,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,4.6,60,96142,0,0,300,0,0,0,0,0,0,0,116,1,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,5,15,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,5,66,95740,0,0,296,0,0,0,0,0,0,0,240,1.5,0,0,5000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,5,15,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,7,67,95778,0,0,307,0,0,0,0,0,0,0,130,3.6,0,0,4000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,5,15,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11.6,7,73,96229,0,0,301,0,0,0,0,0,0,0,150,3.1,0,0,4000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,5,15,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,6,87,95683,0,0,285,0,0,0,0,0,0,0,330,1.5,0,0,3000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,5,16,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,5,87,95663,0,0,280,0,0,0,0,0,0,0,40,1.5,0,0,3000,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,5,16,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6.1,3.4,83,96264,0,0,275,0,0,0,0,0,0,0,10,3.1,0,0,3000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,5,16,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,3,81,95644,0,0,274,0,0,0,0,0,0,0,30,2.6,0,0,3000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,5,16,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,3,81,95644,0,0,274,0,0,0,0,0,0,0,220,2.1,0,0,3000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,5,16,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5.1,2.5,83,96178,0,0,270,0,0,0,0,0,0,0,240,2.1,0,0,2500,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,5,16,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3,1,87,95584,0,0,260,0,0,0,0,0,0,0,76,1,0,0,3000,77777,9,999999999,11,0,0,88,0.2,0,0 +2008,5,16,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,3,81,95644,0,0,274,0,0,0,0,0,0,0,50,2.1,0,0,3000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,5,16,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3.3,1,85,96236,0,0,273,0,0,0,0,0,0,0,270,1.5,3,3,2500,77777,9,999999999,11,0,0,88,0.2,0,0 +2008,5,16,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,2,75,95644,255,1315,273,112,255,64,12525,6652,7125,2205,56,0,0,0,4000,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,5,16,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,3,62,95721,481,1336,290,287,528,97,33056,29161,11240,3960,40,2.1,0,0,4000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,5,16,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,4.1,55,96180,657,1336,322,410,544,143,47545,36855,16609,6151,207,0,5,5,4000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,5,16,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,17,5,45,95852,773,1336,332,544,708,134,64678,46932,16055,6307,13,0,2,2,5000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,5,16,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,5,40,95888,820,1336,331,588,728,141,70185,48861,16905,6724,77,1,0,0,5000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,5,16,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,2.9,29,95979,796,1336,364,495,475,213,57071,37181,24619,9155,130,2.1,6,6,5000,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,5,16,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,1,23,95959,701,1336,344,482,666,133,56712,44910,15697,5986,200,1.5,0,0,7000,77777,9,999999999,10,0,0,88,0.2,0,0 +2008,5,16,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,4,29,95959,542,1336,348,339,580,104,39370,33985,12094,4387,200,1.5,0,0,7000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,5,16,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22.2,3.9,30,95941,330,1336,362,160,323,81,17987,13007,9069,2913,160,2.6,4,4,7000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,5,16,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,6,43,95888,79,1336,332,21,9,21,2371,0,2317,676,140,3.1,0,0,7000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,5,16,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,7,49,95870,0,390,329,0,0,0,0,0,0,0,130,2.6,0,0,7000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,5,16,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15.5,6.5,55,96028,0,0,333,0,0,0,0,0,0,0,160,1.5,4,4,6000,77777,9,999999999,18,0,0,88,0.2,0,0 +2008,5,16,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,7,59,95815,0,0,315,0,0,0,0,0,0,0,170,2.1,0,0,6000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,5,16,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,6,67,95759,0,0,301,0,0,0,0,0,0,0,321,1,0,0,6000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,5,16,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9.9,4.7,70,96017,0,0,308,0,0,0,0,0,0,0,348,0,5,5,5000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,5,16,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,4,71,95702,0,0,287,0,0,0,0,0,0,0,183,1,0,0,5000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,5,17,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,3,76,95663,0,0,278,0,0,0,0,0,0,0,40,1.5,0,0,4000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,5,17,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6.3,3.1,80,95928,0,0,291,0,0,0,0,0,0,0,339,1,5,5,4000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,5,17,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,2,75,95644,0,0,273,0,0,0,0,0,0,0,159,0.5,0,0,4000,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,5,17,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,2,81,95624,0,0,269,0,0,0,0,0,0,0,174,0.5,0,0,4000,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,5,17,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4.8,1.5,79,95861,0,0,273,0,0,0,0,0,0,0,20,1.5,1,1,4000,77777,9,999999999,11,0,0,88,0.2,0,0 +2008,5,17,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5,1,75,95624,0,0,268,0,0,0,0,0,0,0,40,1.5,0,0,4000,77777,9,999999999,10,0,0,88,0.2,0,0 +2008,5,17,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4,1,81,95604,0,0,264,0,0,0,0,0,0,0,310,1.5,0,0,4000,77777,9,999999999,11,0,0,88,0.2,0,0 +2008,5,17,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4.1,0.7,78,95866,0,0,283,0,0,0,0,0,0,0,21,1,6,6,4000,7500,9,999999999,10,0,0,88,0.2,0,0 +2008,5,17,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,1,70,95644,251,1298,272,110,211,70,12152,6089,7804,2340,118,1,0,0,4000,77777,9,999999999,10,0,0,88,0.2,0,0 +2008,5,17,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,1,54,95721,476,1336,288,285,447,125,32098,27883,14190,4755,10,1.5,0,0,5000,77777,9,999999999,10,0,0,88,0.2,0,0 +2008,5,17,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.8,2.5,43,95854,653,1336,331,382,419,178,43560,31212,20316,7208,360,1.5,6,6,5000,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,5,17,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,3,37,95870,769,1336,324,542,699,140,64280,47488,16640,6498,64,1,0,0,5000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,5,17,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,3,30,95924,816,1336,338,585,717,147,69664,49377,17611,6961,110,1.5,0,0,5000,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,5,17,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.4,3.3,29,95660,791,1336,368,491,472,212,56577,36863,24531,9108,200,3.1,6,6,5000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,5,17,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,4,29,95959,696,1336,348,476,673,125,56140,43795,14824,5684,200,4.6,0,0,7000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,5,17,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,6,38,95924,537,1336,341,334,458,150,37628,30858,16974,5750,160,6.2,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,5,17,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.5,6.9,44,95798,326,1336,376,84,7,82,9357,271,9200,2935,160,4.1,9,9,8000,77777,9,999999999,18,0,0,88,0.2,0,0 +2008,5,17,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,8,55,95852,76,1336,325,20,11,20,2267,0,2201,645,170,4.1,0,0,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,5,17,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,8,59,95834,0,375,321,0,0,0,0,0,0,0,160,4.1,0,0,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,5,17,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.6,7.9,64,95964,0,0,336,0,0,0,0,0,0,0,150,4.1,6,6,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,5,17,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,8,72,95778,0,0,308,0,0,0,0,0,0,0,150,3.6,0,0,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,5,17,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,8,76,95759,0,0,303,0,0,0,0,0,0,0,190,6.7,0,0,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,5,17,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.3,7.6,83,96062,0,0,313,0,0,0,0,0,0,0,150,3.1,5,5,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2008,5,17,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,8,87,95721,0,0,295,0,0,0,0,0,0,0,120,4.1,0,0,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,5,18,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,8,87,95721,0,0,295,0,0,0,0,0,0,0,150,1.5,0,0,6000,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,5,18,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.3,90,96090,0,0,312,0,0,0,0,0,0,0,220,0.5,8,8,6000,77777,9,999999999,18,0,0,88,0.2,0,0 +2008,5,18,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,6,93,95663,0,0,281,0,0,0,0,0,0,0,20,2.1,0,0,5000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,5,18,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,7,93,95683,0,0,286,0,0,0,0,0,0,0,20,2.1,0,0,5000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,5,18,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.7,6.7,93,96069,0,0,304,0,0,0,0,0,0,0,310,0.5,6,6,4000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,5,18,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,5,87,95663,0,0,280,0,0,0,0,0,0,0,220,1.5,0,0,4000,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,5,18,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,7,93,95683,0,0,286,0,0,0,0,0,0,0,135,0,0,0,4000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,5,18,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,7.3,89,96179,0,0,335,0,0,0,0,0,0,0,120,2.1,10,10,4000,5100,9,999999999,20,0,0,88,0.2,0,0 +2008,5,18,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,7,93,95683,248,1281,330,34,0,34,3291,0,3315,1325,320,2.1,10,10,4000,5100,9,999999999,19,0,0,88,0.2,0,0 +2008,5,18,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,8,87,95721,472,1335,331,144,24,135,16029,1473,15153,4979,310,1.5,9,9,4000,5100,9,999999999,21,0,0,88,0.2,0,0 +2008,5,18,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10.9,7.8,81,96244,649,1335,344,135,0,135,13744,0,13861,5872,330,1,10,10,5000,5100,9,999999999,21,0,0,88,0.2,0,0 +2008,5,18,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,8,76,95759,764,1335,350,168,0,168,19583,19,19654,7508,190,1.5,10,10,6000,5100,9,999999999,21,0,0,88,0.2,0,0 +2008,5,18,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,8,72,95778,811,1335,355,181,1,181,21195,40,21255,8200,140,2.6,10,10,7000,4500,9,999999999,21,0,0,88,0.2,0,0 +2008,5,18,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,7.1,67,96133,786,1335,354,175,2,173,20394,173,20319,7802,360,2.1,10,10,8000,4500,9,999999999,19,0,0,88,0.2,0,0 +2008,5,18,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,7,67,95778,692,1335,344,242,87,197,27526,6567,22529,8023,10,2.6,9,9,8000,4500,9,999999999,19,0,0,88,0.2,0,0 +2008,5,18,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,8,72,95778,533,1335,326,307,151,246,33071,13123,26724,7422,240,2.6,5,5,6000,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,5,18,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13.3,7.2,67,96081,322,1335,346,82,5,81,9192,206,9078,2893,140,2.6,9,9,6000,4500,9,999999999,19,0,0,88,0.2,0,0 +2008,5,18,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,7,67,95778,73,1335,344,10,0,10,976,0,983,374,150,3.6,9,9,6000,4500,9,999999999,19,0,0,88,0.2,0,0 +2008,5,18,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,7,71,95759,0,359,339,0,0,0,0,0,0,0,160,2.6,9,9,6000,4500,9,999999999,19,0,0,88,0.2,0,0 +2008,5,18,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11.5,7,74,96359,0,0,346,0,0,0,0,0,0,0,194,1,10,10,8000,3900,9,999999999,19,0,0,88,0.2,0,0 +2008,5,18,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,7,76,95740,0,0,334,0,0,0,0,0,0,0,320,2.1,9,9,8000,4500,9,999999999,19,0,0,88,0.2,0,0 +2008,5,18,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,7,76,95740,0,0,334,0,0,0,0,0,0,0,360,3.6,9,9,6000,4500,9,999999999,19,0,0,88,0.2,0,0 +2008,5,18,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.6,7.3,80,96078,0,0,333,0,0,0,0,0,0,0,50,3.6,9,9,5000,4500,9,999999999,20,0,0,88,0.2,0,0 +2008,5,18,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,7,76,95740,0,0,334,0,0,0,0,0,0,0,30,2.1,9,9,5000,4500,9,999999999,19,0,0,88,0.2,0,0 +2008,5,19,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,7,76,95740,0,0,334,0,0,0,0,0,0,0,85,1,9,9,5000,4500,9,999999999,19,0,0,88,0.2,0,0 +2008,5,19,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9.9,6.8,81,96007,0,0,329,0,0,0,0,0,0,0,183,1,9,9,5000,4500,9,999999999,19,0,0,88,0.2,0,0 +2008,5,19,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,7,82,95721,0,0,330,0,0,0,0,0,0,0,253,1,9,9,5000,4500,9,999999999,19,0,0,88,0.2,0,0 +2008,5,19,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,7,76,95740,0,0,334,0,0,0,0,0,0,0,230,2.6,9,9,6000,4500,9,999999999,19,0,0,88,0.2,0,0 +2008,5,19,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.9,7.1,77,96244,0,0,334,0,0,0,0,0,0,0,130,3.1,9,9,6000,4500,9,999999999,19,0,0,88,0.2,0,0 +2008,5,19,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,7,76,95740,0,0,334,0,0,0,0,0,0,0,130,3.1,9,9,6000,4500,9,999999999,19,0,0,88,0.2,0,0 +2008,5,19,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,11,7,76,95740,0,0,334,0,0,0,0,0,0,0,69,1.5,9,9,6000,4500,9,999999999,19,0,0,88,0.2,0,0 +2008,5,19,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,6.8,80,96425,0,0,339,0,0,0,0,0,0,0,50,3.1,10,10,6000,3300,9,999999999,19,0,0,88,0.2,0,0 +2008,5,19,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,7,82,95721,244,1264,339,33,0,33,3224,0,3248,1297,10,3.1,10,10,5000,3000,9,999999999,19,0,0,88,0.2,0,0 +2008,5,19,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,7,76,95740,468,1335,344,87,0,87,8671,0,8740,3580,320,2.6,10,10,5000,3300,9,999999999,19,0,0,88,0.2,0,0 +2008,5,19,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11.5,7.3,75,96293,644,1335,347,134,0,134,13645,0,13761,5822,320,1.5,10,10,5000,3300,9,999999999,20,0,0,88,0.2,0,0 +2008,5,19,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,7,71,95759,760,1335,349,167,0,167,19482,18,19553,7458,210,2.1,10,10,5000,3300,9,999999999,19,0,0,88,0.2,0,0 +2008,5,19,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,7,63,95797,806,1335,359,181,1,180,21093,39,21154,8149,250,2.1,10,10,6000,3300,9,999999999,19,0,0,88,0.2,0,0 +2008,5,19,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14.4,6.3,58,96074,782,1335,360,174,0,173,20275,29,20340,7792,90,2.6,10,10,6000,3300,9,999999999,18,0,0,88,0.2,0,0 +2008,5,19,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,7,59,95815,687,1335,364,147,0,147,14939,0,15068,6425,210,2.1,10,10,6000,3000,9,999999999,19,0,0,88,0.2,0,0 +2008,5,19,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,7,63,95797,529,1335,359,103,0,103,10351,0,10436,4320,120,5.1,10,10,7000,2400,9,999999999,19,0,0,88,0.2,0,0 +2008,5,19,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14.8,5.7,54,95873,319,1335,361,50,0,50,4895,0,4932,1977,230,5.1,10,10,8000,3000,9,999999999,17,0,0,88,0.2,0,0 +2008,5,19,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,5,48,95834,70,1335,366,6,0,6,574,0,578,231,220,3.1,10,10,8000,3000,9,999999999,15,0,0,88,0.2,0,0 +2008,5,19,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,6,55,95815,0,344,362,0,0,0,0,0,0,0,170,6.7,10,10,8000,3000,9,999999999,17,0,0,88,0.2,0,0 +2008,5,19,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,19.8,3,33,96059,0,0,383,0,0,0,0,0,0,0,132,3.1,10,10,8000,3000,9,999999999,13,0,0,88,0.2,0,0 +2008,5,19,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,20,2,30,95906,0,0,383,0,0,0,0,0,0,0,150,5.1,10,10,8000,3000,0,99999999,11,0,0,88,0.2,0,0 +2008,5,19,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,1,25,95942,0,0,392,0,0,0,0,0,0,0,350,10.8,10,10,6000,1410,0,99999999,10,0,0,88,0.2,0,0 +2008,5,19,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19,6,43,95888,0,0,383,0,0,0,0,0,0,0,330,10.3,10,10,6000,3000,0,99999999,17,0,0,88,0.2,0,0 +2008,5,19,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,9,67,95815,0,0,356,0,0,0,0,0,0,0,350,6.2,9,9,6000,3000,0,19999999,23,0,0,88,0.2,0,0 +2008,5,20,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,9,67,95815,0,0,366,0,0,0,0,0,0,0,360,8.7,10,10,6000,3000,0,19999999,23,0,0,88,0.2,0,0 +2008,5,20,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13.8,10.2,79,96252,0,0,362,0,0,0,0,0,0,0,340,5.1,10,10,6000,3000,0,19999999,26,0,0,88,0.2,0,0 +2008,5,20,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,11,82,95797,0,0,364,0,0,0,0,0,0,0,110,2.6,10,10,6000,2400,0,19999999,28,0,0,88,0.2,2,0 +2008,5,20,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,11,88,95778,0,0,358,0,0,0,0,0,0,0,90,1.5,10,10,6000,2400,0,19999999,28,0,0,88,0.2,0.3,0 +2008,5,20,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13.8,10.6,81,96176,0,0,362,0,0,0,0,0,0,0,350,6.7,10,10,8000,2400,0,19999999,27,0,0,88,0.2,0,0 +2008,5,20,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,10,72,95815,0,0,367,0,0,0,0,0,0,0,350,9.3,10,10,8000,2400,0,19999999,25,0,0,88,0.2,0,0 +2008,5,20,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16,9,63,95834,0,0,371,0,0,0,0,0,0,0,340,9.8,10,10,8000,2400,0,19999999,23,0,0,88,0.2,0,0 +2008,5,20,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16.5,8.8,60,96179,0,0,374,0,0,0,0,0,0,0,330,7.7,10,10,8000,3000,0,19999999,23,0,0,88,0.2,0,0 +2008,5,20,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17,9,59,95852,240,1247,366,53,0,53,5147,0,5185,1879,330,6.7,9,9,8000,3000,0,19999999,23,0,0,88,0.2,0,0 +2008,5,20,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18,9,56,95870,464,1334,371,140,6,138,15589,398,15407,4999,340,7.7,9,9,8000,3000,0,19999999,23,0,0,88,0.2,0,0 +2008,5,20,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18.9,8.9,52,96109,640,1334,376,218,39,199,24490,2948,22502,7708,340,4.6,9,9,8000,3000,0,19999999,23,0,0,88,0.2,0,0 +2008,5,20,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18,11,64,95870,755,1334,374,270,42,247,30458,3345,27950,9829,120,3.6,9,9,8000,3300,0,19999999,28,0,0,88,0.2,0,0 +2008,5,20,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19,10,56,95888,802,1334,356,527,548,198,61045,39912,22999,8727,160,4.6,5,5,8000,77777,0,19999999,25,0,0,88,0.2,0,0 +2008,5,20,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18.4,11.2,63,96053,778,1334,387,171,3,169,19950,220,19821,7624,120,2.1,10,10,8000,2700,0,19999999,29,0,0,88,0.2,0,0 +2008,5,20,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17,12,72,95852,683,1334,380,144,0,144,14650,0,14778,6327,180,4.6,10,10,8000,3300,0,19999999,31,0,0,88,0.2,0,0 +2008,5,20,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18,10,59,95870,526,1334,383,101,0,101,10178,0,10262,4257,130,5.1,10,10,8000,2700,0,19999999,25,0,0,88,0.2,0,0 +2008,5,20,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15.7,12.2,80,96268,315,1334,374,48,0,48,4745,0,4781,1927,130,3.1,10,10,8000,2700,0,19999999,32,0,0,88,0.2,0,0 +2008,5,20,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,13,94,95797,67,1334,356,9,0,9,888,0,894,342,260,1.5,9,9,8000,3000,0,19999999,34,0,0,88,0.2,0,0 +2008,5,20,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,12,88,95797,0,330,355,0,0,0,0,0,0,0,230,1.5,9,9,8000,3000,0,19999999,31,0,0,88,0.2,0,0 +2008,5,20,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,13.7,12.2,91,96117,0,0,353,0,0,0,0,0,0,0,261,1,9,9,8000,3300,9,999999999,32,0,0,88,0.2,0,0 +2008,5,20,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,12,88,95797,0,0,355,0,0,0,0,0,0,0,230,3.1,9,9,8000,3000,9,999999999,31,0,0,88,0.2,0,0 +2008,5,20,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16,10,68,95834,0,0,362,0,0,0,0,0,0,0,80,2.6,9,9,8000,3300,9,999999999,25,0,0,88,0.2,0,0 +2008,5,20,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,11.2,83,95953,0,0,364,0,0,0,0,0,0,0,280,3.1,10,10,8000,3300,9,999999999,29,0,0,88,0.2,0,0 +2008,5,20,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,12,88,95797,0,0,355,0,0,0,0,0,0,0,40,3.1,9,9,8000,3600,9,999999999,31,0,0,88,0.2,0,0 +2008,5,21,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,11,82,95797,0,0,353,0,0,0,0,0,0,0,34,0.5,9,9,7000,3600,9,999999999,28,0,0,88,0.2,0,0 +2008,5,21,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13.2,11,87,95824,0,0,350,0,0,0,0,0,0,0,190,2.1,9,9,9000,3900,9,999999999,28,0,0,88,0.2,0,0 +2008,5,21,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,11,88,95778,0,0,349,0,0,0,0,0,0,0,128,1,9,9,8000,3900,9,999999999,28,0,0,88,0.2,0,0 +2008,5,21,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,11,94,95759,0,0,344,0,0,0,0,0,0,0,340,1.5,9,9,8000,3900,9,999999999,28,0,0,88,0.2,0,0 +2008,5,21,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12.5,10.6,88,95773,0,0,346,0,0,0,0,0,0,0,329,1,9,9,8000,4200,9,999999999,27,0,0,88,0.2,0,0 +2008,5,21,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,11,94,95759,0,0,344,0,0,0,0,0,0,0,340,1,9,9,7000,4500,9,999999999,28,0,0,88,0.2,0,0 +2008,5,21,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,11,94,95759,0,0,344,0,0,0,0,0,0,0,274,1.5,9,9,8000,4500,9,999999999,28,0,0,88,0.2,0,0 +2008,5,21,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11.8,10.2,90,95609,0,0,342,0,0,0,0,0,0,0,310,2.1,9,9,8000,4500,9,999999999,26,0,0,88,0.2,0,0 +2008,5,21,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,10,88,95759,237,1230,343,51,0,51,5017,0,5054,1836,210,2.1,9,9,8000,4500,9,999999999,26,0,0,88,0.2,0,0 +2008,5,21,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,10,77,95797,461,1334,352,138,6,136,15371,378,15198,4934,90,3.1,9,9,8000,3900,9,999999999,25,0,0,88,0.2,0,0 +2008,5,21,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14.1,10.9,81,95917,636,1334,354,215,19,206,24079,1464,23167,7842,250,2.1,9,9,8000,3900,9,999999999,28,0,0,88,0.2,0,0 +2008,5,21,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,10,72,95815,751,1334,357,269,44,244,30304,3545,27658,9725,160,4.1,9,9,8000,3900,9,999999999,25,0,0,88,0.2,0,0 +2008,5,21,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,9,67,95815,798,1334,356,291,63,254,33014,5104,28919,10369,160,2.6,9,9,8000,3900,9,999999999,23,0,0,88,0.2,0,0 +2008,5,21,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15.9,8.7,62,95742,773,1334,360,280,62,244,31701,4987,27793,9913,150,5.7,9,9,8000,4500,9,999999999,22,0,0,88,0.2,0,0 +2008,5,21,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16,8,59,95834,679,1334,360,236,42,215,26599,3250,24346,8412,140,3.6,9,9,8000,1500,9,999999999,21,0,0,88,0.2,0,0 +2008,5,21,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,8,63,95815,522,1334,355,165,29,154,18492,1962,17290,5750,150,5.1,9,9,8000,1500,9,999999999,21,0,0,88,0.2,0,0 +2008,5,21,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14.6,8.9,69,95841,312,1334,364,48,0,48,4705,0,4741,1904,160,7.2,10,10,8000,1500,9,999999999,23,0,0,88,0.2,0,0 +2008,5,21,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,10,82,95778,64,1334,357,5,0,5,521,0,524,210,150,5.7,10,10,8000,2400,9,999999999,25,0,0,88,0.2,0,0 +2008,5,21,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,10,88,95759,0,316,352,0,0,0,0,0,0,0,120,6.7,10,10,6000,2400,9,999999999,26,0,0,88,0.2,0,0 +2008,5,21,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11.5,10.9,96,96161,0,0,351,0,0,0,0,0,0,0,270,2.1,10,10,5000,1500,0,919999999,28,0,0,88,0.2,6,0 +2008,5,21,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,11,100,95740,0,0,349,0,0,0,0,0,0,0,210,1.5,10,10,5000,1500,0,919999999,28,0,0,88,0.2,6,0 +2008,5,21,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,11,100,95740,0,0,349,0,0,0,0,0,0,0,170,2.1,10,10,5000,1500,0,919999999,28,0,0,88,0.2,0.2,0 +2008,5,21,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11.7,11.2,97,96212,0,0,352,0,0,0,0,0,0,0,60,1.5,10,10,5000,1500,0,919999999,29,0,0,88,0.2,0,0 +2008,5,21,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,11,94,95759,0,0,353,0,0,0,0,0,0,0,123,0.5,10,10,7000,1800,0,919999999,28,0,0,88,0.2,0,0 +2008,5,22,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,11,94,95759,0,0,353,0,0,0,0,0,0,0,141,1,10,10,6000,1800,0,919999999,28,0,0,88,0.2,0,0 +2008,5,22,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12.2,11.1,93,96146,0,0,355,0,0,0,0,0,0,0,236,1,10,10,6000,1800,0,919999999,29,0,0,88,0.2,0,0 +2008,5,22,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,12,100,95759,0,0,355,0,0,0,0,0,0,0,200,1.5,10,10,6000,1800,0,919999999,31,0,0,88,0.2,0,0 +2008,5,22,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,12,100,95759,0,0,355,0,0,0,0,0,0,0,150,2.1,10,10,7000,2100,0,919999999,31,0,0,88,0.2,0,0 +2008,5,22,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12.2,11.5,95,96108,0,0,355,0,0,0,0,0,0,0,154,0.5,10,10,6000,1800,0,919999999,30,0,0,88,0.2,0,0 +2008,5,22,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,12,100,95759,0,0,355,0,0,0,0,0,0,0,300,1.5,10,10,5000,1800,0,919999999,31,0,0,88,0.2,0,0 +2008,5,22,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,12,100,95759,0,0,355,0,0,0,0,0,0,0,281,1,10,10,6000,1800,0,919999999,31,0,0,88,0.2,0,0 +2008,5,22,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,12,94,95778,0,0,350,0,0,0,0,0,0,0,150,2.1,9,9,8000,1800,0,919999999,31,0,0,88,0.2,0,0 +2008,5,22,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,12,94,95778,233,1214,350,50,0,50,4893,0,4929,1795,195,1,9,9,8000,1500,0,919999999,31,0,0,88,0.2,0,0 +2008,5,22,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,13,12,94,95778,457,1333,350,136,15,131,15170,848,14677,4800,219,0.5,9,9,8000,1800,0,919999999,31,0,0,88,0.2,0,0 +2008,5,22,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,14.1,12.6,91,96238,632,1333,356,213,13,207,23773,987,23195,7826,37,1,9,9,8000,1500,0,919999999,33,0,0,88,0.2,0,0 +2008,5,22,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,15,13,88,95815,747,1333,361,266,40,243,29879,3107,27536,9679,206,0,9,9,8000,1500,0,919999999,34,0,0,88,0.2,0,0 +2008,5,22,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,15,13,88,95815,793,1333,371,175,2,174,20419,164,20345,7862,138,1,10,10,8000,1500,0,919999999,34,0,0,88,0.2,0,0 +2008,5,22,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,16.2,13.7,85,96154,769,1333,378,168,2,167,19561,102,19547,7516,182,1,10,10,8000,1800,0,919999999,37,0,0,88,0.2,0,0 +2008,5,22,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16,14,88,95834,675,1333,367,232,36,214,26048,2699,24112,8351,170,2.6,9,9,8000,1800,0,919999999,38,0,0,88,0.2,0,0 +2008,5,22,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,14,82,95852,518,1333,372,162,20,155,18062,1241,17294,5746,150,2.1,9,9,8000,1800,0,919999999,38,0,0,88,0.2,0,0 +2008,5,22,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16.4,14.2,87,95997,309,1333,369,77,0,77,7515,0,7573,2731,170,2.6,9,9,8000,1800,0,919999999,39,0,0,88,0.2,0,0 +2008,5,22,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,14,88,95834,61,1333,367,8,0,8,814,0,820,314,150,2.6,9,9,8000,2700,0,919999999,38,0,0,88,0.2,0,0 +2008,5,22,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,14,94,95815,0,303,362,0,0,0,0,0,0,0,160,1,9,9,7000,2700,0,919999999,38,0,0,88,0.2,0,0 +2008,5,22,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15.3,14,92,95949,0,0,363,0,0,0,0,0,0,0,0,1,9,9,7000,3000,9,999999999,38,0,0,88,0.2,0,0 +2008,5,22,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,16,14,88,95834,0,0,367,0,0,0,0,0,0,0,156,1,9,9,7000,3000,9,999999999,38,0,0,88,0.2,0,0 +2008,5,22,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,15,14,94,95815,0,0,362,0,0,0,0,0,0,0,27,1,9,9,7000,3000,9,999999999,38,0,0,88,0.2,0,0 +2008,5,22,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14.2,13.4,95,95975,0,0,357,0,0,0,0,0,0,0,330,1.5,9,9,7000,3600,9,999999999,36,0,0,88,0.2,0,0 +2008,5,22,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,13,94,95797,0,0,356,0,0,0,0,0,0,0,40,1.5,9,9,5000,3600,9,999999999,34,0,0,88,0.2,0,0 +2008,5,23,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,13,94,95797,0,0,356,0,0,0,0,0,0,0,80,1,9,9,5000,3600,9,999999999,34,0,0,88,0.2,0,0 +2008,5,23,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13.8,13.1,96,95760,0,0,355,0,0,0,0,0,0,0,77,0,9,9,4000,1500,9,999999999,35,0,0,88,0.2,0,0 +2008,5,23,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,13,100,95778,0,0,351,0,0,0,0,0,0,0,40,1,9,9,4000,1500,9,999999999,34,0,0,88,0.2,0,0 +2008,5,23,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,13,100,95778,0,0,351,0,0,0,0,0,0,0,311,1,9,9,600,4500,0,999999999,34,0,0,88,0.2,0,0 +2008,5,23,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12.8,12.4,97,95675,0,0,359,0,0,0,0,0,0,0,20,0.5,10,10,600,3900,0,999999999,32,0,0,88,0.2,0,0 +2008,5,23,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,13,100,95778,0,0,361,0,0,0,0,0,0,0,144,1,10,10,600,3900,0,999999999,34,0,0,88,0.2,0,0 +2008,5,23,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,13,13,100,95778,0,0,361,0,0,0,0,0,0,0,360,1.5,10,10,600,77777,0,999999999,34,0,0,88,0.2,0,0 +2008,5,23,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12.7,12.5,99,95664,0,0,359,0,0,0,0,0,0,0,330,1.5,10,10,400,4500,0,999999999,33,0,0,88,0.2,0,0 +2008,5,23,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,13.4,12.8,96,95730,230,1197,363,30,0,30,2911,0,2932,1176,242,2,10,10,1200,4500,9,999999999,34,0,0,88,0.2,0,0 +2008,5,23,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,13,94,95797,453,1332,356,135,12,130,14955,683,14565,4757,180,2.6,9,9,2000,3000,0,999999999,34,0,0,88,0.2,0,0 +2008,5,23,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15.4,14.2,93,95818,628,1332,364,211,13,205,23486,946,22926,7744,250,2.1,9,9,4000,4500,0,999999999,39,0,0,88,0.2,0,0 +2008,5,23,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,15,88,95852,742,1332,373,263,15,254,29396,1173,28629,9917,185,0.5,9,9,5000,4500,0,999999999,42,0,0,88,0.2,0,0 +2008,5,23,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,15,83,95870,789,1332,378,284,31,266,31971,2431,30103,10631,160,2.6,9,9,6000,1500,0,999999999,42,0,0,88,0.2,0,0 +2008,5,23,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20.9,14.1,65,95690,765,1332,393,274,30,256,30748,2402,28954,10165,350,7.2,9,9,8000,1500,0,999999999,38,0,0,88,0.2,0,0 +2008,5,23,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,21,14,64,95924,671,1332,393,231,14,224,25751,1056,25105,8557,360,7.7,9,9,8000,77777,0,999999999,38,0,0,88,0.2,0,0 +2008,5,23,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,21,13,60,95924,515,1332,392,161,20,154,17941,1250,17177,5697,340,10.8,9,9,8000,77777,0,999999999,34,0,0,88,0.2,0,0 +2008,5,23,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19.7,13.6,68,95820,306,1332,386,76,0,76,7415,0,7471,2693,330,8.7,9,9,8000,1500,0,919999999,36,0,0,88,0.2,0,0 +2008,5,23,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19,14,73,95888,58,1332,382,8,0,8,779,0,784,301,350,9.3,9,9,8000,1800,0,919999999,38,0,0,88,0.2,0,0 +2008,5,23,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17,15,88,95852,0,290,373,0,0,0,0,0,0,0,200,2.6,9,9,8000,1800,0,919999999,42,0,0,88,0.2,0,0 +2008,5,23,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16.1,14.9,93,96058,0,0,369,0,0,0,0,0,0,0,120,1.5,9,9,8000,1500,0,919999999,41,0,0,88,0.2,4,0 +2008,5,23,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16,15,94,95834,0,0,379,0,0,0,0,0,0,0,150,2.6,10,10,8000,1500,0,919999999,42,0,0,88,0.2,4,0 +2008,5,23,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,15,100,95815,0,0,363,0,0,0,0,0,0,0,140,4.1,9,9,8000,1500,0,919999999,42,0,0,88,0.2,0.6,0 +2008,5,23,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15.3,14.5,95,96242,0,0,364,0,0,0,0,0,0,0,130,3.1,9,9,8000,1500,0,919999999,40,0,0,88,0.2,0,0 +2008,5,23,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,13,94,95797,0,0,356,0,0,0,0,0,0,0,140,4.1,9,9,7000,1500,0,919999999,34,0,0,88,0.2,0,0 +2008,5,24,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,13,94,95797,0,0,356,0,0,0,0,0,0,0,120,2.6,9,9,8000,1200,0,919999999,34,0,0,88,0.2,0,0 +2008,5,24,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13.8,13,95,96384,0,0,365,0,0,0,0,0,0,0,130,3.6,10,10,7000,1500,0,919999999,34,0,0,88,0.2,0,0 +2008,5,24,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,13,94,95797,0,0,366,0,0,0,0,0,0,0,120,4.1,10,10,8000,1200,0,919999999,34,0,0,88,0.2,0,0 +2008,5,24,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,13,100,95778,0,0,361,0,0,0,0,0,0,0,150,3.6,10,10,8000,1200,0,919999999,34,0,0,88,0.2,0,0 +2008,5,24,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13.2,12.1,93,96514,0,0,361,0,0,0,0,0,0,0,130,4.1,10,10,8000,1200,0,919999999,32,0,0,88,0.2,0,0 +2008,5,24,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,12,94,95778,0,0,360,0,0,0,0,0,0,0,140,4.6,10,10,8000,1500,0,919999999,31,0,0,88,0.2,0,0 +2008,5,24,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,12,94,95778,0,0,360,0,0,0,0,0,0,0,110,3.6,10,10,8000,1500,0,919999999,31,0,0,88,0.2,0,0 +2008,5,24,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13.6,11.3,86,96806,0,0,352,0,0,0,0,0,0,0,70,2.1,9,9,8000,1500,0,919999999,29,0,0,88,0.2,0,0 +2008,5,24,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,13,94,95797,227,1181,356,48,0,48,4662,0,4696,1715,310,2.1,9,9,8000,1500,0,919999999,34,0,0,88,0.2,0,0 +2008,5,24,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,15,12,82,95815,449,1332,360,133,25,125,14860,1395,13986,4602,301,0.5,9,9,8000,1500,0,919999999,31,0,0,88,0.2,0,0 +2008,5,24,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,15.8,12.2,79,96941,624,1332,341,393,482,167,44525,32661,19054,6751,75,1,4,4,8000,77777,0,919999999,32,0,0,88,0.2,0,0 +2008,5,24,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,17,12,72,95852,738,1332,344,502,720,103,60361,41476,12392,4923,199,1,3,3,8000,77777,0,919999999,31,0,0,88,0.2,0,0 +2008,5,24,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,18,11,64,95870,785,1332,347,544,748,103,66009,43866,12557,5058,213,1,3,3,8000,77777,0,919999999,28,0,0,88,0.2,0,0 +2008,5,24,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,19.3,10.5,57,96731,761,1332,353,523,738,102,63301,43230,12326,4932,221,1,3,3,8000,77777,0,919999999,27,0,0,88,0.2,0,0 +2008,5,24,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,20,9,49,95906,668,1332,355,442,683,99,52706,39742,11908,4614,350,3.1,3,3,8000,77777,0,919999999,23,0,0,88,0.2,0,0 +2008,5,24,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,21,7,40,95924,511,1332,349,312,562,97,36207,30767,11254,4054,247,1.5,1,1,9900,77777,0,919999999,19,0,0,88,0.2,0,0 +2008,5,24,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19.2,11.5,61,96531,303,1332,345,145,299,77,16102,9708,8560,2709,180,6.2,1,1,9900,77777,0,919999999,29,0,0,88,0.2,0,0 +2008,5,24,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,17,13,77,95852,56,1332,357,12,0,12,1165,0,1172,419,210,3.1,7,7,9900,77777,0,919999999,34,0,0,88,0.2,0,0 +2008,5,24,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,16,12,77,95834,0,278,351,0,0,0,0,0,0,0,220,3.1,7,7,9900,77777,0,919999999,31,0,0,88,0.2,0,0 +2008,5,24,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16,11.6,75,96510,0,0,331,0,0,0,0,0,0,0,190,6.2,1,1,9900,77777,9,999999999,30,0,0,88,0.2,0,0 +2008,5,24,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,15,11,77,95815,0,0,345,0,0,0,0,0,0,0,140,2.1,7,7,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,5,24,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,14,11,82,95797,0,0,346,0,0,0,0,0,0,0,22,0,8,8,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,5,24,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12.4,8.6,78,96443,0,0,306,0,0,0,0,0,0,0,300,1,0,0,9900,77777,9,999999999,22,0,0,88,0.2,0,0 +2008,5,24,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,9,82,95759,0,0,304,0,0,0,0,0,0,0,124,0,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,5,25,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,9,93,95721,0,0,296,0,0,0,0,0,0,0,140,1,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,5,25,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,9.1,94,96349,0,0,296,0,0,0,0,0,0,0,190,1.5,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,5,25,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,9,93,95721,0,0,296,0,0,0,0,0,0,0,275,0.5,0,0,5000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,5,25,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,8,93,95702,0,0,303,0,0,0,0,0,0,0,180,0.5,3,3,5000,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,5,25,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,7,93,95683,0,0,298,0,0,0,0,0,0,0,83,1.5,3,3,5000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,5,25,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,9,100,95702,0,0,337,0,0,0,0,0,0,0,30,1,10,10,4300,210,9,999999999,23,0,0,88,0.2,0,0 +2008,5,25,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,9,100,95702,0,0,309,0,0,0,0,0,0,0,271,1,5,5,2000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,5,25,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.7,9.4,98,96221,0,0,315,0,0,0,0,0,0,0,40,2.1,6,6,800,90,0,999999999,24,0,0,88,0.2,0,0 +2008,5,25,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,9,8,93,95702,223,1165,335,38,0,38,3761,0,3789,1442,151,1.5,10,10,300,77777,0,999999999,21,0,0,88,0.2,0,0 +2008,5,25,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,10,100,95721,446,1331,343,81,0,81,8026,0,8091,3311,33,1,10,10,200,60,0,999999999,26,0,0,88,0.2,0,0 +2008,5,25,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,10.6,97,96274,620,1331,348,127,0,127,12859,0,12969,5481,30,1.5,10,10,1000,90,0,999999999,27,0,0,88,0.2,0,0 +2008,5,25,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,12,11,94,95759,734,1331,353,196,9,191,22447,628,22002,8124,217,1,10,10,1500,77777,0,999999999,28,0,0,88,0.2,0,0 +2008,5,25,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,12,88,95797,781,1331,355,282,71,240,32010,5560,27412,9890,30,1.5,9,9,4000,7500,0,999999999,31,0,0,88,0.2,0,0 +2008,5,25,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16.2,11.7,75,96098,757,1331,365,271,15,262,30421,1270,29602,10249,190,1,9,9,6000,7500,0,999999999,30,0,0,88,0.2,0,0 +2008,5,25,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,12,68,95870,664,1331,375,228,14,221,25497,1078,24851,8441,170,2.1,9,9,7000,77777,0,999999999,31,0,0,88,0.2,0,0 +2008,5,25,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,11,64,95870,508,1331,374,159,20,151,17703,1262,16949,5604,180,3.1,9,9,8000,77777,0,999999999,28,0,0,88,0.2,0,0 +2008,5,25,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,11.5,66,96045,300,1331,374,74,0,74,7240,0,7295,2625,150,2.6,9,9,8000,4500,0,999999999,29,0,0,88,0.2,0,0 +2008,5,25,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,12,77,95834,54,1331,365,7,0,7,716,0,721,277,170,3.1,9,9,8000,4500,0,999999999,31,0,0,88,0.2,0,0 +2008,5,25,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,12,88,95797,0,267,335,0,0,0,0,0,0,0,160,4.1,5,5,8000,77777,0,999999999,31,0,0,88,0.2,0,0 +2008,5,25,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13.2,11.2,88,96117,0,0,330,0,0,0,0,0,0,0,150,3.6,5,5,8000,77777,9,999999999,29,0,0,88,0.2,0,0 +2008,5,25,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,11,88,95778,0,0,311,0,0,0,0,0,0,0,140,3.1,0,0,7000,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,5,25,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,10,88,95759,0,0,305,0,0,0,0,0,0,0,129,1,0,0,6000,77777,9,999999999,26,0,0,88,0.2,0,0 +2008,5,25,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11.1,9.7,91,96163,0,0,301,0,0,0,0,0,0,0,20,1.5,0,0,4000,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,5,25,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,9,9,100,95702,0,0,337,0,0,0,0,0,0,0,320,1.5,10,10,400,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,5,26,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,9,100,95702,0,0,309,0,0,0,0,0,0,0,104,0.5,5,5,500,77777,0,999999999,23,0,0,88,0.2,0,0 +2008,5,26,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9.1,8.7,97,96068,0,0,309,0,0,0,0,0,0,0,94,0.5,5,5,800,77777,0,999999999,23,0,0,88,0.2,0,0 +2008,5,26,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,9,100,95702,0,0,292,0,0,0,0,0,0,0,227,1,0,0,500,77777,0,999999999,23,0,0,88,0.2,0,0 +2008,5,26,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,8,93,95702,0,0,326,0,0,0,0,0,0,0,250,1.5,9,9,1600,5100,0,999999999,21,0,0,88,0.2,0,0 +2008,5,26,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.1,9.5,96,96021,0,0,314,0,0,0,0,0,0,0,110,2.6,5,5,1600,77777,0,999999999,24,0,0,88,0.2,0,0 +2008,5,26,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,9,93,95721,0,0,296,0,0,0,0,0,0,0,240,2.1,0,0,1600,77777,0,999999999,23,0,0,88,0.2,0,0 +2008,5,26,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,9,93,95721,0,0,332,0,0,0,0,0,0,0,131,1,9,9,900,6000,0,999999999,23,0,0,88,0.2,0,0 +2008,5,26,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,10,9,93,95721,0,0,341,0,0,0,0,0,0,0,137,0.5,10,10,400,60,0,999999999,23,0,0,88,0.2,0,0 +2008,5,26,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,10,10,100,95721,220,1150,343,28,0,28,2740,0,2760,1104,210,1.5,10,10,800,77777,0,999999999,26,0,0,88,0.2,0,0 +2008,5,26,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,10,94,95740,442,1331,347,80,0,80,7945,0,8008,3275,180,2.6,10,10,1500,60,0,999999999,26,0,0,88,0.2,0,0 +2008,5,26,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11.4,10.4,94,96263,616,1331,350,126,0,126,12769,0,12878,5437,130,4.1,10,10,3000,150,0,999999999,27,0,0,88,0.2,0,0 +2008,5,26,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,10,88,95759,731,1331,343,260,42,236,29266,3384,26785,9377,290,4.6,9,9,2000,150,0,999999999,26,0,0,88,0.2,0,0 +2008,5,26,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,11,88,95778,777,1331,349,281,31,263,31651,2572,29756,10445,340,3.1,9,9,3000,4500,0,999999999,28,0,0,88,0.2,0,0 +2008,5,26,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13.4,10.9,85,96017,754,1331,350,270,44,245,30451,3522,27792,9793,40,2.6,9,9,3000,300,0,999999999,28,0,0,88,0.2,0,0 +2008,5,26,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,11,82,95797,661,1331,353,227,14,220,25390,1091,24742,8390,180,5.1,9,9,3000,600,0,999999999,28,0,0,88,0.2,0,0 +2008,5,26,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,11,88,95778,505,1331,349,158,26,148,17590,1630,16583,5503,130,7.7,9,9,4000,450,0,999999999,28,0,0,88,0.2,0,0 +2008,5,26,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12.2,10.2,88,96231,297,1331,354,45,0,45,4376,0,4409,1770,190,4.1,10,10,4000,3600,0,999999999,26,0,0,88,0.2,0,0 +2008,5,26,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,11,94,95759,51,1331,353,4,0,4,420,0,423,170,150,1,10,10,4000,3600,0,999999999,28,0,0,88,0.2,0,0 +2008,5,26,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,10,88,95759,0,256,343,0,0,0,0,0,0,0,190,1.5,9,9,4000,3600,0,999999999,26,0,0,88,0.2,0,0 +2008,5,26,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11.8,10,89,96006,0,0,342,0,0,0,0,0,0,0,70,1,9,9,4000,4500,9,999999999,26,0,0,88,0.2,0,0 +2008,5,26,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,10,94,95740,0,0,338,0,0,0,0,0,0,0,210,2.1,9,9,4000,4500,9,999999999,26,0,0,88,0.2,0,0 +2008,5,26,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,10,88,95759,0,0,343,0,0,0,0,0,0,0,200,3.1,9,9,5000,4500,9,999999999,26,0,0,88,0.2,0,0 +2008,5,26,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.9,9.5,91,96093,0,0,337,0,0,0,0,0,0,0,180,3.6,9,9,5000,4500,9,999999999,24,0,0,88,0.2,0,0 +2008,5,26,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,9,87,95740,0,0,337,0,0,0,0,0,0,0,160,2.1,9,9,5000,4500,9,999999999,23,0,0,88,0.2,0,0 +2008,5,27,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,9,87,95740,0,0,337,0,0,0,0,0,0,0,140,2.1,9,9,5000,4500,9,999999999,23,0,0,88,0.2,0,0 +2008,5,27,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.7,9.3,91,96032,0,0,345,0,0,0,0,0,0,0,120,3.1,10,10,5000,4500,9,999999999,24,0,0,88,0.2,0,0 +2008,5,27,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,9,87,95740,0,0,346,0,0,0,0,0,0,0,20,1,10,10,6000,570,9,999999999,23,0,0,88,0.2,0,0 +2008,5,27,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,9,87,95740,0,0,346,0,0,0,0,0,0,0,280,2.1,10,10,6000,450,9,999999999,23,0,0,88,0.2,0,0 +2008,5,27,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.5,9.3,92,95953,0,0,344,0,0,0,0,0,0,0,70,1.5,10,10,5000,450,9,999999999,24,0,0,88,0.2,0,0 +2008,5,27,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,9,87,95740,0,0,346,0,0,0,0,0,0,0,170,2.1,10,10,5000,450,9,999999999,23,0,0,88,0.2,0,0 +2008,5,27,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,9,87,95740,0,0,337,0,0,0,0,0,0,0,330,2.6,9,9,5000,390,9,999999999,23,0,0,88,0.2,0,0 +2008,5,27,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.9,9.1,89,95979,0,0,346,0,0,0,0,0,0,0,190,3.1,10,10,5000,390,9,999999999,23,0,0,88,0.2,0,0 +2008,5,27,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,9,87,95740,217,1134,346,27,0,27,2684,0,2703,1081,290,2.1,10,10,5000,3900,9,999999999,23,0,0,88,0.2,0,0 +2008,5,27,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,9,87,95740,439,1331,346,79,0,79,7873,0,7936,3241,150,3.1,10,10,5000,390,9,999999999,23,0,0,88,0.2,0,0 +2008,5,27,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.9,9.4,90,96036,613,1331,346,126,0,126,12693,0,12801,5397,170,2.6,10,10,5000,390,0,919999999,24,0,0,88,0.2,0,0 +2008,5,27,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,10,94,95740,727,1331,347,157,0,157,18305,2,18384,6981,200,2.6,10,10,4000,1800,0,919999999,26,0,0,88,0.2,0,0 +2008,5,27,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,10,88,95759,774,1331,352,171,0,170,19892,23,19960,7659,18,1,10,10,4000,2100,0,919999999,26,0,0,88,0.2,0,0 +2008,5,27,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11.9,9.8,87,95961,750,1331,352,164,0,164,19097,13,19170,7317,80,3.1,10,10,4000,2100,0,919999999,25,0,0,88,0.2,0,0 +2008,5,27,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,10,94,95740,657,1331,347,138,0,138,13986,0,14107,6002,140,3.6,10,10,4000,2100,0,919999999,26,0,0,88,0.2,0,0 +2008,5,27,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,10,94,95740,502,1331,338,157,27,146,17489,1735,16420,5447,210,1.5,9,9,5000,2100,0,919999999,26,0,0,88,0.2,0,0 +2008,5,27,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10.7,9.7,94,95919,295,1331,346,44,0,44,4323,0,4355,1748,35,1,10,10,4000,1800,0,919999999,25,0,0,88,0.2,0,0 +2008,5,27,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,10,94,95740,49,1331,347,4,0,4,403,0,406,163,130,1.5,10,10,4000,1500,0,919999999,26,0,0,88,0.2,0,0 +2008,5,27,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,10,94,95740,0,245,338,0,0,0,0,0,0,0,160,4.6,9,9,5000,1800,0,919999999,26,0,0,88,0.2,0,0 +2008,5,27,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.9,9.9,94,95960,0,0,337,0,0,0,0,0,0,0,110,2.6,9,9,5000,1500,0,919999999,25,0,0,88,0.2,5,0 +2008,5,27,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,10,94,95740,0,0,338,0,0,0,0,0,0,0,130,1.5,9,9,4000,1500,0,919999999,26,0,0,88,0.2,5,0 +2008,5,27,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,10,94,95740,0,0,338,0,0,0,0,0,0,0,223,1,9,9,4000,1200,0,919999999,26,0,0,88,0.2,5,0 +2008,5,27,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.7,10,95,95994,0,0,329,0,0,0,0,0,0,0,190,5.1,8,8,5000,77777,0,919999999,26,0,0,88,0.2,5,0 +2008,5,27,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,9,93,95721,0,0,313,0,0,0,0,0,0,0,130,5.1,5,5,5000,77777,0,919999999,23,0,0,88,0.2,0.3,0 +2008,5,28,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,10,94,95740,0,0,338,0,0,0,0,0,0,0,140,3.6,9,9,5000,1500,0,919999999,26,0,0,88,0.2,0,0 +2008,5,28,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.4,9.7,95,96045,0,0,335,0,0,0,0,0,0,0,170,3.1,9,9,5000,1500,0,919999999,25,0,0,88,0.2,0,0 +2008,5,28,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,10,100,95721,0,0,333,0,0,0,0,0,0,0,150,2.1,9,9,5000,1500,0,919999999,26,0,0,88,0.2,0,0 +2008,5,28,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,9,93,95721,0,0,332,0,0,0,0,0,0,0,130,1.5,9,9,5000,450,0,919999999,23,0,0,88,0.2,0,0 +2008,5,28,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.9,9.4,97,95922,0,0,332,0,0,0,0,0,0,0,230,2.6,9,9,4000,450,0,919999999,24,0,0,88,0.2,0,0 +2008,5,28,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,9,93,95721,0,0,332,0,0,0,0,0,0,0,130,2.1,9,9,4000,450,0,919999999,23,0,0,88,0.2,0,0 +2008,5,28,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,10,100,95721,0,0,333,0,0,0,0,0,0,0,100,1.5,9,9,4000,450,0,919999999,26,0,0,88,0.2,0,0 +2008,5,28,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.9,9.3,96,95932,0,0,341,0,0,0,0,0,0,0,220,1.5,10,10,4000,600,0,919999999,24,0,0,88,0.2,0,0 +2008,5,28,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,9,93,95721,214,1119,332,44,0,44,4301,0,4332,1580,260,1.5,9,9,4000,1500,0,919999999,23,0,0,88,0.2,0,0 +2008,5,28,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,10,100,95721,435,1330,343,78,0,78,7766,0,7828,3198,150,2.6,10,10,4000,510,0,919999999,26,0,0,88,0.2,0,0 +2008,5,28,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.1,9.4,95,95936,609,1330,333,204,36,188,22907,2656,21153,7199,140,3.1,9,9,8000,300,0,919999999,24,0,0,88,0.2,0,0 +2008,5,28,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,10,94,95740,723,1330,347,156,0,156,18187,16,18251,6926,220,2.1,10,10,6000,450,0,919999999,26,0,0,88,0.2,0,0 +2008,5,28,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,10,94,95740,770,1330,347,170,0,169,19772,22,19840,7608,190,2.1,10,10,4000,300,0,919999999,26,0,0,88,0.2,0,0 +2008,5,28,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.9,10.1,95,95866,747,1330,347,163,0,163,18970,11,19044,7266,70,1.5,10,10,4000,360,0,919999999,26,0,0,88,0.2,0,0 +2008,5,28,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,10,88,95759,654,1330,352,137,0,137,13895,0,14015,5960,67,1,10,10,7000,300,0,919999999,26,0,0,88,0.2,0,0 +2008,5,28,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,10,94,95740,499,1330,347,95,0,95,9482,0,9559,3948,57,1,10,10,5000,300,0,919999999,26,0,0,88,0.2,0,0 +2008,5,28,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.4,9,91,95951,292,1330,343,43,0,43,4275,0,4307,1727,210,2.1,10,10,5000,450,0,919999999,23,0,0,88,0.2,0,0 +2008,5,28,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,8,87,95721,47,1330,340,4,0,4,388,0,391,157,260,2.6,10,10,8000,900,0,919999999,21,0,0,88,0.2,0,0 +2008,5,28,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,8,100,95683,0,235,331,0,0,0,0,0,0,0,170,4.6,10,10,8000,900,0,919999999,21,0,0,88,0.2,0,0 +2008,5,28,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7.8,5.1,83,96090,0,0,327,0,0,0,0,0,0,0,180,4.6,10,10,8000,600,9,999999999,16,0,0,88,0.2,5,0 +2008,5,28,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7,6,93,95663,0,0,315,0,0,0,0,0,0,0,160,3.1,9,9,8000,1500,9,999999999,17,0,0,88,0.2,5,0 +2008,5,28,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8,5,81,95683,0,0,318,0,0,0,0,0,0,0,180,5.1,9,9,8000,1200,0,919999999,16,0,0,88,0.2,0.4,0 +2008,5,28,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7,5.7,91,96234,0,0,315,0,0,0,0,0,0,0,140,4.1,9,9,8000,1200,0,919999999,17,0,0,88,0.2,0,0 +2008,5,28,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7,5,87,95663,0,0,314,0,0,0,0,0,0,0,130,3.6,9,9,8000,600,0,919999999,16,0,0,88,0.2,0,0 +2008,5,29,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7,5,87,95663,0,0,314,0,0,0,0,0,0,0,140,4.1,9,9,8000,1200,0,919999999,16,0,0,88,0.2,0,0 +2008,5,29,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7.2,4.2,81,96352,0,0,314,0,0,0,0,0,0,0,140,3.6,9,9,8000,600,0,919999999,14,0,0,88,0.2,0,0 +2008,5,29,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7,4,81,95663,0,0,313,0,0,0,0,0,0,0,100,3.1,9,9,8000,600,0,919999999,14,0,0,88,0.2,0,0 +2008,5,29,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7,4,81,95663,0,0,313,0,0,0,0,0,0,0,90,2.6,9,9,8000,600,0,919999999,14,0,0,88,0.2,0,0 +2008,5,29,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,7,4,81,95663,0,0,313,0,0,0,0,0,0,0,88,1,9,9,8000,600,0,919999999,14,0,0,88,0.2,0,0 +2008,5,29,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,6,5,93,95644,0,0,309,0,0,0,0,0,0,0,310,1.5,9,9,8000,600,0,919999999,16,0,0,88,0.2,0,0 +2008,5,29,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,6,5,93,95644,0,0,309,0,0,0,0,0,0,0,10,1,9,9,8000,900,0,919999999,16,0,0,88,0.2,0,0 +2008,5,29,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5.3,4.3,93,96541,0,0,289,0,0,0,0,0,0,0,70,1.5,5,5,8000,77777,0,919999999,15,0,0,88,0.2,0,0 +2008,5,29,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,4,93,95624,211,1104,304,43,0,43,4245,0,4276,1555,274,1,9,9,7000,1200,0,919999999,14,0,0,88,0.2,0,0 +2008,5,29,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,5,87,95663,432,1330,314,128,13,123,14241,794,13811,4469,180,1,9,9,8000,900,0,919999999,16,0,0,88,0.2,0,0 +2008,5,29,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8.7,4.3,74,96655,605,1330,321,204,20,196,22886,1509,22000,7362,190,1.5,9,9,8000,900,0,919999999,15,0,0,88,0.2,0,0 +2008,5,29,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9,6,81,95702,720,1330,324,256,44,232,28932,3599,26371,9192,170,3.1,9,9,8000,750,0,919999999,17,0,0,88,0.2,0,0 +2008,5,29,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,10,3,62,95721,767,1330,325,280,64,243,31760,5337,27708,9846,19,1.5,9,9,8000,750,0,919999999,13,0,0,88,0.2,0,0 +2008,5,29,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10.6,1.8,54,96512,743,1330,327,269,46,244,30444,3840,27712,9678,270,1.5,9,9,8000,900,0,919999999,11,0,0,88,0.2,0,0 +2008,5,29,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,4,62,95740,651,1330,313,407,459,182,46210,34260,20753,7335,220,2.6,5,5,8000,77777,0,919999999,14,0,0,88,0.2,0,0 +2008,5,29,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,4,62,95740,496,1330,313,281,457,110,32135,26759,12673,4435,180,4.1,5,5,8000,77777,0,919999999,14,0,0,88,0.2,0,0 +2008,5,29,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10.3,3.5,63,96535,290,1330,304,136,309,69,15252,9903,7726,2461,220,4.1,3,3,8000,77777,0,919999999,13,0,0,88,0.2,0,0 +2008,5,29,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9,3,66,95702,45,1330,298,12,0,12,1177,0,1184,407,210,2.6,3,3,8000,77777,0,919999999,13,0,0,88,0.2,0,0 +2008,5,29,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,8,4,76,95683,0,226,306,0,0,0,0,0,0,0,180,2.1,7,7,9900,77777,0,919999999,14,0,0,88,0.2,0,0 +2008,5,29,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,6.6,3.6,81,96633,0,0,277,0,0,0,0,0,0,0,359,1,0,0,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,5,29,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,7,3,76,95663,0,0,300,0,0,0,0,0,0,0,111,1,7,7,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,5,29,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,6,3,81,95644,0,0,301,0,0,0,0,0,0,0,137,1,8,8,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,5,29,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,4.5,2.8,89,96751,0,0,268,0,0,0,0,0,0,0,210,1.5,0,0,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,5,29,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,4,2,87,95604,0,0,298,0,0,0,0,0,0,0,108,0.5,9,9,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,5,30,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3,2,93,95584,0,0,261,0,0,0,0,0,0,0,30,2.1,0,0,8000,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,5,30,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,2.6,2.3,98,96769,0,0,260,0,0,0,0,0,0,0,40,2.1,0,0,8000,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,5,30,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,2,1,93,95564,0,0,257,0,0,0,0,0,0,0,220,1.5,0,0,6000,77777,9,999999999,11,0,0,88,0.2,0,0 +2008,5,30,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,2,1,93,95564,0,0,257,0,0,0,0,0,0,0,244,0.5,0,0,5000,77777,9,999999999,11,0,0,88,0.2,0,0 +2008,5,30,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,-0.1,-0.4,98,96723,0,0,248,0,0,0,0,0,0,0,280,1.5,0,0,800,77777,0,999999999,9,0,0,88,0.207,0,0 +2008,5,30,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,0,0,100,95523,0,0,248,0,0,0,0,0,0,0,60,1.5,0,0,800,77777,0,999999999,10,0,0,88,0.2,0,0 +2008,5,30,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,-1,-1,100,95503,0,0,244,0,0,0,0,0,0,0,293,1,0,0,2000,77777,0,999999999,9,0,0,88,0.267,0,0 +2008,5,30,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,0.6,-0.2,94,96672,0,0,250,0,0,0,0,0,0,0,223,0.5,0,0,2000,77777,0,999999999,9,0,0,88,0.2,0,0 +2008,5,30,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,0,-1,92,95523,208,1089,248,83,170,56,9174,2866,6259,1861,72,0.5,0,0,2000,77777,0,999999999,9,0,0,88,0.2,0,0 +2008,5,30,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,1,1,100,95544,429,1329,253,246,412,114,27701,23825,12811,4213,169,1,0,0,900,77777,0,999999999,11,0,0,88,0.2,0,0 +2008,5,30,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5.3,2.9,84,96729,602,1329,271,394,581,131,45569,38187,15203,5537,129,1,0,0,7000,77777,0,999999999,13,0,0,88,0.2,0,0 +2008,5,30,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,8,4,76,95683,716,1329,306,407,356,215,46180,28278,24517,8703,233,0,7,7,9900,77777,0,999999999,14,0,0,88,0.2,0,0 +2008,5,30,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,11,3,58,95740,763,1329,309,526,639,159,61704,45200,18703,7195,141,1,4,4,9900,77777,0,999999999,13,0,0,88,0.2,0,0 +2008,5,30,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12.6,0.7,44,96531,740,1329,298,520,781,85,63801,47101,10446,4170,270,1.5,0,0,9900,77777,0,999999999,10,0,0,88,0.2,0,0 +2008,5,30,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,14,-2,32,95797,648,1329,301,439,712,92,52691,43277,11036,4254,6,0.5,0,0,9900,77777,0,999999999,8,0,0,88,0.2,0,0 +2008,5,30,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,14,-2,32,95797,494,1329,301,303,542,101,34938,31668,11728,4145,93,1,0,0,9900,77777,0,999999999,8,0,0,88,0.2,0,0 +2008,5,30,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,14.6,-1.8,32,96493,288,1329,304,138,268,80,15263,10112,8875,2715,283,1,0,0,9900,77777,0,999999999,8,0,0,88,0.2,0,0 +2008,5,30,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,13,1,44,95778,43,1329,306,12,0,12,1152,0,1160,398,280,1.5,1,1,9900,77777,0,999999999,10,0,0,88,0.2,0,0 +2008,5,30,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,9,4,71,95702,0,217,307,0,0,0,0,0,0,0,84,1,6,6,9900,77777,0,999999999,14,0,0,88,0.2,0,0 +2008,5,30,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,7.3,2.6,72,96486,0,0,279,0,0,0,0,0,0,0,275,1,0,0,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,5,30,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,6,2,75,95644,0,0,295,0,0,0,0,0,0,0,10,1.5,7,7,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,5,30,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,7,2,70,95663,0,0,296,0,0,0,0,0,0,0,360,1.5,6,6,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,5,30,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3.5,1.3,85,96476,0,0,263,0,0,0,0,0,0,0,60,1.5,0,0,6000,77777,9,999999999,11,0,0,88,0.2,0,0 +2008,5,30,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,1,75,95624,0,0,268,0,0,0,0,0,0,0,276,1,0,0,5000,77777,9,999999999,10,0,0,88,0.2,0,0 +2008,5,31,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3,1,87,95584,0,0,260,0,0,0,0,0,0,0,121,0.5,0,0,5000,77777,9,999999999,11,0,0,88,0.2,0,0 +2008,5,31,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,1.2,-0.1,91,96392,0,0,253,0,0,0,0,0,0,0,166,1,0,0,5000,77777,9,999999999,10,0,0,88,0.2,0,0 +2008,5,31,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,1,0,93,95544,0,0,252,0,0,0,0,0,0,0,50,1.5,0,0,5000,77777,9,999999999,10,0,0,88,0.2,0,0 +2008,5,31,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,1,0,93,95544,0,0,252,0,0,0,0,0,0,0,30,1.5,0,0,5000,77777,9,999999999,10,0,0,88,0.2,0,0 +2008,5,31,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,0.1,-1.1,91,96228,0,0,248,0,0,0,0,0,0,0,14,1,0,0,4000,77777,9,999999999,9,0,0,88,0.2,0,0 +2008,5,31,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,-1,-2,92,95503,0,0,243,0,0,0,0,0,0,0,86,1,0,0,4000,77777,9,999999999,8,0,0,88,0.267,0,0 +2008,5,31,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,-1,-2,92,95503,0,0,243,0,0,0,0,0,0,0,184,1,0,0,4000,77777,9,999999999,8,0,0,88,0.267,0,0 +2008,5,31,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,-0.5,-1.7,91,96291,0,0,256,0,0,0,0,0,0,0,323,0,3,3,4000,77777,9,999999999,8,0,0,88,0.233,0,0 +2008,5,31,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,2,-1,80,95564,205,1075,255,81,166,56,8972,2650,6168,1832,195,1,0,0,5000,77777,9,999999999,9,0,0,88,0.2,0,0 +2008,5,31,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,0,70,95624,425,1329,267,244,441,103,27660,24339,11737,3929,13,0,0,0,8000,77777,9,999999999,9,0,0,88,0.2,0,0 +2008,5,31,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.9,1,62,96252,599,1329,296,365,435,169,41372,32011,19257,6658,350,1.5,5,5,8000,77777,9,999999999,10,0,0,88,0.2,0,0 +2008,5,31,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,3,58,95740,713,1329,294,493,678,130,58316,44959,15369,5923,121,1,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,5,31,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,0,38,95797,760,1329,321,501,503,213,57514,40230,24607,8980,306,0.5,5,5,8000,77777,9,999999999,9,0,0,88,0.2,0,0 +2008,5,31,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15.3,-3.2,27,96100,737,1329,343,269,29,253,30293,2504,28653,9845,295,0,9,9,8000,7500,9,999999999,7,0,0,88,0.2,0,0 +2008,5,31,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,0,34,95834,645,1329,350,225,19,216,25181,1517,24298,8160,190,2.1,9,9,8000,7500,9,999999999,9,0,0,88,0.2,0,0 +2008,5,31,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,0,36,95815,491,1329,345,155,41,140,17383,2702,15765,5224,200,2.1,9,9,8000,7500,9,999999999,9,0,0,88,0.2,0,0 +2008,5,31,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14.4,4.2,50,96187,285,1329,347,70,0,70,6857,0,6907,2470,170,1.5,9,9,8000,7500,9,999999999,14,0,0,88,0.2,0,0 +2008,5,31,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,1,41,95797,42,1329,323,11,0,11,1031,0,1038,364,130,1.5,5,5,8000,77777,9,999999999,10,0,0,88,0.2,0,0 +2008,5,31,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8.6,2,64,95846,0,209,314,0,0,0,0,0,0,0,182,0.6,5,5,8000,77777,9,999999999,10,0,0,88,0.2,0,0 +2008,5,31,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6.9,2.3,72,95997,0,0,294,0,0,0,0,0,0,0,100,0.8,3,3,8000,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,5,31,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6.1,2,75,95829,0,0,282,0,0,0,0,0,0,0,114,0.5,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,5,31,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6.1,2.2,76,95829,0,0,273,0,0,0,0,0,0,0,130,0.5,0,0,8000,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,5,31,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6.2,2.5,77,95987,0,0,282,0,0,0,0,0,0,0,134,0.8,3,3,8000,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,5,31,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6.3,3,79,95808,0,0,268,0,0,0,0,0,0,0,144,1.3,0,0,8000,77777,9,999999999,10,0,0,88,0.2,0,0 +2010,6,1,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6.3,3.5,82,95808,0,0,283,0,0,0,0,0,0,0,142,1,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,6,1,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5.6,3.2,85,95963,0,0,287,0,0,0,0,0,0,0,115,1.1,3,3,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,6,1,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5,3.2,88,95795,0,0,275,0,0,0,0,0,0,0,125,1.1,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,6,1,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4.2,3,92,95780,0,0,270,0,0,0,0,0,0,0,205,0.8,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,6,1,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4,2.8,92,95968,0,0,281,0,0,0,0,0,0,0,216,0.9,3,3,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,6,1,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4.3,3.1,92,95802,0,0,266,0,0,0,0,0,0,0,224,1,0,0,6000,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,6,1,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3,3,100,95584,0,0,262,0,0,0,0,0,0,0,360,1,0,0,5000,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,6,1,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4.2,2.5,89,96377,0,0,285,0,0,0,0,0,0,0,131,0.5,6,6,3000,77777,9,999999999,12,0,0,88,0.2,0,0 +2010,6,1,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,4,87,95644,199,1047,275,77,179,50,8558,1885,5603,1694,170,1.5,0,0,4000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,6,1,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,6,81,95702,419,1328,289,237,470,89,27073,22940,10176,3490,190,1.5,0,0,5000,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,6,1,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,6,81,95702,592,1328,289,384,658,90,45563,37230,10743,4062,180,2.6,0,0,5000,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,6,1,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,7,71,95759,707,1328,302,485,741,90,58732,43198,10990,4341,190,3.1,0,0,7000,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,6,1,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,8,67,95797,754,1328,312,527,766,92,64221,44806,11244,4506,170,3.1,0,0,6000,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,6,1,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16.3,7.9,57,96251,731,1328,336,500,728,99,60398,43278,11965,4746,190,4.1,3,3,7000,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,6,1,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,8,55,95852,640,1328,325,425,692,91,50798,39352,10957,4225,180,4.6,0,0,7000,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,6,1,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,8,63,95815,487,1328,316,292,510,105,33435,28197,12104,4248,150,4.1,0,0,6000,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,6,1,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11.9,8.1,78,96168,282,1328,321,122,232,73,13579,7151,8143,2538,160,5.1,5,5,5000,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,6,1,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,8,87,95721,39,1328,295,11,0,11,1016,0,1023,357,160,5.1,0,0,4000,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,6,1,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,7,87,95702,0,195,290,0,0,0,0,0,0,0,150,5.7,0,0,4000,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,6,1,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.4,6.6,88,96337,0,0,292,0,0,0,0,0,0,0,150,4.1,1,1,4000,77777,9,999999999,18,0,0,88,0.2,0,0 +2010,6,1,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,7,93,95683,0,0,286,0,0,0,0,0,0,0,140,2.6,0,0,4000,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,6,1,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,6,87,95683,0,0,319,0,0,0,0,0,0,0,295,1.5,9,9,4000,450,0,999999999,17,0,0,88,0.2,0,0 +2010,6,1,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.1,6.1,93,96312,0,0,324,0,0,0,0,0,0,0,230,1.5,10,10,3000,210,0,999999999,17,0,0,88,0.2,0,0 +2010,6,1,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,7,93,95683,0,0,330,0,0,0,0,0,0,0,220,1.5,10,10,4000,210,0,999999999,19,0,0,88,0.2,0,0 +2010,6,2,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,6,87,95683,0,0,329,0,0,0,0,0,0,0,186,0,10,10,4000,240,0,999999999,17,0,0,88,0.2,0,0 +2010,6,2,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.9,6.9,93,96299,0,0,329,0,0,0,0,0,0,0,300,2.1,10,10,4000,240,0,999999999,19,0,0,88,0.2,0,0 +2010,6,2,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,7,93,95683,0,0,330,0,0,0,0,0,0,0,73,1,10,10,4000,210,0,999999999,19,0,0,88,0.2,0,0 +2010,6,2,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,7,93,95683,0,0,330,0,0,0,0,0,0,0,250,1,10,10,3000,210,0,999999999,19,0,0,88,0.2,0,0 +2010,6,2,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8.2,7.3,94,96286,0,0,331,0,0,0,0,0,0,0,267,0,10,10,3000,180,0,999999999,20,0,0,88,0.2,0,0 +2010,6,2,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,7,93,95683,0,0,330,0,0,0,0,0,0,0,250,1,10,10,3000,180,0,999999999,19,0,0,88,0.2,0,0 +2010,6,2,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,7,93,95683,0,0,330,0,0,0,0,0,0,0,10,1,10,10,3000,180,0,999999999,19,0,0,88,0.2,0,0 +2010,6,2,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.1,6.9,92,96322,0,0,330,0,0,0,0,0,0,0,300,2.6,10,10,2000,180,0,999999999,19,0,0,88,0.2,0,0 +2010,6,2,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,7,93,95683,196,1033,330,24,0,24,2315,0,2332,931,300,2.1,10,10,2000,210,0,999999999,19,0,0,88,0.2,0,0 +2010,6,2,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,7,93,95683,416,1328,330,74,0,74,7355,0,7413,3012,260,1.5,10,10,3000,240,0,999999999,19,0,0,88,0.2,0,0 +2010,6,2,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8.6,6.9,89,96474,589,1328,332,120,0,120,12126,0,12228,5123,12,1.5,10,10,3000,240,0,999999999,19,0,0,88,0.2,0,0 +2010,6,2,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,7,87,95702,704,1328,334,152,0,152,15491,0,15627,6692,280,1.5,10,10,3000,240,0,999999999,19,0,0,88,0.2,0,0 +2010,6,2,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,7,87,95702,751,1328,334,165,0,165,19273,16,19343,7374,294,1.5,10,10,3000,240,0,999999999,19,0,0,88,0.2,0,0 +2010,6,2,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.2,7.1,87,96410,729,1328,335,159,0,159,18508,6,18584,7049,240,2.1,10,10,4000,270,0,999999999,19,0,0,88,0.2,0,0 +2010,6,2,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,7,87,95702,638,1328,334,133,0,133,13532,0,13648,5772,255,1,10,10,4000,240,0,999999999,19,0,0,88,0.2,0,0 +2010,6,2,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,7,82,95721,485,1328,339,92,0,92,9180,0,9254,3803,218,1,10,10,4000,600,0,999999999,19,0,0,88,0.2,0,0 +2010,6,2,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10.1,6.1,76,96446,280,1328,339,41,0,41,4053,0,4083,1631,98,0.5,10,10,5000,600,0,999999999,17,0,0,88,0.2,0,0 +2010,6,2,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,6,76,95721,37,1328,329,5,0,5,511,0,514,199,115,0,9,9,5000,600,0,999999999,17,0,0,88,0.2,0,0 +2010,6,2,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,7,82,95721,0,188,339,0,0,0,0,0,0,0,30,2.1,10,10,5000,540,0,999999999,19,0,0,88,0.2,0,0 +2010,6,2,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.4,7,85,96555,0,0,336,0,0,0,0,0,0,0,340,1.5,10,10,4000,600,9,999999999,19,0,0,88,0.2,0,0 +2010,6,2,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,7,87,95702,0,0,334,0,0,0,0,0,0,0,290,1.5,10,10,3000,600,9,999999999,19,0,0,88,0.2,0,0 +2010,6,2,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,7,87,95702,0,0,334,0,0,0,0,0,0,0,108,1,10,10,4000,600,9,999999999,19,0,0,88,0.2,0,0 +2010,6,2,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.4,6.3,87,96649,0,0,331,0,0,0,0,0,0,0,240,1.5,10,10,4000,690,9,999999999,18,0,0,88,0.2,0,0 +2010,6,2,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,6,87,95683,0,0,329,0,0,0,0,0,0,0,250,1.5,10,10,4000,690,9,999999999,17,0,0,88,0.2,0,0 +2010,6,3,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,6,87,95683,0,0,329,0,0,0,0,0,0,0,148,0.5,10,10,4000,750,9,999999999,17,0,0,88,0.2,0,0 +2010,6,3,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.3,6,85,96742,0,0,330,0,0,0,0,0,0,0,210,1,10,10,5000,750,9,999999999,17,0,0,88,0.2,0,0 +2010,6,3,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,6,87,95683,0,0,329,0,0,0,0,0,0,0,230,1,10,10,5000,750,9,999999999,17,0,0,88,0.2,0,0 +2010,6,3,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,6,87,95683,0,0,329,0,0,0,0,0,0,0,17,1,10,10,5000,900,9,999999999,17,0,0,88,0.2,0,0 +2010,6,3,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8.4,5.5,82,96734,0,0,321,0,0,0,0,0,0,0,227,0,9,9,4500,900,9,999999999,16,0,0,88,0.2,0,0 +2010,6,3,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,6,87,95683,0,0,319,0,0,0,0,0,0,0,50,1.5,9,9,4500,900,9,999999999,17,0,0,88,0.2,0,0 +2010,6,3,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,6,81,95702,0,0,324,0,0,0,0,0,0,0,142,1,9,9,4500,900,9,999999999,17,0,0,88,0.2,0,0 +2010,6,3,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8.2,4.5,77,96872,0,0,319,0,0,0,0,0,0,0,224,1,9,9,5000,900,9,999999999,15,0,0,88,0.2,0,0 +2010,6,3,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,4,81,95663,194,1020,313,38,0,38,3737,0,3763,1375,300,1.5,9,9,5000,5100,9,999999999,14,0,0,88,0.2,0,0 +2010,6,3,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,5,76,95702,414,1327,323,120,12,117,13434,689,13063,4212,330,3.6,9,9,6000,5100,9,999999999,16,0,0,88,0.2,0,0 +2010,6,3,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.3,5.8,74,96922,587,1327,330,196,76,162,22162,5324,18466,6401,350,3.6,9,9,5000,5100,9,999999999,17,0,0,88,0.2,0,0 +2010,6,3,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,4,58,95759,701,1327,317,449,486,192,51279,36913,22091,7971,164,1,5,5,5000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,6,3,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,5,58,95778,748,1327,304,524,751,101,63526,46002,12271,4884,180,4.1,0,0,6000,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,6,3,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13.6,5.1,56,96928,726,1327,320,498,735,96,60298,44252,11655,4618,140,3.1,3,3,6000,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,6,3,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,5,55,95797,635,1327,309,423,693,91,50615,40328,10960,4214,190,1.5,0,0,7000,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,6,3,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,5,55,95797,483,1327,309,291,541,94,33581,29157,10892,3872,180,3.1,0,0,7000,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,6,3,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13.5,4.9,56,96936,278,1327,306,130,297,68,14544,8874,7596,2397,150,2.1,0,0,7000,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,6,3,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,5,62,95759,36,1327,300,10,0,10,959,0,965,338,220,2.6,0,0,7000,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,6,3,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,6,76,95721,0,182,293,0,0,0,0,0,0,0,170,2.6,0,0,6000,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,6,3,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.8,5.1,73,97082,0,0,291,0,0,0,0,0,0,0,70,2.1,0,0,6000,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,6,3,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,5,81,95683,0,0,284,0,0,0,0,0,0,0,310,2.1,0,0,6000,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,6,3,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,4,81,95663,0,0,279,0,0,0,0,0,0,0,30,1.5,0,0,5000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,6,3,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.1,5.4,83,97115,0,0,284,0,0,0,0,0,0,0,40,2.1,0,0,5000,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,6,3,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,4,87,95644,0,0,275,0,0,0,0,0,0,0,184,0.5,0,0,4000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,6,4,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4,3,93,95604,0,0,266,0,0,0,0,0,0,0,330,2.1,0,0,4000,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,6,4,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4.2,3.4,95,97038,0,0,267,0,0,0,0,0,0,0,90,2.1,0,0,2000,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,6,4,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4,2,87,95604,0,0,265,0,0,0,0,0,0,0,151,0.5,0,0,3000,77777,9,999999999,12,0,0,88,0.2,0,0 +2010,6,4,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,2,2,100,95564,0,0,258,0,0,0,0,0,0,0,170,1.5,0,0,2500,77777,9,999999999,12,0,0,88,0.2,0,0 +2010,6,4,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,1.8,1,94,97083,0,0,256,0,0,0,0,0,0,0,270,2.1,0,0,1500,77777,9,999999999,11,0,0,88,0.2,0,0 +2010,6,4,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,0,0,100,95523,0,0,263,0,0,0,0,0,0,0,30,3.1,5,5,500,77777,0,999999999,10,0,0,88,0.2,0,0 +2010,6,4,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,2,2,100,95564,0,0,273,0,0,0,0,0,0,0,10,2.1,5,5,400,77777,0,999999999,12,0,0,88,0.2,0,0 +2010,6,4,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,2,1.2,94,97134,0,0,270,0,0,0,0,0,0,0,238,1,4,4,400,77777,0,999999999,11,0,0,88,0.2,0,0 +2010,6,4,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,1,1,100,95544,191,1007,264,72,92,59,7856,1377,6437,1834,109,0.5,3,3,900,77777,0,999999999,11,0,0,88,0.2,0,0 +2010,6,4,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5,4,93,95624,411,1327,271,231,467,87,26431,22704,9958,3404,310,2.6,0,0,1500,77777,0,999999999,14,0,0,88,0.2,0,0 +2010,6,4,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9.3,4.8,73,97177,584,1327,289,378,656,89,44793,37125,10610,3999,31,1,0,0,4000,77777,0,999999999,15,0,0,88,0.2,0,0 +2010,6,4,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,6,67,95759,698,1327,301,478,740,89,57955,43224,10813,4261,30,2.6,0,0,4000,77777,0,999999999,17,0,0,88,0.2,0,0 +2010,6,4,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,6,59,95797,746,1327,310,521,767,90,63638,45376,11030,4410,242,1,0,0,4000,77777,0,999999999,17,0,0,88,0.2,0,0 +2010,6,4,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,4.9,48,96907,724,1327,317,502,759,88,61213,44873,10786,4285,200,1.5,0,0,5000,77777,0,999999999,15,0,0,88,0.2,0,0 +2010,6,4,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,3,39,95852,633,1327,320,423,695,91,50603,40917,10903,4188,230,2.1,0,0,7000,77777,0,999999999,13,0,0,88,0.2,0,0 +2010,6,4,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,1,32,95870,481,1327,322,291,535,97,33576,29997,11247,3970,210,3.1,0,0,8000,77777,0,999999999,10,0,0,88,0.2,0,0 +2010,6,4,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17.1,4.1,42,96833,277,1327,321,129,296,67,14456,8857,7557,2383,180,1.5,0,0,7000,77777,0,999999999,14,0,0,88,0.2,0,0 +2010,6,4,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,3,44,95815,35,1327,311,10,0,10,934,0,940,329,245,0.5,0,0,7000,77777,0,999999999,13,0,0,88,0.2,0,0 +2010,6,4,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,3,51,95778,0,177,302,0,0,0,0,0,0,0,278,0.5,0,0,7000,77777,0,999999999,13,0,0,88,0.2,0,0 +2010,6,4,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10.9,1.9,54,96886,0,0,292,0,0,0,0,0,0,0,99,0.5,0,0,7000,77777,9,999999999,11,0,0,88,0.2,0,0 +2010,6,4,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,2,61,95702,0,0,285,0,0,0,0,0,0,0,42,0.5,0,0,7000,77777,9,999999999,12,0,0,88,0.2,0,0 +2010,6,4,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,3,71,95683,0,0,282,0,0,0,0,0,0,0,279,1,0,0,4000,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,6,4,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.4,2.3,70,96856,0,0,279,0,0,0,0,0,0,0,30,1.5,0,0,5000,77777,9,999999999,12,0,0,88,0.2,0,0 +2010,6,4,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,3,81,95644,0,0,274,0,0,0,0,0,0,0,231,1,0,0,5000,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,6,5,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5,2,81,95624,0,0,269,0,0,0,0,0,0,0,40,1.5,0,0,4000,77777,9,999999999,12,0,0,88,0.2,0,0 +2010,6,5,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3.4,0.7,82,96795,0,0,262,0,0,0,0,0,0,0,227,1,0,0,4000,77777,9,999999999,10,0,0,88,0.2,0,0 +2010,6,5,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3,0,81,95584,0,0,259,0,0,0,0,0,0,0,20,2.1,0,0,5000,77777,9,999999999,10,0,0,88,0.2,0,0 +2010,6,5,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,2,1,93,95564,0,0,257,0,0,0,0,0,0,0,252,0.5,0,0,3000,77777,9,999999999,11,0,0,88,0.2,0,0 +2010,6,5,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3.2,0.1,80,96621,0,0,260,0,0,0,0,0,0,0,63,0.5,0,0,3000,77777,9,999999999,10,0,0,88,0.2,0,0 +2010,6,5,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,2,0,87,95564,0,0,256,0,0,0,0,0,0,0,48,0.5,0,0,4000,77777,9,999999999,10,0,0,88,0.2,0,0 +2010,6,5,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,0,-1,92,95523,0,0,248,0,0,0,0,0,0,0,321,0.5,0,0,4000,77777,9,999999999,9,0,0,88,0.2,0,0 +2010,6,5,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,2.5,-0.1,83,96550,0,0,258,0,0,0,0,0,0,0,336,1,0,0,5000,77777,9,999999999,10,0,0,88,0.2,0,0 +2010,6,5,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,2,0,87,95564,189,994,256,71,143,51,7890,1515,5656,1673,146,0,0,0,4000,77777,9,999999999,10,0,0,88,0.2,0,0 +2010,6,5,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,2,70,95663,408,1326,277,230,468,86,26302,22928,9854,3366,31,0,0,0,5000,77777,9,999999999,12,0,0,88,0.2,0,0 +2010,6,5,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.3,2.9,60,96459,581,1326,291,377,658,88,44695,37578,10523,3962,300,1,0,0,6000,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,6,5,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,4,54,95778,695,1326,303,477,745,87,57979,43873,10591,4171,290,1.5,0,0,7000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,6,5,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,4,45,95834,743,1326,316,521,773,88,63720,46070,10776,4307,280,1.5,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,6,5,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,18.8,0.6,29,96192,721,1326,325,504,772,84,61679,46286,10315,4098,170,0.5,0,0,8000,77777,9,999999999,10,0,0,88,0.2,0,0 +2010,6,5,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,20,0,26,95906,631,1326,330,423,700,90,50707,41739,10808,4148,355,1,0,0,9900,77777,9,999999999,9,0,0,88,0.2,0,0 +2010,6,5,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,1,26,95924,479,1326,335,290,534,97,33418,29859,11207,3954,180,3.6,0,0,9900,77777,9,999999999,10,0,0,88,0.2,0,0 +2010,6,5,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,2.3,31,96157,276,1326,332,129,297,67,14405,8981,7513,2367,190,3.1,0,0,9000,77777,9,999999999,12,0,0,88,0.2,0,0 +2010,6,5,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,3,39,95852,34,1326,320,9,0,9,908,0,914,321,134,1,0,0,9000,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,6,5,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14,4,51,95797,0,172,321,0,0,0,0,0,0,0,99,0.5,3,3,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,6,5,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.4,3.4,62,96253,0,0,292,0,0,0,0,0,0,0,100,1,0,0,7000,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,6,5,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,3,62,95721,0,0,290,0,0,0,0,0,0,0,226,0,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,6,5,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,3,66,95702,0,0,286,0,0,0,0,0,0,0,121,1,0,0,5000,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,6,5,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5.6,2,78,96254,0,0,271,0,0,0,0,0,0,0,227,1,0,0,5000,77777,9,999999999,12,0,0,88,0.2,0,0 +2010,6,5,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,2,81,95624,0,0,269,0,0,0,0,0,0,0,315,1,0,0,5000,77777,9,999999999,12,0,0,88,0.2,0,0 +2010,6,6,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,2,75,95644,0,0,273,0,0,0,0,0,0,0,57,1,0,0,5000,77777,9,999999999,12,0,0,88,0.2,0,0 +2010,6,6,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3.8,1.3,84,96256,0,0,264,0,0,0,0,0,0,0,330,1.5,0,0,5000,77777,9,999999999,11,0,0,88,0.2,0,0 +2010,6,6,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3,1,87,95584,0,0,260,0,0,0,0,0,0,0,40,1.5,0,0,5000,77777,9,999999999,11,0,0,88,0.2,0,0 +2010,6,6,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3,0,81,95584,0,0,259,0,0,0,0,0,0,0,40,1.5,0,0,5000,77777,9,999999999,10,0,0,88,0.2,0,0 +2010,6,6,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,2.3,0,85,96226,0,0,257,0,0,0,0,0,0,0,350,2.1,0,0,5000,77777,9,999999999,10,0,0,88,0.2,0,0 +2010,6,6,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4,0,75,95604,0,0,263,0,0,0,0,0,0,0,294,1,0,0,5000,77777,9,999999999,10,0,0,88,0.2,0,0 +2010,6,6,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,2,0,87,95564,0,0,256,0,0,0,0,0,0,0,60,1.5,0,0,6000,77777,9,999999999,10,0,0,88,0.2,0,0 +2010,6,6,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,2,-0.6,82,96257,0,0,255,0,0,0,0,0,0,0,220,1.5,0,0,5000,77777,9,999999999,9,0,0,88,0.2,0,0 +2010,6,6,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3,0,81,95584,186,982,259,70,142,50,7755,1379,5578,1648,254,0.5,0,0,5000,77777,9,999999999,10,0,0,88,0.2,0,0 +2010,6,6,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,2,70,95663,406,1326,277,228,468,85,26105,22736,9786,3340,149,1,0,0,5000,77777,9,999999999,12,0,0,88,0.2,0,0 +2010,6,6,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10.2,3.1,61,96316,578,1326,291,375,657,88,44446,37379,10474,3941,349,1,0,0,7000,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,6,6,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,3,47,95797,693,1326,307,476,748,86,57904,44139,10440,4110,40,2.1,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,6,6,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,3,42,95834,741,1326,315,520,776,86,63674,46360,10617,4241,92,0.5,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,6,6,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,18.6,2.3,34,96132,719,1326,326,501,766,85,61202,45653,10446,4147,200,2.1,0,0,8000,77777,9,999999999,12,0,0,88,0.2,0,0 +2010,6,6,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,1,28,95906,629,1326,331,421,698,90,50453,41366,10772,4133,180,4.1,0,0,9900,77777,9,999999999,10,0,0,88,0.2,0,0 +2010,6,6,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,19,4,37,95888,478,1326,330,287,538,94,33189,29067,10856,3848,170,4.6,0,0,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,6,6,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17.8,5.6,45,96136,274,1326,326,127,293,67,14244,8421,7501,2363,170,4.1,0,0,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,6,6,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,5,55,95797,33,1326,322,9,0,9,872,0,878,311,180,3.1,3,3,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,6,6,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,6,62,95778,0,168,321,0,0,0,0,0,0,0,150,3.6,4,4,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,6,6,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11.1,6,71,96295,0,0,297,0,0,0,0,0,0,0,106,0.5,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,6,6,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,5,71,95721,0,0,292,0,0,0,0,0,0,0,180,1.5,0,0,9000,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,6,6,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,3,76,95663,0,0,278,0,0,0,0,0,0,0,350,1.5,0,0,7000,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,6,6,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,4,76,96348,0,0,283,0,0,0,0,0,0,0,10,0.5,0,0,5000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,6,6,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,4,81,95663,0,0,279,0,0,0,0,0,0,0,129,1,0,0,4000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,6,7,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5,3,87,95624,0,0,270,0,0,0,0,0,0,0,220,1.5,0,0,5000,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,6,7,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3.2,1.5,89,96281,0,0,267,0,0,0,0,0,0,0,300,1.5,1,1,5000,77777,9,999999999,11,0,0,88,0.2,0,0 +2010,6,7,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,2,1,93,95564,0,0,257,0,0,0,0,0,0,0,175,1,0,0,4000,77777,9,999999999,11,0,0,88,0.2,0,0 +2010,6,7,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,1,0,93,95544,0,0,252,0,0,0,0,0,0,0,70,2.1,0,0,3000,77777,9,999999999,10,0,0,88,0.2,0,0 +2010,6,7,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3.4,1.6,88,96314,0,0,268,0,0,0,0,0,0,0,80,1.5,1,1,3000,77777,9,999999999,11,0,0,88,0.2,0,0 +2010,6,7,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,1,0,93,95544,0,0,252,0,0,0,0,0,0,0,201,0.5,0,0,4000,77777,9,999999999,10,0,0,88,0.2,0,0 +2010,6,7,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,1,-1,86,95544,0,0,251,0,0,0,0,0,0,0,327,0.5,0,0,4000,77777,9,999999999,9,0,0,88,0.2,0,0 +2010,6,7,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3.2,0.8,84,96395,0,0,266,0,0,0,0,0,0,0,50,1.5,1,1,3000,77777,9,999999999,10,0,0,88,0.2,0,0 +2010,6,7,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3,1,87,95584,184,970,260,69,90,56,7510,1128,6163,1755,61,1,0,0,3000,77777,9,999999999,11,0,0,88,0.2,0,0 +2010,6,7,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5,2,81,95624,403,1326,269,226,465,85,25869,22485,9752,3324,280,2.1,0,0,5000,77777,9,999999999,12,0,0,88,0.2,0,0 +2010,6,7,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,4,66,95721,576,1326,291,372,653,88,44082,36909,10497,3946,10,1.5,0,0,5000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,6,7,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,4,54,95778,690,1326,303,473,743,87,57464,43652,10533,4143,10,2.1,0,0,6000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,6,7,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,4,48,95815,739,1326,312,517,771,87,63228,45885,10721,4280,215,1,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,6,7,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17.5,3.2,38,96206,717,1326,322,498,762,86,60813,45235,10532,4178,139,1,0,0,7000,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,6,7,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,2,30,95906,628,1326,332,419,695,90,50159,40945,10776,4133,290,1.5,0,0,7000,77777,9,999999999,11,0,0,88,0.2,0,0 +2010,6,7,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,2,30,95906,476,1326,332,287,534,95,33134,29436,11025,3893,230,1.5,0,0,7000,77777,9,999999999,11,0,0,88,0.2,0,0 +2010,6,7,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19.6,3.7,35,96131,273,1326,349,123,263,69,13713,7935,7674,2400,180,2.1,4,4,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,6,7,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,4,42,95852,33,1326,321,9,0,9,868,0,874,309,160,3.1,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,6,7,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,4,48,95815,0,165,312,0,0,0,0,0,0,0,290,1,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,6,7,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11.3,4,61,96242,0,0,312,0,0,0,0,0,0,0,266,0.5,4,4,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,6,7,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,3,62,95721,0,0,290,0,0,0,0,0,0,0,30,1.5,0,0,7000,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,6,7,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,3,71,95683,0,0,282,0,0,0,0,0,0,0,257,0,0,0,5000,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,6,7,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6.5,2.3,75,96253,0,0,280,0,0,0,0,0,0,0,320,1,1,1,5000,77777,9,999999999,12,0,0,88,0.2,0,0 +2010,6,7,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5,2,81,95624,0,0,269,0,0,0,0,0,0,0,50,2.1,0,0,4000,77777,9,999999999,12,0,0,88,0.2,0,0 +2010,6,8,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5,2,81,95624,0,0,269,0,0,0,0,0,0,0,10,1.5,0,0,4000,77777,9,999999999,12,0,0,88,0.2,0,0 +2010,6,8,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4.3,1.1,80,96105,0,0,279,0,0,0,0,0,0,0,52,1,4,4,5000,77777,9,999999999,11,0,0,88,0.2,0,0 +2010,6,8,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3,1,87,95584,0,0,260,0,0,0,0,0,0,0,350,1,0,0,4000,77777,9,999999999,11,0,0,88,0.2,0,0 +2010,6,8,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3,0,81,95584,0,0,259,0,0,0,0,0,0,0,350,1,0,0,3000,77777,9,999999999,10,0,0,88,0.2,0,0 +2010,6,8,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.4,-0.5,87,95943,0,0,271,0,0,0,0,0,0,0,20,1,6,6,2500,77777,9,999999999,9,0,0,88,0.2,0,0 +2010,6,8,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,1,-1,86,95544,0,0,251,0,0,0,0,0,0,0,199,0.5,0,0,3500,77777,9,999999999,9,0,0,88,0.2,0,0 +2010,6,8,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,2,-1,80,95564,0,0,255,0,0,0,0,0,0,0,157,0,0,0,4000,77777,9,999999999,9,0,0,88,0.2,0,0 +2010,6,8,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,1.7,-0.8,83,95968,0,0,271,0,0,0,0,0,0,0,263,1,6,6,3000,77777,9,999999999,9,0,0,88,0.2,0,0 +2010,6,8,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,2,-1,80,95564,181,958,255,68,89,55,7390,1091,6076,1729,50,2.1,0,0,5000,77777,9,999999999,9,0,0,88,0.2,0,0 +2010,6,8,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,1,70,95644,401,1325,272,225,430,95,25466,22064,10772,3594,104,0.5,0,0,6000,77777,9,999999999,10,0,0,88,0.2,0,0 +2010,6,8,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,9.7,0.4,52,95975,574,1325,314,250,147,186,27948,11314,20948,6915,67,1,8,8,8000,77777,9,999999999,10,0,0,88,0.2,0,0 +2010,6,8,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,1,41,95797,688,1325,304,474,642,140,55435,44075,16468,6221,5,1.5,0,0,8000,77777,9,999999999,10,0,0,88,0.2,0,0 +2010,6,8,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,1,36,95834,736,1325,313,518,671,145,60947,46541,17110,6582,270,1.5,0,0,9900,77777,9,999999999,10,0,0,88,0.2,0,0 +2010,6,8,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,19.6,1.6,30,95819,715,1325,362,335,182,236,37759,15255,26804,9271,166,1,8,8,9900,7500,9,999999999,11,0,0,88,0.2,0,0 +2010,6,8,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,1,28,95906,626,1325,331,418,601,134,48530,40413,15639,5756,250,2.6,0,0,9900,7500,9,999999999,10,0,0,88,0.2,0,0 +2010,6,8,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,22,0,23,95942,475,1325,339,287,417,138,32164,27411,15488,5080,170,1.5,0,0,9900,7500,9,999999999,9,0,0,88,0.2,0,0 +2010,6,8,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,20.6,2.1,29,95827,272,1325,368,85,54,74,9451,1785,8240,2524,170,2.1,8,8,9900,7500,9,999999999,11,0,0,88,0.2,0,0 +2010,6,8,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,4,45,95834,32,1325,327,9,0,9,850,0,856,303,180,4.6,2,2,9900,7500,9,999999999,14,0,0,88,0.2,0,0 +2010,6,8,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,5,51,95815,0,162,313,0,0,0,0,0,0,0,140,3.6,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,6,8,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13.5,5.4,58,95915,0,0,328,0,0,0,0,0,0,0,140,2.1,6,6,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,6,8,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,5,71,95721,0,0,292,0,0,0,0,0,0,0,240,1.5,0,0,7000,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,6,8,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,6,76,95721,0,0,293,0,0,0,0,0,0,0,150,3.1,0,0,6000,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,6,8,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.6,6.4,86,95964,0,0,302,0,0,0,0,0,0,0,160,4.1,4,4,6000,77777,9,999999999,18,0,0,88,0.2,0,0 +2010,6,8,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,7,93,95683,0,0,286,0,0,0,0,0,0,0,150,5.1,0,0,5000,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,6,9,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,7,93,95683,0,0,298,0,0,0,0,0,0,0,150,4.1,3,3,5000,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,6,9,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.4,7.1,92,96243,0,0,304,0,0,0,0,0,0,0,150,5.1,5,5,5000,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,6,9,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,7,87,95702,0,0,325,0,0,0,0,0,0,0,140,3.1,9,9,5000,270,9,999999999,19,0,0,88,0.2,0,0 +2010,6,9,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,7,93,95683,0,0,321,0,0,0,0,0,0,0,260,2.1,9,9,5000,270,9,999999999,19,0,0,88,0.2,0,0 +2010,6,9,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.5,6.7,88,96405,0,0,323,0,0,0,0,0,0,0,140,1.5,9,9,5000,360,9,999999999,19,0,0,88,0.2,0,0 +2010,6,9,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,6,87,95683,0,0,319,0,0,0,0,0,0,0,340,2.6,9,9,5000,450,9,999999999,17,0,0,88,0.2,0,0 +2010,6,9,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,7,93,95683,0,0,321,0,0,0,0,0,0,0,310,1.5,9,9,5000,450,9,999999999,19,0,0,88,0.2,0,0 +2010,6,9,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.8,6.4,85,96487,0,0,333,0,0,0,0,0,0,0,120,2.1,10,10,4000,450,9,999999999,18,0,0,88,0.2,0,0 +2010,6,9,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,6,81,95702,179,947,333,21,0,21,2021,0,2036,813,140,2.1,10,10,4000,600,9,999999999,17,0,0,88,0.2,0,0 +2010,6,9,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,6,76,95721,399,1325,338,70,0,70,6939,0,6993,2831,55,1,10,10,4000,690,9,999999999,17,0,0,88,0.2,0,0 +2010,6,9,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.6,7,84,96663,571,1325,337,115,0,115,11636,0,11733,4900,330,1.5,10,10,3000,690,9,999999999,19,0,0,88,0.2,0,0 +2010,6,9,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,7,76,95740,686,1325,344,147,0,147,14994,0,15124,6458,360,2.1,10,10,4000,780,9,999999999,19,0,0,88,0.2,0,0 +2010,6,9,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,5,62,95759,734,1325,337,265,94,213,30185,7336,24394,8797,99,1.5,9,9,5000,720,9,999999999,15,0,0,88,0.2,0,0 +2010,6,9,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12.7,4.7,58,96410,714,1325,321,460,491,196,52595,37339,22490,8157,120,1,5,5,5000,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,6,9,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,5,58,95778,625,1325,318,409,529,160,46752,37234,18317,6550,200,1.5,3,3,5000,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,6,9,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,5,58,95778,474,1325,342,147,55,127,16507,3401,14335,4802,160,2.6,9,9,4000,3600,9,999999999,15,0,0,88,0.2,0,0 +2010,6,9,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12.9,5.2,59,96395,272,1325,341,65,0,65,6389,0,6437,2305,160,2.6,9,9,5000,3600,9,999999999,16,0,0,88,0.2,0,0 +2010,6,9,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,5,62,95759,31,1325,300,9,0,9,840,0,845,300,150,2.1,0,0,5000,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,6,9,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,5,66,95740,0,159,296,0,0,0,0,0,0,0,160,2.1,0,0,5000,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,6,9,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.3,4.9,74,96449,0,0,309,0,0,0,0,0,0,0,300,1.5,6,6,6000,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,6,9,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,5,76,95702,0,0,288,0,0,0,0,0,0,0,360,1.5,0,0,6000,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,6,9,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,5,81,95683,0,0,284,0,0,0,0,0,0,0,50,3.1,0,0,5000,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,6,9,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.8,5,77,96137,0,0,322,0,0,0,0,0,0,0,10,4.1,9,9,6000,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,6,9,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,5,81,95683,0,0,284,0,0,0,0,0,0,0,30,3.1,0,0,5000,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,6,10,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,5,81,95683,0,0,284,0,0,0,0,0,0,0,230,3.6,0,0,6000,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,6,10,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.6,4.9,78,96228,0,0,321,0,0,0,0,0,0,0,140,3.6,9,9,6000,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,6,10,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,5,81,95683,0,0,301,0,0,0,0,0,0,0,160,4.1,5,5,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,6,10,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,4,81,95663,0,0,279,0,0,0,0,0,0,0,150,2.1,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,6,10,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.8,4.2,89,96220,0,0,293,0,0,0,0,0,0,0,310,3.1,6,6,6000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,6,10,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,4,87,95644,0,0,275,0,0,0,0,0,0,0,140,2.1,0,0,6000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,6,10,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,4,87,95644,0,0,275,0,0,0,0,0,0,0,65,1,0,0,6000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,6,10,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.7,85,96406,0,0,308,0,0,0,0,0,0,0,310,2.6,9,9,5000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,6,10,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,4,87,95644,177,937,308,33,0,33,3265,0,3288,1207,60,3.1,9,9,5000,4800,9,999999999,14,0,0,88,0.2,0,0 +2010,6,10,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,5,87,95663,396,1325,314,114,11,110,12686,591,12370,3975,360,3.1,9,9,4000,4800,9,999999999,16,0,0,88,0.2,0,0 +2010,6,10,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.7,4.9,82,96295,569,1325,317,189,18,181,21110,1367,20325,6755,20,1.5,9,9,4000,4800,9,999999999,15,0,0,88,0.2,0,0 +2010,6,10,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,5,76,95702,684,1325,323,241,43,219,27184,3477,24788,8575,140,2.6,9,9,4000,4800,9,999999999,16,0,0,88,0.2,0,0 +2010,6,10,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,5,71,95721,733,1325,328,264,46,239,29799,3753,27101,9479,180,3.6,9,9,7000,4800,9,999999999,16,0,0,88,0.2,0,0 +2010,6,10,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.8,5.1,68,96233,712,1325,331,254,45,230,28681,3638,26111,9091,190,0.5,9,9,8000,4800,9,999999999,16,0,0,88,0.2,0,0 +2010,6,10,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,5,66,95740,623,1325,332,213,40,195,23987,3067,21980,7494,160,1.5,9,9,8000,5100,9,999999999,15,0,0,88,0.2,0,0 +2010,6,10,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,5,62,95759,473,1325,337,146,14,141,16309,887,15834,5155,130,2.6,9,9,8000,4800,9,999999999,15,0,0,88,0.2,0,0 +2010,6,10,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11.7,4.9,63,96240,271,1325,335,65,0,65,6368,0,6415,2298,130,1.5,9,9,8000,4800,9,999999999,15,0,0,88,0.2,0,0 +2010,6,10,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,5,66,95740,31,1325,332,4,0,4,428,0,431,168,120,1.5,9,9,8000,4500,9,999999999,15,0,0,88,0.2,0,0 +2010,6,10,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,5,66,95740,0,157,332,0,0,0,0,0,0,0,210,4.1,9,9,8000,4500,9,999999999,15,0,0,88,0.2,0,0 +2010,6,10,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9.8,4.8,71,96355,0,0,326,0,0,0,0,0,0,0,30,0.5,9,9,8000,4800,9,999999999,15,0,0,88,0.2,0,0 +2010,6,10,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9,5,76,95702,0,0,323,0,0,0,0,0,0,0,330,1.5,9,9,8000,5400,9,999999999,16,0,0,88,0.2,0,0 +2010,6,10,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9,5,76,95702,0,0,323,0,0,0,0,0,0,0,90,1.5,9,9,8000,5400,9,999999999,16,0,0,88,0.2,0,0 +2010,6,10,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,8.7,4.9,77,96400,0,0,321,0,0,0,0,0,0,0,54,1,9,9,8000,5400,9,999999999,15,0,0,88,0.2,0,0 +2010,6,10,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,5,81,95683,0,0,318,0,0,0,0,0,0,0,360,2.1,9,9,8000,5400,9,999999999,16,0,0,88,0.2,0,0 +2010,6,11,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,5,81,95683,0,0,318,0,0,0,0,0,0,0,40,2.1,9,9,6000,4500,9,999999999,16,0,0,88,0.2,0,0 +2010,6,11,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.1,4.5,84,96359,0,0,296,0,0,0,0,0,0,0,360,2.1,5,5,7000,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,6,11,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,3,87,95624,0,0,286,0,0,0,0,0,0,0,286,1,5,5,6000,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,6,11,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4,3,93,95604,0,0,282,0,0,0,0,0,0,0,12,1,5,5,5000,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,6,11,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,2.5,2,96,96314,0,0,291,0,0,0,0,0,0,0,349,0.5,9,9,3000,3000,9,999999999,12,0,0,88,0.2,0,0 +2010,6,11,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,2,2,100,95564,0,0,273,0,0,0,0,0,0,0,40,2.1,5,5,1200,77777,9,999999999,12,0,0,88,0.2,0,0 +2010,6,11,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,2,1,93,95564,0,0,272,0,0,0,0,0,0,0,150,1.5,5,5,1600,77777,9,999999999,11,0,0,88,0.2,0,0 +2010,6,11,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4.1,3.4,95,96375,0,0,283,0,0,0,0,0,0,0,120,3.1,5,5,3000,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,6,11,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4,3,93,95604,175,926,299,33,0,33,3212,0,3234,1188,270,2.1,9,9,2500,3600,9,999999999,13,0,0,88,0.2,0,0 +2010,6,11,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,5,81,95683,394,1325,318,113,11,110,12594,578,12285,3947,300,2.1,9,9,4000,3600,9,999999999,16,0,0,88,0.2,0,0 +2010,6,11,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10.8,5.8,71,96592,567,1325,332,188,73,156,21218,5062,17751,6123,249,1,9,9,5000,4200,9,999999999,17,0,0,88,0.2,0,0 +2010,6,11,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13,5,58,95778,682,1325,323,433,477,188,49425,35760,21541,7729,10,1.5,5,5,6000,4200,9,999999999,15,0,0,88,0.2,0,0 +2010,6,11,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,5,55,95797,731,1325,327,474,611,137,55969,40773,16211,6269,164,1,5,5,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,6,11,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15.2,4.1,47,96467,710,1325,326,486,712,104,58358,43962,12490,4902,319,1.5,3,3,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,6,11,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,5,51,95815,622,1325,327,407,618,117,47658,38658,13717,5137,170,3.6,3,3,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,6,11,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,6,55,95815,472,1325,333,263,407,117,29711,23877,13334,4538,180,5.7,5,5,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,6,11,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13.1,7.5,69,96465,270,1325,326,116,225,70,12875,6450,7805,2423,170,4.6,5,5,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2010,6,11,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11,8,82,95740,31,1325,317,8,0,8,761,0,766,276,150,4.6,5,5,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,6,11,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,10,8,87,95721,0,156,312,0,0,0,0,0,0,0,150,4.6,5,5,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,6,11,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9.6,8.1,90,96578,0,0,311,0,0,0,0,0,0,0,170,3.6,5,5,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,6,11,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,9,8,93,95702,0,0,308,0,0,0,0,0,0,0,220,2.6,5,5,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,6,11,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,7,87,95702,0,0,325,0,0,0,0,0,0,0,184,1,9,9,8000,2400,9,999999999,19,0,0,88,0.2,0,0 +2010,6,11,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,6,93,95663,0,0,315,0,0,0,0,0,0,0,30,1,9,9,4000,2400,9,999999999,17,0,0,88,0.2,0,0 +2010,6,11,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,6,87,95683,0,0,319,0,0,0,0,0,0,0,20,2.1,9,9,4000,2100,9,999999999,17,0,0,88,0.2,0,0 +2010,6,12,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,6,100,95644,0,0,310,0,0,0,0,0,0,0,30,1.5,9,9,550,2100,9,999999999,17,0,0,88,0.2,0,0 +2010,6,12,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,4.6,3.8,95,96697,0,0,311,0,0,0,0,0,0,0,50,1,10,10,400,90,0,999999999,14,0,0,88,0.2,0,0 +2010,6,12,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,5,93,95644,0,0,309,0,0,0,0,0,0,0,20,1.5,9,9,2000,300,0,999999999,16,0,0,88,0.2,0,0 +2010,6,12,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,4,93,95624,0,0,304,0,0,0,0,0,0,0,140,0.5,9,9,2000,120,0,999999999,14,0,0,88,0.2,0,0 +2010,6,12,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,3.3,2.8,97,96576,0,0,304,0,0,0,0,0,0,0,200,2.1,10,10,200,30,0,999999999,13,0,0,88,0.2,0,0 +2010,6,12,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,3,3,100,95584,0,0,303,0,0,0,0,0,0,0,266,0,10,10,350,30,0,999999999,13,0,0,88,0.2,0,0 +2010,6,12,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,2,1,93,95564,0,0,296,0,0,0,0,0,0,0,50,1.5,10,10,300,77777,0,999999999,11,0,0,88,0.2,0,0 +2010,6,12,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,2,1.7,98,96493,0,0,297,0,0,0,0,0,0,0,40,1.5,10,10,200,30,0,999999999,11,0,0,88,0.2,0,0 +2010,6,12,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,3,2,93,95584,173,916,302,26,0,26,2582,0,2600,993,183,1,10,10,250,30,0,999999999,12,0,0,88,0.2,0,0 +2010,6,12,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,4,3,93,95604,392,1324,307,92,0,92,9139,0,9210,3479,134,0.5,10,10,300,60,0,999999999,13,0,0,88,0.2,0,0 +2010,6,12,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4.9,4.5,97,96448,565,1324,290,317,336,173,35505,24538,19506,6543,78,0.5,6,6,600,7500,0,999999999,15,0,0,88,0.2,0,0 +2010,6,12,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,6,81,95702,680,1324,289,463,676,116,54850,42357,13766,5299,307,1,0,0,5000,77777,0,999999999,17,0,0,88,0.2,0,0 +2010,6,12,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,8,72,95778,729,1324,308,506,661,142,59422,43638,16737,6451,181,0.5,0,0,8000,77777,0,999999999,21,0,0,88,0.2,0,0 +2010,6,12,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14.7,7.1,60,96136,709,1324,345,328,176,234,36942,14267,26500,9171,52,1,8,8,8000,77777,0,999999999,19,0,0,88,0.2,0,0 +2010,6,12,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,6,51,95834,621,1324,332,406,579,134,46940,37768,15567,5727,159,1,3,3,8000,77777,0,999999999,17,0,0,88,0.2,0,0 +2010,6,12,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,17,5,45,95852,471,1324,336,278,428,126,31334,26166,14227,4764,92,0.5,3,3,8000,77777,0,999999999,15,0,0,88,0.2,0,0 +2010,6,12,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16.1,5.3,49,95992,270,1324,367,39,0,39,3860,0,3888,1551,220,2.1,10,10,8000,77777,0,999999999,16,0,0,88,0.2,0,0 +2010,6,12,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,5,55,95797,31,1324,322,8,0,8,807,0,812,289,190,2.1,3,3,8000,77777,0,999999999,15,0,0,88,0.2,0,0 +2010,6,12,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,8,76,95759,0,155,316,0,0,0,0,0,0,0,170,2.6,3,3,8000,77777,0,999999999,21,0,0,88,0.2,0,0 +2010,6,12,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11.7,7.7,76,96032,0,0,348,0,0,0,0,0,0,0,150,3.6,10,10,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2010,6,12,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,7,82,95721,0,0,307,0,0,0,0,0,0,0,120,2.1,3,3,6000,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,6,12,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,6,81,95702,0,0,289,0,0,0,0,0,0,0,290,3.1,0,0,7000,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,6,12,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,5.6,86,95967,0,0,318,0,0,0,0,0,0,0,30,2.6,9,9,4000,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,6,12,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,5,87,95663,0,0,280,0,0,0,0,0,0,0,224,1,0,0,4000,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,6,13,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,5,87,95663,0,0,280,0,0,0,0,0,0,0,123,1,0,0,2500,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,6,13,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5.4,4.3,93,95835,0,0,284,0,0,0,0,0,0,0,200,1.5,3,3,3000,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,6,13,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4,3,93,95604,0,0,278,0,0,0,0,0,0,0,96,1,3,3,2000,77777,0,999999999,13,0,0,88,0.2,0,0 +2010,6,13,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4,3,93,95604,0,0,282,0,0,0,0,0,0,0,260,2.1,5,5,500,77777,0,999999999,13,0,0,88,0.2,0,0 +2010,6,13,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,1.8,1.6,99,95782,0,0,272,0,0,0,0,0,0,0,30,3.1,5,5,300,77777,0,999999999,11,0,0,88,0.2,0,0 +2010,6,13,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3,2,93,95584,0,0,261,0,0,0,0,0,0,0,181,0.5,0,0,3000,77777,0,999999999,12,0,0,88,0.2,0,0 +2010,6,13,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,1,0,93,95544,0,0,252,0,0,0,0,0,0,0,293,1,0,0,2000,77777,0,999999999,10,0,0,88,0.2,0,0 +2010,6,13,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,1.5,0.6,94,95672,0,0,265,0,0,0,0,0,0,0,246,1,3,3,500,77777,0,999999999,10,0,0,88,0.2,0,0 +2010,6,13,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3,2,93,95584,171,907,261,62,105,48,6787,551,5310,1547,333,0,0,0,3000,77777,0,999999999,12,0,0,88,0.2,0,0 +2010,6,13,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,4,87,95644,391,1324,275,216,448,84,24615,20818,9587,3246,121,0.5,0,0,5000,77777,0,999999999,14,0,0,88,0.2,0,0 +2010,6,13,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9.5,4.3,70,95716,564,1324,302,357,618,94,41985,35315,11060,4115,67,0.5,3,3,8000,77777,0,999999999,14,0,0,88,0.2,0,0 +2010,6,13,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,5,58,95778,679,1324,304,463,720,94,55685,42734,11316,4419,229,0.5,0,0,8000,77777,0,999999999,15,0,0,88,0.2,0,0 +2010,6,13,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,4,45,95834,728,1324,327,507,741,100,61323,45441,12072,4778,160,2.6,2,2,9900,77777,0,999999999,14,0,0,88,0.2,0,0 +2010,6,13,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17.1,2.8,38,95452,708,1324,339,457,608,132,53890,40541,15578,5987,180,4.6,5,5,9900,77777,0,999999999,12,0,0,88,0.2,0,0 +2010,6,13,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16,4,45,95834,620,1324,335,383,446,174,43421,32700,19831,6939,180,5.7,5,5,9900,77777,0,999999999,14,0,0,88,0.2,0,0 +2010,6,13,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,5,51,95815,471,1324,351,145,55,126,16354,3341,14223,4761,170,6.2,9,9,9900,5400,0,999999999,15,0,0,88,0.2,0,0 +2010,6,13,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14.3,4.9,53,95457,270,1324,348,64,0,64,6322,0,6368,2281,160,6.2,9,9,9900,4800,0,999999999,15,0,0,88,0.2,0,0 +2010,6,13,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,5,58,95778,31,1324,342,4,0,4,421,0,424,165,150,5.7,9,9,9900,4800,0,999999999,15,0,0,88,0.2,0,0 +2010,6,13,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,4,62,95740,0,155,331,0,0,0,0,0,0,0,150,5.1,9,9,9900,4800,0,999999999,14,0,0,88,0.2,0,0 +2010,6,13,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,3.7,61,95613,0,0,331,0,0,0,0,0,0,0,140,5.1,9,9,9900,4500,9,999999999,14,0,0,88,0.2,0,0 +2010,6,13,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,4,62,95740,0,0,331,0,0,0,0,0,0,0,200,2.6,9,9,9900,3300,9,999999999,14,0,0,88,0.2,0,0 +2010,6,13,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,10,4,66,95721,0,0,336,0,0,0,0,0,0,0,131,2.1,10,10,9900,1800,0,919999999,14,0,0,88,0.2,0,0 +2010,6,13,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.4,4.6,72,95932,0,0,334,0,0,0,0,0,0,0,310,8.7,10,10,8000,1500,0,919999999,15,0,0,88,0.2,0,0 +2010,6,13,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,5,81,95683,0,0,318,0,0,0,0,0,0,0,340,8.7,9,9,8000,1500,0,919999999,16,0,0,88,0.2,3.8,0 +2010,6,14,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7,5,87,95663,0,0,314,0,0,0,0,0,0,0,350,4.1,9,9,8000,1500,0,919999999,16,0,0,88,0.2,0,0 +2010,6,14,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7.2,4.5,83,96097,0,0,314,0,0,0,0,0,0,0,350,5.1,9,9,8000,1500,0,919999999,15,0,0,88,0.2,0,0 +2010,6,14,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7,4,81,95663,0,0,313,0,0,0,0,0,0,0,80,1.5,9,9,8000,1500,0,919999999,14,0,0,88,0.2,0,0 +2010,6,14,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8,4,76,95683,0,0,317,0,0,0,0,0,0,0,90,1.5,9,9,8000,1500,0,919999999,14,0,0,88,0.2,0,0 +2010,6,14,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7.6,4.1,78,96152,0,0,316,0,0,0,0,0,0,0,10,3.1,9,9,8000,2400,0,919999999,14,0,0,88,0.2,0,0 +2010,6,14,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9,4,71,95702,0,0,322,0,0,0,0,0,0,0,350,2.6,9,9,8000,2400,0,919999999,14,0,0,88,0.2,0,0 +2010,6,14,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,7,4,81,95663,0,0,295,0,0,0,0,0,0,0,30,3.1,5,5,8000,2400,0,919999999,14,0,0,88,0.2,0,0 +2010,6,14,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8.8,3.6,70,96288,0,0,320,0,0,0,0,0,0,0,340,5.1,9,9,8000,1500,0,919999999,14,0,0,88,0.2,0,0 +2010,6,14,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9,3,66,95702,170,898,321,31,0,31,3053,0,3075,1132,90,2.1,9,9,8000,2400,0,919999999,13,0,0,88,0.2,0,0 +2010,6,14,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,3,62,95721,389,1324,325,111,11,108,12393,568,12094,3877,320,8.2,9,9,8000,3600,0,919999999,13,0,0,88,0.2,0,0 +2010,6,14,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12.4,2.6,51,96395,562,1324,336,186,18,179,20840,1381,20059,6647,310,6.7,9,9,8000,3600,0,919999999,12,0,0,88,0.2,0,0 +2010,6,14,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,2,47,95778,677,1324,338,239,44,217,26987,3570,24572,8473,320,8.7,9,9,8000,3600,0,919999999,11,0,0,88,0.2,0,0 +2010,6,14,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,1,44,95778,727,1324,337,263,20,252,29564,1744,28468,9747,330,9.8,9,9,8000,3300,0,919999999,10,0,0,88,0.2,0,0 +2010,6,14,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,1.7,43,96284,707,1324,342,253,46,229,28605,3766,25993,9023,320,7.7,9,9,8000,2700,0,919999999,11,0,0,88,0.2,0,0 +2010,6,14,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,2,44,95797,619,1324,343,213,41,194,23929,3164,21892,7446,310,6.7,9,9,8000,2700,0,919999999,11,0,0,88,0.2,0,0 +2010,6,14,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,2,44,95797,470,1324,343,146,14,141,16277,919,15791,5129,320,6.7,9,9,8000,2400,0,919999999,11,0,0,88,0.2,0,0 +2010,6,14,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,2.8,50,96312,269,1324,339,64,0,64,6342,0,6389,2285,320,6.7,9,9,8000,3000,0,919999999,12,0,0,88,0.2,0,0 +2010,6,14,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,3,54,95759,31,1324,335,4,0,4,423,0,426,166,340,6.7,9,9,8000,2700,0,919999999,13,0,0,88,0.2,0,0 +2010,6,14,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,3,54,95759,0,155,335,0,0,0,0,0,0,0,340,5.1,9,9,8000,3000,0,919999999,13,0,0,88,0.2,0,0 +2010,6,14,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,11.1,3.9,61,96446,0,0,324,0,0,0,0,0,0,0,116,1,8,8,8000,3000,9,999999999,14,0,0,88,0.2,0,0 +2010,6,14,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,4,62,95740,0,0,331,0,0,0,0,0,0,0,120,3.6,9,9,8000,3300,9,999999999,14,0,0,88,0.2,0,0 +2010,6,14,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,4,66,95721,0,0,326,0,0,0,0,0,0,0,160,3.6,9,9,8000,3300,9,999999999,14,0,0,88,0.2,0,0 +2010,6,14,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9.8,4.1,68,96563,0,0,326,0,0,0,0,0,0,0,150,2.6,9,9,8000,3900,9,999999999,14,0,0,88,0.2,0,0 +2010,6,14,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9,5,76,95702,0,0,323,0,0,0,0,0,0,0,180,2.1,9,9,8000,3900,9,999999999,16,0,0,88,0.2,0,0 +2010,6,15,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8,5,81,95683,0,0,318,0,0,0,0,0,0,0,170,2.6,9,9,8000,3900,9,999999999,16,0,0,88,0.2,0,0 +2010,6,15,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8.6,5.3,80,96587,0,0,315,0,0,0,0,0,0,0,150,3.1,8,8,8000,3900,9,999999999,16,0,0,88,0.2,0,0 +2010,6,15,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8,6,87,95683,0,0,319,0,0,0,0,0,0,0,140,3.1,9,9,8000,3900,9,999999999,17,0,0,88,0.2,0,0 +2010,6,15,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7,5,87,95663,0,0,314,0,0,0,0,0,0,0,300,1.5,9,9,8000,3900,9,999999999,16,0,0,88,0.2,0,0 +2010,6,15,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,6.3,4.2,86,96419,0,0,310,0,0,0,0,0,0,0,320,1,9,9,8000,3600,9,999999999,14,0,0,88,0.2,0,0 +2010,6,15,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,6,4,87,95644,0,0,308,0,0,0,0,0,0,0,20,2.1,9,9,8000,3600,9,999999999,14,0,0,88,0.2,0,0 +2010,6,15,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,5,4,93,95624,0,0,287,0,0,0,0,0,0,0,360,1.5,5,5,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,6,15,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,5.7,3,83,96445,0,0,300,0,0,0,0,0,0,0,320,1.5,8,8,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,6,15,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5,3,87,95624,168,889,270,60,164,39,6671,0,4352,1328,50,2.1,0,0,5000,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,6,15,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,4,81,95663,387,1324,313,110,12,107,12301,658,11940,3835,10,1.5,9,9,8000,7500,9,999999999,14,0,0,88,0.2,0,0 +2010,6,15,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9,6,81,95702,560,1324,324,185,72,154,20859,4930,17494,6025,360,2.1,9,9,8000,7500,9,999999999,17,0,0,88,0.2,0,0 +2010,6,15,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,10,5,71,95721,676,1324,312,407,388,209,45966,30479,23722,8264,10,3.1,6,6,9900,7500,9,999999999,16,0,0,88,0.2,0,0 +2010,6,15,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,4,58,95759,725,1324,312,499,585,178,57648,43028,20715,7702,20,2.1,3,3,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,6,15,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12.2,4.8,61,96146,706,1324,338,252,91,203,28657,7053,23230,8322,350,1.5,9,9,9900,7500,9,999999999,15,0,0,88,0.2,0,0 +2010,6,15,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,13,5,58,95778,619,1324,342,211,40,193,23761,3034,21781,7421,118,1,9,9,9900,7500,9,999999999,15,0,0,88,0.2,0,0 +2010,6,15,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,14,5,55,95797,470,1324,346,145,14,140,16169,872,15702,5110,204,1,9,9,9900,7500,9,999999999,15,0,0,88,0.2,0,0 +2010,6,15,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,5.3,59,96170,269,1324,342,64,0,64,6308,0,6354,2278,180,3.6,9,9,9900,4200,9,999999999,16,0,0,88,0.2,0,0 +2010,6,15,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,5,62,95759,31,1324,337,4,0,4,424,0,427,166,180,3.1,9,9,9900,3900,9,999999999,15,0,0,88,0.2,0,0 +2010,6,15,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,6,67,95759,0,156,338,0,0,0,0,0,0,0,190,2.6,9,9,9900,3900,9,999999999,17,0,0,88,0.2,0,0 +2010,6,15,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10.6,6.7,77,96210,0,0,325,0,0,0,0,0,0,0,170,2.6,8,8,9900,3900,9,999999999,18,0,0,88,0.2,0,0 +2010,6,15,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,6,76,95721,0,0,329,0,0,0,0,0,0,0,130,3.6,9,9,9900,3600,9,999999999,17,0,0,88,0.2,0,0 +2010,6,15,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,6,71,95740,0,0,315,0,0,0,0,0,0,0,120,1.5,5,5,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,6,15,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9.2,6.3,82,96296,0,0,307,0,0,0,0,0,0,0,270,2.6,5,5,9900,77777,9,999999999,18,0,0,88,0.2,0,0 +2010,6,15,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,10,6,76,95721,0,0,329,0,0,0,0,0,0,0,169,1,9,9,9900,3300,9,999999999,17,0,0,88,0.2,0,0 +2010,6,16,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9,6,81,95702,0,0,324,0,0,0,0,0,0,0,50,2.1,9,9,9900,3300,9,999999999,17,0,0,88,0.2,0,0 +2010,6,16,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8.7,6.5,86,96173,0,0,323,0,0,0,0,0,0,0,140,1.5,9,9,9900,3000,9,999999999,18,0,0,88,0.2,0,0 +2010,6,16,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8,6,87,95683,0,0,319,0,0,0,0,0,0,0,170,1.5,9,9,9900,3000,9,999999999,17,0,0,88,0.2,0,0 +2010,6,16,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,8,6,87,95683,0,0,319,0,0,0,0,0,0,0,135,1,9,9,9900,3000,9,999999999,17,0,0,88,0.2,0,0 +2010,6,16,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,8.7,5.9,83,96315,0,0,323,0,0,0,0,0,0,0,240,1,9,9,9900,3000,9,999999999,17,0,0,88,0.2,0,0 +2010,6,16,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8,6,87,95683,0,0,319,0,0,0,0,0,0,0,250,2.6,9,9,9900,2700,9,999999999,17,0,0,88,0.2,0,0 +2010,6,16,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8,6,87,95683,0,0,319,0,0,0,0,0,0,0,270,1.5,9,9,9900,2700,9,999999999,17,0,0,88,0.2,0,0 +2010,6,16,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8.1,5.8,85,96398,0,0,329,0,0,0,0,0,0,0,80,2.1,10,10,9900,2400,9,999999999,17,0,0,88,0.2,0,0 +2010,6,16,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,6,87,95683,167,881,329,18,0,18,1796,0,1809,723,10,2.1,10,10,8000,1800,0,919999999,17,0,0,88,0.2,0,0 +2010,6,16,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,7,93,95683,386,1323,330,66,0,66,6600,0,6652,2691,130,1.5,10,10,7000,1800,0,919999999,19,0,0,88,0.2,0,0 +2010,6,16,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.8,6.8,87,96515,559,1323,333,112,0,112,11292,0,11386,4746,270,3.1,10,10,8000,1800,0,919999999,19,0,0,88,0.2,0,0 +2010,6,16,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,11,6,71,95740,674,1323,343,144,0,144,14690,0,14817,6311,272,1,10,10,8000,2400,0,919999999,17,0,0,88,0.2,0,0 +2010,6,16,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,6,76,95721,724,1323,329,260,44,236,29305,3581,26739,9340,170,2.6,9,9,8000,1800,0,919999999,17,0,0,88,0.2,0,0 +2010,6,16,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,11.7,5.5,66,96410,705,1323,336,251,44,227,28311,3579,25789,8972,95,1,9,9,8000,2400,0,919999999,16,0,0,88,0.2,0,0 +2010,6,16,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,5,62,95759,618,1323,337,211,40,193,23735,3029,21758,7413,170,2.6,9,9,8000,2700,0,919999999,15,0,0,88,0.2,0,0 +2010,6,16,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,5,58,95778,470,1323,342,145,14,140,16158,870,15692,5107,140,1.5,9,9,8000,2400,0,919999999,15,0,0,88,0.2,0,0 +2010,6,16,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12.6,5.9,64,96295,269,1323,341,64,0,64,6302,0,6348,2277,190,1.5,9,9,8000,2400,0,919999999,17,0,0,88,0.2,0,0 +2010,6,16,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,6,67,95759,31,1323,338,4,0,4,427,0,429,167,150,1.5,9,9,8000,3000,0,919999999,17,0,0,88,0.2,0,0 +2010,6,16,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,6,71,95740,0,158,315,0,0,0,0,0,0,0,290,1.5,5,5,8000,77777,0,919999999,17,0,0,88,0.2,0,0 +2010,6,16,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9.9,5.7,75,96253,0,0,328,0,0,0,0,0,0,0,290,1.5,9,9,8000,5100,9,999999999,17,0,0,88,0.2,0,0 +2010,6,16,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9,6,81,95702,0,0,324,0,0,0,0,0,0,0,350,1,9,9,8000,5400,9,999999999,17,0,0,88,0.2,0,0 +2010,6,16,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,10,6,76,95721,0,0,338,0,0,0,0,0,0,0,191,1,10,10,8000,5100,9,999999999,17,0,0,88,0.2,0,0 +2010,6,16,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,6,81,95702,0,0,333,0,0,0,0,0,0,0,313,1,10,10,8000,5400,9,999999999,17,0,0,88,0.2,0,0 +2010,6,16,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,6,87,95683,0,0,329,0,0,0,0,0,0,0,60,2.6,10,10,7000,5400,9,999999999,17,0,0,88,0.2,0,0 +2010,6,17,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,6,87,95683,0,0,329,0,0,0,0,0,0,0,322,1,10,10,6000,5100,9,999999999,17,0,0,88,0.2,0,0 +2010,6,17,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.5,5.7,88,96018,0,0,326,0,0,0,0,0,0,0,100,0.5,10,10,6000,4800,9,999999999,17,0,0,88,0.2,0,0 +2010,6,17,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,6,93,95663,0,0,324,0,0,0,0,0,0,0,149,0.5,10,10,6000,5100,9,999999999,17,0,0,88,0.2,0,0 +2010,6,17,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,6,93,95663,0,0,324,0,0,0,0,0,0,0,340,1.5,10,10,6000,5100,9,999999999,17,0,0,88,0.2,0,0 +2010,6,17,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6.8,5.2,90,95881,0,0,322,0,0,0,0,0,0,0,64,1,10,10,5000,4800,9,999999999,16,0,0,88,0.2,0,0 +2010,6,17,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,6,93,95663,0,0,315,0,0,0,0,0,0,0,77,1,9,9,5000,4800,9,999999999,17,0,0,88,0.2,0,0 +2010,6,17,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,5,87,95663,0,0,314,0,0,0,0,0,0,0,250,0.5,9,9,6000,4500,9,999999999,16,0,0,88,0.2,0,0 +2010,6,17,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.3,5.3,87,95929,0,0,316,0,0,0,0,0,0,0,10,2.1,9,9,5000,4500,9,999999999,16,0,0,88,0.2,0,0 +2010,6,17,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,6,93,95663,165,874,315,30,0,30,2904,0,2925,1081,247,1,9,9,4000,4500,9,999999999,17,0,0,88,0.2,0,0 +2010,6,17,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,6,87,95683,384,1323,319,109,10,106,12117,499,11850,3804,40,3.1,9,9,4000,2400,9,999999999,17,0,0,88,0.2,0,0 +2010,6,17,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10.5,6.6,77,95839,558,1323,332,183,18,176,20469,1281,19732,6554,202,1,9,9,5000,3000,9,999999999,18,0,0,88,0.2,0,0 +2010,6,17,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,7,71,95759,673,1323,339,236,87,192,26776,6476,21878,7782,160,1.5,9,9,5000,3600,9,999999999,19,0,0,88,0.2,0,0 +2010,6,17,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13,6,62,95778,723,1323,324,467,194,361,50918,19690,39592,11538,120,1.5,5,5,6000,3600,9,999999999,17,0,0,88,0.2,0,0 +2010,6,17,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14.2,5.4,55,95682,705,1323,348,251,91,202,28553,6985,23167,8300,102,1,9,9,7000,3000,9,999999999,16,0,0,88,0.2,0,0 +2010,6,17,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,5,51,95815,618,1323,351,211,40,193,23721,3029,21745,7409,150,3.1,9,9,7000,3000,9,999999999,15,0,0,88,0.2,0,0 +2010,6,17,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,5,51,95815,470,1323,351,145,14,140,16157,871,15690,5107,150,3.1,9,9,7000,3000,9,999999999,15,0,0,88,0.2,0,0 +2010,6,17,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14.3,5.8,57,95675,269,1323,349,64,0,64,6309,0,6355,2279,110,2.6,9,9,7000,3000,0,919999999,17,0,0,88,0.2,0,0 +2010,6,17,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,6,59,95797,31,1323,348,4,0,4,432,0,435,169,120,3.6,9,9,7000,3000,0,919999999,17,0,0,88,0.2,0,0 +2010,6,17,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,14,7,63,95797,0,160,349,0,0,0,0,0,0,0,234,2.1,9,9,7000,2400,0,919999999,19,0,0,88,0.2,0,0 +2010,6,17,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,11.7,7.7,76,95673,0,0,339,0,0,0,0,0,0,0,208,1,9,9,7000,3000,9,999999999,20,0,0,88,0.2,0,0 +2010,6,17,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,7,71,95759,0,0,339,0,0,0,0,0,0,0,240,2.1,9,9,7000,1800,9,999999999,19,0,0,88,0.2,0,0 +2010,6,17,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,7,71,95759,0,0,339,0,0,0,0,0,0,0,160,2.1,9,9,7000,1800,9,999999999,19,0,0,88,0.2,0,0 +2010,6,17,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11.9,7.4,74,95630,0,0,339,0,0,0,0,0,0,0,180,2.6,9,9,7000,2400,9,999999999,20,0,0,88,0.2,0,0 +2010,6,17,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,8,72,95778,0,0,355,0,0,0,0,0,0,0,150,2.6,10,10,7000,2400,9,999999999,21,0,0,88,0.2,0,0 +2010,6,18,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,7,67,95778,0,0,354,0,0,0,0,0,0,0,140,2.6,10,10,7000,2400,9,999999999,19,0,0,88,0.2,0,0 +2010,6,18,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,7.6,70,95632,0,0,354,0,0,0,0,0,0,0,140,6.2,10,10,7000,2100,9,999999999,20,0,0,88,0.2,0,0 +2010,6,18,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,9,87,95740,0,0,346,0,0,0,0,0,0,0,170,2.6,10,10,7000,1500,0,919999999,23,0,0,88,0.2,6,0 +2010,6,18,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,8,76,95759,0,0,350,0,0,0,0,0,0,0,100,3.6,10,10,7000,1200,0,919999999,21,0,0,88,0.2,0,0 +2010,6,18,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.4,8.6,89,95667,0,0,343,0,0,0,0,0,0,0,350,4.6,10,10,8000,1500,0,919999999,22,0,0,88,0.2,6,0 +2010,6,18,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,9,93,95721,0,0,341,0,0,0,0,0,0,0,20,5.1,10,10,7000,900,0,919999999,23,0,0,88,0.2,4.5,0 +2010,6,18,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,9,93,95721,0,0,341,0,0,0,0,0,0,0,4,1,10,10,5000,900,0,919999999,23,0,0,88,0.2,0,0 +2010,6,18,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.4,7.4,87,95885,0,0,337,0,0,0,0,0,0,0,200,2.1,10,10,5000,1050,0,919999999,20,0,0,88,0.2,0,0 +2010,6,18,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,7,87,95702,164,867,334,18,0,18,1739,0,1751,701,190,1.5,10,10,5000,1050,0,919999999,19,0,0,88,0.2,0,0 +2010,6,18,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,8,93,95702,383,1323,335,66,0,66,6509,0,6560,2656,80,3.6,10,10,6000,900,0,919999999,21,0,0,88,0.2,0,0 +2010,6,18,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.6,5.9,83,96124,557,1323,322,183,34,169,20487,2419,18978,6372,320,3.6,9,9,6000,1200,0,919999999,17,0,0,88,0.2,0,0 +2010,6,18,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,7,76,95740,672,1323,334,235,42,214,26466,3299,24187,8362,20,6.2,9,9,6000,1800,0,919999999,19,0,0,88,0.2,0,0 +2010,6,18,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,6,71,95740,723,1323,333,259,45,234,29210,3639,26598,9296,340,5.7,9,9,6000,1800,0,919999999,17,0,0,88,0.2,0,0 +2010,6,18,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,5.9,71,96066,704,1323,333,250,44,227,28213,3541,25714,8948,350,6.2,9,9,6000,1500,0,919999999,17,0,0,88,0.2,0,0 +2010,6,18,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,6,71,95740,618,1323,333,210,39,192,23641,2968,21694,7397,310,2.6,9,9,6000,1500,0,919999999,17,0,0,88,0.2,0,0 +2010,6,18,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,6,76,95721,470,1323,329,144,13,140,16105,846,15649,5099,220,2.6,9,9,6000,1500,0,919999999,17,0,0,88,0.2,0,0 +2010,6,18,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9.1,6.4,83,96181,270,1323,325,64,0,64,6296,0,6342,2277,270,2.1,9,9,6000,1500,0,919999999,18,0,0,88,0.2,0,0 +2010,6,18,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,9,7,87,95702,32,1323,325,5,0,5,435,0,438,171,46,0.5,9,9,6000,1500,0,919999999,19,0,0,88,0.2,0,0 +2010,6,18,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9,6,81,95702,0,162,324,0,0,0,0,0,0,0,20,2.6,9,9,6000,1500,0,919999999,17,0,0,88,0.2,0,0 +2010,6,18,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8.7,5.8,82,96419,0,0,316,0,0,0,0,0,0,0,320,1,8,8,6000,1500,9,999999999,17,0,0,88,0.2,4,0 +2010,6,18,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,8,6,87,95683,0,0,319,0,0,0,0,0,0,0,30,1.5,9,9,6000,1500,9,999999999,17,0,0,88,0.2,4,0 +2010,6,18,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,8,7,93,95683,0,0,321,0,0,0,0,0,0,0,322,1,9,9,6000,1500,9,999999999,19,0,0,88,0.2,4,0 +2010,6,18,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7.9,6.2,89,96554,0,0,313,0,0,0,0,0,0,0,140,1.5,8,8,6000,1500,9,999999999,18,0,0,88,0.2,1,0 +2010,6,18,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8,7,93,95683,0,0,321,0,0,0,0,0,0,0,80,2.6,9,9,6000,1500,0,919999999,19,0,0,88,0.2,0,0 +2010,6,19,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,8,7,93,95683,0,0,321,0,0,0,0,0,0,0,213,1,9,9,6000,1500,0,919999999,19,0,0,88,0.2,0,0 +2010,6,19,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7.6,6.5,93,96605,0,0,318,0,0,0,0,0,0,0,310,1.5,9,9,6000,1500,0,919999999,18,0,0,88,0.2,0,0 +2010,6,19,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,7,93,95683,0,0,321,0,0,0,0,0,0,0,220,2.1,9,9,8000,1500,0,919999999,19,0,0,88,0.2,0,0 +2010,6,19,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,6,87,95683,0,0,319,0,0,0,0,0,0,0,228,1,9,9,8000,1500,0,919999999,17,0,0,88,0.2,0,0 +2010,6,19,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.5,6.6,94,96631,0,0,318,0,0,0,0,0,0,0,130,1,9,9,8000,600,0,919999999,18,0,0,88,0.2,0,0 +2010,6,19,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,7,93,95683,0,0,321,0,0,0,0,0,0,0,260,1,9,9,8000,750,0,919999999,19,0,0,88,0.2,0,0 +2010,6,19,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,6,93,95663,0,0,315,0,0,0,0,0,0,0,210,2.1,9,9,8000,1500,0,919999999,17,0,0,88,0.2,0,0 +2010,6,19,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7.3,6.1,92,96760,0,0,316,0,0,0,0,0,0,0,160,2.1,9,9,8000,1500,0,919999999,18,0,0,88,0.2,0,0 +2010,6,19,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,7,6,93,95663,163,860,297,52,65,44,5754,0,4888,1434,180,2.1,5,5,8000,1500,0,919999999,17,0,0,88,0.2,0,0 +2010,6,19,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,8,6,87,95683,382,1323,302,194,346,94,21807,16585,10609,3493,329,0,5,5,8000,77777,0,919999999,17,0,0,88,0.2,0,0 +2010,6,19,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8.9,5.4,79,96791,556,1323,305,329,498,120,37897,30753,13862,4989,360,1.5,5,5,8000,77777,0,919999999,16,0,0,88,0.2,0,0 +2010,6,19,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,10,6,76,95721,672,1323,310,424,576,131,49612,37529,15436,5845,237,1.5,5,5,8000,1200,0,919999999,17,0,0,88,0.2,0,0 +2010,6,19,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,7,76,95740,722,1323,311,493,714,104,59358,43252,12517,4939,100,1.5,3,3,8000,77777,0,919999999,19,0,0,88,0.2,0,0 +2010,6,19,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11.8,4.2,60,96582,704,1323,311,479,725,94,57974,43520,11383,4483,360,2.1,3,3,8000,77777,0,919999999,14,0,0,88,0.2,0,0 +2010,6,19,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,4,58,95759,618,1323,312,404,659,96,47962,38930,11405,4342,40,1.5,3,3,8000,77777,0,919999999,14,0,0,88,0.2,0,0 +2010,6,19,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,13,3,51,95778,470,1323,315,278,508,97,31930,27931,11217,3936,152,1,3,3,8000,77777,0,919999999,13,0,0,88,0.2,0,0 +2010,6,19,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12.5,3.3,53,96530,270,1323,314,123,278,67,13791,8105,7472,2343,260,1.5,3,3,8000,77777,0,919999999,13,0,0,88,0.2,0,0 +2010,6,19,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,6,76,95721,32,1323,306,9,0,9,849,0,855,303,220,4.6,3,3,8000,77777,0,919999999,17,0,0,88,0.2,0,0 +2010,6,19,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,9,6,81,95702,0,165,317,0,0,0,0,0,0,0,210,3.1,8,8,9900,77777,0,919999999,17,0,0,88,0.2,0,0 +2010,6,19,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8.7,5.2,79,96579,0,0,299,0,0,0,0,0,0,0,90,1,3,3,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,6,19,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8,6,87,95683,0,0,297,0,0,0,0,0,0,0,160,1.5,3,3,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,6,19,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,6,93,95663,0,0,293,0,0,0,0,0,0,0,160,2.1,3,3,7000,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,6,19,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5.1,3.6,90,96603,0,0,283,0,0,0,0,0,0,0,343,0.5,3,3,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,6,19,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,4,93,95624,0,0,271,0,0,0,0,0,0,0,101,0.5,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,6,20,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4,3,93,95604,0,0,266,0,0,0,0,0,0,0,139,0.5,0,0,4000,77777,0,999999999,13,0,0,88,0.2,0,0 +2010,6,20,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3.4,2.3,92,96701,0,0,263,0,0,0,0,0,0,0,75,1,0,0,5000,77777,0,999999999,12,0,0,88,0.2,0,0 +2010,6,20,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,2,1,93,95564,0,0,257,0,0,0,0,0,0,0,10,1,0,0,5000,77777,0,999999999,11,0,0,88,0.2,0,0 +2010,6,20,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,2,1,93,95564,0,0,257,0,0,0,0,0,0,0,40,2.6,0,0,5000,77777,0,999999999,11,0,0,88,0.2,0,0 +2010,6,20,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,2,1.4,96,96653,0,0,257,0,0,0,0,0,0,0,30,1.5,0,0,3000,77777,0,999999999,11,0,0,88,0.2,0,0 +2010,6,20,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,2,1,93,95564,0,0,257,0,0,0,0,0,0,0,190,2.6,0,0,5000,77777,0,999999999,11,0,0,88,0.2,0,0 +2010,6,20,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,1,1,100,95544,0,0,268,0,0,0,0,0,0,0,220,2.1,5,5,2000,77777,0,999999999,11,0,0,88,0.2,0,0 +2010,6,20,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3.2,2.6,96,96734,0,0,295,0,0,0,0,0,0,0,41,1.5,9,9,5000,450,0,999999999,12,0,0,88,0.2,0,0 +2010,6,20,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4,3,93,95604,161,854,299,29,0,29,2806,0,2825,1045,350,2.1,9,9,5000,390,0,999999999,13,0,0,88,0.2,0,0 +2010,6,20,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,4,87,95644,381,1322,308,107,9,105,11988,493,11728,3759,70,2.1,9,9,5000,390,0,999999999,14,0,0,88,0.2,0,0 +2010,6,20,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.4,4.5,82,96365,555,1322,315,182,72,152,20610,4917,17295,5944,60,1.5,9,9,7000,390,0,999999999,15,0,0,88,0.2,0,0 +2010,6,20,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,5,81,95683,671,1322,301,424,469,186,48288,35082,21267,7600,53,1,5,5,8000,77777,0,999999999,16,0,0,88,0.2,0,0 +2010,6,20,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,10,5,71,95721,722,1322,312,443,483,180,51120,35431,20836,7726,330,1.5,6,6,9900,77777,0,999999999,16,0,0,88,0.2,0,0 +2010,6,20,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,11.3,5.3,67,96554,703,1322,298,484,649,139,56830,43426,16373,6249,94,1,0,0,9900,77777,0,999999999,16,0,0,88,0.2,0,0 +2010,6,20,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,12,6,67,95759,618,1322,319,376,500,142,43283,33378,16470,5992,286,1.5,5,5,9900,77777,0,999999999,17,0,0,88,0.2,0,0 +2010,6,20,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,5,58,95778,470,1322,320,274,506,94,31529,27005,10864,3834,180,2.6,4,4,9900,77777,0,999999999,15,0,0,88,0.2,0,0 +2010,6,20,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,12.3,3.9,56,96431,271,1322,300,125,299,64,14044,8357,7195,2278,170,4.6,0,0,9900,77777,0,999999999,14,0,0,88,0.2,0,0 +2010,6,20,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,10,6,76,95721,33,1322,317,7,0,7,721,0,725,266,190,3.6,7,7,9900,77777,0,999999999,17,0,0,88,0.2,0,0 +2010,6,20,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,9,4,71,95702,0,169,307,0,0,0,0,0,0,0,180,2.1,6,6,9900,77777,0,999999999,14,0,0,88,0.2,0,0 +2010,6,20,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,8,4.5,79,96518,0,0,283,0,0,0,0,0,0,0,180,1.5,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,6,20,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,8,5,81,95683,0,0,312,0,0,0,0,0,0,0,150,2.1,8,8,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,6,20,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,4,87,95644,0,0,275,0,0,0,0,0,0,0,345,1,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,6,20,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5.7,4.2,90,96558,0,0,290,0,0,0,0,0,0,0,171,0.5,5,5,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,6,20,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,4,87,95644,0,0,287,0,0,0,0,0,0,0,90,2.1,3,3,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,6,21,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,4,87,95644,0,0,291,0,0,0,0,0,0,0,260,1.5,5,5,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,6,21,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5.3,4.2,93,96531,0,0,288,0,0,0,0,0,0,0,30,2.1,5,5,6000,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,6,21,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,4,93,95624,0,0,287,0,0,0,0,0,0,0,150,1,5,5,5000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,6,21,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,4,87,95644,0,0,308,0,0,0,0,0,0,0,280,1.5,9,9,5000,3900,9,999999999,14,0,0,88,0.2,0,0 +2010,6,21,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5.4,4.2,92,96543,0,0,306,0,0,0,0,0,0,0,350,0.5,9,9,7000,3600,9,999999999,15,0,0,88,0.2,0,0 +2010,6,21,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5,4,93,95624,0,0,304,0,0,0,0,0,0,0,50,2.1,9,9,5000,3600,9,999999999,14,0,0,88,0.2,0,0 +2010,6,21,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5,4,93,95624,0,0,304,0,0,0,0,0,0,0,360,1.5,9,9,5000,3300,9,999999999,14,0,0,88,0.2,0,0 +2010,6,21,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5.5,4.1,91,96658,0,0,306,0,0,0,0,0,0,0,150,2.1,9,9,5000,3300,9,999999999,14,0,0,88,0.2,0,0 +2010,6,21,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,5,87,95663,160,848,314,28,0,28,2767,0,2786,1033,22,1,9,9,5000,3300,9,999999999,16,0,0,88,0.2,0,0 +2010,6,21,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,5,87,95663,380,1322,296,193,277,113,21352,14942,12573,3944,290,1.5,5,5,5000,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,6,21,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,5.7,80,96774,554,1322,317,236,139,178,26379,10241,19964,6580,20,1.5,8,8,7000,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,6,21,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,6,76,95721,670,1322,329,234,12,229,26259,945,25738,8705,20,1.5,9,9,8000,5100,9,999999999,17,0,0,88,0.2,0,0 +2010,6,21,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,5,66,95740,721,1322,332,259,45,234,29195,3679,26570,9278,263,0.5,9,9,7000,5400,9,999999999,15,0,0,88,0.2,0,0 +2010,6,21,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.9,5.9,71,96669,703,1322,333,250,43,227,28177,3462,25740,8952,200,1.5,9,9,7000,5400,9,999999999,17,0,0,88,0.2,0,0 +2010,6,21,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,5,66,95740,618,1322,342,129,0,129,13034,0,13144,5535,230,2.1,10,10,7000,5400,9,999999999,15,0,0,88,0.2,0,0 +2010,6,21,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,6,71,95740,470,1322,343,88,0,88,8836,0,8907,3651,240,1.5,10,10,7000,5400,9,999999999,17,0,0,88,0.2,0,0 +2010,6,21,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,6.4,73,96766,271,1322,343,39,0,39,3874,0,3903,1559,9,1,10,10,6000,5100,9,999999999,18,0,0,88,0.2,0,0 +2010,6,21,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,6,76,95721,34,1322,329,5,0,5,464,0,467,181,160,2.1,9,9,6000,3000,9,999999999,17,0,0,88,0.2,0,0 +2010,6,21,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,7,87,95702,0,172,325,0,0,0,0,0,0,0,200,1.5,9,9,6000,4500,9,999999999,19,0,0,88,0.2,0,0 +2010,6,21,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9.3,6.6,83,96950,0,0,326,0,0,0,0,0,0,0,285,1,9,9,6000,4500,9,999999999,18,0,0,88,0.2,0,0 +2010,6,21,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,7,87,95702,0,0,325,0,0,0,0,0,0,0,280,1.5,9,9,6000,4200,9,999999999,19,0,0,88,0.2,0,0 +2010,6,21,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,7,87,95702,0,0,325,0,0,0,0,0,0,0,70,3.1,9,9,5000,3900,9,999999999,19,0,0,88,0.2,0,0 +2010,6,21,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.8,6.3,84,96931,0,0,323,0,0,0,0,0,0,0,30,1.5,9,9,5000,77777,9,999999999,18,0,0,88,0.2,0,0 +2010,6,21,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,6,87,95683,0,0,319,0,0,0,0,0,0,0,326,0.5,9,9,5000,3900,9,999999999,17,0,0,88,0.2,0,0 +2010,6,22,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,6,87,95683,0,0,319,0,0,0,0,0,0,0,300,1,9,9,5000,4200,9,999999999,17,0,0,88,0.2,0,0 +2010,6,22,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7.3,5.9,91,96816,0,0,316,0,0,0,0,0,0,0,195,1,9,9,5000,5100,9,999999999,17,0,0,88,0.2,0,0 +2010,6,22,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,6,93,95663,0,0,315,0,0,0,0,0,0,0,100,1.5,9,9,4000,4800,9,999999999,17,0,0,88,0.2,0,0 +2010,6,22,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,6,93,95663,0,0,315,0,0,0,0,0,0,0,40,2.1,9,9,4000,4800,9,999999999,17,0,0,88,0.2,0,0 +2010,6,22,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.1,5.5,90,96793,0,0,315,0,0,0,0,0,0,0,350,1.5,9,9,4000,4800,9,999999999,17,0,0,88,0.2,0,0 +2010,6,22,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,5,87,95663,0,0,314,0,0,0,0,0,0,0,160,1,9,9,4000,4500,9,999999999,16,0,0,88,0.2,0,0 +2010,6,22,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,5,87,95663,0,0,314,0,0,0,0,0,0,0,58,0.5,9,9,5000,4500,9,999999999,16,0,0,88,0.2,0,0 +2010,6,22,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6.4,4.4,87,96685,0,0,293,0,0,0,0,0,0,0,50,1.5,5,5,3000,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,6,22,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,5,93,95644,160,843,276,55,87,44,5999,0,4864,1419,30,2.1,0,0,3000,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,6,22,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,6,87,95683,379,1322,285,206,428,83,23399,19116,9482,3187,124,0,0,0,4000,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,6,22,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.8,6.2,73,96516,553,1322,309,347,576,105,40302,33679,12302,4501,260,1.5,3,3,5000,77777,9,999999999,18,0,0,88,0.2,0,0 +2010,6,22,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,6,62,95778,670,1322,305,454,712,93,54558,41816,11234,4377,286,1.5,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,6,22,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,16,6,51,95834,721,1322,332,496,740,93,60239,43918,11299,4482,259,0.5,3,3,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,6,22,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17.2,3.5,40,96031,703,1322,335,480,727,93,58091,43771,11287,4447,230,0.5,3,3,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,6,22,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,18,2,34,95870,618,1322,323,411,688,89,49126,40311,10683,4086,308,0.5,0,0,9900,77777,9,999999999,11,0,0,88,0.2,0,0 +2010,6,22,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,19,3,34,95888,471,1322,329,282,473,114,32074,27912,13011,4447,210,1.5,0,0,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,6,22,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,19.1,-0.9,26,95914,272,1322,344,118,198,78,13089,6980,8613,2602,210,3.6,5,5,9900,77777,9,999999999,8,0,0,88,0.2,0,0 +2010,6,22,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16,6,51,95834,35,1322,332,9,0,9,910,0,916,323,190,2.6,3,3,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,6,22,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,6,55,95815,0,177,333,0,0,0,0,0,0,0,170,1.5,5,5,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,6,22,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14.7,5.4,54,95956,0,0,331,0,0,0,0,0,0,0,140,2.6,5,5,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,6,22,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,13,6,62,95778,0,0,343,0,0,0,0,0,0,0,291,1,9,9,9900,5400,9,999999999,17,0,0,88,0.2,0,0 +2010,6,22,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,10,5,71,95721,0,0,309,0,0,0,0,0,0,0,109,1,5,5,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,6,22,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.4,4.7,78,95827,0,0,297,0,0,0,0,0,0,0,150,0.5,3,3,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,6,22,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,5,81,95683,0,0,284,0,0,0,0,0,0,0,43,1,0,0,6000,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,6,23,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,4,87,95644,0,0,275,0,0,0,0,0,0,0,340,1,0,0,6000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,6,23,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5.3,4,91,95710,0,0,272,0,0,0,0,0,0,0,40,2.6,0,0,5000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,6,23,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,4,93,95624,0,0,271,0,0,0,0,0,0,0,172,1,0,0,5000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,6,23,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4,3,93,95604,0,0,266,0,0,0,0,0,0,0,50,1,0,0,5000,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,6,23,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4.3,2.7,89,95785,0,0,267,0,0,0,0,0,0,0,110,2.1,0,0,6000,77777,9,999999999,12,0,0,88,0.2,0,0 +2010,6,23,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4,2,87,95604,0,0,281,0,0,0,0,0,0,0,240,2.1,5,5,5000,77777,9,999999999,12,0,0,88,0.2,0,0 +2010,6,23,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4,3,93,95604,0,0,299,0,0,0,0,0,0,0,20,1.5,9,9,6000,3600,9,999999999,13,0,0,88,0.2,0,0 +2010,6,23,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5.1,3.3,88,95867,0,0,304,0,0,0,0,0,0,0,360,3.1,9,9,5000,3600,9,999999999,13,0,0,88,0.2,0,0 +2010,6,23,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,3,81,95644,159,838,307,28,0,28,2728,0,2747,1018,296,1,9,9,5000,3900,9,999999999,13,0,0,88,0.2,0,0 +2010,6,23,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,5,81,95683,378,1322,318,106,9,104,11858,465,11611,3723,44,1.5,9,9,7000,3900,9,999999999,16,0,0,88,0.2,0,0 +2010,6,23,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.5,4.5,76,95810,553,1322,320,181,18,174,20285,1292,19552,6480,140,2.1,9,9,8000,3300,9,999999999,15,0,0,88,0.2,0,0 +2010,6,23,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,5,71,95721,670,1322,328,235,42,213,26425,3372,24124,8326,130,3.6,9,9,8000,2400,9,999999999,16,0,0,88,0.2,0,0 +2010,6,23,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,6,76,95721,721,1322,329,258,45,234,29125,3628,26524,9269,150,2.6,9,9,8000,2400,9,999999999,17,0,0,88,0.2,0,0 +2010,6,23,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.5,7.3,86,96009,704,1322,328,249,43,226,28117,3468,25650,8937,170,4.1,9,9,5000,1800,0,919999999,20,0,0,88,0.2,0,0 +2010,6,23,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,8,87,95721,619,1322,331,210,39,192,23594,2884,21676,7406,150,2.1,9,9,5000,1500,0,919999999,21,0,0,88,0.2,0,0 +2010,6,23,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,9,93,95721,472,1322,332,145,13,140,16109,809,15664,5121,170,1.5,9,9,5000,1500,0,919999999,23,0,0,88,0.2,0,0 +2010,6,23,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.2,8.1,93,96098,273,1322,327,65,0,65,6385,0,6432,2313,260,2.1,9,9,4000,1500,0,919999999,21,0,0,88,0.2,0,0 +2010,6,23,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,8,93,95702,36,1322,326,5,0,5,487,0,491,190,72,1,9,9,5000,1500,0,919999999,21,0,0,88,0.2,0,0 +2010,6,23,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,8,93,95702,0,182,326,0,0,0,0,0,0,0,250,2.1,9,9,3500,600,0,919999999,21,0,0,88,0.2,0,0 +2010,6,23,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.8,8,95,96213,0,0,335,0,0,0,0,0,0,0,10,1.5,10,10,4000,1500,0,919999999,21,0,0,88,0.2,6,0 +2010,6,23,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,8,87,95721,0,0,331,0,0,0,0,0,0,0,360,5.7,9,9,8000,1500,0,919999999,21,0,0,88,0.2,6,0 +2010,6,23,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,8,87,95721,0,0,331,0,0,0,0,0,0,0,200,4.1,9,9,8000,1500,0,919999999,21,0,0,88,0.2,4.5,0 +2010,6,23,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9,7.4,90,96368,0,0,335,0,0,0,0,0,0,0,200,5.7,10,10,8000,900,0,919999999,20,0,0,88,0.2,0,0 +2010,6,23,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,7,87,95702,0,0,334,0,0,0,0,0,0,0,180,5.1,10,10,8000,1200,0,919999999,19,0,0,88,0.2,0,0 +2010,6,24,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,6,87,95683,0,0,329,0,0,0,0,0,0,0,180,5.1,10,10,8000,1200,0,919999999,17,0,0,88,0.2,0,0 +2010,6,24,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7,6.2,95,96612,0,0,324,0,0,0,0,0,0,0,130,4.1,10,10,8000,1200,0,919999999,18,0,0,88,0.2,0,0 +2010,6,24,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,6,93,95663,0,0,324,0,0,0,0,0,0,0,110,3.1,10,10,8000,1200,0,919999999,17,0,0,88,0.2,0,0 +2010,6,24,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7,5,87,95663,0,0,323,0,0,0,0,0,0,0,270,2.1,10,10,8000,1200,0,919999999,16,0,0,88,0.2,0,0 +2010,6,24,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7,6,93,95663,0,0,315,0,0,0,0,0,0,0,270,1.5,9,9,8000,1800,0,919999999,17,0,0,88,0.2,0,0 +2010,6,24,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,7,5,87,95663,0,0,296,0,0,0,0,0,0,0,76,0,5,5,8000,1800,0,919999999,16,0,0,88,0.2,0,0 +2010,6,24,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,6,5,93,95644,0,0,292,0,0,0,0,0,0,0,10,2.1,5,5,8000,77777,0,919999999,16,0,0,88,0.2,0,0 +2010,6,24,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,6,4.3,89,96724,0,0,289,0,0,0,0,0,0,0,278,1,4,4,8000,77777,0,919999999,15,0,0,88,0.2,0,0 +2010,6,24,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,5,100,95624,158,834,288,50,61,43,5507,0,4722,1385,232,1,5,5,5000,77777,0,919999999,16,0,0,88,0.2,0,0 +2010,6,24,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,6,87,95683,378,1322,302,191,342,93,21469,16227,10514,3455,12,1,5,5,6000,77777,0,919999999,17,0,0,88,0.2,0,0 +2010,6,24,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9.2,6.5,83,96844,552,1322,303,346,576,105,40194,33513,12248,4482,190,2.1,3,3,6000,77777,0,919999999,18,0,0,88,0.2,0,0 +2010,6,24,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,6,76,95721,669,1322,306,448,697,95,53737,41108,11396,4436,230,2.6,3,3,6000,77777,0,919999999,17,0,0,88,0.2,0,0 +2010,6,24,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,6,67,95759,721,1322,314,493,728,96,59716,43606,11694,4630,290,1.5,3,3,6000,77777,0,919999999,17,0,0,88,0.2,0,0 +2010,6,24,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,13.4,6.8,64,96594,704,1322,308,484,730,95,58406,43177,11536,4546,92,1,0,0,6000,77777,0,919999999,19,0,0,88,0.2,0,0 +2010,6,24,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14,6,59,95797,619,1322,326,397,587,122,46290,37025,14297,5322,254,1,4,4,9900,77777,0,919999999,17,0,0,88,0.2,0,0 +2010,6,24,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,7,63,95797,472,1322,329,268,447,108,30520,25044,12369,4281,180,3.6,5,5,9900,77777,0,919999999,19,0,0,88,0.2,0,0 +2010,6,24,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,13.8,6.4,61,96535,274,1322,309,127,300,65,14225,8286,7279,2310,180,3.6,0,0,9900,77777,0,919999999,18,0,0,88,0.2,0,0 +2010,6,24,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,7,71,95759,37,1322,323,9,0,9,862,0,867,311,190,2.6,6,6,9900,77777,0,919999999,19,0,0,88,0.2,0,0 +2010,6,24,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,11,6,71,95740,0,187,317,0,0,0,0,0,0,0,190,1.5,6,6,9900,77777,0,919999999,17,0,0,88,0.2,0,0 +2010,6,24,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,9.8,6.3,79,96572,0,0,292,0,0,0,0,0,0,0,140,2.1,0,0,9900,77777,9,999999999,18,0,0,88,0.2,0,0 +2010,6,24,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,9,4,71,95702,0,0,307,0,0,0,0,0,0,0,170,1.5,6,6,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,6,24,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,8,4,76,95683,0,0,306,0,0,0,0,0,0,0,167,0,7,7,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,6,24,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,6.5,4.7,88,96508,0,0,277,0,0,0,0,0,0,0,209,0.5,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,6,24,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4,3,93,95604,0,0,266,0,0,0,0,0,0,0,255,0.5,0,0,6000,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,6,25,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4,2,87,95604,0,0,265,0,0,0,0,0,0,0,334,0,0,0,3000,77777,0,999999999,12,0,0,88,0.2,0,0 +2010,6,25,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,2.6,1.8,94,96326,0,0,260,0,0,0,0,0,0,0,25,1,0,0,2000,77777,0,999999999,11,0,0,88,0.2,0,0 +2010,6,25,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,2,1,93,95564,0,0,296,0,0,0,0,0,0,0,234,0.5,10,10,2000,77777,0,999999999,11,0,0,88,0.2,0,0 +2010,6,25,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,1,1,100,95544,0,0,253,0,0,0,0,0,0,0,35,0,0,0,700,77777,0,999999999,11,0,0,88,0.2,0,0 +2010,6,25,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,0.5,0.2,98,96151,0,0,250,0,0,0,0,0,0,0,290,1,0,0,500,77777,0,999999999,10,0,0,88,0.2,0,0 +2010,6,25,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,1,1,100,95544,0,0,292,0,0,0,0,0,0,0,10,0.5,10,10,300,77777,0,999999999,11,0,0,88,0.2,0,0 +2010,6,25,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,1,1,100,95544,0,0,268,0,0,0,0,0,0,0,50,1.5,5,5,1200,77777,0,999999999,11,0,0,88,0.2,0,0 +2010,6,25,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,0.8,-0.6,90,96101,0,0,281,0,0,0,0,0,0,0,335,1,9,9,5000,5400,0,999999999,9,0,0,88,0.2,0,0 +2010,6,25,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,2,2,100,95564,157,831,297,17,0,17,1644,0,1656,661,46,0.5,10,10,4000,6600,0,999999999,12,0,0,88,0.2,0,0 +2010,6,25,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3,2,93,95584,377,1322,277,192,255,119,21170,14460,13175,4053,360,2.1,5,5,4000,77777,0,999999999,12,0,0,88,0.2,0,0 +2010,6,25,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4.7,3.6,93,96151,552,1322,311,111,0,111,11161,0,11253,4675,263,1,10,10,5000,77777,0,999999999,14,0,0,88,0.2,0,0 +2010,6,25,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,5,87,95663,669,1322,314,234,87,190,26654,6574,21749,7724,44,1,9,9,5000,5400,0,999999999,16,0,0,88,0.2,0,0 +2010,6,25,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,7,87,95702,721,1322,307,465,485,200,53097,36703,22930,8336,290,1.5,5,5,5000,77777,0,999999999,19,0,0,88,0.2,0,0 +2010,6,25,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,11.7,6.7,71,95919,704,1322,319,451,514,177,51866,37168,20417,7530,204,1,5,5,5000,77777,0,999999999,18,0,0,88,0.2,0,0 +2010,6,25,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,13,7,67,95778,620,1322,325,380,537,129,44154,34252,15009,5553,4,1,5,5,5000,77777,0,999999999,19,0,0,88,0.2,0,0 +2010,6,25,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,14,6,59,95797,473,1322,310,283,505,102,32407,27826,11725,4100,158,1.5,0,0,5000,77777,0,999999999,17,0,0,88,0.2,0,0 +2010,6,25,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14.2,7.7,65,95919,275,1322,334,111,179,74,12330,5528,8224,2536,180,3.6,6,6,5000,7500,0,999999999,20,0,0,88,0.2,0,0 +2010,6,25,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,6,67,95759,38,1322,319,10,0,10,929,0,935,331,170,3.6,5,5,9900,7500,0,999999999,17,0,0,88,0.2,0,0 +2010,6,25,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,11,6,71,95740,0,193,317,0,0,0,0,0,0,0,160,2.6,6,6,9900,7500,0,999999999,17,0,0,88,0.2,0,0 +2010,6,25,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9.3,6,80,96062,0,0,310,0,0,0,0,0,0,0,160,2.6,6,6,9900,7500,9,999999999,17,0,0,88,0.2,0,0 +2010,6,25,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,8,5,81,95683,0,0,312,0,0,0,0,0,0,0,150,3.1,8,8,9900,7500,9,999999999,16,0,0,88,0.2,0,0 +2010,6,25,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,8,5,81,95683,0,0,312,0,0,0,0,0,0,0,150,3.1,8,8,9900,7500,9,999999999,16,0,0,88,0.2,0,0 +2010,6,25,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,7.6,3.9,77,96161,0,0,296,0,0,0,0,0,0,0,160,3.1,4,4,9900,7500,9,999999999,14,0,0,88,0.2,0,0 +2010,6,25,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,6,3,81,95644,0,0,301,0,0,0,0,0,0,0,160,2.1,8,8,9900,7500,9,999999999,13,0,0,88,0.2,0,0 +2010,6,26,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,4,2,87,95604,0,0,298,0,0,0,0,0,0,0,240,1,9,9,9900,7500,9,999999999,12,0,0,88,0.2,0,0 +2010,6,26,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,3.6,2.2,91,96195,0,0,264,0,0,0,0,0,0,0,180,2.1,0,0,9900,7500,9,999999999,12,0,0,88,0.2,0,0 +2010,6,26,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,4,2,87,95604,0,0,298,0,0,0,0,0,0,0,160,1,9,9,9900,7500,9,999999999,12,0,0,88,0.2,0,0 +2010,6,26,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,2,1,93,95564,0,0,257,0,0,0,0,0,0,0,310,1.5,0,0,6000,77777,0,999999999,11,0,0,88,0.2,0,0 +2010,6,26,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,1.5,0.5,93,96247,0,0,254,0,0,0,0,0,0,0,260,1.5,0,0,7000,77777,0,999999999,10,0,0,88,0.2,0,0 +2010,6,26,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,1,-1,86,95544,0,0,262,0,0,0,0,0,0,0,245,0.5,3,3,5000,77777,0,999999999,9,0,0,88,0.2,0,0 +2010,6,26,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,1,0,93,95544,0,0,283,0,0,0,0,0,0,0,172,0.5,9,9,4000,690,0,999999999,10,0,0,88,0.2,0,0 +2010,6,26,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,2.7,1.7,93,96385,0,0,292,0,0,0,0,0,0,0,290,1,9,9,4000,690,0,999999999,11,0,0,88,0.2,0,0 +2010,6,26,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3,2,93,95584,157,828,302,17,0,17,1636,0,1647,658,141,1,10,10,4000,690,0,999999999,12,0,0,88,0.2,0,0 +2010,6,26,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4,3,93,95604,377,1322,299,106,11,103,11846,580,11531,3697,30,1.5,9,9,4000,750,0,999999999,13,0,0,88,0.2,0,0 +2010,6,26,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5.9,3.8,86,96571,552,1322,308,181,71,152,20503,4918,17205,5908,320,1.5,9,9,5000,750,0,999999999,14,0,0,88,0.2,0,0 +2010,6,26,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,5,76,95702,669,1322,300,448,554,168,51506,39752,19350,7056,29,0.5,3,3,6000,77777,0,999999999,16,0,0,88,0.2,0,0 +2010,6,26,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,5,71,95721,722,1322,309,466,605,136,54997,40268,16104,6211,30,2.6,5,5,6000,77777,0,999999999,16,0,0,88,0.2,0,0 +2010,6,26,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.9,3.4,64,96612,705,1322,307,454,524,174,52326,38370,20204,7462,310,2.1,5,5,6000,77777,0,999999999,13,0,0,88,0.2,0,0 +2010,6,26,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,3,54,95759,621,1322,316,384,479,159,43862,33978,18241,6514,132,0.5,5,5,8000,77777,0,999999999,13,0,0,88,0.2,0,0 +2010,6,26,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,3,58,95740,474,1322,307,282,512,98,32397,28328,11292,3972,150,2.1,3,3,8000,77777,0,999999999,13,0,0,88,0.2,0,0 +2010,6,26,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.5,3.6,62,96813,276,1322,305,127,286,68,14254,8647,7606,2394,200,4.1,3,3,8000,77777,0,999999999,14,0,0,88,0.2,0,0 +2010,6,26,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9,3,66,95702,39,1322,298,11,0,11,1031,0,1038,361,190,3.6,3,3,8000,77777,0,999999999,13,0,0,88,0.2,0,0 +2010,6,26,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8,4,76,95683,0,200,295,0,0,0,0,0,0,0,220,3.6,3,3,8000,77777,0,999999999,14,0,0,88,0.2,0,0 +2010,6,26,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,6.5,1.6,71,97008,0,0,286,0,0,0,0,0,0,0,220,3.1,3,3,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2010,6,26,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,6,2,75,95644,0,0,295,0,0,0,0,0,0,0,140,1.5,7,7,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2010,6,26,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,4,1,81,95604,0,0,290,0,0,0,0,0,0,0,270,1.5,8,8,9900,77777,9,999999999,11,0,0,88,0.2,0,0 +2010,6,26,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,3.1,1.4,89,97157,0,0,272,0,0,0,0,0,0,0,330,1.5,3,3,9900,77777,9,999999999,11,0,0,88,0.2,0,0 +2010,6,26,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,2,1,93,95564,0,0,257,0,0,0,0,0,0,0,123,1,0,0,5000,77777,9,999999999,11,0,0,88,0.2,0,0 +2010,6,27,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,2,1,93,95564,0,0,257,0,0,0,0,0,0,0,187,0.5,0,0,5000,77777,9,999999999,11,0,0,88,0.2,0,0 +2010,6,27,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,1.4,0.1,91,97150,0,0,265,0,0,0,0,0,0,0,344,0,3,3,5000,77777,9,999999999,10,0,0,88,0.2,0,0 +2010,6,27,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,0,0,100,95523,0,0,259,0,0,0,0,0,0,0,350,1.5,3,3,2000,77777,9,999999999,10,0,0,88,0.2,0,0 +2010,6,27,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,-1,-2,92,95503,0,0,257,0,0,0,0,0,0,0,20,1.5,5,5,150,77777,0,999999999,8,0,0,88,0.267,0,0 +2010,6,27,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,-1.4,-1.6,98,97054,0,0,279,0,0,0,0,0,0,0,109,0,10,10,200,30,0,999999999,8,0,0,88,0.293,0,0 +2010,6,27,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,-1,-2,92,95503,0,0,273,0,0,0,0,0,0,0,199,0.5,9,9,450,77777,0,999999999,8,0,0,88,0.267,0,0 +2010,6,27,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,-2,-3,92,95482,0,0,268,0,0,0,0,0,0,0,136,1,9,9,350,77777,0,999999999,7,0,0,88,0.333,0,0 +2010,6,27,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,-1.9,-2,99,96949,0,0,277,0,0,0,0,0,0,0,120,0.5,10,10,500,77777,0,999999999,8,0,0,88,0.327,0,0 +2010,6,27,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,-2,-3,92,95482,157,825,268,24,0,24,2372,0,2388,904,230,1.5,9,9,400,77777,0,999999999,7,0,0,88,0.333,0,0 +2010,6,27,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,2,1,93,95564,377,1322,257,206,404,91,23250,19631,10285,3389,275,1,0,0,3000,77777,0,999999999,11,0,0,88,0.2,0,0 +2010,6,27,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4.9,3.4,90,96995,552,1322,270,351,632,88,41507,35351,10391,3867,350,1.5,0,0,4000,77777,0,999999999,13,0,0,88,0.2,0,0 +2010,6,27,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,4,81,95663,670,1322,279,455,713,94,54733,42559,11298,4398,350,2.1,0,0,6000,77777,0,999999999,14,0,0,88,0.2,0,0 +2010,6,27,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,3,62,95721,722,1322,290,503,763,86,61499,45446,10548,4194,249,1,0,0,6000,77777,0,999999999,13,0,0,88,0.2,0,0 +2010,6,27,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10.9,1.6,53,96773,706,1322,292,490,759,84,59759,45166,10343,4092,51,1,0,0,8000,77777,0,999999999,11,0,0,88,0.2,0,0 +2010,6,27,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,1,47,95759,622,1322,296,414,692,89,49613,40815,10708,4101,200,2.1,0,0,8000,77777,0,999999999,10,0,0,88,0.2,0,0 +2010,6,27,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,-1,38,95778,475,1322,298,288,530,97,33206,29975,11258,3962,155,1,0,0,8000,77777,0,999999999,8,0,0,88,0.2,0,0 +2010,6,27,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12.8,0.2,42,96677,277,1322,299,131,256,77,14490,9027,8566,2615,220,2.6,0,0,8000,77777,0,999999999,10,0,0,88,0.2,0,0 +2010,6,27,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,0,44,95759,40,1322,295,11,0,11,1086,0,1093,377,200,3.1,0,0,8000,77777,0,999999999,9,0,0,88,0.2,0,0 +2010,6,27,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,10,-4,36,95721,0,206,283,0,0,0,0,0,0,0,170,3.6,0,0,9900,77777,0,999999999,6,0,0,88,0.2,0,0 +2010,6,27,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,6.2,-1.4,57,96615,0,0,270,0,0,0,0,0,0,0,319,1,0,0,9900,77777,9,999999999,8,0,0,88,0.2,0,0 +2010,6,27,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,5,-1,64,95624,0,0,282,0,0,0,0,0,0,0,350,1.5,5,5,9900,77777,9,999999999,9,0,0,88,0.2,0,0 +2010,6,27,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4,0,75,95604,0,0,263,0,0,0,0,0,0,0,37,1,0,0,8000,77777,9,999999999,10,0,0,88,0.2,0,0 +2010,6,27,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,2.1,-1.5,76,96646,0,0,255,0,0,0,0,0,0,0,140,1.5,0,0,8000,77777,9,999999999,8,0,0,88,0.2,0,0 +2010,6,27,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,2,-1,80,95564,0,0,255,0,0,0,0,0,0,0,350,1.5,0,0,7000,77777,9,999999999,9,0,0,88,0.2,0,0 +2010,6,28,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,1,-1,86,95544,0,0,251,0,0,0,0,0,0,0,60,2.1,0,0,6000,77777,9,999999999,9,0,0,88,0.2,0,0 +2010,6,28,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,0.7,-1.5,84,96532,0,0,250,0,0,0,0,0,0,0,200,1.5,0,0,6000,77777,9,999999999,8,0,0,88,0.2,0,0 +2010,6,28,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,0,-2,85,95523,0,0,247,0,0,0,0,0,0,0,85,1,0,0,5000,77777,9,999999999,8,0,0,88,0.2,0,0 +2010,6,28,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,-1,-2,92,95503,0,0,243,0,0,0,0,0,0,0,30,2.6,0,0,4000,77777,9,999999999,8,0,0,88,0.267,0,0 +2010,6,28,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,-0.4,-2,88,96368,0,0,245,0,0,0,0,0,0,0,180,1.5,0,0,4000,77777,9,999999999,8,0,0,88,0.227,0,0 +2010,6,28,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,-1,-3,85,95503,0,0,242,0,0,0,0,0,0,0,146,1,0,0,3500,77777,9,999999999,7,0,0,88,0.267,0,0 +2010,6,28,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,-1,-2,92,95503,0,0,243,0,0,0,0,0,0,0,90,2.1,0,0,3500,77777,9,999999999,8,0,0,88,0.267,0,0 +2010,6,28,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,-0.6,-1.9,90,96260,0,0,245,0,0,0,0,0,0,0,90,1,0,0,3000,77777,9,999999999,8,0,0,88,0.24,0,0 +2010,6,28,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,0,-2,85,95523,156,823,247,53,64,45,5825,131,5012,1436,279,0,0,0,4000,77777,9,999999999,8,0,0,88,0.2,0,0 +2010,6,28,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4,1,81,95604,377,1322,264,206,364,102,22996,18892,11415,3667,30,1.5,0,0,4000,77777,9,999999999,11,0,0,88,0.2,0,0 +2010,6,28,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6.2,1.2,70,95648,552,1322,273,353,635,87,41680,35973,10340,3848,330,2.1,0,0,7000,77777,9,999999999,11,0,0,88,0.2,0,0 +2010,6,28,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,8,1,61,95683,670,1322,294,440,644,113,52197,41259,13496,5178,332,1,4,4,9900,77777,9,999999999,10,0,0,88,0.2,0,0 +2010,6,28,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,1,47,95759,723,1322,306,504,735,102,60841,46075,12346,4869,130,2.6,2,2,9900,77777,9,999999999,10,0,0,88,0.2,0,0 +2010,6,28,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,13.9,0.8,41,96074,707,1322,304,491,761,84,59950,45440,10296,4075,328,1,0,0,9900,77777,9,999999999,10,0,0,88,0.2,0,0 +2010,6,28,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,16,1,36,95834,623,1322,313,415,691,90,49696,40850,10750,4117,342,1.5,0,0,9900,77777,9,999999999,10,0,0,88,0.2,0,0 +2010,6,28,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,17,0,32,95852,477,1322,316,288,530,97,33249,29827,11244,3962,7,0.5,0,0,9900,77777,9,999999999,9,0,0,88,0.2,0,0 +2010,6,28,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15.9,1.3,37,96083,279,1322,313,131,303,67,14706,9455,7568,2392,160,3.1,0,0,9900,77777,9,999999999,11,0,0,88,0.2,0,0 +2010,6,28,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,2,44,95797,42,1322,311,12,0,12,1115,0,1122,387,170,3.6,1,1,9900,77777,9,999999999,11,0,0,88,0.2,0,0 +2010,6,28,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,3,54,95759,0,214,311,0,0,0,0,0,0,0,140,3.1,3,3,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,6,28,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,9.7,1.9,58,96221,0,0,288,0,0,0,0,0,0,0,139,1,0,0,9900,77777,9,999999999,11,0,0,88,0.2,0,0 +2010,6,28,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,6,2,75,95644,0,0,295,0,0,0,0,0,0,0,93,0.5,7,7,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2010,6,28,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,7,2,70,95663,0,0,296,0,0,0,0,0,0,0,149,1,6,6,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2010,6,28,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,8.5,1.9,63,96358,0,0,283,0,0,0,0,0,0,0,140,2.1,0,0,9900,77777,9,999999999,11,0,0,88,0.2,0,0 +2010,6,28,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,4,1,81,95604,0,0,290,0,0,0,0,0,0,0,290,2.1,8,8,9900,77777,9,999999999,11,0,0,88,0.2,0,0 +2010,6,29,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,3,1,87,95584,0,0,292,0,0,0,0,0,0,0,307,1,9,9,9900,77777,9,999999999,11,0,0,88,0.2,0,0 +2010,6,29,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,2.3,-0.1,84,96386,0,0,257,0,0,0,0,0,0,0,160,1,0,0,6000,77777,9,999999999,9,0,0,88,0.2,0,0 +2010,6,29,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,2,0,87,95564,0,0,256,0,0,0,0,0,0,0,46,1,0,0,5000,77777,9,999999999,10,0,0,88,0.2,0,0 +2010,6,29,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,1,0,93,95544,0,0,252,0,0,0,0,0,0,0,32,0.5,0,0,4000,77777,9,999999999,10,0,0,88,0.2,0,0 +2010,6,29,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,0.7,-0.6,90,96419,0,0,250,0,0,0,0,0,0,0,40,0.5,0,0,4000,77777,9,999999999,9,0,0,88,0.2,0,0 +2010,6,29,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,0,-1,92,95523,0,0,248,0,0,0,0,0,0,0,290,1,0,0,4000,77777,9,999999999,9,0,0,88,0.2,0,0 +2010,6,29,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,0,-1,92,95523,0,0,248,0,0,0,0,0,0,0,50,2.1,0,0,4000,77777,9,999999999,9,0,0,88,0.2,0,0 +2010,6,29,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,1.7,-0.2,87,96657,0,0,254,0,0,0,0,0,0,0,60,2.1,0,0,5000,77777,9,999999999,9,0,0,88,0.2,0,0 +2010,6,29,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,2,0,87,95564,156,822,256,53,63,45,5799,88,4997,1433,235,1,0,0,5000,77777,9,999999999,10,0,0,88,0.2,0,0 +2010,6,29,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,2,81,95624,377,1321,281,203,415,84,23013,19246,9591,3207,82,1,3,3,5000,77777,9,999999999,12,0,0,88,0.2,0,0 +2010,6,29,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7.7,3.2,73,96834,552,1321,293,347,569,109,40304,34408,12740,4634,174,1,3,3,5000,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,6,29,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,4,66,95721,671,1321,291,456,713,94,54798,42578,11339,4415,280,1.5,0,0,6000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,6,29,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,5,62,95759,724,1321,300,503,757,88,61283,44732,10803,4296,300,1.5,0,0,6000,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,6,29,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12.8,4.7,58,96696,708,1321,316,482,724,95,58330,43471,11500,4535,138,1,3,3,6000,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,6,29,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,5,58,95778,624,1321,318,408,660,97,48524,38908,11533,4401,30,2.1,3,3,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,6,29,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,4,51,95797,478,1321,308,288,535,94,33214,29015,10915,3871,65,0.5,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,6,29,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13.9,4.4,53,96707,280,1321,308,132,300,68,14733,9165,7628,2413,279,0.5,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,6,29,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,4,58,95759,43,1321,312,12,0,12,1137,0,1145,395,106,0.5,3,3,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,6,29,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,5,71,95721,0,221,304,0,0,0,0,0,0,0,280,2.1,3,3,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,6,29,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.4,4.9,73,96857,0,0,304,0,0,0,0,0,0,0,160,2.6,4,4,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,6,29,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,4,81,95663,0,0,279,0,0,0,0,0,0,0,320,2.1,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,6,29,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,4,87,95644,0,0,275,0,0,0,0,0,0,0,30,3.1,0,0,6000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,6,29,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5.9,3.1,82,96732,0,0,274,0,0,0,0,0,0,0,40,2.6,0,0,5000,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,6,29,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5,3,87,95624,0,0,270,0,0,0,0,0,0,0,200,1.5,0,0,5000,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,6,30,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3,2,93,95584,0,0,261,0,0,0,0,0,0,0,280,1.5,0,0,4000,77777,9,999999999,12,0,0,88,0.2,0,0 +2010,6,30,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3,2.1,94,96683,0,0,261,0,0,0,0,0,0,0,50,2.1,0,0,2500,77777,9,999999999,12,0,0,88,0.2,0,0 +2010,6,30,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3,2,93,95584,0,0,261,0,0,0,0,0,0,0,70,2.1,0,0,4000,77777,9,999999999,12,0,0,88,0.2,0,0 +2010,6,30,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,2,1,93,95564,0,0,257,0,0,0,0,0,0,0,230,2.1,0,0,3000,77777,0,999999999,11,0,0,88,0.2,0,0 +2010,6,30,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,0.6,-0.4,93,96511,0,0,250,0,0,0,0,0,0,0,39,0.5,0,0,2000,77777,0,999999999,9,0,0,88,0.2,0,0 +2010,6,30,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,-1,-1,100,95503,0,0,281,0,0,0,0,0,0,0,30,1.5,10,10,2000,77777,0,999999999,9,0,0,88,0.267,0,0 +2010,6,30,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,-1,-1,100,95503,0,0,254,0,0,0,0,0,0,0,219,1,3,3,400,77777,0,999999999,9,0,0,88,0.267,0,0 +2010,6,30,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,0.4,0.1,98,96535,0,0,263,0,0,0,0,0,0,0,40,2.1,4,4,800,77777,0,999999999,10,0,0,88,0.2,0,0 +2010,6,30,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,0,-1,92,95523,156,821,262,49,58,42,5434,0,4689,1371,280,1.5,5,5,1200,77777,0,999999999,9,0,0,88,0.2,0,0 +2010,6,30,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3,2,93,95584,377,1321,261,205,432,82,23372,19758,9382,3151,281,0,0,0,3500,77777,0,999999999,12,0,0,88,0.2,0,0 +2010,6,30,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.8,3.8,76,96515,553,1321,296,340,565,104,39633,33391,12139,4445,30,0.5,4,4,4000,77777,0,999999999,14,0,0,88,0.2,0,0 +2010,6,30,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,5,71,95721,671,1321,292,456,712,94,54774,42237,11326,4412,270,2.1,0,0,5000,77777,0,999999999,16,0,0,88,0.2,0,0 +2010,6,30,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,5,55,95797,724,1321,309,504,739,99,60897,44851,11956,4733,10,2.1,0,0,8000,77777,0,999999999,15,0,0,88,0.2,0,0 +2010,6,30,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,16.9,4.5,44,96233,709,1321,337,474,668,115,56439,42372,13809,5379,30,1.5,4,4,8000,77777,0,999999999,15,0,0,88,0.2,0,0 +2010,6,30,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,20,1,28,95906,625,1321,331,418,693,90,49999,41017,10770,4129,90,0.5,0,0,9900,77777,0,999999999,10,0,0,88,0.2,0,0 +2010,6,30,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,20,1,28,95906,480,1321,345,287,440,127,32360,27745,14409,4847,354,0.5,3,3,9900,77777,0,999999999,10,0,0,88,0.2,0,0 +2010,6,30,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,20.1,-0.6,25,96130,282,1321,344,132,251,79,14641,9176,8753,2672,270,1,3,3,9900,77777,0,999999999,9,0,0,88,0.2,0,0 +2010,6,30,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,3,42,95834,45,1321,329,12,0,12,1181,0,1189,408,28,1,3,3,8000,77777,0,999999999,13,0,0,88,0.2,0,0 +2010,6,30,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11.1,2.8,57,95844,0,229,314,0,0,0,0,0,0,0,257,1.5,3,3,8000,77777,0,999999999,11,0,0,88,0.2,0,0 +2010,6,30,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.3,2.7,63,95938,0,0,317,0,0,0,0,0,0,0,235,1.5,3,3,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,6,30,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.2,2.7,73,95796,0,0,285,0,0,0,0,0,0,0,157,1.8,0,0,8000,77777,9,999999999,12,0,0,88,0.2,0,0 +2010,6,30,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.9,2.4,78,95771,0,0,331,0,0,0,0,0,0,0,132,1.8,10,10,7000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,6,30,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4.2,1.5,83,96014,0,0,272,0,0,0,0,0,0,0,150,1.9,0,0,7000,77777,9,999999999,11,0,0,88,0.2,0,0 +2010,6,30,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3.5,1.1,84,95872,0,0,270,0,0,0,0,0,0,0,91,1.8,0,0,6000,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,7,1,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,2.5,0.1,84,95852,0,0,264,0,0,0,0,0,0,0,120,1.3,0,0,7000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,7,1,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.6,-0.3,87,96092,0,0,256,0,0,0,0,0,0,0,197,1,0,0,3000,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,7,1,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,1.4,-0.7,86,95809,0,0,259,0,0,0,0,0,0,0,205,0.9,0,0,7000,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,7,1,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,0.4,-0.9,90,95789,0,0,251,0,0,0,0,0,0,0,274,1.1,0,0,6000,77777,9,999999999,9,0,0,88,0.2,0,0 +2013,7,1,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,0.3,-0.9,91,96057,0,0,249,0,0,0,0,0,0,0,238,1.8,0,0,4000,77777,9,999999999,9,0,0,88,0.2,0,0 +2013,7,1,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,0.4,-1,89,95802,0,0,251,0,0,0,0,0,0,0,221,1.8,0,0,4000,77777,9,999999999,9,0,0,88,0.2,0,0 +2013,7,1,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,-1,-1,100,95503,0,0,281,0,0,0,0,0,0,0,303,2,10,10,4500,77777,9,999999999,9,0,0,88,0.267,0,0 +2013,7,1,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.7,-1,88,96617,0,0,250,0,0,0,0,0,0,0,10,2.6,0,0,5000,77777,9,999999999,9,0,0,88,0.2,0,0 +2013,7,1,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,1,-1,86,95544,156,821,251,53,63,45,5810,109,5004,1434,291,1,0,0,5000,77777,9,999999999,9,0,0,88,0.2,0,0 +2013,7,1,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4,0,75,95604,377,1321,263,206,367,102,23092,19130,11415,3669,122,1,0,0,6000,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,7,1,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.7,2.1,68,96588,553,1321,280,353,634,88,41742,35809,10380,3865,360,1,0,0,8000,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,7,1,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,11,2,54,95740,672,1321,306,453,710,91,54595,42653,11061,4313,238,1,3,3,8666,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,7,1,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,2,44,95797,726,1321,311,507,766,86,61965,45878,10530,4191,170,1.5,1,1,9333,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,7,1,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,16.2,-1.7,29,96381,710,1321,324,489,746,88,59639,45680,10810,4272,270,1.5,3,3,9333,77777,9,999999999,8,0,0,88,0.2,0,0 +2013,7,1,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,2,36,95852,627,1321,318,418,692,90,50051,40787,10818,4150,320,1.5,0,0,9333,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,7,1,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,1,32,95870,481,1321,322,292,478,118,33151,29137,13417,4594,40,1.5,0,0,9333,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,7,1,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17.4,3.3,39,96299,283,1321,344,117,192,76,13015,6612,8481,2622,200,1.5,6,6,9333,7500,9,999999999,13,0,0,88,0.2,0,0 +2013,7,1,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,4,48,95815,47,1321,322,13,0,13,1235,0,1243,425,160,3.6,2,2,9333,7500,9,999999999,14,0,0,88,0.2,0,0 +2013,7,1,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,13,3,51,95778,0,238,315,0,0,0,0,0,0,0,160,3.1,3,3,9333,7500,9,999999999,13,0,0,88,0.2,0,0 +2013,7,1,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,12,2.9,54,96350,0,0,298,0,0,0,0,0,0,0,196,0,0,0,9333,7500,9,999999999,13,0,0,88,0.2,0,0 +2013,7,1,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,11,4,62,95740,0,0,310,0,0,0,0,0,0,0,159,1,4,4,9333,7500,9,999999999,14,0,0,88,0.2,0,0 +2013,7,1,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,8,2,66,95683,0,0,297,0,0,0,0,0,0,0,340,1.5,5,5,9333,7500,9,999999999,12,0,0,88,0.2,0,0 +2013,7,1,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,6.2,2.1,75,96247,0,0,274,0,0,0,0,0,0,0,210,1.5,0,0,9333,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,7,1,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,7,1,66,95663,0,0,292,0,0,0,0,0,0,0,120,2.6,5,5,9333,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,7,2,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4,1,81,95604,0,0,264,0,0,0,0,0,0,0,260,3.1,0,0,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,7,2,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,5.4,1.4,75,96382,0,0,270,0,0,0,0,0,0,0,160,2.6,0,0,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,7,2,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,4,1,81,95604,0,0,290,0,0,0,0,0,0,0,40,2.6,8,8,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,7,2,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,2,0,87,95564,0,0,256,0,0,0,0,0,0,0,340,1.5,0,0,8000,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,7,2,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,2.2,0.1,86,96308,0,0,257,0,0,0,0,0,0,0,350,2.1,0,0,8000,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,7,2,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3,0,81,95584,0,0,259,0,0,0,0,0,0,0,176,1,0,0,8000,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,7,2,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3,0,81,95584,0,0,259,0,0,0,0,0,0,0,81,1,0,0,8000,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,7,2,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,1.5,-0.9,83,96143,0,0,253,0,0,0,0,0,0,0,30,0,0,0,7000,77777,9,999999999,9,0,0,88,0.2,0,0 +2013,7,2,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3,1,87,95584,156,822,260,53,63,45,5804,74,5004,1436,78,0.5,0,0,7000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,7,2,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,2,75,95644,378,1321,273,206,433,82,23446,19841,9391,3156,311,0.5,0,0,7000,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,7,2,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,3.1,71,96160,554,1321,282,353,593,104,41168,35334,12213,4471,190,1.5,0,0,7000,7500,9,999999999,13,0,0,88,0.2,0,0 +2013,7,2,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,4,58,95759,673,1321,299,458,576,165,52736,41234,19063,6986,150,2.6,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,7,2,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,4,54,95778,727,1321,340,261,93,210,29823,7297,24112,8685,170,4.1,9,9,8000,7620,9,999999999,14,0,0,88,0.2,0,0 +2013,7,2,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13.4,3.9,53,96112,711,1321,335,331,164,243,37239,13773,27451,9413,270,2.1,8,8,8000,4800,9,999999999,14,0,0,88,0.2,0,0 +2013,7,2,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,6,59,95797,628,1321,348,215,39,197,24189,2971,22225,7598,330,1.5,9,9,8000,4877,9,999999999,17,0,0,88,0.2,0,0 +2013,7,2,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,6,59,95797,483,1321,348,150,14,145,16745,911,16249,5313,70,1.5,9,9,8000,4877,9,999999999,17,0,0,88,0.2,0,0 +2013,7,2,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12.9,4.1,55,95951,285,1321,340,70,0,70,6878,0,6929,2479,220,3.6,9,9,8000,5400,9,999999999,14,0,0,88,0.2,0,0 +2013,7,2,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,4,62,95740,48,1321,331,7,0,7,664,0,668,256,170,5.7,9,9,8000,5486,9,999999999,14,0,0,88,0.2,0,0 +2013,7,2,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,6,76,95721,0,247,329,0,0,0,0,0,0,0,160,5.1,9,9,8000,4877,9,999999999,17,0,0,88,0.2,0,0 +2013,7,2,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.4,6.3,81,96243,0,0,311,0,0,0,0,0,0,0,130,4.1,6,6,8000,5400,9,999999999,18,0,0,88,0.2,0,0 +2013,7,2,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9,6,81,95702,0,0,324,0,0,0,0,0,0,0,280,2.6,9,9,8000,5182,9,999999999,17,0,0,88,0.2,0,0 +2013,7,2,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9,6,81,95702,0,0,324,0,0,0,0,0,0,0,10,4.6,9,9,8000,5182,9,999999999,17,0,0,88,0.2,0,0 +2013,7,2,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9.4,6.3,81,96225,0,0,319,0,0,0,0,0,0,0,220,3.1,8,8,8000,4800,9,999999999,18,0,0,88,0.2,0,0 +2013,7,2,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9,6,81,95702,0,0,324,0,0,0,0,0,0,0,130,4.1,9,9,8000,5486,9,999999999,17,0,0,88,0.2,0,0 +2013,7,3,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8,5,81,95683,0,0,318,0,0,0,0,0,0,0,290,3.1,9,9,8000,5486,9,999999999,16,0,0,88,0.2,0,0 +2013,7,3,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7.1,5.3,88,96104,0,0,315,0,0,0,0,0,0,0,330,2.6,9,9,8000,4800,9,999999999,16,0,0,88,0.2,0,0 +2013,7,3,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,5,93,95644,0,0,309,0,0,0,0,0,0,0,140,1.5,9,9,5000,4877,9,999999999,16,0,0,88,0.2,0,0 +2013,7,3,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,5,87,95663,0,0,314,0,0,0,0,0,0,0,150,4.1,9,9,8000,4877,9,999999999,16,0,0,88,0.2,0,0 +2013,7,3,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8,5.5,84,96103,0,0,319,0,0,0,0,0,0,0,130,3.1,9,9,8000,4500,9,999999999,16,0,0,88,0.2,0,0 +2013,7,3,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,5,87,95663,0,0,323,0,0,0,0,0,0,0,290,1.5,10,10,7000,4572,9,999999999,16,0,0,88,0.2,0,0 +2013,7,3,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,5,93,95644,0,0,309,0,0,0,0,0,0,0,340,2.1,9,9,8000,4572,9,999999999,16,0,0,88,0.2,0,0 +2013,7,3,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6.3,4.7,89,96249,0,0,310,0,0,0,0,0,0,0,10,2.6,9,9,6000,3600,9,999999999,15,0,0,88,0.2,0,0 +2013,7,3,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,5,87,95663,157,823,314,27,0,27,2654,0,2672,993,20,3.6,9,9,5000,3658,9,999999999,16,0,0,88,0.2,0,0 +2013,7,3,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,6,87,95683,378,1321,319,106,11,103,11820,539,11522,3703,343,1,9,9,6000,4572,9,999999999,17,0,0,88,0.2,0,0 +2013,7,3,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.2,5.8,85,96239,555,1321,329,111,0,111,11183,0,11275,4696,240,2.1,10,10,6000,4200,9,999999999,17,0,0,88,0.2,0,0 +2013,7,3,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,6,76,95721,674,1321,338,144,0,144,14666,0,14793,6305,100,2.1,10,10,7000,4877,9,999999999,17,0,0,88,0.2,0,0 +2013,7,3,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,6,71,95740,728,1321,343,159,0,159,18567,8,18641,7075,140,1.5,10,10,6000,4572,9,999999999,17,0,0,88,0.2,0,0 +2013,7,3,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.4,6,74,96206,713,1321,340,155,0,155,18057,1,18134,6859,270,2.6,10,10,7000,4200,9,999999999,17,0,0,88,0.2,0,0 +2013,7,3,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,6,71,95740,630,1321,343,132,0,132,13358,0,13472,5693,290,1.5,10,10,8000,4267,9,999999999,17,0,0,88,0.2,0,0 +2013,7,3,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,7,82,95721,485,1321,339,92,0,92,9197,0,9271,3815,60,1.5,10,10,7000,4267,9,999999999,19,0,0,88,0.2,0,0 +2013,7,3,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.5,5.9,73,96208,287,1321,340,43,0,43,4220,0,4252,1701,360,1,10,10,8000,4200,9,999999999,17,0,0,88,0.2,0,0 +2013,7,3,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,6,76,95721,50,1321,338,4,0,4,419,0,422,169,230,2.1,10,10,6000,4267,9,999999999,17,0,0,88,0.2,0,0 +2013,7,3,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,6,76,95721,0,256,338,0,0,0,0,0,0,0,140,2.1,10,10,8000,4267,9,999999999,17,0,0,88,0.2,0,0 +2013,7,3,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.2,5.6,73,96325,0,0,338,0,0,0,0,0,0,0,140,2.1,10,10,8000,4500,9,999999999,17,0,0,88,0.2,0,0 +2013,7,3,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,6,81,95702,0,0,324,0,0,0,0,0,0,0,160,3.1,9,9,7000,4572,9,999999999,17,0,0,88,0.2,0,0 +2013,7,3,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,6,81,95702,0,0,324,0,0,0,0,0,0,0,160,3.6,9,9,6000,4572,9,999999999,17,0,0,88,0.2,0,0 +2013,7,3,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.4,7.4,87,96347,0,0,321,0,0,0,0,0,0,0,160,4.1,8,8,6000,4500,9,999999999,20,0,0,88,0.2,0,0 +2013,7,3,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,7,87,95702,0,0,334,0,0,0,0,0,0,0,160,2.1,10,10,4000,122,9,999999999,19,0,0,88,0.2,0,0 +2013,7,4,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,7,87,95702,0,0,334,0,0,0,0,0,0,0,291,1,10,10,4000,122,9,999999999,19,0,0,88,0.2,0,0 +2013,7,4,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.2,6.3,88,96182,0,0,330,0,0,0,0,0,0,0,240,1.5,10,10,4000,240,9,999999999,18,0,0,88,0.2,0,0 +2013,7,4,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,7,93,95683,0,0,330,0,0,0,0,0,0,0,264,0.5,10,10,4000,457,9,999999999,19,0,0,88,0.2,0,0 +2013,7,4,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,7,93,95683,0,0,330,0,0,0,0,0,0,0,30,1.5,10,10,4000,457,9,999999999,19,0,0,88,0.2,0,0 +2013,7,4,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,6.5,90,96112,0,0,320,0,0,0,0,0,0,0,240,1.5,9,9,4000,450,9,999999999,18,0,0,88,0.2,0,0 +2013,7,4,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,6,87,95683,0,0,319,0,0,0,0,0,0,0,150,2.1,9,9,6000,457,9,999999999,17,0,0,88,0.2,0,0 +2013,7,4,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,6,87,95683,0,0,319,0,0,0,0,0,0,0,310,1.5,9,9,6000,457,9,999999999,17,0,0,88,0.2,0,0 +2013,7,4,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.1,6.1,87,96162,0,0,329,0,0,0,0,0,0,0,350,1.5,10,10,6000,450,9,999999999,17,0,0,88,0.2,0,0 +2013,7,4,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,6,87,95683,157,824,329,17,0,17,1623,0,1634,655,108,1,10,10,5000,762,9,999999999,17,0,0,88,0.2,0,0 +2013,7,4,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,7,87,95702,379,1321,334,65,0,65,6414,0,6464,2615,138,1,10,10,4000,762,9,999999999,19,0,0,88,0.2,0,0 +2013,7,4,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.4,6.8,84,96215,556,1321,327,182,33,168,20403,2365,18919,6358,360,0.5,9,9,4000,4200,9,999999999,19,0,0,88,0.2,0,0 +2013,7,4,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,7,82,95721,675,1321,339,144,0,144,14671,0,14798,6314,36,0,10,10,5000,4267,9,999999999,19,0,0,88,0.2,0,0 +2013,7,4,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,7,76,95740,730,1321,334,261,43,237,29512,3535,26949,9439,129,0.5,9,9,5000,5182,9,999999999,19,0,0,88,0.2,0,0 +2013,7,4,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11.3,6.2,71,96081,715,1321,335,255,43,232,28761,3497,26269,9165,260,2.1,9,9,6000,5100,9,999999999,18,0,0,88,0.2,0,0 +2013,7,4,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,6,67,95759,632,1321,348,132,0,132,13413,0,13527,5718,132,0.5,10,10,8000,5486,9,999999999,17,0,0,88,0.2,0,0 +2013,7,4,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,6,67,95759,487,1321,348,93,0,93,9271,0,9345,3844,180,2.1,10,10,8000,5486,9,999999999,17,0,0,88,0.2,0,0 +2013,7,4,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11.4,6.7,73,96055,289,1321,336,71,0,71,6981,0,7033,2522,170,3.1,9,9,8000,5400,9,999999999,18,0,0,88,0.2,0,0 +2013,7,4,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,7,76,95740,52,1321,334,7,0,7,712,0,717,274,160,2.1,9,9,8000,5486,9,999999999,19,0,0,88,0.2,0,0 +2013,7,4,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,6,76,95721,0,265,329,0,0,0,0,0,0,0,210,1.5,9,9,8000,5486,9,999999999,17,0,0,88,0.2,0,0 +2013,7,4,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.6,6.2,79,95917,0,0,320,0,0,0,0,0,0,0,130,2.1,8,8,8000,5400,9,999999999,18,0,0,88,0.2,0,0 +2013,7,4,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,6,76,95721,0,0,329,0,0,0,0,0,0,0,200,1,9,9,6000,5486,9,999999999,17,0,0,88,0.2,0,0 +2013,7,4,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,6,87,95683,0,0,319,0,0,0,0,0,0,0,114,1,9,9,6000,5486,9,999999999,17,0,0,88,0.2,0,0 +2013,7,4,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.7,5.6,87,95748,0,0,327,0,0,0,0,0,0,0,360,0,10,10,5000,5100,9,999999999,17,0,0,88,0.2,0,0 +2013,7,4,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,5,87,95663,0,0,323,0,0,0,0,0,0,0,270,1.5,10,10,5000,5182,9,999999999,16,0,0,88,0.2,0,0 +2013,7,5,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,7,6,93,95663,0,0,297,0,0,0,0,0,0,0,106,0,5,5,5000,5182,9,999999999,17,0,0,88,0.2,0,0 +2013,7,5,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.5,4.8,89,95583,0,0,320,0,0,0,0,0,0,0,90,1,10,10,4000,5182,9,999999999,15,0,0,88,0.2,0,0 +2013,7,5,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,5,93,95644,0,0,318,0,0,0,0,0,0,0,260,1.5,10,10,3500,4877,9,999999999,16,0,0,88,0.2,0,0 +2013,7,5,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,6.3,5.2,92,95634,0,0,311,0,0,0,0,0,0,0,59,1.2,9,9,3750,4877,9,999999999,16,0,0,88,0.2,0,0 +2013,7,5,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6.7,5.3,91,95624,0,0,322,0,0,0,0,0,0,0,360,1,10,10,4000,4800,9,999999999,16,0,0,88,0.2,0,0 +2013,7,5,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,5,93,95644,0,0,318,0,0,0,0,0,0,0,320,2.1,10,10,4000,4877,9,999999999,16,0,0,88,0.2,0,0 +2013,7,5,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,4,87,95644,0,0,317,0,0,0,0,0,0,0,6,1,10,10,3600,4572,9,999999999,14,0,0,88,0.2,0,0 +2013,7,5,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5.6,4,89,95914,0,0,315,0,0,0,0,0,0,0,90,1.5,10,10,3000,4500,9,999999999,14,0,0,88,0.2,0,0 +2013,7,5,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,5,93,95644,158,826,318,17,0,17,1635,0,1647,659,131,1,10,10,2000,3962,9,999999999,16,0,0,88,0.2,0,0 +2013,7,5,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,6,93,95663,380,1321,324,65,0,65,6448,0,6498,2627,30,1.5,10,10,2000,4267,9,999999999,17,0,0,88,0.2,0,0 +2013,7,5,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.4,6,91,96101,557,1321,326,111,0,111,11235,0,11328,4721,210,2.1,10,10,3000,3000,9,999999999,17,0,0,88,0.2,0,0 +2013,7,5,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,6,81,95702,677,1321,333,145,0,145,14742,0,14869,6341,150,4.6,10,10,5000,3048,9,999999999,17,0,0,88,0.2,0,0 +2013,7,5,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,7,87,95702,731,1321,334,160,3,158,18647,205,18536,7055,290,2.1,10,10,3000,1219,0,919999999,19,0,0,88,0.2,0,0 +2013,7,5,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.7,7.4,86,96155,717,1321,329,255,90,207,29057,6868,23637,8506,130,2.6,9,9,6000,1800,0,919999999,20,0,0,88,0.2,0,0 +2013,7,5,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,8,87,95721,634,1321,340,132,0,132,13410,0,13525,5729,210,2.1,10,10,6000,1829,0,919999999,21,0,0,88,0.2,0,0 +2013,7,5,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,8,87,95721,489,1321,340,93,0,93,9284,0,9360,3857,180,3.6,10,10,7000,1829,0,919999999,21,0,0,88,0.2,0,0 +2013,7,5,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.5,7.5,87,96132,291,1321,328,72,0,72,7044,0,7097,2546,180,2.1,9,9,7000,3600,0,919999999,20,0,0,88,0.2,0,0 +2013,7,5,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,7,82,95721,54,1321,339,5,0,5,451,0,454,182,200,3.1,10,10,7000,3658,0,919999999,19,0,0,88,0.2,0,0 +2013,7,5,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,7,87,95702,0,275,325,0,0,0,0,0,0,0,170,1,9,9,7000,3658,0,919999999,19,0,0,88,0.2,0,0 +2013,7,5,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,7.9,6.4,90,96365,0,0,299,0,0,0,0,0,0,0,334,1.5,4,4,7000,3658,9,999999999,18,0,0,88,0.2,2,0 +2013,7,5,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8,6,87,95683,0,0,302,0,0,0,0,0,0,0,150,2.1,5,5,7000,3658,9,999999999,17,0,0,88,0.2,0,0 +2013,7,5,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,7,5,87,95663,0,0,292,0,0,0,0,0,0,0,271,0.5,3,3,6000,3658,9,999999999,16,0,0,88,0.2,0,0 +2013,7,5,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5.9,4.8,93,96420,0,0,294,0,0,0,0,0,0,0,360,1,6,6,800,2400,0,999999999,15,0,0,88,0.2,0,0 +2013,7,5,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,6,93,95663,0,0,315,0,0,0,0,0,0,0,213,1,9,9,3000,2438,0,999999999,17,0,0,88,0.2,0,0 +2013,7,6,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,5,87,95663,0,0,296,0,0,0,0,0,0,0,86,1,5,5,800,2438,0,999999999,16,0,0,88,0.2,0,0 +2013,7,6,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5.8,5,95,96362,0,0,294,0,0,0,0,0,0,0,330,1,6,6,300,2400,0,999999999,16,0,0,88,0.2,0,0 +2013,7,6,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,6,5,93,95644,0,0,292,0,0,0,0,0,0,0,45,0.5,5,5,600,2400,0,999999999,16,0,0,88,0.2,0,0 +2013,7,6,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,5,4,93,95624,0,0,287,0,0,0,0,0,0,0,288,1,5,5,400,2400,0,999999999,14,0,0,88,0.2,0,0 +2013,7,6,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5.7,5.3,97,96322,0,0,302,0,0,0,0,0,0,0,30,2.1,8,8,400,120,0,999999999,16,0,0,88,0.2,0,0 +2013,7,6,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,5,93,95644,0,0,309,0,0,0,0,0,0,0,340,1.5,9,9,1200,2438,0,999999999,16,0,0,88,0.2,0,0 +2013,7,6,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,4,93,95624,0,0,287,0,0,0,0,0,0,0,270,1,5,5,2000,2438,0,999999999,14,0,0,88,0.2,0,0 +2013,7,6,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5.9,5,94,96269,0,0,309,0,0,0,0,0,0,0,225,1,9,9,800,4800,0,999999999,16,0,0,88,0.2,0,0 +2013,7,6,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,5,93,95644,158,829,309,28,0,28,2700,0,2719,1009,20,0.5,9,9,2000,5182,0,999999999,16,0,0,88,0.2,0,0 +2013,7,6,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,5,93,95644,381,1321,309,107,11,104,11953,572,11639,3740,319,0,9,9,2000,5486,0,999999999,16,0,0,88,0.2,0,0 +2013,7,6,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.7,6.5,92,96267,558,1321,328,112,0,112,11258,0,11352,4733,360,0,10,10,3000,5100,0,999999999,18,0,0,88,0.2,0,0 +2013,7,6,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,7,82,95721,678,1321,339,145,0,145,14756,0,14884,6354,145,1,10,10,5000,5486,0,999999999,19,0,0,88,0.2,0,0 +2013,7,6,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,7,76,95740,733,1321,334,263,44,239,29691,3552,27109,9501,308,1,9,9,5000,5486,0,999999999,19,0,0,88,0.2,0,0 +2013,7,6,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11.2,6.4,72,96155,718,1321,335,257,44,233,28955,3582,26384,9220,133,1,9,9,5000,5400,0,999999999,18,0,0,88,0.2,0,0 +2013,7,6,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,7,76,95740,636,1321,334,218,39,199,24531,2977,22539,7725,4,1,9,9,6000,4267,0,999999999,19,0,0,88,0.2,0,0 +2013,7,6,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,7,76,95740,491,1321,344,93,0,93,9364,0,9440,3889,280,2.1,10,10,5000,4572,0,999999999,19,0,0,88,0.2,0,0 +2013,7,6,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.9,7.4,79,96036,293,1321,344,44,0,44,4345,0,4378,1754,360,1,10,10,5000,4500,0,999999999,20,0,0,88,0.2,0,0 +2013,7,6,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,8,87,95721,56,1321,340,5,0,5,467,0,470,188,59,0,10,10,5000,5182,0,999999999,21,0,0,88,0.2,0,0 +2013,7,6,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,7,82,95721,0,286,330,0,0,0,0,0,0,0,270,1.5,9,9,6000,6096,0,999999999,19,0,0,88,0.2,0,0 +2013,7,6,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9.1,7.5,90,96020,0,0,326,0,0,0,0,0,0,0,137,1,9,9,4000,6000,9,999999999,20,0,0,88,0.2,0,0 +2013,7,6,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,7,87,95702,0,0,325,0,0,0,0,0,0,0,50,1.5,9,9,5000,6706,9,999999999,19,0,0,88,0.2,0,0 +2013,7,6,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,7,93,95683,0,0,321,0,0,0,0,0,0,0,350,1.5,9,9,4000,6401,9,999999999,19,0,0,88,0.2,0,0 +2013,7,6,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.7,6.1,90,95927,0,0,318,0,0,0,0,0,0,0,330,2.1,9,9,3000,6300,9,999999999,17,0,0,88,0.2,0,0 +2013,7,6,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,6,93,95663,0,0,315,0,0,0,0,0,0,0,79,1,9,9,2000,6401,9,999999999,17,0,0,88,0.2,0,0 +2013,7,7,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,7,93,95683,0,0,321,0,0,0,0,0,0,0,30,1.5,9,9,3000,6401,9,999999999,19,0,0,88,0.2,0,0 +2013,7,7,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,5.6,91,95800,0,0,315,0,0,0,0,0,0,0,168,1,9,9,900,5400,9,999999999,17,0,0,88,0.2,0,0 +2013,7,7,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,5,93,95644,0,0,309,0,0,0,0,0,0,0,310,1.5,9,9,1500,5486,9,999999999,16,0,0,88,0.2,0,0 +2013,7,7,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,4,93,95624,0,0,304,0,0,0,0,0,0,0,190,0,9,9,1200,5486,9,999999999,14,0,0,88,0.2,0,0 +2013,7,7,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5.7,4.7,93,95718,0,0,301,0,0,0,0,0,0,0,100,1,8,8,300,5400,9,999999999,15,0,0,88,0.2,0,0 +2013,7,7,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5,3,87,95624,0,0,303,0,0,0,0,0,0,0,250,1.5,9,9,1100,5486,9,999999999,13,0,0,88,0.2,0,0 +2013,7,7,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4,3,93,95604,0,0,282,0,0,0,0,0,0,0,125,1,5,5,1200,5486,9,999999999,13,0,0,88,0.2,0,0 +2013,7,7,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4,2.8,92,95798,0,0,298,0,0,0,0,0,0,0,50,1.5,9,9,300,5400,9,999999999,13,0,0,88,0.2,0,0 +2013,7,7,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4,4,100,95604,159,832,300,28,0,28,2727,0,2746,1018,20,0,9,9,1500,6706,9,999999999,14,0,0,88,0.2,0,0 +2013,7,7,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,5,93,95644,382,1321,309,107,9,105,11996,479,11742,3769,330,1.5,9,9,3000,6706,9,999999999,16,0,0,88,0.2,0,0 +2013,7,7,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.5,6.5,87,95980,559,1321,322,184,18,176,20534,1276,19799,6584,30,1.5,9,9,4000,7500,9,999999999,18,0,0,88,0.2,0,0 +2013,7,7,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,7,76,95740,680,1321,334,238,42,217,26855,3331,24536,8502,360,1.5,9,9,6000,7620,9,999999999,19,0,0,88,0.2,0,0 +2013,7,7,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,7,71,95759,735,1321,339,264,45,239,29798,3638,27142,9523,161,0.5,9,9,6000,7620,9,999999999,19,0,0,88,0.2,0,0 +2013,7,7,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13.6,7,64,95898,720,1321,347,257,44,233,29033,3566,26462,9255,267,0.5,9,9,8000,7500,9,999999999,19,0,0,88,0.2,0,0 +2013,7,7,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,5,51,95815,638,1321,351,220,41,200,24752,3149,22660,7764,99,0.5,9,9,8000,7620,9,999999999,15,0,0,88,0.2,0,0 +2013,7,7,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,5,48,95834,493,1321,356,155,15,149,17277,981,16743,5481,190,1.5,9,9,8000,6706,9,999999999,15,0,0,88,0.2,0,0 +2013,7,7,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14.9,7.8,62,95884,295,1321,354,73,0,73,7203,0,7257,2603,170,2.1,9,9,8000,6600,9,999999999,20,0,0,88,0.2,0,0 +2013,7,7,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,8,72,95778,58,1321,345,8,0,8,795,0,801,306,170,1.5,9,9,8000,6706,9,999999999,21,0,0,88,0.2,0,0 +2013,7,7,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,8,72,95778,0,296,345,0,0,0,0,0,0,0,251,1,9,9,6000,6706,9,999999999,21,0,0,88,0.2,0,0 +2013,7,7,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,10.6,7.5,81,95851,0,0,315,0,0,0,0,0,0,0,100,1,5,5,5000,6706,9,999999999,20,0,0,88,0.2,0,0 +2013,7,7,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,8,82,95740,0,0,317,0,0,0,0,0,0,0,130,2.6,5,5,5000,6096,9,999999999,21,0,0,88,0.2,0,0 +2013,7,7,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,7,82,95721,0,0,294,0,0,0,0,0,0,0,130,1.5,0,0,5000,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,7,7,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.5,6.1,91,95857,0,0,295,0,0,0,0,0,0,0,360,1,3,3,200,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,7,7,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8,6,87,95683,0,0,297,0,0,0,0,0,0,0,170,1.5,3,3,3000,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,7,8,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,5,4,93,95624,0,0,313,0,0,0,0,0,0,0,95,1,10,10,250,30,0,999999999,14,0,0,88,0.2,0,0 +2013,7,8,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,5.1,4.6,97,95819,0,0,314,0,0,0,0,0,0,0,170,1.5,10,10,200,30,0,999999999,15,0,0,88,0.2,0,0 +2013,7,8,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,4.6,3.8,95,95712,0,0,311,0,0,0,0,0,0,0,283,1,10,10,200,30,9,999999999,14,0,0,88,0.2,0,0 +2013,7,8,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,4,3,93,95604,0,0,307,0,0,0,0,0,0,0,146,0.5,10,10,200,30,0,999999999,13,0,0,88,0.2,0,0 +2013,7,8,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,4.7,4.2,97,95830,0,0,311,0,0,0,0,0,0,0,160,2.1,10,10,200,30,0,999999999,14,0,0,88,0.2,0,0 +2013,7,8,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,4,4,100,95604,0,0,308,0,0,0,0,0,0,0,270,1.5,10,10,300,30,0,999999999,14,0,0,88,0.2,0,0 +2013,7,8,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,4,4,100,95604,0,0,308,0,0,0,0,0,0,0,290,1.5,10,10,300,30,0,999999999,14,0,0,88,0.2,0,0 +2013,7,8,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,3.9,3,94,96003,0,0,307,0,0,0,0,0,0,0,330,1.5,10,10,300,30,0,919999999,13,0,0,88,0.2,0,0 +2013,7,8,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,4.4,3.5,94,95814,160,836,309,21,0,21,2061,0,2075,808,203,1.5,10,10,350,30,9,999999999,13,0,0,88,0.2,0,0 +2013,7,8,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,5,4,93,95624,383,1321,313,88,0,88,8766,0,8834,3344,320,1.5,10,10,400,61,0,919999999,14,0,0,88,0.2,0,0 +2013,7,8,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5.7,4.9,95,96162,561,1321,317,113,0,113,11366,0,11460,4776,350,1.5,10,10,400,120,0,919999999,16,0,0,88,0.2,0,0 +2013,7,8,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,6,100,95644,682,1321,319,146,0,146,14875,0,15004,6405,50,1.5,10,10,800,61,0,919999999,17,0,0,88,0.2,0,0 +2013,7,8,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,6,93,95663,737,1321,324,162,0,162,18846,12,18918,7195,260,0.5,10,10,3000,91,0,919999999,17,0,0,88,0.2,0,0 +2013,7,8,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7.2,5.5,89,96031,723,1321,324,158,0,158,18386,5,18461,6997,24,1,10,10,3000,120,0,919999999,16,0,0,88,0.2,0,0 +2013,7,8,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,6,87,95683,640,1321,329,134,0,134,13649,0,13766,5830,250,1.5,10,10,3000,122,0,919999999,17,0,0,88,0.2,0,0 +2013,7,8,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,7,93,95683,495,1321,321,155,28,145,17345,1794,16262,5386,247,1,9,9,3000,122,0,919999999,19,0,0,88,0.2,0,0 +2013,7,8,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.5,6.3,86,95990,298,1321,322,74,0,74,7295,0,7350,2633,360,0.5,9,9,3000,7500,0,919999999,18,0,0,88,0.2,0,0 +2013,7,8,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,6,87,95683,61,1321,285,17,0,17,1597,0,1608,539,270,2.1,0,0,3000,77777,0,919999999,17,0,0,88,0.2,0,0 +2013,7,8,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,6,87,95683,0,307,285,0,0,0,0,0,0,0,10,2.1,0,0,3000,77777,0,919999999,17,0,0,88,0.2,0,0 +2013,7,8,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.5,5.4,93,96036,0,0,295,0,0,0,0,0,0,0,330,1.5,5,5,800,77777,0,999999999,16,0,0,88,0.2,0,0 +2013,7,8,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,5,93,95644,0,0,309,0,0,0,0,0,0,0,60,1.5,9,9,200,91,0,999999999,16,0,0,88,0.2,0,0 +2013,7,8,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,5,93,95644,0,0,309,0,0,0,0,0,0,0,240,1,9,9,1400,61,0,999999999,16,0,0,88,0.2,0,0 +2013,7,8,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.5,4.4,93,96148,0,0,287,0,0,0,0,0,0,0,360,1,4,4,300,61,0,999999999,15,0,0,88,0.2,0,0 +2013,7,8,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,5,4,93,95624,0,0,313,0,0,0,0,0,0,0,186,1,10,10,200,30,0,999999999,14,0,0,88,0.2,0,0 +2013,7,9,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,4,3,93,95604,0,0,307,0,0,0,0,0,0,0,43,0.5,10,10,300,30,0,999999999,13,0,0,88,0.2,0,0 +2013,7,9,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,4.3,3.5,95,96247,0,0,309,0,0,0,0,0,0,0,30,2.6,10,10,200,30,0,999999999,14,0,0,88,0.2,0,0 +2013,7,9,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,5,4,93,95624,0,0,313,0,0,0,0,0,0,0,225,1,10,10,200,30,0,999999999,14,0,0,88,0.2,0,0 +2013,7,9,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,4,3,93,95604,0,0,307,0,0,0,0,0,0,0,260,2.1,10,10,200,30,0,999999999,13,0,0,88,0.2,0,0 +2013,7,9,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4.2,3.3,94,96169,0,0,286,0,0,0,0,0,0,0,110,1.5,6,6,400,180,0,999999999,13,0,0,88,0.2,0,0 +2013,7,9,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,4,93,95624,0,0,304,0,0,0,0,0,0,0,148,1,9,9,2000,152,0,999999999,14,0,0,88,0.2,0,0 +2013,7,9,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,4,3,93,95604,0,0,307,0,0,0,0,0,0,0,242,1.2,10,10,1400,152,0,999999999,13,0,0,88,0.2,0,0 +2013,7,9,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4.6,4.3,98,96272,0,0,296,0,0,0,0,0,0,0,30,1.5,8,8,800,5400,0,999999999,15,0,0,88,0.2,0,0 +2013,7,9,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3,2,93,95584,161,841,293,29,0,29,2782,0,2801,1037,275,0.5,9,9,2000,4877,0,999999999,12,0,0,88,0.2,0,0 +2013,7,9,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5,4,93,95624,384,1322,304,109,16,104,12133,807,11672,3762,280,1.5,9,9,3000,4572,0,999999999,14,0,0,88,0.2,0,0 +2013,7,9,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.7,5.4,85,96314,563,1322,302,313,330,173,35122,23956,19473,6526,300,1.5,6,6,5000,4200,0,999999999,16,0,0,88,0.2,0,0 +2013,7,9,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,11,6,71,95740,683,1322,310,460,559,170,52836,40083,19669,7214,240,0.5,3,3,8000,4200,0,999999999,17,0,0,88,0.2,0,0 +2013,7,9,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,6,62,95778,739,1322,353,162,31,145,19091,2100,17115,6606,170,1.5,10,10,8000,6096,0,999999999,17,0,0,88,0.2,0,0 +2013,7,9,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14.6,5.3,54,96191,725,1322,350,260,44,236,29351,3586,26785,9360,170,1.5,9,9,8000,6000,0,999999999,16,0,0,88,0.2,0,0 +2013,7,9,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,6,55,95815,643,1322,352,222,40,202,24932,3126,22836,7839,160,4.6,9,9,8000,7620,0,999999999,17,0,0,88,0.2,0,0 +2013,7,9,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,7,63,95797,498,1322,349,156,14,151,17422,964,16890,5545,170,2.6,9,9,8000,5791,0,999999999,19,0,0,88,0.2,0,0 +2013,7,9,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13.7,6.3,61,96146,300,1322,347,75,0,75,8376,1,8403,2665,160,2.1,9,9,8000,5100,0,999999999,18,0,0,88,0.2,0,0 +2013,7,9,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,6,62,95778,63,1322,343,9,0,9,856,0,862,328,170,2.1,9,9,8000,5182,0,999999999,17,0,0,88,0.2,0,0 +2013,7,9,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,7,71,95759,0,319,339,0,0,0,0,0,0,0,160,2.1,9,9,8000,5182,0,999999999,19,0,0,88,0.2,0,0 +2013,7,9,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11.5,7,74,96227,0,0,337,0,0,0,0,0,0,0,254,1,9,9,8000,5100,9,999999999,19,0,0,88,0.2,0,0 +2013,7,9,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,10.2,6.5,78,95965,0,0,318,0,0,0,0,0,0,0,265,1,7,7,8999,5100,9,999999999,18,0,0,88,0.2,0,0 +2013,7,9,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,9,6,81,95702,0,0,333,0,0,0,0,0,0,0,319,1,10,10,8999,5486,9,999999999,17,0,0,88,0.2,0,0 +2013,7,9,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.7,6.2,79,96240,0,0,337,0,0,0,0,0,0,0,20,1.5,10,10,7000,5400,9,999999999,18,0,0,88,0.2,0,0 +2013,7,9,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,6,76,95721,0,0,338,0,0,0,0,0,0,0,70,2.6,10,10,7000,5486,9,999999999,17,0,0,88,0.2,0,0 +2013,7,10,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,6,81,95702,0,0,324,0,0,0,0,0,0,0,310,2.1,9,9,7000,5486,9,999999999,17,0,0,88,0.2,0,0 +2013,7,10,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.2,5.4,82,96116,0,0,320,0,0,0,0,0,0,0,120,1.5,9,9,7000,5400,9,999999999,16,0,0,88,0.2,0,0 +2013,7,10,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,5,81,95683,0,0,327,0,0,0,0,0,0,0,266,1,10,10,7000,5486,9,999999999,16,0,0,88,0.2,0,0 +2013,7,10,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,5,81,95683,0,0,318,0,0,0,0,0,0,0,119,1,9,9,7000,4877,9,999999999,16,0,0,88,0.2,0,0 +2013,7,10,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.4,5.3,81,96064,0,0,321,0,0,0,0,0,0,0,360,1,9,9,7000,4800,9,999999999,16,0,0,88,0.2,0,0 +2013,7,10,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,6,87,95683,0,0,319,0,0,0,0,0,0,0,20,0.5,9,9,5000,4877,9,999999999,17,0,0,88,0.2,0,0 +2013,7,10,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,5,87,95663,0,0,314,0,0,0,0,0,0,0,68,0.5,9,9,6000,5486,9,999999999,16,0,0,88,0.2,0,0 +2013,7,10,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,4.4,84,96074,0,0,322,0,0,0,0,0,0,0,90,1.5,10,10,8000,5400,9,999999999,15,0,0,88,0.2,0,0 +2013,7,10,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,5,87,95663,162,846,314,29,0,29,2800,0,2820,1046,183,1,9,9,8000,5486,9,999999999,16,0,0,88,0.2,0,0 +2013,7,10,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,6,87,95683,386,1322,319,109,11,105,12143,588,11818,3805,50,2.1,9,9,6000,5486,9,999999999,17,0,0,88,0.2,0,0 +2013,7,10,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.5,6.4,81,96189,564,1322,336,113,0,113,11428,0,11523,4811,360,1,10,10,8000,4800,9,999999999,18,0,0,88,0.2,0,0 +2013,7,10,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,7,82,95721,685,1322,330,241,41,219,27132,3283,24842,8615,260,2.1,9,9,8000,7620,9,999999999,19,0,0,88,0.2,0,0 +2013,7,10,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13.3,6.7,64,96252,741,1322,345,267,45,242,30144,3676,27450,9642,50,1,9,9,8000,4800,9,999999999,18,0,0,88,0.2,0,0 +2013,7,10,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13.3,6.7,64,96252,727,1322,345,260,91,210,29678,7033,24097,8690,216,1,9,9,8000,4800,9,999999999,18,0,0,88,0.2,0,0 +2013,7,10,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14,7,63,95797,645,1322,329,410,192,316,44411,18563,34477,9835,50,1.5,5,5,8000,4800,9,999999999,19,0,0,88,0.2,0,0 +2013,7,10,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,8,67,95797,500,1322,350,157,58,135,17677,3647,15257,5167,270,2.1,9,9,8000,5486,9,999999999,21,0,0,88,0.2,0,0 +2013,7,10,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13.4,8.4,72,96301,302,1322,348,76,0,76,8443,3,8470,2691,340,1.5,9,9,8000,4800,9,999999999,22,0,0,88,0.2,0,0 +2013,7,10,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,8,72,95778,65,1322,345,9,0,9,885,0,891,340,80,1.5,9,9,8000,5182,9,999999999,21,0,0,88,0.2,0,0 +2013,7,10,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,7,82,95721,0,330,311,0,0,0,0,0,0,0,90,1.5,5,5,8000,7620,9,999999999,19,0,0,88,0.2,0,0 +2013,7,10,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.2,6.3,77,96457,0,0,311,0,0,0,0,0,0,0,100,1.5,5,5,8000,7620,9,999999999,18,0,0,88,0.2,0,0 +2013,7,10,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9,6,81,95702,0,0,301,0,0,0,0,0,0,0,300,1.5,3,3,7000,7620,9,999999999,17,0,0,88,0.2,0,0 +2013,7,10,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,9,7,87,95702,0,0,302,0,0,0,0,0,0,0,196,0,3,3,8000,7620,9,999999999,19,0,0,88,0.2,0,0 +2013,7,10,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.4,88,96541,0,0,293,0,0,0,0,0,0,0,10,2.6,3,3,3000,7620,9,999999999,16,0,0,88,0.2,0,0 +2013,7,10,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,5,87,95663,0,0,280,0,0,0,0,0,0,0,20,1.5,0,0,5000,77777,9,999999999,16,0,0,88,0.2,0,0 +2013,7,11,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,4,93,95624,0,0,271,0,0,0,0,0,0,0,252,1,0,0,3000,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,7,11,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,8,5.8,86,96830,0,0,284,0,0,0,0,0,0,0,335,0,0,0,5000,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,7,11,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5,4,93,95624,0,0,271,0,0,0,0,0,0,0,260,2.6,0,0,2000,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,7,11,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4,4,100,95604,0,0,283,0,0,0,0,0,0,0,240,1.5,5,5,900,77777,0,999999999,14,0,0,88,0.2,0,0 +2013,7,11,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.8,99,96607,0,0,280,0,0,0,0,0,0,0,20,2.1,4,4,200,77777,0,999999999,14,0,0,88,0.2,0,0 +2013,7,11,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3,3,100,95584,0,0,294,0,0,0,0,0,0,0,350,2.1,9,9,1500,610,0,999999999,13,0,0,88,0.2,0,0 +2013,7,11,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4,3,93,95604,0,0,282,0,0,0,0,0,0,0,350,2.1,5,5,2000,610,0,999999999,13,0,0,88,0.2,0,0 +2013,7,11,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,2,1.1,94,96738,0,0,257,0,0,0,0,0,0,0,315,0.5,0,0,700,610,0,999999999,11,0,0,88,0.2,0,0 +2013,7,11,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3,2,93,95584,164,852,261,57,91,45,6235,193,5014,1462,8,0,0,0,2000,77777,0,999999999,12,0,0,88,0.2,0,0 +2013,7,11,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5,4,93,95624,387,1322,271,213,438,84,24201,20322,9628,3250,300,1.5,0,0,1500,77777,0,999999999,14,0,0,88,0.2,0,0 +2013,7,11,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.9,5.8,87,96828,566,1322,284,362,635,90,42750,35482,10626,3977,360,0,0,0,5000,77777,0,999999999,17,0,0,88,0.2,0,0 +2013,7,11,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,7,71,95759,688,1322,302,468,680,115,55575,42202,13678,5290,332,1,0,0,8000,77777,0,999999999,19,0,0,88,0.2,0,0 +2013,7,11,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,14,8,67,95797,744,1322,330,478,563,161,55747,38833,18896,7217,85,1,5,5,8000,77777,0,999999999,21,0,0,88,0.2,0,0 +2013,7,11,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,14.4,7.7,64,96688,730,1322,313,506,701,119,60310,43916,14190,5567,160,2.6,0,0,8000,77777,0,999999999,20,0,0,88,0.2,0,0 +2013,7,11,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,6,51,95834,648,1322,332,431,683,96,51454,40197,11491,4433,200,1.5,3,3,8000,77777,0,999999999,17,0,0,88,0.2,0,0 +2013,7,11,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,6,51,95834,503,1322,332,305,543,99,35296,30119,11442,4099,180,3.6,3,3,8000,77777,0,999999999,17,0,0,88,0.2,0,0 +2013,7,11,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15.7,6.1,53,96627,305,1322,317,149,342,70,16763,11433,7908,2558,210,2.1,0,0,8000,77777,0,999999999,17,0,0,88,0.2,0,0 +2013,7,11,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,13,7,67,95778,68,1322,325,17,0,17,1643,0,1654,564,180,3.1,5,5,8000,77777,0,999999999,19,0,0,88,0.2,0,0 +2013,7,11,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,12,7,71,95759,0,342,323,0,0,0,0,0,0,0,220,1.5,6,6,8000,77777,0,999999999,19,0,0,88,0.2,0,0 +2013,7,11,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,5.9,79,96735,0,0,290,0,0,0,0,0,0,0,330,1,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,7,11,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,9,6,81,95702,0,0,317,0,0,0,0,0,0,0,340,2.1,8,8,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,7,11,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,9,5,76,95702,0,0,311,0,0,0,0,0,0,0,248,0.5,7,7,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2013,7,11,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,4,83,96691,0,0,278,0,0,0,0,0,0,0,360,0,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,7,11,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5,3,87,95624,0,0,270,0,0,0,0,0,0,0,40,2.1,0,0,5000,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,7,12,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,4,87,95644,0,0,275,0,0,0,0,0,0,0,118,1,0,0,3000,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,7,12,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.4,4.2,92,96552,0,0,273,0,0,0,0,0,0,0,20,1.5,0,0,200,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,7,12,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3,2,93,95584,0,0,261,0,0,0,0,0,0,0,320,0,0,0,1100,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,7,12,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3,1,87,95584,0,0,260,0,0,0,0,0,0,0,170,1.5,0,0,1200,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,7,12,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.2,-0.1,91,96411,0,0,268,0,0,0,0,0,0,0,330,1.5,5,5,200,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,7,12,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1,0,93,95544,0,0,267,0,0,0,0,0,0,0,40,2.1,5,5,1100,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,7,12,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,2,1,93,95564,0,0,272,0,0,0,0,0,0,0,233,0,5,5,800,77777,0,999999999,11,0,0,88,0.2,0,0 +2013,7,12,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1,0.5,96,96444,0,0,263,0,0,0,0,0,0,0,260,1.5,3,3,300,77777,0,999999999,10,0,0,88,0.2,0,0 +2013,7,12,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0,-1,92,95523,165,858,258,57,67,48,6241,358,5337,1529,280,1.5,3,3,200,77777,0,999999999,9,0,0,88,0.2,0,0 +2013,7,12,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,2,2,100,95564,389,1322,258,215,444,84,24468,20943,9605,3246,40,1.5,0,0,3000,77777,0,999999999,12,0,0,88,0.2,0,0 +2013,7,12,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6.4,5.3,93,96525,568,1322,278,364,638,90,43020,35799,10619,3978,40,2.1,0,0,4000,77777,0,999999999,16,0,0,88,0.2,0,0 +2013,7,12,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,7,76,95740,690,1322,298,470,729,90,56888,42312,10918,4294,52,1,0,0,6000,77777,0,999999999,19,0,0,88,0.2,0,0 +2013,7,12,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,7,67,95778,746,1322,307,521,761,92,63536,44841,11194,4479,178,0.5,0,0,6000,77777,0,999999999,19,0,0,88,0.2,0,0 +2013,7,12,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.2,5.5,52,96448,733,1322,314,510,759,89,62217,44917,10943,4362,180,3.1,0,0,8000,77777,0,999999999,16,0,0,88,0.2,0,0 +2013,7,12,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,3,39,95852,651,1322,326,438,703,93,52584,41822,11145,4309,160,4.1,1,1,8000,77777,0,999999999,13,0,0,88,0.2,0,0 +2013,7,12,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,4,42,95852,506,1322,327,311,554,99,35971,31266,11454,4108,210,1.5,1,1,8000,77777,0,999999999,14,0,0,88,0.2,0,0 +2013,7,12,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17.2,2.5,37,96419,308,1322,320,152,352,70,17122,12352,7904,2562,310,2.1,0,0,8000,77777,0,999999999,12,0,0,88,0.2,0,0 +2013,7,12,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,4,48,95815,70,1322,322,19,8,19,2126,0,2083,608,250,1.5,2,2,8000,77777,0,999999999,14,0,0,88,0.2,0,0 +2013,7,12,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,12,6,67,95759,0,354,319,0,0,0,0,0,0,0,200,2.1,5,5,8000,77777,0,999999999,17,0,0,88,0.2,0,0 +2013,7,12,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.3,6.5,77,96497,0,0,295,0,0,0,0,0,0,0,170,1.5,0,0,8000,77777,9,999999999,18,0,0,88,0.2,0,0 +2013,7,12,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,7,82,95721,0,0,294,0,0,0,0,0,0,0,140,3.6,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,7,12,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,5,81,95683,0,0,284,0,0,0,0,0,0,0,100,1,0,0,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2013,7,12,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5.7,3.1,83,96643,0,0,273,0,0,0,0,0,0,0,360,0.5,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,7,12,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,3,87,95624,0,0,270,0,0,0,0,0,0,0,175,1,0,0,6000,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,7,13,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4,3,93,95604,0,0,266,0,0,0,0,0,0,0,340,1,0,0,5000,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,7,13,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,4.2,2.7,90,96679,0,0,267,0,0,0,0,0,0,0,110,0.5,0,0,5000,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,7,13,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4,1,81,95604,0,0,264,0,0,0,0,0,0,0,246,1,0,0,5000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,7,13,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3,1,87,95584,0,0,260,0,0,0,0,0,0,0,170,1,0,0,5000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,7,13,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,2.7,1.4,91,96705,0,0,260,0,0,0,0,0,0,0,360,1,0,0,3000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,7,13,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,1,0,93,95544,0,0,291,0,0,0,0,0,0,0,310,1.5,10,10,3000,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,7,13,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,2,0,87,95564,0,0,256,0,0,0,0,0,0,0,216,1,0,0,3000,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,7,13,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.5,0.8,89,96805,0,0,258,0,0,0,0,0,0,0,10,2.1,0,0,3000,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,7,13,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3,1,87,95584,166,865,260,58,72,49,6393,396,5421,1551,10,2.6,0,0,3000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,7,13,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4,1,81,95604,391,1322,264,217,377,105,24254,20224,11820,3822,230,2.6,0,0,4000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,7,13,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.5,4.1,74,96840,570,1322,285,367,643,89,43388,36370,10575,3965,180,4.6,0,0,5000,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,7,13,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,4,62,95740,692,1322,295,475,740,87,57651,43629,10631,4185,280,1.5,0,0,7000,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,7,13,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,14,5,55,95797,749,1322,322,517,739,99,62778,45012,12007,4790,289,1,3,3,7000,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,7,13,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,15.8,3.8,45,96695,735,1322,315,514,743,101,62191,45795,12256,4860,112,1,0,0,7000,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,7,13,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,17,2,36,95852,653,1322,332,436,625,127,51068,41167,14968,5633,68,0.5,3,3,7000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,7,13,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,18,3,37,95870,508,1322,343,292,450,119,33337,27618,13615,4753,197,1,5,5,7000,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,7,13,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17.7,3.4,38,96589,310,1322,342,143,281,77,16005,10569,8636,2754,360,0,5,5,7000,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,7,13,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17,1,34,95852,72,1322,331,20,6,19,2190,0,2159,629,30,2.1,3,3,7000,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,7,13,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,1,39,95815,0,367,315,0,0,0,0,0,0,0,40,2.1,1,1,7000,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,7,13,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,10.7,0.9,51,96656,0,0,303,0,0,0,0,0,0,0,158,1,3,3,7000,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,7,13,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,11,2,54,95740,0,0,306,0,0,0,0,0,0,0,174,1,3,3,7000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,7,13,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,8,1,61,95683,0,0,292,0,0,0,0,0,0,0,107,0.5,3,3,7000,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,7,13,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5.9,1.2,72,96675,0,0,272,0,0,0,0,0,0,0,30,2.1,0,0,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,7,13,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,2,75,95644,0,0,273,0,0,0,0,0,0,0,140,1,0,0,6000,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,7,14,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,1,75,95624,0,0,268,0,0,0,0,0,0,0,221,0.5,0,0,6000,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,7,14,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.5,1.2,85,96646,0,0,262,0,0,0,0,0,0,0,30,1.5,0,0,5000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,7,14,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3,1,87,95584,0,0,260,0,0,0,0,0,0,0,289,1,0,0,5000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,7,14,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3,1,87,95584,0,0,260,0,0,0,0,0,0,0,278,0,0,0,5000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,7,14,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,2.9,0.9,87,96596,0,0,260,0,0,0,0,0,0,0,360,0.5,0,0,5000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,7,14,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,2,0,87,95564,0,0,256,0,0,0,0,0,0,0,6,1,0,0,5000,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,7,14,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,1,0,93,95544,0,0,252,0,0,0,0,0,0,0,30,2.1,0,0,4000,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,7,14,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.4,0.1,79,96653,0,0,272,0,0,0,0,0,0,0,30,2.1,3,3,5000,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,7,14,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,3,0,81,95584,168,872,271,59,70,50,6424,445,5467,1566,22,0,3,3,5000,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,7,14,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,1,70,95644,393,1322,272,218,379,106,24439,20424,11873,3843,196,1,0,0,7000,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,7,14,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.9,1.9,57,96688,573,1322,288,370,650,88,43866,37232,10494,3939,150,1.5,0,0,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,7,14,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,13,2,47,95778,695,1322,311,478,744,87,58063,44336,10580,4168,170,2.1,2,2,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,7,14,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,16,2,39,95834,751,1322,320,530,781,86,65109,47032,10626,4259,162,0.5,1,1,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,7,14,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,17,2.4,37,96510,738,1322,319,518,773,86,63449,46339,10613,4239,51,1,0,0,8000,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,7,14,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,18,1,32,95870,656,1322,322,445,709,93,53447,42807,11205,4338,132,1,0,0,8000,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,7,14,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,19,1,30,95888,511,1322,326,317,558,102,36725,32516,11798,4225,162,1,0,0,8000,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,7,14,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18.9,3.4,36,96440,313,1322,329,156,346,74,17507,12705,8305,2680,190,1.5,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,7,14,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,4,42,95852,75,1322,327,21,11,20,2286,0,2220,648,230,1.5,1,1,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,7,14,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,14,4,51,95797,0,379,321,0,0,0,0,0,0,0,249,0.5,3,3,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,7,14,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,11.8,4.6,61,96526,0,0,299,0,0,0,0,0,0,0,43,0,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,7,14,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,13,4,54,95778,0,0,317,0,0,0,0,0,0,0,150,2.6,3,3,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,7,14,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,10,4,66,95721,0,0,308,0,0,0,0,0,0,0,151,1,5,5,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,7,14,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,6.9,3.2,77,96535,0,0,278,0,0,0,0,0,0,0,40,2.6,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,7,14,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,7,2,70,95663,0,0,296,0,0,0,0,0,0,0,50,2.1,6,6,8000,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,7,15,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,7,4,81,95663,0,0,306,0,0,0,0,0,0,0,30,2.1,8,8,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,7,15,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,6.1,2.7,79,96472,0,0,274,0,0,0,0,0,0,0,218,1,0,0,8000,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,7,15,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,2,81,95624,0,0,269,0,0,0,0,0,0,0,131,1,0,0,8000,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,7,15,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3,1,87,95584,0,0,260,0,0,0,0,0,0,0,166,1,0,0,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,7,15,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3.9,1.6,85,96324,0,0,264,0,0,0,0,0,0,0,170,2.1,0,0,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,7,15,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3,1,87,95584,0,0,260,0,0,0,0,0,0,0,215,1,0,0,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,7,15,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,2,0,87,95564,0,0,256,0,0,0,0,0,0,0,60,1.5,0,0,5000,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,7,15,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,2.7,1.1,89,96309,0,0,259,0,0,0,0,0,0,0,89,1,0,0,4000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,7,15,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4,2,87,95604,170,881,265,60,99,48,6628,459,5246,1529,300,1.5,0,0,5000,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,7,15,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,4,76,95683,395,1322,283,219,447,85,24928,21102,9748,3304,50,1.5,0,0,5000,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,7,15,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11.2,4.8,65,96306,575,1322,297,370,646,89,43847,36468,10617,3989,360,3.1,0,0,5000,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,7,15,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,14,5,55,95797,698,1322,322,472,711,97,56835,42731,11691,4590,117,1,3,3,5000,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,7,15,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,16,6,51,95834,754,1322,332,526,755,95,64048,45283,11590,4640,221,1,3,3,5000,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,7,15,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,18.6,4,38,96056,741,1322,328,519,769,88,63533,45896,10805,4318,168,1,0,0,5000,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,7,15,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,4,35,95906,659,1322,334,446,706,93,53489,41978,11235,4357,170,2.1,0,0,5000,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,7,15,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,21,5,35,95924,514,1322,340,318,564,98,36857,31727,11437,4126,220,2.6,0,0,5000,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,7,15,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,20.5,4.1,34,95948,316,1322,337,158,361,71,17782,12956,8072,2629,210,1.5,0,0,5000,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,7,15,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,4,37,95888,78,1322,330,21,13,21,2366,0,2289,668,160,1.5,0,0,5000,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,7,15,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,4,42,95852,0,392,327,0,0,0,0,0,0,0,150,2.6,1,1,5000,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,7,15,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,14.5,3.5,48,96047,0,0,309,0,0,0,0,0,0,0,326,1,0,0,5000,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,7,15,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,12,4,58,95759,0,0,315,0,0,0,0,0,0,0,31,0.5,4,4,5000,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,7,15,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,10,3,62,95721,0,0,305,0,0,0,0,0,0,0,334,0,4,4,5000,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,7,15,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9.2,3.1,66,96079,0,0,287,0,0,0,0,0,0,0,360,1,0,0,5000,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,7,15,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,6,3,81,95644,0,0,301,0,0,0,0,0,0,0,350,2.1,8,8,5000,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,7,16,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,3,81,95644,0,0,274,0,0,0,0,0,0,0,70,2.1,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,7,16,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,5.8,2.5,79,96022,0,0,273,0,0,0,0,0,0,0,42,0,0,0,8000,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,7,16,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4,2,87,95604,0,0,265,0,0,0,0,0,0,0,229,1,0,0,7000,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,7,16,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4,2,87,95604,0,0,265,0,0,0,0,0,0,0,258,1,0,0,6000,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,7,16,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3.4,1.3,86,95908,0,0,262,0,0,0,0,0,0,0,310,1.5,0,0,6000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,7,16,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3,1,87,95584,0,0,260,0,0,0,0,0,0,0,82,0.5,0,0,6000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,7,16,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,2,0,87,95564,0,0,256,0,0,0,0,0,0,0,280,1.5,0,0,6000,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,7,16,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.9,0.3,89,95944,0,0,256,0,0,0,0,0,0,0,360,1.5,0,0,2000,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,7,16,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3,2,93,95584,172,889,261,61,101,48,6746,544,5316,1550,270,0.5,0,0,6000,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,7,16,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,4,76,95683,397,1322,283,221,449,86,25140,21326,9784,3321,20,1.5,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,7,16,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11.4,4.8,64,95923,578,1322,297,372,648,89,44130,36644,10629,3998,20,1.5,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,7,16,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,14,5,55,95797,700,1322,322,474,712,97,57157,42869,11709,4601,330,0.5,3,3,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,7,16,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,16,5,48,95834,757,1322,328,531,768,91,64947,46002,11222,4501,118,0.5,2,2,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,7,16,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,20,4.2,35,95703,744,1322,334,522,770,88,63875,45960,10841,4336,12,0,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,7,16,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,21,1,26,95924,663,1322,335,451,713,94,54153,43164,11282,4376,11,1,0,0,8000,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,7,16,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,22,5,33,95942,517,1322,345,320,567,99,37179,31977,11475,4145,125,1,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,7,16,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,21.2,7.4,41,95724,319,1322,344,159,347,75,17845,12523,8473,2743,210,2.6,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,7,16,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,7,52,95852,80,1322,338,22,11,21,2415,0,2345,686,180,3.6,3,3,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,7,16,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,2,36,95852,0,406,318,0,0,0,0,0,0,0,160,3.1,0,0,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,7,16,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15.3,0.6,37,95854,0,0,315,0,0,0,0,0,0,0,140,3.1,1,1,8000,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,7,16,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,13,1,44,95778,0,0,306,0,0,0,0,0,0,0,140,2.1,1,1,8000,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,7,16,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,12,1,47,95759,0,0,306,0,0,0,0,0,0,0,130,2.1,2,2,8000,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,7,16,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8.7,2.1,63,96069,0,0,284,0,0,0,0,0,0,0,360,0.5,0,0,8000,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,7,16,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,2,70,95663,0,0,277,0,0,0,0,0,0,0,3,1,0,0,8000,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,7,17,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,2,75,95644,0,0,273,0,0,0,0,0,0,0,20,1,0,0,7000,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,7,17,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,5.3,2.8,84,96107,0,0,271,0,0,0,0,0,0,0,255,1,0,0,5000,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,7,17,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5,2,81,95624,0,0,269,0,0,0,0,0,0,0,360,1.5,0,0,5000,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,7,17,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3,1,87,95584,0,0,260,0,0,0,0,0,0,0,50,1,0,0,4000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,7,17,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3,0.8,85,96079,0,0,260,0,0,0,0,0,0,0,360,0,0,0,5000,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,7,17,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3,1,87,95584,0,0,260,0,0,0,0,0,0,0,320,1.5,0,0,5000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,7,17,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3,0,81,95584,0,0,259,0,0,0,0,0,0,0,80,2.1,0,0,5000,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,7,17,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,3.7,1.2,84,96150,0,0,263,0,0,0,0,0,0,0,93,0.5,0,0,5000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,7,17,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3,1,87,95584,174,899,260,63,79,52,6847,674,5732,1637,260,1.5,0,0,5000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,7,17,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,3,76,95663,400,1322,278,223,454,86,25421,21799,9793,3329,40,2.1,0,0,6000,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,7,17,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11.4,4.1,61,96301,580,1322,297,375,652,89,44500,37070,10616,3997,30,1.5,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,7,17,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,5,51,95815,703,1322,313,484,744,88,58800,43803,10770,4254,30,1.5,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,7,17,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,4,39,95870,760,1322,325,537,779,89,65834,46697,10907,4382,224,0.5,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,7,17,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.5,4.2,36,96082,748,1322,332,525,772,88,64257,46098,10861,4348,210,2.1,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,7,17,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,5,35,95924,666,1322,340,451,709,94,54111,41959,11290,4389,190,2.6,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,7,17,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,6,40,95906,521,1322,336,322,571,98,37461,31922,11391,4128,190,4.1,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,7,17,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18.7,7.3,47,96096,322,1322,332,161,363,73,18162,12919,8225,2688,160,6.2,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,7,17,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,7,55,95834,83,1322,320,23,15,22,2518,0,2422,708,150,4.6,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,7,17,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,7,59,95815,0,419,315,0,0,0,0,0,0,0,150,2.6,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,7,17,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,7.3,67,96289,0,0,308,0,0,0,0,0,0,0,140,2.6,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2013,7,17,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,7,76,95740,0,0,298,0,0,0,0,0,0,0,190,2.1,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,7,17,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,9,5,76,95702,0,0,311,0,0,0,0,0,0,0,180,2.6,7,7,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2013,7,17,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9.7,5.6,76,96353,0,0,291,0,0,0,0,0,0,0,360,1.5,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,7,17,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,7,4,81,95663,0,0,306,0,0,0,0,0,0,0,94,1,8,8,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,7,18,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,3,87,95624,0,0,270,0,0,0,0,0,0,0,17,0.5,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,7,18,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.5,2.4,86,96374,0,0,267,0,0,0,0,0,0,0,220,1.5,0,0,7000,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,7,18,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,7,3,76,95663,0,0,300,0,0,0,0,0,0,0,130,1.5,7,7,7000,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,7,18,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4,3,93,95604,0,0,266,0,0,0,0,0,0,0,228,1,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,7,18,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,2.5,1.1,90,96324,0,0,259,0,0,0,0,0,0,0,20,2.6,0,0,2000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,7,18,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5,3,87,95624,0,0,282,0,0,0,0,0,0,0,60,2.6,3,3,5000,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,7,18,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6,3,81,95644,0,0,290,0,0,0,0,0,0,0,20,4.1,5,5,6000,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,7,18,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3.9,1.9,87,96286,0,0,291,0,0,0,0,0,0,0,82,1,8,8,8000,4800,9,999999999,12,0,0,88,0.2,0,0 +2013,7,18,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,4,81,95663,176,909,313,33,0,33,3190,0,3213,1184,170,3.6,9,9,7000,5182,9,999999999,14,0,0,88,0.2,0,0 +2013,7,18,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,5,81,95683,402,1323,318,116,11,112,12892,598,12572,4051,190,2.6,9,9,7000,5182,9,999999999,16,0,0,88,0.2,0,0 +2013,7,18,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.4,5,74,96328,583,1323,325,195,75,162,22014,5277,18366,6366,190,1.5,9,9,7000,4800,9,999999999,16,0,0,88,0.2,0,0 +2013,7,18,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,5,66,95740,706,1323,314,453,482,195,51726,36635,22422,8107,260,1.5,5,5,8000,6096,9,999999999,15,0,0,88,0.2,0,0 +2013,7,18,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,13,5,58,95778,764,1323,320,525,658,145,62030,44670,17228,6712,94,1,4,4,8000,6096,9,999999999,15,0,0,88,0.2,0,0 +2013,7,18,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,14.8,5,52,96147,751,1323,334,460,395,236,52204,32237,26887,9562,69,1,6,6,8000,6000,9,999999999,15,0,0,88,0.2,0,0 +2013,7,18,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,15,6,55,95815,669,1323,362,142,0,142,14495,0,14620,6224,106,1,10,10,8000,4572,9,999999999,17,0,0,88,0.2,0,0 +2013,7,18,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,7,59,95815,524,1323,364,102,0,102,10257,0,10341,4286,220,3.1,10,10,8000,4267,9,999999999,19,0,0,88,0.2,0,0 +2013,7,18,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13.7,6.2,60,96051,325,1323,356,51,0,51,5077,0,5116,2055,150,3.6,10,10,8000,4200,9,999999999,17,0,0,88,0.2,0,0 +2013,7,18,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,7,67,95778,86,1323,344,12,0,12,1167,0,1175,447,170,5.7,9,9,8000,3962,9,999999999,19,0,0,88,0.2,0,0 +2013,7,18,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,7,71,95759,0,433,320,0,0,0,0,0,0,0,160,3.6,5,5,8000,4267,9,999999999,19,0,0,88,0.2,0,0 +2013,7,18,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,10.3,6.3,76,96119,0,0,312,0,0,0,0,0,0,0,160,3.1,5,5,8000,4267,9,999999999,18,0,0,88,0.2,0,0 +2013,7,18,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,6,81,95702,0,0,324,0,0,0,0,0,0,0,160,3.1,9,9,8000,5486,9,999999999,17,0,0,88,0.2,0,0 +2013,7,18,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,6,81,95702,0,0,324,0,0,0,0,0,0,0,150,2.1,9,9,8000,5486,9,999999999,17,0,0,88,0.2,0,0 +2013,7,18,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.4,5.4,81,96064,0,0,314,0,0,0,0,0,0,0,170,4.1,8,8,8000,5400,9,999999999,16,0,0,88,0.2,0,0 +2013,7,18,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,5,76,95702,0,0,323,0,0,0,0,0,0,0,150,2.6,9,9,8000,3962,9,999999999,16,0,0,88,0.2,0,0 +2013,7,19,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,5,81,95683,0,0,318,0,0,0,0,0,0,0,160,3.6,9,9,8000,3962,9,999999999,16,0,0,88,0.2,0,0 +2013,7,19,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,5,81,96027,0,0,318,0,0,0,0,0,0,0,150,2.6,9,9,8000,3900,9,999999999,16,0,0,88,0.2,0,0 +2013,7,19,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,5,81,95683,0,0,327,0,0,0,0,0,0,0,170,2.6,10,10,6000,762,9,999999999,16,0,0,88,0.2,0,0 +2013,7,19,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,5,81,95683,0,0,327,0,0,0,0,0,0,0,180,3.1,10,10,6000,762,9,999999999,16,0,0,88,0.2,0,0 +2013,7,19,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.7,5,83,95927,0,0,326,0,0,0,0,0,0,0,160,2.6,10,10,6000,600,9,999999999,16,0,0,88,0.2,0,0 +2013,7,19,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,4,76,95683,0,0,326,0,0,0,0,0,0,0,170,3.6,10,10,6000,610,9,999999999,14,0,0,88,0.2,0,0 +2013,7,19,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,4,81,95663,0,0,322,0,0,0,0,0,0,0,160,3.1,10,10,6000,610,9,999999999,14,0,0,88,0.2,0,0 +2013,7,19,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.5,4.3,80,96055,0,0,324,0,0,0,0,0,0,0,160,3.1,10,10,6000,450,9,999999999,15,0,0,88,0.2,0,0 +2013,7,19,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,4,81,95663,178,919,322,20,0,20,1986,0,2000,799,170,3.6,10,10,7000,457,9,999999999,14,0,0,88,0.2,0,0 +2013,7,19,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,4,76,95683,405,1323,326,71,0,71,7092,0,7148,2897,190,2.6,10,10,8000,457,9,999999999,14,0,0,88,0.2,0,0 +2013,7,19,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.4,4.1,74,96130,586,1323,319,196,76,163,22205,5391,18488,6411,170,1.5,9,9,8000,2100,9,999999999,14,0,0,88,0.2,0,0 +2013,7,19,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,4,71,95702,710,1323,331,154,0,154,15772,0,15909,6815,257,1,10,10,8000,2438,9,999999999,14,0,0,88,0.2,0,0 +2013,7,19,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,5,76,95702,767,1323,332,170,0,170,19900,26,19966,7638,355,0.5,10,10,8000,2438,9,999999999,16,0,0,88,0.2,0,0 +2013,7,19,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,4.9,75,96085,754,1323,332,167,0,167,19471,20,19539,7454,170,3.1,10,10,8000,2400,9,999999999,15,0,0,88,0.2,0,0 +2013,7,19,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,5,76,95702,673,1323,332,144,0,144,14623,0,14749,6278,160,3.1,10,10,8000,2438,9,999999999,16,0,0,88,0.2,0,0 +2013,7,19,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,5,71,95721,527,1323,328,169,65,143,19116,4312,16264,5543,330,1.5,9,9,8000,3048,9,999999999,16,0,0,88,0.2,0,0 +2013,7,19,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.4,5.5,72,96055,328,1323,314,145,185,99,15960,8489,10954,3343,350,3.1,6,6,7000,4500,9,999999999,16,0,0,88,0.2,0,0 +2013,7,19,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,6,76,95721,89,1323,329,12,0,12,1208,0,1216,462,70,1.5,9,9,7000,4572,9,999999999,17,0,0,88,0.2,0,0 +2013,7,19,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8,4,76,95683,0,446,317,0,0,0,0,0,0,0,190,4.6,9,9,7000,3658,9,999999999,14,0,0,88,0.2,0,0 +2013,7,19,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,7.7,3.4,74,96135,0,0,293,0,0,0,0,0,0,0,200,4.1,3,3,7000,3658,9,999999999,13,0,0,88,0.2,0,0 +2013,7,19,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7,4,81,95663,0,0,313,0,0,0,0,0,0,0,180,5.1,9,9,7000,762,9,999999999,14,0,0,88,0.2,0,0 +2013,7,19,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7,3,76,95663,0,0,312,0,0,0,0,0,0,0,140,3.6,9,9,7000,762,9,999999999,13,0,0,88,0.2,0,0 +2013,7,19,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7.4,3,74,96280,0,0,322,0,0,0,0,0,0,0,150,2.1,10,10,7000,750,9,999999999,13,0,0,88,0.2,0,0 +2013,7,19,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,7,3,76,95663,0,0,321,0,0,0,0,0,0,0,300,1,10,10,7000,3048,9,999999999,13,0,0,88,0.2,0,0 +2013,7,20,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7,3,76,95663,0,0,321,0,0,0,0,0,0,0,130,1.5,10,10,7000,3048,9,999999999,13,0,0,88,0.2,0,0 +2013,7,20,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,6,2.7,79,96309,0,0,300,0,0,0,0,0,0,0,340,2.1,8,8,7000,3600,9,999999999,12,0,0,88,0.2,0,0 +2013,7,20,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,5,3,87,95624,0,0,282,0,0,0,0,0,0,0,300,1.5,3,3,7000,3600,9,999999999,13,0,0,88,0.2,0,0 +2013,7,20,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,4,3,93,95604,0,0,307,0,0,0,0,0,0,0,160,3.1,10,10,7000,610,9,999999999,13,0,0,88,0.2,0,0 +2013,7,20,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,3.4,83,96413,0,0,316,0,0,0,0,0,0,0,160,2.1,10,10,8000,600,9,999999999,13,0,0,88,0.2,0,0 +2013,7,20,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,4,87,95644,0,0,317,0,0,0,0,0,0,0,326,0.5,10,10,8000,610,9,999999999,14,0,0,88,0.2,0,0 +2013,7,20,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,3,81,95644,0,0,316,0,0,0,0,0,0,0,350,2.1,10,10,8000,610,9,999999999,13,0,0,88,0.2,0,0 +2013,7,20,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5.7,3.3,85,96615,0,0,315,0,0,0,0,0,0,0,40,3.1,10,10,6000,600,9,999999999,13,0,0,88,0.2,0,0 +2013,7,20,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,4,87,95644,181,930,317,21,0,21,2029,0,2044,816,220,1,10,10,6000,610,9,999999999,14,0,0,88,0.2,0,0 +2013,7,20,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,3,76,95663,408,1323,321,72,0,72,7178,0,7233,2930,200,3.1,10,10,8000,610,9,999999999,13,0,0,88,0.2,0,0 +2013,7,20,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7.4,1.7,67,96828,589,1323,312,198,37,182,22277,2807,20520,6928,220,5.1,9,9,8000,600,9,999999999,11,0,0,88,0.2,0,0 +2013,7,20,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8,1,61,95683,713,1323,314,256,20,245,28760,1684,27714,9470,210,5.1,9,9,8000,762,9,999999999,10,0,0,88,0.2,0,0 +2013,7,20,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9,1,57,95702,771,1323,318,283,25,268,31914,2209,30425,10552,170,2.1,9,9,8000,762,9,999999999,10,0,0,88,0.2,0,0 +2013,7,20,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,9.4,1.2,57,96687,758,1323,321,277,47,250,31342,4005,28438,9986,53,1.5,9,9,8000,1050,9,999999999,11,0,0,88,0.2,0,0 +2013,7,20,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,10,2,57,95721,676,1323,324,238,43,216,26862,3507,24490,8448,165,1.5,9,9,8000,1219,9,999999999,11,0,0,88,0.2,0,0 +2013,7,20,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,1,54,95721,531,1323,323,172,8,169,19197,597,18920,6188,210,5.1,9,9,8000,1524,9,999999999,10,0,0,88,0.2,0,0 +2013,7,20,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9.2,-0.3,51,96646,331,1323,311,114,56,100,12604,2708,11109,3386,220,5.7,8,8,8000,1800,9,999999999,9,0,0,88,0.2,0,0 +2013,7,20,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8,1,61,95683,92,1323,314,13,0,13,1258,0,1266,480,230,6.7,9,9,8000,1829,9,999999999,10,0,0,88,0.2,0,0 +2013,7,20,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,6,1,70,95644,0,460,305,0,0,0,0,0,0,0,200,6.2,9,9,8000,2438,9,999999999,10,0,0,88,0.2,0,0 +2013,7,20,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,6.3,1,69,96778,0,0,306,0,0,0,0,0,0,0,160,4.1,9,9,8000,2438,9,999999999,11,0,0,88,0.2,0,0 +2013,7,20,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,6,2,75,95644,0,0,306,0,0,0,0,0,0,0,130,2.6,9,9,8000,1829,9,999999999,12,0,0,88,0.2,0,0 +2013,7,20,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,5,1,75,95624,0,0,301,0,0,0,0,0,0,0,80,2.1,9,9,8000,1219,9,999999999,10,0,0,88,0.2,0,0 +2013,7,20,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,4.7,1.1,77,96840,0,0,300,0,0,0,0,0,0,0,150,2.6,9,9,8000,2100,9,999999999,11,0,0,88,0.2,0,0 +2013,7,20,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,5,1,75,95624,0,0,301,0,0,0,0,0,0,0,140,2.6,9,9,8000,2134,9,999999999,10,0,0,88,0.2,0,0 +2013,7,21,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,5,1,75,95624,0,0,301,0,0,0,0,0,0,0,110,2.6,9,9,8000,1829,9,999999999,10,0,0,88,0.2,0,0 +2013,7,21,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,4.5,1.1,79,96789,0,0,292,0,0,0,0,0,0,0,110,2.1,8,8,8000,1800,9,999999999,11,0,0,88,0.2,0,0 +2013,7,21,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,4,1,81,95604,0,0,296,0,0,0,0,0,0,0,250,1.5,9,9,8000,1829,9,999999999,11,0,0,88,0.2,0,0 +2013,7,21,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,3,1,87,95584,0,0,292,0,0,0,0,0,0,0,190,2.1,9,9,8000,1829,9,999999999,11,0,0,88,0.2,0,0 +2013,7,21,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,2.7,0.9,88,96686,0,0,277,0,0,0,0,0,0,0,240,2.6,6,6,8000,1800,9,999999999,11,0,0,88,0.2,0,0 +2013,7,21,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,3,0,81,95584,0,0,275,0,0,0,0,0,0,0,100,1.5,5,5,8000,1800,9,999999999,10,0,0,88,0.2,0,0 +2013,7,21,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,1,0,93,95544,0,0,267,0,0,0,0,0,0,0,176,0,5,5,8000,1800,9,999999999,10,0,0,88,0.2,0,0 +2013,7,21,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,2.2,0.3,87,96714,0,0,274,0,0,0,0,0,0,0,58,1,6,6,8000,900,9,999999999,10,0,0,88,0.2,0,0 +2013,7,21,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,3,1,87,95584,183,942,292,35,0,35,3410,0,3434,1260,116,1,9,9,8000,914,9,999999999,11,0,0,88,0.2,0,0 +2013,7,21,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,4,1,81,95604,411,1323,276,229,416,100,25846,22128,11299,3767,140,2.1,3,3,8000,914,9,999999999,11,0,0,88,0.2,0,0 +2013,7,21,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,5,0.2,71,96789,592,1323,286,338,349,182,38046,26597,20580,6959,360,1,6,6,8000,600,9,999999999,10,0,0,88,0.2,0,0 +2013,7,21,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,6,0,65,95644,716,1323,304,258,46,233,29113,3848,26435,9196,162,1,9,9,8000,914,9,999999999,9,0,0,88,0.2,0,0 +2013,7,21,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7,0,61,95663,774,1323,308,285,8,280,32048,714,31703,10866,240,2.1,9,9,8000,914,9,999999999,9,0,0,88,0.2,0,0 +2013,7,21,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7.2,-2,51,96578,762,1323,293,473,521,173,55233,38771,20328,7720,160,1.5,6,6,8000,900,9,999999999,8,0,0,88,0.2,0,0 +2013,7,21,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,9,-2,45,95702,680,1323,297,435,456,201,49412,36241,22907,8070,330,2.1,5,5,8000,900,9,999999999,8,0,0,88,0.2,0,0 +2013,7,21,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,9,-2,45,95702,534,1323,293,333,547,112,38474,34023,13014,4656,161,1,3,3,8000,900,9,999999999,8,0,0,88,0.2,0,0 +2013,7,21,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,9.2,-2.7,42,96466,334,1323,286,172,342,86,19323,15331,9667,3081,340,1.5,1,1,8000,900,9,999999999,7,0,0,88,0.2,0,0 +2013,7,21,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,8,-2,48,95683,95,1323,289,26,17,24,2842,0,2716,794,260,2.6,3,3,8000,900,9,999999999,8,0,0,88,0.2,0,0 +2013,7,21,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,6,1,70,95644,0,475,305,0,0,0,0,0,0,0,230,2.6,9,9,8000,2438,9,999999999,10,0,0,88,0.2,0,0 +2013,7,21,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,5.8,-0.3,65,96588,0,0,282,0,0,0,0,0,0,0,200,2.6,3,3,8000,2438,9,999999999,9,0,0,88,0.2,0,0 +2013,7,21,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,4,0,75,95604,0,0,285,0,0,0,0,0,0,0,160,3.1,7,7,9333,2438,9,999999999,10,0,0,88,0.2,0,0 +2013,7,21,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,4,0,75,95604,0,0,285,0,0,0,0,0,0,0,160,3.1,7,7,8666,2438,9,999999999,10,0,0,88,0.2,0,0 +2013,7,21,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,1.9,-1.7,76,96642,0,0,254,0,0,0,0,0,0,0,140,1,0,0,8000,2438,9,999999999,8,0,0,88,0.2,0,0 +2013,7,21,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,2,-2,73,95564,0,0,271,0,0,0,0,0,0,0,212,1,6,6,7500,2438,9,999999999,8,0,0,88,0.2,0,0 +2013,7,22,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,1,-3,72,95544,0,0,249,0,0,0,0,0,0,0,10,2.1,0,0,7000,77777,9,999999999,7,0,0,88,0.2,0,0 +2013,7,22,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.4,-2.9,88,96705,0,0,241,0,0,0,0,0,0,0,10,1.5,0,0,7000,77777,9,999999999,7,0,0,88,0.293,0,0 +2013,7,22,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,0,-2,85,95523,0,0,247,0,0,0,0,0,0,0,175,1,0,0,7000,77777,9,999999999,8,0,0,88,0.2,0,0 +2013,7,22,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,-1,-3,85,95503,0,0,242,0,0,0,0,0,0,0,135,1,0,0,7000,77777,9,999999999,7,0,0,88,0.267,0,0 +2013,7,22,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,-2.9,-4.8,85,96768,0,0,234,0,0,0,0,0,0,0,20,1,0,0,5000,77777,9,999999999,6,0,0,88,0.393,0,0 +2013,7,22,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,-2,-3,92,95482,0,0,239,0,0,0,0,0,0,0,328,1,0,0,6000,77777,9,999999999,7,0,0,88,0.333,0,0 +2013,7,22,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,-3,-4,92,95461,0,0,234,0,0,0,0,0,0,0,170,1.5,0,0,6000,77777,9,999999999,6,0,0,88,0.4,0,0 +2013,7,22,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,-1.8,-4.1,82,96989,0,0,238,0,0,0,0,0,0,0,70,1.5,0,0,6000,77777,9,999999999,6,0,0,88,0.32,0,0 +2013,7,22,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,-2,-4,85,95482,186,954,238,70,82,58,7607,1251,6378,1802,320,2.1,0,0,6000,77777,9,999999999,6,0,0,88,0.333,0,0 +2013,7,22,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,1.5,-2.5,73,96272,414,1323,269,203,251,124,22540,15313,13884,4393,133,2.8,6,6,7000,77777,9,999999999,7,0,0,88,0.2,0,0 +2013,7,22,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4.9,-0.9,65,97061,596,1323,266,391,573,133,45131,38525,15447,5592,40,3.6,0,0,8000,77777,9,999999999,9,0,0,88,0.2,0,0 +2013,7,22,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,8,-2,48,95683,720,1323,286,502,732,104,60510,46711,12579,4945,330,2.6,2,2,8666,77777,9,999999999,8,0,0,88,0.2,0,0 +2013,7,22,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,9,-3,41,95702,778,1323,285,557,732,127,66845,49660,15329,6062,71,1,1,1,9333,77777,9,999999999,7,0,0,88,0.2,0,0 +2013,7,22,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,10.9,-4.1,33,96934,765,1323,286,547,730,125,65573,49452,15012,5919,210,1.5,0,0,9333,77777,9,999999999,6,0,0,88,0.2,0,0 +2013,7,22,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,13,-9,19,95778,683,1323,289,475,739,94,57439,46719,11405,4446,350,1,0,0,9333,77777,9,999999999,4,0,0,88,0.2,0,0 +2013,7,22,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,13,-6,25,95778,538,1323,293,343,534,126,39284,35244,14467,5090,170,3.1,0,0,9333,77777,9,999999999,5,0,0,88,0.2,0,0 +2013,7,22,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,12.7,-7,23,96845,338,1323,308,164,264,97,18236,13078,10778,3344,180,3.1,5,5,9333,77777,9,999999999,5,0,0,88,0.2,0,0 +2013,7,22,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,11,-5,31,95740,98,1323,286,27,17,26,2978,0,2849,829,160,3.1,0,0,9333,77777,9,999999999,6,0,0,88,0.2,0,0 +2013,7,22,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,10,-3,39,95721,0,489,289,0,0,0,0,0,0,0,220,2.1,1,1,9333,77777,9,999999999,7,0,0,88,0.2,0,0 +2013,7,22,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,7,-3.5,46,96886,0,0,288,0,0,0,0,0,0,0,190,1.5,5,5,9333,77777,9,999999999,7,0,0,88,0.2,0,0 +2013,7,22,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,5,-3,55,95624,0,0,276,0,0,0,0,0,0,0,136,1,3,3,9333,77777,9,999999999,7,0,0,88,0.2,0,0 +2013,7,22,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,4,-4,54,95604,0,0,271,0,0,0,0,0,0,0,140,0.5,3,3,9333,77777,9,999999999,6,0,0,88,0.2,0,0 +2013,7,22,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,3.2,-4.4,55,96885,0,0,267,0,0,0,0,0,0,0,20,2.1,3,3,9333,77777,9,999999999,6,0,0,88,0.2,0,0 +2013,7,22,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,2,-4,62,95564,0,0,263,0,0,0,0,0,0,0,221,1,3,3,8000,77777,9,999999999,6,0,0,88,0.2,0,0 +2013,7,23,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,1,-4,67,95544,0,0,259,0,0,0,0,0,0,0,187,1,3,3,7000,77777,9,999999999,6,0,0,88,0.2,0,0 +2013,7,23,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,0.3,-4.2,69,96750,0,0,250,0,0,0,0,0,0,0,52,0.5,1,1,7000,77777,9,999999999,6,0,0,88,0.2,0,0 +2013,7,23,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,1,-5,61,95544,0,0,258,0,0,0,0,0,0,0,269,1,3,3,7000,77777,9,999999999,6,0,0,88,0.2,0,0 +2013,7,23,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,-1,-5,71,95503,0,0,240,0,0,0,0,0,0,0,209,1,0,0,8000,77777,9,999999999,6,0,0,88,0.267,0,0 +2013,7,23,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.5,-5.4,72,96684,0,0,243,0,0,0,0,0,0,0,360,0.5,1,1,7000,77777,9,999999999,6,0,0,88,0.3,0,0 +2013,7,23,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1,-5,71,95503,0,0,251,0,0,0,0,0,0,0,20,1.5,3,3,6000,77777,9,999999999,6,0,0,88,0.267,0,0 +2013,7,23,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2,-5,78,95482,0,0,247,0,0,0,0,0,0,0,20,1.5,3,3,7000,77777,9,999999999,6,0,0,88,0.333,0,0 +2013,7,23,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,-1.7,-5.7,71,96633,0,0,242,0,0,0,0,0,0,0,71,1,1,1,7000,77777,9,999999999,5,0,0,88,0.313,0,0 +2013,7,23,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,0,-4,72,95523,189,967,245,71,142,51,7884,1658,5670,1676,329,1,0,0,6000,77777,9,999999999,6,0,0,88,0.2,0,0 +2013,7,23,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3,-3,63,95584,417,1324,257,238,405,111,26756,23333,12473,4083,142,0.5,0,0,7000,77777,9,999999999,7,0,0,88,0.2,0,0 +2013,7,23,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6.7,-3.3,47,96635,599,1324,270,395,680,88,47216,40362,10529,3993,340,2.1,0,0,7000,77777,9,999999999,7,0,0,88,0.2,0,0 +2013,7,23,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,10,-3,39,95721,724,1324,289,508,779,82,62361,47270,10112,4021,64,1,1,1,7000,77777,9,999999999,7,0,0,88,0.2,0,0 +2013,7,23,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,13,-4,29,95778,782,1324,295,562,733,129,67356,50098,15580,6160,277,1,0,0,7000,77777,9,999999999,6,0,0,88,0.2,0,0 +2013,7,23,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,14.7,-6.9,20,96410,769,1324,299,553,731,128,66211,50281,15413,6069,26,0.5,0,0,7000,77777,9,999999999,5,0,0,88,0.2,0,0 +2013,7,23,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,16,-8,17,95834,687,1324,303,478,738,95,57764,46730,11520,4495,76,1,0,0,7000,77777,9,999999999,4,0,0,88,0.2,0,0 +2013,7,23,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,-7,19,95834,541,1324,304,346,586,107,40265,36512,12454,4501,200,1.5,0,0,7000,77777,9,999999999,5,0,0,88,0.2,0,0 +2013,7,23,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16.4,-5.9,20,96281,341,1324,307,179,356,87,20042,16492,9779,3130,190,2.1,0,0,7000,77777,9,999999999,5,0,0,88,0.2,0,0 +2013,7,23,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,-5,24,95815,101,1324,302,28,22,26,3073,0,2893,845,240,1.5,0,0,7000,77777,9,999999999,6,0,0,88,0.2,0,0 +2013,7,23,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,11,-3,36,95740,0,503,288,0,0,0,0,0,0,0,53,0.5,0,0,7000,77777,9,999999999,7,0,0,88,0.2,0,0 +2013,7,23,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,8.1,-2.3,47,96303,0,0,277,0,0,0,0,0,0,0,323,1,0,0,7000,77777,9,999999999,8,0,0,88,0.2,0,0 +2013,7,23,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,6,-2,55,95644,0,0,281,0,0,0,0,0,0,0,270,1,3,3,7000,77777,9,999999999,8,0,0,88,0.2,0,0 +2013,7,23,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,6,-3,51,95644,0,0,280,0,0,0,0,0,0,0,329,1,3,3,7000,77777,9,999999999,7,0,0,88,0.2,0,0 +2013,7,23,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4.7,-3,56,96302,0,0,263,0,0,0,0,0,0,0,360,1,0,0,8000,77777,9,999999999,7,0,0,88,0.2,0,0 +2013,7,23,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4,-2,64,95604,0,0,261,0,0,0,0,0,0,0,20,1.5,0,0,8000,77777,9,999999999,8,0,0,88,0.2,0,0 +2013,7,24,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4,-3,59,95604,0,0,260,0,0,0,0,0,0,0,40,1,0,0,6000,77777,9,999999999,7,0,0,88,0.2,0,0 +2013,7,24,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,1.3,-3.7,67,96224,0,0,250,0,0,0,0,0,0,0,316,0.5,0,0,6000,77777,9,999999999,7,0,0,88,0.2,0,0 +2013,7,24,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,2,-4,62,95564,0,0,252,0,0,0,0,0,0,0,30,1.5,0,0,6000,77777,9,999999999,6,0,0,88,0.2,0,0 +2013,7,24,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,0,-4,72,95523,0,0,245,0,0,0,0,0,0,0,112,0,0,0,6000,77777,9,999999999,6,0,0,88,0.2,0,0 +2013,7,24,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.5,-3.8,76,96102,0,0,243,0,0,0,0,0,0,0,360,1,0,0,6000,77777,9,999999999,7,0,0,88,0.233,0,0 +2013,7,24,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,-1,-4,78,95503,0,0,241,0,0,0,0,0,0,0,99,0.5,0,0,6000,77777,9,999999999,6,0,0,88,0.267,0,0 +2013,7,24,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,0,-4,72,95523,0,0,245,0,0,0,0,0,0,0,102,1,0,0,6000,77777,9,999999999,6,0,0,88,0.2,0,0 +2013,7,24,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,-2,-4.8,79,96146,0,0,237,0,0,0,0,0,0,0,321,0.5,0,0,6000,77777,9,999999999,6,0,0,88,0.333,0,0 +2013,7,24,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,1,-4,67,95544,191,981,248,73,144,52,8053,1828,5764,1705,340,1.5,0,0,8000,77777,9,999999999,6,0,0,88,0.2,0,0 +2013,7,24,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5,-2,59,95624,420,1324,265,240,405,112,26972,23393,12597,4128,20,2.6,0,0,8000,77777,9,999999999,8,0,0,88,0.2,0,0 +2013,7,24,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10.2,-2,42,96098,603,1324,286,398,678,89,47440,40243,10651,4042,360,0.5,0,0,8000,77777,9,999999999,8,0,0,88,0.2,0,0 +2013,7,24,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,13,-1,38,95778,727,1324,298,509,774,84,62462,46876,10348,4118,27,1,0,0,8000,77777,9,999999999,8,0,0,88,0.2,0,0 +2013,7,24,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,0,34,95834,786,1324,312,562,803,86,69462,49010,10623,4295,280,2.1,0,0,8000,77777,9,999999999,9,0,0,88,0.2,0,0 +2013,7,24,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,20.3,0.9,27,95841,773,1324,332,550,794,86,67780,48253,10679,4304,40,1.5,0,0,8000,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,7,24,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,23,-2,18,95959,691,1324,341,477,727,98,57497,45483,11848,4626,278,1,0,0,8000,77777,9,999999999,8,0,0,88,0.2,0,0 +2013,7,24,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,24,-4,15,95977,545,1324,343,348,580,109,40371,36123,12713,4593,258,1,0,0,8000,77777,9,999999999,6,0,0,88,0.2,0,0 +2013,7,24,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,23.2,-1.5,19,95712,345,1324,342,180,351,88,20143,16181,9934,3182,240,1.5,0,0,8000,77777,9,999999999,8,0,0,88,0.2,0,0 +2013,7,24,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,1,28,95906,104,1324,331,28,21,27,3129,0,2957,866,190,2.1,0,0,8000,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,7,24,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,17,2,36,95852,0,518,318,0,0,0,0,0,0,0,275,1,0,0,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,7,24,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,13.3,1.4,44,95751,0,0,302,0,0,0,0,0,0,0,124,0.5,0,0,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,7,24,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,9,1,57,95702,0,0,298,0,0,0,0,0,0,0,30,1.5,4,4,8000,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,7,24,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,8,0,57,95683,0,0,293,0,0,0,0,0,0,0,136,1,4,4,8000,77777,9,999999999,9,0,0,88,0.2,0,0 +2013,7,24,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7.2,0.6,63,95738,0,0,276,0,0,0,0,0,0,0,360,1,0,0,8000,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,7,24,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,6,0,65,95644,0,0,287,0,0,0,0,0,0,0,46,1,5,5,8000,77777,9,999999999,9,0,0,88,0.2,0,0 +2013,7,25,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,0,65,95644,0,0,271,0,0,0,0,0,0,0,98,1,0,0,8000,77777,9,999999999,9,0,0,88,0.2,0,0 +2013,7,25,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,4.7,0.4,74,95689,0,0,266,0,0,0,0,0,0,0,91,0.5,0,0,8000,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,7,25,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3,0,81,95584,0,0,259,0,0,0,0,0,0,0,280,0.5,0,0,8000,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,7,25,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3,-1,74,95584,0,0,259,0,0,0,0,0,0,0,96,1,0,0,8000,77777,9,999999999,9,0,0,88,0.2,0,0 +2013,7,25,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,1.9,-1.5,77,95651,0,0,254,0,0,0,0,0,0,0,360,1,0,0,8000,77777,9,999999999,8,0,0,88,0.2,0,0 +2013,7,25,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,2,-1,80,95564,0,0,255,0,0,0,0,0,0,0,184,1,0,0,8000,77777,9,999999999,9,0,0,88,0.2,0,0 +2013,7,25,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,1,-2,79,95544,0,0,250,0,0,0,0,0,0,0,255,1,0,0,7000,77777,9,999999999,8,0,0,88,0.2,0,0 +2013,7,25,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,-0.3,-2.8,81,95805,0,0,245,0,0,0,0,0,0,0,215,0.5,0,0,6000,77777,9,999999999,7,0,0,88,0.22,0,0 +2013,7,25,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,2,-1,80,95564,194,995,255,74,146,53,8215,1891,5859,1735,360,1.5,0,0,5000,77777,9,999999999,9,0,0,88,0.2,0,0 +2013,7,25,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,0,61,95663,423,1324,275,242,404,113,27186,23329,12724,4174,157,0,0,0,8000,77777,9,999999999,9,0,0,88,0.2,0,0 +2013,7,25,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,0.1,44,95821,606,1324,295,400,676,90,47647,39928,10758,4088,360,1,0,0,8000,77777,9,999999999,9,0,0,88,0.2,0,0 +2013,7,25,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,14,1,41,95797,731,1324,310,511,770,86,62593,46440,10578,4213,200,1.5,1,1,8000,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,7,25,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,2,36,95852,790,1324,318,564,760,111,68376,48674,13499,5413,200,3.1,0,0,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,7,25,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17.6,4,40,95660,777,1324,343,513,572,177,59793,41699,20761,7926,180,4.1,5,5,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,7,25,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,5,48,95834,695,1324,328,474,714,99,56962,43194,11942,4675,160,6.2,2,2,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,7,25,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,5,55,95797,549,1324,309,346,586,103,40261,34194,12051,4405,160,6.2,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,7,25,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13.2,5.2,58,95720,348,1324,305,180,395,77,20427,15909,8699,2884,160,5.7,0,0,8000,7500,9,999999999,16,0,0,88,0.2,0,0 +2013,7,25,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,6,71,95740,107,1324,297,29,34,26,3208,0,2913,864,150,5.1,0,0,7000,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,7,25,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,6,76,95721,0,533,293,0,0,0,0,0,0,0,160,4.1,0,0,6000,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,7,25,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.4,5.2,80,95827,0,0,286,0,0,0,0,0,0,0,160,4.1,0,0,6000,7500,9,999999999,16,0,0,88,0.2,0,0 +2013,7,25,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,5,81,95683,0,0,284,0,0,0,0,0,0,0,160,3.1,0,0,5000,77777,9,999999999,16,0,0,88,0.2,0,0 +2013,7,25,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,5,87,95663,0,0,280,0,0,0,0,0,0,0,150,3.1,0,0,4000,77777,9,999999999,16,0,0,88,0.2,0,0 +2013,7,25,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,5.3,89,95961,0,0,280,0,0,0,0,0,0,0,150,3.6,0,0,3000,6000,9,999999999,16,0,0,88,0.2,0,0 +2013,7,25,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,5,87,95663,0,0,314,0,0,0,0,0,0,0,160,2.1,9,9,3000,305,9,999999999,16,0,0,88,0.2,0,0 +2013,7,26,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,5,87,95663,0,0,314,0,0,0,0,0,0,0,250,1.5,9,9,3000,183,9,999999999,16,0,0,88,0.2,0,0 +2013,7,26,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6.6,4.9,89,96057,0,0,312,0,0,0,0,0,0,0,266,1,9,9,3000,180,9,999999999,15,0,0,88,0.2,0,0 +2013,7,26,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,5,87,95663,0,0,323,0,0,0,0,0,0,0,20,3.6,10,10,3000,183,9,999999999,16,0,0,88,0.2,0,0 +2013,7,26,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,5,87,95663,0,0,323,0,0,0,0,0,0,0,290,2.6,10,10,2000,213,9,999999999,16,0,0,88,0.2,0,0 +2013,7,26,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.2,5.3,88,96144,0,0,324,0,0,0,0,0,0,0,360,1,10,10,2000,240,9,999999999,16,0,0,88,0.2,0,0 +2013,7,26,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,5,87,95663,0,0,314,0,0,0,0,0,0,0,167,1,9,9,2000,152,9,999999999,16,0,0,88,0.2,0,0 +2013,7,26,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,6,87,95683,0,0,329,0,0,0,0,0,0,0,142,1,10,10,3000,2438,0,919999999,17,0,0,88,0.2,0,0 +2013,7,26,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.1,5.8,85,96322,0,0,320,0,0,0,0,0,0,0,280,3.1,9,9,3000,2400,0,919999999,17,0,0,88,0.2,0,0 +2013,7,26,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8,6,87,95683,198,1009,297,75,121,57,8182,1564,6229,1824,210,2.1,3,3,2000,2400,0,919999999,17,0,0,88,0.2,0,0 +2013,7,26,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10,7,82,95721,427,1324,307,239,451,94,27214,22626,10703,3665,130,2.6,3,3,4000,2400,0,919999999,19,0,0,88,0.2,0,0 +2013,7,26,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11.7,6.9,72,96297,610,1324,322,348,392,168,39453,27783,19082,6692,130,3.6,6,6,8000,6000,0,919999999,19,0,0,88,0.2,0,0 +2013,7,26,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,7,71,95759,735,1324,339,263,91,213,30009,7027,24399,8809,190,3.1,9,9,7000,914,0,919999999,19,0,0,88,0.2,0,0 +2013,7,26,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,7,71,95759,794,1324,349,177,3,176,20725,204,20619,7949,140,3.1,10,10,8000,1219,0,919999999,19,0,0,88,0.2,0,0 +2013,7,26,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,6.5,74,96577,781,1324,343,174,2,172,20315,176,20237,7778,140,3.1,10,10,8000,1200,0,919999999,18,0,0,88,0.2,0,0 +2013,7,26,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,7,76,95740,699,1324,334,246,42,224,27774,3330,25430,8839,180,2.6,9,9,8000,1219,0,919999999,19,0,0,88,0.2,0,0 +2013,7,26,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,7,71,95759,552,1324,339,180,9,176,20033,657,19706,6509,150,3.1,9,9,8000,1829,0,919999999,19,0,0,88,0.2,0,0 +2013,7,26,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11.4,6.8,73,96613,351,1324,329,123,56,108,13519,2807,11920,3658,170,3.1,8,8,8000,5400,0,919999999,19,0,0,88,0.2,0,0 +2013,7,26,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,10,6,76,95721,110,1324,306,29,12,28,3245,0,3140,921,170,2.6,3,3,8000,5400,0,919999999,17,0,0,88,0.2,0,0 +2013,7,26,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10,6,76,95721,0,548,306,0,0,0,0,0,0,0,240,3.1,3,3,8000,5400,0,919999999,17,0,0,88,0.2,0,0 +2013,7,26,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,8.2,5.3,82,96683,0,0,290,0,0,0,0,0,0,0,267,1,1,1,8000,5400,9,999999999,16,0,0,88,0.2,0,0 +2013,7,26,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,4,87,95644,0,0,275,0,0,0,0,0,0,0,30,2.6,0,0,5000,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,7,26,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,5,81,95683,0,0,284,0,0,0,0,0,0,0,30,2.1,0,0,5000,77777,9,999999999,16,0,0,88,0.2,0,0 +2013,7,26,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5.2,3.7,90,96576,0,0,271,0,0,0,0,0,0,0,350,2.6,0,0,500,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,7,26,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,4,93,95624,0,0,271,0,0,0,0,0,0,0,217,0.5,0,0,2000,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,7,27,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3,2,93,95584,0,0,261,0,0,0,0,0,0,0,213,0,0,0,500,77777,0,999999999,12,0,0,88,0.2,0,0 +2013,7,27,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.6,2.2,91,96591,0,0,264,0,0,0,0,0,0,0,10,2.1,0,0,300,77777,0,999999999,12,0,0,88,0.2,0,0 +2013,7,27,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3,2,93,95584,0,0,261,0,0,0,0,0,0,0,50,2.1,0,0,300,77777,0,999999999,12,0,0,88,0.2,0,0 +2013,7,27,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,4,3,93,95604,0,0,307,0,0,0,0,0,0,0,60,1.5,10,10,500,61,0,999999999,13,0,0,88,0.2,0,0 +2013,7,27,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.4,1.6,94,96407,0,0,274,0,0,0,0,0,0,0,240,1.5,5,5,300,61,0,999999999,11,0,0,88,0.2,0,0 +2013,7,27,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,3,2,93,95584,0,0,277,0,0,0,0,0,0,0,52,0.5,5,5,1500,61,0,999999999,12,0,0,88,0.2,0,0 +2013,7,27,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,2,2,100,95564,0,0,273,0,0,0,0,0,0,0,27,1,5,5,700,61,0,999999999,12,0,0,88,0.2,0,0 +2013,7,27,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,2.1,1.4,95,96363,0,0,283,0,0,0,0,0,0,0,40,2.6,8,8,800,7500,0,999999999,11,0,0,88,0.2,0,0 +2013,7,27,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4,3,93,95604,201,1025,266,78,175,51,8613,2049,5681,1718,226,0.5,0,0,2000,77777,0,999999999,13,0,0,88,0.2,0,0 +2013,7,27,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,4,87,95644,430,1325,275,246,478,91,28127,24306,10417,3591,310,1.5,0,0,3000,77777,0,999999999,14,0,0,88,0.2,0,0 +2013,7,27,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.2,6.5,78,96316,614,1325,294,402,529,157,45847,36554,17953,6402,360,2.1,0,0,5000,7500,0,999999999,18,0,0,88,0.2,0,0 +2013,7,27,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,6,59,95797,739,1325,348,266,112,203,30411,8538,23387,8549,235,1.5,9,9,8000,7620,0,999999999,17,0,0,88,0.2,0,0 +2013,7,27,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16,6,51,95834,798,1325,337,528,516,217,60793,40066,25137,9360,330,2.1,5,5,8000,7620,0,999999999,17,0,0,88,0.2,0,0 +2013,7,27,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18.3,5.8,44,96041,786,1325,361,374,211,249,42500,17409,28437,10186,340,1.5,8,8,8000,7500,0,999999999,17,0,0,88,0.2,0,0 +2013,7,27,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,6,43,95888,703,1325,372,249,88,202,28301,6773,23081,8263,291,1,9,9,8000,7620,0,999999999,17,0,0,88,0.2,0,0 +2013,7,27,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,18.5,7,47,95947,556,1325,342,350,395,184,38934,29294,20591,6727,83,2.5,2,2,8000,7620,9,999999999,19,0,0,88,0.2,0,0 +2013,7,27,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17.9,8,52,96006,355,1325,362,124,84,102,13746,3974,11307,3548,180,4.1,8,8,8000,7500,0,999999999,21,0,0,88,0.2,0,0 +2013,7,27,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,7,52,95852,113,1325,364,16,0,16,1521,0,1532,585,150,4.1,9,9,8000,7620,0,999999999,19,0,0,88,0.2,0,0 +2013,7,27,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,8,67,95797,0,563,350,0,0,0,0,0,0,0,170,3.6,9,9,8000,7620,0,999999999,21,0,0,88,0.2,0,0 +2013,7,27,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13.5,7.7,68,96076,0,0,340,0,0,0,0,0,0,0,160,3.1,8,8,8000,7500,9,999999999,20,0,0,88,0.2,0,0 +2013,7,27,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,8,76,95759,0,0,303,0,0,0,0,0,0,0,160,3.1,0,0,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,7,27,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,7,71,95759,0,0,302,0,0,0,0,0,0,0,82,1,0,0,7000,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,7,27,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.4,7.1,80,96112,0,0,296,0,0,0,0,0,0,0,360,1,0,0,6000,6000,9,999999999,19,0,0,88,0.2,0,0 +2013,7,27,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,6,76,95721,0,0,293,0,0,0,0,0,0,0,160,1.5,0,0,7000,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,7,28,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,7,82,95721,0,0,294,0,0,0,0,0,0,0,231,1,0,0,5000,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,7,28,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8.4,6.1,85,96073,0,0,306,0,0,0,0,0,0,0,53,0.5,6,6,5000,6000,9,999999999,17,0,0,88,0.2,0,0 +2013,7,28,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,6,87,95683,0,0,285,0,0,0,0,0,0,0,10,0,0,0,5000,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,7,28,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,9,6,81,95702,0,0,306,0,0,0,0,0,0,0,23,0.5,5,5,5000,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,7,28,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.2,5.7,84,96012,0,0,305,0,0,0,0,0,0,0,360,1,6,6,5000,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,7,28,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,8,6,87,95683,0,0,302,0,0,0,0,0,0,0,53,1,5,5,4000,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,7,28,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8,6,87,95683,0,0,302,0,0,0,0,0,0,0,10,2.1,5,5,4000,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,7,28,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4.6,4.6,100,96055,0,0,296,0,0,0,0,0,0,0,75,1,8,8,3000,5100,9,999999999,15,0,0,88,0.2,0,0 +2013,7,28,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,7,87,95702,204,1040,334,25,0,25,2435,0,2453,981,70,3.1,10,10,3000,5486,9,999999999,19,0,0,88,0.2,0,0 +2013,7,28,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,7,82,95721,434,1325,339,78,0,78,7774,0,7835,3198,280,2.1,10,10,3000,5486,9,999999999,19,0,0,88,0.2,0,0 +2013,7,28,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11.7,7.9,77,96193,618,1325,348,127,0,127,12889,0,12999,5488,360,1,10,10,4000,5400,9,999999999,21,0,0,88,0.2,0,0 +2013,7,28,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,8,67,95797,744,1325,330,481,486,208,54933,36992,23891,8718,60,1,5,5,5000,6096,9,999999999,21,0,0,88,0.2,0,0 +2013,7,28,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,8,55,95852,802,1325,344,530,514,219,60975,39496,25286,9431,200,1.5,5,5,8000,6096,9,999999999,21,0,0,88,0.2,0,0 +2013,7,28,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18.4,8.1,51,95996,790,1325,383,176,0,176,20527,29,20593,7928,180,4.1,10,10,8000,6000,9,999999999,21,0,0,88,0.2,0,0 +2013,7,28,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,8,49,95888,707,1325,375,250,42,228,28148,3326,25777,8982,170,5.7,9,9,8000,6096,9,999999999,21,0,0,88,0.2,0,0 +2013,7,28,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,20,8,46,95906,560,1325,380,183,9,179,20370,663,20036,6634,180,5.1,9,9,8000,6096,9,999999999,21,0,0,88,0.2,0,0 +2013,7,28,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18.9,7.6,48,95957,359,1325,366,126,58,110,13882,2917,12217,3756,160,4.1,8,8,8000,7500,9,999999999,20,0,0,88,0.2,0,0 +2013,7,28,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,9,56,95870,116,1325,345,31,12,30,3402,0,3296,971,150,3.6,3,3,8000,7500,9,999999999,23,0,0,88,0.2,0,0 +2013,7,28,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,9,63,95834,0,578,341,0,0,0,0,0,0,0,140,2.1,5,5,8000,7500,9,999999999,23,0,0,88,0.2,0,0 +2013,7,28,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,14.1,8.7,70,96040,0,0,327,0,0,0,0,0,0,0,110,1,3,3,8000,7500,9,999999999,22,0,0,88,0.2,0,0 +2013,7,28,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,8,72,95778,0,0,345,0,0,0,0,0,0,0,260,1.5,9,9,8000,5486,9,999999999,21,0,0,88,0.2,0,0 +2013,7,28,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,8,76,95759,0,0,340,0,0,0,0,0,0,0,50,1.5,9,9,8000,5486,9,999999999,21,0,0,88,0.2,0,0 +2013,7,28,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.9,6.6,80,96092,0,0,322,0,0,0,0,0,0,0,360,1,8,8,6000,5400,9,999999999,18,0,0,88,0.2,0,0 +2013,7,28,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,7,82,95721,0,0,330,0,0,0,0,0,0,0,33,0.5,9,9,6000,5486,9,999999999,19,0,0,88,0.2,0,0 +2013,7,29,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,7,82,95721,0,0,330,0,0,0,0,0,0,0,198,0,9,9,6000,5486,9,999999999,19,0,0,88,0.2,0,0 +2013,7,29,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8.5,6,84,96056,0,0,306,0,0,0,0,0,0,0,8,0,6,6,5000,5400,9,999999999,17,0,0,88,0.2,0,0 +2013,7,29,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,7,5,87,95663,0,0,296,0,0,0,0,0,0,0,324,0,5,5,5000,5400,9,999999999,16,0,0,88,0.2,0,0 +2013,7,29,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,5,87,95663,0,0,280,0,0,0,0,0,0,0,12,1,0,0,3000,77777,9,999999999,16,0,0,88,0.2,0,0 +2013,7,29,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.9,4.6,91,95986,0,0,291,0,0,0,0,0,0,0,170,2.1,5,5,300,77777,0,999999999,15,0,0,88,0.2,0,0 +2013,7,29,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5,4,93,95624,0,0,304,0,0,0,0,0,0,0,180,3.1,9,9,1300,61,0,999999999,14,0,0,88,0.2,0,0 +2013,7,29,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,6,5,93,95644,0,0,318,0,0,0,0,0,0,0,170,2.6,10,10,400,30,0,999999999,16,0,0,88,0.2,0,0 +2013,7,29,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,6.2,5.6,96,96087,0,0,320,0,0,0,0,0,0,0,140,2.1,10,10,300,30,0,999999999,17,0,0,88,0.2,0,0 +2013,7,29,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,7,6,93,95663,208,1057,324,34,0,34,3357,0,3381,1290,160,3.6,10,10,300,61,0,999999999,17,0,0,88,0.2,0,0 +2013,7,29,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,8,7,93,95683,438,1325,330,106,0,106,10545,0,10629,4056,160,3.6,10,10,400,61,0,999999999,19,0,0,88,0.2,0,0 +2013,7,29,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,7.3,95,96235,622,1325,330,129,0,129,13024,0,13134,5547,160,5.1,10,10,2000,120,0,999999999,20,0,0,88,0.2,0,0 +2013,7,29,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,7,93,95683,748,1325,321,269,44,244,30384,3577,27758,9751,150,4.1,9,9,3000,152,0,999999999,19,0,0,88,0.2,0,0 +2013,7,29,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,7,93,95683,807,1325,321,296,24,282,33452,2046,32006,11217,150,3.6,9,9,4000,91,0,999999999,19,0,0,88,0.2,0,0 +2013,7,29,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.6,6.6,87,96190,794,1325,332,177,3,176,20740,205,20634,7952,140,3.6,10,10,4000,150,0,999999999,18,0,0,88,0.2,0,0 +2013,7,29,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,7,87,95702,712,1325,325,252,88,205,28679,6757,23405,8399,150,3.1,9,9,5000,213,0,999999999,19,0,0,88,0.2,0,0 +2013,7,29,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,7,82,95721,564,1325,339,113,0,113,11352,0,11446,4780,160,4.1,10,10,6000,213,0,999999999,19,0,0,88,0.2,0,0 +2013,7,29,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.9,6.4,84,96243,362,1325,333,60,0,60,5943,0,5989,2418,160,3.6,10,10,5000,240,0,999999999,18,0,0,88,0.2,0,0 +2013,7,29,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,6,81,95702,120,1325,333,10,0,10,1006,0,1013,409,150,3.1,10,10,5000,305,0,999999999,17,0,0,88,0.2,0,0 +2013,7,29,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,6,81,95702,0,593,306,0,0,0,0,0,0,0,150,2.6,5,5,5000,305,0,999999999,17,0,0,88,0.2,0,0 +2013,7,29,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.4,6.7,89,96252,0,0,331,0,0,0,0,0,0,0,100,1.5,10,10,4000,300,9,999999999,19,0,0,88,0.2,0,0 +2013,7,29,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,7,87,95702,0,0,334,0,0,0,0,0,0,0,213,1,10,10,4000,366,9,999999999,19,0,0,88,0.2,0,0 +2013,7,29,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,7,87,95702,0,0,334,0,0,0,0,0,0,0,180,1.5,10,10,4000,366,9,999999999,19,0,0,88,0.2,0,0 +2013,7,29,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.7,6.8,88,96230,0,0,333,0,0,0,0,0,0,0,200,2.1,10,10,4000,180,9,999999999,19,0,0,88,0.2,0,0 +2013,7,29,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,7,93,95683,0,0,330,0,0,0,0,0,0,0,180,4.1,10,10,3000,152,9,999999999,19,0,0,88,0.2,0,0 +2013,7,30,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,7,93,95683,0,0,330,0,0,0,0,0,0,0,170,3.6,10,10,5000,152,9,999999999,19,0,0,88,0.2,0,0 +2013,7,30,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8,6.2,88,96226,0,0,329,0,0,0,0,0,0,0,170,3.1,10,10,5000,360,9,999999999,18,0,0,88,0.2,0,0 +2013,7,30,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8,6,87,95683,0,0,329,0,0,0,0,0,0,0,150,2.6,10,10,5000,366,9,999999999,17,0,0,88,0.2,0,0 +2013,7,30,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,6,87,95683,0,0,329,0,0,0,0,0,0,0,150,2.1,10,10,8000,366,9,999999999,17,0,0,88,0.2,0,0 +2013,7,30,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,5.7,91,96348,0,0,324,0,0,0,0,0,0,0,160,2.6,10,10,5000,390,0,919999999,17,0,0,88,0.2,0,0 +2013,7,30,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,6,93,95663,0,0,324,0,0,0,0,0,0,0,140,2.6,10,10,7000,457,0,919999999,17,0,0,88,0.2,0,0 +2013,7,30,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,5,87,95663,0,0,323,0,0,0,0,0,0,0,160,3.1,10,10,7000,457,0,919999999,16,0,0,88,0.2,0,0 +2013,7,30,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.2,4.8,85,96607,0,0,323,0,0,0,0,0,0,0,150,4.1,10,10,8000,450,0,919999999,15,0,0,88,0.2,0,0 +2013,7,30,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7,5,87,95663,211,1074,323,26,0,26,2574,0,2593,1036,150,3.1,10,10,8000,610,0,919999999,16,0,0,88,0.2,0,0 +2013,7,30,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8,4,76,95683,442,1326,317,132,17,126,14709,1024,14138,4599,130,2.6,9,9,8000,914,0,919999999,14,0,0,88,0.2,0,0 +2013,7,30,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8.7,3.9,72,96664,627,1326,320,214,20,204,23957,1574,23017,7750,170,1.5,9,9,8000,900,0,919999999,14,0,0,88,0.2,0,0 +2013,7,30,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,10,5,71,95721,753,1326,328,272,45,246,30734,3766,27980,9831,147,1,9,9,8000,914,0,919999999,16,0,0,88,0.2,0,0 +2013,7,30,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,11,5,66,95740,811,1326,332,299,64,260,34063,5397,29748,10693,87,1,9,9,8000,914,0,919999999,15,0,0,88,0.2,0,0 +2013,7,30,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,11.2,3.9,61,96524,799,1326,332,294,64,255,33440,5400,29191,10461,276,1,9,9,8000,900,0,919999999,14,0,0,88,0.2,0,0 +2013,7,30,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,12,4,58,95759,716,1326,336,255,43,232,28798,3543,26308,9158,146,1,9,9,8000,914,0,919999999,14,0,0,88,0.2,0,0 +2013,7,30,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,12,4,58,95759,568,1326,317,337,463,139,38532,30743,15973,5642,280,1.5,5,5,8000,914,0,919999999,14,0,0,88,0.2,0,0 +2013,7,30,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,12.4,3.8,56,96509,366,1326,306,194,402,83,21949,17829,9407,3123,360,1,1,1,8000,914,0,919999999,14,0,0,88,0.2,0,0 +2013,7,30,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,12,4,58,95759,123,1326,315,34,41,30,3734,0,3322,989,270,1,4,4,8000,914,0,919999999,14,0,0,88,0.2,0,0 +2013,7,30,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,10,3,62,95721,0,609,305,0,0,0,0,0,0,0,240,1.5,4,4,8000,914,0,919999999,13,0,0,88,0.2,0,0 +2013,7,30,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,7.8,3.7,75,96628,0,0,282,0,0,0,0,0,0,0,51,0,0,0,8000,914,9,999999999,14,0,0,88,0.2,0,0 +2013,7,30,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,7,3,76,95663,0,0,300,0,0,0,0,0,0,0,42,1,7,7,8000,914,9,999999999,13,0,0,88,0.2,0,0 +2013,7,30,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,5,2,81,95624,0,0,295,0,0,0,0,0,0,0,340,1.5,8,8,8000,914,9,999999999,12,0,0,88,0.2,0,0 +2013,7,30,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,3.9,1.6,85,96522,0,0,264,0,0,0,0,0,0,0,50,1.5,0,0,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,7,30,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4,2,87,95604,0,0,265,0,0,0,0,0,0,0,133,1,0,0,8000,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,7,31,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3,1,87,95584,0,0,260,0,0,0,0,0,0,0,340,1,0,0,7000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,7,31,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,2.6,1.3,91,96486,0,0,259,0,0,0,0,0,0,0,44,0.5,0,0,3000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,7,31,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,2,1,93,95564,0,0,257,0,0,0,0,0,0,0,220,0.5,0,0,5000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,7,31,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,0,-1,92,95523,0,0,258,0,0,0,0,0,0,0,93,1,3,3,1200,77777,9,999999999,9,0,0,88,0.2,0,0 +2013,7,31,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,-1,-2.1,91,96450,0,0,273,0,0,0,0,0,0,0,360,0.5,9,9,300,77777,0,999999999,8,0,0,88,0.267,0,0 +2013,7,31,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0,-1,92,95523,0,0,258,0,0,0,0,0,0,0,20,1.5,3,3,2000,77777,0,999999999,9,0,0,88,0.2,0,0 +2013,7,31,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,0,-1,92,95523,0,0,258,0,0,0,0,0,0,0,133,0,3,3,600,77777,0,999999999,9,0,0,88,0.2,0,0 +2013,7,31,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,-0.5,-1.1,95,96526,0,0,246,0,0,0,0,0,0,0,349,0,0,0,300,77777,0,999999999,9,0,0,88,0.233,0,0 +2013,7,31,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,0,-1,92,95523,215,1091,248,87,172,59,9580,3315,6516,1942,189,1,0,0,2000,77777,0,999999999,9,0,0,88,0.2,0,0 +2013,7,31,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3,3,100,95584,446,1326,262,259,494,93,29678,25982,10651,3700,286,0,0,0,3000,77777,0,999999999,13,0,0,88,0.2,0,0 +2013,7,31,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.9,4.1,77,96592,631,1326,282,418,682,94,49846,40125,11200,4291,360,1,0,0,5000,77777,0,999999999,14,0,0,88,0.2,0,0 +2013,7,31,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,5,71,95721,757,1326,292,531,769,92,64844,46087,11232,4502,105,0.5,0,0,8000,77777,0,999999999,16,0,0,88,0.2,0,0 +2013,7,31,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,5,62,95759,816,1326,300,584,798,94,71971,48315,11581,4713,50,1,0,0,8000,77777,0,999999999,15,0,0,88,0.2,0,0 +2013,7,31,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,14.1,4.3,52,96380,803,1326,308,573,795,92,70599,48156,11388,4621,210,2.1,0,0,8000,77777,0,999999999,14,0,0,88,0.2,0,0 +2013,7,31,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,4,48,95815,720,1326,322,496,725,103,59790,44751,12406,4886,170,3.6,2,2,8000,77777,0,999999999,14,0,0,88,0.2,0,0 +2013,7,31,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,4,45,95834,572,1326,327,366,596,109,42628,36033,12722,4677,180,3.1,2,2,8000,77777,0,999999999,14,0,0,88,0.2,0,0 +2013,7,31,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15.4,4,46,96234,370,1326,314,197,407,83,22290,18185,9469,3150,180,4.1,0,0,8000,77777,0,999999999,14,0,0,88,0.2,0,0 +2013,7,31,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,13,5,58,95778,126,1326,320,35,47,31,3898,0,3406,1015,180,3.6,4,4,8000,77777,0,999999999,15,0,0,88,0.2,0,0 +2013,7,31,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,10.1,4,66,95860,0,624,315,0,0,0,0,0,0,0,211,2,4,4,8000,77777,0,999999999,14,0,0,88,0.2,0,0 +2013,7,31,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,9.2,4.1,70,95997,0,0,292,0,0,0,0,0,0,0,193,1.5,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,7,31,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,7.9,3.6,74,95833,0,0,308,0,0,0,0,0,0,0,233,1.7,5,5,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,7,31,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7.7,4.3,79,95829,0,0,283,0,0,0,0,0,0,0,226,1.5,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,7,31,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7.8,5,82,96062,0,0,286,0,0,0,0,0,0,0,207,1.8,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,7,31,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.7,5.7,87,95906,0,0,269,0,0,0,0,0,0,0,182,2.2,0,0,6000,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,8,1,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.4,6.7,89,95921,0,0,325,0,0,0,0,0,0,0,115,2.4,9,9,6000,1500,9,999999999,19,0,0,88,0.2,0,0 +2008,8,1,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.1,6.5,89,96125,0,0,323,0,0,0,0,0,0,0,87,2.4,9,9,6000,1500,9,999999999,18,0,0,88,0.2,0,0 +2008,8,1,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.2,6.3,88,95897,0,0,321,0,0,0,0,0,0,0,27,2.4,9,9,6000,1800,9,999999999,19,0,0,88,0.2,0,0 +2008,8,1,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,6.1,88,95892,0,0,319,0,0,0,0,0,0,0,82,2.2,9,9,6000,3000,9,999999999,17,0,0,88,0.2,0,0 +2008,8,1,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.4,5.9,90,96104,0,0,320,0,0,0,0,0,0,0,147,1.5,9,9,6000,3000,9,999999999,18,0,0,88,0.2,0,0 +2008,8,1,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.2,5.8,91,95890,0,0,324,0,0,0,0,0,0,0,230,1.5,9,9,6000,3000,9,999999999,17,0,0,88,0.2,0,0 +2008,8,1,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,6,93,95663,0,0,315,0,0,0,0,0,0,0,250,2.1,9,9,5000,3000,9,999999999,17,0,0,88,0.2,0,0 +2008,8,1,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5.8,5.2,96,96532,0,0,291,0,0,0,0,0,0,0,280,0.5,5,5,5000,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,8,1,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,6,93,95663,215,1091,297,80,181,51,8916,2275,5659,1753,350,1.5,5,5,5000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,8,1,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,7,82,95721,446,1326,330,133,17,127,14817,997,14249,4649,83,1,9,9,5000,7500,9,999999999,19,0,0,88,0.2,0,0 +2008,8,1,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,7.6,74,96444,631,1326,340,214,20,205,24014,1510,23092,7805,10,1,9,9,5000,7500,9,999999999,20,0,0,88,0.2,0,0 +2008,8,1,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,7,67,95778,757,1326,344,273,45,247,30862,3693,28124,9903,61,1,9,9,5000,7500,9,999999999,19,0,0,88,0.2,0,0 +2008,8,1,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,6,55,95815,816,1326,352,301,64,262,34256,5359,29933,10775,132,0.5,9,9,6000,7500,9,999999999,17,0,0,88,0.2,0,0 +2008,8,1,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16.3,5.5,49,96232,803,1326,358,295,64,257,33595,5328,29356,10537,190,2.6,9,9,7000,6000,9,999999999,16,0,0,88,0.2,0,0 +2008,8,1,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,7,52,95852,720,1326,364,256,43,232,28875,3507,26357,9207,160,4.1,9,9,8000,6000,9,999999999,19,0,0,88,0.2,0,0 +2008,8,1,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,8,55,95852,572,1326,365,188,70,158,21217,4774,17894,6185,170,4.6,9,9,8000,6000,9,999999999,21,0,0,88,0.2,0,0 +2008,8,1,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16.5,7.5,55,96217,370,1326,322,196,321,106,21696,16069,11824,3727,200,4.1,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2008,8,1,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,15,7,59,95815,126,1326,331,35,45,31,3870,0,3404,1016,210,3.6,4,4,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,8,1,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,13,7,67,95778,0,624,325,0,0,0,0,0,0,0,2,1,5,5,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,8,1,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12.4,7.1,70,96244,0,0,325,0,0,0,0,0,0,0,90,1,6,6,9900,7500,9,999999999,19,0,0,88,0.2,0,0 +2008,8,1,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,11,7,76,95740,0,0,322,0,0,0,0,0,0,0,220,2.1,7,7,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,8,1,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,8,82,95740,0,0,336,0,0,0,0,0,0,0,140,1.5,9,9,8000,7500,9,999999999,21,0,0,88,0.2,3,0 +2008,8,1,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9.7,7.5,86,96363,0,0,338,0,0,0,0,0,0,0,44,1,10,10,7000,4800,9,999999999,20,0,0,88,0.2,0.3,0 +2008,8,1,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,8,87,95721,0,0,340,0,0,0,0,0,0,0,348,1,10,10,6000,3900,9,999999999,21,0,0,88,0.2,0,0 +2008,8,2,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,8,87,95721,0,0,340,0,0,0,0,0,0,0,210,1.5,10,10,8000,3300,9,999999999,21,0,0,88,0.2,0,0 +2008,8,2,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10.7,8.3,85,96372,0,0,344,0,0,0,0,0,0,0,31,1,10,10,8000,3000,9,999999999,22,0,0,88,0.2,0,0 +2008,8,2,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,10,94,95740,0,0,347,0,0,0,0,0,0,0,150,3.1,10,10,4000,390,0,919999999,26,0,0,88,0.2,0,0 +2008,8,2,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,9,93,95721,0,0,341,0,0,0,0,0,0,0,20,2.6,10,10,3000,1200,0,919999999,23,0,0,88,0.2,0,0 +2008,8,2,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10.3,9.2,93,96289,0,0,343,0,0,0,0,0,0,0,227,1.5,10,10,3500,600,0,919999999,24,0,0,88,0.2,0,0 +2008,8,2,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,9,93,95721,0,0,341,0,0,0,0,0,0,0,20,4.1,10,10,3000,1500,0,919999999,23,0,0,88,0.2,0,0 +2008,8,2,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,9,93,95721,0,0,341,0,0,0,0,0,0,0,150,1.5,10,10,3500,1500,0,919999999,23,0,0,88,0.2,0,0 +2008,8,2,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.9,8.4,85,96414,0,0,345,0,0,0,0,0,0,0,150,2.1,10,10,3500,1500,0,919999999,22,0,0,88,0.2,0,0 +2008,8,2,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,10,94,95740,219,1109,347,28,0,28,2695,0,2715,1088,107,1,10,10,5000,1500,0,919999999,26,0,0,88,0.2,0,0 +2008,8,2,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,10,94,95740,450,1326,338,134,17,128,14923,965,14359,4700,176,0.5,9,9,5000,1500,0,919999999,26,0,0,88,0.2,0,0 +2008,8,2,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11.2,10,92,96590,635,1326,348,132,0,132,13316,0,13430,5699,160,6.2,10,10,7000,1500,0,919999999,26,0,0,88,0.2,0,0 +2008,8,2,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,11,94,95759,762,1326,353,167,1,166,19427,53,19463,7465,140,2.6,10,10,7000,1500,0,919999999,28,0,0,88,0.2,0,0 +2008,8,2,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,11,94,95759,821,1326,353,183,2,182,21440,128,21408,8314,180,2.1,10,10,8000,1500,0,919999999,28,0,0,88,0.2,0,0 +2008,8,2,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12.2,10.4,89,96609,808,1326,354,180,1,180,21025,37,21085,8160,180,2.1,10,10,9000,1320,0,919999999,27,0,0,88,0.2,0,0 +2008,8,2,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,11,94,95759,725,1326,353,156,0,156,18173,0,18253,6941,150,2.1,10,10,6000,1050,0,919999999,28,0,0,88,0.2,0,0 +2008,8,2,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,11,88,95778,576,1326,358,115,0,115,11585,0,11683,4907,170,2.1,10,10,5000,990,0,919999999,28,0,0,88,0.2,0,0 +2008,8,2,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12.2,11.1,93,96543,373,1326,355,62,0,62,6144,0,6192,2514,190,2.1,10,10,5000,450,0,919999999,29,0,0,88,0.2,0,0 +2008,8,2,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,11,94,95759,129,1326,353,12,0,12,1136,0,1144,463,180,3.1,10,10,4000,1350,0,919999999,28,0,0,88,0.2,0,0 +2008,8,2,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,11,94,95759,0,640,353,0,0,0,0,0,0,0,120,1.5,10,10,5000,1350,0,919999999,28,0,0,88,0.2,0,0 +2008,8,2,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11.2,10.7,97,96637,0,0,349,0,0,0,0,0,0,0,170,2.6,10,10,5000,1350,9,999999999,28,0,0,88,0.2,5,0 +2008,8,2,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,10,94,95740,0,0,338,0,0,0,0,0,0,0,210,1.5,9,9,5000,3300,9,999999999,26,0,0,88,0.2,5,0 +2008,8,2,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,10,94,95740,0,0,338,0,0,0,0,0,0,0,160,1.5,9,9,5000,3000,9,999999999,26,0,0,88,0.2,5,0 +2008,8,2,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.7,10.2,97,96552,0,0,337,0,0,0,0,0,0,0,250,1.5,9,9,5000,1800,9,999999999,26,0,0,88,0.2,5,0 +2008,8,2,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,10,94,95740,0,0,347,0,0,0,0,0,0,0,220,2.1,10,10,4000,1800,0,919999999,26,0,0,88,0.2,3.1,0 +2008,8,3,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,11,100,95740,0,0,349,0,0,0,0,0,0,0,130,3.6,10,10,4000,1500,0,919999999,28,0,0,88,0.2,0,0 +2008,8,3,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,11,100,96605,0,0,349,0,0,0,0,0,0,0,150,3.1,10,10,3000,900,0,919999999,28,0,0,88,0.2,0,0 +2008,8,3,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,11,100,95740,0,0,349,0,0,0,0,0,0,0,63,0.5,10,10,3000,1200,0,919999999,28,0,0,88,0.2,0,0 +2008,8,3,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,11,100,95740,0,0,349,0,0,0,0,0,0,0,200,1.5,10,10,5000,1200,0,919999999,28,0,0,88,0.2,0,0 +2008,8,3,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10.7,10.2,97,96552,0,0,346,0,0,0,0,0,0,0,250,1.5,10,10,5000,510,0,919999999,26,0,0,88,0.2,0,0 +2008,8,3,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,9,93,95721,0,0,341,0,0,0,0,0,0,0,130,1.5,10,10,8000,600,0,919999999,23,0,0,88,0.2,0,0 +2008,8,3,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,10,100,95721,0,0,343,0,0,0,0,0,0,0,240,1.5,10,10,5000,900,0,919999999,26,0,0,88,0.2,0,0 +2008,8,3,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9.6,9.5,99,96748,0,0,340,0,0,0,0,0,0,0,148,0.5,10,10,5000,1800,0,919999999,25,0,0,88,0.2,0,0 +2008,8,3,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,10,100,95721,223,1128,333,46,0,46,4534,0,4567,1670,320,2.1,9,9,5000,1500,0,919999999,26,0,0,88,0.2,0,0 +2008,8,3,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,11,94,95759,455,1327,344,135,14,130,15068,826,14592,4777,20,2.1,9,9,8000,1500,0,919999999,28,0,0,88,0.2,0,0 +2008,8,3,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12.9,10.4,85,96802,640,1327,347,217,19,208,24322,1470,23402,7945,40,2.1,9,9,8000,1800,0,919999999,27,0,0,88,0.2,0,0 +2008,8,3,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,9,72,95797,766,1327,351,276,61,241,31321,4861,27505,9819,60,2.1,9,9,8000,1800,0,919999999,23,0,0,88,0.2,0,0 +2008,8,3,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,9,67,95815,825,1327,356,304,54,270,34492,4498,30842,11080,220,1.5,9,9,8000,1800,0,919999999,23,0,0,88,0.2,0,0 +2008,8,3,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15.4,10.3,72,96726,813,1327,340,536,548,200,62115,39897,23319,8891,210,3.6,5,5,8000,77777,0,919999999,26,0,0,88,0.2,0,0 +2008,8,3,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16,11,72,95834,729,1327,338,494,708,105,59275,41459,12607,4989,170,4.6,3,3,8000,77777,0,919999999,28,0,0,88,0.2,0,0 +2008,8,3,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16,11,72,95834,581,1327,338,364,580,111,42314,33314,12892,4766,180,4.1,3,3,8000,77777,0,919999999,28,0,0,88,0.2,0,0 +2008,8,3,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15.9,11.6,76,96641,377,1327,338,197,366,93,22103,16193,10495,3450,180,4.1,3,3,8000,77777,0,919999999,30,0,0,88,0.2,0,0 +2008,8,3,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,11,82,95797,133,1327,329,38,46,34,4226,0,3724,1104,170,4.1,3,3,8000,77777,0,919999999,28,0,0,88,0.2,0,0 +2008,8,3,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,13,11,88,95778,0,655,349,0,0,0,0,0,0,0,180,3.1,9,9,9900,77777,0,919999999,28,0,0,88,0.2,0,0 +2008,8,3,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11.7,10.2,91,96675,0,0,304,0,0,0,0,0,0,0,260,2.1,0,0,9900,77777,9,999999999,26,0,0,88,0.2,1,0 +2008,8,3,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,11,10,94,95740,0,0,347,0,0,0,0,0,0,0,110,1.5,10,10,9900,77777,9,999999999,26,0,0,88,0.2,0,0 +2008,8,3,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,9,87,95740,0,0,300,0,0,0,0,0,0,0,148,1,0,0,9000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,8,3,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8.5,7.5,93,96670,0,0,288,0,0,0,0,0,0,0,42,1,0,0,5000,77777,9,999999999,20,0,0,88,0.2,0,0 +2008,8,3,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,9,93,95721,0,0,309,0,0,0,0,0,0,0,40,2.1,3,3,5000,77777,0,999999999,23,0,0,88,0.2,0,0 +2008,8,4,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,8,93,95702,0,0,303,0,0,0,0,0,0,0,350,1.5,3,3,1400,77777,0,999999999,21,0,0,88,0.2,0,0 +2008,8,4,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5.7,5.3,97,96605,0,0,291,0,0,0,0,0,0,0,176,0.5,5,5,800,77777,0,999999999,16,0,0,88,0.2,0,0 +2008,8,4,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,7,7,100,95663,0,0,325,0,0,0,0,0,0,0,53,0.5,10,10,400,60,0,999999999,19,0,0,88,0.2,0,0 +2008,8,4,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,6,6,100,95644,0,0,319,0,0,0,0,0,0,0,275,0,10,10,300,30,0,999999999,17,0,0,88,0.2,0,0 +2008,8,4,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,5,5,100,95624,0,0,314,0,0,0,0,0,0,0,349,1,10,10,250,30,0,999999999,16,0,0,88,0.2,0,0 +2008,8,4,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,6,6,100,95644,0,0,319,0,0,0,0,0,0,0,51,0,10,10,200,30,0,999999999,17,0,0,88,0.2,0,0 +2008,8,4,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,6,100,95644,0,0,319,0,0,0,0,0,0,0,300,2.1,10,10,900,90,0,999999999,17,0,0,88,0.2,0,0 +2008,8,4,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6.1,5.9,99,96528,0,0,320,0,0,0,0,0,0,0,350,2.1,10,10,800,150,0,999999999,17,0,0,88,0.2,0,0 +2008,8,4,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,6,93,95663,227,1147,324,29,0,29,2869,0,2890,1156,50,1.5,10,10,2000,90,0,999999999,17,0,0,88,0.2,0,0 +2008,8,4,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,8,100,95683,459,1327,331,84,0,84,8390,0,8458,3469,70,1.5,10,10,600,60,0,999999999,21,0,0,88,0.2,0,0 +2008,8,4,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.6,8.4,99,96455,645,1327,334,134,0,134,13623,0,13740,5832,260,1,10,10,1500,60,0,999999999,22,0,0,88,0.2,0,0 +2008,8,4,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,9,100,95702,771,1327,327,279,52,248,31522,4238,28243,10038,280,1.5,9,9,2000,90,0,999999999,23,0,0,88,0.2,0,0 +2008,8,4,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,9,87,95740,830,1327,318,552,518,228,63532,39906,26406,9902,40,1,5,5,5000,77777,0,999999999,23,0,0,88,0.2,0,0 +2008,8,4,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,10.5,74,96236,817,1327,319,580,771,105,70672,45791,12891,5238,200,1,0,0,6000,77777,0,999999999,27,0,0,88,0.2,0,0 +2008,8,4,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,7,52,95852,734,1327,324,507,737,100,61296,44313,12162,4822,160,3.1,0,0,8000,77777,0,999999999,19,0,0,88,0.2,0,0 +2008,8,4,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,10,63,95852,585,1327,327,373,609,105,43598,34758,12319,4587,140,3.1,0,0,8000,77777,0,999999999,25,0,0,88,0.2,0,0 +2008,8,4,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17.1,6.4,49,96067,381,1327,324,205,414,86,23167,18712,9746,3260,160,2.6,0,0,8000,77777,0,999999999,18,0,0,88,0.2,0,0 +2008,8,4,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,15,10,72,95815,136,1327,340,35,23,33,3919,0,3665,1098,170,4.1,6,6,9900,77777,0,999999999,25,0,0,88,0.2,0,0 +2008,8,4,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,14,8,67,95797,0,671,330,0,0,0,0,0,0,0,170,1.5,5,5,9900,77777,0,999999999,21,0,0,88,0.2,0,0 +2008,8,4,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,8,76,96085,0,0,303,0,0,0,0,0,0,0,160,2.1,0,0,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,8,4,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,9,87,95740,0,0,300,0,0,0,0,0,0,0,160,2.6,0,0,7000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,8,4,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,9,87,95740,0,0,300,0,0,0,0,0,0,0,140,2.1,0,0,7000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,8,4,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.3,8.6,89,96119,0,0,297,0,0,0,0,0,0,0,150,3.1,0,0,7000,77777,9,999999999,22,0,0,88,0.2,0,0 +2008,8,4,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,8,93,95702,0,0,291,0,0,0,0,0,0,0,118,1,0,0,7000,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,8,5,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,7,100,95663,0,0,294,0,0,0,0,0,0,0,132,1,3,3,4000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,8,5,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4.6,4.2,97,96130,0,0,281,0,0,0,0,0,0,0,90,1,3,3,2000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,8,5,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,5,4,93,95624,0,0,313,0,0,0,0,0,0,0,319,0.5,10,10,300,60,0,999999999,14,0,0,88,0.2,0,0 +2008,8,5,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,6,5,93,95644,0,0,318,0,0,0,0,0,0,0,230,1,10,10,300,60,0,999999999,16,0,0,88,0.2,0,0 +2008,8,5,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,6,6,100,95644,0,0,319,0,0,0,0,0,0,0,39,1,10,10,300,60,0,999999999,17,0,0,88,0.2,0,0 +2008,8,5,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,7,7,100,95663,0,0,325,0,0,0,0,0,0,0,205,0.5,10,10,300,60,0,999999999,19,0,0,88,0.2,0,0 +2008,8,5,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,8,100,95683,0,0,331,0,0,0,0,0,0,0,60,2.1,10,10,500,60,0,999999999,21,0,0,88,0.2,0,0 +2008,8,5,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.9,7.7,99,96233,0,0,330,0,0,0,0,0,0,0,360,2.1,10,10,400,60,0,999999999,20,0,0,88,0.2,0,0 +2008,8,5,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,8,8,100,95683,231,1166,331,30,0,30,2941,0,2963,1186,320,1.5,10,10,350,60,0,999999999,21,0,0,88,0.2,0,0 +2008,8,5,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,8,100,95683,464,1327,331,85,0,85,8511,0,8579,3521,270,2.1,10,10,1000,60,0,919999999,21,0,0,88,0.2,0,0 +2008,8,5,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.8,8.4,97,96355,650,1327,335,136,0,136,13763,0,13881,5897,230,1.5,10,10,2000,1200,0,919999999,22,0,0,88,0.2,0,0 +2008,8,5,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,7,82,95721,776,1327,330,282,53,251,31919,4386,28552,10142,200,5.1,9,9,7000,450,0,919999999,19,0,0,88,0.2,0,0 +2008,8,5,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9,7,87,95702,835,1327,334,189,2,187,22102,146,22058,8565,200,8.2,10,10,7000,600,0,919999999,19,0,0,88,0.2,0,0 +2008,8,5,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8.9,6.6,85,96583,822,1327,324,304,24,289,34277,2081,32792,11516,140,5.7,9,9,7000,450,0,919999999,18,0,0,88,0.2,0,0 +2008,8,5,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,6,76,95721,738,1327,329,264,43,240,29864,3561,27291,9555,120,2.6,9,9,7000,750,0,919999999,17,0,0,88,0.2,0,0 +2008,8,5,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,7,82,95721,589,1327,311,352,408,171,39680,29188,19397,6652,270,4.1,5,5,7000,77777,0,919999999,19,0,0,88,0.2,0,0 +2008,8,5,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10.6,6.3,75,96522,385,1327,308,205,402,88,23175,18611,10025,3346,320,4.6,3,3,7000,77777,0,919999999,18,0,0,88,0.2,0,0 +2008,8,5,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,6,76,95721,140,1327,306,42,78,34,4649,0,3750,1123,20,4.1,3,3,7000,77777,0,919999999,17,0,0,88,0.2,0,0 +2008,8,5,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,8,6,87,95683,0,686,319,0,0,0,0,0,0,0,40,3.1,9,9,9900,77777,0,919999999,17,0,0,88,0.2,0,0 +2008,8,5,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,7.2,5.4,88,96569,0,0,281,0,0,0,0,0,0,0,141,1,0,0,9900,77777,9,999999999,16,0,0,88,0.2,2,0 +2008,8,5,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,7,6,93,95663,0,0,324,0,0,0,0,0,0,0,200,2.1,10,10,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,8,5,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4,4,100,95604,0,0,267,0,0,0,0,0,0,0,330,1.5,0,0,6000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,8,5,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5,3,87,95624,0,0,270,0,0,0,0,0,0,0,20,2.6,0,0,6000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,8,5,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4,4,100,95604,0,0,267,0,0,0,0,0,0,0,310,1.5,0,0,5000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,8,6,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5,5,100,95624,0,0,272,0,0,0,0,0,0,0,340,2.6,0,0,5000,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,8,6,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,2.8,2,94,96556,0,0,272,0,0,0,0,0,0,0,40,1,3,3,4000,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,8,6,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3,2,93,95584,0,0,273,0,0,0,0,0,0,0,180,2.6,3,3,4000,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,8,6,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,2,2,100,95564,0,0,273,0,0,0,0,0,0,0,22,0,5,5,600,77777,0,999999999,12,0,0,88,0.2,0,0 +2008,8,6,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,0.3,0.1,99,96411,0,0,264,0,0,0,0,0,0,0,350,1,5,5,400,77777,0,999999999,10,0,0,88,0.2,0,0 +2008,8,6,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,1,1,100,95544,0,0,292,0,0,0,0,0,0,0,20,2.1,10,10,400,30,0,999999999,11,0,0,88,0.2,0,0 +2008,8,6,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,1,1,100,95544,0,0,292,0,0,0,0,0,0,0,20,1.5,10,10,400,30,0,999999999,11,0,0,88,0.2,0,0 +2008,8,6,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,2,1.8,99,96417,0,0,297,0,0,0,0,0,0,0,130,1,10,10,300,30,0,999999999,11,0,0,88,0.2,0,0 +2008,8,6,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,3,3,100,95584,236,1187,303,31,0,31,3050,0,3072,1226,200,1.5,10,10,200,30,0,999999999,13,0,0,88,0.2,0,0 +2008,8,6,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,3,3,100,95584,468,1328,303,87,0,87,8714,0,8783,3595,228,1,10,10,300,30,0,999999999,13,0,0,88,0.2,0,0 +2008,8,6,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4.9,4.6,98,96485,654,1328,304,226,83,185,25646,6210,21112,7452,40,3.6,9,9,600,120,0,999999999,15,0,0,88,0.2,0,0 +2008,8,6,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,7,87,95702,781,1328,302,543,606,187,63021,44224,21784,8265,20,3.1,3,3,8000,77777,0,999999999,19,0,0,88,0.2,0,0 +2008,8,6,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,12,7,71,95759,840,1328,323,534,494,221,61784,38080,25747,9747,140,0.5,6,6,9900,77777,0,999999999,19,0,0,88,0.2,0,0 +2008,8,6,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,13.7,7.1,64,96193,827,1328,310,592,734,135,71005,47941,16210,6501,227,1,0,0,9900,77777,0,999999999,19,0,0,88,0.2,0,0 +2008,8,6,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,16,8,59,95834,743,1328,337,500,682,119,59669,42602,14206,5593,180,3.1,4,4,9900,77777,0,999999999,21,0,0,88,0.2,0,0 +2008,8,6,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,15,7,59,95815,593,1328,331,371,587,109,43371,35006,12775,4751,180,6.2,4,4,9900,77777,0,999999999,19,0,0,88,0.2,0,0 +2008,8,6,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14.3,8,66,96204,389,1328,313,210,417,88,23745,18987,9947,3339,170,5.7,0,0,9900,77777,0,999999999,21,0,0,88,0.2,0,0 +2008,8,6,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,12,6,67,95759,143,1328,319,41,54,35,4504,0,3866,1157,180,3.1,5,5,9900,77777,0,999999999,17,0,0,88,0.2,0,0 +2008,8,6,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,11,6,71,95740,0,702,317,0,0,0,0,0,0,0,160,3.6,6,6,9900,77777,0,999999999,17,0,0,88,0.2,0,0 +2008,8,6,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9.6,5.2,74,96361,0,0,290,0,0,0,0,0,0,0,160,2.6,0,0,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,8,6,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,10,5,71,95721,0,0,312,0,0,0,0,0,0,0,110,1.5,6,6,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,8,6,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,7,4,81,95663,0,0,306,0,0,0,0,0,0,0,280,2.1,8,8,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,8,6,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,5.7,3.7,87,96398,0,0,273,0,0,0,0,0,0,0,141,0.5,0,0,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,8,6,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,5,3,87,95624,0,0,303,0,0,0,0,0,0,0,160,2.1,9,9,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,8,7,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,6,4,87,95644,0,0,308,0,0,0,0,0,0,0,120,2.1,9,9,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,8,7,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3.5,2.5,93,96420,0,0,264,0,0,0,0,0,0,0,237,1,0,0,7000,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,8,7,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3,2,93,95584,0,0,261,0,0,0,0,0,0,0,94,1,0,0,5000,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,8,7,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5,3,87,95624,0,0,270,0,0,0,0,0,0,0,50,2.6,0,0,5000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,8,7,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,1.9,1.8,99,96340,0,0,272,0,0,0,0,0,0,0,290,1.5,5,5,400,77777,9,999999999,11,0,0,88,0.2,0,0 +2008,8,7,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,2,1,93,95564,0,0,268,0,0,0,0,0,0,0,130,2.6,3,3,2000,77777,9,999999999,11,0,0,88,0.2,0,0 +2008,8,7,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4,3,93,95604,0,0,266,0,0,0,0,0,0,0,140,1.5,0,0,5000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,8,7,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,1.4,0.9,96,96556,0,0,267,0,0,0,0,0,0,0,300,1.5,4,4,5000,77777,9,999999999,11,0,0,88,0.2,0,0 +2008,8,7,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,2,1,93,95564,240,1207,257,102,191,67,11251,5024,7469,2231,30,2.1,0,0,5000,77777,9,999999999,11,0,0,88,0.2,0,0 +2008,8,7,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5,5,100,95624,473,1328,272,279,508,98,32083,27723,11343,3979,40,3.1,0,0,4000,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,8,7,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.5,5.8,83,96575,659,1328,299,435,670,103,51817,40389,12274,4726,20,2.6,3,3,9000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,8,7,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,6,76,95721,786,1328,293,556,758,107,67409,46926,13005,5223,186,1,0,0,9000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,8,7,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,6,67,95759,845,1328,301,609,780,113,74332,49036,13849,5639,22,1,0,0,9000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,8,7,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13.6,6.7,63,96475,832,1328,325,577,706,135,69276,46237,16233,6519,166,0.5,4,4,9000,77777,9,999999999,18,0,0,88,0.2,0,0 +2008,8,7,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,6,59,95797,748,1328,310,520,742,103,62916,45350,12480,4961,180,3.1,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,8,7,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,15,7,59,95815,598,1328,331,375,567,120,43515,35027,13947,5141,170,4.1,4,4,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,8,7,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13.9,8,68,96442,393,1328,317,213,421,88,24097,19356,10022,3371,190,5.1,1,1,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,8,7,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,12,8,76,95759,146,1328,328,37,18,35,4152,0,3946,1184,190,3.1,7,7,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,8,7,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,10,5,71,95721,0,718,312,0,0,0,0,0,0,0,210,3.1,6,6,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,8,7,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9.3,4.9,74,96600,0,0,301,0,0,0,0,0,0,0,150,1.5,3,3,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,8,7,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,10,5,71,95721,0,0,312,0,0,0,0,0,0,0,144,0.5,6,6,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,8,7,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,7,4,81,95663,0,0,306,0,0,0,0,0,0,0,240,1.5,8,8,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,8,7,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,6.2,3.8,85,96634,0,0,287,0,0,0,0,0,0,0,87,0,3,3,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,8,7,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5,3,87,95624,0,0,270,0,0,0,0,0,0,0,300,1.5,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,8,8,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4,3,93,95604,0,0,266,0,0,0,0,0,0,0,130,1.5,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,8,8,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3.4,2.6,94,96663,0,0,263,0,0,0,0,0,0,0,40,2.6,0,0,7000,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,8,8,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4,3,93,95604,0,0,266,0,0,0,0,0,0,0,50,1.5,0,0,5000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,8,8,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3,2,93,95584,0,0,273,0,0,0,0,0,0,0,200,1.5,3,3,5000,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,8,8,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3.8,3,95,96614,0,0,277,0,0,0,0,0,0,0,140,1.5,3,3,5000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,8,8,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,2,1,93,95564,0,0,268,0,0,0,0,0,0,0,290,1.5,3,3,5000,77777,9,999999999,11,0,0,88,0.2,0,0 +2008,8,8,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,0,0,100,95523,0,0,279,0,0,0,0,0,0,0,20,1.5,9,9,800,300,0,999999999,10,0,0,88,0.2,0,0 +2008,8,8,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,1.4,1,97,96698,0,0,265,0,0,0,0,0,0,0,73,0.5,3,3,400,77777,0,999999999,11,0,0,88,0.2,0,0 +2008,8,8,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,2,2,100,95564,244,1228,269,103,223,62,11506,5412,6966,2139,20,1.5,3,3,500,77777,0,999999999,12,0,0,88,0.2,0,0 +2008,8,8,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,5,93,95644,478,1329,276,284,513,99,32572,28155,11415,4013,360,2.1,0,0,4000,77777,0,999999999,16,0,0,88,0.2,0,0 +2008,8,8,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.3,6.6,83,96591,665,1329,303,439,673,103,52299,40361,12317,4752,20,1.5,3,3,5000,77777,0,999999999,18,0,0,88,0.2,0,0 +2008,8,8,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,6,67,95759,792,1329,314,553,756,103,67344,46376,12606,5079,116,1,3,3,7000,77777,0,999999999,17,0,0,88,0.2,0,0 +2008,8,8,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,7,67,95778,851,1329,320,605,718,146,72441,47936,17558,7045,309,1,3,3,8000,77777,0,999999999,19,0,0,88,0.2,0,0 +2008,8,8,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,15.2,5.2,51,96401,837,1329,336,526,477,226,60792,37436,26273,9881,148,0,6,6,8000,7500,0,999999999,16,0,0,88,0.2,0,0 +2008,8,8,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,16,4,45,95834,752,1329,327,526,689,136,62312,46120,16183,6308,180,3.1,2,2,9900,77777,0,999999999,14,0,0,88,0.2,0,0 +2008,8,8,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,16,4,45,95834,602,1329,327,391,519,156,44562,36334,17834,6301,190,3.1,2,2,9900,77777,0,999999999,14,0,0,88,0.2,0,0 +2008,8,8,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16.2,5.9,50,96334,397,1329,351,146,99,116,16165,5466,12934,4097,240,2.1,8,8,9900,7500,0,999999999,17,0,0,88,0.2,0,0 +2008,8,8,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,15,6,55,95815,150,1329,328,47,40,42,5131,0,4657,1344,200,1.5,3,3,9900,77777,0,999999999,17,0,0,88,0.2,0,0 +2008,8,8,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,12,4,58,95759,0,734,315,0,0,0,0,0,0,0,170,4.1,4,4,9900,77777,0,999999999,14,0,0,88,0.2,0,0 +2008,8,8,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10.2,0.1,49,96419,0,0,305,0,0,0,0,0,0,0,180,2.6,5,5,9900,77777,9,999999999,10,0,0,88,0.2,0,0 +2008,8,8,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,10,-1,46,95721,0,0,295,0,0,0,0,0,0,0,105,1,2,2,9900,77777,9,999999999,9,0,0,88,0.2,0,0 +2008,8,8,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,9,1,57,95702,0,0,298,0,0,0,0,0,0,0,10,1.5,4,4,9900,77777,9,999999999,10,0,0,88,0.2,0,0 +2008,8,8,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,6.8,0.8,66,96438,0,0,287,0,0,0,0,0,0,0,60,1.5,3,3,9900,77777,9,999999999,10,0,0,88,0.2,0,0 +2008,8,8,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,7,2,70,95663,0,0,296,0,0,0,0,0,0,0,111,0,6,6,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,8,9,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4,2,87,95604,0,0,265,0,0,0,0,0,0,0,120,0.5,0,0,8000,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,8,9,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,2.9,1.5,90,96398,0,0,272,0,0,0,0,0,0,0,30,2.6,3,3,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2008,8,9,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3,2,93,95584,0,0,261,0,0,0,0,0,0,0,228,0.5,0,0,8000,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,8,9,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,2,1,93,95564,0,0,257,0,0,0,0,0,0,0,20,1,0,0,6000,77777,9,999999999,11,0,0,88,0.2,0,0 +2008,8,9,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,2.4,1.9,96,96256,0,0,277,0,0,0,0,0,0,0,7,0,6,6,5000,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,8,9,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,2,1,93,95564,0,0,257,0,0,0,0,0,0,0,290,1,0,0,5000,77777,9,999999999,11,0,0,88,0.2,0,0 +2008,8,9,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,2,1,93,95564,0,0,257,0,0,0,0,0,0,0,286,1,0,0,5000,77777,9,999999999,11,0,0,88,0.2,0,0 +2008,8,9,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,1.8,0.7,92,96300,0,0,267,0,0,0,0,0,0,0,191,1,3,3,2300,77777,9,999999999,10,0,0,88,0.2,0,0 +2008,8,9,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4,3,93,95604,249,1250,266,108,239,63,11992,5920,7031,2169,50,2.1,0,0,3000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,8,9,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,5,87,95663,483,1329,280,288,518,100,33073,28593,11489,4049,244,0.5,0,0,5000,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,8,9,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11.6,6.1,69,96276,670,1329,317,419,539,147,48549,36555,17142,6376,30,1,5,5,5000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,8,9,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,6,59,95797,797,1329,310,565,718,135,67486,47329,16151,6408,350,1.5,0,0,6000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,8,9,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,7,55,95834,856,1329,320,618,786,112,75528,48932,13738,5613,340,1,0,0,6000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,8,9,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17.8,7.5,51,96051,842,1329,345,585,710,136,70314,46256,16361,6588,60,1,4,4,6000,77777,9,999999999,20,0,0,88,0.2,0,0 +2008,8,9,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,4,35,95906,757,1329,334,531,747,106,64199,46612,12814,5099,140,1.5,0,0,6000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,8,9,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,7,43,95906,607,1329,338,394,518,157,44805,35725,17972,6365,170,2.6,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,8,9,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.2,8.4,53,96002,401,1329,364,147,99,117,16316,5378,13071,4150,170,4.1,8,8,8000,77777,9,999999999,22,0,0,88,0.2,0,0 +2008,8,9,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,8,55,95852,153,1329,325,49,45,44,5385,0,4831,1391,160,2.6,0,0,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,8,9,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,6,55,95815,0,749,314,0,0,0,0,0,0,0,220,2.1,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,8,9,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13.8,7.5,66,96195,0,0,341,0,0,0,0,0,0,0,170,1.5,8,8,8000,7500,9,999999999,20,0,0,88,0.2,0,0 +2008,8,9,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,13,5,58,95778,0,0,320,0,0,0,0,0,0,0,51,0,4,4,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,8,9,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,12,6,67,95759,0,0,319,0,0,0,0,0,0,0,350,1.5,5,5,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,8,9,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8.5,5.5,81,96264,0,0,286,0,0,0,0,0,0,0,340,1,0,0,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,8,9,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,6,81,95702,0,0,289,0,0,0,0,0,0,0,40,1.5,0,0,7000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,8,10,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,5,93,95644,0,0,276,0,0,0,0,0,0,0,260,1.5,0,0,6000,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,8,10,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4.9,3.5,91,96212,0,0,270,0,0,0,0,0,0,0,1,0.5,0,0,5000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,8,10,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5,4,93,95624,0,0,271,0,0,0,0,0,0,0,20,1.5,0,0,4000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,8,10,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5,4,93,95624,0,0,271,0,0,0,0,0,0,0,40,1.5,0,0,4000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,8,10,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.3,3.9,91,96135,0,0,291,0,0,0,0,0,0,0,50,2.6,6,6,4000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,8,10,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,4,93,95624,0,0,304,0,0,0,0,0,0,0,94,0.5,9,9,4000,7500,9,999999999,14,0,0,88,0.2,0,0 +2008,8,10,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,4,93,95624,0,0,304,0,0,0,0,0,0,0,298,1,9,9,5000,7500,9,999999999,14,0,0,88,0.2,0,0 +2008,8,10,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4.9,3.8,93,96193,0,0,303,0,0,0,0,0,0,0,320,2.6,9,9,5000,7500,9,999999999,14,0,0,88,0.2,0,0 +2008,8,10,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,4,87,95644,254,1272,308,57,0,57,5603,0,5643,2039,360,2.6,9,9,6000,7500,9,999999999,14,0,0,88,0.2,0,0 +2008,8,10,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,6,81,95702,488,1330,324,150,7,148,16750,471,16533,5387,70,0,9,9,7000,7500,9,999999999,17,0,0,88,0.2,0,0 +2008,8,10,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,5.9,66,96237,675,1330,338,235,21,224,26329,1690,25272,8605,260,1.5,9,9,7000,7500,9,999999999,17,0,0,88,0.2,0,0 +2008,8,10,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,14,7,63,95797,802,1330,349,294,54,261,33302,4504,29772,10624,80,1,9,9,7000,7500,9,999999999,19,0,0,88,0.2,0,0 +2008,8,10,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,16,7,55,95834,861,1330,333,613,639,199,71745,47144,23434,9108,139,1,3,3,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,8,10,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17.9,7.4,50,96091,847,1330,361,410,213,274,46651,17863,31371,11354,290,1.5,8,8,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2008,8,10,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18,7,49,95870,762,1330,369,275,12,268,30881,1050,30261,10427,40,2.1,9,9,9900,7500,9,999999999,19,0,0,88,0.2,0,0 +2008,8,10,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,19,7,46,95888,611,1330,374,205,10,200,22904,779,22498,7516,72,0,9,9,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,8,10,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,19.1,6.5,44,96056,405,1330,366,150,68,129,16486,4001,14265,4419,254,0,8,8,9900,6900,9,999999999,18,0,0,88,0.2,0,0 +2008,8,10,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,7,52,95852,157,1330,324,51,48,45,5575,0,4978,1430,190,1,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,8,10,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,8,63,95815,0,765,316,0,0,0,0,0,0,0,310,1.5,0,0,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,8,10,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,13.5,8.3,71,96114,0,0,341,0,0,0,0,0,0,0,225,0,8,8,8000,77777,9,999999999,22,0,0,88,0.2,0,0 +2008,8,10,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,8,72,95778,0,0,308,0,0,0,0,0,0,0,130,3.6,0,0,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,8,10,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,7,67,95778,0,0,307,0,0,0,0,0,0,0,170,2.1,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,8,10,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11,7.5,79,96236,0,0,328,0,0,0,0,0,0,0,210,1,8,8,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2008,8,10,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,7,87,95702,0,0,290,0,0,0,0,0,0,0,340,2.1,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,8,11,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,7,87,95702,0,0,290,0,0,0,0,0,0,0,90,0.5,0,0,6000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,8,11,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.2,7.3,88,96183,0,0,320,0,0,0,0,0,0,0,350,1,8,8,6000,77777,9,999999999,20,0,0,88,0.2,0,0 +2008,8,11,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,7,87,95702,0,0,290,0,0,0,0,0,0,0,230,2.1,0,0,6000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,8,11,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,7,87,95702,0,0,290,0,0,0,0,0,0,0,200,1.5,0,0,6000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,8,11,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8,6.4,90,96226,0,0,320,0,0,0,0,0,0,0,280,2.6,9,9,6000,77777,9,999999999,18,0,0,88,0.2,0,0 +2008,8,11,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,6,87,95683,0,0,285,0,0,0,0,0,0,0,260,2.1,0,0,6000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,8,11,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,5,87,95663,0,0,296,0,0,0,0,0,0,0,238,0.5,5,5,6000,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,8,11,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6.7,5.4,91,96314,0,0,313,0,0,0,0,0,0,0,50,0.5,9,9,6000,5400,9,999999999,16,0,0,88,0.2,0,0 +2008,8,11,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,6,93,95663,259,1295,315,59,0,59,5748,0,5790,2093,330,2.1,9,9,5000,5100,9,999999999,17,0,0,88,0.2,0,0 +2008,8,11,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,7,87,95702,493,1330,325,152,7,150,16966,476,16744,5465,40,2.6,9,9,5000,5100,9,999999999,19,0,0,88,0.2,0,0 +2008,8,11,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,7.4,84,96321,680,1330,330,237,41,216,26630,3216,24402,8442,200,2.6,9,9,8000,5100,9,999999999,20,0,0,88,0.2,0,0 +2008,8,11,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,8,76,95759,808,1330,340,296,63,258,33583,5149,29429,10578,160,4.6,9,9,8000,5400,9,999999999,21,0,0,88,0.2,0,0 +2008,8,11,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,8,76,95759,867,1330,340,323,65,281,36837,5429,32227,11709,160,5.1,9,9,8000,5400,9,999999999,21,0,0,88,0.2,0,0 +2008,8,11,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12.9,7.3,69,96187,853,1330,344,317,65,276,36116,5420,31586,11443,170,4.6,9,9,8000,5400,9,999999999,20,0,0,88,0.2,0,0 +2008,8,11,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,8,72,95778,767,1330,345,277,61,242,31351,4914,27527,9812,160,4.6,9,9,8000,5400,9,999999999,21,0,0,88,0.2,0,0 +2008,8,11,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,8,72,95778,616,1330,345,207,36,190,23195,2680,21433,7302,160,5.1,9,9,8000,5400,9,999999999,21,0,0,88,0.2,0,0 +2008,8,11,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12.7,7.2,69,96231,409,1330,352,71,0,71,7053,0,7108,2890,150,4.1,10,10,8000,5400,9,999999999,19,0,0,88,0.2,0,0 +2008,8,11,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,7,71,95759,160,1330,349,17,0,17,1617,0,1629,654,120,2.6,10,10,8000,5100,9,999999999,19,0,0,88,0.2,0,0 +2008,8,11,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,7,76,95740,0,781,334,0,0,0,0,0,0,0,170,2.6,9,9,8000,5100,9,999999999,19,0,0,88,0.2,0,0 +2008,8,11,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10.9,6.2,73,96329,0,0,343,0,0,0,0,0,0,0,160,2.1,10,10,8000,4800,9,999999999,18,0,0,88,0.2,0,0 +2008,8,11,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,6,71,95740,0,0,343,0,0,0,0,0,0,0,190,1.5,10,10,8000,3000,9,999999999,17,0,0,88,0.2,0,0 +2008,8,11,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,10,7,82,95721,0,0,339,0,0,0,0,0,0,0,79,1,10,10,8000,2700,9,999999999,19,0,0,88,0.2,0.5,0 +2008,8,11,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11.2,6.5,73,96306,0,0,344,0,0,0,0,0,0,0,290,1.5,10,10,8000,2100,9,999999999,18,0,0,88,0.2,0,0 +2008,8,11,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,8,87,95721,0,0,340,0,0,0,0,0,0,0,30,3.1,10,10,5000,1800,0,919999999,21,0,0,88,0.2,0,0 +2008,8,12,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,7,82,95721,0,0,339,0,0,0,0,0,0,0,30,5.7,10,10,7000,1500,0,919999999,19,0,0,88,0.2,0,0 +2008,8,12,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.5,7.7,89,96151,0,0,338,0,0,0,0,0,0,0,210,2.1,10,10,7000,2400,0,919999999,20,0,0,88,0.2,0,0 +2008,8,12,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,8,87,95721,0,0,340,0,0,0,0,0,0,0,170,1.5,10,10,6000,2400,0,919999999,21,0,0,88,0.2,0,0 +2008,8,12,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,8,93,95702,0,0,326,0,0,0,0,0,0,0,172,1,9,9,6000,2400,0,919999999,21,0,0,88,0.2,0,0 +2008,8,12,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8.7,7.8,94,96069,0,0,334,0,0,0,0,0,0,0,203,0.5,10,10,4000,2700,0,919999999,21,0,0,88,0.2,0,0 +2008,8,12,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,8,93,95702,0,0,326,0,0,0,0,0,0,0,180,3.1,9,9,5000,2700,0,919999999,21,0,0,88,0.2,0,0 +2008,8,12,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,8,93,95702,0,0,326,0,0,0,0,0,0,0,150,1.5,9,9,6000,2700,0,919999999,21,0,0,88,0.2,0,0 +2008,8,12,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.4,8,91,96225,0,0,337,0,0,0,0,0,0,0,200,3.6,10,10,4000,1500,0,919999999,21,0,0,88,0.2,0,0 +2008,8,12,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,8,93,95702,264,1318,335,37,0,37,3596,0,3622,1452,150,3.6,10,10,5000,1500,0,919999999,21,0,0,88,0.2,0,0 +2008,8,12,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,9,93,95721,498,1330,341,94,0,94,9405,0,9482,3917,170,4.6,10,10,5000,300,0,919999999,23,0,0,88,0.2,0,0 +2008,8,12,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,8.6,91,96472,686,1330,341,145,0,145,14805,0,14934,6385,150,4.1,10,10,5000,480,0,919999999,22,0,0,88,0.2,0,0 +2008,8,12,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,9,93,95721,813,1330,341,182,1,181,21217,39,21277,8228,170,4.6,10,10,5000,330,0,919999999,23,0,0,88,0.2,0,0 +2008,8,12,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,8,87,95721,872,1330,340,199,5,195,23323,365,23049,9022,180,5.7,10,10,5000,270,0,919999999,21,0,0,88,0.2,0,0 +2008,8,12,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11.6,8.1,79,96607,858,1330,339,319,24,304,36082,2101,34531,12206,170,5.7,9,9,5000,1200,0,919999999,21,0,0,88,0.2,0,0 +2008,8,12,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,7,71,95759,772,1330,339,279,61,244,31679,5013,27785,9906,150,4.1,9,9,5000,600,0,919999999,19,0,0,88,0.2,0,0 +2008,8,12,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,7,71,95759,620,1330,339,209,77,173,23669,5514,19717,6897,170,3.1,9,9,5000,1200,0,919999999,19,0,0,88,0.2,0,0 +2008,8,12,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12.4,5.8,64,96584,413,1330,316,226,345,119,25152,19574,13312,4259,200,3.6,3,3,5000,77777,0,919999999,17,0,0,88,0.2,0,0 +2008,8,12,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,12,6,67,95759,164,1330,319,51,87,40,5614,0,4438,1336,220,1.5,5,5,9900,77777,0,919999999,17,0,0,88,0.2,0,0 +2008,8,12,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,10,6,76,95721,0,797,317,0,0,0,0,0,0,0,250,1,7,7,9900,77777,0,919999999,17,0,0,88,0.2,0,0 +2008,8,12,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8.2,5.4,82,96655,0,0,285,0,0,0,0,0,0,0,220,1,0,0,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,8,12,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,8,5,81,95683,0,0,312,0,0,0,0,0,0,0,33,1,8,8,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,8,12,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,5,93,95644,0,0,276,0,0,0,0,0,0,0,331,0.5,0,0,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,8,12,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,4.2,88,96791,0,0,275,0,0,0,0,0,0,0,280,1.5,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,8,12,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5,5,100,95624,0,0,272,0,0,0,0,0,0,0,40,3.1,0,0,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,8,13,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,4,93,95624,0,0,271,0,0,0,0,0,0,0,207,1,0,0,5000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,8,13,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,2.8,1.8,93,96660,0,0,276,0,0,0,0,0,0,0,40,1.5,5,5,3000,77777,0,999999999,11,0,0,88,0.2,0,0 +2008,8,13,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3,2,93,95584,0,0,277,0,0,0,0,0,0,0,106,1,5,5,2000,77777,0,999999999,12,0,0,88,0.2,0,0 +2008,8,13,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,1,1,100,95544,0,0,292,0,0,0,0,0,0,0,160,0,10,10,300,30,0,999999999,11,0,0,88,0.2,0,0 +2008,8,13,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,-0.2,-0.5,98,96495,0,0,285,0,0,0,0,0,0,0,40,1,10,10,400,77777,0,999999999,9,0,0,88,0.213,0,0 +2008,8,13,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,0,0,100,95523,0,0,287,0,0,0,0,0,0,0,330,1,10,10,300,60,0,999999999,10,0,0,88,0.2,0,0 +2008,8,13,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,0,0,100,95523,0,0,287,0,0,0,0,0,0,0,168,0.5,10,10,300,30,0,999999999,10,0,0,88,0.2,0,0 +2008,8,13,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,-0.3,-0.4,99,96483,1,10,285,0,0,0,17,0,17,7,280,1.5,10,10,300,30,0,999999999,9,0,0,88,0.22,0,0 +2008,8,13,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,0,0,100,95523,269,1331,263,113,176,77,12430,6013,8544,2566,190,1,5,5,300,77777,0,999999999,10,0,0,88,0.2,0,0 +2008,8,13,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4,4,100,95604,504,1331,279,301,498,113,34446,29556,12945,4534,128,1,3,3,2000,77777,0,999999999,14,0,0,88,0.2,0,0 +2008,8,13,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.4,5.6,83,96441,692,1331,286,469,712,99,56276,42836,11962,4671,360,1.5,0,0,5000,77777,0,999999999,17,0,0,88,0.2,0,0 +2008,8,13,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,6,71,95740,819,1331,297,584,793,97,71796,48027,11923,4849,350,2.1,0,0,5000,77777,0,999999999,17,0,0,88,0.2,0,0 +2008,8,13,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,6,59,95797,878,1331,310,638,817,100,78963,49908,12355,5091,20,2.1,0,0,8000,77777,0,999999999,17,0,0,88,0.2,0,0 +2008,8,13,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,16.3,5.3,48,96109,863,1331,319,626,815,98,77397,49784,12098,4971,167,1,0,0,8000,77777,0,999999999,16,0,0,88,0.2,0,0 +2008,8,13,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,17,5,45,95852,777,1331,332,546,775,94,66825,46838,11572,4656,180,2.1,2,2,9900,77777,0,999999999,15,0,0,88,0.2,0,0 +2008,8,13,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,18,1,32,95870,625,1331,322,413,619,122,48179,40230,14349,5334,220,1.5,0,0,9900,77777,0,999999999,10,0,0,88,0.2,0,0 +2008,8,13,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17.6,1.8,35,95991,417,1331,321,233,459,90,26644,23187,10299,3510,230,2.1,0,0,9900,77777,0,999999999,11,0,0,88,0.2,0,0 +2008,8,13,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,16,7,55,95834,167,1331,333,56,125,40,6183,0,4454,1349,220,2.6,3,3,9900,77777,0,999999999,19,0,0,88,0.2,0,0 +2008,8,13,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,13,5,58,95778,0,813,320,0,0,0,0,0,0,0,180,2.1,4,4,9900,77777,0,999999999,15,0,0,88,0.2,0,0 +2008,8,13,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11.8,5.1,63,96053,0,0,299,0,0,0,0,0,0,0,180,2.1,0,0,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,8,13,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,10,6,76,95721,0,0,317,0,0,0,0,0,0,0,171,1,7,7,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,8,13,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,8,4,76,95683,0,0,306,0,0,0,0,0,0,0,22,0.5,7,7,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,8,13,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,5.2,2.9,85,96086,0,0,285,0,0,0,0,0,0,0,40,2.6,4,4,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,8,13,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,3,81,95644,0,0,274,0,0,0,0,0,0,0,40,1.5,0,0,7000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,8,14,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,3,87,95624,0,0,270,0,0,0,0,0,0,0,117,0,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,8,14,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5.5,3.4,86,96054,0,0,288,0,0,0,0,0,0,0,260,2.1,5,5,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,8,14,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5,3,87,95624,0,0,270,0,0,0,0,0,0,0,40,2.1,0,0,7000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,8,14,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,5,3,87,95624,0,0,303,0,0,0,0,0,0,0,30,1.5,9,9,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,8,14,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,5,3.3,89,95883,0,0,289,0,0,0,0,0,0,0,231,1,6,6,7000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,8,14,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,3,81,95644,0,0,307,0,0,0,0,0,0,0,103,0,9,9,8000,5100,9,999999999,13,0,0,88,0.2,0,0 +2008,8,14,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5,3,87,95624,0,0,270,0,0,0,0,0,0,0,280,2.1,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,8,14,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.2,3,86,96020,7,33,297,1,0,1,118,0,118,48,30,2.1,8,8,6000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,8,14,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,4,81,95663,274,1331,313,64,0,64,6292,0,6338,2282,50,3.6,9,9,8000,5400,9,999999999,14,0,0,88,0.2,0,0 +2008,8,14,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,5,81,95683,509,1331,301,288,145,232,31039,12422,25208,6974,72,1,5,5,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,8,14,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,9.7,4.5,70,96051,697,1331,335,150,0,150,15258,0,15390,6571,102,0.5,10,10,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,8,14,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,4,58,95759,825,1331,336,305,24,290,34499,2147,32988,11553,313,0.5,9,9,8000,6000,9,999999999,14,0,0,88,0.2,0,0 +2008,8,14,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,6,62,95778,883,1331,343,332,66,288,37886,5635,33090,12034,172,1,9,9,8000,6000,9,999999999,17,0,0,88,0.2,0,0 +2008,8,14,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14.2,6.6,60,96155,869,1331,349,325,65,282,37029,5534,32363,11747,292,1,9,9,8000,5100,9,999999999,18,0,0,88,0.2,0,0 +2008,8,14,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,7,63,95797,782,1331,349,284,23,270,31977,1976,30618,10663,240,2.6,9,9,8000,5100,9,999999999,19,0,0,88,0.2,0,0 +2008,8,14,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,7,63,95797,629,1331,329,384,169,304,41577,16157,33131,9391,170,3.6,5,5,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,8,14,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,5.8,62,96189,421,1331,343,121,18,116,13570,1025,12978,4219,160,4.1,9,9,8000,5100,9,999999999,17,0,0,88,0.2,0,0 +2008,8,14,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,6,67,95759,171,1331,338,30,0,30,2941,0,2962,1100,150,2.1,9,9,8000,5400,9,999999999,17,0,0,88,0.2,0,0 +2008,8,14,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,5,62,95759,0,829,337,0,0,0,0,0,0,0,99,1,9,9,8000,4500,9,999999999,15,0,0,88,0.2,0,0 +2008,8,14,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.2,6.5,78,96353,0,0,330,0,0,0,0,0,0,0,180,2.1,9,9,8000,4500,9,999999999,18,0,0,88,0.2,0,0 +2008,8,14,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,6,76,95721,0,0,329,0,0,0,0,0,0,0,140,2.1,9,9,8000,4500,9,999999999,17,0,0,88,0.2,0,0 +2008,8,14,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,7,87,95702,0,0,325,0,0,0,0,0,0,0,240,3.1,9,9,8000,3900,9,999999999,19,0,0,88,0.2,0,0 +2008,8,14,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.5,6.8,89,96396,0,0,323,0,0,0,0,0,0,0,340,2.1,9,9,8000,3900,9,999999999,19,0,0,88,0.2,0,0 +2008,8,14,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,6,87,95683,0,0,319,0,0,0,0,0,0,0,125,1,9,9,8000,4500,9,999999999,17,0,0,88,0.2,0,0 +2008,8,15,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,7,87,95702,0,0,325,0,0,0,0,0,0,0,240,1.5,9,9,8000,3900,9,999999999,19,0,0,88,0.2,0,0 +2008,8,15,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.9,6.2,89,96441,0,0,319,0,0,0,0,0,0,0,210,1.5,9,9,6000,3900,9,999999999,18,0,0,88,0.2,0,0 +2008,8,15,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,6,87,95683,0,0,319,0,0,0,0,0,0,0,170,2.1,9,9,7000,3900,9,999999999,17,0,0,88,0.2,0,0 +2008,8,15,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,6,87,95683,0,0,319,0,0,0,0,0,0,0,170,1.5,9,9,7000,3900,9,999999999,17,0,0,88,0.2,0,0 +2008,8,15,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.3,5.9,91,96448,0,0,316,0,0,0,0,0,0,0,120,1,9,9,5000,3900,9,999999999,17,0,0,88,0.2,0,0 +2008,8,15,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,5,93,95644,0,0,309,0,0,0,0,0,0,0,269,1,9,9,5000,3900,9,999999999,16,0,0,88,0.2,0,0 +2008,8,15,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,5,93,95644,0,0,309,0,0,0,0,0,0,0,155,1,9,9,4000,3900,9,999999999,16,0,0,88,0.2,0,0 +2008,8,15,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6.1,5.4,95,96547,12,56,310,2,0,2,153,0,154,63,241,0.5,9,9,3000,3900,9,999999999,16,0,0,88,0.2,0,0 +2008,8,15,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,6,87,95683,279,1332,319,66,0,66,6454,0,6502,2343,60,1,9,9,4000,3900,9,999999999,17,0,0,88,0.2,0,0 +2008,8,15,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,7,93,95683,515,1332,321,161,28,151,18069,1845,16951,5632,270,2.1,9,9,4000,3900,9,999999999,19,0,0,88,0.2,0,0 +2008,8,15,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9.2,7,86,96599,703,1332,335,151,0,151,15349,0,15482,6629,237,1,10,10,4000,3600,9,999999999,19,0,0,88,0.2,0,0 +2008,8,15,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,7,82,95721,830,1332,330,307,24,292,34612,2079,33123,11638,200,1.5,9,9,5000,3600,9,999999999,19,0,0,88,0.2,0,0 +2008,8,15,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,8,87,95721,889,1332,331,334,65,290,38042,5512,33279,12128,230,2.6,9,9,5000,3000,9,999999999,21,0,0,88,0.2,0,0 +2008,8,15,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.5,7.5,82,96548,874,1332,333,327,65,284,37253,5489,32583,11842,270,1.5,9,9,7000,3000,9,999999999,20,0,0,88,0.2,0,0 +2008,8,15,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,8,82,95740,787,1332,336,286,62,249,32407,5025,28435,10172,40,3.6,9,9,5000,2700,9,999999999,21,0,0,88,0.2,0,0 +2008,8,15,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,8,82,95740,634,1332,336,215,19,206,24028,1486,23122,7813,350,1.5,9,9,7000,2400,9,999999999,21,0,0,88,0.2,0,0 +2008,8,15,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12.1,7,71,96399,425,1332,340,123,11,119,13705,644,13356,4328,140,2.1,9,9,7000,2400,0,919999999,19,0,0,88,0.2,0,0 +2008,8,15,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,7,71,95759,174,1332,339,31,0,31,3036,0,3057,1135,110,1.5,9,9,6000,2400,0,919999999,19,0,0,88,0.2,0,0 +2008,8,15,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,7,76,95740,0,845,344,0,0,0,0,0,0,0,220,2.6,10,10,7000,3000,0,919999999,19,0,0,88,0.2,0,0 +2008,8,15,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12.1,6.1,67,96342,0,0,339,0,0,0,0,0,0,0,140,4.6,9,9,8000,2400,9,999999999,17,0,0,88,0.2,0,0 +2008,8,15,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,6,76,95721,0,0,329,0,0,0,0,0,0,0,101,1,9,9,8000,3600,9,999999999,17,0,0,88,0.2,0,0 +2008,8,15,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,6,87,95683,0,0,302,0,0,0,0,0,0,0,40,3.1,5,5,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,8,15,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.8,6.4,85,96203,0,0,324,0,0,0,0,0,0,0,360,2.6,9,9,8000,3600,9,999999999,18,0,0,88,0.2,0,0 +2008,8,15,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,6,81,95702,0,0,324,0,0,0,0,0,0,0,240,1,9,9,8000,3000,9,999999999,17,0,0,88,0.2,0,0 +2008,8,16,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,7,87,95702,0,0,325,0,0,0,0,0,0,0,94,1,9,9,8000,3000,9,999999999,19,0,0,88,0.2,0,0 +2008,8,16,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.5,6.7,88,96056,0,0,332,0,0,0,0,0,0,0,260,1.5,10,10,8000,1500,9,999999999,18,0,0,88,0.2,0,0 +2008,8,16,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,7,87,95702,0,0,325,0,0,0,0,0,0,0,111,0.5,9,9,6000,1500,9,999999999,19,0,0,88,0.2,0,0 +2008,8,16,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,6,81,95702,0,0,324,0,0,0,0,0,0,0,60,4.1,9,9,6000,1200,9,999999999,17,0,0,88,0.2,0,0 +2008,8,16,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.9,6.2,78,96064,0,0,338,0,0,0,0,0,0,0,250,3.6,10,10,8000,1200,9,999999999,18,0,0,88,0.2,0,0 +2008,8,16,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,6,81,95702,0,0,324,0,0,0,0,0,0,0,90,2.1,9,9,8000,1200,9,999999999,17,0,0,88,0.2,0,0 +2008,8,16,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,6,81,95702,0,0,333,0,0,0,0,0,0,0,180,1.5,10,10,8000,2400,9,999999999,17,0,0,88,0.2,0,0 +2008,8,16,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14.3,2,43,96110,17,79,354,1,0,1,133,0,134,55,340,4.1,10,10,8000,900,9,999999999,11,0,0,88,0.2,0,0 +2008,8,16,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,3,44,95815,284,1332,359,41,0,41,4071,0,4101,1641,350,6.7,10,10,8000,2400,9,999999999,13,0,0,88,0.2,0,0 +2008,8,16,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,4,48,95815,520,1332,360,100,0,100,10095,0,10177,4204,330,3.1,10,10,8000,2400,9,999999999,14,0,0,88,0.2,0,0 +2008,8,16,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.7,7.4,86,95938,709,1332,338,152,0,152,15499,0,15634,6704,160,5.7,10,10,8000,2100,0,919999999,20,0,0,88,0.2,0,0 +2008,8,16,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,8,93,95702,836,1332,335,188,1,188,22020,49,22075,8566,160,8.7,10,10,7000,1500,0,919999999,21,0,0,88,0.2,0,0 +2008,8,16,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,8,93,95702,895,1332,335,205,1,204,24054,71,24098,9446,110,2.1,10,10,4500,1500,0,919999999,21,0,0,88,0.2,0,0 +2008,8,16,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.4,8.6,89,95923,880,1332,343,200,1,200,23501,65,23548,9212,30,6.7,10,10,4500,1500,0,919999999,22,0,0,88,0.2,0,0 +2008,8,16,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,9,93,95721,792,1332,341,175,1,175,20460,59,20496,7891,340,7.2,10,10,5000,1800,0,919999999,23,0,0,88,0.2,0,0 +2008,8,16,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,10,9,93,95721,639,1332,341,177,11,171,20070,793,19548,6947,360,7.2,10,10,5000,77777,0,919999999,23,0,0,88,0.2,0,0 +2008,8,16,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.4,8.8,90,95771,429,1332,343,76,0,76,7527,0,7586,3098,10,3.6,10,10,5000,1500,0,919999999,23,0,0,88,0.2,0,0 +2008,8,16,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,9,87,95740,178,1332,346,20,0,20,1900,0,1913,769,340,3.6,10,10,5000,1500,0,919999999,23,0,0,88,0.2,0,0 +2008,8,16,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,9,87,95740,0,861,346,0,0,0,0,0,0,0,20,4.1,10,10,5000,1500,0,919999999,23,0,0,88,0.2,0,0 +2008,8,16,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.9,9.3,90,95781,0,0,346,0,0,0,0,0,0,0,350,5.7,10,10,5000,1500,0,919999999,24,0,0,88,0.2,5,0 +2008,8,16,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,9,87,95740,0,0,346,0,0,0,0,0,0,0,350,5.7,10,10,5000,1500,0,919999999,23,0,0,88,0.2,5,0 +2008,8,16,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,9,87,95740,0,0,346,0,0,0,0,0,0,0,10,5.7,10,10,5000,1800,0,919999999,23,0,0,88,0.2,5,0 +2008,8,16,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.7,9.6,93,95711,0,0,345,0,0,0,0,0,0,0,20,4.6,10,10,5000,900,0,919999999,25,0,0,88,0.2,5,0 +2008,8,16,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,10,94,95740,0,0,347,0,0,0,0,0,0,0,360,4.1,10,10,5000,1200,0,919999999,26,0,0,88,0.2,5,0 +2008,8,17,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,10,94,95740,0,0,347,0,0,0,0,0,0,0,10,3.6,10,10,5000,1200,0,919999999,26,0,0,88,0.2,5,0 +2008,8,17,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.7,10.2,97,95635,0,0,346,0,0,0,0,0,0,0,340,2.1,10,10,5000,1200,0,919999999,26,0,0,88,0.2,5,0 +2008,8,17,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,10,88,95759,0,0,352,0,0,0,0,0,0,0,360,2.6,10,10,5000,1200,0,919999999,26,0,0,88,0.2,5,0 +2008,8,17,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,10,94,95740,0,0,347,0,0,0,0,0,0,0,220,3.1,10,10,4000,900,0,919999999,26,0,0,88,0.2,5,0 +2008,8,17,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11.2,10.6,96,95598,0,0,349,0,0,0,0,0,0,0,220,4.1,10,10,5000,1200,0,919999999,27,0,0,88,0.2,0.7,0 +2008,8,17,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,9,93,95721,0,0,341,0,0,0,0,0,0,0,190,5.7,10,10,5000,1200,0,919999999,23,0,0,88,0.2,0,0 +2008,8,17,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,8,93,95702,0,0,335,0,0,0,0,0,0,0,230,7.7,10,10,4000,600,0,919999999,21,0,0,88,0.2,0,0 +2008,8,17,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.9,7.2,89,95818,22,103,334,2,0,2,172,0,173,71,160,3.1,10,10,5000,900,0,919999999,19,0,0,88,0.2,0,0 +2008,8,17,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9,7,87,95702,290,1333,334,42,0,42,4157,0,4188,1681,130,4.1,10,10,5000,1050,0,919999999,19,0,0,88,0.2,0,0 +2008,8,17,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,8,93,95702,526,1333,335,101,0,101,10164,0,10248,4250,180,2.1,10,10,5000,540,0,919999999,21,0,0,88,0.2,0,0 +2008,8,17,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9.9,8,88,96102,715,1333,330,252,87,205,28607,6589,23455,8408,190,2.6,9,9,5000,1800,0,919999999,21,0,0,88,0.2,0,0 +2008,8,17,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,12,7,71,95759,842,1333,320,562,371,328,62998,33927,36993,12579,206,0.5,5,5,5000,77777,0,919999999,19,0,0,88,0.2,0,0 +2008,8,17,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,7,71,95759,900,1333,339,339,78,287,38828,6573,33001,12125,330,1.5,9,9,5000,600,0,919999999,19,0,0,88,0.2,0,0 +2008,8,17,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,13.8,7.9,68,96100,885,1333,329,598,540,240,69180,42219,27903,10603,71,1,5,5,5000,77777,0,919999999,21,0,0,88,0.2,0,0 +2008,8,17,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,7,59,95815,797,1333,334,524,644,139,62397,42559,16609,6571,300,1.5,5,5,5000,77777,0,919999999,19,0,0,88,0.2,0,0 +2008,8,17,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,15,6,55,95815,643,1333,328,420,617,122,49095,39051,14347,5390,30,1,3,3,5000,77777,0,919999999,17,0,0,88,0.2,0,0 +2008,8,17,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14.2,7.5,64,96117,433,1333,326,241,444,97,27388,22609,11044,3771,210,2.6,3,3,5000,77777,0,919999999,20,0,0,88,0.2,0,0 +2008,8,17,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,13,7,67,95778,182,1333,325,59,111,44,6582,265,4915,1490,220,4.1,5,5,9900,77777,0,919999999,19,0,0,88,0.2,0,0 +2008,8,17,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,11,8,82,95740,0,877,329,0,0,0,0,0,0,0,210,3.6,8,8,9900,77777,0,919999999,21,0,0,88,0.2,0,0 +2008,8,17,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10.7,7.4,80,96287,0,0,310,0,0,0,0,0,0,0,190,4.1,3,3,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2008,8,17,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,7,82,95721,0,0,330,0,0,0,0,0,0,0,150,2.6,9,9,9900,900,9,999999999,19,0,0,88,0.2,0,0 +2008,8,17,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9,7,87,95702,0,0,307,0,0,0,0,0,0,0,150,2.6,5,5,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,8,17,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,8,6,87,95683,0,0,319,0,0,0,0,0,0,0,150,2.1,9,9,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,8,17,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,7,5,87,95663,0,0,314,0,0,0,0,0,0,0,170,1.5,9,9,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,8,18,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,6,5,93,95644,0,0,318,0,0,0,0,0,0,0,346,0,10,10,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,8,18,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,6,100,95644,0,0,289,0,0,0,0,0,0,0,20,2.1,3,3,5000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,8,18,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,5,100,95624,0,0,288,0,0,0,0,0,0,0,92,1.5,5,5,4000,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,8,18,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4,4,100,95604,0,0,279,0,0,0,0,0,0,0,155,0,3,3,600,77777,0,999999999,14,0,0,88,0.2,0,0 +2008,8,18,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3,2,93,95584,0,0,273,0,0,0,0,0,0,0,150,1,3,3,2000,77777,0,999999999,12,0,0,88,0.2,0,0 +2008,8,18,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3,2,93,95584,0,0,273,0,0,0,0,0,0,0,260,1,3,3,1500,77777,0,999999999,12,0,0,88,0.2,0,0 +2008,8,18,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3,2,93,95584,0,0,273,0,0,0,0,0,0,0,262,1,3,3,1500,77777,0,999999999,12,0,0,88,0.2,0,0 +2008,8,18,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4,3,93,95604,27,127,278,7,0,7,672,0,677,246,248,0,3,3,1200,77777,0,999999999,13,0,0,88,0.2,0,0 +2008,8,18,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,4,93,95624,295,1333,283,137,286,74,15298,9811,8245,2601,311,0,3,3,3000,77777,0,999999999,14,0,0,88,0.2,0,0 +2008,8,18,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,6,87,95683,532,1333,285,328,561,104,37921,32230,12078,4361,197,0.5,0,0,7000,77777,0,999999999,17,0,0,88,0.2,0,0 +2008,8,18,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,8,82,95740,721,1333,299,493,726,101,59297,43226,12142,4789,115,1,0,0,8000,77777,0,999999999,21,0,0,88,0.2,0,0 +2008,8,18,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,12,7,71,95759,848,1333,315,602,775,109,73561,47928,13370,5454,351,0.5,3,3,8000,77777,0,999999999,19,0,0,88,0.2,0,0 +2008,8,18,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,14,8,67,95797,906,1333,325,653,794,114,80293,49162,14036,5796,185,1,3,3,8000,77777,0,999999999,21,0,0,88,0.2,0,0 +2008,8,18,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,7,59,95815,891,1333,329,640,792,112,78648,49217,13760,5665,180,2.6,3,3,8000,77777,0,999999999,19,0,0,88,0.2,0,0 +2008,8,18,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,7,59,95815,803,1333,329,561,739,116,67695,46402,14112,5665,150,2.6,3,3,8000,77777,0,999999999,19,0,0,88,0.2,0,0 +2008,8,18,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,9,67,95815,648,1333,331,422,623,119,49399,38199,14003,5294,210,5.7,3,3,8000,77777,0,999999999,23,0,0,88,0.2,0,0 +2008,8,18,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,8,67,95797,437,1333,330,230,372,108,25935,20020,12246,4107,210,5.7,5,5,8000,77777,0,999999999,21,0,0,88,0.2,0,0 +2008,8,18,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,8,76,95759,185,1333,321,62,74,51,6762,501,5660,1662,210,5.7,5,5,8000,77777,0,999999999,21,0,0,88,0.2,0,0 +2008,8,18,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,8,82,95740,0,892,317,0,0,0,0,0,0,0,200,3.6,5,5,8000,77777,0,999999999,21,0,0,88,0.2,0,0 +2008,8,18,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10.2,7.8,85,96240,0,0,308,0,0,0,0,0,0,0,160,3.6,3,3,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,8,18,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,8,87,95721,0,0,312,0,0,0,0,0,0,0,170,4.6,5,5,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,8,18,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9,7,87,95702,0,0,307,0,0,0,0,0,0,0,160,3.6,5,5,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,8,18,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9,7,87,95702,0,0,325,0,0,0,0,0,0,0,150,2.6,9,9,8000,1800,9,999999999,19,0,0,88,0.2,0,0 +2008,8,18,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8,7,93,95683,0,0,321,0,0,0,0,0,0,0,170,2.6,9,9,8000,2400,9,999999999,19,0,0,88,0.2,0,0 +2008,8,19,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7,6,93,95663,0,0,297,0,0,0,0,0,0,0,120,2.6,5,5,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,8,19,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7.8,6.6,92,96373,0,0,312,0,0,0,0,0,0,0,140,3.6,8,8,8000,2700,9,999999999,18,0,0,88,0.2,0,0 +2008,8,19,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7,6,93,95663,0,0,315,0,0,0,0,0,0,0,160,2.1,9,9,8000,2700,9,999999999,17,0,0,88,0.2,0,0 +2008,8,19,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,7,6,93,95663,0,0,315,0,0,0,0,0,0,0,7,0,9,9,8000,480,9,999999999,17,0,0,88,0.2,0,0 +2008,8,19,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7.7,6.1,90,96352,0,0,327,0,0,0,0,0,0,0,140,2.6,10,10,8000,480,9,999999999,17,0,0,88,0.2,0,0 +2008,8,19,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8,6,87,95683,0,0,329,0,0,0,0,0,0,0,190,1.5,10,10,8000,450,9,999999999,17,0,0,88,0.2,0,0 +2008,8,19,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8,6,87,95683,0,0,329,0,0,0,0,0,0,0,210,2.1,10,10,8000,510,9,999999999,17,0,0,88,0.2,0,0 +2008,8,19,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7.6,5.9,89,96501,32,151,327,3,0,3,254,0,256,103,160,2.6,10,10,8000,360,9,999999999,17,0,0,88,0.2,0,0 +2008,8,19,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,6,87,95683,301,1334,319,73,0,73,7225,0,7279,2616,150,2.6,9,9,8000,780,9,999999999,17,0,0,88,0.2,0,0 +2008,8,19,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9,7,87,95702,538,1334,325,171,29,159,19172,2030,17925,5986,150,3.1,9,9,8000,900,9,999999999,19,0,0,88,0.2,0,0 +2008,8,19,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8.7,6.6,87,96532,727,1334,332,157,0,157,18292,12,18360,6954,160,3.6,10,10,8000,900,9,999999999,18,0,0,88,0.2,0,0 +2008,8,19,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,8,87,95721,854,1334,331,317,24,301,35796,2089,34266,12093,170,1.5,9,9,9000,900,9,999999999,21,0,0,88,0.2,0,0 +2008,8,19,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,7,71,95759,912,1334,339,345,66,300,39372,5661,34419,12570,130,1.5,9,9,9000,900,9,999999999,19,0,0,88,0.2,0,0 +2008,8,19,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12.3,7,70,96393,896,1334,341,337,66,293,38479,5602,33643,12259,58,2.1,9,9,9000,690,9,999999999,19,0,0,88,0.2,0,0 +2008,8,19,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,8,72,95778,808,1334,345,295,62,257,33486,5124,29368,10544,230,2.6,9,9,8000,750,9,999999999,21,0,0,88,0.2,0,0 +2008,8,19,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,8,76,95759,653,1334,340,223,20,213,24949,1543,23994,8137,180,3.6,9,9,8000,990,9,999999999,21,0,0,88,0.2,0,0 +2008,8,19,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11.5,8.6,82,96340,441,1334,339,129,12,125,14387,708,13995,4555,170,4.6,9,9,8000,5100,9,999999999,22,0,0,88,0.2,0,0 +2008,8,19,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,7,76,95740,189,1334,334,35,0,35,3429,0,3454,1276,180,4.6,9,9,8000,5100,9,999999999,19,0,0,88,0.2,0,0 +2008,8,19,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,7,82,95721,0,908,330,0,0,0,0,0,0,0,210,3.1,9,9,8000,5100,9,999999999,19,0,0,88,0.2,0,0 +2008,8,19,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.3,7.7,90,96364,0,0,327,0,0,0,0,0,0,0,180,2.6,9,9,8000,5100,9,999999999,20,0,0,88,0.2,0,0 +2008,8,19,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,8,93,95702,0,0,326,0,0,0,0,0,0,0,160,3.1,9,9,8000,4500,9,999999999,21,0,0,88,0.2,0,0 +2008,8,19,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,8,93,95702,0,0,326,0,0,0,0,0,0,0,150,2.6,9,9,8000,900,9,999999999,21,0,0,88,0.2,0,0 +2008,8,19,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.6,7.6,93,96455,0,0,333,0,0,0,0,0,0,0,160,2.6,10,10,8000,1200,9,999999999,20,0,0,88,0.2,0,0 +2008,8,19,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,7,93,95683,0,0,321,0,0,0,0,0,0,0,160,3.6,9,9,7000,600,9,999999999,19,0,0,88,0.2,0,0 +2008,8,20,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,7,93,95683,0,0,330,0,0,0,0,0,0,0,170,2.6,10,10,7000,600,9,999999999,19,0,0,88,0.2,0,0 +2008,8,20,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.3,7.3,93,96515,0,0,331,0,0,0,0,0,0,0,180,3.1,10,10,7000,600,9,999999999,20,0,0,88,0.2,0,0 +2008,8,20,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,7,93,95683,0,0,330,0,0,0,0,0,0,0,160,2.6,10,10,7000,600,9,999999999,19,0,0,88,0.2,0,0 +2008,8,20,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,7,93,95683,0,0,330,0,0,0,0,0,0,0,150,3.1,10,10,8000,450,9,999999999,19,0,0,88,0.2,0,0 +2008,8,20,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.6,6.9,95,96520,0,0,328,0,0,0,0,0,0,0,170,3.6,10,10,5000,450,9,999999999,19,0,0,88,0.2,0,0 +2008,8,20,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,7,93,95683,0,0,330,0,0,0,0,0,0,0,140,1.5,10,10,6000,450,9,999999999,19,0,0,88,0.2,0,0 +2008,8,20,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,6,100,95644,0,0,319,0,0,0,0,0,0,0,180,2.1,10,10,6000,450,9,999999999,17,0,0,88,0.2,0,0 +2008,8,20,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.4,6.5,94,96648,37,176,317,5,0,5,486,0,489,190,110,2.1,9,9,5000,450,9,999999999,18,0,0,88,0.2,0,0 +2008,8,20,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,7,93,95683,307,1334,321,75,0,75,7421,0,7477,2688,59,1,9,9,5000,450,9,999999999,19,0,0,88,0.2,0,0 +2008,8,20,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,7,87,95702,544,1334,325,174,16,167,19411,1103,18790,6220,289,1,9,9,5000,450,9,999999999,19,0,0,88,0.2,0,0 +2008,8,20,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.5,6.1,79,96708,733,1334,326,261,89,212,29671,6945,24221,8708,220,1.5,9,9,6000,450,9,999999999,17,0,0,88,0.2,0,0 +2008,8,20,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,5,66,95740,860,1334,314,579,530,237,66835,42305,27551,10355,283,0.5,5,5,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,8,20,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,6,62,95778,918,1334,319,666,774,134,81031,50537,16349,6712,190,3.1,3,3,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,8,20,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13.7,4.9,55,96647,902,1334,321,652,805,109,80450,50453,13470,5559,190,2.6,3,3,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,8,20,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,6,59,95797,813,1334,323,570,763,106,69515,47182,12946,5236,190,4.6,3,3,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,8,20,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,3,47,95797,657,1334,320,434,537,169,49617,39122,19444,6991,210,5.1,3,3,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,8,20,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,3,51,95778,446,1334,339,132,22,125,14768,1329,14007,4570,200,6.7,9,9,8000,1800,9,999999999,13,0,0,88,0.2,0,0 +2008,8,20,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,6,71,95740,192,1334,315,65,132,46,7278,812,5179,1577,160,5.1,5,5,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,8,20,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9,6,81,95702,0,924,324,0,0,0,0,0,0,0,160,4.6,9,9,8000,3000,9,999999999,17,0,0,88,0.2,0,0 +2008,8,20,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8.8,5,77,96931,0,0,322,0,0,0,0,0,0,0,140,4.6,9,9,8000,3000,9,999999999,16,0,0,88,0.2,0,0 +2008,8,20,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8,5,81,95683,0,0,318,0,0,0,0,0,0,0,150,4.1,9,9,8000,2400,9,999999999,16,0,0,88,0.2,0,0 +2008,8,20,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8,5,81,95683,0,0,318,0,0,0,0,0,0,0,150,3.6,9,9,8000,2400,9,999999999,16,0,0,88,0.2,0,0 +2008,8,20,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8,4.2,77,96575,0,0,318,0,0,0,0,0,0,0,150,2.6,9,9,8000,2400,9,999999999,14,0,0,88,0.2,0,0 +2008,8,20,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7,4,81,95663,0,0,295,0,0,0,0,0,0,0,210,1.5,5,5,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,8,21,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,6,4,87,95644,0,0,291,0,0,0,0,0,0,0,260,2.1,5,5,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,8,21,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,6,4.5,90,97027,0,0,302,0,0,0,0,0,0,0,186,0.5,8,8,8000,2100,9,999999999,15,0,0,88,0.2,0,0 +2008,8,21,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,6,4,87,95644,0,0,287,0,0,0,0,0,0,0,266,0.5,3,3,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,8,21,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,4,3,93,95604,0,0,278,0,0,0,0,0,0,0,4,1,3,3,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,8,21,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,4.3,3.8,97,96917,0,0,268,0,0,0,0,0,0,0,184,0.5,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,8,21,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,3,2,93,95584,0,0,302,0,0,0,0,0,0,0,205,0,10,10,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,8,21,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,4,3,93,95604,0,0,307,0,0,0,0,0,0,0,102,1,10,10,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,8,21,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,3.5,2.7,94,96929,43,201,264,11,0,11,1081,0,1088,378,240,2.1,0,0,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,8,21,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,5,4,93,95624,313,1335,283,149,305,77,16622,11393,8663,2756,260,1,3,3,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,8,21,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,8,5,81,95683,550,1335,296,338,551,112,39110,33051,12953,4677,280,0.5,3,3,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,8,21,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,9.6,4.2,69,96937,739,1335,307,476,523,187,54841,39073,21638,8007,151,1,5,5,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,8,21,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,10,4,66,95721,866,1335,308,585,664,154,69902,45879,18529,7418,237,1.5,5,5,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,8,21,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,12,5,62,95759,924,1335,318,633,641,190,75158,46590,22630,9028,238,1.5,5,5,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,8,21,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12.8,4.9,59,96790,907,1335,317,657,767,136,79765,50711,16572,6777,160,2.1,3,3,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,8,21,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,4,54,95778,818,1335,317,577,773,103,70495,48164,12685,5138,140,2.6,3,3,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,8,21,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,3,51,95778,662,1335,315,437,618,131,51114,40947,15378,5773,210,2.6,3,3,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,8,21,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13.3,4.5,55,96762,450,1335,318,255,464,99,29070,24851,11299,3888,210,3.1,3,3,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,8,21,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,5,66,95740,196,1335,309,71,107,56,7837,1327,6137,1793,220,5.1,3,3,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,8,21,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,5,71,95721,0,940,304,0,0,0,0,0,0,0,210,4.6,3,3,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,8,21,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8.8,4.7,75,96884,0,0,299,0,0,0,0,0,0,0,200,4.1,3,3,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,8,21,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9,5,76,95702,0,0,305,0,0,0,0,0,0,0,160,2.6,5,5,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,8,21,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7,5,87,95663,0,0,296,0,0,0,0,0,0,0,170,2.6,5,5,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,8,21,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,6.9,4.4,84,96969,0,0,279,0,0,0,0,0,0,0,190,1,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,8,21,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,5,4,93,95624,0,0,313,0,0,0,0,0,0,0,260,1.5,10,10,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,8,22,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,4,3,93,95604,0,0,307,0,0,0,0,0,0,0,68,0,10,10,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,8,22,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4,2.9,93,96750,0,0,266,0,0,0,0,0,0,0,242,0,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,8,22,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4,3,93,95604,0,0,266,0,0,0,0,0,0,0,270,1,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,8,22,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4,3,93,95604,0,0,282,0,0,0,0,0,0,0,166,0.5,5,5,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,8,22,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3.6,2.5,93,96893,0,0,280,0,0,0,0,0,0,0,266,1,5,5,8000,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,8,22,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5,4,93,95624,0,0,304,0,0,0,0,0,0,0,70,1.5,9,9,8000,660,9,999999999,14,0,0,88,0.2,0,0 +2008,8,22,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5,4,93,95624,0,0,304,0,0,0,0,0,0,0,340,1.5,9,9,8000,900,9,999999999,14,0,0,88,0.2,0,0 +2008,8,22,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4.3,3.6,95,96964,48,227,300,7,0,7,629,0,634,244,66,0.5,9,9,8000,900,9,999999999,14,0,0,88,0.2,0,0 +2008,8,22,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,4,93,95624,318,1336,287,144,257,83,16054,10260,9252,2916,122,1,5,5,5000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,8,22,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,6,81,95702,556,1336,306,323,442,140,36747,28910,15929,5563,62,0,5,5,9000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,8,22,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9.9,6.3,78,96914,745,1336,305,509,671,135,60152,44142,15997,6218,205,0.5,3,3,9000,77777,9,999999999,18,0,0,88,0.2,0,0 +2008,8,22,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,6,71,95740,873,1336,310,624,788,109,76558,49142,13482,5528,98,1,3,3,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,8,22,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,4,58,95759,930,1336,312,678,816,111,83942,51595,13737,5695,287,1,3,3,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,8,22,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13.2,5,57,96637,913,1336,305,670,753,156,80638,51632,18834,7637,210,2.6,0,0,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,8,22,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,14,4,51,95797,823,1336,321,585,754,120,70730,48768,14617,5884,160,3.6,3,3,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,8,22,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,14,3,47,95797,667,1336,317,446,639,127,52300,41945,14983,5656,170,5.1,2,2,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,8,22,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,14,4,51,95797,454,1336,321,260,477,98,29706,25658,11214,3876,170,4.6,3,3,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,8,22,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,13,5,58,95778,200,1336,320,73,106,57,7971,1435,6260,1831,180,4.1,4,4,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,8,22,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,10,5,71,95721,0,956,312,0,0,0,0,0,0,0,220,3.1,6,6,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,8,22,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8.9,1.8,61,96593,0,0,284,0,0,0,0,0,0,0,180,3.6,0,0,9900,77777,9,999999999,11,0,0,88,0.2,0,0 +2008,8,22,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,8,2,66,95683,0,0,297,0,0,0,0,0,0,0,220,1,5,5,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,8,22,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,6,2,75,95644,0,0,295,0,0,0,0,0,0,0,169,0.5,7,7,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,8,22,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,6.2,1,69,96549,0,0,273,0,0,0,0,0,0,0,100,1.5,0,0,9900,77777,9,999999999,11,0,0,88,0.2,0,0 +2008,8,22,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5,1,75,95624,0,0,268,0,0,0,0,0,0,0,260,1.5,0,0,8000,77777,9,999999999,10,0,0,88,0.2,0,0 +2008,8,23,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4,0,75,95604,0,0,263,0,0,0,0,0,0,0,158,0,0,0,7000,77777,9,999999999,10,0,0,88,0.2,0,0 +2008,8,23,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,2.4,0.9,90,96360,0,0,269,0,0,0,0,0,0,0,20,2.1,3,3,6000,77777,9,999999999,10,0,0,88,0.2,0,0 +2008,8,23,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,2,0,87,95564,0,0,256,0,0,0,0,0,0,0,30,2.1,0,0,5000,77777,9,999999999,10,0,0,88,0.2,0,0 +2008,8,23,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3,2,93,95584,0,0,261,0,0,0,0,0,0,0,30,1.5,0,0,6000,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,8,23,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,1.5,0.6,94,96153,0,0,254,0,0,0,0,0,0,0,340,1.5,0,0,5000,77777,9,999999999,10,0,0,88,0.2,0,0 +2008,8,23,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,1,-1,86,95544,0,0,251,0,0,0,0,0,0,0,10,1.5,0,0,5000,77777,9,999999999,9,0,0,88,0.2,0,0 +2008,8,23,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,1,0,93,95544,0,0,263,0,0,0,0,0,0,0,227,1,3,3,4000,77777,9,999999999,10,0,0,88,0.2,0,0 +2008,8,23,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,0.9,0,94,96112,54,253,263,14,0,14,1344,0,1353,463,66,1,3,3,3000,77777,9,999999999,10,0,0,88,0.2,0,0 +2008,8,23,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4,2,87,95604,324,1336,265,159,335,78,17891,13238,8791,2825,139,0,0,0,5000,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,8,23,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,3,76,95663,562,1336,278,354,576,112,41060,35222,13010,4726,151,0.5,0,0,6000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,8,23,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9.6,3.5,66,96087,751,1336,306,487,584,159,56940,41222,18640,7119,227,0.5,5,5,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,8,23,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,4,58,95759,879,1336,299,639,784,124,77864,51049,15151,6181,271,1,0,0,9000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,8,23,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,14,4,51,95797,936,1336,321,687,739,170,82450,52112,20493,8293,42,1.5,3,3,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,8,23,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16.1,3.9,44,95954,919,1336,338,591,495,251,68581,39971,29282,11158,190,3.1,6,6,9900,7500,9,999999999,14,0,0,88,0.2,0,0 +2008,8,23,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,16,4,45,95834,829,1336,327,593,714,151,70531,49123,17989,7128,170,2.1,2,2,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,8,23,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,16,4,45,95834,671,1336,327,450,613,142,52313,41556,16591,6191,180,2.1,2,2,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,8,23,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15.9,3.2,43,95931,458,1336,337,232,307,126,25959,18833,14229,4680,190,2.1,6,6,9900,7500,9,999999999,13,0,0,88,0.2,0,0 +2008,8,23,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,13,5,58,95778,203,1336,320,74,74,63,8118,1300,6922,1969,180,4.1,4,4,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,8,23,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,12,5,62,95759,0,972,316,0,0,0,0,0,0,0,150,2.6,4,4,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,8,23,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10.4,5.5,72,95989,0,0,314,0,0,0,0,0,0,0,160,3.6,6,6,9900,7500,9,999999999,16,0,0,88,0.2,0,0 +2008,8,23,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,9,5,76,95702,0,0,311,0,0,0,0,0,0,0,150,3.6,7,7,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,8,23,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,8,5,81,95683,0,0,312,0,0,0,0,0,0,0,160,3.6,8,8,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,8,23,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7.1,3.9,80,96095,0,0,293,0,0,0,0,0,0,0,150,3.1,4,4,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,8,23,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,7,4,81,95663,0,0,306,0,0,0,0,0,0,0,150,3.6,8,8,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,8,24,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,7,3,76,95663,0,0,300,0,0,0,0,0,0,0,160,3.6,7,7,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,8,24,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,5.5,3.9,89,96214,0,0,287,0,0,0,0,0,0,0,160,3.6,4,4,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,8,24,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,5,3,87,95624,0,0,303,0,0,0,0,0,0,0,160,2.6,9,9,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,8,24,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,5,3,87,95624,0,0,303,0,0,0,0,0,0,0,150,2.6,9,9,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,8,24,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,5.2,3.7,90,96274,0,0,290,0,0,0,0,0,0,0,140,2.1,6,6,9900,1200,9,999999999,14,0,0,88,0.2,0,0 +2008,8,24,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,5,4,93,95624,0,0,313,0,0,0,0,0,0,0,211,0.5,10,10,9900,450,9,999999999,14,0,0,88,0.2,0,0 +2008,8,24,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,5,4,93,95624,0,0,313,0,0,0,0,0,0,0,45,0.5,10,10,9900,420,9,999999999,14,0,0,88,0.2,0,0 +2008,8,24,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5.5,4,90,96422,60,279,315,5,0,5,472,0,475,190,270,2.1,10,10,8000,510,9,999999999,14,0,0,88,0.2,0,0 +2008,8,24,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,5,93,95644,330,1337,318,51,0,51,5073,0,5111,2056,260,1.5,10,10,8000,480,9,999999999,16,0,0,88,0.2,0,0 +2008,8,24,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,7,5,87,95663,568,1337,323,113,0,113,11382,0,11476,4783,334,1,10,10,8000,540,9,999999999,16,0,0,88,0.2,0,0 +2008,8,24,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.4,4.9,84,96582,758,1337,324,166,0,166,19371,15,19443,7404,210,2.1,10,10,8000,570,9,999999999,16,0,0,88,0.2,0,0 +2008,8,24,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,5,81,95683,885,1337,327,203,1,202,23796,69,23841,9306,190,3.1,10,10,8000,600,9,999999999,16,0,0,88,0.2,0,0 +2008,8,24,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,4,76,95683,942,1337,326,220,9,213,25910,670,25302,9990,160,2.1,10,10,8000,690,9,999999999,14,0,0,88,0.2,0,0 +2008,8,24,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.9,5.1,77,96517,925,1337,332,214,3,212,25201,233,25075,9857,130,2.1,10,10,8000,750,9,999999999,16,0,0,88,0.2,0,0 +2008,8,24,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,5,71,95721,834,1337,328,308,24,293,34818,2126,33313,11678,50,1.5,9,9,8000,900,9,999999999,16,0,0,88,0.2,0,0 +2008,8,24,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,5,71,95721,676,1337,328,234,21,224,26281,1684,25237,8575,246,1,9,9,8000,900,9,999999999,16,0,0,88,0.2,0,0 +2008,8,24,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.5,4.8,68,96378,462,1337,330,138,6,136,15413,383,15245,4938,30,1.5,9,9,8000,900,9,999999999,15,0,0,88,0.2,0,0 +2008,8,24,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,5,71,95721,207,1337,328,41,0,41,3965,0,3993,1465,300,2.1,9,9,7000,900,9,999999999,16,0,0,88,0.2,0,0 +2008,8,24,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,4,76,95683,0,988,300,0,0,0,0,0,0,0,250,2.6,5,5,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,8,24,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,4,81,95663,0,0,291,0,0,0,0,0,0,0,27,0,3,3,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,8,24,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5,3,87,95624,0,0,270,0,0,0,0,0,0,0,50,1.5,0,0,6000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,8,24,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5,3,87,95624,0,0,270,0,0,0,0,0,0,0,10,3.1,0,0,5000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,8,24,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3.9,3,94,96418,0,0,266,0,0,0,0,0,0,0,196,1.5,0,0,4000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,8,24,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4,3,93,95604,0,0,266,0,0,0,0,0,0,0,360,1.5,0,0,4000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,8,25,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3,2,93,95584,0,0,261,0,0,0,0,0,0,0,23,1,0,0,4000,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,8,25,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,1.2,0.1,92,96288,0,0,264,0,0,0,0,0,0,0,279,0.5,3,3,2000,77777,9,999999999,10,0,0,88,0.2,0,0 +2008,8,25,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,0,-1,92,95523,0,0,258,0,0,0,0,0,0,0,20,0.5,3,3,1100,77777,0,999999999,9,0,0,88,0.2,0,0 +2008,8,25,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,0,-1,92,95523,0,0,258,0,0,0,0,0,0,0,340,1,3,3,600,77777,0,999999999,9,0,0,88,0.2,0,0 +2008,8,25,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,-1.2,-1.5,98,96059,0,0,253,0,0,0,0,0,0,0,86,0,3,3,600,77777,0,999999999,8,0,0,88,0.28,0,0 +2008,8,25,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,-1,-2,92,95503,0,0,254,0,0,0,0,0,0,0,106,0.5,3,3,2000,77777,0,999999999,8,0,0,88,0.267,0,0 +2008,8,25,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,-1,-1,100,95503,0,0,254,0,0,0,0,0,0,0,149,0.5,3,3,200,77777,0,999999999,9,0,0,88,0.267,0,0 +2008,8,25,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,1.2,0.3,94,96033,65,306,264,17,0,17,1631,0,1641,554,45,1,3,3,200,77777,0,999999999,10,0,0,88,0.2,0,0 +2008,8,25,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,0,0,100,95523,336,1337,259,167,286,95,18500,13402,10560,3278,260,1.5,3,3,200,77777,0,999999999,10,0,0,88,0.2,0,0 +2008,8,25,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4,4,100,95604,575,1337,279,360,563,118,41617,35027,13711,4980,280,1.5,3,3,400,77777,0,999999999,14,0,0,88,0.2,0,0 +2008,8,25,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,4.9,71,96009,764,1337,292,533,745,108,64372,46493,13071,5199,20,1.5,0,0,4000,77777,0,999999999,15,0,0,88,0.2,0,0 +2008,8,25,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,7,67,95778,891,1337,307,648,818,103,80022,49949,12817,5288,280,1.5,0,0,6000,77777,0,999999999,19,0,0,88,0.2,0,0 +2008,8,25,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,2,39,95834,948,1337,314,706,757,169,84866,53770,20439,8294,230,1,0,0,6000,77777,0,999999999,11,0,0,88,0.2,0,0 +2008,8,25,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18.9,3.5,36,95787,930,1337,329,688,756,162,82693,52755,19613,7955,160,1.5,0,0,6000,77777,0,999999999,13,0,0,88,0.2,0,0 +2008,8,25,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,6,40,95906,839,1337,336,601,777,114,73129,48933,13944,5657,170,4.1,0,0,8000,77777,0,999999999,17,0,0,88,0.2,0,0 +2008,8,25,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,6,43,95888,681,1337,332,457,661,121,53904,41953,14359,5487,160,4.6,0,0,8000,77777,0,999999999,17,0,0,88,0.2,0,0 +2008,8,25,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18.4,7.2,48,95806,467,1337,331,270,470,106,30739,25874,12149,4180,170,5.1,0,0,8000,77777,0,999999999,19,0,0,88,0.2,0,0 +2008,8,25,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,16,7,55,95834,210,1337,333,79,119,61,8694,1940,6659,1950,160,5.1,3,3,9900,77777,0,999999999,19,0,0,88,0.2,0,0 +2008,8,25,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,13,7,67,95778,0,1003,325,0,0,0,0,0,0,0,130,3.6,5,5,9900,77777,0,999999999,19,0,0,88,0.2,0,0 +2008,8,25,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10.4,6.6,77,96130,0,0,295,0,0,0,0,0,0,0,160,4.1,0,0,9900,77777,9,999999999,18,0,0,88,0.2,0,0 +2008,8,25,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,9,6,81,95702,0,0,317,0,0,0,0,0,0,0,160,3.6,8,8,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,8,25,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,8,5,81,95683,0,0,312,0,0,0,0,0,0,0,160,3.6,8,8,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,8,25,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7.2,4.5,83,96229,0,0,280,0,0,0,0,0,0,0,160,2.6,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,8,25,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,7,4,81,95663,0,0,306,0,0,0,0,0,0,0,140,2.1,8,8,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,8,26,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,6,4,87,95644,0,0,308,0,0,0,0,0,0,0,140,2.1,9,9,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,8,26,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,4.6,3.1,90,96244,0,0,268,0,0,0,0,0,0,0,220,1,0,0,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,8,26,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3,2,93,95584,0,0,273,0,0,0,0,0,0,0,121,1,3,3,4000,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,8,26,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,2,2,100,95564,0,0,297,0,0,0,0,0,0,0,40,2.6,10,10,300,90,0,999999999,12,0,0,88,0.2,0,0 +2008,8,26,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,1.5,0.9,96,96105,0,0,294,0,0,0,0,0,0,0,280,1,10,10,400,60,0,999999999,10,0,0,88,0.2,0,0 +2008,8,26,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,1,0,93,95544,0,0,291,0,0,0,0,0,0,0,163,1,10,10,400,90,0,999999999,10,0,0,88,0.2,0,0 +2008,8,26,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,0,0,100,95523,0,0,287,0,0,0,0,0,0,0,126,1,10,10,400,30,0,999999999,10,0,0,88,0.2,0,0 +2008,8,26,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,1,0.8,99,96133,71,333,268,17,0,17,1668,0,1679,574,253,0.5,5,5,400,77777,0,999999999,10,0,0,88,0.2,0,0 +2008,8,26,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4,4,100,95604,343,1338,267,172,354,82,19354,14721,9207,2987,330,1.5,0,0,800,77777,0,999999999,14,0,0,88,0.2,0,0 +2008,8,26,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,6,81,95702,581,1338,289,368,594,111,42872,35688,12926,4754,20,1.5,0,0,5000,77777,0,999999999,17,0,0,88,0.2,0,0 +2008,8,26,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11.4,7,74,96131,771,1338,300,537,748,107,64896,45844,12927,5160,350,1.5,0,0,6000,77777,0,999999999,19,0,0,88,0.2,0,0 +2008,8,26,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,7,63,95797,898,1338,311,653,820,104,80743,50129,12902,5329,260,1.5,0,0,6000,77777,0,999999999,19,0,0,88,0.2,0,0 +2008,8,26,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,7,52,95852,954,1338,324,706,758,165,84931,51886,19984,8150,293,1,0,0,6000,77777,0,999999999,19,0,0,88,0.2,0,0 +2008,8,26,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18.6,5.9,43,95924,936,1338,330,690,757,161,83028,51920,19481,7924,190,1,0,0,8000,77777,0,999999999,17,0,0,88,0.2,0,0 +2008,8,26,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,3,32,95906,844,1338,333,608,815,95,75199,50169,11749,4802,170,3.1,0,0,8000,77777,0,999999999,13,0,0,88,0.2,0,0 +2008,8,26,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,20,3,32,95906,686,1338,333,464,652,130,54453,43133,15277,5804,190,3.6,0,0,9900,77777,0,999999999,13,0,0,88,0.2,0,0 +2008,8,26,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19.6,8.5,49,95866,471,1338,337,273,469,108,31005,25756,12299,4237,170,2.6,0,0,9900,77777,0,999999999,22,0,0,88,0.2,0,0 +2008,8,26,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,17,7,52,95852,214,1338,338,82,125,62,8968,2181,6795,1991,210,4.1,3,3,9900,77777,0,999999999,19,0,0,88,0.2,0,0 +2008,8,26,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,14,8,67,95797,0,1019,330,0,0,0,0,0,0,0,150,2.1,5,5,9900,77777,0,999999999,21,0,0,88,0.2,0,0 +2008,8,26,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12.3,8,75,95930,0,0,305,0,0,0,0,0,0,0,150,3.1,0,0,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,8,26,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,11,8,82,95740,0,0,329,0,0,0,0,0,0,0,160,4.1,8,8,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,8,26,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,9,7,87,95702,0,0,325,0,0,0,0,0,0,0,160,4.1,9,9,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,8,26,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,9,7,87,95702,0,0,325,0,0,0,0,0,0,0,150,5.1,9,9,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,8,26,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,8,6,87,95683,0,0,319,0,0,0,0,0,0,0,150,4.1,9,9,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,8,27,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,7,6,93,95663,0,0,324,0,0,0,0,0,0,0,150,3.1,10,10,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,8,27,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,5,93,96111,0,0,276,0,0,0,0,0,0,0,290,1,0,0,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,8,27,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,4,93,95624,0,0,287,0,0,0,0,0,0,0,220,1,5,5,6000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,8,27,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,5,93,95644,0,0,309,0,0,0,0,0,0,0,310,1.5,9,9,6000,300,9,999999999,16,0,0,88,0.2,0,0 +2008,8,27,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6.8,6,95,96070,0,0,314,0,0,0,0,0,0,0,30,1.5,9,9,5000,210,9,999999999,17,0,0,88,0.2,0,0 +2008,8,27,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,6,93,95663,0,0,324,0,0,0,0,0,0,0,280,1,10,10,5000,210,9,999999999,17,0,0,88,0.2,0,0 +2008,8,27,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,6,93,95663,0,0,315,0,0,0,0,0,0,0,350,1.5,9,9,5000,150,9,999999999,17,0,0,88,0.2,0,0 +2008,8,27,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.5,6.6,94,96301,77,360,327,6,0,6,606,0,610,245,40,2.1,10,10,4000,150,9,999999999,18,0,0,88,0.2,0,0 +2008,8,27,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,7,93,95683,349,1338,330,55,0,55,5480,0,5522,2229,137,1,10,10,3000,120,9,999999999,19,0,0,88,0.2,0,0 +2008,8,27,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,7,93,95683,588,1338,330,118,0,118,11867,0,11966,5011,310,2.6,10,10,3000,150,9,999999999,19,0,0,88,0.2,0,0 +2008,8,27,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11.3,7.8,79,96384,777,1338,337,280,23,267,31495,1921,30183,10489,330,2.1,9,9,5000,1800,9,999999999,21,0,0,88,0.2,0,0 +2008,8,27,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,6,59,95797,904,1338,348,341,66,296,38910,5693,34010,12383,36,1,9,9,8000,1800,9,999999999,17,0,0,88,0.2,0,0 +2008,8,27,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17,8,55,95852,960,1338,365,367,67,319,41937,5741,36700,13474,200,4.6,9,9,8000,1800,9,999999999,21,0,0,88,0.2,0,0 +2008,8,27,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14.5,9.8,73,96331,942,1338,355,357,65,311,40730,5543,35696,13096,170,5.7,9,9,8000,1800,0,919999999,25,0,0,88,0.2,0,0 +2008,8,27,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,11,82,95797,850,1338,353,312,32,292,35299,2698,33204,11794,140,6.7,9,9,8000,1800,0,919999999,28,0,0,88,0.2,0,0 +2008,8,27,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,11,88,95778,691,1338,349,238,28,224,26722,2158,25255,8693,150,6.2,9,9,8000,1500,0,919999999,28,0,0,88,0.2,0,0 +2008,8,27,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12.4,10.5,88,96367,475,1338,345,142,6,140,15807,370,15639,5101,160,6.2,9,9,8000,1200,0,919999999,27,0,0,88,0.2,0,0 +2008,8,27,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,9,87,95740,218,1338,337,44,0,44,4257,0,4288,1574,160,7.2,9,9,8000,1050,0,919999999,23,0,0,88,0.2,0,0 +2008,8,27,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,8,87,95721,0,1035,331,0,0,0,0,0,0,0,160,5.7,9,9,8000,900,0,919999999,21,0,0,88,0.2,0,0 +2008,8,27,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10.6,7.8,83,96427,0,0,333,0,0,0,0,0,0,0,150,4.6,9,9,8000,750,9,999999999,21,0,0,88,0.2,2,0 +2008,8,27,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,8,82,95740,0,0,336,0,0,0,0,0,0,0,160,3.1,9,9,8000,750,0,919999999,21,0,0,88,0.2,0,0 +2008,8,27,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,9,93,95721,0,0,341,0,0,0,0,0,0,0,150,2.6,10,10,8000,750,0,919999999,23,0,0,88,0.2,0,0 +2008,8,27,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9.9,9.3,96,96489,0,0,341,0,0,0,0,0,0,0,130,2.6,10,10,8000,750,0,919999999,24,0,0,88,0.2,0,0 +2008,8,27,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,9,93,95721,0,0,341,0,0,0,0,0,0,0,230,1,10,10,8000,750,0,919999999,23,0,0,88,0.2,0,0 +2008,8,28,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,9,93,95721,0,0,341,0,0,0,0,0,0,0,270,1.5,10,10,8000,750,0,919999999,23,0,0,88,0.2,0,0 +2008,8,28,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9.7,9,95,96372,0,0,331,0,0,0,0,0,0,0,43,1,9,9,8000,750,0,919999999,23,0,0,88,0.2,0,0 +2008,8,28,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,9,93,95721,0,0,341,0,0,0,0,0,0,0,170,2.1,10,10,8000,750,0,919999999,23,0,0,88,0.2,0,0 +2008,8,28,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,9,93,95721,0,0,332,0,0,0,0,0,0,0,170,2.6,9,9,8000,750,0,919999999,23,0,0,88,0.2,0,0 +2008,8,28,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.6,8.8,95,96342,0,0,330,0,0,0,0,0,0,0,160,2.1,9,9,8000,750,0,919999999,23,0,0,88,0.2,0,0 +2008,8,28,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,9,93,95721,0,0,332,0,0,0,0,0,0,0,120,2.1,9,9,6000,750,0,919999999,23,0,0,88,0.2,0,0 +2008,8,28,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,9,93,95721,0,0,332,0,0,0,0,0,0,0,200,2.1,9,9,5000,600,0,919999999,23,0,0,88,0.2,0,0 +2008,8,28,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.6,8.7,94,96408,83,388,330,11,0,11,1065,0,1072,410,140,2.1,9,9,6000,600,0,919999999,23,0,0,88,0.2,0,0 +2008,8,28,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,9,93,95721,355,1339,332,93,11,90,10376,463,10093,3253,170,2.1,9,9,6000,750,0,919999999,23,0,0,88,0.2,0,0 +2008,8,28,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,8,87,95721,594,1339,312,352,399,175,39537,28637,19751,6738,160,3.1,5,5,6000,77777,0,919999999,21,0,0,88,0.2,0,0 +2008,8,28,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11.2,6.6,73,96524,784,1339,316,511,594,164,59852,41484,19252,7430,140,4.1,5,5,6000,77777,0,919999999,18,0,0,88,0.2,0,0 +2008,8,28,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,7,67,95778,911,1339,325,619,550,245,71729,43395,28578,10906,120,4.1,5,5,6000,77777,0,919999999,19,0,0,88,0.2,0,0 +2008,8,28,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,6,62,95778,967,1339,343,370,58,329,42353,5113,37805,13787,110,4.1,9,9,6000,2100,0,919999999,17,0,0,88,0.2,0,0 +2008,8,28,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13.2,6.4,63,96590,948,1339,328,611,477,274,70646,39058,31858,12062,190,5.1,6,6,6000,1500,0,919999999,18,0,0,88,0.2,0,0 +2008,8,28,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,5,58,95778,855,1339,323,573,628,172,67740,44736,20452,8060,190,2.6,5,5,6000,77777,0,919999999,15,0,0,88,0.2,0,0 +2008,8,28,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,14,5,55,95797,695,1339,327,437,464,197,49759,35478,22495,8014,33,0.5,5,5,6000,77777,0,919999999,15,0,0,88,0.2,0,0 +2008,8,28,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13.8,-1.8,33,96639,479,1339,337,147,15,141,16389,1015,15852,5154,330,3.6,9,9,6000,4200,0,919999999,8,0,0,88,0.2,0,0 +2008,8,28,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,3,54,95759,221,1339,316,81,173,53,9060,2680,5889,1816,220,1.5,5,5,6000,77777,0,919999999,13,0,0,88,0.2,0,0 +2008,8,28,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,0,44,95759,0,1051,331,0,0,0,0,0,0,0,340,3.6,9,9,6000,3300,0,919999999,9,0,0,88,0.2,0,0 +2008,8,28,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10.6,-1.5,42,96682,0,0,323,0,0,0,0,0,0,0,360,7.2,9,9,6000,3000,9,999999999,8,0,0,88,0.2,0,0 +2008,8,28,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,-2,39,95740,0,0,324,0,0,0,0,0,0,0,10,7.2,9,9,6000,2700,9,999999999,8,0,0,88,0.2,0,0 +2008,8,28,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,0,50,95721,0,0,322,0,0,0,0,0,0,0,350,5.1,9,9,6000,2700,9,999999999,9,0,0,88,0.2,0,0 +2008,8,28,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8.9,2.5,64,97074,0,0,329,0,0,0,0,0,0,0,230,5.1,10,10,6000,1800,0,919999999,12,0,0,88,0.2,0,0 +2008,8,28,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8,5,81,95683,0,0,327,0,0,0,0,0,0,0,150,4.1,10,10,6000,1500,0,919999999,16,0,0,88,0.2,1.5,0 +2008,8,29,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,8,4,76,95683,0,0,326,0,0,0,0,0,0,0,45,1,10,10,6000,1500,0,919999999,14,0,0,88,0.2,0,0 +2008,8,29,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,6.9,5.1,88,97167,0,0,322,0,0,0,0,0,0,0,340,3.1,10,10,6000,1500,0,919999999,16,0,0,88,0.2,0,0 +2008,8,29,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,7,5,87,95663,0,0,314,0,0,0,0,0,0,0,234,0,9,9,6000,1500,0,919999999,16,0,0,88,0.2,0,0 +2008,8,29,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,6,5,93,95644,0,0,292,0,0,0,0,0,0,0,40,4.1,5,5,6000,77777,0,919999999,16,0,0,88,0.2,0,0 +2008,8,29,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,5.1,3.2,88,97169,0,0,282,0,0,0,0,0,0,0,60,3.1,3,3,6000,77777,0,919999999,13,0,0,88,0.2,0,0 +2008,8,29,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,4,3,93,95604,0,0,278,0,0,0,0,0,0,0,260,1,3,3,6000,77777,0,919999999,13,0,0,88,0.2,0,0 +2008,8,29,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,4,3,93,95604,0,0,307,0,0,0,0,0,0,0,270,1.5,10,10,9900,77777,0,919999999,13,0,0,88,0.2,0,0 +2008,8,29,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,3.3,2.5,94,97189,89,416,263,23,4,23,2562,0,2542,743,320,1.5,0,0,9900,77777,0,919999999,12,0,0,88,0.2,0,0 +2008,8,29,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,8,4,76,95683,362,1340,306,153,154,111,16841,8072,12320,3766,16,0,7,7,9900,77777,0,919999999,14,0,0,88,0.2,0,0 +2008,8,29,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,9,4,71,95702,601,1340,307,342,399,163,38724,28417,18574,6467,210,1.5,6,6,9900,77777,0,919999999,14,0,0,88,0.2,0,0 +2008,8,29,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,10.7,4.4,65,97204,790,1340,294,557,702,143,66050,47592,17011,6678,245,0,0,0,9900,77777,0,919999999,15,0,0,88,0.2,0,0 +2008,8,29,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,12,3,54,95759,917,1340,311,666,816,108,82421,51693,13424,5551,358,1,3,3,9900,77777,0,919999999,13,0,0,88,0.2,0,0 +2008,8,29,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,14,3,47,95797,973,1340,317,725,803,142,88583,53983,17468,7214,227,1,2,2,9900,77777,0,919999999,13,0,0,88,0.2,0,0 +2008,8,29,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14.4,3.6,48,96840,953,1340,325,684,730,166,82445,51048,20066,8167,160,1.5,4,4,9900,77777,0,919999999,14,0,0,88,0.2,0,0 +2008,8,29,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,16,3,42,95834,860,1340,321,622,777,124,75558,50888,15101,6126,220,2.6,1,1,9900,77777,0,919999999,13,0,0,88,0.2,0,0 +2008,8,29,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,16,3,42,95834,700,1340,321,476,577,175,54714,42437,20167,7382,220,3.1,1,1,9900,77777,0,919999999,13,0,0,88,0.2,0,0 +2008,8,29,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15.5,4.7,49,96699,483,1340,353,147,50,129,16527,3082,14576,4878,210,4.6,9,9,9900,7500,0,919999999,15,0,0,88,0.2,0,0 +2008,8,29,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,7,63,95797,225,1340,349,46,0,46,4493,0,4525,1655,220,4.1,9,9,9900,7500,0,919999999,19,0,0,88,0.2,0,0 +2008,8,29,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,6,62,95778,0,1066,343,0,0,0,0,0,0,0,220,3.1,9,9,9900,3900,0,919999999,17,0,0,88,0.2,0,0 +2008,8,29,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12.3,7.4,72,96715,0,0,341,0,0,0,0,0,0,0,160,2.1,9,9,9900,3900,9,999999999,20,0,0,88,0.2,0,0 +2008,8,29,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,6,67,95759,0,0,338,0,0,0,0,0,0,0,160,1.5,9,9,9900,3900,9,999999999,17,0,0,88,0.2,0,0 +2008,8,29,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,7,82,95721,0,0,330,0,0,0,0,0,0,0,340,1.5,9,9,9900,3900,9,999999999,19,0,0,88,0.2,0,0 +2008,8,29,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10.3,6.7,78,96658,0,0,331,0,0,0,0,0,0,0,220,1.5,9,9,9900,3900,9,999999999,19,0,0,88,0.2,0,0 +2008,8,29,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,7,82,95721,0,0,330,0,0,0,0,0,0,0,350,1.5,9,9,9900,3900,9,999999999,19,0,0,88,0.2,0,0 +2008,8,30,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,6,76,95721,0,0,329,0,0,0,0,0,0,0,280,1,9,9,9900,3900,9,999999999,17,0,0,88,0.2,0,0 +2008,8,30,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,7.5,5.6,88,96565,0,0,310,0,0,0,0,0,0,0,271,1,8,8,9900,3900,9,999999999,17,0,0,88,0.2,0,0 +2008,8,30,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8,6,87,95683,0,0,319,0,0,0,0,0,0,0,320,1.5,9,9,9900,3900,9,999999999,17,0,0,88,0.2,0,0 +2008,8,30,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,5,93,95644,0,0,292,0,0,0,0,0,0,0,40,2.6,5,5,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,8,30,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7.3,4.7,84,96467,0,0,293,0,0,0,0,0,0,0,30,1.5,3,3,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,8,30,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,5,4,93,95624,0,0,283,0,0,0,0,0,0,0,284,0.5,3,3,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,8,30,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,6,4,87,95644,0,0,291,0,0,0,0,0,0,0,180,1.5,5,5,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,8,30,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,4.7,3.7,93,96585,95,444,281,24,5,24,2700,0,2669,783,209,0,3,3,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,8,30,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,6,93,95663,368,1340,315,98,16,94,11006,763,10543,3405,350,2.6,9,9,8000,4500,9,999999999,17,0,0,88,0.2,0,0 +2008,8,30,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,6,76,95721,607,1340,310,364,162,290,39323,15340,31562,8857,350,3.1,5,5,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,8,30,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12.9,6.8,66,96452,797,1340,343,289,73,246,32902,5975,28106,10114,40,2.6,9,9,8000,7500,9,999999999,19,0,0,88,0.2,0,0 +2008,8,30,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,5,48,95834,923,1340,317,679,670,218,79647,51016,25696,10048,30,1.5,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,8,30,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,18,4,39,95870,979,1340,331,731,813,138,89620,53912,17015,7048,317,1,1,1,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,8,30,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19.2,4.8,39,96237,959,1340,349,688,734,164,83051,50792,19821,8090,160,1.5,4,4,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,8,30,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,21,4,33,95924,866,1340,339,627,781,122,76178,50721,14931,6071,230,3.1,0,0,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,8,30,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,22,2,27,95942,705,1340,341,481,581,176,55355,43046,20318,7444,190,1.5,0,0,9900,77777,9,999999999,11,0,0,88,0.2,0,0 +2008,8,30,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,20.5,6.9,41,96100,487,1340,381,148,49,130,16660,3044,14701,4930,170,3.6,9,9,9900,4500,9,999999999,18,0,0,88,0.2,0,0 +2008,8,30,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19,9,52,95888,228,1340,355,85,178,54,9429,2624,6069,1882,160,3.1,5,5,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,8,30,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17,8,55,95852,0,1082,344,0,0,0,0,0,0,0,170,3.1,5,5,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,8,30,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15.5,7.7,60,96094,0,0,337,0,0,0,0,0,0,0,240,1,5,5,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2008,8,30,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,14,6,59,95797,0,0,326,0,0,0,0,0,0,0,150,1.5,4,4,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,8,30,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,10,6,76,95721,0,0,317,0,0,0,0,0,0,0,320,2.1,7,7,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,8,30,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,10.6,4.6,66,96163,0,0,294,0,0,0,0,0,0,0,141,1,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,8,30,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,11,5,66,95740,0,0,314,0,0,0,0,0,0,0,20,2.6,5,5,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,8,31,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,10,5,71,95721,0,0,312,0,0,0,0,0,0,0,350,1.5,6,6,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,8,31,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7.5,4.3,80,96093,0,0,281,0,0,0,0,0,0,0,30,1,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,8,31,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,4,87,95644,0,0,275,0,0,0,0,0,0,0,220,0,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,8,31,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,4,87,95644,0,0,275,0,0,0,0,0,0,0,20,2.1,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,8,31,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5.2,3.5,89,95972,0,0,271,0,0,0,0,0,0,0,30,1.5,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,8,31,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,3,87,95624,0,0,270,0,0,0,0,0,0,0,169,0.5,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,8,31,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,3,87,95624,0,0,270,0,0,0,0,0,0,0,212,1,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,8,31,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4.9,3.2,89,96004,101,472,270,26,9,25,2901,0,2835,832,70,1.5,0,0,6000,77777,9,999999999,13,0,0,88,0.2,0,0 +2008,8,31,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,10,5,71,95721,375,1341,312,173,269,98,19332,13105,10986,3535,50,1.5,6,6,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,8,31,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,12,7,71,95759,614,1341,323,350,398,168,39625,28212,19124,6682,320,1.5,6,6,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,8,31,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,15.6,6.6,55,95916,803,1341,334,548,654,156,64621,44923,18510,7238,309,1,4,4,9900,77777,9,999999999,18,0,0,88,0.2,0,0 +2008,8,31,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,19,8,49,95888,930,1341,345,678,797,126,82959,50502,15512,6402,236,0,2,2,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,8,31,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,22,5,33,95942,985,1341,345,736,750,186,88234,53529,22357,9075,187,1,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,8,31,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,23.6,3.1,26,95681,965,1341,384,483,225,322,55402,19923,37108,13580,180,2.1,8,8,9900,7500,9,999999999,13,0,0,88,0.2,0,0 +2008,8,31,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,24,6,31,95977,871,1341,355,629,717,164,74826,49865,19563,7794,170,4.6,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,8,31,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,24,8,36,95977,710,1341,358,480,633,146,56021,42200,17083,6475,200,3.6,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2008,8,31,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,22.2,10.3,47,95571,492,1341,386,194,121,150,21543,7784,16694,5426,190,4.1,8,8,9900,7500,9,999999999,26,0,0,88,0.2,0,0 +2008,8,31,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,21,10,49,95924,232,1341,357,92,143,68,10121,3021,7446,2191,210,5.7,2,2,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,8,31,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,15.4,8.4,63,95801,0,1098,345,0,0,0,0,0,0,0,182,3,3,3,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,8,31,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13.7,7.9,68,95810,0,0,344,0,0,0,0,0,0,0,147,1.9,5,5,9900,77777,9,999999999,22,0,0,88,0.2,0,0 +2008,8,31,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,12,7.3,73,95801,0,0,335,0,0,0,0,0,0,0,154,1.4,5,5,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,8,31,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,10.5,7.6,82,95773,0,0,328,0,0,0,0,0,0,0,157,1.1,7,7,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,8,31,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9.5,7.4,86,95866,0,0,317,0,0,0,0,0,0,0,188,1,5,5,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2008,8,31,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.2,7.1,92,95800,0,0,293,0,0,0,0,0,0,0,224,1,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2004,9,1,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.2,7.1,99,95780,0,0,292,0,0,0,0,0,0,0,234,0.8,0,0,7000,77777,0,999999999,23,0,0,88,0.2,0,0 +2004,9,1,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6.6,6.3,98,95874,0,0,286,0,0,0,0,0,0,0,199,0.4,0,0,6000,77777,0,999999999,19,0,0,88,0.2,0,0 +2004,9,1,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5.8,5.8,100,95747,0,0,293,0,0,0,0,0,0,0,136,0.6,5,5,2000,77777,0,999999999,17,0,0,88,0.2,0,0 +2004,9,1,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5.3,5.3,100,95737,0,0,310,0,0,0,0,0,0,0,172,0.2,9,9,250,90,0,999999999,17,0,0,88,0.2,0,0 +2004,9,1,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4.9,4.9,100,95863,0,0,311,0,0,0,0,0,0,0,192,0.2,9,9,200,90,0,999999999,17,0,0,88,0.2,0,0 +2004,9,1,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5.6,5.6,100,95769,0,0,305,0,0,0,0,0,0,0,232,0.2,9,9,400,90,0,999999999,16,0,0,88,0.2,0,0 +2004,9,1,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4,4,100,95604,0,0,279,0,0,0,0,0,0,0,327,0,3,3,1000,77777,0,999999999,14,0,0,88,0.2,0,0 +2004,9,1,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4.4,4.3,99,96145,108,501,269,28,17,26,3081,0,2940,868,283,0,0,0,1200,77777,0,999999999,15,0,0,88,0.2,0,0 +2004,9,1,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,9,100,95702,381,1342,292,199,401,85,22525,17447,9684,3233,240,0,0,0,3000,77777,0,999999999,23,0,0,88,0.2,0,0 +2004,9,1,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,10,82,95778,621,1342,310,399,619,113,46673,36686,13277,4975,102,0.5,0,0,3000,77777,0,999999999,25,0,0,88,0.2,0,0 +2004,9,1,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16.8,8.8,59,96288,810,1342,325,570,764,110,69171,46555,13335,5379,160,1.5,0,0,5000,77777,0,999999999,23,0,0,88,0.2,0,0 +2004,9,1,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,9,49,95906,937,1342,340,686,827,110,84850,50244,13602,5654,170,2.6,0,0,5000,77777,0,999999999,23,0,0,88,0.2,0,0 +2004,9,1,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,9,49,95906,991,1342,340,737,763,173,88743,51880,20960,8586,170,4.6,0,0,8000,77777,0,999999999,23,0,0,88,0.2,0,0 +2004,9,1,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,20.6,9.8,50,96244,971,1342,344,717,834,114,88803,50643,14165,5918,180,5.1,0,0,8000,77777,0,999999999,25,0,0,88,0.2,0,0 +2004,9,1,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,21,7,40,95924,876,1342,349,633,790,117,77231,49712,14347,5867,160,5.7,1,1,9900,77777,0,999999999,19,0,0,88,0.2,0,0 +2004,9,1,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,19,8,49,95888,714,1342,345,482,673,124,56996,42558,14764,5707,170,6.7,2,2,9900,77777,0,999999999,21,0,0,88,0.2,0,0 +2004,9,1,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17.7,8.8,56,96238,496,1342,329,293,488,112,33329,27666,12849,4473,160,6.2,0,0,9900,77777,0,999999999,22,0,0,88,0.2,0,0 +2004,9,1,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,16,9,63,95834,236,1342,341,91,130,68,9936,2881,7467,2209,170,5.1,5,5,9900,77777,0,999999999,23,0,0,88,0.2,0,0 +2004,9,1,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,14,9,72,95797,0,1114,334,0,0,0,0,0,0,0,150,5.1,6,6,9900,77777,0,999999999,23,0,0,88,0.2,0,0 +2004,9,1,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12.5,9.5,82,96359,0,0,307,0,0,0,0,0,0,0,140,2.6,0,0,9900,77777,9,999999999,24,0,0,88,0.2,0,0 +2004,9,1,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,12,9,82,95759,0,0,334,0,0,0,0,0,0,0,160,2.6,8,8,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2004,9,1,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,10,94,95740,0,0,301,0,0,0,0,0,0,0,160,2.1,0,0,8000,77777,9,999999999,26,0,0,88,0.2,0,0 +2004,9,1,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,8.6,97,96415,0,0,291,0,0,0,0,0,0,0,280,1,0,0,6000,77777,9,999999999,22,0,0,88,0.2,0,0 +2004,9,1,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,8,100,95683,0,0,299,0,0,0,0,0,0,0,52,0,3,3,6000,77777,0,999999999,21,0,0,88,0.2,0,0 +2004,9,2,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,6,100,95644,0,0,289,0,0,0,0,0,0,0,30,0.5,3,3,400,77777,0,999999999,17,0,0,88,0.2,0,0 +2004,9,2,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6.2,6.1,99,96379,0,0,294,0,0,0,0,0,0,0,195,0,5,5,300,77777,0,999999999,18,0,0,88,0.2,0,0 +2004,9,2,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,6,100,95644,0,0,293,0,0,0,0,0,0,0,234,0,5,5,200,77777,0,999999999,17,0,0,88,0.2,0,0 +2004,9,2,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,5,100,95624,0,0,272,0,0,0,0,0,0,0,307,0.5,0,0,200,77777,0,999999999,16,0,0,88,0.2,0,0 +2004,9,2,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4.7,4.7,100,96330,0,0,303,0,0,0,0,0,0,0,10,1,9,9,300,7500,0,999999999,15,0,0,88,0.2,0,0 +2004,9,2,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4,4,100,95604,0,0,283,0,0,0,0,0,0,0,348,0,5,5,400,77777,0,999999999,14,0,0,88,0.2,0,0 +2004,9,2,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4,4,100,95604,0,0,267,0,0,0,0,0,0,0,91,0,0,0,0,77777,0,999999999,14,0,0,88,0.2,0,0 +2004,9,2,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4.9,4.9,100,96382,114,530,283,29,13,28,3206,0,3092,916,360,0.5,3,3,900,77777,0,999999999,16,0,0,88,0.2,0,0 +2004,9,2,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,7,100,95663,388,1342,294,202,395,88,22850,18086,9987,3331,193,0,3,3,2000,77777,0,999999999,19,0,0,88,0.2,0,0 +2004,9,2,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,11,94,95759,627,1342,320,399,599,119,46470,35850,13959,5218,214,0,3,3,3500,77777,0,999999999,28,0,0,88,0.2,0,0 +2004,9,2,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13.9,9.8,76,96291,817,1342,332,535,638,148,63477,41912,17595,6963,39,0,5,5,3000,77777,0,999999999,25,0,0,88,0.2,0,0 +2004,9,2,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,9,56,95870,943,1342,350,644,646,191,76422,45604,22732,9116,50,0,5,5,4000,77777,0,999999999,23,0,0,88,0.2,0,0 +2004,9,2,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,10,53,95906,998,1342,356,731,794,142,89464,50595,17465,7261,190,2.1,3,3,5000,77777,0,999999999,25,0,0,88,0.2,0,0 +2004,9,2,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20.9,8.2,44,96060,977,1342,358,715,813,124,88097,50994,15332,6388,180,2.6,3,3,5000,77777,0,999999999,21,0,0,88,0.2,0,0 +2004,9,2,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,11,50,95942,882,1342,367,625,761,126,75786,47036,15365,6278,150,3.1,3,3,5000,77777,0,999999999,28,0,0,88,0.2,0,0 +2004,9,2,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,11,50,95942,719,1342,367,480,662,126,56612,40853,14880,5766,160,3.6,3,3,6000,77777,0,999999999,28,0,0,88,0.2,0,0 +2004,9,2,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21.9,10.4,48,96021,500,1342,371,275,341,148,30585,21797,16533,5435,170,4.6,5,5,6000,77777,0,999999999,26,0,0,88,0.2,0,0 +2004,9,2,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,20,10,53,95906,239,1342,383,50,0,50,4907,0,4943,1807,180,3.6,9,9,6000,77777,0,999999999,25,0,0,88,0.2,0,0 +2004,9,2,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,19,10,56,95888,0,1129,378,0,0,0,0,0,0,0,170,1.5,9,9,6000,77777,0,999999999,25,0,0,88,0.2,0,0 +2004,9,2,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17.5,9.9,61,96065,0,0,370,0,0,0,0,0,0,0,120,2.1,9,9,6000,7500,9,999999999,25,0,0,88,0.2,0,0 +2004,9,2,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,10,63,95852,0,0,367,0,0,0,0,0,0,0,353,0.5,9,9,5000,7500,9,999999999,25,0,0,88,0.2,0,0 +2004,9,2,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,10,72,95815,0,0,357,0,0,0,0,0,0,0,330,1.5,9,9,5000,7500,9,999999999,25,0,0,88,0.2,0,0 +2004,9,2,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,10,77,95797,0,0,352,0,0,0,0,0,0,0,40,2.1,9,9,5000,7500,9,999999999,25,0,0,88,0.2,0,0 +2004,9,2,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,10,77,95797,0,0,352,0,0,0,0,0,0,0,162,1,9,9,5000,7500,9,999999999,25,0,0,88,0.2,0,0 +2004,9,3,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,10,88,95759,0,0,343,0,0,0,0,0,0,0,240,0.5,9,9,5000,7500,9,999999999,26,0,0,88,0.2,0,0 +2004,9,3,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,9,82,95759,0,0,341,0,0,0,0,0,0,0,40,1.5,9,9,5000,7500,9,999999999,23,0,0,88,0.2,0,0 +2004,9,3,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,9,87,95740,0,0,337,0,0,0,0,0,0,0,50,0.5,9,9,5000,7500,9,999999999,23,0,0,88,0.2,0,0 +2004,9,3,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,10,88,95759,0,0,343,0,0,0,0,0,0,0,83,0.5,9,9,5000,7500,9,999999999,26,0,0,88,0.2,0,0 +2004,9,3,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.3,8.9,91,95779,0,0,333,0,0,0,0,0,0,0,220,0.5,9,9,3000,7500,9,999999999,23,0,0,88,0.2,0,0 +2004,9,3,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,9,87,95740,0,0,337,0,0,0,0,0,0,0,73,0,9,9,3000,7500,9,999999999,23,0,0,88,0.2,0,0 +2004,9,3,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,9,87,95740,0,0,337,0,0,0,0,0,0,0,30,2.6,9,9,2500,7500,9,999999999,23,0,0,88,0.2,0,0 +2004,9,3,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11.6,9,84,95804,120,559,349,10,0,10,956,0,962,391,156,0,10,10,3000,4500,9,999999999,23,0,0,88,0.2,0,0 +2004,9,3,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,10,82,95778,394,1343,357,66,0,66,6520,0,6571,2673,30,1,10,10,4000,4500,9,999999999,25,0,0,88,0.2,0,0 +2004,9,3,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,10,77,95797,634,1343,362,129,0,129,13088,0,13200,5586,10,2.6,10,10,5000,4500,9,999999999,25,0,0,88,0.2,0,0 +2004,9,3,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16.7,9.4,62,95747,824,1343,375,183,1,183,21389,39,21451,8294,10,2.1,10,10,5000,4500,9,999999999,24,0,0,88,0.2,0,0 +2004,9,3,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,12,68,95870,950,1343,385,219,7,214,25700,469,25286,10025,300,3.1,10,10,5000,5100,9,999999999,31,0,0,88,0.2,0,0 +2004,9,3,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,12,60,95906,1004,1343,385,384,38,356,43750,3276,40810,14805,170,1,9,9,5000,4500,9,999999999,31,0,0,88,0.2,0,0 +2004,9,3,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21.5,10.7,50,95568,982,1343,392,375,25,357,42571,2183,40789,14631,170,0,9,9,7000,4500,9,999999999,27,0,0,88,0.2,0,0 +2004,9,3,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,22,12,53,95942,887,1343,407,201,5,197,23497,348,23229,9120,210,1.5,10,10,7000,4500,9,999999999,31,0,0,88,0.2,0,0 +2004,9,3,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,24,10,41,95977,724,1343,404,253,40,232,28531,3203,26221,9141,220,1.5,9,9,7000,4500,9,999999999,25,0,0,88,0.2,0,0 +2004,9,3,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,10,41,95489,504,1343,404,154,7,152,17161,443,16954,5552,180,3.1,9,9,7000,7500,9,999999999,25,0,0,88,0.2,0,0 +2004,9,3,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,11,50,95942,243,1343,395,51,0,51,5015,0,5052,1847,160,3.1,9,9,7000,7500,9,999999999,28,0,0,88,0.2,0,0 +2004,9,3,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,11,53,95924,0,1145,389,0,0,0,0,0,0,0,170,2.1,9,9,5000,7500,9,999999999,28,0,0,88,0.2,0,0 +2004,9,3,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17.8,11.6,67,95597,0,0,373,0,0,0,0,0,0,0,290,1.5,9,9,5000,7500,9,999999999,30,0,0,88,0.2,0,0 +2004,9,3,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,11,68,95852,0,0,368,0,0,0,0,0,0,0,360,1,9,9,5000,7500,9,999999999,28,0,0,88,0.2,0,0 +2004,9,3,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,11,77,95815,0,0,358,0,0,0,0,0,0,0,50,1.5,9,9,5000,7500,9,999999999,28,0,0,88,0.2,0,0 +2004,9,3,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12.3,9.5,83,95581,0,0,324,0,0,0,0,0,0,0,270,0.5,5,5,5000,77777,9,999999999,24,0,0,88,0.2,0,0 +2004,9,3,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,9,82,95759,0,0,341,0,0,0,0,0,0,0,115,0,9,9,5000,7500,9,999999999,23,0,0,88,0.2,0,0 +2004,9,4,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,9,87,95740,0,0,318,0,0,0,0,0,0,0,195,0,5,5,4000,77777,9,999999999,23,0,0,88,0.2,0,0 +2004,9,4,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9.9,8.2,89,95460,0,0,312,0,0,0,0,0,0,0,307,0,5,5,4000,77777,9,999999999,21,0,0,88,0.2,0,0 +2004,9,4,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,8,87,95721,0,0,312,0,0,0,0,0,0,0,351,0,5,5,5000,77777,9,999999999,21,0,0,88,0.2,0,0 +2004,9,4,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,7,87,95702,0,0,307,0,0,0,0,0,0,0,320,0,5,5,4000,77777,9,999999999,19,0,0,88,0.2,0,0 +2004,9,4,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8.1,7.5,96,95463,0,0,304,0,0,0,0,0,0,0,209,0,5,5,2000,77777,9,999999999,20,0,0,88,0.2,0,0 +2004,9,4,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,5,93,95644,0,0,292,0,0,0,0,0,0,0,141,0,5,5,2000,77777,0,999999999,16,0,0,88,0.2,0,0 +2004,9,4,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,8,100,95683,0,0,304,0,0,0,0,0,0,0,110,1.5,5,5,200,77777,0,999999999,21,0,0,88,0.2,0,0 +2004,9,4,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,9.9,9.9,100,95630,127,589,342,11,0,11,1044,0,1051,426,140,4.1,10,10,200,15,0,999999999,25,0,0,88,0.2,0,0 +2004,9,4,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,11,100,95740,401,1344,339,110,6,108,12287,319,12124,3919,170,4.1,9,9,400,90,0,999999999,28,0,0,88,0.2,0,0 +2004,9,4,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,11,94,95759,641,1344,344,215,25,203,24035,1899,22800,7755,140,3.1,9,9,3000,300,0,999999999,28,0,0,88,0.2,0,0 +2004,9,4,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13.2,10.4,83,95843,830,1344,349,303,62,265,34365,5025,30220,10885,140,6.2,9,9,5000,300,0,999999999,27,0,0,88,0.2,0,0 +2004,9,4,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,10,77,95797,956,1344,352,363,66,316,41426,5568,36328,13333,130,3.6,9,9,5000,300,0,999999999,25,0,0,88,0.2,0,0 +2004,9,4,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,10,77,95797,1010,1344,352,388,25,370,44171,2229,42322,15196,140,4.6,9,9,5000,300,0,999999999,25,0,0,88,0.2,0,0 +2004,9,4,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13.3,9.9,80,95836,988,1344,359,230,4,228,27155,270,26981,10708,160,5.1,10,10,5000,450,0,999999999,25,0,0,88,0.2,0,0 +2004,9,4,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,10,82,95778,892,1344,357,203,5,199,23767,373,23479,9212,150,4.6,10,10,5000,450,0,999999999,25,0,0,88,0.2,0,0 +2004,9,4,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,10,82,95778,729,1344,347,255,85,209,29018,6430,23908,8582,160,4.6,9,9,6000,77777,0,999999999,25,0,0,88,0.2,0,0 +2004,9,4,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12.5,9.7,83,95868,508,1344,354,95,0,95,9523,0,9601,3972,170,3.6,10,10,6000,300,0,999999999,25,0,0,88,0.2,0,0 +2004,9,4,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,10,88,95759,247,1344,352,32,0,32,3136,0,3159,1269,170,3.6,10,10,6000,300,0,999999999,26,0,0,88,0.2,0,0 +2004,9,4,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,11,94,95759,0,1161,353,0,0,0,0,0,0,0,160,3.1,10,10,5000,300,0,999999999,28,0,0,88,0.2,0,0 +2004,9,4,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,10.8,99,95991,0,0,348,0,0,0,0,0,0,0,140,3.6,10,10,3000,300,0,919999999,28,0,0,88,0.2,2,0 +2004,9,4,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,11,100,95740,0,0,349,0,0,0,0,0,0,0,140,1.5,10,10,4000,900,0,919999999,28,0,0,88,0.2,0,0 +2004,9,4,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,11,100,95740,0,0,349,0,0,0,0,0,0,0,180,2.6,10,10,5000,900,0,919999999,28,0,0,88,0.2,0,0 +2004,9,4,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.8,10.5,98,96053,0,0,347,0,0,0,0,0,0,0,120,2.6,10,10,5000,600,0,919999999,27,0,0,88,0.2,0,0 +2004,9,4,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,10,94,95740,0,0,338,0,0,0,0,0,0,0,130,1.5,9,9,8000,1200,0,919999999,26,0,0,88,0.2,0,0 +2004,9,5,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,10,94,95740,0,0,338,0,0,0,0,0,0,0,200,1.5,9,9,8000,1200,0,919999999,26,0,0,88,0.2,0,0 +2004,9,5,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10.6,10.3,98,96134,0,0,336,0,0,0,0,0,0,0,130,2.1,9,9,8000,4500,0,919999999,26,0,0,88,0.2,0,0 +2004,9,5,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,10,94,95740,0,0,338,0,0,0,0,0,0,0,60,2.1,9,9,8000,3900,0,919999999,26,0,0,88,0.2,0,0 +2004,9,5,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,8,82,95740,0,0,336,0,0,0,0,0,0,0,128,0.5,9,9,5000,600,0,919999999,21,0,0,88,0.2,0,0 +2004,9,5,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8.9,8.6,98,95988,0,0,311,0,0,0,0,0,0,0,150,1.5,6,6,5000,4500,0,919999999,22,0,0,88,0.2,0,0 +2004,9,5,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,9,87,95740,0,0,318,0,0,0,0,0,0,0,140,2.6,5,5,8000,77777,0,919999999,23,0,0,88,0.2,0,0 +2004,9,5,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,10,94,95740,0,0,347,0,0,0,0,0,0,0,180,3.6,10,10,4000,1200,0,919999999,26,0,0,88,0.2,0,0 +2004,9,5,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10.7,10.1,96,96278,133,618,337,19,0,19,1857,0,1870,713,90,2.6,9,9,4000,1200,0,919999999,26,0,0,88,0.2,0,0 +2004,9,5,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,10,94,95740,408,1344,338,113,8,111,12602,409,12385,4008,230,2.6,9,9,5000,77777,0,919999999,26,0,0,88,0.2,0,0 +2004,9,5,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,10,94,95740,648,1344,338,218,36,201,24466,2705,22637,7757,245,1.5,9,9,5000,77777,0,919999999,26,0,0,88,0.2,0,0 +2004,9,5,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12.4,9.8,84,96461,837,1344,354,187,1,186,21820,87,21835,8468,360,4.6,10,10,5000,900,0,919999999,25,0,0,88,0.2,0,0 +2004,9,5,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,10,88,95759,963,1344,352,223,1,222,26213,88,26249,10379,160,1.5,10,10,5000,900,0,919999999,26,0,0,88,0.2,0,0 +2004,9,5,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,10,82,95778,1016,1344,357,239,10,231,28187,772,27397,10931,92,1.5,10,10,6000,1500,0,919999999,25,0,0,88,0.2,0,0 +2004,9,5,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,8.6,70,96340,994,1344,361,233,4,230,27420,279,27239,10806,320,2.1,10,10,7000,1500,0,919999999,22,0,0,88,0.2,0,0 +2004,9,5,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,10,72,95815,898,1344,357,335,55,298,38046,4648,34075,12339,270,3.6,9,9,7000,1500,0,919999999,25,0,0,88,0.2,0,0 +2004,9,5,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,10,72,95815,733,1344,337,464,185,363,50421,18433,39742,11518,190,2.6,5,5,7000,77777,0,919999999,25,0,0,88,0.2,0,0 +2004,9,5,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15.5,9,65,96208,512,1344,359,158,53,138,17741,3301,15555,5258,180,3.1,9,9,7000,77777,0,919999999,23,0,0,88,0.2,0,0 +2004,9,5,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,14.2,8.5,68,95993,250,1344,332,95,150,67,10508,3607,7450,2259,276,2.8,5,5,7000,77777,9,999999999,22,0,0,88,0.2,0,0 +2004,9,5,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,8,72,95778,0,1176,326,0,0,0,0,0,0,0,170,2.6,5,5,7000,77777,0,919999999,21,0,0,88,0.2,0,0 +2004,9,5,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12.7,8.8,77,96354,0,0,325,0,0,0,0,0,0,0,160,3.6,5,5,7000,77777,9,999999999,23,0,0,88,0.2,0,0 +2004,9,5,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,9,82,95759,0,0,341,0,0,0,0,0,0,0,170,3.1,9,9,7000,77777,9,999999999,23,0,0,88,0.2,2,0 +2004,9,5,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,9,87,95740,0,0,313,0,0,0,0,0,0,0,170,2.1,3,3,7000,77777,9,999999999,23,0,0,88,0.2,0,0 +2004,9,5,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10.4,8.7,89,96272,0,0,318,0,0,0,0,0,0,0,230,1.5,6,6,7000,7500,9,999999999,23,0,0,88,0.2,0,0 +2004,9,5,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,9,8,93,95702,0,0,326,0,0,0,0,0,0,0,213,1.5,9,9,7000,7500,9,999999999,21,0,0,88,0.2,0,0 +2004,9,6,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,9,8,93,95702,0,0,326,0,0,0,0,0,0,0,98,1,9,9,7000,4500,9,999999999,21,0,0,88,0.2,0,0 +2004,9,6,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.1,7.7,97,96077,0,0,322,0,0,0,0,0,0,0,240,1.5,9,9,8000,4500,0,999999999,20,0,0,88,0.2,0,0 +2004,9,6,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,8,7,93,95683,0,0,321,0,0,0,0,0,0,0,354,0,9,9,8000,4500,0,999999999,19,0,0,88,0.2,0,0 +2004,9,6,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,7.1,6.6,97,95847,0,0,325,0,0,0,0,0,0,0,165,1.3,10,10,5882,4500,9,999999999,18,0,0,88,0.2,0,0 +2004,9,6,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6.2,6.2,100,96011,0,0,294,0,0,0,0,0,0,0,30,2.6,5,5,500,77777,0,999999999,18,0,0,88,0.2,0,0 +2004,9,6,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,7,100,95663,0,0,298,0,0,0,0,0,0,0,20,2.6,5,5,2800,77777,0,999999999,19,0,0,88,0.2,0,0 +2004,9,6,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,8,100,95683,0,0,322,0,0,0,0,0,0,0,20,3.1,9,9,3000,4500,0,999999999,21,0,0,88,0.2,0,0 +2004,9,6,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.7,7.1,96,96012,140,648,319,21,0,21,2025,0,2039,773,230,1.5,9,9,4000,4500,0,999999999,19,0,0,88,0.2,0,0 +2004,9,6,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,8,100,95683,415,1345,331,71,0,71,7046,0,7101,2892,338,1,10,10,5000,4500,0,999999999,21,0,0,88,0.2,0,0 +2004,9,6,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,9,93,95721,655,1345,341,135,0,135,13699,0,13817,5862,297,0,10,10,5000,4500,0,999999999,23,0,0,88,0.2,0,0 +2004,9,6,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11.2,9.5,89,96080,844,1345,338,309,23,295,34902,2009,33447,11763,100,0.5,9,9,8000,4800,0,999999999,24,0,0,88,0.2,0,0 +2004,9,6,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,10,82,95778,969,1345,347,369,66,321,42140,5603,36960,13579,110,2.1,9,9,8000,4800,0,999999999,25,0,0,88,0.2,0,0 +2004,9,6,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,9,67,95815,1023,1345,356,395,67,344,45265,5818,39682,14621,150,2.6,9,9,8000,4800,0,999999999,23,0,0,88,0.2,0,0 +2004,9,6,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15.8,8.1,60,95977,1000,1345,359,384,67,335,44048,5834,38581,14190,140,2.1,9,9,8000,4800,0,999999999,21,0,0,88,0.2,0,0 +2004,9,6,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,17,8,55,95852,903,1345,365,338,65,295,38557,5533,33780,12291,32,0.5,9,9,8000,4800,0,999999999,21,0,0,88,0.2,0,0 +2004,9,6,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,8,55,95852,738,1345,365,261,42,238,29367,3366,26946,9402,180,2.6,9,9,8000,4800,0,999999999,21,0,0,88,0.2,0,0 +2004,9,6,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16.5,8.5,59,95857,517,1345,373,97,0,97,9765,0,9845,4074,140,2.6,10,10,8000,4500,0,999999999,22,0,0,88,0.2,0,0 +2004,9,6,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,8,59,95834,254,1345,370,34,0,34,3289,0,3313,1330,140,2.6,10,10,8000,4500,0,999999999,21,0,0,88,0.2,0,0 +2004,9,6,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,8,67,95797,0,1192,350,0,0,0,0,0,0,0,150,3.6,9,9,8000,4500,0,999999999,21,0,0,88,0.2,0,0 +2004,9,6,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13.6,8,69,95926,0,0,358,0,0,0,0,0,0,0,130,1.5,10,10,8000,3900,9,999999999,21,0,0,88,0.2,0,0 +2004,9,6,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,7,67,95778,0,0,354,0,0,0,0,0,0,0,140,3.1,10,10,8000,3900,9,999999999,19,0,0,88,0.2,0,0 +2004,9,6,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,6,62,95778,0,0,353,0,0,0,0,0,0,0,150,3.1,10,10,8000,3900,9,999999999,17,0,0,88,0.2,0,0 +2004,9,6,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12.6,5.8,63,96002,0,0,350,0,0,0,0,0,0,0,120,1,10,10,8000,3600,9,999999999,17,0,0,88,0.2,0,0 +2004,9,6,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,12,7,71,95759,0,0,339,0,0,0,0,0,0,0,239,1,9,9,8000,1500,0,919999999,19,0,0,88,0.2,0,0 +2004,9,7,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,6,67,95759,0,0,338,0,0,0,0,0,0,0,120,2.6,9,9,8000,1500,0,919999999,17,0,0,88,0.2,0,0 +2004,9,7,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11.1,6.5,73,96012,0,0,344,0,0,0,0,0,0,0,230,2.1,10,10,8000,1500,0,919999999,18,0,0,88,0.2,0,0 +2004,9,7,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,7,82,95721,0,0,330,0,0,0,0,0,0,0,176,0.5,9,9,8000,1500,0,919999999,19,0,0,88,0.2,0.5,0 +2004,9,7,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,8,87,95721,0,0,331,0,0,0,0,0,0,0,10,1.5,9,9,8000,1500,0,919999999,21,0,0,88,0.2,0,0 +2004,9,7,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.8,8,89,95892,0,0,339,0,0,0,0,0,0,0,90,6.2,10,10,8000,1500,0,919999999,21,0,0,88,0.2,0,0 +2004,9,7,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,8,87,95721,0,0,331,0,0,0,0,0,0,0,271,1,9,9,8000,1500,0,919999999,21,0,0,88,0.2,0,0 +2004,9,7,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,8,87,95721,0,0,331,0,0,0,0,0,0,0,130,1,9,9,8000,1500,0,919999999,21,0,0,88,0.2,0,0 +2004,9,7,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.1,7.5,84,95955,147,678,340,14,0,14,1330,0,1339,541,150,2.6,10,10,8000,1500,0,919999999,20,0,0,88,0.2,0,0 +2004,9,7,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,8,82,95740,421,1346,336,119,11,115,13261,618,12920,4189,160,4.1,9,9,8000,1500,0,919999999,21,0,0,88,0.2,0,0 +2004,9,7,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,9,93,95721,662,1346,332,224,37,206,25209,2834,23286,7996,150,3.1,9,9,7000,1500,0,919999999,23,0,0,88,0.2,0,0 +2004,9,7,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10.3,9.4,94,96025,851,1346,343,191,4,188,22305,282,22119,8606,190,4.1,10,10,7000,360,0,919999999,24,0,0,88,0.2,0,0 +2004,9,7,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,10,94,95740,976,1346,347,227,1,226,26662,92,26696,10569,160,4.1,10,10,7000,450,0,919999999,26,0,0,88,0.2,0,0 +2004,9,7,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,9,87,95740,1029,1346,346,242,11,234,28675,806,27844,11110,200,4.1,10,10,7000,390,0,919999999,23,0,0,88,0.2,0,0 +2004,9,7,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10.8,7.9,82,96025,1006,1346,344,236,4,233,27852,290,27660,10976,190,5.1,10,10,7000,600,0,919999999,21,0,0,88,0.2,0,0 +2004,9,7,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,9,87,95740,908,1346,337,340,56,302,38678,4742,34622,12543,150,4.6,9,9,7000,600,0,919999999,23,0,0,88,0.2,0,0 +2004,9,7,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,9,93,95721,743,1346,341,160,1,159,18601,43,18643,7085,150,4.6,10,10,8000,750,0,919999999,23,0,0,88,0.2,0,0 +2004,9,7,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.9,8.1,95,96064,521,1346,335,98,0,98,9872,0,9953,4120,180,6.2,10,10,5000,600,0,919999999,21,0,0,88,0.2,0,0 +2004,9,7,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,8,93,95702,257,1346,335,34,0,34,3354,0,3379,1357,170,2.6,10,10,5000,600,0,919999999,21,0,0,88,0.2,0,0 +2004,9,7,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,7,87,95702,0,1208,334,0,0,0,0,0,0,0,170,4.1,10,10,7000,600,0,919999999,19,0,0,88,0.2,0,0 +2004,9,7,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.3,8,98,96298,0,0,332,0,0,0,0,0,0,0,140,3.1,10,10,7000,750,0,919999999,21,0,0,88,0.2,7,0 +2004,9,7,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,8,100,95683,0,0,322,0,0,0,0,0,0,0,140,4.1,9,9,5000,1500,0,919999999,21,0,0,88,0.2,0.1,0 +2004,9,7,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,8,100,95683,0,0,331,0,0,0,0,0,0,0,140,3.1,10,10,3000,690,0,919999999,21,0,0,88,0.2,0,0 +2004,9,7,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.9,7.9,100,96403,0,0,330,0,0,0,0,0,0,0,170,2.1,10,10,4000,840,0,919999999,21,0,0,88,0.2,0,0 +2004,9,7,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,7,93,95683,0,0,330,0,0,0,0,0,0,0,200,2.6,10,10,5000,2700,0,919999999,19,0,0,88,0.2,0,0 +2004,9,8,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,7,100,95663,0,0,325,0,0,0,0,0,0,0,210,2.6,10,10,8000,2700,0,919999999,19,0,0,88,0.2,0,0 +2004,9,8,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.3,7,98,96382,0,0,326,0,0,0,0,0,0,0,140,2.1,10,10,8000,1200,0,919999999,19,0,0,88,0.2,0,0 +2004,9,8,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,7,100,95663,0,0,325,0,0,0,0,0,0,0,130,2.1,10,10,8000,1200,0,919999999,19,0,0,88,0.2,0,0 +2004,9,8,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7,7,100,95663,0,0,325,0,0,0,0,0,0,0,150,0.5,10,10,8000,1200,0,919999999,19,0,0,88,0.2,0,0 +2004,9,8,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7,6.9,99,96357,0,0,325,0,0,0,0,0,0,0,260,1.5,10,10,8000,1200,0,919999999,19,0,0,88,0.2,0,0 +2004,9,8,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,7,7,100,95663,0,0,325,0,0,0,0,0,0,0,80,0,10,10,8000,1200,0,919999999,19,0,0,88,0.2,0,0 +2004,9,8,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,7,100,95663,0,0,325,0,0,0,0,0,0,0,275,0.5,10,10,8000,1200,0,919999999,19,0,0,88,0.2,0,0 +2004,9,8,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7.2,7.1,99,96522,153,709,326,15,0,15,1435,0,1445,582,300,1,10,10,8000,1500,0,919999999,19,0,0,88,0.2,0,0 +2004,9,8,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,7,93,95683,428,1346,330,74,0,74,7401,0,7459,3041,160,1.5,10,10,8000,600,0,919999999,19,0,0,88,0.2,0,0 +2004,9,8,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8,6,87,95683,668,1346,319,229,80,189,25938,6023,21524,7588,160,1.5,9,9,8000,1200,0,919999999,17,0,0,88,0.2,0,0 +2004,9,8,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8.9,6,82,96630,858,1346,333,194,4,191,22686,316,22473,8734,320,0.5,10,10,8000,1200,0,919999999,17,0,0,88,0.2,0,0 +2004,9,8,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9,6,81,95702,983,1346,333,230,10,223,27154,734,26453,10492,210,1,10,10,8000,1200,0,919999999,17,0,0,88,0.2,0,0 +2004,9,8,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,6,76,95721,1035,1346,338,245,3,243,29004,263,28848,11450,140,1,10,10,8000,1200,0,919999999,17,0,0,88,0.2,0,0 +2004,9,8,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10.5,5.1,69,96510,1012,1346,339,239,11,231,28247,807,27452,10912,120,1.5,10,10,8000,1500,0,919999999,16,0,0,88,0.2,0,0 +2004,9,8,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,6,76,95721,913,1346,338,210,1,209,24631,76,24674,9662,180,3.1,10,10,8000,1500,0,919999999,17,0,0,88,0.2,0,0 +2004,9,8,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,5,66,95740,747,1346,342,162,9,157,18944,622,18447,7026,160,2.6,10,10,8000,1500,0,919999999,15,0,0,88,0.2,0,0 +2004,9,8,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11.7,5.4,65,96429,525,1346,320,277,117,232,29985,9968,25204,7093,110,2.6,6,6,8000,1500,0,919999999,16,0,0,88,0.2,0,0 +2004,9,8,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,4,62,95740,261,1346,331,58,0,58,5667,0,5709,2067,210,4.1,9,9,8000,1500,0,919999999,14,0,0,88,0.2,0,0 +2004,9,8,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,5,71,95721,0,1224,328,0,0,0,0,0,0,0,210,5.1,9,9,8000,1500,0,919999999,16,0,0,88,0.2,0,0 +2004,9,8,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8.9,4.3,73,96564,0,0,322,0,0,0,0,0,0,0,210,5.1,9,9,8000,1800,9,999999999,15,0,0,88,0.2,0,0 +2004,9,8,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8,4,76,95683,0,0,300,0,0,0,0,0,0,0,210,5.1,5,5,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2004,9,8,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8,3,71,95683,0,0,316,0,0,0,0,0,0,0,200,4.6,9,9,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2004,9,8,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8.4,1.8,63,96630,0,0,317,0,0,0,0,0,0,0,200,3.6,9,9,8000,1200,9,999999999,11,0,0,88,0.2,0,0 +2004,9,8,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8,4,76,95683,0,0,317,0,0,0,0,0,0,0,360,0.5,9,9,8000,1200,9,999999999,14,0,0,88,0.2,0,0 +2004,9,9,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7,4,81,95663,0,0,313,0,0,0,0,0,0,0,170,2.6,9,9,8000,900,9,999999999,14,0,0,88,0.2,0,0 +2004,9,9,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7,4,81,95663,0,0,313,0,0,0,0,0,0,0,120,1.5,9,9,8000,900,9,999999999,14,0,0,88,0.2,0,0 +2004,9,9,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7,3,76,95663,0,0,312,0,0,0,0,0,0,0,160,2.6,9,9,8000,1200,9,999999999,13,0,0,88,0.2,0,0 +2004,9,9,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7,4,81,95663,0,0,313,0,0,0,0,0,0,0,190,2.6,9,9,8000,1500,9,999999999,14,0,0,88,0.2,0,0 +2004,9,9,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,6.4,3.4,81,96657,0,0,309,0,0,0,0,0,0,0,160,3.1,9,9,8000,1200,9,999999999,13,0,0,88,0.2,0,0 +2004,9,9,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,6,3,81,95644,0,0,307,0,0,0,0,0,0,0,271,1.5,9,9,8000,1800,9,999999999,13,0,0,88,0.2,0,0 +2004,9,9,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,5,3,87,95624,0,0,286,0,0,0,0,0,0,0,360,1,5,5,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2004,9,9,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,4.4,3.5,94,96749,160,739,280,50,58,43,5497,0,4755,1388,154,0,3,3,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2004,9,9,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,7,3,76,95663,435,1347,294,226,365,109,25507,20355,12295,4087,71,0,5,5,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2004,9,9,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,9,3,66,95702,675,1347,298,446,619,136,51997,41496,15897,5962,99,1.5,3,3,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2004,9,9,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9.8,4,67,96761,864,1347,303,615,752,133,74228,49890,16146,6520,190,2.1,3,3,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2004,9,9,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,4,62,95740,989,1347,308,729,787,152,88800,53435,18629,7680,190,2.6,3,3,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2004,9,9,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,12,2,50,95759,1041,1347,315,735,652,231,87408,50188,27653,11049,28,2.6,5,5,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2004,9,9,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13.1,1.5,45,96635,1017,1347,319,715,701,186,86117,50729,22537,9186,190,2.1,5,5,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2004,9,9,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,1,41,95797,919,1347,323,629,688,161,75607,48611,19363,7817,210,3.1,5,5,8000,77777,9,999999999,10,0,0,88,0.2,0,0 +2004,9,9,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,1,41,95797,752,1347,323,486,465,227,55291,38117,25936,9222,200,2.6,5,5,8000,77777,9,999999999,10,0,0,88,0.2,0,0 +2004,9,9,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14.1,2.1,44,96560,529,1347,324,300,439,128,34181,28096,14624,5070,200,2.6,5,5,8000,77777,9,999999999,12,0,0,88,0.2,0,0 +2004,9,9,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,3,51,95778,265,1347,315,113,227,68,12537,6505,7604,2339,230,3.6,3,3,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2004,9,9,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,4,66,95721,0,1239,303,0,0,0,0,0,0,0,220,3.1,3,3,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2004,9,9,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10.7,2.5,57,96599,0,0,292,0,0,0,0,0,0,0,190,3.1,0,0,8000,77777,9,999999999,12,0,0,88,0.2,0,0 +2004,9,9,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,10,3,62,95721,0,0,305,0,0,0,0,0,0,0,160,4.1,4,4,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2004,9,9,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,8,2,66,95683,0,0,297,0,0,0,0,0,0,0,170,3.1,5,5,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2004,9,9,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7,1.7,69,96640,0,0,277,0,0,0,0,0,0,0,320,1.5,0,0,9900,77777,9,999999999,11,0,0,88,0.2,0,0 +2004,9,9,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,4,2,87,95604,0,0,298,0,0,0,0,0,0,0,330,0.5,9,9,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2004,9,10,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,4,2,87,95604,0,0,298,0,0,0,0,0,0,0,30,1.5,9,9,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2004,9,10,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,2.9,1.4,90,96549,0,0,260,0,0,0,0,0,0,0,10,0.5,0,0,9900,77777,9,999999999,11,0,0,88,0.2,0,0 +2004,9,10,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,3,2,93,95584,0,0,302,0,0,0,0,0,0,0,10,1,10,10,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2004,9,10,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,2,1,93,95564,0,0,296,0,0,0,0,0,0,0,40,1,10,10,9900,77777,9,999999999,11,0,0,88,0.2,0,0 +2004,9,10,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,2.1,1.2,94,96467,0,0,257,0,0,0,0,0,0,0,30,0.5,0,0,9900,77777,9,999999999,11,0,0,88,0.2,0,0 +2004,9,10,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,2,1,93,95564,0,0,257,0,0,0,0,0,0,0,273,0,0,0,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2004,9,10,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,1,0,93,95544,0,0,252,0,0,0,0,0,0,0,10,1,0,0,8000,77777,9,999999999,10,0,0,88,0.2,0,0 +2004,9,10,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,2.5,1.3,92,96513,167,770,259,54,114,40,6020,0,4464,1342,360,0.5,0,0,5000,77777,9,999999999,11,0,0,88,0.2,0,0 +2004,9,10,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5,4,93,95624,442,1348,271,248,459,98,28240,24289,11142,3806,350,1,0,0,5000,77777,9,999999999,14,0,0,88,0.2,0,0 +2004,9,10,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,4,71,95702,682,1348,287,456,647,129,53525,42474,15208,5758,206,0,0,0,5000,77777,9,999999999,14,0,0,88,0.2,0,0 +2004,9,10,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.2,3.3,62,96504,871,1348,291,630,779,126,76393,51216,15397,6248,110,1,0,0,6000,77777,9,999999999,13,0,0,88,0.2,0,0 +2004,9,10,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,13,3,51,95778,996,1348,302,746,767,180,89788,54790,21741,8856,200,1.5,0,0,6000,77777,9,999999999,13,0,0,88,0.2,0,0 +2004,9,10,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,14,3,47,95797,1048,1348,307,794,771,195,95719,55940,23678,9658,180,3.1,0,0,6000,77777,9,999999999,13,0,0,88,0.2,0,0 +2004,9,10,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15.2,3.1,44,96420,1023,1348,312,771,769,188,92891,55379,22748,9277,190,3.6,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2004,9,10,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,5,48,95834,924,1348,317,677,800,129,82589,52144,15852,6512,170,3.1,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2004,9,10,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,17,4,42,95852,757,1348,327,524,737,110,63014,46500,13320,5266,180,3.6,1,1,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2004,9,10,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15.9,4,45,96376,533,1348,316,325,527,117,37265,32101,13417,4746,210,4.1,0,0,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2004,9,10,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,15,5,51,95815,268,1348,327,115,233,69,12807,6657,7689,2371,210,4.6,3,3,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2004,9,10,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,12,5,62,95759,0,1255,316,0,0,0,0,0,0,0,210,4.1,4,4,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2004,9,10,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11.7,4.9,63,96467,0,0,299,0,0,0,0,0,0,0,190,3.6,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2004,9,10,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,10,5,71,95721,0,0,312,0,0,0,0,0,0,0,150,2.1,6,6,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2004,9,10,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,9,5,76,95702,0,0,311,0,0,0,0,0,0,0,160,2.6,7,7,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2004,9,10,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8.2,4,75,96607,0,0,284,0,0,0,0,0,0,0,170,2.1,0,0,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2004,9,10,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,7,4,81,95663,0,0,306,0,0,0,0,0,0,0,120,2.1,8,8,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2004,9,11,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,7,4,81,95663,0,0,306,0,0,0,0,0,0,0,276,1.5,8,8,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2004,9,11,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3.9,2.9,93,96673,0,0,266,0,0,0,0,0,0,0,310,1,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2004,9,11,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3,2,93,95584,0,0,261,0,0,0,0,0,0,0,180,0,0,0,6000,77777,9,999999999,12,0,0,88,0.2,0,0 +2004,9,11,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3,2,93,95584,0,0,261,0,0,0,0,0,0,0,50,1.5,0,0,5000,77777,9,999999999,12,0,0,88,0.2,0,0 +2004,9,11,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,2.9,2,94,96624,0,0,261,0,0,0,0,0,0,0,242,0,0,0,4000,77777,9,999999999,12,0,0,88,0.2,0,0 +2004,9,11,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3,2,93,95584,0,0,261,0,0,0,0,0,0,0,41,0,0,0,4000,77777,9,999999999,12,0,0,88,0.2,0,0 +2004,9,11,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,1,0,93,95544,0,0,252,0,0,0,0,0,0,0,78,0,0,0,5000,77777,0,999999999,10,0,0,88,0.2,0,0 +2004,9,11,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,0.4,0,97,96762,173,801,250,58,76,48,6366,428,5314,1542,150,0,0,0,800,77777,0,999999999,10,0,0,88,0.2,0,0 +2004,9,11,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5,4,93,95624,449,1348,271,254,467,98,28909,24948,11255,3858,360,0.5,0,0,3000,77777,0,999999999,14,0,0,88,0.2,0,0 +2004,9,11,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,4,71,95702,689,1348,287,463,651,130,54286,42871,15330,5817,330,1.5,0,0,5000,77777,0,999999999,14,0,0,88,0.2,0,0 +2004,9,11,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.8,3.6,61,96771,878,1348,294,636,782,127,77166,51343,15457,6283,200,1.5,0,0,5000,77777,0,999999999,14,0,0,88,0.2,0,0 +2004,9,11,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,4,54,95778,1002,1348,303,751,768,181,90399,54579,21842,8907,175,1,0,0,8000,77777,0,999999999,14,0,0,88,0.2,0,0 +2004,9,11,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,5,51,95815,1054,1348,313,797,772,195,96154,55289,23618,9650,108,1.5,0,0,8000,77777,0,999999999,15,0,0,88,0.2,0,0 +2004,9,11,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15.1,4.5,49,96635,1029,1348,313,775,770,188,93352,54971,22756,9293,190,1.5,0,0,8000,77777,0,999999999,15,0,0,88,0.2,0,0 +2004,9,11,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,16,4,45,95834,929,1348,327,682,761,158,82037,52630,19066,7735,180,3.6,2,2,9900,77777,0,999999999,14,0,0,88,0.2,0,0 +2004,9,11,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,16,4,45,95834,761,1348,327,528,738,111,63447,46662,13454,5323,170,3.6,2,2,9900,77777,0,999999999,14,0,0,88,0.2,0,0 +2004,9,11,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16.1,3.9,44,96616,537,1348,317,328,532,117,37697,32477,13455,4769,200,4.1,0,0,9900,77777,0,999999999,14,0,0,88,0.2,0,0 +2004,9,11,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,15,6,55,95815,272,1348,328,117,230,70,12937,6686,7824,2414,220,4.6,3,3,9900,77777,0,999999999,17,0,0,88,0.2,0,0 +2004,9,11,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,12,5,62,95759,0,1271,316,0,0,0,0,0,0,0,220,3.6,4,4,9900,77777,0,999999999,15,0,0,88,0.2,0,0 +2004,9,11,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11.8,5,63,96686,0,0,299,0,0,0,0,0,0,0,200,3.6,0,0,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2004,9,11,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,12,5,62,95759,0,0,316,0,0,0,0,0,0,0,150,2.1,4,4,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2004,9,11,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,11,5,66,95740,0,0,314,0,0,0,0,0,0,0,130,1,5,5,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2004,9,11,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.3,4.6,83,96779,0,0,281,0,0,0,0,0,0,0,280,1,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2004,9,11,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,4,87,95644,0,0,275,0,0,0,0,0,0,0,44,0,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2004,9,12,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,5,87,95663,0,0,280,0,0,0,0,0,0,0,3,0,0,0,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2004,9,12,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4.8,4.2,96,96776,0,0,270,0,0,0,0,0,0,0,40,1.5,0,0,6000,77777,9,999999999,15,0,0,88,0.2,0,0 +2004,9,12,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,4,93,95624,0,0,271,0,0,0,0,0,0,0,102,0,0,0,6000,77777,9,999999999,14,0,0,88,0.2,0,0 +2004,9,12,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3,3,100,95584,0,0,262,0,0,0,0,0,0,0,215,0,0,0,4000,77777,9,999999999,13,0,0,88,0.2,0,0 +2004,9,12,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3.7,3.3,97,96707,0,0,265,0,0,0,0,0,0,0,60,1,0,0,800,77777,0,999999999,13,0,0,88,0.2,0,0 +2004,9,12,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,1,1,100,95544,0,0,253,0,0,0,0,0,0,0,241,0,0,0,2000,77777,0,999999999,11,0,0,88,0.2,0,0 +2004,9,12,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,1,1,100,95544,0,0,253,0,0,0,0,0,0,0,60,1,0,0,2000,77777,0,999999999,11,0,0,88,0.2,0,0 +2004,9,12,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,2.4,2.3,99,96784,180,832,259,61,137,43,6823,402,4796,1451,247,0,0,0,2000,77777,0,999999999,12,0,0,88,0.2,0,0 +2004,9,12,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,5,81,95683,456,1349,284,259,470,100,29479,25273,11427,3928,13,1,0,0,4000,77777,0,999999999,16,0,0,88,0.2,0,0 +2004,9,12,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,6,71,95740,696,1349,297,467,661,126,54963,42573,14913,5699,10,2.6,0,0,5000,77777,0,999999999,17,0,0,88,0.2,0,0 +2004,9,12,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,13,7,67,95778,885,1349,307,638,791,120,77791,50047,14683,6003,330,2.1,0,0,5000,77777,0,999999999,19,0,0,88,0.2,0,0 +2004,9,12,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,16,5,48,95834,1009,1349,317,755,769,181,90996,54333,21926,8952,189,1.5,0,0,5000,77777,0,999999999,15,0,0,88,0.2,0,0 +2004,9,12,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,4,39,95870,1060,1349,325,804,773,198,96976,55850,23975,9786,331,1,0,0,8000,77777,0,999999999,14,0,0,88,0.2,0,0 +2004,9,12,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19.8,3.9,35,96447,1035,1349,333,781,771,190,94065,55363,23040,9404,180,2.1,0,0,8000,77777,0,999999999,14,0,0,88,0.2,0,0 +2004,9,12,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,22,2,27,95942,934,1349,341,689,762,162,82894,53630,19585,7932,154,1,0,0,9900,77777,0,999999999,11,0,0,88,0.2,0,0 +2004,9,12,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,23,-1,20,95959,766,1349,342,536,744,114,64515,48628,13807,5454,220,3.1,0,0,9900,77777,0,999999999,8,0,0,88,0.2,0,0 +2004,9,12,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,22.4,4.5,31,96266,541,1349,346,331,533,118,38031,32581,13563,4814,180,4.1,0,0,9900,77777,0,999999999,15,0,0,88,0.2,0,0 +2004,9,12,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,20,8,46,95906,275,1349,350,120,242,71,13316,6938,7868,2437,220,4.1,2,2,9900,77777,0,999999999,21,0,0,88,0.2,0,0 +2004,9,12,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,17,5,45,95852,0,1287,332,0,0,0,0,0,0,0,220,3.6,2,2,9900,77777,0,999999999,15,0,0,88,0.2,0,0 +2004,9,12,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15.5,4.9,49,96330,0,0,315,0,0,0,0,0,0,0,30,1.5,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2004,9,12,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,13,6,62,95778,0,0,321,0,0,0,0,0,0,0,215,1,4,4,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2004,9,12,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,11,5,66,95740,0,0,314,0,0,0,0,0,0,0,34,0.5,5,5,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2004,9,12,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8.4,4.6,77,96318,0,0,285,0,0,0,0,0,0,0,360,1,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2004,9,12,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,8,5,81,95683,0,0,312,0,0,0,0,0,0,0,10,2.6,8,8,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2004,9,13,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,8,4,76,95683,0,0,306,0,0,0,0,0,0,0,161,0.5,7,7,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2004,9,13,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,6.5,2.8,77,96092,0,0,276,0,0,0,0,0,0,0,40,1,0,0,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2004,9,13,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,6,3,81,95644,0,0,301,0,0,0,0,0,0,0,105,1,8,8,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2004,9,13,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,3,81,95644,0,0,274,0,0,0,0,0,0,0,138,0.5,0,0,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2004,9,13,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,2.1,0.9,92,95948,0,0,257,0,0,0,0,0,0,0,20,1,0,0,8000,77777,9,999999999,10,0,0,88,0.2,0,0 +2004,9,13,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3,2,93,95584,0,0,261,0,0,0,0,0,0,0,40,2.1,0,0,5000,77777,9,999999999,12,0,0,88,0.2,0,0 +2004,9,13,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4,2,87,95604,0,0,277,0,0,0,0,0,0,0,50,0.5,3,3,8000,77777,9,999999999,12,0,0,88,0.2,0,0 +2004,9,13,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4.8,2.5,85,95936,187,863,280,64,86,52,7061,834,5766,1679,260,1.5,3,3,5000,77777,9,999999999,12,0,0,88,0.2,0,0 +2004,9,13,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,5,76,95702,463,1350,305,246,366,121,27660,21660,13634,4537,340,1,5,5,6000,77777,9,999999999,16,0,0,88,0.2,0,0 +2004,9,13,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,5,58,95778,703,1350,318,468,638,136,54843,42407,15991,6076,170,0,3,3,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2004,9,13,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,5,45,95852,892,1350,341,602,594,210,70391,45019,24670,9567,50,1.5,5,5,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2004,9,13,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,20,5,37,95906,1016,1350,335,762,787,170,92260,54581,20694,8504,170,1.5,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2004,9,13,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,23,2,25,95959,1066,1350,346,813,774,202,97949,56786,24505,9982,100,1,0,0,9900,77777,9,999999999,11,0,0,88,0.2,0,0 +2004,9,13,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,25.6,5.3,27,95943,1040,1350,362,784,772,191,94536,54948,23071,9428,100,1.5,0,0,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2004,9,13,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,27,-2,15,96029,939,1350,360,698,763,168,83894,55101,20261,8182,180,1,0,0,9900,77777,9,999999999,8,0,0,88,0.2,0,0 +2004,9,13,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,28,-2,14,96046,771,1350,364,541,672,158,63582,48528,18650,7151,220,1.5,0,0,9900,77777,9,999999999,7,0,0,88,0.2,0,0 +2004,9,13,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,28,-1.9,14,95576,545,1350,383,327,435,151,36881,30642,17146,5791,190,2.6,4,4,9900,77777,9,999999999,8,0,0,88,0.2,0,0 +2004,9,13,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,26,6,28,96011,279,1350,365,123,251,71,13678,7604,7938,2463,220,2.6,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2004,9,13,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,8,41,95942,0,1302,372,0,0,0,0,0,0,0,220,2.6,6,6,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2004,9,13,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,20,8,46,95906,0,0,350,0,0,0,0,0,0,0,283,1.5,2,2,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2004,9,13,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,18,8,52,95870,0,0,344,0,0,0,0,0,0,0,181,0.5,3,3,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2004,9,13,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,15,9,67,95815,0,0,336,0,0,0,0,0,0,0,20,1.5,5,5,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2004,9,13,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8.4,1.8,63,96630,0,0,310,0,0,0,0,0,0,0,200,3.6,8,8,9900,77777,9,999999999,11,0,0,88,0.2,0,0 +2004,9,13,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,13,8,72,95778,0,0,329,0,0,0,0,0,0,0,235,1,6,6,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2004,9,14,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,7,87,95702,0,0,290,0,0,0,0,0,0,0,240,1,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2004,9,14,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7,3.6,79,96669,0,0,306,0,0,0,0,0,0,0,120,1.5,8,8,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2004,9,14,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,6,81,95702,0,0,289,0,0,0,0,0,0,0,360,0.5,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2004,9,14,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,6,76,95721,0,0,293,0,0,0,0,0,0,0,140,1,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2004,9,14,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,6.4,3.4,81,96657,0,0,303,0,0,0,0,0,0,0,160,3.1,8,8,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2004,9,14,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,5,93,95644,0,0,276,0,0,0,0,0,0,0,290,1.5,0,0,6000,77777,9,999999999,16,0,0,88,0.2,0,0 +2004,9,14,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,5,93,95644,0,0,288,0,0,0,0,0,0,0,99,0,3,3,7000,77777,9,999999999,16,0,0,88,0.2,0,0 +2004,9,14,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7.7,5.3,85,96192,194,894,283,69,97,55,7524,1067,6025,1755,19,0,0,0,6000,77777,9,999999999,16,0,0,88,0.2,0,0 +2004,9,14,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,7,71,95759,470,1351,302,269,458,110,30499,25597,12491,4269,0,0,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2004,9,14,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,7,63,95797,710,1351,311,478,672,125,56448,42930,14845,5711,180,2.6,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2004,9,14,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15.8,8.1,60,96327,899,1351,320,649,794,121,79188,49941,14871,6097,170,3.6,0,0,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2004,9,14,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,9,59,95852,1022,1351,326,762,771,180,91897,52755,21800,8940,170,5.7,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2004,9,14,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,18,9,56,95870,1072,1351,345,794,820,145,98029,52466,17914,7495,160,5.1,3,3,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2004,9,14,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18.9,7.1,46,96251,1046,1351,333,787,773,189,94881,54231,22957,9400,160,5.1,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2004,9,14,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,20,8,46,95906,945,1351,350,691,806,128,84507,51197,15686,6481,180,2.6,2,2,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2004,9,14,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,21,8,43,95924,775,1351,350,536,745,110,64640,45582,13247,5277,201,1.5,1,1,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2004,9,14,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,20.2,9.8,51,96094,550,1351,342,335,524,122,38307,31234,14026,4984,170,6.2,0,0,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2004,9,14,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,18,9,56,95870,283,1351,345,122,235,73,13565,7043,8150,2526,170,6.7,3,3,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2004,9,14,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,16,10,68,95834,0,1318,342,0,0,0,0,0,0,0,140,3.6,5,5,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2004,9,14,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14.5,9.3,71,96208,0,0,321,0,0,0,0,0,0,0,160,3.1,1,1,9900,77777,9,999999999,24,0,0,88,0.2,0,0 +2004,9,14,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,13,9,77,95778,0,0,334,0,0,0,0,0,0,0,170,4.6,7,7,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2004,9,14,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,11,9,87,95740,0,0,337,0,0,0,0,0,0,0,160,2.1,9,9,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2004,9,14,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,9,93,95721,0,0,296,0,0,0,0,0,0,0,220,1.5,0,0,5000,77777,9,999999999,23,0,0,88,0.2,0,0 +2004,9,14,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,8,93,95702,0,0,291,0,0,0,0,0,0,0,360,1,0,0,3000,77777,9,999999999,21,0,0,88,0.2,0,0 +2004,9,15,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,9,100,95702,0,0,292,0,0,0,0,0,0,0,30,0.5,0,0,2500,77777,9,999999999,23,0,0,88,0.2,0,0 +2004,9,15,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.4,7.8,96,96281,0,0,288,0,0,0,0,0,0,0,140,1.5,0,0,2500,77777,9,999999999,21,0,0,88,0.2,0,0 +2004,9,15,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,7,93,95683,0,0,286,0,0,0,0,0,0,0,230,1,0,0,2500,77777,9,999999999,19,0,0,88,0.2,0,0 +2004,9,15,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,6,93,95663,0,0,281,0,0,0,0,0,0,0,30,1.5,0,0,2200,77777,9,999999999,17,0,0,88,0.2,0,0 +2004,9,15,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,5.7,5.6,99,96209,0,0,317,0,0,0,0,0,0,0,40,2.1,10,10,200,15,0,999999999,17,0,0,88,0.2,0,0 +2004,9,15,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,6,100,95644,0,0,319,0,0,0,0,0,0,0,137,0,10,10,600,77777,0,999999999,17,0,0,88,0.2,0,0 +2004,9,15,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,6,93,95663,0,0,324,0,0,0,0,0,0,0,210,1,10,10,2500,450,0,999999999,17,0,0,88,0.2,0,0 +2004,9,15,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.9,7.8,99,96365,201,926,330,23,0,23,2221,0,2237,899,200,1,10,10,2500,450,0,999999999,21,0,0,88,0.2,0,0 +2004,9,15,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,10,100,95721,477,1351,343,86,0,86,8588,0,8657,3563,360,2.1,10,10,2500,300,0,999999999,26,0,0,88,0.2,0,0 +2004,9,15,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,10,88,95759,717,1351,352,152,0,152,15464,0,15600,6692,360,2.1,10,10,3000,300,0,999999999,26,0,0,88,0.2,0,0 +2004,9,15,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13.1,10.5,84,96380,905,1351,349,337,55,300,38303,4627,34338,12430,57,0,9,9,3000,360,0,999999999,27,0,0,88,0.2,0,0 +2004,9,15,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,11,77,95815,1029,1351,333,756,668,249,88873,50004,29386,11619,60,1.5,3,3,3000,77777,0,999999999,28,0,0,88,0.2,0,0 +2004,9,15,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,11,64,95870,1078,1351,347,802,809,157,98290,51861,19354,8074,170,1,3,3,4000,77777,0,999999999,28,0,0,88,0.2,0,0 +2004,9,15,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19.3,10.3,56,96211,1052,1351,358,733,660,221,87343,47394,26397,10660,200,2.6,5,5,4000,77777,0,999999999,26,0,0,88,0.2,0,0 +2004,9,15,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,11,53,95924,950,1351,367,645,645,192,76458,44935,22903,9184,190,2.1,5,5,5000,77777,0,999999999,28,0,0,88,0.2,0,0 +2004,9,15,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,21,11,53,95924,780,1351,362,531,721,116,63693,43562,13945,5551,170,3.6,3,3,5000,77777,0,999999999,28,0,0,88,0.2,0,0 +2004,9,15,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,21.5,10.4,49,96070,554,1351,349,338,526,123,38663,31304,14107,5022,200,4.1,0,0,5000,77777,0,999999999,26,0,0,88,0.2,0,0 +2004,9,15,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,21,11,53,95924,286,1351,362,125,232,76,13853,7049,8450,2607,180,4.1,3,3,9900,77777,0,999999999,28,0,0,88,0.2,0,0 +2004,9,15,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,17,12,72,95852,0,1334,352,0,0,0,0,0,0,0,210,3.1,6,6,9900,77777,0,999999999,31,0,0,88,0.2,0,0 +2004,9,15,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16.5,11.5,72,96198,0,0,327,0,0,0,0,0,0,0,150,3.1,0,0,9900,77777,9,999999999,29,0,0,88,0.2,0,0 +2004,9,15,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,16,10,68,95834,0,0,342,0,0,0,0,0,0,0,160,2.6,5,5,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2004,9,15,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,14,8,67,95797,0,0,330,0,0,0,0,0,0,0,140,2.1,5,5,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2004,9,15,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11.9,7.6,75,96254,0,0,302,0,0,0,0,0,0,0,160,2.1,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2004,9,15,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,11,8,82,95740,0,0,329,0,0,0,0,0,0,0,241,0,8,8,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2004,9,16,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,11,7,76,95740,0,0,322,0,0,0,0,0,0,0,170,3.1,7,7,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2004,9,16,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9.8,6.7,81,96289,0,0,293,0,0,0,0,0,0,0,160,1,0,0,9900,77777,9,999999999,18,0,0,88,0.2,0,0 +2004,9,16,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,6,93,95663,0,0,281,0,0,0,0,0,0,0,340,2.6,0,0,7000,77777,9,999999999,17,0,0,88,0.2,0,0 +2004,9,16,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,7,6,93,95663,0,0,324,0,0,0,0,0,0,0,141,1.5,10,10,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2004,9,16,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7.2,6,92,96116,0,0,281,0,0,0,0,0,0,0,270,1,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2004,9,16,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,6,93,95663,0,0,281,0,0,0,0,0,0,0,180,1,0,0,6000,77777,9,999999999,17,0,0,88,0.2,0,0 +2004,9,16,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,6,100,95644,0,0,289,0,0,0,0,0,0,0,61,0,3,3,3000,77777,9,999999999,17,0,0,88,0.2,0,0 +2004,9,16,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.8,7.6,86,96128,208,957,306,75,105,59,8262,1530,6519,1904,360,0.5,3,3,4000,77777,9,999999999,20,0,0,88,0.2,0,0 +2004,9,16,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,9,93,95721,484,1352,309,276,449,116,31234,25458,13131,4494,310,2.1,3,3,4000,77777,9,999999999,23,0,0,88,0.2,0,0 +2004,9,16,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,9,72,95797,724,1352,313,489,682,124,57845,42791,14757,5718,41,1.5,0,0,4000,77777,9,999999999,23,0,0,88,0.2,0,0 +2004,9,16,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,9.9,63,96112,912,1352,327,660,798,122,80511,49406,14985,6165,360,0.5,0,0,5000,77777,9,999999999,25,0,0,88,0.2,0,0 +2004,9,16,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,20,11,56,95906,1035,1352,342,772,848,124,95751,51569,15426,6479,136,1,0,0,5000,77777,9,999999999,28,0,0,88,0.2,0,0 +2004,9,16,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,22,9,43,95942,1085,1352,349,820,776,199,99005,54099,24092,9873,307,1,0,0,5000,77777,9,999999999,23,0,0,88,0.2,0,0 +2004,9,16,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23.6,11,45,95908,1057,1352,359,793,774,188,95569,52431,22783,9365,170,4.1,0,0,6000,77777,9,999999999,28,0,0,88,0.2,0,0 +2004,9,16,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,8,36,95977,955,1352,358,701,835,112,86761,51451,13929,5794,160,6.7,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2004,9,16,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,24,7,34,95977,784,1352,356,546,712,133,64907,46457,15927,6268,170,6.7,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2004,9,16,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,24,7.2,34,95906,558,1352,375,332,483,133,37816,30653,15191,5339,170,3.6,4,4,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2004,9,16,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,23,8,38,95959,290,1352,353,130,261,74,14421,8234,8226,2566,170,3.6,0,0,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2004,9,16,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,21,7,40,95924,0,1350,349,0,0,0,0,0,0,0,180,1,1,1,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2004,9,16,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17.8,8.1,53,95975,0,0,343,0,0,0,0,0,0,0,160,1,3,3,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2004,9,16,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,17,9,59,95852,0,0,343,0,0,0,0,0,0,0,170,1,4,4,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2004,9,16,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,16,9,63,95834,0,0,341,0,0,0,0,0,0,0,200,2.1,5,5,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2004,9,16,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,7.5,79,96076,0,0,299,0,0,0,0,0,0,0,270,1.5,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2004,9,16,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,11,6,71,95740,0,0,317,0,0,0,0,0,0,0,360,1,6,6,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2004,9,17,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,7,82,95721,0,0,311,0,0,0,0,0,0,0,50,1.5,5,5,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2004,9,17,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,10.2,7.4,83,95919,0,0,315,0,0,0,0,0,0,0,158,0,6,6,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2004,9,17,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,7,82,95721,0,0,311,0,0,0,0,0,0,0,170,2.6,5,5,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2004,9,17,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,5,87,95663,0,0,314,0,0,0,0,0,0,0,280,1.5,9,9,8000,7500,9,999999999,16,0,0,88,0.2,0,0 +2004,9,17,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.6,5.9,89,95925,0,0,295,0,0,0,0,0,0,0,40,1.5,3,3,7000,77777,9,999999999,17,0,0,88,0.2,0,0 +2004,9,17,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,6,87,95683,0,0,297,0,0,0,0,0,0,0,30,1,3,3,7000,77777,9,999999999,17,0,0,88,0.2,0,0 +2004,9,17,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,5,93,95644,0,0,276,0,0,0,0,0,0,0,152,0,0,0,6000,77777,9,999999999,16,0,0,88,0.2,0,0 +2004,9,17,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8.5,5.8,83,95943,215,989,299,79,112,62,8712,1983,6783,1981,208,0,3,3,6000,77777,9,999999999,17,0,0,88,0.2,0,0 +2004,9,17,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,8,72,95778,491,1353,308,285,474,114,32427,27055,12959,4470,46,1,0,0,5000,77777,9,999999999,21,0,0,88,0.2,0,0 +2004,9,17,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,9,63,95834,731,1353,322,495,721,106,59348,43156,12722,5004,277,1.5,0,0,5000,77777,9,999999999,23,0,0,88,0.2,0,0 +2004,9,17,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20.1,9.1,49,95913,919,1353,355,658,772,135,79837,49325,16394,6718,330,1,3,3,5000,77777,9,999999999,23,0,0,88,0.2,0,0 +2004,9,17,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,23,10,44,95959,1042,1353,355,779,773,184,93918,52703,22335,9171,85,1,0,0,3000,77777,9,999999999,25,0,0,88,0.2,0,0 +2004,9,17,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25,8,34,95994,1091,1353,378,817,815,160,100280,53866,19739,8220,206,1,3,3,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2004,9,17,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26.3,9.2,34,95756,1063,1353,392,744,663,224,88710,48193,26834,10827,160,4.1,5,5,5000,77777,9,999999999,23,0,0,88,0.2,0,0 +2004,9,17,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,10,37,96011,960,1353,392,655,543,270,75711,43188,31359,11944,190,4.6,5,5,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2004,9,17,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,9,36,95994,789,1353,408,283,51,253,31970,4209,28741,10175,170,5.1,9,9,8000,7500,9,999999999,23,0,0,88,0.2,0,0 +2004,9,17,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24.1,10.1,41,95680,562,1353,382,321,371,167,35857,25571,18755,6279,160,5.1,5,5,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2004,9,17,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,12,53,95942,294,1353,374,122,195,80,13460,6199,8836,2719,160,4.6,5,5,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2004,9,17,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,11.9,67,95870,4,1353,354,1,0,1,62,0,62,26,150,5.1,5,5,6000,77777,9,999999999,31,0,0,88,0.2,0,0 +2004,9,17,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15.9,11.7,76,95789,0,13,338,0,0,0,0,0,0,0,160,3.6,3,3,5000,77777,9,999999999,30,0,0,88,0.2,0,0 +2004,9,17,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,11,82,95797,0,0,334,0,0,0,0,0,0,0,160,4.1,5,5,5000,77777,9,999999999,28,0,0,88,0.2,0,0 +2004,9,17,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,12.9,11.1,89,95873,0,0,348,0,0,0,0,0,0,0,6,4.3,9,9,3500,77777,9,999999999,28,0,0,88,0.2,0,0 +2004,9,17,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11.8,11.3,97,95949,0,0,353,0,0,0,0,0,0,0,160,4.6,10,10,2000,90,9,999999999,29,0,0,88,0.2,0,0 +2004,9,17,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,11,94,95759,0,0,353,0,0,0,0,0,0,0,160,3.6,10,10,2000,90,9,999999999,28,0,0,88,0.2,0,0 +2004,9,18,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,12,100,95759,0,0,355,0,0,0,0,0,0,0,140,2.6,10,10,2000,90,9,999999999,31,0,0,88,0.2,0,0 +2004,9,18,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11.7,11.5,99,95957,0,0,353,0,0,0,0,0,0,0,160,1.5,10,10,2000,60,9,999999999,30,0,0,88,0.2,0,0 +2004,9,18,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,11,94,95759,0,0,353,0,0,0,0,0,0,0,198,0,10,10,1800,30,9,999999999,28,0,0,88,0.2,0,0 +2004,9,18,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,12,100,95759,0,0,355,0,0,0,0,0,0,0,239,1,10,10,1200,30,9,999999999,31,0,0,88,0.2,0,0 +2004,9,18,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11.2,11.2,100,95768,0,0,350,0,0,0,0,0,0,0,10,2.6,10,10,500,30,0,999999999,29,0,0,88,0.2,0,0 +2004,9,18,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,11,100,95740,0,0,349,0,0,0,0,0,0,0,210,2.6,10,10,600,30,0,999999999,28,0,0,88,0.2,0,0 +2004,9,18,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,11,100,95740,0,0,349,0,0,0,0,0,0,0,160,3.6,10,10,2000,120,0,999999999,28,0,0,88,0.2,0,0 +2004,9,18,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11.1,10,93,96012,222,1021,348,27,0,27,2588,0,2607,1049,200,2.6,10,10,4000,300,0,999999999,26,0,0,88,0.2,0,0 +2004,9,18,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,10,94,95740,498,1354,347,91,0,91,9138,0,9212,3803,160,2.1,10,10,4000,450,0,999999999,26,0,0,88,0.2,0,0 +2004,9,18,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,10,94,95740,738,1354,347,158,0,158,16075,0,16217,6979,190,0.5,10,10,4000,450,0,999999999,26,0,0,88,0.2,0,0 +2004,9,18,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12.8,10.3,85,96214,926,1354,357,211,6,207,24810,424,24463,9635,90,1.5,10,10,4000,450,0,999999999,26,0,0,88,0.2,0,0 +2004,9,18,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,10,77,95797,1048,1354,352,405,64,355,46437,5591,41004,15079,170,2.1,9,9,5000,600,0,999999999,25,0,0,88,0.2,0,0 +2004,9,18,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,10,72,95815,1097,1354,337,772,425,428,87840,39630,49066,17274,180,3.6,5,5,5000,77777,0,999999999,25,0,0,88,0.2,0,0 +2004,9,18,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16.8,10,64,96033,1068,1354,366,415,65,364,47607,5632,42045,15460,200,4.6,9,9,5000,7500,0,999999999,25,0,0,88,0.2,0,0 +2004,9,18,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17,9,59,95852,965,1354,366,366,57,326,41741,4916,37366,13602,170,6.2,9,9,6500,7500,0,999999999,23,0,0,88,0.2,0,0 +2004,9,18,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,9,59,95852,793,1354,346,513,539,198,59221,39676,22956,8615,170,5.7,5,5,8000,77777,0,999999999,23,0,0,88,0.2,0,0 +2004,9,18,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15.3,8.8,65,95977,566,1354,340,305,305,177,33923,21891,19842,6547,200,5.7,6,6,8000,7500,0,999999999,23,0,0,88,0.2,0,0 +2004,9,18,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,8,72,95778,297,1354,345,69,0,69,6825,0,6876,2486,190,5.7,9,9,8000,7500,0,999999999,21,0,0,88,0.2,0,0 +2004,9,18,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,8,76,95759,6,1354,340,1,0,1,75,0,75,31,150,3.1,9,9,8000,7500,0,999999999,21,0,0,88,0.2,0,0 +2004,9,18,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11.2,7.7,79,96089,0,28,336,0,0,0,0,0,0,0,140,3.1,9,9,8000,7500,9,999999999,20,0,0,88,0.2,0,0 +2004,9,18,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,8,82,95740,0,0,317,0,0,0,0,0,0,0,150,3.1,5,5,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2004,9,18,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,8,82,95740,0,0,317,0,0,0,0,0,0,0,140,2.6,5,5,7000,77777,9,999999999,21,0,0,88,0.2,0,0 +2004,9,18,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.9,8.1,83,96291,0,0,335,0,0,0,0,0,0,0,160,2.6,9,9,8000,3000,9,999999999,21,0,0,88,0.2,0,0 +2004,9,18,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,8,82,95740,0,0,336,0,0,0,0,0,0,0,160,2.6,9,9,7000,750,9,999999999,21,0,0,88,0.2,0,0 +2004,9,19,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,11,8,82,95740,0,0,329,0,0,0,0,0,0,0,205,2.8,8,8,7000,750,9,999999999,21,0,0,88,0.2,0,0 +2004,9,19,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,8,82,95740,0,0,345,0,0,0,0,0,0,0,170,3.1,10,10,7000,600,9,999999999,21,0,0,88,0.2,0,0 +2004,9,19,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,8,82,95740,0,0,336,0,0,0,0,0,0,0,160,2.6,9,9,7000,1200,9,999999999,21,0,0,88,0.2,0,0 +2004,9,19,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,8,82,95740,0,0,336,0,0,0,0,0,0,0,140,2.1,9,9,6000,1200,9,999999999,21,0,0,88,0.2,0,0 +2004,9,19,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,8,82,95740,0,0,345,0,0,0,0,0,0,0,160,1,10,10,7000,750,9,999999999,21,0,0,88,0.2,0,0 +2004,9,19,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,7,82,95721,0,0,339,0,0,0,0,0,0,0,7,1.5,10,10,7000,750,9,999999999,19,0,0,88,0.2,0,0 +2004,9,19,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,8,87,95721,0,0,340,0,0,0,0,0,0,0,240,1.5,10,10,8000,750,9,999999999,21,0,0,88,0.2,0,0 +2004,9,19,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.5,7.6,82,96454,228,1053,342,28,0,28,2727,0,2747,1103,190,2.6,10,10,8000,750,9,999999999,20,0,0,88,0.2,0,0 +2004,9,19,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,8,76,95759,505,1354,340,153,49,135,17217,3045,15240,5123,140,3.1,9,9,8000,3600,9,999999999,21,0,0,88,0.2,0,0 +2004,9,19,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,12.5,6.9,69,96135,745,1354,325,461,428,226,52174,34048,25701,9104,109,2.8,6,6,9000,3600,9,999999999,19,0,0,88,0.2,0,0 +2004,9,19,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,5.9,62,96511,933,1354,343,352,57,313,40125,5005,35864,12976,200,2.6,9,9,9000,3600,9,999999999,17,0,0,88,0.2,0,0 +2004,9,19,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,6,59,95797,1055,1354,328,740,401,428,83808,38844,48857,16886,170,2.6,5,5,9000,77777,9,999999999,17,0,0,88,0.2,0,0 +2004,9,19,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,16,6,51,95834,1103,1354,357,434,85,365,50123,7531,42396,15695,206,1.5,9,9,9000,6000,9,999999999,17,0,0,88,0.2,0,0 +2004,9,19,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15.9,5.8,51,96432,1074,1354,357,420,21,403,47942,1985,46336,16498,220,3.1,9,9,9000,7500,9,999999999,17,0,0,88,0.2,0,0 +2004,9,19,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,8,67,95797,970,1354,350,369,66,321,42151,5748,36947,13523,220,6.7,9,9,9000,7500,9,999999999,21,0,0,88,0.2,0,0 +2004,9,19,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,8,67,95797,798,1354,350,287,16,277,32274,1403,31373,10854,210,6.7,9,9,9000,1200,9,999999999,21,0,0,88,0.2,0,0 +2004,9,19,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,8,67,95797,570,1354,350,182,8,178,20271,604,19977,6599,210,4.1,9,9,9000,4500,9,999999999,21,0,0,88,0.2,0,0 +2004,9,19,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,8,72,95778,301,1354,345,71,0,71,6941,0,6993,2528,190,4.6,9,9,9000,4200,9,999999999,21,0,0,88,0.2,0,0 +2004,9,19,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,8,76,95759,9,1354,340,1,0,1,115,0,116,47,200,5.1,9,9,9000,900,9,999999999,21,0,0,88,0.2,0,0 +2004,9,19,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11.8,8.3,79,96667,0,43,349,0,0,0,0,0,0,0,200,5.7,10,10,9000,3600,9,999999999,22,0,0,88,0.2,0,0 +2004,9,19,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,9,87,95740,0,0,337,0,0,0,0,0,0,0,180,4.6,9,9,9000,3600,9,999999999,23,0,0,88,0.2,0,0 +2004,9,19,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,8,82,95740,0,0,336,0,0,0,0,0,0,0,180,3.1,9,9,9000,4200,9,999999999,21,0,0,88,0.2,0,0 +2004,9,19,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,8,82,95740,0,0,336,0,0,0,0,0,0,0,170,3.1,9,9,9000,4200,9,999999999,21,0,0,88,0.2,0,0 +2004,9,19,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,8,82,95740,0,0,336,0,0,0,0,0,0,0,180,3.6,9,9,9000,4200,9,999999999,21,0,0,88,0.2,0,0 +2004,9,20,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,8,87,95721,0,0,331,0,0,0,0,0,0,0,160,3.1,9,9,9000,4500,9,999999999,21,0,0,88,0.2,0,0 +2004,9,20,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9.8,8.6,92,96742,0,0,340,0,0,0,0,0,0,0,170,3.1,10,10,9000,4500,9,999999999,22,0,0,88,0.2,0,0 +2004,9,20,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,9,93,95721,0,0,332,0,0,0,0,0,0,0,170,4.1,9,9,9000,4500,9,999999999,23,0,0,88,0.2,0,0 +2004,9,20,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,8,93,95702,0,0,326,0,0,0,0,0,0,0,170,3.6,9,9,8000,4500,9,999999999,21,0,0,88,0.2,0,0 +2004,9,20,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9,8,93,95702,0,0,326,0,0,0,0,0,0,0,170,3.6,9,9,8000,4500,9,999999999,21,0,0,88,0.2,0,0 +2004,9,20,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9,6,81,95702,0,0,324,0,0,0,0,0,0,0,180,3.1,9,9,8000,4500,9,999999999,17,0,0,88,0.2,0,0 +2004,9,20,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,5,76,95702,0,0,332,0,0,0,0,0,0,0,170,3.6,10,10,8000,1200,9,999999999,16,0,0,88,0.2,0,0 +2004,9,20,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.3,5.5,77,96761,235,1085,334,29,0,29,2874,0,2895,1161,180,2.6,10,10,8000,1200,9,999999999,16,0,0,88,0.2,0,0 +2004,9,20,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,6,76,95721,512,1355,329,157,51,137,17630,3291,15515,5220,160,2.1,9,9,8000,5100,9,999999999,17,0,0,88,0.2,0,0 +2004,9,20,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,6,67,95759,752,1355,319,480,190,375,52242,19594,41028,11834,160,1.5,5,5,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2004,9,20,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,13,7,67,95778,939,1355,344,355,25,337,40191,2232,38486,13656,337,0,9,9,8000,5100,9,999999999,19,0,0,88,0.2,0,0 +2004,9,20,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,7,59,95815,1061,1355,354,413,66,362,47428,5839,41801,15334,80,2.1,9,9,8000,750,9,999999999,19,0,0,88,0.2,0,0 +2004,9,20,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,7,59,95815,1109,1355,334,786,579,312,91941,47713,36778,14144,90,1.5,5,5,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2004,9,20,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16,7,55,95834,1079,1355,333,807,815,158,99010,54199,19491,8113,60,1,3,3,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2004,9,20,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17,6,48,95852,975,1355,337,712,819,123,87752,52273,15246,6336,180,2.6,3,3,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2004,9,20,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18,5,42,95870,802,1355,340,556,730,124,66688,47301,14947,5946,170,3.1,3,3,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2004,9,20,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18,5,42,95870,574,1355,340,353,468,155,39869,32347,17596,6045,160,3.1,3,3,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2004,9,20,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18,4,39,95870,304,1355,365,72,0,72,7130,0,7183,2585,170,3.6,9,9,8000,7500,9,999999999,14,0,0,88,0.2,0,0 +2004,9,20,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17,5,45,95852,13,1355,361,2,0,2,157,0,158,64,190,3.1,9,9,8000,7500,9,999999999,15,0,0,88,0.2,0,0 +2004,9,20,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,7.9,67,96236,0,58,350,0,0,0,0,0,0,0,220,2.6,9,9,8000,7500,9,999999999,21,0,0,88,0.2,0,0 +2004,9,20,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,5,55,95797,0,0,346,0,0,0,0,0,0,0,160,4.1,9,9,8000,7500,9,999999999,15,0,0,88,0.2,0,0 +2004,9,20,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,5,58,95778,0,0,342,0,0,0,0,0,0,0,150,3.1,9,9,8000,7500,9,999999999,15,0,0,88,0.2,0,0 +2004,9,20,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,5,62,95759,0,0,337,0,0,0,0,0,0,0,200,1.5,9,9,8000,7500,9,999999999,15,0,0,88,0.2,0,0 +2004,9,20,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,10,5,71,95721,0,0,328,0,0,0,0,0,0,0,99,0,9,9,8000,7500,9,999999999,16,0,0,88,0.2,0,0 +2004,9,21,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9,6,81,95702,0,0,306,0,0,0,0,0,0,0,300,1,5,5,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2004,9,21,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7.6,5.1,84,96029,0,0,297,0,0,0,0,0,0,0,30,0.5,4,4,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2004,9,21,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,8,5,81,95683,0,0,312,0,0,0,0,0,0,0,239,0,8,8,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2004,9,21,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,6,5,93,95644,0,0,318,0,0,0,0,0,0,0,360,0.5,10,10,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2004,9,21,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5.7,4.8,94,95784,0,0,288,0,0,0,0,0,0,0,126,0,4,4,5000,77777,9,999999999,15,0,0,88,0.2,0,0 +2004,9,21,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,5,100,95624,0,0,288,0,0,0,0,0,0,0,289,0,5,5,4000,77777,0,999999999,16,0,0,88,0.2,0,0 +2004,9,21,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4,4,100,95604,0,0,283,0,0,0,0,0,0,0,300,0.5,5,5,100,77777,0,999999999,14,0,0,88,0.2,0,0 +2004,9,21,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.1,6.7,97,95793,242,1117,294,96,145,70,10518,3617,7700,2270,40,1.5,3,3,3000,77777,0,999999999,18,0,0,88,0.2,0,0 +2004,9,21,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,7,76,95740,519,1356,311,305,479,121,34654,28843,13874,4819,34,0,3,3,6000,77777,0,999999999,19,0,0,88,0.2,0,0 +2004,9,21,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,14,7,63,95797,759,1356,324,514,671,139,60680,44391,16460,6385,216,0,3,3,6000,77777,0,999999999,19,0,0,88,0.2,0,0 +2004,9,21,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15.2,6.2,55,95767,946,1356,329,685,780,141,83169,51531,17248,7078,230,1.5,3,3,8000,77777,0,999999999,17,0,0,88,0.2,0,0 +2004,9,21,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18,7,49,95870,1067,1356,343,795,836,138,98415,53863,17193,7197,220,2.1,3,3,8000,77777,0,999999999,19,0,0,88,0.2,0,0 +2004,9,21,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19,7,46,95888,1115,1356,347,839,843,147,104041,54760,18263,7638,180,3.1,3,3,8000,77777,0,999999999,19,0,0,88,0.2,0,0 +2004,9,21,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19.7,7.8,46,95641,1085,1356,352,811,837,142,100338,53800,17602,7371,200,5.7,3,3,8000,77777,0,999999999,20,0,0,88,0.2,0,0 +2004,9,21,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19,9,52,95888,980,1356,350,713,755,168,85777,51016,20338,8313,210,6.7,3,3,8000,77777,0,999999999,23,0,0,88,0.2,0,0 +2004,9,21,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19,9,52,95888,807,1356,355,524,586,176,61153,41199,20591,7923,210,7.2,5,5,8000,77777,0,999999999,23,0,0,88,0.2,0,0 +2004,9,21,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17,8,55,95852,578,1356,344,334,451,142,37977,29389,16204,5697,210,7.7,5,5,8000,77777,0,999999999,21,0,0,88,0.2,0,0 +2004,9,21,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,7,59,95815,308,1356,329,140,279,77,15587,9718,8566,2704,200,7.2,3,3,8000,77777,0,999999999,19,0,0,88,0.2,0,0 +2004,9,21,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,7,67,95778,16,1356,320,4,0,4,376,0,378,145,160,4.1,3,3,8000,77777,0,999999999,19,0,0,88,0.2,0,0 +2004,9,21,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12.2,6.1,66,96127,0,74,315,0,0,0,0,0,0,0,140,4.1,3,3,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2004,9,21,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,4,66,95721,0,0,308,0,0,0,0,0,0,0,160,4.6,5,5,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2004,9,21,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9,4,71,95702,0,0,304,0,0,0,0,0,0,0,200,2.1,5,5,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2004,9,21,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8.5,4.1,74,96311,0,0,320,0,0,0,0,0,0,0,120,2.1,9,9,8000,3600,9,999999999,14,0,0,88,0.2,0,0 +2004,9,21,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8,4,76,95683,0,0,317,0,0,0,0,0,0,0,160,4.1,9,9,8000,3600,9,999999999,14,0,0,88,0.2,0,0 +2004,9,22,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8,4,76,95683,0,0,317,0,0,0,0,0,0,0,140,4.1,9,9,8000,900,9,999999999,14,0,0,88,0.2,0,0 +2004,9,22,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7.3,4.1,80,96467,0,0,323,0,0,0,0,0,0,0,140,3.6,10,10,8000,900,9,999999999,14,0,0,88,0.2,0,0 +2004,9,22,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7,4,81,95663,0,0,322,0,0,0,0,0,0,0,160,2.1,10,10,8000,900,9,999999999,14,0,0,88,0.2,0,0 +2004,9,22,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8,5,81,95683,0,0,327,0,0,0,0,0,0,0,170,2.6,10,10,8000,900,9,999999999,16,0,0,88,0.2,0,0 +2004,9,22,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7.4,4.5,82,96497,0,0,324,0,0,0,0,0,0,0,160,1.5,10,10,8000,900,9,999999999,15,0,0,88,0.2,0,0 +2004,9,22,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8,5,81,95683,0,0,327,0,0,0,0,0,0,0,180,2.1,10,10,8000,900,9,999999999,16,0,0,88,0.2,0,0 +2004,9,22,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,5,81,95683,0,0,327,0,0,0,0,0,0,0,180,2.1,10,10,8000,750,9,999999999,16,0,0,88,0.2,0,0 +2004,9,22,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.1,4.9,80,96662,249,1149,328,32,0,32,3147,0,3170,1271,150,2.1,10,10,8000,810,9,999999999,16,0,0,88,0.2,0,0 +2004,9,22,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,5,81,95683,526,1357,327,99,0,99,9979,0,10060,4154,160,4.1,10,10,8000,900,9,999999999,16,0,0,88,0.2,0,0 +2004,9,22,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,4,71,95702,766,1357,331,167,4,165,19457,277,19286,7339,170,3.6,10,10,8000,900,9,999999999,14,0,0,88,0.2,0,0 +2004,9,22,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10.7,4.6,66,96816,953,1357,323,471,221,316,53865,19473,36367,13231,160,1.5,8,8,8000,3000,9,999999999,15,0,0,88,0.2,0,0 +2004,9,22,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,4,58,95759,1074,1357,336,421,86,353,48553,7641,40976,15172,220,1.5,9,9,8000,900,9,999999999,14,0,0,88,0.2,0,0 +2004,9,22,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,13.4,4.4,54,96275,1121,1357,319,847,555,390,97679,50639,45207,16470,75,1.5,3,3,8000,900,9,999999999,15,0,0,88,0.2,0,0 +2004,9,22,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14.8,4.8,51,96790,1090,1357,350,428,109,341,49668,9453,39788,14932,140,1.5,9,9,8000,1350,9,999999999,15,0,0,88,0.2,0,0 +2004,9,22,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,3,44,95815,985,1357,329,682,556,279,79185,46362,32592,12390,240,2.1,5,5,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2004,9,22,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16,2,39,95834,811,1357,333,533,657,141,63530,44915,16884,6657,160,2.1,5,5,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2004,9,22,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16,1.7,38,96728,582,1357,314,366,572,121,42280,36398,14011,5064,200,2.6,0,0,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2004,9,22,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,16,2,39,95834,312,1357,320,145,293,78,16222,11079,8734,2751,200,3.1,1,1,9900,77777,9,999999999,11,0,0,88,0.2,0,0 +2004,9,22,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,13,4,54,95778,19,1357,317,5,0,5,456,0,459,173,220,2.6,3,3,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2004,9,22,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11.4,5.3,66,96820,0,89,298,0,0,0,0,0,0,0,220,3.6,0,0,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2004,9,22,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,11,5,66,95740,0,0,314,0,0,0,0,0,0,0,170,2.6,5,5,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2004,9,22,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,10,5,71,95721,0,0,312,0,0,0,0,0,0,0,197,0,6,6,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2004,9,22,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7.5,4.5,81,96905,0,0,281,0,0,0,0,0,0,0,280,2.1,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2004,9,22,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,6,4,87,95644,0,0,308,0,0,0,0,0,0,0,360,0.5,9,9,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2004,9,23,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,4,87,95644,0,0,275,0,0,0,0,0,0,0,60,1,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2004,9,23,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4.8,2.8,87,96880,0,0,269,0,0,0,0,0,0,0,320,1.5,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2004,9,23,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4,3,93,95604,0,0,266,0,0,0,0,0,0,0,40,1,0,0,6000,77777,9,999999999,13,0,0,88,0.2,0,0 +2004,9,23,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4,3,93,95604,0,0,266,0,0,0,0,0,0,0,56,0,0,0,6000,77777,9,999999999,13,0,0,88,0.2,0,0 +2004,9,23,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,2.9,2.9,100,96823,0,0,262,0,0,0,0,0,0,0,241,0,0,0,5000,77777,9,999999999,13,0,0,88,0.2,0,0 +2004,9,23,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,2,1,93,95564,0,0,257,0,0,0,0,0,0,0,20,2.6,0,0,5000,77777,9,999999999,11,0,0,88,0.2,0,0 +2004,9,23,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,2,1,93,95564,0,0,257,0,0,0,0,0,0,0,10,2.1,0,0,5000,77777,9,999999999,11,0,0,88,0.2,0,0 +2004,9,23,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5.5,3.5,87,96866,256,1181,272,106,211,66,11794,5577,7399,2258,20,4.1,0,0,5000,77777,9,999999999,14,0,0,88,0.2,0,0 +2004,9,23,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,5,76,95702,533,1357,288,321,513,120,36699,31348,13742,4827,20,3.1,0,0,5000,77777,9,999999999,16,0,0,88,0.2,0,0 +2004,9,23,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,5,62,95759,773,1357,300,535,608,189,61764,45314,21934,8192,134,1.5,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2004,9,23,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,5.3,56,96773,959,1357,356,222,10,215,26219,788,25478,10060,120,1.5,10,10,8000,77777,0,919999999,16,0,0,88,0.2,0,0 +2004,9,23,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,5,48,95834,1080,1357,317,819,722,246,97315,55469,29380,11712,200,2.6,0,0,8000,77777,0,919999999,15,0,0,88,0.2,0,0 +2004,9,23,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,5,42,95870,1126,1357,326,863,782,215,104231,56930,26110,10622,170,2.6,0,0,8000,77777,0,919999999,15,0,0,88,0.2,0,0 +2004,9,23,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,3.6,36,96679,1096,1357,329,836,780,207,100864,56947,25156,10251,150,4.6,0,0,8000,77777,0,919999999,13,0,0,88,0.2,0,0 +2004,9,23,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,20,4,35,95906,990,1357,334,737,771,175,88660,54484,21132,8609,170,4.6,0,0,9900,77777,0,919999999,14,0,0,88,0.2,0,0 +2004,9,23,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,21,4,33,95924,816,1357,339,575,760,119,69409,49026,14421,5772,170,4.1,0,0,9900,77777,0,919999999,14,0,0,88,0.2,0,0 +2004,9,23,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,20.8,4.8,35,96465,586,1357,339,367,532,138,41984,35080,15814,5612,170,5.1,0,0,9900,77777,0,919999999,15,0,0,88,0.2,0,0 +2004,9,23,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,20,5,37,95906,315,1357,335,147,292,79,16387,10927,8856,2794,180,4.6,0,0,9900,77777,0,919999999,15,0,0,88,0.2,0,0 +2004,9,23,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,16,7,55,95834,23,1357,333,6,0,6,530,0,534,199,220,2.6,3,3,9900,77777,0,919999999,19,0,0,88,0.2,0,0 +2004,9,23,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15.1,6.4,56,96569,0,104,315,0,0,0,0,0,0,0,170,2.6,0,0,9900,77777,9,999999999,18,0,0,88,0.2,0,0 +2004,9,23,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,15,4,48,95815,0,0,322,0,0,0,0,0,0,0,180,2.1,2,2,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2004,9,23,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,3,51,95778,0,0,302,0,0,0,0,0,0,0,24,1.5,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2004,9,23,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11.8,3.3,56,96545,0,0,298,0,0,0,0,0,0,0,180,0.5,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2004,9,23,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,9,3,66,95702,0,0,303,0,0,0,0,0,0,0,160,0,5,5,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2004,9,24,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,7,4,81,95663,0,0,306,0,0,0,0,0,0,0,56,1,8,8,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2004,9,24,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,6.2,3.5,83,96474,0,0,275,0,0,0,0,0,0,0,60,1,0,0,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2004,9,24,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,6,4,87,95644,0,0,308,0,0,0,0,0,0,0,260,1,9,9,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2004,9,24,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5,3,87,95624,0,0,270,0,0,0,0,0,0,0,50,1,0,0,5000,77777,9,999999999,13,0,0,88,0.2,0,0 +2004,9,24,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3.4,1.8,89,96286,0,0,263,0,0,0,0,0,0,0,110,0,0,0,5000,77777,9,999999999,11,0,0,88,0.2,0,0 +2004,9,24,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3,2,93,95584,0,0,261,0,0,0,0,0,0,0,350,1.5,0,0,5000,77777,9,999999999,12,0,0,88,0.2,0,0 +2004,9,24,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3,2,93,95584,0,0,273,0,0,0,0,0,0,0,130,1,3,3,8000,77777,9,999999999,12,0,0,88,0.2,0,0 +2004,9,24,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5.6,3.1,84,96414,263,1213,284,110,212,69,12151,5988,7631,2332,330,2.1,3,3,5000,77777,9,999999999,13,0,0,88,0.2,0,0 +2004,9,24,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,5,76,95702,540,1358,300,323,500,124,36837,31094,14248,4994,360,2.1,3,3,6000,77777,9,999999999,16,0,0,88,0.2,0,0 +2004,9,24,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,14,5,55,95797,779,1358,322,534,671,149,62904,45993,17646,6840,350,3.1,3,3,6000,77777,9,999999999,15,0,0,88,0.2,0,0 +2004,9,24,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16.7,3.8,42,96305,966,1358,333,705,780,151,85505,53141,18421,7550,360,2.6,3,3,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2004,9,24,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,5,40,95888,1086,1358,345,815,847,138,101135,55228,17223,7212,170,2.6,3,3,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2004,9,24,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,4,33,95924,1132,1358,353,859,858,145,106939,56516,18074,7552,150,3.1,3,3,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2004,9,24,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,21.3,3.5,31,96171,1101,1358,340,841,780,209,101488,57128,25377,10335,170,4.6,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2004,9,24,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,23,2,25,95959,995,1358,346,743,772,178,89443,55404,21577,8776,170,5.1,0,0,9900,77777,9,999999999,11,0,0,88,0.2,0,0 +2004,9,24,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,23,4,29,95959,820,1358,348,579,762,120,69913,49222,14488,5804,170,4.6,0,0,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2004,9,24,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,22.4,4,30,96086,590,1358,345,371,536,139,42450,35609,15930,5658,170,5.1,0,0,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2004,9,24,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,21,7,40,95924,319,1358,349,149,294,80,16609,10924,8957,2831,220,3.6,1,1,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2004,9,24,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,18,5,42,95870,26,1358,333,6,0,6,620,0,624,229,210,3.6,1,1,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2004,9,24,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16.4,2.4,39,96281,0,120,316,0,0,0,0,0,0,0,170,4.6,0,0,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2004,9,24,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,16,1,36,95834,0,0,313,0,0,0,0,0,0,0,180,5.7,0,0,9900,77777,9,999999999,10,0,0,88,0.2,0,0 +2004,9,24,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,14,1,41,95797,0,0,310,0,0,0,0,0,0,0,180,2.1,1,1,9900,77777,9,999999999,10,0,0,88,0.2,0,0 +2004,9,24,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11.8,2.6,53,96318,0,0,297,0,0,0,0,0,0,0,360,0.5,0,0,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2004,9,24,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,8,2,66,95683,0,0,297,0,0,0,0,0,0,0,142,1.5,5,5,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2004,9,25,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,7,2,70,95663,0,0,296,0,0,0,0,0,0,0,294,0,6,6,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2004,9,25,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7.5,2,68,96254,0,0,279,0,0,0,0,0,0,0,20,0.5,0,0,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2004,9,25,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,6,1,70,95644,0,0,291,0,0,0,0,0,0,0,344,0,6,6,9900,77777,9,999999999,10,0,0,88,0.2,0,0 +2004,9,25,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4,1,81,95604,0,0,264,0,0,0,0,0,0,0,10,0.5,0,0,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2004,9,25,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,4.8,2.2,83,96021,0,0,268,0,0,0,0,0,0,0,10,1.5,0,0,8000,77777,9,999999999,12,0,0,88,0.2,0,0 +2004,9,25,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,3,1,87,95584,0,0,292,0,0,0,0,0,0,0,282,1,9,9,9900,77777,9,999999999,11,0,0,88,0.2,0,0 +2004,9,25,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,3,1,87,95584,0,0,260,0,0,0,0,0,0,0,50,1.5,0,0,5000,77777,9,999999999,11,0,0,88,0.2,0,0 +2004,9,25,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.7,3.6,75,96135,270,1245,281,115,229,70,12796,6742,7772,2387,330,1,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2004,9,25,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,4,62,95740,547,1359,295,333,528,121,38169,32756,13909,4919,277,0,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2004,9,25,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,4,48,95815,786,1359,312,548,693,147,64679,47542,17429,6782,312,0,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2004,9,25,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17.4,3,38,96063,972,1359,321,721,808,143,87883,54513,17537,7220,110,1,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2004,9,25,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,20,1,28,95906,1092,1359,331,836,780,209,100775,57903,25372,10317,30,1,0,0,9900,77777,9,999999999,10,0,0,88,0.2,0,0 +2004,9,25,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,22,2,27,95942,1138,1359,341,878,783,222,105972,58395,26992,10935,230,1.5,0,0,9900,77777,9,999999999,11,0,0,88,0.2,0,0 +2004,9,25,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,23.9,4.3,28,95876,1106,1359,353,845,781,210,101966,56926,25439,10364,160,3.1,0,0,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2004,9,25,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,26,4,24,96011,999,1359,362,745,773,178,89726,54772,21469,8750,190,3.6,0,0,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2004,9,25,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,26,5,26,96011,825,1359,364,582,764,119,70303,48980,14419,5787,190,4.1,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2004,9,25,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,25.4,5.1,27,95760,594,1359,361,374,539,139,42748,35554,15924,5672,210,4.1,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2004,9,25,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,25,6,30,95994,322,1359,360,152,299,81,16909,11411,9044,2863,170,3.6,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2004,9,25,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,21,8,43,95924,29,1359,350,7,0,7,695,0,700,255,200,2.6,1,1,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2004,9,25,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19.3,7.1,45,95842,0,135,335,0,0,0,0,0,0,0,200,2.6,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2004,9,25,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,18,8,52,95870,0,0,344,0,0,0,0,0,0,0,150,3.1,3,3,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2004,9,25,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,17,8,55,95852,0,0,339,0,0,0,0,0,0,0,308,1.5,3,3,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2004,9,25,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14.6,8.1,65,95907,0,0,315,0,0,0,0,0,0,0,190,1,0,0,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2004,9,25,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,11,6,71,95740,0,0,317,0,0,0,0,0,0,0,320,1,6,6,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2004,9,26,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,10,7,82,95721,0,0,323,0,0,0,0,0,0,0,360,0.5,8,8,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2004,9,26,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,9.2,6.8,85,95900,0,0,290,0,0,0,0,0,0,0,327,0,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2004,9,26,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,6,87,95683,0,0,285,0,0,0,0,0,0,0,360,1,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2004,9,26,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,5,87,95663,0,0,280,0,0,0,0,0,0,0,91,0,0,0,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2004,9,26,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6.8,5.4,91,95938,0,0,279,0,0,0,0,0,0,0,185,0,0,0,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2004,9,26,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,6,93,95663,0,0,281,0,0,0,0,0,0,0,360,0.5,0,0,6000,77777,9,999999999,17,0,0,88,0.2,0,0 +2004,9,26,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,6,87,95683,0,0,285,0,0,0,0,0,0,0,322,1.5,0,0,6000,77777,9,999999999,17,0,0,88,0.2,0,0 +2004,9,26,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.5,7,90,96150,277,1277,288,119,239,71,13245,6960,7878,2437,300,1,0,0,7000,77777,9,999999999,19,0,0,88,0.2,0,0 +2004,9,26,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,13,9,77,95778,554,1360,334,271,228,178,30052,16391,19847,6451,136,0,7,7,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2004,9,26,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,16,10,68,95834,793,1360,342,501,517,200,57716,37983,23141,8655,240,0.5,5,5,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2004,9,26,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17.4,10.1,62,96176,979,1360,329,719,780,158,86830,51328,19134,7859,190,1.5,0,0,9900,77777,9,999999999,26,0,0,88,0.2,0,0 +2004,9,26,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,18.7,10.6,59,96041,1099,1360,353,805,797,162,98681,51634,19994,8330,148,2.8,4,4,9950,77777,9,999999999,27,0,0,88,0.2,0,0 +2004,9,26,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,20,11,56,95906,1144,1360,357,855,830,158,105625,52789,19553,8160,160,4.1,3,3,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2004,9,26,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,20.9,10.4,51,96069,1112,1360,346,842,782,203,101617,54014,24653,10104,180,6.7,0,0,9900,77777,9,999999999,26,0,0,88,0.2,0,0 +2004,9,26,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,21,10,49,95924,1004,1360,357,739,815,138,90525,51608,17002,7072,160,5.7,2,2,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2004,9,26,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,20,11,56,95906,829,1360,357,573,738,123,68851,45457,14869,5977,210,5.1,3,3,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2004,9,26,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,20.1,10.8,55,95998,598,1360,357,369,554,126,42428,33532,14516,5280,180,6.7,3,3,9900,77777,9,999999999,27,0,0,88,0.2,0,0 +2004,9,26,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18,11,64,95870,326,1360,347,151,270,86,16723,10194,9591,3007,170,6.7,3,3,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2004,9,26,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16,11,72,95834,33,1360,324,8,0,8,772,0,777,281,150,3.6,0,0,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2004,9,26,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14.2,10.4,78,96155,0,151,315,0,0,0,0,0,0,0,140,2.6,0,0,9900,77777,9,999999999,27,0,0,88,0.2,0,0 +2004,9,26,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,13,10,82,95778,0,0,340,0,0,0,0,0,0,0,170,2.1,8,8,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2004,9,26,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,12,10,88,95759,0,0,343,0,0,0,0,0,0,0,113,0,9,9,9900,77777,9,999999999,26,0,0,88,0.2,0,0 +2004,9,26,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,9.6,8.4,92,96143,0,0,294,0,0,0,0,0,0,0,333,0,0,0,9900,77777,9,999999999,22,0,0,88,0.2,0,0 +2004,9,26,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,9,87,95740,0,0,300,0,0,0,0,0,0,0,190,2.1,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2004,9,27,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,9,93,95721,0,0,296,0,0,0,0,0,0,0,180,2.6,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2004,9,27,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.6,9,96,96125,0,0,294,0,0,0,0,0,0,0,140,1,0,0,5000,77777,9,999999999,23,0,0,88,0.2,0,0 +2004,9,27,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,7,93,95683,0,0,286,0,0,0,0,0,0,0,32,0.5,0,0,2700,77777,9,999999999,19,0,0,88,0.2,0,0 +2004,9,27,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,6,100,95644,0,0,293,0,0,0,0,0,0,0,300,2.1,5,5,800,77777,0,999999999,17,0,0,88,0.2,0,0 +2004,9,27,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,6.8,6.7,99,96098,0,0,324,0,0,0,0,0,0,0,80,1,10,10,800,15,0,999999999,19,0,0,88,0.2,0,0 +2004,9,27,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,7,93,95683,0,0,303,0,0,0,0,0,0,0,350,1,5,5,600,77777,0,999999999,19,0,0,88,0.2,0,0 +2004,9,27,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,7,100,95663,0,0,294,0,0,0,0,0,0,0,135,0,3,3,800,77777,0,999999999,19,0,0,88,0.2,0,0 +2004,9,27,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.5,7.4,99,96112,284,1309,296,122,231,74,13532,7167,8214,2536,230,1.5,3,3,500,77777,0,999999999,20,0,0,88,0.2,0,0 +2004,9,27,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,12,100,95759,561,1361,321,336,549,110,38731,30658,12712,4616,190,1.5,3,3,2400,77777,0,999999999,31,0,0,88,0.2,0,0 +2004,9,27,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,11,72,95834,800,1361,343,515,560,186,59642,39588,21677,8239,125,1,5,5,5000,77777,0,999999999,28,0,0,88,0.2,0,0 +2004,9,27,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17.4,11,66,96148,985,1361,371,373,38,346,42440,3288,39603,14274,110,1.5,9,9,8000,7500,0,999999999,28,0,0,88,0.2,0,0 +2004,9,27,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,11,60,95888,1105,1361,379,431,48,392,49324,4267,45157,16402,300,2.6,9,9,8000,7500,0,999999999,28,0,0,88,0.2,0,0 +2004,9,27,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,11,56,95906,1150,1361,384,452,33,425,51790,2946,48989,17512,290,2.6,9,9,8000,7500,0,999999999,28,0,0,88,0.2,0,0 +2004,9,27,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19.8,12.3,62,95879,1117,1361,395,266,16,252,31529,1199,30095,12045,210,5.1,10,10,8000,4800,0,999999999,32,0,0,88,0.2,0,0 +2004,9,27,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,12,56,95924,1009,1361,363,735,661,245,86059,49152,28890,11375,180,4.6,3,3,5000,77777,0,999999999,31,0,0,88,0.2,0,0 +2004,9,27,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,22,12,53,95942,833,1361,374,542,581,187,63141,40576,21851,8429,200,4.6,5,5,5000,77777,0,999999999,31,0,0,88,0.2,0,0 +2004,9,27,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,20.6,12.1,58,95884,601,1361,364,363,546,122,41890,32256,14148,5181,170,7.2,4,4,5000,77777,0,999999999,31,0,0,88,0.2,0,0 +2004,9,27,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,11,77,95815,330,1361,333,153,273,87,16974,10458,9700,3045,200,6.7,3,3,5000,77777,0,999999999,28,0,0,88,0.2,0,0 +2004,9,27,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,11,82,95797,36,1361,329,9,0,9,839,0,844,303,190,8.7,3,3,5000,77777,0,999999999,28,0,0,88,0.2,0,0 +2004,9,27,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12.1,9.7,85,96267,0,167,319,0,0,0,0,0,0,0,130,3.1,3,3,5000,77777,9,999999999,25,0,0,88,0.2,0,0 +2004,9,27,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,9,87,95740,0,0,313,0,0,0,0,0,0,0,150,5.1,3,3,5000,77777,9,999999999,23,0,0,88,0.2,0,0 +2004,9,27,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,9,87,95740,0,0,337,0,0,0,0,0,0,0,140,3.6,9,9,8000,750,9,999999999,23,0,0,88,0.2,0,0 +2004,9,27,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,9.3,89,96548,0,0,347,0,0,0,0,0,0,0,100,1,10,10,5000,450,9,999999999,24,0,0,88,0.2,0,0 +2004,9,27,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,8,93,95702,0,0,303,0,0,0,0,0,0,0,350,2.6,3,3,5000,77777,9,999999999,21,0,0,88,0.2,0,0 +2004,9,28,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,8,93,95702,0,0,291,0,0,0,0,0,0,0,10,2.1,0,0,5000,77777,9,999999999,21,0,0,88,0.2,0,0 +2004,9,28,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.1,9.3,95,96361,0,0,333,0,0,0,0,0,0,0,180,4.1,9,9,4000,360,9,999999999,24,0,0,88,0.2,0,0 +2004,9,28,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,10,100,95721,0,0,343,0,0,0,0,0,0,0,160,7.2,10,10,4000,450,9,999999999,26,0,0,88,0.2,0,0 +2004,9,28,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,10,94,95740,0,0,347,0,0,0,0,0,0,0,210,3.1,10,10,4000,450,9,999999999,26,0,0,88,0.2,0,0 +2004,9,28,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.3,9.2,93,96393,0,0,343,0,0,0,0,0,0,0,360,2.1,10,10,4000,450,9,999999999,24,0,0,88,0.2,0,0 +2004,9,28,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,9,87,95740,0,0,346,0,0,0,0,0,0,0,50,1.5,10,10,4000,450,9,999999999,23,0,0,88,0.2,0,0 +2004,9,28,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,9,87,95740,0,0,346,0,0,0,0,0,0,0,360,0.5,10,10,5000,450,9,999999999,23,0,0,88,0.2,0,0 +2004,9,28,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.4,9,91,96489,291,1342,334,66,0,66,6496,0,6544,2374,280,1.5,9,9,5000,600,9,999999999,23,0,0,88,0.2,0,0 +2004,9,28,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,9,77,95778,567,1361,327,324,370,169,36152,25946,19010,6349,154,0.5,5,5,6000,77777,9,999999999,23,0,0,88,0.2,0,0 +2004,9,28,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,9,72,95797,806,1361,332,522,540,203,60204,40075,23473,8809,186,0.5,5,5,6000,77777,9,999999999,23,0,0,88,0.2,0,0 +2004,9,28,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15.7,8.6,63,96372,992,1361,359,378,57,336,43138,5003,38631,14067,210,1,9,9,6000,7500,9,999999999,22,0,0,88,0.2,0,0 +2004,9,28,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,17,9,59,95852,1111,1361,366,435,21,418,49638,1933,48023,17088,109,1,9,9,6000,7500,9,999999999,23,0,0,88,0.2,0,0 +2004,9,28,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,19,9,52,95888,1155,1361,376,456,21,438,52217,1953,50535,17872,150,2.6,9,9,6000,7500,9,999999999,23,0,0,88,0.2,0,0 +2004,9,28,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20.4,5.6,38,96297,1122,1361,379,443,50,402,50854,4594,46446,16765,160,4.1,9,9,7000,7500,9,999999999,16,0,0,88,0.2,0,0 +2004,9,28,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,9,49,95906,1014,1361,381,388,67,339,44436,5804,38996,14310,170,6.2,9,9,8000,7500,9,999999999,23,0,0,88,0.2,0,0 +2004,9,28,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,21,5,35,95924,837,1361,381,306,63,267,34789,5370,30538,10920,170,5.1,9,9,8000,7500,9,999999999,15,0,0,88,0.2,0,0 +2004,9,28,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19.2,6.4,43,96285,605,1361,374,197,9,193,22029,695,21685,7192,210,5.1,9,9,8000,7500,9,999999999,18,0,0,88,0.2,0,0 +2004,9,28,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18,9,56,95870,333,1361,371,82,0,82,8058,0,8119,2928,200,4.1,9,9,8000,7500,9,999999999,23,0,0,88,0.2,0,0 +2004,9,28,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17,9,59,95852,40,1361,366,5,0,5,482,0,485,189,210,2.6,9,9,8000,7500,9,999999999,23,0,0,88,0.2,0,0 +2004,9,28,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,8,63,96340,0,183,347,0,0,0,0,0,0,0,230,1.5,8,8,8000,7500,9,999999999,21,0,0,88,0.2,0,0 +2004,9,28,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,14,8,67,95797,0,0,330,0,0,0,0,0,0,0,170,2.1,5,5,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2004,9,28,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,14,9,72,95797,0,0,334,0,0,0,0,0,0,0,150,2.1,6,6,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2004,9,28,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13.4,7.6,68,96480,0,0,309,0,0,0,0,0,0,0,170,1.5,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2004,9,28,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,9,7,87,95702,0,0,325,0,0,0,0,0,0,0,330,0.5,9,9,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2004,9,29,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,7,87,95702,0,0,290,0,0,0,0,0,0,0,109,1,0,0,2400,77777,9,999999999,19,0,0,88,0.2,0,0 +2004,9,29,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7.8,6.3,90,96430,0,0,284,0,0,0,0,0,0,0,10,1.5,0,0,2400,77777,9,999999999,18,0,0,88,0.2,0,0 +2004,9,29,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,6,93,95663,0,0,281,0,0,0,0,0,0,0,162,0,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2004,9,29,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,7,100,95663,0,0,282,0,0,0,0,0,0,0,360,0.5,0,0,1000,77777,0,999999999,19,0,0,88,0.2,0,0 +2004,9,29,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6.2,5.9,98,96332,0,0,277,0,0,0,0,0,0,0,228,0,0,0,800,77777,0,999999999,17,0,0,88,0.2,0,0 +2004,9,29,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,5,100,95624,0,0,272,0,0,0,0,0,0,0,54,1,0,0,5000,77777,0,999999999,16,0,0,88,0.2,0,0 +2004,9,29,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3,3,100,95584,4,12,262,1,0,1,59,0,59,24,219,0.5,0,0,800,77777,0,999999999,13,0,0,88,0.2,0,0 +2004,9,29,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7.6,7.2,97,96454,298,1362,284,133,259,76,14759,8675,8503,2649,235,0,0,0,3000,77777,0,999999999,20,0,0,88,0.2,0,0 +2004,9,29,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,8,76,95759,574,1362,303,354,560,118,40772,33710,13636,4929,136,0,0,0,5000,77777,0,999999999,21,0,0,88,0.2,0,0 +2004,9,29,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14.4,8.1,65,96039,813,1362,332,532,607,170,62319,42492,20031,7745,173,0.8,5,5,6500,77777,9,999999999,21,0,0,88,0.2,0,0 +2004,9,29,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16.9,8.1,56,96318,998,1362,325,738,785,163,89239,52925,19848,8151,50,1.5,0,0,8000,77777,0,999999999,21,0,0,88,0.2,0,0 +2004,9,29,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,7,46,95888,1117,1362,333,850,784,209,102642,55977,25305,10331,66,0,0,0,8000,77777,0,999999999,19,0,0,88,0.2,0,0 +2004,9,29,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,6,35,95942,1161,1362,346,893,786,223,107916,57229,27147,11011,220,1.5,0,0,8000,77777,0,999999999,17,0,0,88,0.2,0,0 +2004,9,29,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23.7,3.1,26,96005,1127,1362,350,865,784,217,104443,57885,26328,10694,200,1.5,0,0,8000,77777,0,999999999,13,0,0,88,0.2,0,0 +2004,9,29,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,3,24,95994,1018,1362,356,763,821,150,93298,55751,18462,7638,160,3.1,0,0,8000,77777,0,999999999,12,0,0,88,0.2,0,0 +2004,9,29,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,25,6,30,95994,842,1362,360,596,700,164,70389,48925,19430,7627,170,5.1,0,0,9900,77777,0,999999999,17,0,0,88,0.2,0,0 +2004,9,29,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,23.6,8.1,37,95927,609,1362,391,258,145,194,28835,10938,21698,7223,200,4.1,8,8,9900,7500,0,999999999,21,0,0,88,0.2,0,0 +2004,9,29,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,22,8,41,95942,337,1362,355,161,310,84,17945,12303,9425,3004,220,4.1,1,1,9900,77777,0,999999999,21,0,0,88,0.2,0,0 +2004,9,29,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,20,8,46,95906,43,1362,350,11,0,11,1011,0,1018,359,170,3.1,2,2,9900,77777,0,999999999,21,0,0,88,0.2,0,0 +2004,9,29,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17.8,7,49,96004,0,199,360,0,0,0,0,0,0,0,180,2.1,8,8,9900,7500,9,999999999,19,0,0,88,0.2,0,0 +2004,9,29,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,17,8,55,95852,0,0,339,0,0,0,0,0,0,0,130,2.6,3,3,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2004,9,29,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,14,8,67,95797,0,0,330,0,0,0,0,0,0,0,310,1.5,5,5,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2004,9,29,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,11,8,82,95740,0,0,329,0,0,0,0,0,0,0,38,0,8,8,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2004,9,29,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,11.5,8,79,95750,0,0,326,0,0,0,0,0,0,0,172,0,7,7,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2004,9,30,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,12,8,76,95759,0,0,328,0,0,0,0,0,0,0,285,0,7,7,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2004,9,30,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,10.8,6.9,77,95902,0,0,343,0,0,0,0,0,0,0,190,0,10,10,9900,7500,9,999999999,19,0,0,88,0.2,0,0 +2004,9,30,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,10,7,82,95721,0,0,323,0,0,0,0,0,0,0,173,1,8,8,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2004,9,30,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,10,6,76,95721,0,0,317,0,0,0,0,0,0,0,118,1,7,7,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2004,9,30,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9.6,6.5,81,95784,0,0,337,0,0,0,0,0,0,0,70,1,10,10,9900,7500,9,999999999,18,0,0,88,0.2,0,0 +2004,9,30,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,7,82,95721,0,0,330,0,0,0,0,0,0,0,121,0,9,9,8000,7500,9,999999999,19,0,0,88,0.2,0,0 +2004,9,30,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,7,87,95702,9,43,325,1,0,1,112,0,113,46,177,0.5,9,9,8000,7500,9,999999999,19,0,0,88,0.2,0,0 +2004,9,30,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,7.5,79,96010,305,1363,335,71,0,71,6992,0,7044,2547,360,0.5,9,9,8000,7500,9,999999999,20,0,0,88,0.2,0,0 +2004,9,30,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,8,72,95778,581,1363,345,186,8,182,20684,613,20387,6740,240,0.5,9,9,8000,7500,9,999999999,21,0,0,88,0.2,0,0 +2004,9,30,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,8,59,95834,820,1363,360,296,17,286,33296,1429,32370,11217,200,1.5,9,9,8000,7500,9,999999999,21,0,0,88,0.2,0,0 +2004,9,30,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17.5,7.8,53,96055,1004,1363,367,384,67,335,43974,5865,38563,14126,190,2.6,9,9,8000,7500,9,999999999,20,0,0,88,0.2,0,0 +2004,9,30,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18,9,56,95870,1123,1363,371,440,21,423,50300,1940,48668,17291,180,3.6,9,9,8000,5100,9,999999999,23,0,0,88,0.2,0,0 +2004,9,30,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19,8,49,95888,1166,1363,375,462,49,420,53170,4507,48656,17483,170,3.6,9,9,8000,5100,9,999999999,21,0,0,88,0.2,0,0 +2004,9,30,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19.2,7.6,47,96010,1132,1363,376,446,21,428,50997,1979,49332,17480,200,4.6,9,9,8000,5100,9,999999999,20,0,0,88,0.2,0,0 +2004,9,30,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19,6,43,95888,1023,1363,372,394,68,343,45200,6049,39587,14500,150,5.1,9,9,8000,5100,9,999999999,17,0,0,88,0.2,0,0 +2004,9,30,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19,7,46,95888,846,1363,374,309,17,299,34811,1493,33826,11763,150,4.1,9,9,8000,5100,9,999999999,19,0,0,88,0.2,0,0 +2004,9,30,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19.5,5.6,40,96091,613,1363,375,201,9,197,22433,719,22076,7325,150,4.1,9,9,8000,5100,9,999999999,16,0,0,88,0.2,0,0 +2004,9,30,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19,8,49,95888,340,1363,375,84,0,84,8332,0,8395,3024,150,3.6,9,9,8000,4800,9,999999999,21,0,0,88,0.2,0,0 +2004,9,30,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14.4,8.3,67,95903,46,1363,341,11,0,11,1017,0,1024,364,180,3.2,5,5,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2004,9,30,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13.4,7.9,69,96030,0,215,334,0,0,0,0,0,0,0,170,2.5,5,5,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2004,9,30,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,12,7.6,75,95904,0,0,330,0,0,0,0,0,0,0,202,1.6,5,5,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2004,9,30,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,10.8,5.1,68,95881,0,0,329,0,0,0,0,0,0,0,215,1.9,6,6,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2004,9,30,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9.1,2.8,64,96073,0,0,303,0,0,0,0,0,0,0,255,2,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2004,9,30,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,7.4,0.6,62,95894,0,0,325,0,0,0,0,0,0,0,290,2.2,9,9,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,10,1,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,5.9,-1.4,59,95865,0,0,290,0,0,0,0,0,0,0,222,2.2,2,2,9900,77777,9,999999999,8,0,0,88,0.2,0,0 +2010,10,1,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,4.2,-1,68,96068,0,0,272,0,0,0,0,0,0,0,174,1.7,0,0,9900,77777,9,999999999,8,0,0,88,0.2,0,0 +2010,10,1,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,3,-0.9,74,95822,0,0,282,0,0,0,0,0,0,0,107,1.5,5,5,9900,77777,9,999999999,9,0,0,88,0.2,0,0 +2010,10,1,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,2.5,-0.9,77,95812,0,0,276,0,0,0,0,0,0,0,33,1.3,6,6,9900,77777,9,999999999,9,0,0,88,0.2,0,0 +2010,10,1,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,3.2,-0.6,76,96069,0,0,256,0,0,0,0,0,0,0,47,1.1,0,0,9900,77777,9,999999999,9,0,0,88,0.2,0,0 +2010,10,1,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,4.9,-0.4,68,95866,0,0,276,0,0,0,0,0,0,0,68,0.9,7,7,9900,77777,9,999999999,9,0,0,88,0.2,0,0 +2010,10,1,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,3,-1,74,95584,23,106,276,5,0,5,458,0,461,175,25,0.5,6,6,9900,77777,9,999999999,9,0,0,88,0.2,0,0 +2010,10,1,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5.6,0.3,69,96613,318,1365,270,148,247,91,16404,10744,10074,3063,126,0.5,0,0,8000,77777,9,999999999,10,0,0,88,0.2,0,0 +2010,10,1,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,9,0,53,95702,594,1365,295,371,514,147,42333,35778,16885,5927,92,1,3,3,9900,77777,9,999999999,9,0,0,88,0.2,0,0 +2010,10,1,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,11,0,47,95740,833,1365,300,591,688,171,69519,50352,20260,7863,260,2.1,2,2,9900,77777,9,999999999,9,0,0,88,0.2,0,0 +2010,10,1,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,13.1,0,41,96550,1017,1365,300,764,814,158,93086,56862,19382,7981,127,1.5,0,0,9900,77777,9,999999999,9,0,0,88,0.2,0,0 +2010,10,1,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,0,34,95834,1134,1365,312,875,786,222,105604,59193,26981,10922,200,3.6,0,0,9900,77777,9,999999999,9,0,0,88,0.2,0,0 +2010,10,1,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,-1,29,95852,1177,1365,315,917,789,237,110770,60261,28809,11588,150,2.6,0,0,9900,77777,9,999999999,8,0,0,88,0.2,0,0 +2010,10,1,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17.9,-3.1,23,96422,1142,1365,317,886,787,229,106943,60298,27749,11193,180,2.6,0,0,9900,77777,9,999999999,7,0,0,88,0.2,0,0 +2010,10,1,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,19,-5,18,95888,1032,1365,319,784,779,196,94317,58574,23700,9600,180,2.1,0,0,9900,77777,9,999999999,6,0,0,88,0.2,0,0 +2010,10,1,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,-5,17,95906,854,1365,324,617,774,133,74401,53404,16055,6432,190,4.1,0,0,9900,77777,9,999999999,6,0,0,88,0.2,0,0 +2010,10,1,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,20.2,-4.9,17,96350,621,1365,325,402,594,132,46545,40450,15333,5575,170,4.6,0,0,9900,77777,9,999999999,6,0,0,88,0.2,0,0 +2010,10,1,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,-1,24,95906,348,1365,328,171,283,99,18929,13815,10985,3388,200,4.1,0,0,9900,77777,9,999999999,8,0,0,88,0.2,0,0 +2010,10,1,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,-1,29,95852,53,1365,315,13,0,13,1271,0,1280,441,220,5.1,0,0,9900,77777,9,999999999,8,0,0,88,0.2,0,0 +2010,10,1,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15.2,-0.6,34,96467,0,247,308,0,0,0,0,0,0,0,220,4.6,0,0,9900,77777,9,999999999,9,0,0,88,0.2,0,0 +2010,10,1,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,-1,35,95797,0,0,302,0,0,0,0,0,0,0,160,3.6,0,0,9900,77777,9,999999999,8,0,0,88,0.2,0,0 +2010,10,1,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,-2,32,95797,0,0,301,0,0,0,0,0,0,0,190,4.1,0,0,9900,77777,9,999999999,8,0,0,88,0.2,0,0 +2010,10,1,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,9.6,-0.1,51,96578,0,0,285,0,0,0,0,0,0,0,16,1,0,0,9900,77777,9,999999999,9,0,0,88,0.2,0,0 +2010,10,1,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,8,0,57,95683,0,0,293,0,0,0,0,0,0,0,190,1.5,4,4,9900,77777,9,999999999,9,0,0,88,0.2,0,0 +2010,10,2,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,0,57,95683,0,0,279,0,0,0,0,0,0,0,30,2.1,0,0,7000,77777,9,999999999,9,0,0,88,0.2,0,0 +2010,10,2,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6.1,0.3,66,96472,0,0,272,0,0,0,0,0,0,0,20,2.6,0,0,3000,77777,9,999999999,10,0,0,88,0.2,0,0 +2010,10,2,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,0,65,95644,0,0,271,0,0,0,0,0,0,0,30,2.1,0,0,7000,77777,9,999999999,9,0,0,88,0.2,0,0 +2010,10,2,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5,0,70,95624,0,0,267,0,0,0,0,0,0,0,10,1,0,0,7000,77777,9,999999999,9,0,0,88,0.2,0,0 +2010,10,2,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5.4,0,68,96382,0,0,269,0,0,0,0,0,0,0,225,0.5,0,0,7000,77777,9,999999999,10,0,0,88,0.2,0,0 +2010,10,2,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4,0,75,95604,0,0,263,0,0,0,0,0,0,0,20,2.1,0,0,7000,77777,9,999999999,10,0,0,88,0.2,0,0 +2010,10,2,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4,-1,69,95604,29,137,262,7,0,7,697,0,701,255,18,1,0,0,7000,77777,9,999999999,9,0,0,88,0.2,0,0 +2010,10,2,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8.2,0.1,57,96381,325,1365,280,153,254,93,16923,11347,10292,3138,1,1.5,0,0,8000,77777,9,999999999,10,0,0,88,0.2,0,0 +2010,10,2,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,12,1,47,95759,601,1365,306,379,533,145,43347,36675,16621,5882,220,1,2,2,9900,77777,9,999999999,10,0,0,88,0.2,0,0 +2010,10,2,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,15,1,39,95815,839,1365,315,597,764,128,71908,51029,15462,6189,240,0.5,1,1,9900,77777,9,999999999,10,0,0,88,0.2,0,0 +2010,10,2,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,18,-0.1,29,96244,1023,1365,321,770,815,160,93801,57067,19546,8051,175,1,0,0,9900,77777,9,999999999,9,0,0,88,0.2,0,0 +2010,10,2,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,-1,23,95924,1140,1365,333,882,787,225,106393,59655,27342,11051,170,3.1,0,0,9900,77777,9,999999999,8,0,0,88,0.2,0,0 +2010,10,2,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,-4,16,95959,1183,1365,338,926,789,243,111788,61276,29466,11815,160,6.2,0,0,9900,77777,9,999999999,6,0,0,88,0.2,0,0 +2010,10,2,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,24.1,-3.7,15,96078,1147,1365,344,892,787,231,107585,60593,28025,11291,180,5.1,0,0,9900,77777,9,999999999,6,0,0,88,0.2,0,0 +2010,10,2,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,-4,14,95994,1037,1365,348,787,779,196,94713,58442,23737,9622,170,5.7,0,0,9900,77777,9,999999999,6,0,0,88,0.2,0,0 +2010,10,2,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,-3,14,96011,859,1365,354,619,770,135,74540,53021,16342,6548,170,5.1,0,0,9900,77777,9,999999999,7,0,0,88,0.2,0,0 +2010,10,2,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,24.7,-3.8,14,95946,625,1365,346,404,593,134,46808,40410,15517,5643,220,5.7,0,0,9900,77777,9,999999999,6,0,0,88,0.2,0,0 +2010,10,2,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,2,25,95959,351,1365,346,172,335,86,19328,14757,9706,3114,210,6.2,0,0,9900,77777,9,999999999,11,0,0,88,0.2,0,0 +2010,10,2,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,19,5,40,95888,57,1365,337,14,0,14,1340,0,1349,465,210,5.1,1,1,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,2,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17.1,3.4,40,96019,0,263,320,0,0,0,0,0,0,0,170,2.6,0,0,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,10,2,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,5,48,95834,0,0,328,0,0,0,0,0,0,0,150,4.1,2,2,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,2,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,6,59,95797,0,0,326,0,0,0,0,0,0,0,160,3.6,4,4,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,2,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,12.5,6.1,65,96085,0,0,303,0,0,0,0,0,0,0,170,2.1,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,2,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,5,62,95759,0,0,316,0,0,0,0,0,0,0,90,1.5,4,4,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,3,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,10,6,76,95721,0,0,317,0,0,0,0,0,0,0,360,1.5,7,7,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,3,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,8.5,4.6,76,96065,0,0,285,0,0,0,0,0,0,0,30,2.1,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,3,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,4,71,95702,0,0,287,0,0,0,0,0,0,0,360,2.6,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,10,3,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,3,76,95663,0,0,278,0,0,0,0,0,0,0,360,1,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,10,3,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,2.9,75,96093,0,0,278,0,0,0,0,0,0,0,170,2.6,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,10,3,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,4,76,95683,0,0,283,0,0,0,0,0,0,0,150,2.6,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,10,3,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,5,76,95702,36,168,288,9,0,9,849,0,854,305,160,2.1,0,0,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,10,3,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,11.2,6.4,72,96401,332,1366,298,156,312,81,17492,12079,9066,2894,150,3.1,0,0,8000,77777,9,999999999,18,0,0,88,0.2,0,0 +2010,10,3,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,7,63,95797,608,1366,329,364,498,142,41584,32878,16351,5840,120,2.1,5,5,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,10,3,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,7,59,95815,846,1366,331,580,672,164,68462,46702,19477,7650,170,3.1,4,4,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,10,3,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17,7.5,54,96491,1029,1366,325,767,834,139,94201,53927,17201,7165,170,4.1,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2010,10,3,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,7,52,95852,1146,1366,338,869,859,149,107925,55831,18624,7778,160,5.1,3,3,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,10,3,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18,8,52,95870,1188,1366,344,906,868,153,112971,55947,19134,7975,170,5.7,3,3,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,10,3,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17.7,8,53,96390,1152,1366,328,881,788,217,106457,56221,26377,10736,210,6.2,0,0,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,10,3,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18,7,49,95870,1041,1366,339,775,850,128,96052,54034,15907,6658,160,5.7,2,2,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,10,3,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18,7,49,95870,863,1366,339,610,770,124,73810,49247,15109,6111,170,5.7,2,2,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,10,3,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,18,7.6,51,96329,629,1366,335,401,559,144,45949,36958,16557,5983,180,6.7,1,1,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2010,10,3,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,8,63,95815,355,1366,335,165,279,93,18359,12222,10335,3281,210,5.1,5,5,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,10,3,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,8,67,95797,61,1366,325,15,0,15,1399,0,1408,486,180,5.7,3,3,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,10,3,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12.3,8,75,96460,0,280,342,0,0,0,0,0,0,0,200,3.6,9,9,9900,5400,9,999999999,21,0,0,88,0.2,0,0 +2010,10,3,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,8,76,95759,0,0,340,0,0,0,0,0,0,0,160,3.6,9,9,9900,5400,9,999999999,21,0,0,88,0.2,0,0 +2010,10,3,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,8,82,95740,0,0,336,0,0,0,0,0,0,0,140,2.6,9,9,9900,5400,9,999999999,21,0,0,88,0.2,0,0 +2010,10,3,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.5,8,84,96472,0,0,315,0,0,0,0,0,0,0,150,2.6,5,5,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,10,3,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10,8,87,95721,0,0,312,0,0,0,0,0,0,0,180,3.6,5,5,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,10,4,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10,8,87,95721,0,0,312,0,0,0,0,0,0,0,160,3.1,5,5,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,10,4,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.3,8,86,96450,0,0,332,0,0,0,0,0,0,0,160,3.6,9,9,8000,600,9,999999999,21,0,0,88,0.2,0,0 +2010,10,4,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,8,82,95740,0,0,336,0,0,0,0,0,0,0,140,1.5,9,9,8000,600,9,999999999,21,0,0,88,0.2,0,0 +2010,10,4,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,8,82,95740,0,0,336,0,0,0,0,0,0,0,60,0,9,9,8000,450,9,999999999,21,0,0,88,0.2,0,0 +2010,10,4,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10.4,7.9,84,96357,0,0,333,0,0,0,0,0,0,0,172,1,9,9,8000,450,9,999999999,21,0,0,88,0.2,0,0 +2010,10,4,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,8,82,95740,0,0,336,0,0,0,0,0,0,0,35,1,9,9,8000,450,9,999999999,21,0,0,88,0.2,0,0 +2010,10,4,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,8,82,95740,43,199,345,3,0,3,314,0,316,128,220,2.6,10,10,6000,450,9,999999999,21,0,0,88,0.2,0,0 +2010,10,4,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.7,8,83,96429,338,1367,344,51,0,51,4990,0,5028,2031,170,3.1,10,10,6000,450,9,999999999,21,0,0,88,0.2,0,0 +2010,10,4,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,8,76,95759,614,1367,350,122,0,122,12310,0,12414,5209,302,0,10,10,7000,420,9,999999999,21,0,0,88,0.2,0,0 +2010,10,4,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,8,72,95778,852,1367,355,189,1,189,22127,44,22188,8579,10,3.6,10,10,6000,420,9,999999999,21,0,0,88,0.2,0,0 +2010,10,4,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13.3,8.7,74,96384,1035,1367,357,243,9,236,28642,686,27974,11125,240,1.5,10,10,6000,480,9,999999999,22,0,0,88,0.2,0,0 +2010,10,4,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15,9,67,95815,1152,1367,336,818,578,331,95578,47649,38976,14876,190,2.6,5,5,5000,480,9,999999999,23,0,0,88,0.2,0,0 +2010,10,4,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14,9,72,95797,1193,1367,332,854,582,347,100020,48235,40873,15519,170,5.7,5,5,7000,480,9,999999999,23,0,0,88,0.2,0,0 +2010,10,4,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,8.6,66,96255,1157,1367,366,278,13,267,33122,988,31998,12699,180,4.6,10,10,8000,5400,9,999999999,22,0,0,88,0.2,0,0 +2010,10,4,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,8,63,95815,1046,1367,365,246,4,243,29031,312,28817,11433,180,5.1,10,10,8000,5400,9,999999999,21,0,0,88,0.2,0,0 +2010,10,4,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,8,63,95815,867,1367,355,318,24,303,35838,2062,34360,12042,170,6.2,9,9,8000,5100,9,999999999,21,0,0,88,0.2,0,0 +2010,10,4,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14.9,8.4,65,96215,632,1367,355,208,33,193,23321,2499,21698,7362,160,5.1,9,9,8000,7500,9,999999999,22,0,0,88,0.2,0,0 +2010,10,4,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,8,67,95797,359,1367,330,164,210,109,17989,10326,11999,3652,170,5.7,5,5,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,10,4,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,8,72,95778,64,1367,345,8,0,8,772,0,777,300,160,4.1,9,9,8000,6600,9,999999999,21,0,0,88,0.2,0,0 +2010,10,4,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12.3,7.9,74,96242,0,297,342,0,0,0,0,0,0,0,180,4.6,9,9,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,10,4,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,12.1,7.9,75,96001,0,0,328,0,0,0,0,0,0,0,354,3.6,7,7,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,10,4,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,12,8,76,95759,0,0,321,0,0,0,0,0,0,0,130,2.6,5,5,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,10,4,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.5,7.8,83,96227,0,0,333,0,0,0,0,0,0,0,180,1.5,9,9,8000,5400,9,999999999,21,0,0,88,0.2,0,0 +2010,10,4,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,8,87,95721,0,0,331,0,0,0,0,0,0,0,264,1,9,9,8000,5400,9,999999999,21,0,0,88,0.2,0,0 +2010,10,5,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,7,82,95721,0,0,330,0,0,0,0,0,0,0,300,1,9,9,5000,5400,9,999999999,19,0,0,88,0.2,0,0 +2010,10,5,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.3,6.8,90,96109,0,0,322,0,0,0,0,0,0,0,20,1.5,9,9,5000,5400,9,999999999,19,0,0,88,0.2,0,0 +2010,10,5,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,7,87,95702,0,0,302,0,0,0,0,0,0,0,190,0.5,3,3,5000,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,10,5,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,7,93,95683,0,0,303,0,0,0,0,0,0,0,170,2.1,5,5,5000,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,10,5,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,7,87,95702,0,0,325,0,0,0,0,0,0,0,170,2.6,9,9,6000,5400,9,999999999,19,0,0,88,0.2,0,0 +2010,10,5,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,8,93,95702,0,0,335,0,0,0,0,0,0,0,150,3.1,10,10,7000,300,9,999999999,21,0,0,88,0.2,0,0 +2010,10,5,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,7,87,95702,49,229,334,4,0,4,363,0,366,148,150,3.1,10,10,7000,300,9,999999999,19,0,0,88,0.2,0,0 +2010,10,5,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.2,6.9,86,96183,345,1368,335,52,0,52,5154,0,5193,2097,160,3.1,10,10,8000,300,9,999999999,19,0,0,88,0.2,0,0 +2010,10,5,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,7,82,95721,621,1368,339,124,0,124,12520,0,12625,5299,150,2.6,10,10,8000,270,9,999999999,19,0,0,88,0.2,0,0 +2010,10,5,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,7,82,95721,858,1368,339,191,1,191,22378,47,22438,8678,150,2.1,10,10,8000,240,9,999999999,19,0,0,88,0.2,0,0 +2010,10,5,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.6,7.7,82,96276,1041,1368,343,245,4,242,28866,309,28656,11363,180,2.6,10,10,8000,300,9,999999999,20,0,0,88,0.2,0,0 +2010,10,5,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,8,76,95759,1157,1368,340,457,28,433,52346,2622,49969,17725,160,2.6,9,9,9000,300,9,999999999,21,0,0,88,0.2,0,0 +2010,10,5,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,7,63,95797,1198,1368,349,478,50,434,55046,4590,50387,18004,130,2.6,9,9,9000,750,9,999999999,19,0,0,88,0.2,0,0 +2010,10,5,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15.2,7.3,59,96306,1162,1368,355,460,85,388,53190,7546,45144,16584,180,3.1,9,9,9000,750,9,999999999,19,0,0,88,0.2,0,0 +2010,10,5,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17,7,52,95852,1050,1368,338,776,693,245,91677,53054,29059,11520,190,3.1,3,3,9000,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,10,5,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17,5,45,95852,871,1368,336,614,751,136,73887,49881,16460,6626,140,3.1,3,3,9000,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,5,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18.3,6.4,46,96174,636,1368,336,408,609,125,47377,38525,14554,5391,160,2.6,1,1,9000,77777,9,999999999,18,0,0,88,0.2,0,0 +2010,10,5,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,6,48,95852,362,1368,334,179,337,89,19982,14906,10051,3238,220,4.6,2,2,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,5,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,6,59,95797,68,1368,326,16,0,16,1538,0,1549,533,220,6.7,4,4,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,5,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,12.9,6.2,64,96301,0,313,311,0,0,0,0,0,0,0,200,4.6,1,1,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,5,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,6,67,95759,0,0,319,0,0,0,0,0,0,0,150,3.6,5,5,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,5,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,11,5,66,95740,0,0,314,0,0,0,0,0,0,0,160,3.6,5,5,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,5,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,9,5.5,79,96396,0,0,288,0,0,0,0,0,0,0,180,3.1,0,0,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,10,5,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,9,6,81,95702,0,0,306,0,0,0,0,0,0,0,160,3.1,5,5,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,6,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,8,5,81,95683,0,0,301,0,0,0,0,0,0,0,120,3.1,5,5,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,10,6,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9,4.8,75,96462,0,0,323,0,0,0,0,0,0,0,130,3.6,9,9,9900,900,9,999999999,15,0,0,88,0.2,0,0 +2010,10,6,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9,5,76,95702,0,0,332,0,0,0,0,0,0,0,170,1.5,10,10,9900,900,9,999999999,16,0,0,88,0.2,0,0 +2010,10,6,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9,5,76,95702,0,0,332,0,0,0,0,0,0,0,250,2.1,10,10,9900,1050,9,999999999,16,0,0,88,0.2,0,0 +2010,10,6,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,9,5.4,78,96434,0,0,333,0,0,0,0,0,0,0,23,1,10,10,9900,1050,9,999999999,16,0,0,88,0.2,0,0 +2010,10,6,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8,5,81,95683,0,0,327,0,0,0,0,0,0,0,60,1.5,10,10,9900,1200,9,999999999,16,0,0,88,0.2,0,0 +2010,10,6,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8,5,81,95683,56,260,301,13,0,13,1217,0,1225,430,90,1,5,5,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,10,6,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,9.4,5.9,79,96621,351,1369,290,170,283,98,18876,13091,10881,3382,170,2.1,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,6,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,11,6,71,95740,627,1369,317,353,404,168,39999,28862,19146,6687,200,1.5,6,6,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,6,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,13,6,62,95778,864,1369,321,588,572,227,67883,44799,26323,9905,262,1,4,4,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,6,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14.7,6.4,57,96703,1047,1369,352,405,59,360,46335,5266,41468,15100,170,6.7,9,9,9900,5100,9,999999999,18,0,0,88,0.2,0,0 +2010,10,6,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,6,55,95815,1163,1369,352,461,50,418,53030,4616,48488,17398,180,5.1,9,9,9900,5400,9,999999999,17,0,0,88,0.2,0,0 +2010,10,6,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16,5,48,95834,1203,1369,356,481,50,437,55536,4701,50793,18108,170,4.1,9,9,9900,5400,9,999999999,15,0,0,88,0.2,0,0 +2010,10,6,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17,4.3,43,96708,1167,1369,360,464,50,421,53426,4709,48815,17485,180,4.1,9,9,9900,5100,9,999999999,14,0,0,88,0.2,0,0 +2010,10,6,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18,5,42,95870,1055,1369,366,409,21,393,46613,1994,45050,15989,190,4.6,9,9,9900,5100,9,999999999,15,0,0,88,0.2,0,0 +2010,10,6,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18,6,45,95870,875,1369,367,322,55,287,36597,4742,32799,11723,180,5.7,9,9,9900,5100,9,999999999,17,0,0,88,0.2,0,0 +2010,10,6,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17.8,5.8,45,96704,640,1369,343,397,471,177,44959,34490,20155,7018,190,6.2,4,4,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,6,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,5,45,95852,366,1369,332,182,355,87,20405,15665,9785,3183,200,5.1,2,2,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,6,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,5,48,95834,71,1369,328,17,0,17,1660,0,1671,570,220,4.6,2,2,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,6,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,14.1,5.4,56,96796,0,330,316,0,0,0,0,0,0,0,220,4.1,1,1,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,10,6,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,6,62,95778,0,0,321,0,0,0,0,0,0,0,150,2.6,4,4,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,6,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,6,67,95759,0,0,319,0,0,0,0,0,0,0,170,2.1,5,5,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,6,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,11.2,5.9,70,96835,0,0,298,0,0,0,0,0,0,0,124,0,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,6,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,5,76,95702,0,0,288,0,0,0,0,0,0,0,350,0.5,0,0,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,10,7,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,8,6,87,95683,0,0,319,0,0,0,0,0,0,0,50,2.1,9,9,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,7,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,8,5,81,96670,0,0,284,0,0,0,0,0,0,0,253,1.5,0,0,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,10,7,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,6,4,87,95644,0,0,308,0,0,0,0,0,0,0,40,1,9,9,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,10,7,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,4,87,95644,0,0,275,0,0,0,0,0,0,0,2,0.5,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,10,7,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5.7,3.5,86,96511,0,0,273,0,0,0,0,0,0,0,180,1,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,10,7,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5,4,93,95624,0,0,271,0,0,0,0,0,0,0,200,0.5,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,10,7,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,3,87,95624,63,291,270,15,0,15,1465,0,1475,505,174,0.5,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,10,7,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.6,5.4,80,96549,358,1369,287,175,333,88,19627,14610,9932,3191,360,1.5,0,0,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,10,7,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,6,71,95740,633,1369,297,405,604,126,46979,38406,14658,5412,360,2.6,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,7,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,6,55,95815,870,1369,314,620,780,125,75052,50253,15170,6142,50,2.1,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,7,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17.2,6,48,96371,1053,1369,324,790,783,189,95178,55349,22859,9348,210,1.5,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,7,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,5,37,95906,1168,1369,335,899,791,226,108675,58027,27400,11099,200,2.6,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,7,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,22,2,27,95942,1209,1369,341,941,793,242,113884,59905,29463,11839,210,2.6,0,0,9900,77777,9,999999999,11,0,0,88,0.2,0,0 +2010,10,7,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,24.7,0.3,20,96183,1171,1369,352,909,791,233,109746,59915,28282,11400,170,4.6,0,0,9900,77777,9,999999999,9,0,0,88,0.2,0,0 +2010,10,7,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,1,21,95994,1059,1369,354,802,783,197,96555,57510,23827,9699,160,4.6,0,0,9900,77777,9,999999999,10,0,0,88,0.2,0,0 +2010,10,7,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,2,21,96011,879,1369,360,632,778,133,76359,52214,16148,6518,160,5.7,0,0,9900,77777,9,999999999,11,0,0,88,0.2,0,0 +2010,10,7,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,25.5,1.6,21,96008,644,1369,357,417,605,133,48400,40401,15486,5697,180,4.6,0,0,9900,77777,9,999999999,11,0,0,88,0.2,0,0 +2010,10,7,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,24,4,27,95977,370,1369,353,185,351,90,20741,16114,10155,3286,210,6.2,0,0,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,10,7,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,5,35,95924,75,1369,340,18,0,18,1751,0,1763,599,210,6.2,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,7,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,19.4,5.5,40,96108,0,347,333,0,0,0,0,0,0,0,190,5.7,0,0,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,10,7,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,6,48,95852,0,0,334,0,0,0,0,0,0,0,170,3.1,2,2,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,7,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,7,55,95834,0,0,333,0,0,0,0,0,0,0,150,2.1,3,3,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,10,7,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,14.6,6.9,60,96181,0,0,313,0,0,0,0,0,0,0,160,2.6,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,10,7,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,13,6,62,95778,0,0,321,0,0,0,0,0,0,0,8,1,4,4,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,8,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,6,67,95759,0,0,319,0,0,0,0,0,0,0,170,1.5,5,5,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,8,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,10.9,6.8,76,96178,0,0,297,0,0,0,0,0,0,0,15,0.5,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,10,8,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,10,4,66,95721,0,0,308,0,0,0,0,0,0,0,5,0.5,5,5,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,10,8,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,4,76,95683,0,0,283,0,0,0,0,0,0,0,43,0,0,0,6000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,10,8,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,6.7,4,83,96144,0,0,278,0,0,0,0,0,0,0,10,1,0,0,6000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,10,8,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,4,81,95663,0,0,279,0,0,0,0,0,0,0,360,1,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,10,8,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,4,81,95663,69,321,279,17,0,17,1611,0,1622,553,286,1,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,10,8,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11.8,5.3,64,96195,364,1370,300,180,340,90,20151,15214,10086,3250,360,3.1,0,0,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,10,8,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,16,6,51,95834,640,1370,332,407,595,130,47191,38307,15111,5572,214,1,3,3,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,8,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,18,5,42,95870,876,1370,333,626,779,128,75727,50885,15561,6298,132,1,1,1,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,8,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,20.6,4.8,35,96130,1058,1370,338,796,783,192,95971,56026,23227,9488,130,1.5,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,8,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,22,5,33,95942,1173,1370,345,904,791,227,109275,58142,27585,11167,180,3.6,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,8,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,4,26,95994,1214,1370,358,943,794,241,114143,59222,29314,11795,180,4.6,0,0,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,10,8,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,25.5,3.8,25,96017,1176,1370,367,908,792,229,109727,58679,27853,11260,160,5.7,1,1,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,10,8,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,1,20,96011,1063,1370,359,805,784,198,97016,57617,23960,9753,170,5.7,0,0,9900,77777,9,999999999,10,0,0,88,0.2,0,0 +2010,10,8,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,4,24,96011,883,1370,362,634,728,165,75275,51374,19716,7825,220,7.2,0,0,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,10,8,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,24.6,5.2,29,95992,648,1370,378,389,490,157,44488,34246,18076,6487,210,6.7,5,5,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,8,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,5,31,95959,373,1370,349,187,364,88,21040,16398,9925,3242,210,6.7,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,8,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,5,37,95906,78,1370,335,19,0,19,1830,0,1843,625,200,6.2,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,8,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18.3,4.3,39,96136,0,364,349,0,0,0,0,0,0,0,190,6.2,6,6,9900,7500,9,999999999,14,0,0,88,0.2,0,0 +2010,10,8,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,5,45,95852,0,0,332,0,0,0,0,0,0,0,140,4.1,2,2,9900,7500,9,999999999,15,0,0,88,0.2,0,0 +2010,10,8,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,4,48,95815,0,0,322,0,0,0,0,0,0,0,150,3.1,2,2,9900,7500,9,999999999,14,0,0,88,0.2,0,0 +2010,10,8,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15.2,4.5,49,96259,0,0,332,0,0,0,0,0,0,0,140,3.1,5,5,9900,7500,9,999999999,15,0,0,88,0.2,0,0 +2010,10,8,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,4,54,95778,0,0,317,0,0,0,0,0,0,0,160,3.1,3,3,9900,7500,9,999999999,14,0,0,88,0.2,0,0 +2010,10,9,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,13,5,58,95778,0,0,320,0,0,0,0,0,0,0,114,1,4,4,9900,7500,9,999999999,15,0,0,88,0.2,0,0 +2010,10,9,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,11.5,4.9,64,96218,0,0,311,0,0,0,0,0,0,0,180,3.6,3,3,9900,7500,9,999999999,15,0,0,88,0.2,0,0 +2010,10,9,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,9,4,71,95702,0,0,307,0,0,0,0,0,0,0,339,0.5,6,6,9900,7500,9,999999999,14,0,0,88,0.2,0,0 +2010,10,9,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,11,5,66,95740,0,0,314,0,0,0,0,0,0,0,160,2.1,5,5,9900,7500,9,999999999,15,0,0,88,0.2,0,0 +2010,10,9,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,10,5.3,73,96217,0,0,292,0,0,0,0,0,0,0,284,1,0,0,9900,7500,9,999999999,16,0,0,88,0.2,0,0 +2010,10,9,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,9,5,76,95702,0,0,311,0,0,0,0,0,0,0,329,0.5,7,7,9900,7500,9,999999999,16,0,0,88,0.2,0,0 +2010,10,9,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,4,81,95663,76,351,279,18,0,18,1762,0,1774,602,294,0.5,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,10,9,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,10.7,5.4,70,96268,371,1371,308,182,333,92,20406,15335,10372,3342,184,1,3,3,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,10,9,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14,6,59,95797,646,1371,326,403,569,136,46653,37293,15746,5788,260,1,4,4,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,9,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,6,48,95852,882,1371,334,629,732,158,74862,50370,18891,7534,200,2.1,2,2,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,9,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,19.3,6.3,43,96239,1064,1371,334,800,784,192,96392,55502,23206,9492,210,2.1,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,9,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,6,38,95924,1179,1371,341,907,792,227,109714,57807,27609,11181,170,5.1,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,9,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,22,5,33,95942,1218,1371,345,946,795,241,114533,58892,29313,11800,180,5.1,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,9,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,23.3,5.6,32,96102,1180,1371,351,910,792,228,109985,58026,27751,11231,170,4.6,0,0,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,10,9,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,24,5,29,95977,1067,1371,354,804,784,194,96965,56173,23540,9616,170,6.2,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,9,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,5,28,95994,887,1371,359,636,785,129,77041,51310,15677,6359,170,5.7,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,9,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,24.5,5.4,29,96019,652,1371,372,416,592,134,48175,38887,15636,5772,170,6.2,3,3,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,10,9,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,7,36,95959,377,1371,352,189,353,92,21204,16138,10373,3367,190,5.7,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,10,9,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,9,49,95906,82,1371,351,20,0,20,1896,0,1909,649,210,5.1,2,2,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,10,9,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17.7,8.5,55,96040,0,382,343,0,0,0,0,0,0,0,180,3.1,3,3,9900,77777,9,999999999,22,0,0,88,0.2,0,0 +2010,10,9,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,9,59,95852,0,0,343,0,0,0,0,0,0,0,150,2.6,4,4,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,10,9,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,9,63,95834,0,0,341,0,0,0,0,0,0,0,170,2.1,5,5,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,10,9,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,14.4,8.8,69,96055,0,0,328,0,0,0,0,0,0,0,146,1.5,3,3,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,10,9,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,8,72,95778,0,0,329,0,0,0,0,0,0,0,150,3.6,6,6,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,10,10,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,8,76,95759,0,0,328,0,0,0,0,0,0,0,160,2.6,7,7,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,10,10,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,11.5,7.8,78,95991,0,0,301,0,0,0,0,0,0,0,37,1,0,0,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,10,10,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,10,7,82,95721,0,0,323,0,0,0,0,0,0,0,300,1.5,8,8,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,10,10,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,7,87,95702,0,0,290,0,0,0,0,0,0,0,25,1,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,10,10,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9.2,7.4,88,95928,0,0,304,0,0,0,0,0,0,0,167,1,3,3,7000,77777,9,999999999,20,0,0,88,0.2,0,0 +2010,10,10,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,6,87,95683,0,0,285,0,0,0,0,0,0,0,325,0,0,0,6000,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,10,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,7,87,95702,82,381,290,20,0,20,1898,0,1911,649,145,1,0,0,4000,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,10,10,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13.5,8.7,73,95943,377,1372,310,188,348,93,21061,15637,10422,3380,62,1,0,0,5000,77777,9,999999999,22,0,0,88,0.2,0,0 +2010,10,10,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,9,56,95870,652,1372,331,418,619,124,48719,38447,14535,5429,25,1,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,10,10,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,9,52,95888,888,1372,335,633,786,124,76731,49387,15108,6153,180,2.6,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,10,10,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,21.8,8.7,43,95867,1070,1372,348,802,862,130,99454,54098,16186,6791,190,3.1,0,0,8000,77777,9,999999999,22,0,0,88,0.2,0,0 +2010,10,10,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,24,9,38,95977,1184,1372,359,908,793,224,109808,56402,27288,11079,190,4.1,0,0,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,10,10,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,8,34,95994,1223,1372,362,946,795,238,114581,57556,28968,11691,180,5.1,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2010,10,10,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,26.3,8.5,32,95709,1185,1372,369,910,793,226,110020,56699,27426,11127,160,6.7,0,0,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,10,10,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,9,34,96011,1072,1372,369,803,862,130,99649,53979,16220,6807,170,7.7,0,0,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,10,10,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,24,10,41,95977,891,1372,367,634,787,124,76935,48924,15061,6142,210,6.2,1,1,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2010,10,10,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,22.8,9.7,43,95705,655,1372,354,421,623,124,49057,38377,14477,5422,210,6.7,0,0,9900,77777,9,999999999,24,0,0,88,0.2,0,0 +2010,10,10,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,22,11,50,95942,381,1372,363,189,327,99,21082,14942,11042,3546,180,7.7,2,2,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2010,10,10,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18,10,59,95870,86,1372,349,20,0,20,1924,0,1937,663,160,5.1,4,4,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2010,10,10,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,16,10.2,68,95820,0,399,323,0,0,0,0,0,0,0,160,5.1,0,0,9900,77777,9,999999999,26,0,0,88,0.2,0,0 +2010,10,10,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,10,72,95815,0,0,340,0,0,0,0,0,0,0,160,3.1,6,6,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2010,10,10,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,9,77,95778,0,0,334,0,0,0,0,0,0,0,170,3.1,7,7,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,10,10,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,12.1,9.1,82,95756,0,0,305,0,0,0,0,0,0,0,170,3.1,0,0,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,10,10,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,11,9,87,95740,0,0,337,0,0,0,0,0,0,0,170,2.6,9,9,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,10,11,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,9,93,95721,0,0,296,0,0,0,0,0,0,0,160,2.6,0,0,4000,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,10,11,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,9.5,9.1,97,95603,0,0,339,0,0,0,0,0,0,0,180,3.1,10,10,600,30,0,999999999,23,0,0,88,0.2,0,0 +2010,10,11,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,10,9,93,95721,0,0,341,0,0,0,0,0,0,0,170,3.1,10,10,600,30,0,999999999,23,0,0,88,0.2,0,0 +2010,10,11,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,10,9,93,95721,0,0,341,0,0,0,0,0,0,0,160,4.1,10,10,600,30,0,999999999,23,0,0,88,0.2,0,0 +2010,10,11,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,9.6,9.5,99,95624,0,0,340,0,0,0,0,0,0,0,170,3.1,10,10,600,30,0,999999999,24,0,0,88,0.2,0,0 +2010,10,11,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,10,10,100,95721,0,0,343,0,0,0,0,0,0,0,130,2.6,10,10,800,60,0,999999999,26,0,0,88,0.2,0,0 +2010,10,11,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,10,100,95721,88,411,343,7,0,7,641,0,646,261,223,1,10,10,700,60,0,999999999,26,0,0,88,0.2,0,0 +2010,10,11,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.7,9.3,97,95824,383,1373,340,61,0,61,6007,0,6053,2458,260,2.6,10,10,700,30,0,919999999,24,0,0,88,0.2,0,0 +2010,10,11,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,10,100,95721,658,1373,343,133,0,133,13480,0,13595,5754,180,2.1,10,10,2000,60,0,919999999,26,0,0,88,0.2,0,0 +2010,10,11,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,10,94,95740,894,1373,347,200,1,200,23442,57,23497,9156,150,3.1,10,10,3500,90,0,919999999,26,0,0,88,0.2,0,0 +2010,10,11,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11.5,9.4,87,95953,1075,1373,349,254,4,251,29941,269,29777,11825,160,3.1,10,10,6000,180,0,919999999,24,0,0,88,0.2,0,0 +2010,10,11,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,9,82,95759,1189,1373,351,287,4,283,34138,333,33892,13355,160,2.6,10,10,8000,240,0,919999999,23,0,0,88,0.2,0,0 +2010,10,11,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,9,72,95797,1228,1373,361,299,6,293,35598,468,35162,13811,160,3.6,10,10,8000,330,0,919999999,23,0,0,88,0.2,0,0 +2010,10,11,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14.8,9.5,71,96005,1189,1373,356,471,66,414,54314,5866,48101,17420,150,4.1,9,9,8000,450,0,919999999,24,0,0,88,0.2,0,0 +2010,10,11,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16,10,68,95834,1076,1373,342,749,564,308,87067,45900,36022,13781,180,5.1,5,5,8000,77777,0,919999999,25,0,0,88,0.2,0,0 +2010,10,11,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,10,63,95852,895,1373,347,607,691,157,72285,45918,18758,7527,180,5.1,5,5,9900,77777,0,919999999,25,0,0,88,0.2,0,0 +2010,10,11,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17.2,10,63,95870,659,1373,328,424,626,124,49420,38466,14492,5437,170,4.6,0,0,8000,77777,0,919999999,25,0,0,88,0.2,0,0 +2010,10,11,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,10,63,95852,384,1373,327,193,354,94,21652,16023,10597,3451,170,4.6,0,0,8000,77777,0,919999999,25,0,0,88,0.2,0,0 +2010,10,11,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,10,72,95815,90,1373,340,19,0,19,1805,0,1817,639,170,4.1,6,6,9900,77777,0,919999999,25,0,0,88,0.2,0,0 +2010,10,11,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,14,9.7,75,95868,0,417,314,0,0,0,0,0,0,0,150,3.6,0,0,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2010,10,11,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,10,82,95778,0,0,310,0,0,0,0,0,0,0,150,2.6,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2010,10,11,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,9,82,95759,0,0,304,0,0,0,0,0,0,0,160,3.6,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,10,11,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.7,8.7,87,95862,0,0,298,0,0,0,0,0,0,0,170,3.1,0,0,7000,77777,9,999999999,22,0,0,88,0.2,0,0 +2010,10,11,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,9,93,95721,0,0,296,0,0,0,0,0,0,0,170,3.1,0,0,6000,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,10,12,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,10,94,95740,0,0,338,0,0,0,0,0,0,0,200,2.1,9,9,6000,270,9,999999999,26,0,0,88,0.2,0,0 +2010,10,12,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11.4,9.8,90,95979,0,0,349,0,0,0,0,0,0,0,197,1,10,10,7000,240,9,999999999,25,0,0,88,0.2,0,0 +2010,10,12,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,10,94,95740,0,0,347,0,0,0,0,0,0,0,160,2.6,10,10,4000,180,9,999999999,26,0,0,88,0.2,0,0 +2010,10,12,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,10,94,95740,0,0,347,0,0,0,0,0,0,0,200,2.1,10,10,6000,240,9,999999999,26,0,0,88,0.2,0,0 +2010,10,12,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10.8,8.9,88,96025,0,0,345,0,0,0,0,0,0,0,190,3.6,10,10,6000,270,9,999999999,23,0,0,88,0.2,0,0 +2010,10,12,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,10,94,95740,0,0,347,0,0,0,0,0,0,0,210,3.6,10,10,5000,240,9,999999999,26,0,0,88,0.2,0,0 +2010,10,12,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,10,94,95740,95,440,347,7,0,7,685,0,690,280,140,2.6,10,10,5000,120,0,919999999,26,0,0,88,0.2,0,0 +2010,10,12,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.4,9.5,94,96225,389,1373,344,62,0,62,6144,0,6192,2517,150,2.6,10,10,5000,90,0,919999999,24,0,0,88,0.2,0,0 +2010,10,12,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,10,94,95740,664,1373,347,135,0,135,13643,0,13760,5829,160,3.6,10,10,5000,90,0,919999999,26,0,0,88,0.2,0,0 +2010,10,12,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,10,94,95740,900,1373,347,202,1,201,23627,59,23682,9236,180,3.1,10,10,6000,90,0,919999999,26,0,0,88,0.2,0,0 +2010,10,12,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,10,82,95778,1081,1373,357,255,5,251,30099,359,29821,11855,170,3.1,10,10,6000,90,0,919999999,25,0,0,88,0.2,0,0 +2010,10,12,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,9,72,95797,1194,1373,351,473,28,449,54297,2612,51869,18309,210,2.1,9,9,6000,900,0,919999999,23,0,0,88,0.2,0,0 +2010,10,12,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,16,9,63,95834,1233,1373,361,492,49,448,56756,4512,52039,18526,99,1,9,9,6000,900,0,919999999,23,0,0,88,0.2,0,0 +2010,10,12,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,16.8,8.8,59,96184,1194,1373,365,473,84,400,54805,7467,46629,17065,109,1,9,9,6000,900,0,919999999,23,0,0,88,0.2,0,0 +2010,10,12,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,18,9,56,95870,1080,1373,350,754,568,308,87697,46524,35994,13781,183,1,5,5,6000,77777,0,919999999,23,0,0,88,0.2,0,0 +2010,10,12,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19,9,52,95888,899,1373,355,598,657,168,70899,45009,20050,7993,180,3.6,5,5,6000,77777,0,919999999,23,0,0,88,0.2,0,0 +2010,10,12,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17.6,9.2,58,95981,663,1373,343,422,602,132,48999,38149,15369,5728,220,6.2,3,3,6000,77777,0,919999999,23,0,0,88,0.2,0,0 +2010,10,12,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,9,59,95852,388,1373,343,191,327,98,21290,15428,11038,3570,210,5.1,4,4,9900,77777,0,919999999,23,0,0,88,0.2,0,0 +2010,10,12,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,9,67,95815,93,1373,336,21,0,21,1983,0,1997,692,210,4.1,5,5,9900,77777,0,919999999,23,0,0,88,0.2,0,0 +2010,10,12,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,13.5,8.5,72,96010,0,434,324,0,0,0,0,0,0,0,180,3.6,3,3,9900,77777,9,999999999,22,0,0,88,0.2,0,0 +2010,10,12,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,8,76,95759,0,0,328,0,0,0,0,0,0,0,170,4.1,7,7,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,10,12,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,8,76,95759,0,0,328,0,0,0,0,0,0,0,160,4.1,7,7,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,10,12,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10.9,7.5,80,96083,0,0,327,0,0,0,0,0,0,0,160,3.1,8,8,9900,6900,9,999999999,20,0,0,88,0.2,0.5,0 +2010,10,12,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,8,76,95759,0,0,340,0,0,0,0,0,0,0,170,2.1,9,9,9900,7500,9,999999999,21,0,0,88,0.2,0,0 +2010,10,13,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,7,71,95759,0,0,349,0,0,0,0,0,0,0,190,4.1,10,10,9900,510,9,999999999,19,0,0,88,0.2,0,0 +2010,10,13,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11.5,7.7,77,96170,0,0,347,0,0,0,0,0,0,0,190,4.1,10,10,9900,510,9,999999999,20,0,0,88,0.2,0,0 +2010,10,13,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,8,87,95721,0,0,340,0,0,0,0,0,0,0,220,4.1,10,10,9900,390,9,999999999,21,0,0,88,0.2,0,0 +2010,10,13,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,8,93,95702,0,0,335,0,0,0,0,0,0,0,150,2.6,10,10,6000,240,0,919999999,21,0,0,88,0.2,0,0 +2010,10,13,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,8,93,95702,0,0,335,0,0,0,0,0,0,0,140,2.1,10,10,7000,240,0,919999999,21,0,0,88,0.2,0,0 +2010,10,13,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,8,93,95702,0,0,335,0,0,0,0,0,0,0,140,2.6,10,10,8000,270,0,919999999,21,0,0,88,0.2,0,0 +2010,10,13,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,8,93,95702,101,470,335,8,0,8,733,0,738,299,150,2.6,10,10,8000,270,0,919999999,21,0,0,88,0.2,0,0 +2010,10,13,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.6,8.4,92,96474,395,1374,339,64,0,64,6307,0,6356,2583,160,3.1,10,10,8000,360,0,919999999,22,0,0,88,0.2,0,0 +2010,10,13,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,8,87,95721,670,1374,340,137,0,137,13873,0,13992,5922,160,2.1,10,10,8000,450,0,919999999,21,0,0,88,0.2,0,0 +2010,10,13,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,8,76,95759,905,1374,350,204,1,204,23914,63,23966,9340,170,1.5,10,10,8000,510,0,919999999,21,0,0,88,0.2,0,0 +2010,10,13,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,8.4,74,96454,1086,1374,355,257,4,254,30370,278,30198,11983,200,1.5,10,10,8000,450,0,919999999,22,0,0,88,0.2,0,0 +2010,10,13,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,15,8,63,95815,1199,1374,365,291,6,285,34572,454,34165,13448,115,0.5,10,10,8000,750,0,919999999,21,0,0,88,0.2,0,0 +2010,10,13,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16,8,59,95834,1238,1374,360,495,76,427,57377,6852,49795,18005,200,1.5,9,9,8000,750,0,919999999,21,0,0,88,0.2,0,0 +2010,10,13,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16,8,59,95834,1198,1374,360,476,49,433,54813,4550,50200,17941,210,2.6,9,9,8000,900,0,919999999,21,0,0,88,0.2,0,0 +2010,10,13,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17,8,55,95852,1084,1374,365,421,65,369,48290,5828,42647,15599,190,3.1,9,9,8000,960,0,919999999,21,0,0,88,0.2,0,0 +2010,10,13,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17,8,55,95852,903,1374,344,602,566,230,69730,43655,26823,10230,190,3.1,5,5,8000,77777,0,919999999,21,0,0,88,0.2,0,0 +2010,10,13,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17.3,7.9,54,96269,667,1374,340,426,605,133,49500,38901,15518,5783,200,4.6,3,3,8000,77777,0,919999999,21,0,0,88,0.2,0,0 +2010,10,13,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17,8,55,95852,392,1374,339,197,350,97,22042,16672,10911,3551,190,4.1,3,3,8000,77777,0,919999999,21,0,0,88,0.2,0,0 +2010,10,13,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,8,63,95815,97,1374,335,22,0,22,2130,0,2145,736,210,4.6,5,5,9900,77777,0,919999999,21,0,0,88,0.2,0,0 +2010,10,13,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,13.6,7.9,68,96352,0,452,316,0,0,0,0,0,0,0,210,3.6,1,1,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,10,13,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,7,67,95778,0,0,320,0,0,0,0,0,0,0,190,2.6,3,3,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,10,13,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,8,76,95759,0,0,316,0,0,0,0,0,0,0,140,2.1,3,3,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,10,13,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11.2,7.2,76,96325,0,0,312,0,0,0,0,0,0,0,190,1.5,3,3,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,10,13,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,7,82,95721,0,0,307,0,0,0,0,0,0,0,290,1.5,3,3,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,10,14,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,7,82,95721,0,0,311,0,0,0,0,0,0,0,150,2.1,5,5,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,10,14,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,8.4,5.6,83,96186,0,0,303,0,0,0,0,0,0,0,29,1,5,5,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,14,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,8,6,87,95683,0,0,302,0,0,0,0,0,0,0,124,1,5,5,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,14,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7,5,87,95663,0,0,296,0,0,0,0,0,0,0,160,2.1,5,5,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,10,14,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,8.4,5.6,83,96064,0,0,303,0,0,0,0,0,0,0,193,0.5,5,5,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,14,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,6,93,95663,0,0,315,0,0,0,0,0,0,0,33,1,9,9,8000,5400,9,999999999,17,0,0,88,0.2,0,0 +2010,10,14,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,5,81,95683,107,499,318,13,0,13,1277,0,1286,495,109,1,9,9,8000,5400,9,999999999,16,0,0,88,0.2,0,0 +2010,10,14,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9.3,6.3,81,95968,401,1375,326,107,5,106,11927,244,11819,3804,38,1,9,9,6000,5100,9,999999999,18,0,0,88,0.2,0,0 +2010,10,14,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,7,76,95740,676,1375,334,227,19,218,25407,1494,24503,8270,230,2.6,9,9,8000,7500,9,999999999,19,0,0,88,0.2,0,0 +2010,10,14,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,8,72,95778,911,1375,345,337,64,295,38389,5473,33760,12202,150,3.6,9,9,8000,7500,9,999999999,21,0,0,88,0.2,0,0 +2010,10,14,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14.8,8.3,65,96091,1091,1375,354,424,21,407,48296,1942,46721,16604,150,5.7,9,9,8000,5700,9,999999999,21,0,0,88,0.2,0,0 +2010,10,14,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16,8,59,95834,1204,1375,360,479,49,435,55139,4554,50506,18035,150,2.6,9,9,8000,5700,9,999999999,21,0,0,88,0.2,0,0 +2010,10,14,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17,8,55,95852,1242,1375,365,497,50,452,57384,4578,52600,18684,200,4.1,9,9,8000,5700,9,999999999,21,0,0,88,0.2,0,0 +2010,10,14,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15.6,7.9,60,96096,1203,1375,358,478,49,435,55054,4558,50425,18009,220,6.7,9,9,8000,5100,9,999999999,21,0,0,88,0.2,0,0 +2010,10,14,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,8,63,95815,1088,1375,355,423,21,406,48147,1947,46574,16548,210,6.2,9,9,8000,5400,9,999999999,21,0,0,88,0.2,0,0 +2010,10,14,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,9,72,95797,907,1375,351,335,24,319,37807,2098,36258,12769,210,7.2,9,9,8000,5400,9,999999999,23,0,0,88,0.2,0,0 +2010,10,14,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12.6,8.4,76,96182,670,1375,353,137,0,137,13864,0,13983,5920,210,6.2,10,10,8000,5400,9,999999999,22,0,0,88,0.2,0,0 +2010,10,14,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,8,72,95778,395,1375,355,64,0,64,6303,0,6352,2580,180,4.6,10,10,8000,1200,9,999999999,21,0,0,88,0.2,0,0 +2010,10,14,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,8,76,95759,101,1375,350,8,0,8,730,0,735,298,210,5.1,10,10,8000,1200,9,999999999,21,0,0,88,0.2,0,0 +2010,10,14,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,7.7,80,96321,0,470,345,0,0,0,0,0,0,0,220,3.6,10,10,8000,900,9,999999999,20,0,0,88,0.2,0,0 +2010,10,14,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,8,82,95740,0,0,345,0,0,0,0,0,0,0,150,3.6,10,10,8000,900,9,999999999,21,0,0,88,0.2,0,0 +2010,10,14,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,8,87,95721,0,0,340,0,0,0,0,0,0,0,150,4.1,10,10,8000,750,9,999999999,21,0,0,88,0.2,0,0 +2010,10,14,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,8,87,95721,0,0,340,0,0,0,0,0,0,0,180,4.6,10,10,8000,450,9,999999999,21,0,0,88,0.2,0,0 +2010,10,14,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,7,82,95721,0,0,339,0,0,0,0,0,0,0,180,4.1,10,10,8000,300,9,999999999,19,0,0,88,0.2,0,0 +2010,10,15,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9,5,76,95702,0,0,332,0,0,0,0,0,0,0,210,4.6,10,10,8000,300,9,999999999,16,0,0,88,0.2,0,0 +2010,10,15,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9,5.9,81,96349,0,0,333,0,0,0,0,0,0,0,180,3.6,10,10,8000,300,9,999999999,17,0,0,88,0.2,0,0 +2010,10,15,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9,6,81,95702,0,0,333,0,0,0,0,0,0,0,150,3.1,10,10,8000,450,9,999999999,17,0,0,88,0.2,0,0 +2010,10,15,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9,6,81,95702,0,0,333,0,0,0,0,0,0,0,160,3.6,10,10,8000,450,9,999999999,17,0,0,88,0.2,0,0 +2010,10,15,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8.6,5.2,79,96417,0,0,330,0,0,0,0,0,0,0,160,2.6,10,10,8000,450,9,999999999,16,0,0,88,0.2,0,0 +2010,10,15,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9,5,76,95702,0,0,332,0,0,0,0,0,0,0,160,2.1,10,10,8000,450,9,999999999,16,0,0,88,0.2,0,0 +2010,10,15,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9,5,76,95702,113,528,332,8,0,8,824,0,829,337,180,2.6,10,10,8000,600,9,999999999,16,0,0,88,0.2,0,0 +2010,10,15,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9.6,5.3,75,96550,407,1376,335,67,0,67,6634,0,6686,2714,250,1.5,10,10,8000,450,9,999999999,16,0,0,88,0.2,0,0 +2010,10,15,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,11,6,71,95740,681,1376,343,140,0,140,14259,0,14381,6087,300,1,10,10,8000,450,9,999999999,17,0,0,88,0.2,0,0 +2010,10,15,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,6,71,95740,916,1376,343,208,5,204,24398,399,24100,9413,180,2.6,10,10,8000,750,9,999999999,17,0,0,88,0.2,0,0 +2010,10,15,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13.1,6.7,65,96560,1096,1376,344,427,28,405,48778,2627,46528,16583,160,2.6,9,9,8000,900,9,999999999,18,0,0,88,0.2,0,0 +2010,10,15,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,7,63,95797,1209,1376,349,482,85,407,55840,7659,47462,17312,150,1.5,9,9,8000,900,9,999999999,19,0,0,88,0.2,0,0 +2010,10,15,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16,6,51,95834,1247,1376,337,903,602,357,106286,50781,42372,16036,130,2.6,5,5,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,15,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18,6,45,96481,1207,1376,342,920,844,181,113571,57464,22388,9241,160,3.6,3,3,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,15,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18,7,49,95870,1092,1376,343,813,843,145,100400,54833,17943,7501,150,3.1,3,3,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,10,15,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19,7,46,95888,910,1376,347,646,767,139,77948,50373,16844,6841,200,3.6,3,3,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,10,15,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19.4,6.6,43,96345,674,1376,349,433,609,135,50346,39802,15781,5884,180,3.6,3,3,8000,77777,9,999999999,18,0,0,88,0.2,0,0 +2010,10,15,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19,5,40,95888,399,1376,345,203,363,98,22798,18019,11042,3606,160,4.6,3,3,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,15,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18,5,42,95870,105,1376,333,25,0,25,2418,0,2435,821,180,5.7,1,1,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,15,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15.5,6.1,53,96416,0,489,316,0,0,0,0,0,0,0,210,4.1,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,15,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,6,59,95797,0,0,326,0,0,0,0,0,0,0,170,3.6,4,4,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,15,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,6,59,95797,0,0,326,0,0,0,0,0,0,0,150,2.6,4,4,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,15,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,12.9,6.3,64,96471,0,0,305,0,0,0,0,0,0,0,160,1.5,0,0,9900,77777,9,999999999,18,0,0,88,0.2,0,0 +2010,10,15,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,6,67,95759,0,0,319,0,0,0,0,0,0,0,160,1.5,5,5,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,16,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,10,6,76,95721,0,0,317,0,0,0,0,0,0,0,131,1,7,7,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,16,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,10.3,5,70,96374,0,0,293,0,0,0,0,0,0,0,190,2.6,0,0,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,10,16,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,10,5,71,95721,0,0,312,0,0,0,0,0,0,0,160,2.1,6,6,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,10,16,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,6,4,87,95644,0,0,308,0,0,0,0,0,0,0,350,1.5,9,9,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,10,16,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5.9,4.1,88,96373,0,0,274,0,0,0,0,0,0,0,40,1.5,0,0,7000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,10,16,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,4,87,95644,0,0,275,0,0,0,0,0,0,0,96,0,0,0,6000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,10,16,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,5,87,95663,119,556,280,28,0,28,2747,0,2766,934,304,1,0,0,5000,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,10,16,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9.6,5.3,75,96465,413,1377,291,216,405,95,24426,20038,10751,3581,36,1,0,0,6000,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,10,16,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14,6,59,95797,687,1377,326,437,597,140,50833,39702,16300,6088,60,1,4,4,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,16,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,16,6,51,95834,922,1377,332,661,736,168,78736,51413,20163,8078,229,1,3,3,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,16,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,18.4,6.3,45,96403,1101,1377,336,833,848,155,102456,56303,19114,7966,128,1,1,1,9900,77777,9,999999999,18,0,0,88,0.2,0,0 +2010,10,16,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,6,40,95906,1214,1377,343,939,797,237,113593,58530,28786,11613,190,2.6,1,1,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,16,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,22,1,25,95942,1251,1377,340,981,831,227,119884,61330,27849,11271,160,3.6,0,0,9900,77777,9,999999999,10,0,0,88,0.2,0,0 +2010,10,16,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,23.9,3.3,26,96264,1211,1377,386,632,252,410,73325,23063,47951,17422,170,4.6,8,8,9900,7500,9,999999999,13,0,0,88,0.2,0,0 +2010,10,16,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,-1,18,95994,1096,1377,351,837,781,215,100613,59075,26032,10537,210,6.2,0,0,9900,7500,9,999999999,8,0,0,88,0.2,0,0 +2010,10,16,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,24,-2,17,95977,914,1377,345,666,640,242,77308,52572,28222,10671,210,7.2,0,0,9900,7500,9,999999999,8,0,0,88,0.2,0,0 +2010,10,16,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,23,1,23,96229,678,1377,387,230,136,163,26410,9829,18833,6812,220,7.2,9,9,9900,7500,9,999999999,10,0,0,88,0.2,0,0 +2010,10,16,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,22,3,29,95942,403,1377,342,209,308,119,23127,17485,13208,4111,210,6.2,0,0,9900,7500,9,999999999,12,0,0,88,0.2,0,0 +2010,10,16,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,5,37,95906,108,1377,335,26,0,26,2500,0,2517,850,210,5.1,0,0,9900,7500,9,999999999,15,0,0,88,0.2,0,0 +2010,10,16,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18.5,4.1,38,96338,0,507,360,0,0,0,0,0,0,0,190,3.6,8,8,9900,7500,9,999999999,14,0,0,88,0.2,0,0 +2010,10,16,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,5,45,95852,0,0,332,0,0,0,0,0,0,0,150,3.1,2,2,9900,7500,9,999999999,15,0,0,88,0.2,0,0 +2010,10,16,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,5,51,95815,0,0,327,0,0,0,0,0,0,0,150,1,3,3,9900,7500,9,999999999,15,0,0,88,0.2,0,0 +2010,10,16,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,14,5.5,57,96435,0,0,325,0,0,0,0,0,0,0,323,1,4,4,9900,7500,9,999999999,16,0,0,88,0.2,0,0 +2010,10,16,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,10,4,66,95721,0,0,308,0,0,0,0,0,0,0,100,1.5,5,5,9900,7500,9,999999999,14,0,0,88,0.2,0,0 +2010,10,17,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,12,5,62,95759,0,0,316,0,0,0,0,0,0,0,177,0.5,4,4,9900,7500,9,999999999,15,0,0,88,0.2,0,0 +2010,10,17,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,10.1,3.3,63,96465,0,0,291,0,0,0,0,0,0,0,320,1.5,0,0,9900,7500,9,999999999,13,0,0,88,0.2,0,0 +2010,10,17,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,9,4,71,95702,0,0,307,0,0,0,0,0,0,0,20,2.1,6,6,9900,7500,9,999999999,14,0,0,88,0.2,0,0 +2010,10,17,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,4,71,95702,0,0,287,0,0,0,0,0,0,0,300,2.1,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,10,17,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6.8,3.5,79,96382,0,0,277,0,0,0,0,0,0,0,170,2.1,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,10,17,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,4,81,95663,0,0,279,0,0,0,0,0,0,0,240,2.6,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,10,17,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,4,71,95702,125,584,287,31,5,30,3401,0,3357,991,250,1.5,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,10,17,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,11,5.1,67,96558,419,1377,296,221,320,124,24448,18531,13750,4310,40,3.1,0,0,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,10,17,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,5,48,95834,693,1377,328,454,633,136,52994,42044,15958,5992,30,1.5,2,2,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,17,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,19,4,37,95888,927,1377,330,672,794,138,81451,53072,16820,6853,110,2.1,0,0,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,10,17,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,21.1,3.9,32,96499,1106,1377,339,840,790,206,101371,57590,24987,10185,183,1,0,0,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,10,17,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,2,25,95959,1218,1377,346,949,798,244,114764,60332,29644,11904,140,1.5,0,0,9900,77777,9,999999999,11,0,0,88,0.2,0,0 +2010,10,17,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,2,22,95994,1255,1377,355,984,800,255,119167,60899,31118,12438,180,4.1,0,0,9900,77777,9,999999999,11,0,0,88,0.2,0,0 +2010,10,17,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,26.5,2.7,21,96281,1215,1377,385,879,649,308,104415,52953,36749,14270,190,4.6,5,5,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2010,10,17,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,3,23,96011,1100,1377,361,836,839,166,102391,57909,20459,8480,220,8.7,0,0,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2010,10,17,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,27,3,21,96029,918,1377,366,665,790,139,80469,53213,16875,6856,210,6.7,0,0,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2010,10,17,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,26.5,1,19,96243,681,1377,368,449,623,141,52166,42725,16428,6100,180,6.2,1,1,9900,77777,9,999999999,10,0,0,88,0.2,0,0 +2010,10,17,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,3,23,96011,407,1377,361,212,389,97,23864,19704,10987,3616,170,4.1,0,0,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2010,10,17,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,6,33,95959,112,1377,350,27,0,27,2586,0,2603,879,220,4.6,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,17,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,20.9,6.5,39,96296,0,525,341,0,0,0,0,0,0,0,200,5.7,0,0,9900,77777,9,999999999,18,0,0,88,0.2,0,0 +2010,10,17,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,7,43,95906,0,0,344,0,0,0,0,0,0,0,150,2.6,1,1,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,10,17,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18,7,49,95870,0,0,339,0,0,0,0,0,0,0,170,2.1,2,2,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,10,17,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,14.8,6.8,59,96374,0,0,314,0,0,0,0,0,0,0,60,1,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,10,17,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14,7,63,95797,0,0,329,0,0,0,0,0,0,0,96,1,5,5,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,10,18,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,13,6,62,95778,0,0,321,0,0,0,0,0,0,0,311,1,4,4,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,18,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,12,5.9,66,96265,0,0,301,0,0,0,0,0,0,0,118,0.5,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,18,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,11,6,71,95740,0,0,317,0,0,0,0,0,0,0,311,0,6,6,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,18,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,10,5,71,95721,0,0,312,0,0,0,0,0,0,0,315,1,6,6,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,10,18,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.4,5,79,96281,0,0,285,0,0,0,0,0,0,0,10,1.5,0,0,7000,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,10,18,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,5,81,95683,0,0,284,0,0,0,0,0,0,0,39,1,0,0,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,10,18,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,5,76,95702,131,612,288,33,16,32,3677,0,3516,1039,20,1.5,0,0,6000,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,10,18,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13.8,5.7,58,96337,425,1378,327,210,320,111,23431,17428,12448,4046,60,1.5,5,5,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,18,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,17,5,45,95852,698,1378,332,460,606,153,53218,42015,17820,6595,312,1,2,2,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,18,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,19,6,43,95888,932,1378,338,675,800,134,81921,52330,16333,6680,260,2.1,1,1,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,18,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,21.9,6,36,96286,1111,1378,363,814,769,195,98621,54384,23734,9735,200,1.5,4,4,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,18,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,24,5,29,95977,1223,1378,369,937,849,184,115668,58290,22820,9403,180,3.6,3,3,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,18,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,27,3,21,96029,1260,1378,366,987,864,197,121833,60725,24509,10038,180,4.6,0,0,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2010,10,18,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,26.6,2.5,21,96169,1219,1378,388,829,569,326,98006,47436,38806,14910,210,6.2,6,6,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2010,10,18,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,26,1,20,96011,1104,1378,380,783,659,256,92972,52231,30541,12103,220,7.2,5,5,9900,77777,9,999999999,10,0,0,88,0.2,0,0 +2010,10,18,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,27,5,24,96029,922,1378,390,620,669,173,73774,47449,20702,8264,170,6.7,5,5,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,18,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,26,3,23,96011,685,1378,377,445,607,144,51648,41498,16743,6213,200,5.1,3,3,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2010,10,18,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,25,5,28,95994,410,1378,374,211,374,100,23754,19046,11296,3708,210,4.6,3,3,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,18,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,23,6,33,95959,116,1378,366,27,0,27,2641,0,2659,901,210,6.2,3,3,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,18,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,21.6,5.4,35,96252,0,544,385,0,0,0,0,0,0,0,170,4.6,9,9,9900,7500,9,999999999,16,0,0,88,0.2,0,0 +2010,10,18,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,20,6,40,95906,0,0,378,0,0,0,0,0,0,0,160,2.6,9,9,9900,7500,9,999999999,17,0,0,88,0.2,0,0 +2010,10,18,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19,6,43,95888,0,0,372,0,0,0,0,0,0,0,200,2.1,9,9,9900,7500,9,999999999,17,0,0,88,0.2,0,0 +2010,10,18,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17,7,52,95852,0,0,343,0,0,0,0,0,0,0,320,1.5,5,5,9900,7500,9,999999999,19,0,0,88,0.2,0,0 +2010,10,18,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,16,6,51,95834,0,0,332,0,0,0,0,0,0,0,191,1,3,3,9900,7500,9,999999999,17,0,0,88,0.2,0,0 +2010,10,19,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,13,6,62,95778,0,0,321,0,0,0,0,0,0,0,12,1,4,4,9900,7500,9,999999999,17,0,0,88,0.2,0,0 +2010,10,19,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,13.7,5.7,58,96193,0,0,321,0,0,0,0,0,0,0,2,1,3,3,9900,7500,9,999999999,17,0,0,88,0.2,0,0 +2010,10,19,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,10,5,71,95721,0,0,312,0,0,0,0,0,0,0,159,1,6,6,9900,7500,9,999999999,16,0,0,88,0.2,0,0 +2010,10,19,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,11,5,66,95740,0,0,314,0,0,0,0,0,0,0,28,1,5,5,9900,7500,9,999999999,15,0,0,88,0.2,0,0 +2010,10,19,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,9.3,4.6,72,96100,0,0,289,0,0,0,0,0,0,0,102,0.5,0,0,9900,7500,9,999999999,15,0,0,88,0.2,0,0 +2010,10,19,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,10,5,71,95721,0,0,312,0,0,0,0,0,0,0,40,2.1,6,6,9900,7500,9,999999999,16,0,0,88,0.2,0,0 +2010,10,19,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,11,5,66,95740,137,640,314,33,2,33,3676,0,3664,1085,20,1.5,5,5,9900,7500,9,999999999,15,0,0,88,0.2,0,0 +2010,10,19,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,15.3,5.6,52,96194,430,1379,331,222,295,130,24507,17637,14410,4506,268,0.5,4,4,9900,7500,9,999999999,16,0,0,88,0.2,0,0 +2010,10,19,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,18,6,45,95870,703,1379,338,464,647,134,54241,42473,15772,5963,33,1,2,2,9900,7500,9,999999999,17,0,0,88,0.2,0,0 +2010,10,19,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,21,6,38,95924,937,1379,341,679,758,165,81271,52492,19803,7982,62,1,0,0,9900,7500,9,999999999,17,0,0,88,0.2,0,0 +2010,10,19,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,23.2,4.7,30,96100,1116,1379,374,741,573,277,87411,45822,32910,12911,249,1,6,6,9900,7500,9,999999999,15,0,0,88,0.2,0,0 +2010,10,19,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,4,26,95994,1227,1379,358,954,853,196,117376,59832,24239,9940,160,4.1,0,0,9900,7500,9,999999999,14,0,0,88,0.2,0,0 +2010,10,19,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,3,23,96011,1264,1379,361,990,816,243,120454,60779,29744,11961,160,3.1,0,0,9900,7500,9,999999999,12,0,0,88,0.2,0,0 +2010,10,19,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,28,6,25,95927,1223,1379,412,637,249,417,73847,22551,48632,17640,160,4.6,8,8,9900,7500,9,999999999,17,0,0,88,0.2,0,0 +2010,10,19,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,27,6,26,96029,1108,1379,370,839,564,386,96277,51416,44648,16193,220,7.2,0,0,9900,7500,9,999999999,17,0,0,88,0.2,0,0 +2010,10,19,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,27,9,32,96029,925,1379,419,344,76,293,39166,6400,33552,12237,210,8.2,9,9,9900,7500,9,999999999,23,0,0,88,0.2,0,0 +2010,10,19,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,24.7,8.7,36,95909,689,1379,387,393,391,198,44353,29344,22437,7855,210,7.7,6,6,9900,7500,9,999999999,22,0,0,88,0.2,0,0 +2010,10,19,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,7,36,95959,414,1379,352,216,339,114,24016,18383,12766,4073,210,7.7,0,0,9900,7500,9,999999999,19,0,0,88,0.2,0,0 +2010,10,19,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,7,40,95924,120,1379,349,28,0,28,2752,0,2771,937,190,6.7,1,1,9900,7500,9,999999999,19,0,0,88,0.2,0,0 +2010,10,19,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19,5.9,42,96101,0,563,355,0,0,0,0,0,0,0,170,5.7,6,6,9900,7500,9,999999999,17,0,0,88,0.2,0,0 +2010,10,19,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,6,48,95852,0,0,334,0,0,0,0,0,0,0,150,4.1,2,2,9900,7500,9,999999999,17,0,0,88,0.2,0,0 +2010,10,19,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,6,51,95834,0,0,332,0,0,0,0,0,0,0,150,3.6,3,3,9900,7500,9,999999999,17,0,0,88,0.2,0,0 +2010,10,19,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15.3,6.5,56,96185,0,0,338,0,0,0,0,0,0,0,190,3.1,6,6,9900,7500,9,999999999,18,0,0,88,0.2,0,0 +2010,10,19,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,8,67,95797,0,0,330,0,0,0,0,0,0,0,150,3.6,5,5,9900,7500,9,999999999,21,0,0,88,0.2,0,0 +2010,10,20,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,8,72,95778,0,0,329,0,0,0,0,0,0,0,160,3.6,6,6,9900,7500,9,999999999,21,0,0,88,0.2,0,0 +2010,10,20,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11.9,8.2,78,96225,0,0,324,0,0,0,0,0,0,0,170,3.6,6,6,9900,7500,9,999999999,21,0,0,88,0.2,0,0 +2010,10,20,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,11,9,87,95740,0,0,337,0,0,0,0,0,0,0,150,2.1,9,9,9900,7500,9,999999999,23,0,0,88,0.2,0,0 +2010,10,20,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,11,9,87,95740,0,0,337,0,0,0,0,0,0,0,190,4.1,9,9,9900,7500,9,999999999,23,0,0,88,0.2,0,0 +2010,10,20,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,10,9,93,95721,0,0,341,0,0,0,0,0,0,0,150,3.6,10,10,9900,7500,9,999999999,23,0,0,88,0.2,0,0 +2010,10,20,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,9,93,95721,0,0,332,0,0,0,0,0,0,0,160,4.6,9,9,7000,90,9,999999999,23,0,0,88,0.2,0,0 +2010,10,20,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,9,93,95721,142,668,332,20,0,20,1906,0,1919,734,190,4.6,9,9,5000,90,9,999999999,23,0,0,88,0.2,0,0 +2010,10,20,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11.8,8.6,81,96403,436,1380,340,120,12,116,13391,663,13019,4231,74,1,9,9,8000,7500,9,999999999,22,0,0,88,0.2,0,0 +2010,10,20,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14,9,72,95797,709,1380,334,408,348,229,45651,27812,25812,8794,14,1,6,6,9900,7500,9,999999999,23,0,0,88,0.2,0,0 +2010,10,20,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,9,59,95852,942,1380,343,661,674,201,77817,48717,23785,9399,210,1.5,4,4,9900,7500,9,999999999,23,0,0,88,0.2,0,0 +2010,10,20,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18.2,8,51,96399,1121,1380,353,741,565,282,87212,44546,33407,13092,190,2.1,6,6,9900,7500,9,999999999,21,0,0,88,0.2,0,0 +2010,10,20,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,8,43,95924,1232,1380,350,952,845,198,116875,57903,24440,10029,190,2.6,1,1,9900,7500,9,999999999,21,0,0,88,0.2,0,0 +2010,10,20,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,22,9,43,95942,1268,1380,356,984,848,206,121047,57871,25400,10395,170,4.6,1,1,9900,7500,9,999999999,23,0,0,88,0.2,0,0 +2010,10,20,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,21.4,8.6,44,96315,1227,1380,370,827,553,336,97460,45078,39815,15252,210,5.7,6,6,9900,7500,9,999999999,22,0,0,88,0.2,0,0 +2010,10,20,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,9,46,95924,1111,1380,356,837,808,186,101542,55209,22688,9355,190,6.2,2,2,9900,7500,9,999999999,23,0,0,88,0.2,0,0 +2010,10,20,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,9,49,95906,929,1380,351,666,722,180,78900,50374,21380,8532,210,5.7,2,2,9900,7500,9,999999999,23,0,0,88,0.2,0,0 +2010,10,20,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,21,9.5,48,96222,693,1380,379,304,156,226,33970,12365,25380,8580,180,5.7,8,8,9900,7500,9,999999999,24,0,0,88,0.2,0,0 +2010,10,20,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,19,10,56,95888,418,1380,351,214,292,125,23585,16344,13891,4336,220,6.2,3,3,9900,7500,9,999999999,25,0,0,88,0.2,0,0 +2010,10,20,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17,8,55,95852,124,1380,344,28,0,28,2698,0,2716,933,210,6.2,5,5,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,10,20,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15.6,8.9,64,96408,0,582,336,0,0,0,0,0,0,0,200,4.6,4,4,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,10,20,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,9,67,95815,0,0,336,0,0,0,0,0,0,0,150,3.6,5,5,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,10,20,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,9,77,95778,0,0,334,0,0,0,0,0,0,0,150,3.6,7,7,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,10,20,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,12.1,9.2,82,96475,0,0,305,0,0,0,0,0,0,0,160,3.1,0,0,9900,77777,9,999999999,24,0,0,88,0.2,0,0 +2010,10,20,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,11,9,87,95740,0,0,337,0,0,0,0,0,0,0,160,3.1,9,9,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,10,21,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,10,100,95721,0,0,343,0,0,0,0,0,0,0,150,3.6,10,10,4000,30,9,999999999,26,0,0,88,0.2,0,0 +2010,10,21,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,10,94,95740,0,0,338,0,0,0,0,0,0,0,140,1.5,9,9,7000,750,9,999999999,26,0,0,88,0.2,0,0 +2010,10,21,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,9,87,95740,0,0,337,0,0,0,0,0,0,0,160,1.5,9,9,7000,960,9,999999999,23,0,0,88,0.2,0,0 +2010,10,21,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,10,100,95721,0,0,343,0,0,0,0,0,0,0,170,2.1,10,10,4000,60,9,999999999,26,0,0,88,0.2,0,0 +2010,10,21,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.7,9.6,93,96335,0,0,345,0,0,0,0,0,0,0,140,2.1,10,10,6000,90,9,999999999,25,0,0,88,0.2,0,0 +2010,10,21,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,10,100,95721,0,0,343,0,0,0,0,0,0,0,160,2.1,10,10,4000,120,9,999999999,26,0,0,88,0.2,0,0 +2010,10,21,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,9,93,95721,148,695,341,13,0,13,1242,0,1251,508,21,0.5,10,10,3500,90,0,919999999,23,0,0,88,0.2,0,0 +2010,10,21,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11.1,9.2,88,96418,441,1381,347,74,0,74,7408,0,7467,3051,145,1,10,10,5000,150,0,919999999,24,0,0,88,0.2,0,0 +2010,10,21,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,9,82,95759,714,1381,351,148,0,148,15098,0,15229,6492,285,1,10,10,5000,210,0,919999999,23,0,0,88,0.2,0,0 +2010,10,21,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,10,77,95797,947,1381,352,353,55,315,40117,4753,36025,13010,291,0.5,9,9,7000,330,0,919999999,25,0,0,88,0.2,0,0 +2010,10,21,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16.4,9.2,62,96309,1125,1381,324,851,718,266,100623,54855,31634,12531,17,1,0,0,8000,77777,0,919999999,23,0,0,88,0.2,0,0 +2010,10,21,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,9,49,95906,1236,1381,340,955,800,239,115609,57494,29064,11732,220,2.6,0,0,8000,77777,0,919999999,23,0,0,88,0.2,0,0 +2010,10,21,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,22,9,43,95942,1272,1381,356,988,802,249,119807,57979,30397,12218,220,1.5,1,1,9900,77777,0,919999999,23,0,0,88,0.2,0,0 +2010,10,21,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,24.2,6.1,31,96089,1231,1381,363,954,800,241,115482,58891,29355,11821,160,2.6,1,1,9900,77777,0,919999999,17,0,0,88,0.2,0,0 +2010,10,21,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,26,7,30,96011,1115,1381,382,834,849,148,103022,55433,18424,7700,140,4.6,3,3,9900,77777,0,919999999,18,0,0,88,0.2,0,0 +2010,10,21,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,8,34,95994,933,1381,362,673,765,157,80700,51501,18863,7633,210,6.2,0,0,9900,77777,0,919999999,20,0,0,88,0.2,0,0 +2010,10,21,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,23.7,9.3,40,95967,696,1381,379,424,487,178,48337,34821,20432,7358,210,7.7,5,5,9900,7500,0,919999999,23,0,0,88,0.2,0,0 +2010,10,21,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,22,10,46,95942,422,1381,371,205,309,111,22907,16102,12437,4033,220,7.7,5,5,9900,7500,0,919999999,25,0,0,88,0.2,0,0 +2010,10,21,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,10,53,95906,128,1381,356,31,4,31,3450,0,3416,1012,210,5.7,3,3,9900,7500,0,919999999,25,0,0,88,0.2,0,0 +2010,10,21,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17.6,9.5,59,96076,0,601,346,0,0,0,0,0,0,0,190,5.1,4,4,9900,7500,9,999999999,24,0,0,88,0.2,0,0 +2010,10,21,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,9,63,95834,0,0,341,0,0,0,0,0,0,0,150,4.6,5,5,9900,7500,9,999999999,23,0,0,88,0.2,0,0 +2010,10,21,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,9,67,95815,0,0,336,0,0,0,0,0,0,0,160,4.1,5,5,9900,7500,9,999999999,23,0,0,88,0.2,0,0 +2010,10,21,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,14.1,8.8,70,96134,0,0,327,0,0,0,0,0,0,0,150,4.1,3,3,9900,7500,9,999999999,23,0,0,88,0.2,0,0 +2010,10,21,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,9,72,95797,0,0,334,0,0,0,0,0,0,0,160,3.6,6,6,9900,7500,9,999999999,23,0,0,88,0.2,0,0 +2010,10,22,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,9,77,95778,0,0,334,0,0,0,0,0,0,0,160,3.6,7,7,9900,7500,9,999999999,23,0,0,88,0.2,0,0 +2010,10,22,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,12,8,76,96104,0,0,316,0,0,0,0,0,0,0,160,3.1,3,3,9900,7500,9,999999999,21,0,0,88,0.2,0,0 +2010,10,22,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,11,8,82,95740,0,0,329,0,0,0,0,0,0,0,160,2.6,8,8,9900,7500,9,999999999,21,0,0,88,0.2,0,0 +2010,10,22,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,10,8,87,95721,0,0,331,0,0,0,0,0,0,0,150,1.5,9,9,9900,7500,9,999999999,21,0,0,88,0.2,0,0 +2010,10,22,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,10.3,7.6,83,95727,0,0,313,0,0,0,0,0,0,0,198,1.8,5,5,9900,7500,9,999999999,20,0,0,88,0.2,0,0 +2010,10,22,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,9,7,87,95702,0,0,325,0,0,0,0,0,0,0,240,2.1,9,9,9900,7500,9,999999999,19,0,0,88,0.2,0,0 +2010,10,22,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,8,93,95702,153,721,303,43,48,37,4718,0,4141,1231,150,2.1,3,3,5000,77777,0,999999999,21,0,0,88,0.2,0,0 +2010,10,22,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,8,87,95721,446,1381,312,224,333,117,25075,18571,13091,4292,180,2.6,5,5,4000,77777,0,999999999,21,0,0,88,0.2,0,0 +2010,10,22,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13,9,77,95778,719,1381,327,442,502,181,50593,36149,20819,7572,200,2.6,5,5,6000,77777,0,999999999,23,0,0,88,0.2,0,0 +2010,10,22,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,9,63,95834,952,1381,322,689,737,182,81873,51394,21677,8696,170,2.1,0,0,6000,77777,0,999999999,23,0,0,88,0.2,0,0 +2010,10,22,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,9.4,62,96182,1130,1381,348,746,561,287,87764,44043,33982,13297,160,4.6,6,6,6000,77777,0,999999999,24,0,0,88,0.2,0,0 +2010,10,22,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,10,63,95852,1240,1381,327,957,835,207,117096,56979,25499,10436,170,6.7,0,0,8000,77777,0,999999999,25,0,0,88,0.2,0,0 +2010,10,22,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,9,63,95834,1276,1381,322,992,780,272,119530,57949,32952,13109,170,8.7,0,0,8000,77777,0,999999999,23,0,0,88,0.2,0,0 +2010,10,22,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16,9,63,96188,1235,1381,353,641,244,423,74194,21836,49297,17855,160,7.7,8,8,8000,77777,0,999999999,23,0,0,88,0.2,0,0 +2010,10,22,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,9,63,95834,1119,1381,322,845,562,390,96865,50435,45008,16344,160,7.2,0,0,8000,77777,0,999999999,23,0,0,88,0.2,0,0 +2010,10,22,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,9,67,95815,936,1381,356,348,55,311,39579,4776,35531,12802,170,7.7,9,9,8000,7500,0,999999999,23,0,0,88,0.2,0,0 +2010,10,22,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14.1,8.9,71,96191,700,1381,352,237,19,227,26489,1526,25542,8663,170,7.7,9,9,8000,7500,0,999999999,23,0,0,88,0.2,0,0 +2010,10,22,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,9,77,95778,425,1381,346,115,8,113,12873,405,12663,4100,160,6.2,9,9,8000,7500,0,999999999,23,0,0,88,0.2,0,0 +2010,10,22,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,9,82,95759,132,1381,341,17,0,17,1658,0,1669,643,190,4.1,9,9,8000,7500,0,999999999,23,0,0,88,0.2,0,0 +2010,10,22,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11.5,8.4,81,96312,0,621,338,0,0,0,0,0,0,0,160,3.1,9,9,8000,7500,9,999999999,22,0,0,88,0.2,0,0 +2010,10,22,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,11,8,82,95740,0,0,317,0,0,0,0,0,0,0,160,3.6,5,5,8000,7500,9,999999999,21,0,0,88,0.2,0,0 +2010,10,22,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,11,8,82,95740,0,0,317,0,0,0,0,0,0,0,160,2.6,5,5,8000,7500,9,999999999,21,0,0,88,0.2,0,0 +2010,10,22,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10.7,8,83,96335,0,0,334,0,0,0,0,0,0,0,160,3.1,9,9,8000,5400,9,999999999,21,0,0,88,0.2,0,0 +2010,10,22,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,8,87,95721,0,0,331,0,0,0,0,0,0,0,160,3.1,9,9,8000,750,9,999999999,21,0,0,88,0.2,0,0 +2010,10,23,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,7,82,95721,0,0,330,0,0,0,0,0,0,0,160,2.1,9,9,8000,750,9,999999999,19,0,0,88,0.2,0,0 +2010,10,23,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,7.5,84,96274,0,0,330,0,0,0,0,0,0,0,150,1.5,9,9,8000,600,9,999999999,20,0,0,88,0.2,0,0 +2010,10,23,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,11,8,82,95740,0,0,336,0,0,0,0,0,0,0,84,0.5,9,9,8000,600,9,999999999,21,0,0,88,0.2,0,0 +2010,10,23,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,11,8,82,95740,0,0,345,0,0,0,0,0,0,0,94,1,10,10,8000,600,9,999999999,21,0,0,88,0.2,0,0 +2010,10,23,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10.7,7.8,82,96155,0,0,343,0,0,0,0,0,0,0,220,2.6,10,10,8000,600,9,999999999,21,0,0,88,0.2,0,0 +2010,10,23,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,8,87,95721,0,0,340,0,0,0,0,0,0,0,140,2.1,10,10,8000,600,9,999999999,21,0,0,88,0.2,0,0 +2010,10,23,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,8,87,95721,159,748,340,14,0,14,1402,0,1412,572,160,3.1,10,10,8000,750,9,999999999,21,0,0,88,0.2,0,0 +2010,10,23,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,7.7,80,96274,452,1382,345,77,0,77,7691,0,7752,3168,200,2.1,10,10,8000,750,9,999999999,20,0,0,88,0.2,0,0 +2010,10,23,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,12.3,7.8,74,96121,724,1382,325,408,321,240,45659,26381,26988,9159,140,2.1,6,6,9333,750,9,999999999,21,0,0,88,0.2,0,0 +2010,10,23,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,13.7,7.9,68,95968,957,1382,329,635,545,258,73463,43425,30045,11430,201,2.1,5,5,8666,750,9,999999999,21,0,0,88,0.2,0,0 +2010,10,23,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,8,63,95815,1134,1382,355,444,28,421,50744,2622,48437,17214,190,2.1,9,9,8000,4500,9,999999999,21,0,0,88,0.2,0,0 +2010,10,23,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,8,63,95815,1245,1382,355,497,85,421,57731,7635,49170,17852,130,2.6,9,9,8000,5400,9,999999999,21,0,0,88,0.2,0,0 +2010,10,23,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,7,46,95888,1280,1382,353,929,607,368,109569,51063,43635,16465,200,3.1,5,5,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,10,23,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19,6,43,95888,1239,1382,352,894,714,255,107899,53458,30927,12375,170,4.1,5,5,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,23,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,21,7,40,95924,1123,1382,363,792,694,229,94790,51132,27535,11121,160,5.1,5,5,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,10,23,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,21,7,40,95924,940,1382,363,633,552,258,73120,44446,29958,11318,180,5.1,5,5,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,10,23,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,21.3,5.2,35,96114,704,1382,383,240,80,199,27188,6144,22697,7990,160,5.1,9,9,8000,4500,9,999999999,16,0,0,88,0.2,0,0 +2010,10,23,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,21,7,40,95924,429,1382,363,212,256,132,23340,15324,14628,4541,220,7.2,5,5,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,10,23,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19,6,43,95888,136,1382,372,18,0,18,1754,0,1766,677,220,6.2,9,9,8000,4500,9,999999999,17,0,0,88,0.2,0,0 +2010,10,23,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16.6,5.8,49,96228,0,640,360,0,0,0,0,0,0,0,200,5.1,9,9,8000,4500,9,999999999,17,0,0,88,0.2,0,0 +2010,10,23,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16,6,51,95834,0,0,337,0,0,0,0,0,0,0,200,3.1,5,5,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,23,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,6,55,95815,0,0,333,0,0,0,0,0,0,0,140,2.1,5,5,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,23,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,13.1,6.2,63,96267,0,0,306,0,0,0,0,0,0,0,160,2.6,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,23,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,7,71,95759,0,0,323,0,0,0,0,0,0,0,150,2.6,6,6,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,10,24,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,11,6,71,95740,0,0,317,0,0,0,0,0,0,0,270,1.5,6,6,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,24,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,9.4,5.5,77,96196,0,0,290,0,0,0,0,0,0,0,140,0,0,0,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,10,24,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,5,81,95683,0,0,284,0,0,0,0,0,0,0,20,1.5,0,0,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,10,24,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,5,81,95683,0,0,284,0,0,0,0,0,0,0,20,1.5,0,0,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,10,24,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.4,5.1,85,96148,0,0,281,0,0,0,0,0,0,0,10,1.5,0,0,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,10,24,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,5,87,95663,0,0,280,0,0,0,0,0,0,0,100,0,0,0,7000,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,10,24,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,5,76,95702,164,774,288,49,73,40,5385,0,4444,1322,127,1,0,0,7000,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,10,24,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,13.5,6.5,63,96255,457,1383,308,250,434,106,28235,23566,12071,4071,100,1,0,0,7000,77777,9,999999999,18,0,0,88,0.2,0,0 +2010,10,24,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,16,6,51,95834,729,1383,332,483,651,140,56526,43452,16507,6273,102,1,3,3,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,24,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,18,7,49,95870,961,1383,339,697,804,138,84694,52527,16858,6926,264,1,2,2,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,10,24,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,20.3,6,39,96200,1138,1383,338,867,795,212,104631,57459,25776,10501,290,1,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,24,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,6,33,95959,1249,1383,350,971,802,247,117530,59308,30040,12069,150,3.1,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,24,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,24,6,31,95977,1284,1383,371,991,804,245,120625,58863,29969,12057,180,4.6,3,3,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,24,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,25,5,28,95994,1242,1383,374,954,802,234,115902,58730,28573,11541,200,5.7,3,3,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,24,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,25,6,30,95994,1126,1383,376,845,855,149,104511,56188,18514,7735,230,6.7,3,3,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,24,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,25,8,34,95994,944,1383,378,674,778,144,81444,51022,17433,7119,220,7.2,3,3,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2010,10,24,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,24.2,7.8,35,96099,707,1383,374,460,631,138,53671,41247,16144,6095,220,7.2,3,3,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2010,10,24,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,23,7,36,95959,433,1383,367,227,392,105,25586,20562,11853,3929,220,7.2,3,3,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,10,24,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,20,5,37,95906,140,1383,350,36,25,34,4027,0,3754,1111,210,6.2,3,3,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,24,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,18.6,3.4,36,96198,0,660,333,0,0,0,0,0,0,0,190,5.1,1,1,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,10,24,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,5,45,95852,0,0,332,0,0,0,0,0,0,0,150,4.6,2,2,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,24,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,5,48,95834,0,0,328,0,0,0,0,0,0,0,150,3.6,2,2,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,24,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,5,51,95815,0,0,327,0,0,0,0,0,0,0,160,3.1,3,3,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,24,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,5,55,95797,0,0,322,0,0,0,0,0,0,0,160,3.1,3,3,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,25,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,4,54,95778,0,0,317,0,0,0,0,0,0,0,160,2.1,3,3,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,10,25,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,11,4,62,96189,0,0,301,0,0,0,0,0,0,0,348,0,1,1,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,10,25,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,10,4,66,95721,0,0,308,0,0,0,0,0,0,0,140,1,5,5,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,10,25,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,8,4,76,95683,0,0,306,0,0,0,0,0,0,0,350,1,7,7,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,10,25,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7.8,4.5,80,96061,0,0,288,0,0,0,0,0,0,0,100,0,1,1,9000,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,25,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,4,76,95683,0,0,283,0,0,0,0,0,0,0,87,0.5,0,0,5000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,10,25,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,5,76,95702,169,799,288,51,80,41,5661,0,4589,1368,184,1,0,0,4000,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,10,25,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,14.4,5.3,54,96083,462,1384,324,251,423,110,28320,23618,12419,4178,213,0.5,3,3,4000,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,10,25,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,17,6,48,95852,733,1384,337,484,641,144,56570,43242,16945,6430,250,0.5,3,3,4000,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,25,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,21,6,38,95924,966,1384,356,696,783,150,84141,52592,18185,7435,30,1,3,3,4000,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,25,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,23,6,33,95959,1143,1384,350,871,857,163,107230,57498,20221,8408,95,2.8,0,0,4000,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,25,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,6,30,95994,1253,1384,360,974,803,248,117972,59393,30176,12118,180,4.6,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,25,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,4,24,96011,1288,1384,362,1010,805,262,122486,60794,31916,12735,170,5.1,0,0,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,10,25,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,26.8,3.6,22,95878,1246,1384,382,959,803,237,116523,59407,28927,11664,220,7.2,3,3,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,10,25,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,27,5,24,96029,1130,1384,369,860,795,211,103754,57781,25596,10427,210,6.7,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,25,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,27,7,28,96029,947,1384,371,687,810,133,83569,52420,16219,6657,220,7.2,0,0,9900,77777,9,999999999,18,0,0,88,0.2,0,0 +2010,10,25,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,25.7,7.5,31,95803,711,1384,381,463,632,139,54045,41536,16258,6141,220,8.2,3,3,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,10,25,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,24,8,36,95977,437,1384,358,233,408,104,26212,21198,11752,3918,220,6.7,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2010,10,25,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,8,43,95924,144,1384,350,38,34,35,4247,0,3862,1145,210,6.2,1,1,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,10,25,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,18.6,7.9,50,95952,0,679,332,0,0,0,0,0,0,0,180,4.1,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2010,10,25,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,6,51,95834,0,0,332,0,0,0,0,0,0,0,150,4.6,3,3,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,25,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,6,55,95815,0,0,328,0,0,0,0,0,0,0,160,4.6,3,3,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,25,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,14.5,4.9,52,96009,0,0,311,0,0,0,0,0,0,0,140,3.6,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,25,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,5,55,95797,0,0,322,0,0,0,0,0,0,0,160,2.6,3,3,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,26,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,13,4,54,95778,0,0,317,0,0,0,0,0,0,0,173,1,3,3,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,10,26,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,11,5.1,67,95943,0,0,296,0,0,0,0,0,0,0,160,2.1,0,0,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,10,26,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,11,5,66,95740,0,0,314,0,0,0,0,0,0,0,160,1,5,5,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,26,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,9,5,76,95702,0,0,311,0,0,0,0,0,0,0,295,0.5,7,7,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,10,26,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,5,76,95702,0,0,288,0,0,0,0,0,0,0,113,0,0,0,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,10,26,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,5,81,95683,0,0,284,0,0,0,0,0,0,0,313,0.5,0,0,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,10,26,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,5,66,95740,175,825,296,54,54,47,5906,137,5173,1505,215,0,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,26,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,13.8,5.5,57,95930,467,1385,330,225,286,129,25125,17372,14441,4695,260,1,6,6,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,10,26,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,17,6,48,95852,738,1385,334,493,627,159,57202,43724,18526,6950,283,1,2,2,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,26,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,7,43,95906,970,1385,344,707,816,136,86186,53027,16594,6836,130,1.5,1,1,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,10,26,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,21.1,7.5,41,95779,1147,1385,343,872,797,213,105317,56929,25819,10525,180,4.6,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2010,10,26,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,22,6,35,95942,1256,1385,346,978,803,249,118399,59472,30302,12164,160,6.7,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,26,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,24,7,34,95977,1291,1385,356,1009,805,258,122378,59489,31500,12604,180,7.7,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,10,26,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21.4,8,42,95737,1249,1385,360,956,879,163,119270,57135,20379,8458,210,10.8,3,3,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,10,26,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,8,43,95924,1133,1385,350,859,796,207,103637,56378,25172,10285,220,9.8,1,1,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,10,26,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,7,43,95906,951,1385,344,689,739,182,81934,52376,21722,8697,210,6.7,1,1,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,10,26,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19.4,7.9,47,95777,715,1385,359,412,415,198,46770,31287,22578,8022,150,7.2,6,6,9900,7500,9,999999999,20,0,0,88,0.2,0,0 +2010,10,26,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18,8,52,95870,441,1385,344,234,401,106,26291,21119,11987,3991,150,5.7,3,3,9900,7500,9,999999999,21,0,0,88,0.2,0,0 +2010,10,26,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,7,55,95834,148,1385,333,40,36,36,4391,0,3976,1179,170,7.2,3,3,9900,7500,9,999999999,19,0,0,88,0.2,0,0 +2010,10,26,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,12.4,6.6,68,95932,0,699,317,0,0,0,0,0,0,0,200,8.7,3,3,9900,7500,9,999999999,18,0,0,88,0.2,0,0 +2010,10,26,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,6,67,95759,0,0,314,0,0,0,0,0,0,0,180,5.1,3,3,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,26,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,6,71,95740,0,0,333,0,0,0,0,0,0,0,150,5.1,9,9,9900,1500,9,999999999,17,0,0,88,0.2,0,0 +2010,10,26,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9.8,6.1,78,96185,0,0,328,0,0,0,0,0,0,0,180,6.7,9,9,9900,1500,9,999999999,17,0,0,88,0.2,0,0 +2010,10,26,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,10,6,76,95721,0,0,310,0,0,0,0,0,0,0,150,3.1,5,5,9900,1500,9,999999999,17,0,0,88,0.2,0,0 +2010,10,27,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,6,76,95721,0,0,329,0,0,0,0,0,0,0,120,1.5,9,9,8000,900,9,999999999,17,0,0,88,0.2,0,0 +2010,10,27,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.4,5.7,78,96187,0,0,307,0,0,0,0,0,0,0,250,1.5,5,5,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,27,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,5,71,95721,0,0,309,0,0,0,0,0,0,0,150,3.6,5,5,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,10,27,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,5,71,95721,0,0,328,0,0,0,0,0,0,0,120,2.6,9,9,8000,3000,9,999999999,16,0,0,88,0.2,0,0 +2010,10,27,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9.6,5.5,76,96285,0,0,326,0,0,0,0,0,0,0,240,1.5,9,9,8000,2700,9,999999999,16,0,0,88,0.2,0,0 +2010,10,27,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,6,76,95721,0,0,338,0,0,0,0,0,0,0,138,1,10,10,8000,2700,9,999999999,17,0,0,88,0.2,0,0 +2010,10,27,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,6,81,95702,180,850,324,29,0,29,2832,0,2852,1070,20,1.5,9,9,7000,2400,9,999999999,17,0,0,88,0.2,0,0 +2010,10,27,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11.5,6,69,96388,471,1385,336,135,17,129,15075,1049,14480,4727,300,2.1,9,9,7000,2100,9,999999999,17,0,0,88,0.2,0,0 +2010,10,27,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,13,6,62,95778,742,1385,324,464,461,217,52557,36424,24684,8724,345,1,5,5,7000,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,27,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,6,55,95815,974,1385,333,663,649,206,78317,48073,24514,9725,280,1.5,5,5,7000,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,27,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,16,5,48,95834,1151,1385,336,818,671,261,97371,52006,31272,12421,60,2.6,5,5,7000,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,27,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,18,3,37,95870,1260,1385,338,973,863,188,120476,59929,23351,9598,16,1,3,3,7000,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,10,27,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19,4,37,95888,1295,1385,344,1004,806,251,122176,59974,30671,12301,190,3.6,3,3,7000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,10,27,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,20.2,4.6,36,96142,1253,1385,353,944,808,213,115623,57625,26292,10710,200,3.1,4,4,7000,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,27,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,21,6,38,95924,1137,1385,361,805,673,253,95814,51483,30271,12074,220,7.2,5,5,7000,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,27,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,21,6,38,95924,954,1385,361,646,646,201,76237,47576,23867,9444,210,7.2,5,5,7000,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,27,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18.7,7.4,48,96058,718,1385,352,443,525,171,50862,37289,19698,7232,220,9.3,5,5,7000,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,10,27,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18,8,52,95870,444,1385,349,222,330,116,24834,18336,13049,4268,220,8.7,5,5,7000,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,10,27,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16,8,59,95834,152,1385,335,42,43,37,4601,0,4088,1214,220,6.7,3,3,7000,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,10,27,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15.4,7.2,58,96092,0,720,331,0,0,0,0,0,0,0,200,5.1,3,3,7000,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,10,27,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,7,63,95797,0,0,324,0,0,0,0,0,0,0,160,3.1,3,3,7000,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,10,27,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,7,67,95778,0,0,325,0,0,0,0,0,0,0,170,4.1,5,5,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,10,27,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,12.3,7,70,96044,0,0,304,0,0,0,0,0,0,0,160,2.6,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,10,27,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,7,71,95759,0,0,323,0,0,0,0,0,0,0,170,2.6,6,6,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,10,28,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,11,6,71,95740,0,0,317,0,0,0,0,0,0,0,250,1.5,6,6,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,28,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,9.5,6.1,79,95830,0,0,291,0,0,0,0,0,0,0,290,1,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,28,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,8,5,81,95683,0,0,312,0,0,0,0,0,0,0,241,0.5,8,8,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,10,28,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,9,6,81,95702,0,0,317,0,0,0,0,0,0,0,324,0.5,8,8,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,28,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8.6,5.7,82,95831,0,0,304,0,0,0,0,0,0,0,190,2.1,5,5,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,28,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8,6,87,95683,0,0,319,0,0,0,0,0,0,0,220,1.5,9,9,9900,5400,9,999999999,17,0,0,88,0.2,0,0 +2010,10,28,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,9,6,81,95702,185,874,306,55,42,49,6009,214,5414,1585,173,0.5,5,5,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,28,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10.8,7.6,81,95968,476,1386,334,136,16,131,15224,976,14669,4795,160,3.6,9,9,9900,5400,9,999999999,20,0,0,88,0.2,0,0 +2010,10,28,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,8,76,95759,747,1386,340,258,21,247,28956,1698,27872,9520,150,2.1,9,9,9900,5400,9,999999999,21,0,0,88,0.2,0,0 +2010,10,28,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,13,8,72,95778,978,1386,345,368,57,328,41943,4981,37619,13596,276,1,9,9,9900,5400,9,999999999,21,0,0,88,0.2,0,0 +2010,10,28,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15.3,7.2,58,95863,1155,1386,339,768,535,323,89893,44288,38000,14555,250,1,6,6,9900,5400,9,999999999,19,0,0,88,0.2,0,0 +2010,10,28,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17,7,52,95852,1264,1386,343,914,703,274,109988,53271,33136,13150,180,3.6,5,5,9900,5400,9,999999999,19,0,0,88,0.2,0,0 +2010,10,28,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,18,7,49,95870,1299,1386,348,945,611,373,111482,51444,44313,16692,190,6.7,5,5,9900,5400,9,999999999,19,0,0,88,0.2,0,0 +2010,10,28,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,20,7,43,95906,1256,1386,379,504,109,405,58726,9639,47519,17456,190,6.7,9,9,9900,4500,9,999999999,19,0,0,88,0.2,0,0 +2010,10,28,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,21,3,30,95924,1140,1386,358,811,430,458,92304,42565,52430,18053,170,3.6,5,5,9900,4500,9,999999999,12,0,0,88,0.2,0,0 +2010,10,28,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,20,0,26,95906,958,1386,370,363,55,325,41358,5038,37234,13325,290,8.2,9,9,9900,2100,9,999999999,9,0,0,88,0.2,0,0 +2010,10,28,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18.1,0.5,31,95744,722,1386,361,250,56,220,28190,4601,25017,8661,280,4.1,9,9,9900,2400,9,999999999,10,0,0,88,0.2,0,0 +2010,10,28,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,4,48,95815,448,1386,350,125,11,122,13999,624,13674,4426,250,6.7,9,9,9900,2400,9,999999999,14,0,0,88,0.2,0,0 +2010,10,28,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,5,71,95721,156,1386,328,23,0,23,2214,0,2229,845,180,9.3,9,9,9900,1500,9,999999999,16,0,0,88,0.2,0,0 +2010,10,28,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9.8,4.5,70,96119,0,740,326,0,0,0,0,0,0,0,190,8.2,9,9,9900,1500,9,999999999,15,0,0,88,0.2,0,0 +2010,10,28,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9,5,76,95702,0,0,323,0,0,0,0,0,0,0,180,6.7,9,9,9900,1500,9,999999999,16,0,0,88,0.2,0,0 +2010,10,28,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,6,93,95663,0,0,315,0,0,0,0,0,0,0,180,7.2,9,9,7000,1200,0,919999999,17,0,0,88,0.2,5,0 +2010,10,28,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6.3,5.3,93,95650,0,0,320,0,0,0,0,0,0,0,150,4.1,10,10,7000,900,0,919999999,16,0,0,88,0.2,4.1,0 +2010,10,28,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,4,87,95644,0,0,317,0,0,0,0,0,0,0,80,6.2,10,10,6000,900,0,919999999,14,0,0,88,0.2,0,0 +2010,10,29,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,6,3,81,95644,0,0,307,0,0,0,0,0,0,0,101,2.1,9,9,6000,2400,0,919999999,13,0,0,88,0.2,0,0 +2010,10,29,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,5.8,3.5,85,96362,0,0,307,0,0,0,0,0,0,0,210,2.1,9,9,6000,2400,0,919999999,14,0,0,88,0.2,0,0 +2010,10,29,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,6,3,81,95644,0,0,307,0,0,0,0,0,0,0,296,0,9,9,6000,1500,0,919999999,13,0,0,88,0.2,0,0 +2010,10,29,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,5,4,93,95624,0,0,304,0,0,0,0,0,0,0,40,2.1,9,9,6000,1500,0,919999999,14,0,0,88,0.2,0,0 +2010,10,29,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,5.2,3,86,96331,0,0,287,0,0,0,0,0,0,0,10,1.5,5,5,6000,77777,0,919999999,13,0,0,88,0.2,0,0 +2010,10,29,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,5,3,87,95624,0,0,286,0,0,0,0,0,0,0,210,2.1,5,5,6000,77777,0,919999999,13,0,0,88,0.2,0,0 +2010,10,29,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,4,87,95644,189,898,287,61,64,52,6659,542,5713,1660,220,3.1,3,3,8000,77777,0,919999999,14,0,0,88,0.2,0,0 +2010,10,29,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,8,4.2,77,96556,481,1387,318,139,17,133,15535,1092,14925,4871,210,2.1,9,9,8000,6000,0,919999999,14,0,0,88,0.2,0,0 +2010,10,29,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10,4,66,95721,751,1387,326,262,21,250,29395,1804,28261,9626,140,2.1,9,9,8000,1500,0,919999999,14,0,0,88,0.2,0,0 +2010,10,29,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9,4,71,95702,982,1387,322,372,68,324,42541,6033,37288,13526,180,4.6,9,9,8000,1500,0,919999999,14,0,0,88,0.2,0,0 +2010,10,29,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9.2,3.2,66,96759,1158,1387,322,458,51,416,52692,4784,48133,17223,240,2.6,9,9,8000,1800,0,919999999,13,0,0,88,0.2,0,0 +2010,10,29,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,2,54,95740,1268,1387,329,513,85,435,59611,7870,50964,18336,10,2.6,9,9,8000,600,0,919999999,11,0,0,88,0.2,0,0 +2010,10,29,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,12,3,54,95759,1302,1387,316,953,544,443,111171,50154,52010,18723,10,7.2,5,5,8000,600,0,919999999,13,0,0,88,0.2,0,0 +2010,10,29,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12.6,2,48,96739,1260,1387,336,509,110,409,59406,9973,48070,17586,320,4.6,9,9,8000,1200,0,919999999,12,0,0,88,0.2,0,0 +2010,10,29,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,14,3,47,95797,1144,1387,325,814,598,320,95296,50651,37759,14443,350,3.6,5,5,8000,1200,0,919999999,13,0,0,88,0.2,0,0 +2010,10,29,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,1,39,95815,961,1387,327,656,639,214,77300,49196,25289,9926,270,2.6,5,5,8000,77777,0,919999999,10,0,0,88,0.2,0,0 +2010,10,29,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15.3,0.6,37,96639,726,1387,328,453,465,210,51374,37233,23924,8411,310,2.1,5,5,8000,77777,0,919999999,10,0,0,88,0.2,0,0 +2010,10,29,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,1,39,95815,452,1387,327,230,292,135,25508,18547,15016,4736,230,4.6,5,5,8000,77777,0,919999999,10,0,0,88,0.2,0,0 +2010,10,29,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,3,47,95797,160,1387,320,46,58,39,5049,0,4326,1284,220,5.1,3,3,8000,77777,0,919999999,13,0,0,88,0.2,0,0 +2010,10,29,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11.6,3.5,57,96730,0,760,310,0,0,0,0,0,0,0,220,5.1,3,3,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,10,29,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,11,3,58,95740,0,0,309,0,0,0,0,0,0,0,220,4.6,4,4,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,10,29,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,10,3,62,95721,0,0,305,0,0,0,0,0,0,0,160,1.5,4,4,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,10,29,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,9.1,3.2,67,96757,0,0,286,0,0,0,0,0,0,0,130,1,0,0,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,10,29,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,9,4,71,95702,0,0,307,0,0,0,0,0,0,0,190,3.1,6,6,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,10,30,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,6,3,81,95644,0,0,301,0,0,0,0,0,0,0,350,1.5,8,8,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,10,30,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,5.3,2.7,83,96663,0,0,271,0,0,0,0,0,0,0,360,0.5,0,0,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,10,30,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,5,3,87,95624,0,0,303,0,0,0,0,0,0,0,350,1.5,9,9,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,10,30,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,2,81,95624,0,0,269,0,0,0,0,0,0,0,211,1,0,0,6000,77777,9,999999999,12,0,0,88,0.2,0,0 +2010,10,30,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5.2,3.1,86,96642,0,0,271,0,0,0,0,0,0,0,360,1,0,0,6000,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,10,30,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,3,2,93,95584,0,0,261,0,0,0,0,0,0,0,147,0.5,0,0,3600,77777,9,999999999,12,0,0,88,0.2,0,0 +2010,10,30,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5,3,87,95624,194,922,270,64,50,57,6996,632,6250,1778,10,1.5,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,10,30,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,8,4,76,95683,485,1388,306,224,220,147,24848,14594,16400,5218,10,1.5,7,7,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,10,30,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,11,4,62,95740,755,1388,310,489,593,167,56744,42512,19410,7280,87,0.5,4,4,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,10,30,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,4,54,95778,986,1388,317,716,735,194,85186,53776,23168,9285,260,2.1,3,3,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,10,30,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,14.9,3.1,45,96518,1162,1388,311,892,851,179,109419,59337,22100,9125,181,0.5,0,0,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,10,30,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,17,3,39,95852,1271,1388,326,995,806,257,120511,61086,31308,12511,273,2.1,1,1,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,10,30,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,20,0,26,95906,1306,1388,330,1032,808,272,125116,62701,33218,13179,227,1.5,0,0,9900,77777,9,999999999,9,0,0,88,0.2,0,0 +2010,10,30,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,21.6,0.4,24,96299,1263,1388,337,991,805,258,120003,61964,31459,12551,170,4.1,0,0,9900,77777,9,999999999,10,0,0,88,0.2,0,0 +2010,10,30,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,-3,17,95959,1147,1388,340,885,798,226,106724,61101,27358,11047,150,4.1,0,0,9900,77777,9,999999999,7,0,0,88,0.2,0,0 +2010,10,30,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,24,-4,15,95977,965,1388,343,714,801,157,86206,57130,19061,7738,160,5.1,0,0,9900,77777,9,999999999,6,0,0,88,0.2,0,0 +2010,10,30,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,24.3,-6.1,12,96157,729,1388,342,495,648,155,57632,47108,18081,6756,170,4.6,0,0,9900,77777,9,999999999,5,0,0,88,0.2,0,0 +2010,10,30,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,24,-1,19,95977,456,1388,347,251,375,128,28007,23397,14335,4606,180,4.1,0,0,9900,77777,9,999999999,8,0,0,88,0.2,0,0 +2010,10,30,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,5,35,95924,164,1388,340,48,69,40,5323,0,4434,1318,210,5.7,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,30,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,18.8,2.2,33,96249,0,781,333,0,0,0,0,0,0,0,170,5.7,1,1,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2010,10,30,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18,2,34,95870,0,0,323,0,0,0,0,0,0,0,180,4.6,0,0,9900,77777,9,999999999,11,0,0,88,0.2,0,0 +2010,10,30,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,16,3,42,95834,0,0,321,0,0,0,0,0,0,0,184,1,1,1,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,10,30,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,13.5,4.5,54,96293,0,0,306,0,0,0,0,0,0,0,78,0.5,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,30,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,11,5,66,95740,0,0,314,0,0,0,0,0,0,0,50,1,5,5,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,31,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,12,5,62,95759,0,0,316,0,0,0,0,0,0,0,346,0.5,4,4,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,31,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.4,4.2,70,96225,0,0,289,0,0,0,0,0,0,0,80,1,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,10,31,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,5,76,95702,0,0,288,0,0,0,0,0,0,0,144,1,0,0,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,10,31,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,5,76,95702,0,0,288,0,0,0,0,0,0,0,250,1,0,0,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,10,31,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,5,87,95663,0,0,280,0,0,0,0,0,0,0,10,1,0,0,7000,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,10,31,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,4,81,95663,0,0,279,0,0,0,0,0,0,0,50,2.1,0,0,7000,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,10,31,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,5,71,95721,199,945,292,66,126,48,7349,932,5363,1615,92,1,0,0,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,10,31,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13.4,5.8,60,96348,489,1388,307,276,445,119,31118,26197,13446,4546,117,1,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,31,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,6,48,95852,759,1388,334,511,673,143,60022,45254,16899,6485,340,1.5,2,2,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,31,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,20,6,40,95906,990,1388,343,726,821,141,88533,54167,17248,7112,172,1,1,1,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,10,31,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,22.8,4.2,30,96320,1166,1388,362,882,868,153,109520,57861,19126,7970,180,1.5,3,3,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,10,31,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,3,24,95994,1275,1388,356,998,806,258,120918,61184,31459,12565,190,3.6,0,0,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2010,10,31,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,28,4,22,96046,1309,1388,372,1029,808,268,124861,61261,32663,13003,180,4.1,0,0,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,10,31,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,28.5,1.8,18,96173,1267,1388,379,992,806,257,120145,61520,31325,12510,160,6.2,1,1,9900,77777,9,999999999,11,0,0,88,0.2,0,0 +2010,10,31,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,30,3,18,96079,1150,1388,381,881,799,219,106309,59154,26606,10795,160,5.1,0,0,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2010,10,31,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,30,4,19,96079,968,1388,382,709,809,144,86008,54515,17582,7201,160,6.2,0,0,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,10,31,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,29.9,5,21,96082,733,1388,400,484,637,147,56402,43532,17277,6527,180,6.7,3,3,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,31,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,29,5,22,96063,460,1388,378,252,436,107,28451,24073,12155,4096,190,6.2,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,31,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23.5,5.5,31,95968,168,1388,369,50,75,41,5535,0,4548,1353,177,4.7,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,31,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21.8,6.4,37,96023,0,802,354,0,0,0,0,0,0,0,180,4.1,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,31,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,19.8,7.2,44,95987,0,0,340,0,0,0,0,0,0,0,147,3.3,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,10,31,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,7.7,50,95960,0,0,347,0,0,0,0,0,0,0,107,2.5,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,10,31,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,16.1,7.6,57,96018,0,0,341,0,0,0,0,0,0,0,67,1.6,0,0,9900,77777,9,999999999,22,0,0,88,0.2,0,0 +2010,10,31,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14.3,7.2,62,95900,0,0,337,0,0,0,0,0,0,0,20,1.4,4,4,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,1,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13.6,6.9,64,95886,0,0,331,0,0,0,0,0,0,0,77,1.5,4,4,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,1,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,13,6.8,66,95958,0,0,307,0,0,0,0,0,0,0,115,1.4,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,1,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12.9,7,67,95899,0,0,325,0,0,0,0,0,0,0,125,1.4,5,5,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,1,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12.9,7.2,68,95899,0,0,325,0,0,0,0,0,0,0,173,1.3,5,5,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,1,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,13.9,7.6,66,96005,0,0,305,0,0,0,0,0,0,0,115,1.1,0,0,9900,77777,9,999999999,18,0,0,88,0.2,0,0 +2010,11,1,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,15.9,8,59,95961,0,0,327,0,0,0,0,0,0,0,114,1.1,6,6,9950,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,1,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,13,8,72,95778,203,967,329,60,63,51,6611,507,5619,1685,210,1,6,6,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,1,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,16.7,8.7,59,96201,494,1389,325,278,443,120,31320,25680,13613,4609,30,1.5,0,0,9900,77777,9,999999999,22,0,0,88,0.2,0,0 +2010,11,1,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,21,8,43,95924,763,1389,350,515,686,138,60596,44886,16287,6292,154,1,1,1,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,1,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,24,7,34,95977,994,1389,356,729,826,138,88980,53794,16908,6987,238,1,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,1,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,27.2,6.5,27,96094,1169,1389,371,894,800,220,107962,57985,26763,10870,290,1,0,0,9900,77777,9,999999999,18,0,0,88,0.2,0,0 +2010,11,1,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,30,5,21,96079,1278,1389,383,999,807,257,120985,60429,31257,12503,160,2.1,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,11,1,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,32,4,17,96113,1312,1389,392,1033,809,269,125245,61349,32802,13052,170,3.1,0,0,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,11,1,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,32.5,2.5,15,95898,1270,1389,393,995,806,258,120447,61369,31384,12534,170,4.6,0,0,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2010,11,1,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,33,1,13,96129,1154,1389,393,887,799,223,106963,60006,27038,10945,230,5.7,0,0,9900,77777,9,999999999,10,0,0,88,0.2,0,0 +2010,11,1,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,32,5,18,96113,972,1389,394,711,814,142,86391,54198,17288,7096,220,7.7,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,11,1,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,30.6,8.7,26,95848,736,1389,399,490,672,134,57536,43269,15785,6052,220,7.7,1,1,9900,77777,9,999999999,22,0,0,88,0.2,0,0 +2010,11,1,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,29,9,29,96063,464,1389,384,253,432,109,28556,23264,12334,4162,210,8.2,0,0,9900,77777,9,999999999,22,0,0,88,0.2,0,0 +2010,11,1,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,9,34,96011,172,1389,369,52,79,42,5728,0,4656,1389,210,8.2,0,0,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,1,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,25,7.5,33,95933,0,822,362,0,0,0,0,0,0,0,140,3.1,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,1,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,9,41,95959,0,0,361,0,0,0,0,0,0,0,140,4.1,1,1,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,1,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,11,53,95924,0,0,362,0,0,0,0,0,0,0,190,2.6,3,3,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2010,11,1,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,19.8,11.4,58,95983,0,0,342,0,0,0,0,0,0,0,160,2.1,0,0,9900,77777,9,999999999,29,0,0,88,0.2,0,0 +2010,11,1,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18,12,68,95870,0,0,354,0,0,0,0,0,0,0,160,1.5,5,5,9900,77777,9,999999999,31,0,0,88,0.2,0,0 +2010,11,2,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,17,11,68,95852,0,0,348,0,0,0,0,0,0,0,3,1,5,5,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2010,11,2,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15.5,10.4,72,95877,0,0,321,0,0,0,0,0,0,0,250,1.5,0,0,9900,77777,9,999999999,26,0,0,88,0.2,0,0 +2010,11,2,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,15,11,77,95815,0,0,345,0,0,0,0,0,0,0,158,0.5,7,7,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2010,11,2,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14,10,77,95797,0,0,339,0,0,0,0,0,0,0,58,0.5,7,7,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2010,11,2,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,13,9.6,80,95840,0,0,309,0,0,0,0,0,0,0,279,0.5,0,0,9900,77777,9,999999999,24,0,0,88,0.2,0,0 +2010,11,2,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,12,9,82,95759,0,0,334,0,0,0,0,0,0,0,54,1,8,8,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,2,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,15,11,77,95815,207,990,345,57,26,53,6267,218,5858,1751,98,1,7,7,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2010,11,2,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,18.5,11.8,65,95969,498,1390,336,280,385,142,31089,23595,15843,5176,190,2.1,0,0,9900,77777,9,999999999,30,0,0,88,0.2,0,0 +2010,11,2,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,22,12,53,95942,767,1390,368,510,674,138,59910,42475,16251,6301,170,2.6,3,3,9900,77777,9,999999999,31,0,0,88,0.2,0,0 +2010,11,2,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,24,12,47,95977,997,1390,374,724,818,138,88282,50857,16861,6989,170,3.1,2,2,9900,77777,9,999999999,31,0,0,88,0.2,0,0 +2010,11,2,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,25.5,12.3,44,95903,1173,1390,370,889,879,148,110350,54214,18426,7716,170,4.1,0,0,9900,77777,9,999999999,31,0,0,88,0.2,0,0 +2010,11,2,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,13,45,96011,1281,1390,386,988,807,244,119733,55853,29721,12001,160,4.1,2,2,9900,77777,9,999999999,34,0,0,88,0.2,0,0 +2010,11,2,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,28,12,37,96046,1315,1390,382,1023,809,257,124082,57107,31381,12596,180,5.1,0,0,9900,77777,9,999999999,30,0,0,88,0.2,0,0 +2010,11,2,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,28.6,12.2,36,95786,1273,1390,386,983,807,244,119066,56401,29729,11996,210,7.2,0,0,9900,77777,9,999999999,31,0,0,88,0.2,0,0 +2010,11,2,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,13,42,96029,1157,1390,378,873,850,166,107214,53732,20505,8545,220,9.3,0,0,9000,77777,9,999999999,34,0,0,88,0.2,0,0 +2010,11,2,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,26,13,45,96011,975,1390,390,696,762,161,83469,49127,19380,7918,210,9.3,3,3,9000,77777,9,999999999,34,0,0,88,0.2,0,0 +2010,11,2,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,25.9,11.3,40,95759,740,1390,390,475,645,132,55789,40295,15532,5982,200,8.7,4,4,9000,77777,9,999999999,28,0,0,88,0.2,0,0 +2010,11,2,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,22,12,53,95942,467,1390,368,252,396,119,28223,21657,13364,4445,190,8.2,3,3,9900,77777,9,999999999,31,0,0,88,0.2,0,0 +2010,11,2,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,21,12,56,95924,176,1390,369,50,40,45,5496,0,4956,1467,200,6.7,5,5,9900,77777,9,999999999,31,0,0,88,0.2,0,0 +2010,11,2,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,16.9,11.5,70,95968,0,843,348,0,0,0,0,0,0,0,150,6.2,5,5,9900,77777,9,999999999,29,0,0,88,0.2,0,0 +2010,11,2,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,12,82,95815,0,0,334,0,0,0,0,0,0,0,140,7.2,3,3,9900,77777,9,999999999,31,0,0,88,0.2,0,0 +2010,11,2,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,11,82,95797,0,0,353,0,0,0,0,0,0,0,150,6.7,9,9,9900,6000,9,999999999,28,0,0,88,0.2,0,0 +2010,11,2,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,11,82,95797,0,0,353,0,0,0,0,0,0,0,150,5.1,9,9,9900,1200,9,999999999,28,0,0,88,0.2,0,0 +2010,11,2,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,13.5,10.5,82,95787,0,0,343,0,0,0,0,0,0,0,211,4.6,8,8,9900,1200,9,999999999,27,0,0,88,0.2,0,0 +2010,11,3,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,10,82,95778,0,0,347,0,0,0,0,0,0,0,160,4.1,9,9,9900,1800,9,999999999,25,0,0,88,0.2,0,0 +2010,11,3,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13.2,10.4,83,96108,0,0,359,0,0,0,0,0,0,0,190,3.1,10,10,9900,1800,9,999999999,27,0,0,88,0.2,0,0 +2010,11,3,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,12.8,10.3,85,95992,0,0,340,0,0,0,0,0,0,0,146,3.6,8,8,9900,1800,9,999999999,26,0,0,88,0.2,0,0 +2010,11,3,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,12.4,10.1,86,95875,0,0,337,0,0,0,0,0,0,0,206,4.1,8,8,9900,1800,9,999999999,26,0,0,88,0.2,0,0 +2010,11,3,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,12,10,88,95759,0,0,323,0,0,0,0,0,0,0,170,4.6,5,5,9900,1800,9,999999999,26,0,0,88,0.2,0,0 +2010,11,3,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,10,88,95759,0,0,352,0,0,0,0,0,0,0,160,3.6,10,10,9000,450,9,999999999,26,0,0,88,0.2,0,0 +2010,11,3,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,10,88,95759,212,1011,352,23,0,23,2240,0,2256,911,150,2.6,10,10,9000,450,9,999999999,26,0,0,88,0.2,0,0 +2010,11,3,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13.1,10.5,84,96163,502,1391,358,89,0,89,8902,0,8974,3699,170,2.6,10,10,9000,360,9,999999999,27,0,0,88,0.2,0,0 +2010,11,3,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,11,82,95797,771,1391,364,163,0,163,16665,0,16813,7236,150,4.1,10,10,9000,900,9,999999999,28,0,0,88,0.2,0,0 +2010,11,3,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,11,77,95815,1001,1391,369,230,7,225,27006,514,26551,10503,170,4.6,10,10,9000,300,9,999999999,28,0,0,88,0.2,0,0 +2010,11,3,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,16.4,11.1,71,96243,1176,1391,366,461,33,433,52745,2994,49926,17736,227,1,9,9,9000,1200,9,999999999,28,0,0,88,0.2,0,0 +2010,11,3,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18,11,64,95870,1284,1391,374,514,87,433,59624,7649,50670,18360,310,1.5,9,9,9000,4500,9,999999999,28,0,0,88,0.2,0,0 +2010,11,3,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,11,60,95888,1318,1391,379,530,87,448,61663,7673,52468,18926,69,0,9,9,8000,4500,9,999999999,28,0,0,88,0.2,0,0 +2010,11,3,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19.3,10.9,58,96097,1276,1391,380,510,87,430,59155,7654,50251,18226,160,4.1,9,9,8000,4500,9,999999999,28,0,0,88,0.2,0,0 +2010,11,3,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19,11,60,95888,1160,1391,379,454,49,413,51982,4376,47656,17144,170,5.7,9,9,8000,4500,9,999999999,28,0,0,88,0.2,0,0 +2010,11,3,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19,11,60,95888,979,1391,379,366,33,343,41481,2922,39081,13939,180,6.7,9,9,8000,4500,9,999999999,28,0,0,88,0.2,0,0 +2010,11,3,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19.2,10.6,57,96058,744,1391,379,255,20,245,28569,1616,27527,9408,150,6.2,9,9,8000,4500,9,999999999,27,0,0,88,0.2,0,0 +2010,11,3,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19,10,56,95888,471,1391,378,133,10,130,14853,566,14553,4741,180,5.7,9,9,8000,4500,9,999999999,25,0,0,88,0.2,0,0 +2010,11,3,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19,10,56,95888,180,1391,378,29,0,29,2802,0,2822,1063,210,4.1,9,9,8000,4500,9,999999999,25,0,0,88,0.2,0,0 +2010,11,3,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17.6,10.1,61,96095,0,864,370,0,0,0,0,0,0,0,200,2.6,9,9,8000,7500,9,999999999,26,0,0,88,0.2,0,0 +2010,11,3,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,17,10,63,95852,0,0,347,0,0,0,0,0,0,0,241,1,5,5,8000,7500,9,999999999,25,0,0,88,0.2,0,0 +2010,11,3,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,16,11,72,95834,0,0,343,0,0,0,0,0,0,0,200,2.6,5,5,8000,7500,9,999999999,28,0,0,88,0.2,0,0 +2010,11,3,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,10.5,74,96160,0,0,358,0,0,0,0,0,0,0,150,2.6,9,9,8000,1200,9,999999999,27,0,0,88,0.2,0,0 +2010,11,3,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,10,77,95797,0,0,328,0,0,0,0,0,0,0,120,2.1,3,3,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2010,11,4,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,9,77,95778,0,0,334,0,0,0,0,0,0,0,220,1.5,7,7,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,4,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,11.7,8.8,82,96042,0,0,303,0,0,0,0,0,0,0,170,2.6,0,0,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,4,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,8,76,95759,0,0,328,0,0,0,0,0,0,0,150,3.1,7,7,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,4,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,11,8,82,95740,0,0,329,0,0,0,0,0,0,0,170,2.1,8,8,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,4,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,8,82,95740,0,0,336,0,0,0,0,0,0,0,170,1.5,9,9,9900,1200,9,999999999,21,0,0,88,0.2,0,0 +2010,11,4,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,8,76,95759,0,0,340,0,0,0,0,0,0,0,130,2.6,9,9,9900,1200,9,999999999,21,0,0,88,0.2,0,0 +2010,11,4,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11,8,82,95740,216,1033,336,39,0,39,3806,0,3833,1423,260,2.6,9,9,9900,1200,9,999999999,21,0,0,88,0.2,0,0 +2010,11,4,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12.4,8.5,77,96206,506,1391,353,90,0,90,9042,0,9115,3752,170,2.6,10,10,9900,900,9,999999999,22,0,0,88,0.2,0,0 +2010,11,4,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,15,9,67,95815,774,1391,356,270,40,248,30406,3301,28034,9747,199,1,9,9,9900,4500,9,999999999,23,0,0,88,0.2,0,0 +2010,11,4,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,16,9,63,95834,1004,1391,361,380,66,332,43318,5763,38102,13880,56,1,9,9,9900,4500,9,999999999,23,0,0,88,0.2,0,0 +2010,11,4,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18.4,9.2,55,96204,1179,1391,373,464,66,408,53407,5934,47290,17122,180,1.5,9,9,9900,4800,9,999999999,23,0,0,88,0.2,0,0 +2010,11,4,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,21,10,49,95924,1287,1391,366,930,586,388,109002,49454,45763,17079,210,1.5,5,5,9900,4800,9,999999999,25,0,0,88,0.2,0,0 +2010,11,4,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,22,10,46,95942,1321,1391,366,1018,865,197,126196,57349,24512,10060,170,2.1,3,3,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2010,11,4,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,23.6,9.7,41,96041,1279,1391,373,979,882,168,122190,56774,21101,8743,180,3.6,3,3,9900,77777,9,999999999,24,0,0,88,0.2,0,0 +2010,11,4,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,25,8,34,95994,1163,1391,378,875,834,177,107180,56211,21842,9041,160,5.7,3,3,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2010,11,4,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,25,7,32,95994,982,1391,383,667,654,206,78884,48032,24489,9732,210,6.2,5,5,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,4,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,24.4,7.9,35,95989,747,1391,375,493,652,143,57756,43261,16844,6431,210,6.2,3,3,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2010,11,4,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,24,8,36,95977,475,1391,358,262,444,111,29663,24558,12553,4258,220,6.2,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2010,11,4,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,9,46,95924,184,1391,356,58,97,45,6405,100,4997,1496,210,6.2,2,2,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,4,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,18.8,7.8,49,96211,0,886,347,0,0,0,0,0,0,0,200,6.2,3,3,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2010,11,4,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18,8,52,95870,0,0,344,0,0,0,0,0,0,0,190,4.6,3,3,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,4,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,8,55,95852,0,0,339,0,0,0,0,0,0,0,150,3.6,3,3,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,4,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15.4,7.6,60,96348,0,0,318,0,0,0,0,0,0,0,150,3.1,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2010,11,4,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,8,63,95815,0,0,335,0,0,0,0,0,0,0,160,1.5,5,5,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,5,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,8,67,95797,0,0,330,0,0,0,0,0,0,0,150,2.1,5,5,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,5,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,12.6,7.2,70,96314,0,0,305,0,0,0,0,0,0,0,130,1.5,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,5,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,12,7,71,95759,0,0,323,0,0,0,0,0,0,0,128,0.5,6,6,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,5,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,12,7,71,95759,0,0,323,0,0,0,0,0,0,0,163,1,6,6,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,5,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9.8,6.8,82,96289,0,0,306,0,0,0,0,0,0,0,26,1,3,3,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,5,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,10,7,82,95721,0,0,311,0,0,0,0,0,0,0,4,1,5,5,6000,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,5,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,8,76,95759,220,1053,316,77,91,62,8401,1537,6855,1993,300,1.5,3,3,3000,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,5,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,15.5,7.9,61,96397,509,1392,337,270,365,137,30283,22870,15399,5119,31,0.5,5,5,3000,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,5,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,17,8,55,95852,778,1392,339,519,664,148,60929,44518,17488,6735,218,0.5,3,3,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,5,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,20,8,46,95906,1007,1392,350,738,785,170,88827,53658,20560,8397,213,1,2,2,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,5,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,22.3,8.6,41,96312,1182,1392,371,840,645,292,99310,50606,34748,13601,150,2.1,5,5,9900,77777,9,999999999,22,0,0,88,0.2,0,0 +2010,11,5,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,24,8,36,95977,1290,1392,358,1005,809,255,121820,59225,31114,12470,160,2.6,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2010,11,5,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,6,28,96011,1324,1392,365,1040,788,291,125492,60530,35326,13924,200,3.1,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,11,5,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,28.3,8,28,96074,1282,1392,416,671,237,452,77687,21731,52765,18832,220,5.1,8,8,9900,7500,9,999999999,20,0,0,88,0.2,0,0 +2010,11,5,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,28,7,26,96046,1167,1392,376,890,791,228,107148,57736,27559,11155,220,5.7,0,0,9900,7500,9,999999999,18,0,0,88,0.2,0,0 +2010,11,5,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,28,6,25,96046,985,1392,375,721,778,171,86564,54170,20634,8373,210,6.7,0,0,9900,7500,9,999999999,17,0,0,88,0.2,0,0 +2010,11,5,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,26.9,4.5,24,95984,751,1392,393,442,420,215,50153,33306,24548,8716,220,7.2,6,6,9900,7500,9,999999999,14,0,0,88,0.2,0,0 +2010,11,5,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,5,26,96011,479,1392,364,267,436,117,30092,25423,13227,4443,220,6.2,0,0,9900,7500,9,999999999,15,0,0,88,0.2,0,0 +2010,11,5,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,5,28,95994,189,1392,359,61,108,46,6708,456,5108,1530,220,4.6,0,0,9900,7500,9,999999999,15,0,0,88,0.2,0,0 +2010,11,5,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,23.1,3.6,28,96042,0,907,369,0,0,0,0,0,0,0,210,4.6,5,5,9900,7500,9,999999999,13,0,0,88,0.2,0,0 +2010,11,5,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,22,5,33,95942,0,0,345,0,0,0,0,0,0,0,140,2.1,0,0,9900,7500,9,999999999,15,0,0,88,0.2,0,0 +2010,11,5,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,6,40,95906,0,0,343,0,0,0,0,0,0,0,180,4.6,1,1,9900,7500,9,999999999,17,0,0,88,0.2,0,0 +2010,11,5,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,19.7,5.7,40,96123,0,0,335,0,0,0,0,0,0,0,190,2.6,0,0,9900,7500,9,999999999,16,0,0,88,0.2,0,0 +2010,11,5,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18,5,42,95870,0,0,333,0,0,0,0,0,0,0,340,1.5,1,1,9900,7500,9,999999999,15,0,0,88,0.2,0,0 +2010,11,6,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18,5,42,95870,0,0,333,0,0,0,0,0,0,0,160,3.6,1,1,9900,7500,9,999999999,15,0,0,88,0.2,0,0 +2010,11,6,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,15.8,5.1,49,96071,0,0,317,0,0,0,0,0,0,0,179,1,0,0,9900,7500,9,999999999,16,0,0,88,0.2,0,0 +2010,11,6,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,6,51,95834,0,0,332,0,0,0,0,0,0,0,200,1.5,3,3,9900,7500,9,999999999,17,0,0,88,0.2,0,0 +2010,11,6,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,6,67,95759,0,0,319,0,0,0,0,0,0,0,360,2.1,5,5,9900,7500,9,999999999,17,0,0,88,0.2,0,0 +2010,11,6,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,12.2,6.2,67,96004,0,0,302,0,0,0,0,0,0,0,36,0.5,0,0,9900,7500,9,999999999,17,0,0,88,0.2,0,0 +2010,11,6,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14,6,59,95797,0,0,326,0,0,0,0,0,0,0,254,1,4,4,9900,7500,9,999999999,17,0,0,88,0.2,0,0 +2010,11,6,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14,6,59,95797,224,1074,326,78,145,54,8625,2071,6063,1841,212,0.5,4,4,9900,7500,9,999999999,17,0,0,88,0.2,0,0 +2010,11,6,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,18,6.8,48,96017,513,1393,328,294,463,123,33218,27837,14002,4779,360,2.1,0,0,9900,7500,9,999999999,18,0,0,88,0.2,0,0 +2010,11,6,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,7,40,95924,781,1393,349,531,695,141,62587,46180,16741,6488,40,2.1,1,1,9900,7500,9,999999999,19,0,0,88,0.2,0,0 +2010,11,6,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,24,7,34,95977,1010,1393,356,743,831,140,90839,54288,17214,7125,169,1,0,0,9900,7500,9,999999999,19,0,0,88,0.2,0,0 +2010,11,6,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,25.2,6.9,31,95860,1185,1393,369,907,803,224,109598,58142,27176,11025,180,2.6,1,1,9900,7500,9,999999999,18,0,0,88,0.2,0,0 +2010,11,6,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,28,7,26,96046,1293,1393,376,1009,810,258,122327,59814,31405,12568,170,5.1,0,0,9900,7500,9,999999999,18,0,0,88,0.2,0,0 +2010,11,6,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,29,5,22,96063,1327,1393,378,1045,811,271,126748,61234,33123,13173,150,5.7,0,0,9900,7500,9,999999999,15,0,0,88,0.2,0,0 +2010,11,6,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,30.4,5.2,20,95693,1285,1393,386,1004,809,258,121702,60571,31429,12565,160,5.1,0,0,9900,7500,9,999999999,15,0,0,88,0.2,0,0 +2010,11,6,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,31,4,18,96096,1170,1393,387,897,802,223,108279,59234,27103,10982,180,5.7,0,0,9900,7500,9,999999999,14,0,0,88,0.2,0,0 +2010,11,6,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,30,5,21,96079,989,1393,383,725,819,144,88243,54716,17616,7245,220,7.2,0,0,9900,7500,9,999999999,15,0,0,88,0.2,0,0 +2010,11,6,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,30.1,4.5,20,95536,754,1393,391,509,669,146,59582,45734,17185,6556,220,7.7,1,1,9900,7500,9,999999999,14,0,0,88,0.2,0,0 +2010,11,6,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,29,6,23,96063,483,1393,380,269,436,118,30358,25437,13356,4492,210,7.2,0,0,9900,7500,9,999999999,17,0,0,88,0.2,0,0 +2010,11,6,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,27,8,30,96029,193,1393,372,62,111,47,6904,465,5218,1567,210,7.7,0,0,9900,7500,9,999999999,20,0,0,88,0.2,0,0 +2010,11,6,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,24.4,10.7,42,95581,0,928,382,0,0,0,0,0,0,0,220,6.7,4,4,9900,7500,9,999999999,27,0,0,88,0.2,0,0 +2010,11,6,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,23,10,44,95959,0,0,371,0,0,0,0,0,0,0,180,5.1,3,3,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2010,11,6,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,23,10,44,95959,0,0,376,0,0,0,0,0,0,0,190,6.7,5,5,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2010,11,6,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,21,9.1,46,95692,0,0,387,0,0,0,0,0,0,0,190,5.7,9,9,9900,5100,9,999999999,23,0,0,88,0.2,0,0 +2010,11,6,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,20,9,49,95906,0,0,381,0,0,0,0,0,0,0,160,4.6,9,9,9900,5100,9,999999999,23,0,0,88,0.2,0,0 +2010,11,7,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19,9,52,95888,0,0,376,0,0,0,0,0,0,0,160,3.6,9,9,9900,5100,9,999999999,23,0,0,88,0.2,0,0 +2010,11,7,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18,9.2,56,95733,0,0,371,0,0,0,0,0,0,0,170,3.1,9,9,9900,4800,9,999999999,23,0,0,88,0.2,0,0 +2010,11,7,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17,10,63,95852,0,0,367,0,0,0,0,0,0,0,150,3.6,9,9,9900,4500,9,999999999,25,0,0,88,0.2,0,0 +2010,11,7,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16,10,68,95834,0,0,362,0,0,0,0,0,0,0,150,4.6,9,9,9900,4500,9,999999999,25,0,0,88,0.2,0,0 +2010,11,7,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14.4,9.7,73,95856,0,0,364,0,0,0,0,0,0,0,140,4.1,10,10,9900,3900,9,999999999,25,0,0,88,0.2,0,0 +2010,11,7,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,10,77,95797,0,0,352,0,0,0,0,0,0,0,170,6.2,9,9,9900,1500,9,999999999,25,0,0,88,0.2,0,0 +2010,11,7,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,9,77,95778,227,1093,346,42,0,42,4132,0,4162,1541,170,4.6,9,9,9900,1500,9,999999999,23,0,0,88,0.2,0,0 +2010,11,7,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12.5,9.5,82,96085,516,1393,344,152,6,150,16950,363,16797,5481,150,4.6,9,9,9900,1500,9,999999999,24,0,0,88,0.2,0,0 +2010,11,7,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,9,77,95778,784,1393,346,275,41,252,30908,3348,28486,9919,150,4.1,9,9,9900,900,9,999999999,23,0,0,88,0.2,0,0 +2010,11,7,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,10,82,95778,1013,1393,357,234,7,228,27484,545,26998,10682,140,3.6,10,10,9900,450,9,999999999,25,0,0,88,0.2,0,0 +2010,11,7,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13.1,10,81,96153,1188,1393,358,285,6,280,33807,433,33429,13189,170,3.6,10,10,9900,600,9,999999999,26,0,0,88,0.2,0,0 +2010,11,7,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,10,82,95778,1296,1393,347,520,74,451,60250,6676,52628,18863,160,4.1,9,9,9900,600,0,919999999,25,0,0,88,0.2,0,0 +2010,11,7,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,11,88,95778,1330,1393,349,535,98,442,62411,8569,51897,18817,140,3.6,9,9,5000,600,0,919999999,28,0,0,88,0.2,0,0 +2010,11,7,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,11,94,95759,1288,1393,353,314,14,301,37513,1029,36235,14217,150,3.1,10,10,5000,450,0,919999999,28,0,0,88,0.2,0,0 +2010,11,7,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,11,88,95778,1173,1393,358,280,10,272,33212,727,32435,12851,170,3.1,10,10,6000,360,0,919999999,28,0,0,88,0.2,0,0 +2010,11,7,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,11,94,95759,992,1393,353,227,4,224,26634,265,26472,10441,200,3.1,10,10,8000,300,0,919999999,28,0,0,88,0.2,0,0 +2010,11,7,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,10,94,95740,758,1393,347,160,0,160,16285,0,16429,7046,190,4.6,10,10,3000,300,0,919999999,26,0,0,88,0.2,0,0 +2010,11,7,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,7,82,95721,487,1393,339,86,0,86,8548,0,8616,3533,210,5.7,10,10,5000,600,0,919999999,19,0,0,88,0.2,0,0 +2010,11,7,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,6,87,95683,197,1393,329,20,0,20,1990,0,2004,808,170,6.7,10,10,5000,750,0,919999999,17,0,0,88,0.2,0,0 +2010,11,7,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,6,100,95644,0,950,319,0,0,0,0,0,0,0,190,10.3,10,10,5000,900,0,919999999,17,0,0,88,0.2,5,0 +2010,11,7,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,5,87,95663,0,0,323,0,0,0,0,0,0,0,200,8.2,10,10,6000,1200,0,919999999,16,0,0,88,0.2,0.1,0 +2010,11,7,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,4,87,95644,0,0,317,0,0,0,0,0,0,0,180,5.1,10,10,5000,1200,0,919999999,14,0,0,88,0.2,0,0 +2010,11,7,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6.4,5,91,96562,0,0,320,0,0,0,0,0,0,0,150,3.6,10,10,7000,1200,0,919999999,16,0,0,88,0.2,0,0 +2010,11,7,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,5,93,95644,0,0,318,0,0,0,0,0,0,0,160,3.6,10,10,8000,600,0,919999999,16,0,0,88,0.2,0,0 +2010,11,8,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,5,93,95644,0,0,318,0,0,0,0,0,0,0,140,2.6,10,10,8000,1050,0,919999999,16,0,0,88,0.2,0,0 +2010,11,8,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,6.1,5,93,96519,0,0,319,0,0,0,0,0,0,0,70,0.5,10,10,8000,900,0,919999999,16,0,0,88,0.2,0,0 +2010,11,8,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,6,4,87,95644,0,0,317,0,0,0,0,0,0,0,130,1.5,10,10,8000,600,0,919999999,14,0,0,88,0.2,0,0 +2010,11,8,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,6,5,93,95644,0,0,318,0,0,0,0,0,0,0,40,1.5,10,10,8000,900,0,919999999,16,0,0,88,0.2,0,0 +2010,11,8,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,6,5,93,95644,0,0,318,0,0,0,0,0,0,0,10,2.1,10,10,8000,900,0,919999999,16,0,0,88,0.2,0,0 +2010,11,8,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,5,93,95644,0,0,309,0,0,0,0,0,0,0,330,1,9,9,8000,300,0,919999999,16,0,0,88,0.2,0,0 +2010,11,8,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,5,87,95663,231,1112,314,44,0,44,4271,0,4302,1586,130,2.1,9,9,8000,600,0,919999999,16,0,0,88,0.2,0,0 +2010,11,8,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7,4,81,95663,520,1394,313,155,6,153,17281,411,17108,5559,160,2.6,9,9,8000,690,0,919999999,14,0,0,88,0.2,0,0 +2010,11,8,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,7,4,81,95663,787,1394,313,278,22,266,31244,1905,30017,10274,140,2.1,9,9,8000,450,0,919999999,14,0,0,88,0.2,0,0 +2010,11,8,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,9,4,71,95702,1016,1394,322,388,69,338,44372,6155,38898,14130,160,1.5,9,9,8000,450,0,919999999,14,0,0,88,0.2,0,0 +2010,11,8,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,9.2,3.9,69,96816,1191,1394,323,473,51,429,54402,4800,49738,17713,221,1.5,9,9,8000,750,0,919999999,14,0,0,88,0.2,0,0 +2010,11,8,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,11,3,58,95740,1299,1394,330,526,91,441,61320,8419,51792,18634,303,1.5,9,9,8000,750,0,919999999,13,0,0,88,0.2,0,0 +2010,11,8,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,4,58,95759,1333,1394,336,542,91,456,63281,8355,53565,19195,170,3.1,9,9,8000,900,0,919999999,14,0,0,88,0.2,0,0 +2010,11,8,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,13.6,1.6,44,96815,1291,1394,340,524,92,438,61001,8531,51445,18516,66,1.5,9,9,8000,1200,0,919999999,11,0,0,88,0.2,0,0 +2010,11,8,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,14,1,41,95797,1176,1394,342,468,52,424,53793,4931,49103,17490,128,1,9,9,8000,1500,0,919999999,10,0,0,88,0.2,0,0 +2010,11,8,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16,2,39,95834,995,1394,353,379,69,330,43317,6219,37922,13734,190,3.1,9,9,8000,1500,0,919999999,11,0,0,88,0.2,0,0 +2010,11,8,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14.9,-0.1,36,96754,761,1394,345,268,44,244,30171,3706,27641,9529,190,2.6,9,9,8000,1800,0,919999999,9,0,0,88,0.2,0,0 +2010,11,8,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,-1,33,95815,491,1394,325,259,311,150,28755,21339,16693,5295,160,2.6,5,5,8000,77777,0,919999999,8,0,0,88,0.2,0,0 +2010,11,8,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,2,44,95797,201,1394,319,67,74,56,7303,973,6153,1783,200,4.1,3,3,8000,77777,0,919999999,11,0,0,88,0.2,0,0 +2010,11,8,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12.4,1.8,48,96821,0,972,311,0,0,0,0,0,0,0,220,2.6,3,3,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2010,11,8,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,11,3,58,95740,0,0,309,0,0,0,0,0,0,0,220,3.6,4,4,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,11,8,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,11,3,58,95740,0,0,309,0,0,0,0,0,0,0,220,2.1,4,4,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,11,8,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,9.8,3,63,96799,0,0,289,0,0,0,0,0,0,0,272,0,0,0,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,11,8,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,7,3,76,95663,0,0,300,0,0,0,0,0,0,0,205,1.5,7,7,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,11,9,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,8,3,71,95683,0,0,301,0,0,0,0,0,0,0,20,1.5,6,6,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,11,9,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,7,2.5,73,95663,0,0,296,0,0,0,0,0,0,0,47,1,6,6,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2010,11,9,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,6,2,75,95644,0,0,295,0,0,0,0,0,0,0,336,0.5,7,7,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2010,11,9,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,5,3,87,95624,0,0,303,0,0,0,0,0,0,0,40,2.1,9,9,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,11,9,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,4,3,93,95604,0,0,307,0,0,0,0,0,0,0,340,1.5,10,10,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,11,9,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,4,3,93,95604,0,0,307,0,0,0,0,0,0,0,40,2.6,10,10,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,11,9,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,3,81,95644,235,1131,274,87,112,68,9485,2647,7449,2160,350,1.5,0,0,5000,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,11,9,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,9,4,71,95702,523,1395,307,268,321,148,29948,21535,16574,5454,10,2.1,6,6,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,11,9,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,12,3,54,95759,790,1395,311,535,640,172,62274,46605,20160,7631,94,1,3,3,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,11,9,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14,3,47,95797,1019,1395,317,753,816,157,91473,56215,19194,7887,357,1,2,2,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,11,9,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,16.3,0.6,34,96402,1193,1395,314,923,805,234,111432,60984,28444,11459,278,1,0,0,9900,77777,9,999999999,10,0,0,88,0.2,0,0 +2010,11,9,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18,2,34,95870,1301,1395,323,1023,811,267,124034,62169,32520,12939,230,2.1,0,0,9900,77777,9,999999999,11,0,0,88,0.2,0,0 +2010,11,9,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,21,0,25,95924,1336,1395,334,1059,813,281,128472,63377,34262,13549,148,2.1,0,0,9900,77777,9,999999999,9,0,0,88,0.2,0,0 +2010,11,9,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,22.1,-0.1,23,96138,1294,1395,339,1019,811,268,123473,62838,32593,12954,130,3.1,0,0,9900,77777,9,999999999,9,0,0,88,0.2,0,0 +2010,11,9,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,24,-3,16,95977,1179,1395,344,914,804,235,110216,61908,28437,11441,180,3.6,0,0,9900,77777,9,999999999,7,0,0,88,0.2,0,0 +2010,11,9,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,-2,16,95994,998,1395,350,741,809,163,89662,57632,19754,8054,170,4.1,0,0,9900,77777,9,999999999,8,0,0,88,0.2,0,0 +2010,11,9,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,24.9,-3.8,14,95921,765,1395,347,524,655,165,61076,48350,19267,7246,170,5.1,0,0,9900,77777,9,999999999,6,0,0,88,0.2,0,0 +2010,11,9,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,-2,16,95994,495,1395,350,282,405,138,31519,26828,15529,5060,150,4.6,0,0,9900,77777,9,999999999,8,0,0,88,0.2,0,0 +2010,11,9,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,3,27,95959,205,1395,347,70,134,50,7714,1343,5542,1670,210,5.1,0,0,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2010,11,9,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,20.8,3.1,31,95963,0,993,337,0,0,0,0,0,0,0,210,3.6,0,0,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,11,9,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,19,5,40,95888,0,0,337,0,0,0,0,0,0,0,170,2.6,1,1,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,11,9,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18,5,42,95870,0,0,333,0,0,0,0,0,0,0,150,3.1,1,1,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,11,9,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15.5,5.8,52,96028,0,0,316,0,0,0,0,0,0,0,170,3.1,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,11,9,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,15,5,51,95815,0,0,327,0,0,0,0,0,0,0,13,0.5,3,3,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,11,10,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,13,5,58,95778,0,0,320,0,0,0,0,0,0,0,276,1,4,4,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,11,10,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,11.4,5.7,68,95866,0,0,298,0,0,0,0,0,0,0,208,0.5,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,11,10,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,11,6,71,95740,0,0,317,0,0,0,0,0,0,0,144,0,6,6,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,11,10,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,10,5,71,95721,0,0,312,0,0,0,0,0,0,0,93,0,6,6,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,11,10,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.8,5.4,79,95835,0,0,300,0,0,0,0,0,0,0,320,1,3,3,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,11,10,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,5,81,95683,0,0,284,0,0,0,0,0,0,0,20,1.5,0,0,7000,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,11,10,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,7,76,95740,238,1149,298,88,77,75,9572,1994,8179,2306,29,0.5,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,10,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,14,6.5,61,95868,526,1395,332,266,305,151,29648,20391,16883,5544,312,1,6,6,8000,7500,9,999999999,18,0,0,88,0.2,0,0 +2010,11,10,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,7,52,95852,793,1395,338,537,646,170,62473,45653,19830,7544,50,1.5,3,3,9900,7500,9,999999999,19,0,0,88,0.2,0,0 +2010,11,10,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,20,6,40,95906,1022,1395,343,754,832,145,92080,55130,17829,7374,140,0.5,1,1,9900,7500,9,999999999,17,0,0,88,0.2,0,0 +2010,11,10,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,22.7,4.2,30,95807,1196,1395,362,909,878,157,113013,58568,19547,8132,170,1.5,3,3,9900,7500,9,999999999,14,0,0,88,0.2,0,0 +2010,11,10,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,5,28,95994,1304,1395,359,1022,811,263,123845,61007,32116,12811,190,3.6,0,0,9900,7500,9,999999999,15,0,0,88,0.2,0,0 +2010,11,10,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,6,28,96011,1338,1395,365,1053,813,273,127761,61007,33295,13240,160,5.7,0,0,9900,7500,9,999999999,17,0,0,88,0.2,0,0 +2010,11,10,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,27.7,5.9,25,95751,1296,1395,389,1000,811,247,121720,59526,30207,12142,170,6.2,3,3,9900,7500,9,999999999,16,0,0,88,0.2,0,0 +2010,11,10,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,28,6,25,96046,1182,1395,375,905,804,224,109294,58637,27181,11021,210,7.2,0,0,9900,7500,9,999999999,17,0,0,88,0.2,0,0 +2010,11,10,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,27,8,30,96029,1002,1395,372,734,828,139,89501,53609,17085,7064,210,7.7,0,0,9900,7500,9,999999999,20,0,0,88,0.2,0,0 +2010,11,10,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,25.4,7.5,32,95712,769,1395,380,512,663,147,60011,44468,17300,6639,220,7.7,3,3,9900,7500,9,999999999,19,0,0,88,0.2,0,0 +2010,11,10,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,24,8,36,95977,498,1395,358,281,445,122,31644,26133,13765,4658,210,7.7,0,0,9900,7500,9,999999999,20,0,0,88,0.2,0,0 +2010,11,10,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,8,43,95924,209,1395,350,71,137,51,7904,1244,5649,1708,200,6.2,1,1,9900,7500,9,999999999,21,0,0,88,0.2,0,0 +2010,11,10,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,18.8,8.7,52,95880,0,1015,334,0,0,0,0,0,0,0,170,4.1,0,0,9900,7500,9,999999999,22,0,0,88,0.2,0,0 +2010,11,10,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,8,55,95852,0,0,339,0,0,0,0,0,0,0,150,4.6,3,3,9900,7500,9,999999999,21,0,0,88,0.2,0,0 +2010,11,10,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,7,55,95834,0,0,333,0,0,0,0,0,0,0,140,5.7,3,3,9900,7500,9,999999999,19,0,0,88,0.2,0,0 +2010,11,10,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,14.3,7,61,96062,0,0,312,0,0,0,0,0,0,0,160,4.6,0,0,9900,7500,9,999999999,19,0,0,88,0.2,0,0 +2010,11,10,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,7,71,95759,0,0,323,0,0,0,0,0,0,0,170,4.6,6,6,9900,7500,9,999999999,19,0,0,88,0.2,0,0 +2010,11,11,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,11,7,76,95740,0,0,322,0,0,0,0,0,0,0,170,3.6,7,7,9900,7500,9,999999999,19,0,0,88,0.2,0,0 +2010,11,11,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,10.5,7.1,79,96085,0,0,296,0,0,0,0,0,0,0,160,3.1,0,0,9900,7500,9,999999999,19,0,0,88,0.2,0,0 +2010,11,11,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,10,7,82,95721,0,0,323,0,0,0,0,0,0,0,160,3.6,8,8,9900,7500,9,999999999,19,0,0,88,0.2,0,0 +2010,11,11,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,7,87,95702,0,0,290,0,0,0,0,0,0,0,160,2.6,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,11,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,7,93,95683,0,0,321,0,0,0,0,0,0,0,180,3.1,9,9,1200,90,0,999999999,19,0,0,88,0.2,0,0 +2010,11,11,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,8,8,100,95683,0,0,331,0,0,0,0,0,0,0,160,3.6,10,10,800,30,0,999999999,21,0,0,88,0.2,0,0 +2010,11,11,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,8,8,100,95683,241,1167,331,28,0,28,2772,0,2792,1125,160,2.6,10,10,600,60,0,999999999,21,0,0,88,0.2,0,0 +2010,11,11,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,8,93,95702,529,1396,326,158,45,141,17715,2864,15879,5323,180,2.1,9,9,1300,60,0,999999999,21,0,0,88,0.2,0,0 +2010,11,11,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,9,77,95778,796,1396,322,535,577,206,61299,43350,23690,8730,190,2.6,3,3,7000,77777,0,999999999,23,0,0,88,0.2,0,0 +2010,11,11,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,9,67,95815,1024,1396,317,753,832,142,91978,53616,17461,7242,180,3.1,0,0,8000,77777,0,999999999,23,0,0,88,0.2,0,0 +2010,11,11,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18.4,8.4,52,96166,1198,1396,346,905,865,162,112088,56545,20209,8405,170,3.1,3,3,8000,77777,0,999999999,22,0,0,88,0.2,0,0 +2010,11,11,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,9,46,95924,1306,1396,356,1016,812,256,123217,58891,31230,12521,180,4.6,2,2,9900,77777,0,999999999,23,0,0,88,0.2,0,0 +2010,11,11,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,22.6,9.1,42,96002,1341,1396,359,1049,814,268,127411,59408,32731,13060,109,5.6,1,1,9950,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,11,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,24.2,9.1,38,96080,1299,1396,360,1011,812,256,122529,58886,31163,12494,170,6.7,0,0,9950,77777,0,999999999,23,0,0,88,0.2,0,0 +2010,11,11,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,9,36,95994,1185,1396,364,903,805,221,109125,57161,26775,10888,170,7.2,0,0,9900,77777,0,999999999,23,0,0,88,0.2,0,0 +2010,11,11,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,9,34,96011,1005,1396,369,735,828,140,89702,53159,17097,7075,170,7.7,0,0,9900,77777,0,999999999,23,0,0,88,0.2,0,0 +2010,11,11,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,25.6,8,33,95934,772,1396,365,521,691,139,61385,45357,16478,6372,210,6.2,0,0,9900,77777,0,999999999,20,0,0,88,0.2,0,0 +2010,11,11,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,24,8,36,95977,502,1396,358,284,449,122,32014,26472,13846,4694,210,6.2,0,0,9900,77777,0,999999999,20,0,0,88,0.2,0,0 +2010,11,11,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,22,9,43,95942,214,1396,356,74,143,52,8154,1389,5752,1743,210,5.7,1,1,9900,77777,0,999999999,23,0,0,88,0.2,0,0 +2010,11,11,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,20.6,8.8,47,96007,0,1037,342,0,0,0,0,0,0,0,200,4.1,0,0,9900,77777,9,999999999,22,0,0,88,0.2,0,0 +2010,11,11,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18,10,59,95870,0,0,349,0,0,0,0,0,0,0,150,4.1,4,4,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2010,11,11,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,10,63,95852,0,0,347,0,0,0,0,0,0,0,160,3.6,5,5,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2010,11,11,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15.9,9.8,67,96064,0,0,322,0,0,0,0,0,0,0,160,2.1,0,0,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2010,11,11,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,10,72,95815,0,0,340,0,0,0,0,0,0,0,180,2.6,6,6,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2010,11,12,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,9,72,95797,0,0,334,0,0,0,0,0,0,0,160,2.1,6,6,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,12,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,13.4,9.2,76,96017,0,0,311,0,0,0,0,0,0,0,160,1.5,0,0,9900,77777,9,999999999,24,0,0,88,0.2,0,0 +2010,11,12,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,9,77,95778,0,0,334,0,0,0,0,0,0,0,160,2.1,7,7,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,12,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,9,82,95759,0,0,334,0,0,0,0,0,0,0,150,2.1,8,8,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,12,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,11.3,8.8,85,96025,0,0,301,0,0,0,0,0,0,0,160,2.1,0,0,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,12,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,11,9,87,95740,0,0,337,0,0,0,0,0,0,0,137,1,9,9,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,12,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,9,77,95778,244,1183,334,74,51,65,8114,1056,7154,2142,160,1.5,7,7,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,12,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15.2,10,71,96174,532,1397,319,307,470,128,34690,28179,14549,4999,170,1,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2010,11,12,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,19,11,60,95888,798,1397,355,524,640,158,61296,42739,18590,7167,54,1,4,4,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2010,11,12,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,21,11,53,95924,1027,1397,362,745,807,151,90493,51877,18463,7640,24,1,3,3,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2010,11,12,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,22.3,11.1,49,96151,1201,1397,353,915,806,222,110587,56186,26982,10978,180,3.6,0,0,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2010,11,12,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,24,11,44,95977,1309,1397,368,1016,812,254,123171,57822,31039,12465,160,4.6,1,1,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2010,11,12,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,25,10,39,95994,1343,1397,381,1037,893,178,129762,57574,22405,9242,160,5.7,3,3,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2010,11,12,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,27,10,34,96029,1302,1397,391,999,888,171,124739,57051,21441,8874,210,5.7,3,3,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2010,11,12,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,27,9,32,96029,1188,1397,390,894,862,162,110602,56068,20085,8360,210,7.2,3,3,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,12,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,9,34,96011,1008,1397,369,738,828,140,90030,53240,17177,7110,220,7.7,0,0,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,12,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,24.3,8.6,37,96053,776,1397,378,506,626,159,59025,42765,18582,7083,210,8.7,4,4,9900,77777,9,999999999,22,0,0,88,0.2,0,0 +2010,11,12,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,9,41,95959,506,1397,361,286,449,124,32261,26394,13986,4747,200,7.7,1,1,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,12,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,9,46,95924,218,1397,356,76,147,53,8389,1605,5863,1779,210,5.7,2,2,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,12,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,18.1,8.8,55,96217,0,1059,331,0,0,0,0,0,0,0,160,4.1,0,0,9900,77777,9,999999999,22,0,0,88,0.2,0,0 +2010,11,12,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,8,59,95834,0,0,337,0,0,0,0,0,0,0,140,4.6,4,4,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,12,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,8,63,95815,0,0,335,0,0,0,0,0,0,0,160,5.7,5,5,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,12,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,13.9,6.8,62,96395,0,0,310,0,0,0,0,0,0,0,160,4.6,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,12,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,6,62,95778,0,0,321,0,0,0,0,0,0,0,160,3.1,4,4,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,11,13,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,6,62,95778,0,0,321,0,0,0,0,0,0,0,160,3.6,4,4,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,11,13,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,11.3,6,70,96393,0,0,298,0,0,0,0,0,0,0,160,2.6,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,11,13,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,11,6,71,95740,0,0,317,0,0,0,0,0,0,0,170,2.6,6,6,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,11,13,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,11,6,71,95740,0,0,317,0,0,0,0,0,0,0,150,1.5,6,6,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,11,13,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,10.5,6.1,74,96378,0,0,295,0,0,0,0,0,0,0,140,0.5,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,11,13,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,9,6,81,95702,0,0,317,0,0,0,0,0,0,0,263,0.5,8,8,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,11,13,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,12,7,71,95759,247,1200,323,83,91,67,9109,2092,7359,2194,301,0.5,6,6,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,13,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,15,7,59,95815,534,1397,331,302,437,134,34030,27577,15231,5182,158,1,4,4,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,13,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,17,8,55,95852,801,1397,339,539,674,152,63273,45544,17986,6962,202,1.5,3,3,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,13,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,9,49,95906,1029,1397,351,754,824,147,91911,53507,17998,7456,150,2.6,2,2,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,13,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,21.7,7.6,40,96339,1203,1397,346,922,807,228,111430,58250,27657,11205,180,3.1,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2010,11,13,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,24,8,36,95977,1311,1397,358,1023,813,261,124076,59695,31792,12714,170,5.1,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2010,11,13,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,9,36,95994,1345,1397,364,1054,815,270,128000,59606,32960,13141,150,5.1,0,0,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,13,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,26,6.9,30,96225,1304,1397,373,1019,812,260,123483,60156,31711,12678,190,6.2,1,1,9900,77777,9,999999999,18,0,0,88,0.2,0,0 +2010,11,13,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,27,7,28,96029,1190,1397,371,911,806,225,110081,58358,27300,11070,190,5.7,0,0,9900,77777,9,999999999,18,0,0,88,0.2,0,0 +2010,11,13,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,27,6,26,96029,1011,1397,370,744,829,144,90764,54922,17647,7288,210,7.2,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,11,13,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,26.3,5.2,26,96173,779,1397,372,529,684,148,62183,46725,17465,6717,210,7.7,1,1,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,11,13,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,6,30,95994,510,1397,360,291,459,123,32865,27713,13969,4752,220,6.7,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,11,13,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,6,33,95959,222,1397,350,79,158,53,8724,2120,5953,1809,210,6.7,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,11,13,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,21.4,6.1,37,96229,0,1081,343,0,0,0,0,0,0,0,200,6.2,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,11,13,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,8,46,95906,0,0,350,0,0,0,0,0,0,0,200,5.1,2,2,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,13,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,19,8,49,95888,0,0,345,0,0,0,0,0,0,0,150,2.6,2,2,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,13,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17.3,8.3,55,96326,0,0,327,0,0,0,0,0,0,0,150,3.1,0,0,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,13,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,8,59,95834,0,0,337,0,0,0,0,0,0,0,140,2.1,4,4,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,14,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,8,63,95815,0,0,335,0,0,0,0,0,0,0,140,2.6,5,5,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,14,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,14.5,7.6,63,96255,0,0,327,0,0,0,0,0,0,0,140,1.5,3,3,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2010,11,14,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,13,8,72,95778,0,0,329,0,0,0,0,0,0,0,303,0.5,6,6,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,14,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,12,8,76,95759,0,0,328,0,0,0,0,0,0,0,290,0,7,7,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,14,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,11.2,7.6,78,96259,0,0,299,0,0,0,0,0,0,0,253,0.5,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2010,11,14,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,12,7,71,95759,0,0,323,0,0,0,0,0,0,0,44,0.5,6,6,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,14,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,7,67,95778,250,1215,325,88,113,68,9657,2680,7455,2223,280,2.1,5,5,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,14,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,16.2,8.1,59,96315,537,1398,322,312,477,129,35311,29240,14616,5032,238,1,0,0,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,14,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,19,8,49,95888,803,1398,345,546,696,146,64418,46431,17314,6739,170,2.1,2,2,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,14,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,8,46,95906,1031,1398,350,759,831,145,92637,54260,17833,7391,190,3.1,2,2,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,14,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,22.5,5.4,33,96230,1205,1398,347,927,807,231,112005,59371,28082,11349,170,5.1,0,0,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,11,14,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,24,5,29,95977,1313,1398,354,1030,813,266,124845,61217,32406,12915,180,3.6,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,11,14,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,6,28,96011,1348,1398,365,1061,815,275,128821,61222,33610,13353,170,5.1,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,11,14,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,26.6,6.1,27,96074,1307,1398,368,1022,813,262,123929,60628,31975,12767,170,5.7,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,11,14,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,27,5,24,96029,1193,1398,369,916,806,228,110691,59362,27706,11209,220,6.7,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,11,14,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,27,3,21,96029,1014,1398,366,750,821,154,91146,56358,18839,7742,210,5.7,0,0,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2010,11,14,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,26.9,5,25,95956,783,1398,368,533,685,149,62555,46956,17614,6776,210,6.2,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,11,14,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,6,30,95994,514,1398,360,294,461,124,33197,27983,14074,4794,220,7.7,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,11,14,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,6,33,95959,226,1398,350,81,163,54,8976,2372,6057,1845,210,7.2,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,11,14,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,20.2,6.3,40,96123,0,1103,338,0,0,0,0,0,0,0,200,6.2,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,11,14,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,7,43,95906,0,0,344,0,0,0,0,0,0,0,160,4.6,1,1,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,14,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,19,7,46,95888,0,0,344,0,0,0,0,0,0,0,150,3.1,2,2,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,14,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,16.6,7.1,53,96228,0,0,322,0,0,0,0,0,0,0,150,3.6,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,14,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,7,59,95815,0,0,331,0,0,0,0,0,0,0,150,2.6,4,4,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,15,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,15,7,59,95815,0,0,331,0,0,0,0,0,0,0,183,1,4,4,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,15,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,12.4,7.4,72,96102,0,0,304,0,0,0,0,0,0,0,168,0.5,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2010,11,15,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,7,67,95778,0,0,307,0,0,0,0,0,0,0,45,0.5,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,15,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,7,71,95759,0,0,302,0,0,0,0,0,0,0,160,0.5,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,15,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11.3,6.8,74,95996,0,0,299,0,0,0,0,0,0,0,246,1,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,15,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,7,76,95740,0,0,298,0,0,0,0,0,0,0,49,0,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,15,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,8,63,95815,253,1230,335,92,132,68,10111,3129,7521,2247,150,1.5,5,5,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,15,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,17.4,8.1,54,96044,539,1399,327,314,480,129,35546,29443,14664,5054,50,1,0,0,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,15,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,19,8,49,95888,805,1399,345,548,698,147,64655,46540,17348,6756,123,1.5,2,2,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,15,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,22,7,38,95942,1033,1399,347,763,838,144,93321,54964,17662,7323,160,2.1,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,15,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,23.3,6.6,34,95913,1207,1399,359,927,807,230,112014,58839,27923,11298,190,3.6,1,1,9900,77777,9,999999999,18,0,0,88,0.2,0,0 +2010,11,15,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,6,30,95994,1315,1399,360,1030,814,265,124905,60810,32302,12884,170,6.2,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,11,15,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,27,7,28,96029,1350,1399,371,1062,815,274,128890,60787,33505,13321,170,5.1,0,0,9900,77777,9,999999999,18,0,0,88,0.2,0,0 +2010,11,15,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,27.2,3.3,21,95800,1309,1399,389,957,658,341,113903,54575,40821,15644,220,7.7,5,5,9900,77777,9,999999999,13,0,0,88,0.2,0,0 +2010,11,15,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,28,5,23,96046,1196,1399,373,919,870,175,113256,59390,21701,8976,210,8.7,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,11,15,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,27,5,24,96029,1017,1399,369,751,763,196,89571,55463,23443,9444,210,8.2,0,0,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,11,15,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,25.7,6.7,30,95774,786,1399,400,359,170,264,40309,14492,29744,10191,220,8.7,8,8,9900,7500,9,999999999,18,0,0,88,0.2,0,0 +2010,11,15,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,24,6,31,95977,518,1399,355,297,407,146,33137,26795,16383,5379,220,8.2,0,0,9900,7500,9,999999999,17,0,0,88,0.2,0,0 +2010,11,15,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,22,6,35,95942,230,1399,346,83,170,55,9253,2649,6153,1878,200,8.2,0,0,9900,7500,9,999999999,17,0,0,88,0.2,0,0 +2010,11,15,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,20.8,6.1,38,96010,0,1125,382,0,0,0,0,0,0,0,170,5.7,9,9,9900,7500,9,999999999,17,0,0,88,0.2,0,0 +2010,11,15,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,19,5,40,95888,0,0,337,0,0,0,0,0,0,0,130,6.2,1,1,9900,7500,9,999999999,15,0,0,88,0.2,0,0 +2010,11,15,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,6,48,95852,0,0,334,0,0,0,0,0,0,0,160,4.6,2,2,9900,7500,9,999999999,17,0,0,88,0.2,0,0 +2010,11,15,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15.8,6.2,53,96166,0,0,332,0,0,0,0,0,0,0,160,4.1,3,3,9900,7500,9,999999999,17,0,0,88,0.2,0,0 +2010,11,15,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,7,63,95797,0,0,329,0,0,0,0,0,0,0,160,4.6,5,5,9900,7500,9,999999999,19,0,0,88,0.2,0,0 +2010,11,16,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,7,67,95778,0,0,325,0,0,0,0,0,0,0,160,3.6,5,5,9900,7500,9,999999999,19,0,0,88,0.2,0,0 +2010,11,16,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,12.8,6.8,67,96110,0,0,305,0,0,0,0,0,0,0,160,1.5,0,0,9900,7500,9,999999999,19,0,0,88,0.2,0,0 +2010,11,16,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,7,71,95759,0,0,323,0,0,0,0,0,0,0,140,2.1,6,6,9900,7500,9,999999999,19,0,0,88,0.2,0,0 +2010,11,16,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,7,71,95759,0,0,323,0,0,0,0,0,0,0,160,2.1,6,6,9900,7500,9,999999999,19,0,0,88,0.2,0,0 +2010,11,16,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,11.1,7.2,77,96153,0,0,299,0,0,0,0,0,0,0,170,2.1,0,0,9900,7500,9,999999999,19,0,0,88,0.2,0,0 +2010,11,16,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,11,7,76,95740,0,0,322,0,0,0,0,0,0,0,180,1.5,7,7,9900,7500,9,999999999,19,0,0,88,0.2,0,0 +2010,11,16,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,8,72,95778,255,1245,329,86,91,69,9432,2238,7628,2278,180,2.1,6,6,9900,7500,9,999999999,21,0,0,88,0.2,0,0 +2010,11,16,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,15.7,7.8,59,96259,541,1399,319,316,482,129,35787,29731,14701,5071,259,1,0,0,9900,7500,9,999999999,20,0,0,88,0.2,0,0 +2010,11,16,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,18,9,56,95870,808,1399,345,542,672,154,63611,45184,18151,7037,267,1,3,3,9900,7500,9,999999999,23,0,0,88,0.2,0,0 +2010,11,16,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,20,9,49,95906,1035,1399,351,759,826,148,92569,53691,18128,7513,127,1,2,2,9900,7500,9,999999999,23,0,0,88,0.2,0,0 +2010,11,16,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,22.3,8.3,41,96141,1209,1399,350,926,808,228,111966,58042,27731,11237,171,1,0,0,9900,7500,9,999999999,21,0,0,88,0.2,0,0 +2010,11,16,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,24,6,31,95977,1317,1399,355,1032,814,265,125123,60859,32367,12907,150,4.1,0,0,9900,7500,9,999999999,17,0,0,88,0.2,0,0 +2010,11,16,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,26,9,34,96011,1352,1399,385,1047,816,258,127582,58780,31644,12682,170,6.2,3,3,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,16,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,25,8.1,34,96037,1312,1399,378,1010,814,247,122995,58747,30284,12182,210,7.2,3,3,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,16,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,27,8,30,96029,1199,1399,388,906,867,162,112138,56883,20195,8398,210,7.2,3,3,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2010,11,16,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,26,6,28,96011,1021,1399,381,743,833,135,91132,54246,16647,6908,210,6.7,3,3,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,11,16,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,26.2,2.7,22,95934,790,1399,362,541,679,158,63354,48002,18550,7101,220,6.7,0,0,9900,77777,9,999999999,12,0,0,88,0.2,0,0 +2010,11,16,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,6,30,95994,522,1399,360,300,469,125,33946,28654,14229,4864,210,6.7,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,11,16,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,22,8,41,95942,235,1399,355,86,107,68,9350,2277,7418,2155,210,7.7,1,1,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,16,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17.9,8.9,56,96053,0,1147,347,0,0,0,0,0,0,0,200,7.2,4,4,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,16,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,9,59,95852,0,0,343,0,0,0,0,0,0,0,150,5.1,4,4,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,16,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,9,67,95815,0,0,336,0,0,0,0,0,0,0,160,5.7,5,5,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,16,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15,8.7,66,96217,0,0,331,0,0,0,0,0,0,0,170,5.1,3,3,9900,77777,9,999999999,22,0,0,88,0.2,0,0 +2010,11,16,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,9,72,95797,0,0,334,0,0,0,0,0,0,0,170,2.6,6,6,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,17,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,9,77,95778,0,0,334,0,0,0,0,0,0,0,170,2.1,7,7,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,17,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12.3,8.4,77,96072,0,0,326,0,0,0,0,0,0,0,150,3.6,6,6,9900,7500,9,999999999,22,0,0,88,0.2,0,0 +2010,11,17,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,8,76,95759,0,0,328,0,0,0,0,0,0,0,150,4.1,7,7,9900,7500,9,999999999,21,0,0,88,0.2,0,0 +2010,11,17,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,8,76,95759,0,0,328,0,0,0,0,0,0,0,200,2.6,7,7,9900,7500,9,999999999,21,0,0,88,0.2,0,0 +2010,11,17,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,10.3,7.8,84,96147,0,0,309,0,0,0,0,0,0,0,160,1.5,3,3,9900,7500,9,999999999,21,0,0,88,0.2,0,0 +2010,11,17,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,8,87,95721,0,0,295,0,0,0,0,0,0,0,350,2.1,0,0,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,17,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,8,82,95740,258,1259,299,100,113,79,10853,3306,8618,2475,210,1.5,0,0,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,17,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,14.9,8.6,66,96102,544,1400,338,277,311,156,30903,20879,17527,5785,226,0.5,6,6,8000,7500,9,999999999,22,0,0,88,0.2,0,0 +2010,11,17,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,10,63,95852,809,1400,347,525,584,188,60729,41845,21816,8229,180,3.6,5,5,9900,7500,9,999999999,25,0,0,88,0.2,0,0 +2010,11,17,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,19,10,56,95888,1037,1400,351,749,758,187,89687,52276,22558,9185,170,4.1,3,3,9900,7500,9,999999999,25,0,0,88,0.2,0,0 +2010,11,17,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,21.3,9.4,47,96029,1211,1400,370,809,561,324,95154,45244,38334,14753,180,4.6,6,6,9900,7500,9,999999999,24,0,0,88,0.2,0,0 +2010,11,17,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,10,44,95959,1319,1400,362,1026,859,217,126150,58628,26840,10938,170,5.1,1,1,9900,7500,9,999999999,25,0,0,88,0.2,0,0 +2010,11,17,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,10,39,95994,1354,1400,372,1060,864,225,130000,59156,27811,11300,160,6.2,1,1,9900,7500,9,999999999,25,0,0,88,0.2,0,0 +2010,11,17,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,25.3,9.8,38,95909,1314,1400,391,893,632,300,107122,48050,36164,14206,220,6.7,6,6,9900,7500,9,999999999,24,0,0,88,0.2,0,0 +2010,11,17,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,10,39,95994,1201,1400,372,917,725,295,108461,56276,35054,13723,220,8.7,1,1,9900,7500,9,999999999,25,0,0,88,0.2,0,0 +2010,11,17,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,25,10,39,95994,1024,1400,409,388,57,346,44141,4999,39643,14361,220,7.7,9,9,9900,7500,9,999999999,25,0,0,88,0.2,0,0 +2010,11,17,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,24.3,10.8,43,95864,793,1400,407,277,21,265,31067,1748,29902,10290,210,6.7,9,9,9900,7500,9,999999999,27,0,0,88,0.2,0,0 +2010,11,17,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,22,11,50,95942,525,1400,395,155,19,148,17301,1201,16588,5474,210,6.2,9,9,9900,7500,9,999999999,28,0,0,88,0.2,0,0 +2010,11,17,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,11,56,95906,239,1400,357,86,125,65,9444,2340,7125,2116,210,6.2,3,3,9900,7500,9,999999999,28,0,0,88,0.2,0,0 +2010,11,17,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17.9,10.4,61,95987,0,1169,365,0,0,0,0,0,0,0,200,7.2,8,8,9900,7500,9,999999999,26,0,0,88,0.2,0,0 +2010,11,17,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,10,63,95852,0,0,347,0,0,0,0,0,0,0,140,4.1,5,5,9900,7500,9,999999999,25,0,0,88,0.2,0,0 +2010,11,17,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,10,72,95815,0,0,340,0,0,0,0,0,0,0,140,4.6,6,6,9900,7500,9,999999999,25,0,0,88,0.2,0,0 +2010,11,17,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14.2,9.7,74,96127,0,0,336,0,0,0,0,0,0,0,150,4.6,6,6,9900,7500,9,999999999,25,0,0,88,0.2,0,0 +2010,11,17,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,9,77,95778,0,0,334,0,0,0,0,0,0,0,170,5.1,7,7,9900,7500,9,999999999,23,0,0,88,0.2,0,0 +2010,11,18,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,9,82,95759,0,0,334,0,0,0,0,0,0,0,160,4.6,8,8,9900,7500,9,999999999,23,0,0,88,0.2,0,0 +2010,11,18,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11.5,9.5,88,95991,0,0,340,0,0,0,0,0,0,0,180,4.6,9,9,9900,1200,9,999999999,24,0,0,88,0.2,0,0 +2010,11,18,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,9,82,95759,0,0,341,0,0,0,0,0,0,0,160,3.1,9,9,9900,600,9,999999999,23,0,0,88,0.2,0,0 +2010,11,18,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,9,87,95740,0,0,337,0,0,0,0,0,0,0,160,3.6,9,9,7000,150,0,999999999,23,0,0,88,0.2,0,0 +2010,11,18,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,9,87,95740,0,0,318,0,0,0,0,0,0,0,150,3.6,5,5,7000,77777,0,999999999,23,0,0,88,0.2,0,0 +2010,11,18,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,10,94,95740,0,0,347,0,0,0,0,0,0,0,150,4.1,10,10,5000,90,0,999999999,26,0,0,88,0.2,0,0 +2010,11,18,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,9,87,95740,260,1272,346,32,0,32,3113,0,3136,1265,170,3.1,10,10,5000,120,0,999999999,23,0,0,88,0.2,0,0 +2010,11,18,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.9,9.1,89,96121,546,1400,346,100,0,100,10058,0,10140,4197,220,1.5,10,10,5000,150,0,999999999,23,0,0,88,0.2,0,0 +2010,11,18,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,9,77,95778,811,1400,346,286,50,257,32306,4125,29203,10258,32,1,9,9,7000,240,0,999999999,23,0,0,88,0.2,0,0 +2010,11,18,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,10,68,95834,1039,1400,337,754,680,250,88364,51791,29468,11557,127,1.5,3,3,7000,77777,0,999999999,25,0,0,88,0.2,0,0 +2010,11,18,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19.2,10.7,58,95953,1213,1400,353,914,865,165,113111,55511,20501,8526,113,1.5,3,3,7000,77777,0,999999999,27,0,0,88,0.2,0,0 +2010,11,18,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,21,10,49,95924,1321,1400,361,1016,894,172,127004,57383,21648,8952,180,4.6,3,3,7000,77777,0,999999999,25,0,0,88,0.2,0,0 +2010,11,18,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,23,10,44,95959,1356,1400,371,1049,895,182,130000,57875,22849,9413,200,7.7,3,3,7000,77777,0,999999999,25,0,0,88,0.2,0,0 +2010,11,18,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,23.2,9.7,42,95816,1316,1400,371,1012,895,171,126588,57516,21485,8887,210,8.2,3,3,7000,77777,0,999999999,24,0,0,88,0.2,0,0 +2010,11,18,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,23,9,41,95959,1204,1400,369,909,867,163,112503,56431,20316,8448,220,9.3,3,3,7000,77777,0,999999999,23,0,0,88,0.2,0,0 +2010,11,18,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,22,9,43,95942,1027,1400,364,745,804,155,90375,53003,18927,7808,200,7.7,3,3,7000,77777,0,999999999,23,0,0,88,0.2,0,0 +2010,11,18,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,20.9,8.8,46,95870,797,1400,359,535,677,149,62833,45210,17633,6828,200,6.7,3,3,7000,77777,0,999999999,22,0,0,88,0.2,0,0 +2010,11,18,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,20,9,49,95906,529,1400,355,301,450,131,33943,27490,14809,5050,210,6.7,3,3,7000,77777,0,999999999,23,0,0,88,0.2,0,0 +2010,11,18,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18,9,56,95870,243,1400,345,89,109,70,9750,2513,7717,2246,210,5.7,3,3,7000,77777,0,999999999,23,0,0,88,0.2,0,0 +2010,11,18,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,16.3,8.6,60,95986,0,1191,323,0,0,0,0,0,0,0,190,5.1,0,0,7000,77777,9,999999999,22,0,0,88,0.2,0,0 +2010,11,18,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,9,67,95815,0,0,336,0,0,0,0,0,0,0,150,4.1,5,5,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,18,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,8,67,95797,0,0,330,0,0,0,0,0,0,0,160,3.1,5,5,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,18,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,12.8,7.8,72,96053,0,0,322,0,0,0,0,0,0,0,150,2.6,4,4,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2010,11,18,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,8,76,95759,0,0,328,0,0,0,0,0,0,0,160,3.1,7,7,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,19,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,11,8,82,95740,0,0,329,0,0,0,0,0,0,0,160,3.1,8,8,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,19,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,10,8,87,95721,0,0,331,0,0,0,0,0,0,0,170,5.1,9,9,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,19,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,10,8,87,95721,0,0,331,0,0,0,0,0,0,0,140,3.1,9,9,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,19,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,9,8,93,95702,0,0,335,0,0,0,0,0,0,0,160,2.6,10,10,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,19,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,8,7,93,95683,0,0,303,0,0,0,0,0,0,0,224,0.5,5,5,8000,77777,0,999999999,19,0,0,88,0.2,0,0 +2010,11,19,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,8,93,95702,0,0,326,0,0,0,0,0,0,0,170,1.5,9,9,5000,7500,0,999999999,21,0,0,88,0.2,0,0 +2010,11,19,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,8,87,95721,262,1284,331,53,0,53,5172,0,5210,1911,150,1.5,9,9,4000,60,0,999999999,21,0,0,88,0.2,0,0 +2010,11,19,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12.3,8.4,77,95949,547,1401,323,298,338,166,33102,23452,18525,6027,313,1,5,5,8000,7500,0,999999999,22,0,0,88,0.2,0,0 +2010,11,19,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,15,8,63,95815,813,1401,335,530,619,171,61777,43449,19992,7658,46,0.5,5,5,9900,7500,0,999999999,21,0,0,88,0.2,0,0 +2010,11,19,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,9,59,95852,1040,1401,343,745,730,202,88724,52009,24198,9776,220,1.5,4,4,9900,7500,0,999999999,23,0,0,88,0.2,0,0 +2010,11,19,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18.8,6.6,45,95861,1214,1401,355,815,567,323,96004,46508,38333,14742,170,2.6,6,6,9900,7500,0,999999999,18,0,0,88,0.2,0,0 +2010,11,19,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,7,40,95924,1323,1401,349,1035,882,202,128095,60400,25120,10280,160,3.6,1,1,9900,7500,0,999999999,19,0,0,88,0.2,0,0 +2010,11,19,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,22,6,35,95942,1358,1401,346,1070,663,427,125763,58634,50505,18499,150,3.6,0,0,9900,7500,0,999999999,17,0,0,88,0.2,0,0 +2010,11,19,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,22.2,5.6,34,95780,1319,1401,389,534,84,455,62078,7704,53300,19062,180,5.7,9,9,9900,6000,0,999999999,16,0,0,88,0.2,0,0 +2010,11,19,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,22,7,38,95942,1207,1401,389,478,50,435,54939,4679,50309,17903,180,7.2,9,9,9900,6000,0,999999999,19,0,0,88,0.2,0,0 +2010,11,19,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,22,9,43,95942,1030,1401,392,391,67,342,44616,5852,39256,14297,210,6.7,9,9,9900,4800,0,999999999,23,0,0,88,0.2,0,0 +2010,11,19,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,21.1,7.9,43,95779,800,1401,386,281,22,269,31589,1838,30379,10436,220,6.2,9,9,9900,5100,0,999999999,20,0,0,88,0.2,0,0 +2010,11,19,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,20,8,46,95906,533,1401,380,159,6,157,17704,405,17530,5722,210,5.1,9,9,9900,6000,0,999999999,21,0,0,88,0.2,0,0 +2010,11,19,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19,8,49,95888,247,1401,375,48,0,48,4694,0,4728,1741,160,4.6,9,9,9900,6000,0,999999999,21,0,0,88,0.2,0,0 +2010,11,19,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17.1,7.6,54,95859,0,1213,365,0,0,0,0,0,0,0,160,4.1,9,9,9900,6000,9,999999999,20,0,0,88,0.2,0,0 +2010,11,19,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16,8,59,95834,0,0,360,0,0,0,0,0,0,0,150,3.1,9,9,9900,6000,9,999999999,21,0,0,88,0.2,0,0 +2010,11,19,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16,8,59,95834,0,0,360,0,0,0,0,0,0,0,160,3.1,9,9,9900,6000,9,999999999,21,0,0,88,0.2,0,0 +2010,11,19,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14.7,8,64,95881,0,0,353,0,0,0,0,0,0,0,160,3.6,9,9,9900,6000,9,999999999,21,0,0,88,0.2,0,0 +2010,11,19,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,8,67,95797,0,0,350,0,0,0,0,0,0,0,160,2.6,9,9,9900,5400,9,999999999,21,0,0,88,0.2,0,0 +2010,11,20,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,8,72,95778,0,0,345,0,0,0,0,0,0,0,160,3.1,9,9,9900,5400,9,999999999,21,0,0,88,0.2,0,0 +2010,11,20,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12.9,7.9,72,95932,0,0,345,0,0,0,0,0,0,0,140,4.1,9,9,9900,5400,9,999999999,21,0,0,88,0.2,0,0 +2010,11,20,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,8,76,95759,0,0,340,0,0,0,0,0,0,0,150,3.6,9,9,9900,5400,9,999999999,21,0,0,88,0.2,0,0 +2010,11,20,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,7,71,95759,0,0,339,0,0,0,0,0,0,0,130,4.1,9,9,9900,5400,9,999999999,19,0,0,88,0.2,0,0 +2010,11,20,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,11.6,7.3,75,96125,0,0,338,0,0,0,0,0,0,0,150,3.6,9,9,9900,5400,9,999999999,20,0,0,88,0.2,0,0 +2010,11,20,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,12,7,71,95759,0,0,339,0,0,0,0,0,0,0,134,1,9,9,9900,5400,9,999999999,19,0,0,88,0.2,0,0 +2010,11,20,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,12,8,76,95759,264,1296,340,53,0,53,5237,0,5275,1934,300,3.1,9,9,9900,5400,9,999999999,21,0,0,88,0.2,0,0 +2010,11,20,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13.4,7.9,69,96131,549,1402,347,166,48,147,18654,3178,16598,5589,20,3.1,9,9,9900,5100,9,999999999,21,0,0,88,0.2,0,0 +2010,11,20,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,16,8,59,95834,815,1402,340,520,534,209,59647,40531,24130,8931,190,1,5,5,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,20,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18,8,52,95870,1042,1402,344,759,770,187,91080,53878,22537,9177,190,2.6,3,3,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,20,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,20.4,7.8,44,96183,1216,1402,347,933,809,230,112726,58462,27978,11324,190,5.7,1,1,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2010,11,20,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,22,7,38,95942,1324,1402,362,1023,816,252,124579,59562,30897,12398,180,5.1,3,3,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,20,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,24,8,36,95977,1360,1402,373,1055,817,262,128638,59511,32083,12834,150,5.7,3,3,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2010,11,20,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,24.7,7.3,33,96070,1321,1402,376,1020,815,251,124143,59373,30729,12339,160,4.6,3,3,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,20,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,25,9,36,95994,1209,1402,379,913,868,164,113109,56545,20385,8475,200,7.2,3,3,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,20,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,24,9,38,95977,1033,1402,374,750,806,156,91038,53170,19045,7860,220,7.7,3,3,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,20,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,23,9.3,42,96040,803,1402,370,540,681,150,63504,45279,17682,6863,220,8.7,3,3,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,20,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,21,9,46,95924,537,1402,359,307,455,132,34635,28050,15001,5130,210,8.7,3,3,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,20,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,19,9,52,95888,251,1402,350,94,123,72,10325,3075,7941,2322,220,7.7,3,3,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,20,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,16.8,8.2,57,96260,0,1235,324,0,0,0,0,0,0,0,200,5.7,0,0,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,20,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,6,51,95834,0,0,332,0,0,0,0,0,0,0,200,6.7,3,3,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,11,20,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,7,59,95815,0,0,331,0,0,0,0,0,0,0,140,3.1,4,4,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,20,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,14.4,6.1,57,96461,0,0,312,0,0,0,0,0,0,0,140,3.1,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,11,20,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,6,62,95778,0,0,321,0,0,0,0,0,0,0,160,2.6,4,4,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,11,21,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,6,62,95778,0,0,321,0,0,0,0,0,0,0,190,2.6,4,4,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,11,21,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,12.6,6.4,66,96399,0,0,304,0,0,0,0,0,0,0,230,1.5,0,0,9900,77777,9,999999999,18,0,0,88,0.2,0,0 +2010,11,21,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,7,71,95759,0,0,323,0,0,0,0,0,0,0,140,2.1,6,6,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,21,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,8,76,95759,0,0,328,0,0,0,0,0,0,0,180,1.5,7,7,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,21,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,10.4,6.2,75,96404,0,0,307,0,0,0,0,0,0,0,250,1.5,3,3,9900,77777,9,999999999,18,0,0,88,0.2,0,0 +2010,11,21,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,10,7,82,95721,0,0,307,0,0,0,0,0,0,0,205,0,3,3,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,21,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,12,8,76,95759,266,1307,316,103,137,77,11297,4016,8490,2489,323,0.5,3,3,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,21,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,14.5,7.5,63,96482,551,1402,327,319,471,134,36126,29687,15263,5254,294,1,3,3,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2010,11,21,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,17,8,55,95852,816,1402,339,552,685,154,64991,46400,18143,7051,68,1,3,3,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,21,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,19,8,49,95888,1043,1402,345,767,830,150,93588,54496,18334,7597,160,4.1,2,2,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,21,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,20,8.3,47,96432,1217,1402,357,902,798,210,109845,55783,25655,10482,160,4.1,4,4,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,21,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,22,8,41,95942,1326,1402,355,1036,816,264,125682,60052,32248,12878,170,3.6,1,1,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,21,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,24,7,34,95977,1362,1402,372,1058,818,264,129028,60079,32337,12919,160,4.6,3,3,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,21,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,25,8,34,95994,1323,1402,378,1021,816,251,124258,59058,30675,12324,220,6.7,3,3,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2010,11,21,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,25,9,36,95994,1212,1402,379,916,869,164,113414,56603,20413,8485,230,7.2,3,3,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,21,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,25,9,36,95994,1036,1402,379,753,770,184,90282,53256,22135,9021,230,7.7,3,3,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,21,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,23.9,8.9,38,96112,807,1402,383,481,444,225,54775,34615,25766,9347,220,7.2,6,6,9900,7500,9,999999999,22,0,0,88,0.2,0,0 +2010,11,21,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,24,8,36,95977,541,1402,379,293,335,164,32513,23125,18264,5925,220,7.2,5,5,9900,7500,9,999999999,20,0,0,88,0.2,0,0 +2010,11,21,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,21,9,46,95924,255,1402,387,51,0,51,4945,0,4981,1831,210,7.2,9,9,9900,5400,9,999999999,23,0,0,88,0.2,0,0 +2010,11,21,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19.7,7.8,46,96161,0,1257,378,0,0,0,0,0,0,0,210,4.1,9,9,9900,6600,9,999999999,20,0,0,88,0.2,0,0 +2010,11,21,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19,9,52,95888,0,0,350,0,0,0,0,0,0,0,210,3.1,3,3,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,21,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,18,9,56,95870,0,0,350,0,0,0,0,0,0,0,150,3.1,5,5,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,21,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16.6,9.6,63,96133,0,0,365,0,0,0,0,0,0,0,150,3.1,9,9,9900,6600,9,999999999,24,0,0,88,0.2,0,0 +2010,11,21,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,16,10,68,95834,0,0,342,0,0,0,0,0,0,0,150,3.1,5,5,9900,6600,9,999999999,25,0,0,88,0.2,0,0 +2010,11,22,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,10,72,95815,0,0,357,0,0,0,0,0,0,0,150,2.6,9,9,9900,5400,9,999999999,25,0,0,88,0.2,0,0 +2010,11,22,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,14.9,9.4,70,95951,0,0,356,0,0,0,0,0,0,0,150,1,9,9,9900,5400,9,999999999,24,0,0,88,0.2,0,0 +2010,11,22,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,15,10,72,95815,0,0,357,0,0,0,0,0,0,0,111,0,9,9,9900,5400,9,999999999,25,0,0,88,0.2,0,0 +2010,11,22,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,14,9,72,95797,0,0,351,0,0,0,0,0,0,0,143,1,9,9,9900,5400,9,999999999,23,0,0,88,0.2,0,0 +2010,11,22,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13.3,9.8,79,95930,0,0,349,0,0,0,0,0,0,0,327,1,9,9,8000,5400,9,999999999,25,0,0,88,0.2,0,0 +2010,11,22,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,9,77,95778,0,0,346,0,0,0,0,0,0,0,137,0.5,9,9,8000,5400,9,999999999,23,0,0,88,0.2,0,0 +2010,11,22,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,15,10,72,95815,268,1318,337,98,133,73,10782,3511,8021,2406,146,0.5,5,5,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2010,11,22,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,16.9,10.2,65,95959,552,1403,341,319,466,136,36040,28834,15386,5297,267,1,3,3,8000,77777,9,999999999,26,0,0,88,0.2,0,0 +2010,11,22,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,19,11,60,95888,817,1403,355,540,648,162,63146,43561,18995,7351,290,1.5,4,4,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2010,11,22,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,11,53,95924,1044,1403,362,760,780,179,91354,52504,21573,8838,260,2.1,3,3,9900,77777,9,999999999,28,0,0,88,0.2,0,0 +2010,11,22,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,22.9,10.5,45,95896,1218,1403,376,867,683,274,103313,51176,32803,13008,275,2.1,5,5,9900,7500,9,999999999,26,0,0,88,0.2,0,0 +2010,11,22,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,24,9,38,95977,1327,1403,380,964,600,396,113354,50992,46899,17461,180,4.1,5,5,9900,7500,9,999999999,23,0,0,88,0.2,0,0 +2010,11,22,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,25,10,39,95994,1364,1403,409,552,81,473,64246,7348,55430,19762,160,5.1,9,9,9900,7500,9,999999999,25,0,0,88,0.2,0,0 +2010,11,22,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,27.2,8.7,31,95809,1325,1403,420,534,82,457,62099,7456,53447,19133,210,5.7,9,9,9900,7500,9,999999999,22,0,0,88,0.2,0,0 +2010,11,22,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,27,8,30,96029,1214,1403,394,867,594,352,101371,50049,41426,15653,210,5.1,5,5,9900,7500,9,999999999,20,0,0,88,0.2,0,0 +2010,11,22,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,27,9,32,96029,1039,1403,396,712,663,221,84240,48690,26286,10494,220,6.2,5,5,9900,7500,9,999999999,23,0,0,88,0.2,0,0 +2010,11,22,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,27,8,30,96029,810,1403,388,547,683,152,64364,46190,18011,6989,220,7.2,3,3,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2010,11,22,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,25,7,32,95994,544,1403,377,314,467,133,35534,29360,15093,5181,220,7.7,3,3,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,22,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,8,38,95959,259,1403,353,101,137,75,10994,3794,8252,2415,210,8.2,0,0,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,22,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,21.5,9.1,45,95871,0,1279,362,0,0,0,0,0,0,0,190,6.7,3,3,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,22,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,9,49,95906,0,0,351,0,0,0,0,0,0,0,200,6.2,2,2,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,22,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,9,49,95906,0,0,351,0,0,0,0,0,0,0,150,3.1,2,2,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,22,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,18.1,9.3,56,95981,0,0,332,0,0,0,0,0,0,0,140,2.6,0,0,9900,77777,9,999999999,24,0,0,88,0.2,0,0 +2010,11,22,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,9,59,95852,0,0,343,0,0,0,0,0,0,0,160,2.1,4,4,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,23,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,9,63,95834,0,0,341,0,0,0,0,0,0,0,160,3.1,5,5,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,23,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,14.1,8.5,69,95917,0,0,313,0,0,0,0,0,0,0,170,2.1,0,0,9900,77777,9,999999999,22,0,0,88,0.2,0,0 +2010,11,23,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,8,63,95815,0,0,335,0,0,0,0,0,0,0,150,2.1,5,5,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,23,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,8,72,95778,0,0,329,0,0,0,0,0,0,0,160,1.5,6,6,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,23,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,13.1,7.9,71,95955,0,0,308,0,0,0,0,0,0,0,285,1,0,0,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,23,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14,8,67,95797,0,0,330,0,0,0,0,0,0,0,246,1.5,5,5,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,23,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,15,9,67,95815,269,1328,336,98,131,73,10811,3575,8084,2423,99,0.5,5,5,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,23,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17.1,9.5,61,96048,554,1403,327,325,488,132,36772,30042,15036,5207,40,2.1,0,0,9900,77777,9,999999999,24,0,0,88,0.2,0,0 +2010,11,23,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,19,10,56,95888,818,1403,351,550,678,154,64635,45230,18176,7074,270,1.5,3,3,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2010,11,23,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,22,9,43,95942,1046,1403,356,771,839,146,94226,54268,17916,7440,18,1.5,1,1,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,23,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,24,9.3,39,95915,1220,1403,359,934,810,230,112936,57805,27905,11306,170,3.6,0,0,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,23,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,9,34,96011,1329,1403,369,1038,817,264,125841,59611,32198,12866,160,5.1,0,0,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,23,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,27,9,32,96029,1366,1403,390,1058,818,262,129039,59101,32082,12840,170,4.6,3,3,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,23,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,28.4,8.7,29,95763,1327,1403,397,1023,817,251,124606,58787,30706,12339,160,6.2,3,3,9900,77777,9,999999999,22,0,0,88,0.2,0,0 +2010,11,23,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,30,8,25,96079,1217,1403,404,922,874,163,114314,57294,20358,8460,180,6.2,3,3,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2010,11,23,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,28,8,28,96046,1042,1403,394,759,810,158,92240,53981,19229,7939,210,7.2,3,3,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2010,11,23,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,28.4,7.2,26,95669,813,1403,395,551,684,154,64803,46690,18194,7058,210,6.7,3,3,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,23,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,27,9,32,96029,548,1403,390,316,466,134,35739,28981,15240,5238,210,8.2,3,3,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,23,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,24,9,38,95977,264,1403,374,102,134,76,11110,3769,8394,2460,210,7.2,3,3,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,23,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,21.8,8.6,43,95744,0,1300,348,0,0,0,0,0,0,0,210,6.7,0,0,9900,77777,9,999999999,22,0,0,88,0.2,0,0 +2010,11,23,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,21,8,43,95924,0,0,358,0,0,0,0,0,0,0,190,6.7,3,3,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,23,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,8,46,95906,0,0,350,0,0,0,0,0,0,0,150,3.1,2,2,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,23,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,18.5,8.2,51,95893,0,0,332,0,0,0,0,0,0,0,150,3.6,0,0,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,23,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18,8,52,95870,0,0,344,0,0,0,0,0,0,0,160,2.6,3,3,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,24,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,8,55,95852,0,0,339,0,0,0,0,0,0,0,150,2.1,3,3,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,24,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15.3,8.2,63,95816,0,0,318,0,0,0,0,0,0,0,170,2.6,0,0,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,24,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,9,67,95815,0,0,336,0,0,0,0,0,0,0,160,2.1,5,5,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,24,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,8,67,95797,0,0,330,0,0,0,0,0,0,0,150,2.6,5,5,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,24,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,8,67,95797,0,0,330,0,0,0,0,0,0,0,160,1.5,5,5,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,24,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,13,8,72,95778,0,0,329,0,0,0,0,0,0,0,93,1,6,6,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,24,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,8,67,95797,271,1337,312,107,148,79,11746,4504,8664,2542,289,1,0,0,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,24,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18.9,9.5,54,95844,555,1404,335,325,487,133,36847,30081,15086,5225,95,1,0,0,8000,77777,9,999999999,24,0,0,88,0.2,0,0 +2010,11,24,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,9,46,95924,820,1404,359,554,688,153,65254,46116,18043,7028,242,0.5,3,3,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,24,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,23,9,41,95959,1047,1404,369,762,810,158,92604,53544,19305,7977,180,1.5,3,3,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,24,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,25.1,9.7,38,95688,1221,1404,365,935,873,175,115283,57374,21701,8990,170,3.1,0,0,8000,77777,9,999999999,24,0,0,88,0.2,0,0 +2010,11,24,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,9,34,96011,1330,1404,369,1039,817,264,125975,59640,32228,12877,170,6.2,0,0,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,24,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,28,9,30,96046,1367,1404,379,1074,819,276,130000,60128,33691,13402,170,7.2,0,0,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,24,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,28.3,8.6,29,95591,1329,1404,380,1039,817,265,125968,59865,32289,12896,220,7.2,0,0,9900,77777,9,999999999,22,0,0,88,0.2,0,0 +2010,11,24,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,29,8,27,96063,1219,1404,382,936,811,231,113100,58539,28111,11374,210,8.2,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2010,11,24,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,28,8,28,96046,1044,1404,377,772,841,145,94331,54843,17860,7413,210,8.7,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2010,11,24,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,27.3,7.2,28,95555,817,1404,389,554,685,155,65120,46803,18291,7099,210,8.2,3,3,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,24,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,9,36,95994,552,1404,364,323,486,132,36599,30046,14999,5188,210,10.3,0,0,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,24,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,22,9,43,95942,268,1404,356,105,143,78,11502,4188,8545,2506,210,9.3,1,1,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,24,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,20.4,7.6,44,95700,0,1322,340,0,0,0,0,0,0,0,200,7.7,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2010,11,24,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,7,43,95906,0,0,344,0,0,0,0,0,0,0,140,5.1,1,1,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,24,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18,8,52,95870,0,0,344,0,0,0,0,0,0,0,140,4.1,3,3,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,24,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,16.9,8.4,57,95864,0,0,325,0,0,0,0,0,0,0,160,5.7,0,0,9900,77777,9,999999999,22,0,0,88,0.2,0,0 +2010,11,24,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,8,63,95815,0,0,335,0,0,0,0,0,0,0,160,2.6,5,5,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,25,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,8,63,95815,0,0,335,0,0,0,0,0,0,0,170,3.6,5,5,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,25,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,13.4,8.2,71,95875,0,0,309,0,0,0,0,0,0,0,150,2.1,0,0,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,25,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,8,72,95778,0,0,329,0,0,0,0,0,0,0,170,3.1,6,6,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,25,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,8,76,95759,0,0,328,0,0,0,0,0,0,0,170,3.1,7,7,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,25,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,11.9,8.3,79,95923,0,0,303,0,0,0,0,0,0,0,150,1.5,0,0,9900,77777,9,999999999,22,0,0,88,0.2,0,0 +2010,11,25,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,7,76,95740,0,0,298,0,0,0,0,0,0,0,320,1.5,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,25,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,9,77,95778,272,1346,309,108,148,79,11812,4487,8707,2556,262,0,0,0,7000,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,25,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15.3,8.6,64,96081,556,1404,318,327,490,132,37019,30494,15079,5225,170,4.1,0,0,7000,77777,9,999999999,22,0,0,88,0.2,0,0 +2010,11,25,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18,9,56,95870,820,1404,345,552,677,156,64871,45755,18445,7166,160,4.6,3,3,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,25,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,9,46,95924,1048,1404,356,772,836,148,94218,54250,18112,7518,160,3.6,2,2,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,25,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,22.9,8.7,40,96010,1222,1404,353,937,811,231,113250,58201,28054,11357,160,3.6,0,0,9900,77777,9,999999999,22,0,0,88,0.2,0,0 +2010,11,25,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,9,36,95994,1331,1404,364,1040,817,264,126107,59675,32265,12890,180,5.7,0,0,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,25,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,9,34,96011,1369,1404,369,1075,819,276,130000,60163,33735,13417,160,5.7,0,0,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,25,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,27.8,7.3,27,95886,1331,1404,375,1042,817,267,126430,60607,32601,12999,170,6.2,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,25,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,28,7,26,96046,1222,1404,376,939,811,233,113532,59113,28363,11460,220,8.2,0,0,9900,77777,9,999999999,18,0,0,88,0.2,0,0 +2010,11,25,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,28,6,25,96046,1047,1404,375,777,841,149,94867,55974,18306,7584,210,7.7,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,11,25,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,27.3,7.2,28,95783,820,1404,373,564,713,147,66613,47907,17457,6823,210,8.7,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,25,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,9,36,95994,556,1404,364,326,490,132,36967,30346,15073,5222,210,8.2,0,0,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,25,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,8,38,95959,272,1404,353,108,149,79,11813,4572,8696,2552,210,6.7,0,0,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,25,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,20.3,8,45,95869,0,1344,340,0,0,0,0,0,0,0,200,6.7,0,0,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,25,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,19,9,52,95888,0,0,350,0,0,0,0,0,0,0,160,4.1,3,3,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,25,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18,9,56,95870,0,0,345,0,0,0,0,0,0,0,150,4.1,3,3,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,25,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,16.3,9.5,64,95948,0,0,324,0,0,0,0,0,0,0,160,4.6,0,0,9900,77777,9,999999999,24,0,0,88,0.2,0,0 +2010,11,25,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,9,67,95815,0,0,336,0,0,0,0,0,0,0,170,3.6,5,5,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,26,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,9,72,95797,0,0,334,0,0,0,0,0,0,0,160,3.6,6,6,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,26,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,13.5,9,74,95830,0,0,311,0,0,0,0,0,0,0,170,2.1,0,0,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,26,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,9,72,95797,0,0,334,0,0,0,0,0,0,0,170,2.1,6,6,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,26,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,9,82,95759,0,0,334,0,0,0,0,0,0,0,270,1,8,8,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,26,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,11.2,8.6,84,95787,0,0,300,0,0,0,0,0,0,0,349,1,0,0,9900,77777,9,999999999,22,0,0,88,0.2,0,0 +2010,11,26,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,12,8,76,95759,0,0,328,0,0,0,0,0,0,0,264,1,7,7,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,26,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,9,72,95797,273,1353,334,95,104,75,10442,2965,8239,2470,240,1.5,6,6,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,26,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17.1,9.9,63,95887,557,1405,328,327,488,133,36996,30081,15145,5248,150,1.5,0,0,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2010,11,26,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,20,10,53,95906,821,1405,356,556,695,150,65546,45890,17715,6922,208,1,3,3,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2010,11,26,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,23,10,44,95959,1048,1405,362,772,838,146,94278,53757,17960,7462,48,0.5,1,1,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2010,11,26,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,24,10.2,42,95821,1223,1405,360,936,811,229,113091,57371,27828,11283,170,3.6,0,0,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2010,11,26,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,9,34,96011,1333,1405,369,1041,818,265,126238,59715,32309,12906,160,6.2,0,0,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,26,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,28,9,30,96046,1370,1405,379,1076,819,277,130000,60210,33798,13440,200,5.7,0,0,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,26,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,28,7.9,28,95766,1333,1405,377,1043,818,267,126534,60339,32558,12987,220,5.7,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2010,11,26,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,29,8,27,96063,1224,1405,382,940,882,171,116265,58433,21303,8829,220,7.2,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2010,11,26,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,29,9,29,96063,1050,1405,400,766,812,158,93036,53673,19326,7989,210,8.2,3,3,9900,77777,9,999999999,22,0,0,88,0.2,0,0 +2010,11,26,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,26.9,7.6,29,95709,823,1405,387,559,689,155,65810,46939,18341,7135,210,8.2,3,3,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2010,11,26,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,25,7,32,95994,559,1405,377,326,478,136,36946,30496,15438,5331,200,9.3,3,3,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,26,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,7,36,95959,276,1405,352,111,154,81,12118,4952,8846,2597,210,8.7,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,26,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,21,5.7,37,95834,0,1365,347,0,0,0,0,0,0,0,180,7.7,1,1,9900,77777,9,999999999,16,0,0,88,0.2,0,0 +2010,11,26,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,6,38,95924,0,0,341,0,0,0,0,0,0,0,150,4.1,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,11,26,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,19,5,40,95888,0,0,337,0,0,0,0,0,0,0,160,5.1,1,1,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,11,26,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17.4,4.4,42,95902,0,0,323,0,0,0,0,0,0,0,150,4.6,0,0,9900,77777,9,999999999,14,0,0,88,0.2,0,0 +2010,11,26,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,5,48,95834,0,0,328,0,0,0,0,0,0,0,170,3.1,2,2,9900,77777,9,999999999,15,0,0,88,0.2,0,0 +2010,11,27,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,6,55,95815,0,0,328,0,0,0,0,0,0,0,160,3.1,3,3,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,11,27,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,13.5,6,60,95896,0,0,308,0,0,0,0,0,0,0,160,3.6,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,11,27,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,6,62,95778,0,0,321,0,0,0,0,0,0,0,160,2.6,4,4,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,11,27,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,6,67,95759,0,0,319,0,0,0,0,0,0,0,150,3.1,5,5,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,11,27,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,11.1,6.4,73,95964,0,0,313,0,0,0,0,0,0,0,160,3.6,4,4,9900,77777,9,999999999,18,0,0,88,0.2,0,0 +2010,11,27,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,6,67,95759,0,0,319,0,0,0,0,0,0,0,140,4.1,5,5,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,11,27,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,6,67,95759,274,1360,319,101,137,75,11163,4103,8253,2474,180,3.1,5,5,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,11,27,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,14.5,6.1,57,96066,558,1405,312,329,498,132,37393,31505,15018,5209,170,2.6,0,0,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,11,27,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,6,48,95852,822,1405,334,564,701,154,66479,48188,18218,7084,160,1.5,2,2,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,11,27,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,19,7,46,95888,1049,1405,344,775,839,148,94732,55387,18179,7539,160,3.1,2,2,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,27,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.8,7,38,96047,1224,1405,346,941,812,234,113720,59163,28396,11473,160,3.1,0,0,9000,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,27,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,7,36,95959,1334,1405,352,1045,818,268,126724,60817,32711,13036,170,5.1,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,27,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,24,8,36,95977,1372,1405,373,1065,820,265,129888,59795,32453,12967,220,6.2,3,3,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2010,11,27,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,24.4,8.2,36,95960,1335,1405,375,1031,818,253,125532,59221,31027,12453,220,7.7,3,3,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,27,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,25,9,36,95994,1226,1405,379,929,874,165,115126,56918,20589,8552,210,8.2,3,3,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,27,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,24,9,38,95977,1053,1405,374,768,812,159,93326,53739,19400,8021,210,8.2,3,3,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,27,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,23,10,44,95959,827,1405,371,560,693,152,65962,45979,17949,7016,210,8.7,3,3,9900,77777,9,999999999,25,0,0,88,0.2,0,0 +2010,11,27,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,9,46,95924,563,1405,356,332,493,134,37607,30800,15280,5306,200,8.7,2,2,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,27,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,19,9,52,95888,280,1405,350,112,151,82,12243,4856,8985,2642,210,6.7,3,3,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,27,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17.7,8.7,56,96078,0,1386,329,0,0,0,0,0,0,0,190,6.7,0,0,9900,77777,9,999999999,22,0,0,88,0.2,0,0 +2010,11,27,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,8,63,95815,0,0,335,0,0,0,0,0,0,0,150,4.6,5,5,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,27,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,7,63,95797,0,0,329,0,0,0,0,0,0,0,160,5.1,5,5,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,27,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,12.9,7.5,70,96197,0,0,307,0,0,0,0,0,0,0,160,5.7,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2010,11,27,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,7,71,95759,0,0,323,0,0,0,0,0,0,0,160,3.6,6,6,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,28,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,7,71,95759,0,0,323,0,0,0,0,0,0,0,160,4.1,6,6,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,28,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,10.6,6.9,78,96144,0,0,296,0,0,0,0,0,0,0,160,3.1,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,28,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,10,7,82,95721,0,0,323,0,0,0,0,0,0,0,150,2.6,8,8,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,28,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,10,7,82,95721,0,0,323,0,0,0,0,0,0,0,160,2.6,8,8,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,28,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,9.3,6.6,83,96119,0,0,291,0,0,0,0,0,0,0,150,2.6,0,0,9900,77777,9,999999999,18,0,0,88,0.2,0,0 +2010,11,28,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,9,6,81,95702,0,0,317,0,0,0,0,0,0,0,180,1.5,8,8,9900,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,11,28,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,11,7,76,95740,275,1367,322,90,79,75,9958,2352,8285,2484,150,2.6,7,7,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,28,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,13.3,7.6,68,96176,558,1406,314,329,494,133,37310,31022,15102,5236,126,1,1,1,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2010,11,28,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,8,63,95815,823,1406,335,537,623,173,62676,43894,20225,7758,200,2.1,5,5,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,28,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,18,8,52,95870,1050,1406,344,769,783,184,92417,54494,22258,9085,89,1,3,3,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,28,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,19.9,7.8,46,96061,1224,1406,338,940,812,233,113657,58775,28273,11432,170,2.6,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2010,11,28,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,8,38,95959,1335,1406,353,1044,818,267,126646,60326,32554,12987,190,3.1,0,0,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,28,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,24,9,38,95977,1373,1406,359,1079,820,277,130000,60271,33873,13467,170,5.1,0,0,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,28,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,24.4,8,35,95894,1337,1406,375,1033,818,254,125772,59373,31128,12488,190,5.1,3,3,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2010,11,28,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,25,9,36,95994,1229,1406,379,931,875,165,115401,56969,20612,8561,210,7.2,3,3,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,28,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,25,9,36,95994,1056,1406,379,771,813,159,93652,53820,19443,8041,220,8.2,3,3,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,28,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,23.3,9,40,95856,830,1406,371,564,694,154,66397,46600,18206,7110,220,8.2,3,3,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,28,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,22,9,43,95942,567,1406,364,331,479,138,37485,30353,15672,5426,210,7.7,3,3,9900,77777,9,999999999,23,0,0,88,0.2,0,0 +2010,11,28,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,8,46,95906,284,1406,350,115,160,83,12634,5376,9130,2686,210,7.2,2,2,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,28,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17.4,7.8,53,95978,0,1408,327,0,0,0,0,0,0,0,190,7.7,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2010,11,28,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,8,59,95834,0,0,337,0,0,0,0,0,0,0,140,5.1,4,4,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,28,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,8,67,95797,0,0,330,0,0,0,0,0,0,0,150,5.1,5,5,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,28,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,12.6,7.8,73,96163,0,0,306,0,0,0,0,0,0,0,160,6.2,0,0,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,28,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,8,76,95759,0,0,328,0,0,0,0,0,0,0,150,4.1,7,7,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,29,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,11,8,82,95740,0,0,329,0,0,0,0,0,0,0,170,3.6,8,8,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,29,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,10.1,8,87,96134,0,0,295,0,0,0,0,0,0,0,160,2.6,0,0,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,29,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,10,8,87,95721,0,0,331,0,0,0,0,0,0,0,170,3.1,9,9,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,29,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,8,87,95721,0,0,308,0,0,0,0,0,0,0,170,3.1,3,3,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,29,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.7,8,95,96164,0,0,318,0,0,0,0,0,0,0,150,3.1,8,8,800,60,0,999999999,21,0,0,88,0.2,0,0 +2010,11,29,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,8,93,95702,0,0,335,0,0,0,0,0,0,0,170,2.6,10,10,1100,90,0,999999999,21,0,0,88,0.2,0,0 +2010,11,29,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,8,93,95702,276,1373,326,57,0,57,5590,0,5631,2060,160,1.5,9,9,1000,60,0,999999999,21,0,0,88,0.2,0,0 +2010,11,29,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,9,82,95759,559,1406,341,170,49,150,19027,3232,16910,5707,280,2.1,9,9,2500,120,0,999999999,23,0,0,88,0.2,0,0 +2010,11,29,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,9,72,95797,823,1406,326,557,589,212,63892,44581,24413,9045,82,1,3,3,4000,77777,0,999999999,23,0,0,88,0.2,0,0 +2010,11,29,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,9,56,95870,1050,1406,345,765,811,159,92901,53667,19420,8024,65,1,3,3,8000,77777,0,999999999,23,0,0,88,0.2,0,0 +2010,11,29,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,9,46,95924,1225,1406,345,939,877,174,115931,57911,21622,8956,200,3.1,0,0,8000,77777,0,999999999,23,0,0,88,0.2,0,0 +2010,11,29,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,9,41,95959,1336,1406,361,1043,818,265,126528,59780,32357,12923,180,5.7,1,1,9900,77777,0,999999999,23,0,0,88,0.2,0,0 +2010,11,29,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,24,10,41,95977,1374,1406,367,1078,820,276,130000,59696,33682,13406,160,6.2,1,1,9900,77777,0,999999999,25,0,0,88,0.2,0,0 +2010,11,29,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,25.9,8.7,34,95958,1339,1406,387,1012,830,221,124488,57449,27393,11138,160,5.1,4,4,9900,77777,0,999999999,22,0,0,88,0.2,0,0 +2010,11,29,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,8,32,96011,1231,1406,367,946,727,310,111970,57931,36861,14317,150,5.7,0,0,9900,77777,0,999999999,20,0,0,88,0.2,0,0 +2010,11,29,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,25,9,36,95994,1058,1406,408,404,58,360,46113,5163,41395,14993,220,7.7,9,9,9900,4800,0,999999999,23,0,0,88,0.2,0,0 +2010,11,29,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,24.1,7.6,35,95870,833,1406,401,297,16,287,33303,1410,32417,11134,210,7.7,9,9,9900,6000,0,999999999,20,0,0,88,0.2,0,0 +2010,11,29,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,23,9,41,95959,570,1406,397,175,7,172,19427,488,19206,6304,220,6.2,9,9,9900,6000,0,999999999,23,0,0,88,0.2,0,0 +2010,11,29,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,21,8,43,95924,287,1406,385,61,0,61,5985,0,6030,2200,210,7.2,9,9,9900,6000,0,999999999,21,0,0,88,0.2,0,0 +2010,11,29,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,20,6.6,42,95958,3,1406,378,1,0,1,50,0,50,21,190,6.2,9,9,9900,7500,9,999999999,18,0,0,88,0.2,0,0 +2010,11,29,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19,8,49,95888,0,24,354,0,0,0,0,0,0,0,150,3.6,5,5,9900,77777,9,999999999,21,0,0,88,0.2,0,0 +2010,11,29,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17,7,52,95852,0,0,338,0,0,0,0,0,0,0,150,3.1,3,3,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,29,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,16.7,6.5,51,96031,0,0,322,0,0,0,0,0,0,0,150,2.6,0,0,9900,77777,9,999999999,18,0,0,88,0.2,0,0 +2010,11,29,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,7,55,95834,0,0,320,0,0,0,0,0,0,0,150,2.6,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,30,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,7,59,95815,0,0,331,0,0,0,0,0,0,0,140,2.6,4,4,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,30,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,14.2,7.1,62,95966,0,0,312,0,0,0,0,0,0,0,140,2.1,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,30,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,7,63,95797,0,0,311,0,0,0,0,0,0,0,160,3.1,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,30,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,6,62,95778,0,0,305,0,0,0,0,0,0,0,325,0.5,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2010,11,30,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,6.7,75,95953,0,0,311,0,0,0,0,0,0,0,176,1,3,3,8000,77777,9,999999999,18,0,0,88,0.2,0,0 +2010,11,30,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,7,71,95759,0,0,315,0,0,0,0,0,0,0,140,2.1,3,3,7000,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,30,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,7,63,95797,276,1378,324,109,146,81,11979,4718,8875,2604,150,2.6,3,3,7000,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,30,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15.6,7.6,59,96030,559,1407,318,329,494,133,37372,31066,15137,5248,210,2.1,0,0,7000,77777,9,999999999,20,0,0,88,0.2,0,0 +2010,11,30,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,19,7,46,95888,823,1407,344,565,709,150,66710,47980,17732,6922,47,1,2,2,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,30,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,21,7,40,95924,1051,1407,349,778,844,147,95104,55558,18024,7479,291,1,1,1,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,30,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,23.7,7.5,35,95929,1226,1407,356,942,813,233,113833,58988,28361,11462,170,1,0,0,9900,77777,9,999999999,19,0,0,88,0.2,0,0 +2010,11,30,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,8,34,95994,1337,1407,362,1046,819,267,126837,60386,32610,13007,170,3.1,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2010,11,30,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,27,7,28,96029,1376,1407,371,1084,821,281,130000,61427,34361,13625,170,4.6,0,0,9900,77777,9,999999999,18,0,0,88,0.2,0,0 +2010,11,30,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,26.9,6.5,27,95738,1340,1407,377,1051,819,271,127555,61195,33018,13143,210,8.2,1,1,9900,77777,9,999999999,18,0,0,88,0.2,0,0 +2010,11,30,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,8,32,96011,1233,1407,367,948,813,235,114629,58856,28574,11544,220,7.7,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2010,11,30,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,8,32,96011,1061,1407,367,787,771,204,93913,55349,24510,9920,220,7.7,0,0,9900,77777,9,999999999,20,0,0,88,0.2,0,0 +2010,11,30,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,25.1,8,34,95707,836,1407,399,388,203,268,43818,17021,30385,10695,210,7.7,8,8,9900,6900,9,999999999,20,0,0,88,0.2,0,0 +2010,11,30,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,8,34,95994,574,1407,362,342,443,161,38281,30485,18108,6071,200,7.2,0,0,9900,6900,9,999999999,20,0,0,88,0.2,0,0 +2010,11,30,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,19,6.4,44,95873,291,1407,347,121,169,86,13220,6060,9415,2774,175,6.2,0,0,9900,6900,9,999999999,19,0,0,88,0.2,0,0 +2010,11,30,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17.3,6.2,48,95886,8,1407,366,1,0,1,125,0,126,51,165,5.5,8,8,9900,6000,9,999999999,18,0,0,88,0.2,0,0 +2010,11,30,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,6,51,95878,0,45,338,0,0,0,0,0,0,0,157,4.6,2,2,9900,6000,9,999999999,17,0,0,88,0.2,0,0 +2010,11,30,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,7.2,58,95869,0,0,334,0,0,0,0,0,0,0,160,4.2,2,2,9900,6000,9,999999999,17,0,0,88,0.2,0,0 +2010,11,30,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,15.1,8.5,65,95860,0,0,315,0,0,0,0,0,0,0,165,3.8,0,0,9900,6000,9,999999999,17,0,0,88,0.2,0,0 +2010,11,30,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14.8,9.8,72,95811,0,0,326,0,0,0,0,0,0,0,167,3.3,4,4,9900,6000,9,999999999,17,0,0,88,0.2,0,0 +2016,12,1,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,14.5,11.2,81,95806,0,0,346,0,0,0,0,0,0,0,170,3.1,6,6,9000,6706,9,999999999,28,0,0,88,0.2,0,0 +2016,12,1,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13.8,11.5,86,95792,0,0,319,0,0,0,0,0,0,0,165,3,0,0,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,1,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13.2,11.8,91,95783,0,0,315,0,0,0,0,0,0,0,170,2.7,0,0,7000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,1,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.2,12.2,94,95783,0,0,350,0,0,0,0,0,0,0,175,2.4,9,9,3000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,1,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,12.5,91,95797,0,0,350,0,0,0,0,0,0,0,175,2.2,9,9,3000,122,9,999999999,31,0,0,88,0.2,0,0 +2016,12,1,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.2,12.8,85,95820,0,0,330,0,0,0,0,0,0,0,182,2.3,5,5,1000,122,9,999999999,31,0,0,88,0.2,0,0 +2016,12,1,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,13,94,95797,276,1378,336,102,162,70,11287,3946,7801,2392,190,1.5,5,5,3000,122,9,999999999,34,0,0,88,0.2,0,0 +2016,12,1,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,13,82,95834,559,1407,326,327,478,137,36858,28839,15469,5349,170,2.1,0,0,3000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,1,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,13,73,95870,823,1407,335,561,724,137,66452,45001,16262,6425,190,3.6,0,0,5000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,1,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,12,56,95924,1051,1407,348,772,839,145,94250,52595,17740,7385,150,4.6,0,0,6000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,1,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,13,53,95959,1226,1407,359,934,892,156,115993,54998,19455,8121,170,5.1,0,0,7000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,1,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,13,47,95994,1337,1407,369,1038,819,259,125824,57261,31623,12691,160,6.2,0,0,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,1,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,13,45,96011,1376,1407,386,1073,821,270,130000,57663,32980,13182,160,7.2,2,2,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,1,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,13,42,96029,1340,1407,386,1041,819,260,126257,57293,31742,12734,160,7.2,1,1,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,1,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,13,40,96046,1233,1407,391,941,894,157,116930,55120,19589,8172,170,6.2,1,1,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,1,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,14,42,96046,1061,1407,392,779,842,143,95224,51358,17602,7350,200,6.2,1,1,8000,77777,9,999999999,37,0,0,88,0.2,0,0 +2016,12,1,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,13,42,96029,836,1407,386,573,731,138,67960,45527,16395,6503,210,5.7,1,1,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,1,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,13,47,95994,574,1407,381,338,487,140,38213,29805,15835,5507,210,6.7,2,2,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,1,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,23,13,53,95959,291,1407,374,118,190,79,13010,5611,8715,2643,160,5.1,3,3,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,1,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,21,12,56,95924,8,1407,363,2,0,2,181,0,183,73,230,3.1,3,3,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,1,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,12,64,95888,0,45,359,0,0,0,0,0,0,0,150,3.6,5,5,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,1,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,12,68,95870,0,0,354,0,0,0,0,0,0,0,150,4.6,5,5,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,1,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,12,72,95852,0,0,352,0,0,0,0,0,0,0,160,3.6,6,6,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,1,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,12,82,95815,0,0,320,0,0,0,0,0,0,0,170,3.6,0,0,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,2,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,12,82,95815,0,0,320,0,0,0,0,0,0,0,160,5.1,0,0,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,2,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,11,82,95797,0,0,315,0,0,0,0,0,0,0,160,3.1,0,0,7000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,2,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,11,82,95797,0,0,315,0,0,0,0,0,0,0,170,2.1,0,0,7000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,2,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,11,82,95797,0,0,315,0,0,0,0,0,0,0,160,2.1,0,0,7000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,2,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,11,88,95778,0,0,311,0,0,0,0,0,0,0,180,2.6,0,0,7000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,2,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,11,88,95778,0,0,311,0,0,0,0,0,0,0,180,4.1,0,0,6000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,2,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13,11,88,95778,277,1382,324,109,173,75,11991,4791,8287,2494,160,3.6,3,3,5000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,2,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,12,77,95834,560,1407,325,327,481,136,36974,29304,15440,5340,170,2.1,0,0,7000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,2,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,13,73,95870,824,1407,335,561,752,120,67118,44959,14469,5775,150,3.1,0,0,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,2,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,21,13,60,95924,1051,1407,367,745,755,181,89417,49922,21825,8947,160,1.5,4,4,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,2,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,13,50,95977,1226,1407,376,929,853,185,113926,55037,22855,9450,210,2.1,2,2,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,2,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,13,47,95994,1337,1407,381,1036,819,257,125687,57096,31352,12595,170,4.1,2,2,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,2,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,13,42,96029,1377,1407,386,1075,821,271,130000,57773,33143,13239,160,7.2,1,1,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,2,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,12,37,96046,1342,1407,382,1045,819,263,126693,58063,32049,12836,180,7.7,0,0,8000,77777,9,999999999,30,0,0,88,0.2,0,0 +2016,12,2,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,30,11,31,96079,1235,1407,391,946,813,232,114354,57173,28141,11404,170,7.2,0,0,8000,77777,9,999999999,27,0,0,88,0.2,0,0 +2016,12,2,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,5,22,96063,1064,1407,378,793,842,155,96777,56937,19053,7888,190,6.7,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2016,12,2,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,30,10,29,96079,839,1407,390,578,727,145,68545,47420,17199,6785,190,5.1,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,12,2,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,4,20,96063,577,1407,377,347,519,134,39538,33738,15342,5368,170,5.7,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2016,12,2,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,11,37,96029,295,1407,376,123,205,80,13496,6452,8795,2672,210,4.6,0,0,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,2,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,12,47,95977,13,1407,374,3,0,3,272,0,273,108,160,3.6,2,2,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,2,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,21,12,56,95924,0,67,363,0,0,0,0,0,0,0,150,4.1,3,3,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,2,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,12,64,95888,0,0,359,0,0,0,0,0,0,0,150,4.1,5,5,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,2,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,12,64,95888,0,0,359,0,0,0,0,0,0,0,160,2.1,5,5,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,2,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,12,68,95870,0,0,354,0,0,0,0,0,0,0,240,1.5,5,5,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,3,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,12,77,95834,0,0,351,0,0,0,0,0,0,0,170,3.1,7,7,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,3,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,12,82,95815,0,0,352,0,0,0,0,0,0,0,160,2.6,8,8,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,3,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,11,77,95815,0,0,345,0,0,0,0,0,0,0,170,2.6,7,7,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,3,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,12,82,95815,0,0,352,0,0,0,0,0,0,0,160,3.1,8,8,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,3,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,14,11,82,95797,0,0,346,0,0,0,0,0,0,0,170,2.1,8,8,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,3,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,15,12,82,95815,0,0,352,0,0,0,0,0,0,0,309,1,8,8,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,3,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,12,77,95834,277,1385,325,111,181,75,12149,4891,8265,2492,59,1,0,0,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,3,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,12,64,95888,560,1408,339,328,481,136,36991,29326,15439,5339,146,0.5,0,0,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,3,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,22,12,53,95942,824,1408,353,562,722,139,66550,45649,16527,6516,109,1,0,0,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,3,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,12,47,95977,1051,1408,362,772,840,145,94308,52639,17732,7381,210,2.6,0,0,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,3,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,13,42,96029,1227,1408,378,935,893,156,116112,55050,19450,8119,160,3.6,0,0,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,3,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,13,40,96046,1338,1408,391,1039,819,260,125988,57320,31676,12710,170,5.7,1,1,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,3,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,30,12,33,96079,1378,1408,393,1078,821,274,130000,58545,33450,13339,170,7.2,0,0,8000,77777,9,999999999,30,0,0,88,0.2,0,0 +2016,12,3,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,12,35,96063,1344,1408,387,1046,820,263,126879,58105,32112,12858,210,7.7,0,0,8000,77777,9,999999999,30,0,0,88,0.2,0,0 +2016,12,3,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,30,11,31,96079,1238,1408,391,948,814,232,114594,57223,28218,11432,210,8.2,0,0,8000,77777,9,999999999,27,0,0,88,0.2,0,0 +2016,12,3,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,12,35,96063,1067,1408,387,787,844,147,96171,53005,18023,7512,210,9.3,0,0,8000,77777,9,999999999,30,0,0,88,0.2,0,0 +2016,12,3,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,10,31,96063,843,1408,385,581,729,145,68893,47551,17245,6809,210,8.8,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,12,3,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,14,45,96029,581,1408,392,344,492,141,38870,29937,15984,5578,210,7.2,2,2,8000,77777,9,999999999,37,0,0,88,0.2,0,0 +2016,12,3,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,13,50,95977,299,1408,376,124,203,81,13636,6293,8925,2716,200,6.7,2,2,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,3,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,23,13,53,95959,16,1408,374,4,0,4,354,0,357,138,140,5.7,3,3,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,3,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,12,60,95906,0,88,361,0,0,0,0,0,0,0,150,7.2,4,4,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,3,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,12,68,95870,0,0,354,0,0,0,0,0,0,0,160,5.7,5,5,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,3,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,12,77,95834,0,0,351,0,0,0,0,0,0,0,160,5.7,7,7,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,3,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,12,82,95815,0,0,352,0,0,0,0,0,0,0,160,4.1,8,8,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,4,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,14,12,88,95797,0,0,355,0,0,0,0,0,0,0,150,3.6,9,9,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,4,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,12,88,95797,0,0,316,0,0,0,0,0,0,0,160,2.1,0,0,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,4,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,12,94,95778,0,0,350,0,0,0,0,0,0,0,170,3.6,9,9,5000,244,9,999999999,31,0,0,88,0.2,0,0 +2016,12,4,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,12,94,95778,0,0,350,0,0,0,0,0,0,0,170,3.1,9,9,3000,91,9,999999999,31,0,0,88,0.2,0,0 +2016,12,4,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,12,94,95778,0,0,350,0,0,0,0,0,0,0,160,2.6,9,9,2000,61,9,999999999,31,0,0,88,0.2,0,0 +2016,12,4,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,13,100,95778,0,0,351,0,0,0,0,0,0,0,76,1,9,9,1500,91,9,999999999,34,0,0,88,0.2,0,0 +2016,12,4,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,12,88,95797,277,1388,335,103,136,76,11301,3751,8392,2518,340,1.5,5,5,3000,122,9,999999999,31,0,0,88,0.2,0,0 +2016,12,4,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,16,12,77,95834,560,1408,344,305,382,153,34099,24666,17150,5774,293,0.5,5,5,4000,122,9,999999999,31,0,0,88,0.2,0,0 +2016,12,4,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,13,73,95870,824,1408,335,561,725,137,66464,45037,16266,6426,230,1.5,0,0,7000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,4,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,22,13,57,95942,1051,1408,354,771,840,143,94154,51933,17583,7326,334,2.1,0,0,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,4,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,13,50,95977,1227,1408,376,930,882,160,115228,54763,19985,8331,170,3.1,2,2,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,4,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,13,45,96011,1339,1408,386,1038,819,259,125942,57245,31543,12663,160,5.7,2,2,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,4,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,13,42,96029,1379,1408,386,1077,821,272,130000,57835,33218,13266,170,8.2,1,1,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,4,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,13,37,96063,1345,1408,389,1046,820,262,126840,57441,31964,12813,190,6.7,0,0,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,4,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,14,42,96046,1240,1408,392,945,892,159,117344,54474,19802,8261,200,6.2,1,1,8000,77777,9,999999999,37,0,0,88,0.2,0,0 +2016,12,4,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,13,42,96029,1069,1408,386,787,844,146,96263,52335,17963,7495,210,6.7,1,1,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,4,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,13,45,96011,846,1408,386,580,734,139,68921,45856,16580,6589,220,6.7,2,2,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,4,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,23,12,50,95959,584,1408,369,347,493,142,39210,30837,16116,5622,220,7.7,2,2,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,4,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,21,12,56,95924,303,1408,363,125,199,82,13759,6490,9081,2763,210,5.7,3,3,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,4,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,12,64,95888,20,1408,359,4,0,4,420,0,422,162,180,5.1,5,5,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,4,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,12,72,95852,0,109,352,0,0,0,0,0,0,0,160,5.1,6,6,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,4,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,12,77,95834,0,0,351,0,0,0,0,0,0,0,170,4.6,7,7,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,4,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,12,82,95815,0,0,352,0,0,0,0,0,0,0,150,3.1,8,8,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,4,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,14,11,82,95797,0,0,346,0,0,0,0,0,0,0,170,3.6,8,8,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,5,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,12,88,95797,0,0,316,0,0,0,0,0,0,0,160,3.6,0,0,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,5,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,14,12,88,95797,0,0,335,0,0,0,0,0,0,0,140,3.6,5,5,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,5,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,12,82,95815,0,0,360,0,0,0,0,0,0,0,190,3.1,9,9,8000,457,9,999999999,31,0,0,88,0.2,0,0 +2016,12,5,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,12,82,95815,0,0,370,0,0,0,0,0,0,0,200,2.6,10,10,8000,488,9,999999999,31,0,0,88,0.2,0,0 +2016,12,5,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,12,88,95797,0,0,365,0,0,0,0,0,0,0,160,3.1,10,10,5000,457,9,999999999,31,0,0,88,0.2,0,0 +2016,12,5,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,13,94,95797,0,0,366,0,0,0,0,0,0,0,190,3.1,10,10,3000,122,0,919999999,34,0,0,88,0.2,0,0 +2016,12,5,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,13,100,95778,278,1390,361,35,0,35,3398,0,3424,1386,180,4.1,10,10,3000,122,0,919999999,34,0,0,88,0.2,0,0 +2016,12,5,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,13,94,95797,560,1409,366,103,0,103,10291,0,10376,4317,160,4.1,10,10,4000,183,0,919999999,34,0,0,88,0.2,0,0 +2016,12,5,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,13,94,95797,824,1409,356,289,74,246,32721,5786,27973,10025,150,2.6,9,9,5000,457,0,919999999,34,0,0,88,0.2,0,0 +2016,12,5,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,13,82,95834,1051,1409,376,243,8,237,28510,569,27972,11107,180,2.1,10,10,8000,610,0,919999999,34,0,0,88,0.2,0,0 +2016,12,5,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,12,68,95870,1227,1409,375,483,33,455,55327,3018,52415,18470,126,1.5,9,9,8000,610,0,919999999,31,0,0,88,0.2,0,0 +2016,12,5,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,12,56,95924,1339,1409,391,538,87,455,62474,7682,53228,19138,208,2.1,9,9,8000,914,0,919999999,31,0,0,88,0.2,0,0 +2016,12,5,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,22,12,53,95942,1380,1409,396,557,78,481,64831,6992,56319,20030,338,3.1,9,9,8000,6096,0,919999999,31,0,0,88,0.2,0,0 +2016,12,5,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,22,11,50,95942,1347,1409,363,1044,639,433,122003,55390,50919,18582,220,6.7,2,2,8000,6096,0,919999999,28,0,0,88,0.2,0,0 +2016,12,5,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,23,11,47,95959,1242,1409,368,949,814,231,114820,57094,28043,11370,210,7.7,2,2,8000,6096,0,919999999,28,0,0,88,0.2,0,0 +2016,12,5,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,22,11,50,95942,1072,1409,367,782,816,160,95078,53027,19594,8124,210,9.3,3,3,8000,6096,0,919999999,28,0,0,88,0.2,0,0 +2016,12,5,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,21,9,46,95924,849,1409,356,586,724,149,69401,48136,17766,7003,210,9.3,2,2,8000,6096,0,919999999,23,0,0,88,0.2,0,0 +2016,12,5,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,20,9,49,95906,588,1409,360,328,358,179,36534,25777,19986,6580,210,7.2,5,5,8000,6096,0,919999999,23,0,0,88,0.2,0,0 +2016,12,5,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18,9,56,95870,306,1409,371,67,0,67,6611,0,6661,2424,210,7.2,9,9,8000,1524,0,919999999,23,0,0,88,0.2,0,0 +2016,12,5,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17,10,63,95852,24,1409,367,3,0,3,273,0,275,110,200,7.7,9,9,8000,1219,9,999999999,25,0,0,88,0.2,0,0 +2016,12,5,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16,9,63,95834,0,130,361,0,0,0,0,0,0,0,190,6.2,9,9,8000,1524,9,999999999,23,0,0,88,0.2,0,0 +2016,12,5,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16,9,63,95834,0,0,361,0,0,0,0,0,0,0,160,3.6,9,9,8000,1524,9,999999999,23,0,0,88,0.2,0,0 +2016,12,5,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,9,67,95815,0,0,356,0,0,0,0,0,0,0,180,3.6,9,9,8000,1524,9,999999999,23,0,0,88,0.2,0,0 +2016,12,5,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,9,67,95815,0,0,356,0,0,0,0,0,0,0,160,3.1,9,9,8000,1524,9,999999999,23,0,0,88,0.2,0,0 +2016,12,6,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,9,72,95797,0,0,351,0,0,0,0,0,0,0,170,2.6,9,9,8000,1524,9,999999999,23,0,0,88,0.2,0,0 +2016,12,6,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,8,67,95797,0,0,330,0,0,0,0,0,0,0,160,2.1,5,5,8000,7620,9,999999999,21,0,0,88,0.2,0,0 +2016,12,6,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,13,8,72,95778,0,0,329,0,0,0,0,0,0,0,174,1,6,6,8000,7620,9,999999999,21,0,0,88,0.2,0,0 +2016,12,6,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,13,8,72,95778,0,0,329,0,0,0,0,0,0,0,170,2.6,6,6,8000,7620,9,999999999,21,0,0,88,0.2,0,0 +2016,12,6,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,13,8,72,95778,0,0,329,0,0,0,0,0,0,0,210,2.6,6,6,8000,7620,9,999999999,21,0,0,88,0.2,0,0 +2016,12,6,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,13,8,72,95778,0,0,329,0,0,0,0,0,0,0,180,4.1,6,6,8000,7620,9,999999999,21,0,0,88,0.2,0,0 +2016,12,6,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,13,9,77,95778,277,1392,322,109,177,75,12053,5095,8233,2482,150,2.6,3,3,8000,7620,9,999999999,23,0,0,88,0.2,0,0 +2016,12,6,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,9,72,95797,559,1409,351,170,23,160,18921,1585,17970,5958,160,2.6,9,9,8000,914,9,999999999,23,0,0,88,0.2,0,0 +2016,12,6,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,16,9,63,95834,823,1409,361,291,50,262,32829,4171,29681,10427,20,1,9,9,8000,914,9,999999999,23,0,0,88,0.2,0,0 +2016,12,6,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,18,9,56,95870,1051,1409,345,765,689,250,89748,52857,29537,11598,329,1,3,3,8000,914,9,999999999,23,0,0,88,0.2,0,0 +2016,12,6,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,20,10,53,95906,1227,1409,356,927,848,188,113757,56612,23194,9565,140,2.1,3,3,8000,914,9,999999999,25,0,0,88,0.2,0,0 +2016,12,6,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,22,9,43,95942,1340,1409,356,1046,820,266,126912,59897,32420,12946,180,4.1,1,1,8000,914,9,999999999,23,0,0,88,0.2,0,0 +2016,12,6,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,9,38,95977,1381,1409,359,1086,822,279,130000,60481,34120,13554,210,3.1,0,0,8000,914,9,999999999,23,0,0,88,0.2,0,0 +2016,12,6,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,9,38,95977,1348,1409,359,1055,820,269,127974,60060,32828,13092,170,3.6,0,0,8000,914,9,999999999,23,0,0,88,0.2,0,0 +2016,12,6,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,9,34,96011,1244,1409,369,956,815,237,115621,58542,28759,11617,160,4.6,0,0,8000,914,9,999999999,23,0,0,88,0.2,0,0 +2016,12,6,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,7,28,96029,1074,1409,371,800,852,150,97940,56178,18407,7652,180,5.1,0,0,8000,914,9,999999999,18,0,0,88,0.2,0,0 +2016,12,6,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,6,26,96029,852,1409,370,593,722,156,70075,49735,18549,7276,230,5.7,0,0,8000,914,9,999999999,17,0,0,88,0.2,0,0 +2016,12,6,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,5,26,96011,591,1409,364,358,528,136,40823,34466,15623,5498,230,6.2,0,0,8000,914,9,999999999,15,0,0,88,0.2,0,0 +2016,12,6,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,5,28,95994,310,1409,359,134,236,81,14784,8683,9055,2779,230,5.7,0,0,8000,914,9,999999999,15,0,0,88,0.2,0,0 +2016,12,6,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,23,6,33,95959,28,1409,350,6,0,6,615,0,619,229,220,4.6,0,0,8000,914,9,999999999,17,0,0,88,0.2,0,0 +2016,12,6,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,21,7,40,95924,0,150,349,0,0,0,0,0,0,0,210,5.1,1,1,8000,914,9,999999999,19,0,0,88,0.2,0,0 +2016,12,6,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,7,46,95888,0,0,344,0,0,0,0,0,0,0,160,3.6,2,2,8000,914,9,999999999,19,0,0,88,0.2,0,0 +2016,12,6,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,8,52,95870,0,0,344,0,0,0,0,0,0,0,150,3.6,3,3,8000,914,9,999999999,21,0,0,88,0.2,0,0 +2016,12,6,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,7,52,95852,0,0,338,0,0,0,0,0,0,0,170,2.6,3,3,8000,914,9,999999999,19,0,0,88,0.2,0,0 +2016,12,7,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,7,55,95834,0,0,333,0,0,0,0,0,0,0,170,2.1,3,3,8000,914,9,999999999,19,0,0,88,0.2,0,0 +2016,12,7,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,5,48,95834,0,0,328,0,0,0,0,0,0,0,170,2.1,2,2,8000,914,9,999999999,15,0,0,88,0.2,0,0 +2016,12,7,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,14,6,59,95797,0,0,326,0,0,0,0,0,0,0,38,0.5,4,4,8000,914,9,999999999,17,0,0,88,0.2,0,0 +2016,12,7,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,14,6,59,95797,0,0,326,0,0,0,0,0,0,0,215,1,4,4,8000,914,9,999999999,17,0,0,88,0.2,0,0 +2016,12,7,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,4,48,95815,0,0,322,0,0,0,0,0,0,0,140,2.6,2,2,8000,914,9,999999999,14,0,0,88,0.2,0,0 +2016,12,7,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,12,5,62,95759,0,0,316,0,0,0,0,0,0,0,280,1.5,4,4,8000,914,9,999999999,15,0,0,88,0.2,0,0 +2016,12,7,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14,6,59,95797,277,1393,323,110,146,81,12020,4815,8905,2611,40,1.5,3,3,8000,914,9,999999999,17,0,0,88,0.2,0,0 +2016,12,7,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,17,6,48,95852,559,1409,334,329,491,133,37268,31309,15196,5257,66,1,2,2,8000,914,9,999999999,17,0,0,88,0.2,0,0 +2016,12,7,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,20,6,40,95906,823,1409,343,566,707,153,66730,48488,18069,7031,246,1,1,1,8000,914,9,999999999,17,0,0,88,0.2,0,0 +2016,12,7,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,21,6,38,95924,1051,1409,341,779,842,150,95067,56149,18444,7638,290,2.1,0,0,8000,914,9,999999999,17,0,0,88,0.2,0,0 +2016,12,7,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,7,34,95977,1227,1409,356,944,814,234,114043,59354,28461,11496,160,2.1,0,0,8000,914,9,999999999,19,0,0,88,0.2,0,0 +2016,12,7,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,7,30,96011,1340,1409,366,1050,820,270,127404,61057,32904,13105,160,3.6,0,0,8000,914,9,999999999,18,0,0,88,0.2,0,0 +2016,12,7,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,7,26,96046,1382,1409,376,1090,822,283,130000,61607,34571,13699,150,4.1,0,0,8000,914,9,999999999,18,0,0,88,0.2,0,0 +2016,12,7,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,7,25,96063,1350,1409,381,1059,821,273,128541,61194,33293,13244,170,5.1,0,0,8000,914,9,999999999,18,0,0,88,0.2,0,0 +2016,12,7,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,6,23,96063,1246,1409,380,962,815,242,116367,60162,29367,11821,220,6.2,0,0,8000,914,9,999999999,17,0,0,88,0.2,0,0 +2016,12,7,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,8,27,96063,1077,1409,382,801,851,150,98045,55724,18462,7679,220,7.7,0,0,8000,914,9,999999999,20,0,0,88,0.2,0,0 +2016,12,7,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,8,30,96029,855,1409,372,594,730,150,70353,49018,17910,7065,210,8.2,0,0,8000,914,9,999999999,20,0,0,88,0.2,0,0 +2016,12,7,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,7,30,96011,594,1409,366,360,525,138,40980,34030,15784,5559,210,8.2,0,0,8000,914,9,999999999,18,0,0,88,0.2,0,0 +2016,12,7,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,23,6,33,95959,314,1409,350,136,240,82,15033,8867,9154,2815,200,7.7,0,0,8000,914,9,999999999,17,0,0,88,0.2,0,0 +2016,12,7,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,22,5,33,95942,32,1409,345,7,0,7,698,0,703,256,160,4.1,0,0,8000,914,9,999999999,15,0,0,88,0.2,0,0 +2016,12,7,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,6,40,95906,0,170,343,0,0,0,0,0,0,0,150,4.6,1,1,8000,914,9,999999999,17,0,0,88,0.2,0,0 +2016,12,7,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,6,45,95870,0,0,338,0,0,0,0,0,0,0,160,4.6,2,2,8000,914,9,999999999,17,0,0,88,0.2,0,0 +2016,12,7,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,5,45,95852,0,0,332,0,0,0,0,0,0,0,160,4.1,2,2,8000,914,9,999999999,15,0,0,88,0.2,0,0 +2016,12,7,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,5,48,95834,0,0,328,0,0,0,0,0,0,0,150,2.1,2,2,8000,914,9,999999999,15,0,0,88,0.2,0,0 +2016,12,8,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,4,45,95834,0,0,327,0,0,0,0,0,0,0,150,3.1,2,2,8000,914,9,999999999,14,0,0,88,0.2,0,0 +2016,12,8,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,4,45,95834,0,0,327,0,0,0,0,0,0,0,150,2.6,2,2,8000,914,9,999999999,14,0,0,88,0.2,0,0 +2016,12,8,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,14,5,55,95797,0,0,322,0,0,0,0,0,0,0,55,1,3,3,8000,914,9,999999999,15,0,0,88,0.2,0,0 +2016,12,8,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,13,5,58,95778,0,0,320,0,0,0,0,0,0,0,181,1,4,4,8000,914,9,999999999,15,0,0,88,0.2,0,0 +2016,12,8,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,13,6,62,95778,0,0,321,0,0,0,0,0,0,0,130,1.5,4,4,8000,914,9,999999999,17,0,0,88,0.2,0,0 +2016,12,8,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,5,71,95721,0,0,292,0,0,0,0,0,0,0,350,2.1,0,0,8000,77777,9,999999999,16,0,0,88,0.2,0,0 +2016,12,8,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,6,59,95797,277,1393,310,111,153,81,12151,5030,8890,2606,30,1.5,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,12,8,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,17,6,48,95852,559,1410,334,328,491,133,37216,31272,15187,5252,105,1,2,2,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,12,8,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,6,40,95906,823,1410,343,566,707,153,66672,48476,18061,7026,320,2.1,1,1,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,12,8,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,22,6,35,95942,1051,1410,346,778,842,150,95031,56157,18431,7632,188,1.5,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,12,8,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,7,34,95977,1227,1410,356,944,814,234,114034,59367,28456,11494,170,4.6,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,12,8,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,7,30,96011,1341,1410,366,1051,820,270,127441,61078,32914,13108,160,7.2,0,0,8000,77777,9,999999999,18,0,0,88,0.2,0,0 +2016,12,8,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,7,30,96011,1383,1410,366,1091,822,283,130000,61627,34590,13706,210,7.2,0,0,8000,77777,9,999999999,18,0,0,88,0.2,0,0 +2016,12,8,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,8,32,96011,1351,1410,367,1059,821,272,128496,60692,33135,13195,210,7.7,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2016,12,8,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,10,37,96011,1248,1410,370,958,815,236,115882,58050,28721,11610,210,7.7,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,12,8,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,10,37,96011,1079,1410,370,800,848,150,97929,54628,18485,7697,220,7.7,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,12,8,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,10,39,95994,858,1410,372,594,735,147,70531,48141,17506,6935,220,7.7,1,1,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,12,8,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,23,10,44,95959,598,1410,362,360,518,141,40970,33024,16052,5653,220,6.7,1,1,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,12,8,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,21,10,49,95924,317,1410,357,137,236,84,15114,8420,9286,2861,210,7.2,2,2,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,12,8,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,10,56,95888,36,1410,351,8,0,8,760,0,765,278,190,5.1,3,3,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,12,8,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,9,56,95870,0,190,345,0,0,0,0,0,0,0,150,4.1,3,3,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,12,8,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,10,68,95834,0,0,342,0,0,0,0,0,0,0,160,4.6,5,5,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,12,8,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,10,68,95834,0,0,342,0,0,0,0,0,0,0,160,4.6,5,5,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,12,8,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,10,72,95815,0,0,340,0,0,0,0,0,0,0,160,3.6,6,6,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,12,9,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,14,10,77,95797,0,0,339,0,0,0,0,0,0,0,170,3.6,7,7,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,12,9,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,14,10,77,95797,0,0,339,0,0,0,0,0,0,0,170,1.5,7,7,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,12,9,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,13,9,77,95778,0,0,334,0,0,0,0,0,0,0,180,2.6,7,7,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,12,9,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,12,9,82,95759,0,0,334,0,0,0,0,0,0,0,160,2.6,8,8,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,12,9,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,12,9,82,95759,0,0,334,0,0,0,0,0,0,0,170,1.5,8,8,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,12,9,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,12,9,82,95759,0,0,334,0,0,0,0,0,0,0,238,1,8,8,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,12,9,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,14,10,77,95797,276,1392,339,88,68,75,9722,1924,8283,2489,148,1,7,7,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,12,9,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,10,68,95834,558,1410,342,298,363,154,33364,24026,17335,5802,160,2.1,5,5,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,12,9,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,19,10,56,95888,822,1410,351,554,689,152,65198,45744,17992,7011,13,1.5,3,3,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,12,9,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,20,10,53,95906,1050,1410,356,765,816,157,92909,53305,19100,7902,287,1.5,3,3,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,12,9,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,23,10,44,95959,1227,1410,371,927,848,188,113721,56648,23193,9565,150,3.1,3,3,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,12,9,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,25,11,41,95994,1341,1410,388,972,582,418,113769,49785,49287,18137,180,5.1,5,5,8000,4572,9,999999999,28,0,0,88,0.2,0,0 +2016,12,9,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,24,11,44,95977,1384,1410,405,560,120,442,65606,10374,52187,19018,210,6.7,9,9,8000,3962,9,999999999,28,0,0,88,0.2,0,0 +2016,12,9,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,25,10,39,95994,1353,1410,387,984,538,467,114356,48553,54691,19518,220,6.7,5,5,8000,6096,9,999999999,25,0,0,88,0.2,0,0 +2016,12,9,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,25,11,41,95994,1250,1410,411,495,90,415,57257,7909,48346,17601,210,6.2,9,9,8000,4572,9,999999999,28,0,0,88,0.2,0,0 +2016,12,9,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,24,11,44,95977,1082,1410,383,745,432,414,84281,40219,47117,16441,210,8.2,5,5,8000,4572,9,999999999,28,0,0,88,0.2,0,0 +2016,12,9,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,23,11,47,95959,860,1410,400,308,78,260,34883,6283,29657,10683,210,8.8,9,9,8000,4877,9,999999999,28,0,0,88,0.2,0,0 +2016,12,9,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,22,11,50,95942,601,1410,373,337,361,184,37536,25877,20534,6786,220,8.2,5,5,8000,5182,9,999999999,28,0,0,88,0.2,0,0 +2016,12,9,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,20,11,56,95906,321,1410,384,72,0,72,7074,0,7128,2594,210,8.2,9,9,8000,4877,9,999999999,28,0,0,88,0.2,0,0 +2016,12,9,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18,10,59,95870,39,1410,372,5,0,5,439,0,442,173,200,7.2,9,9,8000,4877,9,999999999,25,0,0,88,0.2,0,0 +2016,12,9,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18,10,59,95870,0,209,372,0,0,0,0,0,0,0,190,5.1,9,9,8000,4877,9,999999999,25,0,0,88,0.2,0,0 +2016,12,9,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17,9,59,95852,0,0,366,0,0,0,0,0,0,0,160,4.6,9,9,8000,4267,9,999999999,23,0,0,88,0.2,0,0 +2016,12,9,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16,9,63,95834,0,0,361,0,0,0,0,0,0,0,150,4.6,9,9,8000,3353,9,999999999,23,0,0,88,0.2,0,0 +2016,12,9,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16,9,63,95834,0,0,361,0,0,0,0,0,0,0,160,5.1,9,9,8000,3048,9,999999999,23,0,0,88,0.2,0,0 +2016,12,10,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16,9,63,95834,0,0,361,0,0,0,0,0,0,0,160,2.1,9,9,8000,3048,0,919999999,23,0,0,88,0.2,0,0 +2016,12,10,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,11,82,95797,0,0,364,0,0,0,0,0,0,0,170,3.6,10,10,8000,2438,0,919999999,28,0,0,88,0.2,0,0 +2016,12,10,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,12,88,95797,0,0,365,0,0,0,0,0,0,0,120,2.1,10,10,6000,914,0,919999999,31,0,0,88,0.2,0,0 +2016,12,10,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,13,100,95778,0,0,361,0,0,0,0,0,0,0,170,2.1,10,10,7000,914,0,919999999,34,0,0,88,0.2,0,0 +2016,12,10,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,12,94,95778,0,0,360,0,0,0,0,0,0,0,260,1.5,10,10,6000,610,0,919999999,31,0,0,88,0.2,0,0 +2016,12,10,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,13,100,95778,0,0,361,0,0,0,0,0,0,0,240,2.1,10,10,7000,152,0,919999999,34,0,0,88,0.2,0,0 +2016,12,10,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,12,94,95778,276,1390,360,34,0,34,3363,0,3388,1371,280,1.5,10,10,7000,2438,0,919999999,31,0,0,88,0.2,0,0 +2016,12,10,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,12,88,95797,557,1411,365,102,0,102,10236,0,10321,4287,190,1,10,10,8000,1829,0,919999999,31,0,0,88,0.2,0,0 +2016,12,10,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,13,88,95815,821,1411,371,176,1,175,20401,42,20455,7837,90,1.5,10,10,8000,2438,0,919999999,34,0,0,88,0.2,0,0 +2016,12,10,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,13,82,95834,1050,1411,376,242,4,239,28412,303,28202,11175,160,2.1,10,10,8000,2743,0,919999999,34,0,0,88,0.2,0,0 +2016,12,10,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,13,82,95834,1227,1411,376,294,10,285,34898,765,34037,13434,170,2.1,10,10,8000,610,0,919999999,34,0,0,88,0.2,0,0 +2016,12,10,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,12,72,95852,1341,1411,380,328,16,313,39273,1227,37657,14725,286,1,10,10,8000,1829,0,919999999,31,0,0,88,0.2,0,0 +2016,12,10,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,12,72,95852,1385,1411,380,341,17,324,40906,1278,39164,15256,81,1.5,10,10,8000,1524,0,919999999,31,0,0,88,0.2,0,0 +2016,12,10,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,12,77,95834,1354,1411,375,332,16,316,39743,1242,38090,14878,20,2.1,10,10,6000,914,0,919999999,31,0,0,88,0.2,0,0 +2016,12,10,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,12,82,95815,1251,1411,370,302,11,292,35865,802,34951,13752,30,2.1,10,10,6000,1829,0,919999999,31,0,0,88,0.2,0,0 +2016,12,10,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,12,82,95815,1084,1411,370,252,4,249,29700,325,29465,11688,40,1.5,10,10,8000,1524,0,919999999,31,0,0,88,0.2,0,0 +2016,12,10,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,12,82,95815,863,1411,370,188,1,187,21885,101,21888,8446,350,1.5,10,10,6000,1829,0,919999999,31,0,0,88,0.2,0,0 +2016,12,10,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,11,82,95797,604,1411,364,115,0,115,11571,0,11668,4876,201,0.5,10,10,6000,1829,0,919999999,28,0,0,88,0.2,0,0 +2016,12,10,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,12,88,95797,324,1411,365,45,0,45,4378,0,4411,1788,32,1,10,10,8000,1524,0,919999999,31,0,0,88,0.2,0,0 +2016,12,10,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,12,82,95815,43,1411,370,3,0,3,291,0,293,119,340,1.5,10,10,8000,2134,9,999999999,31,0,0,88,0.2,0,0 +2016,12,10,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,15,11,77,95815,0,228,358,0,0,0,0,0,0,0,207,1,9,9,8000,3048,9,999999999,28,0,0,88,0.2,0,0 +2016,12,10,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,13,94,95797,0,0,356,0,0,0,0,0,0,0,290,2.6,9,9,8000,2743,9,999999999,34,0,0,88,0.2,0,0 +2016,12,10,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,12,88,95797,0,0,365,0,0,0,0,0,0,0,250,2.1,10,10,9000,3048,9,999999999,31,0,0,88,0.2,0,0 +2016,12,10,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,14,13,94,95797,0,0,356,0,0,0,0,0,0,0,106,1,9,9,9000,3048,9,999999999,34,0,0,88,0.2,0,0 +2016,12,11,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14,12,88,95797,0,0,335,0,0,0,0,0,0,0,10,2.6,5,5,5000,3048,9,999999999,31,0,0,88,0.2,0,0 +2016,12,11,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13,12,94,95778,0,0,325,0,0,0,0,0,0,0,350,2.1,3,3,3000,3048,9,999999999,31,0,0,88,0.2,0,0 +2016,12,11,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12,11,94,95759,0,0,320,0,0,0,0,0,0,0,10,2.6,3,3,3000,3048,9,999999999,28,0,0,88,0.2,0,0 +2016,12,11,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,11,94,95759,0,0,306,0,0,0,0,0,0,0,20,2.1,0,0,3000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,11,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,11,100,95740,0,0,302,0,0,0,0,0,0,0,69,0,0,0,2000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,11,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,11,100,95740,0,0,302,0,0,0,0,0,0,0,344,1,0,0,1100,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,11,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,11,88,95778,275,1388,311,109,176,74,11954,4787,8210,2469,351,1,0,0,2000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,11,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,13,88,95815,557,1411,322,323,473,137,36450,28506,15464,5331,216,1,0,0,5000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,11,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,13,77,95852,821,1411,357,449,320,262,50454,25816,29644,10408,330,2.1,7,7,5000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,11,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,19,13,68,95888,1049,1411,360,702,572,277,81493,44117,32287,12466,232,1,5,5,5000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,11,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,21,12,56,95924,1227,1411,363,919,788,233,110762,55080,28223,11435,200,2.1,3,3,5000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,11,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,23,11,47,95959,1342,1411,368,1042,821,261,126479,58621,31825,12749,140,3.1,2,2,5000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,11,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,9,38,95977,1385,1411,359,1089,823,280,130000,60597,34241,13597,170,3.6,0,0,5000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,12,11,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,9,34,96011,1355,1411,369,1061,640,446,123892,56855,52417,18968,150,3.6,0,0,5000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,12,11,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,26,9,34,96011,1253,1411,414,498,86,422,57648,7695,49147,17797,150,3.6,9,9,5000,7620,9,999999999,23,0,0,88,0.2,0,0 +2016,12,11,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,26,10,37,96011,1086,1411,415,416,21,400,47267,1918,45754,16179,170,4.1,9,9,5000,7620,9,999999999,25,0,0,88,0.2,0,0 +2016,12,11,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,26,10,37,96011,866,1411,415,311,16,301,34879,1420,33955,11737,180,6.2,9,9,5000,7620,9,999999999,25,0,0,88,0.2,0,0 +2016,12,11,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,26,12,42,96011,607,1411,418,190,18,182,21138,1308,20350,6787,230,5.7,9,9,5000,7620,9,999999999,30,0,0,88,0.2,0,0 +2016,12,11,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,25,11,41,95994,328,1411,411,74,0,74,7320,0,7375,2680,220,5.7,9,9,5000,7620,9,999999999,28,0,0,88,0.2,0,0 +2016,12,11,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,23,9,41,95959,46,1411,397,5,0,5,519,0,522,204,230,4.6,9,9,5000,6096,9,999999999,23,0,0,88,0.2,0,0 +2016,12,11,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,22,10,46,95942,0,247,362,0,0,0,0,0,0,0,220,3.6,2,2,5000,6096,9,999999999,25,0,0,88,0.2,0,0 +2016,12,11,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,21,11,53,95924,0,0,362,0,0,0,0,0,0,0,160,3.1,3,3,5000,6096,9,999999999,28,0,0,88,0.2,0,0 +2016,12,11,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,11,56,95906,0,0,357,0,0,0,0,0,0,0,180,3.1,3,3,5000,6096,9,999999999,28,0,0,88,0.2,0,0 +2016,12,11,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,21,9,46,95924,0,0,356,0,0,0,0,0,0,0,200,4.1,2,2,5000,6096,9,999999999,23,0,0,88,0.2,0,0 +2016,12,12,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,9,52,95888,0,0,350,0,0,0,0,0,0,0,210,2.6,3,3,5000,6096,9,999999999,23,0,0,88,0.2,0,0 +2016,12,12,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,10,59,95870,0,0,349,0,0,0,0,0,0,0,180,2.1,4,4,5000,6096,9,999999999,25,0,0,88,0.2,0,0 +2016,12,12,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,16,10,68,95834,0,0,342,0,0,0,0,0,0,0,35,1.5,5,5,5000,6096,9,999999999,25,0,0,88,0.2,0,0 +2016,12,12,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,16,11,72,95834,0,0,346,0,0,0,0,0,0,0,318,1,6,6,5000,6096,9,999999999,28,0,0,88,0.2,0,0 +2016,12,12,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,11,77,95815,0,0,319,0,0,0,0,0,0,0,20,1.5,0,0,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,12,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,11,82,95797,0,0,315,0,0,0,0,0,0,0,40,2.1,0,0,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,12,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,12,77,95834,274,1385,325,108,174,74,11868,4587,8182,2461,350,1.5,0,0,6000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,12,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,12,64,95888,556,1411,359,305,397,149,34184,25237,16757,5652,70,2.1,5,5,6000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,12,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,21,11,53,95924,820,1411,362,552,694,149,65049,45323,17572,6863,160,1,3,3,6000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,12,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,23,11,47,95959,1049,1411,368,768,834,148,93662,53161,18079,7507,350,1.5,2,2,6000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,12,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,11,41,95994,1227,1411,373,937,815,228,113189,57108,27677,11233,160,2.6,1,1,6000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,12,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,9,32,96029,1342,1411,374,1048,821,267,127126,60057,32538,12987,170,4.6,0,0,6000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,12,12,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,28,9,30,96046,1386,1411,395,1076,823,267,130000,59631,32698,13061,160,4.1,3,3,6000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,12,12,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,29,9,29,96063,1356,1411,400,1048,822,258,127718,59262,31579,12657,160,4.6,3,3,6000,77777,9,999999999,22,0,0,88,0.2,0,0 +2016,12,12,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,30,9,27,96079,1255,1411,406,954,884,167,118533,57505,20898,8669,170,4.6,3,3,6000,77777,9,999999999,22,0,0,88,0.2,0,0 +2016,12,12,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,31,10,27,96096,1089,1411,412,799,844,147,97996,53959,18115,7559,150,5.7,3,3,6000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,12,12,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,30,10,29,96079,869,1411,390,604,774,128,72631,48574,15382,6185,220,6.2,0,0,6000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,12,12,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,10,31,96063,610,1411,385,371,531,141,42307,34031,16178,5736,230,6.2,0,0,6000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,12,12,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,10,32,96046,331,1411,380,147,256,87,16225,9702,9627,2988,230,6.2,0,0,6000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,12,12,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,11,39,96011,50,1411,378,11,0,11,1076,0,1083,383,220,5.1,1,1,6000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,12,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,11,44,95977,0,265,368,0,0,0,0,0,0,0,200,5.7,1,1,6000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,12,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,23,11,47,95959,0,0,368,0,0,0,0,0,0,0,220,4.6,2,2,6000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,12,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,21,11,53,95924,0,0,362,0,0,0,0,0,0,0,220,4.1,3,3,6000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,12,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,21,12,56,95924,0,0,363,0,0,0,0,0,0,0,150,2.1,3,3,6000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,13,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,11,56,95906,0,0,357,0,0,0,0,0,0,0,150,1.5,3,3,6000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,13,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,11,60,95888,0,0,355,0,0,0,0,0,0,0,100,1.5,4,4,6000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,13,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,11,64,95870,0,0,353,0,0,0,0,0,0,0,150,1.5,5,5,6000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,13,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,11,72,95834,0,0,346,0,0,0,0,0,0,0,320,1.5,6,6,6000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,13,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,17,11,68,95852,0,0,348,0,0,0,0,0,0,0,305,1,5,5,6000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,13,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,15,12,82,95815,0,0,352,0,0,0,0,0,0,0,23,1,8,8,6000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,13,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,18,12,68,95870,273,1382,354,98,144,70,10832,3541,7775,2372,151,1,5,5,6000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,13,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,11,56,95906,555,1412,357,317,450,140,35678,28040,15823,5410,150,2.1,3,3,6000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,13,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,22,11,50,95942,819,1412,363,554,705,145,65383,45634,17193,6729,282,1,2,2,6000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,13,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,24,12,47,95977,1048,1412,374,766,834,146,93426,52488,17922,7449,64,1.5,2,2,6000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,13,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,11,39,96011,1226,1412,378,936,815,228,113152,57128,27679,11233,170,2.1,1,1,6000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,13,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,10,32,96046,1342,1412,380,1047,821,265,126933,59485,32346,12926,170,5.1,0,0,6000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,12,13,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,9,29,96063,1387,1412,384,1091,823,281,130000,60657,34310,13621,220,5.7,0,0,6000,77777,9,999999999,22,0,0,88,0.2,0,0 +2016,12,13,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,9,29,96063,1358,1412,384,1063,822,272,129007,60286,33166,13212,230,7.2,0,0,6000,77777,9,999999999,22,0,0,88,0.2,0,0 +2016,12,13,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,30,7,24,96079,1257,1412,386,971,817,243,117436,59915,29584,11905,210,6.7,0,0,6000,77777,9,999999999,18,0,0,88,0.2,0,0 +2016,12,13,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,30,8,25,96079,1091,1412,387,814,855,152,99682,56088,18742,7800,200,7.7,0,0,6000,77777,9,999999999,20,0,0,88,0.2,0,0 +2016,12,13,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,8,27,96063,871,1412,382,609,738,153,72243,49701,18199,7207,210,7.2,0,0,6000,77777,9,999999999,20,0,0,88,0.2,0,0 +2016,12,13,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,9,30,96046,613,1412,379,375,537,141,42732,34689,16136,5733,220,7.2,0,0,6000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,12,13,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,10,37,96011,334,1412,370,149,260,87,16480,9993,9712,3019,220,7.2,0,0,6000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,12,13,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,9,38,95977,53,1412,359,12,0,12,1152,0,1160,408,200,7.2,0,0,6000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,12,13,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,23,7,36,95959,0,282,352,0,0,0,0,0,0,0,200,6.2,0,0,6000,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,12,13,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,23,6,33,95959,0,0,350,0,0,0,0,0,0,0,150,3.6,0,0,6000,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,12,13,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,21,8,43,95924,0,0,350,0,0,0,0,0,0,0,150,3.1,1,1,6000,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,12,13,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,8,46,95906,0,0,350,0,0,0,0,0,0,0,150,2.6,2,2,6000,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,12,14,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,9,49,95906,0,0,351,0,0,0,0,0,0,0,240,1.5,2,2,6000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,12,14,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,8,49,95888,0,0,345,0,0,0,0,0,0,0,180,1.5,2,2,6000,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,12,14,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,8,52,95870,0,0,344,0,0,0,0,0,0,0,190,1.5,3,3,6000,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,12,14,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,7,52,95852,0,0,338,0,0,0,0,0,0,0,170,2.6,3,3,6000,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,12,14,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,16,8,59,95834,0,0,337,0,0,0,0,0,0,0,4,1,4,4,6000,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,12,14,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,14,9,72,95797,0,0,334,0,0,0,0,0,0,0,350,2.1,6,6,6000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,12,14,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,18,9,56,95870,272,1378,345,105,135,79,11505,4058,8700,2550,8,0.5,3,3,6000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,12,14,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,8,46,95906,553,1412,350,323,483,133,36525,30213,15137,5219,170,1.5,2,2,6000,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,12,14,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,22,9,43,95942,818,1412,356,558,711,146,65845,46946,17249,6739,80,1,1,1,6000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,12,14,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,9,38,95977,1047,1412,359,771,841,146,94138,54505,17948,7447,340,1.5,0,0,6000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,12,14,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,10,37,96011,1226,1412,370,937,815,229,113274,57751,27838,11285,140,1.5,0,0,6000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,12,14,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,28,10,32,96046,1342,1412,380,1047,821,265,126926,59496,32343,12925,52,2.1,0,0,6000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,12,14,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,31,9,26,96096,1387,1412,394,1091,824,281,130000,60682,34339,13631,180,3.6,0,0,6000,77777,9,999999999,22,0,0,88,0.2,0,0 +2016,12,14,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,32,9,24,96113,1359,1412,399,1064,822,272,129145,60323,33221,13232,150,2.6,0,0,6000,77777,9,999999999,22,0,0,88,0.2,0,0 +2016,12,14,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,32,10,26,96113,1258,1412,400,968,817,239,117103,58300,29121,11756,160,4.1,0,0,6000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,12,14,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,32,7,21,96113,1093,1412,396,817,858,152,100168,56680,18737,7797,220,7.2,0,0,6000,77777,9,999999999,18,0,0,88,0.2,0,0 +2016,12,14,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,32,4,17,96113,874,1412,392,615,720,169,72554,51370,20022,7836,230,7.2,0,0,6000,77777,9,999999999,14,0,0,88,0.2,0,0 +2016,12,14,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,32,2,15,96113,616,1412,390,381,562,136,43777,37464,15634,5588,220,4.6,0,0,6000,77777,9,999999999,11,0,0,88,0.2,0,0 +2016,12,14,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,31,2,16,96096,337,1412,385,153,275,87,17006,11633,9742,3031,220,5.1,0,0,6000,77777,9,999999999,11,0,0,88,0.2,0,0 +2016,12,14,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,1,16,96063,56,1412,373,13,0,13,1236,0,1244,433,200,4.6,0,0,6000,77777,9,999999999,10,0,0,88,0.2,0,0 +2016,12,14,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,4,24,96011,0,300,362,0,0,0,0,0,0,0,170,4.6,0,0,6000,77777,9,999999999,14,0,0,88,0.2,0,0 +2016,12,14,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,1,21,95994,0,0,354,0,0,0,0,0,0,0,180,5.7,0,0,6000,77777,9,999999999,10,0,0,88,0.2,0,0 +2016,12,14,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,23,4,29,95959,0,0,348,0,0,0,0,0,0,0,144,1,0,0,6000,77777,9,999999999,14,0,0,88,0.2,0,0 +2016,12,14,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,23,2,25,95959,0,0,346,0,0,0,0,0,0,0,150,2.1,0,0,6000,77777,9,999999999,11,0,0,88,0.2,0,0 +2016,12,15,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,21,3,30,95924,0,0,338,0,0,0,0,0,0,0,180,3.6,0,0,6000,77777,9,999999999,12,0,0,88,0.2,0,0 +2016,12,15,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,19.6,5.1,39,95809,0,0,334,0,0,0,0,0,0,0,250,1.5,0,0,6000,77777,9,999999999,15,0,0,88,0.2,0,0 +2016,12,15,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,6,48,95852,0,0,334,0,0,0,0,0,0,0,360,2.6,2,2,6000,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,12,15,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,5,45,95852,0,0,322,0,0,0,0,0,0,0,172,1,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2016,12,15,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,6,51,95834,0,0,318,0,0,0,0,0,0,0,257,0,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,12,15,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,15,7,59,95815,0,0,331,0,0,0,0,0,0,0,114,1,4,4,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,12,15,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,7,52,95852,271,1373,324,107,145,79,11674,4471,8666,2536,20,3.1,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,12,15,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,22,7,38,95942,552,1412,347,323,487,132,36558,30582,15022,5180,10,2.6,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,12,15,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,5,28,95994,817,1412,359,561,699,156,65917,48578,18397,7117,350,2.1,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2016,12,15,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,29,5,22,96063,1046,1412,378,775,838,153,94433,56604,18766,7751,208,1,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2016,12,15,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,31,4,18,96096,1225,1412,387,946,815,238,114213,60821,28854,11622,245,1.5,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2016,12,15,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,34,5,16,96146,1342,1412,404,1055,821,273,127876,62166,33318,13238,180,3.1,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2016,12,15,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,35,3,13,96162,1388,1412,407,1101,824,291,130000,63640,35540,14014,180,5.1,0,0,8000,77777,9,999999999,12,0,0,88,0.2,0,0 +2016,12,15,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,35,3,13,96162,1360,1412,407,1075,822,282,130000,63278,34412,13615,210,6.2,0,0,8000,77777,9,999999999,12,0,0,88,0.2,0,0 +2016,12,15,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,36,1,11,96178,1260,1412,409,983,817,253,118790,62602,30746,12293,220,7.7,0,0,8000,77777,9,999999999,10,0,0,88,0.2,0,0 +2016,12,15,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,35,5,16,96162,1095,1412,409,821,852,160,100444,57786,19664,8154,220,8.2,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2016,12,15,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,34,6,18,96146,877,1412,406,616,733,160,72911,50792,19013,7500,220,3.1,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,12,15,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,6,20,96113,619,1412,395,382,553,139,43689,36345,15947,5695,210,8.8,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,12,15,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,6,22,96079,340,1412,385,154,273,88,17127,11316,9847,3069,190,7.2,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,12,15,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,7,30,96011,59,1412,366,13,0,13,1296,0,1305,454,150,4.1,0,0,8000,77777,9,999999999,18,0,0,88,0.2,0,0 +2016,12,15,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,7,36,95959,0,316,352,0,0,0,0,0,0,0,150,7.2,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,12,15,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,7,40,95924,0,0,342,0,0,0,0,0,0,0,150,5.7,0,0,9000,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,12,15,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20.7,7.1,41,95753,0,0,341,0,0,0,0,0,0,0,160,4.6,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,12,15,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,7,43,95906,0,0,338,0,0,0,0,0,0,0,180,3.1,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,12,16,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,7,46,95888,0,0,333,0,0,0,0,0,0,0,180,4.6,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,12,16,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,7,52,95852,0,0,324,0,0,0,0,0,0,0,140,1.5,0,0,7000,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,12,16,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,7,52,95852,0,0,324,0,0,0,0,0,0,0,180,2.1,0,0,7000,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,12,16,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,8,63,95815,0,0,316,0,0,0,0,0,0,0,48,0.5,0,0,7000,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,12,16,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,8,63,95815,0,0,316,0,0,0,0,0,0,0,68,0.5,0,0,7000,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,12,16,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,8,67,95797,0,0,312,0,0,0,0,0,0,0,330,1.5,0,0,5000,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,12,16,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,9,67,95815,270,1367,317,106,142,78,11533,4183,8607,2521,309,0.5,0,0,5000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,12,16,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,8,49,95888,551,1412,334,321,483,132,36327,30114,15034,5180,150,1.5,0,0,6000,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,12,16,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,8,41,95942,815,1412,348,557,710,147,65682,47352,17362,6768,160,2.6,0,0,6000,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,12,16,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,9,38,95977,1045,1412,359,769,841,146,93897,54475,17910,7430,170,2.6,0,0,6000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,12,16,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,8,32,96011,1225,1412,367,939,815,232,113475,58886,28134,11382,160,4.1,0,0,7000,77777,9,999999999,20,0,0,88,0.2,0,0 +2016,12,16,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,10,32,96046,1342,1412,380,1046,822,265,126892,59515,32328,12919,160,6.2,0,0,7000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,12,16,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,11,33,96063,1388,1412,386,1089,824,278,130000,59491,33948,13508,170,5.7,0,0,8000,77777,9,999999999,27,0,0,88,0.2,0,0 +2016,12,16,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,11,31,96079,1361,1412,391,1063,823,269,128964,59149,32886,13128,180,6.7,0,0,8000,77777,9,999999999,27,0,0,88,0.2,0,0 +2016,12,16,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,13,35,96079,1262,1412,394,967,817,236,116884,56388,28672,11613,230,6.2,0,0,8000,77777,9,999999999,33,0,0,88,0.2,0,0 +2016,12,16,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,13,37,96063,1097,1412,389,813,851,151,99502,53062,18585,7762,220,6.7,0,0,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,16,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,14,40,96063,879,1412,397,610,757,138,72782,46528,16564,6655,220,6.7,1,1,8000,77777,9,999999999,37,0,0,88,0.2,0,0 +2016,12,16,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,14,48,96011,622,1412,387,378,520,148,42862,32664,16905,5997,220,5.7,2,2,8000,77777,9,999999999,37,0,0,88,0.2,0,0 +2016,12,16,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,14,54,95977,343,1412,365,155,254,93,17024,9731,10267,3182,210,5.1,0,0,8000,77777,9,999999999,37,0,0,88,0.2,0,0 +2016,12,16,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,14,60,95942,62,1412,355,14,0,14,1349,0,1358,474,160,5.1,0,0,8000,77777,9,999999999,37,0,0,88,0.2,0,0 +2016,12,16,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,14,64,95924,0,333,350,0,0,0,0,0,0,0,160,4.6,0,0,8000,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,12,16,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,14,73,95888,0,0,341,0,0,0,0,0,0,0,160,4.1,0,0,8000,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,12,16,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,14,77,95870,0,0,336,0,0,0,0,0,0,0,160,4.6,0,0,8000,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,12,16,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,13,73,95870,0,0,335,0,0,0,0,0,0,0,160,2.6,0,0,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,17,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,13,77,95852,0,0,331,0,0,0,0,0,0,0,160,3.6,0,0,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,17,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,13,82,95834,0,0,326,0,0,0,0,0,0,0,150,2.6,0,0,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,17,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,13,88,95815,0,0,322,0,0,0,0,0,0,0,160,3.6,0,0,6000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,17,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15,13,88,95815,0,0,335,0,0,0,0,0,0,0,160,3.6,3,3,6000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,17,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14,13,94,95797,0,0,336,0,0,0,0,0,0,0,170,4.1,5,5,4000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,17,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,13,94,95797,0,0,356,0,0,0,0,0,0,0,170,3.6,9,9,3000,91,9,999999999,34,0,0,88,0.2,0,0 +2016,12,17,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,13,94,95797,268,1361,366,33,0,33,3201,0,3224,1305,170,2.6,10,10,3000,91,9,999999999,34,0,0,88,0.2,0,0 +2016,12,17,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,13,88,95815,549,1413,341,295,326,168,32644,21860,18683,6057,200,2.6,5,5,4000,610,9,999999999,34,0,0,88,0.2,0,0 +2016,12,17,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18,14,77,95870,814,1413,351,543,694,143,63959,43226,16893,6622,220,2.1,3,3,6000,610,9,999999999,38,0,0,88,0.2,0,0 +2016,12,17,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,14,68,95906,1044,1413,346,762,839,141,92993,51078,17264,7194,160,4.6,0,0,6000,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,12,17,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,14,60,95942,1224,1413,355,930,892,156,115317,54346,19411,8110,160,5.7,0,0,8000,77777,9,999999999,37,0,0,88,0.2,0,0 +2016,12,17,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,14,57,95959,1341,1413,360,1040,822,258,126000,56768,31485,12649,170,7.7,0,0,8000,77777,9,999999999,37,0,0,88,0.2,0,0 +2016,12,17,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,13,50,95977,1388,1413,376,1079,901,193,130000,57134,24142,9925,170,7.7,2,2,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,17,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,12,39,96029,1362,1413,385,1062,823,268,128845,58494,32697,13068,170,7.2,1,1,8000,77777,9,999999999,30,0,0,88,0.2,0,0 +2016,12,17,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,13,40,96046,1263,1413,391,968,817,236,117043,56407,28707,11626,160,7.2,1,1,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,17,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,13,40,96046,1099,1413,391,815,851,152,99722,53106,18643,7787,160,6.7,1,1,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,17,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,13,40,96046,882,1413,391,613,755,142,73105,47304,16954,6799,160,8.2,1,1,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,17,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,12,39,96029,625,1413,385,383,536,145,43576,34139,16616,5920,180,7.7,1,1,8000,77777,9,999999999,30,0,0,88,0.2,0,0 +2016,12,17,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,13,47,95994,346,1413,381,157,256,94,17255,10153,10362,3214,220,5.1,2,2,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,17,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,23,14,57,95959,65,1413,378,14,0,14,1383,0,1393,487,160,4.1,4,4,8000,77777,9,999999999,37,0,0,88,0.2,0,0 +2016,12,17,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,22,13,57,95942,0,349,372,0,0,0,0,0,0,0,180,5.1,4,4,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,17,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,13,64,95906,0,0,365,0,0,0,0,0,0,0,170,4.6,5,5,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,17,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,12,68,95870,0,0,354,0,0,0,0,0,0,0,160,4.6,5,5,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,17,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,12,77,95834,0,0,351,0,0,0,0,0,0,0,160,5.1,7,7,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,18,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,11,72,95834,0,0,346,0,0,0,0,0,0,0,160,3.6,6,6,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,18,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,11,77,95815,0,0,345,0,0,0,0,0,0,0,180,2.6,7,7,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,18,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,14,11,82,95797,0,0,346,0,0,0,0,0,0,0,160,4.1,8,8,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,18,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,13,11,88,95778,0,0,349,0,0,0,0,0,0,0,170,3.6,9,9,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,18,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,14,11,82,95797,0,0,346,0,0,0,0,0,0,0,150,3.6,8,8,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,18,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,14,11,82,95797,0,0,346,0,0,0,0,0,0,0,200,2.1,8,8,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,18,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,11,82,95797,267,1354,353,53,0,53,5219,0,5258,1933,140,2.1,9,9,8000,4572,9,999999999,28,0,0,88,0.2,0,0 +2016,12,18,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16,12,77,95834,548,1413,365,163,21,155,18185,1335,17376,5755,170,1.5,9,9,8000,4572,9,999999999,31,0,0,88,0.2,0,0 +2016,12,18,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18,12,68,95870,813,1413,354,512,516,215,58480,38450,24709,9070,220,2.1,5,5,8000,6096,9,999999999,31,0,0,88,0.2,0,0 +2016,12,18,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,20,12,60,95906,1043,1413,364,710,637,239,83340,46992,28220,11149,170,3.1,5,5,8000,6096,9,999999999,31,0,0,88,0.2,0,0 +2016,12,18,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,22,13,57,95942,1223,1413,372,911,823,197,111054,54129,24129,9934,190,3.6,4,4,8000,6096,9,999999999,34,0,0,88,0.2,0,0 +2016,12,18,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,14,54,95977,1341,1413,381,1026,841,227,125574,55713,27910,11358,170,5.1,3,3,8000,6096,9,999999999,37,0,0,88,0.2,0,0 +2016,12,18,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,26,12,42,96011,1389,1413,394,1012,633,389,119717,51402,46326,17440,220,6.2,5,5,8000,6096,9,999999999,30,0,0,88,0.2,0,0 +2016,12,18,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,27,13,42,96029,1363,1413,378,1061,884,208,130000,57487,25839,10578,200,6.7,0,0,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,18,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,13,42,96029,1265,1413,386,969,818,236,117188,56415,28728,11634,200,6.2,1,1,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,18,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,13,45,96011,1101,1413,386,816,849,153,99782,53081,18786,7844,220,7.2,2,2,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,18,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,13,47,95994,884,1413,381,614,750,144,73116,47240,17207,6896,210,9.3,2,2,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,18,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,23,13,53,95959,628,1413,374,380,515,152,43150,33021,17267,6116,220,8.2,3,3,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,18,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,12,60,95906,349,1413,361,154,234,96,16956,9673,10620,3279,220,6.7,4,4,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,18,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,12,72,95852,68,1413,352,13,0,13,1293,0,1302,466,200,8.2,6,6,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,18,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,17,12,72,95852,0,364,344,0,0,0,0,0,0,0,180,6.7,3,3,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,18,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,11,77,95815,0,0,345,0,0,0,0,0,0,0,150,4.6,7,7,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,18,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,11,77,95815,0,0,345,0,0,0,0,0,0,0,160,4.6,7,7,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,18,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,11,77,95815,0,0,345,0,0,0,0,0,0,0,160,3.1,7,7,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,19,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,14,11,82,95797,0,0,346,0,0,0,0,0,0,0,170,4.6,8,8,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,19,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,14,12,88,95797,0,0,355,0,0,0,0,0,0,0,160,2.6,9,9,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,19,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,14,12,88,95797,0,0,355,0,0,0,0,0,0,0,146,1,9,9,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,19,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,13,11,88,95778,0,0,349,0,0,0,0,0,0,0,230,1.5,9,9,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,19,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,13,11,88,95778,0,0,349,0,0,0,0,0,0,0,269,0.5,9,9,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,19,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,12,11,94,95759,0,0,320,0,0,0,0,0,0,0,170,0.5,3,3,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,19,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,11,82,95797,265,1346,315,102,163,72,11222,4040,7894,2363,201,1,0,0,6000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,19,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,12,77,95834,546,1413,325,315,466,134,35466,28112,15202,5212,238,1.5,0,0,5000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,19,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,12,68,95870,811,1413,334,549,745,121,65549,45106,14529,5764,228,1.5,0,0,7000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,19,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,21,13,60,95924,1042,1413,367,736,753,180,88165,49819,21659,8862,70,1.5,4,4,7000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,19,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,23,13,53,95959,1223,1413,374,920,845,188,112571,54815,23082,9537,303,2.1,3,3,7000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,19,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,13,45,96011,1341,1413,386,1039,822,258,126045,57436,31528,12657,170,6.2,2,2,7000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,19,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,12,37,96046,1389,1413,382,1088,824,276,130000,58863,33763,13451,160,6.7,0,0,7000,77777,9,999999999,30,0,0,88,0.2,0,0 +2016,12,19,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,11,33,96063,1364,1413,386,1065,823,270,129270,59209,32979,13161,150,6.7,0,0,7000,77777,9,999999999,27,0,0,88,0.2,0,0 +2016,12,19,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,30,9,27,96079,1266,1413,389,977,818,243,118152,59046,29573,11914,170,6.2,0,0,7000,77777,9,999999999,22,0,0,88,0.2,0,0 +2016,12,19,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,32,6,20,96113,1103,1413,395,828,857,157,101400,57481,19361,8046,180,6.2,0,0,7000,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,12,19,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,30,10,29,96079,887,1413,390,621,749,150,73841,49294,17927,7151,230,6.2,0,0,7000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,12,19,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,30,10,29,96079,630,1413,390,389,552,142,44430,35554,16326,5852,220,6.2,0,0,7000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,12,19,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,9,30,96046,352,1413,379,162,284,91,17970,11857,10156,3186,210,6.2,0,0,7000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,12,19,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,11,39,96011,71,1413,378,16,0,16,1545,0,1556,538,210,6.2,1,1,7000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,19,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,11,41,95994,0,379,373,0,0,0,0,0,0,0,210,5.7,1,1,7000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,19,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,11,44,95977,0,0,368,0,0,0,0,0,0,0,150,2.6,1,1,7000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,19,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,22,12,53,95942,0,0,368,0,0,0,0,0,0,0,130,2.1,3,3,7000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,19,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,11,56,95906,0,0,357,0,0,0,0,0,0,0,150,2.1,3,3,7000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,20,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,11,56,95906,0,0,357,0,0,0,0,0,0,0,150,2.1,3,3,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,20,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,11,64,95870,0,0,333,0,0,0,0,0,0,0,211,1,0,0,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,20,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,11,72,95834,0,0,324,0,0,0,0,0,0,0,20,2.1,0,0,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,20,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,11,72,95834,0,0,324,0,0,0,0,0,0,0,184,1,0,0,5000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,20,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16.5,10.8,69,95583,0,0,326,0,0,0,0,0,0,0,347,1.5,0,0,6000,77777,9,999999999,27,0,0,88,0.2,0,0 +2016,12,20,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,10,77,95797,0,0,314,0,0,0,0,0,0,0,30,2.1,0,0,6000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,12,20,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,11,64,95870,263,1338,333,101,162,71,11122,3946,7834,2344,350,2.1,0,0,5000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,20,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,11,53,95924,544,1413,347,314,469,133,35425,28456,15099,5175,247,1,0,0,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,20,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,24,11,44,95977,809,1413,368,548,711,141,64739,45606,16688,6527,137,0.5,1,1,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,20,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,26,10,37,96011,1040,1413,370,764,840,145,93187,53815,17723,7353,262,1.5,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,12,20,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,10,32,96046,1222,1413,380,934,815,228,112770,57753,27685,11229,160,3.1,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,12,20,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,30,11,31,96079,1341,1413,391,1044,822,263,126562,58929,32103,12846,170,4.6,0,0,8000,77777,9,999999999,27,0,0,88,0.2,0,0 +2016,12,20,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,31,9,26,96096,1389,1413,394,1093,824,282,130000,60778,34417,13659,170,5.1,0,0,8000,77777,9,999999999,22,0,0,88,0.2,0,0 +2016,12,20,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,32,8,23,96113,1364,1413,398,1071,823,276,129991,61023,33635,13372,220,7.2,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2016,12,20,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,32,10,26,96113,1268,1413,400,977,818,242,118148,58508,29470,11883,220,7.7,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,12,20,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,31,7,22,96096,1105,1413,391,828,862,154,101651,57003,18933,7883,220,9.8,0,0,8000,77777,9,999999999,18,0,0,88,0.2,0,0 +2016,12,20,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,7,25,96063,889,1413,381,626,746,156,74357,50892,18661,7409,210,8.8,0,0,8000,77777,9,999999999,18,0,0,88,0.2,0,0 +2016,12,20,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,8,30,96029,633,1413,372,393,562,140,44973,36659,16151,5806,210,8.8,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2016,12,20,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,7,30,96011,355,1413,366,165,292,91,18301,12567,10195,3203,200,7.2,0,0,8000,77777,9,999999999,18,0,0,88,0.2,0,0 +2016,12,20,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,23,4,29,95959,74,1413,348,17,0,17,1625,0,1636,561,180,7.7,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2016,12,20,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,22,2,27,95942,0,393,341,0,0,0,0,0,0,0,140,5.1,0,0,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2016,12,20,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,-1,24,95906,0,0,328,0,0,0,0,0,0,0,150,4.6,0,0,8000,77777,9,999999999,8,0,0,88,0.2,0,0 +2016,12,20,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,0,28,95888,0,0,325,0,0,0,0,0,0,0,160,4.1,0,0,8000,77777,9,999999999,9,0,0,88,0.2,0,0 +2016,12,20,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,0,32,95852,0,0,316,0,0,0,0,0,0,0,160,4.6,0,0,8000,77777,9,999999999,9,0,0,88,0.2,0,0 +2016,12,21,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,0,32,95852,0,0,316,0,0,0,0,0,0,0,160,2.1,0,0,8000,77777,9,999999999,9,0,0,88,0.2,0,0 +2016,12,21,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,1,36,95834,0,0,313,0,0,0,0,0,0,0,170,2.1,0,0,8000,77777,9,999999999,10,0,0,88,0.2,0,0 +2016,12,21,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,3,44,95815,0,0,317,0,0,0,0,0,0,0,170,1.5,1,1,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2016,12,21,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,13,3,51,95778,0,0,315,0,0,0,0,0,0,0,115,1,3,3,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2016,12,21,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,14,3,47,95797,0,0,317,0,0,0,0,0,0,0,350,1,2,2,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2016,12,21,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,4,54,95778,0,0,303,0,0,0,0,0,0,0,180,1.5,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2016,12,21,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,5,51,95815,261,1329,313,101,137,76,11046,4003,8309,2424,339,1,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2016,12,21,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,3,37,95870,542,1414,324,316,489,129,35894,31036,14659,5037,272,1,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2016,12,21,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,20,4,35,95906,808,1414,334,553,691,158,64908,48535,18592,7151,18,1.5,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2016,12,21,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,3,27,95959,1039,1414,347,770,831,159,93591,57354,19361,7962,220,1.5,0,0,8000,77777,9,999999999,12,0,0,88,0.2,0,0 +2016,12,21,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,2,21,96011,1221,1414,360,944,815,239,113934,61605,28972,11655,170,2.6,0,0,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2016,12,21,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,5,24,96029,1340,1414,369,1053,822,272,127639,62188,33216,13202,170,5.1,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2016,12,21,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,4,20,96063,1389,1414,377,1101,825,290,130000,63289,35390,13967,170,7.2,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2016,12,21,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,7,26,96046,1365,1414,376,1073,823,277,130000,61555,33836,13437,210,8.2,0,0,8000,77777,9,999999999,18,0,0,88,0.2,0,0 +2016,12,21,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,8,27,96063,1269,1414,382,981,818,246,118653,59666,29867,12014,220,7.2,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2016,12,21,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,8,28,96046,1107,1414,377,829,860,155,101628,56510,19034,7927,210,8.2,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2016,12,21,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,7,28,96029,891,1414,371,628,746,157,74607,50973,18705,7430,200,8.8,0,0,8000,77777,9,999999999,18,0,0,88,0.2,0,0 +2016,12,21,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,7,32,95994,635,1414,361,395,568,140,45351,37242,16094,5797,200,8.8,0,0,5000,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,12,21,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,7,38,95942,358,1414,347,167,295,92,18516,12814,10260,3228,200,7.7,0,0,4000,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,12,21,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,6,43,95888,76,1414,332,17,0,17,1678,0,1689,579,180,9.3,0,0,5000,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,12,21,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,3,37,95870,0,407,324,0,0,0,0,0,0,0,150,4.6,0,0,7000,77777,9,999999999,13,0,0,88,0.2,0,0 +2016,12,21,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,6,51,95834,0,0,318,0,0,0,0,0,0,0,150,5.7,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,12,21,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,8,59,95834,0,0,321,0,0,0,0,0,0,0,150,4.6,0,0,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,12,21,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,9,67,95815,0,0,317,0,0,0,0,0,0,0,150,3.6,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,12,22,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,9,67,95815,0,0,336,0,0,0,0,0,0,0,160,2.1,5,5,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,12,22,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,13,9,77,95778,0,0,334,0,0,0,0,0,0,0,350,1.5,7,7,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,12,22,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,13,9,77,95778,0,0,334,0,0,0,0,0,0,0,230,1,7,7,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,12,22,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,13,10,82,95778,0,0,340,0,0,0,0,0,0,0,160,1.5,8,8,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,12,22,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,9,77,95778,0,0,309,0,0,0,0,0,0,0,187,1,0,0,6000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,12,22,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,8,82,95740,0,0,299,0,0,0,0,0,0,0,20,1.5,0,0,6000,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,12,22,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,9,77,95778,259,1319,309,99,132,75,10824,3527,8217,2400,30,1.5,0,0,5000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,12,22,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,8,59,95834,540,1414,321,312,475,130,35298,29302,14799,5073,163,1,0,0,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,12,22,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,8,49,95888,806,1414,334,548,706,145,64606,46974,17194,6683,264,1,0,0,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,12,22,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,22,9,43,95942,1038,1414,356,762,838,145,92902,54302,17810,7380,161,1.5,1,1,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,12,22,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,23,9,41,95959,1220,1414,361,933,815,228,112677,58286,27736,11241,180,3.6,1,1,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,12,22,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,9,36,95994,1340,1414,364,1046,822,266,126830,60130,32430,12948,180,4.6,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,12,22,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,8,28,96046,1390,1414,377,1095,825,283,130000,61346,34608,13719,160,5.1,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2016,12,22,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,6,25,96046,1366,1414,375,1076,823,279,130000,62070,34055,13507,210,6.2,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,12,22,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,7,26,96046,1270,1414,376,984,818,247,118971,60213,30088,12088,230,6.7,0,0,8000,77777,9,999999999,18,0,0,88,0.2,0,0 +2016,12,22,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,9,29,96063,1109,1414,384,829,858,155,101631,55993,19090,7953,220,7.2,0,0,8000,77777,9,999999999,22,0,0,88,0.2,0,0 +2016,12,22,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,9,30,96046,893,1414,379,628,751,153,74719,50101,18263,7283,210,7.7,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,12,22,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,9,32,96029,638,1414,374,396,564,141,45394,36605,16260,5858,220,7.2,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,12,22,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,10,39,95994,360,1414,372,168,294,93,18611,12432,10344,3260,220,7.2,1,1,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,12,22,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,10,44,95959,79,1414,355,18,0,18,1724,0,1736,596,210,7.2,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,12,22,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,22,9,43,95942,0,420,356,0,0,0,0,0,0,0,200,7.2,1,1,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,12,22,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,21,9,46,95924,0,0,356,0,0,0,0,0,0,0,180,6.2,2,2,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,12,22,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,9,49,95906,0,0,351,0,0,0,0,0,0,0,180,4.1,2,2,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,12,22,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,9,56,95870,0,0,345,0,0,0,0,0,0,0,160,4.1,3,3,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,12,23,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,9,59,95852,0,0,343,0,0,0,0,0,0,0,180,3.1,4,4,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,12,23,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,8,55,95852,0,0,339,0,0,0,0,0,0,0,170,2.1,3,3,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,12,23,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,8,59,95834,0,0,337,0,0,0,0,0,0,0,210,1.5,4,4,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,12,23,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,8,67,95797,0,0,312,0,0,0,0,0,0,0,60,1.5,0,0,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,12,23,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,15,9,67,95815,0,0,336,0,0,0,0,0,0,0,236,1,5,5,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,12,23,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,7,55,95834,0,0,333,0,0,0,0,0,0,0,150,2.6,3,3,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,12,23,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,8,59,95834,257,1309,337,95,142,69,10452,3484,7630,2276,150,3.1,4,4,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,12,23,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,6,45,95870,538,1414,338,311,476,130,35197,29709,14719,5040,190,2.6,2,2,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,12,23,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,21,8,43,95924,804,1414,350,546,704,145,64348,46858,17197,6679,150,0.5,1,1,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,12,23,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,22,9,43,95942,1036,1414,356,760,838,145,92714,54269,17783,7368,70,1.5,1,1,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,12,23,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,24,9,38,95977,1219,1414,359,932,815,228,112567,58291,27717,11234,55,3.1,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,12,23,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,10,39,95994,1339,1414,372,1044,822,264,126564,59537,32208,12876,180,3.1,1,1,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,12,23,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,10,34,96029,1390,1414,375,1092,825,280,130000,60198,34199,13589,180,5.7,0,0,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,12,23,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,8,30,96029,1367,1414,372,1073,824,276,130000,61056,33687,13391,220,6.2,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2016,12,23,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,8,28,96046,1271,1414,377,983,818,246,118939,59715,29956,12047,210,5.7,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2016,12,23,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,8,28,96046,1111,1414,377,832,861,155,102046,56595,19103,7956,210,7.2,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2016,12,23,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,7,28,96029,895,1414,371,632,789,131,76140,51176,15903,6418,220,7.7,0,0,8000,77777,9,999999999,18,0,0,88,0.2,0,0 +2016,12,23,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,6,28,96011,640,1414,365,400,576,139,45985,37990,16043,5796,210,8.2,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,12,23,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,5,28,95994,363,1414,359,171,304,93,19013,13684,10359,3268,210,7.7,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2016,12,23,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,22,4,31,95942,81,1414,343,19,0,19,1792,0,1804,616,200,6.2,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2016,12,23,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,22,4,31,95942,0,432,343,0,0,0,0,0,0,0,190,5.7,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2016,12,23,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,4,35,95906,0,0,334,0,0,0,0,0,0,0,160,3.6,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2016,12,23,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,3,34,95888,0,0,329,0,0,0,0,0,0,0,130,3.1,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2016,12,23,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,3,37,95870,0,0,324,0,0,0,0,0,0,0,150,2.6,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2016,12,24,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,15,4,48,95815,0,0,322,0,0,0,0,0,0,0,156,1,2,2,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2016,12,24,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,4,45,95834,0,0,327,0,0,0,0,0,0,0,270,1,2,2,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2016,12,24,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,4,45,95834,0,0,327,0,0,0,0,0,0,0,160,2.1,2,2,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2016,12,24,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,14,5,55,95797,0,0,322,0,0,0,0,0,0,0,280,1.5,3,3,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2016,12,24,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,14,5,55,95797,0,0,322,0,0,0,0,0,0,0,232,0.5,3,3,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2016,12,24,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,5,55,95797,0,0,309,0,0,0,0,0,0,0,132,1,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2016,12,24,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,15,5,51,95815,255,1298,327,96,126,73,10528,3478,8068,2350,210,1,3,3,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2016,12,24,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,4,37,95888,536,1414,330,311,481,128,35183,30212,14571,4989,150,1.5,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2016,12,24,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,21,5,35,95924,802,1414,340,547,693,153,64254,47965,18096,6970,140,2.6,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2016,12,24,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,23,5,31,95959,1035,1414,349,764,835,152,92976,56362,18545,7648,170,4.1,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2016,12,24,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,5,28,95994,1218,1414,359,936,815,234,113091,60311,28351,11444,170,3.6,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2016,12,24,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,4,24,96011,1339,1414,362,1053,822,273,127612,62630,33326,13235,150,5.1,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2016,12,24,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,4,23,96029,1390,1414,367,1101,825,290,130000,63306,35382,13965,220,5.7,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2016,12,24,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,5,23,96046,1367,1414,373,1078,824,281,130000,62572,34292,13585,210,5.1,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2016,12,24,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,7,26,96046,1273,1414,376,986,819,248,119250,60263,30179,12121,210,7.2,0,0,8000,77777,9,999999999,18,0,0,88,0.2,0,0 +2016,12,24,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,6,25,96046,1112,1414,375,836,860,159,102479,57707,19522,8115,220,7.2,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,12,24,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,5,24,96029,897,1414,369,636,786,136,76491,52172,16408,6605,220,7.2,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2016,12,24,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,5,28,95994,643,1414,359,403,581,138,46341,38526,15983,5785,230,7.7,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2016,12,24,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,5,31,95959,365,1414,349,173,307,93,19211,13915,10415,3290,210,7.2,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2016,12,24,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,3,30,95924,84,1414,338,19,0,19,1845,0,1857,633,180,7.2,0,0,8000,77777,9,999999999,12,0,0,88,0.2,0,0 +2016,12,24,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,2,30,95906,0,444,332,0,0,0,0,0,0,0,180,3.6,0,0,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2016,12,24,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,1,32,95870,0,0,322,0,0,0,0,0,0,0,150,4.1,0,0,8000,77777,9,999999999,10,0,0,88,0.2,0,0 +2016,12,24,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,2,34,95870,0,0,323,0,0,0,0,0,0,0,160,4.1,0,0,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2016,12,24,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,2,36,95852,0,0,318,0,0,0,0,0,0,0,150,3.6,0,0,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2016,12,25,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,16,3,42,95834,0,0,321,0,0,0,0,0,0,0,204,1,1,1,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2016,12,25,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,3,44,95815,0,0,317,0,0,0,0,0,0,0,260,1,1,1,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2016,12,25,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,14,4,51,95797,0,0,321,0,0,0,0,0,0,0,150,2.1,3,3,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2016,12,25,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,4,51,95797,0,0,308,0,0,0,0,0,0,0,160,2.1,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2016,12,25,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,5,58,95778,0,0,304,0,0,0,0,0,0,0,222,0.5,0,0,8000,77777,9,999999999,15,0,0,88,0.2,0,0 +2016,12,25,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,4,62,95740,0,0,295,0,0,0,0,0,0,0,118,1,0,0,7000,77777,9,999999999,14,0,0,88,0.2,0,0 +2016,12,25,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,5,58,95778,252,1286,304,95,127,73,10440,3426,7983,2324,30,1.5,0,0,6000,77777,9,999999999,15,0,0,88,0.2,0,0 +2016,12,25,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,4,42,95852,534,1414,321,309,478,128,34949,30008,14529,4969,159,1.5,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2016,12,25,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,3,34,95888,800,1414,329,547,683,160,64041,48476,18783,7187,247,1,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2016,12,25,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,2,28,95924,1033,1414,336,765,827,161,92852,57606,19562,8026,210,2.1,0,0,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2016,12,25,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,2,25,95959,1216,1414,346,939,815,237,113394,61543,28777,11584,160,3.1,0,0,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2016,12,25,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,4,27,95977,1338,1414,353,1052,822,273,127527,62620,33289,13222,180,3.1,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2016,12,25,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,4,24,96011,1390,1414,362,1101,825,290,130000,63308,35373,13962,180,4.6,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2016,12,25,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,6,25,96046,1368,1414,375,1077,824,280,130000,62113,34123,13532,210,5.1,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,12,25,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,7,28,96029,1274,1414,371,987,819,248,119376,60282,30216,12135,220,7.2,0,0,8000,77777,9,999999999,18,0,0,88,0.2,0,0 +2016,12,25,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,7,28,96029,1114,1414,371,836,864,155,102657,57201,19114,7959,210,6.7,0,0,8000,77777,9,999999999,18,0,0,88,0.2,0,0 +2016,12,25,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,7,30,96011,899,1414,366,635,750,158,75562,51290,18848,7500,220,6.7,0,0,6000,77777,9,999999999,18,0,0,88,0.2,0,0 +2016,12,25,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,8,36,95977,645,1414,358,403,574,141,46242,37519,16233,5872,220,6.2,0,0,6000,77777,9,999999999,20,0,0,88,0.2,0,0 +2016,12,25,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22,8,41,95942,367,1414,363,171,292,95,19017,13076,10614,3347,210,6.7,3,3,6000,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,12,25,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20,8,46,95906,86,1414,353,19,0,19,1857,0,1870,641,180,4.1,3,3,6000,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,12,25,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18,6,45,95870,0,455,342,0,0,0,0,0,0,0,150,4.1,3,3,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,12,25,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,6,51,95834,0,0,318,0,0,0,0,0,0,0,160,4.6,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,12,25,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,6,55,95815,0,0,314,0,0,0,0,0,0,0,150,3.6,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,12,25,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,7,63,95797,0,0,311,0,0,0,0,0,0,0,160,4.1,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,12,26,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,6,62,95778,0,0,321,0,0,0,0,0,0,0,160,4.6,4,4,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,12,26,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,6,62,95778,0,0,321,0,0,0,0,0,0,0,170,3.6,4,4,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,12,26,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,6,67,95759,0,0,319,0,0,0,0,0,0,0,160,2.6,5,5,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,12,26,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,6,67,95759,0,0,319,0,0,0,0,0,0,0,160,3.1,5,5,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,12,26,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,6,67,95759,0,0,319,0,0,0,0,0,0,0,160,2.6,5,5,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,12,26,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,7,76,95740,0,0,298,0,0,0,0,0,0,0,150,2.6,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,12,26,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,7,71,95759,250,1274,323,83,88,67,9104,2036,7427,2208,170,3.6,6,6,8399,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,12,26,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,7,63,95797,532,1414,329,290,400,139,32573,25636,15723,5267,220,2.1,5,5,8799,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,12,26,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,15,7,59,95815,798,1414,331,526,642,163,61369,44802,19118,7298,129,2.1,4,4,9199,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,12,26,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18,7,49,95870,1031,1414,339,755,830,149,91893,54989,18205,7518,130,2.1,2,2,9599,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,12,26,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,20,7,43,95906,1215,1414,352,919,856,183,112933,58266,22604,9329,240,2.6,3,3,9599,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,12,26,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,22,8,41,95942,1337,1414,369,973,720,291,117150,54709,35221,13893,190,4.1,5,5,9599,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,12,26,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,23,7,36,95959,1390,1414,373,1020,734,298,123492,55923,36236,14265,210,5.7,5,5,9599,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,12,26,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,25,7,32,95994,1368,1414,383,1001,622,399,118216,53153,47449,17677,200,7.2,5,5,9599,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,12,26,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,25,8,34,95994,1275,1414,407,509,110,410,59241,9742,47998,17570,200,7.7,9,9,9599,3048,9,999999999,20,0,0,88,0.2,0,0 +2016,12,26,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,24,8,36,95977,1116,1414,379,778,583,318,90397,48586,37171,14141,210,8.2,5,5,9599,3048,9,999999999,20,0,0,88,0.2,0,0 +2016,12,26,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,22.5,7.5,38,95950,901,1414,350,637,665,212,73978,50157,24778,9488,302,7.9,0,0,9599,3048,9,999999999,20,0,0,88,0.2,0,0 +2016,12,26,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,21,7,40,95924,647,1414,384,209,67,179,23582,4873,20228,6969,200,7.7,9,9,9599,2438,9,999999999,19,0,0,88,0.2,0,0 +2016,12,26,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,20,7,43,95906,369,1414,379,91,0,91,8954,0,9022,3245,200,7.7,9,9,9599,2438,9,999999999,19,0,0,88,0.2,0,0 +2016,12,26,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,18,8,52,95870,88,1414,370,10,0,10,995,0,1002,387,200,5.7,9,9,9599,1829,9,999999999,21,0,0,88,0.2,0,0 +2016,12,26,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,9,67,95815,0,466,356,0,0,0,0,0,0,0,210,7.2,9,9,9599,1829,9,999999999,23,0,0,88,0.2,0,0 +2016,12,26,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,15,9,67,95815,0,0,356,0,0,0,0,0,0,0,170,4.6,9,9,9599,1524,9,999999999,23,0,0,88,0.2,0,0 +2016,12,26,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,10,77,95797,0,0,352,0,0,0,0,0,0,0,160,5.7,9,9,9599,1524,9,999999999,25,0,0,88,0.2,0,0 +2016,12,26,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,10,77,95797,0,0,352,0,0,0,0,0,0,0,160,4.1,9,9,9599,1219,9,999999999,25,0,0,88,0.2,0,0 +2016,12,27,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,10,77,95797,0,0,352,0,0,0,0,0,0,0,160,4.6,9,9,9599,1219,9,999999999,25,0,0,88,0.2,0,0 +2016,12,27,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,10,77,95797,0,0,352,0,0,0,0,0,0,0,150,2.1,9,9,9599,1219,9,999999999,25,0,0,88,0.2,0,0 +2016,12,27,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,10,77,95797,0,0,352,0,0,0,0,0,0,0,160,1.5,9,9,9599,1219,9,999999999,25,0,0,88,0.2,0,0 +2016,12,27,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,10,77,95797,0,0,352,0,0,0,0,0,0,0,160,2.1,9,9,9599,1219,9,999999999,25,0,0,88,0.2,0,0 +2016,12,27,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,9,72,95797,0,0,351,0,0,0,0,0,0,0,160,3.1,9,9,9599,610,9,999999999,23,0,0,88,0.2,0,0 +2016,12,27,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,9,72,95797,0,0,351,0,0,0,0,0,0,0,190,3.6,9,9,9599,1524,9,999999999,23,0,0,88,0.2,0,0 +2016,12,27,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,9,77,95778,247,1261,346,47,0,47,4636,0,4670,1721,220,5.1,9,9,9599,1524,9,999999999,23,0,0,88,0.2,0,0 +2016,12,27,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,7,63,95797,529,1415,349,156,6,154,17407,386,17247,5609,210,6.2,9,9,9599,1524,9,999999999,19,0,0,88,0.2,0,0 +2016,12,27,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,7,63,95797,796,1415,349,279,41,255,31345,3459,28887,10011,200,5.7,9,9,9599,1524,9,999999999,19,0,0,88,0.2,0,0 +2016,12,27,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,14,9,72,95797,1029,1415,361,237,8,232,27903,563,27406,10819,130,4.1,10,10,9599,1524,0,919999999,23,0,0,88,0.2,0,0 +2016,12,27,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,13,10,82,95778,1214,1415,347,478,28,453,54637,2650,52220,18327,80,5.7,9,9,9599,1829,0,919999999,25,0,0,88,0.2,0,0 +2016,12,27,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,16,8,59,95834,1337,1415,360,539,90,454,62715,8130,53236,19084,60,4.1,9,9,9599,1829,0,919999999,21,0,0,88,0.2,0,0 +2016,12,27,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,17,8,55,95852,1390,1415,365,565,89,477,65906,8156,56057,19958,50,2.1,9,9,9599,3048,0,919999999,21,0,0,88,0.2,0,0 +2016,12,27,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,19,7,46,95888,1369,1415,374,556,90,468,64778,8248,55005,19623,213,2.1,9,9,9599,3048,0,919999999,19,0,0,88,0.2,0,0 +2016,12,27,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,21,6,38,95924,1276,1415,383,511,88,432,59277,8025,50434,18169,74,1.5,9,9,9599,3048,0,919999999,17,0,0,88,0.2,0,0 +2016,12,27,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,21,4,33,95924,1117,1415,359,784,591,317,91268,50239,37100,14109,308,2.6,5,5,9599,4572,0,919999999,14,0,0,88,0.2,0,0 +2016,12,27,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,21,6,38,95924,903,1415,361,595,622,198,69622,46111,23263,9008,230,4.6,5,5,9599,4572,0,919999999,17,0,0,88,0.2,0,0 +2016,12,27,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,22,7,38,95942,649,1415,368,379,469,163,43023,32871,18644,6568,210,3.6,5,5,9599,4572,0,919999999,19,0,0,88,0.2,0,0 +2016,12,27,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,21,7,40,95924,371,1415,357,175,309,93,19456,13881,10432,3321,190,4.6,3,3,9599,4572,0,919999999,19,0,0,88,0.2,0,0 +2016,12,27,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,19,9,52,95888,90,1415,350,20,0,20,1942,0,1956,670,230,4.6,3,3,9599,4572,9,999999999,23,0,0,88,0.2,0,0 +2016,12,27,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,9,56,95870,0,476,345,0,0,0,0,0,0,0,230,4.1,3,3,9599,4572,9,999999999,23,0,0,88,0.2,0,0 +2016,12,27,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,9,59,95852,0,0,343,0,0,0,0,0,0,0,220,4.1,4,4,9599,4572,9,999999999,23,0,0,88,0.2,0,0 +2016,12,27,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,9,59,95852,0,0,343,0,0,0,0,0,0,0,230,2.1,4,4,9599,4572,9,999999999,23,0,0,88,0.2,0,0 +2016,12,27,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,9,59,95852,0,0,343,0,0,0,0,0,0,0,190,4.1,4,4,9599,4572,9,999999999,23,0,0,88,0.2,0,0 +2016,12,28,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,8,63,95815,0,0,335,0,0,0,0,0,0,0,280,2.6,5,5,9599,4572,9,999999999,21,0,0,88,0.2,0,0 +2016,12,28,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,8,76,95759,0,0,303,0,0,0,0,0,0,0,360,2.6,0,0,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,12,28,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,8,76,95759,0,0,303,0,0,0,0,0,0,0,30,1.5,0,0,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,12,28,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,8,76,95759,0,0,303,0,0,0,0,0,0,0,178,1,0,0,7000,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,12,28,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,7,76,95740,0,0,298,0,0,0,0,0,0,0,350,3.1,0,0,8000,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,12,28,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,11,8,82,95740,0,0,329,0,0,0,0,0,0,0,20,2.1,8,8,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,12,28,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,13,8,72,95778,245,1248,329,79,98,62,8709,1911,6861,2072,360,2.6,6,6,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,12,28,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,8,59,95834,527,1415,337,292,422,134,32799,26280,15184,5112,310,2.1,4,4,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,12,28,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,9,52,95888,794,1415,350,531,683,148,62366,45339,17411,6724,20,2.1,3,3,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,12,28,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,21,8,43,95924,1027,1415,350,753,837,144,91820,54620,17683,7314,67,1.5,1,1,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,12,28,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,22,6.4,36,95852,1212,1415,346,930,815,230,112255,59570,27902,11287,140,2.1,0,0,8000,77777,9,999999999,18,0,0,88,0.2,0,0 +2016,12,28,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,6,30,95994,1336,1415,360,1047,822,269,126909,61690,32835,13072,230,1.5,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,12,28,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,28,4,22,96046,1389,1415,372,1101,825,289,130000,63324,35364,13958,155,2.1,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2016,12,28,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,29,4,20,96063,1369,1415,377,1082,824,283,130000,63068,34558,13673,71,2.6,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2016,12,28,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,31,1,15,96096,1277,1415,383,998,819,258,120717,62957,31381,12521,140,4.6,0,0,8000,77777,9,999999999,10,0,0,88,0.2,0,0 +2016,12,28,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,31,0,14,96096,1118,1415,382,849,846,179,103402,60477,21928,9027,190,4.1,0,0,8000,77777,9,999999999,9,0,0,88,0.2,0,0 +2016,12,28,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,32,6,20,96113,905,1415,395,642,746,164,76179,51929,19510,7745,190,5.7,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,12,28,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,30,8,25,96079,651,1415,387,408,580,141,46922,37979,16257,5900,230,7.2,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2016,12,28,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,8,27,96063,373,1415,382,178,313,95,19817,14156,10639,3377,230,5.7,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2016,12,28,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,8,32,96011,92,1415,367,21,0,21,2012,0,2026,691,210,5.1,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2016,12,28,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,8,34,95994,0,485,362,0,0,0,0,0,0,0,150,3.1,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2016,12,28,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,23,9,41,95959,0,0,361,0,0,0,0,0,0,0,140,4.1,1,1,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,12,28,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,21,9,46,95924,0,0,356,0,0,0,0,0,0,0,160,2.6,2,2,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,12,28,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,9,49,95906,0,0,351,0,0,0,0,0,0,0,170,2.1,2,2,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,12,29,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,8,49,95888,0,0,345,0,0,0,0,0,0,0,150,3.1,2,2,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,12,29,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,8,52,95870,0,0,344,0,0,0,0,0,0,0,200,1.5,3,3,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,12,29,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,8,55,95852,0,0,339,0,0,0,0,0,0,0,210,1,3,3,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,12,29,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,15,8,63,95815,0,0,335,0,0,0,0,0,0,0,186,0.5,5,5,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,12,29,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,8,63,95815,0,0,335,0,0,0,0,0,0,0,20,1.5,5,5,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,12,29,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,8,67,95797,0,0,312,0,0,0,0,0,0,0,204,0.5,0,0,8000,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,12,29,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,9,63,95834,242,1234,322,89,109,70,9663,2444,7661,2222,253,1,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,12,29,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,9,46,95924,524,1415,345,298,458,128,33581,27571,14484,4924,232,0,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,12,29,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,23,9,41,95959,791,1415,361,534,699,142,62823,45843,16805,6512,140,1.5,1,1,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,12,29,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9*9*9*9*9*9*9,26,9,34,96011,1026,1415,369,751,837,143,91526,54065,17527,7254,182,1.5,0,0,8000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,12,29,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,8,28,96046,1211,1415,377,926,815,227,111848,58749,27606,11187,170,3.1,0,0,8000,77777,9,999999999,20,0,0,88,0.2,0,0 +2016,12,29,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,9,29,96063,1335,1415,384,1042,822,265,126264,60113,32254,12884,170,4.6,0,0,8000,77777,9,999999999,22,0,0,88,0.2,0,0 +2016,12,29,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,31,7,22,96096,1389,1415,391,1096,825,285,130000,61913,34790,13776,170,5.1,0,0,8000,77777,9,999999999,18,0,0,88,0.2,0,0 +2016,12,29,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,32,6,20,96113,1370,1415,395,1079,824,280,130000,62166,34209,13562,160,6.2,0,0,8000,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,12,29,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,31,12,31,96096,1278,1415,398,983,819,242,118920,57423,29466,11896,210,6.2,0,0,8000,77777,9,999999999,30,0,0,88,0.2,0,0 +2016,12,29,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,31,13,33,96096,1120,1415,399,834,856,155,102131,53614,19109,7983,220,8.2,0,0,8000,77777,9,999999999,33,0,0,88,0.2,0,0 +2016,12,29,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,29,13,37,96063,907,1415,389,636,792,128,76701,48112,15496,6302,220,8.2,0,0,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,29,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,28,13,40,96046,653,1415,391,407,562,147,46455,35670,16858,6098,210,7.7,1,1,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,29,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,12,42,96011,375,1415,379,178,295,100,19727,13094,11107,3495,210,5.7,1,1,8000,77777,9,999999999,30,0,0,88,0.2,0,0 +2016,12,29,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,23,12,50,95959,93,1415,369,21,0,21,2027,0,2041,699,160,5.1,2,2,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,29,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,21,12,56,95924,0,494,363,0,0,0,0,0,0,0,150,5.7,3,3,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,29,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,12,64,95888,0,0,359,0,0,0,0,0,0,0,160,5.7,5,5,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,29,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,12,68,95870,0,0,354,0,0,0,0,0,0,0,170,4.1,5,5,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,29,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,11,68,95852,0,0,348,0,0,0,0,0,0,0,170,4.1,5,5,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,30,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,12,77,95834,0,0,351,0,0,0,0,0,0,0,160,2.6,7,7,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,30,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,11,77,95815,0,0,345,0,0,0,0,0,0,0,170,3.6,7,7,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,30,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,12,82,95815,0,0,352,0,0,0,0,0,0,0,150,3.1,8,8,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,30,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,14,11,82,95797,0,0,346,0,0,0,0,0,0,0,170,2.1,8,8,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,30,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,14,11,82,95797,0,0,329,0,0,0,0,0,0,0,160,2.6,3,3,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,30,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13,12,94,95778,0,0,325,0,0,0,0,0,0,0,180,3.6,3,3,4000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,30,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13,12,94,95778,239,1220,325,85,122,65,9349,2164,7118,2109,150,2.6,3,3,5000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,30,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,12,82,95815,521,1415,320,294,445,130,33042,26137,14635,4958,160,3.6,0,0,5000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,30,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,12,72,95852,789,1415,352,462,457,207,52671,33627,23715,8663,160,4.1,6,6,5000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,30,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,13,64,95906,1024,1415,365,703,671,217,82806,47462,25680,10242,160,4.1,5,5,5000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,30,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,21,13,60,95924,1210,1415,367,887,790,211,107426,53176,25635,10494,160,5.7,4,4,5000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,30,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,22,13,57,95942,1334,1415,372,1012,863,197,125125,55606,24472,10060,170,7.2,4,4,5000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,30,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,22,13,57,95942,1389,1415,372,1062,862,215,130000,56340,26720,10908,170,8.8,4,4,5000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,30,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,23,13,53,95959,1370,1415,374,1056,891,193,130000,56679,24077,9904,170,8.2,3,3,5000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,30,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,14,48,96011,1279,1415,387,977,895,168,121368,55077,20930,8700,170,8.2,2,2,5000,77777,9,999999999,37,0,0,88,0.2,0,0 +2016,12,30,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,14,48,96011,1121,1415,387,831,850,156,101654,52661,19200,8024,190,5.7,2,2,5000,77777,9,999999999,37,0,0,88,0.2,0,0 +2016,12,30,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,14,48,96011,908,1415,387,634,784,130,76355,47280,15729,6397,170,7.2,2,2,5000,77777,9,999999999,37,0,0,88,0.2,0,0 +2016,12,30,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,14,50,95994,654,1415,382,405,549,151,46177,34827,17266,6226,160,7.2,2,2,5000,77777,9,999999999,37,0,0,88,0.2,0,0 +2016,12,30,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,13,50,95977,377,1415,376,178,290,101,19716,12799,11204,3526,190,6.2,2,2,5000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,30,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,21,13,60,95924,95,1415,367,21,0,21,2001,0,2015,696,170,5.7,4,4,5000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,30,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,19,13,68,95888,0,502,360,0,0,0,0,0,0,0,160,4.6,5,5,5000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,30,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,12,68,95870,0,0,354,0,0,0,0,0,0,0,150,4.1,5,5,5000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,30,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,12,68,95870,0,0,354,0,0,0,0,0,0,0,160,1.5,5,5,5000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,30,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,12,72,95852,0,0,352,0,0,0,0,0,0,0,170,2.6,6,6,5000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,31,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,12,72,95852,0,0,352,0,0,0,0,0,0,0,180,2.6,6,6,5000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,31,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,12,82,95815,0,0,352,0,0,0,0,0,0,0,160,3.6,8,8,5000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,31,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,15,12,82,95815,0,0,352,0,0,0,0,0,0,0,160,4.1,8,8,5000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,31,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,14,12,88,95797,0,0,355,0,0,0,0,0,0,0,160,4.1,9,9,5000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,31,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,14,12,88,95797,0,0,355,0,0,0,0,0,0,0,180,2.1,9,9,5000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,31,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,11,88,95778,0,0,311,0,0,0,0,0,0,0,160,3.1,0,0,8000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,12,31,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,12,88,95797,236,1205,316,85,135,62,9302,2179,6839,2041,160,3.1,0,0,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,31,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12,79,95935,518,1415,323,292,443,129,32773,25907,14573,4930,170,2.6,0,0,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,31,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,13,73,95870,786,1415,335,526,703,134,61979,43481,15901,6200,160,2.6,0,0,7000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,31,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,20,13,64,95906,1022,1415,344,742,834,139,90412,51358,17026,7067,55,1.5,0,0,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,31,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,13,53,95959,1208,1415,359,916,893,153,113618,54942,19040,7961,210,3.1,0,0,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,31,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,25,14,50,95994,1333,1415,382,1026,897,179,127625,55698,22434,9279,150,5.1,2,2,8000,77777,9,999999999,37,0,0,88,0.2,0,0 +2016,12,31,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,14,45,96029,1389,1415,392,1082,907,191,130000,56703,23949,9856,150,6.2,2,2,8000,77777,9,999999999,37,0,0,88,0.2,0,0 +2016,12,31,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,28,13.3,40,95776,1370,1415,384,1068,824,268,129515,57770,32748,13098,180,7.2,0,0,8000,77777,9,999999999,35,0,0,88,0.2,0,0 +2016,12,31,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,14,45,96029,1279,1415,392,980,899,166,121817,55199,20733,8622,220,6.7,2,2,8000,77777,9,999999999,37,0,0,88,0.2,0,0 +2016,12,31,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,13,42,96029,1122,1415,386,836,856,156,102351,53637,19208,8024,220,6.2,1,1,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,31,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,27,13,42,96029,910,1415,386,639,792,129,77014,48194,15580,6339,220,7.2,1,1,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,31,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,26,13,45,96011,656,1415,386,409,563,148,46746,35807,16956,6139,210,6.2,2,2,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,31,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,24,13,50,95977,379,1415,376,180,292,101,19855,12947,11248,3543,210,5.7,2,2,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,31,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,21,12.7,59,95768,96,1415,349,22,0,22,2104,0,2119,725,220,5.1,0,0,8000,77777,9,999999999,33,0,0,88,0.2,0,0 +2016,12,31,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,20,13,64,95906,0,510,365,0,0,0,0,0,0,0,150,3.6,5,5,8000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,12,31,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,18,12,68,95870,0,0,354,0,0,0,0,0,0,0,160,4.6,5,5,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,31,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,17,12,72,95852,0,0,352,0,0,0,0,0,0,0,150,4.1,6,6,8000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,12,31,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9*9*9*9*9*9*9,16,12,77,95834,0,0,351,0,0,0,0,0,0,0,160,5.1,7,7,8000,77777,9,999999999,31,0,0,88,0.2,0,0 diff --git a/AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD300.mos b/AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD300.mos new file mode 100644 index 0000000000..e47a559981 --- /dev/null +++ b/AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD300.mos @@ -0,0 +1,8800 @@ +#1 +double tab1(8760,30) +#LOCATION,Santiago Benitez Intl AP,RM,CHL,ISD-TMYx,855740,-33.393,-70.786,-4,474 +#DESIGN CONDITIONS,1,2017 ASHRAE Handbook -- Fundamentals - Chapter 14 Climatic Design Information,,Heating,7,-1.1,0.1,-3.5,3,8,-2.1,3.3,7,7.1,10.6,6.1,11.6,1,10,Cooling,1,16.7,31.9,17.2,30.8,17.1,29.8,17,19,28.9,18.4,28.4,17.8,27.9,6.3,210,15,11.3,22.2,14.1,10.6,21.5,13.6,10.3,21,55.7,29,53.6,28.5,51.8,28,23.9,Extremes,8.5,7.8,7,-3.4,34.5,1.3,0.9,-4.3,35.2,-5.1,35.7,-5.9,36.2,-6.9,36.9,-3.7 +#TYPICAL/EXTREME PERIODS,6,Summer - Week Nearest Max Temperature For Period,Extreme,10-Feb,16-Feb,Summer - Week Nearest Average Temperature For Period,Typical,22-Dec,5-Jan,Winter - Week Nearest Min Temperature For Period,Extreme,20-Jul,26-Jul,Winter - Week Nearest Average Temperature For Period,Typical,3-Aug,9-Aug,Autumn - Week Nearest Average Temperature For Period,Typical,5-Apr,11-Apr,Spring - Week Nearest Average Temperature For Period,Typical,6-Oct,12-Oct +#GROUND TEMPERATURES,3,0.5,,,,20.62,21.08,20.05,18.52,14.58,11.58,9.61,9.07,10.2,12.6,15.74,18.62,2,,,,18.65,19.55,19.3,18.47,15.81,13.45,11.59,10.63,10.91,12.29,14.47,16.75,4,,,,17,17.95,18.12,17.8,16.28,14.68,13.23,12.25,12.05,12.66,13.96,15.51 +#HOLIDAYS/DAYLIGHT SAVINGS,No,0,0,0 +#COMMENTS 1,NCEI ISD - #years=[15] Period of Record=2004-2018; Jan=2006; Feb=2015; Mar=2017; Apr=2013; May=2008; Jun=2010; Jul=2013; Aug=2008; Sep=2004; Oct=2010; Nov=2010; Dec=2016 +#COMMENTS 2,Downloaded from Climate.Onebuilding.org -- Ground temps represent undisturbed earth temperatures - calculated from this weather data. +#DATA PERIODS,1,1,Data,Sunday,1-Jan,31-Dec +#C1 Time in seconds. Beginning of a year is 0s. +#C2 Dry bulb temperature in Celsius at indicated time +#C3 Dew point temperature in Celsius at indicated time +#C4 Relative humidity in percent at indicated time +#C5 Atmospheric station pressure in Pa at indicated time +#C6 Extraterrestrial horizontal radiation in Wh/m2 +#C7 Extraterrestrial direct normal radiation in Wh/m2 +#C8 Horizontal infrared radiation intensity in Wh/m2 +#C9 Global horizontal radiation in Wh/m2 +#C10 Direct normal radiation in Wh/m2 +#C11 Diffuse horizontal radiation in Wh/m2 +#C12 Averaged global horizontal illuminance in lux during minutes preceding the indicated time +#C13 Direct normal illuminance in lux during minutes preceding the indicated time +#C14 Diffuse horizontal illuminance in lux during minutes preceding the indicated time +#C15 Zenith luminance in Cd/m2 during minutes preceding the indicated time +#C16 Wind direction at indicated time. N=0, E=90, S=180, W=270 +#C17 Wind speed in m/s at indicated time +#C18 Total sky cover at indicated time +#C19 Opaque sky cover at indicated time +#C20 Visibility in km at indicated time +#C21 Ceiling height in m +#C22 Present weather observation +#C23 Present weather codes +#C24 Precipitable water in mm +#C25 Aerosol optical depth +#C26 Snow depth in cm +#C27 Days since last snowfall +#C28 Albedo +#C29 Liquid precipitation depth in mm at indicated time +#C30 Liquid precipitation quantity +0.0 15 9 67 95815 0 0 336 0 0 0 0 0 0 0 190 2.1 5 5 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +3600.0 15 9 67 95815 0 0 336 0 0 0 0 0 0 0 190 2.1 5 5 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +7200.0 14.2 8.8 70 96013 0 0 314 0 0 0 0 0 0 0 170 2.6 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +10800.0 14 9 72 95797 0 0 334 0 0 0 0 0 0 0 130 2.1 6 6 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +14400.0 12.9 8.9 77 95921 0 0 333 0 0 0 0 0 0 0 229 1.3 7 7 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +18000.0 11.9 8.9 82 96046 0 0 304 0 0 0 0 0 0 0 210 0.5 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +21600.0 12 9 82 95759 0 0 322 0 0 0 0 0 0 0 90 0 5 5 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +25200.0 13 9 77 95778 227 1157 309 80 153 55 8808 1998 6104 1852 339 0.5 0 0 5000 2000 9 999999999 23 0 0 88 0.2 0 0 +28800.0 15.2 9.1 67 96155 510 1415 318 286 444 126 32164 26289 14192 4791 200 0.5 0 0 5000 2000 9 999999999 23 0 0 88 0.2 0 0 +32400.0 18 9 56 95870 778 1415 345 513 655 152 59909 43924 17793 6807 210 1.5 3 3 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +36000.0 20 9 49 95906 1015 1415 351 737 823 146 89627 53524 17855 7366 180 3.1 2 2 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +39600.0 21.6 9.2 45 96138 1203 1415 348 917 815 223 110704 57929 27066 10995 140 4.6 0 0 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +43200.0 23 9 41 95959 1330 1415 361 1037 822 263 125635 60016 32005 12795 200 5.7 1 1 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +46800.0 24 9 38 95977 1387 1415 374 1077 825 267 130000 59776 32687 13056 210 7.2 3 3 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +50400.0 25.5 9 35 96003 1371 1415 366 1075 824 275 130000 60577 33626 13376 17 5.6 0 0 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +54000.0 27 9 32 96029 1281 1415 390 978 893 168 121806 57974 21080 8736 200 4.1 3 3 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +57600.0 28 9 30 96046 1125 1415 395 834 833 170 101689 55564 20822 8636 210 5.7 3 3 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +61200.0 26.5 9.8 35 95958 914 1415 388 638 765 143 76459 49579 17185 6937 210 6.7 3 3 9900 2000 9 999999999 24 0 0 88 0.2 0 0 +64800.0 25 9 36 95994 660 1415 379 411 580 140 47302 37549 16139 5901 200 7.2 3 3 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +68400.0 23 8 38 95959 383 1415 353 185 325 97 20635 15080 10862 3466 210 5.1 0 0 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +72000.0 20.8 7.1 41 95992 100 1415 341 23 0 23 2206 0 2221 756 200 5.7 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +75600.0 20 5 37 95906 0 528 335 0 0 0 0 0 0 0 170 4.6 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +79200.0 19 7 46 95888 0 0 344 0 0 0 0 0 0 0 140 3.1 2 2 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +82800.0 18.1 5 42 96104 0 0 327 0 0 0 0 0 0 0 150 2.1 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +86400.0 17 6 48 95852 0 0 334 0 0 0 0 0 0 0 110 1.5 2 2 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +90000.0 15 7 59 95815 0 0 331 0 0 0 0 0 0 0 99 0.5 4 4 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +93600.0 14.2 7 62 96013 0 0 312 0 0 0 0 0 0 0 315 0 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +97200.0 15 7 59 95815 0 0 331 0 0 0 0 0 0 0 33 1 4 4 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +100800.0 12 7 71 95759 0 0 323 0 0 0 0 0 0 0 277 1 6 6 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +104400.0 11.5 7.2 75 95934 0 0 300 0 0 0 0 0 0 0 200 1 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +108000.0 10 6 76 95721 0 0 317 0 0 0 0 0 0 0 138 1 7 7 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +111600.0 12 7 71 95759 224 1140 323 69 80 56 7608 1142 6224 1867 292 1 6 6 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +115200.0 16.7 7.6 55 96040 507 1415 323 284 444 125 31977 26517 14084 4748 140 1 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +118800.0 20 7 43 95906 776 1415 344 521 687 144 61175 45939 16935 6509 131 1.5 1 1 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +122400.0 22 7 38 95942 1013 1415 347 741 835 142 90284 54801 17417 7188 98 1.5 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +126000.0 25 5.5 29 95994 1201 1415 359 921 815 228 111116 59823 27633 11183 172 2.3 0 0 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +129600.0 28 4 22 96046 1329 1415 372 1044 822 270 126444 62530 32938 13096 180 3.1 0 0 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +133200.0 29 9 29 96063 1387 1415 384 1090 825 281 130000 60793 34281 13610 160 2.1 0 0 9900 2000 9 999999999 22 0 0 88 0.2 0 0 +136800.0 29.3 8.4 27 95826 1371 1415 407 1001 716 307 120596 54850 37159 14564 200 5.1 5 5 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +140400.0 30 9 27 96079 1282 1415 412 923 601 378 108085 50861 44542 16673 190 4.6 5 5 9900 2000 9 999999999 22 0 0 88 0.2 0 0 +144000.0 30 11 31 96079 1126 1415 439 435 89 364 49992 7704 42090 15542 200 8.2 9 9 9900 7500 9 999999999 27 0 0 88 0.2 0 0 +147600.0 28.2 10.4 33 95741 915 1415 404 602 581 226 69605 43758 26242 10007 200 7.7 5 5 9900 7500 9 999999999 26 0 0 88 0.2 0 0 +151200.0 27 10 34 96029 662 1415 391 411 578 140 47323 37190 16228 5934 210 8.2 3 3 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +154800.0 26 9 34 96011 384 1415 385 184 311 99 20411 14471 11034 3512 180 7.2 3 3 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +158400.0 23.9 9.1 39 95961 101 1415 358 23 0 23 2222 0 2237 762 180 4.1 0 0 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +162000.0 22 9 43 95942 0 532 356 0 0 0 0 0 0 0 180 5.1 1 1 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +165600.0 22 9 43 95942 0 0 356 0 0 0 0 0 0 0 130 2.6 1 1 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +169200.0 20.3 9.3 49 96144 0 0 342 0 0 0 0 0 0 0 130 2.1 0 0 9900 2000 9 999999999 24 0 0 88 0.2 0 0 +172800.0 20 9 49 95906 0 0 351 0 0 0 0 0 0 0 150 2.1 2 2 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +176400.0 18 9 56 95870 0 0 345 0 0 0 0 0 0 0 294 0.5 3 3 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +180000.0 16.5 9.7 64 96141 0 0 325 0 0 0 0 0 0 0 250 1 0 0 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +183600.0 16 10 68 95834 0 0 342 0 0 0 0 0 0 0 27 1 5 5 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +187200.0 15 9 67 95815 0 0 336 0 0 0 0 0 0 0 336 0.5 5 5 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +190800.0 14.5 9.5 72 95806 0 0 337 0 0 0 0 0 0 0 101 0.8 6 6 9900 2000 9 999999999 24 0 0 88 0.2 0 0 +194400.0 14 10 77 95797 0 0 339 0 0 0 0 0 0 0 14 1 7 7 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +198000.0 17 10 63 95852 220 1123 347 72 112 55 7944 1257 6043 1819 105 0 5 5 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +201600.0 18.2 10.8 62 96172 503 1415 334 280 435 125 31440 25157 14101 4745 290 1 0 0 9900 2000 9 999999999 27 0 0 88 0.2 0 0 +205200.0 22 9 43 95942 773 1415 356 517 688 141 60709 44935 16587 6389 87 1 1 1 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +208800.0 23 9 41 95959 1010 1415 361 736 831 142 89653 53658 17328 7156 273 1.5 1 1 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +212400.0 25.2 9.9 38 96078 1200 1415 366 913 815 221 110192 57469 26831 10912 170 4.1 0 0 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +216000.0 27 10 34 96029 1328 1415 375 1033 822 261 125199 59421 31765 12716 160 5.1 0 0 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +219600.0 28 10 32 96046 1386 1415 380 1088 825 279 130000 60189 34050 13536 150 4.6 0 0 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +223200.0 29.5 10.3 30 95886 1371 1415 405 1059 902 184 130000 58356 23144 9529 200 6.2 3 3 9900 2000 9 999999999 26 0 0 88 0.2 0 0 +226800.0 30 11 31 96079 1282 1415 391 989 819 245 119640 58152 29823 12019 200 6.7 0 0 9900 2000 9 999999999 27 0 0 88 0.2 0 0 +230400.0 30 11 31 96079 1127 1415 391 843 859 158 103371 55168 19473 8122 200 7.2 0 0 9900 2000 9 999999999 27 0 0 88 0.2 0 0 +234000.0 28.8 11 33 95789 916 1415 402 638 766 142 76569 48975 17114 6919 200 6.7 3 3 9900 2000 9 999999999 27 0 0 88 0.2 0 0 +237600.0 27 11 37 96029 663 1415 376 417 644 115 48738 38029 13450 5059 200 8.7 0 0 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +241200.0 24 10 41 95977 385 1415 367 186 324 98 20741 14818 10938 3495 200 7.2 1 1 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +244800.0 20.5 9.1 48 95901 102 1415 360 22 0 22 2167 0 2182 750 160 6.7 4 4 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +248400.0 20 8 46 95906 0 536 350 0 0 0 0 0 0 0 140 4.1 2 2 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +252000.0 19 7 46 95888 0 0 344 0 0 0 0 0 0 0 150 4.1 2 2 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +255600.0 17.3 7.7 53 96023 0 0 340 0 0 0 0 0 0 0 150 4.6 3 3 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +259200.0 17 8 55 95852 0 0 339 0 0 0 0 0 0 0 140 2.6 3 3 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +262800.0 15 8 63 95815 0 0 335 0 0 0 0 0 0 0 160 1.5 5 5 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +266400.0 14.9 7.7 62 95913 0 0 334 0 0 0 0 0 0 0 178 0 5 5 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +270000.0 15 8 63 95815 0 0 330 0 0 0 0 0 0 0 76 0.5 3 3 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +273600.0 14 8 67 95797 0 0 330 0 0 0 0 0 0 0 52 1.5 5 5 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +277200.0 14.6 8.1 65 95907 0 0 346 0 0 0 0 0 0 0 120 2.6 8 8 9900 7500 9 999999999 21 0 0 88 0.2 0 0 +280800.0 15 8 63 95815 0 0 355 0 0 0 0 0 0 0 82 1.5 9 9 9900 5100 9 999999999 21 0 0 88 0.2 0 0 +284400.0 16 8 59 95834 217 1105 340 69 59 60 7532 861 6567 1914 284 0 5 5 9900 7500 9 999999999 21 0 0 88 0.2 0 0 +288000.0 16.6 8.5 59 96039 500 1415 343 259 346 136 28896 21420 15270 5010 200 1.5 5 5 9900 7500 9 999999999 22 0 0 88 0.2 0 0 +291600.0 20 8 46 95906 770 1415 359 480 547 181 55212 39534 20977 7773 234 1 5 5 9900 7500 9 999999999 21 0 0 88 0.2 0 0 +295200.0 22 8 41 95942 1008 1415 369 684 629 236 80144 48012 27753 10854 66 1.5 5 5 9900 7500 9 999999999 21 0 0 88 0.2 0 0 +298800.0 23.9 8.4 37 95961 1198 1415 373 901 810 214 109129 57321 26079 10632 140 2.6 3 3 9900 7500 9 999999999 21 0 0 88 0.2 0 0 +302400.0 26 9 34 96011 1327 1415 369 1034 822 262 125245 59989 31905 12759 150 4.1 0 0 9900 7500 9 999999999 23 0 0 88 0.2 0 0 +306000.0 26 9 34 96011 1385 1415 369 1089 825 280 130000 60764 34217 13587 210 4.6 0 0 9900 7500 9 999999999 23 0 0 88 0.2 0 0 +309600.0 27.1 9.9 34 95827 1370 1415 375 1073 824 274 130000 60048 33454 13322 190 7.2 0 0 9900 7500 9 999999999 25 0 0 88 0.2 0 0 +313200.0 28 11 35 96046 1283 1415 381 989 819 245 119678 58149 29828 12021 200 8.2 0 0 9900 7500 9 999999999 27 0 0 88 0.2 0 0 +316800.0 28 10 32 96046 1128 1415 380 845 860 158 103658 55814 19520 8136 200 7.2 0 0 9900 7500 9 999999999 25 0 0 88 0.2 0 0 +320400.0 27.2 9.6 33 95733 917 1415 375 649 797 132 78347 50574 15995 6497 200 7.2 0 0 9900 7500 9 999999999 24 0 0 88 0.2 0 0 +324000.0 26 9 34 96011 664 1415 369 419 610 132 48512 38725 15376 5677 190 7.2 0 0 9900 7500 9 999999999 23 0 0 88 0.2 0 0 +327600.0 23 9 41 95959 386 1415 361 187 327 98 20871 15157 10950 3501 190 5.7 1 1 9900 7500 9 999999999 23 0 0 88 0.2 0 0 +331200.0 20.7 9.6 49 95819 103 1415 359 23 0 23 2227 0 2242 767 180 5.1 3 3 9900 7500 9 999999999 24 0 0 88 0.2 0 0 +334800.0 20 10 53 95906 0 539 356 0 0 0 0 0 0 0 140 3.6 3 3 9900 7500 9 999999999 25 0 0 88 0.2 0 0 +338400.0 19 9 52 95888 0 0 350 0 0 0 0 0 0 0 160 4.1 3 3 9900 7500 9 999999999 23 0 0 88 0.2 0 0 +342000.0 17.5 7.8 53 95970 0 0 341 0 0 0 0 0 0 0 150 3.6 3 3 9900 7500 9 999999999 20 0 0 88 0.2 0 0 +345600.0 17 8 55 95852 0 0 339 0 0 0 0 0 0 0 140 3.1 3 3 9900 7500 9 999999999 21 0 0 88 0.2 0 0 +349200.0 16 9 63 95834 0 0 341 0 0 0 0 0 0 0 140 2.6 5 5 9900 7500 9 999999999 23 0 0 88 0.2 0 0 +352800.0 14.3 9.3 72 95930 0 0 328 0 0 0 0 0 0 0 220 0.5 3 3 9900 7500 9 999999999 24 0 0 88 0.2 0 0 +356400.0 14 10 77 95797 0 0 328 0 0 0 0 0 0 0 170 2.6 3 3 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +360000.0 14 9 72 95797 0 0 326 0 0 0 0 0 0 0 253 0 3 3 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +363600.0 12.9 9 77 95951 0 0 321 0 0 0 0 0 0 0 170 2.1 3 3 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +367200.0 13 10 82 95778 0 0 323 0 0 0 0 0 0 0 214 0 3 3 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +370800.0 14 10 77 95797 213 1087 328 71 123 52 7822 1102 5795 1745 302 1 3 3 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +374400.0 17.3 10.2 63 96033 497 1415 343 271 412 126 30415 24065 14203 4742 20 1 3 3 8000 2000 9 999999999 26 0 0 88 0.2 0 0 +378000.0 20 10 53 95906 767 1415 356 505 661 146 59007 43319 17122 6555 108 1 3 3 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +381600.0 24 10 41 95977 1006 1415 367 731 829 141 88927 52947 17179 7095 248 1 1 1 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +385200.0 25.1 9.8 38 95934 1196 1415 365 909 895 151 112904 56966 18869 7882 140 2.1 0 0 9900 2000 9 999999999 24 0 0 88 0.2 0 0 +388800.0 27 11 37 96029 1325 1415 376 1029 822 258 124704 58757 31474 12618 140 5.1 0 0 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +392400.0 28 8 28 96046 1385 1415 377 1090 825 282 130000 61320 34402 13645 200 8.7 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +396000.0 27.9 8.2 29 95916 1370 1415 377 1076 824 277 130000 61027 33790 13429 180 9.3 0 0 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +399600.0 29 6 23 96063 1283 1415 380 997 819 253 120628 60940 30758 12325 200 8.2 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +403200.0 30 5 21 96079 1129 1415 383 852 860 165 104439 58584 20325 8434 190 7.2 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +406800.0 27.6 7.5 28 95873 918 1415 375 652 759 159 77676 51725 19029 7611 210 2.6 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +410400.0 27 9 32 96029 665 1415 374 420 556 158 47932 37909 18141 6504 200 8.2 0 0 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +414000.0 25 10 39 95994 387 1415 372 188 327 98 20905 15002 10978 3512 190 7.7 1 1 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +417600.0 23.5 10.5 44 95968 103 1415 365 23 0 23 2265 0 2281 778 261 6.9 1 1 9900 2000 9 999999999 26 0 0 88 0.2 0 0 +421200.0 22 11 50 95942 0 542 363 0 0 0 0 0 0 0 190 6.2 2 2 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +424800.0 21 11 53 95924 0 0 362 0 0 0 0 0 0 0 180 3.6 3 3 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +428400.0 19.5 11.8 61 96139 0 0 341 0 0 0 0 0 0 0 150 3.6 0 0 9900 2000 9 999999999 30 0 0 88 0.2 0 0 +432000.0 18 12 68 95870 0 0 354 0 0 0 0 0 0 0 130 2.1 5 5 9900 2000 9 999999999 31 0 0 88 0.2 0 0 +435600.0 17 13 77 95852 0 0 357 0 0 0 0 0 0 0 130 3.1 7 7 9900 2000 9 999999999 34 0 0 88 0.2 0 0 +439200.0 16.8 13.1 79 96090 0 0 330 0 0 0 0 0 0 0 140 2.6 0 0 9900 2000 9 999999999 35 0 0 88 0.2 0 0 +442800.0 16 13 82 95834 0 0 358 0 0 0 0 0 0 0 52 1 8 8 9900 2000 9 999999999 34 0 0 88 0.2 0 0 +446400.0 15 13 88 95815 0 0 361 0 0 0 0 0 0 0 25 1.5 9 9 9900 2000 9 999999999 34 0 0 88 0.2 0 0 +450000.0 15.6 12.9 84 96124 0 0 324 0 0 0 0 0 0 0 140 1.5 0 0 9900 2000 9 999999999 34 0 0 88 0.2 0 0 +453600.0 13 11 88 95778 0 0 349 0 0 0 0 0 0 0 129 1 9 9 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +457200.0 16 14 88 95834 210 1068 367 40 0 40 3865 0 3893 1425 258 0.5 9 9 8000 2000 9 999999999 38 0 0 88 0.2 0 0 +460800.0 18.8 13.7 72 96145 494 1415 340 271 366 143 29940 21911 15856 5119 10 1.5 0 0 8000 2000 9 999999999 37 0 0 88 0.2 0 0 +464400.0 21 14 64 95924 764 1415 371 477 593 157 55345 38255 18230 6921 184 1.5 5 5 9900 2000 9 999999999 38 0 0 88 0.2 0 0 +468000.0 23 14 57 95959 1003 1415 378 709 754 173 84630 49042 20794 8470 122 0.5 4 4 9900 2000 9 999999999 37 0 0 88 0.2 0 0 +471600.0 25.5 12.7 45 96093 1194 1415 371 904 863 174 110797 55278 21486 8923 170 2.6 0 0 9900 2000 9 999999999 33 0 0 88 0.2 0 0 +475200.0 28 12 37 96046 1324 1415 382 1026 822 256 124348 58077 31232 12539 190 4.1 0 0 9900 2000 9 999999999 30 0 0 88 0.2 0 0 +478800.0 30 11 31 96079 1384 1415 391 1085 825 277 130000 59535 33776 13446 130 2.1 0 0 9900 2000 9 999999999 27 0 0 88 0.2 0 0 +482400.0 29.8 11.8 33 95920 1370 1415 408 1056 893 190 130000 57397 23815 9796 210 7.2 3 3 9900 2000 9 999999999 30 0 0 88 0.2 0 0 +486000.0 30 14 38 96079 1283 1415 412 972 875 178 120318 54654 22107 9160 200 6.2 3 3 9900 2000 9 999999999 37 0 0 88 0.2 0 0 +489600.0 30 15 40 96079 1129 1415 414 829 839 158 101389 51432 19455 8134 210 9.8 3 3 9900 2000 9 999999999 41 0 0 88 0.2 0 0 +493200.0 29.3 14.3 40 95835 919 1415 409 638 767 139 76462 46900 16731 6794 200 7.7 3 3 9900 2000 9 999999999 38 0 0 88 0.2 0 0 +496800.0 28 14 42 96046 666 1415 401 412 607 126 47755 35815 14637 5462 210 7.7 3 3 9900 2000 9 999999999 37 0 0 88 0.2 0 0 +500400.0 27 14 45 96029 388 1415 392 187 305 103 20679 13649 11455 3630 200 7.2 2 2 9900 2000 9 999999999 37 0 0 88 0.2 0 0 +504000.0 24.8 11.4 43 95816 104 1415 366 24 0 24 2274 0 2290 782 200 6.2 0 0 9900 2000 9 999999999 29 0 0 88 0.2 0 0 +507600.0 24 10 41 95977 0 544 367 0 0 0 0 0 0 0 190 4.6 1 1 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +511200.0 24 11 44 95977 0 0 368 0 0 0 0 0 0 0 130 3.1 1 1 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +514800.0 21.5 8.1 42 95938 0 0 346 0 0 0 0 0 0 0 120 3.6 0 0 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +518400.0 21 8 43 95924 0 0 358 0 0 0 0 0 0 0 130 4.1 3 3 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +522000.0 21 7 40 95924 0 0 384 0 0 0 0 0 0 0 140 3.1 9 9 9900 1500 9 999999999 19 0 0 88 0.2 0 0 +525600.0 19.4 7.2 45 95976 0 0 387 0 0 0 0 0 0 0 130 2.6 10 10 9900 1500 9 999999999 19 0 0 88 0.2 0 0 +529200.0 19 7 46 95888 0 0 384 0 0 0 0 0 0 0 140 3.1 10 10 9900 2100 9 999999999 19 0 0 88 0.2 0 0 +532800.0 18 6 45 95870 0 0 367 0 0 0 0 0 0 0 150 2.6 9 9 9900 2100 9 999999999 17 0 0 88 0.2 0 0 +536400.0 17.7 6 46 96021 0 0 345 0 0 0 0 0 0 0 150 2.1 5 5 9900 2100 9 999999999 17 0 0 88 0.2 0 0 +540000.0 17 5 45 95852 0 0 341 0 0 0 0 0 0 0 140 1.5 5 5 9900 2100 9 999999999 15 0 0 88 0.2 0 0 +543600.0 18 7 49 95870 206 1049 348 63 84 51 7009 743 5671 1695 160 2.1 5 5 9900 2100 9 999999999 19 0 0 88 0.2 0 0 +547200.0 19.5 7 44 96072 490 1415 350 268 414 124 30042 24558 13949 4645 176 0 3 3 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +550800.0 22 6 35 95942 761 1415 361 503 652 151 58668 44682 17742 6730 170 2.1 3 3 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +554400.0 24 7 34 95977 1001 1415 372 721 800 154 87159 53681 18650 7641 140 3.1 3 3 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +558000.0 25.5 8.1 33 96036 1192 1415 372 908 874 171 111763 58148 21108 8757 130 4.6 1 1 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +561600.0 27 8 30 96029 1323 1415 372 1032 822 262 124982 60496 31963 12772 160 3.1 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +565200.0 28 9 30 96046 1383 1415 379 1087 880 225 130000 60647 27927 11338 200 6.7 0 0 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +568800.0 27.8 9.2 31 95990 1370 1415 404 938 630 327 112365 49125 39394 15291 190 7.2 6 6 9900 7500 9 999999999 23 0 0 88 0.2 0 0 +572400.0 28 10 32 96046 1283 1415 380 991 856 213 121298 58728 26250 10717 210 7.2 0 0 9900 7500 9 999999999 25 0 0 88 0.2 0 0 +576000.0 28 9 30 96046 1130 1415 379 849 825 188 102777 56652 22930 9440 210 7.7 0 0 9900 7500 9 999999999 23 0 0 88 0.2 0 0 +579600.0 27.3 6.2 26 95934 919 1415 397 572 480 260 65618 39333 29984 11101 200 7.7 6 6 9900 7500 9 999999999 17 0 0 88 0.2 0 0 +583200.0 26 3 23 96011 666 1415 361 426 569 157 48734 40223 18073 6480 200 6.7 0 0 9900 7500 9 999999999 12 0 0 88 0.2 0 0 +586800.0 23 -2 18 95959 388 1415 341 193 294 112 21306 16150 12413 3820 200 8.2 0 0 9900 7500 9 999999999 8 0 0 88 0.2 0 0 +590400.0 21.3 -6.3 14 96142 104 1415 345 23 0 23 2263 0 2278 776 170 1.5 4 4 9900 7500 9 999999999 5 0 0 88 0.2 0 0 +594000.0 21 -3 19 95924 0 545 330 0 0 0 0 0 0 0 190 8.2 0 0 9900 7500 9 999999999 7 0 0 88 0.2 0 0 +597600.0 20 0 26 95906 0 0 330 0 0 0 0 0 0 0 130 2.1 0 0 9900 7500 9 999999999 9 0 0 88 0.2 0 0 +601200.0 19.1 0.2 28 96236 0 0 326 0 0 0 0 0 0 0 292 0 0 0 9900 7500 9 999999999 9 0 0 88 0.2 0 0 +604800.0 17 3 39 95852 0 0 326 0 0 0 0 0 0 0 150 0.5 1 1 9900 7500 9 999999999 13 0 0 88 0.2 0 0 +608400.0 17 1 34 95852 0 0 317 0 0 0 0 0 0 0 114 1.5 0 0 9900 7500 9 999999999 10 0 0 88 0.2 0 0 +612000.0 15.3 4.4 48 96062 0 0 314 0 0 0 0 0 0 0 170 1.5 0 0 9900 7500 9 999999999 15 0 0 88 0.2 0 0 +615600.0 15 5 51 95815 0 0 327 0 0 0 0 0 0 0 77 0.5 3 3 9900 7500 9 999999999 15 0 0 88 0.2 0 0 +619200.0 14 4 51 95797 0 0 321 0 0 0 0 0 0 0 193 1.5 3 3 9900 7500 9 999999999 14 0 0 88 0.2 0 0 +622800.0 12 4.7 61 95972 0 0 318 0 0 0 0 0 0 0 20 2.6 5 5 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +626400.0 11 5 66 95740 0 0 314 0 0 0 0 0 0 0 166 1 5 5 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +630000.0 14 5 55 95797 202 1030 322 65 66 56 7153 781 6131 1775 350 0 3 3 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +633600.0 17.2 4.9 44 95993 487 1415 345 235 277 140 26123 17713 15584 5007 300 2.1 6 6 9900 7500 9 999999999 15 0 0 88 0.2 0 0 +637200.0 20 4 35 95906 758 1415 334 508 640 164 58914 45736 19142 7159 340 2.1 0 0 9900 7500 9 999999999 14 0 0 88 0.2 0 0 +640800.0 23 3 27 95959 998 1415 347 732 769 189 87247 56135 22578 9061 350 0.5 0 0 9900 7500 9 999999999 12 0 0 88 0.2 0 0 +644400.0 25.5 2.9 23 95875 1190 1415 383 798 585 305 94103 48231 36215 14024 130 1 6 6 9900 7500 9 999999999 12 0 0 88 0.2 0 0 +648000.0 27 5 24 96029 1321 1415 369 1035 889 203 127913 61921 25271 10331 160 2.6 0 0 9900 7500 9 999999999 15 0 0 88 0.2 0 0 +651600.0 29 7 25 96063 1382 1415 381 1090 893 215 130000 61716 26832 10921 160 3.1 0 0 9900 7500 9 999999999 18 0 0 88 0.2 0 0 +655200.0 30.1 6.1 22 95669 1369 1415 412 942 640 322 113141 50589 38914 15121 140 3.6 6 6 9900 7500 9 999999999 17 0 0 88 0.2 0 0 +658800.0 31 6 21 96096 1283 1415 390 998 877 200 122846 60915 24810 10161 160 5.1 0 0 9900 7500 9 999999999 17 0 0 88 0.2 0 0 +662400.0 32 5 18 96113 1130 1415 394 854 830 190 103564 58721 23178 9519 190 5.7 0 0 9900 7500 9 999999999 15 0 0 88 0.2 0 0 +666000.0 31.4 3.5 17 95500 920 1415 415 575 488 257 66082 40388 29716 11022 200 6.2 6 6 9900 7500 9 999999999 13 0 0 88 0.2 0 0 +669600.0 30 6 22 96079 667 1415 385 424 571 155 48593 39400 17817 6415 200 7.2 0 0 9900 7500 9 999999999 17 0 0 88 0.2 0 0 +673200.0 28 7 26 96046 389 1415 376 190 336 98 21243 15965 10963 3512 210 7.7 0 0 9900 7500 9 999999999 18 0 0 88 0.2 0 0 +676800.0 26.5 5.5 26 95542 105 1415 386 23 0 23 2236 0 2252 771 200 6.7 4 4 9900 7500 9 999999999 16 0 0 88 0.2 0 0 +680400.0 26 7 30 96011 0 545 366 0 0 0 0 0 0 0 180 7.7 0 0 9900 7500 9 999999999 18 0 0 88 0.2 0 0 +684000.0 25 7 32 95994 0 0 361 0 0 0 0 0 0 0 160 4.1 0 0 9900 7500 9 999999999 19 0 0 88 0.2 0 0 +687600.0 23 8.3 39 95633 0 0 371 0 0 0 0 0 0 0 190 4.1 4 4 9900 7500 9 999999999 21 0 0 88 0.2 0 0 +691200.0 21 9 46 95924 0 0 356 0 0 0 0 0 0 0 170 3.1 2 2 9900 7500 9 999999999 23 0 0 88 0.2 0 0 +694800.0 21 9 46 95924 0 0 356 0 0 0 0 0 0 0 190 3.1 2 2 9900 7500 9 999999999 23 0 0 88 0.2 0 0 +698400.0 18.8 9.3 54 95530 0 0 352 0 0 0 0 0 0 0 140 1.5 4 4 9900 7500 9 999999999 23 0 0 88 0.2 0 0 +702000.0 17 9 59 95852 0 0 343 0 0 0 0 0 0 0 284 1 4 4 9900 7500 9 999999999 23 0 0 88 0.2 0 0 +705600.0 16 9 63 95834 0 0 341 0 0 0 0 0 0 0 141 0 5 5 9900 7500 9 999999999 23 0 0 88 0.2 0 0 +709200.0 14.3 9.1 71 95665 0 0 328 0 0 0 0 0 0 0 200 1.5 3 3 9900 7500 9 999999999 23 0 0 88 0.2 0 0 +712800.0 13 9 77 95778 0 0 322 0 0 0 0 0 0 0 105 0 3 3 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +716400.0 18 10 59 95870 199 1010 349 62 93 49 6842 441 5418 1620 296 1.5 4 4 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +720000.0 19.7 9.6 52 95906 483 1415 339 264 419 121 29642 23867 13608 4536 170 2.6 0 0 9900 2000 9 999999999 24 0 0 88 0.2 0 0 +723600.0 22 9 43 95942 755 1415 356 501 678 139 58736 44065 16322 6251 93 1 1 1 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +727200.0 24 9 38 95977 995 1415 359 723 827 140 87926 53278 17060 7031 89 1.5 0 0 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +730800.0 25.8 8.4 33 95880 1188 1415 367 904 814 220 109121 58117 26669 10843 170 1.5 0 0 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +734400.0 28 8 28 96046 1320 1415 377 1029 821 261 124647 60450 31857 12734 110 4.6 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +738000.0 29 9 29 96063 1381 1415 384 1086 824 279 130000 60715 34095 13543 170 3.1 0 0 9900 2000 9 999999999 22 0 0 88 0.2 0 0 +741600.0 30.6 9.8 28 95829 1369 1415 393 1073 824 274 130000 60094 33458 13322 230 3.6 0 0 9900 2000 9 999999999 24 0 0 88 0.2 0 0 +745200.0 31 10 27 96096 1283 1415 395 992 819 247 119998 58790 30084 12106 230 5.1 0 0 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +748800.0 31 12 31 96096 1130 1415 398 845 859 158 103596 54557 19481 8131 210 7.7 0 0 9900 2000 9 999999999 30 0 0 88 0.2 0 0 +752400.0 28.2 13.6 41 95732 920 1415 385 648 778 142 77710 48266 17051 6915 210 7.7 0 0 9900 2000 9 999999999 36 0 0 88 0.2 0 0 +756000.0 25 14 50 95994 668 1415 382 417 627 121 48502 36395 14080 5287 210 8.7 2 2 9900 2000 9 999999999 37 0 0 88 0.2 0 0 +759600.0 24 13 50 95977 389 1415 376 188 306 104 20789 13964 11513 3648 200 5.1 2 2 9900 2000 9 999999999 34 0 0 88 0.2 0 0 +763200.0 21.3 13.6 61 96038 105 1415 351 24 0 24 2287 0 2303 787 180 7.2 0 0 9900 2000 9 999999999 36 0 0 88 0.2 0 0 +766800.0 21 13 60 95924 0 545 367 0 0 0 0 0 0 0 180 5.7 4 4 9900 2000 9 999999999 34 0 0 88 0.2 0 0 +770400.0 19 14 73 95888 0 0 364 0 0 0 0 0 0 0 190 3.6 6 6 9900 2000 9 999999999 38 0 0 88 0.2 0 0 +774000.0 18.5 14 75 96215 0 0 339 0 0 0 0 0 0 0 190 3.1 0 0 9900 2000 9 999999999 38 0 0 88 0.2 0 0 +777600.0 18 14 77 95870 0 0 364 0 0 0 0 0 0 0 180 2.6 7 7 9900 2000 9 999999999 38 0 0 88 0.2 0 0 +781200.0 17 14 82 95852 0 0 364 0 0 0 0 0 0 0 220 2.1 8 8 9900 2000 9 999999999 38 0 0 88 0.2 0 0 +784800.0 16.1 13.5 85 96077 0 0 327 0 0 0 0 0 0 0 200 1.5 0 0 9900 2000 9 999999999 36 0 0 88 0.2 0 0 +788400.0 15 12 82 95815 0 0 352 0 0 0 0 0 0 0 10 1 8 8 9900 2000 9 999999999 31 0 0 88 0.2 0 0 +792000.0 14 12 88 95797 0 0 316 0 0 0 0 0 0 0 267 1 0 0 5000 2000 9 999999999 31 0 0 88 0.2 0 0 +795600.0 13.9 12.3 90 96064 0 0 316 0 0 0 0 0 0 0 101 0 0 0 5000 2000 9 999999999 32 0 0 88 0.2 0 0 +799200.0 13 12 94 95778 0 0 312 0 0 0 0 0 0 0 153 1 0 0 5000 2000 9 999999999 31 0 0 88 0.2 0 0 +802800.0 15 13 88 95815 195 990 361 35 0 35 3426 0 3451 1270 280 1 9 9 7000 2000 9 999999999 34 0 0 88 0.2 0 0 +806400.0 17.9 14.3 79 96091 480 1414 336 259 393 126 28885 21556 14084 4646 300 1 0 0 7000 2000 9 999999999 39 0 0 88 0.2 0 0 +810000.0 20 14 68 95906 752 1414 366 452 509 181 51698 34848 20805 7665 158 1 5 5 9900 2000 9 999999999 38 0 0 88 0.2 0 0 +813600.0 24 14 54 95977 993 1414 381 706 773 162 84593 49330 19496 7970 68 1.5 3 3 9900 2000 9 999999999 37 0 0 88 0.2 0 0 +817200.0 25.5 13.2 46 95998 1186 1414 371 895 861 172 109774 54756 21188 8811 140 2.1 0 0 9900 2000 9 999999999 34 0 0 88 0.2 0 0 +820800.0 27 12 39 96029 1318 1414 385 1021 821 255 123679 57984 31020 12462 180 2.1 1 1 9900 2000 9 999999999 30 0 0 88 0.2 0 0 +824400.0 29 10 31 96063 1380 1414 385 1083 824 277 130000 60105 33856 13466 220 5.1 0 0 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +828000.0 29.3 11.3 33 96068 1369 1414 388 1070 824 271 129797 59133 33128 13217 215 5.8 0 0 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +831600.0 29.7 12.7 35 96074 1283 1414 392 988 819 243 119459 57010 29565 11938 49 6.5 0 0 9900 2000 9 999999999 32 0 0 88 0.2 0 0 +835200.0 30 14 38 96079 1131 1414 412 832 835 164 101585 52309 20076 8373 230 7.2 3 3 9900 2000 9 999999999 37 0 0 88 0.2 0 0 +838800.0 29 13 37 96063 921 1414 389 649 798 129 78421 48576 15646 6383 293 7.2 0 0 9900 2000 9 999999999 34 0 0 88 0.2 0 0 +842400.0 28 12 37 96046 668 1414 399 416 619 123 48343 37100 14366 5375 240 7.2 3 3 9900 2000 9 999999999 30 0 0 88 0.2 0 0 +846000.0 26 12 42 96011 390 1414 379 189 313 103 20980 14469 11461 3636 220 7.2 1 1 9900 2000 9 999999999 30 0 0 88 0.2 0 0 +849600.0 22.9 11.2 48 95887 105 1414 356 24 0 24 2295 0 2311 788 200 7.7 0 0 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +853200.0 22 11 50 95942 0 543 363 0 0 0 0 0 0 0 190 7.2 2 2 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +856800.0 21 10 49 95924 0 0 357 0 0 0 0 0 0 0 200 5.1 2 2 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +860400.0 20.2 9.6 50 95905 0 0 342 0 0 0 0 0 0 0 170 3.1 0 0 9900 2000 9 999999999 24 0 0 88 0.2 0 0 +864000.0 19 9 52 95888 0 0 350 0 0 0 0 0 0 0 273 1.5 3 3 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +867600.0 18 8 52 95870 0 0 344 0 0 0 0 0 0 0 143 1 3 3 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +871200.0 16.9 9.2 60 95760 0 0 326 0 0 0 0 0 0 0 180 0.5 0 0 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +874800.0 15 9 67 95815 0 0 336 0 0 0 0 0 0 0 270 0 5 5 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +878400.0 15 9 67 95815 0 0 336 0 0 0 0 0 0 0 347 1 5 5 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +882000.0 14.6 9 69 95888 0 0 316 0 0 0 0 0 0 0 140 0.5 0 0 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +885600.0 15 9 67 95815 0 0 336 0 0 0 0 0 0 0 160 2.1 5 5 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +889200.0 16 9 63 95834 191 970 341 57 72 47 6276 212 5215 1554 170 2.6 5 5 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +892800.0 17.4 8 54 96091 476 1414 327 259 433 113 29195 24092 12770 4293 190 1 0 0 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +896400.0 19 9 52 95888 749 1414 350 491 657 143 57395 43152 16742 6373 10 1.5 3 3 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +900000.0 19 8 49 95888 990 1414 345 716 816 144 86835 53396 17537 7203 324 1.5 2 2 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +903600.0 22.9 10 44 96038 1184 1414 355 898 893 150 111388 56612 18635 7792 140 3.1 0 0 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +907200.0 26 11 39 96011 1317 1414 378 1021 821 256 123696 58615 31152 12502 180 3.6 1 1 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +910800.0 27 11 37 96029 1379 1414 376 1080 824 275 130000 59452 33602 13384 150 4.6 0 0 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +914400.0 29 10.2 31 95925 1368 1414 385 1071 824 273 129966 59820 33332 13281 200 4.1 0 0 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +918000.0 29 10 31 96063 1283 1414 385 991 819 247 119972 58769 30069 12101 200 6.2 0 0 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +921600.0 30 11 31 96079 1131 1414 391 847 860 159 103840 55232 19549 8153 230 7.2 0 0 9900 2000 9 999999999 27 0 0 88 0.2 0 0 +925200.0 28.9 10.6 32 95791 921 1414 385 652 799 131 78768 50134 15913 6477 220 7.2 0 0 9900 2000 9 999999999 26 0 0 88 0.2 0 0 +928800.0 27 10 34 96029 668 1414 375 423 614 132 48933 38605 15379 5695 220 8.2 0 0 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +932400.0 25 9 36 95994 390 1414 364 190 333 98 21211 15560 11004 3527 210 7.2 0 0 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +936000.0 23.1 8.9 40 95900 104 1414 354 24 0 24 2299 0 2315 788 210 6.7 0 0 9900 2000 9 999999999 22 0 0 88 0.2 0 0 +939600.0 22 9 43 95942 0 542 356 0 0 0 0 0 0 0 210 5.7 1 1 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +943200.0 21 9 46 95924 0 0 356 0 0 0 0 0 0 0 210 3.1 2 2 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +946800.0 19.8 9.5 51 96021 0 0 340 0 0 0 0 0 0 0 230 0.5 0 0 9900 2000 9 999999999 24 0 0 88 0.2 0 0 +950400.0 19 9 52 95888 0 0 350 0 0 0 0 0 0 0 220 2.6 3 3 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +954000.0 18 10 59 95870 0 0 349 0 0 0 0 0 0 0 280 2.1 4 4 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +957600.0 17 9.3 60 95923 0 0 327 0 0 0 0 0 0 0 181 0 0 0 8000 2000 9 999999999 24 0 0 88 0.2 0 0 +961200.0 17 8 55 95852 0 0 339 0 0 0 0 0 0 0 170 2.1 3 3 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +964800.0 15 9 67 95815 0 0 336 0 0 0 0 0 0 0 8 0 5 5 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +968400.0 13.7 9 73 95843 0 0 312 0 0 0 0 0 0 0 270 1 0 0 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +972000.0 14 9 72 95797 0 0 334 0 0 0 0 0 0 0 228 0 6 6 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +975600.0 16 9 63 95834 187 949 341 55 67 46 6059 109 5100 1518 7 0.5 5 5 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +979200.0 18.6 9.8 57 95924 473 1414 334 255 426 113 28729 23183 12746 4276 150 1 0 0 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +982800.0 21 10 49 95924 746 1414 357 490 665 139 57290 42833 16284 6215 22 1 2 2 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +986400.0 23 10 44 95959 987 1414 362 714 822 139 86689 52411 16967 6987 115 1 1 1 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +990000.0 25.3 9.8 38 95786 1182 1414 366 896 893 149 111196 56701 18571 7766 270 1.5 0 0 9900 2000 9 999999999 24 0 0 88 0.2 0 0 +993600.0 28 9 30 96046 1315 1414 379 1023 821 258 123910 59810 31489 12609 210 2.6 0 0 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +997200.0 29 9 29 96063 1378 1414 384 1083 824 278 130000 60658 33979 13502 180 5.1 0 0 9900 2000 9 999999999 22 0 0 88 0.2 0 0 +1000800.0 30.5 9.7 28 95618 1367 1414 392 1071 824 274 130000 60117 33422 13309 220 5.1 0 0 9900 2000 9 999999999 24 0 0 88 0.2 0 0 +1004400.0 32 9 24 96113 1283 1414 399 993 819 249 120147 59357 30263 12164 220 5.7 0 0 9900 2000 9 999999999 22 0 0 88 0.2 0 0 +1008000.0 32 8 23 96113 1131 1414 398 851 866 158 104535 57032 19476 8114 230 5.7 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +1011600.0 31.4 7.5 23 95463 921 1414 394 656 801 133 79218 51848 16137 6554 240 6.2 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +1015200.0 31 6 21 96096 668 1414 390 426 612 136 49251 40162 15808 5820 240 5.1 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +1018800.0 29 5 22 96063 390 1414 378 192 340 98 21394 16465 10950 3510 230 5.7 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +1022400.0 26.7 3.5 22 95488 104 1414 365 24 0 24 2308 0 2323 788 200 4.6 0 0 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +1026000.0 25 4 26 95994 0 539 358 0 0 0 0 0 0 0 190 4.1 0 0 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +1029600.0 25 4 26 95994 0 0 358 0 0 0 0 0 0 0 180 4.6 0 0 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +1033200.0 22.9 4.5 30 95479 0 0 348 0 0 0 0 0 0 0 190 4.1 0 0 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +1036800.0 20 5 37 95906 0 0 335 0 0 0 0 0 0 0 118 1 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +1040400.0 18 7 49 95870 0 0 339 0 0 0 0 0 0 0 244 1 2 2 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +1044000.0 16 7 55 95834 0 0 333 0 0 0 0 0 0 0 61 1 3 3 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +1047600.0 15 7 59 95815 0 0 331 0 0 0 0 0 0 0 43 0.5 4 4 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +1051200.0 14 6 59 95797 0 0 326 0 0 0 0 0 0 0 198 0 4 4 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +1054800.0 14 7 63 95797 0 0 329 0 0 0 0 0 0 0 153 0.5 5 5 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +1058400.0 13 7 67 95778 0 0 325 0 0 0 0 0 0 0 2 0.5 5 5 7000 2000 9 999999999 19 0 0 88 0.2 0 0 +1062000.0 16 7 55 95834 183 928 333 55 78 45 6070 95 4973 1479 305 0.5 3 3 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +1065600.0 20 7.2 43 95485 469 1414 338 253 427 111 28550 23652 12609 4223 326 0 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +1069200.0 23 7 36 95959 742 1414 352 491 669 140 57496 44271 16391 6234 267 1 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +1072800.0 25 7 32 95994 985 1414 361 715 826 139 86946 54029 16995 6985 141 1 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +1076400.0 27.9 6.9 26 95499 1179 1414 375 898 813 219 108377 58729 26602 10810 200 2.6 0 0 9900 2000 9 999999999 18 0 0 88 0.2 0 0 +1080000.0 30 6 22 96079 1313 1414 385 1026 821 263 124273 61364 31994 12770 180 4.1 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +1083600.0 31 7 22 96096 1377 1414 391 1085 824 281 130000 61731 34343 13617 220 5.1 0 0 9900 2000 9 999999999 18 0 0 88 0.2 0 0 +1087200.0 31.3 6.7 21 95508 1367 1414 392 1076 823 278 130000 61753 33992 13490 220 7.2 0 0 9900 2000 9 999999999 18 0 0 88 0.2 0 0 +1090800.0 31 9 26 96096 1283 1414 394 993 819 249 120111 59343 30248 12159 220 7.7 0 0 9900 2000 9 999999999 22 0 0 88 0.2 0 0 +1094400.0 30 9 27 96079 1131 1414 389 850 863 158 104285 56457 19539 8142 220 7.7 0 0 9900 2000 9 999999999 22 0 0 88 0.2 0 0 +1098000.0 29.2 9.6 29 95464 921 1414 385 653 799 132 78936 50719 15999 6508 220 7.7 0 0 9900 2000 9 999999999 24 0 0 88 0.2 0 0 +1101600.0 27 10 34 96029 668 1414 375 423 614 132 48957 38613 15376 5695 220 8.2 0 0 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +1105200.0 25 6 30 95994 389 1414 360 191 338 98 21333 16232 10962 3514 210 8.2 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +1108800.0 22.8 7.9 38 95591 104 1414 352 24 0 24 2284 0 2299 782 220 4.6 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +1112400.0 21 8 43 95924 0 536 350 0 0 0 0 0 0 0 170 4.1 1 1 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +1116000.0 19 7 46 95888 0 0 344 0 0 0 0 0 0 0 180 4.6 2 2 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +1119600.0 18 7.2 49 95657 0 0 329 0 0 0 0 0 0 0 170 2.6 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +1123200.0 17 7 52 95852 0 0 338 0 0 0 0 0 0 0 230 1.5 3 3 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +1126800.0 16 7 55 95834 0 0 333 0 0 0 0 0 0 0 119 1 3 3 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +1130400.0 15.2 7.1 58 95616 0 0 316 0 0 0 0 0 0 0 161 0 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +1134000.0 14 8 67 95797 0 0 330 0 0 0 0 0 0 0 258 1 5 5 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +1137600.0 13 8 72 95778 0 0 329 0 0 0 0 0 0 0 139 0 6 6 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +1141200.0 12.9 7.6 70 95677 0 0 307 0 0 0 0 0 0 0 210 0.5 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +1144800.0 13 8 72 95778 0 0 329 0 0 0 0 0 0 0 66 0 6 6 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +1148400.0 13 8 72 95778 179 907 329 47 25 44 5175 0 4845 1441 220 0.5 6 6 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +1152000.0 17.2 8.4 56 95870 465 1414 326 250 337 139 27612 20787 15393 4853 190 2.1 0 0 8000 2000 9 999999999 22 0 0 88 0.2 0 0 +1155600.0 20 8 46 95906 739 1414 350 487 664 139 56898 43538 16340 6210 150 2.1 2 2 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +1159200.0 22 8 41 95942 982 1414 355 711 823 139 86406 53410 16962 6971 170 2.1 1 1 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +1162800.0 24.4 8.2 36 95941 1177 1414 360 894 812 217 107898 57990 26287 10701 180 1.5 0 0 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +1166400.0 26 9 34 96011 1312 1414 369 1020 820 257 123510 59740 31352 12559 230 6.2 0 0 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +1170000.0 26 11 39 96011 1376 1414 378 1077 824 274 130000 59382 33466 13336 210 7.2 1 1 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +1173600.0 26.1 10.5 38 95942 1366 1414 371 1069 823 272 129664 59576 33183 13230 220 7.2 0 0 9900 2000 9 999999999 26 0 0 88 0.2 0 0 +1177200.0 26 10 37 96011 1282 1414 370 991 819 247 119865 58725 30025 12085 220 8.2 0 0 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +1180800.0 26 10 37 96011 1130 1414 370 848 861 159 104020 55837 19576 8160 210 9.3 0 0 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +1184400.0 25.5 9.1 35 95913 921 1414 366 654 799 132 78978 50981 16055 6527 210 7.7 0 0 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +1188000.0 25 9 36 95994 668 1414 364 423 613 133 49022 39022 15471 5722 220 6.7 0 0 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +1191600.0 23 9 41 95959 389 1414 361 190 333 98 21167 15505 10996 3524 210 6.2 1 1 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +1195200.0 20.4 7.8 44 96003 103 1414 340 23 0 23 2271 0 2286 778 200 4.6 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +1198800.0 18 8 52 95870 0 532 344 0 0 0 0 0 0 0 150 3.6 3 3 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +1202400.0 17 8 55 95852 0 0 339 0 0 0 0 0 0 0 150 3.1 3 3 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +1206000.0 16 7.5 57 95834 0 0 337 0 0 0 0 0 0 0 249 2.8 4 4 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +1209600.0 15 7 59 95815 0 0 331 0 0 0 0 0 0 0 120 2.6 4 4 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +1213200.0 14 7 63 95797 0 0 329 0 0 0 0 0 0 0 191 1.5 5 5 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +1216800.0 13.7 7.3 65 96117 0 0 310 0 0 0 0 0 0 0 20 0 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +1220400.0 13 7 67 95778 0 0 325 0 0 0 0 0 0 0 97 1.5 5 5 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +1224000.0 13 7 67 95778 0 0 325 0 0 0 0 0 0 0 168 1 5 5 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +1227600.0 12.6 7.1 69 96163 0 0 305 0 0 0 0 0 0 0 130 0.5 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +1231200.0 10 7 82 95721 0 0 323 0 0 0 0 0 0 0 73 1.5 8 8 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +1234800.0 11 7 76 95740 175 885 322 42 1 42 4686 0 4684 1395 211 0 7 7 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +1238400.0 15.2 7 58 96221 461 1414 316 247 336 137 27348 20814 15258 4801 216 0 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +1242000.0 17 8 55 95852 736 1414 339 477 635 146 55523 42358 17103 6449 280 1 3 3 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +1245600.0 20 8 46 95906 979 1414 350 707 817 140 85837 53219 17113 7024 325 0 2 2 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +1249200.0 21.6 8.5 43 95949 1175 1414 347 892 812 216 107576 57767 26139 10648 160 3.1 0 0 9900 2000 9 999999999 22 0 0 88 0.2 0 0 +1252800.0 24 10 41 95977 1310 1414 367 1016 820 255 123091 59097 31064 12463 180 4.6 1 1 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +1256400.0 25 9 36 95994 1375 1414 364 1079 824 277 130000 60576 33824 13447 180 3.6 0 0 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +1260000.0 26 9 34 96011 1365 1414 369 1070 823 274 129876 60457 33453 13315 170 4.6 0 0 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +1263600.0 28 7 26 96046 1282 1414 376 995 819 251 120367 60382 30568 12262 200 5.7 0 0 9900 2000 9 999999999 18 0 0 88 0.2 0 0 +1267200.0 29 5 22 96063 1130 1414 378 854 861 165 104711 58588 20341 8442 180 5.1 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +1270800.0 28.4 7.1 26 95858 921 1414 378 656 801 133 79247 52019 16168 6565 160 1.5 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +1274400.0 28 4 22 96046 668 1414 372 427 607 139 49307 40715 16190 5934 210 6.7 0 0 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +1278000.0 27 6 26 96029 389 1414 370 191 337 98 21276 16168 10944 3507 200 6.2 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +1281600.0 24.9 5.7 29 95874 102 1414 359 23 0 23 2261 0 2276 773 210 4.1 0 0 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +1285200.0 23 6 33 95959 0 527 350 0 0 0 0 0 0 0 140 2.1 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +1288800.0 22 7 38 95942 0 0 347 0 0 0 0 0 0 0 150 3.1 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +1292400.0 21 7.6 42 95919 0 0 343 0 0 0 0 0 0 0 170 7.7 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +1296000.0 20 7 43 95906 0 0 344 0 0 0 0 0 0 0 170 4.1 1 1 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +1299600.0 19 6 43 95888 0 0 338 0 0 0 0 0 0 0 170 4.6 1 1 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +1303200.0 16.9 5.2 46 95845 0 0 322 0 0 0 0 0 0 0 170 2.1 0 0 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +1306800.0 16 6 51 95834 0 0 332 0 0 0 0 0 0 0 71 0.5 3 3 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +1310400.0 13 5 58 95778 0 0 320 0 0 0 0 0 0 0 61 1.5 4 4 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +1314000.0 12.2 6.1 66 95881 0 0 302 0 0 0 0 0 0 0 176 0 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +1317600.0 13 7 67 95778 0 0 325 0 0 0 0 0 0 0 212 0.5 5 5 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +1321200.0 15 7 59 95815 171 863 331 48 53 42 5319 0 4624 1371 129 1 4 4 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +1324800.0 18.1 8.1 52 95915 458 1414 330 244 413 110 27423 22320 12412 4132 100 0.5 0 0 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +1328400.0 21 8 43 95924 732 1414 350 481 662 138 56242 43255 16180 6139 215 1 1 1 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +1332000.0 23 8 38 95959 976 1414 353 706 821 138 85747 53249 16868 6926 160 2.1 0 0 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +1335600.0 26.1 8.2 32 95809 1172 1414 368 890 812 215 107373 57895 26123 10640 140 3.1 0 0 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +1339200.0 27 8 30 96029 1308 1414 372 1018 820 258 123287 60232 31410 12573 140 4.1 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +1342800.0 30 10 29 96079 1373 1414 390 1077 823 275 130000 59976 33602 13376 130 4.6 0 0 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +1346400.0 31.5 5.5 20 96104 1364 1414 392 1075 823 280 130000 62278 34129 13530 321 5.4 0 0 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +1350000.0 33 1 13 96129 1281 1414 393 1003 819 260 121304 62984 31608 12603 170 6.2 0 0 9900 2000 9 999999999 10 0 0 88 0.2 0 0 +1353600.0 33 -1 11 96129 1130 1414 391 862 847 183 104960 61053 22422 9222 200 6.7 0 0 9900 2000 9 999999999 8 0 0 88 0.2 0 0 +1357200.0 32.1 3.2 16 95484 921 1414 392 659 735 180 77987 53465 21403 8442 190 7.7 0 0 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +1360800.0 31 6 21 96096 668 1414 390 425 571 155 48685 39438 17810 6417 200 6.7 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +1364400.0 29 6 23 96063 388 1414 380 190 337 98 21231 16117 10930 3502 190 6.7 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +1368000.0 26.9 4.7 24 95548 101 1414 368 23 0 23 2243 0 2259 767 180 5.1 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +1371600.0 24 6 31 95977 0 521 355 0 0 0 0 0 0 0 130 4.1 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +1375200.0 22 6 35 95942 0 0 346 0 0 0 0 0 0 0 140 3.6 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +1378800.0 20.6 5.8 38 95609 0 0 339 0 0 0 0 0 0 0 150 2.1 0 0 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +1382400.0 20 6 40 95906 0 0 343 0 0 0 0 0 0 0 150 3.1 1 1 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +1386000.0 19 6 43 95888 0 0 338 0 0 0 0 0 0 0 239 0 1 1 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +1389600.0 17.8 5.7 45 95635 0 0 326 0 0 0 0 0 0 0 170 1 0 0 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +1393200.0 16 6 51 95834 0 0 332 0 0 0 0 0 0 0 243 1 3 3 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +1396800.0 16 5 48 95834 0 0 328 0 0 0 0 0 0 0 260 0 2 2 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +1400400.0 14 6.6 61 95726 0 0 310 0 0 0 0 0 0 0 216 0 0 0 9900 2000 9 999999999 18 0 0 88 0.2 0 0 +1404000.0 13 8 72 95778 0 0 329 0 0 0 0 0 0 0 52 0 6 6 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +1407600.0 16 7 55 95834 166 841 333 47 52 41 5170 0 4502 1334 48 0 3 3 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +1411200.0 19 7.2 46 95921 454 1413 333 241 411 109 27118 22217 12315 4092 130 1 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +1414800.0 21 6 38 95924 729 1413 341 480 656 141 56010 43858 16507 6231 140 3.1 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +1418400.0 23 6 33 95959 973 1413 350 706 818 141 85582 54175 17202 7044 150 3.6 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +1422000.0 25.1 6.4 30 95934 1170 1413 361 890 812 217 107378 58759 26319 10703 140 5.1 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +1425600.0 27 6 26 96029 1306 1413 370 1019 820 260 123431 61217 31707 12667 150 5.7 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +1429200.0 27 5 24 96029 1372 1413 369 1083 823 283 130000 62587 34513 13664 150 5.1 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +1432800.0 29.5 8 26 95820 1363 1413 385 1070 823 275 129880 60986 33604 13361 190 5.7 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +1436400.0 29 10 31 96063 1281 1413 385 989 818 246 119694 58685 29984 12070 210 7.7 0 0 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +1440000.0 27 11 37 96029 1129 1413 376 846 859 159 103702 55162 19533 8147 200 9.3 0 0 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +1443600.0 27 9.8 34 95768 920 1413 375 652 798 132 78807 50550 15978 6499 210 7.2 0 0 9900 2000 9 999999999 24 0 0 88 0.2 0 0 +1447200.0 26 10 37 96011 667 1413 370 422 613 132 48838 38527 15366 5689 200 6.7 0 0 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +1450800.0 25 10 39 95994 387 1413 372 189 329 98 20985 15107 10965 3512 180 4.6 1 1 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +1454400.0 21.8 10.9 50 95810 100 1413 351 23 0 23 2201 0 2216 756 140 3.6 0 0 9900 2000 9 999999999 27 0 0 88 0.2 0 0 +1458000.0 20 11 56 95906 0 515 357 0 0 0 0 0 0 0 150 5.7 3 3 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +1461600.0 19 11 60 95888 0 0 355 0 0 0 0 0 0 0 150 5.1 4 4 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +1465200.0 17 10.8 67 95885 0 0 328 0 0 0 0 0 0 0 140 2.6 0 0 9900 2000 9 999999999 27 0 0 88 0.2 0 0 +1468800.0 16 11 72 95834 0 0 346 0 0 0 0 0 0 0 150 2.6 6 6 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +1472400.0 15 11 77 95815 0 0 345 0 0 0 0 0 0 0 120 1 7 7 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +1476000.0 14.7 10.3 75 95767 0 0 317 0 0 0 0 0 0 0 170 1.5 0 0 9900 2000 9 999999999 26 0 0 88 0.2 0 0 +1479600.0 14 10 77 95797 0 0 339 0 0 0 0 0 0 0 160 2.1 7 7 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +1483200.0 14 10 77 95797 0 0 339 0 0 0 0 0 0 0 160 2.1 7 7 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +1486800.0 13 10.4 84 95726 0 0 310 0 0 0 0 0 0 0 150 2.6 0 0 8000 2000 9 999999999 26 0 0 88 0.2 0 0 +1490400.0 13 10 82 95778 0 0 340 0 0 0 0 0 0 0 140 2.6 8 8 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +1494000.0 13 11 88 95778 162 819 349 26 0 26 2516 0 2534 947 140 2.6 9 9 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +1497600.0 13.1 11 87 95917 450 1413 325 234 354 121 25970 19434 13458 4358 150 3.1 3 3 6000 2000 9 999999999 28 0 0 88 0.2 0 0 +1501200.0 15 11 77 95815 725 1413 345 381 294 229 42613 23212 25811 8810 140 3.6 7 7 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +1504800.0 18 12 68 95870 970 1413 354 636 567 246 73694 43070 28687 11015 140 4.1 5 5 9900 2000 9 999999999 31 0 0 88 0.2 0 0 +1508400.0 19.5 11.8 61 95930 1168 1413 341 880 822 200 106558 55587 24293 9983 150 5.1 0 0 9900 2000 9 999999999 30 0 0 88 0.2 0 0 +1512000.0 22 12 53 95942 1304 1413 368 997 890 175 124054 56424 21819 9034 150 5.7 3 3 9900 2000 9 999999999 31 0 0 88 0.2 0 0 +1515600.0 23 12 50 95959 1371 1413 369 1064 823 265 129393 58171 32372 12958 140 5.1 2 2 9900 2000 9 999999999 31 0 0 88 0.2 0 0 +1519200.0 24 12.5 49 95977 1362 1413 375 1057 823 263 128418 57817 32104 12864 47 5.4 2 2 9900 2000 9 999999999 32 0 0 88 0.2 0 0 +1522800.0 25 13 47 95994 1280 1413 381 981 900 165 122125 55828 20646 8582 150 5.7 2 2 9900 2000 9 999999999 34 0 0 88 0.2 0 0 +1526400.0 25 12 44 95994 1129 1413 374 843 878 141 104226 54152 17500 7345 170 5.1 1 1 9900 2000 9 999999999 31 0 0 88 0.2 0 0 +1530000.0 24.7 12 45 95795 920 1413 366 650 797 130 78450 49175 15766 6425 210 6.2 0 0 9900 2000 9 999999999 30 0 0 88 0.2 0 0 +1533600.0 24 12 47 95977 667 1413 374 419 575 147 48016 36977 16974 6184 210 6.2 2 2 9900 2000 9 999999999 31 0 0 88 0.2 0 0 +1537200.0 22 12 53 95942 387 1413 368 185 299 103 20511 13813 11481 3629 210 5.7 3 3 9900 2000 9 999999999 31 0 0 88 0.2 0 0 +1540800.0 20.8 11.7 56 95868 99 1413 347 23 0 23 2172 0 2187 747 160 4.6 0 0 9900 2000 9 999999999 30 0 0 88 0.2 0 0 +1544400.0 19 11 60 95888 0 508 355 0 0 0 0 0 0 0 150 2.6 4 4 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +1548000.0 17 11 68 95852 0 0 348 0 0 0 0 0 0 0 140 3.6 5 5 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +1551600.0 16.8 11.1 69 95938 0 0 328 0 0 0 0 0 0 0 170 2.1 0 0 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +1555200.0 16 11 72 95834 0 0 346 0 0 0 0 0 0 0 144 1.5 6 6 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +1558800.0 15 11 77 95815 0 0 345 0 0 0 0 0 0 0 130 2.1 7 7 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +1562400.0 14 11 82 95797 0 0 346 0 0 0 0 0 0 0 140 3.1 8 8 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +1566000.0 13 11 88 95778 0 0 349 0 0 0 0 0 0 0 140 3.1 9 9 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +1569600.0 12 10 88 95759 0 0 343 0 0 0 0 0 0 0 130 2.1 9 9 8000 2000 9 999999999 26 0 0 88 0.2 0 0 +1573200.0 12 10.4 90 95972 0 0 306 0 0 0 0 0 0 0 18 0 0 0 8000 2000 9 999999999 27 0 0 88 0.2 0 0 +1576800.0 12 10 88 95759 0 0 343 0 0 0 0 0 0 0 319 1.5 9 9 8000 2000 9 999999999 26 0 0 88 0.2 0 0 +1580400.0 12 10 88 95759 158 797 343 25 0 25 2414 0 2431 909 86 0 9 9 8000 2000 9 999999999 26 0 0 88 0.2 0 0 +1584000.0 15.5 11.1 75 95999 446 1413 322 234 367 118 26017 19767 13165 4272 160 0.5 0 0 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +1587600.0 17.2 11.6 69 95944 722 1413 353 425 487 176 48557 33883 20156 7338 248 0.8 6 6 8000 2000 9 999999999 30 0 0 88 0.2 0 0 +1591200.0 19 12 64 95888 967 1413 359 655 659 203 77013 46564 24016 9505 265 1 5 5 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +1594800.0 21.6 12.2 55 95921 1165 1413 351 878 861 167 107639 55035 20546 8558 150 3.6 0 0 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +1598400.0 24 13 50 95977 1302 1413 376 999 897 171 124377 55964 21404 8876 150 5.7 2 2 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +1602000.0 25 13 47 95994 1369 1413 381 1065 823 266 129301 57692 32508 13012 150 5.7 2 2 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +1605600.0 26.5 11.8 40 95750 1361 1413 375 1062 822 268 128862 58634 32766 13091 190 6.7 0 0 8000 2000 9 999999999 30 0 0 88 0.2 0 0 +1609200.0 27 12 39 96029 1279 1413 385 985 818 243 119139 57364 29558 11930 210 7.2 1 1 9900 2000 9 999999999 30 0 0 88 0.2 0 0 +1612800.0 27 13 42 96029 1128 1413 386 842 856 157 103167 53715 19356 8086 200 6.7 1 1 9900 2000 9 999999999 34 0 0 88 0.2 0 0 +1616400.0 25.9 12.4 43 95645 919 1413 372 649 798 129 78385 48909 15665 6387 210 8.2 0 0 9900 2000 9 999999999 32 0 0 88 0.2 0 0 +1620000.0 24 12 47 95977 666 1413 374 419 575 147 47986 36982 16925 6167 200 8.2 2 2 9900 2000 9 999999999 31 0 0 88 0.2 0 0 +1623600.0 23 13 53 95959 386 1413 374 185 298 103 20418 13516 11448 3620 190 7.2 3 3 9900 2000 9 999999999 34 0 0 88 0.2 0 0 +1627200.0 21.1 12 56 95760 98 1413 364 22 0 22 2121 0 2135 732 190 6.2 3 3 9900 2000 9 999999999 31 0 0 88 0.2 0 0 +1630800.0 20 12 60 95906 0 501 361 0 0 0 0 0 0 0 180 5.1 4 4 9900 2000 9 999999999 31 0 0 88 0.2 0 0 +1634400.0 19 12 64 95888 0 0 359 0 0 0 0 0 0 0 130 3.1 5 5 9900 2000 9 999999999 31 0 0 88 0.2 0 0 +1638000.0 17.8 11.4 66 95871 0 0 332 0 0 0 0 0 0 0 140 4.1 0 0 9900 2000 9 999999999 29 0 0 88 0.2 0 0 +1641600.0 17 11 68 95852 0 0 348 0 0 0 0 0 0 0 150 2.1 5 5 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +1645200.0 16 11 72 95834 0 0 346 0 0 0 0 0 0 0 140 3.1 6 6 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +1648800.0 15.5 10.5 72 95825 0 0 343 0 0 0 0 0 0 0 62 1.5 6 6 9900 2000 9 999999999 27 0 0 88 0.2 0 0 +1652400.0 15 10 72 95815 0 0 340 0 0 0 0 0 0 0 219 0 6 6 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +1656000.0 15 10 72 95815 0 0 340 0 0 0 0 0 0 0 141 1.5 6 6 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +1659600.0 14.5 10 74 95806 0 0 338 0 0 0 0 0 0 0 206 0.8 6 6 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +1663200.0 14 10 77 95797 0 0 328 0 0 0 0 0 0 0 168 0 3 3 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +1666800.0 14 10 77 95797 154 774 339 33 0 33 3234 0 3257 1130 159 0 7 7 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +1670400.0 16 10.5 70 95772 442 1413 323 231 315 132 25434 18264 14626 4570 350 1 0 0 9900 2000 9 999999999 27 0 0 88 0.2 0 0 +1674000.0 19 11 60 95888 718 1413 355 452 622 135 52673 39234 15760 5970 178 0 4 4 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +1677600.0 21 12 56 95924 964 1413 363 678 746 169 80851 49464 20190 8158 255 1 3 3 9900 2000 9 999999999 31 0 0 88 0.2 0 0 +1681200.0 23.7 12.4 49 95711 1163 1413 361 875 860 166 107325 54843 20452 8522 270 1 0 0 9900 2000 9 999999999 32 0 0 88 0.2 0 0 +1684800.0 26 13 45 96011 1300 1413 386 1002 819 247 121317 56862 30031 12112 140 2.1 2 2 9900 2000 9 999999999 34 0 0 88 0.2 0 0 +1688400.0 27 12 39 96029 1367 1413 385 1068 823 270 129577 58566 32971 13167 180 3.6 1 1 9900 2000 9 999999999 30 0 0 88 0.2 0 0 +1692000.0 29.4 11.5 33 95600 1360 1413 389 1062 822 269 128805 58820 32803 13102 210 7.2 0 0 9900 2000 9 999999999 29 0 0 88 0.2 0 0 +1695600.0 29 11 33 96063 1278 1413 386 986 818 244 119245 58009 29730 11985 210 4.6 0 0 9900 2000 9 999999999 27 0 0 88 0.2 0 0 +1699200.0 29 12 35 96063 1127 1413 404 832 832 167 101566 53670 20467 8514 210 6.7 3 3 9900 2000 9 999999999 30 0 0 88 0.2 0 0 +1702800.0 28.4 11.1 34 95488 918 1413 400 641 768 142 76986 48983 17057 6906 210 7.7 3 3 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +1706400.0 28 11 35 96046 665 1413 381 420 650 113 49133 38229 13312 5020 210 7.7 0 0 9900 2000 9 999999999 27 0 0 88 0.2 0 0 +1710000.0 26 11 39 96011 385 1413 378 186 311 102 20659 14359 11306 3580 200 6.2 1 1 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +1713600.0 23.4 11.2 46 95545 96 1413 359 22 0 22 2118 0 2133 728 190 5.1 0 0 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +1717200.0 22 12 53 95942 0 492 368 0 0 0 0 0 0 0 140 4.1 3 3 9900 2000 9 999999999 31 0 0 88 0.2 0 0 +1720800.0 21 12 56 95924 0 0 363 0 0 0 0 0 0 0 140 4.1 3 3 9900 2000 9 999999999 31 0 0 88 0.2 0 0 +1724400.0 19.5 11.3 59 95694 0 0 340 0 0 0 0 0 0 0 140 3.1 0 0 9900 2000 9 999999999 29 0 0 88 0.2 0 0 +1728000.0 19 11 60 95888 0 0 355 0 0 0 0 0 0 0 150 3.6 4 4 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +1731600.0 18 11 64 95870 0 0 353 0 0 0 0 0 0 0 170 2.1 5 5 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +1735200.0 17.5 10.9 65 95573 0 0 331 0 0 0 0 0 0 0 140 0.5 0 0 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +1738800.0 17 11 68 95852 0 0 348 0 0 0 0 0 0 0 234 1.5 5 5 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +1742400.0 16 11 72 95834 0 0 346 0 0 0 0 0 0 0 239 1 6 6 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +1746000.0 15.5 10.9 74 95536 0 0 322 0 0 0 0 0 0 0 348 0 0 0 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +1749600.0 15 11 77 95815 0 0 345 0 0 0 0 0 0 0 97 0 7 7 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +1753200.0 16 11 72 95834 149 752 346 34 0 34 3332 0 3356 1144 122 1 6 6 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +1756800.0 18.5 10.9 61 95723 438 1412 335 228 311 131 25062 17816 14494 4522 190 1 0 0 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +1760400.0 21 11 53 95924 715 1412 362 459 633 138 53397 40274 16152 6088 214 0.5 3 3 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +1764000.0 23 11 47 95959 961 1412 368 688 807 137 83251 50938 16694 6846 140 3.1 2 2 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +1767600.0 24.6 11.6 44 95784 1160 1412 365 874 886 145 108267 55060 18059 7572 150 3.1 0 0 8000 2000 9 999999999 29 0 0 88 0.2 0 0 +1771200.0 26 12 42 96011 1298 1412 379 1002 819 249 121368 57595 30260 12186 130 3.1 1 1 9900 2000 9 999999999 30 0 0 88 0.2 0 0 +1774800.0 27 12 39 96029 1366 1412 385 1066 822 270 129392 58534 32912 13146 150 3.6 1 1 9900 2000 9 999999999 30 0 0 88 0.2 0 0 +1778400.0 28.9 11.9 35 95696 1359 1412 394 1060 822 267 128544 58496 32631 13044 190 4.6 1 1 9900 2000 9 999999999 30 0 0 88 0.2 0 0 +1782000.0 29 11 33 96063 1277 1412 386 985 818 244 119134 57983 29695 11972 210 7.2 0 0 9900 2000 9 999999999 27 0 0 88 0.2 0 0 +1785600.0 29 12 35 96063 1127 1412 387 842 857 157 103234 54413 19383 8091 200 8.2 0 0 9900 2000 9 999999999 30 0 0 88 0.2 0 0 +1789200.0 28.2 11.3 35 95551 917 1412 399 640 767 141 76864 48828 17025 6894 200 7.7 3 3 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +1792800.0 26 12 42 96011 664 1412 379 418 644 115 48853 37621 13441 5064 200 8.7 1 1 9900 2000 9 999999999 30 0 0 88 0.2 0 0 +1796400.0 23 11 47 95959 383 1412 368 185 307 102 20497 14144 11298 3574 200 9.3 2 2 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +1800000.0 21.7 10.6 49 95733 95 1412 392 11 0 11 1076 0 1084 419 180 6.7 9 9 9900 7500 9 999999999 27 0 0 88 0.2 0 0 +1803600.0 20 10 53 95906 0 483 383 0 0 0 0 0 0 0 140 4.6 9 9 9900 7500 9 999999999 25 0 0 88 0.2 0 0 +1807200.0 19 10 56 95888 0 0 351 0 0 0 0 0 0 0 130 4.1 3 3 9900 7500 9 999999999 25 0 0 88 0.2 0 0 +1810800.0 18.1 9.2 56 95801 0 0 354 0 0 0 0 0 0 0 140 4.1 6 6 9900 7500 9 999999999 23 0 0 88 0.2 0 0 +1814400.0 18 9 56 95870 0 0 345 0 0 0 0 0 0 0 140 2.1 3 3 9900 7500 9 999999999 23 0 0 88 0.2 0 0 +1818000.0 17 9 59 95852 0 0 343 0 0 0 0 0 0 0 140 2.1 4 4 9900 7500 9 999999999 23 0 0 88 0.2 0 0 +1821600.0 16.6 8.8 60 95802 0 0 324 0 0 0 0 0 0 0 150 1 0 0 9900 7500 9 999999999 22 0 0 88 0.2 0 0 +1825200.0 16 9 63 95834 0 0 341 0 0 0 0 0 0 0 328 1.5 5 5 9900 7500 9 999999999 23 0 0 88 0.2 0 0 +1828800.0 16 9 63 95834 0 0 341 0 0 0 0 0 0 0 160 2.1 5 5 9900 7500 9 999999999 23 0 0 88 0.2 0 0 +1832400.0 14.8 8.3 65 95788 0 0 316 0 0 0 0 0 0 0 211 0 0 0 9900 7500 9 999999999 21 0 0 88 0.2 0 0 +1836000.0 14 8 67 95797 0 0 330 0 0 0 0 0 0 0 139 1 5 5 9900 7500 9 999999999 21 0 0 88 0.2 0 0 +1839600.0 14 9 72 95797 145 729 334 33 0 33 3184 0 3206 1096 0 1 6 6 9900 7500 9 999999999 23 0 0 88 0.2 0 0 +1843200.0 16.7 9.2 61 95889 434 1412 339 222 299 131 24501 17335 14441 4486 170 1.5 3 3 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +1846800.0 20 9 49 95906 711 1412 355 457 625 141 53054 40842 16466 6173 197 0.5 3 3 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +1850400.0 22 10 46 95942 958 1412 362 687 809 137 83155 51502 16639 6817 216 1.5 2 2 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +1854000.0 24.5 10.1 40 95772 1157 1412 378 863 861 156 106335 55298 19331 8072 100 1.5 3 3 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +1857600.0 26 11 39 96011 1296 1412 378 1003 819 250 121365 58248 30426 12239 170 3.1 1 1 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +1861200.0 28 11 35 96046 1364 1412 381 1067 822 271 129431 59179 33079 13197 130 3.6 0 0 9900 2000 9 999999999 27 0 0 88 0.2 0 0 +1864800.0 28.5 10.7 33 95642 1357 1412 400 1047 871 208 129513 58110 25873 10579 150 5.7 3 3 9900 2000 9 999999999 27 0 0 88 0.2 0 0 +1868400.0 29 10 31 96063 1276 1412 408 917 697 286 109648 52631 34450 13599 190 6.7 5 5 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +1872000.0 30 10 29 96079 1126 1412 413 786 578 324 91198 47773 37851 14391 200 5.7 5 5 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +1875600.0 30.2 11.2 31 95585 916 1412 441 335 82 281 38054 6735 32183 11701 140 5.1 9 9 9900 7500 9 999999999 28 0 0 88 0.2 0 0 +1879200.0 29 10 31 96063 663 1412 432 216 9 212 24081 713 23722 7898 210 6.2 9 9 9900 7500 9 999999999 25 0 0 88 0.2 0 0 +1882800.0 28 9 30 96046 382 1412 425 96 0 96 10663 13 10694 3427 210 6.2 9 9 9900 7500 9 999999999 23 0 0 88 0.2 0 0 +1886400.0 25.1 6.8 31 95641 93 1412 383 20 0 20 1921 0 1934 670 200 5.1 5 5 9900 7500 9 999999999 18 0 0 88 0.2 0 0 +1890000.0 24 6 31 95977 0 473 355 0 0 0 0 0 0 0 170 4.6 0 0 9900 7500 9 999999999 17 0 0 88 0.2 0 0 +1893600.0 23 6 33 95959 0 0 350 0 0 0 0 0 0 0 130 2.1 0 0 9900 7500 9 999999999 17 0 0 88 0.2 0 0 +1897200.0 21.3 5.3 35 95697 0 0 356 0 0 0 0 0 0 0 140 2.6 3 3 9900 7500 9 999999999 16 0 0 88 0.2 0 0 +1900800.0 21 4 33 95924 0 0 339 0 0 0 0 0 0 0 140 3.1 0 0 9900 7500 9 999999999 14 0 0 88 0.2 0 0 +1904400.0 20 5 37 95906 0 0 335 0 0 0 0 0 0 0 220 1 0 0 9900 7500 9 999999999 15 0 0 88 0.2 0 0 +1908000.0 17.7 7.2 50 95624 0 0 342 0 0 0 0 0 0 0 330 1 3 3 9900 7500 9 999999999 19 0 0 88 0.2 0 0 +1911600.0 18 7 49 95870 0 0 339 0 0 0 0 0 0 0 339 0 2 2 9900 7500 9 999999999 19 0 0 88 0.2 0 0 +1915200.0 16 7 55 95834 0 0 333 0 0 0 0 0 0 0 175 0.5 3 3 9900 7500 9 999999999 19 0 0 88 0.2 0 0 +1918800.0 15.5 7.5 59 95825 0 0 334 0 0 0 0 0 0 0 185 0.2 4 4 8950 7500 9 999999999 20 0 0 88 0.2 0 0 +1922400.0 15 8 63 95815 0 0 335 0 0 0 0 0 0 0 232 0 5 5 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +1926000.0 16 8 59 95834 141 706 340 33 0 33 3220 0 3243 1093 155 0.5 5 5 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +1929600.0 20.4 7.8 44 95710 430 1412 358 215 278 131 23706 16304 14437 4461 120 0.5 4 4 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +1933200.0 22 9 43 95942 708 1412 356 459 595 160 52778 40809 18507 6791 278 1 1 1 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +1936800.0 23 7 36 95959 955 1412 352 688 815 136 83463 53132 16579 6780 175 0 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +1940400.0 27.1 7.6 29 95646 1155 1412 388 864 864 156 106580 56693 19279 8043 110 2.6 3 3 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +1944000.0 29 9 29 96063 1294 1412 400 991 897 168 123664 58027 21046 8719 140 3.6 3 3 9900 2000 9 999999999 22 0 0 88 0.2 0 0 +1947600.0 30 9 27 96079 1362 1412 406 1055 822 260 128482 59369 31874 12763 150 4.6 3 3 9900 2000 9 999999999 22 0 0 88 0.2 0 0 +1951200.0 31.1 7.4 23 95505 1356 1412 409 1051 822 261 128027 60168 31946 12779 210 6.2 3 3 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +1954800.0 31 8 24 96096 1275 1412 410 975 895 165 121570 58351 20670 8572 210 7.7 3 3 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +1958400.0 31 8 24 96096 1124 1412 410 835 835 169 101994 56041 20736 8601 210 8.2 3 3 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +1962000.0 29.9 7.8 25 95419 915 1412 403 642 770 142 77167 50684 17183 6938 210 8.2 3 3 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +1965600.0 29 8 27 96063 662 1412 382 419 611 133 48513 39084 15400 5680 210 8.2 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +1969200.0 27 8 30 96029 380 1412 372 184 327 96 20552 15045 10745 3432 200 6.7 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +1972800.0 25 7.2 32 95535 91 1412 361 21 0 21 2021 0 2034 692 190 5.7 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +1976400.0 23 6 33 95959 0 463 350 0 0 0 0 0 0 0 160 5.1 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +1980000.0 23 6 33 95959 0 0 350 0 0 0 0 0 0 0 140 2.6 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +1983600.0 21 6.2 38 95683 0 0 341 0 0 0 0 0 0 0 130 3.1 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +1987200.0 20 6 40 95906 0 0 343 0 0 0 0 0 0 0 140 2.1 1 1 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +1990800.0 19 7 46 95888 0 0 344 0 0 0 0 0 0 0 155 1 2 2 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +1994400.0 18 8 52 95638 0 0 330 0 0 0 0 0 0 0 160 1 0 0 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +1998000.0 16 8 59 95834 0 0 337 0 0 0 0 0 0 0 292 1.5 4 4 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2001600.0 16 9 63 95834 0 0 341 0 0 0 0 0 0 0 110 2.1 5 5 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2005200.0 16.2 9.6 65 95625 0 0 323 0 0 0 0 0 0 0 200 0.5 0 0 9900 2000 9 999999999 24 0 0 88 0.2 0 0 +2008800.0 14 9 72 95797 0 0 334 0 0 0 0 0 0 0 118 1 6 6 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +2012400.0 16 9 63 95834 136 683 341 32 0 32 3107 0 3129 1056 360 0.5 5 5 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +2016000.0 17.5 9.9 61 95800 426 1411 329 219 303 127 24087 17094 14074 4369 30 1 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +2019600.0 21 9 46 95924 704 1411 356 455 642 135 53033 41193 15746 5921 261 0.5 2 2 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +2023200.0 24 8 36 95977 952 1411 358 684 812 136 82943 52522 16501 6748 211 1.5 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2026800.0 25.8 7 30 95804 1152 1411 365 873 809 211 105293 58082 25610 10440 150 2.1 0 0 9900 2000 9 999999999 18 0 0 88 0.2 0 0 +2030400.0 28 9 30 96046 1292 1411 379 1002 818 252 121259 59379 30657 12308 120 3.6 0 0 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2034000.0 30 10 29 96079 1361 1411 390 1065 822 272 129240 59740 33162 13219 140 3.6 0 0 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +2037600.0 30.2 8.6 26 95718 1354 1411 389 1062 821 272 128786 60480 33201 13221 210 6.2 0 0 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2041200.0 30 7 24 96079 1273 1411 386 988 817 249 119485 60191 30323 12173 210 6.7 0 0 9900 2000 9 999999999 18 0 0 88 0.2 0 0 +2044800.0 30 7 24 96079 1123 1411 386 846 866 155 104017 57339 19195 7998 210 7.7 0 0 9900 2000 9 999999999 18 0 0 88 0.2 0 0 +2048400.0 30 8.5 26 95667 914 1411 388 649 798 131 78412 51075 15896 6456 210 7.7 0 0 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2052000.0 28 10 32 96046 660 1411 380 417 588 141 47912 37889 16326 5965 210 8.7 0 0 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +2055600.0 26 10 37 96011 379 1411 370 183 322 96 20321 14407 10729 3425 200 7.2 0 0 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +2059200.0 24.8 9.6 38 95768 89 1411 363 20 0 20 1969 0 1982 676 190 6.2 0 0 9900 2000 9 999999999 24 0 0 88 0.2 0 0 +2062800.0 24 9 38 95977 0 452 359 0 0 0 0 0 0 0 180 4.6 0 0 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2066400.0 23 10 44 95959 0 0 362 0 0 0 0 0 0 0 150 2.1 1 1 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +2070000.0 21 10.5 51 95834 0 0 346 0 0 0 0 0 0 0 110 1 0 0 9900 2000 9 999999999 26 0 0 88 0.2 0 0 +2073600.0 20 10 53 95906 0 0 356 0 0 0 0 0 0 0 288 0 3 3 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +2077200.0 19 10 56 95888 0 0 351 0 0 0 0 0 0 0 260 1 3 3 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +2080800.0 17.9 10.5 62 95750 0 0 332 0 0 0 0 0 0 0 360 0.5 0 0 9900 2000 9 999999999 27 0 0 88 0.2 0 0 +2084400.0 16 10 68 95834 0 0 342 0 0 0 0 0 0 0 146 0 5 5 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +2088000.0 16 10 68 95834 0 0 342 0 0 0 0 0 0 0 124 0.5 5 5 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +2091600.0 14.8 9.8 72 95703 0 0 317 0 0 0 0 0 0 0 228 0 0 0 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +2095200.0 14 10 77 95797 0 0 339 0 0 0 0 0 0 0 80 1 7 7 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +2098800.0 15 10 72 95815 132 660 340 28 0 28 2695 0 2714 945 310 2.1 6 6 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +2102400.0 19 10.6 58 95742 422 1411 337 216 299 126 23730 16627 13929 4319 289 0 0 0 9900 2000 9 999999999 27 0 0 88 0.2 0 0 +2106000.0 23 10 44 95959 700 1411 362 452 643 132 52673 40649 15491 5830 306 1 1 1 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +2109600.0 26 11 39 96011 949 1411 378 678 810 133 82197 50724 16185 6632 225 0 1 1 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +2113200.0 27.6 10.4 34 95693 1149 1411 378 866 863 163 106359 55921 20046 8353 130 2.1 0 0 9900 2000 9 999999999 26 0 0 88 0.2 0 0 +2116800.0 30 10 29 96079 1289 1411 390 998 818 250 120833 58764 30414 12226 140 3.1 0 0 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +2120400.0 32 10 26 96113 1359 1411 400 1064 821 271 129044 59719 33119 13203 150 4.1 0 0 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +2124000.0 33.3 5 17 95579 1353 1411 400 1066 821 278 129306 62290 33864 13433 140 4.1 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2127600.0 35 5 16 96162 1272 1411 409 990 817 252 119701 61147 30667 12285 140 5.7 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2131200.0 35 6 17 96162 1122 1411 411 847 864 159 103944 57874 19565 8140 150 5.7 0 0 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +2134800.0 35.3 4.8 15 95431 913 1411 411 652 796 136 78630 52850 16507 6675 210 6.7 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2138400.0 34 8 20 96146 659 1411 408 417 562 154 47667 38195 17701 6358 220 7.2 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2142000.0 31 8 24 96096 377 1411 393 182 325 95 20299 14779 10647 3397 200 6.2 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2145600.0 28.7 7.4 26 95484 87 1411 380 20 0 20 1932 0 1945 663 180 5.7 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2149200.0 26 8 32 96011 0 440 367 0 0 0 0 0 0 0 120 3.6 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2152800.0 25 7 32 95994 0 0 361 0 0 0 0 0 0 0 140 4.1 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2156400.0 23.1 8.8 40 95568 0 0 354 0 0 0 0 0 0 0 110 2.1 0 0 9900 2000 9 999999999 22 0 0 88 0.2 0 0 +2160000.0 23 8 38 95959 0 0 353 0 0 0 0 0 0 0 96 1.5 0 0 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2163600.0 20 9 49 95906 0 0 351 0 0 0 0 0 0 0 10 1 2 2 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2167200.0 19.6 8.3 48 95573 0 0 337 0 0 0 0 0 0 0 130 1 0 0 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2170800.0 19 8 49 95888 0 0 345 0 0 0 0 0 0 0 122 0 2 2 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2174400.0 17 9 59 95852 0 0 343 0 0 0 0 0 0 0 63 1 4 4 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2178000.0 15 8.3 64 95536 0 0 317 0 0 0 0 0 0 0 360 0.5 0 0 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2181600.0 16 9 63 95834 0 0 341 0 0 0 0 0 0 0 179 0.5 5 5 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +2185200.0 16 9 63 95834 127 636 341 29 0 29 2766 0 2785 952 25 0.5 5 5 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +2188800.0 21 8 43 95924 418 1411 350 213 299 125 23496 16880 13785 4264 137 0 1 1 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +2192400.0 24 9 38 95977 697 1411 359 450 642 133 52409 40932 15524 5828 43 0.5 0 0 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2196000.0 27 9 32 96029 945 1411 374 678 810 134 82114 51801 16292 6662 48 1 0 0 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2199600.0 29 8 27 96063 1147 1411 382 867 809 209 104549 57461 25288 10323 160 2.6 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2203200.0 30 9 27 96079 1287 1411 389 998 817 251 120757 59303 30515 12256 140 5.1 0 0 9900 2000 9 999999999 22 0 0 88 0.2 0 0 +2206800.0 32 9 24 96113 1357 1411 399 1063 821 272 129023 60269 33246 13241 140 5.1 0 0 9900 2000 9 999999999 22 0 0 88 0.2 0 0 +2210400.0 33 9 23 96129 1351 1411 404 1058 821 271 128360 60200 33032 13164 150 5.7 0 0 9900 2000 9 999999999 22 0 0 88 0.2 0 0 +2214000.0 34 9 22 96146 1271 1411 410 982 817 246 118837 59071 29898 12032 160 6.2 0 0 9900 2000 9 999999999 22 0 0 88 0.2 0 0 +2217600.0 33 8 21 96129 1121 1411 403 843 864 155 103523 56753 19178 7993 200 6.7 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2221200.0 32 11 28 96113 911 1411 402 644 797 129 77823 49565 15595 6345 210 7.2 0 0 9900 2000 9 999999999 27 0 0 88 0.2 0 0 +2224800.0 30 10 29 96079 657 1411 390 414 586 141 47629 37733 16249 5931 200 6.7 0 0 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +2228400.0 28 11 35 96046 375 1411 381 180 303 99 19933 13604 11030 3480 200 6.7 0 0 9900 2000 9 999999999 27 0 0 88 0.2 0 0 +2232000.0 26 11 39 96011 85 1411 378 19 0 19 1871 0 1884 644 140 4.1 1 1 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +2235600.0 24 10 41 95977 0 428 367 0 0 0 0 0 0 0 140 4.1 1 1 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +2239200.0 23 12 50 95959 0 0 369 0 0 0 0 0 0 0 140 4.1 2 2 9900 2000 9 999999999 31 0 0 88 0.2 0 0 +2242800.0 21 12 56 95924 0 0 363 0 0 0 0 0 0 0 130 3.6 3 3 9900 2000 9 999999999 31 0 0 88 0.2 0 0 +2246400.0 20 11 56 95906 0 0 357 0 0 0 0 0 0 0 150 2.6 3 3 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +2250000.0 19 11 60 95888 0 0 355 0 0 0 0 0 0 0 229 1.5 4 4 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +2253600.0 18 12 68 95870 0 0 354 0 0 0 0 0 0 0 9 1.5 5 5 9900 2000 9 999999999 31 0 0 88 0.2 0 0 +2257200.0 18 12 68 95870 0 0 354 0 0 0 0 0 0 0 39 1 5 5 9900 2000 9 999999999 31 0 0 88 0.2 0 0 +2260800.0 17 12 72 95852 0 0 352 0 0 0 0 0 0 0 314 1.5 6 6 9900 2000 9 999999999 31 0 0 88 0.2 0 0 +2264400.0 15 11 77 95815 0 0 345 0 0 0 0 0 0 0 267 1.5 7 7 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +2268000.0 15 12 82 95815 0 0 352 0 0 0 0 0 0 0 197 1 8 8 9900 2000 9 999999999 31 0 0 88 0.2 0 0 +2271600.0 16 12 77 95834 123 613 351 23 0 23 2188 0 2203 793 17 1.5 7 7 9900 2000 9 999999999 31 0 0 88 0.2 0 0 +2275200.0 18 12 68 95870 413 1410 375 108 17 103 12029 830 11502 3747 150 2.6 9 9 9900 2000 9 999999999 31 0 0 88 0.2 0 0 +2278800.0 21 13 60 95924 693 1410 370 413 408 212 46184 30604 23865 8154 150 2.1 5 5 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +2282400.0 24 12 47 95977 942 1410 384 625 639 197 73347 44867 23253 9172 70 1.5 5 5 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +2286000.0 26 12 42 96011 1144 1410 394 799 647 274 94173 48892 32447 12807 140 2.1 5 5 8000 2000 9 999999999 30 0 0 88 0.2 0 0 +2289600.0 28 11 35 96046 1285 1410 381 992 886 184 122769 57707 22879 9444 150 3.6 0 0 9900 2000 9 999999999 27 0 0 88 0.2 0 0 +2293200.0 30 12 33 96079 1355 1410 393 1057 821 267 128167 58344 32560 13019 150 5.1 0 0 9900 2000 9 999999999 30 0 0 88 0.2 0 0 +2296800.0 31 12 31 96096 1349 1410 398 1052 821 265 127539 58279 32359 12946 160 7.2 0 0 9900 2000 9 999999999 30 0 0 88 0.2 0 0 +2300400.0 31 13 33 96096 1269 1410 399 975 816 239 117881 56462 29080 11763 160 6.7 0 0 9900 2000 9 999999999 33 0 0 88 0.2 0 0 +2304000.0 32 13 31 96113 1119 1410 404 835 856 155 102292 53512 19050 7962 170 6.7 0 0 9900 2000 9 999999999 33 0 0 88 0.2 0 0 +2307600.0 30 13 35 96079 910 1410 394 641 796 127 77378 48193 15351 6257 210 7.7 0 0 9900 2000 9 999999999 33 0 0 88 0.2 0 0 +2311200.0 29 13 37 96063 655 1410 389 411 571 145 47010 36052 16658 6056 210 6.7 0 0 9900 2000 9 999999999 34 0 0 88 0.2 0 0 +2314800.0 27 14 45 96029 373 1410 392 177 295 99 19593 12565 11007 3471 150 6.2 2 2 9900 2000 9 999999999 37 0 0 88 0.2 0 0 +2318400.0 24 14 54 95977 82 1410 386 17 0 17 1682 0 1693 592 140 4.6 5 5 6000 2000 9 999999999 37 0 0 88 0.2 0 0 +2322000.0 22 14 60 95942 0 415 373 0 0 0 0 0 0 0 192 4.1 4 4 7950 2000 9 999999999 37 0 0 88 0.2 0 0 +2325600.0 20 14 68 95906 0 0 366 0 0 0 0 0 0 0 130 3.6 5 5 9900 2000 9 999999999 38 0 0 88 0.2 0 0 +2329200.0 19 14 73 95888 0 0 364 0 0 0 0 0 0 0 160 4.1 6 6 9900 2000 9 999999999 38 0 0 88 0.2 0 0 +2332800.0 17 13 77 95852 0 0 357 0 0 0 0 0 0 0 170 3.6 7 7 9900 2000 9 999999999 34 0 0 88 0.2 0 0 +2336400.0 16 13 82 95834 0 0 358 0 0 0 0 0 0 0 150 2.6 8 8 9900 2000 9 999999999 34 0 0 88 0.2 0 0 +2340000.0 15 13 88 95815 0 0 335 0 0 0 0 0 0 0 150 3.1 3 3 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +2343600.0 15 13 88 95815 0 0 335 0 0 0 0 0 0 0 160 2.6 3 3 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +2347200.0 14 13 94 95797 0 0 356 0 0 0 0 0 0 0 160 2.6 9 9 600 60 0 999999999 34 0 0 88 0.2 0 0 +2350800.0 14 13 94 95797 0 0 366 0 0 0 0 0 0 0 150 2.6 10 10 600 30 0 999999999 34 0 0 88 0.2 0 0 +2354400.0 14 13 94 95797 0 0 366 0 0 0 0 0 0 0 140 2.6 10 10 800 30 0 999999999 34 0 0 88 0.2 0 0 +2358000.0 14 13 94 95797 118 590 366 9 0 9 825 0 831 339 130 2.6 10 10 600 30 0 999999999 34 0 0 88 0.2 0 0 +2361600.0 14 14 100 95797 409 1410 367 65 0 65 6385 0 6435 2626 140 2.1 10 10 1200 90 0 999999999 38 0 0 88 0.2 0 0 +2365200.0 15 14 94 95815 689 1410 372 139 0 139 14007 0 14129 5999 150 2.6 10 10 3000 90 0 999999999 38 0 0 88 0.2 0 0 +2368800.0 16 14 88 95834 939 1410 347 620 556 249 71318 41934 28857 10937 150 3.6 5 5 4000 2000 0 999999999 38 0 0 88 0.2 0 0 +2372400.0 19 15 78 95888 1141 1410 357 841 840 160 102994 51540 19722 8246 150 4.1 3 3 6000 2000 0 999999999 42 0 0 88 0.2 0 0 +2376000.0 22 14 60 95942 1282 1410 373 953 820 206 116623 53356 25371 10410 140 4.6 4 4 9900 2000 0 999999999 37 0 0 88 0.2 0 0 +2379600.0 23 14 57 95959 1353 1410 378 1029 856 206 127034 54982 25589 10490 150 6.2 4 4 9900 2000 0 999999999 37 0 0 88 0.2 0 0 +2383200.0 24 15 57 95977 1348 1410 385 1022 861 198 126467 54043 24643 10136 150 7.2 4 4 9900 2000 0 999999999 41 0 0 88 0.2 0 0 +2386800.0 26 15 51 96011 1267 1410 392 963 890 162 119737 53654 20253 8439 160 7.2 3 3 9900 2000 0 999999999 41 0 0 88 0.2 0 0 +2390400.0 26 15 51 96011 1117 1410 392 825 809 183 99650 51758 22200 9187 150 6.7 3 3 9900 2000 0 999999999 41 0 0 88 0.2 0 0 +2394000.0 27.4 14.5 45 95803 908 1410 405 593 594 211 68828 41881 24548 9485 150 5.7 5 5 9900 2000 0 999999999 39 0 0 88 0.2 0 0 +2397600.0 27 15 48 96029 653 1410 404 380 490 152 43205 30806 17420 6278 150 6.7 5 5 9900 2000 0 999999999 41 0 0 88 0.2 0 0 +2401200.0 25 15 54 95994 371 1410 387 174 322 89 19336 12340 9940 3217 160 6.2 3 3 9900 2000 0 999999999 41 0 0 88 0.2 0 0 +2404800.0 23 15 61 95959 80 1410 383 17 0 17 1630 0 1642 575 150 5.1 5 5 8000 2000 9 999999999 41 0 0 88 0.2 0 0 +2408400.0 22 15 64 95942 0 401 377 0 0 0 0 0 0 0 140 4.1 5 5 7000 2000 9 999999999 41 0 0 88 0.2 0 0 +2412000.0 20 15 73 95906 0 0 367 0 0 0 0 0 0 0 140 3.6 5 5 7000 2000 9 999999999 42 0 0 88 0.2 0 0 +2415600.0 19.5 14.5 73 95897 0 0 367 0 0 0 0 0 0 0 143 2 6 6 7000 2000 9 999999999 40 0 0 88 0.2 0 0 +2419200.0 19 14 73 95888 0 0 356 0 0 0 0 0 0 0 18 0.5 3 3 7000 2000 9 999999999 38 0 0 88 0.2 0 0 +2422800.0 17 13 77 95852 0 0 345 0 0 0 0 0 0 0 305 0.5 3 3 6000 2000 9 999999999 34 0 0 88 0.2 0 0 +2426400.0 15.9 12.7 81 95695 0 0 325 0 0 0 0 0 0 0 350 0.5 0 0 5000 2000 9 999999999 33 0 0 88 0.2 0 0 +2430000.0 15 14 94 95815 0 0 323 0 0 0 0 0 0 0 53 0 0 0 5000 2000 9 999999999 38 0 0 88 0.2 0 0 +2433600.0 16 13 82 95834 0 0 340 0 0 0 0 0 0 0 170 1.5 3 3 5000 2000 9 999999999 34 0 0 88 0.2 0 0 +2437200.0 16.1 13.4 84 95680 0 0 346 0 0 0 0 0 0 0 140 1 5 5 5000 2000 9 999999999 36 0 0 88 0.2 0 0 +2440800.0 16 14 88 95834 0 0 367 0 0 0 0 0 0 0 170 1 9 9 5000 7500 9 999999999 38 0 0 88 0.2 0 0 +2444400.0 16 13 82 95834 114 567 366 13 0 13 1300 0 1309 508 139 1 9 9 5000 7500 9 999999999 34 0 0 88 0.2 0 0 +2448000.0 18 14 77 95870 405 1410 377 104 3 104 11595 130 11550 3730 19 1.5 9 9 5000 7500 9 999999999 38 0 0 88 0.2 0 0 +2451600.0 20 15 73 95906 685 1410 389 225 32 209 25134 2360 23501 8030 170 2.1 9 9 5000 7500 9 999999999 42 0 0 88 0.2 0 0 +2455200.0 22 15 64 95942 936 1410 377 616 553 249 70827 41262 28782 10906 150 3.6 5 5 5000 2000 9 999999999 41 0 0 88 0.2 0 0 +2458800.0 23 15 61 95959 1138 1410 383 791 572 328 91603 45283 38222 14581 160 4.6 5 5 5000 2000 9 999999999 41 0 0 88 0.2 0 0 +2462400.0 26 15 51 96011 1280 1410 422 507 70 443 58435 6082 51441 18503 160 5.1 9 9 8000 7500 9 999999999 41 0 0 88 0.2 0 0 +2466000.0 27 14 45 96029 1351 1410 392 1048 605 467 121532 52982 54604 19525 160 5.1 2 2 9900 7500 9 999999999 37 0 0 88 0.2 0 0 +2469600.0 28 14 42 96046 1346 1410 392 1045 820 261 126647 56726 31771 12752 150 4.6 1 1 9900 7500 9 999999999 37 0 0 88 0.2 0 0 +2473200.0 29 13 37 96063 1266 1410 389 972 816 238 117501 56386 28966 11721 140 5.1 0 0 9900 7500 9 999999999 34 0 0 88 0.2 0 0 +2476800.0 29 14 40 96063 1116 1410 397 830 855 153 101744 52648 18813 7871 200 5.7 1 1 9900 7500 9 999999999 37 0 0 88 0.2 0 0 +2480400.0 29 14 40 96063 906 1410 397 637 795 125 76883 47359 15133 6172 200 5.7 1 1 9900 7500 9 999999999 37 0 0 88 0.2 0 0 +2484000.0 27 14 45 96029 651 1410 392 406 563 146 46424 35189 16733 6068 210 6.7 2 2 9900 7500 9 999999999 37 0 0 88 0.2 0 0 +2487600.0 26 15 51 96011 368 1410 392 173 284 99 19085 11739 10923 3436 190 4.6 3 3 9900 7500 9 999999999 41 0 0 88 0.2 0 0 +2491200.0 24.7 14.7 54 95549 77 1410 394 15 0 15 1478 0 1488 529 160 4.6 6 6 9900 7500 9 999999999 40 0 0 88 0.2 0 0 +2494800.0 22 15 64 95942 0 386 377 0 0 0 0 0 0 0 150 3.6 5 5 9900 7500 9 999999999 41 0 0 88 0.2 0 0 +2498400.0 21 15 69 95924 0 0 367 0 0 0 0 0 0 0 140 3.1 3 3 9900 2000 9 999999999 41 0 0 88 0.2 0 0 +2502000.0 20 14 68 95906 0 0 360 0 0 0 0 0 0 0 140 3.1 3 3 9900 2000 9 999999999 38 0 0 88 0.2 0 0 +2505600.0 19 14 73 95888 0 0 356 0 0 0 0 0 0 0 160 2.6 3 3 9900 2000 9 999999999 38 0 0 88 0.2 0 0 +2509200.0 18 14 77 95870 0 0 356 0 0 0 0 0 0 0 170 2.6 5 5 9900 2000 9 999999999 38 0 0 88 0.2 0 0 +2512800.0 18 14 77 95870 0 0 356 0 0 0 0 0 0 0 140 2.1 5 5 8000 2000 9 999999999 38 0 0 88 0.2 0 0 +2516400.0 17 14 82 95852 0 0 351 0 0 0 0 0 0 0 160 2.6 5 5 8000 2000 9 999999999 38 0 0 88 0.2 0 0 +2520000.0 17 14 82 95852 0 0 351 0 0 0 0 0 0 0 150 2.1 5 5 8000 2000 9 999999999 38 0 0 88 0.2 0 0 +2523600.0 17 14 82 95852 0 0 351 0 0 0 0 0 0 0 37 0 5 5 8000 2000 9 999999999 38 0 0 88 0.2 0 0 +2527200.0 17 14 82 95852 0 0 351 0 0 0 0 0 0 0 32 1.5 5 5 8000 2000 9 999999999 38 0 0 88 0.2 0 0 +2530800.0 17 14 82 95852 109 543 351 23 0 23 2246 0 2261 786 140 2.1 5 5 6000 2000 9 999999999 38 0 0 88 0.2 0 0 +2534400.0 18 14 77 95870 401 1409 351 196 361 93 21983 15414 10504 3460 140 2.1 3 3 8000 2000 9 999999999 38 0 0 88 0.2 0 0 +2538000.0 21 14 64 95924 682 1409 371 410 532 152 46941 33925 17465 6401 170 2.1 5 5 9900 2000 9 999999999 38 0 0 88 0.2 0 0 +2541600.0 23 15 61 95959 932 1409 380 634 697 173 74989 45203 20487 8205 140 2.1 4 4 9900 2000 9 999999999 41 0 0 88 0.2 0 0 +2545200.0 24 15 57 95977 1135 1409 385 829 817 170 100978 50993 20831 8676 150 3.1 4 4 9900 2000 9 999999999 41 0 0 88 0.2 0 0 +2548800.0 26 15 51 96011 1277 1409 398 911 572 393 106064 46825 46010 17119 170 4.1 5 5 9900 2000 9 999999999 41 0 0 88 0.2 0 0 +2552400.0 27 14 45 96029 1348 1409 426 541 118 427 63131 9937 50259 18441 170 5.1 9 9 9900 7500 9 999999999 37 0 0 88 0.2 0 0 +2556000.0 28 13.6 41 95557 1344 1409 407 971 556 441 113107 47610 51677 18785 200 5.1 5 5 9900 7500 9 999999999 36 0 0 88 0.2 0 0 +2559600.0 29 14 40 96063 1264 1409 413 901 675 295 107137 49826 35241 13876 200 5.1 5 5 9900 7500 9 999999999 37 0 0 88 0.2 0 0 +2563200.0 30 14 38 96079 1114 1409 412 818 832 160 99890 51869 19608 8182 200 5.7 3 3 9900 2000 9 999999999 37 0 0 88 0.2 0 0 +2566800.0 29 13 37 96063 904 1409 389 636 794 126 76792 48005 15234 6204 210 6.2 0 0 9900 2000 9 999999999 34 0 0 88 0.2 0 0 +2570400.0 28 13 40 96046 649 1409 391 406 567 144 46399 35677 16564 6007 200 6.2 1 1 9900 2000 9 999999999 34 0 0 88 0.2 0 0 +2574000.0 27 13 42 96029 366 1409 386 173 291 97 19112 12301 10794 3394 200 5.1 1 1 9900 2000 9 999999999 34 0 0 88 0.2 0 0 +2577600.0 24.4 13.3 50 95496 74 1409 388 16 0 16 1519 0 1530 536 200 5.7 5 5 9900 2000 9 999999999 35 0 0 88 0.2 0 0 +2581200.0 22 13 57 95942 0 371 372 0 0 0 0 0 0 0 140 3.1 4 4 9900 2000 9 999999999 34 0 0 88 0.2 0 0 +2584800.0 21 13 60 95924 0 0 367 0 0 0 0 0 0 0 140 3.6 4 4 9900 2000 9 999999999 34 0 0 88 0.2 0 0 +2588400.0 20 13.2 65 95608 0 0 360 0 0 0 0 0 0 0 140 2.6 3 3 9900 2000 9 999999999 35 0 0 88 0.2 0 0 +2592000.0 19 13 68 95888 0 0 360 0 0 0 0 0 0 0 150 3.6 5 5 9900 2000 9 999999999 34 0 0 88 0.2 0 0 +2595600.0 18 13 73 95870 0 0 358 0 0 0 0 0 0 0 160 2.1 6 6 9900 2000 9 999999999 34 0 0 88 0.2 0 0 +2599200.0 17.2 12.7 75 95605 0 0 337 0 0 0 0 0 0 0 160 3.1 1 1 9900 2000 9 999999999 33 0 0 88 0.2 0 0 +2602800.0 16 13 82 95834 0 0 358 0 0 0 0 0 0 0 170 2.1 8 8 9900 2000 9 999999999 34 0 0 88 0.2 0 0 +2606400.0 16 12 77 95834 0 0 351 0 0 0 0 0 0 0 140 2.1 7 7 9900 2000 9 999999999 31 0 0 88 0.2 0 0 +2610000.0 15 12 82 95815 0 0 352 0 0 0 0 0 0 0 183 1.5 8 8 9900 2000 9 999999999 31 0 0 88 0.2 0 0 +2613600.0 15 12 82 95815 0 0 320 0 0 0 0 0 0 0 170 2.6 0 0 3000 2000 9 999999999 31 0 0 88 0.2 0 0 +2617200.0 13 12 94 95778 105 520 350 12 0 12 1197 0 1206 467 150 2.6 9 9 500 60 0 999999999 31 0 0 88 0.2 0 0 +2620800.0 14 13 94 95797 397 1409 356 101 9 99 11275 390 11043 3576 150 3.1 9 9 1800 60 0 999999999 34 0 0 88 0.2 0 0 +2624400.0 16 14 88 95834 678 1409 327 430 499 190 48384 35156 21433 7480 170 3.6 0 0 5000 2000 0 999999999 38 0 0 88 0.2 0 0 +2628000.0 19 14 73 95888 929 1409 364 566 440 275 64516 34792 31566 11647 140 3.6 6 6 7000 2000 0 999999999 38 0 0 88 0.2 0 0 +2631600.0 21 14 64 95924 1132 1409 371 799 683 249 94565 48967 29646 11873 150 5.7 5 5 8000 2000 0 999999999 38 0 0 88 0.2 0 0 +2635200.0 22 14 60 95942 1275 1409 373 946 787 233 114645 53284 28411 11531 150 6.7 4 4 8000 2000 0 999999999 37 0 0 88 0.2 0 0 +2638800.0 24 14 54 95977 1346 1409 381 1032 878 192 127993 55312 23941 9860 160 7.2 3 3 8000 2000 0 999999999 37 0 0 88 0.2 0 0 +2642400.0 25 14 50 95994 1342 1409 386 1028 878 191 127497 55253 23758 9790 150 6.2 3 3 8000 2000 0 999999999 37 0 0 88 0.2 0 0 +2646000.0 26 15 51 96011 1262 1409 392 953 876 167 118110 53246 20752 8638 160 6.2 3 3 8000 2000 0 999999999 41 0 0 88 0.2 0 0 +2649600.0 26 15 51 96011 1112 1409 392 815 835 155 99650 50963 18995 7946 150 6.7 3 3 8000 2000 0 999999999 41 0 0 88 0.2 0 0 +2653200.0 27 14 45 96029 902 1409 396 625 763 136 74941 46556 16343 6624 150 6.2 3 3 8000 2000 0 999999999 37 0 0 88 0.2 0 0 +2656800.0 26 14 48 96011 647 1409 391 398 535 152 45269 34027 17333 6225 160 6.7 3 3 8000 2000 0 999999999 37 0 0 88 0.2 0 0 +2660400.0 21.9 14.9 64 95939 363 1409 384 168 274 98 18576 11252 10827 3393 177 4.7 3 3 8950 2000 9 999999999 39 0 0 88 0.2 0 0 +2664000.0 20.2 14.8 71 95910 71 1409 380 16 0 16 1502 0 1513 528 155 4.2 4 4 9900 2000 9 999999999 41 0 0 88 0.2 0 0 +2667600.0 18.8 14.5 76 95884 0 356 376 0 0 0 0 0 0 0 157 3.5 6 6 9900 2000 9 999999999 41 0 0 88 0.2 0 0 +2671200.0 18.5 12 66 95879 0 0 370 0 0 0 0 0 0 0 152 3 7 7 9900 2000 9 999999999 42 0 0 88 0.2 0 0 +2674800.0 18.4 9.9 58 95826 0 0 364 0 0 0 0 0 0 0 157 2.6 7 7 9900 2000 9 999999999 38 0 0 88 0.2 0 0 +2678400.0 18.4 8.1 51 95826 0 0 364 0 0 0 0 0 0 0 160 2.2 8 8 9900 2000 9 999999999 38 0 0 88 0.2 0 0 +2682000.0 18.4 6.3 45 95826 0 0 335 0 0 0 0 0 0 0 160 2.2 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +2685600.0 17.5 6.8 50 95777 0 0 330 0 0 0 0 0 0 0 157 2.2 0 0 8000 2000 9 999999999 18 0 0 88 0.2 0 0 +2689200.0 16.9 7 52 95817 0 0 339 0 0 0 0 0 0 0 128 1.8 2 2 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +2692800.0 15.9 6.8 55 95799 0 0 338 0 0 0 0 0 0 0 180 1.8 3 3 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +2696400.0 16.1 6.8 54 95810 0 0 321 0 0 0 0 0 0 0 184 1.4 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +2700000.0 17.5 6.8 49 95867 0 0 333 0 0 0 0 0 0 0 183 1.1 3 3 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +2703600.0 14 6 59 95797 100 497 326 23 0 23 2180 0 2194 749 360 2.1 4 4 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +2707200.0 18 7.3 50 95894 393 1408 329 195 349 98 21784 16604 10954 3531 175 1 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +2710800.0 22 7 38 95942 674 1408 347 432 626 132 50193 40413 15435 5732 156 1 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +2714400.0 25 6 30 95994 925 1408 360 663 803 135 80206 52691 16335 6639 200 1.5 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +2718000.0 27.1 5.9 26 95883 1129 1408 370 854 806 207 102948 58109 25024 10206 180 2.6 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +2721600.0 29 7 25 96063 1272 1408 381 987 815 250 119431 60081 30359 12186 150 4.6 0 0 8000 2000 9 999999999 18 0 0 88 0.2 0 0 +2725200.0 31 5 19 96096 1344 1408 389 1058 819 275 128296 62063 33554 13323 160 6.2 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +2728800.0 32.2 4.4 17 95751 1339 1408 394 1055 819 275 127903 62282 33505 13301 190 5.7 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +2732400.0 32 5 18 96113 1260 1408 394 978 815 249 118314 60861 30238 12130 220 7.7 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +2736000.0 32 5 18 96113 1110 1408 394 837 857 160 102566 58062 19747 8201 210 8.2 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +2739600.0 31.1 6 21 95619 900 1408 390 639 794 131 77172 51837 15920 6437 210 8.2 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +2743200.0 30 7 24 96079 644 1408 386 406 557 151 46368 37715 17283 6183 210 8.8 0 0 8000 2000 9 999999999 18 0 0 88 0.2 0 0 +2746800.0 28 7 26 96046 360 1408 376 171 310 92 19022 13514 10227 3237 210 7.7 0 0 8000 2000 9 999999999 18 0 0 88 0.2 0 0 +2750400.0 25.8 8.8 34 95653 68 1408 367 16 0 16 1512 0 1522 524 210 7.2 0 0 8000 2000 9 999999999 22 0 0 88 0.2 0 0 +2754000.0 25 7 32 95994 0 339 361 0 0 0 0 0 0 0 180 5.7 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +2757600.0 24 9 38 95977 0 0 359 0 0 0 0 0 0 0 130 2.6 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +2761200.0 22.1 9.3 44 95683 0 0 350 0 0 0 0 0 0 0 150 2.6 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +2764800.0 21 10 49 95924 0 0 357 0 0 0 0 0 0 0 160 2.6 2 2 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +2768400.0 20 9 49 95906 0 0 351 0 0 0 0 0 0 0 160 3.1 2 2 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +2772000.0 19.6 9.3 51 95639 0 0 338 0 0 0 0 0 0 0 180 1 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +2775600.0 18 10 59 95870 0 0 349 0 0 0 0 0 0 0 170 3.1 4 4 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +2779200.0 17 10 63 95852 0 0 347 0 0 0 0 0 0 0 160 2.1 5 5 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +2782800.0 17.1 9.4 60 95641 0 0 327 0 0 0 0 0 0 0 194 0.5 0 0 8000 2000 9 999999999 24 0 0 88 0.2 0 0 +2786400.0 15 8 63 95815 0 0 316 0 0 0 0 0 0 0 10 1.5 0 0 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +2790000.0 15 9 67 95815 95 473 317 22 0 22 2132 0 2147 729 242 1 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +2793600.0 18.9 9.8 55 95806 388 1408 336 191 339 97 21302 15581 10895 3505 276 0.5 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +2797200.0 22 10 46 95942 670 1408 362 426 619 131 49418 38816 15241 5667 200 1.5 2 2 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +2800800.0 25 10 39 95994 922 1408 372 656 802 130 79358 50475 15798 6441 75 1 1 1 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +2804400.0 27.5 9.7 33 95852 1126 1408 377 847 860 157 103932 55820 19391 8087 137 1.5 0 0 8000 2000 9 999999999 24 0 0 88 0.2 0 0 +2808000.0 30 9 27 96079 1269 1408 389 982 815 246 118773 58953 29904 12034 170 5.1 0 0 8000 2000 9 999999999 22 0 0 88 0.2 0 0 +2811600.0 31 8 24 96096 1341 1408 393 1051 819 270 127465 60522 32897 13108 180 6.7 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +2815200.0 30.9 7.4 23 95729 1337 1408 391 1048 819 269 127097 60788 32855 13089 220 7.2 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +2818800.0 31 8 24 96096 1257 1408 393 972 814 244 117555 59326 29628 11927 220 7.7 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +2822400.0 31 8 24 96096 1107 1408 393 831 861 153 102073 56414 18855 7860 220 8.8 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +2826000.0 30.2 8.6 26 95689 897 1408 389 635 793 128 76639 50450 15536 6295 220 8.8 0 0 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +2829600.0 29 8 27 96063 642 1408 382 403 582 137 46330 37647 15874 5765 210 9.3 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +2833200.0 27 7 28 96029 358 1408 371 169 306 91 18780 13232 10159 3211 210 8.2 0 0 8000 2000 9 999999999 18 0 0 88 0.2 0 0 +2836800.0 24.6 5.9 30 95746 65 1408 358 15 0 15 1445 0 1455 501 200 8.8 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +2840400.0 24 6 31 95977 0 322 355 0 0 0 0 0 0 0 160 5.1 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +2844000.0 22 7 38 95942 0 0 347 0 0 0 0 0 0 0 150 4.6 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +2847600.0 20.6 8.1 45 95836 0 0 342 0 0 0 0 0 0 0 150 4.6 0 0 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +2851200.0 19 9 52 95888 0 0 350 0 0 0 0 0 0 0 160 4.1 3 3 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +2854800.0 19 8 49 95888 0 0 345 0 0 0 0 0 0 0 160 4.6 2 2 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +2858400.0 18.3 8.2 52 95776 0 0 331 0 0 0 0 0 0 0 160 3.6 0 0 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +2862000.0 16 9 63 95834 0 0 341 0 0 0 0 0 0 0 170 4.1 5 5 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +2865600.0 15 9 67 95815 0 0 336 0 0 0 0 0 0 0 170 3.1 5 5 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +2869200.0 15.5 9.5 67 95773 0 0 320 0 0 0 0 0 0 0 190 2.1 0 0 8000 2000 9 999999999 24 0 0 88 0.2 0 0 +2872800.0 14 9 72 95797 0 0 334 0 0 0 0 0 0 0 260 1.5 6 6 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +2876400.0 14 8 67 95797 91 450 330 19 0 19 1875 0 1888 656 350 1.5 5 5 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +2880000.0 17.3 9.3 59 95862 384 1408 328 188 335 96 20962 15304 10796 3465 150 2.1 0 0 8000 2000 9 999999999 24 0 0 88 0.2 0 0 +2883600.0 20 10 53 95906 667 1408 356 419 596 136 48411 37938 15796 5830 267 1 3 3 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +2887200.0 23 9 41 95959 919 1408 361 654 765 154 78085 50969 18453 7420 31 1 1 1 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +2890800.0 25.6 8.2 33 95772 1123 1408 366 846 863 156 103916 56605 19254 8027 273 1 0 0 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +2894400.0 28 9 30 96046 1267 1408 379 979 815 245 118455 58887 29795 11995 160 3.6 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +2898000.0 29 10 31 96063 1339 1408 385 1045 819 266 126781 59320 32406 12947 170 6.2 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +2901600.0 30.9 7.9 24 95663 1335 1408 392 1045 818 268 126736 60474 32674 13028 210 7.2 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +2905200.0 31 8 24 96096 1255 1408 393 970 814 243 117297 59273 29546 11897 210 8.2 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +2908800.0 30 8 25 96079 1105 1408 387 829 860 153 101797 56348 18810 7841 220 9.3 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +2912400.0 30.4 8.1 25 95598 895 1408 390 633 793 128 76419 50617 15537 6290 220 8.2 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +2916000.0 29 8 27 96063 639 1408 382 400 579 137 46040 37451 15852 5749 210 8.8 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +2919600.0 27 8 30 96029 355 1408 372 166 301 90 18489 12736 10097 3187 210 8.2 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +2923200.0 24.3 7.6 34 95646 61 1408 359 14 0 14 1365 0 1374 476 200 6.7 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +2926800.0 23 7 36 95959 0 305 352 0 0 0 0 0 0 0 150 4.1 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +2930400.0 21 6 38 95924 0 0 341 0 0 0 0 0 0 0 160 4.1 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +2934000.0 20.6 5.9 38 95694 0 0 346 0 0 0 0 0 0 0 150 3.1 1 1 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +2937600.0 20 5 37 95906 0 0 335 0 0 0 0 0 0 0 150 2.1 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +2941200.0 19 6 43 95888 0 0 338 0 0 0 0 0 0 0 160 3.1 1 1 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +2944800.0 16.6 6.6 52 95594 0 0 322 0 0 0 0 0 0 0 160 3.1 0 0 8000 2000 9 999999999 18 0 0 88 0.2 0 0 +2948400.0 16 7 55 95834 0 0 333 0 0 0 0 0 0 0 170 3.1 3 3 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +2952000.0 15 7 59 95815 0 0 331 0 0 0 0 0 0 0 170 2.6 4 4 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +2955600.0 15.8 7 56 95579 0 0 319 0 0 0 0 0 0 0 130 1.5 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +2959200.0 15 7 59 95815 0 0 331 0 0 0 0 0 0 0 260 1 4 4 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +2962800.0 14 7 63 95797 86 427 329 19 0 19 1843 0 1856 639 350 0.5 5 5 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +2966400.0 17.8 7.7 52 95710 380 1407 328 186 334 95 20709 15340 10665 3416 51 0 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +2970000.0 21 7 40 95924 663 1407 349 422 617 131 48985 39698 15304 5658 8 0.5 1 1 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +2973600.0 24 7 34 95977 915 1407 356 653 802 131 79011 51855 15874 6450 12 1 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +2977200.0 26.1 7.8 31 95677 1120 1407 368 844 805 202 101656 56948 24420 9983 180 3.1 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +2980800.0 28 8 28 96046 1264 1407 377 978 814 246 118332 59391 29892 12023 170 5.7 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +2984400.0 30 7 24 96079 1336 1407 386 1048 818 270 127083 60948 32912 13107 170 5.7 0 0 8000 2000 9 999999999 18 0 0 88 0.2 0 0 +2988000.0 30.9 5.1 20 95530 1332 1407 388 1047 818 272 126984 61822 33127 13171 170 5.7 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +2991600.0 31 6 21 96096 1253 1407 390 971 814 245 117384 60243 29829 11988 220 7.2 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +2995200.0 31 6 21 96096 1103 1407 390 829 860 155 101793 57370 19100 7947 210 7.2 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +2998800.0 30 7.2 24 95449 892 1407 386 632 793 128 76280 50992 15523 6279 210 8.2 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +3002400.0 28 7 26 96046 636 1407 376 399 551 149 45549 37172 17143 6112 210 8.2 0 0 8000 2000 9 999999999 18 0 0 88 0.2 0 0 +3006000.0 26 8 32 96011 351 1407 367 164 298 90 18260 12488 10008 3155 210 7.7 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +3009600.0 24.8 7.4 33 95503 58 1407 361 13 0 13 1290 0 1299 451 200 6.2 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +3013200.0 24 8 36 95977 0 287 358 0 0 0 0 0 0 0 150 3.1 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +3016800.0 22 8 41 95942 0 0 355 0 0 0 0 0 0 0 150 3.6 1 1 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +3020400.0 20.7 9.2 48 95602 0 0 343 0 0 0 0 0 0 0 150 3.6 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +3024000.0 20 9 49 95906 0 0 351 0 0 0 0 0 0 0 160 2.6 2 2 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +3027600.0 19 9 52 95888 0 0 350 0 0 0 0 0 0 0 150 2.1 3 3 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +3031200.0 18 9.6 58 95553 0 0 331 0 0 0 0 0 0 0 160 3.1 0 0 8000 2000 9 999999999 24 0 0 88 0.2 0 0 +3034800.0 17 10 63 95852 0 0 347 0 0 0 0 0 0 0 160 2.6 5 5 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +3038400.0 17 9 59 95852 0 0 343 0 0 0 0 0 0 0 160 2.1 4 4 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +3042000.0 16 8.9 63 95545 0 0 322 0 0 0 0 0 0 0 200 2.1 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +3045600.0 16 9 63 95834 0 0 341 0 0 0 0 0 0 0 251 1 5 5 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +3049200.0 16 9 63 95834 82 404 341 18 0 18 1740 0 1752 606 209 0 5 5 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +3052800.0 17 9.2 60 95809 376 1407 326 182 327 95 20281 14579 10588 3385 10 1.5 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +3056400.0 21 10 49 95924 659 1407 357 415 604 132 48039 37928 15326 5660 248 1 2 2 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +3060000.0 24 9 38 95977 912 1407 359 648 799 129 78342 50694 15693 6382 72 1 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +3063600.0 26.1 9.4 35 95772 1117 1407 370 839 859 155 102956 55777 19143 7984 190 5.1 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +3067200.0 27 9 32 96029 1261 1407 374 974 814 243 117826 58774 29603 11925 170 6.7 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +3070800.0 28 8 28 96046 1334 1407 377 1044 818 267 126586 60362 32615 13007 210 7.2 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +3074400.0 28.4 8.1 28 95725 1330 1407 379 1040 818 266 126136 60262 32457 12951 210 6.7 0 0 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +3078000.0 29 9 29 96063 1250 1407 384 964 813 240 116576 58616 29199 11777 210 7.2 0 0 8000 2000 9 999999999 22 0 0 88 0.2 0 0 +3081600.0 29 9 29 96063 1100 1407 384 823 857 152 101025 55662 18720 7806 220 7.7 0 0 8000 2000 9 999999999 22 0 0 88 0.2 0 0 +3085200.0 28.8 9.4 30 95571 889 1407 383 627 790 127 75681 49736 15332 6208 210 8.2 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +3088800.0 28 9 30 96046 633 1407 379 395 572 137 45346 36657 15842 5730 210 8.8 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +3092400.0 26 10 37 96011 348 1407 370 161 291 89 17911 11750 9944 3130 210 6.2 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +3096000.0 23.7 9.6 41 95626 54 1407 374 12 0 12 1188 0 1196 419 150 4.1 3 3 8000 2000 9 999999999 24 0 0 88 0.2 0 0 +3099600.0 22 11 50 95942 0 268 363 0 0 0 0 0 0 0 160 4.1 2 2 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +3103200.0 20 11 56 95906 0 0 357 0 0 0 0 0 0 0 160 4.1 3 3 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +3106800.0 19.1 10.8 59 95715 0 0 358 0 0 0 0 0 0 0 160 4.6 5 5 8000 2000 9 999999999 27 0 0 88 0.2 0 0 +3110400.0 18 11 64 95870 0 0 347 0 0 0 0 0 0 0 170 3.1 3 3 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +3114000.0 18 10 59 95870 0 0 349 0 0 0 0 0 0 0 180 3.6 4 4 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +3117600.0 17 10.1 64 95687 0 0 334 0 0 0 0 0 0 0 170 3.1 1 1 8000 2000 9 999999999 26 0 0 88 0.2 0 0 +3121200.0 16 10 68 95834 0 0 342 0 0 0 0 0 0 0 230 1.5 5 5 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +3124800.0 15 10 72 95815 0 0 340 0 0 0 0 0 0 0 170 1 6 6 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +3128400.0 14.5 9.5 72 95688 0 0 337 0 0 0 0 0 0 0 142 0.5 6 6 8000 7500 9 999999999 24 0 0 88 0.2 0 0 +3132000.0 15 10 72 95815 0 0 357 0 0 0 0 0 0 0 78 1 9 9 8000 6706 9 999999999 25 0 0 88 0.2 0 0 +3135600.0 15 10 72 95815 77 380 337 17 0 17 1604 0 1615 563 33 1 5 5 8000 7620 9 999999999 25 0 0 88 0.2 0 0 +3139200.0 15.9 10.1 68 95912 372 1406 345 156 197 104 17219 9204 11524 3576 290 1 6 6 8000 6000 9 999999999 26 0 0 88 0.2 0 0 +3142800.0 21 11 53 95924 655 1406 362 409 560 147 46805 36392 16951 6143 55 0.5 3 3 8000 6000 9 999999999 28 0 0 88 0.2 0 0 +3146400.0 24 11 44 95977 908 1406 368 642 765 147 76756 49458 17696 7130 104 1 1 1 8000 6000 9 999999999 28 0 0 88 0.2 0 0 +3150000.0 26.1 10.7 38 95961 1114 1406 371 834 856 155 102308 54894 19072 7959 150 2.6 0 0 8000 6000 9 999999999 27 0 0 88 0.2 0 0 +3153600.0 28 10 32 96046 1258 1406 380 970 884 178 120027 57831 22100 9141 160 5.7 0 0 8000 6000 9 999999999 25 0 0 88 0.2 0 0 +3157200.0 29 4 20 96063 1331 1406 400 975 728 285 117793 56219 34679 13695 150 5.7 5 5 8000 6096 9 999999999 14 0 0 88 0.2 0 0 +3160800.0 30.1 6.4 23 95887 1327 1406 409 968 741 269 117394 55376 32739 13040 160 6.2 5 5 8000 6000 9 999999999 17 0 0 88 0.2 0 0 +3164400.0 31 7 22 96096 1248 1406 415 898 706 271 107635 53693 32661 12966 220 6.2 5 5 8000 6096 9 999999999 18 0 0 88 0.2 0 0 +3168000.0 31 6 21 96096 1097 1406 390 825 822 182 99919 57357 22175 9120 220 5.1 0 0 8000 6096 9 999999999 17 0 0 88 0.2 0 0 +3171600.0 29.1 7.3 25 95699 887 1406 405 583 613 196 68082 45033 22967 8875 220 8.2 5 5 8000 6096 9 999999999 19 0 0 88 0.2 0 0 +3175200.0 28 7 26 96046 630 1406 398 366 466 157 41608 32105 17948 6310 220 8.2 5 5 8000 6096 9 999999999 18 0 0 88 0.2 0 0 +3178800.0 28 7 26 96046 345 1406 376 160 301 86 17788 12203 9586 3032 210 7.2 0 0 8000 6096 9 999999999 18 0 0 88 0.2 0 0 +3182400.0 26.1 6.6 29 95705 50 1406 382 12 0 12 1110 0 1117 393 210 3.6 3 3 8000 6096 9 999999999 18 0 0 88 0.2 0 0 +3186000.0 24 8 36 95977 0 249 358 0 0 0 0 0 0 0 150 3.6 0 0 8000 6096 9 999999999 20 0 0 88 0.2 0 0 +3189600.0 22 9 43 95942 0 0 364 0 0 0 0 0 0 0 160 3.6 3 3 8000 6096 9 999999999 23 0 0 88 0.2 0 0 +3193200.0 21.1 9.5 47 95770 0 0 361 0 0 0 0 0 0 0 160 2.6 3 3 8000 6096 9 999999999 24 0 0 88 0.2 0 0 +3196800.0 20 9 49 95906 0 0 355 0 0 0 0 0 0 0 170 2.6 3 3 8000 6096 9 999999999 23 0 0 88 0.2 0 0 +3200400.0 19 9 52 95888 0 0 350 0 0 0 0 0 0 0 160 2.6 3 3 8000 6096 9 999999999 23 0 0 88 0.2 0 0 +3204000.0 18.4 9.2 55 95750 0 0 333 0 0 0 0 0 0 0 160 2.1 0 0 8000 6096 9 999999999 23 0 0 88 0.2 0 0 +3207600.0 17 10 63 95852 0 0 347 0 0 0 0 0 0 0 160 2.1 5 5 8000 6096 9 999999999 25 0 0 88 0.2 0 0 +3211200.0 16 9 63 95834 0 0 341 0 0 0 0 0 0 0 191 0.5 5 5 8000 6096 9 999999999 23 0 0 88 0.2 0 0 +3214800.0 14.5 8.4 67 95792 0 0 314 0 0 0 0 0 0 0 210 0 0 0 8000 6096 9 999999999 22 0 0 88 0.2 0 0 +3218400.0 14 8 67 95797 0 0 325 0 0 0 0 0 0 0 20 1 3 3 8000 6096 9 999999999 21 0 0 88 0.2 0 0 +3222000.0 14 8 67 95797 73 357 330 16 0 16 1518 0 1528 533 350 1 5 5 9000 6096 9 999999999 21 0 0 88 0.2 0 0 +3225600.0 18.4 9.3 55 95958 367 1406 353 164 249 99 18148 11280 10980 3440 198 0 5 5 9000 6096 9 999999999 24 0 0 88 0.2 0 0 +3229200.0 22 10 46 95942 651 1406 366 406 561 145 46480 36552 16731 6062 166 1 3 3 9000 6096 9 999999999 25 0 0 88 0.2 0 0 +3232800.0 24 10 41 95977 905 1406 367 641 763 149 76528 49974 17860 7179 190 2.1 1 1 9000 6096 9 999999999 25 0 0 88 0.2 0 0 +3236400.0 26.9 8.6 32 95965 1111 1406 373 834 860 154 102440 56094 18940 7899 210 2.6 0 0 9000 6096 9 999999999 22 0 0 88 0.2 0 0 +3240000.0 29 10 31 96063 1255 1406 385 967 813 240 117002 58082 29236 11798 190 3.6 0 0 9000 6096 9 999999999 25 0 0 88 0.2 0 0 +3243600.0 30 7 24 96079 1328 1406 386 1041 817 268 126166 60788 32629 13006 210 5.7 0 0 9000 6096 9 999999999 18 0 0 88 0.2 0 0 +3247200.0 30.5 7 23 95874 1325 1406 389 1037 817 267 125757 60744 32497 12958 220 7.2 0 0 9000 6096 9 999999999 18 0 0 88 0.2 0 0 +3250800.0 30 10 29 96079 1245 1406 390 958 813 237 115815 57929 28852 11657 210 8.2 0 0 9000 6096 9 999999999 25 0 0 88 0.2 0 0 +3254400.0 29 10 31 96063 1095 1406 385 817 855 151 100219 54934 18579 7750 210 9.3 0 0 9000 6096 9 999999999 25 0 0 88 0.2 0 0 +3258000.0 29 10.4 31 95773 884 1406 385 621 756 145 74076 49046 17394 6964 200 8.8 0 0 9000 6096 9 999999999 26 0 0 88 0.2 0 0 +3261600.0 27 11 37 96029 627 1406 376 389 557 140 44439 35284 16081 5783 200 8.8 0 0 9000 6096 9 999999999 28 0 0 88 0.2 0 0 +3265200.0 25 11 41 95994 341 1406 373 156 269 91 17283 10720 10088 3136 210 8.2 1 1 9000 6096 9 999999999 28 0 0 88 0.2 0 0 +3268800.0 21.9 9.4 45 95888 46 1406 349 11 0 11 1035 0 1042 368 190 6.7 0 0 9000 6096 9 999999999 24 0 0 88 0.2 0 0 +3272400.0 22 9 43 95942 0 229 356 0 0 0 0 0 0 0 140 4.1 1 1 9000 6096 9 999999999 23 0 0 88 0.2 0 0 +3276000.0 20 9 49 95906 0 0 351 0 0 0 0 0 0 0 150 5.1 2 2 9000 6096 9 999999999 23 0 0 88 0.2 0 0 +3279600.0 18.7 9.4 55 96058 0 0 334 0 0 0 0 0 0 0 160 3.6 0 0 9000 6096 9 999999999 24 0 0 88 0.2 0 0 +3283200.0 18 10 59 95870 0 0 349 0 0 0 0 0 0 0 170 2.1 4 4 9000 6096 9 999999999 25 0 0 88 0.2 0 0 +3286800.0 17 10 63 95852 0 0 347 0 0 0 0 0 0 0 2 0.5 5 5 9000 6096 9 999999999 25 0 0 88 0.2 0 0 +3290400.0 16.8 10.1 65 95976 0 0 326 0 0 0 0 0 0 0 85 0 0 0 9000 6096 9 999999999 26 0 0 88 0.2 0 0 +3294000.0 17 10 63 95852 0 0 347 0 0 0 0 0 0 0 200 3.1 5 5 9000 6096 9 999999999 25 0 0 88 0.2 0 0 +3297600.0 16 10 68 95834 0 0 342 0 0 0 0 0 0 0 170 2.6 5 5 9000 6096 9 999999999 25 0 0 88 0.2 0 0 +3301200.0 14.7 10.6 76 95994 0 0 318 0 0 0 0 0 0 0 170 3.6 0 0 9000 6096 9 999999999 27 0 0 88 0.2 0 0 +3304800.0 14 11 82 95797 0 0 329 0 0 0 0 0 0 0 180 4.1 3 3 8000 6096 9 999999999 28 0 0 88 0.2 0 0 +3308400.0 14 12 88 95797 68 334 335 15 0 15 1413 0 1423 499 170 4.6 5 5 5000 4572 9 999999999 31 0 0 88 0.2 0 0 +3312000.0 14 11.7 86 96246 363 1405 354 89 0 89 8774 0 8842 3191 160 4.6 9 9 6000 90 9 999999999 30 0 0 88 0.2 0 0 +3315600.0 15 12 82 95815 647 1405 340 378 392 197 42169 28774 22105 7459 160 3.1 5 5 6000 90 9 999999999 31 0 0 88 0.2 0 0 +3319200.0 20 10 53 95906 901 1405 356 631 738 157 75000 49120 18728 7485 190 1 3 3 6000 90 9 999999999 25 0 0 88 0.2 0 0 +3322800.0 23 9.5 42 96135 1107 1405 361 829 856 154 101788 55456 18944 7901 200 2.1 1 1 6000 90 9 999999999 24 0 0 88 0.2 0 0 +3326400.0 25 9 36 95994 1252 1405 364 966 813 241 116829 58586 29289 11811 160 2.1 0 0 6000 90 9 999999999 23 0 0 88 0.2 0 0 +3330000.0 27 10 34 96029 1325 1405 375 1033 817 262 125255 59055 31934 12777 170 4.1 0 0 6000 90 9 999999999 25 0 0 88 0.2 0 0 +3333600.0 28.7 7.2 26 95967 1322 1405 380 1034 817 265 125395 60577 32347 12906 170 6.2 0 0 6000 90 9 999999999 19 0 0 88 0.2 0 0 +3337200.0 29 6 23 96063 1242 1405 380 961 812 242 116191 60004 29451 11851 210 6.7 0 0 6000 90 9 999999999 17 0 0 88 0.2 0 0 +3340800.0 30 5 21 96079 1092 1405 383 821 853 157 100536 57592 19324 8024 220 6.7 0 0 6000 90 9 999999999 15 0 0 88 0.2 0 0 +3344400.0 28.5 7.4 26 95803 881 1405 379 621 748 152 73920 50454 18112 7207 210 7.7 0 0 6000 90 9 999999999 19 0 0 88 0.2 0 0 +3348000.0 27 8 30 96029 623 1405 372 388 567 136 44470 36418 15650 5638 220 8.2 0 0 6000 90 9 999999999 20 0 0 88 0.2 0 0 +3351600.0 26 5 26 96011 337 1405 364 155 287 86 17257 11753 9635 3016 210 8.8 0 0 6000 90 9 999999999 15 0 0 88 0.2 0 0 +3355200.0 23.4 5.6 32 95801 42 1405 352 10 0 10 950 0 956 339 200 7.7 0 0 6000 90 9 999999999 16 0 0 88 0.2 0 0 +3358800.0 22 8 41 95942 0 209 355 0 0 0 0 0 0 0 190 6.7 1 1 6000 90 9 999999999 21 0 0 88 0.2 0 0 +3362400.0 21 9 46 95924 0 0 356 0 0 0 0 0 0 0 140 4.1 2 2 6000 90 9 999999999 23 0 0 88 0.2 0 0 +3366000.0 19.8 9.4 51 95832 0 0 339 0 0 0 0 0 0 0 160 2.1 0 0 6000 90 9 999999999 24 0 0 88 0.2 0 0 +3369600.0 19 9 52 95888 0 0 350 0 0 0 0 0 0 0 160 2.6 3 3 6000 90 9 999999999 23 0 0 88 0.2 0 0 +3373200.0 18 9 56 95870 0 0 345 0 0 0 0 0 0 0 160 3.1 3 3 6000 90 9 999999999 23 0 0 88 0.2 0 0 +3376800.0 16.8 8.9 60 95777 0 0 325 0 0 0 0 0 0 0 150 2.1 0 0 6000 90 9 999999999 23 0 0 88 0.2 0 0 +3380400.0 16 8 59 95834 0 0 337 0 0 0 0 0 0 0 150 2.1 4 4 6000 90 9 999999999 21 0 0 88 0.2 0 0 +3384000.0 16 9 63 95834 0 0 341 0 0 0 0 0 0 0 170 2.6 5 5 6000 90 9 999999999 23 0 0 88 0.2 0 0 +3387600.0 15.5 8.5 63 95763 0 0 319 0 0 0 0 0 0 0 160 2.1 0 0 6000 90 9 999999999 22 0 0 88 0.2 0 0 +3391200.0 15 8 63 95815 0 0 335 0 0 0 0 0 0 0 14 1 5 5 6000 90 9 999999999 21 0 0 88 0.2 0 0 +3394800.0 15 8 63 95815 64 312 335 14 0 14 1356 0 1365 477 149 0.5 5 5 6000 90 9 999999999 21 0 0 88 0.2 0 0 +3398400.0 16.2 8.6 61 95927 359 1405 328 170 308 91 18913 13147 10182 3227 213 1 1 1 6000 90 9 999999999 22 0 0 88 0.2 0 0 +3402000.0 20 9 49 95906 643 1405 355 399 577 135 46018 36774 15610 5699 279 0.5 3 3 6000 90 9 999999999 23 0 0 88 0.2 0 0 +3405600.0 22 9 43 95942 898 1405 370 591 583 218 68523 43943 25399 9696 180 2.1 5 5 6000 90 9 999999999 23 0 0 88 0.2 0 0 +3409200.0 24.6 8.4 36 95964 1104 1405 405 428 66 375 48981 5943 43277 15750 160 3.1 9 9 6000 5400 9 999999999 21 0 0 88 0.2 0 0 +3412800.0 24 9 38 95977 1249 1405 403 497 50 453 57243 4640 52474 18586 160 6.2 9 9 6000 5486 9 999999999 23 0 0 88 0.2 0 0 +3416400.0 26 8 32 96011 1322 1405 412 534 90 449 62094 8102 52646 18923 190 6.7 9 9 6000 5486 9 999999999 20 0 0 88 0.2 0 0 +3420000.0 24.4 7.4 34 95979 1319 1405 403 532 90 448 61960 8155 52500 18872 180 8.2 9 9 6000 5400 9 999999999 19 0 0 88 0.2 0 0 +3423600.0 23 8 38 95959 1239 1405 396 493 50 449 56770 4690 52008 18431 170 7.2 9 9 6000 5182 9 999999999 21 0 0 88 0.2 0 0 +3427200.0 23 8 38 95959 1089 1405 396 420 21 404 47762 1983 46200 16322 160 6.7 9 9 6000 4877 9 999999999 21 0 0 88 0.2 0 0 +3430800.0 23.2 8.5 39 96006 877 1405 398 319 17 308 35802 1496 34821 12052 150 5.1 9 9 6000 5100 9 999999999 22 0 0 88 0.2 0 0 +3434400.0 24 9 38 95977 620 1405 403 198 9 194 22062 640 21752 7190 150 5.1 9 9 6000 5182 9 999999999 23 0 0 88 0.2 0 0 +3438000.0 24 9 38 95977 334 1405 403 78 0 78 7711 0 7770 2805 160 4.1 9 9 6000 5182 9 999999999 23 0 0 88 0.2 0 0 +3441600.0 22.8 8.7 41 96027 38 1405 396 5 0 5 440 0 443 173 160 4.1 9 9 6000 5100 9 999999999 22 0 0 88 0.2 0 0 +3445200.0 22 9 43 95942 0 188 392 0 0 0 0 0 0 0 180 3.1 9 9 6000 5182 9 999999999 23 0 0 88 0.2 0 0 +3448800.0 21 9 46 95924 0 0 365 0 0 0 0 0 0 0 160 3.6 5 5 6000 5182 9 999999999 23 0 0 88 0.2 0 0 +3452400.0 19.3 9.5 53 96050 0 0 378 0 0 0 0 0 0 0 170 2.6 9 9 6000 5400 9 999999999 24 0 0 88 0.2 0 0 +3456000.0 18 9 56 95870 0 0 345 0 0 0 0 0 0 0 175 0.5 3 3 6000 5400 9 999999999 23 0 0 88 0.2 0 0 +3459600.0 18 9 56 95870 0 0 345 0 0 0 0 0 0 0 160 1 3 3 6000 5400 9 999999999 23 0 0 88 0.2 0 0 +3463200.0 17.8 8.4 54 95985 0 0 349 0 0 0 0 0 0 0 130 1.5 5 5 6000 6000 9 999999999 22 0 0 88 0.2 0 0 +3466800.0 16 9 63 95834 0 0 361 0 0 0 0 0 0 0 270 1 9 9 6000 7010 9 999999999 23 0 0 88 0.2 0 0 +3470400.0 16 8 59 95834 0 0 337 0 0 0 0 0 0 0 52 0.5 4 4 6000 7010 9 999999999 21 0 0 88 0.2 0 0 +3474000.0 14.7 7 60 96013 0 0 330 0 0 0 0 0 0 0 18 1 4 4 6000 7010 9 999999999 19 0 0 88 0.2 0 0 +3477600.0 14 8 67 95797 0 0 330 0 0 0 0 0 0 0 149 1 5 5 9000 7010 9 999999999 21 0 0 88 0.2 0 0 +3481200.0 14 8 67 95797 59 289 330 13 0 13 1235 0 1243 438 330 1.5 5 5 8000 4877 9 999999999 21 0 0 88 0.2 0 0 +3484800.0 17.4 7.5 52 96167 355 1404 340 165 294 91 18392 12608 10168 3206 267 1 3 3 8000 4877 9 999999999 20 0 0 88 0.2 0 0 +3488400.0 20 8 46 95906 640 1404 353 397 558 143 45532 36656 16427 5927 246 1 3 3 8000 4877 9 999999999 21 0 0 88 0.2 0 0 +3492000.0 23 8 38 95959 894 1404 353 633 755 152 75498 50646 18185 7269 10 2.1 0 0 8000 4877 9 999999999 21 0 0 88 0.2 0 0 +3495600.0 25.5 8.5 34 96121 1101 1404 366 825 858 152 101347 55906 18702 7799 5 1.5 0 0 8000 4877 9 999999999 22 0 0 88 0.2 0 0 +3499200.0 27 8 30 96029 1246 1404 372 962 812 241 116328 59018 29272 11798 160 2.6 0 0 8000 4877 9 999999999 20 0 0 88 0.2 0 0 +3502800.0 29 7 25 96063 1319 1404 381 1033 816 265 125171 60612 32317 12894 140 4.6 0 0 8000 4877 9 999999999 18 0 0 88 0.2 0 0 +3506400.0 30.5 7.1 23 96017 1316 1404 389 1029 816 264 124766 60521 32177 12844 170 6.2 0 0 8000 4877 9 999999999 19 0 0 88 0.2 0 0 +3510000.0 30 8 25 96079 1236 1404 387 953 811 238 115200 58876 28912 11666 220 7.2 0 0 8000 4877 9 999999999 20 0 0 88 0.2 0 0 +3513600.0 31 8 24 96096 1085 1404 393 812 857 149 99638 55866 18323 7636 210 6.2 0 0 8000 4877 9 999999999 20 0 0 88 0.2 0 0 +3517200.0 30.3 7.6 24 95937 874 1404 396 615 746 150 73176 50105 17941 7132 220 6.7 1 1 8000 4877 9 999999999 19 0 0 88 0.2 0 0 +3520800.0 30 8 25 96079 616 1404 387 382 562 135 43768 35953 15546 5584 210 6.7 0 0 8000 4877 9 999999999 20 0 0 88 0.2 0 0 +3524400.0 29 7 25 96063 330 1404 381 150 275 85 16597 10723 9447 2947 220 6.2 0 0 8000 4877 9 999999999 18 0 0 88 0.2 0 0 +3528000.0 26.5 7.2 29 96006 34 1404 376 8 0 8 760 0 765 277 210 5.7 1 1 8000 4877 9 999999999 19 0 0 88 0.2 0 0 +3531600.0 26 7 30 96011 0 167 366 0 0 0 0 0 0 0 200 4.6 0 0 8000 4877 9 999999999 18 0 0 88 0.2 0 0 +3535200.0 24 7 34 95977 0 0 356 0 0 0 0 0 0 0 140 2.6 0 0 8000 4877 9 999999999 19 0 0 88 0.2 0 0 +3538800.0 23.1 6.1 33 96070 0 0 351 0 0 0 0 0 0 0 150 2.1 0 0 8000 4877 9 999999999 17 0 0 88 0.2 0 0 +3542400.0 22 6 35 95942 0 0 346 0 0 0 0 0 0 0 150 1.5 0 0 8000 4877 9 999999999 17 0 0 88 0.2 0 0 +3546000.0 21 6 38 95924 0 0 341 0 0 0 0 0 0 0 170 2.1 0 0 8000 4877 9 999999999 17 0 0 88 0.2 0 0 +3549600.0 19.4 6.8 44 95995 0 0 335 0 0 0 0 0 0 0 290 1 0 0 8000 4877 9 999999999 18 0 0 88 0.2 0 0 +3553200.0 17 7 52 95852 0 0 338 0 0 0 0 0 0 0 360 1.5 3 3 8000 4877 9 999999999 19 0 0 88 0.2 0 0 +3556800.0 17 6 48 95852 0 0 334 0 0 0 0 0 0 0 353 0 2 2 8000 4877 9 999999999 17 0 0 88 0.2 0 0 +3560400.0 16.4 6.4 52 95969 0 0 321 0 0 0 0 0 0 0 166 0.5 0 0 8000 4877 9 999999999 18 0 0 88 0.2 0 0 +3564000.0 16 7 55 95834 0 0 333 0 0 0 0 0 0 0 320 0.5 3 3 8000 4877 9 999999999 19 0 0 88 0.2 0 0 +3567600.0 16 6 51 95834 54 266 332 13 0 13 1219 0 1227 428 272 0.5 3 3 8000 4877 9 999999999 17 0 0 88 0.2 0 0 +3571200.0 20.3 7.6 44 96106 351 1404 340 165 301 89 18299 12625 9955 3142 351 1 0 0 8000 4877 9 999999999 20 0 0 88 0.2 0 0 +3574800.0 23 8 38 95959 636 1404 353 399 548 150 45517 36793 17236 6145 139 0.5 0 0 8000 4877 9 999999999 21 0 0 88 0.2 0 0 +3578400.0 26 7 30 96011 890 1404 366 631 793 127 76250 50986 15446 6250 131 0.5 0 0 8000 4877 9 999999999 18 0 0 88 0.2 0 0 +3582000.0 28.2 7.2 27 96092 1097 1404 377 824 860 150 101271 56526 18543 7730 150 3.1 0 0 8000 4877 9 999999999 19 0 0 88 0.2 0 0 +3585600.0 30 7 24 96079 1243 1404 386 961 811 241 116151 59477 29347 11819 150 4.6 0 0 8000 4877 9 999999999 18 0 0 88 0.2 0 0 +3589200.0 32 6 20 96113 1316 1404 395 1032 815 266 125012 61051 32405 12919 160 6.2 0 0 8000 4877 9 999999999 17 0 0 88 0.2 0 0 +3592800.0 32.4 6 19 95972 1313 1404 397 1028 815 265 124623 61008 32278 12873 210 6.2 0 0 8000 4877 9 999999999 17 0 0 88 0.2 0 0 +3596400.0 33 6 19 96129 1233 1404 400 953 811 240 115194 59823 29159 11744 210 8.2 0 0 8000 4877 9 999999999 17 0 0 88 0.2 0 0 +3600000.0 32 7 21 96113 1082 1404 396 810 858 148 99483 56308 18204 7584 210 8.2 0 0 8000 4877 9 999999999 18 0 0 88 0.2 0 0 +3603600.0 32.2 7.3 21 95874 870 1404 398 612 745 150 72846 50131 17914 7114 210 8.8 0 0 8000 4877 9 999999999 19 0 0 88 0.2 0 0 +3607200.0 30 6 22 96079 612 1404 385 380 564 133 43584 36442 15368 5515 220 9.3 0 0 8000 4877 9 999999999 17 0 0 88 0.2 0 0 +3610800.0 29 6 23 96063 325 1404 380 147 272 84 16304 10509 9340 2907 210 7.2 0 0 8000 4877 9 999999999 17 0 0 88 0.2 0 0 +3614400.0 26.8 5.2 25 95926 29 1404 368 7 0 7 663 0 667 244 210 7.2 0 0 8000 4877 9 999999999 15 0 0 88 0.2 0 0 +3618000.0 25 4 26 95994 0 145 358 0 0 0 0 0 0 0 170 5.7 0 0 8000 4877 9 999999999 14 0 0 88 0.2 0 0 +3621600.0 25 6 30 95994 0 0 360 0 0 0 0 0 0 0 140 3.6 0 0 8000 4877 9 999999999 17 0 0 88 0.2 0 0 +3625200.0 22.7 5.3 32 96072 0 0 348 0 0 0 0 0 0 0 160 4.1 0 0 8000 4877 9 999999999 16 0 0 88 0.2 0 0 +3628800.0 22 5 33 95942 0 0 345 0 0 0 0 0 0 0 150 3.1 0 0 8000 4877 9 999999999 15 0 0 88 0.2 0 0 +3632400.0 21 6 38 95924 0 0 341 0 0 0 0 0 0 0 160 2.6 0 0 8000 4877 9 999999999 17 0 0 88 0.2 0 0 +3636000.0 19.7 6.8 43 96076 0 0 336 0 0 0 0 0 0 0 180 2.6 0 0 8000 4877 9 999999999 18 0 0 88 0.2 0 0 +3639600.0 19 7 46 95888 0 0 344 0 0 0 0 0 0 0 170 2.1 2 2 8000 4877 9 999999999 19 0 0 88 0.2 0 0 +3643200.0 18 6 45 95870 0 0 338 0 0 0 0 0 0 0 180 1.5 2 2 8000 4877 9 999999999 17 0 0 88 0.2 0 0 +3646800.0 17.1 5.7 47 96095 0 0 323 0 0 0 0 0 0 0 271 0 0 0 8000 4877 9 999999999 16 0 0 88 0.2 0 0 +3650400.0 16 6 51 95834 0 0 332 0 0 0 0 0 0 0 111 1 3 3 8000 4877 9 999999999 17 0 0 88 0.2 0 0 +3654000.0 15 6 55 95815 50 244 328 11 0 11 1108 0 1115 392 119 0 3 3 8000 4877 9 999999999 17 0 0 88 0.2 0 0 +3657600.0 18.9 6.6 45 96166 346 1403 332 162 297 88 17989 12413 9848 3101 246 0.5 0 0 8000 4877 9 999999999 18 0 0 88 0.2 0 0 +3661200.0 22 7 38 95942 632 1403 347 396 550 148 45239 36951 17006 6063 260 1 0 0 8000 4877 9 999999999 19 0 0 88 0.2 0 0 +3664800.0 26 6 28 96011 887 1403 365 629 790 129 75888 51323 15631 6311 67 0.5 0 0 8000 4877 9 999999999 17 0 0 88 0.2 0 0 +3668400.0 28 5.3 24 96079 1094 1403 374 823 854 156 100918 57439 19229 7991 134 1 0 0 8000 4877 9 999999999 16 0 0 88 0.2 0 0 +3672000.0 30 6 22 96079 1239 1403 385 959 811 242 115952 59894 29402 11833 180 4.1 0 0 8000 4877 9 999999999 17 0 0 88 0.2 0 0 +3675600.0 32 7 21 96113 1313 1403 396 1027 815 263 124472 60491 32104 12817 160 6.2 0 0 8000 4877 9 999999999 18 0 0 88 0.2 0 0 +3679200.0 34.1 6.1 18 95839 1310 1403 406 1025 815 264 124253 60900 32154 12829 160 5.1 0 0 8000 4877 9 999999999 17 0 0 88 0.2 0 0 +3682800.0 34 6 18 96146 1230 1403 406 950 810 239 114832 59753 29045 11703 210 6.7 0 0 8000 4877 9 999999999 17 0 0 88 0.2 0 0 +3686400.0 35 5 16 96162 1079 1403 409 809 851 155 99104 57269 19011 7892 230 6.7 0 0 8000 4877 9 999999999 15 0 0 88 0.2 0 0 +3690000.0 34.5 4.5 15 95684 867 1403 406 612 727 162 72386 51082 19251 7567 220 6.2 0 0 8000 4877 9 999999999 14 0 0 88 0.2 0 0 +3693600.0 33 5 17 96129 608 1403 399 377 563 132 43282 36511 15260 5469 230 6.7 0 0 8000 4877 9 999999999 15 0 0 88 0.2 0 0 +3697200.0 32 5 18 96113 321 1403 394 144 267 83 16004 10274 9229 2866 230 6.7 0 0 8000 4877 9 999999999 15 0 0 88 0.2 0 0 +3700800.0 30.5 4.7 20 95704 25 1403 386 6 0 6 561 0 565 210 210 5.1 0 0 8000 4877 9 999999999 15 0 0 88 0.2 0 0 +3704400.0 29 5 22 96063 0 122 378 0 0 0 0 0 0 0 170 4.1 0 0 8000 4877 9 999999999 15 0 0 88 0.2 0 0 +3708000.0 27 6 26 96029 0 0 370 0 0 0 0 0 0 0 150 3.6 0 0 8000 4877 9 999999999 17 0 0 88 0.2 0 0 +3711600.0 26.7 5 25 95734 0 0 367 0 0 0 0 0 0 0 190 3.1 0 0 8000 4877 9 999999999 15 0 0 88 0.2 0 0 +3715200.0 25 6 30 95994 0 0 360 0 0 0 0 0 0 0 220 2.1 0 0 8000 4877 9 999999999 17 0 0 88 0.2 0 0 +3718800.0 23 5 31 95959 0 0 349 0 0 0 0 0 0 0 2 0.5 0 0 8000 4877 9 999999999 15 0 0 88 0.2 0 0 +3722400.0 20 6.1 40 95599 0 0 337 0 0 0 0 0 0 0 340 1.5 0 0 8000 4877 9 999999999 17 0 0 88 0.2 0 0 +3726000.0 19 6 43 95888 0 0 338 0 0 0 0 0 0 0 41 1 1 1 8000 4877 9 999999999 17 0 0 88 0.2 0 0 +3729600.0 18 6 45 95870 0 0 338 0 0 0 0 0 0 0 20 1.5 2 2 8000 4877 9 999999999 17 0 0 88 0.2 0 0 +3733200.0 17.9 6.1 46 95580 0 0 327 0 0 0 0 0 0 0 251 1 0 0 8000 4877 9 999999999 17 0 0 88 0.2 0 0 +3736800.0 18 6 45 95870 0 0 338 0 0 0 0 0 0 0 265 0.5 2 2 8000 4877 9 999999999 17 0 0 88 0.2 0 0 +3740400.0 17 6 48 95852 45 221 334 11 0 11 1023 0 1030 363 350 1.5 2 2 8000 4877 9 999999999 17 0 0 88 0.2 0 0 +3744000.0 20 6.6 42 95693 342 1403 337 159 294 87 17677 12062 9734 3060 45 1 0 0 8000 4877 9 999999999 18 0 0 88 0.2 0 0 +3747600.0 24 7 34 95977 628 1403 356 393 548 148 44880 36734 16913 6022 10 1.5 0 0 8000 4877 9 999999999 19 0 0 88 0.2 0 0 +3751200.0 27 7 28 96029 883 1403 371 625 791 126 75465 50734 15306 6185 32 1 0 0 8000 4877 9 999999999 18 0 0 88 0.2 0 0 +3754800.0 31.1 7 22 95657 1091 1403 392 818 860 149 100580 56473 18349 7649 265 1 0 0 8000 4877 9 999999999 18 0 0 88 0.2 0 0 +3758400.0 33 7 20 96129 1236 1403 402 955 810 240 115437 59353 29142 11744 262 2.1 0 0 8000 4877 9 999999999 18 0 0 88 0.2 0 0 +3762000.0 34 7 19 96146 1310 1403 407 1024 815 263 124124 60441 32012 12784 150 4.6 0 0 8000 4877 9 999999999 18 0 0 88 0.2 0 0 +3765600.0 35 5 16 96162 1306 1403 409 1024 814 265 124090 61358 32253 12858 220 7.7 0 0 8000 4877 9 999999999 15 0 0 88 0.2 0 0 +3769200.0 35 4 14 96162 1226 1403 408 950 810 241 114791 60594 29282 11778 210 8.2 0 0 8000 4877 9 999999999 14 0 0 88 0.2 0 0 +3772800.0 35 3 13 96162 1075 1403 407 809 844 161 98767 58104 19709 8153 210 8.2 0 0 8000 4877 9 999999999 12 0 0 88 0.2 0 0 +3776400.0 34.3 4.1 15 95500 863 1403 404 609 724 163 72003 51092 19337 7587 210 8.8 0 0 8000 4877 9 999999999 14 0 0 88 0.2 0 0 +3780000.0 32 3 16 96113 604 1403 391 375 567 130 43103 36929 15044 5390 210 9.3 0 0 8000 4877 9 999999999 12 0 0 88 0.2 0 0 +3783600.0 30 1 15 96079 317 1403 378 142 226 91 15664 9611 10078 3023 200 9.3 0 0 8000 4877 9 999999999 10 0 0 88 0.2 0 0 +3787200.0 28.8 0 15 95590 20 1403 371 5 0 5 461 0 464 175 180 6.7 0 0 8000 4877 9 999999999 9 0 0 88 0.2 0 0 +3790800.0 26 -1 17 96011 0 99 356 0 0 0 0 0 0 0 140 5.1 0 0 8000 4877 9 999999999 8 0 0 88 0.2 0 0 +3794400.0 24 3 25 95977 0 0 352 0 0 0 0 0 0 0 160 4.6 0 0 8000 4877 9 999999999 12 0 0 88 0.2 0 0 +3798000.0 22.6 3.3 28 95673 0 0 345 0 0 0 0 0 0 0 160 3.1 0 0 8000 4877 9 999999999 13 0 0 88 0.2 0 0 +3801600.0 21 5 35 95924 0 0 340 0 0 0 0 0 0 0 170 2.6 0 0 8000 4877 9 999999999 15 0 0 88 0.2 0 0 +3805200.0 20 5 37 95906 0 0 335 0 0 0 0 0 0 0 160 3.1 0 0 8000 4877 9 999999999 15 0 0 88 0.2 0 0 +3808800.0 20 5.3 38 95618 0 0 336 0 0 0 0 0 0 0 160 2.6 0 0 8000 4877 9 999999999 16 0 0 88 0.2 0 0 +3812400.0 17 5 45 95852 0 0 332 0 0 0 0 0 0 0 54 1 2 2 8000 4877 9 999999999 15 0 0 88 0.2 0 0 +3816000.0 16 6 51 95834 0 0 332 0 0 0 0 0 0 0 154 1 3 3 8000 4877 9 999999999 17 0 0 88 0.2 0 0 +3819600.0 14.9 4.7 50 95572 0 0 312 0 0 0 0 0 0 0 319 0.5 0 0 8000 4877 9 999999999 15 0 0 88 0.2 0 0 +3823200.0 15 5 51 95815 0 0 327 0 0 0 0 0 0 0 41 1 3 3 9000 4877 9 999999999 15 0 0 88 0.2 0 0 +3826800.0 15 4 48 95815 41 199 312 10 0 10 927 0 933 331 46 0 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +3830400.0 19 4.7 39 95779 338 1402 330 156 291 86 17400 11989 9619 3017 188 0 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +3834000.0 22 6 35 95942 624 1402 346 390 544 148 44540 36755 16929 6010 160 3.1 0 0 8666 2000 9 999999999 17 0 0 88 0.2 0 0 +3837600.0 25 6 30 95994 879 1402 360 622 787 128 75090 51059 15490 6246 170 3.1 0 0 9333 2000 9 999999999 17 0 0 88 0.2 0 0 +3841200.0 27 6.1 26 95825 1087 1402 370 816 856 152 100154 56854 18683 7775 150 3.6 0 0 9333 2000 9 999999999 17 0 0 88 0.2 0 0 +3844800.0 29 7 25 96063 1233 1402 381 952 810 239 115043 59263 29001 11693 170 6.2 0 0 9333 2000 9 999999999 18 0 0 88 0.2 0 0 +3848400.0 30 6 22 96079 1306 1402 385 1023 814 263 123911 60851 32054 12793 160 6.2 0 0 9333 2000 9 999999999 17 0 0 88 0.2 0 0 +3852000.0 30.7 7.2 23 95821 1303 1402 390 1018 814 260 123304 60214 31708 12676 220 7.7 0 0 9333 2000 9 999999999 19 0 0 88 0.2 0 0 +3855600.0 30 9 27 96079 1223 1402 389 940 809 233 113559 58044 28281 11441 220 9.3 0 0 9333 2000 9 999999999 22 0 0 88 0.2 0 0 +3859200.0 29 9 29 96063 1072 1402 384 798 851 147 97853 54945 18048 7521 210 9.8 0 0 9333 2000 9 999999999 22 0 0 88 0.2 0 0 +3862800.0 28.5 8.5 29 95774 859 1402 380 601 742 146 71520 49119 17443 6925 210 8.8 0 0 9333 2000 9 999999999 21 0 0 88 0.2 0 0 +3866400.0 27 9 32 96029 600 1402 374 368 544 135 42034 34381 15463 5508 200 7.2 0 0 9333 2000 9 999999999 23 0 0 88 0.2 0 0 +3870000.0 25 10 39 95994 313 1402 372 137 251 81 15182 8659 9025 2793 160 6.2 1 1 9333 2000 9 999999999 25 0 0 88 0.2 0 0 +3873600.0 21.5 10.3 49 95881 16 1402 348 4 0 4 348 0 350 135 150 5.1 0 0 9333 2000 9 999999999 26 0 0 88 0.2 0 0 +3877200.0 20 11 56 95906 0 76 357 0 0 0 0 0 0 0 160 6.7 3 3 9333 2000 9 999999999 28 0 0 88 0.2 0 0 +3880800.0 19 10 56 95888 0 0 351 0 0 0 0 0 0 0 150 5.1 3 3 9333 2000 9 999999999 25 0 0 88 0.2 0 0 +3884400.0 17.9 10.3 61 95968 0 0 332 0 0 0 0 0 0 0 160 3.6 0 0 9333 2000 9 999999999 26 0 0 88 0.2 0 0 +3888000.0 17 11 68 95852 0 0 348 0 0 0 0 0 0 0 170 4.1 5 5 9333 2000 9 999999999 28 0 0 88 0.2 0 0 +3891600.0 16 10 68 95834 0 0 342 0 0 0 0 0 0 0 170 3.1 5 5 9333 2000 9 999999999 25 0 0 88 0.2 0 0 +3895200.0 16.3 10.4 68 95835 0 0 325 0 0 0 0 0 0 0 200 1.5 0 0 9333 2000 9 999999999 26 0 0 88 0.2 0 0 +3898800.0 15 11 77 95815 0 0 345 0 0 0 0 0 0 0 160 1.5 7 7 9333 2000 9 999999999 28 0 0 88 0.2 0 0 +3902400.0 15 10 72 95815 0 0 340 0 0 0 0 0 0 0 170 1.5 6 6 9333 2000 9 999999999 25 0 0 88 0.2 0 0 +3906000.0 13.5 9.9 79 95726 0 0 312 0 0 0 0 0 0 0 330 1.5 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +3909600.0 13 10 82 95778 0 0 310 0 0 0 0 0 0 0 30 1 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +3913200.0 13 11 88 95778 36 177 311 9 0 9 816 0 822 296 237 1 0 0 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +3916800.0 16.7 10.7 68 95804 334 1401 327 152 277 86 16843 10444 9562 2994 84 1 0 0 8000 2000 9 999999999 27 0 0 88 0.2 0 0 +3920400.0 20 10 53 95906 620 1401 356 380 539 142 43433 34612 16249 5811 40 0.5 3 3 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +3924000.0 22 10 46 95942 876 1401 362 614 748 146 73152 48806 17489 6985 203 1 2 2 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +3927600.0 25.4 10.3 39 95816 1084 1401 367 808 851 149 99023 54403 18312 7640 220 1.5 0 0 8000 2000 9 999999999 26 0 0 88 0.2 0 0 +3931200.0 28 10 32 96046 1229 1401 380 944 809 233 114133 57537 28346 11472 170 4.1 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +3934800.0 30 7 24 96079 1303 1401 386 1018 814 261 123347 60288 31746 12689 150 6.7 0 0 8000 2000 9 999999999 18 0 0 88 0.2 0 0 +3938400.0 30 6.9 23 95781 1300 1401 386 1015 813 260 122966 60292 31635 12648 210 8.8 0 0 8000 2000 9 999999999 18 0 0 88 0.2 0 0 +3942000.0 30 9 27 96079 1219 1401 389 936 809 232 113160 57964 28154 11395 210 9.3 0 0 8000 2000 9 999999999 22 0 0 88 0.2 0 0 +3945600.0 29 9 29 96063 1068 1401 384 795 850 146 97419 54844 17973 7488 210 9.8 0 0 8000 2000 9 999999999 22 0 0 88 0.2 0 0 +3949200.0 27.8 8.7 30 95753 855 1401 377 598 740 145 71054 48853 17337 6879 210 9.3 0 0 8000 2000 9 999999999 22 0 0 88 0.2 0 0 +3952800.0 26 9 34 96011 596 1401 369 364 539 135 41586 34047 15429 5483 200 8.2 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +3956400.0 25 9 36 95994 308 1401 364 134 246 80 14862 8434 8904 2749 200 6.2 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +3960000.0 22 10 46 95880 11 1401 350 2 0 2 240 0 241 95 150 5.7 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +3963600.0 20 10 53 95906 0 52 356 0 0 0 0 0 0 0 160 6.7 3 3 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +3967200.0 19 10 56 95888 0 0 351 0 0 0 0 0 0 0 160 5.7 3 3 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +3970800.0 18 10.1 60 95941 0 0 332 0 0 0 0 0 0 0 170 5.1 0 0 8000 2000 9 999999999 26 0 0 88 0.2 0 0 +3974400.0 17 10 63 95852 0 0 347 0 0 0 0 0 0 0 160 4.6 5 5 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +3978000.0 17 10 63 95852 0 0 347 0 0 0 0 0 0 0 150 2.6 5 5 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +3981600.0 16.1 9.9 67 95850 0 0 323 0 0 0 0 0 0 0 23 1 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +3985200.0 15 10 72 95815 0 0 340 0 0 0 0 0 0 0 290 1.5 6 6 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +3988800.0 15 10 72 95815 0 0 340 0 0 0 0 0 0 0 160 2.6 6 6 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +3992400.0 15 9.8 71 95811 0 0 318 0 0 0 0 0 0 0 200 1 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +3996000.0 13 9 77 95778 0 0 334 0 0 0 0 0 0 0 290 1.5 7 7 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +3999600.0 13 9 77 95778 32 155 309 7 0 7 718 0 723 263 40 2.1 0 0 6000 2000 9 999999999 23 0 0 88 0.2 0 0 +4003200.0 15.4 9.9 70 95884 330 1401 320 149 273 85 16537 10228 9454 2954 57 1 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +4006800.0 19 11 60 95888 616 1401 338 380 549 139 43461 34592 15903 5700 70 1 0 0 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +4010400.0 22 10 46 95942 872 1401 362 611 746 146 72733 48659 17432 6957 90 1 2 2 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +4014000.0 24.5 10.3 41 95915 1080 1401 363 804 850 148 98609 54305 18237 7608 200 3.1 0 0 8000 2000 9 999999999 26 0 0 88 0.2 0 0 +4017600.0 27 11 37 96029 1226 1401 376 940 809 231 113557 56842 28037 11365 160 4.1 0 0 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +4021200.0 28 11 35 96046 1300 1401 381 1009 813 253 122188 57935 30854 12395 160 6.2 0 0 8000 2000 9 999999999 27 0 0 88 0.2 0 0 +4024800.0 29.8 9.8 29 95777 1296 1401 389 1007 813 254 122025 58632 30963 12426 160 5.1 0 0 8000 2000 9 999999999 24 0 0 88 0.2 0 0 +4028400.0 30 8 25 96079 1216 1401 387 935 808 232 112920 58429 28195 11404 210 6.7 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +4032000.0 30 9 27 96079 1064 1401 389 791 849 145 96979 54743 17892 7453 220 7.7 0 0 8000 2000 9 999999999 22 0 0 88 0.2 0 0 +4035600.0 28.8 9.9 31 95685 851 1401 384 593 741 142 70514 48070 16983 6747 210 8.8 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +4039200.0 27 10 34 96029 592 1401 375 360 532 135 41028 33286 15453 5477 210 8.2 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +4042800.0 25 10 39 95994 303 1401 372 131 239 79 14473 7848 8787 2707 210 6.7 1 1 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +4046400.0 22.9 10.5 45 95773 6 1401 355 1 0 1 128 0 129 53 180 4.1 0 0 8000 2000 9 999999999 26 0 0 88 0.2 0 0 +4050000.0 21 11 53 95924 0 28 362 0 0 0 0 0 0 0 160 6.2 3 3 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +4053600.0 19 10 56 95888 0 0 351 0 0 0 0 0 0 0 160 4.6 3 3 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +4057200.0 19 10 56 95888 0 0 351 0 0 0 0 0 0 0 170 3.6 3 3 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +4060800.0 18 10 59 95870 0 0 349 0 0 0 0 0 0 0 170 2.6 4 4 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +4064400.0 17 10 63 95852 0 0 347 0 0 0 0 0 0 0 170 2.1 5 5 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +4068000.0 15.5 10.2 71 95801 0 0 321 0 0 0 0 0 0 0 160 3.1 0 0 8000 2000 9 999999999 26 0 0 88 0.2 0 0 +4071600.0 16 10 68 95834 0 0 342 0 0 0 0 0 0 0 130 1.5 5 5 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +4075200.0 15 9 67 95815 0 0 336 0 0 0 0 0 0 0 252 1 5 5 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +4078800.0 13.8 9.5 75 95694 0 0 313 0 0 0 0 0 0 0 330 1.5 0 0 8000 2000 9 999999999 24 0 0 88 0.2 0 0 +4082400.0 14 9 72 95797 0 0 313 0 0 0 0 0 0 0 130 1 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +4086000.0 15 9 67 95815 27 133 317 6 0 6 619 0 624 230 46 1 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +4089600.0 15.8 10 68 95778 325 1400 322 147 269 84 16233 9875 9338 2913 330 1.5 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +4093200.0 19 11 60 95888 612 1400 355 365 487 152 41347 31889 17284 6072 330 1.5 4 4 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +4096800.0 23 11 47 95959 868 1400 368 606 746 143 72232 47941 17114 6838 153 1 2 2 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +4100400.0 25.7 9.4 36 95727 1076 1400 368 802 851 147 98420 54773 18146 7566 122 1.5 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +4104000.0 28 9 30 96046 1222 1400 379 939 808 233 113538 57973 28291 11445 190 3.1 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +4107600.0 30 5 21 96079 1296 1400 383 1015 813 262 122915 61109 31870 12721 150 5.1 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +4111200.0 30.9 5.8 21 95615 1293 1400 389 1010 812 259 122364 60694 31596 12627 220 6.2 0 0 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +4114800.0 32 3 16 96113 1212 1400 391 938 808 238 113313 60682 28921 11642 210 8.8 0 0 8000 2000 9 999999999 12 0 0 88 0.2 0 0 +4118400.0 30 4 19 96079 1060 1400 382 794 843 155 96977 57240 19016 7874 220 9.8 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +4122000.0 29 5 22 96063 847 1400 378 594 723 156 70237 50109 18534 7270 200 9.8 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +4125600.0 27 5 24 96029 587 1400 369 359 544 131 41114 34922 15030 5331 210 8.8 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +4129200.0 25 5 28 95994 299 1400 359 129 240 78 14284 8245 8634 2652 190 6.7 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +4132800.0 21.8 6 36 95744 0 1403 345 0 0 0 0 0 0 0 150 5.7 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +4136400.0 20 5 37 95906 0 0 335 0 0 0 0 0 0 0 150 6.2 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +4140000.0 19 6 43 95888 0 0 338 0 0 0 0 0 0 0 160 6.2 1 1 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +4143600.0 17.7 5.8 46 95907 0 0 326 0 0 0 0 0 0 0 170 4.6 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +4147200.0 17 6 48 95852 0 0 334 0 0 0 0 0 0 0 170 4.1 2 2 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +4150800.0 16 6 51 95834 0 0 332 0 0 0 0 0 0 0 170 3.1 3 3 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +4154400.0 15.1 6.4 56 95841 0 0 315 0 0 0 0 0 0 0 150 1.5 0 0 8000 2000 9 999999999 18 0 0 88 0.2 0 0 +4158000.0 15 6 55 95815 0 0 328 0 0 0 0 0 0 0 140 1.5 3 3 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +4161600.0 14 6 59 95797 0 0 326 0 0 0 0 0 0 0 236 0.5 4 4 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +4165200.0 12.8 5.8 62 95807 0 0 304 0 0 0 0 0 0 0 198 1 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +4168800.0 14 7 63 95797 0 0 329 0 0 0 0 0 0 0 140 3.1 5 5 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +4172400.0 13 7 67 95778 23 112 325 5 0 5 480 0 484 183 303 1 5 5 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +4176000.0 15.4 7.3 58 95913 321 1400 317 144 267 83 15996 9996 9220 2868 170 2.1 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +4179600.0 18 6 45 95870 608 1400 338 376 560 133 43197 36101 15322 5493 160 3.6 2 2 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +4183200.0 20 6 40 95906 865 1400 343 609 781 126 73396 50467 15264 6137 160 2.6 1 1 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +4186800.0 22.2 6.5 36 95884 1073 1400 362 792 850 140 97619 55300 17331 7233 200 2.1 3 3 8000 2000 9 999999999 18 0 0 88 0.2 0 0 +4190400.0 25 6 30 95994 1219 1400 376 928 883 158 115573 58232 19776 8223 150 3.1 3 3 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +4194000.0 26 5 26 96011 1292 1400 364 1011 812 260 122488 61019 31717 12666 170 4.1 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +4197600.0 27.5 3.6 22 95682 1289 1400 385 997 812 248 121196 60607 30366 12186 210 5.1 3 3 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +4201200.0 27 4 23 96029 1208 1400 367 933 807 235 112706 60163 28593 11528 210 6.7 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +4204800.0 28 3 20 96046 1056 1400 371 791 839 158 96514 57557 19313 7981 210 8.2 0 0 8000 2000 9 999999999 12 0 0 88 0.2 0 0 +4208400.0 26 3.6 24 95609 843 1400 362 591 713 161 69724 50373 19101 7450 200 9.8 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +4212000.0 25 2 22 95994 583 1400 355 357 548 129 40906 35498 14795 5244 190 9.3 0 0 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +4215600.0 24 1 22 95977 294 1400 349 126 200 84 13898 7597 9306 2768 200 8.2 0 0 8000 2000 9 999999999 10 0 0 88 0.2 0 0 +4219200.0 21.7 1.7 27 95714 0 1379 339 0 0 0 0 0 0 0 180 7.7 0 0 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +4222800.0 21 2 28 95924 0 0 336 0 0 0 0 0 0 0 200 6.7 0 0 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +4226400.0 19 3 34 95888 0 0 329 0 0 0 0 0 0 0 160 3.1 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +4230000.0 17.9 3.1 37 95864 0 0 330 0 0 0 0 0 0 0 150 3.6 1 1 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +4233600.0 17 4 42 95852 0 0 327 0 0 0 0 0 0 0 170 2.1 1 1 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +4237200.0 16 4 45 95834 0 0 327 0 0 0 0 0 0 0 150 2.1 2 2 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +4240800.0 15.2 4.3 48 95833 0 0 313 0 0 0 0 0 0 0 150 2.6 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +4244400.0 14 4 51 95797 0 0 321 0 0 0 0 0 0 0 200 1.5 3 3 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +4248000.0 13 4 54 95778 0 0 317 0 0 0 0 0 0 0 230 1.5 3 3 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +4251600.0 12.1 4.4 59 95804 0 0 300 0 0 0 0 0 0 0 350 1.5 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +4255200.0 11 3 58 95740 0 0 294 0 0 0 0 0 0 0 358 0 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +4258800.0 12 4 58 95759 19 90 299 4 0 4 424 0 427 162 40 0.5 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +4262400.0 14 4.2 52 95877 317 1399 308 142 268 82 15795 10150 9086 2821 232 0.5 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +4266000.0 17 4 42 95852 604 1399 321 375 566 130 43104 36655 15038 5393 220 1 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +4269600.0 21 4 33 95924 861 1399 339 608 722 163 71851 50981 19317 7579 268 1 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +4273200.0 22.6 3.2 28 95853 1069 1399 345 803 842 159 98125 57764 19516 8076 267 1.5 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +4276800.0 24 2 24 95977 1215 1399 350 943 807 241 113847 61065 29205 11741 170 2.6 0 0 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +4280400.0 25 4 26 95994 1289 1399 358 1009 812 261 122245 61389 31771 12679 200 5.1 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +4284000.0 25.5 4 25 95780 1285 1399 360 1006 811 260 121806 61339 31628 12628 210 7.2 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +4287600.0 26 5 26 96011 1204 1399 364 928 807 233 112114 59646 28300 11425 210 8.2 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +4291200.0 25 7 32 95994 1052 1399 361 783 850 143 96002 55511 17596 7320 210 8.2 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +4294800.0 23.9 6.2 32 95771 838 1399 355 585 727 149 69309 49301 17741 6976 210 8.8 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +4298400.0 22 7 38 95942 578 1399 347 350 530 131 39982 33503 15040 5305 210 7.7 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +4302000.0 20 7 43 95906 289 1399 344 122 225 75 13497 7115 8376 2562 160 6.2 1 1 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +4305600.0 17.9 6.9 49 95911 0 1353 351 0 0 0 0 0 0 0 160 6.2 6 6 8000 6000 9 999999999 19 0 0 88 0.2 0 0 +4309200.0 17 7 52 95852 0 0 338 0 0 0 0 0 0 0 160 5.1 3 3 8000 6000 9 999999999 19 0 0 88 0.2 0 0 +4312800.0 16 7 55 95834 0 0 333 0 0 0 0 0 0 0 160 3.6 3 3 8000 6000 9 999999999 19 0 0 88 0.2 0 0 +4316400.0 15.7 6.7 55 96003 0 0 349 0 0 0 0 0 0 0 180 2.6 8 8 8000 6000 9 999999999 18 0 0 88 0.2 0 0 +4320000.0 15 7 59 95815 0 0 331 0 0 0 0 0 0 0 134 0.5 4 4 8000 6000 9 999999999 19 0 0 88 0.2 0 0 +4323600.0 15 7 59 95815 0 0 331 0 0 0 0 0 0 0 160 1 4 4 8000 6000 9 999999999 19 0 0 88 0.2 0 0 +4327200.0 14.9 6.5 57 95969 0 0 345 0 0 0 0 0 0 0 170 2.1 8 8 8000 6000 9 999999999 18 0 0 88 0.2 0 0 +4330800.0 15 7 59 95815 0 0 331 0 0 0 0 0 0 0 90 1 4 4 8000 6000 9 999999999 19 0 0 88 0.2 0 0 +4334400.0 14 7 63 95797 0 0 329 0 0 0 0 0 0 0 352 1 5 5 8000 6000 9 999999999 19 0 0 88 0.2 0 0 +4338000.0 13.5 6.7 63 95915 0 0 339 0 0 0 0 0 0 0 10 1 8 8 8000 6000 9 999999999 18 0 0 88 0.2 0 0 +4341600.0 14 7 63 95797 0 0 349 0 0 0 0 0 0 0 190 1 9 9 8000 5182 9 999999999 19 0 0 88 0.2 0 0 +4345200.0 14 7 63 95797 14 69 349 2 0 2 166 0 167 68 305 0 9 9 8000 2743 9 999999999 19 0 0 88 0.2 0 0 +4348800.0 15.5 6.9 57 95943 313 1398 356 72 0 72 7057 0 7109 2567 329 0 9 9 8000 2400 9 999999999 19 0 0 88 0.2 0 0 +4352400.0 16 7 55 95834 600 1398 359 191 8 187 21269 626 20971 6903 300 1.5 9 9 8000 3048 9 999999999 19 0 0 88 0.2 0 0 +4356000.0 18 7 49 95870 857 1398 369 311 17 300 34905 1500 33937 11712 240 1.5 9 9 8000 3048 9 999999999 19 0 0 88 0.2 0 0 +4359600.0 19.6 6.7 43 95970 1065 1398 376 411 69 358 47036 6194 41253 15036 145 1 9 9 8000 3000 9 999999999 18 0 0 88 0.2 0 0 +4363200.0 21 7 40 95924 1211 1398 384 481 51 437 55362 4712 50665 18020 160 3.6 9 9 8000 3048 9 999999999 19 0 0 88 0.2 0 0 +4366800.0 22 8 41 95942 1285 1398 391 516 89 434 59984 8044 50784 18352 160 4.1 9 9 8000 1829 9 999999999 21 0 0 88 0.2 0 0 +4370400.0 23.8 7.5 35 95912 1281 1398 400 515 83 439 59751 7548 51259 18451 150 4.6 9 9 8000 1800 9 999999999 19 0 0 88 0.2 0 0 +4374000.0 23.9 8.2 37 95944 1200 1398 357 920 734 289 109093 57318 34527 13547 275 5.1 0 0 8999 1800 9 999999999 21 0 0 88 0.2 0 0 +4377600.0 24 9 38 95977 1047 1398 380 722 616 261 84513 47868 30659 11971 220 5.7 5 5 8999 3658 9 999999999 23 0 0 88 0.2 0 0 +4381200.0 24 9 38 95849 834 1398 394 389 205 266 43905 17066 30259 10688 230 5.7 8 8 8999 5400 9 999999999 23 0 0 88 0.2 0 0 +4384800.0 24 10 41 95977 573 1398 404 178 27 167 19861 1834 18731 6238 180 6.2 9 9 8999 5486 9 999999999 25 0 0 88 0.2 0 0 +4388400.0 23 10 44 95959 284 1398 399 61 0 61 5986 0 6030 2196 230 4.6 9 9 8999 3048 9 999999999 25 0 0 88 0.2 0 0 +4392000.0 21.1 9.3 47 95826 0 1328 366 0 0 0 0 0 0 0 220 4.1 5 5 8999 5400 9 999999999 23 0 0 88 0.2 0 0 +4395600.0 20 9 49 95906 0 0 351 0 0 0 0 0 0 0 220 3.6 2 2 8999 5400 9 999999999 23 0 0 88 0.2 0 0 +4399200.0 19 9 52 95888 0 0 355 0 0 0 0 0 0 0 180 3.1 5 5 8999 5400 9 999999999 23 0 0 88 0.2 0 0 +4402800.0 17.9 9.7 59 95920 0 0 351 0 0 0 0 0 0 0 160 4.1 5 5 8999 5400 9 999999999 25 0 0 88 0.2 0 0 +4406400.0 17 9 59 95852 0 0 346 0 0 0 0 0 0 0 160 3.6 5 5 8999 5400 9 999999999 23 0 0 88 0.2 0 0 +4410000.0 16 9 63 95834 0 0 341 0 0 0 0 0 0 0 160 4.1 5 5 8999 5400 9 999999999 23 0 0 88 0.2 0 0 +4413600.0 15.7 9.5 67 95994 0 0 335 0 0 0 0 0 0 0 160 3.1 3 3 8999 5400 9 999999999 24 0 0 88 0.2 0 0 +4417200.0 15 9 67 95815 0 0 331 0 0 0 0 0 0 0 160 2.6 3 3 8999 5400 9 999999999 23 0 0 88 0.2 0 0 +4420800.0 14 9 72 95797 0 0 332 0 0 0 0 0 0 0 180 2.1 5 5 8999 5400 9 999999999 23 0 0 88 0.2 0 0 +4424400.0 13.9 9.4 74 96045 0 0 313 0 0 0 0 0 0 0 190 2.1 0 0 8999 5400 9 999999999 24 0 0 88 0.2 0 0 +4428000.0 13 9 77 95778 0 0 334 0 0 0 0 0 0 0 170 2.1 7 7 8999 5400 9 999999999 23 0 0 88 0.2 0 0 +4431600.0 13 10 82 95778 10 47 340 2 0 2 159 0 160 65 7 1 8 8 8999 5400 9 999999999 25 0 0 88 0.2 0 0 +4435200.0 15 9.5 70 96160 309 1398 318 136 251 80 15012 8568 8893 2753 206 0 0 0 8999 5400 9 999999999 24 0 0 88 0.2 0 0 +4438800.0 17 10 63 95852 596 1398 327 365 541 134 41690 33796 15371 5475 167 1 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +4442400.0 20 10 53 95906 853 1398 356 589 720 149 69878 47385 17737 7025 264 1 3 3 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +4446000.0 21.8 10.2 48 96132 1062 1398 350 788 846 145 96608 53907 17791 7417 140 2.1 0 0 8000 2000 9 999999999 26 0 0 88 0.2 0 0 +4449600.0 24 11 44 95977 1208 1398 368 923 806 225 111479 56397 27340 11109 190 3.1 1 1 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +4453200.0 25 10 39 95994 1281 1398 372 994 811 250 120321 58191 30411 12227 140 5.7 1 1 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +4456800.0 26.1 9.7 36 96046 1277 1398 370 990 810 249 119915 58319 30324 12193 160 6.2 0 0 8000 2000 9 999999999 24 0 0 88 0.2 0 0 +4460400.0 27 10 34 96029 1196 1398 375 914 806 224 110378 56891 27180 11042 170 6.2 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +4464000.0 27 10 34 96029 1043 1398 375 771 843 141 94459 53621 17395 7241 220 6.2 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +4467600.0 27.1 10.3 35 95931 829 1398 376 573 733 138 68107 47008 16469 6516 220 7.7 0 0 8000 2000 9 999999999 26 0 0 88 0.2 0 0 +4471200.0 26 10 37 96011 568 1398 370 341 514 132 38750 31634 15023 5271 220 7.2 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +4474800.0 25 10 39 95994 278 1398 372 115 169 81 12579 5298 8927 2634 210 5.7 1 1 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +4478400.0 23 10.2 44 95993 0 1302 355 0 0 0 0 0 0 0 200 3.6 0 0 8000 2000 9 999999999 26 0 0 88 0.2 0 0 +4482000.0 21 10 49 95924 0 0 357 0 0 0 0 0 0 0 150 5.1 2 2 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +4485600.0 20 11 56 95906 0 0 357 0 0 0 0 0 0 0 160 3.6 3 3 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +4489200.0 19 10.3 57 96082 0 0 337 0 0 0 0 0 0 0 180 3.6 0 0 8000 2000 9 999999999 26 0 0 88 0.2 0 0 +4492800.0 18 10 59 95870 0 0 349 0 0 0 0 0 0 0 150 2.6 4 4 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +4496400.0 17 10 63 95852 0 0 347 0 0 0 0 0 0 0 170 2.6 5 5 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +4500000.0 16.1 9.8 66 96011 0 0 323 0 0 0 0 0 0 0 170 2.1 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +4503600.0 15 10 72 95815 0 0 340 0 0 0 0 0 0 0 170 3.1 6 6 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +4507200.0 14 9 72 95797 0 0 334 0 0 0 0 0 0 0 180 2.6 6 6 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +4510800.0 14.1 9.5 74 95992 0 0 314 0 0 0 0 0 0 0 170 1.5 0 0 8000 2000 9 999999999 24 0 0 88 0.2 0 0 +4514400.0 15 10 72 95815 0 0 340 0 0 0 0 0 0 0 180 1.5 6 6 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +4518000.0 13 9 77 95778 5 26 334 1 0 1 100 0 101 41 162 0.5 7 7 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +4521600.0 15.5 9.7 68 96122 305 1397 320 133 246 79 14687 8165 8788 2715 169 0 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +4525200.0 19 10 56 95888 592 1397 351 355 505 141 40365 32206 16084 5662 151 1 3 3 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +4528800.0 21 11 53 95924 849 1397 362 585 721 146 69388 46698 17419 6907 27 1 3 3 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +4532400.0 23.5 10.8 45 96172 1058 1397 359 784 845 144 96072 53430 17676 7371 180 2.1 0 0 8000 2000 9 999999999 27 0 0 88 0.2 0 0 +4536000.0 25 11 41 95994 1204 1397 373 920 806 225 111109 56365 27282 11087 150 3.6 1 1 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +4539600.0 27 11 37 96029 1277 1397 376 989 810 247 119696 57504 30095 12119 150 4.6 0 0 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +4543200.0 29 9.8 30 96058 1273 1397 385 987 810 248 119447 58187 30174 12139 160 4.6 0 0 8000 2000 9 999999999 24 0 0 88 0.2 0 0 +4546800.0 30 10 29 96079 1192 1397 390 910 805 223 109909 56805 27042 10991 160 6.7 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +4550400.0 30 10 29 96079 1039 1397 390 767 842 141 93955 53505 17296 7198 220 6.7 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +4554000.0 28.9 10.6 32 95942 824 1397 385 569 731 137 67557 46645 16324 6455 220 7.2 0 0 8000 2000 9 999999999 26 0 0 88 0.2 0 0 +4557600.0 27 11 37 96029 563 1397 376 336 505 132 38127 30783 15073 5269 220 6.7 0 0 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +4561200.0 27 11 37 96029 273 1397 376 111 196 73 12264 5231 8072 2443 200 4.6 0 0 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +4564800.0 23.8 10.9 44 95959 0 1276 360 0 0 0 0 0 0 0 160 4.1 0 0 8000 2000 9 999999999 27 0 0 88 0.2 0 0 +4568400.0 22 11 50 95942 0 0 363 0 0 0 0 0 0 0 160 4.1 2 2 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +4572000.0 20 10 53 95906 0 0 356 0 0 0 0 0 0 0 160 5.1 3 3 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +4575600.0 19.5 10.1 55 96063 0 0 339 0 0 0 0 0 0 0 170 4.6 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +4579200.0 19 10 56 95888 0 0 351 0 0 0 0 0 0 0 160 2.6 3 3 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +4582800.0 18 10 59 95870 0 0 349 0 0 0 0 0 0 0 160 2.6 4 4 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +4586400.0 17.1 9.9 63 95972 0 0 328 0 0 0 0 0 0 0 180 3.1 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +4590000.0 17 10 63 95852 0 0 347 0 0 0 0 0 0 0 160 2.6 5 5 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +4593600.0 16 9 63 95834 0 0 341 0 0 0 0 0 0 0 180 1 5 5 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +4597200.0 15.3 9.6 69 95854 0 0 319 0 0 0 0 0 0 0 180 1.5 0 0 8000 2000 9 999999999 24 0 0 88 0.2 0 0 +4600800.0 15 9 67 95815 0 0 336 0 0 0 0 0 0 0 180 1.5 5 5 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +4604400.0 14 10 77 95797 0 0 339 0 0 0 0 0 0 0 190 1 7 7 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +4608000.0 17.2 10.3 64 95927 300 1402 329 130 241 78 14383 7742 8673 2675 60 0.5 0 0 8000 2000 9 999999999 26 0 0 88 0.2 0 0 +4611600.0 20 11 56 95906 588 1396 357 352 497 142 39889 31497 16155 5669 200 2.1 3 3 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +4615200.0 22 11 50 95942 845 1396 363 585 731 142 69495 46902 16923 6721 150 3.1 2 2 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +4618800.0 24.2 11.1 44 95919 1054 1396 362 780 844 143 95622 53149 17549 7318 170 3.6 0 0 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +4622400.0 26 11 39 96011 1200 1396 378 917 805 224 110705 56305 27184 11051 170 4.1 1 1 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +4626000.0 29 11 33 96063 1273 1396 386 985 810 246 119265 57440 29979 12077 180 4.1 0 0 8000 2000 9 999999999 27 0 0 88 0.2 0 0 +4629600.0 29.9 10.1 29 95732 1269 1396 390 983 809 246 118938 57939 29992 12075 170 5.1 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +4633200.0 31 9 26 96096 1187 1396 394 908 804 223 109608 57300 27081 10999 170 6.7 0 0 8000 2000 9 999999999 22 0 0 88 0.2 0 0 +4636800.0 29 11 33 96063 1034 1396 386 762 840 139 93279 52765 17123 7129 210 8.8 0 0 8000 2000 9 999999999 27 0 0 88 0.2 0 0 +4640400.0 28.1 11.3 35 95635 819 1396 382 564 731 135 67006 46071 16050 6349 210 9.3 0 0 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +4644000.0 27 11 37 96029 558 1396 376 332 502 131 37658 30446 14940 5213 210 8.2 0 0 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +4647600.0 25 11 41 95994 268 1396 373 108 190 72 11899 4847 7910 2389 190 6.7 1 1 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +4651200.0 22 10.8 49 95748 0 1249 351 0 0 0 0 0 0 0 150 5.7 0 0 8000 2000 9 999999999 27 0 0 88 0.2 0 0 +4654800.0 19 11 60 95888 0 0 355 0 0 0 0 0 0 0 160 6.2 4 4 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +4658400.0 18 11 64 95870 0 0 353 0 0 0 0 0 0 0 160 5.7 5 5 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +4662000.0 16.4 10.3 67 95799 0 0 347 0 0 0 0 0 0 0 160 5.7 6 6 8000 2000 9 999999999 26 0 0 88 0.2 0 0 +4665600.0 15 10 72 95815 0 0 340 0 0 0 0 0 0 0 160 5.1 6 6 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +4669200.0 14 10 77 95797 0 0 339 0 0 0 0 0 0 0 160 5.1 7 7 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +4672800.0 12.9 10.1 83 95857 0 0 323 0 0 0 0 0 0 0 160 5.1 3 3 8000 2000 9 999999999 26 0 0 88 0.2 0 0 +4676400.0 13 10 82 95778 0 0 328 0 0 0 0 0 0 0 160 4.6 5 5 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +4680000.0 13 10 82 95778 0 0 347 0 0 0 0 0 0 0 150 3.6 9 9 8000 183 9 999999999 25 0 0 88 0.2 0 0 +4683600.0 13.5 10.6 83 95877 0 0 351 0 0 0 0 0 0 0 180 3.6 9 9 8000 180 9 999999999 27 0 0 88 0.2 0 0 +4687200.0 13 11 88 95778 0 0 358 0 0 0 0 0 0 0 160 2.6 10 10 8000 213 9 999999999 28 0 0 88 0.2 0 0 +4690800.0 13 11 88 95778 0 0 358 0 0 0 0 0 0 0 190 1.5 10 10 7000 213 9 999999999 28 0 0 88 0.2 0 0 +4694400.0 13.4 10.7 84 96017 296 1381 360 40 0 40 3932 0 3961 1597 226 1 10 10 6000 180 9 999999999 27 0 0 88 0.2 0 0 +4698000.0 14 11 82 95797 584 1396 364 112 0 112 11223 0 11317 4717 3 1 10 10 6000 244 9 999999999 28 0 0 88 0.2 0 0 +4701600.0 15 10 72 95815 842 1396 367 184 0 184 21460 31 21531 8277 180 1.5 10 10 6000 244 9 999999999 25 0 0 88 0.2 0 0 +4705200.0 15.3 10.7 74 96081 1050 1396 370 245 8 238 28816 608 28241 11210 190 3.1 10 10 8000 240 9 999999999 27 0 0 88 0.2 0 0 +4708800.0 17 11 68 95852 1196 1396 368 471 33 443 53939 3046 51042 18065 170 4.6 9 9 8000 457 9 999999999 28 0 0 88 0.2 0 0 +4712400.0 18 11 64 95870 1269 1396 374 506 88 427 58732 7712 49827 18086 170 5.7 9 9 8000 610 9 999999999 28 0 0 88 0.2 0 0 +4716000.0 18.5 11.1 62 96054 1265 1396 376 504 79 433 58369 6989 50442 18221 160 7.2 9 9 8000 600 9 999999999 28 0 0 88 0.2 0 0 +4719600.0 19 11 60 95888 1183 1396 358 838 583 343 97714 47954 40252 15278 170 5.7 5 5 8000 600 9 999999999 28 0 0 88 0.2 0 0 +4723200.0 20 11 56 95906 1029 1396 363 705 680 203 83809 47745 24218 9776 150 6.2 5 5 8000 600 9 999999999 28 0 0 88 0.2 0 0 +4726800.0 19.3 11.1 59 95908 814 1396 354 552 700 143 65254 45116 17002 6674 160 6.2 3 3 8000 600 9 999999999 28 0 0 88 0.2 0 0 +4730400.0 18 11 64 95870 553 1396 347 323 478 134 36562 29194 15212 5267 210 6.2 3 3 8000 600 9 999999999 28 0 0 88 0.2 0 0 +4734000.0 17 11 68 95852 262 1396 348 96 154 67 10565 3494 7381 2257 220 6.2 5 5 8000 600 9 999999999 28 0 0 88 0.2 0 0 +4737600.0 15.9 10.9 72 95960 0 1222 323 0 0 0 0 0 0 0 150 3.6 0 0 8000 600 9 999999999 28 0 0 88 0.2 0 0 +4741200.0 15 11 77 95815 0 0 333 0 0 0 0 0 0 0 160 3.6 3 3 8000 600 9 999999999 28 0 0 88 0.2 0 0 +4744800.0 15 11 77 95815 0 0 358 0 0 0 0 0 0 0 160 3.1 9 9 8000 914 9 999999999 28 0 0 88 0.2 0 0 +4748400.0 15.7 10.9 73 95965 0 0 372 0 0 0 0 0 0 0 150 2.1 10 10 8000 750 9 999999999 28 0 0 88 0.2 0 0 +4752000.0 16 11 72 95834 0 0 374 0 0 0 0 0 0 0 272 1 10 10 8000 610 9 999999999 28 0 0 88 0.2 0 0 +4755600.0 15 10 72 95815 0 0 367 0 0 0 0 0 0 0 40 2.1 10 10 8000 610 9 999999999 25 0 0 88 0.2 0 0 +4759200.0 15 10.3 73 95782 0 0 368 0 0 0 0 0 0 0 360 2.1 10 10 8000 600 9 999999999 26 0 0 88 0.2 0 0 +4762800.0 15 11 77 95815 0 0 369 0 0 0 0 0 0 0 109 1 10 10 8000 518 9 999999999 28 0 0 88 0.2 0 0 +4766400.0 15 11 77 95815 0 0 369 0 0 0 0 0 0 0 240 2.1 10 10 8000 518 9 999999999 28 0 0 88 0.2 0 0 +4770000.0 15.8 10.9 73 95750 0 0 373 0 0 0 0 0 0 0 250 2.1 10 10 8000 480 9 999999999 28 0 0 88 0.2 0 0 +4773600.0 16 11 72 95834 0 0 374 0 0 0 0 0 0 0 275 1 10 10 8000 488 9 999999999 28 0 0 88 0.2 0 0 +4777200.0 16 11 72 95834 0 0 374 0 0 0 0 0 0 0 10 2.6 10 10 5000 488 9 999999999 28 0 0 88 0.2 0 0 +4780800.0 15.7 10.9 73 95795 292 1360 372 39 0 39 3852 0 3881 1564 330 2.6 10 10 5000 450 9 999999999 28 0 0 88 0.2 0 0 +4784400.0 16 11 72 95834 580 1395 343 327 366 175 36437 25600 19574 6485 340 2.6 5 5 5000 457 9 999999999 28 0 0 88 0.2 0 0 +4788000.0 18 11 64 95870 838 1395 353 541 586 188 62802 41536 21989 8414 295 1.5 5 5 5000 457 9 999999999 28 0 0 88 0.2 0 0 +4791600.0 19.8 11.1 57 95709 1046 1395 341 773 804 170 93449 53162 20579 8480 160 2.6 0 0 6000 457 9 999999999 28 0 0 88 0.2 0 0 +4795200.0 23 11 47 95959 1192 1395 356 909 804 222 109825 56130 26912 10950 150 4.1 0 0 6000 2000 9 999999999 28 0 0 88 0.2 0 0 +4798800.0 25 12 44 95994 1265 1395 367 976 808 242 118141 56616 29492 11907 150 4.1 0 0 9000 2000 9 999999999 31 0 0 88 0.2 0 0 +4802400.0 26.9 9.3 33 95548 1260 1395 373 976 808 245 118119 58233 29833 12012 160 5.1 0 0 9000 2000 9 999999999 23 0 0 88 0.2 0 0 +4806000.0 28 8 28 96046 1178 1395 377 901 803 222 108763 57643 26931 10938 170 5.1 0 0 9000 2000 9 999999999 20 0 0 88 0.2 0 0 +4809600.0 27.6 9.2 32 95762 1024 1395 377 756 840 138 92517 53614 17021 7073 250 5.9 0 0 9000 2000 9 999999999 23 0 0 88 0.2 0 0 +4813200.0 27.3 10.5 35 95479 809 1395 377 556 725 135 65963 46104 16080 6336 210 6.7 0 0 9000 2000 9 999999999 26 0 0 88 0.2 0 0 +4816800.0 26 10 37 96011 547 1395 370 324 500 127 36768 30140 14524 5058 220 7.2 0 0 9000 2000 9 999999999 25 0 0 88 0.2 0 0 +4820400.0 24 10 41 95977 257 1395 367 101 148 74 11092 3848 8147 2391 220 6.7 1 1 9000 2000 9 999999999 25 0 0 88 0.2 0 0 +4824000.0 21.4 10.3 49 95557 0 1195 348 0 0 0 0 0 0 0 210 5.7 0 0 9000 2000 9 999999999 26 0 0 88 0.2 0 0 +4827600.0 20 10 53 95906 0 0 356 0 0 0 0 0 0 0 160 4.1 3 3 9000 2000 9 999999999 25 0 0 88 0.2 0 0 +4831200.0 18 11 64 95870 0 0 353 0 0 0 0 0 0 0 160 4.6 5 5 9000 2000 9 999999999 28 0 0 88 0.2 0 0 +4834800.0 17.2 10.5 65 95633 0 0 329 0 0 0 0 0 0 0 170 4.6 0 0 9000 2000 9 999999999 27 0 0 88 0.2 0 0 +4838400.0 16 11 72 95834 0 0 346 0 0 0 0 0 0 0 160 4.1 6 6 9000 2000 9 999999999 28 0 0 88 0.2 0 0 +4842000.0 15 11 77 95815 0 0 345 0 0 0 0 0 0 0 160 2.6 7 7 9000 2000 9 999999999 28 0 0 88 0.2 0 0 +4845600.0 13.7 10.3 80 95588 0 0 313 0 0 0 0 0 0 0 170 3.6 0 0 9000 2000 9 999999999 26 0 0 88 0.2 0 0 +4849200.0 13 10 82 95778 0 0 340 0 0 0 0 0 0 0 180 4.1 8 8 7500 2000 9 999999999 25 0 0 88 0.2 0 0 +4852800.0 12 11 94 95759 0 0 344 0 0 0 0 0 0 0 160 3.6 9 9 5000 61 9 999999999 28 0 0 88 0.2 0 0 +4856400.0 12.5 10.8 89 95565 0 0 346 0 0 0 0 0 0 0 160 3.6 9 9 5000 60 9 999999999 28 0 0 88 0.2 0 0 +4860000.0 12 11 94 95759 0 0 344 0 0 0 0 0 0 0 170 2.6 9 9 4000 61 9 999999999 28 0 0 88 0.2 0 0 +4863600.0 12 11 94 95759 0 0 353 0 0 0 0 0 0 0 180 1.5 10 10 4000 61 9 999999999 28 0 0 88 0.2 0 0 +4867200.0 12.9 10.8 87 95649 288 1340 358 38 0 38 3766 0 3795 1529 288 1 10 10 4000 120 9 999999999 28 0 0 88 0.2 0 0 +4870800.0 15 11 77 95815 576 1394 358 180 26 169 20061 1811 18935 6317 328 1 9 9 5000 152 9 999999999 28 0 0 88 0.2 0 0 +4874400.0 16 11 72 95834 834 1394 343 538 540 214 61745 40272 24753 9241 180 4.1 5 5 7000 152 9 999999999 28 0 0 88 0.2 0 0 +4878000.0 18 11.1 64 95743 1042 1394 333 770 803 169 92995 53043 20479 8437 160 4.6 0 0 7000 152 9 999999999 28 0 0 88 0.2 0 0 +4881600.0 19.6 11.1 58 95727 1188 1394 358 883 834 171 108644 54022 21199 8803 276 5 4 4 7000 152 9 999999999 28 0 0 88 0.2 0 0 +4885200.0 21.2 11.2 53 95711 1261 1394 363 963 881 165 119933 55822 20670 8584 307 5.3 3 3 7000 152 9 999999999 28 0 0 88 0.2 0 0 +4888800.0 22.8 11.2 48 95695 1256 1394 356 969 808 241 117244 56976 29299 11830 160 5.7 0 0 7000 152 9 999999999 28 0 0 88 0.2 0 0 +4892400.0 23.4 10.6 44 95684 1174 1394 365 892 803 216 107721 55979 26216 10690 112 6.4 1 1 7000 152 9 999999999 27 0 0 88 0.2 0 0 +4896000.0 24 10 41 95672 1019 1394 367 750 836 138 91756 52982 16934 7036 136 7 1 1 7000 152 9 999999999 25 0 0 88 0.2 0 0 +4899600.0 24.6 9.4 38 95660 804 1394 362 552 720 137 65442 46434 16260 6385 210 7.7 0 0 7000 152 9 999999999 23 0 0 88 0.2 0 0 +4903200.0 22.9 9.4 42 95700 542 1394 361 320 496 126 36259 29905 14409 5005 341 6.5 1 1 7000 152 9 999999999 24 0 0 88 0.2 0 0 +4906800.0 21.2 9.5 47 95739 251 1394 358 98 141 72 10686 3494 7945 2329 205 5.3 2 2 7000 152 9 999999999 24 0 0 88 0.2 0 0 +4910400.0 19.5 9.5 52 95779 0 1167 338 0 0 0 0 0 0 0 190 4.1 0 0 7000 152 9 999999999 24 0 0 88 0.2 0 0 +4914000.0 18 10 59 95870 0 0 349 0 0 0 0 0 0 0 180 5.1 4 4 7000 152 9 999999999 25 0 0 88 0.2 0 0 +4917600.0 17 10 63 95852 0 0 347 0 0 0 0 0 0 0 150 4.1 5 5 7000 152 9 999999999 25 0 0 88 0.2 0 0 +4921200.0 15.9 9.9 68 95865 0 0 322 0 0 0 0 0 0 0 160 4.1 0 0 7000 152 9 999999999 25 0 0 88 0.2 0 0 +4924800.0 15 10 72 95815 0 0 340 0 0 0 0 0 0 0 160 3.1 6 6 7000 152 9 999999999 25 0 0 88 0.2 0 0 +4928400.0 14 10 77 95797 0 0 339 0 0 0 0 0 0 0 160 4.1 7 7 7000 152 9 999999999 25 0 0 88 0.2 0 0 +4932000.0 14 9.8 76 95887 0 0 314 0 0 0 0 0 0 0 150 3.6 0 0 7000 152 9 999999999 25 0 0 88 0.2 0 0 +4935600.0 14 10 77 95797 0 0 339 0 0 0 0 0 0 0 160 3.1 7 7 7000 152 9 999999999 25 0 0 88 0.2 0 0 +4939200.0 13 9 77 95778 0 0 334 0 0 0 0 0 0 0 170 2.1 7 7 7000 152 9 999999999 23 0 0 88 0.2 0 0 +4942800.0 13.6 9.7 77 95917 0 0 350 0 0 0 0 0 0 0 170 1.5 9 9 7000 600 9 999999999 25 0 0 88 0.2 0 0 +4946400.0 14 10 77 95797 0 0 352 0 0 0 0 0 0 0 226 1.5 9 9 7000 610 9 999999999 25 0 0 88 0.2 0 0 +4950000.0 14 10 77 95797 0 0 362 0 0 0 0 0 0 0 192 1 10 10 9000 610 9 999999999 25 0 0 88 0.2 0 0 +4953600.0 14.4 9.9 74 96026 284 1319 364 38 0 38 3697 0 3725 1499 360 2.1 10 10 8000 600 9 999999999 25 0 0 88 0.2 0 0 +4957200.0 16 10 68 95834 573 1394 362 179 57 155 20055 3789 17503 5951 75 1 9 9 8000 610 9 999999999 25 0 0 88 0.2 0 0 +4960800.0 18 10 59 95870 830 1394 332 575 623 204 66346 45965 23652 8893 136 1 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +4964400.0 19.5 10.2 55 96006 1038 1394 339 768 841 140 94019 53300 17258 7186 41 1 0 0 8000 2000 9 999999999 26 0 0 88 0.2 0 0 +4968000.0 22 10 46 95942 1184 1394 362 902 803 219 108962 56429 26625 10839 151 1 2 2 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +4971600.0 24 10 41 95977 1257 1394 367 971 807 243 117563 57700 29556 11916 4 1 1 1 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +4975200.0 25.6 9.6 36 95820 1251 1394 367 967 807 242 117060 57881 29465 11879 160 2.6 0 0 8000 2000 9 999999999 24 0 0 88 0.2 0 0 +4978800.0 27 9 32 96029 1169 1394 374 891 802 218 107551 56896 26441 10763 140 3.1 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +4982400.0 28 10 32 96046 1014 1394 380 746 836 137 91260 52878 16784 6971 150 6.2 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +4986000.0 28.4 9.4 30 95716 799 1394 381 548 719 136 64910 46240 16137 6330 180 5.7 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +4989600.0 26 10 37 96011 536 1394 392 293 393 142 32913 24821 16001 5400 220 7.7 5 5 8000 6096 9 999999999 25 0 0 88 0.2 0 0 +4993200.0 24 10 41 95977 245 1394 381 88 102 70 9626 2325 7689 2256 210 7.2 5 5 8000 6096 9 999999999 25 0 0 88 0.2 0 0 +4996800.0 21.5 9.7 47 95796 0 1139 368 0 0 0 0 0 0 0 210 7.7 5 5 8000 6096 9 999999999 24 0 0 88 0.2 0 0 +5000400.0 20 10 53 95906 0 0 361 0 0 0 0 0 0 0 200 5.1 5 5 8000 6096 9 999999999 25 0 0 88 0.2 0 0 +5004000.0 18 10 59 95870 0 0 352 0 0 0 0 0 0 0 150 4.6 5 5 8000 6096 9 999999999 25 0 0 88 0.2 0 0 +5007600.0 17.1 9.6 61 95972 0 0 347 0 0 0 0 0 0 0 150 5.1 5 5 8000 6096 9 999999999 24 0 0 88 0.2 0 0 +5011200.0 17 9 59 95852 0 0 346 0 0 0 0 0 0 0 150 4.6 5 5 8000 6096 9 999999999 23 0 0 88 0.2 0 0 +5014800.0 16 9 63 95834 0 0 341 0 0 0 0 0 0 0 130 3.1 5 5 8000 6096 9 999999999 23 0 0 88 0.2 0 0 +5018400.0 15.2 9.1 67 95966 0 0 337 0 0 0 0 0 0 0 170 4.1 5 5 8000 6096 9 999999999 23 0 0 88 0.2 0 0 +5022000.0 15 9 67 95815 0 0 336 0 0 0 0 0 0 0 120 1.5 5 5 8000 6096 9 999999999 23 0 0 88 0.2 0 0 +5025600.0 15 9 67 95815 0 0 336 0 0 0 0 0 0 0 190 2.1 5 5 8000 6096 9 999999999 23 0 0 88 0.2 0 0 +5029200.0 15 9 67 96066 0 0 336 0 0 0 0 0 0 0 160 2.1 5 5 8000 6096 9 999999999 23 0 0 88 0.2 0 0 +5032800.0 15 10 72 95815 0 0 357 0 0 0 0 0 0 0 170 2.1 9 9 8000 3048 9 999999999 25 0 0 88 0.2 0 0 +5036400.0 15 9 67 95815 0 0 356 0 0 0 0 0 0 0 170 3.1 9 9 8000 3353 9 999999999 23 0 0 88 0.2 0 0 +5040000.0 15.4 9.6 68 96168 280 1299 334 116 167 82 12643 5364 8996 2658 170 3.1 3 3 8000 3353 9 999999999 24 0 0 88 0.2 0 0 +5043600.0 17 10 63 95852 569 1393 347 319 429 143 36001 27473 16273 5619 190 1.5 5 5 8000 3048 9 999999999 25 0 0 88 0.2 0 0 +5047200.0 19 10 56 95888 826 1393 356 532 589 183 61864 41662 21357 8168 142 1 5 5 8000 7620 9 999999999 25 0 0 88 0.2 0 0 +5050800.0 20.3 9.6 50 96172 1034 1393 362 712 667 216 84339 48324 25720 10312 183 1 5 5 8000 7620 9 999999999 24 0 0 88 0.2 0 0 +5054400.0 21 10 49 95924 1180 1393 366 837 702 243 100334 51002 29225 11763 210 2.6 5 5 8000 7620 9 999999999 25 0 0 88 0.2 0 0 +5058000.0 23 10 44 95959 1252 1393 376 900 711 261 108339 52068 31538 12608 140 4.1 5 5 8000 7620 9 999999999 25 0 0 88 0.2 0 0 +5061600.0 24.6 9.8 39 96030 1247 1393 384 896 711 259 107814 52114 31317 12528 130 3.6 5 5 8000 7620 9 999999999 25 0 0 88 0.2 0 0 +5065200.0 25 10 39 95994 1164 1393 387 824 700 238 98659 50775 28649 11552 190 4.1 5 5 8000 7620 9 999999999 25 0 0 88 0.2 0 0 +5068800.0 25 10 39 95994 1009 1393 387 690 663 209 81649 47595 24850 9946 220 6.7 5 5 8000 7620 9 999999999 25 0 0 88 0.2 0 0 +5072400.0 24.3 10.1 41 95930 793 1393 383 505 571 179 58436 40236 20851 7884 220 7.7 5 5 8000 7620 9 999999999 25 0 0 88 0.2 0 0 +5076000.0 23 10 44 95959 531 1393 376 289 389 141 32401 24404 15847 5336 220 7.2 5 5 8000 7620 9 999999999 25 0 0 88 0.2 0 0 +5079600.0 20 10.3 54 95946 239 1393 373 85 123 63 9298 2252 6987 2095 200 5.7 5 5 8000 7620 9 999999999 28 0 0 88 0.2 0 0 +5083200.0 19 10.1 57 96013 0 1111 362 0 0 0 0 0 0 0 182 4.6 5 5 8000 7620 9 999999999 26 0 0 88 0.2 0 0 +5086800.0 18 10.1 60 95956 0 0 378 0 0 0 0 0 0 0 170 3.7 9 9 8000 1524 9 999999999 25 0 0 88 0.2 0 0 +5090400.0 17.7 11.3 66 95951 0 0 356 0 0 0 0 0 0 0 157 3.1 5 5 8000 1524 9 999999999 25 0 0 88 0.2 0 0 +5094000.0 17.4 12.4 73 95903 0 0 331 0 0 0 0 0 0 0 155 3.1 0 0 8000 1524 9 999999999 26 0 0 88 0.2 0 0 +5097600.0 17.1 13.3 78 95813 0 0 342 0 0 0 0 0 0 0 160 2.8 5 5 8000 1524 9 999999999 25 0 0 88 0.2 0 0 +5101200.0 17.6 14.3 81 95822 0 0 371 0 0 0 0 0 0 0 167 2.5 8 8 8000 4572 9 999999999 42 0 0 88 0.2 0 0 +5104800.0 17.4 14.1 81 95818 0 0 335 0 0 0 0 0 0 0 199 1.8 0 0 8000 4572 9 999999999 39 0 0 88 0.2 0 0 +5108400.0 17.2 14 81 95857 0 0 364 0 0 0 0 0 0 0 186 1.3 8 8 9600 4572 9 999999999 38 0 0 88 0.2 0 0 +5112000.0 17 13.8 81 95852 0 0 364 0 0 0 0 0 0 0 233 1.2 7 7 9200 4572 9 999999999 38 0 0 88 0.2 0 0 +5115600.0 17 13.9 82 95808 0 0 364 0 0 0 0 0 0 0 276 1.2 8 8 8800 4572 9 999999999 38 0 0 88 0.2 0 0 +5119200.0 17.8 14.1 79 95822 0 0 364 0 0 0 0 0 0 0 269 1.7 8 8 8400 4572 9 999999999 38 0 0 88 0.2 0 0 +5122800.0 16 13 82 95834 0 0 340 0 0 0 0 0 0 0 360 2.1 3 3 8000 4572 9 999999999 34 0 0 88 0.2 0 0 +5126400.0 18 14.4 79 95695 276 1279 351 112 193 74 12340 4838 8167 2481 360 2.1 3 3 6000 4572 9 999999999 39 0 0 88 0.2 0 0 +5130000.0 20 15 73 95906 565 1392 362 332 537 115 38071 29168 13182 4745 250 2.1 3 3 8000 4572 9 999999999 42 0 0 88 0.2 0 0 +5133600.0 22 15 64 95942 822 1392 377 525 557 196 60454 38496 22664 8584 170 2.1 5 5 8000 4572 9 999999999 41 0 0 88 0.2 0 0 +5137200.0 25 15 54 95994 1030 1392 416 390 38 362 44160 3211 41281 14876 150 2.6 9 9 8000 3962 9 999999999 41 0 0 88 0.2 0 0 +5140800.0 26 16 54 96011 1175 1392 423 458 113 363 52981 9061 42269 15868 160 4.1 9 9 8000 3962 9 999999999 45 0 0 88 0.2 0 0 +5144400.0 28 15 45 96046 1248 1392 409 890 572 377 103685 46225 44204 16586 160 6.2 5 5 8000 3962 9 999999999 41 0 0 88 0.2 0 0 +5148000.0 27.7 15 46 96041 1242 1392 411 831 526 361 97017 41763 42477 16088 210 6.7 6 6 8000 3900 9 999999999 41 0 0 88 0.2 0 0 +5151600.0 30 15 40 96079 1159 1392 420 813 682 245 96826 47558 29377 11833 200 6.2 5 5 8000 3962 9 999999999 41 0 0 88 0.2 0 0 +5155200.0 29 15 43 96063 1004 1392 414 680 665 200 80473 44723 23787 9589 220 7.2 5 5 8000 3962 9 999999999 41 0 0 88 0.2 0 0 +5158800.0 29 14 40 96063 788 1392 413 497 596 160 57918 38675 18691 7188 220 7.2 5 5 8000 3962 9 999999999 37 0 0 88 0.2 0 0 +5162400.0 28 13 40 96046 525 1392 400 301 455 129 33858 26417 14571 4993 220 6.2 3 3 8000 3962 9 999999999 34 0 0 88 0.2 0 0 +5166000.0 26 11 39 96011 233 1392 387 86 152 61 9506 2470 6729 2020 210 7.2 3 3 8000 3962 9 999999999 28 0 0 88 0.2 0 0 +5169600.0 23.4 10.9 45 95573 0 1082 374 0 0 0 0 0 0 0 190 6.2 3 3 8000 3962 9 999999999 27 0 0 88 0.2 0 0 +5173200.0 22 11 50 95942 0 0 395 0 0 0 0 0 0 0 140 3.1 9 9 8000 2438 9 999999999 28 0 0 88 0.2 0 0 +5176800.0 20 13 64 95906 0 0 386 0 0 0 0 0 0 0 150 6.2 9 9 8000 2438 9 999999999 34 0 0 88 0.2 0 0 +5180400.0 20 13 64 95906 0 0 386 0 0 0 0 0 0 0 160 4.6 9 9 8000 2134 9 999999999 34 0 0 88 0.2 0 0 +5184000.0 18 14 77 95870 0 0 351 0 0 0 0 0 0 0 160 5.1 3 3 8000 2134 9 999999999 38 0 0 88 0.2 0 0 +5187600.0 17 15 88 95852 0 0 373 0 0 0 0 0 0 0 150 3.6 9 9 8000 2134 9 999999999 42 0 0 88 0.2 0 0 +5191200.0 16.9 14.3 85 95694 0 0 331 0 0 0 0 0 0 0 150 2.6 0 0 8000 2134 9 999999999 39 0 0 88 0.2 0 0 +5194800.0 17 15 88 95852 0 0 373 0 0 0 0 0 0 0 150 2.1 9 9 8000 2134 9 999999999 42 0 0 88 0.2 0 0 +5198400.0 17 15 88 95852 0 0 373 0 0 0 0 0 0 0 180 1.5 9 9 8000 2134 9 999999999 42 0 0 88 0.2 0 0 +5202000.0 16 13 82 95834 0 0 358 0 0 0 0 0 0 0 84 1 8 8 8000 2134 9 999999999 34 0 0 88 0.2 0 0 +5205600.0 16 13 82 95834 0 0 326 0 0 0 0 0 0 0 24 1 0 0 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +5209200.0 14 12 88 95797 0 0 330 0 0 0 0 0 0 0 198 1 3 3 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +5212800.0 16.4 13.4 82 95931 272 1259 342 110 189 73 12081 4717 8050 2440 232 0 3 3 7000 2000 9 999999999 36 0 0 88 0.2 0 0 +5216400.0 18 15 83 95870 561 1392 352 329 478 136 37140 28138 15445 5379 160 2.1 3 3 7000 2000 9 999999999 42 0 0 88 0.2 0 0 +5220000.0 21 15 69 95924 818 1392 367 553 740 118 66254 42806 14166 5676 150 2.6 3 3 8000 2000 9 999999999 41 0 0 88 0.2 0 0 +5223600.0 23 14 57 95959 1026 1392 378 736 787 155 89147 49235 18895 7825 111 1 4 4 8000 2000 9 999999999 37 0 0 88 0.2 0 0 +5227200.0 24 13 50 95977 1171 1392 376 883 845 171 108336 53732 21134 8788 245 1 2 2 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +5230800.0 27 13 42 96029 1243 1392 386 955 805 235 115497 55482 28536 11565 44 1.5 1 1 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +5234400.0 27.5 14.1 44 95767 1237 1392 399 936 864 167 115953 53248 20795 8652 210 4.6 3 3 8000 2000 9 999999999 37 0 0 88 0.2 0 0 +5238000.0 26 15 51 96011 1154 1392 392 863 872 140 107141 51382 17424 7329 220 9.3 3 3 8000 2000 9 999999999 41 0 0 88 0.2 0 0 +5241600.0 26 15 51 96011 999 1392 392 721 821 131 88023 48517 16061 6688 220 8.8 3 3 8000 2000 9 999999999 41 0 0 88 0.2 0 0 +5245200.0 27 14 45 96029 782 1392 392 529 717 125 62705 42790 14887 5865 220 8.2 2 2 8000 2000 9 999999999 37 0 0 88 0.2 0 0 +5248800.0 26 13 45 96011 519 1392 386 299 466 125 33747 26615 14164 4863 220 6.7 2 2 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +5252400.0 25 12 44 95994 227 1392 389 78 102 61 8550 1528 6748 2005 210 5.7 5 5 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +5256000.0 24.5 11.4 44 95791 0 1054 409 0 0 0 0 0 0 0 200 4.6 9 9 8000 1500 9 999999999 29 0 0 88 0.2 0 0 +5259600.0 23 11 47 95959 0 0 400 0 0 0 0 0 0 0 200 6.2 9 9 8000 1524 9 999999999 28 0 0 88 0.2 0 0 +5263200.0 23 10 44 95959 0 0 376 0 0 0 0 0 0 0 190 5.1 5 5 8000 1524 9 999999999 25 0 0 88 0.2 0 0 +5266800.0 22 11 50 95942 0 0 367 0 0 0 0 0 0 0 200 2.6 3 3 8000 1524 9 999999999 28 0 0 88 0.2 0 0 +5270400.0 20 10 53 95906 0 0 356 0 0 0 0 0 0 0 170 3.6 3 3 8000 1524 9 999999999 25 0 0 88 0.2 0 0 +5274000.0 19 10 56 95888 0 0 351 0 0 0 0 0 0 0 170 3.1 3 3 8000 1524 9 999999999 25 0 0 88 0.2 0 0 +5277600.0 19.2 9.7 54 95783 0 0 337 0 0 0 0 0 0 0 130 1.5 0 0 8000 1524 9 999999999 24 0 0 88 0.2 0 0 +5281200.0 17 10 63 95852 0 0 341 0 0 0 0 0 0 0 9 1 3 3 8000 1524 9 999999999 25 0 0 88 0.2 0 0 +5284800.0 19 9 52 95888 0 0 350 0 0 0 0 0 0 0 200 2.1 3 3 8000 1524 9 999999999 23 0 0 88 0.2 0 0 +5288400.0 17 9 59 95852 0 0 343 0 0 0 0 0 0 0 150 2.6 4 4 8000 1524 9 999999999 23 0 0 88 0.2 0 0 +5292000.0 16 10 68 95834 0 0 342 0 0 0 0 0 0 0 290 1 5 5 8000 1524 9 999999999 25 0 0 88 0.2 0 0 +5295600.0 15 10 72 95815 0 0 318 0 0 0 0 0 0 0 21 1 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +5299200.0 17.3 9.5 60 95843 268 1240 328 110 165 78 11996 4815 8554 2521 360 1 0 0 8000 2000 9 999999999 24 0 0 88 0.2 0 0 +5302800.0 19 9 52 95888 557 1391 355 310 426 140 35073 27124 15881 5464 295 1 5 5 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +5306400.0 21 9 46 95924 814 1391 365 524 589 179 60890 41720 20904 7980 8 0.5 5 5 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +5310000.0 23 10 44 95959 1022 1391 371 744 775 174 89467 52317 21047 8615 150 3.1 3 3 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +5313600.0 25 11 41 95994 1167 1391 382 876 858 155 108313 54372 19273 8049 150 3.6 3 3 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +5317200.0 26 12 42 96011 1239 1391 388 940 870 165 116779 54783 20622 8573 190 2.1 3 3 8000 2000 9 999999999 30 0 0 88 0.2 0 0 +5320800.0 27.2 11.4 37 95771 1233 1391 394 936 690 324 110385 54338 38444 14850 180 3.1 3 3 8000 2000 9 999999999 29 0 0 88 0.2 0 0 +5324400.0 28 11 35 96046 1149 1391 428 449 116 354 52066 9751 41222 15473 180 2.1 9 9 8000 1829 9 999999999 27 0 0 88 0.2 0 0 +5328000.0 27 11 37 96029 993 1391 422 375 34 351 42474 3006 39974 14270 230 6.2 9 9 8000 1829 9 999999999 28 0 0 88 0.2 0 0 +5331600.0 25 9 36 95994 777 1391 408 273 42 250 30720 3425 28251 9822 220 8.2 9 9 8000 1829 9 999999999 23 0 0 88 0.2 0 0 +5335200.0 23 8 38 95959 513 1391 374 277 133 228 29750 11108 24620 6702 220 7.7 5 5 8000 4572 9 999999999 21 0 0 88 0.2 0 0 +5338800.0 22 7 38 95942 221 1391 389 42 0 42 4084 0 4114 1514 190 6.7 9 9 8000 1829 9 999999999 19 0 0 88 0.2 0 0 +5342400.0 21.6 7.7 41 95835 0 1025 366 0 0 0 0 0 0 0 150 5.1 5 5 8000 1829 9 999999999 20 0 0 88 0.2 0 0 +5346000.0 20 7 43 95906 0 0 358 0 0 0 0 0 0 0 180 3.1 5 5 8000 5182 9 999999999 19 0 0 88 0.2 0 0 +5349600.0 19 5 40 95888 0 0 350 0 0 0 0 0 0 0 150 4.6 5 5 8000 5182 9 999999999 15 0 0 88 0.2 0 0 +5353200.0 18 3 37 95870 0 0 343 0 0 0 0 0 0 0 160 4.6 5 5 8000 5182 9 999999999 13 0 0 88 0.2 0 0 +5356800.0 17 3 39 95852 0 0 339 0 0 0 0 0 0 0 170 4.6 5 5 8000 5182 9 999999999 13 0 0 88 0.2 0 0 +5360400.0 15 4 48 95815 0 0 325 0 0 0 0 0 0 0 160 3.6 3 3 8000 5182 9 999999999 14 0 0 88 0.2 0 0 +5364000.0 14.8 3.2 46 96015 0 0 310 0 0 0 0 0 0 0 160 2.1 0 0 8000 5182 9 999999999 13 0 0 88 0.2 0 0 +5367600.0 15 3 44 95815 0 0 317 0 0 0 0 0 0 0 190 1.5 1 1 8000 5182 9 999999999 13 0 0 88 0.2 0 0 +5371200.0 13 5 58 95778 0 0 320 0 0 0 0 0 0 0 300 1.5 4 4 8000 5182 9 999999999 15 0 0 88 0.2 0 0 +5374800.0 13 4 54 95778 0 0 317 0 0 0 0 0 0 0 171 0.5 3 3 8000 5182 9 999999999 14 0 0 88 0.2 0 0 +5378400.0 13 5 58 95778 0 0 320 0 0 0 0 0 0 0 170 1.5 4 4 8000 5182 9 999999999 15 0 0 88 0.2 0 0 +5382000.0 13 6 62 95778 0 0 321 0 0 0 0 0 0 0 180 2.1 4 4 8000 5182 9 999999999 17 0 0 88 0.2 0 0 +5385600.0 14.1 6 58 95983 264 1220 310 108 163 77 11790 4903 8422 2476 160 1.5 0 0 8000 5182 9 999999999 17 0 0 88 0.2 0 0 +5389200.0 16 5 48 95834 552 1390 328 331 516 126 37770 32289 14431 5049 170 3.1 2 2 8000 5182 9 999999999 15 0 0 88 0.2 0 0 +5392800.0 19 4 37 95888 810 1390 330 563 706 152 66447 48904 18015 7002 247 2.1 0 0 8000 5182 9 999999999 14 0 0 88 0.2 0 0 +5396400.0 21 5 35 95924 1018 1390 340 755 835 144 92335 55549 17663 7308 208 2.1 0 0 8000 5182 9 999999999 15 0 0 88 0.2 0 0 +5400000.0 23 7 36 95959 1162 1390 352 889 800 219 107232 57720 26598 10810 150 4.1 0 0 8000 5182 9 999999999 19 0 0 88 0.2 0 0 +5403600.0 25 8 34 95994 1234 1390 362 954 804 240 115425 58390 29169 11761 202 3.1 0 0 8000 5182 9 999999999 20 0 0 88 0.2 0 0 +5407200.0 26.6 7.5 30 95837 1228 1390 370 949 804 239 114770 58559 29021 11704 200 5.7 0 0 8000 5182 9 999999999 19 0 0 88 0.2 0 0 +5410800.0 27 7 28 96029 1144 1390 371 871 798 214 105076 57395 25907 10553 220 5.7 0 0 8000 5182 9 999999999 18 0 0 88 0.2 0 0 +5414400.0 27 8 30 96029 988 1390 372 725 831 133 88577 53279 16366 6771 210 6.2 0 0 8000 5182 9 999999999 20 0 0 88 0.2 0 0 +5418000.0 27 8 30 96029 771 1390 372 525 703 134 61980 45650 15932 6191 220 6.2 0 0 8000 5182 9 999999999 20 0 0 88 0.2 0 0 +5421600.0 26 8 32 96011 507 1390 367 293 474 119 33127 27748 13579 4653 210 5.7 0 0 8000 5182 9 999999999 20 0 0 88 0.2 0 0 +5425200.0 24 8 36 95977 215 1390 358 77 169 51 8575 1741 5692 1736 220 6.2 0 0 8000 5182 9 999999999 20 0 0 88 0.2 0 0 +5428800.0 22.5 6.8 36 95794 0 996 349 0 0 0 0 0 0 0 210 6.7 0 0 8000 5182 9 999999999 18 0 0 88 0.2 0 0 +5432400.0 22 7 38 95942 0 0 347 0 0 0 0 0 0 0 210 5.7 0 0 8000 5182 9 999999999 19 0 0 88 0.2 0 0 +5436000.0 21 7 40 95924 0 0 349 0 0 0 0 0 0 0 130 2.1 1 1 8000 5182 9 999999999 19 0 0 88 0.2 0 0 +5439600.0 19 7 46 95888 0 0 344 0 0 0 0 0 0 0 130 1.5 2 2 8000 5182 9 999999999 19 0 0 88 0.2 0 0 +5443200.0 18 7 49 95870 0 0 339 0 0 0 0 0 0 0 170 3.1 2 2 8000 5182 9 999999999 19 0 0 88 0.2 0 0 +5446800.0 18 7 49 95870 0 0 339 0 0 0 0 0 0 0 31 0.5 2 2 8000 5182 9 999999999 19 0 0 88 0.2 0 0 +5450400.0 15.3 7.1 58 95722 0 0 317 0 0 0 0 0 0 0 320 1 0 0 8000 5182 9 999999999 19 0 0 88 0.2 0 0 +5454000.0 15 6 55 95815 0 0 328 0 0 0 0 0 0 0 208 1 3 3 8000 5182 9 999999999 17 0 0 88 0.2 0 0 +5457600.0 15 7 59 95815 0 0 331 0 0 0 0 0 0 0 20 2.1 4 4 8000 5182 9 999999999 19 0 0 88 0.2 0 0 +5461200.0 15 7 59 95815 0 0 331 0 0 0 0 0 0 0 30 2.1 4 4 8000 5182 9 999999999 19 0 0 88 0.2 0 0 +5464800.0 13 6 62 95778 0 0 321 0 0 0 0 0 0 0 360 2.1 4 4 8000 5182 9 999999999 17 0 0 88 0.2 0 0 +5468400.0 12 6 67 95759 0 0 319 0 0 0 0 0 0 0 216 1 5 5 8000 5182 9 999999999 17 0 0 88 0.2 0 0 +5472000.0 14.3 6.5 59 95703 260 1200 350 54 0 54 5314 0 5353 1949 20 1.5 9 9 8000 5400 9 999999999 18 0 0 88 0.2 0 0 +5475600.0 17 7 52 95852 548 1389 364 169 54 148 19027 3612 16681 5629 50 1.5 9 9 8000 5791 9 999999999 19 0 0 88 0.2 0 0 +5479200.0 20 6 40 95906 806 1389 343 558 626 195 64458 46804 22595 8465 228 1 1 1 8000 5791 9 999999999 17 0 0 88 0.2 0 0 +5482800.0 23 7 36 95959 1013 1389 352 749 840 136 91841 54412 16782 6964 337 1 0 0 8000 5791 9 999999999 19 0 0 88 0.2 0 0 +5486400.0 25 8 34 95994 1158 1389 362 883 738 268 104863 56597 31996 12680 54 1 0 0 8000 5791 9 999999999 20 0 0 88 0.2 0 0 +5490000.0 28 7 26 96046 1229 1389 422 491 87 414 56953 7826 48361 17574 150 5.1 9 9 8000 6096 9 999999999 18 0 0 88 0.2 0 0 +5493600.0 29 6 23 95660 1223 1389 426 489 51 444 56330 4768 51521 18294 170 4.6 9 9 8000 6000 9 999999999 17 0 0 88 0.2 0 0 +5497200.0 29 6 23 96063 1138 1389 426 448 51 406 51380 4692 46928 16860 150 5.1 9 9 8000 6096 9 999999999 17 0 0 88 0.2 0 0 +5500800.0 31 4 18 96096 982 1389 435 374 69 325 42683 6157 37327 13531 210 5.1 9 9 8000 6096 9 999999999 14 0 0 88 0.2 0 0 +5504400.0 29 5 22 96063 765 1389 425 269 22 257 30238 1885 29034 9905 220 7.2 9 9 8000 5486 9 999999999 15 0 0 88 0.2 0 0 +5508000.0 27 5 24 96029 501 1389 414 149 6 147 16606 397 16439 5321 210 6.2 9 9 8000 5182 9 999999999 15 0 0 88 0.2 0 0 +5511600.0 26 4 24 96011 209 1389 407 38 0 38 3738 0 3765 1388 210 5.7 9 9 8000 4877 9 999999999 14 0 0 88 0.2 0 0 +5515200.0 25 4.3 26 95715 0 966 402 0 0 0 0 0 0 0 180 5.7 9 9 8000 5400 9 999999999 14 0 0 88 0.2 0 0 +5518800.0 23 6 33 95959 0 0 371 0 0 0 0 0 0 0 160 3.6 5 5 8000 5400 9 999999999 17 0 0 88 0.2 0 0 +5522400.0 22 6 35 95942 0 0 346 0 0 0 0 0 0 0 160 3.6 0 0 8000 5400 9 999999999 17 0 0 88 0.2 0 0 +5526000.0 21 4 33 95924 0 0 339 0 0 0 0 0 0 0 140 2.6 0 0 8000 5400 9 999999999 14 0 0 88 0.2 0 0 +5529600.0 20 4 35 95906 0 0 334 0 0 0 0 0 0 0 150 1.5 0 0 8000 5400 9 999999999 14 0 0 88 0.2 0 0 +5533200.0 16 5 48 95834 0 0 328 0 0 0 0 0 0 0 330 1.5 2 2 8000 5400 9 999999999 15 0 0 88 0.2 0 0 +5536800.0 16.4 5 47 95817 0 0 319 0 0 0 0 0 0 0 189 0 0 0 8000 5400 9 999999999 15 0 0 88 0.2 0 0 +5540400.0 15 5 51 95815 0 0 327 0 0 0 0 0 0 0 288 1 3 3 8000 5400 9 999999999 15 0 0 88 0.2 0 0 +5544000.0 13 5 58 95778 0 0 304 0 0 0 0 0 0 0 236 1 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +5547600.0 14 5 55 95797 0 0 309 0 0 0 0 0 0 0 229 1 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +5551200.0 13 5 58 95778 0 0 304 0 0 0 0 0 0 0 20 2.6 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +5554800.0 14 5 55 95797 0 0 322 0 0 0 0 0 0 0 30 1.5 3 3 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +5558400.0 16.4 4.8 46 95893 256 1181 319 103 157 74 11278 4472 8140 2388 80 0 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +5562000.0 19 5 40 95888 544 1389 337 326 516 124 37165 31919 14144 4942 340 1.5 1 1 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +5565600.0 23 5 31 95959 801 1389 349 556 708 147 65606 48234 17391 6769 108 1 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +5569200.0 26 5 26 96011 1009 1389 364 748 833 142 91415 55326 17459 7219 20 1.5 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +5572800.0 27 5 24 96029 1153 1389 369 883 798 220 106562 58472 26636 10814 198 1.5 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +5576400.0 29 4 20 96063 1225 1389 377 952 803 243 115039 60105 29550 11877 170 4.1 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +5580000.0 30.7 4.4 19 95650 1218 1389 409 879 659 301 104445 53020 35938 14013 170 4.6 5 5 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +5583600.0 31 5 19 96096 1133 1389 389 864 859 163 106364 58066 20088 8352 150 5.1 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +5587200.0 32 5 18 96113 977 1389 394 718 824 138 87526 54489 16891 6953 170 4.6 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +5590800.0 32 3 16 96113 759 1389 391 519 681 146 60860 46919 17244 6595 200 5.1 0 0 8000 2000 9 999999999 12 0 0 88 0.2 0 0 +5594400.0 31 2 16 96096 495 1389 385 286 478 115 32424 28517 13109 4475 220 5.1 0 0 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +5598000.0 29 1 16 96063 203 1389 373 71 91 58 7776 1356 6333 1827 220 5.1 0 0 8000 2000 9 999999999 10 0 0 88 0.2 0 0 +5601600.0 27.5 0.1 17 95511 0 937 365 0 0 0 0 0 0 0 210 4.6 0 0 8000 2000 9 999999999 9 0 0 88 0.2 0 0 +5605200.0 25 1 21 95994 0 0 354 0 0 0 0 0 0 0 150 3.1 0 0 8000 2000 9 999999999 10 0 0 88 0.2 0 0 +5608800.0 24 3 25 95977 0 0 352 0 0 0 0 0 0 0 140 3.6 0 0 8000 2000 9 999999999 12 0 0 88 0.2 0 0 +5612400.0 23 2 25 95959 0 0 346 0 0 0 0 0 0 0 140 1.5 0 0 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +5616000.0 20 4 35 95906 0 0 334 0 0 0 0 0 0 0 205 0.5 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +5619600.0 19 3 34 95888 0 0 329 0 0 0 0 0 0 0 261 1 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +5623200.0 17.9 2.7 36 95561 0 0 323 0 0 0 0 0 0 0 357 0 0 0 8000 2000 9 999999999 12 0 0 88 0.2 0 0 +5626800.0 18 3 37 95870 0 0 324 0 0 0 0 0 0 0 180 1.5 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +5630400.0 16 5 48 95834 0 0 328 0 0 0 0 0 0 0 268 1 2 2 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +5634000.0 14 3 47 95797 0 0 317 0 0 0 0 0 0 0 47 1 2 2 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +5637600.0 16 4 45 95834 0 0 327 0 0 0 0 0 0 0 237 1 2 2 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +5641200.0 15 3 44 95815 0 0 317 0 0 0 0 0 0 0 30 1.5 1 1 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +5644800.0 17.2 3.2 39 95614 252 1162 360 52 0 52 5097 0 5134 1867 201 0 9 9 8000 6000 9 999999999 13 0 0 88 0.2 0 0 +5648400.0 20 3 32 95906 540 1388 333 324 453 147 36377 30673 16613 5569 11 1 0 0 8000 6000 9 999999999 13 0 0 88 0.2 0 0 +5652000.0 22 4 31 95942 797 1388 343 553 701 150 65145 48366 17717 6868 61 1 0 0 8000 6000 9 999999999 14 0 0 88 0.2 0 0 +5655600.0 26 3 23 96011 1005 1388 361 746 826 148 90954 56082 18098 7456 194 0.5 0 0 8000 6000 9 999999999 12 0 0 88 0.2 0 0 +5659200.0 28 3 20 96046 1149 1388 371 882 798 221 106342 59203 26787 10860 150 3.1 0 0 8000 6000 9 999999999 12 0 0 88 0.2 0 0 +5662800.0 29 3 19 96063 1220 1388 376 949 764 277 113505 60026 33343 13168 180 3.6 0 0 8000 6000 9 999999999 12 0 0 88 0.2 0 0 +5666400.0 29.5 0.4 15 95583 1212 1388 421 488 115 388 56880 10377 45491 16763 210 5.1 9 9 8000 6000 9 999999999 9 0 0 88 0.2 0 0 +5670000.0 30 2 17 96079 1128 1388 380 863 757 248 102914 58820 29684 11849 220 5.1 0 0 8000 6000 9 999999999 11 0 0 88 0.2 0 0 +5673600.0 28 5 23 96046 971 1388 373 713 822 137 86827 54299 16819 6918 200 5.7 0 0 8000 6000 9 999999999 15 0 0 88 0.2 0 0 +5677200.0 27 5 24 96029 753 1388 369 512 685 140 60144 45962 16496 6333 180 6.2 0 0 8000 6000 9 999999999 15 0 0 88 0.2 0 0 +5680800.0 27 5 24 96029 489 1388 369 279 465 115 31606 27131 13092 4453 180 4.6 0 0 8000 6000 9 999999999 15 0 0 88 0.2 0 0 +5684400.0 25 4 26 95994 197 1388 358 67 141 47 7447 963 5248 1584 150 4.1 0 0 8000 6000 9 999999999 14 0 0 88 0.2 0 0 +5688000.0 22.7 3.9 29 95675 0 907 364 0 0 0 0 0 0 0 190 6.7 4 4 8000 6000 9 999999999 14 0 0 88 0.2 0 0 +5691600.0 22 3 29 95942 0 0 342 0 0 0 0 0 0 0 130 2.6 0 0 8000 6000 9 999999999 12 0 0 88 0.2 0 0 +5695200.0 20 4 35 95906 0 0 334 0 0 0 0 0 0 0 160 3.6 0 0 8000 6000 9 999999999 14 0 0 88 0.2 0 0 +5698800.0 18 4 39 95870 0 0 331 0 0 0 0 0 0 0 150 2.6 1 1 8000 6000 9 999999999 14 0 0 88 0.2 0 0 +5702400.0 17 4 42 95852 0 0 327 0 0 0 0 0 0 0 170 3.1 1 1 8000 6000 9 999999999 14 0 0 88 0.2 0 0 +5706000.0 17 4 42 95852 0 0 327 0 0 0 0 0 0 0 25 1 1 1 8000 6000 9 999999999 14 0 0 88 0.2 0 0 +5709600.0 15 3.3 45 95735 0 0 311 0 0 0 0 0 0 0 180 1.5 0 0 8000 6000 9 999999999 13 0 0 88 0.2 0 0 +5713200.0 16 4 45 95834 0 0 327 0 0 0 0 0 0 0 150 1.5 2 2 8000 6000 9 999999999 14 0 0 88 0.2 0 0 +5716800.0 13 4 54 95778 0 0 317 0 0 0 0 0 0 0 322 0.5 3 3 8000 6000 9 999999999 14 0 0 88 0.2 0 0 +5720400.0 12 5 62 95759 0 0 316 0 0 0 0 0 0 0 280 1.5 4 4 8000 6000 9 999999999 15 0 0 88 0.2 0 0 +5724000.0 11 4 62 95740 0 0 310 0 0 0 0 0 0 0 30 2.1 4 4 8000 6000 9 999999999 14 0 0 88 0.2 0 0 +5727600.0 11 4 62 95740 0 0 295 0 0 0 0 0 0 0 17 1 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +5731200.0 13.4 4.4 54 95790 248 1143 306 98 149 71 10755 3975 7857 2300 356 0 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +5734800.0 17 4 42 95852 536 1387 327 320 512 122 36473 31600 13932 4854 290 2.1 1 1 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +5738400.0 20 4 35 95906 793 1387 334 549 700 149 64725 48198 17604 6819 193 1 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +5742000.0 23 3 27 95959 1000 1387 347 743 825 147 90471 55959 17999 7412 54 1 0 0 8000 2000 9 999999999 12 0 0 88 0.2 0 0 +5745600.0 26 3 23 96011 1144 1387 361 878 797 220 105831 59099 26632 10803 160 3.6 0 0 8000 2000 9 999999999 12 0 0 88 0.2 0 0 +5749200.0 27 2 20 96029 1215 1387 365 946 802 243 114241 60699 29529 11859 170 5.1 0 0 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +5752800.0 26.1 3.5 23 95705 1207 1387 362 936 801 239 113119 59984 28986 11669 210 5.7 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +5756400.0 27 2 20 96029 1122 1387 365 858 796 214 103385 59067 25931 10531 220 7.7 0 0 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +5760000.0 27 -1 16 96029 965 1387 361 714 808 151 86445 56459 18360 7484 210 7.7 0 0 8000 2000 9 999999999 8 0 0 88 0.2 0 0 +5763600.0 26 -1 17 96011 747 1387 356 511 664 153 59700 47346 17974 6792 200 7.2 0 0 8000 2000 9 999999999 8 0 0 88 0.2 0 0 +5767200.0 25 -1 18 95994 483 1387 351 277 414 133 31002 26688 14912 4874 220 5.7 0 0 8000 2000 9 999999999 8 0 0 88 0.2 0 0 +5770800.0 23 -1 20 95959 190 1387 342 64 80 53 7037 876 5856 1689 210 5.1 0 0 8000 2000 9 999999999 8 0 0 88 0.2 0 0 +5774400.0 19.9 -2.4 22 95843 0 877 326 0 0 0 0 0 0 0 180 5.7 0 0 8000 2000 9 999999999 7 0 0 88 0.2 0 0 +5778000.0 18 2 34 95870 0 0 323 0 0 0 0 0 0 0 150 3.6 0 0 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +5781600.0 17 3 39 95852 0 0 339 0 0 0 0 0 0 0 150 4.6 5 5 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +5785200.0 17 3 39 95852 0 0 359 0 0 0 0 0 0 0 170 4.1 9 9 8000 5182 9 999999999 13 0 0 88 0.2 0 0 +5788800.0 17 4 42 95852 0 0 360 0 0 0 0 0 0 0 150 2.1 9 9 8000 4877 9 999999999 14 0 0 88 0.2 0 0 +5792400.0 16 4 45 95834 0 0 355 0 0 0 0 0 0 0 160 2.6 9 9 8000 3658 9 999999999 14 0 0 88 0.2 0 0 +5796000.0 15.7 6.4 54 96022 0 0 356 0 0 0 0 0 0 0 160 3.1 9 9 8000 4500 9 999999999 18 0 0 88 0.2 0 0 +5799600.0 16 8 59 95834 0 0 360 0 0 0 0 0 0 0 160 3.1 9 9 8000 4572 9 999999999 21 0 0 88 0.2 0 0 +5803200.0 15 9 67 95815 0 0 336 0 0 0 0 0 0 0 170 2.6 5 5 8000 4572 9 999999999 23 0 0 88 0.2 0 0 +5806800.0 14 9 72 95797 0 0 332 0 0 0 0 0 0 0 180 2.6 5 5 8000 4572 9 999999999 23 0 0 88 0.2 0 0 +5810400.0 15 9 67 95815 0 0 331 0 0 0 0 0 0 0 322 1 3 3 8000 4572 9 999999999 23 0 0 88 0.2 0 0 +5814000.0 12 8 76 95759 0 0 328 0 0 0 0 0 0 0 264 1 7 7 8000 4572 9 999999999 21 0 0 88 0.2 0 0 +5817600.0 13.9 7.3 64 96235 244 1124 324 94 136 70 10293 3295 7705 2257 66 0 3 3 8000 4572 9 999999999 19 0 0 88 0.2 0 0 +5821200.0 17 9 59 95852 532 1386 343 305 454 131 34479 27798 14823 5090 16 1 4 4 8000 4572 9 999999999 23 0 0 88 0.2 0 0 +5824800.0 18 7 49 95870 789 1386 339 540 704 140 63892 46600 16588 6467 234 1 2 2 8000 4572 9 999999999 19 0 0 88 0.2 0 0 +5828400.0 20 7 43 95906 996 1386 344 734 856 118 90678 53691 14635 6095 16 3.1 1 1 8000 4572 9 999999999 19 0 0 88 0.2 0 0 +5832000.0 22 10 46 95942 1140 1386 366 853 854 150 105453 54405 18678 7813 170 4.6 3 3 8000 4572 9 999999999 25 0 0 88 0.2 0 0 +5835600.0 22 10 46 95942 1210 1386 366 917 868 160 113972 55526 19939 8300 160 4.1 3 3 8000 4572 9 999999999 25 0 0 88 0.2 0 0 +5839200.0 23.4 9.9 42 96274 1202 1386 372 910 866 159 113025 55476 19821 8255 160 4.6 3 3 8000 4572 9 999999999 25 0 0 88 0.2 0 0 +5842800.0 25 10 39 95994 1116 1386 381 832 851 146 102726 53990 18146 7598 160 4.6 3 3 8000 4572 9 999999999 25 0 0 88 0.2 0 0 +5846400.0 25 9 36 95994 959 1386 364 698 821 129 85116 51898 15861 6541 170 4.1 0 0 8000 4572 9 999999999 23 0 0 88 0.2 0 0 +5850000.0 25 8 34 95994 741 1386 362 498 688 131 58729 44205 15448 5953 160 4.6 0 0 8000 4572 9 999999999 20 0 0 88 0.2 0 0 +5853600.0 25 7 32 95994 476 1386 361 268 450 114 30294 25462 12879 4354 210 5.7 0 0 8000 4572 9 999999999 19 0 0 88 0.2 0 0 +5857200.0 23 5 31 95959 184 1386 349 60 119 44 6665 302 4931 1480 210 5.7 0 0 8000 4572 9 999999999 15 0 0 88 0.2 0 0 +5860800.0 21.5 3.3 30 96118 0 847 340 0 0 0 0 0 0 0 220 4.1 0 0 8000 4572 9 999999999 13 0 0 88 0.2 0 0 +5864400.0 21 3 30 95924 0 0 338 0 0 0 0 0 0 0 180 3.6 0 0 8000 4572 9 999999999 12 0 0 88 0.2 0 0 +5868000.0 20 4 35 95906 0 0 334 0 0 0 0 0 0 0 210 1.5 0 0 8000 4572 9 999999999 14 0 0 88 0.2 0 0 +5871600.0 19 5 40 95888 0 0 337 0 0 0 0 0 0 0 190 5.7 1 1 8000 4572 9 999999999 15 0 0 88 0.2 0 0 +5875200.0 19 4 37 95888 0 0 330 0 0 0 0 0 0 0 200 3.1 0 0 8000 4572 9 999999999 14 0 0 88 0.2 0 0 +5878800.0 16 6 51 95834 0 0 332 0 0 0 0 0 0 0 180 3.1 3 3 8000 4572 9 999999999 17 0 0 88 0.2 0 0 +5882400.0 15.8 6.4 54 95996 0 0 318 0 0 0 0 0 0 0 170 3.1 0 0 8000 4572 9 999999999 18 0 0 88 0.2 0 0 +5886000.0 15 6 55 95815 0 0 328 0 0 0 0 0 0 0 138 1 3 3 8000 4572 9 999999999 17 0 0 88 0.2 0 0 +5889600.0 14 6 59 95797 0 0 326 0 0 0 0 0 0 0 9 0.5 4 4 8000 4572 9 999999999 17 0 0 88 0.2 0 0 +5893200.0 12 6 67 95759 0 0 319 0 0 0 0 0 0 0 50 2.1 5 5 8000 4572 9 999999999 17 0 0 88 0.2 0 0 +5896800.0 11 5 66 95740 0 0 314 0 0 0 0 0 0 0 199 0.5 5 5 8000 4572 9 999999999 15 0 0 88 0.2 0 0 +5900400.0 12 6 67 95759 0 0 319 0 0 0 0 0 0 0 50 1.5 5 5 8000 4572 9 999999999 17 0 0 88 0.2 0 0 +5904000.0 12 5.7 65 96057 240 1105 301 93 135 70 10199 3289 7675 2234 330 1 0 0 8000 4572 9 999999999 17 0 0 88 0.2 0 0 +5907600.0 16 7 55 95834 528 1386 320 312 500 121 35483 30046 13863 4812 126 1 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +5911200.0 19 7 46 95888 785 1386 344 538 708 137 63693 46614 16320 6364 261 1 2 2 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +5914800.0 21 7 40 95924 992 1386 349 730 834 133 89397 53801 16363 6776 200 2.1 1 1 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +5918400.0 23 7 36 95959 1135 1386 352 864 796 212 104193 57101 25677 10467 200 2.6 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +5922000.0 25 7 32 95994 1205 1386 361 929 800 233 112321 58309 28339 11451 170 3.6 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +5925600.0 27 4.5 24 96005 1197 1386 368 925 800 234 111765 59343 28451 11479 180 5.1 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +5929200.0 27 3 21 96029 1111 1386 366 847 794 210 101989 58420 25392 10329 160 6.2 0 0 8000 2000 9 999999999 12 0 0 88 0.2 0 0 +5932800.0 28 3 20 96046 953 1386 371 699 812 140 84891 54646 17118 7002 220 5.7 0 0 8000 2000 9 999999999 12 0 0 88 0.2 0 0 +5936400.0 27 4 23 96029 735 1386 367 496 673 139 58223 45395 16416 6255 220 7.2 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +5940000.0 26 4 24 96011 470 1386 362 265 472 105 30079 26139 11926 4073 210 7.2 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +5943600.0 23 4 29 95959 177 1386 348 57 110 43 6307 91 4764 1426 210 7.2 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +5947200.0 21.1 4 33 95997 0 816 339 0 0 0 0 0 0 0 190 6.2 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +5950800.0 20 4 35 95906 0 0 334 0 0 0 0 0 0 0 170 3.6 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +5954400.0 19 5 40 95888 0 0 337 0 0 0 0 0 0 0 140 3.1 1 1 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +5958000.0 18 5 42 95870 0 0 333 0 0 0 0 0 0 0 150 3.1 1 1 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +5961600.0 16 5 48 95834 0 0 328 0 0 0 0 0 0 0 170 1.5 2 2 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +5965200.0 16 5 48 95834 0 0 328 0 0 0 0 0 0 0 170 1.5 2 2 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +5968800.0 13.7 5.1 56 96108 0 0 308 0 0 0 0 0 0 0 13 0 0 0 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +5972400.0 12 5 62 95759 0 0 316 0 0 0 0 0 0 0 138 0.5 4 4 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +5976000.0 13 5 58 95778 0 0 320 0 0 0 0 0 0 0 160 1 4 4 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +5979600.0 13 4 54 95778 0 0 317 0 0 0 0 0 0 0 160 3.6 3 3 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +5983200.0 12 4 58 95759 0 0 315 0 0 0 0 0 0 0 343 1.5 4 4 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +5986800.0 10 3 62 95721 0 0 290 0 0 0 0 0 0 0 143 0.5 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +5990400.0 12 4.7 61 96293 236 1086 300 91 131 69 9952 3114 7533 2190 360 2.1 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +5994000.0 16 5 48 95834 524 1385 328 309 496 121 35107 30143 13801 4778 10 2.6 2 2 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +5997600.0 18 4 39 95870 780 1385 331 538 694 146 63373 47609 17322 6691 240 1 1 1 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +6001200.0 20 4 35 95906 987 1385 334 729 823 142 88917 55124 17409 7170 182 1 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +6004800.0 23 4 29 95959 1130 1385 348 863 795 214 104100 58347 25974 10561 170 3.1 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +6008400.0 24 5 29 95977 1200 1385 354 927 799 234 112062 59134 28485 11494 160 4.1 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +6012000.0 25.9 5.2 26 96223 1191 1385 363 919 799 232 111032 58910 28130 11365 180 6.2 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +6015600.0 27 2 20 96029 1105 1385 365 842 793 209 101472 58661 25327 10296 180 6.2 0 0 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +6019200.0 27 0 17 96029 947 1385 362 696 804 146 84327 55553 17780 7238 160 6.7 0 0 8000 2000 9 999999999 9 0 0 88 0.2 0 0 +6022800.0 27 1 18 96029 728 1385 363 493 661 145 57631 45896 17068 6446 170 5.7 0 0 8000 2000 9 999999999 10 0 0 88 0.2 0 0 +6026400.0 26 0 18 96011 464 1385 357 261 398 128 29178 24822 14337 4652 220 5.7 0 0 8000 2000 9 999999999 9 0 0 88 0.2 0 0 +6030000.0 24 2 24 95977 171 1385 350 54 99 41 5943 0 4597 1372 220 5.7 0 0 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +6033600.0 22.6 3.1 28 96279 0 786 345 0 0 0 0 0 0 0 200 4.1 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +6037200.0 22 3 29 95942 0 0 342 0 0 0 0 0 0 0 200 4.6 0 0 8000 2000 9 999999999 12 0 0 88 0.2 0 0 +6040800.0 20 4 35 95906 0 0 334 0 0 0 0 0 0 0 230 3.1 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +6044400.0 18 5 42 95870 0 0 333 0 0 0 0 0 0 0 240 1.5 1 1 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +6048000.0 15 4 48 95815 0 0 322 0 0 0 0 0 0 0 30 1.5 2 2 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +6051600.0 15 5 51 95815 0 0 313 0 0 0 0 0 0 0 320 2.1 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +6055200.0 13.7 4.5 54 96146 0 0 307 0 0 0 0 0 0 0 328 0 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +6058800.0 14 5 55 95797 0 0 322 0 0 0 0 0 0 0 126 1 3 3 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +6062400.0 11 4 62 95740 0 0 310 0 0 0 0 0 0 0 356 2.1 4 4 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +6066000.0 11 4 62 95740 0 0 310 0 0 0 0 0 0 0 48 1 4 4 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +6069600.0 10 4 66 95721 0 0 308 0 0 0 0 0 0 0 20 2.6 5 5 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +6073200.0 9 3 66 95702 0 0 286 0 0 0 0 0 0 0 10 2.1 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +6076800.0 13.1 4.3 55 95983 232 1067 304 89 128 67 9718 2923 7389 2147 50 2.1 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +6080400.0 16 5 48 95834 520 1384 328 306 494 120 34753 29865 13694 4735 310 2.1 2 2 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +6084000.0 20 5 37 95906 776 1384 335 534 698 142 62956 47116 16825 6514 107 0.5 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +6087600.0 23 4 29 95959 983 1384 348 726 823 141 88453 55011 17286 7117 10 2.1 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +6091200.0 26 3 23 96011 1125 1384 361 861 794 215 103724 58659 25986 10559 25 1.5 0 0 8000 2000 9 999999999 12 0 0 88 0.2 0 0 +6094800.0 28 1 17 96046 1194 1384 368 928 799 239 112104 60645 28981 11655 174 1.5 0 0 8000 2000 9 999999999 10 0 0 88 0.2 0 0 +6098400.0 30.8 0.3 14 95633 1186 1384 381 921 798 237 111164 60753 28755 11569 120 2.6 0 0 8000 2000 9 999999999 9 0 0 88 0.2 0 0 +6102000.0 32 -2 11 96113 1099 1384 384 842 792 213 101352 59898 25722 10422 150 5.1 0 0 8000 2000 9 999999999 7 0 0 88 0.2 0 0 +6105600.0 34 -3 9 96146 941 1384 393 694 800 150 83892 56331 18189 7375 160 5.1 0 0 8000 2000 9 999999999 7 0 0 88 0.2 0 0 +6109200.0 34 -3 9 96146 722 1384 393 491 651 151 57191 46539 17642 6605 150 5.1 0 0 8000 2000 9 999999999 7 0 0 88 0.2 0 0 +6112800.0 33 -2 10 96129 457 1384 389 257 397 126 28727 24710 14097 4565 170 5.7 0 0 8000 2000 9 999999999 7 0 0 88 0.2 0 0 +6116400.0 30 -1 13 96079 164 1384 376 50 54 44 5559 51 4873 1411 220 4.1 0 0 8000 2000 9 999999999 8 0 0 88 0.2 0 0 +6120000.0 26.4 0.7 19 95492 0 756 360 0 0 0 0 0 0 0 180 3.6 0 0 8000 2000 9 999999999 10 0 0 88 0.2 0 0 +6123600.0 25 2 22 95994 0 0 355 0 0 0 0 0 0 0 150 3.1 0 0 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +6127200.0 24 2 24 95977 0 0 350 0 0 0 0 0 0 0 150 2.6 0 0 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +6130800.0 22 3 29 95942 0 0 342 0 0 0 0 0 0 0 190 1.5 0 0 8000 2000 9 999999999 12 0 0 88 0.2 0 0 +6134400.0 19 2 32 95888 0 0 327 0 0 0 0 0 0 0 121 1 0 0 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +6138000.0 17 2 36 95852 0 0 318 0 0 0 0 0 0 0 360 1 0 0 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +6141600.0 15 1.9 41 95555 0 0 310 0 0 0 0 0 0 0 327 0 0 0 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +6145200.0 14 2 44 95797 0 0 311 0 0 0 0 0 0 0 122 1 1 1 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +6148800.0 13 2 47 95778 0 0 311 0 0 0 0 0 0 0 105 0 2 2 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +6152400.0 14 1 41 95797 0 0 310 0 0 0 0 0 0 0 80 0.5 1 1 8000 2000 9 999999999 10 0 0 88 0.2 0 0 +6156000.0 12 1 47 95759 0 0 306 0 0 0 0 0 0 0 113 1 2 2 8000 2000 9 999999999 10 0 0 88 0.2 0 0 +6159600.0 11 2 54 95740 0 0 293 0 0 0 0 0 0 0 3 0.5 0 0 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +6163200.0 14.5 0.9 40 95546 228 1049 306 87 95 71 9451 2422 7768 2196 73 0 0 0 8000 2000 9 999999999 10 0 0 88 0.2 0 0 +6166800.0 19 3 34 95888 516 1383 329 304 500 118 34649 30315 13445 4650 150 1.5 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +6170400.0 24 2 24 95977 772 1383 350 533 684 151 62546 47841 17755 6810 140 2.1 0 0 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +6174000.0 26 2 21 96011 978 1383 360 724 817 146 88009 55698 17817 7310 160 3.6 0 0 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +6177600.0 28 4 22 96046 1120 1383 372 855 794 212 103042 58136 25667 10443 150 3.6 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +6181200.0 29 3 19 96063 1189 1383 376 921 867 175 113674 59822 21734 8983 160 5.1 0 0 8000 2000 9 999999999 12 0 0 88 0.2 0 0 +6184800.0 29.2 3.5 19 95530 1180 1383 400 848 655 289 100677 52641 34527 13517 150 5.1 5 5 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +6188400.0 31 4 18 96096 1093 1383 387 829 849 158 101824 57614 19511 8108 160 5.1 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +6192000.0 30 7 24 96079 935 1383 386 678 816 127 82690 52234 15507 6365 180 5.1 0 0 8000 2000 9 999999999 18 0 0 88 0.2 0 0 +6195600.0 29 10 31 96063 716 1383 385 475 677 125 55892 42033 14748 5659 220 6.2 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +6199200.0 26 10 37 96011 450 1383 370 247 439 104 27862 22581 11740 3968 220 6.2 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +6202800.0 23 11 47 95959 158 1383 368 46 54 40 5098 0 4440 1307 160 4.1 2 2 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +6206400.0 21.5 10.3 49 95578 0 725 372 0 0 0 0 0 0 0 150 4.6 6 6 8000 6900 9 999999999 26 0 0 88 0.2 0 0 +6210000.0 20 10 53 95906 0 0 356 0 0 0 0 0 0 0 180 5.7 3 3 8000 6900 9 999999999 25 0 0 88 0.2 0 0 +6213600.0 18 11 64 95870 0 0 353 0 0 0 0 0 0 0 160 3.6 5 5 8000 6900 9 999999999 28 0 0 88 0.2 0 0 +6217200.0 17 10 63 95852 0 0 347 0 0 0 0 0 0 0 170 3.1 5 5 8000 6900 9 999999999 25 0 0 88 0.2 0 0 +6220800.0 17 10 63 95852 0 0 347 0 0 0 0 0 0 0 190 2.1 5 5 8000 6900 9 999999999 25 0 0 88 0.2 0 0 +6224400.0 16 10 68 95834 0 0 362 0 0 0 0 0 0 0 160 3.1 9 9 8000 5486 9 999999999 25 0 0 88 0.2 0 0 +6228000.0 15.3 10.3 72 95655 0 0 359 0 0 0 0 0 0 0 170 2.6 9 9 8000 5400 9 999999999 26 0 0 88 0.2 0 0 +6231600.0 15 10 72 95815 0 0 357 0 0 0 0 0 0 0 180 3.6 9 9 8000 5486 9 999999999 25 0 0 88 0.2 0 0 +6235200.0 14 11 82 95797 0 0 353 0 0 0 0 0 0 0 170 3.1 9 9 8000 4877 9 999999999 28 0 0 88 0.2 0 0 +6238800.0 14 11 82 95797 0 0 353 0 0 0 0 0 0 0 170 3.1 9 9 8000 4877 9 999999999 28 0 0 88 0.2 0 0 +6242400.0 13 11 88 95778 0 0 349 0 0 0 0 0 0 0 150 4.1 9 9 8000 4877 9 999999999 28 0 0 88 0.2 0 0 +6246000.0 12 10 88 95759 0 0 343 0 0 0 0 0 0 0 170 5.1 9 9 8000 5182 9 999999999 26 0 0 88 0.2 0 0 +6249600.0 13.3 10.6 84 95949 224 1031 350 43 0 43 4203 0 4234 1559 170 4.1 9 9 8000 5100 9 999999999 27 0 0 88 0.2 0 0 +6253200.0 15 11 77 95815 512 1383 358 153 15 148 17078 955 16533 5425 210 2.1 9 9 8000 4877 9 999999999 28 0 0 88 0.2 0 0 +6256800.0 17 11 68 95852 768 1383 368 269 40 247 30250 3218 27909 9715 190 1.5 9 9 8000 4877 9 999999999 28 0 0 88 0.2 0 0 +6260400.0 19 10 56 95888 973 1383 356 661 551 273 76325 44089 31742 12026 170 2.6 5 5 8000 4877 9 999999999 25 0 0 88 0.2 0 0 +6264000.0 21 11 53 95924 1115 1383 367 783 693 223 93638 49219 26826 10881 150 3.1 5 5 8000 4877 9 999999999 28 0 0 88 0.2 0 0 +6267600.0 22 11 50 95942 1184 1383 373 842 700 242 101035 50292 29227 11775 170 4.1 5 5 8000 4877 9 999999999 28 0 0 88 0.2 0 0 +6271200.0 22.6 11 48 95872 1174 1383 376 834 681 255 99507 49903 30647 12261 170 6.2 5 5 8000 4877 9 999999999 28 0 0 88 0.2 0 0 +6274800.0 23.3 11 46 95924 1087 1383 370 813 844 149 99935 53533 18397 7689 183 6.2 2 2 8000 4877 9 999999999 28 0 0 88 0.2 0 0 +6278400.0 24 11 44 95977 928 1383 377 660 780 136 79809 49112 16459 6733 210 6.2 3 3 8000 4877 9 999999999 28 0 0 88 0.2 0 0 +6282000.0 24 10 41 95977 709 1383 367 470 673 124 55194 41693 14662 5615 210 5.1 1 1 8000 4877 9 999999999 25 0 0 88 0.2 0 0 +6285600.0 23 10 44 95959 444 1383 362 241 433 103 27254 21988 11614 3913 220 5.7 1 1 8000 4877 9 999999999 25 0 0 88 0.2 0 0 +6289200.0 22 10 46 95942 151 1383 362 43 61 37 4789 0 4059 1208 220 4.6 2 2 8000 4877 9 999999999 25 0 0 88 0.2 0 0 +6292800.0 20.7 10.5 52 95942 0 694 345 0 0 0 0 0 0 0 210 3.6 0 0 8000 4877 9 999999999 26 0 0 88 0.2 0 0 +6296400.0 19 10 56 95888 0 0 351 0 0 0 0 0 0 0 190 3.1 3 3 8000 4877 9 999999999 25 0 0 88 0.2 0 0 +6300000.0 17 11 68 95852 0 0 348 0 0 0 0 0 0 0 160 3.6 5 5 8000 4877 9 999999999 28 0 0 88 0.2 0 0 +6303600.0 16 11 72 95834 0 0 346 0 0 0 0 0 0 0 160 3.1 6 6 8000 4877 9 999999999 28 0 0 88 0.2 0 0 +6307200.0 15 11 77 95815 0 0 345 0 0 0 0 0 0 0 160 2.1 7 7 8000 4877 9 999999999 28 0 0 88 0.2 0 0 +6310800.0 15 11 77 95815 0 0 345 0 0 0 0 0 0 0 359 1 7 7 8000 4877 9 999999999 28 0 0 88 0.2 0 0 +6314400.0 13.9 10.1 78 96083 0 0 314 0 0 0 0 0 0 0 310 1 0 0 8000 4877 9 999999999 26 0 0 88 0.2 0 0 +6318000.0 13 9 77 95778 0 0 334 0 0 0 0 0 0 0 171 0.5 7 7 8000 4877 9 999999999 23 0 0 88 0.2 0 0 +6321600.0 12 10 88 95759 0 0 343 0 0 0 0 0 0 0 170 2.6 9 9 8000 4877 9 999999999 26 0 0 88 0.2 0 0 +6325200.0 13 11 88 95778 0 0 349 0 0 0 0 0 0 0 180 2.1 9 9 8000 4877 9 999999999 28 0 0 88 0.2 0 0 +6328800.0 13 10 82 95778 0 0 340 0 0 0 0 0 0 0 214 0.5 8 8 8000 4877 9 999999999 25 0 0 88 0.2 0 0 +6332400.0 11 9 87 95740 0 0 300 0 0 0 0 0 0 0 30 3.1 0 0 6000 2000 9 999999999 23 0 0 88 0.2 0 0 +6336000.0 12.4 10 85 96121 220 1012 307 81 113 63 8871 1859 6929 2017 30 3.1 0 0 5000 2000 9 999999999 26 0 0 88 0.2 0 0 +6339600.0 16 11 72 95834 508 1382 324 294 472 120 33233 26956 13673 4697 10 3.1 0 0 7000 2000 9 999999999 28 0 0 88 0.2 0 0 +6343200.0 20 11 56 95906 763 1382 342 518 707 127 61286 43846 15096 5899 243 1 0 0 7000 2000 9 999999999 28 0 0 88 0.2 0 0 +6346800.0 21 11 53 95924 969 1382 347 705 822 129 86180 50885 15790 6536 11 1.5 0 0 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +6350400.0 24 11 44 95977 1110 1382 361 837 792 200 100870 54324 24219 9933 170 3.1 0 0 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +6354000.0 25 9 36 95994 1179 1382 364 903 864 166 111523 56525 20554 8543 190 4.1 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +6357600.0 27.7 6.5 26 95969 1169 1382 393 867 789 199 105636 55433 24403 10006 150 3.6 4 4 8000 2000 9 999999999 18 0 0 88 0.2 0 0 +6361200.0 29 8 27 96063 1081 1382 382 814 853 145 100197 55278 17989 7514 150 4.1 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +6364800.0 29 8 27 96063 922 1382 382 666 810 125 81105 51331 15272 6259 160 4.6 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +6368400.0 29 8 27 96063 703 1382 382 466 668 126 54657 42263 14833 5652 220 5.1 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +6372000.0 27 9 32 96029 437 1382 374 237 429 101 26734 21743 11446 3845 220 5.7 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +6375600.0 24 9 38 95977 144 1382 359 40 51 35 4453 0 3879 1152 220 6.7 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +6379200.0 22.3 9.3 43 95980 0 663 351 0 0 0 0 0 0 0 200 6.7 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +6382800.0 22 9 43 95942 0 0 356 0 0 0 0 0 0 0 130 3.6 1 1 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +6386400.0 21 9 46 95924 0 0 356 0 0 0 0 0 0 0 140 4.1 2 2 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +6390000.0 20 9 49 95906 0 0 351 0 0 0 0 0 0 0 150 4.1 2 2 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +6393600.0 18 9 56 95870 0 0 345 0 0 0 0 0 0 0 280 1.5 3 3 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +6397200.0 17 9 59 95852 0 0 343 0 0 0 0 0 0 0 290 1.5 4 4 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +6400800.0 14.8 8.2 65 96005 0 0 316 0 0 0 0 0 0 0 38 0 0 0 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +6404400.0 15 8 63 95815 0 0 335 0 0 0 0 0 0 0 290 1 5 5 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +6408000.0 12 7 71 95759 0 0 323 0 0 0 0 0 0 0 207 1 6 6 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +6411600.0 13 8 72 95778 0 0 329 0 0 0 0 0 0 0 147 0.5 6 6 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +6415200.0 13 8 72 95778 0 0 329 0 0 0 0 0 0 0 291 0 6 6 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +6418800.0 13 7 67 95778 0 0 307 0 0 0 0 0 0 0 238 0.5 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +6422400.0 13.3 8.4 72 96025 216 994 309 79 111 62 8669 1794 6793 1975 330 2.6 0 0 8000 2000 9 999999999 22 0 0 88 0.2 0 0 +6426000.0 17 9 59 95852 504 1381 326 292 477 118 33073 27485 13375 4599 10 2.1 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +6429600.0 21 10 49 95924 759 1381 357 513 695 130 60568 43921 15476 6020 350 2.1 2 2 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +6433200.0 24 10 41 95977 964 1381 367 703 822 129 85832 51372 15768 6519 323 1 1 1 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +6436800.0 26 9 34 96011 1105 1381 369 835 791 201 100655 55390 24395 9984 90 2.1 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +6440400.0 28 9 30 96046 1173 1381 379 898 796 222 108475 56615 26934 10946 170 2.6 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +6444000.0 28.8 9 29 95931 1163 1381 383 889 795 219 107278 56444 26550 10803 170 4.1 0 0 8000 2000 9 999999999 22 0 0 88 0.2 0 0 +6447600.0 29 10 31 96063 1075 1381 385 806 789 191 97039 54225 23132 9486 220 5.7 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +6451200.0 29 11 33 96063 916 1381 386 657 807 122 79990 49430 14926 6125 220 7.7 0 0 8000 2000 9 999999999 27 0 0 88 0.2 0 0 +6454800.0 27 11 37 96029 696 1381 376 458 667 121 53750 40535 14314 5468 220 6.7 0 0 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +6458400.0 26 11 39 96011 431 1381 378 231 400 106 25904 20238 11964 3958 200 3.1 1 1 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +6462000.0 23 11 47 95959 138 1381 368 37 28 34 4088 0 3787 1117 210 5.1 2 2 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +6465600.0 21.6 11.1 51 96006 0 633 368 0 0 0 0 0 0 0 150 3.6 4 4 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +6469200.0 20 11 56 95906 0 0 357 0 0 0 0 0 0 0 150 4.6 3 3 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +6472800.0 19 11 60 95888 0 0 355 0 0 0 0 0 0 0 160 3.6 4 4 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +6476400.0 17 11 68 95852 0 0 348 0 0 0 0 0 0 0 160 3.6 5 5 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +6480000.0 17 11 68 95852 0 0 348 0 0 0 0 0 0 0 150 3.1 5 5 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +6483600.0 17 10 63 95852 0 0 347 0 0 0 0 0 0 0 190 2.1 5 5 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +6487200.0 15.2 10.3 73 96107 0 0 320 0 0 0 0 0 0 0 19 0 0 0 8000 2000 9 999999999 26 0 0 88 0.2 0 0 +6490800.0 15 10 72 95815 0 0 340 0 0 0 0 0 0 0 154 1 6 6 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +6494400.0 14 10 77 95797 0 0 339 0 0 0 0 0 0 0 36 1 7 7 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +6498000.0 14 10 77 95797 0 0 339 0 0 0 0 0 0 0 210 1.5 7 7 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +6501600.0 12 9 82 95759 0 0 334 0 0 0 0 0 0 0 9 1 8 8 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +6505200.0 13 10 82 95778 0 0 310 0 0 0 0 0 0 0 20 0.5 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +6508800.0 13 9.6 80 96199 212 976 309 77 106 61 8402 1513 6642 1932 84 0 0 0 7000 2000 9 999999999 25 0 0 88 0.2 0 0 +6512400.0 17 11 68 95852 500 1380 348 263 351 136 29381 21230 15245 5065 208 0 5 5 7000 2000 9 999999999 28 0 0 88 0.2 0 0 +6516000.0 19 11 60 95888 755 1380 355 493 636 145 57714 41270 17074 6557 173 1 4 4 7000 2000 9 999999999 28 0 0 88 0.2 0 0 +6519600.0 23 11 47 95959 959 1380 368 696 814 129 84838 50487 15836 6543 247 1 2 2 7000 2000 9 999999999 28 0 0 88 0.2 0 0 +6523200.0 25 10 39 95994 1100 1380 372 829 791 199 99926 54691 24050 9857 220 1.5 1 1 7000 2000 9 999999999 25 0 0 88 0.2 0 0 +6526800.0 27 9 32 96029 1168 1380 374 893 795 220 107855 56490 26734 10872 140 3.1 0 0 7000 2000 9 999999999 23 0 0 88 0.2 0 0 +6530400.0 28.6 8.7 29 96013 1157 1380 381 884 794 217 106669 56477 26390 10742 170 5.7 0 0 7000 2000 9 999999999 22 0 0 88 0.2 0 0 +6534000.0 29 8 27 96063 1069 1380 399 792 823 155 96971 54214 19026 7913 220 5.7 3 3 7000 2000 9 999999999 20 0 0 88 0.2 0 0 +6537600.0 29 9 29 96063 909 1380 400 645 776 133 78005 49653 16199 6598 220 5.1 3 3 7000 2000 9 999999999 22 0 0 88 0.2 0 0 +6541200.0 28 11 35 96046 689 1380 398 446 637 128 52123 39377 14979 5675 210 5.7 3 3 7000 2000 9 999999999 27 0 0 88 0.2 0 0 +6544800.0 26 11 39 96011 424 1380 387 223 377 107 24934 19041 12010 3944 220 4.6 3 3 7000 2000 9 999999999 28 0 0 88 0.2 0 0 +6548400.0 24 11 44 95977 131 1380 377 34 16 32 3719 0 3560 1052 210 3.6 3 3 7000 2000 9 999999999 28 0 0 88 0.2 0 0 +6552000.0 22.4 10.5 47 96001 0 602 368 0 0 0 0 0 0 0 170 3.6 3 3 7000 2000 9 999999999 26 0 0 88 0.2 0 0 +6555600.0 21 10 49 95924 0 0 357 0 0 0 0 0 0 0 150 4.1 2 2 7000 2000 9 999999999 25 0 0 88 0.2 0 0 +6559200.0 20 10 53 95906 0 0 356 0 0 0 0 0 0 0 160 2.6 3 3 7000 2000 9 999999999 25 0 0 88 0.2 0 0 +6562800.0 19 10 56 95888 0 0 351 0 0 0 0 0 0 0 150 1.5 3 3 7000 2000 9 999999999 25 0 0 88 0.2 0 0 +6566400.0 18 10 59 95870 0 0 349 0 0 0 0 0 0 0 160 3.1 4 4 7000 2000 9 999999999 25 0 0 88 0.2 0 0 +6570000.0 16 10 68 95834 0 0 342 0 0 0 0 0 0 0 160 2.6 5 5 7000 2000 9 999999999 25 0 0 88 0.2 0 0 +6573600.0 16.3 10 66 95920 0 0 324 0 0 0 0 0 0 0 150 2.1 0 0 7000 2000 9 999999999 25 0 0 88 0.2 0 0 +6577200.0 15 10 72 95815 0 0 340 0 0 0 0 0 0 0 283 0.5 6 6 7000 2000 9 999999999 25 0 0 88 0.2 0 0 +6580800.0 13 9 77 95778 0 0 309 0 0 0 0 0 0 0 350 1 0 0 7000 2000 9 999999999 23 0 0 88 0.2 0 0 +6584400.0 13 9 77 95778 0 0 309 0 0 0 0 0 0 0 148 0.5 0 0 7000 2000 9 999999999 23 0 0 88 0.2 0 0 +6588000.0 13 9 77 95778 0 0 309 0 0 0 0 0 0 0 330 1 0 0 7000 2000 9 999999999 23 0 0 88 0.2 0 0 +6591600.0 13 9 77 95778 0 0 309 0 0 0 0 0 0 0 250 1 0 0 7000 2000 9 999999999 23 0 0 88 0.2 0 0 +6595200.0 15.7 10 69 95956 209 958 321 75 103 59 8173 1314 6498 1890 213 0 0 0 7000 2000 9 999999999 25 0 0 88 0.2 0 0 +6598800.0 17 10 63 95852 496 1379 327 285 469 116 32249 26485 13218 4530 320 1.5 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +6602400.0 21 11 53 95924 750 1379 347 507 701 125 59936 43274 14859 5788 20 2.1 0 0 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +6606000.0 24 11 44 95977 955 1379 368 693 817 127 84544 50447 15581 6437 27 1.5 1 1 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +6609600.0 26 10 37 96011 1095 1379 370 825 790 197 99378 54585 23901 9797 180 1.5 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +6613200.0 30 10 29 96079 1162 1379 390 887 794 218 107090 55822 26401 10754 180 4.1 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +6616800.0 31.7 10.7 28 95856 1151 1379 400 876 794 213 105696 55221 25879 10564 170 4.6 0 0 8000 2000 9 999999999 26 0 0 88 0.2 0 0 +6620400.0 32 10 26 96113 1063 1379 400 795 787 188 95688 53939 22732 9322 220 6.7 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +6624000.0 31 10 27 96096 903 1379 395 647 803 121 78691 49626 14774 6045 220 7.2 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +6627600.0 30 10 29 96079 683 1379 390 447 658 121 52421 40316 14279 5423 220 6.7 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +6631200.0 28 10 32 96046 417 1379 380 221 408 98 24899 19655 11043 3675 210 6.7 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +6634800.0 26 10 37 96011 124 1379 370 31 14 30 3463 0 3333 986 200 5.7 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +6638400.0 23.8 10.2 42 95864 0 571 359 0 0 0 0 0 0 0 160 3.6 0 0 8000 2000 9 999999999 26 0 0 88 0.2 0 0 +6642000.0 22 10 46 95942 0 0 362 0 0 0 0 0 0 0 150 4.1 2 2 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +6645600.0 20 10 53 95906 0 0 356 0 0 0 0 0 0 0 150 4.6 3 3 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +6649200.0 19 9 52 95888 0 0 350 0 0 0 0 0 0 0 150 3.1 3 3 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +6652800.0 19 8 49 95888 0 0 345 0 0 0 0 0 0 0 150 4.6 2 2 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +6656400.0 18 8 52 95870 0 0 344 0 0 0 0 0 0 0 170 3.6 3 3 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +6660000.0 16.2 8.9 62 95965 0 0 336 0 0 0 0 0 0 0 170 3.1 3 3 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +6663600.0 15 9 67 95815 0 0 336 0 0 0 0 0 0 0 170 1.5 5 5 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +6667200.0 15 9 67 95815 0 0 336 0 0 0 0 0 0 0 150 1.5 5 5 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +6670800.0 15 8 63 95815 0 0 335 0 0 0 0 0 0 0 140 2.1 5 5 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +6674400.0 15 8 63 95815 0 0 335 0 0 0 0 0 0 0 150 2.6 5 5 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +6678000.0 14 8 67 95797 0 0 330 0 0 0 0 0 0 0 170 2.1 5 5 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +6681600.0 14.5 8.7 68 96170 205 940 315 73 99 58 7950 1218 6360 1848 170 3.1 0 0 8000 2000 9 999999999 22 0 0 88 0.2 0 0 +6685200.0 17 10 63 95852 492 1379 347 268 398 126 30088 23323 14198 4770 180 1.5 5 5 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +6688800.0 20 9 49 95906 746 1379 351 502 687 130 59240 43775 15435 5973 268 1 2 2 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +6692400.0 22 9 43 95942 950 1379 356 691 817 128 84322 51494 15626 6443 286 1 1 1 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +6696000.0 25 9 36 95994 1090 1379 364 821 789 197 98956 55016 23872 9777 97 1.5 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +6699600.0 26 10 37 96011 1156 1379 370 882 794 216 106450 55684 26185 10674 160 3.1 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +6703200.0 27.5 10.7 35 95995 1145 1379 378 870 793 211 105013 55073 25647 10478 180 3.6 0 0 8000 2000 9 999999999 27 0 0 88 0.2 0 0 +6706800.0 29 10 31 96063 1056 1379 385 789 786 186 94982 53768 22500 9227 160 5.1 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +6710400.0 29 10 31 96063 896 1379 385 641 801 120 77926 49398 14681 6000 170 6.7 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +6714000.0 28 11 35 96046 676 1379 381 441 654 120 51604 39435 14085 5344 210 5.7 0 0 8000 2000 9 999999999 27 0 0 88 0.2 0 0 +6717600.0 26 11 39 96011 410 1379 378 216 380 102 24113 18424 11495 3766 220 5.7 1 1 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +6721200.0 23 11 47 95959 117 1379 368 29 3 29 3182 0 3165 935 210 6.2 2 2 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +6724800.0 20.9 10.5 51 96107 0 540 346 0 0 0 0 0 0 0 200 7.2 0 0 8000 2000 9 999999999 26 0 0 88 0.2 0 0 +6728400.0 20 11 56 95906 0 0 357 0 0 0 0 0 0 0 140 3.6 3 3 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +6732000.0 19 11 60 95888 0 0 355 0 0 0 0 0 0 0 150 3.6 4 4 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +6735600.0 18 11 64 95870 0 0 353 0 0 0 0 0 0 0 160 4.1 5 5 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +6739200.0 17 11 68 95852 0 0 348 0 0 0 0 0 0 0 160 3.1 5 5 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +6742800.0 16 11 72 95834 0 0 346 0 0 0 0 0 0 0 140 1.5 6 6 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +6746400.0 15.5 10.5 72 96189 0 0 321 0 0 0 0 0 0 0 150 2.6 0 0 8000 2000 9 999999999 27 0 0 88 0.2 0 0 +6750000.0 14 10 77 95797 0 0 339 0 0 0 0 0 0 0 260 1.5 7 7 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +6753600.0 14 10 77 95797 0 0 339 0 0 0 0 0 0 0 33 0 7 7 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +6757200.0 13 10 82 95778 0 0 340 0 0 0 0 0 0 0 340 1 8 8 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +6760800.0 13 10 82 95778 0 0 340 0 0 0 0 0 0 0 49 0.5 8 8 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +6764400.0 13 10 82 95778 0 0 310 0 0 0 0 0 0 0 82 1 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +6768000.0 12.9 10 83 96206 201 922 309 71 157 48 7822 818 5306 1615 249 0 0 0 8000 2000 9 999999999 26 0 0 88 0.2 0 0 +6771600.0 17 11 68 95852 487 1378 328 278 458 116 31404 25418 13168 4490 314 0.5 0 0 7000 2000 9 999999999 28 0 0 88 0.2 0 0 +6775200.0 19 12 64 95888 741 1378 339 498 699 122 58933 42308 14519 5653 63 1 0 0 7000 2000 9 999999999 31 0 0 88 0.2 0 0 +6778800.0 21 11 53 95924 945 1378 347 685 816 125 83569 50203 15345 6333 278 1 0 0 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +6782400.0 24 11 44 95977 1085 1378 368 813 867 131 100898 53200 16285 6845 180 2.1 1 1 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +6786000.0 26 11 39 96011 1151 1378 378 875 817 193 106449 54954 23576 9713 160 3.6 1 1 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +6789600.0 27.2 10.2 34 95980 1139 1378 402 756 563 290 88981 43921 34374 13448 170 5.7 6 6 8000 7500 9 999999999 25 0 0 88 0.2 0 0 +6793200.0 28 10 32 96046 1050 1378 380 783 805 170 94885 53608 20656 8527 170 6.7 0 0 8000 7500 9 999999999 25 0 0 88 0.2 0 0 +6796800.0 28 10 32 96046 890 1378 380 635 799 119 77210 49189 14548 5939 160 7.2 0 0 8000 7500 9 999999999 25 0 0 88 0.2 0 0 +6800400.0 27 10 34 96029 669 1378 375 436 649 120 50985 39555 14119 5337 180 6.7 0 0 8000 7500 9 999999999 25 0 0 88 0.2 0 0 +6804000.0 26 10 37 96011 404 1378 370 211 394 95 23705 18417 10760 3557 220 5.7 0 0 8000 7500 9 999999999 25 0 0 88 0.2 0 0 +6807600.0 24 10 41 95977 111 1378 367 27 4 27 3022 0 2997 884 220 4.6 1 1 8000 7500 9 999999999 25 0 0 88 0.2 0 0 +6811200.0 22 10 46 96003 0 509 366 0 0 0 0 0 0 0 180 4.1 3 3 8000 7500 9 999999999 25 0 0 88 0.2 0 0 +6814800.0 20 10 53 95906 0 0 356 0 0 0 0 0 0 0 150 3.6 3 3 8000 7500 9 999999999 25 0 0 88 0.2 0 0 +6818400.0 20 10 53 95906 0 0 356 0 0 0 0 0 0 0 130 2.1 3 3 8000 7500 9 999999999 25 0 0 88 0.2 0 0 +6822000.0 18 9 56 95870 0 0 345 0 0 0 0 0 0 0 190 2.1 3 3 8000 7500 9 999999999 23 0 0 88 0.2 0 0 +6825600.0 18 9 56 95870 0 0 345 0 0 0 0 0 0 0 47 1 3 3 8000 7500 9 999999999 23 0 0 88 0.2 0 0 +6829200.0 18 9 56 95870 0 0 345 0 0 0 0 0 0 0 170 2.1 3 3 8000 7500 9 999999999 23 0 0 88 0.2 0 0 +6832800.0 15.8 8.6 62 95882 0 0 320 0 0 0 0 0 0 0 160 2.1 0 0 8000 7500 9 999999999 22 0 0 88 0.2 0 0 +6836400.0 15 9 67 95815 0 0 317 0 0 0 0 0 0 0 317 0 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +6840000.0 13 8 72 95778 0 0 308 0 0 0 0 0 0 0 344 1 0 0 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +6843600.0 14 9 72 95797 0 0 313 0 0 0 0 0 0 0 58 1.5 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +6847200.0 13 8 72 95778 0 0 308 0 0 0 0 0 0 0 24 1 0 0 7000 2000 9 999999999 21 0 0 88 0.2 0 0 +6850800.0 13 8 72 95778 0 0 308 0 0 0 0 0 0 0 330 0.5 0 0 6000 2000 9 999999999 21 0 0 88 0.2 0 0 +6854400.0 14 9 72 96000 197 905 313 68 151 47 7592 706 5217 1584 270 0 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +6858000.0 17 10 63 95852 483 1377 327 275 459 114 31113 25485 12943 4413 352 1 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +6861600.0 20 10 53 95906 737 1377 341 496 693 125 58582 43149 14849 5753 129 1 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +6865200.0 24 10 41 95977 940 1377 367 681 814 125 83150 50656 15359 6329 268 1 1 1 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +6868800.0 26 10 37 96011 1079 1377 370 811 787 193 97657 54207 23376 9586 190 2.1 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +6872400.0 27 9 32 96029 1145 1377 374 873 792 214 105366 56014 25976 10590 170 5.1 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +6876000.0 29.1 8.5 28 95870 1133 1377 383 862 791 211 104043 56076 25611 10451 160 5.7 0 0 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +6879600.0 30 9 27 96079 1044 1377 389 779 785 184 93739 54020 22232 9105 160 5.7 0 0 8000 2000 9 999999999 22 0 0 88 0.2 0 0 +6883200.0 29 9 29 96063 883 1377 384 630 797 119 76576 49522 14536 5922 220 5.7 0 0 8000 2000 9 999999999 22 0 0 88 0.2 0 0 +6886800.0 27 10 34 96029 662 1377 375 430 644 120 50242 39145 14058 5300 220 6.7 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +6890400.0 24 10 41 95977 397 1377 367 206 386 94 23085 17750 10631 3501 210 7.2 1 1 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +6894000.0 23 10 44 95959 104 1377 362 26 0 26 2835 0 2839 835 210 5.1 1 1 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +6897600.0 20.5 10.2 52 95929 0 478 344 0 0 0 0 0 0 0 150 6.2 0 0 8000 2000 9 999999999 26 0 0 88 0.2 0 0 +6901200.0 19 10 56 95888 0 0 351 0 0 0 0 0 0 0 150 5.1 3 3 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +6904800.0 18 10 59 95870 0 0 349 0 0 0 0 0 0 0 160 3.6 4 4 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +6908400.0 17 10 63 95852 0 0 347 0 0 0 0 0 0 0 160 4.1 5 5 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +6912000.0 15 10 72 95815 0 0 340 0 0 0 0 0 0 0 160 3.1 6 6 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +6915600.0 15 10 72 95815 0 0 340 0 0 0 0 0 0 0 160 3.1 6 6 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +6919200.0 14.1 9.4 73 95974 0 0 314 0 0 0 0 0 0 0 160 1.5 0 0 8000 2000 9 999999999 24 0 0 88 0.2 0 0 +6922800.0 14 9 72 95797 0 0 334 0 0 0 0 0 0 0 170 2.1 6 6 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +6926400.0 13 10 82 95778 0 0 340 0 0 0 0 0 0 0 180 2.6 8 8 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +6930000.0 13 9 77 95778 0 0 334 0 0 0 0 0 0 0 161 1 7 7 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +6933600.0 13 10 82 95778 0 0 340 0 0 0 0 0 0 0 190 1.5 8 8 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +6937200.0 12 9 82 95759 0 0 334 0 0 0 0 0 0 0 220 0.5 8 8 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +6940800.0 12 9.1 82 96038 193 887 304 66 145 46 7369 506 5121 1553 68 0 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +6944400.0 15 10 72 95815 479 1376 318 272 457 113 30759 25183 12835 4370 21 1 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +6948000.0 18 10 59 95870 732 1376 349 478 634 141 55924 41051 16505 6305 130 1 4 4 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +6951600.0 21 11 53 95924 935 1376 362 669 789 133 81179 49343 16201 6652 190 1.5 3 3 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +6955200.0 24 11 44 95977 1074 1376 368 804 864 129 99704 52954 16063 6750 190 3.1 1 1 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +6958800.0 25 12 44 95994 1139 1376 374 863 791 208 104159 54026 25193 10317 160 5.1 1 1 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +6962400.0 25.3 11.5 42 95909 1127 1376 368 853 790 205 102863 54189 24902 10203 170 7.7 0 0 8000 2000 9 999999999 29 0 0 88 0.2 0 0 +6966000.0 27 11 37 96029 1037 1376 376 770 859 123 95405 52239 15299 6417 160 6.7 0 0 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +6969600.0 27 11 37 96029 876 1376 376 622 794 117 75599 48143 14214 5794 160 6.2 0 0 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +6973200.0 26 11 39 96011 656 1376 378 423 641 118 49466 38295 13846 5215 160 6.2 1 1 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +6976800.0 24 12 47 95977 390 1376 374 200 356 99 22255 16222 11037 3580 160 6.2 2 2 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +6980400.0 21 12 56 95924 97 1376 363 24 0 24 2274 0 2290 773 160 4.6 3 3 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +6984000.0 19.2 11.9 63 95963 0 446 339 0 0 0 0 0 0 0 160 5.1 0 0 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +6987600.0 18 12 68 95870 0 0 354 0 0 0 0 0 0 0 140 4.1 5 5 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +6991200.0 18 12 68 95870 0 0 354 0 0 0 0 0 0 0 190 1.5 5 5 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +6994800.0 17 11 68 95852 0 0 348 0 0 0 0 0 0 0 54 1 5 5 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +6998400.0 15 11 77 95815 0 0 345 0 0 0 0 0 0 0 287 0 7 7 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +7002000.0 16 12 77 95834 0 0 351 0 0 0 0 0 0 0 150 2.1 7 7 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +7005600.0 14.2 10.4 78 95871 0 0 315 0 0 0 0 0 0 0 170 1.5 0 0 8000 2000 9 999999999 26 0 0 88 0.2 0 0 +7009200.0 13 11 88 95778 0 0 349 0 0 0 0 0 0 0 160 2.6 9 9 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +7012800.0 13 11 88 95778 0 0 349 0 0 0 0 0 0 0 170 2.1 9 9 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +7016400.0 12 10 88 95759 0 0 305 0 0 0 0 0 0 0 282 1 0 0 8000 2000 9 999999999 26 0 0 88 0.2 0 0 +7020000.0 11 9 87 95740 0 0 300 0 0 0 0 0 0 0 78 0 0 0 6000 2000 9 999999999 23 0 0 88 0.2 0 0 +7023600.0 12 10 88 95759 0 0 305 0 0 0 0 0 0 0 215 1 0 0 6000 2000 9 999999999 26 0 0 88 0.2 0 0 +7027200.0 12.6 10.2 85 95945 189 869 308 64 57 56 6986 473 6153 1752 230 1.5 0 0 8000 2000 9 999999999 26 0 0 88 0.2 0 0 +7030800.0 15 11 77 95815 475 1375 345 216 217 141 23948 13289 15720 5052 65 1 7 7 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +7034400.0 18 12 68 95870 728 1375 334 487 622 157 56321 41168 18290 6876 71 1 0 0 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +7038000.0 22 12 53 95942 930 1375 353 671 810 123 81785 49112 15004 6185 85 1.5 0 0 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +7041600.0 24 13 50 95977 1069 1375 376 793 851 132 97997 51206 16326 6861 170 4.1 2 2 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +7045200.0 24 12 47 95977 1134 1375 374 856 869 140 106371 53281 17463 7334 160 6.2 2 2 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +7048800.0 25.2 12.1 44 95974 1121 1375 368 846 790 203 102071 53660 24584 10085 160 7.2 0 0 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +7052400.0 25 12 44 95994 1031 1375 374 763 853 123 94293 51365 15291 6412 160 7.2 1 1 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +7056000.0 25 12 44 95994 870 1375 374 615 789 116 74599 47226 14088 5739 160 6.7 1 1 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +7059600.0 24 12 47 95977 649 1375 374 416 631 118 48475 37227 13815 5191 160 6.7 2 2 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +7063200.0 23 12 50 95959 383 1375 369 194 345 98 21583 15466 10913 3524 160 6.2 2 2 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +7066800.0 20 12 60 95906 90 1375 361 22 0 22 2082 0 2096 712 150 5.1 4 4 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +7070400.0 18.8 12.2 65 95984 0 415 338 0 0 0 0 0 0 0 160 5.1 0 0 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +7074000.0 17 12 72 95852 0 0 352 0 0 0 0 0 0 0 160 4.1 6 6 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +7077600.0 16 12 77 95834 0 0 351 0 0 0 0 0 0 0 160 4.1 7 7 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +7081200.0 15 12 82 95815 0 0 352 0 0 0 0 0 0 0 150 3.6 8 8 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +7084800.0 14 12 88 95797 0 0 316 0 0 0 0 0 0 0 150 3.6 0 0 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +7088400.0 13 11 88 95778 0 0 311 0 0 0 0 0 0 0 160 4.1 0 0 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +7092000.0 12.9 11.3 90 96027 0 0 311 0 0 0 0 0 0 0 160 4.1 0 0 7000 2000 9 999999999 29 0 0 88 0.2 0 0 +7095600.0 13 12 94 95778 0 0 330 0 0 0 0 0 0 0 160 4.1 5 5 7000 2000 9 999999999 31 0 0 88 0.2 0 0 +7099200.0 14 12 88 95797 0 0 355 0 0 0 0 0 0 0 160 3.6 9 9 7000 183 9 999999999 31 0 0 88 0.2 0 0 +7102800.0 14 12 88 95797 0 0 365 0 0 0 0 0 0 0 160 3.1 10 10 6000 183 9 999999999 31 0 0 88 0.2 0 0 +7106400.0 14 12 88 95797 0 0 365 0 0 0 0 0 0 0 160 2.6 10 10 5000 244 0 919999999 31 0 0 88 0.2 0 0 +7110000.0 14 12 88 95797 0 0 365 0 0 0 0 0 0 0 0 1 10 10 5000 274 0 919999999 31 0 0 88 0.2 0 0 +7113600.0 13.6 11.9 89 96097 185 852 363 20 0 20 1901 0 1915 772 280 2.1 10 10 5000 270 0 919999999 31 0 0 88 0.2 0 0 +7117200.0 14 12 88 95797 471 1375 365 83 0 83 8305 0 8372 3436 250 2.6 10 10 6000 274 0 919999999 31 0 0 88 0.2 0 0 +7120800.0 14 12 88 95797 723 1375 365 152 0 152 15460 0 15596 6677 240 2.1 10 10 8000 366 0 919999999 31 0 0 88 0.2 0 0 +7124400.0 15 12 82 95815 925 1375 370 210 3 208 24548 210 24440 9588 148 1.5 10 10 8000 366 0 919999999 31 0 0 88 0.2 0 0 +7128000.0 16 12 77 95834 1063 1375 375 250 8 244 29471 593 28892 11513 226 0.5 10 10 8000 457 0 919999999 31 0 0 88 0.2 0 0 +7131600.0 16 12 77 95834 1128 1375 375 269 9 261 31806 678 31092 12380 22 1 10 10 8000 457 0 919999999 31 0 0 88 0.2 0 0 +7135200.0 16.2 11.7 75 96164 1114 1375 376 265 9 258 31338 664 30651 12211 200 0 10 10 8000 600 0 919999999 30 0 0 88 0.2 0 0 +7138800.0 17 12 72 95852 1024 1375 380 238 4 235 28042 307 27824 11045 170 2.6 10 10 8000 610 0 919999999 31 0 0 88 0.2 0 0 +7142400.0 18 12 68 95870 863 1375 385 192 2 191 22377 139 22341 8671 160 4.6 10 10 8000 762 0 919999999 31 0 0 88 0.2 0 0 +7146000.0 18 11 64 95870 642 1375 384 130 0 130 13095 0 13207 5569 160 3.1 10 10 8000 914 0 919999999 28 0 0 88 0.2 0 0 +7149600.0 18 11 64 95870 376 1375 374 98 3 97 10926 131 10879 3488 150 2.6 9 9 8000 914 0 919999999 28 0 0 88 0.2 0 0 +7153200.0 18 11 64 95870 84 1375 374 11 0 11 1033 0 1040 400 180 3.1 9 9 8000 914 0 919999999 28 0 0 88 0.2 0 0 +7156800.0 17.5 11.5 68 96036 0 384 372 0 0 0 0 0 0 0 210 2.1 9 9 8000 900 9 999999999 29 0 0 88 0.2 0 0 +7160400.0 17 11 68 95852 0 0 368 0 0 0 0 0 0 0 190 2.1 9 9 8000 914 9 999999999 28 0 0 88 0.2 0 0 +7164000.0 17 11 68 95852 0 0 368 0 0 0 0 0 0 0 230 1.5 9 9 8000 914 9 999999999 28 0 0 88 0.2 0 0 +7167600.0 17 11 68 95852 0 0 379 0 0 0 0 0 0 0 170 2.6 10 10 8000 914 9 999999999 28 0 0 88 0.2 0 0 +7171200.0 17 11 68 95852 0 0 379 0 0 0 0 0 0 0 180 3.1 10 10 8000 914 9 999999999 28 0 0 88 0.2 0 0 +7174800.0 17 12 72 95852 0 0 380 0 0 0 0 0 0 0 200 3.1 10 10 8000 914 9 999999999 31 0 0 88 0.2 0 0 +7178400.0 16.4 11.5 73 95893 0 0 376 0 0 0 0 0 0 0 170 3.6 10 10 8000 900 9 999999999 29 0 0 88 0.2 0 0 +7182000.0 16 11 72 95834 0 0 374 0 0 0 0 0 0 0 170 3.1 10 10 8000 914 9 999999999 28 0 0 88 0.2 0 0 +7185600.0 16 11 72 95834 0 0 363 0 0 0 0 0 0 0 170 3.1 9 9 8000 914 9 999999999 28 0 0 88 0.2 0 0 +7189200.0 16 11 72 95834 0 0 363 0 0 0 0 0 0 0 160 1.5 9 9 8000 914 9 999999999 28 0 0 88 0.2 0 0 +7192800.0 16 11 72 95834 0 0 363 0 0 0 0 0 0 0 160 1.5 9 9 8000 914 9 999999999 28 0 0 88 0.2 0 0 +7196400.0 16 12 77 95834 0 0 365 0 0 0 0 0 0 0 160 1 9 9 8000 914 9 999999999 31 0 0 88 0.2 0 0 +7200000.0 16.5 11.6 73 95942 182 834 367 31 0 31 3014 0 3035 1134 170 1.5 9 9 8000 810 9 999999999 30 0 0 88 0.2 0 0 +7203600.0 18 11 64 95870 467 1374 374 135 14 131 15061 824 14590 4758 200 1.5 9 9 8000 823 9 999999999 28 0 0 88 0.2 0 0 +7207200.0 19 11 60 95888 719 1374 379 248 38 228 27803 2991 25699 8875 252 0.5 9 9 7000 823 9 999999999 28 0 0 88 0.2 0 0 +7210800.0 19 11 60 95888 920 1374 338 663 659 221 77197 48723 25902 10039 280 2.1 0 0 7000 2000 9 999999999 28 0 0 88 0.2 0 0 +7214400.0 21 11 53 95924 1058 1374 347 790 862 126 97958 52604 15684 6589 195 1 0 0 7000 2000 9 999999999 28 0 0 88 0.2 0 0 +7218000.0 22 11 50 95942 1122 1374 352 849 789 205 102450 54331 24842 10176 220 2.6 0 0 7000 2000 9 999999999 28 0 0 88 0.2 0 0 +7221600.0 23.9 11.4 45 95989 1108 1374 361 836 788 200 100812 53835 24280 9961 160 4.1 0 0 8000 2000 9 999999999 29 0 0 88 0.2 0 0 +7225200.0 25 12 44 95994 1017 1374 383 742 808 143 90562 50586 17560 7303 220 6.7 3 3 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +7228800.0 24 11 44 95977 856 1374 377 597 758 124 71907 46750 15028 6073 220 7.2 3 3 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +7232400.0 23 11 47 95959 635 1374 372 400 599 124 46453 36253 14387 5338 220 6.7 3 3 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +7236000.0 22 10 46 95942 369 1374 362 185 355 90 20702 15153 10056 3264 210 6.2 2 2 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +7239600.0 19 10 56 95888 77 1374 351 19 0 19 1809 0 1821 618 210 6.2 3 3 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +7243200.0 17.7 9.1 57 96030 0 353 344 0 0 0 0 0 0 0 200 5.7 3 3 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +7246800.0 16 9 63 95834 0 0 341 0 0 0 0 0 0 0 150 3.1 5 5 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +7250400.0 16 9 63 95834 0 0 341 0 0 0 0 0 0 0 150 3.1 5 5 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +7254000.0 15 8 63 95815 0 0 335 0 0 0 0 0 0 0 150 3.1 5 5 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +7257600.0 14 8 67 95797 0 0 330 0 0 0 0 0 0 0 150 3.6 5 5 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +7261200.0 14 8 67 95797 0 0 330 0 0 0 0 0 0 0 150 3.1 5 5 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +7264800.0 13.8 7.7 67 96195 0 0 311 0 0 0 0 0 0 0 150 2.1 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +7268400.0 12 8 76 95759 0 0 328 0 0 0 0 0 0 0 280 1.5 7 7 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +7272000.0 11 7 76 95740 0 0 298 0 0 0 0 0 0 0 50 1.5 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +7275600.0 11 8 82 95740 0 0 299 0 0 0 0 0 0 0 200 1 0 0 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +7279200.0 11 7 76 95740 0 0 298 0 0 0 0 0 0 0 202 1 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +7282800.0 10 7 82 95721 0 0 294 0 0 0 0 0 0 0 14 1 0 0 6000 2000 9 999999999 19 0 0 88 0.2 0 0 +7286400.0 11.4 7.7 78 96187 178 817 300 58 122 43 6487 0 4743 1428 280 1.5 0 0 7000 2000 9 999999999 20 0 0 88 0.2 0 0 +7290000.0 14 8 67 95797 463 1373 312 260 468 103 29568 24804 11688 4003 10 2.1 0 0 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +7293600.0 17 9 59 95852 714 1373 326 478 681 124 56303 42537 14623 5623 330 1.5 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +7297200.0 19 10 56 95888 915 1373 336 660 807 122 80427 49900 14894 6116 230 1.5 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +7300800.0 21 10 49 95924 1052 1373 357 783 855 128 96976 52879 15899 6669 71 1.5 2 2 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +7304400.0 22 10 46 95942 1116 1373 362 844 847 155 103937 54493 19173 8008 150 4.1 2 2 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +7308000.0 23.7 9.7 41 96043 1102 1373 380 775 644 258 91660 48690 30709 12199 180 4.1 5 5 8000 2000 9 999999999 24 0 0 88 0.2 0 0 +7311600.0 24 10 41 95977 1011 1373 367 748 834 134 91811 52397 16455 6854 170 3.6 1 1 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +7315200.0 24 9 38 95977 849 1373 359 601 785 115 72804 48342 13974 5657 180 5.7 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +7318800.0 24 10 41 95977 628 1373 367 401 620 117 46643 37092 13649 5080 160 4.6 1 1 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +7322400.0 24 9 38 95977 362 1373 359 181 353 88 20235 14867 9856 3191 180 5.7 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +7326000.0 22 7 38 95942 70 1373 347 18 0 18 1694 0 1705 576 210 4.1 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +7329600.0 21 8 43 95924 0 323 350 0 0 0 0 0 0 0 210 4.6 1 1 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +7333200.0 19 8 49 95888 0 0 345 0 0 0 0 0 0 0 160 2.6 2 2 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +7336800.0 18 8 52 95870 0 0 344 0 0 0 0 0 0 0 150 3.6 3 3 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +7340400.0 17 8 55 95852 0 0 339 0 0 0 0 0 0 0 150 2.6 3 3 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +7344000.0 17 8 55 95852 0 0 339 0 0 0 0 0 0 0 150 2.1 3 3 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +7347600.0 15 8 63 95815 0 0 335 0 0 0 0 0 0 0 276 1 5 5 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +7351200.0 13.8 7.6 66 95968 0 0 311 0 0 0 0 0 0 0 277 0 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +7354800.0 13 7 67 95778 0 0 325 0 0 0 0 0 0 0 358 0 5 5 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +7358400.0 12 7 71 95759 0 0 323 0 0 0 0 0 0 0 139 0.5 6 6 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +7362000.0 12 7 71 95759 0 0 323 0 0 0 0 0 0 0 180 1.5 6 6 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +7365600.0 12 7 71 95759 0 0 323 0 0 0 0 0 0 0 54 0.5 6 6 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +7369200.0 9 6 81 95702 0 0 289 0 0 0 0 0 0 0 141 1 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +7372800.0 12.1 7.6 74 96097 174 800 303 56 116 42 6259 0 4648 1397 114 0 0 0 7000 2000 9 999999999 20 0 0 88 0.2 0 0 +7376400.0 15 8 63 95815 458 1372 316 257 464 102 29174 24426 11616 3970 340 2.1 0 0 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +7380000.0 18 9 56 95870 710 1372 345 465 643 133 54475 41113 15597 5942 351 1 3 3 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +7383600.0 21 9 46 95924 910 1372 356 655 802 123 79784 50203 15037 6162 13 1 2 2 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +7387200.0 23 9 41 95959 1047 1372 361 783 783 185 94244 53954 22440 9193 117 1.5 1 1 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +7390800.0 25 9 36 95994 1110 1372 364 842 787 205 101478 55243 24787 10139 210 2.1 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +7394400.0 26.5 7.4 30 95940 1095 1372 369 830 786 202 100060 55808 24507 10016 210 2.6 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +7398000.0 27 7 28 96029 1004 1372 371 746 779 175 89714 54026 21205 8654 220 3.1 0 0 8000 2000 9 999999999 18 0 0 88 0.2 0 0 +7401600.0 28 8 28 96046 842 1372 377 595 783 115 72155 48614 13951 5636 170 3.6 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +7405200.0 27 8 30 96029 621 1372 372 396 616 117 46090 37496 13674 5066 210 5.7 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +7408800.0 25 10 39 95994 355 1372 372 175 342 87 19598 13942 9725 3137 230 6.2 1 1 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +7412400.0 23 10 44 95959 63 1372 362 16 0 16 1522 0 1532 522 220 5.1 1 1 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +7416000.0 21.3 9.6 47 95877 0 292 347 0 0 0 0 0 0 0 200 4.6 0 0 8000 2000 9 999999999 24 0 0 88 0.2 0 0 +7419600.0 19 10 56 95888 0 0 351 0 0 0 0 0 0 0 160 4.1 3 3 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +7423200.0 18 9 56 95870 0 0 345 0 0 0 0 0 0 0 150 3.1 3 3 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +7426800.0 17 9 59 95852 0 0 343 0 0 0 0 0 0 0 150 2.6 4 4 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +7430400.0 16 9 63 95834 0 0 341 0 0 0 0 0 0 0 160 2.1 5 5 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +7434000.0 15 9 67 95815 0 0 336 0 0 0 0 0 0 0 20 1 5 5 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +7437600.0 14.1 8.5 69 95898 0 0 313 0 0 0 0 0 0 0 270 1 0 0 8000 2000 9 999999999 22 0 0 88 0.2 0 0 +7441200.0 13 8 72 95778 0 0 329 0 0 0 0 0 0 0 61 1 6 6 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +7444800.0 12 8 76 95759 0 0 328 0 0 0 0 0 0 0 310 1 7 7 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +7448400.0 13 8 72 95778 0 0 308 0 0 0 0 0 0 0 50 0.5 0 0 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +7452000.0 11 7 76 95740 0 0 298 0 0 0 0 0 0 0 209 1 0 0 6000 2000 9 999999999 19 0 0 88 0.2 0 0 +7455600.0 10 7 82 95721 0 0 294 0 0 0 0 0 0 0 2 0 0 0 6000 2000 9 999999999 19 0 0 88 0.2 0 0 +7459200.0 11.2 7.6 78 95985 170 782 299 55 110 41 6052 0 4549 1366 102 0 0 0 5000 2000 9 999999999 20 0 0 88 0.2 0 0 +7462800.0 15 9 67 95815 454 1371 317 254 459 101 28752 23779 11547 3940 117 1 0 0 7000 2000 9 999999999 23 0 0 88 0.2 0 0 +7466400.0 18 9 56 95870 705 1371 345 461 641 132 54031 40905 15495 5896 233 0.5 3 3 7000 2000 9 999999999 23 0 0 88 0.2 0 0 +7470000.0 21 10 49 95924 905 1371 357 648 795 124 78815 49350 15074 6172 210 1.5 2 2 7000 2000 9 999999999 25 0 0 88 0.2 0 0 +7473600.0 24 10 41 95977 1041 1371 367 777 782 183 93505 53270 22126 9073 140 5.1 1 1 7000 2000 9 999999999 25 0 0 88 0.2 0 0 +7477200.0 25 10 39 95994 1104 1371 372 835 786 202 100664 54552 24434 10009 160 6.2 1 1 7000 2000 9 999999999 25 0 0 88 0.2 0 0 +7480800.0 26.3 9.3 34 95889 1089 1371 370 822 785 198 99074 54671 24006 9833 170 5.7 0 0 7000 2000 9 999999999 23 0 0 88 0.2 0 0 +7484400.0 27 10 34 96029 998 1371 375 736 851 117 91111 51874 14546 6079 170 5.7 0 0 7000 2000 9 999999999 25 0 0 88 0.2 0 0 +7488000.0 27 10 34 96029 836 1371 375 588 780 112 71181 47298 13648 5515 220 5.1 0 0 7000 2000 9 999999999 25 0 0 88 0.2 0 0 +7491600.0 26 10 37 96011 614 1371 370 389 612 115 45236 36242 13417 4970 230 6.7 0 0 7000 2000 9 999999999 25 0 0 88 0.2 0 0 +7495200.0 24 10 41 95977 349 1371 367 171 335 85 19044 13323 9563 3074 210 5.1 1 1 7000 2000 9 999999999 25 0 0 88 0.2 0 0 +7498800.0 22 11 50 95942 57 1371 363 14 0 14 1356 0 1365 470 200 4.6 2 2 7000 2000 9 999999999 28 0 0 88 0.2 0 0 +7502400.0 19.7 10.2 54 95972 0 261 340 0 0 0 0 0 0 0 150 4.1 0 0 7000 2000 9 999999999 26 0 0 88 0.2 0 0 +7506000.0 18 10 59 95870 0 0 349 0 0 0 0 0 0 0 160 3.6 4 4 7000 2000 9 999999999 25 0 0 88 0.2 0 0 +7509600.0 17 10 63 95852 0 0 347 0 0 0 0 0 0 0 160 4.1 5 5 7000 2000 9 999999999 25 0 0 88 0.2 0 0 +7513200.0 17 10 63 95852 0 0 347 0 0 0 0 0 0 0 160 2.1 5 5 7000 2000 9 999999999 25 0 0 88 0.2 0 0 +7516800.0 16 10 68 95834 0 0 342 0 0 0 0 0 0 0 160 3.6 5 5 7000 2000 9 999999999 25 0 0 88 0.2 0 0 +7520400.0 15 10 72 95815 0 0 340 0 0 0 0 0 0 0 150 3.1 6 6 7000 2000 9 999999999 25 0 0 88 0.2 0 0 +7524000.0 14.7 9.7 72 96051 0 0 317 0 0 0 0 0 0 0 150 2.6 0 0 7000 2000 9 999999999 25 0 0 88 0.2 0 0 +7527600.0 14 10 77 95797 0 0 339 0 0 0 0 0 0 0 170 3.1 7 7 7000 2000 9 999999999 25 0 0 88 0.2 0 0 +7531200.0 13 10 82 95778 0 0 340 0 0 0 0 0 0 0 220 1.5 8 8 7000 2000 9 999999999 25 0 0 88 0.2 0 0 +7534800.0 12 9 82 95759 0 0 304 0 0 0 0 0 0 0 323 0.5 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +7538400.0 12 10 88 95759 0 0 319 0 0 0 0 0 0 0 114 1 3 3 8000 2000 9 999999999 26 0 0 88 0.2 0 0 +7542000.0 12 10 88 95759 0 0 323 0 0 0 0 0 0 0 160 2.1 5 5 8000 2000 9 999999999 26 0 0 88 0.2 0 0 +7545600.0 12.7 9.7 82 96127 166 765 326 49 68 41 5400 0 4502 1347 290 2.1 5 5 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +7549200.0 15 10 72 95815 450 1371 337 232 361 114 26073 19579 12833 4264 190 2.1 5 5 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +7552800.0 18 11 64 95870 700 1371 353 432 563 144 50152 36430 16817 6320 140 2.6 5 5 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +7556400.0 19 10 56 95888 900 1371 356 602 618 196 70554 44184 23069 9045 190 3.6 5 5 8000 6096 9 999999999 25 0 0 88 0.2 0 0 +7560000.0 20 10 53 95906 1036 1371 356 763 817 146 93423 52295 17930 7465 170 4.1 3 3 8000 6096 9 999999999 25 0 0 88 0.2 0 0 +7563600.0 21 10 49 95924 1098 1371 357 826 840 153 101574 53931 18874 7885 180 4.6 2 2 8000 6096 9 999999999 25 0 0 88 0.2 0 0 +7567200.0 21.9 9.6 45 96163 1083 1371 370 759 674 227 90456 48917 27170 10961 170 3.6 5 5 8000 6096 9 999999999 24 0 0 88 0.2 0 0 +7570800.0 23 10 44 95959 991 1371 376 680 556 277 78632 44448 32296 12317 160 4.1 5 5 8000 6096 9 999999999 25 0 0 88 0.2 0 0 +7574400.0 23 9 41 95959 829 1371 397 301 54 268 33997 4469 30498 10827 200 5.1 9 9 8000 1829 9 999999999 23 0 0 88 0.2 0 0 +7578000.0 22 8 41 95942 607 1371 369 358 402 179 40107 29206 20214 6849 210 6.2 5 5 8000 1829 9 999999999 21 0 0 88 0.2 0 0 +7581600.0 21 7 40 95924 342 1371 363 155 261 90 17202 11039 9996 3147 220 4.6 5 5 8000 1829 9 999999999 19 0 0 88 0.2 0 0 +7585200.0 19 7 46 95888 50 1371 353 12 0 12 1125 0 1133 398 220 5.1 5 5 8000 1829 9 999999999 19 0 0 88 0.2 0 0 +7588800.0 18.2 7.3 49 96210 0 230 349 0 0 0 0 0 0 0 210 5.1 5 5 8000 1829 9 999999999 19 0 0 88 0.2 0 0 +7592400.0 18 7 49 95870 0 0 339 0 0 0 0 0 0 0 130 2.6 2 2 8000 1829 9 999999999 19 0 0 88 0.2 0 0 +7596000.0 17 7 52 95852 0 0 338 0 0 0 0 0 0 0 160 3.1 3 3 8000 1829 9 999999999 19 0 0 88 0.2 0 0 +7599600.0 15 7 59 95815 0 0 331 0 0 0 0 0 0 0 140 2.1 4 4 8000 1829 9 999999999 19 0 0 88 0.2 0 0 +7603200.0 14 7 63 95797 0 0 329 0 0 0 0 0 0 0 170 2.1 5 5 8000 1829 9 999999999 19 0 0 88 0.2 0 0 +7606800.0 13 7 67 95778 0 0 325 0 0 0 0 0 0 0 309 1 5 5 8000 1829 9 999999999 19 0 0 88 0.2 0 0 +7610400.0 12.2 6.7 69 96080 0 0 303 0 0 0 0 0 0 0 223 0 0 0 8000 1829 9 999999999 18 0 0 88 0.2 0 0 +7614000.0 11 6 71 95740 0 0 317 0 0 0 0 0 0 0 310 1 6 6 8000 1829 9 999999999 17 0 0 88 0.2 0 0 +7617600.0 10 6 76 95721 0 0 317 0 0 0 0 0 0 0 105 0 7 7 8000 1829 9 999999999 17 0 0 88 0.2 0 0 +7621200.0 11 7 76 95740 0 0 322 0 0 0 0 0 0 0 155 1 7 7 8000 1829 9 999999999 19 0 0 88 0.2 0 0 +7624800.0 10 7 82 95721 0 0 323 0 0 0 0 0 0 0 357 0.5 8 8 8000 1829 9 999999999 19 0 0 88 0.2 0 0 +7628400.0 8 5 81 95683 0 0 284 0 0 0 0 0 0 0 310 1.5 0 0 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +7632000.0 9.1 5.7 79 96039 162 748 289 51 99 39 5646 0 4354 1303 109 0 0 0 5000 2000 9 999999999 17 0 0 88 0.2 0 0 +7635600.0 13 8 72 95778 446 1370 308 248 454 100 28071 23387 11346 3858 20 1.5 0 0 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +7639200.0 16 8 59 95834 696 1370 337 450 615 137 52415 40090 16060 6055 100 1 4 4 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +7642800.0 19 8 49 95888 895 1370 345 641 793 123 77957 50102 15026 6134 30 1 2 2 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +7646400.0 21 8 43 95924 1030 1370 350 769 780 182 92545 54036 22013 9007 200 2.6 1 1 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +7650000.0 22 9 43 95942 1092 1370 356 825 785 199 99445 54796 24128 9881 170 2.6 1 1 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +7653600.0 24.6 7.6 34 95859 1076 1370 360 813 784 197 97910 55270 23832 9748 210 4.6 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +7657200.0 25 8 34 95994 984 1370 362 727 831 129 89180 52838 15925 6610 220 5.1 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +7660800.0 25 7 32 95994 822 1370 377 571 749 122 68682 47584 14694 5879 220 4.6 3 3 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +7664400.0 25 7 32 95994 600 1370 361 379 605 114 44067 36554 13314 4896 220 5.1 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +7668000.0 23 8 38 95959 335 1370 353 161 323 82 18009 12502 9225 2944 220 5.7 0 0 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +7671600.0 21 8 43 95924 43 1370 350 11 0 11 1049 0 1056 370 220 5.1 1 1 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +7675200.0 19.5 7.4 45 95779 0 199 336 0 0 0 0 0 0 0 210 5.1 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +7678800.0 19 7 46 95888 0 0 344 0 0 0 0 0 0 0 190 4.6 2 2 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +7682400.0 17 7 52 95852 0 0 338 0 0 0 0 0 0 0 150 2.6 3 3 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +7686000.0 16 7 55 95834 0 0 333 0 0 0 0 0 0 0 150 2.1 3 3 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +7689600.0 16 6 51 95834 0 0 332 0 0 0 0 0 0 0 150 2.6 3 3 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +7693200.0 15 6 55 95815 0 0 328 0 0 0 0 0 0 0 160 2.1 3 3 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +7696800.0 14.3 6.8 61 95873 0 0 312 0 0 0 0 0 0 0 160 2.6 0 0 8000 2000 9 999999999 18 0 0 88 0.2 0 0 +7700400.0 13 7 67 95778 0 0 325 0 0 0 0 0 0 0 269 0.5 5 5 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +7704000.0 12 7 71 95759 0 0 323 0 0 0 0 0 0 0 140 0.5 6 6 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +7707600.0 12 6 67 95759 0 0 319 0 0 0 0 0 0 0 153 0.5 5 5 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +7711200.0 10 6 76 95721 0 0 317 0 0 0 0 0 0 0 87 1 7 7 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +7714800.0 9 6 81 95702 0 0 289 0 0 0 0 0 0 0 330 1 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +7718400.0 11.2 6.1 71 96004 159 731 298 49 92 38 5425 0 4257 1272 138 0 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +7722000.0 14 7 63 95797 442 1369 311 245 452 99 27744 23300 11243 3816 188 0 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +7725600.0 17 7 52 95852 691 1369 324 460 667 123 54027 42186 14506 5526 61 1 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +7729200.0 19 8 49 95888 890 1369 345 637 791 123 77368 49920 14948 6097 154 2.1 2 2 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +7732800.0 22 8 41 95942 1024 1369 355 764 779 181 91949 53911 21854 8939 200 2.6 1 1 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +7736400.0 23 8 38 95959 1086 1369 353 821 784 199 98960 55221 24126 9870 132 2.1 0 0 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +7740000.0 25.3 7.8 33 95966 1070 1369 364 807 783 195 97161 55011 23576 9646 150 3.1 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +7743600.0 26 8 32 96011 977 1369 367 721 850 113 89221 52453 14079 5867 180 4.6 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +7747200.0 26 8 32 96011 815 1369 367 571 772 112 69073 47564 13534 5435 160 4.1 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +7750800.0 25 9 36 95994 593 1369 364 372 597 113 43159 35278 13180 4839 210 5.7 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +7754400.0 23 9 41 95959 328 1369 361 156 312 81 17395 11610 9086 2889 220 5.7 1 1 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +7758000.0 18.2 8 51 95923 37 1369 350 9 0 9 886 0 892 317 175 4.8 2 2 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +7761600.0 17.2 8 54 95905 0 169 334 0 0 0 0 0 0 0 162 4.2 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +7765200.0 16 7.8 58 95834 0 0 339 0 0 0 0 0 0 0 157 3.2 3 3 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +7768800.0 15.2 8.5 64 95820 0 0 339 0 0 0 0 0 0 0 160 3.2 3 3 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +7772400.0 14.4 9.2 71 95896 0 0 337 0 0 0 0 0 0 0 162 2.8 4 4 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +7776000.0 13.9 9.7 76 95887 0 0 329 0 0 0 0 0 0 0 167 2.3 5 5 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +7779600.0 13.9 10.4 79 95887 0 0 364 0 0 0 0 0 0 0 187 2.2 10 10 8000 600 9 999999999 28 0 0 88 0.2 0 0 +7783200.0 13.9 10.2 78 95932 0 0 362 0 0 0 0 0 0 0 153 1.5 10 10 8000 450 9 999999999 27 0 0 88 0.2 0 0 +7786800.0 13.9 10 77 95842 0 0 362 0 0 0 0 0 0 0 151 1.2 10 10 8000 450 9 999999999 25 0 0 88 0.2 0 0 +7790400.0 13.9 10 77 95842 0 0 362 0 0 0 0 0 0 0 143 1.6 10 10 8000 450 9 999999999 25 0 0 88 0.2 0 0 +7794000.0 13.9 10.1 78 95887 0 0 361 0 0 0 0 0 0 0 128 2.2 10 10 8000 450 9 999999999 26 0 0 88 0.2 0 0 +7797600.0 13.9 10.1 77 95842 0 0 362 0 0 0 0 0 0 0 175 2.8 10 10 8000 450 9 999999999 25 0 0 88 0.2 0 0 +7801200.0 14 10 77 95797 0 0 362 0 0 0 0 0 0 0 150 3.1 10 10 8000 600 9 999999999 25 0 0 88 0.2 0 0 +7804800.0 13.7 10.2 79 95976 155 714 361 15 0 15 1433 0 1443 582 190 3.6 10 10 8000 600 9 999999999 26 0 0 88 0.2 0 0 +7808400.0 14 10 77 95797 437 1368 362 76 0 76 7525 0 7585 3093 210 3.1 10 10 8000 750 9 999999999 25 0 0 88 0.2 0 0 +7812000.0 14 10 77 95797 686 1368 362 143 0 143 14495 0 14620 6212 180 2.6 10 10 8000 750 9 999999999 25 0 0 88 0.2 0 0 +7815600.0 14.5 9.9 74 96057 885 1368 365 199 1 199 23295 58 23350 9087 160 3.6 10 10 8000 750 9 999999999 25 0 0 88 0.2 0 0 +7819200.0 15 10 72 95815 1019 1368 367 238 4 235 28042 287 27853 11043 160 3.6 10 10 8000 900 9 999999999 25 0 0 88 0.2 0 0 +7822800.0 17 10 63 95852 1080 1368 367 420 28 398 47836 2545 45624 16333 150 3.1 9 9 8000 900 9 999999999 25 0 0 88 0.2 0 0 +7826400.0 18.5 8.8 53 96045 1063 1368 373 413 66 361 47309 5817 41699 15280 62 3.1 9 9 8000 1200 9 999999999 22 0 0 88 0.2 0 0 +7830000.0 19 9 52 95888 971 1368 355 664 557 268 76840 44511 31229 11907 180 4.1 5 5 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +7833600.0 19 9 52 95888 808 1368 355 525 599 171 61336 41749 20075 7736 190 6.7 5 5 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +7837200.0 18.7 8.7 52 96096 586 1368 353 341 464 142 38801 30090 16253 5730 170 7.2 5 5 8000 2000 9 999999999 22 0 0 88 0.2 0 0 +7840800.0 18 8 52 95870 321 1368 349 141 241 85 15652 9223 9419 2940 180 7.2 5 5 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +7844400.0 17 9 59 95852 30 1368 366 4 0 4 376 0 378 149 220 5.1 9 9 8000 1500 9 999999999 23 0 0 88 0.2 0 0 +7848000.0 15.5 8.3 62 96293 0 138 358 0 0 0 0 0 0 0 220 5.1 9 9 8000 1500 9 999999999 21 0 0 88 0.2 0 0 +7851600.0 15 8 63 95815 0 0 330 0 0 0 0 0 0 0 210 2.6 3 3 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +7855200.0 14 8 67 95797 0 0 330 0 0 0 0 0 0 0 98 2.1 5 5 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +7858800.0 13.3 8 70 96393 0 0 315 0 0 0 0 0 0 0 160 2.1 1 1 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +7862400.0 12 8 76 95759 0 0 328 0 0 0 0 0 0 0 160 2.1 7 7 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +7866000.0 12 8 76 95759 0 0 316 0 0 0 0 0 0 0 140 2.6 3 3 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +7869600.0 12.5 7.9 74 96407 0 0 343 0 0 0 0 0 0 0 140 2.6 9 9 9900 750 9 999999999 21 0 0 88 0.2 0 0 +7873200.0 13 8 72 95778 0 0 355 0 0 0 0 0 0 0 180 1 10 10 9900 750 9 999999999 21 0 0 88 0.2 0 0 +7876800.0 12 7 71 95759 0 0 349 0 0 0 0 0 0 0 170 2.1 10 10 9900 900 9 999999999 19 0 0 88 0.2 0 0 +7880400.0 12.1 7.4 73 96380 0 0 340 0 0 0 0 0 0 0 160 1.5 9 9 9900 750 9 999999999 20 0 0 88 0.2 0 0 +7884000.0 12 8 76 95759 0 0 340 0 0 0 0 0 0 0 230 1.5 9 9 9900 750 9 999999999 21 0 0 88 0.2 0 0 +7887600.0 12 8 76 95759 0 0 350 0 0 0 0 0 0 0 220 1.5 10 10 9900 750 9 999999999 21 0 0 88 0.2 0 0 +7891200.0 12.4 7.7 73 96358 151 697 342 23 0 23 2265 0 2281 860 40 1 9 9 9900 750 9 999999999 20 0 0 88 0.2 0 0 +7894800.0 13 8 72 95778 433 1367 329 208 229 135 22902 13822 14970 4663 338 1 6 6 9900 750 9 999999999 21 0 0 88 0.2 0 0 +7898400.0 16 8 59 95834 682 1367 337 438 563 157 50383 38592 18193 6675 159 1 4 4 9900 750 9 999999999 21 0 0 88 0.2 0 0 +7902000.0 17 7.7 54 96330 879 1367 339 623 769 128 75306 49221 15532 6303 288 1.5 3 3 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +7905600.0 19 7 46 95888 1013 1367 344 754 777 178 90739 53990 21475 8777 39 1.5 2 2 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +7909200.0 20 7 43 95906 1074 1367 344 811 782 197 97710 55388 23806 9735 220 2.6 1 1 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +7912800.0 22 5.6 34 96126 1057 1367 345 797 781 194 96029 55741 23451 9575 200 3.1 0 0 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +7916400.0 23 3 27 95959 964 1367 347 714 773 169 85789 54619 20381 8265 160 4.6 0 0 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +7920000.0 23 4 29 95959 801 1367 348 562 765 114 67854 48790 13850 5524 160 5.7 0 0 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +7923600.0 23.7 3.9 28 96033 579 1367 351 363 585 116 42065 36055 13427 4870 180 4.1 0 0 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +7927200.0 23 3 27 95959 314 1367 347 148 306 78 16523 11420 8708 2748 170 4.6 0 0 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +7930800.0 21 6 38 95924 23 1367 341 6 0 6 571 0 575 212 220 3.6 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +7934400.0 19.7 7 44 96057 0 108 336 0 0 0 0 0 0 0 210 4.1 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +7938000.0 18 7 49 95870 0 0 339 0 0 0 0 0 0 0 160 3.6 2 2 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +7941600.0 17 8 55 95852 0 0 339 0 0 0 0 0 0 0 140 1.5 3 3 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +7945200.0 15.9 7.4 57 96073 0 0 326 0 0 0 0 0 0 0 200 1.5 1 1 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +7948800.0 14 7 63 95797 0 0 329 0 0 0 0 0 0 0 121 1 5 5 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +7952400.0 14 5 55 95797 0 0 322 0 0 0 0 0 0 0 253 1 3 3 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +7956000.0 12.9 6.1 63 95970 0 0 326 0 0 0 0 0 0 0 50 1.5 6 6 9900 6000 9 999999999 17 0 0 88 0.2 0 0 +7959600.0 13 5 58 95778 0 0 320 0 0 0 0 0 0 0 38 1 4 4 9900 6000 9 999999999 15 0 0 88 0.2 0 0 +7963200.0 11 5 66 95740 0 0 314 0 0 0 0 0 0 0 194 1 5 5 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +7966800.0 11.3 6 70 95855 0 0 316 0 0 0 0 0 0 0 84 1 5 5 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +7970400.0 11 5 66 95740 0 0 314 0 0 0 0 0 0 0 30 2.6 5 5 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +7974000.0 12 6 67 95759 0 0 319 0 0 0 0 0 0 0 140 1.5 5 5 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +7977600.0 11.4 5.2 66 95923 147 680 327 29 0 29 2847 0 2867 1023 180 2.6 8 8 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +7981200.0 15 8 63 95815 429 1367 335 219 281 130 24148 16579 14449 4534 6 1 5 5 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +7984800.0 16 7 55 95834 677 1367 333 441 631 128 51541 40441 15062 5676 310 1.5 3 3 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +7988400.0 20.1 7.1 43 95913 874 1367 356 606 723 144 72635 48013 17293 6949 101 1 4 4 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +7992000.0 22 6 35 95942 1007 1367 346 751 836 135 92314 54368 16656 6924 190 1.5 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +7995600.0 24 4 27 95977 1067 1367 353 810 781 199 97508 56643 24124 9833 315 1 0 0 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +7999200.0 25.3 3.8 25 95729 1050 1367 374 784 855 126 97439 55331 15766 6602 170 3.1 3 3 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +8002800.0 26 5 26 96011 957 1367 364 706 772 165 84834 53635 19925 8089 160 2.6 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +8006400.0 26 5 26 96011 794 1367 364 556 713 141 65878 48016 16792 6575 210 5.7 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +8010000.0 24.6 7.3 33 95651 572 1367 378 344 500 135 39229 31927 15425 5443 210 7.2 4 4 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +8013600.0 23 7 36 95959 307 1367 352 142 292 77 15868 10128 8576 2697 210 5.1 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +8017200.0 22 5 33 95942 17 1367 345 4 0 4 413 0 416 158 200 2.6 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +8020800.0 19.5 8 47 95779 0 78 336 0 0 0 0 0 0 0 160 3.6 0 0 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +8024400.0 17 9 59 95852 0 0 343 0 0 0 0 0 0 0 170 4.1 4 4 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +8028000.0 15 9 67 95815 0 0 336 0 0 0 0 0 0 0 170 4.6 5 5 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +8031600.0 12.9 9.1 78 95932 0 0 322 0 0 0 0 0 0 0 160 5.7 3 3 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +8035200.0 12 10 88 95759 0 0 343 0 0 0 0 0 0 0 150 3.6 9 9 9900 2000 9 999999999 26 0 0 88 0.2 0 0 +8038800.0 12 9 82 95759 0 0 322 0 0 0 0 0 0 0 150 4.6 5 5 7000 2000 9 999999999 23 0 0 88 0.2 0 0 +8042400.0 10.9 9.3 90 96055 0 0 318 0 0 0 0 0 0 0 160 2.6 5 5 5000 2000 9 999999999 24 0 0 88 0.2 0 0 +8046000.0 11 9 87 95740 0 0 337 0 0 0 0 0 0 0 211 1 9 9 4000 90 9 999999999 23 0 0 88 0.2 0 0 +8049600.0 10 9 93 95721 0 0 341 0 0 0 0 0 0 0 51 0.5 10 10 350 30 0 999999999 23 0 0 88 0.2 0 0 +8053200.0 9.4 8.5 94 96045 0 0 338 0 0 0 0 0 0 0 180 2.6 10 10 300 30 0 999999999 22 0 0 88 0.2 0 0 +8056800.0 11 10 94 95740 0 0 347 0 0 0 0 0 0 0 170 4.1 10 10 4000 60 0 999999999 26 0 0 88 0.2 0 0 +8060400.0 11 10 94 95740 0 0 338 0 0 0 0 0 0 0 170 3.6 9 9 4000 120 0 999999999 26 0 0 88 0.2 0 0 +8064000.0 11.7 9.4 86 96212 144 663 350 13 0 13 1267 0 1276 516 177 1 10 10 4000 180 0 999999999 24 0 0 88 0.2 0 0 +8067600.0 12 9 82 95759 425 1366 351 73 0 73 7231 0 7288 2965 277 1 10 10 4000 210 0 999999999 23 0 0 88 0.2 0 0 +8071200.0 13 9 77 95778 672 1366 356 139 0 139 14126 0 14248 6036 310 2.1 10 10 4000 240 0 999999999 23 0 0 88 0.2 0 0 +8074800.0 14.1 8.9 71 96267 869 1366 352 320 55 285 36302 4670 32506 11637 200 1.5 9 9 5000 360 0 999999999 23 0 0 88 0.2 0 0 +8078400.0 16 10 68 95834 1002 1366 323 741 683 241 86918 51398 28361 11158 170 4.1 0 0 8000 2000 0 999999999 25 0 0 88 0.2 0 0 +8082000.0 18 9 56 95870 1061 1366 331 798 780 191 96088 54104 23132 9479 180 4.6 0 0 8000 2000 0 999999999 23 0 0 88 0.2 0 0 +8085600.0 19.6 9.6 52 96169 1044 1366 339 781 779 185 94010 53412 22409 9187 180 5.7 0 0 8000 2000 0 999999999 24 0 0 88 0.2 0 0 +8089200.0 21 9 46 95924 950 1366 356 694 836 112 85624 51062 13890 5768 160 5.7 2 2 9900 2000 0 999999999 23 0 0 88 0.2 0 0 +8092800.0 21 9 46 95924 787 1366 356 545 756 109 65693 45835 13194 5266 160 6.2 2 2 9900 2000 0 999999999 23 0 0 88 0.2 0 0 +8096400.0 20.5 9.4 49 96100 566 1366 343 349 513 136 39627 32321 15526 5449 160 5.7 0 0 9900 2000 0 999999999 24 0 0 88 0.2 0 0 +8100000.0 20 10 53 95906 301 1366 356 136 269 76 15046 8667 8512 2662 160 5.1 3 3 9900 2000 0 999999999 25 0 0 88 0.2 0 0 +8103600.0 18 10 59 95870 10 1366 349 3 0 3 244 0 246 97 160 4.1 4 4 9900 2000 0 999999999 25 0 0 88 0.2 0 0 +8107200.0 16.5 9.6 64 96169 0 48 325 0 0 0 0 0 0 0 170 3.6 0 0 9900 2000 9 999999999 24 0 0 88 0.2 0 0 +8110800.0 16 10 68 95834 0 0 342 0 0 0 0 0 0 0 160 3.6 5 5 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +8114400.0 15 9 67 95815 0 0 317 0 0 0 0 0 0 0 160 4.1 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +8118000.0 13.3 8.5 73 96233 0 0 309 0 0 0 0 0 0 0 160 3.6 0 0 8000 2000 9 999999999 22 0 0 88 0.2 0 0 +8121600.0 12 8 76 95759 0 0 303 0 0 0 0 0 0 0 150 2.6 0 0 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +8125200.0 11 8 82 95740 0 0 299 0 0 0 0 0 0 0 160 2.1 0 0 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +8128800.0 11.4 7.9 79 96187 0 0 301 0 0 0 0 0 0 0 180 2.6 0 0 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +8132400.0 10 7 82 95721 0 0 294 0 0 0 0 0 0 0 270 1.5 0 0 6000 2000 9 999999999 19 0 0 88 0.2 0 0 +8136000.0 8 5 81 95683 0 0 284 0 0 0 0 0 0 0 30 1.5 0 0 6000 2000 9 999999999 16 0 0 88 0.2 0 0 +8139600.0 8.1 6.3 88 96067 0 0 302 0 0 0 0 0 0 0 161 0 5 5 200 2000 0 999999999 18 0 0 88 0.2 0 0 +8143200.0 8 5 81 95683 0 0 301 0 0 0 0 0 0 0 36 1 5 5 4000 2000 0 999999999 16 0 0 88 0.2 0 0 +8146800.0 7 5 87 95663 0 0 296 0 0 0 0 0 0 0 241 1 5 5 3000 2000 0 999999999 16 0 0 88 0.2 0 0 +8150400.0 6.1 4.7 91 96179 140 646 292 37 14 36 4114 0 3969 1162 10 1.5 5 5 300 2000 0 999999999 15 0 0 88 0.2 0 0 +8154000.0 9.6 6.3 80 95979 420 1365 315 173 131 132 19036 7883 14642 4524 309 1 7 7 1900 2000 9 999999999 18 0 0 88 0.2 0 0 +8157600.0 13 8 72 95778 667 1365 345 227 80 188 25651 5885 21347 7494 135 0.5 9 9 3500 5400 0 999999999 21 0 0 88 0.2 0 0 +8161200.0 17 9.6 62 96235 864 1365 346 572 561 218 66244 42136 25311 9627 150 3.6 5 5 5000 2000 0 999999999 24 0 0 88 0.2 0 0 +8164800.0 18 9 56 95870 996 1365 371 381 58 338 43445 5084 38847 14142 160 7.2 9 9 8000 5400 0 999999999 23 0 0 88 0.2 0 0 +8168400.0 20 9 49 95906 1055 1365 381 409 21 393 46535 1934 44981 16025 170 7.2 9 9 8000 5400 0 999999999 23 0 0 88 0.2 0 0 +8172000.0 21.1 7.2 41 96177 1037 1365 385 402 59 356 45966 5296 41064 14966 150 5.7 9 9 8000 7500 0 999999999 19 0 0 88 0.2 0 0 +8175600.0 21.5 6.1 37 96059 943 1365 344 692 477 363 78027 44625 41134 14220 328 5.7 0 0 8000 7500 9 999999999 17 0 0 88 0.2 0 0 +8179200.0 22 5 33 95942 780 1365 398 171 25 157 20075 1764 18455 7105 200 5.7 10 10 8000 5400 0 999999999 15 0 0 88 0.2 0 0 +8182800.0 20.2 4.8 36 96170 559 1365 388 109 0 109 10963 0 11053 4574 160 5.7 10 10 8000 5400 0 999999999 15 0 0 88 0.2 0 0 +8186400.0 19 7 46 95888 294 1365 384 42 0 42 4126 0 4157 1666 190 4.1 10 10 8000 5400 0 999999999 19 0 0 88 0.2 0 0 +8190000.0 17 10 63 95852 2 1365 378 0 0 0 30 0 30 13 210 7.2 10 10 8000 4800 0 999999999 25 0 0 88 0.2 0 0 +8193600.0 16.5 9 61 96349 0 18 364 0 0 0 0 0 0 0 160 5.1 9 9 8000 4800 9 999999999 23 0 0 88 0.2 0 0 +8197200.0 16 10 68 95834 0 0 342 0 0 0 0 0 0 0 150 3.6 5 5 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +8200800.0 15 10 72 95815 0 0 332 0 0 0 0 0 0 0 140 3.1 3 3 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +8204400.0 14.1 9.5 74 96512 0 0 314 0 0 0 0 0 0 0 190 2.1 0 0 8000 2000 9 999999999 24 0 0 88 0.2 0 0 +8208000.0 13 9 77 95778 0 0 334 0 0 0 0 0 0 0 20 1.5 7 7 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +8211600.0 11 8 82 95740 0 0 299 0 0 0 0 0 0 0 360 2.6 0 0 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +8215200.0 11.8 8.8 82 96384 0 0 303 0 0 0 0 0 0 0 120 1.5 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +8218800.0 11 8 82 95740 0 0 299 0 0 0 0 0 0 0 160 3.1 0 0 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +8222400.0 11 8 82 95740 0 0 299 0 0 0 0 0 0 0 240 1 0 0 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +8226000.0 9.4 6.9 84 96300 0 0 291 0 0 0 0 0 0 0 200 1 0 0 6000 2000 9 999999999 19 0 0 88 0.2 0 0 +8229600.0 9 8 93 95702 0 0 291 0 0 0 0 0 0 0 210 1 0 0 6000 2000 9 999999999 21 0 0 88 0.2 0 0 +8233200.0 8 6 87 95683 0 0 285 0 0 0 0 0 0 0 111 1 0 0 5000 2000 9 999999999 17 0 0 88 0.2 0 0 +8236800.0 9.1 7.1 87 96417 136 629 290 38 53 33 4227 0 3657 1086 244 0.5 0 0 5000 2000 9 999999999 19 0 0 88 0.2 0 0 +8240400.0 12 9 82 95759 416 1364 304 225 425 95 25390 20481 10771 3614 350 1.5 0 0 5000 2000 9 999999999 23 0 0 88 0.2 0 0 +8244000.0 14 9 72 95797 663 1364 313 434 652 118 50932 39793 13843 5241 30 3.1 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +8247600.0 16.6 9 61 96341 858 1364 324 611 789 114 74270 48557 13948 5670 177 1.5 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +8251200.0 20 9 49 95906 990 1364 351 729 842 118 90150 51890 14674 6125 35 1.5 2 2 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +8254800.0 21 8 43 95924 1049 1364 350 787 779 189 94844 54306 22835 9348 169 1.5 1 1 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +8258400.0 23.2 4.4 29 96110 1031 1364 349 775 777 188 93302 55620 22745 9272 170 3.6 0 0 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +8262000.0 24 6 31 95977 937 1364 355 686 816 126 83929 52510 15448 6361 170 4.1 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +8265600.0 24 8 36 95977 773 1364 358 535 754 107 64456 45864 12941 5148 170 5.7 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +8269200.0 24.2 6.5 32 96013 552 1364 357 339 516 130 38604 32516 14885 5213 170 5.1 0 0 9900 2000 9 999999999 18 0 0 88 0.2 0 0 +8272800.0 23 5 31 95959 287 1364 349 129 269 72 14350 8550 8077 2513 180 5.7 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +8276400.0 21 5 35 95924 0 1352 340 0 0 0 0 0 0 0 210 4.1 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +8280000.0 19.8 4 35 96106 0 0 333 0 0 0 0 0 0 0 200 4.6 0 0 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +8283600.0 18 5 42 95870 0 0 333 0 0 0 0 0 0 0 150 2.6 1 1 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +8287200.0 16 5 48 95834 0 0 328 0 0 0 0 0 0 0 170 1.5 2 2 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +8290800.0 14.6 5.1 53 96172 0 0 311 0 0 0 0 0 0 0 327 1 0 0 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +8294400.0 15 6 55 95815 0 0 328 0 0 0 0 0 0 0 140 2.1 3 3 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +8298000.0 14 5 55 95797 0 0 322 0 0 0 0 0 0 0 180 2.6 3 3 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +8301600.0 12 6.2 68 96199 0 0 301 0 0 0 0 0 0 0 140 2.1 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +8305200.0 11 6 71 95740 0 0 317 0 0 0 0 0 0 0 310 1.5 6 6 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +8308800.0 10 4 66 95721 0 0 308 0 0 0 0 0 0 0 280 1.5 5 5 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +8312400.0 8.2 4.5 77 96126 0 0 284 0 0 0 0 0 0 0 50 2.1 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +8316000.0 8.1 4.2 77 95904 0 0 306 0 0 0 0 0 0 0 7 1.3 7 7 9000 2000 9 999999999 14 0 0 88 0.2 0 0 +8319600.0 8 4 76 95683 0 0 283 0 0 0 0 0 0 0 247 0.5 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +8323200.0 8 5 81 95683 132 612 284 37 47 32 4058 0 3560 1056 320 1 0 0 5000 2000 9 999999999 16 0 0 88 0.2 0 0 +8326800.0 13 5 58 95778 412 1363 320 218 399 97 24563 20127 11003 3656 30 1.5 4 4 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +8330400.0 16 6 51 95834 658 1363 332 430 634 124 50202 40291 14530 5451 10 1.5 3 3 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +8334000.0 19.5 6 41 96176 853 1363 341 609 788 117 73997 49871 14211 5756 284 1 1 1 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +8337600.0 21 6 38 95924 984 1363 341 731 773 173 87869 53825 20852 8494 210 2.6 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +8341200.0 24 6 31 95977 1042 1363 355 785 778 190 94495 55178 22997 9392 160 4.1 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +8344800.0 25 4.8 27 95999 1024 1363 359 769 776 186 92541 55302 22488 9169 170 5.1 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +8348400.0 26 3 23 96011 930 1363 361 684 768 160 82107 53631 19281 7794 160 5.1 0 0 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +8352000.0 26 2 21 96011 766 1363 360 534 753 111 64264 48071 13370 5285 180 4.6 0 0 9900 2000 9 999999999 11 0 0 88 0.2 0 0 +8355600.0 26.5 3 22 95873 545 1363 364 335 510 132 38158 32942 15037 5224 170 5.7 0 0 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +8359200.0 25 3 24 95994 280 1363 356 125 264 71 13917 8233 7893 2448 210 4.6 0 0 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +8362800.0 23 3 27 95959 0 1321 347 0 0 0 0 0 0 0 210 4.1 0 0 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +8366400.0 20 3 32 95949 0 0 333 0 0 0 0 0 0 0 160 2.6 0 0 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +8370000.0 18 5 42 95870 0 0 333 0 0 0 0 0 0 0 210 1.5 1 1 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +8373600.0 18 4 39 95870 0 0 331 0 0 0 0 0 0 0 58 1 1 1 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +8377200.0 15.7 4.4 47 96032 0 0 315 0 0 0 0 0 0 0 94 1 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +8380800.0 15 4 48 95815 0 0 322 0 0 0 0 0 0 0 250 1.5 2 2 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +8384400.0 12 3 54 95759 0 0 311 0 0 0 0 0 0 0 350 1.5 3 3 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +8388000.0 11.3 3.7 59 95978 0 0 296 0 0 0 0 0 0 0 30 1.5 0 0 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +8391600.0 11 3 58 95740 0 0 309 0 0 0 0 0 0 0 277 0.5 4 4 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +8395200.0 10 3 62 95721 0 0 305 0 0 0 0 0 0 0 34 0 4 4 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +8398800.0 9.4 3.5 67 95856 0 0 288 0 0 0 0 0 0 0 256 0.5 0 0 7000 2000 9 999999999 13 0 0 88 0.2 0 0 +8402400.0 9 3 66 95702 0 0 286 0 0 0 0 0 0 0 201 0.5 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +8406000.0 9 3 66 95702 0 0 286 0 0 0 0 0 0 0 10 1.5 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +8409600.0 9.4 3.4 66 95866 128 595 288 35 40 31 3874 0 3463 1026 237 1 0 0 6000 2000 9 999999999 13 0 0 88 0.2 0 0 +8413200.0 13 4 54 95778 408 1362 303 220 428 92 24944 21070 10469 3502 158 1 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +8416800.0 18 5 42 95870 653 1362 333 429 640 122 50163 40766 14362 5383 334 1 1 1 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +8420400.0 21.6 3.6 31 95854 848 1362 341 607 783 120 73567 50727 14608 5895 202 1 0 0 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +8424000.0 24 4 27 95977 978 1362 353 728 772 173 87484 54519 20928 8506 244 1 0 0 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +8427600.0 27 3 21 96029 1036 1362 366 783 777 192 94203 56283 23213 9452 160 2.1 0 0 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +8431200.0 28.7 3.5 20 95730 1017 1362 391 755 850 120 93806 54646 15009 6273 150 3.6 3 3 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +8434800.0 29 -2 13 96063 923 1362 369 683 797 142 82729 55198 17331 7048 210 6.2 0 0 9900 2000 9 999999999 7 0 0 88 0.2 0 0 +8438400.0 28 1 17 95863 759 1362 368 529 684 147 62187 47713 17394 6684 207 6.7 0 0 9950 2000 9 999999999 10 0 0 88 0.2 0 0 +8442000.0 27 4.1 23 95664 538 1362 386 318 486 126 36244 30561 14435 5035 210 7.2 4 4 9950 2000 9 999999999 14 0 0 88 0.2 0 0 +8445600.0 25 3 24 95994 274 1362 356 120 255 69 13400 7598 7734 2390 210 6.7 0 0 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +8449200.0 23 3 27 95959 0 1291 347 0 0 0 0 0 0 0 190 5.7 0 0 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +8452800.0 20.9 2.6 30 95766 0 0 343 0 0 0 0 0 0 0 150 3.6 1 1 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +8456400.0 19 3 34 95888 0 0 329 0 0 0 0 0 0 0 150 3.6 0 0 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +8460000.0 18 4 39 95870 0 0 331 0 0 0 0 0 0 0 160 3.6 1 1 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +8463600.0 15.3 4.6 49 95854 0 0 320 0 0 0 0 0 0 0 160 4.1 1 1 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +8467200.0 15 5 51 95815 0 0 327 0 0 0 0 0 0 0 150 3.1 3 3 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +8470800.0 15 4 48 95815 0 0 322 0 0 0 0 0 0 0 210 1 2 2 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +8474400.0 12.3 4.8 60 95789 0 0 307 0 0 0 0 0 0 0 278 1 1 1 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +8478000.0 12 4 58 95759 0 0 315 0 0 0 0 0 0 0 190 2.1 4 4 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +8481600.0 12 5 62 95759 0 0 316 0 0 0 0 0 0 0 150 3.1 4 4 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +8485200.0 12 5 62 95759 0 0 316 0 0 0 0 0 0 0 150 2.6 4 4 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +8488800.0 10 5 71 95721 0 0 312 0 0 0 0 0 0 0 200 2.1 6 6 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +8492400.0 8 3 71 95683 0 0 282 0 0 0 0 0 0 0 300 2.1 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +8496000.0 10 5.4 73 95972 125 578 321 22 0 22 2167 0 2182 794 270 2.1 8 8 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +8499600.0 12 7 71 95759 403 1362 339 112 8 109 12436 417 12223 3926 140 3.1 9 9 8000 6000 9 999999999 19 0 0 88 0.2 0 0 +8503200.0 12 7 71 95759 648 1362 339 219 19 210 24462 1523 23549 7911 170 3.1 9 9 8000 5400 9 999999999 19 0 0 88 0.2 0 0 +8506800.0 13.5 7.7 68 96057 842 1362 347 309 64 269 35066 5358 30742 11019 140 2.6 9 9 8000 5400 9 999999999 20 0 0 88 0.2 0 0 +8510400.0 15 7 59 95815 973 1362 354 371 68 323 42424 5944 37090 13546 200 2.6 9 9 8000 5400 9 999999999 19 0 0 88 0.2 0 0 +8514000.0 16 7 55 95834 1030 1362 359 399 26 379 45376 2381 43434 15495 210 2.6 9 9 8000 5400 9 999999999 19 0 0 88 0.2 0 0 +8517600.0 16.6 6.8 52 96105 1011 1362 372 238 9 231 28044 675 27407 10870 160 2.1 10 10 8000 5400 9 999999999 18 0 0 88 0.2 0 0 +8521200.0 17 7 52 95852 916 1362 364 344 57 306 39173 4991 34982 12611 180 3.1 9 9 8000 5400 9 999999999 19 0 0 88 0.2 0 0 +8524800.0 17 8 55 95852 753 1362 375 163 2 162 18928 109 18910 7175 170 3.6 10 10 8000 4500 9 999999999 21 0 0 88 0.2 0 0 +8528400.0 16.1 8.7 61 96058 531 1362 371 101 0 101 10135 0 10218 4224 150 5.1 10 10 8000 4500 9 999999999 22 0 0 88 0.2 0 0 +8532000.0 15 8 63 95815 267 1362 365 36 0 36 3562 0 3588 1437 160 3.6 10 10 8000 4500 9 999999999 21 0 0 88 0.2 0 0 +8535600.0 14.9 8.2 65 95990 0 1260 335 0 0 0 0 0 0 0 89 3.3 5 5 8000 4500 9 999999999 21 0 0 88 0.2 0 0 +8539200.0 14.7 8.5 66 96164 0 0 354 0 0 0 0 0 0 0 180 3.1 9 9 8000 3900 9 999999999 22 0 0 88 0.2 0 0 +8542800.0 15 8 63 95815 0 0 355 0 0 0 0 0 0 0 160 5.7 9 9 8000 3600 9 999999999 21 0 0 88 0.2 0 0 +8546400.0 14 9 72 95797 0 0 351 0 0 0 0 0 0 0 90 4.1 9 9 8000 4500 9 999999999 23 0 0 88 0.2 0 0 +8550000.0 13.6 8.1 69 96078 0 0 332 0 0 0 0 0 0 0 310 2.6 6 6 8000 5400 9 999999999 21 0 0 88 0.2 0 0 +8553600.0 14 8 67 95797 0 0 350 0 0 0 0 0 0 0 342 1 9 9 8000 4500 9 999999999 21 0 0 88 0.2 0 0 +8557200.0 13 8 72 95778 0 0 326 0 0 0 0 0 0 0 110 1.5 5 5 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +8560800.0 12.7 9.1 79 95947 0 0 345 0 0 0 0 0 0 0 200 3.6 9 9 8000 3600 9 999999999 23 0 0 88 0.2 0 0 +8564400.0 12 9 82 95759 0 0 341 0 0 0 0 0 0 0 170 4.1 9 9 8000 4500 9 999999999 23 0 0 88 0.2 0 0 +8568000.0 12 9 82 95759 0 0 341 0 0 0 0 0 0 0 130 3.6 9 9 9000 4800 9 999999999 23 0 0 88 0.2 0 0 +8571600.0 11.8 8.6 81 95949 0 0 340 0 0 0 0 0 0 0 320 4.1 9 9 8000 3600 9 999999999 22 0 0 88 0.2 0 0 +8575200.0 10 9 93 95721 0 0 332 0 0 0 0 0 0 0 80 2.1 9 9 7000 4500 9 999999999 23 0 0 88 0.2 0 0 +8578800.0 11 8 82 95740 0 0 317 0 0 0 0 0 0 0 279 1 5 5 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +8582400.0 11 8.8 86 96076 121 561 318 29 1 29 3241 0 3243 962 130 1.5 5 5 5000 2000 9 999999999 23 0 0 88 0.2 0 0 +8586000.0 12 9 82 95759 399 1361 322 197 326 102 22085 16028 11425 3723 240 1.5 5 5 5000 2000 9 999999999 23 0 0 88 0.2 0 0 +8589600.0 13 9 77 95778 643 1361 327 389 500 153 44567 33597 17561 6350 350 1.5 5 5 5000 2000 9 999999999 23 0 0 88 0.2 0 0 +8593200.0 15.7 9 64 96060 837 1361 339 551 610 176 64630 42767 20754 8075 340 2.1 5 5 6000 2000 9 999999999 23 0 0 88 0.2 0 0 +8596800.0 19 8 49 95888 967 1361 354 663 680 181 79234 47429 21668 8763 33 1 5 5 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +8600400.0 21 6 38 95924 1024 1361 361 715 695 192 85752 49589 23161 9420 18 1.5 5 5 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +8604000.0 22.5 5.6 33 95936 1004 1361 368 698 665 208 83053 48949 24842 9973 210 2.6 5 5 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +8607600.0 23 -1 20 95959 909 1361 357 661 768 147 79695 53513 17832 7213 210 4.6 3 3 8000 2000 9 999999999 8 0 0 88 0.2 0 0 +8611200.0 22 4 31 95942 746 1361 343 514 689 136 60641 46178 16143 6230 220 6.7 0 0 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +8614800.0 21.3 6 37 95915 524 1361 363 295 419 133 33319 26549 15128 5171 210 6.2 5 5 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +8618400.0 20 7 43 95906 261 1361 352 110 222 67 12158 5706 7471 2289 210 5.1 3 3 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +8622000.0 18 6 45 95870 0 1230 342 0 0 0 0 0 0 0 210 5.1 3 3 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +8625600.0 16.3 5.2 48 96033 0 0 319 0 0 0 0 0 0 0 200 5.7 0 0 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +8629200.0 15 6 55 95815 0 0 328 0 0 0 0 0 0 0 150 3.6 3 3 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +8632800.0 14 7 63 95797 0 0 329 0 0 0 0 0 0 0 150 3.6 5 5 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +8636400.0 12.8 7.2 69 96110 0 0 306 0 0 0 0 0 0 0 140 3.1 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +8640000.0 11 7 76 95740 0 0 311 0 0 0 0 0 0 0 170 2.6 3 3 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +8643600.0 11 8 82 95740 0 0 312 0 0 0 0 0 0 0 190 2.6 3 3 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +8647200.0 10.5 8.6 88 96095 0 0 313 0 0 0 0 0 0 0 150 3.1 4 4 800 2000 0 999999999 22 0 0 88 0.2 0 0 +8650800.0 9 8 93 95702 0 0 335 0 0 0 0 0 0 0 160 1 10 10 400 30 0 999999999 21 0 0 88 0.2 0 0 +8654400.0 8 8 100 95683 0 0 331 0 0 0 0 0 0 0 247 0 10 10 2000 2000 0 999999999 21 0 0 88 0.2 0 0 +8658000.0 7.4 6.5 94 96082 0 0 283 0 0 0 0 0 0 0 220 1 0 0 200 2000 0 999999999 18 0 0 88 0.2 0 0 +8661600.0 9 8 93 95702 0 0 335 0 0 0 0 0 0 0 150 2.1 10 10 900 60 0 999999999 21 0 0 88 0.2 0 0 +8665200.0 9 9 100 95702 0 0 337 0 0 0 0 0 0 0 210 2.1 10 10 1300 90 0 999999999 23 0 0 88 0.2 0 0 +8668800.0 8.6 7.9 95 96209 117 544 333 9 0 9 920 0 926 375 219 1 10 10 5000 150 0 999999999 21 0 0 88 0.2 0 0 +8672400.0 9 8 93 95702 395 1360 335 66 0 66 6544 0 6595 2670 310 2.6 10 10 5000 180 0 999999999 21 0 0 88 0.2 0 0 +8676000.0 11 9 87 95740 639 1360 346 130 0 130 13204 0 13316 5612 110 1 10 10 8000 270 0 999999999 23 0 0 88 0.2 0 0 +8679600.0 12.6 8.4 76 96248 832 1360 344 304 24 289 34212 2051 32768 11431 37 0.5 9 9 8000 5100 0 999999999 22 0 0 88 0.2 0 0 +8683200.0 15 8 63 95815 961 1360 355 365 58 324 41640 5063 37196 13501 190 2.6 9 9 8000 5100 0 999999999 21 0 0 88 0.2 0 0 +8686800.0 16 9 63 95834 1017 1360 341 721 611 265 84271 47793 31077 12093 238 2.6 5 5 9900 5100 0 999999999 23 0 0 88 0.2 0 0 +8690400.0 18 8.5 54 96149 998 1360 347 716 777 146 87337 50640 17888 7406 236 2.6 4 4 9900 2000 0 999999999 22 0 0 88 0.2 0 0 +8694000.0 19 8 49 95888 902 1360 349 646 800 114 79066 49637 14068 5782 170 3.6 3 3 9900 2000 0 999999999 21 0 0 88 0.2 0 0 +8697600.0 20 7 43 95906 739 1360 352 499 713 112 59676 44093 13390 5252 180 4.6 3 3 9900 2000 0 999999999 19 0 0 88 0.2 0 0 +8701200.0 19.2 7.2 46 96086 518 1360 334 311 515 115 35484 30132 13145 4607 220 4.6 0 0 9900 2000 0 999999999 19 0 0 88 0.2 0 0 +8704800.0 18 6 45 95870 254 1360 338 107 225 65 11877 5494 7244 2217 220 5.1 2 2 9900 2000 0 999999999 17 0 0 88 0.2 0 0 +8708400.0 17 5 45 95852 0 1200 332 0 0 0 0 0 0 0 210 4.1 2 2 9900 2000 0 999999999 15 0 0 88 0.2 0 0 +8712000.0 15.9 6 52 96253 0 0 318 0 0 0 0 0 0 0 200 4.6 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +8715600.0 14 7 63 95797 0 0 329 0 0 0 0 0 0 0 170 3.1 5 5 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +8719200.0 13 8 72 95778 0 0 329 0 0 0 0 0 0 0 170 4.6 6 6 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +8722800.0 12.5 7.6 72 96463 0 0 305 0 0 0 0 0 0 0 160 3.6 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +8726400.0 12 7 71 95759 0 0 323 0 0 0 0 0 0 0 170 3.1 6 6 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +8730000.0 11 7 76 95740 0 0 322 0 0 0 0 0 0 0 270 1.5 7 7 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +8733600.0 8.9 5.2 78 96460 0 0 288 0 0 0 0 0 0 0 60 2.1 0 0 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +8737200.0 9 5 76 95702 0 0 288 0 0 0 0 0 0 0 168 1 0 0 7000 2000 9 999999999 16 0 0 88 0.2 0 0 +8740800.0 8 5 81 95683 0 0 284 0 0 0 0 0 0 0 262 0 0 0 7000 2000 9 999999999 16 0 0 88 0.2 0 0 +8744400.0 7.3 4.6 83 96373 0 0 281 0 0 0 0 0 0 0 231 0.5 0 0 5000 2000 9 999999999 15 0 0 88 0.2 0 0 +8748000.0 7 4 81 95663 0 0 279 0 0 0 0 0 0 0 187 0 0 0 6000 2000 9 999999999 14 0 0 88 0.2 0 0 +8751600.0 6 5 93 95644 0 0 318 0 0 0 0 0 0 0 187 1 10 10 3000 2000 9 999999999 16 0 0 88 0.2 0 0 +8755200.0 7.5 5.5 87 96339 113 527 282 29 20 28 3249 0 3076 908 70 2.6 0 0 3000 2000 9 999999999 16 0 0 88 0.2 0 0 +8758800.0 9 5 76 95702 391 1359 288 207 424 85 23501 19404 9720 3253 230 1.5 0 0 4000 2000 9 999999999 16 0 0 88 0.2 0 0 +8762400.0 12 7 71 95759 634 1359 302 412 634 116 48122 38949 13619 5095 280 1.5 0 0 6000 2000 9 999999999 19 0 0 88 0.2 0 0 +8766000.0 15.1 6.8 58 96333 826 1359 315 585 779 112 71008 48506 13584 5480 312 1.5 0 0 6000 2000 9 999999999 19 0 0 88 0.2 0 0 +8769600.0 18 7 49 95870 955 1359 339 700 837 112 86626 51985 13909 5781 132 1 2 2 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +8773200.0 20 6 40 95906 1011 1359 343 757 773 181 91033 54366 21921 8945 200 2.1 1 1 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +8776800.0 21.6 3.3 30 96148 991 1359 341 741 772 179 89092 55036 21563 8767 190 4.1 0 0 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +8780400.0 23 4 29 95959 896 1359 348 652 763 149 78312 52152 18029 7268 180 4.6 0 0 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +8784000.0 24 3 25 95977 732 1359 352 503 738 106 60398 46100 12720 4990 160 4.6 0 0 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +8787600.0 23.6 1.4 23 96088 511 1359 348 308 524 111 35291 31345 12773 4471 160 4.6 0 0 9900 2000 9 999999999 11 0 0 88 0.2 0 0 +8791200.0 23 4 29 95959 248 1359 348 103 219 63 11466 5191 7066 2155 170 4.1 0 0 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +8794800.0 20 1 28 95906 0 1170 331 0 0 0 0 0 0 0 210 3.6 0 0 9900 2000 9 999999999 10 0 0 88 0.2 0 0 +8798400.0 18.7 1.9 32 96219 0 0 332 0 0 0 0 0 0 0 170 2.6 1 1 9900 2000 9 999999999 11 0 0 88 0.2 0 0 +8802000.0 17 3 39 95852 0 0 326 0 0 0 0 0 0 0 150 2.6 1 1 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +8805600.0 17 2 36 95852 0 0 318 0 0 0 0 0 0 0 160 4.1 0 0 9900 2000 9 999999999 11 0 0 88 0.2 0 0 +8809200.0 13.2 2.4 48 96316 0 0 303 0 0 0 0 0 0 0 310 1.5 0 0 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +8812800.0 12 2 50 95759 0 0 307 0 0 0 0 0 0 0 53 0 2 2 9900 2000 9 999999999 11 0 0 88 0.2 0 0 +8816400.0 10 2 57 95721 0 0 304 0 0 0 0 0 0 0 270 1 4 4 9900 2000 9 999999999 11 0 0 88 0.2 0 0 +8820000.0 9.9 1.8 57 96272 0 0 288 0 0 0 0 0 0 0 161 1 0 0 9900 2000 9 999999999 11 0 0 88 0.2 0 0 +8823600.0 9 2 61 95702 0 0 299 0 0 0 0 0 0 0 179 0.5 4 4 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +8827200.0 8 2 66 95683 0 0 281 0 0 0 0 0 0 0 9 1 0 0 6000 2000 9 999999999 12 0 0 88 0.2 0 0 +8830800.0 8 1.7 64 96169 0 0 297 0 0 0 0 0 0 0 187 1 5 5 7000 2000 9 999999999 11 0 0 88 0.2 0 0 +8834400.0 8 2 66 95683 0 0 281 0 0 0 0 0 0 0 215 1 0 0 8000 2000 9 999999999 12 0 0 88 0.2 0 0 +8838000.0 7 1 66 95663 0 0 276 0 0 0 0 0 0 0 92 0 0 0 5000 2000 9 999999999 10 0 0 88 0.2 0 0 +8841600.0 8 1.7 64 96197 110 511 280 29 21 27 3172 0 2989 881 360 1.5 0 0 6000 2000 9 999999999 11 0 0 88 0.2 0 0 +8845200.0 11 3 58 95740 386 1359 294 205 411 88 23174 19336 9996 3313 270 1.5 0 0 7000 2000 9 999999999 13 0 0 88 0.2 0 0 +8848800.0 16 3 42 95834 629 1359 315 410 623 122 47832 39976 14272 5289 67 1 0 0 9000 2000 9 999999999 13 0 0 88 0.2 0 0 +8852400.0 18.9 2.6 34 96137 821 1359 334 584 773 117 70701 50086 14229 5708 113 1 1 1 9000 2000 9 999999999 12 0 0 88 0.2 0 0 +8856000.0 21 3 30 95924 949 1359 338 703 813 135 85777 54123 16567 6813 270 1.5 0 0 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +8859600.0 23 1 23 95959 1005 1359 365 704 616 249 82788 49325 29417 11497 210 1.5 5 5 9900 2000 9 999999999 10 0 0 88 0.2 0 0 +8863200.0 25.8 0.6 19 95909 984 1359 382 645 435 330 73890 39196 38040 13862 140 3.1 6 6 9900 7500 9 999999999 10 0 0 88 0.2 0 0 +8866800.0 26 1 20 96011 889 1359 374 641 633 227 74527 50373 26487 10095 160 6.7 3 3 9900 2000 9 999999999 10 0 0 88 0.2 0 0 +8870400.0 26 2 21 96011 725 1359 404 257 92 208 29251 7248 23811 8474 170 7.2 9 9 9900 7500 9 999999999 11 0 0 88 0.2 0 0 +8874000.0 24.6 2.9 24 95840 504 1359 398 156 7 153 17372 512 17141 5553 160 6.2 9 9 9900 7500 9 999999999 12 0 0 88 0.2 0 0 +8877600.0 23 3 27 95959 241 1359 389 51 0 51 5046 0 5082 1839 170 6.7 9 9 9900 7500 9 999999999 12 0 0 88 0.2 0 0 +8881200.0 21 3 30 95924 0 1141 358 0 0 0 0 0 0 0 160 4.6 5 5 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +8884800.0 20 2.9 32 95854 0 0 339 0 0 0 0 0 0 0 150 3.1 1 1 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +8888400.0 18 2 34 95870 0 0 323 0 0 0 0 0 0 0 150 2.6 0 0 9900 2000 9 999999999 11 0 0 88 0.2 0 0 +8892000.0 16.5 0.6 34 95846 0 0 315 0 0 0 0 0 0 0 97 1.3 0 0 9950 2000 9 999999999 10 0 0 88 0.2 0 0 +8895600.0 15.1 -0.9 33 95822 0 0 307 0 0 0 0 0 0 0 166 0 0 0 9950 2000 9 999999999 9 0 0 88 0.2 0 0 +8899200.0 12 2 50 95759 0 0 297 0 0 0 0 0 0 0 290 1.5 0 0 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +8902800.0 11 1 50 95740 0 0 292 0 0 0 0 0 0 0 40 1 0 0 8000 2000 9 999999999 10 0 0 88 0.2 0 0 +8906400.0 9.7 1.2 55 95862 0 0 287 0 0 0 0 0 0 0 5 1 0 0 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +8910000.0 10 2 57 95721 0 0 289 0 0 0 0 0 0 0 41 0.5 0 0 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +8913600.0 9 2 61 95702 0 0 285 0 0 0 0 0 0 0 75 0 0 0 7000 2000 9 999999999 12 0 0 88 0.2 0 0 +8917200.0 8 1.9 65 95810 0 0 281 0 0 0 0 0 0 0 345 1 0 0 7000 2000 9 999999999 11 0 0 88 0.2 0 0 +8920800.0 8 2 66 95683 0 0 281 0 0 0 0 0 0 0 20 1.5 0 0 8000 2000 9 999999999 12 0 0 88 0.2 0 0 +8924400.0 9 2 61 95702 0 0 285 0 0 0 0 0 0 0 20 2.1 0 0 8000 2000 9 999999999 12 0 0 88 0.2 0 0 +8928000.0 9.3 1.2 57 95826 106 494 285 28 20 26 3065 0 2900 853 62 0 0 0 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +8931600.0 12 1 47 95759 382 1358 306 202 342 106 22469 18013 11812 3736 260 1.5 2 2 9900 2000 9 999999999 10 0 0 88 0.2 0 0 +8935200.0 16 2 39 95834 624 1358 320 407 618 123 47370 39927 14329 5292 234 1 1 1 9900 2000 9 999999999 11 0 0 88 0.2 0 0 +8938800.0 20 1.9 30 95816 816 1358 332 580 772 117 70184 50141 14202 5688 252 1 0 0 9900 2000 9 999999999 11 0 0 88 0.2 0 0 +8942400.0 24 2 24 95977 943 1358 350 699 767 166 83907 54275 20037 8107 20 0.5 0 0 9900 2000 9 999999999 11 0 0 88 0.2 0 0 +8946000.0 27 0 17 96029 999 1358 362 752 772 185 90421 56382 22345 9063 119 1 0 0 9900 2000 9 999999999 9 0 0 88 0.2 0 0 +8949600.0 29.7 -3.7 11 95624 978 1358 370 737 770 183 88456 56984 22038 8900 170 2.6 0 0 9900 2000 9 999999999 6 0 0 88 0.2 0 0 +8953200.0 31 -6 8 96096 882 1358 374 650 796 133 78794 54966 16140 6527 150 6.2 0 0 9900 2000 9 999999999 5 0 0 88 0.2 0 0 +8956800.0 32 -2 11 96113 718 1358 384 495 663 144 57984 46502 16982 6427 170 5.7 0 0 9900 2000 9 999999999 7 0 0 88 0.2 0 0 +8960400.0 31 -2.3 11 95636 498 1358 379 299 457 131 33730 29805 14877 4984 170 5.1 0 0 9900 2000 9 999999999 7 0 0 88 0.2 0 0 +8964000.0 29 -4 11 96063 235 1358 367 97 186 64 10664 4619 7137 2123 170 4.6 0 0 9900 2000 9 999999999 6 0 0 88 0.2 0 0 +8967600.0 26 -3 14 96011 0 1112 354 0 0 0 0 0 0 0 150 2.6 0 0 9900 2000 9 999999999 7 0 0 88 0.2 0 0 +8971200.0 24.6 -0.8 18 95746 0 0 350 0 0 0 0 0 0 0 150 3.6 0 0 9900 2000 9 999999999 8 0 0 88 0.2 0 0 +8974800.0 22 0 23 95942 0 0 339 0 0 0 0 0 0 0 160 2.1 0 0 9900 2000 9 999999999 9 0 0 88 0.2 0 0 +8978400.0 20 0 26 95906 0 0 330 0 0 0 0 0 0 0 160 2.1 0 0 9900 2000 9 999999999 9 0 0 88 0.2 0 0 +8982000.0 16.4 0 33 95808 0 0 314 0 0 0 0 0 0 0 188 0.5 0 0 9900 2000 9 999999999 9 0 0 88 0.2 0 0 +8985600.0 14 1 41 95797 0 0 310 0 0 0 0 0 0 0 30 1.5 1 1 9900 2000 9 999999999 10 0 0 88 0.2 0 0 +8989200.0 15 0 36 95815 0 0 308 0 0 0 0 0 0 0 92 1 0 0 9900 2000 9 999999999 9 0 0 88 0.2 0 0 +8992800.0 12.1 0.6 45 95813 0 0 296 0 0 0 0 0 0 0 168 1 0 0 9900 2000 9 999999999 10 0 0 88 0.2 0 0 +8996400.0 10 0 50 95721 0 0 287 0 0 0 0 0 0 0 53 1 0 0 8000 2000 9 999999999 9 0 0 88 0.2 0 0 +9000000.0 10 0 50 95721 0 0 287 0 0 0 0 0 0 0 38 0 0 0 8000 2000 9 999999999 9 0 0 88 0.2 0 0 +9003600.0 10.9 0.3 48 95753 0 0 291 0 0 0 0 0 0 0 318 1 0 0 8000 2000 9 999999999 10 0 0 88 0.2 0 0 +9007200.0 11 0 47 95740 0 0 291 0 0 0 0 0 0 0 115 1 0 0 8000 2000 9 999999999 9 0 0 88 0.2 0 0 +9010800.0 8 0 57 95683 0 0 279 0 0 0 0 0 0 0 201 0.5 0 0 8000 2000 9 999999999 9 0 0 88 0.2 0 0 +9014400.0 8.7 0 54 95824 102 477 282 27 11 26 2957 0 2872 839 239 1 0 0 7000 2000 9 999999999 9 0 0 88 0.2 0 0 +9018000.0 13 0 41 95778 378 1357 299 199 341 104 22200 17884 11656 3682 340 1.5 0 0 7000 2000 9 999999999 9 0 0 88 0.2 0 0 +9021600.0 18 1 32 95870 619 1357 322 403 615 123 46924 39873 14349 5284 43 1 0 0 9900 2000 9 999999999 10 0 0 88 0.2 0 0 +9025200.0 21.1 1.1 26 95845 810 1357 350 569 744 125 68424 49366 15050 5992 144 1 3 3 9900 2000 9 999999999 10 0 0 88 0.2 0 0 +9028800.0 24 0 20 95977 937 1357 348 695 803 140 84564 54877 17138 7010 196 1 0 0 9900 2000 9 999999999 9 0 0 88 0.2 0 0 +9032400.0 28 -2 14 96046 992 1357 364 749 771 185 89948 56829 22378 9059 116 1 0 0 9900 2000 9 999999999 7 0 0 88 0.2 0 0 +9036000.0 29.9 -1.4 13 95703 971 1357 391 719 769 169 86713 55272 20474 8321 170 2.1 3 3 9900 2000 9 999999999 8 0 0 88 0.2 0 0 +9039600.0 30 1 15 96079 876 1357 378 637 759 147 76454 52588 17730 7112 150 4.6 0 0 9900 2000 9 999999999 10 0 0 88 0.2 0 0 +9043200.0 31 0 14 96096 712 1357 382 488 664 139 57165 45664 16414 6224 170 5.7 0 0 9900 2000 9 999999999 9 0 0 88 0.2 0 0 +9046800.0 28.7 1.6 17 95730 491 1357 373 292 507 108 33341 29627 12394 4302 210 5.7 0 0 9900 2000 9 999999999 11 0 0 88 0.2 0 0 +9050400.0 26 4 24 96011 229 1357 362 91 198 58 10136 3667 6465 1962 210 5.1 0 0 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +9054000.0 22 6 35 95942 0 1083 346 0 0 0 0 0 0 0 140 4.1 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +9057600.0 20.6 5.4 37 95912 0 0 339 0 0 0 0 0 0 0 150 4.6 0 0 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +9061200.0 19 5 40 95888 0 0 337 0 0 0 0 0 0 0 160 4.6 1 1 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +9064800.0 16 5 48 95834 0 0 328 0 0 0 0 0 0 0 160 2.6 2 2 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +9068400.0 15.4 4.3 47 96026 0 0 314 0 0 0 0 0 0 0 160 2.6 0 0 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +9072000.0 14 4 51 95797 0 0 321 0 0 0 0 0 0 0 160 2.6 3 3 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +9075600.0 13 4 54 95778 0 0 317 0 0 0 0 0 0 0 220 1 3 3 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +9079200.0 11.2 4 61 96004 0 0 296 0 0 0 0 0 0 0 120 1 0 0 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +9082800.0 10 4 66 95721 0 0 291 0 0 0 0 0 0 0 13 0.5 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +9086400.0 12 6 67 95759 0 0 301 0 0 0 0 0 0 0 140 3.1 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +9090000.0 10.4 5.5 72 95979 0 0 294 0 0 0 0 0 0 0 180 2.6 0 0 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +9093600.0 8 5 81 95683 0 0 284 0 0 0 0 0 0 0 176 1 0 0 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +9097200.0 8 4 76 95683 0 0 283 0 0 0 0 0 0 0 30 2.6 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +9100800.0 8.3 3.7 73 95995 99 460 284 26 17 24 2851 0 2723 800 280 1.5 0 0 6000 2000 9 999999999 14 0 0 88 0.2 0 0 +9104400.0 12 5 62 95759 374 1356 300 195 393 86 21968 17660 9781 3220 150 1.5 0 0 6000 2000 9 999999999 15 0 0 88 0.2 0 0 +9108000.0 17 5 45 95852 614 1356 322 397 620 116 46282 38477 13583 5033 20 0 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +9111600.0 19.1 5.7 41 96056 805 1356 332 568 771 110 68740 48198 13420 5383 290 1.5 0 0 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +9115200.0 22 5 33 95942 931 1356 345 685 765 160 82295 52749 19276 7811 156 0.5 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +9118800.0 25 4 26 95994 986 1356 358 737 770 177 88568 54588 21394 8701 63 1.5 0 0 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +9122400.0 27.2 3 21 95876 965 1356 374 718 768 172 86255 54432 20725 8409 160 3.6 1 1 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +9126000.0 27 5 24 96029 869 1356 369 627 794 119 76341 50835 14514 5903 160 6.2 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +9129600.0 26 7 30 96011 705 1356 366 476 684 121 56292 43140 14352 5524 160 7.2 0 0 9900 2000 9 999999999 18 0 0 88 0.2 0 0 +9133200.0 24.3 6.4 32 95864 485 1356 357 284 491 109 32377 27726 12435 4299 170 8.2 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +9136800.0 22 7 38 95942 222 1356 347 87 187 57 9666 2921 6300 1908 160 6.2 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +9140400.0 20 7 43 95906 0 1054 344 0 0 0 0 0 0 0 140 4.6 1 1 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +9144000.0 18.4 7.9 50 95939 0 0 331 0 0 0 0 0 0 0 180 3.1 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +9147600.0 17 8 55 95852 0 0 339 0 0 0 0 0 0 0 160 3.1 3 3 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +9151200.0 17 9 59 95852 0 0 343 0 0 0 0 0 0 0 140 3.1 4 4 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +9154800.0 14.4 8 65 95979 0 0 314 0 0 0 0 0 0 0 180 2.6 0 0 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +9158400.0 13 8 72 95778 0 0 329 0 0 0 0 0 0 0 150 1.5 6 6 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +9162000.0 13 6 62 95778 0 0 321 0 0 0 0 0 0 0 81 1 4 4 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +9165600.0 9.9 5.3 73 95941 0 0 292 0 0 0 0 0 0 0 360 1 0 0 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +9169200.0 10 7 82 95721 0 0 294 0 0 0 0 0 0 0 20 1.5 0 0 7000 2000 9 999999999 19 0 0 88 0.2 0 0 +9172800.0 10 6 76 95721 0 0 293 0 0 0 0 0 0 0 108 1 0 0 7000 2000 9 999999999 17 0 0 88 0.2 0 0 +9176400.0 10.3 6.5 77 95902 0 0 295 0 0 0 0 0 0 0 190 1.5 0 0 7000 2000 9 999999999 18 0 0 88 0.2 0 0 +9180000.0 8 5 81 95683 0 0 284 0 0 0 0 0 0 0 360 2.1 0 0 6000 2000 9 999999999 16 0 0 88 0.2 0 0 +9183600.0 9 5 76 95702 0 0 288 0 0 0 0 0 0 0 20 2.6 0 0 6000 2000 9 999999999 16 0 0 88 0.2 0 0 +9187200.0 10.5 5.3 70 95849 95 443 300 25 14 24 2736 0 2636 774 40 2.6 1 1 5000 2000 9 999999999 16 0 0 88 0.2 0 0 +9190800.0 13 6 62 95778 369 1355 305 191 386 86 21542 17001 9720 3192 250 1 0 0 5000 2000 9 999999999 17 0 0 88 0.2 0 0 +9194400.0 16 6 51 95834 610 1355 318 392 619 114 45735 37826 13304 4932 310 1.5 0 0 7000 2000 9 999999999 17 0 0 88 0.2 0 0 +9198000.0 19.6 6.7 43 95800 799 1355 335 562 769 108 68064 47517 13174 5284 185 1 0 0 8000 2000 9 999999999 18 0 0 88 0.2 0 0 +9201600.0 24 6 31 95977 926 1355 355 679 764 157 81543 52133 18956 7684 180 2.6 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +9205200.0 26 7 30 96011 980 1355 366 728 769 172 87502 53099 20773 8470 160 4.1 0 0 9900 2000 9 999999999 18 0 0 88 0.2 0 0 +9208800.0 28.2 4 21 95675 958 1355 373 711 767 169 85441 53874 20399 8279 180 3.6 0 0 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +9212400.0 29 4 20 96063 862 1355 377 622 790 120 75631 51029 14637 5938 160 5.1 0 0 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +9216000.0 29 3 19 96063 698 1355 376 474 666 131 55652 44159 15404 5858 160 5.7 0 0 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +9219600.0 28.2 3.3 20 95627 478 1355 372 280 493 107 31977 28071 12201 4209 170 5.1 0 0 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +9223200.0 26 5 26 96011 216 1355 364 84 134 62 9186 2492 6863 2002 190 4.6 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +9226800.0 23 8 38 95959 0 1026 353 0 0 0 0 0 0 0 160 4.1 0 0 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +9230400.0 20.2 9.5 50 95754 0 0 341 0 0 0 0 0 0 0 150 4.6 0 0 9900 2000 9 999999999 24 0 0 88 0.2 0 0 +9234000.0 19 9 52 95888 0 0 350 0 0 0 0 0 0 0 160 2.6 3 3 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +9237600.0 17 9 59 95852 0 0 343 0 0 0 0 0 0 0 150 3.6 4 4 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +9241200.0 15.8 8.9 64 95854 0 0 321 0 0 0 0 0 0 0 160 3.1 0 0 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +9244800.0 14 9 72 95797 0 0 334 0 0 0 0 0 0 0 150 2.1 6 6 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +9248400.0 13 8 72 95778 0 0 329 0 0 0 0 0 0 0 180 2.1 6 6 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +9252000.0 11.9 7.4 74 95800 0 0 302 0 0 0 0 0 0 0 180 1.5 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +9255600.0 11 7 76 95740 0 0 322 0 0 0 0 0 0 0 190 1 7 7 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +9259200.0 10 6 76 95721 0 0 317 0 0 0 0 0 0 0 78 0 7 7 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +9262800.0 8.6 5.8 83 95746 0 0 287 0 0 0 0 0 0 0 250 1 0 0 6000 2000 9 999999999 17 0 0 88 0.2 0 0 +9266400.0 9 7 87 95702 0 0 290 0 0 0 0 0 0 0 195 1.5 0 0 4000 2000 9 999999999 19 0 0 88 0.2 0 0 +9270000.0 8 5 81 95683 0 0 284 0 0 0 0 0 0 0 268 0 0 0 3000 2000 9 999999999 16 0 0 88 0.2 0 0 +9273600.0 8.7 5.9 83 95805 91 427 287 24 11 23 2627 0 2551 748 44 0.5 0 0 3000 2000 9 999999999 17 0 0 88 0.2 0 0 +9277200.0 12 8 76 95759 365 1355 303 187 377 86 21069 16088 9675 3169 166 1 0 0 3000 2000 9 999999999 21 0 0 88 0.2 0 0 +9280800.0 15 8 63 95815 605 1355 316 387 617 111 45100 36761 12998 4825 58 0.5 0 0 6000 2000 9 999999999 21 0 0 88 0.2 0 0 +9284400.0 18.3 9 55 95814 794 1355 332 555 766 106 67206 46153 12907 5180 108 1 0 0 6000 2000 9 999999999 23 0 0 88 0.2 0 0 +9288000.0 21 9 46 95924 920 1355 345 670 830 106 82731 50154 13175 5456 190 2.6 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +9291600.0 23 7 36 95959 974 1355 352 722 768 170 86807 52911 20546 8375 150 5.1 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +9295200.0 24.5 7.2 33 95678 952 1355 359 701 766 163 84327 52265 19741 8033 160 5.7 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +9298800.0 25 8 34 95994 856 1355 362 612 791 113 74580 48914 13775 5606 160 7.2 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +9302400.0 24 7 34 95977 692 1355 356 465 676 120 54827 42415 14177 5434 160 7.7 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +9306000.0 23.1 6.9 35 95653 472 1355 352 273 478 107 31080 26424 12217 4198 160 6.2 0 0 9900 2000 9 999999999 18 0 0 88 0.2 0 0 +9309600.0 21 8 43 95924 210 1355 350 80 125 60 8722 1900 6630 1934 160 4.6 1 1 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +9313200.0 17 9 59 95852 0 998 343 0 0 0 0 0 0 0 160 5.1 4 4 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +9316800.0 16.1 8.7 61 95746 0 0 322 0 0 0 0 0 0 0 160 3.6 0 0 9900 2000 9 999999999 22 0 0 88 0.2 0 0 +9320400.0 15 9 67 95815 0 0 336 0 0 0 0 0 0 0 150 3.1 5 5 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +9324000.0 15 9 67 95815 0 0 336 0 0 0 0 0 0 0 160 2.1 5 5 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +9327600.0 13.3 8.9 75 95807 0 0 310 0 0 0 0 0 0 0 150 2.1 0 0 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +9331200.0 12 7 71 95759 0 0 323 0 0 0 0 0 0 0 160 1.5 6 6 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +9334800.0 10 7 82 95721 0 0 323 0 0 0 0 0 0 0 88 0.5 8 8 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +9338400.0 9.5 6.5 82 95773 0 0 291 0 0 0 0 0 0 0 256 1 0 0 8000 2000 9 999999999 18 0 0 88 0.2 0 0 +9342000.0 10 7 82 95721 0 0 307 0 0 0 0 0 0 0 180 2.1 3 3 6000 2000 9 999999999 19 0 0 88 0.2 0 0 +9345600.0 10 7 82 95721 0 0 307 0 0 0 0 0 0 0 180 2.1 3 3 6000 2000 9 999999999 19 0 0 88 0.2 0 0 +9349200.0 6.7 5.3 91 95870 0 0 313 0 0 0 0 0 0 0 51 1 9 9 800 90 0 999999999 16 0 0 88 0.2 0 0 +9352800.0 6 5 93 95644 0 0 309 0 0 0 0 0 0 0 36 0.5 9 9 800 60 0 999999999 16 0 0 88 0.2 0 0 +9356400.0 6 5 93 95644 0 0 292 0 0 0 0 0 0 0 85 0 5 5 2000 2000 0 999999999 16 0 0 88 0.2 0 0 +9360000.0 5.9 4.5 91 95930 87 410 291 21 0 21 2058 0 2072 701 354 0 5 5 800 2000 0 999999999 15 0 0 88 0.2 0 0 +9363600.0 8 6 87 95683 361 1354 285 185 377 84 20826 16192 9539 3120 193 0 0 0 5000 2000 0 999999999 17 0 0 88 0.2 0 0 +9367200.0 12 8 76 95759 600 1354 303 383 615 110 44635 36474 12888 4778 268 1 0 0 8000 2000 0 999999999 21 0 0 88 0.2 0 0 +9370800.0 16 8.8 62 95990 789 1354 322 551 764 106 66655 46052 12832 5143 160 2.6 0 0 8000 2000 0 999999999 23 0 0 88 0.2 0 0 +9374400.0 15 9 67 95815 914 1354 317 665 809 119 81340 50149 14602 6015 160 5.7 0 0 8000 2000 0 999999999 23 0 0 88 0.2 0 0 +9378000.0 17 9 59 95852 967 1354 343 693 759 151 83971 49838 18420 7573 160 6.2 4 4 9900 2000 0 999999999 23 0 0 88 0.2 0 0 +9381600.0 17.4 8.8 57 95959 945 1354 328 694 819 122 85112 51108 15068 6239 170 7.7 0 0 9900 2000 0 999999999 22 0 0 88 0.2 0 0 +9385200.0 18 9 56 95870 849 1354 345 594 749 125 71746 47146 15123 6112 150 6.7 3 3 9900 2000 0 999999999 23 0 0 88 0.2 0 0 +9388800.0 17 9 59 95852 685 1354 343 444 652 114 52511 39641 13556 5209 160 6.2 4 4 9900 2000 0 999999999 23 0 0 88 0.2 0 0 +9392400.0 16.6 8.9 60 95963 465 1354 324 268 468 107 30352 25247 12143 4159 160 6.7 0 0 9900 2000 0 999999999 23 0 0 88 0.2 0 0 +9396000.0 15 9 67 95815 204 1354 336 70 139 49 7801 1093 5489 1675 160 5.7 5 5 9900 2000 0 999999999 23 0 0 88 0.2 0 0 +9399600.0 14 9 72 95797 0 970 334 0 0 0 0 0 0 0 170 5.1 6 6 9900 2000 0 999999999 23 0 0 88 0.2 0 0 +9403200.0 12.5 8.8 78 96066 0 0 306 0 0 0 0 0 0 0 140 4.1 0 0 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +9406800.0 12 8 76 95759 0 0 303 0 0 0 0 0 0 0 170 2.6 0 0 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +9410400.0 12 8 76 95759 0 0 316 0 0 0 0 0 0 0 180 2.6 3 3 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +9414000.0 10.5 7.8 83 96085 0 0 310 0 0 0 0 0 0 0 160 2.6 3 3 6000 2000 9 999999999 21 0 0 88 0.2 0 0 +9417600.0 11 8 82 95740 0 0 312 0 0 0 0 0 0 0 150 2.6 3 3 6000 2000 9 999999999 21 0 0 88 0.2 0 0 +9421200.0 10 8 87 95721 0 0 308 0 0 0 0 0 0 0 160 2.1 3 3 6000 2000 9 999999999 21 0 0 88 0.2 0 0 +9424800.0 10.7 8.2 85 96136 0 0 334 0 0 0 0 0 0 0 150 3.1 9 9 6000 450 9 999999999 21 0 0 88 0.2 0 0 +9428400.0 11 9 87 95740 0 0 337 0 0 0 0 0 0 0 160 2.6 9 9 6000 300 9 999999999 23 0 0 88 0.2 0 0 +9432000.0 11 8 82 95740 0 0 336 0 0 0 0 0 0 0 280 1.5 9 9 6000 300 9 999999999 21 0 0 88 0.2 0 0 +9435600.0 11.3 8.5 83 96204 0 0 338 0 0 0 0 0 0 0 333 1 9 9 6000 300 9 999999999 22 0 0 88 0.2 0 0 +9439200.0 11 8 82 95740 0 0 336 0 0 0 0 0 0 0 290 2.1 9 9 5000 300 9 999999999 21 0 0 88 0.2 0 0 +9442800.0 11 9 87 95740 0 0 346 0 0 0 0 0 0 0 169 1 10 10 5000 450 9 999999999 23 0 0 88 0.2 0 0 +9446400.0 10.9 9.2 89 96405 84 393 346 7 0 7 662 0 666 268 167 1 10 10 800 150 0 999999999 24 0 0 88 0.2 0 0 +9450000.0 11 10 94 95740 357 1353 347 57 0 57 5619 0 5662 2287 340 1.5 10 10 1200 150 0 919999999 26 0 0 88 0.2 0 0 +9453600.0 12 9 82 95759 595 1353 351 119 0 119 12003 0 12104 5067 30 2.1 10 10 3000 450 0 919999999 23 0 0 88 0.2 0 0 +9457200.0 13.2 8.3 72 96363 783 1353 356 172 2 171 20048 126 20018 7659 30 2.1 10 10 5000 450 0 919999999 22 0 0 88 0.2 0 0 +9460800.0 14 8 67 95797 908 1353 350 341 57 303 38792 4903 34646 12515 220 2.1 9 9 5000 510 0 919999999 21 0 0 88 0.2 0 0 +9464400.0 16 9 63 95834 961 1353 322 708 678 227 83087 50727 26749 10515 180 2.1 0 0 6000 2000 0 919999999 23 0 0 88 0.2 0 0 +9468000.0 18.4 8.3 52 96327 939 1353 332 689 838 108 85229 51007 13354 5548 130 2.1 0 0 7000 2000 0 919999999 21 0 0 88 0.2 0 0 +9471600.0 20 8 46 95906 842 1353 339 601 786 111 73089 48446 13580 5512 200 3.1 0 0 8000 2000 0 919999999 21 0 0 88 0.2 0 0 +9475200.0 21 8 43 95924 679 1353 350 453 668 117 53318 41269 13892 5309 160 3.1 1 1 9900 2000 0 919999999 21 0 0 88 0.2 0 0 +9478800.0 21.1 8.1 43 96338 459 1353 344 263 485 98 29981 25226 11257 3892 210 4.6 0 0 9900 2000 0 919999999 21 0 0 88 0.2 0 0 +9482400.0 20 8 46 95906 198 1353 350 73 111 56 7958 1262 6191 1804 210 4.6 2 2 9900 2000 0 919999999 21 0 0 88 0.2 0 0 +9486000.0 18 8 52 95870 0 943 344 0 0 0 0 0 0 0 190 3.1 3 3 9900 2000 0 919999999 21 0 0 88 0.2 0 0 +9489600.0 16.2 7.6 57 96523 0 0 321 0 0 0 0 0 0 0 180 4.1 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +9493200.0 15 8 63 95815 0 0 335 0 0 0 0 0 0 0 130 3.1 5 5 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +9496800.0 14 7 63 95797 0 0 329 0 0 0 0 0 0 0 160 2.6 5 5 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +9500400.0 13.5 6.9 64 96558 0 0 309 0 0 0 0 0 0 0 290 1 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +9504000.0 13 7 67 95778 0 0 325 0 0 0 0 0 0 0 325 1 5 5 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +9507600.0 11 6 71 95740 0 0 317 0 0 0 0 0 0 0 330 1.5 6 6 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +9511200.0 9.3 6.2 81 96421 0 0 290 0 0 0 0 0 0 0 40 2.1 0 0 8000 2000 9 999999999 18 0 0 88 0.2 0 0 +9514800.0 9 6 81 95702 0 0 289 0 0 0 0 0 0 0 246 1 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +9518400.0 8 5 81 95683 0 0 284 0 0 0 0 0 0 0 10 0.5 0 0 6000 2000 9 999999999 16 0 0 88 0.2 0 0 +9522000.0 8 5.5 84 96216 0 0 284 0 0 0 0 0 0 0 38 0.5 0 0 5000 2000 9 999999999 16 0 0 88 0.2 0 0 +9525600.0 7 5 87 95663 0 0 280 0 0 0 0 0 0 0 255 0 0 0 3000 2000 9 999999999 16 0 0 88 0.2 0 0 +9529200.0 6 4 87 95644 0 0 275 0 0 0 0 0 0 0 254 0 0 0 4000 2000 9 999999999 14 0 0 88 0.2 0 0 +9532800.0 7 5 87 95663 80 376 280 21 2 21 2319 0 2310 674 177 1 0 0 3000 2000 9 999999999 16 0 0 88 0.2 0 0 +9536400.0 9 6 81 95702 352 1352 289 179 367 83 20085 15335 9374 3052 330 1.5 0 0 4000 2000 9 999999999 17 0 0 88 0.2 0 0 +9540000.0 14 8 67 95797 590 1352 312 375 608 109 43631 35816 12740 4707 206 1 0 0 4000 2000 9 999999999 21 0 0 88 0.2 0 0 +9543600.0 16.6 7.8 56 96237 778 1352 323 542 759 105 65543 46093 12789 5109 199 1 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +9547200.0 19 9 52 95888 902 1352 335 654 824 105 80705 49622 12956 5350 91 1 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +9550800.0 22 8 41 95942 955 1352 355 704 765 164 84642 51889 19779 8060 160 2.6 1 1 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +9554400.0 23.1 7.8 37 96098 932 1352 353 683 837 106 84617 51089 13202 5479 170 3.6 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +9558000.0 24 8 36 95977 836 1352 358 595 784 110 72363 48214 13477 5463 190 5.1 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +9561600.0 24 8 36 95977 672 1352 358 447 665 117 52663 40947 13776 5255 210 5.7 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +9565200.0 22.6 8.4 40 96165 453 1352 351 258 478 98 29361 24565 11166 3849 210 6.2 0 0 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +9568800.0 21 8 43 95924 192 1352 350 69 105 54 7595 980 5976 1741 200 5.1 1 1 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +9572400.0 19 7 46 95888 0 916 344 0 0 0 0 0 0 0 150 4.1 2 2 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +9576000.0 18.2 5.7 44 96323 0 0 328 0 0 0 0 0 0 0 130 3.6 0 0 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +9579600.0 18 5 42 95870 0 0 333 0 0 0 0 0 0 0 140 3.6 1 1 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +9583200.0 16 5 48 95834 0 0 328 0 0 0 0 0 0 0 288 0.5 2 2 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +9586800.0 13.9 4.9 55 96367 0 0 308 0 0 0 0 0 0 0 41 0.5 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +9590400.0 13 7 67 95778 0 0 325 0 0 0 0 0 0 0 150 2.1 5 5 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +9594000.0 12 8 76 95759 0 0 328 0 0 0 0 0 0 0 150 1.5 7 7 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +9597600.0 11.7 7.7 76 96325 0 0 302 0 0 0 0 0 0 0 180 2.1 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +9601200.0 10 6 76 95721 0 0 317 0 0 0 0 0 0 0 160 2.1 7 7 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +9604800.0 11 8 82 95740 0 0 329 0 0 0 0 0 0 0 130 3.1 8 8 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +9608400.0 9 5.8 80 96302 0 0 289 0 0 0 0 0 0 0 340 1.5 0 0 1000 2000 9 999999999 17 0 0 88 0.2 0 0 +9612000.0 7 5 87 95663 0 0 280 0 0 0 0 0 0 0 320 1.5 0 0 6000 2000 9 999999999 16 0 0 88 0.2 0 0 +9615600.0 8 6 87 95683 0 0 285 0 0 0 0 0 0 0 40 2.1 0 0 5000 2000 9 999999999 17 0 0 88 0.2 0 0 +9619200.0 9.3 7.3 87 96345 76 359 311 17 0 17 1685 0 1697 587 40 2.1 6 6 4000 2000 9 999999999 20 0 0 88 0.2 0 0 +9622800.0 11 7 76 95740 348 1352 298 176 362 82 19715 14745 9285 3017 53 1 0 0 3000 2000 9 999999999 19 0 0 88 0.2 0 0 +9626400.0 15 8 63 95815 585 1352 316 371 607 108 43182 35534 12626 4659 69 1 0 0 6000 2000 9 999999999 21 0 0 88 0.2 0 0 +9630000.0 16.9 8.1 56 96366 773 1352 347 469 444 216 53611 34181 24752 9035 251 1 6 6 6000 7500 9 999999999 21 0 0 88 0.2 0 0 +9633600.0 19 7 46 95888 896 1352 344 650 761 146 78236 50637 17612 7134 78 1 2 2 9900 7500 9 999999999 19 0 0 88 0.2 0 0 +9637200.0 21 7 40 95924 949 1352 349 700 823 122 85971 52100 15092 6251 170 2.1 1 1 9900 7500 9 999999999 19 0 0 88 0.2 0 0 +9640800.0 23 7.2 36 96239 926 1352 370 656 740 149 79128 49343 18095 7373 160 2.6 4 4 9900 7500 9 999999999 19 0 0 88 0.2 0 0 +9644400.0 24 7 34 95977 829 1352 356 590 783 110 71792 48486 13417 5429 180 4.1 0 0 9900 7500 9 999999999 19 0 0 88 0.2 0 0 +9648000.0 24 7 34 95977 666 1352 356 443 662 117 52091 41034 13771 5236 160 4.6 0 0 9900 7500 9 999999999 19 0 0 88 0.2 0 0 +9651600.0 23.8 7.7 36 96186 447 1352 378 236 380 110 26575 20791 12454 4175 160 4.6 5 5 9900 7500 9 999999999 20 0 0 88 0.2 0 0 +9655200.0 23 8 38 95959 186 1352 353 66 100 52 7258 727 5766 1679 170 4.6 0 0 9900 7500 9 999999999 21 0 0 88 0.2 0 0 +9658800.0 21 8 43 95924 0 889 350 0 0 0 0 0 0 0 220 2.6 1 1 9900 7500 9 999999999 21 0 0 88 0.2 0 0 +9662400.0 19.2 7.8 48 96247 0 0 358 0 0 0 0 0 0 0 200 1 6 6 9900 7500 9 999999999 20 0 0 88 0.2 0 0 +9666000.0 17 9 59 95852 0 0 343 0 0 0 0 0 0 0 100 1.5 4 4 9900 7500 9 999999999 23 0 0 88 0.2 0 0 +9669600.0 17 9 59 95852 0 0 343 0 0 0 0 0 0 0 170 1 4 4 9900 7500 9 999999999 23 0 0 88 0.2 0 0 +9673200.0 14.3 7.7 64 96242 0 0 334 0 0 0 0 0 0 0 270 1.5 6 6 9900 7500 9 999999999 20 0 0 88 0.2 0 0 +9676800.0 15 8 63 95815 0 0 335 0 0 0 0 0 0 0 180 0.5 5 5 9900 7500 9 999999999 21 0 0 88 0.2 0 0 +9680400.0 12 7 71 95759 0 0 302 0 0 0 0 0 0 0 163 0.5 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +9684000.0 12 6.8 70 96180 0 0 332 0 0 0 0 0 0 0 223 1 8 8 7000 2000 9 999999999 19 0 0 88 0.2 0 0 +9687600.0 11 7 76 95740 0 0 298 0 0 0 0 0 0 0 30 1.5 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +9691200.0 10 6 76 95721 0 0 293 0 0 0 0 0 0 0 30 1 0 0 6000 2000 9 999999999 17 0 0 88 0.2 0 0 +9694800.0 10.1 6.1 76 96115 0 0 322 0 0 0 0 0 0 0 40 1.5 8 8 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +9698400.0 11 7 76 95740 0 0 298 0 0 0 0 0 0 0 201 0.5 0 0 7000 2000 9 999999999 19 0 0 88 0.2 0 0 +9702000.0 11 7 76 95740 0 0 298 0 0 0 0 0 0 0 350 2.1 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +9705600.0 11.4 7.2 75 96187 73 343 329 13 0 13 1235 0 1243 455 20 2.1 8 8 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +9709200.0 14 7 63 95797 344 1351 311 172 357 82 19354 14325 9199 2982 50 1.5 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +9712800.0 17 8 55 95852 581 1351 325 367 603 107 42685 35200 12556 4625 328 0 0 0 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +9716400.0 19.5 8.9 50 96167 767 1351 361 465 439 215 53011 33622 24703 8997 50 1 6 6 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +9720000.0 21 9 46 95924 891 1351 345 644 764 141 77580 49573 17028 6911 325 1 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +9723600.0 23 9 41 95959 943 1351 354 692 737 178 82510 50945 21321 8601 180 2.1 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +9727200.0 24.4 7.6 34 95970 920 1351 394 452 220 302 51544 18868 34676 12615 180 3.1 8 8 8000 7500 9 999999999 20 0 0 88 0.2 0 0 +9730800.0 25 7 32 95994 823 1351 361 585 704 156 69156 48113 18528 7287 160 3.6 0 0 9900 7500 9 999999999 19 0 0 88 0.2 0 0 +9734400.0 25 8 34 95994 660 1351 362 436 552 167 49843 38764 19146 6894 180 6.2 0 0 9900 7500 9 999999999 20 0 0 88 0.2 0 0 +9738000.0 23.7 8.7 38 95957 441 1351 392 167 110 131 18490 6508 14584 4656 180 5.7 8 8 9900 7500 9 999999999 22 0 0 88 0.2 0 0 +9741600.0 22 9 43 95942 181 1351 392 32 0 32 3160 0 3183 1179 160 4.1 9 9 9900 7500 9 999999999 23 0 0 88 0.2 0 0 +9745200.0 20 9 49 95906 0 863 381 0 0 0 0 0 0 0 150 3.6 9 9 9900 7500 9 999999999 23 0 0 88 0.2 0 0 +9748800.0 18.7 9.5 55 96067 0 0 341 0 0 0 0 0 0 0 150 3.6 1 1 9900 7500 9 999999999 24 0 0 88 0.2 0 0 +9752400.0 18 9 56 95870 0 0 345 0 0 0 0 0 0 0 170 3.1 3 3 9900 7500 9 999999999 23 0 0 88 0.2 0 0 +9756000.0 16 9 63 95834 0 0 341 0 0 0 0 0 0 0 160 2.1 5 5 9900 7500 9 999999999 23 0 0 88 0.2 0 0 +9759600.0 14.9 8.6 66 96083 0 0 335 0 0 0 0 0 0 0 160 2.1 5 5 9900 7500 9 999999999 22 0 0 88 0.2 0 0 +9763200.0 15 8 63 95815 0 0 335 0 0 0 0 0 0 0 160 2.6 5 5 9900 7500 9 999999999 21 0 0 88 0.2 0 0 +9766800.0 14 8 67 95797 0 0 330 0 0 0 0 0 0 0 150 1.5 5 5 9900 7500 9 999999999 21 0 0 88 0.2 0 0 +9770400.0 10.5 6.1 74 96028 0 0 301 0 0 0 0 0 0 0 201 1 1 1 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +9774000.0 9 6 81 95702 0 0 289 0 0 0 0 0 0 0 205 1 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +9777600.0 10 7 82 95721 0 0 294 0 0 0 0 0 0 0 223 1 0 0 9000 2000 9 999999999 19 0 0 88 0.2 0 0 +9781200.0 8.7 5.3 79 96041 0 0 292 0 0 0 0 0 0 0 300 1.5 1 1 5000 2000 9 999999999 16 0 0 88 0.2 0 0 +9784800.0 8 6 87 95683 0 0 285 0 0 0 0 0 0 0 217 1 0 0 3000 2000 9 999999999 17 0 0 88 0.2 0 0 +9788400.0 9 8 93 95702 0 0 291 0 0 0 0 0 0 0 30 2.1 0 0 5000 2000 9 999999999 21 0 0 88 0.2 0 0 +9792000.0 8.1 5.8 85 96067 69 326 290 18 0 18 1747 0 1759 589 270 1.5 1 1 4000 2000 9 999999999 17 0 0 88 0.2 0 0 +9795600.0 12 7 71 95759 340 1350 302 169 351 81 18990 13897 9115 2948 292 0 0 0 5000 2000 9 999999999 19 0 0 88 0.2 0 0 +9799200.0 15 8 63 95815 576 1350 316 363 599 107 42177 34851 12500 4595 163 1 0 0 7000 2000 9 999999999 21 0 0 88 0.2 0 0 +9802800.0 17.8 8.7 55 95975 762 1350 346 510 683 124 60704 43062 14853 5842 334 1 4 4 7000 2000 9 999999999 22 0 0 88 0.2 0 0 +9806400.0 20 9 49 95906 885 1350 340 639 800 115 78074 49238 14102 5782 190 2.1 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +9810000.0 23 9 41 95959 937 1350 361 686 815 121 84197 50691 14894 6163 150 3.1 1 1 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +9813600.0 24 8.5 37 95821 913 1350 377 644 734 147 77539 48339 17813 7249 190 4.1 4 4 9900 2000 9 999999999 22 0 0 88 0.2 0 0 +9817200.0 24.5 8.2 35 95907 817 1350 360 578 777 108 70187 47404 13168 5317 208 4.6 0 0 9950 2000 9 999999999 21 0 0 88 0.2 0 0 +9820800.0 25 8 34 95994 653 1350 362 431 654 115 50646 39885 13515 5123 160 5.1 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +9824400.0 23.5 7.4 36 95850 435 1350 376 227 371 108 25541 19868 12158 4054 160 5.7 5 5 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +9828000.0 22 8 41 95942 175 1350 355 60 87 49 6562 265 5348 1558 190 4.1 1 1 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +9831600.0 19.5 7.8 47 95932 0 837 347 0 0 0 0 0 0 0 292 4.1 2 2 9950 2000 9 999999999 20 0 0 88 0.2 0 0 +9835200.0 17 7.7 54 95923 0 0 347 0 0 0 0 0 0 0 150 4.1 6 6 9950 7500 9 999999999 20 0 0 88 0.2 0 0 +9838800.0 16 7 55 95834 0 0 333 0 0 0 0 0 0 0 150 3.6 3 3 9900 7500 9 999999999 19 0 0 88 0.2 0 0 +9842400.0 15 7 59 95815 0 0 331 0 0 0 0 0 0 0 160 3.6 4 4 9900 7500 9 999999999 19 0 0 88 0.2 0 0 +9846000.0 13.8 6.5 61 95987 0 0 340 0 0 0 0 0 0 0 160 2.1 8 8 9900 7500 9 999999999 18 0 0 88 0.2 0 0 +9849600.0 13 6 62 95778 0 0 321 0 0 0 0 0 0 0 160 3.1 4 4 9900 7500 9 999999999 17 0 0 88 0.2 0 0 +9853200.0 12.4 6 65 95901 0 0 321 0 0 0 0 0 0 0 109 3.1 5 5 9950 7500 9 999999999 17 0 0 88 0.2 0 0 +9856800.0 11.7 6 68 96023 0 0 330 0 0 0 0 0 0 0 180 3.1 8 8 9950 7500 9 999999999 17 0 0 88 0.2 0 0 +9860400.0 10 6 76 95721 0 0 317 0 0 0 0 0 0 0 180 2.6 7 7 9900 7500 9 999999999 17 0 0 88 0.2 0 0 +9864000.0 10 6 76 95721 0 0 317 0 0 0 0 0 0 0 140 2.1 7 7 9900 7500 9 999999999 17 0 0 88 0.2 0 0 +9867600.0 9.2 6.1 81 95994 0 0 325 0 0 0 0 0 0 0 170 1.5 9 9 8000 7500 9 999999999 17 0 0 88 0.2 0 0 +9871200.0 8 5 81 95683 0 0 318 0 0 0 0 0 0 0 294 1 9 9 6000 5400 9 999999999 16 0 0 88 0.2 0 0 +9874800.0 7 5 87 95663 0 0 314 0 0 0 0 0 0 0 38 1 9 9 6000 5400 9 999999999 16 0 0 88 0.2 0 0 +9878400.0 8.2 5.5 83 96050 65 309 320 9 0 9 858 0 864 330 128 0.5 9 9 8000 5400 9 999999999 16 0 0 88 0.2 0 0 +9882000.0 11 6 71 95740 335 1349 317 147 232 90 16392 9910 10014 3146 310 1 6 6 9900 5400 9 999999999 17 0 0 88 0.2 0 0 +9885600.0 13 7 67 95778 571 1349 325 332 442 145 37640 29210 16499 5762 309 1 5 5 9900 5400 9 999999999 19 0 0 88 0.2 0 0 +9889200.0 16 7 55 95834 757 1349 333 516 682 134 61105 44568 15943 6212 46 1 3 3 9900 5400 9 999999999 19 0 0 88 0.2 0 0 +9892800.0 19 8 49 95888 879 1349 345 632 810 105 77772 49221 12924 5310 190 1.5 2 2 9900 5400 9 999999999 21 0 0 88 0.2 0 0 +9896400.0 21 8 43 95924 930 1349 350 682 737 174 81358 51070 20818 8389 180 4.6 1 1 9900 5400 9 999999999 21 0 0 88 0.2 0 0 +9900000.0 20 7.3 44 95826 907 1349 371 445 220 297 50690 18796 34064 12376 170 6.7 8 8 9900 7500 9 999999999 19 0 0 88 0.2 0 0 +9903600.0 19 7 46 95888 810 1349 344 572 695 155 67599 47472 18393 7207 170 8.7 2 2 9900 7500 9 999999999 19 0 0 88 0.2 0 0 +9907200.0 18 7 49 95870 647 1349 339 425 598 138 49146 39202 16005 5912 160 7.7 2 2 9900 7500 9 999999999 19 0 0 88 0.2 0 0 +9910800.0 18.6 7.4 48 95744 429 1349 355 209 297 114 23372 16411 12858 4204 160 5.7 6 6 9900 7500 9 999999999 19 0 0 88 0.2 0 0 +9914400.0 18 7 49 95870 170 1349 343 56 77 47 6182 104 5135 1496 160 5.7 3 3 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +9918000.0 16 7 55 95834 0 811 333 0 0 0 0 0 0 0 160 3.1 3 3 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +9921600.0 14.4 7.1 61 95771 0 0 319 0 0 0 0 0 0 0 170 3.6 1 1 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +9925200.0 14 7 63 95797 0 0 324 0 0 0 0 0 0 0 150 2.1 3 3 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +9928800.0 13 7 67 95778 0 0 325 0 0 0 0 0 0 0 140 3.1 5 5 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +9932400.0 12.1 7.2 72 95823 0 0 309 0 0 0 0 0 0 0 180 3.1 1 1 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +9936000.0 11 7 76 95740 0 0 322 0 0 0 0 0 0 0 140 3.1 7 7 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +9939600.0 10 7 82 95721 0 0 294 0 0 0 0 0 0 0 170 2.6 0 0 6000 2000 9 999999999 19 0 0 88 0.2 0 0 +9943200.0 9 6.3 83 95915 0 0 306 0 0 0 0 0 0 0 170 3.1 5 5 500 2000 0 999999999 18 0 0 88 0.2 0 0 +9946800.0 7 6 93 95663 0 0 297 0 0 0 0 0 0 0 170 3.6 5 5 2000 2000 0 999999999 17 0 0 88 0.2 0 0 +9950400.0 7.7 6.8 94 95834 0 0 328 0 0 0 0 0 0 0 245 2.8 10 10 1250 2000 9 999999999 19 0 0 88 0.2 0 0 +9954000.0 8.3 7.5 95 96005 0 0 332 0 0 0 0 0 0 0 230 2.1 10 10 500 30 0 999999999 20 0 0 88 0.2 0 0 +9957600.0 8 7 93 95683 0 0 330 0 0 0 0 0 0 0 170 2.1 10 10 2000 30 0 999999999 19 0 0 88 0.2 0 0 +9961200.0 8 7 93 95683 0 0 321 0 0 0 0 0 0 0 170 3.6 9 9 2000 120 0 999999999 19 0 0 88 0.2 0 0 +9964800.0 8.5 7.4 93 96169 62 292 332 5 0 5 493 0 496 199 180 2.6 10 10 5000 60 0 999999999 20 0 0 88 0.2 0 0 +9968400.0 9 7 87 95702 331 1349 334 51 0 51 5077 0 5116 2056 130 3.6 10 10 7000 600 0 999999999 19 0 0 88 0.2 0 0 +9972000.0 10 7 82 95721 566 1349 339 112 0 112 11267 0 11360 4726 120 2.1 10 10 8000 270 0 999999999 19 0 0 88 0.2 0 0 +9975600.0 10.3 6.7 78 96459 751 1349 340 164 3 162 19071 219 18951 7205 190 2.1 10 10 7000 270 0 999999999 18 0 0 88 0.2 0 0 +9979200.0 11 8 82 95740 873 1349 336 325 25 309 36728 2151 35147 12384 270 3.1 9 9 8000 270 0 999999999 21 0 0 88 0.2 0 0 +9982800.0 12 7 71 95759 924 1349 339 350 67 304 39930 5785 34881 12710 100 2.1 9 9 7000 450 0 999999999 19 0 0 88 0.2 0 0 +9986400.0 13.6 6.9 64 96475 901 1349 347 339 57 300 38547 4952 34394 12416 101 1.5 9 9 7000 600 0 999999999 19 0 0 88 0.2 0 0 +9990000.0 15 7 59 95815 804 1349 334 528 559 195 61226 41405 22722 8602 331 1.5 5 5 7000 2000 0 999999999 19 0 0 88 0.2 0 0 +9993600.0 16 7 55 95834 641 1349 320 421 645 114 49403 39558 13457 5073 170 3.6 0 0 8000 2000 0 999999999 19 0 0 88 0.2 0 0 +9997200.0 15.9 6.4 53 96385 423 1349 332 232 437 95 26313 21904 10821 3661 190 5.7 3 3 8000 2000 0 999999999 18 0 0 88 0.2 0 0 +1.00008E7 15 6 55 95815 164 1349 328 53 115 39 5923 0 4375 1318 200 5.1 3 3 9900 2000 0 999999999 17 0 0 88 0.2 0 0 +1.00044E7 15 6 55 95815 0 786 328 0 0 0 0 0 0 0 200 4.1 3 3 9900 2000 0 999999999 17 0 0 88 0.2 0 0 +1.0008E7 13.2 6 62 96524 0 0 306 0 0 0 0 0 0 0 200 2.6 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +1.00116E7 13 6 62 95778 0 0 321 0 0 0 0 0 0 0 160 2.6 4 4 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +1.00152E7 10 5 71 95721 0 0 309 0 0 0 0 0 0 0 270 2.6 5 5 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +1.00188E7 9.6 5.3 75 96512 0 0 326 0 0 0 0 0 0 0 30 2.1 9 9 8000 5100 9 999999999 16 0 0 88 0.2 0 0 +1.00224E7 10 6 76 95721 0 0 329 0 0 0 0 0 0 0 50 2.1 9 9 7000 4800 9 999999999 17 0 0 88 0.2 0 0 +1.0026E7 9 5 76 95702 0 0 323 0 0 0 0 0 0 0 250 1.5 9 9 6000 4500 9 999999999 16 0 0 88 0.2 0 0 +1.00296E7 8.6 4.8 77 96502 0 0 303 0 0 0 0 0 0 0 133 1 5 5 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.00332E7 8 5 81 95683 0 0 296 0 0 0 0 0 0 0 343 1 3 3 6000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.00368E7 8 5 81 95683 0 0 284 0 0 0 0 0 0 0 210 2.1 0 0 6000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.00404E7 6.3 4 85 96447 0 0 276 0 0 0 0 0 0 0 56 0 0 0 2000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.0044E7 5 3 87 95624 0 0 270 0 0 0 0 0 0 0 164 1 0 0 3000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.00476E7 5 4 93 95624 0 0 271 0 0 0 0 0 0 0 97 1.5 0 0 3000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.00512E7 5.6 3.2 85 96556 58 276 272 15 0 15 1483 0 1493 504 350 2.6 0 0 2000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.00548E7 7 4 81 95663 327 1348 279 161 342 78 18070 13263 8803 2829 40 1.5 0 0 4000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.00584E7 12 6 67 95759 562 1348 301 352 589 106 40864 34562 12414 4530 38 1 0 0 5000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.0062E7 14.3 5.6 56 96469 746 1348 317 516 744 104 62192 45674 12583 4979 40 1.5 1 1 7000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.00656E7 16 5 48 95834 868 1348 317 628 824 97 77596 50424 12073 4954 290 1 0 0 7000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.00692E7 18 5 42 95870 918 1348 340 666 817 109 82230 51240 13554 5602 180 3.6 3 3 7000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.00728E7 19.4 3.7 35 96345 895 1348 337 654 797 125 79674 52030 15306 6254 150 4.1 1 1 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.00764E7 21 2 28 95924 798 1348 356 527 572 189 61338 43071 22063 8361 140 4.1 5 5 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.008E7 21 1 26 95924 635 1348 335 420 628 124 49002 41037 14527 5399 140 4.1 0 0 9900 2000 9 999999999 10 0 0 88 0.2 0 0 +1.00836E7 20.3 2.3 30 96229 417 1348 340 232 457 91 26408 22954 10355 3512 170 5.1 1 1 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +1.00872E7 20 3 32 95906 159 1348 333 51 116 38 5728 0 4223 1269 180 4.1 0 0 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +1.00908E7 17 4 42 95852 0 761 327 0 0 0 0 0 0 0 220 3.1 1 1 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +1.00944E7 15.6 3.7 45 96190 0 0 328 0 0 0 0 0 0 0 160 3.1 3 3 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +1.0098E7 14 3 47 95797 0 0 317 0 0 0 0 0 0 0 192 0.5 2 2 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +1.01016E7 12 3 54 95759 0 0 311 0 0 0 0 0 0 0 273 0.5 3 3 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +1.01052E7 9.9 2 58 96178 0 0 288 0 0 0 0 0 0 0 20 2.6 0 0 7000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.01088E7 9 2 61 95702 0 0 285 0 0 0 0 0 0 0 10 2.1 0 0 6000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.01124E7 8 2 66 95683 0 0 281 0 0 0 0 0 0 0 255 0.5 0 0 6000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.0116E7 7.7 1.4 64 96135 0 0 291 0 0 0 0 0 0 0 33 1 3 3 5000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.01196E7 7 2 70 95663 0 0 277 0 0 0 0 0 0 0 17 1 0 0 6000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.01232E7 7 2 70 95663 0 0 277 0 0 0 0 0 0 0 11 0.5 0 0 6000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.01268E7 5.9 1.3 72 96071 0 0 299 0 0 0 0 0 0 0 167 1 8 8 6000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.01304E7 7 2 70 95663 0 0 277 0 0 0 0 0 0 0 30 2.6 0 0 6000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.0134E7 7 1 66 95663 0 0 276 0 0 0 0 0 0 0 5 0 0 0 4000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.01376E7 6.4 1.2 69 96109 55 259 307 7 0 7 723 0 727 278 40 2.6 9 9 3000 6900 9 999999999 11 0 0 88 0.2 0 0 +1.01412E7 9 2 61 95702 323 1347 320 82 1 82 9161 51 9159 2900 30 1.5 9 9 5000 6900 9 999999999 12 0 0 88 0.2 0 0 +1.01448E7 11 2 54 95740 557 1347 329 181 17 174 20207 1269 19508 6425 190 1 9 9 5000 7500 9 999999999 11 0 0 88 0.2 0 0 +1.01484E7 14.3 2.6 45 96195 741 1347 345 265 46 240 29969 3814 27287 9487 239 0 9 9 7000 7500 9 999999999 12 0 0 88 0.2 0 0 +1.0152E7 18 3 37 95870 862 1347 364 323 67 280 36757 5821 32025 11534 235 1 9 9 7000 7500 9 999999999 13 0 0 88 0.2 0 0 +1.01556E7 19 2 32 95888 912 1347 367 347 25 331 39365 2256 37710 13291 220 2.1 9 9 7000 7500 9 999999999 11 0 0 88 0.2 0 0 +1.01592E7 20.9 0.8 26 96050 889 1347 368 438 214 297 49915 18960 34039 12226 180 2.1 8 8 7000 7500 9 999999999 10 0 0 88 0.2 0 0 +1.01628E7 22 2 27 95942 792 1347 341 562 695 153 66317 48761 18172 7070 160 3.6 0 0 9900 7500 9 999999999 11 0 0 88 0.2 0 0 +1.01664E7 22 2 27 95942 629 1347 341 414 627 121 48367 40444 14230 5289 170 3.1 0 0 9900 7500 9 999999999 11 0 0 88 0.2 0 0 +1.017E7 21.7 2.9 29 95970 411 1347 358 220 407 96 24904 20818 10863 3632 170 5.1 4 4 9900 7500 9 999999999 12 0 0 88 0.2 0 0 +1.01736E7 20 3 32 95906 153 1347 333 49 65 41 5381 0 4577 1332 160 4.1 0 0 9900 7500 9 999999999 13 0 0 88 0.2 0 0 +1.01772E7 18 3 37 95870 0 737 324 0 0 0 0 0 0 0 150 3.1 0 0 9900 7500 9 999999999 13 0 0 88 0.2 0 0 +1.01808E7 15.4 2.9 43 96064 0 0 312 0 0 0 0 0 0 0 170 2.6 0 0 9900 7500 9 999999999 12 0 0 88 0.2 0 0 +1.01844E7 15 4 48 95815 0 0 322 0 0 0 0 0 0 0 150 2.1 2 2 9900 7500 9 999999999 14 0 0 88 0.2 0 0 +1.0188E7 15 4 48 95815 0 0 322 0 0 0 0 0 0 0 140 2.6 2 2 9900 7500 9 999999999 14 0 0 88 0.2 0 0 +1.01916E7 10.7 2.7 58 96183 0 0 292 0 0 0 0 0 0 0 173 1 0 0 9900 7500 9 999999999 12 0 0 88 0.2 0 0 +1.01952E7 10 3 62 95721 0 0 305 0 0 0 0 0 0 0 174 0 4 4 9900 7500 9 999999999 13 0 0 88 0.2 0 0 +1.01988E7 8.9 2.8 66 95943 0 0 302 0 0 0 0 0 0 0 49 0 5 5 8450 7500 9 999999999 12 0 0 88 0.2 0 0 +1.02024E7 7.8 2.7 70 96165 0 0 293 0 0 0 0 0 0 0 249 0 3 3 7000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.0206E7 7 2 70 95663 0 0 289 0 0 0 0 0 0 0 340 0 3 3 7000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.02096E7 6 1 70 95644 0 0 272 0 0 0 0 0 0 0 20 2.1 0 0 7000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.02132E7 8.4 3.1 69 96035 0 0 283 0 0 0 0 0 0 0 80 1.5 0 0 2500 2000 9 999999999 13 0 0 88 0.2 0 0 +1.02168E7 7.7 2.5 70 95849 0 0 299 0 0 0 0 0 0 0 328 1 6 6 4750 2000 9 999999999 12 0 0 88 0.2 0 0 +1.02204E7 7 2 70 95663 0 0 277 0 0 0 0 0 0 0 130 0.5 0 0 7000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.0224E7 5.9 1.4 73 96128 51 242 288 13 0 13 1216 0 1224 424 294 0.5 5 5 6000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.02276E7 8 2 66 95683 319 1347 281 156 336 76 17478 12799 8589 2749 360 1.5 0 0 6000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.02312E7 11 3 58 95740 552 1347 294 346 529 129 39526 34026 14786 5208 20 1.5 0 0 6000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.02348E7 14.3 3.4 48 96185 736 1347 339 342 180 244 38527 15093 27634 9534 199 1 8 8 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.02384E7 16 4 45 95834 856 1347 316 619 720 161 73554 50493 19186 7610 16 1 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.0242E7 19 3 34 95888 907 1347 329 666 739 169 79532 52513 20249 8116 190 1.5 0 0 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +1.02456E7 20.8 2.4 30 95992 883 1347 369 433 225 286 49452 19507 32839 11888 180 2.6 8 8 9900 7500 9 999999999 12 0 0 88 0.2 0 0 +1.02492E7 22 4 31 95942 786 1347 343 554 690 152 65413 47788 17985 6994 150 3.6 0 0 9900 7500 9 999999999 14 0 0 88 0.2 0 0 +1.02528E7 23 2 25 95959 623 1347 346 409 588 137 47256 39553 15915 5798 180 5.7 0 0 9900 7500 9 999999999 11 0 0 88 0.2 0 0 +1.02564E7 21.8 2.7 28 95990 406 1347 364 195 289 108 21818 15690 12113 3925 180 3.1 6 6 9900 7500 9 999999999 12 0 0 88 0.2 0 0 +1.026E7 20 4 35 95906 148 1347 334 46 58 40 5079 0 4384 1278 160 4.1 0 0 9900 7500 9 999999999 14 0 0 88 0.2 0 0 +1.02636E7 18 5 42 95870 0 713 333 0 0 0 0 0 0 0 150 3.6 1 1 9900 7500 9 999999999 15 0 0 88 0.2 0 0 +1.02672E7 15.6 5.5 51 96143 0 0 316 0 0 0 0 0 0 0 170 3.1 0 0 9900 7500 9 999999999 16 0 0 88 0.2 0 0 +1.02708E7 14 7 63 95797 0 0 329 0 0 0 0 0 0 0 160 2.6 5 5 9900 7500 9 999999999 19 0 0 88 0.2 0 0 +1.02744E7 14 7 63 95797 0 0 329 0 0 0 0 0 0 0 150 3.1 5 5 9900 7500 9 999999999 19 0 0 88 0.2 0 0 +1.0278E7 11.5 6.2 70 96161 0 0 299 0 0 0 0 0 0 0 180 3.1 0 0 9900 7500 9 999999999 18 0 0 88 0.2 0 0 +1.02816E7 10 6 76 95721 0 0 317 0 0 0 0 0 0 0 190 2.1 7 7 9900 7500 9 999999999 17 0 0 88 0.2 0 0 +1.02852E7 9 6 81 95702 0 0 289 0 0 0 0 0 0 0 170 2.6 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.02888E7 8.5 5.6 82 96075 0 0 286 0 0 0 0 0 0 0 160 2.1 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.02924E7 7 5 87 95663 0 0 296 0 0 0 0 0 0 0 73 1 5 5 4000 2000 0 999999999 16 0 0 88 0.2 0 0 +1.0296E7 6 4 87 95644 0 0 291 0 0 0 0 0 0 0 160 1.5 5 5 3000 2000 0 999999999 14 0 0 88 0.2 0 0 +1.02996E7 5.3 4.6 95 96012 0 0 306 0 0 0 0 0 0 0 180 1.5 9 9 600 60 0 999999999 15 0 0 88 0.2 0 0 +1.03032E7 5 5 100 95624 0 0 305 0 0 0 0 0 0 0 160 1.5 9 9 400 30 0 999999999 16 0 0 88 0.2 0 0 +1.03068E7 4 3 93 95604 0 0 299 0 0 0 0 0 0 0 330 1.5 9 9 400 30 0 999999999 13 0 0 88 0.2 0 0 +1.03104E7 2.9 2.4 97 96030 47 226 277 12 0 12 1128 0 1136 396 83 0.5 5 5 300 2000 0 999999999 12 0 0 88 0.2 0 0 +1.0314E7 5 4 93 95624 314 1346 287 142 258 81 15781 10017 9094 2857 49 0.5 5 5 1300 2000 0 999999999 14 0 0 88 0.2 0 0 +1.03176E7 8 6 87 95683 547 1346 285 340 526 126 38853 32832 14482 5110 329 1 0 0 3500 2000 0 999999999 17 0 0 88 0.2 0 0 +1.03212E7 12.5 5.2 61 95991 730 1346 303 503 738 102 60537 45130 12370 4874 92 1 0 0 7000 2000 0 999999999 16 0 0 88 0.2 0 0 +1.03248E7 17 5 45 95852 851 1346 332 612 815 97 75489 49793 12010 4910 31 0.5 2 2 9900 2000 0 999999999 15 0 0 88 0.2 0 0 +1.03284E7 20 5 37 95906 901 1346 335 659 802 122 80492 51636 14975 6140 132 2.1 0 0 9900 2000 0 999999999 15 0 0 88 0.2 0 0 +1.0332E7 21 5.9 37 95863 877 1346 361 592 605 197 69382 44764 23253 9065 170 4.1 5 5 9900 2000 0 999999999 17 0 0 88 0.2 0 0 +1.03356E7 20 5 37 95906 780 1346 335 548 761 107 66327 47412 13030 5204 170 6.2 0 0 9900 2000 0 999999999 15 0 0 88 0.2 0 0 +1.03392E7 20 5 37 95906 617 1346 335 402 626 115 46987 38795 13501 5027 160 6.2 0 0 9900 2000 0 999999999 15 0 0 88 0.2 0 0 +1.03428E7 19 5.8 42 95874 400 1346 351 203 345 100 22760 17441 11260 3699 160 5.1 5 5 9900 2000 0 999999999 17 0 0 88 0.2 0 0 +1.03464E7 17 7 52 95852 143 1346 338 43 48 38 4732 0 4177 1222 180 6.2 3 3 9900 2000 0 999999999 19 0 0 88 0.2 0 0 +1.035E7 11.9 7.1 72 95829 0 689 329 0 0 0 0 0 0 0 155 3.8 5 5 9900 2000 0 999999999 19 0 0 88 0.2 0 0 +1.03536E7 10.9 7 77 95914 0 0 323 0 0 0 0 0 0 0 205 2.9 5 5 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +1.03572E7 10.1 6.7 80 95825 0 0 322 0 0 0 0 0 0 0 210 2.8 7 7 9000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.03608E7 10.3 7.4 82 95830 0 0 294 0 0 0 0 0 0 0 207 2.4 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.03644E7 10.6 8 84 95920 0 0 294 0 0 0 0 0 0 0 207 2.6 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.0368E7 10.6 8.6 87 95816 0 0 289 0 0 0 0 0 0 0 157 2.8 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.03716E7 10.8 9.3 90 95821 0 0 343 0 0 0 0 0 0 0 155 2.7 9 9 7000 3000 9 999999999 26 0 0 88 0.2 0 0 +1.03752E7 10.1 8.9 92 95893 0 0 322 0 0 0 0 0 0 0 157 2.7 6 6 6000 3000 9 999999999 24 0 0 88 0.2 0 0 +1.03788E7 9.5 8.8 96 95798 0 0 313 0 0 0 0 0 0 0 160 2.5 5 5 5000 2000 9 999999999 23 0 0 88 0.2 0 0 +1.03824E7 9.5 8.8 96 95798 0 0 309 0 0 0 0 0 0 0 157 2.5 3 3 4000 2000 9 999999999 23 0 0 88 0.2 0 0 +1.0386E7 9.5 8.9 96 95915 0 0 308 0 0 0 0 0 0 0 157 2.5 5 5 3000 2000 9 999999999 22 0 0 88 0.2 0 0 +1.03896E7 9.8 9.1 95 95833 0 0 337 0 0 0 0 0 0 0 155 2.5 10 10 800 2000 9 999999999 23 0 0 88 0.2 0 0 +1.03932E7 10 9 93 95721 0 0 332 0 0 0 0 0 0 0 150 2.1 9 9 2500 450 9 999999999 23 0 0 88 0.2 0 0 +1.03968E7 10 9.2 95 96189 47 226 342 4 0 4 378 0 380 153 150 2.6 10 10 2500 600 9 999999999 24 0 0 88 0.2 0 0 +1.04004E7 10 9 93 95721 314 1346 341 48 0 48 4682 0 4718 1896 150 2.6 10 10 3000 600 9 999999999 23 0 0 88 0.2 0 0 +1.0404E7 11 9 87 95740 547 1346 346 107 0 107 10705 0 10793 4484 160 1.5 10 10 4000 900 9 999999999 23 0 0 88 0.2 0 0 +1.04076E7 11.9 8.9 82 96357 730 1346 341 258 42 235 29050 3377 26624 9274 160 2.1 9 9 6000 900 9 999999999 23 0 0 88 0.2 0 0 +1.04112E7 13 10 82 95778 851 1346 347 314 55 279 35583 4565 31835 11434 180 5.1 9 9 6000 600 9 999999999 25 0 0 88 0.2 0 0 +1.04148E7 14 8 67 95797 901 1346 330 610 548 243 70591 43010 28285 10755 130 4.1 5 5 6000 2000 9 999999999 21 0 0 88 0.2 0 0 +1.04184E7 14.7 7 60 96344 877 1346 335 554 470 248 63783 37631 28701 10746 150 4.1 6 6 6000 2400 9 999999999 19 0 0 88 0.2 0 0 +1.0422E7 15 7 59 95815 780 1346 354 282 23 268 31729 1988 30380 10526 130 1.5 9 9 6000 2400 9 999999999 19 0 0 88 0.2 0 0 +1.04256E7 15 7 59 95815 617 1346 354 207 19 198 23123 1448 22266 7459 160 5.1 9 9 6000 2400 9 999999999 19 0 0 88 0.2 0 0 +1.04292E7 14.7 7 60 96457 400 1346 352 112 11 109 12503 570 12192 3925 160 4.6 9 9 6000 3000 9 999999999 19 0 0 88 0.2 0 0 +1.04328E7 14 7 63 95797 143 1346 329 40 32 37 4451 0 4086 1202 160 2.6 5 5 6000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.04364E7 13 7 67 95778 0 689 325 0 0 0 0 0 0 0 220 2.1 5 5 6000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.044E7 10.8 6.8 76 96507 0 0 297 0 0 0 0 0 0 0 60 1 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.04436E7 10 7 82 95721 0 0 294 0 0 0 0 0 0 0 40 1 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.04472E7 10 7 82 95721 0 0 294 0 0 0 0 0 0 0 50 2.6 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.04508E7 8.6 6.6 87 96540 0 0 300 0 0 0 0 0 0 0 180 1.5 3 3 6000 2000 9 999999999 18 0 0 88 0.2 0 0 +1.04544E7 8 6 87 95683 0 0 285 0 0 0 0 0 0 0 130 1 0 0 6000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.0458E7 6 5 93 95644 0 0 276 0 0 0 0 0 0 0 300 1 0 0 5000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.04616E7 4.8 4 95 96625 0 0 270 0 0 0 0 0 0 0 40 2.6 0 0 3000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.04652E7 5 4 93 95624 0 0 271 0 0 0 0 0 0 0 50 1.5 0 0 2500 2000 9 999999999 14 0 0 88 0.2 0 0 +1.04688E7 4 4 100 95604 0 0 267 0 0 0 0 0 0 0 40 2.1 0 0 2500 2000 9 999999999 14 0 0 88 0.2 0 0 +1.04724E7 3.8 3.7 99 96624 0 0 266 0 0 0 0 0 0 0 40 2.1 0 0 600 2000 9 999999999 14 0 0 88 0.2 0 0 +1.0476E7 5 5 100 95624 0 0 314 0 0 0 0 0 0 0 70 2.1 10 10 800 2000 9 999999999 16 0 0 88 0.2 0 0 +1.04796E7 3 2 93 95584 0 0 261 0 0 0 0 0 0 0 153 0.5 0 0 1600 2000 0 999999999 12 0 0 88 0.2 0 0 +1.04832E7 2.2 1.8 97 96648 44 209 269 12 0 12 1112 0 1120 387 339 0 3 3 300 2000 0 999999999 12 0 0 88 0.2 0 0 +1.04868E7 5 4 93 95624 310 1345 313 63 0 63 6221 0 6268 2365 24 1 10 10 1500 2000 0 999999999 14 0 0 88 0.2 0 0 +1.04904E7 9 6 81 95702 543 1345 289 336 456 153 37819 30952 17231 5821 99 1 0 0 3500 2000 0 999999999 17 0 0 88 0.2 0 0 +1.0494E7 11.8 7.4 74 96724 725 1345 302 497 735 100 59800 43955 12108 4773 200 1.5 0 0 5000 2000 0 999999999 20 0 0 88 0.2 0 0 +1.04976E7 15 7 59 95815 845 1345 315 606 807 99 74542 48802 12193 4980 196 1 0 0 6000 2000 0 999999999 19 0 0 88 0.2 0 0 +1.05012E7 16 7 55 95834 895 1345 320 652 827 102 80583 50321 12607 5203 99 1.5 0 0 7000 2000 0 999999999 19 0 0 88 0.2 0 0 +1.05048E7 18.2 5.9 44 96560 871 1345 328 631 822 98 77901 50106 12191 5007 190 2.1 0 0 9000 2000 0 999999999 17 0 0 88 0.2 0 0 +1.05084E7 19 7 46 95888 774 1345 333 541 760 104 65550 46298 12643 5053 160 3.1 0 0 9000 2000 0 999999999 19 0 0 88 0.2 0 0 +1.0512E7 19 4 37 95888 612 1345 330 398 622 115 46475 38780 13519 5017 170 4.6 0 0 9000 2000 0 999999999 14 0 0 88 0.2 0 0 +1.05156E7 19 5 40 95888 395 1345 337 214 429 88 24267 20226 10006 3355 170 4.6 1 1 9900 2000 0 999999999 15 0 0 88 0.2 0 0 +1.05192E7 18 6 45 95870 138 1345 338 41 75 33 4553 0 3708 1107 170 3.6 2 2 9900 2000 0 999999999 17 0 0 88 0.2 0 0 +1.05228E7 16 5 48 95834 0 666 328 0 0 0 0 0 0 0 200 2.1 2 2 9900 2000 0 999999999 15 0 0 88 0.2 0 0 +1.05264E7 13.3 5.3 58 96573 0 0 306 0 0 0 0 0 0 0 160 1 0 0 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +1.053E7 12 6 67 95759 0 0 319 0 0 0 0 0 0 0 142 1 5 5 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +1.05336E7 10 5 71 95721 0 0 312 0 0 0 0 0 0 0 350 0 6 6 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +1.05372E7 8.7 4.9 77 96608 0 0 286 0 0 0 0 0 0 0 30 2.6 0 0 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.05408E7 8 4 76 95683 0 0 283 0 0 0 0 0 0 0 30 1.5 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.05444E7 8 5 81 95683 0 0 284 0 0 0 0 0 0 0 31 1 0 0 6000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.0548E7 7.8 4.5 80 96571 0 0 282 0 0 0 0 0 0 0 130 1 0 0 6000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.05516E7 7 4 81 95663 0 0 279 0 0 0 0 0 0 0 242 0 0 0 4000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.05552E7 5 3 87 95624 0 0 270 0 0 0 0 0 0 0 320 2.1 0 0 4000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.05588E7 4.4 3.2 92 96494 0 0 268 0 0 0 0 0 0 0 40 1.5 0 0 4000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.05624E7 6 4 87 95644 0 0 275 0 0 0 0 0 0 0 290 0 0 0 4000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.0566E7 6 4 87 95644 0 0 275 0 0 0 0 0 0 0 184 0 0 0 5000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.05696E7 4.4 3.3 93 96513 40 192 268 11 0 11 1033 0 1040 362 213 0 0 0 5000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.05732E7 7 5 87 95663 306 1344 280 146 316 74 16373 11082 8349 2654 30 1.5 0 0 5000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.05768E7 11 6 71 95740 538 1344 297 332 572 103 38528 32868 12024 4349 224 1 0 0 7000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.05804E7 14.5 5.7 55 96425 720 1344 312 494 733 101 59392 44452 12170 4785 148 0.5 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.0584E7 17 6 48 95852 840 1344 334 600 802 99 73767 48889 12219 4982 62 1 2 2 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +1.05876E7 20 5 37 95906 889 1344 335 649 755 150 77911 51291 18037 7280 352 1 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +1.05912E7 21.6 4.1 32 96119 865 1344 342 627 752 143 75301 50898 17286 6949 220 1.5 0 0 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +1.05948E7 23 1 23 95959 768 1344 344 541 756 109 65387 48426 13234 5255 200 2.6 0 0 9900 2000 9 999999999 10 0 0 88 0.2 0 0 +1.05984E7 24 0 20 95977 606 1344 348 396 613 119 46087 39491 13957 5137 150 3.1 0 0 9900 2000 9 999999999 9 0 0 88 0.2 0 0 +1.0602E7 23.7 3.1 26 96024 390 1344 350 211 428 87 23887 20147 9864 3300 180 3.1 0 0 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +1.06056E7 21 5 35 95924 133 1344 340 39 66 32 4300 0 3584 1068 180 3.1 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +1.06092E7 18 5 42 95870 0 643 333 0 0 0 0 0 0 0 210 2.1 1 1 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +1.06128E7 15.2 5.3 52 96060 0 0 314 0 0 0 0 0 0 0 175 1 0 0 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +1.06164E7 15 5 51 95815 0 0 327 0 0 0 0 0 0 0 99 0.5 3 3 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +1.062E7 13 4 54 95778 0 0 317 0 0 0 0 0 0 0 20 1.5 3 3 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +1.06236E7 10.8 4.8 66 96091 0 0 295 0 0 0 0 0 0 0 20 2.1 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.06272E7 10 5 71 95721 0 0 292 0 0 0 0 0 0 0 304 1 0 0 6000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.06308E7 9 4 71 95702 0 0 287 0 0 0 0 0 0 0 177 0 0 0 5000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.06344E7 7.4 4.4 81 96025 0 0 281 0 0 0 0 0 0 0 10 1 0 0 5000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.0638E7 7 4 81 95663 0 0 279 0 0 0 0 0 0 0 78 1 0 0 5000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.06416E7 6 4 87 95644 0 0 275 0 0 0 0 0 0 0 215 1 0 0 5000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.06452E7 5.4 2.8 83 95939 0 0 271 0 0 0 0 0 0 0 20 1.5 0 0 6000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.06488E7 5 2 81 95624 0 0 269 0 0 0 0 0 0 0 202 0 0 0 7000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.06524E7 5 2 81 95624 0 0 269 0 0 0 0 0 0 0 267 0.5 0 0 6000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.0656E7 4 2 87 96024 37 176 283 9 0 9 824 0 829 299 360 2.1 6 6 4000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.06596E7 8 2 66 95683 302 1344 281 144 315 73 16139 11147 8230 2611 215 1 0 0 6000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.06632E7 13 3 51 95778 533 1344 302 330 513 127 37659 32563 14491 5059 144 1 0 0 6000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.06668E7 16.1 4.2 45 96077 715 1344 339 428 434 197 48875 33285 22616 8144 47 0.5 6 6 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.06704E7 20 3 32 95906 834 1344 333 600 723 152 71451 50130 18121 7177 270 1.5 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.0674E7 23 3 27 95959 883 1344 347 646 740 159 77167 51819 19098 7650 200 2.6 0 0 8000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.06776E7 24.5 3.6 26 95943 859 1344 379 544 491 230 62877 39008 26716 10071 160 3.1 6 6 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.06812E7 25 3 24 95994 762 1344 356 535 696 140 63263 47264 16605 6457 160 3.1 0 0 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +1.06848E7 26 2 21 96011 601 1344 360 390 613 116 45414 38616 13565 5000 150 4.6 0 0 9900 2000 9 999999999 11 0 0 88 0.2 0 0 +1.06884E7 24.4 2.2 23 95865 384 1344 352 207 423 86 23451 19807 9755 3255 160 5.7 0 0 9900 2000 9 999999999 11 0 0 88 0.2 0 0 +1.0692E7 21 5 35 95924 129 1344 340 36 56 31 4043 0 3461 1030 160 3.1 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +1.06956E7 18 6 45 95870 0 621 338 0 0 0 0 0 0 0 140 3.1 2 2 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +1.06992E7 16.8 7.5 54 95948 0 0 324 0 0 0 0 0 0 0 150 3.6 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +1.07028E7 16 7 55 95834 0 0 320 0 0 0 0 0 0 0 140 2.6 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.07064E7 15 7 59 95815 0 0 315 0 0 0 0 0 0 0 150 2.6 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.071E7 12 6.4 69 96095 0 0 302 0 0 0 0 0 0 0 260 1.5 0 0 8000 2000 9 999999999 18 0 0 88 0.2 0 0 +1.07136E7 10 5 71 95721 0 0 292 0 0 0 0 0 0 0 90 1 0 0 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.07172E7 9 5 76 95702 0 0 288 0 0 0 0 0 0 0 41 0 0 0 7000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.07208E7 8.1 4.8 80 96086 0 0 284 0 0 0 0 0 0 0 265 1 0 0 7000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.07244E7 8 5 81 95683 0 0 284 0 0 0 0 0 0 0 99 1 0 0 6000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.0728E7 6 3 81 95644 0 0 274 0 0 0 0 0 0 0 250 1 0 0 5000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.07316E7 6 3.3 83 96149 0 0 274 0 0 0 0 0 0 0 103 0.5 0 0 6000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.07352E7 4 3 93 95604 0 0 266 0 0 0 0 0 0 0 50 1.5 0 0 5000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.07388E7 5 3 87 95624 0 0 282 0 0 0 0 0 0 0 300 1 3 3 5000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.07424E7 3.9 2.6 91 96201 33 159 281 8 0 8 793 0 798 287 302 0.5 5 5 3000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.0746E7 7 4 81 95663 298 1343 279 141 306 73 15738 10425 8164 2584 50 1.5 0 0 4000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.07496E7 11 7 76 95740 529 1343 298 324 566 102 37529 31817 11793 4256 30 2.1 0 0 5000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.07532E7 15.2 5.3 52 96155 710 1343 314 485 728 100 58292 44102 12075 4733 340 2.1 0 0 5000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.07568E7 19 6 43 95888 829 1343 332 593 804 96 72853 48665 11895 4842 20 2.1 0 0 7000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.07604E7 21 6 38 95924 878 1343 341 637 824 99 78831 50237 12251 5041 257 0.5 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.0764E7 22.1 5.1 33 95958 853 1343 345 616 818 96 76044 49862 11896 4870 180 1.5 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.07676E7 24 5 29 95977 757 1343 354 528 752 104 63771 46423 12655 5027 160 6.7 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.07712E7 23 5 31 95959 595 1343 349 383 614 111 44702 37369 12994 4807 170 7.2 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +1.07748E7 22 2.9 28 95956 379 1343 342 203 416 85 22943 19127 9686 3222 180 6.2 0 0 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +1.07784E7 20 3 32 95906 124 1343 333 34 46 30 3809 0 3343 992 140 2.6 0 0 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +1.0782E7 18 5 42 95870 0 599 333 0 0 0 0 0 0 0 130 2.1 1 1 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +1.07856E7 15.8 6.9 55 96062 0 0 319 0 0 0 0 0 0 0 150 2.6 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +1.07892E7 16 8 59 95834 0 0 321 0 0 0 0 0 0 0 150 2.6 0 0 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +1.07928E7 13 6 62 95778 0 0 305 0 0 0 0 0 0 0 210 1.5 0 0 7000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.07964E7 12.5 6.7 68 96170 0 0 304 0 0 0 0 0 0 0 150 2.6 0 0 7000 2000 9 999999999 18 0 0 88 0.2 0 0 +1.08E7 10 6 76 95721 0 0 293 0 0 0 0 0 0 0 300 1.5 0 0 7000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.08036E7 8 6 87 95683 0 0 285 0 0 0 0 0 0 0 40 1 0 0 5000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.08072E7 8.1 4.6 79 96171 0 0 284 0 0 0 0 0 0 0 190 1.5 0 0 5000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.08108E7 6 3 81 95644 0 0 274 0 0 0 0 0 0 0 280 1 0 0 5000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.08144E7 6 4 87 95644 0 0 275 0 0 0 0 0 0 0 40 2.6 0 0 4000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.0818E7 6.4 4.1 85 96109 0 0 276 0 0 0 0 0 0 0 50 1 0 0 5000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.08216E7 5 2 81 95624 0 0 269 0 0 0 0 0 0 0 231 0.5 0 0 3000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.08252E7 4 2 87 95604 0 0 281 0 0 0 0 0 0 0 33 1 5 5 3000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.08288E7 5.3 2.7 83 96125 30 142 287 7 0 7 712 0 716 260 270 1.5 5 5 3500 2000 9 999999999 12 0 0 88 0.2 0 0 +1.08324E7 9 4 71 95702 294 1342 304 129 238 76 14302 8341 8525 2655 319 0.5 5 5 5000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.0836E7 13 4 54 95778 524 1342 303 322 506 125 36713 31616 14251 4960 30 1.5 0 0 6000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.08396E7 16 4.4 46 96141 705 1342 317 482 727 100 57872 44233 12017 4703 320 0.5 0 0 6000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.08432E7 19 6 43 95888 824 1342 332 588 802 96 72268 48488 11824 4808 90 1.5 0 0 6000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.08468E7 21 5 35 95924 872 1342 340 634 827 96 78467 50501 11982 4926 190 2.6 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.08504E7 22.4 5 32 95916 848 1342 346 611 817 95 75443 49728 11807 4828 130 2.6 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.0854E7 24 6 31 95977 751 1342 355 522 750 103 63107 45776 12439 4940 140 3.1 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.08576E7 23 5 31 95959 590 1342 349 379 612 110 44191 37053 12852 4748 180 5.7 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.08612E7 22.4 4.6 31 95802 374 1342 346 198 408 85 22442 18300 9611 3189 160 5.1 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.08648E7 20 3 32 95906 119 1342 333 32 37 29 3587 0 3226 956 190 3.6 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.08684E7 18 6 45 95870 0 578 327 0 0 0 0 0 0 0 274 1 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.0872E7 16.3 5.9 50 95891 0 0 320 0 0 0 0 0 0 0 130 2.1 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.08756E7 16 7 55 95834 0 0 320 0 0 0 0 0 0 0 150 1.5 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.08792E7 14 7 63 95797 0 0 311 0 0 0 0 0 0 0 92 1 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.08828E7 14 7.6 65 96028 0 0 311 0 0 0 0 0 0 0 140 2.1 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +1.08864E7 10 6 76 95721 0 0 293 0 0 0 0 0 0 0 280 2.1 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.089E7 9 4 71 95702 0 0 287 0 0 0 0 0 0 0 92 0 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.08936E7 8.2 4.3 76 96022 0 0 301 0 0 0 0 0 0 0 276 0.5 5 5 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.08972E7 8 5 81 95683 0 0 301 0 0 0 0 0 0 0 340 1.5 5 5 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.09008E7 8 5 81 95683 0 0 284 0 0 0 0 0 0 0 10 1.5 0 0 7000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.09044E7 9.2 4.7 73 95918 0 0 305 0 0 0 0 0 0 0 40 1.5 5 5 7000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.0908E7 8 4 76 95683 0 0 283 0 0 0 0 0 0 0 60 1 0 0 7000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.09116E7 8 4 76 95683 0 0 317 0 0 0 0 0 0 0 180 1.5 9 9 7000 4800 9 999999999 14 0 0 88 0.2 0 0 +1.09152E7 7.1 3.6 78 96057 26 126 295 7 0 7 627 0 631 232 33 1 5 5 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.09188E7 10 4 66 95721 290 1342 303 134 285 72 14911 9371 8063 2534 70 0 3 3 7000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.09224E7 13 6 62 95778 520 1342 319 313 530 108 36038 30670 12484 4441 171 0 3 3 7000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.0926E7 16 7 55 95834 700 1342 333 469 698 105 56033 42215 12612 4915 160 1.5 3 3 7000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.09296E7 18 9 56 95870 818 1342 345 573 765 106 69720 46206 13003 5266 150 3.6 3 3 9000 2000 9 999999999 23 0 0 88 0.2 0 0 +1.09332E7 18 9 56 95870 867 1342 345 613 773 114 74809 47496 13966 5711 210 6.7 3 3 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +1.09368E7 19 8.9 52 96082 842 1342 350 594 775 108 72537 47055 13210 5381 180 6.7 3 3 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +1.09404E7 19 9 52 95888 746 1342 350 510 729 105 61403 43652 12700 5034 190 5.7 3 3 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +1.0944E7 19 9 52 95888 584 1342 350 368 594 110 42866 34719 12818 4731 170 4.6 3 3 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +1.09476E7 18.8 8.9 53 96012 369 1342 349 191 391 83 21534 16404 9421 3129 170 4.6 3 3 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +1.09512E7 18 10 59 95870 115 1342 352 28 5 28 3135 0 3094 919 160 3.6 5 5 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +1.09548E7 16 9 63 95834 0 557 341 0 0 0 0 0 0 0 210 2.6 5 5 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +1.09584E7 15.5 9.4 67 96094 0 0 320 0 0 0 0 0 0 0 200 2.6 0 0 9900 2000 9 999999999 24 0 0 88 0.2 0 0 +1.0962E7 14 10 77 95797 0 0 339 0 0 0 0 0 0 0 150 2.6 7 7 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +1.09656E7 13 10 82 95778 0 0 310 0 0 0 0 0 0 0 130 2.6 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +1.09692E7 12.1 9.8 86 96172 0 0 306 0 0 0 0 0 0 0 100 1.5 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +1.09728E7 12 10 88 95759 0 0 305 0 0 0 0 0 0 0 150 2.6 0 0 6000 2000 9 999999999 26 0 0 88 0.2 0 0 +1.09764E7 10 9 93 95721 0 0 296 0 0 0 0 0 0 0 220 1.5 0 0 4000 2000 9 999999999 23 0 0 88 0.2 0 0 +1.098E7 9.4 8.6 95 96206 0 0 293 0 0 0 0 0 0 0 270 1 0 0 4000 2000 9 999999999 22 0 0 88 0.2 0 0 +1.09836E7 8 7 93 95683 0 0 286 0 0 0 0 0 0 0 323 0 0 0 4000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.09872E7 8 8 100 95683 0 0 304 0 0 0 0 0 0 0 9 0 5 5 2000 2000 0 999999999 21 0 0 88 0.2 0 0 +1.09908E7 7.5 7.3 99 96150 0 0 319 0 0 0 0 0 0 0 300 0.5 9 9 600 30 0 999999999 20 0 0 88 0.2 0 0 +1.09944E7 9 8 93 95702 0 0 326 0 0 0 0 0 0 0 67 0.5 9 9 3000 90 0 999999999 21 0 0 88 0.2 0 0 +1.0998E7 10 8 87 95721 0 0 331 0 0 0 0 0 0 0 15 1 9 9 3000 180 0 999999999 21 0 0 88 0.2 0 0 +1.10016E7 9.6 8.6 93 96247 23 109 339 2 0 2 183 0 184 75 40 2.1 10 10 3000 180 0 999999999 22 0 0 88 0.2 0 0 +1.10052E7 11 9 87 95740 286 1341 346 41 0 41 4065 0 4096 1642 123 1 10 10 3000 240 0 999999999 23 0 0 88 0.2 0 0 +1.10088E7 11 9 87 95740 515 1341 346 98 0 98 9845 0 9925 4103 99 1 10 10 3000 300 0 999999999 23 0 0 88 0.2 0 0 +1.10124E7 12.4 9.5 82 96291 695 1341 354 148 0 148 15013 0 15144 6473 104 0 10 10 3600 330 0 999999999 24 0 0 88 0.2 0 0 +1.1016E7 13 10 82 95778 813 1341 357 181 1 180 21116 105 21109 8153 102 1 10 10 4000 330 0 999999999 25 0 0 88 0.2 0 0 +1.10196E7 14 10 77 95797 861 1341 333 576 525 238 66249 40676 27568 10364 190 3.1 5 5 4000 2000 0 999999999 25 0 0 88 0.2 0 0 +1.10232E7 15 9.9 72 96104 836 1341 332 588 756 117 71278 46383 14226 5767 170 4.1 3 3 5000 2000 0 999999999 25 0 0 88 0.2 0 0 +1.10268E7 17 9 59 95852 740 1341 326 510 743 100 61560 43845 12062 4788 170 4.6 0 0 5000 2000 0 999999999 23 0 0 88 0.2 0 0 +1.10304E7 17 10 63 95852 579 1341 327 367 605 105 42732 34420 12289 4549 160 5.1 0 0 5000 2000 0 999999999 25 0 0 88 0.2 0 0 +1.1034E7 16.9 9.2 60 96082 364 1341 326 189 400 81 21405 16269 9154 3044 160 4.6 0 0 8000 2000 0 999999999 23 0 0 88 0.2 0 0 +1.10376E7 15 9 67 95815 110 1341 317 29 28 27 3245 0 2997 888 160 4.1 0 0 8000 2000 0 999999999 23 0 0 88 0.2 0 0 +1.10412E7 14 8 67 95797 0 536 312 0 0 0 0 0 0 0 150 2.6 0 0 8000 2000 0 999999999 21 0 0 88 0.2 0 0 +1.10448E7 13.8 9.1 73 96129 0 0 312 0 0 0 0 0 0 0 140 3.6 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +1.10484E7 12 9 82 95759 0 0 304 0 0 0 0 0 0 0 262 1 0 0 7000 2000 9 999999999 23 0 0 88 0.2 0 0 +1.1052E7 10 7 82 95721 0 0 294 0 0 0 0 0 0 0 243 1 0 0 6000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.10556E7 8.6 6.5 87 96190 0 0 288 0 0 0 0 0 0 0 21 0.5 0 0 5000 2000 9 999999999 18 0 0 88 0.2 0 0 +1.10592E7 8 7 93 95683 0 0 286 0 0 0 0 0 0 0 269 0.5 0 0 5000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.10628E7 7 6 93 95663 0 0 281 0 0 0 0 0 0 0 202 1 0 0 4000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.10664E7 6.4 5.9 97 96109 0 0 278 0 0 0 0 0 0 0 20 1.5 0 0 900 2000 0 999999999 17 0 0 88 0.2 0 0 +1.107E7 7 5 87 95663 0 0 280 0 0 0 0 0 0 0 249 0 0 0 1500 2000 0 999999999 16 0 0 88 0.2 0 0 +1.10736E7 5 4 93 95624 0 0 283 0 0 0 0 0 0 0 289 0 3 3 1500 2000 0 999999999 14 0 0 88 0.2 0 0 +1.10772E7 4 3 93 96052 0 0 282 0 0 0 0 0 0 0 81 1 5 5 800 2000 0 999999999 13 0 0 88 0.2 0 0 +1.10808E7 4 3 93 95604 0 0 282 0 0 0 0 0 0 0 290 1 5 5 1500 2000 0 999999999 13 0 0 88 0.2 0 0 +1.10844E7 2 2 100 95564 0 0 297 0 0 0 0 0 0 0 60 1.5 10 10 100 30 0 999999999 12 0 0 88 0.2 0 0 +1.1088E7 2.9 2.7 99 96162 19 93 262 5 0 5 499 0 502 187 156 0 0 0 100 2000 0 999999999 13 0 0 88 0.2 0 0 +1.10916E7 4 4 100 95604 282 1341 267 130 287 69 14509 8916 7782 2443 242 1 0 0 700 2000 0 999999999 14 0 0 88 0.2 0 0 +1.10952E7 9 7 87 95702 511 1341 290 310 553 99 35785 30469 11453 4106 204 1.5 0 0 1200 2000 0 999999999 19 0 0 88 0.2 0 0 +1.10988E7 13 8.1 72 96133 690 1341 308 466 717 97 55899 41921 11629 4543 250 1 0 0 2000 2000 0 999999999 21 0 0 88 0.2 0 0 +1.11024E7 15 8 63 95815 808 1341 316 572 789 96 70066 46969 11855 4805 141 1 0 0 3000 2000 0 999999999 21 0 0 88 0.2 0 0 +1.1106E7 18 8 52 95870 856 1341 330 616 810 99 75869 48590 12251 5022 220 1.5 0 0 4000 2000 0 999999999 21 0 0 88 0.2 0 0 +1.11096E7 19.9 5 38 95919 831 1341 335 596 810 94 73509 49150 11670 4756 180 2.6 0 0 5000 2000 0 999999999 15 0 0 88 0.2 0 0 +1.11132E7 21 3 30 95924 735 1341 338 511 744 103 61576 46227 12448 4913 160 3.6 0 0 7000 2000 0 999999999 12 0 0 88 0.2 0 0 +1.11168E7 21 6 38 95924 574 1341 341 365 605 106 42571 35688 12379 4559 150 4.6 0 0 8000 2000 0 999999999 17 0 0 88 0.2 0 0 +1.11204E7 20.1 6.2 40 95884 360 1341 344 187 402 79 21172 16616 8992 2985 170 5.1 1 1 8000 2000 0 999999999 17 0 0 88 0.2 0 0 +1.1124E7 18 6 45 95870 106 1341 327 28 29 26 3148 0 2897 856 170 3.6 0 0 8000 2000 0 999999999 17 0 0 88 0.2 0 0 +1.11276E7 16 7 55 95834 0 516 320 0 0 0 0 0 0 0 150 3.1 0 0 6000 2000 0 999999999 19 0 0 88 0.2 0 0 +1.11312E7 14.9 7.6 62 95969 0 0 315 0 0 0 0 0 0 0 170 2.6 0 0 6000 2000 9 999999999 20 0 0 88 0.2 0 0 +1.11348E7 14 7 63 95797 0 0 311 0 0 0 0 0 0 0 150 3.1 0 0 7000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.11384E7 13 7 67 95778 0 0 307 0 0 0 0 0 0 0 180 2.6 0 0 7000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.1142E7 10.9 6.4 74 96046 0 0 297 0 0 0 0 0 0 0 180 1.5 0 0 7000 2000 9 999999999 18 0 0 88 0.2 0 0 +1.11456E7 9 5 76 95702 0 0 288 0 0 0 0 0 0 0 70 0.5 0 0 7000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.11492E7 8 5 81 95683 0 0 284 0 0 0 0 0 0 0 260 0.5 0 0 7000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.11528E7 8.3 6.4 88 96024 0 0 286 0 0 0 0 0 0 0 19 1 0 0 6000 2000 9 999999999 18 0 0 88 0.2 0 0 +1.11564E7 7 5 87 95663 0 0 280 0 0 0 0 0 0 0 274 0 0 0 5000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.116E7 5 3 87 95624 0 0 270 0 0 0 0 0 0 0 342 0 0 0 5000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.11636E7 4.4 3 91 95975 0 0 268 0 0 0 0 0 0 0 30 0 0 0 4000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.11672E7 5 4 93 95624 0 0 271 0 0 0 0 0 0 0 84 0.5 0 0 4000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.11708E7 5 4 93 95624 0 0 271 0 0 0 0 0 0 0 72 1 0 0 4000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.11744E7 4.4 2.6 88 96107 16 77 267 4 0 4 411 0 413 157 32 0.5 0 0 4000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.1178E7 6 3 81 95644 278 1340 274 127 283 69 14226 8670 7686 2407 240 0.5 0 0 4000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.11816E7 9 5 76 95702 506 1340 288 307 547 100 35426 30701 11614 4141 2 1 0 0 4000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.11852E7 12.5 6 65 96180 685 1340 303 463 715 97 55550 42580 11713 4563 331 0.5 0 0 5000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.11888E7 15 6 55 95815 803 1340 314 569 792 95 69829 47698 11656 4718 210 1.5 0 0 6000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.11924E7 18 7 49 95870 851 1340 329 612 810 98 75425 48898 12152 4974 210 2.1 0 0 7000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.1196E7 18.6 6.5 45 96075 826 1340 331 590 801 96 72525 48306 11886 4838 190 2.1 0 0 8000 2000 9 999999999 18 0 0 88 0.2 0 0 +1.11996E7 19 7 46 95888 730 1340 333 503 740 100 60617 44346 12077 4773 170 3.1 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.12032E7 19 6 43 95888 569 1340 332 361 601 105 42045 35324 12308 4524 160 5.1 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.12068E7 18.2 5.9 44 96106 355 1340 328 184 397 78 20782 16224 8907 2949 170 6.2 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.12104E7 16 6 51 95834 102 1340 332 27 25 25 3003 0 2798 826 170 4.1 3 3 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +1.1214E7 15 7 59 95815 0 497 331 0 0 0 0 0 0 0 150 4.6 4 4 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +1.12176E7 12.2 6.3 67 96240 0 0 302 0 0 0 0 0 0 0 170 3.1 0 0 9900 2000 9 999999999 18 0 0 88 0.2 0 0 +1.12212E7 11 6 71 95740 0 0 297 0 0 0 0 0 0 0 170 3.6 0 0 7000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.12248E7 11 6 71 95740 0 0 297 0 0 0 0 0 0 0 140 2.6 0 0 6000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.12284E7 8.2 5.3 82 96277 0 0 285 0 0 0 0 0 0 0 47 0.5 0 0 3500 2000 9 999999999 16 0 0 88 0.2 0 0 +1.1232E7 7 5 87 95663 0 0 280 0 0 0 0 0 0 0 266 1 0 0 3500 2000 9 999999999 16 0 0 88 0.2 0 0 +1.12356E7 6 3 81 95644 0 0 274 0 0 0 0 0 0 0 64 0 0 0 3000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.12392E7 4.9 3.1 88 96231 0 0 270 0 0 0 0 0 0 0 352 0 0 0 2000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.12428E7 4 2 87 95604 0 0 265 0 0 0 0 0 0 0 10 1 0 0 2000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.12464E7 4 3 93 95604 0 0 266 0 0 0 0 0 0 0 300 1 0 0 1800 2000 9 999999999 13 0 0 88 0.2 0 0 +1.125E7 2.1 1 92 96221 0 0 268 0 0 0 0 0 0 0 184 0.5 3 3 800 2000 9 999999999 11 0 0 88 0.2 0 0 +1.12536E7 2 2 100 95564 0 0 269 0 0 0 0 0 0 0 87 0.5 3 3 500 2000 0 999999999 12 0 0 88 0.2 0 0 +1.12572E7 1 1 100 95544 0 0 264 0 0 0 0 0 0 0 30 1 3 3 500 2000 0 999999999 11 0 0 88 0.2 0 0 +1.12608E7 0.5 0.5 100 96264 13 60 262 3 0 3 320 0 322 124 60 1 3 3 800 2000 0 999999999 10 0 0 88 0.2 0 0 +1.12644E7 5 4 93 95624 274 1339 271 124 276 68 13887 8147 7605 2377 67 1 0 0 2000 2000 0 999999999 14 0 0 88 0.2 0 0 +1.1268E7 8 5 81 95683 502 1339 284 303 543 100 34984 30333 11535 4106 53 0 0 0 4000 2000 0 999999999 16 0 0 88 0.2 0 0 +1.12716E7 12 5.7 65 96246 680 1339 301 459 713 97 55042 42440 11675 4541 300 0.5 0 0 4000 2000 0 999999999 17 0 0 88 0.2 0 0 +1.12752E7 15 6 55 95815 798 1339 314 565 790 95 69230 47496 11621 4698 26 1 0 0 4000 2000 0 999999999 17 0 0 88 0.2 0 0 +1.12788E7 18 6 45 95870 845 1339 327 609 811 97 75040 49166 11944 4884 30 2.1 0 0 5000 2000 0 999999999 17 0 0 88 0.2 0 0 +1.12824E7 19.2 4.6 38 96029 820 1339 331 587 806 93 72332 48917 11538 4692 200 0.5 0 0 5000 2000 0 999999999 15 0 0 88 0.2 0 0 +1.1286E7 21 2 28 95924 725 1339 336 502 739 102 60508 46069 12346 4857 140 1.5 0 0 8000 2000 0 999999999 11 0 0 88 0.2 0 0 +1.12896E7 21 2 28 95924 564 1339 336 359 592 110 41720 36134 12778 4656 140 4.6 0 0 8000 2000 0 999999999 11 0 0 88 0.2 0 0 +1.12932E7 20 3.8 34 95977 351 1339 334 181 395 77 20481 16217 8792 2904 220 4.6 0 0 8000 2000 0 999999999 14 0 0 88 0.2 0 0 +1.12968E7 18 5 42 95870 98 1339 326 26 26 24 2909 0 2704 797 160 2.6 0 0 8000 2000 0 999999999 15 0 0 88 0.2 0 0 +1.13004E7 14 4 51 95797 0 478 308 0 0 0 0 0 0 0 170 3.1 0 0 8000 2000 0 999999999 14 0 0 88 0.2 0 0 +1.1304E7 14.1 4.8 53 96125 0 0 309 0 0 0 0 0 0 0 140 4.1 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.13076E7 13 5 58 95778 0 0 320 0 0 0 0 0 0 0 130 2.1 4 4 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +1.13112E7 10 3 62 95721 0 0 290 0 0 0 0 0 0 0 320 2.6 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.13148E7 7.4 3.4 76 96110 0 0 280 0 0 0 0 0 0 0 70 1 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.13184E7 8 4 76 95683 0 0 283 0 0 0 0 0 0 0 176 0.5 0 0 7000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.1322E7 6 3 81 95644 0 0 274 0 0 0 0 0 0 0 310 2.1 0 0 6000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.13256E7 5.6 2.4 80 96197 0 0 272 0 0 0 0 0 0 0 133 0.5 0 0 5000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.13292E7 5 2 81 95624 0 0 269 0 0 0 0 0 0 0 168 1 0 0 5000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.13328E7 4 1 81 95604 0 0 264 0 0 0 0 0 0 0 270 1.5 0 0 4000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.13364E7 2.2 0.1 86 96242 0 0 257 0 0 0 0 0 0 0 223 0.5 0 0 4000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.134E7 3 1 87 95584 0 0 260 0 0 0 0 0 0 0 360 1 0 0 3000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.13436E7 3 1 87 95584 0 0 260 0 0 0 0 0 0 0 262 1 0 0 3000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.13472E7 2.2 0.8 90 96346 9 44 257 2 0 2 238 0 239 94 234 0.5 0 0 3000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.13508E7 5 1 75 95624 270 1339 268 123 233 76 13557 7748 8398 2537 70 1.5 0 0 3000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.13544E7 8 2 66 95683 498 1339 281 301 538 101 34727 30787 11725 4148 184 0 0 0 4000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.1358E7 11.8 2.9 54 96346 676 1339 297 457 715 97 54853 43259 11632 4513 278 0 0 0 5000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.13616E7 15 4 48 95815 793 1339 312 562 796 91 69103 48137 11269 4552 357 0.5 0 0 6000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.13652E7 17 4 42 95852 840 1339 321 606 818 93 74940 49830 11535 4713 14 1 0 0 6000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.13688E7 19.3 3.1 34 96211 815 1339 330 584 810 91 72092 49324 11245 4569 280 1.5 0 0 6000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.13724E7 21 0 25 95924 720 1339 334 499 740 102 60185 46502 12317 4836 24 0.5 0 0 8000 2000 9 999999999 9 0 0 88 0.2 0 0 +1.1376E7 22 -2 20 95942 560 1339 336 357 587 112 41480 36774 13030 4718 180 1.5 0 0 8000 2000 9 999999999 8 0 0 88 0.2 0 0 +1.13796E7 20.8 0.8 26 96162 346 1339 334 179 323 95 19893 15342 10640 3339 160 3.6 0 0 8000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.13832E7 18 3 37 95870 94 1339 324 25 26 23 2812 0 2615 769 160 3.1 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.13868E7 16 4 45 95834 0 459 316 0 0 0 0 0 0 0 220 1.5 0 0 7000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.13904E7 14.9 5.6 54 96263 0 0 313 0 0 0 0 0 0 0 150 2.1 0 0 7000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.1394E7 12 5 62 95759 0 0 300 0 0 0 0 0 0 0 190 1.5 0 0 6000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.13976E7 9 1 57 95702 0 0 284 0 0 0 0 0 0 0 166 1 0 0 6000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.14012E7 7.2 0.9 64 96304 0 0 277 0 0 0 0 0 0 0 20 2.1 0 0 6000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.14048E7 6 2 75 95644 0 0 273 0 0 0 0 0 0 0 96 0.5 0 0 6000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.14084E7 7 1 66 95663 0 0 276 0 0 0 0 0 0 0 20 1.5 0 0 6000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.1412E7 4.6 1 77 96244 0 0 266 0 0 0 0 0 0 0 360 1.5 0 0 6000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.14156E7 3 0 81 95584 0 0 259 0 0 0 0 0 0 0 50 1.5 0 0 6000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.14192E7 3 0 81 95584 0 0 259 0 0 0 0 0 0 0 20 1.5 0 0 6000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.14228E7 3.1 -0.4 77 96176 0 0 259 0 0 0 0 0 0 0 20 1 0 0 6000 2000 9 999999999 9 0 0 88 0.2 0 0 +1.14264E7 2 -3 67 95564 0 0 253 0 0 0 0 0 0 0 208 0 0 0 6000 2000 9 999999999 7 0 0 88 0.2 0 0 +1.143E7 2 -2 73 95564 0 0 254 0 0 0 0 0 0 0 112 0 0 0 5000 2000 9 999999999 8 0 0 88 0.2 0 0 +1.14336E7 1.5 -1.5 79 96190 6 28 253 2 0 2 151 0 152 61 330 0.5 0 0 5000 2000 9 999999999 8 0 0 88 0.2 0 0 +1.14372E7 4 -1 69 95604 266 1338 262 120 230 75 13309 7594 8275 2495 33 1 0 0 6000 2000 9 999999999 9 0 0 88 0.2 0 0 +1.14408E7 9 -2 45 95702 493 1338 281 300 533 103 34483 31263 11929 4193 40 1.5 0 0 8000 2000 9 999999999 8 0 0 88 0.2 0 0 +1.14444E7 12.3 0 43 96271 671 1338 296 455 716 96 54631 43926 11571 4480 53 1 0 0 8000 2000 9 999999999 9 0 0 88 0.2 0 0 +1.1448E7 15 0 36 95815 788 1338 308 562 807 87 69296 49326 10713 4324 150 1 0 0 8000 2000 9 999999999 9 0 0 88 0.2 0 0 +1.14516E7 19 -1 26 95888 835 1338 324 606 746 141 72700 51554 16954 6763 30 1 0 0 8000 2000 9 999999999 8 0 0 88 0.2 0 0 +1.14552E7 21.7 -2.3 19 96093 810 1338 341 584 743 135 70049 51016 16189 6427 240 1.5 1 1 8000 2000 9 999999999 7 0 0 88 0.2 0 0 +1.14588E7 23 -5 14 95959 715 1338 337 499 745 101 60166 47620 12217 4787 200 3.1 0 0 9900 2000 9 999999999 6 0 0 88 0.2 0 0 +1.14624E7 24 -3 16 95977 555 1338 344 354 584 112 41054 36630 13009 4698 160 4.1 0 0 9900 2000 9 999999999 7 0 0 88 0.2 0 0 +1.1466E7 22.2 2.5 27 96073 342 1338 343 175 376 79 19745 15513 8945 2918 160 4.6 0 0 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +1.14696E7 19 4 37 95888 90 1338 330 24 23 23 2694 0 2527 742 150 4.6 0 0 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +1.14732E7 16 3 42 95834 0 441 321 0 0 0 0 0 0 0 170 3.1 1 1 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +1.14768E7 15.5 3.5 45 96255 0 0 314 0 0 0 0 0 0 0 150 3.1 0 0 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +1.14804E7 13 4 54 95778 0 0 317 0 0 0 0 0 0 0 190 2.1 3 3 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +1.1484E7 10 3 62 95721 0 0 290 0 0 0 0 0 0 0 310 1.5 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.14876E7 7.9 2.4 68 96299 0 0 281 0 0 0 0 0 0 0 40 2.1 0 0 8000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.14912E7 8 2 66 95683 0 0 281 0 0 0 0 0 0 0 239 0.5 0 0 6000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.14948E7 6 2 75 95644 0 0 273 0 0 0 0 0 0 0 79 0.5 0 0 6000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.14984E7 4.6 0.7 76 96244 0 0 266 0 0 0 0 0 0 0 180 1 0 0 6000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.1502E7 4 1 81 95604 0 0 264 0 0 0 0 0 0 0 40 2.1 0 0 5000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.15056E7 5 1 75 95624 0 0 268 0 0 0 0 0 0 0 284 1 0 0 5000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.15092E7 3.9 0.8 80 96145 0 0 264 0 0 0 0 0 0 0 350 1.5 0 0 4000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.15128E7 2 -2 73 95564 0 0 254 0 0 0 0 0 0 0 20 1 0 0 4000 2000 9 999999999 8 0 0 88 0.2 0 0 +1.15164E7 3 -1 74 95584 0 0 259 0 0 0 0 0 0 0 163 0.5 0 0 5000 2000 9 999999999 9 0 0 88 0.2 0 0 +1.152E7 1.8 -1.5 78 96215 4 12 254 1 0 1 65 0 65 27 237 0.5 0 0 5000 2000 9 999999999 8 0 0 88 0.2 0 0 +1.15236E7 5 -1 64 95624 262 1337 266 118 225 74 13016 7241 8157 2456 116 0 0 0 5000 2000 9 999999999 9 0 0 88 0.2 0 0 +1.15272E7 9 -1 49 95702 489 1337 282 296 530 102 34010 30694 11779 4138 195 0.5 0 0 5000 2000 9 999999999 9 0 0 88 0.2 0 0 +1.15308E7 13.8 1.1 42 96299 666 1337 304 450 712 96 54010 43327 11511 4452 84 1 0 0 5000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.15344E7 17 1 34 95852 783 1337 317 556 801 88 68528 48807 10815 4359 10 1.5 0 0 6000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.1538E7 19 1 30 95888 830 1337 326 600 745 138 71975 50735 16571 6616 295 1 0 0 7000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.15416E7 20.8 0.7 26 96077 805 1337 334 577 814 87 71386 49771 10849 4399 180 3.1 0 0 7000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.15452E7 22 1 25 95942 710 1337 340 490 734 100 59005 45686 12116 4748 150 4.1 0 0 7000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.15488E7 22 2 27 95942 550 1337 341 347 535 127 39776 34426 14630 5171 180 3.6 0 0 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.15524E7 21.8 2 27 96047 338 1337 360 160 295 85 17926 12781 9605 3068 160 3.6 5 5 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.1556E7 18 4 39 95870 86 1337 325 23 12 22 2578 0 2496 728 160 4.6 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.15596E7 15 7 59 95815 0 424 315 0 0 0 0 0 0 0 160 4.6 0 0 6000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.15632E7 12.9 7.1 68 96225 0 0 306 0 0 0 0 0 0 0 150 5.1 0 0 5000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.15668E7 11 7 76 95740 0 0 298 0 0 0 0 0 0 0 170 2.6 0 0 7000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.15704E7 11 7 76 95740 0 0 298 0 0 0 0 0 0 0 160 3.1 0 0 7000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.1574E7 8 6.4 90 96330 0 0 297 0 0 0 0 0 0 0 180 3.1 3 3 1400 2000 0 999999999 18 0 0 88 0.2 0 0 +1.15776E7 6 6 100 95644 0 0 293 0 0 0 0 0 0 0 160 2.1 5 5 400 2000 0 999999999 17 0 0 88 0.2 0 0 +1.15812E7 7 7 100 95663 0 0 316 0 0 0 0 0 0 0 160 3.6 9 9 300 60 0 999999999 19 0 0 88 0.2 0 0 +1.15848E7 7 7 100 96263 0 0 325 0 0 0 0 0 0 0 170 2.1 10 10 200 60 0 999999999 19 0 0 88 0.2 0 0 +1.15884E7 6.5 6.5 100 95953 0 0 322 0 0 0 0 0 0 0 281 1.5 10 10 200 60 9 999999999 18 0 0 88 0.2 0 0 +1.1592E7 6 6 100 95644 0 0 319 0 0 0 0 0 0 0 145 1 10 10 200 30 0 999999999 17 0 0 88 0.2 0 0 +1.15956E7 5 5 100 95624 0 0 314 0 0 0 0 0 0 0 50 1.5 10 10 200 30 0 999999999 16 0 0 88 0.2 0 0 +1.15992E7 4 4 100 95604 0 0 308 0 0 0 0 0 0 0 10 1.5 10 10 250 30 0 999999999 14 0 0 88 0.2 0 0 +1.16028E7 4 4 100 95604 0 0 308 0 0 0 0 0 0 0 170 0.5 10 10 200 30 0 999999999 14 0 0 88 0.2 0 0 +1.16064E7 2 2 100 95564 0 0 297 0 0 0 0 0 0 0 12 1 10 10 200 30 0 999999999 12 0 0 88 0.2 0 0 +1.161E7 2 2 100 95564 259 1333 258 115 260 64 12809 7004 7213 2237 301 0.5 0 0 500 2000 0 999999999 12 0 0 88 0.2 0 0 +1.16136E7 7 4 81 95663 485 1337 279 290 529 98 33389 29235 11349 4004 148 1.5 0 0 3000 2000 0 999999999 14 0 0 88 0.2 0 0 +1.16172E7 10.9 4.6 65 96187 662 1337 295 444 705 95 53181 41895 11428 4419 86 1 0 0 3000 2000 0 999999999 15 0 0 88 0.2 0 0 +1.16208E7 15 5 51 95815 778 1337 313 549 785 92 67224 47165 11286 4543 190 3.6 0 0 4000 2000 0 999999999 15 0 0 88 0.2 0 0 +1.16244E7 18 5 42 95870 825 1337 326 592 808 94 72977 48908 11566 4711 200 2.6 0 0 6000 2000 0 999999999 15 0 0 88 0.2 0 0 +1.1628E7 20.9 3.2 31 96050 800 1337 337 571 803 90 70344 48734 11140 4511 170 5.1 0 0 6000 2000 0 999999999 13 0 0 88 0.2 0 0 +1.16316E7 20 5 37 95906 705 1337 335 483 729 98 58133 44042 11864 4653 160 6.7 0 0 6000 2000 0 999999999 15 0 0 88 0.2 0 0 +1.16352E7 21 3 30 95924 546 1337 338 343 583 105 39859 34590 12279 4454 180 6.7 0 0 8000 2000 0 999999999 12 0 0 88 0.2 0 0 +1.16388E7 20.3 3.3 32 96134 334 1337 352 163 329 81 18335 13496 9149 2945 150 3.6 4 4 8000 2000 0 999999999 13 0 0 88 0.2 0 0 +1.16424E7 18 5 42 95870 83 1337 326 22 11 22 2478 0 2407 702 150 4.1 0 0 7000 2000 0 999999999 15 0 0 88 0.2 0 0 +1.1646E7 16 5 48 95834 0 407 317 0 0 0 0 0 0 0 190 1 0 0 7000 2000 0 999999999 15 0 0 88 0.2 0 0 +1.16496E7 12 4.6 60 96142 0 0 300 0 0 0 0 0 0 0 116 1 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.16532E7 11 5 66 95740 0 0 296 0 0 0 0 0 0 0 240 1.5 0 0 5000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.16568E7 13 7 67 95778 0 0 307 0 0 0 0 0 0 0 130 3.6 0 0 4000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.16604E7 11.6 7 73 96229 0 0 301 0 0 0 0 0 0 0 150 3.1 0 0 4000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.1664E7 8 6 87 95683 0 0 285 0 0 0 0 0 0 0 330 1.5 0 0 3000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.16676E7 7 5 87 95663 0 0 280 0 0 0 0 0 0 0 40 1.5 0 0 3000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.16712E7 6.1 3.4 83 96264 0 0 275 0 0 0 0 0 0 0 10 3.1 0 0 3000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.16748E7 6 3 81 95644 0 0 274 0 0 0 0 0 0 0 30 2.6 0 0 3000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.16784E7 6 3 81 95644 0 0 274 0 0 0 0 0 0 0 220 2.1 0 0 3000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.1682E7 5.1 2.5 83 96178 0 0 270 0 0 0 0 0 0 0 240 2.1 0 0 2500 2000 9 999999999 12 0 0 88 0.2 0 0 +1.16856E7 3 1 87 95584 0 0 260 0 0 0 0 0 0 0 76 1 0 0 3000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.16892E7 6 3 81 95644 0 0 274 0 0 0 0 0 0 0 50 2.1 0 0 3000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.16928E7 3.3 1 85 96236 0 0 273 0 0 0 0 0 0 0 270 1.5 3 3 2500 2000 9 999999999 11 0 0 88 0.2 0 0 +1.16964E7 6 2 75 95644 255 1315 273 112 255 64 12525 6652 7125 2205 56 0 0 0 4000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.17E7 10 3 62 95721 481 1336 290 287 528 97 33056 29161 11240 3960 40 2.1 0 0 4000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.17036E7 13 4.1 55 96180 657 1336 322 410 544 143 47545 36855 16609 6151 207 0 5 5 4000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.17072E7 17 5 45 95852 773 1336 332 544 708 134 64678 46932 16055 6307 13 0 2 2 5000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.17108E7 19 5 40 95888 820 1336 331 588 728 141 70185 48861 16905 6724 77 1 0 0 5000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.17144E7 21.7 2.9 29 95979 796 1336 364 495 475 213 57071 37181 24619 9155 130 2.1 6 6 5000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.1718E7 23 1 23 95959 701 1336 344 482 666 133 56712 44910 15697 5986 200 1.5 0 0 7000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.17216E7 23 4 29 95959 542 1336 348 339 580 104 39370 33985 12094 4387 200 1.5 0 0 7000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.17252E7 22.2 3.9 30 95941 330 1336 362 160 323 81 17987 13007 9069 2913 160 2.6 4 4 7000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.17288E7 19 6 43 95888 79 1336 332 21 9 21 2371 0 2317 676 140 3.1 0 0 7000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.17324E7 18 7 49 95870 0 390 329 0 0 0 0 0 0 0 130 2.6 0 0 7000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.1736E7 15.5 6.5 55 96028 0 0 333 0 0 0 0 0 0 0 160 1.5 4 4 6000 2000 9 999999999 18 0 0 88 0.2 0 0 +1.17396E7 15 7 59 95815 0 0 315 0 0 0 0 0 0 0 170 2.1 0 0 6000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.17432E7 12 6 67 95759 0 0 301 0 0 0 0 0 0 0 321 1 0 0 6000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.17468E7 9.9 4.7 70 96017 0 0 308 0 0 0 0 0 0 0 348 0 5 5 5000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.17504E7 9 4 71 95702 0 0 287 0 0 0 0 0 0 0 183 1 0 0 5000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.1754E7 7 3 76 95663 0 0 278 0 0 0 0 0 0 0 40 1.5 0 0 4000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.17576E7 6.3 3.1 80 95928 0 0 291 0 0 0 0 0 0 0 339 1 5 5 4000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.17612E7 6 2 75 95644 0 0 273 0 0 0 0 0 0 0 159 0.5 0 0 4000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.17648E7 5 2 81 95624 0 0 269 0 0 0 0 0 0 0 174 0.5 0 0 4000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.17684E7 4.8 1.5 79 95861 0 0 273 0 0 0 0 0 0 0 20 1.5 1 1 4000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.1772E7 5 1 75 95624 0 0 268 0 0 0 0 0 0 0 40 1.5 0 0 4000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.17756E7 4 1 81 95604 0 0 264 0 0 0 0 0 0 0 310 1.5 0 0 4000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.17792E7 4.1 0.7 78 95866 0 0 283 0 0 0 0 0 0 0 21 1 6 6 4000 7500 9 999999999 10 0 0 88 0.2 0 0 +1.17828E7 6 1 70 95644 251 1298 272 110 211 70 12152 6089 7804 2340 118 1 0 0 4000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.17864E7 10 1 54 95721 476 1336 288 285 447 125 32098 27883 14190 4755 10 1.5 0 0 5000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.179E7 14.8 2.5 43 95854 653 1336 331 382 419 178 43560 31212 20316 7208 360 1.5 6 6 5000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.17936E7 18 3 37 95870 769 1336 324 542 699 140 64280 47488 16640 6498 64 1 0 0 5000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.17972E7 21 3 30 95924 816 1336 338 585 717 147 69664 49377 17611 6961 110 1.5 0 0 5000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.18008E7 22.4 3.3 29 95660 791 1336 368 491 472 212 56577 36863 24531 9108 200 3.1 6 6 5000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.18044E7 23 4 29 95959 696 1336 348 476 673 125 56140 43795 14824 5684 200 4.6 0 0 7000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.1808E7 21 6 38 95924 537 1336 341 334 458 150 37628 30858 16974 5750 160 6.2 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.18116E7 19.5 6.9 44 95798 326 1336 376 84 7 82 9357 271 9200 2935 160 4.1 9 9 8000 2000 9 999999999 18 0 0 88 0.2 0 0 +1.18152E7 17 8 55 95852 76 1336 325 20 11 20 2267 0 2201 645 170 4.1 0 0 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +1.18188E7 16 8 59 95834 0 375 321 0 0 0 0 0 0 0 160 4.1 0 0 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +1.18224E7 14.6 7.9 64 95964 0 0 336 0 0 0 0 0 0 0 150 4.1 6 6 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +1.1826E7 13 8 72 95778 0 0 308 0 0 0 0 0 0 0 150 3.6 0 0 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +1.18296E7 12 8 76 95759 0 0 303 0 0 0 0 0 0 0 190 6.7 0 0 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +1.18332E7 10.3 7.6 83 96062 0 0 313 0 0 0 0 0 0 0 150 3.1 5 5 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +1.18368E7 10 8 87 95721 0 0 295 0 0 0 0 0 0 0 120 4.1 0 0 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +1.18404E7 10 8 87 95721 0 0 295 0 0 0 0 0 0 0 150 1.5 0 0 6000 2000 9 999999999 21 0 0 88 0.2 0 0 +1.1844E7 7.8 6.3 90 96090 0 0 312 0 0 0 0 0 0 0 220 0.5 8 8 6000 2000 9 999999999 18 0 0 88 0.2 0 0 +1.18476E7 7 6 93 95663 0 0 281 0 0 0 0 0 0 0 20 2.1 0 0 5000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.18512E7 8 7 93 95683 0 0 286 0 0 0 0 0 0 0 20 2.1 0 0 5000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.18548E7 7.7 6.7 93 96069 0 0 304 0 0 0 0 0 0 0 310 0.5 6 6 4000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.18584E7 7 5 87 95663 0 0 280 0 0 0 0 0 0 0 220 1.5 0 0 4000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.1862E7 8 7 93 95683 0 0 286 0 0 0 0 0 0 0 135 0 0 0 4000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.18656E7 9 7.3 89 96179 0 0 335 0 0 0 0 0 0 0 120 2.1 10 10 4000 5100 9 999999999 20 0 0 88 0.2 0 0 +1.18692E7 8 7 93 95683 248 1281 330 34 0 34 3291 0 3315 1325 320 2.1 10 10 4000 5100 9 999999999 19 0 0 88 0.2 0 0 +1.18728E7 10 8 87 95721 472 1335 331 144 24 135 16029 1473 15153 4979 310 1.5 9 9 4000 5100 9 999999999 21 0 0 88 0.2 0 0 +1.18764E7 10.9 7.8 81 96244 649 1335 344 135 0 135 13744 0 13861 5872 330 1 10 10 5000 5100 9 999999999 21 0 0 88 0.2 0 0 +1.188E7 12 8 76 95759 764 1335 350 168 0 168 19583 19 19654 7508 190 1.5 10 10 6000 5100 9 999999999 21 0 0 88 0.2 0 0 +1.18836E7 13 8 72 95778 811 1335 355 181 1 181 21195 40 21255 8200 140 2.6 10 10 7000 4500 9 999999999 21 0 0 88 0.2 0 0 +1.18872E7 13 7.1 67 96133 786 1335 354 175 2 173 20394 173 20319 7802 360 2.1 10 10 8000 4500 9 999999999 19 0 0 88 0.2 0 0 +1.18908E7 13 7 67 95778 692 1335 344 242 87 197 27526 6567 22529 8023 10 2.6 9 9 8000 4500 9 999999999 19 0 0 88 0.2 0 0 +1.18944E7 13 8 72 95778 533 1335 326 307 151 246 33071 13123 26724 7422 240 2.6 5 5 6000 2000 9 999999999 21 0 0 88 0.2 0 0 +1.1898E7 13.3 7.2 67 96081 322 1335 346 82 5 81 9192 206 9078 2893 140 2.6 9 9 6000 4500 9 999999999 19 0 0 88 0.2 0 0 +1.19016E7 13 7 67 95778 73 1335 344 10 0 10 976 0 983 374 150 3.6 9 9 6000 4500 9 999999999 19 0 0 88 0.2 0 0 +1.19052E7 12 7 71 95759 0 359 339 0 0 0 0 0 0 0 160 2.6 9 9 6000 4500 9 999999999 19 0 0 88 0.2 0 0 +1.19088E7 11.5 7 74 96359 0 0 346 0 0 0 0 0 0 0 194 1 10 10 8000 3900 9 999999999 19 0 0 88 0.2 0 0 +1.19124E7 11 7 76 95740 0 0 334 0 0 0 0 0 0 0 320 2.1 9 9 8000 4500 9 999999999 19 0 0 88 0.2 0 0 +1.1916E7 11 7 76 95740 0 0 334 0 0 0 0 0 0 0 360 3.6 9 9 6000 4500 9 999999999 19 0 0 88 0.2 0 0 +1.19196E7 10.6 7.3 80 96078 0 0 333 0 0 0 0 0 0 0 50 3.6 9 9 5000 4500 9 999999999 20 0 0 88 0.2 0 0 +1.19232E7 11 7 76 95740 0 0 334 0 0 0 0 0 0 0 30 2.1 9 9 5000 4500 9 999999999 19 0 0 88 0.2 0 0 +1.19268E7 11 7 76 95740 0 0 334 0 0 0 0 0 0 0 85 1 9 9 5000 4500 9 999999999 19 0 0 88 0.2 0 0 +1.19304E7 9.9 6.8 81 96007 0 0 329 0 0 0 0 0 0 0 183 1 9 9 5000 4500 9 999999999 19 0 0 88 0.2 0 0 +1.1934E7 10 7 82 95721 0 0 330 0 0 0 0 0 0 0 253 1 9 9 5000 4500 9 999999999 19 0 0 88 0.2 0 0 +1.19376E7 11 7 76 95740 0 0 334 0 0 0 0 0 0 0 230 2.6 9 9 6000 4500 9 999999999 19 0 0 88 0.2 0 0 +1.19412E7 10.9 7.1 77 96244 0 0 334 0 0 0 0 0 0 0 130 3.1 9 9 6000 4500 9 999999999 19 0 0 88 0.2 0 0 +1.19448E7 11 7 76 95740 0 0 334 0 0 0 0 0 0 0 130 3.1 9 9 6000 4500 9 999999999 19 0 0 88 0.2 0 0 +1.19484E7 11 7 76 95740 0 0 334 0 0 0 0 0 0 0 69 1.5 9 9 6000 4500 9 999999999 19 0 0 88 0.2 0 0 +1.1952E7 10 6.8 80 96425 0 0 339 0 0 0 0 0 0 0 50 3.1 10 10 6000 3300 9 999999999 19 0 0 88 0.2 0 0 +1.19556E7 10 7 82 95721 244 1264 339 33 0 33 3224 0 3248 1297 10 3.1 10 10 5000 3000 9 999999999 19 0 0 88 0.2 0 0 +1.19592E7 11 7 76 95740 468 1335 344 87 0 87 8671 0 8740 3580 320 2.6 10 10 5000 3300 9 999999999 19 0 0 88 0.2 0 0 +1.19628E7 11.5 7.3 75 96293 644 1335 347 134 0 134 13645 0 13761 5822 320 1.5 10 10 5000 3300 9 999999999 20 0 0 88 0.2 0 0 +1.19664E7 12 7 71 95759 760 1335 349 167 0 167 19482 18 19553 7458 210 2.1 10 10 5000 3300 9 999999999 19 0 0 88 0.2 0 0 +1.197E7 14 7 63 95797 806 1335 359 181 1 180 21093 39 21154 8149 250 2.1 10 10 6000 3300 9 999999999 19 0 0 88 0.2 0 0 +1.19736E7 14.4 6.3 58 96074 782 1335 360 174 0 173 20275 29 20340 7792 90 2.6 10 10 6000 3300 9 999999999 18 0 0 88 0.2 0 0 +1.19772E7 15 7 59 95815 687 1335 364 147 0 147 14939 0 15068 6425 210 2.1 10 10 6000 3000 9 999999999 19 0 0 88 0.2 0 0 +1.19808E7 14 7 63 95797 529 1335 359 103 0 103 10351 0 10436 4320 120 5.1 10 10 7000 2400 9 999999999 19 0 0 88 0.2 0 0 +1.19844E7 14.8 5.7 54 95873 319 1335 361 50 0 50 4895 0 4932 1977 230 5.1 10 10 8000 3000 9 999999999 17 0 0 88 0.2 0 0 +1.1988E7 16 5 48 95834 70 1335 366 6 0 6 574 0 578 231 220 3.1 10 10 8000 3000 9 999999999 15 0 0 88 0.2 0 0 +1.19916E7 15 6 55 95815 0 344 362 0 0 0 0 0 0 0 170 6.7 10 10 8000 3000 9 999999999 17 0 0 88 0.2 0 0 +1.19952E7 19.8 3 33 96059 0 0 383 0 0 0 0 0 0 0 132 3.1 10 10 8000 3000 9 999999999 13 0 0 88 0.2 0 0 +1.19988E7 20 2 30 95906 0 0 383 0 0 0 0 0 0 0 150 5.1 10 10 8000 3000 0 99999999 11 0 0 88 0.2 0 0 +1.20024E7 22 1 25 95942 0 0 392 0 0 0 0 0 0 0 350 10.8 10 10 6000 1410 0 99999999 10 0 0 88 0.2 0 0 +1.2006E7 19 6 43 95888 0 0 383 0 0 0 0 0 0 0 330 10.3 10 10 6000 3000 0 99999999 17 0 0 88 0.2 0 0 +1.20096E7 15 9 67 95815 0 0 356 0 0 0 0 0 0 0 350 6.2 9 9 6000 3000 0 19999999 23 0 0 88 0.2 0 0 +1.20132E7 15 9 67 95815 0 0 366 0 0 0 0 0 0 0 360 8.7 10 10 6000 3000 0 19999999 23 0 0 88 0.2 0 0 +1.20168E7 13.8 10.2 79 96252 0 0 362 0 0 0 0 0 0 0 340 5.1 10 10 6000 3000 0 19999999 26 0 0 88 0.2 0 0 +1.20204E7 14 11 82 95797 0 0 364 0 0 0 0 0 0 0 110 2.6 10 10 6000 2400 0 19999999 28 0 0 88 0.2 2 0 +1.2024E7 13 11 88 95778 0 0 358 0 0 0 0 0 0 0 90 1.5 10 10 6000 2400 0 19999999 28 0 0 88 0.2 0.3 0 +1.20276E7 13.8 10.6 81 96176 0 0 362 0 0 0 0 0 0 0 350 6.7 10 10 8000 2400 0 19999999 27 0 0 88 0.2 0 0 +1.20312E7 15 10 72 95815 0 0 367 0 0 0 0 0 0 0 350 9.3 10 10 8000 2400 0 19999999 25 0 0 88 0.2 0 0 +1.20348E7 16 9 63 95834 0 0 371 0 0 0 0 0 0 0 340 9.8 10 10 8000 2400 0 19999999 23 0 0 88 0.2 0 0 +1.20384E7 16.5 8.8 60 96179 0 0 374 0 0 0 0 0 0 0 330 7.7 10 10 8000 3000 0 19999999 23 0 0 88 0.2 0 0 +1.2042E7 17 9 59 95852 240 1247 366 53 0 53 5147 0 5185 1879 330 6.7 9 9 8000 3000 0 19999999 23 0 0 88 0.2 0 0 +1.20456E7 18 9 56 95870 464 1334 371 140 6 138 15589 398 15407 4999 340 7.7 9 9 8000 3000 0 19999999 23 0 0 88 0.2 0 0 +1.20492E7 18.9 8.9 52 96109 640 1334 376 218 39 199 24490 2948 22502 7708 340 4.6 9 9 8000 3000 0 19999999 23 0 0 88 0.2 0 0 +1.20528E7 18 11 64 95870 755 1334 374 270 42 247 30458 3345 27950 9829 120 3.6 9 9 8000 3300 0 19999999 28 0 0 88 0.2 0 0 +1.20564E7 19 10 56 95888 802 1334 356 527 548 198 61045 39912 22999 8727 160 4.6 5 5 8000 2000 0 19999999 25 0 0 88 0.2 0 0 +1.206E7 18.4 11.2 63 96053 778 1334 387 171 3 169 19950 220 19821 7624 120 2.1 10 10 8000 2700 0 19999999 29 0 0 88 0.2 0 0 +1.20636E7 17 12 72 95852 683 1334 380 144 0 144 14650 0 14778 6327 180 4.6 10 10 8000 3300 0 19999999 31 0 0 88 0.2 0 0 +1.20672E7 18 10 59 95870 526 1334 383 101 0 101 10178 0 10262 4257 130 5.1 10 10 8000 2700 0 19999999 25 0 0 88 0.2 0 0 +1.20708E7 15.7 12.2 80 96268 315 1334 374 48 0 48 4745 0 4781 1927 130 3.1 10 10 8000 2700 0 19999999 32 0 0 88 0.2 0 0 +1.20744E7 14 13 94 95797 67 1334 356 9 0 9 888 0 894 342 260 1.5 9 9 8000 3000 0 19999999 34 0 0 88 0.2 0 0 +1.2078E7 14 12 88 95797 0 330 355 0 0 0 0 0 0 0 230 1.5 9 9 8000 3000 0 19999999 31 0 0 88 0.2 0 0 +1.20816E7 13.7 12.2 91 96117 0 0 353 0 0 0 0 0 0 0 261 1 9 9 8000 3300 9 999999999 32 0 0 88 0.2 0 0 +1.20852E7 14 12 88 95797 0 0 355 0 0 0 0 0 0 0 230 3.1 9 9 8000 3000 9 999999999 31 0 0 88 0.2 0 0 +1.20888E7 16 10 68 95834 0 0 362 0 0 0 0 0 0 0 80 2.6 9 9 8000 3300 9 999999999 25 0 0 88 0.2 0 0 +1.20924E7 14 11.2 83 95953 0 0 364 0 0 0 0 0 0 0 280 3.1 10 10 8000 3300 9 999999999 29 0 0 88 0.2 0 0 +1.2096E7 14 12 88 95797 0 0 355 0 0 0 0 0 0 0 40 3.1 9 9 8000 3600 9 999999999 31 0 0 88 0.2 0 0 +1.20996E7 14 11 82 95797 0 0 353 0 0 0 0 0 0 0 34 0.5 9 9 7000 3600 9 999999999 28 0 0 88 0.2 0 0 +1.21032E7 13.2 11 87 95824 0 0 350 0 0 0 0 0 0 0 190 2.1 9 9 9000 3900 9 999999999 28 0 0 88 0.2 0 0 +1.21068E7 13 11 88 95778 0 0 349 0 0 0 0 0 0 0 128 1 9 9 8000 3900 9 999999999 28 0 0 88 0.2 0 0 +1.21104E7 12 11 94 95759 0 0 344 0 0 0 0 0 0 0 340 1.5 9 9 8000 3900 9 999999999 28 0 0 88 0.2 0 0 +1.2114E7 12.5 10.6 88 95773 0 0 346 0 0 0 0 0 0 0 329 1 9 9 8000 4200 9 999999999 27 0 0 88 0.2 0 0 +1.21176E7 12 11 94 95759 0 0 344 0 0 0 0 0 0 0 340 1 9 9 7000 4500 9 999999999 28 0 0 88 0.2 0 0 +1.21212E7 12 11 94 95759 0 0 344 0 0 0 0 0 0 0 274 1.5 9 9 8000 4500 9 999999999 28 0 0 88 0.2 0 0 +1.21248E7 11.8 10.2 90 95609 0 0 342 0 0 0 0 0 0 0 310 2.1 9 9 8000 4500 9 999999999 26 0 0 88 0.2 0 0 +1.21284E7 12 10 88 95759 237 1230 343 51 0 51 5017 0 5054 1836 210 2.1 9 9 8000 4500 9 999999999 26 0 0 88 0.2 0 0 +1.2132E7 14 10 77 95797 461 1334 352 138 6 136 15371 378 15198 4934 90 3.1 9 9 8000 3900 9 999999999 25 0 0 88 0.2 0 0 +1.21356E7 14.1 10.9 81 95917 636 1334 354 215 19 206 24079 1464 23167 7842 250 2.1 9 9 8000 3900 9 999999999 28 0 0 88 0.2 0 0 +1.21392E7 15 10 72 95815 751 1334 357 269 44 244 30304 3545 27658 9725 160 4.1 9 9 8000 3900 9 999999999 25 0 0 88 0.2 0 0 +1.21428E7 15 9 67 95815 798 1334 356 291 63 254 33014 5104 28919 10369 160 2.6 9 9 8000 3900 9 999999999 23 0 0 88 0.2 0 0 +1.21464E7 15.9 8.7 62 95742 773 1334 360 280 62 244 31701 4987 27793 9913 150 5.7 9 9 8000 4500 9 999999999 22 0 0 88 0.2 0 0 +1.215E7 16 8 59 95834 679 1334 360 236 42 215 26599 3250 24346 8412 140 3.6 9 9 8000 1500 9 999999999 21 0 0 88 0.2 0 0 +1.21536E7 15 8 63 95815 522 1334 355 165 29 154 18492 1962 17290 5750 150 5.1 9 9 8000 1500 9 999999999 21 0 0 88 0.2 0 0 +1.21572E7 14.6 8.9 69 95841 312 1334 364 48 0 48 4705 0 4741 1904 160 7.2 10 10 8000 1500 9 999999999 23 0 0 88 0.2 0 0 +1.21608E7 13 10 82 95778 64 1334 357 5 0 5 521 0 524 210 150 5.7 10 10 8000 2400 9 999999999 25 0 0 88 0.2 0 0 +1.21644E7 12 10 88 95759 0 316 352 0 0 0 0 0 0 0 120 6.7 10 10 6000 2400 9 999999999 26 0 0 88 0.2 0 0 +1.2168E7 11.5 10.9 96 96161 0 0 351 0 0 0 0 0 0 0 270 2.1 10 10 5000 1500 0 919999999 28 0 0 88 0.2 6 0 +1.21716E7 11 11 100 95740 0 0 349 0 0 0 0 0 0 0 210 1.5 10 10 5000 1500 0 919999999 28 0 0 88 0.2 6 0 +1.21752E7 11 11 100 95740 0 0 349 0 0 0 0 0 0 0 170 2.1 10 10 5000 1500 0 919999999 28 0 0 88 0.2 0.2 0 +1.21788E7 11.7 11.2 97 96212 0 0 352 0 0 0 0 0 0 0 60 1.5 10 10 5000 1500 0 919999999 29 0 0 88 0.2 0 0 +1.21824E7 12 11 94 95759 0 0 353 0 0 0 0 0 0 0 123 0.5 10 10 7000 1800 0 919999999 28 0 0 88 0.2 0 0 +1.2186E7 12 11 94 95759 0 0 353 0 0 0 0 0 0 0 141 1 10 10 6000 1800 0 919999999 28 0 0 88 0.2 0 0 +1.21896E7 12.2 11.1 93 96146 0 0 355 0 0 0 0 0 0 0 236 1 10 10 6000 1800 0 919999999 29 0 0 88 0.2 0 0 +1.21932E7 12 12 100 95759 0 0 355 0 0 0 0 0 0 0 200 1.5 10 10 6000 1800 0 919999999 31 0 0 88 0.2 0 0 +1.21968E7 12 12 100 95759 0 0 355 0 0 0 0 0 0 0 150 2.1 10 10 7000 2100 0 919999999 31 0 0 88 0.2 0 0 +1.22004E7 12.2 11.5 95 96108 0 0 355 0 0 0 0 0 0 0 154 0.5 10 10 6000 1800 0 919999999 30 0 0 88 0.2 0 0 +1.2204E7 12 12 100 95759 0 0 355 0 0 0 0 0 0 0 300 1.5 10 10 5000 1800 0 919999999 31 0 0 88 0.2 0 0 +1.22076E7 12 12 100 95759 0 0 355 0 0 0 0 0 0 0 281 1 10 10 6000 1800 0 919999999 31 0 0 88 0.2 0 0 +1.22112E7 13 12 94 95778 0 0 350 0 0 0 0 0 0 0 150 2.1 9 9 8000 1800 0 919999999 31 0 0 88 0.2 0 0 +1.22148E7 13 12 94 95778 233 1214 350 50 0 50 4893 0 4929 1795 195 1 9 9 8000 1500 0 919999999 31 0 0 88 0.2 0 0 +1.22184E7 13 12 94 95778 457 1333 350 136 15 131 15170 848 14677 4800 219 0.5 9 9 8000 1800 0 919999999 31 0 0 88 0.2 0 0 +1.2222E7 14.1 12.6 91 96238 632 1333 356 213 13 207 23773 987 23195 7826 37 1 9 9 8000 1500 0 919999999 33 0 0 88 0.2 0 0 +1.22256E7 15 13 88 95815 747 1333 361 266 40 243 29879 3107 27536 9679 206 0 9 9 8000 1500 0 919999999 34 0 0 88 0.2 0 0 +1.22292E7 15 13 88 95815 793 1333 371 175 2 174 20419 164 20345 7862 138 1 10 10 8000 1500 0 919999999 34 0 0 88 0.2 0 0 +1.22328E7 16.2 13.7 85 96154 769 1333 378 168 2 167 19561 102 19547 7516 182 1 10 10 8000 1800 0 919999999 37 0 0 88 0.2 0 0 +1.22364E7 16 14 88 95834 675 1333 367 232 36 214 26048 2699 24112 8351 170 2.6 9 9 8000 1800 0 919999999 38 0 0 88 0.2 0 0 +1.224E7 17 14 82 95852 518 1333 372 162 20 155 18062 1241 17294 5746 150 2.1 9 9 8000 1800 0 919999999 38 0 0 88 0.2 0 0 +1.22436E7 16.4 14.2 87 95997 309 1333 369 77 0 77 7515 0 7573 2731 170 2.6 9 9 8000 1800 0 919999999 39 0 0 88 0.2 0 0 +1.22472E7 16 14 88 95834 61 1333 367 8 0 8 814 0 820 314 150 2.6 9 9 8000 2700 0 919999999 38 0 0 88 0.2 0 0 +1.22508E7 15 14 94 95815 0 303 362 0 0 0 0 0 0 0 160 1 9 9 7000 2700 0 919999999 38 0 0 88 0.2 0 0 +1.22544E7 15.3 14 92 95949 0 0 363 0 0 0 0 0 0 0 0 1 9 9 7000 3000 9 999999999 38 0 0 88 0.2 0 0 +1.2258E7 16 14 88 95834 0 0 367 0 0 0 0 0 0 0 156 1 9 9 7000 3000 9 999999999 38 0 0 88 0.2 0 0 +1.22616E7 15 14 94 95815 0 0 362 0 0 0 0 0 0 0 27 1 9 9 7000 3000 9 999999999 38 0 0 88 0.2 0 0 +1.22652E7 14.2 13.4 95 95975 0 0 357 0 0 0 0 0 0 0 330 1.5 9 9 7000 3600 9 999999999 36 0 0 88 0.2 0 0 +1.22688E7 14 13 94 95797 0 0 356 0 0 0 0 0 0 0 40 1.5 9 9 5000 3600 9 999999999 34 0 0 88 0.2 0 0 +1.22724E7 14 13 94 95797 0 0 356 0 0 0 0 0 0 0 80 1 9 9 5000 3600 9 999999999 34 0 0 88 0.2 0 0 +1.2276E7 13.8 13.1 96 95760 0 0 355 0 0 0 0 0 0 0 77 0 9 9 4000 1500 9 999999999 35 0 0 88 0.2 0 0 +1.22796E7 13 13 100 95778 0 0 351 0 0 0 0 0 0 0 40 1 9 9 4000 1500 9 999999999 34 0 0 88 0.2 0 0 +1.22832E7 13 13 100 95778 0 0 351 0 0 0 0 0 0 0 311 1 9 9 600 4500 0 999999999 34 0 0 88 0.2 0 0 +1.22868E7 12.8 12.4 97 95675 0 0 359 0 0 0 0 0 0 0 20 0.5 10 10 600 3900 0 999999999 32 0 0 88 0.2 0 0 +1.22904E7 13 13 100 95778 0 0 361 0 0 0 0 0 0 0 144 1 10 10 600 3900 0 999999999 34 0 0 88 0.2 0 0 +1.2294E7 13 13 100 95778 0 0 361 0 0 0 0 0 0 0 360 1.5 10 10 600 2000 0 999999999 34 0 0 88 0.2 0 0 +1.22976E7 12.7 12.5 99 95664 0 0 359 0 0 0 0 0 0 0 330 1.5 10 10 400 4500 0 999999999 33 0 0 88 0.2 0 0 +1.23012E7 13.4 12.8 96 95730 230 1197 363 30 0 30 2911 0 2932 1176 242 2 10 10 1200 4500 9 999999999 34 0 0 88 0.2 0 0 +1.23048E7 14 13 94 95797 453 1332 356 135 12 130 14955 683 14565 4757 180 2.6 9 9 2000 3000 0 999999999 34 0 0 88 0.2 0 0 +1.23084E7 15.4 14.2 93 95818 628 1332 364 211 13 205 23486 946 22926 7744 250 2.1 9 9 4000 4500 0 999999999 39 0 0 88 0.2 0 0 +1.2312E7 17 15 88 95852 742 1332 373 263 15 254 29396 1173 28629 9917 185 0.5 9 9 5000 4500 0 999999999 42 0 0 88 0.2 0 0 +1.23156E7 18 15 83 95870 789 1332 378 284 31 266 31971 2431 30103 10631 160 2.6 9 9 6000 1500 0 999999999 42 0 0 88 0.2 0 0 +1.23192E7 20.9 14.1 65 95690 765 1332 393 274 30 256 30748 2402 28954 10165 350 7.2 9 9 8000 1500 0 999999999 38 0 0 88 0.2 0 0 +1.23228E7 21 14 64 95924 671 1332 393 231 14 224 25751 1056 25105 8557 360 7.7 9 9 8000 2000 0 999999999 38 0 0 88 0.2 0 0 +1.23264E7 21 13 60 95924 515 1332 392 161 20 154 17941 1250 17177 5697 340 10.8 9 9 8000 2000 0 999999999 34 0 0 88 0.2 0 0 +1.233E7 19.7 13.6 68 95820 306 1332 386 76 0 76 7415 0 7471 2693 330 8.7 9 9 8000 1500 0 919999999 36 0 0 88 0.2 0 0 +1.23336E7 19 14 73 95888 58 1332 382 8 0 8 779 0 784 301 350 9.3 9 9 8000 1800 0 919999999 38 0 0 88 0.2 0 0 +1.23372E7 17 15 88 95852 0 290 373 0 0 0 0 0 0 0 200 2.6 9 9 8000 1800 0 919999999 42 0 0 88 0.2 0 0 +1.23408E7 16.1 14.9 93 96058 0 0 369 0 0 0 0 0 0 0 120 1.5 9 9 8000 1500 0 919999999 41 0 0 88 0.2 4 0 +1.23444E7 16 15 94 95834 0 0 379 0 0 0 0 0 0 0 150 2.6 10 10 8000 1500 0 919999999 42 0 0 88 0.2 4 0 +1.2348E7 15 15 100 95815 0 0 363 0 0 0 0 0 0 0 140 4.1 9 9 8000 1500 0 919999999 42 0 0 88 0.2 0.6 0 +1.23516E7 15.3 14.5 95 96242 0 0 364 0 0 0 0 0 0 0 130 3.1 9 9 8000 1500 0 919999999 40 0 0 88 0.2 0 0 +1.23552E7 14 13 94 95797 0 0 356 0 0 0 0 0 0 0 140 4.1 9 9 7000 1500 0 919999999 34 0 0 88 0.2 0 0 +1.23588E7 14 13 94 95797 0 0 356 0 0 0 0 0 0 0 120 2.6 9 9 8000 1200 0 919999999 34 0 0 88 0.2 0 0 +1.23624E7 13.8 13 95 96384 0 0 365 0 0 0 0 0 0 0 130 3.6 10 10 7000 1500 0 919999999 34 0 0 88 0.2 0 0 +1.2366E7 14 13 94 95797 0 0 366 0 0 0 0 0 0 0 120 4.1 10 10 8000 1200 0 919999999 34 0 0 88 0.2 0 0 +1.23696E7 13 13 100 95778 0 0 361 0 0 0 0 0 0 0 150 3.6 10 10 8000 1200 0 919999999 34 0 0 88 0.2 0 0 +1.23732E7 13.2 12.1 93 96514 0 0 361 0 0 0 0 0 0 0 130 4.1 10 10 8000 1200 0 919999999 32 0 0 88 0.2 0 0 +1.23768E7 13 12 94 95778 0 0 360 0 0 0 0 0 0 0 140 4.6 10 10 8000 1500 0 919999999 31 0 0 88 0.2 0 0 +1.23804E7 13 12 94 95778 0 0 360 0 0 0 0 0 0 0 110 3.6 10 10 8000 1500 0 919999999 31 0 0 88 0.2 0 0 +1.2384E7 13.6 11.3 86 96806 0 0 352 0 0 0 0 0 0 0 70 2.1 9 9 8000 1500 0 919999999 29 0 0 88 0.2 0 0 +1.23876E7 14 13 94 95797 227 1181 356 48 0 48 4662 0 4696 1715 310 2.1 9 9 8000 1500 0 919999999 34 0 0 88 0.2 0 0 +1.23912E7 15 12 82 95815 449 1332 360 133 25 125 14860 1395 13986 4602 301 0.5 9 9 8000 1500 0 919999999 31 0 0 88 0.2 0 0 +1.23948E7 15.8 12.2 79 96941 624 1332 341 393 482 167 44525 32661 19054 6751 75 1 4 4 8000 2000 0 919999999 32 0 0 88 0.2 0 0 +1.23984E7 17 12 72 95852 738 1332 344 502 720 103 60361 41476 12392 4923 199 1 3 3 8000 2000 0 919999999 31 0 0 88 0.2 0 0 +1.2402E7 18 11 64 95870 785 1332 347 544 748 103 66009 43866 12557 5058 213 1 3 3 8000 2000 0 919999999 28 0 0 88 0.2 0 0 +1.24056E7 19.3 10.5 57 96731 761 1332 353 523 738 102 63301 43230 12326 4932 221 1 3 3 8000 2000 0 919999999 27 0 0 88 0.2 0 0 +1.24092E7 20 9 49 95906 668 1332 355 442 683 99 52706 39742 11908 4614 350 3.1 3 3 8000 2000 0 919999999 23 0 0 88 0.2 0 0 +1.24128E7 21 7 40 95924 511 1332 349 312 562 97 36207 30767 11254 4054 247 1.5 1 1 9900 2000 0 919999999 19 0 0 88 0.2 0 0 +1.24164E7 19.2 11.5 61 96531 303 1332 345 145 299 77 16102 9708 8560 2709 180 6.2 1 1 9900 2000 0 919999999 29 0 0 88 0.2 0 0 +1.242E7 17 13 77 95852 56 1332 357 12 0 12 1165 0 1172 419 210 3.1 7 7 9900 2000 0 919999999 34 0 0 88 0.2 0 0 +1.24236E7 16 12 77 95834 0 278 351 0 0 0 0 0 0 0 220 3.1 7 7 9900 2000 0 919999999 31 0 0 88 0.2 0 0 +1.24272E7 16 11.6 75 96510 0 0 331 0 0 0 0 0 0 0 190 6.2 1 1 9900 2000 9 999999999 30 0 0 88 0.2 0 0 +1.24308E7 15 11 77 95815 0 0 345 0 0 0 0 0 0 0 140 2.1 7 7 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +1.24344E7 14 11 82 95797 0 0 346 0 0 0 0 0 0 0 22 0 8 8 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +1.2438E7 12.4 8.6 78 96443 0 0 306 0 0 0 0 0 0 0 300 1 0 0 9900 2000 9 999999999 22 0 0 88 0.2 0 0 +1.24416E7 12 9 82 95759 0 0 304 0 0 0 0 0 0 0 124 0 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +1.24452E7 10 9 93 95721 0 0 296 0 0 0 0 0 0 0 140 1 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +1.24488E7 10 9.1 94 96349 0 0 296 0 0 0 0 0 0 0 190 1.5 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +1.24524E7 10 9 93 95721 0 0 296 0 0 0 0 0 0 0 275 0.5 0 0 5000 2000 9 999999999 23 0 0 88 0.2 0 0 +1.2456E7 9 8 93 95702 0 0 303 0 0 0 0 0 0 0 180 0.5 3 3 5000 2000 9 999999999 21 0 0 88 0.2 0 0 +1.24596E7 8 7 93 95683 0 0 298 0 0 0 0 0 0 0 83 1.5 3 3 5000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.24632E7 9 9 100 95702 0 0 337 0 0 0 0 0 0 0 30 1 10 10 4300 210 9 999999999 23 0 0 88 0.2 0 0 +1.24668E7 9 9 100 95702 0 0 309 0 0 0 0 0 0 0 271 1 5 5 2000 2000 9 999999999 23 0 0 88 0.2 0 0 +1.24704E7 9.7 9.4 98 96221 0 0 315 0 0 0 0 0 0 0 40 2.1 6 6 800 90 0 999999999 24 0 0 88 0.2 0 0 +1.2474E7 9 8 93 95702 223 1165 335 38 0 38 3761 0 3789 1442 151 1.5 10 10 300 2000 0 999999999 21 0 0 88 0.2 0 0 +1.24776E7 10 10 100 95721 446 1331 343 81 0 81 8026 0 8091 3311 33 1 10 10 200 60 0 999999999 26 0 0 88 0.2 0 0 +1.24812E7 11 10.6 97 96274 620 1331 348 127 0 127 12859 0 12969 5481 30 1.5 10 10 1000 90 0 999999999 27 0 0 88 0.2 0 0 +1.24848E7 12 11 94 95759 734 1331 353 196 9 191 22447 628 22002 8124 217 1 10 10 1500 2000 0 999999999 28 0 0 88 0.2 0 0 +1.24884E7 14 12 88 95797 781 1331 355 282 71 240 32010 5560 27412 9890 30 1.5 9 9 4000 7500 0 999999999 31 0 0 88 0.2 0 0 +1.2492E7 16.2 11.7 75 96098 757 1331 365 271 15 262 30421 1270 29602 10249 190 1 9 9 6000 7500 0 999999999 30 0 0 88 0.2 0 0 +1.24956E7 18 12 68 95870 664 1331 375 228 14 221 25497 1078 24851 8441 170 2.1 9 9 7000 2000 0 999999999 31 0 0 88 0.2 0 0 +1.24992E7 18 11 64 95870 508 1331 374 159 20 151 17703 1262 16949 5604 180 3.1 9 9 8000 2000 0 999999999 28 0 0 88 0.2 0 0 +1.25028E7 18 11.5 66 96045 300 1331 374 74 0 74 7240 0 7295 2625 150 2.6 9 9 8000 4500 0 999999999 29 0 0 88 0.2 0 0 +1.25064E7 16 12 77 95834 54 1331 365 7 0 7 716 0 721 277 170 3.1 9 9 8000 4500 0 999999999 31 0 0 88 0.2 0 0 +1.251E7 14 12 88 95797 0 267 335 0 0 0 0 0 0 0 160 4.1 5 5 8000 2000 0 999999999 31 0 0 88 0.2 0 0 +1.25136E7 13.2 11.2 88 96117 0 0 330 0 0 0 0 0 0 0 150 3.6 5 5 8000 2000 9 999999999 29 0 0 88 0.2 0 0 +1.25172E7 13 11 88 95778 0 0 311 0 0 0 0 0 0 0 140 3.1 0 0 7000 2000 9 999999999 28 0 0 88 0.2 0 0 +1.25208E7 12 10 88 95759 0 0 305 0 0 0 0 0 0 0 129 1 0 0 6000 2000 9 999999999 26 0 0 88 0.2 0 0 +1.25244E7 11.1 9.7 91 96163 0 0 301 0 0 0 0 0 0 0 20 1.5 0 0 4000 2000 9 999999999 25 0 0 88 0.2 0 0 +1.2528E7 9 9 100 95702 0 0 337 0 0 0 0 0 0 0 320 1.5 10 10 400 2000 9 999999999 23 0 0 88 0.2 0 0 +1.25316E7 9 9 100 95702 0 0 309 0 0 0 0 0 0 0 104 0.5 5 5 500 2000 0 999999999 23 0 0 88 0.2 0 0 +1.25352E7 9.1 8.7 97 96068 0 0 309 0 0 0 0 0 0 0 94 0.5 5 5 800 2000 0 999999999 23 0 0 88 0.2 0 0 +1.25388E7 9 9 100 95702 0 0 292 0 0 0 0 0 0 0 227 1 0 0 500 2000 0 999999999 23 0 0 88 0.2 0 0 +1.25424E7 9 8 93 95702 0 0 326 0 0 0 0 0 0 0 250 1.5 9 9 1600 5100 0 999999999 21 0 0 88 0.2 0 0 +1.2546E7 10.1 9.5 96 96021 0 0 314 0 0 0 0 0 0 0 110 2.6 5 5 1600 2000 0 999999999 24 0 0 88 0.2 0 0 +1.25496E7 10 9 93 95721 0 0 296 0 0 0 0 0 0 0 240 2.1 0 0 1600 2000 0 999999999 23 0 0 88 0.2 0 0 +1.25532E7 10 9 93 95721 0 0 332 0 0 0 0 0 0 0 131 1 9 9 900 6000 0 999999999 23 0 0 88 0.2 0 0 +1.25568E7 10 9 93 95721 0 0 341 0 0 0 0 0 0 0 137 0.5 10 10 400 60 0 999999999 23 0 0 88 0.2 0 0 +1.25604E7 10 10 100 95721 220 1150 343 28 0 28 2740 0 2760 1104 210 1.5 10 10 800 2000 0 999999999 26 0 0 88 0.2 0 0 +1.2564E7 11 10 94 95740 442 1331 347 80 0 80 7945 0 8008 3275 180 2.6 10 10 1500 60 0 999999999 26 0 0 88 0.2 0 0 +1.25676E7 11.4 10.4 94 96263 616 1331 350 126 0 126 12769 0 12878 5437 130 4.1 10 10 3000 150 0 999999999 27 0 0 88 0.2 0 0 +1.25712E7 12 10 88 95759 731 1331 343 260 42 236 29266 3384 26785 9377 290 4.6 9 9 2000 150 0 999999999 26 0 0 88 0.2 0 0 +1.25748E7 13 11 88 95778 777 1331 349 281 31 263 31651 2572 29756 10445 340 3.1 9 9 3000 4500 0 999999999 28 0 0 88 0.2 0 0 +1.25784E7 13.4 10.9 85 96017 754 1331 350 270 44 245 30451 3522 27792 9793 40 2.6 9 9 3000 300 0 999999999 28 0 0 88 0.2 0 0 +1.2582E7 14 11 82 95797 661 1331 353 227 14 220 25390 1091 24742 8390 180 5.1 9 9 3000 600 0 999999999 28 0 0 88 0.2 0 0 +1.25856E7 13 11 88 95778 505 1331 349 158 26 148 17590 1630 16583 5503 130 7.7 9 9 4000 450 0 999999999 28 0 0 88 0.2 0 0 +1.25892E7 12.2 10.2 88 96231 297 1331 354 45 0 45 4376 0 4409 1770 190 4.1 10 10 4000 3600 0 999999999 26 0 0 88 0.2 0 0 +1.25928E7 12 11 94 95759 51 1331 353 4 0 4 420 0 423 170 150 1 10 10 4000 3600 0 999999999 28 0 0 88 0.2 0 0 +1.25964E7 12 10 88 95759 0 256 343 0 0 0 0 0 0 0 190 1.5 9 9 4000 3600 0 999999999 26 0 0 88 0.2 0 0 +1.26E7 11.8 10 89 96006 0 0 342 0 0 0 0 0 0 0 70 1 9 9 4000 4500 9 999999999 26 0 0 88 0.2 0 0 +1.26036E7 11 10 94 95740 0 0 338 0 0 0 0 0 0 0 210 2.1 9 9 4000 4500 9 999999999 26 0 0 88 0.2 0 0 +1.26072E7 12 10 88 95759 0 0 343 0 0 0 0 0 0 0 200 3.1 9 9 5000 4500 9 999999999 26 0 0 88 0.2 0 0 +1.26108E7 10.9 9.5 91 96093 0 0 337 0 0 0 0 0 0 0 180 3.6 9 9 5000 4500 9 999999999 24 0 0 88 0.2 0 0 +1.26144E7 11 9 87 95740 0 0 337 0 0 0 0 0 0 0 160 2.1 9 9 5000 4500 9 999999999 23 0 0 88 0.2 0 0 +1.2618E7 11 9 87 95740 0 0 337 0 0 0 0 0 0 0 140 2.1 9 9 5000 4500 9 999999999 23 0 0 88 0.2 0 0 +1.26216E7 10.7 9.3 91 96032 0 0 345 0 0 0 0 0 0 0 120 3.1 10 10 5000 4500 9 999999999 24 0 0 88 0.2 0 0 +1.26252E7 11 9 87 95740 0 0 346 0 0 0 0 0 0 0 20 1 10 10 6000 570 9 999999999 23 0 0 88 0.2 0 0 +1.26288E7 11 9 87 95740 0 0 346 0 0 0 0 0 0 0 280 2.1 10 10 6000 450 9 999999999 23 0 0 88 0.2 0 0 +1.26324E7 10.5 9.3 92 95953 0 0 344 0 0 0 0 0 0 0 70 1.5 10 10 5000 450 9 999999999 24 0 0 88 0.2 0 0 +1.2636E7 11 9 87 95740 0 0 346 0 0 0 0 0 0 0 170 2.1 10 10 5000 450 9 999999999 23 0 0 88 0.2 0 0 +1.26396E7 11 9 87 95740 0 0 337 0 0 0 0 0 0 0 330 2.6 9 9 5000 390 9 999999999 23 0 0 88 0.2 0 0 +1.26432E7 10.9 9.1 89 95979 0 0 346 0 0 0 0 0 0 0 190 3.1 10 10 5000 390 9 999999999 23 0 0 88 0.2 0 0 +1.26468E7 11 9 87 95740 217 1134 346 27 0 27 2684 0 2703 1081 290 2.1 10 10 5000 3900 9 999999999 23 0 0 88 0.2 0 0 +1.26504E7 11 9 87 95740 439 1331 346 79 0 79 7873 0 7936 3241 150 3.1 10 10 5000 390 9 999999999 23 0 0 88 0.2 0 0 +1.2654E7 10.9 9.4 90 96036 613 1331 346 126 0 126 12693 0 12801 5397 170 2.6 10 10 5000 390 0 919999999 24 0 0 88 0.2 0 0 +1.26576E7 11 10 94 95740 727 1331 347 157 0 157 18305 2 18384 6981 200 2.6 10 10 4000 1800 0 919999999 26 0 0 88 0.2 0 0 +1.26612E7 12 10 88 95759 774 1331 352 171 0 170 19892 23 19960 7659 18 1 10 10 4000 2100 0 919999999 26 0 0 88 0.2 0 0 +1.26648E7 11.9 9.8 87 95961 750 1331 352 164 0 164 19097 13 19170 7317 80 3.1 10 10 4000 2100 0 919999999 25 0 0 88 0.2 0 0 +1.26684E7 11 10 94 95740 657 1331 347 138 0 138 13986 0 14107 6002 140 3.6 10 10 4000 2100 0 919999999 26 0 0 88 0.2 0 0 +1.2672E7 11 10 94 95740 502 1331 338 157 27 146 17489 1735 16420 5447 210 1.5 9 9 5000 2100 0 919999999 26 0 0 88 0.2 0 0 +1.26756E7 10.7 9.7 94 95919 295 1331 346 44 0 44 4323 0 4355 1748 35 1 10 10 4000 1800 0 919999999 25 0 0 88 0.2 0 0 +1.26792E7 11 10 94 95740 49 1331 347 4 0 4 403 0 406 163 130 1.5 10 10 4000 1500 0 919999999 26 0 0 88 0.2 0 0 +1.26828E7 11 10 94 95740 0 245 338 0 0 0 0 0 0 0 160 4.6 9 9 5000 1800 0 919999999 26 0 0 88 0.2 0 0 +1.26864E7 10.9 9.9 94 95960 0 0 337 0 0 0 0 0 0 0 110 2.6 9 9 5000 1500 0 919999999 25 0 0 88 0.2 5 0 +1.269E7 11 10 94 95740 0 0 338 0 0 0 0 0 0 0 130 1.5 9 9 4000 1500 0 919999999 26 0 0 88 0.2 5 0 +1.26936E7 11 10 94 95740 0 0 338 0 0 0 0 0 0 0 223 1 9 9 4000 1200 0 919999999 26 0 0 88 0.2 5 0 +1.26972E7 10.7 10 95 95994 0 0 329 0 0 0 0 0 0 0 190 5.1 8 8 5000 2000 0 919999999 26 0 0 88 0.2 5 0 +1.27008E7 10 9 93 95721 0 0 313 0 0 0 0 0 0 0 130 5.1 5 5 5000 2000 0 919999999 23 0 0 88 0.2 0.3 0 +1.27044E7 11 10 94 95740 0 0 338 0 0 0 0 0 0 0 140 3.6 9 9 5000 1500 0 919999999 26 0 0 88 0.2 0 0 +1.2708E7 10.4 9.7 95 96045 0 0 335 0 0 0 0 0 0 0 170 3.1 9 9 5000 1500 0 919999999 25 0 0 88 0.2 0 0 +1.27116E7 10 10 100 95721 0 0 333 0 0 0 0 0 0 0 150 2.1 9 9 5000 1500 0 919999999 26 0 0 88 0.2 0 0 +1.27152E7 10 9 93 95721 0 0 332 0 0 0 0 0 0 0 130 1.5 9 9 5000 450 0 919999999 23 0 0 88 0.2 0 0 +1.27188E7 9.9 9.4 97 95922 0 0 332 0 0 0 0 0 0 0 230 2.6 9 9 4000 450 0 919999999 24 0 0 88 0.2 0 0 +1.27224E7 10 9 93 95721 0 0 332 0 0 0 0 0 0 0 130 2.1 9 9 4000 450 0 919999999 23 0 0 88 0.2 0 0 +1.2726E7 10 10 100 95721 0 0 333 0 0 0 0 0 0 0 100 1.5 9 9 4000 450 0 919999999 26 0 0 88 0.2 0 0 +1.27296E7 9.9 9.3 96 95932 0 0 341 0 0 0 0 0 0 0 220 1.5 10 10 4000 600 0 919999999 24 0 0 88 0.2 0 0 +1.27332E7 10 9 93 95721 214 1119 332 44 0 44 4301 0 4332 1580 260 1.5 9 9 4000 1500 0 919999999 23 0 0 88 0.2 0 0 +1.27368E7 10 10 100 95721 435 1330 343 78 0 78 7766 0 7828 3198 150 2.6 10 10 4000 510 0 919999999 26 0 0 88 0.2 0 0 +1.27404E7 10.1 9.4 95 95936 609 1330 333 204 36 188 22907 2656 21153 7199 140 3.1 9 9 8000 300 0 919999999 24 0 0 88 0.2 0 0 +1.2744E7 11 10 94 95740 723 1330 347 156 0 156 18187 16 18251 6926 220 2.1 10 10 6000 450 0 919999999 26 0 0 88 0.2 0 0 +1.27476E7 11 10 94 95740 770 1330 347 170 0 169 19772 22 19840 7608 190 2.1 10 10 4000 300 0 919999999 26 0 0 88 0.2 0 0 +1.27512E7 10.9 10.1 95 95866 747 1330 347 163 0 163 18970 11 19044 7266 70 1.5 10 10 4000 360 0 919999999 26 0 0 88 0.2 0 0 +1.27548E7 12 10 88 95759 654 1330 352 137 0 137 13895 0 14015 5960 67 1 10 10 7000 300 0 919999999 26 0 0 88 0.2 0 0 +1.27584E7 11 10 94 95740 499 1330 347 95 0 95 9482 0 9559 3948 57 1 10 10 5000 300 0 919999999 26 0 0 88 0.2 0 0 +1.2762E7 10.4 9 91 95951 292 1330 343 43 0 43 4275 0 4307 1727 210 2.1 10 10 5000 450 0 919999999 23 0 0 88 0.2 0 0 +1.27656E7 10 8 87 95721 47 1330 340 4 0 4 388 0 391 157 260 2.6 10 10 8000 900 0 919999999 21 0 0 88 0.2 0 0 +1.27692E7 8 8 100 95683 0 235 331 0 0 0 0 0 0 0 170 4.6 10 10 8000 900 0 919999999 21 0 0 88 0.2 0 0 +1.27728E7 7.8 5.1 83 96090 0 0 327 0 0 0 0 0 0 0 180 4.6 10 10 8000 600 9 999999999 16 0 0 88 0.2 5 0 +1.27764E7 7 6 93 95663 0 0 315 0 0 0 0 0 0 0 160 3.1 9 9 8000 1500 9 999999999 17 0 0 88 0.2 5 0 +1.278E7 8 5 81 95683 0 0 318 0 0 0 0 0 0 0 180 5.1 9 9 8000 1200 0 919999999 16 0 0 88 0.2 0.4 0 +1.27836E7 7 5.7 91 96234 0 0 315 0 0 0 0 0 0 0 140 4.1 9 9 8000 1200 0 919999999 17 0 0 88 0.2 0 0 +1.27872E7 7 5 87 95663 0 0 314 0 0 0 0 0 0 0 130 3.6 9 9 8000 600 0 919999999 16 0 0 88 0.2 0 0 +1.27908E7 7 5 87 95663 0 0 314 0 0 0 0 0 0 0 140 4.1 9 9 8000 1200 0 919999999 16 0 0 88 0.2 0 0 +1.27944E7 7.2 4.2 81 96352 0 0 314 0 0 0 0 0 0 0 140 3.6 9 9 8000 600 0 919999999 14 0 0 88 0.2 0 0 +1.2798E7 7 4 81 95663 0 0 313 0 0 0 0 0 0 0 100 3.1 9 9 8000 600 0 919999999 14 0 0 88 0.2 0 0 +1.28016E7 7 4 81 95663 0 0 313 0 0 0 0 0 0 0 90 2.6 9 9 8000 600 0 919999999 14 0 0 88 0.2 0 0 +1.28052E7 7 4 81 95663 0 0 313 0 0 0 0 0 0 0 88 1 9 9 8000 600 0 919999999 14 0 0 88 0.2 0 0 +1.28088E7 6 5 93 95644 0 0 309 0 0 0 0 0 0 0 310 1.5 9 9 8000 600 0 919999999 16 0 0 88 0.2 0 0 +1.28124E7 6 5 93 95644 0 0 309 0 0 0 0 0 0 0 10 1 9 9 8000 900 0 919999999 16 0 0 88 0.2 0 0 +1.2816E7 5.3 4.3 93 96541 0 0 289 0 0 0 0 0 0 0 70 1.5 5 5 8000 2000 0 919999999 15 0 0 88 0.2 0 0 +1.28196E7 5 4 93 95624 211 1104 304 43 0 43 4245 0 4276 1555 274 1 9 9 7000 1200 0 919999999 14 0 0 88 0.2 0 0 +1.28232E7 7 5 87 95663 432 1330 314 128 13 123 14241 794 13811 4469 180 1 9 9 8000 900 0 919999999 16 0 0 88 0.2 0 0 +1.28268E7 8.7 4.3 74 96655 605 1330 321 204 20 196 22886 1509 22000 7362 190 1.5 9 9 8000 900 0 919999999 15 0 0 88 0.2 0 0 +1.28304E7 9 6 81 95702 720 1330 324 256 44 232 28932 3599 26371 9192 170 3.1 9 9 8000 750 0 919999999 17 0 0 88 0.2 0 0 +1.2834E7 10 3 62 95721 767 1330 325 280 64 243 31760 5337 27708 9846 19 1.5 9 9 8000 750 0 919999999 13 0 0 88 0.2 0 0 +1.28376E7 10.6 1.8 54 96512 743 1330 327 269 46 244 30444 3840 27712 9678 270 1.5 9 9 8000 900 0 919999999 11 0 0 88 0.2 0 0 +1.28412E7 11 4 62 95740 651 1330 313 407 459 182 46210 34260 20753 7335 220 2.6 5 5 8000 2000 0 919999999 14 0 0 88 0.2 0 0 +1.28448E7 11 4 62 95740 496 1330 313 281 457 110 32135 26759 12673 4435 180 4.1 5 5 8000 2000 0 919999999 14 0 0 88 0.2 0 0 +1.28484E7 10.3 3.5 63 96535 290 1330 304 136 309 69 15252 9903 7726 2461 220 4.1 3 3 8000 2000 0 919999999 13 0 0 88 0.2 0 0 +1.2852E7 9 3 66 95702 45 1330 298 12 0 12 1177 0 1184 407 210 2.6 3 3 8000 2000 0 919999999 13 0 0 88 0.2 0 0 +1.28556E7 8 4 76 95683 0 226 306 0 0 0 0 0 0 0 180 2.1 7 7 9900 2000 0 919999999 14 0 0 88 0.2 0 0 +1.28592E7 6.6 3.6 81 96633 0 0 277 0 0 0 0 0 0 0 359 1 0 0 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +1.28628E7 7 3 76 95663 0 0 300 0 0 0 0 0 0 0 111 1 7 7 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +1.28664E7 6 3 81 95644 0 0 301 0 0 0 0 0 0 0 137 1 8 8 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +1.287E7 4.5 2.8 89 96751 0 0 268 0 0 0 0 0 0 0 210 1.5 0 0 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +1.28736E7 4 2 87 95604 0 0 298 0 0 0 0 0 0 0 108 0.5 9 9 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +1.28772E7 3 2 93 95584 0 0 261 0 0 0 0 0 0 0 30 2.1 0 0 8000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.28808E7 2.6 2.3 98 96769 0 0 260 0 0 0 0 0 0 0 40 2.1 0 0 8000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.28844E7 2 1 93 95564 0 0 257 0 0 0 0 0 0 0 220 1.5 0 0 6000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.2888E7 2 1 93 95564 0 0 257 0 0 0 0 0 0 0 244 0.5 0 0 5000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.28916E7 -0.1 -0.4 98 96723 0 0 248 0 0 0 0 0 0 0 280 1.5 0 0 800 2000 0 999999999 9 0 0 88 0.207 0 0 +1.28952E7 0 0 100 95523 0 0 248 0 0 0 0 0 0 0 60 1.5 0 0 800 2000 0 999999999 10 0 0 88 0.2 0 0 +1.28988E7 -1 -1 100 95503 0 0 244 0 0 0 0 0 0 0 293 1 0 0 2000 2000 0 999999999 9 0 0 88 0.267 0 0 +1.29024E7 0.6 -0.2 94 96672 0 0 250 0 0 0 0 0 0 0 223 0.5 0 0 2000 2000 0 999999999 9 0 0 88 0.2 0 0 +1.2906E7 0 -1 92 95523 208 1089 248 83 170 56 9174 2866 6259 1861 72 0.5 0 0 2000 2000 0 999999999 9 0 0 88 0.2 0 0 +1.29096E7 1 1 100 95544 429 1329 253 246 412 114 27701 23825 12811 4213 169 1 0 0 900 2000 0 999999999 11 0 0 88 0.2 0 0 +1.29132E7 5.3 2.9 84 96729 602 1329 271 394 581 131 45569 38187 15203 5537 129 1 0 0 7000 2000 0 999999999 13 0 0 88 0.2 0 0 +1.29168E7 8 4 76 95683 716 1329 306 407 356 215 46180 28278 24517 8703 233 0 7 7 9900 2000 0 999999999 14 0 0 88 0.2 0 0 +1.29204E7 11 3 58 95740 763 1329 309 526 639 159 61704 45200 18703 7195 141 1 4 4 9900 2000 0 999999999 13 0 0 88 0.2 0 0 +1.2924E7 12.6 0.7 44 96531 740 1329 298 520 781 85 63801 47101 10446 4170 270 1.5 0 0 9900 2000 0 999999999 10 0 0 88 0.2 0 0 +1.29276E7 14 -2 32 95797 648 1329 301 439 712 92 52691 43277 11036 4254 6 0.5 0 0 9900 2000 0 999999999 8 0 0 88 0.2 0 0 +1.29312E7 14 -2 32 95797 494 1329 301 303 542 101 34938 31668 11728 4145 93 1 0 0 9900 2000 0 999999999 8 0 0 88 0.2 0 0 +1.29348E7 14.6 -1.8 32 96493 288 1329 304 138 268 80 15263 10112 8875 2715 283 1 0 0 9900 2000 0 999999999 8 0 0 88 0.2 0 0 +1.29384E7 13 1 44 95778 43 1329 306 12 0 12 1152 0 1160 398 280 1.5 1 1 9900 2000 0 999999999 10 0 0 88 0.2 0 0 +1.2942E7 9 4 71 95702 0 217 307 0 0 0 0 0 0 0 84 1 6 6 9900 2000 0 999999999 14 0 0 88 0.2 0 0 +1.29456E7 7.3 2.6 72 96486 0 0 279 0 0 0 0 0 0 0 275 1 0 0 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +1.29492E7 6 2 75 95644 0 0 295 0 0 0 0 0 0 0 10 1.5 7 7 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +1.29528E7 7 2 70 95663 0 0 296 0 0 0 0 0 0 0 360 1.5 6 6 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +1.29564E7 3.5 1.3 85 96476 0 0 263 0 0 0 0 0 0 0 60 1.5 0 0 6000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.296E7 5 1 75 95624 0 0 268 0 0 0 0 0 0 0 276 1 0 0 5000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.29636E7 3 1 87 95584 0 0 260 0 0 0 0 0 0 0 121 0.5 0 0 5000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.29672E7 1.2 -0.1 91 96392 0 0 253 0 0 0 0 0 0 0 166 1 0 0 5000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.29708E7 1 0 93 95544 0 0 252 0 0 0 0 0 0 0 50 1.5 0 0 5000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.29744E7 1 0 93 95544 0 0 252 0 0 0 0 0 0 0 30 1.5 0 0 5000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.2978E7 0.1 -1.1 91 96228 0 0 248 0 0 0 0 0 0 0 14 1 0 0 4000 2000 9 999999999 9 0 0 88 0.2 0 0 +1.29816E7 -1 -2 92 95503 0 0 243 0 0 0 0 0 0 0 86 1 0 0 4000 2000 9 999999999 8 0 0 88 0.267 0 0 +1.29852E7 -1 -2 92 95503 0 0 243 0 0 0 0 0 0 0 184 1 0 0 4000 2000 9 999999999 8 0 0 88 0.267 0 0 +1.29888E7 -0.5 -1.7 91 96291 0 0 256 0 0 0 0 0 0 0 323 0 3 3 4000 2000 9 999999999 8 0 0 88 0.233 0 0 +1.29924E7 2 -1 80 95564 205 1075 255 81 166 56 8972 2650 6168 1832 195 1 0 0 5000 2000 9 999999999 9 0 0 88 0.2 0 0 +1.2996E7 5 0 70 95624 425 1329 267 244 441 103 27660 24339 11737 3929 13 0 0 0 8000 2000 9 999999999 9 0 0 88 0.2 0 0 +1.29996E7 7.9 1 62 96252 599 1329 296 365 435 169 41372 32011 19257 6658 350 1.5 5 5 8000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.30032E7 11 3 58 95740 713 1329 294 493 678 130 58316 44959 15369 5923 121 1 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.30068E7 14 0 38 95797 760 1329 321 501 503 213 57514 40230 24607 8980 306 0.5 5 5 8000 2000 9 999999999 9 0 0 88 0.2 0 0 +1.30104E7 15.3 -3.2 27 96100 737 1329 343 269 29 253 30293 2504 28653 9845 295 0 9 9 8000 7500 9 999999999 7 0 0 88 0.2 0 0 +1.3014E7 16 0 34 95834 645 1329 350 225 19 216 25181 1517 24298 8160 190 2.1 9 9 8000 7500 9 999999999 9 0 0 88 0.2 0 0 +1.30176E7 15 0 36 95815 491 1329 345 155 41 140 17383 2702 15765 5224 200 2.1 9 9 8000 7500 9 999999999 9 0 0 88 0.2 0 0 +1.30212E7 14.4 4.2 50 96187 285 1329 347 70 0 70 6857 0 6907 2470 170 1.5 9 9 8000 7500 9 999999999 14 0 0 88 0.2 0 0 +1.30248E7 14 1 41 95797 42 1329 323 11 0 11 1031 0 1038 364 130 1.5 5 5 8000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.30284E7 8.6 2 64 95846 0 209 314 0 0 0 0 0 0 0 182 0.6 5 5 8000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.3032E7 6.9 2.3 72 95997 0 0 294 0 0 0 0 0 0 0 100 0.8 3 3 8000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.30356E7 6.1 2 75 95829 0 0 282 0 0 0 0 0 0 0 114 0.5 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.30392E7 6.1 2.2 76 95829 0 0 273 0 0 0 0 0 0 0 130 0.5 0 0 8000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.30428E7 6.2 2.5 77 95987 0 0 282 0 0 0 0 0 0 0 134 0.8 3 3 8000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.30464E7 6.3 3 79 95808 0 0 268 0 0 0 0 0 0 0 144 1.3 0 0 8000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.305E7 6.3 3.5 82 95808 0 0 283 0 0 0 0 0 0 0 142 1 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.30536E7 5.6 3.2 85 95963 0 0 287 0 0 0 0 0 0 0 115 1.1 3 3 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.30572E7 5 3.2 88 95795 0 0 275 0 0 0 0 0 0 0 125 1.1 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.30608E7 4.2 3 92 95780 0 0 270 0 0 0 0 0 0 0 205 0.8 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.30644E7 4 2.8 92 95968 0 0 281 0 0 0 0 0 0 0 216 0.9 3 3 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.3068E7 4.3 3.1 92 95802 0 0 266 0 0 0 0 0 0 0 224 1 0 0 6000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.30716E7 3 3 100 95584 0 0 262 0 0 0 0 0 0 0 360 1 0 0 5000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.30752E7 4.2 2.5 89 96377 0 0 285 0 0 0 0 0 0 0 131 0.5 6 6 3000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.30788E7 6 4 87 95644 199 1047 275 77 179 50 8558 1885 5603 1694 170 1.5 0 0 4000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.30824E7 9 6 81 95702 419 1328 289 237 470 89 27073 22940 10176 3490 190 1.5 0 0 5000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.3086E7 9 6 81 95702 592 1328 289 384 658 90 45563 37230 10743 4062 180 2.6 0 0 5000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.30896E7 12 7 71 95759 707 1328 302 485 741 90 58732 43198 10990 4341 190 3.1 0 0 7000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.30932E7 14 8 67 95797 754 1328 312 527 766 92 64221 44806 11244 4506 170 3.1 0 0 6000 2000 9 999999999 21 0 0 88 0.2 0 0 +1.30968E7 16.3 7.9 57 96251 731 1328 336 500 728 99 60398 43278 11965 4746 190 4.1 3 3 7000 2000 9 999999999 21 0 0 88 0.2 0 0 +1.31004E7 17 8 55 95852 640 1328 325 425 692 91 50798 39352 10957 4225 180 4.6 0 0 7000 2000 9 999999999 21 0 0 88 0.2 0 0 +1.3104E7 15 8 63 95815 487 1328 316 292 510 105 33435 28197 12104 4248 150 4.1 0 0 6000 2000 9 999999999 21 0 0 88 0.2 0 0 +1.31076E7 11.9 8.1 78 96168 282 1328 321 122 232 73 13579 7151 8143 2538 160 5.1 5 5 5000 2000 9 999999999 21 0 0 88 0.2 0 0 +1.31112E7 10 8 87 95721 39 1328 295 11 0 11 1016 0 1023 357 160 5.1 0 0 4000 2000 9 999999999 21 0 0 88 0.2 0 0 +1.31148E7 9 7 87 95702 0 195 290 0 0 0 0 0 0 0 150 5.7 0 0 4000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.31184E7 8.4 6.6 88 96337 0 0 292 0 0 0 0 0 0 0 150 4.1 1 1 4000 2000 9 999999999 18 0 0 88 0.2 0 0 +1.3122E7 8 7 93 95683 0 0 286 0 0 0 0 0 0 0 140 2.6 0 0 4000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.31256E7 8 6 87 95683 0 0 319 0 0 0 0 0 0 0 295 1.5 9 9 4000 450 0 999999999 17 0 0 88 0.2 0 0 +1.31292E7 7.1 6.1 93 96312 0 0 324 0 0 0 0 0 0 0 230 1.5 10 10 3000 210 0 999999999 17 0 0 88 0.2 0 0 +1.31328E7 8 7 93 95683 0 0 330 0 0 0 0 0 0 0 220 1.5 10 10 4000 210 0 999999999 19 0 0 88 0.2 0 0 +1.31364E7 8 6 87 95683 0 0 329 0 0 0 0 0 0 0 186 0 10 10 4000 240 0 999999999 17 0 0 88 0.2 0 0 +1.314E7 7.9 6.9 93 96299 0 0 329 0 0 0 0 0 0 0 300 2.1 10 10 4000 240 0 999999999 19 0 0 88 0.2 0 0 +1.31436E7 8 7 93 95683 0 0 330 0 0 0 0 0 0 0 73 1 10 10 4000 210 0 999999999 19 0 0 88 0.2 0 0 +1.31472E7 8 7 93 95683 0 0 330 0 0 0 0 0 0 0 250 1 10 10 3000 210 0 999999999 19 0 0 88 0.2 0 0 +1.31508E7 8.2 7.3 94 96286 0 0 331 0 0 0 0 0 0 0 267 0 10 10 3000 180 0 999999999 20 0 0 88 0.2 0 0 +1.31544E7 8 7 93 95683 0 0 330 0 0 0 0 0 0 0 250 1 10 10 3000 180 0 999999999 19 0 0 88 0.2 0 0 +1.3158E7 8 7 93 95683 0 0 330 0 0 0 0 0 0 0 10 1 10 10 3000 180 0 999999999 19 0 0 88 0.2 0 0 +1.31616E7 8.1 6.9 92 96322 0 0 330 0 0 0 0 0 0 0 300 2.6 10 10 2000 180 0 999999999 19 0 0 88 0.2 0 0 +1.31652E7 8 7 93 95683 196 1033 330 24 0 24 2315 0 2332 931 300 2.1 10 10 2000 210 0 999999999 19 0 0 88 0.2 0 0 +1.31688E7 8 7 93 95683 416 1328 330 74 0 74 7355 0 7413 3012 260 1.5 10 10 3000 240 0 999999999 19 0 0 88 0.2 0 0 +1.31724E7 8.6 6.9 89 96474 589 1328 332 120 0 120 12126 0 12228 5123 12 1.5 10 10 3000 240 0 999999999 19 0 0 88 0.2 0 0 +1.3176E7 9 7 87 95702 704 1328 334 152 0 152 15491 0 15627 6692 280 1.5 10 10 3000 240 0 999999999 19 0 0 88 0.2 0 0 +1.31796E7 9 7 87 95702 751 1328 334 165 0 165 19273 16 19343 7374 294 1.5 10 10 3000 240 0 999999999 19 0 0 88 0.2 0 0 +1.31832E7 9.2 7.1 87 96410 729 1328 335 159 0 159 18508 6 18584 7049 240 2.1 10 10 4000 270 0 999999999 19 0 0 88 0.2 0 0 +1.31868E7 9 7 87 95702 638 1328 334 133 0 133 13532 0 13648 5772 255 1 10 10 4000 240 0 999999999 19 0 0 88 0.2 0 0 +1.31904E7 10 7 82 95721 485 1328 339 92 0 92 9180 0 9254 3803 218 1 10 10 4000 600 0 999999999 19 0 0 88 0.2 0 0 +1.3194E7 10.1 6.1 76 96446 280 1328 339 41 0 41 4053 0 4083 1631 98 0.5 10 10 5000 600 0 999999999 17 0 0 88 0.2 0 0 +1.31976E7 10 6 76 95721 37 1328 329 5 0 5 511 0 514 199 115 0 9 9 5000 600 0 999999999 17 0 0 88 0.2 0 0 +1.32012E7 10 7 82 95721 0 188 339 0 0 0 0 0 0 0 30 2.1 10 10 5000 540 0 999999999 19 0 0 88 0.2 0 0 +1.32048E7 9.4 7 85 96555 0 0 336 0 0 0 0 0 0 0 340 1.5 10 10 4000 600 9 999999999 19 0 0 88 0.2 0 0 +1.32084E7 9 7 87 95702 0 0 334 0 0 0 0 0 0 0 290 1.5 10 10 3000 600 9 999999999 19 0 0 88 0.2 0 0 +1.3212E7 9 7 87 95702 0 0 334 0 0 0 0 0 0 0 108 1 10 10 4000 600 9 999999999 19 0 0 88 0.2 0 0 +1.32156E7 8.4 6.3 87 96649 0 0 331 0 0 0 0 0 0 0 240 1.5 10 10 4000 690 9 999999999 18 0 0 88 0.2 0 0 +1.32192E7 8 6 87 95683 0 0 329 0 0 0 0 0 0 0 250 1.5 10 10 4000 690 9 999999999 17 0 0 88 0.2 0 0 +1.32228E7 8 6 87 95683 0 0 329 0 0 0 0 0 0 0 148 0.5 10 10 4000 750 9 999999999 17 0 0 88 0.2 0 0 +1.32264E7 8.3 6 85 96742 0 0 330 0 0 0 0 0 0 0 210 1 10 10 5000 750 9 999999999 17 0 0 88 0.2 0 0 +1.323E7 8 6 87 95683 0 0 329 0 0 0 0 0 0 0 230 1 10 10 5000 750 9 999999999 17 0 0 88 0.2 0 0 +1.32336E7 8 6 87 95683 0 0 329 0 0 0 0 0 0 0 17 1 10 10 5000 900 9 999999999 17 0 0 88 0.2 0 0 +1.32372E7 8.4 5.5 82 96734 0 0 321 0 0 0 0 0 0 0 227 0 9 9 4500 900 9 999999999 16 0 0 88 0.2 0 0 +1.32408E7 8 6 87 95683 0 0 319 0 0 0 0 0 0 0 50 1.5 9 9 4500 900 9 999999999 17 0 0 88 0.2 0 0 +1.32444E7 9 6 81 95702 0 0 324 0 0 0 0 0 0 0 142 1 9 9 4500 900 9 999999999 17 0 0 88 0.2 0 0 +1.3248E7 8.2 4.5 77 96872 0 0 319 0 0 0 0 0 0 0 224 1 9 9 5000 900 9 999999999 15 0 0 88 0.2 0 0 +1.32516E7 7 4 81 95663 194 1020 313 38 0 38 3737 0 3763 1375 300 1.5 9 9 5000 5100 9 999999999 14 0 0 88 0.2 0 0 +1.32552E7 9 5 76 95702 414 1327 323 120 12 117 13434 689 13063 4212 330 3.6 9 9 6000 5100 9 999999999 16 0 0 88 0.2 0 0 +1.32588E7 10.3 5.8 74 96922 587 1327 330 196 76 162 22162 5324 18466 6401 350 3.6 9 9 5000 5100 9 999999999 17 0 0 88 0.2 0 0 +1.32624E7 12 4 58 95759 701 1327 317 449 486 192 51279 36913 22091 7971 164 1 5 5 5000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.3266E7 13 5 58 95778 748 1327 304 524 751 101 63526 46002 12271 4884 180 4.1 0 0 6000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.32696E7 13.6 5.1 56 96928 726 1327 320 498 735 96 60298 44252 11655 4618 140 3.1 3 3 6000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.32732E7 14 5 55 95797 635 1327 309 423 693 91 50615 40328 10960 4214 190 1.5 0 0 7000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.32768E7 14 5 55 95797 483 1327 309 291 541 94 33581 29157 10892 3872 180 3.1 0 0 7000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.32804E7 13.5 4.9 56 96936 278 1327 306 130 297 68 14544 8874 7596 2397 150 2.1 0 0 7000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.3284E7 12 5 62 95759 36 1327 300 10 0 10 959 0 965 338 220 2.6 0 0 7000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.32876E7 10 6 76 95721 0 182 293 0 0 0 0 0 0 0 170 2.6 0 0 6000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.32912E7 9.8 5.1 73 97082 0 0 291 0 0 0 0 0 0 0 70 2.1 0 0 6000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.32948E7 8 5 81 95683 0 0 284 0 0 0 0 0 0 0 310 2.1 0 0 6000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.32984E7 7 4 81 95663 0 0 279 0 0 0 0 0 0 0 30 1.5 0 0 5000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.3302E7 8.1 5.4 83 97115 0 0 284 0 0 0 0 0 0 0 40 2.1 0 0 5000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.33056E7 6 4 87 95644 0 0 275 0 0 0 0 0 0 0 184 0.5 0 0 4000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.33092E7 4 3 93 95604 0 0 266 0 0 0 0 0 0 0 330 2.1 0 0 4000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.33128E7 4.2 3.4 95 97038 0 0 267 0 0 0 0 0 0 0 90 2.1 0 0 2000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.33164E7 4 2 87 95604 0 0 265 0 0 0 0 0 0 0 151 0.5 0 0 3000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.332E7 2 2 100 95564 0 0 258 0 0 0 0 0 0 0 170 1.5 0 0 2500 2000 9 999999999 12 0 0 88 0.2 0 0 +1.33236E7 1.8 1 94 97083 0 0 256 0 0 0 0 0 0 0 270 2.1 0 0 1500 2000 9 999999999 11 0 0 88 0.2 0 0 +1.33272E7 0 0 100 95523 0 0 263 0 0 0 0 0 0 0 30 3.1 5 5 500 2000 0 999999999 10 0 0 88 0.2 0 0 +1.33308E7 2 2 100 95564 0 0 273 0 0 0 0 0 0 0 10 2.1 5 5 400 2000 0 999999999 12 0 0 88 0.2 0 0 +1.33344E7 2 1.2 94 97134 0 0 270 0 0 0 0 0 0 0 238 1 4 4 400 2000 0 999999999 11 0 0 88 0.2 0 0 +1.3338E7 1 1 100 95544 191 1007 264 72 92 59 7856 1377 6437 1834 109 0.5 3 3 900 2000 0 999999999 11 0 0 88 0.2 0 0 +1.33416E7 5 4 93 95624 411 1327 271 231 467 87 26431 22704 9958 3404 310 2.6 0 0 1500 2000 0 999999999 14 0 0 88 0.2 0 0 +1.33452E7 9.3 4.8 73 97177 584 1327 289 378 656 89 44793 37125 10610 3999 31 1 0 0 4000 2000 0 999999999 15 0 0 88 0.2 0 0 +1.33488E7 12 6 67 95759 698 1327 301 478 740 89 57955 43224 10813 4261 30 2.6 0 0 4000 2000 0 999999999 17 0 0 88 0.2 0 0 +1.33524E7 14 6 59 95797 746 1327 310 521 767 90 63638 45376 11030 4410 242 1 0 0 4000 2000 0 999999999 17 0 0 88 0.2 0 0 +1.3356E7 16 4.9 48 96907 724 1327 317 502 759 88 61213 44873 10786 4285 200 1.5 0 0 5000 2000 0 999999999 15 0 0 88 0.2 0 0 +1.33596E7 17 3 39 95852 633 1327 320 423 695 91 50603 40917 10903 4188 230 2.1 0 0 7000 2000 0 999999999 13 0 0 88 0.2 0 0 +1.33632E7 18 1 32 95870 481 1327 322 291 535 97 33576 29997 11247 3970 210 3.1 0 0 8000 2000 0 999999999 10 0 0 88 0.2 0 0 +1.33668E7 17.1 4.1 42 96833 277 1327 321 129 296 67 14456 8857 7557 2383 180 1.5 0 0 7000 2000 0 999999999 14 0 0 88 0.2 0 0 +1.33704E7 15 3 44 95815 35 1327 311 10 0 10 934 0 940 329 245 0.5 0 0 7000 2000 0 999999999 13 0 0 88 0.2 0 0 +1.3374E7 13 3 51 95778 0 177 302 0 0 0 0 0 0 0 278 0.5 0 0 7000 2000 0 999999999 13 0 0 88 0.2 0 0 +1.33776E7 10.9 1.9 54 96886 0 0 292 0 0 0 0 0 0 0 99 0.5 0 0 7000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.33812E7 9 2 61 95702 0 0 285 0 0 0 0 0 0 0 42 0.5 0 0 7000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.33848E7 8 3 71 95683 0 0 282 0 0 0 0 0 0 0 279 1 0 0 4000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.33884E7 7.4 2.3 70 96856 0 0 279 0 0 0 0 0 0 0 30 1.5 0 0 5000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.3392E7 6 3 81 95644 0 0 274 0 0 0 0 0 0 0 231 1 0 0 5000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.33956E7 5 2 81 95624 0 0 269 0 0 0 0 0 0 0 40 1.5 0 0 4000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.33992E7 3.4 0.7 82 96795 0 0 262 0 0 0 0 0 0 0 227 1 0 0 4000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.34028E7 3 0 81 95584 0 0 259 0 0 0 0 0 0 0 20 2.1 0 0 5000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.34064E7 2 1 93 95564 0 0 257 0 0 0 0 0 0 0 252 0.5 0 0 3000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.341E7 3.2 0.1 80 96621 0 0 260 0 0 0 0 0 0 0 63 0.5 0 0 3000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.34136E7 2 0 87 95564 0 0 256 0 0 0 0 0 0 0 48 0.5 0 0 4000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.34172E7 0 -1 92 95523 0 0 248 0 0 0 0 0 0 0 321 0.5 0 0 4000 2000 9 999999999 9 0 0 88 0.2 0 0 +1.34208E7 2.5 -0.1 83 96550 0 0 258 0 0 0 0 0 0 0 336 1 0 0 5000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.34244E7 2 0 87 95564 189 994 256 71 143 51 7890 1515 5656 1673 146 0 0 0 4000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.3428E7 7 2 70 95663 408 1326 277 230 468 86 26302 22928 9854 3366 31 0 0 0 5000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.34316E7 10.3 2.9 60 96459 581 1326 291 377 658 88 44695 37578 10523 3962 300 1 0 0 6000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.34352E7 13 4 54 95778 695 1326 303 477 745 87 57979 43873 10591 4171 290 1.5 0 0 7000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.34388E7 16 4 45 95834 743 1326 316 521 773 88 63720 46070 10776 4307 280 1.5 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.34424E7 18.8 0.6 29 96192 721 1326 325 504 772 84 61679 46286 10315 4098 170 0.5 0 0 8000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.3446E7 20 0 26 95906 631 1326 330 423 700 90 50707 41739 10808 4148 355 1 0 0 9900 2000 9 999999999 9 0 0 88 0.2 0 0 +1.34496E7 21 1 26 95924 479 1326 335 290 534 97 33418 29859 11207 3954 180 3.6 0 0 9900 2000 9 999999999 10 0 0 88 0.2 0 0 +1.34532E7 20 2.3 31 96157 276 1326 332 129 297 67 14405 8981 7513 2367 190 3.1 0 0 9000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.34568E7 17 3 39 95852 34 1326 320 9 0 9 908 0 914 321 134 1 0 0 9000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.34604E7 14 4 51 95797 0 172 321 0 0 0 0 0 0 0 99 0.5 3 3 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +1.3464E7 10.4 3.4 62 96253 0 0 292 0 0 0 0 0 0 0 100 1 0 0 7000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.34676E7 10 3 62 95721 0 0 290 0 0 0 0 0 0 0 226 0 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.34712E7 9 3 66 95702 0 0 286 0 0 0 0 0 0 0 121 1 0 0 5000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.34748E7 5.6 2 78 96254 0 0 271 0 0 0 0 0 0 0 227 1 0 0 5000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.34784E7 5 2 81 95624 0 0 269 0 0 0 0 0 0 0 315 1 0 0 5000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.3482E7 6 2 75 95644 0 0 273 0 0 0 0 0 0 0 57 1 0 0 5000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.34856E7 3.8 1.3 84 96256 0 0 264 0 0 0 0 0 0 0 330 1.5 0 0 5000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.34892E7 3 1 87 95584 0 0 260 0 0 0 0 0 0 0 40 1.5 0 0 5000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.34928E7 3 0 81 95584 0 0 259 0 0 0 0 0 0 0 40 1.5 0 0 5000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.34964E7 2.3 0 85 96226 0 0 257 0 0 0 0 0 0 0 350 2.1 0 0 5000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.35E7 4 0 75 95604 0 0 263 0 0 0 0 0 0 0 294 1 0 0 5000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.35036E7 2 0 87 95564 0 0 256 0 0 0 0 0 0 0 60 1.5 0 0 6000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.35072E7 2 -0.6 82 96257 0 0 255 0 0 0 0 0 0 0 220 1.5 0 0 5000 2000 9 999999999 9 0 0 88 0.2 0 0 +1.35108E7 3 0 81 95584 186 982 259 70 142 50 7755 1379 5578 1648 254 0.5 0 0 5000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.35144E7 7 2 70 95663 406 1326 277 228 468 85 26105 22736 9786 3340 149 1 0 0 5000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.3518E7 10.2 3.1 61 96316 578 1326 291 375 657 88 44446 37379 10474 3941 349 1 0 0 7000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.35216E7 14 3 47 95797 693 1326 307 476 748 86 57904 44139 10440 4110 40 2.1 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.35252E7 16 3 42 95834 741 1326 315 520 776 86 63674 46360 10617 4241 92 0.5 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.35288E7 18.6 2.3 34 96132 719 1326 326 501 766 85 61202 45653 10446 4147 200 2.1 0 0 8000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.35324E7 20 1 28 95906 629 1326 331 421 698 90 50453 41366 10772 4133 180 4.1 0 0 9900 2000 9 999999999 10 0 0 88 0.2 0 0 +1.3536E7 19 4 37 95888 478 1326 330 287 538 94 33189 29067 10856 3848 170 4.6 0 0 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +1.35396E7 17.8 5.6 45 96136 274 1326 326 127 293 67 14244 8421 7501 2363 170 4.1 0 0 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +1.35432E7 14 5 55 95797 33 1326 322 9 0 9 872 0 878 311 180 3.1 3 3 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +1.35468E7 13 6 62 95778 0 168 321 0 0 0 0 0 0 0 150 3.6 4 4 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +1.35504E7 11.1 6 71 96295 0 0 297 0 0 0 0 0 0 0 106 0.5 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.3554E7 10 5 71 95721 0 0 292 0 0 0 0 0 0 0 180 1.5 0 0 9000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.35576E7 7 3 76 95663 0 0 278 0 0 0 0 0 0 0 350 1.5 0 0 7000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.35612E7 8 4 76 96348 0 0 283 0 0 0 0 0 0 0 10 0.5 0 0 5000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.35648E7 7 4 81 95663 0 0 279 0 0 0 0 0 0 0 129 1 0 0 4000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.35684E7 5 3 87 95624 0 0 270 0 0 0 0 0 0 0 220 1.5 0 0 5000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.3572E7 3.2 1.5 89 96281 0 0 267 0 0 0 0 0 0 0 300 1.5 1 1 5000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.35756E7 2 1 93 95564 0 0 257 0 0 0 0 0 0 0 175 1 0 0 4000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.35792E7 1 0 93 95544 0 0 252 0 0 0 0 0 0 0 70 2.1 0 0 3000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.35828E7 3.4 1.6 88 96314 0 0 268 0 0 0 0 0 0 0 80 1.5 1 1 3000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.35864E7 1 0 93 95544 0 0 252 0 0 0 0 0 0 0 201 0.5 0 0 4000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.359E7 1 -1 86 95544 0 0 251 0 0 0 0 0 0 0 327 0.5 0 0 4000 2000 9 999999999 9 0 0 88 0.2 0 0 +1.35936E7 3.2 0.8 84 96395 0 0 266 0 0 0 0 0 0 0 50 1.5 1 1 3000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.35972E7 3 1 87 95584 184 970 260 69 90 56 7510 1128 6163 1755 61 1 0 0 3000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.36008E7 5 2 81 95624 403 1326 269 226 465 85 25869 22485 9752 3324 280 2.1 0 0 5000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.36044E7 10 4 66 95721 576 1326 291 372 653 88 44082 36909 10497 3946 10 1.5 0 0 5000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.3608E7 13 4 54 95778 690 1326 303 473 743 87 57464 43652 10533 4143 10 2.1 0 0 6000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.36116E7 15 4 48 95815 739 1326 312 517 771 87 63228 45885 10721 4280 215 1 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.36152E7 17.5 3.2 38 96206 717 1326 322 498 762 86 60813 45235 10532 4178 139 1 0 0 7000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.36188E7 20 2 30 95906 628 1326 332 419 695 90 50159 40945 10776 4133 290 1.5 0 0 7000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.36224E7 20 2 30 95906 476 1326 332 287 534 95 33134 29436 11025 3893 230 1.5 0 0 7000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.3626E7 19.6 3.7 35 96131 273 1326 349 123 263 69 13713 7935 7674 2400 180 2.1 4 4 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.36296E7 17 4 42 95852 33 1326 321 9 0 9 868 0 874 309 160 3.1 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.36332E7 15 4 48 95815 0 165 312 0 0 0 0 0 0 0 290 1 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.36368E7 11.3 4 61 96242 0 0 312 0 0 0 0 0 0 0 266 0.5 4 4 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.36404E7 10 3 62 95721 0 0 290 0 0 0 0 0 0 0 30 1.5 0 0 7000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.3644E7 8 3 71 95683 0 0 282 0 0 0 0 0 0 0 257 0 0 0 5000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.36476E7 6.5 2.3 75 96253 0 0 280 0 0 0 0 0 0 0 320 1 1 1 5000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.36512E7 5 2 81 95624 0 0 269 0 0 0 0 0 0 0 50 2.1 0 0 4000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.36548E7 5 2 81 95624 0 0 269 0 0 0 0 0 0 0 10 1.5 0 0 4000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.36584E7 4.3 1.1 80 96105 0 0 279 0 0 0 0 0 0 0 52 1 4 4 5000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.3662E7 3 1 87 95584 0 0 260 0 0 0 0 0 0 0 350 1 0 0 4000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.36656E7 3 0 81 95584 0 0 259 0 0 0 0 0 0 0 350 1 0 0 3000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.36692E7 1.4 -0.5 87 95943 0 0 271 0 0 0 0 0 0 0 20 1 6 6 2500 2000 9 999999999 9 0 0 88 0.2 0 0 +1.36728E7 1 -1 86 95544 0 0 251 0 0 0 0 0 0 0 199 0.5 0 0 3500 2000 9 999999999 9 0 0 88 0.2 0 0 +1.36764E7 2 -1 80 95564 0 0 255 0 0 0 0 0 0 0 157 0 0 0 4000 2000 9 999999999 9 0 0 88 0.2 0 0 +1.368E7 1.7 -0.8 83 95968 0 0 271 0 0 0 0 0 0 0 263 1 6 6 3000 2000 9 999999999 9 0 0 88 0.2 0 0 +1.36836E7 2 -1 80 95564 181 958 255 68 89 55 7390 1091 6076 1729 50 2.1 0 0 5000 2000 9 999999999 9 0 0 88 0.2 0 0 +1.36872E7 6 1 70 95644 401 1325 272 225 430 95 25466 22064 10772 3594 104 0.5 0 0 6000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.36908E7 9.7 0.4 52 95975 574 1325 314 250 147 186 27948 11314 20948 6915 67 1 8 8 8000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.36944E7 14 1 41 95797 688 1325 304 474 642 140 55435 44075 16468 6221 5 1.5 0 0 8000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.3698E7 16 1 36 95834 736 1325 313 518 671 145 60947 46541 17110 6582 270 1.5 0 0 9900 2000 9 999999999 10 0 0 88 0.2 0 0 +1.37016E7 19.6 1.6 30 95819 715 1325 362 335 182 236 37759 15255 26804 9271 166 1 8 8 9900 7500 9 999999999 11 0 0 88 0.2 0 0 +1.37052E7 20 1 28 95906 626 1325 331 418 601 134 48530 40413 15639 5756 250 2.6 0 0 9900 7500 9 999999999 10 0 0 88 0.2 0 0 +1.37088E7 22 0 23 95942 475 1325 339 287 417 138 32164 27411 15488 5080 170 1.5 0 0 9900 7500 9 999999999 9 0 0 88 0.2 0 0 +1.37124E7 20.6 2.1 29 95827 272 1325 368 85 54 74 9451 1785 8240 2524 170 2.1 8 8 9900 7500 9 999999999 11 0 0 88 0.2 0 0 +1.3716E7 16 4 45 95834 32 1325 327 9 0 9 850 0 856 303 180 4.6 2 2 9900 7500 9 999999999 14 0 0 88 0.2 0 0 +1.37196E7 15 5 51 95815 0 162 313 0 0 0 0 0 0 0 140 3.6 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.37232E7 13.5 5.4 58 95915 0 0 328 0 0 0 0 0 0 0 140 2.1 6 6 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.37268E7 10 5 71 95721 0 0 292 0 0 0 0 0 0 0 240 1.5 0 0 7000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.37304E7 10 6 76 95721 0 0 293 0 0 0 0 0 0 0 150 3.1 0 0 6000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.3734E7 8.6 6.4 86 95964 0 0 302 0 0 0 0 0 0 0 160 4.1 4 4 6000 2000 9 999999999 18 0 0 88 0.2 0 0 +1.37376E7 8 7 93 95683 0 0 286 0 0 0 0 0 0 0 150 5.1 0 0 5000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.37412E7 8 7 93 95683 0 0 298 0 0 0 0 0 0 0 150 4.1 3 3 5000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.37448E7 8.4 7.1 92 96243 0 0 304 0 0 0 0 0 0 0 150 5.1 5 5 5000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.37484E7 9 7 87 95702 0 0 325 0 0 0 0 0 0 0 140 3.1 9 9 5000 270 9 999999999 19 0 0 88 0.2 0 0 +1.3752E7 8 7 93 95683 0 0 321 0 0 0 0 0 0 0 260 2.1 9 9 5000 270 9 999999999 19 0 0 88 0.2 0 0 +1.37556E7 8.5 6.7 88 96405 0 0 323 0 0 0 0 0 0 0 140 1.5 9 9 5000 360 9 999999999 19 0 0 88 0.2 0 0 +1.37592E7 8 6 87 95683 0 0 319 0 0 0 0 0 0 0 340 2.6 9 9 5000 450 9 999999999 17 0 0 88 0.2 0 0 +1.37628E7 8 7 93 95683 0 0 321 0 0 0 0 0 0 0 310 1.5 9 9 5000 450 9 999999999 19 0 0 88 0.2 0 0 +1.37664E7 8.8 6.4 85 96487 0 0 333 0 0 0 0 0 0 0 120 2.1 10 10 4000 450 9 999999999 18 0 0 88 0.2 0 0 +1.377E7 9 6 81 95702 179 947 333 21 0 21 2021 0 2036 813 140 2.1 10 10 4000 600 9 999999999 17 0 0 88 0.2 0 0 +1.37736E7 10 6 76 95721 399 1325 338 70 0 70 6939 0 6993 2831 55 1 10 10 4000 690 9 999999999 17 0 0 88 0.2 0 0 +1.37772E7 9.6 7 84 96663 571 1325 337 115 0 115 11636 0 11733 4900 330 1.5 10 10 3000 690 9 999999999 19 0 0 88 0.2 0 0 +1.37808E7 11 7 76 95740 686 1325 344 147 0 147 14994 0 15124 6458 360 2.1 10 10 4000 780 9 999999999 19 0 0 88 0.2 0 0 +1.37844E7 12 5 62 95759 734 1325 337 265 94 213 30185 7336 24394 8797 99 1.5 9 9 5000 720 9 999999999 15 0 0 88 0.2 0 0 +1.3788E7 12.7 4.7 58 96410 714 1325 321 460 491 196 52595 37339 22490 8157 120 1 5 5 5000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.37916E7 13 5 58 95778 625 1325 318 409 529 160 46752 37234 18317 6550 200 1.5 3 3 5000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.37952E7 13 5 58 95778 474 1325 342 147 55 127 16507 3401 14335 4802 160 2.6 9 9 4000 3600 9 999999999 15 0 0 88 0.2 0 0 +1.37988E7 12.9 5.2 59 96395 272 1325 341 65 0 65 6389 0 6437 2305 160 2.6 9 9 5000 3600 9 999999999 16 0 0 88 0.2 0 0 +1.38024E7 12 5 62 95759 31 1325 300 9 0 9 840 0 845 300 150 2.1 0 0 5000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.3806E7 11 5 66 95740 0 159 296 0 0 0 0 0 0 0 160 2.1 0 0 5000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.38096E7 9.3 4.9 74 96449 0 0 309 0 0 0 0 0 0 0 300 1.5 6 6 6000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.38132E7 9 5 76 95702 0 0 288 0 0 0 0 0 0 0 360 1.5 0 0 6000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.38168E7 8 5 81 95683 0 0 284 0 0 0 0 0 0 0 50 3.1 0 0 5000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.38204E7 8.8 5 77 96137 0 0 322 0 0 0 0 0 0 0 10 4.1 9 9 6000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.3824E7 8 5 81 95683 0 0 284 0 0 0 0 0 0 0 30 3.1 0 0 5000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.38276E7 8 5 81 95683 0 0 284 0 0 0 0 0 0 0 230 3.6 0 0 6000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.38312E7 8.6 4.9 78 96228 0 0 321 0 0 0 0 0 0 0 140 3.6 9 9 6000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.38348E7 8 5 81 95683 0 0 301 0 0 0 0 0 0 0 160 4.1 5 5 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.38384E7 7 4 81 95663 0 0 279 0 0 0 0 0 0 0 150 2.1 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.3842E7 5.8 4.2 89 96220 0 0 293 0 0 0 0 0 0 0 310 3.1 6 6 6000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.38456E7 6 4 87 95644 0 0 275 0 0 0 0 0 0 0 140 2.1 0 0 6000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.38492E7 6 4 87 95644 0 0 275 0 0 0 0 0 0 0 65 1 0 0 6000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.38528E7 6.1 3.7 85 96406 0 0 308 0 0 0 0 0 0 0 310 2.6 9 9 5000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.38564E7 6 4 87 95644 177 937 308 33 0 33 3265 0 3288 1207 60 3.1 9 9 5000 4800 9 999999999 14 0 0 88 0.2 0 0 +1.386E7 7 5 87 95663 396 1325 314 114 11 110 12686 591 12370 3975 360 3.1 9 9 4000 4800 9 999999999 16 0 0 88 0.2 0 0 +1.38636E7 7.7 4.9 82 96295 569 1325 317 189 18 181 21110 1367 20325 6755 20 1.5 9 9 4000 4800 9 999999999 15 0 0 88 0.2 0 0 +1.38672E7 9 5 76 95702 684 1325 323 241 43 219 27184 3477 24788 8575 140 2.6 9 9 4000 4800 9 999999999 16 0 0 88 0.2 0 0 +1.38708E7 10 5 71 95721 733 1325 328 264 46 239 29799 3753 27101 9479 180 3.6 9 9 7000 4800 9 999999999 16 0 0 88 0.2 0 0 +1.38744E7 10.8 5.1 68 96233 712 1325 331 254 45 230 28681 3638 26111 9091 190 0.5 9 9 8000 4800 9 999999999 16 0 0 88 0.2 0 0 +1.3878E7 11 5 66 95740 623 1325 332 213 40 195 23987 3067 21980 7494 160 1.5 9 9 8000 5100 9 999999999 15 0 0 88 0.2 0 0 +1.38816E7 12 5 62 95759 473 1325 337 146 14 141 16309 887 15834 5155 130 2.6 9 9 8000 4800 9 999999999 15 0 0 88 0.2 0 0 +1.38852E7 11.7 4.9 63 96240 271 1325 335 65 0 65 6368 0 6415 2298 130 1.5 9 9 8000 4800 9 999999999 15 0 0 88 0.2 0 0 +1.38888E7 11 5 66 95740 31 1325 332 4 0 4 428 0 431 168 120 1.5 9 9 8000 4500 9 999999999 15 0 0 88 0.2 0 0 +1.38924E7 11 5 66 95740 0 157 332 0 0 0 0 0 0 0 210 4.1 9 9 8000 4500 9 999999999 15 0 0 88 0.2 0 0 +1.3896E7 9.8 4.8 71 96355 0 0 326 0 0 0 0 0 0 0 30 0.5 9 9 8000 4800 9 999999999 15 0 0 88 0.2 0 0 +1.38996E7 9 5 76 95702 0 0 323 0 0 0 0 0 0 0 330 1.5 9 9 8000 5400 9 999999999 16 0 0 88 0.2 0 0 +1.39032E7 9 5 76 95702 0 0 323 0 0 0 0 0 0 0 90 1.5 9 9 8000 5400 9 999999999 16 0 0 88 0.2 0 0 +1.39068E7 8.7 4.9 77 96400 0 0 321 0 0 0 0 0 0 0 54 1 9 9 8000 5400 9 999999999 15 0 0 88 0.2 0 0 +1.39104E7 8 5 81 95683 0 0 318 0 0 0 0 0 0 0 360 2.1 9 9 8000 5400 9 999999999 16 0 0 88 0.2 0 0 +1.3914E7 8 5 81 95683 0 0 318 0 0 0 0 0 0 0 40 2.1 9 9 6000 4500 9 999999999 16 0 0 88 0.2 0 0 +1.39176E7 7.1 4.5 84 96359 0 0 296 0 0 0 0 0 0 0 360 2.1 5 5 7000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.39212E7 5 3 87 95624 0 0 286 0 0 0 0 0 0 0 286 1 5 5 6000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.39248E7 4 3 93 95604 0 0 282 0 0 0 0 0 0 0 12 1 5 5 5000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.39284E7 2.5 2 96 96314 0 0 291 0 0 0 0 0 0 0 349 0.5 9 9 3000 3000 9 999999999 12 0 0 88 0.2 0 0 +1.3932E7 2 2 100 95564 0 0 273 0 0 0 0 0 0 0 40 2.1 5 5 1200 2000 9 999999999 12 0 0 88 0.2 0 0 +1.39356E7 2 1 93 95564 0 0 272 0 0 0 0 0 0 0 150 1.5 5 5 1600 2000 9 999999999 11 0 0 88 0.2 0 0 +1.39392E7 4.1 3.4 95 96375 0 0 283 0 0 0 0 0 0 0 120 3.1 5 5 3000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.39428E7 4 3 93 95604 175 926 299 33 0 33 3212 0 3234 1188 270 2.1 9 9 2500 3600 9 999999999 13 0 0 88 0.2 0 0 +1.39464E7 8 5 81 95683 394 1325 318 113 11 110 12594 578 12285 3947 300 2.1 9 9 4000 3600 9 999999999 16 0 0 88 0.2 0 0 +1.395E7 10.8 5.8 71 96592 567 1325 332 188 73 156 21218 5062 17751 6123 249 1 9 9 5000 4200 9 999999999 17 0 0 88 0.2 0 0 +1.39536E7 13 5 58 95778 682 1325 323 433 477 188 49425 35760 21541 7729 10 1.5 5 5 6000 4200 9 999999999 15 0 0 88 0.2 0 0 +1.39572E7 14 5 55 95797 731 1325 327 474 611 137 55969 40773 16211 6269 164 1 5 5 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.39608E7 15.2 4.1 47 96467 710 1325 326 486 712 104 58358 43962 12490 4902 319 1.5 3 3 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.39644E7 15 5 51 95815 622 1325 327 407 618 117 47658 38658 13717 5137 170 3.6 3 3 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.3968E7 15 6 55 95815 472 1325 333 263 407 117 29711 23877 13334 4538 180 5.7 5 5 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.39716E7 13.1 7.5 69 96465 270 1325 326 116 225 70 12875 6450 7805 2423 170 4.6 5 5 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +1.39752E7 11 8 82 95740 31 1325 317 8 0 8 761 0 766 276 150 4.6 5 5 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +1.39788E7 10 8 87 95721 0 156 312 0 0 0 0 0 0 0 150 4.6 5 5 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +1.39824E7 9.6 8.1 90 96578 0 0 311 0 0 0 0 0 0 0 170 3.6 5 5 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +1.3986E7 9 8 93 95702 0 0 308 0 0 0 0 0 0 0 220 2.6 5 5 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +1.39896E7 9 7 87 95702 0 0 325 0 0 0 0 0 0 0 184 1 9 9 8000 2400 9 999999999 19 0 0 88 0.2 0 0 +1.39932E7 7 6 93 95663 0 0 315 0 0 0 0 0 0 0 30 1 9 9 4000 2400 9 999999999 17 0 0 88 0.2 0 0 +1.39968E7 8 6 87 95683 0 0 319 0 0 0 0 0 0 0 20 2.1 9 9 4000 2100 9 999999999 17 0 0 88 0.2 0 0 +1.40004E7 6 6 100 95644 0 0 310 0 0 0 0 0 0 0 30 1.5 9 9 550 2100 9 999999999 17 0 0 88 0.2 0 0 +1.4004E7 4.6 3.8 95 96697 0 0 311 0 0 0 0 0 0 0 50 1 10 10 400 90 0 999999999 14 0 0 88 0.2 0 0 +1.40076E7 6 5 93 95644 0 0 309 0 0 0 0 0 0 0 20 1.5 9 9 2000 300 0 999999999 16 0 0 88 0.2 0 0 +1.40112E7 5 4 93 95624 0 0 304 0 0 0 0 0 0 0 140 0.5 9 9 2000 120 0 999999999 14 0 0 88 0.2 0 0 +1.40148E7 3.3 2.8 97 96576 0 0 304 0 0 0 0 0 0 0 200 2.1 10 10 200 30 0 999999999 13 0 0 88 0.2 0 0 +1.40184E7 3 3 100 95584 0 0 303 0 0 0 0 0 0 0 266 0 10 10 350 30 0 999999999 13 0 0 88 0.2 0 0 +1.4022E7 2 1 93 95564 0 0 296 0 0 0 0 0 0 0 50 1.5 10 10 300 2000 0 999999999 11 0 0 88 0.2 0 0 +1.40256E7 2 1.7 98 96493 0 0 297 0 0 0 0 0 0 0 40 1.5 10 10 200 30 0 999999999 11 0 0 88 0.2 0 0 +1.40292E7 3 2 93 95584 173 916 302 26 0 26 2582 0 2600 993 183 1 10 10 250 30 0 999999999 12 0 0 88 0.2 0 0 +1.40328E7 4 3 93 95604 392 1324 307 92 0 92 9139 0 9210 3479 134 0.5 10 10 300 60 0 999999999 13 0 0 88 0.2 0 0 +1.40364E7 4.9 4.5 97 96448 565 1324 290 317 336 173 35505 24538 19506 6543 78 0.5 6 6 600 7500 0 999999999 15 0 0 88 0.2 0 0 +1.404E7 9 6 81 95702 680 1324 289 463 676 116 54850 42357 13766 5299 307 1 0 0 5000 2000 0 999999999 17 0 0 88 0.2 0 0 +1.40436E7 13 8 72 95778 729 1324 308 506 661 142 59422 43638 16737 6451 181 0.5 0 0 8000 2000 0 999999999 21 0 0 88 0.2 0 0 +1.40472E7 14.7 7.1 60 96136 709 1324 345 328 176 234 36942 14267 26500 9171 52 1 8 8 8000 2000 0 999999999 19 0 0 88 0.2 0 0 +1.40508E7 16 6 51 95834 621 1324 332 406 579 134 46940 37768 15567 5727 159 1 3 3 8000 2000 0 999999999 17 0 0 88 0.2 0 0 +1.40544E7 17 5 45 95852 471 1324 336 278 428 126 31334 26166 14227 4764 92 0.5 3 3 8000 2000 0 999999999 15 0 0 88 0.2 0 0 +1.4058E7 16.1 5.3 49 95992 270 1324 367 39 0 39 3860 0 3888 1551 220 2.1 10 10 8000 2000 0 999999999 16 0 0 88 0.2 0 0 +1.40616E7 14 5 55 95797 31 1324 322 8 0 8 807 0 812 289 190 2.1 3 3 8000 2000 0 999999999 15 0 0 88 0.2 0 0 +1.40652E7 12 8 76 95759 0 155 316 0 0 0 0 0 0 0 170 2.6 3 3 8000 2000 0 999999999 21 0 0 88 0.2 0 0 +1.40688E7 11.7 7.7 76 96032 0 0 348 0 0 0 0 0 0 0 150 3.6 10 10 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +1.40724E7 10 7 82 95721 0 0 307 0 0 0 0 0 0 0 120 2.1 3 3 6000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.4076E7 9 6 81 95702 0 0 289 0 0 0 0 0 0 0 290 3.1 0 0 7000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.40796E7 7.8 5.6 86 95967 0 0 318 0 0 0 0 0 0 0 30 2.6 9 9 4000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.40832E7 7 5 87 95663 0 0 280 0 0 0 0 0 0 0 224 1 0 0 4000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.40868E7 7 5 87 95663 0 0 280 0 0 0 0 0 0 0 123 1 0 0 2500 2000 9 999999999 16 0 0 88 0.2 0 0 +1.40904E7 5.4 4.3 93 95835 0 0 284 0 0 0 0 0 0 0 200 1.5 3 3 3000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.4094E7 4 3 93 95604 0 0 278 0 0 0 0 0 0 0 96 1 3 3 2000 2000 0 999999999 13 0 0 88 0.2 0 0 +1.40976E7 4 3 93 95604 0 0 282 0 0 0 0 0 0 0 260 2.1 5 5 500 2000 0 999999999 13 0 0 88 0.2 0 0 +1.41012E7 1.8 1.6 99 95782 0 0 272 0 0 0 0 0 0 0 30 3.1 5 5 300 2000 0 999999999 11 0 0 88 0.2 0 0 +1.41048E7 3 2 93 95584 0 0 261 0 0 0 0 0 0 0 181 0.5 0 0 3000 2000 0 999999999 12 0 0 88 0.2 0 0 +1.41084E7 1 0 93 95544 0 0 252 0 0 0 0 0 0 0 293 1 0 0 2000 2000 0 999999999 10 0 0 88 0.2 0 0 +1.4112E7 1.5 0.6 94 95672 0 0 265 0 0 0 0 0 0 0 246 1 3 3 500 2000 0 999999999 10 0 0 88 0.2 0 0 +1.41156E7 3 2 93 95584 171 907 261 62 105 48 6787 551 5310 1547 333 0 0 0 3000 2000 0 999999999 12 0 0 88 0.2 0 0 +1.41192E7 6 4 87 95644 391 1324 275 216 448 84 24615 20818 9587 3246 121 0.5 0 0 5000 2000 0 999999999 14 0 0 88 0.2 0 0 +1.41228E7 9.5 4.3 70 95716 564 1324 302 357 618 94 41985 35315 11060 4115 67 0.5 3 3 8000 2000 0 999999999 14 0 0 88 0.2 0 0 +1.41264E7 13 5 58 95778 679 1324 304 463 720 94 55685 42734 11316 4419 229 0.5 0 0 8000 2000 0 999999999 15 0 0 88 0.2 0 0 +1.413E7 16 4 45 95834 728 1324 327 507 741 100 61323 45441 12072 4778 160 2.6 2 2 9900 2000 0 999999999 14 0 0 88 0.2 0 0 +1.41336E7 17.1 2.8 38 95452 708 1324 339 457 608 132 53890 40541 15578 5987 180 4.6 5 5 9900 2000 0 999999999 12 0 0 88 0.2 0 0 +1.41372E7 16 4 45 95834 620 1324 335 383 446 174 43421 32700 19831 6939 180 5.7 5 5 9900 2000 0 999999999 14 0 0 88 0.2 0 0 +1.41408E7 15 5 51 95815 471 1324 351 145 55 126 16354 3341 14223 4761 170 6.2 9 9 9900 5400 0 999999999 15 0 0 88 0.2 0 0 +1.41444E7 14.3 4.9 53 95457 270 1324 348 64 0 64 6322 0 6368 2281 160 6.2 9 9 9900 4800 0 999999999 15 0 0 88 0.2 0 0 +1.4148E7 13 5 58 95778 31 1324 342 4 0 4 421 0 424 165 150 5.7 9 9 9900 4800 0 999999999 15 0 0 88 0.2 0 0 +1.41516E7 11 4 62 95740 0 155 331 0 0 0 0 0 0 0 150 5.1 9 9 9900 4800 0 999999999 14 0 0 88 0.2 0 0 +1.41552E7 11 3.7 61 95613 0 0 331 0 0 0 0 0 0 0 140 5.1 9 9 9900 4500 9 999999999 14 0 0 88 0.2 0 0 +1.41588E7 11 4 62 95740 0 0 331 0 0 0 0 0 0 0 200 2.6 9 9 9900 3300 9 999999999 14 0 0 88 0.2 0 0 +1.41624E7 10 4 66 95721 0 0 336 0 0 0 0 0 0 0 131 2.1 10 10 9900 1800 0 919999999 14 0 0 88 0.2 0 0 +1.4166E7 9.4 4.6 72 95932 0 0 334 0 0 0 0 0 0 0 310 8.7 10 10 8000 1500 0 919999999 15 0 0 88 0.2 0 0 +1.41696E7 8 5 81 95683 0 0 318 0 0 0 0 0 0 0 340 8.7 9 9 8000 1500 0 919999999 16 0 0 88 0.2 3.8 0 +1.41732E7 7 5 87 95663 0 0 314 0 0 0 0 0 0 0 350 4.1 9 9 8000 1500 0 919999999 16 0 0 88 0.2 0 0 +1.41768E7 7.2 4.5 83 96097 0 0 314 0 0 0 0 0 0 0 350 5.1 9 9 8000 1500 0 919999999 15 0 0 88 0.2 0 0 +1.41804E7 7 4 81 95663 0 0 313 0 0 0 0 0 0 0 80 1.5 9 9 8000 1500 0 919999999 14 0 0 88 0.2 0 0 +1.4184E7 8 4 76 95683 0 0 317 0 0 0 0 0 0 0 90 1.5 9 9 8000 1500 0 919999999 14 0 0 88 0.2 0 0 +1.41876E7 7.6 4.1 78 96152 0 0 316 0 0 0 0 0 0 0 10 3.1 9 9 8000 2400 0 919999999 14 0 0 88 0.2 0 0 +1.41912E7 9 4 71 95702 0 0 322 0 0 0 0 0 0 0 350 2.6 9 9 8000 2400 0 919999999 14 0 0 88 0.2 0 0 +1.41948E7 7 4 81 95663 0 0 295 0 0 0 0 0 0 0 30 3.1 5 5 8000 2400 0 919999999 14 0 0 88 0.2 0 0 +1.41984E7 8.8 3.6 70 96288 0 0 320 0 0 0 0 0 0 0 340 5.1 9 9 8000 1500 0 919999999 14 0 0 88 0.2 0 0 +1.4202E7 9 3 66 95702 170 898 321 31 0 31 3053 0 3075 1132 90 2.1 9 9 8000 2400 0 919999999 13 0 0 88 0.2 0 0 +1.42056E7 10 3 62 95721 389 1324 325 111 11 108 12393 568 12094 3877 320 8.2 9 9 8000 3600 0 919999999 13 0 0 88 0.2 0 0 +1.42092E7 12.4 2.6 51 96395 562 1324 336 186 18 179 20840 1381 20059 6647 310 6.7 9 9 8000 3600 0 919999999 12 0 0 88 0.2 0 0 +1.42128E7 13 2 47 95778 677 1324 338 239 44 217 26987 3570 24572 8473 320 8.7 9 9 8000 3600 0 919999999 11 0 0 88 0.2 0 0 +1.42164E7 13 1 44 95778 727 1324 337 263 20 252 29564 1744 28468 9747 330 9.8 9 9 8000 3300 0 919999999 10 0 0 88 0.2 0 0 +1.422E7 14 1.7 43 96284 707 1324 342 253 46 229 28605 3766 25993 9023 320 7.7 9 9 8000 2700 0 919999999 11 0 0 88 0.2 0 0 +1.42236E7 14 2 44 95797 619 1324 343 213 41 194 23929 3164 21892 7446 310 6.7 9 9 8000 2700 0 919999999 11 0 0 88 0.2 0 0 +1.42272E7 14 2 44 95797 470 1324 343 146 14 141 16277 919 15791 5129 320 6.7 9 9 8000 2400 0 919999999 11 0 0 88 0.2 0 0 +1.42308E7 13 2.8 50 96312 269 1324 339 64 0 64 6342 0 6389 2285 320 6.7 9 9 8000 3000 0 919999999 12 0 0 88 0.2 0 0 +1.42344E7 12 3 54 95759 31 1324 335 4 0 4 423 0 426 166 340 6.7 9 9 8000 2700 0 919999999 13 0 0 88 0.2 0 0 +1.4238E7 12 3 54 95759 0 155 335 0 0 0 0 0 0 0 340 5.1 9 9 8000 3000 0 919999999 13 0 0 88 0.2 0 0 +1.42416E7 11.1 3.9 61 96446 0 0 324 0 0 0 0 0 0 0 116 1 8 8 8000 3000 9 999999999 14 0 0 88 0.2 0 0 +1.42452E7 11 4 62 95740 0 0 331 0 0 0 0 0 0 0 120 3.6 9 9 8000 3300 9 999999999 14 0 0 88 0.2 0 0 +1.42488E7 10 4 66 95721 0 0 326 0 0 0 0 0 0 0 160 3.6 9 9 8000 3300 9 999999999 14 0 0 88 0.2 0 0 +1.42524E7 9.8 4.1 68 96563 0 0 326 0 0 0 0 0 0 0 150 2.6 9 9 8000 3900 9 999999999 14 0 0 88 0.2 0 0 +1.4256E7 9 5 76 95702 0 0 323 0 0 0 0 0 0 0 180 2.1 9 9 8000 3900 9 999999999 16 0 0 88 0.2 0 0 +1.42596E7 8 5 81 95683 0 0 318 0 0 0 0 0 0 0 170 2.6 9 9 8000 3900 9 999999999 16 0 0 88 0.2 0 0 +1.42632E7 8.6 5.3 80 96587 0 0 315 0 0 0 0 0 0 0 150 3.1 8 8 8000 3900 9 999999999 16 0 0 88 0.2 0 0 +1.42668E7 8 6 87 95683 0 0 319 0 0 0 0 0 0 0 140 3.1 9 9 8000 3900 9 999999999 17 0 0 88 0.2 0 0 +1.42704E7 7 5 87 95663 0 0 314 0 0 0 0 0 0 0 300 1.5 9 9 8000 3900 9 999999999 16 0 0 88 0.2 0 0 +1.4274E7 6.3 4.2 86 96419 0 0 310 0 0 0 0 0 0 0 320 1 9 9 8000 3600 9 999999999 14 0 0 88 0.2 0 0 +1.42776E7 6 4 87 95644 0 0 308 0 0 0 0 0 0 0 20 2.1 9 9 8000 3600 9 999999999 14 0 0 88 0.2 0 0 +1.42812E7 5 4 93 95624 0 0 287 0 0 0 0 0 0 0 360 1.5 5 5 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.42848E7 5.7 3 83 96445 0 0 300 0 0 0 0 0 0 0 320 1.5 8 8 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.42884E7 5 3 87 95624 168 889 270 60 164 39 6671 0 4352 1328 50 2.1 0 0 5000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.4292E7 7 4 81 95663 387 1324 313 110 12 107 12301 658 11940 3835 10 1.5 9 9 8000 7500 9 999999999 14 0 0 88 0.2 0 0 +1.42956E7 9 6 81 95702 560 1324 324 185 72 154 20859 4930 17494 6025 360 2.1 9 9 8000 7500 9 999999999 17 0 0 88 0.2 0 0 +1.42992E7 10 5 71 95721 676 1324 312 407 388 209 45966 30479 23722 8264 10 3.1 6 6 9900 7500 9 999999999 16 0 0 88 0.2 0 0 +1.43028E7 12 4 58 95759 725 1324 312 499 585 178 57648 43028 20715 7702 20 2.1 3 3 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +1.43064E7 12.2 4.8 61 96146 706 1324 338 252 91 203 28657 7053 23230 8322 350 1.5 9 9 9900 7500 9 999999999 15 0 0 88 0.2 0 0 +1.431E7 13 5 58 95778 619 1324 342 211 40 193 23761 3034 21781 7421 118 1 9 9 9900 7500 9 999999999 15 0 0 88 0.2 0 0 +1.43136E7 14 5 55 95797 470 1324 346 145 14 140 16169 872 15702 5110 204 1 9 9 9900 7500 9 999999999 15 0 0 88 0.2 0 0 +1.43172E7 13 5.3 59 96170 269 1324 342 64 0 64 6308 0 6354 2278 180 3.6 9 9 9900 4200 9 999999999 16 0 0 88 0.2 0 0 +1.43208E7 12 5 62 95759 31 1324 337 4 0 4 424 0 427 166 180 3.1 9 9 9900 3900 9 999999999 15 0 0 88 0.2 0 0 +1.43244E7 12 6 67 95759 0 156 338 0 0 0 0 0 0 0 190 2.6 9 9 9900 3900 9 999999999 17 0 0 88 0.2 0 0 +1.4328E7 10.6 6.7 77 96210 0 0 325 0 0 0 0 0 0 0 170 2.6 8 8 9900 3900 9 999999999 18 0 0 88 0.2 0 0 +1.43316E7 10 6 76 95721 0 0 329 0 0 0 0 0 0 0 130 3.6 9 9 9900 3600 9 999999999 17 0 0 88 0.2 0 0 +1.43352E7 11 6 71 95740 0 0 315 0 0 0 0 0 0 0 120 1.5 5 5 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +1.43388E7 9.2 6.3 82 96296 0 0 307 0 0 0 0 0 0 0 270 2.6 5 5 9900 2000 9 999999999 18 0 0 88 0.2 0 0 +1.43424E7 10 6 76 95721 0 0 329 0 0 0 0 0 0 0 169 1 9 9 9900 3300 9 999999999 17 0 0 88 0.2 0 0 +1.4346E7 9 6 81 95702 0 0 324 0 0 0 0 0 0 0 50 2.1 9 9 9900 3300 9 999999999 17 0 0 88 0.2 0 0 +1.43496E7 8.7 6.5 86 96173 0 0 323 0 0 0 0 0 0 0 140 1.5 9 9 9900 3000 9 999999999 18 0 0 88 0.2 0 0 +1.43532E7 8 6 87 95683 0 0 319 0 0 0 0 0 0 0 170 1.5 9 9 9900 3000 9 999999999 17 0 0 88 0.2 0 0 +1.43568E7 8 6 87 95683 0 0 319 0 0 0 0 0 0 0 135 1 9 9 9900 3000 9 999999999 17 0 0 88 0.2 0 0 +1.43604E7 8.7 5.9 83 96315 0 0 323 0 0 0 0 0 0 0 240 1 9 9 9900 3000 9 999999999 17 0 0 88 0.2 0 0 +1.4364E7 8 6 87 95683 0 0 319 0 0 0 0 0 0 0 250 2.6 9 9 9900 2700 9 999999999 17 0 0 88 0.2 0 0 +1.43676E7 8 6 87 95683 0 0 319 0 0 0 0 0 0 0 270 1.5 9 9 9900 2700 9 999999999 17 0 0 88 0.2 0 0 +1.43712E7 8.1 5.8 85 96398 0 0 329 0 0 0 0 0 0 0 80 2.1 10 10 9900 2400 9 999999999 17 0 0 88 0.2 0 0 +1.43748E7 8 6 87 95683 167 881 329 18 0 18 1796 0 1809 723 10 2.1 10 10 8000 1800 0 919999999 17 0 0 88 0.2 0 0 +1.43784E7 8 7 93 95683 386 1323 330 66 0 66 6600 0 6652 2691 130 1.5 10 10 7000 1800 0 919999999 19 0 0 88 0.2 0 0 +1.4382E7 8.8 6.8 87 96515 559 1323 333 112 0 112 11292 0 11386 4746 270 3.1 10 10 8000 1800 0 919999999 19 0 0 88 0.2 0 0 +1.43856E7 11 6 71 95740 674 1323 343 144 0 144 14690 0 14817 6311 272 1 10 10 8000 2400 0 919999999 17 0 0 88 0.2 0 0 +1.43892E7 10 6 76 95721 724 1323 329 260 44 236 29305 3581 26739 9340 170 2.6 9 9 8000 1800 0 919999999 17 0 0 88 0.2 0 0 +1.43928E7 11.7 5.5 66 96410 705 1323 336 251 44 227 28311 3579 25789 8972 95 1 9 9 8000 2400 0 919999999 16 0 0 88 0.2 0 0 +1.43964E7 12 5 62 95759 618 1323 337 211 40 193 23735 3029 21758 7413 170 2.6 9 9 8000 2700 0 919999999 15 0 0 88 0.2 0 0 +1.44E7 13 5 58 95778 470 1323 342 145 14 140 16158 870 15692 5107 140 1.5 9 9 8000 2400 0 919999999 15 0 0 88 0.2 0 0 +1.44036E7 12.6 5.9 64 96295 269 1323 341 64 0 64 6302 0 6348 2277 190 1.5 9 9 8000 2400 0 919999999 17 0 0 88 0.2 0 0 +1.44072E7 12 6 67 95759 31 1323 338 4 0 4 427 0 429 167 150 1.5 9 9 8000 3000 0 919999999 17 0 0 88 0.2 0 0 +1.44108E7 11 6 71 95740 0 158 315 0 0 0 0 0 0 0 290 1.5 5 5 8000 2000 0 919999999 17 0 0 88 0.2 0 0 +1.44144E7 9.9 5.7 75 96253 0 0 328 0 0 0 0 0 0 0 290 1.5 9 9 8000 5100 9 999999999 17 0 0 88 0.2 0 0 +1.4418E7 9 6 81 95702 0 0 324 0 0 0 0 0 0 0 350 1 9 9 8000 5400 9 999999999 17 0 0 88 0.2 0 0 +1.44216E7 10 6 76 95721 0 0 338 0 0 0 0 0 0 0 191 1 10 10 8000 5100 9 999999999 17 0 0 88 0.2 0 0 +1.44252E7 9 6 81 95702 0 0 333 0 0 0 0 0 0 0 313 1 10 10 8000 5400 9 999999999 17 0 0 88 0.2 0 0 +1.44288E7 8 6 87 95683 0 0 329 0 0 0 0 0 0 0 60 2.6 10 10 7000 5400 9 999999999 17 0 0 88 0.2 0 0 +1.44324E7 8 6 87 95683 0 0 329 0 0 0 0 0 0 0 322 1 10 10 6000 5100 9 999999999 17 0 0 88 0.2 0 0 +1.4436E7 7.5 5.7 88 96018 0 0 326 0 0 0 0 0 0 0 100 0.5 10 10 6000 4800 9 999999999 17 0 0 88 0.2 0 0 +1.44396E7 7 6 93 95663 0 0 324 0 0 0 0 0 0 0 149 0.5 10 10 6000 5100 9 999999999 17 0 0 88 0.2 0 0 +1.44432E7 7 6 93 95663 0 0 324 0 0 0 0 0 0 0 340 1.5 10 10 6000 5100 9 999999999 17 0 0 88 0.2 0 0 +1.44468E7 6.8 5.2 90 95881 0 0 322 0 0 0 0 0 0 0 64 1 10 10 5000 4800 9 999999999 16 0 0 88 0.2 0 0 +1.44504E7 7 6 93 95663 0 0 315 0 0 0 0 0 0 0 77 1 9 9 5000 4800 9 999999999 17 0 0 88 0.2 0 0 +1.4454E7 7 5 87 95663 0 0 314 0 0 0 0 0 0 0 250 0.5 9 9 6000 4500 9 999999999 16 0 0 88 0.2 0 0 +1.44576E7 7.3 5.3 87 95929 0 0 316 0 0 0 0 0 0 0 10 2.1 9 9 5000 4500 9 999999999 16 0 0 88 0.2 0 0 +1.44612E7 7 6 93 95663 165 874 315 30 0 30 2904 0 2925 1081 247 1 9 9 4000 4500 9 999999999 17 0 0 88 0.2 0 0 +1.44648E7 8 6 87 95683 384 1323 319 109 10 106 12117 499 11850 3804 40 3.1 9 9 4000 2400 9 999999999 17 0 0 88 0.2 0 0 +1.44684E7 10.5 6.6 77 95839 558 1323 332 183 18 176 20469 1281 19732 6554 202 1 9 9 5000 3000 9 999999999 18 0 0 88 0.2 0 0 +1.4472E7 12 7 71 95759 673 1323 339 236 87 192 26776 6476 21878 7782 160 1.5 9 9 5000 3600 9 999999999 19 0 0 88 0.2 0 0 +1.44756E7 13 6 62 95778 723 1323 324 467 194 361 50918 19690 39592 11538 120 1.5 5 5 6000 3600 9 999999999 17 0 0 88 0.2 0 0 +1.44792E7 14.2 5.4 55 95682 705 1323 348 251 91 202 28553 6985 23167 8300 102 1 9 9 7000 3000 9 999999999 16 0 0 88 0.2 0 0 +1.44828E7 15 5 51 95815 618 1323 351 211 40 193 23721 3029 21745 7409 150 3.1 9 9 7000 3000 9 999999999 15 0 0 88 0.2 0 0 +1.44864E7 15 5 51 95815 470 1323 351 145 14 140 16157 871 15690 5107 150 3.1 9 9 7000 3000 9 999999999 15 0 0 88 0.2 0 0 +1.449E7 14.3 5.8 57 95675 269 1323 349 64 0 64 6309 0 6355 2279 110 2.6 9 9 7000 3000 0 919999999 17 0 0 88 0.2 0 0 +1.44936E7 14 6 59 95797 31 1323 348 4 0 4 432 0 435 169 120 3.6 9 9 7000 3000 0 919999999 17 0 0 88 0.2 0 0 +1.44972E7 14 7 63 95797 0 160 349 0 0 0 0 0 0 0 234 2.1 9 9 7000 2400 0 919999999 19 0 0 88 0.2 0 0 +1.45008E7 11.7 7.7 76 95673 0 0 339 0 0 0 0 0 0 0 208 1 9 9 7000 3000 9 999999999 20 0 0 88 0.2 0 0 +1.45044E7 12 7 71 95759 0 0 339 0 0 0 0 0 0 0 240 2.1 9 9 7000 1800 9 999999999 19 0 0 88 0.2 0 0 +1.4508E7 12 7 71 95759 0 0 339 0 0 0 0 0 0 0 160 2.1 9 9 7000 1800 9 999999999 19 0 0 88 0.2 0 0 +1.45116E7 11.9 7.4 74 95630 0 0 339 0 0 0 0 0 0 0 180 2.6 9 9 7000 2400 9 999999999 20 0 0 88 0.2 0 0 +1.45152E7 13 8 72 95778 0 0 355 0 0 0 0 0 0 0 150 2.6 10 10 7000 2400 9 999999999 21 0 0 88 0.2 0 0 +1.45188E7 13 7 67 95778 0 0 354 0 0 0 0 0 0 0 140 2.6 10 10 7000 2400 9 999999999 19 0 0 88 0.2 0 0 +1.45224E7 13 7.6 70 95632 0 0 354 0 0 0 0 0 0 0 140 6.2 10 10 7000 2100 9 999999999 20 0 0 88 0.2 0 0 +1.4526E7 11 9 87 95740 0 0 346 0 0 0 0 0 0 0 170 2.6 10 10 7000 1500 0 919999999 23 0 0 88 0.2 6 0 +1.45296E7 12 8 76 95759 0 0 350 0 0 0 0 0 0 0 100 3.6 10 10 7000 1200 0 919999999 21 0 0 88 0.2 0 0 +1.45332E7 10.4 8.6 89 95667 0 0 343 0 0 0 0 0 0 0 350 4.6 10 10 8000 1500 0 919999999 22 0 0 88 0.2 6 0 +1.45368E7 10 9 93 95721 0 0 341 0 0 0 0 0 0 0 20 5.1 10 10 7000 900 0 919999999 23 0 0 88 0.2 4.5 0 +1.45404E7 10 9 93 95721 0 0 341 0 0 0 0 0 0 0 4 1 10 10 5000 900 0 919999999 23 0 0 88 0.2 0 0 +1.4544E7 9.4 7.4 87 95885 0 0 337 0 0 0 0 0 0 0 200 2.1 10 10 5000 1050 0 919999999 20 0 0 88 0.2 0 0 +1.45476E7 9 7 87 95702 164 867 334 18 0 18 1739 0 1751 701 190 1.5 10 10 5000 1050 0 919999999 19 0 0 88 0.2 0 0 +1.45512E7 9 8 93 95702 383 1323 335 66 0 66 6509 0 6560 2656 80 3.6 10 10 6000 900 0 919999999 21 0 0 88 0.2 0 0 +1.45548E7 8.6 5.9 83 96124 557 1323 322 183 34 169 20487 2419 18978 6372 320 3.6 9 9 6000 1200 0 919999999 17 0 0 88 0.2 0 0 +1.45584E7 11 7 76 95740 672 1323 334 235 42 214 26466 3299 24187 8362 20 6.2 9 9 6000 1800 0 919999999 19 0 0 88 0.2 0 0 +1.4562E7 11 6 71 95740 723 1323 333 259 45 234 29210 3639 26598 9296 340 5.7 9 9 6000 1800 0 919999999 17 0 0 88 0.2 0 0 +1.45656E7 11 5.9 71 96066 704 1323 333 250 44 227 28213 3541 25714 8948 350 6.2 9 9 6000 1500 0 919999999 17 0 0 88 0.2 0 0 +1.45692E7 11 6 71 95740 618 1323 333 210 39 192 23641 2968 21694 7397 310 2.6 9 9 6000 1500 0 919999999 17 0 0 88 0.2 0 0 +1.45728E7 10 6 76 95721 470 1323 329 144 13 140 16105 846 15649 5099 220 2.6 9 9 6000 1500 0 919999999 17 0 0 88 0.2 0 0 +1.45764E7 9.1 6.4 83 96181 270 1323 325 64 0 64 6296 0 6342 2277 270 2.1 9 9 6000 1500 0 919999999 18 0 0 88 0.2 0 0 +1.458E7 9 7 87 95702 32 1323 325 5 0 5 435 0 438 171 46 0.5 9 9 6000 1500 0 919999999 19 0 0 88 0.2 0 0 +1.45836E7 9 6 81 95702 0 162 324 0 0 0 0 0 0 0 20 2.6 9 9 6000 1500 0 919999999 17 0 0 88 0.2 0 0 +1.45872E7 8.7 5.8 82 96419 0 0 316 0 0 0 0 0 0 0 320 1 8 8 6000 1500 9 999999999 17 0 0 88 0.2 4 0 +1.45908E7 8 6 87 95683 0 0 319 0 0 0 0 0 0 0 30 1.5 9 9 6000 1500 9 999999999 17 0 0 88 0.2 4 0 +1.45944E7 8 7 93 95683 0 0 321 0 0 0 0 0 0 0 322 1 9 9 6000 1500 9 999999999 19 0 0 88 0.2 4 0 +1.4598E7 7.9 6.2 89 96554 0 0 313 0 0 0 0 0 0 0 140 1.5 8 8 6000 1500 9 999999999 18 0 0 88 0.2 1 0 +1.46016E7 8 7 93 95683 0 0 321 0 0 0 0 0 0 0 80 2.6 9 9 6000 1500 0 919999999 19 0 0 88 0.2 0 0 +1.46052E7 8 7 93 95683 0 0 321 0 0 0 0 0 0 0 213 1 9 9 6000 1500 0 919999999 19 0 0 88 0.2 0 0 +1.46088E7 7.6 6.5 93 96605 0 0 318 0 0 0 0 0 0 0 310 1.5 9 9 6000 1500 0 919999999 18 0 0 88 0.2 0 0 +1.46124E7 8 7 93 95683 0 0 321 0 0 0 0 0 0 0 220 2.1 9 9 8000 1500 0 919999999 19 0 0 88 0.2 0 0 +1.4616E7 8 6 87 95683 0 0 319 0 0 0 0 0 0 0 228 1 9 9 8000 1500 0 919999999 17 0 0 88 0.2 0 0 +1.46196E7 7.5 6.6 94 96631 0 0 318 0 0 0 0 0 0 0 130 1 9 9 8000 600 0 919999999 18 0 0 88 0.2 0 0 +1.46232E7 8 7 93 95683 0 0 321 0 0 0 0 0 0 0 260 1 9 9 8000 750 0 919999999 19 0 0 88 0.2 0 0 +1.46268E7 7 6 93 95663 0 0 315 0 0 0 0 0 0 0 210 2.1 9 9 8000 1500 0 919999999 17 0 0 88 0.2 0 0 +1.46304E7 7.3 6.1 92 96760 0 0 316 0 0 0 0 0 0 0 160 2.1 9 9 8000 1500 0 919999999 18 0 0 88 0.2 0 0 +1.4634E7 7 6 93 95663 163 860 297 52 65 44 5754 0 4888 1434 180 2.1 5 5 8000 1500 0 919999999 17 0 0 88 0.2 0 0 +1.46376E7 8 6 87 95683 382 1323 302 194 346 94 21807 16585 10609 3493 329 0 5 5 8000 2000 0 919999999 17 0 0 88 0.2 0 0 +1.46412E7 8.9 5.4 79 96791 556 1323 305 329 498 120 37897 30753 13862 4989 360 1.5 5 5 8000 2000 0 919999999 16 0 0 88 0.2 0 0 +1.46448E7 10 6 76 95721 672 1323 310 424 576 131 49612 37529 15436 5845 237 1.5 5 5 8000 1200 0 919999999 17 0 0 88 0.2 0 0 +1.46484E7 11 7 76 95740 722 1323 311 493 714 104 59358 43252 12517 4939 100 1.5 3 3 8000 2000 0 919999999 19 0 0 88 0.2 0 0 +1.4652E7 11.8 4.2 60 96582 704 1323 311 479 725 94 57974 43520 11383 4483 360 2.1 3 3 8000 2000 0 919999999 14 0 0 88 0.2 0 0 +1.46556E7 12 4 58 95759 618 1323 312 404 659 96 47962 38930 11405 4342 40 1.5 3 3 8000 2000 0 919999999 14 0 0 88 0.2 0 0 +1.46592E7 13 3 51 95778 470 1323 315 278 508 97 31930 27931 11217 3936 152 1 3 3 8000 2000 0 919999999 13 0 0 88 0.2 0 0 +1.46628E7 12.5 3.3 53 96530 270 1323 314 123 278 67 13791 8105 7472 2343 260 1.5 3 3 8000 2000 0 919999999 13 0 0 88 0.2 0 0 +1.46664E7 10 6 76 95721 32 1323 306 9 0 9 849 0 855 303 220 4.6 3 3 8000 2000 0 919999999 17 0 0 88 0.2 0 0 +1.467E7 9 6 81 95702 0 165 317 0 0 0 0 0 0 0 210 3.1 8 8 9900 2000 0 919999999 17 0 0 88 0.2 0 0 +1.46736E7 8.7 5.2 79 96579 0 0 299 0 0 0 0 0 0 0 90 1 3 3 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +1.46772E7 8 6 87 95683 0 0 297 0 0 0 0 0 0 0 160 1.5 3 3 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +1.46808E7 7 6 93 95663 0 0 293 0 0 0 0 0 0 0 160 2.1 3 3 7000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.46844E7 5.1 3.6 90 96603 0 0 283 0 0 0 0 0 0 0 343 0.5 3 3 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.4688E7 5 4 93 95624 0 0 271 0 0 0 0 0 0 0 101 0.5 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.46916E7 4 3 93 95604 0 0 266 0 0 0 0 0 0 0 139 0.5 0 0 4000 2000 0 999999999 13 0 0 88 0.2 0 0 +1.46952E7 3.4 2.3 92 96701 0 0 263 0 0 0 0 0 0 0 75 1 0 0 5000 2000 0 999999999 12 0 0 88 0.2 0 0 +1.46988E7 2 1 93 95564 0 0 257 0 0 0 0 0 0 0 10 1 0 0 5000 2000 0 999999999 11 0 0 88 0.2 0 0 +1.47024E7 2 1 93 95564 0 0 257 0 0 0 0 0 0 0 40 2.6 0 0 5000 2000 0 999999999 11 0 0 88 0.2 0 0 +1.4706E7 2 1.4 96 96653 0 0 257 0 0 0 0 0 0 0 30 1.5 0 0 3000 2000 0 999999999 11 0 0 88 0.2 0 0 +1.47096E7 2 1 93 95564 0 0 257 0 0 0 0 0 0 0 190 2.6 0 0 5000 2000 0 999999999 11 0 0 88 0.2 0 0 +1.47132E7 1 1 100 95544 0 0 268 0 0 0 0 0 0 0 220 2.1 5 5 2000 2000 0 999999999 11 0 0 88 0.2 0 0 +1.47168E7 3.2 2.6 96 96734 0 0 295 0 0 0 0 0 0 0 41 1.5 9 9 5000 450 0 999999999 12 0 0 88 0.2 0 0 +1.47204E7 4 3 93 95604 161 854 299 29 0 29 2806 0 2825 1045 350 2.1 9 9 5000 390 0 999999999 13 0 0 88 0.2 0 0 +1.4724E7 6 4 87 95644 381 1322 308 107 9 105 11988 493 11728 3759 70 2.1 9 9 5000 390 0 999999999 14 0 0 88 0.2 0 0 +1.47276E7 7.4 4.5 82 96365 555 1322 315 182 72 152 20610 4917 17295 5944 60 1.5 9 9 7000 390 0 999999999 15 0 0 88 0.2 0 0 +1.47312E7 8 5 81 95683 671 1322 301 424 469 186 48288 35082 21267 7600 53 1 5 5 8000 2000 0 999999999 16 0 0 88 0.2 0 0 +1.47348E7 10 5 71 95721 722 1322 312 443 483 180 51120 35431 20836 7726 330 1.5 6 6 9900 2000 0 999999999 16 0 0 88 0.2 0 0 +1.47384E7 11.3 5.3 67 96554 703 1322 298 484 649 139 56830 43426 16373 6249 94 1 0 0 9900 2000 0 999999999 16 0 0 88 0.2 0 0 +1.4742E7 12 6 67 95759 618 1322 319 376 500 142 43283 33378 16470 5992 286 1.5 5 5 9900 2000 0 999999999 17 0 0 88 0.2 0 0 +1.47456E7 13 5 58 95778 470 1322 320 274 506 94 31529 27005 10864 3834 180 2.6 4 4 9900 2000 0 999999999 15 0 0 88 0.2 0 0 +1.47492E7 12.3 3.9 56 96431 271 1322 300 125 299 64 14044 8357 7195 2278 170 4.6 0 0 9900 2000 0 999999999 14 0 0 88 0.2 0 0 +1.47528E7 10 6 76 95721 33 1322 317 7 0 7 721 0 725 266 190 3.6 7 7 9900 2000 0 999999999 17 0 0 88 0.2 0 0 +1.47564E7 9 4 71 95702 0 169 307 0 0 0 0 0 0 0 180 2.1 6 6 9900 2000 0 999999999 14 0 0 88 0.2 0 0 +1.476E7 8 4.5 79 96518 0 0 283 0 0 0 0 0 0 0 180 1.5 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +1.47636E7 8 5 81 95683 0 0 312 0 0 0 0 0 0 0 150 2.1 8 8 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +1.47672E7 6 4 87 95644 0 0 275 0 0 0 0 0 0 0 345 1 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.47708E7 5.7 4.2 90 96558 0 0 290 0 0 0 0 0 0 0 171 0.5 5 5 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.47744E7 6 4 87 95644 0 0 287 0 0 0 0 0 0 0 90 2.1 3 3 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.4778E7 6 4 87 95644 0 0 291 0 0 0 0 0 0 0 260 1.5 5 5 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.47816E7 5.3 4.2 93 96531 0 0 288 0 0 0 0 0 0 0 30 2.1 5 5 6000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.47852E7 5 4 93 95624 0 0 287 0 0 0 0 0 0 0 150 1 5 5 5000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.47888E7 6 4 87 95644 0 0 308 0 0 0 0 0 0 0 280 1.5 9 9 5000 3900 9 999999999 14 0 0 88 0.2 0 0 +1.47924E7 5.4 4.2 92 96543 0 0 306 0 0 0 0 0 0 0 350 0.5 9 9 7000 3600 9 999999999 15 0 0 88 0.2 0 0 +1.4796E7 5 4 93 95624 0 0 304 0 0 0 0 0 0 0 50 2.1 9 9 5000 3600 9 999999999 14 0 0 88 0.2 0 0 +1.47996E7 5 4 93 95624 0 0 304 0 0 0 0 0 0 0 360 1.5 9 9 5000 3300 9 999999999 14 0 0 88 0.2 0 0 +1.48032E7 5.5 4.1 91 96658 0 0 306 0 0 0 0 0 0 0 150 2.1 9 9 5000 3300 9 999999999 14 0 0 88 0.2 0 0 +1.48068E7 7 5 87 95663 160 848 314 28 0 28 2767 0 2786 1033 22 1 9 9 5000 3300 9 999999999 16 0 0 88 0.2 0 0 +1.48104E7 7 5 87 95663 380 1322 296 193 277 113 21352 14942 12573 3944 290 1.5 5 5 5000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.4814E7 9 5.7 80 96774 554 1322 317 236 139 178 26379 10241 19964 6580 20 1.5 8 8 7000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.48176E7 10 6 76 95721 670 1322 329 234 12 229 26259 945 25738 8705 20 1.5 9 9 8000 5100 9 999999999 17 0 0 88 0.2 0 0 +1.48212E7 11 5 66 95740 721 1322 332 259 45 234 29195 3679 26570 9278 263 0.5 9 9 7000 5400 9 999999999 15 0 0 88 0.2 0 0 +1.48248E7 10.9 5.9 71 96669 703 1322 333 250 43 227 28177 3462 25740 8952 200 1.5 9 9 7000 5400 9 999999999 17 0 0 88 0.2 0 0 +1.48284E7 11 5 66 95740 618 1322 342 129 0 129 13034 0 13144 5535 230 2.1 10 10 7000 5400 9 999999999 15 0 0 88 0.2 0 0 +1.4832E7 11 6 71 95740 470 1322 343 88 0 88 8836 0 8907 3651 240 1.5 10 10 7000 5400 9 999999999 17 0 0 88 0.2 0 0 +1.48356E7 11 6.4 73 96766 271 1322 343 39 0 39 3874 0 3903 1559 9 1 10 10 6000 5100 9 999999999 18 0 0 88 0.2 0 0 +1.48392E7 10 6 76 95721 34 1322 329 5 0 5 464 0 467 181 160 2.1 9 9 6000 3000 9 999999999 17 0 0 88 0.2 0 0 +1.48428E7 9 7 87 95702 0 172 325 0 0 0 0 0 0 0 200 1.5 9 9 6000 4500 9 999999999 19 0 0 88 0.2 0 0 +1.48464E7 9.3 6.6 83 96950 0 0 326 0 0 0 0 0 0 0 285 1 9 9 6000 4500 9 999999999 18 0 0 88 0.2 0 0 +1.485E7 9 7 87 95702 0 0 325 0 0 0 0 0 0 0 280 1.5 9 9 6000 4200 9 999999999 19 0 0 88 0.2 0 0 +1.48536E7 9 7 87 95702 0 0 325 0 0 0 0 0 0 0 70 3.1 9 9 5000 3900 9 999999999 19 0 0 88 0.2 0 0 +1.48572E7 8.8 6.3 84 96931 0 0 323 0 0 0 0 0 0 0 30 1.5 9 9 5000 2000 9 999999999 18 0 0 88 0.2 0 0 +1.48608E7 8 6 87 95683 0 0 319 0 0 0 0 0 0 0 326 0.5 9 9 5000 3900 9 999999999 17 0 0 88 0.2 0 0 +1.48644E7 8 6 87 95683 0 0 319 0 0 0 0 0 0 0 300 1 9 9 5000 4200 9 999999999 17 0 0 88 0.2 0 0 +1.4868E7 7.3 5.9 91 96816 0 0 316 0 0 0 0 0 0 0 195 1 9 9 5000 5100 9 999999999 17 0 0 88 0.2 0 0 +1.48716E7 7 6 93 95663 0 0 315 0 0 0 0 0 0 0 100 1.5 9 9 4000 4800 9 999999999 17 0 0 88 0.2 0 0 +1.48752E7 7 6 93 95663 0 0 315 0 0 0 0 0 0 0 40 2.1 9 9 4000 4800 9 999999999 17 0 0 88 0.2 0 0 +1.48788E7 7.1 5.5 90 96793 0 0 315 0 0 0 0 0 0 0 350 1.5 9 9 4000 4800 9 999999999 17 0 0 88 0.2 0 0 +1.48824E7 7 5 87 95663 0 0 314 0 0 0 0 0 0 0 160 1 9 9 4000 4500 9 999999999 16 0 0 88 0.2 0 0 +1.4886E7 7 5 87 95663 0 0 314 0 0 0 0 0 0 0 58 0.5 9 9 5000 4500 9 999999999 16 0 0 88 0.2 0 0 +1.48896E7 6.4 4.4 87 96685 0 0 293 0 0 0 0 0 0 0 50 1.5 5 5 3000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.48932E7 6 5 93 95644 160 843 276 55 87 44 5999 0 4864 1419 30 2.1 0 0 3000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.48968E7 8 6 87 95683 379 1322 285 206 428 83 23399 19116 9482 3187 124 0 0 0 4000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.49004E7 10.8 6.2 73 96516 553 1322 309 347 576 105 40302 33679 12302 4501 260 1.5 3 3 5000 2000 9 999999999 18 0 0 88 0.2 0 0 +1.4904E7 13 6 62 95778 670 1322 305 454 712 93 54558 41816 11234 4377 286 1.5 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.49076E7 16 6 51 95834 721 1322 332 496 740 93 60239 43918 11299 4482 259 0.5 3 3 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +1.49112E7 17.2 3.5 40 96031 703 1322 335 480 727 93 58091 43771 11287 4447 230 0.5 3 3 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +1.49148E7 18 2 34 95870 618 1322 323 411 688 89 49126 40311 10683 4086 308 0.5 0 0 9900 2000 9 999999999 11 0 0 88 0.2 0 0 +1.49184E7 19 3 34 95888 471 1322 329 282 473 114 32074 27912 13011 4447 210 1.5 0 0 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +1.4922E7 19.1 -0.9 26 95914 272 1322 344 118 198 78 13089 6980 8613 2602 210 3.6 5 5 9900 2000 9 999999999 8 0 0 88 0.2 0 0 +1.49256E7 16 6 51 95834 35 1322 332 9 0 9 910 0 916 323 190 2.6 3 3 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +1.49292E7 15 6 55 95815 0 177 333 0 0 0 0 0 0 0 170 1.5 5 5 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +1.49328E7 14.7 5.4 54 95956 0 0 331 0 0 0 0 0 0 0 140 2.6 5 5 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +1.49364E7 13 6 62 95778 0 0 343 0 0 0 0 0 0 0 291 1 9 9 9900 5400 9 999999999 17 0 0 88 0.2 0 0 +1.494E7 10 5 71 95721 0 0 309 0 0 0 0 0 0 0 109 1 5 5 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +1.49436E7 8.4 4.7 78 95827 0 0 297 0 0 0 0 0 0 0 150 0.5 3 3 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.49472E7 8 5 81 95683 0 0 284 0 0 0 0 0 0 0 43 1 0 0 6000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.49508E7 6 4 87 95644 0 0 275 0 0 0 0 0 0 0 340 1 0 0 6000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.49544E7 5.3 4 91 95710 0 0 272 0 0 0 0 0 0 0 40 2.6 0 0 5000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.4958E7 5 4 93 95624 0 0 271 0 0 0 0 0 0 0 172 1 0 0 5000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.49616E7 4 3 93 95604 0 0 266 0 0 0 0 0 0 0 50 1 0 0 5000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.49652E7 4.3 2.7 89 95785 0 0 267 0 0 0 0 0 0 0 110 2.1 0 0 6000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.49688E7 4 2 87 95604 0 0 281 0 0 0 0 0 0 0 240 2.1 5 5 5000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.49724E7 4 3 93 95604 0 0 299 0 0 0 0 0 0 0 20 1.5 9 9 6000 3600 9 999999999 13 0 0 88 0.2 0 0 +1.4976E7 5.1 3.3 88 95867 0 0 304 0 0 0 0 0 0 0 360 3.1 9 9 5000 3600 9 999999999 13 0 0 88 0.2 0 0 +1.49796E7 6 3 81 95644 159 838 307 28 0 28 2728 0 2747 1018 296 1 9 9 5000 3900 9 999999999 13 0 0 88 0.2 0 0 +1.49832E7 8 5 81 95683 378 1322 318 106 9 104 11858 465 11611 3723 44 1.5 9 9 7000 3900 9 999999999 16 0 0 88 0.2 0 0 +1.49868E7 8.5 4.5 76 95810 553 1322 320 181 18 174 20285 1292 19552 6480 140 2.1 9 9 8000 3300 9 999999999 15 0 0 88 0.2 0 0 +1.49904E7 10 5 71 95721 670 1322 328 235 42 213 26425 3372 24124 8326 130 3.6 9 9 8000 2400 9 999999999 16 0 0 88 0.2 0 0 +1.4994E7 10 6 76 95721 721 1322 329 258 45 234 29125 3628 26524 9269 150 2.6 9 9 8000 2400 9 999999999 17 0 0 88 0.2 0 0 +1.49976E7 9.5 7.3 86 96009 704 1322 328 249 43 226 28117 3468 25650 8937 170 4.1 9 9 5000 1800 0 919999999 20 0 0 88 0.2 0 0 +1.50012E7 10 8 87 95721 619 1322 331 210 39 192 23594 2884 21676 7406 150 2.1 9 9 5000 1500 0 919999999 21 0 0 88 0.2 0 0 +1.50048E7 10 9 93 95721 472 1322 332 145 13 140 16109 809 15664 5121 170 1.5 9 9 5000 1500 0 919999999 23 0 0 88 0.2 0 0 +1.50084E7 9.2 8.1 93 96098 273 1322 327 65 0 65 6385 0 6432 2313 260 2.1 9 9 4000 1500 0 919999999 21 0 0 88 0.2 0 0 +1.5012E7 9 8 93 95702 36 1322 326 5 0 5 487 0 491 190 72 1 9 9 5000 1500 0 919999999 21 0 0 88 0.2 0 0 +1.50156E7 9 8 93 95702 0 182 326 0 0 0 0 0 0 0 250 2.1 9 9 3500 600 0 919999999 21 0 0 88 0.2 0 0 +1.50192E7 8.8 8 95 96213 0 0 335 0 0 0 0 0 0 0 10 1.5 10 10 4000 1500 0 919999999 21 0 0 88 0.2 6 0 +1.50228E7 10 8 87 95721 0 0 331 0 0 0 0 0 0 0 360 5.7 9 9 8000 1500 0 919999999 21 0 0 88 0.2 6 0 +1.50264E7 10 8 87 95721 0 0 331 0 0 0 0 0 0 0 200 4.1 9 9 8000 1500 0 919999999 21 0 0 88 0.2 4.5 0 +1.503E7 9 7.4 90 96368 0 0 335 0 0 0 0 0 0 0 200 5.7 10 10 8000 900 0 919999999 20 0 0 88 0.2 0 0 +1.50336E7 9 7 87 95702 0 0 334 0 0 0 0 0 0 0 180 5.1 10 10 8000 1200 0 919999999 19 0 0 88 0.2 0 0 +1.50372E7 8 6 87 95683 0 0 329 0 0 0 0 0 0 0 180 5.1 10 10 8000 1200 0 919999999 17 0 0 88 0.2 0 0 +1.50408E7 7 6.2 95 96612 0 0 324 0 0 0 0 0 0 0 130 4.1 10 10 8000 1200 0 919999999 18 0 0 88 0.2 0 0 +1.50444E7 7 6 93 95663 0 0 324 0 0 0 0 0 0 0 110 3.1 10 10 8000 1200 0 919999999 17 0 0 88 0.2 0 0 +1.5048E7 7 5 87 95663 0 0 323 0 0 0 0 0 0 0 270 2.1 10 10 8000 1200 0 919999999 16 0 0 88 0.2 0 0 +1.50516E7 7 6 93 95663 0 0 315 0 0 0 0 0 0 0 270 1.5 9 9 8000 1800 0 919999999 17 0 0 88 0.2 0 0 +1.50552E7 7 5 87 95663 0 0 296 0 0 0 0 0 0 0 76 0 5 5 8000 1800 0 919999999 16 0 0 88 0.2 0 0 +1.50588E7 6 5 93 95644 0 0 292 0 0 0 0 0 0 0 10 2.1 5 5 8000 2000 0 919999999 16 0 0 88 0.2 0 0 +1.50624E7 6 4.3 89 96724 0 0 289 0 0 0 0 0 0 0 278 1 4 4 8000 2000 0 919999999 15 0 0 88 0.2 0 0 +1.5066E7 5 5 100 95624 158 834 288 50 61 43 5507 0 4722 1385 232 1 5 5 5000 2000 0 919999999 16 0 0 88 0.2 0 0 +1.50696E7 8 6 87 95683 378 1322 302 191 342 93 21469 16227 10514 3455 12 1 5 5 6000 2000 0 919999999 17 0 0 88 0.2 0 0 +1.50732E7 9.2 6.5 83 96844 552 1322 303 346 576 105 40194 33513 12248 4482 190 2.1 3 3 6000 2000 0 919999999 18 0 0 88 0.2 0 0 +1.50768E7 10 6 76 95721 669 1322 306 448 697 95 53737 41108 11396 4436 230 2.6 3 3 6000 2000 0 919999999 17 0 0 88 0.2 0 0 +1.50804E7 12 6 67 95759 721 1322 314 493 728 96 59716 43606 11694 4630 290 1.5 3 3 6000 2000 0 919999999 17 0 0 88 0.2 0 0 +1.5084E7 13.4 6.8 64 96594 704 1322 308 484 730 95 58406 43177 11536 4546 92 1 0 0 6000 2000 0 919999999 19 0 0 88 0.2 0 0 +1.50876E7 14 6 59 95797 619 1322 326 397 587 122 46290 37025 14297 5322 254 1 4 4 9900 2000 0 919999999 17 0 0 88 0.2 0 0 +1.50912E7 14 7 63 95797 472 1322 329 268 447 108 30520 25044 12369 4281 180 3.6 5 5 9900 2000 0 919999999 19 0 0 88 0.2 0 0 +1.50948E7 13.8 6.4 61 96535 274 1322 309 127 300 65 14225 8286 7279 2310 180 3.6 0 0 9900 2000 0 919999999 18 0 0 88 0.2 0 0 +1.50984E7 12 7 71 95759 37 1322 323 9 0 9 862 0 867 311 190 2.6 6 6 9900 2000 0 919999999 19 0 0 88 0.2 0 0 +1.5102E7 11 6 71 95740 0 187 317 0 0 0 0 0 0 0 190 1.5 6 6 9900 2000 0 919999999 17 0 0 88 0.2 0 0 +1.51056E7 9.8 6.3 79 96572 0 0 292 0 0 0 0 0 0 0 140 2.1 0 0 9900 2000 9 999999999 18 0 0 88 0.2 0 0 +1.51092E7 9 4 71 95702 0 0 307 0 0 0 0 0 0 0 170 1.5 6 6 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +1.51128E7 8 4 76 95683 0 0 306 0 0 0 0 0 0 0 167 0 7 7 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +1.51164E7 6.5 4.7 88 96508 0 0 277 0 0 0 0 0 0 0 209 0.5 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +1.512E7 4 3 93 95604 0 0 266 0 0 0 0 0 0 0 255 0.5 0 0 6000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.51236E7 4 2 87 95604 0 0 265 0 0 0 0 0 0 0 334 0 0 0 3000 2000 0 999999999 12 0 0 88 0.2 0 0 +1.51272E7 2.6 1.8 94 96326 0 0 260 0 0 0 0 0 0 0 25 1 0 0 2000 2000 0 999999999 11 0 0 88 0.2 0 0 +1.51308E7 2 1 93 95564 0 0 296 0 0 0 0 0 0 0 234 0.5 10 10 2000 2000 0 999999999 11 0 0 88 0.2 0 0 +1.51344E7 1 1 100 95544 0 0 253 0 0 0 0 0 0 0 35 0 0 0 700 2000 0 999999999 11 0 0 88 0.2 0 0 +1.5138E7 0.5 0.2 98 96151 0 0 250 0 0 0 0 0 0 0 290 1 0 0 500 2000 0 999999999 10 0 0 88 0.2 0 0 +1.51416E7 1 1 100 95544 0 0 292 0 0 0 0 0 0 0 10 0.5 10 10 300 2000 0 999999999 11 0 0 88 0.2 0 0 +1.51452E7 1 1 100 95544 0 0 268 0 0 0 0 0 0 0 50 1.5 5 5 1200 2000 0 999999999 11 0 0 88 0.2 0 0 +1.51488E7 0.8 -0.6 90 96101 0 0 281 0 0 0 0 0 0 0 335 1 9 9 5000 5400 0 999999999 9 0 0 88 0.2 0 0 +1.51524E7 2 2 100 95564 157 831 297 17 0 17 1644 0 1656 661 46 0.5 10 10 4000 6600 0 999999999 12 0 0 88 0.2 0 0 +1.5156E7 3 2 93 95584 377 1322 277 192 255 119 21170 14460 13175 4053 360 2.1 5 5 4000 2000 0 999999999 12 0 0 88 0.2 0 0 +1.51596E7 4.7 3.6 93 96151 552 1322 311 111 0 111 11161 0 11253 4675 263 1 10 10 5000 2000 0 999999999 14 0 0 88 0.2 0 0 +1.51632E7 7 5 87 95663 669 1322 314 234 87 190 26654 6574 21749 7724 44 1 9 9 5000 5400 0 999999999 16 0 0 88 0.2 0 0 +1.51668E7 9 7 87 95702 721 1322 307 465 485 200 53097 36703 22930 8336 290 1.5 5 5 5000 2000 0 999999999 19 0 0 88 0.2 0 0 +1.51704E7 11.7 6.7 71 95919 704 1322 319 451 514 177 51866 37168 20417 7530 204 1 5 5 5000 2000 0 999999999 18 0 0 88 0.2 0 0 +1.5174E7 13 7 67 95778 620 1322 325 380 537 129 44154 34252 15009 5553 4 1 5 5 5000 2000 0 999999999 19 0 0 88 0.2 0 0 +1.51776E7 14 6 59 95797 473 1322 310 283 505 102 32407 27826 11725 4100 158 1.5 0 0 5000 2000 0 999999999 17 0 0 88 0.2 0 0 +1.51812E7 14.2 7.7 65 95919 275 1322 334 111 179 74 12330 5528 8224 2536 180 3.6 6 6 5000 7500 0 999999999 20 0 0 88 0.2 0 0 +1.51848E7 12 6 67 95759 38 1322 319 10 0 10 929 0 935 331 170 3.6 5 5 9900 7500 0 999999999 17 0 0 88 0.2 0 0 +1.51884E7 11 6 71 95740 0 193 317 0 0 0 0 0 0 0 160 2.6 6 6 9900 7500 0 999999999 17 0 0 88 0.2 0 0 +1.5192E7 9.3 6 80 96062 0 0 310 0 0 0 0 0 0 0 160 2.6 6 6 9900 7500 9 999999999 17 0 0 88 0.2 0 0 +1.51956E7 8 5 81 95683 0 0 312 0 0 0 0 0 0 0 150 3.1 8 8 9900 7500 9 999999999 16 0 0 88 0.2 0 0 +1.51992E7 8 5 81 95683 0 0 312 0 0 0 0 0 0 0 150 3.1 8 8 9900 7500 9 999999999 16 0 0 88 0.2 0 0 +1.52028E7 7.6 3.9 77 96161 0 0 296 0 0 0 0 0 0 0 160 3.1 4 4 9900 7500 9 999999999 14 0 0 88 0.2 0 0 +1.52064E7 6 3 81 95644 0 0 301 0 0 0 0 0 0 0 160 2.1 8 8 9900 7500 9 999999999 13 0 0 88 0.2 0 0 +1.521E7 4 2 87 95604 0 0 298 0 0 0 0 0 0 0 240 1 9 9 9900 7500 9 999999999 12 0 0 88 0.2 0 0 +1.52136E7 3.6 2.2 91 96195 0 0 264 0 0 0 0 0 0 0 180 2.1 0 0 9900 7500 9 999999999 12 0 0 88 0.2 0 0 +1.52172E7 4 2 87 95604 0 0 298 0 0 0 0 0 0 0 160 1 9 9 9900 7500 9 999999999 12 0 0 88 0.2 0 0 +1.52208E7 2 1 93 95564 0 0 257 0 0 0 0 0 0 0 310 1.5 0 0 6000 2000 0 999999999 11 0 0 88 0.2 0 0 +1.52244E7 1.5 0.5 93 96247 0 0 254 0 0 0 0 0 0 0 260 1.5 0 0 7000 2000 0 999999999 10 0 0 88 0.2 0 0 +1.5228E7 1 -1 86 95544 0 0 262 0 0 0 0 0 0 0 245 0.5 3 3 5000 2000 0 999999999 9 0 0 88 0.2 0 0 +1.52316E7 1 0 93 95544 0 0 283 0 0 0 0 0 0 0 172 0.5 9 9 4000 690 0 999999999 10 0 0 88 0.2 0 0 +1.52352E7 2.7 1.7 93 96385 0 0 292 0 0 0 0 0 0 0 290 1 9 9 4000 690 0 999999999 11 0 0 88 0.2 0 0 +1.52388E7 3 2 93 95584 157 828 302 17 0 17 1636 0 1647 658 141 1 10 10 4000 690 0 999999999 12 0 0 88 0.2 0 0 +1.52424E7 4 3 93 95604 377 1322 299 106 11 103 11846 580 11531 3697 30 1.5 9 9 4000 750 0 999999999 13 0 0 88 0.2 0 0 +1.5246E7 5.9 3.8 86 96571 552 1322 308 181 71 152 20503 4918 17205 5908 320 1.5 9 9 5000 750 0 999999999 14 0 0 88 0.2 0 0 +1.52496E7 9 5 76 95702 669 1322 300 448 554 168 51506 39752 19350 7056 29 0.5 3 3 6000 2000 0 999999999 16 0 0 88 0.2 0 0 +1.52532E7 10 5 71 95721 722 1322 309 466 605 136 54997 40268 16104 6211 30 2.6 5 5 6000 2000 0 999999999 16 0 0 88 0.2 0 0 +1.52568E7 9.9 3.4 64 96612 705 1322 307 454 524 174 52326 38370 20204 7462 310 2.1 5 5 6000 2000 0 999999999 13 0 0 88 0.2 0 0 +1.52604E7 12 3 54 95759 621 1322 316 384 479 159 43862 33978 18241 6514 132 0.5 5 5 8000 2000 0 999999999 13 0 0 88 0.2 0 0 +1.5264E7 11 3 58 95740 474 1322 307 282 512 98 32397 28328 11292 3972 150 2.1 3 3 8000 2000 0 999999999 13 0 0 88 0.2 0 0 +1.52676E7 10.5 3.6 62 96813 276 1322 305 127 286 68 14254 8647 7606 2394 200 4.1 3 3 8000 2000 0 999999999 14 0 0 88 0.2 0 0 +1.52712E7 9 3 66 95702 39 1322 298 11 0 11 1031 0 1038 361 190 3.6 3 3 8000 2000 0 999999999 13 0 0 88 0.2 0 0 +1.52748E7 8 4 76 95683 0 200 295 0 0 0 0 0 0 0 220 3.6 3 3 8000 2000 0 999999999 14 0 0 88 0.2 0 0 +1.52784E7 6.5 1.6 71 97008 0 0 286 0 0 0 0 0 0 0 220 3.1 3 3 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.5282E7 6 2 75 95644 0 0 295 0 0 0 0 0 0 0 140 1.5 7 7 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +1.52856E7 4 1 81 95604 0 0 290 0 0 0 0 0 0 0 270 1.5 8 8 9900 2000 9 999999999 11 0 0 88 0.2 0 0 +1.52892E7 3.1 1.4 89 97157 0 0 272 0 0 0 0 0 0 0 330 1.5 3 3 9900 2000 9 999999999 11 0 0 88 0.2 0 0 +1.52928E7 2 1 93 95564 0 0 257 0 0 0 0 0 0 0 123 1 0 0 5000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.52964E7 2 1 93 95564 0 0 257 0 0 0 0 0 0 0 187 0.5 0 0 5000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.53E7 1.4 0.1 91 97150 0 0 265 0 0 0 0 0 0 0 344 0 3 3 5000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.53036E7 0 0 100 95523 0 0 259 0 0 0 0 0 0 0 350 1.5 3 3 2000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.53072E7 -1 -2 92 95503 0 0 257 0 0 0 0 0 0 0 20 1.5 5 5 150 2000 0 999999999 8 0 0 88 0.267 0 0 +1.53108E7 -1.4 -1.6 98 97054 0 0 279 0 0 0 0 0 0 0 109 0 10 10 200 30 0 999999999 8 0 0 88 0.293 0 0 +1.53144E7 -1 -2 92 95503 0 0 273 0 0 0 0 0 0 0 199 0.5 9 9 450 2000 0 999999999 8 0 0 88 0.267 0 0 +1.5318E7 -2 -3 92 95482 0 0 268 0 0 0 0 0 0 0 136 1 9 9 350 2000 0 999999999 7 0 0 88 0.333 0 0 +1.53216E7 -1.9 -2 99 96949 0 0 277 0 0 0 0 0 0 0 120 0.5 10 10 500 2000 0 999999999 8 0 0 88 0.327 0 0 +1.53252E7 -2 -3 92 95482 157 825 268 24 0 24 2372 0 2388 904 230 1.5 9 9 400 2000 0 999999999 7 0 0 88 0.333 0 0 +1.53288E7 2 1 93 95564 377 1322 257 206 404 91 23250 19631 10285 3389 275 1 0 0 3000 2000 0 999999999 11 0 0 88 0.2 0 0 +1.53324E7 4.9 3.4 90 96995 552 1322 270 351 632 88 41507 35351 10391 3867 350 1.5 0 0 4000 2000 0 999999999 13 0 0 88 0.2 0 0 +1.5336E7 7 4 81 95663 670 1322 279 455 713 94 54733 42559 11298 4398 350 2.1 0 0 6000 2000 0 999999999 14 0 0 88 0.2 0 0 +1.53396E7 10 3 62 95721 722 1322 290 503 763 86 61499 45446 10548 4194 249 1 0 0 6000 2000 0 999999999 13 0 0 88 0.2 0 0 +1.53432E7 10.9 1.6 53 96773 706 1322 292 490 759 84 59759 45166 10343 4092 51 1 0 0 8000 2000 0 999999999 11 0 0 88 0.2 0 0 +1.53468E7 12 1 47 95759 622 1322 296 414 692 89 49613 40815 10708 4101 200 2.1 0 0 8000 2000 0 999999999 10 0 0 88 0.2 0 0 +1.53504E7 13 -1 38 95778 475 1322 298 288 530 97 33206 29975 11258 3962 155 1 0 0 8000 2000 0 999999999 8 0 0 88 0.2 0 0 +1.5354E7 12.8 0.2 42 96677 277 1322 299 131 256 77 14490 9027 8566 2615 220 2.6 0 0 8000 2000 0 999999999 10 0 0 88 0.2 0 0 +1.53576E7 12 0 44 95759 40 1322 295 11 0 11 1086 0 1093 377 200 3.1 0 0 8000 2000 0 999999999 9 0 0 88 0.2 0 0 +1.53612E7 10 -4 36 95721 0 206 283 0 0 0 0 0 0 0 170 3.6 0 0 9900 2000 0 999999999 6 0 0 88 0.2 0 0 +1.53648E7 6.2 -1.4 57 96615 0 0 270 0 0 0 0 0 0 0 319 1 0 0 9900 2000 9 999999999 8 0 0 88 0.2 0 0 +1.53684E7 5 -1 64 95624 0 0 282 0 0 0 0 0 0 0 350 1.5 5 5 9900 2000 9 999999999 9 0 0 88 0.2 0 0 +1.5372E7 4 0 75 95604 0 0 263 0 0 0 0 0 0 0 37 1 0 0 8000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.53756E7 2.1 -1.5 76 96646 0 0 255 0 0 0 0 0 0 0 140 1.5 0 0 8000 2000 9 999999999 8 0 0 88 0.2 0 0 +1.53792E7 2 -1 80 95564 0 0 255 0 0 0 0 0 0 0 350 1.5 0 0 7000 2000 9 999999999 9 0 0 88 0.2 0 0 +1.53828E7 1 -1 86 95544 0 0 251 0 0 0 0 0 0 0 60 2.1 0 0 6000 2000 9 999999999 9 0 0 88 0.2 0 0 +1.53864E7 0.7 -1.5 84 96532 0 0 250 0 0 0 0 0 0 0 200 1.5 0 0 6000 2000 9 999999999 8 0 0 88 0.2 0 0 +1.539E7 0 -2 85 95523 0 0 247 0 0 0 0 0 0 0 85 1 0 0 5000 2000 9 999999999 8 0 0 88 0.2 0 0 +1.53936E7 -1 -2 92 95503 0 0 243 0 0 0 0 0 0 0 30 2.6 0 0 4000 2000 9 999999999 8 0 0 88 0.267 0 0 +1.53972E7 -0.4 -2 88 96368 0 0 245 0 0 0 0 0 0 0 180 1.5 0 0 4000 2000 9 999999999 8 0 0 88 0.227 0 0 +1.54008E7 -1 -3 85 95503 0 0 242 0 0 0 0 0 0 0 146 1 0 0 3500 2000 9 999999999 7 0 0 88 0.267 0 0 +1.54044E7 -1 -2 92 95503 0 0 243 0 0 0 0 0 0 0 90 2.1 0 0 3500 2000 9 999999999 8 0 0 88 0.267 0 0 +1.5408E7 -0.6 -1.9 90 96260 0 0 245 0 0 0 0 0 0 0 90 1 0 0 3000 2000 9 999999999 8 0 0 88 0.24 0 0 +1.54116E7 0 -2 85 95523 156 823 247 53 64 45 5825 131 5012 1436 279 0 0 0 4000 2000 9 999999999 8 0 0 88 0.2 0 0 +1.54152E7 4 1 81 95604 377 1322 264 206 364 102 22996 18892 11415 3667 30 1.5 0 0 4000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.54188E7 6.2 1.2 70 95648 552 1322 273 353 635 87 41680 35973 10340 3848 330 2.1 0 0 7000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.54224E7 8 1 61 95683 670 1322 294 440 644 113 52197 41259 13496 5178 332 1 4 4 9900 2000 9 999999999 10 0 0 88 0.2 0 0 +1.5426E7 12 1 47 95759 723 1322 306 504 735 102 60841 46075 12346 4869 130 2.6 2 2 9900 2000 9 999999999 10 0 0 88 0.2 0 0 +1.54296E7 13.9 0.8 41 96074 707 1322 304 491 761 84 59950 45440 10296 4075 328 1 0 0 9900 2000 9 999999999 10 0 0 88 0.2 0 0 +1.54332E7 16 1 36 95834 623 1322 313 415 691 90 49696 40850 10750 4117 342 1.5 0 0 9900 2000 9 999999999 10 0 0 88 0.2 0 0 +1.54368E7 17 0 32 95852 477 1322 316 288 530 97 33249 29827 11244 3962 7 0.5 0 0 9900 2000 9 999999999 9 0 0 88 0.2 0 0 +1.54404E7 15.9 1.3 37 96083 279 1322 313 131 303 67 14706 9455 7568 2392 160 3.1 0 0 9900 2000 9 999999999 11 0 0 88 0.2 0 0 +1.5444E7 14 2 44 95797 42 1322 311 12 0 12 1115 0 1122 387 170 3.6 1 1 9900 2000 9 999999999 11 0 0 88 0.2 0 0 +1.54476E7 12 3 54 95759 0 214 311 0 0 0 0 0 0 0 140 3.1 3 3 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +1.54512E7 9.7 1.9 58 96221 0 0 288 0 0 0 0 0 0 0 139 1 0 0 9900 2000 9 999999999 11 0 0 88 0.2 0 0 +1.54548E7 6 2 75 95644 0 0 295 0 0 0 0 0 0 0 93 0.5 7 7 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +1.54584E7 7 2 70 95663 0 0 296 0 0 0 0 0 0 0 149 1 6 6 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +1.5462E7 8.5 1.9 63 96358 0 0 283 0 0 0 0 0 0 0 140 2.1 0 0 9900 2000 9 999999999 11 0 0 88 0.2 0 0 +1.54656E7 4 1 81 95604 0 0 290 0 0 0 0 0 0 0 290 2.1 8 8 9900 2000 9 999999999 11 0 0 88 0.2 0 0 +1.54692E7 3 1 87 95584 0 0 292 0 0 0 0 0 0 0 307 1 9 9 9900 2000 9 999999999 11 0 0 88 0.2 0 0 +1.54728E7 2.3 -0.1 84 96386 0 0 257 0 0 0 0 0 0 0 160 1 0 0 6000 2000 9 999999999 9 0 0 88 0.2 0 0 +1.54764E7 2 0 87 95564 0 0 256 0 0 0 0 0 0 0 46 1 0 0 5000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.548E7 1 0 93 95544 0 0 252 0 0 0 0 0 0 0 32 0.5 0 0 4000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.54836E7 0.7 -0.6 90 96419 0 0 250 0 0 0 0 0 0 0 40 0.5 0 0 4000 2000 9 999999999 9 0 0 88 0.2 0 0 +1.54872E7 0 -1 92 95523 0 0 248 0 0 0 0 0 0 0 290 1 0 0 4000 2000 9 999999999 9 0 0 88 0.2 0 0 +1.54908E7 0 -1 92 95523 0 0 248 0 0 0 0 0 0 0 50 2.1 0 0 4000 2000 9 999999999 9 0 0 88 0.2 0 0 +1.54944E7 1.7 -0.2 87 96657 0 0 254 0 0 0 0 0 0 0 60 2.1 0 0 5000 2000 9 999999999 9 0 0 88 0.2 0 0 +1.5498E7 2 0 87 95564 156 822 256 53 63 45 5799 88 4997 1433 235 1 0 0 5000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.55016E7 5 2 81 95624 377 1321 281 203 415 84 23013 19246 9591 3207 82 1 3 3 5000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.55052E7 7.7 3.2 73 96834 552 1321 293 347 569 109 40304 34408 12740 4634 174 1 3 3 5000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.55088E7 10 4 66 95721 671 1321 291 456 713 94 54798 42578 11339 4415 280 1.5 0 0 6000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.55124E7 12 5 62 95759 724 1321 300 503 757 88 61283 44732 10803 4296 300 1.5 0 0 6000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.5516E7 12.8 4.7 58 96696 708 1321 316 482 724 95 58330 43471 11500 4535 138 1 3 3 6000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.55196E7 13 5 58 95778 624 1321 318 408 660 97 48524 38908 11533 4401 30 2.1 3 3 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.55232E7 14 4 51 95797 478 1321 308 288 535 94 33214 29015 10915 3871 65 0.5 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.55268E7 13.9 4.4 53 96707 280 1321 308 132 300 68 14733 9165 7628 2413 279 0.5 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.55304E7 12 4 58 95759 43 1321 312 12 0 12 1137 0 1145 395 106 0.5 3 3 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.5534E7 10 5 71 95721 0 221 304 0 0 0 0 0 0 0 280 2.1 3 3 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.55376E7 9.4 4.9 73 96857 0 0 304 0 0 0 0 0 0 0 160 2.6 4 4 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.55412E7 7 4 81 95663 0 0 279 0 0 0 0 0 0 0 320 2.1 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.55448E7 6 4 87 95644 0 0 275 0 0 0 0 0 0 0 30 3.1 0 0 6000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.55484E7 5.9 3.1 82 96732 0 0 274 0 0 0 0 0 0 0 40 2.6 0 0 5000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.5552E7 5 3 87 95624 0 0 270 0 0 0 0 0 0 0 200 1.5 0 0 5000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.55556E7 3 2 93 95584 0 0 261 0 0 0 0 0 0 0 280 1.5 0 0 4000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.55592E7 3 2.1 94 96683 0 0 261 0 0 0 0 0 0 0 50 2.1 0 0 2500 2000 9 999999999 12 0 0 88 0.2 0 0 +1.55628E7 3 2 93 95584 0 0 261 0 0 0 0 0 0 0 70 2.1 0 0 4000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.55664E7 2 1 93 95564 0 0 257 0 0 0 0 0 0 0 230 2.1 0 0 3000 2000 0 999999999 11 0 0 88 0.2 0 0 +1.557E7 0.6 -0.4 93 96511 0 0 250 0 0 0 0 0 0 0 39 0.5 0 0 2000 2000 0 999999999 9 0 0 88 0.2 0 0 +1.55736E7 -1 -1 100 95503 0 0 281 0 0 0 0 0 0 0 30 1.5 10 10 2000 2000 0 999999999 9 0 0 88 0.267 0 0 +1.55772E7 -1 -1 100 95503 0 0 254 0 0 0 0 0 0 0 219 1 3 3 400 2000 0 999999999 9 0 0 88 0.267 0 0 +1.55808E7 0.4 0.1 98 96535 0 0 263 0 0 0 0 0 0 0 40 2.1 4 4 800 2000 0 999999999 10 0 0 88 0.2 0 0 +1.55844E7 0 -1 92 95523 156 821 262 49 58 42 5434 0 4689 1371 280 1.5 5 5 1200 2000 0 999999999 9 0 0 88 0.2 0 0 +1.5588E7 3 2 93 95584 377 1321 261 205 432 82 23372 19758 9382 3151 281 0 0 0 3500 2000 0 999999999 12 0 0 88 0.2 0 0 +1.55916E7 7.8 3.8 76 96515 553 1321 296 340 565 104 39633 33391 12139 4445 30 0.5 4 4 4000 2000 0 999999999 14 0 0 88 0.2 0 0 +1.55952E7 10 5 71 95721 671 1321 292 456 712 94 54774 42237 11326 4412 270 2.1 0 0 5000 2000 0 999999999 16 0 0 88 0.2 0 0 +1.55988E7 14 5 55 95797 724 1321 309 504 739 99 60897 44851 11956 4733 10 2.1 0 0 8000 2000 0 999999999 15 0 0 88 0.2 0 0 +1.56024E7 16.9 4.5 44 96233 709 1321 337 474 668 115 56439 42372 13809 5379 30 1.5 4 4 8000 2000 0 999999999 15 0 0 88 0.2 0 0 +1.5606E7 20 1 28 95906 625 1321 331 418 693 90 49999 41017 10770 4129 90 0.5 0 0 9900 2000 0 999999999 10 0 0 88 0.2 0 0 +1.56096E7 20 1 28 95906 480 1321 345 287 440 127 32360 27745 14409 4847 354 0.5 3 3 9900 2000 0 999999999 10 0 0 88 0.2 0 0 +1.56132E7 20.1 -0.6 25 96130 282 1321 344 132 251 79 14641 9176 8753 2672 270 1 3 3 9900 2000 0 999999999 9 0 0 88 0.2 0 0 +1.56168E7 16 3 42 95834 45 1321 329 12 0 12 1181 0 1189 408 28 1 3 3 8000 2000 0 999999999 13 0 0 88 0.2 0 0 +1.56204E7 11.1 2.8 57 95844 0 229 314 0 0 0 0 0 0 0 257 1.5 3 3 8000 2000 0 999999999 11 0 0 88 0.2 0 0 +1.5624E7 9.3 2.7 63 95938 0 0 317 0 0 0 0 0 0 0 235 1.5 3 3 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.56276E7 7.2 2.7 73 95796 0 0 285 0 0 0 0 0 0 0 157 1.8 0 0 8000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.56312E7 5.9 2.4 78 95771 0 0 331 0 0 0 0 0 0 0 132 1.8 10 10 7000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.56348E7 4.2 1.5 83 96014 0 0 272 0 0 0 0 0 0 0 150 1.9 0 0 7000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.56384E7 3.5 1.1 84 95872 0 0 270 0 0 0 0 0 0 0 91 1.8 0 0 6000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.5642E7 2.5 0.1 84 95852 0 0 264 0 0 0 0 0 0 0 120 1.3 0 0 7000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.56456E7 1.6 -0.3 87 96092 0 0 256 0 0 0 0 0 0 0 197 1 0 0 3000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.56492E7 1.4 -0.7 86 95809 0 0 259 0 0 0 0 0 0 0 205 0.9 0 0 7000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.56528E7 0.4 -0.9 90 95789 0 0 251 0 0 0 0 0 0 0 274 1.1 0 0 6000 2000 9 999999999 9 0 0 88 0.2 0 0 +1.56564E7 0.3 -0.9 91 96057 0 0 249 0 0 0 0 0 0 0 238 1.8 0 0 4000 2000 9 999999999 9 0 0 88 0.2 0 0 +1.566E7 0.4 -1 89 95802 0 0 251 0 0 0 0 0 0 0 221 1.8 0 0 4000 2000 9 999999999 9 0 0 88 0.2 0 0 +1.56636E7 -1 -1 100 95503 0 0 281 0 0 0 0 0 0 0 303 2 10 10 4500 2000 9 999999999 9 0 0 88 0.267 0 0 +1.56672E7 0.7 -1 88 96617 0 0 250 0 0 0 0 0 0 0 10 2.6 0 0 5000 2000 9 999999999 9 0 0 88 0.2 0 0 +1.56708E7 1 -1 86 95544 156 821 251 53 63 45 5810 109 5004 1434 291 1 0 0 5000 2000 9 999999999 9 0 0 88 0.2 0 0 +1.56744E7 4 0 75 95604 377 1321 263 206 367 102 23092 19130 11415 3669 122 1 0 0 6000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.5678E7 7.7 2.1 68 96588 553 1321 280 353 634 88 41742 35809 10380 3865 360 1 0 0 8000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.56816E7 11 2 54 95740 672 1321 306 453 710 91 54595 42653 11061 4313 238 1 3 3 8666 2000 9 999999999 11 0 0 88 0.2 0 0 +1.56852E7 14 2 44 95797 726 1321 311 507 766 86 61965 45878 10530 4191 170 1.5 1 1 9333 2000 9 999999999 11 0 0 88 0.2 0 0 +1.56888E7 16.2 -1.7 29 96381 710 1321 324 489 746 88 59639 45680 10810 4272 270 1.5 3 3 9333 2000 9 999999999 8 0 0 88 0.2 0 0 +1.56924E7 17 2 36 95852 627 1321 318 418 692 90 50051 40787 10818 4150 320 1.5 0 0 9333 2000 9 999999999 11 0 0 88 0.2 0 0 +1.5696E7 18 1 32 95870 481 1321 322 292 478 118 33151 29137 13417 4594 40 1.5 0 0 9333 2000 9 999999999 10 0 0 88 0.2 0 0 +1.56996E7 17.4 3.3 39 96299 283 1321 344 117 192 76 13015 6612 8481 2622 200 1.5 6 6 9333 7500 9 999999999 13 0 0 88 0.2 0 0 +1.57032E7 15 4 48 95815 47 1321 322 13 0 13 1235 0 1243 425 160 3.6 2 2 9333 7500 9 999999999 14 0 0 88 0.2 0 0 +1.57068E7 13 3 51 95778 0 238 315 0 0 0 0 0 0 0 160 3.1 3 3 9333 7500 9 999999999 13 0 0 88 0.2 0 0 +1.57104E7 12 2.9 54 96350 0 0 298 0 0 0 0 0 0 0 196 0 0 0 9333 7500 9 999999999 13 0 0 88 0.2 0 0 +1.5714E7 11 4 62 95740 0 0 310 0 0 0 0 0 0 0 159 1 4 4 9333 7500 9 999999999 14 0 0 88 0.2 0 0 +1.57176E7 8 2 66 95683 0 0 297 0 0 0 0 0 0 0 340 1.5 5 5 9333 7500 9 999999999 12 0 0 88 0.2 0 0 +1.57212E7 6.2 2.1 75 96247 0 0 274 0 0 0 0 0 0 0 210 1.5 0 0 9333 2000 9 999999999 12 0 0 88 0.2 0 0 +1.57248E7 7 1 66 95663 0 0 292 0 0 0 0 0 0 0 120 2.6 5 5 9333 2000 9 999999999 10 0 0 88 0.2 0 0 +1.57284E7 4 1 81 95604 0 0 264 0 0 0 0 0 0 0 260 3.1 0 0 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.5732E7 5.4 1.4 75 96382 0 0 270 0 0 0 0 0 0 0 160 2.6 0 0 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.57356E7 4 1 81 95604 0 0 290 0 0 0 0 0 0 0 40 2.6 8 8 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.57392E7 2 0 87 95564 0 0 256 0 0 0 0 0 0 0 340 1.5 0 0 8000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.57428E7 2.2 0.1 86 96308 0 0 257 0 0 0 0 0 0 0 350 2.1 0 0 8000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.57464E7 3 0 81 95584 0 0 259 0 0 0 0 0 0 0 176 1 0 0 8000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.575E7 3 0 81 95584 0 0 259 0 0 0 0 0 0 0 81 1 0 0 8000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.57536E7 1.5 -0.9 83 96143 0 0 253 0 0 0 0 0 0 0 30 0 0 0 7000 2000 9 999999999 9 0 0 88 0.2 0 0 +1.57572E7 3 1 87 95584 156 822 260 53 63 45 5804 74 5004 1436 78 0.5 0 0 7000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.57608E7 6 2 75 95644 378 1321 273 206 433 82 23446 19841 9391 3156 311 0.5 0 0 7000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.57644E7 8 3.1 71 96160 554 1321 282 353 593 104 41168 35334 12213 4471 190 1.5 0 0 7000 7500 9 999999999 13 0 0 88 0.2 0 0 +1.5768E7 12 4 58 95759 673 1321 299 458 576 165 52736 41234 19063 6986 150 2.6 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.57716E7 13 4 54 95778 727 1321 340 261 93 210 29823 7297 24112 8685 170 4.1 9 9 8000 7620 9 999999999 14 0 0 88 0.2 0 0 +1.57752E7 13.4 3.9 53 96112 711 1321 335 331 164 243 37239 13773 27451 9413 270 2.1 8 8 8000 4800 9 999999999 14 0 0 88 0.2 0 0 +1.57788E7 14 6 59 95797 628 1321 348 215 39 197 24189 2971 22225 7598 330 1.5 9 9 8000 4877 9 999999999 17 0 0 88 0.2 0 0 +1.57824E7 14 6 59 95797 483 1321 348 150 14 145 16745 911 16249 5313 70 1.5 9 9 8000 4877 9 999999999 17 0 0 88 0.2 0 0 +1.5786E7 12.9 4.1 55 95951 285 1321 340 70 0 70 6878 0 6929 2479 220 3.6 9 9 8000 5400 9 999999999 14 0 0 88 0.2 0 0 +1.57896E7 11 4 62 95740 48 1321 331 7 0 7 664 0 668 256 170 5.7 9 9 8000 5486 9 999999999 14 0 0 88 0.2 0 0 +1.57932E7 10 6 76 95721 0 247 329 0 0 0 0 0 0 0 160 5.1 9 9 8000 4877 9 999999999 17 0 0 88 0.2 0 0 +1.57968E7 9.4 6.3 81 96243 0 0 311 0 0 0 0 0 0 0 130 4.1 6 6 8000 5400 9 999999999 18 0 0 88 0.2 0 0 +1.58004E7 9 6 81 95702 0 0 324 0 0 0 0 0 0 0 280 2.6 9 9 8000 5182 9 999999999 17 0 0 88 0.2 0 0 +1.5804E7 9 6 81 95702 0 0 324 0 0 0 0 0 0 0 10 4.6 9 9 8000 5182 9 999999999 17 0 0 88 0.2 0 0 +1.58076E7 9.4 6.3 81 96225 0 0 319 0 0 0 0 0 0 0 220 3.1 8 8 8000 4800 9 999999999 18 0 0 88 0.2 0 0 +1.58112E7 9 6 81 95702 0 0 324 0 0 0 0 0 0 0 130 4.1 9 9 8000 5486 9 999999999 17 0 0 88 0.2 0 0 +1.58148E7 8 5 81 95683 0 0 318 0 0 0 0 0 0 0 290 3.1 9 9 8000 5486 9 999999999 16 0 0 88 0.2 0 0 +1.58184E7 7.1 5.3 88 96104 0 0 315 0 0 0 0 0 0 0 330 2.6 9 9 8000 4800 9 999999999 16 0 0 88 0.2 0 0 +1.5822E7 6 5 93 95644 0 0 309 0 0 0 0 0 0 0 140 1.5 9 9 5000 4877 9 999999999 16 0 0 88 0.2 0 0 +1.58256E7 7 5 87 95663 0 0 314 0 0 0 0 0 0 0 150 4.1 9 9 8000 4877 9 999999999 16 0 0 88 0.2 0 0 +1.58292E7 8 5.5 84 96103 0 0 319 0 0 0 0 0 0 0 130 3.1 9 9 8000 4500 9 999999999 16 0 0 88 0.2 0 0 +1.58328E7 7 5 87 95663 0 0 323 0 0 0 0 0 0 0 290 1.5 10 10 7000 4572 9 999999999 16 0 0 88 0.2 0 0 +1.58364E7 6 5 93 95644 0 0 309 0 0 0 0 0 0 0 340 2.1 9 9 8000 4572 9 999999999 16 0 0 88 0.2 0 0 +1.584E7 6.3 4.7 89 96249 0 0 310 0 0 0 0 0 0 0 10 2.6 9 9 6000 3600 9 999999999 15 0 0 88 0.2 0 0 +1.58436E7 7 5 87 95663 157 823 314 27 0 27 2654 0 2672 993 20 3.6 9 9 5000 3658 9 999999999 16 0 0 88 0.2 0 0 +1.58472E7 8 6 87 95683 378 1321 319 106 11 103 11820 539 11522 3703 343 1 9 9 6000 4572 9 999999999 17 0 0 88 0.2 0 0 +1.58508E7 8.2 5.8 85 96239 555 1321 329 111 0 111 11183 0 11275 4696 240 2.1 10 10 6000 4200 9 999999999 17 0 0 88 0.2 0 0 +1.58544E7 10 6 76 95721 674 1321 338 144 0 144 14666 0 14793 6305 100 2.1 10 10 7000 4877 9 999999999 17 0 0 88 0.2 0 0 +1.5858E7 11 6 71 95740 728 1321 343 159 0 159 18567 8 18641 7075 140 1.5 10 10 6000 4572 9 999999999 17 0 0 88 0.2 0 0 +1.58616E7 10.4 6 74 96206 713 1321 340 155 0 155 18057 1 18134 6859 270 2.6 10 10 7000 4200 9 999999999 17 0 0 88 0.2 0 0 +1.58652E7 11 6 71 95740 630 1321 343 132 0 132 13358 0 13472 5693 290 1.5 10 10 8000 4267 9 999999999 17 0 0 88 0.2 0 0 +1.58688E7 10 7 82 95721 485 1321 339 92 0 92 9197 0 9271 3815 60 1.5 10 10 7000 4267 9 999999999 19 0 0 88 0.2 0 0 +1.58724E7 10.5 5.9 73 96208 287 1321 340 43 0 43 4220 0 4252 1701 360 1 10 10 8000 4200 9 999999999 17 0 0 88 0.2 0 0 +1.5876E7 10 6 76 95721 50 1321 338 4 0 4 419 0 422 169 230 2.1 10 10 6000 4267 9 999999999 17 0 0 88 0.2 0 0 +1.58796E7 10 6 76 95721 0 256 338 0 0 0 0 0 0 0 140 2.1 10 10 8000 4267 9 999999999 17 0 0 88 0.2 0 0 +1.58832E7 10.2 5.6 73 96325 0 0 338 0 0 0 0 0 0 0 140 2.1 10 10 8000 4500 9 999999999 17 0 0 88 0.2 0 0 +1.58868E7 9 6 81 95702 0 0 324 0 0 0 0 0 0 0 160 3.1 9 9 7000 4572 9 999999999 17 0 0 88 0.2 0 0 +1.58904E7 9 6 81 95702 0 0 324 0 0 0 0 0 0 0 160 3.6 9 9 6000 4572 9 999999999 17 0 0 88 0.2 0 0 +1.5894E7 9.4 7.4 87 96347 0 0 321 0 0 0 0 0 0 0 160 4.1 8 8 6000 4500 9 999999999 20 0 0 88 0.2 0 0 +1.58976E7 9 7 87 95702 0 0 334 0 0 0 0 0 0 0 160 2.1 10 10 4000 122 9 999999999 19 0 0 88 0.2 0 0 +1.59012E7 9 7 87 95702 0 0 334 0 0 0 0 0 0 0 291 1 10 10 4000 122 9 999999999 19 0 0 88 0.2 0 0 +1.59048E7 8.2 6.3 88 96182 0 0 330 0 0 0 0 0 0 0 240 1.5 10 10 4000 240 9 999999999 18 0 0 88 0.2 0 0 +1.59084E7 8 7 93 95683 0 0 330 0 0 0 0 0 0 0 264 0.5 10 10 4000 457 9 999999999 19 0 0 88 0.2 0 0 +1.5912E7 8 7 93 95683 0 0 330 0 0 0 0 0 0 0 30 1.5 10 10 4000 457 9 999999999 19 0 0 88 0.2 0 0 +1.59156E7 8 6.5 90 96112 0 0 320 0 0 0 0 0 0 0 240 1.5 9 9 4000 450 9 999999999 18 0 0 88 0.2 0 0 +1.59192E7 8 6 87 95683 0 0 319 0 0 0 0 0 0 0 150 2.1 9 9 6000 457 9 999999999 17 0 0 88 0.2 0 0 +1.59228E7 8 6 87 95683 0 0 319 0 0 0 0 0 0 0 310 1.5 9 9 6000 457 9 999999999 17 0 0 88 0.2 0 0 +1.59264E7 8.1 6.1 87 96162 0 0 329 0 0 0 0 0 0 0 350 1.5 10 10 6000 450 9 999999999 17 0 0 88 0.2 0 0 +1.593E7 8 6 87 95683 157 824 329 17 0 17 1623 0 1634 655 108 1 10 10 5000 762 9 999999999 17 0 0 88 0.2 0 0 +1.59336E7 9 7 87 95702 379 1321 334 65 0 65 6414 0 6464 2615 138 1 10 10 4000 762 9 999999999 19 0 0 88 0.2 0 0 +1.59372E7 9.4 6.8 84 96215 556 1321 327 182 33 168 20403 2365 18919 6358 360 0.5 9 9 4000 4200 9 999999999 19 0 0 88 0.2 0 0 +1.59408E7 10 7 82 95721 675 1321 339 144 0 144 14671 0 14798 6314 36 0 10 10 5000 4267 9 999999999 19 0 0 88 0.2 0 0 +1.59444E7 11 7 76 95740 730 1321 334 261 43 237 29512 3535 26949 9439 129 0.5 9 9 5000 5182 9 999999999 19 0 0 88 0.2 0 0 +1.5948E7 11.3 6.2 71 96081 715 1321 335 255 43 232 28761 3497 26269 9165 260 2.1 9 9 6000 5100 9 999999999 18 0 0 88 0.2 0 0 +1.59516E7 12 6 67 95759 632 1321 348 132 0 132 13413 0 13527 5718 132 0.5 10 10 8000 5486 9 999999999 17 0 0 88 0.2 0 0 +1.59552E7 12 6 67 95759 487 1321 348 93 0 93 9271 0 9345 3844 180 2.1 10 10 8000 5486 9 999999999 17 0 0 88 0.2 0 0 +1.59588E7 11.4 6.7 73 96055 289 1321 336 71 0 71 6981 0 7033 2522 170 3.1 9 9 8000 5400 9 999999999 18 0 0 88 0.2 0 0 +1.59624E7 11 7 76 95740 52 1321 334 7 0 7 712 0 717 274 160 2.1 9 9 8000 5486 9 999999999 19 0 0 88 0.2 0 0 +1.5966E7 10 6 76 95721 0 265 329 0 0 0 0 0 0 0 210 1.5 9 9 8000 5486 9 999999999 17 0 0 88 0.2 0 0 +1.59696E7 9.6 6.2 79 95917 0 0 320 0 0 0 0 0 0 0 130 2.1 8 8 8000 5400 9 999999999 18 0 0 88 0.2 0 0 +1.59732E7 10 6 76 95721 0 0 329 0 0 0 0 0 0 0 200 1 9 9 6000 5486 9 999999999 17 0 0 88 0.2 0 0 +1.59768E7 8 6 87 95683 0 0 319 0 0 0 0 0 0 0 114 1 9 9 6000 5486 9 999999999 17 0 0 88 0.2 0 0 +1.59804E7 7.7 5.6 87 95748 0 0 327 0 0 0 0 0 0 0 360 0 10 10 5000 5100 9 999999999 17 0 0 88 0.2 0 0 +1.5984E7 7 5 87 95663 0 0 323 0 0 0 0 0 0 0 270 1.5 10 10 5000 5182 9 999999999 16 0 0 88 0.2 0 0 +1.59876E7 7 6 93 95663 0 0 297 0 0 0 0 0 0 0 106 0 5 5 5000 5182 9 999999999 17 0 0 88 0.2 0 0 +1.59912E7 6.5 4.8 89 95583 0 0 320 0 0 0 0 0 0 0 90 1 10 10 4000 5182 9 999999999 15 0 0 88 0.2 0 0 +1.59948E7 6 5 93 95644 0 0 318 0 0 0 0 0 0 0 260 1.5 10 10 3500 4877 9 999999999 16 0 0 88 0.2 0 0 +1.59984E7 6.3 5.2 92 95634 0 0 311 0 0 0 0 0 0 0 59 1.2 9 9 3750 4877 9 999999999 16 0 0 88 0.2 0 0 +1.6002E7 6.7 5.3 91 95624 0 0 322 0 0 0 0 0 0 0 360 1 10 10 4000 4800 9 999999999 16 0 0 88 0.2 0 0 +1.60056E7 6 5 93 95644 0 0 318 0 0 0 0 0 0 0 320 2.1 10 10 4000 4877 9 999999999 16 0 0 88 0.2 0 0 +1.60092E7 6 4 87 95644 0 0 317 0 0 0 0 0 0 0 6 1 10 10 3600 4572 9 999999999 14 0 0 88 0.2 0 0 +1.60128E7 5.6 4 89 95914 0 0 315 0 0 0 0 0 0 0 90 1.5 10 10 3000 4500 9 999999999 14 0 0 88 0.2 0 0 +1.60164E7 6 5 93 95644 158 826 318 17 0 17 1635 0 1647 659 131 1 10 10 2000 3962 9 999999999 16 0 0 88 0.2 0 0 +1.602E7 7 6 93 95663 380 1321 324 65 0 65 6448 0 6498 2627 30 1.5 10 10 2000 4267 9 999999999 17 0 0 88 0.2 0 0 +1.60236E7 7.4 6 91 96101 557 1321 326 111 0 111 11235 0 11328 4721 210 2.1 10 10 3000 3000 9 999999999 17 0 0 88 0.2 0 0 +1.60272E7 9 6 81 95702 677 1321 333 145 0 145 14742 0 14869 6341 150 4.6 10 10 5000 3048 9 999999999 17 0 0 88 0.2 0 0 +1.60308E7 9 7 87 95702 731 1321 334 160 3 158 18647 205 18536 7055 290 2.1 10 10 3000 1219 0 919999999 19 0 0 88 0.2 0 0 +1.60344E7 9.7 7.4 86 96155 717 1321 329 255 90 207 29057 6868 23637 8506 130 2.6 9 9 6000 1800 0 919999999 20 0 0 88 0.2 0 0 +1.6038E7 10 8 87 95721 634 1321 340 132 0 132 13410 0 13525 5729 210 2.1 10 10 6000 1829 0 919999999 21 0 0 88 0.2 0 0 +1.60416E7 10 8 87 95721 489 1321 340 93 0 93 9284 0 9360 3857 180 3.6 10 10 7000 1829 0 919999999 21 0 0 88 0.2 0 0 +1.60452E7 9.5 7.5 87 96132 291 1321 328 72 0 72 7044 0 7097 2546 180 2.1 9 9 7000 3600 0 919999999 20 0 0 88 0.2 0 0 +1.60488E7 10 7 82 95721 54 1321 339 5 0 5 451 0 454 182 200 3.1 10 10 7000 3658 0 919999999 19 0 0 88 0.2 0 0 +1.60524E7 9 7 87 95702 0 275 325 0 0 0 0 0 0 0 170 1 9 9 7000 3658 0 919999999 19 0 0 88 0.2 0 0 +1.6056E7 7.9 6.4 90 96365 0 0 299 0 0 0 0 0 0 0 334 1.5 4 4 7000 3658 9 999999999 18 0 0 88 0.2 2 0 +1.60596E7 8 6 87 95683 0 0 302 0 0 0 0 0 0 0 150 2.1 5 5 7000 3658 9 999999999 17 0 0 88 0.2 0 0 +1.60632E7 7 5 87 95663 0 0 292 0 0 0 0 0 0 0 271 0.5 3 3 6000 3658 9 999999999 16 0 0 88 0.2 0 0 +1.60668E7 5.9 4.8 93 96420 0 0 294 0 0 0 0 0 0 0 360 1 6 6 800 2400 0 999999999 15 0 0 88 0.2 0 0 +1.60704E7 7 6 93 95663 0 0 315 0 0 0 0 0 0 0 213 1 9 9 3000 2438 0 999999999 17 0 0 88 0.2 0 0 +1.6074E7 7 5 87 95663 0 0 296 0 0 0 0 0 0 0 86 1 5 5 800 2438 0 999999999 16 0 0 88 0.2 0 0 +1.60776E7 5.8 5 95 96362 0 0 294 0 0 0 0 0 0 0 330 1 6 6 300 2400 0 999999999 16 0 0 88 0.2 0 0 +1.60812E7 6 5 93 95644 0 0 292 0 0 0 0 0 0 0 45 0.5 5 5 600 2400 0 999999999 16 0 0 88 0.2 0 0 +1.60848E7 5 4 93 95624 0 0 287 0 0 0 0 0 0 0 288 1 5 5 400 2400 0 999999999 14 0 0 88 0.2 0 0 +1.60884E7 5.7 5.3 97 96322 0 0 302 0 0 0 0 0 0 0 30 2.1 8 8 400 120 0 999999999 16 0 0 88 0.2 0 0 +1.6092E7 6 5 93 95644 0 0 309 0 0 0 0 0 0 0 340 1.5 9 9 1200 2438 0 999999999 16 0 0 88 0.2 0 0 +1.60956E7 5 4 93 95624 0 0 287 0 0 0 0 0 0 0 270 1 5 5 2000 2438 0 999999999 14 0 0 88 0.2 0 0 +1.60992E7 5.9 5 94 96269 0 0 309 0 0 0 0 0 0 0 225 1 9 9 800 4800 0 999999999 16 0 0 88 0.2 0 0 +1.61028E7 6 5 93 95644 158 829 309 28 0 28 2700 0 2719 1009 20 0.5 9 9 2000 5182 0 999999999 16 0 0 88 0.2 0 0 +1.61064E7 6 5 93 95644 381 1321 309 107 11 104 11953 572 11639 3740 319 0 9 9 2000 5486 0 999999999 16 0 0 88 0.2 0 0 +1.611E7 7.7 6.5 92 96267 558 1321 328 112 0 112 11258 0 11352 4733 360 0 10 10 3000 5100 0 999999999 18 0 0 88 0.2 0 0 +1.61136E7 10 7 82 95721 678 1321 339 145 0 145 14756 0 14884 6354 145 1 10 10 5000 5486 0 999999999 19 0 0 88 0.2 0 0 +1.61172E7 11 7 76 95740 733 1321 334 263 44 239 29691 3552 27109 9501 308 1 9 9 5000 5486 0 999999999 19 0 0 88 0.2 0 0 +1.61208E7 11.2 6.4 72 96155 718 1321 335 257 44 233 28955 3582 26384 9220 133 1 9 9 5000 5400 0 999999999 18 0 0 88 0.2 0 0 +1.61244E7 11 7 76 95740 636 1321 334 218 39 199 24531 2977 22539 7725 4 1 9 9 6000 4267 0 999999999 19 0 0 88 0.2 0 0 +1.6128E7 11 7 76 95740 491 1321 344 93 0 93 9364 0 9440 3889 280 2.1 10 10 5000 4572 0 999999999 19 0 0 88 0.2 0 0 +1.61316E7 10.9 7.4 79 96036 293 1321 344 44 0 44 4345 0 4378 1754 360 1 10 10 5000 4500 0 999999999 20 0 0 88 0.2 0 0 +1.61352E7 10 8 87 95721 56 1321 340 5 0 5 467 0 470 188 59 0 10 10 5000 5182 0 999999999 21 0 0 88 0.2 0 0 +1.61388E7 10 7 82 95721 0 286 330 0 0 0 0 0 0 0 270 1.5 9 9 6000 6096 0 999999999 19 0 0 88 0.2 0 0 +1.61424E7 9.1 7.5 90 96020 0 0 326 0 0 0 0 0 0 0 137 1 9 9 4000 6000 9 999999999 20 0 0 88 0.2 0 0 +1.6146E7 9 7 87 95702 0 0 325 0 0 0 0 0 0 0 50 1.5 9 9 5000 6706 9 999999999 19 0 0 88 0.2 0 0 +1.61496E7 8 7 93 95683 0 0 321 0 0 0 0 0 0 0 350 1.5 9 9 4000 6401 9 999999999 19 0 0 88 0.2 0 0 +1.61532E7 7.7 6.1 90 95927 0 0 318 0 0 0 0 0 0 0 330 2.1 9 9 3000 6300 9 999999999 17 0 0 88 0.2 0 0 +1.61568E7 7 6 93 95663 0 0 315 0 0 0 0 0 0 0 79 1 9 9 2000 6401 9 999999999 17 0 0 88 0.2 0 0 +1.61604E7 8 7 93 95683 0 0 321 0 0 0 0 0 0 0 30 1.5 9 9 3000 6401 9 999999999 19 0 0 88 0.2 0 0 +1.6164E7 7 5.6 91 95800 0 0 315 0 0 0 0 0 0 0 168 1 9 9 900 5400 9 999999999 17 0 0 88 0.2 0 0 +1.61676E7 6 5 93 95644 0 0 309 0 0 0 0 0 0 0 310 1.5 9 9 1500 5486 9 999999999 16 0 0 88 0.2 0 0 +1.61712E7 5 4 93 95624 0 0 304 0 0 0 0 0 0 0 190 0 9 9 1200 5486 9 999999999 14 0 0 88 0.2 0 0 +1.61748E7 5.7 4.7 93 95718 0 0 301 0 0 0 0 0 0 0 100 1 8 8 300 5400 9 999999999 15 0 0 88 0.2 0 0 +1.61784E7 5 3 87 95624 0 0 303 0 0 0 0 0 0 0 250 1.5 9 9 1100 5486 9 999999999 13 0 0 88 0.2 0 0 +1.6182E7 4 3 93 95604 0 0 282 0 0 0 0 0 0 0 125 1 5 5 1200 5486 9 999999999 13 0 0 88 0.2 0 0 +1.61856E7 4 2.8 92 95798 0 0 298 0 0 0 0 0 0 0 50 1.5 9 9 300 5400 9 999999999 13 0 0 88 0.2 0 0 +1.61892E7 4 4 100 95604 159 832 300 28 0 28 2727 0 2746 1018 20 0 9 9 1500 6706 9 999999999 14 0 0 88 0.2 0 0 +1.61928E7 6 5 93 95644 382 1321 309 107 9 105 11996 479 11742 3769 330 1.5 9 9 3000 6706 9 999999999 16 0 0 88 0.2 0 0 +1.61964E7 8.5 6.5 87 95980 559 1321 322 184 18 176 20534 1276 19799 6584 30 1.5 9 9 4000 7500 9 999999999 18 0 0 88 0.2 0 0 +1.62E7 11 7 76 95740 680 1321 334 238 42 217 26855 3331 24536 8502 360 1.5 9 9 6000 7620 9 999999999 19 0 0 88 0.2 0 0 +1.62036E7 12 7 71 95759 735 1321 339 264 45 239 29798 3638 27142 9523 161 0.5 9 9 6000 7620 9 999999999 19 0 0 88 0.2 0 0 +1.62072E7 13.6 7 64 95898 720 1321 347 257 44 233 29033 3566 26462 9255 267 0.5 9 9 8000 7500 9 999999999 19 0 0 88 0.2 0 0 +1.62108E7 15 5 51 95815 638 1321 351 220 41 200 24752 3149 22660 7764 99 0.5 9 9 8000 7620 9 999999999 15 0 0 88 0.2 0 0 +1.62144E7 16 5 48 95834 493 1321 356 155 15 149 17277 981 16743 5481 190 1.5 9 9 8000 6706 9 999999999 15 0 0 88 0.2 0 0 +1.6218E7 14.9 7.8 62 95884 295 1321 354 73 0 73 7203 0 7257 2603 170 2.1 9 9 8000 6600 9 999999999 20 0 0 88 0.2 0 0 +1.62216E7 13 8 72 95778 58 1321 345 8 0 8 795 0 801 306 170 1.5 9 9 8000 6706 9 999999999 21 0 0 88 0.2 0 0 +1.62252E7 13 8 72 95778 0 296 345 0 0 0 0 0 0 0 251 1 9 9 6000 6706 9 999999999 21 0 0 88 0.2 0 0 +1.62288E7 10.6 7.5 81 95851 0 0 315 0 0 0 0 0 0 0 100 1 5 5 5000 6706 9 999999999 20 0 0 88 0.2 0 0 +1.62324E7 11 8 82 95740 0 0 317 0 0 0 0 0 0 0 130 2.6 5 5 5000 6096 9 999999999 21 0 0 88 0.2 0 0 +1.6236E7 10 7 82 95721 0 0 294 0 0 0 0 0 0 0 130 1.5 0 0 5000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.62396E7 7.5 6.1 91 95857 0 0 295 0 0 0 0 0 0 0 360 1 3 3 200 2000 9 999999999 17 0 0 88 0.2 0 0 +1.62432E7 8 6 87 95683 0 0 297 0 0 0 0 0 0 0 170 1.5 3 3 3000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.62468E7 5 4 93 95624 0 0 313 0 0 0 0 0 0 0 95 1 10 10 250 30 0 999999999 14 0 0 88 0.2 0 0 +1.62504E7 5.1 4.6 97 95819 0 0 314 0 0 0 0 0 0 0 170 1.5 10 10 200 30 0 999999999 15 0 0 88 0.2 0 0 +1.6254E7 4.6 3.8 95 95712 0 0 311 0 0 0 0 0 0 0 283 1 10 10 200 30 9 999999999 14 0 0 88 0.2 0 0 +1.62576E7 4 3 93 95604 0 0 307 0 0 0 0 0 0 0 146 0.5 10 10 200 30 0 999999999 13 0 0 88 0.2 0 0 +1.62612E7 4.7 4.2 97 95830 0 0 311 0 0 0 0 0 0 0 160 2.1 10 10 200 30 0 999999999 14 0 0 88 0.2 0 0 +1.62648E7 4 4 100 95604 0 0 308 0 0 0 0 0 0 0 270 1.5 10 10 300 30 0 999999999 14 0 0 88 0.2 0 0 +1.62684E7 4 4 100 95604 0 0 308 0 0 0 0 0 0 0 290 1.5 10 10 300 30 0 999999999 14 0 0 88 0.2 0 0 +1.6272E7 3.9 3 94 96003 0 0 307 0 0 0 0 0 0 0 330 1.5 10 10 300 30 0 919999999 13 0 0 88 0.2 0 0 +1.62756E7 4.4 3.5 94 95814 160 836 309 21 0 21 2061 0 2075 808 203 1.5 10 10 350 30 9 999999999 13 0 0 88 0.2 0 0 +1.62792E7 5 4 93 95624 383 1321 313 88 0 88 8766 0 8834 3344 320 1.5 10 10 400 61 0 919999999 14 0 0 88 0.2 0 0 +1.62828E7 5.7 4.9 95 96162 561 1321 317 113 0 113 11366 0 11460 4776 350 1.5 10 10 400 120 0 919999999 16 0 0 88 0.2 0 0 +1.62864E7 6 6 100 95644 682 1321 319 146 0 146 14875 0 15004 6405 50 1.5 10 10 800 61 0 919999999 17 0 0 88 0.2 0 0 +1.629E7 7 6 93 95663 737 1321 324 162 0 162 18846 12 18918 7195 260 0.5 10 10 3000 91 0 919999999 17 0 0 88 0.2 0 0 +1.62936E7 7.2 5.5 89 96031 723 1321 324 158 0 158 18386 5 18461 6997 24 1 10 10 3000 120 0 919999999 16 0 0 88 0.2 0 0 +1.62972E7 8 6 87 95683 640 1321 329 134 0 134 13649 0 13766 5830 250 1.5 10 10 3000 122 0 919999999 17 0 0 88 0.2 0 0 +1.63008E7 8 7 93 95683 495 1321 321 155 28 145 17345 1794 16262 5386 247 1 9 9 3000 122 0 919999999 19 0 0 88 0.2 0 0 +1.63044E7 8.5 6.3 86 95990 298 1321 322 74 0 74 7295 0 7350 2633 360 0.5 9 9 3000 7500 0 919999999 18 0 0 88 0.2 0 0 +1.6308E7 8 6 87 95683 61 1321 285 17 0 17 1597 0 1608 539 270 2.1 0 0 3000 2000 0 919999999 17 0 0 88 0.2 0 0 +1.63116E7 8 6 87 95683 0 307 285 0 0 0 0 0 0 0 10 2.1 0 0 3000 2000 0 919999999 17 0 0 88 0.2 0 0 +1.63152E7 6.5 5.4 93 96036 0 0 295 0 0 0 0 0 0 0 330 1.5 5 5 800 2000 0 999999999 16 0 0 88 0.2 0 0 +1.63188E7 6 5 93 95644 0 0 309 0 0 0 0 0 0 0 60 1.5 9 9 200 91 0 999999999 16 0 0 88 0.2 0 0 +1.63224E7 6 5 93 95644 0 0 309 0 0 0 0 0 0 0 240 1 9 9 1400 61 0 999999999 16 0 0 88 0.2 0 0 +1.6326E7 5.5 4.4 93 96148 0 0 287 0 0 0 0 0 0 0 360 1 4 4 300 61 0 999999999 15 0 0 88 0.2 0 0 +1.63296E7 5 4 93 95624 0 0 313 0 0 0 0 0 0 0 186 1 10 10 200 30 0 999999999 14 0 0 88 0.2 0 0 +1.63332E7 4 3 93 95604 0 0 307 0 0 0 0 0 0 0 43 0.5 10 10 300 30 0 999999999 13 0 0 88 0.2 0 0 +1.63368E7 4.3 3.5 95 96247 0 0 309 0 0 0 0 0 0 0 30 2.6 10 10 200 30 0 999999999 14 0 0 88 0.2 0 0 +1.63404E7 5 4 93 95624 0 0 313 0 0 0 0 0 0 0 225 1 10 10 200 30 0 999999999 14 0 0 88 0.2 0 0 +1.6344E7 4 3 93 95604 0 0 307 0 0 0 0 0 0 0 260 2.1 10 10 200 30 0 999999999 13 0 0 88 0.2 0 0 +1.63476E7 4.2 3.3 94 96169 0 0 286 0 0 0 0 0 0 0 110 1.5 6 6 400 180 0 999999999 13 0 0 88 0.2 0 0 +1.63512E7 5 4 93 95624 0 0 304 0 0 0 0 0 0 0 148 1 9 9 2000 152 0 999999999 14 0 0 88 0.2 0 0 +1.63548E7 4 3 93 95604 0 0 307 0 0 0 0 0 0 0 242 1.2 10 10 1400 152 0 999999999 13 0 0 88 0.2 0 0 +1.63584E7 4.6 4.3 98 96272 0 0 296 0 0 0 0 0 0 0 30 1.5 8 8 800 5400 0 999999999 15 0 0 88 0.2 0 0 +1.6362E7 3 2 93 95584 161 841 293 29 0 29 2782 0 2801 1037 275 0.5 9 9 2000 4877 0 999999999 12 0 0 88 0.2 0 0 +1.63656E7 5 4 93 95624 384 1322 304 109 16 104 12133 807 11672 3762 280 1.5 9 9 3000 4572 0 999999999 14 0 0 88 0.2 0 0 +1.63692E7 7.7 5.4 85 96314 563 1322 302 313 330 173 35122 23956 19473 6526 300 1.5 6 6 5000 4200 0 999999999 16 0 0 88 0.2 0 0 +1.63728E7 11 6 71 95740 683 1322 310 460 559 170 52836 40083 19669 7214 240 0.5 3 3 8000 4200 0 999999999 17 0 0 88 0.2 0 0 +1.63764E7 13 6 62 95778 739 1322 353 162 31 145 19091 2100 17115 6606 170 1.5 10 10 8000 6096 0 999999999 17 0 0 88 0.2 0 0 +1.638E7 14.6 5.3 54 96191 725 1322 350 260 44 236 29351 3586 26785 9360 170 1.5 9 9 8000 6000 0 999999999 16 0 0 88 0.2 0 0 +1.63836E7 15 6 55 95815 643 1322 352 222 40 202 24932 3126 22836 7839 160 4.6 9 9 8000 7620 0 999999999 17 0 0 88 0.2 0 0 +1.63872E7 14 7 63 95797 498 1322 349 156 14 151 17422 964 16890 5545 170 2.6 9 9 8000 5791 0 999999999 19 0 0 88 0.2 0 0 +1.63908E7 13.7 6.3 61 96146 300 1322 347 75 0 75 8376 1 8403 2665 160 2.1 9 9 8000 5100 0 999999999 18 0 0 88 0.2 0 0 +1.63944E7 13 6 62 95778 63 1322 343 9 0 9 856 0 862 328 170 2.1 9 9 8000 5182 0 999999999 17 0 0 88 0.2 0 0 +1.6398E7 12 7 71 95759 0 319 339 0 0 0 0 0 0 0 160 2.1 9 9 8000 5182 0 999999999 19 0 0 88 0.2 0 0 +1.64016E7 11.5 7 74 96227 0 0 337 0 0 0 0 0 0 0 254 1 9 9 8000 5100 9 999999999 19 0 0 88 0.2 0 0 +1.64052E7 10.2 6.5 78 95965 0 0 318 0 0 0 0 0 0 0 265 1 7 7 8999 5100 9 999999999 18 0 0 88 0.2 0 0 +1.64088E7 9 6 81 95702 0 0 333 0 0 0 0 0 0 0 319 1 10 10 8999 5486 9 999999999 17 0 0 88 0.2 0 0 +1.64124E7 9.7 6.2 79 96240 0 0 337 0 0 0 0 0 0 0 20 1.5 10 10 7000 5400 9 999999999 18 0 0 88 0.2 0 0 +1.6416E7 10 6 76 95721 0 0 338 0 0 0 0 0 0 0 70 2.6 10 10 7000 5486 9 999999999 17 0 0 88 0.2 0 0 +1.64196E7 9 6 81 95702 0 0 324 0 0 0 0 0 0 0 310 2.1 9 9 7000 5486 9 999999999 17 0 0 88 0.2 0 0 +1.64232E7 8.2 5.4 82 96116 0 0 320 0 0 0 0 0 0 0 120 1.5 9 9 7000 5400 9 999999999 16 0 0 88 0.2 0 0 +1.64268E7 8 5 81 95683 0 0 327 0 0 0 0 0 0 0 266 1 10 10 7000 5486 9 999999999 16 0 0 88 0.2 0 0 +1.64304E7 8 5 81 95683 0 0 318 0 0 0 0 0 0 0 119 1 9 9 7000 4877 9 999999999 16 0 0 88 0.2 0 0 +1.6434E7 8.4 5.3 81 96064 0 0 321 0 0 0 0 0 0 0 360 1 9 9 7000 4800 9 999999999 16 0 0 88 0.2 0 0 +1.64376E7 8 6 87 95683 0 0 319 0 0 0 0 0 0 0 20 0.5 9 9 5000 4877 9 999999999 17 0 0 88 0.2 0 0 +1.64412E7 7 5 87 95663 0 0 314 0 0 0 0 0 0 0 68 0.5 9 9 6000 5486 9 999999999 16 0 0 88 0.2 0 0 +1.64448E7 7 4.4 84 96074 0 0 322 0 0 0 0 0 0 0 90 1.5 10 10 8000 5400 9 999999999 15 0 0 88 0.2 0 0 +1.64484E7 7 5 87 95663 162 846 314 29 0 29 2800 0 2820 1046 183 1 9 9 8000 5486 9 999999999 16 0 0 88 0.2 0 0 +1.6452E7 8 6 87 95683 386 1322 319 109 11 105 12143 588 11818 3805 50 2.1 9 9 6000 5486 9 999999999 17 0 0 88 0.2 0 0 +1.64556E7 9.5 6.4 81 96189 564 1322 336 113 0 113 11428 0 11523 4811 360 1 10 10 8000 4800 9 999999999 18 0 0 88 0.2 0 0 +1.64592E7 10 7 82 95721 685 1322 330 241 41 219 27132 3283 24842 8615 260 2.1 9 9 8000 7620 9 999999999 19 0 0 88 0.2 0 0 +1.64628E7 13.3 6.7 64 96252 741 1322 345 267 45 242 30144 3676 27450 9642 50 1 9 9 8000 4800 9 999999999 18 0 0 88 0.2 0 0 +1.64664E7 13.3 6.7 64 96252 727 1322 345 260 91 210 29678 7033 24097 8690 216 1 9 9 8000 4800 9 999999999 18 0 0 88 0.2 0 0 +1.647E7 14 7 63 95797 645 1322 329 410 192 316 44411 18563 34477 9835 50 1.5 5 5 8000 4800 9 999999999 19 0 0 88 0.2 0 0 +1.64736E7 14 8 67 95797 500 1322 350 157 58 135 17677 3647 15257 5167 270 2.1 9 9 8000 5486 9 999999999 21 0 0 88 0.2 0 0 +1.64772E7 13.4 8.4 72 96301 302 1322 348 76 0 76 8443 3 8470 2691 340 1.5 9 9 8000 4800 9 999999999 22 0 0 88 0.2 0 0 +1.64808E7 13 8 72 95778 65 1322 345 9 0 9 885 0 891 340 80 1.5 9 9 8000 5182 9 999999999 21 0 0 88 0.2 0 0 +1.64844E7 10 7 82 95721 0 330 311 0 0 0 0 0 0 0 90 1.5 5 5 8000 7620 9 999999999 19 0 0 88 0.2 0 0 +1.6488E7 10.2 6.3 77 96457 0 0 311 0 0 0 0 0 0 0 100 1.5 5 5 8000 7620 9 999999999 18 0 0 88 0.2 0 0 +1.64916E7 9 6 81 95702 0 0 301 0 0 0 0 0 0 0 300 1.5 3 3 7000 7620 9 999999999 17 0 0 88 0.2 0 0 +1.64952E7 9 7 87 95702 0 0 302 0 0 0 0 0 0 0 196 0 3 3 8000 7620 9 999999999 19 0 0 88 0.2 0 0 +1.64988E7 7.2 5.4 88 96541 0 0 293 0 0 0 0 0 0 0 10 2.6 3 3 3000 7620 9 999999999 16 0 0 88 0.2 0 0 +1.65024E7 7 5 87 95663 0 0 280 0 0 0 0 0 0 0 20 1.5 0 0 5000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.6506E7 5 4 93 95624 0 0 271 0 0 0 0 0 0 0 252 1 0 0 3000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.65096E7 8 5.8 86 96830 0 0 284 0 0 0 0 0 0 0 335 0 0 0 5000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.65132E7 5 4 93 95624 0 0 271 0 0 0 0 0 0 0 260 2.6 0 0 2000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.65168E7 4 4 100 95604 0 0 283 0 0 0 0 0 0 0 240 1.5 5 5 900 2000 0 999999999 14 0 0 88 0.2 0 0 +1.65204E7 3.9 3.8 99 96607 0 0 280 0 0 0 0 0 0 0 20 2.1 4 4 200 2000 0 999999999 14 0 0 88 0.2 0 0 +1.6524E7 3 3 100 95584 0 0 294 0 0 0 0 0 0 0 350 2.1 9 9 1500 610 0 999999999 13 0 0 88 0.2 0 0 +1.65276E7 4 3 93 95604 0 0 282 0 0 0 0 0 0 0 350 2.1 5 5 2000 610 0 999999999 13 0 0 88 0.2 0 0 +1.65312E7 2 1.1 94 96738 0 0 257 0 0 0 0 0 0 0 315 0.5 0 0 700 610 0 999999999 11 0 0 88 0.2 0 0 +1.65348E7 3 2 93 95584 164 852 261 57 91 45 6235 193 5014 1462 8 0 0 0 2000 2000 0 999999999 12 0 0 88 0.2 0 0 +1.65384E7 5 4 93 95624 387 1322 271 213 438 84 24201 20322 9628 3250 300 1.5 0 0 1500 2000 0 999999999 14 0 0 88 0.2 0 0 +1.6542E7 7.9 5.8 87 96828 566 1322 284 362 635 90 42750 35482 10626 3977 360 0 0 0 5000 2000 0 999999999 17 0 0 88 0.2 0 0 +1.65456E7 12 7 71 95759 688 1322 302 468 680 115 55575 42202 13678 5290 332 1 0 0 8000 2000 0 999999999 19 0 0 88 0.2 0 0 +1.65492E7 14 8 67 95797 744 1322 330 478 563 161 55747 38833 18896 7217 85 1 5 5 8000 2000 0 999999999 21 0 0 88 0.2 0 0 +1.65528E7 14.4 7.7 64 96688 730 1322 313 506 701 119 60310 43916 14190 5567 160 2.6 0 0 8000 2000 0 999999999 20 0 0 88 0.2 0 0 +1.65564E7 16 6 51 95834 648 1322 332 431 683 96 51454 40197 11491 4433 200 1.5 3 3 8000 2000 0 999999999 17 0 0 88 0.2 0 0 +1.656E7 16 6 51 95834 503 1322 332 305 543 99 35296 30119 11442 4099 180 3.6 3 3 8000 2000 0 999999999 17 0 0 88 0.2 0 0 +1.65636E7 15.7 6.1 53 96627 305 1322 317 149 342 70 16763 11433 7908 2558 210 2.1 0 0 8000 2000 0 999999999 17 0 0 88 0.2 0 0 +1.65672E7 13 7 67 95778 68 1322 325 17 0 17 1643 0 1654 564 180 3.1 5 5 8000 2000 0 999999999 19 0 0 88 0.2 0 0 +1.65708E7 12 7 71 95759 0 342 323 0 0 0 0 0 0 0 220 1.5 6 6 8000 2000 0 999999999 19 0 0 88 0.2 0 0 +1.65744E7 9.4 5.9 79 96735 0 0 290 0 0 0 0 0 0 0 330 1 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.6578E7 9 6 81 95702 0 0 317 0 0 0 0 0 0 0 340 2.1 8 8 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.65816E7 9 5 76 95702 0 0 311 0 0 0 0 0 0 0 248 0.5 7 7 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.65852E7 6.7 4 83 96691 0 0 278 0 0 0 0 0 0 0 360 0 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.65888E7 5 3 87 95624 0 0 270 0 0 0 0 0 0 0 40 2.1 0 0 5000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.65924E7 6 4 87 95644 0 0 275 0 0 0 0 0 0 0 118 1 0 0 3000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.6596E7 5.4 4.2 92 96552 0 0 273 0 0 0 0 0 0 0 20 1.5 0 0 200 2000 9 999999999 15 0 0 88 0.2 0 0 +1.65996E7 3 2 93 95584 0 0 261 0 0 0 0 0 0 0 320 0 0 0 1100 2000 9 999999999 12 0 0 88 0.2 0 0 +1.66032E7 3 1 87 95584 0 0 260 0 0 0 0 0 0 0 170 1.5 0 0 1200 2000 9 999999999 11 0 0 88 0.2 0 0 +1.66068E7 1.2 -0.1 91 96411 0 0 268 0 0 0 0 0 0 0 330 1.5 5 5 200 2000 9 999999999 10 0 0 88 0.2 0 0 +1.66104E7 1 0 93 95544 0 0 267 0 0 0 0 0 0 0 40 2.1 5 5 1100 2000 9 999999999 10 0 0 88 0.2 0 0 +1.6614E7 2 1 93 95564 0 0 272 0 0 0 0 0 0 0 233 0 5 5 800 2000 0 999999999 11 0 0 88 0.2 0 0 +1.66176E7 1 0.5 96 96444 0 0 263 0 0 0 0 0 0 0 260 1.5 3 3 300 2000 0 999999999 10 0 0 88 0.2 0 0 +1.66212E7 0 -1 92 95523 165 858 258 57 67 48 6241 358 5337 1529 280 1.5 3 3 200 2000 0 999999999 9 0 0 88 0.2 0 0 +1.66248E7 2 2 100 95564 389 1322 258 215 444 84 24468 20943 9605 3246 40 1.5 0 0 3000 2000 0 999999999 12 0 0 88 0.2 0 0 +1.66284E7 6.4 5.3 93 96525 568 1322 278 364 638 90 43020 35799 10619 3978 40 2.1 0 0 4000 2000 0 999999999 16 0 0 88 0.2 0 0 +1.6632E7 11 7 76 95740 690 1322 298 470 729 90 56888 42312 10918 4294 52 1 0 0 6000 2000 0 999999999 19 0 0 88 0.2 0 0 +1.66356E7 13 7 67 95778 746 1322 307 521 761 92 63536 44841 11194 4479 178 0.5 0 0 6000 2000 0 999999999 19 0 0 88 0.2 0 0 +1.66392E7 15.2 5.5 52 96448 733 1322 314 510 759 89 62217 44917 10943 4362 180 3.1 0 0 8000 2000 0 999999999 16 0 0 88 0.2 0 0 +1.66428E7 17 3 39 95852 651 1322 326 438 703 93 52584 41822 11145 4309 160 4.1 1 1 8000 2000 0 999999999 13 0 0 88 0.2 0 0 +1.66464E7 17 4 42 95852 506 1322 327 311 554 99 35971 31266 11454 4108 210 1.5 1 1 8000 2000 0 999999999 14 0 0 88 0.2 0 0 +1.665E7 17.2 2.5 37 96419 308 1322 320 152 352 70 17122 12352 7904 2562 310 2.1 0 0 8000 2000 0 999999999 12 0 0 88 0.2 0 0 +1.66536E7 15 4 48 95815 70 1322 322 19 8 19 2126 0 2083 608 250 1.5 2 2 8000 2000 0 999999999 14 0 0 88 0.2 0 0 +1.66572E7 12 6 67 95759 0 354 319 0 0 0 0 0 0 0 200 2.1 5 5 8000 2000 0 999999999 17 0 0 88 0.2 0 0 +1.66608E7 10.3 6.5 77 96497 0 0 295 0 0 0 0 0 0 0 170 1.5 0 0 8000 2000 9 999999999 18 0 0 88 0.2 0 0 +1.66644E7 10 7 82 95721 0 0 294 0 0 0 0 0 0 0 140 3.6 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.6668E7 8 5 81 95683 0 0 284 0 0 0 0 0 0 0 100 1 0 0 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.66716E7 5.7 3.1 83 96643 0 0 273 0 0 0 0 0 0 0 360 0.5 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.66752E7 5 3 87 95624 0 0 270 0 0 0 0 0 0 0 175 1 0 0 6000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.66788E7 4 3 93 95604 0 0 266 0 0 0 0 0 0 0 340 1 0 0 5000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.66824E7 4.2 2.7 90 96679 0 0 267 0 0 0 0 0 0 0 110 0.5 0 0 5000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.6686E7 4 1 81 95604 0 0 264 0 0 0 0 0 0 0 246 1 0 0 5000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.66896E7 3 1 87 95584 0 0 260 0 0 0 0 0 0 0 170 1 0 0 5000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.66932E7 2.7 1.4 91 96705 0 0 260 0 0 0 0 0 0 0 360 1 0 0 3000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.66968E7 1 0 93 95544 0 0 291 0 0 0 0 0 0 0 310 1.5 10 10 3000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.67004E7 2 0 87 95564 0 0 256 0 0 0 0 0 0 0 216 1 0 0 3000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.6704E7 2.5 0.8 89 96805 0 0 258 0 0 0 0 0 0 0 10 2.1 0 0 3000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.67076E7 3 1 87 95584 166 865 260 58 72 49 6393 396 5421 1551 10 2.6 0 0 3000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.67112E7 4 1 81 95604 391 1322 264 217 377 105 24254 20224 11820 3822 230 2.6 0 0 4000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.67148E7 8.5 4.1 74 96840 570 1322 285 367 643 89 43388 36370 10575 3965 180 4.6 0 0 5000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.67184E7 11 4 62 95740 692 1322 295 475 740 87 57651 43629 10631 4185 280 1.5 0 0 7000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.6722E7 14 5 55 95797 749 1322 322 517 739 99 62778 45012 12007 4790 289 1 3 3 7000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.67256E7 15.8 3.8 45 96695 735 1322 315 514 743 101 62191 45795 12256 4860 112 1 0 0 7000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.67292E7 17 2 36 95852 653 1322 332 436 625 127 51068 41167 14968 5633 68 0.5 3 3 7000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.67328E7 18 3 37 95870 508 1322 343 292 450 119 33337 27618 13615 4753 197 1 5 5 7000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.67364E7 17.7 3.4 38 96589 310 1322 342 143 281 77 16005 10569 8636 2754 360 0 5 5 7000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.674E7 17 1 34 95852 72 1322 331 20 6 19 2190 0 2159 629 30 2.1 3 3 7000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.67436E7 15 1 39 95815 0 367 315 0 0 0 0 0 0 0 40 2.1 1 1 7000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.67472E7 10.7 0.9 51 96656 0 0 303 0 0 0 0 0 0 0 158 1 3 3 7000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.67508E7 11 2 54 95740 0 0 306 0 0 0 0 0 0 0 174 1 3 3 7000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.67544E7 8 1 61 95683 0 0 292 0 0 0 0 0 0 0 107 0.5 3 3 7000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.6758E7 5.9 1.2 72 96675 0 0 272 0 0 0 0 0 0 0 30 2.1 0 0 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.67616E7 6 2 75 95644 0 0 273 0 0 0 0 0 0 0 140 1 0 0 6000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.67652E7 5 1 75 95624 0 0 268 0 0 0 0 0 0 0 221 0.5 0 0 6000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.67688E7 3.5 1.2 85 96646 0 0 262 0 0 0 0 0 0 0 30 1.5 0 0 5000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.67724E7 3 1 87 95584 0 0 260 0 0 0 0 0 0 0 289 1 0 0 5000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.6776E7 3 1 87 95584 0 0 260 0 0 0 0 0 0 0 278 0 0 0 5000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.67796E7 2.9 0.9 87 96596 0 0 260 0 0 0 0 0 0 0 360 0.5 0 0 5000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.67832E7 2 0 87 95564 0 0 256 0 0 0 0 0 0 0 6 1 0 0 5000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.67868E7 1 0 93 95544 0 0 252 0 0 0 0 0 0 0 30 2.1 0 0 4000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.67904E7 3.4 0.1 79 96653 0 0 272 0 0 0 0 0 0 0 30 2.1 3 3 5000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.6794E7 3 0 81 95584 168 872 271 59 70 50 6424 445 5467 1566 22 0 3 3 5000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.67976E7 6 1 70 95644 393 1322 272 218 379 106 24439 20424 11873 3843 196 1 0 0 7000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.68012E7 9.9 1.9 57 96688 573 1322 288 370 650 88 43866 37232 10494 3939 150 1.5 0 0 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.68048E7 13 2 47 95778 695 1322 311 478 744 87 58063 44336 10580 4168 170 2.1 2 2 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.68084E7 16 2 39 95834 751 1322 320 530 781 86 65109 47032 10626 4259 162 0.5 1 1 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.6812E7 17 2.4 37 96510 738 1322 319 518 773 86 63449 46339 10613 4239 51 1 0 0 8000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.68156E7 18 1 32 95870 656 1322 322 445 709 93 53447 42807 11205 4338 132 1 0 0 8000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.68192E7 19 1 30 95888 511 1322 326 317 558 102 36725 32516 11798 4225 162 1 0 0 8000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.68228E7 18.9 3.4 36 96440 313 1322 329 156 346 74 17507 12705 8305 2680 190 1.5 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.68264E7 17 4 42 95852 75 1322 327 21 11 20 2286 0 2220 648 230 1.5 1 1 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.683E7 14 4 51 95797 0 379 321 0 0 0 0 0 0 0 249 0.5 3 3 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.68336E7 11.8 4.6 61 96526 0 0 299 0 0 0 0 0 0 0 43 0 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.68372E7 13 4 54 95778 0 0 317 0 0 0 0 0 0 0 150 2.6 3 3 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.68408E7 10 4 66 95721 0 0 308 0 0 0 0 0 0 0 151 1 5 5 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.68444E7 6.9 3.2 77 96535 0 0 278 0 0 0 0 0 0 0 40 2.6 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.6848E7 7 2 70 95663 0 0 296 0 0 0 0 0 0 0 50 2.1 6 6 8000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.68516E7 7 4 81 95663 0 0 306 0 0 0 0 0 0 0 30 2.1 8 8 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.68552E7 6.1 2.7 79 96472 0 0 274 0 0 0 0 0 0 0 218 1 0 0 8000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.68588E7 5 2 81 95624 0 0 269 0 0 0 0 0 0 0 131 1 0 0 8000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.68624E7 3 1 87 95584 0 0 260 0 0 0 0 0 0 0 166 1 0 0 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.6866E7 3.9 1.6 85 96324 0 0 264 0 0 0 0 0 0 0 170 2.1 0 0 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.68696E7 3 1 87 95584 0 0 260 0 0 0 0 0 0 0 215 1 0 0 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.68732E7 2 0 87 95564 0 0 256 0 0 0 0 0 0 0 60 1.5 0 0 5000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.68768E7 2.7 1.1 89 96309 0 0 259 0 0 0 0 0 0 0 89 1 0 0 4000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.68804E7 4 2 87 95604 170 881 265 60 99 48 6628 459 5246 1529 300 1.5 0 0 5000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.6884E7 8 4 76 95683 395 1322 283 219 447 85 24928 21102 9748 3304 50 1.5 0 0 5000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.68876E7 11.2 4.8 65 96306 575 1322 297 370 646 89 43847 36468 10617 3989 360 3.1 0 0 5000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.68912E7 14 5 55 95797 698 1322 322 472 711 97 56835 42731 11691 4590 117 1 3 3 5000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.68948E7 16 6 51 95834 754 1322 332 526 755 95 64048 45283 11590 4640 221 1 3 3 5000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.68984E7 18.6 4 38 96056 741 1322 328 519 769 88 63533 45896 10805 4318 168 1 0 0 5000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.6902E7 20 4 35 95906 659 1322 334 446 706 93 53489 41978 11235 4357 170 2.1 0 0 5000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.69056E7 21 5 35 95924 514 1322 340 318 564 98 36857 31727 11437 4126 220 2.6 0 0 5000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.69092E7 20.5 4.1 34 95948 316 1322 337 158 361 71 17782 12956 8072 2629 210 1.5 0 0 5000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.69128E7 19 4 37 95888 78 1322 330 21 13 21 2366 0 2289 668 160 1.5 0 0 5000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.69164E7 17 4 42 95852 0 392 327 0 0 0 0 0 0 0 150 2.6 1 1 5000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.692E7 14.5 3.5 48 96047 0 0 309 0 0 0 0 0 0 0 326 1 0 0 5000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.69236E7 12 4 58 95759 0 0 315 0 0 0 0 0 0 0 31 0.5 4 4 5000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.69272E7 10 3 62 95721 0 0 305 0 0 0 0 0 0 0 334 0 4 4 5000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.69308E7 9.2 3.1 66 96079 0 0 287 0 0 0 0 0 0 0 360 1 0 0 5000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.69344E7 6 3 81 95644 0 0 301 0 0 0 0 0 0 0 350 2.1 8 8 5000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.6938E7 6 3 81 95644 0 0 274 0 0 0 0 0 0 0 70 2.1 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.69416E7 5.8 2.5 79 96022 0 0 273 0 0 0 0 0 0 0 42 0 0 0 8000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.69452E7 4 2 87 95604 0 0 265 0 0 0 0 0 0 0 229 1 0 0 7000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.69488E7 4 2 87 95604 0 0 265 0 0 0 0 0 0 0 258 1 0 0 6000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.69524E7 3.4 1.3 86 95908 0 0 262 0 0 0 0 0 0 0 310 1.5 0 0 6000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.6956E7 3 1 87 95584 0 0 260 0 0 0 0 0 0 0 82 0.5 0 0 6000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.69596E7 2 0 87 95564 0 0 256 0 0 0 0 0 0 0 280 1.5 0 0 6000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.69632E7 1.9 0.3 89 95944 0 0 256 0 0 0 0 0 0 0 360 1.5 0 0 2000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.69668E7 3 2 93 95584 172 889 261 61 101 48 6746 544 5316 1550 270 0.5 0 0 6000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.69704E7 8 4 76 95683 397 1322 283 221 449 86 25140 21326 9784 3321 20 1.5 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.6974E7 11.4 4.8 64 95923 578 1322 297 372 648 89 44130 36644 10629 3998 20 1.5 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.69776E7 14 5 55 95797 700 1322 322 474 712 97 57157 42869 11709 4601 330 0.5 3 3 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.69812E7 16 5 48 95834 757 1322 328 531 768 91 64947 46002 11222 4501 118 0.5 2 2 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.69848E7 20 4.2 35 95703 744 1322 334 522 770 88 63875 45960 10841 4336 12 0 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.69884E7 21 1 26 95924 663 1322 335 451 713 94 54153 43164 11282 4376 11 1 0 0 8000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.6992E7 22 5 33 95942 517 1322 345 320 567 99 37179 31977 11475 4145 125 1 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.69956E7 21.2 7.4 41 95724 319 1322 344 159 347 75 17845 12523 8473 2743 210 2.6 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.69992E7 17 7 52 95852 80 1322 338 22 11 21 2415 0 2345 686 180 3.6 3 3 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.70028E7 17 2 36 95852 0 406 318 0 0 0 0 0 0 0 160 3.1 0 0 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.70064E7 15.3 0.6 37 95854 0 0 315 0 0 0 0 0 0 0 140 3.1 1 1 8000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.701E7 13 1 44 95778 0 0 306 0 0 0 0 0 0 0 140 2.1 1 1 8000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.70136E7 12 1 47 95759 0 0 306 0 0 0 0 0 0 0 130 2.1 2 2 8000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.70172E7 8.7 2.1 63 96069 0 0 284 0 0 0 0 0 0 0 360 0.5 0 0 8000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.70208E7 7 2 70 95663 0 0 277 0 0 0 0 0 0 0 3 1 0 0 8000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.70244E7 6 2 75 95644 0 0 273 0 0 0 0 0 0 0 20 1 0 0 7000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.7028E7 5.3 2.8 84 96107 0 0 271 0 0 0 0 0 0 0 255 1 0 0 5000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.70316E7 5 2 81 95624 0 0 269 0 0 0 0 0 0 0 360 1.5 0 0 5000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.70352E7 3 1 87 95584 0 0 260 0 0 0 0 0 0 0 50 1 0 0 4000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.70388E7 3 0.8 85 96079 0 0 260 0 0 0 0 0 0 0 360 0 0 0 5000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.70424E7 3 1 87 95584 0 0 260 0 0 0 0 0 0 0 320 1.5 0 0 5000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.7046E7 3 0 81 95584 0 0 259 0 0 0 0 0 0 0 80 2.1 0 0 5000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.70496E7 3.7 1.2 84 96150 0 0 263 0 0 0 0 0 0 0 93 0.5 0 0 5000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.70532E7 3 1 87 95584 174 899 260 63 79 52 6847 674 5732 1637 260 1.5 0 0 5000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.70568E7 7 3 76 95663 400 1322 278 223 454 86 25421 21799 9793 3329 40 2.1 0 0 6000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.70604E7 11.4 4.1 61 96301 580 1322 297 375 652 89 44500 37070 10616 3997 30 1.5 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.7064E7 15 5 51 95815 703 1322 313 484 744 88 58800 43803 10770 4254 30 1.5 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.70676E7 18 4 39 95870 760 1322 325 537 779 89 65834 46697 10907 4382 224 0.5 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.70712E7 19.5 4.2 36 96082 748 1322 332 525 772 88 64257 46098 10861 4348 210 2.1 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.70748E7 21 5 35 95924 666 1322 340 451 709 94 54111 41959 11290 4389 190 2.6 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.70784E7 20 6 40 95906 521 1322 336 322 571 98 37461 31922 11391 4128 190 4.1 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.7082E7 18.7 7.3 47 96096 322 1322 332 161 363 73 18162 12919 8225 2688 160 6.2 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.70856E7 16 7 55 95834 83 1322 320 23 15 22 2518 0 2422 708 150 4.6 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.70892E7 15 7 59 95815 0 419 315 0 0 0 0 0 0 0 150 2.6 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.70928E7 13.3 7.3 67 96289 0 0 308 0 0 0 0 0 0 0 140 2.6 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +1.70964E7 11 7 76 95740 0 0 298 0 0 0 0 0 0 0 190 2.1 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.71E7 9 5 76 95702 0 0 311 0 0 0 0 0 0 0 180 2.6 7 7 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.71036E7 9.7 5.6 76 96353 0 0 291 0 0 0 0 0 0 0 360 1.5 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.71072E7 7 4 81 95663 0 0 306 0 0 0 0 0 0 0 94 1 8 8 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.71108E7 5 3 87 95624 0 0 270 0 0 0 0 0 0 0 17 0.5 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.71144E7 4.5 2.4 86 96374 0 0 267 0 0 0 0 0 0 0 220 1.5 0 0 7000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.7118E7 7 3 76 95663 0 0 300 0 0 0 0 0 0 0 130 1.5 7 7 7000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.71216E7 4 3 93 95604 0 0 266 0 0 0 0 0 0 0 228 1 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.71252E7 2.5 1.1 90 96324 0 0 259 0 0 0 0 0 0 0 20 2.6 0 0 2000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.71288E7 5 3 87 95624 0 0 282 0 0 0 0 0 0 0 60 2.6 3 3 5000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.71324E7 6 3 81 95644 0 0 290 0 0 0 0 0 0 0 20 4.1 5 5 6000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.7136E7 3.9 1.9 87 96286 0 0 291 0 0 0 0 0 0 0 82 1 8 8 8000 4800 9 999999999 12 0 0 88 0.2 0 0 +1.71396E7 7 4 81 95663 176 909 313 33 0 33 3190 0 3213 1184 170 3.6 9 9 7000 5182 9 999999999 14 0 0 88 0.2 0 0 +1.71432E7 8 5 81 95683 402 1323 318 116 11 112 12892 598 12572 4051 190 2.6 9 9 7000 5182 9 999999999 16 0 0 88 0.2 0 0 +1.71468E7 9.4 5 74 96328 583 1323 325 195 75 162 22014 5277 18366 6366 190 1.5 9 9 7000 4800 9 999999999 16 0 0 88 0.2 0 0 +1.71504E7 11 5 66 95740 706 1323 314 453 482 195 51726 36635 22422 8107 260 1.5 5 5 8000 6096 9 999999999 15 0 0 88 0.2 0 0 +1.7154E7 13 5 58 95778 764 1323 320 525 658 145 62030 44670 17228 6712 94 1 4 4 8000 6096 9 999999999 15 0 0 88 0.2 0 0 +1.71576E7 14.8 5 52 96147 751 1323 334 460 395 236 52204 32237 26887 9562 69 1 6 6 8000 6000 9 999999999 15 0 0 88 0.2 0 0 +1.71612E7 15 6 55 95815 669 1323 362 142 0 142 14495 0 14620 6224 106 1 10 10 8000 4572 9 999999999 17 0 0 88 0.2 0 0 +1.71648E7 15 7 59 95815 524 1323 364 102 0 102 10257 0 10341 4286 220 3.1 10 10 8000 4267 9 999999999 19 0 0 88 0.2 0 0 +1.71684E7 13.7 6.2 60 96051 325 1323 356 51 0 51 5077 0 5116 2055 150 3.6 10 10 8000 4200 9 999999999 17 0 0 88 0.2 0 0 +1.7172E7 13 7 67 95778 86 1323 344 12 0 12 1167 0 1175 447 170 5.7 9 9 8000 3962 9 999999999 19 0 0 88 0.2 0 0 +1.71756E7 12 7 71 95759 0 433 320 0 0 0 0 0 0 0 160 3.6 5 5 8000 4267 9 999999999 19 0 0 88 0.2 0 0 +1.71792E7 10.3 6.3 76 96119 0 0 312 0 0 0 0 0 0 0 160 3.1 5 5 8000 4267 9 999999999 18 0 0 88 0.2 0 0 +1.71828E7 9 6 81 95702 0 0 324 0 0 0 0 0 0 0 160 3.1 9 9 8000 5486 9 999999999 17 0 0 88 0.2 0 0 +1.71864E7 9 6 81 95702 0 0 324 0 0 0 0 0 0 0 150 2.1 9 9 8000 5486 9 999999999 17 0 0 88 0.2 0 0 +1.719E7 8.4 5.4 81 96064 0 0 314 0 0 0 0 0 0 0 170 4.1 8 8 8000 5400 9 999999999 16 0 0 88 0.2 0 0 +1.71936E7 9 5 76 95702 0 0 323 0 0 0 0 0 0 0 150 2.6 9 9 8000 3962 9 999999999 16 0 0 88 0.2 0 0 +1.71972E7 8 5 81 95683 0 0 318 0 0 0 0 0 0 0 160 3.6 9 9 8000 3962 9 999999999 16 0 0 88 0.2 0 0 +1.72008E7 8 5 81 96027 0 0 318 0 0 0 0 0 0 0 150 2.6 9 9 8000 3900 9 999999999 16 0 0 88 0.2 0 0 +1.72044E7 8 5 81 95683 0 0 327 0 0 0 0 0 0 0 170 2.6 10 10 6000 762 9 999999999 16 0 0 88 0.2 0 0 +1.7208E7 8 5 81 95683 0 0 327 0 0 0 0 0 0 0 180 3.1 10 10 6000 762 9 999999999 16 0 0 88 0.2 0 0 +1.72116E7 7.7 5 83 95927 0 0 326 0 0 0 0 0 0 0 160 2.6 10 10 6000 600 9 999999999 16 0 0 88 0.2 0 0 +1.72152E7 8 4 76 95683 0 0 326 0 0 0 0 0 0 0 170 3.6 10 10 6000 610 9 999999999 14 0 0 88 0.2 0 0 +1.72188E7 7 4 81 95663 0 0 322 0 0 0 0 0 0 0 160 3.1 10 10 6000 610 9 999999999 14 0 0 88 0.2 0 0 +1.72224E7 7.5 4.3 80 96055 0 0 324 0 0 0 0 0 0 0 160 3.1 10 10 6000 450 9 999999999 15 0 0 88 0.2 0 0 +1.7226E7 7 4 81 95663 178 919 322 20 0 20 1986 0 2000 799 170 3.6 10 10 7000 457 9 999999999 14 0 0 88 0.2 0 0 +1.72296E7 8 4 76 95683 405 1323 326 71 0 71 7092 0 7148 2897 190 2.6 10 10 8000 457 9 999999999 14 0 0 88 0.2 0 0 +1.72332E7 8.4 4.1 74 96130 586 1323 319 196 76 163 22205 5391 18488 6411 170 1.5 9 9 8000 2100 9 999999999 14 0 0 88 0.2 0 0 +1.72368E7 9 4 71 95702 710 1323 331 154 0 154 15772 0 15909 6815 257 1 10 10 8000 2438 9 999999999 14 0 0 88 0.2 0 0 +1.72404E7 9 5 76 95702 767 1323 332 170 0 170 19900 26 19966 7638 355 0.5 10 10 8000 2438 9 999999999 16 0 0 88 0.2 0 0 +1.7244E7 9 4.9 75 96085 754 1323 332 167 0 167 19471 20 19539 7454 170 3.1 10 10 8000 2400 9 999999999 15 0 0 88 0.2 0 0 +1.72476E7 9 5 76 95702 673 1323 332 144 0 144 14623 0 14749 6278 160 3.1 10 10 8000 2438 9 999999999 16 0 0 88 0.2 0 0 +1.72512E7 10 5 71 95721 527 1323 328 169 65 143 19116 4312 16264 5543 330 1.5 9 9 8000 3048 9 999999999 16 0 0 88 0.2 0 0 +1.72548E7 10.4 5.5 72 96055 328 1323 314 145 185 99 15960 8489 10954 3343 350 3.1 6 6 7000 4500 9 999999999 16 0 0 88 0.2 0 0 +1.72584E7 10 6 76 95721 89 1323 329 12 0 12 1208 0 1216 462 70 1.5 9 9 7000 4572 9 999999999 17 0 0 88 0.2 0 0 +1.7262E7 8 4 76 95683 0 446 317 0 0 0 0 0 0 0 190 4.6 9 9 7000 3658 9 999999999 14 0 0 88 0.2 0 0 +1.72656E7 7.7 3.4 74 96135 0 0 293 0 0 0 0 0 0 0 200 4.1 3 3 7000 3658 9 999999999 13 0 0 88 0.2 0 0 +1.72692E7 7 4 81 95663 0 0 313 0 0 0 0 0 0 0 180 5.1 9 9 7000 762 9 999999999 14 0 0 88 0.2 0 0 +1.72728E7 7 3 76 95663 0 0 312 0 0 0 0 0 0 0 140 3.6 9 9 7000 762 9 999999999 13 0 0 88 0.2 0 0 +1.72764E7 7.4 3 74 96280 0 0 322 0 0 0 0 0 0 0 150 2.1 10 10 7000 750 9 999999999 13 0 0 88 0.2 0 0 +1.728E7 7 3 76 95663 0 0 321 0 0 0 0 0 0 0 300 1 10 10 7000 3048 9 999999999 13 0 0 88 0.2 0 0 +1.72836E7 7 3 76 95663 0 0 321 0 0 0 0 0 0 0 130 1.5 10 10 7000 3048 9 999999999 13 0 0 88 0.2 0 0 +1.72872E7 6 2.7 79 96309 0 0 300 0 0 0 0 0 0 0 340 2.1 8 8 7000 3600 9 999999999 12 0 0 88 0.2 0 0 +1.72908E7 5 3 87 95624 0 0 282 0 0 0 0 0 0 0 300 1.5 3 3 7000 3600 9 999999999 13 0 0 88 0.2 0 0 +1.72944E7 4 3 93 95604 0 0 307 0 0 0 0 0 0 0 160 3.1 10 10 7000 610 9 999999999 13 0 0 88 0.2 0 0 +1.7298E7 6 3.4 83 96413 0 0 316 0 0 0 0 0 0 0 160 2.1 10 10 8000 600 9 999999999 13 0 0 88 0.2 0 0 +1.73016E7 6 4 87 95644 0 0 317 0 0 0 0 0 0 0 326 0.5 10 10 8000 610 9 999999999 14 0 0 88 0.2 0 0 +1.73052E7 6 3 81 95644 0 0 316 0 0 0 0 0 0 0 350 2.1 10 10 8000 610 9 999999999 13 0 0 88 0.2 0 0 +1.73088E7 5.7 3.3 85 96615 0 0 315 0 0 0 0 0 0 0 40 3.1 10 10 6000 600 9 999999999 13 0 0 88 0.2 0 0 +1.73124E7 6 4 87 95644 181 930 317 21 0 21 2029 0 2044 816 220 1 10 10 6000 610 9 999999999 14 0 0 88 0.2 0 0 +1.7316E7 7 3 76 95663 408 1323 321 72 0 72 7178 0 7233 2930 200 3.1 10 10 8000 610 9 999999999 13 0 0 88 0.2 0 0 +1.73196E7 7.4 1.7 67 96828 589 1323 312 198 37 182 22277 2807 20520 6928 220 5.1 9 9 8000 600 9 999999999 11 0 0 88 0.2 0 0 +1.73232E7 8 1 61 95683 713 1323 314 256 20 245 28760 1684 27714 9470 210 5.1 9 9 8000 762 9 999999999 10 0 0 88 0.2 0 0 +1.73268E7 9 1 57 95702 771 1323 318 283 25 268 31914 2209 30425 10552 170 2.1 9 9 8000 762 9 999999999 10 0 0 88 0.2 0 0 +1.73304E7 9.4 1.2 57 96687 758 1323 321 277 47 250 31342 4005 28438 9986 53 1.5 9 9 8000 1050 9 999999999 11 0 0 88 0.2 0 0 +1.7334E7 10 2 57 95721 676 1323 324 238 43 216 26862 3507 24490 8448 165 1.5 9 9 8000 1219 9 999999999 11 0 0 88 0.2 0 0 +1.73376E7 10 1 54 95721 531 1323 323 172 8 169 19197 597 18920 6188 210 5.1 9 9 8000 1524 9 999999999 10 0 0 88 0.2 0 0 +1.73412E7 9.2 -0.3 51 96646 331 1323 311 114 56 100 12604 2708 11109 3386 220 5.7 8 8 8000 1800 9 999999999 9 0 0 88 0.2 0 0 +1.73448E7 8 1 61 95683 92 1323 314 13 0 13 1258 0 1266 480 230 6.7 9 9 8000 1829 9 999999999 10 0 0 88 0.2 0 0 +1.73484E7 6 1 70 95644 0 460 305 0 0 0 0 0 0 0 200 6.2 9 9 8000 2438 9 999999999 10 0 0 88 0.2 0 0 +1.7352E7 6.3 1 69 96778 0 0 306 0 0 0 0 0 0 0 160 4.1 9 9 8000 2438 9 999999999 11 0 0 88 0.2 0 0 +1.73556E7 6 2 75 95644 0 0 306 0 0 0 0 0 0 0 130 2.6 9 9 8000 1829 9 999999999 12 0 0 88 0.2 0 0 +1.73592E7 5 1 75 95624 0 0 301 0 0 0 0 0 0 0 80 2.1 9 9 8000 1219 9 999999999 10 0 0 88 0.2 0 0 +1.73628E7 4.7 1.1 77 96840 0 0 300 0 0 0 0 0 0 0 150 2.6 9 9 8000 2100 9 999999999 11 0 0 88 0.2 0 0 +1.73664E7 5 1 75 95624 0 0 301 0 0 0 0 0 0 0 140 2.6 9 9 8000 2134 9 999999999 10 0 0 88 0.2 0 0 +1.737E7 5 1 75 95624 0 0 301 0 0 0 0 0 0 0 110 2.6 9 9 8000 1829 9 999999999 10 0 0 88 0.2 0 0 +1.73736E7 4.5 1.1 79 96789 0 0 292 0 0 0 0 0 0 0 110 2.1 8 8 8000 1800 9 999999999 11 0 0 88 0.2 0 0 +1.73772E7 4 1 81 95604 0 0 296 0 0 0 0 0 0 0 250 1.5 9 9 8000 1829 9 999999999 11 0 0 88 0.2 0 0 +1.73808E7 3 1 87 95584 0 0 292 0 0 0 0 0 0 0 190 2.1 9 9 8000 1829 9 999999999 11 0 0 88 0.2 0 0 +1.73844E7 2.7 0.9 88 96686 0 0 277 0 0 0 0 0 0 0 240 2.6 6 6 8000 1800 9 999999999 11 0 0 88 0.2 0 0 +1.7388E7 3 0 81 95584 0 0 275 0 0 0 0 0 0 0 100 1.5 5 5 8000 1800 9 999999999 10 0 0 88 0.2 0 0 +1.73916E7 1 0 93 95544 0 0 267 0 0 0 0 0 0 0 176 0 5 5 8000 1800 9 999999999 10 0 0 88 0.2 0 0 +1.73952E7 2.2 0.3 87 96714 0 0 274 0 0 0 0 0 0 0 58 1 6 6 8000 900 9 999999999 10 0 0 88 0.2 0 0 +1.73988E7 3 1 87 95584 183 942 292 35 0 35 3410 0 3434 1260 116 1 9 9 8000 914 9 999999999 11 0 0 88 0.2 0 0 +1.74024E7 4 1 81 95604 411 1323 276 229 416 100 25846 22128 11299 3767 140 2.1 3 3 8000 914 9 999999999 11 0 0 88 0.2 0 0 +1.7406E7 5 0.2 71 96789 592 1323 286 338 349 182 38046 26597 20580 6959 360 1 6 6 8000 600 9 999999999 10 0 0 88 0.2 0 0 +1.74096E7 6 0 65 95644 716 1323 304 258 46 233 29113 3848 26435 9196 162 1 9 9 8000 914 9 999999999 9 0 0 88 0.2 0 0 +1.74132E7 7 0 61 95663 774 1323 308 285 8 280 32048 714 31703 10866 240 2.1 9 9 8000 914 9 999999999 9 0 0 88 0.2 0 0 +1.74168E7 7.2 -2 51 96578 762 1323 293 473 521 173 55233 38771 20328 7720 160 1.5 6 6 8000 900 9 999999999 8 0 0 88 0.2 0 0 +1.74204E7 9 -2 45 95702 680 1323 297 435 456 201 49412 36241 22907 8070 330 2.1 5 5 8000 900 9 999999999 8 0 0 88 0.2 0 0 +1.7424E7 9 -2 45 95702 534 1323 293 333 547 112 38474 34023 13014 4656 161 1 3 3 8000 900 9 999999999 8 0 0 88 0.2 0 0 +1.74276E7 9.2 -2.7 42 96466 334 1323 286 172 342 86 19323 15331 9667 3081 340 1.5 1 1 8000 900 9 999999999 7 0 0 88 0.2 0 0 +1.74312E7 8 -2 48 95683 95 1323 289 26 17 24 2842 0 2716 794 260 2.6 3 3 8000 900 9 999999999 8 0 0 88 0.2 0 0 +1.74348E7 6 1 70 95644 0 475 305 0 0 0 0 0 0 0 230 2.6 9 9 8000 2438 9 999999999 10 0 0 88 0.2 0 0 +1.74384E7 5.8 -0.3 65 96588 0 0 282 0 0 0 0 0 0 0 200 2.6 3 3 8000 2438 9 999999999 9 0 0 88 0.2 0 0 +1.7442E7 4 0 75 95604 0 0 285 0 0 0 0 0 0 0 160 3.1 7 7 9333 2438 9 999999999 10 0 0 88 0.2 0 0 +1.74456E7 4 0 75 95604 0 0 285 0 0 0 0 0 0 0 160 3.1 7 7 8666 2438 9 999999999 10 0 0 88 0.2 0 0 +1.74492E7 1.9 -1.7 76 96642 0 0 254 0 0 0 0 0 0 0 140 1 0 0 8000 2438 9 999999999 8 0 0 88 0.2 0 0 +1.74528E7 2 -2 73 95564 0 0 271 0 0 0 0 0 0 0 212 1 6 6 7500 2438 9 999999999 8 0 0 88 0.2 0 0 +1.74564E7 1 -3 72 95544 0 0 249 0 0 0 0 0 0 0 10 2.1 0 0 7000 2000 9 999999999 7 0 0 88 0.2 0 0 +1.746E7 -1.4 -2.9 88 96705 0 0 241 0 0 0 0 0 0 0 10 1.5 0 0 7000 2000 9 999999999 7 0 0 88 0.293 0 0 +1.74636E7 0 -2 85 95523 0 0 247 0 0 0 0 0 0 0 175 1 0 0 7000 2000 9 999999999 8 0 0 88 0.2 0 0 +1.74672E7 -1 -3 85 95503 0 0 242 0 0 0 0 0 0 0 135 1 0 0 7000 2000 9 999999999 7 0 0 88 0.267 0 0 +1.74708E7 -2.9 -4.8 85 96768 0 0 234 0 0 0 0 0 0 0 20 1 0 0 5000 2000 9 999999999 6 0 0 88 0.393 0 0 +1.74744E7 -2 -3 92 95482 0 0 239 0 0 0 0 0 0 0 328 1 0 0 6000 2000 9 999999999 7 0 0 88 0.333 0 0 +1.7478E7 -3 -4 92 95461 0 0 234 0 0 0 0 0 0 0 170 1.5 0 0 6000 2000 9 999999999 6 0 0 88 0.4 0 0 +1.74816E7 -1.8 -4.1 82 96989 0 0 238 0 0 0 0 0 0 0 70 1.5 0 0 6000 2000 9 999999999 6 0 0 88 0.32 0 0 +1.74852E7 -2 -4 85 95482 186 954 238 70 82 58 7607 1251 6378 1802 320 2.1 0 0 6000 2000 9 999999999 6 0 0 88 0.333 0 0 +1.74888E7 1.5 -2.5 73 96272 414 1323 269 203 251 124 22540 15313 13884 4393 133 2.8 6 6 7000 2000 9 999999999 7 0 0 88 0.2 0 0 +1.74924E7 4.9 -0.9 65 97061 596 1323 266 391 573 133 45131 38525 15447 5592 40 3.6 0 0 8000 2000 9 999999999 9 0 0 88 0.2 0 0 +1.7496E7 8 -2 48 95683 720 1323 286 502 732 104 60510 46711 12579 4945 330 2.6 2 2 8666 2000 9 999999999 8 0 0 88 0.2 0 0 +1.74996E7 9 -3 41 95702 778 1323 285 557 732 127 66845 49660 15329 6062 71 1 1 1 9333 2000 9 999999999 7 0 0 88 0.2 0 0 +1.75032E7 10.9 -4.1 33 96934 765 1323 286 547 730 125 65573 49452 15012 5919 210 1.5 0 0 9333 2000 9 999999999 6 0 0 88 0.2 0 0 +1.75068E7 13 -9 19 95778 683 1323 289 475 739 94 57439 46719 11405 4446 350 1 0 0 9333 2000 9 999999999 4 0 0 88 0.2 0 0 +1.75104E7 13 -6 25 95778 538 1323 293 343 534 126 39284 35244 14467 5090 170 3.1 0 0 9333 2000 9 999999999 5 0 0 88 0.2 0 0 +1.7514E7 12.7 -7 23 96845 338 1323 308 164 264 97 18236 13078 10778 3344 180 3.1 5 5 9333 2000 9 999999999 5 0 0 88 0.2 0 0 +1.75176E7 11 -5 31 95740 98 1323 286 27 17 26 2978 0 2849 829 160 3.1 0 0 9333 2000 9 999999999 6 0 0 88 0.2 0 0 +1.75212E7 10 -3 39 95721 0 489 289 0 0 0 0 0 0 0 220 2.1 1 1 9333 2000 9 999999999 7 0 0 88 0.2 0 0 +1.75248E7 7 -3.5 46 96886 0 0 288 0 0 0 0 0 0 0 190 1.5 5 5 9333 2000 9 999999999 7 0 0 88 0.2 0 0 +1.75284E7 5 -3 55 95624 0 0 276 0 0 0 0 0 0 0 136 1 3 3 9333 2000 9 999999999 7 0 0 88 0.2 0 0 +1.7532E7 4 -4 54 95604 0 0 271 0 0 0 0 0 0 0 140 0.5 3 3 9333 2000 9 999999999 6 0 0 88 0.2 0 0 +1.75356E7 3.2 -4.4 55 96885 0 0 267 0 0 0 0 0 0 0 20 2.1 3 3 9333 2000 9 999999999 6 0 0 88 0.2 0 0 +1.75392E7 2 -4 62 95564 0 0 263 0 0 0 0 0 0 0 221 1 3 3 8000 2000 9 999999999 6 0 0 88 0.2 0 0 +1.75428E7 1 -4 67 95544 0 0 259 0 0 0 0 0 0 0 187 1 3 3 7000 2000 9 999999999 6 0 0 88 0.2 0 0 +1.75464E7 0.3 -4.2 69 96750 0 0 250 0 0 0 0 0 0 0 52 0.5 1 1 7000 2000 9 999999999 6 0 0 88 0.2 0 0 +1.755E7 1 -5 61 95544 0 0 258 0 0 0 0 0 0 0 269 1 3 3 7000 2000 9 999999999 6 0 0 88 0.2 0 0 +1.75536E7 -1 -5 71 95503 0 0 240 0 0 0 0 0 0 0 209 1 0 0 8000 2000 9 999999999 6 0 0 88 0.267 0 0 +1.75572E7 -1.5 -5.4 72 96684 0 0 243 0 0 0 0 0 0 0 360 0.5 1 1 7000 2000 9 999999999 6 0 0 88 0.3 0 0 +1.75608E7 -1 -5 71 95503 0 0 251 0 0 0 0 0 0 0 20 1.5 3 3 6000 2000 9 999999999 6 0 0 88 0.267 0 0 +1.75644E7 -2 -5 78 95482 0 0 247 0 0 0 0 0 0 0 20 1.5 3 3 7000 2000 9 999999999 6 0 0 88 0.333 0 0 +1.7568E7 -1.7 -5.7 71 96633 0 0 242 0 0 0 0 0 0 0 71 1 1 1 7000 2000 9 999999999 5 0 0 88 0.313 0 0 +1.75716E7 0 -4 72 95523 189 967 245 71 142 51 7884 1658 5670 1676 329 1 0 0 6000 2000 9 999999999 6 0 0 88 0.2 0 0 +1.75752E7 3 -3 63 95584 417 1324 257 238 405 111 26756 23333 12473 4083 142 0.5 0 0 7000 2000 9 999999999 7 0 0 88 0.2 0 0 +1.75788E7 6.7 -3.3 47 96635 599 1324 270 395 680 88 47216 40362 10529 3993 340 2.1 0 0 7000 2000 9 999999999 7 0 0 88 0.2 0 0 +1.75824E7 10 -3 39 95721 724 1324 289 508 779 82 62361 47270 10112 4021 64 1 1 1 7000 2000 9 999999999 7 0 0 88 0.2 0 0 +1.7586E7 13 -4 29 95778 782 1324 295 562 733 129 67356 50098 15580 6160 277 1 0 0 7000 2000 9 999999999 6 0 0 88 0.2 0 0 +1.75896E7 14.7 -6.9 20 96410 769 1324 299 553 731 128 66211 50281 15413 6069 26 0.5 0 0 7000 2000 9 999999999 5 0 0 88 0.2 0 0 +1.75932E7 16 -8 17 95834 687 1324 303 478 738 95 57764 46730 11520 4495 76 1 0 0 7000 2000 9 999999999 4 0 0 88 0.2 0 0 +1.75968E7 16 -7 19 95834 541 1324 304 346 586 107 40265 36512 12454 4501 200 1.5 0 0 7000 2000 9 999999999 5 0 0 88 0.2 0 0 +1.76004E7 16.4 -5.9 20 96281 341 1324 307 179 356 87 20042 16492 9779 3130 190 2.1 0 0 7000 2000 9 999999999 5 0 0 88 0.2 0 0 +1.7604E7 15 -5 24 95815 101 1324 302 28 22 26 3073 0 2893 845 240 1.5 0 0 7000 2000 9 999999999 6 0 0 88 0.2 0 0 +1.76076E7 11 -3 36 95740 0 503 288 0 0 0 0 0 0 0 53 0.5 0 0 7000 2000 9 999999999 7 0 0 88 0.2 0 0 +1.76112E7 8.1 -2.3 47 96303 0 0 277 0 0 0 0 0 0 0 323 1 0 0 7000 2000 9 999999999 8 0 0 88 0.2 0 0 +1.76148E7 6 -2 55 95644 0 0 281 0 0 0 0 0 0 0 270 1 3 3 7000 2000 9 999999999 8 0 0 88 0.2 0 0 +1.76184E7 6 -3 51 95644 0 0 280 0 0 0 0 0 0 0 329 1 3 3 7000 2000 9 999999999 7 0 0 88 0.2 0 0 +1.7622E7 4.7 -3 56 96302 0 0 263 0 0 0 0 0 0 0 360 1 0 0 8000 2000 9 999999999 7 0 0 88 0.2 0 0 +1.76256E7 4 -2 64 95604 0 0 261 0 0 0 0 0 0 0 20 1.5 0 0 8000 2000 9 999999999 8 0 0 88 0.2 0 0 +1.76292E7 4 -3 59 95604 0 0 260 0 0 0 0 0 0 0 40 1 0 0 6000 2000 9 999999999 7 0 0 88 0.2 0 0 +1.76328E7 1.3 -3.7 67 96224 0 0 250 0 0 0 0 0 0 0 316 0.5 0 0 6000 2000 9 999999999 7 0 0 88 0.2 0 0 +1.76364E7 2 -4 62 95564 0 0 252 0 0 0 0 0 0 0 30 1.5 0 0 6000 2000 9 999999999 6 0 0 88 0.2 0 0 +1.764E7 0 -4 72 95523 0 0 245 0 0 0 0 0 0 0 112 0 0 0 6000 2000 9 999999999 6 0 0 88 0.2 0 0 +1.76436E7 -0.5 -3.8 76 96102 0 0 243 0 0 0 0 0 0 0 360 1 0 0 6000 2000 9 999999999 7 0 0 88 0.233 0 0 +1.76472E7 -1 -4 78 95503 0 0 241 0 0 0 0 0 0 0 99 0.5 0 0 6000 2000 9 999999999 6 0 0 88 0.267 0 0 +1.76508E7 0 -4 72 95523 0 0 245 0 0 0 0 0 0 0 102 1 0 0 6000 2000 9 999999999 6 0 0 88 0.2 0 0 +1.76544E7 -2 -4.8 79 96146 0 0 237 0 0 0 0 0 0 0 321 0.5 0 0 6000 2000 9 999999999 6 0 0 88 0.333 0 0 +1.7658E7 1 -4 67 95544 191 981 248 73 144 52 8053 1828 5764 1705 340 1.5 0 0 8000 2000 9 999999999 6 0 0 88 0.2 0 0 +1.76616E7 5 -2 59 95624 420 1324 265 240 405 112 26972 23393 12597 4128 20 2.6 0 0 8000 2000 9 999999999 8 0 0 88 0.2 0 0 +1.76652E7 10.2 -2 42 96098 603 1324 286 398 678 89 47440 40243 10651 4042 360 0.5 0 0 8000 2000 9 999999999 8 0 0 88 0.2 0 0 +1.76688E7 13 -1 38 95778 727 1324 298 509 774 84 62462 46876 10348 4118 27 1 0 0 8000 2000 9 999999999 8 0 0 88 0.2 0 0 +1.76724E7 16 0 34 95834 786 1324 312 562 803 86 69462 49010 10623 4295 280 2.1 0 0 8000 2000 9 999999999 9 0 0 88 0.2 0 0 +1.7676E7 20.3 0.9 27 95841 773 1324 332 550 794 86 67780 48253 10679 4304 40 1.5 0 0 8000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.76796E7 23 -2 18 95959 691 1324 341 477 727 98 57497 45483 11848 4626 278 1 0 0 8000 2000 9 999999999 8 0 0 88 0.2 0 0 +1.76832E7 24 -4 15 95977 545 1324 343 348 580 109 40371 36123 12713 4593 258 1 0 0 8000 2000 9 999999999 6 0 0 88 0.2 0 0 +1.76868E7 23.2 -1.5 19 95712 345 1324 342 180 351 88 20143 16181 9934 3182 240 1.5 0 0 8000 2000 9 999999999 8 0 0 88 0.2 0 0 +1.76904E7 20 1 28 95906 104 1324 331 28 21 27 3129 0 2957 866 190 2.1 0 0 8000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.7694E7 17 2 36 95852 0 518 318 0 0 0 0 0 0 0 275 1 0 0 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.76976E7 13.3 1.4 44 95751 0 0 302 0 0 0 0 0 0 0 124 0.5 0 0 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.77012E7 9 1 57 95702 0 0 298 0 0 0 0 0 0 0 30 1.5 4 4 8000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.77048E7 8 0 57 95683 0 0 293 0 0 0 0 0 0 0 136 1 4 4 8000 2000 9 999999999 9 0 0 88 0.2 0 0 +1.77084E7 7.2 0.6 63 95738 0 0 276 0 0 0 0 0 0 0 360 1 0 0 8000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.7712E7 6 0 65 95644 0 0 287 0 0 0 0 0 0 0 46 1 5 5 8000 2000 9 999999999 9 0 0 88 0.2 0 0 +1.77156E7 6 0 65 95644 0 0 271 0 0 0 0 0 0 0 98 1 0 0 8000 2000 9 999999999 9 0 0 88 0.2 0 0 +1.77192E7 4.7 0.4 74 95689 0 0 266 0 0 0 0 0 0 0 91 0.5 0 0 8000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.77228E7 3 0 81 95584 0 0 259 0 0 0 0 0 0 0 280 0.5 0 0 8000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.77264E7 3 -1 74 95584 0 0 259 0 0 0 0 0 0 0 96 1 0 0 8000 2000 9 999999999 9 0 0 88 0.2 0 0 +1.773E7 1.9 -1.5 77 95651 0 0 254 0 0 0 0 0 0 0 360 1 0 0 8000 2000 9 999999999 8 0 0 88 0.2 0 0 +1.77336E7 2 -1 80 95564 0 0 255 0 0 0 0 0 0 0 184 1 0 0 8000 2000 9 999999999 9 0 0 88 0.2 0 0 +1.77372E7 1 -2 79 95544 0 0 250 0 0 0 0 0 0 0 255 1 0 0 7000 2000 9 999999999 8 0 0 88 0.2 0 0 +1.77408E7 -0.3 -2.8 81 95805 0 0 245 0 0 0 0 0 0 0 215 0.5 0 0 6000 2000 9 999999999 7 0 0 88 0.22 0 0 +1.77444E7 2 -1 80 95564 194 995 255 74 146 53 8215 1891 5859 1735 360 1.5 0 0 5000 2000 9 999999999 9 0 0 88 0.2 0 0 +1.7748E7 7 0 61 95663 423 1324 275 242 404 113 27186 23329 12724 4174 157 0 0 0 8000 2000 9 999999999 9 0 0 88 0.2 0 0 +1.77516E7 12 0.1 44 95821 606 1324 295 400 676 90 47647 39928 10758 4088 360 1 0 0 8000 2000 9 999999999 9 0 0 88 0.2 0 0 +1.77552E7 14 1 41 95797 731 1324 310 511 770 86 62593 46440 10578 4213 200 1.5 1 1 8000 2000 9 999999999 10 0 0 88 0.2 0 0 +1.77588E7 17 2 36 95852 790 1324 318 564 760 111 68376 48674 13499 5413 200 3.1 0 0 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.77624E7 17.6 4 40 95660 777 1324 343 513 572 177 59793 41699 20761 7926 180 4.1 5 5 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.7766E7 16 5 48 95834 695 1324 328 474 714 99 56962 43194 11942 4675 160 6.2 2 2 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.77696E7 14 5 55 95797 549 1324 309 346 586 103 40261 34194 12051 4405 160 6.2 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.77732E7 13.2 5.2 58 95720 348 1324 305 180 395 77 20427 15909 8699 2884 160 5.7 0 0 8000 7500 9 999999999 16 0 0 88 0.2 0 0 +1.77768E7 11 6 71 95740 107 1324 297 29 34 26 3208 0 2913 864 150 5.1 0 0 7000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.77804E7 10 6 76 95721 0 533 293 0 0 0 0 0 0 0 160 4.1 0 0 6000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.7784E7 8.4 5.2 80 95827 0 0 286 0 0 0 0 0 0 0 160 4.1 0 0 6000 7500 9 999999999 16 0 0 88 0.2 0 0 +1.77876E7 8 5 81 95683 0 0 284 0 0 0 0 0 0 0 160 3.1 0 0 5000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.77912E7 7 5 87 95663 0 0 280 0 0 0 0 0 0 0 150 3.1 0 0 4000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.77948E7 7 5.3 89 95961 0 0 280 0 0 0 0 0 0 0 150 3.6 0 0 3000 6000 9 999999999 16 0 0 88 0.2 0 0 +1.77984E7 7 5 87 95663 0 0 314 0 0 0 0 0 0 0 160 2.1 9 9 3000 305 9 999999999 16 0 0 88 0.2 0 0 +1.7802E7 7 5 87 95663 0 0 314 0 0 0 0 0 0 0 250 1.5 9 9 3000 183 9 999999999 16 0 0 88 0.2 0 0 +1.78056E7 6.6 4.9 89 96057 0 0 312 0 0 0 0 0 0 0 266 1 9 9 3000 180 9 999999999 15 0 0 88 0.2 0 0 +1.78092E7 7 5 87 95663 0 0 323 0 0 0 0 0 0 0 20 3.6 10 10 3000 183 9 999999999 16 0 0 88 0.2 0 0 +1.78128E7 7 5 87 95663 0 0 323 0 0 0 0 0 0 0 290 2.6 10 10 2000 213 9 999999999 16 0 0 88 0.2 0 0 +1.78164E7 7.2 5.3 88 96144 0 0 324 0 0 0 0 0 0 0 360 1 10 10 2000 240 9 999999999 16 0 0 88 0.2 0 0 +1.782E7 7 5 87 95663 0 0 314 0 0 0 0 0 0 0 167 1 9 9 2000 152 9 999999999 16 0 0 88 0.2 0 0 +1.78236E7 8 6 87 95683 0 0 329 0 0 0 0 0 0 0 142 1 10 10 3000 2438 0 919999999 17 0 0 88 0.2 0 0 +1.78272E7 8.1 5.8 85 96322 0 0 320 0 0 0 0 0 0 0 280 3.1 9 9 3000 2400 0 919999999 17 0 0 88 0.2 0 0 +1.78308E7 8 6 87 95683 198 1009 297 75 121 57 8182 1564 6229 1824 210 2.1 3 3 2000 2400 0 919999999 17 0 0 88 0.2 0 0 +1.78344E7 10 7 82 95721 427 1324 307 239 451 94 27214 22626 10703 3665 130 2.6 3 3 4000 2400 0 919999999 19 0 0 88 0.2 0 0 +1.7838E7 11.7 6.9 72 96297 610 1324 322 348 392 168 39453 27783 19082 6692 130 3.6 6 6 8000 6000 0 919999999 19 0 0 88 0.2 0 0 +1.78416E7 12 7 71 95759 735 1324 339 263 91 213 30009 7027 24399 8809 190 3.1 9 9 7000 914 0 919999999 19 0 0 88 0.2 0 0 +1.78452E7 12 7 71 95759 794 1324 349 177 3 176 20725 204 20619 7949 140 3.1 10 10 8000 1219 0 919999999 19 0 0 88 0.2 0 0 +1.78488E7 11 6.5 74 96577 781 1324 343 174 2 172 20315 176 20237 7778 140 3.1 10 10 8000 1200 0 919999999 18 0 0 88 0.2 0 0 +1.78524E7 11 7 76 95740 699 1324 334 246 42 224 27774 3330 25430 8839 180 2.6 9 9 8000 1219 0 919999999 19 0 0 88 0.2 0 0 +1.7856E7 12 7 71 95759 552 1324 339 180 9 176 20033 657 19706 6509 150 3.1 9 9 8000 1829 0 919999999 19 0 0 88 0.2 0 0 +1.78596E7 11.4 6.8 73 96613 351 1324 329 123 56 108 13519 2807 11920 3658 170 3.1 8 8 8000 5400 0 919999999 19 0 0 88 0.2 0 0 +1.78632E7 10 6 76 95721 110 1324 306 29 12 28 3245 0 3140 921 170 2.6 3 3 8000 5400 0 919999999 17 0 0 88 0.2 0 0 +1.78668E7 10 6 76 95721 0 548 306 0 0 0 0 0 0 0 240 3.1 3 3 8000 5400 0 919999999 17 0 0 88 0.2 0 0 +1.78704E7 8.2 5.3 82 96683 0 0 290 0 0 0 0 0 0 0 267 1 1 1 8000 5400 9 999999999 16 0 0 88 0.2 0 0 +1.7874E7 6 4 87 95644 0 0 275 0 0 0 0 0 0 0 30 2.6 0 0 5000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.78776E7 8 5 81 95683 0 0 284 0 0 0 0 0 0 0 30 2.1 0 0 5000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.78812E7 5.2 3.7 90 96576 0 0 271 0 0 0 0 0 0 0 350 2.6 0 0 500 2000 9 999999999 14 0 0 88 0.2 0 0 +1.78848E7 5 4 93 95624 0 0 271 0 0 0 0 0 0 0 217 0.5 0 0 2000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.78884E7 3 2 93 95584 0 0 261 0 0 0 0 0 0 0 213 0 0 0 500 2000 0 999999999 12 0 0 88 0.2 0 0 +1.7892E7 3.6 2.2 91 96591 0 0 264 0 0 0 0 0 0 0 10 2.1 0 0 300 2000 0 999999999 12 0 0 88 0.2 0 0 +1.78956E7 3 2 93 95584 0 0 261 0 0 0 0 0 0 0 50 2.1 0 0 300 2000 0 999999999 12 0 0 88 0.2 0 0 +1.78992E7 4 3 93 95604 0 0 307 0 0 0 0 0 0 0 60 1.5 10 10 500 61 0 999999999 13 0 0 88 0.2 0 0 +1.79028E7 2.4 1.6 94 96407 0 0 274 0 0 0 0 0 0 0 240 1.5 5 5 300 61 0 999999999 11 0 0 88 0.2 0 0 +1.79064E7 3 2 93 95584 0 0 277 0 0 0 0 0 0 0 52 0.5 5 5 1500 61 0 999999999 12 0 0 88 0.2 0 0 +1.791E7 2 2 100 95564 0 0 273 0 0 0 0 0 0 0 27 1 5 5 700 61 0 999999999 12 0 0 88 0.2 0 0 +1.79136E7 2.1 1.4 95 96363 0 0 283 0 0 0 0 0 0 0 40 2.6 8 8 800 7500 0 999999999 11 0 0 88 0.2 0 0 +1.79172E7 4 3 93 95604 201 1025 266 78 175 51 8613 2049 5681 1718 226 0.5 0 0 2000 2000 0 999999999 13 0 0 88 0.2 0 0 +1.79208E7 6 4 87 95644 430 1325 275 246 478 91 28127 24306 10417 3591 310 1.5 0 0 3000 2000 0 999999999 14 0 0 88 0.2 0 0 +1.79244E7 10.2 6.5 78 96316 614 1325 294 402 529 157 45847 36554 17953 6402 360 2.1 0 0 5000 7500 0 999999999 18 0 0 88 0.2 0 0 +1.7928E7 14 6 59 95797 739 1325 348 266 112 203 30411 8538 23387 8549 235 1.5 9 9 8000 7620 0 999999999 17 0 0 88 0.2 0 0 +1.79316E7 16 6 51 95834 798 1325 337 528 516 217 60793 40066 25137 9360 330 2.1 5 5 8000 7620 0 999999999 17 0 0 88 0.2 0 0 +1.79352E7 18.3 5.8 44 96041 786 1325 361 374 211 249 42500 17409 28437 10186 340 1.5 8 8 8000 7500 0 999999999 17 0 0 88 0.2 0 0 +1.79388E7 19 6 43 95888 703 1325 372 249 88 202 28301 6773 23081 8263 291 1 9 9 8000 7620 0 999999999 17 0 0 88 0.2 0 0 +1.79424E7 18.5 7 47 95947 556 1325 342 350 395 184 38934 29294 20591 6727 83 2.5 2 2 8000 7620 9 999999999 19 0 0 88 0.2 0 0 +1.7946E7 17.9 8 52 96006 355 1325 362 124 84 102 13746 3974 11307 3548 180 4.1 8 8 8000 7500 0 999999999 21 0 0 88 0.2 0 0 +1.79496E7 17 7 52 95852 113 1325 364 16 0 16 1521 0 1532 585 150 4.1 9 9 8000 7620 0 999999999 19 0 0 88 0.2 0 0 +1.79532E7 14 8 67 95797 0 563 350 0 0 0 0 0 0 0 170 3.6 9 9 8000 7620 0 999999999 21 0 0 88 0.2 0 0 +1.79568E7 13.5 7.7 68 96076 0 0 340 0 0 0 0 0 0 0 160 3.1 8 8 8000 7500 9 999999999 20 0 0 88 0.2 0 0 +1.79604E7 12 8 76 95759 0 0 303 0 0 0 0 0 0 0 160 3.1 0 0 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +1.7964E7 12 7 71 95759 0 0 302 0 0 0 0 0 0 0 82 1 0 0 7000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.79676E7 10.4 7.1 80 96112 0 0 296 0 0 0 0 0 0 0 360 1 0 0 6000 6000 9 999999999 19 0 0 88 0.2 0 0 +1.79712E7 10 6 76 95721 0 0 293 0 0 0 0 0 0 0 160 1.5 0 0 7000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.79748E7 10 7 82 95721 0 0 294 0 0 0 0 0 0 0 231 1 0 0 5000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.79784E7 8.4 6.1 85 96073 0 0 306 0 0 0 0 0 0 0 53 0.5 6 6 5000 6000 9 999999999 17 0 0 88 0.2 0 0 +1.7982E7 8 6 87 95683 0 0 285 0 0 0 0 0 0 0 10 0 0 0 5000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.79856E7 9 6 81 95702 0 0 306 0 0 0 0 0 0 0 23 0.5 5 5 5000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.79892E7 8.2 5.7 84 96012 0 0 305 0 0 0 0 0 0 0 360 1 6 6 5000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.79928E7 8 6 87 95683 0 0 302 0 0 0 0 0 0 0 53 1 5 5 4000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.79964E7 8 6 87 95683 0 0 302 0 0 0 0 0 0 0 10 2.1 5 5 4000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.8E7 4.6 4.6 100 96055 0 0 296 0 0 0 0 0 0 0 75 1 8 8 3000 5100 9 999999999 15 0 0 88 0.2 0 0 +1.80036E7 9 7 87 95702 204 1040 334 25 0 25 2435 0 2453 981 70 3.1 10 10 3000 5486 9 999999999 19 0 0 88 0.2 0 0 +1.80072E7 10 7 82 95721 434 1325 339 78 0 78 7774 0 7835 3198 280 2.1 10 10 3000 5486 9 999999999 19 0 0 88 0.2 0 0 +1.80108E7 11.7 7.9 77 96193 618 1325 348 127 0 127 12889 0 12999 5488 360 1 10 10 4000 5400 9 999999999 21 0 0 88 0.2 0 0 +1.80144E7 14 8 67 95797 744 1325 330 481 486 208 54933 36992 23891 8718 60 1 5 5 5000 6096 9 999999999 21 0 0 88 0.2 0 0 +1.8018E7 17 8 55 95852 802 1325 344 530 514 219 60975 39496 25286 9431 200 1.5 5 5 8000 6096 9 999999999 21 0 0 88 0.2 0 0 +1.80216E7 18.4 8.1 51 95996 790 1325 383 176 0 176 20527 29 20593 7928 180 4.1 10 10 8000 6000 9 999999999 21 0 0 88 0.2 0 0 +1.80252E7 19 8 49 95888 707 1325 375 250 42 228 28148 3326 25777 8982 170 5.7 9 9 8000 6096 9 999999999 21 0 0 88 0.2 0 0 +1.80288E7 20 8 46 95906 560 1325 380 183 9 179 20370 663 20036 6634 180 5.1 9 9 8000 6096 9 999999999 21 0 0 88 0.2 0 0 +1.80324E7 18.9 7.6 48 95957 359 1325 366 126 58 110 13882 2917 12217 3756 160 4.1 8 8 8000 7500 9 999999999 20 0 0 88 0.2 0 0 +1.8036E7 18 9 56 95870 116 1325 345 31 12 30 3402 0 3296 971 150 3.6 3 3 8000 7500 9 999999999 23 0 0 88 0.2 0 0 +1.80396E7 16 9 63 95834 0 578 341 0 0 0 0 0 0 0 140 2.1 5 5 8000 7500 9 999999999 23 0 0 88 0.2 0 0 +1.80432E7 14.1 8.7 70 96040 0 0 327 0 0 0 0 0 0 0 110 1 3 3 8000 7500 9 999999999 22 0 0 88 0.2 0 0 +1.80468E7 13 8 72 95778 0 0 345 0 0 0 0 0 0 0 260 1.5 9 9 8000 5486 9 999999999 21 0 0 88 0.2 0 0 +1.80504E7 12 8 76 95759 0 0 340 0 0 0 0 0 0 0 50 1.5 9 9 8000 5486 9 999999999 21 0 0 88 0.2 0 0 +1.8054E7 9.9 6.6 80 96092 0 0 322 0 0 0 0 0 0 0 360 1 8 8 6000 5400 9 999999999 18 0 0 88 0.2 0 0 +1.80576E7 10 7 82 95721 0 0 330 0 0 0 0 0 0 0 33 0.5 9 9 6000 5486 9 999999999 19 0 0 88 0.2 0 0 +1.80612E7 10 7 82 95721 0 0 330 0 0 0 0 0 0 0 198 0 9 9 6000 5486 9 999999999 19 0 0 88 0.2 0 0 +1.80648E7 8.5 6 84 96056 0 0 306 0 0 0 0 0 0 0 8 0 6 6 5000 5400 9 999999999 17 0 0 88 0.2 0 0 +1.80684E7 7 5 87 95663 0 0 296 0 0 0 0 0 0 0 324 0 5 5 5000 5400 9 999999999 16 0 0 88 0.2 0 0 +1.8072E7 7 5 87 95663 0 0 280 0 0 0 0 0 0 0 12 1 0 0 3000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.80756E7 5.9 4.6 91 95986 0 0 291 0 0 0 0 0 0 0 170 2.1 5 5 300 2000 0 999999999 15 0 0 88 0.2 0 0 +1.80792E7 5 4 93 95624 0 0 304 0 0 0 0 0 0 0 180 3.1 9 9 1300 61 0 999999999 14 0 0 88 0.2 0 0 +1.80828E7 6 5 93 95644 0 0 318 0 0 0 0 0 0 0 170 2.6 10 10 400 30 0 999999999 16 0 0 88 0.2 0 0 +1.80864E7 6.2 5.6 96 96087 0 0 320 0 0 0 0 0 0 0 140 2.1 10 10 300 30 0 999999999 17 0 0 88 0.2 0 0 +1.809E7 7 6 93 95663 208 1057 324 34 0 34 3357 0 3381 1290 160 3.6 10 10 300 61 0 999999999 17 0 0 88 0.2 0 0 +1.80936E7 8 7 93 95683 438 1325 330 106 0 106 10545 0 10629 4056 160 3.6 10 10 400 61 0 999999999 19 0 0 88 0.2 0 0 +1.80972E7 8 7.3 95 96235 622 1325 330 129 0 129 13024 0 13134 5547 160 5.1 10 10 2000 120 0 999999999 20 0 0 88 0.2 0 0 +1.81008E7 8 7 93 95683 748 1325 321 269 44 244 30384 3577 27758 9751 150 4.1 9 9 3000 152 0 999999999 19 0 0 88 0.2 0 0 +1.81044E7 8 7 93 95683 807 1325 321 296 24 282 33452 2046 32006 11217 150 3.6 9 9 4000 91 0 999999999 19 0 0 88 0.2 0 0 +1.8108E7 8.6 6.6 87 96190 794 1325 332 177 3 176 20740 205 20634 7952 140 3.6 10 10 4000 150 0 999999999 18 0 0 88 0.2 0 0 +1.81116E7 9 7 87 95702 712 1325 325 252 88 205 28679 6757 23405 8399 150 3.1 9 9 5000 213 0 999999999 19 0 0 88 0.2 0 0 +1.81152E7 10 7 82 95721 564 1325 339 113 0 113 11352 0 11446 4780 160 4.1 10 10 6000 213 0 999999999 19 0 0 88 0.2 0 0 +1.81188E7 8.9 6.4 84 96243 362 1325 333 60 0 60 5943 0 5989 2418 160 3.6 10 10 5000 240 0 999999999 18 0 0 88 0.2 0 0 +1.81224E7 9 6 81 95702 120 1325 333 10 0 10 1006 0 1013 409 150 3.1 10 10 5000 305 0 999999999 17 0 0 88 0.2 0 0 +1.8126E7 9 6 81 95702 0 593 306 0 0 0 0 0 0 0 150 2.6 5 5 5000 305 0 999999999 17 0 0 88 0.2 0 0 +1.81296E7 8.4 6.7 89 96252 0 0 331 0 0 0 0 0 0 0 100 1.5 10 10 4000 300 9 999999999 19 0 0 88 0.2 0 0 +1.81332E7 9 7 87 95702 0 0 334 0 0 0 0 0 0 0 213 1 10 10 4000 366 9 999999999 19 0 0 88 0.2 0 0 +1.81368E7 9 7 87 95702 0 0 334 0 0 0 0 0 0 0 180 1.5 10 10 4000 366 9 999999999 19 0 0 88 0.2 0 0 +1.81404E7 8.7 6.8 88 96230 0 0 333 0 0 0 0 0 0 0 200 2.1 10 10 4000 180 9 999999999 19 0 0 88 0.2 0 0 +1.8144E7 8 7 93 95683 0 0 330 0 0 0 0 0 0 0 180 4.1 10 10 3000 152 9 999999999 19 0 0 88 0.2 0 0 +1.81476E7 8 7 93 95683 0 0 330 0 0 0 0 0 0 0 170 3.6 10 10 5000 152 9 999999999 19 0 0 88 0.2 0 0 +1.81512E7 8 6.2 88 96226 0 0 329 0 0 0 0 0 0 0 170 3.1 10 10 5000 360 9 999999999 18 0 0 88 0.2 0 0 +1.81548E7 8 6 87 95683 0 0 329 0 0 0 0 0 0 0 150 2.6 10 10 5000 366 9 999999999 17 0 0 88 0.2 0 0 +1.81584E7 8 6 87 95683 0 0 329 0 0 0 0 0 0 0 150 2.1 10 10 8000 366 9 999999999 17 0 0 88 0.2 0 0 +1.8162E7 7 5.7 91 96348 0 0 324 0 0 0 0 0 0 0 160 2.6 10 10 5000 390 0 919999999 17 0 0 88 0.2 0 0 +1.81656E7 7 6 93 95663 0 0 324 0 0 0 0 0 0 0 140 2.6 10 10 7000 457 0 919999999 17 0 0 88 0.2 0 0 +1.81692E7 7 5 87 95663 0 0 323 0 0 0 0 0 0 0 160 3.1 10 10 7000 457 0 919999999 16 0 0 88 0.2 0 0 +1.81728E7 7.2 4.8 85 96607 0 0 323 0 0 0 0 0 0 0 150 4.1 10 10 8000 450 0 919999999 15 0 0 88 0.2 0 0 +1.81764E7 7 5 87 95663 211 1074 323 26 0 26 2574 0 2593 1036 150 3.1 10 10 8000 610 0 919999999 16 0 0 88 0.2 0 0 +1.818E7 8 4 76 95683 442 1326 317 132 17 126 14709 1024 14138 4599 130 2.6 9 9 8000 914 0 919999999 14 0 0 88 0.2 0 0 +1.81836E7 8.7 3.9 72 96664 627 1326 320 214 20 204 23957 1574 23017 7750 170 1.5 9 9 8000 900 0 919999999 14 0 0 88 0.2 0 0 +1.81872E7 10 5 71 95721 753 1326 328 272 45 246 30734 3766 27980 9831 147 1 9 9 8000 914 0 919999999 16 0 0 88 0.2 0 0 +1.81908E7 11 5 66 95740 811 1326 332 299 64 260 34063 5397 29748 10693 87 1 9 9 8000 914 0 919999999 15 0 0 88 0.2 0 0 +1.81944E7 11.2 3.9 61 96524 799 1326 332 294 64 255 33440 5400 29191 10461 276 1 9 9 8000 900 0 919999999 14 0 0 88 0.2 0 0 +1.8198E7 12 4 58 95759 716 1326 336 255 43 232 28798 3543 26308 9158 146 1 9 9 8000 914 0 919999999 14 0 0 88 0.2 0 0 +1.82016E7 12 4 58 95759 568 1326 317 337 463 139 38532 30743 15973 5642 280 1.5 5 5 8000 914 0 919999999 14 0 0 88 0.2 0 0 +1.82052E7 12.4 3.8 56 96509 366 1326 306 194 402 83 21949 17829 9407 3123 360 1 1 1 8000 914 0 919999999 14 0 0 88 0.2 0 0 +1.82088E7 12 4 58 95759 123 1326 315 34 41 30 3734 0 3322 989 270 1 4 4 8000 914 0 919999999 14 0 0 88 0.2 0 0 +1.82124E7 10 3 62 95721 0 609 305 0 0 0 0 0 0 0 240 1.5 4 4 8000 914 0 919999999 13 0 0 88 0.2 0 0 +1.8216E7 7.8 3.7 75 96628 0 0 282 0 0 0 0 0 0 0 51 0 0 0 8000 914 9 999999999 14 0 0 88 0.2 0 0 +1.82196E7 7 3 76 95663 0 0 300 0 0 0 0 0 0 0 42 1 7 7 8000 914 9 999999999 13 0 0 88 0.2 0 0 +1.82232E7 5 2 81 95624 0 0 295 0 0 0 0 0 0 0 340 1.5 8 8 8000 914 9 999999999 12 0 0 88 0.2 0 0 +1.82268E7 3.9 1.6 85 96522 0 0 264 0 0 0 0 0 0 0 50 1.5 0 0 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.82304E7 4 2 87 95604 0 0 265 0 0 0 0 0 0 0 133 1 0 0 8000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.8234E7 3 1 87 95584 0 0 260 0 0 0 0 0 0 0 340 1 0 0 7000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.82376E7 2.6 1.3 91 96486 0 0 259 0 0 0 0 0 0 0 44 0.5 0 0 3000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.82412E7 2 1 93 95564 0 0 257 0 0 0 0 0 0 0 220 0.5 0 0 5000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.82448E7 0 -1 92 95523 0 0 258 0 0 0 0 0 0 0 93 1 3 3 1200 2000 9 999999999 9 0 0 88 0.2 0 0 +1.82484E7 -1 -2.1 91 96450 0 0 273 0 0 0 0 0 0 0 360 0.5 9 9 300 2000 0 999999999 8 0 0 88 0.267 0 0 +1.8252E7 0 -1 92 95523 0 0 258 0 0 0 0 0 0 0 20 1.5 3 3 2000 2000 0 999999999 9 0 0 88 0.2 0 0 +1.82556E7 0 -1 92 95523 0 0 258 0 0 0 0 0 0 0 133 0 3 3 600 2000 0 999999999 9 0 0 88 0.2 0 0 +1.82592E7 -0.5 -1.1 95 96526 0 0 246 0 0 0 0 0 0 0 349 0 0 0 300 2000 0 999999999 9 0 0 88 0.233 0 0 +1.82628E7 0 -1 92 95523 215 1091 248 87 172 59 9580 3315 6516 1942 189 1 0 0 2000 2000 0 999999999 9 0 0 88 0.2 0 0 +1.82664E7 3 3 100 95584 446 1326 262 259 494 93 29678 25982 10651 3700 286 0 0 0 3000 2000 0 999999999 13 0 0 88 0.2 0 0 +1.827E7 7.9 4.1 77 96592 631 1326 282 418 682 94 49846 40125 11200 4291 360 1 0 0 5000 2000 0 999999999 14 0 0 88 0.2 0 0 +1.82736E7 10 5 71 95721 757 1326 292 531 769 92 64844 46087 11232 4502 105 0.5 0 0 8000 2000 0 999999999 16 0 0 88 0.2 0 0 +1.82772E7 12 5 62 95759 816 1326 300 584 798 94 71971 48315 11581 4713 50 1 0 0 8000 2000 0 999999999 15 0 0 88 0.2 0 0 +1.82808E7 14.1 4.3 52 96380 803 1326 308 573 795 92 70599 48156 11388 4621 210 2.1 0 0 8000 2000 0 999999999 14 0 0 88 0.2 0 0 +1.82844E7 15 4 48 95815 720 1326 322 496 725 103 59790 44751 12406 4886 170 3.6 2 2 8000 2000 0 999999999 14 0 0 88 0.2 0 0 +1.8288E7 16 4 45 95834 572 1326 327 366 596 109 42628 36033 12722 4677 180 3.1 2 2 8000 2000 0 999999999 14 0 0 88 0.2 0 0 +1.82916E7 15.4 4 46 96234 370 1326 314 197 407 83 22290 18185 9469 3150 180 4.1 0 0 8000 2000 0 999999999 14 0 0 88 0.2 0 0 +1.82952E7 13 5 58 95778 126 1326 320 35 47 31 3898 0 3406 1015 180 3.6 4 4 8000 2000 0 999999999 15 0 0 88 0.2 0 0 +1.82988E7 10.1 4 66 95860 0 624 315 0 0 0 0 0 0 0 211 2 4 4 8000 2000 0 999999999 14 0 0 88 0.2 0 0 +1.83024E7 9.2 4.1 70 95997 0 0 292 0 0 0 0 0 0 0 193 1.5 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.8306E7 7.9 3.6 74 95833 0 0 308 0 0 0 0 0 0 0 233 1.7 5 5 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.83096E7 7.7 4.3 79 95829 0 0 283 0 0 0 0 0 0 0 226 1.5 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.83132E7 7.8 5 82 96062 0 0 286 0 0 0 0 0 0 0 207 1.8 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.83168E7 7.7 5.7 87 95906 0 0 269 0 0 0 0 0 0 0 182 2.2 0 0 6000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.83204E7 8.4 6.7 89 95921 0 0 325 0 0 0 0 0 0 0 115 2.4 9 9 6000 1500 9 999999999 19 0 0 88 0.2 0 0 +1.8324E7 8.1 6.5 89 96125 0 0 323 0 0 0 0 0 0 0 87 2.4 9 9 6000 1500 9 999999999 18 0 0 88 0.2 0 0 +1.83276E7 8.2 6.3 88 95897 0 0 321 0 0 0 0 0 0 0 27 2.4 9 9 6000 1800 9 999999999 19 0 0 88 0.2 0 0 +1.83312E7 8 6.1 88 95892 0 0 319 0 0 0 0 0 0 0 82 2.2 9 9 6000 3000 9 999999999 17 0 0 88 0.2 0 0 +1.83348E7 7.4 5.9 90 96104 0 0 320 0 0 0 0 0 0 0 147 1.5 9 9 6000 3000 9 999999999 18 0 0 88 0.2 0 0 +1.83384E7 7.2 5.8 91 95890 0 0 324 0 0 0 0 0 0 0 230 1.5 9 9 6000 3000 9 999999999 17 0 0 88 0.2 0 0 +1.8342E7 7 6 93 95663 0 0 315 0 0 0 0 0 0 0 250 2.1 9 9 5000 3000 9 999999999 17 0 0 88 0.2 0 0 +1.83456E7 5.8 5.2 96 96532 0 0 291 0 0 0 0 0 0 0 280 0.5 5 5 5000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.83492E7 7 6 93 95663 215 1091 297 80 181 51 8916 2275 5659 1753 350 1.5 5 5 5000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.83528E7 10 7 82 95721 446 1326 330 133 17 127 14817 997 14249 4649 83 1 9 9 5000 7500 9 999999999 19 0 0 88 0.2 0 0 +1.83564E7 12 7.6 74 96444 631 1326 340 214 20 205 24014 1510 23092 7805 10 1 9 9 5000 7500 9 999999999 20 0 0 88 0.2 0 0 +1.836E7 13 7 67 95778 757 1326 344 273 45 247 30862 3693 28124 9903 61 1 9 9 5000 7500 9 999999999 19 0 0 88 0.2 0 0 +1.83636E7 15 6 55 95815 816 1326 352 301 64 262 34256 5359 29933 10775 132 0.5 9 9 6000 7500 9 999999999 17 0 0 88 0.2 0 0 +1.83672E7 16.3 5.5 49 96232 803 1326 358 295 64 257 33595 5328 29356 10537 190 2.6 9 9 7000 6000 9 999999999 16 0 0 88 0.2 0 0 +1.83708E7 17 7 52 95852 720 1326 364 256 43 232 28875 3507 26357 9207 160 4.1 9 9 8000 6000 9 999999999 19 0 0 88 0.2 0 0 +1.83744E7 17 8 55 95852 572 1326 365 188 70 158 21217 4774 17894 6185 170 4.6 9 9 8000 6000 9 999999999 21 0 0 88 0.2 0 0 +1.8378E7 16.5 7.5 55 96217 370 1326 322 196 321 106 21696 16069 11824 3727 200 4.1 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +1.83816E7 15 7 59 95815 126 1326 331 35 45 31 3870 0 3404 1016 210 3.6 4 4 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +1.83852E7 13 7 67 95778 0 624 325 0 0 0 0 0 0 0 2 1 5 5 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +1.83888E7 12.4 7.1 70 96244 0 0 325 0 0 0 0 0 0 0 90 1 6 6 9900 7500 9 999999999 19 0 0 88 0.2 0 0 +1.83924E7 11 7 76 95740 0 0 322 0 0 0 0 0 0 0 220 2.1 7 7 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +1.8396E7 11 8 82 95740 0 0 336 0 0 0 0 0 0 0 140 1.5 9 9 8000 7500 9 999999999 21 0 0 88 0.2 3 0 +1.83996E7 9.7 7.5 86 96363 0 0 338 0 0 0 0 0 0 0 44 1 10 10 7000 4800 9 999999999 20 0 0 88 0.2 0.3 0 +1.84032E7 10 8 87 95721 0 0 340 0 0 0 0 0 0 0 348 1 10 10 6000 3900 9 999999999 21 0 0 88 0.2 0 0 +1.84068E7 10 8 87 95721 0 0 340 0 0 0 0 0 0 0 210 1.5 10 10 8000 3300 9 999999999 21 0 0 88 0.2 0 0 +1.84104E7 10.7 8.3 85 96372 0 0 344 0 0 0 0 0 0 0 31 1 10 10 8000 3000 9 999999999 22 0 0 88 0.2 0 0 +1.8414E7 11 10 94 95740 0 0 347 0 0 0 0 0 0 0 150 3.1 10 10 4000 390 0 919999999 26 0 0 88 0.2 0 0 +1.84176E7 10 9 93 95721 0 0 341 0 0 0 0 0 0 0 20 2.6 10 10 3000 1200 0 919999999 23 0 0 88 0.2 0 0 +1.84212E7 10.3 9.2 93 96289 0 0 343 0 0 0 0 0 0 0 227 1.5 10 10 3500 600 0 919999999 24 0 0 88 0.2 0 0 +1.84248E7 10 9 93 95721 0 0 341 0 0 0 0 0 0 0 20 4.1 10 10 3000 1500 0 919999999 23 0 0 88 0.2 0 0 +1.84284E7 10 9 93 95721 0 0 341 0 0 0 0 0 0 0 150 1.5 10 10 3500 1500 0 919999999 23 0 0 88 0.2 0 0 +1.8432E7 10.9 8.4 85 96414 0 0 345 0 0 0 0 0 0 0 150 2.1 10 10 3500 1500 0 919999999 22 0 0 88 0.2 0 0 +1.84356E7 11 10 94 95740 219 1109 347 28 0 28 2695 0 2715 1088 107 1 10 10 5000 1500 0 919999999 26 0 0 88 0.2 0 0 +1.84392E7 11 10 94 95740 450 1326 338 134 17 128 14923 965 14359 4700 176 0.5 9 9 5000 1500 0 919999999 26 0 0 88 0.2 0 0 +1.84428E7 11.2 10 92 96590 635 1326 348 132 0 132 13316 0 13430 5699 160 6.2 10 10 7000 1500 0 919999999 26 0 0 88 0.2 0 0 +1.84464E7 12 11 94 95759 762 1326 353 167 1 166 19427 53 19463 7465 140 2.6 10 10 7000 1500 0 919999999 28 0 0 88 0.2 0 0 +1.845E7 12 11 94 95759 821 1326 353 183 2 182 21440 128 21408 8314 180 2.1 10 10 8000 1500 0 919999999 28 0 0 88 0.2 0 0 +1.84536E7 12.2 10.4 89 96609 808 1326 354 180 1 180 21025 37 21085 8160 180 2.1 10 10 9000 1320 0 919999999 27 0 0 88 0.2 0 0 +1.84572E7 12 11 94 95759 725 1326 353 156 0 156 18173 0 18253 6941 150 2.1 10 10 6000 1050 0 919999999 28 0 0 88 0.2 0 0 +1.84608E7 13 11 88 95778 576 1326 358 115 0 115 11585 0 11683 4907 170 2.1 10 10 5000 990 0 919999999 28 0 0 88 0.2 0 0 +1.84644E7 12.2 11.1 93 96543 373 1326 355 62 0 62 6144 0 6192 2514 190 2.1 10 10 5000 450 0 919999999 29 0 0 88 0.2 0 0 +1.8468E7 12 11 94 95759 129 1326 353 12 0 12 1136 0 1144 463 180 3.1 10 10 4000 1350 0 919999999 28 0 0 88 0.2 0 0 +1.84716E7 12 11 94 95759 0 640 353 0 0 0 0 0 0 0 120 1.5 10 10 5000 1350 0 919999999 28 0 0 88 0.2 0 0 +1.84752E7 11.2 10.7 97 96637 0 0 349 0 0 0 0 0 0 0 170 2.6 10 10 5000 1350 9 999999999 28 0 0 88 0.2 5 0 +1.84788E7 11 10 94 95740 0 0 338 0 0 0 0 0 0 0 210 1.5 9 9 5000 3300 9 999999999 26 0 0 88 0.2 5 0 +1.84824E7 11 10 94 95740 0 0 338 0 0 0 0 0 0 0 160 1.5 9 9 5000 3000 9 999999999 26 0 0 88 0.2 5 0 +1.8486E7 10.7 10.2 97 96552 0 0 337 0 0 0 0 0 0 0 250 1.5 9 9 5000 1800 9 999999999 26 0 0 88 0.2 5 0 +1.84896E7 11 10 94 95740 0 0 347 0 0 0 0 0 0 0 220 2.1 10 10 4000 1800 0 919999999 26 0 0 88 0.2 3.1 0 +1.84932E7 11 11 100 95740 0 0 349 0 0 0 0 0 0 0 130 3.6 10 10 4000 1500 0 919999999 28 0 0 88 0.2 0 0 +1.84968E7 11 11 100 96605 0 0 349 0 0 0 0 0 0 0 150 3.1 10 10 3000 900 0 919999999 28 0 0 88 0.2 0 0 +1.85004E7 11 11 100 95740 0 0 349 0 0 0 0 0 0 0 63 0.5 10 10 3000 1200 0 919999999 28 0 0 88 0.2 0 0 +1.8504E7 11 11 100 95740 0 0 349 0 0 0 0 0 0 0 200 1.5 10 10 5000 1200 0 919999999 28 0 0 88 0.2 0 0 +1.85076E7 10.7 10.2 97 96552 0 0 346 0 0 0 0 0 0 0 250 1.5 10 10 5000 510 0 919999999 26 0 0 88 0.2 0 0 +1.85112E7 10 9 93 95721 0 0 341 0 0 0 0 0 0 0 130 1.5 10 10 8000 600 0 919999999 23 0 0 88 0.2 0 0 +1.85148E7 10 10 100 95721 0 0 343 0 0 0 0 0 0 0 240 1.5 10 10 5000 900 0 919999999 26 0 0 88 0.2 0 0 +1.85184E7 9.6 9.5 99 96748 0 0 340 0 0 0 0 0 0 0 148 0.5 10 10 5000 1800 0 919999999 25 0 0 88 0.2 0 0 +1.8522E7 10 10 100 95721 223 1128 333 46 0 46 4534 0 4567 1670 320 2.1 9 9 5000 1500 0 919999999 26 0 0 88 0.2 0 0 +1.85256E7 12 11 94 95759 455 1327 344 135 14 130 15068 826 14592 4777 20 2.1 9 9 8000 1500 0 919999999 28 0 0 88 0.2 0 0 +1.85292E7 12.9 10.4 85 96802 640 1327 347 217 19 208 24322 1470 23402 7945 40 2.1 9 9 8000 1800 0 919999999 27 0 0 88 0.2 0 0 +1.85328E7 14 9 72 95797 766 1327 351 276 61 241 31321 4861 27505 9819 60 2.1 9 9 8000 1800 0 919999999 23 0 0 88 0.2 0 0 +1.85364E7 15 9 67 95815 825 1327 356 304 54 270 34492 4498 30842 11080 220 1.5 9 9 8000 1800 0 919999999 23 0 0 88 0.2 0 0 +1.854E7 15.4 10.3 72 96726 813 1327 340 536 548 200 62115 39897 23319 8891 210 3.6 5 5 8000 2000 0 919999999 26 0 0 88 0.2 0 0 +1.85436E7 16 11 72 95834 729 1327 338 494 708 105 59275 41459 12607 4989 170 4.6 3 3 8000 2000 0 919999999 28 0 0 88 0.2 0 0 +1.85472E7 16 11 72 95834 581 1327 338 364 580 111 42314 33314 12892 4766 180 4.1 3 3 8000 2000 0 919999999 28 0 0 88 0.2 0 0 +1.85508E7 15.9 11.6 76 96641 377 1327 338 197 366 93 22103 16193 10495 3450 180 4.1 3 3 8000 2000 0 919999999 30 0 0 88 0.2 0 0 +1.85544E7 14 11 82 95797 133 1327 329 38 46 34 4226 0 3724 1104 170 4.1 3 3 8000 2000 0 919999999 28 0 0 88 0.2 0 0 +1.8558E7 13 11 88 95778 0 655 349 0 0 0 0 0 0 0 180 3.1 9 9 9900 2000 0 919999999 28 0 0 88 0.2 0 0 +1.85616E7 11.7 10.2 91 96675 0 0 304 0 0 0 0 0 0 0 260 2.1 0 0 9900 2000 9 999999999 26 0 0 88 0.2 1 0 +1.85652E7 11 10 94 95740 0 0 347 0 0 0 0 0 0 0 110 1.5 10 10 9900 2000 9 999999999 26 0 0 88 0.2 0 0 +1.85688E7 11 9 87 95740 0 0 300 0 0 0 0 0 0 0 148 1 0 0 9000 2000 9 999999999 23 0 0 88 0.2 0 0 +1.85724E7 8.5 7.5 93 96670 0 0 288 0 0 0 0 0 0 0 42 1 0 0 5000 2000 9 999999999 20 0 0 88 0.2 0 0 +1.8576E7 10 9 93 95721 0 0 309 0 0 0 0 0 0 0 40 2.1 3 3 5000 2000 0 999999999 23 0 0 88 0.2 0 0 +1.85796E7 9 8 93 95702 0 0 303 0 0 0 0 0 0 0 350 1.5 3 3 1400 2000 0 999999999 21 0 0 88 0.2 0 0 +1.85832E7 5.7 5.3 97 96605 0 0 291 0 0 0 0 0 0 0 176 0.5 5 5 800 2000 0 999999999 16 0 0 88 0.2 0 0 +1.85868E7 7 7 100 95663 0 0 325 0 0 0 0 0 0 0 53 0.5 10 10 400 60 0 999999999 19 0 0 88 0.2 0 0 +1.85904E7 6 6 100 95644 0 0 319 0 0 0 0 0 0 0 275 0 10 10 300 30 0 999999999 17 0 0 88 0.2 0 0 +1.8594E7 5 5 100 95624 0 0 314 0 0 0 0 0 0 0 349 1 10 10 250 30 0 999999999 16 0 0 88 0.2 0 0 +1.85976E7 6 6 100 95644 0 0 319 0 0 0 0 0 0 0 51 0 10 10 200 30 0 999999999 17 0 0 88 0.2 0 0 +1.86012E7 6 6 100 95644 0 0 319 0 0 0 0 0 0 0 300 2.1 10 10 900 90 0 999999999 17 0 0 88 0.2 0 0 +1.86048E7 6.1 5.9 99 96528 0 0 320 0 0 0 0 0 0 0 350 2.1 10 10 800 150 0 999999999 17 0 0 88 0.2 0 0 +1.86084E7 7 6 93 95663 227 1147 324 29 0 29 2869 0 2890 1156 50 1.5 10 10 2000 90 0 999999999 17 0 0 88 0.2 0 0 +1.8612E7 8 8 100 95683 459 1327 331 84 0 84 8390 0 8458 3469 70 1.5 10 10 600 60 0 999999999 21 0 0 88 0.2 0 0 +1.86156E7 8.6 8.4 99 96455 645 1327 334 134 0 134 13623 0 13740 5832 260 1 10 10 1500 60 0 999999999 22 0 0 88 0.2 0 0 +1.86192E7 9 9 100 95702 771 1327 327 279 52 248 31522 4238 28243 10038 280 1.5 9 9 2000 90 0 999999999 23 0 0 88 0.2 0 0 +1.86228E7 11 9 87 95740 830 1327 318 552 518 228 63532 39906 26406 9902 40 1 5 5 5000 2000 0 999999999 23 0 0 88 0.2 0 0 +1.86264E7 15 10.5 74 96236 817 1327 319 580 771 105 70672 45791 12891 5238 200 1 0 0 6000 2000 0 999999999 27 0 0 88 0.2 0 0 +1.863E7 17 7 52 95852 734 1327 324 507 737 100 61296 44313 12162 4822 160 3.1 0 0 8000 2000 0 999999999 19 0 0 88 0.2 0 0 +1.86336E7 17 10 63 95852 585 1327 327 373 609 105 43598 34758 12319 4587 140 3.1 0 0 8000 2000 0 999999999 25 0 0 88 0.2 0 0 +1.86372E7 17.1 6.4 49 96067 381 1327 324 205 414 86 23167 18712 9746 3260 160 2.6 0 0 8000 2000 0 999999999 18 0 0 88 0.2 0 0 +1.86408E7 15 10 72 95815 136 1327 340 35 23 33 3919 0 3665 1098 170 4.1 6 6 9900 2000 0 999999999 25 0 0 88 0.2 0 0 +1.86444E7 14 8 67 95797 0 671 330 0 0 0 0 0 0 0 170 1.5 5 5 9900 2000 0 999999999 21 0 0 88 0.2 0 0 +1.8648E7 12 8 76 96085 0 0 303 0 0 0 0 0 0 0 160 2.1 0 0 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +1.86516E7 11 9 87 95740 0 0 300 0 0 0 0 0 0 0 160 2.6 0 0 7000 2000 9 999999999 23 0 0 88 0.2 0 0 +1.86552E7 11 9 87 95740 0 0 300 0 0 0 0 0 0 0 140 2.1 0 0 7000 2000 9 999999999 23 0 0 88 0.2 0 0 +1.86588E7 10.3 8.6 89 96119 0 0 297 0 0 0 0 0 0 0 150 3.1 0 0 7000 2000 9 999999999 22 0 0 88 0.2 0 0 +1.86624E7 9 8 93 95702 0 0 291 0 0 0 0 0 0 0 118 1 0 0 7000 2000 9 999999999 21 0 0 88 0.2 0 0 +1.8666E7 7 7 100 95663 0 0 294 0 0 0 0 0 0 0 132 1 3 3 4000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.86696E7 4.6 4.2 97 96130 0 0 281 0 0 0 0 0 0 0 90 1 3 3 2000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.86732E7 5 4 93 95624 0 0 313 0 0 0 0 0 0 0 319 0.5 10 10 300 60 0 999999999 14 0 0 88 0.2 0 0 +1.86768E7 6 5 93 95644 0 0 318 0 0 0 0 0 0 0 230 1 10 10 300 60 0 999999999 16 0 0 88 0.2 0 0 +1.86804E7 6 6 100 95644 0 0 319 0 0 0 0 0 0 0 39 1 10 10 300 60 0 999999999 17 0 0 88 0.2 0 0 +1.8684E7 7 7 100 95663 0 0 325 0 0 0 0 0 0 0 205 0.5 10 10 300 60 0 999999999 19 0 0 88 0.2 0 0 +1.86876E7 8 8 100 95683 0 0 331 0 0 0 0 0 0 0 60 2.1 10 10 500 60 0 999999999 21 0 0 88 0.2 0 0 +1.86912E7 7.9 7.7 99 96233 0 0 330 0 0 0 0 0 0 0 360 2.1 10 10 400 60 0 999999999 20 0 0 88 0.2 0 0 +1.86948E7 8 8 100 95683 231 1166 331 30 0 30 2941 0 2963 1186 320 1.5 10 10 350 60 0 999999999 21 0 0 88 0.2 0 0 +1.86984E7 8 8 100 95683 464 1327 331 85 0 85 8511 0 8579 3521 270 2.1 10 10 1000 60 0 919999999 21 0 0 88 0.2 0 0 +1.8702E7 8.8 8.4 97 96355 650 1327 335 136 0 136 13763 0 13881 5897 230 1.5 10 10 2000 1200 0 919999999 22 0 0 88 0.2 0 0 +1.87056E7 10 7 82 95721 776 1327 330 282 53 251 31919 4386 28552 10142 200 5.1 9 9 7000 450 0 919999999 19 0 0 88 0.2 0 0 +1.87092E7 9 7 87 95702 835 1327 334 189 2 187 22102 146 22058 8565 200 8.2 10 10 7000 600 0 919999999 19 0 0 88 0.2 0 0 +1.87128E7 8.9 6.6 85 96583 822 1327 324 304 24 289 34277 2081 32792 11516 140 5.7 9 9 7000 450 0 919999999 18 0 0 88 0.2 0 0 +1.87164E7 10 6 76 95721 738 1327 329 264 43 240 29864 3561 27291 9555 120 2.6 9 9 7000 750 0 919999999 17 0 0 88 0.2 0 0 +1.872E7 10 7 82 95721 589 1327 311 352 408 171 39680 29188 19397 6652 270 4.1 5 5 7000 2000 0 919999999 19 0 0 88 0.2 0 0 +1.87236E7 10.6 6.3 75 96522 385 1327 308 205 402 88 23175 18611 10025 3346 320 4.6 3 3 7000 2000 0 919999999 18 0 0 88 0.2 0 0 +1.87272E7 10 6 76 95721 140 1327 306 42 78 34 4649 0 3750 1123 20 4.1 3 3 7000 2000 0 919999999 17 0 0 88 0.2 0 0 +1.87308E7 8 6 87 95683 0 686 319 0 0 0 0 0 0 0 40 3.1 9 9 9900 2000 0 919999999 17 0 0 88 0.2 0 0 +1.87344E7 7.2 5.4 88 96569 0 0 281 0 0 0 0 0 0 0 141 1 0 0 9900 2000 9 999999999 16 0 0 88 0.2 2 0 +1.8738E7 7 6 93 95663 0 0 324 0 0 0 0 0 0 0 200 2.1 10 10 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +1.87416E7 4 4 100 95604 0 0 267 0 0 0 0 0 0 0 330 1.5 0 0 6000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.87452E7 5 3 87 95624 0 0 270 0 0 0 0 0 0 0 20 2.6 0 0 6000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.87488E7 4 4 100 95604 0 0 267 0 0 0 0 0 0 0 310 1.5 0 0 5000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.87524E7 5 5 100 95624 0 0 272 0 0 0 0 0 0 0 340 2.6 0 0 5000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.8756E7 2.8 2 94 96556 0 0 272 0 0 0 0 0 0 0 40 1 3 3 4000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.87596E7 3 2 93 95584 0 0 273 0 0 0 0 0 0 0 180 2.6 3 3 4000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.87632E7 2 2 100 95564 0 0 273 0 0 0 0 0 0 0 22 0 5 5 600 2000 0 999999999 12 0 0 88 0.2 0 0 +1.87668E7 0.3 0.1 99 96411 0 0 264 0 0 0 0 0 0 0 350 1 5 5 400 2000 0 999999999 10 0 0 88 0.2 0 0 +1.87704E7 1 1 100 95544 0 0 292 0 0 0 0 0 0 0 20 2.1 10 10 400 30 0 999999999 11 0 0 88 0.2 0 0 +1.8774E7 1 1 100 95544 0 0 292 0 0 0 0 0 0 0 20 1.5 10 10 400 30 0 999999999 11 0 0 88 0.2 0 0 +1.87776E7 2 1.8 99 96417 0 0 297 0 0 0 0 0 0 0 130 1 10 10 300 30 0 999999999 11 0 0 88 0.2 0 0 +1.87812E7 3 3 100 95584 236 1187 303 31 0 31 3050 0 3072 1226 200 1.5 10 10 200 30 0 999999999 13 0 0 88 0.2 0 0 +1.87848E7 3 3 100 95584 468 1328 303 87 0 87 8714 0 8783 3595 228 1 10 10 300 30 0 999999999 13 0 0 88 0.2 0 0 +1.87884E7 4.9 4.6 98 96485 654 1328 304 226 83 185 25646 6210 21112 7452 40 3.6 9 9 600 120 0 999999999 15 0 0 88 0.2 0 0 +1.8792E7 9 7 87 95702 781 1328 302 543 606 187 63021 44224 21784 8265 20 3.1 3 3 8000 2000 0 999999999 19 0 0 88 0.2 0 0 +1.87956E7 12 7 71 95759 840 1328 323 534 494 221 61784 38080 25747 9747 140 0.5 6 6 9900 2000 0 999999999 19 0 0 88 0.2 0 0 +1.87992E7 13.7 7.1 64 96193 827 1328 310 592 734 135 71005 47941 16210 6501 227 1 0 0 9900 2000 0 999999999 19 0 0 88 0.2 0 0 +1.88028E7 16 8 59 95834 743 1328 337 500 682 119 59669 42602 14206 5593 180 3.1 4 4 9900 2000 0 999999999 21 0 0 88 0.2 0 0 +1.88064E7 15 7 59 95815 593 1328 331 371 587 109 43371 35006 12775 4751 180 6.2 4 4 9900 2000 0 999999999 19 0 0 88 0.2 0 0 +1.881E7 14.3 8 66 96204 389 1328 313 210 417 88 23745 18987 9947 3339 170 5.7 0 0 9900 2000 0 999999999 21 0 0 88 0.2 0 0 +1.88136E7 12 6 67 95759 143 1328 319 41 54 35 4504 0 3866 1157 180 3.1 5 5 9900 2000 0 999999999 17 0 0 88 0.2 0 0 +1.88172E7 11 6 71 95740 0 702 317 0 0 0 0 0 0 0 160 3.6 6 6 9900 2000 0 999999999 17 0 0 88 0.2 0 0 +1.88208E7 9.6 5.2 74 96361 0 0 290 0 0 0 0 0 0 0 160 2.6 0 0 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +1.88244E7 10 5 71 95721 0 0 312 0 0 0 0 0 0 0 110 1.5 6 6 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +1.8828E7 7 4 81 95663 0 0 306 0 0 0 0 0 0 0 280 2.1 8 8 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +1.88316E7 5.7 3.7 87 96398 0 0 273 0 0 0 0 0 0 0 141 0.5 0 0 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +1.88352E7 5 3 87 95624 0 0 303 0 0 0 0 0 0 0 160 2.1 9 9 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +1.88388E7 6 4 87 95644 0 0 308 0 0 0 0 0 0 0 120 2.1 9 9 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +1.88424E7 3.5 2.5 93 96420 0 0 264 0 0 0 0 0 0 0 237 1 0 0 7000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.8846E7 3 2 93 95584 0 0 261 0 0 0 0 0 0 0 94 1 0 0 5000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.88496E7 5 3 87 95624 0 0 270 0 0 0 0 0 0 0 50 2.6 0 0 5000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.88532E7 1.9 1.8 99 96340 0 0 272 0 0 0 0 0 0 0 290 1.5 5 5 400 2000 9 999999999 11 0 0 88 0.2 0 0 +1.88568E7 2 1 93 95564 0 0 268 0 0 0 0 0 0 0 130 2.6 3 3 2000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.88604E7 4 3 93 95604 0 0 266 0 0 0 0 0 0 0 140 1.5 0 0 5000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.8864E7 1.4 0.9 96 96556 0 0 267 0 0 0 0 0 0 0 300 1.5 4 4 5000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.88676E7 2 1 93 95564 240 1207 257 102 191 67 11251 5024 7469 2231 30 2.1 0 0 5000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.88712E7 5 5 100 95624 473 1328 272 279 508 98 32083 27723 11343 3979 40 3.1 0 0 4000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.88748E7 8.5 5.8 83 96575 659 1328 299 435 670 103 51817 40389 12274 4726 20 2.6 3 3 9000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.88784E7 10 6 76 95721 786 1328 293 556 758 107 67409 46926 13005 5223 186 1 0 0 9000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.8882E7 12 6 67 95759 845 1328 301 609 780 113 74332 49036 13849 5639 22 1 0 0 9000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.88856E7 13.6 6.7 63 96475 832 1328 325 577 706 135 69276 46237 16233 6519 166 0.5 4 4 9000 2000 9 999999999 18 0 0 88 0.2 0 0 +1.88892E7 14 6 59 95797 748 1328 310 520 742 103 62916 45350 12480 4961 180 3.1 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.88928E7 15 7 59 95815 598 1328 331 375 567 120 43515 35027 13947 5141 170 4.1 4 4 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +1.88964E7 13.9 8 68 96442 393 1328 317 213 421 88 24097 19356 10022 3371 190 5.1 1 1 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +1.89E7 12 8 76 95759 146 1328 328 37 18 35 4152 0 3946 1184 190 3.1 7 7 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +1.89036E7 10 5 71 95721 0 718 312 0 0 0 0 0 0 0 210 3.1 6 6 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +1.89072E7 9.3 4.9 74 96600 0 0 301 0 0 0 0 0 0 0 150 1.5 3 3 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +1.89108E7 10 5 71 95721 0 0 312 0 0 0 0 0 0 0 144 0.5 6 6 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +1.89144E7 7 4 81 95663 0 0 306 0 0 0 0 0 0 0 240 1.5 8 8 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +1.8918E7 6.2 3.8 85 96634 0 0 287 0 0 0 0 0 0 0 87 0 3 3 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +1.89216E7 5 3 87 95624 0 0 270 0 0 0 0 0 0 0 300 1.5 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.89252E7 4 3 93 95604 0 0 266 0 0 0 0 0 0 0 130 1.5 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.89288E7 3.4 2.6 94 96663 0 0 263 0 0 0 0 0 0 0 40 2.6 0 0 7000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.89324E7 4 3 93 95604 0 0 266 0 0 0 0 0 0 0 50 1.5 0 0 5000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.8936E7 3 2 93 95584 0 0 273 0 0 0 0 0 0 0 200 1.5 3 3 5000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.89396E7 3.8 3 95 96614 0 0 277 0 0 0 0 0 0 0 140 1.5 3 3 5000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.89432E7 2 1 93 95564 0 0 268 0 0 0 0 0 0 0 290 1.5 3 3 5000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.89468E7 0 0 100 95523 0 0 279 0 0 0 0 0 0 0 20 1.5 9 9 800 300 0 999999999 10 0 0 88 0.2 0 0 +1.89504E7 1.4 1 97 96698 0 0 265 0 0 0 0 0 0 0 73 0.5 3 3 400 2000 0 999999999 11 0 0 88 0.2 0 0 +1.8954E7 2 2 100 95564 244 1228 269 103 223 62 11506 5412 6966 2139 20 1.5 3 3 500 2000 0 999999999 12 0 0 88 0.2 0 0 +1.89576E7 6 5 93 95644 478 1329 276 284 513 99 32572 28155 11415 4013 360 2.1 0 0 4000 2000 0 999999999 16 0 0 88 0.2 0 0 +1.89612E7 9.3 6.6 83 96591 665 1329 303 439 673 103 52299 40361 12317 4752 20 1.5 3 3 5000 2000 0 999999999 18 0 0 88 0.2 0 0 +1.89648E7 12 6 67 95759 792 1329 314 553 756 103 67344 46376 12606 5079 116 1 3 3 7000 2000 0 999999999 17 0 0 88 0.2 0 0 +1.89684E7 13 7 67 95778 851 1329 320 605 718 146 72441 47936 17558 7045 309 1 3 3 8000 2000 0 999999999 19 0 0 88 0.2 0 0 +1.8972E7 15.2 5.2 51 96401 837 1329 336 526 477 226 60792 37436 26273 9881 148 0 6 6 8000 7500 0 999999999 16 0 0 88 0.2 0 0 +1.89756E7 16 4 45 95834 752 1329 327 526 689 136 62312 46120 16183 6308 180 3.1 2 2 9900 2000 0 999999999 14 0 0 88 0.2 0 0 +1.89792E7 16 4 45 95834 602 1329 327 391 519 156 44562 36334 17834 6301 190 3.1 2 2 9900 2000 0 999999999 14 0 0 88 0.2 0 0 +1.89828E7 16.2 5.9 50 96334 397 1329 351 146 99 116 16165 5466 12934 4097 240 2.1 8 8 9900 7500 0 999999999 17 0 0 88 0.2 0 0 +1.89864E7 15 6 55 95815 150 1329 328 47 40 42 5131 0 4657 1344 200 1.5 3 3 9900 2000 0 999999999 17 0 0 88 0.2 0 0 +1.899E7 12 4 58 95759 0 734 315 0 0 0 0 0 0 0 170 4.1 4 4 9900 2000 0 999999999 14 0 0 88 0.2 0 0 +1.89936E7 10.2 0.1 49 96419 0 0 305 0 0 0 0 0 0 0 180 2.6 5 5 9900 2000 9 999999999 10 0 0 88 0.2 0 0 +1.89972E7 10 -1 46 95721 0 0 295 0 0 0 0 0 0 0 105 1 2 2 9900 2000 9 999999999 9 0 0 88 0.2 0 0 +1.90008E7 9 1 57 95702 0 0 298 0 0 0 0 0 0 0 10 1.5 4 4 9900 2000 9 999999999 10 0 0 88 0.2 0 0 +1.90044E7 6.8 0.8 66 96438 0 0 287 0 0 0 0 0 0 0 60 1.5 3 3 9900 2000 9 999999999 10 0 0 88 0.2 0 0 +1.9008E7 7 2 70 95663 0 0 296 0 0 0 0 0 0 0 111 0 6 6 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +1.90116E7 4 2 87 95604 0 0 265 0 0 0 0 0 0 0 120 0.5 0 0 8000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.90152E7 2.9 1.5 90 96398 0 0 272 0 0 0 0 0 0 0 30 2.6 3 3 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.90188E7 3 2 93 95584 0 0 261 0 0 0 0 0 0 0 228 0.5 0 0 8000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.90224E7 2 1 93 95564 0 0 257 0 0 0 0 0 0 0 20 1 0 0 6000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.9026E7 2.4 1.9 96 96256 0 0 277 0 0 0 0 0 0 0 7 0 6 6 5000 2000 9 999999999 12 0 0 88 0.2 0 0 +1.90296E7 2 1 93 95564 0 0 257 0 0 0 0 0 0 0 290 1 0 0 5000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.90332E7 2 1 93 95564 0 0 257 0 0 0 0 0 0 0 286 1 0 0 5000 2000 9 999999999 11 0 0 88 0.2 0 0 +1.90368E7 1.8 0.7 92 96300 0 0 267 0 0 0 0 0 0 0 191 1 3 3 2300 2000 9 999999999 10 0 0 88 0.2 0 0 +1.90404E7 4 3 93 95604 249 1250 266 108 239 63 11992 5920 7031 2169 50 2.1 0 0 3000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.9044E7 7 5 87 95663 483 1329 280 288 518 100 33073 28593 11489 4049 244 0.5 0 0 5000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.90476E7 11.6 6.1 69 96276 670 1329 317 419 539 147 48549 36555 17142 6376 30 1 5 5 5000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.90512E7 14 6 59 95797 797 1329 310 565 718 135 67486 47329 16151 6408 350 1.5 0 0 6000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.90548E7 16 7 55 95834 856 1329 320 618 786 112 75528 48932 13738 5613 340 1 0 0 6000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.90584E7 17.8 7.5 51 96051 842 1329 345 585 710 136 70314 46256 16361 6588 60 1 4 4 6000 2000 9 999999999 20 0 0 88 0.2 0 0 +1.9062E7 20 4 35 95906 757 1329 334 531 747 106 64199 46612 12814 5099 140 1.5 0 0 6000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.90656E7 20 7 43 95906 607 1329 338 394 518 157 44805 35725 17972 6365 170 2.6 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.90692E7 18.2 8.4 53 96002 401 1329 364 147 99 117 16316 5378 13071 4150 170 4.1 8 8 8000 2000 9 999999999 22 0 0 88 0.2 0 0 +1.90728E7 17 8 55 95852 153 1329 325 49 45 44 5385 0 4831 1391 160 2.6 0 0 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +1.90764E7 15 6 55 95815 0 749 314 0 0 0 0 0 0 0 220 2.1 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.908E7 13.8 7.5 66 96195 0 0 341 0 0 0 0 0 0 0 170 1.5 8 8 8000 7500 9 999999999 20 0 0 88 0.2 0 0 +1.90836E7 13 5 58 95778 0 0 320 0 0 0 0 0 0 0 51 0 4 4 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +1.90872E7 12 6 67 95759 0 0 319 0 0 0 0 0 0 0 350 1.5 5 5 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +1.90908E7 8.5 5.5 81 96264 0 0 286 0 0 0 0 0 0 0 340 1 0 0 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +1.90944E7 9 6 81 95702 0 0 289 0 0 0 0 0 0 0 40 1.5 0 0 7000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.9098E7 6 5 93 95644 0 0 276 0 0 0 0 0 0 0 260 1.5 0 0 6000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.91016E7 4.9 3.5 91 96212 0 0 270 0 0 0 0 0 0 0 1 0.5 0 0 5000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.91052E7 5 4 93 95624 0 0 271 0 0 0 0 0 0 0 20 1.5 0 0 4000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.91088E7 5 4 93 95624 0 0 271 0 0 0 0 0 0 0 40 1.5 0 0 4000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.91124E7 5.3 3.9 91 96135 0 0 291 0 0 0 0 0 0 0 50 2.6 6 6 4000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.9116E7 5 4 93 95624 0 0 304 0 0 0 0 0 0 0 94 0.5 9 9 4000 7500 9 999999999 14 0 0 88 0.2 0 0 +1.91196E7 5 4 93 95624 0 0 304 0 0 0 0 0 0 0 298 1 9 9 5000 7500 9 999999999 14 0 0 88 0.2 0 0 +1.91232E7 4.9 3.8 93 96193 0 0 303 0 0 0 0 0 0 0 320 2.6 9 9 5000 7500 9 999999999 14 0 0 88 0.2 0 0 +1.91268E7 6 4 87 95644 254 1272 308 57 0 57 5603 0 5643 2039 360 2.6 9 9 6000 7500 9 999999999 14 0 0 88 0.2 0 0 +1.91304E7 9 6 81 95702 488 1330 324 150 7 148 16750 471 16533 5387 70 0 9 9 7000 7500 9 999999999 17 0 0 88 0.2 0 0 +1.9134E7 12 5.9 66 96237 675 1330 338 235 21 224 26329 1690 25272 8605 260 1.5 9 9 7000 7500 9 999999999 17 0 0 88 0.2 0 0 +1.91376E7 14 7 63 95797 802 1330 349 294 54 261 33302 4504 29772 10624 80 1 9 9 7000 7500 9 999999999 19 0 0 88 0.2 0 0 +1.91412E7 16 7 55 95834 861 1330 333 613 639 199 71745 47144 23434 9108 139 1 3 3 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +1.91448E7 17.9 7.4 50 96091 847 1330 361 410 213 274 46651 17863 31371 11354 290 1.5 8 8 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +1.91484E7 18 7 49 95870 762 1330 369 275 12 268 30881 1050 30261 10427 40 2.1 9 9 9900 7500 9 999999999 19 0 0 88 0.2 0 0 +1.9152E7 19 7 46 95888 611 1330 374 205 10 200 22904 779 22498 7516 72 0 9 9 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +1.91556E7 19.1 6.5 44 96056 405 1330 366 150 68 129 16486 4001 14265 4419 254 0 8 8 9900 6900 9 999999999 18 0 0 88 0.2 0 0 +1.91592E7 17 7 52 95852 157 1330 324 51 48 45 5575 0 4978 1430 190 1 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.91628E7 15 8 63 95815 0 765 316 0 0 0 0 0 0 0 310 1.5 0 0 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +1.91664E7 13.5 8.3 71 96114 0 0 341 0 0 0 0 0 0 0 225 0 8 8 8000 2000 9 999999999 22 0 0 88 0.2 0 0 +1.917E7 13 8 72 95778 0 0 308 0 0 0 0 0 0 0 130 3.6 0 0 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +1.91736E7 13 7 67 95778 0 0 307 0 0 0 0 0 0 0 170 2.1 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.91772E7 11 7.5 79 96236 0 0 328 0 0 0 0 0 0 0 210 1 8 8 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +1.91808E7 9 7 87 95702 0 0 290 0 0 0 0 0 0 0 340 2.1 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.91844E7 9 7 87 95702 0 0 290 0 0 0 0 0 0 0 90 0.5 0 0 6000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.9188E7 9.2 7.3 88 96183 0 0 320 0 0 0 0 0 0 0 350 1 8 8 6000 2000 9 999999999 20 0 0 88 0.2 0 0 +1.91916E7 9 7 87 95702 0 0 290 0 0 0 0 0 0 0 230 2.1 0 0 6000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.91952E7 9 7 87 95702 0 0 290 0 0 0 0 0 0 0 200 1.5 0 0 6000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.91988E7 8 6.4 90 96226 0 0 320 0 0 0 0 0 0 0 280 2.6 9 9 6000 2000 9 999999999 18 0 0 88 0.2 0 0 +1.92024E7 8 6 87 95683 0 0 285 0 0 0 0 0 0 0 260 2.1 0 0 6000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.9206E7 7 5 87 95663 0 0 296 0 0 0 0 0 0 0 238 0.5 5 5 6000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.92096E7 6.7 5.4 91 96314 0 0 313 0 0 0 0 0 0 0 50 0.5 9 9 6000 5400 9 999999999 16 0 0 88 0.2 0 0 +1.92132E7 7 6 93 95663 259 1295 315 59 0 59 5748 0 5790 2093 330 2.1 9 9 5000 5100 9 999999999 17 0 0 88 0.2 0 0 +1.92168E7 9 7 87 95702 493 1330 325 152 7 150 16966 476 16744 5465 40 2.6 9 9 5000 5100 9 999999999 19 0 0 88 0.2 0 0 +1.92204E7 10 7.4 84 96321 680 1330 330 237 41 216 26630 3216 24402 8442 200 2.6 9 9 8000 5100 9 999999999 20 0 0 88 0.2 0 0 +1.9224E7 12 8 76 95759 808 1330 340 296 63 258 33583 5149 29429 10578 160 4.6 9 9 8000 5400 9 999999999 21 0 0 88 0.2 0 0 +1.92276E7 12 8 76 95759 867 1330 340 323 65 281 36837 5429 32227 11709 160 5.1 9 9 8000 5400 9 999999999 21 0 0 88 0.2 0 0 +1.92312E7 12.9 7.3 69 96187 853 1330 344 317 65 276 36116 5420 31586 11443 170 4.6 9 9 8000 5400 9 999999999 20 0 0 88 0.2 0 0 +1.92348E7 13 8 72 95778 767 1330 345 277 61 242 31351 4914 27527 9812 160 4.6 9 9 8000 5400 9 999999999 21 0 0 88 0.2 0 0 +1.92384E7 13 8 72 95778 616 1330 345 207 36 190 23195 2680 21433 7302 160 5.1 9 9 8000 5400 9 999999999 21 0 0 88 0.2 0 0 +1.9242E7 12.7 7.2 69 96231 409 1330 352 71 0 71 7053 0 7108 2890 150 4.1 10 10 8000 5400 9 999999999 19 0 0 88 0.2 0 0 +1.92456E7 12 7 71 95759 160 1330 349 17 0 17 1617 0 1629 654 120 2.6 10 10 8000 5100 9 999999999 19 0 0 88 0.2 0 0 +1.92492E7 11 7 76 95740 0 781 334 0 0 0 0 0 0 0 170 2.6 9 9 8000 5100 9 999999999 19 0 0 88 0.2 0 0 +1.92528E7 10.9 6.2 73 96329 0 0 343 0 0 0 0 0 0 0 160 2.1 10 10 8000 4800 9 999999999 18 0 0 88 0.2 0 0 +1.92564E7 11 6 71 95740 0 0 343 0 0 0 0 0 0 0 190 1.5 10 10 8000 3000 9 999999999 17 0 0 88 0.2 0 0 +1.926E7 10 7 82 95721 0 0 339 0 0 0 0 0 0 0 79 1 10 10 8000 2700 9 999999999 19 0 0 88 0.2 0.5 0 +1.92636E7 11.2 6.5 73 96306 0 0 344 0 0 0 0 0 0 0 290 1.5 10 10 8000 2100 9 999999999 18 0 0 88 0.2 0 0 +1.92672E7 10 8 87 95721 0 0 340 0 0 0 0 0 0 0 30 3.1 10 10 5000 1800 0 919999999 21 0 0 88 0.2 0 0 +1.92708E7 10 7 82 95721 0 0 339 0 0 0 0 0 0 0 30 5.7 10 10 7000 1500 0 919999999 19 0 0 88 0.2 0 0 +1.92744E7 9.5 7.7 89 96151 0 0 338 0 0 0 0 0 0 0 210 2.1 10 10 7000 2400 0 919999999 20 0 0 88 0.2 0 0 +1.9278E7 10 8 87 95721 0 0 340 0 0 0 0 0 0 0 170 1.5 10 10 6000 2400 0 919999999 21 0 0 88 0.2 0 0 +1.92816E7 9 8 93 95702 0 0 326 0 0 0 0 0 0 0 172 1 9 9 6000 2400 0 919999999 21 0 0 88 0.2 0 0 +1.92852E7 8.7 7.8 94 96069 0 0 334 0 0 0 0 0 0 0 203 0.5 10 10 4000 2700 0 919999999 21 0 0 88 0.2 0 0 +1.92888E7 9 8 93 95702 0 0 326 0 0 0 0 0 0 0 180 3.1 9 9 5000 2700 0 919999999 21 0 0 88 0.2 0 0 +1.92924E7 9 8 93 95702 0 0 326 0 0 0 0 0 0 0 150 1.5 9 9 6000 2700 0 919999999 21 0 0 88 0.2 0 0 +1.9296E7 9.4 8 91 96225 0 0 337 0 0 0 0 0 0 0 200 3.6 10 10 4000 1500 0 919999999 21 0 0 88 0.2 0 0 +1.92996E7 9 8 93 95702 264 1318 335 37 0 37 3596 0 3622 1452 150 3.6 10 10 5000 1500 0 919999999 21 0 0 88 0.2 0 0 +1.93032E7 10 9 93 95721 498 1330 341 94 0 94 9405 0 9482 3917 170 4.6 10 10 5000 300 0 919999999 23 0 0 88 0.2 0 0 +1.93068E7 10 8.6 91 96472 686 1330 341 145 0 145 14805 0 14934 6385 150 4.1 10 10 5000 480 0 919999999 22 0 0 88 0.2 0 0 +1.93104E7 10 9 93 95721 813 1330 341 182 1 181 21217 39 21277 8228 170 4.6 10 10 5000 330 0 919999999 23 0 0 88 0.2 0 0 +1.9314E7 10 8 87 95721 872 1330 340 199 5 195 23323 365 23049 9022 180 5.7 10 10 5000 270 0 919999999 21 0 0 88 0.2 0 0 +1.93176E7 11.6 8.1 79 96607 858 1330 339 319 24 304 36082 2101 34531 12206 170 5.7 9 9 5000 1200 0 919999999 21 0 0 88 0.2 0 0 +1.93212E7 12 7 71 95759 772 1330 339 279 61 244 31679 5013 27785 9906 150 4.1 9 9 5000 600 0 919999999 19 0 0 88 0.2 0 0 +1.93248E7 12 7 71 95759 620 1330 339 209 77 173 23669 5514 19717 6897 170 3.1 9 9 5000 1200 0 919999999 19 0 0 88 0.2 0 0 +1.93284E7 12.4 5.8 64 96584 413 1330 316 226 345 119 25152 19574 13312 4259 200 3.6 3 3 5000 2000 0 919999999 17 0 0 88 0.2 0 0 +1.9332E7 12 6 67 95759 164 1330 319 51 87 40 5614 0 4438 1336 220 1.5 5 5 9900 2000 0 919999999 17 0 0 88 0.2 0 0 +1.93356E7 10 6 76 95721 0 797 317 0 0 0 0 0 0 0 250 1 7 7 9900 2000 0 919999999 17 0 0 88 0.2 0 0 +1.93392E7 8.2 5.4 82 96655 0 0 285 0 0 0 0 0 0 0 220 1 0 0 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +1.93428E7 8 5 81 95683 0 0 312 0 0 0 0 0 0 0 33 1 8 8 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +1.93464E7 6 5 93 95644 0 0 276 0 0 0 0 0 0 0 331 0.5 0 0 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.935E7 6 4.2 88 96791 0 0 275 0 0 0 0 0 0 0 280 1.5 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.93536E7 5 5 100 95624 0 0 272 0 0 0 0 0 0 0 40 3.1 0 0 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.93572E7 5 4 93 95624 0 0 271 0 0 0 0 0 0 0 207 1 0 0 5000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.93608E7 2.8 1.8 93 96660 0 0 276 0 0 0 0 0 0 0 40 1.5 5 5 3000 2000 0 999999999 11 0 0 88 0.2 0 0 +1.93644E7 3 2 93 95584 0 0 277 0 0 0 0 0 0 0 106 1 5 5 2000 2000 0 999999999 12 0 0 88 0.2 0 0 +1.9368E7 1 1 100 95544 0 0 292 0 0 0 0 0 0 0 160 0 10 10 300 30 0 999999999 11 0 0 88 0.2 0 0 +1.93716E7 -0.2 -0.5 98 96495 0 0 285 0 0 0 0 0 0 0 40 1 10 10 400 2000 0 999999999 9 0 0 88 0.213 0 0 +1.93752E7 0 0 100 95523 0 0 287 0 0 0 0 0 0 0 330 1 10 10 300 60 0 999999999 10 0 0 88 0.2 0 0 +1.93788E7 0 0 100 95523 0 0 287 0 0 0 0 0 0 0 168 0.5 10 10 300 30 0 999999999 10 0 0 88 0.2 0 0 +1.93824E7 -0.3 -0.4 99 96483 1 10 285 0 0 0 17 0 17 7 280 1.5 10 10 300 30 0 999999999 9 0 0 88 0.22 0 0 +1.9386E7 0 0 100 95523 269 1331 263 113 176 77 12430 6013 8544 2566 190 1 5 5 300 2000 0 999999999 10 0 0 88 0.2 0 0 +1.93896E7 4 4 100 95604 504 1331 279 301 498 113 34446 29556 12945 4534 128 1 3 3 2000 2000 0 999999999 14 0 0 88 0.2 0 0 +1.93932E7 8.4 5.6 83 96441 692 1331 286 469 712 99 56276 42836 11962 4671 360 1.5 0 0 5000 2000 0 999999999 17 0 0 88 0.2 0 0 +1.93968E7 11 6 71 95740 819 1331 297 584 793 97 71796 48027 11923 4849 350 2.1 0 0 5000 2000 0 999999999 17 0 0 88 0.2 0 0 +1.94004E7 14 6 59 95797 878 1331 310 638 817 100 78963 49908 12355 5091 20 2.1 0 0 8000 2000 0 999999999 17 0 0 88 0.2 0 0 +1.9404E7 16.3 5.3 48 96109 863 1331 319 626 815 98 77397 49784 12098 4971 167 1 0 0 8000 2000 0 999999999 16 0 0 88 0.2 0 0 +1.94076E7 17 5 45 95852 777 1331 332 546 775 94 66825 46838 11572 4656 180 2.1 2 2 9900 2000 0 999999999 15 0 0 88 0.2 0 0 +1.94112E7 18 1 32 95870 625 1331 322 413 619 122 48179 40230 14349 5334 220 1.5 0 0 9900 2000 0 999999999 10 0 0 88 0.2 0 0 +1.94148E7 17.6 1.8 35 95991 417 1331 321 233 459 90 26644 23187 10299 3510 230 2.1 0 0 9900 2000 0 999999999 11 0 0 88 0.2 0 0 +1.94184E7 16 7 55 95834 167 1331 333 56 125 40 6183 0 4454 1349 220 2.6 3 3 9900 2000 0 999999999 19 0 0 88 0.2 0 0 +1.9422E7 13 5 58 95778 0 813 320 0 0 0 0 0 0 0 180 2.1 4 4 9900 2000 0 999999999 15 0 0 88 0.2 0 0 +1.94256E7 11.8 5.1 63 96053 0 0 299 0 0 0 0 0 0 0 180 2.1 0 0 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +1.94292E7 10 6 76 95721 0 0 317 0 0 0 0 0 0 0 171 1 7 7 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +1.94328E7 8 4 76 95683 0 0 306 0 0 0 0 0 0 0 22 0.5 7 7 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +1.94364E7 5.2 2.9 85 96086 0 0 285 0 0 0 0 0 0 0 40 2.6 4 4 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +1.944E7 6 3 81 95644 0 0 274 0 0 0 0 0 0 0 40 1.5 0 0 7000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.94436E7 5 3 87 95624 0 0 270 0 0 0 0 0 0 0 117 0 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.94472E7 5.5 3.4 86 96054 0 0 288 0 0 0 0 0 0 0 260 2.1 5 5 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.94508E7 5 3 87 95624 0 0 270 0 0 0 0 0 0 0 40 2.1 0 0 7000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.94544E7 5 3 87 95624 0 0 303 0 0 0 0 0 0 0 30 1.5 9 9 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +1.9458E7 5 3.3 89 95883 0 0 289 0 0 0 0 0 0 0 231 1 6 6 7000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.94616E7 6 3 81 95644 0 0 307 0 0 0 0 0 0 0 103 0 9 9 8000 5100 9 999999999 13 0 0 88 0.2 0 0 +1.94652E7 5 3 87 95624 0 0 270 0 0 0 0 0 0 0 280 2.1 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.94688E7 5.2 3 86 96020 7 33 297 1 0 1 118 0 118 48 30 2.1 8 8 6000 2000 9 999999999 13 0 0 88 0.2 0 0 +1.94724E7 7 4 81 95663 274 1331 313 64 0 64 6292 0 6338 2282 50 3.6 9 9 8000 5400 9 999999999 14 0 0 88 0.2 0 0 +1.9476E7 8 5 81 95683 509 1331 301 288 145 232 31039 12422 25208 6974 72 1 5 5 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.94796E7 9.7 4.5 70 96051 697 1331 335 150 0 150 15258 0 15390 6571 102 0.5 10 10 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.94832E7 12 4 58 95759 825 1331 336 305 24 290 34499 2147 32988 11553 313 0.5 9 9 8000 6000 9 999999999 14 0 0 88 0.2 0 0 +1.94868E7 13 6 62 95778 883 1331 343 332 66 288 37886 5635 33090 12034 172 1 9 9 8000 6000 9 999999999 17 0 0 88 0.2 0 0 +1.94904E7 14.2 6.6 60 96155 869 1331 349 325 65 282 37029 5534 32363 11747 292 1 9 9 8000 5100 9 999999999 18 0 0 88 0.2 0 0 +1.9494E7 14 7 63 95797 782 1331 349 284 23 270 31977 1976 30618 10663 240 2.6 9 9 8000 5100 9 999999999 19 0 0 88 0.2 0 0 +1.94976E7 14 7 63 95797 629 1331 329 384 169 304 41577 16157 33131 9391 170 3.6 5 5 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.95012E7 13 5.8 62 96189 421 1331 343 121 18 116 13570 1025 12978 4219 160 4.1 9 9 8000 5100 9 999999999 17 0 0 88 0.2 0 0 +1.95048E7 12 6 67 95759 171 1331 338 30 0 30 2941 0 2962 1100 150 2.1 9 9 8000 5400 9 999999999 17 0 0 88 0.2 0 0 +1.95084E7 12 5 62 95759 0 829 337 0 0 0 0 0 0 0 99 1 9 9 8000 4500 9 999999999 15 0 0 88 0.2 0 0 +1.9512E7 10.2 6.5 78 96353 0 0 330 0 0 0 0 0 0 0 180 2.1 9 9 8000 4500 9 999999999 18 0 0 88 0.2 0 0 +1.95156E7 10 6 76 95721 0 0 329 0 0 0 0 0 0 0 140 2.1 9 9 8000 4500 9 999999999 17 0 0 88 0.2 0 0 +1.95192E7 9 7 87 95702 0 0 325 0 0 0 0 0 0 0 240 3.1 9 9 8000 3900 9 999999999 19 0 0 88 0.2 0 0 +1.95228E7 8.5 6.8 89 96396 0 0 323 0 0 0 0 0 0 0 340 2.1 9 9 8000 3900 9 999999999 19 0 0 88 0.2 0 0 +1.95264E7 8 6 87 95683 0 0 319 0 0 0 0 0 0 0 125 1 9 9 8000 4500 9 999999999 17 0 0 88 0.2 0 0 +1.953E7 9 7 87 95702 0 0 325 0 0 0 0 0 0 0 240 1.5 9 9 8000 3900 9 999999999 19 0 0 88 0.2 0 0 +1.95336E7 7.9 6.2 89 96441 0 0 319 0 0 0 0 0 0 0 210 1.5 9 9 6000 3900 9 999999999 18 0 0 88 0.2 0 0 +1.95372E7 8 6 87 95683 0 0 319 0 0 0 0 0 0 0 170 2.1 9 9 7000 3900 9 999999999 17 0 0 88 0.2 0 0 +1.95408E7 8 6 87 95683 0 0 319 0 0 0 0 0 0 0 170 1.5 9 9 7000 3900 9 999999999 17 0 0 88 0.2 0 0 +1.95444E7 7.3 5.9 91 96448 0 0 316 0 0 0 0 0 0 0 120 1 9 9 5000 3900 9 999999999 17 0 0 88 0.2 0 0 +1.9548E7 6 5 93 95644 0 0 309 0 0 0 0 0 0 0 269 1 9 9 5000 3900 9 999999999 16 0 0 88 0.2 0 0 +1.95516E7 6 5 93 95644 0 0 309 0 0 0 0 0 0 0 155 1 9 9 4000 3900 9 999999999 16 0 0 88 0.2 0 0 +1.95552E7 6.1 5.4 95 96547 12 56 310 2 0 2 153 0 154 63 241 0.5 9 9 3000 3900 9 999999999 16 0 0 88 0.2 0 0 +1.95588E7 8 6 87 95683 279 1332 319 66 0 66 6454 0 6502 2343 60 1 9 9 4000 3900 9 999999999 17 0 0 88 0.2 0 0 +1.95624E7 8 7 93 95683 515 1332 321 161 28 151 18069 1845 16951 5632 270 2.1 9 9 4000 3900 9 999999999 19 0 0 88 0.2 0 0 +1.9566E7 9.2 7 86 96599 703 1332 335 151 0 151 15349 0 15482 6629 237 1 10 10 4000 3600 9 999999999 19 0 0 88 0.2 0 0 +1.95696E7 10 7 82 95721 830 1332 330 307 24 292 34612 2079 33123 11638 200 1.5 9 9 5000 3600 9 999999999 19 0 0 88 0.2 0 0 +1.95732E7 10 8 87 95721 889 1332 331 334 65 290 38042 5512 33279 12128 230 2.6 9 9 5000 3000 9 999999999 21 0 0 88 0.2 0 0 +1.95768E7 10.5 7.5 82 96548 874 1332 333 327 65 284 37253 5489 32583 11842 270 1.5 9 9 7000 3000 9 999999999 20 0 0 88 0.2 0 0 +1.95804E7 11 8 82 95740 787 1332 336 286 62 249 32407 5025 28435 10172 40 3.6 9 9 5000 2700 9 999999999 21 0 0 88 0.2 0 0 +1.9584E7 11 8 82 95740 634 1332 336 215 19 206 24028 1486 23122 7813 350 1.5 9 9 7000 2400 9 999999999 21 0 0 88 0.2 0 0 +1.95876E7 12.1 7 71 96399 425 1332 340 123 11 119 13705 644 13356 4328 140 2.1 9 9 7000 2400 0 919999999 19 0 0 88 0.2 0 0 +1.95912E7 12 7 71 95759 174 1332 339 31 0 31 3036 0 3057 1135 110 1.5 9 9 6000 2400 0 919999999 19 0 0 88 0.2 0 0 +1.95948E7 11 7 76 95740 0 845 344 0 0 0 0 0 0 0 220 2.6 10 10 7000 3000 0 919999999 19 0 0 88 0.2 0 0 +1.95984E7 12.1 6.1 67 96342 0 0 339 0 0 0 0 0 0 0 140 4.6 9 9 8000 2400 9 999999999 17 0 0 88 0.2 0 0 +1.9602E7 10 6 76 95721 0 0 329 0 0 0 0 0 0 0 101 1 9 9 8000 3600 9 999999999 17 0 0 88 0.2 0 0 +1.96056E7 8 6 87 95683 0 0 302 0 0 0 0 0 0 0 40 3.1 5 5 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.96092E7 8.8 6.4 85 96203 0 0 324 0 0 0 0 0 0 0 360 2.6 9 9 8000 3600 9 999999999 18 0 0 88 0.2 0 0 +1.96128E7 9 6 81 95702 0 0 324 0 0 0 0 0 0 0 240 1 9 9 8000 3000 9 999999999 17 0 0 88 0.2 0 0 +1.96164E7 9 7 87 95702 0 0 325 0 0 0 0 0 0 0 94 1 9 9 8000 3000 9 999999999 19 0 0 88 0.2 0 0 +1.962E7 8.5 6.7 88 96056 0 0 332 0 0 0 0 0 0 0 260 1.5 10 10 8000 1500 9 999999999 18 0 0 88 0.2 0 0 +1.96236E7 9 7 87 95702 0 0 325 0 0 0 0 0 0 0 111 0.5 9 9 6000 1500 9 999999999 19 0 0 88 0.2 0 0 +1.96272E7 9 6 81 95702 0 0 324 0 0 0 0 0 0 0 60 4.1 9 9 6000 1200 9 999999999 17 0 0 88 0.2 0 0 +1.96308E7 9.9 6.2 78 96064 0 0 338 0 0 0 0 0 0 0 250 3.6 10 10 8000 1200 9 999999999 18 0 0 88 0.2 0 0 +1.96344E7 9 6 81 95702 0 0 324 0 0 0 0 0 0 0 90 2.1 9 9 8000 1200 9 999999999 17 0 0 88 0.2 0 0 +1.9638E7 9 6 81 95702 0 0 333 0 0 0 0 0 0 0 180 1.5 10 10 8000 2400 9 999999999 17 0 0 88 0.2 0 0 +1.96416E7 14.3 2 43 96110 17 79 354 1 0 1 133 0 134 55 340 4.1 10 10 8000 900 9 999999999 11 0 0 88 0.2 0 0 +1.96452E7 15 3 44 95815 284 1332 359 41 0 41 4071 0 4101 1641 350 6.7 10 10 8000 2400 9 999999999 13 0 0 88 0.2 0 0 +1.96488E7 15 4 48 95815 520 1332 360 100 0 100 10095 0 10177 4204 330 3.1 10 10 8000 2400 9 999999999 14 0 0 88 0.2 0 0 +1.96524E7 9.7 7.4 86 95938 709 1332 338 152 0 152 15499 0 15634 6704 160 5.7 10 10 8000 2100 0 919999999 20 0 0 88 0.2 0 0 +1.9656E7 9 8 93 95702 836 1332 335 188 1 188 22020 49 22075 8566 160 8.7 10 10 7000 1500 0 919999999 21 0 0 88 0.2 0 0 +1.96596E7 9 8 93 95702 895 1332 335 205 1 204 24054 71 24098 9446 110 2.1 10 10 4500 1500 0 919999999 21 0 0 88 0.2 0 0 +1.96632E7 10.4 8.6 89 95923 880 1332 343 200 1 200 23501 65 23548 9212 30 6.7 10 10 4500 1500 0 919999999 22 0 0 88 0.2 0 0 +1.96668E7 10 9 93 95721 792 1332 341 175 1 175 20460 59 20496 7891 340 7.2 10 10 5000 1800 0 919999999 23 0 0 88 0.2 0 0 +1.96704E7 10 9 93 95721 639 1332 341 177 11 171 20070 793 19548 6947 360 7.2 10 10 5000 2000 0 919999999 23 0 0 88 0.2 0 0 +1.9674E7 10.4 8.8 90 95771 429 1332 343 76 0 76 7527 0 7586 3098 10 3.6 10 10 5000 1500 0 919999999 23 0 0 88 0.2 0 0 +1.96776E7 11 9 87 95740 178 1332 346 20 0 20 1900 0 1913 769 340 3.6 10 10 5000 1500 0 919999999 23 0 0 88 0.2 0 0 +1.96812E7 11 9 87 95740 0 861 346 0 0 0 0 0 0 0 20 4.1 10 10 5000 1500 0 919999999 23 0 0 88 0.2 0 0 +1.96848E7 10.9 9.3 90 95781 0 0 346 0 0 0 0 0 0 0 350 5.7 10 10 5000 1500 0 919999999 24 0 0 88 0.2 5 0 +1.96884E7 11 9 87 95740 0 0 346 0 0 0 0 0 0 0 350 5.7 10 10 5000 1500 0 919999999 23 0 0 88 0.2 5 0 +1.9692E7 11 9 87 95740 0 0 346 0 0 0 0 0 0 0 10 5.7 10 10 5000 1800 0 919999999 23 0 0 88 0.2 5 0 +1.96956E7 10.7 9.6 93 95711 0 0 345 0 0 0 0 0 0 0 20 4.6 10 10 5000 900 0 919999999 25 0 0 88 0.2 5 0 +1.96992E7 11 10 94 95740 0 0 347 0 0 0 0 0 0 0 360 4.1 10 10 5000 1200 0 919999999 26 0 0 88 0.2 5 0 +1.97028E7 11 10 94 95740 0 0 347 0 0 0 0 0 0 0 10 3.6 10 10 5000 1200 0 919999999 26 0 0 88 0.2 5 0 +1.97064E7 10.7 10.2 97 95635 0 0 346 0 0 0 0 0 0 0 340 2.1 10 10 5000 1200 0 919999999 26 0 0 88 0.2 5 0 +1.971E7 12 10 88 95759 0 0 352 0 0 0 0 0 0 0 360 2.6 10 10 5000 1200 0 919999999 26 0 0 88 0.2 5 0 +1.97136E7 11 10 94 95740 0 0 347 0 0 0 0 0 0 0 220 3.1 10 10 4000 900 0 919999999 26 0 0 88 0.2 5 0 +1.97172E7 11.2 10.6 96 95598 0 0 349 0 0 0 0 0 0 0 220 4.1 10 10 5000 1200 0 919999999 27 0 0 88 0.2 0.7 0 +1.97208E7 10 9 93 95721 0 0 341 0 0 0 0 0 0 0 190 5.7 10 10 5000 1200 0 919999999 23 0 0 88 0.2 0 0 +1.97244E7 9 8 93 95702 0 0 335 0 0 0 0 0 0 0 230 7.7 10 10 4000 600 0 919999999 21 0 0 88 0.2 0 0 +1.9728E7 8.9 7.2 89 95818 22 103 334 2 0 2 172 0 173 71 160 3.1 10 10 5000 900 0 919999999 19 0 0 88 0.2 0 0 +1.97316E7 9 7 87 95702 290 1333 334 42 0 42 4157 0 4188 1681 130 4.1 10 10 5000 1050 0 919999999 19 0 0 88 0.2 0 0 +1.97352E7 9 8 93 95702 526 1333 335 101 0 101 10164 0 10248 4250 180 2.1 10 10 5000 540 0 919999999 21 0 0 88 0.2 0 0 +1.97388E7 9.9 8 88 96102 715 1333 330 252 87 205 28607 6589 23455 8408 190 2.6 9 9 5000 1800 0 919999999 21 0 0 88 0.2 0 0 +1.97424E7 12 7 71 95759 842 1333 320 562 371 328 62998 33927 36993 12579 206 0.5 5 5 5000 2000 0 919999999 19 0 0 88 0.2 0 0 +1.9746E7 12 7 71 95759 900 1333 339 339 78 287 38828 6573 33001 12125 330 1.5 9 9 5000 600 0 919999999 19 0 0 88 0.2 0 0 +1.97496E7 13.8 7.9 68 96100 885 1333 329 598 540 240 69180 42219 27903 10603 71 1 5 5 5000 2000 0 919999999 21 0 0 88 0.2 0 0 +1.97532E7 15 7 59 95815 797 1333 334 524 644 139 62397 42559 16609 6571 300 1.5 5 5 5000 2000 0 919999999 19 0 0 88 0.2 0 0 +1.97568E7 15 6 55 95815 643 1333 328 420 617 122 49095 39051 14347 5390 30 1 3 3 5000 2000 0 919999999 17 0 0 88 0.2 0 0 +1.97604E7 14.2 7.5 64 96117 433 1333 326 241 444 97 27388 22609 11044 3771 210 2.6 3 3 5000 2000 0 919999999 20 0 0 88 0.2 0 0 +1.9764E7 13 7 67 95778 182 1333 325 59 111 44 6582 265 4915 1490 220 4.1 5 5 9900 2000 0 919999999 19 0 0 88 0.2 0 0 +1.97676E7 11 8 82 95740 0 877 329 0 0 0 0 0 0 0 210 3.6 8 8 9900 2000 0 919999999 21 0 0 88 0.2 0 0 +1.97712E7 10.7 7.4 80 96287 0 0 310 0 0 0 0 0 0 0 190 4.1 3 3 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +1.97748E7 10 7 82 95721 0 0 330 0 0 0 0 0 0 0 150 2.6 9 9 9900 900 9 999999999 19 0 0 88 0.2 0 0 +1.97784E7 9 7 87 95702 0 0 307 0 0 0 0 0 0 0 150 2.6 5 5 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +1.9782E7 8 6 87 95683 0 0 319 0 0 0 0 0 0 0 150 2.1 9 9 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +1.97856E7 7 5 87 95663 0 0 314 0 0 0 0 0 0 0 170 1.5 9 9 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +1.97892E7 6 5 93 95644 0 0 318 0 0 0 0 0 0 0 346 0 10 10 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +1.97928E7 6 6 100 95644 0 0 289 0 0 0 0 0 0 0 20 2.1 3 3 5000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.97964E7 5 5 100 95624 0 0 288 0 0 0 0 0 0 0 92 1.5 5 5 4000 2000 9 999999999 16 0 0 88 0.2 0 0 +1.98E7 4 4 100 95604 0 0 279 0 0 0 0 0 0 0 155 0 3 3 600 2000 0 999999999 14 0 0 88 0.2 0 0 +1.98036E7 3 2 93 95584 0 0 273 0 0 0 0 0 0 0 150 1 3 3 2000 2000 0 999999999 12 0 0 88 0.2 0 0 +1.98072E7 3 2 93 95584 0 0 273 0 0 0 0 0 0 0 260 1 3 3 1500 2000 0 999999999 12 0 0 88 0.2 0 0 +1.98108E7 3 2 93 95584 0 0 273 0 0 0 0 0 0 0 262 1 3 3 1500 2000 0 999999999 12 0 0 88 0.2 0 0 +1.98144E7 4 3 93 95604 27 127 278 7 0 7 672 0 677 246 248 0 3 3 1200 2000 0 999999999 13 0 0 88 0.2 0 0 +1.9818E7 5 4 93 95624 295 1333 283 137 286 74 15298 9811 8245 2601 311 0 3 3 3000 2000 0 999999999 14 0 0 88 0.2 0 0 +1.98216E7 8 6 87 95683 532 1333 285 328 561 104 37921 32230 12078 4361 197 0.5 0 0 7000 2000 0 999999999 17 0 0 88 0.2 0 0 +1.98252E7 11 8 82 95740 721 1333 299 493 726 101 59297 43226 12142 4789 115 1 0 0 8000 2000 0 999999999 21 0 0 88 0.2 0 0 +1.98288E7 12 7 71 95759 848 1333 315 602 775 109 73561 47928 13370 5454 351 0.5 3 3 8000 2000 0 999999999 19 0 0 88 0.2 0 0 +1.98324E7 14 8 67 95797 906 1333 325 653 794 114 80293 49162 14036 5796 185 1 3 3 8000 2000 0 999999999 21 0 0 88 0.2 0 0 +1.9836E7 15 7 59 95815 891 1333 329 640 792 112 78648 49217 13760 5665 180 2.6 3 3 8000 2000 0 999999999 19 0 0 88 0.2 0 0 +1.98396E7 15 7 59 95815 803 1333 329 561 739 116 67695 46402 14112 5665 150 2.6 3 3 8000 2000 0 999999999 19 0 0 88 0.2 0 0 +1.98432E7 15 9 67 95815 648 1333 331 422 623 119 49399 38199 14003 5294 210 5.7 3 3 8000 2000 0 999999999 23 0 0 88 0.2 0 0 +1.98468E7 14 8 67 95797 437 1333 330 230 372 108 25935 20020 12246 4107 210 5.7 5 5 8000 2000 0 999999999 21 0 0 88 0.2 0 0 +1.98504E7 12 8 76 95759 185 1333 321 62 74 51 6762 501 5660 1662 210 5.7 5 5 8000 2000 0 999999999 21 0 0 88 0.2 0 0 +1.9854E7 11 8 82 95740 0 892 317 0 0 0 0 0 0 0 200 3.6 5 5 8000 2000 0 999999999 21 0 0 88 0.2 0 0 +1.98576E7 10.2 7.8 85 96240 0 0 308 0 0 0 0 0 0 0 160 3.6 3 3 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +1.98612E7 10 8 87 95721 0 0 312 0 0 0 0 0 0 0 170 4.6 5 5 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +1.98648E7 9 7 87 95702 0 0 307 0 0 0 0 0 0 0 160 3.6 5 5 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.98684E7 9 7 87 95702 0 0 325 0 0 0 0 0 0 0 150 2.6 9 9 8000 1800 9 999999999 19 0 0 88 0.2 0 0 +1.9872E7 8 7 93 95683 0 0 321 0 0 0 0 0 0 0 170 2.6 9 9 8000 2400 9 999999999 19 0 0 88 0.2 0 0 +1.98756E7 7 6 93 95663 0 0 297 0 0 0 0 0 0 0 120 2.6 5 5 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.98792E7 7.8 6.6 92 96373 0 0 312 0 0 0 0 0 0 0 140 3.6 8 8 8000 2700 9 999999999 18 0 0 88 0.2 0 0 +1.98828E7 7 6 93 95663 0 0 315 0 0 0 0 0 0 0 160 2.1 9 9 8000 2700 9 999999999 17 0 0 88 0.2 0 0 +1.98864E7 7 6 93 95663 0 0 315 0 0 0 0 0 0 0 7 0 9 9 8000 480 9 999999999 17 0 0 88 0.2 0 0 +1.989E7 7.7 6.1 90 96352 0 0 327 0 0 0 0 0 0 0 140 2.6 10 10 8000 480 9 999999999 17 0 0 88 0.2 0 0 +1.98936E7 8 6 87 95683 0 0 329 0 0 0 0 0 0 0 190 1.5 10 10 8000 450 9 999999999 17 0 0 88 0.2 0 0 +1.98972E7 8 6 87 95683 0 0 329 0 0 0 0 0 0 0 210 2.1 10 10 8000 510 9 999999999 17 0 0 88 0.2 0 0 +1.99008E7 7.6 5.9 89 96501 32 151 327 3 0 3 254 0 256 103 160 2.6 10 10 8000 360 9 999999999 17 0 0 88 0.2 0 0 +1.99044E7 8 6 87 95683 301 1334 319 73 0 73 7225 0 7279 2616 150 2.6 9 9 8000 780 9 999999999 17 0 0 88 0.2 0 0 +1.9908E7 9 7 87 95702 538 1334 325 171 29 159 19172 2030 17925 5986 150 3.1 9 9 8000 900 9 999999999 19 0 0 88 0.2 0 0 +1.99116E7 8.7 6.6 87 96532 727 1334 332 157 0 157 18292 12 18360 6954 160 3.6 10 10 8000 900 9 999999999 18 0 0 88 0.2 0 0 +1.99152E7 10 8 87 95721 854 1334 331 317 24 301 35796 2089 34266 12093 170 1.5 9 9 9000 900 9 999999999 21 0 0 88 0.2 0 0 +1.99188E7 12 7 71 95759 912 1334 339 345 66 300 39372 5661 34419 12570 130 1.5 9 9 9000 900 9 999999999 19 0 0 88 0.2 0 0 +1.99224E7 12.3 7 70 96393 896 1334 341 337 66 293 38479 5602 33643 12259 58 2.1 9 9 9000 690 9 999999999 19 0 0 88 0.2 0 0 +1.9926E7 13 8 72 95778 808 1334 345 295 62 257 33486 5124 29368 10544 230 2.6 9 9 8000 750 9 999999999 21 0 0 88 0.2 0 0 +1.99296E7 12 8 76 95759 653 1334 340 223 20 213 24949 1543 23994 8137 180 3.6 9 9 8000 990 9 999999999 21 0 0 88 0.2 0 0 +1.99332E7 11.5 8.6 82 96340 441 1334 339 129 12 125 14387 708 13995 4555 170 4.6 9 9 8000 5100 9 999999999 22 0 0 88 0.2 0 0 +1.99368E7 11 7 76 95740 189 1334 334 35 0 35 3429 0 3454 1276 180 4.6 9 9 8000 5100 9 999999999 19 0 0 88 0.2 0 0 +1.99404E7 10 7 82 95721 0 908 330 0 0 0 0 0 0 0 210 3.1 9 9 8000 5100 9 999999999 19 0 0 88 0.2 0 0 +1.9944E7 9.3 7.7 90 96364 0 0 327 0 0 0 0 0 0 0 180 2.6 9 9 8000 5100 9 999999999 20 0 0 88 0.2 0 0 +1.99476E7 9 8 93 95702 0 0 326 0 0 0 0 0 0 0 160 3.1 9 9 8000 4500 9 999999999 21 0 0 88 0.2 0 0 +1.99512E7 9 8 93 95702 0 0 326 0 0 0 0 0 0 0 150 2.6 9 9 8000 900 9 999999999 21 0 0 88 0.2 0 0 +1.99548E7 8.6 7.6 93 96455 0 0 333 0 0 0 0 0 0 0 160 2.6 10 10 8000 1200 9 999999999 20 0 0 88 0.2 0 0 +1.99584E7 8 7 93 95683 0 0 321 0 0 0 0 0 0 0 160 3.6 9 9 7000 600 9 999999999 19 0 0 88 0.2 0 0 +1.9962E7 8 7 93 95683 0 0 330 0 0 0 0 0 0 0 170 2.6 10 10 7000 600 9 999999999 19 0 0 88 0.2 0 0 +1.99656E7 8.3 7.3 93 96515 0 0 331 0 0 0 0 0 0 0 180 3.1 10 10 7000 600 9 999999999 20 0 0 88 0.2 0 0 +1.99692E7 8 7 93 95683 0 0 330 0 0 0 0 0 0 0 160 2.6 10 10 7000 600 9 999999999 19 0 0 88 0.2 0 0 +1.99728E7 8 7 93 95683 0 0 330 0 0 0 0 0 0 0 150 3.1 10 10 8000 450 9 999999999 19 0 0 88 0.2 0 0 +1.99764E7 7.6 6.9 95 96520 0 0 328 0 0 0 0 0 0 0 170 3.6 10 10 5000 450 9 999999999 19 0 0 88 0.2 0 0 +1.998E7 8 7 93 95683 0 0 330 0 0 0 0 0 0 0 140 1.5 10 10 6000 450 9 999999999 19 0 0 88 0.2 0 0 +1.99836E7 6 6 100 95644 0 0 319 0 0 0 0 0 0 0 180 2.1 10 10 6000 450 9 999999999 17 0 0 88 0.2 0 0 +1.99872E7 7.4 6.5 94 96648 37 176 317 5 0 5 486 0 489 190 110 2.1 9 9 5000 450 9 999999999 18 0 0 88 0.2 0 0 +1.99908E7 8 7 93 95683 307 1334 321 75 0 75 7421 0 7477 2688 59 1 9 9 5000 450 9 999999999 19 0 0 88 0.2 0 0 +1.99944E7 9 7 87 95702 544 1334 325 174 16 167 19411 1103 18790 6220 289 1 9 9 5000 450 9 999999999 19 0 0 88 0.2 0 0 +1.9998E7 9.5 6.1 79 96708 733 1334 326 261 89 212 29671 6945 24221 8708 220 1.5 9 9 6000 450 9 999999999 17 0 0 88 0.2 0 0 +2.00016E7 11 5 66 95740 860 1334 314 579 530 237 66835 42305 27551 10355 283 0.5 5 5 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +2.00052E7 13 6 62 95778 918 1334 319 666 774 134 81031 50537 16349 6712 190 3.1 3 3 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.00088E7 13.7 4.9 55 96647 902 1334 321 652 805 109 80450 50453 13470 5559 190 2.6 3 3 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +2.00124E7 14 6 59 95797 813 1334 323 570 763 106 69515 47182 12946 5236 190 4.6 3 3 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.0016E7 14 3 47 95797 657 1334 320 434 537 169 49617 39122 19444 6991 210 5.1 3 3 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +2.00196E7 13 3 51 95778 446 1334 339 132 22 125 14768 1329 14007 4570 200 6.7 9 9 8000 1800 9 999999999 13 0 0 88 0.2 0 0 +2.00232E7 11 6 71 95740 192 1334 315 65 132 46 7278 812 5179 1577 160 5.1 5 5 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.00268E7 9 6 81 95702 0 924 324 0 0 0 0 0 0 0 160 4.6 9 9 8000 3000 9 999999999 17 0 0 88 0.2 0 0 +2.00304E7 8.8 5 77 96931 0 0 322 0 0 0 0 0 0 0 140 4.6 9 9 8000 3000 9 999999999 16 0 0 88 0.2 0 0 +2.0034E7 8 5 81 95683 0 0 318 0 0 0 0 0 0 0 150 4.1 9 9 8000 2400 9 999999999 16 0 0 88 0.2 0 0 +2.00376E7 8 5 81 95683 0 0 318 0 0 0 0 0 0 0 150 3.6 9 9 8000 2400 9 999999999 16 0 0 88 0.2 0 0 +2.00412E7 8 4.2 77 96575 0 0 318 0 0 0 0 0 0 0 150 2.6 9 9 8000 2400 9 999999999 14 0 0 88 0.2 0 0 +2.00448E7 7 4 81 95663 0 0 295 0 0 0 0 0 0 0 210 1.5 5 5 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.00484E7 6 4 87 95644 0 0 291 0 0 0 0 0 0 0 260 2.1 5 5 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.0052E7 6 4.5 90 97027 0 0 302 0 0 0 0 0 0 0 186 0.5 8 8 8000 2100 9 999999999 15 0 0 88 0.2 0 0 +2.00556E7 6 4 87 95644 0 0 287 0 0 0 0 0 0 0 266 0.5 3 3 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.00592E7 4 3 93 95604 0 0 278 0 0 0 0 0 0 0 4 1 3 3 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +2.00628E7 4.3 3.8 97 96917 0 0 268 0 0 0 0 0 0 0 184 0.5 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.00664E7 3 2 93 95584 0 0 302 0 0 0 0 0 0 0 205 0 10 10 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +2.007E7 4 3 93 95604 0 0 307 0 0 0 0 0 0 0 102 1 10 10 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +2.00736E7 3.5 2.7 94 96929 43 201 264 11 0 11 1081 0 1088 378 240 2.1 0 0 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +2.00772E7 5 4 93 95624 313 1335 283 149 305 77 16622 11393 8663 2756 260 1 3 3 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.00808E7 8 5 81 95683 550 1335 296 338 551 112 39110 33051 12953 4677 280 0.5 3 3 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +2.00844E7 9.6 4.2 69 96937 739 1335 307 476 523 187 54841 39073 21638 8007 151 1 5 5 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.0088E7 10 4 66 95721 866 1335 308 585 664 154 69902 45879 18529 7418 237 1.5 5 5 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.00916E7 12 5 62 95759 924 1335 318 633 641 190 75158 46590 22630 9028 238 1.5 5 5 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.00952E7 12.8 4.9 59 96790 907 1335 317 657 767 136 79765 50711 16572 6777 160 2.1 3 3 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.00988E7 13 4 54 95778 818 1335 317 577 773 103 70495 48164 12685 5138 140 2.6 3 3 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.01024E7 13 3 51 95778 662 1335 315 437 618 131 51114 40947 15378 5773 210 2.6 3 3 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +2.0106E7 13.3 4.5 55 96762 450 1335 318 255 464 99 29070 24851 11299 3888 210 3.1 3 3 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.01096E7 11 5 66 95740 196 1335 309 71 107 56 7837 1327 6137 1793 220 5.1 3 3 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.01132E7 10 5 71 95721 0 940 304 0 0 0 0 0 0 0 210 4.6 3 3 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +2.01168E7 8.8 4.7 75 96884 0 0 299 0 0 0 0 0 0 0 200 4.1 3 3 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.01204E7 9 5 76 95702 0 0 305 0 0 0 0 0 0 0 160 2.6 5 5 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +2.0124E7 7 5 87 95663 0 0 296 0 0 0 0 0 0 0 170 2.6 5 5 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +2.01276E7 6.9 4.4 84 96969 0 0 279 0 0 0 0 0 0 0 190 1 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.01312E7 5 4 93 95624 0 0 313 0 0 0 0 0 0 0 260 1.5 10 10 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.01348E7 4 3 93 95604 0 0 307 0 0 0 0 0 0 0 68 0 10 10 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +2.01384E7 4 2.9 93 96750 0 0 266 0 0 0 0 0 0 0 242 0 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +2.0142E7 4 3 93 95604 0 0 266 0 0 0 0 0 0 0 270 1 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +2.01456E7 4 3 93 95604 0 0 282 0 0 0 0 0 0 0 166 0.5 5 5 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +2.01492E7 3.6 2.5 93 96893 0 0 280 0 0 0 0 0 0 0 266 1 5 5 8000 2000 9 999999999 12 0 0 88 0.2 0 0 +2.01528E7 5 4 93 95624 0 0 304 0 0 0 0 0 0 0 70 1.5 9 9 8000 660 9 999999999 14 0 0 88 0.2 0 0 +2.01564E7 5 4 93 95624 0 0 304 0 0 0 0 0 0 0 340 1.5 9 9 8000 900 9 999999999 14 0 0 88 0.2 0 0 +2.016E7 4.3 3.6 95 96964 48 227 300 7 0 7 629 0 634 244 66 0.5 9 9 8000 900 9 999999999 14 0 0 88 0.2 0 0 +2.01636E7 5 4 93 95624 318 1336 287 144 257 83 16054 10260 9252 2916 122 1 5 5 5000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.01672E7 9 6 81 95702 556 1336 306 323 442 140 36747 28910 15929 5563 62 0 5 5 9000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.01708E7 9.9 6.3 78 96914 745 1336 305 509 671 135 60152 44142 15997 6218 205 0.5 3 3 9000 2000 9 999999999 18 0 0 88 0.2 0 0 +2.01744E7 11 6 71 95740 873 1336 310 624 788 109 76558 49142 13482 5528 98 1 3 3 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.0178E7 12 4 58 95759 930 1336 312 678 816 111 83942 51595 13737 5695 287 1 3 3 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.01816E7 13.2 5 57 96637 913 1336 305 670 753 156 80638 51632 18834 7637 210 2.6 0 0 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +2.01852E7 14 4 51 95797 823 1336 321 585 754 120 70730 48768 14617 5884 160 3.6 3 3 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.01888E7 14 3 47 95797 667 1336 317 446 639 127 52300 41945 14983 5656 170 5.1 2 2 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +2.01924E7 14 4 51 95797 454 1336 321 260 477 98 29706 25658 11214 3876 170 4.6 3 3 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.0196E7 13 5 58 95778 200 1336 320 73 106 57 7971 1435 6260 1831 180 4.1 4 4 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.01996E7 10 5 71 95721 0 956 312 0 0 0 0 0 0 0 220 3.1 6 6 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +2.02032E7 8.9 1.8 61 96593 0 0 284 0 0 0 0 0 0 0 180 3.6 0 0 9900 2000 9 999999999 11 0 0 88 0.2 0 0 +2.02068E7 8 2 66 95683 0 0 297 0 0 0 0 0 0 0 220 1 5 5 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +2.02104E7 6 2 75 95644 0 0 295 0 0 0 0 0 0 0 169 0.5 7 7 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +2.0214E7 6.2 1 69 96549 0 0 273 0 0 0 0 0 0 0 100 1.5 0 0 9900 2000 9 999999999 11 0 0 88 0.2 0 0 +2.02176E7 5 1 75 95624 0 0 268 0 0 0 0 0 0 0 260 1.5 0 0 8000 2000 9 999999999 10 0 0 88 0.2 0 0 +2.02212E7 4 0 75 95604 0 0 263 0 0 0 0 0 0 0 158 0 0 0 7000 2000 9 999999999 10 0 0 88 0.2 0 0 +2.02248E7 2.4 0.9 90 96360 0 0 269 0 0 0 0 0 0 0 20 2.1 3 3 6000 2000 9 999999999 10 0 0 88 0.2 0 0 +2.02284E7 2 0 87 95564 0 0 256 0 0 0 0 0 0 0 30 2.1 0 0 5000 2000 9 999999999 10 0 0 88 0.2 0 0 +2.0232E7 3 2 93 95584 0 0 261 0 0 0 0 0 0 0 30 1.5 0 0 6000 2000 9 999999999 12 0 0 88 0.2 0 0 +2.02356E7 1.5 0.6 94 96153 0 0 254 0 0 0 0 0 0 0 340 1.5 0 0 5000 2000 9 999999999 10 0 0 88 0.2 0 0 +2.02392E7 1 -1 86 95544 0 0 251 0 0 0 0 0 0 0 10 1.5 0 0 5000 2000 9 999999999 9 0 0 88 0.2 0 0 +2.02428E7 1 0 93 95544 0 0 263 0 0 0 0 0 0 0 227 1 3 3 4000 2000 9 999999999 10 0 0 88 0.2 0 0 +2.02464E7 0.9 0 94 96112 54 253 263 14 0 14 1344 0 1353 463 66 1 3 3 3000 2000 9 999999999 10 0 0 88 0.2 0 0 +2.025E7 4 2 87 95604 324 1336 265 159 335 78 17891 13238 8791 2825 139 0 0 0 5000 2000 9 999999999 12 0 0 88 0.2 0 0 +2.02536E7 7 3 76 95663 562 1336 278 354 576 112 41060 35222 13010 4726 151 0.5 0 0 6000 2000 9 999999999 13 0 0 88 0.2 0 0 +2.02572E7 9.6 3.5 66 96087 751 1336 306 487 584 159 56940 41222 18640 7119 227 0.5 5 5 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +2.02608E7 12 4 58 95759 879 1336 299 639 784 124 77864 51049 15151 6181 271 1 0 0 9000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.02644E7 14 4 51 95797 936 1336 321 687 739 170 82450 52112 20493 8293 42 1.5 3 3 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.0268E7 16.1 3.9 44 95954 919 1336 338 591 495 251 68581 39971 29282 11158 190 3.1 6 6 9900 7500 9 999999999 14 0 0 88 0.2 0 0 +2.02716E7 16 4 45 95834 829 1336 327 593 714 151 70531 49123 17989 7128 170 2.1 2 2 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.02752E7 16 4 45 95834 671 1336 327 450 613 142 52313 41556 16591 6191 180 2.1 2 2 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.02788E7 15.9 3.2 43 95931 458 1336 337 232 307 126 25959 18833 14229 4680 190 2.1 6 6 9900 7500 9 999999999 13 0 0 88 0.2 0 0 +2.02824E7 13 5 58 95778 203 1336 320 74 74 63 8118 1300 6922 1969 180 4.1 4 4 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.0286E7 12 5 62 95759 0 972 316 0 0 0 0 0 0 0 150 2.6 4 4 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.02896E7 10.4 5.5 72 95989 0 0 314 0 0 0 0 0 0 0 160 3.6 6 6 9900 7500 9 999999999 16 0 0 88 0.2 0 0 +2.02932E7 9 5 76 95702 0 0 311 0 0 0 0 0 0 0 150 3.6 7 7 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +2.02968E7 8 5 81 95683 0 0 312 0 0 0 0 0 0 0 160 3.6 8 8 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +2.03004E7 7.1 3.9 80 96095 0 0 293 0 0 0 0 0 0 0 150 3.1 4 4 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.0304E7 7 4 81 95663 0 0 306 0 0 0 0 0 0 0 150 3.6 8 8 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.03076E7 7 3 76 95663 0 0 300 0 0 0 0 0 0 0 160 3.6 7 7 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +2.03112E7 5.5 3.9 89 96214 0 0 287 0 0 0 0 0 0 0 160 3.6 4 4 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.03148E7 5 3 87 95624 0 0 303 0 0 0 0 0 0 0 160 2.6 9 9 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +2.03184E7 5 3 87 95624 0 0 303 0 0 0 0 0 0 0 150 2.6 9 9 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +2.0322E7 5.2 3.7 90 96274 0 0 290 0 0 0 0 0 0 0 140 2.1 6 6 9900 1200 9 999999999 14 0 0 88 0.2 0 0 +2.03256E7 5 4 93 95624 0 0 313 0 0 0 0 0 0 0 211 0.5 10 10 9900 450 9 999999999 14 0 0 88 0.2 0 0 +2.03292E7 5 4 93 95624 0 0 313 0 0 0 0 0 0 0 45 0.5 10 10 9900 420 9 999999999 14 0 0 88 0.2 0 0 +2.03328E7 5.5 4 90 96422 60 279 315 5 0 5 472 0 475 190 270 2.1 10 10 8000 510 9 999999999 14 0 0 88 0.2 0 0 +2.03364E7 6 5 93 95644 330 1337 318 51 0 51 5073 0 5111 2056 260 1.5 10 10 8000 480 9 999999999 16 0 0 88 0.2 0 0 +2.034E7 7 5 87 95663 568 1337 323 113 0 113 11382 0 11476 4783 334 1 10 10 8000 540 9 999999999 16 0 0 88 0.2 0 0 +2.03436E7 7.4 4.9 84 96582 758 1337 324 166 0 166 19371 15 19443 7404 210 2.1 10 10 8000 570 9 999999999 16 0 0 88 0.2 0 0 +2.03472E7 8 5 81 95683 885 1337 327 203 1 202 23796 69 23841 9306 190 3.1 10 10 8000 600 9 999999999 16 0 0 88 0.2 0 0 +2.03508E7 8 4 76 95683 942 1337 326 220 9 213 25910 670 25302 9990 160 2.1 10 10 8000 690 9 999999999 14 0 0 88 0.2 0 0 +2.03544E7 8.9 5.1 77 96517 925 1337 332 214 3 212 25201 233 25075 9857 130 2.1 10 10 8000 750 9 999999999 16 0 0 88 0.2 0 0 +2.0358E7 10 5 71 95721 834 1337 328 308 24 293 34818 2126 33313 11678 50 1.5 9 9 8000 900 9 999999999 16 0 0 88 0.2 0 0 +2.03616E7 10 5 71 95721 676 1337 328 234 21 224 26281 1684 25237 8575 246 1 9 9 8000 900 9 999999999 16 0 0 88 0.2 0 0 +2.03652E7 10.5 4.8 68 96378 462 1337 330 138 6 136 15413 383 15245 4938 30 1.5 9 9 8000 900 9 999999999 15 0 0 88 0.2 0 0 +2.03688E7 10 5 71 95721 207 1337 328 41 0 41 3965 0 3993 1465 300 2.1 9 9 7000 900 9 999999999 16 0 0 88 0.2 0 0 +2.03724E7 8 4 76 95683 0 988 300 0 0 0 0 0 0 0 250 2.6 5 5 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.0376E7 7 4 81 95663 0 0 291 0 0 0 0 0 0 0 27 0 3 3 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.03796E7 5 3 87 95624 0 0 270 0 0 0 0 0 0 0 50 1.5 0 0 6000 2000 9 999999999 13 0 0 88 0.2 0 0 +2.03832E7 5 3 87 95624 0 0 270 0 0 0 0 0 0 0 10 3.1 0 0 5000 2000 9 999999999 13 0 0 88 0.2 0 0 +2.03868E7 3.9 3 94 96418 0 0 266 0 0 0 0 0 0 0 196 1.5 0 0 4000 2000 9 999999999 13 0 0 88 0.2 0 0 +2.03904E7 4 3 93 95604 0 0 266 0 0 0 0 0 0 0 360 1.5 0 0 4000 2000 9 999999999 13 0 0 88 0.2 0 0 +2.0394E7 3 2 93 95584 0 0 261 0 0 0 0 0 0 0 23 1 0 0 4000 2000 9 999999999 12 0 0 88 0.2 0 0 +2.03976E7 1.2 0.1 92 96288 0 0 264 0 0 0 0 0 0 0 279 0.5 3 3 2000 2000 9 999999999 10 0 0 88 0.2 0 0 +2.04012E7 0 -1 92 95523 0 0 258 0 0 0 0 0 0 0 20 0.5 3 3 1100 2000 0 999999999 9 0 0 88 0.2 0 0 +2.04048E7 0 -1 92 95523 0 0 258 0 0 0 0 0 0 0 340 1 3 3 600 2000 0 999999999 9 0 0 88 0.2 0 0 +2.04084E7 -1.2 -1.5 98 96059 0 0 253 0 0 0 0 0 0 0 86 0 3 3 600 2000 0 999999999 8 0 0 88 0.28 0 0 +2.0412E7 -1 -2 92 95503 0 0 254 0 0 0 0 0 0 0 106 0.5 3 3 2000 2000 0 999999999 8 0 0 88 0.267 0 0 +2.04156E7 -1 -1 100 95503 0 0 254 0 0 0 0 0 0 0 149 0.5 3 3 200 2000 0 999999999 9 0 0 88 0.267 0 0 +2.04192E7 1.2 0.3 94 96033 65 306 264 17 0 17 1631 0 1641 554 45 1 3 3 200 2000 0 999999999 10 0 0 88 0.2 0 0 +2.04228E7 0 0 100 95523 336 1337 259 167 286 95 18500 13402 10560 3278 260 1.5 3 3 200 2000 0 999999999 10 0 0 88 0.2 0 0 +2.04264E7 4 4 100 95604 575 1337 279 360 563 118 41617 35027 13711 4980 280 1.5 3 3 400 2000 0 999999999 14 0 0 88 0.2 0 0 +2.043E7 10 4.9 71 96009 764 1337 292 533 745 108 64372 46493 13071 5199 20 1.5 0 0 4000 2000 0 999999999 15 0 0 88 0.2 0 0 +2.04336E7 13 7 67 95778 891 1337 307 648 818 103 80022 49949 12817 5288 280 1.5 0 0 6000 2000 0 999999999 19 0 0 88 0.2 0 0 +2.04372E7 16 2 39 95834 948 1337 314 706 757 169 84866 53770 20439 8294 230 1 0 0 6000 2000 0 999999999 11 0 0 88 0.2 0 0 +2.04408E7 18.9 3.5 36 95787 930 1337 329 688 756 162 82693 52755 19613 7955 160 1.5 0 0 6000 2000 0 999999999 13 0 0 88 0.2 0 0 +2.04444E7 20 6 40 95906 839 1337 336 601 777 114 73129 48933 13944 5657 170 4.1 0 0 8000 2000 0 999999999 17 0 0 88 0.2 0 0 +2.0448E7 19 6 43 95888 681 1337 332 457 661 121 53904 41953 14359 5487 160 4.6 0 0 8000 2000 0 999999999 17 0 0 88 0.2 0 0 +2.04516E7 18.4 7.2 48 95806 467 1337 331 270 470 106 30739 25874 12149 4180 170 5.1 0 0 8000 2000 0 999999999 19 0 0 88 0.2 0 0 +2.04552E7 16 7 55 95834 210 1337 333 79 119 61 8694 1940 6659 1950 160 5.1 3 3 9900 2000 0 999999999 19 0 0 88 0.2 0 0 +2.04588E7 13 7 67 95778 0 1003 325 0 0 0 0 0 0 0 130 3.6 5 5 9900 2000 0 999999999 19 0 0 88 0.2 0 0 +2.04624E7 10.4 6.6 77 96130 0 0 295 0 0 0 0 0 0 0 160 4.1 0 0 9900 2000 9 999999999 18 0 0 88 0.2 0 0 +2.0466E7 9 6 81 95702 0 0 317 0 0 0 0 0 0 0 160 3.6 8 8 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.04696E7 8 5 81 95683 0 0 312 0 0 0 0 0 0 0 160 3.6 8 8 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +2.04732E7 7.2 4.5 83 96229 0 0 280 0 0 0 0 0 0 0 160 2.6 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.04768E7 7 4 81 95663 0 0 306 0 0 0 0 0 0 0 140 2.1 8 8 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.04804E7 6 4 87 95644 0 0 308 0 0 0 0 0 0 0 140 2.1 9 9 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.0484E7 4.6 3.1 90 96244 0 0 268 0 0 0 0 0 0 0 220 1 0 0 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +2.04876E7 3 2 93 95584 0 0 273 0 0 0 0 0 0 0 121 1 3 3 4000 2000 9 999999999 12 0 0 88 0.2 0 0 +2.04912E7 2 2 100 95564 0 0 297 0 0 0 0 0 0 0 40 2.6 10 10 300 90 0 999999999 12 0 0 88 0.2 0 0 +2.04948E7 1.5 0.9 96 96105 0 0 294 0 0 0 0 0 0 0 280 1 10 10 400 60 0 999999999 10 0 0 88 0.2 0 0 +2.04984E7 1 0 93 95544 0 0 291 0 0 0 0 0 0 0 163 1 10 10 400 90 0 999999999 10 0 0 88 0.2 0 0 +2.0502E7 0 0 100 95523 0 0 287 0 0 0 0 0 0 0 126 1 10 10 400 30 0 999999999 10 0 0 88 0.2 0 0 +2.05056E7 1 0.8 99 96133 71 333 268 17 0 17 1668 0 1679 574 253 0.5 5 5 400 2000 0 999999999 10 0 0 88 0.2 0 0 +2.05092E7 4 4 100 95604 343 1338 267 172 354 82 19354 14721 9207 2987 330 1.5 0 0 800 2000 0 999999999 14 0 0 88 0.2 0 0 +2.05128E7 9 6 81 95702 581 1338 289 368 594 111 42872 35688 12926 4754 20 1.5 0 0 5000 2000 0 999999999 17 0 0 88 0.2 0 0 +2.05164E7 11.4 7 74 96131 771 1338 300 537 748 107 64896 45844 12927 5160 350 1.5 0 0 6000 2000 0 999999999 19 0 0 88 0.2 0 0 +2.052E7 14 7 63 95797 898 1338 311 653 820 104 80743 50129 12902 5329 260 1.5 0 0 6000 2000 0 999999999 19 0 0 88 0.2 0 0 +2.05236E7 17 7 52 95852 954 1338 324 706 758 165 84931 51886 19984 8150 293 1 0 0 6000 2000 0 999999999 19 0 0 88 0.2 0 0 +2.05272E7 18.6 5.9 43 95924 936 1338 330 690 757 161 83028 51920 19481 7924 190 1 0 0 8000 2000 0 999999999 17 0 0 88 0.2 0 0 +2.05308E7 20 3 32 95906 844 1338 333 608 815 95 75199 50169 11749 4802 170 3.1 0 0 8000 2000 0 999999999 13 0 0 88 0.2 0 0 +2.05344E7 20 3 32 95906 686 1338 333 464 652 130 54453 43133 15277 5804 190 3.6 0 0 9900 2000 0 999999999 13 0 0 88 0.2 0 0 +2.0538E7 19.6 8.5 49 95866 471 1338 337 273 469 108 31005 25756 12299 4237 170 2.6 0 0 9900 2000 0 999999999 22 0 0 88 0.2 0 0 +2.05416E7 17 7 52 95852 214 1338 338 82 125 62 8968 2181 6795 1991 210 4.1 3 3 9900 2000 0 999999999 19 0 0 88 0.2 0 0 +2.05452E7 14 8 67 95797 0 1019 330 0 0 0 0 0 0 0 150 2.1 5 5 9900 2000 0 999999999 21 0 0 88 0.2 0 0 +2.05488E7 12.3 8 75 95930 0 0 305 0 0 0 0 0 0 0 150 3.1 0 0 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.05524E7 11 8 82 95740 0 0 329 0 0 0 0 0 0 0 160 4.1 8 8 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.0556E7 9 7 87 95702 0 0 325 0 0 0 0 0 0 0 160 4.1 9 9 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.05596E7 9 7 87 95702 0 0 325 0 0 0 0 0 0 0 150 5.1 9 9 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.05632E7 8 6 87 95683 0 0 319 0 0 0 0 0 0 0 150 4.1 9 9 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.05668E7 7 6 93 95663 0 0 324 0 0 0 0 0 0 0 150 3.1 10 10 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.05704E7 6 5 93 96111 0 0 276 0 0 0 0 0 0 0 290 1 0 0 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +2.0574E7 5 4 93 95624 0 0 287 0 0 0 0 0 0 0 220 1 5 5 6000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.05776E7 6 5 93 95644 0 0 309 0 0 0 0 0 0 0 310 1.5 9 9 6000 300 9 999999999 16 0 0 88 0.2 0 0 +2.05812E7 6.8 6 95 96070 0 0 314 0 0 0 0 0 0 0 30 1.5 9 9 5000 210 9 999999999 17 0 0 88 0.2 0 0 +2.05848E7 7 6 93 95663 0 0 324 0 0 0 0 0 0 0 280 1 10 10 5000 210 9 999999999 17 0 0 88 0.2 0 0 +2.05884E7 7 6 93 95663 0 0 315 0 0 0 0 0 0 0 350 1.5 9 9 5000 150 9 999999999 17 0 0 88 0.2 0 0 +2.0592E7 7.5 6.6 94 96301 77 360 327 6 0 6 606 0 610 245 40 2.1 10 10 4000 150 9 999999999 18 0 0 88 0.2 0 0 +2.05956E7 8 7 93 95683 349 1338 330 55 0 55 5480 0 5522 2229 137 1 10 10 3000 120 9 999999999 19 0 0 88 0.2 0 0 +2.05992E7 8 7 93 95683 588 1338 330 118 0 118 11867 0 11966 5011 310 2.6 10 10 3000 150 9 999999999 19 0 0 88 0.2 0 0 +2.06028E7 11.3 7.8 79 96384 777 1338 337 280 23 267 31495 1921 30183 10489 330 2.1 9 9 5000 1800 9 999999999 21 0 0 88 0.2 0 0 +2.06064E7 14 6 59 95797 904 1338 348 341 66 296 38910 5693 34010 12383 36 1 9 9 8000 1800 9 999999999 17 0 0 88 0.2 0 0 +2.061E7 17 8 55 95852 960 1338 365 367 67 319 41937 5741 36700 13474 200 4.6 9 9 8000 1800 9 999999999 21 0 0 88 0.2 0 0 +2.06136E7 14.5 9.8 73 96331 942 1338 355 357 65 311 40730 5543 35696 13096 170 5.7 9 9 8000 1800 0 919999999 25 0 0 88 0.2 0 0 +2.06172E7 14 11 82 95797 850 1338 353 312 32 292 35299 2698 33204 11794 140 6.7 9 9 8000 1800 0 919999999 28 0 0 88 0.2 0 0 +2.06208E7 13 11 88 95778 691 1338 349 238 28 224 26722 2158 25255 8693 150 6.2 9 9 8000 1500 0 919999999 28 0 0 88 0.2 0 0 +2.06244E7 12.4 10.5 88 96367 475 1338 345 142 6 140 15807 370 15639 5101 160 6.2 9 9 8000 1200 0 919999999 27 0 0 88 0.2 0 0 +2.0628E7 11 9 87 95740 218 1338 337 44 0 44 4257 0 4288 1574 160 7.2 9 9 8000 1050 0 919999999 23 0 0 88 0.2 0 0 +2.06316E7 10 8 87 95721 0 1035 331 0 0 0 0 0 0 0 160 5.7 9 9 8000 900 0 919999999 21 0 0 88 0.2 0 0 +2.06352E7 10.6 7.8 83 96427 0 0 333 0 0 0 0 0 0 0 150 4.6 9 9 8000 750 9 999999999 21 0 0 88 0.2 2 0 +2.06388E7 11 8 82 95740 0 0 336 0 0 0 0 0 0 0 160 3.1 9 9 8000 750 0 919999999 21 0 0 88 0.2 0 0 +2.06424E7 10 9 93 95721 0 0 341 0 0 0 0 0 0 0 150 2.6 10 10 8000 750 0 919999999 23 0 0 88 0.2 0 0 +2.0646E7 9.9 9.3 96 96489 0 0 341 0 0 0 0 0 0 0 130 2.6 10 10 8000 750 0 919999999 24 0 0 88 0.2 0 0 +2.06496E7 10 9 93 95721 0 0 341 0 0 0 0 0 0 0 230 1 10 10 8000 750 0 919999999 23 0 0 88 0.2 0 0 +2.06532E7 10 9 93 95721 0 0 341 0 0 0 0 0 0 0 270 1.5 10 10 8000 750 0 919999999 23 0 0 88 0.2 0 0 +2.06568E7 9.7 9 95 96372 0 0 331 0 0 0 0 0 0 0 43 1 9 9 8000 750 0 919999999 23 0 0 88 0.2 0 0 +2.06604E7 10 9 93 95721 0 0 341 0 0 0 0 0 0 0 170 2.1 10 10 8000 750 0 919999999 23 0 0 88 0.2 0 0 +2.0664E7 10 9 93 95721 0 0 332 0 0 0 0 0 0 0 170 2.6 9 9 8000 750 0 919999999 23 0 0 88 0.2 0 0 +2.06676E7 9.6 8.8 95 96342 0 0 330 0 0 0 0 0 0 0 160 2.1 9 9 8000 750 0 919999999 23 0 0 88 0.2 0 0 +2.06712E7 10 9 93 95721 0 0 332 0 0 0 0 0 0 0 120 2.1 9 9 6000 750 0 919999999 23 0 0 88 0.2 0 0 +2.06748E7 10 9 93 95721 0 0 332 0 0 0 0 0 0 0 200 2.1 9 9 5000 600 0 919999999 23 0 0 88 0.2 0 0 +2.06784E7 9.6 8.7 94 96408 83 388 330 11 0 11 1065 0 1072 410 140 2.1 9 9 6000 600 0 919999999 23 0 0 88 0.2 0 0 +2.0682E7 10 9 93 95721 355 1339 332 93 11 90 10376 463 10093 3253 170 2.1 9 9 6000 750 0 919999999 23 0 0 88 0.2 0 0 +2.06856E7 10 8 87 95721 594 1339 312 352 399 175 39537 28637 19751 6738 160 3.1 5 5 6000 2000 0 919999999 21 0 0 88 0.2 0 0 +2.06892E7 11.2 6.6 73 96524 784 1339 316 511 594 164 59852 41484 19252 7430 140 4.1 5 5 6000 2000 0 919999999 18 0 0 88 0.2 0 0 +2.06928E7 13 7 67 95778 911 1339 325 619 550 245 71729 43395 28578 10906 120 4.1 5 5 6000 2000 0 919999999 19 0 0 88 0.2 0 0 +2.06964E7 13 6 62 95778 967 1339 343 370 58 329 42353 5113 37805 13787 110 4.1 9 9 6000 2100 0 919999999 17 0 0 88 0.2 0 0 +2.07E7 13.2 6.4 63 96590 948 1339 328 611 477 274 70646 39058 31858 12062 190 5.1 6 6 6000 1500 0 919999999 18 0 0 88 0.2 0 0 +2.07036E7 13 5 58 95778 855 1339 323 573 628 172 67740 44736 20452 8060 190 2.6 5 5 6000 2000 0 919999999 15 0 0 88 0.2 0 0 +2.07072E7 14 5 55 95797 695 1339 327 437 464 197 49759 35478 22495 8014 33 0.5 5 5 6000 2000 0 919999999 15 0 0 88 0.2 0 0 +2.07108E7 13.8 -1.8 33 96639 479 1339 337 147 15 141 16389 1015 15852 5154 330 3.6 9 9 6000 4200 0 919999999 8 0 0 88 0.2 0 0 +2.07144E7 12 3 54 95759 221 1339 316 81 173 53 9060 2680 5889 1816 220 1.5 5 5 6000 2000 0 919999999 13 0 0 88 0.2 0 0 +2.0718E7 12 0 44 95759 0 1051 331 0 0 0 0 0 0 0 340 3.6 9 9 6000 3300 0 919999999 9 0 0 88 0.2 0 0 +2.07216E7 10.6 -1.5 42 96682 0 0 323 0 0 0 0 0 0 0 360 7.2 9 9 6000 3000 9 999999999 8 0 0 88 0.2 0 0 +2.07252E7 11 -2 39 95740 0 0 324 0 0 0 0 0 0 0 10 7.2 9 9 6000 2700 9 999999999 8 0 0 88 0.2 0 0 +2.07288E7 10 0 50 95721 0 0 322 0 0 0 0 0 0 0 350 5.1 9 9 6000 2700 9 999999999 9 0 0 88 0.2 0 0 +2.07324E7 8.9 2.5 64 97074 0 0 329 0 0 0 0 0 0 0 230 5.1 10 10 6000 1800 0 919999999 12 0 0 88 0.2 0 0 +2.0736E7 8 5 81 95683 0 0 327 0 0 0 0 0 0 0 150 4.1 10 10 6000 1500 0 919999999 16 0 0 88 0.2 1.5 0 +2.07396E7 8 4 76 95683 0 0 326 0 0 0 0 0 0 0 45 1 10 10 6000 1500 0 919999999 14 0 0 88 0.2 0 0 +2.07432E7 6.9 5.1 88 97167 0 0 322 0 0 0 0 0 0 0 340 3.1 10 10 6000 1500 0 919999999 16 0 0 88 0.2 0 0 +2.07468E7 7 5 87 95663 0 0 314 0 0 0 0 0 0 0 234 0 9 9 6000 1500 0 919999999 16 0 0 88 0.2 0 0 +2.07504E7 6 5 93 95644 0 0 292 0 0 0 0 0 0 0 40 4.1 5 5 6000 2000 0 919999999 16 0 0 88 0.2 0 0 +2.0754E7 5.1 3.2 88 97169 0 0 282 0 0 0 0 0 0 0 60 3.1 3 3 6000 2000 0 919999999 13 0 0 88 0.2 0 0 +2.07576E7 4 3 93 95604 0 0 278 0 0 0 0 0 0 0 260 1 3 3 6000 2000 0 919999999 13 0 0 88 0.2 0 0 +2.07612E7 4 3 93 95604 0 0 307 0 0 0 0 0 0 0 270 1.5 10 10 9900 2000 0 919999999 13 0 0 88 0.2 0 0 +2.07648E7 3.3 2.5 94 97189 89 416 263 23 4 23 2562 0 2542 743 320 1.5 0 0 9900 2000 0 919999999 12 0 0 88 0.2 0 0 +2.07684E7 8 4 76 95683 362 1340 306 153 154 111 16841 8072 12320 3766 16 0 7 7 9900 2000 0 919999999 14 0 0 88 0.2 0 0 +2.0772E7 9 4 71 95702 601 1340 307 342 399 163 38724 28417 18574 6467 210 1.5 6 6 9900 2000 0 919999999 14 0 0 88 0.2 0 0 +2.07756E7 10.7 4.4 65 97204 790 1340 294 557 702 143 66050 47592 17011 6678 245 0 0 0 9900 2000 0 919999999 15 0 0 88 0.2 0 0 +2.07792E7 12 3 54 95759 917 1340 311 666 816 108 82421 51693 13424 5551 358 1 3 3 9900 2000 0 919999999 13 0 0 88 0.2 0 0 +2.07828E7 14 3 47 95797 973 1340 317 725 803 142 88583 53983 17468 7214 227 1 2 2 9900 2000 0 919999999 13 0 0 88 0.2 0 0 +2.07864E7 14.4 3.6 48 96840 953 1340 325 684 730 166 82445 51048 20066 8167 160 1.5 4 4 9900 2000 0 919999999 14 0 0 88 0.2 0 0 +2.079E7 16 3 42 95834 860 1340 321 622 777 124 75558 50888 15101 6126 220 2.6 1 1 9900 2000 0 919999999 13 0 0 88 0.2 0 0 +2.07936E7 16 3 42 95834 700 1340 321 476 577 175 54714 42437 20167 7382 220 3.1 1 1 9900 2000 0 919999999 13 0 0 88 0.2 0 0 +2.07972E7 15.5 4.7 49 96699 483 1340 353 147 50 129 16527 3082 14576 4878 210 4.6 9 9 9900 7500 0 919999999 15 0 0 88 0.2 0 0 +2.08008E7 14 7 63 95797 225 1340 349 46 0 46 4493 0 4525 1655 220 4.1 9 9 9900 7500 0 919999999 19 0 0 88 0.2 0 0 +2.08044E7 13 6 62 95778 0 1066 343 0 0 0 0 0 0 0 220 3.1 9 9 9900 3900 0 919999999 17 0 0 88 0.2 0 0 +2.0808E7 12.3 7.4 72 96715 0 0 341 0 0 0 0 0 0 0 160 2.1 9 9 9900 3900 9 999999999 20 0 0 88 0.2 0 0 +2.08116E7 12 6 67 95759 0 0 338 0 0 0 0 0 0 0 160 1.5 9 9 9900 3900 9 999999999 17 0 0 88 0.2 0 0 +2.08152E7 10 7 82 95721 0 0 330 0 0 0 0 0 0 0 340 1.5 9 9 9900 3900 9 999999999 19 0 0 88 0.2 0 0 +2.08188E7 10.3 6.7 78 96658 0 0 331 0 0 0 0 0 0 0 220 1.5 9 9 9900 3900 9 999999999 19 0 0 88 0.2 0 0 +2.08224E7 10 7 82 95721 0 0 330 0 0 0 0 0 0 0 350 1.5 9 9 9900 3900 9 999999999 19 0 0 88 0.2 0 0 +2.0826E7 10 6 76 95721 0 0 329 0 0 0 0 0 0 0 280 1 9 9 9900 3900 9 999999999 17 0 0 88 0.2 0 0 +2.08296E7 7.5 5.6 88 96565 0 0 310 0 0 0 0 0 0 0 271 1 8 8 9900 3900 9 999999999 17 0 0 88 0.2 0 0 +2.08332E7 8 6 87 95683 0 0 319 0 0 0 0 0 0 0 320 1.5 9 9 9900 3900 9 999999999 17 0 0 88 0.2 0 0 +2.08368E7 6 5 93 95644 0 0 292 0 0 0 0 0 0 0 40 2.6 5 5 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +2.08404E7 7.3 4.7 84 96467 0 0 293 0 0 0 0 0 0 0 30 1.5 3 3 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +2.0844E7 5 4 93 95624 0 0 283 0 0 0 0 0 0 0 284 0.5 3 3 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.08476E7 6 4 87 95644 0 0 291 0 0 0 0 0 0 0 180 1.5 5 5 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.08512E7 4.7 3.7 93 96585 95 444 281 24 5 24 2700 0 2669 783 209 0 3 3 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.08548E7 7 6 93 95663 368 1340 315 98 16 94 11006 763 10543 3405 350 2.6 9 9 8000 4500 9 999999999 17 0 0 88 0.2 0 0 +2.08584E7 10 6 76 95721 607 1340 310 364 162 290 39323 15340 31562 8857 350 3.1 5 5 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.0862E7 12.9 6.8 66 96452 797 1340 343 289 73 246 32902 5975 28106 10114 40 2.6 9 9 8000 7500 9 999999999 19 0 0 88 0.2 0 0 +2.08656E7 16 5 48 95834 923 1340 317 679 670 218 79647 51016 25696 10048 30 1.5 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +2.08692E7 18 4 39 95870 979 1340 331 731 813 138 89620 53912 17015 7048 317 1 1 1 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.08728E7 19.2 4.8 39 96237 959 1340 349 688 734 164 83051 50792 19821 8090 160 1.5 4 4 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.08764E7 21 4 33 95924 866 1340 339 627 781 122 76178 50721 14931 6071 230 3.1 0 0 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.088E7 22 2 27 95942 705 1340 341 481 581 176 55355 43046 20318 7444 190 1.5 0 0 9900 2000 9 999999999 11 0 0 88 0.2 0 0 +2.08836E7 20.5 6.9 41 96100 487 1340 381 148 49 130 16660 3044 14701 4930 170 3.6 9 9 9900 4500 9 999999999 18 0 0 88 0.2 0 0 +2.08872E7 19 9 52 95888 228 1340 355 85 178 54 9429 2624 6069 1882 160 3.1 5 5 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.08908E7 17 8 55 95852 0 1082 344 0 0 0 0 0 0 0 170 3.1 5 5 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.08944E7 15.5 7.7 60 96094 0 0 337 0 0 0 0 0 0 0 240 1 5 5 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.0898E7 14 6 59 95797 0 0 326 0 0 0 0 0 0 0 150 1.5 4 4 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.09016E7 10 6 76 95721 0 0 317 0 0 0 0 0 0 0 320 2.1 7 7 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.09052E7 10.6 4.6 66 96163 0 0 294 0 0 0 0 0 0 0 141 1 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.09088E7 11 5 66 95740 0 0 314 0 0 0 0 0 0 0 20 2.6 5 5 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.09124E7 10 5 71 95721 0 0 312 0 0 0 0 0 0 0 350 1.5 6 6 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +2.0916E7 7.5 4.3 80 96093 0 0 281 0 0 0 0 0 0 0 30 1 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.09196E7 6 4 87 95644 0 0 275 0 0 0 0 0 0 0 220 0 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.09232E7 6 4 87 95644 0 0 275 0 0 0 0 0 0 0 20 2.1 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.09268E7 5.2 3.5 89 95972 0 0 271 0 0 0 0 0 0 0 30 1.5 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +2.09304E7 5 3 87 95624 0 0 270 0 0 0 0 0 0 0 169 0.5 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +2.0934E7 5 3 87 95624 0 0 270 0 0 0 0 0 0 0 212 1 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +2.09376E7 4.9 3.2 89 96004 101 472 270 26 9 25 2901 0 2835 832 70 1.5 0 0 6000 2000 9 999999999 13 0 0 88 0.2 0 0 +2.09412E7 10 5 71 95721 375 1341 312 173 269 98 19332 13105 10986 3535 50 1.5 6 6 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +2.09448E7 12 7 71 95759 614 1341 323 350 398 168 39625 28212 19124 6682 320 1.5 6 6 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.09484E7 15.6 6.6 55 95916 803 1341 334 548 654 156 64621 44923 18510 7238 309 1 4 4 9900 2000 9 999999999 18 0 0 88 0.2 0 0 +2.0952E7 19 8 49 95888 930 1341 345 678 797 126 82959 50502 15512 6402 236 0 2 2 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.09556E7 22 5 33 95942 985 1341 345 736 750 186 88234 53529 22357 9075 187 1 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.09592E7 23.6 3.1 26 95681 965 1341 384 483 225 322 55402 19923 37108 13580 180 2.1 8 8 9900 7500 9 999999999 13 0 0 88 0.2 0 0 +2.09628E7 24 6 31 95977 871 1341 355 629 717 164 74826 49865 19563 7794 170 4.6 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.09664E7 24 8 36 95977 710 1341 358 480 633 146 56021 42200 17083 6475 200 3.6 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.097E7 22.2 10.3 47 95571 492 1341 386 194 121 150 21543 7784 16694 5426 190 4.1 8 8 9900 7500 9 999999999 26 0 0 88 0.2 0 0 +2.09736E7 21 10 49 95924 232 1341 357 92 143 68 10121 3021 7446 2191 210 5.7 2 2 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +2.09772E7 15.4 8.4 63 95801 0 1098 345 0 0 0 0 0 0 0 182 3 3 3 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.09808E7 13.7 7.9 68 95810 0 0 344 0 0 0 0 0 0 0 147 1.9 5 5 9900 2000 9 999999999 22 0 0 88 0.2 0 0 +2.09844E7 12 7.3 73 95801 0 0 335 0 0 0 0 0 0 0 154 1.4 5 5 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.0988E7 10.5 7.6 82 95773 0 0 328 0 0 0 0 0 0 0 157 1.1 7 7 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.09916E7 9.5 7.4 86 95866 0 0 317 0 0 0 0 0 0 0 188 1 5 5 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.09952E7 8.2 7.1 92 95800 0 0 293 0 0 0 0 0 0 0 224 1 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.09988E7 7.2 7.1 99 95780 0 0 292 0 0 0 0 0 0 0 234 0.8 0 0 7000 2000 0 999999999 23 0 0 88 0.2 0 0 +2.10024E7 6.6 6.3 98 95874 0 0 286 0 0 0 0 0 0 0 199 0.4 0 0 6000 2000 0 999999999 19 0 0 88 0.2 0 0 +2.1006E7 5.8 5.8 100 95747 0 0 293 0 0 0 0 0 0 0 136 0.6 5 5 2000 2000 0 999999999 17 0 0 88 0.2 0 0 +2.10096E7 5.3 5.3 100 95737 0 0 310 0 0 0 0 0 0 0 172 0.2 9 9 250 90 0 999999999 17 0 0 88 0.2 0 0 +2.10132E7 4.9 4.9 100 95863 0 0 311 0 0 0 0 0 0 0 192 0.2 9 9 200 90 0 999999999 17 0 0 88 0.2 0 0 +2.10168E7 5.6 5.6 100 95769 0 0 305 0 0 0 0 0 0 0 232 0.2 9 9 400 90 0 999999999 16 0 0 88 0.2 0 0 +2.10204E7 4 4 100 95604 0 0 279 0 0 0 0 0 0 0 327 0 3 3 1000 2000 0 999999999 14 0 0 88 0.2 0 0 +2.1024E7 4.4 4.3 99 96145 108 501 269 28 17 26 3081 0 2940 868 283 0 0 0 1200 2000 0 999999999 15 0 0 88 0.2 0 0 +2.10276E7 9 9 100 95702 381 1342 292 199 401 85 22525 17447 9684 3233 240 0 0 0 3000 2000 0 999999999 23 0 0 88 0.2 0 0 +2.10312E7 13 10 82 95778 621 1342 310 399 619 113 46673 36686 13277 4975 102 0.5 0 0 3000 2000 0 999999999 25 0 0 88 0.2 0 0 +2.10348E7 16.8 8.8 59 96288 810 1342 325 570 764 110 69171 46555 13335 5379 160 1.5 0 0 5000 2000 0 999999999 23 0 0 88 0.2 0 0 +2.10384E7 20 9 49 95906 937 1342 340 686 827 110 84850 50244 13602 5654 170 2.6 0 0 5000 2000 0 999999999 23 0 0 88 0.2 0 0 +2.1042E7 20 9 49 95906 991 1342 340 737 763 173 88743 51880 20960 8586 170 4.6 0 0 8000 2000 0 999999999 23 0 0 88 0.2 0 0 +2.10456E7 20.6 9.8 50 96244 971 1342 344 717 834 114 88803 50643 14165 5918 180 5.1 0 0 8000 2000 0 999999999 25 0 0 88 0.2 0 0 +2.10492E7 21 7 40 95924 876 1342 349 633 790 117 77231 49712 14347 5867 160 5.7 1 1 9900 2000 0 999999999 19 0 0 88 0.2 0 0 +2.10528E7 19 8 49 95888 714 1342 345 482 673 124 56996 42558 14764 5707 170 6.7 2 2 9900 2000 0 999999999 21 0 0 88 0.2 0 0 +2.10564E7 17.7 8.8 56 96238 496 1342 329 293 488 112 33329 27666 12849 4473 160 6.2 0 0 9900 2000 0 999999999 22 0 0 88 0.2 0 0 +2.106E7 16 9 63 95834 236 1342 341 91 130 68 9936 2881 7467 2209 170 5.1 5 5 9900 2000 0 999999999 23 0 0 88 0.2 0 0 +2.10636E7 14 9 72 95797 0 1114 334 0 0 0 0 0 0 0 150 5.1 6 6 9900 2000 0 999999999 23 0 0 88 0.2 0 0 +2.10672E7 12.5 9.5 82 96359 0 0 307 0 0 0 0 0 0 0 140 2.6 0 0 9900 2000 9 999999999 24 0 0 88 0.2 0 0 +2.10708E7 12 9 82 95759 0 0 334 0 0 0 0 0 0 0 160 2.6 8 8 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.10744E7 11 10 94 95740 0 0 301 0 0 0 0 0 0 0 160 2.1 0 0 8000 2000 9 999999999 26 0 0 88 0.2 0 0 +2.1078E7 9 8.6 97 96415 0 0 291 0 0 0 0 0 0 0 280 1 0 0 6000 2000 9 999999999 22 0 0 88 0.2 0 0 +2.10816E7 8 8 100 95683 0 0 299 0 0 0 0 0 0 0 52 0 3 3 6000 2000 0 999999999 21 0 0 88 0.2 0 0 +2.10852E7 6 6 100 95644 0 0 289 0 0 0 0 0 0 0 30 0.5 3 3 400 2000 0 999999999 17 0 0 88 0.2 0 0 +2.10888E7 6.2 6.1 99 96379 0 0 294 0 0 0 0 0 0 0 195 0 5 5 300 2000 0 999999999 18 0 0 88 0.2 0 0 +2.10924E7 6 6 100 95644 0 0 293 0 0 0 0 0 0 0 234 0 5 5 200 2000 0 999999999 17 0 0 88 0.2 0 0 +2.1096E7 5 5 100 95624 0 0 272 0 0 0 0 0 0 0 307 0.5 0 0 200 2000 0 999999999 16 0 0 88 0.2 0 0 +2.10996E7 4.7 4.7 100 96330 0 0 303 0 0 0 0 0 0 0 10 1 9 9 300 7500 0 999999999 15 0 0 88 0.2 0 0 +2.11032E7 4 4 100 95604 0 0 283 0 0 0 0 0 0 0 348 0 5 5 400 2000 0 999999999 14 0 0 88 0.2 0 0 +2.11068E7 4 4 100 95604 0 0 267 0 0 0 0 0 0 0 91 0 0 0 0 2000 0 999999999 14 0 0 88 0.2 0 0 +2.11104E7 4.9 4.9 100 96382 114 530 283 29 13 28 3206 0 3092 916 360 0.5 3 3 900 2000 0 999999999 16 0 0 88 0.2 0 0 +2.1114E7 7 7 100 95663 388 1342 294 202 395 88 22850 18086 9987 3331 193 0 3 3 2000 2000 0 999999999 19 0 0 88 0.2 0 0 +2.11176E7 12 11 94 95759 627 1342 320 399 599 119 46470 35850 13959 5218 214 0 3 3 3500 2000 0 999999999 28 0 0 88 0.2 0 0 +2.11212E7 13.9 9.8 76 96291 817 1342 332 535 638 148 63477 41912 17595 6963 39 0 5 5 3000 2000 0 999999999 25 0 0 88 0.2 0 0 +2.11248E7 18 9 56 95870 943 1342 350 644 646 191 76422 45604 22732 9116 50 0 5 5 4000 2000 0 999999999 23 0 0 88 0.2 0 0 +2.11284E7 20 10 53 95906 998 1342 356 731 794 142 89464 50595 17465 7261 190 2.1 3 3 5000 2000 0 999999999 25 0 0 88 0.2 0 0 +2.1132E7 20.9 8.2 44 96060 977 1342 358 715 813 124 88097 50994 15332 6388 180 2.6 3 3 5000 2000 0 999999999 21 0 0 88 0.2 0 0 +2.11356E7 22 11 50 95942 882 1342 367 625 761 126 75786 47036 15365 6278 150 3.1 3 3 5000 2000 0 999999999 28 0 0 88 0.2 0 0 +2.11392E7 22 11 50 95942 719 1342 367 480 662 126 56612 40853 14880 5766 160 3.6 3 3 6000 2000 0 999999999 28 0 0 88 0.2 0 0 +2.11428E7 21.9 10.4 48 96021 500 1342 371 275 341 148 30585 21797 16533 5435 170 4.6 5 5 6000 2000 0 999999999 26 0 0 88 0.2 0 0 +2.11464E7 20 10 53 95906 239 1342 383 50 0 50 4907 0 4943 1807 180 3.6 9 9 6000 2000 0 999999999 25 0 0 88 0.2 0 0 +2.115E7 19 10 56 95888 0 1129 378 0 0 0 0 0 0 0 170 1.5 9 9 6000 2000 0 999999999 25 0 0 88 0.2 0 0 +2.11536E7 17.5 9.9 61 96065 0 0 370 0 0 0 0 0 0 0 120 2.1 9 9 6000 7500 9 999999999 25 0 0 88 0.2 0 0 +2.11572E7 17 10 63 95852 0 0 367 0 0 0 0 0 0 0 353 0.5 9 9 5000 7500 9 999999999 25 0 0 88 0.2 0 0 +2.11608E7 15 10 72 95815 0 0 357 0 0 0 0 0 0 0 330 1.5 9 9 5000 7500 9 999999999 25 0 0 88 0.2 0 0 +2.11644E7 14 10 77 95797 0 0 352 0 0 0 0 0 0 0 40 2.1 9 9 5000 7500 9 999999999 25 0 0 88 0.2 0 0 +2.1168E7 14 10 77 95797 0 0 352 0 0 0 0 0 0 0 162 1 9 9 5000 7500 9 999999999 25 0 0 88 0.2 0 0 +2.11716E7 12 10 88 95759 0 0 343 0 0 0 0 0 0 0 240 0.5 9 9 5000 7500 9 999999999 26 0 0 88 0.2 0 0 +2.11752E7 12 9 82 95759 0 0 341 0 0 0 0 0 0 0 40 1.5 9 9 5000 7500 9 999999999 23 0 0 88 0.2 0 0 +2.11788E7 11 9 87 95740 0 0 337 0 0 0 0 0 0 0 50 0.5 9 9 5000 7500 9 999999999 23 0 0 88 0.2 0 0 +2.11824E7 12 10 88 95759 0 0 343 0 0 0 0 0 0 0 83 0.5 9 9 5000 7500 9 999999999 26 0 0 88 0.2 0 0 +2.1186E7 10.3 8.9 91 95779 0 0 333 0 0 0 0 0 0 0 220 0.5 9 9 3000 7500 9 999999999 23 0 0 88 0.2 0 0 +2.11896E7 11 9 87 95740 0 0 337 0 0 0 0 0 0 0 73 0 9 9 3000 7500 9 999999999 23 0 0 88 0.2 0 0 +2.11932E7 11 9 87 95740 0 0 337 0 0 0 0 0 0 0 30 2.6 9 9 2500 7500 9 999999999 23 0 0 88 0.2 0 0 +2.11968E7 11.6 9 84 95804 120 559 349 10 0 10 956 0 962 391 156 0 10 10 3000 4500 9 999999999 23 0 0 88 0.2 0 0 +2.12004E7 13 10 82 95778 394 1343 357 66 0 66 6520 0 6571 2673 30 1 10 10 4000 4500 9 999999999 25 0 0 88 0.2 0 0 +2.1204E7 14 10 77 95797 634 1343 362 129 0 129 13088 0 13200 5586 10 2.6 10 10 5000 4500 9 999999999 25 0 0 88 0.2 0 0 +2.12076E7 16.7 9.4 62 95747 824 1343 375 183 1 183 21389 39 21451 8294 10 2.1 10 10 5000 4500 9 999999999 24 0 0 88 0.2 0 0 +2.12112E7 18 12 68 95870 950 1343 385 219 7 214 25700 469 25286 10025 300 3.1 10 10 5000 5100 9 999999999 31 0 0 88 0.2 0 0 +2.12148E7 20 12 60 95906 1004 1343 385 384 38 356 43750 3276 40810 14805 170 1 9 9 5000 4500 9 999999999 31 0 0 88 0.2 0 0 +2.12184E7 21.5 10.7 50 95568 982 1343 392 375 25 357 42571 2183 40789 14631 170 0 9 9 7000 4500 9 999999999 27 0 0 88 0.2 0 0 +2.1222E7 22 12 53 95942 887 1343 407 201 5 197 23497 348 23229 9120 210 1.5 10 10 7000 4500 9 999999999 31 0 0 88 0.2 0 0 +2.12256E7 24 10 41 95977 724 1343 404 253 40 232 28531 3203 26221 9141 220 1.5 9 9 7000 4500 9 999999999 25 0 0 88 0.2 0 0 +2.12292E7 24 10 41 95489 504 1343 404 154 7 152 17161 443 16954 5552 180 3.1 9 9 7000 7500 9 999999999 25 0 0 88 0.2 0 0 +2.12328E7 22 11 50 95942 243 1343 395 51 0 51 5015 0 5052 1847 160 3.1 9 9 7000 7500 9 999999999 28 0 0 88 0.2 0 0 +2.12364E7 21 11 53 95924 0 1145 389 0 0 0 0 0 0 0 170 2.1 9 9 5000 7500 9 999999999 28 0 0 88 0.2 0 0 +2.124E7 17.8 11.6 67 95597 0 0 373 0 0 0 0 0 0 0 290 1.5 9 9 5000 7500 9 999999999 30 0 0 88 0.2 0 0 +2.12436E7 17 11 68 95852 0 0 368 0 0 0 0 0 0 0 360 1 9 9 5000 7500 9 999999999 28 0 0 88 0.2 0 0 +2.12472E7 15 11 77 95815 0 0 358 0 0 0 0 0 0 0 50 1.5 9 9 5000 7500 9 999999999 28 0 0 88 0.2 0 0 +2.12508E7 12.3 9.5 83 95581 0 0 324 0 0 0 0 0 0 0 270 0.5 5 5 5000 2000 9 999999999 24 0 0 88 0.2 0 0 +2.12544E7 12 9 82 95759 0 0 341 0 0 0 0 0 0 0 115 0 9 9 5000 7500 9 999999999 23 0 0 88 0.2 0 0 +2.1258E7 11 9 87 95740 0 0 318 0 0 0 0 0 0 0 195 0 5 5 4000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.12616E7 9.9 8.2 89 95460 0 0 312 0 0 0 0 0 0 0 307 0 5 5 4000 2000 9 999999999 21 0 0 88 0.2 0 0 +2.12652E7 10 8 87 95721 0 0 312 0 0 0 0 0 0 0 351 0 5 5 5000 2000 9 999999999 21 0 0 88 0.2 0 0 +2.12688E7 9 7 87 95702 0 0 307 0 0 0 0 0 0 0 320 0 5 5 4000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.12724E7 8.1 7.5 96 95463 0 0 304 0 0 0 0 0 0 0 209 0 5 5 2000 2000 9 999999999 20 0 0 88 0.2 0 0 +2.1276E7 6 5 93 95644 0 0 292 0 0 0 0 0 0 0 141 0 5 5 2000 2000 0 999999999 16 0 0 88 0.2 0 0 +2.12796E7 8 8 100 95683 0 0 304 0 0 0 0 0 0 0 110 1.5 5 5 200 2000 0 999999999 21 0 0 88 0.2 0 0 +2.12832E7 9.9 9.9 100 95630 127 589 342 11 0 11 1044 0 1051 426 140 4.1 10 10 200 15 0 999999999 25 0 0 88 0.2 0 0 +2.12868E7 11 11 100 95740 401 1344 339 110 6 108 12287 319 12124 3919 170 4.1 9 9 400 90 0 999999999 28 0 0 88 0.2 0 0 +2.12904E7 12 11 94 95759 641 1344 344 215 25 203 24035 1899 22800 7755 140 3.1 9 9 3000 300 0 999999999 28 0 0 88 0.2 0 0 +2.1294E7 13.2 10.4 83 95843 830 1344 349 303 62 265 34365 5025 30220 10885 140 6.2 9 9 5000 300 0 999999999 27 0 0 88 0.2 0 0 +2.12976E7 14 10 77 95797 956 1344 352 363 66 316 41426 5568 36328 13333 130 3.6 9 9 5000 300 0 999999999 25 0 0 88 0.2 0 0 +2.13012E7 14 10 77 95797 1010 1344 352 388 25 370 44171 2229 42322 15196 140 4.6 9 9 5000 300 0 999999999 25 0 0 88 0.2 0 0 +2.13048E7 13.3 9.9 80 95836 988 1344 359 230 4 228 27155 270 26981 10708 160 5.1 10 10 5000 450 0 999999999 25 0 0 88 0.2 0 0 +2.13084E7 13 10 82 95778 892 1344 357 203 5 199 23767 373 23479 9212 150 4.6 10 10 5000 450 0 999999999 25 0 0 88 0.2 0 0 +2.1312E7 13 10 82 95778 729 1344 347 255 85 209 29018 6430 23908 8582 160 4.6 9 9 6000 2000 0 999999999 25 0 0 88 0.2 0 0 +2.13156E7 12.5 9.7 83 95868 508 1344 354 95 0 95 9523 0 9601 3972 170 3.6 10 10 6000 300 0 999999999 25 0 0 88 0.2 0 0 +2.13192E7 12 10 88 95759 247 1344 352 32 0 32 3136 0 3159 1269 170 3.6 10 10 6000 300 0 999999999 26 0 0 88 0.2 0 0 +2.13228E7 12 11 94 95759 0 1161 353 0 0 0 0 0 0 0 160 3.1 10 10 5000 300 0 999999999 28 0 0 88 0.2 0 0 +2.13264E7 11 10.8 99 95991 0 0 348 0 0 0 0 0 0 0 140 3.6 10 10 3000 300 0 919999999 28 0 0 88 0.2 2 0 +2.133E7 11 11 100 95740 0 0 349 0 0 0 0 0 0 0 140 1.5 10 10 4000 900 0 919999999 28 0 0 88 0.2 0 0 +2.13336E7 11 11 100 95740 0 0 349 0 0 0 0 0 0 0 180 2.6 10 10 5000 900 0 919999999 28 0 0 88 0.2 0 0 +2.13372E7 10.8 10.5 98 96053 0 0 347 0 0 0 0 0 0 0 120 2.6 10 10 5000 600 0 919999999 27 0 0 88 0.2 0 0 +2.13408E7 11 10 94 95740 0 0 338 0 0 0 0 0 0 0 130 1.5 9 9 8000 1200 0 919999999 26 0 0 88 0.2 0 0 +2.13444E7 11 10 94 95740 0 0 338 0 0 0 0 0 0 0 200 1.5 9 9 8000 1200 0 919999999 26 0 0 88 0.2 0 0 +2.1348E7 10.6 10.3 98 96134 0 0 336 0 0 0 0 0 0 0 130 2.1 9 9 8000 4500 0 919999999 26 0 0 88 0.2 0 0 +2.13516E7 11 10 94 95740 0 0 338 0 0 0 0 0 0 0 60 2.1 9 9 8000 3900 0 919999999 26 0 0 88 0.2 0 0 +2.13552E7 11 8 82 95740 0 0 336 0 0 0 0 0 0 0 128 0.5 9 9 5000 600 0 919999999 21 0 0 88 0.2 0 0 +2.13588E7 8.9 8.6 98 95988 0 0 311 0 0 0 0 0 0 0 150 1.5 6 6 5000 4500 0 919999999 22 0 0 88 0.2 0 0 +2.13624E7 11 9 87 95740 0 0 318 0 0 0 0 0 0 0 140 2.6 5 5 8000 2000 0 919999999 23 0 0 88 0.2 0 0 +2.1366E7 11 10 94 95740 0 0 347 0 0 0 0 0 0 0 180 3.6 10 10 4000 1200 0 919999999 26 0 0 88 0.2 0 0 +2.13696E7 10.7 10.1 96 96278 133 618 337 19 0 19 1857 0 1870 713 90 2.6 9 9 4000 1200 0 919999999 26 0 0 88 0.2 0 0 +2.13732E7 11 10 94 95740 408 1344 338 113 8 111 12602 409 12385 4008 230 2.6 9 9 5000 2000 0 919999999 26 0 0 88 0.2 0 0 +2.13768E7 11 10 94 95740 648 1344 338 218 36 201 24466 2705 22637 7757 245 1.5 9 9 5000 2000 0 919999999 26 0 0 88 0.2 0 0 +2.13804E7 12.4 9.8 84 96461 837 1344 354 187 1 186 21820 87 21835 8468 360 4.6 10 10 5000 900 0 919999999 25 0 0 88 0.2 0 0 +2.1384E7 12 10 88 95759 963 1344 352 223 1 222 26213 88 26249 10379 160 1.5 10 10 5000 900 0 919999999 26 0 0 88 0.2 0 0 +2.13876E7 13 10 82 95778 1016 1344 357 239 10 231 28187 772 27397 10931 92 1.5 10 10 6000 1500 0 919999999 25 0 0 88 0.2 0 0 +2.13912E7 14 8.6 70 96340 994 1344 361 233 4 230 27420 279 27239 10806 320 2.1 10 10 7000 1500 0 919999999 22 0 0 88 0.2 0 0 +2.13948E7 15 10 72 95815 898 1344 357 335 55 298 38046 4648 34075 12339 270 3.6 9 9 7000 1500 0 919999999 25 0 0 88 0.2 0 0 +2.13984E7 15 10 72 95815 733 1344 337 464 185 363 50421 18433 39742 11518 190 2.6 5 5 7000 2000 0 919999999 25 0 0 88 0.2 0 0 +2.1402E7 15.5 9 65 96208 512 1344 359 158 53 138 17741 3301 15555 5258 180 3.1 9 9 7000 2000 0 919999999 23 0 0 88 0.2 0 0 +2.14056E7 14.2 8.5 68 95993 250 1344 332 95 150 67 10508 3607 7450 2259 276 2.8 5 5 7000 2000 9 999999999 22 0 0 88 0.2 0 0 +2.14092E7 13 8 72 95778 0 1176 326 0 0 0 0 0 0 0 170 2.6 5 5 7000 2000 0 919999999 21 0 0 88 0.2 0 0 +2.14128E7 12.7 8.8 77 96354 0 0 325 0 0 0 0 0 0 0 160 3.6 5 5 7000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.14164E7 12 9 82 95759 0 0 341 0 0 0 0 0 0 0 170 3.1 9 9 7000 2000 9 999999999 23 0 0 88 0.2 2 0 +2.142E7 11 9 87 95740 0 0 313 0 0 0 0 0 0 0 170 2.1 3 3 7000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.14236E7 10.4 8.7 89 96272 0 0 318 0 0 0 0 0 0 0 230 1.5 6 6 7000 7500 9 999999999 23 0 0 88 0.2 0 0 +2.14272E7 9 8 93 95702 0 0 326 0 0 0 0 0 0 0 213 1.5 9 9 7000 7500 9 999999999 21 0 0 88 0.2 0 0 +2.14308E7 9 8 93 95702 0 0 326 0 0 0 0 0 0 0 98 1 9 9 7000 4500 9 999999999 21 0 0 88 0.2 0 0 +2.14344E7 8.1 7.7 97 96077 0 0 322 0 0 0 0 0 0 0 240 1.5 9 9 8000 4500 0 999999999 20 0 0 88 0.2 0 0 +2.1438E7 8 7 93 95683 0 0 321 0 0 0 0 0 0 0 354 0 9 9 8000 4500 0 999999999 19 0 0 88 0.2 0 0 +2.14416E7 7.1 6.6 97 95847 0 0 325 0 0 0 0 0 0 0 165 1.3 10 10 5882 4500 9 999999999 18 0 0 88 0.2 0 0 +2.14452E7 6.2 6.2 100 96011 0 0 294 0 0 0 0 0 0 0 30 2.6 5 5 500 2000 0 999999999 18 0 0 88 0.2 0 0 +2.14488E7 7 7 100 95663 0 0 298 0 0 0 0 0 0 0 20 2.6 5 5 2800 2000 0 999999999 19 0 0 88 0.2 0 0 +2.14524E7 8 8 100 95683 0 0 322 0 0 0 0 0 0 0 20 3.1 9 9 3000 4500 0 999999999 21 0 0 88 0.2 0 0 +2.1456E7 7.7 7.1 96 96012 140 648 319 21 0 21 2025 0 2039 773 230 1.5 9 9 4000 4500 0 999999999 19 0 0 88 0.2 0 0 +2.14596E7 8 8 100 95683 415 1345 331 71 0 71 7046 0 7101 2892 338 1 10 10 5000 4500 0 999999999 21 0 0 88 0.2 0 0 +2.14632E7 10 9 93 95721 655 1345 341 135 0 135 13699 0 13817 5862 297 0 10 10 5000 4500 0 999999999 23 0 0 88 0.2 0 0 +2.14668E7 11.2 9.5 89 96080 844 1345 338 309 23 295 34902 2009 33447 11763 100 0.5 9 9 8000 4800 0 999999999 24 0 0 88 0.2 0 0 +2.14704E7 13 10 82 95778 969 1345 347 369 66 321 42140 5603 36960 13579 110 2.1 9 9 8000 4800 0 999999999 25 0 0 88 0.2 0 0 +2.1474E7 15 9 67 95815 1023 1345 356 395 67 344 45265 5818 39682 14621 150 2.6 9 9 8000 4800 0 999999999 23 0 0 88 0.2 0 0 +2.14776E7 15.8 8.1 60 95977 1000 1345 359 384 67 335 44048 5834 38581 14190 140 2.1 9 9 8000 4800 0 999999999 21 0 0 88 0.2 0 0 +2.14812E7 17 8 55 95852 903 1345 365 338 65 295 38557 5533 33780 12291 32 0.5 9 9 8000 4800 0 999999999 21 0 0 88 0.2 0 0 +2.14848E7 17 8 55 95852 738 1345 365 261 42 238 29367 3366 26946 9402 180 2.6 9 9 8000 4800 0 999999999 21 0 0 88 0.2 0 0 +2.14884E7 16.5 8.5 59 95857 517 1345 373 97 0 97 9765 0 9845 4074 140 2.6 10 10 8000 4500 0 999999999 22 0 0 88 0.2 0 0 +2.1492E7 16 8 59 95834 254 1345 370 34 0 34 3289 0 3313 1330 140 2.6 10 10 8000 4500 0 999999999 21 0 0 88 0.2 0 0 +2.14956E7 14 8 67 95797 0 1192 350 0 0 0 0 0 0 0 150 3.6 9 9 8000 4500 0 999999999 21 0 0 88 0.2 0 0 +2.14992E7 13.6 8 69 95926 0 0 358 0 0 0 0 0 0 0 130 1.5 10 10 8000 3900 9 999999999 21 0 0 88 0.2 0 0 +2.15028E7 13 7 67 95778 0 0 354 0 0 0 0 0 0 0 140 3.1 10 10 8000 3900 9 999999999 19 0 0 88 0.2 0 0 +2.15064E7 13 6 62 95778 0 0 353 0 0 0 0 0 0 0 150 3.1 10 10 8000 3900 9 999999999 17 0 0 88 0.2 0 0 +2.151E7 12.6 5.8 63 96002 0 0 350 0 0 0 0 0 0 0 120 1 10 10 8000 3600 9 999999999 17 0 0 88 0.2 0 0 +2.15136E7 12 7 71 95759 0 0 339 0 0 0 0 0 0 0 239 1 9 9 8000 1500 0 919999999 19 0 0 88 0.2 0 0 +2.15172E7 12 6 67 95759 0 0 338 0 0 0 0 0 0 0 120 2.6 9 9 8000 1500 0 919999999 17 0 0 88 0.2 0 0 +2.15208E7 11.1 6.5 73 96012 0 0 344 0 0 0 0 0 0 0 230 2.1 10 10 8000 1500 0 919999999 18 0 0 88 0.2 0 0 +2.15244E7 10 7 82 95721 0 0 330 0 0 0 0 0 0 0 176 0.5 9 9 8000 1500 0 919999999 19 0 0 88 0.2 0.5 0 +2.1528E7 10 8 87 95721 0 0 331 0 0 0 0 0 0 0 10 1.5 9 9 8000 1500 0 919999999 21 0 0 88 0.2 0 0 +2.15316E7 9.8 8 89 95892 0 0 339 0 0 0 0 0 0 0 90 6.2 10 10 8000 1500 0 919999999 21 0 0 88 0.2 0 0 +2.15352E7 10 8 87 95721 0 0 331 0 0 0 0 0 0 0 271 1 9 9 8000 1500 0 919999999 21 0 0 88 0.2 0 0 +2.15388E7 10 8 87 95721 0 0 331 0 0 0 0 0 0 0 130 1 9 9 8000 1500 0 919999999 21 0 0 88 0.2 0 0 +2.15424E7 10.1 7.5 84 95955 147 678 340 14 0 14 1330 0 1339 541 150 2.6 10 10 8000 1500 0 919999999 20 0 0 88 0.2 0 0 +2.1546E7 11 8 82 95740 421 1346 336 119 11 115 13261 618 12920 4189 160 4.1 9 9 8000 1500 0 919999999 21 0 0 88 0.2 0 0 +2.15496E7 10 9 93 95721 662 1346 332 224 37 206 25209 2834 23286 7996 150 3.1 9 9 7000 1500 0 919999999 23 0 0 88 0.2 0 0 +2.15532E7 10.3 9.4 94 96025 851 1346 343 191 4 188 22305 282 22119 8606 190 4.1 10 10 7000 360 0 919999999 24 0 0 88 0.2 0 0 +2.15568E7 11 10 94 95740 976 1346 347 227 1 226 26662 92 26696 10569 160 4.1 10 10 7000 450 0 919999999 26 0 0 88 0.2 0 0 +2.15604E7 11 9 87 95740 1029 1346 346 242 11 234 28675 806 27844 11110 200 4.1 10 10 7000 390 0 919999999 23 0 0 88 0.2 0 0 +2.1564E7 10.8 7.9 82 96025 1006 1346 344 236 4 233 27852 290 27660 10976 190 5.1 10 10 7000 600 0 919999999 21 0 0 88 0.2 0 0 +2.15676E7 11 9 87 95740 908 1346 337 340 56 302 38678 4742 34622 12543 150 4.6 9 9 7000 600 0 919999999 23 0 0 88 0.2 0 0 +2.15712E7 10 9 93 95721 743 1346 341 160 1 159 18601 43 18643 7085 150 4.6 10 10 8000 750 0 919999999 23 0 0 88 0.2 0 0 +2.15748E7 8.9 8.1 95 96064 521 1346 335 98 0 98 9872 0 9953 4120 180 6.2 10 10 5000 600 0 919999999 21 0 0 88 0.2 0 0 +2.15784E7 9 8 93 95702 257 1346 335 34 0 34 3354 0 3379 1357 170 2.6 10 10 5000 600 0 919999999 21 0 0 88 0.2 0 0 +2.1582E7 9 7 87 95702 0 1208 334 0 0 0 0 0 0 0 170 4.1 10 10 7000 600 0 919999999 19 0 0 88 0.2 0 0 +2.15856E7 8.3 8 98 96298 0 0 332 0 0 0 0 0 0 0 140 3.1 10 10 7000 750 0 919999999 21 0 0 88 0.2 7 0 +2.15892E7 8 8 100 95683 0 0 322 0 0 0 0 0 0 0 140 4.1 9 9 5000 1500 0 919999999 21 0 0 88 0.2 0.1 0 +2.15928E7 8 8 100 95683 0 0 331 0 0 0 0 0 0 0 140 3.1 10 10 3000 690 0 919999999 21 0 0 88 0.2 0 0 +2.15964E7 7.9 7.9 100 96403 0 0 330 0 0 0 0 0 0 0 170 2.1 10 10 4000 840 0 919999999 21 0 0 88 0.2 0 0 +2.16E7 8 7 93 95683 0 0 330 0 0 0 0 0 0 0 200 2.6 10 10 5000 2700 0 919999999 19 0 0 88 0.2 0 0 +2.16036E7 7 7 100 95663 0 0 325 0 0 0 0 0 0 0 210 2.6 10 10 8000 2700 0 919999999 19 0 0 88 0.2 0 0 +2.16072E7 7.3 7 98 96382 0 0 326 0 0 0 0 0 0 0 140 2.1 10 10 8000 1200 0 919999999 19 0 0 88 0.2 0 0 +2.16108E7 7 7 100 95663 0 0 325 0 0 0 0 0 0 0 130 2.1 10 10 8000 1200 0 919999999 19 0 0 88 0.2 0 0 +2.16144E7 7 7 100 95663 0 0 325 0 0 0 0 0 0 0 150 0.5 10 10 8000 1200 0 919999999 19 0 0 88 0.2 0 0 +2.1618E7 7 6.9 99 96357 0 0 325 0 0 0 0 0 0 0 260 1.5 10 10 8000 1200 0 919999999 19 0 0 88 0.2 0 0 +2.16216E7 7 7 100 95663 0 0 325 0 0 0 0 0 0 0 80 0 10 10 8000 1200 0 919999999 19 0 0 88 0.2 0 0 +2.16252E7 7 7 100 95663 0 0 325 0 0 0 0 0 0 0 275 0.5 10 10 8000 1200 0 919999999 19 0 0 88 0.2 0 0 +2.16288E7 7.2 7.1 99 96522 153 709 326 15 0 15 1435 0 1445 582 300 1 10 10 8000 1500 0 919999999 19 0 0 88 0.2 0 0 +2.16324E7 8 7 93 95683 428 1346 330 74 0 74 7401 0 7459 3041 160 1.5 10 10 8000 600 0 919999999 19 0 0 88 0.2 0 0 +2.1636E7 8 6 87 95683 668 1346 319 229 80 189 25938 6023 21524 7588 160 1.5 9 9 8000 1200 0 919999999 17 0 0 88 0.2 0 0 +2.16396E7 8.9 6 82 96630 858 1346 333 194 4 191 22686 316 22473 8734 320 0.5 10 10 8000 1200 0 919999999 17 0 0 88 0.2 0 0 +2.16432E7 9 6 81 95702 983 1346 333 230 10 223 27154 734 26453 10492 210 1 10 10 8000 1200 0 919999999 17 0 0 88 0.2 0 0 +2.16468E7 10 6 76 95721 1035 1346 338 245 3 243 29004 263 28848 11450 140 1 10 10 8000 1200 0 919999999 17 0 0 88 0.2 0 0 +2.16504E7 10.5 5.1 69 96510 1012 1346 339 239 11 231 28247 807 27452 10912 120 1.5 10 10 8000 1500 0 919999999 16 0 0 88 0.2 0 0 +2.1654E7 10 6 76 95721 913 1346 338 210 1 209 24631 76 24674 9662 180 3.1 10 10 8000 1500 0 919999999 17 0 0 88 0.2 0 0 +2.16576E7 11 5 66 95740 747 1346 342 162 9 157 18944 622 18447 7026 160 2.6 10 10 8000 1500 0 919999999 15 0 0 88 0.2 0 0 +2.16612E7 11.7 5.4 65 96429 525 1346 320 277 117 232 29985 9968 25204 7093 110 2.6 6 6 8000 1500 0 919999999 16 0 0 88 0.2 0 0 +2.16648E7 11 4 62 95740 261 1346 331 58 0 58 5667 0 5709 2067 210 4.1 9 9 8000 1500 0 919999999 14 0 0 88 0.2 0 0 +2.16684E7 10 5 71 95721 0 1224 328 0 0 0 0 0 0 0 210 5.1 9 9 8000 1500 0 919999999 16 0 0 88 0.2 0 0 +2.1672E7 8.9 4.3 73 96564 0 0 322 0 0 0 0 0 0 0 210 5.1 9 9 8000 1800 9 999999999 15 0 0 88 0.2 0 0 +2.16756E7 8 4 76 95683 0 0 300 0 0 0 0 0 0 0 210 5.1 5 5 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.16792E7 8 3 71 95683 0 0 316 0 0 0 0 0 0 0 200 4.6 9 9 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +2.16828E7 8.4 1.8 63 96630 0 0 317 0 0 0 0 0 0 0 200 3.6 9 9 8000 1200 9 999999999 11 0 0 88 0.2 0 0 +2.16864E7 8 4 76 95683 0 0 317 0 0 0 0 0 0 0 360 0.5 9 9 8000 1200 9 999999999 14 0 0 88 0.2 0 0 +2.169E7 7 4 81 95663 0 0 313 0 0 0 0 0 0 0 170 2.6 9 9 8000 900 9 999999999 14 0 0 88 0.2 0 0 +2.16936E7 7 4 81 95663 0 0 313 0 0 0 0 0 0 0 120 1.5 9 9 8000 900 9 999999999 14 0 0 88 0.2 0 0 +2.16972E7 7 3 76 95663 0 0 312 0 0 0 0 0 0 0 160 2.6 9 9 8000 1200 9 999999999 13 0 0 88 0.2 0 0 +2.17008E7 7 4 81 95663 0 0 313 0 0 0 0 0 0 0 190 2.6 9 9 8000 1500 9 999999999 14 0 0 88 0.2 0 0 +2.17044E7 6.4 3.4 81 96657 0 0 309 0 0 0 0 0 0 0 160 3.1 9 9 8000 1200 9 999999999 13 0 0 88 0.2 0 0 +2.1708E7 6 3 81 95644 0 0 307 0 0 0 0 0 0 0 271 1.5 9 9 8000 1800 9 999999999 13 0 0 88 0.2 0 0 +2.17116E7 5 3 87 95624 0 0 286 0 0 0 0 0 0 0 360 1 5 5 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +2.17152E7 4.4 3.5 94 96749 160 739 280 50 58 43 5497 0 4755 1388 154 0 3 3 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.17188E7 7 3 76 95663 435 1347 294 226 365 109 25507 20355 12295 4087 71 0 5 5 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +2.17224E7 9 3 66 95702 675 1347 298 446 619 136 51997 41496 15897 5962 99 1.5 3 3 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +2.1726E7 9.8 4 67 96761 864 1347 303 615 752 133 74228 49890 16146 6520 190 2.1 3 3 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.17296E7 11 4 62 95740 989 1347 308 729 787 152 88800 53435 18629 7680 190 2.6 3 3 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.17332E7 12 2 50 95759 1041 1347 315 735 652 231 87408 50188 27653 11049 28 2.6 5 5 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +2.17368E7 13.1 1.5 45 96635 1017 1347 319 715 701 186 86117 50729 22537 9186 190 2.1 5 5 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +2.17404E7 14 1 41 95797 919 1347 323 629 688 161 75607 48611 19363 7817 210 3.1 5 5 8000 2000 9 999999999 10 0 0 88 0.2 0 0 +2.1744E7 14 1 41 95797 752 1347 323 486 465 227 55291 38117 25936 9222 200 2.6 5 5 8000 2000 9 999999999 10 0 0 88 0.2 0 0 +2.17476E7 14.1 2.1 44 96560 529 1347 324 300 439 128 34181 28096 14624 5070 200 2.6 5 5 8000 2000 9 999999999 12 0 0 88 0.2 0 0 +2.17512E7 13 3 51 95778 265 1347 315 113 227 68 12537 6505 7604 2339 230 3.6 3 3 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +2.17548E7 10 4 66 95721 0 1239 303 0 0 0 0 0 0 0 220 3.1 3 3 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.17584E7 10.7 2.5 57 96599 0 0 292 0 0 0 0 0 0 0 190 3.1 0 0 8000 2000 9 999999999 12 0 0 88 0.2 0 0 +2.1762E7 10 3 62 95721 0 0 305 0 0 0 0 0 0 0 160 4.1 4 4 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +2.17656E7 8 2 66 95683 0 0 297 0 0 0 0 0 0 0 170 3.1 5 5 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +2.17692E7 7 1.7 69 96640 0 0 277 0 0 0 0 0 0 0 320 1.5 0 0 9900 2000 9 999999999 11 0 0 88 0.2 0 0 +2.17728E7 4 2 87 95604 0 0 298 0 0 0 0 0 0 0 330 0.5 9 9 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +2.17764E7 4 2 87 95604 0 0 298 0 0 0 0 0 0 0 30 1.5 9 9 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +2.178E7 2.9 1.4 90 96549 0 0 260 0 0 0 0 0 0 0 10 0.5 0 0 9900 2000 9 999999999 11 0 0 88 0.2 0 0 +2.17836E7 3 2 93 95584 0 0 302 0 0 0 0 0 0 0 10 1 10 10 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +2.17872E7 2 1 93 95564 0 0 296 0 0 0 0 0 0 0 40 1 10 10 9900 2000 9 999999999 11 0 0 88 0.2 0 0 +2.17908E7 2.1 1.2 94 96467 0 0 257 0 0 0 0 0 0 0 30 0.5 0 0 9900 2000 9 999999999 11 0 0 88 0.2 0 0 +2.17944E7 2 1 93 95564 0 0 257 0 0 0 0 0 0 0 273 0 0 0 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +2.1798E7 1 0 93 95544 0 0 252 0 0 0 0 0 0 0 10 1 0 0 8000 2000 9 999999999 10 0 0 88 0.2 0 0 +2.18016E7 2.5 1.3 92 96513 167 770 259 54 114 40 6020 0 4464 1342 360 0.5 0 0 5000 2000 9 999999999 11 0 0 88 0.2 0 0 +2.18052E7 5 4 93 95624 442 1348 271 248 459 98 28240 24289 11142 3806 350 1 0 0 5000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.18088E7 9 4 71 95702 682 1348 287 456 647 129 53525 42474 15208 5758 206 0 0 0 5000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.18124E7 10.2 3.3 62 96504 871 1348 291 630 779 126 76393 51216 15397 6248 110 1 0 0 6000 2000 9 999999999 13 0 0 88 0.2 0 0 +2.1816E7 13 3 51 95778 996 1348 302 746 767 180 89788 54790 21741 8856 200 1.5 0 0 6000 2000 9 999999999 13 0 0 88 0.2 0 0 +2.18196E7 14 3 47 95797 1048 1348 307 794 771 195 95719 55940 23678 9658 180 3.1 0 0 6000 2000 9 999999999 13 0 0 88 0.2 0 0 +2.18232E7 15.2 3.1 44 96420 1023 1348 312 771 769 188 92891 55379 22748 9277 190 3.6 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +2.18268E7 16 5 48 95834 924 1348 317 677 800 129 82589 52144 15852 6512 170 3.1 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +2.18304E7 17 4 42 95852 757 1348 327 524 737 110 63014 46500 13320 5266 180 3.6 1 1 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.1834E7 15.9 4 45 96376 533 1348 316 325 527 117 37265 32101 13417 4746 210 4.1 0 0 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.18376E7 15 5 51 95815 268 1348 327 115 233 69 12807 6657 7689 2371 210 4.6 3 3 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.18412E7 12 5 62 95759 0 1255 316 0 0 0 0 0 0 0 210 4.1 4 4 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.18448E7 11.7 4.9 63 96467 0 0 299 0 0 0 0 0 0 0 190 3.6 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.18484E7 10 5 71 95721 0 0 312 0 0 0 0 0 0 0 150 2.1 6 6 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +2.1852E7 9 5 76 95702 0 0 311 0 0 0 0 0 0 0 160 2.6 7 7 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +2.18556E7 8.2 4 75 96607 0 0 284 0 0 0 0 0 0 0 170 2.1 0 0 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.18592E7 7 4 81 95663 0 0 306 0 0 0 0 0 0 0 120 2.1 8 8 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.18628E7 7 4 81 95663 0 0 306 0 0 0 0 0 0 0 276 1.5 8 8 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.18664E7 3.9 2.9 93 96673 0 0 266 0 0 0 0 0 0 0 310 1 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +2.187E7 3 2 93 95584 0 0 261 0 0 0 0 0 0 0 180 0 0 0 6000 2000 9 999999999 12 0 0 88 0.2 0 0 +2.18736E7 3 2 93 95584 0 0 261 0 0 0 0 0 0 0 50 1.5 0 0 5000 2000 9 999999999 12 0 0 88 0.2 0 0 +2.18772E7 2.9 2 94 96624 0 0 261 0 0 0 0 0 0 0 242 0 0 0 4000 2000 9 999999999 12 0 0 88 0.2 0 0 +2.18808E7 3 2 93 95584 0 0 261 0 0 0 0 0 0 0 41 0 0 0 4000 2000 9 999999999 12 0 0 88 0.2 0 0 +2.18844E7 1 0 93 95544 0 0 252 0 0 0 0 0 0 0 78 0 0 0 5000 2000 0 999999999 10 0 0 88 0.2 0 0 +2.1888E7 0.4 0 97 96762 173 801 250 58 76 48 6366 428 5314 1542 150 0 0 0 800 2000 0 999999999 10 0 0 88 0.2 0 0 +2.18916E7 5 4 93 95624 449 1348 271 254 467 98 28909 24948 11255 3858 360 0.5 0 0 3000 2000 0 999999999 14 0 0 88 0.2 0 0 +2.18952E7 9 4 71 95702 689 1348 287 463 651 130 54286 42871 15330 5817 330 1.5 0 0 5000 2000 0 999999999 14 0 0 88 0.2 0 0 +2.18988E7 10.8 3.6 61 96771 878 1348 294 636 782 127 77166 51343 15457 6283 200 1.5 0 0 5000 2000 0 999999999 14 0 0 88 0.2 0 0 +2.19024E7 13 4 54 95778 1002 1348 303 751 768 181 90399 54579 21842 8907 175 1 0 0 8000 2000 0 999999999 14 0 0 88 0.2 0 0 +2.1906E7 15 5 51 95815 1054 1348 313 797 772 195 96154 55289 23618 9650 108 1.5 0 0 8000 2000 0 999999999 15 0 0 88 0.2 0 0 +2.19096E7 15.1 4.5 49 96635 1029 1348 313 775 770 188 93352 54971 22756 9293 190 1.5 0 0 8000 2000 0 999999999 15 0 0 88 0.2 0 0 +2.19132E7 16 4 45 95834 929 1348 327 682 761 158 82037 52630 19066 7735 180 3.6 2 2 9900 2000 0 999999999 14 0 0 88 0.2 0 0 +2.19168E7 16 4 45 95834 761 1348 327 528 738 111 63447 46662 13454 5323 170 3.6 2 2 9900 2000 0 999999999 14 0 0 88 0.2 0 0 +2.19204E7 16.1 3.9 44 96616 537 1348 317 328 532 117 37697 32477 13455 4769 200 4.1 0 0 9900 2000 0 999999999 14 0 0 88 0.2 0 0 +2.1924E7 15 6 55 95815 272 1348 328 117 230 70 12937 6686 7824 2414 220 4.6 3 3 9900 2000 0 999999999 17 0 0 88 0.2 0 0 +2.19276E7 12 5 62 95759 0 1271 316 0 0 0 0 0 0 0 220 3.6 4 4 9900 2000 0 999999999 15 0 0 88 0.2 0 0 +2.19312E7 11.8 5 63 96686 0 0 299 0 0 0 0 0 0 0 200 3.6 0 0 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +2.19348E7 12 5 62 95759 0 0 316 0 0 0 0 0 0 0 150 2.1 4 4 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.19384E7 11 5 66 95740 0 0 314 0 0 0 0 0 0 0 130 1 5 5 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.1942E7 7.3 4.6 83 96779 0 0 281 0 0 0 0 0 0 0 280 1 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +2.19456E7 6 4 87 95644 0 0 275 0 0 0 0 0 0 0 44 0 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.19492E7 7 5 87 95663 0 0 280 0 0 0 0 0 0 0 3 0 0 0 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +2.19528E7 4.8 4.2 96 96776 0 0 270 0 0 0 0 0 0 0 40 1.5 0 0 6000 2000 9 999999999 15 0 0 88 0.2 0 0 +2.19564E7 5 4 93 95624 0 0 271 0 0 0 0 0 0 0 102 0 0 0 6000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.196E7 3 3 100 95584 0 0 262 0 0 0 0 0 0 0 215 0 0 0 4000 2000 9 999999999 13 0 0 88 0.2 0 0 +2.19636E7 3.7 3.3 97 96707 0 0 265 0 0 0 0 0 0 0 60 1 0 0 800 2000 0 999999999 13 0 0 88 0.2 0 0 +2.19672E7 1 1 100 95544 0 0 253 0 0 0 0 0 0 0 241 0 0 0 2000 2000 0 999999999 11 0 0 88 0.2 0 0 +2.19708E7 1 1 100 95544 0 0 253 0 0 0 0 0 0 0 60 1 0 0 2000 2000 0 999999999 11 0 0 88 0.2 0 0 +2.19744E7 2.4 2.3 99 96784 180 832 259 61 137 43 6823 402 4796 1451 247 0 0 0 2000 2000 0 999999999 12 0 0 88 0.2 0 0 +2.1978E7 8 5 81 95683 456 1349 284 259 470 100 29479 25273 11427 3928 13 1 0 0 4000 2000 0 999999999 16 0 0 88 0.2 0 0 +2.19816E7 11 6 71 95740 696 1349 297 467 661 126 54963 42573 14913 5699 10 2.6 0 0 5000 2000 0 999999999 17 0 0 88 0.2 0 0 +2.19852E7 13 7 67 95778 885 1349 307 638 791 120 77791 50047 14683 6003 330 2.1 0 0 5000 2000 0 999999999 19 0 0 88 0.2 0 0 +2.19888E7 16 5 48 95834 1009 1349 317 755 769 181 90996 54333 21926 8952 189 1.5 0 0 5000 2000 0 999999999 15 0 0 88 0.2 0 0 +2.19924E7 18 4 39 95870 1060 1349 325 804 773 198 96976 55850 23975 9786 331 1 0 0 8000 2000 0 999999999 14 0 0 88 0.2 0 0 +2.1996E7 19.8 3.9 35 96447 1035 1349 333 781 771 190 94065 55363 23040 9404 180 2.1 0 0 8000 2000 0 999999999 14 0 0 88 0.2 0 0 +2.19996E7 22 2 27 95942 934 1349 341 689 762 162 82894 53630 19585 7932 154 1 0 0 9900 2000 0 999999999 11 0 0 88 0.2 0 0 +2.20032E7 23 -1 20 95959 766 1349 342 536 744 114 64515 48628 13807 5454 220 3.1 0 0 9900 2000 0 999999999 8 0 0 88 0.2 0 0 +2.20068E7 22.4 4.5 31 96266 541 1349 346 331 533 118 38031 32581 13563 4814 180 4.1 0 0 9900 2000 0 999999999 15 0 0 88 0.2 0 0 +2.20104E7 20 8 46 95906 275 1349 350 120 242 71 13316 6938 7868 2437 220 4.1 2 2 9900 2000 0 999999999 21 0 0 88 0.2 0 0 +2.2014E7 17 5 45 95852 0 1287 332 0 0 0 0 0 0 0 220 3.6 2 2 9900 2000 0 999999999 15 0 0 88 0.2 0 0 +2.20176E7 15.5 4.9 49 96330 0 0 315 0 0 0 0 0 0 0 30 1.5 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.20212E7 13 6 62 95778 0 0 321 0 0 0 0 0 0 0 215 1 4 4 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.20248E7 11 5 66 95740 0 0 314 0 0 0 0 0 0 0 34 0.5 5 5 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.20284E7 8.4 4.6 77 96318 0 0 285 0 0 0 0 0 0 0 360 1 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.2032E7 8 5 81 95683 0 0 312 0 0 0 0 0 0 0 10 2.6 8 8 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +2.20356E7 8 4 76 95683 0 0 306 0 0 0 0 0 0 0 161 0.5 7 7 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.20392E7 6.5 2.8 77 96092 0 0 276 0 0 0 0 0 0 0 40 1 0 0 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +2.20428E7 6 3 81 95644 0 0 301 0 0 0 0 0 0 0 105 1 8 8 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +2.20464E7 6 3 81 95644 0 0 274 0 0 0 0 0 0 0 138 0.5 0 0 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +2.205E7 2.1 0.9 92 95948 0 0 257 0 0 0 0 0 0 0 20 1 0 0 8000 2000 9 999999999 10 0 0 88 0.2 0 0 +2.20536E7 3 2 93 95584 0 0 261 0 0 0 0 0 0 0 40 2.1 0 0 5000 2000 9 999999999 12 0 0 88 0.2 0 0 +2.20572E7 4 2 87 95604 0 0 277 0 0 0 0 0 0 0 50 0.5 3 3 8000 2000 9 999999999 12 0 0 88 0.2 0 0 +2.20608E7 4.8 2.5 85 95936 187 863 280 64 86 52 7061 834 5766 1679 260 1.5 3 3 5000 2000 9 999999999 12 0 0 88 0.2 0 0 +2.20644E7 9 5 76 95702 463 1350 305 246 366 121 27660 21660 13634 4537 340 1 5 5 6000 2000 9 999999999 16 0 0 88 0.2 0 0 +2.2068E7 13 5 58 95778 703 1350 318 468 638 136 54843 42407 15991 6076 170 0 3 3 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +2.20716E7 17 5 45 95852 892 1350 341 602 594 210 70391 45019 24670 9567 50 1.5 5 5 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +2.20752E7 20 5 37 95906 1016 1350 335 762 787 170 92260 54581 20694 8504 170 1.5 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.20788E7 23 2 25 95959 1066 1350 346 813 774 202 97949 56786 24505 9982 100 1 0 0 9900 2000 9 999999999 11 0 0 88 0.2 0 0 +2.20824E7 25.6 5.3 27 95943 1040 1350 362 784 772 191 94536 54948 23071 9428 100 1.5 0 0 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +2.2086E7 27 -2 15 96029 939 1350 360 698 763 168 83894 55101 20261 8182 180 1 0 0 9900 2000 9 999999999 8 0 0 88 0.2 0 0 +2.20896E7 28 -2 14 96046 771 1350 364 541 672 158 63582 48528 18650 7151 220 1.5 0 0 9900 2000 9 999999999 7 0 0 88 0.2 0 0 +2.20932E7 28 -1.9 14 95576 545 1350 383 327 435 151 36881 30642 17146 5791 190 2.6 4 4 9900 2000 9 999999999 8 0 0 88 0.2 0 0 +2.20968E7 26 6 28 96011 279 1350 365 123 251 71 13678 7604 7938 2463 220 2.6 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.21004E7 22 8 41 95942 0 1302 372 0 0 0 0 0 0 0 220 2.6 6 6 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.2104E7 20 8 46 95906 0 0 350 0 0 0 0 0 0 0 283 1.5 2 2 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.21076E7 18 8 52 95870 0 0 344 0 0 0 0 0 0 0 181 0.5 3 3 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.21112E7 15 9 67 95815 0 0 336 0 0 0 0 0 0 0 20 1.5 5 5 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.21148E7 8.4 1.8 63 96630 0 0 310 0 0 0 0 0 0 0 200 3.6 8 8 9900 2000 9 999999999 11 0 0 88 0.2 0 0 +2.21184E7 13 8 72 95778 0 0 329 0 0 0 0 0 0 0 235 1 6 6 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.2122E7 9 7 87 95702 0 0 290 0 0 0 0 0 0 0 240 1 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.21256E7 7 3.6 79 96669 0 0 306 0 0 0 0 0 0 0 120 1.5 8 8 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.21292E7 9 6 81 95702 0 0 289 0 0 0 0 0 0 0 360 0.5 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.21328E7 10 6 76 95721 0 0 293 0 0 0 0 0 0 0 140 1 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.21364E7 6.4 3.4 81 96657 0 0 303 0 0 0 0 0 0 0 160 3.1 8 8 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +2.214E7 6 5 93 95644 0 0 276 0 0 0 0 0 0 0 290 1.5 0 0 6000 2000 9 999999999 16 0 0 88 0.2 0 0 +2.21436E7 6 5 93 95644 0 0 288 0 0 0 0 0 0 0 99 0 3 3 7000 2000 9 999999999 16 0 0 88 0.2 0 0 +2.21472E7 7.7 5.3 85 96192 194 894 283 69 97 55 7524 1067 6025 1755 19 0 0 0 6000 2000 9 999999999 16 0 0 88 0.2 0 0 +2.21508E7 12 7 71 95759 470 1351 302 269 458 110 30499 25597 12491 4269 0 0 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.21544E7 14 7 63 95797 710 1351 311 478 672 125 56448 42930 14845 5711 180 2.6 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.2158E7 15.8 8.1 60 96327 899 1351 320 649 794 121 79188 49941 14871 6097 170 3.6 0 0 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +2.21616E7 17 9 59 95852 1022 1351 326 762 771 180 91897 52755 21800 8940 170 5.7 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.21652E7 18 9 56 95870 1072 1351 345 794 820 145 98029 52466 17914 7495 160 5.1 3 3 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.21688E7 18.9 7.1 46 96251 1046 1351 333 787 773 189 94881 54231 22957 9400 160 5.1 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.21724E7 20 8 46 95906 945 1351 350 691 806 128 84507 51197 15686 6481 180 2.6 2 2 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.2176E7 21 8 43 95924 775 1351 350 536 745 110 64640 45582 13247 5277 201 1.5 1 1 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.21796E7 20.2 9.8 51 96094 550 1351 342 335 524 122 38307 31234 14026 4984 170 6.2 0 0 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +2.21832E7 18 9 56 95870 283 1351 345 122 235 73 13565 7043 8150 2526 170 6.7 3 3 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.21868E7 16 10 68 95834 0 1318 342 0 0 0 0 0 0 0 140 3.6 5 5 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +2.21904E7 14.5 9.3 71 96208 0 0 321 0 0 0 0 0 0 0 160 3.1 1 1 9900 2000 9 999999999 24 0 0 88 0.2 0 0 +2.2194E7 13 9 77 95778 0 0 334 0 0 0 0 0 0 0 170 4.6 7 7 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.21976E7 11 9 87 95740 0 0 337 0 0 0 0 0 0 0 160 2.1 9 9 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.22012E7 10 9 93 95721 0 0 296 0 0 0 0 0 0 0 220 1.5 0 0 5000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.22048E7 9 8 93 95702 0 0 291 0 0 0 0 0 0 0 360 1 0 0 3000 2000 9 999999999 21 0 0 88 0.2 0 0 +2.22084E7 9 9 100 95702 0 0 292 0 0 0 0 0 0 0 30 0.5 0 0 2500 2000 9 999999999 23 0 0 88 0.2 0 0 +2.2212E7 8.4 7.8 96 96281 0 0 288 0 0 0 0 0 0 0 140 1.5 0 0 2500 2000 9 999999999 21 0 0 88 0.2 0 0 +2.22156E7 8 7 93 95683 0 0 286 0 0 0 0 0 0 0 230 1 0 0 2500 2000 9 999999999 19 0 0 88 0.2 0 0 +2.22192E7 7 6 93 95663 0 0 281 0 0 0 0 0 0 0 30 1.5 0 0 2200 2000 9 999999999 17 0 0 88 0.2 0 0 +2.22228E7 5.7 5.6 99 96209 0 0 317 0 0 0 0 0 0 0 40 2.1 10 10 200 15 0 999999999 17 0 0 88 0.2 0 0 +2.22264E7 6 6 100 95644 0 0 319 0 0 0 0 0 0 0 137 0 10 10 600 2000 0 999999999 17 0 0 88 0.2 0 0 +2.223E7 7 6 93 95663 0 0 324 0 0 0 0 0 0 0 210 1 10 10 2500 450 0 999999999 17 0 0 88 0.2 0 0 +2.22336E7 7.9 7.8 99 96365 201 926 330 23 0 23 2221 0 2237 899 200 1 10 10 2500 450 0 999999999 21 0 0 88 0.2 0 0 +2.22372E7 10 10 100 95721 477 1351 343 86 0 86 8588 0 8657 3563 360 2.1 10 10 2500 300 0 999999999 26 0 0 88 0.2 0 0 +2.22408E7 12 10 88 95759 717 1351 352 152 0 152 15464 0 15600 6692 360 2.1 10 10 3000 300 0 999999999 26 0 0 88 0.2 0 0 +2.22444E7 13.1 10.5 84 96380 905 1351 349 337 55 300 38303 4627 34338 12430 57 0 9 9 3000 360 0 999999999 27 0 0 88 0.2 0 0 +2.2248E7 15 11 77 95815 1029 1351 333 756 668 249 88873 50004 29386 11619 60 1.5 3 3 3000 2000 0 999999999 28 0 0 88 0.2 0 0 +2.22516E7 18 11 64 95870 1078 1351 347 802 809 157 98290 51861 19354 8074 170 1 3 3 4000 2000 0 999999999 28 0 0 88 0.2 0 0 +2.22552E7 19.3 10.3 56 96211 1052 1351 358 733 660 221 87343 47394 26397 10660 200 2.6 5 5 4000 2000 0 999999999 26 0 0 88 0.2 0 0 +2.22588E7 21 11 53 95924 950 1351 367 645 645 192 76458 44935 22903 9184 190 2.1 5 5 5000 2000 0 999999999 28 0 0 88 0.2 0 0 +2.22624E7 21 11 53 95924 780 1351 362 531 721 116 63693 43562 13945 5551 170 3.6 3 3 5000 2000 0 999999999 28 0 0 88 0.2 0 0 +2.2266E7 21.5 10.4 49 96070 554 1351 349 338 526 123 38663 31304 14107 5022 200 4.1 0 0 5000 2000 0 999999999 26 0 0 88 0.2 0 0 +2.22696E7 21 11 53 95924 286 1351 362 125 232 76 13853 7049 8450 2607 180 4.1 3 3 9900 2000 0 999999999 28 0 0 88 0.2 0 0 +2.22732E7 17 12 72 95852 0 1334 352 0 0 0 0 0 0 0 210 3.1 6 6 9900 2000 0 999999999 31 0 0 88 0.2 0 0 +2.22768E7 16.5 11.5 72 96198 0 0 327 0 0 0 0 0 0 0 150 3.1 0 0 9900 2000 9 999999999 29 0 0 88 0.2 0 0 +2.22804E7 16 10 68 95834 0 0 342 0 0 0 0 0 0 0 160 2.6 5 5 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +2.2284E7 14 8 67 95797 0 0 330 0 0 0 0 0 0 0 140 2.1 5 5 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.22876E7 11.9 7.6 75 96254 0 0 302 0 0 0 0 0 0 0 160 2.1 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.22912E7 11 8 82 95740 0 0 329 0 0 0 0 0 0 0 241 0 8 8 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.22948E7 11 7 76 95740 0 0 322 0 0 0 0 0 0 0 170 3.1 7 7 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.22984E7 9.8 6.7 81 96289 0 0 293 0 0 0 0 0 0 0 160 1 0 0 9900 2000 9 999999999 18 0 0 88 0.2 0 0 +2.2302E7 7 6 93 95663 0 0 281 0 0 0 0 0 0 0 340 2.6 0 0 7000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.23056E7 7 6 93 95663 0 0 324 0 0 0 0 0 0 0 141 1.5 10 10 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.23092E7 7.2 6 92 96116 0 0 281 0 0 0 0 0 0 0 270 1 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.23128E7 7 6 93 95663 0 0 281 0 0 0 0 0 0 0 180 1 0 0 6000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.23164E7 6 6 100 95644 0 0 289 0 0 0 0 0 0 0 61 0 3 3 3000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.232E7 9.8 7.6 86 96128 208 957 306 75 105 59 8262 1530 6519 1904 360 0.5 3 3 4000 2000 9 999999999 20 0 0 88 0.2 0 0 +2.23236E7 10 9 93 95721 484 1352 309 276 449 116 31234 25458 13131 4494 310 2.1 3 3 4000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.23272E7 14 9 72 95797 724 1352 313 489 682 124 57845 42791 14757 5718 41 1.5 0 0 4000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.23308E7 17 9.9 63 96112 912 1352 327 660 798 122 80511 49406 14985 6165 360 0.5 0 0 5000 2000 9 999999999 25 0 0 88 0.2 0 0 +2.23344E7 20 11 56 95906 1035 1352 342 772 848 124 95751 51569 15426 6479 136 1 0 0 5000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.2338E7 22 9 43 95942 1085 1352 349 820 776 199 99005 54099 24092 9873 307 1 0 0 5000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.23416E7 23.6 11 45 95908 1057 1352 359 793 774 188 95569 52431 22783 9365 170 4.1 0 0 6000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.23452E7 24 8 36 95977 955 1352 358 701 835 112 86761 51451 13929 5794 160 6.7 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +2.23488E7 24 7 34 95977 784 1352 356 546 712 133 64907 46457 15927 6268 170 6.7 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.23524E7 24 7.2 34 95906 558 1352 375 332 483 133 37816 30653 15191 5339 170 3.6 4 4 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.2356E7 23 8 38 95959 290 1352 353 130 261 74 14421 8234 8226 2566 170 3.6 0 0 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.23596E7 21 7 40 95924 0 1350 349 0 0 0 0 0 0 0 180 1 1 1 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.23632E7 17.8 8.1 53 95975 0 0 343 0 0 0 0 0 0 0 160 1 3 3 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.23668E7 17 9 59 95852 0 0 343 0 0 0 0 0 0 0 170 1 4 4 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.23704E7 16 9 63 95834 0 0 341 0 0 0 0 0 0 0 200 2.1 5 5 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.2374E7 11 7.5 79 96076 0 0 299 0 0 0 0 0 0 0 270 1.5 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.23776E7 11 6 71 95740 0 0 317 0 0 0 0 0 0 0 360 1 6 6 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.23812E7 10 7 82 95721 0 0 311 0 0 0 0 0 0 0 50 1.5 5 5 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.23848E7 10.2 7.4 83 95919 0 0 315 0 0 0 0 0 0 0 158 0 6 6 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +2.23884E7 10 7 82 95721 0 0 311 0 0 0 0 0 0 0 170 2.6 5 5 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.2392E7 7 5 87 95663 0 0 314 0 0 0 0 0 0 0 280 1.5 9 9 8000 7500 9 999999999 16 0 0 88 0.2 0 0 +2.23956E7 7.6 5.9 89 95925 0 0 295 0 0 0 0 0 0 0 40 1.5 3 3 7000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.23992E7 8 6 87 95683 0 0 297 0 0 0 0 0 0 0 30 1 3 3 7000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.24028E7 6 5 93 95644 0 0 276 0 0 0 0 0 0 0 152 0 0 0 6000 2000 9 999999999 16 0 0 88 0.2 0 0 +2.24064E7 8.5 5.8 83 95943 215 989 299 79 112 62 8712 1983 6783 1981 208 0 3 3 6000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.241E7 13 8 72 95778 491 1353 308 285 474 114 32427 27055 12959 4470 46 1 0 0 5000 2000 9 999999999 21 0 0 88 0.2 0 0 +2.24136E7 16 9 63 95834 731 1353 322 495 721 106 59348 43156 12722 5004 277 1.5 0 0 5000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.24172E7 20.1 9.1 49 95913 919 1353 355 658 772 135 79837 49325 16394 6718 330 1 3 3 5000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.24208E7 23 10 44 95959 1042 1353 355 779 773 184 93918 52703 22335 9171 85 1 0 0 3000 2000 9 999999999 25 0 0 88 0.2 0 0 +2.24244E7 25 8 34 95994 1091 1353 378 817 815 160 100280 53866 19739 8220 206 1 3 3 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +2.2428E7 26.3 9.2 34 95756 1063 1353 392 744 663 224 88710 48193 26834 10827 160 4.1 5 5 5000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.24316E7 26 10 37 96011 960 1353 392 655 543 270 75711 43188 31359 11944 190 4.6 5 5 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +2.24352E7 25 9 36 95994 789 1353 408 283 51 253 31970 4209 28741 10175 170 5.1 9 9 8000 7500 9 999999999 23 0 0 88 0.2 0 0 +2.24388E7 24.1 10.1 41 95680 562 1353 382 321 371 167 35857 25571 18755 6279 160 5.1 5 5 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +2.24424E7 22 12 53 95942 294 1353 374 122 195 80 13460 6199 8836 2719 160 4.6 5 5 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.2446E7 18 11.9 67 95870 4 1353 354 1 0 1 62 0 62 26 150 5.1 5 5 6000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.24496E7 15.9 11.7 76 95789 0 13 338 0 0 0 0 0 0 0 160 3.6 3 3 5000 2000 9 999999999 30 0 0 88 0.2 0 0 +2.24532E7 14 11 82 95797 0 0 334 0 0 0 0 0 0 0 160 4.1 5 5 5000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.24568E7 12.9 11.1 89 95873 0 0 348 0 0 0 0 0 0 0 6 4.3 9 9 3500 2000 9 999999999 28 0 0 88 0.2 0 0 +2.24604E7 11.8 11.3 97 95949 0 0 353 0 0 0 0 0 0 0 160 4.6 10 10 2000 90 9 999999999 29 0 0 88 0.2 0 0 +2.2464E7 12 11 94 95759 0 0 353 0 0 0 0 0 0 0 160 3.6 10 10 2000 90 9 999999999 28 0 0 88 0.2 0 0 +2.24676E7 12 12 100 95759 0 0 355 0 0 0 0 0 0 0 140 2.6 10 10 2000 90 9 999999999 31 0 0 88 0.2 0 0 +2.24712E7 11.7 11.5 99 95957 0 0 353 0 0 0 0 0 0 0 160 1.5 10 10 2000 60 9 999999999 30 0 0 88 0.2 0 0 +2.24748E7 12 11 94 95759 0 0 353 0 0 0 0 0 0 0 198 0 10 10 1800 30 9 999999999 28 0 0 88 0.2 0 0 +2.24784E7 12 12 100 95759 0 0 355 0 0 0 0 0 0 0 239 1 10 10 1200 30 9 999999999 31 0 0 88 0.2 0 0 +2.2482E7 11.2 11.2 100 95768 0 0 350 0 0 0 0 0 0 0 10 2.6 10 10 500 30 0 999999999 29 0 0 88 0.2 0 0 +2.24856E7 11 11 100 95740 0 0 349 0 0 0 0 0 0 0 210 2.6 10 10 600 30 0 999999999 28 0 0 88 0.2 0 0 +2.24892E7 11 11 100 95740 0 0 349 0 0 0 0 0 0 0 160 3.6 10 10 2000 120 0 999999999 28 0 0 88 0.2 0 0 +2.24928E7 11.1 10 93 96012 222 1021 348 27 0 27 2588 0 2607 1049 200 2.6 10 10 4000 300 0 999999999 26 0 0 88 0.2 0 0 +2.24964E7 11 10 94 95740 498 1354 347 91 0 91 9138 0 9212 3803 160 2.1 10 10 4000 450 0 999999999 26 0 0 88 0.2 0 0 +2.25E7 11 10 94 95740 738 1354 347 158 0 158 16075 0 16217 6979 190 0.5 10 10 4000 450 0 999999999 26 0 0 88 0.2 0 0 +2.25036E7 12.8 10.3 85 96214 926 1354 357 211 6 207 24810 424 24463 9635 90 1.5 10 10 4000 450 0 999999999 26 0 0 88 0.2 0 0 +2.25072E7 14 10 77 95797 1048 1354 352 405 64 355 46437 5591 41004 15079 170 2.1 9 9 5000 600 0 999999999 25 0 0 88 0.2 0 0 +2.25108E7 15 10 72 95815 1097 1354 337 772 425 428 87840 39630 49066 17274 180 3.6 5 5 5000 2000 0 999999999 25 0 0 88 0.2 0 0 +2.25144E7 16.8 10 64 96033 1068 1354 366 415 65 364 47607 5632 42045 15460 200 4.6 9 9 5000 7500 0 999999999 25 0 0 88 0.2 0 0 +2.2518E7 17 9 59 95852 965 1354 366 366 57 326 41741 4916 37366 13602 170 6.2 9 9 6500 7500 0 999999999 23 0 0 88 0.2 0 0 +2.25216E7 17 9 59 95852 793 1354 346 513 539 198 59221 39676 22956 8615 170 5.7 5 5 8000 2000 0 999999999 23 0 0 88 0.2 0 0 +2.25252E7 15.3 8.8 65 95977 566 1354 340 305 305 177 33923 21891 19842 6547 200 5.7 6 6 8000 7500 0 999999999 23 0 0 88 0.2 0 0 +2.25288E7 13 8 72 95778 297 1354 345 69 0 69 6825 0 6876 2486 190 5.7 9 9 8000 7500 0 999999999 21 0 0 88 0.2 0 0 +2.25324E7 12 8 76 95759 6 1354 340 1 0 1 75 0 75 31 150 3.1 9 9 8000 7500 0 999999999 21 0 0 88 0.2 0 0 +2.2536E7 11.2 7.7 79 96089 0 28 336 0 0 0 0 0 0 0 140 3.1 9 9 8000 7500 9 999999999 20 0 0 88 0.2 0 0 +2.25396E7 11 8 82 95740 0 0 317 0 0 0 0 0 0 0 150 3.1 5 5 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +2.25432E7 11 8 82 95740 0 0 317 0 0 0 0 0 0 0 140 2.6 5 5 7000 2000 9 999999999 21 0 0 88 0.2 0 0 +2.25468E7 10.9 8.1 83 96291 0 0 335 0 0 0 0 0 0 0 160 2.6 9 9 8000 3000 9 999999999 21 0 0 88 0.2 0 0 +2.25504E7 11 8 82 95740 0 0 336 0 0 0 0 0 0 0 160 2.6 9 9 7000 750 9 999999999 21 0 0 88 0.2 0 0 +2.2554E7 11 8 82 95740 0 0 329 0 0 0 0 0 0 0 205 2.8 8 8 7000 750 9 999999999 21 0 0 88 0.2 0 0 +2.25576E7 11 8 82 95740 0 0 345 0 0 0 0 0 0 0 170 3.1 10 10 7000 600 9 999999999 21 0 0 88 0.2 0 0 +2.25612E7 11 8 82 95740 0 0 336 0 0 0 0 0 0 0 160 2.6 9 9 7000 1200 9 999999999 21 0 0 88 0.2 0 0 +2.25648E7 11 8 82 95740 0 0 336 0 0 0 0 0 0 0 140 2.1 9 9 6000 1200 9 999999999 21 0 0 88 0.2 0 0 +2.25684E7 11 8 82 95740 0 0 345 0 0 0 0 0 0 0 160 1 10 10 7000 750 9 999999999 21 0 0 88 0.2 0 0 +2.2572E7 10 7 82 95721 0 0 339 0 0 0 0 0 0 0 7 1.5 10 10 7000 750 9 999999999 19 0 0 88 0.2 0 0 +2.25756E7 10 8 87 95721 0 0 340 0 0 0 0 0 0 0 240 1.5 10 10 8000 750 9 999999999 21 0 0 88 0.2 0 0 +2.25792E7 10.5 7.6 82 96454 228 1053 342 28 0 28 2727 0 2747 1103 190 2.6 10 10 8000 750 9 999999999 20 0 0 88 0.2 0 0 +2.25828E7 12 8 76 95759 505 1354 340 153 49 135 17217 3045 15240 5123 140 3.1 9 9 8000 3600 9 999999999 21 0 0 88 0.2 0 0 +2.25864E7 12.5 6.9 69 96135 745 1354 325 461 428 226 52174 34048 25701 9104 109 2.8 6 6 9000 3600 9 999999999 19 0 0 88 0.2 0 0 +2.259E7 13 5.9 62 96511 933 1354 343 352 57 313 40125 5005 35864 12976 200 2.6 9 9 9000 3600 9 999999999 17 0 0 88 0.2 0 0 +2.25936E7 14 6 59 95797 1055 1354 328 740 401 428 83808 38844 48857 16886 170 2.6 5 5 9000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.25972E7 16 6 51 95834 1103 1354 357 434 85 365 50123 7531 42396 15695 206 1.5 9 9 9000 6000 9 999999999 17 0 0 88 0.2 0 0 +2.26008E7 15.9 5.8 51 96432 1074 1354 357 420 21 403 47942 1985 46336 16498 220 3.1 9 9 9000 7500 9 999999999 17 0 0 88 0.2 0 0 +2.26044E7 14 8 67 95797 970 1354 350 369 66 321 42151 5748 36947 13523 220 6.7 9 9 9000 7500 9 999999999 21 0 0 88 0.2 0 0 +2.2608E7 14 8 67 95797 798 1354 350 287 16 277 32274 1403 31373 10854 210 6.7 9 9 9000 1200 9 999999999 21 0 0 88 0.2 0 0 +2.26116E7 14 8 67 95797 570 1354 350 182 8 178 20271 604 19977 6599 210 4.1 9 9 9000 4500 9 999999999 21 0 0 88 0.2 0 0 +2.26152E7 13 8 72 95778 301 1354 345 71 0 71 6941 0 6993 2528 190 4.6 9 9 9000 4200 9 999999999 21 0 0 88 0.2 0 0 +2.26188E7 12 8 76 95759 9 1354 340 1 0 1 115 0 116 47 200 5.1 9 9 9000 900 9 999999999 21 0 0 88 0.2 0 0 +2.26224E7 11.8 8.3 79 96667 0 43 349 0 0 0 0 0 0 0 200 5.7 10 10 9000 3600 9 999999999 22 0 0 88 0.2 0 0 +2.2626E7 11 9 87 95740 0 0 337 0 0 0 0 0 0 0 180 4.6 9 9 9000 3600 9 999999999 23 0 0 88 0.2 0 0 +2.26296E7 11 8 82 95740 0 0 336 0 0 0 0 0 0 0 180 3.1 9 9 9000 4200 9 999999999 21 0 0 88 0.2 0 0 +2.26332E7 11 8 82 95740 0 0 336 0 0 0 0 0 0 0 170 3.1 9 9 9000 4200 9 999999999 21 0 0 88 0.2 0 0 +2.26368E7 11 8 82 95740 0 0 336 0 0 0 0 0 0 0 180 3.6 9 9 9000 4200 9 999999999 21 0 0 88 0.2 0 0 +2.26404E7 10 8 87 95721 0 0 331 0 0 0 0 0 0 0 160 3.1 9 9 9000 4500 9 999999999 21 0 0 88 0.2 0 0 +2.2644E7 9.8 8.6 92 96742 0 0 340 0 0 0 0 0 0 0 170 3.1 10 10 9000 4500 9 999999999 22 0 0 88 0.2 0 0 +2.26476E7 10 9 93 95721 0 0 332 0 0 0 0 0 0 0 170 4.1 9 9 9000 4500 9 999999999 23 0 0 88 0.2 0 0 +2.26512E7 9 8 93 95702 0 0 326 0 0 0 0 0 0 0 170 3.6 9 9 8000 4500 9 999999999 21 0 0 88 0.2 0 0 +2.26548E7 9 8 93 95702 0 0 326 0 0 0 0 0 0 0 170 3.6 9 9 8000 4500 9 999999999 21 0 0 88 0.2 0 0 +2.26584E7 9 6 81 95702 0 0 324 0 0 0 0 0 0 0 180 3.1 9 9 8000 4500 9 999999999 17 0 0 88 0.2 0 0 +2.2662E7 9 5 76 95702 0 0 332 0 0 0 0 0 0 0 170 3.6 10 10 8000 1200 9 999999999 16 0 0 88 0.2 0 0 +2.26656E7 9.3 5.5 77 96761 235 1085 334 29 0 29 2874 0 2895 1161 180 2.6 10 10 8000 1200 9 999999999 16 0 0 88 0.2 0 0 +2.26692E7 10 6 76 95721 512 1355 329 157 51 137 17630 3291 15515 5220 160 2.1 9 9 8000 5100 9 999999999 17 0 0 88 0.2 0 0 +2.26728E7 12 6 67 95759 752 1355 319 480 190 375 52242 19594 41028 11834 160 1.5 5 5 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.26764E7 13 7 67 95778 939 1355 344 355 25 337 40191 2232 38486 13656 337 0 9 9 8000 5100 9 999999999 19 0 0 88 0.2 0 0 +2.268E7 15 7 59 95815 1061 1355 354 413 66 362 47428 5839 41801 15334 80 2.1 9 9 8000 750 9 999999999 19 0 0 88 0.2 0 0 +2.26836E7 15 7 59 95815 1109 1355 334 786 579 312 91941 47713 36778 14144 90 1.5 5 5 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.26872E7 16 7 55 95834 1079 1355 333 807 815 158 99010 54199 19491 8113 60 1 3 3 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.26908E7 17 6 48 95852 975 1355 337 712 819 123 87752 52273 15246 6336 180 2.6 3 3 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.26944E7 18 5 42 95870 802 1355 340 556 730 124 66688 47301 14947 5946 170 3.1 3 3 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +2.2698E7 18 5 42 95870 574 1355 340 353 468 155 39869 32347 17596 6045 160 3.1 3 3 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +2.27016E7 18 4 39 95870 304 1355 365 72 0 72 7130 0 7183 2585 170 3.6 9 9 8000 7500 9 999999999 14 0 0 88 0.2 0 0 +2.27052E7 17 5 45 95852 13 1355 361 2 0 2 157 0 158 64 190 3.1 9 9 8000 7500 9 999999999 15 0 0 88 0.2 0 0 +2.27088E7 14 7.9 67 96236 0 58 350 0 0 0 0 0 0 0 220 2.6 9 9 8000 7500 9 999999999 21 0 0 88 0.2 0 0 +2.27124E7 14 5 55 95797 0 0 346 0 0 0 0 0 0 0 160 4.1 9 9 8000 7500 9 999999999 15 0 0 88 0.2 0 0 +2.2716E7 13 5 58 95778 0 0 342 0 0 0 0 0 0 0 150 3.1 9 9 8000 7500 9 999999999 15 0 0 88 0.2 0 0 +2.27196E7 12 5 62 95759 0 0 337 0 0 0 0 0 0 0 200 1.5 9 9 8000 7500 9 999999999 15 0 0 88 0.2 0 0 +2.27232E7 10 5 71 95721 0 0 328 0 0 0 0 0 0 0 99 0 9 9 8000 7500 9 999999999 16 0 0 88 0.2 0 0 +2.27268E7 9 6 81 95702 0 0 306 0 0 0 0 0 0 0 300 1 5 5 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.27304E7 7.6 5.1 84 96029 0 0 297 0 0 0 0 0 0 0 30 0.5 4 4 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +2.2734E7 8 5 81 95683 0 0 312 0 0 0 0 0 0 0 239 0 8 8 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +2.27376E7 6 5 93 95644 0 0 318 0 0 0 0 0 0 0 360 0.5 10 10 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +2.27412E7 5.7 4.8 94 95784 0 0 288 0 0 0 0 0 0 0 126 0 4 4 5000 2000 9 999999999 15 0 0 88 0.2 0 0 +2.27448E7 5 5 100 95624 0 0 288 0 0 0 0 0 0 0 289 0 5 5 4000 2000 0 999999999 16 0 0 88 0.2 0 0 +2.27484E7 4 4 100 95604 0 0 283 0 0 0 0 0 0 0 300 0.5 5 5 100 2000 0 999999999 14 0 0 88 0.2 0 0 +2.2752E7 7.1 6.7 97 95793 242 1117 294 96 145 70 10518 3617 7700 2270 40 1.5 3 3 3000 2000 0 999999999 18 0 0 88 0.2 0 0 +2.27556E7 11 7 76 95740 519 1356 311 305 479 121 34654 28843 13874 4819 34 0 3 3 6000 2000 0 999999999 19 0 0 88 0.2 0 0 +2.27592E7 14 7 63 95797 759 1356 324 514 671 139 60680 44391 16460 6385 216 0 3 3 6000 2000 0 999999999 19 0 0 88 0.2 0 0 +2.27628E7 15.2 6.2 55 95767 946 1356 329 685 780 141 83169 51531 17248 7078 230 1.5 3 3 8000 2000 0 999999999 17 0 0 88 0.2 0 0 +2.27664E7 18 7 49 95870 1067 1356 343 795 836 138 98415 53863 17193 7197 220 2.1 3 3 8000 2000 0 999999999 19 0 0 88 0.2 0 0 +2.277E7 19 7 46 95888 1115 1356 347 839 843 147 104041 54760 18263 7638 180 3.1 3 3 8000 2000 0 999999999 19 0 0 88 0.2 0 0 +2.27736E7 19.7 7.8 46 95641 1085 1356 352 811 837 142 100338 53800 17602 7371 200 5.7 3 3 8000 2000 0 999999999 20 0 0 88 0.2 0 0 +2.27772E7 19 9 52 95888 980 1356 350 713 755 168 85777 51016 20338 8313 210 6.7 3 3 8000 2000 0 999999999 23 0 0 88 0.2 0 0 +2.27808E7 19 9 52 95888 807 1356 355 524 586 176 61153 41199 20591 7923 210 7.2 5 5 8000 2000 0 999999999 23 0 0 88 0.2 0 0 +2.27844E7 17 8 55 95852 578 1356 344 334 451 142 37977 29389 16204 5697 210 7.7 5 5 8000 2000 0 999999999 21 0 0 88 0.2 0 0 +2.2788E7 15 7 59 95815 308 1356 329 140 279 77 15587 9718 8566 2704 200 7.2 3 3 8000 2000 0 999999999 19 0 0 88 0.2 0 0 +2.27916E7 13 7 67 95778 16 1356 320 4 0 4 376 0 378 145 160 4.1 3 3 8000 2000 0 999999999 19 0 0 88 0.2 0 0 +2.27952E7 12.2 6.1 66 96127 0 74 315 0 0 0 0 0 0 0 140 4.1 3 3 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.27988E7 10 4 66 95721 0 0 308 0 0 0 0 0 0 0 160 4.6 5 5 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.28024E7 9 4 71 95702 0 0 304 0 0 0 0 0 0 0 200 2.1 5 5 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.2806E7 8.5 4.1 74 96311 0 0 320 0 0 0 0 0 0 0 120 2.1 9 9 8000 3600 9 999999999 14 0 0 88 0.2 0 0 +2.28096E7 8 4 76 95683 0 0 317 0 0 0 0 0 0 0 160 4.1 9 9 8000 3600 9 999999999 14 0 0 88 0.2 0 0 +2.28132E7 8 4 76 95683 0 0 317 0 0 0 0 0 0 0 140 4.1 9 9 8000 900 9 999999999 14 0 0 88 0.2 0 0 +2.28168E7 7.3 4.1 80 96467 0 0 323 0 0 0 0 0 0 0 140 3.6 10 10 8000 900 9 999999999 14 0 0 88 0.2 0 0 +2.28204E7 7 4 81 95663 0 0 322 0 0 0 0 0 0 0 160 2.1 10 10 8000 900 9 999999999 14 0 0 88 0.2 0 0 +2.2824E7 8 5 81 95683 0 0 327 0 0 0 0 0 0 0 170 2.6 10 10 8000 900 9 999999999 16 0 0 88 0.2 0 0 +2.28276E7 7.4 4.5 82 96497 0 0 324 0 0 0 0 0 0 0 160 1.5 10 10 8000 900 9 999999999 15 0 0 88 0.2 0 0 +2.28312E7 8 5 81 95683 0 0 327 0 0 0 0 0 0 0 180 2.1 10 10 8000 900 9 999999999 16 0 0 88 0.2 0 0 +2.28348E7 8 5 81 95683 0 0 327 0 0 0 0 0 0 0 180 2.1 10 10 8000 750 9 999999999 16 0 0 88 0.2 0 0 +2.28384E7 8.1 4.9 80 96662 249 1149 328 32 0 32 3147 0 3170 1271 150 2.1 10 10 8000 810 9 999999999 16 0 0 88 0.2 0 0 +2.2842E7 8 5 81 95683 526 1357 327 99 0 99 9979 0 10060 4154 160 4.1 10 10 8000 900 9 999999999 16 0 0 88 0.2 0 0 +2.28456E7 9 4 71 95702 766 1357 331 167 4 165 19457 277 19286 7339 170 3.6 10 10 8000 900 9 999999999 14 0 0 88 0.2 0 0 +2.28492E7 10.7 4.6 66 96816 953 1357 323 471 221 316 53865 19473 36367 13231 160 1.5 8 8 8000 3000 9 999999999 15 0 0 88 0.2 0 0 +2.28528E7 12 4 58 95759 1074 1357 336 421 86 353 48553 7641 40976 15172 220 1.5 9 9 8000 900 9 999999999 14 0 0 88 0.2 0 0 +2.28564E7 13.4 4.4 54 96275 1121 1357 319 847 555 390 97679 50639 45207 16470 75 1.5 3 3 8000 900 9 999999999 15 0 0 88 0.2 0 0 +2.286E7 14.8 4.8 51 96790 1090 1357 350 428 109 341 49668 9453 39788 14932 140 1.5 9 9 8000 1350 9 999999999 15 0 0 88 0.2 0 0 +2.28636E7 15 3 44 95815 985 1357 329 682 556 279 79185 46362 32592 12390 240 2.1 5 5 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +2.28672E7 16 2 39 95834 811 1357 333 533 657 141 63530 44915 16884 6657 160 2.1 5 5 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +2.28708E7 16 1.7 38 96728 582 1357 314 366 572 121 42280 36398 14011 5064 200 2.6 0 0 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +2.28744E7 16 2 39 95834 312 1357 320 145 293 78 16222 11079 8734 2751 200 3.1 1 1 9900 2000 9 999999999 11 0 0 88 0.2 0 0 +2.2878E7 13 4 54 95778 19 1357 317 5 0 5 456 0 459 173 220 2.6 3 3 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.28816E7 11.4 5.3 66 96820 0 89 298 0 0 0 0 0 0 0 220 3.6 0 0 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +2.28852E7 11 5 66 95740 0 0 314 0 0 0 0 0 0 0 170 2.6 5 5 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.28888E7 10 5 71 95721 0 0 312 0 0 0 0 0 0 0 197 0 6 6 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +2.28924E7 7.5 4.5 81 96905 0 0 281 0 0 0 0 0 0 0 280 2.1 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.2896E7 6 4 87 95644 0 0 308 0 0 0 0 0 0 0 360 0.5 9 9 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.28996E7 6 4 87 95644 0 0 275 0 0 0 0 0 0 0 60 1 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.29032E7 4.8 2.8 87 96880 0 0 269 0 0 0 0 0 0 0 320 1.5 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +2.29068E7 4 3 93 95604 0 0 266 0 0 0 0 0 0 0 40 1 0 0 6000 2000 9 999999999 13 0 0 88 0.2 0 0 +2.29104E7 4 3 93 95604 0 0 266 0 0 0 0 0 0 0 56 0 0 0 6000 2000 9 999999999 13 0 0 88 0.2 0 0 +2.2914E7 2.9 2.9 100 96823 0 0 262 0 0 0 0 0 0 0 241 0 0 0 5000 2000 9 999999999 13 0 0 88 0.2 0 0 +2.29176E7 2 1 93 95564 0 0 257 0 0 0 0 0 0 0 20 2.6 0 0 5000 2000 9 999999999 11 0 0 88 0.2 0 0 +2.29212E7 2 1 93 95564 0 0 257 0 0 0 0 0 0 0 10 2.1 0 0 5000 2000 9 999999999 11 0 0 88 0.2 0 0 +2.29248E7 5.5 3.5 87 96866 256 1181 272 106 211 66 11794 5577 7399 2258 20 4.1 0 0 5000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.29284E7 9 5 76 95702 533 1357 288 321 513 120 36699 31348 13742 4827 20 3.1 0 0 5000 2000 9 999999999 16 0 0 88 0.2 0 0 +2.2932E7 12 5 62 95759 773 1357 300 535 608 189 61764 45314 21934 8192 134 1.5 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +2.29356E7 13.9 5.3 56 96773 959 1357 356 222 10 215 26219 788 25478 10060 120 1.5 10 10 8000 2000 0 919999999 16 0 0 88 0.2 0 0 +2.29392E7 16 5 48 95834 1080 1357 317 819 722 246 97315 55469 29380 11712 200 2.6 0 0 8000 2000 0 919999999 15 0 0 88 0.2 0 0 +2.29428E7 18 5 42 95870 1126 1357 326 863 782 215 104231 56930 26110 10622 170 2.6 0 0 8000 2000 0 919999999 15 0 0 88 0.2 0 0 +2.29464E7 19 3.6 36 96679 1096 1357 329 836 780 207 100864 56947 25156 10251 150 4.6 0 0 8000 2000 0 919999999 13 0 0 88 0.2 0 0 +2.295E7 20 4 35 95906 990 1357 334 737 771 175 88660 54484 21132 8609 170 4.6 0 0 9900 2000 0 919999999 14 0 0 88 0.2 0 0 +2.29536E7 21 4 33 95924 816 1357 339 575 760 119 69409 49026 14421 5772 170 4.1 0 0 9900 2000 0 919999999 14 0 0 88 0.2 0 0 +2.29572E7 20.8 4.8 35 96465 586 1357 339 367 532 138 41984 35080 15814 5612 170 5.1 0 0 9900 2000 0 919999999 15 0 0 88 0.2 0 0 +2.29608E7 20 5 37 95906 315 1357 335 147 292 79 16387 10927 8856 2794 180 4.6 0 0 9900 2000 0 919999999 15 0 0 88 0.2 0 0 +2.29644E7 16 7 55 95834 23 1357 333 6 0 6 530 0 534 199 220 2.6 3 3 9900 2000 0 919999999 19 0 0 88 0.2 0 0 +2.2968E7 15.1 6.4 56 96569 0 104 315 0 0 0 0 0 0 0 170 2.6 0 0 9900 2000 9 999999999 18 0 0 88 0.2 0 0 +2.29716E7 15 4 48 95815 0 0 322 0 0 0 0 0 0 0 180 2.1 2 2 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.29752E7 13 3 51 95778 0 0 302 0 0 0 0 0 0 0 24 1.5 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +2.29788E7 11.8 3.3 56 96545 0 0 298 0 0 0 0 0 0 0 180 0.5 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +2.29824E7 9 3 66 95702 0 0 303 0 0 0 0 0 0 0 160 0 5 5 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +2.2986E7 7 4 81 95663 0 0 306 0 0 0 0 0 0 0 56 1 8 8 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.29896E7 6.2 3.5 83 96474 0 0 275 0 0 0 0 0 0 0 60 1 0 0 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.29932E7 6 4 87 95644 0 0 308 0 0 0 0 0 0 0 260 1 9 9 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.29968E7 5 3 87 95624 0 0 270 0 0 0 0 0 0 0 50 1 0 0 5000 2000 9 999999999 13 0 0 88 0.2 0 0 +2.30004E7 3.4 1.8 89 96286 0 0 263 0 0 0 0 0 0 0 110 0 0 0 5000 2000 9 999999999 11 0 0 88 0.2 0 0 +2.3004E7 3 2 93 95584 0 0 261 0 0 0 0 0 0 0 350 1.5 0 0 5000 2000 9 999999999 12 0 0 88 0.2 0 0 +2.30076E7 3 2 93 95584 0 0 273 0 0 0 0 0 0 0 130 1 3 3 8000 2000 9 999999999 12 0 0 88 0.2 0 0 +2.30112E7 5.6 3.1 84 96414 263 1213 284 110 212 69 12151 5988 7631 2332 330 2.1 3 3 5000 2000 9 999999999 13 0 0 88 0.2 0 0 +2.30148E7 9 5 76 95702 540 1358 300 323 500 124 36837 31094 14248 4994 360 2.1 3 3 6000 2000 9 999999999 16 0 0 88 0.2 0 0 +2.30184E7 14 5 55 95797 779 1358 322 534 671 149 62904 45993 17646 6840 350 3.1 3 3 6000 2000 9 999999999 15 0 0 88 0.2 0 0 +2.3022E7 16.7 3.8 42 96305 966 1358 333 705 780 151 85505 53141 18421 7550 360 2.6 3 3 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.30256E7 19 5 40 95888 1086 1358 345 815 847 138 101135 55228 17223 7212 170 2.6 3 3 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +2.30292E7 21 4 33 95924 1132 1358 353 859 858 145 106939 56516 18074 7552 150 3.1 3 3 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.30328E7 21.3 3.5 31 96171 1101 1358 340 841 780 209 101488 57128 25377 10335 170 4.6 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +2.30364E7 23 2 25 95959 995 1358 346 743 772 178 89443 55404 21577 8776 170 5.1 0 0 9900 2000 9 999999999 11 0 0 88 0.2 0 0 +2.304E7 23 4 29 95959 820 1358 348 579 762 120 69913 49222 14488 5804 170 4.6 0 0 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.30436E7 22.4 4 30 96086 590 1358 345 371 536 139 42450 35609 15930 5658 170 5.1 0 0 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.30472E7 21 7 40 95924 319 1358 349 149 294 80 16609 10924 8957 2831 220 3.6 1 1 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.30508E7 18 5 42 95870 26 1358 333 6 0 6 620 0 624 229 210 3.6 1 1 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.30544E7 16.4 2.4 39 96281 0 120 316 0 0 0 0 0 0 0 170 4.6 0 0 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +2.3058E7 16 1 36 95834 0 0 313 0 0 0 0 0 0 0 180 5.7 0 0 9900 2000 9 999999999 10 0 0 88 0.2 0 0 +2.30616E7 14 1 41 95797 0 0 310 0 0 0 0 0 0 0 180 2.1 1 1 9900 2000 9 999999999 10 0 0 88 0.2 0 0 +2.30652E7 11.8 2.6 53 96318 0 0 297 0 0 0 0 0 0 0 360 0.5 0 0 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +2.30688E7 8 2 66 95683 0 0 297 0 0 0 0 0 0 0 142 1.5 5 5 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +2.30724E7 7 2 70 95663 0 0 296 0 0 0 0 0 0 0 294 0 6 6 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +2.3076E7 7.5 2 68 96254 0 0 279 0 0 0 0 0 0 0 20 0.5 0 0 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +2.30796E7 6 1 70 95644 0 0 291 0 0 0 0 0 0 0 344 0 6 6 9900 2000 9 999999999 10 0 0 88 0.2 0 0 +2.30832E7 4 1 81 95604 0 0 264 0 0 0 0 0 0 0 10 0.5 0 0 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +2.30868E7 4.8 2.2 83 96021 0 0 268 0 0 0 0 0 0 0 10 1.5 0 0 8000 2000 9 999999999 12 0 0 88 0.2 0 0 +2.30904E7 3 1 87 95584 0 0 292 0 0 0 0 0 0 0 282 1 9 9 9900 2000 9 999999999 11 0 0 88 0.2 0 0 +2.3094E7 3 1 87 95584 0 0 260 0 0 0 0 0 0 0 50 1.5 0 0 5000 2000 9 999999999 11 0 0 88 0.2 0 0 +2.30976E7 7.7 3.6 75 96135 270 1245 281 115 229 70 12796 6742 7772 2387 330 1 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.31012E7 11 4 62 95740 547 1359 295 333 528 121 38169 32756 13909 4919 277 0 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.31048E7 15 4 48 95815 786 1359 312 548 693 147 64679 47542 17429 6782 312 0 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.31084E7 17.4 3 38 96063 972 1359 321 721 808 143 87883 54513 17537 7220 110 1 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +2.3112E7 20 1 28 95906 1092 1359 331 836 780 209 100775 57903 25372 10317 30 1 0 0 9900 2000 9 999999999 10 0 0 88 0.2 0 0 +2.31156E7 22 2 27 95942 1138 1359 341 878 783 222 105972 58395 26992 10935 230 1.5 0 0 9900 2000 9 999999999 11 0 0 88 0.2 0 0 +2.31192E7 23.9 4.3 28 95876 1106 1359 353 845 781 210 101966 56926 25439 10364 160 3.1 0 0 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.31228E7 26 4 24 96011 999 1359 362 745 773 178 89726 54772 21469 8750 190 3.6 0 0 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.31264E7 26 5 26 96011 825 1359 364 582 764 119 70303 48980 14419 5787 190 4.1 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.313E7 25.4 5.1 27 95760 594 1359 361 374 539 139 42748 35554 15924 5672 210 4.1 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.31336E7 25 6 30 95994 322 1359 360 152 299 81 16909 11411 9044 2863 170 3.6 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.31372E7 21 8 43 95924 29 1359 350 7 0 7 695 0 700 255 200 2.6 1 1 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.31408E7 19.3 7.1 45 95842 0 135 335 0 0 0 0 0 0 0 200 2.6 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.31444E7 18 8 52 95870 0 0 344 0 0 0 0 0 0 0 150 3.1 3 3 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.3148E7 17 8 55 95852 0 0 339 0 0 0 0 0 0 0 308 1.5 3 3 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.31516E7 14.6 8.1 65 95907 0 0 315 0 0 0 0 0 0 0 190 1 0 0 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.31552E7 11 6 71 95740 0 0 317 0 0 0 0 0 0 0 320 1 6 6 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.31588E7 10 7 82 95721 0 0 323 0 0 0 0 0 0 0 360 0.5 8 8 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.31624E7 9.2 6.8 85 95900 0 0 290 0 0 0 0 0 0 0 327 0 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.3166E7 8 6 87 95683 0 0 285 0 0 0 0 0 0 0 360 1 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.31696E7 7 5 87 95663 0 0 280 0 0 0 0 0 0 0 91 0 0 0 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +2.31732E7 6.8 5.4 91 95938 0 0 279 0 0 0 0 0 0 0 185 0 0 0 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +2.31768E7 7 6 93 95663 0 0 281 0 0 0 0 0 0 0 360 0.5 0 0 6000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.31804E7 8 6 87 95683 0 0 285 0 0 0 0 0 0 0 322 1.5 0 0 6000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.3184E7 8.5 7 90 96150 277 1277 288 119 239 71 13245 6960 7878 2437 300 1 0 0 7000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.31876E7 13 9 77 95778 554 1360 334 271 228 178 30052 16391 19847 6451 136 0 7 7 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.31912E7 16 10 68 95834 793 1360 342 501 517 200 57716 37983 23141 8655 240 0.5 5 5 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +2.31948E7 17.4 10.1 62 96176 979 1360 329 719 780 158 86830 51328 19134 7859 190 1.5 0 0 9900 2000 9 999999999 26 0 0 88 0.2 0 0 +2.31984E7 18.7 10.6 59 96041 1099 1360 353 805 797 162 98681 51634 19994 8330 148 2.8 4 4 9950 2000 9 999999999 27 0 0 88 0.2 0 0 +2.3202E7 20 11 56 95906 1144 1360 357 855 830 158 105625 52789 19553 8160 160 4.1 3 3 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +2.32056E7 20.9 10.4 51 96069 1112 1360 346 842 782 203 101617 54014 24653 10104 180 6.7 0 0 9900 2000 9 999999999 26 0 0 88 0.2 0 0 +2.32092E7 21 10 49 95924 1004 1360 357 739 815 138 90525 51608 17002 7072 160 5.7 2 2 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +2.32128E7 20 11 56 95906 829 1360 357 573 738 123 68851 45457 14869 5977 210 5.1 3 3 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +2.32164E7 20.1 10.8 55 95998 598 1360 357 369 554 126 42428 33532 14516 5280 180 6.7 3 3 9900 2000 9 999999999 27 0 0 88 0.2 0 0 +2.322E7 18 11 64 95870 326 1360 347 151 270 86 16723 10194 9591 3007 170 6.7 3 3 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +2.32236E7 16 11 72 95834 33 1360 324 8 0 8 772 0 777 281 150 3.6 0 0 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +2.32272E7 14.2 10.4 78 96155 0 151 315 0 0 0 0 0 0 0 140 2.6 0 0 9900 2000 9 999999999 27 0 0 88 0.2 0 0 +2.32308E7 13 10 82 95778 0 0 340 0 0 0 0 0 0 0 170 2.1 8 8 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +2.32344E7 12 10 88 95759 0 0 343 0 0 0 0 0 0 0 113 0 9 9 9900 2000 9 999999999 26 0 0 88 0.2 0 0 +2.3238E7 9.6 8.4 92 96143 0 0 294 0 0 0 0 0 0 0 333 0 0 0 9900 2000 9 999999999 22 0 0 88 0.2 0 0 +2.32416E7 11 9 87 95740 0 0 300 0 0 0 0 0 0 0 190 2.1 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.32452E7 10 9 93 95721 0 0 296 0 0 0 0 0 0 0 180 2.6 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.32488E7 9.6 9 96 96125 0 0 294 0 0 0 0 0 0 0 140 1 0 0 5000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.32524E7 8 7 93 95683 0 0 286 0 0 0 0 0 0 0 32 0.5 0 0 2700 2000 9 999999999 19 0 0 88 0.2 0 0 +2.3256E7 6 6 100 95644 0 0 293 0 0 0 0 0 0 0 300 2.1 5 5 800 2000 0 999999999 17 0 0 88 0.2 0 0 +2.32596E7 6.8 6.7 99 96098 0 0 324 0 0 0 0 0 0 0 80 1 10 10 800 15 0 999999999 19 0 0 88 0.2 0 0 +2.32632E7 8 7 93 95683 0 0 303 0 0 0 0 0 0 0 350 1 5 5 600 2000 0 999999999 19 0 0 88 0.2 0 0 +2.32668E7 7 7 100 95663 0 0 294 0 0 0 0 0 0 0 135 0 3 3 800 2000 0 999999999 19 0 0 88 0.2 0 0 +2.32704E7 7.5 7.4 99 96112 284 1309 296 122 231 74 13532 7167 8214 2536 230 1.5 3 3 500 2000 0 999999999 20 0 0 88 0.2 0 0 +2.3274E7 12 12 100 95759 561 1361 321 336 549 110 38731 30658 12712 4616 190 1.5 3 3 2400 2000 0 999999999 31 0 0 88 0.2 0 0 +2.32776E7 16 11 72 95834 800 1361 343 515 560 186 59642 39588 21677 8239 125 1 5 5 5000 2000 0 999999999 28 0 0 88 0.2 0 0 +2.32812E7 17.4 11 66 96148 985 1361 371 373 38 346 42440 3288 39603 14274 110 1.5 9 9 8000 7500 0 999999999 28 0 0 88 0.2 0 0 +2.32848E7 19 11 60 95888 1105 1361 379 431 48 392 49324 4267 45157 16402 300 2.6 9 9 8000 7500 0 999999999 28 0 0 88 0.2 0 0 +2.32884E7 20 11 56 95906 1150 1361 384 452 33 425 51790 2946 48989 17512 290 2.6 9 9 8000 7500 0 999999999 28 0 0 88 0.2 0 0 +2.3292E7 19.8 12.3 62 95879 1117 1361 395 266 16 252 31529 1199 30095 12045 210 5.1 10 10 8000 4800 0 999999999 32 0 0 88 0.2 0 0 +2.32956E7 21 12 56 95924 1009 1361 363 735 661 245 86059 49152 28890 11375 180 4.6 3 3 5000 2000 0 999999999 31 0 0 88 0.2 0 0 +2.32992E7 22 12 53 95942 833 1361 374 542 581 187 63141 40576 21851 8429 200 4.6 5 5 5000 2000 0 999999999 31 0 0 88 0.2 0 0 +2.33028E7 20.6 12.1 58 95884 601 1361 364 363 546 122 41890 32256 14148 5181 170 7.2 4 4 5000 2000 0 999999999 31 0 0 88 0.2 0 0 +2.33064E7 15 11 77 95815 330 1361 333 153 273 87 16974 10458 9700 3045 200 6.7 3 3 5000 2000 0 999999999 28 0 0 88 0.2 0 0 +2.331E7 14 11 82 95797 36 1361 329 9 0 9 839 0 844 303 190 8.7 3 3 5000 2000 0 999999999 28 0 0 88 0.2 0 0 +2.33136E7 12.1 9.7 85 96267 0 167 319 0 0 0 0 0 0 0 130 3.1 3 3 5000 2000 9 999999999 25 0 0 88 0.2 0 0 +2.33172E7 11 9 87 95740 0 0 313 0 0 0 0 0 0 0 150 5.1 3 3 5000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.33208E7 11 9 87 95740 0 0 337 0 0 0 0 0 0 0 140 3.6 9 9 8000 750 9 999999999 23 0 0 88 0.2 0 0 +2.33244E7 11 9.3 89 96548 0 0 347 0 0 0 0 0 0 0 100 1 10 10 5000 450 9 999999999 24 0 0 88 0.2 0 0 +2.3328E7 9 8 93 95702 0 0 303 0 0 0 0 0 0 0 350 2.6 3 3 5000 2000 9 999999999 21 0 0 88 0.2 0 0 +2.33316E7 9 8 93 95702 0 0 291 0 0 0 0 0 0 0 10 2.1 0 0 5000 2000 9 999999999 21 0 0 88 0.2 0 0 +2.33352E7 10.1 9.3 95 96361 0 0 333 0 0 0 0 0 0 0 180 4.1 9 9 4000 360 9 999999999 24 0 0 88 0.2 0 0 +2.33388E7 10 10 100 95721 0 0 343 0 0 0 0 0 0 0 160 7.2 10 10 4000 450 9 999999999 26 0 0 88 0.2 0 0 +2.33424E7 11 10 94 95740 0 0 347 0 0 0 0 0 0 0 210 3.1 10 10 4000 450 9 999999999 26 0 0 88 0.2 0 0 +2.3346E7 10.3 9.2 93 96393 0 0 343 0 0 0 0 0 0 0 360 2.1 10 10 4000 450 9 999999999 24 0 0 88 0.2 0 0 +2.33496E7 11 9 87 95740 0 0 346 0 0 0 0 0 0 0 50 1.5 10 10 4000 450 9 999999999 23 0 0 88 0.2 0 0 +2.33532E7 11 9 87 95740 0 0 346 0 0 0 0 0 0 0 360 0.5 10 10 5000 450 9 999999999 23 0 0 88 0.2 0 0 +2.33568E7 10.4 9 91 96489 291 1342 334 66 0 66 6496 0 6544 2374 280 1.5 9 9 5000 600 9 999999999 23 0 0 88 0.2 0 0 +2.33604E7 13 9 77 95778 567 1361 327 324 370 169 36152 25946 19010 6349 154 0.5 5 5 6000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.3364E7 14 9 72 95797 806 1361 332 522 540 203 60204 40075 23473 8809 186 0.5 5 5 6000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.33676E7 15.7 8.6 63 96372 992 1361 359 378 57 336 43138 5003 38631 14067 210 1 9 9 6000 7500 9 999999999 22 0 0 88 0.2 0 0 +2.33712E7 17 9 59 95852 1111 1361 366 435 21 418 49638 1933 48023 17088 109 1 9 9 6000 7500 9 999999999 23 0 0 88 0.2 0 0 +2.33748E7 19 9 52 95888 1155 1361 376 456 21 438 52217 1953 50535 17872 150 2.6 9 9 6000 7500 9 999999999 23 0 0 88 0.2 0 0 +2.33784E7 20.4 5.6 38 96297 1122 1361 379 443 50 402 50854 4594 46446 16765 160 4.1 9 9 7000 7500 9 999999999 16 0 0 88 0.2 0 0 +2.3382E7 20 9 49 95906 1014 1361 381 388 67 339 44436 5804 38996 14310 170 6.2 9 9 8000 7500 9 999999999 23 0 0 88 0.2 0 0 +2.33856E7 21 5 35 95924 837 1361 381 306 63 267 34789 5370 30538 10920 170 5.1 9 9 8000 7500 9 999999999 15 0 0 88 0.2 0 0 +2.33892E7 19.2 6.4 43 96285 605 1361 374 197 9 193 22029 695 21685 7192 210 5.1 9 9 8000 7500 9 999999999 18 0 0 88 0.2 0 0 +2.33928E7 18 9 56 95870 333 1361 371 82 0 82 8058 0 8119 2928 200 4.1 9 9 8000 7500 9 999999999 23 0 0 88 0.2 0 0 +2.33964E7 17 9 59 95852 40 1361 366 5 0 5 482 0 485 189 210 2.6 9 9 8000 7500 9 999999999 23 0 0 88 0.2 0 0 +2.34E7 15 8 63 96340 0 183 347 0 0 0 0 0 0 0 230 1.5 8 8 8000 7500 9 999999999 21 0 0 88 0.2 0 0 +2.34036E7 14 8 67 95797 0 0 330 0 0 0 0 0 0 0 170 2.1 5 5 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.34072E7 14 9 72 95797 0 0 334 0 0 0 0 0 0 0 150 2.1 6 6 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.34108E7 13.4 7.6 68 96480 0 0 309 0 0 0 0 0 0 0 170 1.5 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.34144E7 9 7 87 95702 0 0 325 0 0 0 0 0 0 0 330 0.5 9 9 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.3418E7 9 7 87 95702 0 0 290 0 0 0 0 0 0 0 109 1 0 0 2400 2000 9 999999999 19 0 0 88 0.2 0 0 +2.34216E7 7.8 6.3 90 96430 0 0 284 0 0 0 0 0 0 0 10 1.5 0 0 2400 2000 9 999999999 18 0 0 88 0.2 0 0 +2.34252E7 7 6 93 95663 0 0 281 0 0 0 0 0 0 0 162 0 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.34288E7 7 7 100 95663 0 0 282 0 0 0 0 0 0 0 360 0.5 0 0 1000 2000 0 999999999 19 0 0 88 0.2 0 0 +2.34324E7 6.2 5.9 98 96332 0 0 277 0 0 0 0 0 0 0 228 0 0 0 800 2000 0 999999999 17 0 0 88 0.2 0 0 +2.3436E7 5 5 100 95624 0 0 272 0 0 0 0 0 0 0 54 1 0 0 5000 2000 0 999999999 16 0 0 88 0.2 0 0 +2.34396E7 3 3 100 95584 4 12 262 1 0 1 59 0 59 24 219 0.5 0 0 800 2000 0 999999999 13 0 0 88 0.2 0 0 +2.34432E7 7.6 7.2 97 96454 298 1362 284 133 259 76 14759 8675 8503 2649 235 0 0 0 3000 2000 0 999999999 20 0 0 88 0.2 0 0 +2.34468E7 12 8 76 95759 574 1362 303 354 560 118 40772 33710 13636 4929 136 0 0 0 5000 2000 0 999999999 21 0 0 88 0.2 0 0 +2.34504E7 14.4 8.1 65 96039 813 1362 332 532 607 170 62319 42492 20031 7745 173 0.8 5 5 6500 2000 9 999999999 21 0 0 88 0.2 0 0 +2.3454E7 16.9 8.1 56 96318 998 1362 325 738 785 163 89239 52925 19848 8151 50 1.5 0 0 8000 2000 0 999999999 21 0 0 88 0.2 0 0 +2.34576E7 19 7 46 95888 1117 1362 333 850 784 209 102642 55977 25305 10331 66 0 0 0 8000 2000 0 999999999 19 0 0 88 0.2 0 0 +2.34612E7 22 6 35 95942 1161 1362 346 893 786 223 107916 57229 27147 11011 220 1.5 0 0 8000 2000 0 999999999 17 0 0 88 0.2 0 0 +2.34648E7 23.7 3.1 26 96005 1127 1362 350 865 784 217 104443 57885 26328 10694 200 1.5 0 0 8000 2000 0 999999999 13 0 0 88 0.2 0 0 +2.34684E7 25 3 24 95994 1018 1362 356 763 821 150 93298 55751 18462 7638 160 3.1 0 0 8000 2000 0 999999999 12 0 0 88 0.2 0 0 +2.3472E7 25 6 30 95994 842 1362 360 596 700 164 70389 48925 19430 7627 170 5.1 0 0 9900 2000 0 999999999 17 0 0 88 0.2 0 0 +2.34756E7 23.6 8.1 37 95927 609 1362 391 258 145 194 28835 10938 21698 7223 200 4.1 8 8 9900 7500 0 999999999 21 0 0 88 0.2 0 0 +2.34792E7 22 8 41 95942 337 1362 355 161 310 84 17945 12303 9425 3004 220 4.1 1 1 9900 2000 0 999999999 21 0 0 88 0.2 0 0 +2.34828E7 20 8 46 95906 43 1362 350 11 0 11 1011 0 1018 359 170 3.1 2 2 9900 2000 0 999999999 21 0 0 88 0.2 0 0 +2.34864E7 17.8 7 49 96004 0 199 360 0 0 0 0 0 0 0 180 2.1 8 8 9900 7500 9 999999999 19 0 0 88 0.2 0 0 +2.349E7 17 8 55 95852 0 0 339 0 0 0 0 0 0 0 130 2.6 3 3 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.34936E7 14 8 67 95797 0 0 330 0 0 0 0 0 0 0 310 1.5 5 5 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.34972E7 11 8 82 95740 0 0 329 0 0 0 0 0 0 0 38 0 8 8 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.35008E7 11.5 8 79 95750 0 0 326 0 0 0 0 0 0 0 172 0 7 7 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.35044E7 12 8 76 95759 0 0 328 0 0 0 0 0 0 0 285 0 7 7 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.3508E7 10.8 6.9 77 95902 0 0 343 0 0 0 0 0 0 0 190 0 10 10 9900 7500 9 999999999 19 0 0 88 0.2 0 0 +2.35116E7 10 7 82 95721 0 0 323 0 0 0 0 0 0 0 173 1 8 8 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.35152E7 10 6 76 95721 0 0 317 0 0 0 0 0 0 0 118 1 7 7 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.35188E7 9.6 6.5 81 95784 0 0 337 0 0 0 0 0 0 0 70 1 10 10 9900 7500 9 999999999 18 0 0 88 0.2 0 0 +2.35224E7 10 7 82 95721 0 0 330 0 0 0 0 0 0 0 121 0 9 9 8000 7500 9 999999999 19 0 0 88 0.2 0 0 +2.3526E7 9 7 87 95702 9 43 325 1 0 1 112 0 113 46 177 0.5 9 9 8000 7500 9 999999999 19 0 0 88 0.2 0 0 +2.35296E7 11 7.5 79 96010 305 1363 335 71 0 71 6992 0 7044 2547 360 0.5 9 9 8000 7500 9 999999999 20 0 0 88 0.2 0 0 +2.35332E7 13 8 72 95778 581 1363 345 186 8 182 20684 613 20387 6740 240 0.5 9 9 8000 7500 9 999999999 21 0 0 88 0.2 0 0 +2.35368E7 16 8 59 95834 820 1363 360 296 17 286 33296 1429 32370 11217 200 1.5 9 9 8000 7500 9 999999999 21 0 0 88 0.2 0 0 +2.35404E7 17.5 7.8 53 96055 1004 1363 367 384 67 335 43974 5865 38563 14126 190 2.6 9 9 8000 7500 9 999999999 20 0 0 88 0.2 0 0 +2.3544E7 18 9 56 95870 1123 1363 371 440 21 423 50300 1940 48668 17291 180 3.6 9 9 8000 5100 9 999999999 23 0 0 88 0.2 0 0 +2.35476E7 19 8 49 95888 1166 1363 375 462 49 420 53170 4507 48656 17483 170 3.6 9 9 8000 5100 9 999999999 21 0 0 88 0.2 0 0 +2.35512E7 19.2 7.6 47 96010 1132 1363 376 446 21 428 50997 1979 49332 17480 200 4.6 9 9 8000 5100 9 999999999 20 0 0 88 0.2 0 0 +2.35548E7 19 6 43 95888 1023 1363 372 394 68 343 45200 6049 39587 14500 150 5.1 9 9 8000 5100 9 999999999 17 0 0 88 0.2 0 0 +2.35584E7 19 7 46 95888 846 1363 374 309 17 299 34811 1493 33826 11763 150 4.1 9 9 8000 5100 9 999999999 19 0 0 88 0.2 0 0 +2.3562E7 19.5 5.6 40 96091 613 1363 375 201 9 197 22433 719 22076 7325 150 4.1 9 9 8000 5100 9 999999999 16 0 0 88 0.2 0 0 +2.35656E7 19 8 49 95888 340 1363 375 84 0 84 8332 0 8395 3024 150 3.6 9 9 8000 4800 9 999999999 21 0 0 88 0.2 0 0 +2.35692E7 14.4 8.3 67 95903 46 1363 341 11 0 11 1017 0 1024 364 180 3.2 5 5 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.35728E7 13.4 7.9 69 96030 0 215 334 0 0 0 0 0 0 0 170 2.5 5 5 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +2.35764E7 12 7.6 75 95904 0 0 330 0 0 0 0 0 0 0 202 1.6 5 5 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.358E7 10.8 5.1 68 95881 0 0 329 0 0 0 0 0 0 0 215 1.9 6 6 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.35836E7 9.1 2.8 64 96073 0 0 303 0 0 0 0 0 0 0 255 2 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.35872E7 7.4 0.6 62 95894 0 0 325 0 0 0 0 0 0 0 290 2.2 9 9 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.35908E7 5.9 -1.4 59 95865 0 0 290 0 0 0 0 0 0 0 222 2.2 2 2 9900 2000 9 999999999 8 0 0 88 0.2 0 0 +2.35944E7 4.2 -1 68 96068 0 0 272 0 0 0 0 0 0 0 174 1.7 0 0 9900 2000 9 999999999 8 0 0 88 0.2 0 0 +2.3598E7 3 -0.9 74 95822 0 0 282 0 0 0 0 0 0 0 107 1.5 5 5 9900 2000 9 999999999 9 0 0 88 0.2 0 0 +2.36016E7 2.5 -0.9 77 95812 0 0 276 0 0 0 0 0 0 0 33 1.3 6 6 9900 2000 9 999999999 9 0 0 88 0.2 0 0 +2.36052E7 3.2 -0.6 76 96069 0 0 256 0 0 0 0 0 0 0 47 1.1 0 0 9900 2000 9 999999999 9 0 0 88 0.2 0 0 +2.36088E7 4.9 -0.4 68 95866 0 0 276 0 0 0 0 0 0 0 68 0.9 7 7 9900 2000 9 999999999 9 0 0 88 0.2 0 0 +2.36124E7 3 -1 74 95584 23 106 276 5 0 5 458 0 461 175 25 0.5 6 6 9900 2000 9 999999999 9 0 0 88 0.2 0 0 +2.3616E7 5.6 0.3 69 96613 318 1365 270 148 247 91 16404 10744 10074 3063 126 0.5 0 0 8000 2000 9 999999999 10 0 0 88 0.2 0 0 +2.36196E7 9 0 53 95702 594 1365 295 371 514 147 42333 35778 16885 5927 92 1 3 3 9900 2000 9 999999999 9 0 0 88 0.2 0 0 +2.36232E7 11 0 47 95740 833 1365 300 591 688 171 69519 50352 20260 7863 260 2.1 2 2 9900 2000 9 999999999 9 0 0 88 0.2 0 0 +2.36268E7 13.1 0 41 96550 1017 1365 300 764 814 158 93086 56862 19382 7981 127 1.5 0 0 9900 2000 9 999999999 9 0 0 88 0.2 0 0 +2.36304E7 16 0 34 95834 1134 1365 312 875 786 222 105604 59193 26981 10922 200 3.6 0 0 9900 2000 9 999999999 9 0 0 88 0.2 0 0 +2.3634E7 17 -1 29 95852 1177 1365 315 917 789 237 110770 60261 28809 11588 150 2.6 0 0 9900 2000 9 999999999 8 0 0 88 0.2 0 0 +2.36376E7 17.9 -3.1 23 96422 1142 1365 317 886 787 229 106943 60298 27749 11193 180 2.6 0 0 9900 2000 9 999999999 7 0 0 88 0.2 0 0 +2.36412E7 19 -5 18 95888 1032 1365 319 784 779 196 94317 58574 23700 9600 180 2.1 0 0 9900 2000 9 999999999 6 0 0 88 0.2 0 0 +2.36448E7 20 -5 17 95906 854 1365 324 617 774 133 74401 53404 16055 6432 190 4.1 0 0 9900 2000 9 999999999 6 0 0 88 0.2 0 0 +2.36484E7 20.2 -4.9 17 96350 621 1365 325 402 594 132 46545 40450 15333 5575 170 4.6 0 0 9900 2000 9 999999999 6 0 0 88 0.2 0 0 +2.3652E7 20 -1 24 95906 348 1365 328 171 283 99 18929 13815 10985 3388 200 4.1 0 0 9900 2000 9 999999999 8 0 0 88 0.2 0 0 +2.36556E7 17 -1 29 95852 53 1365 315 13 0 13 1271 0 1280 441 220 5.1 0 0 9900 2000 9 999999999 8 0 0 88 0.2 0 0 +2.36592E7 15.2 -0.6 34 96467 0 247 308 0 0 0 0 0 0 0 220 4.6 0 0 9900 2000 9 999999999 9 0 0 88 0.2 0 0 +2.36628E7 14 -1 35 95797 0 0 302 0 0 0 0 0 0 0 160 3.6 0 0 9900 2000 9 999999999 8 0 0 88 0.2 0 0 +2.36664E7 14 -2 32 95797 0 0 301 0 0 0 0 0 0 0 190 4.1 0 0 9900 2000 9 999999999 8 0 0 88 0.2 0 0 +2.367E7 9.6 -0.1 51 96578 0 0 285 0 0 0 0 0 0 0 16 1 0 0 9900 2000 9 999999999 9 0 0 88 0.2 0 0 +2.36736E7 8 0 57 95683 0 0 293 0 0 0 0 0 0 0 190 1.5 4 4 9900 2000 9 999999999 9 0 0 88 0.2 0 0 +2.36772E7 8 0 57 95683 0 0 279 0 0 0 0 0 0 0 30 2.1 0 0 7000 2000 9 999999999 9 0 0 88 0.2 0 0 +2.36808E7 6.1 0.3 66 96472 0 0 272 0 0 0 0 0 0 0 20 2.6 0 0 3000 2000 9 999999999 10 0 0 88 0.2 0 0 +2.36844E7 6 0 65 95644 0 0 271 0 0 0 0 0 0 0 30 2.1 0 0 7000 2000 9 999999999 9 0 0 88 0.2 0 0 +2.3688E7 5 0 70 95624 0 0 267 0 0 0 0 0 0 0 10 1 0 0 7000 2000 9 999999999 9 0 0 88 0.2 0 0 +2.36916E7 5.4 0 68 96382 0 0 269 0 0 0 0 0 0 0 225 0.5 0 0 7000 2000 9 999999999 10 0 0 88 0.2 0 0 +2.36952E7 4 0 75 95604 0 0 263 0 0 0 0 0 0 0 20 2.1 0 0 7000 2000 9 999999999 10 0 0 88 0.2 0 0 +2.36988E7 4 -1 69 95604 29 137 262 7 0 7 697 0 701 255 18 1 0 0 7000 2000 9 999999999 9 0 0 88 0.2 0 0 +2.37024E7 8.2 0.1 57 96381 325 1365 280 153 254 93 16923 11347 10292 3138 1 1.5 0 0 8000 2000 9 999999999 10 0 0 88 0.2 0 0 +2.3706E7 12 1 47 95759 601 1365 306 379 533 145 43347 36675 16621 5882 220 1 2 2 9900 2000 9 999999999 10 0 0 88 0.2 0 0 +2.37096E7 15 1 39 95815 839 1365 315 597 764 128 71908 51029 15462 6189 240 0.5 1 1 9900 2000 9 999999999 10 0 0 88 0.2 0 0 +2.37132E7 18 -0.1 29 96244 1023 1365 321 770 815 160 93801 57067 19546 8051 175 1 0 0 9900 2000 9 999999999 9 0 0 88 0.2 0 0 +2.37168E7 21 -1 23 95924 1140 1365 333 882 787 225 106393 59655 27342 11051 170 3.1 0 0 9900 2000 9 999999999 8 0 0 88 0.2 0 0 +2.37204E7 23 -4 16 95959 1183 1365 338 926 789 243 111788 61276 29466 11815 160 6.2 0 0 9900 2000 9 999999999 6 0 0 88 0.2 0 0 +2.3724E7 24.1 -3.7 15 96078 1147 1365 344 892 787 231 107585 60593 28025 11291 180 5.1 0 0 9900 2000 9 999999999 6 0 0 88 0.2 0 0 +2.37276E7 25 -4 14 95994 1037 1365 348 787 779 196 94713 58442 23737 9622 170 5.7 0 0 9900 2000 9 999999999 6 0 0 88 0.2 0 0 +2.37312E7 26 -3 14 96011 859 1365 354 619 770 135 74540 53021 16342 6548 170 5.1 0 0 9900 2000 9 999999999 7 0 0 88 0.2 0 0 +2.37348E7 24.7 -3.8 14 95946 625 1365 346 404 593 134 46808 40410 15517 5643 220 5.7 0 0 9900 2000 9 999999999 6 0 0 88 0.2 0 0 +2.37384E7 23 2 25 95959 351 1365 346 172 335 86 19328 14757 9706 3114 210 6.2 0 0 9900 2000 9 999999999 11 0 0 88 0.2 0 0 +2.3742E7 19 5 40 95888 57 1365 337 14 0 14 1340 0 1349 465 210 5.1 1 1 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.37456E7 17.1 3.4 40 96019 0 263 320 0 0 0 0 0 0 0 170 2.6 0 0 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +2.37492E7 16 5 48 95834 0 0 328 0 0 0 0 0 0 0 150 4.1 2 2 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.37528E7 14 6 59 95797 0 0 326 0 0 0 0 0 0 0 160 3.6 4 4 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.37564E7 12.5 6.1 65 96085 0 0 303 0 0 0 0 0 0 0 170 2.1 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.376E7 12 5 62 95759 0 0 316 0 0 0 0 0 0 0 90 1.5 4 4 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.37636E7 10 6 76 95721 0 0 317 0 0 0 0 0 0 0 360 1.5 7 7 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.37672E7 8.5 4.6 76 96065 0 0 285 0 0 0 0 0 0 0 30 2.1 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.37708E7 9 4 71 95702 0 0 287 0 0 0 0 0 0 0 360 2.6 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.37744E7 7 3 76 95663 0 0 278 0 0 0 0 0 0 0 360 1 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +2.3778E7 7 2.9 75 96093 0 0 278 0 0 0 0 0 0 0 170 2.6 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +2.37816E7 8 4 76 95683 0 0 283 0 0 0 0 0 0 0 150 2.6 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.37852E7 9 5 76 95702 36 168 288 9 0 9 849 0 854 305 160 2.1 0 0 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +2.37888E7 11.2 6.4 72 96401 332 1366 298 156 312 81 17492 12079 9066 2894 150 3.1 0 0 8000 2000 9 999999999 18 0 0 88 0.2 0 0 +2.37924E7 14 7 63 95797 608 1366 329 364 498 142 41584 32878 16351 5840 120 2.1 5 5 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.3796E7 15 7 59 95815 846 1366 331 580 672 164 68462 46702 19477 7650 170 3.1 4 4 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.37996E7 17 7.5 54 96491 1029 1366 325 767 834 139 94201 53927 17201 7165 170 4.1 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.38032E7 17 7 52 95852 1146 1366 338 869 859 149 107925 55831 18624 7778 160 5.1 3 3 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.38068E7 18 8 52 95870 1188 1366 344 906 868 153 112971 55947 19134 7975 170 5.7 3 3 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.38104E7 17.7 8 53 96390 1152 1366 328 881 788 217 106457 56221 26377 10736 210 6.2 0 0 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.3814E7 18 7 49 95870 1041 1366 339 775 850 128 96052 54034 15907 6658 160 5.7 2 2 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.38176E7 18 7 49 95870 863 1366 339 610 770 124 73810 49247 15109 6111 170 5.7 2 2 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.38212E7 18 7.6 51 96329 629 1366 335 401 559 144 45949 36958 16557 5983 180 6.7 1 1 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.38248E7 15 8 63 95815 355 1366 335 165 279 93 18359 12222 10335 3281 210 5.1 5 5 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.38284E7 14 8 67 95797 61 1366 325 15 0 15 1399 0 1408 486 180 5.7 3 3 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.3832E7 12.3 8 75 96460 0 280 342 0 0 0 0 0 0 0 200 3.6 9 9 9900 5400 9 999999999 21 0 0 88 0.2 0 0 +2.38356E7 12 8 76 95759 0 0 340 0 0 0 0 0 0 0 160 3.6 9 9 9900 5400 9 999999999 21 0 0 88 0.2 0 0 +2.38392E7 11 8 82 95740 0 0 336 0 0 0 0 0 0 0 140 2.6 9 9 9900 5400 9 999999999 21 0 0 88 0.2 0 0 +2.38428E7 10.5 8 84 96472 0 0 315 0 0 0 0 0 0 0 150 2.6 5 5 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +2.38464E7 10 8 87 95721 0 0 312 0 0 0 0 0 0 0 180 3.6 5 5 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +2.385E7 10 8 87 95721 0 0 312 0 0 0 0 0 0 0 160 3.1 5 5 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +2.38536E7 10.3 8 86 96450 0 0 332 0 0 0 0 0 0 0 160 3.6 9 9 8000 600 9 999999999 21 0 0 88 0.2 0 0 +2.38572E7 11 8 82 95740 0 0 336 0 0 0 0 0 0 0 140 1.5 9 9 8000 600 9 999999999 21 0 0 88 0.2 0 0 +2.38608E7 11 8 82 95740 0 0 336 0 0 0 0 0 0 0 60 0 9 9 8000 450 9 999999999 21 0 0 88 0.2 0 0 +2.38644E7 10.4 7.9 84 96357 0 0 333 0 0 0 0 0 0 0 172 1 9 9 8000 450 9 999999999 21 0 0 88 0.2 0 0 +2.3868E7 11 8 82 95740 0 0 336 0 0 0 0 0 0 0 35 1 9 9 8000 450 9 999999999 21 0 0 88 0.2 0 0 +2.38716E7 11 8 82 95740 43 199 345 3 0 3 314 0 316 128 220 2.6 10 10 6000 450 9 999999999 21 0 0 88 0.2 0 0 +2.38752E7 10.7 8 83 96429 338 1367 344 51 0 51 4990 0 5028 2031 170 3.1 10 10 6000 450 9 999999999 21 0 0 88 0.2 0 0 +2.38788E7 12 8 76 95759 614 1367 350 122 0 122 12310 0 12414 5209 302 0 10 10 7000 420 9 999999999 21 0 0 88 0.2 0 0 +2.38824E7 13 8 72 95778 852 1367 355 189 1 189 22127 44 22188 8579 10 3.6 10 10 6000 420 9 999999999 21 0 0 88 0.2 0 0 +2.3886E7 13.3 8.7 74 96384 1035 1367 357 243 9 236 28642 686 27974 11125 240 1.5 10 10 6000 480 9 999999999 22 0 0 88 0.2 0 0 +2.38896E7 15 9 67 95815 1152 1367 336 818 578 331 95578 47649 38976 14876 190 2.6 5 5 5000 480 9 999999999 23 0 0 88 0.2 0 0 +2.38932E7 14 9 72 95797 1193 1367 332 854 582 347 100020 48235 40873 15519 170 5.7 5 5 7000 480 9 999999999 23 0 0 88 0.2 0 0 +2.38968E7 15 8.6 66 96255 1157 1367 366 278 13 267 33122 988 31998 12699 180 4.6 10 10 8000 5400 9 999999999 22 0 0 88 0.2 0 0 +2.39004E7 15 8 63 95815 1046 1367 365 246 4 243 29031 312 28817 11433 180 5.1 10 10 8000 5400 9 999999999 21 0 0 88 0.2 0 0 +2.3904E7 15 8 63 95815 867 1367 355 318 24 303 35838 2062 34360 12042 170 6.2 9 9 8000 5100 9 999999999 21 0 0 88 0.2 0 0 +2.39076E7 14.9 8.4 65 96215 632 1367 355 208 33 193 23321 2499 21698 7362 160 5.1 9 9 8000 7500 9 999999999 22 0 0 88 0.2 0 0 +2.39112E7 14 8 67 95797 359 1367 330 164 210 109 17989 10326 11999 3652 170 5.7 5 5 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +2.39148E7 13 8 72 95778 64 1367 345 8 0 8 772 0 777 300 160 4.1 9 9 8000 6600 9 999999999 21 0 0 88 0.2 0 0 +2.39184E7 12.3 7.9 74 96242 0 297 342 0 0 0 0 0 0 0 180 4.6 9 9 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +2.3922E7 12.1 7.9 75 96001 0 0 328 0 0 0 0 0 0 0 354 3.6 7 7 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +2.39256E7 12 8 76 95759 0 0 321 0 0 0 0 0 0 0 130 2.6 5 5 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +2.39292E7 10.5 7.8 83 96227 0 0 333 0 0 0 0 0 0 0 180 1.5 9 9 8000 5400 9 999999999 21 0 0 88 0.2 0 0 +2.39328E7 10 8 87 95721 0 0 331 0 0 0 0 0 0 0 264 1 9 9 8000 5400 9 999999999 21 0 0 88 0.2 0 0 +2.39364E7 10 7 82 95721 0 0 330 0 0 0 0 0 0 0 300 1 9 9 5000 5400 9 999999999 19 0 0 88 0.2 0 0 +2.394E7 8.3 6.8 90 96109 0 0 322 0 0 0 0 0 0 0 20 1.5 9 9 5000 5400 9 999999999 19 0 0 88 0.2 0 0 +2.39436E7 9 7 87 95702 0 0 302 0 0 0 0 0 0 0 190 0.5 3 3 5000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.39472E7 8 7 93 95683 0 0 303 0 0 0 0 0 0 0 170 2.1 5 5 5000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.39508E7 9 7 87 95702 0 0 325 0 0 0 0 0 0 0 170 2.6 9 9 6000 5400 9 999999999 19 0 0 88 0.2 0 0 +2.39544E7 9 8 93 95702 0 0 335 0 0 0 0 0 0 0 150 3.1 10 10 7000 300 9 999999999 21 0 0 88 0.2 0 0 +2.3958E7 9 7 87 95702 49 229 334 4 0 4 363 0 366 148 150 3.1 10 10 7000 300 9 999999999 19 0 0 88 0.2 0 0 +2.39616E7 9.2 6.9 86 96183 345 1368 335 52 0 52 5154 0 5193 2097 160 3.1 10 10 8000 300 9 999999999 19 0 0 88 0.2 0 0 +2.39652E7 10 7 82 95721 621 1368 339 124 0 124 12520 0 12625 5299 150 2.6 10 10 8000 270 9 999999999 19 0 0 88 0.2 0 0 +2.39688E7 10 7 82 95721 858 1368 339 191 1 191 22378 47 22438 8678 150 2.1 10 10 8000 240 9 999999999 19 0 0 88 0.2 0 0 +2.39724E7 10.6 7.7 82 96276 1041 1368 343 245 4 242 28866 309 28656 11363 180 2.6 10 10 8000 300 9 999999999 20 0 0 88 0.2 0 0 +2.3976E7 12 8 76 95759 1157 1368 340 457 28 433 52346 2622 49969 17725 160 2.6 9 9 9000 300 9 999999999 21 0 0 88 0.2 0 0 +2.39796E7 14 7 63 95797 1198 1368 349 478 50 434 55046 4590 50387 18004 130 2.6 9 9 9000 750 9 999999999 19 0 0 88 0.2 0 0 +2.39832E7 15.2 7.3 59 96306 1162 1368 355 460 85 388 53190 7546 45144 16584 180 3.1 9 9 9000 750 9 999999999 19 0 0 88 0.2 0 0 +2.39868E7 17 7 52 95852 1050 1368 338 776 693 245 91677 53054 29059 11520 190 3.1 3 3 9000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.39904E7 17 5 45 95852 871 1368 336 614 751 136 73887 49881 16460 6626 140 3.1 3 3 9000 2000 9 999999999 15 0 0 88 0.2 0 0 +2.3994E7 18.3 6.4 46 96174 636 1368 336 408 609 125 47377 38525 14554 5391 160 2.6 1 1 9000 2000 9 999999999 18 0 0 88 0.2 0 0 +2.39976E7 17 6 48 95852 362 1368 334 179 337 89 19982 14906 10051 3238 220 4.6 2 2 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.40012E7 14 6 59 95797 68 1368 326 16 0 16 1538 0 1549 533 220 6.7 4 4 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.40048E7 12.9 6.2 64 96301 0 313 311 0 0 0 0 0 0 0 200 4.6 1 1 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.40084E7 12 6 67 95759 0 0 319 0 0 0 0 0 0 0 150 3.6 5 5 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.4012E7 11 5 66 95740 0 0 314 0 0 0 0 0 0 0 160 3.6 5 5 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.40156E7 9 5.5 79 96396 0 0 288 0 0 0 0 0 0 0 180 3.1 0 0 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +2.40192E7 9 6 81 95702 0 0 306 0 0 0 0 0 0 0 160 3.1 5 5 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.40228E7 8 5 81 95683 0 0 301 0 0 0 0 0 0 0 120 3.1 5 5 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +2.40264E7 9 4.8 75 96462 0 0 323 0 0 0 0 0 0 0 130 3.6 9 9 9900 900 9 999999999 15 0 0 88 0.2 0 0 +2.403E7 9 5 76 95702 0 0 332 0 0 0 0 0 0 0 170 1.5 10 10 9900 900 9 999999999 16 0 0 88 0.2 0 0 +2.40336E7 9 5 76 95702 0 0 332 0 0 0 0 0 0 0 250 2.1 10 10 9900 1050 9 999999999 16 0 0 88 0.2 0 0 +2.40372E7 9 5.4 78 96434 0 0 333 0 0 0 0 0 0 0 23 1 10 10 9900 1050 9 999999999 16 0 0 88 0.2 0 0 +2.40408E7 8 5 81 95683 0 0 327 0 0 0 0 0 0 0 60 1.5 10 10 9900 1200 9 999999999 16 0 0 88 0.2 0 0 +2.40444E7 8 5 81 95683 56 260 301 13 0 13 1217 0 1225 430 90 1 5 5 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +2.4048E7 9.4 5.9 79 96621 351 1369 290 170 283 98 18876 13091 10881 3382 170 2.1 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.40516E7 11 6 71 95740 627 1369 317 353 404 168 39999 28862 19146 6687 200 1.5 6 6 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.40552E7 13 6 62 95778 864 1369 321 588 572 227 67883 44799 26323 9905 262 1 4 4 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.40588E7 14.7 6.4 57 96703 1047 1369 352 405 59 360 46335 5266 41468 15100 170 6.7 9 9 9900 5100 9 999999999 18 0 0 88 0.2 0 0 +2.40624E7 15 6 55 95815 1163 1369 352 461 50 418 53030 4616 48488 17398 180 5.1 9 9 9900 5400 9 999999999 17 0 0 88 0.2 0 0 +2.4066E7 16 5 48 95834 1203 1369 356 481 50 437 55536 4701 50793 18108 170 4.1 9 9 9900 5400 9 999999999 15 0 0 88 0.2 0 0 +2.40696E7 17 4.3 43 96708 1167 1369 360 464 50 421 53426 4709 48815 17485 180 4.1 9 9 9900 5100 9 999999999 14 0 0 88 0.2 0 0 +2.40732E7 18 5 42 95870 1055 1369 366 409 21 393 46613 1994 45050 15989 190 4.6 9 9 9900 5100 9 999999999 15 0 0 88 0.2 0 0 +2.40768E7 18 6 45 95870 875 1369 367 322 55 287 36597 4742 32799 11723 180 5.7 9 9 9900 5100 9 999999999 17 0 0 88 0.2 0 0 +2.40804E7 17.8 5.8 45 96704 640 1369 343 397 471 177 44959 34490 20155 7018 190 6.2 4 4 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.4084E7 17 5 45 95852 366 1369 332 182 355 87 20405 15665 9785 3183 200 5.1 2 2 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.40876E7 16 5 48 95834 71 1369 328 17 0 17 1660 0 1671 570 220 4.6 2 2 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.40912E7 14.1 5.4 56 96796 0 330 316 0 0 0 0 0 0 0 220 4.1 1 1 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +2.40948E7 13 6 62 95778 0 0 321 0 0 0 0 0 0 0 150 2.6 4 4 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.40984E7 12 6 67 95759 0 0 319 0 0 0 0 0 0 0 170 2.1 5 5 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.4102E7 11.2 5.9 70 96835 0 0 298 0 0 0 0 0 0 0 124 0 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.41056E7 9 5 76 95702 0 0 288 0 0 0 0 0 0 0 350 0.5 0 0 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +2.41092E7 8 6 87 95683 0 0 319 0 0 0 0 0 0 0 50 2.1 9 9 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.41128E7 8 5 81 96670 0 0 284 0 0 0 0 0 0 0 253 1.5 0 0 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +2.41164E7 6 4 87 95644 0 0 308 0 0 0 0 0 0 0 40 1 9 9 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.412E7 6 4 87 95644 0 0 275 0 0 0 0 0 0 0 2 0.5 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.41236E7 5.7 3.5 86 96511 0 0 273 0 0 0 0 0 0 0 180 1 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.41272E7 5 4 93 95624 0 0 271 0 0 0 0 0 0 0 200 0.5 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.41308E7 5 3 87 95624 63 291 270 15 0 15 1465 0 1475 505 174 0.5 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +2.41344E7 8.6 5.4 80 96549 358 1369 287 175 333 88 19627 14610 9932 3191 360 1.5 0 0 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +2.4138E7 11 6 71 95740 633 1369 297 405 604 126 46979 38406 14658 5412 360 2.6 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.41416E7 15 6 55 95815 870 1369 314 620 780 125 75052 50253 15170 6142 50 2.1 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.41452E7 17.2 6 48 96371 1053 1369 324 790 783 189 95178 55349 22859 9348 210 1.5 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.41488E7 20 5 37 95906 1168 1369 335 899 791 226 108675 58027 27400 11099 200 2.6 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.41524E7 22 2 27 95942 1209 1369 341 941 793 242 113884 59905 29463 11839 210 2.6 0 0 9900 2000 9 999999999 11 0 0 88 0.2 0 0 +2.4156E7 24.7 0.3 20 96183 1171 1369 352 909 791 233 109746 59915 28282 11400 170 4.6 0 0 9900 2000 9 999999999 9 0 0 88 0.2 0 0 +2.41596E7 25 1 21 95994 1059 1369 354 802 783 197 96555 57510 23827 9699 160 4.6 0 0 9900 2000 9 999999999 10 0 0 88 0.2 0 0 +2.41632E7 26 2 21 96011 879 1369 360 632 778 133 76359 52214 16148 6518 160 5.7 0 0 9900 2000 9 999999999 11 0 0 88 0.2 0 0 +2.41668E7 25.5 1.6 21 96008 644 1369 357 417 605 133 48400 40401 15486 5697 180 4.6 0 0 9900 2000 9 999999999 11 0 0 88 0.2 0 0 +2.41704E7 24 4 27 95977 370 1369 353 185 351 90 20741 16114 10155 3286 210 6.2 0 0 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.4174E7 21 5 35 95924 75 1369 340 18 0 18 1751 0 1763 599 210 6.2 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.41776E7 19.4 5.5 40 96108 0 347 333 0 0 0 0 0 0 0 190 5.7 0 0 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +2.41812E7 17 6 48 95852 0 0 334 0 0 0 0 0 0 0 170 3.1 2 2 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.41848E7 16 7 55 95834 0 0 333 0 0 0 0 0 0 0 150 2.1 3 3 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.41884E7 14.6 6.9 60 96181 0 0 313 0 0 0 0 0 0 0 160 2.6 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.4192E7 13 6 62 95778 0 0 321 0 0 0 0 0 0 0 8 1 4 4 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.41956E7 12 6 67 95759 0 0 319 0 0 0 0 0 0 0 170 1.5 5 5 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.41992E7 10.9 6.8 76 96178 0 0 297 0 0 0 0 0 0 0 15 0.5 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.42028E7 10 4 66 95721 0 0 308 0 0 0 0 0 0 0 5 0.5 5 5 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.42064E7 8 4 76 95683 0 0 283 0 0 0 0 0 0 0 43 0 0 0 6000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.421E7 6.7 4 83 96144 0 0 278 0 0 0 0 0 0 0 10 1 0 0 6000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.42136E7 7 4 81 95663 0 0 279 0 0 0 0 0 0 0 360 1 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.42172E7 7 4 81 95663 69 321 279 17 0 17 1611 0 1622 553 286 1 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.42208E7 11.8 5.3 64 96195 364 1370 300 180 340 90 20151 15214 10086 3250 360 3.1 0 0 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +2.42244E7 16 6 51 95834 640 1370 332 407 595 130 47191 38307 15111 5572 214 1 3 3 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.4228E7 18 5 42 95870 876 1370 333 626 779 128 75727 50885 15561 6298 132 1 1 1 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.42316E7 20.6 4.8 35 96130 1058 1370 338 796 783 192 95971 56026 23227 9488 130 1.5 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.42352E7 22 5 33 95942 1173 1370 345 904 791 227 109275 58142 27585 11167 180 3.6 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.42388E7 25 4 26 95994 1214 1370 358 943 794 241 114143 59222 29314 11795 180 4.6 0 0 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.42424E7 25.5 3.8 25 96017 1176 1370 367 908 792 229 109727 58679 27853 11260 160 5.7 1 1 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +2.4246E7 26 1 20 96011 1063 1370 359 805 784 198 97016 57617 23960 9753 170 5.7 0 0 9900 2000 9 999999999 10 0 0 88 0.2 0 0 +2.42496E7 26 4 24 96011 883 1370 362 634 728 165 75275 51374 19716 7825 220 7.2 0 0 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.42532E7 24.6 5.2 29 95992 648 1370 378 389 490 157 44488 34246 18076 6487 210 6.7 5 5 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.42568E7 23 5 31 95959 373 1370 349 187 364 88 21040 16398 9925 3242 210 6.7 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.42604E7 20 5 37 95906 78 1370 335 19 0 19 1830 0 1843 625 200 6.2 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.4264E7 18.3 4.3 39 96136 0 364 349 0 0 0 0 0 0 0 190 6.2 6 6 9900 7500 9 999999999 14 0 0 88 0.2 0 0 +2.42676E7 17 5 45 95852 0 0 332 0 0 0 0 0 0 0 140 4.1 2 2 9900 7500 9 999999999 15 0 0 88 0.2 0 0 +2.42712E7 15 4 48 95815 0 0 322 0 0 0 0 0 0 0 150 3.1 2 2 9900 7500 9 999999999 14 0 0 88 0.2 0 0 +2.42748E7 15.2 4.5 49 96259 0 0 332 0 0 0 0 0 0 0 140 3.1 5 5 9900 7500 9 999999999 15 0 0 88 0.2 0 0 +2.42784E7 13 4 54 95778 0 0 317 0 0 0 0 0 0 0 160 3.1 3 3 9900 7500 9 999999999 14 0 0 88 0.2 0 0 +2.4282E7 13 5 58 95778 0 0 320 0 0 0 0 0 0 0 114 1 4 4 9900 7500 9 999999999 15 0 0 88 0.2 0 0 +2.42856E7 11.5 4.9 64 96218 0 0 311 0 0 0 0 0 0 0 180 3.6 3 3 9900 7500 9 999999999 15 0 0 88 0.2 0 0 +2.42892E7 9 4 71 95702 0 0 307 0 0 0 0 0 0 0 339 0.5 6 6 9900 7500 9 999999999 14 0 0 88 0.2 0 0 +2.42928E7 11 5 66 95740 0 0 314 0 0 0 0 0 0 0 160 2.1 5 5 9900 7500 9 999999999 15 0 0 88 0.2 0 0 +2.42964E7 10 5.3 73 96217 0 0 292 0 0 0 0 0 0 0 284 1 0 0 9900 7500 9 999999999 16 0 0 88 0.2 0 0 +2.43E7 9 5 76 95702 0 0 311 0 0 0 0 0 0 0 329 0.5 7 7 9900 7500 9 999999999 16 0 0 88 0.2 0 0 +2.43036E7 7 4 81 95663 76 351 279 18 0 18 1762 0 1774 602 294 0.5 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.43072E7 10.7 5.4 70 96268 371 1371 308 182 333 92 20406 15335 10372 3342 184 1 3 3 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +2.43108E7 14 6 59 95797 646 1371 326 403 569 136 46653 37293 15746 5788 260 1 4 4 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.43144E7 17 6 48 95852 882 1371 334 629 732 158 74862 50370 18891 7534 200 2.1 2 2 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.4318E7 19.3 6.3 43 96239 1064 1371 334 800 784 192 96392 55502 23206 9492 210 2.1 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.43216E7 21 6 38 95924 1179 1371 341 907 792 227 109714 57807 27609 11181 170 5.1 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.43252E7 22 5 33 95942 1218 1371 345 946 795 241 114533 58892 29313 11800 180 5.1 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.43288E7 23.3 5.6 32 96102 1180 1371 351 910 792 228 109985 58026 27751 11231 170 4.6 0 0 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +2.43324E7 24 5 29 95977 1067 1371 354 804 784 194 96965 56173 23540 9616 170 6.2 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.4336E7 25 5 28 95994 887 1371 359 636 785 129 77041 51310 15677 6359 170 5.7 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.43396E7 24.5 5.4 29 96019 652 1371 372 416 592 134 48175 38887 15636 5772 170 6.2 3 3 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +2.43432E7 23 7 36 95959 377 1371 352 189 353 92 21204 16138 10373 3367 190 5.7 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.43468E7 20 9 49 95906 82 1371 351 20 0 20 1896 0 1909 649 210 5.1 2 2 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.43504E7 17.7 8.5 55 96040 0 382 343 0 0 0 0 0 0 0 180 3.1 3 3 9900 2000 9 999999999 22 0 0 88 0.2 0 0 +2.4354E7 17 9 59 95852 0 0 343 0 0 0 0 0 0 0 150 2.6 4 4 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.43576E7 16 9 63 95834 0 0 341 0 0 0 0 0 0 0 170 2.1 5 5 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.43612E7 14.4 8.8 69 96055 0 0 328 0 0 0 0 0 0 0 146 1.5 3 3 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.43648E7 13 8 72 95778 0 0 329 0 0 0 0 0 0 0 150 3.6 6 6 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.43684E7 12 8 76 95759 0 0 328 0 0 0 0 0 0 0 160 2.6 7 7 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.4372E7 11.5 7.8 78 95991 0 0 301 0 0 0 0 0 0 0 37 1 0 0 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.43756E7 10 7 82 95721 0 0 323 0 0 0 0 0 0 0 300 1.5 8 8 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.43792E7 9 7 87 95702 0 0 290 0 0 0 0 0 0 0 25 1 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.43828E7 9.2 7.4 88 95928 0 0 304 0 0 0 0 0 0 0 167 1 3 3 7000 2000 9 999999999 20 0 0 88 0.2 0 0 +2.43864E7 8 6 87 95683 0 0 285 0 0 0 0 0 0 0 325 0 0 0 6000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.439E7 9 7 87 95702 82 381 290 20 0 20 1898 0 1911 649 145 1 0 0 4000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.43936E7 13.5 8.7 73 95943 377 1372 310 188 348 93 21061 15637 10422 3380 62 1 0 0 5000 2000 9 999999999 22 0 0 88 0.2 0 0 +2.43972E7 18 9 56 95870 652 1372 331 418 619 124 48719 38447 14535 5429 25 1 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.44008E7 19 9 52 95888 888 1372 335 633 786 124 76731 49387 15108 6153 180 2.6 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.44044E7 21.8 8.7 43 95867 1070 1372 348 802 862 130 99454 54098 16186 6791 190 3.1 0 0 8000 2000 9 999999999 22 0 0 88 0.2 0 0 +2.4408E7 24 9 38 95977 1184 1372 359 908 793 224 109808 56402 27288 11079 190 4.1 0 0 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.44116E7 25 8 34 95994 1223 1372 362 946 795 238 114581 57556 28968 11691 180 5.1 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.44152E7 26.3 8.5 32 95709 1185 1372 369 910 793 226 110020 56699 27426 11127 160 6.7 0 0 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.44188E7 26 9 34 96011 1072 1372 369 803 862 130 99649 53979 16220 6807 170 7.7 0 0 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.44224E7 24 10 41 95977 891 1372 367 634 787 124 76935 48924 15061 6142 210 6.2 1 1 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +2.4426E7 22.8 9.7 43 95705 655 1372 354 421 623 124 49057 38377 14477 5422 210 6.7 0 0 9900 2000 9 999999999 24 0 0 88 0.2 0 0 +2.44296E7 22 11 50 95942 381 1372 363 189 327 99 21082 14942 11042 3546 180 7.7 2 2 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +2.44332E7 18 10 59 95870 86 1372 349 20 0 20 1924 0 1937 663 160 5.1 4 4 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +2.44368E7 16 10.2 68 95820 0 399 323 0 0 0 0 0 0 0 160 5.1 0 0 9900 2000 9 999999999 26 0 0 88 0.2 0 0 +2.44404E7 15 10 72 95815 0 0 340 0 0 0 0 0 0 0 160 3.1 6 6 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +2.4444E7 13 9 77 95778 0 0 334 0 0 0 0 0 0 0 170 3.1 7 7 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.44476E7 12.1 9.1 82 95756 0 0 305 0 0 0 0 0 0 0 170 3.1 0 0 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.44512E7 11 9 87 95740 0 0 337 0 0 0 0 0 0 0 170 2.6 9 9 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.44548E7 10 9 93 95721 0 0 296 0 0 0 0 0 0 0 160 2.6 0 0 4000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.44584E7 9.5 9.1 97 95603 0 0 339 0 0 0 0 0 0 0 180 3.1 10 10 600 30 0 999999999 23 0 0 88 0.2 0 0 +2.4462E7 10 9 93 95721 0 0 341 0 0 0 0 0 0 0 170 3.1 10 10 600 30 0 999999999 23 0 0 88 0.2 0 0 +2.44656E7 10 9 93 95721 0 0 341 0 0 0 0 0 0 0 160 4.1 10 10 600 30 0 999999999 23 0 0 88 0.2 0 0 +2.44692E7 9.6 9.5 99 95624 0 0 340 0 0 0 0 0 0 0 170 3.1 10 10 600 30 0 999999999 24 0 0 88 0.2 0 0 +2.44728E7 10 10 100 95721 0 0 343 0 0 0 0 0 0 0 130 2.6 10 10 800 60 0 999999999 26 0 0 88 0.2 0 0 +2.44764E7 10 10 100 95721 88 411 343 7 0 7 641 0 646 261 223 1 10 10 700 60 0 999999999 26 0 0 88 0.2 0 0 +2.448E7 9.7 9.3 97 95824 383 1373 340 61 0 61 6007 0 6053 2458 260 2.6 10 10 700 30 0 919999999 24 0 0 88 0.2 0 0 +2.44836E7 10 10 100 95721 658 1373 343 133 0 133 13480 0 13595 5754 180 2.1 10 10 2000 60 0 919999999 26 0 0 88 0.2 0 0 +2.44872E7 11 10 94 95740 894 1373 347 200 1 200 23442 57 23497 9156 150 3.1 10 10 3500 90 0 919999999 26 0 0 88 0.2 0 0 +2.44908E7 11.5 9.4 87 95953 1075 1373 349 254 4 251 29941 269 29777 11825 160 3.1 10 10 6000 180 0 919999999 24 0 0 88 0.2 0 0 +2.44944E7 12 9 82 95759 1189 1373 351 287 4 283 34138 333 33892 13355 160 2.6 10 10 8000 240 0 919999999 23 0 0 88 0.2 0 0 +2.4498E7 14 9 72 95797 1228 1373 361 299 6 293 35598 468 35162 13811 160 3.6 10 10 8000 330 0 919999999 23 0 0 88 0.2 0 0 +2.45016E7 14.8 9.5 71 96005 1189 1373 356 471 66 414 54314 5866 48101 17420 150 4.1 9 9 8000 450 0 919999999 24 0 0 88 0.2 0 0 +2.45052E7 16 10 68 95834 1076 1373 342 749 564 308 87067 45900 36022 13781 180 5.1 5 5 8000 2000 0 919999999 25 0 0 88 0.2 0 0 +2.45088E7 17 10 63 95852 895 1373 347 607 691 157 72285 45918 18758 7527 180 5.1 5 5 9900 2000 0 919999999 25 0 0 88 0.2 0 0 +2.45124E7 17.2 10 63 95870 659 1373 328 424 626 124 49420 38466 14492 5437 170 4.6 0 0 8000 2000 0 919999999 25 0 0 88 0.2 0 0 +2.4516E7 17 10 63 95852 384 1373 327 193 354 94 21652 16023 10597 3451 170 4.6 0 0 8000 2000 0 919999999 25 0 0 88 0.2 0 0 +2.45196E7 15 10 72 95815 90 1373 340 19 0 19 1805 0 1817 639 170 4.1 6 6 9900 2000 0 919999999 25 0 0 88 0.2 0 0 +2.45232E7 14 9.7 75 95868 0 417 314 0 0 0 0 0 0 0 150 3.6 0 0 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +2.45268E7 13 10 82 95778 0 0 310 0 0 0 0 0 0 0 150 2.6 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +2.45304E7 12 9 82 95759 0 0 304 0 0 0 0 0 0 0 160 3.6 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.4534E7 10.7 8.7 87 95862 0 0 298 0 0 0 0 0 0 0 170 3.1 0 0 7000 2000 9 999999999 22 0 0 88 0.2 0 0 +2.45376E7 10 9 93 95721 0 0 296 0 0 0 0 0 0 0 170 3.1 0 0 6000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.45412E7 11 10 94 95740 0 0 338 0 0 0 0 0 0 0 200 2.1 9 9 6000 270 9 999999999 26 0 0 88 0.2 0 0 +2.45448E7 11.4 9.8 90 95979 0 0 349 0 0 0 0 0 0 0 197 1 10 10 7000 240 9 999999999 25 0 0 88 0.2 0 0 +2.45484E7 11 10 94 95740 0 0 347 0 0 0 0 0 0 0 160 2.6 10 10 4000 180 9 999999999 26 0 0 88 0.2 0 0 +2.4552E7 11 10 94 95740 0 0 347 0 0 0 0 0 0 0 200 2.1 10 10 6000 240 9 999999999 26 0 0 88 0.2 0 0 +2.45556E7 10.8 8.9 88 96025 0 0 345 0 0 0 0 0 0 0 190 3.6 10 10 6000 270 9 999999999 23 0 0 88 0.2 0 0 +2.45592E7 11 10 94 95740 0 0 347 0 0 0 0 0 0 0 210 3.6 10 10 5000 240 9 999999999 26 0 0 88 0.2 0 0 +2.45628E7 11 10 94 95740 95 440 347 7 0 7 685 0 690 280 140 2.6 10 10 5000 120 0 919999999 26 0 0 88 0.2 0 0 +2.45664E7 10.4 9.5 94 96225 389 1373 344 62 0 62 6144 0 6192 2517 150 2.6 10 10 5000 90 0 919999999 24 0 0 88 0.2 0 0 +2.457E7 11 10 94 95740 664 1373 347 135 0 135 13643 0 13760 5829 160 3.6 10 10 5000 90 0 919999999 26 0 0 88 0.2 0 0 +2.45736E7 11 10 94 95740 900 1373 347 202 1 201 23627 59 23682 9236 180 3.1 10 10 6000 90 0 919999999 26 0 0 88 0.2 0 0 +2.45772E7 13 10 82 95778 1081 1373 357 255 5 251 30099 359 29821 11855 170 3.1 10 10 6000 90 0 919999999 25 0 0 88 0.2 0 0 +2.45808E7 14 9 72 95797 1194 1373 351 473 28 449 54297 2612 51869 18309 210 2.1 9 9 6000 900 0 919999999 23 0 0 88 0.2 0 0 +2.45844E7 16 9 63 95834 1233 1373 361 492 49 448 56756 4512 52039 18526 99 1 9 9 6000 900 0 919999999 23 0 0 88 0.2 0 0 +2.4588E7 16.8 8.8 59 96184 1194 1373 365 473 84 400 54805 7467 46629 17065 109 1 9 9 6000 900 0 919999999 23 0 0 88 0.2 0 0 +2.45916E7 18 9 56 95870 1080 1373 350 754 568 308 87697 46524 35994 13781 183 1 5 5 6000 2000 0 919999999 23 0 0 88 0.2 0 0 +2.45952E7 19 9 52 95888 899 1373 355 598 657 168 70899 45009 20050 7993 180 3.6 5 5 6000 2000 0 919999999 23 0 0 88 0.2 0 0 +2.45988E7 17.6 9.2 58 95981 663 1373 343 422 602 132 48999 38149 15369 5728 220 6.2 3 3 6000 2000 0 919999999 23 0 0 88 0.2 0 0 +2.46024E7 17 9 59 95852 388 1373 343 191 327 98 21290 15428 11038 3570 210 5.1 4 4 9900 2000 0 919999999 23 0 0 88 0.2 0 0 +2.4606E7 15 9 67 95815 93 1373 336 21 0 21 1983 0 1997 692 210 4.1 5 5 9900 2000 0 919999999 23 0 0 88 0.2 0 0 +2.46096E7 13.5 8.5 72 96010 0 434 324 0 0 0 0 0 0 0 180 3.6 3 3 9900 2000 9 999999999 22 0 0 88 0.2 0 0 +2.46132E7 12 8 76 95759 0 0 328 0 0 0 0 0 0 0 170 4.1 7 7 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.46168E7 12 8 76 95759 0 0 328 0 0 0 0 0 0 0 160 4.1 7 7 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.46204E7 10.9 7.5 80 96083 0 0 327 0 0 0 0 0 0 0 160 3.1 8 8 9900 6900 9 999999999 20 0 0 88 0.2 0.5 0 +2.4624E7 12 8 76 95759 0 0 340 0 0 0 0 0 0 0 170 2.1 9 9 9900 7500 9 999999999 21 0 0 88 0.2 0 0 +2.46276E7 12 7 71 95759 0 0 349 0 0 0 0 0 0 0 190 4.1 10 10 9900 510 9 999999999 19 0 0 88 0.2 0 0 +2.46312E7 11.5 7.7 77 96170 0 0 347 0 0 0 0 0 0 0 190 4.1 10 10 9900 510 9 999999999 20 0 0 88 0.2 0 0 +2.46348E7 10 8 87 95721 0 0 340 0 0 0 0 0 0 0 220 4.1 10 10 9900 390 9 999999999 21 0 0 88 0.2 0 0 +2.46384E7 9 8 93 95702 0 0 335 0 0 0 0 0 0 0 150 2.6 10 10 6000 240 0 919999999 21 0 0 88 0.2 0 0 +2.4642E7 9 8 93 95702 0 0 335 0 0 0 0 0 0 0 140 2.1 10 10 7000 240 0 919999999 21 0 0 88 0.2 0 0 +2.46456E7 9 8 93 95702 0 0 335 0 0 0 0 0 0 0 140 2.6 10 10 8000 270 0 919999999 21 0 0 88 0.2 0 0 +2.46492E7 9 8 93 95702 101 470 335 8 0 8 733 0 738 299 150 2.6 10 10 8000 270 0 919999999 21 0 0 88 0.2 0 0 +2.46528E7 9.6 8.4 92 96474 395 1374 339 64 0 64 6307 0 6356 2583 160 3.1 10 10 8000 360 0 919999999 22 0 0 88 0.2 0 0 +2.46564E7 10 8 87 95721 670 1374 340 137 0 137 13873 0 13992 5922 160 2.1 10 10 8000 450 0 919999999 21 0 0 88 0.2 0 0 +2.466E7 12 8 76 95759 905 1374 350 204 1 204 23914 63 23966 9340 170 1.5 10 10 8000 510 0 919999999 21 0 0 88 0.2 0 0 +2.46636E7 13 8.4 74 96454 1086 1374 355 257 4 254 30370 278 30198 11983 200 1.5 10 10 8000 450 0 919999999 22 0 0 88 0.2 0 0 +2.46672E7 15 8 63 95815 1199 1374 365 291 6 285 34572 454 34165 13448 115 0.5 10 10 8000 750 0 919999999 21 0 0 88 0.2 0 0 +2.46708E7 16 8 59 95834 1238 1374 360 495 76 427 57377 6852 49795 18005 200 1.5 9 9 8000 750 0 919999999 21 0 0 88 0.2 0 0 +2.46744E7 16 8 59 95834 1198 1374 360 476 49 433 54813 4550 50200 17941 210 2.6 9 9 8000 900 0 919999999 21 0 0 88 0.2 0 0 +2.4678E7 17 8 55 95852 1084 1374 365 421 65 369 48290 5828 42647 15599 190 3.1 9 9 8000 960 0 919999999 21 0 0 88 0.2 0 0 +2.46816E7 17 8 55 95852 903 1374 344 602 566 230 69730 43655 26823 10230 190 3.1 5 5 8000 2000 0 919999999 21 0 0 88 0.2 0 0 +2.46852E7 17.3 7.9 54 96269 667 1374 340 426 605 133 49500 38901 15518 5783 200 4.6 3 3 8000 2000 0 919999999 21 0 0 88 0.2 0 0 +2.46888E7 17 8 55 95852 392 1374 339 197 350 97 22042 16672 10911 3551 190 4.1 3 3 8000 2000 0 919999999 21 0 0 88 0.2 0 0 +2.46924E7 15 8 63 95815 97 1374 335 22 0 22 2130 0 2145 736 210 4.6 5 5 9900 2000 0 919999999 21 0 0 88 0.2 0 0 +2.4696E7 13.6 7.9 68 96352 0 452 316 0 0 0 0 0 0 0 210 3.6 1 1 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.46996E7 13 7 67 95778 0 0 320 0 0 0 0 0 0 0 190 2.6 3 3 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.47032E7 12 8 76 95759 0 0 316 0 0 0 0 0 0 0 140 2.1 3 3 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.47068E7 11.2 7.2 76 96325 0 0 312 0 0 0 0 0 0 0 190 1.5 3 3 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.47104E7 10 7 82 95721 0 0 307 0 0 0 0 0 0 0 290 1.5 3 3 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.4714E7 10 7 82 95721 0 0 311 0 0 0 0 0 0 0 150 2.1 5 5 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.47176E7 8.4 5.6 83 96186 0 0 303 0 0 0 0 0 0 0 29 1 5 5 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.47212E7 8 6 87 95683 0 0 302 0 0 0 0 0 0 0 124 1 5 5 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.47248E7 7 5 87 95663 0 0 296 0 0 0 0 0 0 0 160 2.1 5 5 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +2.47284E7 8.4 5.6 83 96064 0 0 303 0 0 0 0 0 0 0 193 0.5 5 5 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.4732E7 7 6 93 95663 0 0 315 0 0 0 0 0 0 0 33 1 9 9 8000 5400 9 999999999 17 0 0 88 0.2 0 0 +2.47356E7 8 5 81 95683 107 499 318 13 0 13 1277 0 1286 495 109 1 9 9 8000 5400 9 999999999 16 0 0 88 0.2 0 0 +2.47392E7 9.3 6.3 81 95968 401 1375 326 107 5 106 11927 244 11819 3804 38 1 9 9 6000 5100 9 999999999 18 0 0 88 0.2 0 0 +2.47428E7 11 7 76 95740 676 1375 334 227 19 218 25407 1494 24503 8270 230 2.6 9 9 8000 7500 9 999999999 19 0 0 88 0.2 0 0 +2.47464E7 13 8 72 95778 911 1375 345 337 64 295 38389 5473 33760 12202 150 3.6 9 9 8000 7500 9 999999999 21 0 0 88 0.2 0 0 +2.475E7 14.8 8.3 65 96091 1091 1375 354 424 21 407 48296 1942 46721 16604 150 5.7 9 9 8000 5700 9 999999999 21 0 0 88 0.2 0 0 +2.47536E7 16 8 59 95834 1204 1375 360 479 49 435 55139 4554 50506 18035 150 2.6 9 9 8000 5700 9 999999999 21 0 0 88 0.2 0 0 +2.47572E7 17 8 55 95852 1242 1375 365 497 50 452 57384 4578 52600 18684 200 4.1 9 9 8000 5700 9 999999999 21 0 0 88 0.2 0 0 +2.47608E7 15.6 7.9 60 96096 1203 1375 358 478 49 435 55054 4558 50425 18009 220 6.7 9 9 8000 5100 9 999999999 21 0 0 88 0.2 0 0 +2.47644E7 15 8 63 95815 1088 1375 355 423 21 406 48147 1947 46574 16548 210 6.2 9 9 8000 5400 9 999999999 21 0 0 88 0.2 0 0 +2.4768E7 14 9 72 95797 907 1375 351 335 24 319 37807 2098 36258 12769 210 7.2 9 9 8000 5400 9 999999999 23 0 0 88 0.2 0 0 +2.47716E7 12.6 8.4 76 96182 670 1375 353 137 0 137 13864 0 13983 5920 210 6.2 10 10 8000 5400 9 999999999 22 0 0 88 0.2 0 0 +2.47752E7 13 8 72 95778 395 1375 355 64 0 64 6303 0 6352 2580 180 4.6 10 10 8000 1200 9 999999999 21 0 0 88 0.2 0 0 +2.47788E7 12 8 76 95759 101 1375 350 8 0 8 730 0 735 298 210 5.1 10 10 8000 1200 9 999999999 21 0 0 88 0.2 0 0 +2.47824E7 11 7.7 80 96321 0 470 345 0 0 0 0 0 0 0 220 3.6 10 10 8000 900 9 999999999 20 0 0 88 0.2 0 0 +2.4786E7 11 8 82 95740 0 0 345 0 0 0 0 0 0 0 150 3.6 10 10 8000 900 9 999999999 21 0 0 88 0.2 0 0 +2.47896E7 10 8 87 95721 0 0 340 0 0 0 0 0 0 0 150 4.1 10 10 8000 750 9 999999999 21 0 0 88 0.2 0 0 +2.47932E7 10 8 87 95721 0 0 340 0 0 0 0 0 0 0 180 4.6 10 10 8000 450 9 999999999 21 0 0 88 0.2 0 0 +2.47968E7 10 7 82 95721 0 0 339 0 0 0 0 0 0 0 180 4.1 10 10 8000 300 9 999999999 19 0 0 88 0.2 0 0 +2.48004E7 9 5 76 95702 0 0 332 0 0 0 0 0 0 0 210 4.6 10 10 8000 300 9 999999999 16 0 0 88 0.2 0 0 +2.4804E7 9 5.9 81 96349 0 0 333 0 0 0 0 0 0 0 180 3.6 10 10 8000 300 9 999999999 17 0 0 88 0.2 0 0 +2.48076E7 9 6 81 95702 0 0 333 0 0 0 0 0 0 0 150 3.1 10 10 8000 450 9 999999999 17 0 0 88 0.2 0 0 +2.48112E7 9 6 81 95702 0 0 333 0 0 0 0 0 0 0 160 3.6 10 10 8000 450 9 999999999 17 0 0 88 0.2 0 0 +2.48148E7 8.6 5.2 79 96417 0 0 330 0 0 0 0 0 0 0 160 2.6 10 10 8000 450 9 999999999 16 0 0 88 0.2 0 0 +2.48184E7 9 5 76 95702 0 0 332 0 0 0 0 0 0 0 160 2.1 10 10 8000 450 9 999999999 16 0 0 88 0.2 0 0 +2.4822E7 9 5 76 95702 113 528 332 8 0 8 824 0 829 337 180 2.6 10 10 8000 600 9 999999999 16 0 0 88 0.2 0 0 +2.48256E7 9.6 5.3 75 96550 407 1376 335 67 0 67 6634 0 6686 2714 250 1.5 10 10 8000 450 9 999999999 16 0 0 88 0.2 0 0 +2.48292E7 11 6 71 95740 681 1376 343 140 0 140 14259 0 14381 6087 300 1 10 10 8000 450 9 999999999 17 0 0 88 0.2 0 0 +2.48328E7 11 6 71 95740 916 1376 343 208 5 204 24398 399 24100 9413 180 2.6 10 10 8000 750 9 999999999 17 0 0 88 0.2 0 0 +2.48364E7 13.1 6.7 65 96560 1096 1376 344 427 28 405 48778 2627 46528 16583 160 2.6 9 9 8000 900 9 999999999 18 0 0 88 0.2 0 0 +2.484E7 14 7 63 95797 1209 1376 349 482 85 407 55840 7659 47462 17312 150 1.5 9 9 8000 900 9 999999999 19 0 0 88 0.2 0 0 +2.48436E7 16 6 51 95834 1247 1376 337 903 602 357 106286 50781 42372 16036 130 2.6 5 5 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.48472E7 18 6 45 96481 1207 1376 342 920 844 181 113571 57464 22388 9241 160 3.6 3 3 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.48508E7 18 7 49 95870 1092 1376 343 813 843 145 100400 54833 17943 7501 150 3.1 3 3 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.48544E7 19 7 46 95888 910 1376 347 646 767 139 77948 50373 16844 6841 200 3.6 3 3 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.4858E7 19.4 6.6 43 96345 674 1376 349 433 609 135 50346 39802 15781 5884 180 3.6 3 3 8000 2000 9 999999999 18 0 0 88 0.2 0 0 +2.48616E7 19 5 40 95888 399 1376 345 203 363 98 22798 18019 11042 3606 160 4.6 3 3 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +2.48652E7 18 5 42 95870 105 1376 333 25 0 25 2418 0 2435 821 180 5.7 1 1 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.48688E7 15.5 6.1 53 96416 0 489 316 0 0 0 0 0 0 0 210 4.1 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.48724E7 14 6 59 95797 0 0 326 0 0 0 0 0 0 0 170 3.6 4 4 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.4876E7 14 6 59 95797 0 0 326 0 0 0 0 0 0 0 150 2.6 4 4 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.48796E7 12.9 6.3 64 96471 0 0 305 0 0 0 0 0 0 0 160 1.5 0 0 9900 2000 9 999999999 18 0 0 88 0.2 0 0 +2.48832E7 12 6 67 95759 0 0 319 0 0 0 0 0 0 0 160 1.5 5 5 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.48868E7 10 6 76 95721 0 0 317 0 0 0 0 0 0 0 131 1 7 7 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.48904E7 10.3 5 70 96374 0 0 293 0 0 0 0 0 0 0 190 2.6 0 0 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +2.4894E7 10 5 71 95721 0 0 312 0 0 0 0 0 0 0 160 2.1 6 6 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +2.48976E7 6 4 87 95644 0 0 308 0 0 0 0 0 0 0 350 1.5 9 9 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.49012E7 5.9 4.1 88 96373 0 0 274 0 0 0 0 0 0 0 40 1.5 0 0 7000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.49048E7 6 4 87 95644 0 0 275 0 0 0 0 0 0 0 96 0 0 0 6000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.49084E7 7 5 87 95663 119 556 280 28 0 28 2747 0 2766 934 304 1 0 0 5000 2000 9 999999999 16 0 0 88 0.2 0 0 +2.4912E7 9.6 5.3 75 96465 413 1377 291 216 405 95 24426 20038 10751 3581 36 1 0 0 6000 2000 9 999999999 16 0 0 88 0.2 0 0 +2.49156E7 14 6 59 95797 687 1377 326 437 597 140 50833 39702 16300 6088 60 1 4 4 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.49192E7 16 6 51 95834 922 1377 332 661 736 168 78736 51413 20163 8078 229 1 3 3 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.49228E7 18.4 6.3 45 96403 1101 1377 336 833 848 155 102456 56303 19114 7966 128 1 1 1 9900 2000 9 999999999 18 0 0 88 0.2 0 0 +2.49264E7 20 6 40 95906 1214 1377 343 939 797 237 113593 58530 28786 11613 190 2.6 1 1 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.493E7 22 1 25 95942 1251 1377 340 981 831 227 119884 61330 27849 11271 160 3.6 0 0 9900 2000 9 999999999 10 0 0 88 0.2 0 0 +2.49336E7 23.9 3.3 26 96264 1211 1377 386 632 252 410 73325 23063 47951 17422 170 4.6 8 8 9900 7500 9 999999999 13 0 0 88 0.2 0 0 +2.49372E7 25 -1 18 95994 1096 1377 351 837 781 215 100613 59075 26032 10537 210 6.2 0 0 9900 7500 9 999999999 8 0 0 88 0.2 0 0 +2.49408E7 24 -2 17 95977 914 1377 345 666 640 242 77308 52572 28222 10671 210 7.2 0 0 9900 7500 9 999999999 8 0 0 88 0.2 0 0 +2.49444E7 23 1 23 96229 678 1377 387 230 136 163 26410 9829 18833 6812 220 7.2 9 9 9900 7500 9 999999999 10 0 0 88 0.2 0 0 +2.4948E7 22 3 29 95942 403 1377 342 209 308 119 23127 17485 13208 4111 210 6.2 0 0 9900 7500 9 999999999 12 0 0 88 0.2 0 0 +2.49516E7 20 5 37 95906 108 1377 335 26 0 26 2500 0 2517 850 210 5.1 0 0 9900 7500 9 999999999 15 0 0 88 0.2 0 0 +2.49552E7 18.5 4.1 38 96338 0 507 360 0 0 0 0 0 0 0 190 3.6 8 8 9900 7500 9 999999999 14 0 0 88 0.2 0 0 +2.49588E7 17 5 45 95852 0 0 332 0 0 0 0 0 0 0 150 3.1 2 2 9900 7500 9 999999999 15 0 0 88 0.2 0 0 +2.49624E7 15 5 51 95815 0 0 327 0 0 0 0 0 0 0 150 1 3 3 9900 7500 9 999999999 15 0 0 88 0.2 0 0 +2.4966E7 14 5.5 57 96435 0 0 325 0 0 0 0 0 0 0 323 1 4 4 9900 7500 9 999999999 16 0 0 88 0.2 0 0 +2.49696E7 10 4 66 95721 0 0 308 0 0 0 0 0 0 0 100 1.5 5 5 9900 7500 9 999999999 14 0 0 88 0.2 0 0 +2.49732E7 12 5 62 95759 0 0 316 0 0 0 0 0 0 0 177 0.5 4 4 9900 7500 9 999999999 15 0 0 88 0.2 0 0 +2.49768E7 10.1 3.3 63 96465 0 0 291 0 0 0 0 0 0 0 320 1.5 0 0 9900 7500 9 999999999 13 0 0 88 0.2 0 0 +2.49804E7 9 4 71 95702 0 0 307 0 0 0 0 0 0 0 20 2.1 6 6 9900 7500 9 999999999 14 0 0 88 0.2 0 0 +2.4984E7 9 4 71 95702 0 0 287 0 0 0 0 0 0 0 300 2.1 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.49876E7 6.8 3.5 79 96382 0 0 277 0 0 0 0 0 0 0 170 2.1 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.49912E7 7 4 81 95663 0 0 279 0 0 0 0 0 0 0 240 2.6 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.49948E7 9 4 71 95702 125 584 287 31 5 30 3401 0 3357 991 250 1.5 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.49984E7 11 5.1 67 96558 419 1377 296 221 320 124 24448 18531 13750 4310 40 3.1 0 0 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +2.5002E7 16 5 48 95834 693 1377 328 454 633 136 52994 42044 15958 5992 30 1.5 2 2 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.50056E7 19 4 37 95888 927 1377 330 672 794 138 81451 53072 16820 6853 110 2.1 0 0 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.50092E7 21.1 3.9 32 96499 1106 1377 339 840 790 206 101371 57590 24987 10185 183 1 0 0 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.50128E7 23 2 25 95959 1218 1377 346 949 798 244 114764 60332 29644 11904 140 1.5 0 0 9900 2000 9 999999999 11 0 0 88 0.2 0 0 +2.50164E7 25 2 22 95994 1255 1377 355 984 800 255 119167 60899 31118 12438 180 4.1 0 0 9900 2000 9 999999999 11 0 0 88 0.2 0 0 +2.502E7 26.5 2.7 21 96281 1215 1377 385 879 649 308 104415 52953 36749 14270 190 4.6 5 5 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +2.50236E7 26 3 23 96011 1100 1377 361 836 839 166 102391 57909 20459 8480 220 8.7 0 0 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +2.50272E7 27 3 21 96029 918 1377 366 665 790 139 80469 53213 16875 6856 210 6.7 0 0 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +2.50308E7 26.5 1 19 96243 681 1377 368 449 623 141 52166 42725 16428 6100 180 6.2 1 1 9900 2000 9 999999999 10 0 0 88 0.2 0 0 +2.50344E7 26 3 23 96011 407 1377 361 212 389 97 23864 19704 10987 3616 170 4.1 0 0 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +2.5038E7 23 6 33 95959 112 1377 350 27 0 27 2586 0 2603 879 220 4.6 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.50416E7 20.9 6.5 39 96296 0 525 341 0 0 0 0 0 0 0 200 5.7 0 0 9900 2000 9 999999999 18 0 0 88 0.2 0 0 +2.50452E7 20 7 43 95906 0 0 344 0 0 0 0 0 0 0 150 2.6 1 1 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.50488E7 18 7 49 95870 0 0 339 0 0 0 0 0 0 0 170 2.1 2 2 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.50524E7 14.8 6.8 59 96374 0 0 314 0 0 0 0 0 0 0 60 1 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.5056E7 14 7 63 95797 0 0 329 0 0 0 0 0 0 0 96 1 5 5 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.50596E7 13 6 62 95778 0 0 321 0 0 0 0 0 0 0 311 1 4 4 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.50632E7 12 5.9 66 96265 0 0 301 0 0 0 0 0 0 0 118 0.5 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.50668E7 11 6 71 95740 0 0 317 0 0 0 0 0 0 0 311 0 6 6 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.50704E7 10 5 71 95721 0 0 312 0 0 0 0 0 0 0 315 1 6 6 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +2.5074E7 8.4 5 79 96281 0 0 285 0 0 0 0 0 0 0 10 1.5 0 0 7000 2000 9 999999999 16 0 0 88 0.2 0 0 +2.50776E7 8 5 81 95683 0 0 284 0 0 0 0 0 0 0 39 1 0 0 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +2.50812E7 9 5 76 95702 131 612 288 33 16 32 3677 0 3516 1039 20 1.5 0 0 6000 2000 9 999999999 16 0 0 88 0.2 0 0 +2.50848E7 13.8 5.7 58 96337 425 1378 327 210 320 111 23431 17428 12448 4046 60 1.5 5 5 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.50884E7 17 5 45 95852 698 1378 332 460 606 153 53218 42015 17820 6595 312 1 2 2 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.5092E7 19 6 43 95888 932 1378 338 675 800 134 81921 52330 16333 6680 260 2.1 1 1 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.50956E7 21.9 6 36 96286 1111 1378 363 814 769 195 98621 54384 23734 9735 200 1.5 4 4 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.50992E7 24 5 29 95977 1223 1378 369 937 849 184 115668 58290 22820 9403 180 3.6 3 3 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.51028E7 27 3 21 96029 1260 1378 366 987 864 197 121833 60725 24509 10038 180 4.6 0 0 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +2.51064E7 26.6 2.5 21 96169 1219 1378 388 829 569 326 98006 47436 38806 14910 210 6.2 6 6 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +2.511E7 26 1 20 96011 1104 1378 380 783 659 256 92972 52231 30541 12103 220 7.2 5 5 9900 2000 9 999999999 10 0 0 88 0.2 0 0 +2.51136E7 27 5 24 96029 922 1378 390 620 669 173 73774 47449 20702 8264 170 6.7 5 5 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.51172E7 26 3 23 96011 685 1378 377 445 607 144 51648 41498 16743 6213 200 5.1 3 3 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +2.51208E7 25 5 28 95994 410 1378 374 211 374 100 23754 19046 11296 3708 210 4.6 3 3 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.51244E7 23 6 33 95959 116 1378 366 27 0 27 2641 0 2659 901 210 6.2 3 3 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.5128E7 21.6 5.4 35 96252 0 544 385 0 0 0 0 0 0 0 170 4.6 9 9 9900 7500 9 999999999 16 0 0 88 0.2 0 0 +2.51316E7 20 6 40 95906 0 0 378 0 0 0 0 0 0 0 160 2.6 9 9 9900 7500 9 999999999 17 0 0 88 0.2 0 0 +2.51352E7 19 6 43 95888 0 0 372 0 0 0 0 0 0 0 200 2.1 9 9 9900 7500 9 999999999 17 0 0 88 0.2 0 0 +2.51388E7 17 7 52 95852 0 0 343 0 0 0 0 0 0 0 320 1.5 5 5 9900 7500 9 999999999 19 0 0 88 0.2 0 0 +2.51424E7 16 6 51 95834 0 0 332 0 0 0 0 0 0 0 191 1 3 3 9900 7500 9 999999999 17 0 0 88 0.2 0 0 +2.5146E7 13 6 62 95778 0 0 321 0 0 0 0 0 0 0 12 1 4 4 9900 7500 9 999999999 17 0 0 88 0.2 0 0 +2.51496E7 13.7 5.7 58 96193 0 0 321 0 0 0 0 0 0 0 2 1 3 3 9900 7500 9 999999999 17 0 0 88 0.2 0 0 +2.51532E7 10 5 71 95721 0 0 312 0 0 0 0 0 0 0 159 1 6 6 9900 7500 9 999999999 16 0 0 88 0.2 0 0 +2.51568E7 11 5 66 95740 0 0 314 0 0 0 0 0 0 0 28 1 5 5 9900 7500 9 999999999 15 0 0 88 0.2 0 0 +2.51604E7 9.3 4.6 72 96100 0 0 289 0 0 0 0 0 0 0 102 0.5 0 0 9900 7500 9 999999999 15 0 0 88 0.2 0 0 +2.5164E7 10 5 71 95721 0 0 312 0 0 0 0 0 0 0 40 2.1 6 6 9900 7500 9 999999999 16 0 0 88 0.2 0 0 +2.51676E7 11 5 66 95740 137 640 314 33 2 33 3676 0 3664 1085 20 1.5 5 5 9900 7500 9 999999999 15 0 0 88 0.2 0 0 +2.51712E7 15.3 5.6 52 96194 430 1379 331 222 295 130 24507 17637 14410 4506 268 0.5 4 4 9900 7500 9 999999999 16 0 0 88 0.2 0 0 +2.51748E7 18 6 45 95870 703 1379 338 464 647 134 54241 42473 15772 5963 33 1 2 2 9900 7500 9 999999999 17 0 0 88 0.2 0 0 +2.51784E7 21 6 38 95924 937 1379 341 679 758 165 81271 52492 19803 7982 62 1 0 0 9900 7500 9 999999999 17 0 0 88 0.2 0 0 +2.5182E7 23.2 4.7 30 96100 1116 1379 374 741 573 277 87411 45822 32910 12911 249 1 6 6 9900 7500 9 999999999 15 0 0 88 0.2 0 0 +2.51856E7 25 4 26 95994 1227 1379 358 954 853 196 117376 59832 24239 9940 160 4.1 0 0 9900 7500 9 999999999 14 0 0 88 0.2 0 0 +2.51892E7 26 3 23 96011 1264 1379 361 990 816 243 120454 60779 29744 11961 160 3.1 0 0 9900 7500 9 999999999 12 0 0 88 0.2 0 0 +2.51928E7 28 6 25 95927 1223 1379 412 637 249 417 73847 22551 48632 17640 160 4.6 8 8 9900 7500 9 999999999 17 0 0 88 0.2 0 0 +2.51964E7 27 6 26 96029 1108 1379 370 839 564 386 96277 51416 44648 16193 220 7.2 0 0 9900 7500 9 999999999 17 0 0 88 0.2 0 0 +2.52E7 27 9 32 96029 925 1379 419 344 76 293 39166 6400 33552 12237 210 8.2 9 9 9900 7500 9 999999999 23 0 0 88 0.2 0 0 +2.52036E7 24.7 8.7 36 95909 689 1379 387 393 391 198 44353 29344 22437 7855 210 7.7 6 6 9900 7500 9 999999999 22 0 0 88 0.2 0 0 +2.52072E7 23 7 36 95959 414 1379 352 216 339 114 24016 18383 12766 4073 210 7.7 0 0 9900 7500 9 999999999 19 0 0 88 0.2 0 0 +2.52108E7 21 7 40 95924 120 1379 349 28 0 28 2752 0 2771 937 190 6.7 1 1 9900 7500 9 999999999 19 0 0 88 0.2 0 0 +2.52144E7 19 5.9 42 96101 0 563 355 0 0 0 0 0 0 0 170 5.7 6 6 9900 7500 9 999999999 17 0 0 88 0.2 0 0 +2.5218E7 17 6 48 95852 0 0 334 0 0 0 0 0 0 0 150 4.1 2 2 9900 7500 9 999999999 17 0 0 88 0.2 0 0 +2.52216E7 16 6 51 95834 0 0 332 0 0 0 0 0 0 0 150 3.6 3 3 9900 7500 9 999999999 17 0 0 88 0.2 0 0 +2.52252E7 15.3 6.5 56 96185 0 0 338 0 0 0 0 0 0 0 190 3.1 6 6 9900 7500 9 999999999 18 0 0 88 0.2 0 0 +2.52288E7 14 8 67 95797 0 0 330 0 0 0 0 0 0 0 150 3.6 5 5 9900 7500 9 999999999 21 0 0 88 0.2 0 0 +2.52324E7 13 8 72 95778 0 0 329 0 0 0 0 0 0 0 160 3.6 6 6 9900 7500 9 999999999 21 0 0 88 0.2 0 0 +2.5236E7 11.9 8.2 78 96225 0 0 324 0 0 0 0 0 0 0 170 3.6 6 6 9900 7500 9 999999999 21 0 0 88 0.2 0 0 +2.52396E7 11 9 87 95740 0 0 337 0 0 0 0 0 0 0 150 2.1 9 9 9900 7500 9 999999999 23 0 0 88 0.2 0 0 +2.52432E7 11 9 87 95740 0 0 337 0 0 0 0 0 0 0 190 4.1 9 9 9900 7500 9 999999999 23 0 0 88 0.2 0 0 +2.52468E7 10 9 93 95721 0 0 341 0 0 0 0 0 0 0 150 3.6 10 10 9900 7500 9 999999999 23 0 0 88 0.2 0 0 +2.52504E7 10 9 93 95721 0 0 332 0 0 0 0 0 0 0 160 4.6 9 9 7000 90 9 999999999 23 0 0 88 0.2 0 0 +2.5254E7 10 9 93 95721 142 668 332 20 0 20 1906 0 1919 734 190 4.6 9 9 5000 90 9 999999999 23 0 0 88 0.2 0 0 +2.52576E7 11.8 8.6 81 96403 436 1380 340 120 12 116 13391 663 13019 4231 74 1 9 9 8000 7500 9 999999999 22 0 0 88 0.2 0 0 +2.52612E7 14 9 72 95797 709 1380 334 408 348 229 45651 27812 25812 8794 14 1 6 6 9900 7500 9 999999999 23 0 0 88 0.2 0 0 +2.52648E7 17 9 59 95852 942 1380 343 661 674 201 77817 48717 23785 9399 210 1.5 4 4 9900 7500 9 999999999 23 0 0 88 0.2 0 0 +2.52684E7 18.2 8 51 96399 1121 1380 353 741 565 282 87212 44546 33407 13092 190 2.1 6 6 9900 7500 9 999999999 21 0 0 88 0.2 0 0 +2.5272E7 21 8 43 95924 1232 1380 350 952 845 198 116875 57903 24440 10029 190 2.6 1 1 9900 7500 9 999999999 21 0 0 88 0.2 0 0 +2.52756E7 22 9 43 95942 1268 1380 356 984 848 206 121047 57871 25400 10395 170 4.6 1 1 9900 7500 9 999999999 23 0 0 88 0.2 0 0 +2.52792E7 21.4 8.6 44 96315 1227 1380 370 827 553 336 97460 45078 39815 15252 210 5.7 6 6 9900 7500 9 999999999 22 0 0 88 0.2 0 0 +2.52828E7 21 9 46 95924 1111 1380 356 837 808 186 101542 55209 22688 9355 190 6.2 2 2 9900 7500 9 999999999 23 0 0 88 0.2 0 0 +2.52864E7 20 9 49 95906 929 1380 351 666 722 180 78900 50374 21380 8532 210 5.7 2 2 9900 7500 9 999999999 23 0 0 88 0.2 0 0 +2.529E7 21 9.5 48 96222 693 1380 379 304 156 226 33970 12365 25380 8580 180 5.7 8 8 9900 7500 9 999999999 24 0 0 88 0.2 0 0 +2.52936E7 19 10 56 95888 418 1380 351 214 292 125 23585 16344 13891 4336 220 6.2 3 3 9900 7500 9 999999999 25 0 0 88 0.2 0 0 +2.52972E7 17 8 55 95852 124 1380 344 28 0 28 2698 0 2716 933 210 6.2 5 5 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.53008E7 15.6 8.9 64 96408 0 582 336 0 0 0 0 0 0 0 200 4.6 4 4 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.53044E7 15 9 67 95815 0 0 336 0 0 0 0 0 0 0 150 3.6 5 5 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.5308E7 13 9 77 95778 0 0 334 0 0 0 0 0 0 0 150 3.6 7 7 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.53116E7 12.1 9.2 82 96475 0 0 305 0 0 0 0 0 0 0 160 3.1 0 0 9900 2000 9 999999999 24 0 0 88 0.2 0 0 +2.53152E7 11 9 87 95740 0 0 337 0 0 0 0 0 0 0 160 3.1 9 9 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.53188E7 10 10 100 95721 0 0 343 0 0 0 0 0 0 0 150 3.6 10 10 4000 30 9 999999999 26 0 0 88 0.2 0 0 +2.53224E7 11 10 94 95740 0 0 338 0 0 0 0 0 0 0 140 1.5 9 9 7000 750 9 999999999 26 0 0 88 0.2 0 0 +2.5326E7 11 9 87 95740 0 0 337 0 0 0 0 0 0 0 160 1.5 9 9 7000 960 9 999999999 23 0 0 88 0.2 0 0 +2.53296E7 10 10 100 95721 0 0 343 0 0 0 0 0 0 0 170 2.1 10 10 4000 60 9 999999999 26 0 0 88 0.2 0 0 +2.53332E7 10.7 9.6 93 96335 0 0 345 0 0 0 0 0 0 0 140 2.1 10 10 6000 90 9 999999999 25 0 0 88 0.2 0 0 +2.53368E7 10 10 100 95721 0 0 343 0 0 0 0 0 0 0 160 2.1 10 10 4000 120 9 999999999 26 0 0 88 0.2 0 0 +2.53404E7 10 9 93 95721 148 695 341 13 0 13 1242 0 1251 508 21 0.5 10 10 3500 90 0 919999999 23 0 0 88 0.2 0 0 +2.5344E7 11.1 9.2 88 96418 441 1381 347 74 0 74 7408 0 7467 3051 145 1 10 10 5000 150 0 919999999 24 0 0 88 0.2 0 0 +2.53476E7 12 9 82 95759 714 1381 351 148 0 148 15098 0 15229 6492 285 1 10 10 5000 210 0 919999999 23 0 0 88 0.2 0 0 +2.53512E7 14 10 77 95797 947 1381 352 353 55 315 40117 4753 36025 13010 291 0.5 9 9 7000 330 0 919999999 25 0 0 88 0.2 0 0 +2.53548E7 16.4 9.2 62 96309 1125 1381 324 851 718 266 100623 54855 31634 12531 17 1 0 0 8000 2000 0 919999999 23 0 0 88 0.2 0 0 +2.53584E7 20 9 49 95906 1236 1381 340 955 800 239 115609 57494 29064 11732 220 2.6 0 0 8000 2000 0 919999999 23 0 0 88 0.2 0 0 +2.5362E7 22 9 43 95942 1272 1381 356 988 802 249 119807 57979 30397 12218 220 1.5 1 1 9900 2000 0 919999999 23 0 0 88 0.2 0 0 +2.53656E7 24.2 6.1 31 96089 1231 1381 363 954 800 241 115482 58891 29355 11821 160 2.6 1 1 9900 2000 0 919999999 17 0 0 88 0.2 0 0 +2.53692E7 26 7 30 96011 1115 1381 382 834 849 148 103022 55433 18424 7700 140 4.6 3 3 9900 2000 0 919999999 18 0 0 88 0.2 0 0 +2.53728E7 25 8 34 95994 933 1381 362 673 765 157 80700 51501 18863 7633 210 6.2 0 0 9900 2000 0 919999999 20 0 0 88 0.2 0 0 +2.53764E7 23.7 9.3 40 95967 696 1381 379 424 487 178 48337 34821 20432 7358 210 7.7 5 5 9900 7500 0 919999999 23 0 0 88 0.2 0 0 +2.538E7 22 10 46 95942 422 1381 371 205 309 111 22907 16102 12437 4033 220 7.7 5 5 9900 7500 0 919999999 25 0 0 88 0.2 0 0 +2.53836E7 20 10 53 95906 128 1381 356 31 4 31 3450 0 3416 1012 210 5.7 3 3 9900 7500 0 919999999 25 0 0 88 0.2 0 0 +2.53872E7 17.6 9.5 59 96076 0 601 346 0 0 0 0 0 0 0 190 5.1 4 4 9900 7500 9 999999999 24 0 0 88 0.2 0 0 +2.53908E7 16 9 63 95834 0 0 341 0 0 0 0 0 0 0 150 4.6 5 5 9900 7500 9 999999999 23 0 0 88 0.2 0 0 +2.53944E7 15 9 67 95815 0 0 336 0 0 0 0 0 0 0 160 4.1 5 5 9900 7500 9 999999999 23 0 0 88 0.2 0 0 +2.5398E7 14.1 8.8 70 96134 0 0 327 0 0 0 0 0 0 0 150 4.1 3 3 9900 7500 9 999999999 23 0 0 88 0.2 0 0 +2.54016E7 14 9 72 95797 0 0 334 0 0 0 0 0 0 0 160 3.6 6 6 9900 7500 9 999999999 23 0 0 88 0.2 0 0 +2.54052E7 13 9 77 95778 0 0 334 0 0 0 0 0 0 0 160 3.6 7 7 9900 7500 9 999999999 23 0 0 88 0.2 0 0 +2.54088E7 12 8 76 96104 0 0 316 0 0 0 0 0 0 0 160 3.1 3 3 9900 7500 9 999999999 21 0 0 88 0.2 0 0 +2.54124E7 11 8 82 95740 0 0 329 0 0 0 0 0 0 0 160 2.6 8 8 9900 7500 9 999999999 21 0 0 88 0.2 0 0 +2.5416E7 10 8 87 95721 0 0 331 0 0 0 0 0 0 0 150 1.5 9 9 9900 7500 9 999999999 21 0 0 88 0.2 0 0 +2.54196E7 10.3 7.6 83 95727 0 0 313 0 0 0 0 0 0 0 198 1.8 5 5 9900 7500 9 999999999 20 0 0 88 0.2 0 0 +2.54232E7 9 7 87 95702 0 0 325 0 0 0 0 0 0 0 240 2.1 9 9 9900 7500 9 999999999 19 0 0 88 0.2 0 0 +2.54268E7 9 8 93 95702 153 721 303 43 48 37 4718 0 4141 1231 150 2.1 3 3 5000 2000 0 999999999 21 0 0 88 0.2 0 0 +2.54304E7 10 8 87 95721 446 1381 312 224 333 117 25075 18571 13091 4292 180 2.6 5 5 4000 2000 0 999999999 21 0 0 88 0.2 0 0 +2.5434E7 13 9 77 95778 719 1381 327 442 502 181 50593 36149 20819 7572 200 2.6 5 5 6000 2000 0 999999999 23 0 0 88 0.2 0 0 +2.54376E7 16 9 63 95834 952 1381 322 689 737 182 81873 51394 21677 8696 170 2.1 0 0 6000 2000 0 999999999 23 0 0 88 0.2 0 0 +2.54412E7 16.7 9.4 62 96182 1130 1381 348 746 561 287 87764 44043 33982 13297 160 4.6 6 6 6000 2000 0 999999999 24 0 0 88 0.2 0 0 +2.54448E7 17 10 63 95852 1240 1381 327 957 835 207 117096 56979 25499 10436 170 6.7 0 0 8000 2000 0 999999999 25 0 0 88 0.2 0 0 +2.54484E7 16 9 63 95834 1276 1381 322 992 780 272 119530 57949 32952 13109 170 8.7 0 0 8000 2000 0 999999999 23 0 0 88 0.2 0 0 +2.5452E7 16 9 63 96188 1235 1381 353 641 244 423 74194 21836 49297 17855 160 7.7 8 8 8000 2000 0 999999999 23 0 0 88 0.2 0 0 +2.54556E7 16 9 63 95834 1119 1381 322 845 562 390 96865 50435 45008 16344 160 7.2 0 0 8000 2000 0 999999999 23 0 0 88 0.2 0 0 +2.54592E7 15 9 67 95815 936 1381 356 348 55 311 39579 4776 35531 12802 170 7.7 9 9 8000 7500 0 999999999 23 0 0 88 0.2 0 0 +2.54628E7 14.1 8.9 71 96191 700 1381 352 237 19 227 26489 1526 25542 8663 170 7.7 9 9 8000 7500 0 999999999 23 0 0 88 0.2 0 0 +2.54664E7 13 9 77 95778 425 1381 346 115 8 113 12873 405 12663 4100 160 6.2 9 9 8000 7500 0 999999999 23 0 0 88 0.2 0 0 +2.547E7 12 9 82 95759 132 1381 341 17 0 17 1658 0 1669 643 190 4.1 9 9 8000 7500 0 999999999 23 0 0 88 0.2 0 0 +2.54736E7 11.5 8.4 81 96312 0 621 338 0 0 0 0 0 0 0 160 3.1 9 9 8000 7500 9 999999999 22 0 0 88 0.2 0 0 +2.54772E7 11 8 82 95740 0 0 317 0 0 0 0 0 0 0 160 3.6 5 5 8000 7500 9 999999999 21 0 0 88 0.2 0 0 +2.54808E7 11 8 82 95740 0 0 317 0 0 0 0 0 0 0 160 2.6 5 5 8000 7500 9 999999999 21 0 0 88 0.2 0 0 +2.54844E7 10.7 8 83 96335 0 0 334 0 0 0 0 0 0 0 160 3.1 9 9 8000 5400 9 999999999 21 0 0 88 0.2 0 0 +2.5488E7 10 8 87 95721 0 0 331 0 0 0 0 0 0 0 160 3.1 9 9 8000 750 9 999999999 21 0 0 88 0.2 0 0 +2.54916E7 10 7 82 95721 0 0 330 0 0 0 0 0 0 0 160 2.1 9 9 8000 750 9 999999999 19 0 0 88 0.2 0 0 +2.54952E7 10 7.5 84 96274 0 0 330 0 0 0 0 0 0 0 150 1.5 9 9 8000 600 9 999999999 20 0 0 88 0.2 0 0 +2.54988E7 11 8 82 95740 0 0 336 0 0 0 0 0 0 0 84 0.5 9 9 8000 600 9 999999999 21 0 0 88 0.2 0 0 +2.55024E7 11 8 82 95740 0 0 345 0 0 0 0 0 0 0 94 1 10 10 8000 600 9 999999999 21 0 0 88 0.2 0 0 +2.5506E7 10.7 7.8 82 96155 0 0 343 0 0 0 0 0 0 0 220 2.6 10 10 8000 600 9 999999999 21 0 0 88 0.2 0 0 +2.55096E7 10 8 87 95721 0 0 340 0 0 0 0 0 0 0 140 2.1 10 10 8000 600 9 999999999 21 0 0 88 0.2 0 0 +2.55132E7 10 8 87 95721 159 748 340 14 0 14 1402 0 1412 572 160 3.1 10 10 8000 750 9 999999999 21 0 0 88 0.2 0 0 +2.55168E7 11 7.7 80 96274 452 1382 345 77 0 77 7691 0 7752 3168 200 2.1 10 10 8000 750 9 999999999 20 0 0 88 0.2 0 0 +2.55204E7 12.3 7.8 74 96121 724 1382 325 408 321 240 45659 26381 26988 9159 140 2.1 6 6 9333 750 9 999999999 21 0 0 88 0.2 0 0 +2.5524E7 13.7 7.9 68 95968 957 1382 329 635 545 258 73463 43425 30045 11430 201 2.1 5 5 8666 750 9 999999999 21 0 0 88 0.2 0 0 +2.55276E7 15 8 63 95815 1134 1382 355 444 28 421 50744 2622 48437 17214 190 2.1 9 9 8000 4500 9 999999999 21 0 0 88 0.2 0 0 +2.55312E7 15 8 63 95815 1245 1382 355 497 85 421 57731 7635 49170 17852 130 2.6 9 9 8000 5400 9 999999999 21 0 0 88 0.2 0 0 +2.55348E7 19 7 46 95888 1280 1382 353 929 607 368 109569 51063 43635 16465 200 3.1 5 5 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.55384E7 19 6 43 95888 1239 1382 352 894 714 255 107899 53458 30927 12375 170 4.1 5 5 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.5542E7 21 7 40 95924 1123 1382 363 792 694 229 94790 51132 27535 11121 160 5.1 5 5 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.55456E7 21 7 40 95924 940 1382 363 633 552 258 73120 44446 29958 11318 180 5.1 5 5 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.55492E7 21.3 5.2 35 96114 704 1382 383 240 80 199 27188 6144 22697 7990 160 5.1 9 9 8000 4500 9 999999999 16 0 0 88 0.2 0 0 +2.55528E7 21 7 40 95924 429 1382 363 212 256 132 23340 15324 14628 4541 220 7.2 5 5 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.55564E7 19 6 43 95888 136 1382 372 18 0 18 1754 0 1766 677 220 6.2 9 9 8000 4500 9 999999999 17 0 0 88 0.2 0 0 +2.556E7 16.6 5.8 49 96228 0 640 360 0 0 0 0 0 0 0 200 5.1 9 9 8000 4500 9 999999999 17 0 0 88 0.2 0 0 +2.55636E7 16 6 51 95834 0 0 337 0 0 0 0 0 0 0 200 3.1 5 5 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.55672E7 15 6 55 95815 0 0 333 0 0 0 0 0 0 0 140 2.1 5 5 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.55708E7 13.1 6.2 63 96267 0 0 306 0 0 0 0 0 0 0 160 2.6 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.55744E7 12 7 71 95759 0 0 323 0 0 0 0 0 0 0 150 2.6 6 6 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.5578E7 11 6 71 95740 0 0 317 0 0 0 0 0 0 0 270 1.5 6 6 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.55816E7 9.4 5.5 77 96196 0 0 290 0 0 0 0 0 0 0 140 0 0 0 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +2.55852E7 8 5 81 95683 0 0 284 0 0 0 0 0 0 0 20 1.5 0 0 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +2.55888E7 8 5 81 95683 0 0 284 0 0 0 0 0 0 0 20 1.5 0 0 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +2.55924E7 7.4 5.1 85 96148 0 0 281 0 0 0 0 0 0 0 10 1.5 0 0 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +2.5596E7 7 5 87 95663 0 0 280 0 0 0 0 0 0 0 100 0 0 0 7000 2000 9 999999999 16 0 0 88 0.2 0 0 +2.55996E7 9 5 76 95702 164 774 288 49 73 40 5385 0 4444 1322 127 1 0 0 7000 2000 9 999999999 16 0 0 88 0.2 0 0 +2.56032E7 13.5 6.5 63 96255 457 1383 308 250 434 106 28235 23566 12071 4071 100 1 0 0 7000 2000 9 999999999 18 0 0 88 0.2 0 0 +2.56068E7 16 6 51 95834 729 1383 332 483 651 140 56526 43452 16507 6273 102 1 3 3 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.56104E7 18 7 49 95870 961 1383 339 697 804 138 84694 52527 16858 6926 264 1 2 2 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.5614E7 20.3 6 39 96200 1138 1383 338 867 795 212 104631 57459 25776 10501 290 1 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.56176E7 23 6 33 95959 1249 1383 350 971 802 247 117530 59308 30040 12069 150 3.1 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.56212E7 24 6 31 95977 1284 1383 371 991 804 245 120625 58863 29969 12057 180 4.6 3 3 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.56248E7 25 5 28 95994 1242 1383 374 954 802 234 115902 58730 28573 11541 200 5.7 3 3 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.56284E7 25 6 30 95994 1126 1383 376 845 855 149 104511 56188 18514 7735 230 6.7 3 3 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.5632E7 25 8 34 95994 944 1383 378 674 778 144 81444 51022 17433 7119 220 7.2 3 3 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.56356E7 24.2 7.8 35 96099 707 1383 374 460 631 138 53671 41247 16144 6095 220 7.2 3 3 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.56392E7 23 7 36 95959 433 1383 367 227 392 105 25586 20562 11853 3929 220 7.2 3 3 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.56428E7 20 5 37 95906 140 1383 350 36 25 34 4027 0 3754 1111 210 6.2 3 3 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.56464E7 18.6 3.4 36 96198 0 660 333 0 0 0 0 0 0 0 190 5.1 1 1 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +2.565E7 17 5 45 95852 0 0 332 0 0 0 0 0 0 0 150 4.6 2 2 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.56536E7 16 5 48 95834 0 0 328 0 0 0 0 0 0 0 150 3.6 2 2 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.56572E7 15 5 51 95815 0 0 327 0 0 0 0 0 0 0 160 3.1 3 3 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.56608E7 14 5 55 95797 0 0 322 0 0 0 0 0 0 0 160 3.1 3 3 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.56644E7 13 4 54 95778 0 0 317 0 0 0 0 0 0 0 160 2.1 3 3 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.5668E7 11 4 62 96189 0 0 301 0 0 0 0 0 0 0 348 0 1 1 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.56716E7 10 4 66 95721 0 0 308 0 0 0 0 0 0 0 140 1 5 5 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.56752E7 8 4 76 95683 0 0 306 0 0 0 0 0 0 0 350 1 7 7 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.56788E7 7.8 4.5 80 96061 0 0 288 0 0 0 0 0 0 0 100 0 1 1 9000 2000 9 999999999 15 0 0 88 0.2 0 0 +2.56824E7 8 4 76 95683 0 0 283 0 0 0 0 0 0 0 87 0.5 0 0 5000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.5686E7 9 5 76 95702 169 799 288 51 80 41 5661 0 4589 1368 184 1 0 0 4000 2000 9 999999999 16 0 0 88 0.2 0 0 +2.56896E7 14.4 5.3 54 96083 462 1384 324 251 423 110 28320 23618 12419 4178 213 0.5 3 3 4000 2000 9 999999999 16 0 0 88 0.2 0 0 +2.56932E7 17 6 48 95852 733 1384 337 484 641 144 56570 43242 16945 6430 250 0.5 3 3 4000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.56968E7 21 6 38 95924 966 1384 356 696 783 150 84141 52592 18185 7435 30 1 3 3 4000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.57004E7 23 6 33 95959 1143 1384 350 871 857 163 107230 57498 20221 8408 95 2.8 0 0 4000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.5704E7 25 6 30 95994 1253 1384 360 974 803 248 117972 59393 30176 12118 180 4.6 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.57076E7 26 4 24 96011 1288 1384 362 1010 805 262 122486 60794 31916 12735 170 5.1 0 0 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.57112E7 26.8 3.6 22 95878 1246 1384 382 959 803 237 116523 59407 28927 11664 220 7.2 3 3 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +2.57148E7 27 5 24 96029 1130 1384 369 860 795 211 103754 57781 25596 10427 210 6.7 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.57184E7 27 7 28 96029 947 1384 371 687 810 133 83569 52420 16219 6657 220 7.2 0 0 9900 2000 9 999999999 18 0 0 88 0.2 0 0 +2.5722E7 25.7 7.5 31 95803 711 1384 381 463 632 139 54045 41536 16258 6141 220 8.2 3 3 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.57256E7 24 8 36 95977 437 1384 358 233 408 104 26212 21198 11752 3918 220 6.7 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.57292E7 21 8 43 95924 144 1384 350 38 34 35 4247 0 3862 1145 210 6.2 1 1 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.57328E7 18.6 7.9 50 95952 0 679 332 0 0 0 0 0 0 0 180 4.1 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.57364E7 16 6 51 95834 0 0 332 0 0 0 0 0 0 0 150 4.6 3 3 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.574E7 15 6 55 95815 0 0 328 0 0 0 0 0 0 0 160 4.6 3 3 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.57436E7 14.5 4.9 52 96009 0 0 311 0 0 0 0 0 0 0 140 3.6 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.57472E7 14 5 55 95797 0 0 322 0 0 0 0 0 0 0 160 2.6 3 3 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.57508E7 13 4 54 95778 0 0 317 0 0 0 0 0 0 0 173 1 3 3 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.57544E7 11 5.1 67 95943 0 0 296 0 0 0 0 0 0 0 160 2.1 0 0 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +2.5758E7 11 5 66 95740 0 0 314 0 0 0 0 0 0 0 160 1 5 5 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.57616E7 9 5 76 95702 0 0 311 0 0 0 0 0 0 0 295 0.5 7 7 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +2.57652E7 9 5 76 95702 0 0 288 0 0 0 0 0 0 0 113 0 0 0 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +2.57688E7 8 5 81 95683 0 0 284 0 0 0 0 0 0 0 313 0.5 0 0 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +2.57724E7 11 5 66 95740 175 825 296 54 54 47 5906 137 5173 1505 215 0 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +2.5776E7 13.8 5.5 57 95930 467 1385 330 225 286 129 25125 17372 14441 4695 260 1 6 6 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +2.57796E7 17 6 48 95852 738 1385 334 493 627 159 57202 43724 18526 6950 283 1 2 2 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.57832E7 20 7 43 95906 970 1385 344 707 816 136 86186 53027 16594 6836 130 1.5 1 1 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.57868E7 21.1 7.5 41 95779 1147 1385 343 872 797 213 105317 56929 25819 10525 180 4.6 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.57904E7 22 6 35 95942 1256 1385 346 978 803 249 118399 59472 30302 12164 160 6.7 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.5794E7 24 7 34 95977 1291 1385 356 1009 805 258 122378 59489 31500 12604 180 7.7 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.57976E7 21.4 8 42 95737 1249 1385 360 956 879 163 119270 57135 20379 8458 210 10.8 3 3 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +2.58012E7 21 8 43 95924 1133 1385 350 859 796 207 103637 56378 25172 10285 220 9.8 1 1 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.58048E7 20 7 43 95906 951 1385 344 689 739 182 81934 52376 21722 8697 210 6.7 1 1 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.58084E7 19.4 7.9 47 95777 715 1385 359 412 415 198 46770 31287 22578 8022 150 7.2 6 6 9900 7500 9 999999999 20 0 0 88 0.2 0 0 +2.5812E7 18 8 52 95870 441 1385 344 234 401 106 26291 21119 11987 3991 150 5.7 3 3 9900 7500 9 999999999 21 0 0 88 0.2 0 0 +2.58156E7 16 7 55 95834 148 1385 333 40 36 36 4391 0 3976 1179 170 7.2 3 3 9900 7500 9 999999999 19 0 0 88 0.2 0 0 +2.58192E7 12.4 6.6 68 95932 0 699 317 0 0 0 0 0 0 0 200 8.7 3 3 9900 7500 9 999999999 18 0 0 88 0.2 0 0 +2.58228E7 12 6 67 95759 0 0 314 0 0 0 0 0 0 0 180 5.1 3 3 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.58264E7 11 6 71 95740 0 0 333 0 0 0 0 0 0 0 150 5.1 9 9 9900 1500 9 999999999 17 0 0 88 0.2 0 0 +2.583E7 9.8 6.1 78 96185 0 0 328 0 0 0 0 0 0 0 180 6.7 9 9 9900 1500 9 999999999 17 0 0 88 0.2 0 0 +2.58336E7 10 6 76 95721 0 0 310 0 0 0 0 0 0 0 150 3.1 5 5 9900 1500 9 999999999 17 0 0 88 0.2 0 0 +2.58372E7 10 6 76 95721 0 0 329 0 0 0 0 0 0 0 120 1.5 9 9 8000 900 9 999999999 17 0 0 88 0.2 0 0 +2.58408E7 9.4 5.7 78 96187 0 0 307 0 0 0 0 0 0 0 250 1.5 5 5 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.58444E7 10 5 71 95721 0 0 309 0 0 0 0 0 0 0 150 3.6 5 5 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +2.5848E7 10 5 71 95721 0 0 328 0 0 0 0 0 0 0 120 2.6 9 9 8000 3000 9 999999999 16 0 0 88 0.2 0 0 +2.58516E7 9.6 5.5 76 96285 0 0 326 0 0 0 0 0 0 0 240 1.5 9 9 8000 2700 9 999999999 16 0 0 88 0.2 0 0 +2.58552E7 10 6 76 95721 0 0 338 0 0 0 0 0 0 0 138 1 10 10 8000 2700 9 999999999 17 0 0 88 0.2 0 0 +2.58588E7 9 6 81 95702 180 850 324 29 0 29 2832 0 2852 1070 20 1.5 9 9 7000 2400 9 999999999 17 0 0 88 0.2 0 0 +2.58624E7 11.5 6 69 96388 471 1385 336 135 17 129 15075 1049 14480 4727 300 2.1 9 9 7000 2100 9 999999999 17 0 0 88 0.2 0 0 +2.5866E7 13 6 62 95778 742 1385 324 464 461 217 52557 36424 24684 8724 345 1 5 5 7000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.58696E7 15 6 55 95815 974 1385 333 663 649 206 78317 48073 24514 9725 280 1.5 5 5 7000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.58732E7 16 5 48 95834 1151 1385 336 818 671 261 97371 52006 31272 12421 60 2.6 5 5 7000 2000 9 999999999 15 0 0 88 0.2 0 0 +2.58768E7 18 3 37 95870 1260 1385 338 973 863 188 120476 59929 23351 9598 16 1 3 3 7000 2000 9 999999999 13 0 0 88 0.2 0 0 +2.58804E7 19 4 37 95888 1295 1385 344 1004 806 251 122176 59974 30671 12301 190 3.6 3 3 7000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.5884E7 20.2 4.6 36 96142 1253 1385 353 944 808 213 115623 57625 26292 10710 200 3.1 4 4 7000 2000 9 999999999 15 0 0 88 0.2 0 0 +2.58876E7 21 6 38 95924 1137 1385 361 805 673 253 95814 51483 30271 12074 220 7.2 5 5 7000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.58912E7 21 6 38 95924 954 1385 361 646 646 201 76237 47576 23867 9444 210 7.2 5 5 7000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.58948E7 18.7 7.4 48 96058 718 1385 352 443 525 171 50862 37289 19698 7232 220 9.3 5 5 7000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.58984E7 18 8 52 95870 444 1385 349 222 330 116 24834 18336 13049 4268 220 8.7 5 5 7000 2000 9 999999999 21 0 0 88 0.2 0 0 +2.5902E7 16 8 59 95834 152 1385 335 42 43 37 4601 0 4088 1214 220 6.7 3 3 7000 2000 9 999999999 21 0 0 88 0.2 0 0 +2.59056E7 15.4 7.2 58 96092 0 720 331 0 0 0 0 0 0 0 200 5.1 3 3 7000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.59092E7 14 7 63 95797 0 0 324 0 0 0 0 0 0 0 160 3.1 3 3 7000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.59128E7 13 7 67 95778 0 0 325 0 0 0 0 0 0 0 170 4.1 5 5 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.59164E7 12.3 7 70 96044 0 0 304 0 0 0 0 0 0 0 160 2.6 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.592E7 12 7 71 95759 0 0 323 0 0 0 0 0 0 0 170 2.6 6 6 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.59236E7 11 6 71 95740 0 0 317 0 0 0 0 0 0 0 250 1.5 6 6 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.59272E7 9.5 6.1 79 95830 0 0 291 0 0 0 0 0 0 0 290 1 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.59308E7 8 5 81 95683 0 0 312 0 0 0 0 0 0 0 241 0.5 8 8 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +2.59344E7 9 6 81 95702 0 0 317 0 0 0 0 0 0 0 324 0.5 8 8 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.5938E7 8.6 5.7 82 95831 0 0 304 0 0 0 0 0 0 0 190 2.1 5 5 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.59416E7 8 6 87 95683 0 0 319 0 0 0 0 0 0 0 220 1.5 9 9 9900 5400 9 999999999 17 0 0 88 0.2 0 0 +2.59452E7 9 6 81 95702 185 874 306 55 42 49 6009 214 5414 1585 173 0.5 5 5 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.59488E7 10.8 7.6 81 95968 476 1386 334 136 16 131 15224 976 14669 4795 160 3.6 9 9 9900 5400 9 999999999 20 0 0 88 0.2 0 0 +2.59524E7 12 8 76 95759 747 1386 340 258 21 247 28956 1698 27872 9520 150 2.1 9 9 9900 5400 9 999999999 21 0 0 88 0.2 0 0 +2.5956E7 13 8 72 95778 978 1386 345 368 57 328 41943 4981 37619 13596 276 1 9 9 9900 5400 9 999999999 21 0 0 88 0.2 0 0 +2.59596E7 15.3 7.2 58 95863 1155 1386 339 768 535 323 89893 44288 38000 14555 250 1 6 6 9900 5400 9 999999999 19 0 0 88 0.2 0 0 +2.59632E7 17 7 52 95852 1264 1386 343 914 703 274 109988 53271 33136 13150 180 3.6 5 5 9900 5400 9 999999999 19 0 0 88 0.2 0 0 +2.59668E7 18 7 49 95870 1299 1386 348 945 611 373 111482 51444 44313 16692 190 6.7 5 5 9900 5400 9 999999999 19 0 0 88 0.2 0 0 +2.59704E7 20 7 43 95906 1256 1386 379 504 109 405 58726 9639 47519 17456 190 6.7 9 9 9900 4500 9 999999999 19 0 0 88 0.2 0 0 +2.5974E7 21 3 30 95924 1140 1386 358 811 430 458 92304 42565 52430 18053 170 3.6 5 5 9900 4500 9 999999999 12 0 0 88 0.2 0 0 +2.59776E7 20 0 26 95906 958 1386 370 363 55 325 41358 5038 37234 13325 290 8.2 9 9 9900 2100 9 999999999 9 0 0 88 0.2 0 0 +2.59812E7 18.1 0.5 31 95744 722 1386 361 250 56 220 28190 4601 25017 8661 280 4.1 9 9 9900 2400 9 999999999 10 0 0 88 0.2 0 0 +2.59848E7 15 4 48 95815 448 1386 350 125 11 122 13999 624 13674 4426 250 6.7 9 9 9900 2400 9 999999999 14 0 0 88 0.2 0 0 +2.59884E7 10 5 71 95721 156 1386 328 23 0 23 2214 0 2229 845 180 9.3 9 9 9900 1500 9 999999999 16 0 0 88 0.2 0 0 +2.5992E7 9.8 4.5 70 96119 0 740 326 0 0 0 0 0 0 0 190 8.2 9 9 9900 1500 9 999999999 15 0 0 88 0.2 0 0 +2.59956E7 9 5 76 95702 0 0 323 0 0 0 0 0 0 0 180 6.7 9 9 9900 1500 9 999999999 16 0 0 88 0.2 0 0 +2.59992E7 7 6 93 95663 0 0 315 0 0 0 0 0 0 0 180 7.2 9 9 7000 1200 0 919999999 17 0 0 88 0.2 5 0 +2.60028E7 6.3 5.3 93 95650 0 0 320 0 0 0 0 0 0 0 150 4.1 10 10 7000 900 0 919999999 16 0 0 88 0.2 4.1 0 +2.60064E7 6 4 87 95644 0 0 317 0 0 0 0 0 0 0 80 6.2 10 10 6000 900 0 919999999 14 0 0 88 0.2 0 0 +2.601E7 6 3 81 95644 0 0 307 0 0 0 0 0 0 0 101 2.1 9 9 6000 2400 0 919999999 13 0 0 88 0.2 0 0 +2.60136E7 5.8 3.5 85 96362 0 0 307 0 0 0 0 0 0 0 210 2.1 9 9 6000 2400 0 919999999 14 0 0 88 0.2 0 0 +2.60172E7 6 3 81 95644 0 0 307 0 0 0 0 0 0 0 296 0 9 9 6000 1500 0 919999999 13 0 0 88 0.2 0 0 +2.60208E7 5 4 93 95624 0 0 304 0 0 0 0 0 0 0 40 2.1 9 9 6000 1500 0 919999999 14 0 0 88 0.2 0 0 +2.60244E7 5.2 3 86 96331 0 0 287 0 0 0 0 0 0 0 10 1.5 5 5 6000 2000 0 919999999 13 0 0 88 0.2 0 0 +2.6028E7 5 3 87 95624 0 0 286 0 0 0 0 0 0 0 210 2.1 5 5 6000 2000 0 919999999 13 0 0 88 0.2 0 0 +2.60316E7 6 4 87 95644 189 898 287 61 64 52 6659 542 5713 1660 220 3.1 3 3 8000 2000 0 919999999 14 0 0 88 0.2 0 0 +2.60352E7 8 4.2 77 96556 481 1387 318 139 17 133 15535 1092 14925 4871 210 2.1 9 9 8000 6000 0 919999999 14 0 0 88 0.2 0 0 +2.60388E7 10 4 66 95721 751 1387 326 262 21 250 29395 1804 28261 9626 140 2.1 9 9 8000 1500 0 919999999 14 0 0 88 0.2 0 0 +2.60424E7 9 4 71 95702 982 1387 322 372 68 324 42541 6033 37288 13526 180 4.6 9 9 8000 1500 0 919999999 14 0 0 88 0.2 0 0 +2.6046E7 9.2 3.2 66 96759 1158 1387 322 458 51 416 52692 4784 48133 17223 240 2.6 9 9 8000 1800 0 919999999 13 0 0 88 0.2 0 0 +2.60496E7 11 2 54 95740 1268 1387 329 513 85 435 59611 7870 50964 18336 10 2.6 9 9 8000 600 0 919999999 11 0 0 88 0.2 0 0 +2.60532E7 12 3 54 95759 1302 1387 316 953 544 443 111171 50154 52010 18723 10 7.2 5 5 8000 600 0 919999999 13 0 0 88 0.2 0 0 +2.60568E7 12.6 2 48 96739 1260 1387 336 509 110 409 59406 9973 48070 17586 320 4.6 9 9 8000 1200 0 919999999 12 0 0 88 0.2 0 0 +2.60604E7 14 3 47 95797 1144 1387 325 814 598 320 95296 50651 37759 14443 350 3.6 5 5 8000 1200 0 919999999 13 0 0 88 0.2 0 0 +2.6064E7 15 1 39 95815 961 1387 327 656 639 214 77300 49196 25289 9926 270 2.6 5 5 8000 2000 0 919999999 10 0 0 88 0.2 0 0 +2.60676E7 15.3 0.6 37 96639 726 1387 328 453 465 210 51374 37233 23924 8411 310 2.1 5 5 8000 2000 0 919999999 10 0 0 88 0.2 0 0 +2.60712E7 15 1 39 95815 452 1387 327 230 292 135 25508 18547 15016 4736 230 4.6 5 5 8000 2000 0 919999999 10 0 0 88 0.2 0 0 +2.60748E7 14 3 47 95797 160 1387 320 46 58 39 5049 0 4326 1284 220 5.1 3 3 8000 2000 0 919999999 13 0 0 88 0.2 0 0 +2.60784E7 11.6 3.5 57 96730 0 760 310 0 0 0 0 0 0 0 220 5.1 3 3 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +2.6082E7 11 3 58 95740 0 0 309 0 0 0 0 0 0 0 220 4.6 4 4 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +2.60856E7 10 3 62 95721 0 0 305 0 0 0 0 0 0 0 160 1.5 4 4 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +2.60892E7 9.1 3.2 67 96757 0 0 286 0 0 0 0 0 0 0 130 1 0 0 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +2.60928E7 9 4 71 95702 0 0 307 0 0 0 0 0 0 0 190 3.1 6 6 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.60964E7 6 3 81 95644 0 0 301 0 0 0 0 0 0 0 350 1.5 8 8 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +2.61E7 5.3 2.7 83 96663 0 0 271 0 0 0 0 0 0 0 360 0.5 0 0 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +2.61036E7 5 3 87 95624 0 0 303 0 0 0 0 0 0 0 350 1.5 9 9 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +2.61072E7 5 2 81 95624 0 0 269 0 0 0 0 0 0 0 211 1 0 0 6000 2000 9 999999999 12 0 0 88 0.2 0 0 +2.61108E7 5.2 3.1 86 96642 0 0 271 0 0 0 0 0 0 0 360 1 0 0 6000 2000 9 999999999 13 0 0 88 0.2 0 0 +2.61144E7 3 2 93 95584 0 0 261 0 0 0 0 0 0 0 147 0.5 0 0 3600 2000 9 999999999 12 0 0 88 0.2 0 0 +2.6118E7 5 3 87 95624 194 922 270 64 50 57 6996 632 6250 1778 10 1.5 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +2.61216E7 8 4 76 95683 485 1388 306 224 220 147 24848 14594 16400 5218 10 1.5 7 7 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.61252E7 11 4 62 95740 755 1388 310 489 593 167 56744 42512 19410 7280 87 0.5 4 4 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.61288E7 13 4 54 95778 986 1388 317 716 735 194 85186 53776 23168 9285 260 2.1 3 3 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.61324E7 14.9 3.1 45 96518 1162 1388 311 892 851 179 109419 59337 22100 9125 181 0.5 0 0 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +2.6136E7 17 3 39 95852 1271 1388 326 995 806 257 120511 61086 31308 12511 273 2.1 1 1 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +2.61396E7 20 0 26 95906 1306 1388 330 1032 808 272 125116 62701 33218 13179 227 1.5 0 0 9900 2000 9 999999999 9 0 0 88 0.2 0 0 +2.61432E7 21.6 0.4 24 96299 1263 1388 337 991 805 258 120003 61964 31459 12551 170 4.1 0 0 9900 2000 9 999999999 10 0 0 88 0.2 0 0 +2.61468E7 23 -3 17 95959 1147 1388 340 885 798 226 106724 61101 27358 11047 150 4.1 0 0 9900 2000 9 999999999 7 0 0 88 0.2 0 0 +2.61504E7 24 -4 15 95977 965 1388 343 714 801 157 86206 57130 19061 7738 160 5.1 0 0 9900 2000 9 999999999 6 0 0 88 0.2 0 0 +2.6154E7 24.3 -6.1 12 96157 729 1388 342 495 648 155 57632 47108 18081 6756 170 4.6 0 0 9900 2000 9 999999999 5 0 0 88 0.2 0 0 +2.61576E7 24 -1 19 95977 456 1388 347 251 375 128 28007 23397 14335 4606 180 4.1 0 0 9900 2000 9 999999999 8 0 0 88 0.2 0 0 +2.61612E7 21 5 35 95924 164 1388 340 48 69 40 5323 0 4434 1318 210 5.7 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.61648E7 18.8 2.2 33 96249 0 781 333 0 0 0 0 0 0 0 170 5.7 1 1 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +2.61684E7 18 2 34 95870 0 0 323 0 0 0 0 0 0 0 180 4.6 0 0 9900 2000 9 999999999 11 0 0 88 0.2 0 0 +2.6172E7 16 3 42 95834 0 0 321 0 0 0 0 0 0 0 184 1 1 1 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +2.61756E7 13.5 4.5 54 96293 0 0 306 0 0 0 0 0 0 0 78 0.5 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.61792E7 11 5 66 95740 0 0 314 0 0 0 0 0 0 0 50 1 5 5 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.61828E7 12 5 62 95759 0 0 316 0 0 0 0 0 0 0 346 0.5 4 4 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.61864E7 9.4 4.2 70 96225 0 0 289 0 0 0 0 0 0 0 80 1 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.619E7 9 5 76 95702 0 0 288 0 0 0 0 0 0 0 144 1 0 0 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +2.61936E7 9 5 76 95702 0 0 288 0 0 0 0 0 0 0 250 1 0 0 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +2.61972E7 7 5 87 95663 0 0 280 0 0 0 0 0 0 0 10 1 0 0 7000 2000 9 999999999 16 0 0 88 0.2 0 0 +2.62008E7 7 4 81 95663 0 0 279 0 0 0 0 0 0 0 50 2.1 0 0 7000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.62044E7 10 5 71 95721 199 945 292 66 126 48 7349 932 5363 1615 92 1 0 0 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +2.6208E7 13.4 5.8 60 96348 489 1388 307 276 445 119 31118 26197 13446 4546 117 1 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.62116E7 17 6 48 95852 759 1388 334 511 673 143 60022 45254 16899 6485 340 1.5 2 2 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.62152E7 20 6 40 95906 990 1388 343 726 821 141 88533 54167 17248 7112 172 1 1 1 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.62188E7 22.8 4.2 30 96320 1166 1388 362 882 868 153 109520 57861 19126 7970 180 1.5 3 3 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.62224E7 25 3 24 95994 1275 1388 356 998 806 258 120918 61184 31459 12565 190 3.6 0 0 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +2.6226E7 28 4 22 96046 1309 1388 372 1029 808 268 124861 61261 32663 13003 180 4.1 0 0 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.62296E7 28.5 1.8 18 96173 1267 1388 379 992 806 257 120145 61520 31325 12510 160 6.2 1 1 9900 2000 9 999999999 11 0 0 88 0.2 0 0 +2.62332E7 30 3 18 96079 1150 1388 381 881 799 219 106309 59154 26606 10795 160 5.1 0 0 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +2.62368E7 30 4 19 96079 968 1388 382 709 809 144 86008 54515 17582 7201 160 6.2 0 0 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.62404E7 29.9 5 21 96082 733 1388 400 484 637 147 56402 43532 17277 6527 180 6.7 3 3 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.6244E7 29 5 22 96063 460 1388 378 252 436 107 28451 24073 12155 4096 190 6.2 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.62476E7 23.5 5.5 31 95968 168 1388 369 50 75 41 5535 0 4548 1353 177 4.7 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.62512E7 21.8 6.4 37 96023 0 802 354 0 0 0 0 0 0 0 180 4.1 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.62548E7 19.8 7.2 44 95987 0 0 340 0 0 0 0 0 0 0 147 3.3 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.62584E7 18.3 7.7 50 95960 0 0 347 0 0 0 0 0 0 0 107 2.5 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.6262E7 16.1 7.6 57 96018 0 0 341 0 0 0 0 0 0 0 67 1.6 0 0 9900 2000 9 999999999 22 0 0 88 0.2 0 0 +2.62656E7 14.3 7.2 62 95900 0 0 337 0 0 0 0 0 0 0 20 1.4 4 4 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.62692E7 13.6 6.9 64 95886 0 0 331 0 0 0 0 0 0 0 77 1.5 4 4 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.62728E7 13 6.8 66 95958 0 0 307 0 0 0 0 0 0 0 115 1.4 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.62764E7 12.9 7 67 95899 0 0 325 0 0 0 0 0 0 0 125 1.4 5 5 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.628E7 12.9 7.2 68 95899 0 0 325 0 0 0 0 0 0 0 173 1.3 5 5 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.62836E7 13.9 7.6 66 96005 0 0 305 0 0 0 0 0 0 0 115 1.1 0 0 9900 2000 9 999999999 18 0 0 88 0.2 0 0 +2.62872E7 15.9 8 59 95961 0 0 327 0 0 0 0 0 0 0 114 1.1 6 6 9950 2000 9 999999999 19 0 0 88 0.2 0 0 +2.62908E7 13 8 72 95778 203 967 329 60 63 51 6611 507 5619 1685 210 1 6 6 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.62944E7 16.7 8.7 59 96201 494 1389 325 278 443 120 31320 25680 13613 4609 30 1.5 0 0 9900 2000 9 999999999 22 0 0 88 0.2 0 0 +2.6298E7 21 8 43 95924 763 1389 350 515 686 138 60596 44886 16287 6292 154 1 1 1 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.63016E7 24 7 34 95977 994 1389 356 729 826 138 88980 53794 16908 6987 238 1 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.63052E7 27.2 6.5 27 96094 1169 1389 371 894 800 220 107962 57985 26763 10870 290 1 0 0 9900 2000 9 999999999 18 0 0 88 0.2 0 0 +2.63088E7 30 5 21 96079 1278 1389 383 999 807 257 120985 60429 31257 12503 160 2.1 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.63124E7 32 4 17 96113 1312 1389 392 1033 809 269 125245 61349 32802 13052 170 3.1 0 0 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.6316E7 32.5 2.5 15 95898 1270 1389 393 995 806 258 120447 61369 31384 12534 170 4.6 0 0 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +2.63196E7 33 1 13 96129 1154 1389 393 887 799 223 106963 60006 27038 10945 230 5.7 0 0 9900 2000 9 999999999 10 0 0 88 0.2 0 0 +2.63232E7 32 5 18 96113 972 1389 394 711 814 142 86391 54198 17288 7096 220 7.7 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.63268E7 30.6 8.7 26 95848 736 1389 399 490 672 134 57536 43269 15785 6052 220 7.7 1 1 9900 2000 9 999999999 22 0 0 88 0.2 0 0 +2.63304E7 29 9 29 96063 464 1389 384 253 432 109 28556 23264 12334 4162 210 8.2 0 0 9900 2000 9 999999999 22 0 0 88 0.2 0 0 +2.6334E7 26 9 34 96011 172 1389 369 52 79 42 5728 0 4656 1389 210 8.2 0 0 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.63376E7 25 7.5 33 95933 0 822 362 0 0 0 0 0 0 0 140 3.1 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.63412E7 23 9 41 95959 0 0 361 0 0 0 0 0 0 0 140 4.1 1 1 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.63448E7 21 11 53 95924 0 0 362 0 0 0 0 0 0 0 190 2.6 3 3 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +2.63484E7 19.8 11.4 58 95983 0 0 342 0 0 0 0 0 0 0 160 2.1 0 0 9900 2000 9 999999999 29 0 0 88 0.2 0 0 +2.6352E7 18 12 68 95870 0 0 354 0 0 0 0 0 0 0 160 1.5 5 5 9900 2000 9 999999999 31 0 0 88 0.2 0 0 +2.63556E7 17 11 68 95852 0 0 348 0 0 0 0 0 0 0 3 1 5 5 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +2.63592E7 15.5 10.4 72 95877 0 0 321 0 0 0 0 0 0 0 250 1.5 0 0 9900 2000 9 999999999 26 0 0 88 0.2 0 0 +2.63628E7 15 11 77 95815 0 0 345 0 0 0 0 0 0 0 158 0.5 7 7 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +2.63664E7 14 10 77 95797 0 0 339 0 0 0 0 0 0 0 58 0.5 7 7 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +2.637E7 13 9.6 80 95840 0 0 309 0 0 0 0 0 0 0 279 0.5 0 0 9900 2000 9 999999999 24 0 0 88 0.2 0 0 +2.63736E7 12 9 82 95759 0 0 334 0 0 0 0 0 0 0 54 1 8 8 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.63772E7 15 11 77 95815 207 990 345 57 26 53 6267 218 5858 1751 98 1 7 7 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +2.63808E7 18.5 11.8 65 95969 498 1390 336 280 385 142 31089 23595 15843 5176 190 2.1 0 0 9900 2000 9 999999999 30 0 0 88 0.2 0 0 +2.63844E7 22 12 53 95942 767 1390 368 510 674 138 59910 42475 16251 6301 170 2.6 3 3 9900 2000 9 999999999 31 0 0 88 0.2 0 0 +2.6388E7 24 12 47 95977 997 1390 374 724 818 138 88282 50857 16861 6989 170 3.1 2 2 9900 2000 9 999999999 31 0 0 88 0.2 0 0 +2.63916E7 25.5 12.3 44 95903 1173 1390 370 889 879 148 110350 54214 18426 7716 170 4.1 0 0 9900 2000 9 999999999 31 0 0 88 0.2 0 0 +2.63952E7 26 13 45 96011 1281 1390 386 988 807 244 119733 55853 29721 12001 160 4.1 2 2 9900 2000 9 999999999 34 0 0 88 0.2 0 0 +2.63988E7 28 12 37 96046 1315 1390 382 1023 809 257 124082 57107 31381 12596 180 5.1 0 0 9900 2000 9 999999999 30 0 0 88 0.2 0 0 +2.64024E7 28.6 12.2 36 95786 1273 1390 386 983 807 244 119066 56401 29729 11996 210 7.2 0 0 9900 2000 9 999999999 31 0 0 88 0.2 0 0 +2.6406E7 27 13 42 96029 1157 1390 378 873 850 166 107214 53732 20505 8545 220 9.3 0 0 9000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.64096E7 26 13 45 96011 975 1390 390 696 762 161 83469 49127 19380 7918 210 9.3 3 3 9000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.64132E7 25.9 11.3 40 95759 740 1390 390 475 645 132 55789 40295 15532 5982 200 8.7 4 4 9000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.64168E7 22 12 53 95942 467 1390 368 252 396 119 28223 21657 13364 4445 190 8.2 3 3 9900 2000 9 999999999 31 0 0 88 0.2 0 0 +2.64204E7 21 12 56 95924 176 1390 369 50 40 45 5496 0 4956 1467 200 6.7 5 5 9900 2000 9 999999999 31 0 0 88 0.2 0 0 +2.6424E7 16.9 11.5 70 95968 0 843 348 0 0 0 0 0 0 0 150 6.2 5 5 9900 2000 9 999999999 29 0 0 88 0.2 0 0 +2.64276E7 15 12 82 95815 0 0 334 0 0 0 0 0 0 0 140 7.2 3 3 9900 2000 9 999999999 31 0 0 88 0.2 0 0 +2.64312E7 14 11 82 95797 0 0 353 0 0 0 0 0 0 0 150 6.7 9 9 9900 6000 9 999999999 28 0 0 88 0.2 0 0 +2.64348E7 14 11 82 95797 0 0 353 0 0 0 0 0 0 0 150 5.1 9 9 9900 1200 9 999999999 28 0 0 88 0.2 0 0 +2.64384E7 13.5 10.5 82 95787 0 0 343 0 0 0 0 0 0 0 211 4.6 8 8 9900 1200 9 999999999 27 0 0 88 0.2 0 0 +2.6442E7 13 10 82 95778 0 0 347 0 0 0 0 0 0 0 160 4.1 9 9 9900 1800 9 999999999 25 0 0 88 0.2 0 0 +2.64456E7 13.2 10.4 83 96108 0 0 359 0 0 0 0 0 0 0 190 3.1 10 10 9900 1800 9 999999999 27 0 0 88 0.2 0 0 +2.64492E7 12.8 10.3 85 95992 0 0 340 0 0 0 0 0 0 0 146 3.6 8 8 9900 1800 9 999999999 26 0 0 88 0.2 0 0 +2.64528E7 12.4 10.1 86 95875 0 0 337 0 0 0 0 0 0 0 206 4.1 8 8 9900 1800 9 999999999 26 0 0 88 0.2 0 0 +2.64564E7 12 10 88 95759 0 0 323 0 0 0 0 0 0 0 170 4.6 5 5 9900 1800 9 999999999 26 0 0 88 0.2 0 0 +2.646E7 12 10 88 95759 0 0 352 0 0 0 0 0 0 0 160 3.6 10 10 9000 450 9 999999999 26 0 0 88 0.2 0 0 +2.64636E7 12 10 88 95759 212 1011 352 23 0 23 2240 0 2256 911 150 2.6 10 10 9000 450 9 999999999 26 0 0 88 0.2 0 0 +2.64672E7 13.1 10.5 84 96163 502 1391 358 89 0 89 8902 0 8974 3699 170 2.6 10 10 9000 360 9 999999999 27 0 0 88 0.2 0 0 +2.64708E7 14 11 82 95797 771 1391 364 163 0 163 16665 0 16813 7236 150 4.1 10 10 9000 900 9 999999999 28 0 0 88 0.2 0 0 +2.64744E7 15 11 77 95815 1001 1391 369 230 7 225 27006 514 26551 10503 170 4.6 10 10 9000 300 9 999999999 28 0 0 88 0.2 0 0 +2.6478E7 16.4 11.1 71 96243 1176 1391 366 461 33 433 52745 2994 49926 17736 227 1 9 9 9000 1200 9 999999999 28 0 0 88 0.2 0 0 +2.64816E7 18 11 64 95870 1284 1391 374 514 87 433 59624 7649 50670 18360 310 1.5 9 9 9000 4500 9 999999999 28 0 0 88 0.2 0 0 +2.64852E7 19 11 60 95888 1318 1391 379 530 87 448 61663 7673 52468 18926 69 0 9 9 8000 4500 9 999999999 28 0 0 88 0.2 0 0 +2.64888E7 19.3 10.9 58 96097 1276 1391 380 510 87 430 59155 7654 50251 18226 160 4.1 9 9 8000 4500 9 999999999 28 0 0 88 0.2 0 0 +2.64924E7 19 11 60 95888 1160 1391 379 454 49 413 51982 4376 47656 17144 170 5.7 9 9 8000 4500 9 999999999 28 0 0 88 0.2 0 0 +2.6496E7 19 11 60 95888 979 1391 379 366 33 343 41481 2922 39081 13939 180 6.7 9 9 8000 4500 9 999999999 28 0 0 88 0.2 0 0 +2.64996E7 19.2 10.6 57 96058 744 1391 379 255 20 245 28569 1616 27527 9408 150 6.2 9 9 8000 4500 9 999999999 27 0 0 88 0.2 0 0 +2.65032E7 19 10 56 95888 471 1391 378 133 10 130 14853 566 14553 4741 180 5.7 9 9 8000 4500 9 999999999 25 0 0 88 0.2 0 0 +2.65068E7 19 10 56 95888 180 1391 378 29 0 29 2802 0 2822 1063 210 4.1 9 9 8000 4500 9 999999999 25 0 0 88 0.2 0 0 +2.65104E7 17.6 10.1 61 96095 0 864 370 0 0 0 0 0 0 0 200 2.6 9 9 8000 7500 9 999999999 26 0 0 88 0.2 0 0 +2.6514E7 17 10 63 95852 0 0 347 0 0 0 0 0 0 0 241 1 5 5 8000 7500 9 999999999 25 0 0 88 0.2 0 0 +2.65176E7 16 11 72 95834 0 0 343 0 0 0 0 0 0 0 200 2.6 5 5 8000 7500 9 999999999 28 0 0 88 0.2 0 0 +2.65212E7 15 10.5 74 96160 0 0 358 0 0 0 0 0 0 0 150 2.6 9 9 8000 1200 9 999999999 27 0 0 88 0.2 0 0 +2.65248E7 14 10 77 95797 0 0 328 0 0 0 0 0 0 0 120 2.1 3 3 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +2.65284E7 13 9 77 95778 0 0 334 0 0 0 0 0 0 0 220 1.5 7 7 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.6532E7 11.7 8.8 82 96042 0 0 303 0 0 0 0 0 0 0 170 2.6 0 0 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.65356E7 12 8 76 95759 0 0 328 0 0 0 0 0 0 0 150 3.1 7 7 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.65392E7 11 8 82 95740 0 0 329 0 0 0 0 0 0 0 170 2.1 8 8 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.65428E7 11 8 82 95740 0 0 336 0 0 0 0 0 0 0 170 1.5 9 9 9900 1200 9 999999999 21 0 0 88 0.2 0 0 +2.65464E7 12 8 76 95759 0 0 340 0 0 0 0 0 0 0 130 2.6 9 9 9900 1200 9 999999999 21 0 0 88 0.2 0 0 +2.655E7 11 8 82 95740 216 1033 336 39 0 39 3806 0 3833 1423 260 2.6 9 9 9900 1200 9 999999999 21 0 0 88 0.2 0 0 +2.65536E7 12.4 8.5 77 96206 506 1391 353 90 0 90 9042 0 9115 3752 170 2.6 10 10 9900 900 9 999999999 22 0 0 88 0.2 0 0 +2.65572E7 15 9 67 95815 774 1391 356 270 40 248 30406 3301 28034 9747 199 1 9 9 9900 4500 9 999999999 23 0 0 88 0.2 0 0 +2.65608E7 16 9 63 95834 1004 1391 361 380 66 332 43318 5763 38102 13880 56 1 9 9 9900 4500 9 999999999 23 0 0 88 0.2 0 0 +2.65644E7 18.4 9.2 55 96204 1179 1391 373 464 66 408 53407 5934 47290 17122 180 1.5 9 9 9900 4800 9 999999999 23 0 0 88 0.2 0 0 +2.6568E7 21 10 49 95924 1287 1391 366 930 586 388 109002 49454 45763 17079 210 1.5 5 5 9900 4800 9 999999999 25 0 0 88 0.2 0 0 +2.65716E7 22 10 46 95942 1321 1391 366 1018 865 197 126196 57349 24512 10060 170 2.1 3 3 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +2.65752E7 23.6 9.7 41 96041 1279 1391 373 979 882 168 122190 56774 21101 8743 180 3.6 3 3 9900 2000 9 999999999 24 0 0 88 0.2 0 0 +2.65788E7 25 8 34 95994 1163 1391 378 875 834 177 107180 56211 21842 9041 160 5.7 3 3 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.65824E7 25 7 32 95994 982 1391 383 667 654 206 78884 48032 24489 9732 210 6.2 5 5 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.6586E7 24.4 7.9 35 95989 747 1391 375 493 652 143 57756 43261 16844 6431 210 6.2 3 3 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.65896E7 24 8 36 95977 475 1391 358 262 444 111 29663 24558 12553 4258 220 6.2 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.65932E7 21 9 46 95924 184 1391 356 58 97 45 6405 100 4997 1496 210 6.2 2 2 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.65968E7 18.8 7.8 49 96211 0 886 347 0 0 0 0 0 0 0 200 6.2 3 3 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.66004E7 18 8 52 95870 0 0 344 0 0 0 0 0 0 0 190 4.6 3 3 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.6604E7 17 8 55 95852 0 0 339 0 0 0 0 0 0 0 150 3.6 3 3 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.66076E7 15.4 7.6 60 96348 0 0 318 0 0 0 0 0 0 0 150 3.1 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.66112E7 15 8 63 95815 0 0 335 0 0 0 0 0 0 0 160 1.5 5 5 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.66148E7 14 8 67 95797 0 0 330 0 0 0 0 0 0 0 150 2.1 5 5 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.66184E7 12.6 7.2 70 96314 0 0 305 0 0 0 0 0 0 0 130 1.5 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.6622E7 12 7 71 95759 0 0 323 0 0 0 0 0 0 0 128 0.5 6 6 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.66256E7 12 7 71 95759 0 0 323 0 0 0 0 0 0 0 163 1 6 6 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.66292E7 9.8 6.8 82 96289 0 0 306 0 0 0 0 0 0 0 26 1 3 3 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.66328E7 10 7 82 95721 0 0 311 0 0 0 0 0 0 0 4 1 5 5 6000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.66364E7 12 8 76 95759 220 1053 316 77 91 62 8401 1537 6855 1993 300 1.5 3 3 3000 2000 9 999999999 21 0 0 88 0.2 0 0 +2.664E7 15.5 7.9 61 96397 509 1392 337 270 365 137 30283 22870 15399 5119 31 0.5 5 5 3000 2000 9 999999999 21 0 0 88 0.2 0 0 +2.66436E7 17 8 55 95852 778 1392 339 519 664 148 60929 44518 17488 6735 218 0.5 3 3 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.66472E7 20 8 46 95906 1007 1392 350 738 785 170 88827 53658 20560 8397 213 1 2 2 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.66508E7 22.3 8.6 41 96312 1182 1392 371 840 645 292 99310 50606 34748 13601 150 2.1 5 5 9900 2000 9 999999999 22 0 0 88 0.2 0 0 +2.66544E7 24 8 36 95977 1290 1392 358 1005 809 255 121820 59225 31114 12470 160 2.6 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.6658E7 26 6 28 96011 1324 1392 365 1040 788 291 125492 60530 35326 13924 200 3.1 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.66616E7 28.3 8 28 96074 1282 1392 416 671 237 452 77687 21731 52765 18832 220 5.1 8 8 9900 7500 9 999999999 20 0 0 88 0.2 0 0 +2.66652E7 28 7 26 96046 1167 1392 376 890 791 228 107148 57736 27559 11155 220 5.7 0 0 9900 7500 9 999999999 18 0 0 88 0.2 0 0 +2.66688E7 28 6 25 96046 985 1392 375 721 778 171 86564 54170 20634 8373 210 6.7 0 0 9900 7500 9 999999999 17 0 0 88 0.2 0 0 +2.66724E7 26.9 4.5 24 95984 751 1392 393 442 420 215 50153 33306 24548 8716 220 7.2 6 6 9900 7500 9 999999999 14 0 0 88 0.2 0 0 +2.6676E7 26 5 26 96011 479 1392 364 267 436 117 30092 25423 13227 4443 220 6.2 0 0 9900 7500 9 999999999 15 0 0 88 0.2 0 0 +2.66796E7 25 5 28 95994 189 1392 359 61 108 46 6708 456 5108 1530 220 4.6 0 0 9900 7500 9 999999999 15 0 0 88 0.2 0 0 +2.66832E7 23.1 3.6 28 96042 0 907 369 0 0 0 0 0 0 0 210 4.6 5 5 9900 7500 9 999999999 13 0 0 88 0.2 0 0 +2.66868E7 22 5 33 95942 0 0 345 0 0 0 0 0 0 0 140 2.1 0 0 9900 7500 9 999999999 15 0 0 88 0.2 0 0 +2.66904E7 20 6 40 95906 0 0 343 0 0 0 0 0 0 0 180 4.6 1 1 9900 7500 9 999999999 17 0 0 88 0.2 0 0 +2.6694E7 19.7 5.7 40 96123 0 0 335 0 0 0 0 0 0 0 190 2.6 0 0 9900 7500 9 999999999 16 0 0 88 0.2 0 0 +2.66976E7 18 5 42 95870 0 0 333 0 0 0 0 0 0 0 340 1.5 1 1 9900 7500 9 999999999 15 0 0 88 0.2 0 0 +2.67012E7 18 5 42 95870 0 0 333 0 0 0 0 0 0 0 160 3.6 1 1 9900 7500 9 999999999 15 0 0 88 0.2 0 0 +2.67048E7 15.8 5.1 49 96071 0 0 317 0 0 0 0 0 0 0 179 1 0 0 9900 7500 9 999999999 16 0 0 88 0.2 0 0 +2.67084E7 16 6 51 95834 0 0 332 0 0 0 0 0 0 0 200 1.5 3 3 9900 7500 9 999999999 17 0 0 88 0.2 0 0 +2.6712E7 12 6 67 95759 0 0 319 0 0 0 0 0 0 0 360 2.1 5 5 9900 7500 9 999999999 17 0 0 88 0.2 0 0 +2.67156E7 12.2 6.2 67 96004 0 0 302 0 0 0 0 0 0 0 36 0.5 0 0 9900 7500 9 999999999 17 0 0 88 0.2 0 0 +2.67192E7 14 6 59 95797 0 0 326 0 0 0 0 0 0 0 254 1 4 4 9900 7500 9 999999999 17 0 0 88 0.2 0 0 +2.67228E7 14 6 59 95797 224 1074 326 78 145 54 8625 2071 6063 1841 212 0.5 4 4 9900 7500 9 999999999 17 0 0 88 0.2 0 0 +2.67264E7 18 6.8 48 96017 513 1393 328 294 463 123 33218 27837 14002 4779 360 2.1 0 0 9900 7500 9 999999999 18 0 0 88 0.2 0 0 +2.673E7 21 7 40 95924 781 1393 349 531 695 141 62587 46180 16741 6488 40 2.1 1 1 9900 7500 9 999999999 19 0 0 88 0.2 0 0 +2.67336E7 24 7 34 95977 1010 1393 356 743 831 140 90839 54288 17214 7125 169 1 0 0 9900 7500 9 999999999 19 0 0 88 0.2 0 0 +2.67372E7 25.2 6.9 31 95860 1185 1393 369 907 803 224 109598 58142 27176 11025 180 2.6 1 1 9900 7500 9 999999999 18 0 0 88 0.2 0 0 +2.67408E7 28 7 26 96046 1293 1393 376 1009 810 258 122327 59814 31405 12568 170 5.1 0 0 9900 7500 9 999999999 18 0 0 88 0.2 0 0 +2.67444E7 29 5 22 96063 1327 1393 378 1045 811 271 126748 61234 33123 13173 150 5.7 0 0 9900 7500 9 999999999 15 0 0 88 0.2 0 0 +2.6748E7 30.4 5.2 20 95693 1285 1393 386 1004 809 258 121702 60571 31429 12565 160 5.1 0 0 9900 7500 9 999999999 15 0 0 88 0.2 0 0 +2.67516E7 31 4 18 96096 1170 1393 387 897 802 223 108279 59234 27103 10982 180 5.7 0 0 9900 7500 9 999999999 14 0 0 88 0.2 0 0 +2.67552E7 30 5 21 96079 989 1393 383 725 819 144 88243 54716 17616 7245 220 7.2 0 0 9900 7500 9 999999999 15 0 0 88 0.2 0 0 +2.67588E7 30.1 4.5 20 95536 754 1393 391 509 669 146 59582 45734 17185 6556 220 7.7 1 1 9900 7500 9 999999999 14 0 0 88 0.2 0 0 +2.67624E7 29 6 23 96063 483 1393 380 269 436 118 30358 25437 13356 4492 210 7.2 0 0 9900 7500 9 999999999 17 0 0 88 0.2 0 0 +2.6766E7 27 8 30 96029 193 1393 372 62 111 47 6904 465 5218 1567 210 7.7 0 0 9900 7500 9 999999999 20 0 0 88 0.2 0 0 +2.67696E7 24.4 10.7 42 95581 0 928 382 0 0 0 0 0 0 0 220 6.7 4 4 9900 7500 9 999999999 27 0 0 88 0.2 0 0 +2.67732E7 23 10 44 95959 0 0 371 0 0 0 0 0 0 0 180 5.1 3 3 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +2.67768E7 23 10 44 95959 0 0 376 0 0 0 0 0 0 0 190 6.7 5 5 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +2.67804E7 21 9.1 46 95692 0 0 387 0 0 0 0 0 0 0 190 5.7 9 9 9900 5100 9 999999999 23 0 0 88 0.2 0 0 +2.6784E7 20 9 49 95906 0 0 381 0 0 0 0 0 0 0 160 4.6 9 9 9900 5100 9 999999999 23 0 0 88 0.2 0 0 +2.67876E7 19 9 52 95888 0 0 376 0 0 0 0 0 0 0 160 3.6 9 9 9900 5100 9 999999999 23 0 0 88 0.2 0 0 +2.67912E7 18 9.2 56 95733 0 0 371 0 0 0 0 0 0 0 170 3.1 9 9 9900 4800 9 999999999 23 0 0 88 0.2 0 0 +2.67948E7 17 10 63 95852 0 0 367 0 0 0 0 0 0 0 150 3.6 9 9 9900 4500 9 999999999 25 0 0 88 0.2 0 0 +2.67984E7 16 10 68 95834 0 0 362 0 0 0 0 0 0 0 150 4.6 9 9 9900 4500 9 999999999 25 0 0 88 0.2 0 0 +2.6802E7 14.4 9.7 73 95856 0 0 364 0 0 0 0 0 0 0 140 4.1 10 10 9900 3900 9 999999999 25 0 0 88 0.2 0 0 +2.68056E7 14 10 77 95797 0 0 352 0 0 0 0 0 0 0 170 6.2 9 9 9900 1500 9 999999999 25 0 0 88 0.2 0 0 +2.68092E7 13 9 77 95778 227 1093 346 42 0 42 4132 0 4162 1541 170 4.6 9 9 9900 1500 9 999999999 23 0 0 88 0.2 0 0 +2.68128E7 12.5 9.5 82 96085 516 1393 344 152 6 150 16950 363 16797 5481 150 4.6 9 9 9900 1500 9 999999999 24 0 0 88 0.2 0 0 +2.68164E7 13 9 77 95778 784 1393 346 275 41 252 30908 3348 28486 9919 150 4.1 9 9 9900 900 9 999999999 23 0 0 88 0.2 0 0 +2.682E7 13 10 82 95778 1013 1393 357 234 7 228 27484 545 26998 10682 140 3.6 10 10 9900 450 9 999999999 25 0 0 88 0.2 0 0 +2.68236E7 13.1 10 81 96153 1188 1393 358 285 6 280 33807 433 33429 13189 170 3.6 10 10 9900 600 9 999999999 26 0 0 88 0.2 0 0 +2.68272E7 13 10 82 95778 1296 1393 347 520 74 451 60250 6676 52628 18863 160 4.1 9 9 9900 600 0 919999999 25 0 0 88 0.2 0 0 +2.68308E7 13 11 88 95778 1330 1393 349 535 98 442 62411 8569 51897 18817 140 3.6 9 9 5000 600 0 919999999 28 0 0 88 0.2 0 0 +2.68344E7 12 11 94 95759 1288 1393 353 314 14 301 37513 1029 36235 14217 150 3.1 10 10 5000 450 0 919999999 28 0 0 88 0.2 0 0 +2.6838E7 13 11 88 95778 1173 1393 358 280 10 272 33212 727 32435 12851 170 3.1 10 10 6000 360 0 919999999 28 0 0 88 0.2 0 0 +2.68416E7 12 11 94 95759 992 1393 353 227 4 224 26634 265 26472 10441 200 3.1 10 10 8000 300 0 919999999 28 0 0 88 0.2 0 0 +2.68452E7 11 10 94 95740 758 1393 347 160 0 160 16285 0 16429 7046 190 4.6 10 10 3000 300 0 919999999 26 0 0 88 0.2 0 0 +2.68488E7 10 7 82 95721 487 1393 339 86 0 86 8548 0 8616 3533 210 5.7 10 10 5000 600 0 919999999 19 0 0 88 0.2 0 0 +2.68524E7 8 6 87 95683 197 1393 329 20 0 20 1990 0 2004 808 170 6.7 10 10 5000 750 0 919999999 17 0 0 88 0.2 0 0 +2.6856E7 6 6 100 95644 0 950 319 0 0 0 0 0 0 0 190 10.3 10 10 5000 900 0 919999999 17 0 0 88 0.2 5 0 +2.68596E7 7 5 87 95663 0 0 323 0 0 0 0 0 0 0 200 8.2 10 10 6000 1200 0 919999999 16 0 0 88 0.2 0.1 0 +2.68632E7 6 4 87 95644 0 0 317 0 0 0 0 0 0 0 180 5.1 10 10 5000 1200 0 919999999 14 0 0 88 0.2 0 0 +2.68668E7 6.4 5 91 96562 0 0 320 0 0 0 0 0 0 0 150 3.6 10 10 7000 1200 0 919999999 16 0 0 88 0.2 0 0 +2.68704E7 6 5 93 95644 0 0 318 0 0 0 0 0 0 0 160 3.6 10 10 8000 600 0 919999999 16 0 0 88 0.2 0 0 +2.6874E7 6 5 93 95644 0 0 318 0 0 0 0 0 0 0 140 2.6 10 10 8000 1050 0 919999999 16 0 0 88 0.2 0 0 +2.68776E7 6.1 5 93 96519 0 0 319 0 0 0 0 0 0 0 70 0.5 10 10 8000 900 0 919999999 16 0 0 88 0.2 0 0 +2.68812E7 6 4 87 95644 0 0 317 0 0 0 0 0 0 0 130 1.5 10 10 8000 600 0 919999999 14 0 0 88 0.2 0 0 +2.68848E7 6 5 93 95644 0 0 318 0 0 0 0 0 0 0 40 1.5 10 10 8000 900 0 919999999 16 0 0 88 0.2 0 0 +2.68884E7 6 5 93 95644 0 0 318 0 0 0 0 0 0 0 10 2.1 10 10 8000 900 0 919999999 16 0 0 88 0.2 0 0 +2.6892E7 6 5 93 95644 0 0 309 0 0 0 0 0 0 0 330 1 9 9 8000 300 0 919999999 16 0 0 88 0.2 0 0 +2.68956E7 7 5 87 95663 231 1112 314 44 0 44 4271 0 4302 1586 130 2.1 9 9 8000 600 0 919999999 16 0 0 88 0.2 0 0 +2.68992E7 7 4 81 95663 520 1394 313 155 6 153 17281 411 17108 5559 160 2.6 9 9 8000 690 0 919999999 14 0 0 88 0.2 0 0 +2.69028E7 7 4 81 95663 787 1394 313 278 22 266 31244 1905 30017 10274 140 2.1 9 9 8000 450 0 919999999 14 0 0 88 0.2 0 0 +2.69064E7 9 4 71 95702 1016 1394 322 388 69 338 44372 6155 38898 14130 160 1.5 9 9 8000 450 0 919999999 14 0 0 88 0.2 0 0 +2.691E7 9.2 3.9 69 96816 1191 1394 323 473 51 429 54402 4800 49738 17713 221 1.5 9 9 8000 750 0 919999999 14 0 0 88 0.2 0 0 +2.69136E7 11 3 58 95740 1299 1394 330 526 91 441 61320 8419 51792 18634 303 1.5 9 9 8000 750 0 919999999 13 0 0 88 0.2 0 0 +2.69172E7 12 4 58 95759 1333 1394 336 542 91 456 63281 8355 53565 19195 170 3.1 9 9 8000 900 0 919999999 14 0 0 88 0.2 0 0 +2.69208E7 13.6 1.6 44 96815 1291 1394 340 524 92 438 61001 8531 51445 18516 66 1.5 9 9 8000 1200 0 919999999 11 0 0 88 0.2 0 0 +2.69244E7 14 1 41 95797 1176 1394 342 468 52 424 53793 4931 49103 17490 128 1 9 9 8000 1500 0 919999999 10 0 0 88 0.2 0 0 +2.6928E7 16 2 39 95834 995 1394 353 379 69 330 43317 6219 37922 13734 190 3.1 9 9 8000 1500 0 919999999 11 0 0 88 0.2 0 0 +2.69316E7 14.9 -0.1 36 96754 761 1394 345 268 44 244 30171 3706 27641 9529 190 2.6 9 9 8000 1800 0 919999999 9 0 0 88 0.2 0 0 +2.69352E7 15 -1 33 95815 491 1394 325 259 311 150 28755 21339 16693 5295 160 2.6 5 5 8000 2000 0 919999999 8 0 0 88 0.2 0 0 +2.69388E7 14 2 44 95797 201 1394 319 67 74 56 7303 973 6153 1783 200 4.1 3 3 8000 2000 0 919999999 11 0 0 88 0.2 0 0 +2.69424E7 12.4 1.8 48 96821 0 972 311 0 0 0 0 0 0 0 220 2.6 3 3 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +2.6946E7 11 3 58 95740 0 0 309 0 0 0 0 0 0 0 220 3.6 4 4 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +2.69496E7 11 3 58 95740 0 0 309 0 0 0 0 0 0 0 220 2.1 4 4 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +2.69532E7 9.8 3 63 96799 0 0 289 0 0 0 0 0 0 0 272 0 0 0 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +2.69568E7 7 3 76 95663 0 0 300 0 0 0 0 0 0 0 205 1.5 7 7 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +2.69604E7 8 3 71 95683 0 0 301 0 0 0 0 0 0 0 20 1.5 6 6 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +2.6964E7 7 2.5 73 95663 0 0 296 0 0 0 0 0 0 0 47 1 6 6 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +2.69676E7 6 2 75 95644 0 0 295 0 0 0 0 0 0 0 336 0.5 7 7 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +2.69712E7 5 3 87 95624 0 0 303 0 0 0 0 0 0 0 40 2.1 9 9 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +2.69748E7 4 3 93 95604 0 0 307 0 0 0 0 0 0 0 340 1.5 10 10 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +2.69784E7 4 3 93 95604 0 0 307 0 0 0 0 0 0 0 40 2.6 10 10 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +2.6982E7 6 3 81 95644 235 1131 274 87 112 68 9485 2647 7449 2160 350 1.5 0 0 5000 2000 9 999999999 13 0 0 88 0.2 0 0 +2.69856E7 9 4 71 95702 523 1395 307 268 321 148 29948 21535 16574 5454 10 2.1 6 6 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.69892E7 12 3 54 95759 790 1395 311 535 640 172 62274 46605 20160 7631 94 1 3 3 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +2.69928E7 14 3 47 95797 1019 1395 317 753 816 157 91473 56215 19194 7887 357 1 2 2 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +2.69964E7 16.3 0.6 34 96402 1193 1395 314 923 805 234 111432 60984 28444 11459 278 1 0 0 9900 2000 9 999999999 10 0 0 88 0.2 0 0 +2.7E7 18 2 34 95870 1301 1395 323 1023 811 267 124034 62169 32520 12939 230 2.1 0 0 9900 2000 9 999999999 11 0 0 88 0.2 0 0 +2.70036E7 21 0 25 95924 1336 1395 334 1059 813 281 128472 63377 34262 13549 148 2.1 0 0 9900 2000 9 999999999 9 0 0 88 0.2 0 0 +2.70072E7 22.1 -0.1 23 96138 1294 1395 339 1019 811 268 123473 62838 32593 12954 130 3.1 0 0 9900 2000 9 999999999 9 0 0 88 0.2 0 0 +2.70108E7 24 -3 16 95977 1179 1395 344 914 804 235 110216 61908 28437 11441 180 3.6 0 0 9900 2000 9 999999999 7 0 0 88 0.2 0 0 +2.70144E7 25 -2 16 95994 998 1395 350 741 809 163 89662 57632 19754 8054 170 4.1 0 0 9900 2000 9 999999999 8 0 0 88 0.2 0 0 +2.7018E7 24.9 -3.8 14 95921 765 1395 347 524 655 165 61076 48350 19267 7246 170 5.1 0 0 9900 2000 9 999999999 6 0 0 88 0.2 0 0 +2.70216E7 25 -2 16 95994 495 1395 350 282 405 138 31519 26828 15529 5060 150 4.6 0 0 9900 2000 9 999999999 8 0 0 88 0.2 0 0 +2.70252E7 23 3 27 95959 205 1395 347 70 134 50 7714 1343 5542 1670 210 5.1 0 0 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +2.70288E7 20.8 3.1 31 95963 0 993 337 0 0 0 0 0 0 0 210 3.6 0 0 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +2.70324E7 19 5 40 95888 0 0 337 0 0 0 0 0 0 0 170 2.6 1 1 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.7036E7 18 5 42 95870 0 0 333 0 0 0 0 0 0 0 150 3.1 1 1 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.70396E7 15.5 5.8 52 96028 0 0 316 0 0 0 0 0 0 0 170 3.1 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.70432E7 15 5 51 95815 0 0 327 0 0 0 0 0 0 0 13 0.5 3 3 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.70468E7 13 5 58 95778 0 0 320 0 0 0 0 0 0 0 276 1 4 4 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.70504E7 11.4 5.7 68 95866 0 0 298 0 0 0 0 0 0 0 208 0.5 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.7054E7 11 6 71 95740 0 0 317 0 0 0 0 0 0 0 144 0 6 6 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.70576E7 10 5 71 95721 0 0 312 0 0 0 0 0 0 0 93 0 6 6 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +2.70612E7 8.8 5.4 79 95835 0 0 300 0 0 0 0 0 0 0 320 1 3 3 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +2.70648E7 8 5 81 95683 0 0 284 0 0 0 0 0 0 0 20 1.5 0 0 7000 2000 9 999999999 16 0 0 88 0.2 0 0 +2.70684E7 11 7 76 95740 238 1149 298 88 77 75 9572 1994 8179 2306 29 0.5 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.7072E7 14 6.5 61 95868 526 1395 332 266 305 151 29648 20391 16883 5544 312 1 6 6 8000 7500 9 999999999 18 0 0 88 0.2 0 0 +2.70756E7 17 7 52 95852 793 1395 338 537 646 170 62473 45653 19830 7544 50 1.5 3 3 9900 7500 9 999999999 19 0 0 88 0.2 0 0 +2.70792E7 20 6 40 95906 1022 1395 343 754 832 145 92080 55130 17829 7374 140 0.5 1 1 9900 7500 9 999999999 17 0 0 88 0.2 0 0 +2.70828E7 22.7 4.2 30 95807 1196 1395 362 909 878 157 113013 58568 19547 8132 170 1.5 3 3 9900 7500 9 999999999 14 0 0 88 0.2 0 0 +2.70864E7 25 5 28 95994 1304 1395 359 1022 811 263 123845 61007 32116 12811 190 3.6 0 0 9900 7500 9 999999999 15 0 0 88 0.2 0 0 +2.709E7 26 6 28 96011 1338 1395 365 1053 813 273 127761 61007 33295 13240 160 5.7 0 0 9900 7500 9 999999999 17 0 0 88 0.2 0 0 +2.70936E7 27.7 5.9 25 95751 1296 1395 389 1000 811 247 121720 59526 30207 12142 170 6.2 3 3 9900 7500 9 999999999 16 0 0 88 0.2 0 0 +2.70972E7 28 6 25 96046 1182 1395 375 905 804 224 109294 58637 27181 11021 210 7.2 0 0 9900 7500 9 999999999 17 0 0 88 0.2 0 0 +2.71008E7 27 8 30 96029 1002 1395 372 734 828 139 89501 53609 17085 7064 210 7.7 0 0 9900 7500 9 999999999 20 0 0 88 0.2 0 0 +2.71044E7 25.4 7.5 32 95712 769 1395 380 512 663 147 60011 44468 17300 6639 220 7.7 3 3 9900 7500 9 999999999 19 0 0 88 0.2 0 0 +2.7108E7 24 8 36 95977 498 1395 358 281 445 122 31644 26133 13765 4658 210 7.7 0 0 9900 7500 9 999999999 20 0 0 88 0.2 0 0 +2.71116E7 21 8 43 95924 209 1395 350 71 137 51 7904 1244 5649 1708 200 6.2 1 1 9900 7500 9 999999999 21 0 0 88 0.2 0 0 +2.71152E7 18.8 8.7 52 95880 0 1015 334 0 0 0 0 0 0 0 170 4.1 0 0 9900 7500 9 999999999 22 0 0 88 0.2 0 0 +2.71188E7 17 8 55 95852 0 0 339 0 0 0 0 0 0 0 150 4.6 3 3 9900 7500 9 999999999 21 0 0 88 0.2 0 0 +2.71224E7 16 7 55 95834 0 0 333 0 0 0 0 0 0 0 140 5.7 3 3 9900 7500 9 999999999 19 0 0 88 0.2 0 0 +2.7126E7 14.3 7 61 96062 0 0 312 0 0 0 0 0 0 0 160 4.6 0 0 9900 7500 9 999999999 19 0 0 88 0.2 0 0 +2.71296E7 12 7 71 95759 0 0 323 0 0 0 0 0 0 0 170 4.6 6 6 9900 7500 9 999999999 19 0 0 88 0.2 0 0 +2.71332E7 11 7 76 95740 0 0 322 0 0 0 0 0 0 0 170 3.6 7 7 9900 7500 9 999999999 19 0 0 88 0.2 0 0 +2.71368E7 10.5 7.1 79 96085 0 0 296 0 0 0 0 0 0 0 160 3.1 0 0 9900 7500 9 999999999 19 0 0 88 0.2 0 0 +2.71404E7 10 7 82 95721 0 0 323 0 0 0 0 0 0 0 160 3.6 8 8 9900 7500 9 999999999 19 0 0 88 0.2 0 0 +2.7144E7 9 7 87 95702 0 0 290 0 0 0 0 0 0 0 160 2.6 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.71476E7 8 7 93 95683 0 0 321 0 0 0 0 0 0 0 180 3.1 9 9 1200 90 0 999999999 19 0 0 88 0.2 0 0 +2.71512E7 8 8 100 95683 0 0 331 0 0 0 0 0 0 0 160 3.6 10 10 800 30 0 999999999 21 0 0 88 0.2 0 0 +2.71548E7 8 8 100 95683 241 1167 331 28 0 28 2772 0 2792 1125 160 2.6 10 10 600 60 0 999999999 21 0 0 88 0.2 0 0 +2.71584E7 9 8 93 95702 529 1396 326 158 45 141 17715 2864 15879 5323 180 2.1 9 9 1300 60 0 999999999 21 0 0 88 0.2 0 0 +2.7162E7 13 9 77 95778 796 1396 322 535 577 206 61299 43350 23690 8730 190 2.6 3 3 7000 2000 0 999999999 23 0 0 88 0.2 0 0 +2.71656E7 15 9 67 95815 1024 1396 317 753 832 142 91978 53616 17461 7242 180 3.1 0 0 8000 2000 0 999999999 23 0 0 88 0.2 0 0 +2.71692E7 18.4 8.4 52 96166 1198 1396 346 905 865 162 112088 56545 20209 8405 170 3.1 3 3 8000 2000 0 999999999 22 0 0 88 0.2 0 0 +2.71728E7 21 9 46 95924 1306 1396 356 1016 812 256 123217 58891 31230 12521 180 4.6 2 2 9900 2000 0 999999999 23 0 0 88 0.2 0 0 +2.71764E7 22.6 9.1 42 96002 1341 1396 359 1049 814 268 127411 59408 32731 13060 109 5.6 1 1 9950 2000 9 999999999 23 0 0 88 0.2 0 0 +2.718E7 24.2 9.1 38 96080 1299 1396 360 1011 812 256 122529 58886 31163 12494 170 6.7 0 0 9950 2000 0 999999999 23 0 0 88 0.2 0 0 +2.71836E7 25 9 36 95994 1185 1396 364 903 805 221 109125 57161 26775 10888 170 7.2 0 0 9900 2000 0 999999999 23 0 0 88 0.2 0 0 +2.71872E7 26 9 34 96011 1005 1396 369 735 828 140 89702 53159 17097 7075 170 7.7 0 0 9900 2000 0 999999999 23 0 0 88 0.2 0 0 +2.71908E7 25.6 8 33 95934 772 1396 365 521 691 139 61385 45357 16478 6372 210 6.2 0 0 9900 2000 0 999999999 20 0 0 88 0.2 0 0 +2.71944E7 24 8 36 95977 502 1396 358 284 449 122 32014 26472 13846 4694 210 6.2 0 0 9900 2000 0 999999999 20 0 0 88 0.2 0 0 +2.7198E7 22 9 43 95942 214 1396 356 74 143 52 8154 1389 5752 1743 210 5.7 1 1 9900 2000 0 999999999 23 0 0 88 0.2 0 0 +2.72016E7 20.6 8.8 47 96007 0 1037 342 0 0 0 0 0 0 0 200 4.1 0 0 9900 2000 9 999999999 22 0 0 88 0.2 0 0 +2.72052E7 18 10 59 95870 0 0 349 0 0 0 0 0 0 0 150 4.1 4 4 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +2.72088E7 17 10 63 95852 0 0 347 0 0 0 0 0 0 0 160 3.6 5 5 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +2.72124E7 15.9 9.8 67 96064 0 0 322 0 0 0 0 0 0 0 160 2.1 0 0 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +2.7216E7 15 10 72 95815 0 0 340 0 0 0 0 0 0 0 180 2.6 6 6 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +2.72196E7 14 9 72 95797 0 0 334 0 0 0 0 0 0 0 160 2.1 6 6 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.72232E7 13.4 9.2 76 96017 0 0 311 0 0 0 0 0 0 0 160 1.5 0 0 9900 2000 9 999999999 24 0 0 88 0.2 0 0 +2.72268E7 13 9 77 95778 0 0 334 0 0 0 0 0 0 0 160 2.1 7 7 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.72304E7 12 9 82 95759 0 0 334 0 0 0 0 0 0 0 150 2.1 8 8 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.7234E7 11.3 8.8 85 96025 0 0 301 0 0 0 0 0 0 0 160 2.1 0 0 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.72376E7 11 9 87 95740 0 0 337 0 0 0 0 0 0 0 137 1 9 9 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.72412E7 13 9 77 95778 244 1183 334 74 51 65 8114 1056 7154 2142 160 1.5 7 7 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.72448E7 15.2 10 71 96174 532 1397 319 307 470 128 34690 28179 14549 4999 170 1 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +2.72484E7 19 11 60 95888 798 1397 355 524 640 158 61296 42739 18590 7167 54 1 4 4 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +2.7252E7 21 11 53 95924 1027 1397 362 745 807 151 90493 51877 18463 7640 24 1 3 3 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +2.72556E7 22.3 11.1 49 96151 1201 1397 353 915 806 222 110587 56186 26982 10978 180 3.6 0 0 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +2.72592E7 24 11 44 95977 1309 1397 368 1016 812 254 123171 57822 31039 12465 160 4.6 1 1 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +2.72628E7 25 10 39 95994 1343 1397 381 1037 893 178 129762 57574 22405 9242 160 5.7 3 3 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +2.72664E7 27 10 34 96029 1302 1397 391 999 888 171 124739 57051 21441 8874 210 5.7 3 3 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +2.727E7 27 9 32 96029 1188 1397 390 894 862 162 110602 56068 20085 8360 210 7.2 3 3 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.72736E7 26 9 34 96011 1008 1397 369 738 828 140 90030 53240 17177 7110 220 7.7 0 0 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.72772E7 24.3 8.6 37 96053 776 1397 378 506 626 159 59025 42765 18582 7083 210 8.7 4 4 9900 2000 9 999999999 22 0 0 88 0.2 0 0 +2.72808E7 23 9 41 95959 506 1397 361 286 449 124 32261 26394 13986 4747 200 7.7 1 1 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.72844E7 21 9 46 95924 218 1397 356 76 147 53 8389 1605 5863 1779 210 5.7 2 2 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.7288E7 18.1 8.8 55 96217 0 1059 331 0 0 0 0 0 0 0 160 4.1 0 0 9900 2000 9 999999999 22 0 0 88 0.2 0 0 +2.72916E7 16 8 59 95834 0 0 337 0 0 0 0 0 0 0 140 4.6 4 4 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.72952E7 15 8 63 95815 0 0 335 0 0 0 0 0 0 0 160 5.7 5 5 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.72988E7 13.9 6.8 62 96395 0 0 310 0 0 0 0 0 0 0 160 4.6 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.73024E7 13 6 62 95778 0 0 321 0 0 0 0 0 0 0 160 3.1 4 4 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.7306E7 13 6 62 95778 0 0 321 0 0 0 0 0 0 0 160 3.6 4 4 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.73096E7 11.3 6 70 96393 0 0 298 0 0 0 0 0 0 0 160 2.6 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.73132E7 11 6 71 95740 0 0 317 0 0 0 0 0 0 0 170 2.6 6 6 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.73168E7 11 6 71 95740 0 0 317 0 0 0 0 0 0 0 150 1.5 6 6 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.73204E7 10.5 6.1 74 96378 0 0 295 0 0 0 0 0 0 0 140 0.5 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.7324E7 9 6 81 95702 0 0 317 0 0 0 0 0 0 0 263 0.5 8 8 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.73276E7 12 7 71 95759 247 1200 323 83 91 67 9109 2092 7359 2194 301 0.5 6 6 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.73312E7 15 7 59 95815 534 1397 331 302 437 134 34030 27577 15231 5182 158 1 4 4 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.73348E7 17 8 55 95852 801 1397 339 539 674 152 63273 45544 17986 6962 202 1.5 3 3 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.73384E7 20 9 49 95906 1029 1397 351 754 824 147 91911 53507 17998 7456 150 2.6 2 2 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.7342E7 21.7 7.6 40 96339 1203 1397 346 922 807 228 111430 58250 27657 11205 180 3.1 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.73456E7 24 8 36 95977 1311 1397 358 1023 813 261 124076 59695 31792 12714 170 5.1 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.73492E7 25 9 36 95994 1345 1397 364 1054 815 270 128000 59606 32960 13141 150 5.1 0 0 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.73528E7 26 6.9 30 96225 1304 1397 373 1019 812 260 123483 60156 31711 12678 190 6.2 1 1 9900 2000 9 999999999 18 0 0 88 0.2 0 0 +2.73564E7 27 7 28 96029 1190 1397 371 911 806 225 110081 58358 27300 11070 190 5.7 0 0 9900 2000 9 999999999 18 0 0 88 0.2 0 0 +2.736E7 27 6 26 96029 1011 1397 370 744 829 144 90764 54922 17647 7288 210 7.2 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.73636E7 26.3 5.2 26 96173 779 1397 372 529 684 148 62183 46725 17465 6717 210 7.7 1 1 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.73672E7 25 6 30 95994 510 1397 360 291 459 123 32865 27713 13969 4752 220 6.7 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.73708E7 23 6 33 95959 222 1397 350 79 158 53 8724 2120 5953 1809 210 6.7 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.73744E7 21.4 6.1 37 96229 0 1081 343 0 0 0 0 0 0 0 200 6.2 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.7378E7 20 8 46 95906 0 0 350 0 0 0 0 0 0 0 200 5.1 2 2 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.73816E7 19 8 49 95888 0 0 345 0 0 0 0 0 0 0 150 2.6 2 2 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.73852E7 17.3 8.3 55 96326 0 0 327 0 0 0 0 0 0 0 150 3.1 0 0 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.73888E7 16 8 59 95834 0 0 337 0 0 0 0 0 0 0 140 2.1 4 4 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.73924E7 15 8 63 95815 0 0 335 0 0 0 0 0 0 0 140 2.6 5 5 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.7396E7 14.5 7.6 63 96255 0 0 327 0 0 0 0 0 0 0 140 1.5 3 3 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.73996E7 13 8 72 95778 0 0 329 0 0 0 0 0 0 0 303 0.5 6 6 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.74032E7 12 8 76 95759 0 0 328 0 0 0 0 0 0 0 290 0 7 7 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.74068E7 11.2 7.6 78 96259 0 0 299 0 0 0 0 0 0 0 253 0.5 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.74104E7 12 7 71 95759 0 0 323 0 0 0 0 0 0 0 44 0.5 6 6 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.7414E7 13 7 67 95778 250 1215 325 88 113 68 9657 2680 7455 2223 280 2.1 5 5 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.74176E7 16.2 8.1 59 96315 537 1398 322 312 477 129 35311 29240 14616 5032 238 1 0 0 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.74212E7 19 8 49 95888 803 1398 345 546 696 146 64418 46431 17314 6739 170 2.1 2 2 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.74248E7 20 8 46 95906 1031 1398 350 759 831 145 92637 54260 17833 7391 190 3.1 2 2 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.74284E7 22.5 5.4 33 96230 1205 1398 347 927 807 231 112005 59371 28082 11349 170 5.1 0 0 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +2.7432E7 24 5 29 95977 1313 1398 354 1030 813 266 124845 61217 32406 12915 180 3.6 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.74356E7 26 6 28 96011 1348 1398 365 1061 815 275 128821 61222 33610 13353 170 5.1 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.74392E7 26.6 6.1 27 96074 1307 1398 368 1022 813 262 123929 60628 31975 12767 170 5.7 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.74428E7 27 5 24 96029 1193 1398 369 916 806 228 110691 59362 27706 11209 220 6.7 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.74464E7 27 3 21 96029 1014 1398 366 750 821 154 91146 56358 18839 7742 210 5.7 0 0 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +2.745E7 26.9 5 25 95956 783 1398 368 533 685 149 62555 46956 17614 6776 210 6.2 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.74536E7 25 6 30 95994 514 1398 360 294 461 124 33197 27983 14074 4794 220 7.7 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.74572E7 23 6 33 95959 226 1398 350 81 163 54 8976 2372 6057 1845 210 7.2 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.74608E7 20.2 6.3 40 96123 0 1103 338 0 0 0 0 0 0 0 200 6.2 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.74644E7 20 7 43 95906 0 0 344 0 0 0 0 0 0 0 160 4.6 1 1 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.7468E7 19 7 46 95888 0 0 344 0 0 0 0 0 0 0 150 3.1 2 2 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.74716E7 16.6 7.1 53 96228 0 0 322 0 0 0 0 0 0 0 150 3.6 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.74752E7 15 7 59 95815 0 0 331 0 0 0 0 0 0 0 150 2.6 4 4 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.74788E7 15 7 59 95815 0 0 331 0 0 0 0 0 0 0 183 1 4 4 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.74824E7 12.4 7.4 72 96102 0 0 304 0 0 0 0 0 0 0 168 0.5 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.7486E7 13 7 67 95778 0 0 307 0 0 0 0 0 0 0 45 0.5 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.74896E7 12 7 71 95759 0 0 302 0 0 0 0 0 0 0 160 0.5 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.74932E7 11.3 6.8 74 95996 0 0 299 0 0 0 0 0 0 0 246 1 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.74968E7 11 7 76 95740 0 0 298 0 0 0 0 0 0 0 49 0 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.75004E7 15 8 63 95815 253 1230 335 92 132 68 10111 3129 7521 2247 150 1.5 5 5 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.7504E7 17.4 8.1 54 96044 539 1399 327 314 480 129 35546 29443 14664 5054 50 1 0 0 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.75076E7 19 8 49 95888 805 1399 345 548 698 147 64655 46540 17348 6756 123 1.5 2 2 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.75112E7 22 7 38 95942 1033 1399 347 763 838 144 93321 54964 17662 7323 160 2.1 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.75148E7 23.3 6.6 34 95913 1207 1399 359 927 807 230 112014 58839 27923 11298 190 3.6 1 1 9900 2000 9 999999999 18 0 0 88 0.2 0 0 +2.75184E7 25 6 30 95994 1315 1399 360 1030 814 265 124905 60810 32302 12884 170 6.2 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.7522E7 27 7 28 96029 1350 1399 371 1062 815 274 128890 60787 33505 13321 170 5.1 0 0 9900 2000 9 999999999 18 0 0 88 0.2 0 0 +2.75256E7 27.2 3.3 21 95800 1309 1399 389 957 658 341 113903 54575 40821 15644 220 7.7 5 5 9900 2000 9 999999999 13 0 0 88 0.2 0 0 +2.75292E7 28 5 23 96046 1196 1399 373 919 870 175 113256 59390 21701 8976 210 8.7 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.75328E7 27 5 24 96029 1017 1399 369 751 763 196 89571 55463 23443 9444 210 8.2 0 0 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.75364E7 25.7 6.7 30 95774 786 1399 400 359 170 264 40309 14492 29744 10191 220 8.7 8 8 9900 7500 9 999999999 18 0 0 88 0.2 0 0 +2.754E7 24 6 31 95977 518 1399 355 297 407 146 33137 26795 16383 5379 220 8.2 0 0 9900 7500 9 999999999 17 0 0 88 0.2 0 0 +2.75436E7 22 6 35 95942 230 1399 346 83 170 55 9253 2649 6153 1878 200 8.2 0 0 9900 7500 9 999999999 17 0 0 88 0.2 0 0 +2.75472E7 20.8 6.1 38 96010 0 1125 382 0 0 0 0 0 0 0 170 5.7 9 9 9900 7500 9 999999999 17 0 0 88 0.2 0 0 +2.75508E7 19 5 40 95888 0 0 337 0 0 0 0 0 0 0 130 6.2 1 1 9900 7500 9 999999999 15 0 0 88 0.2 0 0 +2.75544E7 17 6 48 95852 0 0 334 0 0 0 0 0 0 0 160 4.6 2 2 9900 7500 9 999999999 17 0 0 88 0.2 0 0 +2.7558E7 15.8 6.2 53 96166 0 0 332 0 0 0 0 0 0 0 160 4.1 3 3 9900 7500 9 999999999 17 0 0 88 0.2 0 0 +2.75616E7 14 7 63 95797 0 0 329 0 0 0 0 0 0 0 160 4.6 5 5 9900 7500 9 999999999 19 0 0 88 0.2 0 0 +2.75652E7 13 7 67 95778 0 0 325 0 0 0 0 0 0 0 160 3.6 5 5 9900 7500 9 999999999 19 0 0 88 0.2 0 0 +2.75688E7 12.8 6.8 67 96110 0 0 305 0 0 0 0 0 0 0 160 1.5 0 0 9900 7500 9 999999999 19 0 0 88 0.2 0 0 +2.75724E7 12 7 71 95759 0 0 323 0 0 0 0 0 0 0 140 2.1 6 6 9900 7500 9 999999999 19 0 0 88 0.2 0 0 +2.7576E7 12 7 71 95759 0 0 323 0 0 0 0 0 0 0 160 2.1 6 6 9900 7500 9 999999999 19 0 0 88 0.2 0 0 +2.75796E7 11.1 7.2 77 96153 0 0 299 0 0 0 0 0 0 0 170 2.1 0 0 9900 7500 9 999999999 19 0 0 88 0.2 0 0 +2.75832E7 11 7 76 95740 0 0 322 0 0 0 0 0 0 0 180 1.5 7 7 9900 7500 9 999999999 19 0 0 88 0.2 0 0 +2.75868E7 13 8 72 95778 255 1245 329 86 91 69 9432 2238 7628 2278 180 2.1 6 6 9900 7500 9 999999999 21 0 0 88 0.2 0 0 +2.75904E7 15.7 7.8 59 96259 541 1399 319 316 482 129 35787 29731 14701 5071 259 1 0 0 9900 7500 9 999999999 20 0 0 88 0.2 0 0 +2.7594E7 18 9 56 95870 808 1399 345 542 672 154 63611 45184 18151 7037 267 1 3 3 9900 7500 9 999999999 23 0 0 88 0.2 0 0 +2.75976E7 20 9 49 95906 1035 1399 351 759 826 148 92569 53691 18128 7513 127 1 2 2 9900 7500 9 999999999 23 0 0 88 0.2 0 0 +2.76012E7 22.3 8.3 41 96141 1209 1399 350 926 808 228 111966 58042 27731 11237 171 1 0 0 9900 7500 9 999999999 21 0 0 88 0.2 0 0 +2.76048E7 24 6 31 95977 1317 1399 355 1032 814 265 125123 60859 32367 12907 150 4.1 0 0 9900 7500 9 999999999 17 0 0 88 0.2 0 0 +2.76084E7 26 9 34 96011 1352 1399 385 1047 816 258 127582 58780 31644 12682 170 6.2 3 3 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.7612E7 25 8.1 34 96037 1312 1399 378 1010 814 247 122995 58747 30284 12182 210 7.2 3 3 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.76156E7 27 8 30 96029 1199 1399 388 906 867 162 112138 56883 20195 8398 210 7.2 3 3 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.76192E7 26 6 28 96011 1021 1399 381 743 833 135 91132 54246 16647 6908 210 6.7 3 3 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.76228E7 26.2 2.7 22 95934 790 1399 362 541 679 158 63354 48002 18550 7101 220 6.7 0 0 9900 2000 9 999999999 12 0 0 88 0.2 0 0 +2.76264E7 25 6 30 95994 522 1399 360 300 469 125 33946 28654 14229 4864 210 6.7 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.763E7 22 8 41 95942 235 1399 355 86 107 68 9350 2277 7418 2155 210 7.7 1 1 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.76336E7 17.9 8.9 56 96053 0 1147 347 0 0 0 0 0 0 0 200 7.2 4 4 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.76372E7 17 9 59 95852 0 0 343 0 0 0 0 0 0 0 150 5.1 4 4 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.76408E7 15 9 67 95815 0 0 336 0 0 0 0 0 0 0 160 5.7 5 5 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.76444E7 15 8.7 66 96217 0 0 331 0 0 0 0 0 0 0 170 5.1 3 3 9900 2000 9 999999999 22 0 0 88 0.2 0 0 +2.7648E7 14 9 72 95797 0 0 334 0 0 0 0 0 0 0 170 2.6 6 6 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.76516E7 13 9 77 95778 0 0 334 0 0 0 0 0 0 0 170 2.1 7 7 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.76552E7 12.3 8.4 77 96072 0 0 326 0 0 0 0 0 0 0 150 3.6 6 6 9900 7500 9 999999999 22 0 0 88 0.2 0 0 +2.76588E7 12 8 76 95759 0 0 328 0 0 0 0 0 0 0 150 4.1 7 7 9900 7500 9 999999999 21 0 0 88 0.2 0 0 +2.76624E7 12 8 76 95759 0 0 328 0 0 0 0 0 0 0 200 2.6 7 7 9900 7500 9 999999999 21 0 0 88 0.2 0 0 +2.7666E7 10.3 7.8 84 96147 0 0 309 0 0 0 0 0 0 0 160 1.5 3 3 9900 7500 9 999999999 21 0 0 88 0.2 0 0 +2.76696E7 10 8 87 95721 0 0 295 0 0 0 0 0 0 0 350 2.1 0 0 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +2.76732E7 11 8 82 95740 258 1259 299 100 113 79 10853 3306 8618 2475 210 1.5 0 0 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +2.76768E7 14.9 8.6 66 96102 544 1400 338 277 311 156 30903 20879 17527 5785 226 0.5 6 6 8000 7500 9 999999999 22 0 0 88 0.2 0 0 +2.76804E7 17 10 63 95852 809 1400 347 525 584 188 60729 41845 21816 8229 180 3.6 5 5 9900 7500 9 999999999 25 0 0 88 0.2 0 0 +2.7684E7 19 10 56 95888 1037 1400 351 749 758 187 89687 52276 22558 9185 170 4.1 3 3 9900 7500 9 999999999 25 0 0 88 0.2 0 0 +2.76876E7 21.3 9.4 47 96029 1211 1400 370 809 561 324 95154 45244 38334 14753 180 4.6 6 6 9900 7500 9 999999999 24 0 0 88 0.2 0 0 +2.76912E7 23 10 44 95959 1319 1400 362 1026 859 217 126150 58628 26840 10938 170 5.1 1 1 9900 7500 9 999999999 25 0 0 88 0.2 0 0 +2.76948E7 25 10 39 95994 1354 1400 372 1060 864 225 130000 59156 27811 11300 160 6.2 1 1 9900 7500 9 999999999 25 0 0 88 0.2 0 0 +2.76984E7 25.3 9.8 38 95909 1314 1400 391 893 632 300 107122 48050 36164 14206 220 6.7 6 6 9900 7500 9 999999999 24 0 0 88 0.2 0 0 +2.7702E7 25 10 39 95994 1201 1400 372 917 725 295 108461 56276 35054 13723 220 8.7 1 1 9900 7500 9 999999999 25 0 0 88 0.2 0 0 +2.77056E7 25 10 39 95994 1024 1400 409 388 57 346 44141 4999 39643 14361 220 7.7 9 9 9900 7500 9 999999999 25 0 0 88 0.2 0 0 +2.77092E7 24.3 10.8 43 95864 793 1400 407 277 21 265 31067 1748 29902 10290 210 6.7 9 9 9900 7500 9 999999999 27 0 0 88 0.2 0 0 +2.77128E7 22 11 50 95942 525 1400 395 155 19 148 17301 1201 16588 5474 210 6.2 9 9 9900 7500 9 999999999 28 0 0 88 0.2 0 0 +2.77164E7 20 11 56 95906 239 1400 357 86 125 65 9444 2340 7125 2116 210 6.2 3 3 9900 7500 9 999999999 28 0 0 88 0.2 0 0 +2.772E7 17.9 10.4 61 95987 0 1169 365 0 0 0 0 0 0 0 200 7.2 8 8 9900 7500 9 999999999 26 0 0 88 0.2 0 0 +2.77236E7 17 10 63 95852 0 0 347 0 0 0 0 0 0 0 140 4.1 5 5 9900 7500 9 999999999 25 0 0 88 0.2 0 0 +2.77272E7 15 10 72 95815 0 0 340 0 0 0 0 0 0 0 140 4.6 6 6 9900 7500 9 999999999 25 0 0 88 0.2 0 0 +2.77308E7 14.2 9.7 74 96127 0 0 336 0 0 0 0 0 0 0 150 4.6 6 6 9900 7500 9 999999999 25 0 0 88 0.2 0 0 +2.77344E7 13 9 77 95778 0 0 334 0 0 0 0 0 0 0 170 5.1 7 7 9900 7500 9 999999999 23 0 0 88 0.2 0 0 +2.7738E7 12 9 82 95759 0 0 334 0 0 0 0 0 0 0 160 4.6 8 8 9900 7500 9 999999999 23 0 0 88 0.2 0 0 +2.77416E7 11.5 9.5 88 95991 0 0 340 0 0 0 0 0 0 0 180 4.6 9 9 9900 1200 9 999999999 24 0 0 88 0.2 0 0 +2.77452E7 12 9 82 95759 0 0 341 0 0 0 0 0 0 0 160 3.1 9 9 9900 600 9 999999999 23 0 0 88 0.2 0 0 +2.77488E7 11 9 87 95740 0 0 337 0 0 0 0 0 0 0 160 3.6 9 9 7000 150 0 999999999 23 0 0 88 0.2 0 0 +2.77524E7 11 9 87 95740 0 0 318 0 0 0 0 0 0 0 150 3.6 5 5 7000 2000 0 999999999 23 0 0 88 0.2 0 0 +2.7756E7 11 10 94 95740 0 0 347 0 0 0 0 0 0 0 150 4.1 10 10 5000 90 0 999999999 26 0 0 88 0.2 0 0 +2.77596E7 11 9 87 95740 260 1272 346 32 0 32 3113 0 3136 1265 170 3.1 10 10 5000 120 0 999999999 23 0 0 88 0.2 0 0 +2.77632E7 10.9 9.1 89 96121 546 1400 346 100 0 100 10058 0 10140 4197 220 1.5 10 10 5000 150 0 999999999 23 0 0 88 0.2 0 0 +2.77668E7 13 9 77 95778 811 1400 346 286 50 257 32306 4125 29203 10258 32 1 9 9 7000 240 0 999999999 23 0 0 88 0.2 0 0 +2.77704E7 16 10 68 95834 1039 1400 337 754 680 250 88364 51791 29468 11557 127 1.5 3 3 7000 2000 0 999999999 25 0 0 88 0.2 0 0 +2.7774E7 19.2 10.7 58 95953 1213 1400 353 914 865 165 113111 55511 20501 8526 113 1.5 3 3 7000 2000 0 999999999 27 0 0 88 0.2 0 0 +2.77776E7 21 10 49 95924 1321 1400 361 1016 894 172 127004 57383 21648 8952 180 4.6 3 3 7000 2000 0 999999999 25 0 0 88 0.2 0 0 +2.77812E7 23 10 44 95959 1356 1400 371 1049 895 182 130000 57875 22849 9413 200 7.7 3 3 7000 2000 0 999999999 25 0 0 88 0.2 0 0 +2.77848E7 23.2 9.7 42 95816 1316 1400 371 1012 895 171 126588 57516 21485 8887 210 8.2 3 3 7000 2000 0 999999999 24 0 0 88 0.2 0 0 +2.77884E7 23 9 41 95959 1204 1400 369 909 867 163 112503 56431 20316 8448 220 9.3 3 3 7000 2000 0 999999999 23 0 0 88 0.2 0 0 +2.7792E7 22 9 43 95942 1027 1400 364 745 804 155 90375 53003 18927 7808 200 7.7 3 3 7000 2000 0 999999999 23 0 0 88 0.2 0 0 +2.77956E7 20.9 8.8 46 95870 797 1400 359 535 677 149 62833 45210 17633 6828 200 6.7 3 3 7000 2000 0 999999999 22 0 0 88 0.2 0 0 +2.77992E7 20 9 49 95906 529 1400 355 301 450 131 33943 27490 14809 5050 210 6.7 3 3 7000 2000 0 999999999 23 0 0 88 0.2 0 0 +2.78028E7 18 9 56 95870 243 1400 345 89 109 70 9750 2513 7717 2246 210 5.7 3 3 7000 2000 0 999999999 23 0 0 88 0.2 0 0 +2.78064E7 16.3 8.6 60 95986 0 1191 323 0 0 0 0 0 0 0 190 5.1 0 0 7000 2000 9 999999999 22 0 0 88 0.2 0 0 +2.781E7 15 9 67 95815 0 0 336 0 0 0 0 0 0 0 150 4.1 5 5 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.78136E7 14 8 67 95797 0 0 330 0 0 0 0 0 0 0 160 3.1 5 5 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.78172E7 12.8 7.8 72 96053 0 0 322 0 0 0 0 0 0 0 150 2.6 4 4 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.78208E7 12 8 76 95759 0 0 328 0 0 0 0 0 0 0 160 3.1 7 7 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.78244E7 11 8 82 95740 0 0 329 0 0 0 0 0 0 0 160 3.1 8 8 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.7828E7 10 8 87 95721 0 0 331 0 0 0 0 0 0 0 170 5.1 9 9 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.78316E7 10 8 87 95721 0 0 331 0 0 0 0 0 0 0 140 3.1 9 9 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.78352E7 9 8 93 95702 0 0 335 0 0 0 0 0 0 0 160 2.6 10 10 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.78388E7 8 7 93 95683 0 0 303 0 0 0 0 0 0 0 224 0.5 5 5 8000 2000 0 999999999 19 0 0 88 0.2 0 0 +2.78424E7 9 8 93 95702 0 0 326 0 0 0 0 0 0 0 170 1.5 9 9 5000 7500 0 999999999 21 0 0 88 0.2 0 0 +2.7846E7 10 8 87 95721 262 1284 331 53 0 53 5172 0 5210 1911 150 1.5 9 9 4000 60 0 999999999 21 0 0 88 0.2 0 0 +2.78496E7 12.3 8.4 77 95949 547 1401 323 298 338 166 33102 23452 18525 6027 313 1 5 5 8000 7500 0 999999999 22 0 0 88 0.2 0 0 +2.78532E7 15 8 63 95815 813 1401 335 530 619 171 61777 43449 19992 7658 46 0.5 5 5 9900 7500 0 999999999 21 0 0 88 0.2 0 0 +2.78568E7 17 9 59 95852 1040 1401 343 745 730 202 88724 52009 24198 9776 220 1.5 4 4 9900 7500 0 999999999 23 0 0 88 0.2 0 0 +2.78604E7 18.8 6.6 45 95861 1214 1401 355 815 567 323 96004 46508 38333 14742 170 2.6 6 6 9900 7500 0 999999999 18 0 0 88 0.2 0 0 +2.7864E7 21 7 40 95924 1323 1401 349 1035 882 202 128095 60400 25120 10280 160 3.6 1 1 9900 7500 0 999999999 19 0 0 88 0.2 0 0 +2.78676E7 22 6 35 95942 1358 1401 346 1070 663 427 125763 58634 50505 18499 150 3.6 0 0 9900 7500 0 999999999 17 0 0 88 0.2 0 0 +2.78712E7 22.2 5.6 34 95780 1319 1401 389 534 84 455 62078 7704 53300 19062 180 5.7 9 9 9900 6000 0 999999999 16 0 0 88 0.2 0 0 +2.78748E7 22 7 38 95942 1207 1401 389 478 50 435 54939 4679 50309 17903 180 7.2 9 9 9900 6000 0 999999999 19 0 0 88 0.2 0 0 +2.78784E7 22 9 43 95942 1030 1401 392 391 67 342 44616 5852 39256 14297 210 6.7 9 9 9900 4800 0 999999999 23 0 0 88 0.2 0 0 +2.7882E7 21.1 7.9 43 95779 800 1401 386 281 22 269 31589 1838 30379 10436 220 6.2 9 9 9900 5100 0 999999999 20 0 0 88 0.2 0 0 +2.78856E7 20 8 46 95906 533 1401 380 159 6 157 17704 405 17530 5722 210 5.1 9 9 9900 6000 0 999999999 21 0 0 88 0.2 0 0 +2.78892E7 19 8 49 95888 247 1401 375 48 0 48 4694 0 4728 1741 160 4.6 9 9 9900 6000 0 999999999 21 0 0 88 0.2 0 0 +2.78928E7 17.1 7.6 54 95859 0 1213 365 0 0 0 0 0 0 0 160 4.1 9 9 9900 6000 9 999999999 20 0 0 88 0.2 0 0 +2.78964E7 16 8 59 95834 0 0 360 0 0 0 0 0 0 0 150 3.1 9 9 9900 6000 9 999999999 21 0 0 88 0.2 0 0 +2.79E7 16 8 59 95834 0 0 360 0 0 0 0 0 0 0 160 3.1 9 9 9900 6000 9 999999999 21 0 0 88 0.2 0 0 +2.79036E7 14.7 8 64 95881 0 0 353 0 0 0 0 0 0 0 160 3.6 9 9 9900 6000 9 999999999 21 0 0 88 0.2 0 0 +2.79072E7 14 8 67 95797 0 0 350 0 0 0 0 0 0 0 160 2.6 9 9 9900 5400 9 999999999 21 0 0 88 0.2 0 0 +2.79108E7 13 8 72 95778 0 0 345 0 0 0 0 0 0 0 160 3.1 9 9 9900 5400 9 999999999 21 0 0 88 0.2 0 0 +2.79144E7 12.9 7.9 72 95932 0 0 345 0 0 0 0 0 0 0 140 4.1 9 9 9900 5400 9 999999999 21 0 0 88 0.2 0 0 +2.7918E7 12 8 76 95759 0 0 340 0 0 0 0 0 0 0 150 3.6 9 9 9900 5400 9 999999999 21 0 0 88 0.2 0 0 +2.79216E7 12 7 71 95759 0 0 339 0 0 0 0 0 0 0 130 4.1 9 9 9900 5400 9 999999999 19 0 0 88 0.2 0 0 +2.79252E7 11.6 7.3 75 96125 0 0 338 0 0 0 0 0 0 0 150 3.6 9 9 9900 5400 9 999999999 20 0 0 88 0.2 0 0 +2.79288E7 12 7 71 95759 0 0 339 0 0 0 0 0 0 0 134 1 9 9 9900 5400 9 999999999 19 0 0 88 0.2 0 0 +2.79324E7 12 8 76 95759 264 1296 340 53 0 53 5237 0 5275 1934 300 3.1 9 9 9900 5400 9 999999999 21 0 0 88 0.2 0 0 +2.7936E7 13.4 7.9 69 96131 549 1402 347 166 48 147 18654 3178 16598 5589 20 3.1 9 9 9900 5100 9 999999999 21 0 0 88 0.2 0 0 +2.79396E7 16 8 59 95834 815 1402 340 520 534 209 59647 40531 24130 8931 190 1 5 5 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.79432E7 18 8 52 95870 1042 1402 344 759 770 187 91080 53878 22537 9177 190 2.6 3 3 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.79468E7 20.4 7.8 44 96183 1216 1402 347 933 809 230 112726 58462 27978 11324 190 5.7 1 1 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.79504E7 22 7 38 95942 1324 1402 362 1023 816 252 124579 59562 30897 12398 180 5.1 3 3 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.7954E7 24 8 36 95977 1360 1402 373 1055 817 262 128638 59511 32083 12834 150 5.7 3 3 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.79576E7 24.7 7.3 33 96070 1321 1402 376 1020 815 251 124143 59373 30729 12339 160 4.6 3 3 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.79612E7 25 9 36 95994 1209 1402 379 913 868 164 113109 56545 20385 8475 200 7.2 3 3 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.79648E7 24 9 38 95977 1033 1402 374 750 806 156 91038 53170 19045 7860 220 7.7 3 3 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.79684E7 23 9.3 42 96040 803 1402 370 540 681 150 63504 45279 17682 6863 220 8.7 3 3 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.7972E7 21 9 46 95924 537 1402 359 307 455 132 34635 28050 15001 5130 210 8.7 3 3 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.79756E7 19 9 52 95888 251 1402 350 94 123 72 10325 3075 7941 2322 220 7.7 3 3 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.79792E7 16.8 8.2 57 96260 0 1235 324 0 0 0 0 0 0 0 200 5.7 0 0 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.79828E7 16 6 51 95834 0 0 332 0 0 0 0 0 0 0 200 6.7 3 3 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.79864E7 15 7 59 95815 0 0 331 0 0 0 0 0 0 0 140 3.1 4 4 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.799E7 14.4 6.1 57 96461 0 0 312 0 0 0 0 0 0 0 140 3.1 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.79936E7 13 6 62 95778 0 0 321 0 0 0 0 0 0 0 160 2.6 4 4 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.79972E7 13 6 62 95778 0 0 321 0 0 0 0 0 0 0 190 2.6 4 4 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.80008E7 12.6 6.4 66 96399 0 0 304 0 0 0 0 0 0 0 230 1.5 0 0 9900 2000 9 999999999 18 0 0 88 0.2 0 0 +2.80044E7 12 7 71 95759 0 0 323 0 0 0 0 0 0 0 140 2.1 6 6 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.8008E7 12 8 76 95759 0 0 328 0 0 0 0 0 0 0 180 1.5 7 7 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.80116E7 10.4 6.2 75 96404 0 0 307 0 0 0 0 0 0 0 250 1.5 3 3 9900 2000 9 999999999 18 0 0 88 0.2 0 0 +2.80152E7 10 7 82 95721 0 0 307 0 0 0 0 0 0 0 205 0 3 3 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.80188E7 12 8 76 95759 266 1307 316 103 137 77 11297 4016 8490 2489 323 0.5 3 3 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.80224E7 14.5 7.5 63 96482 551 1402 327 319 471 134 36126 29687 15263 5254 294 1 3 3 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.8026E7 17 8 55 95852 816 1402 339 552 685 154 64991 46400 18143 7051 68 1 3 3 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.80296E7 19 8 49 95888 1043 1402 345 767 830 150 93588 54496 18334 7597 160 4.1 2 2 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.80332E7 20 8.3 47 96432 1217 1402 357 902 798 210 109845 55783 25655 10482 160 4.1 4 4 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.80368E7 22 8 41 95942 1326 1402 355 1036 816 264 125682 60052 32248 12878 170 3.6 1 1 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.80404E7 24 7 34 95977 1362 1402 372 1058 818 264 129028 60079 32337 12919 160 4.6 3 3 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.8044E7 25 8 34 95994 1323 1402 378 1021 816 251 124258 59058 30675 12324 220 6.7 3 3 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.80476E7 25 9 36 95994 1212 1402 379 916 869 164 113414 56603 20413 8485 230 7.2 3 3 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.80512E7 25 9 36 95994 1036 1402 379 753 770 184 90282 53256 22135 9021 230 7.7 3 3 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.80548E7 23.9 8.9 38 96112 807 1402 383 481 444 225 54775 34615 25766 9347 220 7.2 6 6 9900 7500 9 999999999 22 0 0 88 0.2 0 0 +2.80584E7 24 8 36 95977 541 1402 379 293 335 164 32513 23125 18264 5925 220 7.2 5 5 9900 7500 9 999999999 20 0 0 88 0.2 0 0 +2.8062E7 21 9 46 95924 255 1402 387 51 0 51 4945 0 4981 1831 210 7.2 9 9 9900 5400 9 999999999 23 0 0 88 0.2 0 0 +2.80656E7 19.7 7.8 46 96161 0 1257 378 0 0 0 0 0 0 0 210 4.1 9 9 9900 6600 9 999999999 20 0 0 88 0.2 0 0 +2.80692E7 19 9 52 95888 0 0 350 0 0 0 0 0 0 0 210 3.1 3 3 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.80728E7 18 9 56 95870 0 0 350 0 0 0 0 0 0 0 150 3.1 5 5 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.80764E7 16.6 9.6 63 96133 0 0 365 0 0 0 0 0 0 0 150 3.1 9 9 9900 6600 9 999999999 24 0 0 88 0.2 0 0 +2.808E7 16 10 68 95834 0 0 342 0 0 0 0 0 0 0 150 3.1 5 5 9900 6600 9 999999999 25 0 0 88 0.2 0 0 +2.80836E7 15 10 72 95815 0 0 357 0 0 0 0 0 0 0 150 2.6 9 9 9900 5400 9 999999999 25 0 0 88 0.2 0 0 +2.80872E7 14.9 9.4 70 95951 0 0 356 0 0 0 0 0 0 0 150 1 9 9 9900 5400 9 999999999 24 0 0 88 0.2 0 0 +2.80908E7 15 10 72 95815 0 0 357 0 0 0 0 0 0 0 111 0 9 9 9900 5400 9 999999999 25 0 0 88 0.2 0 0 +2.80944E7 14 9 72 95797 0 0 351 0 0 0 0 0 0 0 143 1 9 9 9900 5400 9 999999999 23 0 0 88 0.2 0 0 +2.8098E7 13.3 9.8 79 95930 0 0 349 0 0 0 0 0 0 0 327 1 9 9 8000 5400 9 999999999 25 0 0 88 0.2 0 0 +2.81016E7 13 9 77 95778 0 0 346 0 0 0 0 0 0 0 137 0.5 9 9 8000 5400 9 999999999 23 0 0 88 0.2 0 0 +2.81052E7 15 10 72 95815 268 1318 337 98 133 73 10782 3511 8021 2406 146 0.5 5 5 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +2.81088E7 16.9 10.2 65 95959 552 1403 341 319 466 136 36040 28834 15386 5297 267 1 3 3 8000 2000 9 999999999 26 0 0 88 0.2 0 0 +2.81124E7 19 11 60 95888 817 1403 355 540 648 162 63146 43561 18995 7351 290 1.5 4 4 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +2.8116E7 21 11 53 95924 1044 1403 362 760 780 179 91354 52504 21573 8838 260 2.1 3 3 9900 2000 9 999999999 28 0 0 88 0.2 0 0 +2.81196E7 22.9 10.5 45 95896 1218 1403 376 867 683 274 103313 51176 32803 13008 275 2.1 5 5 9900 7500 9 999999999 26 0 0 88 0.2 0 0 +2.81232E7 24 9 38 95977 1327 1403 380 964 600 396 113354 50992 46899 17461 180 4.1 5 5 9900 7500 9 999999999 23 0 0 88 0.2 0 0 +2.81268E7 25 10 39 95994 1364 1403 409 552 81 473 64246 7348 55430 19762 160 5.1 9 9 9900 7500 9 999999999 25 0 0 88 0.2 0 0 +2.81304E7 27.2 8.7 31 95809 1325 1403 420 534 82 457 62099 7456 53447 19133 210 5.7 9 9 9900 7500 9 999999999 22 0 0 88 0.2 0 0 +2.8134E7 27 8 30 96029 1214 1403 394 867 594 352 101371 50049 41426 15653 210 5.1 5 5 9900 7500 9 999999999 20 0 0 88 0.2 0 0 +2.81376E7 27 9 32 96029 1039 1403 396 712 663 221 84240 48690 26286 10494 220 6.2 5 5 9900 7500 9 999999999 23 0 0 88 0.2 0 0 +2.81412E7 27 8 30 96029 810 1403 388 547 683 152 64364 46190 18011 6989 220 7.2 3 3 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.81448E7 25 7 32 95994 544 1403 377 314 467 133 35534 29360 15093 5181 220 7.7 3 3 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.81484E7 23 8 38 95959 259 1403 353 101 137 75 10994 3794 8252 2415 210 8.2 0 0 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.8152E7 21.5 9.1 45 95871 0 1279 362 0 0 0 0 0 0 0 190 6.7 3 3 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.81556E7 20 9 49 95906 0 0 351 0 0 0 0 0 0 0 200 6.2 2 2 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.81592E7 20 9 49 95906 0 0 351 0 0 0 0 0 0 0 150 3.1 2 2 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.81628E7 18.1 9.3 56 95981 0 0 332 0 0 0 0 0 0 0 140 2.6 0 0 9900 2000 9 999999999 24 0 0 88 0.2 0 0 +2.81664E7 17 9 59 95852 0 0 343 0 0 0 0 0 0 0 160 2.1 4 4 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.817E7 16 9 63 95834 0 0 341 0 0 0 0 0 0 0 160 3.1 5 5 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.81736E7 14.1 8.5 69 95917 0 0 313 0 0 0 0 0 0 0 170 2.1 0 0 9900 2000 9 999999999 22 0 0 88 0.2 0 0 +2.81772E7 15 8 63 95815 0 0 335 0 0 0 0 0 0 0 150 2.1 5 5 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.81808E7 13 8 72 95778 0 0 329 0 0 0 0 0 0 0 160 1.5 6 6 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.81844E7 13.1 7.9 71 95955 0 0 308 0 0 0 0 0 0 0 285 1 0 0 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.8188E7 14 8 67 95797 0 0 330 0 0 0 0 0 0 0 246 1.5 5 5 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.81916E7 15 9 67 95815 269 1328 336 98 131 73 10811 3575 8084 2423 99 0.5 5 5 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.81952E7 17.1 9.5 61 96048 554 1403 327 325 488 132 36772 30042 15036 5207 40 2.1 0 0 9900 2000 9 999999999 24 0 0 88 0.2 0 0 +2.81988E7 19 10 56 95888 818 1403 351 550 678 154 64635 45230 18176 7074 270 1.5 3 3 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +2.82024E7 22 9 43 95942 1046 1403 356 771 839 146 94226 54268 17916 7440 18 1.5 1 1 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.8206E7 24 9.3 39 95915 1220 1403 359 934 810 230 112936 57805 27905 11306 170 3.6 0 0 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.82096E7 26 9 34 96011 1329 1403 369 1038 817 264 125841 59611 32198 12866 160 5.1 0 0 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.82132E7 27 9 32 96029 1366 1403 390 1058 818 262 129039 59101 32082 12840 170 4.6 3 3 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.82168E7 28.4 8.7 29 95763 1327 1403 397 1023 817 251 124606 58787 30706 12339 160 6.2 3 3 9900 2000 9 999999999 22 0 0 88 0.2 0 0 +2.82204E7 30 8 25 96079 1217 1403 404 922 874 163 114314 57294 20358 8460 180 6.2 3 3 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.8224E7 28 8 28 96046 1042 1403 394 759 810 158 92240 53981 19229 7939 210 7.2 3 3 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.82276E7 28.4 7.2 26 95669 813 1403 395 551 684 154 64803 46690 18194 7058 210 6.7 3 3 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.82312E7 27 9 32 96029 548 1403 390 316 466 134 35739 28981 15240 5238 210 8.2 3 3 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.82348E7 24 9 38 95977 264 1403 374 102 134 76 11110 3769 8394 2460 210 7.2 3 3 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.82384E7 21.8 8.6 43 95744 0 1300 348 0 0 0 0 0 0 0 210 6.7 0 0 9900 2000 9 999999999 22 0 0 88 0.2 0 0 +2.8242E7 21 8 43 95924 0 0 358 0 0 0 0 0 0 0 190 6.7 3 3 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.82456E7 20 8 46 95906 0 0 350 0 0 0 0 0 0 0 150 3.1 2 2 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.82492E7 18.5 8.2 51 95893 0 0 332 0 0 0 0 0 0 0 150 3.6 0 0 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.82528E7 18 8 52 95870 0 0 344 0 0 0 0 0 0 0 160 2.6 3 3 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.82564E7 17 8 55 95852 0 0 339 0 0 0 0 0 0 0 150 2.1 3 3 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.826E7 15.3 8.2 63 95816 0 0 318 0 0 0 0 0 0 0 170 2.6 0 0 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.82636E7 15 9 67 95815 0 0 336 0 0 0 0 0 0 0 160 2.1 5 5 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.82672E7 14 8 67 95797 0 0 330 0 0 0 0 0 0 0 150 2.6 5 5 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.82708E7 14 8 67 95797 0 0 330 0 0 0 0 0 0 0 160 1.5 5 5 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.82744E7 13 8 72 95778 0 0 329 0 0 0 0 0 0 0 93 1 6 6 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.8278E7 14 8 67 95797 271 1337 312 107 148 79 11746 4504 8664 2542 289 1 0 0 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +2.82816E7 18.9 9.5 54 95844 555 1404 335 325 487 133 36847 30081 15086 5225 95 1 0 0 8000 2000 9 999999999 24 0 0 88 0.2 0 0 +2.82852E7 21 9 46 95924 820 1404 359 554 688 153 65254 46116 18043 7028 242 0.5 3 3 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.82888E7 23 9 41 95959 1047 1404 369 762 810 158 92604 53544 19305 7977 180 1.5 3 3 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.82924E7 25.1 9.7 38 95688 1221 1404 365 935 873 175 115283 57374 21701 8990 170 3.1 0 0 8000 2000 9 999999999 24 0 0 88 0.2 0 0 +2.8296E7 26 9 34 96011 1330 1404 369 1039 817 264 125975 59640 32228 12877 170 6.2 0 0 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.82996E7 28 9 30 96046 1367 1404 379 1074 819 276 130000 60128 33691 13402 170 7.2 0 0 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.83032E7 28.3 8.6 29 95591 1329 1404 380 1039 817 265 125968 59865 32289 12896 220 7.2 0 0 9900 2000 9 999999999 22 0 0 88 0.2 0 0 +2.83068E7 29 8 27 96063 1219 1404 382 936 811 231 113100 58539 28111 11374 210 8.2 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.83104E7 28 8 28 96046 1044 1404 377 772 841 145 94331 54843 17860 7413 210 8.7 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.8314E7 27.3 7.2 28 95555 817 1404 389 554 685 155 65120 46803 18291 7099 210 8.2 3 3 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.83176E7 25 9 36 95994 552 1404 364 323 486 132 36599 30046 14999 5188 210 10.3 0 0 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.83212E7 22 9 43 95942 268 1404 356 105 143 78 11502 4188 8545 2506 210 9.3 1 1 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.83248E7 20.4 7.6 44 95700 0 1322 340 0 0 0 0 0 0 0 200 7.7 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.83284E7 20 7 43 95906 0 0 344 0 0 0 0 0 0 0 140 5.1 1 1 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.8332E7 18 8 52 95870 0 0 344 0 0 0 0 0 0 0 140 4.1 3 3 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.83356E7 16.9 8.4 57 95864 0 0 325 0 0 0 0 0 0 0 160 5.7 0 0 9900 2000 9 999999999 22 0 0 88 0.2 0 0 +2.83392E7 15 8 63 95815 0 0 335 0 0 0 0 0 0 0 160 2.6 5 5 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.83428E7 15 8 63 95815 0 0 335 0 0 0 0 0 0 0 170 3.6 5 5 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.83464E7 13.4 8.2 71 95875 0 0 309 0 0 0 0 0 0 0 150 2.1 0 0 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.835E7 13 8 72 95778 0 0 329 0 0 0 0 0 0 0 170 3.1 6 6 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.83536E7 12 8 76 95759 0 0 328 0 0 0 0 0 0 0 170 3.1 7 7 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.83572E7 11.9 8.3 79 95923 0 0 303 0 0 0 0 0 0 0 150 1.5 0 0 9900 2000 9 999999999 22 0 0 88 0.2 0 0 +2.83608E7 11 7 76 95740 0 0 298 0 0 0 0 0 0 0 320 1.5 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.83644E7 13 9 77 95778 272 1346 309 108 148 79 11812 4487 8707 2556 262 0 0 0 7000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.8368E7 15.3 8.6 64 96081 556 1404 318 327 490 132 37019 30494 15079 5225 170 4.1 0 0 7000 2000 9 999999999 22 0 0 88 0.2 0 0 +2.83716E7 18 9 56 95870 820 1404 345 552 677 156 64871 45755 18445 7166 160 4.6 3 3 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.83752E7 21 9 46 95924 1048 1404 356 772 836 148 94218 54250 18112 7518 160 3.6 2 2 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.83788E7 22.9 8.7 40 96010 1222 1404 353 937 811 231 113250 58201 28054 11357 160 3.6 0 0 9900 2000 9 999999999 22 0 0 88 0.2 0 0 +2.83824E7 25 9 36 95994 1331 1404 364 1040 817 264 126107 59675 32265 12890 180 5.7 0 0 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.8386E7 26 9 34 96011 1369 1404 369 1075 819 276 130000 60163 33735 13417 160 5.7 0 0 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.83896E7 27.8 7.3 27 95886 1331 1404 375 1042 817 267 126430 60607 32601 12999 170 6.2 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.83932E7 28 7 26 96046 1222 1404 376 939 811 233 113532 59113 28363 11460 220 8.2 0 0 9900 2000 9 999999999 18 0 0 88 0.2 0 0 +2.83968E7 28 6 25 96046 1047 1404 375 777 841 149 94867 55974 18306 7584 210 7.7 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.84004E7 27.3 7.2 28 95783 820 1404 373 564 713 147 66613 47907 17457 6823 210 8.7 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.8404E7 25 9 36 95994 556 1404 364 326 490 132 36967 30346 15073 5222 210 8.2 0 0 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.84076E7 23 8 38 95959 272 1404 353 108 149 79 11813 4572 8696 2552 210 6.7 0 0 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.84112E7 20.3 8 45 95869 0 1344 340 0 0 0 0 0 0 0 200 6.7 0 0 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.84148E7 19 9 52 95888 0 0 350 0 0 0 0 0 0 0 160 4.1 3 3 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.84184E7 18 9 56 95870 0 0 345 0 0 0 0 0 0 0 150 4.1 3 3 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.8422E7 16.3 9.5 64 95948 0 0 324 0 0 0 0 0 0 0 160 4.6 0 0 9900 2000 9 999999999 24 0 0 88 0.2 0 0 +2.84256E7 15 9 67 95815 0 0 336 0 0 0 0 0 0 0 170 3.6 5 5 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.84292E7 14 9 72 95797 0 0 334 0 0 0 0 0 0 0 160 3.6 6 6 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.84328E7 13.5 9 74 95830 0 0 311 0 0 0 0 0 0 0 170 2.1 0 0 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.84364E7 14 9 72 95797 0 0 334 0 0 0 0 0 0 0 170 2.1 6 6 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.844E7 12 9 82 95759 0 0 334 0 0 0 0 0 0 0 270 1 8 8 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.84436E7 11.2 8.6 84 95787 0 0 300 0 0 0 0 0 0 0 349 1 0 0 9900 2000 9 999999999 22 0 0 88 0.2 0 0 +2.84472E7 12 8 76 95759 0 0 328 0 0 0 0 0 0 0 264 1 7 7 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.84508E7 14 9 72 95797 273 1353 334 95 104 75 10442 2965 8239 2470 240 1.5 6 6 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.84544E7 17.1 9.9 63 95887 557 1405 328 327 488 133 36996 30081 15145 5248 150 1.5 0 0 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +2.8458E7 20 10 53 95906 821 1405 356 556 695 150 65546 45890 17715 6922 208 1 3 3 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +2.84616E7 23 10 44 95959 1048 1405 362 772 838 146 94278 53757 17960 7462 48 0.5 1 1 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +2.84652E7 24 10.2 42 95821 1223 1405 360 936 811 229 113091 57371 27828 11283 170 3.6 0 0 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +2.84688E7 26 9 34 96011 1333 1405 369 1041 818 265 126238 59715 32309 12906 160 6.2 0 0 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.84724E7 28 9 30 96046 1370 1405 379 1076 819 277 130000 60210 33798 13440 200 5.7 0 0 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.8476E7 28 7.9 28 95766 1333 1405 377 1043 818 267 126534 60339 32558 12987 220 5.7 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.84796E7 29 8 27 96063 1224 1405 382 940 882 171 116265 58433 21303 8829 220 7.2 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.84832E7 29 9 29 96063 1050 1405 400 766 812 158 93036 53673 19326 7989 210 8.2 3 3 9900 2000 9 999999999 22 0 0 88 0.2 0 0 +2.84868E7 26.9 7.6 29 95709 823 1405 387 559 689 155 65810 46939 18341 7135 210 8.2 3 3 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.84904E7 25 7 32 95994 559 1405 377 326 478 136 36946 30496 15438 5331 200 9.3 3 3 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.8494E7 23 7 36 95959 276 1405 352 111 154 81 12118 4952 8846 2597 210 8.7 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.84976E7 21 5.7 37 95834 0 1365 347 0 0 0 0 0 0 0 180 7.7 1 1 9900 2000 9 999999999 16 0 0 88 0.2 0 0 +2.85012E7 21 6 38 95924 0 0 341 0 0 0 0 0 0 0 150 4.1 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.85048E7 19 5 40 95888 0 0 337 0 0 0 0 0 0 0 160 5.1 1 1 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.85084E7 17.4 4.4 42 95902 0 0 323 0 0 0 0 0 0 0 150 4.6 0 0 9900 2000 9 999999999 14 0 0 88 0.2 0 0 +2.8512E7 16 5 48 95834 0 0 328 0 0 0 0 0 0 0 170 3.1 2 2 9900 2000 9 999999999 15 0 0 88 0.2 0 0 +2.85156E7 15 6 55 95815 0 0 328 0 0 0 0 0 0 0 160 3.1 3 3 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.85192E7 13.5 6 60 95896 0 0 308 0 0 0 0 0 0 0 160 3.6 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.85228E7 13 6 62 95778 0 0 321 0 0 0 0 0 0 0 160 2.6 4 4 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.85264E7 12 6 67 95759 0 0 319 0 0 0 0 0 0 0 150 3.1 5 5 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.853E7 11.1 6.4 73 95964 0 0 313 0 0 0 0 0 0 0 160 3.6 4 4 9900 2000 9 999999999 18 0 0 88 0.2 0 0 +2.85336E7 12 6 67 95759 0 0 319 0 0 0 0 0 0 0 140 4.1 5 5 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.85372E7 12 6 67 95759 274 1360 319 101 137 75 11163 4103 8253 2474 180 3.1 5 5 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.85408E7 14.5 6.1 57 96066 558 1405 312 329 498 132 37393 31505 15018 5209 170 2.6 0 0 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.85444E7 17 6 48 95852 822 1405 334 564 701 154 66479 48188 18218 7084 160 1.5 2 2 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.8548E7 19 7 46 95888 1049 1405 344 775 839 148 94732 55387 18179 7539 160 3.1 2 2 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.85516E7 21.8 7 38 96047 1224 1405 346 941 812 234 113720 59163 28396 11473 160 3.1 0 0 9000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.85552E7 23 7 36 95959 1334 1405 352 1045 818 268 126724 60817 32711 13036 170 5.1 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.85588E7 24 8 36 95977 1372 1405 373 1065 820 265 129888 59795 32453 12967 220 6.2 3 3 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.85624E7 24.4 8.2 36 95960 1335 1405 375 1031 818 253 125532 59221 31027 12453 220 7.7 3 3 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.8566E7 25 9 36 95994 1226 1405 379 929 874 165 115126 56918 20589 8552 210 8.2 3 3 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.85696E7 24 9 38 95977 1053 1405 374 768 812 159 93326 53739 19400 8021 210 8.2 3 3 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.85732E7 23 10 44 95959 827 1405 371 560 693 152 65962 45979 17949 7016 210 8.7 3 3 9900 2000 9 999999999 25 0 0 88 0.2 0 0 +2.85768E7 21 9 46 95924 563 1405 356 332 493 134 37607 30800 15280 5306 200 8.7 2 2 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.85804E7 19 9 52 95888 280 1405 350 112 151 82 12243 4856 8985 2642 210 6.7 3 3 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.8584E7 17.7 8.7 56 96078 0 1386 329 0 0 0 0 0 0 0 190 6.7 0 0 9900 2000 9 999999999 22 0 0 88 0.2 0 0 +2.85876E7 15 8 63 95815 0 0 335 0 0 0 0 0 0 0 150 4.6 5 5 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.85912E7 14 7 63 95797 0 0 329 0 0 0 0 0 0 0 160 5.1 5 5 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.85948E7 12.9 7.5 70 96197 0 0 307 0 0 0 0 0 0 0 160 5.7 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.85984E7 12 7 71 95759 0 0 323 0 0 0 0 0 0 0 160 3.6 6 6 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.8602E7 12 7 71 95759 0 0 323 0 0 0 0 0 0 0 160 4.1 6 6 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.86056E7 10.6 6.9 78 96144 0 0 296 0 0 0 0 0 0 0 160 3.1 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.86092E7 10 7 82 95721 0 0 323 0 0 0 0 0 0 0 150 2.6 8 8 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.86128E7 10 7 82 95721 0 0 323 0 0 0 0 0 0 0 160 2.6 8 8 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.86164E7 9.3 6.6 83 96119 0 0 291 0 0 0 0 0 0 0 150 2.6 0 0 9900 2000 9 999999999 18 0 0 88 0.2 0 0 +2.862E7 9 6 81 95702 0 0 317 0 0 0 0 0 0 0 180 1.5 8 8 9900 2000 9 999999999 17 0 0 88 0.2 0 0 +2.86236E7 11 7 76 95740 275 1367 322 90 79 75 9958 2352 8285 2484 150 2.6 7 7 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.86272E7 13.3 7.6 68 96176 558 1406 314 329 494 133 37310 31022 15102 5236 126 1 1 1 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.86308E7 15 8 63 95815 823 1406 335 537 623 173 62676 43894 20225 7758 200 2.1 5 5 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.86344E7 18 8 52 95870 1050 1406 344 769 783 184 92417 54494 22258 9085 89 1 3 3 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.8638E7 19.9 7.8 46 96061 1224 1406 338 940 812 233 113657 58775 28273 11432 170 2.6 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.86416E7 23 8 38 95959 1335 1406 353 1044 818 267 126646 60326 32554 12987 190 3.1 0 0 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.86452E7 24 9 38 95977 1373 1406 359 1079 820 277 130000 60271 33873 13467 170 5.1 0 0 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.86488E7 24.4 8 35 95894 1337 1406 375 1033 818 254 125772 59373 31128 12488 190 5.1 3 3 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.86524E7 25 9 36 95994 1229 1406 379 931 875 165 115401 56969 20612 8561 210 7.2 3 3 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.8656E7 25 9 36 95994 1056 1406 379 771 813 159 93652 53820 19443 8041 220 8.2 3 3 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.86596E7 23.3 9 40 95856 830 1406 371 564 694 154 66397 46600 18206 7110 220 8.2 3 3 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.86632E7 22 9 43 95942 567 1406 364 331 479 138 37485 30353 15672 5426 210 7.7 3 3 9900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.86668E7 20 8 46 95906 284 1406 350 115 160 83 12634 5376 9130 2686 210 7.2 2 2 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.86704E7 17.4 7.8 53 95978 0 1408 327 0 0 0 0 0 0 0 190 7.7 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.8674E7 16 8 59 95834 0 0 337 0 0 0 0 0 0 0 140 5.1 4 4 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.86776E7 14 8 67 95797 0 0 330 0 0 0 0 0 0 0 150 5.1 5 5 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.86812E7 12.6 7.8 73 96163 0 0 306 0 0 0 0 0 0 0 160 6.2 0 0 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.86848E7 12 8 76 95759 0 0 328 0 0 0 0 0 0 0 150 4.1 7 7 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.86884E7 11 8 82 95740 0 0 329 0 0 0 0 0 0 0 170 3.6 8 8 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.8692E7 10.1 8 87 96134 0 0 295 0 0 0 0 0 0 0 160 2.6 0 0 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.86956E7 10 8 87 95721 0 0 331 0 0 0 0 0 0 0 170 3.1 9 9 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.86992E7 10 8 87 95721 0 0 308 0 0 0 0 0 0 0 170 3.1 3 3 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +2.87028E7 8.7 8 95 96164 0 0 318 0 0 0 0 0 0 0 150 3.1 8 8 800 60 0 999999999 21 0 0 88 0.2 0 0 +2.87064E7 9 8 93 95702 0 0 335 0 0 0 0 0 0 0 170 2.6 10 10 1100 90 0 999999999 21 0 0 88 0.2 0 0 +2.871E7 9 8 93 95702 276 1373 326 57 0 57 5590 0 5631 2060 160 1.5 9 9 1000 60 0 999999999 21 0 0 88 0.2 0 0 +2.87136E7 12 9 82 95759 559 1406 341 170 49 150 19027 3232 16910 5707 280 2.1 9 9 2500 120 0 999999999 23 0 0 88 0.2 0 0 +2.87172E7 14 9 72 95797 823 1406 326 557 589 212 63892 44581 24413 9045 82 1 3 3 4000 2000 0 999999999 23 0 0 88 0.2 0 0 +2.87208E7 18 9 56 95870 1050 1406 345 765 811 159 92901 53667 19420 8024 65 1 3 3 8000 2000 0 999999999 23 0 0 88 0.2 0 0 +2.87244E7 21 9 46 95924 1225 1406 345 939 877 174 115931 57911 21622 8956 200 3.1 0 0 8000 2000 0 999999999 23 0 0 88 0.2 0 0 +2.8728E7 23 9 41 95959 1336 1406 361 1043 818 265 126528 59780 32357 12923 180 5.7 1 1 9900 2000 0 999999999 23 0 0 88 0.2 0 0 +2.87316E7 24 10 41 95977 1374 1406 367 1078 820 276 130000 59696 33682 13406 160 6.2 1 1 9900 2000 0 999999999 25 0 0 88 0.2 0 0 +2.87352E7 25.9 8.7 34 95958 1339 1406 387 1012 830 221 124488 57449 27393 11138 160 5.1 4 4 9900 2000 0 999999999 22 0 0 88 0.2 0 0 +2.87388E7 26 8 32 96011 1231 1406 367 946 727 310 111970 57931 36861 14317 150 5.7 0 0 9900 2000 0 999999999 20 0 0 88 0.2 0 0 +2.87424E7 25 9 36 95994 1058 1406 408 404 58 360 46113 5163 41395 14993 220 7.7 9 9 9900 4800 0 999999999 23 0 0 88 0.2 0 0 +2.8746E7 24.1 7.6 35 95870 833 1406 401 297 16 287 33303 1410 32417 11134 210 7.7 9 9 9900 6000 0 999999999 20 0 0 88 0.2 0 0 +2.87496E7 23 9 41 95959 570 1406 397 175 7 172 19427 488 19206 6304 220 6.2 9 9 9900 6000 0 999999999 23 0 0 88 0.2 0 0 +2.87532E7 21 8 43 95924 287 1406 385 61 0 61 5985 0 6030 2200 210 7.2 9 9 9900 6000 0 999999999 21 0 0 88 0.2 0 0 +2.87568E7 20 6.6 42 95958 3 1406 378 1 0 1 50 0 50 21 190 6.2 9 9 9900 7500 9 999999999 18 0 0 88 0.2 0 0 +2.87604E7 19 8 49 95888 0 24 354 0 0 0 0 0 0 0 150 3.6 5 5 9900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.8764E7 17 7 52 95852 0 0 338 0 0 0 0 0 0 0 150 3.1 3 3 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.87676E7 16.7 6.5 51 96031 0 0 322 0 0 0 0 0 0 0 150 2.6 0 0 9900 2000 9 999999999 18 0 0 88 0.2 0 0 +2.87712E7 16 7 55 95834 0 0 320 0 0 0 0 0 0 0 150 2.6 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.87748E7 15 7 59 95815 0 0 331 0 0 0 0 0 0 0 140 2.6 4 4 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.87784E7 14.2 7.1 62 95966 0 0 312 0 0 0 0 0 0 0 140 2.1 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.8782E7 14 7 63 95797 0 0 311 0 0 0 0 0 0 0 160 3.1 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.87856E7 13 6 62 95778 0 0 305 0 0 0 0 0 0 0 325 0.5 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.87892E7 11 6.7 75 95953 0 0 311 0 0 0 0 0 0 0 176 1 3 3 8000 2000 9 999999999 18 0 0 88 0.2 0 0 +2.87928E7 12 7 71 95759 0 0 315 0 0 0 0 0 0 0 140 2.1 3 3 7000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.87964E7 14 7 63 95797 276 1378 324 109 146 81 11979 4718 8875 2604 150 2.6 3 3 7000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.88E7 15.6 7.6 59 96030 559 1407 318 329 494 133 37372 31066 15137 5248 210 2.1 0 0 7000 2000 9 999999999 20 0 0 88 0.2 0 0 +2.88036E7 19 7 46 95888 823 1407 344 565 709 150 66710 47980 17732 6922 47 1 2 2 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.88072E7 21 7 40 95924 1051 1407 349 778 844 147 95104 55558 18024 7479 291 1 1 1 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.88108E7 23.7 7.5 35 95929 1226 1407 356 942 813 233 113833 58988 28361 11462 170 1 0 0 9900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.88144E7 25 8 34 95994 1337 1407 362 1046 819 267 126837 60386 32610 13007 170 3.1 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.8818E7 27 7 28 96029 1376 1407 371 1084 821 281 130000 61427 34361 13625 170 4.6 0 0 9900 2000 9 999999999 18 0 0 88 0.2 0 0 +2.88216E7 26.9 6.5 27 95738 1340 1407 377 1051 819 271 127555 61195 33018 13143 210 8.2 1 1 9900 2000 9 999999999 18 0 0 88 0.2 0 0 +2.88252E7 26 8 32 96011 1233 1407 367 948 813 235 114629 58856 28574 11544 220 7.7 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.88288E7 26 8 32 96011 1061 1407 367 787 771 204 93913 55349 24510 9920 220 7.7 0 0 9900 2000 9 999999999 20 0 0 88 0.2 0 0 +2.88324E7 25.1 8 34 95707 836 1407 399 388 203 268 43818 17021 30385 10695 210 7.7 8 8 9900 6900 9 999999999 20 0 0 88 0.2 0 0 +2.8836E7 25 8 34 95994 574 1407 362 342 443 161 38281 30485 18108 6071 200 7.2 0 0 9900 6900 9 999999999 20 0 0 88 0.2 0 0 +2.88396E7 19 6.4 44 95873 291 1407 347 121 169 86 13220 6060 9415 2774 175 6.2 0 0 9900 6900 9 999999999 19 0 0 88 0.2 0 0 +2.88432E7 17.3 6.2 48 95886 8 1407 366 1 0 1 125 0 126 51 165 5.5 8 8 9900 6000 9 999999999 18 0 0 88 0.2 0 0 +2.88468E7 16 6 51 95878 0 45 338 0 0 0 0 0 0 0 157 4.6 2 2 9900 6000 9 999999999 17 0 0 88 0.2 0 0 +2.88504E7 15.6 7.2 58 95869 0 0 334 0 0 0 0 0 0 0 160 4.2 2 2 9900 6000 9 999999999 17 0 0 88 0.2 0 0 +2.8854E7 15.1 8.5 65 95860 0 0 315 0 0 0 0 0 0 0 165 3.8 0 0 9900 6000 9 999999999 17 0 0 88 0.2 0 0 +2.88576E7 14.8 9.8 72 95811 0 0 326 0 0 0 0 0 0 0 167 3.3 4 4 9900 6000 9 999999999 17 0 0 88 0.2 0 0 +2.88612E7 14.5 11.2 81 95806 0 0 346 0 0 0 0 0 0 0 170 3.1 6 6 9000 6706 9 999999999 28 0 0 88 0.2 0 0 +2.88648E7 13.8 11.5 86 95792 0 0 319 0 0 0 0 0 0 0 165 3 0 0 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.88684E7 13.2 11.8 91 95783 0 0 315 0 0 0 0 0 0 0 170 2.7 0 0 7000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.8872E7 13.2 12.2 94 95783 0 0 350 0 0 0 0 0 0 0 175 2.4 9 9 3000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.88756E7 14 12.5 91 95797 0 0 350 0 0 0 0 0 0 0 175 2.2 9 9 3000 122 9 999999999 31 0 0 88 0.2 0 0 +2.88792E7 15.2 12.8 85 95820 0 0 330 0 0 0 0 0 0 0 182 2.3 5 5 1000 122 9 999999999 31 0 0 88 0.2 0 0 +2.88828E7 14 13 94 95797 276 1378 336 102 162 70 11287 3946 7801 2392 190 1.5 5 5 3000 122 9 999999999 34 0 0 88 0.2 0 0 +2.88864E7 16 13 82 95834 559 1407 326 327 478 137 36858 28839 15469 5349 170 2.1 0 0 3000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.889E7 18 13 73 95870 823 1407 335 561 724 137 66452 45001 16262 6425 190 3.6 0 0 5000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.88936E7 21 12 56 95924 1051 1407 348 772 839 145 94250 52595 17740 7385 150 4.6 0 0 6000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.88972E7 23 13 53 95959 1226 1407 359 934 892 156 115993 54998 19455 8121 170 5.1 0 0 7000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.89008E7 25 13 47 95994 1337 1407 369 1038 819 259 125824 57261 31623 12691 160 6.2 0 0 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.89044E7 26 13 45 96011 1376 1407 386 1073 821 270 130000 57663 32980 13182 160 7.2 2 2 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.8908E7 27 13 42 96029 1340 1407 386 1041 819 260 126257 57293 31742 12734 160 7.2 1 1 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.89116E7 28 13 40 96046 1233 1407 391 941 894 157 116930 55120 19589 8172 170 6.2 1 1 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.89152E7 28 14 42 96046 1061 1407 392 779 842 143 95224 51358 17602 7350 200 6.2 1 1 8000 2000 9 999999999 37 0 0 88 0.2 0 0 +2.89188E7 27 13 42 96029 836 1407 386 573 731 138 67960 45527 16395 6503 210 5.7 1 1 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.89224E7 25 13 47 95994 574 1407 381 338 487 140 38213 29805 15835 5507 210 6.7 2 2 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.8926E7 23 13 53 95959 291 1407 374 118 190 79 13010 5611 8715 2643 160 5.1 3 3 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.89296E7 21 12 56 95924 8 1407 363 2 0 2 181 0 183 73 230 3.1 3 3 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.89332E7 19 12 64 95888 0 45 359 0 0 0 0 0 0 0 150 3.6 5 5 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.89368E7 18 12 68 95870 0 0 354 0 0 0 0 0 0 0 150 4.6 5 5 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.89404E7 17 12 72 95852 0 0 352 0 0 0 0 0 0 0 160 3.6 6 6 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.8944E7 15 12 82 95815 0 0 320 0 0 0 0 0 0 0 170 3.6 0 0 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.89476E7 15 12 82 95815 0 0 320 0 0 0 0 0 0 0 160 5.1 0 0 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.89512E7 14 11 82 95797 0 0 315 0 0 0 0 0 0 0 160 3.1 0 0 7000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.89548E7 14 11 82 95797 0 0 315 0 0 0 0 0 0 0 170 2.1 0 0 7000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.89584E7 14 11 82 95797 0 0 315 0 0 0 0 0 0 0 160 2.1 0 0 7000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.8962E7 13 11 88 95778 0 0 311 0 0 0 0 0 0 0 180 2.6 0 0 7000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.89656E7 13 11 88 95778 0 0 311 0 0 0 0 0 0 0 180 4.1 0 0 6000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.89692E7 13 11 88 95778 277 1382 324 109 173 75 11991 4791 8287 2494 160 3.6 3 3 5000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.89728E7 16 12 77 95834 560 1407 325 327 481 136 36974 29304 15440 5340 170 2.1 0 0 7000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.89764E7 18 13 73 95870 824 1407 335 561 752 120 67118 44959 14469 5775 150 3.1 0 0 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.898E7 21 13 60 95924 1051 1407 367 745 755 181 89417 49922 21825 8947 160 1.5 4 4 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.89836E7 24 13 50 95977 1226 1407 376 929 853 185 113926 55037 22855 9450 210 2.1 2 2 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.89872E7 25 13 47 95994 1337 1407 381 1036 819 257 125687 57096 31352 12595 170 4.1 2 2 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.89908E7 27 13 42 96029 1377 1407 386 1075 821 271 130000 57773 33143 13239 160 7.2 1 1 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.89944E7 28 12 37 96046 1342 1407 382 1045 819 263 126693 58063 32049 12836 180 7.7 0 0 8000 2000 9 999999999 30 0 0 88 0.2 0 0 +2.8998E7 30 11 31 96079 1235 1407 391 946 813 232 114354 57173 28141 11404 170 7.2 0 0 8000 2000 9 999999999 27 0 0 88 0.2 0 0 +2.90016E7 29 5 22 96063 1064 1407 378 793 842 155 96777 56937 19053 7888 190 6.7 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +2.90052E7 30 10 29 96079 839 1407 390 578 727 145 68545 47420 17199 6785 190 5.1 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +2.90088E7 29 4 20 96063 577 1407 377 347 519 134 39538 33738 15342 5368 170 5.7 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.90124E7 27 11 37 96029 295 1407 376 123 205 80 13496 6452 8795 2672 210 4.6 0 0 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.9016E7 24 12 47 95977 13 1407 374 3 0 3 272 0 273 108 160 3.6 2 2 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.90196E7 21 12 56 95924 0 67 363 0 0 0 0 0 0 0 150 4.1 3 3 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.90232E7 19 12 64 95888 0 0 359 0 0 0 0 0 0 0 150 4.1 5 5 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.90268E7 19 12 64 95888 0 0 359 0 0 0 0 0 0 0 160 2.1 5 5 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.90304E7 18 12 68 95870 0 0 354 0 0 0 0 0 0 0 240 1.5 5 5 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.9034E7 16 12 77 95834 0 0 351 0 0 0 0 0 0 0 170 3.1 7 7 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.90376E7 15 12 82 95815 0 0 352 0 0 0 0 0 0 0 160 2.6 8 8 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.90412E7 15 11 77 95815 0 0 345 0 0 0 0 0 0 0 170 2.6 7 7 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.90448E7 15 12 82 95815 0 0 352 0 0 0 0 0 0 0 160 3.1 8 8 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.90484E7 14 11 82 95797 0 0 346 0 0 0 0 0 0 0 170 2.1 8 8 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.9052E7 15 12 82 95815 0 0 352 0 0 0 0 0 0 0 309 1 8 8 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.90556E7 16 12 77 95834 277 1385 325 111 181 75 12149 4891 8265 2492 59 1 0 0 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.90592E7 19 12 64 95888 560 1408 339 328 481 136 36991 29326 15439 5339 146 0.5 0 0 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.90628E7 22 12 53 95942 824 1408 353 562 722 139 66550 45649 16527 6516 109 1 0 0 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.90664E7 24 12 47 95977 1051 1408 362 772 840 145 94308 52639 17732 7381 210 2.6 0 0 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.907E7 27 13 42 96029 1227 1408 378 935 893 156 116112 55050 19450 8119 160 3.6 0 0 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.90736E7 28 13 40 96046 1338 1408 391 1039 819 260 125988 57320 31676 12710 170 5.7 1 1 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.90772E7 30 12 33 96079 1378 1408 393 1078 821 274 130000 58545 33450 13339 170 7.2 0 0 8000 2000 9 999999999 30 0 0 88 0.2 0 0 +2.90808E7 29 12 35 96063 1344 1408 387 1046 820 263 126879 58105 32112 12858 210 7.7 0 0 8000 2000 9 999999999 30 0 0 88 0.2 0 0 +2.90844E7 30 11 31 96079 1238 1408 391 948 814 232 114594 57223 28218 11432 210 8.2 0 0 8000 2000 9 999999999 27 0 0 88 0.2 0 0 +2.9088E7 29 12 35 96063 1067 1408 387 787 844 147 96171 53005 18023 7512 210 9.3 0 0 8000 2000 9 999999999 30 0 0 88 0.2 0 0 +2.90916E7 29 10 31 96063 843 1408 385 581 729 145 68893 47551 17245 6809 210 8.8 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +2.90952E7 27 14 45 96029 581 1408 392 344 492 141 38870 29937 15984 5578 210 7.2 2 2 8000 2000 9 999999999 37 0 0 88 0.2 0 0 +2.90988E7 24 13 50 95977 299 1408 376 124 203 81 13636 6293 8925 2716 200 6.7 2 2 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.91024E7 23 13 53 95959 16 1408 374 4 0 4 354 0 357 138 140 5.7 3 3 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.9106E7 20 12 60 95906 0 88 361 0 0 0 0 0 0 0 150 7.2 4 4 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.91096E7 18 12 68 95870 0 0 354 0 0 0 0 0 0 0 160 5.7 5 5 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.91132E7 16 12 77 95834 0 0 351 0 0 0 0 0 0 0 160 5.7 7 7 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.91168E7 15 12 82 95815 0 0 352 0 0 0 0 0 0 0 160 4.1 8 8 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.91204E7 14 12 88 95797 0 0 355 0 0 0 0 0 0 0 150 3.6 9 9 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.9124E7 14 12 88 95797 0 0 316 0 0 0 0 0 0 0 160 2.1 0 0 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.91276E7 13 12 94 95778 0 0 350 0 0 0 0 0 0 0 170 3.6 9 9 5000 244 9 999999999 31 0 0 88 0.2 0 0 +2.91312E7 13 12 94 95778 0 0 350 0 0 0 0 0 0 0 170 3.1 9 9 3000 91 9 999999999 31 0 0 88 0.2 0 0 +2.91348E7 13 12 94 95778 0 0 350 0 0 0 0 0 0 0 160 2.6 9 9 2000 61 9 999999999 31 0 0 88 0.2 0 0 +2.91384E7 13 13 100 95778 0 0 351 0 0 0 0 0 0 0 76 1 9 9 1500 91 9 999999999 34 0 0 88 0.2 0 0 +2.9142E7 14 12 88 95797 277 1388 335 103 136 76 11301 3751 8392 2518 340 1.5 5 5 3000 122 9 999999999 31 0 0 88 0.2 0 0 +2.91456E7 16 12 77 95834 560 1408 344 305 382 153 34099 24666 17150 5774 293 0.5 5 5 4000 122 9 999999999 31 0 0 88 0.2 0 0 +2.91492E7 18 13 73 95870 824 1408 335 561 725 137 66464 45037 16266 6426 230 1.5 0 0 7000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.91528E7 22 13 57 95942 1051 1408 354 771 840 143 94154 51933 17583 7326 334 2.1 0 0 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.91564E7 24 13 50 95977 1227 1408 376 930 882 160 115228 54763 19985 8331 170 3.1 2 2 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.916E7 26 13 45 96011 1339 1408 386 1038 819 259 125942 57245 31543 12663 160 5.7 2 2 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.91636E7 27 13 42 96029 1379 1408 386 1077 821 272 130000 57835 33218 13266 170 8.2 1 1 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.91672E7 29 13 37 96063 1345 1408 389 1046 820 262 126840 57441 31964 12813 190 6.7 0 0 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.91708E7 28 14 42 96046 1240 1408 392 945 892 159 117344 54474 19802 8261 200 6.2 1 1 8000 2000 9 999999999 37 0 0 88 0.2 0 0 +2.91744E7 27 13 42 96029 1069 1408 386 787 844 146 96263 52335 17963 7495 210 6.7 1 1 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.9178E7 26 13 45 96011 846 1408 386 580 734 139 68921 45856 16580 6589 220 6.7 2 2 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.91816E7 23 12 50 95959 584 1408 369 347 493 142 39210 30837 16116 5622 220 7.7 2 2 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.91852E7 21 12 56 95924 303 1408 363 125 199 82 13759 6490 9081 2763 210 5.7 3 3 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.91888E7 19 12 64 95888 20 1408 359 4 0 4 420 0 422 162 180 5.1 5 5 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.91924E7 17 12 72 95852 0 109 352 0 0 0 0 0 0 0 160 5.1 6 6 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.9196E7 16 12 77 95834 0 0 351 0 0 0 0 0 0 0 170 4.6 7 7 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.91996E7 15 12 82 95815 0 0 352 0 0 0 0 0 0 0 150 3.1 8 8 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.92032E7 14 11 82 95797 0 0 346 0 0 0 0 0 0 0 170 3.6 8 8 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.92068E7 14 12 88 95797 0 0 316 0 0 0 0 0 0 0 160 3.6 0 0 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.92104E7 14 12 88 95797 0 0 335 0 0 0 0 0 0 0 140 3.6 5 5 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.9214E7 15 12 82 95815 0 0 360 0 0 0 0 0 0 0 190 3.1 9 9 8000 457 9 999999999 31 0 0 88 0.2 0 0 +2.92176E7 15 12 82 95815 0 0 370 0 0 0 0 0 0 0 200 2.6 10 10 8000 488 9 999999999 31 0 0 88 0.2 0 0 +2.92212E7 14 12 88 95797 0 0 365 0 0 0 0 0 0 0 160 3.1 10 10 5000 457 9 999999999 31 0 0 88 0.2 0 0 +2.92248E7 14 13 94 95797 0 0 366 0 0 0 0 0 0 0 190 3.1 10 10 3000 122 0 919999999 34 0 0 88 0.2 0 0 +2.92284E7 13 13 100 95778 278 1390 361 35 0 35 3398 0 3424 1386 180 4.1 10 10 3000 122 0 919999999 34 0 0 88 0.2 0 0 +2.9232E7 14 13 94 95797 560 1409 366 103 0 103 10291 0 10376 4317 160 4.1 10 10 4000 183 0 919999999 34 0 0 88 0.2 0 0 +2.92356E7 14 13 94 95797 824 1409 356 289 74 246 32721 5786 27973 10025 150 2.6 9 9 5000 457 0 919999999 34 0 0 88 0.2 0 0 +2.92392E7 16 13 82 95834 1051 1409 376 243 8 237 28510 569 27972 11107 180 2.1 10 10 8000 610 0 919999999 34 0 0 88 0.2 0 0 +2.92428E7 18 12 68 95870 1227 1409 375 483 33 455 55327 3018 52415 18470 126 1.5 9 9 8000 610 0 919999999 31 0 0 88 0.2 0 0 +2.92464E7 21 12 56 95924 1339 1409 391 538 87 455 62474 7682 53228 19138 208 2.1 9 9 8000 914 0 919999999 31 0 0 88 0.2 0 0 +2.925E7 22 12 53 95942 1380 1409 396 557 78 481 64831 6992 56319 20030 338 3.1 9 9 8000 6096 0 919999999 31 0 0 88 0.2 0 0 +2.92536E7 22 11 50 95942 1347 1409 363 1044 639 433 122003 55390 50919 18582 220 6.7 2 2 8000 6096 0 919999999 28 0 0 88 0.2 0 0 +2.92572E7 23 11 47 95959 1242 1409 368 949 814 231 114820 57094 28043 11370 210 7.7 2 2 8000 6096 0 919999999 28 0 0 88 0.2 0 0 +2.92608E7 22 11 50 95942 1072 1409 367 782 816 160 95078 53027 19594 8124 210 9.3 3 3 8000 6096 0 919999999 28 0 0 88 0.2 0 0 +2.92644E7 21 9 46 95924 849 1409 356 586 724 149 69401 48136 17766 7003 210 9.3 2 2 8000 6096 0 919999999 23 0 0 88 0.2 0 0 +2.9268E7 20 9 49 95906 588 1409 360 328 358 179 36534 25777 19986 6580 210 7.2 5 5 8000 6096 0 919999999 23 0 0 88 0.2 0 0 +2.92716E7 18 9 56 95870 306 1409 371 67 0 67 6611 0 6661 2424 210 7.2 9 9 8000 1524 0 919999999 23 0 0 88 0.2 0 0 +2.92752E7 17 10 63 95852 24 1409 367 3 0 3 273 0 275 110 200 7.7 9 9 8000 1219 9 999999999 25 0 0 88 0.2 0 0 +2.92788E7 16 9 63 95834 0 130 361 0 0 0 0 0 0 0 190 6.2 9 9 8000 1524 9 999999999 23 0 0 88 0.2 0 0 +2.92824E7 16 9 63 95834 0 0 361 0 0 0 0 0 0 0 160 3.6 9 9 8000 1524 9 999999999 23 0 0 88 0.2 0 0 +2.9286E7 15 9 67 95815 0 0 356 0 0 0 0 0 0 0 180 3.6 9 9 8000 1524 9 999999999 23 0 0 88 0.2 0 0 +2.92896E7 15 9 67 95815 0 0 356 0 0 0 0 0 0 0 160 3.1 9 9 8000 1524 9 999999999 23 0 0 88 0.2 0 0 +2.92932E7 14 9 72 95797 0 0 351 0 0 0 0 0 0 0 170 2.6 9 9 8000 1524 9 999999999 23 0 0 88 0.2 0 0 +2.92968E7 14 8 67 95797 0 0 330 0 0 0 0 0 0 0 160 2.1 5 5 8000 7620 9 999999999 21 0 0 88 0.2 0 0 +2.93004E7 13 8 72 95778 0 0 329 0 0 0 0 0 0 0 174 1 6 6 8000 7620 9 999999999 21 0 0 88 0.2 0 0 +2.9304E7 13 8 72 95778 0 0 329 0 0 0 0 0 0 0 170 2.6 6 6 8000 7620 9 999999999 21 0 0 88 0.2 0 0 +2.93076E7 13 8 72 95778 0 0 329 0 0 0 0 0 0 0 210 2.6 6 6 8000 7620 9 999999999 21 0 0 88 0.2 0 0 +2.93112E7 13 8 72 95778 0 0 329 0 0 0 0 0 0 0 180 4.1 6 6 8000 7620 9 999999999 21 0 0 88 0.2 0 0 +2.93148E7 13 9 77 95778 277 1392 322 109 177 75 12053 5095 8233 2482 150 2.6 3 3 8000 7620 9 999999999 23 0 0 88 0.2 0 0 +2.93184E7 14 9 72 95797 559 1409 351 170 23 160 18921 1585 17970 5958 160 2.6 9 9 8000 914 9 999999999 23 0 0 88 0.2 0 0 +2.9322E7 16 9 63 95834 823 1409 361 291 50 262 32829 4171 29681 10427 20 1 9 9 8000 914 9 999999999 23 0 0 88 0.2 0 0 +2.93256E7 18 9 56 95870 1051 1409 345 765 689 250 89748 52857 29537 11598 329 1 3 3 8000 914 9 999999999 23 0 0 88 0.2 0 0 +2.93292E7 20 10 53 95906 1227 1409 356 927 848 188 113757 56612 23194 9565 140 2.1 3 3 8000 914 9 999999999 25 0 0 88 0.2 0 0 +2.93328E7 22 9 43 95942 1340 1409 356 1046 820 266 126912 59897 32420 12946 180 4.1 1 1 8000 914 9 999999999 23 0 0 88 0.2 0 0 +2.93364E7 24 9 38 95977 1381 1409 359 1086 822 279 130000 60481 34120 13554 210 3.1 0 0 8000 914 9 999999999 23 0 0 88 0.2 0 0 +2.934E7 24 9 38 95977 1348 1409 359 1055 820 269 127974 60060 32828 13092 170 3.6 0 0 8000 914 9 999999999 23 0 0 88 0.2 0 0 +2.93436E7 26 9 34 96011 1244 1409 369 956 815 237 115621 58542 28759 11617 160 4.6 0 0 8000 914 9 999999999 23 0 0 88 0.2 0 0 +2.93472E7 27 7 28 96029 1074 1409 371 800 852 150 97940 56178 18407 7652 180 5.1 0 0 8000 914 9 999999999 18 0 0 88 0.2 0 0 +2.93508E7 27 6 26 96029 852 1409 370 593 722 156 70075 49735 18549 7276 230 5.7 0 0 8000 914 9 999999999 17 0 0 88 0.2 0 0 +2.93544E7 26 5 26 96011 591 1409 364 358 528 136 40823 34466 15623 5498 230 6.2 0 0 8000 914 9 999999999 15 0 0 88 0.2 0 0 +2.9358E7 25 5 28 95994 310 1409 359 134 236 81 14784 8683 9055 2779 230 5.7 0 0 8000 914 9 999999999 15 0 0 88 0.2 0 0 +2.93616E7 23 6 33 95959 28 1409 350 6 0 6 615 0 619 229 220 4.6 0 0 8000 914 9 999999999 17 0 0 88 0.2 0 0 +2.93652E7 21 7 40 95924 0 150 349 0 0 0 0 0 0 0 210 5.1 1 1 8000 914 9 999999999 19 0 0 88 0.2 0 0 +2.93688E7 19 7 46 95888 0 0 344 0 0 0 0 0 0 0 160 3.6 2 2 8000 914 9 999999999 19 0 0 88 0.2 0 0 +2.93724E7 18 8 52 95870 0 0 344 0 0 0 0 0 0 0 150 3.6 3 3 8000 914 9 999999999 21 0 0 88 0.2 0 0 +2.9376E7 17 7 52 95852 0 0 338 0 0 0 0 0 0 0 170 2.6 3 3 8000 914 9 999999999 19 0 0 88 0.2 0 0 +2.93796E7 16 7 55 95834 0 0 333 0 0 0 0 0 0 0 170 2.1 3 3 8000 914 9 999999999 19 0 0 88 0.2 0 0 +2.93832E7 16 5 48 95834 0 0 328 0 0 0 0 0 0 0 170 2.1 2 2 8000 914 9 999999999 15 0 0 88 0.2 0 0 +2.93868E7 14 6 59 95797 0 0 326 0 0 0 0 0 0 0 38 0.5 4 4 8000 914 9 999999999 17 0 0 88 0.2 0 0 +2.93904E7 14 6 59 95797 0 0 326 0 0 0 0 0 0 0 215 1 4 4 8000 914 9 999999999 17 0 0 88 0.2 0 0 +2.9394E7 15 4 48 95815 0 0 322 0 0 0 0 0 0 0 140 2.6 2 2 8000 914 9 999999999 14 0 0 88 0.2 0 0 +2.93976E7 12 5 62 95759 0 0 316 0 0 0 0 0 0 0 280 1.5 4 4 8000 914 9 999999999 15 0 0 88 0.2 0 0 +2.94012E7 14 6 59 95797 277 1393 323 110 146 81 12020 4815 8905 2611 40 1.5 3 3 8000 914 9 999999999 17 0 0 88 0.2 0 0 +2.94048E7 17 6 48 95852 559 1409 334 329 491 133 37268 31309 15196 5257 66 1 2 2 8000 914 9 999999999 17 0 0 88 0.2 0 0 +2.94084E7 20 6 40 95906 823 1409 343 566 707 153 66730 48488 18069 7031 246 1 1 1 8000 914 9 999999999 17 0 0 88 0.2 0 0 +2.9412E7 21 6 38 95924 1051 1409 341 779 842 150 95067 56149 18444 7638 290 2.1 0 0 8000 914 9 999999999 17 0 0 88 0.2 0 0 +2.94156E7 24 7 34 95977 1227 1409 356 944 814 234 114043 59354 28461 11496 160 2.1 0 0 8000 914 9 999999999 19 0 0 88 0.2 0 0 +2.94192E7 26 7 30 96011 1340 1409 366 1050 820 270 127404 61057 32904 13105 160 3.6 0 0 8000 914 9 999999999 18 0 0 88 0.2 0 0 +2.94228E7 28 7 26 96046 1382 1409 376 1090 822 283 130000 61607 34571 13699 150 4.1 0 0 8000 914 9 999999999 18 0 0 88 0.2 0 0 +2.94264E7 29 7 25 96063 1350 1409 381 1059 821 273 128541 61194 33293 13244 170 5.1 0 0 8000 914 9 999999999 18 0 0 88 0.2 0 0 +2.943E7 29 6 23 96063 1246 1409 380 962 815 242 116367 60162 29367 11821 220 6.2 0 0 8000 914 9 999999999 17 0 0 88 0.2 0 0 +2.94336E7 29 8 27 96063 1077 1409 382 801 851 150 98045 55724 18462 7679 220 7.7 0 0 8000 914 9 999999999 20 0 0 88 0.2 0 0 +2.94372E7 27 8 30 96029 855 1409 372 594 730 150 70353 49018 17910 7065 210 8.2 0 0 8000 914 9 999999999 20 0 0 88 0.2 0 0 +2.94408E7 26 7 30 96011 594 1409 366 360 525 138 40980 34030 15784 5559 210 8.2 0 0 8000 914 9 999999999 18 0 0 88 0.2 0 0 +2.94444E7 23 6 33 95959 314 1409 350 136 240 82 15033 8867 9154 2815 200 7.7 0 0 8000 914 9 999999999 17 0 0 88 0.2 0 0 +2.9448E7 22 5 33 95942 32 1409 345 7 0 7 698 0 703 256 160 4.1 0 0 8000 914 9 999999999 15 0 0 88 0.2 0 0 +2.94516E7 20 6 40 95906 0 170 343 0 0 0 0 0 0 0 150 4.6 1 1 8000 914 9 999999999 17 0 0 88 0.2 0 0 +2.94552E7 18 6 45 95870 0 0 338 0 0 0 0 0 0 0 160 4.6 2 2 8000 914 9 999999999 17 0 0 88 0.2 0 0 +2.94588E7 17 5 45 95852 0 0 332 0 0 0 0 0 0 0 160 4.1 2 2 8000 914 9 999999999 15 0 0 88 0.2 0 0 +2.94624E7 16 5 48 95834 0 0 328 0 0 0 0 0 0 0 150 2.1 2 2 8000 914 9 999999999 15 0 0 88 0.2 0 0 +2.9466E7 16 4 45 95834 0 0 327 0 0 0 0 0 0 0 150 3.1 2 2 8000 914 9 999999999 14 0 0 88 0.2 0 0 +2.94696E7 16 4 45 95834 0 0 327 0 0 0 0 0 0 0 150 2.6 2 2 8000 914 9 999999999 14 0 0 88 0.2 0 0 +2.94732E7 14 5 55 95797 0 0 322 0 0 0 0 0 0 0 55 1 3 3 8000 914 9 999999999 15 0 0 88 0.2 0 0 +2.94768E7 13 5 58 95778 0 0 320 0 0 0 0 0 0 0 181 1 4 4 8000 914 9 999999999 15 0 0 88 0.2 0 0 +2.94804E7 13 6 62 95778 0 0 321 0 0 0 0 0 0 0 130 1.5 4 4 8000 914 9 999999999 17 0 0 88 0.2 0 0 +2.9484E7 10 5 71 95721 0 0 292 0 0 0 0 0 0 0 350 2.1 0 0 8000 2000 9 999999999 16 0 0 88 0.2 0 0 +2.94876E7 14 6 59 95797 277 1393 310 111 153 81 12151 5030 8890 2606 30 1.5 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.94912E7 17 6 48 95852 559 1410 334 328 491 133 37216 31272 15187 5252 105 1 2 2 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.94948E7 20 6 40 95906 823 1410 343 566 707 153 66672 48476 18061 7026 320 2.1 1 1 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.94984E7 22 6 35 95942 1051 1410 346 778 842 150 95031 56157 18431 7632 188 1.5 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.9502E7 24 7 34 95977 1227 1410 356 944 814 234 114034 59367 28456 11494 170 4.6 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.95056E7 26 7 30 96011 1341 1410 366 1051 820 270 127441 61078 32914 13108 160 7.2 0 0 8000 2000 9 999999999 18 0 0 88 0.2 0 0 +2.95092E7 26 7 30 96011 1383 1410 366 1091 822 283 130000 61627 34590 13706 210 7.2 0 0 8000 2000 9 999999999 18 0 0 88 0.2 0 0 +2.95128E7 26 8 32 96011 1351 1410 367 1059 821 272 128496 60692 33135 13195 210 7.7 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +2.95164E7 26 10 37 96011 1248 1410 370 958 815 236 115882 58050 28721 11610 210 7.7 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +2.952E7 26 10 37 96011 1079 1410 370 800 848 150 97929 54628 18485 7697 220 7.7 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +2.95236E7 25 10 39 95994 858 1410 372 594 735 147 70531 48141 17506 6935 220 7.7 1 1 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +2.95272E7 23 10 44 95959 598 1410 362 360 518 141 40970 33024 16052 5653 220 6.7 1 1 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +2.95308E7 21 10 49 95924 317 1410 357 137 236 84 15114 8420 9286 2861 210 7.2 2 2 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +2.95344E7 19 10 56 95888 36 1410 351 8 0 8 760 0 765 278 190 5.1 3 3 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +2.9538E7 18 9 56 95870 0 190 345 0 0 0 0 0 0 0 150 4.1 3 3 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.95416E7 16 10 68 95834 0 0 342 0 0 0 0 0 0 0 160 4.6 5 5 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +2.95452E7 16 10 68 95834 0 0 342 0 0 0 0 0 0 0 160 4.6 5 5 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +2.95488E7 15 10 72 95815 0 0 340 0 0 0 0 0 0 0 160 3.6 6 6 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +2.95524E7 14 10 77 95797 0 0 339 0 0 0 0 0 0 0 170 3.6 7 7 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +2.9556E7 14 10 77 95797 0 0 339 0 0 0 0 0 0 0 170 1.5 7 7 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +2.95596E7 13 9 77 95778 0 0 334 0 0 0 0 0 0 0 180 2.6 7 7 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.95632E7 12 9 82 95759 0 0 334 0 0 0 0 0 0 0 160 2.6 8 8 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.95668E7 12 9 82 95759 0 0 334 0 0 0 0 0 0 0 170 1.5 8 8 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.95704E7 12 9 82 95759 0 0 334 0 0 0 0 0 0 0 238 1 8 8 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.9574E7 14 10 77 95797 276 1392 339 88 68 75 9722 1924 8283 2489 148 1 7 7 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +2.95776E7 16 10 68 95834 558 1410 342 298 363 154 33364 24026 17335 5802 160 2.1 5 5 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +2.95812E7 19 10 56 95888 822 1410 351 554 689 152 65198 45744 17992 7011 13 1.5 3 3 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +2.95848E7 20 10 53 95906 1050 1410 356 765 816 157 92909 53305 19100 7902 287 1.5 3 3 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +2.95884E7 23 10 44 95959 1227 1410 371 927 848 188 113721 56648 23193 9565 150 3.1 3 3 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +2.9592E7 25 11 41 95994 1341 1410 388 972 582 418 113769 49785 49287 18137 180 5.1 5 5 8000 4572 9 999999999 28 0 0 88 0.2 0 0 +2.95956E7 24 11 44 95977 1384 1410 405 560 120 442 65606 10374 52187 19018 210 6.7 9 9 8000 3962 9 999999999 28 0 0 88 0.2 0 0 +2.95992E7 25 10 39 95994 1353 1410 387 984 538 467 114356 48553 54691 19518 220 6.7 5 5 8000 6096 9 999999999 25 0 0 88 0.2 0 0 +2.96028E7 25 11 41 95994 1250 1410 411 495 90 415 57257 7909 48346 17601 210 6.2 9 9 8000 4572 9 999999999 28 0 0 88 0.2 0 0 +2.96064E7 24 11 44 95977 1082 1410 383 745 432 414 84281 40219 47117 16441 210 8.2 5 5 8000 4572 9 999999999 28 0 0 88 0.2 0 0 +2.961E7 23 11 47 95959 860 1410 400 308 78 260 34883 6283 29657 10683 210 8.8 9 9 8000 4877 9 999999999 28 0 0 88 0.2 0 0 +2.96136E7 22 11 50 95942 601 1410 373 337 361 184 37536 25877 20534 6786 220 8.2 5 5 8000 5182 9 999999999 28 0 0 88 0.2 0 0 +2.96172E7 20 11 56 95906 321 1410 384 72 0 72 7074 0 7128 2594 210 8.2 9 9 8000 4877 9 999999999 28 0 0 88 0.2 0 0 +2.96208E7 18 10 59 95870 39 1410 372 5 0 5 439 0 442 173 200 7.2 9 9 8000 4877 9 999999999 25 0 0 88 0.2 0 0 +2.96244E7 18 10 59 95870 0 209 372 0 0 0 0 0 0 0 190 5.1 9 9 8000 4877 9 999999999 25 0 0 88 0.2 0 0 +2.9628E7 17 9 59 95852 0 0 366 0 0 0 0 0 0 0 160 4.6 9 9 8000 4267 9 999999999 23 0 0 88 0.2 0 0 +2.96316E7 16 9 63 95834 0 0 361 0 0 0 0 0 0 0 150 4.6 9 9 8000 3353 9 999999999 23 0 0 88 0.2 0 0 +2.96352E7 16 9 63 95834 0 0 361 0 0 0 0 0 0 0 160 5.1 9 9 8000 3048 9 999999999 23 0 0 88 0.2 0 0 +2.96388E7 16 9 63 95834 0 0 361 0 0 0 0 0 0 0 160 2.1 9 9 8000 3048 0 919999999 23 0 0 88 0.2 0 0 +2.96424E7 14 11 82 95797 0 0 364 0 0 0 0 0 0 0 170 3.6 10 10 8000 2438 0 919999999 28 0 0 88 0.2 0 0 +2.9646E7 14 12 88 95797 0 0 365 0 0 0 0 0 0 0 120 2.1 10 10 6000 914 0 919999999 31 0 0 88 0.2 0 0 +2.96496E7 13 13 100 95778 0 0 361 0 0 0 0 0 0 0 170 2.1 10 10 7000 914 0 919999999 34 0 0 88 0.2 0 0 +2.96532E7 13 12 94 95778 0 0 360 0 0 0 0 0 0 0 260 1.5 10 10 6000 610 0 919999999 31 0 0 88 0.2 0 0 +2.96568E7 13 13 100 95778 0 0 361 0 0 0 0 0 0 0 240 2.1 10 10 7000 152 0 919999999 34 0 0 88 0.2 0 0 +2.96604E7 13 12 94 95778 276 1390 360 34 0 34 3363 0 3388 1371 280 1.5 10 10 7000 2438 0 919999999 31 0 0 88 0.2 0 0 +2.9664E7 14 12 88 95797 557 1411 365 102 0 102 10236 0 10321 4287 190 1 10 10 8000 1829 0 919999999 31 0 0 88 0.2 0 0 +2.96676E7 15 13 88 95815 821 1411 371 176 1 175 20401 42 20455 7837 90 1.5 10 10 8000 2438 0 919999999 34 0 0 88 0.2 0 0 +2.96712E7 16 13 82 95834 1050 1411 376 242 4 239 28412 303 28202 11175 160 2.1 10 10 8000 2743 0 919999999 34 0 0 88 0.2 0 0 +2.96748E7 16 13 82 95834 1227 1411 376 294 10 285 34898 765 34037 13434 170 2.1 10 10 8000 610 0 919999999 34 0 0 88 0.2 0 0 +2.96784E7 17 12 72 95852 1341 1411 380 328 16 313 39273 1227 37657 14725 286 1 10 10 8000 1829 0 919999999 31 0 0 88 0.2 0 0 +2.9682E7 17 12 72 95852 1385 1411 380 341 17 324 40906 1278 39164 15256 81 1.5 10 10 8000 1524 0 919999999 31 0 0 88 0.2 0 0 +2.96856E7 16 12 77 95834 1354 1411 375 332 16 316 39743 1242 38090 14878 20 2.1 10 10 6000 914 0 919999999 31 0 0 88 0.2 0 0 +2.96892E7 15 12 82 95815 1251 1411 370 302 11 292 35865 802 34951 13752 30 2.1 10 10 6000 1829 0 919999999 31 0 0 88 0.2 0 0 +2.96928E7 15 12 82 95815 1084 1411 370 252 4 249 29700 325 29465 11688 40 1.5 10 10 8000 1524 0 919999999 31 0 0 88 0.2 0 0 +2.96964E7 15 12 82 95815 863 1411 370 188 1 187 21885 101 21888 8446 350 1.5 10 10 6000 1829 0 919999999 31 0 0 88 0.2 0 0 +2.97E7 14 11 82 95797 604 1411 364 115 0 115 11571 0 11668 4876 201 0.5 10 10 6000 1829 0 919999999 28 0 0 88 0.2 0 0 +2.97036E7 14 12 88 95797 324 1411 365 45 0 45 4378 0 4411 1788 32 1 10 10 8000 1524 0 919999999 31 0 0 88 0.2 0 0 +2.97072E7 15 12 82 95815 43 1411 370 3 0 3 291 0 293 119 340 1.5 10 10 8000 2134 9 999999999 31 0 0 88 0.2 0 0 +2.97108E7 15 11 77 95815 0 228 358 0 0 0 0 0 0 0 207 1 9 9 8000 3048 9 999999999 28 0 0 88 0.2 0 0 +2.97144E7 14 13 94 95797 0 0 356 0 0 0 0 0 0 0 290 2.6 9 9 8000 2743 9 999999999 34 0 0 88 0.2 0 0 +2.9718E7 14 12 88 95797 0 0 365 0 0 0 0 0 0 0 250 2.1 10 10 9000 3048 9 999999999 31 0 0 88 0.2 0 0 +2.97216E7 14 13 94 95797 0 0 356 0 0 0 0 0 0 0 106 1 9 9 9000 3048 9 999999999 34 0 0 88 0.2 0 0 +2.97252E7 14 12 88 95797 0 0 335 0 0 0 0 0 0 0 10 2.6 5 5 5000 3048 9 999999999 31 0 0 88 0.2 0 0 +2.97288E7 13 12 94 95778 0 0 325 0 0 0 0 0 0 0 350 2.1 3 3 3000 3048 9 999999999 31 0 0 88 0.2 0 0 +2.97324E7 12 11 94 95759 0 0 320 0 0 0 0 0 0 0 10 2.6 3 3 3000 3048 9 999999999 28 0 0 88 0.2 0 0 +2.9736E7 12 11 94 95759 0 0 306 0 0 0 0 0 0 0 20 2.1 0 0 3000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.97396E7 11 11 100 95740 0 0 302 0 0 0 0 0 0 0 69 0 0 0 2000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.97432E7 11 11 100 95740 0 0 302 0 0 0 0 0 0 0 344 1 0 0 1100 2000 9 999999999 28 0 0 88 0.2 0 0 +2.97468E7 13 11 88 95778 275 1388 311 109 176 74 11954 4787 8210 2469 351 1 0 0 2000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.97504E7 15 13 88 95815 557 1411 322 323 473 137 36450 28506 15464 5331 216 1 0 0 5000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.9754E7 17 13 77 95852 821 1411 357 449 320 262 50454 25816 29644 10408 330 2.1 7 7 5000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.97576E7 19 13 68 95888 1049 1411 360 702 572 277 81493 44117 32287 12466 232 1 5 5 5000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.97612E7 21 12 56 95924 1227 1411 363 919 788 233 110762 55080 28223 11435 200 2.1 3 3 5000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.97648E7 23 11 47 95959 1342 1411 368 1042 821 261 126479 58621 31825 12749 140 3.1 2 2 5000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.97684E7 24 9 38 95977 1385 1411 359 1089 823 280 130000 60597 34241 13597 170 3.6 0 0 5000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.9772E7 26 9 34 96011 1355 1411 369 1061 640 446 123892 56855 52417 18968 150 3.6 0 0 5000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.97756E7 26 9 34 96011 1253 1411 414 498 86 422 57648 7695 49147 17797 150 3.6 9 9 5000 7620 9 999999999 23 0 0 88 0.2 0 0 +2.97792E7 26 10 37 96011 1086 1411 415 416 21 400 47267 1918 45754 16179 170 4.1 9 9 5000 7620 9 999999999 25 0 0 88 0.2 0 0 +2.97828E7 26 10 37 96011 866 1411 415 311 16 301 34879 1420 33955 11737 180 6.2 9 9 5000 7620 9 999999999 25 0 0 88 0.2 0 0 +2.97864E7 26 12 42 96011 607 1411 418 190 18 182 21138 1308 20350 6787 230 5.7 9 9 5000 7620 9 999999999 30 0 0 88 0.2 0 0 +2.979E7 25 11 41 95994 328 1411 411 74 0 74 7320 0 7375 2680 220 5.7 9 9 5000 7620 9 999999999 28 0 0 88 0.2 0 0 +2.97936E7 23 9 41 95959 46 1411 397 5 0 5 519 0 522 204 230 4.6 9 9 5000 6096 9 999999999 23 0 0 88 0.2 0 0 +2.97972E7 22 10 46 95942 0 247 362 0 0 0 0 0 0 0 220 3.6 2 2 5000 6096 9 999999999 25 0 0 88 0.2 0 0 +2.98008E7 21 11 53 95924 0 0 362 0 0 0 0 0 0 0 160 3.1 3 3 5000 6096 9 999999999 28 0 0 88 0.2 0 0 +2.98044E7 20 11 56 95906 0 0 357 0 0 0 0 0 0 0 180 3.1 3 3 5000 6096 9 999999999 28 0 0 88 0.2 0 0 +2.9808E7 21 9 46 95924 0 0 356 0 0 0 0 0 0 0 200 4.1 2 2 5000 6096 9 999999999 23 0 0 88 0.2 0 0 +2.98116E7 19 9 52 95888 0 0 350 0 0 0 0 0 0 0 210 2.6 3 3 5000 6096 9 999999999 23 0 0 88 0.2 0 0 +2.98152E7 18 10 59 95870 0 0 349 0 0 0 0 0 0 0 180 2.1 4 4 5000 6096 9 999999999 25 0 0 88 0.2 0 0 +2.98188E7 16 10 68 95834 0 0 342 0 0 0 0 0 0 0 35 1.5 5 5 5000 6096 9 999999999 25 0 0 88 0.2 0 0 +2.98224E7 16 11 72 95834 0 0 346 0 0 0 0 0 0 0 318 1 6 6 5000 6096 9 999999999 28 0 0 88 0.2 0 0 +2.9826E7 15 11 77 95815 0 0 319 0 0 0 0 0 0 0 20 1.5 0 0 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.98296E7 14 11 82 95797 0 0 315 0 0 0 0 0 0 0 40 2.1 0 0 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.98332E7 16 12 77 95834 274 1385 325 108 174 74 11868 4587 8182 2461 350 1.5 0 0 6000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.98368E7 19 12 64 95888 556 1411 359 305 397 149 34184 25237 16757 5652 70 2.1 5 5 6000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.98404E7 21 11 53 95924 820 1411 362 552 694 149 65049 45323 17572 6863 160 1 3 3 6000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.9844E7 23 11 47 95959 1049 1411 368 768 834 148 93662 53161 18079 7507 350 1.5 2 2 6000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.98476E7 25 11 41 95994 1227 1411 373 937 815 228 113189 57108 27677 11233 160 2.6 1 1 6000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.98512E7 27 9 32 96029 1342 1411 374 1048 821 267 127126 60057 32538 12987 170 4.6 0 0 6000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.98548E7 28 9 30 96046 1386 1411 395 1076 823 267 130000 59631 32698 13061 160 4.1 3 3 6000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.98584E7 29 9 29 96063 1356 1411 400 1048 822 258 127718 59262 31579 12657 160 4.6 3 3 6000 2000 9 999999999 22 0 0 88 0.2 0 0 +2.9862E7 30 9 27 96079 1255 1411 406 954 884 167 118533 57505 20898 8669 170 4.6 3 3 6000 2000 9 999999999 22 0 0 88 0.2 0 0 +2.98656E7 31 10 27 96096 1089 1411 412 799 844 147 97996 53959 18115 7559 150 5.7 3 3 6000 2000 9 999999999 25 0 0 88 0.2 0 0 +2.98692E7 30 10 29 96079 869 1411 390 604 774 128 72631 48574 15382 6185 220 6.2 0 0 6000 2000 9 999999999 25 0 0 88 0.2 0 0 +2.98728E7 29 10 31 96063 610 1411 385 371 531 141 42307 34031 16178 5736 230 6.2 0 0 6000 2000 9 999999999 25 0 0 88 0.2 0 0 +2.98764E7 28 10 32 96046 331 1411 380 147 256 87 16225 9702 9627 2988 230 6.2 0 0 6000 2000 9 999999999 25 0 0 88 0.2 0 0 +2.988E7 26 11 39 96011 50 1411 378 11 0 11 1076 0 1083 383 220 5.1 1 1 6000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.98836E7 24 11 44 95977 0 265 368 0 0 0 0 0 0 0 200 5.7 1 1 6000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.98872E7 23 11 47 95959 0 0 368 0 0 0 0 0 0 0 220 4.6 2 2 6000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.98908E7 21 11 53 95924 0 0 362 0 0 0 0 0 0 0 220 4.1 3 3 6000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.98944E7 21 12 56 95924 0 0 363 0 0 0 0 0 0 0 150 2.1 3 3 6000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.9898E7 20 11 56 95906 0 0 357 0 0 0 0 0 0 0 150 1.5 3 3 6000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.99016E7 19 11 60 95888 0 0 355 0 0 0 0 0 0 0 100 1.5 4 4 6000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.99052E7 18 11 64 95870 0 0 353 0 0 0 0 0 0 0 150 1.5 5 5 6000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.99088E7 16 11 72 95834 0 0 346 0 0 0 0 0 0 0 320 1.5 6 6 6000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.99124E7 17 11 68 95852 0 0 348 0 0 0 0 0 0 0 305 1 5 5 6000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.9916E7 15 12 82 95815 0 0 352 0 0 0 0 0 0 0 23 1 8 8 6000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.99196E7 18 12 68 95870 273 1382 354 98 144 70 10832 3541 7775 2372 151 1 5 5 6000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.99232E7 20 11 56 95906 555 1412 357 317 450 140 35678 28040 15823 5410 150 2.1 3 3 6000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.99268E7 22 11 50 95942 819 1412 363 554 705 145 65383 45634 17193 6729 282 1 2 2 6000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.99304E7 24 12 47 95977 1048 1412 374 766 834 146 93426 52488 17922 7449 64 1.5 2 2 6000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.9934E7 26 11 39 96011 1226 1412 378 936 815 228 113152 57128 27679 11233 170 2.1 1 1 6000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.99376E7 28 10 32 96046 1342 1412 380 1047 821 265 126933 59485 32346 12926 170 5.1 0 0 6000 2000 9 999999999 25 0 0 88 0.2 0 0 +2.99412E7 29 9 29 96063 1387 1412 384 1091 823 281 130000 60657 34310 13621 220 5.7 0 0 6000 2000 9 999999999 22 0 0 88 0.2 0 0 +2.99448E7 29 9 29 96063 1358 1412 384 1063 822 272 129007 60286 33166 13212 230 7.2 0 0 6000 2000 9 999999999 22 0 0 88 0.2 0 0 +2.99484E7 30 7 24 96079 1257 1412 386 971 817 243 117436 59915 29584 11905 210 6.7 0 0 6000 2000 9 999999999 18 0 0 88 0.2 0 0 +2.9952E7 30 8 25 96079 1091 1412 387 814 855 152 99682 56088 18742 7800 200 7.7 0 0 6000 2000 9 999999999 20 0 0 88 0.2 0 0 +2.99556E7 29 8 27 96063 871 1412 382 609 738 153 72243 49701 18199 7207 210 7.2 0 0 6000 2000 9 999999999 20 0 0 88 0.2 0 0 +2.99592E7 28 9 30 96046 613 1412 379 375 537 141 42732 34689 16136 5733 220 7.2 0 0 6000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.99628E7 26 10 37 96011 334 1412 370 149 260 87 16480 9993 9712 3019 220 7.2 0 0 6000 2000 9 999999999 25 0 0 88 0.2 0 0 +2.99664E7 24 9 38 95977 53 1412 359 12 0 12 1152 0 1160 408 200 7.2 0 0 6000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.997E7 23 7 36 95959 0 282 352 0 0 0 0 0 0 0 200 6.2 0 0 6000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.99736E7 23 6 33 95959 0 0 350 0 0 0 0 0 0 0 150 3.6 0 0 6000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.99772E7 21 8 43 95924 0 0 350 0 0 0 0 0 0 0 150 3.1 1 1 6000 2000 9 999999999 21 0 0 88 0.2 0 0 +2.99808E7 20 8 46 95906 0 0 350 0 0 0 0 0 0 0 150 2.6 2 2 6000 2000 9 999999999 21 0 0 88 0.2 0 0 +2.99844E7 20 9 49 95906 0 0 351 0 0 0 0 0 0 0 240 1.5 2 2 6000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.9988E7 19 8 49 95888 0 0 345 0 0 0 0 0 0 0 180 1.5 2 2 6000 2000 9 999999999 21 0 0 88 0.2 0 0 +2.99916E7 18 8 52 95870 0 0 344 0 0 0 0 0 0 0 190 1.5 3 3 6000 2000 9 999999999 21 0 0 88 0.2 0 0 +2.99952E7 17 7 52 95852 0 0 338 0 0 0 0 0 0 0 170 2.6 3 3 6000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.99988E7 16 8 59 95834 0 0 337 0 0 0 0 0 0 0 4 1 4 4 6000 2000 9 999999999 21 0 0 88 0.2 0 0 +3.00024E7 14 9 72 95797 0 0 334 0 0 0 0 0 0 0 350 2.1 6 6 6000 2000 9 999999999 23 0 0 88 0.2 0 0 +3.0006E7 18 9 56 95870 272 1378 345 105 135 79 11505 4058 8700 2550 8 0.5 3 3 6000 2000 9 999999999 23 0 0 88 0.2 0 0 +3.00096E7 20 8 46 95906 553 1412 350 323 483 133 36525 30213 15137 5219 170 1.5 2 2 6000 2000 9 999999999 21 0 0 88 0.2 0 0 +3.00132E7 22 9 43 95942 818 1412 356 558 711 146 65845 46946 17249 6739 80 1 1 1 6000 2000 9 999999999 23 0 0 88 0.2 0 0 +3.00168E7 24 9 38 95977 1047 1412 359 771 841 146 94138 54505 17948 7447 340 1.5 0 0 6000 2000 9 999999999 23 0 0 88 0.2 0 0 +3.00204E7 26 10 37 96011 1226 1412 370 937 815 229 113274 57751 27838 11285 140 1.5 0 0 6000 2000 9 999999999 25 0 0 88 0.2 0 0 +3.0024E7 28 10 32 96046 1342 1412 380 1047 821 265 126926 59496 32343 12925 52 2.1 0 0 6000 2000 9 999999999 25 0 0 88 0.2 0 0 +3.00276E7 31 9 26 96096 1387 1412 394 1091 824 281 130000 60682 34339 13631 180 3.6 0 0 6000 2000 9 999999999 22 0 0 88 0.2 0 0 +3.00312E7 32 9 24 96113 1359 1412 399 1064 822 272 129145 60323 33221 13232 150 2.6 0 0 6000 2000 9 999999999 22 0 0 88 0.2 0 0 +3.00348E7 32 10 26 96113 1258 1412 400 968 817 239 117103 58300 29121 11756 160 4.1 0 0 6000 2000 9 999999999 25 0 0 88 0.2 0 0 +3.00384E7 32 7 21 96113 1093 1412 396 817 858 152 100168 56680 18737 7797 220 7.2 0 0 6000 2000 9 999999999 18 0 0 88 0.2 0 0 +3.0042E7 32 4 17 96113 874 1412 392 615 720 169 72554 51370 20022 7836 230 7.2 0 0 6000 2000 9 999999999 14 0 0 88 0.2 0 0 +3.00456E7 32 2 15 96113 616 1412 390 381 562 136 43777 37464 15634 5588 220 4.6 0 0 6000 2000 9 999999999 11 0 0 88 0.2 0 0 +3.00492E7 31 2 16 96096 337 1412 385 153 275 87 17006 11633 9742 3031 220 5.1 0 0 6000 2000 9 999999999 11 0 0 88 0.2 0 0 +3.00528E7 29 1 16 96063 56 1412 373 13 0 13 1236 0 1244 433 200 4.6 0 0 6000 2000 9 999999999 10 0 0 88 0.2 0 0 +3.00564E7 26 4 24 96011 0 300 362 0 0 0 0 0 0 0 170 4.6 0 0 6000 2000 9 999999999 14 0 0 88 0.2 0 0 +3.006E7 25 1 21 95994 0 0 354 0 0 0 0 0 0 0 180 5.7 0 0 6000 2000 9 999999999 10 0 0 88 0.2 0 0 +3.00636E7 23 4 29 95959 0 0 348 0 0 0 0 0 0 0 144 1 0 0 6000 2000 9 999999999 14 0 0 88 0.2 0 0 +3.00672E7 23 2 25 95959 0 0 346 0 0 0 0 0 0 0 150 2.1 0 0 6000 2000 9 999999999 11 0 0 88 0.2 0 0 +3.00708E7 21 3 30 95924 0 0 338 0 0 0 0 0 0 0 180 3.6 0 0 6000 2000 9 999999999 12 0 0 88 0.2 0 0 +3.00744E7 19.6 5.1 39 95809 0 0 334 0 0 0 0 0 0 0 250 1.5 0 0 6000 2000 9 999999999 15 0 0 88 0.2 0 0 +3.0078E7 17 6 48 95852 0 0 334 0 0 0 0 0 0 0 360 2.6 2 2 6000 2000 9 999999999 17 0 0 88 0.2 0 0 +3.00816E7 17 5 45 95852 0 0 322 0 0 0 0 0 0 0 172 1 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +3.00852E7 16 6 51 95834 0 0 318 0 0 0 0 0 0 0 257 0 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +3.00888E7 15 7 59 95815 0 0 331 0 0 0 0 0 0 0 114 1 4 4 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +3.00924E7 17 7 52 95852 271 1373 324 107 145 79 11674 4471 8666 2536 20 3.1 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +3.0096E7 22 7 38 95942 552 1412 347 323 487 132 36558 30582 15022 5180 10 2.6 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +3.00996E7 25 5 28 95994 817 1412 359 561 699 156 65917 48578 18397 7117 350 2.1 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +3.01032E7 29 5 22 96063 1046 1412 378 775 838 153 94433 56604 18766 7751 208 1 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +3.01068E7 31 4 18 96096 1225 1412 387 946 815 238 114213 60821 28854 11622 245 1.5 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +3.01104E7 34 5 16 96146 1342 1412 404 1055 821 273 127876 62166 33318 13238 180 3.1 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +3.0114E7 35 3 13 96162 1388 1412 407 1101 824 291 130000 63640 35540 14014 180 5.1 0 0 8000 2000 9 999999999 12 0 0 88 0.2 0 0 +3.01176E7 35 3 13 96162 1360 1412 407 1075 822 282 130000 63278 34412 13615 210 6.2 0 0 8000 2000 9 999999999 12 0 0 88 0.2 0 0 +3.01212E7 36 1 11 96178 1260 1412 409 983 817 253 118790 62602 30746 12293 220 7.7 0 0 8000 2000 9 999999999 10 0 0 88 0.2 0 0 +3.01248E7 35 5 16 96162 1095 1412 409 821 852 160 100444 57786 19664 8154 220 8.2 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +3.01284E7 34 6 18 96146 877 1412 406 616 733 160 72911 50792 19013 7500 220 3.1 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +3.0132E7 32 6 20 96113 619 1412 395 382 553 139 43689 36345 15947 5695 210 8.8 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +3.01356E7 30 6 22 96079 340 1412 385 154 273 88 17127 11316 9847 3069 190 7.2 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +3.01392E7 26 7 30 96011 59 1412 366 13 0 13 1296 0 1305 454 150 4.1 0 0 8000 2000 9 999999999 18 0 0 88 0.2 0 0 +3.01428E7 23 7 36 95959 0 316 352 0 0 0 0 0 0 0 150 7.2 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +3.01464E7 21 7 40 95924 0 0 342 0 0 0 0 0 0 0 150 5.7 0 0 9000 2000 9 999999999 19 0 0 88 0.2 0 0 +3.015E7 20.7 7.1 41 95753 0 0 341 0 0 0 0 0 0 0 160 4.6 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +3.01536E7 20 7 43 95906 0 0 338 0 0 0 0 0 0 0 180 3.1 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +3.01572E7 19 7 46 95888 0 0 333 0 0 0 0 0 0 0 180 4.6 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +3.01608E7 17 7 52 95852 0 0 324 0 0 0 0 0 0 0 140 1.5 0 0 7000 2000 9 999999999 19 0 0 88 0.2 0 0 +3.01644E7 17 7 52 95852 0 0 324 0 0 0 0 0 0 0 180 2.1 0 0 7000 2000 9 999999999 19 0 0 88 0.2 0 0 +3.0168E7 15 8 63 95815 0 0 316 0 0 0 0 0 0 0 48 0.5 0 0 7000 2000 9 999999999 21 0 0 88 0.2 0 0 +3.01716E7 15 8 63 95815 0 0 316 0 0 0 0 0 0 0 68 0.5 0 0 7000 2000 9 999999999 21 0 0 88 0.2 0 0 +3.01752E7 14 8 67 95797 0 0 312 0 0 0 0 0 0 0 330 1.5 0 0 5000 2000 9 999999999 21 0 0 88 0.2 0 0 +3.01788E7 15 9 67 95815 270 1367 317 106 142 78 11533 4183 8607 2521 309 0.5 0 0 5000 2000 9 999999999 23 0 0 88 0.2 0 0 +3.01824E7 19 8 49 95888 551 1412 334 321 483 132 36327 30114 15034 5180 150 1.5 0 0 6000 2000 9 999999999 21 0 0 88 0.2 0 0 +3.0186E7 22 8 41 95942 815 1412 348 557 710 147 65682 47352 17362 6768 160 2.6 0 0 6000 2000 9 999999999 21 0 0 88 0.2 0 0 +3.01896E7 24 9 38 95977 1045 1412 359 769 841 146 93897 54475 17910 7430 170 2.6 0 0 6000 2000 9 999999999 23 0 0 88 0.2 0 0 +3.01932E7 26 8 32 96011 1225 1412 367 939 815 232 113475 58886 28134 11382 160 4.1 0 0 7000 2000 9 999999999 20 0 0 88 0.2 0 0 +3.01968E7 28 10 32 96046 1342 1412 380 1046 822 265 126892 59515 32328 12919 160 6.2 0 0 7000 2000 9 999999999 25 0 0 88 0.2 0 0 +3.02004E7 29 11 33 96063 1388 1412 386 1089 824 278 130000 59491 33948 13508 170 5.7 0 0 8000 2000 9 999999999 27 0 0 88 0.2 0 0 +3.0204E7 30 11 31 96079 1361 1412 391 1063 823 269 128964 59149 32886 13128 180 6.7 0 0 8000 2000 9 999999999 27 0 0 88 0.2 0 0 +3.02076E7 30 13 35 96079 1262 1412 394 967 817 236 116884 56388 28672 11613 230 6.2 0 0 8000 2000 9 999999999 33 0 0 88 0.2 0 0 +3.02112E7 29 13 37 96063 1097 1412 389 813 851 151 99502 53062 18585 7762 220 6.7 0 0 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +3.02148E7 29 14 40 96063 879 1412 397 610 757 138 72782 46528 16564 6655 220 6.7 1 1 8000 2000 9 999999999 37 0 0 88 0.2 0 0 +3.02184E7 26 14 48 96011 622 1412 387 378 520 148 42862 32664 16905 5997 220 5.7 2 2 8000 2000 9 999999999 37 0 0 88 0.2 0 0 +3.0222E7 24 14 54 95977 343 1412 365 155 254 93 17024 9731 10267 3182 210 5.1 0 0 8000 2000 9 999999999 37 0 0 88 0.2 0 0 +3.02256E7 22 14 60 95942 62 1412 355 14 0 14 1349 0 1358 474 160 5.1 0 0 8000 2000 9 999999999 37 0 0 88 0.2 0 0 +3.02292E7 21 14 64 95924 0 333 350 0 0 0 0 0 0 0 160 4.6 0 0 8000 2000 9 999999999 38 0 0 88 0.2 0 0 +3.02328E7 19 14 73 95888 0 0 341 0 0 0 0 0 0 0 160 4.1 0 0 8000 2000 9 999999999 38 0 0 88 0.2 0 0 +3.02364E7 18 14 77 95870 0 0 336 0 0 0 0 0 0 0 160 4.6 0 0 8000 2000 9 999999999 38 0 0 88 0.2 0 0 +3.024E7 18 13 73 95870 0 0 335 0 0 0 0 0 0 0 160 2.6 0 0 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +3.02436E7 17 13 77 95852 0 0 331 0 0 0 0 0 0 0 160 3.6 0 0 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +3.02472E7 16 13 82 95834 0 0 326 0 0 0 0 0 0 0 150 2.6 0 0 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +3.02508E7 15 13 88 95815 0 0 322 0 0 0 0 0 0 0 160 3.6 0 0 6000 2000 9 999999999 34 0 0 88 0.2 0 0 +3.02544E7 15 13 88 95815 0 0 335 0 0 0 0 0 0 0 160 3.6 3 3 6000 2000 9 999999999 34 0 0 88 0.2 0 0 +3.0258E7 14 13 94 95797 0 0 336 0 0 0 0 0 0 0 170 4.1 5 5 4000 2000 9 999999999 34 0 0 88 0.2 0 0 +3.02616E7 14 13 94 95797 0 0 356 0 0 0 0 0 0 0 170 3.6 9 9 3000 91 9 999999999 34 0 0 88 0.2 0 0 +3.02652E7 14 13 94 95797 268 1361 366 33 0 33 3201 0 3224 1305 170 2.6 10 10 3000 91 9 999999999 34 0 0 88 0.2 0 0 +3.02688E7 15 13 88 95815 549 1413 341 295 326 168 32644 21860 18683 6057 200 2.6 5 5 4000 610 9 999999999 34 0 0 88 0.2 0 0 +3.02724E7 18 14 77 95870 814 1413 351 543 694 143 63959 43226 16893 6622 220 2.1 3 3 6000 610 9 999999999 38 0 0 88 0.2 0 0 +3.0276E7 20 14 68 95906 1044 1413 346 762 839 141 92993 51078 17264 7194 160 4.6 0 0 6000 2000 9 999999999 38 0 0 88 0.2 0 0 +3.02796E7 22 14 60 95942 1224 1413 355 930 892 156 115317 54346 19411 8110 160 5.7 0 0 8000 2000 9 999999999 37 0 0 88 0.2 0 0 +3.02832E7 23 14 57 95959 1341 1413 360 1040 822 258 126000 56768 31485 12649 170 7.7 0 0 8000 2000 9 999999999 37 0 0 88 0.2 0 0 +3.02868E7 24 13 50 95977 1388 1413 376 1079 901 193 130000 57134 24142 9925 170 7.7 2 2 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +3.02904E7 27 12 39 96029 1362 1413 385 1062 823 268 128845 58494 32697 13068 170 7.2 1 1 8000 2000 9 999999999 30 0 0 88 0.2 0 0 +3.0294E7 28 13 40 96046 1263 1413 391 968 817 236 117043 56407 28707 11626 160 7.2 1 1 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +3.02976E7 28 13 40 96046 1099 1413 391 815 851 152 99722 53106 18643 7787 160 6.7 1 1 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +3.03012E7 28 13 40 96046 882 1413 391 613 755 142 73105 47304 16954 6799 160 8.2 1 1 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +3.03048E7 27 12 39 96029 625 1413 385 383 536 145 43576 34139 16616 5920 180 7.7 1 1 8000 2000 9 999999999 30 0 0 88 0.2 0 0 +3.03084E7 25 13 47 95994 346 1413 381 157 256 94 17255 10153 10362 3214 220 5.1 2 2 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +3.0312E7 23 14 57 95959 65 1413 378 14 0 14 1383 0 1393 487 160 4.1 4 4 8000 2000 9 999999999 37 0 0 88 0.2 0 0 +3.03156E7 22 13 57 95942 0 349 372 0 0 0 0 0 0 0 180 5.1 4 4 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +3.03192E7 20 13 64 95906 0 0 365 0 0 0 0 0 0 0 170 4.6 5 5 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +3.03228E7 18 12 68 95870 0 0 354 0 0 0 0 0 0 0 160 4.6 5 5 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +3.03264E7 16 12 77 95834 0 0 351 0 0 0 0 0 0 0 160 5.1 7 7 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +3.033E7 16 11 72 95834 0 0 346 0 0 0 0 0 0 0 160 3.6 6 6 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +3.03336E7 15 11 77 95815 0 0 345 0 0 0 0 0 0 0 180 2.6 7 7 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +3.03372E7 14 11 82 95797 0 0 346 0 0 0 0 0 0 0 160 4.1 8 8 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +3.03408E7 13 11 88 95778 0 0 349 0 0 0 0 0 0 0 170 3.6 9 9 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +3.03444E7 14 11 82 95797 0 0 346 0 0 0 0 0 0 0 150 3.6 8 8 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +3.0348E7 14 11 82 95797 0 0 346 0 0 0 0 0 0 0 200 2.1 8 8 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +3.03516E7 14 11 82 95797 267 1354 353 53 0 53 5219 0 5258 1933 140 2.1 9 9 8000 4572 9 999999999 28 0 0 88 0.2 0 0 +3.03552E7 16 12 77 95834 548 1413 365 163 21 155 18185 1335 17376 5755 170 1.5 9 9 8000 4572 9 999999999 31 0 0 88 0.2 0 0 +3.03588E7 18 12 68 95870 813 1413 354 512 516 215 58480 38450 24709 9070 220 2.1 5 5 8000 6096 9 999999999 31 0 0 88 0.2 0 0 +3.03624E7 20 12 60 95906 1043 1413 364 710 637 239 83340 46992 28220 11149 170 3.1 5 5 8000 6096 9 999999999 31 0 0 88 0.2 0 0 +3.0366E7 22 13 57 95942 1223 1413 372 911 823 197 111054 54129 24129 9934 190 3.6 4 4 8000 6096 9 999999999 34 0 0 88 0.2 0 0 +3.03696E7 24 14 54 95977 1341 1413 381 1026 841 227 125574 55713 27910 11358 170 5.1 3 3 8000 6096 9 999999999 37 0 0 88 0.2 0 0 +3.03732E7 26 12 42 96011 1389 1413 394 1012 633 389 119717 51402 46326 17440 220 6.2 5 5 8000 6096 9 999999999 30 0 0 88 0.2 0 0 +3.03768E7 27 13 42 96029 1363 1413 378 1061 884 208 130000 57487 25839 10578 200 6.7 0 0 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +3.03804E7 27 13 42 96029 1265 1413 386 969 818 236 117188 56415 28728 11634 200 6.2 1 1 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +3.0384E7 26 13 45 96011 1101 1413 386 816 849 153 99782 53081 18786 7844 220 7.2 2 2 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +3.03876E7 25 13 47 95994 884 1413 381 614 750 144 73116 47240 17207 6896 210 9.3 2 2 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +3.03912E7 23 13 53 95959 628 1413 374 380 515 152 43150 33021 17267 6116 220 8.2 3 3 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +3.03948E7 20 12 60 95906 349 1413 361 154 234 96 16956 9673 10620 3279 220 6.7 4 4 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +3.03984E7 17 12 72 95852 68 1413 352 13 0 13 1293 0 1302 466 200 8.2 6 6 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +3.0402E7 17 12 72 95852 0 364 344 0 0 0 0 0 0 0 180 6.7 3 3 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +3.04056E7 15 11 77 95815 0 0 345 0 0 0 0 0 0 0 150 4.6 7 7 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +3.04092E7 15 11 77 95815 0 0 345 0 0 0 0 0 0 0 160 4.6 7 7 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +3.04128E7 15 11 77 95815 0 0 345 0 0 0 0 0 0 0 160 3.1 7 7 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +3.04164E7 14 11 82 95797 0 0 346 0 0 0 0 0 0 0 170 4.6 8 8 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +3.042E7 14 12 88 95797 0 0 355 0 0 0 0 0 0 0 160 2.6 9 9 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +3.04236E7 14 12 88 95797 0 0 355 0 0 0 0 0 0 0 146 1 9 9 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +3.04272E7 13 11 88 95778 0 0 349 0 0 0 0 0 0 0 230 1.5 9 9 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +3.04308E7 13 11 88 95778 0 0 349 0 0 0 0 0 0 0 269 0.5 9 9 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +3.04344E7 12 11 94 95759 0 0 320 0 0 0 0 0 0 0 170 0.5 3 3 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +3.0438E7 14 11 82 95797 265 1346 315 102 163 72 11222 4040 7894 2363 201 1 0 0 6000 2000 9 999999999 28 0 0 88 0.2 0 0 +3.04416E7 16 12 77 95834 546 1413 325 315 466 134 35466 28112 15202 5212 238 1.5 0 0 5000 2000 9 999999999 31 0 0 88 0.2 0 0 +3.04452E7 18 12 68 95870 811 1413 334 549 745 121 65549 45106 14529 5764 228 1.5 0 0 7000 2000 9 999999999 31 0 0 88 0.2 0 0 +3.04488E7 21 13 60 95924 1042 1413 367 736 753 180 88165 49819 21659 8862 70 1.5 4 4 7000 2000 9 999999999 34 0 0 88 0.2 0 0 +3.04524E7 23 13 53 95959 1223 1413 374 920 845 188 112571 54815 23082 9537 303 2.1 3 3 7000 2000 9 999999999 34 0 0 88 0.2 0 0 +3.0456E7 26 13 45 96011 1341 1413 386 1039 822 258 126045 57436 31528 12657 170 6.2 2 2 7000 2000 9 999999999 34 0 0 88 0.2 0 0 +3.04596E7 28 12 37 96046 1389 1413 382 1088 824 276 130000 58863 33763 13451 160 6.7 0 0 7000 2000 9 999999999 30 0 0 88 0.2 0 0 +3.04632E7 29 11 33 96063 1364 1413 386 1065 823 270 129270 59209 32979 13161 150 6.7 0 0 7000 2000 9 999999999 27 0 0 88 0.2 0 0 +3.04668E7 30 9 27 96079 1266 1413 389 977 818 243 118152 59046 29573 11914 170 6.2 0 0 7000 2000 9 999999999 22 0 0 88 0.2 0 0 +3.04704E7 32 6 20 96113 1103 1413 395 828 857 157 101400 57481 19361 8046 180 6.2 0 0 7000 2000 9 999999999 17 0 0 88 0.2 0 0 +3.0474E7 30 10 29 96079 887 1413 390 621 749 150 73841 49294 17927 7151 230 6.2 0 0 7000 2000 9 999999999 25 0 0 88 0.2 0 0 +3.04776E7 30 10 29 96079 630 1413 390 389 552 142 44430 35554 16326 5852 220 6.2 0 0 7000 2000 9 999999999 25 0 0 88 0.2 0 0 +3.04812E7 28 9 30 96046 352 1413 379 162 284 91 17970 11857 10156 3186 210 6.2 0 0 7000 2000 9 999999999 23 0 0 88 0.2 0 0 +3.04848E7 26 11 39 96011 71 1413 378 16 0 16 1545 0 1556 538 210 6.2 1 1 7000 2000 9 999999999 28 0 0 88 0.2 0 0 +3.04884E7 25 11 41 95994 0 379 373 0 0 0 0 0 0 0 210 5.7 1 1 7000 2000 9 999999999 28 0 0 88 0.2 0 0 +3.0492E7 24 11 44 95977 0 0 368 0 0 0 0 0 0 0 150 2.6 1 1 7000 2000 9 999999999 28 0 0 88 0.2 0 0 +3.04956E7 22 12 53 95942 0 0 368 0 0 0 0 0 0 0 130 2.1 3 3 7000 2000 9 999999999 31 0 0 88 0.2 0 0 +3.04992E7 20 11 56 95906 0 0 357 0 0 0 0 0 0 0 150 2.1 3 3 7000 2000 9 999999999 28 0 0 88 0.2 0 0 +3.05028E7 20 11 56 95906 0 0 357 0 0 0 0 0 0 0 150 2.1 3 3 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +3.05064E7 18 11 64 95870 0 0 333 0 0 0 0 0 0 0 211 1 0 0 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +3.051E7 16 11 72 95834 0 0 324 0 0 0 0 0 0 0 20 2.1 0 0 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +3.05136E7 16 11 72 95834 0 0 324 0 0 0 0 0 0 0 184 1 0 0 5000 2000 9 999999999 28 0 0 88 0.2 0 0 +3.05172E7 16.5 10.8 69 95583 0 0 326 0 0 0 0 0 0 0 347 1.5 0 0 6000 2000 9 999999999 27 0 0 88 0.2 0 0 +3.05208E7 14 10 77 95797 0 0 314 0 0 0 0 0 0 0 30 2.1 0 0 6000 2000 9 999999999 25 0 0 88 0.2 0 0 +3.05244E7 18 11 64 95870 263 1338 333 101 162 71 11122 3946 7834 2344 350 2.1 0 0 5000 2000 9 999999999 28 0 0 88 0.2 0 0 +3.0528E7 21 11 53 95924 544 1413 347 314 469 133 35425 28456 15099 5175 247 1 0 0 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +3.05316E7 24 11 44 95977 809 1413 368 548 711 141 64739 45606 16688 6527 137 0.5 1 1 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +3.05352E7 26 10 37 96011 1040 1413 370 764 840 145 93187 53815 17723 7353 262 1.5 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +3.05388E7 28 10 32 96046 1222 1413 380 934 815 228 112770 57753 27685 11229 160 3.1 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +3.05424E7 30 11 31 96079 1341 1413 391 1044 822 263 126562 58929 32103 12846 170 4.6 0 0 8000 2000 9 999999999 27 0 0 88 0.2 0 0 +3.0546E7 31 9 26 96096 1389 1413 394 1093 824 282 130000 60778 34417 13659 170 5.1 0 0 8000 2000 9 999999999 22 0 0 88 0.2 0 0 +3.05496E7 32 8 23 96113 1364 1413 398 1071 823 276 129991 61023 33635 13372 220 7.2 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +3.05532E7 32 10 26 96113 1268 1413 400 977 818 242 118148 58508 29470 11883 220 7.7 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +3.05568E7 31 7 22 96096 1105 1413 391 828 862 154 101651 57003 18933 7883 220 9.8 0 0 8000 2000 9 999999999 18 0 0 88 0.2 0 0 +3.05604E7 29 7 25 96063 889 1413 381 626 746 156 74357 50892 18661 7409 210 8.8 0 0 8000 2000 9 999999999 18 0 0 88 0.2 0 0 +3.0564E7 27 8 30 96029 633 1413 372 393 562 140 44973 36659 16151 5806 210 8.8 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +3.05676E7 26 7 30 96011 355 1413 366 165 292 91 18301 12567 10195 3203 200 7.2 0 0 8000 2000 9 999999999 18 0 0 88 0.2 0 0 +3.05712E7 23 4 29 95959 74 1413 348 17 0 17 1625 0 1636 561 180 7.7 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +3.05748E7 22 2 27 95942 0 393 341 0 0 0 0 0 0 0 140 5.1 0 0 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +3.05784E7 20 -1 24 95906 0 0 328 0 0 0 0 0 0 0 150 4.6 0 0 8000 2000 9 999999999 8 0 0 88 0.2 0 0 +3.0582E7 19 0 28 95888 0 0 325 0 0 0 0 0 0 0 160 4.1 0 0 8000 2000 9 999999999 9 0 0 88 0.2 0 0 +3.05856E7 17 0 32 95852 0 0 316 0 0 0 0 0 0 0 160 4.6 0 0 8000 2000 9 999999999 9 0 0 88 0.2 0 0 +3.05892E7 17 0 32 95852 0 0 316 0 0 0 0 0 0 0 160 2.1 0 0 8000 2000 9 999999999 9 0 0 88 0.2 0 0 +3.05928E7 16 1 36 95834 0 0 313 0 0 0 0 0 0 0 170 2.1 0 0 8000 2000 9 999999999 10 0 0 88 0.2 0 0 +3.05964E7 15 3 44 95815 0 0 317 0 0 0 0 0 0 0 170 1.5 1 1 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +3.06E7 13 3 51 95778 0 0 315 0 0 0 0 0 0 0 115 1 3 3 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +3.06036E7 14 3 47 95797 0 0 317 0 0 0 0 0 0 0 350 1 2 2 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +3.06072E7 13 4 54 95778 0 0 303 0 0 0 0 0 0 0 180 1.5 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +3.06108E7 15 5 51 95815 261 1329 313 101 137 76 11046 4003 8309 2424 339 1 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +3.06144E7 18 3 37 95870 542 1414 324 316 489 129 35894 31036 14659 5037 272 1 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +3.0618E7 20 4 35 95906 808 1414 334 553 691 158 64908 48535 18592 7151 18 1.5 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +3.06216E7 23 3 27 95959 1039 1414 347 770 831 159 93591 57354 19361 7962 220 1.5 0 0 8000 2000 9 999999999 12 0 0 88 0.2 0 0 +3.06252E7 26 2 21 96011 1221 1414 360 944 815 239 113934 61605 28972 11655 170 2.6 0 0 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +3.06288E7 27 5 24 96029 1340 1414 369 1053 822 272 127639 62188 33216 13202 170 5.1 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +3.06324E7 29 4 20 96063 1389 1414 377 1101 825 290 130000 63289 35390 13967 170 7.2 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +3.0636E7 28 7 26 96046 1365 1414 376 1073 823 277 130000 61555 33836 13437 210 8.2 0 0 8000 2000 9 999999999 18 0 0 88 0.2 0 0 +3.06396E7 29 8 27 96063 1269 1414 382 981 818 246 118653 59666 29867 12014 220 7.2 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +3.06432E7 28 8 28 96046 1107 1414 377 829 860 155 101628 56510 19034 7927 210 8.2 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +3.06468E7 27 7 28 96029 891 1414 371 628 746 157 74607 50973 18705 7430 200 8.8 0 0 8000 2000 9 999999999 18 0 0 88 0.2 0 0 +3.06504E7 25 7 32 95994 635 1414 361 395 568 140 45351 37242 16094 5797 200 8.8 0 0 5000 2000 9 999999999 19 0 0 88 0.2 0 0 +3.0654E7 22 7 38 95942 358 1414 347 167 295 92 18516 12814 10260 3228 200 7.7 0 0 4000 2000 9 999999999 19 0 0 88 0.2 0 0 +3.06576E7 19 6 43 95888 76 1414 332 17 0 17 1678 0 1689 579 180 9.3 0 0 5000 2000 9 999999999 17 0 0 88 0.2 0 0 +3.06612E7 18 3 37 95870 0 407 324 0 0 0 0 0 0 0 150 4.6 0 0 7000 2000 9 999999999 13 0 0 88 0.2 0 0 +3.06648E7 16 6 51 95834 0 0 318 0 0 0 0 0 0 0 150 5.7 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +3.06684E7 16 8 59 95834 0 0 321 0 0 0 0 0 0 0 150 4.6 0 0 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +3.0672E7 15 9 67 95815 0 0 317 0 0 0 0 0 0 0 150 3.6 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +3.06756E7 15 9 67 95815 0 0 336 0 0 0 0 0 0 0 160 2.1 5 5 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +3.06792E7 13 9 77 95778 0 0 334 0 0 0 0 0 0 0 350 1.5 7 7 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +3.06828E7 13 9 77 95778 0 0 334 0 0 0 0 0 0 0 230 1 7 7 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +3.06864E7 13 10 82 95778 0 0 340 0 0 0 0 0 0 0 160 1.5 8 8 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +3.069E7 13 9 77 95778 0 0 309 0 0 0 0 0 0 0 187 1 0 0 6000 2000 9 999999999 23 0 0 88 0.2 0 0 +3.06936E7 11 8 82 95740 0 0 299 0 0 0 0 0 0 0 20 1.5 0 0 6000 2000 9 999999999 21 0 0 88 0.2 0 0 +3.06972E7 13 9 77 95778 259 1319 309 99 132 75 10824 3527 8217 2400 30 1.5 0 0 5000 2000 9 999999999 23 0 0 88 0.2 0 0 +3.07008E7 16 8 59 95834 540 1414 321 312 475 130 35298 29302 14799 5073 163 1 0 0 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +3.07044E7 19 8 49 95888 806 1414 334 548 706 145 64606 46974 17194 6683 264 1 0 0 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +3.0708E7 22 9 43 95942 1038 1414 356 762 838 145 92902 54302 17810 7380 161 1.5 1 1 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +3.07116E7 23 9 41 95959 1220 1414 361 933 815 228 112677 58286 27736 11241 180 3.6 1 1 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +3.07152E7 25 9 36 95994 1340 1414 364 1046 822 266 126830 60130 32430 12948 180 4.6 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +3.07188E7 28 8 28 96046 1390 1414 377 1095 825 283 130000 61346 34608 13719 160 5.1 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +3.07224E7 28 6 25 96046 1366 1414 375 1076 823 279 130000 62070 34055 13507 210 6.2 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +3.0726E7 28 7 26 96046 1270 1414 376 984 818 247 118971 60213 30088 12088 230 6.7 0 0 8000 2000 9 999999999 18 0 0 88 0.2 0 0 +3.07296E7 29 9 29 96063 1109 1414 384 829 858 155 101631 55993 19090 7953 220 7.2 0 0 8000 2000 9 999999999 22 0 0 88 0.2 0 0 +3.07332E7 28 9 30 96046 893 1414 379 628 751 153 74719 50101 18263 7283 210 7.7 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +3.07368E7 27 9 32 96029 638 1414 374 396 564 141 45394 36605 16260 5858 220 7.2 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +3.07404E7 25 10 39 95994 360 1414 372 168 294 93 18611 12432 10344 3260 220 7.2 1 1 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +3.0744E7 23 10 44 95959 79 1414 355 18 0 18 1724 0 1736 596 210 7.2 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +3.07476E7 22 9 43 95942 0 420 356 0 0 0 0 0 0 0 200 7.2 1 1 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +3.07512E7 21 9 46 95924 0 0 356 0 0 0 0 0 0 0 180 6.2 2 2 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +3.07548E7 20 9 49 95906 0 0 351 0 0 0 0 0 0 0 180 4.1 2 2 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +3.07584E7 18 9 56 95870 0 0 345 0 0 0 0 0 0 0 160 4.1 3 3 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +3.0762E7 17 9 59 95852 0 0 343 0 0 0 0 0 0 0 180 3.1 4 4 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +3.07656E7 17 8 55 95852 0 0 339 0 0 0 0 0 0 0 170 2.1 3 3 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +3.07692E7 16 8 59 95834 0 0 337 0 0 0 0 0 0 0 210 1.5 4 4 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +3.07728E7 14 8 67 95797 0 0 312 0 0 0 0 0 0 0 60 1.5 0 0 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +3.07764E7 15 9 67 95815 0 0 336 0 0 0 0 0 0 0 236 1 5 5 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +3.078E7 16 7 55 95834 0 0 333 0 0 0 0 0 0 0 150 2.6 3 3 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +3.07836E7 16 8 59 95834 257 1309 337 95 142 69 10452 3484 7630 2276 150 3.1 4 4 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +3.07872E7 18 6 45 95870 538 1414 338 311 476 130 35197 29709 14719 5040 190 2.6 2 2 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +3.07908E7 21 8 43 95924 804 1414 350 546 704 145 64348 46858 17197 6679 150 0.5 1 1 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +3.07944E7 22 9 43 95942 1036 1414 356 760 838 145 92714 54269 17783 7368 70 1.5 1 1 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +3.0798E7 24 9 38 95977 1219 1414 359 932 815 228 112567 58291 27717 11234 55 3.1 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +3.08016E7 25 10 39 95994 1339 1414 372 1044 822 264 126564 59537 32208 12876 180 3.1 1 1 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +3.08052E7 27 10 34 96029 1390 1414 375 1092 825 280 130000 60198 34199 13589 180 5.7 0 0 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +3.08088E7 27 8 30 96029 1367 1414 372 1073 824 276 130000 61056 33687 13391 220 6.2 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +3.08124E7 28 8 28 96046 1271 1414 377 983 818 246 118939 59715 29956 12047 210 5.7 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +3.0816E7 28 8 28 96046 1111 1414 377 832 861 155 102046 56595 19103 7956 210 7.2 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +3.08196E7 27 7 28 96029 895 1414 371 632 789 131 76140 51176 15903 6418 220 7.7 0 0 8000 2000 9 999999999 18 0 0 88 0.2 0 0 +3.08232E7 26 6 28 96011 640 1414 365 400 576 139 45985 37990 16043 5796 210 8.2 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +3.08268E7 25 5 28 95994 363 1414 359 171 304 93 19013 13684 10359 3268 210 7.7 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +3.08304E7 22 4 31 95942 81 1414 343 19 0 19 1792 0 1804 616 200 6.2 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +3.0834E7 22 4 31 95942 0 432 343 0 0 0 0 0 0 0 190 5.7 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +3.08376E7 20 4 35 95906 0 0 334 0 0 0 0 0 0 0 160 3.6 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +3.08412E7 19 3 34 95888 0 0 329 0 0 0 0 0 0 0 130 3.1 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +3.08448E7 18 3 37 95870 0 0 324 0 0 0 0 0 0 0 150 2.6 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +3.08484E7 15 4 48 95815 0 0 322 0 0 0 0 0 0 0 156 1 2 2 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +3.0852E7 16 4 45 95834 0 0 327 0 0 0 0 0 0 0 270 1 2 2 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +3.08556E7 16 4 45 95834 0 0 327 0 0 0 0 0 0 0 160 2.1 2 2 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +3.08592E7 14 5 55 95797 0 0 322 0 0 0 0 0 0 0 280 1.5 3 3 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +3.08628E7 14 5 55 95797 0 0 322 0 0 0 0 0 0 0 232 0.5 3 3 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +3.08664E7 14 5 55 95797 0 0 309 0 0 0 0 0 0 0 132 1 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +3.087E7 15 5 51 95815 255 1298 327 96 126 73 10528 3478 8068 2350 210 1 3 3 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +3.08736E7 19 4 37 95888 536 1414 330 311 481 128 35183 30212 14571 4989 150 1.5 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +3.08772E7 21 5 35 95924 802 1414 340 547 693 153 64254 47965 18096 6970 140 2.6 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +3.08808E7 23 5 31 95959 1035 1414 349 764 835 152 92976 56362 18545 7648 170 4.1 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +3.08844E7 25 5 28 95994 1218 1414 359 936 815 234 113091 60311 28351 11444 170 3.6 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +3.0888E7 26 4 24 96011 1339 1414 362 1053 822 273 127612 62630 33326 13235 150 5.1 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +3.08916E7 27 4 23 96029 1390 1414 367 1101 825 290 130000 63306 35382 13965 220 5.7 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +3.08952E7 28 5 23 96046 1367 1414 373 1078 824 281 130000 62572 34292 13585 210 5.1 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +3.08988E7 28 7 26 96046 1273 1414 376 986 819 248 119250 60263 30179 12121 210 7.2 0 0 8000 2000 9 999999999 18 0 0 88 0.2 0 0 +3.09024E7 28 6 25 96046 1112 1414 375 836 860 159 102479 57707 19522 8115 220 7.2 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +3.0906E7 27 5 24 96029 897 1414 369 636 786 136 76491 52172 16408 6605 220 7.2 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +3.09096E7 25 5 28 95994 643 1414 359 403 581 138 46341 38526 15983 5785 230 7.7 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +3.09132E7 23 5 31 95959 365 1414 349 173 307 93 19211 13915 10415 3290 210 7.2 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +3.09168E7 21 3 30 95924 84 1414 338 19 0 19 1845 0 1857 633 180 7.2 0 0 8000 2000 9 999999999 12 0 0 88 0.2 0 0 +3.09204E7 20 2 30 95906 0 444 332 0 0 0 0 0 0 0 180 3.6 0 0 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +3.0924E7 18 1 32 95870 0 0 322 0 0 0 0 0 0 0 150 4.1 0 0 8000 2000 9 999999999 10 0 0 88 0.2 0 0 +3.09276E7 18 2 34 95870 0 0 323 0 0 0 0 0 0 0 160 4.1 0 0 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +3.09312E7 17 2 36 95852 0 0 318 0 0 0 0 0 0 0 150 3.6 0 0 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +3.09348E7 16 3 42 95834 0 0 321 0 0 0 0 0 0 0 204 1 1 1 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +3.09384E7 15 3 44 95815 0 0 317 0 0 0 0 0 0 0 260 1 1 1 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +3.0942E7 14 4 51 95797 0 0 321 0 0 0 0 0 0 0 150 2.1 3 3 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +3.09456E7 14 4 51 95797 0 0 308 0 0 0 0 0 0 0 160 2.1 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +3.09492E7 13 5 58 95778 0 0 304 0 0 0 0 0 0 0 222 0.5 0 0 8000 2000 9 999999999 15 0 0 88 0.2 0 0 +3.09528E7 11 4 62 95740 0 0 295 0 0 0 0 0 0 0 118 1 0 0 7000 2000 9 999999999 14 0 0 88 0.2 0 0 +3.09564E7 13 5 58 95778 252 1286 304 95 127 73 10440 3426 7983 2324 30 1.5 0 0 6000 2000 9 999999999 15 0 0 88 0.2 0 0 +3.096E7 17 4 42 95852 534 1414 321 309 478 128 34949 30008 14529 4969 159 1.5 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +3.09636E7 19 3 34 95888 800 1414 329 547 683 160 64041 48476 18783 7187 247 1 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +3.09672E7 21 2 28 95924 1033 1414 336 765 827 161 92852 57606 19562 8026 210 2.1 0 0 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +3.09708E7 23 2 25 95959 1216 1414 346 939 815 237 113394 61543 28777 11584 160 3.1 0 0 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +3.09744E7 24 4 27 95977 1338 1414 353 1052 822 273 127527 62620 33289 13222 180 3.1 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +3.0978E7 26 4 24 96011 1390 1414 362 1101 825 290 130000 63308 35373 13962 180 4.6 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +3.09816E7 28 6 25 96046 1368 1414 375 1077 824 280 130000 62113 34123 13532 210 5.1 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +3.09852E7 27 7 28 96029 1274 1414 371 987 819 248 119376 60282 30216 12135 220 7.2 0 0 8000 2000 9 999999999 18 0 0 88 0.2 0 0 +3.09888E7 27 7 28 96029 1114 1414 371 836 864 155 102657 57201 19114 7959 210 6.7 0 0 8000 2000 9 999999999 18 0 0 88 0.2 0 0 +3.09924E7 26 7 30 96011 899 1414 366 635 750 158 75562 51290 18848 7500 220 6.7 0 0 6000 2000 9 999999999 18 0 0 88 0.2 0 0 +3.0996E7 24 8 36 95977 645 1414 358 403 574 141 46242 37519 16233 5872 220 6.2 0 0 6000 2000 9 999999999 20 0 0 88 0.2 0 0 +3.09996E7 22 8 41 95942 367 1414 363 171 292 95 19017 13076 10614 3347 210 6.7 3 3 6000 2000 9 999999999 21 0 0 88 0.2 0 0 +3.10032E7 20 8 46 95906 86 1414 353 19 0 19 1857 0 1870 641 180 4.1 3 3 6000 2000 9 999999999 21 0 0 88 0.2 0 0 +3.10068E7 18 6 45 95870 0 455 342 0 0 0 0 0 0 0 150 4.1 3 3 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +3.10104E7 16 6 51 95834 0 0 318 0 0 0 0 0 0 0 160 4.6 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +3.1014E7 15 6 55 95815 0 0 314 0 0 0 0 0 0 0 150 3.6 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +3.10176E7 14 7 63 95797 0 0 311 0 0 0 0 0 0 0 160 4.1 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +3.10212E7 13 6 62 95778 0 0 321 0 0 0 0 0 0 0 160 4.6 4 4 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +3.10248E7 13 6 62 95778 0 0 321 0 0 0 0 0 0 0 170 3.6 4 4 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +3.10284E7 12 6 67 95759 0 0 319 0 0 0 0 0 0 0 160 2.6 5 5 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +3.1032E7 12 6 67 95759 0 0 319 0 0 0 0 0 0 0 160 3.1 5 5 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +3.10356E7 12 6 67 95759 0 0 319 0 0 0 0 0 0 0 160 2.6 5 5 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +3.10392E7 11 7 76 95740 0 0 298 0 0 0 0 0 0 0 150 2.6 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +3.10428E7 12 7 71 95759 250 1274 323 83 88 67 9104 2036 7427 2208 170 3.6 6 6 8399 2000 9 999999999 19 0 0 88 0.2 0 0 +3.10464E7 14 7 63 95797 532 1414 329 290 400 139 32573 25636 15723 5267 220 2.1 5 5 8799 2000 9 999999999 19 0 0 88 0.2 0 0 +3.105E7 15 7 59 95815 798 1414 331 526 642 163 61369 44802 19118 7298 129 2.1 4 4 9199 2000 9 999999999 19 0 0 88 0.2 0 0 +3.10536E7 18 7 49 95870 1031 1414 339 755 830 149 91893 54989 18205 7518 130 2.1 2 2 9599 2000 9 999999999 19 0 0 88 0.2 0 0 +3.10572E7 20 7 43 95906 1215 1414 352 919 856 183 112933 58266 22604 9329 240 2.6 3 3 9599 2000 9 999999999 19 0 0 88 0.2 0 0 +3.10608E7 22 8 41 95942 1337 1414 369 973 720 291 117150 54709 35221 13893 190 4.1 5 5 9599 2000 9 999999999 21 0 0 88 0.2 0 0 +3.10644E7 23 7 36 95959 1390 1414 373 1020 734 298 123492 55923 36236 14265 210 5.7 5 5 9599 2000 9 999999999 19 0 0 88 0.2 0 0 +3.1068E7 25 7 32 95994 1368 1414 383 1001 622 399 118216 53153 47449 17677 200 7.2 5 5 9599 2000 9 999999999 19 0 0 88 0.2 0 0 +3.10716E7 25 8 34 95994 1275 1414 407 509 110 410 59241 9742 47998 17570 200 7.7 9 9 9599 3048 9 999999999 20 0 0 88 0.2 0 0 +3.10752E7 24 8 36 95977 1116 1414 379 778 583 318 90397 48586 37171 14141 210 8.2 5 5 9599 3048 9 999999999 20 0 0 88 0.2 0 0 +3.10788E7 22.5 7.5 38 95950 901 1414 350 637 665 212 73978 50157 24778 9488 302 7.9 0 0 9599 3048 9 999999999 20 0 0 88 0.2 0 0 +3.10824E7 21 7 40 95924 647 1414 384 209 67 179 23582 4873 20228 6969 200 7.7 9 9 9599 2438 9 999999999 19 0 0 88 0.2 0 0 +3.1086E7 20 7 43 95906 369 1414 379 91 0 91 8954 0 9022 3245 200 7.7 9 9 9599 2438 9 999999999 19 0 0 88 0.2 0 0 +3.10896E7 18 8 52 95870 88 1414 370 10 0 10 995 0 1002 387 200 5.7 9 9 9599 1829 9 999999999 21 0 0 88 0.2 0 0 +3.10932E7 15 9 67 95815 0 466 356 0 0 0 0 0 0 0 210 7.2 9 9 9599 1829 9 999999999 23 0 0 88 0.2 0 0 +3.10968E7 15 9 67 95815 0 0 356 0 0 0 0 0 0 0 170 4.6 9 9 9599 1524 9 999999999 23 0 0 88 0.2 0 0 +3.11004E7 14 10 77 95797 0 0 352 0 0 0 0 0 0 0 160 5.7 9 9 9599 1524 9 999999999 25 0 0 88 0.2 0 0 +3.1104E7 14 10 77 95797 0 0 352 0 0 0 0 0 0 0 160 4.1 9 9 9599 1219 9 999999999 25 0 0 88 0.2 0 0 +3.11076E7 14 10 77 95797 0 0 352 0 0 0 0 0 0 0 160 4.6 9 9 9599 1219 9 999999999 25 0 0 88 0.2 0 0 +3.11112E7 14 10 77 95797 0 0 352 0 0 0 0 0 0 0 150 2.1 9 9 9599 1219 9 999999999 25 0 0 88 0.2 0 0 +3.11148E7 14 10 77 95797 0 0 352 0 0 0 0 0 0 0 160 1.5 9 9 9599 1219 9 999999999 25 0 0 88 0.2 0 0 +3.11184E7 14 10 77 95797 0 0 352 0 0 0 0 0 0 0 160 2.1 9 9 9599 1219 9 999999999 25 0 0 88 0.2 0 0 +3.1122E7 14 9 72 95797 0 0 351 0 0 0 0 0 0 0 160 3.1 9 9 9599 610 9 999999999 23 0 0 88 0.2 0 0 +3.11256E7 14 9 72 95797 0 0 351 0 0 0 0 0 0 0 190 3.6 9 9 9599 1524 9 999999999 23 0 0 88 0.2 0 0 +3.11292E7 13 9 77 95778 247 1261 346 47 0 47 4636 0 4670 1721 220 5.1 9 9 9599 1524 9 999999999 23 0 0 88 0.2 0 0 +3.11328E7 14 7 63 95797 529 1415 349 156 6 154 17407 386 17247 5609 210 6.2 9 9 9599 1524 9 999999999 19 0 0 88 0.2 0 0 +3.11364E7 14 7 63 95797 796 1415 349 279 41 255 31345 3459 28887 10011 200 5.7 9 9 9599 1524 9 999999999 19 0 0 88 0.2 0 0 +3.114E7 14 9 72 95797 1029 1415 361 237 8 232 27903 563 27406 10819 130 4.1 10 10 9599 1524 0 919999999 23 0 0 88 0.2 0 0 +3.11436E7 13 10 82 95778 1214 1415 347 478 28 453 54637 2650 52220 18327 80 5.7 9 9 9599 1829 0 919999999 25 0 0 88 0.2 0 0 +3.11472E7 16 8 59 95834 1337 1415 360 539 90 454 62715 8130 53236 19084 60 4.1 9 9 9599 1829 0 919999999 21 0 0 88 0.2 0 0 +3.11508E7 17 8 55 95852 1390 1415 365 565 89 477 65906 8156 56057 19958 50 2.1 9 9 9599 3048 0 919999999 21 0 0 88 0.2 0 0 +3.11544E7 19 7 46 95888 1369 1415 374 556 90 468 64778 8248 55005 19623 213 2.1 9 9 9599 3048 0 919999999 19 0 0 88 0.2 0 0 +3.1158E7 21 6 38 95924 1276 1415 383 511 88 432 59277 8025 50434 18169 74 1.5 9 9 9599 3048 0 919999999 17 0 0 88 0.2 0 0 +3.11616E7 21 4 33 95924 1117 1415 359 784 591 317 91268 50239 37100 14109 308 2.6 5 5 9599 4572 0 919999999 14 0 0 88 0.2 0 0 +3.11652E7 21 6 38 95924 903 1415 361 595 622 198 69622 46111 23263 9008 230 4.6 5 5 9599 4572 0 919999999 17 0 0 88 0.2 0 0 +3.11688E7 22 7 38 95942 649 1415 368 379 469 163 43023 32871 18644 6568 210 3.6 5 5 9599 4572 0 919999999 19 0 0 88 0.2 0 0 +3.11724E7 21 7 40 95924 371 1415 357 175 309 93 19456 13881 10432 3321 190 4.6 3 3 9599 4572 0 919999999 19 0 0 88 0.2 0 0 +3.1176E7 19 9 52 95888 90 1415 350 20 0 20 1942 0 1956 670 230 4.6 3 3 9599 4572 9 999999999 23 0 0 88 0.2 0 0 +3.11796E7 18 9 56 95870 0 476 345 0 0 0 0 0 0 0 230 4.1 3 3 9599 4572 9 999999999 23 0 0 88 0.2 0 0 +3.11832E7 17 9 59 95852 0 0 343 0 0 0 0 0 0 0 220 4.1 4 4 9599 4572 9 999999999 23 0 0 88 0.2 0 0 +3.11868E7 17 9 59 95852 0 0 343 0 0 0 0 0 0 0 230 2.1 4 4 9599 4572 9 999999999 23 0 0 88 0.2 0 0 +3.11904E7 17 9 59 95852 0 0 343 0 0 0 0 0 0 0 190 4.1 4 4 9599 4572 9 999999999 23 0 0 88 0.2 0 0 +3.1194E7 15 8 63 95815 0 0 335 0 0 0 0 0 0 0 280 2.6 5 5 9599 4572 9 999999999 21 0 0 88 0.2 0 0 +3.11976E7 12 8 76 95759 0 0 303 0 0 0 0 0 0 0 360 2.6 0 0 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +3.12012E7 12 8 76 95759 0 0 303 0 0 0 0 0 0 0 30 1.5 0 0 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +3.12048E7 12 8 76 95759 0 0 303 0 0 0 0 0 0 0 178 1 0 0 7000 2000 9 999999999 21 0 0 88 0.2 0 0 +3.12084E7 11 7 76 95740 0 0 298 0 0 0 0 0 0 0 350 3.1 0 0 8000 2000 9 999999999 19 0 0 88 0.2 0 0 +3.1212E7 11 8 82 95740 0 0 329 0 0 0 0 0 0 0 20 2.1 8 8 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +3.12156E7 13 8 72 95778 245 1248 329 79 98 62 8709 1911 6861 2072 360 2.6 6 6 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +3.12192E7 16 8 59 95834 527 1415 337 292 422 134 32799 26280 15184 5112 310 2.1 4 4 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +3.12228E7 19 9 52 95888 794 1415 350 531 683 148 62366 45339 17411 6724 20 2.1 3 3 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +3.12264E7 21 8 43 95924 1027 1415 350 753 837 144 91820 54620 17683 7314 67 1.5 1 1 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +3.123E7 22 6.4 36 95852 1212 1415 346 930 815 230 112255 59570 27902 11287 140 2.1 0 0 8000 2000 9 999999999 18 0 0 88 0.2 0 0 +3.12336E7 25 6 30 95994 1336 1415 360 1047 822 269 126909 61690 32835 13072 230 1.5 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +3.12372E7 28 4 22 96046 1389 1415 372 1101 825 289 130000 63324 35364 13958 155 2.1 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +3.12408E7 29 4 20 96063 1369 1415 377 1082 824 283 130000 63068 34558 13673 71 2.6 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +3.12444E7 31 1 15 96096 1277 1415 383 998 819 258 120717 62957 31381 12521 140 4.6 0 0 8000 2000 9 999999999 10 0 0 88 0.2 0 0 +3.1248E7 31 0 14 96096 1118 1415 382 849 846 179 103402 60477 21928 9027 190 4.1 0 0 8000 2000 9 999999999 9 0 0 88 0.2 0 0 +3.12516E7 32 6 20 96113 905 1415 395 642 746 164 76179 51929 19510 7745 190 5.7 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +3.12552E7 30 8 25 96079 651 1415 387 408 580 141 46922 37979 16257 5900 230 7.2 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +3.12588E7 29 8 27 96063 373 1415 382 178 313 95 19817 14156 10639 3377 230 5.7 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +3.12624E7 26 8 32 96011 92 1415 367 21 0 21 2012 0 2026 691 210 5.1 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +3.1266E7 25 8 34 95994 0 485 362 0 0 0 0 0 0 0 150 3.1 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +3.12696E7 23 9 41 95959 0 0 361 0 0 0 0 0 0 0 140 4.1 1 1 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +3.12732E7 21 9 46 95924 0 0 356 0 0 0 0 0 0 0 160 2.6 2 2 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +3.12768E7 20 9 49 95906 0 0 351 0 0 0 0 0 0 0 170 2.1 2 2 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +3.12804E7 19 8 49 95888 0 0 345 0 0 0 0 0 0 0 150 3.1 2 2 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +3.1284E7 18 8 52 95870 0 0 344 0 0 0 0 0 0 0 200 1.5 3 3 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +3.12876E7 17 8 55 95852 0 0 339 0 0 0 0 0 0 0 210 1 3 3 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +3.12912E7 15 8 63 95815 0 0 335 0 0 0 0 0 0 0 186 0.5 5 5 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +3.12948E7 15 8 63 95815 0 0 335 0 0 0 0 0 0 0 20 1.5 5 5 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +3.12984E7 14 8 67 95797 0 0 312 0 0 0 0 0 0 0 204 0.5 0 0 8000 2000 9 999999999 21 0 0 88 0.2 0 0 +3.1302E7 16 9 63 95834 242 1234 322 89 109 70 9663 2444 7661 2222 253 1 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +3.13056E7 21 9 46 95924 524 1415 345 298 458 128 33581 27571 14484 4924 232 0 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +3.13092E7 23 9 41 95959 791 1415 361 534 699 142 62823 45843 16805 6512 140 1.5 1 1 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +3.13128E7 26 9 34 96011 1026 1415 369 751 837 143 91526 54065 17527 7254 182 1.5 0 0 8000 2000 9 999999999 23 0 0 88 0.2 0 0 +3.13164E7 28 8 28 96046 1211 1415 377 926 815 227 111848 58749 27606 11187 170 3.1 0 0 8000 2000 9 999999999 20 0 0 88 0.2 0 0 +3.132E7 29 9 29 96063 1335 1415 384 1042 822 265 126264 60113 32254 12884 170 4.6 0 0 8000 2000 9 999999999 22 0 0 88 0.2 0 0 +3.13236E7 31 7 22 96096 1389 1415 391 1096 825 285 130000 61913 34790 13776 170 5.1 0 0 8000 2000 9 999999999 18 0 0 88 0.2 0 0 +3.13272E7 32 6 20 96113 1370 1415 395 1079 824 280 130000 62166 34209 13562 160 6.2 0 0 8000 2000 9 999999999 17 0 0 88 0.2 0 0 +3.13308E7 31 12 31 96096 1278 1415 398 983 819 242 118920 57423 29466 11896 210 6.2 0 0 8000 2000 9 999999999 30 0 0 88 0.2 0 0 +3.13344E7 31 13 33 96096 1120 1415 399 834 856 155 102131 53614 19109 7983 220 8.2 0 0 8000 2000 9 999999999 33 0 0 88 0.2 0 0 +3.1338E7 29 13 37 96063 907 1415 389 636 792 128 76701 48112 15496 6302 220 8.2 0 0 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +3.13416E7 28 13 40 96046 653 1415 391 407 562 147 46455 35670 16858 6098 210 7.7 1 1 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +3.13452E7 26 12 42 96011 375 1415 379 178 295 100 19727 13094 11107 3495 210 5.7 1 1 8000 2000 9 999999999 30 0 0 88 0.2 0 0 +3.13488E7 23 12 50 95959 93 1415 369 21 0 21 2027 0 2041 699 160 5.1 2 2 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +3.13524E7 21 12 56 95924 0 494 363 0 0 0 0 0 0 0 150 5.7 3 3 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +3.1356E7 19 12 64 95888 0 0 359 0 0 0 0 0 0 0 160 5.7 5 5 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +3.13596E7 18 12 68 95870 0 0 354 0 0 0 0 0 0 0 170 4.1 5 5 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +3.13632E7 17 11 68 95852 0 0 348 0 0 0 0 0 0 0 170 4.1 5 5 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +3.13668E7 16 12 77 95834 0 0 351 0 0 0 0 0 0 0 160 2.6 7 7 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +3.13704E7 15 11 77 95815 0 0 345 0 0 0 0 0 0 0 170 3.6 7 7 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +3.1374E7 15 12 82 95815 0 0 352 0 0 0 0 0 0 0 150 3.1 8 8 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +3.13776E7 14 11 82 95797 0 0 346 0 0 0 0 0 0 0 170 2.1 8 8 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +3.13812E7 14 11 82 95797 0 0 329 0 0 0 0 0 0 0 160 2.6 3 3 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +3.13848E7 13 12 94 95778 0 0 325 0 0 0 0 0 0 0 180 3.6 3 3 4000 2000 9 999999999 31 0 0 88 0.2 0 0 +3.13884E7 13 12 94 95778 239 1220 325 85 122 65 9349 2164 7118 2109 150 2.6 3 3 5000 2000 9 999999999 31 0 0 88 0.2 0 0 +3.1392E7 15 12 82 95815 521 1415 320 294 445 130 33042 26137 14635 4958 160 3.6 0 0 5000 2000 9 999999999 31 0 0 88 0.2 0 0 +3.13956E7 17 12 72 95852 789 1415 352 462 457 207 52671 33627 23715 8663 160 4.1 6 6 5000 2000 9 999999999 31 0 0 88 0.2 0 0 +3.13992E7 20 13 64 95906 1024 1415 365 703 671 217 82806 47462 25680 10242 160 4.1 5 5 5000 2000 9 999999999 34 0 0 88 0.2 0 0 +3.14028E7 21 13 60 95924 1210 1415 367 887 790 211 107426 53176 25635 10494 160 5.7 4 4 5000 2000 9 999999999 34 0 0 88 0.2 0 0 +3.14064E7 22 13 57 95942 1334 1415 372 1012 863 197 125125 55606 24472 10060 170 7.2 4 4 5000 2000 9 999999999 34 0 0 88 0.2 0 0 +3.141E7 22 13 57 95942 1389 1415 372 1062 862 215 130000 56340 26720 10908 170 8.8 4 4 5000 2000 9 999999999 34 0 0 88 0.2 0 0 +3.14136E7 23 13 53 95959 1370 1415 374 1056 891 193 130000 56679 24077 9904 170 8.2 3 3 5000 2000 9 999999999 34 0 0 88 0.2 0 0 +3.14172E7 26 14 48 96011 1279 1415 387 977 895 168 121368 55077 20930 8700 170 8.2 2 2 5000 2000 9 999999999 37 0 0 88 0.2 0 0 +3.14208E7 26 14 48 96011 1121 1415 387 831 850 156 101654 52661 19200 8024 190 5.7 2 2 5000 2000 9 999999999 37 0 0 88 0.2 0 0 +3.14244E7 26 14 48 96011 908 1415 387 634 784 130 76355 47280 15729 6397 170 7.2 2 2 5000 2000 9 999999999 37 0 0 88 0.2 0 0 +3.1428E7 25 14 50 95994 654 1415 382 405 549 151 46177 34827 17266 6226 160 7.2 2 2 5000 2000 9 999999999 37 0 0 88 0.2 0 0 +3.14316E7 24 13 50 95977 377 1415 376 178 290 101 19716 12799 11204 3526 190 6.2 2 2 5000 2000 9 999999999 34 0 0 88 0.2 0 0 +3.14352E7 21 13 60 95924 95 1415 367 21 0 21 2001 0 2015 696 170 5.7 4 4 5000 2000 9 999999999 34 0 0 88 0.2 0 0 +3.14388E7 19 13 68 95888 0 502 360 0 0 0 0 0 0 0 160 4.6 5 5 5000 2000 9 999999999 34 0 0 88 0.2 0 0 +3.14424E7 18 12 68 95870 0 0 354 0 0 0 0 0 0 0 150 4.1 5 5 5000 2000 9 999999999 31 0 0 88 0.2 0 0 +3.1446E7 18 12 68 95870 0 0 354 0 0 0 0 0 0 0 160 1.5 5 5 5000 2000 9 999999999 31 0 0 88 0.2 0 0 +3.14496E7 17 12 72 95852 0 0 352 0 0 0 0 0 0 0 170 2.6 6 6 5000 2000 9 999999999 31 0 0 88 0.2 0 0 +3.14532E7 17 12 72 95852 0 0 352 0 0 0 0 0 0 0 180 2.6 6 6 5000 2000 9 999999999 31 0 0 88 0.2 0 0 +3.14568E7 15 12 82 95815 0 0 352 0 0 0 0 0 0 0 160 3.6 8 8 5000 2000 9 999999999 31 0 0 88 0.2 0 0 +3.14604E7 15 12 82 95815 0 0 352 0 0 0 0 0 0 0 160 4.1 8 8 5000 2000 9 999999999 31 0 0 88 0.2 0 0 +3.1464E7 14 12 88 95797 0 0 355 0 0 0 0 0 0 0 160 4.1 9 9 5000 2000 9 999999999 31 0 0 88 0.2 0 0 +3.14676E7 14 12 88 95797 0 0 355 0 0 0 0 0 0 0 180 2.1 9 9 5000 2000 9 999999999 31 0 0 88 0.2 0 0 +3.14712E7 13 11 88 95778 0 0 311 0 0 0 0 0 0 0 160 3.1 0 0 8000 2000 9 999999999 28 0 0 88 0.2 0 0 +3.14748E7 14 12 88 95797 236 1205 316 85 135 62 9302 2179 6839 2041 160 3.1 0 0 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +3.14784E7 15.6 12 79 95935 518 1415 323 292 443 129 32773 25907 14573 4930 170 2.6 0 0 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +3.1482E7 18 13 73 95870 786 1415 335 526 703 134 61979 43481 15901 6200 160 2.6 0 0 7000 2000 9 999999999 34 0 0 88 0.2 0 0 +3.14856E7 20 13 64 95906 1022 1415 344 742 834 139 90412 51358 17026 7067 55 1.5 0 0 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +3.14892E7 23 13 53 95959 1208 1415 359 916 893 153 113618 54942 19040 7961 210 3.1 0 0 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +3.14928E7 25 14 50 95994 1333 1415 382 1026 897 179 127625 55698 22434 9279 150 5.1 2 2 8000 2000 9 999999999 37 0 0 88 0.2 0 0 +3.14964E7 27 14 45 96029 1389 1415 392 1082 907 191 130000 56703 23949 9856 150 6.2 2 2 8000 2000 9 999999999 37 0 0 88 0.2 0 0 +3.15E7 28 13.3 40 95776 1370 1415 384 1068 824 268 129515 57770 32748 13098 180 7.2 0 0 8000 2000 9 999999999 35 0 0 88 0.2 0 0 +3.15036E7 27 14 45 96029 1279 1415 392 980 899 166 121817 55199 20733 8622 220 6.7 2 2 8000 2000 9 999999999 37 0 0 88 0.2 0 0 +3.15072E7 27 13 42 96029 1122 1415 386 836 856 156 102351 53637 19208 8024 220 6.2 1 1 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +3.15108E7 27 13 42 96029 910 1415 386 639 792 129 77014 48194 15580 6339 220 7.2 1 1 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +3.15144E7 26 13 45 96011 656 1415 386 409 563 148 46746 35807 16956 6139 210 6.2 2 2 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +3.1518E7 24 13 50 95977 379 1415 376 180 292 101 19855 12947 11248 3543 210 5.7 2 2 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +3.15216E7 21 12.7 59 95768 96 1415 349 22 0 22 2104 0 2119 725 220 5.1 0 0 8000 2000 9 999999999 33 0 0 88 0.2 0 0 +3.15252E7 20 13 64 95906 0 510 365 0 0 0 0 0 0 0 150 3.6 5 5 8000 2000 9 999999999 34 0 0 88 0.2 0 0 +3.15288E7 18 12 68 95870 0 0 354 0 0 0 0 0 0 0 160 4.6 5 5 8000 2000 9 999999999 31 0 0 88 0.2 0 0 +3.15324E7 17 12 72 95852 0 0 352 0 0 0 0 0 0 0 150 4.1 6 6 8000 2000 9 999999999 31 0 0 88 0.2 0 0 diff --git a/AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD400.epw b/AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD400.epw new file mode 100644 index 0000000000..c314d4124d --- /dev/null +++ b/AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD400.epw @@ -0,0 +1,8768 @@ +LOCATION,Barrow-Post-Rogers Meml AP,AK,USA,TMY3,700260,71.28600,-156.7670,-9.0,10.0 +DESIGN CONDITIONS,1,2017 ASHRAE Handbook -- Fundamentals - Chapter 14 Climatic Design Information,,Heating,2,-39.2,-36.8,-38.9,0.1,-34.9,-37.2,0.1,-33.6,15.7,-18.5,14.8,-19.6,3.3,100,Cooling,7,6.2,14.5,11.5,12.1,10,10.1,8.4,11.8,14,10.2,12.1,8.6,10.1,5,180,10.2,7.7,13,8.7,7,11.4,7.4,6.4,9.6,33.5,14.1,29.6,12.1,26.1,10,18.4,Extremes,14.1,12.3,11.1,-42,19.2,2.7,2.9,-44,21.3,-45.5,23,-47.1,24.6,-49,26.7,-36.9 +TYPICAL/EXTREME PERIODS,6,Summer - Week Nearest Max Temperature For Period,Extreme,8/10,8/16,Summer - Week Nearest Average Temperature For Period,Typical,6/22,6/28,Winter - Week Nearest Min Temperature For Period,Extreme,2/17,2/23,Winter - Week Nearest Average Temperature For Period,Typical,12/ 1,12/ 7,Autumn - Week Nearest Average Temperature For Period,Typical,10/20,10/26,Spring - Week Nearest Average Temperature For Period,Typical,4/19,4/25 +GROUND TEMPERATURES,3,.5,,,,-24.31,-25.53,-23.36,-19.97,-11.11,-4.27,0.34,1.74,-0.65,-5.96,-13.05,-19.64,2,,,,-19.81,-21.99,-21.54,-19.75,-13.82,-8.46,-4.17,-1.87,-2.36,-5.37,-10.26,-15.44,4,,,,-16.10,-18.33,-18.81,-18.14,-14.78,-11.17,-7.86,-5.56,-5.02,-6.32,-9.19,-12.70 +HOLIDAYS/DAYLIGHT SAVINGS,No,0,0,0 +COMMENTS 1,"NREL TMY Data Set (2008) updated 2015 to include better precipitation;Period of Record 1973-2005 (Generally)" +COMMENTS 2,"Downloaded from Climate.Onebuilding.Org -- Ground temps represent undisturbed earth temperatures - calculated from this weather data." +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,-19.4,-21.7,83,102100,0,0,196,0,0,0,0,0,0,0,80,13.4,10,10,1.2,370,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-19.4,-21.7,83,102100,0,0,196,0,0,0,0,0,0,0,80,14.4,10,10,1.2,610,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-20.0,-22.2,83,102100,0,0,194,0,0,0,0,0,0,0,80,15.4,10,10,1.2,1520,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-20.0,-22.2,83,102100,0,0,194,0,0,0,0,0,0,0,80,14.9,10,10,1.2,1220,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-20.0,-22.2,83,102000,0,0,194,0,0,0,0,0,0,0,80,15.9,10,10,0.8,1220,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,-20.0,-22.2,83,102000,0,0,194,0,0,0,0,0,0,0,90,16.5,10,10,0.8,640,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,-19.4,-21.7,83,101900,0,0,196,0,0,0,0,0,0,0,90,15.9,10,10,0.8,640,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,-18.9,-21.1,83,101800,0,0,198,0,0,0,0,0,0,0,90,18.0,10,10,0.8,1220,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,-17.8,-20.6,79,101800,0,0,202,0,0,0,0,0,0,0,90,19.0,10,10,0.8,60,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,-17.8,-20.0,83,101800,0,0,203,0,0,0,0,0,0,0,100,18.0,10,10,0.4,30,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,-17.2,-19.4,83,101800,0,0,205,0,0,0,0,0,0,0,100,17.5,10,10,0.4,2440,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,-16.7,-16.7,100,101600,0,0,209,0,0,0,0,0,0,0,90,17.5,10,10,0.4,550,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,-16.7,-18.3,87,101600,0,0,208,0,0,0,0,0,0,0,100,16.5,10,10,0.4,550,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,-16.1,-18.3,83,101600,0,0,210,0,0,0,0,0,0,0,100,15.9,10,10,0.4,60,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,-15.0,-17.2,83,101500,0,0,214,0,0,0,0,0,0,0,110,18.5,10,10,0.0,0,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,-16.1,-18.3,83,101500,0,0,210,0,0,0,0,0,0,0,110,18.0,10,10,0.0,0,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,-16.7,-18.3,87,101500,0,0,208,0,0,0,0,0,0,0,100,19.6,10,10,0.0,0,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,-16.7,-18.9,83,101400,0,0,207,0,0,0,0,0,0,0,110,17.5,10,10,0.0,0,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,-16.7,-18.3,87,101400,0,0,208,0,0,0,0,0,0,0,110,18.0,10,10,0.0,0,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,-16.1,-18.9,79,101300,0,0,209,0,0,0,0,0,0,0,110,18.5,10,10,0.0,0,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,-15.6,-17.8,83,101300,0,0,212,0,0,0,0,0,0,0,110,14.9,10,10,0.2,0,9,999999999,8,0.0000,0,88,0.000,0.0,1.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,-15.6,-17.2,87,101300,0,0,212,0,0,0,0,0,0,0,110,14.4,10,10,0.2,0,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,-15.0,-16.7,87,101300,0,0,215,0,0,0,0,0,0,0,120,12.9,10,10,0.8,30,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,-14.4,-16.1,87,101300,0,0,217,0,0,0,0,0,0,0,110,10.3,10,10,1.6,240,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,-14.4,-16.1,87,101400,0,0,217,0,0,0,0,0,0,0,120,10.3,10,10,1.2,180,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,-13.9,-15.6,87,101400,0,0,219,0,0,0,0,0,0,0,110,10.3,10,10,1.6,180,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,-13.3,-15.0,87,101400,0,0,222,0,0,0,0,0,0,0,110,7.2,10,10,4.8,640,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,-13.9,-15.6,87,101400,0,0,209,0,0,0,0,0,0,0,110,9.3,10,8,4.8,1520,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,-13.3,-15.0,87,101300,0,0,222,0,0,0,0,0,0,0,110,9.3,10,10,11.3,980,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,-12.8,-14.4,88,101300,0,0,224,0,0,0,0,0,0,0,120,8.2,10,10,11.3,2440,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,-12.8,-13.9,92,101300,0,0,225,0,0,0,0,0,0,0,120,9.3,10,10,11.3,790,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,-10.6,-12.2,88,101200,0,0,234,0,0,0,0,0,0,0,120,7.7,10,10,6.4,790,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,-9.4,-10.0,96,101100,0,0,240,0,0,0,0,0,0,0,120,7.2,10,10,3.2,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.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.0,-6.1,92,101100,0,0,260,0,0,0,0,0,0,0,130,7.7,10,10,3.2,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,-7.8,92,101100,0,0,252,0,0,0,0,0,0,0,140,10.3,10,10,4.8,700,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,-3.9,-4.4,96,101100,0,0,250,0,0,0,0,0,0,0,170,8.8,10,7,11.3,2130,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,-2.8,-3.9,92,101200,0,0,271,0,0,0,0,0,0,0,200,7.2,10,10,11.3,2740,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,-1.7,-2.2,96,101300,0,0,277,0,0,0,0,0,0,0,240,4.6,10,10,11.3,2740,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,-2.8,-2.8,100,101400,0,0,272,0,0,0,0,0,0,0,240,4.6,10,10,11.3,2740,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,-7.8,-8.3,96,101500,0,0,227,0,0,0,0,0,0,0,170,6.2,5,5,3.2,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,-5.6,-6.1,96,101500,0,0,258,0,0,0,0,0,0,0,190,6.7,10,10,4.8,2130,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,-4.4,-5.0,96,101600,0,0,264,0,0,0,0,0,0,0,200,5.2,10,10,4.8,2130,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,-5.6,-6.1,96,101600,0,0,237,0,0,0,0,0,0,0,180,4.6,5,5,4.8,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,-7.8,-8.9,92,101700,0,0,218,0,0,0,0,0,0,0,170,6.2,3,1,4.8,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,-7.2,-8.3,92,101700,0,0,224,0,0,0,0,0,0,0,180,5.2,5,2,4.8,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,-7.8,-9.4,88,101600,0,0,221,0,0,0,0,0,0,0,180,5.7,5,2,4.8,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,-8.9,-10.0,92,101600,0,0,220,0,0,0,0,0,0,0,180,6.2,8,4,4.8,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,-8.3,-10.0,88,101600,0,0,221,0,0,0,0,0,0,0,180,6.2,7,3,4.8,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,-10.0,-11.1,92,101600,0,0,205,0,0,0,0,0,0,0,150,5.2,0,0,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,-8.9,-10.0,92,101600,0,0,222,0,0,0,0,0,0,0,180,6.2,6,5,11.3,1520,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,-9.4,-10.6,92,101600,0,0,214,0,0,0,0,0,0,0,170,5.2,10,2,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,-7.8,-9.4,88,101500,0,0,247,0,0,0,0,0,0,0,150,4.1,10,10,11.3,1520,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,-4.4,-5.6,92,101500,0,0,256,0,0,0,0,0,0,0,160,6.2,10,9,11.3,1680,9,999999999,7,0.0000,0,88,0.000,0.0,1.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,-5.0,-6.1,92,101500,0,0,260,0,0,0,0,0,0,0,140,6.2,10,10,11.3,2440,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,-3.9,-5.0,92,101400,0,0,266,0,0,0,0,0,0,0,160,6.2,10,10,11.3,2440,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,-3.9,-5.0,92,101400,0,0,266,0,0,0,0,0,0,0,160,7.2,10,10,11.3,2440,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,-3.9,-5.0,92,101400,0,0,266,0,0,0,0,0,0,0,160,7.2,10,10,11.3,2440,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,-3.9,-5.0,92,101400,0,0,266,0,0,0,0,0,0,0,160,6.2,10,10,11.3,2440,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,-5.0,-6.1,92,101400,0,0,237,0,0,0,0,0,0,0,170,7.2,10,4,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,-6.1,-7.8,88,101400,0,0,232,0,0,0,0,0,0,0,180,6.7,10,4,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,-6.7,-7.8,92,101500,0,0,226,0,0,0,0,0,0,0,210,5.7,10,2,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-7.2,-8.9,88,101500,0,0,223,0,0,0,0,0,0,0,220,4.6,10,2,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-8.9,-10.0,92,101600,0,0,217,0,0,0,0,0,0,0,180,5.2,10,2,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-8.9,-9.4,96,101600,0,0,221,0,0,0,0,0,0,0,180,5.2,8,4,3.2,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-7.8,-8.9,92,101600,0,0,225,0,0,0,0,0,0,0,230,2.1,8,4,6.4,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-9.4,-10.0,96,101600,0,0,229,0,0,0,0,0,0,0,190,2.6,10,8,6.4,6100,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-8.9,-10.0,92,101600,0,0,222,0,0,0,0,0,0,0,180,3.1,10,5,6.4,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-8.9,-10.6,88,101600,0,0,241,0,0,0,0,0,0,0,180,3.1,10,10,6.4,3050,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-8.9,-10.6,88,101700,0,0,241,0,0,0,0,0,0,0,150,4.1,10,10,11.3,3050,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-10.0,-11.7,88,101700,0,0,225,0,0,0,0,0,0,0,140,4.1,8,8,11.3,3050,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-10.6,-12.8,84,101700,0,0,222,0,0,0,0,0,0,0,140,2.6,8,8,0.8,3050,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-8.9,-10.0,92,101800,0,0,217,0,0,0,0,0,0,0,60,2.1,3,2,1.6,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-13.9,-16.1,84,101800,0,0,190,0,0,0,0,0,0,0,80,2.6,0,0,1.6,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-12.8,-15.0,84,101900,0,0,194,0,0,0,0,0,0,0,60,3.1,0,0,1.6,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-15.0,-16.7,87,101900,0,0,186,0,0,0,0,0,0,0,110,3.6,0,0,0.8,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-16.1,-17.8,87,101900,0,0,182,0,0,0,0,0,0,0,140,2.1,0,0,1.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-17.8,-19.4,87,101900,0,0,176,0,0,0,0,0,0,0,140,2.6,0,0,1.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-16.7,-18.3,87,102000,0,0,180,0,0,0,0,0,0,0,190,2.6,0,0,1.6,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-15.6,-17.8,83,102000,0,0,183,0,0,0,0,0,0,0,330,1.5,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-16.7,-18.9,83,102000,0,0,185,0,0,0,0,0,0,0,60,1.5,2,2,0.8,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-18.9,-21.1,83,102000,0,0,181,0,0,0,0,0,0,0,100,2.1,8,4,1.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-19.4,-21.1,87,102100,0,0,176,0,0,0,0,0,0,0,80,2.1,8,2,1.2,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-17.8,-19.4,87,102100,0,0,182,0,0,0,0,0,0,0,80,2.6,6,2,6.4,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-18.3,-20.6,83,102100,0,0,180,0,0,0,0,0,0,0,90,3.1,10,2,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-18.3,-20.6,83,102100,0,0,174,0,0,0,0,0,0,0,120,4.6,10,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-18.3,-20.6,83,102100,0,0,183,0,0,0,0,0,0,0,120,3.1,10,4,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-17.2,-20.0,79,102100,0,0,188,0,0,0,0,0,0,0,110,3.6,10,5,8.0,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-15.6,-17.8,83,102100,0,0,190,0,0,0,0,0,0,0,120,4.1,10,2,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-16.1,-18.3,83,102100,0,0,191,0,0,0,0,0,0,0,110,3.6,10,4,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-16.1,-18.3,83,102100,0,0,188,0,0,0,0,0,0,0,110,3.6,6,2,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-16.7,-18.3,87,102100,0,0,186,0,0,0,0,0,0,0,100,4.1,6,2,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-15.6,-18.3,80,102100,0,0,189,0,0,0,0,0,0,0,110,4.1,7,2,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-16.7,-18.9,83,102100,0,0,180,0,0,0,0,0,0,0,100,3.6,3,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-15.6,-17.8,83,102000,0,0,183,0,0,0,0,0,0,0,110,5.2,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-14.4,-16.1,87,102000,0,0,188,0,0,0,0,0,0,0,110,5.2,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-15.0,-17.2,83,102000,0,0,186,0,0,0,0,0,0,0,110,4.6,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-15.0,-16.7,87,102100,0,0,186,0,0,0,0,0,0,0,100,5.2,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-13.9,-15.6,87,102000,0,0,190,0,0,0,0,0,0,0,110,5.7,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-11.7,-13.3,88,102000,0,0,198,0,0,0,0,0,0,0,110,6.2,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-13.3,-15.0,87,102000,0,0,192,0,0,0,0,0,0,0,120,5.2,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-13.3,-15.0,87,101900,0,0,199,0,0,0,0,0,0,0,110,5.2,10,2,4.8,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-14.4,-16.1,87,101900,0,0,188,0,0,0,0,0,0,0,90,5.2,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-15.0,-16.7,87,101900,0,0,190,0,0,0,0,0,0,0,110,5.2,3,1,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-14.4,-16.7,83,101900,0,0,194,0,0,0,0,0,0,0,110,5.2,6,2,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-15.0,-17.2,83,101900,0,0,192,0,0,0,0,0,0,0,100,5.2,7,2,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-14.4,-16.1,87,101900,0,0,194,0,0,0,0,0,0,0,100,5.2,6,2,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-15.0,-17.2,83,101900,0,0,192,0,0,0,0,0,0,0,110,5.2,6,2,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-15.6,-17.8,83,101900,0,0,190,0,0,0,0,0,0,0,110,4.6,8,2,9.7,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-17.2,-19.4,83,102000,0,0,200,0,0,0,0,0,0,0,120,3.1,10,9,9.7,6100,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-16.1,-18.3,83,101900,0,0,210,0,0,0,0,0,0,0,110,4.6,10,10,8.0,180,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-16.7,-18.3,87,101900,0,0,183,0,0,0,0,0,0,0,110,4.6,3,1,9.7,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-17.2,-19.4,83,101800,0,0,178,0,0,0,0,0,0,0,110,4.6,1,0,9.7,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-17.8,-20.0,83,101800,0,0,183,0,0,0,0,0,0,0,110,3.1,7,3,9.7,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-16.1,-18.3,83,101800,0,0,210,0,0,0,0,0,0,0,110,3.1,10,10,1.6,120,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-17.2,-19.4,83,101800,0,0,185,0,0,0,0,0,0,0,90,3.1,8,3,9.7,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-17.8,-20.6,79,101700,0,0,181,0,0,0,0,0,0,0,90,4.1,5,2,9.7,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-18.3,-20.6,83,101700,0,0,174,0,0,0,0,0,0,0,90,2.6,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-19.4,-21.7,83,101700,0,0,170,0,0,0,0,0,0,0,80,3.1,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-16.7,-18.3,87,101600,0,0,198,0,0,0,0,0,0,0,100,4.1,10,8,0.6,90,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-15.6,-17.2,87,101700,0,0,206,0,0,0,0,0,0,0,120,2.6,10,9,0.4,60,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-15.6,-17.2,87,101700,0,0,212,0,0,0,0,0,0,0,90,3.1,10,10,0.4,60,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-15.0,-16.7,87,101600,0,0,215,0,0,0,0,0,0,0,90,3.1,10,10,0.4,60,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-15.0,-16.7,87,101600,0,0,215,0,0,0,0,0,0,0,100,2.6,10,10,0.4,60,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-14.4,-16.1,87,101500,0,0,217,0,0,0,0,0,0,0,100,2.6,10,10,0.4,60,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-15.0,-16.7,87,101500,0,0,215,0,0,0,0,0,0,0,110,2.6,10,10,0.4,60,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-16.1,-17.8,87,101500,0,0,204,0,0,0,0,0,0,0,120,2.6,10,9,0.4,90,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-16.1,-17.8,87,101400,0,0,204,0,0,0,0,0,0,0,120,2.1,10,9,0.4,90,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-15.6,-17.2,87,101400,0,0,206,0,0,0,0,0,0,0,120,2.6,10,9,0.4,90,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-16.1,-17.8,87,101300,0,0,210,0,0,0,0,0,0,0,80,2.6,10,10,0.2,90,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-17.2,-19.4,83,101300,0,0,205,0,0,0,0,0,0,0,70,2.6,10,10,0.8,90,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-18.9,-21.1,83,101300,0,0,178,0,0,0,0,0,0,0,70,2.6,2,2,1.6,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-18.3,-20.6,83,101300,0,0,174,0,0,0,0,0,0,0,70,2.6,4,0,6.4,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,-18.9,-21.1,83,101300,0,0,172,0,0,0,0,0,0,0,70,3.1,4,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,-19.4,-21.7,83,101300,0,0,173,0,0,0,0,0,0,0,180,3.1,2,1,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,-18.3,-20.6,83,101200,0,0,201,0,0,0,0,0,0,0,250,2.1,10,10,0.2,60,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,-18.9,-21.1,83,101200,0,0,189,0,0,0,0,0,0,0,70,2.1,8,8,0.8,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,-19.4,-21.7,83,101200,0,0,191,0,0,0,0,0,0,0,160,2.6,9,9,0.8,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,-19.4,-21.7,83,101100,0,0,187,0,0,0,0,0,0,0,160,2.6,8,8,0.8,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,-20.6,-22.8,83,101100,0,0,173,0,0,0,0,0,0,0,230,1.5,3,3,1.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,-21.1,-24.4,75,101100,0,0,171,0,0,0,0,0,0,0,230,2.1,3,3,0.6,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,-21.1,-23.9,79,101100,0,0,170,0,0,0,0,0,0,0,240,1.5,2,2,0.6,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,-20.6,-22.8,83,101100,0,0,173,0,0,0,0,0,0,0,140,2.1,3,3,0.6,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-20.0,-22.8,79,101100,0,0,171,0,0,0,0,0,0,0,250,1.5,6,1,1.2,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-21.1,-23.9,79,101100,0,0,164,0,0,0,0,0,0,0,270,1.5,6,0,4.8,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-20.0,-22.8,79,101100,0,0,168,0,0,0,0,0,0,0,0,0.0,0,0,4.8,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-19.4,-22.2,79,101200,0,0,170,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-21.1,-23.9,79,101200,0,0,164,0,0,0,0,0,0,0,0,0.0,0,0,4.8,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-20.0,-22.8,79,101100,0,0,168,0,0,0,0,0,0,0,0,0.0,0,0,4.8,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-19.4,-22.2,79,101100,0,0,170,0,0,0,0,0,0,0,60,2.1,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-22.2,-25.0,78,101200,0,0,164,0,0,0,0,0,0,0,100,1.5,4,1,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-21.7,-23.3,87,101200,0,0,171,0,0,0,0,0,0,0,100,1.5,6,4,11.3,3050,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-20.0,-22.2,83,101100,0,0,180,0,0,0,0,0,0,0,60,2.1,10,6,11.3,3050,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-19.4,-22.2,79,101100,0,0,181,0,0,0,0,0,0,0,60,2.1,10,6,11.3,6100,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,-18.9,-21.1,83,101200,0,0,184,0,0,0,0,0,0,0,70,2.1,10,6,11.3,6100,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,-17.2,-19.4,83,101200,0,0,192,0,0,0,0,0,0,0,60,2.6,10,7,11.3,6100,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,-17.8,-20.0,83,101300,0,0,186,0,0,0,0,0,0,0,90,2.1,10,5,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,-18.3,-21.1,79,101300,0,0,182,0,0,0,0,0,0,0,60,2.1,10,4,11.3,3050,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,-18.9,-21.1,83,101300,0,0,175,0,0,0,0,0,0,0,60,2.1,10,1,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,-19.4,-22.2,79,101300,0,0,173,0,0,0,0,0,0,0,60,2.1,8,1,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,-20.6,-23.3,79,101300,0,0,169,0,0,0,0,0,0,0,60,2.6,7,1,8.0,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,-21.1,-23.9,79,101300,0,0,167,0,0,0,0,0,0,0,50,1.5,4,1,8.0,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,-20.0,-22.2,83,101300,0,0,174,0,0,0,0,0,0,0,60,1.5,5,2,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,-18.9,-21.1,83,101400,0,0,178,0,0,0,0,0,0,0,60,2.1,5,2,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,-18.9,-21.7,79,101400,0,0,171,0,0,0,0,0,0,0,60,1.5,0,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,-19.4,-21.7,83,101400,0,0,170,0,0,0,0,0,0,0,70,1.5,0,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,-18.3,-20.6,83,101400,0,0,181,0,0,0,0,0,0,0,60,1.5,6,3,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,-17.8,-20.0,83,101500,0,0,193,0,0,0,0,0,0,0,60,1.5,8,8,11.3,6100,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,-17.2,-19.4,83,101500,0,0,200,0,0,0,0,0,0,0,60,1.5,9,9,11.3,6100,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,-17.2,-18.9,87,101600,0,0,200,0,0,0,0,0,0,0,70,1.5,10,9,11.3,6100,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,-17.2,-19.4,83,101600,0,0,190,0,0,0,0,0,0,0,60,2.1,10,6,11.3,6100,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,-16.7,-18.9,83,101500,0,0,192,0,0,0,0,0,0,0,60,2.1,10,6,11.3,6100,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,-17.2,-18.9,87,101600,0,0,187,0,0,0,0,0,0,0,60,2.1,6,4,11.3,6100,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,-16.7,-18.9,83,101600,0,0,197,0,0,0,0,0,0,0,70,2.1,10,8,11.3,6100,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,-17.8,-20.0,83,101600,0,0,182,0,0,0,0,0,0,0,60,2.1,5,2,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,-17.8,-20.0,83,101600,0,0,176,0,0,0,0,0,0,0,60,2.1,0,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,-18.3,-20.6,83,101600,0,0,174,0,0,0,0,0,0,0,60,2.1,0,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,-20.0,-22.2,83,101600,0,0,168,0,0,0,0,0,0,0,60,2.1,0,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.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,-18.3,-20.6,83,101700,0,0,174,0,0,0,0,0,0,0,60,2.1,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-19.4,-21.7,83,101700,0,0,170,0,0,0,0,0,0,0,60,2.1,1,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-20.6,-23.3,79,101700,0,0,166,0,0,0,0,0,0,0,60,2.1,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-21.1,-23.9,79,101700,0,0,167,0,0,0,0,0,0,0,60,2.1,1,1,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-21.1,-23.3,82,101700,0,0,170,0,0,0,0,0,0,0,70,1.5,5,2,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-20.0,-22.8,79,101700,0,0,175,0,0,0,0,0,0,0,60,1.5,8,3,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-19.4,-21.7,83,101700,0,0,184,0,0,0,0,0,0,0,60,1.5,10,7,11.3,150,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-20.0,-22.2,83,101700,0,0,185,0,0,0,0,0,0,0,60,1.5,10,8,11.3,150,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-19.4,-21.7,83,101700,0,0,184,0,0,0,0,0,0,0,60,1.5,9,7,11.3,90,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-20.0,-22.8,79,101700,0,0,179,0,0,0,0,0,0,0,60,1.5,6,6,11.3,90,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-20.6,-23.9,75,101700,0,0,165,0,0,0,0,0,0,0,60,2.1,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-21.1,-23.9,79,101700,0,0,164,0,0,0,0,0,0,0,50,1.5,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-21.1,-23.3,82,101700,0,0,164,0,0,0,0,0,0,0,60,1.5,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-21.1,-23.9,79,101600,0,0,164,0,0,0,0,0,0,0,50,2.1,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-20.0,-22.8,79,101600,0,0,168,0,0,0,0,0,0,0,70,2.6,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-20.0,-22.8,79,101600,0,0,168,0,0,0,0,0,0,0,60,2.1,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-20.0,-22.2,83,101600,0,0,168,0,0,0,0,0,0,0,60,2.1,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-20.0,-22.2,83,101600,0,0,171,0,0,0,0,0,0,0,50,2.1,3,1,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-21.1,-23.3,82,101500,0,0,164,0,0,0,0,0,0,0,60,2.1,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-20.0,-22.2,83,101400,0,0,168,0,0,0,0,0,0,0,60,2.1,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-18.9,-21.1,83,101400,0,0,172,0,0,0,0,0,0,0,60,2.1,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-20.0,-22.2,83,101400,0,0,168,0,0,0,0,0,0,0,50,2.1,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-20.0,-22.8,79,101400,0,0,168,0,0,0,0,0,0,0,50,2.1,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-20.6,-22.8,83,101400,0,0,166,0,0,0,0,0,0,0,60,2.1,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-20.6,-23.3,79,101400,0,0,166,0,0,0,0,0,0,0,50,2.1,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-20.6,-22.8,83,101300,0,0,166,0,0,0,0,0,0,0,50,4.6,1,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-21.1,-23.3,82,101300,0,0,168,0,0,0,0,0,0,0,60,5.2,2,1,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-21.7,-23.9,82,101300,0,0,163,0,0,0,0,0,0,0,60,5.2,1,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-21.7,-23.9,82,101200,0,0,163,0,0,0,0,0,0,0,60,5.7,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-21.7,-23.9,82,101200,0,0,163,0,0,0,0,0,0,0,60,5.7,1,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-22.2,-24.4,82,101200,0,0,161,0,0,0,0,0,0,0,60,5.2,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-22.8,-25.6,78,101200,0,0,159,0,0,0,0,0,0,0,60,5.7,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-23.9,-27.2,74,101100,0,0,155,0,0,0,0,0,0,0,60,4.6,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-22.8,-25.6,78,101100,0,0,159,0,0,0,0,0,0,0,60,4.6,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-22.8,-26.1,74,101100,0,0,158,0,0,0,0,0,0,0,50,5.7,1,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-22.8,-26.1,74,101100,0,0,158,0,0,0,0,0,0,0,40,5.2,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-23.3,-26.1,78,101100,0,0,157,0,0,0,0,0,0,0,60,5.2,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-23.9,-26.7,78,101100,0,0,155,0,0,0,0,0,0,0,50,4.6,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-23.3,-26.1,78,101100,0,0,157,0,0,0,0,0,0,0,50,5.2,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-22.8,-25.6,78,101200,0,0,159,0,0,0,0,0,0,0,60,4.6,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-22.8,-25.6,78,101200,0,0,159,0,0,0,0,0,0,0,50,4.6,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-22.8,-25.6,78,101200,0,0,159,0,0,0,0,0,0,0,60,4.6,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-23.3,-26.1,78,101200,0,0,157,0,0,0,0,0,0,0,60,5.2,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-22.8,-25.6,78,101200,0,0,159,0,0,0,0,0,0,0,60,4.6,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-22.8,-25.6,78,101200,0,0,159,0,0,0,0,0,0,0,60,4.6,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-23.3,-26.1,78,101200,0,0,157,0,0,0,0,0,0,0,60,4.6,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-22.8,-23.3,95,101200,0,0,160,0,0,0,0,0,0,0,50,5.2,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-23.9,-27.2,74,101200,0,0,155,0,0,0,0,0,0,0,60,4.1,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-23.9,-26.7,78,101300,0,0,155,0,0,0,0,0,0,0,50,5.2,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-23.9,-26.7,78,101300,0,0,155,0,0,0,0,0,0,0,50,4.1,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-24.4,-27.2,78,101300,0,0,153,0,0,0,0,0,0,0,60,4.6,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-23.9,-26.7,78,101300,0,0,155,0,0,0,0,0,0,0,60,4.6,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-24.4,-27.2,78,101400,0,0,153,0,0,0,0,0,0,0,60,4.6,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-24.4,-27.2,78,101400,0,0,153,0,0,0,0,0,0,0,50,5.2,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-23.9,-26.7,78,101400,0,0,155,0,0,0,0,0,0,0,50,5.2,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-23.9,-26.7,78,101500,0,0,155,0,0,0,0,0,0,0,60,5.2,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-23.9,-26.1,82,101500,0,0,155,0,0,0,0,0,0,0,60,5.7,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-25.6,-28.3,78,101500,0,0,150,0,0,0,0,0,0,0,70,5.2,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-25.6,-29.4,70,101600,0,0,149,0,0,0,0,0,0,0,70,5.2,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-25.6,-28.9,74,101600,0,0,149,0,0,0,0,0,0,0,70,5.2,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-25.0,-28.3,74,101600,0,0,151,0,0,0,0,0,0,0,60,5.2,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-25.0,-28.3,74,101700,0,0,151,0,0,0,0,0,0,0,70,5.2,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-25.6,-28.9,74,101700,0,0,149,0,0,0,0,0,0,0,60,5.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-26.7,-29.4,77,101700,0,0,146,0,0,0,0,0,0,0,70,5.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-25.6,-28.9,74,101700,0,0,149,0,0,0,0,0,0,0,70,5.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-26.1,-29.4,74,101800,0,0,148,0,0,0,0,0,0,0,70,5.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-24.4,-27.2,78,101800,0,0,153,0,0,0,0,0,0,0,70,5.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-24.4,-27.8,74,101800,0,0,153,0,0,0,0,0,0,0,70,5.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-25.6,-28.9,74,101800,0,0,149,0,0,0,0,0,0,0,70,5.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-25.6,-28.9,74,101800,0,0,149,0,0,0,0,0,0,0,70,5.2,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-26.1,-28.9,78,101800,0,0,148,0,0,0,0,0,0,0,60,5.2,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-26.1,-29.4,74,101800,0,0,148,0,0,0,0,0,0,0,60,5.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-25.0,-28.3,74,101800,0,0,151,0,0,0,0,0,0,0,60,5.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-26.1,-28.9,78,101900,0,0,148,0,0,0,0,0,0,0,60,5.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-26.1,-28.9,78,101900,0,0,148,0,0,0,0,0,0,0,60,4.6,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-25.0,-27.8,78,101900,0,0,152,0,0,0,0,0,0,0,60,5.2,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-24.4,-27.2,78,102000,0,0,153,0,0,0,0,0,0,0,70,4.6,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-23.9,-26.1,82,102000,0,0,155,0,0,0,0,0,0,0,60,4.6,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-24.4,-27.8,74,102000,0,0,153,0,0,0,0,0,0,0,60,4.6,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-23.3,-25.6,82,102000,0,0,157,0,0,0,0,0,0,0,80,5.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-22.8,-25.6,78,102000,0,0,159,0,0,0,0,0,0,0,70,4.6,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-23.9,-26.7,78,102000,0,0,155,0,0,0,0,0,0,0,70,4.6,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-23.9,-27.8,70,102000,0,0,154,0,0,0,0,0,0,0,60,5.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-25.0,-28.3,74,102100,0,0,151,0,0,0,0,0,0,0,70,4.6,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-23.3,-26.7,74,102100,0,0,157,0,0,0,0,0,0,0,60,4.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-22.8,-26.1,74,102100,0,0,158,0,0,0,0,0,0,0,60,5.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-23.3,-26.1,78,102100,0,0,157,0,0,0,0,0,0,0,60,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-23.3,-26.1,78,102100,0,0,157,0,0,0,0,0,0,0,60,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-23.9,-26.7,78,102100,0,0,155,0,0,0,0,0,0,0,60,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-23.3,-26.1,78,102100,0,0,157,0,0,0,0,0,0,0,60,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-22.8,-25.6,78,102100,0,0,159,0,0,0,0,0,0,0,60,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-23.9,-26.7,78,102100,0,0,155,0,0,0,0,0,0,0,60,4.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-23.3,-26.1,78,102100,0,0,157,0,0,0,0,0,0,0,50,5.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-23.3,-26.7,74,102100,0,0,157,0,0,0,0,0,0,0,60,4.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-23.9,-26.7,78,102100,0,0,155,0,0,0,0,0,0,0,60,4.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-22.8,-25.6,78,102100,0,0,159,0,0,0,0,0,0,0,50,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-23.3,-26.1,78,102100,0,0,157,0,0,0,0,0,0,0,50,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-25.0,-27.8,78,102100,0,0,152,0,0,0,0,0,0,0,60,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-24.4,-27.8,74,102100,0,0,153,0,0,0,0,0,0,0,60,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-23.3,-26.1,78,102000,0,0,157,0,0,0,0,0,0,0,60,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-23.3,-26.1,78,102000,0,0,157,0,0,0,0,0,0,0,50,4.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-23.9,-26.7,78,102000,0,0,155,0,0,0,0,0,0,0,50,4.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-24.4,-27.2,78,102000,0,0,153,0,0,0,0,0,0,0,50,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-24.4,-27.2,78,101900,0,0,153,0,0,0,0,0,0,0,60,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-25.6,-28.3,78,101900,0,0,150,0,0,0,0,0,0,0,40,4.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-25.6,-28.3,78,101900,0,0,150,0,0,0,0,0,0,0,50,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-26.1,-30.0,70,101900,0,0,147,0,0,0,0,0,0,0,50,4.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-26.1,-28.9,78,101800,0,0,148,0,0,0,0,0,0,0,50,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-25.0,-27.8,78,101700,0,0,152,0,0,0,0,0,0,0,50,6.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-24.4,-27.2,78,101700,0,0,153,0,0,0,0,0,0,0,50,5.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-24.4,-27.2,78,101700,0,0,153,0,0,0,0,0,0,0,60,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-24.4,-27.2,78,101600,0,0,153,0,0,0,0,0,0,0,50,6.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-23.9,-27.2,74,101600,0,0,155,0,0,0,0,0,0,0,50,6.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-23.9,-26.7,78,101500,0,0,155,0,0,0,0,0,0,0,40,6.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-23.9,-27.2,74,101500,0,0,155,0,0,0,0,0,0,0,60,6.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-23.9,-26.7,78,101500,0,0,155,0,0,0,0,0,0,0,50,5.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-23.9,-26.7,78,101400,0,0,155,0,0,0,0,0,0,0,50,6.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-23.3,-26.7,74,101400,0,0,157,0,0,0,0,0,0,0,50,7.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-23.3,-26.1,78,101300,0,0,157,0,0,0,0,0,0,0,50,6.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-23.9,-26.7,78,101300,0,0,155,0,0,0,0,0,0,0,60,6.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-23.3,-26.1,78,101300,0,0,157,0,0,0,0,0,0,0,50,6.7,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-23.3,-26.1,78,101200,0,0,157,0,0,0,0,0,0,0,50,7.2,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-23.3,-26.1,78,101200,0,0,157,0,0,0,0,0,0,0,50,7.2,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-23.3,-26.1,78,101200,0,0,157,0,0,0,0,0,0,0,50,6.7,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-22.8,-25.6,78,101100,0,0,159,0,0,0,0,0,0,0,50,7.7,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-22.8,-25.0,82,101100,0,0,159,0,0,0,0,0,0,0,40,8.2,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-22.8,-25.6,78,101000,0,0,159,0,0,0,0,0,0,0,50,7.7,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-22.8,-25.6,78,101000,0,0,159,0,0,0,0,0,0,0,50,8.2,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-22.8,-25.6,78,100900,0,0,159,0,0,0,0,0,0,0,50,8.8,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-22.8,-25.6,78,100900,0,0,159,0,0,0,0,0,0,0,50,8.8,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-22.8,-26.1,74,100900,0,0,158,0,0,0,0,0,0,0,60,8.2,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-22.8,-25.6,78,100800,0,0,159,0,0,0,0,0,0,0,60,9.3,0,0,9.7,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-22.8,-25.6,78,100800,0,0,159,0,0,0,0,0,0,0,50,8.2,0,0,9.7,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-23.3,-26.1,78,100800,0,0,157,0,0,0,0,0,0,0,50,6.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-22.8,-25.6,78,100800,0,0,159,0,0,0,0,0,0,0,60,8.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-22.2,-25.0,78,100800,0,0,160,0,0,0,0,0,0,0,60,8.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-22.2,-25.0,78,100700,0,0,160,0,0,0,0,0,0,0,50,7.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-21.7,-24.4,78,100700,0,0,162,0,0,0,0,0,0,0,50,7.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-21.7,-24.4,78,100700,0,0,162,0,0,0,0,0,0,0,50,7.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-22.2,-25.0,78,100700,0,0,160,0,0,0,0,0,0,0,50,8.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-22.2,-25.0,78,100700,0,0,160,0,0,0,0,0,0,0,50,8.8,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-21.1,-23.9,79,100600,0,0,164,0,0,0,0,0,0,0,60,9.3,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-20.6,-23.9,75,100600,0,0,165,0,0,0,0,0,0,0,60,9.8,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-20.6,-23.9,75,100600,0,0,165,0,0,0,0,0,0,0,60,8.8,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-20.6,-23.9,75,100600,0,0,165,0,0,0,0,0,0,0,60,8.8,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-20.6,-23.9,75,100600,0,0,165,0,0,0,0,0,0,0,60,10.3,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-20.6,-23.9,75,100600,0,0,165,0,0,0,0,0,0,0,60,9.3,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-20.6,-23.9,75,100600,0,0,165,0,0,0,0,0,0,0,60,9.8,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-20.6,-23.9,75,100600,0,0,165,0,0,0,0,0,0,0,50,9.3,0,0,9.7,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-20.6,-23.3,79,100600,0,0,166,0,0,0,0,0,0,0,60,10.8,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-20.6,-23.3,79,100600,0,0,166,0,0,0,0,0,0,0,60,10.8,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-20.6,-23.9,75,100600,0,0,165,0,0,0,0,0,0,0,60,9.3,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-20.6,-23.3,79,100600,0,0,166,0,0,0,0,0,0,0,50,9.3,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-20.6,-23.3,79,100600,0,0,166,0,0,0,0,0,0,0,60,9.3,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-21.1,-23.9,79,100600,0,0,164,0,0,0,0,0,0,0,60,8.8,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-21.1,-23.9,79,100600,0,0,164,0,0,0,0,0,0,0,60,8.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-21.7,-23.9,82,100600,0,0,163,0,0,0,0,0,0,0,50,8.8,0,0,4.8,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-21.7,-24.4,78,100600,0,0,162,0,0,0,0,0,0,0,50,8.2,0,0,4.8,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-22.2,-24.4,82,100600,0,0,164,0,0,0,0,0,0,0,50,9.3,1,1,1.6,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-22.8,-25.6,78,100700,0,0,162,0,0,0,0,0,0,0,60,8.2,1,1,1.6,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-22.8,-25.6,78,100700,0,0,162,0,0,0,0,0,0,0,50,8.2,1,1,1.6,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-23.3,-25.6,82,100700,0,0,160,0,0,0,0,0,0,0,50,7.7,1,1,1.6,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-22.8,-25.6,78,100700,0,0,159,0,0,0,0,0,0,0,50,8.2,0,0,2.4,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-23.3,-26.1,78,100700,0,0,157,0,0,0,0,0,0,0,50,6.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-23.3,-26.1,78,100700,0,0,157,0,0,0,0,0,0,0,50,7.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-23.9,-26.7,78,100800,0,0,155,0,0,0,0,0,0,0,60,6.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-23.3,-26.1,78,100800,0,0,157,0,0,0,0,0,0,0,60,7.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-23.9,-26.1,82,100800,0,0,155,0,0,0,0,0,0,0,60,6.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-23.3,-26.1,78,100800,0,0,157,0,0,0,0,0,0,0,60,7.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-23.3,-26.1,78,100800,0,0,157,0,0,0,0,0,0,0,60,7.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-23.3,-26.1,78,100900,0,0,157,0,0,0,0,0,0,0,50,6.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-23.9,-26.7,78,100900,0,0,155,0,0,0,0,0,0,0,50,6.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-24.4,-27.2,78,100900,0,0,153,0,0,0,0,0,0,0,50,6.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-24.4,-27.8,74,100900,0,0,153,0,0,0,0,0,0,0,50,6.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-25.0,-27.8,78,100900,0,0,152,0,0,0,0,0,0,0,50,6.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-25.6,-28.3,78,100800,0,0,150,0,0,0,0,0,0,0,50,5.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-25.0,-28.3,74,100800,0,0,151,0,0,0,0,0,0,0,50,5.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-25.6,-28.3,78,100800,0,0,150,0,0,0,0,0,0,0,50,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-25.6,-28.3,78,100800,0,0,150,0,0,0,0,0,0,0,50,5.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-25.6,-28.3,78,100800,0,0,150,0,0,0,0,0,0,0,60,5.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-25.6,-28.9,74,100800,0,0,149,0,0,0,0,0,0,0,50,6.2,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-25.6,-28.9,74,100800,0,0,149,0,0,0,0,0,0,0,50,5.7,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-25.0,-27.8,78,100900,0,0,152,0,0,0,0,0,0,0,50,6.2,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-25.6,-28.3,78,100900,0,0,150,0,0,0,0,0,0,0,50,5.7,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-25.0,-27.8,78,100900,0,0,152,0,0,0,0,0,0,0,50,6.2,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-25.6,-28.9,74,100900,0,0,149,0,0,0,0,0,0,0,50,6.2,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-26.1,-29.4,74,100900,0,0,148,0,0,0,0,0,0,0,50,6.2,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-26.1,-28.9,78,100800,0,0,148,0,0,0,0,0,0,0,50,6.2,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-25.6,-28.9,74,100800,0,0,149,0,0,0,0,0,0,0,50,6.2,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-25.6,-28.3,78,100800,0,0,150,0,0,0,0,0,0,0,50,6.2,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-25.6,-28.9,74,100800,0,0,149,0,0,0,0,0,0,0,50,6.2,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-26.1,-28.9,78,100800,0,0,148,0,0,0,0,0,0,0,50,6.2,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-26.1,-29.4,74,100800,0,0,148,0,0,0,0,0,0,0,60,6.7,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-25.6,-28.9,74,100900,0,0,149,0,0,0,0,0,0,0,60,6.2,0,0,4.8,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-26.1,-29.4,74,100900,0,0,148,0,0,0,0,0,0,0,50,5.7,0,0,8.0,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-26.7,-30.0,74,100900,0,0,146,0,0,0,0,0,0,0,50,5.7,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-27.2,-30.6,73,100900,0,0,144,0,0,0,0,0,0,0,40,5.7,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-27.8,-30.6,77,100900,0,0,143,0,0,0,0,0,0,0,50,5.7,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-26.7,-29.4,77,100900,0,0,146,0,0,0,0,0,0,0,50,6.2,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-26.1,-29.4,74,100900,0,0,148,0,0,0,0,0,0,0,60,6.2,0,0,1.6,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-26.7,-30.0,74,100900,0,0,146,0,0,0,0,0,0,0,60,6.2,0,0,4.8,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-27.2,-30.6,73,100900,0,0,144,0,0,0,0,0,0,0,60,6.2,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-27.8,-30.6,77,101000,0,0,143,0,0,0,0,0,0,0,50,6.2,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-27.2,-30.6,73,101000,0,0,144,0,0,0,0,0,0,0,50,6.2,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-27.2,-30.6,73,101000,0,0,144,0,0,0,0,0,0,0,50,7.2,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-27.2,-30.6,73,101000,0,0,144,0,0,0,0,0,0,0,60,6.7,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-27.2,-30.6,73,101000,0,0,144,0,0,0,0,0,0,0,50,6.2,0,0,4.8,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-27.8,-30.6,77,101100,0,0,143,0,0,0,0,0,0,0,50,6.2,0,0,4.8,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-27.8,-31.1,73,101100,0,0,143,0,0,0,0,0,0,0,50,6.2,0,0,6.4,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-27.2,-30.6,73,101100,0,0,144,0,0,0,0,0,0,0,60,6.2,0,0,6.4,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-27.8,-31.1,73,101100,0,0,143,0,0,0,0,0,0,0,60,6.2,0,0,6.4,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-27.8,-30.6,77,101100,0,0,143,0,0,0,0,0,0,0,60,6.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-27.8,-30.6,77,101200,0,0,143,0,0,0,0,0,0,0,70,6.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-28.3,-31.1,77,101200,0,0,142,0,0,0,0,0,0,0,60,6.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-27.2,-30.6,73,101200,0,0,144,0,0,0,0,0,0,0,60,6.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-27.2,-30.6,73,101200,0,0,144,0,0,0,0,0,0,0,60,7.2,0,0,4.8,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-27.2,-30.6,73,101200,0,0,144,0,0,0,0,0,0,0,60,6.7,0,0,4.8,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-27.2,-30.6,73,101200,0,0,144,0,0,0,0,0,0,0,60,6.2,0,0,6.4,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-27.8,-31.1,73,101300,0,0,143,0,0,0,0,0,0,0,70,6.2,0,0,6.4,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-28.3,-31.7,73,101300,0,0,141,0,0,0,0,0,0,0,70,6.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-28.3,-31.7,73,101200,0,0,141,0,0,0,0,0,0,0,60,6.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-26.7,-29.4,77,101200,0,0,146,0,0,0,0,0,0,0,70,8.2,0,0,4.8,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-26.1,-29.4,74,101200,0,0,148,0,0,0,0,0,0,0,70,7.7,0,0,4.8,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-26.1,-29.4,74,101200,0,0,148,0,0,0,0,0,0,0,80,7.7,0,0,8.0,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-26.1,-29.4,74,101200,0,0,148,0,0,0,0,0,0,0,70,6.7,0,0,8.0,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-26.1,-29.4,74,101200,0,0,148,0,0,0,0,0,0,0,70,7.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-26.1,-29.4,74,101200,0,0,148,0,0,0,0,0,0,0,70,7.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-25.6,-28.9,74,101200,0,0,149,0,0,0,0,0,0,0,70,8.2,0,0,9.7,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-26.1,-28.9,78,101200,0,0,148,0,0,0,0,0,0,0,70,8.2,0,0,9.7,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-26.1,-28.9,78,101200,0,0,148,0,0,0,0,0,0,0,70,8.2,0,0,9.7,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-26.1,-29.4,74,101200,0,0,148,0,0,0,0,0,0,0,70,7.2,0,0,9.7,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-26.1,-29.4,74,101200,0,0,148,0,0,0,0,0,0,0,70,7.2,0,0,9.7,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-26.7,-29.4,77,101200,0,0,146,0,0,0,0,0,0,0,80,7.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-26.7,-29.4,77,101200,0,0,146,0,0,0,0,0,0,0,70,7.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-27.2,-30.0,77,101200,0,0,145,0,0,0,0,0,0,0,70,7.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-27.2,-30.6,73,101200,0,0,144,0,0,0,0,0,0,0,80,7.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-27.8,-30.6,77,101100,0,0,143,0,0,0,0,0,0,0,80,6.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-27.8,-31.1,73,101100,0,0,143,0,0,0,0,0,0,0,80,7.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-28.3,-31.1,77,101100,0,0,142,0,0,0,0,0,0,0,80,6.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-27.8,-31.1,73,101100,0,0,143,0,0,0,0,0,0,0,80,7.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-27.8,-31.1,73,101100,0,0,143,0,0,0,0,0,0,0,80,7.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-27.8,-31.1,73,101100,0,0,143,0,0,0,0,0,0,0,70,8.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-27.2,-30.6,73,101100,0,0,144,0,0,0,0,0,0,0,80,8.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-27.2,-30.6,73,101100,0,0,144,0,0,0,0,0,0,0,90,7.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-26.7,-30.0,74,101100,0,0,146,0,0,0,0,0,0,0,80,8.8,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-26.1,-29.4,74,101000,0,0,148,0,0,0,0,0,0,0,90,8.8,0,0,4.8,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-26.1,-29.4,74,101000,0,0,148,0,0,0,0,0,0,0,80,7.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-26.1,-28.9,78,101000,0,0,148,0,0,0,0,0,0,0,90,7.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-25.6,-28.3,78,101000,0,0,150,0,0,0,0,0,0,0,80,7.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-25.0,-27.8,78,101000,0,0,152,0,0,0,0,0,0,0,70,7.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-24.4,-27.8,74,101000,0,0,153,0,0,0,0,0,0,0,70,7.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-24.4,-27.8,74,101000,0,0,153,0,0,0,0,0,0,0,70,7.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-24.4,-27.8,74,101000,0,0,153,0,0,0,0,0,0,0,80,7.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-24.4,-27.8,74,100900,0,0,153,0,0,0,0,0,0,0,70,7.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-24.4,-27.2,78,100800,0,0,153,0,0,0,0,0,0,0,70,8.8,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-24.4,-27.2,78,100800,0,0,153,0,0,0,0,0,0,0,70,7.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-25.0,-27.8,78,100700,0,0,152,0,0,0,0,0,0,0,70,7.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-25.0,-28.3,74,100700,0,0,151,0,0,0,0,0,0,0,70,7.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-25.6,-28.9,74,100700,0,0,149,0,0,0,0,0,0,0,70,7.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-25.6,-28.9,74,100600,0,0,149,0,0,0,0,0,0,0,60,8.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-25.6,-28.9,74,100500,0,0,149,0,0,0,0,0,0,0,60,7.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-26.1,-28.9,78,100500,0,0,148,0,0,0,0,0,0,0,70,7.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-26.7,-29.4,77,100500,0,0,146,0,0,0,0,0,0,0,60,6.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-27.2,-30.6,73,100400,0,0,144,0,0,0,0,0,0,0,60,6.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-27.2,-30.6,73,100400,0,0,144,0,0,0,0,0,0,0,60,6.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-25.6,-28.9,74,100300,0,0,149,0,0,0,0,0,0,0,70,7.7,3,0,3.2,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-25.6,-28.3,78,100300,0,0,153,0,0,0,0,0,0,0,80,7.7,4,1,3.2,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-25.6,-28.3,78,100300,0,0,153,0,0,0,0,0,0,0,70,8.8,3,1,3.2,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-25.6,-28.9,74,100300,0,0,152,0,0,0,0,0,0,0,80,8.8,3,1,4.8,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-25.6,-28.9,74,100300,0,0,152,0,0,0,0,0,0,0,80,7.2,4,1,8.0,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-25.0,-28.3,74,100200,0,0,154,0,0,0,0,0,0,0,80,8.8,3,1,8.0,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-25.0,-28.3,74,100200,0,0,154,0,0,0,0,0,0,0,80,8.2,3,1,8.0,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-25.0,-28.3,74,100200,0,0,154,0,0,0,0,0,0,0,80,8.2,3,1,8.0,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-25.0,-27.8,78,100200,0,0,154,0,0,0,0,0,0,0,70,7.2,3,1,4.8,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-25.0,-27.8,78,100100,0,0,154,0,0,0,0,0,0,0,80,7.7,3,1,8.0,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-25.0,-28.3,74,100200,0,0,151,0,0,0,0,0,0,0,80,8.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-25.6,-28.3,78,100200,0,0,150,0,0,0,0,0,0,0,80,6.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-25.6,-28.9,74,100200,0,0,152,0,0,0,0,0,0,0,80,5.2,3,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-26.1,-28.9,78,100300,0,0,153,0,0,0,0,0,0,0,80,5.2,5,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-27.2,-30.0,77,100300,0,0,148,0,0,0,0,0,0,0,70,4.6,3,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-27.2,-30.0,77,100300,0,0,150,0,0,0,0,0,0,0,80,5.2,4,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-27.8,-31.1,73,100300,0,0,145,0,0,0,0,0,0,0,90,5.2,3,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-29.4,-32.8,73,100300,0,0,138,0,0,0,0,0,0,0,70,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-30.0,-33.3,73,100300,0,0,136,0,0,0,0,0,0,0,70,4.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-30.0,-33.3,73,100300,0,0,136,0,0,0,0,0,0,0,90,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-30.6,-33.9,73,100300,0,0,135,0,0,0,0,0,0,0,70,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-31.1,-34.4,72,100300,0,0,133,0,0,0,0,0,0,0,70,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-31.1,-35.0,69,100400,0,0,133,0,0,0,0,0,0,0,80,4.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-31.7,-36.1,65,100400,0,0,131,0,0,0,0,0,0,0,100,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-33.3,-37.2,68,100500,0,0,127,0,0,0,0,0,0,0,120,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-34.4,-38.3,68,100600,0,0,124,0,0,0,0,0,0,0,130,4.1,2,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-33.9,-37.8,68,100600,0,0,125,0,0,0,0,0,0,0,100,4.6,2,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-34.4,-38.9,64,100700,0,0,123,0,0,0,0,0,0,0,120,3.1,1,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-33.9,-37.8,68,100700,0,0,127,0,0,0,0,0,0,0,110,2.6,3,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-34.4,-38.3,68,100600,0,0,126,0,0,0,0,0,0,0,110,3.1,3,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-35.0,-38.9,67,100700,0,0,122,0,0,0,0,0,0,0,110,3.6,2,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-34.4,-38.3,68,100700,0,0,124,0,0,0,0,0,0,0,120,3.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-35.0,-38.9,67,100700,0,0,122,0,0,0,0,0,0,0,120,2.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-34.4,-38.9,64,100700,0,0,123,0,0,0,0,0,0,0,100,3.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-34.4,-38.3,68,100700,0,0,124,0,0,0,0,0,0,0,110,3.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-34.4,-38.3,68,100700,0,0,124,0,0,0,0,0,0,0,100,3.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-33.9,-37.8,68,100700,0,0,125,0,0,0,0,0,0,0,120,3.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-33.9,-37.2,72,100700,0,0,125,0,0,0,0,0,0,0,120,3.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-33.9,-37.8,68,100700,0,0,125,0,0,0,0,0,0,0,90,3.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-33.9,-37.8,68,100700,0,0,125,0,0,0,0,0,0,0,90,2.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-33.3,-37.8,64,100600,0,0,126,0,0,0,0,0,0,0,80,2.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-33.3,-37.2,68,100600,0,0,127,0,0,0,0,0,0,0,70,2.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-32.8,-36.1,72,100500,0,0,128,0,0,0,0,0,0,0,60,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-31.7,-35.0,72,100500,0,0,131,0,0,0,0,0,0,0,70,3.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-31.1,-34.4,72,100400,0,0,133,0,0,0,0,0,0,0,60,2.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-30.6,-34.4,69,100400,0,0,134,0,0,0,0,0,0,0,60,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-31.1,-34.4,72,100400,0,0,133,0,0,0,0,0,0,0,70,4.1,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-28.9,-32.8,69,100300,0,0,142,0,0,0,0,0,0,0,60,4.1,2,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-28.9,-32.2,73,100300,0,0,142,0,0,0,0,0,0,0,60,4.1,4,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-26.7,-30.0,74,100200,0,0,149,0,0,0,0,0,0,0,60,5.7,5,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-25.6,-28.3,78,100200,0,0,153,0,0,0,0,0,0,0,60,5.7,6,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-25.6,-28.3,78,100100,0,0,153,0,0,0,0,0,0,0,60,5.2,4,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-25.0,-28.3,74,100000,0,0,154,0,0,0,0,0,0,0,50,6.2,3,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-25.6,-28.9,74,99900,0,0,152,0,0,0,0,0,0,0,50,5.7,3,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-25.0,-27.8,78,99900,0,0,157,0,0,0,0,0,0,0,50,4.6,5,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-24.4,-27.2,78,99900,0,0,159,0,0,0,0,0,0,0,50,5.2,5,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-23.3,-26.1,78,99800,0,0,162,0,0,0,0,0,0,0,40,6.2,5,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-22.8,-25.6,78,99800,0,0,164,0,0,0,0,0,0,0,40,5.2,5,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-22.8,-25.6,78,99700,0,0,164,0,0,0,0,0,0,0,30,4.6,5,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-22.8,-25.6,78,99700,0,0,164,0,0,0,0,0,0,0,20,5.2,5,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-23.3,-26.1,78,99700,0,0,160,0,0,0,0,0,0,0,30,5.2,3,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-23.9,-26.7,78,99800,0,0,158,0,0,0,0,0,0,0,40,5.2,3,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-23.3,-26.1,78,99800,0,0,160,0,0,0,0,0,0,0,30,5.2,3,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-23.3,-26.1,78,99800,0,0,160,0,0,0,0,0,0,0,30,5.7,3,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-23.3,-26.1,78,99900,0,0,157,0,0,0,0,0,0,0,30,5.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-23.3,-26.1,78,99900,0,0,157,0,0,0,0,0,0,0,40,5.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-23.9,-26.7,78,99900,0,0,155,0,0,0,0,0,0,0,40,6.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-23.3,-26.1,78,99900,0,0,157,0,0,0,0,0,0,0,30,5.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-23.3,-26.1,78,99900,0,0,157,0,0,0,0,0,0,0,40,4.1,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-23.3,-26.1,78,100000,0,0,157,0,0,0,0,0,0,0,30,4.6,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-23.3,-26.7,74,100100,0,0,160,0,0,0,0,0,0,0,30,4.6,3,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-23.3,-26.1,78,100100,0,0,162,0,0,0,0,0,0,0,50,5.7,5,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-23.3,-26.1,78,100200,0,0,166,0,0,0,0,0,0,0,50,4.1,10,5,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-22.8,-25.6,78,100300,0,0,169,0,0,0,0,0,0,0,40,4.6,10,6,11.3,6100,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-22.8,-25.6,78,100400,0,0,167,0,0,0,0,0,0,0,30,5.2,8,4,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-23.9,-26.7,78,100500,0,0,158,0,0,0,0,0,0,0,50,4.1,8,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-23.9,-26.7,78,100500,0,0,164,0,0,0,0,0,0,0,40,4.1,10,5,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-23.3,-26.1,78,100500,0,0,162,0,0,0,0,0,0,0,40,4.1,5,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-23.3,-26.1,78,100700,0,0,164,0,0,0,0,0,0,0,40,4.6,5,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-23.9,-26.7,78,100700,0,0,162,0,0,0,0,0,0,0,40,4.6,5,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-23.3,-26.1,78,100800,0,0,164,0,0,0,0,0,0,0,40,3.6,5,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-23.9,-26.7,78,100900,0,0,162,0,0,0,0,0,0,0,40,3.6,5,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-23.9,-26.1,82,101000,0,0,162,0,0,0,0,0,0,0,40,2.6,5,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-23.9,-26.7,78,101100,0,0,163,0,0,0,0,0,0,0,40,3.6,6,4,11.3,4570,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-22.8,-25.6,78,101200,0,0,167,0,0,0,0,0,0,0,30,2.6,6,4,11.3,4570,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-22.8,-25.0,82,101200,0,0,183,0,0,0,0,0,0,0,40,2.6,10,10,11.3,490,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-23.3,-26.1,78,101300,0,0,170,0,0,0,0,0,0,0,50,2.6,7,7,11.3,790,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-22.8,-25.0,82,101400,0,0,183,0,0,0,0,0,0,0,40,2.6,10,10,11.3,790,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-22.2,-25.0,78,101400,0,0,167,0,0,0,0,0,0,0,50,3.1,6,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-22.2,-24.4,82,101500,0,0,168,0,0,0,0,0,0,0,50,3.1,7,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-22.2,-24.4,82,101500,0,0,168,0,0,0,0,0,0,0,20,2.6,5,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-22.8,-25.0,82,101600,0,0,168,0,0,0,0,0,0,0,50,2.6,5,5,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-22.2,-25.0,78,101700,0,0,176,0,0,0,0,0,0,0,50,2.6,8,8,11.3,790,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-21.7,-23.9,82,101800,0,0,188,0,0,0,0,0,0,0,60,3.1,10,10,11.3,790,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-21.1,-23.3,82,101900,0,0,190,0,0,0,0,0,0,0,40,2.6,10,10,11.3,790,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-20.6,-23.3,79,102000,0,0,191,0,0,0,0,0,0,0,30,2.6,10,10,11.3,340,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-20.0,-22.2,83,102100,0,0,189,0,0,0,0,0,0,0,360,3.1,10,9,11.3,980,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-20.0,-22.8,79,102100,0,0,188,0,0,0,0,0,0,0,360,3.1,10,9,11.3,980,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-20.0,-22.2,83,102200,0,0,194,0,0,0,0,0,0,0,360,3.1,10,10,11.3,980,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-20.0,-22.2,83,102300,0,0,194,0,0,0,0,0,0,0,360,3.6,10,10,11.3,980,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-21.1,-23.3,82,102400,0,0,172,0,0,0,0,0,0,0,350,3.1,3,3,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-22.2,-25.0,78,102500,0,0,160,0,0,0,0,0,0,0,330,4.1,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-22.8,-25.6,78,102600,0,0,159,0,0,0,0,0,0,0,330,4.1,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-23.9,-26.7,78,102600,0,0,155,0,0,0,0,0,0,0,330,4.6,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-25.0,-27.8,78,102700,0,0,152,0,0,0,0,0,0,0,320,3.6,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-26.7,-29.4,77,102800,0,0,146,0,0,0,0,0,0,0,320,3.1,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-27.8,-31.1,73,102900,0,0,143,0,0,0,0,0,0,0,320,4.1,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-28.3,-31.7,73,103000,0,0,141,0,0,0,0,0,0,0,320,3.6,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-29.4,-32.8,73,103100,0,0,138,0,0,0,0,0,0,0,310,5.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-30.6,-33.9,73,103100,0,0,135,0,0,0,0,0,0,0,320,4.6,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-31.1,-34.4,72,103100,0,0,133,0,0,0,0,0,0,0,320,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-31.7,-35.0,72,103200,0,0,131,0,0,0,0,0,0,0,320,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-31.7,-35.6,68,103200,0,0,131,0,0,0,0,0,0,0,320,4.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-32.2,-35.6,72,103200,0,0,130,0,0,0,0,0,0,0,320,4.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-31.7,-35.0,72,103200,0,0,131,0,0,0,0,0,0,0,330,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-32.2,-36.1,68,103300,0,0,130,0,0,0,0,0,0,0,320,3.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-32.8,-36.1,72,103300,0,0,128,0,0,0,0,0,0,0,310,3.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-32.8,-36.7,68,103400,0,0,128,0,0,0,0,0,0,0,320,3.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-33.3,-36.7,72,103400,0,0,127,0,0,0,0,0,0,0,320,3.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-33.9,-37.8,68,103500,0,0,127,0,0,0,0,0,0,0,320,2.6,2,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-33.9,-37.8,68,103500,0,0,125,0,0,0,0,0,0,0,310,3.1,2,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-33.9,-37.8,68,103500,0,0,125,0,0,0,0,0,0,0,320,3.6,2,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-33.9,-37.8,68,103400,0,0,125,0,0,0,0,0,0,0,320,3.1,2,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-33.9,-37.8,68,103500,0,588,125,0,0,0,0,0,0,0,320,2.6,2,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-33.9,-37.8,68,103500,0,0,125,0,0,0,0,0,0,0,310,3.6,2,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-33.9,-37.8,68,103400,0,0,125,0,0,0,0,0,0,0,310,3.6,2,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-33.3,-37.2,68,103400,0,0,127,0,0,0,0,0,0,0,310,4.1,2,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-33.9,-37.8,68,103400,0,0,125,0,0,0,0,0,0,0,320,3.1,2,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-33.9,-37.8,68,103400,0,0,125,0,0,0,0,0,0,0,310,2.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-34.4,-38.3,68,103400,0,0,124,0,0,0,0,0,0,0,310,3.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-33.9,-38.3,64,103400,0,0,125,0,0,0,0,0,0,0,320,3.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-34.4,-38.3,68,103400,0,0,124,0,0,0,0,0,0,0,320,3.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-33.9,-37.8,68,103400,0,0,125,0,0,0,0,0,0,0,320,3.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-33.9,-37.8,68,103400,0,0,125,0,0,0,0,0,0,0,330,2.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-33.9,-37.8,68,103300,0,0,125,0,0,0,0,0,0,0,310,3.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-34.4,-38.3,68,103400,0,0,124,0,0,0,0,0,0,0,320,3.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-34.4,-38.3,68,103300,0,0,124,0,0,0,0,0,0,0,320,3.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-33.9,-37.8,68,103300,0,0,125,0,0,0,0,0,0,0,320,3.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-33.9,-37.8,68,103300,0,0,125,0,0,0,0,0,0,0,320,3.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-33.9,-37.8,68,103300,0,0,125,0,0,0,0,0,0,0,320,3.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-35.0,-38.9,67,103300,0,0,122,0,0,0,0,0,0,0,320,2.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-33.9,-37.8,68,103400,0,0,125,0,0,0,0,0,0,0,320,2.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-34.4,-38.3,68,103400,0,0,124,0,0,0,0,0,0,0,310,3.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-33.9,-38.3,64,103500,0,0,125,0,0,0,0,0,0,0,320,2.6,1,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-34.4,-38.3,68,103500,0,0,124,0,0,0,0,0,0,0,300,2.6,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-33.9,-37.8,68,103500,0,0,125,0,0,0,0,0,0,0,310,3.1,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-33.9,-37.8,68,103500,0,35,125,0,0,0,0,0,0,0,310,3.1,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-34.4,-37.8,72,103600,4,1411,124,0,0,0,0,0,0,0,310,3.6,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-33.9,-37.2,72,103600,1,459,125,0,0,0,0,0,0,0,310,3.1,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-33.9,-37.2,72,103600,0,0,125,0,0,0,0,0,0,0,300,3.6,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-34.4,-38.9,64,103600,0,0,123,0,0,0,0,0,0,0,300,2.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-34.4,-38.3,68,103600,0,0,124,0,0,0,0,0,0,0,290,2.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-33.3,-37.2,68,103600,0,0,127,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-35.0,-38.3,71,103700,0,0,122,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-34.4,-38.3,68,103700,0,0,124,0,0,0,0,0,0,0,250,2.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-33.9,-38.3,64,103700,0,0,125,0,0,0,0,0,0,0,320,1.5,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-33.9,-37.8,68,103800,0,0,125,0,0,0,0,0,0,0,320,2.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-33.9,-37.8,68,103800,0,0,125,0,0,0,0,0,0,0,320,2.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-35.0,-37.8,76,103800,0,0,123,0,0,0,0,0,0,0,300,2.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-35.0,-38.3,71,103800,0,0,122,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-33.9,-37.8,68,103800,0,0,125,0,0,0,0,0,0,0,350,1.5,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-34.4,-39.4,60,103800,0,0,123,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-36.7,-41.1,63,103800,0,0,117,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-36.1,-40.0,67,103800,0,0,119,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-33.9,-37.8,68,103800,0,0,125,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-35.0,-38.3,71,103800,0,0,122,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-35.0,-38.9,67,103900,0,0,122,0,0,0,0,0,0,0,110,1.5,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-37.8,-39.3,85,103900,0,0,116,0,0,0,0,0,0,0,130,1.5,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-37.2,-39.7,76,103900,0,0,117,0,0,0,0,0,0,0,150,2.1,1,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-38.3,-40.1,82,103900,0,0,115,0,0,0,0,0,0,0,170,2.6,1,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-38.9,-40.7,82,103900,1,388,113,0,0,0,0,0,0,0,160,2.1,2,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-40.0,-41.4,85,103900,9,1411,111,0,0,0,0,0,0,0,160,3.1,2,0,8.0,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-40.6,-40.9,97,103800,3,835,110,0,0,0,0,0,0,0,120,4.1,2,0,9.7,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-41.7,-41.7,100,103800,0,0,107,0,0,0,0,0,0,0,130,4.1,0,0,9.7,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-41.1,-41.4,97,103800,0,0,109,0,0,0,0,0,0,0,130,3.1,0,0,9.7,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-40.6,-40.7,99,103800,0,0,110,0,0,0,0,0,0,0,120,4.6,0,0,9.7,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-40.0,-41.1,88,103800,0,0,111,0,0,0,0,0,0,0,120,4.6,0,0,9.7,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-39.4,-41.5,79,103700,0,0,112,0,0,0,0,0,0,0,120,5.2,0,0,9.7,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-38.9,-41.3,76,103700,0,0,113,0,0,0,0,0,0,0,120,5.7,0,0,9.7,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-37.8,-41.1,69,103600,0,0,115,0,0,0,0,0,0,0,120,5.7,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-37.8,-41.0,70,103600,0,0,115,0,0,0,0,0,0,0,110,5.7,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-36.7,-41.1,63,103500,0,0,117,0,0,0,0,0,0,0,110,6.2,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-36.7,-41.1,63,103400,0,0,117,0,0,0,0,0,0,0,110,5.2,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-35.0,-38.9,67,103300,0,0,122,0,0,0,0,0,0,0,120,5.7,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-33.9,-37.8,68,103300,0,0,125,0,0,0,0,0,0,0,120,6.2,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-32.8,-36.7,68,103200,0,0,128,0,0,0,0,0,0,0,120,6.2,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-31.7,-35.0,72,103100,0,0,131,0,0,0,0,0,0,0,110,6.2,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.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,-30.6,-34.4,69,103100,0,0,134,0,0,0,0,0,0,0,110,6.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-29.4,-32.8,73,102900,0,0,138,0,0,0,0,0,0,0,120,8.8,0,0,6.4,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-29.4,-32.8,73,102800,0,0,141,0,0,0,0,0,0,0,120,10.3,1,1,4.8,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-28.9,-32.8,69,102700,0,0,139,0,0,0,0,0,0,0,130,8.8,0,0,6.4,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-28.9,-32.8,69,102700,0,0,144,0,0,0,0,0,0,0,130,8.2,5,2,8.0,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-28.9,-32.8,69,102600,0,0,147,0,0,0,0,0,0,0,130,7.2,10,5,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-29.4,-33.3,69,102600,0,0,145,0,0,0,0,0,0,0,130,5.7,10,4,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-30.0,-33.9,69,102600,3,670,143,0,0,0,0,0,0,0,150,4.1,10,4,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-30.6,-34.4,69,102600,15,1411,141,2,1,2,0,0,0,0,150,2.1,10,4,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-30.0,-33.3,73,102600,7,1140,143,0,0,0,0,0,0,0,130,2.6,10,4,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-28.9,-32.2,73,102500,0,0,161,0,0,0,0,0,0,0,130,2.1,10,10,11.3,3960,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-27.8,-31.1,73,102400,0,0,165,0,0,0,0,0,0,0,130,2.6,10,10,11.3,3960,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-26.7,-29.4,77,102400,0,0,158,0,0,0,0,0,0,0,180,1.5,7,7,11.3,3960,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-27.8,-30.6,77,102400,0,0,155,0,0,0,0,0,0,0,180,3.1,7,7,11.3,3960,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-26.7,-29.4,77,102400,0,0,158,0,0,0,0,0,0,0,220,1.5,7,7,11.3,3960,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-25.6,-28.3,78,102400,0,0,162,0,0,0,0,0,0,0,130,2.1,7,7,11.3,3960,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-24.4,-27.2,78,102400,0,0,172,0,0,0,0,0,0,0,120,2.6,10,9,11.3,3960,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-23.9,-26.7,78,102300,0,0,179,0,0,0,0,0,0,0,140,3.6,10,10,11.3,3960,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-23.3,-26.1,78,102300,0,0,181,0,0,0,0,0,0,0,130,4.1,10,10,11.3,3050,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-25.0,-27.8,78,102300,0,0,164,0,0,0,0,0,0,0,90,4.1,7,7,11.3,2440,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-25.6,-28.9,74,102300,0,0,172,0,0,0,0,0,0,0,140,3.1,10,10,11.3,2440,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-23.9,-27.2,74,102300,0,0,174,0,0,0,0,0,0,0,180,3.1,10,9,11.3,2440,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-23.3,-26.7,74,102200,0,0,181,0,0,0,0,0,0,0,190,3.1,10,10,11.3,2130,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-23.3,-26.1,78,102200,0,0,181,0,0,0,0,0,0,0,210,2.6,10,10,11.3,2130,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-22.2,-25.6,75,102200,0,0,185,0,0,0,0,0,0,0,350,1.5,10,10,11.3,2130,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-22.2,-25.6,75,102100,0,0,185,0,0,0,0,0,0,0,140,3.1,10,10,11.3,2130,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-22.2,-25.0,78,102100,0,0,185,0,0,0,0,0,0,0,140,2.1,10,10,11.3,2130,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-21.7,-25.0,75,102100,0,0,187,0,0,0,0,0,0,0,80,2.6,10,10,11.3,2130,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-21.7,-25.0,75,102100,0,0,187,0,0,0,0,0,0,0,100,2.6,10,10,11.3,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-21.7,-24.4,78,102100,0,0,187,0,0,0,0,0,0,0,90,3.6,10,10,11.3,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-21.1,-23.9,79,102100,0,0,189,0,0,0,0,0,0,0,80,4.1,10,10,11.3,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-21.1,-23.9,79,102000,6,929,173,2,1,2,0,0,0,0,90,3.6,10,4,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-22.2,-25.0,78,102000,20,1410,166,2,56,2,219,2400,352,72,100,5.7,8,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-22.2,-25.6,75,102000,12,1399,168,2,16,1,0,0,0,0,110,5.7,8,4,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-22.8,-25.6,78,101900,0,0,162,0,0,0,0,0,0,0,110,4.6,6,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-23.3,-26.7,74,101900,0,0,160,0,0,0,0,0,0,0,110,4.6,7,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-23.3,-26.1,78,101900,0,0,162,0,0,0,0,0,0,0,90,5.7,7,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-24.4,-27.2,78,101900,0,0,153,0,0,0,0,0,0,0,90,6.7,5,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-25.6,-28.3,78,101900,0,0,153,0,0,0,0,0,0,0,100,6.7,5,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-25.6,-28.9,74,101900,0,0,149,0,0,0,0,0,0,0,110,5.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-26.1,-28.9,78,101900,0,0,148,0,0,0,0,0,0,0,100,6.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-26.7,-29.4,77,101900,0,0,146,0,0,0,0,0,0,0,100,6.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-27.2,-30.0,77,101900,0,0,145,0,0,0,0,0,0,0,110,5.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-27.8,-30.6,77,101800,0,0,143,0,0,0,0,0,0,0,100,5.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-27.8,-30.6,77,101800,0,0,143,0,0,0,0,0,0,0,100,5.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-28.9,-32.2,73,101800,0,0,139,0,0,0,0,0,0,0,90,5.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-29.4,-32.8,73,101800,0,0,138,0,0,0,0,0,0,0,90,5.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-30.0,-33.3,73,101800,0,0,136,0,0,0,0,0,0,0,90,5.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-30.0,-33.3,73,101800,0,0,136,0,0,0,0,0,0,0,90,4.1,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-28.3,-31.7,73,101800,0,0,141,0,0,0,0,0,0,0,110,5.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-30.0,-33.3,73,101800,0,0,141,0,0,0,0,0,0,0,90,5.2,6,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-30.0,-33.3,73,101800,0,0,136,0,0,0,0,0,0,0,90,5.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-29.4,-33.3,69,101800,0,0,138,0,0,0,0,0,0,0,80,5.7,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-30.0,-33.9,69,101800,0,0,136,0,0,0,0,0,0,0,90,5.2,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-30.6,-34.4,69,101800,0,0,134,0,0,0,0,0,0,0,90,5.7,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-30.0,-33.3,73,101800,10,1140,136,4,75,1,0,0,0,0,80,5.7,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-30.6,-33.9,73,101900,26,1410,135,6,250,2,658,11069,353,73,90,5.2,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-31.1,-35.0,69,101900,18,1410,133,5,154,2,546,6457,352,72,100,4.6,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-31.7,-35.6,68,101900,0,223,131,0,0,0,0,0,0,0,90,4.6,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-32.2,-35.6,72,102000,0,0,133,0,0,0,0,0,0,0,100,4.1,1,1,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-31.7,-35.0,72,101900,0,0,134,0,0,0,0,0,0,0,100,5.2,6,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-32.2,-36.1,68,102000,0,0,130,0,0,0,0,0,0,0,100,4.1,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-32.2,-36.1,68,102000,0,0,130,0,0,0,0,0,0,0,100,4.6,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-32.8,-36.7,68,102000,0,0,128,0,0,0,0,0,0,0,90,3.6,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-33.3,-36.7,72,102000,0,0,127,0,0,0,0,0,0,0,110,3.6,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-32.8,-36.7,68,102000,0,0,128,0,0,0,0,0,0,0,90,6.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-33.3,-37.8,64,102100,0,0,126,0,0,0,0,0,0,0,80,4.6,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-32.8,-36.7,68,102100,0,0,128,0,0,0,0,0,0,0,80,4.6,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-32.8,-36.1,72,102100,0,0,128,0,0,0,0,0,0,0,70,3.6,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-32.8,-36.7,68,102100,0,0,128,0,0,0,0,0,0,0,80,4.6,2,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-32.8,-36.7,68,102100,0,0,128,0,0,0,0,0,0,0,70,4.6,2,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-33.3,-37.2,68,102000,0,0,127,0,0,0,0,0,0,0,70,4.6,2,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-32.8,-36.7,68,102000,0,0,128,0,0,0,0,0,0,0,80,4.1,2,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-32.8,-36.7,68,102000,0,0,128,0,0,0,0,0,0,0,80,4.6,1,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-32.8,-36.1,72,102000,0,0,128,0,0,0,0,0,0,0,70,5.2,1,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-32.8,-36.1,72,101900,0,0,128,0,0,0,0,0,0,0,70,4.1,1,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-32.8,-36.7,68,101900,0,0,131,0,0,0,0,0,0,0,70,4.6,2,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-32.2,-36.7,64,101900,0,0,129,0,0,0,0,0,0,0,70,4.1,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-30.0,-33.3,73,101800,0,0,136,0,0,0,0,0,0,0,60,5.7,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-31.7,-35.0,72,101800,15,1351,131,4,101,2,0,0,0,0,80,5.2,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-31.7,-35.6,68,101800,32,1410,131,7,200,3,760,9124,522,102,70,5.2,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-30.6,-33.9,73,101800,24,1410,135,5,170,2,547,7403,353,73,90,6.2,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-30.6,-33.9,73,101800,2,435,135,0,0,0,0,0,0,0,100,5.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.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,-30.6,-34.4,69,101800,0,0,134,0,0,0,0,0,0,0,100,5.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-30.0,-33.3,73,101800,0,0,136,0,0,0,0,0,0,0,100,6.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-29.4,-32.8,73,101800,0,0,138,0,0,0,0,0,0,0,100,7.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-29.4,-32.8,73,101700,0,0,138,0,0,0,0,0,0,0,100,8.2,0,0,4.8,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-28.9,-32.2,73,101700,0,0,139,0,0,0,0,0,0,0,100,8.8,0,0,1.6,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-27.2,-30.6,73,101800,0,0,162,0,0,0,0,0,0,0,110,8.2,10,9,1.6,2130,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-26.7,-29.4,77,101800,0,0,151,0,0,0,0,0,0,0,100,8.8,2,2,1.6,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-25.6,-28.3,78,101700,0,0,157,0,0,0,0,0,0,0,110,8.2,6,4,1.6,1370,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-23.9,-26.7,78,101700,0,0,179,0,0,0,0,0,0,0,110,9.3,10,10,1.6,1520,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-23.9,-26.1,82,101700,0,0,179,0,0,0,0,0,0,0,110,9.3,10,10,1.2,1520,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-23.3,-26.1,78,101700,0,0,181,0,0,0,0,0,0,0,110,9.8,10,10,1.2,1520,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-22.8,-25.6,78,101700,0,0,183,0,0,0,0,0,0,0,110,10.3,10,10,1.2,1520,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-22.8,-25.6,78,101600,0,0,183,0,0,0,0,0,0,0,120,9.8,10,10,1.2,1520,9,999999999,5,0.0000,0,88,0.000,0.0,1.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,-22.8,-25.6,78,101600,0,0,183,0,0,0,0,0,0,0,110,10.3,10,10,1.2,1520,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-22.2,-25.0,78,101600,0,0,185,0,0,0,0,0,0,0,110,10.8,10,10,1.2,1520,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-22.2,-24.4,82,101500,0,0,186,0,0,0,0,0,0,0,110,9.8,10,10,1.2,1520,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-21.7,-24.4,78,101500,0,0,187,0,0,0,0,0,0,0,100,9.8,10,10,1.2,1130,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-21.1,-23.9,79,101500,0,0,189,0,0,0,0,0,0,0,110,9.8,10,10,1.2,1130,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-21.7,-23.9,82,101500,0,0,188,0,0,0,0,0,0,0,110,10.3,10,10,1.2,1130,9,999999999,4,0.0000,0,88,0.000,0.0,1.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,-21.7,-23.9,82,101500,0,129,188,0,0,0,0,0,0,0,110,9.3,10,10,1.2,1130,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-21.7,-24.4,78,101600,21,1409,187,1,0,1,97,0,97,40,110,8.2,10,10,1.2,980,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-21.1,-23.3,82,101600,38,1409,190,2,1,2,254,0,253,79,120,7.7,10,10,1.2,980,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-20.0,-22.2,83,101700,30,1409,194,1,1,1,132,0,132,40,120,7.2,10,10,1.2,1130,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-19.4,-21.7,83,101800,6,622,196,1,0,1,0,0,0,0,120,6.7,10,10,2.4,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-18.9,-21.7,79,101900,0,0,180,0,0,0,0,0,0,0,120,5.7,6,4,11.3,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-20.0,-22.2,83,102000,0,0,178,0,0,0,0,0,0,0,130,4.6,5,5,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-18.9,-21.1,83,102100,0,0,198,0,0,0,0,0,0,0,130,3.1,10,10,11.3,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-15.0,-16.1,91,102200,0,0,215,0,0,0,0,0,0,0,160,3.1,10,10,11.3,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-14.4,-16.1,87,102200,0,0,217,0,0,0,0,0,0,0,190,4.6,10,10,11.3,370,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-13.8,-15.6,84,102400,0,0,220,0,0,0,0,0,0,0,250,4.9,10,10,11.3,370,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-13.4,-15.2,88,102500,0,0,221,0,0,0,0,0,0,0,260,5.2,10,10,11.3,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.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,-12.9,-14.8,88,102600,0,0,223,0,0,0,0,0,0,0,270,5.5,10,10,11.3,790,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-12.4,-14.4,88,102700,0,0,226,0,0,0,0,0,0,0,250,5.8,10,10,11.3,610,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-11.9,-14.0,80,102800,0,0,228,0,0,0,0,0,0,0,230,6.1,10,10,11.3,610,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-11.5,-13.6,84,102800,0,0,229,0,0,0,0,0,0,0,240,6.4,10,10,11.3,520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-11.1,-13.3,84,102900,0,0,231,0,0,0,0,0,0,0,260,6.7,10,10,11.3,610,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-12.2,-13.9,88,102900,0,0,227,0,0,0,0,0,0,0,260,9.3,10,10,11.3,520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-12.8,-15.0,84,103000,0,0,224,0,0,0,0,0,0,0,270,9.3,10,10,11.3,520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-13.9,-16.1,84,103100,0,0,219,0,0,0,0,0,0,0,280,9.3,10,10,11.3,520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-14.4,-16.7,83,103100,0,0,217,0,0,0,0,0,0,0,270,8.8,10,10,11.3,520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-14.4,-16.7,83,103200,0,0,217,0,0,0,0,0,0,0,280,9.3,10,10,11.3,430,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-16.1,-18.3,83,103300,0,0,210,0,0,0,0,0,0,0,270,9.3,10,10,11.3,400,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-16.7,-18.9,83,103300,0,0,207,0,0,0,0,0,0,0,280,8.2,10,10,11.3,370,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-17.2,-19.4,83,103400,1,317,205,0,0,0,0,0,0,0,290,8.8,10,10,11.3,370,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-17.2,-19.4,83,103500,27,1409,205,1,0,1,97,0,97,40,300,7.7,10,10,11.3,1130,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-16.7,-18.9,83,103600,45,1409,207,6,1,6,706,0,706,219,310,7.2,10,10,11.3,1130,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-16.1,-18.3,83,103600,36,1409,210,4,1,4,481,0,481,150,310,7.2,10,10,11.3,980,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-15.6,-17.8,83,103600,7,810,212,2,0,2,0,0,0,0,310,6.2,10,10,6.4,980,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-15.6,-17.8,83,103700,0,0,212,0,0,0,0,0,0,0,310,6.7,10,10,11.3,980,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-15.6,-17.2,87,103800,0,0,212,0,0,0,0,0,0,0,330,6.2,10,10,11.3,980,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-15.6,-17.2,87,103900,0,0,212,0,0,0,0,0,0,0,320,6.2,10,10,11.3,980,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-15.0,-17.2,83,104000,0,0,214,0,0,0,0,0,0,0,340,5.2,10,10,11.3,1130,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-16.1,-18.3,83,104100,0,0,188,0,0,0,0,0,0,0,330,5.2,2,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-16.1,-18.3,83,104100,0,0,196,0,0,0,0,0,0,0,350,5.2,10,7,11.3,270,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-19.4,-21.7,83,104200,0,0,177,0,0,0,0,0,0,0,30,5.7,7,3,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-20.0,-22.2,83,104300,0,0,178,0,0,0,0,0,0,0,30,5.7,10,5,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-21.1,-22.8,87,104500,0,0,175,0,0,0,0,0,0,0,0,0.0,7,5,11.3,1520,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-20.0,-21.7,87,104600,0,0,176,0,0,0,0,0,0,0,70,4.6,8,3,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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.8,-20.0,83,104600,0,0,186,0,0,0,0,0,0,0,40,4.6,10,5,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-21.1,-23.3,82,104700,0,0,170,0,0,0,0,0,0,0,90,5.2,3,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-23.9,-26.1,82,104800,0,0,155,0,0,0,0,0,0,0,80,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-25.0,-27.2,82,104900,0,0,152,0,0,0,0,0,0,0,90,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-24.4,-27.2,78,105000,0,0,153,0,0,0,0,0,0,0,80,3.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-26.7,-30.0,74,105000,0,0,146,0,0,0,0,0,0,0,70,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-27.8,-32.2,66,105100,0,0,142,0,0,0,0,0,0,0,80,5.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-28.3,-31.7,73,105200,0,0,141,0,0,0,0,0,0,0,80,6.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-28.3,-31.7,73,105200,0,0,141,0,0,0,0,0,0,0,70,5.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-28.3,-31.1,77,105300,3,481,142,0,0,0,0,0,0,0,70,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-27.2,-30.6,73,105300,33,1408,144,7,184,3,760,8428,522,102,80,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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.8,-31.1,73,105400,51,1408,143,16,224,8,1700,11099,1340,184,90,4.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-27.8,-31.1,73,105400,42,1408,143,13,165,8,1493,0,920,278,80,5.7,6,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-28.9,-32.2,73,105500,11,998,139,5,71,2,0,0,0,0,80,4.1,3,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-29.4,-32.8,73,105500,0,0,144,0,0,0,0,0,0,0,90,4.1,3,3,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-30.6,-33.9,73,105500,0,0,139,0,0,0,0,0,0,0,90,5.2,2,2,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-30.0,-33.9,69,105600,0,0,140,0,0,0,0,0,0,0,80,5.2,2,2,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-30.6,-33.9,73,105600,0,0,140,0,0,0,0,0,0,0,90,5.2,3,3,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-31.1,-34.4,72,105600,0,0,136,0,0,0,0,0,0,0,90,5.2,3,1,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-31.1,-34.4,72,105600,0,0,136,0,0,0,0,0,0,0,90,5.2,2,1,16.1,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-32.2,-35.6,72,105700,0,0,133,0,0,0,0,0,0,0,90,5.2,2,1,16.1,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-32.2,-36.1,68,105700,0,0,130,0,0,0,0,0,0,0,100,5.7,0,0,16.1,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-32.2,-35.6,72,105800,0,0,130,0,0,0,0,0,0,0,90,4.6,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-32.2,-36.1,68,105800,0,0,130,0,0,0,0,0,0,0,90,5.2,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-31.7,-35.6,68,105800,0,0,131,0,0,0,0,0,0,0,80,5.2,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-31.7,-35.6,68,105800,0,0,131,0,0,0,0,0,0,0,80,5.2,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-32.8,-32.8,100,105900,0,0,130,0,0,0,0,0,0,0,80,5.2,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-32.2,-36.1,68,105900,0,0,130,0,0,0,0,0,0,0,70,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-32.2,-36.1,68,105900,0,0,130,0,0,0,0,0,0,0,90,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-32.8,-36.7,68,105900,0,0,128,0,0,0,0,0,0,0,90,4.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-32.8,-36.7,68,105900,0,0,128,0,0,0,0,0,0,0,90,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-32.2,-36.1,68,105900,0,0,130,0,0,0,0,0,0,0,80,4.6,3,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-31.7,-35.0,72,105900,0,0,138,0,0,0,0,0,0,0,90,4.6,10,4,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-32.2,-36.1,68,105900,24,645,130,4,36,1,0,0,0,0,90,5.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-31.1,-35.6,65,105900,39,1408,132,11,251,5,1179,11806,852,143,80,4.6,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-32.2,-35.6,72,105900,58,1408,130,19,260,9,2015,13237,1503,200,80,4.6,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-31.1,-34.4,72,105900,49,1408,133,15,251,7,1598,12333,1179,176,70,5.2,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-31.1,-34.4,72,105800,16,1162,133,6,132,2,0,0,0,0,80,5.2,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-31.7,-35.0,72,105700,0,0,131,0,0,0,0,0,0,0,80,5.2,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-31.1,-34.4,72,105700,0,0,133,0,0,0,0,0,0,0,80,4.6,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-30.6,-33.9,73,105700,0,0,135,0,0,0,0,0,0,0,70,4.6,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-29.4,-32.2,77,105700,0,0,138,0,0,0,0,0,0,0,70,6.2,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-31.1,-34.4,72,105700,0,0,133,0,0,0,0,0,0,0,80,4.6,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-31.1,-34.4,72,105600,0,0,133,0,0,0,0,0,0,0,80,4.6,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-31.1,-34.4,72,105600,0,0,133,0,0,0,0,0,0,0,70,5.2,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-30.6,-34.4,69,105600,0,0,134,0,0,0,0,0,0,0,70,6.2,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-30.6,-33.9,73,105600,0,0,135,0,0,0,0,0,0,0,80,4.1,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-30.6,-34.4,69,105500,0,0,134,0,0,0,0,0,0,0,80,4.1,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-29.4,-33.3,69,105400,0,0,138,0,0,0,0,0,0,0,70,4.6,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-29.4,-32.8,73,105400,0,0,138,0,0,0,0,0,0,0,80,4.6,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-28.3,-31.1,77,105300,0,0,142,0,0,0,0,0,0,0,70,4.6,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-28.3,-31.7,73,105200,0,0,141,0,0,0,0,0,0,0,70,4.6,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-28.3,-31.7,73,105200,0,0,141,0,0,0,0,0,0,0,70,5.2,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-28.3,-31.7,73,105100,0,0,141,0,0,0,0,0,0,0,80,4.6,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-26.1,-30.0,70,105000,0,0,147,0,0,0,0,0,0,0,70,4.6,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-27.2,-31.1,70,105000,0,0,144,0,0,0,0,0,0,0,60,5.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-25.6,-28.9,74,105000,0,0,149,0,0,0,0,0,0,0,60,5.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-25.0,-27.8,78,104900,8,809,152,5,64,2,0,0,0,0,70,5.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-24.4,-27.2,78,104900,46,1408,153,13,229,6,1391,11127,1017,163,70,6.7,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-23.3,-26.1,78,104800,65,1408,157,22,253,11,2521,0,1262,384,70,7.2,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-22.8,-25.0,82,104700,56,1408,159,18,239,9,1911,12088,1502,195,70,7.2,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-21.7,-24.4,78,104700,21,1325,162,7,147,2,766,6309,352,72,70,8.2,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-21.7,-23.9,82,104600,0,0,163,0,0,0,0,0,0,0,60,8.2,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-21.1,-23.9,79,104600,0,0,164,0,0,0,0,0,0,0,60,8.2,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-21.7,-24.4,78,104500,0,0,162,0,0,0,0,0,0,0,60,7.2,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-20.6,-23.3,79,104400,0,0,166,0,0,0,0,0,0,0,60,8.2,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-21.1,-23.9,79,104400,0,0,164,0,0,0,0,0,0,0,60,7.7,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-21.7,-24.4,78,104400,0,0,162,0,0,0,0,0,0,0,60,7.7,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-20.0,-22.8,79,104300,0,0,168,0,0,0,0,0,0,0,60,8.2,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-20.6,-22.8,83,104300,0,0,166,0,0,0,0,0,0,0,40,7.7,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-19.4,-21.7,83,104200,0,0,170,0,0,0,0,0,0,0,50,9.3,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-20.0,-22.2,83,104100,0,0,168,0,0,0,0,0,0,0,50,8.8,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-20.6,-22.8,83,104100,0,0,166,0,0,0,0,0,0,0,50,8.2,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-20.6,-22.8,83,104000,0,0,166,0,0,0,0,0,0,0,60,8.2,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-20.0,-22.8,79,103900,0,0,168,0,0,0,0,0,0,0,50,10.3,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-20.6,-23.3,79,103900,0,0,166,0,0,0,0,0,0,0,50,10.3,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-21.7,-23.9,82,103900,0,0,163,0,0,0,0,0,0,0,60,10.3,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-22.2,-24.4,82,103800,0,0,161,0,0,0,0,0,0,0,70,8.2,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-21.7,-26.1,68,103800,0,0,161,0,0,0,0,0,0,0,70,8.2,0,0,2.4,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-20.6,-22.8,83,103700,0,0,172,0,0,0,0,0,0,0,70,8.8,2,2,1.6,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-20.6,-23.3,79,103700,0,0,171,0,0,0,0,0,0,0,60,9.3,3,2,1.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-22.2,-24.4,82,103700,12,973,161,8,160,2,0,0,0,0,70,7.2,0,0,4.8,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-21.1,-23.3,82,103600,53,1407,164,19,347,7,2030,17388,1181,181,60,7.7,0,0,8.0,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-20.6,-22.8,83,103600,72,1407,166,29,365,11,3076,19662,1828,231,60,7.7,0,0,4.8,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-20.6,-23.3,79,103500,63,1407,166,24,353,9,2554,18415,1506,210,60,8.2,0,0,1.6,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-21.7,-23.9,82,103400,28,1407,163,11,287,3,1194,12771,521,100,70,7.2,0,0,1.6,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-21.7,-23.9,82,103400,0,82,163,0,0,0,0,0,0,0,60,9.8,0,0,2.4,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-21.1,-23.9,79,103300,0,0,164,0,0,0,0,0,0,0,50,10.3,0,0,2.4,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-21.1,-23.9,79,103200,0,0,164,0,0,0,0,0,0,0,50,9.8,0,0,2.4,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-20.6,-23.3,79,103100,0,0,166,0,0,0,0,0,0,0,50,11.3,0,0,1.6,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-21.1,-23.3,82,103100,0,0,164,0,0,0,0,0,0,0,50,10.3,0,0,1.6,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-20.6,-23.3,79,103000,0,0,166,0,0,0,0,0,0,0,50,10.3,0,0,3.2,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-20.6,-22.8,83,103000,0,0,166,0,0,0,0,0,0,0,50,10.3,0,0,3.2,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-19.4,-21.7,83,103000,0,0,170,0,0,0,0,0,0,0,50,11.3,0,0,3.2,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-20.0,-22.2,83,102900,0,0,168,0,0,0,0,0,0,0,60,10.3,0,0,6.4,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-20.0,-22.2,83,102800,0,0,168,0,0,0,0,0,0,0,60,11.8,0,0,6.4,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-20.0,-22.2,83,102800,0,0,168,0,0,0,0,0,0,0,60,12.9,0,0,6.4,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-20.0,-22.2,83,102800,0,0,168,0,0,0,0,0,0,0,60,11.8,0,0,6.4,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-21.1,-23.9,79,102700,0,0,164,0,0,0,0,0,0,0,60,12.4,0,0,6.4,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-21.7,-24.4,78,102600,0,0,162,0,0,0,0,0,0,0,60,11.3,0,0,6.4,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-22.2,-24.4,82,102600,0,0,161,0,0,0,0,0,0,0,60,12.4,0,0,3.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-21.7,-24.4,78,102500,0,0,162,0,0,0,0,0,0,0,60,12.4,0,0,3.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-22.2,-24.4,82,102500,0,0,161,0,0,0,0,0,0,0,60,12.4,0,0,3.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-21.1,-23.3,82,102500,0,0,164,0,0,0,0,0,0,0,70,12.9,0,0,4.8,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-20.6,-23.3,79,102500,0,0,166,0,0,0,0,0,0,0,80,12.4,0,0,1.6,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-20.6,-23.3,79,102500,17,1114,166,3,48,2,371,0,247,76,70,11.3,0,0,3.2,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-20.6,-22.8,83,102500,60,1407,166,16,135,11,1824,0,1256,378,70,12.4,0,0,4.8,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-19.4,-21.7,83,102500,79,1407,170,25,174,16,2815,0,1805,535,70,11.3,0,0,4.8,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-18.9,-21.1,83,102400,70,1407,172,21,155,14,2371,0,1584,471,70,13.9,0,0,2.4,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-18.9,-21.1,83,102400,35,1407,172,6,87,4,720,0,480,150,70,13.9,0,0,1.6,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-18.9,-21.1,83,102400,1,246,172,0,0,0,0,0,0,0,90,12.9,0,0,1.6,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-19.4,-21.7,83,102400,0,0,170,0,0,0,0,0,0,0,90,13.9,0,0,1.6,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-19.4,-21.7,83,102400,0,0,170,0,0,0,0,0,0,0,80,13.4,0,0,2.4,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-19.4,-21.7,83,102400,0,0,170,0,0,0,0,0,0,0,90,12.4,0,0,2.4,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-18.9,-21.7,79,102400,0,0,171,0,0,0,0,0,0,0,90,12.9,0,0,2.4,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-19.4,-21.7,83,102400,0,0,170,0,0,0,0,0,0,0,90,13.4,0,0,4.8,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-19.4,-21.7,83,102500,0,0,170,0,0,0,0,0,0,0,90,13.4,0,0,4.8,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-18.9,-21.7,79,102500,0,0,171,0,0,0,0,0,0,0,90,12.4,0,0,8.0,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-18.9,-21.7,79,102600,0,0,171,0,0,0,0,0,0,0,90,11.8,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-19.4,-22.2,79,102600,0,0,170,0,0,0,0,0,0,0,90,11.3,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-20.0,-22.8,79,102600,0,0,168,0,0,0,0,0,0,0,90,10.3,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-20.6,-23.3,79,102600,0,0,166,0,0,0,0,0,0,0,90,10.8,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-21.1,-23.9,79,102500,0,0,164,0,0,0,0,0,0,0,90,11.8,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-21.7,-23.9,82,102600,0,0,163,0,0,0,0,0,0,0,90,11.3,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-21.1,-23.9,79,102500,0,0,164,0,0,0,0,0,0,0,90,12.4,0,0,8.0,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-21.1,-23.9,79,102500,0,0,164,0,0,0,0,0,0,0,100,11.8,0,0,8.0,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-21.1,-23.3,82,102500,0,0,164,0,0,0,0,0,0,0,100,11.8,0,0,8.0,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-20.6,-23.9,75,102500,0,0,165,0,0,0,0,0,0,0,100,12.9,0,0,4.8,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-21.7,-24.4,78,102500,0,0,162,0,0,0,0,0,0,0,110,10.3,0,0,4.8,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-22.2,-25.0,78,102500,23,1277,160,4,59,3,483,0,362,112,100,9.8,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-21.1,-23.3,82,102500,67,1406,164,19,150,13,2152,0,1475,440,110,9.8,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-20.6,-22.8,83,102400,86,1406,166,29,191,18,3255,0,2024,597,110,11.8,0,0,4.8,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-20.6,-23.3,79,102400,77,1406,166,24,172,16,2699,0,1803,533,110,9.3,0,0,4.8,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-21.1,-23.9,79,102400,41,1406,164,8,105,5,951,0,595,185,110,9.3,0,0,4.8,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-22.2,-25.0,78,102400,2,387,160,0,0,0,0,0,0,0,110,7.7,0,0,8.0,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-22.8,-25.6,78,102300,0,0,159,0,0,0,0,0,0,0,110,8.8,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-23.3,-26.1,78,102300,0,0,157,0,0,0,0,0,0,0,110,7.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-23.3,-26.1,78,102200,0,0,157,0,0,0,0,0,0,0,110,9.3,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-22.8,-25.6,78,102200,0,0,159,0,0,0,0,0,0,0,110,9.3,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-23.9,-26.7,78,102200,0,0,155,0,0,0,0,0,0,0,100,8.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-23.9,-26.7,78,102100,0,0,155,0,0,0,0,0,0,0,120,7.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-25.6,-28.3,78,102100,0,0,150,0,0,0,0,0,0,0,100,6.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-26.7,-29.4,77,102000,0,0,146,0,0,0,0,0,0,0,100,6.2,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-26.7,-29.4,77,102000,0,0,146,0,0,0,0,0,0,0,100,6.7,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-26.7,-30.0,74,102000,0,0,146,0,0,0,0,0,0,0,100,6.2,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-27.8,-31.1,73,101900,0,0,143,0,0,0,0,0,0,0,120,4.6,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-28.9,-32.2,73,101800,0,0,139,0,0,0,0,0,0,0,110,5.2,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-29.4,-32.8,73,101800,0,0,138,0,0,0,0,0,0,0,120,5.2,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-30.6,-33.9,73,101800,0,0,135,0,0,0,0,0,0,0,120,4.1,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-31.1,-34.4,72,101700,0,0,133,0,0,0,0,0,0,0,130,4.6,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-31.7,-35.0,72,101600,0,0,131,0,0,0,0,0,0,0,140,4.1,0,0,16.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-31.1,-35.0,69,101600,0,0,133,0,0,0,0,0,0,0,140,2.6,0,0,16.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-30.6,-34.4,69,101600,0,12,147,0,0,0,0,0,0,0,170,2.6,10,8,11.3,30,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-30.0,-33.9,69,101600,29,1406,157,5,1,5,586,0,586,180,140,3.6,10,10,1.6,30,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-29.4,-32.2,77,101600,74,1406,145,23,72,19,2543,0,2106,594,180,1.5,4,4,0.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-22.8,-25.6,78,101500,93,1406,183,25,2,25,2748,0,2756,767,360,2.6,10,10,0.0,0,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-23.9,-26.1,82,101400,84,1406,179,18,2,18,2018,0,2022,594,90,2.1,10,10,0.0,0,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-22.8,-25.0,82,101400,49,1406,183,6,1,6,709,0,709,221,150,2.6,10,10,0.0,0,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-22.2,-23.9,86,101400,6,551,186,1,0,1,0,0,0,0,130,1.5,10,10,0.0,0,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-21.7,-23.9,82,101400,0,0,188,0,0,0,0,0,0,0,0,0.0,10,10,0.0,0,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-21.1,-23.3,82,101300,0,0,190,0,0,0,0,0,0,0,0,0.0,10,10,0.4,30,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-19.4,-21.1,87,101300,0,0,197,0,0,0,0,0,0,0,130,1.5,10,10,0.4,30,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-18.9,-21.1,83,101200,0,0,198,0,0,0,0,0,0,0,160,1.5,10,10,0.4,30,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-19.4,-21.7,83,101200,0,0,196,0,0,0,0,0,0,0,0,0.0,10,10,0.4,30,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-20.0,-22.2,83,101200,0,0,194,0,0,0,0,0,0,0,140,2.1,10,10,0.4,120,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-19.4,-21.1,87,101200,0,0,197,0,0,0,0,0,0,0,0,0.0,10,10,0.4,270,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-20.0,-22.2,83,101200,0,0,194,0,0,0,0,0,0,0,50,1.5,10,10,0.4,240,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-20.6,-22.8,83,101200,0,0,192,0,0,0,0,0,0,0,60,1.5,10,10,2.4,180,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-22.8,-25.0,82,101200,0,0,167,0,0,0,0,0,0,0,0,0.0,5,4,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-23.3,-26.1,78,101200,0,0,181,0,0,0,0,0,0,0,90,1.5,10,10,11.3,150,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-24.4,-27.2,78,101100,0,0,177,0,0,0,0,0,0,0,60,2.1,10,10,11.3,150,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-26.1,-29.4,74,101100,0,0,155,0,0,0,0,0,0,0,60,2.1,5,4,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-26.1,-28.9,78,101100,0,0,157,0,0,0,0,0,0,0,70,2.1,5,5,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-27.2,-29.4,81,101100,0,0,168,0,0,0,0,0,0,0,90,2.1,10,10,11.3,150,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-26.1,-32.2,57,101100,0,0,168,0,0,0,0,0,0,0,80,1.5,10,10,11.3,120,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-26.1,-28.9,78,101100,0,0,171,0,0,0,0,0,0,0,20,1.5,10,10,3.2,120,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-26.7,-29.4,77,101100,0,152,169,0,0,0,0,0,0,0,50,1.5,10,10,6.4,180,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-26.7,-29.4,77,101200,36,1405,151,7,84,5,827,0,591,183,40,2.6,4,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-26.1,-28.9,78,101200,81,1405,153,27,155,19,3005,0,2120,611,30,2.6,4,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-25.0,-27.8,78,101200,101,1405,157,36,137,27,3956,0,2975,829,10,3.1,5,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-25.6,-28.9,74,101200,92,1405,154,32,154,23,3538,0,2550,723,30,3.1,4,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-25.6,-28.9,74,101100,56,1405,149,15,145,10,1716,0,1145,346,20,3.6,2,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-26.1,-28.9,78,101100,7,691,148,4,24,2,0,0,0,0,30,3.6,3,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-26.7,-30.0,74,101200,0,0,149,0,0,0,0,0,0,0,40,3.6,3,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-27.2,-30.0,77,101200,0,0,151,0,0,0,0,0,0,0,40,3.6,5,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-26.7,-29.4,77,101100,0,0,154,0,0,0,0,0,0,0,50,3.6,6,4,11.3,310,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-26.7,-29.4,77,101200,0,0,158,0,0,0,0,0,0,0,70,3.1,8,7,11.3,310,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-25.0,-27.8,78,101200,0,0,170,0,0,0,0,0,0,0,60,4.1,10,9,11.3,310,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-23.3,-26.1,78,101200,0,0,176,0,0,0,0,0,0,0,50,4.1,10,9,11.3,310,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-23.3,-26.7,74,101300,0,0,181,0,0,0,0,0,0,0,50,3.6,10,10,11.3,370,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-23.9,-26.7,78,101200,0,0,179,0,0,0,0,0,0,0,30,4.6,10,10,11.3,370,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-23.9,-26.7,78,101300,0,0,179,0,0,0,0,0,0,0,40,4.6,10,10,11.3,370,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-24.4,-27.2,78,101300,0,0,177,0,0,0,0,0,0,0,40,4.1,10,10,11.3,400,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-25.0,-27.8,78,101300,0,0,175,0,0,0,0,0,0,0,40,4.6,10,10,11.3,400,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-25.6,-28.9,74,101300,0,0,172,0,0,0,0,0,0,0,50,4.6,10,10,11.3,400,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-25.6,-28.9,74,101300,0,0,172,0,0,0,0,0,0,0,40,4.6,10,10,11.3,400,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-25.6,-28.9,74,101400,0,0,172,0,0,0,0,0,0,0,40,4.6,10,10,11.3,400,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-26.7,-30.0,74,101500,0,0,156,0,0,0,0,0,0,0,40,5.2,8,6,11.3,2440,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-28.3,-33.3,62,101500,0,0,146,0,0,0,0,0,0,0,40,4.6,4,3,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-28.9,-32.8,69,101600,0,0,144,0,0,0,0,0,0,0,40,4.6,6,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-29.4,-32.8,73,101600,1,293,141,0,0,0,0,0,0,0,40,5.2,8,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-30.0,-33.3,73,101700,43,1405,139,14,126,10,1579,0,1130,331,50,3.6,10,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-30.0,-33.3,73,101700,89,1405,139,36,149,27,3918,0,2947,787,50,3.6,10,1,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-30.6,-34.4,69,101800,108,1405,134,49,324,25,5451,0,2788,809,40,4.1,6,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-30.6,-34.4,69,101800,99,1405,134,44,342,21,4932,0,2359,696,40,4.1,4,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-31.1,-34.4,72,101900,63,1405,133,24,297,12,2528,15342,1980,199,30,4.1,3,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-31.1,-34.4,72,101900,11,831,133,8,111,3,0,0,0,0,40,4.6,2,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-31.7,-35.0,72,101900,0,0,131,0,0,0,0,0,0,0,50,3.6,2,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-31.7,-35.0,72,102000,0,0,131,0,0,0,0,0,0,0,40,4.1,2,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-30.6,-34.4,69,102000,0,0,137,0,0,0,0,0,0,0,40,4.1,1,1,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-30.6,-34.4,69,102100,0,0,134,0,0,0,0,0,0,0,30,4.6,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-30.6,-34.4,69,102100,0,0,134,0,0,0,0,0,0,0,40,4.6,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-31.1,-35.0,69,102200,0,0,133,0,0,0,0,0,0,0,30,4.1,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-31.7,-35.0,72,102200,0,0,131,0,0,0,0,0,0,0,50,4.1,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-32.2,-36.1,68,102200,0,0,130,0,0,0,0,0,0,0,50,2.6,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-31.7,-35.6,68,102200,0,0,131,0,0,0,0,0,0,0,50,3.1,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-32.8,-35.6,76,102300,0,0,129,0,0,0,0,0,0,0,60,1.5,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-32.2,-36.1,68,102300,0,0,130,0,0,0,0,0,0,0,20,1.5,0,0,16.1,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-29.4,-32.8,73,102300,0,0,138,0,0,0,0,0,0,0,350,1.5,0,0,16.1,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-28.9,-32.2,73,102300,0,0,139,0,0,0,0,0,0,0,340,1.5,0,0,16.1,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-28.9,-32.2,73,102300,0,0,139,0,0,0,0,0,0,0,350,3.1,0,0,16.1,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-29.4,-32.8,73,102300,0,0,138,0,0,0,0,0,0,0,320,3.1,0,0,16.1,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-29.4,-35.0,59,102300,0,0,137,0,0,0,0,0,0,0,310,3.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-29.4,-33.3,69,102300,0,0,138,0,0,0,0,0,0,0,290,4.1,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-28.9,-32.8,69,102300,24,433,139,4,16,1,0,0,0,0,300,3.6,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-26.7,-30.0,74,102300,50,1404,146,17,281,8,1806,13827,1339,181,330,3.6,1,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-26.1,-30.0,70,102300,96,1404,147,41,372,17,4663,0,1937,589,330,3.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-26.7,-30.0,74,102400,116,1404,146,53,415,20,6036,0,2282,700,330,3.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-27.8,-31.1,73,102300,107,1404,143,47,397,18,5365,0,2058,631,320,3.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-27.8,-31.1,73,102300,71,1404,143,27,321,12,2851,17118,1985,224,330,3.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-27.8,-31.1,73,102300,15,971,143,9,129,3,0,0,0,0,330,3.1,2,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-28.3,-31.1,77,102300,0,0,144,0,0,0,0,0,0,0,340,2.6,3,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-30.0,-32.8,77,102300,0,0,139,0,0,0,0,0,0,0,320,2.6,3,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-28.3,-31.7,73,102300,0,0,141,0,0,0,0,0,0,0,340,2.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-30.6,-33.9,73,102300,0,0,135,0,0,0,0,0,0,0,10,1.5,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-30.6,-33.9,73,102300,0,0,135,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-31.1,-34.4,72,102300,0,0,133,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-32.2,-35.6,72,102300,0,0,130,0,0,0,0,0,0,0,100,2.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-31.7,-35.0,72,102200,0,0,131,0,0,0,0,0,0,0,120,1.5,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-32.8,-36.7,68,102300,0,0,128,0,0,0,0,0,0,0,0,0.0,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-32.8,-36.7,68,102200,0,0,128,0,0,0,0,0,0,0,0,0.0,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-33.3,-36.7,72,102200,0,0,127,0,0,0,0,0,0,0,0,0.0,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-33.3,-36.7,72,102200,0,0,127,0,0,0,0,0,0,0,0,0.0,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-32.2,-36.1,68,102200,0,0,130,0,0,0,0,0,0,0,0,0.0,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-32.2,-36.1,68,102200,0,0,130,0,0,0,0,0,0,0,0,0.0,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-29.4,-32.8,73,102100,0,0,152,0,0,0,0,0,0,0,50,1.5,8,8,11.3,150,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-31.7,-36.7,61,102100,0,0,150,0,0,0,0,0,0,0,110,2.1,10,10,11.3,240,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-32.8,-36.7,68,102100,0,0,148,0,0,0,0,0,0,0,100,2.6,10,10,11.3,240,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-30.0,-33.3,73,102000,5,573,157,0,0,0,0,0,0,0,80,2.1,10,10,6.4,400,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-30.6,-33.9,73,102000,58,1404,155,14,8,14,1562,0,1565,450,120,2.6,10,10,3.2,400,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-30.0,-33.9,69,102000,104,1404,149,36,34,34,3890,0,3686,956,140,2.1,10,8,6.4,430,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-28.9,-31.7,77,102000,124,1404,161,40,2,40,4326,0,4340,1135,130,2.1,10,10,6.4,430,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-28.9,-32.2,73,101900,115,1404,161,24,4,23,2701,0,2594,776,140,1.5,10,10,4.8,520,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-28.9,-31.7,77,101900,78,1404,149,29,59,26,3135,0,2820,729,90,2.1,10,6,11.3,520,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-30.6,-33.9,73,101800,21,1111,151,5,5,5,578,0,578,174,120,2.1,10,9,11.3,550,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-31.1,-35.0,69,101800,0,0,149,0,0,0,0,0,0,0,100,2.1,10,9,11.3,550,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-31.1,-35.0,69,101700,0,0,149,0,0,0,0,0,0,0,100,2.1,10,9,11.3,550,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-29.4,-32.8,73,101700,0,0,159,0,0,0,0,0,0,0,120,2.6,10,10,11.3,460,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-28.3,-31.7,73,101600,0,0,163,0,0,0,0,0,0,0,60,2.1,10,10,11.3,370,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-26.1,-28.9,78,101600,0,0,171,0,0,0,0,0,0,0,50,2.6,10,10,11.3,310,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-26.1,-28.9,78,101600,0,0,171,0,0,0,0,0,0,0,70,2.6,10,10,11.3,310,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-25.6,-28.9,74,101500,0,0,172,0,0,0,0,0,0,0,60,2.1,10,10,11.3,370,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-25.6,-28.3,78,101500,0,0,173,0,0,0,0,0,0,0,50,2.6,10,10,11.3,400,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-25.6,-28.9,74,101500,0,0,172,0,0,0,0,0,0,0,60,2.6,10,10,11.3,550,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-26.1,-29.4,74,101400,0,0,171,0,0,0,0,0,0,0,60,2.6,10,10,11.3,520,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-28.9,-32.2,73,101400,0,0,151,0,0,0,0,0,0,0,60,3.1,7,7,11.3,550,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-27.2,-30.6,73,101400,0,0,167,0,0,0,0,0,0,0,50,2.6,10,10,11.3,520,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-26.1,-28.9,78,101300,0,0,171,0,0,0,0,0,0,0,50,3.1,10,10,11.3,610,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-25.0,-27.8,78,101300,0,0,175,0,0,0,0,0,0,0,60,3.1,10,10,11.3,700,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-24.4,-27.2,78,101200,0,0,177,0,0,0,0,0,0,0,50,3.1,10,10,11.3,640,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-23.9,-27.2,74,101200,0,0,179,0,0,0,0,0,0,0,80,4.1,10,10,11.3,910,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-24.4,-27.8,74,101200,0,0,177,0,0,0,0,0,0,0,60,4.6,10,10,4.8,910,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-24.4,-27.8,74,101100,9,690,177,2,0,2,0,0,0,0,50,4.1,10,10,3.2,1130,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-25.0,-27.8,78,101100,65,1403,175,11,4,11,1261,0,1262,384,50,5.2,10,10,1.6,1130,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-25.0,-27.8,78,101100,112,1403,175,22,4,21,2488,0,2380,719,50,4.1,10,10,1.6,1310,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-24.4,-27.2,78,101000,132,1403,177,37,4,37,4048,0,4061,1122,50,5.2,10,10,1.6,1310,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-23.9,-26.7,78,101000,123,1403,179,42,1,42,4519,0,4535,1155,50,4.1,10,10,3.2,1310,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-23.3,-26.1,78,101000,86,1403,181,20,2,20,2225,0,2230,643,60,3.6,10,10,4.8,1310,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-23.3,-26.1,78,101000,26,1228,181,2,0,2,193,0,195,77,60,4.6,10,10,4.8,1310,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-23.3,-26.1,78,100900,0,0,181,0,0,0,0,0,0,0,50,4.6,10,10,4.8,1130,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-23.9,-26.7,78,100900,0,0,179,0,0,0,0,0,0,0,50,5.2,10,10,4.8,980,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-23.9,-26.7,78,100900,0,0,179,0,0,0,0,0,0,0,50,4.6,10,10,4.8,980,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-23.9,-26.7,78,100800,0,0,179,0,0,0,0,0,0,0,30,4.6,10,10,4.8,910,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-23.9,-26.7,78,100800,0,0,179,0,0,0,0,0,0,0,40,4.1,10,10,4.8,980,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-23.9,-26.7,78,100800,0,0,179,0,0,0,0,0,0,0,40,5.2,10,10,4.8,980,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-24.4,-27.2,78,100800,0,0,177,0,0,0,0,0,0,0,50,4.6,10,10,9.7,1130,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-25.0,-27.8,78,100700,0,0,175,0,0,0,0,0,0,0,50,4.1,10,10,9.7,1130,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-25.0,-27.8,78,100700,0,0,175,0,0,0,0,0,0,0,40,4.1,10,10,9.7,1130,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-25.6,-28.3,78,100700,0,0,173,0,0,0,0,0,0,0,30,4.1,10,10,9.7,1310,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-24.4,-27.8,74,100700,0,0,177,0,0,0,0,0,0,0,40,4.1,10,10,9.7,1310,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-24.4,-27.2,78,100700,0,0,159,0,0,0,0,0,0,0,50,4.1,7,2,9.7,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-25.6,-28.3,78,100700,0,0,156,0,0,0,0,0,0,0,40,3.1,8,3,9.7,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-25.0,-27.8,78,100600,0,0,167,0,0,0,0,0,0,0,40,4.1,10,8,9.7,1520,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-25.0,-27.8,78,100600,0,0,175,0,0,0,0,0,0,0,40,4.6,10,10,9.7,1520,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-25.6,-28.3,78,100600,0,0,168,0,0,0,0,0,0,0,50,3.6,10,9,11.3,1520,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-26.7,-30.0,74,100600,0,0,158,0,0,0,0,0,0,0,50,3.6,9,7,11.3,1520,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-27.8,-30.6,77,100500,12,830,149,5,26,4,0,0,0,0,50,3.1,6,3,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-27.8,-31.1,73,100500,73,1403,150,25,36,23,2717,0,2507,664,50,3.1,8,4,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-27.2,-30.6,73,100500,120,1403,152,53,124,43,5680,0,4625,1150,40,3.1,10,4,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-27.8,-31.1,73,100500,140,1403,145,63,324,32,7013,0,3571,1047,50,3.1,5,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-27.8,-31.1,73,100500,131,1403,145,59,252,36,6467,0,3958,1100,50,2.6,4,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-28.9,-32.2,73,100500,94,1403,139,38,320,18,4293,0,2037,610,50,3.1,1,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-29.4,-32.8,73,100500,33,1367,138,12,180,5,1283,8135,849,136,50,2.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-29.4,-33.3,69,100500,0,0,138,0,0,0,0,0,0,0,50,2.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-30.0,-33.3,73,100500,0,0,136,0,0,0,0,0,0,0,50,2.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-30.6,-34.4,69,100500,0,0,134,0,0,0,0,0,0,0,70,2.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-30.0,-33.3,73,100500,0,0,136,0,0,0,0,0,0,0,60,2.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-30.6,-33.9,73,100500,0,0,135,0,0,0,0,0,0,0,50,3.1,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-31.1,-34.4,72,100500,0,0,133,0,0,0,0,0,0,0,60,2.6,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-30.0,-33.3,73,100500,0,0,136,0,0,0,0,0,0,0,60,2.1,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-31.1,-34.4,72,100500,0,0,138,0,0,0,0,0,0,0,60,2.6,6,2,16.1,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-30.6,-33.9,73,100500,0,0,139,0,0,0,0,0,0,0,60,2.6,4,2,16.1,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-30.0,-33.3,73,100500,0,0,139,0,0,0,0,0,0,0,50,3.1,3,1,16.1,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-30.0,-33.3,73,100500,0,0,136,0,0,0,0,0,0,0,50,2.6,0,0,16.1,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-30.0,-33.9,69,100500,0,0,136,0,0,0,0,0,0,0,50,2.6,0,0,16.1,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-31.1,-34.4,72,100500,0,0,136,0,0,0,0,0,0,0,60,2.6,2,1,16.1,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-30.6,-34.4,69,100500,0,0,134,0,0,0,0,0,0,0,60,2.1,0,0,16.1,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-31.7,-35.0,72,100500,0,0,131,0,0,0,0,0,0,0,60,2.6,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-31.7,-38.9,49,100500,0,0,129,0,0,0,0,0,0,0,70,2.6,1,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-33.9,-38.3,64,100500,0,0,125,0,0,0,0,0,0,0,100,3.1,1,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-34.4,-38.3,68,100600,17,946,126,5,56,3,0,0,0,0,110,2.6,5,1,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-34.4,-38.3,68,100600,81,1402,124,30,228,18,3353,0,2016,587,150,1.5,3,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-32.8,-36.7,68,100600,128,1402,131,53,264,30,5887,0,3341,970,130,1.5,4,1,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-31.1,-35.0,69,100700,148,1402,137,69,242,44,7518,14,4810,1308,120,1.0,5,2,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-32.2,-36.1,68,100700,139,1402,132,61,188,43,6622,0,4683,1250,120,2.6,10,1,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-32.2,-36.1,68,100700,101,1402,132,41,131,31,4456,0,3380,900,0,0.0,10,1,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-32.8,-36.7,68,100700,40,1402,132,11,44,10,1236,0,1126,327,0,0.0,9,2,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-32.2,-36.1,68,100700,0,82,134,0,0,0,0,0,0,0,0,0.0,10,2,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-31.7,-35.0,72,100700,0,0,137,0,0,0,0,0,0,0,0,0.0,10,3,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-32.2,-35.6,72,100800,0,0,134,0,0,0,0,0,0,0,90,1.5,10,2,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-32.8,-36.7,68,100800,0,0,134,0,0,0,0,0,0,0,110,2.6,10,3,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-33.3,-36.7,72,100800,0,0,132,0,0,0,0,0,0,0,110,2.6,10,3,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-34.4,-38.3,68,100900,0,0,129,0,0,0,0,0,0,0,110,2.6,10,3,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-35.0,-39.4,64,100900,0,0,127,0,0,0,0,0,0,0,110,2.6,10,3,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-35.6,-39.4,67,100900,0,0,128,0,0,0,0,0,0,0,110,2.6,10,5,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-35.6,-39.4,67,100900,0,0,129,0,0,0,0,0,0,0,120,2.1,10,6,11.3,1830,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-35.0,-38.9,67,101000,0,0,141,0,0,0,0,0,0,0,100,2.6,10,10,11.3,1830,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-34.4,-38.9,64,100900,0,0,142,0,0,0,0,0,0,0,120,2.1,10,10,11.3,1830,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-35.0,-38.9,67,100900,0,0,132,0,0,0,0,0,0,0,120,2.1,7,7,11.3,1830,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-36.1,-40.0,67,100900,0,0,124,0,0,0,0,0,0,0,120,1.5,3,3,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-36.1,-40.0,67,100900,0,0,119,0,0,0,0,0,0,0,100,1.5,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-36.7,-41.1,63,101000,0,0,117,0,0,0,0,0,0,0,110,2.1,0,0,16.1,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-36.7,-41.1,63,100900,0,0,120,0,0,0,0,0,0,0,130,1.5,3,1,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-36.7,-41.1,63,101000,0,0,120,0,0,0,0,0,0,0,110,1.5,4,1,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-36.7,-41.1,63,100900,22,1086,120,10,127,5,1158,0,579,175,100,1.5,4,1,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-35.0,-39.4,64,101000,89,1401,124,34,188,22,3763,0,2441,693,60,2.1,4,1,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-36.1,-40.6,63,101000,136,1401,119,66,441,25,7481,0,2839,868,80,2.6,2,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-36.7,-41.1,63,101000,156,1401,117,79,479,27,9003,0,3083,958,60,2.6,2,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-36.1,-40.0,67,101000,147,1401,119,72,404,31,8072,0,3484,1043,80,3.1,5,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1988,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,-36.7,-40.6,67,101000,109,1401,124,46,84,40,4923,0,4297,1057,80,3.1,10,4,4.8,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-36.1,-40.6,63,101000,48,1401,125,14,49,12,1564,0,1343,386,60,2.6,10,4,4.8,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-36.7,-41.1,63,101000,1,222,120,0,0,0,0,0,0,0,70,3.1,6,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-37.2,-39.8,75,101100,0,0,117,0,0,0,0,0,0,0,70,3.1,3,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-38.3,-39.8,85,101100,0,0,117,0,0,0,0,0,0,0,80,2.6,2,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-37.8,-41.5,66,101100,0,0,115,0,0,0,0,0,0,0,80,2.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-37.2,-40.2,71,101200,0,0,117,0,0,0,0,0,0,0,80,2.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-37.2,-40.3,71,101200,0,0,117,0,0,0,0,0,0,0,90,2.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-38.3,-41.9,67,101200,0,0,114,0,0,0,0,0,0,0,90,2.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-36.7,-40.6,67,101200,0,0,118,0,0,0,0,0,0,0,70,2.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-38.3,-40.7,76,101300,0,0,114,0,0,0,0,0,0,0,80,2.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-37.8,-42.0,62,101300,0,0,115,0,0,0,0,0,0,0,80,3.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-39.4,-40.5,88,101300,0,0,112,0,0,0,0,0,0,0,90,2.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-40.0,-40.6,93,101300,0,0,111,0,0,0,0,0,0,0,90,2.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-39.4,-42.1,74,101400,0,0,112,0,0,0,0,0,0,0,70,2.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-38.3,-40.8,75,101400,0,0,114,0,0,0,0,0,0,0,90,2.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-38.3,-40.7,76,101400,0,0,114,0,0,0,0,0,0,0,90,2.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-37.2,-42.2,57,101400,0,0,118,0,0,0,0,0,0,0,110,2.1,6,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-36.1,-40.6,63,101400,0,0,127,0,0,0,0,0,0,0,70,2.6,10,6,11.3,6100,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-35.0,-38.9,67,101400,28,1202,141,1,1,1,132,0,131,40,70,3.1,10,10,4.8,6100,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-34.4,-38.3,68,101400,97,1401,132,25,23,24,2766,0,2662,756,80,2.6,10,6,4.8,6100,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-33.3,-36.7,72,101400,144,1401,135,50,60,44,5436,0,4799,1291,60,2.6,10,5,6.4,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-32.8,-36.7,68,101400,164,1401,135,70,58,63,7469,955,6749,1639,70,2.6,10,4,8.0,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-33.9,-37.8,68,101400,155,1401,132,62,81,54,6668,717,5829,1486,70,2.6,10,5,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-33.9,-37.8,68,101400,117,1401,127,41,183,26,4576,0,2909,853,60,3.1,2,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-35.6,-39.4,67,101300,55,1401,121,13,99,9,1499,0,1039,317,80,3.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-36.7,-40.6,67,101300,6,339,118,1,2,1,0,0,0,0,80,3.1,0,0,6.4,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-36.7,-41.1,63,101200,0,0,117,0,0,0,0,0,0,0,80,3.6,0,0,6.4,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-36.7,-41.1,63,101200,0,0,117,0,0,0,0,0,0,0,70,3.1,0,0,6.4,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-35.0,-39.4,64,101200,0,0,122,0,0,0,0,0,0,0,60,3.6,0,0,6.4,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-35.6,-39.4,67,101100,0,0,121,0,0,0,0,0,0,0,50,3.6,0,0,6.4,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-36.1,-40.0,67,101100,0,0,119,0,0,0,0,0,0,0,60,3.1,0,0,6.4,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-36.1,-40.6,63,101100,0,0,119,0,0,0,0,0,0,0,50,3.1,0,0,6.4,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-36.1,-40.0,67,101100,0,0,119,0,0,0,0,0,0,0,50,3.1,0,0,6.4,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-36.1,-40.6,63,101000,0,0,119,0,0,0,0,0,0,0,50,3.6,0,0,6.4,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-36.7,-40.6,67,101000,0,0,118,0,0,0,0,0,0,0,60,3.1,0,0,6.4,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-36.1,-40.0,67,100900,0,0,119,0,0,0,0,0,0,0,50,3.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-36.1,-40.0,67,100900,0,0,119,0,0,0,0,0,0,0,50,3.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-35.6,-39.4,67,100900,0,0,121,0,0,0,0,0,0,0,50,3.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-34.4,-38.3,68,100900,0,0,124,0,0,0,0,0,0,0,50,4.1,1,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-34.4,-38.3,68,100800,0,0,128,0,0,0,0,0,0,0,40,4.1,6,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-33.9,-38.9,60,100800,0,0,129,0,0,0,0,0,0,0,40,4.1,6,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-32.8,-36.7,68,100800,0,0,132,0,0,0,0,0,0,0,30,4.1,6,2,6.4,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-33.3,-37.2,68,100800,35,1342,131,9,66,6,1047,0,698,214,40,3.6,5,2,6.4,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-31.7,-35.6,68,100700,105,1400,144,30,16,29,3288,0,3187,879,30,4.1,10,8,6.4,6100,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-30.6,-34.4,69,100700,152,1400,141,68,122,55,7290,1124,5919,1481,30,4.1,10,4,6.4,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-29.4,-32.8,73,100600,173,1400,145,77,84,67,8210,1677,7173,1736,30,4.1,10,4,6.4,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-28.9,-32.2,73,100500,163,1400,148,70,71,62,7475,1103,6647,1624,30,3.6,10,5,4.8,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-28.3,-31.1,77,100400,126,1400,156,37,20,35,4051,0,3843,1062,10,3.6,10,8,4.8,6100,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-27.8,-31.1,73,100400,63,1400,165,10,34,9,1162,0,1047,323,360,3.6,10,10,4.8,6100,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-27.8,-31.1,73,100300,6,455,165,1,0,1,0,0,0,0,360,4.1,10,10,4.8,6100,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-27.2,-30.6,73,100300,0,0,167,0,0,0,0,0,0,0,60,4.1,10,10,4.8,2130,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-27.8,-31.1,73,100300,0,0,165,0,0,0,0,0,0,0,60,4.1,10,10,11.3,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-28.3,-31.7,73,100200,0,0,163,0,0,0,0,0,0,0,50,3.6,10,10,11.3,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-28.3,-31.1,77,100200,0,0,163,0,0,0,0,0,0,0,40,3.1,10,10,11.3,980,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-27.8,-30.6,77,100200,0,0,165,0,0,0,0,0,0,0,50,3.1,10,10,11.3,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-27.2,-30.6,73,100100,0,0,167,0,0,0,0,0,0,0,70,3.1,10,10,11.3,910,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-26.1,-29.4,74,100100,0,0,171,0,0,0,0,0,0,0,50,3.6,10,10,11.3,910,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-26.7,-29.4,77,100100,0,0,169,0,0,0,0,0,0,0,60,3.1,10,10,11.3,980,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-26.1,-29.4,74,100000,0,0,153,0,0,0,0,0,0,0,60,3.6,5,2,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-25.6,-28.9,74,100000,0,0,154,0,0,0,0,0,0,0,50,3.6,4,2,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-25.0,-27.8,78,99900,0,0,158,0,0,0,0,0,0,0,60,4.1,6,3,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-25.0,-27.8,78,99800,0,0,158,0,0,0,0,0,0,0,50,4.1,6,3,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-24.4,-27.2,78,99700,0,0,161,0,0,0,0,0,0,0,70,4.6,10,4,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-25.0,-27.8,78,99700,0,0,157,0,0,0,0,0,0,0,70,3.6,7,2,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-23.9,-27.8,70,99600,0,0,165,0,0,0,0,0,0,0,80,4.6,10,6,11.3,2440,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-23.3,-26.7,74,99600,0,58,181,0,0,0,0,0,0,0,80,5.2,10,10,4.8,2440,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-23.3,-26.1,78,99600,43,1400,181,7,1,7,812,0,812,248,90,4.1,10,10,1.6,90,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-23.3,-26.7,74,99600,113,1400,181,23,0,23,2241,0,2256,772,90,4.6,10,10,2.0,760,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-23.3,-26.1,78,99600,161,1400,181,33,1,33,3709,0,3718,1125,110,5.2,10,10,11.3,1130,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-23.3,-26.1,78,99500,181,1400,170,75,28,72,7982,667,7694,1842,110,3.6,9,7,11.3,1130,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-25.6,-28.9,74,99600,172,1400,172,39,4,38,4358,0,4258,1274,140,3.1,10,10,11.3,1520,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-25.0,-27.8,78,99600,134,1400,170,57,46,53,6057,243,5654,1333,180,4.1,9,9,11.3,2440,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-26.1,-28.9,78,99600,71,1400,163,22,30,20,2414,0,2200,605,190,4.6,9,8,11.3,2290,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-28.3,-31.7,73,99700,7,595,148,1,6,1,0,0,0,0,210,4.1,6,4,11.3,2290,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-28.9,-32.2,73,99700,0,0,148,0,0,0,0,0,0,0,210,3.1,6,5,11.3,2290,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-30.6,-33.9,73,99800,0,0,140,0,0,0,0,0,0,0,210,3.1,5,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-32.8,-36.7,68,99900,0,0,128,0,0,0,0,0,0,0,200,3.1,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-33.3,-37.2,68,100000,0,0,127,0,0,0,0,0,0,0,200,1.5,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-33.9,-38.3,64,100000,0,0,125,0,0,0,0,0,0,0,180,3.6,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-32.8,-36.7,68,100000,0,0,137,0,0,0,0,0,0,0,190,3.1,8,6,11.3,6100,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-33.3,-36.7,72,100100,0,0,132,0,0,0,0,0,0,0,220,3.1,7,3,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-31.7,-35.0,72,100200,0,0,134,0,0,0,0,0,0,0,230,1.5,3,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-30.6,-33.9,73,100200,0,0,137,0,0,0,0,0,0,0,230,1.5,3,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-29.4,-32.8,73,100200,0,0,143,0,0,0,0,0,0,0,220,2.1,4,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-28.3,-31.1,77,100300,0,0,146,0,0,0,0,0,0,0,220,2.1,4,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-27.2,-30.0,77,100300,0,0,153,0,0,0,0,0,0,0,240,2.6,7,5,8.0,2130,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-27.2,-30.6,73,100300,0,0,152,0,0,0,0,0,0,0,250,5.2,7,4,8.0,2130,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-27.2,-30.6,73,100400,0,0,167,0,0,0,0,0,0,0,290,5.2,10,10,8.0,2130,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-27.2,-33.3,56,100400,0,0,165,0,0,0,0,0,0,0,260,6.7,10,10,8.0,2130,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-27.8,-31.1,73,100400,1,198,165,0,0,0,0,0,0,0,270,6.7,10,10,2.0,2130,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-27.8,-31.1,73,100400,51,1399,165,9,2,9,1032,0,1034,313,260,7.2,10,10,4.8,2440,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-27.2,-30.6,73,100500,121,1399,167,27,9,26,3021,0,2916,863,270,6.2,10,10,3.2,2440,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-27.2,-30.6,73,100600,169,1399,167,67,2,67,7131,39,7160,1711,270,6.2,10,10,4.8,2440,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-27.8,-31.1,73,100600,189,1399,153,72,57,64,7775,1131,6938,1821,270,6.7,10,6,11.3,6100,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-28.9,-32.2,73,100700,180,1399,149,75,56,68,8019,1196,7300,1802,260,7.2,10,6,11.3,6100,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-28.3,-31.7,73,100700,142,1399,151,59,12,57,6265,115,6077,1424,270,8.8,10,6,11.3,6100,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-28.3,-32.2,69,100800,79,1399,155,27,37,25,2930,0,2721,716,260,8.8,10,8,11.3,6100,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-29.4,-32.8,73,101000,10,711,145,4,8,4,0,0,0,0,260,9.3,10,4,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-29.4,-32.8,73,101000,0,0,145,0,0,0,0,0,0,0,270,9.3,10,4,6.4,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-29.4,-32.8,73,101100,0,0,145,0,0,0,0,0,0,0,260,10.3,10,4,6.4,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-29.4,-32.8,73,101300,0,0,152,0,0,0,0,0,0,0,270,9.3,10,8,6.4,6100,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-29.4,-32.8,73,101400,0,0,155,0,0,0,0,0,0,0,260,9.8,10,9,6.4,6100,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-29.4,-32.8,73,101500,0,0,159,0,0,0,0,0,0,0,250,5.2,10,10,6.4,6100,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-30.6,-33.9,73,101600,0,0,143,0,0,0,0,0,0,0,240,4.1,10,5,6.4,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-31.1,-35.0,69,101700,0,0,140,0,0,0,0,0,0,0,230,3.1,8,4,6.4,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-31.1,-34.4,72,101800,0,0,140,0,0,0,0,0,0,0,230,2.1,8,4,6.4,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-31.7,-35.0,72,101900,0,0,136,0,0,0,0,0,0,0,230,2.6,5,2,8.0,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-31.7,-35.0,72,102000,0,0,136,0,0,0,0,0,0,0,240,3.1,5,2,8.0,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-33.3,-37.2,68,102100,0,0,131,0,0,0,0,0,0,0,210,4.6,4,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-33.3,-37.8,64,102200,0,0,126,0,0,0,0,0,0,0,210,3.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-35.0,-39.4,64,102200,0,0,122,0,0,0,0,0,0,0,210,4.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-37.2,-39.7,64,102300,0,0,119,0,0,0,0,0,0,0,200,3.6,3,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-37.8,-41.5,64,102400,0,0,117,0,0,0,0,0,0,0,190,5.2,3,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-37.8,-40.2,64,102500,18,315,116,3,4,1,0,0,0,0,200,6.2,2,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-37.8,-40.6,63,102500,59,1398,116,19,227,11,2164,0,1254,377,200,5.7,2,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-37.2,-42.3,63,102600,130,1398,116,59,395,23,6707,0,2620,804,200,4.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-36.7,-41.1,63,102600,178,1398,117,91,497,30,10403,0,3436,1081,190,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-36.7,-41.1,63,102600,198,1398,117,105,527,32,12057,1109,3682,1174,190,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-36.1,-40.6,63,102700,189,1398,119,99,516,31,11346,0,3560,1129,210,3.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-36.1,-40.0,67,102700,150,1398,119,73,442,26,8318,0,2968,921,220,3.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-36.7,-40.6,67,102700,87,1398,118,34,305,16,3856,0,1818,547,230,1.5,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-36.1,-40.6,63,102700,14,827,119,8,90,3,0,0,0,0,180,4.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-37.2,-40.4,63,102700,0,0,117,0,0,0,0,0,0,0,180,3.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-38.9,-40.0,65,102700,0,0,114,0,0,0,0,0,0,0,150,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-38.9,-39.1,65,102700,0,0,114,0,0,0,0,0,0,0,160,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-38.3,-38.3,65,102700,0,0,116,0,0,0,0,0,0,0,180,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-40.0,-40.0,68,102700,0,0,112,0,0,0,0,0,0,0,170,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-40.0,-40.0,68,102800,0,0,112,0,0,0,0,0,0,0,150,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-38.9,-38.9,66,102800,0,0,114,0,0,0,0,0,0,0,160,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-38.9,-38.9,66,102700,0,0,114,0,0,0,0,0,0,0,170,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-38.9,-38.9,66,102700,0,0,114,0,0,0,0,0,0,0,160,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-38.9,-38.9,68,102700,0,0,114,0,0,0,0,0,0,0,170,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-39.4,-39.4,68,102700,0,0,113,0,0,0,0,0,0,0,160,3.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-40.6,-40.6,64,102700,0,0,110,0,0,0,0,0,0,0,150,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-40.0,-40.0,64,102700,0,0,112,0,0,0,0,0,0,0,160,3.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-39.4,-39.4,64,102600,0,0,113,0,0,0,0,0,0,0,150,2.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-40.6,-41.3,61,102600,0,0,110,0,0,0,0,0,0,0,110,2.6,0,0,4.8,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-40.0,-40.5,63,102600,30,431,111,5,29,2,0,0,0,0,120,3.6,0,0,3.2,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-38.9,-40.6,63,102600,67,1398,113,24,291,11,2536,15289,1825,218,110,4.1,0,0,3.2,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-37.2,-41.6,63,102600,138,1398,116,65,443,23,7428,0,2633,818,120,5.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-36.7,-41.1,63,102500,186,1398,117,99,534,29,11396,0,3344,1067,120,5.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-36.7,-40.6,67,102400,207,1398,118,114,508,41,12882,4624,4644,1441,120,5.2,4,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-35.6,-39.4,67,102300,197,1398,121,107,474,42,12014,3722,4728,1441,120,5.2,5,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-34.4,-38.3,68,102300,159,1398,124,79,403,35,8829,0,3921,1168,120,5.2,5,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-33.3,-37.2,68,102200,95,1398,135,45,24,43,4730,0,4538,975,110,6.2,10,6,11.3,6100,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-32.8,-36.7,68,102100,19,943,137,5,10,5,0,0,0,0,110,5.7,10,6,11.3,6100,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-32.2,-36.1,68,102000,0,0,136,0,0,0,0,0,0,0,100,5.7,10,4,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-31.7,-35.0,72,101900,0,0,137,0,0,0,0,0,0,0,90,5.2,6,3,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-29.4,-32.8,73,101800,0,0,145,0,0,0,0,0,0,0,80,5.7,6,4,11.3,6100,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-27.2,-30.6,73,101700,0,0,159,0,0,0,0,0,0,0,70,6.2,10,8,11.3,6100,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-25.0,-27.8,78,101600,0,0,175,0,0,0,0,0,0,0,80,7.7,10,10,11.3,6100,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-23.9,-26.7,78,101500,0,0,179,0,0,0,0,0,0,0,70,6.7,10,10,11.3,6100,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-22.8,-25.6,78,101400,0,0,178,0,0,0,0,0,0,0,70,7.2,10,9,11.3,6100,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-21.7,-25.0,75,101300,0,0,187,0,0,0,0,0,0,0,60,9.3,10,10,11.3,6100,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-20.6,-23.9,75,101100,0,0,191,0,0,0,0,0,0,0,70,10.3,10,10,11.3,3050,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-20.0,-22.8,79,100900,0,0,194,0,0,0,0,0,0,0,70,11.3,10,10,6.4,3050,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-20.6,-22.8,83,100700,0,0,192,0,0,0,0,0,0,0,80,11.8,10,10,6.4,3050,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-20.6,-23.3,79,100600,0,0,191,0,0,0,0,0,0,0,80,11.3,10,10,6.4,2440,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-20.0,-22.8,79,100600,0,0,194,0,0,0,0,0,0,0,90,10.8,10,10,6.4,2440,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-20.6,-23.3,79,100400,0,0,191,0,0,0,0,0,0,0,80,12.4,10,10,6.4,2440,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-21.7,-25.0,75,100400,0,0,187,0,0,0,0,0,0,0,80,11.8,10,10,4.8,700,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-21.7,-24.4,78,100300,7,547,187,0,0,0,0,0,0,0,80,10.3,10,10,2.0,2440,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-21.1,-23.9,79,100200,75,1397,189,11,1,11,1272,0,1274,394,80,10.8,10,10,0.8,2440,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-21.1,-23.9,79,100100,147,1397,189,33,4,32,3689,0,3586,1067,90,10.8,10,10,0.8,2440,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-21.1,-23.9,79,100000,195,1397,189,43,1,43,4812,8,4825,1460,90,11.3,10,10,0.8,2440,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-21.7,-24.4,78,99900,215,1397,175,86,78,75,9275,2254,8121,2128,90,9.3,10,7,6.4,790,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-21.7,-24.4,78,99800,206,1397,173,102,92,89,10791,3307,9458,2165,90,9.8,10,6,4.8,790,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-21.1,-23.9,79,99800,167,1397,189,46,6,46,5047,27,5063,1426,90,7.7,10,10,4.8,2440,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-20.6,-23.3,79,99600,103,1397,191,22,1,22,2462,0,2468,727,80,9.8,10,10,4.8,2440,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-20.6,-22.8,83,99500,24,1059,192,2,0,2,193,0,194,77,80,9.3,10,10,4.8,2440,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-20.0,-22.2,83,99400,0,0,194,0,0,0,0,0,0,0,80,9.3,10,10,4.8,2440,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-19.4,-21.7,83,99300,0,0,196,0,0,0,0,0,0,0,80,9.3,10,10,2.4,310,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-19.4,-21.7,83,99200,0,0,196,0,0,0,0,0,0,0,80,7.7,10,10,2.4,310,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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.9,-21.1,83,99000,0,0,198,0,0,0,0,0,0,0,80,8.2,10,10,2.4,310,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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.9,-21.1,83,99100,0,0,198,0,0,0,0,0,0,0,100,8.2,10,10,2.4,310,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-18.9,-21.1,83,98900,0,0,198,0,0,0,0,0,0,0,70,6.7,10,10,2.4,240,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-17.8,-20.0,83,98800,0,0,203,0,0,0,0,0,0,0,70,7.2,10,10,6.4,1070,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-17.8,-20.0,83,98800,0,0,203,0,0,0,0,0,0,0,100,6.7,10,10,6.4,910,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-17.2,-19.4,83,98800,0,0,205,0,0,0,0,0,0,0,110,5.7,10,10,6.4,1070,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-17.8,-20.0,83,98700,0,0,188,0,0,0,0,0,0,0,110,4.6,9,6,11.3,2440,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-16.7,-18.9,83,98700,0,0,190,0,0,0,0,0,0,0,110,4.1,10,5,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-16.7,-18.9,83,98700,0,0,192,0,0,0,0,0,0,0,90,4.6,10,6,11.3,310,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-17.2,-18.9,87,98800,0,0,206,0,0,0,0,0,0,0,100,3.6,10,10,8.0,210,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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.2,-18.9,87,98800,0,0,206,0,0,0,0,0,0,0,70,3.1,10,10,11.3,210,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-17.2,-20.6,76,98800,0,0,204,0,0,0,0,0,0,0,70,2.6,10,10,11.3,180,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-16.7,-18.3,87,98900,10,687,208,0,0,0,0,0,0,0,160,2.1,10,10,4.8,180,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-16.7,-18.3,87,99000,84,1396,208,23,0,23,2234,0,2249,699,170,2.6,10,10,3.2,400,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-16.7,-18.9,83,99100,156,1396,207,41,4,41,4512,0,4525,1287,170,3.6,10,10,6.4,370,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-16.1,-17.8,87,99300,204,1396,210,62,1,62,6757,20,6781,1875,220,2.6,10,10,3.2,340,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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.0,-16.7,87,99400,224,1396,215,73,2,73,7918,56,7948,2157,90,2.1,10,10,3.2,340,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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.1,-17.8,87,99400,214,1396,210,73,0,73,7170,0,7220,2096,110,2.1,10,10,8.0,340,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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.7,-18.3,87,99400,176,1396,208,59,0,59,5776,0,5816,1673,130,2.1,10,10,11.3,370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-17.8,-20.0,83,99400,111,1396,186,40,39,37,4313,0,4003,1031,20,2.1,10,5,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-16.7,-18.9,83,99500,30,1175,187,12,24,11,1316,0,1209,329,320,3.1,10,3,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-17.8,-20.0,83,99500,0,0,183,0,0,0,0,0,0,0,360,1.5,10,3,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-16.1,-18.3,83,99600,0,0,200,0,0,0,0,0,0,0,10,3.6,10,8,11.3,1520,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-15.0,-16.7,87,99700,0,0,215,0,0,0,0,0,0,0,100,4.1,10,10,11.3,1520,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-17.2,-19.4,83,99700,0,0,200,0,0,0,0,0,0,0,50,3.1,10,9,11.3,370,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-16.1,-18.3,83,99700,0,0,210,0,0,0,0,0,0,0,40,4.6,10,10,11.3,370,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-16.1,-18.3,83,99800,0,0,204,0,0,0,0,0,0,0,40,3.6,10,9,11.3,370,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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.1,-18.3,83,99900,0,0,210,0,0,0,0,0,0,0,40,3.6,10,10,11.3,400,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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.1,-18.3,83,99900,0,0,210,0,0,0,0,0,0,0,30,5.7,10,10,11.3,400,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-16.7,-18.3,87,99900,0,0,208,0,0,0,0,0,0,0,20,4.6,10,10,11.3,400,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-17.2,-18.9,87,99900,0,0,200,0,0,0,0,0,0,0,30,4.6,10,9,11.3,610,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-16.7,-18.9,83,99900,0,0,207,0,0,0,0,0,0,0,30,5.7,10,10,11.3,610,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-16.7,-18.9,83,99900,0,0,207,0,0,0,0,0,0,0,30,6.7,10,10,11.3,520,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-17.2,-18.9,87,99800,0,0,206,0,0,0,0,0,0,0,30,7.2,10,10,11.3,150,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-17.2,-19.4,83,99800,0,0,205,0,0,0,0,0,0,0,40,7.2,10,10,11.3,310,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-21.1,72,99700,0,0,204,0,0,0,0,0,0,0,40,6.7,10,10,11.3,310,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-16.7,-18.9,83,99700,14,803,207,1,0,1,0,0,0,0,40,6.2,10,10,1.6,240,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-16.7,-18.9,83,99700,92,1396,207,18,0,18,1750,0,1761,608,40,7.2,10,10,1.6,270,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-16.7,-18.3,87,99700,165,1396,208,33,1,33,3715,0,3723,1134,40,9.3,10,10,3.2,270,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-16.7,-18.3,87,99600,213,1396,208,67,3,67,7284,71,7311,2002,40,9.3,10,10,4.8,340,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-16.7,-18.3,87,99500,233,1396,208,61,2,61,6743,46,6765,1991,50,10.8,10,10,3.2,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-15.6,-17.8,83,99500,223,1396,212,71,1,71,7716,27,7745,2121,50,11.3,10,10,3.2,270,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-15.6,-17.2,87,99400,184,1396,212,53,1,52,5805,11,5714,1609,50,10.8,10,10,3.2,270,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-15.0,-16.7,87,99400,120,1396,215,32,0,32,3117,0,3138,985,50,10.3,10,10,3.2,270,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-15.0,-16.7,87,99300,37,1291,215,7,0,7,677,0,681,243,50,9.3,10,10,4.8,270,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-14.4,-16.7,83,99300,0,0,217,0,0,0,0,0,0,0,50,9.3,10,10,4.8,270,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-14.4,-16.1,87,99200,0,0,217,0,0,0,0,0,0,0,50,9.3,10,10,4.8,270,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-15.6,-17.2,87,99200,0,0,202,0,0,0,0,0,0,0,50,8.8,8,8,4.8,270,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-15.6,-17.2,87,99100,0,0,202,0,0,0,0,0,0,0,50,7.2,10,8,11.3,1520,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-15.0,-16.7,87,99100,0,0,215,0,0,0,0,0,0,0,50,8.2,10,10,3.2,240,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-15.6,-17.2,87,99100,0,0,212,0,0,0,0,0,0,0,70,8.2,10,10,3.2,270,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-15.6,-17.8,83,99100,0,0,212,0,0,0,0,0,0,0,70,7.2,10,10,6.4,240,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-16.1,-17.8,87,99100,0,0,210,0,0,0,0,0,0,0,60,7.7,10,10,6.4,240,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-16.7,-18.3,87,99100,0,0,198,0,0,0,0,0,0,0,50,8.2,10,8,3.2,240,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-16.7,-18.3,87,99000,0,0,191,0,0,0,0,0,0,0,70,7.2,10,5,4.8,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-16.1,-18.3,83,99000,0,0,210,0,0,0,0,0,0,0,70,7.7,10,10,4.8,370,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-16.1,-17.8,87,99000,0,0,210,0,0,0,0,0,0,0,70,7.7,10,10,4.8,270,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-15.6,-17.2,87,99000,0,0,212,0,0,0,0,0,0,0,60,7.2,10,10,8.0,240,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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.6,-17.2,87,99000,0,0,212,0,0,0,0,0,0,0,60,7.7,10,10,8.0,240,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-15.0,-17.8,80,99000,0,0,214,0,0,0,0,0,0,0,70,6.2,10,10,3.2,240,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-14.4,-16.7,83,99000,19,918,217,5,0,5,0,0,0,0,60,6.7,10,10,1.6,210,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-13.9,-15.6,87,99000,101,1395,219,31,0,31,3015,0,3035,898,80,6.2,10,10,2.0,210,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-15.0,91,99000,173,1395,220,71,0,71,6947,0,6995,1773,90,4.6,10,10,0.8,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-12.8,-14.4,88,99000,221,1395,213,86,40,80,9244,1259,8634,2232,100,5.2,10,8,3.2,1130,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-12.8,-14.4,88,99100,241,1395,218,104,26,100,11063,1124,10686,2576,110,5.7,10,9,2.4,610,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-12.8,-14.4,88,99100,231,1395,218,118,67,107,12426,3098,11322,2503,120,6.2,10,9,11.3,980,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-12.8,-15.0,84,99100,193,1395,217,79,81,68,8494,1758,7340,1893,110,5.2,9,9,11.3,3050,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-13.9,-15.6,87,99100,128,1395,209,44,37,41,4757,0,4448,1169,120,6.7,8,8,11.3,3660,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-15.6,-17.2,87,99100,45,1395,202,11,10,11,1230,0,1233,356,120,7.2,8,8,11.3,3660,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-16.7,-18.9,83,99200,0,12,190,0,0,0,0,0,0,0,110,5.7,5,5,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-18.9,-21.1,83,99200,0,0,182,0,0,0,0,0,0,0,120,4.1,5,5,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-19.4,-21.7,83,99300,0,0,179,0,0,0,0,0,0,0,140,4.1,4,4,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-13.9,-15.6,87,99400,0,0,209,0,0,0,0,0,0,0,220,4.1,8,8,11.3,1310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-11.1,-12.8,88,99500,0,0,232,0,0,0,0,0,0,0,220,6.2,10,10,11.3,1520,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-6.7,-7.8,92,99600,0,0,252,0,0,0,0,0,0,0,260,8.2,10,10,11.3,1520,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-7.2,-8.3,92,99900,0,0,250,0,0,0,0,0,0,0,290,7.2,10,10,11.3,1520,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-7.2,-8.9,88,100000,0,0,249,0,0,0,0,0,0,0,290,7.2,10,10,11.3,910,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-7.2,-8.9,88,100200,0,0,249,0,0,0,0,0,0,0,290,6.7,10,10,11.3,980,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-7.8,-9.4,88,100200,0,0,247,0,0,0,0,0,0,0,310,5.2,10,10,11.3,520,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-8.9,-10.0,92,100300,0,0,242,0,0,0,0,0,0,0,310,4.1,10,10,11.3,640,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-9.4,-11.1,88,100500,0,0,239,0,0,0,0,0,0,0,310,4.1,10,10,11.3,490,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-10.0,-11.7,88,100500,0,0,236,0,0,0,0,0,0,0,320,3.6,10,10,11.3,610,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-10.6,-12.8,84,100600,0,0,233,0,0,0,0,0,0,0,310,3.1,10,10,8.0,1220,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-13.3,84,100700,0,0,231,0,0,0,0,0,0,0,0,0.0,10,10,1.6,550,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-16.1,-18.3,83,100800,25,1034,196,4,9,3,482,0,361,112,200,4.1,10,7,8.0,430,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-19.4,-21.7,83,100900,110,1394,180,38,87,31,4154,0,3399,932,190,3.6,8,5,9.7,1220,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-15.6,-17.2,87,101000,182,1394,212,35,3,34,3966,0,3862,1200,210,4.6,10,10,1.6,460,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1988,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,-13.9,-15.6,87,101100,230,1394,203,104,64,94,11071,2537,10051,2433,290,5.7,10,6,2.4,790,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-16.1,-18.3,83,101200,250,1394,191,131,365,67,14473,10416,7427,2191,280,6.7,6,4,8.0,790,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-17.2,-19.4,83,101300,240,1394,187,117,260,73,12783,7884,8005,2253,270,4.6,8,4,9.7,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-17.8,-20.6,79,101400,201,1394,179,94,374,41,10590,2760,4631,1428,280,5.7,2,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-20.0,-22.8,79,101400,136,1394,168,62,393,25,7025,0,2838,869,310,4.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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.2,-25.0,78,101500,52,1394,160,18,203,9,2066,0,1034,314,310,4.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-23.3,-26.1,78,101500,0,105,157,0,0,0,0,0,0,0,320,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-22.8,-26.1,74,101600,0,0,158,0,0,0,0,0,0,0,310,2.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-24.4,-27.2,78,101700,0,0,153,0,0,0,0,0,0,0,310,2.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-29.4,-32.8,73,101700,0,0,138,0,0,0,0,0,0,0,140,1.5,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-30.6,-33.3,77,101800,0,0,135,0,0,0,0,0,0,0,140,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-30.6,-33.3,77,101800,0,0,135,0,0,0,0,0,0,0,150,4.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-28.9,-31.7,77,101900,0,0,140,0,0,0,0,0,0,0,140,3.6,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-33.3,-36.7,72,101900,0,0,127,0,0,0,0,0,0,0,150,4.1,0,0,1.6,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-33.9,-37.8,68,102000,0,0,125,0,0,0,0,0,0,0,130,4.1,0,0,1.6,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-33.3,-37.2,68,102000,0,0,127,0,0,0,0,0,0,0,130,4.1,0,0,1.2,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-32.2,-36.1,68,102000,0,0,136,0,0,0,0,0,0,0,130,3.6,4,4,0.8,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-31.7,-35.6,68,102100,0,0,138,0,0,0,0,0,0,0,130,4.6,4,4,0.8,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-31.1,-35.0,69,102100,0,0,140,0,0,0,0,0,0,0,120,3.6,4,4,0.8,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-30.0,-32.8,77,102100,0,0,141,0,0,0,0,0,0,0,110,4.6,5,2,2.0,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-29.4,-35.6,55,102100,0,0,142,0,0,0,0,0,0,0,90,3.1,6,3,2.0,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-30.6,-34.4,69,102100,31,1150,140,12,51,9,1341,0,1007,288,80,3.6,6,3,8.0,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-28.9,-32.8,69,102100,119,1394,145,46,59,42,4936,0,4523,1132,90,4.1,10,3,8.0,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-28.9,-32.2,73,102100,191,1394,144,93,227,63,10067,4428,6845,1820,80,5.2,10,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-27.2,-30.6,73,102100,239,1394,149,134,352,75,14610,11193,8208,2280,90,4.1,10,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-27.8,78,102100,259,1394,158,125,237,82,13634,8792,8978,2509,60,4.1,10,3,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-23.3,-26.1,78,102000,249,1394,164,139,194,105,14785,9114,11219,2683,50,5.2,10,3,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-22.8,-25.0,82,102000,210,1394,164,113,244,77,12132,7204,8300,2115,50,4.1,10,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-21.7,-24.4,78,102000,145,1394,178,49,41,45,5317,0,4899,1310,50,4.1,10,8,11.3,6100,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-18.9,-21.7,79,102000,60,1394,198,16,12,15,1777,0,1669,475,60,4.1,10,10,11.3,3050,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-18.3,-20.6,83,102000,1,221,184,0,0,0,0,0,0,0,60,5.2,10,5,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-17.8,-19.4,87,102000,0,0,188,0,0,0,0,0,0,0,50,5.2,10,6,11.3,6100,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-17.2,-19.4,83,101900,0,0,205,0,0,0,0,0,0,0,70,6.2,10,10,11.3,910,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-19.2,-21.6,83,101800,0,0,181,0,0,0,0,0,0,0,60,5.3,10,5,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-21.4,-23.9,83,101800,0,0,175,0,0,0,0,0,0,0,70,4.4,10,6,11.3,790,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1988,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,-23.5,-26.2,87,101700,0,0,169,0,0,0,0,0,0,0,90,3.5,10,7,4.8,790,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-25.7,-28.6,77,101700,0,0,149,0,0,0,0,0,0,0,260,2.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-27.8,-30.9,77,101700,0,0,143,0,0,0,0,0,0,0,260,1.8,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-30.0,-33.2,72,101700,0,0,136,0,0,0,0,0,0,0,250,0.9,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-32.2,-35.6,72,101600,0,0,130,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-32.2,-35.6,72,101600,0,0,130,0,0,0,0,0,0,0,230,2.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-32.8,-36.1,72,101600,0,0,128,0,0,0,0,0,0,0,200,4.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-32.8,-36.1,72,101600,0,0,128,0,0,0,0,0,0,0,200,3.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-33.3,-36.7,72,101500,0,0,127,0,0,0,0,0,0,0,190,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-33.9,-36.7,76,101500,0,0,126,0,0,0,0,0,0,0,210,2.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-35.0,-38.3,71,101500,43,1335,122,14,149,7,1613,0,807,245,180,2.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-34.4,-37.2,76,101400,132,1393,124,56,374,23,6356,0,2615,799,170,2.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-33.3,-36.1,76,101400,205,1393,127,104,517,32,11954,1319,3685,1179,160,2.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-32.2,-35.0,76,101300,253,1393,130,140,593,37,16229,8773,4297,1412,110,2.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-31.7,-34.4,76,101300,272,1393,132,155,618,38,18061,11569,4436,1476,120,3.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-30.6,-33.3,77,101200,262,1393,135,148,607,38,17181,10277,4420,1460,130,3.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-31.7,-35.0,72,101100,223,1393,134,104,343,51,11607,5733,5708,1722,80,3.1,7,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-31.1,-34.4,72,101100,158,1393,142,50,20,48,5426,80,5227,1397,90,4.6,9,6,11.3,210,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-30.6,-33.3,77,101000,72,1393,144,24,32,23,2595,0,2494,643,80,3.6,10,6,11.3,240,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-31.7,-35.0,72,101000,12,383,134,2,5,1,0,0,0,0,80,5.2,3,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-32.8,-36.1,72,100900,0,0,128,0,0,0,0,0,0,0,80,5.2,1,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-32.8,-37.8,61,100900,0,0,127,0,0,0,0,0,0,0,90,5.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-32.8,-36.7,68,100800,0,0,128,0,0,0,0,0,0,0,90,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-32.8,-36.7,68,100800,0,0,128,0,0,0,0,0,0,0,80,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-31.1,-34.4,72,100700,0,0,133,0,0,0,0,0,0,0,60,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-29.4,-32.2,77,100600,0,0,138,0,0,0,0,0,0,0,60,6.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.9,-32.2,73,100600,0,0,139,0,0,0,0,0,0,0,50,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.9,-32.2,73,100600,0,0,139,0,0,0,0,0,0,0,30,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.3,-31.1,77,100500,0,0,142,0,0,0,0,0,0,0,40,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-27.2,-30.0,77,100500,0,0,150,0,0,0,0,0,0,0,30,5.2,3,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-27.2,-30.0,77,100500,0,0,151,0,0,0,0,0,0,0,40,5.2,4,3,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-27.8,-30.6,77,100500,0,0,149,0,0,0,0,0,0,0,30,5.7,4,3,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-27.8,-30.6,77,100500,0,0,149,0,0,0,0,0,0,0,30,5.7,6,3,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-27.8,-30.6,77,100500,0,58,149,0,0,0,0,0,0,0,30,4.6,6,3,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-27.8,-30.6,77,100500,51,1392,150,12,43,10,1357,0,1133,335,30,5.7,8,4,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-27.2,-30.0,77,100500,141,1392,151,56,103,46,6035,0,4975,1281,20,6.7,8,3,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-26.7,-29.4,77,100500,214,1392,153,104,325,56,11467,5794,6195,1793,20,6.7,7,3,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-27.2,-29.4,81,100500,262,1392,150,140,410,65,15559,11955,7247,2180,20,5.7,5,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-26.7,-29.4,77,100500,281,1392,149,155,504,57,17540,14226,6468,2055,20,5.7,4,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-26.7,-29.4,77,100500,271,1392,149,146,542,44,16806,11390,5076,1661,40,3.6,3,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-26.7,-28.9,82,100600,232,1392,152,114,346,59,12616,7648,6550,1929,30,4.1,7,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-26.7,-29.4,77,100600,166,1392,149,72,360,32,8118,0,3616,1103,40,3.6,5,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-27.8,-30.6,77,100600,80,1392,148,22,147,15,2483,0,1696,504,30,2.1,5,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.3,-30.6,81,100600,6,499,145,4,30,2,0,0,0,0,20,2.6,3,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.3,-31.1,77,100600,0,0,144,0,0,0,0,0,0,0,10,3.6,3,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.9,-32.8,69,100600,0,0,142,0,0,0,0,0,0,0,30,3.1,3,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-29.4,-32.8,73,100600,0,0,141,0,0,0,0,0,0,0,30,3.1,3,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-29.4,-32.2,77,100700,0,0,141,0,0,0,0,0,0,0,20,2.6,3,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.9,-32.2,73,100700,0,0,142,0,0,0,0,0,0,0,10,3.6,3,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-29.4,-32.2,77,100600,0,0,141,0,0,0,0,0,0,0,10,5.2,2,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-29.4,-32.8,73,100700,0,0,141,0,0,0,0,0,0,0,10,3.1,2,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-29.4,-32.8,73,100600,0,0,144,0,0,0,0,0,0,0,20,4.1,4,3,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.9,-31.7,77,100600,0,0,151,0,0,0,0,0,0,0,40,3.6,7,7,11.3,3350,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.9,-31.7,77,100600,0,0,161,0,0,0,0,0,0,0,50,3.6,10,10,11.3,3350,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.3,-31.1,77,100600,0,0,163,0,0,0,0,0,0,0,10,3.1,10,10,11.3,3050,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.3,-31.1,77,100500,0,0,163,0,0,0,0,0,0,0,30,4.1,10,10,11.3,3050,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.3,-31.1,77,100400,0,0,149,0,0,0,0,0,0,0,40,4.6,7,4,11.3,6100,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.3,-31.1,77,100400,1,174,156,0,0,0,0,0,0,0,40,5.2,8,8,11.3,5490,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.9,-31.7,77,100400,59,1392,154,8,14,7,940,0,823,256,60,5.2,10,8,11.3,5490,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.3,-31.1,77,100400,150,1392,156,47,24,45,5104,9,4903,1314,50,5.7,10,8,11.3,5490,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-27.8,-30.6,77,100300,223,1392,165,53,5,52,5904,85,5810,1744,50,5.2,10,10,11.3,5490,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-27.2,-30.0,77,100300,271,1392,167,102,0,102,10070,0,10142,2820,60,4.6,10,10,11.3,5490,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-26.7,-29.4,77,100200,290,1392,169,87,9,85,9558,370,9374,2717,50,6.2,10,10,3.2,2740,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-26.7,-28.9,82,100200,280,1392,169,71,7,70,7897,235,7812,2365,60,6.7,10,10,3.2,2740,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-26.1,-28.9,78,100100,240,1392,171,56,5,55,6256,107,6163,1874,50,6.2,10,10,3.2,3660,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-26.1,-28.9,78,100100,175,1392,171,48,1,48,5258,7,5275,1477,50,7.7,10,10,2.0,3660,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-26.1,-28.9,78,100000,89,1392,171,18,1,18,2017,0,2021,593,50,7.2,10,10,2.0,3660,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-26.1,-28.3,82,100000,9,615,171,2,0,2,0,0,0,0,60,6.7,10,10,3.2,3660,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-25.6,-27.8,82,100000,0,0,173,0,0,0,0,0,0,0,50,7.2,10,10,3.2,3660,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-25.6,-28.9,74,99900,0,0,172,0,0,0,0,0,0,0,50,7.7,10,10,3.2,3660,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-25.0,-27.8,78,99900,0,0,175,0,0,0,0,0,0,0,60,5.2,10,10,8.0,3660,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-25.0,-27.2,82,99900,0,0,175,0,0,0,0,0,0,0,60,4.1,10,10,3.2,1340,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-24.4,-27.2,78,99900,0,0,177,0,0,0,0,0,0,0,70,3.1,10,10,4.8,1130,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-24.4,-26.7,82,99800,0,0,177,0,0,0,0,0,0,0,50,2.1,10,10,8.0,1070,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-25.6,-27.8,82,99800,0,0,173,0,0,0,0,0,0,0,60,1.5,10,10,8.0,1010,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-26.7,-29.4,77,99800,0,0,169,0,0,0,0,0,0,0,90,1.5,10,10,8.0,910,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-26.7,-28.9,82,99800,0,0,169,0,0,0,0,0,0,0,0,0.0,10,10,11.3,820,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-26.1,-28.3,82,99800,0,0,171,0,0,0,0,0,0,0,190,3.6,10,10,11.3,2130,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.9,-31.7,77,99900,0,0,151,0,0,0,0,0,0,0,210,4.6,7,7,11.3,2130,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-29.4,-32.2,77,99800,0,0,152,0,0,0,0,0,0,0,230,5.2,8,8,11.3,2440,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-27.8,-30.6,77,99900,0,0,150,0,0,0,0,0,0,0,230,3.6,4,4,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-27.8,-30.6,77,99900,2,290,149,0,0,0,0,0,0,0,230,4.1,4,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.3,-31.1,77,99900,68,1391,153,12,24,11,1372,0,1260,382,210,5.7,8,7,11.3,2740,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.9,-31.7,77,100000,159,1391,149,45,66,38,4983,0,4220,1223,210,6.7,8,6,3.2,2740,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.3,-31.1,77,100000,232,1391,149,103,142,80,11113,4704,8666,2276,220,5.7,8,4,6.4,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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.0,-27.8,78,100000,280,1391,158,142,230,97,15369,10399,10542,2836,240,2.6,7,3,8.0,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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.0,-27.2,82,100100,299,1391,155,167,534,56,19044,16105,6403,2078,240,3.6,4,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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.6,-27.8,82,100100,289,1391,150,167,638,39,19529,13829,4569,1535,270,7.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-26.1,-28.3,82,100100,249,1391,149,138,593,36,16008,7987,4184,1375,270,9.8,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-26.7,-29.4,77,100200,183,1391,146,90,488,29,10320,0,3332,1055,270,9.8,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-27.8,-30.6,77,100300,97,1391,143,36,301,17,4080,0,1930,582,270,10.3,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.3,-31.1,77,100300,12,707,142,6,62,2,0,0,0,0,260,9.8,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.9,-31.7,77,100400,0,0,140,0,0,0,0,0,0,0,260,6.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.3,-32.2,69,100400,0,0,141,0,0,0,0,0,0,0,260,7.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.3,-31.7,73,100500,0,0,141,0,0,0,0,0,0,0,260,7.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.3,-31.7,73,100500,0,0,141,0,0,0,0,0,0,0,260,8.8,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.3,-31.1,77,100600,0,0,142,0,0,0,0,0,0,0,260,7.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.3,-31.7,73,100600,0,0,141,0,0,0,0,0,0,0,260,8.8,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.3,-31.7,73,100700,0,0,141,0,0,0,0,0,0,0,270,9.8,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.3,-31.7,73,100700,0,0,141,0,0,0,0,0,0,0,260,9.3,0,0,4.8,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.9,-31.7,77,100800,0,0,140,0,0,0,0,0,0,0,260,9.8,0,0,4.8,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.9,-31.7,77,100800,0,0,146,0,0,0,0,0,0,0,260,8.2,6,3,4.8,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.9,-32.2,73,100900,0,0,144,0,0,0,0,0,0,0,260,8.8,5,2,4.8,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.9,-31.7,77,100900,0,0,142,0,0,0,0,0,0,0,260,8.8,3,1,4.8,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-29.4,-32.2,77,101000,0,0,138,0,0,0,0,0,0,0,260,8.2,1,0,4.8,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-29.4,-32.2,77,101000,18,405,138,3,13,1,0,0,0,0,260,10.3,0,0,3.2,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-29.4,-32.2,77,101100,77,1390,138,24,252,12,2749,0,1376,419,270,9.8,0,0,3.2,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1990,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,-29.4,-32.2,77,101100,168,1390,138,80,459,28,9128,0,3201,1000,270,10.3,0,0,3.2,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.9,-31.7,77,101200,241,1390,140,133,586,36,15381,7067,4171,1362,270,9.8,0,0,4.8,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.3,-31.7,73,101200,289,1390,141,171,651,40,19961,14495,4678,1569,270,9.8,0,0,4.8,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.3,-31.1,77,101300,308,1390,142,187,674,42,21886,17538,4925,1666,280,7.2,0,0,4.8,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.3,-31.1,77,101300,298,1390,142,178,663,41,20799,15932,4800,1616,280,7.2,0,0,6.4,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.3,-31.1,77,101400,258,1390,142,147,612,37,17074,9585,4306,1421,270,8.8,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.9,-31.7,77,101400,192,1390,140,97,507,31,11111,0,3558,1127,280,7.2,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1990,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,-30.0,-32.8,77,101500,105,1390,137,41,322,19,4636,0,2153,648,270,7.2,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1990,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,-30.6,-33.3,77,101500,17,822,135,8,75,3,0,0,0,0,270,7.7,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1990,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,-31.1,-33.9,76,101600,0,0,133,0,0,0,0,0,0,0,260,5.2,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1990,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,-30.6,-34.4,69,101600,0,0,134,0,0,0,0,0,0,0,270,6.7,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1990,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,-30.6,-33.9,73,101600,0,0,135,0,0,0,0,0,0,0,270,6.7,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1990,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,-31.1,-34.4,72,101700,0,0,133,0,0,0,0,0,0,0,270,6.2,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1990,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,-32.2,-35.6,72,101700,0,0,130,0,0,0,0,0,0,0,260,6.2,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1990,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,-31.7,-35.0,72,101700,0,0,131,0,0,0,0,0,0,0,250,4.1,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1990,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,-31.7,-34.4,76,101700,0,0,132,0,0,0,0,0,0,0,260,6.7,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1990,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,-31.7,-35.0,72,101800,0,0,131,0,0,0,0,0,0,0,250,2.1,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1990,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,-31.7,-35.0,72,101800,0,0,131,0,0,0,0,0,0,0,250,2.1,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1990,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,-31.7,-35.0,72,101800,0,0,131,0,0,0,0,0,0,0,250,3.1,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1990,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,-32.2,-35.6,72,101800,0,0,130,0,0,0,0,0,0,0,230,3.6,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1990,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,-35.6,-39.4,67,101900,0,0,121,0,0,0,0,0,0,0,210,5.7,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1990,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,-34.4,-38.3,68,101900,0,0,124,0,0,0,0,0,0,0,240,1.5,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1990,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,-33.3,-36.7,72,102000,7,521,127,3,15,1,0,0,0,0,250,2.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-33.3,-36.7,72,102000,86,1389,127,26,178,16,2934,0,1809,538,240,2.1,1,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-33.9,-37.2,72,102100,177,1389,125,80,374,35,9010,0,3951,1205,230,1.5,1,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-31.1,-33.9,76,102100,250,1389,138,90,176,59,10039,4390,6601,2002,270,5.7,3,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-30.6,-33.3,77,102100,298,1389,139,157,410,72,17539,15049,8070,2486,270,4.6,3,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-29.4,-32.8,73,102200,317,1389,143,163,420,70,18371,15974,7914,2511,290,5.2,3,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-29.4,-32.8,73,102200,306,1389,138,173,582,49,19993,16639,5676,1888,250,2.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-30.0,-32.8,77,102200,266,1389,137,144,540,44,16552,11042,5069,1653,260,2.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-31.7,-35.0,72,102300,200,1389,131,96,431,37,10887,2002,4206,1311,220,1.5,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-33.9,-37.2,72,102300,113,1389,125,41,252,22,4611,0,2479,739,210,3.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-35.0,-38.3,71,102400,21,915,122,7,50,4,0,0,0,0,210,4.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-35.6,-39.4,67,102400,0,0,121,0,0,0,0,0,0,0,200,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-36.7,-41.7,59,102400,0,0,117,0,0,0,0,0,0,0,200,3.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-36.7,-40.6,67,102400,0,0,118,0,0,0,0,0,0,0,210,2.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-37.2,-40.6,67,102400,0,0,117,0,0,0,0,0,0,0,170,3.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-36.7,-40.6,67,102400,0,0,118,0,0,0,0,0,0,0,190,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-36.1,-40.0,67,102400,0,0,119,0,0,0,0,0,0,0,190,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-37.8,-39.6,69,102300,0,0,116,0,0,0,0,0,0,0,170,2.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-38.3,-40.4,68,102300,0,0,115,0,0,0,0,0,0,0,160,3.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-38.3,-39.7,70,102300,0,0,115,0,0,0,0,0,0,0,160,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-37.2,-39.7,70,102300,0,0,117,0,0,0,0,0,0,0,170,3.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-38.3,-39.6,71,102300,0,0,115,0,0,0,0,0,0,0,140,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-37.2,-41.7,67,102200,0,0,116,0,0,0,0,0,0,0,130,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-39.4,-41.3,69,102200,0,0,112,0,0,0,0,0,0,0,120,3.1,0,0,8.0,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-39.4,-40.2,72,102200,10,636,113,6,53,2,0,0,0,0,140,3.1,0,0,8.0,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-38.3,-39.8,70,102100,95,1389,115,34,302,16,3867,0,1823,552,150,3.6,0,0,9.7,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-36.1,-39.4,71,102100,187,1389,120,92,496,29,10569,0,3338,1060,140,4.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-35.0,-38.9,67,102100,259,1389,122,145,611,36,16891,9581,4201,1392,110,3.1,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-34.4,-37.8,72,102000,307,1389,124,183,670,40,21496,16932,4707,1598,120,3.6,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-33.3,-37.2,68,102000,326,1389,127,200,691,42,23546,19890,4954,1695,100,4.6,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-32.2,-36.1,68,101900,315,1389,130,191,680,41,22452,18258,4828,1644,110,4.6,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-31.7,-34.4,76,101800,275,1389,132,159,634,37,18588,11956,4333,1449,80,4.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-31.7,-35.0,72,101800,209,1389,131,109,538,31,12587,1594,3586,1156,70,4.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-32.2,-35.6,72,101800,122,1389,130,51,367,21,5791,0,2389,728,70,6.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-33.3,-36.7,72,101700,27,1030,127,11,117,5,1270,0,578,174,80,4.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-33.3,-36.7,72,101700,0,0,127,0,0,0,0,0,0,0,80,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-32.2,-36.7,64,101600,0,0,129,0,0,0,0,0,0,0,70,5.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-31.7,-35.0,72,101600,0,0,131,0,0,0,0,0,0,0,60,5.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-31.7,-35.0,72,101500,0,0,131,0,0,0,0,0,0,0,60,6.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-32.2,-35.6,72,101500,0,0,130,0,0,0,0,0,0,0,70,6.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-32.2,-35.6,72,101500,0,0,130,0,0,0,0,0,0,0,70,6.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-32.2,-35.6,72,101400,0,0,130,0,0,0,0,0,0,0,60,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-33.3,-36.7,72,101300,0,0,127,0,0,0,0,0,0,0,70,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-32.8,-35.6,76,101300,0,0,131,0,0,0,0,0,0,0,60,4.6,3,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-32.8,-35.6,76,101200,0,0,133,0,0,0,0,0,0,0,80,5.2,6,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-32.2,-35.0,76,101200,0,0,130,0,0,0,0,0,0,0,60,5.7,3,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-32.2,-35.6,72,101200,0,0,130,0,0,0,0,0,0,0,60,6.2,2,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-33.3,-36.1,76,101100,0,0,130,0,0,0,0,0,0,0,60,5.7,4,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-32.8,-35.6,76,101100,14,752,131,5,35,3,0,0,0,0,60,5.7,5,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-31.7,-35.0,72,101000,104,1388,134,37,225,22,4130,0,2461,718,70,5.7,5,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-30.6,-33.9,73,101000,196,1388,139,90,274,53,9887,3689,5841,1660,70,5.2,8,2,3.2,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-29.4,-32.2,77,101000,269,1388,143,136,356,70,15066,11544,7781,2317,70,5.7,8,2,6.4,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.3,-31.1,77,101000,316,1388,146,171,380,88,18908,17004,9766,2917,70,6.2,8,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-27.8,-30.6,77,101000,335,1388,148,196,421,98,21615,21037,10849,3218,80,5.7,8,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-27.8,-30.6,77,100900,324,1388,143,199,627,57,22855,21267,6563,2173,70,7.2,4,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-27.2,-29.4,81,100800,284,1388,148,149,508,48,17116,12626,5527,1810,60,4.6,2,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-27.2,-30.0,77,100800,218,1388,148,112,499,37,12799,3993,4237,1348,70,5.2,2,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-27.8,-30.6,77,100800,130,1388,143,54,354,23,6120,0,2612,796,60,4.6,1,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.3,-31.1,77,100800,33,1145,144,11,101,6,1264,0,690,207,60,5.7,2,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-27.8,-30.6,77,100800,0,0,149,0,0,0,0,0,0,0,60,4.6,6,3,9.7,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.3,-31.7,73,100700,0,0,147,0,0,0,0,0,0,0,60,6.2,7,3,9.7,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.3,-31.1,77,100700,0,0,150,0,0,0,0,0,0,0,60,5.7,8,5,9.7,340,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.3,-31.1,77,100700,0,0,150,0,0,0,0,0,0,0,50,5.2,8,5,9.7,340,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.3,-31.1,77,100700,0,0,150,0,0,0,0,0,0,0,50,6.2,9,5,11.3,340,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.9,-32.2,73,100700,0,0,144,0,0,0,0,0,0,0,60,6.7,4,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-29.4,-32.2,77,100700,0,0,145,0,0,0,0,0,0,0,70,5.7,8,4,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-30.0,-33.3,73,100700,0,0,141,0,0,0,0,0,0,0,50,4.6,5,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-30.6,-33.3,77,100700,0,0,138,0,0,0,0,0,0,0,60,4.6,3,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-30.6,-33.3,77,100700,0,0,135,0,0,0,0,0,0,0,40,4.1,3,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-30.6,-33.3,77,100700,0,0,135,0,0,0,0,0,0,0,50,4.1,3,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-30.6,-33.3,77,100700,0,0,135,0,0,0,0,0,0,0,50,4.6,3,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-30.6,-33.9,73,100700,0,0,139,0,0,0,0,0,0,0,60,4.6,8,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-30.6,-33.3,77,100700,19,867,139,7,20,6,0,0,0,0,60,4.1,8,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-30.0,-33.3,73,100700,113,1387,141,40,134,30,4382,0,3296,909,60,3.6,7,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-30.0,-32.8,77,100700,205,1387,137,100,394,45,11185,4027,5047,1525,60,3.6,5,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.9,-32.2,73,100800,278,1387,139,154,502,57,17409,14005,6462,2045,70,3.1,5,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.3,-31.1,77,100800,325,1387,144,182,477,73,20498,19079,8248,2617,70,2.6,5,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-27.8,-30.6,77,100800,344,1387,146,201,558,66,22959,22011,7560,2491,60,2.6,4,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-27.8,-31.1,73,100800,333,1387,145,184,511,65,20971,19373,7429,2429,70,2.1,5,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-27.8,-30.6,77,100800,293,1387,143,165,579,46,19077,14698,5330,1768,80,1.0,1,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-27.2,-30.6,73,100800,226,1387,144,114,479,39,13021,5174,4465,1423,0,0.0,1,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.3,-31.1,77,100900,139,1387,142,56,316,27,6299,0,3044,915,0,0.0,1,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-29.4,-32.2,77,100900,40,1237,138,12,99,8,1361,0,909,268,0,0.0,1,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-30.0,-32.8,77,100900,0,0,137,0,0,0,0,0,0,0,0,0.0,1,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-30.0,-33.9,69,100900,0,0,136,0,0,0,0,0,0,0,0,0.0,1,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-32.8,-35.6,76,100900,0,0,129,0,0,0,0,0,0,0,120,1.0,1,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-30.0,-33.3,73,100900,0,0,136,0,0,0,0,0,0,0,0,0.0,1,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-31.1,-33.9,76,101000,0,0,136,0,0,0,0,0,0,0,180,1.5,3,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-30.6,-33.9,73,100900,0,0,135,0,0,0,0,0,0,0,0,0.0,2,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-31.1,-34.4,72,101000,0,0,133,0,0,0,0,0,0,0,210,1.5,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-32.2,-35.0,76,101000,0,0,130,0,0,0,0,0,0,0,210,2.6,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-31.7,-34.4,76,101000,0,0,132,0,0,0,0,0,0,0,220,1.5,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-30.6,-33.9,73,101000,0,0,135,0,0,0,0,0,0,0,230,1.5,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-30.6,-33.9,73,101000,0,0,140,0,0,0,0,0,0,0,220,1.5,4,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.9,-31.7,77,101000,0,0,149,0,0,0,0,0,0,0,0,0.0,8,6,11.3,4270,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-31.1,-33.9,76,101000,0,0,138,0,0,0,0,0,0,0,0,0.0,7,2,9.7,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-30.6,-33.9,73,101000,25,982,146,6,12,5,0,0,0,0,180,1.5,10,7,9.7,6100,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.9,-31.1,81,101000,122,1386,147,52,142,40,5598,0,4321,1102,0,0.0,9,4,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.9,-31.1,81,101000,214,1386,145,110,395,51,12229,6013,5687,1693,0,0.0,6,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-27.8,-30.6,77,101000,287,1386,146,157,475,62,17686,14830,7005,2204,180,2.1,7,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-27.8,-30.0,81,101000,334,1386,148,176,380,87,19597,17460,9722,2988,190,1.5,8,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-27.2,-29.4,81,101000,353,1386,150,209,514,81,23546,23369,9156,2927,210,2.6,8,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-26.7,-29.4,77,101000,342,1386,153,195,388,102,21481,20119,11280,3335,180,1.5,10,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.3,-31.1,77,101000,301,1386,148,152,279,93,16647,12685,10225,2927,170,1.0,10,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-27.8,-30.6,77,101000,235,1386,149,102,195,71,11133,5622,7778,2169,180,2.1,10,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.3,-31.1,77,101000,147,1386,148,51,87,42,5560,0,4594,1252,190,2.1,10,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-29.4,-32.2,77,101000,47,1352,145,18,68,14,1969,0,1535,413,180,2.1,10,4,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.9,-31.7,77,100900,0,0,147,0,0,0,0,0,0,0,180,2.1,10,4,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.3,-32.2,69,100900,0,0,148,0,0,0,0,0,0,0,160,2.1,10,4,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-27.8,-30.6,77,100900,0,0,153,0,0,0,0,0,0,0,130,1.5,10,6,11.3,6100,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-27.8,-30.6,77,100900,0,0,153,0,0,0,0,0,0,0,130,2.1,10,6,9.7,6100,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-27.8,-30.6,77,100900,0,0,149,0,0,0,0,0,0,0,120,3.6,10,3,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.9,-31.7,77,100900,0,0,147,0,0,0,0,0,0,0,120,3.1,8,4,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.3,-31.1,77,100900,0,0,149,0,0,0,0,0,0,0,110,2.6,8,4,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.9,-31.7,77,100800,0,0,148,0,0,0,0,0,0,0,120,3.1,10,5,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.9,-31.7,77,100800,0,0,147,0,0,0,0,0,0,0,130,1.5,8,4,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.9,-31.7,77,100800,0,0,148,0,0,0,0,0,0,0,120,1.5,9,5,11.3,2900,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.9,-31.7,77,100800,0,0,147,0,0,0,0,0,0,0,110,1.5,8,4,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.9,-31.1,81,100800,0,0,147,0,0,0,0,0,0,0,90,2.6,7,4,11.3,6100,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.3,-31.1,77,100700,0,0,156,0,0,0,0,0,0,0,90,2.1,9,8,11.3,3050,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-29.4,-32.2,77,100700,31,1097,148,7,26,6,802,0,689,206,90,2.1,9,6,11.3,3050,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.3,-30.6,81,100700,131,1386,159,45,37,42,4856,0,4548,1177,80,1.5,9,9,11.3,2290,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-27.2,-30.0,77,100700,224,1386,157,99,68,89,10547,2527,9523,2300,70,1.5,9,7,11.3,2290,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-25.6,-28.3,78,100700,296,1386,165,118,32,111,12706,1672,12005,3137,0,0.0,10,8,11.3,2290,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-25.0,-27.2,82,100700,343,1386,167,149,140,115,16257,7900,12601,3566,0,0.0,10,8,11.3,2440,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-23.3,-26.1,78,100700,362,1386,172,167,73,148,17941,4991,15977,4127,0,0.0,10,8,11.3,3660,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-23.3,-25.6,82,100700,351,1386,168,176,247,115,19247,14021,12629,3620,0,0.0,8,6,11.3,2290,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-23.3,-25.6,82,100700,310,1386,168,102,54,90,11234,2420,9950,2926,50,1.0,7,6,11.3,2130,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-23.9,-26.7,78,100700,243,1386,162,109,226,71,11939,6715,7805,2216,80,1.0,4,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-26.1,-28.9,78,100700,155,1386,155,61,204,40,6712,0,4414,1251,0,0.0,4,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-26.1,-28.3,82,100600,55,1386,161,12,29,11,1352,0,1241,364,0,0.0,7,7,11.3,1830,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-25.0,-27.8,78,100600,0,58,175,0,0,0,0,0,0,0,0,0.0,10,10,11.3,1830,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-23.3,-26.7,74,100600,0,0,181,0,0,0,0,0,0,0,350,2.1,10,10,11.3,1830,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-23.3,-26.1,78,100600,0,0,181,0,0,0,0,0,0,0,10,2.6,10,10,11.3,1680,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-23.3,-25.6,82,100600,0,0,181,0,0,0,0,0,0,0,360,3.1,10,10,11.3,1680,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-23.3,-25.6,82,100500,0,0,181,0,0,0,0,0,0,0,20,3.1,10,10,11.3,1680,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-22.8,-25.0,82,100500,0,0,175,0,0,0,0,0,0,0,40,1.5,8,8,11.3,1680,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-22.8,-25.6,78,100600,0,0,183,0,0,0,0,0,0,0,100,1.5,10,10,11.3,1490,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-22.8,-25.0,82,100500,0,0,183,0,0,0,0,0,0,0,360,2.6,10,10,11.3,1490,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-22.8,-25.0,82,100500,0,0,183,0,0,0,0,0,0,0,360,3.6,10,10,11.3,1460,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-22.8,-25.0,82,100500,0,0,183,0,0,0,0,0,0,0,350,3.1,10,10,11.3,1460,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-22.8,-25.0,82,100500,0,0,183,0,0,0,0,0,0,0,350,3.6,10,10,11.3,1430,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-22.8,-25.0,82,100500,0,0,183,0,0,0,0,0,0,0,10,3.1,10,10,11.3,1430,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-22.8,-25.0,82,100500,0,0,183,0,0,0,0,0,0,0,350,3.6,10,10,11.3,1460,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-22.8,-25.0,82,100500,39,1212,183,2,1,2,252,0,252,78,340,3.1,10,10,6.4,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-22.8,-25.0,82,100400,140,1385,183,28,2,27,3153,0,3047,920,340,3.1,10,10,4.8,1680,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-23.3,-25.6,82,100400,233,1385,173,85,48,77,9205,1512,8371,2247,330,3.1,10,8,4.8,1680,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-23.3,-25.6,82,100500,305,1385,176,86,30,79,9558,1202,8811,2678,320,3.6,10,9,4.8,1680,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-23.9,-26.1,82,100400,352,1385,179,123,22,117,13440,1267,12839,3665,340,3.6,10,10,11.3,1680,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-23.9,-26.1,82,100400,371,1385,179,107,0,107,10653,0,10732,3607,340,4.1,10,10,11.3,1680,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-23.9,-26.1,82,100400,359,1385,179,145,2,144,15603,134,15569,4066,350,4.1,10,10,11.3,1680,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-23.3,-25.6,82,100400,319,1385,167,146,243,92,16099,11257,10183,3013,360,4.6,8,5,9.7,4270,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-23.9,-26.1,82,100400,252,1385,171,76,18,73,8335,570,8035,2297,350,4.6,10,8,11.3,6100,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-23.9,-26.1,82,100400,164,1385,168,69,40,65,7321,685,6925,1619,350,4.6,10,7,11.3,6100,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-23.9,-26.1,82,100400,62,1385,168,18,8,17,1974,0,1869,510,340,3.6,10,7,11.3,6100,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-24.4,-26.7,82,100500,1,173,166,0,0,0,0,0,0,0,330,3.6,10,7,11.3,6100,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-24.4,-27.8,74,100500,0,0,177,0,0,0,0,0,0,0,330,3.6,10,10,11.3,1680,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-25.0,-27.8,78,100500,0,0,167,0,0,0,0,0,0,0,320,3.6,10,8,11.3,1680,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-26.1,-28.9,78,100500,0,0,166,0,0,0,0,0,0,0,310,4.1,10,9,11.3,1680,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-25.6,-27.8,82,100500,0,0,160,0,0,0,0,0,0,0,320,5.2,10,6,9.7,1520,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-25.6,-28.3,78,100600,0,0,162,0,0,0,0,0,0,0,310,5.2,10,7,9.7,1520,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-26.1,-28.9,78,100600,0,0,157,0,0,0,0,0,0,0,310,4.1,10,5,9.7,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-27.2,-30.0,77,100600,0,0,153,0,0,0,0,0,0,0,310,5.2,10,5,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-27.2,-29.4,81,100600,0,0,154,0,0,0,0,0,0,0,320,4.6,10,5,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.3,-31.1,77,100700,0,0,149,0,0,0,0,0,0,0,320,4.6,9,4,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-29.4,-32.2,77,100700,0,0,143,0,0,0,0,0,0,0,310,4.6,8,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-31.1,-33.9,76,100800,0,0,138,0,0,0,0,0,0,0,300,4.1,4,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-31.1,-33.9,76,100800,0,0,133,0,0,0,0,0,0,0,310,5.2,5,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-31.7,-34.4,76,100800,47,1326,132,13,71,10,1462,0,1127,328,300,4.1,3,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-31.7,-34.4,76,100900,150,1384,132,60,300,30,6739,0,3377,1015,290,4.1,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1990,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,-30.6,-33.9,73,100900,242,1384,135,125,482,44,14236,7912,5023,1599,280,3.6,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1990,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,-30.0,-32.8,77,101000,315,1384,137,181,585,52,20880,18105,6013,2000,290,4.6,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.9,-32.2,73,101000,362,1384,139,220,637,58,25527,24649,6747,2294,270,4.6,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.3,-31.7,73,101000,380,1384,141,237,664,60,27571,27374,6997,2401,280,5.2,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.3,-31.7,73,101100,368,1384,141,227,647,59,26356,25705,6867,2342,280,4.6,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.3,-31.7,73,101100,327,1384,141,193,607,54,22291,20245,6252,2091,270,3.1,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.9,-31.7,77,101100,260,1384,140,140,516,46,16002,10549,5271,1699,260,4.1,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1990,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,-29.4,-32.2,77,101100,172,1384,138,77,362,34,8669,0,3837,1168,270,4.6,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1990,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,-31.1,-34.4,72,101200,70,1384,133,19,137,12,2162,0,1368,411,260,2.6,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1990,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,-31.7,-34.4,76,101200,2,265,132,0,0,0,0,0,0,0,250,2.1,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1990,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,-36.1,-41.1,60,101200,0,0,119,0,0,0,0,0,0,0,230,1.5,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-35.0,-38.9,67,101200,0,0,122,0,0,0,0,0,0,0,220,3.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-35.6,-39.4,67,101200,0,0,121,0,0,0,0,0,0,0,200,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-35.6,-39.4,67,101200,0,0,121,0,0,0,0,0,0,0,210,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-36.7,-41.1,63,101300,0,0,117,0,0,0,0,0,0,0,230,1.5,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-37.2,-40.2,67,101300,0,0,117,0,0,0,0,0,0,0,230,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-36.1,-39.4,71,101300,0,0,120,0,0,0,0,0,0,0,210,4.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-36.1,-38.9,75,101300,0,0,120,0,0,0,0,0,0,0,210,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-36.1,-39.4,71,101300,0,0,120,0,0,0,0,0,0,0,210,6.2,5,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-35.0,-38.3,71,101300,0,0,130,0,0,0,0,0,0,0,210,5.2,9,5,11.3,1400,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-35.6,-38.9,71,101400,0,0,125,0,0,0,0,0,0,0,210,5.2,6,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-35.0,-38.3,71,101400,0,58,129,0,0,0,0,0,0,0,230,3.1,10,4,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-34.4,-38.3,68,101400,55,1383,128,10,14,10,1137,0,1138,340,210,5.2,7,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-34.4,-37.8,72,101400,159,1383,128,55,100,44,6018,135,4830,1339,200,5.7,8,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-33.3,-36.7,72,101500,251,1383,127,119,315,65,13179,8866,7222,2140,210,5.2,3,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-32.2,-36.1,68,101500,324,1383,130,169,437,69,19118,16852,7829,2511,220,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-31.1,-34.4,72,101600,371,1383,133,206,494,77,23433,22670,8786,2888,210,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-30.6,-33.9,73,101600,389,1383,135,222,519,80,25308,25095,9149,3035,210,4.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-30.0,-33.3,73,101600,377,1383,136,212,504,78,24136,23559,8908,2938,200,4.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-30.0,-33.3,73,101600,336,1383,136,180,459,72,20373,18780,8174,2634,210,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-30.0,-33.3,73,101600,269,1383,136,130,369,60,14592,10385,6755,2095,200,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-31.1,-34.4,72,101700,181,1383,133,71,223,43,7877,1013,4784,1402,200,6.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-32.2,-35.0,76,101700,78,1383,130,17,51,15,1915,0,1693,501,190,6.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-32.8,-35.6,76,101700,6,357,129,1,1,1,0,0,0,0,200,6.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-33.9,-37.2,72,101700,0,0,125,0,0,0,0,0,0,0,180,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-34.4,-37.8,72,101600,0,0,124,0,0,0,0,0,0,0,170,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-34.4,-38.3,68,101700,0,0,124,0,0,0,0,0,0,0,180,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-36.7,-39.4,75,101700,0,0,118,0,0,0,0,0,0,0,160,5.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-36.7,-39.4,75,101600,0,0,118,0,0,0,0,0,0,0,150,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-35.6,-38.9,71,101600,0,0,121,0,0,0,0,0,0,0,130,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-36.1,-39.4,71,101600,0,0,120,0,0,0,0,0,0,0,130,5.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-36.1,-39.4,71,101500,0,0,120,0,0,0,0,0,0,0,120,5.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-36.1,-39.4,71,101500,0,0,120,0,0,0,0,0,0,0,130,5.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-34.4,-38.3,68,101400,0,0,124,0,0,0,0,0,0,0,130,5.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-35.0,-38.3,71,101300,0,0,122,0,0,0,0,0,0,0,120,5.7,4,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-33.9,-37.2,72,101300,1,173,125,0,0,0,0,0,0,0,120,5.2,1,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-32.8,-36.1,72,101200,64,1383,131,17,133,11,1936,0,1255,377,120,6.7,2,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-31.7,-34.4,76,101100,168,1383,138,66,136,50,7183,979,5460,1482,110,7.2,7,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-30.0,-32.8,77,101000,261,1383,144,119,229,78,13028,8075,8571,2433,120,6.7,10,4,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-27.8,-31.1,73,101000,333,1383,150,180,288,112,19622,15823,12261,3447,110,6.7,10,4,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-26.1,-29.4,74,100900,380,1383,155,214,313,130,23378,19806,14264,4078,110,7.2,10,4,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-25.0,-27.8,78,100800,398,1383,159,239,391,130,26247,25000,14339,4216,120,7.7,10,4,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-23.3,-25.6,82,100600,386,1383,167,233,369,132,25465,23612,14490,4158,120,8.2,10,5,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-22.2,-24.4,82,100600,345,1383,174,143,114,115,15611,6431,12608,3582,120,9.3,10,7,11.3,5180,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-20.0,-21.7,87,100500,277,1383,194,69,6,68,7687,194,7600,2316,130,10.3,10,10,1.2,4270,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-21.7,87,100300,189,1383,194,56,6,56,6101,83,6122,1682,130,9.3,10,10,1.2,4270,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-18.9,-20.6,87,100300,87,1383,199,14,3,13,1606,0,1494,458,130,8.8,10,10,1.6,4270,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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.7,-18.3,87,100200,6,472,208,0,0,0,0,0,0,0,130,9.3,10,10,1.6,1370,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-17.8,87,100100,0,0,210,0,0,0,0,0,0,0,140,8.8,10,10,1.2,1370,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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.6,-16.7,91,100000,0,0,213,0,0,0,0,0,0,0,140,9.3,10,10,1.2,1370,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-12.8,-13.9,92,100000,0,0,225,0,0,0,0,0,0,0,160,8.8,10,10,2.4,1370,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,-12.2,-12.8,96,99900,0,0,217,0,0,0,0,0,0,0,160,8.2,10,8,6.4,1830,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,-11.7,92,99900,0,0,234,0,0,0,0,0,0,0,170,8.2,10,10,4.8,1830,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,-7.8,-7.8,100,99900,0,0,248,0,0,0,0,0,0,0,180,9.8,10,10,2.4,1830,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,-6.1,-6.7,96,99800,0,0,256,0,0,0,0,0,0,0,190,12.4,10,10,2.4,460,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1990,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,-5.6,-5.6,100,99800,0,0,259,0,0,0,0,0,0,0,210,12.9,10,10,2.4,400,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1990,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,-4.4,-4.4,100,99800,0,0,264,0,0,0,0,0,0,0,210,12.4,10,10,2.4,460,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-3.9,100,99800,0,0,267,0,0,0,0,0,0,0,210,13.4,10,10,4.8,610,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-3.9,100,99900,0,0,267,0,0,0,0,0,0,0,210,12.9,10,10,1.2,370,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.3,-3.3,100,99900,2,288,270,0,0,0,0,0,0,0,220,9.3,10,10,1.2,460,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.3,-3.3,100,99900,73,1382,270,11,1,11,1261,0,1262,387,220,7.2,10,10,2.4,240,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,-2.8,-2.8,100,100000,178,1382,272,58,2,58,6247,22,6271,1649,220,8.2,10,10,4.8,240,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,-2.8,-2.8,100,100000,270,1382,272,86,2,86,9346,74,9383,2620,230,5.7,10,10,8.0,210,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,-2.8,-2.8,100,100100,342,1382,272,125,3,124,13513,170,13465,3687,240,3.1,10,10,8.0,150,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-3.9,100,100200,389,1382,267,147,2,147,15897,132,15973,4391,250,6.7,10,10,4.8,150,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,-5.0,-5.6,96,100300,407,1382,244,216,124,180,23088,9521,19341,4893,240,2.6,9,7,4.8,820,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-5.0,-6.1,92,100300,394,1382,241,228,310,142,24783,20248,15507,4379,240,4.1,9,6,9.7,700,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-6.7,-7.2,96,100400,353,1382,253,114,0,114,11312,0,11396,3629,260,7.2,10,10,6.4,270,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-8.9,-10.0,92,100500,286,1382,227,119,120,95,12921,5216,10357,2863,270,9.8,10,7,8.0,270,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-10.0,-11.7,88,100600,197,1382,236,65,30,61,7055,516,6645,1805,270,8.2,10,10,8.0,1040,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-11.1,-12.2,92,100700,95,1382,232,15,9,14,1722,0,1609,496,250,6.2,10,10,9.7,910,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-12.2,-13.3,92,100700,8,564,227,0,0,0,0,0,0,0,280,7.7,10,10,9.7,910,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-13.3,-15.0,87,100800,0,0,211,0,0,0,0,0,0,0,260,9.3,8,8,9.7,5180,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-14.4,-16.1,87,100900,0,0,207,0,0,0,0,0,0,0,270,7.7,10,8,11.3,5180,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-15.0,-16.7,87,101000,0,0,215,0,0,0,0,0,0,0,270,8.2,10,10,11.3,2740,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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.7,-18.3,87,101000,0,0,198,0,0,0,0,0,0,0,270,6.2,9,8,11.3,2740,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-17.2,-19.4,83,101100,0,0,192,0,0,0,0,0,0,0,290,6.7,7,7,11.3,1220,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-18.9,-21.1,83,101100,0,0,182,0,0,0,0,0,0,0,280,6.7,8,5,11.3,1220,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-19.4,-21.7,83,101100,0,0,173,0,0,0,0,0,0,0,280,6.2,4,1,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-20.0,-22.2,83,101200,0,0,177,0,0,0,0,0,0,0,280,6.2,7,4,11.3,4270,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-20.0,-21.7,87,101300,0,0,185,0,0,0,0,0,0,0,280,7.7,8,8,11.3,1220,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-19.4,-21.7,83,101300,0,0,191,0,0,0,0,0,0,0,290,6.7,10,9,11.3,1830,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-20.0,-22.2,83,101400,0,0,185,0,0,0,0,0,0,0,290,7.2,10,8,4.8,4270,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-20.0,-21.7,87,101500,4,403,194,0,0,0,0,0,0,0,280,7.7,10,10,8.0,4270,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-20.0,-22.2,83,101600,82,1381,194,16,0,16,1554,0,1564,532,280,7.2,10,10,8.0,3350,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-20.0,-22.2,83,101700,187,1381,189,32,19,30,3666,0,3443,1091,290,7.7,10,9,9.7,3350,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-20.6,-22.8,83,101800,279,1381,176,113,142,86,12355,5720,9439,2678,280,7.7,10,5,9.7,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-20.6,-22.8,83,101900,351,1381,175,161,126,129,17442,7745,14038,3830,280,8.2,10,4,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-20.0,-22.2,83,102100,398,1381,174,229,275,152,24816,19330,16550,4539,270,8.2,10,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-19.4,-21.7,83,102100,415,1381,170,259,542,100,29203,30171,11316,3681,270,7.7,4,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-20.0,-22.2,83,102200,403,1381,168,245,588,78,28091,28479,8970,3027,270,8.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-20.6,-22.8,83,102300,362,1381,166,210,542,71,23978,23156,8131,2693,270,10.3,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-21.1,-23.3,82,102400,294,1381,164,156,461,61,17645,14561,6920,2206,270,9.3,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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.7,-24.4,78,102500,206,1381,162,93,321,47,10368,3626,5255,1576,270,11.3,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-22.8,-25.0,82,102600,103,1381,159,31,123,23,3444,0,2561,738,280,9.8,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-23.3,-25.6,82,102600,12,679,157,2,8,2,0,0,0,0,270,9.8,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-23.9,-26.7,78,102700,0,0,155,0,0,0,0,0,0,0,270,9.8,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-23.3,-26.1,78,102800,0,0,157,0,0,0,0,0,0,0,270,10.8,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-23.9,-26.1,82,102800,0,0,155,0,0,0,0,0,0,0,260,9.3,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-23.9,-26.7,78,103000,0,0,155,0,0,0,0,0,0,0,270,10.3,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-24.4,-27.2,78,103000,0,0,153,0,0,0,0,0,0,0,280,10.3,2,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-25.0,-27.8,78,103100,0,0,152,0,0,0,0,0,0,0,270,8.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-25.6,-28.3,78,103100,0,0,150,0,0,0,0,0,0,0,270,7.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-26.1,-28.9,78,103200,0,0,148,0,0,0,0,0,0,0,280,8.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-26.1,-28.3,82,103300,0,0,149,0,0,0,0,0,0,0,280,9.3,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-26.7,-28.9,82,103400,0,0,147,0,0,0,0,0,0,0,270,8.8,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-26.7,-29.4,77,103500,0,0,146,0,0,0,0,0,0,0,270,9.3,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-26.7,-29.4,77,103500,7,518,146,3,17,1,0,0,0,0,280,7.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-26.7,-29.4,77,103600,91,1380,146,29,203,17,3272,0,1921,573,280,7.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-26.7,-28.9,82,103700,196,1380,147,94,426,37,10640,1581,4198,1303,290,7.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-26.1,-28.9,78,103800,288,1380,148,163,569,48,18759,14594,5537,1822,290,6.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-25.6,-28.3,78,103900,360,1380,150,222,653,56,25824,24711,6530,2229,280,6.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-25.6,-27.8,82,103900,407,1380,150,262,696,62,30627,30818,7266,2529,290,6.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-24.4,-27.8,74,104000,424,1380,153,278,711,64,32567,32956,7516,2636,280,6.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-27.8,74,104100,412,1380,153,267,702,63,31217,31620,7384,2574,280,6.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-27.2,78,104100,370,1380,153,231,664,58,26877,26273,6765,2317,300,3.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-24.4,-27.2,78,104100,303,1380,153,176,589,50,20291,16797,5778,1915,260,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-26.1,-28.3,82,104200,214,1380,151,108,430,44,12155,4857,4965,1529,260,4.1,1,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-26.7,-28.9,82,104200,111,1380,150,40,220,24,4457,0,2680,781,260,3.1,1,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-27.8,-30.0,81,104200,16,771,146,4,33,2,0,0,0,0,300,1.5,1,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-27.8,-31.1,73,104200,0,0,147,0,0,0,0,0,0,0,210,1.5,2,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-27.8,-31.1,73,104200,0,0,147,0,0,0,0,0,0,0,160,3.6,3,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-27.2,-30.6,73,104200,0,0,149,0,0,0,0,0,0,0,170,3.6,2,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-27.2,-30.0,77,104100,0,0,155,0,0,0,0,0,0,0,160,3.6,8,6,11.3,6100,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-25.6,-28.3,78,104100,0,0,165,0,0,0,0,0,0,0,160,4.1,10,8,11.3,6100,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-25.0,-27.2,82,104100,0,0,167,0,0,0,0,0,0,0,150,3.6,10,8,11.3,6100,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-23.9,-26.1,82,104000,0,0,171,0,0,0,0,0,0,0,150,4.6,10,8,11.3,4270,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-22.8,-25.0,82,104000,0,0,175,0,0,0,0,0,0,0,150,4.6,10,8,11.3,4270,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-21.7,-23.9,82,103900,0,0,179,0,0,0,0,0,0,0,130,6.2,10,8,11.3,4270,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-21.7,-23.9,82,103800,0,0,188,0,0,0,0,0,0,0,140,6.2,10,10,11.3,4270,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-21.7,-23.9,82,103800,0,0,182,0,0,0,0,0,0,0,150,7.7,10,9,11.3,4270,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-21.7,-23.9,82,103700,10,632,188,2,0,2,0,0,0,0,150,7.7,10,10,11.3,4270,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-21.7,-23.9,82,103600,100,1379,188,31,11,31,3353,0,3363,876,140,7.7,10,10,11.3,6100,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-21.1,-23.3,82,103600,206,1379,190,57,1,57,6253,17,6274,1781,140,6.7,10,10,11.3,4270,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-20.6,-23.3,79,103500,298,1379,186,117,25,112,12598,1314,12113,3170,150,6.7,10,9,11.3,6100,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-20.0,-22.2,83,103400,369,1379,189,105,0,105,10451,0,10529,3564,160,6.7,10,9,11.3,6100,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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.9,-21.7,79,103400,416,1379,198,101,8,99,11399,443,11213,3658,170,6.7,10,10,11.3,6100,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-18.9,-21.7,79,103300,433,1379,198,126,1,126,14009,64,14067,4385,170,6.7,10,10,11.3,6100,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-18.9,-21.7,79,103200,420,1379,182,248,343,146,27145,23694,16054,4665,190,5.7,10,5,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-18.3,-21.1,79,103200,379,1379,181,251,464,126,27484,28584,13857,4017,200,4.1,10,3,16.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-18.9,-21.7,79,103100,311,1379,177,175,409,85,19377,17536,9446,2840,210,6.2,7,2,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-18.3,-21.1,79,103100,222,1379,179,96,243,59,10583,4990,6525,1895,210,5.2,6,2,16.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-18.9,-22.2,75,103000,119,1379,174,45,221,27,4994,0,3004,869,210,6.2,4,1,16.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-19.4,-22.8,75,103000,20,862,173,8,44,5,0,0,0,0,230,3.6,6,1,16.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-18.3,-22.2,72,103000,0,0,176,0,0,0,0,0,0,0,240,3.1,4,1,16.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-19.4,-22.2,79,102900,0,0,173,0,0,0,0,0,0,0,230,4.1,4,1,16.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-17.2,-20.6,76,102900,0,0,177,0,0,0,0,0,0,0,240,2.1,3,0,16.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-15.6,-18.3,80,102900,0,0,183,0,0,0,0,0,0,0,240,2.1,3,0,16.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-16.7,-18.9,83,103000,0,0,180,0,0,0,0,0,0,0,250,4.6,2,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-16.7,-20.0,76,102900,0,0,179,0,0,0,0,0,0,0,240,2.1,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-16.7,-19.4,79,102900,0,0,179,0,0,0,0,0,0,0,260,5.2,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-17.2,-18.9,87,103000,0,0,178,0,0,0,0,0,0,0,270,5.7,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-15.6,-17.8,83,103000,0,0,183,0,0,0,0,0,0,0,270,5.7,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-17.2,-19.4,83,103000,0,0,178,0,0,0,0,0,0,0,260,6.2,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-16.7,-18.3,87,103000,0,0,180,0,0,0,0,0,0,0,250,3.6,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-16.7,-18.3,87,103000,14,747,180,4,22,2,0,0,0,0,250,2.1,0,0,16.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-21.1,-22.8,87,103100,110,1379,168,38,132,29,4163,0,3186,880,230,2.1,5,1,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-17.2,-18.9,87,103200,215,1379,182,97,305,52,10767,4684,5789,1719,270,5.7,5,1,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-16.1,-18.3,83,103200,307,1379,185,165,425,73,18467,15941,8197,2552,260,3.1,5,1,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-16.7,-18.3,87,103300,378,1379,180,238,568,87,26857,27848,9851,3190,270,2.1,5,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-16.7,-19.4,79,103300,424,1379,179,263,646,69,30620,30574,8055,2805,200,2.6,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-16.7,-18.9,83,103400,442,1379,180,283,676,71,33020,33216,8307,2915,200,3.6,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-15.6,-18.3,80,103400,429,1379,183,272,664,70,31669,31800,8172,2850,180,3.6,0,0,24.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-15.0,-18.3,76,103500,387,1379,185,238,630,65,27565,27054,7548,2583,190,5.2,0,0,24.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-15.6,-18.9,76,103500,320,1379,183,182,560,56,20903,18257,6448,2136,140,4.1,0,0,24.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-17.8,-20.6,79,103500,231,1379,175,115,437,45,13009,6321,5104,1600,120,3.1,0,0,24.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-21.1,-23.3,82,103500,127,1379,164,47,236,27,5247,0,3021,890,140,4.6,0,0,24.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-21.1,-22.8,87,103600,25,977,165,7,40,5,0,0,0,0,130,6.7,0,0,24.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-20.6,-23.3,79,103500,0,0,166,0,0,0,0,0,0,0,130,6.7,0,0,24.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-21.1,-23.3,82,103600,0,0,164,0,0,0,0,0,0,0,130,5.2,0,0,24.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-21.7,-23.3,87,103500,0,0,163,0,0,0,0,0,0,0,130,6.2,0,0,24.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-22.2,-24.4,82,103600,0,0,161,0,0,0,0,0,0,0,150,6.7,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-22.2,-24.4,82,103600,0,0,161,0,0,0,0,0,0,0,150,3.1,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-23.3,-25.6,82,103600,0,0,157,0,0,0,0,0,0,0,150,3.6,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-24.4,-27.2,78,103600,0,0,153,0,0,0,0,0,0,0,150,4.1,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-25.0,-27.8,78,103600,0,0,152,0,0,0,0,0,0,0,160,3.1,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-25.6,-27.8,82,103600,0,0,150,0,0,0,0,0,0,0,150,3.1,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-25.6,-27.8,82,103600,0,0,150,0,0,0,0,0,0,0,140,3.6,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-24.4,-27.2,78,103600,0,0,153,0,0,0,0,0,0,0,180,3.1,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-24.4,-27.2,78,103600,19,861,153,5,32,4,0,0,0,0,180,3.1,0,0,24.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-23.3,-26.1,78,103600,119,1378,157,42,223,25,4691,0,2799,823,190,2.1,0,0,24.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-22.8,-25.6,78,103600,224,1378,159,109,428,43,12344,5350,4882,1530,190,3.6,0,0,24.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-20.0,-23.3,75,103600,316,1378,167,178,557,54,20483,17633,6229,2067,180,4.1,0,0,24.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-17.2,-20.6,76,103600,387,1378,177,236,634,63,27405,26939,7335,2519,180,5.2,0,0,24.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-15.6,-18.3,80,103500,433,1378,183,276,675,69,32207,32357,8073,2828,170,4.1,0,0,24.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-14.4,-17.2,80,103500,450,1378,187,291,689,71,34025,34190,8324,2937,170,4.6,0,0,24.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-13.9,-16.7,80,103500,438,1378,189,281,680,69,32824,32731,8081,2839,160,3.6,0,0,24.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-13.3,-16.7,76,103400,396,1378,191,245,643,64,28475,27835,7458,2572,130,3.6,0,0,24.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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.9,-17.2,76,103400,328,1378,189,189,573,56,21763,19205,6465,2157,120,4.1,0,0,24.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-15.6,-18.3,80,103300,239,1378,183,121,455,45,13734,7174,5120,1622,110,4.1,0,0,24.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-16.7,-18.9,83,103300,135,1378,180,52,262,29,5801,0,3243,957,110,4.1,0,0,24.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-18.3,-20.6,83,103200,31,1068,174,9,51,6,1029,0,687,205,140,6.2,0,0,16.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-18.3,-21.7,75,103200,0,0,173,0,0,0,0,0,0,0,150,7.7,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-18.3,-20.6,83,103200,0,0,174,0,0,0,0,0,0,0,160,5.2,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-18.3,-20.6,83,103100,0,0,174,0,0,0,0,0,0,0,210,2.6,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-18.3,-20.6,83,103100,0,0,174,0,0,0,0,0,0,0,250,2.6,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-17.8,-20.0,83,103100,0,0,176,0,0,0,0,0,0,0,270,3.6,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-17.8,-19.4,87,103000,0,0,176,0,0,0,0,0,0,0,270,3.1,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-16.1,-17.8,87,103000,0,0,182,0,0,0,0,0,0,0,250,1.5,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-17.8,-18.9,91,103000,0,0,176,0,0,0,0,0,0,0,200,3.6,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-17.2,-18.9,87,103000,0,0,178,0,0,0,0,0,0,0,250,1.5,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-15.6,-16.7,91,103000,0,0,188,0,0,0,0,0,0,0,250,1.5,3,1,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-17.8,-18.9,91,103000,0,0,180,0,0,0,0,0,0,0,210,4.6,3,1,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-11.7,-15.0,77,103000,25,975,206,8,30,6,0,0,0,0,240,2.6,10,3,16.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-10.6,-15.0,70,103000,128,1377,209,48,73,42,5164,0,4535,1161,240,2.1,10,3,24.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-9.4,-13.3,74,103000,233,1377,216,95,76,83,10220,2567,8966,2333,240,2.1,10,4,24.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-12.8,77,103000,325,1377,220,176,228,124,18957,13160,13417,3548,240,2.6,10,6,24.1,6100,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-9.4,-12.2,81,103000,396,1377,217,225,251,154,24333,17566,16735,4560,240,3.1,10,4,24.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-7.8,-10.0,84,103100,442,1377,228,267,314,168,29026,23368,18353,5183,250,3.6,10,6,24.1,6100,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-7.2,-9.4,84,103100,459,1377,233,212,72,188,22931,5740,20440,5601,260,6.7,10,7,24.1,6100,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-6.7,-8.9,84,103100,446,1377,239,171,16,166,18627,1180,18170,5197,240,5.7,10,8,11.3,4270,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-6.7,-8.9,84,103100,404,1377,244,132,43,120,14604,2565,13332,4086,260,6.7,10,9,11.3,3960,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-7.2,-8.9,88,103200,336,1377,242,123,38,114,13388,2058,12461,3514,270,7.7,10,9,11.3,3960,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-7.8,-9.4,88,103200,247,1377,247,92,47,84,9942,1649,9114,2446,280,6.7,10,10,11.3,3960,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-8.9,-10.6,88,103300,144,1377,241,38,4,37,4173,0,4075,1151,270,5.7,10,10,11.3,3960,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-9.4,-10.6,92,103300,37,1182,240,5,1,5,585,0,585,180,270,6.2,10,10,11.3,2440,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-9.4,-11.1,88,103300,0,0,228,0,0,0,0,0,0,0,270,5.2,10,8,11.3,4270,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-10.0,-11.1,92,103400,0,0,219,0,0,0,0,0,0,0,280,6.2,9,6,11.3,3960,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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.1,-12.2,92,103500,0,0,215,0,0,0,0,0,0,0,280,5.2,9,6,11.3,3960,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-12.2,-13.3,92,103500,0,0,207,0,0,0,0,0,0,0,290,4.1,7,4,11.3,4270,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-13.9,-15.0,91,103600,0,0,200,0,0,0,0,0,0,0,290,4.1,7,4,11.3,4270,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-14.4,-15.0,96,103700,0,0,195,0,0,0,0,0,0,0,310,5.2,6,2,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-15.6,-17.2,87,103700,0,0,197,0,0,0,0,0,0,0,310,3.1,6,6,3.2,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-16.1,-17.2,91,103700,0,0,190,0,0,0,0,0,0,0,320,3.1,5,3,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-17.2,-18.3,91,103800,0,0,186,0,0,0,0,0,0,0,330,2.6,5,3,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-18.3,-19.4,91,103800,0,0,178,0,0,0,0,0,0,0,340,2.1,3,1,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-18.3,-20.6,83,103900,0,0,177,0,0,0,0,0,0,0,360,1.5,2,1,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-18.3,-20.0,87,103900,31,1067,180,7,21,6,802,0,688,206,360,2.1,7,2,24.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-18.3,-20.0,87,104000,137,1376,182,41,55,36,4499,0,3962,1109,20,2.6,10,3,24.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-18.9,-20.0,91,104000,243,1376,178,110,228,72,12032,6806,7904,2235,30,3.1,7,2,24.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-17.8,-19.4,87,104100,334,1376,180,183,465,74,20650,19016,8377,2684,30,4.1,3,1,24.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-17.8,-18.9,91,104100,405,1376,176,254,579,87,28889,29591,9928,3297,40,4.1,4,0,24.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-17.2,-18.9,87,104100,451,1376,182,275,602,82,31803,31748,9512,3302,40,5.2,2,1,24.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-17.2,-18.9,87,104100,468,1376,178,300,642,86,34708,35166,9980,3481,50,4.1,2,0,24.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-16.7,-18.9,83,104100,455,1376,183,286,540,111,32314,32717,12589,4155,70,3.6,5,1,24.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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.2,-19.4,83,104100,413,1376,178,258,560,94,29222,30070,10684,3519,70,3.1,5,0,24.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-17.2,-19.4,83,104100,345,1376,178,203,501,80,22839,22063,9031,2878,60,4.6,5,0,24.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-20.0,83,104100,255,1376,179,129,339,68,14254,10012,7539,2225,50,5.2,6,1,24.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-18.3,-21.1,79,104100,152,1376,179,52,97,42,5685,0,4606,1275,50,5.7,7,2,24.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-19.4,-21.7,83,104100,44,1273,173,11,36,9,1242,0,1018,299,60,5.2,7,1,16.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-20.0,-22.8,79,104100,0,0,171,0,0,0,0,0,0,0,60,6.2,7,1,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-21.1,-23.3,82,104000,0,0,174,0,0,0,0,0,0,0,70,5.2,8,5,11.3,5790,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-21.7,-23.3,87,104000,0,0,168,0,0,0,0,0,0,0,70,5.7,7,2,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-21.1,-22.8,87,104000,0,0,165,0,0,0,0,0,0,0,70,5.7,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-20.6,-22.2,87,103900,0,0,170,0,0,0,0,0,0,0,70,5.2,3,1,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-19.4,-21.1,87,103900,0,0,179,0,0,0,0,0,0,0,70,5.2,6,4,11.3,5790,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-18.3,-20.0,87,103900,0,0,189,0,0,0,0,0,0,0,70,5.7,10,7,11.3,5790,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-17.8,-19.4,87,103800,0,0,203,0,0,0,0,0,0,0,60,5.7,10,10,11.3,5790,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-17.2,-18.9,87,103700,0,0,206,0,0,0,0,0,0,0,70,5.7,10,10,11.3,5790,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-17.2,-18.9,87,103700,0,0,206,0,0,0,0,0,0,0,70,5.2,10,10,11.3,5790,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-17.2,-18.9,87,103700,0,0,196,0,0,0,0,0,0,0,60,5.2,10,8,16.1,3350,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-17.2,-18.9,87,103600,39,1181,196,10,11,10,1111,0,1114,315,80,5.7,10,8,24.1,4270,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-16.7,-18.9,83,103600,146,1375,207,36,5,35,3983,0,3883,1121,80,5.2,10,10,24.1,4270,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-17.2,-18.9,87,103600,252,1375,196,95,57,86,10276,2139,9340,2505,60,5.7,10,8,24.1,4270,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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.2,-19.4,83,103600,343,1375,195,146,99,122,15854,5794,13307,3683,60,6.2,10,8,24.1,4270,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-16.7,-18.9,83,103500,414,1375,190,217,254,143,23754,17240,15725,4574,70,6.7,10,5,24.1,4570,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-17.8,-19.4,87,103400,460,1375,184,275,419,138,30564,28431,15404,4819,50,6.2,7,3,24.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-17.2,-20.0,79,103400,476,1375,183,316,609,109,35954,37210,12447,4202,60,6.2,5,2,24.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-19.4,83,103400,463,1375,184,288,551,106,32734,32906,12092,4061,50,6.2,4,2,24.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-20.0,79,103300,421,1375,183,258,613,74,29856,29799,8588,2961,60,7.2,4,2,24.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-20.0,79,103300,353,1375,181,211,568,69,24088,23358,7900,2612,60,7.2,3,1,24.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-20.6,83,103200,264,1375,177,121,338,58,13591,8818,6534,2032,60,6.2,5,1,24.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-19.4,-21.7,83,103200,160,1375,170,72,366,32,8090,0,3604,1090,70,6.7,3,0,24.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-20.0,-22.2,83,103100,51,1364,168,17,157,10,1921,0,1132,334,60,6.2,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-20.6,-23.3,79,103100,0,0,166,0,0,0,0,0,0,0,50,5.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-21.1,-23.3,82,103100,0,0,164,0,0,0,0,0,0,0,50,6.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-21.7,-23.9,82,103000,0,0,163,0,0,0,0,0,0,0,50,6.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-22.2,-24.4,82,103000,0,0,161,0,0,0,0,0,0,0,50,5.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-22.2,-23.9,86,103000,0,0,161,0,0,0,0,0,0,0,50,6.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-22.2,-24.4,82,102900,0,0,161,0,0,0,0,0,0,0,50,6.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-23.3,-25.6,82,102900,0,0,157,0,0,0,0,0,0,0,50,6.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-23.3,-25.0,86,102800,0,0,158,0,0,0,0,0,0,0,60,6.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-23.9,-26.1,82,102700,0,0,155,0,0,0,0,0,0,0,50,5.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-23.9,-26.7,78,102700,0,0,155,0,0,0,0,0,0,0,70,5.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-23.9,-26.1,82,102700,0,0,155,0,0,0,0,0,0,0,50,6.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-23.9,-26.1,82,102600,46,1294,155,12,75,9,1361,0,1022,303,60,5.7,0,0,24.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-23.3,-25.0,86,102600,156,1375,158,64,304,32,7175,0,3596,1080,60,6.2,0,0,24.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-22.8,-24.4,86,102500,261,1375,159,136,492,47,15524,10273,5378,1732,60,6.2,0,0,24.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-21.7,-23.9,82,102500,352,1375,163,210,610,58,24309,22920,6731,2278,60,5.2,0,0,24.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-22.8,79,102400,423,1375,168,271,680,67,31630,31947,7840,2738,50,6.7,0,0,24.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-19.4,-22.2,79,102300,468,1375,170,312,717,72,36621,36930,8474,3017,60,5.2,0,0,24.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-18.3,-21.1,79,102200,485,1375,177,327,712,81,38177,38919,9484,3368,60,6.7,1,1,24.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-17.8,-20.6,79,102200,472,1375,183,321,580,126,36058,37844,14211,4623,50,5.7,4,3,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-17.8,-20.6,79,102100,429,1375,186,218,292,128,24190,18769,14263,4414,50,6.7,6,5,16.1,4880,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-17.8,-20.6,79,102000,361,1375,190,141,112,113,15501,6332,12474,3677,50,6.2,7,7,16.1,4880,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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.8,-20.6,79,101900,272,1375,202,85,3,84,9289,116,9215,2608,40,6.7,10,10,11.3,4880,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-17.2,-20.0,79,101800,168,1375,205,28,2,28,3194,0,3201,1001,50,7.2,10,10,11.3,4880,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-17.8,-20.0,83,101700,59,1375,203,11,1,11,1244,0,1246,370,60,6.7,10,10,11.3,4880,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-17.8,-20.6,79,101700,0,103,202,0,0,0,0,0,0,0,60,6.2,10,10,11.3,4880,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-17.8,-20.0,83,101600,0,0,193,0,0,0,0,0,0,0,60,5.2,10,8,11.3,4880,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-17.8,-20.0,83,101600,0,0,197,0,0,0,0,0,0,0,70,4.1,10,9,11.3,3960,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-17.8,-20.0,83,101500,0,0,203,0,0,0,0,0,0,0,40,3.1,10,10,11.3,3960,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-18.3,-20.6,83,101500,0,0,181,0,0,0,0,0,0,0,50,3.1,7,3,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-17.8,-20.0,83,101400,0,0,186,0,0,0,0,0,0,0,30,2.6,9,5,11.3,3660,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-19.4,-21.1,87,101400,0,0,178,0,0,0,0,0,0,0,20,2.6,7,3,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-20.0,-21.7,87,101400,0,0,176,0,0,0,0,0,0,0,30,3.1,7,3,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-19.4,-21.1,87,101400,0,0,176,0,0,0,0,0,0,0,20,2.6,5,2,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-20.6,-21.7,91,101400,0,0,170,0,0,0,0,0,0,0,0,0.0,2,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-22.8,-24.4,86,101400,0,34,159,0,0,0,0,0,0,0,300,3.6,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-23.3,-25.0,86,101400,55,1374,158,12,60,10,1363,0,1138,339,320,3.6,0,0,24.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-25.6,82,101500,165,1374,157,66,273,36,7368,0,4029,1199,310,4.1,0,0,24.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-22.8,-24.4,86,101500,270,1374,159,138,453,52,15680,11135,5924,1895,290,4.1,0,0,24.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-22.2,-23.9,86,101500,361,1374,161,210,568,65,24156,23226,7497,2518,290,4.1,0,0,24.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-21.1,-23.3,82,101600,432,1374,164,270,638,74,31342,31676,8614,2992,290,4.1,0,0,24.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-20.0,-22.8,79,101700,477,1374,168,311,679,80,36282,36731,9360,3314,290,4.6,0,0,24.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-19.4,-22.2,79,101700,493,1374,170,327,694,83,38185,38646,9721,3460,290,4.1,0,0,24.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-18.3,-22.2,72,101800,480,1374,173,316,686,81,36855,37372,9475,3356,280,4.1,0,0,24.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-17.8,-21.7,72,101800,438,1374,174,278,651,75,32282,32707,8734,3041,270,3.6,0,0,24.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-18.3,-21.1,79,101800,369,1374,174,220,586,66,25332,24533,7621,2571,270,3.6,0,0,24.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-18.9,-21.7,79,101800,280,1374,171,148,477,54,16825,12772,6155,1978,270,3.6,0,0,24.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-20.6,-22.8,83,101900,176,1374,166,75,303,38,8385,0,4260,1278,280,4.6,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-23.3,82,101900,67,1374,164,16,81,12,1813,0,1362,406,260,4.1,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-22.2,-25.0,78,101900,1,195,160,0,0,0,0,0,0,0,280,4.6,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-22.8,-25.0,82,101900,0,0,159,0,0,0,0,0,0,0,290,4.1,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-22.2,-24.4,82,102000,0,0,161,0,0,0,0,0,0,0,320,3.6,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-21.7,-23.3,87,102000,0,0,168,0,0,0,0,0,0,0,330,3.1,6,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-21.7,-23.3,87,102100,0,0,168,0,0,0,0,0,0,0,340,3.6,7,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-23.3,-25.0,86,102100,0,0,163,0,0,0,0,0,0,0,350,3.6,6,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-23.3,-25.6,82,102100,0,0,181,0,0,0,0,0,0,0,340,3.1,10,10,1.6,30,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-23.3,-25.6,82,102100,0,0,181,0,0,0,0,0,0,0,340,1.5,10,10,1.4,30,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-24.4,-26.1,86,102100,0,0,178,0,0,0,0,0,0,0,320,1.5,10,10,1.4,30,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-25.0,-27.2,82,102100,0,0,160,0,0,0,0,0,0,0,310,1.5,8,4,1.4,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-25.6,-28.3,78,102100,1,149,150,0,0,0,0,0,0,0,320,1.5,0,0,4.8,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-26.1,-27.8,86,102100,64,1373,149,22,256,10,2329,13042,1662,199,0,0.0,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-25.0,-27.2,82,102100,174,1373,152,85,500,26,9791,0,3000,954,0,0.0,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-22.8,-25.0,82,102100,279,1373,159,164,658,35,19293,12313,4124,1392,340,1.5,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-22.2,-24.4,82,102100,370,1373,161,240,749,43,25324,65422,6770,901,330,1.5,0,0,9.7,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-21.7,-23.3,87,102100,441,1373,163,301,803,49,31742,72995,7618,1042,350,2.6,0,0,9.7,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-20.6,-22.8,83,102000,486,1373,166,342,831,53,36040,77015,8169,1130,360,3.1,0,0,9.7,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-20.6,-21.7,91,102000,502,1373,167,357,842,55,37608,78518,8447,1163,30,3.1,0,0,9.7,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-20.6,-22.2,87,101900,488,1373,167,345,835,54,36344,77466,8313,1137,20,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-20.6,-22.2,87,101800,446,1373,167,307,809,50,32370,73733,7762,1054,20,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-20.6,-22.2,87,101800,377,1373,167,248,757,44,26173,66469,6916,917,20,3.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-21.1,-23.3,82,101800,288,1373,164,172,670,36,20252,13792,4246,1438,30,3.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-23.9,86,101800,184,1373,161,93,521,27,10734,0,3122,999,40,3.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-23.3,-25.6,82,101700,74,1373,157,25,294,11,2648,15623,1826,223,50,3.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-23.9,-26.7,78,101700,2,309,155,0,0,0,0,0,0,0,30,2.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-23.9,-26.7,78,101600,0,0,155,0,0,0,0,0,0,0,40,3.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-24.4,-27.2,78,101600,0,0,153,0,0,0,0,0,0,0,30,3.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-25.6,-27.8,82,101600,0,0,150,0,0,0,0,0,0,0,40,2.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-26.1,-28.9,78,101500,0,0,148,0,0,0,0,0,0,0,40,3.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-26.1,-28.9,78,101500,0,0,148,0,0,0,0,0,0,0,50,3.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-26.1,-28.9,78,101500,0,0,148,0,0,0,0,0,0,0,30,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-26.1,-28.9,78,101400,0,0,148,0,0,0,0,0,0,0,40,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-26.7,-29.4,77,101300,0,0,146,0,0,0,0,0,0,0,40,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.3,-31.1,77,101300,0,0,142,0,0,0,0,0,0,0,50,3.6,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-28.3,-30.6,81,101300,2,263,145,0,0,0,0,0,0,0,50,3.6,4,1,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-27.2,-30.0,77,101200,73,1372,148,20,117,15,2241,0,1684,492,50,3.1,7,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-27.2,-29.4,81,101200,183,1372,148,82,317,42,9130,1396,4689,1392,50,3.1,7,1,4.8,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-25.6,-27.8,82,101100,288,1372,153,145,380,68,16232,12951,7637,2365,40,3.6,6,1,9.7,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-24.4,-26.1,86,101000,379,1372,157,227,594,68,26158,25980,7858,2659,40,4.6,6,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-23.9,-26.1,82,100900,450,1372,158,287,631,85,33107,34051,9836,3395,60,2.6,6,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-23.9,-25.6,86,100900,494,1372,159,334,683,93,38672,39852,10803,3794,50,4.1,6,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-21.7,-24.4,78,100800,510,1372,165,286,512,99,33073,30928,11487,4041,50,5.2,6,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-21.1,-23.9,79,100700,496,1372,167,324,660,89,37663,37893,10378,3672,50,6.2,6,1,24.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-21.1,-23.9,79,100600,454,1372,173,270,397,141,29928,27315,15697,4849,50,5.7,9,4,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1990,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,-21.1,-23.9,79,100500,385,1372,174,240,370,138,26149,24365,15104,4268,50,6.2,10,5,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-20.6,-23.3,79,100400,296,1372,182,103,114,80,11408,4521,8892,2667,60,6.7,10,8,11.3,6100,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-20.6,-23.3,79,100300,192,1372,191,64,31,60,6947,528,6537,1766,50,6.7,10,10,11.3,6100,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-20.6,-23.3,79,100200,82,1372,191,15,0,15,1456,0,1466,507,50,6.2,10,10,11.3,6100,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-20.6,-23.9,75,100100,4,400,191,0,0,0,0,0,0,0,50,6.2,10,10,11.3,6100,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1990,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,-20.0,-23.9,71,100000,0,0,183,0,0,0,0,0,0,0,40,7.2,10,8,11.3,6100,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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.0,-23.3,75,100000,0,0,184,0,0,0,0,0,0,0,40,6.7,10,8,11.3,6100,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-23.3,72,99900,0,0,195,0,0,0,0,0,0,0,40,8.2,10,10,11.3,6100,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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.9,-22.8,72,99800,0,0,197,0,0,0,0,0,0,0,40,8.2,10,10,11.3,6100,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-18.9,-22.2,75,99700,0,0,197,0,0,0,0,0,0,0,40,7.7,10,10,11.3,5490,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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.9,-20.6,87,99600,0,0,199,0,0,0,0,0,0,0,40,8.8,10,10,2.4,760,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-20.0,87,99500,0,0,201,0,0,0,0,0,0,0,40,8.2,10,10,1.2,760,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-19.4,87,99500,0,0,203,0,0,0,0,0,0,0,50,8.2,10,10,3.2,760,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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.8,-19.4,87,99400,0,0,203,0,0,0,0,0,0,0,50,8.2,10,10,1.6,760,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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.8,-18.9,91,99400,6,377,204,1,0,1,0,0,0,0,50,7.2,10,10,2.4,1190,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-18.9,91,99300,81,1371,204,16,3,16,1798,0,1801,532,50,7.2,10,10,4.0,1070,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-17.2,-18.9,87,99300,192,1371,206,59,5,59,6413,81,6436,1752,60,6.2,10,10,6.4,1010,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-17.2,-18.9,87,99300,297,1371,190,139,156,106,15039,7785,11517,3109,50,5.2,10,6,8.0,910,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-17.2,-18.9,87,99300,388,1371,190,213,306,129,23349,19229,14203,4148,50,4.6,10,6,9.7,4270,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-16.7,-18.9,83,99300,458,1371,190,266,289,171,29038,22072,18758,5397,50,3.1,10,5,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-16.7,-18.9,83,99300,503,1371,190,321,377,185,35207,30186,20392,6034,50,3.1,10,5,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-16.1,-18.3,83,99300,519,1371,193,315,320,196,34514,26417,21585,6359,60,3.1,10,5,16.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-15.0,-18.3,76,99300,505,1371,193,331,529,139,37188,36606,15683,5136,30,1.5,9,3,16.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-15.0,-17.8,80,99300,462,1371,193,305,545,125,34204,35147,14075,4551,0,0.0,8,3,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-16.1,-18.3,83,99400,393,1371,190,224,395,113,24867,22985,12595,3885,280,2.1,7,3,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-16.1,-17.8,87,99400,304,1371,190,164,412,76,18287,15874,8503,2618,340,2.6,8,3,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-16.7,-18.3,87,99400,200,1371,198,66,16,64,7152,323,6961,1871,320,2.6,10,8,11.3,1220,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-16.1,-17.8,87,99400,90,1371,200,21,20,20,2333,0,2227,641,320,3.1,10,8,11.3,1010,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-16.1,-18.3,83,99500,6,514,210,2,0,2,0,0,0,0,310,3.1,10,10,11.3,980,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-16.7,-17.8,91,99500,0,0,208,0,0,0,0,0,0,0,310,2.6,10,10,11.3,850,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-17.8,-18.9,91,99600,0,0,186,0,0,0,0,0,0,0,290,2.6,6,4,11.3,820,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-22.2,87,99600,0,0,174,0,0,0,0,0,0,0,290,2.6,3,3,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-20.0,-21.7,87,99700,0,0,179,0,0,0,0,0,0,0,270,3.1,7,5,11.3,550,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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.9,-20.6,87,99700,0,0,189,0,0,0,0,0,0,0,280,2.6,8,8,11.3,550,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-18.3,-19.4,91,99800,0,0,202,0,0,0,0,0,0,0,290,2.6,10,10,11.3,550,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-18.3,-19.4,91,99800,0,0,202,0,0,0,0,0,0,0,290,2.6,10,10,11.3,460,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-18.3,-19.4,91,99900,0,0,202,0,0,0,0,0,0,0,290,3.1,10,10,11.3,460,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-18.3,-20.0,87,99900,0,0,196,0,0,0,0,0,0,0,300,2.6,10,9,11.3,340,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-18.9,-20.6,87,100000,6,491,199,0,0,0,0,0,0,0,280,2.1,10,10,11.3,400,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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.9,-20.6,87,100000,90,1371,184,24,11,23,2639,0,2536,706,310,3.1,9,6,11.3,370,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-19.4,-21.1,87,100100,201,1371,179,87,117,71,9353,2891,7663,1970,320,2.6,9,4,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-18.3,-20.0,87,100100,306,1371,186,147,90,127,15714,5290,13640,3404,310,1.5,10,6,11.3,3050,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-17.2,-18.3,91,100200,397,1371,191,142,98,114,15767,5749,12709,3926,320,1.5,10,6,8.0,7620,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-16.7,-18.3,87,100200,467,1371,192,271,276,179,29537,21650,19607,5595,330,2.1,10,6,11.3,7620,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-16.1,-17.8,87,100300,511,1371,200,229,62,206,24942,5262,22555,6419,340,2.6,10,8,6.4,7620,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-15.6,-17.8,83,100300,527,1371,202,233,90,199,25548,7484,21932,6491,40,2.1,10,8,6.4,7620,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-15.0,-17.2,83,100400,513,1371,201,223,84,192,24442,6851,21151,6245,60,1.5,10,7,6.4,7620,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-15.0,-17.8,80,100400,470,1371,200,200,51,183,21777,4051,20027,5684,80,2.6,10,7,11.3,7620,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-15.6,-17.8,83,100400,401,1371,212,91,6,89,10324,309,10132,3345,70,2.1,10,10,11.3,7620,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-16.1,-18.3,83,100500,312,1371,200,102,67,88,11269,2948,9758,2914,70,1.5,10,8,11.3,7620,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-16.7,-18.3,87,100500,208,1371,195,69,45,63,7517,930,6888,1902,80,2.1,10,7,11.3,7620,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-16.7,-18.3,87,100600,98,1371,198,28,24,26,3065,0,2854,784,70,3.1,10,8,11.3,7620,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-17.2,-19.4,83,100600,9,605,205,0,0,0,0,0,0,0,70,3.6,10,10,6.4,7620,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-17.2,-18.9,87,100700,0,0,206,0,0,0,0,0,0,0,70,3.1,10,10,6.4,7620,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-17.8,-19.4,87,100700,0,0,203,0,0,0,0,0,0,0,80,3.1,10,10,6.4,3050,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-20.0,87,100800,0,0,201,0,0,0,0,0,0,0,40,3.1,10,10,11.3,2900,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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.3,-20.0,87,100800,0,0,201,0,0,0,0,0,0,0,70,3.6,10,10,11.3,2900,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-20.0,87,100900,0,0,192,0,0,0,0,0,0,0,50,4.1,10,8,8.0,2900,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-19.4,87,100900,0,0,203,0,0,0,0,0,0,0,70,4.1,10,10,9.7,1430,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-18.3,91,100900,0,0,206,0,0,0,0,0,0,0,50,4.1,10,10,9.7,1310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-17.2,-18.9,87,101000,0,0,206,0,0,0,0,0,0,0,50,4.1,10,10,9.7,2900,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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.7,-18.3,87,101000,0,0,208,0,0,0,0,0,0,0,50,4.1,10,10,6.4,1220,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-16.7,-17.8,91,101000,10,605,208,1,1,1,0,0,0,0,50,5.2,10,10,6.4,730,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-15.6,-17.2,87,101100,99,1370,212,17,4,16,1940,0,1829,559,60,4.1,10,10,6.4,700,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-15.0,-16.7,87,101100,210,1370,215,69,5,68,7476,118,7396,1991,60,5.2,10,10,6.4,520,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-15.0,-16.1,91,101100,315,1370,215,103,7,102,11250,346,11186,3185,60,5.7,10,10,4.8,610,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-14.4,-15.6,91,101100,406,1370,218,144,7,141,15746,468,15488,4484,60,5.2,10,10,4.8,520,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-13.3,-15.0,87,101100,475,1370,222,205,4,204,22143,338,22152,5979,70,6.2,10,10,8.0,340,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-12.8,-14.4,88,101200,520,1370,224,224,1,223,24279,88,24302,6715,70,6.2,10,10,9.7,210,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-11.7,-13.3,88,101200,535,1370,218,346,329,220,37681,28724,24088,6871,80,6.2,10,8,11.3,210,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-11.1,-12.2,92,101200,521,1370,221,296,171,232,31979,15409,25204,6820,100,6.7,10,8,2.4,150,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-11.1,-12.8,88,101200,478,1370,225,221,84,192,24006,6819,20964,5885,90,7.2,10,9,4.8,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-11.1,-12.8,88,101200,409,1370,232,156,6,154,16947,422,16810,4708,90,6.7,10,10,4.8,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-11.1,-12.8,88,101200,320,1370,232,108,5,107,11765,256,11705,3299,90,5.7,10,10,11.3,340,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-11.7,-12.8,92,101300,216,1370,229,71,1,71,7682,26,7712,2069,80,5.7,10,10,11.3,370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-11.7,-12.8,92,101300,106,1370,229,24,2,24,2661,0,2667,768,80,6.2,10,10,8.0,340,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-14.4,88,101300,13,696,224,0,0,0,0,0,0,0,80,6.2,10,10,4.8,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-15.5,-17.6,92,101300,0,0,212,0,0,0,0,0,0,0,80,5.9,10,10,6.4,240,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-18.3,-20.9,96,101300,0,0,200,0,0,0,0,0,0,0,110,5.7,10,10,6.4,150,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-21.1,-24.2,92,101300,0,0,189,0,0,0,0,0,0,0,120,5.4,10,10,6.4,150,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-23.9,-27.6,72,101400,0,0,154,0,0,0,0,0,0,0,80,5.1,0,0,8.0,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-26.7,-30.9,69,101400,0,0,145,0,0,0,0,0,0,0,80,4.8,0,0,9.7,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-29.5,-34.2,65,101400,0,0,137,0,0,0,0,0,0,0,80,4.6,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-32.4,-37.6,63,101400,0,0,128,0,0,0,0,0,0,0,80,4.3,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-33.2,-38.2,62,101400,0,0,126,0,0,0,0,0,0,0,80,3.9,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-33.9,-38.9,60,101400,0,0,124,0,0,0,0,0,0,0,80,3.6,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-33.7,-38.9,61,101300,16,787,125,7,66,4,0,0,0,0,80,3.9,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-33.5,-38.3,63,101300,112,1368,126,47,319,22,5268,0,2471,730,80,4.3,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-33.3,-37.8,64,101300,223,1368,126,122,539,36,13999,4554,4139,1327,80,4.6,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-31.5,-36.0,66,101300,327,1368,131,207,651,54,23906,21750,6252,2090,80,4.8,2,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-29.6,-34.0,67,101200,418,1368,137,290,710,76,33463,35106,8795,3010,80,5.0,4,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-27.8,-31.7,69,101200,487,1368,142,360,735,100,41361,44004,11529,3979,80,5.2,6,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-27.1,-31.3,69,101200,531,1368,144,402,763,109,46342,48584,12610,4425,80,5.4,6,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-26.3,-30.5,70,101200,546,1368,149,412,762,110,47623,49039,12760,4516,70,5.5,6,1,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-25.6,-29.4,70,101200,532,1368,152,374,654,122,42738,43531,13995,4819,70,5.7,6,1,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-25.6,-29.6,71,101100,489,1368,152,336,633,111,38302,39617,12700,4311,70,6.0,4,1,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-25.6,-29.4,73,101100,420,1368,149,274,690,64,32072,31833,7510,2628,60,6.4,2,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-25.6,-28.9,74,101100,331,1368,149,207,667,47,24196,20788,5505,1874,60,6.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-26.5,-30.4,72,101000,227,1368,149,119,448,46,13412,6490,5198,1611,60,6.5,2,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-27.4,-31.4,71,101000,116,1368,146,41,131,31,4482,0,3399,930,70,6.4,5,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-28.3,-32.2,69,101000,19,855,145,8,47,5,0,0,0,0,70,6.2,7,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-28.3,-31.5,79,100900,0,0,146,0,0,0,0,0,0,0,70,5.9,7,2,8.6,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-28.3,-30.2,90,100900,0,0,148,0,0,0,0,0,0,0,60,5.5,6,3,5.9,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-28.3,-28.3,100,100900,0,0,150,0,0,0,0,0,0,0,60,5.2,6,3,3.2,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-28.5,-29.2,100,100900,0,0,147,0,0,0,0,0,0,0,60,4.8,4,2,4.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-28.7,-29.2,100,100900,0,0,145,0,0,0,0,0,0,0,60,4.5,2,1,5.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-28.9,-28.9,100,100900,0,0,142,0,0,0,0,0,0,0,60,4.1,0,0,6.4,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-29.3,-31.1,90,100800,0,0,139,0,0,0,0,0,0,0,90,3.8,1,0,8.0,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-29.6,-32.5,79,100800,0,0,140,0,0,0,0,0,0,0,120,3.4,1,1,9.7,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-30.0,-33.9,69,100800,0,0,139,0,0,0,0,0,0,0,150,3.1,2,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-29.6,-33.9,69,100800,21,900,141,3,10,3,0,0,0,0,120,3.6,4,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-29.3,-33.3,69,100800,120,1367,142,44,81,37,4755,0,4012,1043,90,4.1,7,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-28.9,-32.8,69,100800,232,1367,145,107,173,78,11566,5545,8465,2245,60,4.6,9,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-28.0,-31.9,71,100800,336,1367,148,159,172,117,17287,9793,12776,3543,60,5.6,9,3,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-27.0,-30.8,72,100800,426,1367,151,239,355,129,26482,23035,14354,4403,70,6.7,8,3,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-26.1,-29.4,74,100700,495,1367,154,303,393,162,33543,29516,18017,5555,70,7.7,8,3,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-25.4,-28.8,75,100700,539,1367,156,325,374,178,36075,29586,19852,6220,70,6.7,6,3,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-24.6,-27.9,77,100700,554,1367,158,390,612,144,44197,43946,16388,5543,60,5.6,4,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-23.9,-26.7,78,100700,540,1367,160,362,625,117,41579,40979,13488,4708,60,4.6,2,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-24.1,-27.4,77,100700,497,1367,157,326,602,108,37314,37378,12406,4259,60,4.3,1,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-24.2,-27.8,75,100700,428,1367,156,255,489,103,28797,28173,11674,3821,60,3.9,1,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-27.8,74,100700,339,1367,153,193,515,67,21988,20214,7655,2507,60,3.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-25.2,-29.0,74,100800,235,1367,150,113,367,52,12652,6946,5839,1784,60,3.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-25.9,-29.6,73,100800,124,1367,148,44,158,31,4838,0,3418,958,60,3.6,1,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-26.7,-30.0,73,100800,23,946,146,6,16,5,0,0,0,0,60,3.6,1,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-27.1,-31.2,72,100800,0,0,144,0,0,0,0,0,0,0,60,3.4,1,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-27.4,-31.7,70,100800,0,0,143,0,0,0,0,0,0,0,60,3.3,1,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-27.8,-31.7,69,100800,0,0,142,0,0,0,0,0,0,0,60,3.1,1,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-28.2,-32.9,68,100800,0,0,141,0,0,0,0,0,0,0,60,3.4,1,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-28.5,-33.2,66,100800,0,0,140,0,0,0,0,0,0,0,60,3.8,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-28.9,-33.3,65,100800,0,0,139,0,0,0,0,0,0,0,60,4.1,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-29.1,-33.8,66,100800,0,0,138,0,0,0,0,0,0,0,60,4.1,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-29.2,-33.5,68,100800,0,0,138,0,0,0,0,0,0,0,50,4.1,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-29.4,-33.3,69,100800,0,0,138,0,0,0,0,0,0,0,50,4.1,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-28.9,-33.1,69,100800,26,1013,139,7,33,6,0,0,0,0,50,3.9,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-28.3,-32.4,69,100800,129,1367,141,49,209,30,5424,0,3329,955,60,3.8,1,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-27.8,-31.7,69,100800,240,1367,142,122,413,50,13736,7813,5645,1752,60,3.6,1,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-26.7,-29.5,79,100800,345,1367,149,195,444,85,21833,20515,9550,2995,60,4.6,3,1,8.6,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-25.5,-27.1,90,100800,435,1367,154,273,528,107,30785,31163,12111,3953,50,5.7,6,1,5.9,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-24.4,100,100800,504,1367,160,336,513,148,37546,36768,16611,5328,50,6.7,8,2,3.2,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-23.7,-24.0,100,100800,547,1367,163,353,423,185,39127,34021,20605,6427,50,6.5,9,2,2.7,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-22.9,-23.2,100,100800,562,1367,165,351,444,170,39309,34276,19127,6234,50,6.4,9,2,2.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-22.2,-22.2,100,100700,548,1367,168,390,515,185,43230,41365,20607,6432,50,6.2,10,2,1.6,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-22.4,-22.8,100,100700,504,1367,167,324,460,155,36076,33699,17336,5489,50,5.9,9,2,2.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-22.6,-23.0,100,100700,436,1367,164,288,515,125,32075,32872,13979,4387,50,5.5,9,1,2.7,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-22.8,-22.8,100,100700,346,1367,164,199,429,92,22145,20803,10275,3165,50,5.2,8,1,3.2,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-23.2,-24.9,90,100700,242,1367,163,109,197,75,11877,6196,8203,2275,50,5.7,7,2,5.9,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-23.5,-26.4,80,100700,132,1367,161,51,136,38,5543,0,4143,1111,60,6.2,6,2,8.6,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-23.9,-27.8,70,100700,29,1059,161,6,6,6,681,0,682,201,60,6.7,5,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-24.5,-27.7,80,100800,0,0,159,0,0,0,0,0,0,0,60,6.0,4,3,9.7,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-25.0,-26.9,90,100800,0,0,157,0,0,0,0,0,0,0,60,5.3,3,2,8.0,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-25.6,-25.6,100,100800,0,0,157,0,0,0,0,0,0,0,60,4.6,2,2,6.4,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-26.0,-27.7,91,100800,0,0,152,0,0,0,0,0,0,0,50,5.0,1,1,8.0,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-26.3,-29.0,82,100800,0,0,150,0,0,0,0,0,0,0,50,5.3,1,1,9.7,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-26.7,-30.0,73,100800,0,0,146,0,0,0,0,0,0,0,40,5.7,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-26.7,-30.7,72,100800,0,0,150,0,0,0,0,0,0,0,40,5.9,3,2,8.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-26.7,-30.6,71,100800,0,0,154,0,0,0,0,0,0,0,50,6.0,7,5,5.4,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-26.7,-30.6,70,100800,0,0,157,0,0,0,0,0,0,0,50,6.2,10,7,2.4,5180,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-25.8,-29.8,71,100800,33,1127,163,7,5,6,801,0,688,205,50,6.2,10,8,2.7,3910,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-24.8,-28.5,73,100800,138,1366,170,43,27,41,4665,0,4463,1187,50,6.2,10,9,2.9,2640,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-23.9,-27.2,74,100700,249,1366,179,53,4,52,5970,85,5873,1830,50,6.2,10,10,3.2,1370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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.3,-25.7,83,100700,353,1366,181,135,15,131,14620,936,14251,3877,60,6.2,10,10,3.7,1370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-24.1,91,100700,443,1366,184,184,10,181,19908,792,19683,5348,60,6.2,10,10,4.3,1370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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.2,-22.2,100,100700,512,1366,187,167,1,167,18513,76,18599,5789,70,6.2,10,10,4.8,1370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-21.5,-21.8,100,100700,555,1366,190,203,7,201,22387,586,22279,6792,70,6.0,10,10,4.3,1370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.7,-21.0,100,100700,570,1366,193,275,8,271,29676,785,29416,7806,60,5.9,10,10,3.7,1370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.0,-20.0,100,100700,555,1366,196,207,7,205,22790,591,22686,6862,60,5.7,10,10,3.2,1370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-19.6,-20.0,100,100700,512,1366,197,237,4,236,25522,368,25558,6711,60,5.9,10,10,4.8,1137,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-19.3,-19.6,100,100700,443,1366,198,181,1,181,19583,79,19683,5358,70,6.0,10,10,6.4,903,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-18.9,-18.9,100,100700,354,1366,200,149,1,149,15960,68,16038,4068,70,6.2,10,10,8.0,670,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-19.3,-19.7,100,100800,250,1366,198,91,1,91,9784,40,9826,2542,70,6.4,10,10,8.0,600,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-19.6,-19.9,100,100800,140,1366,197,46,0,46,4488,0,4518,1262,70,6.5,10,10,8.0,530,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.0,100,100800,35,1149,196,8,0,8,773,0,778,258,70,6.7,10,10,8.0,460,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.4,-22.5,89,100800,0,0,187,0,0,0,0,0,0,0,70,5.7,9,9,9.1,1120,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.7,-24.3,79,100800,0,0,178,0,0,0,0,0,0,0,60,4.6,8,7,10.2,1780,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-21.1,-25.6,68,100900,0,0,174,0,0,0,0,0,0,0,60,3.6,7,6,11.3,2440,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.9,-24.6,79,100900,0,0,177,0,0,0,0,0,0,0,60,3.3,8,7,10.2,1730,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.8,-22.7,89,100900,0,0,186,0,0,0,0,0,0,0,60,2.9,9,9,9.1,1020,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.6,-20.6,100,100900,0,0,194,0,0,0,0,0,0,0,60,2.6,10,10,8.0,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.4,-21.9,93,100900,0,0,193,0,0,0,0,0,0,0,60,3.1,10,10,8.6,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.2,-22.3,86,100900,0,0,193,0,0,0,0,0,0,0,70,3.6,10,10,9.1,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.0,-22.8,79,100900,0,0,194,0,0,0,0,0,0,0,70,4.1,10,10,9.7,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.2,-23.3,79,100900,40,1240,193,11,0,11,1064,0,1070,334,60,4.3,10,10,10.2,360,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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.4,-23.3,79,100900,147,1365,192,53,1,52,5667,5,5581,1375,60,4.4,10,10,10.8,410,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.6,-23.3,79,101000,258,1365,191,101,1,101,10800,45,10848,2703,50,4.6,10,10,11.3,460,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.2,-23.3,78,101000,362,1365,193,153,1,153,16396,70,16477,4184,50,4.3,10,10,11.3,560,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-19.8,-23.2,76,101000,452,1365,189,137,37,125,15322,2384,14037,4482,50,3.9,10,9,11.3,660,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-19.4,-22.8,75,101000,520,1365,190,149,55,128,16915,3702,14588,4935,50,3.6,10,9,11.3,760,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-18.9,-22.6,75,101000,563,1365,192,241,61,216,26471,5299,23850,7119,60,3.4,10,9,11.3,760,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-18.3,-22.0,75,101000,578,1365,200,203,11,198,22532,912,22087,6954,60,3.3,10,10,11.3,760,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-17.8,-21.1,75,101000,563,1365,202,226,10,222,24765,880,24456,7208,70,3.1,10,10,11.3,760,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-18.2,-21.7,76,101000,520,1365,187,247,168,184,27218,13449,20375,6174,70,2.9,8,7,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-18.5,-21.9,78,101000,451,1365,181,325,613,125,36346,39455,14036,4483,60,2.8,6,4,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-18.9,-21.7,79,101100,362,1365,175,215,535,75,24444,23561,8553,2808,60,2.6,4,1,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-19.6,-23.0,78,101100,258,1365,172,139,453,55,15639,10787,6206,1934,60,2.6,3,1,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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.4,-23.8,76,101100,147,1365,171,54,222,31,6030,0,3470,1028,60,2.6,3,2,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-21.1,-24.4,75,101100,41,1263,169,9,46,6,1042,0,695,211,60,2.6,2,2,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-21.5,-25.8,72,101100,0,0,165,0,0,0,0,0,0,0,60,2.4,1,1,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-21.8,-26.5,70,101200,0,0,164,0,0,0,0,0,0,0,60,2.3,1,1,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-22.2,-26.7,67,101200,0,0,159,0,0,0,0,0,0,0,60,2.1,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-22.2,-26.8,71,101200,0,0,159,0,0,0,0,0,0,0,80,1.9,1,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-22.2,-26.0,74,101300,0,0,163,0,0,0,0,0,0,0,100,1.7,2,1,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-22.2,-25.0,78,101300,0,0,164,0,0,0,0,0,0,0,120,1.5,3,1,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-22.0,-25.3,78,101300,0,0,169,0,0,0,0,0,0,0,170,1.5,5,4,10.8,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-21.9,-24.8,78,101400,0,0,175,0,0,0,0,0,0,0,210,1.5,8,7,10.2,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-21.7,-24.4,78,101400,0,0,187,0,0,0,0,0,0,0,260,1.5,10,10,9.7,460,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.8,-23.8,78,101500,48,1353,190,2,0,2,194,0,195,79,240,1.7,10,10,9.7,430,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-19.8,-22.8,79,101500,156,1364,189,37,10,36,4103,0,4003,1165,230,1.9,10,9,9.7,400,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-18.9,-21.7,79,101500,267,1364,192,46,10,45,5277,205,5174,1684,210,2.1,10,9,9.7,370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-18.0,-21.1,78,101600,371,1364,189,199,183,150,21418,12625,16223,4254,220,2.9,10,7,10.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-17.0,-20.4,76,101600,460,1364,188,282,371,158,30998,27128,17449,5201,240,3.8,10,5,10.8,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-16.1,-19.4,75,101700,528,1364,189,355,380,209,38776,32500,22949,6640,250,4.6,10,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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.1,-19.9,74,101700,571,1364,188,341,380,183,38037,30297,20511,6596,250,5.0,7,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-16.1,-20.1,72,101800,586,1364,186,419,617,156,47501,45819,17762,6054,260,5.3,5,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-16.1,-20.0,71,101800,571,1364,186,395,654,123,45496,43992,14221,5031,260,5.7,2,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-17.2,-21.5,71,101900,527,1364,180,347,627,107,40032,39321,12387,4357,250,5.0,2,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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.3,-22.6,71,102000,459,1364,176,290,562,103,33013,33150,11767,3961,240,4.3,3,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-19.4,-23.3,71,102000,369,1364,169,222,525,81,25145,24566,9204,2999,230,3.6,3,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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.0,-26.9,67,102000,265,1364,160,139,414,60,15579,11361,6745,2084,230,4.1,2,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-24.6,-29.9,63,102100,155,1364,151,63,235,37,6969,0,4104,1184,220,4.7,1,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-27.2,-32.8,59,102100,48,1364,143,12,48,9,1358,0,1020,301,220,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-27.9,-33.8,61,102100,0,11,141,0,0,0,0,0,0,0,220,5.0,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-28.7,-34.1,63,102100,0,0,139,0,0,0,0,0,0,0,220,4.8,1,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-29.4,-33.9,65,102100,0,0,137,0,0,0,0,0,0,0,220,4.6,1,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-30.2,-35.5,64,102200,0,0,134,0,0,0,0,0,0,0,210,4.1,1,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-30.9,-36.2,62,102200,0,0,132,0,0,0,0,0,0,0,210,3.6,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-31.7,-36.7,61,102200,0,0,130,0,0,0,0,0,0,0,200,3.1,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-30.9,-35.9,65,102200,0,0,133,0,0,0,0,0,0,0,170,2.8,0,0,7.7,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-30.2,-34.3,69,102200,0,0,138,0,0,0,0,0,0,0,130,2.4,1,1,4.2,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-29.4,-32.8,73,102100,0,102,141,0,0,0,0,0,0,0,100,2.1,1,1,0.6,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-30.2,-34.2,70,102100,56,1363,138,8,25,7,934,0,817,252,100,2.3,1,1,4.2,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-30.9,-35.2,68,102100,164,1363,133,65,197,42,7156,107,4638,1319,110,2.4,0,0,7.7,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-31.7,-36.1,65,102100,275,1363,131,138,377,63,15466,11456,7082,2191,110,2.6,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-30.0,-34.3,68,102100,379,1363,136,220,506,81,24997,24301,9233,3034,110,2.6,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-28.4,-32.3,70,102100,468,1363,141,300,598,96,34437,34726,11057,3795,100,2.6,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-26.7,-30.0,73,102100,536,1363,146,363,654,108,41946,41627,12524,4422,100,2.6,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-25.6,-29.0,75,102000,579,1363,149,403,682,115,46770,45211,13394,4812,100,2.8,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-24.4,-27.7,76,102000,593,1363,153,416,690,117,48357,46205,13650,4933,90,2.9,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-23.3,-26.1,78,102000,578,1363,157,403,683,115,46759,45185,13391,4810,90,3.1,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-23.1,-26.8,74,102000,535,1363,157,363,642,112,41811,41330,12947,4543,80,3.3,1,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-23.0,-27.2,71,102000,466,1363,160,290,537,108,32959,32689,12319,4134,70,3.4,1,1,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-22.8,-27.2,67,101900,377,1363,160,204,436,85,23073,21324,9646,3136,60,3.6,2,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-23.7,-28.2,69,101900,273,1363,157,127,322,64,14202,9767,7179,2207,60,3.9,2,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-24.7,-28.6,72,101900,163,1363,155,55,144,39,6085,0,4327,1252,70,4.3,3,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-25.6,-28.9,74,101900,55,1363,152,9,22,8,1037,0,923,281,70,4.6,3,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-25.8,-30.1,71,101800,0,102,151,0,0,0,0,0,0,0,70,4.4,5,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-25.9,-30.6,69,101800,0,0,152,0,0,0,0,0,0,0,70,4.3,8,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-26.1,-30.6,66,101800,0,0,152,0,0,0,0,0,0,0,70,4.1,10,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-26.1,-30.9,69,101800,0,0,152,0,0,0,0,0,0,0,70,3.9,9,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-26.1,-30.3,71,101800,0,0,152,0,0,0,0,0,0,0,80,3.8,7,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-26.1,-29.4,74,101800,0,0,153,0,0,0,0,0,0,0,80,3.6,6,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-24.3,-27.9,76,101700,0,0,162,0,0,0,0,0,0,0,80,3.8,7,5,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-22.4,-25.6,77,101700,0,0,173,0,0,0,0,0,0,0,70,3.9,9,7,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.6,-23.3,79,101600,1,216,191,0,0,0,0,0,0,0,70,4.1,10,10,11.3,2740,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-19.5,-22.5,79,101600,64,1362,195,6,1,6,715,0,715,224,70,4.1,10,10,11.3,1907,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-21.3,79,101600,173,1362,200,38,4,37,4246,0,4145,1240,80,4.1,10,10,11.3,1073,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.0,79,101600,284,1362,205,73,0,73,7212,0,7264,2454,80,4.1,10,10,11.3,240,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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.2,-20.4,78,101500,387,1362,204,98,6,96,11004,316,10818,3460,80,3.9,10,10,11.3,210,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-17.2,-20.7,77,101500,476,1362,204,137,7,135,15323,474,15163,4866,90,3.8,10,10,11.3,180,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-17.2,-20.6,76,101500,544,1362,204,207,2,207,22720,170,22838,6791,90,3.6,10,10,11.3,150,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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.8,-21.3,77,101500,587,1362,202,214,3,213,23661,258,23673,7324,80,3.3,10,10,11.3,150,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-18.3,-21.6,78,101400,601,1362,200,259,2,258,28272,189,28323,8146,80,2.9,10,10,11.3,150,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-18.9,-21.7,79,101400,586,1362,198,208,2,207,23049,169,23055,7208,70,2.6,10,10,11.3,150,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-19.1,-22.2,79,101400,542,1362,197,228,0,227,23032,0,23114,7043,70,3.1,10,10,11.3,180,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-19.2,-22.4,79,101400,473,1362,191,164,35,151,18167,2511,16802,5192,60,3.6,10,9,11.3,210,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-22.2,79,101300,384,1362,191,152,50,138,16551,3285,15095,4254,60,4.1,10,9,11.3,240,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-19.6,-23.0,78,101300,281,1362,182,119,74,104,12813,3564,11247,2940,30,3.4,10,7,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-19.8,-23.2,76,101300,170,1362,178,64,41,59,6867,542,6355,1606,360,2.8,10,5,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.0,-23.3,75,101300,63,1362,175,13,13,12,1462,0,1352,396,330,2.1,10,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.7,-24.5,76,101300,1,216,172,0,0,0,0,0,0,0,340,2.1,7,3,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-21.5,-25.0,77,101300,0,0,168,0,0,0,0,0,0,0,340,2.1,5,2,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-22.2,-25.0,78,101400,0,0,166,0,0,0,0,0,0,0,350,2.1,2,2,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-22.2,-25.5,79,101300,0,0,163,0,0,0,0,0,0,0,350,2.3,1,1,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-22.2,-25.1,81,101300,0,0,163,0,0,0,0,0,0,0,350,2.4,1,1,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-22.2,-24.4,82,101300,0,0,161,0,0,0,0,0,0,0,350,2.6,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-22.6,-25.5,81,101300,0,0,159,0,0,0,0,0,0,0,360,2.8,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-22.9,-25.8,79,101300,0,0,158,0,0,0,0,0,0,0,20,2.9,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-23.3,-26.1,78,101300,6,352,157,1,4,1,0,0,0,0,30,3.1,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-22.9,-25.9,79,101300,73,1362,158,21,99,16,2335,0,1783,510,20,2.9,2,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-22.6,-25.1,81,101300,182,1362,162,74,225,45,8177,1248,4987,1445,360,2.8,5,1,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-22.2,-24.4,82,101300,292,1362,164,154,362,78,17062,13892,8672,2601,350,2.6,7,1,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-21.5,-24.2,80,101200,396,1362,166,241,490,101,27022,26968,11366,3622,360,3.5,7,1,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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.7,-23.9,77,101200,484,1362,171,314,476,147,34956,33823,16437,5186,20,4.3,7,2,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.0,-23.3,75,101100,552,1362,173,382,522,172,42663,40504,19299,6219,30,5.2,7,2,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-19.3,-22.5,78,101100,595,1362,180,424,569,177,47686,44768,20000,6647,40,5.4,8,5,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-18.5,-21.4,80,101100,609,1362,187,267,87,229,29487,7718,25425,7827,50,5.5,9,7,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-17.8,-20.0,83,101000,593,1362,203,232,42,213,25689,3599,23707,7393,60,5.7,10,10,11.3,150,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-17.2,-19.8,83,101000,550,1362,205,153,11,148,17287,794,16793,5637,60,5.7,10,10,11.3,150,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-16.7,-19.2,83,100900,481,1362,207,150,4,148,16673,284,16523,5187,60,5.7,10,10,11.3,150,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-16.1,-18.3,83,100900,392,1362,210,126,4,125,13862,247,13811,4105,60,5.7,10,10,11.3,150,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-16.3,-19.1,82,100800,288,1362,208,74,3,73,8229,107,8145,2476,50,5.2,10,10,11.3,253,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-16.5,-19.3,80,100800,178,1362,208,54,1,54,5862,11,5882,1587,50,4.6,10,10,11.3,357,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-16.7,-19.4,79,100700,70,1362,207,12,1,12,1360,0,1362,407,40,4.1,10,10,11.3,460,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-17.2,-20.8,78,100700,2,329,194,0,0,0,0,0,0,0,40,5.0,10,8,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-17.8,-21.5,76,100600,0,0,187,0,0,0,0,0,0,0,50,5.8,10,6,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-18.3,-21.7,75,100600,0,0,182,0,0,0,0,0,0,0,50,6.7,10,4,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-17.8,-21.8,75,100500,0,0,186,0,0,0,0,0,0,0,50,6.5,10,6,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-17.2,-21.0,76,100500,0,0,191,0,0,0,0,0,0,0,60,6.4,10,7,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-16.7,-20.0,76,100500,0,0,201,0,0,0,0,0,0,0,60,6.2,10,9,11.3,1520,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-17.1,-20.7,77,100500,0,0,199,0,0,0,0,0,0,0,60,5.7,10,9,11.3,1127,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-17.4,-20.6,78,100500,0,0,204,0,0,0,0,0,0,0,60,5.1,10,10,11.3,733,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-17.8,-20.6,79,100400,5,465,202,0,0,0,0,0,0,0,60,4.6,10,10,11.3,340,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-17.6,-20.5,80,100400,81,1361,203,24,1,24,2601,0,2609,683,60,5.1,10,10,11.3,340,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-17.4,-20.0,82,100400,190,1361,204,51,7,50,5610,70,5517,1578,70,5.7,10,10,11.3,340,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-17.2,-19.4,83,100300,301,1361,205,65,4,64,7339,134,7248,2307,70,6.2,10,10,11.3,340,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-16.8,-19.4,82,100300,404,1361,206,121,4,119,13414,242,13246,4070,70,6.9,10,10,11.3,317,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-16.5,-19.3,80,100300,492,1361,208,198,2,197,21550,166,21553,6100,70,7.5,10,10,11.3,293,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-16.1,-18.9,79,100300,560,1361,209,176,1,176,19650,78,19743,6368,70,8.2,10,10,11.3,270,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-15.7,-18.7,80,100300,602,1361,211,202,4,200,22526,332,22414,7223,70,8.0,10,10,11.3,433,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-15.4,-18.1,82,100300,616,1361,212,239,1,238,26349,90,26381,8059,70,7.9,10,10,11.3,597,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-15.0,-17.2,83,100300,600,1361,214,229,1,229,25242,89,25377,7747,70,7.7,10,10,11.3,760,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-14.4,-17.6,80,100300,557,1361,216,221,0,221,22346,0,22526,7146,70,7.9,10,10,11.3,1320,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-13.9,-17.6,76,100300,488,1361,218,195,1,195,21220,82,21330,6036,80,8.0,10,10,11.3,1880,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-13.3,-17.2,73,100200,399,1361,220,143,0,143,14266,0,14374,4457,80,8.2,10,10,11.3,2440,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1976,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,-13.7,-18.2,72,100200,295,1361,218,94,1,94,10264,45,10305,2918,80,7.5,10,10,11.3,2033,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1976,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,-14.0,-18.6,70,100200,185,1361,216,62,0,62,6073,0,6114,1742,70,6.9,10,10,11.3,1627,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1976,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,-14.4,-18.9,69,100200,77,1361,215,19,0,19,1843,0,1855,581,70,6.2,10,10,11.3,1220,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1976,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,-14.6,-19.9,68,100200,12,420,213,2,0,2,0,0,0,0,70,6.5,10,10,11.3,1727,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1976,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,-14.8,-20.2,67,100300,0,0,212,0,0,0,0,0,0,0,80,6.9,10,10,11.3,2233,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1976,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,-15.0,-20.0,66,100300,0,0,212,0,0,0,0,0,0,0,80,7.2,10,10,11.3,2740,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1976,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,-15.0,-19.6,73,100300,0,0,212,0,0,0,0,0,0,0,80,6.9,10,10,10.2,2233,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1976,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,-15.0,-18.3,80,100300,0,0,213,0,0,0,0,0,0,0,80,6.5,10,10,9.1,1727,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1976,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,-15.0,-16.7,87,100300,0,0,215,0,0,0,0,0,0,0,80,6.2,10,10,8.0,1220,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1976,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,-15.0,-17.6,85,100300,0,0,208,0,0,0,0,0,0,0,80,5.7,10,9,9.1,1727,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1976,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,-15.0,-17.7,82,100300,0,0,208,0,0,0,0,0,0,0,80,5.1,10,9,10.2,2233,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1976,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,-15.0,-17.8,80,100200,8,578,203,0,0,0,0,0,0,0,80,4.6,10,8,11.3,2740,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1976,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,-15.0,-17.9,81,100200,89,1360,203,21,1,21,2319,0,2325,657,80,4.3,10,8,11.3,2153,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1976,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,-15.0,-17.6,82,100200,199,1360,204,55,23,51,6065,273,5642,1633,90,3.9,9,8,11.3,1567,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-15.0,-17.2,83,100200,309,1360,204,101,36,93,11090,1637,10252,2985,90,3.6,9,8,11.3,980,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-14.8,-18.0,78,100200,412,1360,198,182,92,155,19782,6554,16927,4739,90,4.1,8,6,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-14.6,-18.6,74,100200,500,1360,194,290,286,185,31794,22893,20384,6019,90,4.7,7,3,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-14.4,-18.9,69,100200,568,1360,190,322,342,180,35949,27028,20192,6518,90,5.2,6,1,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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.9,-18.9,68,100300,610,1360,191,405,509,178,45672,40017,20167,6786,90,4.8,4,1,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-13.3,-18.5,68,100300,623,1360,190,416,542,169,47245,41660,19280,6647,90,4.5,2,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-12.8,-17.8,67,100300,608,1360,192,399,554,152,45554,40707,17428,6085,90,4.1,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-13.0,-17.8,70,100300,564,1360,191,353,512,142,40147,36339,16217,5565,90,3.9,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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.1,-17.4,73,100300,495,1360,191,295,465,126,33343,30611,14298,4765,90,3.8,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-13.3,-16.7,76,100300,406,1360,191,217,377,106,24303,21368,11917,3800,90,3.6,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-13.9,-17.9,75,100400,303,1360,188,139,263,81,15408,10601,9011,2719,90,3.1,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-14.4,-18.5,73,100400,193,1360,186,71,119,55,7758,1600,6030,1681,90,2.6,1,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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.0,-18.9,72,100400,85,1360,184,20,13,19,2216,0,2110,601,90,2.1,1,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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.7,-20.1,73,100500,7,533,185,0,0,0,0,0,0,0,100,2.1,3,1,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-16.5,-20.6,75,100500,0,0,187,0,0,0,0,0,0,0,120,2.1,6,3,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-17.2,-20.6,76,100500,0,0,186,0,0,0,0,0,0,0,130,2.1,8,4,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-18.1,-21.1,84,100600,0,0,186,0,0,0,0,0,0,0,90,1.4,8,6,7.7,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1976,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,-19.1,-20.7,92,100600,0,0,186,0,0,0,0,0,0,0,40,0.7,9,7,4.0,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.0,-20.0,100,100600,0,0,190,0,0,0,0,0,0,0,0,0.0,9,9,0.4,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.0,-22.4,87,100600,0,0,180,0,0,0,0,0,0,0,20,0.7,7,6,4.0,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.0,-24.0,74,100600,0,0,174,0,0,0,0,0,0,0,50,1.4,4,3,7.7,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.0,-25.6,61,100500,12,691,166,5,32,3,0,0,0,0,70,2.1,2,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1976,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,-19.1,-23.1,74,100500,98,1359,177,33,132,24,3633,0,2649,741,70,2.3,4,3,7.6,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1976,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.1,-20.2,87,100500,207,1359,187,75,94,61,8184,1816,6680,1856,70,2.4,7,6,3.9,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1976,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,-17.2,-17.2,100,100500,317,1359,201,99,40,90,10932,1802,9976,2977,70,2.6,9,9,0.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1976,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,-16.3,-16.5,100,100500,420,1359,205,205,123,168,22180,9220,18267,4980,70,3.1,9,9,0.4,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1976,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.3,-15.6,100,100500,508,1359,204,211,106,172,23315,8136,19096,5873,80,3.6,8,8,0.6,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1976,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,-14.4,-14.4,100,100500,575,1359,208,239,82,204,26446,6851,22688,7065,80,4.1,8,8,0.8,60,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1976,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,-13.5,-13.8,100,100400,617,1359,212,307,194,220,34067,16715,24540,7764,80,4.8,8,8,3.2,60,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1976,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,-12.6,-12.9,100,100400,631,1359,215,219,20,210,24463,1680,23577,7690,80,5.5,9,8,5.6,60,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1976,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,-11.7,-11.7,100,100400,615,1359,219,289,124,233,31897,10965,25855,7977,80,6.2,9,8,8.0,60,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1976,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,-11.5,-12.4,96,100400,571,1359,219,287,163,218,31551,14057,24092,7267,90,6.5,9,8,6.9,293,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1976,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,-11.3,-12.8,91,100300,502,1359,220,247,117,204,26866,9822,22305,6315,90,6.9,9,8,5.9,527,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1976,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,-11.1,-12.8,87,100300,413,1359,220,194,81,170,20925,6080,18428,4935,100,7.2,9,8,4.8,760,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-11.1,-13.8,84,100300,310,1359,220,109,58,96,11940,2693,10558,3049,140,6.5,9,8,7.0,863,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-11.1,-14.2,80,100300,200,1359,219,69,32,65,7459,647,7053,1877,170,5.9,9,8,9.1,967,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-11.1,-14.4,77,100300,92,1359,219,24,13,23,2634,0,2531,702,210,5.2,9,8,11.3,1070,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-11.3,-15.2,77,100400,10,646,212,2,3,2,0,0,0,0,220,5.0,8,6,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-11.5,-15.4,77,100400,0,0,208,0,0,0,0,0,0,0,230,4.8,7,4,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-11.7,-15.0,77,100400,0,0,204,0,0,0,0,0,0,0,240,4.6,6,2,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-12.6,-16.4,78,100500,0,0,200,0,0,0,0,0,0,0,240,4.4,6,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-13.5,-16.9,79,100500,0,0,197,0,0,0,0,0,0,0,240,4.3,5,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-14.4,-17.2,80,100500,0,0,194,0,0,0,0,0,0,0,240,4.1,5,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-15.7,-18.9,81,100500,0,0,188,0,0,0,0,0,0,0,240,3.9,6,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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.0,-19.7,82,100500,0,0,184,0,0,0,0,0,0,0,230,3.8,7,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-18.3,-20.6,83,100600,16,826,180,8,50,5,0,0,0,0,230,3.6,8,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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.6,-20.4,82,100600,106,1359,182,42,169,29,4582,0,3173,861,230,3.3,8,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-16.8,-19.6,80,100600,215,1359,186,95,188,66,10339,4373,7209,1983,230,2.9,8,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-16.1,-18.9,79,100500,325,1359,189,190,369,103,20809,18703,11327,3267,230,2.6,8,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-14.6,-17.6,79,100600,428,1359,195,261,434,125,29014,27438,13953,4353,270,1.7,8,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-13.2,-16.2,80,100600,516,1359,202,305,394,156,34042,28839,17490,5612,320,0.9,9,4,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-11.7,-14.4,80,100600,583,1359,208,288,230,190,32112,18547,21289,6860,0,0.0,9,4,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-11.5,-15.1,77,100600,624,1359,209,452,503,222,50209,43542,24789,7878,350,1.0,9,5,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-11.3,-15.5,73,100600,638,1359,214,330,114,277,36093,11008,30473,8892,350,2.1,10,7,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-11.1,-15.6,70,100600,622,1359,218,367,219,268,40118,20885,29464,8573,340,3.1,10,8,11.3,1070,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-11.3,-14.7,80,100600,578,1359,218,300,108,255,32613,10147,27879,7841,310,3.3,10,8,9.1,803,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-11.5,-13.4,90,100600,509,1359,223,239,56,218,25900,4884,23752,6561,290,3.4,10,9,7.0,537,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-11.7,-11.7,100,100600,420,1359,224,154,12,150,16820,832,16459,4757,260,3.6,10,9,4.8,270,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-13.2,-14.7,92,100600,317,1359,208,117,15,113,12676,803,12296,3361,250,3.6,9,7,7.0,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-14.6,-17.1,84,100600,207,1359,198,92,89,79,9821,2630,8469,2086,240,3.6,9,5,9.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-16.1,-19.4,76,100600,99,1359,189,39,141,30,4215,0,3253,846,230,3.6,8,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-18.9,-23.3,72,100700,13,759,176,6,40,4,0,0,0,0,230,4.5,5,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-21.6,-26.6,67,100700,0,0,164,0,0,0,0,0,0,0,230,5.3,3,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-24.4,-29.4,63,100700,0,0,152,0,0,0,0,0,0,0,230,6.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-25.2,-30.5,65,100700,0,0,149,0,0,0,0,0,0,0,230,6.0,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-25.9,-30.7,68,100700,0,0,147,0,0,0,0,0,0,0,220,5.9,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-26.7,-30.6,70,100700,0,0,146,0,0,0,0,0,0,0,220,5.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-24.5,-28.7,72,100700,0,0,157,0,0,0,0,0,0,0,230,6.2,3,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-22.2,-26.0,73,100700,0,0,168,0,0,0,0,0,0,0,240,6.7,7,4,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.0,-23.3,75,100700,21,939,179,4,4,4,0,0,0,0,250,7.2,10,6,11.3,910,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.4,-24.9,69,100800,114,1358,174,40,115,31,4370,0,3396,927,250,6.7,7,4,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.7,-26.1,64,100800,223,1358,171,95,265,52,10591,4571,5814,1751,250,6.2,4,3,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-21.1,-27.2,58,100900,333,1358,165,192,574,53,22265,19461,6161,2079,250,5.7,1,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.9,-27.0,59,100900,436,1358,166,289,680,72,33676,33806,8413,2942,250,6.7,1,1,10.2,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.8,-26.7,60,100900,523,1358,168,348,608,115,39913,39368,13238,4595,250,7.8,2,2,9.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.6,-26.1,61,101000,590,1358,169,422,632,149,48111,46310,17059,5907,250,8.8,2,2,8.0,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.4,-25.9,63,101000,632,1358,168,452,739,110,53233,49019,13000,4838,250,8.8,4,1,8.0,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.2,-25.3,66,101100,645,1358,169,426,567,158,48889,42695,18211,6471,260,8.8,6,1,8.0,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.0,-24.4,68,101100,629,1358,167,496,748,152,56915,55409,17516,6208,260,8.8,8,0,8.0,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-19.6,-24.8,66,101200,585,1358,171,415,622,148,47290,45383,16936,5854,260,8.8,8,1,8.6,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-19.3,-24.8,64,101200,516,1358,171,356,640,115,40767,41252,13218,4567,250,8.8,7,1,9.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-18.9,-24.4,62,101300,427,1358,175,275,536,108,30956,31620,12203,3962,250,8.8,7,2,9.7,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-19.5,-25.2,63,101300,324,1358,173,184,449,78,20626,18809,8773,2752,250,8.1,6,2,10.2,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.0,-25.5,63,101400,215,1358,169,107,368,50,11919,5384,5586,1674,250,7.4,5,1,10.8,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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.6,-25.6,64,101400,107,1358,167,37,144,27,4062,0,2972,825,250,6.7,4,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.8,-26.2,65,101500,17,871,166,5,44,3,0,0,0,0,250,6.9,3,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.9,-26.2,67,101500,0,0,163,0,0,0,0,0,0,0,250,7.0,2,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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.1,-25.6,68,101600,0,0,163,0,0,0,0,0,0,0,250,7.2,1,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.9,-26.8,64,101600,0,0,163,0,0,0,0,0,0,0,250,7.0,1,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.8,-27.1,59,101700,0,0,163,0,0,0,0,0,0,0,250,6.9,1,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.6,-27.2,55,101700,0,0,163,0,0,0,0,0,0,0,250,6.7,1,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-22.1,-28.1,61,101800,0,0,159,0,0,0,0,0,0,0,240,5.7,1,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-23.5,-28.2,68,101800,0,0,155,0,0,0,0,0,0,0,240,4.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-25.0,-28.3,74,101800,26,1052,151,2,3,2,247,0,247,76,230,3.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-25.6,-29.0,75,101800,122,1357,149,38,70,32,4167,0,3519,976,230,3.9,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-26.1,-29.2,76,101800,232,1357,148,99,225,61,10934,5265,6759,1977,230,4.3,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-26.7,-29.4,77,101800,341,1357,146,177,372,84,19834,17042,9445,2969,230,4.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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.4,-28.5,76,101800,444,1357,150,262,482,105,29689,28520,11942,3959,220,4.3,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-24.1,-27.5,75,101800,531,1357,154,340,558,123,38857,37278,14111,4865,220,3.9,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-22.8,-26.1,74,101800,598,1357,158,401,605,136,46127,42826,15707,5567,210,3.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-21.7,-25.1,76,101800,639,1357,162,440,631,145,50782,45985,16804,6045,210,3.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.5,-23.8,77,101800,652,1357,166,454,641,147,52476,46956,17061,6172,200,3.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-19.4,-22.2,79,101800,636,1357,170,439,632,144,50661,45826,16686,6001,200,3.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-18.1,-22.8,71,101800,592,1357,173,397,603,135,45639,42416,15581,5513,220,3.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-16.9,-23.0,62,101800,523,1357,176,333,552,122,38014,36523,13980,4803,240,2.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-15.6,-22.8,54,101700,434,1357,180,254,475,103,28755,27506,11703,3867,260,2.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-16.7,-23.6,58,101700,332,1357,176,170,362,82,19023,15915,9207,2879,250,2.3,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-17.8,-23.8,61,101800,222,1357,173,92,213,59,10142,4400,6526,1894,230,2.4,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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.9,-23.9,65,101800,114,1357,170,33,57,29,3622,0,3192,887,220,2.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.2,-25.8,65,101800,22,984,165,4,2,4,0,0,0,0,240,2.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-21.5,-27.1,64,101800,0,0,161,0,0,0,0,0,0,0,270,1.9,1,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-22.8,-27.8,64,101800,0,0,157,0,0,0,0,0,0,0,290,1.5,1,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-23.0,-28.1,67,101800,0,0,156,0,0,0,0,0,0,0,300,1.7,1,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-23.1,-27.5,71,101800,0,0,156,0,0,0,0,0,0,0,300,1.9,2,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-23.3,-26.7,74,101800,0,0,157,0,0,0,0,0,0,0,310,2.1,2,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-23.5,-27.6,73,101800,0,0,155,0,0,0,0,0,0,0,300,1.9,1,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-23.7,-27.7,71,101800,0,0,155,0,0,0,0,0,0,0,300,1.7,1,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-23.9,-27.8,70,101900,33,1187,154,7,31,6,803,0,689,207,290,1.5,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-23.7,-27.9,70,101900,130,1356,155,49,197,31,5418,0,3437,984,270,1.5,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-23.5,-27.6,71,101900,240,1356,155,120,397,51,13497,7755,5752,1782,250,1.5,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-23.3,-27.2,71,101900,349,1356,156,205,543,67,23453,22076,7687,2548,230,1.5,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-26.1,72,102000,451,1356,160,293,642,81,33964,34133,9417,3281,240,1.9,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-21.1,-24.9,74,102000,538,1356,163,372,705,94,43502,42675,11027,3979,250,2.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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.0,-23.3,75,102000,605,1356,167,434,746,103,51101,47979,12168,4502,260,2.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-19.3,-23.3,73,102000,646,1356,169,474,770,109,56023,51031,12927,4851,270,2.4,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-18.5,-22.9,70,102000,659,1356,172,486,776,110,57544,51712,13069,4929,270,2.3,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-17.8,-22.2,68,102000,643,1356,174,471,769,108,55675,50737,12809,4805,280,2.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-17.2,-21.6,71,102000,599,1356,176,429,743,102,50491,47466,12044,4450,280,2.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-16.7,-20.7,73,102000,530,1356,178,365,700,93,42637,41836,10898,3921,270,2.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-16.1,-19.4,76,102000,441,1356,181,284,633,80,32863,32849,9285,3221,270,2.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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.8,-21.0,73,102100,339,1356,178,196,529,65,22398,20373,7449,2459,250,1.9,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-17.6,-22.0,71,102100,229,1356,175,112,378,49,12577,6208,5518,1699,230,1.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-18.3,-22.8,68,102100,121,1356,172,43,174,28,4759,0,3107,891,210,1.5,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.0,-23.6,79,102100,27,1096,167,6,23,5,0,0,0,0,210,2.2,0,0,9.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-21.6,-23.7,89,102100,0,0,163,0,0,0,0,0,0,0,200,2.9,0,0,7.0,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-23.3,-23.3,100,102100,0,0,159,0,0,0,0,0,0,0,200,3.6,0,0,4.8,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-24.1,-24.7,100,102100,0,0,156,0,0,0,0,0,0,0,210,3.3,0,0,3.7,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-24.8,-25.3,100,102100,0,0,157,0,0,0,0,0,0,0,210,2.9,1,1,2.7,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-25.6,-25.6,100,102100,0,0,154,0,0,0,0,0,0,0,220,2.6,1,1,1.6,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-26.0,-26.5,100,102100,0,0,155,0,0,0,0,0,0,0,220,2.2,2,2,1.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-26.3,-26.6,100,102100,0,0,154,0,0,0,0,0,0,0,220,1.9,2,2,1.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-26.7,-26.7,100,102100,40,1299,155,11,73,8,1246,0,907,267,220,1.5,3,3,0.8,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-26.9,-27.2,100,102100,138,1355,154,55,230,33,6084,0,3660,1052,190,1.5,3,3,0.8,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-27.0,-27.2,100,102100,248,1355,153,113,244,70,12424,7320,7724,2230,160,1.5,3,3,0.8,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-27.2,-27.2,100,102100,357,1355,153,137,183,90,15342,8991,10114,3185,130,1.5,3,3,0.8,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-25.5,-27.0,90,102100,459,1355,156,288,578,94,33059,32973,10826,3712,120,1.5,2,2,3.8,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-23.9,-26.7,81,102100,546,1355,158,385,756,82,45584,44084,9736,3575,110,1.5,1,1,6.7,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-22.2,-26.1,71,102100,612,1355,160,464,855,80,55799,51485,9647,3654,100,1.5,0,0,9.7,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-21.7,-26.4,68,102100,653,1355,161,503,873,84,60744,54175,10172,3904,100,1.7,0,0,10.2,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-21.1,-26.4,64,102100,666,1355,162,505,859,85,61080,53704,10310,3973,110,1.9,0,0,10.8,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.6,-26.1,61,102100,650,1355,164,497,866,84,59985,53668,10167,3897,110,2.1,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.0,-26.1,60,102100,606,1355,165,458,853,79,55066,51047,9524,3601,100,2.1,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-19.5,-25.7,60,102100,537,1355,167,390,810,71,46606,44962,8506,3144,100,2.1,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-18.9,-25.0,59,102100,448,1355,169,310,756,62,36672,36263,7352,2628,90,2.1,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-19.3,-23.8,73,102100,346,1355,169,219,666,51,25574,23082,5969,2041,80,2.1,0,0,10.8,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-19.6,-22.0,86,102100,236,1355,169,130,531,40,14886,6964,4590,1476,80,2.1,0,0,10.2,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.0,100,102100,128,1355,170,54,319,25,6063,0,2813,841,70,2.1,0,0,9.7,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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.7,-21.3,100,102100,33,1209,167,10,94,6,1145,0,688,205,70,2.3,0,0,9.7,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-21.5,-22.0,100,102100,0,0,164,0,0,0,0,0,0,0,60,2.4,0,0,9.7,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-22.2,-22.2,100,102100,0,0,162,0,0,0,0,0,0,0,60,2.6,0,0,9.7,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-22.9,-23.6,100,102100,0,0,160,0,0,0,0,0,0,0,60,2.6,1,0,8.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-23.7,-24.1,100,102100,0,0,157,0,0,0,0,0,0,0,70,2.6,1,0,6.4,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-24.4,-24.4,100,102100,0,0,155,0,0,0,0,0,0,0,70,2.6,2,0,4.8,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-24.6,-26.4,90,102200,0,0,153,0,0,0,0,0,0,0,70,2.8,1,0,7.0,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-24.8,-27.6,80,102200,0,79,152,0,0,0,0,0,0,0,70,2.9,1,0,9.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-25.0,-28.9,70,102200,47,1355,151,16,176,8,1830,0,916,275,70,3.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-24.6,-28.9,70,102200,146,1355,152,69,407,26,7823,0,2954,906,70,3.3,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-24.3,-28.3,70,102200,255,1355,153,147,589,38,17040,9500,4414,1454,60,3.4,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-23.9,-27.8,70,102200,365,1355,154,237,709,48,27970,25616,5676,1974,60,3.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-22.6,-26.9,69,102200,466,1355,158,332,800,58,39653,38668,6942,2515,60,3.4,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-21.3,-25.8,69,102200,553,1355,162,412,850,67,49622,47076,8089,3020,70,3.3,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.0,-24.4,68,102200,619,1355,167,475,883,73,57600,52116,8874,3387,70,3.1,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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.1,-24.2,66,102200,660,1355,169,513,899,77,62441,54717,9396,3631,50,3.3,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-18.1,-23.6,64,102200,673,1355,172,526,905,79,64049,55636,9645,3739,30,3.4,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-17.2,-22.8,62,102200,656,1355,175,509,897,77,61912,54454,9390,3624,10,3.6,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-17.2,-22.2,68,102200,612,1355,176,467,878,73,56555,51536,8863,3375,20,3.9,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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.2,-21.3,73,102200,544,1355,176,403,846,66,48492,46108,7960,2964,30,4.3,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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.2,-20.0,79,102200,455,1355,177,321,792,57,38277,37132,6812,2458,40,4.6,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-17.8,-21.0,79,102200,352,1355,175,229,695,50,26837,24329,5872,2022,30,4.4,1,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-18.3,-21.4,79,102200,243,1355,173,138,567,39,15880,7904,4497,1461,20,4.3,1,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-18.9,-21.7,79,102200,136,1355,171,60,353,27,6728,0,3035,906,10,4.1,2,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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.6,-23.0,79,102200,39,1321,169,14,136,8,1580,0,904,265,10,4.1,2,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.4,-23.7,78,102200,0,0,166,0,0,0,0,0,0,0,20,4.1,2,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-21.1,-23.9,78,102100,0,0,164,0,0,0,0,0,0,0,20,4.1,2,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-21.5,-24.9,78,102100,0,0,162,0,0,0,0,0,0,0,30,4.3,2,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-21.8,-25.1,78,102100,0,0,161,0,0,0,0,0,0,0,30,4.4,2,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-22.2,-25.0,78,102100,0,0,160,0,0,0,0,0,0,0,40,4.6,2,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-21.8,-25.3,77,102100,0,0,167,0,0,0,0,0,0,0,40,5.0,4,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-21.5,-24.8,76,102100,1,214,172,0,0,0,0,0,0,0,40,5.3,5,5,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-21.1,-24.4,75,102100,55,1354,177,15,20,14,1654,0,1547,430,40,5.7,7,7,11.3,610,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.9,-24.7,74,102100,154,1354,175,60,58,54,6433,454,5811,1458,40,5.9,8,6,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.8,-24.6,72,102100,263,1354,173,144,297,87,15648,11748,9492,2607,50,6.0,8,4,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.6,-24.4,71,102100,372,1354,172,227,379,124,24873,23136,13646,3964,50,6.2,9,3,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-19.7,-23.7,71,102100,474,1354,173,265,353,143,29514,24672,15996,5051,50,5.7,6,2,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-18.7,-22.9,72,102000,560,1354,174,380,673,103,44337,42484,12058,4361,40,5.1,3,1,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-17.8,-21.7,72,102000,626,1354,174,469,819,92,55952,51312,11009,4158,40,4.6,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-17.2,-21.5,72,102000,667,1354,176,505,834,97,60473,53704,11652,4458,40,4.6,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-16.7,-20.9,72,102000,679,1354,178,521,847,98,62486,54835,11790,4530,30,4.6,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-16.1,-20.0,72,101900,663,1354,180,503,835,96,60237,53483,11532,4410,30,4.6,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-16.1,-20.2,73,101900,619,1354,180,464,819,91,55325,50939,10883,4102,30,5.0,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-16.1,-20.0,75,101900,550,1354,180,399,782,83,47240,45646,9855,3626,40,5.3,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-16.1,-19.4,76,101900,462,1354,181,311,707,72,36480,36193,8468,3013,40,5.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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.8,-20.6,76,101800,359,1354,186,212,435,98,23589,22462,10945,3383,50,5.3,3,3,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-17.6,-21.2,75,101800,250,1354,187,113,149,86,12222,5609,9339,2501,50,5.0,7,6,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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.3,-21.7,75,101800,143,1354,194,33,17,31,3676,0,3462,1018,60,4.6,10,9,11.3,400,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-19.6,-23.6,75,101800,46,1354,180,9,19,8,1025,0,912,272,60,4.3,7,6,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.9,-24.9,74,101800,0,79,171,0,0,0,0,0,0,0,60,3.9,5,3,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-22.2,-25.6,74,101800,0,0,160,0,0,0,0,0,0,0,60,3.6,2,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-22.2,-26.4,73,101800,0,0,160,0,0,0,0,0,0,0,60,3.6,3,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-22.2,-26.4,72,101800,0,0,163,0,0,0,0,0,0,0,50,3.6,3,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-22.2,-26.1,71,101700,0,0,163,0,0,0,0,0,0,0,50,3.6,4,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-22.8,-27.0,72,101700,0,0,163,0,0,0,0,0,0,0,50,3.6,6,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-23.3,-27.1,73,101700,6,327,161,1,1,1,0,0,0,0,60,3.6,8,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-23.9,-27.2,74,101700,62,1353,161,16,14,15,1770,0,1663,468,60,3.6,10,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-22.8,-26.6,73,101600,162,1353,167,59,39,54,6357,350,5839,1508,60,4.8,10,5,10.2,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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.7,-25.5,72,101600,271,1353,177,106,83,90,11523,3458,9822,2705,70,6.0,10,8,9.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.6,-24.4,71,101600,380,1353,190,52,6,51,6135,232,6029,2107,70,7.2,10,10,8.0,550,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-19.8,-23.9,71,101600,481,1353,193,167,2,166,18407,151,18383,5558,70,6.9,10,10,9.1,540,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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.1,-23.2,72,101600,567,1353,191,129,30,116,14935,1982,13479,4817,70,6.5,10,9,10.2,530,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-18.3,-22.2,72,101600,633,1353,194,309,156,236,34251,13971,26300,8252,70,6.2,10,9,11.3,520,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-17.8,-21.8,73,101500,673,1353,189,363,161,283,39967,15604,31340,9480,70,6.5,9,7,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-17.2,-21.0,75,101500,686,1353,186,432,346,257,48064,31841,28752,9201,70,6.9,8,4,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-16.7,-20.0,76,101500,669,1353,185,491,564,213,55292,47748,24108,8119,70,7.2,7,2,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-16.5,-20.0,77,101400,625,1353,187,413,463,200,46331,38335,22547,7457,70,7.2,8,3,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-16.3,-19.6,78,101400,557,1353,188,370,445,188,41099,35941,20985,6626,70,7.2,8,3,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-16.1,-18.9,79,101400,468,1353,191,271,257,183,29526,20438,20038,5704,70,7.2,9,4,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-16.5,-19.5,80,101400,366,1353,190,179,247,113,19725,14055,12503,3729,70,6.7,9,5,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-16.8,-19.5,82,101400,257,1353,193,116,91,99,12433,4023,10657,2704,80,6.2,10,7,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-17.2,-19.4,83,101400,150,1353,195,49,24,46,5305,10,4998,1325,80,5.7,10,8,11.3,1310,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-17.8,-20.9,80,101400,53,1353,196,10,2,9,1138,0,1025,306,80,5.5,10,9,11.3,987,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-21.8,78,101400,1,214,194,0,0,0,0,0,0,0,70,5.4,10,9,11.3,663,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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.9,-22.2,75,101400,0,0,197,0,0,0,0,0,0,0,70,5.2,10,10,11.3,340,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-18.3,-22.5,74,101300,0,0,199,0,0,0,0,0,0,0,70,5.0,10,10,11.3,287,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-17.8,-21.9,73,101300,0,0,201,0,0,0,0,0,0,0,70,4.8,10,10,11.3,233,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-17.2,-21.1,72,101300,0,0,204,0,0,0,0,0,0,0,70,4.6,10,10,11.3,180,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-17.6,-21.6,74,101300,0,0,202,0,0,0,0,0,0,0,70,5.3,10,10,8.3,180,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-17.9,-21.3,77,101200,12,462,201,2,0,2,0,0,0,0,70,6.0,10,10,5.4,180,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-21.1,79,101200,70,1352,200,6,0,6,582,0,586,227,70,6.7,10,10,2.4,180,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-18.1,-20.3,86,101200,170,1352,202,38,4,38,4234,0,4245,1260,70,6.5,10,10,3.7,190,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-18.0,-19.1,93,101200,278,1352,203,97,1,97,10506,45,10549,2859,70,6.4,10,10,5.1,200,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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.8,-17.8,100,101200,387,1352,205,143,4,141,15567,266,15420,4350,70,6.2,10,10,6.4,210,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-17.1,-18.5,91,101200,488,1352,196,233,90,200,25324,7528,21851,6133,70,6.0,10,8,8.0,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-16.3,-19.1,81,101200,574,1352,195,303,143,243,33075,13146,26673,7687,80,5.9,10,7,9.7,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-15.6,-19.4,72,101200,640,1352,193,465,549,206,52191,45965,23237,7711,80,5.7,10,5,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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.2,-19.4,72,101200,680,1352,194,406,336,238,45403,29829,26758,8770,80,5.7,10,5,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-14.8,-19.0,73,101200,692,1352,198,363,215,253,40490,19572,28375,9198,90,5.7,10,6,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-18.3,73,101200,676,1352,199,463,509,210,52264,42713,23824,8103,90,5.7,10,6,11.3,5180,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-14.2,-18.5,73,101200,632,1352,198,358,219,256,39404,20369,28335,8578,100,5.2,10,5,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-14.1,-18.3,73,101200,563,1352,197,376,371,222,41254,32549,24487,7279,100,4.6,10,4,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-13.9,-17.8,73,101200,475,1352,197,303,426,155,33529,30890,17230,5312,110,4.1,10,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-14.3,-18.2,75,101100,373,1352,198,192,153,151,20691,10595,16351,4332,100,3.9,10,5,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-14.6,-18.1,78,101100,264,1352,201,120,85,104,12843,3983,11180,2813,90,3.8,10,7,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-15.0,-17.8,80,101100,157,1352,208,44,15,42,4821,0,4616,1292,80,3.6,10,9,11.3,610,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-15.0,-18.2,81,101200,60,1352,207,9,19,8,1042,0,927,284,80,4.3,10,9,11.3,510,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-15.0,-18.0,82,101200,2,327,214,0,0,0,0,0,0,0,90,5.0,10,10,11.3,410,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-15.0,-17.2,83,101200,0,0,214,0,0,0,0,0,0,0,90,5.7,10,10,11.3,310,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-16.3,-19.5,80,101200,0,0,195,0,0,0,0,0,0,0,90,5.2,7,7,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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.6,-21.0,78,101200,0,0,185,0,0,0,0,0,0,0,100,4.6,4,4,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-18.9,-22.2,75,101300,0,0,174,0,0,0,0,0,0,0,100,4.1,1,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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.2,-24.2,74,101300,0,0,169,0,0,0,0,0,0,0,130,3.8,3,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-21.5,-25.4,72,101300,7,597,167,3,10,2,0,0,0,0,170,3.4,5,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-22.8,-26.7,71,101400,77,1352,163,25,81,20,2745,0,2202,607,200,3.1,7,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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.9,-25.2,71,101400,177,1352,173,66,103,52,7198,1016,5690,1565,220,2.8,8,5,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-19.1,-23.1,72,101400,286,1352,184,117,83,100,12680,3907,10883,2958,240,2.4,9,7,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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.2,-21.1,72,101500,395,1352,204,97,1,97,10918,54,10958,3537,260,2.1,10,10,11.3,30,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-16.5,-20.0,76,101500,495,1352,207,123,4,121,13961,260,13787,4648,280,2.4,10,10,8.0,70,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-15.7,-18.8,79,101500,581,1352,211,181,1,181,20278,79,20374,6678,300,2.8,10,10,4.6,110,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-15.0,-17.2,83,101600,646,1352,214,231,2,230,25727,176,25752,8284,320,3.1,10,10,1.3,150,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-14.4,-17.2,82,101600,686,1352,216,242,5,240,27077,444,26997,8879,330,2.9,10,10,3.5,537,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-13.9,-16.8,81,101600,699,1352,218,257,4,254,28691,363,28512,9289,330,2.8,10,10,5.8,923,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-13.3,-16.1,80,101600,682,1352,221,279,2,278,30813,191,30880,9531,340,2.6,10,10,8.0,1310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-13.1,-15.9,82,101600,638,1352,222,290,5,288,31645,492,31613,9079,20,3.1,10,10,9.1,1533,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-13.0,-15.3,85,101600,570,1352,217,256,102,213,28220,8721,23603,7210,60,3.6,10,9,10.2,1757,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-12.8,-14.4,87,101600,481,1352,218,135,34,123,15246,2192,13946,4632,100,4.1,10,9,11.3,1980,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-13.0,-15.2,86,101600,379,1352,217,146,136,109,16199,7624,12141,3735,100,3.9,10,9,11.3,1423,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-13.1,-15.5,85,101700,271,1352,222,49,6,47,5614,132,5398,1759,90,3.8,10,10,11.3,867,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-13.3,-15.6,84,101700,164,1352,221,28,2,27,3194,0,3086,964,90,3.6,10,10,11.3,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-13.7,-16.6,84,101700,66,1352,219,7,2,7,825,0,825,258,80,3.3,10,10,11.3,267,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-14.0,-16.9,83,101700,4,462,218,0,0,0,0,0,0,0,80,2.9,10,10,11.3,223,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-14.4,-16.7,83,101700,0,0,217,0,0,0,0,0,0,0,70,2.6,10,10,11.3,180,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-14.6,-17.5,83,101700,0,0,215,0,0,0,0,0,0,0,70,2.8,10,10,11.3,170,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-14.8,-17.5,83,101700,0,0,215,0,0,0,0,0,0,0,60,2.9,10,10,11.3,160,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-15.0,-17.2,83,101700,0,0,214,0,0,0,0,0,0,0,60,3.1,10,10,11.3,150,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-15.0,-17.7,83,101700,0,0,214,0,0,0,0,0,0,0,60,2.8,10,10,11.3,150,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-15.0,-17.4,83,101700,10,732,214,2,0,2,0,0,0,0,60,2.4,10,10,11.3,150,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-15.0,-17.2,83,101700,85,1351,214,17,0,17,1650,0,1661,560,60,2.1,10,10,11.3,150,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-14.6,-16.4,89,101700,185,1351,216,44,2,44,4883,11,4897,1444,70,2.3,10,10,8.3,140,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-14.3,-15.2,94,101700,293,1351,218,85,0,85,8404,0,8465,2764,80,2.4,10,10,5.4,130,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-13.9,-13.9,100,101700,402,1351,221,130,1,130,14307,63,14369,4294,90,2.6,10,10,2.4,120,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-13.7,-14.7,95,101700,502,1351,221,212,0,212,21339,0,21507,6444,70,2.2,10,10,2.1,130,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-13.5,-15.3,89,101700,588,1351,221,239,1,238,26211,90,26244,7797,60,1.9,10,10,1.9,140,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-13.3,-15.6,84,101700,653,1351,221,257,1,256,28408,92,28456,8831,40,1.5,10,10,1.6,150,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-12.9,-15.4,85,101700,693,1351,223,282,0,282,28848,0,29092,9729,20,1.9,10,10,2.7,213,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-12.6,-14.8,87,101700,705,1351,224,319,1,319,34987,101,35201,10410,350,2.2,10,10,3.7,277,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-12.2,-13.9,88,101700,688,1351,227,287,1,286,31658,96,31732,9738,330,2.6,10,10,4.8,340,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-12.2,-14.4,87,101700,644,1351,226,274,0,274,27914,0,28146,9001,340,2.6,10,10,5.9,410,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-12.2,-14.6,85,101700,576,1351,226,225,0,225,22790,0,22975,7473,340,2.6,10,10,6.9,480,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-12.2,-14.4,84,101700,488,1351,226,200,1,200,21733,83,21846,6140,350,2.6,10,10,8.0,550,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-12.2,-14.7,85,101700,386,1351,226,139,1,139,15143,66,15212,4316,350,2.6,10,10,6.9,550,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-12.2,-14.4,87,101700,277,1351,226,98,0,98,9674,0,9744,2865,340,2.6,10,10,5.9,550,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-12.2,-13.9,88,101700,170,1351,227,47,0,47,4596,0,4627,1443,340,2.6,10,10,4.8,550,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-12.2,-13.9,92,101700,73,1351,227,16,0,16,1551,0,1561,510,20,2.6,10,10,6.4,530,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-12.2,-13.3,96,101800,6,574,227,2,0,2,0,0,0,0,50,2.6,10,10,8.1,510,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-12.2,-12.2,100,101800,0,0,228,0,0,0,0,0,0,0,90,2.6,10,10,9.7,490,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-12.6,-13.8,96,101800,0,0,225,0,0,0,0,0,0,0,90,3.1,10,10,10.2,450,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-12.9,-14.5,91,101800,0,0,224,0,0,0,0,0,0,0,90,3.6,10,10,10.8,410,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-13.3,-15.0,87,101800,0,0,222,0,0,0,0,0,0,0,90,4.1,10,10,11.3,370,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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.3,-15.5,87,101800,0,0,221,0,0,0,0,0,0,0,90,3.2,10,10,11.3,317,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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.3,-15.2,87,101800,14,866,222,3,0,3,0,0,0,0,80,2.4,10,10,11.3,263,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-15.0,87,101800,92,1350,222,25,0,25,2428,0,2444,746,80,1.5,10,10,11.3,210,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-12.9,-15.0,87,101800,192,1350,223,65,0,65,6370,0,6414,1842,70,2.4,10,10,10.8,190,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-12.6,-14.4,88,101800,301,1350,225,108,1,108,11687,51,11737,3182,70,3.2,10,10,10.2,170,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-12.2,-13.9,88,101700,409,1350,227,135,1,134,14851,65,14806,4421,60,4.1,10,10,9.7,150,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-12.9,-15.0,86,101700,509,1350,223,181,0,181,18230,0,18375,6081,60,4.1,10,10,7.0,150,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-13.7,-16.0,85,101800,595,1350,220,232,1,231,25548,89,25575,7772,70,4.1,10,10,4.3,150,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-14.4,-16.7,83,101800,659,1350,217,283,1,283,31070,97,31251,9319,70,4.1,10,10,1.6,150,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-14.4,-17.2,82,101800,699,1350,216,289,1,288,31940,97,32015,9908,70,4.6,10,10,4.8,273,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-14.4,-17.3,81,101800,711,1350,216,276,1,275,30693,94,30756,9834,80,5.2,10,10,8.1,397,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-14.4,-17.2,80,101800,694,1350,216,278,0,278,28449,0,28690,9693,80,5.7,10,10,11.3,520,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-14.0,-17.4,79,101800,650,1350,211,280,69,248,31027,6277,27632,8676,80,5.7,10,9,11.3,437,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-13.7,-17.2,77,101700,582,1350,213,283,196,199,31471,16211,22240,7080,80,5.7,10,9,11.3,353,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-13.3,-16.7,76,101700,494,1350,210,263,172,201,28621,14393,21988,6228,80,5.7,10,8,11.3,270,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-13.3,-17.1,76,101700,392,1350,214,174,106,144,18942,7158,15749,4446,90,4.7,10,9,11.3,353,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-13.3,-17.0,76,101700,284,1350,214,83,19,79,9165,717,8754,2596,100,3.6,10,9,11.3,437,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-16.7,76,101700,177,1350,220,37,1,37,4146,0,4157,1256,110,2.6,10,10,11.3,520,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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.9,-16.7,77,101700,80,1350,222,9,0,9,873,0,879,330,100,2.4,10,10,11.3,520,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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.6,-16.1,79,101700,9,709,223,0,0,0,0,0,0,0,100,2.3,10,10,11.3,520,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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.2,-15.0,80,101700,0,0,226,0,0,0,0,0,0,0,90,2.1,10,10,11.3,520,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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.4,-15.5,82,101700,0,0,225,0,0,0,0,0,0,0,90,2.4,10,10,11.3,500,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-12.6,-15.1,85,101600,0,0,224,0,0,0,0,0,0,0,90,2.8,10,10,11.3,480,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-12.8,-14.4,87,101600,0,0,224,0,0,0,0,0,0,0,90,3.1,10,10,11.3,460,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-12.6,-14.8,87,101600,0,0,224,0,0,0,0,0,0,0,80,2.9,10,10,11.3,460,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-12.4,-14.3,88,101600,19,1001,226,3,1,3,0,0,0,0,70,2.8,10,10,11.3,460,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-12.2,-13.9,88,101600,99,1349,227,26,3,26,2849,0,2857,790,60,2.6,10,10,11.3,460,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-11.7,-13.9,87,101600,199,1349,228,57,3,56,6246,45,6157,1745,60,2.6,10,10,11.3,510,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-11.1,-13.3,85,101500,308,1349,231,117,3,117,12607,163,12664,3353,60,2.6,10,10,11.3,560,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-10.6,-12.8,84,101500,416,1349,233,163,1,163,17674,73,17760,4921,60,2.6,10,10,11.3,610,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-10.0,-12.8,82,101500,516,1349,235,202,2,201,22093,166,22097,6468,70,3.3,10,10,10.8,610,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-9.5,-12.7,79,101500,601,1349,237,250,2,249,27391,184,27434,8119,80,3.9,10,10,10.2,610,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-8.9,-12.2,77,101500,666,1349,240,299,1,298,32716,99,32802,9602,90,4.6,10,10,9.7,610,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-9.3,-12.5,79,101500,705,1349,238,309,1,308,33989,99,34084,10287,100,4.3,10,10,10.2,590,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-9.6,-12.5,82,101500,717,1349,237,325,1,325,35674,101,35894,10677,110,3.9,10,10,10.8,570,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-10.0,-12.2,84,101500,700,1349,236,331,1,331,36157,103,36382,10492,120,3.6,10,10,11.3,550,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-10.0,-13.5,78,101500,656,1349,235,277,1,277,30443,96,30620,9211,110,4.5,10,10,11.3,510,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-10.0,-14.4,73,101500,588,1349,234,242,1,241,26519,91,26555,7857,110,5.3,10,10,11.3,470,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-10.0,-15.0,67,101500,500,1349,233,205,2,205,22305,169,22423,6352,100,6.2,10,10,11.3,430,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-10.7,-15.8,69,101500,399,1349,224,103,43,91,11666,2234,10343,3403,100,5.5,10,9,11.3,367,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-11.5,-16.0,71,101500,291,1349,221,86,39,78,9529,1480,8673,2609,100,4.8,10,9,11.3,303,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-12.2,-16.1,73,101500,184,1349,214,66,33,61,7120,528,6605,1731,100,4.1,10,8,11.3,240,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-13.1,-17.4,74,101500,87,1349,214,21,11,21,2313,0,2318,648,90,3.8,10,9,11.3,1990,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-14.1,-18.1,75,101600,13,843,210,0,2,0,0,0,0,0,90,3.4,10,9,11.3,3740,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-15.0,-18.3,76,101600,0,0,213,0,0,0,0,0,0,0,80,3.1,10,10,11.3,5490,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-15.2,-19.0,77,101500,0,0,212,0,0,0,0,0,0,0,80,3.3,10,10,11.3,4880,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-15.4,-18.8,78,101500,0,0,212,0,0,0,0,0,0,0,70,3.4,10,10,11.3,4270,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-15.6,-18.3,79,101500,0,0,211,0,0,0,0,0,0,0,70,3.6,10,10,11.3,3660,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-14.5,-17.5,81,101400,0,0,216,0,0,0,0,0,0,0,70,3.6,10,10,11.3,2460,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-13.3,-15.9,82,101400,24,1135,221,5,1,5,576,0,576,173,70,3.6,10,10,11.3,1260,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-12.2,-14.4,84,101300,106,1349,226,25,0,25,2431,0,2447,793,70,3.6,10,10,11.3,60,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-11.5,-13.3,89,101300,207,1349,230,40,4,40,4522,28,4534,1414,70,3.8,10,10,8.0,50,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-10.7,-11.6,95,101200,315,1349,234,88,1,88,9735,44,9771,2944,70,3.9,10,10,4.6,40,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-10.0,-10.0,100,101200,423,1349,238,114,7,112,12773,411,12598,4052,70,4.1,10,10,1.3,30,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-9.6,-9.8,100,101100,522,1349,240,171,4,169,18999,302,18865,5975,70,4.1,10,10,4.1,40,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-9.3,-9.5,100,101100,608,1349,241,229,0,229,23243,0,23435,7888,70,4.1,10,10,6.9,50,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-8.9,-8.9,100,101100,672,1349,243,272,3,271,30026,280,30087,9315,70,4.1,10,10,9.7,60,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-8.5,-8.9,100,101100,711,1349,244,314,3,312,34531,297,34519,10433,80,4.6,10,10,9.7,70,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-8.2,-8.5,100,101100,723,1349,246,311,1,310,34297,98,34393,10568,80,5.2,10,10,9.7,80,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-7.8,-7.8,100,101100,706,1349,248,290,0,290,29674,0,29928,10047,90,5.7,10,10,9.7,90,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-8.2,-9.5,94,101200,662,1349,245,286,1,286,31374,96,31559,9418,110,5.3,10,10,10.2,80,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-8.5,-10.8,87,101200,594,1349,243,227,1,226,25034,87,25057,7700,140,5.0,10,10,10.8,70,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-8.9,-11.7,81,101300,506,1349,240,184,1,184,20228,79,20328,6117,160,4.6,10,10,11.3,60,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-9.1,-11.4,87,101400,405,1349,240,152,1,152,16526,70,16604,4678,190,4.3,10,10,8.0,50,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-9.2,-10.5,94,101400,297,1349,240,92,1,92,10073,44,10113,2915,210,3.9,10,10,4.6,40,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-9.4,-9.4,100,101500,190,1349,241,54,0,54,5287,0,5323,1662,240,3.6,10,10,1.3,30,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-9.8,-10.4,100,101600,93,1349,238,22,0,22,2135,0,2149,688,240,3.3,10,10,1.1,30,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-10.2,-10.8,100,101700,17,978,237,3,0,3,0,0,0,0,240,2.9,10,10,1.0,30,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-10.6,-10.6,100,101700,0,0,235,0,0,0,0,0,0,0,240,2.6,10,10,0.8,30,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-11.0,-11.6,100,101800,0,0,233,0,0,0,0,0,0,0,220,2.2,10,10,0.7,30,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-11.3,-11.8,100,101800,0,0,232,0,0,0,0,0,0,0,190,1.9,10,10,0.5,30,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-11.7,-11.7,100,101800,0,0,230,0,0,0,0,0,0,0,170,1.5,10,10,0.4,30,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1976,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,-13.5,-14.1,100,101800,0,0,216,0,0,0,0,0,0,0,230,1.5,9,9,0.5,1850,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-15.4,-15.6,100,101900,30,1269,201,6,18,6,687,0,688,206,280,1.5,8,7,0.7,3670,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-17.2,-17.2,100,101900,114,1348,192,38,8,37,4092,0,3998,1025,340,1.5,7,6,0.8,5490,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-16.1,-17.7,91,101900,214,1348,193,88,102,72,9513,2716,7814,2080,350,2.0,8,5,4.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-15.0,-17.8,82,101900,322,1348,193,174,303,103,19057,15335,11326,3269,10,2.6,8,3,7.8,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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.9,-17.8,73,101900,429,1348,195,288,534,119,32198,33019,13357,4255,20,3.1,9,2,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-12.8,-15.6,82,101900,529,1348,205,360,469,177,39937,36595,19730,6192,40,2.9,9,5,9.7,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-11.7,-13.3,91,102000,614,1348,215,337,173,259,36914,16173,28531,8424,70,2.8,10,7,8.0,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-10.6,-10.6,100,102000,678,1348,235,208,9,203,23548,736,23095,7965,90,2.6,10,10,6.4,150,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1976,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,-10.4,-10.7,100,102000,717,1348,236,265,33,247,29754,2921,27883,9350,60,2.9,10,10,6.9,303,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1976,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,-10.2,-10.5,100,102000,729,1348,237,285,14,278,31762,1304,31159,10110,40,3.3,10,10,7.5,457,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1976,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,-10.0,-10.0,100,102000,712,1348,238,265,12,259,29608,1086,29098,9557,10,3.6,10,10,8.0,610,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1976,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,-10.0,-10.4,100,102100,668,1348,238,246,9,241,27411,797,26999,8746,360,3.3,10,10,5.6,417,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1976,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,-10.0,-10.4,100,102200,600,1348,238,229,3,227,25279,262,25192,7784,350,2.9,10,10,3.2,223,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1976,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,-10.0,-10.0,100,102200,512,1348,238,185,2,184,20365,158,20355,6177,340,2.6,10,10,0.8,30,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1976,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,-10.0,-11.2,95,102300,411,1348,237,169,2,168,18253,149,18236,4937,320,2.6,10,10,4.3,133,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1976,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,-10.0,-11.8,89,102300,303,1348,236,108,1,108,11697,51,11747,3207,290,2.6,10,10,7.8,237,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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.0,-12.2,84,102400,197,1348,236,68,1,68,7317,22,7346,1908,270,2.6,10,10,11.3,340,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-12.4,-15.6,81,102500,100,1348,210,35,49,32,3766,0,3454,879,260,2.8,7,7,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-14.8,-18.4,79,102600,22,1112,193,7,41,5,0,0,0,0,240,2.9,5,3,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-17.2,-20.6,76,102700,0,0,177,0,0,0,0,0,0,0,230,3.1,2,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-18.7,-22.9,74,102700,0,0,171,0,0,0,0,0,0,0,230,3.3,1,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.2,-24.4,73,102800,0,0,166,0,0,0,0,0,0,0,230,3.4,1,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-21.7,-25.6,71,102900,0,0,161,0,0,0,0,0,0,0,230,3.6,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-21.9,-26.3,71,103000,0,79,160,0,0,0,0,0,0,0,230,3.4,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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.0,-26.2,71,103100,37,1347,160,4,24,3,488,0,366,114,230,3.3,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-22.2,-26.1,71,103200,121,1347,160,43,163,29,4755,0,3215,919,230,3.1,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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.0,-26.4,70,103200,221,1347,160,105,345,49,11766,5429,5506,1682,230,3.1,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-21.9,-26.3,68,103300,329,1347,160,185,497,65,21101,18909,7435,2438,230,3.1,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-21.7,-26.1,67,103300,436,1347,161,276,605,81,31902,31727,9391,3247,230,3.1,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-19.8,-23.9,71,103400,535,1347,167,363,676,95,42427,41071,11139,4018,220,2.9,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-18.0,-21.6,75,103400,620,1347,174,443,732,108,52177,48024,12764,4747,220,2.8,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-16.1,-18.9,79,103500,684,1347,181,502,763,117,59484,51861,13913,5288,210,2.6,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-14.4,-17.9,77,103500,723,1347,187,541,782,122,64356,53982,14565,5607,200,3.5,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-12.8,-16.6,75,103600,735,1347,193,552,788,124,65713,54606,14816,5722,190,4.3,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-11.1,-15.0,73,103600,718,1347,199,536,781,121,63729,53551,14439,5552,180,5.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-11.3,-15.6,73,103600,674,1347,198,495,761,115,58611,51160,13665,5182,170,5.5,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-11.5,-15.8,73,103700,606,1347,197,430,724,106,50559,46679,12506,4631,170,5.9,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-11.7,-15.6,73,103700,518,1347,197,347,663,93,40449,39139,10875,3897,160,6.2,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-12.8,-16.8,75,103700,417,1347,192,257,572,82,29514,29066,9446,3218,160,5.9,1,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-13.9,-17.4,78,103700,310,1347,189,169,457,65,19143,16097,7384,2377,160,5.5,1,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-15.0,-17.8,80,103700,203,1347,185,93,295,49,10326,3520,5457,1619,160,5.2,2,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-15.9,-19.5,78,103700,106,1347,181,35,119,26,3855,0,2871,808,150,5.2,2,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-16.9,-20.6,77,103700,27,1246,178,5,17,4,587,0,470,144,150,5.2,2,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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.8,-21.1,75,103700,0,0,175,0,0,0,0,0,0,0,140,5.2,2,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-18.2,-21.8,78,103700,0,0,173,0,0,0,0,0,0,0,120,4.5,3,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1976,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,-18.5,-21.6,80,103700,0,0,176,0,0,0,0,0,0,0,110,3.8,3,1,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1976,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,-18.9,-21.1,83,103700,0,0,175,0,0,0,0,0,0,0,90,3.1,4,1,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1976,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,-19.6,-22.9,79,103700,1,213,172,0,0,0,0,0,0,0,90,2.9,5,1,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1976,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,-20.4,-23.9,75,103700,43,1347,171,10,56,8,1140,0,913,273,80,2.8,6,2,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-21.1,-25.0,71,103700,127,1347,169,45,92,37,4900,0,4042,1093,80,2.6,7,2,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-19.6,-23.3,75,103600,228,1347,172,117,383,53,13066,7230,5936,1801,80,3.5,5,1,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-18.2,-21.1,79,103600,335,1347,177,159,401,60,18288,14749,6919,2311,90,4.3,2,1,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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.7,-18.9,83,103600,442,1347,180,297,734,58,35285,34022,6906,2478,90,5.2,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-14.7,-17.2,82,103500,542,1347,187,384,788,68,46105,43103,8184,3046,90,5.7,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-12.6,-15.4,81,103500,626,1347,194,465,839,77,56256,49879,9340,3573,90,6.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-10.6,-13.3,80,103500,690,1347,202,524,865,83,63783,53417,10131,3953,90,6.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-9.8,-13.1,79,103400,729,1347,208,525,752,119,62616,51216,14244,5512,90,6.9,3,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-9.1,-12.5,78,103400,740,1347,214,578,772,155,67676,56940,18225,6884,90,7.0,5,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-11.7,77,103300,724,1347,219,527,594,210,60046,49024,24047,8497,90,7.2,8,3,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-7.9,-11.9,76,103200,680,1347,220,410,348,235,45901,30428,26449,8743,90,7.9,9,3,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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,-7.6,-11.7,75,103200,612,1347,222,434,530,195,48649,42988,21966,7263,100,8.6,9,3,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1976,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.2,-11.1,74,103100,524,1347,223,350,410,192,38514,33142,21234,6431,100,9.3,10,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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.6,-11.7,75,103000,423,1347,225,232,258,152,25364,18084,16695,4853,100,9.5,10,5,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-7.9,-11.8,76,103000,316,1347,226,101,53,89,11168,2350,9878,2972,90,9.6,10,6,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-8.3,-11.7,77,102900,210,1347,231,74,38,68,8015,881,7393,1994,90,9.8,10,8,11.3,5490,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-8.5,-12.1,79,102900,113,1347,235,32,11,31,3489,0,3390,923,90,9.6,10,9,8.3,3730,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-8.7,-11.9,82,102900,33,1347,234,4,2,3,484,0,363,113,100,9.5,10,9,5.4,1970,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-8.9,-11.1,84,102800,0,56,241,0,0,0,0,0,0,0,100,9.3,10,10,2.4,210,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1976,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,-9.3,-11.8,87,102800,0,0,232,0,0,0,0,0,0,0,100,8.9,10,9,3.2,243,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-9.6,-11.6,89,102800,0,0,227,0,0,0,0,0,0,0,90,8.6,9,8,4.0,277,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-10.0,-11.1,92,102700,0,0,222,0,0,0,0,0,0,0,90,8.2,9,7,4.8,310,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-10.0,-11.8,91,102700,6,370,217,1,0,1,0,0,0,0,90,7.4,9,5,7.0,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-10.0,-11.7,89,102700,50,1346,215,13,40,11,1455,0,1234,358,90,6.5,9,4,9.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-10.0,-11.7,88,102600,134,1346,212,58,78,51,6170,166,5446,1306,90,5.7,9,2,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1976,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,-9.6,-11.7,88,102600,234,1346,215,93,139,70,10170,3825,7683,2177,90,5.9,9,3,8.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-9.3,-11.1,88,102600,342,1346,220,168,181,123,18243,10541,13416,3734,90,6.0,10,5,4.8,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-8.9,-10.6,88,102600,449,1346,224,196,150,146,21649,10342,16199,4961,90,6.2,10,6,1.6,180,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-8.3,-10.2,88,102600,548,1346,222,369,542,149,41684,38735,16905,5698,90,6.4,7,4,4.8,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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,-9.7,88,102600,632,1346,221,445,646,143,51348,45926,16568,5980,100,6.5,4,2,8.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1976,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.2,-8.9,88,102600,696,1346,216,523,837,92,63208,52540,11152,4341,100,6.7,1,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1976,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,-6.7,-8.9,87,102600,735,1346,218,554,842,96,67205,53825,11682,4598,100,6.2,1,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1976,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,-6.1,-8.5,86,102600,746,1346,220,573,843,107,69076,55379,12942,5083,100,5.7,2,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1976,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,-5.6,-7.8,85,102700,729,1346,222,556,835,105,66918,54377,12679,4957,100,5.2,2,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1976,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.4,-8.0,85,102600,685,1346,223,521,794,118,61654,53101,14014,5334,100,5.0,4,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1976,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.2,-7.8,85,102600,617,1346,224,464,762,116,54258,49966,13613,5025,90,4.8,5,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1976,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.0,-7.2,85,102600,530,1346,225,386,691,116,44295,43852,13361,4680,90,4.6,7,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1976,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,-5.9,-8.8,84,102600,429,1346,220,291,601,101,32946,33592,11476,3810,90,4.6,8,0,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1976,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,-6.9,-9.8,82,102600,322,1346,216,195,479,82,21750,20152,9178,2852,90,4.6,9,0,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1976,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,-7.8,-10.6,81,102600,216,1346,213,108,305,61,11840,6106,6711,1915,90,4.6,10,0,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1976,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,-8.3,-10.9,80,102600,119,1346,211,48,185,33,5232,0,3608,983,90,5.0,8,0,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1976,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,-8.8,-11.3,78,102600,40,1346,209,10,94,7,1142,0,800,239,80,5.5,5,0,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1976,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,-9.4,-11.7,77,102600,1,213,207,0,0,0,0,0,0,0,80,5.9,3,0,11.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-9.9,-12.0,88,101200,0,0,237,0,0,0,0,0,0,0,80,6.4,10,10,11.3,240,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.5,-12.4,84,101200,0,0,234,0,0,0,0,0,0,0,70,6.8,10,10,9.7,270,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-11.0,-12.8,88,101200,0,0,232,0,0,0,0,0,0,0,70,7.3,10,10,9.7,270,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-11.7,-13.3,88,101300,12,415,229,2,0,2,0,0,0,0,70,7.7,10,10,11.3,240,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-12.2,-13.9,88,101300,52,1346,227,9,0,9,871,0,877,314,80,8.2,10,10,9.7,270,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-12.2,-13.9,88,101300,137,1346,227,40,0,40,3902,0,3928,1204,80,7.7,10,10,9.7,240,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-12.2,-14.4,84,101300,237,1346,226,87,0,86,8563,0,8525,2458,90,8.8,10,10,9.7,240,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-12.2,-13.9,88,101300,344,1346,227,126,0,126,12518,0,12611,3833,80,8.8,10,10,9.7,270,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-12.2,-13.9,88,101300,451,1346,227,192,0,192,19251,0,19400,5702,80,8.2,10,10,1.2,310,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-12.2,-13.9,88,101400,550,1346,227,223,0,223,22549,0,22731,7228,70,7.7,10,10,8.0,340,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-11.7,-13.9,84,101400,634,1346,228,260,1,260,28630,93,28791,8760,80,8.8,10,10,6.4,340,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-11.1,-13.3,84,101400,698,1346,231,292,0,292,29895,0,30150,10042,80,8.8,10,10,1.6,340,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-11.1,-13.3,84,101400,737,1346,231,320,1,319,35360,100,35464,10965,90,8.8,10,10,1.6,430,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.6,-13.3,80,101400,748,1346,233,363,0,362,37322,0,37541,11678,80,8.8,10,10,2.4,400,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.6,-13.3,80,101400,731,1346,233,323,1,322,35627,100,35734,10934,80,10.3,10,10,8.0,400,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.6,-13.3,80,101400,687,1346,226,343,83,300,37730,8160,33197,10021,70,9.3,10,9,9.7,400,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.6,-13.3,80,101400,619,1346,216,355,302,218,39539,25827,24406,7861,70,10.3,10,6,9.7,400,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.0,-13.3,77,101400,532,1346,218,311,253,212,34048,21614,23332,6869,80,9.3,10,6,11.3,400,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.0,-12.8,80,101400,431,1346,224,141,66,120,15775,4085,13480,4319,70,7.7,10,8,11.3,400,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-11.1,-13.3,84,101500,324,1346,231,76,7,75,8561,284,8475,2708,70,7.7,10,10,11.3,400,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-11.1,-13.3,84,101500,218,1346,231,59,18,57,6526,345,6325,1866,80,10.8,10,10,11.3,430,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-11.7,-13.3,88,101500,121,1346,229,28,2,28,3110,0,3118,907,80,9.3,10,10,8.0,370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-12.2,-13.9,88,101500,42,1346,227,4,0,4,387,0,389,150,80,9.8,10,10,8.0,370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-12.8,-15.0,84,101500,1,258,224,0,0,0,0,0,0,0,70,8.2,10,10,11.3,430,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-13.3,-15.6,84,101500,0,0,215,0,0,0,0,0,0,0,60,6.2,10,9,11.3,400,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-12.8,-15.0,84,101500,0,0,207,0,0,0,0,0,0,0,70,8.8,9,6,11.3,910,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-12.8,-15.0,84,101500,0,0,213,0,0,0,0,0,0,0,70,8.8,10,8,11.3,980,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-12.8,-15.0,84,101500,12,572,213,2,1,2,0,0,0,0,70,9.3,10,8,11.3,980,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-13.3,-15.6,84,101500,59,1345,207,14,26,13,1571,0,1461,428,70,8.2,10,7,11.3,980,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-14.4,-16.7,83,101500,143,1345,201,58,46,53,6209,275,5696,1421,70,7.7,10,6,11.3,1070,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-13.9,-16.7,80,101500,243,1345,202,128,118,107,13589,5586,11412,2703,70,8.2,10,6,11.3,2130,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-13.9,-16.7,80,101500,351,1345,205,189,144,152,20259,9952,16373,4181,70,9.3,10,7,11.3,1830,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-13.3,-16.1,80,101500,457,1345,210,178,77,152,19675,5499,16878,5176,70,9.3,10,8,11.3,1830,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-12.2,-15.6,77,101500,556,1345,219,335,141,277,36072,13949,30004,7851,70,10.8,10,9,11.3,1830,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-12.2,-15.6,77,101500,640,1345,214,292,86,251,32295,7863,27914,8688,70,9.3,10,8,6.4,1830,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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.7,-15.0,77,101400,704,1345,216,384,75,345,41894,7899,37878,10782,70,10.8,10,8,6.4,2440,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-14.4,80,101400,742,1345,228,274,2,273,30705,185,30767,10217,80,11.3,10,10,6.4,2440,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-11.7,-15.0,77,101400,753,1345,227,366,11,360,40177,1160,39772,11752,70,10.8,10,10,6.4,2440,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-11.1,-14.4,77,101400,737,1345,230,274,4,272,30683,369,30631,10138,70,9.8,10,10,6.4,1680,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-11.1,-14.4,77,101400,693,1345,230,252,2,251,28167,180,28209,9253,60,9.8,10,10,6.4,1680,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.6,-13.9,77,101400,625,1345,232,243,8,239,26896,715,26596,8316,70,10.3,10,10,6.4,1680,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-11.1,-13.9,80,101400,538,1345,231,187,0,187,18889,0,19041,6510,80,12.4,10,10,6.4,1680,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-11.1,-13.9,80,101300,437,1345,231,156,2,156,17109,144,17189,5078,70,9.3,10,10,6.4,1680,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-11.1,-14.4,77,101300,330,1345,224,125,65,109,13682,3467,11980,3461,80,9.8,10,9,6.4,1680,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-11.7,-14.4,80,101400,224,1345,228,43,4,42,4891,50,4789,1521,80,10.3,10,10,6.4,1680,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-12.2,-14.4,84,101400,128,1345,212,41,29,39,4450,0,4247,1137,80,10.3,9,7,6.4,2440,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-12.2,-15.0,80,101400,48,1345,215,7,4,7,812,0,813,249,80,10.3,9,8,8.0,2440,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-12.8,-15.0,84,101400,2,415,217,0,0,0,0,0,0,0,80,9.8,10,9,9.7,2440,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-12.8,-15.0,84,101400,0,0,213,0,0,0,0,0,0,0,70,8.8,10,8,9.7,2440,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-13.3,-15.6,84,101400,0,0,211,0,0,0,0,0,0,0,70,10.3,10,8,9.7,2440,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-13.9,-16.1,84,101400,0,0,213,0,0,0,0,0,0,0,80,9.8,10,9,9.7,2440,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-13.9,-16.7,80,101400,8,728,208,1,0,1,0,0,0,0,80,8.2,10,8,11.3,2440,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-14.4,-16.7,83,101400,65,1344,197,11,3,11,1260,0,1261,384,70,9.8,7,4,11.3,4270,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-15.0,-17.2,83,101400,150,1344,195,46,16,44,5024,2,4821,1333,70,8.2,7,4,11.3,4270,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-15.6,-17.8,83,101400,250,1344,191,112,111,92,12080,4538,9965,2633,70,7.7,8,3,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-15.0,-17.8,80,101400,357,1344,198,163,142,126,17790,8650,13812,3941,70,9.8,9,6,11.3,4270,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-14.4,-17.2,80,101500,463,1344,203,233,168,176,25487,13044,19346,5639,80,10.3,9,7,11.3,4270,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-13.9,-16.7,80,101500,562,1344,197,394,402,228,43194,35668,25130,7444,70,9.3,8,3,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-12.8,-16.1,76,101500,646,1344,193,440,571,168,50346,43665,19309,6836,80,8.8,1,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-12.2,-15.6,77,101500,709,1344,195,506,616,183,58211,48485,21150,7659,80,10.3,1,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-11.1,-15.0,73,101500,748,1344,205,538,532,243,60933,46603,27669,9588,70,9.8,3,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.0,-13.9,74,101500,759,1344,207,553,607,212,63447,50091,24444,8840,70,9.8,3,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.0,-13.3,77,101500,742,1344,204,538,632,191,62046,50205,22132,8102,70,9.3,1,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.0,-13.3,77,101500,698,1344,204,491,616,173,56610,47362,20036,7290,80,10.3,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.0,-13.3,77,101500,630,1344,204,425,574,158,48705,42675,18185,6455,80,10.3,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.0,-13.9,74,101600,543,1344,203,344,514,138,39122,35774,15759,5405,80,9.8,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.6,-14.4,73,101600,443,1344,201,254,427,115,28613,26162,13005,4264,80,9.3,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-11.1,-14.4,77,101600,336,1344,199,167,314,90,18609,14811,10065,3123,80,7.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-12.2,-15.6,77,101600,231,1344,195,94,181,64,10359,4505,7077,2064,80,7.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-13.3,-16.1,80,101700,134,1344,191,41,57,36,4500,0,3963,1113,80,7.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-13.9,-16.7,80,101700,54,1344,189,7,3,7,818,0,819,253,70,7.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-15.0,-17.2,83,101700,6,571,186,1,0,1,0,0,0,0,70,7.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-15.6,-17.8,83,101800,0,0,183,0,0,0,0,0,0,0,70,6.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-18.3,83,101800,0,0,182,0,0,0,0,0,0,0,80,6.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-16.7,-18.9,83,101800,0,0,180,0,0,0,0,0,0,0,80,7.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-17.2,-19.4,83,101900,11,907,178,1,4,1,0,0,0,0,70,6.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-17.2,-19.4,83,101900,71,1344,178,17,47,15,1912,0,1690,499,70,5.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-17.2,-20.0,79,101900,156,1344,177,61,186,40,6744,0,4435,1283,70,5.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-16.7,-19.4,79,102000,256,1344,179,126,351,60,14122,9535,6745,2088,70,5.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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.1,-18.9,79,102000,363,1344,181,209,488,79,23752,22606,9007,2965,80,5.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-15.0,-18.3,76,102000,469,1344,185,300,589,97,34509,34342,11196,3879,80,6.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-14.4,-17.2,80,102000,568,1344,187,390,661,113,45324,43127,13179,4758,80,6.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-13.9,-16.7,80,102100,651,1344,189,469,711,127,54932,49236,14931,5555,80,7.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-12.8,-16.1,76,102100,714,1344,193,530,744,137,62447,53031,16205,6157,80,7.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-12.2,-16.1,73,102100,753,1344,195,568,762,143,67164,55059,16977,6528,80,7.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-11.7,-15.0,77,102100,764,1344,197,577,764,145,68283,55341,17229,6646,90,7.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.6,-14.4,73,102100,747,1344,201,561,757,142,66296,54453,16848,6469,90,7.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.6,-14.4,73,102200,703,1344,201,519,737,135,61088,52138,15952,6042,80,7.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.6,-13.9,77,102200,636,1344,201,454,702,125,53066,48040,14666,5425,90,8.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.6,-14.4,73,102200,549,1344,201,371,647,110,43020,41314,12800,4587,80,7.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-11.1,-14.4,77,102200,448,1344,199,280,570,93,32135,31829,10709,3679,80,6.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-11.7,-15.0,77,102200,342,1344,197,190,462,75,21532,19702,8526,2776,90,6.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-12.2,-15.6,77,102200,237,1344,195,110,318,56,12289,6942,6275,1917,90,6.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-13.3,-16.1,80,102300,140,1344,191,50,152,35,5524,0,3878,1115,90,6.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-14.4,-16.7,83,102300,60,1344,188,10,30,9,1154,0,1039,318,80,6.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-15.6,-17.2,87,102300,7,750,184,1,2,1,0,0,0,0,80,6.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-16.1,-18.3,83,102400,0,0,182,0,0,0,0,0,0,0,80,5.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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.7,-18.3,87,102400,0,0,180,0,0,0,0,0,0,0,80,5.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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.7,-18.9,83,102400,0,0,180,0,0,0,0,0,0,0,80,5.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-17.2,-18.9,87,102400,16,1086,178,2,4,1,0,0,0,0,80,5.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-17.8,-19.4,87,102300,78,1343,176,20,47,17,2240,0,1908,559,80,5.7,1,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-17.2,-19.4,83,102300,163,1343,178,66,176,45,7252,603,4960,1407,80,5.2,2,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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.7,-18.9,83,102300,263,1343,180,132,333,68,14680,10505,7587,2299,80,5.7,2,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-15.6,-18.3,80,102300,369,1343,187,211,376,109,23401,21135,12137,3722,90,5.2,5,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-14.4,-17.2,80,102300,475,1343,187,318,533,132,35734,35720,14894,4870,90,5.2,5,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-13.3,-16.1,80,102300,573,1343,191,410,617,148,46692,44633,16926,5853,90,5.7,4,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-12.2,-15.0,80,102200,657,1343,196,483,671,158,55662,50051,18287,6603,90,6.2,3,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-15.0,73,102200,720,1343,199,535,737,142,62920,53053,16767,6361,90,7.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.6,-13.9,77,102200,758,1343,201,573,756,149,67594,55139,17649,6771,100,7.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.0,-13.3,77,102100,769,1343,204,584,762,150,68986,55617,17792,6854,90,8.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-9.4,-12.8,77,102100,752,1343,206,569,757,148,67081,55009,17519,6711,100,8.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-9.4,-12.8,77,102000,708,1343,206,538,722,159,62573,53782,18572,6899,100,7.7,2,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-9.4,-12.2,81,102000,641,1343,227,365,191,274,40079,18172,30261,9067,100,8.2,10,8,11.3,430,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.6,-13.3,80,102000,554,1343,233,206,5,204,22749,417,22643,6984,130,9.8,10,10,11.3,430,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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.1,-13.3,84,101900,454,1343,231,136,2,135,15166,133,15118,4807,110,7.7,10,10,9.7,430,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-11.1,-13.3,84,101800,348,1343,231,91,5,89,10188,238,9999,3158,110,9.3,10,10,9.7,430,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-11.7,-13.3,88,101800,243,1343,229,78,2,77,8507,65,8429,2363,110,7.2,10,10,9.7,370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-11.7,-13.9,84,101800,146,1343,228,30,2,30,3369,0,3377,1019,120,8.2,10,10,11.3,340,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-12.8,-14.4,88,101700,66,1343,218,12,6,12,1361,0,1364,409,120,7.2,10,9,11.3,370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-12.2,-14.4,84,101700,11,929,212,1,0,1,0,0,0,0,110,7.7,9,7,11.3,1980,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-12.2,-14.4,84,101600,0,0,215,0,0,0,0,0,0,0,110,8.2,10,8,11.3,1520,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-12.2,-13.9,88,101600,0,0,216,0,0,0,0,0,0,0,120,10.3,10,8,11.3,1520,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-12.8,-14.4,88,101600,0,0,224,0,0,0,0,0,0,0,120,8.2,10,10,3.2,1370,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-13.3,-15.6,84,101500,21,1264,221,1,1,1,130,0,130,40,120,8.2,10,10,6.4,1370,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-13.3,-15.0,87,101500,84,1342,208,29,33,27,3143,0,2935,773,110,7.7,10,7,11.3,980,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-12.8,-14.4,88,101400,169,1342,213,38,10,37,4257,0,4155,1256,110,8.8,10,8,6.4,180,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-11.7,-13.3,88,101400,269,1342,218,107,79,92,11626,3326,10037,2776,100,7.7,10,8,8.0,340,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.6,-12.8,84,101400,375,1342,233,137,10,134,14956,637,14694,4218,110,7.2,10,10,11.3,430,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.6,-12.2,88,101400,481,1342,234,166,10,163,18352,741,18104,5584,100,8.8,10,10,11.3,610,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-9.4,-11.7,84,101300,579,1342,239,241,10,237,26429,897,26133,7782,110,8.8,10,10,11.3,5490,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-9.4,-11.7,84,101300,662,1342,239,231,11,225,25894,945,25353,8420,100,7.7,10,10,11.3,3660,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-8.9,-11.1,84,101300,725,1342,241,258,7,254,28987,625,28694,9651,110,7.2,10,10,11.3,3660,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.8,-11.1,77,101300,763,1342,238,419,70,379,45877,7512,41769,12138,110,6.7,10,9,11.3,3660,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.2,-10.0,81,101300,774,1342,241,344,75,301,38464,7126,33855,11154,120,6.7,10,9,11.3,3660,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.2,-10.0,81,101300,757,1342,241,338,72,297,37717,6837,33337,10881,120,6.2,10,9,11.3,3660,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-9.4,81,101200,713,1342,235,405,249,273,45127,23017,30592,9927,110,4.6,10,7,11.3,3660,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.2,-10.0,81,101200,646,1342,233,316,55,289,34575,5354,31808,9336,130,3.6,10,7,11.3,3660,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.2,-9.4,84,101200,559,1342,230,345,284,228,37778,24957,25101,7426,160,3.1,10,6,11.3,3660,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.2,-10.0,81,101200,459,1342,230,246,191,181,26801,14907,19819,5676,190,1.5,10,6,11.3,3050,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.2,-9.4,84,101200,353,1342,228,138,78,118,15114,4458,12978,3785,170,2.1,10,5,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.8,-10.0,84,101200,248,1342,220,131,368,65,14521,10012,7229,2167,220,2.1,5,2,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-8.9,-10.6,88,101200,152,1342,213,59,186,39,6506,0,4313,1240,190,2.1,3,1,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-9.4,-10.0,96,101300,72,1342,240,18,0,18,1744,0,1756,562,230,2.6,10,10,0.8,120,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-8.3,-8.9,96,101300,15,1130,245,2,0,2,0,0,0,0,220,3.6,10,10,0.4,120,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.2,-8.3,92,101300,0,0,250,0,0,0,0,0,0,0,240,2.6,10,10,0.6,120,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.8,-8.3,96,101300,0,0,248,0,0,0,0,0,0,0,240,2.1,10,10,1.6,90,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.8,-8.3,96,101400,0,123,248,0,0,0,0,0,0,0,200,4.1,10,10,0.8,120,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.6,-11.7,92,101400,27,1342,213,2,13,2,250,0,249,77,200,4.1,6,4,11.3,3050,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-11.7,-12.8,92,101400,90,1342,218,21,7,20,2346,0,2239,656,170,3.6,10,8,11.3,3050,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.0,-11.1,92,101400,175,1342,237,44,9,42,4893,27,4683,1392,190,4.6,10,10,11.3,610,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.8,-8.3,96,101400,275,1342,241,100,38,92,10885,1594,10054,2818,220,3.6,10,9,11.3,430,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-7.8,92,101400,381,1342,240,243,224,181,25888,17355,19385,4757,190,4.6,10,8,11.3,610,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.6,-6.7,92,101500,487,1342,245,227,82,198,24708,6694,21664,6199,170,4.1,10,8,11.3,980,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.9,-5.6,88,101500,584,1342,252,349,117,299,37543,11793,32362,8473,190,6.2,10,8,11.3,980,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.3,-5.6,85,101500,667,1342,255,343,151,269,37895,13953,29890,9328,170,5.7,10,8,11.3,980,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-2.2,-4.4,85,101500,730,1342,260,513,382,307,56745,36831,34163,10725,190,7.2,10,8,8.0,980,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.7,-3.9,85,101500,768,1342,258,488,210,369,53542,21900,40749,12124,190,6.7,10,7,11.3,980,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.1,-3.9,82,101600,779,1342,270,420,75,377,46093,7872,41646,12392,200,7.7,10,9,11.3,980,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-0.6,-3.3,82,101600,762,1342,273,419,137,341,46217,13726,37850,11678,190,7.2,10,9,9.7,980,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-0.6,-3.3,82,101600,718,1342,260,524,439,290,58094,41199,32341,10299,190,6.2,9,6,11.3,1070,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-0.6,-2.8,85,101600,651,1342,248,455,655,139,52826,45344,16203,5969,190,6.7,3,1,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-0.6,-2.8,85,101600,564,1342,248,373,634,109,43367,39417,12718,4616,170,5.7,2,1,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.1,-3.9,82,101500,465,1342,241,303,608,95,34814,33792,10952,3803,160,6.2,2,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-2.2,-4.4,85,101500,359,1342,245,199,312,117,21831,17543,12890,3809,150,6.7,6,2,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.3,-5.0,88,101500,254,1342,242,114,169,83,12401,5970,9064,2533,170,4.6,7,3,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-5.6,92,101600,158,1342,238,63,115,50,6823,466,5434,1460,170,5.7,9,3,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-6.7,96,101600,78,1342,231,20,30,19,2210,0,2105,598,170,3.6,9,3,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.8,-8.9,92,101600,20,1342,218,3,11,2,0,0,0,0,150,4.6,4,1,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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.9,-10.0,92,101600,0,11,214,0,0,0,0,0,0,0,150,5.7,3,1,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-9.4,-10.6,92,101600,0,0,208,0,0,0,0,0,0,0,160,4.1,2,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.0,-11.1,92,101600,1,346,205,0,0,0,0,0,0,0,160,4.1,0,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.0,-11.1,92,101600,32,1341,205,6,89,3,655,4078,522,101,160,4.1,0,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-11.1,-12.2,92,101500,96,1341,201,35,220,20,3930,0,2250,669,150,3.6,0,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-11.1,-12.2,92,101500,181,1341,201,85,391,34,9648,0,3868,1209,150,4.1,0,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-11.1,-12.2,92,101500,281,1341,201,156,541,45,18050,12852,5218,1738,150,4.1,0,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.6,-11.7,92,101500,387,1341,203,245,633,65,28462,27502,7571,2616,130,3.6,2,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-9.4,-11.1,88,101500,492,1341,207,339,699,85,39604,39013,9960,3568,120,3.1,3,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-8.3,-10.6,84,101500,590,1341,211,426,767,92,50521,46724,10944,4092,130,5.2,2,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.2,-9.4,84,101500,672,1341,216,507,793,112,60181,52347,13341,5088,130,4.1,3,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-8.3,88,101400,735,1341,222,538,736,136,63626,51647,16147,6206,120,3.6,4,1,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.0,-7.8,81,101400,773,1341,229,571,767,131,68172,53199,15700,6148,110,5.2,4,1,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.9,-5.6,88,101300,784,1341,230,620,827,139,73799,57997,16611,6498,110,5.7,4,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-2.8,-4.4,89,101300,767,1341,235,604,822,136,71790,57088,16228,6322,120,5.7,4,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.7,-3.3,89,101300,723,1341,239,551,807,119,65646,53629,14229,5518,120,6.2,3,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-2.2,-4.4,85,101200,656,1341,237,486,794,101,57924,49986,12077,4618,110,6.2,2,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-2.8,-3.9,92,101200,570,1341,235,405,751,89,47905,43948,10559,3926,120,7.7,2,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.3,-4.4,92,101200,470,1341,237,289,560,95,33255,31340,10968,3823,110,8.2,4,1,8.0,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.9,-5.0,92,101100,364,1341,240,231,441,113,25463,24427,12507,3773,120,9.3,8,3,4.8,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.3,-3.9,96,101100,260,1341,247,107,41,99,11492,1755,10679,2790,120,8.2,8,5,1.6,120,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.9,-4.4,96,101100,164,1341,247,65,118,52,7039,728,5651,1522,120,8.8,10,6,1.6,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-5.0,96,101000,83,1341,244,21,21,20,2323,0,2218,634,120,8.2,10,6,1.2,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.0,-6.7,88,101100,26,1341,260,1,0,1,96,0,97,40,120,9.8,10,10,1.6,150,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.6,-6.7,92,101000,0,235,257,0,0,0,0,0,0,0,120,9.3,10,10,1.6,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-7.2,92,101100,0,0,231,0,0,0,0,0,0,0,120,7.2,5,3,2.4,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-7.8,92,101000,3,592,226,0,0,0,0,0,0,0,120,6.2,8,2,1.6,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.2,-7.8,96,101000,38,1341,250,1,1,1,133,0,133,40,120,6.2,10,10,0.4,90,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-7.2,96,101000,102,1341,237,24,8,24,2666,0,2672,777,120,6.7,8,7,6.4,2440,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.2,-8.3,92,101000,187,1341,234,60,96,47,6650,773,5224,1544,130,6.2,8,7,11.3,1980,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-7.2,96,101000,286,1341,237,116,111,93,12670,4798,10198,2914,130,6.2,7,7,11.3,1980,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-7.8,92,101000,392,1341,232,210,301,124,23180,18279,13745,4178,120,5.2,7,5,11.3,1980,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.0,-6.1,92,101000,497,1341,244,249,155,192,27248,12411,21118,6237,120,5.2,9,7,11.3,1980,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-6.1,88,101000,595,1341,246,251,180,172,28343,13649,19512,6636,120,5.7,9,7,11.3,1980,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.9,-6.1,85,101000,677,1341,241,488,556,209,55167,45590,23746,8180,140,5.7,7,4,11.3,5490,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.3,-5.6,85,101000,740,1341,236,558,735,155,65356,53394,18231,6916,120,6.2,7,1,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-2.2,-4.4,85,101000,778,1341,237,615,844,127,73624,57487,15261,6007,120,5.7,4,0,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.7,-4.4,82,101100,789,1341,238,631,819,152,74641,58777,18055,7013,120,5.7,6,0,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.7,-3.9,85,101000,772,1341,243,589,740,165,69020,54510,19420,7414,120,6.7,8,1,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.1,-3.9,82,101000,728,1341,241,514,736,116,61422,48685,13911,5416,120,6.2,4,0,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.7,-3.9,85,101000,661,1341,243,475,739,113,56176,48050,13411,5090,120,5.2,5,1,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-2.2,-3.9,89,101000,575,1341,256,230,172,157,26040,12440,17854,6114,110,5.2,9,7,11.3,1830,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-2.8,-4.4,89,101000,475,1341,263,159,50,141,17745,3370,15805,5088,110,5.7,10,9,11.3,2440,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.3,-4.4,92,101100,370,1341,261,178,23,171,18977,1695,18325,4553,120,5.7,10,9,11.3,2440,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.3,-5.0,88,101100,265,1341,251,104,78,89,11300,3052,9709,2703,120,4.6,10,7,11.3,2440,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.9,-5.0,92,101100,169,1341,258,42,15,40,4665,0,4455,1322,90,4.6,10,9,11.3,2130,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.9,-5.6,88,101100,89,1341,258,20,9,19,2234,0,2127,625,120,5.7,10,9,11.3,2130,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-6.1,88,101100,31,1341,255,2,10,2,250,0,250,78,80,6.2,10,9,11.3,2130,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.6,-6.7,92,101100,2,525,241,0,0,0,0,0,0,0,150,3.6,7,7,11.3,2130,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-7.8,92,101100,0,0,236,0,0,0,0,0,0,0,110,5.2,7,7,11.3,2130,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.8,-8.3,96,101200,6,860,226,0,0,0,0,0,0,0,150,3.1,5,4,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.8,-8.3,96,101200,44,1340,224,3,3,3,371,0,371,116,110,3.6,4,3,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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.3,-8.9,96,101100,108,1340,223,23,12,22,2585,0,2478,743,100,4.1,5,4,0.8,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.8,-8.3,96,101200,193,1340,229,53,29,49,5871,299,5444,1609,100,3.6,9,6,11.3,2130,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.2,-8.3,92,101200,292,1340,228,123,88,104,13340,4246,11327,3124,130,3.1,6,4,11.3,2130,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.8,-9.4,88,101200,398,1340,225,182,193,126,20101,11931,13975,4256,110,4.1,5,4,16.1,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.2,-8.9,88,101200,503,1340,231,256,238,167,28393,17807,18609,5847,110,3.1,7,6,16.1,2740,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.6,-7.8,85,101200,600,1340,230,386,468,178,43528,36172,20167,6825,110,3.6,3,2,16.1,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.0,-7.8,81,101300,682,1340,224,478,589,179,54786,45456,20611,7394,120,4.1,3,0,16.1,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.3,-5.6,85,101300,745,1340,246,440,202,328,48562,20070,36425,11259,120,4.1,9,5,11.3,6100,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.7,-3.9,85,101300,782,1340,258,471,229,338,52206,22675,37698,11934,120,2.6,10,7,11.3,6100,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.7,-4.4,82,101300,793,1340,268,271,52,240,30950,4394,27556,9910,120,4.1,10,9,11.3,6100,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.1,-3.3,85,101300,776,1340,261,338,65,300,37786,6077,33737,11178,120,3.6,10,7,16.1,6100,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.1,-3.3,85,101400,733,1340,265,375,50,348,41073,5123,38359,11343,110,3.6,10,8,16.1,6100,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-0.6,-3.3,82,101400,666,1340,256,398,320,240,44364,27809,26897,8788,100,3.1,7,4,16.1,6100,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.1,-3.3,85,101400,580,1340,252,364,401,192,40582,31752,21512,6995,110,3.6,5,3,11.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.7,-3.9,85,101400,480,1340,258,261,217,184,28529,16868,20214,5944,110,4.1,10,7,11.3,2130,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.7,-3.3,89,101400,375,1340,269,98,0,98,9745,0,9819,3510,110,3.6,10,9,11.3,2440,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-2.2,-3.9,89,101400,271,1340,256,72,16,69,8006,494,7698,2355,90,3.6,10,7,11.3,2440,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-2.8,-3.9,92,101400,175,1340,245,64,74,55,6943,732,5988,1631,90,4.1,5,3,11.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-5.0,96,101400,95,1340,238,27,9,26,2953,0,2852,787,100,4.1,7,3,11.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.0,-6.1,92,101400,36,1340,237,2,0,2,193,0,194,78,100,5.2,6,4,11.3,2440,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.6,-6.1,96,101400,4,859,233,0,1,0,0,0,0,0,100,4.1,5,3,11.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-6.7,96,101400,0,0,231,0,0,0,0,0,0,0,80,4.6,5,3,11.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-6.7,96,101400,10,1194,231,0,4,0,0,0,0,0,80,4.1,5,3,11.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-7.8,92,101400,49,1339,228,8,16,7,933,0,817,253,70,5.2,8,3,11.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.0,-5.6,96,101500,114,1339,261,22,1,22,2482,0,2487,754,80,4.1,10,10,0.6,120,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.0,-5.6,96,101500,199,1339,261,51,4,50,5653,46,5559,1653,110,3.1,10,10,1.2,120,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-4.4,100,101500,298,1339,264,74,4,73,8276,144,8192,2565,60,4.1,10,10,0.6,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-5.0,96,101400,403,1339,264,101,6,99,11387,321,11202,3672,70,5.2,10,10,0.6,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-5.0,96,101400,508,1339,264,147,3,146,16495,208,16454,5421,70,4.1,10,10,0.6,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.9,-4.4,96,101400,605,1339,266,130,6,127,15069,402,14778,5378,70,5.2,10,10,0.6,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.9,-4.4,96,101400,687,1339,266,148,1,148,17228,71,17299,6440,70,6.2,10,10,0.6,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.9,-3.9,100,101400,749,1339,267,273,2,272,30617,180,30679,10308,70,6.2,10,10,3.2,150,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.9,-4.4,96,101300,787,1339,266,367,3,365,40461,309,40501,12398,60,6.2,10,10,1.6,120,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.9,-5.0,92,101400,798,1339,266,330,0,330,34038,0,34339,12007,60,6.7,10,10,1.6,150,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-5.0,96,101300,781,1339,264,323,1,323,35936,97,36156,11668,70,6.7,10,10,4.8,150,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.9,-5.0,92,101300,737,1339,266,302,1,302,33513,95,33713,10757,50,6.7,10,10,4.8,150,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-5.6,92,101300,670,1339,263,293,1,293,32172,96,32364,9749,80,6.7,10,10,4.8,150,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-5.6,92,101200,584,1339,263,229,1,229,25202,87,25338,7742,90,5.7,10,10,11.3,150,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-5.6,92,101200,485,1339,263,177,1,177,19443,76,19538,5883,60,4.6,10,10,11.3,150,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.3,-5.0,88,101200,380,1339,244,205,283,126,22506,17053,13893,4129,60,4.6,8,4,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.9,-5.6,88,101200,276,1339,230,143,438,55,16238,11422,6262,2021,70,5.2,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.0,-6.7,88,101200,181,1339,225,78,279,42,8685,852,4690,1404,60,5.2,1,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-7.8,92,101200,100,1339,219,32,122,24,3542,0,2663,765,70,5.7,2,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.8,-9.4,88,101200,42,1339,214,5,35,4,602,0,481,151,70,5.7,2,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-8.3,-10.0,88,101200,9,1339,212,1,3,1,0,0,0,0,70,5.7,1,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-9.4,-10.6,92,101200,0,469,208,0,0,0,0,0,0,0,70,6.2,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-9.4,-10.6,92,101200,15,1339,208,1,5,1,0,0,0,0,70,6.2,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-9.4,-10.6,92,101200,55,1339,208,10,29,9,1151,0,1037,317,70,7.2,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.0,-11.7,88,101200,119,1339,205,39,123,29,4324,0,3223,934,60,6.2,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-9.4,-11.1,88,101200,204,1339,207,88,272,48,9823,3324,5373,1627,70,6.2,0,0,16.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.8,-10.0,84,101200,303,1339,213,157,417,64,17799,14235,7277,2354,70,7.7,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-9.4,81,101200,408,1339,217,241,533,81,27675,26429,9331,3185,70,8.8,0,0,16.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.6,-8.9,78,101200,513,1339,221,332,622,97,38569,36824,11306,4041,70,8.8,0,0,16.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.0,-8.9,75,101200,610,1339,223,421,684,111,49409,44332,13073,4850,70,10.3,0,0,16.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-7.8,78,101300,692,1339,226,498,729,123,58901,49433,14602,5570,70,10.3,0,0,16.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.9,-7.2,78,101300,754,1339,228,556,757,132,66134,52530,15761,6127,80,10.3,0,0,16.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.3,-6.7,78,101300,791,1339,231,592,773,138,70628,54248,16529,6491,70,9.3,0,0,16.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-2.8,-6.1,78,101300,802,1339,233,603,778,139,72024,54604,16668,6568,80,10.3,0,0,16.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-2.2,-5.6,78,101400,785,1339,236,587,771,137,69985,53840,16398,6431,80,5.2,0,0,16.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-2.2,-5.0,82,101400,742,1339,236,545,752,131,64705,51734,15612,6048,80,8.8,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-2.2,-5.0,82,101400,675,1339,236,481,719,121,56759,48032,14331,5438,70,9.8,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-2.2,-5.6,78,101400,589,1339,236,402,672,108,47059,42488,12686,4674,70,9.3,0,0,16.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-2.8,-5.6,81,101500,490,1339,234,312,603,93,36156,34213,10812,3833,70,7.7,0,0,16.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.3,-6.7,78,101500,385,1339,231,221,509,77,25306,23498,8844,2988,70,7.7,0,0,16.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-7.2,81,101500,281,1339,227,140,385,61,15800,11405,6905,2200,60,7.2,0,0,16.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.6,-7.8,85,101600,186,1339,222,75,236,44,8345,1323,4910,1468,50,7.2,0,0,16.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-8.9,84,101600,106,1339,218,31,95,24,3447,0,2675,780,60,7.2,0,0,16.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.2,-10.0,81,101700,47,1339,215,6,20,5,714,0,595,186,50,6.2,0,0,16.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.2,-9.4,84,101700,14,1338,216,1,2,1,0,0,0,0,50,5.7,0,0,16.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.8,-9.4,88,101700,5,1338,214,0,0,0,0,0,0,0,50,5.7,0,0,16.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.8,-9.4,88,101800,20,1338,214,1,2,1,130,0,130,40,50,5.7,1,0,16.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-8.3,-9.4,92,101800,60,1338,212,11,17,10,1263,0,1150,351,50,6.2,0,0,16.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.8,-9.4,88,101800,125,1338,218,36,69,29,4005,0,3235,950,40,6.2,3,1,16.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-8.3,88,101800,210,1338,218,91,194,61,9980,3855,6713,1922,50,5.7,4,0,16.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.2,-8.9,88,101900,308,1338,220,142,276,79,15852,11100,8849,2754,50,5.7,3,1,16.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.8,-10.0,84,101900,413,1338,217,225,379,109,25265,21924,12286,3977,60,6.2,5,1,16.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.8,-8.3,96,102000,518,1338,248,125,7,122,14275,454,13986,4839,70,6.7,10,10,1.6,150,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.2,-7.8,96,102000,614,1338,250,139,16,132,16106,1098,15355,5585,90,5.7,10,10,1.6,150,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.2,-7.8,96,102100,696,1338,250,194,9,189,22203,709,21733,7781,100,6.7,10,10,1.2,120,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.2,-8.3,92,102100,758,1338,250,235,1,235,26739,85,26879,9506,80,6.2,10,10,3.2,150,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-7.8,92,102200,796,1338,252,263,2,262,29863,177,29914,10524,80,5.7,10,10,3.2,150,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-7.2,92,102200,806,1338,255,289,2,288,32624,183,32699,11256,70,5.2,10,10,3.2,150,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.6,-7.2,88,102200,789,1338,257,278,3,276,31396,271,31347,10810,70,5.7,10,10,4.8,150,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.6,-7.8,85,102200,746,1338,244,374,119,308,41532,11492,34408,10981,70,5.7,10,8,9.7,150,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-7.8,88,102300,679,1338,248,257,45,235,28806,3899,26480,8825,50,6.2,10,9,9.7,150,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-7.8,88,102300,594,1338,255,171,16,164,19391,1193,18681,6429,50,7.7,10,10,11.3,150,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-8.3,88,102300,495,1338,252,118,6,116,13458,377,13280,4560,60,7.2,10,10,11.3,150,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.2,-8.3,92,102300,390,1338,243,105,26,98,11812,1380,11065,3587,50,5.2,10,9,11.3,120,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.8,-8.9,92,102400,287,1338,247,55,1,55,6273,28,6290,2051,50,6.7,10,10,11.3,120,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.8,-9.4,88,102400,191,1338,247,33,2,33,3770,1,3778,1199,60,5.7,10,10,11.3,210,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-8.3,-10.0,88,102400,111,1338,244,23,1,23,2578,0,2584,769,70,6.2,10,10,11.3,180,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-8.9,-10.0,92,102400,52,1338,242,6,0,6,580,0,584,221,50,6.2,10,10,11.3,180,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-8.9,-10.0,92,102400,19,1337,242,0,0,0,0,0,0,0,70,5.7,10,10,11.3,180,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-8.9,-10.0,92,102400,10,1337,242,0,0,0,0,0,0,0,110,5.7,10,10,11.3,210,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-9.4,-10.6,92,102400,25,1337,240,1,0,1,97,0,97,40,90,5.7,10,10,11.3,210,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.6,-11.7,92,102500,65,1337,234,10,0,10,969,0,975,357,70,5.2,10,10,6.4,270,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.6,-12.2,88,102500,130,1337,234,38,0,38,3705,0,3730,1150,80,4.6,10,10,6.4,310,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.6,-12.2,88,102500,215,1337,234,65,1,64,7122,23,7037,2004,70,4.6,10,10,6.4,310,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.6,-12.2,88,102500,313,1337,234,102,1,101,11183,49,11117,3233,70,4.6,10,10,6.4,310,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.0,-12.2,84,102500,418,1337,236,142,0,142,14199,0,14308,4713,80,5.7,10,10,8.0,400,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-9.4,-12.2,81,102500,522,1337,238,192,1,192,21165,81,21271,6498,90,5.2,10,10,8.0,430,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-8.9,-12.2,77,102600,619,1337,240,245,1,245,27046,90,27195,8398,60,5.7,10,10,9.7,430,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-8.9,-11.7,81,102600,701,1337,240,265,0,265,27144,0,27376,9664,60,5.7,10,10,11.3,460,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-8.3,-11.1,81,102600,762,1337,243,333,2,332,36882,200,36999,11588,70,6.2,10,10,11.3,370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-8.3,-11.1,81,102600,800,1337,243,360,1,359,39891,103,40034,12525,70,6.2,10,10,11.3,400,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-8.3,-11.7,77,102600,810,1337,243,322,2,321,36082,194,36188,12011,80,5.2,10,10,11.3,370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-8.3,-11.1,81,102600,794,1337,243,333,1,332,37096,99,37213,12007,80,5.7,10,10,11.3,370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-8.3,-10.6,84,102600,750,1337,244,289,1,288,32312,94,32387,10667,70,6.7,10,10,11.3,310,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.8,-10.0,84,102600,684,1337,246,278,0,278,28429,0,28670,9708,80,6.7,10,10,11.3,310,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.8,-10.0,84,102600,598,1337,246,227,1,227,25100,87,25234,7868,80,5.7,10,10,11.3,310,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-8.3,-10.6,84,102700,500,1337,244,177,0,177,17819,0,17961,6022,90,6.2,10,10,11.3,310,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-9.4,-11.1,88,102700,395,1337,239,137,0,137,13669,0,13773,4440,80,6.2,10,10,11.3,270,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-9.4,-11.1,88,102700,292,1337,239,88,0,88,8701,0,8764,2856,70,6.7,10,10,11.3,240,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.0,-11.7,88,102700,197,1337,236,56,0,56,5491,0,5529,1759,90,6.2,10,10,11.3,210,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.6,-11.7,92,102700,116,1337,234,32,0,32,3115,0,3136,977,90,4.6,10,10,11.3,180,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-11.1,-12.8,88,102800,58,1337,232,11,0,11,1065,0,1072,372,70,4.6,10,10,11.3,180,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-11.1,-12.8,88,102800,23,1337,232,2,0,2,193,0,194,77,80,3.6,10,10,11.3,210,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-11.7,-12.8,92,102800,14,1337,229,2,0,2,0,0,0,0,110,4.6,10,10,11.3,180,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-11.7,-13.3,88,102800,30,1337,229,3,0,3,290,0,292,114,80,4.1,10,10,11.3,180,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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.2,-13.9,88,102800,70,1337,227,18,0,18,1746,0,1757,569,80,4.1,10,10,11.3,180,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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.8,-13.9,92,102800,135,1337,225,41,1,41,4467,0,4481,1224,70,4.1,10,10,11.3,150,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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.2,-13.3,92,102800,220,1337,227,72,1,71,7840,27,7760,2152,80,3.6,10,10,11.3,150,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-12.2,-13.9,88,102800,318,1337,227,114,1,114,12396,55,12450,3478,80,4.1,10,10,11.3,120,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-12.2,-13.3,92,102900,423,1337,227,156,1,156,17061,72,17141,4989,70,4.1,10,10,11.3,180,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-11.7,-13.3,88,102900,527,1337,229,205,1,205,22504,84,22621,6760,90,5.2,10,10,8.0,150,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-11.1,-12.8,88,102900,623,1337,232,247,0,247,25139,0,25348,8485,90,5.2,10,10,8.0,150,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.6,-12.2,88,102900,705,1337,215,409,337,233,46137,29138,26422,9015,90,4.6,10,5,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.0,-12.2,84,102900,766,1337,211,568,632,207,65430,51432,23962,8777,80,4.1,8,2,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-9.4,-11.7,84,102900,804,1337,207,622,893,87,65191,88796,12455,1900,80,5.2,0,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-9.4,-11.7,84,102900,814,1337,207,629,864,104,77033,57121,12778,5150,90,5.2,2,0,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-8.9,-11.7,81,102900,798,1337,212,592,773,132,71009,54171,15893,6279,80,5.2,4,1,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-8.3,-11.1,81,102900,754,1337,211,572,872,82,60056,86335,11875,1760,90,4.6,0,0,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.8,-10.6,81,102900,688,1337,213,509,846,76,62443,51088,9347,3669,90,5.2,0,0,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.8,-10.0,84,102900,603,1337,213,433,814,69,52651,46290,8410,3218,90,5.2,0,0,16.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.8,-10.0,84,102900,504,1337,213,346,766,60,41653,38785,7239,2681,90,5.7,0,0,16.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.8,-9.4,88,102900,400,1337,214,256,698,50,30465,27976,5962,2124,90,4.6,0,0,16.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.8,-10.0,84,102900,297,1337,213,171,603,40,20077,14467,4705,1603,110,3.6,0,0,16.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-8.9,-10.6,88,102900,202,1337,209,100,449,35,11430,1809,4009,1278,100,4.1,2,0,16.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-9.4,-11.1,88,102900,122,1337,207,49,299,24,5517,0,2708,817,80,5.2,2,0,16.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-11.7,88,102900,63,1337,205,17,186,10,1952,0,1150,351,90,5.2,1,0,16.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-11.1,-12.2,92,103000,28,1336,201,3,60,2,331,2723,354,74,90,5.2,1,0,16.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-12.2,-13.3,92,103000,19,1336,197,2,59,1,224,2527,182,40,100,5.2,1,0,16.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-12.8,-13.9,92,103000,35,1336,195,5,65,3,613,0,368,115,100,5.2,1,0,16.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-12.8,-14.4,88,103000,76,1336,194,23,125,16,2585,0,1802,533,100,4.6,2,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-12.8,-14.4,88,103000,140,1336,194,57,260,31,6377,0,3477,1039,100,5.2,1,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-12.8,-14.4,88,103000,225,1336,194,111,412,44,12603,5930,5008,1588,100,4.6,1,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-11.7,-13.3,88,103000,323,1336,198,185,542,56,21355,18534,6480,2178,100,5.2,1,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.6,-12.8,84,102900,428,1336,202,274,633,73,31910,31216,8525,2991,100,5.2,2,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.6,-12.2,88,102900,531,1336,203,367,707,88,43172,41333,10383,3792,100,5.2,2,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-9.4,-11.7,84,102900,627,1336,207,451,777,88,54113,47672,10589,4041,100,5.7,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.8,-10.6,81,102900,709,1336,217,507,763,104,60976,49821,12549,4889,100,6.2,2,1,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-10.0,78,102900,770,1336,221,550,700,147,65114,50463,17474,6766,70,5.2,2,1,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-8.9,81,102900,808,1336,220,587,786,113,71345,52635,13781,5523,80,6.2,1,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-8.3,75,102900,818,1336,230,584,750,126,70516,51528,15270,6099,70,5.2,2,1,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.9,-7.8,75,102900,802,1336,228,619,828,124,74620,56590,15003,5967,70,5.7,2,0,16.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.9,-7.2,78,102800,759,1336,228,578,813,118,69424,54702,14224,5596,70,5.7,2,0,16.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.9,-7.2,78,102800,692,1336,228,513,783,109,61262,51209,13061,5042,80,6.2,2,0,16.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.3,-6.7,78,102800,607,1336,231,435,747,98,51520,46282,11644,4373,60,5.2,2,0,16.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.3,-6.1,81,102800,509,1336,231,342,697,79,40330,38011,9342,3408,70,5.2,1,0,16.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.3,-6.1,81,102700,405,1336,231,252,623,66,29372,27744,7713,2697,60,5.7,1,0,16.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-6.7,85,102700,302,1336,227,168,505,56,19231,15319,6427,2122,70,4.6,2,0,16.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.6,-7.8,85,102700,207,1336,222,98,371,43,11039,3397,4856,1508,70,4.6,2,0,16.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-7.8,88,102700,127,1336,221,48,219,28,5354,0,3131,926,80,5.7,2,0,16.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-8.9,84,102700,68,1336,218,17,113,12,1933,0,1367,412,80,6.2,0,0,16.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-8.9,84,102700,33,1336,218,5,78,3,547,3642,523,102,80,6.2,0,0,16.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.8,-10.0,84,102700,24,1336,213,2,73,1,225,3237,182,40,100,6.2,0,0,16.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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.3,-10.0,88,102600,40,1336,212,7,84,5,830,0,593,185,110,6.2,0,0,16.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-8.9,-11.1,84,102600,81,1336,209,25,158,16,2823,0,1810,542,100,5.7,0,0,16.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-9.4,-11.7,84,102600,145,1336,207,61,296,30,6863,0,3383,1027,80,5.7,0,0,16.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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.3,-11.1,81,102600,230,1336,211,116,444,41,13269,5959,4701,1515,100,5.7,0,0,16.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.8,-11.1,77,102600,328,1336,212,190,570,52,22090,18876,6060,2062,110,5.2,0,0,16.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.2,-10.6,77,102600,432,1336,215,277,665,64,32625,31239,7557,2693,120,6.2,0,0,16.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-9.4,78,102600,536,1336,219,368,736,75,43858,40825,8962,3325,110,7.2,0,0,16.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.6,-9.4,74,102600,632,1336,221,454,785,85,54649,47562,10261,3932,120,7.2,0,0,16.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-8.9,72,102600,713,1336,225,530,820,94,64269,52053,11433,4489,110,7.2,0,0,16.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.3,-7.8,72,102600,774,1336,230,587,842,101,71543,54665,12349,4929,120,7.2,0,0,16.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-2.8,-6.7,75,102600,812,1336,233,619,849,104,75733,55462,12766,5145,120,7.7,0,0,16.1,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-2.2,-6.7,72,102500,822,1336,235,629,853,105,77035,55867,12902,5213,120,8.2,0,0,16.1,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.7,-5.6,75,102600,805,1336,237,613,848,104,74911,55200,12751,5131,110,7.2,0,0,16.1,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.1,-5.6,72,102500,762,1336,240,573,834,99,69779,53494,12094,4816,100,8.2,0,0,16.1,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.7,-6.1,72,102500,696,1336,237,512,810,92,61977,50580,11170,4367,100,7.7,0,0,16.1,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.7,-5.6,75,102500,611,1336,237,435,775,83,52220,45753,9992,3806,100,7.2,0,0,16.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-2.2,-5.0,82,102500,513,1336,236,347,722,72,41251,38246,8582,3161,100,7.7,0,0,16.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-2.8,-4.4,89,102500,409,1336,235,256,646,61,30053,27895,7178,2537,100,7.2,0,0,16.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.3,-5.6,85,102500,306,1336,232,172,544,50,19897,15516,5798,1950,100,6.7,0,0,16.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-6.7,85,102500,212,1336,227,102,399,40,11581,3315,4553,1441,100,7.2,1,0,16.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-7.8,88,102500,132,1336,221,51,241,29,5692,0,3244,963,100,6.7,2,0,16.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.2,-8.9,88,102500,73,1336,220,18,93,14,2032,0,1583,472,100,6.2,4,1,16.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-8.3,-9.4,92,102500,38,1335,219,3,7,2,381,0,253,79,100,6.7,5,2,16.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-8.9,-10.0,92,102500,29,1335,217,1,3,0,97,0,0,0,100,6.7,6,2,16.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-8.3,-9.4,92,102500,44,1335,245,8,0,8,773,0,778,280,100,7.2,10,10,0.6,180,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-8.3,-9.4,92,102500,85,1335,245,10,1,10,1177,0,1178,372,90,6.2,10,10,0.6,180,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-8.3,-9.4,92,102400,150,1335,238,35,7,34,3908,0,3806,1137,90,6.7,9,9,1.6,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-8.3,-8.9,96,102400,235,1335,245,74,53,65,8167,1361,7198,2122,100,5.7,10,10,1.6,180,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-8.3,-8.9,96,102400,332,1335,245,76,2,75,8592,83,8505,2756,110,6.7,10,10,1.6,180,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.8,-8.3,96,102300,436,1335,248,122,2,121,13670,124,13612,4402,100,7.2,10,10,4.8,120,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.2,-8.3,92,102300,540,1335,250,160,3,159,17983,220,17951,5961,100,8.2,10,10,4.8,120,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-7.8,92,102300,636,1335,252,173,6,170,19739,455,19485,6866,110,9.3,10,10,8.0,120,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-7.8,92,102300,717,1335,245,337,75,297,37339,7184,33102,10450,100,8.8,10,9,11.3,150,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-7.2,92,102300,778,1335,243,405,133,328,45022,13067,36687,11758,100,7.7,10,8,11.3,150,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.6,-6.7,92,102300,815,1335,236,515,423,257,58784,36724,29496,10581,110,8.2,5,5,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.0,-7.2,85,102200,826,1335,236,461,334,255,52755,28851,29341,10612,100,9.3,4,4,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.0,-7.2,85,102200,809,1335,234,572,590,216,66137,47939,25101,9340,100,9.8,4,3,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-6.7,85,102200,766,1335,235,526,594,186,61075,45964,21698,8122,110,8.8,3,2,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-7.2,81,102100,700,1335,231,476,587,170,54997,44300,19730,7240,120,8.8,4,1,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-6.7,85,102100,615,1335,232,401,579,135,46403,39982,15684,5696,120,9.3,3,1,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-6.7,85,102100,518,1335,235,306,413,147,34424,28973,16609,5520,120,7.7,4,2,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.6,-7.2,88,102100,414,1335,245,167,102,135,18424,6597,14959,4553,120,8.2,10,8,11.3,150,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.6,-7.2,88,102100,311,1335,245,102,9,100,11174,432,10999,3199,120,9.8,10,8,11.3,150,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-7.8,92,102000,216,1335,245,49,14,47,5505,185,5294,1639,130,8.2,10,9,11.3,120,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-7.2,96,102000,137,1335,253,24,0,24,2339,0,2355,846,120,8.2,10,10,11.3,90,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-7.8,92,102000,77,1335,252,11,1,11,1272,0,1273,395,110,7.2,10,10,11.3,90,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.2,-7.8,96,102000,43,1335,250,3,0,3,290,0,292,117,110,7.7,10,10,6.4,90,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.2,-8.3,92,102000,33,1335,250,0,0,0,0,0,0,0,130,6.2,10,10,6.4,120,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.8,-8.3,96,102000,49,1335,248,7,0,7,677,0,681,254,120,7.2,10,10,11.3,90,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.2,-8.3,92,102000,90,1335,250,16,1,16,1821,0,1824,557,120,6.2,10,10,6.4,90,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.2,-8.3,92,102000,155,1335,250,32,1,32,3600,0,3609,1101,120,5.2,10,10,6.4,90,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.2,-8.3,92,101900,239,1335,250,69,0,69,6789,0,6837,2224,120,5.7,10,10,11.3,90,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.8,-8.3,96,101900,337,1335,248,101,0,101,10023,0,10098,3386,120,6.7,10,10,11.3,90,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.2,-7.8,96,101900,441,1335,250,168,1,167,18349,74,18328,5330,110,7.7,10,10,11.3,180,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-7.8,92,101900,544,1335,240,182,53,161,20453,3906,18175,6040,120,8.2,10,8,16.1,180,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-7.8,88,101900,639,1335,248,272,55,246,30141,4915,27409,8665,100,7.2,10,9,11.3,180,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.6,-7.8,85,101900,721,1335,244,375,136,301,41537,13095,33539,10569,100,6.2,10,8,11.3,270,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-7.2,81,101900,782,1335,242,478,342,279,53885,31095,31632,10828,100,6.7,10,6,16.1,270,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.0,-6.7,88,101900,819,1335,260,348,3,346,38802,297,38821,12609,110,6.7,10,10,16.1,270,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-6.7,85,101800,830,1335,239,511,344,297,57799,31644,33791,11726,90,7.7,9,4,16.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.9,-6.1,85,101900,813,1335,257,364,72,321,40788,6895,36189,12066,90,6.2,10,9,16.1,240,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.9,-5.6,88,101900,770,1335,265,186,1,186,21609,77,21710,8144,90,5.2,10,10,16.1,210,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-6.1,88,101800,704,1335,263,182,12,176,20984,915,20384,7453,80,4.6,10,10,16.1,150,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-6.1,88,101800,619,1335,263,259,2,258,28458,183,28508,8630,90,4.1,10,10,16.1,150,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.0,-5.6,96,101900,522,1335,261,180,3,179,19942,231,19927,6264,120,3.6,10,10,11.3,120,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.0,-5.6,96,101900,418,1335,261,130,0,129,12986,0,12985,4466,90,2.6,10,10,11.3,120,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.6,-6.1,96,101900,315,1335,258,78,2,78,8735,80,8764,2763,70,4.1,10,10,0.8,60,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.6,-6.1,96,101900,221,1335,258,47,0,47,4614,0,4647,1653,60,3.1,10,10,0.8,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-6.7,96,101900,141,1335,256,31,0,31,3022,0,3043,1036,60,2.1,10,10,0.4,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-7.2,92,102000,82,1335,255,17,0,17,1648,0,1659,565,100,3.1,10,10,0.4,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-6.7,96,102000,47,1334,256,8,0,8,773,0,778,283,120,3.1,10,10,0.4,60,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-7.2,96,102000,38,1334,253,6,0,6,580,0,583,216,90,2.6,10,10,0.4,60,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-7.8,92,102000,54,1334,252,10,0,10,967,0,974,346,90,3.1,10,10,0.4,60,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.2,-7.8,96,102000,95,1334,250,23,0,23,2234,0,2249,739,110,2.6,10,10,0.4,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.8,-8.3,96,102000,160,1334,241,42,20,40,4652,0,4443,1302,130,2.6,9,9,0.4,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.8,-8.9,92,102000,244,1334,247,73,3,72,8020,91,7938,2305,120,2.6,10,10,0.4,90,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.8,-8.3,96,102000,341,1334,248,103,4,102,11386,205,11320,3432,120,2.6,10,10,0.4,60,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-7.8,92,102000,445,1334,252,134,8,131,14951,518,14678,4688,130,2.6,10,10,1.2,90,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-7.2,96,102000,548,1334,253,198,6,196,21914,486,21802,6827,130,2.6,10,10,0.8,90,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-6.7,96,102000,643,1334,256,235,8,231,26194,691,25885,8419,160,3.1,10,10,0.8,90,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.0,-6.1,92,102000,724,1334,260,238,4,236,26905,342,26821,9273,130,2.1,10,10,0.8,90,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-5.6,92,102100,785,1334,263,311,2,310,34774,190,34871,11528,120,2.1,10,10,0.8,90,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-5.0,96,102100,822,1334,264,324,2,322,36353,191,36349,12202,140,2.6,10,10,1.2,90,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.9,-5.0,92,102100,833,1334,266,325,3,323,36525,285,36521,12345,120,2.6,10,10,1.6,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.3,-4.4,92,102100,816,1334,269,343,0,343,35442,0,35758,12529,80,1.5,10,10,2.0,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.3,-4.4,92,102100,774,1334,269,317,0,316,32638,0,32821,11503,140,2.1,10,10,1.6,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.3,-4.4,92,102100,708,1334,269,324,1,323,35571,100,35680,10723,110,3.1,10,10,1.6,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.9,-4.4,96,102100,623,1334,266,245,0,245,24905,0,25113,8473,110,3.6,10,10,1.6,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.9,-5.0,92,102100,526,1334,266,219,1,218,23890,85,23909,6951,80,3.6,10,10,1.2,90,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.9,-4.4,96,102100,422,1334,266,156,0,156,15585,0,15705,4991,90,4.1,10,10,1.6,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.9,-4.4,96,102100,320,1334,266,113,1,112,12295,52,12239,3462,100,3.1,10,10,4.8,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-5.0,96,102100,225,1334,264,73,0,73,7168,0,7219,2212,100,4.6,10,10,2.4,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.0,-5.6,96,102100,146,1334,261,43,0,43,4193,0,4221,1298,100,4.6,10,10,0.8,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.0,-6.1,92,102100,87,1334,260,24,0,23,2328,0,2245,708,90,4.6,10,10,0.8,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.6,-6.7,92,102100,52,1334,257,10,0,10,967,0,973,345,90,5.2,10,10,0.8,90,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.6,-6.1,96,102100,42,1334,258,6,0,6,580,0,583,219,110,4.6,10,10,0.8,90,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.6,-6.1,96,102100,58,1334,258,11,0,11,1064,0,1071,378,90,3.1,10,10,0.8,90,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-6.7,96,102000,99,1334,256,30,0,30,2914,0,2934,890,70,4.1,10,10,0.8,90,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-6.7,96,102000,164,1334,256,58,0,58,5667,0,5706,1631,80,4.6,10,10,0.8,90,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.6,-6.7,92,102000,248,1334,257,84,0,84,8269,0,8328,2535,80,3.6,10,10,0.8,90,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-6.7,96,102000,345,1334,256,106,0,106,10524,0,10603,3539,90,4.6,10,10,1.2,90,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-7.2,92,102000,449,1334,255,142,0,142,14228,0,14339,4955,80,4.6,10,10,1.2,90,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-6.7,96,102000,552,1334,256,210,1,210,23129,84,23250,7117,80,4.1,10,10,1.2,180,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.6,-6.1,96,102000,647,1334,258,266,1,266,29326,92,29494,9096,80,4.1,10,10,1.6,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.0,-5.6,96,102000,728,1334,261,270,1,270,30209,91,30381,10084,90,4.6,10,10,1.6,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.0,-6.1,92,102000,789,1334,260,318,1,318,35511,96,35726,11727,70,4.1,10,10,2.4,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.0,-5.6,96,101900,826,1334,261,317,1,317,35641,95,35857,12141,70,4.1,10,10,8.0,150,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.0,-6.1,92,101900,836,1334,260,345,1,345,38598,98,38840,12826,70,5.2,10,10,8.0,150,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-5.6,92,101900,820,1334,263,357,0,357,36909,0,37239,12820,70,5.7,10,10,11.3,150,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-5.6,92,101900,777,1334,256,269,34,249,30576,2934,28457,10060,80,6.2,10,9,11.3,150,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-5.6,92,101900,711,1334,263,177,2,176,20437,152,20414,7499,70,6.2,10,10,11.3,150,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-5.6,92,101800,627,1334,263,136,5,134,15785,344,15614,5720,70,7.2,10,10,11.3,150,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.0,-5.6,96,101900,530,1334,261,123,3,122,14087,194,14026,4906,70,6.7,10,10,11.3,120,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.0,-6.1,92,101800,427,1334,260,99,2,99,11242,110,11282,3785,70,6.7,10,10,11.3,120,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.6,-6.1,96,101800,324,1334,258,91,2,91,10093,91,10131,3104,70,6.2,10,10,11.3,120,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.6,-6.1,96,101800,230,1334,258,59,0,59,5797,0,5838,1971,80,5.7,10,10,1.6,90,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.6,-6.1,96,101800,150,1334,258,47,0,47,4585,0,4617,1386,90,6.2,10,10,1.6,90,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-6.7,96,101800,91,1334,256,24,0,24,2329,0,2344,742,70,5.7,10,10,1.6,90,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-6.7,96,101800,56,1333,256,10,0,10,968,0,974,349,70,5.2,10,10,1.6,60,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-6.7,96,101800,46,1333,256,10,0,10,967,0,973,338,90,5.2,10,10,1.6,60,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-7.2,96,101800,62,1333,253,15,0,15,1452,0,1462,486,80,5.7,10,10,1.6,60,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-7.2,96,101800,104,1333,253,28,1,28,3078,0,3087,870,80,5.7,10,10,1.2,60,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-7.8,92,101700,168,1333,252,54,0,53,5279,0,5217,1585,90,4.1,10,10,1.2,60,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-7.2,96,101700,252,1333,253,98,1,98,10526,43,10571,2749,80,4.6,10,10,1.2,60,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-7.8,92,101700,349,1333,252,127,1,126,13831,60,13783,3915,70,4.6,10,10,1.2,60,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-6.7,96,101700,453,1333,256,177,1,177,19300,76,19396,5600,80,4.6,10,10,11.3,240,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.6,-6.7,92,101700,555,1333,245,270,228,176,30201,17485,19780,6480,80,5.7,10,8,11.3,2740,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.0,-6.1,92,101700,650,1333,248,254,85,212,28554,7039,23953,8073,90,5.2,10,8,11.3,240,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.0,-6.7,88,101700,731,1333,253,372,85,325,41028,8453,36065,11094,80,5.7,10,9,11.3,180,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.0,-6.1,92,101600,792,1333,260,307,6,303,34441,563,34194,11473,90,5.7,10,10,11.3,150,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.0,-6.1,92,101600,829,1333,260,324,14,315,36474,1321,35675,12139,90,7.2,10,10,11.3,150,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.0,-6.1,92,101600,840,1333,260,291,6,287,33068,541,32802,11593,90,6.2,10,10,11.3,150,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-5.6,92,101600,823,1333,263,287,0,287,29682,0,29947,11437,90,6.7,10,10,11.3,150,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-5.6,92,101600,781,1333,263,279,2,278,31453,181,31520,10807,100,6.2,10,10,11.3,180,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-5.6,92,101500,715,1333,263,282,5,279,31394,463,31239,10129,90,7.7,10,10,11.3,240,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-5.6,92,101500,631,1333,263,246,6,244,27224,533,27151,8546,90,7.2,10,10,11.3,180,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-5.6,92,101500,534,1333,263,197,5,196,21728,404,21727,6698,90,8.2,10,10,11.3,180,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.0,-5.6,96,101400,431,1333,261,160,1,159,17494,71,17467,5116,90,7.7,10,10,11.3,150,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.0,-6.1,92,101400,328,1333,260,136,1,136,14606,62,14676,3840,90,7.7,10,10,11.3,150,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.6,-6.1,96,101400,234,1333,258,82,0,82,8060,0,8118,2404,90,7.2,10,10,11.3,150,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.0,-6.1,92,101400,155,1333,260,54,0,54,5270,0,5306,1510,90,7.7,10,10,11.3,150,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.6,-6.7,92,101400,96,1333,257,29,0,29,2815,0,2834,848,100,8.8,10,10,11.3,150,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.6,-6.7,92,101400,60,1332,257,12,0,12,1162,0,1169,410,90,6.7,10,10,11.3,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.6,-6.7,92,101300,51,1332,257,10,0,10,967,0,973,343,100,7.7,10,10,11.3,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.6,-6.7,92,101300,67,1332,257,14,0,14,1356,0,1365,470,100,7.2,10,10,11.3,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.6,-6.7,92,101300,108,1332,257,27,0,27,2625,0,2642,863,90,6.7,10,10,11.3,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-7.2,92,101300,172,1332,255,48,1,48,5275,6,5291,1516,80,6.7,10,10,11.3,150,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-7.2,92,101300,256,1332,255,82,0,82,8079,0,8137,2557,90,6.7,10,10,11.3,150,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-7.2,92,101300,353,1332,255,117,0,117,11626,0,11713,3799,90,6.7,10,10,11.3,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-7.2,92,101300,456,1332,255,172,1,172,18821,75,18913,5565,80,6.2,10,10,11.3,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-6.7,96,101200,559,1332,256,237,1,236,25896,89,25929,7597,80,7.7,10,10,11.3,120,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-6.7,96,101200,654,1332,256,272,1,271,29991,93,30053,9267,100,7.7,10,10,11.3,120,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.6,-7.2,88,101200,734,1332,257,292,1,292,32516,94,32707,10598,90,7.7,10,10,11.3,180,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.0,-7.2,85,101200,795,1332,259,329,1,328,36701,98,36815,12003,100,8.2,10,10,11.3,180,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.0,-6.7,88,101200,832,1332,260,380,0,380,39339,0,39691,13367,100,8.2,10,10,11.3,180,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.0,-6.7,88,101200,843,1332,260,343,0,343,35540,0,35860,12879,100,7.2,10,10,11.3,180,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-6.1,88,101200,826,1332,263,378,1,377,41914,103,42076,13238,90,7.7,10,10,11.3,180,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-6.1,88,101200,784,1332,263,355,1,354,39266,102,39405,12278,90,7.7,10,10,11.3,210,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-6.1,88,101200,718,1332,263,303,1,302,33540,96,33629,10579,100,7.7,10,10,11.3,270,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-6.1,88,101200,634,1332,263,244,0,244,24837,0,25046,8589,100,8.2,10,10,11.3,270,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.9,-5.6,88,101100,538,1332,265,121,1,120,13902,65,13839,4883,100,8.2,10,10,11.3,270,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.9,-5.6,88,101200,435,1332,265,154,0,154,15406,0,15526,5071,100,7.7,10,10,11.3,310,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.9,-5.0,92,101100,332,1332,266,111,0,111,11004,0,11086,3543,90,5.7,10,10,11.3,310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.9,-5.6,88,101100,238,1332,265,85,0,85,8358,0,8417,2476,80,6.2,10,10,11.3,310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-6.1,88,101200,159,1332,263,44,0,44,4296,0,4326,1375,80,7.7,10,10,11.3,270,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.0,-6.7,88,101200,100,1332,260,27,0,27,2622,0,2640,829,90,6.2,10,10,11.3,270,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.0,-6.7,88,101200,65,1332,260,15,0,15,1453,0,1462,492,90,6.7,10,10,11.3,270,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.6,-7.2,88,101200,55,1332,257,10,0,10,968,0,974,348,90,7.2,10,10,11.3,270,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.6,-7.2,88,101200,71,1332,257,16,0,16,1550,0,1561,526,80,6.2,10,10,11.3,270,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-7.2,92,101100,112,1332,255,33,0,33,3210,0,3231,994,80,5.7,10,10,11.3,150,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-7.2,92,101100,176,1332,255,50,0,50,4892,0,4925,1572,70,6.2,10,10,11.3,150,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-7.2,92,101100,260,1332,255,83,0,83,8181,0,8240,2599,80,5.7,10,10,4.8,150,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-7.2,96,101100,357,1332,253,123,0,123,12227,0,12318,3931,70,7.2,10,10,8.0,120,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-7.2,96,101100,460,1332,253,91,0,91,9127,0,9199,3679,90,6.7,10,10,8.0,150,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-7.8,92,101100,562,1332,252,116,1,116,13443,65,13492,4861,80,7.2,10,10,8.0,150,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-7.8,92,101100,657,1332,252,147,0,147,14997,0,15124,6289,90,6.2,10,10,11.3,150,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-7.8,92,101100,737,1332,252,185,1,184,21399,78,21383,7906,70,6.7,10,10,11.3,150,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-7.8,92,101100,798,1332,252,306,0,306,31595,0,31875,11614,90,6.7,10,10,11.3,150,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-8.3,88,101100,835,1332,252,330,1,329,37077,96,37191,12513,90,7.2,10,10,11.3,180,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-8.3,88,101100,846,1332,252,327,0,327,33902,0,34207,12594,70,6.7,10,10,11.3,180,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-8.3,88,101100,830,1332,252,325,1,324,36524,96,36634,12344,90,6.7,10,10,11.3,180,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.6,-7.8,85,101000,787,1332,256,302,1,301,33884,94,33972,11387,70,6.7,10,10,11.3,210,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-7.8,88,101000,722,1332,255,296,0,296,30366,0,30628,10525,80,7.2,10,10,11.3,210,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-7.8,88,101000,638,1332,255,257,1,257,28377,91,28536,8857,70,7.2,10,10,11.3,270,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-8.3,85,101000,541,1332,254,201,0,200,20306,0,20368,6847,80,7.7,10,10,11.3,310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.6,-7.8,85,101000,438,1332,256,158,0,158,15819,0,15942,5174,70,6.7,10,10,11.3,310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.6,-7.8,85,100900,336,1332,256,107,0,106,10618,0,10597,3482,90,7.2,10,10,11.3,310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-7.8,88,100900,243,1332,255,70,0,70,6888,0,6938,2257,90,6.7,10,10,11.3,310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-7.8,88,100900,163,1332,255,45,0,45,4397,0,4427,1412,90,6.2,10,10,11.3,310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-7.8,88,100900,104,1332,255,28,0,28,2721,0,2739,863,80,5.2,10,10,11.3,310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.6,-7.2,88,100900,69,1331,257,15,0,15,1453,0,1463,500,100,5.2,10,10,11.3,240,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.6,-7.2,88,100900,59,1331,257,14,0,14,1355,0,1364,457,90,5.2,10,10,11.3,240,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.6,-7.2,88,100900,75,1331,257,17,0,17,1648,0,1659,558,100,5.2,10,10,11.3,240,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.6,-7.2,88,100800,116,1331,257,30,0,29,2919,0,2841,930,90,4.1,10,10,11.3,240,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-7.2,92,100800,180,1331,255,50,0,50,4893,0,4927,1589,80,5.2,10,10,11.3,210,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-7.2,92,100800,264,1331,255,79,0,79,7789,0,7845,2549,80,5.7,10,10,11.3,210,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-7.8,88,100700,360,1331,255,120,1,119,13180,58,13125,3890,70,6.2,10,10,2.4,240,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-7.2,92,100700,463,1331,255,158,1,158,17446,72,17527,5389,80,6.2,10,10,11.3,180,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-7.2,92,100700,566,1331,255,217,0,217,21965,0,22144,7391,80,7.2,10,10,11.3,180,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.6,-7.2,88,100700,660,1331,257,258,0,258,26327,0,26549,9131,90,6.7,10,10,11.3,180,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.6,-7.2,88,100600,740,1331,257,290,1,290,32354,94,32543,10641,70,7.2,10,10,6.4,180,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.6,-7.2,88,100600,801,1331,257,327,1,327,36532,97,36756,12069,90,6.7,10,10,9.7,1310,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-6.7,85,100600,838,1331,262,372,0,372,38533,0,38879,13342,70,6.7,10,10,3.2,1310,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-6.7,85,100600,849,1331,262,377,1,376,41989,102,42150,13557,70,7.2,10,10,3.2,1370,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.9,-6.7,81,100600,833,1331,264,330,1,329,37053,96,37167,12486,90,6.7,10,10,11.3,2130,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.3,-5.6,85,100500,790,1331,268,331,1,331,36859,98,37087,12005,80,8.2,10,10,11.3,310,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.9,-5.0,92,100500,725,1331,266,299,1,298,33173,95,33259,10604,80,8.8,10,10,4.8,150,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.3,-4.4,92,100500,641,1331,269,145,1,144,16782,70,16735,6118,90,8.2,10,10,2.4,150,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.9,-4.4,96,100500,545,1331,266,119,1,118,13711,64,13647,4854,80,8.2,10,10,2.4,150,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.9,-4.4,96,100500,442,1331,266,104,1,104,11811,57,11854,3996,70,7.7,10,10,2.4,150,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.9,-4.4,96,100500,340,1331,266,108,1,108,11872,52,11921,3546,80,7.2,10,10,2.4,120,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.3,-3.9,96,100400,246,1331,269,85,1,85,9210,36,9247,2536,100,7.2,10,10,2.4,150,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.9,-4.4,96,100400,167,1331,266,49,0,49,4786,0,4819,1504,100,7.7,10,10,2.4,150,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-5.0,96,100400,108,1331,264,17,0,17,1652,0,1663,607,110,8.2,10,10,2.4,150,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-5.6,92,100400,73,1331,263,10,0,10,969,0,975,364,110,8.2,10,10,3.2,150,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-5.6,92,100400,63,1331,263,15,0,15,1452,0,1461,488,110,7.7,10,10,3.2,150,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.0,-5.6,96,100400,79,1331,261,20,0,20,1939,0,1952,635,110,6.7,10,10,4.8,150,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.0,-6.1,92,100400,120,1331,260,34,0,34,3309,0,3331,1043,100,7.7,10,10,11.3,150,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.0,-6.1,92,100400,184,1331,260,56,0,56,5481,0,5519,1718,110,6.7,10,10,11.3,150,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.6,-6.7,92,100400,267,1331,257,92,0,92,9073,0,9139,2794,110,7.7,10,10,11.3,150,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.6,-7.2,88,100400,364,1331,245,125,33,116,13772,1881,12834,3859,110,7.2,9,8,11.3,910,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-7.2,92,100400,466,1331,255,140,2,140,15627,135,15695,5041,100,6.7,10,10,3.2,90,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.6,-7.2,88,100400,569,1331,257,149,4,147,16968,284,16811,5838,90,7.2,10,10,4.8,180,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.0,-7.2,85,100400,663,1331,259,223,6,219,25078,504,24755,8356,70,7.2,10,10,8.0,210,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-6.7,85,100400,743,1331,262,244,9,239,27669,771,27246,9531,70,7.7,10,10,11.3,180,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.9,-6.1,85,100400,804,1331,265,354,4,352,39325,401,39351,12547,80,7.2,10,10,11.3,180,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.3,-6.1,81,100400,841,1331,267,295,3,293,33484,273,33450,11769,60,7.2,10,10,11.3,180,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.3,-5.6,85,100400,852,1331,268,316,2,315,35721,187,35822,12400,80,7.2,10,10,11.3,180,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.3,-5.6,85,100400,835,1331,268,376,2,375,41783,204,41943,13356,80,7.2,10,10,11.3,180,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.9,-5.6,88,100400,793,1331,265,299,2,298,33604,186,33689,11399,60,6.2,10,10,11.3,180,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-6.1,88,100400,728,1331,263,318,0,318,32632,0,32915,10973,70,7.7,10,10,11.3,180,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-6.1,88,100400,645,1331,263,271,2,270,29837,186,29898,9151,60,7.2,10,10,11.3,180,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.0,-6.1,92,100400,548,1331,260,232,0,232,23444,0,23634,7423,70,6.2,10,10,11.3,180,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-6.1,88,100400,446,1331,263,160,1,160,17563,72,17646,5276,70,6.2,10,10,11.3,180,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-6.1,88,100400,344,1331,263,130,1,129,14102,60,14057,3915,70,5.2,10,10,11.3,240,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-6.1,88,100400,250,1331,263,81,1,81,8831,35,8865,2500,50,5.2,10,10,11.3,270,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-6.1,88,100400,171,1331,263,56,0,56,5474,0,5512,1639,60,5.7,10,10,11.3,310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-6.1,88,100400,112,1331,263,32,0,32,3111,0,3132,967,70,5.2,10,10,11.3,370,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-6.1,88,100400,76,1331,263,19,0,19,1842,0,1854,610,70,4.1,10,10,11.3,310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-6.1,88,100400,66,1331,263,15,0,15,1453,0,1462,495,60,4.1,10,10,11.3,1520,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-5.6,92,100400,82,1331,263,19,0,19,1842,0,1855,621,50,3.6,10,10,11.3,610,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-5.6,92,100400,123,1331,263,38,0,38,3699,0,3724,1128,60,4.6,10,10,11.3,610,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.9,-5.0,92,100400,188,1331,266,62,0,62,6069,0,6112,1835,60,4.6,10,10,11.3,700,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.9,-5.0,92,100500,271,1331,266,91,1,91,9909,41,9948,2803,70,3.6,10,10,11.3,880,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.9,-5.0,92,100500,367,1331,266,143,0,143,14222,0,14330,4318,50,3.6,10,10,11.3,700,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.3,-4.4,92,100500,470,1331,269,188,1,187,20494,79,20489,5929,60,3.1,10,10,9.7,700,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-2.8,-3.9,92,100500,572,1331,271,222,1,221,24455,85,24474,7529,70,4.1,10,10,9.7,700,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-2.2,-4.4,85,100500,666,1331,273,297,1,297,32575,97,32771,9820,80,4.1,10,10,11.3,700,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.7,-4.4,82,100500,746,1331,275,341,2,340,37573,201,37699,11546,70,4.1,10,10,11.3,700,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.1,-4.4,78,100600,807,1331,278,334,1,333,37282,97,37400,12259,70,4.1,10,10,11.3,310,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.1,-4.4,78,100600,844,1331,278,349,1,349,39062,98,39309,13023,90,3.6,10,10,11.3,340,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-0.6,-3.9,79,100600,854,1331,280,363,2,362,40580,198,40727,13402,50,3.6,10,10,11.3,340,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-0.6,-3.3,82,100600,838,1331,281,344,2,343,38512,194,38641,12841,70,4.6,10,10,11.3,310,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.1,-3.3,85,100600,796,1331,279,325,1,325,36273,96,36496,11980,70,4.1,10,10,11.3,310,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.7,-3.3,89,100600,731,1331,276,331,1,331,36441,100,36668,11207,80,3.6,10,10,11.3,210,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.1,-2.8,89,100600,648,1331,279,254,1,253,28118,89,28164,8912,70,3.6,10,10,11.3,180,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.1,-3.3,85,100700,552,1331,279,237,1,237,25832,89,25976,7532,80,3.1,10,10,11.3,180,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.7,-2.8,92,100700,449,1331,277,172,0,172,17220,0,17355,5502,70,3.6,10,10,11.3,180,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-2.2,-3.3,92,100700,348,1331,274,115,0,115,11413,0,11498,3727,80,3.6,10,10,11.3,150,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,-2.2,-3.3,92,100700,254,1331,274,87,1,87,9438,37,9476,2620,60,4.1,10,10,11.3,150,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,-2.2,-2.8,96,100800,175,1331,275,50,0,50,4885,0,4919,1559,90,4.1,10,10,11.3,150,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,-2.2,-3.9,89,100800,116,1331,274,35,0,35,3402,0,3425,1034,80,4.1,10,10,11.3,150,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,-2.2,-3.3,92,100800,80,1330,274,21,0,21,2035,0,2049,662,60,4.6,10,10,4.8,310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,-2.8,-3.9,92,100800,70,1330,271,17,0,17,1646,0,1657,550,60,4.1,10,10,9.7,180,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.3,-4.4,92,100800,86,1330,269,25,0,25,2424,0,2441,757,60,5.2,10,10,4.8,90,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.9,-4.4,96,100800,127,1330,266,38,0,38,3699,0,3724,1144,40,5.2,10,10,1.2,60,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.9,-4.4,96,100800,191,1330,266,58,0,58,5679,0,5718,1789,50,4.1,10,10,1.2,60,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,-4.4,-5.0,96,100800,274,1330,264,87,0,87,8582,0,8645,2758,60,5.2,10,10,1.6,120,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.9,-4.4,96,100800,370,1330,266,126,1,125,13818,60,13768,4072,60,5.2,10,10,1.6,150,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.9,-5.0,92,100800,473,1330,266,177,1,177,19402,76,19498,5811,60,6.2,10,10,9.7,150,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.9,-5.0,92,100800,574,1330,266,247,1,247,26982,90,27134,7953,60,6.7,10,10,11.3,150,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.3,-4.4,92,100800,669,1330,269,267,1,266,29573,91,29630,9382,60,6.2,10,10,11.3,150,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.3,-4.4,92,100800,749,1330,269,306,1,305,34041,95,34132,11031,50,6.2,10,10,11.3,150,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.3,-4.4,92,100800,809,1330,269,332,1,331,37097,97,37213,12258,60,7.2,10,10,11.3,150,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-2.8,-4.4,89,100800,846,1330,271,360,0,360,37301,0,37638,13263,50,7.2,10,10,11.3,150,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1987,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,-2.2,-4.4,85,100700,857,1330,273,394,1,394,43767,103,44057,13974,50,7.2,10,10,11.3,150,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1987,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,-2.2,-3.9,89,100700,841,1330,274,380,0,380,39352,0,39706,13524,40,7.2,10,10,11.3,180,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1987,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,-2.2,-3.3,92,100700,799,1330,274,328,1,327,36610,96,36723,12056,40,7.2,10,10,11.3,150,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1987,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,-2.2,-2.8,96,100700,734,1330,275,301,1,301,33417,95,33617,10782,50,7.2,10,10,11.3,120,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.7,-2.8,92,100700,651,1330,277,290,0,290,29544,0,29794,9524,70,7.2,10,10,6.4,180,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.7,-3.3,89,100700,555,1330,276,231,0,231,23343,0,23533,7496,50,6.7,10,10,11.3,240,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.7,-3.3,89,100700,453,1330,276,178,0,177,17828,0,17867,5611,50,6.7,10,10,11.3,240,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.7,-2.8,92,100700,351,1330,277,120,1,120,13120,57,13177,3840,50,6.2,10,10,11.3,120,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.7,-2.2,96,100700,258,1330,277,85,0,85,8366,0,8427,2614,50,6.7,10,10,8.0,120,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.7,-2.2,96,100700,178,1330,277,53,1,53,5786,9,5806,1631,40,6.2,10,10,11.3,270,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.7,-2.8,92,100700,119,1330,277,31,0,31,3014,0,3034,975,30,5.2,10,10,11.3,150,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.7,-2.8,92,100800,84,1330,277,20,0,20,1939,0,1951,649,70,5.7,10,10,11.3,180,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,-2.2,-3.3,92,100800,74,1330,274,19,0,19,1840,0,1852,602,70,6.7,10,10,11.3,370,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,-2.8,-3.9,92,100800,89,1330,271,25,0,25,2425,0,2441,768,60,6.2,10,10,11.3,310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,-2.8,-3.9,92,100800,130,1330,271,36,0,36,3505,0,3529,1122,70,6.2,10,10,11.3,150,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,-2.8,-3.9,92,100800,194,1330,271,63,0,63,6169,0,6213,1891,60,5.7,10,10,11.3,180,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-3.3,-4.4,92,100800,277,1330,269,81,0,81,7992,0,8050,2664,60,6.2,10,10,11.3,150,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-2.8,-3.9,92,100800,373,1330,271,129,0,128,12834,0,12831,4148,70,6.7,10,10,11.3,180,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-2.8,-3.9,92,100900,475,1330,271,182,1,182,19915,77,20015,5920,60,4.1,10,10,11.3,150,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1987,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,-2.2,-3.9,89,100900,577,1330,274,212,1,211,23475,83,23485,7412,50,4.6,10,10,11.3,150,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1987,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,-2.2,-3.9,89,100900,671,1330,274,250,1,249,27855,88,27896,9094,50,5.2,10,10,11.3,150,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1987,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,-2.2,-3.3,92,100900,751,1330,274,195,1,195,22498,78,22606,8345,40,5.2,10,10,6.4,150,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1987,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,-2.2,-3.3,92,100900,812,1330,274,354,0,354,36565,0,36892,12701,40,5.7,10,10,9.7,150,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.7,-2.8,92,100900,849,1330,277,350,1,349,39201,97,39335,13095,40,5.7,10,10,9.7,120,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.1,-2.8,89,100900,860,1330,279,213,1,212,24874,79,24881,9538,40,5.7,10,10,6.4,180,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.1,-2.8,89,100900,843,1330,279,200,0,200,20711,0,20898,9038,30,6.2,10,10,3.2,150,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.1,-2.8,89,100900,802,1330,279,320,1,320,35796,95,36015,11959,40,5.7,10,10,3.2,240,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1987,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,-0.6,-2.2,89,100900,737,1330,282,302,1,302,33535,95,33735,10838,40,5.7,10,10,8.0,270,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1987,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,-0.6,-2.2,89,100900,654,1330,282,268,1,268,29563,92,29733,9245,40,5.2,10,10,3.2,180,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.1,-2.2,92,100900,558,1330,280,201,0,201,20312,0,20478,7038,40,4.6,10,10,1.6,180,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1987,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,-0.6,-1.7,92,100900,456,1330,282,152,0,152,15223,0,15342,5220,40,3.6,10,10,2.4,180,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1987,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,-0.6,-1.7,92,100900,355,1330,282,117,0,117,11614,0,11701,3814,40,4.1,10,10,4.8,150,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.1,-1.7,96,100900,261,1330,280,73,1,73,8057,31,8086,2414,50,4.1,10,10,4.8,150,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.1,-1.7,96,101000,182,1330,280,50,0,49,4887,0,4823,1572,60,4.6,10,10,11.3,180,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.1,-2.2,92,101000,123,1330,280,38,0,38,3695,0,3720,1117,60,4.6,10,10,11.3,120,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.1,-1.7,96,101000,87,1329,280,21,0,21,2036,0,2049,680,60,4.1,10,10,3.2,90,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.1,-1.1,100,101000,77,1329,281,22,0,22,2130,0,2144,673,70,4.1,10,10,3.2,90,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.1,-1.7,96,101000,93,1329,280,25,0,25,2424,0,2441,779,70,4.6,10,10,4.8,120,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.1,-1.1,100,101100,134,1329,281,36,0,36,3504,0,3528,1134,60,4.1,10,10,0.8,120,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.1,-1.7,96,101100,197,1329,280,58,1,58,6351,15,6373,1822,60,5.2,10,10,0.8,120,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.1,-1.1,100,101100,280,1329,281,105,1,105,11329,47,11378,3077,60,5.2,10,10,1.2,150,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.1,-1.1,100,101100,376,1329,281,133,1,133,14527,61,14592,4256,60,4.6,10,10,0.8,120,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1987,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,-0.6,-1.1,96,101100,478,1329,283,196,0,196,19665,0,19821,6152,70,5.2,10,10,6.4,60,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1987,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,-0.6,-1.1,96,101100,580,1329,283,248,1,247,27103,89,27146,8027,70,4.6,10,10,1.6,60,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1987,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,0.0,-1.1,92,101100,674,1329,286,274,0,273,27957,0,28093,9570,70,5.2,10,10,11.3,120,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1987,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,0.6,-0.6,92,101100,754,1329,289,303,0,303,31123,0,31396,11062,70,4.6,10,10,11.3,120,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,1.1,-1.1,85,101100,814,1329,290,364,0,364,37586,0,37922,12900,70,5.2,10,10,11.3,150,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,0.6,-1.1,89,101100,851,1329,288,357,1,356,39922,98,40064,13262,60,5.7,10,10,11.3,150,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,1.1,-0.6,89,101100,862,1329,291,377,1,377,42035,100,42310,13782,70,4.6,10,10,11.3,150,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,1.1,-0.6,89,101100,846,1329,291,358,0,358,37061,0,37396,13234,70,5.2,10,10,11.3,120,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,1.1,-0.6,89,101100,804,1329,291,343,1,342,38160,98,38288,12403,80,5.2,10,10,11.3,120,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,1.1,-0.6,89,101100,740,1329,291,300,0,300,30779,0,31048,10840,70,5.2,10,10,11.3,90,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,0.6,-0.6,92,101100,657,1329,289,270,0,270,27506,0,27739,9316,70,5.2,10,10,0.8,60,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,0.6,-0.6,92,101100,561,1329,289,219,0,219,22127,0,22309,7389,80,4.1,10,10,1.2,60,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,0.6,-0.6,92,101200,459,1329,289,165,1,164,18121,72,18097,5470,80,5.2,10,10,1.2,60,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,0.6,-0.6,92,101100,358,1329,289,126,1,125,13752,58,13703,3977,90,4.6,10,10,0.2,150,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,0.0,-0.6,96,101200,264,1329,286,82,1,82,8974,35,9008,2607,110,5.2,10,10,6.4,120,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,0.0,-0.6,96,101200,185,1329,286,58,1,58,6306,13,6328,1753,90,4.6,10,10,11.3,180,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,0.0,-0.6,96,101200,126,1329,286,35,0,35,3403,0,3426,1079,90,5.2,10,10,11.3,120,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,-0.6,-1.7,92,101200,90,1329,282,19,0,19,1842,0,1855,640,80,7.2,10,10,11.3,180,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.1,-2.2,92,101300,80,1329,280,18,0,18,1744,0,1755,595,80,6.2,10,10,11.3,760,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.7,-2.8,92,101300,96,1329,277,20,0,20,1941,0,1954,674,70,5.2,10,10,11.3,310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.7,-3.3,89,101300,137,1329,276,32,0,32,3117,0,3138,1058,70,6.2,10,10,11.3,370,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.7,-3.3,89,101300,200,1329,276,54,0,54,5290,0,5328,1758,60,6.2,10,10,11.3,210,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.7,-2.2,96,101300,283,1329,277,71,1,71,7926,33,7952,2475,60,5.2,10,10,11.3,210,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.7,-2.8,92,101300,379,1329,277,101,0,101,10051,0,10127,3629,60,6.2,10,10,11.3,180,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1987,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,-0.6,-2.2,89,101300,481,1329,282,135,1,135,15158,66,15222,5020,70,6.7,10,10,11.3,180,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1987,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,-0.6,-1.7,92,101300,582,1329,275,211,73,179,23699,5562,20201,6771,70,6.2,10,9,11.3,180,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1987,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,0.0,-1.7,89,101300,676,1329,277,253,63,221,28482,5225,25009,8528,70,6.2,10,9,11.3,210,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1987,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,0.0,-1.1,92,101300,756,1329,286,207,7,203,23818,551,23472,8626,70,6.7,10,10,11.3,150,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1987,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,0.0,-1.1,92,101300,816,1329,286,195,14,186,22834,1057,21882,8413,60,6.7,10,10,11.3,150,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1987,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,0.0,-1.7,89,101300,853,1329,285,202,5,198,23688,384,23331,9024,60,6.7,10,10,11.3,240,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1987,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,0.0,-1.7,89,101300,864,1329,285,260,11,253,29961,923,29314,10886,70,7.2,10,10,11.3,180,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1987,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,0.0,-1.1,92,101300,848,1329,286,275,4,272,31418,347,31251,11307,70,7.2,10,10,11.3,240,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1987,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,0.0,-1.7,89,101300,807,1329,285,248,4,246,28361,337,28284,10249,50,6.7,10,10,11.3,240,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1987,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,0.0,-1.7,89,101300,742,1329,285,236,3,234,26784,251,26698,9407,70,7.2,10,10,11.3,270,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1987,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,0.0,-1.7,89,101300,659,1329,285,230,2,229,25732,169,25756,8565,50,6.7,10,10,11.3,240,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1987,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,0.0,-1.7,89,101300,564,1329,285,156,0,156,15771,0,15900,6063,50,7.2,10,10,11.3,210,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1987,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,0.0,-1.1,92,101300,462,1329,286,128,0,128,12824,0,12926,4735,60,7.7,10,10,11.3,180,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1987,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,-0.6,-1.1,96,101200,361,1329,283,94,1,94,10517,49,10556,3369,60,7.7,10,10,3.2,90,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.1,-1.7,96,101200,268,1329,280,64,0,64,6304,0,6350,2242,70,8.0,10,10,3.2,60,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1987,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,-1.8,-2.4,96,101200,189,1329,277,25,0,25,2446,0,2463,956,70,8.3,10,10,11.3,120,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1987,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,-2.4,-3.1,96,101200,129,1329,274,27,0,27,2628,0,2645,915,70,8.6,10,10,11.3,120,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,-3.0,-3.9,96,101200,96,1328,270,26,0,26,2523,0,2540,804,80,8.9,10,10,11.3,240,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-3.6,-4.6,88,101200,85,1328,267,25,0,25,2424,0,2440,750,90,9.2,10,10,8.0,240,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-4.3,-5.3,92,101200,101,1328,264,28,1,28,3069,0,3077,858,80,9.5,10,10,6.4,240,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-5.0,-6.1,92,101200,142,1328,260,41,0,40,3997,0,3926,1235,80,9.8,10,10,3.2,180,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-5.0,-6.1,92,101200,205,1328,260,67,1,66,7286,22,7204,1992,100,9.8,10,10,3.2,240,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-5.0,-6.1,92,101200,288,1328,260,104,0,104,10273,0,10348,3111,100,7.2,10,10,2.4,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-5.0,-6.1,92,101200,383,1328,260,150,1,150,16264,68,16342,4554,90,9.8,10,10,3.2,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-5.0,-6.7,88,101200,485,1328,260,202,1,202,21970,83,22086,6290,110,8.2,10,10,3.2,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-5.0,-6.7,88,101200,586,1328,260,260,1,259,28369,93,28422,8249,90,10.3,10,10,4.8,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-4.4,-6.1,88,101200,680,1328,263,297,1,297,32678,97,32873,10010,100,9.3,10,10,3.2,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-4.4,-6.1,88,101200,759,1328,263,343,0,343,35293,0,35602,11787,110,11.3,10,10,3.2,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-3.9,-6.1,85,101200,820,1328,265,342,0,342,35370,0,35686,12596,100,10.3,10,10,3.2,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-3.9,-6.1,85,101300,857,1328,265,369,0,369,38281,0,38627,13564,100,10.3,10,10,6.4,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-3.9,-5.6,88,101200,868,1328,265,385,1,385,42939,102,43221,13988,100,10.3,10,10,8.0,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-3.3,-5.0,88,101200,852,1328,268,357,0,357,37013,0,37348,13284,100,11.3,10,10,4.8,240,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-3.3,-5.6,85,101200,811,1328,268,341,2,340,38036,197,38161,12440,100,10.8,10,10,8.0,270,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-3.3,-4.4,92,101200,746,1328,269,342,1,341,37678,101,37804,11566,110,8.8,10,10,8.0,240,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-3.3,-5.0,88,101200,664,1328,268,298,1,297,32674,97,32760,9788,100,8.8,10,10,8.0,270,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-3.3,-5.0,88,101300,568,1328,268,218,1,218,24027,85,24154,7439,110,8.8,10,10,11.3,240,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-3.3,-4.4,92,101300,467,1328,269,174,1,174,19064,75,19157,5696,110,8.2,10,10,11.3,180,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-3.3,-4.4,92,101300,366,1328,269,147,0,147,14614,0,14725,4341,100,8.8,10,10,11.3,180,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-3.9,-4.4,96,101300,273,1328,266,93,0,93,9170,0,9237,2833,120,7.7,10,10,11.3,180,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-3.9,-4.4,96,101300,194,1328,266,59,1,59,6433,16,6456,1806,110,7.7,10,10,8.0,150,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-3.9,-4.4,96,101400,135,1328,266,37,1,37,4053,0,4066,1143,120,8.8,10,10,6.4,150,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-3.9,-4.4,96,101400,99,1328,266,27,0,27,2621,0,2639,834,120,7.2,10,10,11.3,150,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-3.9,-5.0,92,101400,88,1328,266,26,0,26,2522,0,2539,779,120,8.2,10,10,6.4,150,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-3.9,-4.4,96,101400,104,1328,266,27,0,27,2622,0,2640,848,130,8.8,10,10,2.0,150,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-3.9,-4.4,96,101400,144,1328,266,40,0,40,3899,0,3926,1247,130,7.7,10,10,2.0,180,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-3.3,-4.4,92,101400,208,1328,269,62,1,61,6794,19,6707,1921,140,7.2,10,10,2.0,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-3.3,-3.9,96,101400,290,1328,252,142,180,103,15406,8473,11222,3117,150,4.6,7,7,11.3,520,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-2.8,-3.9,92,101400,385,1328,271,98,2,97,11021,104,10948,3556,180,5.2,10,10,11.3,150,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-2.8,-3.9,92,101400,487,1328,271,122,6,120,13852,377,13678,4655,170,5.7,10,10,11.3,340,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-2.2,-3.3,92,101500,588,1328,274,149,2,148,17019,141,16977,5976,210,6.7,10,10,11.3,490,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.1,-3.9,82,101500,682,1328,278,242,6,239,27110,518,26918,8986,220,5.2,10,10,11.3,460,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.7,-2.8,92,101500,761,1328,277,146,3,145,17270,211,17222,6675,220,5.7,10,10,4.8,150,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.7,-3.3,89,101600,822,1328,276,298,1,298,33653,92,33852,11711,220,4.1,10,10,11.3,340,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.1,-3.9,82,101600,859,1328,278,323,3,321,36496,281,36491,12625,210,5.2,10,10,11.3,430,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.7,-4.4,82,101600,870,1328,275,316,1,316,35822,93,36038,12624,210,5.7,10,10,11.3,430,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.7,-3.9,85,101600,854,1328,276,390,0,390,40434,0,40799,13877,220,4.1,10,10,11.3,370,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.1,-3.9,82,101600,813,1328,278,327,1,327,36596,96,36821,12229,240,4.1,10,10,11.3,370,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.7,-3.9,85,101600,749,1328,251,483,453,228,55014,37752,26105,9291,230,3.6,6,4,11.3,370,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.1,-3.9,82,101600,666,1328,253,433,504,181,49457,38709,20770,7393,230,3.1,6,4,11.3,370,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.7,-4.4,82,101700,571,1328,268,253,52,231,27765,4537,25489,7680,240,2.6,10,9,11.3,430,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.7,-4.4,82,101700,470,1328,253,257,341,137,28742,22640,15387,4989,210,3.6,5,5,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.7,-3.9,85,101700,369,1328,276,104,0,104,10341,0,10419,3635,210,3.6,10,10,11.3,2440,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.7,-3.3,89,101700,276,1328,276,53,8,52,6047,197,5949,1942,180,2.6,10,10,11.3,2440,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.7,-3.3,89,101700,197,1328,276,47,1,47,5230,9,5245,1579,170,2.6,10,10,11.3,2440,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.7,-2.8,92,101700,137,1328,277,24,1,23,2738,0,2629,821,180,2.6,10,10,11.3,2440,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.7,-2.8,92,101700,102,1327,277,17,1,17,1942,0,1945,601,140,2.1,10,10,11.3,2440,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.7,-4.4,82,101700,91,1327,275,19,1,19,2133,0,2138,637,130,2.6,10,10,6.4,340,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.7,-3.3,89,101700,106,1327,276,34,1,34,3682,0,3693,984,150,2.6,10,10,3.2,310,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.7,-2.8,92,101700,147,1327,277,37,0,37,3606,0,3631,1196,130,2.6,10,10,3.2,310,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.7,-2.2,96,101700,210,1327,277,58,1,58,6387,17,6409,1876,150,3.6,10,10,2.4,310,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.7,-2.8,92,101700,292,1327,277,106,1,106,11480,48,11530,3180,160,4.1,10,10,2.4,430,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.7,-2.2,96,101700,388,1327,277,128,1,128,14075,61,14136,4252,160,3.1,10,10,3.2,430,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.1,-2.2,92,101800,489,1327,280,174,1,174,19169,75,19262,5910,160,4.1,10,10,4.8,880,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.1,-2.2,92,101800,590,1327,280,221,1,221,24438,84,24568,7726,150,3.6,10,10,8.0,1310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-1.7,92,101800,684,1327,282,284,0,284,29007,0,29255,9872,170,4.1,10,10,11.3,1310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-1.7,89,101800,763,1327,285,331,1,331,36656,98,36884,11669,170,4.1,10,10,11.3,180,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,-1.1,89,101800,824,1327,280,378,73,332,42309,6979,37390,12463,200,4.1,10,9,11.3,760,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,-1.1,89,101900,861,1327,288,428,97,366,47834,9582,41169,13572,180,4.1,10,10,11.3,120,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,-0.6,89,101900,872,1327,291,307,5,303,34903,450,34653,12327,230,2.6,10,10,11.3,120,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,-1.1,89,101900,856,1327,288,333,10,327,37531,938,37081,12734,230,4.1,10,10,11.3,120,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,-1.7,85,101900,815,1327,287,270,6,266,30726,521,30440,10857,230,3.6,10,10,11.3,700,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-2.2,85,101900,751,1327,266,383,262,234,43538,21954,26741,9473,230,3.6,9,7,11.3,2440,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,-2.2,82,102000,669,1327,269,321,176,232,35941,14973,26114,8710,240,3.6,9,7,11.3,2440,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-2.2,85,102000,573,1327,259,346,371,186,38663,28835,20886,6860,230,3.6,9,4,11.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-3.3,82,102000,472,1327,256,275,258,184,30028,20018,20193,5908,230,3.6,9,4,11.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.7,-3.9,85,102000,371,1327,276,63,0,63,6266,0,6314,2522,240,4.1,10,10,11.3,370,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,-2.2,-4.4,85,102100,278,1327,256,118,98,97,12808,4293,10572,2937,240,3.6,10,7,11.3,370,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-2.8,-4.4,89,102100,200,1327,242,82,95,68,8863,2061,7377,1981,250,4.6,5,2,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-2.8,-4.4,89,102100,140,1327,247,49,66,43,5322,0,4686,1274,230,2.6,7,4,11.3,310,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-2.8,-3.9,92,102100,104,1327,251,30,33,27,3308,0,2985,852,250,7.2,7,6,11.3,310,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-3.3,-5.0,88,102200,94,1327,268,14,3,14,1615,0,1617,504,270,7.2,10,10,11.3,310,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-2.8,-4.4,89,102200,109,1327,271,17,1,17,1953,0,1956,611,270,7.2,10,10,11.3,370,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-3.3,-5.6,85,102200,149,1327,268,36,0,36,3512,0,3536,1183,270,6.7,10,10,11.3,400,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-2.8,-5.6,81,102200,213,1327,270,44,1,43,4975,11,4875,1533,260,6.7,10,10,11.3,430,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-3.3,-4.4,92,102300,295,1327,252,111,78,94,12159,3438,10337,3007,250,6.2,8,7,11.3,430,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-2.8,-4.4,89,102300,390,1327,258,144,75,122,15916,4468,13541,4152,270,5.7,10,8,11.3,370,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-2.8,-5.0,85,102400,491,1327,250,228,190,158,25348,13673,17646,5614,290,5.2,10,6,11.3,460,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-2.2,-5.0,82,102400,592,1327,273,161,4,159,18308,292,18161,6315,270,6.2,10,10,11.3,460,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-2.2,-5.0,82,102400,685,1327,255,272,106,217,30744,8787,24653,8506,260,5.7,10,7,11.3,460,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-2.2,-5.0,82,102400,765,1327,273,250,1,250,28360,87,28514,10012,290,5.2,10,10,11.3,460,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-2.8,-5.0,85,102500,825,1327,270,335,9,329,37570,864,37124,12428,270,5.2,10,10,11.3,370,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.7,-4.4,82,102500,862,1327,275,326,4,323,36848,375,36731,12717,290,4.1,10,10,11.3,370,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.7,-5.0,78,102500,873,1327,275,371,10,364,41613,989,41089,13705,260,4.1,10,10,11.3,430,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.7,-5.0,78,102600,858,1327,275,366,9,360,40979,891,40565,13432,250,5.2,10,10,11.3,430,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-2.2,-5.6,78,102600,817,1327,259,407,191,289,46064,17363,32899,11456,220,4.6,9,8,11.3,430,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.7,-5.6,75,102600,753,1327,274,258,3,256,29150,264,29083,10053,260,4.1,10,10,11.3,520,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-2.2,-5.6,78,102600,671,1327,272,186,2,185,21237,156,21222,7541,270,4.1,10,10,11.3,490,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.7,-5.6,75,102600,576,1327,261,258,90,219,28482,7651,24304,7544,240,3.1,9,8,11.3,490,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-2.2,-5.6,78,102600,475,1327,272,131,6,129,14747,389,14582,4828,250,4.1,10,10,11.3,460,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-2.8,-5.0,85,102600,374,1327,270,121,3,120,13329,175,13275,4002,240,2.1,10,10,11.3,370,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-3.3,-5.6,85,102600,281,1327,268,64,2,64,7200,62,7222,2287,220,2.6,10,10,11.3,340,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-3.3,-5.6,85,102600,202,1327,268,42,4,41,4742,28,4640,1449,240,2.1,10,10,11.3,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-3.3,-4.4,92,102600,143,1327,269,29,0,29,2826,0,2846,993,240,2.6,10,10,11.3,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-3.3,-5.0,88,102600,107,1326,268,24,0,24,2332,0,2348,793,230,1.5,10,10,11.3,340,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-2.8,-5.6,81,102600,96,1326,270,30,0,30,2913,0,2932,879,270,2.1,10,10,11.3,370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-2.8,-5.0,85,102600,111,1326,270,32,0,32,3111,0,3132,973,300,2.6,10,10,11.3,370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-3.3,-4.4,92,102600,152,1326,269,45,0,45,4390,0,4420,1372,330,2.6,10,10,9.7,370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-3.3,-4.4,92,102600,215,1326,269,74,0,74,7260,0,7312,2177,40,1.5,10,10,9.7,460,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1988,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,-2.8,-3.9,92,102600,297,1326,271,91,1,91,10002,43,10041,2966,100,3.1,10,10,11.3,150,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-2.8,-3.9,92,102600,391,1326,271,133,0,133,13253,0,13355,4376,100,3.1,10,10,11.3,150,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-2.8,-3.3,96,102600,493,1326,272,159,1,159,17671,72,17752,5651,90,4.1,10,10,4.8,150,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-2.2,-3.3,92,102500,593,1326,274,228,0,228,23119,0,23310,7895,90,4.1,10,10,4.8,120,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-2.8,85,102500,687,1326,281,275,0,275,28105,0,28346,9768,100,3.6,10,10,8.0,120,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-2.8,82,102500,766,1326,284,286,1,285,32097,91,32170,10854,100,5.2,10,10,11.3,180,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,-2.2,82,102400,827,1326,287,330,0,329,34124,0,34326,12451,90,4.1,10,10,11.3,370,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,-2.8,73,102400,864,1326,291,339,0,338,35170,0,35385,13069,110,3.1,10,10,11.3,400,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,-2.2,76,102400,875,1326,292,358,1,357,40209,97,40352,13593,110,3.6,10,10,11.3,310,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,-1.7,82,102300,860,1326,290,329,1,328,37105,94,37219,12805,100,4.1,10,10,11.3,700,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,-1.7,82,102300,819,1326,290,326,0,326,33683,0,33985,12294,90,4.1,10,10,11.3,700,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,-1.7,82,102300,755,1326,290,289,0,288,29699,0,29856,10792,90,5.2,10,10,11.3,700,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,-3.9,73,102200,673,1326,285,248,0,248,25322,0,25537,9099,90,5.2,10,10,11.3,610,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-2.8,82,102200,578,1326,284,226,1,225,24893,86,24916,7674,80,4.1,10,10,11.3,610,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-2.8,82,102200,477,1326,284,175,1,175,19214,75,19308,5819,90,5.7,10,10,11.3,520,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-2.2,89,102100,376,1326,282,118,1,118,13020,57,13074,3982,80,5.2,10,10,3.2,520,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.1,-3.3,85,102100,284,1326,279,95,0,95,9375,0,9443,2946,50,6.2,10,10,6.4,460,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.7,-3.9,85,102200,205,1326,276,59,0,59,5782,0,5823,1865,60,6.2,10,10,11.3,370,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-2.2,-3.9,89,102100,145,1326,274,45,0,45,4386,0,4416,1334,50,6.2,10,10,11.3,400,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-2.8,-4.4,89,102000,109,1326,271,24,0,24,2332,0,2348,799,40,6.2,10,10,11.3,370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-3.3,-5.0,88,102100,98,1326,268,22,0,22,2136,0,2150,726,60,6.7,10,10,11.3,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-3.9,-5.6,88,102000,113,1326,265,26,0,26,2528,0,2545,856,40,6.7,10,10,11.3,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-5.0,-6.1,92,102000,154,1326,260,34,0,34,3319,0,3342,1150,40,6.7,10,10,6.4,150,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-5.6,-6.1,96,101900,217,1326,233,76,153,51,8494,2400,5716,1749,40,7.7,4,3,8.0,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-6.1,-6.7,96,101900,298,1326,226,143,355,64,16199,11891,7271,2351,50,5.2,1,1,8.0,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-5.6,-6.7,92,101800,393,1326,227,209,484,66,24315,21310,7699,2679,50,6.7,2,1,8.0,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-5.0,-6.7,88,101800,494,1326,225,309,627,76,36470,33530,8995,3275,50,7.7,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-4.4,-6.7,85,101800,595,1326,227,395,686,87,47150,40951,10415,3936,50,8.8,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-4.4,-6.7,85,101800,688,1326,227,480,732,100,57717,46734,12063,4689,50,8.8,1,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-3.9,-6.1,85,101800,768,1326,229,555,776,106,67376,50713,12911,5141,50,8.8,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-3.3,-6.1,81,101700,828,1326,231,606,792,112,74003,52562,13724,5548,40,8.8,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-2.8,-6.1,78,101800,865,1326,233,642,806,116,78659,53906,14263,5813,50,7.7,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-2.8,-5.6,81,101800,877,1326,234,654,813,117,80213,54383,14401,5884,30,8.2,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-2.8,-5.6,81,101800,861,1326,234,638,800,118,78012,53643,14480,5891,40,7.7,1,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-2.2,-5.0,82,101800,820,1326,241,565,710,125,68326,48238,15172,6083,40,8.8,5,1,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-2.2,-5.0,82,101800,757,1326,241,504,673,119,60522,45108,14341,5649,50,9.3,3,1,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-2.2,-5.0,82,101800,675,1326,241,449,684,101,53797,43432,12140,4693,30,7.7,5,1,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-2.2,-5.0,82,101800,580,1326,241,355,580,102,41714,35880,12025,4452,40,7.7,5,1,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-2.8,-5.0,85,101800,479,1326,239,245,452,82,28631,24284,9611,3446,40,7.7,5,1,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-2.8,-5.0,85,101900,379,1326,239,198,440,73,22748,19556,8411,2860,50,6.7,5,1,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-3.3,-5.6,85,101900,286,1326,236,134,387,52,15359,10373,5975,1971,40,6.2,3,1,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-3.9,-5.6,88,101900,207,1326,230,87,289,43,9809,2689,4861,1516,40,6.2,1,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-4.4,-6.1,88,102000,148,1326,228,52,182,33,5806,0,3694,1105,50,5.7,1,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-5.6,-6.7,92,102000,111,1326,223,43,263,21,4871,0,2383,728,50,5.7,1,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-5.6,-7.8,85,102000,100,1326,222,37,242,19,4191,0,2156,656,50,5.7,1,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-6.1,-7.2,92,102000,115,1326,221,45,273,21,5112,0,2390,734,60,6.2,1,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-6.7,-7.8,92,102000,156,1326,219,68,355,27,7764,0,3089,971,60,5.2,1,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-6.7,-7.8,92,102000,219,1326,219,109,465,33,12631,3284,3831,1256,60,5.7,1,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-6.7,-8.3,88,102000,300,1326,218,168,572,39,19812,14054,4607,1581,70,5.2,1,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-6.7,-7.8,92,102000,395,1326,219,245,675,45,29382,25880,5406,1936,60,4.6,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-5.6,-7.2,88,102100,496,1326,223,331,747,53,40179,36144,6446,2396,60,4.1,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-5.0,-6.7,88,102100,596,1326,225,418,796,60,44334,77276,9045,1370,70,4.1,0,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-3.9,-5.6,88,102100,690,1326,230,500,834,67,52972,82351,9905,1561,70,4.6,0,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-2.8,-5.0,85,102100,769,1326,234,573,862,73,60623,85942,10607,1747,70,5.2,0,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.7,-4.4,82,102100,830,1326,238,624,862,85,65774,86350,12123,1976,80,4.6,2,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.1,-3.9,82,102100,867,1326,241,655,851,99,81194,54628,12311,5051,70,4.1,4,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.7,-4.4,82,102100,878,1326,238,667,865,94,70105,86881,13218,2178,90,4.6,3,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.1,-3.9,82,102000,863,1326,246,602,772,100,74523,49655,12419,5089,70,5.2,6,1,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.1,-3.9,82,102000,822,1326,251,559,595,190,65465,45625,22356,8588,80,6.2,3,3,16.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.1,-3.9,82,102000,759,1326,251,528,696,130,62987,47635,15567,6095,80,6.2,3,3,16.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.7,-3.9,85,102000,677,1326,249,396,549,116,46955,36129,13803,5283,70,5.7,3,3,16.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.1,-3.9,82,102000,582,1326,253,390,623,117,45349,40254,13655,4982,90,6.2,4,4,16.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-2.2,-4.4,85,102000,481,1326,251,194,300,86,22597,16401,10048,3589,90,6.2,5,5,16.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-2.2,-3.3,92,102000,381,1326,254,179,244,109,19915,13431,12175,3824,90,6.2,6,6,16.1,3660,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-3.3,-4.4,92,102000,288,1326,249,114,154,80,12626,5848,8892,2696,90,6.2,6,6,16.1,3660,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-3.9,-4.4,96,102000,209,1326,241,101,355,46,11336,3963,5177,1600,90,5.2,3,3,1.6,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-5.0,-5.6,96,102000,150,1326,226,61,322,26,6954,0,2970,929,80,4.6,1,0,1.6,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-5.6,-6.1,96,102000,113,1325,224,44,266,21,4992,0,2387,732,80,4.1,1,0,2.4,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-6.7,-7.8,92,102000,102,1325,219,38,240,19,4312,0,2160,659,80,4.1,1,0,2.0,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-7.2,-8.3,92,102000,117,1325,217,46,274,22,5215,0,2499,765,80,5.2,1,0,6.4,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-7.8,-8.9,92,102100,157,1325,214,69,367,27,7889,0,3093,974,90,4.6,0,0,8.0,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-7.8,-8.9,92,102000,220,1325,214,110,474,32,12791,3385,3727,1227,80,4.6,0,0,3.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-6.7,-7.2,96,102000,302,1325,241,100,112,74,11211,4235,8323,2624,70,5.2,8,8,0.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-6.1,-7.2,92,102000,396,1325,228,170,322,74,19621,15045,8566,2947,80,5.7,2,2,1.2,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-5.0,-6.1,92,102000,497,1325,237,263,405,112,30128,25017,12878,4479,90,5.2,6,4,1.2,150,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-3.9,-5.0,92,102100,598,1325,240,286,405,103,33710,25311,12181,4547,90,7.7,6,3,1.6,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-3.3,-4.4,92,102100,691,1325,241,441,623,117,52404,41254,13953,5368,90,6.7,7,2,1.6,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-2.2,-3.9,89,102000,770,1325,245,450,547,132,53734,37602,15822,6215,90,6.7,9,2,4.8,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.1,-3.9,82,102000,831,1325,246,573,713,125,69407,48260,15197,6115,90,8.8,8,1,11.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.1,-4.4,78,102000,868,1325,253,521,561,153,62528,40036,18439,7389,90,8.2,5,4,11.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-3.9,79,102100,879,1325,272,287,63,245,33266,5232,28550,10758,90,7.7,10,9,11.3,2130,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-3.9,75,102000,864,1325,283,195,1,194,22963,77,22954,8944,80,8.8,10,10,11.3,2130,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-3.3,79,102000,823,1325,283,193,1,192,22589,77,22578,8668,90,9.3,10,10,11.3,1520,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-3.3,79,102000,760,1325,283,205,8,201,23643,631,23295,8601,90,9.3,10,10,11.3,1520,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-2.8,82,102000,678,1325,276,201,116,141,23478,8092,16536,6199,90,9.3,9,9,11.3,4570,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-2.2,85,102000,584,1325,271,258,194,173,29079,14580,19590,6642,90,8.8,8,8,11.3,4570,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-2.2,85,102000,483,1325,277,130,50,112,14829,3019,12823,4416,90,9.3,9,9,11.3,4570,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-2.2,89,101900,383,1325,282,119,1,118,13159,58,13103,4031,90,9.8,10,10,11.3,210,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-1.7,92,102000,290,1325,282,65,3,64,7334,94,7242,2322,110,9.3,10,10,11.3,180,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.1,-1.7,96,101900,211,1325,280,41,5,40,4656,39,4554,1447,110,10.3,10,10,1.6,150,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.1,-1.7,96,102000,152,1325,280,28,1,28,3175,0,3181,989,110,10.8,10,10,1.2,120,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.1,-1.7,96,101900,115,1325,280,19,0,19,1846,0,1859,679,110,9.3,10,10,0.8,120,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.1,-5.0,75,101900,104,1325,277,19,1,18,2168,0,2057,635,120,9.8,10,10,0.8,120,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.7,-2.8,92,101900,119,1325,277,20,1,20,2286,0,2289,713,110,9.3,10,10,2.4,150,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.1,-2.2,92,101900,159,1325,280,30,1,30,3400,0,3408,1061,110,10.3,10,10,2.0,150,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.1,-2.2,92,101900,222,1325,280,54,1,54,6017,17,6036,1840,110,10.8,10,10,2.0,150,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.1,-2.8,89,101900,303,1325,279,48,0,48,4745,0,4780,1889,110,10.3,10,10,1.6,120,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-1.1,96,101800,397,1325,283,121,0,121,12056,0,12149,4193,110,9.3,10,10,8.0,150,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-1.1,92,101800,498,1325,286,145,1,144,16266,68,16224,5357,110,9.8,10,10,11.3,150,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,-0.6,92,101700,599,1325,265,280,304,143,32140,20988,16483,5896,110,10.8,9,5,11.3,1520,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,-0.6,92,101700,692,1325,265,326,323,158,37820,23260,18409,6841,110,11.3,9,5,11.3,1520,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.0,92,101800,771,1325,291,217,2,216,24917,160,24928,9135,130,6.2,10,10,3.2,150,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,-0.6,89,101800,832,1325,291,238,3,236,27430,246,27343,10157,120,10.8,10,10,2.4,150,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.0,89,101700,869,1325,294,304,10,298,34602,892,34119,12198,110,9.8,10,10,2.4,150,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.0,92,101800,880,1325,277,365,139,272,41931,11882,31424,11585,110,11.3,10,8,4.8,150,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.6,92,101700,865,1325,273,504,383,254,58060,31912,29421,10941,120,9.3,10,6,4.8,150,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.0,92,101700,825,1325,267,484,438,212,56181,34450,24732,9353,120,9.3,7,5,3.2,3660,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.0,89,101600,762,1325,270,385,359,179,44791,26830,20921,7900,110,9.3,5,5,3.2,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.0,92,101600,680,1325,270,308,275,167,35488,20173,19328,7069,110,8.8,6,6,1.6,150,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.0,92,101600,586,1325,267,332,418,147,37911,29055,16857,5946,100,9.3,7,5,1.6,150,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,-0.6,92,101600,485,1325,263,262,426,106,30022,24978,12190,4246,120,8.8,8,4,1.6,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,-0.6,92,101500,385,1325,263,174,253,101,19494,13218,11358,3660,110,9.3,8,4,1.6,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-0.6,96,101500,292,1325,261,126,289,63,14241,8930,7142,2303,110,8.8,8,4,1.6,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-0.6,96,101600,213,1325,261,83,146,60,9125,2700,6619,1930,120,7.2,8,4,1.6,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-1.1,96,101600,153,1325,258,43,18,41,4731,0,4524,1303,110,6.2,8,4,1.6,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-1.1,96,101600,117,1325,253,37,101,28,4108,0,3117,914,110,7.7,7,2,1.6,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-1.1,96,101500,106,1325,258,30,66,25,3334,0,2785,817,110,8.8,8,4,1.6,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.1,-1.7,96,101600,121,1325,255,36,80,29,3996,0,3227,946,120,6.2,8,4,1.6,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.1,-1.1,100,101500,161,1325,256,50,58,43,5506,0,4750,1375,110,5.7,8,4,1.6,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.1,-1.7,96,101500,223,1325,253,84,180,54,9366,3144,6039,1846,100,6.7,6,3,1.6,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-1.1,96,101500,304,1325,258,147,319,74,16478,11740,8322,2637,110,5.7,8,4,1.6,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-1.1,92,101500,399,1325,247,219,543,56,25825,21984,6619,2349,110,7.2,1,0,11.3,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,-1.1,89,101500,499,1325,250,309,648,66,36882,32569,7897,2916,110,5.2,1,0,11.3,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,-0.6,89,101500,600,1325,252,395,707,75,47688,39724,9078,3473,110,7.2,1,0,16.1,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.0,89,101500,693,1325,255,475,741,88,57658,44737,10713,4208,130,4.6,2,0,16.1,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,0.0,85,101500,772,1325,261,540,792,79,57274,79291,11428,1802,120,6.7,1,1,16.1,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,0.0,82,101500,833,1325,267,543,652,133,65438,44181,16090,6458,110,5.2,4,2,16.1,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,0.0,82,101500,870,1325,264,593,748,101,73390,47459,12540,5152,120,4.1,3,1,11.3,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,0.6,82,101500,881,1325,266,572,705,103,70804,44786,12792,5266,80,4.1,2,1,16.1,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,0.6,86,101500,867,1325,259,622,791,104,76759,50353,12877,5282,100,5.2,2,0,16.1,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,0.0,85,101500,826,1325,265,538,617,153,64075,43515,18299,7241,90,5.2,3,2,16.1,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,0.0,85,101500,763,1325,270,395,392,169,46177,28708,19845,7565,90,5.2,4,4,16.1,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,0.0,85,101500,682,1325,265,317,395,114,37647,25487,13587,5225,110,5.7,3,2,11.3,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,0.0,85,101500,587,1325,270,297,385,127,34327,25279,14735,5338,100,3.6,7,4,2.4,3660,9,999999999,19,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-0.6,96,101500,487,1325,286,122,8,119,13857,494,13569,4635,80,3.6,10,10,1.6,90,9,999999999,19,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,0.0,100,101500,386,1325,273,125,53,109,13923,2891,12189,3861,80,5.2,8,8,1.6,2440,9,999999999,19,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-0.6,96,101500,294,1325,272,107,93,86,11798,3724,9518,2855,80,5.2,8,8,1.6,3050,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-0.6,96,101500,215,1325,268,79,175,51,8811,2464,5705,1743,80,4.1,7,7,4.8,3050,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-0.6,96,101600,155,1325,265,48,53,42,5276,0,4630,1330,90,3.6,6,6,11.3,3050,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-0.6,96,101600,119,1325,263,38,68,32,4178,0,3528,1005,100,3.1,6,5,11.3,3050,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-1.7,92,101600,108,1325,255,23,52,19,2618,0,2166,668,150,2.6,3,3,11.3,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-1.7,92,101600,122,1325,253,44,152,30,4875,0,3333,973,110,4.1,2,2,11.3,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-1.1,92,101600,162,1325,258,68,275,35,7624,0,3934,1199,80,4.1,4,3,11.3,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-1.1,92,101600,224,1325,256,99,323,45,11209,4212,5108,1622,80,4.6,3,2,11.3,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,-1.1,89,101600,305,1325,270,99,91,78,11055,3497,8740,2741,90,5.7,8,7,11.3,3050,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,-1.1,89,101600,400,1325,260,211,447,76,24300,20686,8779,3023,80,5.2,5,3,11.3,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,-0.6,85,101700,500,1325,265,219,342,90,25522,19025,10522,3789,80,4.1,5,3,16.1,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,-0.6,85,101700,601,1325,267,230,185,146,26371,12882,16810,6000,80,3.6,5,4,16.1,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,0.0,79,101700,694,1325,274,418,583,113,49792,37591,13508,5226,60,3.6,5,4,16.1,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,-0.6,76,101700,773,1325,273,375,423,129,44855,28538,15489,6109,50,4.6,5,4,16.1,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,0.0,85,101800,834,1325,272,479,381,239,55165,31307,27671,10265,70,5.7,7,5,16.1,3050,9,999999999,19,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,0.0,82,101800,871,1325,274,497,453,199,58434,34520,23510,9164,60,6.2,7,5,16.1,3050,9,999999999,19,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,0.0,85,101800,882,1325,274,464,321,250,53688,26510,29084,10945,50,6.2,8,6,16.1,3050,9,999999999,19,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,0.0,82,101800,868,1325,270,548,671,109,67417,43274,13455,5511,80,5.7,4,3,16.1,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,0.6,86,101800,827,1325,275,384,290,203,44744,22384,23770,9072,60,5.2,5,5,16.1,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,0.0,85,101800,764,1325,277,471,511,176,54903,37947,20609,7815,70,5.2,7,7,16.1,3050,9,999999999,19,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,0.0,85,101900,683,1325,277,329,245,202,37361,19393,23053,8116,70,4.6,7,7,11.3,6100,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,0.0,85,101900,589,1325,270,245,256,131,28258,17014,15169,5475,50,5.7,4,4,11.3,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.0,89,101900,488,1325,275,175,93,141,19611,6208,15869,5221,50,5.7,7,7,11.3,3050,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.0,89,102000,388,1325,268,195,408,76,22376,18365,8747,2986,60,5.2,4,4,11.3,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.0,92,102000,295,1325,265,105,148,72,11754,5134,8087,2550,60,5.7,4,4,11.3,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,-0.6,92,102000,216,1325,263,64,60,55,7100,990,6121,1842,70,4.1,4,4,11.3,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,-0.6,92,102100,157,1325,275,28,33,24,3225,0,2769,884,80,3.1,9,8,11.3,3050,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,-0.6,92,102200,120,1324,275,28,9,28,3116,0,3124,924,80,4.1,9,8,11.3,3050,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,-0.6,92,102200,109,1324,281,23,2,22,2589,0,2482,751,100,3.1,9,9,11.3,3050,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,-0.6,92,102200,123,1324,281,20,3,19,2301,0,2190,691,70,4.6,9,9,11.3,3050,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,102200,163,1324,281,25,0,25,2439,0,2456,926,90,4.1,10,9,11.3,3050,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-0.6,96,102300,225,1324,268,72,46,64,7923,1040,7067,2075,80,3.1,8,7,11.3,3050,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,-0.6,92,102300,306,1324,263,105,149,71,11819,5340,8017,2571,100,3.6,6,4,11.3,3050,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.0,92,102300,400,1324,283,115,18,110,12855,1002,12345,3968,110,4.1,10,9,11.3,3050,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.0,89,102400,501,1324,280,112,29,101,12935,1682,11705,4157,120,3.6,10,8,16.1,3050,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,0.6,89,102400,601,1324,282,239,45,219,26512,3737,24422,7831,120,3.6,10,8,16.1,3050,9,999999999,18,0.0000,0,88,0.000,0.1,1.0 +1988,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,1.1,0.6,96,102400,694,1324,278,147,50,121,17419,3281,14391,5537,150,3.6,10,8,16.1,2440,9,999999999,18,0.0000,0,88,0.000,0.1,1.0 +1988,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,2.2,0.6,89,102500,774,1324,288,156,57,123,18726,3775,14819,5870,170,2.6,10,9,11.3,790,9,999999999,19,0.0000,0,88,0.000,0.1,1.0 +1988,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,2.8,1.1,89,102500,834,1324,300,112,27,95,13844,1681,11779,4809,0,0.0,10,10,11.3,790,9,999999999,19,0.0000,0,88,0.000,0.1,1.0 +1988,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,2.2,1.1,93,102500,872,1324,297,133,3,131,16145,201,15963,6488,310,2.1,10,10,11.3,790,9,999999999,19,0.0000,0,88,0.000,0.1,1.0 +1988,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,2.2,1.1,93,102500,883,1324,297,252,3,250,29155,247,29081,10953,290,2.1,10,10,11.3,310,9,999999999,20,0.0000,0,88,0.000,0.1,1.0 +1988,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,1.7,0.6,92,102500,869,1324,294,257,8,252,29646,664,29228,10912,310,1.5,10,10,11.3,310,9,999999999,20,0.0000,0,88,0.000,0.1,1.0 +1988,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,1.7,0.6,92,102500,828,1324,294,181,7,176,21332,514,20837,8127,280,2.6,10,10,4.0,240,9,999999999,19,0.0000,0,88,0.000,0.1,1.0 +1988,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,1.1,0.6,96,102500,765,1324,292,193,6,190,22365,457,22122,8292,290,2.6,10,10,6.4,270,9,999999999,19,0.0000,0,88,0.000,0.1,1.0 +1988,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,1.1,0.6,96,102500,684,1324,292,185,2,184,21170,152,21155,7618,330,5.7,10,10,8.0,430,9,999999999,18,0.0000,0,88,0.000,0.1,1.0 +1988,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,1.1,0.6,96,102500,590,1324,292,170,1,170,19206,74,19294,6617,330,3.6,10,10,9.7,430,9,999999999,17,0.0000,0,88,0.000,0.1,1.0 +1988,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,1.1,0.6,96,102500,489,1324,292,86,2,85,10039,107,9953,3585,290,3.1,10,10,9.7,430,9,999999999,16,0.0000,0,88,0.000,0.1,1.0 +1988,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,1.1,0.6,96,102500,389,1324,292,63,1,63,7340,41,7359,2573,290,2.6,10,10,8.0,310,9,999999999,15,0.0000,0,88,0.000,0.1,1.0 +1988,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,1.1,0.6,96,102500,297,1324,292,41,0,41,4047,0,4077,1646,320,4.1,10,10,3.2,310,9,999999999,15,0.0000,0,88,0.000,0.1,1.0 +1988,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,1.1,0.6,96,102500,218,1324,292,34,0,34,3332,0,3356,1287,330,4.1,10,10,8.0,1520,9,999999999,14,0.0000,0,88,0.000,0.1,1.0 +1988,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,0.6,0.6,100,102600,158,1324,290,42,0,42,4094,0,4123,1344,280,4.1,10,10,9.7,310,9,999999999,13,0.0000,0,88,0.000,0.1,1.0 +1988,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,0.6,0.6,100,102600,122,1324,276,35,5,34,3836,0,3737,1056,300,3.1,10,8,6.4,60,9,999999999,13,0.0000,0,88,0.000,0.1,1.0 +1988,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,0.6,0.0,96,102600,110,1324,275,27,6,26,3001,0,2897,852,350,2.6,10,8,1.6,6100,9,999999999,12,0.0000,0,88,0.000,0.1,1.0 +1988,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,0.6,0.0,96,102500,125,1324,275,27,3,27,3022,0,3029,911,30,3.6,10,8,3.2,6100,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,102500,164,1324,289,36,33,32,4070,0,3626,1128,60,2.6,10,10,11.3,6100,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.6,100,102600,226,1324,290,44,10,42,5013,115,4796,1544,260,3.1,10,10,0.8,120,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.6,100,102500,307,1324,290,67,1,67,7577,34,7601,2468,250,3.6,10,10,0.4,120,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.6,100,102500,401,1324,290,81,0,81,8070,0,8132,3185,230,2.1,10,10,0.2,120,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.6,96,102500,502,1324,292,103,3,102,11887,174,11813,4193,170,3.1,10,10,6.4,7620,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,1.1,96,102500,602,1324,295,146,6,144,16757,413,16597,5949,200,2.1,10,10,11.3,2130,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.1,89,102500,695,1324,291,244,126,177,28064,9398,20452,7474,140,2.6,10,9,11.3,2130,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.1,89,102500,774,1324,275,418,345,216,48020,27489,24940,9165,140,3.1,10,5,11.3,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,1.7,89,102400,835,1324,280,434,259,271,49477,22258,31069,11197,150,3.6,10,6,11.3,7620,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,2.2,86,102400,872,1324,276,575,527,228,66870,41756,26654,10176,160,3.1,10,2,11.3,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,2.2,86,102400,884,1324,272,590,631,168,70398,45008,20135,8055,160,3.6,5,1,11.3,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,2.8,89,102300,869,1324,273,579,618,173,68755,44442,20636,8192,180,4.1,5,1,11.3,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,2.8,96,102300,829,1324,304,221,3,219,25593,236,25491,9617,170,4.1,10,10,0.4,60,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,3.3,100,102300,767,1324,279,412,368,199,47541,28166,23075,8589,140,4.1,5,5,0.8,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,2.2,96,102300,685,1324,293,251,112,193,28607,8616,22104,7888,150,4.1,9,9,1.6,1520,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,2.8,96,102200,591,1324,304,107,7,104,12566,423,12255,4568,160,3.1,10,10,6.4,310,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,2.2,93,102200,491,1324,303,127,7,125,14375,437,14206,4828,150,3.6,10,10,8.0,310,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,2.8,96,102200,391,1324,304,114,2,114,12660,111,12712,4005,120,2.1,10,10,9.7,340,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,2.2,96,102100,298,1324,286,70,49,59,7968,1443,6735,2215,100,3.1,8,8,11.3,310,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.7,93,102100,219,1324,300,49,37,43,5551,377,4884,1554,110,4.1,10,10,11.3,150,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.6,96,102100,159,1324,258,53,128,37,5903,0,4132,1240,110,4.1,5,1,16.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.6,96,102100,123,1324,270,34,16,33,3739,0,3639,1041,80,3.6,8,6,16.1,3050,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.6,96,102000,111,1324,270,34,22,32,3718,0,3509,980,90,3.6,9,6,16.1,6100,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,102000,126,1324,275,23,10,22,2620,0,2511,781,70,2.6,9,8,16.1,6100,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.6,92,102000,165,1324,276,60,59,52,6520,364,5670,1565,80,3.1,9,7,16.1,3960,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.6,92,101900,227,1324,276,69,43,62,7618,927,6868,2044,80,3.1,9,7,16.1,6100,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.7,93,101900,308,1324,281,92,60,78,10277,2275,8743,2755,70,3.1,9,7,16.1,3960,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.1,89,101800,402,1324,275,182,295,92,20647,14856,10473,3509,100,3.1,7,5,16.1,3960,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.1,93,101800,502,1324,297,87,4,85,10186,216,9983,3624,110,4.1,10,10,11.3,1520,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,1.7,89,101800,602,1324,303,163,5,161,18542,359,18396,6455,110,4.1,10,10,11.3,1520,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,1.7,86,101800,695,1324,291,358,265,219,40477,21526,24889,8667,120,3.1,10,8,11.3,1520,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,1.7,86,101800,775,1324,291,358,243,215,41141,19276,24833,9141,90,2.6,10,8,11.3,1520,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.1,2.8,80,101700,835,1324,296,449,395,199,52447,29932,23358,8986,110,2.6,10,7,11.3,1520,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.1,3.3,83,101700,873,1324,308,321,61,281,36709,5227,32320,11794,80,3.1,10,9,11.3,1520,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,2.2,86,101700,885,1324,299,367,60,326,41569,5492,37152,13063,20,4.1,10,9,11.3,1520,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.0,2.2,83,101700,870,1324,302,368,124,287,42008,10781,32952,11935,30,4.1,10,9,11.3,2130,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.0,2.8,86,101700,830,1324,288,499,490,192,58399,36699,22578,8714,50,4.6,7,6,16.1,6100,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,1.7,86,101700,767,1324,283,415,433,164,48657,31142,19313,7416,30,6.2,8,6,16.1,6100,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,1.1,86,101700,686,1324,275,389,456,152,45213,32155,17742,6621,30,5.7,7,4,16.1,6100,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,2.2,89,101700,592,1324,279,282,346,127,32618,22510,14747,5366,40,5.7,7,4,16.1,6100,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,1.7,89,101600,492,1324,276,249,299,138,27973,19624,15569,5178,50,5.7,10,4,16.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.1,89,101700,392,1324,273,181,261,104,20273,13874,11693,3779,50,5.7,10,4,16.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.1,89,101700,299,1324,275,118,172,79,13129,6460,8820,2738,40,5.7,8,5,16.1,6100,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.1,89,101600,220,1324,278,80,72,68,8735,1685,7452,2125,40,5.7,8,6,16.1,6100,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.1,89,101600,161,1324,285,29,30,26,3326,0,2987,951,40,5.7,8,8,16.1,3050,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,0.6,89,101600,124,1324,282,35,31,32,3862,0,3541,1024,40,6.2,8,8,16.1,3050,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.0,89,101600,112,1324,280,20,12,19,2285,0,2174,676,50,6.2,8,8,16.1,3050,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.0,89,101600,126,1324,280,34,39,30,3779,0,3343,987,50,6.2,8,8,16.1,3050,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,101500,166,1324,289,34,5,34,3830,0,3839,1186,50,6.7,10,10,16.1,3050,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,101500,228,1324,271,64,50,56,7130,946,6257,1914,60,6.7,10,7,1.2,1220,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,101500,308,1324,289,89,52,77,9960,1985,8646,2734,60,6.2,10,10,0.8,60,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,101500,402,1324,281,127,72,105,14261,3917,11835,3858,60,6.7,10,9,0.8,60,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,101500,503,1324,275,129,10,125,14655,635,14257,4892,60,6.2,10,8,1.2,1520,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.6,96,101500,603,1324,292,143,6,141,16448,410,16285,5863,60,6.7,10,10,1.6,60,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.6,96,101500,696,1324,292,180,6,177,20711,448,20460,7482,70,6.7,10,10,1.2,60,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.6,96,101500,775,1324,292,204,4,201,23580,310,23347,8710,70,6.7,10,10,1.2,90,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,1.1,96,101500,836,1324,295,235,9,230,27155,725,26717,10013,70,7.2,10,10,1.2,120,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,1.1,96,101400,873,1324,295,245,6,241,28385,488,28071,10609,80,7.7,10,10,1.2,120,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.1,93,101400,885,1324,297,259,8,253,29951,660,29418,11067,80,7.7,10,10,1.2,120,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,1.1,96,101400,871,1324,295,262,4,259,30169,335,29989,11147,70,7.2,10,10,1.2,120,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,1.1,96,101400,831,1324,295,260,5,257,29755,422,29574,10783,70,7.2,10,10,1.2,150,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.6,96,101400,768,1324,292,260,0,260,26740,0,26977,10329,70,7.7,10,10,1.2,150,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.6,96,101300,687,1324,292,225,1,225,25353,83,25486,8753,70,7.2,10,10,1.2,150,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,101300,593,1324,289,211,0,211,21382,0,21560,7604,70,7.7,10,10,1.2,150,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,101300,493,1324,289,166,0,166,16676,0,16809,5821,70,7.7,10,10,1.2,150,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-0.6,96,101300,393,1324,286,130,1,130,14307,61,14370,4353,80,7.7,10,10,1.2,150,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-0.6,100,101300,300,1324,284,92,0,92,9088,0,9156,3021,90,6.2,10,10,1.2,180,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.1,-1.1,100,101300,221,1324,281,63,1,63,6931,22,6955,2038,80,7.2,10,10,1.2,180,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.1,-1.7,96,101200,162,1324,280,39,1,39,4334,0,4346,1294,80,8.2,10,10,1.2,150,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.7,-2.2,96,101200,125,1323,277,32,0,32,3113,0,3134,1027,70,7.2,10,10,0.8,150,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.7,-2.2,96,101200,113,1323,277,26,0,26,2527,0,2544,860,80,6.2,10,10,0.8,150,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.7,-3.3,89,101200,127,1323,276,29,0,29,2823,0,2842,966,70,6.2,10,10,0.8,150,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.7,-2.2,96,101200,166,1323,277,37,0,37,3613,0,3638,1264,80,6.2,10,10,0.8,150,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-2.2,-2.8,96,101100,228,1323,275,32,0,32,3143,0,3165,1242,60,6.2,10,10,2.4,150,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.7,-2.2,96,101100,309,1323,277,45,0,45,4451,0,4484,1804,70,5.7,10,10,3.2,150,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.7,-2.2,96,101100,403,1323,277,62,1,62,7266,43,7284,2572,60,6.2,10,10,3.2,150,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.1,-1.7,96,101100,503,1323,280,84,0,84,8450,0,8518,3592,80,6.2,10,10,2.4,120,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.1,-1.7,96,101100,603,1323,280,119,1,119,13882,65,13933,5142,90,5.7,10,10,2.4,120,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.1,-1.1,100,101100,696,1323,281,237,0,237,24237,0,24446,9119,70,5.7,10,10,0.8,90,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-0.6,100,101000,775,1323,284,244,0,243,25119,0,25238,9952,80,6.7,10,10,0.8,90,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-1.1,96,101000,836,1323,283,302,1,302,34168,91,34371,12003,80,6.2,10,10,0.8,90,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-0.6,96,101000,874,1323,286,298,1,297,33975,89,34060,12238,80,6.2,10,10,0.8,90,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-0.6,96,101000,886,1323,286,283,1,282,32465,87,32536,11934,80,6.2,10,10,0.8,120,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-0.6,96,101000,871,1323,286,284,1,283,32492,87,32564,11842,60,6.2,10,10,0.8,120,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-0.6,96,100900,831,1323,286,262,1,261,29966,85,30017,10903,70,6.2,10,10,0.8,120,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-0.6,96,100900,769,1323,286,266,1,265,30050,87,30105,10462,90,8.2,10,10,0.8,120,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-0.6,96,100900,688,1323,286,222,1,222,25056,83,25186,8689,70,7.7,10,10,0.8,120,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-0.6,100,100800,594,1323,284,177,0,177,17941,0,18091,6836,70,6.2,10,10,0.8,120,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-0.6,100,100800,494,1323,284,137,1,136,15429,66,15381,5142,80,7.2,10,10,0.8,120,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-0.6,100,100800,394,1323,284,118,1,118,13096,58,13150,4118,80,6.2,10,10,0.8,120,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-0.6,100,100800,301,1323,284,76,1,76,8494,37,8523,2679,80,6.2,10,10,0.8,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.1,-1.1,100,100800,222,1323,281,57,0,57,5593,0,5633,1916,80,6.2,10,10,0.8,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-1.1,96,100800,162,1323,283,22,0,22,2147,0,2162,832,90,6.2,10,10,2.4,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-0.6,100,100800,125,1323,284,20,0,20,1945,0,1958,724,100,6.7,10,10,2.4,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-0.6,100,100800,114,1323,284,14,0,14,1360,0,1369,526,90,6.2,10,10,1.6,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-1.7,92,100800,128,1323,282,29,0,29,2822,0,2841,968,100,6.7,10,10,6.4,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-1.1,96,100700,167,1323,283,39,0,39,3808,0,3834,1314,90,7.2,10,10,6.4,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-1.1,96,100700,229,1323,283,55,0,55,5400,0,5438,1895,90,7.2,10,10,6.4,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-0.6,96,100700,309,1323,268,102,61,88,11296,2590,9782,2992,90,6.7,10,7,4.8,640,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-0.6,96,100600,403,1323,286,126,2,126,13945,121,14004,4346,80,6.2,10,10,4.8,270,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-0.6,96,100600,503,1323,286,132,2,131,14945,130,14892,5063,80,7.7,10,10,4.8,6100,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,-1.7,85,100600,603,1323,287,169,3,168,19182,222,19155,6659,80,7.2,10,10,11.3,6100,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,-1.7,82,100600,696,1323,290,188,10,183,21591,764,21115,7671,90,7.2,10,10,8.0,370,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,-2.2,82,100600,775,1323,287,221,6,218,25402,485,25185,9242,80,7.2,10,10,11.3,430,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,-1.1,89,100600,836,1323,288,262,2,261,29995,171,30046,10943,70,8.2,10,10,8.0,370,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,-1.7,85,100500,874,1323,287,279,6,275,32017,519,31737,11642,70,8.8,10,10,11.3,2440,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,-1.1,82,100500,886,1323,293,305,3,303,34796,269,34773,12511,80,7.7,10,10,11.3,2440,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,-1.1,82,100500,872,1323,293,313,2,311,35548,182,35533,12579,90,8.2,10,10,11.3,2440,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,-0.6,89,100500,832,1323,291,273,1,273,31116,87,31292,11237,60,7.2,10,10,11.3,240,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,-1.1,82,100500,770,1323,285,260,76,216,29868,6109,24939,9142,80,9.3,10,9,11.3,270,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,-1.7,85,100400,689,1323,280,296,131,228,33351,10978,25825,8844,60,7.7,10,9,11.3,310,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-1.1,92,100400,595,1323,286,150,28,137,17274,1905,15841,5703,70,8.8,10,10,11.3,310,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,-1.1,89,100400,495,1323,288,105,1,105,12079,59,12122,4266,70,8.8,10,10,11.3,310,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-1.1,92,100400,395,1323,286,85,8,83,9712,384,9514,3226,70,7.2,10,10,11.3,310,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-1.1,92,100400,302,1323,286,62,2,61,7058,64,6964,2287,60,7.7,10,10,11.3,310,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-1.1,92,100400,223,1323,286,42,1,42,4782,12,4793,1538,70,8.8,10,10,11.3,310,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-1.1,92,100400,163,1323,286,33,1,33,3722,0,3730,1153,80,6.7,10,10,11.3,270,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-1.1,92,100400,126,1323,286,23,0,23,2237,0,2253,811,60,7.2,10,10,11.3,270,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-1.1,96,100400,114,1323,283,24,2,24,2696,0,2702,815,70,7.2,10,10,11.3,270,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-2.2,89,100400,128,1323,282,28,1,28,3136,0,3143,946,70,7.7,10,10,11.3,270,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-1.7,92,100400,167,1323,282,45,0,44,4394,0,4327,1427,70,8.2,10,10,11.3,180,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-1.7,92,100400,229,1323,282,60,0,60,5892,0,5934,2012,50,7.2,10,10,11.3,180,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-1.1,96,100400,309,1323,283,86,1,86,9544,42,9579,2950,60,7.7,10,10,11.3,180,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-1.1,96,100300,403,1323,283,79,1,79,9083,47,9111,3132,60,8.2,10,10,1.2,120,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-1.1,96,100400,503,1323,283,90,0,90,9053,0,9125,3803,60,7.7,10,10,2.4,150,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-0.6,96,100400,603,1323,286,130,1,129,15067,66,15009,5483,70,7.7,10,10,2.4,150,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-0.6,96,100400,696,1323,286,246,2,245,27588,172,27626,9308,70,7.7,10,10,11.3,150,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,-0.6,92,100400,775,1323,289,262,1,261,29673,87,29724,10428,60,7.7,10,10,11.3,150,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,-0.6,92,100400,836,1323,289,299,1,299,33857,90,34057,11940,70,7.2,10,10,11.3,150,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,-0.6,89,100400,874,1323,291,286,2,285,32720,175,32794,11925,70,7.2,10,10,11.3,150,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.0,92,100400,886,1323,291,300,0,300,31172,0,31458,12436,60,7.2,10,10,11.3,150,9,999999999,11,0.0000,0,88,0.000,0.1,1.0 +1988,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,1.1,0.0,92,100400,872,1323,291,288,1,287,32915,88,32991,11963,70,8.2,10,10,11.3,180,9,999999999,11,0.0000,0,88,0.000,0.1,1.0 +1988,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,1.1,-0.6,89,100400,832,1323,291,283,1,282,32175,88,32246,11480,60,8.8,10,10,11.3,240,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,-0.6,89,100400,770,1323,291,268,1,267,30267,88,30324,10526,80,8.2,10,10,11.3,240,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,-0.6,89,100400,689,1323,291,137,0,137,14002,0,14122,6117,80,7.2,10,10,11.3,210,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,-0.6,92,100400,596,1323,289,113,1,112,13223,63,13153,4874,60,7.2,10,10,4.0,180,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,100400,495,1323,289,171,0,171,17183,0,17321,5948,70,6.7,10,10,4.0,180,9,999999999,14,0.0000,0,88,0.000,0.1,1.0 +1988,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,0.6,-0.6,92,100400,395,1323,289,119,0,119,11856,0,11947,4153,40,6.2,10,10,4.0,150,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,100400,303,1323,289,90,1,90,9925,42,9963,3000,50,6.2,10,10,0.8,150,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.6,100,100400,224,1323,290,63,1,63,6938,22,6962,2052,70,5.7,10,10,0.8,120,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,100400,163,1323,289,44,0,44,4293,0,4323,1413,60,6.2,10,10,0.8,120,9,999999999,16,0.0000,0,88,0.000,0.1,1.0 +1988,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,0.0,0.0,100,100400,126,1323,287,28,0,28,2723,0,2741,942,60,5.2,10,10,1.6,150,9,999999999,17,0.0000,0,88,0.000,0.1,1.0 +1988,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,0.0,0.0,100,100400,114,1323,287,30,0,30,2914,0,2934,955,60,5.2,10,10,0.4,90,9,999999999,17,0.0000,0,88,0.000,0.1,1.0 +1988,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,0.6,-0.6,92,100400,128,1323,289,30,0,30,2918,0,2938,995,80,5.2,10,10,3.2,150,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,100400,167,1323,289,27,0,27,2635,0,2654,994,40,5.2,10,10,1.6,150,9,999999999,18,0.0000,0,88,0.000,0.1,1.0 +1988,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,0.6,0.0,96,100400,229,1323,289,57,0,57,5595,0,5635,1945,50,4.1,10,10,1.6,150,9,999999999,18,0.0000,0,88,0.000,0.1,1.0 +1988,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,0.6,0.6,100,100400,309,1323,290,44,0,44,4349,0,4381,1772,60,3.6,10,10,3.2,150,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.6,96,100400,403,1323,292,114,0,114,11361,0,11449,4084,60,3.1,10,10,11.3,150,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,1.1,96,100400,503,1323,295,138,1,137,15561,66,15514,5225,60,3.1,10,10,11.3,150,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.6,92,100400,603,1323,294,179,1,179,20202,75,20298,6953,120,2.1,10,10,11.3,310,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.6,92,100500,696,1323,294,212,0,211,21671,0,21755,8473,360,2.6,10,10,11.3,240,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,0.6,89,100500,775,1323,297,265,1,264,29976,87,30031,10505,330,2.1,10,10,11.3,980,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,0.6,89,100500,836,1323,297,279,1,278,31769,87,31836,11411,270,4.1,10,10,11.3,2440,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.6,92,100600,874,1323,294,279,1,278,31975,86,32042,11733,270,4.6,10,10,11.3,2440,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.6,92,100600,886,1323,294,306,0,305,31790,0,31978,12571,290,3.6,10,10,11.3,1070,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.6,92,100600,872,1323,294,280,1,279,32070,86,32139,11747,270,5.2,10,10,11.3,700,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.6,92,100700,833,1323,286,327,127,247,37567,10546,28530,10518,260,6.2,10,9,11.3,610,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,0.6,89,100700,770,1323,275,453,439,197,52412,33839,22903,8561,270,6.2,9,6,11.3,460,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.6,92,100700,690,1323,294,236,8,232,26546,670,26235,8955,270,5.7,10,10,11.3,370,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.6,92,100700,596,1323,276,226,62,198,25262,4905,22243,7361,260,6.2,10,7,4.0,210,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.6,92,100700,496,1323,260,282,527,84,33016,28362,9864,3575,270,6.7,1,1,11.3,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.6,92,100800,396,1323,260,206,441,74,23755,19889,8558,2956,250,6.2,1,1,11.3,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.0,92,100800,303,1323,261,135,295,67,15257,10035,7595,2460,250,6.2,2,2,11.3,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,100900,224,1323,275,54,26,50,6064,403,5631,1758,250,6.2,9,8,11.3,1130,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,100800,164,1323,289,38,0,38,3708,0,3734,1282,240,4.1,10,10,11.3,980,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,100900,127,1322,289,20,2,20,2299,0,2303,727,240,4.1,10,10,11.3,980,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,100900,115,1322,289,19,1,19,2175,0,2179,681,240,4.1,10,10,9.7,980,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-1.7,89,100900,128,1322,262,24,12,23,2732,0,2623,816,240,5.2,8,5,11.3,2440,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-0.6,96,100800,167,1322,272,31,13,30,3532,0,3426,1082,250,7.7,8,8,3.2,150,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-1.1,92,100800,229,1322,262,62,116,42,7078,1477,4806,1553,260,6.7,5,5,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-0.6,96,100800,309,1322,286,71,18,67,8042,628,7611,2480,240,4.1,10,10,8.0,150,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,100800,402,1322,289,66,1,66,7695,44,7715,2711,240,5.2,10,10,11.3,150,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,-0.6,92,100900,502,1322,261,280,363,142,31497,24506,16042,5353,230,4.1,9,3,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,-0.6,92,100900,602,1322,255,388,609,110,45535,38318,12955,4828,230,4.1,7,1,11.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,-0.6,89,100900,695,1322,260,439,527,162,50897,38286,18864,7009,230,4.6,10,2,11.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,-1.1,85,100900,775,1322,262,496,535,182,57822,40300,21315,8092,240,4.6,10,3,11.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,-0.6,89,100900,836,1322,263,482,456,193,56514,34665,22737,8789,240,5.2,10,3,11.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,-0.6,85,100900,874,1322,272,376,176,260,43337,14814,30133,11211,240,7.2,10,6,11.3,7620,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.0,89,100900,886,1322,266,544,484,219,63675,37987,25764,9966,240,4.1,10,3,11.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.0,89,100800,872,1322,260,605,660,169,72089,47688,20227,8058,230,5.2,10,1,11.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.0,89,100800,833,1322,268,497,333,287,56428,29515,32774,11617,240,5.2,10,4,11.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,-0.6,85,100800,771,1322,265,505,570,172,59080,42047,20213,7724,240,4.6,10,3,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,-1.1,79,100700,690,1322,267,424,491,168,48974,36228,19492,7176,230,4.6,10,3,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,-1.7,79,100700,596,1322,266,337,317,194,37761,25044,21845,7275,240,4.1,10,4,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,-2.2,73,100700,496,1322,268,211,170,147,23643,11722,16544,5437,230,4.6,10,4,11.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,-2.2,76,100700,396,1322,266,185,311,91,21002,15789,10366,3466,230,4.6,10,4,11.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,-1.7,79,100700,303,1322,268,133,157,97,14590,7168,10683,3144,230,4.1,10,5,11.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,-2.2,76,100600,224,1322,268,72,106,54,8041,1927,6049,1859,210,5.2,10,5,11.3,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,-1.7,82,100600,164,1322,264,58,67,49,6340,327,5374,1515,220,4.1,8,4,11.3,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,-1.7,82,100600,127,1322,264,47,134,34,5178,0,3756,1079,230,5.2,8,4,11.3,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,-2.2,79,100600,115,1322,281,22,18,21,2501,0,2391,738,220,5.2,9,9,11.3,3050,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,-2.2,79,100500,128,1322,281,42,29,40,4569,0,4366,1197,230,4.1,9,9,11.3,3050,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,-1.1,85,100500,167,1322,290,42,3,42,4657,2,4671,1386,240,3.1,10,10,11.3,3350,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,-0.6,85,100500,228,1322,293,48,6,47,5430,90,5330,1693,230,4.1,10,10,11.3,3350,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.0,89,100500,309,1322,294,71,1,70,8012,36,7923,2561,220,4.1,10,10,11.3,1830,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.0,92,100400,402,1322,291,115,5,113,12841,284,12668,4060,240,4.1,10,10,11.3,1520,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.0,89,100400,502,1322,294,123,2,122,14004,126,13945,4812,230,3.6,10,10,11.3,1520,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,0.0,85,100400,602,1322,296,195,7,192,21886,547,21655,7274,210,6.2,10,10,11.3,980,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,0.0,82,100300,695,1322,299,203,1,203,23112,79,23227,8253,220,7.2,10,10,11.3,980,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,0.0,85,100300,775,1322,296,251,1,250,28522,85,28564,10146,220,6.7,10,10,11.3,880,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,-1.1,76,100300,836,1322,297,171,1,171,20242,73,20332,7985,230,5.2,10,10,11.3,790,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,-0.6,76,100200,874,1322,300,178,1,177,21143,73,21120,8374,230,4.6,10,10,11.3,880,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,1.7,86,100200,886,1322,305,178,1,177,21173,73,21150,8425,230,3.6,10,10,11.3,880,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,2.2,93,100200,872,1322,303,186,1,185,21996,74,21980,8672,230,3.6,10,10,11.3,370,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,1.7,89,100100,833,1322,303,176,1,175,20771,73,20747,8123,250,4.1,10,10,11.3,430,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.7,93,100100,771,1322,300,155,1,154,18281,70,18240,7076,250,6.2,10,10,11.3,1070,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.7,93,100000,690,1322,300,230,1,230,25887,83,26024,8917,240,2.6,10,10,11.3,1070,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.7,96,100000,597,1322,298,115,1,114,13435,63,13367,4951,240,3.6,10,10,11.3,430,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.1,93,100000,496,1322,297,105,0,105,10549,0,10634,4278,240,3.6,10,10,11.3,640,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.7,96,100000,396,1322,298,77,1,77,8851,46,8878,3054,240,2.6,10,10,11.3,640,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.7,93,99900,304,1322,278,118,105,94,12969,4577,10372,3091,230,3.6,10,6,11.3,6100,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,1.1,96,99900,224,1322,295,49,7,48,5522,100,5424,1709,230,3.1,10,10,3.2,120,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.7,96,99900,164,1322,298,16,2,16,1912,0,1913,633,210,4.6,10,10,3.2,150,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,1.1,96,99900,127,1322,287,16,10,15,1881,0,1766,570,230,2.6,10,9,3.2,150,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,1.1,100,99900,114,1322,271,30,24,28,3328,0,3114,913,230,2.6,10,6,4.8,610,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.6,96,99800,128,1322,292,12,2,11,1446,0,1326,433,240,2.6,10,10,11.3,370,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.6,96,99800,167,1322,278,22,15,20,2588,0,2355,773,250,3.1,10,8,11.3,310,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.6,100,99800,228,1322,290,45,0,45,4416,0,4448,1638,260,3.1,10,10,4.8,310,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.6,100,99800,308,1322,290,60,4,59,6863,126,6767,2250,280,3.1,10,10,1.2,180,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.6,100,99800,401,1322,290,55,2,54,6512,80,6407,2288,310,3.1,10,10,1.6,150,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.6,100,99800,501,1322,290,66,7,64,7903,347,7681,2850,310,3.1,10,10,1.6,640,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,99800,601,1322,289,125,5,123,14538,326,14360,5280,320,3.6,10,10,0.8,90,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,-0.6,89,99900,694,1322,291,221,2,220,25001,164,25017,8705,290,3.6,10,10,11.3,370,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,-1.1,82,99900,774,1322,293,229,5,226,26240,409,26031,9480,320,3.6,10,10,11.3,180,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,-1.1,82,99900,835,1322,293,280,1,280,31879,88,32061,11464,290,4.6,10,10,11.3,7620,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,-0.6,85,100000,873,1322,285,364,127,280,41707,11018,32266,11791,260,4.6,10,9,11.3,7620,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,-0.6,89,100000,886,1322,291,260,14,251,30114,1158,29229,11024,300,4.1,10,10,11.3,1520,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.0,89,100000,872,1322,294,293,1,292,33447,88,33528,12109,280,3.6,10,10,11.3,1520,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,-0.6,89,100000,833,1322,291,182,2,180,21447,149,21309,8309,300,5.2,10,10,11.3,1520,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,-0.6,85,100100,771,1322,272,377,284,211,43406,22569,24415,9009,300,5.2,8,6,11.3,6100,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,-0.6,89,100100,690,1322,269,374,397,167,43221,29171,19385,7148,270,5.7,9,6,11.3,6100,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,-0.6,89,100100,597,1322,277,153,6,150,17503,422,17233,6118,270,4.1,10,8,11.3,6100,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-0.6,96,100200,496,1322,272,216,162,155,24094,11398,17368,5630,260,4.6,10,8,1.6,2440,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,-0.6,92,100200,397,1322,289,76,4,75,8761,183,8672,2992,240,4.1,10,10,1.6,150,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-0.6,96,100200,304,1322,286,61,24,56,6999,728,6442,2149,240,3.1,10,10,4.8,2440,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-0.6,96,100300,224,1322,286,39,0,39,3827,0,3855,1457,230,3.1,10,10,3.2,150,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-0.6,96,100300,164,1322,286,27,1,27,3099,0,3105,991,240,3.1,10,10,3.2,150,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-0.6,100,100300,127,1322,276,14,9,14,1656,0,1657,537,220,3.1,10,9,3.2,2440,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-0.6,100,100300,114,1322,276,28,11,27,3117,0,3013,890,240,3.1,10,9,6.4,1830,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-1.1,92,100400,128,1322,278,19,9,18,2205,0,2092,668,240,2.6,10,9,6.4,1830,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-0.6,96,100400,166,1322,278,39,14,37,4368,0,4155,1267,230,2.6,10,9,8.0,1830,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-0.6,96,100400,227,1322,278,52,23,48,5871,355,5434,1719,230,2.6,10,9,6.4,1680,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.6,100,100400,307,1322,290,74,2,73,8318,73,8233,2637,280,3.1,10,10,1.2,1520,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-0.6,96,100400,401,1322,286,69,12,66,8044,524,7715,2709,250,4.1,10,10,6.4,1520,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,-0.6,92,100400,501,1322,289,140,9,137,15791,597,15517,5219,240,3.6,10,10,6.4,1520,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.0,92,100400,601,1322,277,256,159,183,28840,12152,20715,7048,240,4.1,8,8,8.0,1520,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.0,92,100500,694,1322,291,122,6,119,14485,393,14180,5470,220,3.1,10,10,8.0,1520,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,-0.6,85,100500,774,1322,293,206,2,205,23785,157,23786,8842,250,4.1,10,10,8.0,1520,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,-0.6,85,100500,835,1322,293,284,9,278,32347,788,31845,11409,250,4.6,10,10,8.0,1520,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.0,89,100500,873,1322,294,250,4,247,28927,329,28734,10812,250,5.7,10,10,8.0,1520,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,-1.7,79,100600,885,1322,292,268,1,268,30887,85,31060,11543,240,4.1,10,10,9.7,1520,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,-1.1,79,100600,872,1322,295,275,3,273,31571,258,31519,11583,270,4.6,10,10,9.7,1830,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,-1.1,79,100600,833,1322,287,195,46,166,23127,3336,19774,7786,270,5.2,10,9,11.3,2440,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,-1.1,76,100600,771,1322,279,270,100,212,31079,7975,24526,9041,270,4.6,10,7,11.3,2440,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,-2.8,70,100600,690,1322,279,322,256,189,36867,19878,21743,7826,240,2.6,10,8,11.3,2290,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,-1.1,79,100700,597,1322,295,88,1,87,10508,59,10419,3954,280,3.1,10,10,11.3,2290,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,-0.6,89,100700,496,1322,291,133,24,124,15109,1520,14142,4846,310,4.1,10,10,11.3,2290,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,-0.6,92,100700,396,1322,289,91,4,89,10349,199,10155,3414,330,2.6,10,10,11.3,2440,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,-1.1,89,100800,304,1322,288,54,1,53,6224,29,6124,2057,300,1.5,10,10,11.3,4270,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-1.1,92,100800,224,1322,286,52,4,52,5827,68,5843,1813,310,2.1,10,10,11.3,4270,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-1.1,92,100900,164,1322,272,38,27,35,4272,0,3944,1212,320,2.6,8,8,11.3,980,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-1.1,92,100900,126,1322,268,36,6,35,3956,0,3857,1100,280,3.1,7,7,11.3,980,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-1.1,96,100900,114,1322,265,21,4,20,2395,0,2285,710,300,2.6,8,7,11.3,980,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-1.7,92,100900,127,1322,265,26,12,25,2939,0,2832,870,270,3.6,8,7,11.3,980,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-1.7,92,100900,165,1322,262,54,35,49,5910,185,5380,1525,290,2.6,7,6,11.3,1310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-2.8,85,100900,227,1322,264,47,19,43,5355,256,4911,1579,340,2.6,8,7,11.3,980,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-3.3,79,100900,307,1322,262,99,92,78,11077,3628,8757,2759,60,1.5,8,6,11.3,3050,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-2.8,82,101000,400,1322,259,190,284,104,21367,15581,11739,3833,290,2.1,9,4,11.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,-3.3,73,100900,500,1322,288,92,1,92,10718,57,10752,3867,260,2.1,10,10,11.3,3050,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,-2.2,82,101000,600,1322,273,216,104,169,24502,7738,19258,6679,320,2.1,8,8,11.3,3050,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,-2.2,82,100900,693,1322,273,219,65,185,25128,4994,21327,7725,320,2.6,8,8,11.3,3050,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,-2.2,76,100900,773,1322,268,370,223,240,42199,18752,27518,9869,10,3.1,5,5,11.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,0.0,76,100900,834,1322,289,325,130,243,37409,10740,28121,10419,60,3.6,8,8,11.3,3050,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,0.0,76,100900,872,1322,295,370,117,292,42242,10313,33532,12116,70,3.6,9,9,11.3,3050,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,-0.6,76,100800,885,1322,300,278,11,270,32011,937,31265,11601,80,5.2,10,10,11.3,3050,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,1.7,82,100800,871,1322,299,388,136,298,44198,12024,34146,12267,80,5.2,9,9,11.3,3050,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,2.2,86,100700,832,1322,308,174,2,173,20552,145,20526,8050,90,6.2,10,10,11.3,3050,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,2.2,89,100700,770,1322,306,142,15,133,16937,1008,15925,6273,70,5.2,10,10,11.3,3050,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,2.2,93,100600,690,1322,303,102,2,100,12258,123,12057,4709,70,5.2,10,10,8.0,980,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,2.8,96,100600,596,1322,304,123,8,120,14310,509,14013,5162,80,5.2,10,10,8.0,980,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,2.8,96,100500,496,1322,304,69,4,68,8211,198,8112,2995,90,3.6,10,10,8.0,980,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,3.3,96,100500,396,1322,307,80,0,80,7962,0,8024,3149,100,4.1,10,10,11.3,790,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.6,5.0,96,100500,303,1322,316,70,2,69,7885,66,7796,2520,190,2.6,10,10,11.3,1520,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,3.3,96,100500,224,1322,307,45,0,45,4410,0,4442,1630,240,2.6,10,10,11.3,1830,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,3.3,96,100500,163,1322,307,42,0,42,4094,0,4123,1377,240,2.6,10,10,9.7,370,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,2.8,96,100600,126,1322,304,29,0,29,2817,0,2837,968,220,2.1,10,10,11.3,180,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,3.3,96,100500,113,1322,307,27,0,27,2620,0,2638,888,180,1.5,10,10,2.4,150,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,2.2,96,100600,126,1322,301,31,0,31,3013,0,3033,1016,240,4.1,10,10,11.3,180,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,1.1,96,100600,165,1322,295,41,0,41,4000,0,4028,1359,250,6.2,10,10,8.0,150,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,1.1,100,100600,226,1322,292,57,0,57,5592,0,5632,1939,230,4.1,10,10,0.8,180,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.6,96,100600,306,1322,292,84,0,83,8301,0,8263,2874,220,3.6,10,10,0.4,180,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.6,96,100600,399,1322,292,128,1,128,14136,61,14196,4375,230,3.6,10,10,0.4,180,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.6,96,100700,499,1322,292,150,1,149,16793,69,16755,5511,240,4.1,10,10,1.6,180,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.1,89,100700,599,1322,300,208,0,208,21086,0,21262,7619,240,4.6,10,10,6.4,240,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.7,93,100800,692,1322,300,241,2,240,27046,169,27079,9177,240,3.1,10,10,6.4,240,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,1.1,82,100800,772,1322,305,283,1,282,31827,89,31899,10915,220,5.2,10,10,6.4,240,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,2.2,86,100800,833,1322,308,308,1,308,34758,91,34967,12143,240,4.1,10,10,6.4,240,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.6,3.3,86,100800,872,1322,315,306,2,305,34776,177,34870,12451,230,4.1,10,10,8.0,240,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.6,2.8,83,100800,884,1322,314,299,0,299,31040,0,31326,12413,230,5.2,10,10,8.0,240,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.6,2.8,83,100800,871,1322,314,325,1,324,36758,91,36870,12909,240,4.6,10,10,9.7,1520,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,2.2,86,100800,832,1322,308,277,0,277,28635,0,28895,11364,240,4.1,10,10,11.3,1520,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,2.2,89,100800,770,1322,306,256,1,255,29008,85,29055,10248,240,3.1,10,10,11.3,1520,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,2.2,89,100900,690,1322,306,239,1,239,26815,84,26960,9135,220,6.2,10,10,11.3,1520,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,1.7,89,100900,596,1322,303,200,1,200,22340,79,22453,7423,230,4.6,10,10,11.3,1370,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.1,89,100900,496,1322,300,97,1,96,11242,56,11163,3991,230,5.2,10,10,11.3,1370,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.1,89,100900,396,1322,300,110,0,110,10956,0,11041,3965,220,5.2,10,10,11.3,1370,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.7,93,101000,303,1322,300,79,1,79,8810,38,8841,2771,230,4.1,10,10,11.3,1370,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.1,93,101000,223,1322,283,71,61,61,7846,1271,6764,2021,250,6.7,9,8,11.3,1370,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.0,92,101100,163,1322,291,25,1,25,2886,0,2891,930,260,9.3,10,10,11.3,1370,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,-0.6,89,101200,125,1322,291,9,1,9,1100,0,1100,360,260,6.7,10,10,11.3,1070,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,-1.1,89,101200,112,1322,288,20,1,19,2289,0,2178,680,270,4.6,10,10,11.3,180,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,-0.6,92,101200,126,1322,281,25,7,24,2833,0,2725,841,260,5.7,10,9,11.3,180,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-1.1,92,101300,164,1322,278,49,19,47,5377,67,5173,1481,250,6.7,10,9,11.3,180,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-0.6,96,101300,225,1322,278,50,19,46,5660,268,5220,1659,240,3.6,10,9,9.7,180,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,-0.6,92,101300,305,1322,281,87,54,75,9754,2024,8437,2679,240,4.1,10,9,4.8,180,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,-0.6,85,101400,398,1322,269,170,191,113,18970,10836,12659,4044,230,3.1,5,5,11.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,-1.1,82,101400,498,1322,293,65,6,63,7791,298,7569,2806,240,4.6,10,10,3.2,180,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,-2.2,73,101400,598,1322,294,203,23,192,22783,1811,21654,7252,240,4.6,10,10,6.4,270,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,-2.2,70,101400,691,1322,282,273,138,201,31108,10963,23016,8179,260,5.2,8,8,11.3,270,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.0,0.6,73,101400,771,1322,294,354,231,219,40633,18541,25266,9259,230,3.6,8,8,11.3,430,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.6,-2.8,55,101400,832,1322,308,209,4,207,24376,314,24262,9263,240,4.1,10,10,11.3,310,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.1,-0.6,63,101500,871,1322,312,231,7,226,26915,559,26469,10125,270,5.2,10,10,11.3,310,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,7.2,-3.9,46,101400,884,1322,299,447,268,268,51534,22983,31070,11536,270,5.2,8,8,11.3,310,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.7,-2.2,54,101500,870,1322,305,307,126,223,35819,10061,26152,10022,310,3.6,9,9,11.3,3050,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,-0.6,79,101500,831,1322,298,226,29,208,26331,2265,24354,9292,280,3.6,10,10,11.3,3050,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,-0.6,82,101500,770,1322,295,235,7,231,26862,577,26543,9599,290,3.1,10,10,8.0,340,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,-0.6,89,101500,689,1322,291,178,7,174,20504,522,20135,7371,230,2.1,10,10,4.8,340,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.0,89,101500,596,1322,294,153,7,150,17501,491,17232,6120,250,3.1,10,10,11.3,460,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,0.6,89,101500,496,1322,297,127,6,125,14413,379,14243,4874,230,4.1,10,10,11.3,460,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.6,92,101600,395,1322,294,93,4,92,10544,201,10467,3498,230,2.6,10,10,11.3,460,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,0.6,89,101600,302,1322,270,142,311,71,15979,11039,8015,2572,230,3.1,5,4,11.3,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.0,92,101600,223,1322,273,69,57,59,7648,1148,6561,1976,240,2.1,8,7,11.3,3050,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.0,89,101600,162,1322,268,59,77,49,6446,340,5371,1515,200,2.1,9,4,11.3,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,-1.1,79,101600,124,1322,271,37,78,29,4126,0,3242,965,190,1.5,9,5,11.3,3050,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,0.0,85,101700,111,1322,274,23,37,19,2630,0,2176,679,130,2.1,9,6,11.3,3050,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,0.0,85,101600,125,1322,296,22,1,22,2509,0,2513,784,120,3.1,10,10,11.3,3050,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.1,89,101600,163,1322,291,43,22,40,4777,0,4456,1331,120,3.1,10,9,11.3,460,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,2.2,93,101600,224,1322,295,52,20,49,5849,291,5527,1737,80,2.6,10,9,11.3,460,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.7,93,101600,303,1322,300,54,1,54,6211,29,6227,2089,100,4.6,10,10,11.3,610,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,2.2,93,101600,397,1322,303,77,15,72,8901,663,8347,2899,110,4.1,10,10,11.3,610,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,3.3,93,101600,497,1322,309,110,9,106,12642,522,12226,4315,120,6.2,10,10,11.3,610,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.0,3.3,89,101600,597,1322,312,86,7,83,10295,395,9965,3798,120,6.2,10,10,11.3,610,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.7,3.9,83,101600,690,1322,320,106,2,105,12686,124,12608,4912,130,7.7,10,10,11.3,610,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.7,4.4,86,101600,770,1322,321,226,3,224,25859,239,25764,9401,130,7.2,10,10,11.3,610,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,8.9,5.0,77,101600,831,1322,332,297,1,296,33585,88,33670,11845,140,6.7,10,10,11.3,1430,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,9.4,6.1,80,101600,870,1322,335,257,1,256,29584,81,29632,11076,150,6.2,10,10,11.3,1430,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,10.0,6.1,77,101600,883,1322,338,273,2,272,31342,166,31406,11650,150,5.7,10,10,11.3,1680,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,7.2,5.6,89,101600,869,1322,324,172,1,171,20438,70,20411,8133,290,3.6,10,10,11.3,1370,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,3.3,93,101700,831,1322,309,274,2,273,31203,171,31266,11252,330,4.1,10,10,11.3,980,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,3.3,93,101700,769,1322,309,268,2,267,30241,173,30299,10542,350,4.1,10,10,11.3,1130,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,3.3,93,101700,689,1322,309,136,1,136,15954,67,16018,6090,360,3.1,10,10,11.3,1070,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,3.3,93,101800,595,1322,309,209,1,209,23247,80,23367,7615,20,3.1,10,10,11.3,1220,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.0,3.3,89,101800,495,1322,312,158,0,158,15862,0,15990,5697,10,2.1,10,10,11.3,1160,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.6,3.9,89,101800,395,1322,315,127,1,126,14017,59,13967,4315,60,2.1,10,10,11.3,1340,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.1,3.9,86,101900,302,1322,317,84,0,84,8289,0,8351,2883,40,1.5,10,10,11.3,1250,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.1,3.9,86,101900,222,1322,309,52,19,49,5844,262,5522,1734,60,2.1,10,9,11.3,2290,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.1,3.9,86,101900,161,1322,309,40,17,38,4457,0,4245,1283,0,0.0,10,9,11.3,2590,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.0,3.9,93,102000,123,1322,304,16,3,16,1868,0,1870,601,80,2.1,10,9,11.3,1460,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,3.9,96,102000,110,1322,287,28,6,28,3097,0,3105,905,120,3.6,8,6,11.3,1520,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,3.3,96,102000,123,1322,280,35,10,34,3845,0,3746,1072,130,1.5,7,4,1.2,3660,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,3.9,96,102000,161,1322,282,56,24,53,6067,134,5762,1578,130,2.6,7,4,11.3,3660,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.1,4.4,89,102000,222,1322,287,71,110,53,7925,1706,5934,1834,130,2.1,4,3,11.3,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,7.2,4.4,83,102000,302,1322,289,128,258,69,14416,8603,7796,2517,120,3.6,3,2,16.1,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,7.2,4.4,83,102000,395,1322,292,180,273,99,20260,13912,11184,3686,100,4.1,5,3,11.3,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.7,5.0,89,102100,495,1322,321,127,37,113,14508,2179,12958,4525,90,3.6,10,10,11.3,1520,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.7,4.4,86,102100,595,1322,321,133,3,132,15347,196,15293,5559,100,4.1,10,10,11.3,1680,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,8.3,5.0,80,102100,689,1322,308,214,48,189,24444,3606,21693,7823,100,5.2,8,7,11.3,3660,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,10.0,5.6,74,102100,769,1322,316,416,323,228,47501,25765,26172,9509,110,6.2,8,7,11.3,3660,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,10.6,6.7,77,102100,830,1322,342,158,4,155,18788,273,18510,7356,120,5.2,10,10,11.3,1980,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,11.1,7.2,77,102100,869,1322,345,259,3,257,29787,243,29722,11101,130,5.2,10,10,11.3,1830,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,12.2,7.8,75,102100,882,1322,351,252,5,248,29120,396,28815,10915,130,4.1,10,10,11.3,1070,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,11.1,7.2,77,102100,869,1322,328,376,150,277,42984,12525,31849,11684,40,4.1,9,8,11.3,1680,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,7.2,4.4,83,102100,830,1322,314,275,72,229,31745,5706,26574,9969,70,4.6,9,9,11.3,1680,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,8.3,4.4,77,102200,768,1322,312,387,240,247,43925,19934,28188,10031,70,4.6,8,8,11.3,1830,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,7.8,4.4,80,102200,688,1322,310,244,78,203,27716,6058,23174,8219,70,5.2,8,8,11.3,1980,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.0,2.8,86,102200,594,1322,296,268,134,208,29824,10755,23266,7590,40,4.1,8,8,11.3,2440,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,1.7,86,102300,494,1322,286,174,148,118,19829,9064,13499,4671,40,3.6,7,7,11.3,2440,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,1.1,86,102300,394,1322,280,129,40,117,14337,2289,13056,4121,30,3.6,6,6,11.3,2440,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.1,89,102300,301,1322,285,83,46,72,9325,1638,8115,2594,40,3.6,8,8,11.3,2130,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.1,89,102300,221,1322,285,35,16,32,4073,100,3730,1237,50,4.1,8,8,11.3,2130,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.1,93,102400,160,1322,275,46,38,41,5096,0,4555,1349,50,3.6,8,6,11.3,2130,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.1,93,102400,122,1321,273,32,15,31,3542,0,3441,1006,60,3.1,7,5,11.3,2130,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.1,93,102400,109,1321,283,28,6,27,3107,0,3003,880,80,4.6,8,8,11.3,2130,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.1,93,102400,122,1321,278,25,5,24,2826,0,2718,835,90,3.1,8,7,11.3,2130,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.7,96,102400,160,1321,290,37,4,37,4131,0,4142,1254,100,5.2,10,9,0.8,2130,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.7,96,102400,221,1321,276,72,40,65,7905,892,7162,2092,80,3.1,10,6,2.4,60,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,1.1,96,102500,301,1321,295,46,15,42,5393,366,4934,1693,80,3.1,10,10,1.6,30,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.7,93,102500,394,1321,292,86,33,76,9893,1496,8769,3019,50,3.6,10,9,4.8,3960,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,1.7,89,102500,494,1321,303,96,8,93,11147,444,10834,3885,70,4.1,10,10,4.8,3960,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,2.2,89,102500,594,1321,306,101,3,100,11917,180,11838,4444,80,5.2,10,10,3.2,90,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,2.2,86,102500,687,1321,285,307,173,217,34704,13977,24657,8585,70,5.2,10,6,8.0,7620,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.7,3.9,83,102500,768,1321,297,372,213,248,42209,17769,28294,10051,100,2.1,10,6,9.7,2590,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,1.7,89,102500,829,1321,303,155,33,134,18667,2223,16201,6506,10,5.2,10,10,11.3,150,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.7,93,102500,868,1321,300,254,8,249,29340,657,28919,10850,10,4.1,10,10,11.3,90,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,2.2,93,102600,881,1321,303,191,5,187,22609,369,22240,8796,20,3.6,10,10,3.2,90,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,2.8,100,102500,868,1321,302,320,8,314,36272,721,35807,12649,20,4.1,10,10,0.8,30,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,2.2,93,102500,829,1321,278,418,258,255,47871,21573,29364,10745,20,3.6,5,5,6.4,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,1.7,89,102500,767,1321,274,491,538,177,57272,39703,20741,7895,30,4.1,3,3,11.3,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,1.7,89,102500,687,1321,278,373,359,185,42720,27184,21289,7700,40,4.1,5,5,11.3,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,2.2,86,102500,594,1321,267,366,552,117,42662,34917,13688,5054,50,4.1,0,0,11.3,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,1.1,86,102500,493,1321,273,246,334,121,27979,20743,13816,4755,20,4.1,3,3,11.3,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,0.6,89,102500,393,1321,270,160,182,105,17940,9819,11818,3835,360,3.1,4,4,11.3,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,0.6,89,102500,300,1321,257,134,291,68,15124,9956,7699,2487,30,3.1,0,0,11.3,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,1.1,86,102600,220,1321,262,86,195,53,9606,3225,5938,1830,60,3.1,0,0,11.3,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,0.6,89,102600,159,1321,257,54,113,40,5993,0,4451,1324,60,3.1,0,0,11.3,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.6,92,102600,121,1321,255,45,236,24,5084,0,2717,833,50,3.1,0,0,11.3,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.0,92,102600,108,1321,252,39,211,22,4398,0,2486,756,60,2.6,0,0,11.3,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,102600,121,1321,265,32,34,29,3560,0,3234,957,70,3.1,8,5,3.2,6100,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,102600,159,1321,259,58,197,34,6518,0,3830,1176,70,3.6,5,2,0.8,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.6,92,102600,219,1321,260,92,298,43,10447,3397,4895,1565,60,5.2,3,1,11.3,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.1,89,102600,299,1321,260,154,484,44,17982,12058,5148,1759,70,4.6,1,0,11.3,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,1.1,86,102600,392,1321,270,214,456,78,24562,20969,8980,3077,90,4.6,5,2,11.3,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,1.1,86,102600,492,1321,273,265,424,107,30426,24956,12330,4331,80,5.7,8,3,11.3,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,1.7,86,102600,592,1321,278,365,496,142,41889,33797,16364,5863,110,5.7,9,4,11.3,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.0,2.2,83,102600,686,1321,283,442,560,151,51421,39193,17641,6605,70,5.2,9,4,11.3,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.6,2.8,83,102600,766,1321,286,498,592,153,58719,41383,18116,7029,90,4.1,9,4,11.3,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,2.2,86,102500,828,1321,285,476,470,181,55996,34584,21391,8331,60,6.2,10,6,11.3,3050,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.1,3.3,83,102500,867,1321,284,558,595,167,66454,42202,19977,7968,80,5.7,6,2,11.3,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.1,3.3,83,102500,880,1321,286,595,710,121,72769,46087,14853,6088,60,6.2,7,3,11.3,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.6,2.2,79,102500,867,1321,283,612,734,129,74361,48725,15734,6404,80,5.7,5,3,11.3,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.1,2.8,80,102400,828,1321,290,499,497,187,58547,36868,22044,8551,40,5.2,5,5,11.3,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.0,2.2,83,102400,766,1321,285,487,608,133,58065,40843,15919,6265,60,5.2,5,5,11.3,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,1.7,89,102400,686,1321,280,382,421,162,44210,30294,18831,6977,80,6.7,10,6,11.3,120,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.1,89,102400,593,1321,278,253,164,179,28510,12358,20267,6907,50,6.2,9,6,11.3,120,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.1,93,102400,492,1321,273,231,289,123,26234,18074,14024,4809,70,5.2,8,5,11.3,3050,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.1,93,102400,392,1321,273,162,169,112,18062,9421,12537,3999,40,5.2,8,5,11.3,3050,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.0,0.9,96,102400,299,1321,274,115,81,97,12601,3628,10671,3135,40,5.0,10,6,3.2,120,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.8,96,102400,219,1321,295,36,2,36,4148,16,4156,1361,40,4.9,10,10,1.6,120,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.5,0.6,96,102400,158,1321,294,26,3,26,2986,0,2992,955,50,4.7,10,10,0.4,30,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.3,0.5,96,102400,119,1321,269,37,64,31,4090,0,3436,999,60,4.6,8,5,3.2,90,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.3,92,102400,106,1321,273,22,13,21,2488,0,2379,727,70,4.4,9,7,1.2,90,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.8,0.2,96,102400,119,1321,266,42,28,39,4554,0,4242,1147,70,4.3,8,5,3.2,90,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,102300,157,1321,271,53,146,36,5924,0,4034,1222,60,4.1,8,7,1.6,60,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.1,93,102300,218,1321,269,86,232,48,9671,3129,5413,1695,50,4.1,3,3,11.3,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,1.1,86,102300,297,1321,270,149,435,51,17188,11880,5897,1983,70,5.2,2,2,11.3,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,1.7,82,102300,390,1321,275,233,578,62,27217,23746,7261,2553,80,5.7,2,2,11.3,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,1.7,82,102300,491,1321,275,278,525,83,32548,27886,9747,3533,100,5.7,2,2,11.3,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.0,2.2,83,102300,591,1321,274,368,676,64,44901,35906,7827,3010,90,7.2,1,1,11.3,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.0,2.2,83,102300,684,1321,278,452,707,85,54950,41810,10363,4075,100,9.3,4,2,11.3,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.6,2.8,83,102200,765,1321,281,429,520,128,51272,34440,15356,6060,100,7.7,5,2,11.3,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.6,2.8,83,102200,826,1321,284,536,602,159,63666,42374,18968,7500,100,8.2,6,3,11.3,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.1,2.8,80,102200,865,1321,286,535,589,148,64306,40434,17863,7200,100,9.3,6,3,11.3,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.1,2.8,80,102200,879,1321,279,608,808,69,65002,81953,9869,1929,100,8.2,2,1,11.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,2.2,86,102200,866,1321,299,347,188,224,40402,14803,26216,10035,100,9.8,10,9,11.3,180,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,2.2,86,102100,827,1321,293,422,252,263,48196,21355,30205,10957,90,9.3,10,8,11.3,180,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,2.2,89,102100,765,1321,306,251,72,209,28883,5641,24171,8929,90,9.8,10,10,11.3,180,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,2.2,89,102100,685,1321,306,196,2,195,22344,154,22338,7981,90,9.3,10,10,11.3,150,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,1.7,82,102000,592,1321,293,268,171,192,30018,13274,21612,7217,70,8.2,8,8,11.3,310,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,2.2,86,102000,491,1321,283,216,236,128,24439,14937,14541,4943,80,9.3,5,5,11.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,1.7,82,102000,391,1321,280,199,282,115,22130,15894,12840,4063,90,9.3,4,4,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,1.7,86,102000,298,1321,273,156,441,56,17868,12870,6431,2141,90,8.8,2,2,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.1,89,101900,217,1321,260,110,464,33,12754,2857,3833,1265,90,8.2,0,0,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.1,93,101900,156,1321,257,70,360,27,8010,0,3095,983,60,7.2,0,0,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.6,92,101900,118,1321,255,47,282,22,5338,0,2503,775,70,7.2,0,0,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.6,92,101900,105,1321,255,40,255,20,4536,0,2272,698,70,6.7,0,0,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.6,96,101900,117,1321,292,12,4,11,1439,0,1319,429,70,6.7,10,10,0.4,30,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.6,96,101800,155,1321,292,31,2,30,3513,0,3407,1063,80,7.2,10,10,0.4,30,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,1.1,100,101800,216,1321,284,54,66,44,6111,736,4992,1585,70,6.2,9,9,1.2,30,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.7,96,101800,295,1321,271,149,324,77,16613,11881,8615,2694,70,6.7,9,4,9.7,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,1.7,89,101700,389,1321,271,206,492,62,24052,20139,7257,2549,70,7.7,2,2,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,1.7,86,101700,489,1321,270,287,590,69,34075,29396,8213,3020,80,8.2,2,1,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,1.7,82,101700,589,1321,275,318,501,94,37674,29535,11171,4207,70,9.3,2,2,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,2.2,89,101600,683,1321,306,254,4,252,28342,347,28275,9363,80,8.8,10,10,11.3,180,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,2.2,86,101600,763,1321,308,181,8,176,21103,588,20614,7839,80,7.2,10,10,9.7,150,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,2.2,89,101600,825,1321,306,225,21,212,26131,1635,24746,9394,80,8.8,10,10,6.4,150,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,2.2,89,101500,864,1321,306,238,11,230,27645,875,26856,10223,80,8.2,10,10,6.4,150,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,2.2,89,101500,877,1321,306,266,7,262,30650,584,30357,11320,80,7.7,10,10,6.4,150,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,2.2,89,101500,864,1321,306,252,8,246,29119,653,28580,10739,90,9.3,10,10,6.4,150,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,2.2,93,101400,826,1321,303,281,6,278,31944,521,31785,11352,100,8.2,10,10,6.4,150,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,2.2,96,101400,764,1321,301,143,1,143,16950,69,17019,6648,90,7.7,10,10,1.2,90,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,2.2,96,101400,684,1321,301,252,3,250,28149,259,28080,9342,80,7.7,10,10,1.2,90,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,2.2,96,101400,590,1321,301,185,1,185,20777,76,20878,7043,80,7.7,10,10,1.6,150,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,2.2,100,101400,490,1321,298,148,1,148,16544,68,16618,5445,90,6.7,10,10,0.8,30,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.7,96,101400,390,1321,298,121,1,120,13405,58,13349,4166,90,7.7,10,10,0.4,30,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.1,89,101400,296,1321,285,87,87,68,9808,2934,7690,2477,90,5.7,8,8,11.3,6100,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.1,89,101400,216,1321,278,61,55,52,6815,853,5827,1796,90,5.7,8,6,11.3,6100,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.1,93,101400,155,1321,266,62,180,40,6866,0,4442,1313,90,4.6,7,2,11.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.6,92,101400,116,1321,260,29,33,26,3246,0,2917,876,90,5.2,6,1,11.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.6,92,101400,103,1321,260,25,33,22,2810,0,2478,747,90,5.2,5,1,11.3,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.6,92,101400,115,1321,255,35,48,31,3859,0,3427,987,100,5.2,3,0,11.3,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.1,93,101400,153,1321,266,44,75,35,4918,0,3922,1188,100,6.2,3,2,11.3,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.1,89,101400,214,1321,265,73,159,48,8197,2046,5404,1685,100,6.2,1,1,11.3,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,1.1,86,101400,293,1321,267,118,239,65,13334,7678,7367,2383,100,8.2,1,1,11.3,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,1.7,86,101400,387,1321,270,163,266,86,18533,12692,9811,3297,90,7.7,1,1,11.3,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,2.2,86,101500,487,1321,272,265,435,105,30426,25165,12099,4249,80,7.2,1,1,11.3,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.0,2.2,83,101500,587,1321,274,340,487,123,39422,31308,14316,5232,100,8.8,2,1,11.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.0,2.2,83,101500,681,1321,285,346,307,187,39541,23311,21472,7720,90,7.7,10,5,11.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,2.8,89,101500,761,1321,309,306,49,278,34379,4331,31414,10734,100,10.3,10,10,11.3,150,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.0,2.8,86,101500,823,1321,311,233,9,227,26903,717,26347,9868,100,9.3,10,10,11.3,150,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.6,3.3,86,101500,862,1321,315,218,2,217,25424,155,25436,9782,100,9.3,10,10,11.3,150,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.6,2.8,83,101500,876,1321,305,285,77,233,33132,6121,27230,10398,90,9.3,10,9,11.3,180,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.6,2.8,83,101500,863,1321,314,213,2,212,24894,154,24901,9615,90,10.8,10,10,11.3,210,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.6,2.8,83,101500,824,1321,314,169,9,164,20022,640,19515,7687,90,9.3,10,10,11.3,210,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.7,2.8,77,101500,763,1321,291,479,500,189,55531,37608,22015,8280,90,9.3,4,4,11.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.7,2.8,77,101500,683,1321,276,441,593,133,51790,39621,15681,5964,90,9.3,0,0,16.1,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,7.2,2.2,71,101500,589,1321,278,364,550,118,42370,34861,13786,5075,100,9.3,0,0,16.1,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.7,2.8,77,101500,489,1321,276,279,478,101,32150,27170,11679,4135,90,8.2,0,0,16.1,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,7.2,2.8,74,101600,388,1321,278,199,391,84,22680,18366,9605,3250,90,10.3,0,0,16.1,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.6,2.2,79,101600,294,1321,271,133,291,67,15000,9555,7580,2446,100,8.8,0,0,16.1,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,1.7,82,101700,214,1321,266,83,187,53,9251,2918,5925,1815,90,9.8,0,0,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,1.1,82,101700,153,1321,264,52,98,41,5742,0,4541,1330,90,9.3,2,0,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,1.1,86,101700,114,1321,262,44,249,22,4986,0,2498,769,90,8.8,0,0,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,0.6,82,101700,101,1321,261,37,220,20,4185,0,2267,692,90,8.2,0,0,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,1.1,86,101800,113,1321,262,43,248,22,4869,0,2496,767,90,8.2,0,0,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,1.1,86,101800,151,1321,262,64,324,28,7277,0,3190,1001,100,7.2,0,0,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,1.1,86,101800,212,1321,262,103,430,34,11880,2266,3929,1286,90,7.7,0,0,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,1.1,82,101800,291,1321,264,159,538,41,18625,12233,4812,1646,90,8.2,0,0,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,1.1,79,101800,384,1321,271,230,631,47,27414,22988,5613,2006,90,8.2,1,1,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.0,1.7,79,101900,485,1321,269,310,669,64,36988,32423,7655,2823,90,8.2,3,0,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.6,1.7,76,101900,585,1321,271,398,740,70,48192,40149,8497,3252,90,8.2,2,0,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.6,1.7,76,101900,679,1321,271,480,780,78,58688,45294,9562,3765,70,8.2,2,0,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.6,2.2,79,101900,760,1321,271,551,809,85,67879,48598,10501,4226,90,8.8,2,0,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.1,2.2,76,101900,822,1321,273,605,833,85,64222,83972,12135,1976,90,6.7,1,0,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.1,2.8,80,101900,861,1321,274,649,862,86,68933,87199,12187,2091,90,8.2,0,0,16.1,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.6,2.2,79,101900,874,1321,271,662,866,86,70259,87618,12156,2131,90,8.2,0,0,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.0,2.2,83,101900,861,1321,274,595,796,75,63403,80551,10707,1977,80,8.2,2,1,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.6,2.8,83,101900,823,1321,277,574,776,89,71203,47216,11073,4525,90,8.2,4,1,16.1,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.1,2.8,80,101800,761,1321,279,518,769,73,55262,77252,10618,1749,90,9.3,2,1,16.1,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.1,2.8,80,101800,681,1321,283,452,638,121,53461,41363,14365,5515,90,9.3,3,2,16.1,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.1,2.2,76,101800,588,1321,282,360,596,94,42643,35035,11170,4207,90,8.8,2,2,16.1,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.6,2.2,79,101800,487,1321,280,314,634,79,36886,32938,9307,3387,90,8.2,2,2,16.1,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.6,2.2,79,101800,386,1321,280,245,625,61,28636,25288,7148,2514,80,6.2,2,2,16.1,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,1.7,86,101800,293,1321,276,149,438,51,17172,11739,5892,1978,80,6.2,3,3,16.1,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.1,89,101800,212,1321,265,98,375,37,11240,2758,4253,1382,90,5.7,1,1,11.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.6,92,101800,151,1321,255,66,326,28,7513,0,3194,1004,60,5.2,0,0,11.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.0,92,101800,112,1321,257,35,133,23,3948,0,2600,792,80,6.2,1,1,11.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-1.1,92,101800,99,1321,286,16,1,16,1841,0,1843,577,80,6.7,10,10,0.8,30,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-1.1,96,101700,111,1321,283,14,1,14,1642,0,1644,527,90,6.7,10,10,0.4,0,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.1,-1.1,100,101700,149,1321,281,36,0,36,3510,0,3534,1201,90,5.7,10,10,0.4,0,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-1.1,96,101700,209,1321,283,37,2,37,4238,14,4247,1373,90,5.7,10,10,0.4,0,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-1.1,96,101700,289,1321,283,55,5,54,6303,140,6204,2057,90,6.2,10,10,0.4,30,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-0.6,100,101700,382,1321,284,79,4,78,9048,183,8962,3048,90,6.2,10,10,0.8,90,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-0.6,96,101700,482,1321,286,127,1,127,14358,64,14416,4867,100,6.2,10,10,0.8,90,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.0,92,101700,583,1321,291,186,3,185,20867,231,20856,6983,90,6.2,10,10,1.6,90,9,999999999,19,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.0,89,101700,677,1321,294,196,2,195,22322,156,22316,7925,80,6.7,10,10,4.8,150,9,999999999,20,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,0.6,86,101600,758,1321,285,381,306,205,43870,23986,23722,8757,100,5.7,10,8,11.3,150,9,999999999,22,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,1.1,86,101600,820,1321,277,437,380,201,50943,29173,23546,8999,90,5.7,10,5,11.3,77777,9,999999999,24,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,1.1,86,101600,859,1321,275,561,594,173,66602,43086,20631,8174,70,6.7,8,4,11.3,77777,9,999999999,25,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.1,89,101600,873,1321,273,475,420,197,55953,31703,23318,9134,80,7.2,10,4,11.3,77777,9,999999999,27,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,1.1,86,101600,860,1321,275,500,463,197,58776,35031,23270,9072,80,6.7,10,4,11.3,77777,9,999999999,29,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,1.7,86,101500,821,1321,280,413,322,212,47953,25132,24739,9379,70,6.7,10,5,11.3,77777,9,999999999,27,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,1.7,86,101500,760,1321,273,357,358,150,42138,25010,17779,6898,90,7.7,5,2,11.3,77777,9,999999999,25,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,1.7,86,101500,680,1321,278,363,305,205,41185,24116,23375,8226,80,6.7,9,4,11.3,77777,9,999999999,23,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,1.7,89,101500,586,1321,278,306,370,141,35106,25125,16243,5810,80,7.7,10,5,11.3,77777,9,999999999,22,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.1,89,101400,485,1321,278,231,225,148,25807,15329,16608,5420,90,7.7,10,6,11.3,150,9,999999999,20,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,0.6,89,101400,385,1321,275,134,95,106,14985,5117,11899,3825,90,6.2,10,6,11.3,150,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.6,92,101400,291,1321,276,78,91,58,8895,2693,6633,2186,80,6.2,10,7,11.3,150,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,101400,210,1321,289,32,4,32,3711,19,3718,1224,80,6.7,10,10,1.6,150,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,101300,149,1321,275,37,33,34,4143,0,3816,1159,90,6.2,8,8,1.6,150,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-0.6,96,101300,110,1321,272,12,0,12,1166,0,1174,460,80,6.2,8,8,1.6,150,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-1.1,92,101300,97,1321,278,11,0,11,1067,0,1075,417,90,5.2,9,9,0.4,60,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-1.1,96,101300,109,1321,275,11,2,11,1313,0,1313,425,80,5.2,9,9,0.4,60,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-1.1,96,101300,146,1321,269,27,8,26,3083,0,2974,937,70,4.1,8,8,0.4,60,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-0.6,96,101300,207,1321,272,56,10,55,6203,160,6112,1829,70,4.1,8,8,0.4,60,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.6,92,101300,287,1321,266,89,74,73,9941,2561,8181,2564,70,4.1,5,3,11.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,0.6,82,101300,380,1321,270,167,202,108,18612,10923,12084,3838,80,6.7,8,2,11.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,0.6,82,101300,480,1321,270,217,232,133,24421,15003,15030,5013,80,5.7,6,2,11.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,1.1,82,101300,581,1321,269,321,395,148,36642,27407,16966,5987,90,6.2,5,1,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.0,1.7,79,101300,675,1321,278,399,378,206,45201,29979,23454,8210,90,7.2,8,2,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.1,2.2,76,101300,756,1321,273,490,514,196,56577,39347,22741,8463,90,6.2,4,0,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.7,3.3,80,101300,818,1321,277,552,569,199,64336,43109,23307,8921,100,5.7,2,0,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.7,3.3,80,101300,857,1321,277,591,572,218,68846,44443,25525,9788,80,6.2,4,0,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.7,3.3,80,101300,871,1321,296,541,392,281,61909,33552,32341,11827,90,6.2,10,6,11.3,7620,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.7,3.3,80,101300,858,1321,282,562,547,205,65798,41557,24120,9348,90,5.7,4,1,11.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.1,3.3,83,101300,820,1321,280,516,526,188,60435,39040,22123,8551,90,4.6,2,1,11.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.1,2.8,80,101300,758,1321,286,424,361,216,48601,28612,24885,9100,60,6.7,6,3,11.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.6,2.8,83,101300,678,1321,281,326,225,210,36892,17895,23886,8348,60,6.2,5,2,11.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.6,2.2,79,101300,584,1321,277,319,390,145,36498,26709,16660,5924,60,5.7,2,1,11.3,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.6,2.2,79,101400,483,1321,277,223,227,139,25024,14904,15665,5193,80,6.2,3,1,11.3,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.0,2.2,83,101400,383,1321,278,169,176,118,18715,9984,13121,4088,70,5.2,4,2,11.3,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,1.7,86,101400,289,1321,273,106,153,72,11868,5256,8088,2557,70,5.7,4,2,11.3,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,1.1,86,101400,208,1321,270,67,63,57,7408,1074,6323,1887,90,4.1,4,2,11.3,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,0.6,89,101400,147,1321,266,34,26,31,3831,0,3501,1078,50,4.6,3,2,16.1,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.6,92,101400,108,1321,266,29,58,25,3239,0,2799,834,60,3.6,3,3,16.1,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.0,89,101400,94,1321,266,22,52,18,2498,0,2048,628,70,4.1,3,3,16.1,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.0,89,101500,107,1321,263,29,109,21,3282,0,2381,729,80,3.1,2,2,16.1,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.6,92,101500,144,1321,266,48,77,40,5281,0,4414,1273,70,3.6,3,3,16.1,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.1,89,101400,204,1321,271,78,185,50,8695,2293,5590,1707,80,3.1,3,3,16.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,1.1,82,101500,284,1321,275,90,131,62,10178,3916,7032,2273,100,2.1,3,3,16.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,1.1,79,101500,377,1321,277,189,400,75,21678,17612,8628,2942,40,2.6,3,3,16.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.6,2.2,79,101500,478,1321,280,271,455,107,31006,26387,12287,4277,70,3.1,2,2,11.3,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.7,2.8,77,101500,578,1321,286,349,543,111,40718,33456,12997,4793,40,3.1,3,2,11.3,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.6,2.2,79,101500,672,1321,280,431,597,126,50739,39286,14890,5669,360,3.6,2,2,11.3,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.6,2.8,83,101600,753,1321,281,508,656,133,60428,43931,15882,6223,30,3.1,2,2,11.3,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.7,3.3,80,101600,816,1321,286,545,678,125,65821,44471,15153,6095,20,4.1,2,2,11.3,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.1,2.8,80,101700,855,1321,283,574,670,139,69223,45242,16830,6799,10,4.1,2,2,11.3,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.1,2.8,80,101600,869,1321,283,589,679,141,71114,45975,17092,6925,360,3.6,2,2,11.3,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,7.2,3.9,80,101600,856,1321,285,606,758,112,74272,48181,13775,5636,10,4.1,1,1,11.3,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.7,3.3,80,101700,818,1321,282,543,664,130,65415,44006,15721,6312,10,4.6,4,1,11.3,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,10.0,6.1,77,101700,756,1321,299,504,633,140,59687,42203,16647,6508,40,3.6,3,1,11.3,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,8.9,4.4,74,101700,676,1321,292,408,548,126,48041,35630,14893,5687,30,4.1,3,1,11.3,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,7.8,3.9,77,101700,582,1321,287,353,588,92,41823,33905,10934,4119,360,3.6,3,1,11.3,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,7.2,3.3,77,101800,482,1321,284,282,553,79,33080,28382,9294,3375,360,2.6,2,1,11.3,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,8.3,3.9,74,101800,381,1321,289,205,476,66,23767,19447,7673,2671,60,2.6,3,1,11.3,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,1.7,86,101800,287,1321,270,127,301,61,14402,9007,6938,2261,300,4.1,3,1,11.3,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,1.7,82,101800,206,1321,266,90,295,43,10173,2715,4873,1541,330,2.6,0,0,11.3,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.0,1.7,79,101800,144,1321,269,54,193,33,6044,0,3703,1124,50,1.5,0,0,16.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.1,89,101800,106,1321,260,41,276,19,4674,0,2170,673,270,3.6,0,0,16.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.1,89,101800,92,1321,260,34,251,17,3870,0,1938,597,280,1.5,0,0,16.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.7,93,101900,104,1321,265,36,219,19,4098,0,2167,670,260,1.5,3,1,16.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.1,93,101900,141,1321,266,54,219,30,6074,0,3382,1036,250,4.1,4,2,16.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.1,93,101900,202,1321,275,75,172,49,8365,1963,5481,1674,270,4.6,7,6,11.3,3660,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,1.7,100,102000,281,1321,281,94,46,84,10357,1749,9290,2785,270,3.6,10,8,0.8,210,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,2.2,100,102000,375,1321,298,78,6,76,8928,263,8725,2965,290,2.6,10,10,0.4,60,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,2.2,100,102000,475,1321,298,94,3,93,10869,164,10789,3828,320,3.1,10,10,0.8,90,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,2.2,96,102100,576,1321,301,128,5,126,14781,323,14606,5287,280,4.6,10,10,0.8,90,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,2.2,96,102100,670,1321,301,169,4,167,19451,291,19307,7055,260,4.6,10,10,1.2,90,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.1,93,102100,751,1321,297,213,0,213,21881,0,22074,8959,230,4.1,10,10,1.6,90,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.1,93,102100,814,1321,297,295,4,293,33337,358,33306,11617,270,5.2,10,10,1.6,90,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.7,96,102200,853,1321,298,246,3,244,28399,245,28320,10605,290,5.2,10,10,1.6,90,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,1.1,96,102200,867,1321,295,266,4,263,30603,336,30427,11282,290,5.2,10,10,1.6,90,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.6,92,102300,854,1321,294,298,1,297,33886,89,33971,12114,300,4.6,10,10,1.6,90,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.6,96,102300,816,1321,292,290,1,290,32822,89,33014,11575,300,5.2,10,10,1.6,90,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.6,96,102300,754,1321,292,271,2,270,30511,176,30571,10500,310,5.7,10,10,1.6,90,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.6,96,102300,674,1321,292,222,1,222,25010,82,25141,8625,320,5.2,10,10,1.6,90,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.6,100,102300,580,1321,290,188,2,187,21067,154,21057,7026,330,4.6,10,10,1.6,90,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.6,96,102300,479,1321,292,156,0,156,15659,0,15785,5563,320,4.6,10,10,1.6,90,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.6,96,102400,379,1321,292,112,1,112,12449,55,12499,3935,310,4.6,10,10,1.6,90,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.6,100,102400,284,1321,290,92,1,92,10083,42,10123,2970,330,4.1,10,10,1.6,90,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.6,100,102400,204,1321,290,57,1,57,6292,17,6312,1870,340,4.6,10,10,1.6,90,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.6,100,102400,142,1321,290,39,0,39,3799,0,3826,1254,360,3.6,10,10,1.6,90,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,102400,103,1322,289,22,0,22,2135,0,2150,749,350,3.6,10,10,0.8,60,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-0.6,96,102400,89,1322,286,11,0,11,1067,0,1074,412,340,3.6,10,10,0.8,60,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,0.0,100,102400,101,1322,287,16,0,16,1553,0,1563,580,330,3.1,10,10,0.8,60,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,0.0,100,102400,139,1322,287,22,0,22,2142,0,2157,808,340,3.1,10,10,0.1,0,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,0.0,100,102400,199,1322,287,32,0,32,3133,0,3156,1204,340,3.1,10,10,0.1,0,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,0.0,100,102400,279,1322,287,79,1,78,8754,36,8674,2646,360,3.1,10,10,0.8,60,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,0.0,100,102400,372,1322,287,102,1,101,11408,52,11338,3633,40,3.1,10,10,0.8,60,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,0.0,100,102400,472,1322,287,140,1,139,15673,66,15628,5118,10,3.1,10,10,2.4,90,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,102400,573,1322,289,183,1,182,20518,76,20504,6843,360,3.6,10,10,1.6,60,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.6,96,102400,668,1322,284,244,113,187,27831,8650,21431,7640,10,3.1,10,9,3.2,90,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.6,96,102400,749,1322,284,230,77,187,26638,5837,21760,8137,360,3.6,10,9,0.8,90,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.6,96,102400,811,1322,274,292,138,207,33920,10746,24165,9155,360,4.1,7,7,4.8,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.6,92,102400,851,1322,286,346,162,241,39982,13243,27998,10498,340,4.1,9,9,3.2,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,1.1,96,102400,865,1322,287,310,94,249,35809,7740,28919,10844,360,3.6,9,9,3.2,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.1,93,102300,852,1322,289,280,81,228,32503,6467,26604,10096,350,4.1,9,9,3.2,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.1,93,102200,814,1322,271,507,559,161,60088,39866,19164,7535,10,5.2,4,4,6.4,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.1,93,102200,752,1322,271,425,444,171,49605,32505,20049,7624,360,4.6,9,4,6.4,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.1,93,102200,672,1322,266,418,572,125,49267,37759,14788,5637,20,5.2,5,2,6.4,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.1,93,102100,578,1322,266,339,524,109,39642,32403,12791,4729,20,5.7,5,2,9.7,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.6,92,102100,477,1322,270,261,423,107,29888,24780,12298,4284,20,5.7,10,5,8.0,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.6,92,102100,376,1322,294,73,0,73,7262,0,7318,2885,40,5.2,10,10,3.2,90,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,1.1,100,102000,282,1322,292,50,6,48,5773,147,5555,1864,40,5.7,10,10,0.8,90,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.6,96,102000,201,1322,292,36,1,36,4121,5,4130,1333,40,6.2,10,10,0.8,90,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.6,100,102000,139,1322,290,24,3,23,2759,0,2649,842,40,4.6,10,10,0.4,30,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,101900,100,1322,289,20,1,20,2263,0,2267,692,60,4.6,10,10,0.4,30,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-0.6,96,101800,86,1322,286,16,0,16,1551,0,1561,562,60,4.1,10,10,0.4,30,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,0.0,100,101900,98,1322,287,22,1,22,2466,0,2472,740,80,4.1,10,10,0.4,60,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-0.6,96,101800,136,1322,286,28,1,28,3158,0,3165,972,80,4.1,10,10,0.4,30,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,0.0,100,101800,196,1322,287,44,1,44,4940,8,4953,1535,60,3.1,10,10,0.8,60,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.6,100,101800,276,1322,290,77,0,77,7591,0,7646,2611,60,3.1,10,10,2.4,90,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,1.1,100,101700,369,1322,292,110,1,110,12203,54,12252,3825,90,3.1,10,10,4.8,120,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,1.1,96,101700,470,1322,295,127,1,127,14309,63,14367,4802,100,3.6,10,10,4.8,120,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.7,96,101600,571,1322,298,176,1,175,19775,74,19756,6655,120,4.1,10,10,1.6,120,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,2.2,96,101600,665,1322,301,201,1,201,22771,78,22885,8009,120,4.1,10,10,1.6,90,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.7,93,101600,746,1322,300,234,0,234,24024,0,24236,9519,90,4.6,10,10,1.6,90,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,2.2,96,101600,809,1322,301,264,1,263,30063,85,30116,10816,120,4.6,10,10,1.6,90,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,2.2,93,101600,849,1322,303,279,0,278,28890,0,29049,11561,70,5.7,10,10,6.4,90,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,2.8,89,101500,863,1322,309,310,0,310,32132,0,32426,12521,90,5.2,10,10,8.0,120,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,2.2,89,101500,850,1322,306,303,1,303,34360,89,34565,12227,80,6.2,10,10,11.3,120,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.7,93,101500,812,1322,300,280,2,279,31758,175,31827,11266,80,6.2,10,10,1.6,120,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.1,89,101500,750,1322,300,237,1,237,26944,83,27088,9640,80,5.2,10,10,3.2,90,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.1,89,101500,670,1322,291,216,62,184,24684,4703,21127,7578,80,5.7,10,9,9.7,120,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,2.2,86,101500,576,1322,299,237,187,155,26929,13156,17689,6174,80,5.2,10,9,9.7,120,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,1.7,89,101400,475,1322,294,158,48,141,17679,3174,15845,5194,90,5.7,10,9,9.7,120,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,1.7,89,101400,374,1322,280,142,164,95,15973,8149,10725,3503,70,5.2,9,6,9.7,2740,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.1,93,101400,279,1322,297,42,1,42,4897,22,4907,1665,80,6.2,10,10,1.6,90,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,1.7,100,101400,198,1322,296,41,3,41,4638,20,4649,1469,90,6.7,10,10,0.4,90,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,1.1,100,101400,136,1322,292,22,0,22,2142,0,2157,809,90,5.2,10,10,0.6,90,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.6,96,101400,97,1322,278,12,2,12,1411,0,1412,451,90,4.6,10,8,1.2,120,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.0,92,101400,84,1322,291,12,0,12,1163,0,1171,440,80,5.2,10,10,0.8,60,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,1.1,100,101400,95,1322,292,18,0,18,1745,0,1757,630,90,5.2,10,10,0.4,60,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,1.1,100,101400,133,1322,292,27,0,27,2627,0,2645,940,80,4.1,10,10,0.8,90,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,1.1,100,101300,193,1322,278,61,5,60,6663,81,6577,1870,90,4.1,10,8,0.8,90,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,1.1,96,101400,273,1322,295,40,11,38,4685,207,4459,1516,110,4.1,10,10,0.6,30,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,1.7,100,101400,366,1322,296,85,11,82,9648,496,9338,3112,70,4.1,10,10,0.6,60,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,1.7,100,101400,467,1322,296,107,3,106,12222,173,12152,4204,100,4.1,10,10,2.4,90,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.7,93,101400,568,1322,300,137,1,137,15692,67,15756,5596,90,4.1,10,10,11.3,120,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,1.7,86,101400,662,1322,305,218,1,218,24526,81,24654,8421,90,4.1,10,10,11.3,150,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.0,2.2,83,101400,744,1322,283,472,503,188,54569,37966,21839,8142,70,4.6,7,4,11.3,2590,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.1,2.8,80,101400,806,1322,286,511,478,219,59011,37704,25420,9515,90,4.6,9,3,11.3,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.7,3.3,80,101400,846,1322,320,237,3,235,27399,240,27312,10281,80,4.1,10,10,11.3,1220,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.7,3.3,80,101400,860,1322,311,395,152,296,44939,13347,33875,12146,90,4.1,10,9,11.3,1220,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.7,3.3,80,101400,848,1322,286,551,507,224,63963,39866,26138,9940,90,5.2,10,2,11.3,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.7,3.3,80,101400,809,1322,282,529,596,162,62581,42153,19249,7556,80,4.6,3,1,11.3,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.0,2.2,83,101400,748,1322,274,466,534,162,54564,38195,19052,7289,40,5.7,2,1,11.3,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.1,2.8,80,101400,667,1322,274,427,573,136,49933,38535,15967,6019,60,5.2,0,0,11.3,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.1,2.8,80,101400,573,1322,274,346,519,120,40099,32859,13960,5089,70,5.7,0,0,16.1,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.0,2.2,83,101400,472,1322,274,255,437,97,29386,24268,11216,3956,80,4.6,1,1,11.3,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,2.2,86,101400,371,1322,272,167,286,86,18921,13350,9777,3252,70,5.7,1,1,11.3,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,1.7,89,101400,277,1322,274,93,129,65,10459,3915,7333,2339,70,4.1,5,3,11.3,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.1,93,101400,196,1322,289,51,6,51,5661,72,5679,1711,70,5.7,9,9,3.2,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,1.1,100,101400,133,1322,292,29,1,29,3262,0,3269,1000,60,4.6,10,10,0.8,150,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.6,100,101400,94,1322,272,20,4,20,2253,0,2257,682,80,4.1,9,7,0.8,60,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,101500,80,1322,265,13,2,13,1499,0,1501,468,80,4.1,7,5,1.2,60,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,0.0,100,101500,92,1322,261,20,4,20,2250,0,2254,679,80,3.6,5,4,1.2,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.6,100,101400,129,1322,276,17,5,16,1997,0,1881,609,80,3.1,8,8,0.8,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,1.1,100,101500,190,1322,292,33,1,33,3780,0,3788,1219,70,3.1,10,10,0.4,30,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,1.7,100,101500,269,1322,281,72,38,64,8079,1091,7204,2279,80,2.6,8,8,0.6,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,1.7,100,101500,363,1322,296,44,0,44,4370,0,4403,1864,70,4.1,10,10,0.6,30,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,2.8,100,101500,464,1322,302,77,2,76,9021,100,8929,3220,70,4.1,10,10,0.8,30,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,2.2,86,101500,565,1322,272,311,410,135,35636,27183,15532,5522,80,4.1,4,1,11.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.6,2.8,83,101500,660,1322,272,412,530,148,47773,36699,17233,6390,80,5.2,0,0,11.3,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.1,2.8,80,101400,741,1322,274,486,574,163,56786,41046,19129,7287,80,4.6,0,0,11.3,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,7.2,3.9,80,101400,804,1322,279,546,569,199,63482,43082,23250,8848,80,4.1,5,0,11.3,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.6,3.3,86,101500,844,1322,287,469,318,266,53666,26808,30608,11191,80,5.2,9,4,11.3,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.7,3.9,83,101400,858,1322,289,477,266,304,54120,23592,34698,12329,60,5.7,7,3,11.3,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.7,3.9,83,101400,845,1322,287,545,465,247,62742,37896,28590,10650,70,6.2,7,2,11.3,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,7.2,3.3,77,101400,807,1322,279,548,608,175,64417,44111,20665,8029,60,4.1,0,0,11.3,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,7.2,3.3,77,101400,746,1322,279,492,578,164,57510,41295,19255,7350,70,5.2,0,0,11.3,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.7,3.9,83,101400,665,1322,277,417,530,149,48376,36579,17359,6457,50,4.6,0,0,11.3,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.0,2.8,86,101400,571,1322,270,335,469,131,38536,30682,15130,5436,60,5.2,0,0,11.3,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.0,1.7,79,101400,470,1322,274,239,289,135,26806,18668,15206,5020,70,4.6,6,1,11.3,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,1.7,82,101400,368,1322,266,174,301,90,19631,14405,10189,3351,80,5.2,0,0,11.3,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,1.7,86,101300,274,1322,264,112,202,70,12508,6467,7843,2455,90,5.2,0,0,11.3,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.7,93,101300,193,1322,269,61,77,50,6773,829,5568,1678,100,5.7,5,2,11.3,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.7,96,101300,130,1322,290,19,1,19,2207,0,2210,709,100,5.7,9,9,0.8,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,1.7,100,101300,91,1322,287,23,15,22,2564,0,2458,726,100,2.6,9,9,0.8,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,1.1,96,101300,77,1322,295,4,5,4,503,0,503,160,90,3.1,10,10,0.4,90,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.7,96,101300,89,1322,298,23,7,22,2559,0,2454,721,90,3.1,10,10,0.0,0,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,1.1,100,101300,126,1322,268,40,56,35,4402,0,3863,1111,100,3.1,5,5,0.6,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,1.7,100,101300,186,1322,269,82,281,42,9196,1282,4723,1458,110,4.1,4,4,0.8,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,2.8,100,101300,266,1322,302,46,2,45,5302,40,5199,1733,120,4.1,10,10,0.4,120,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,4.4,100,101300,360,1322,310,108,4,107,11963,205,11900,3708,120,3.1,10,10,0.4,30,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.6,5.6,100,101300,461,1322,317,129,5,128,14471,306,14419,4780,120,3.6,10,10,0.4,30,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.7,6.7,100,101300,562,1322,323,154,4,153,17429,272,17393,6028,140,2.6,10,10,4.8,90,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,11.7,7.8,77,101200,657,1322,312,447,742,77,54380,40779,9393,3682,90,3.1,2,2,11.3,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,12.2,6.7,69,101200,738,1322,316,395,483,124,47055,30903,14827,5821,80,3.6,3,3,11.3,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,14.4,8.3,67,101200,801,1322,328,539,688,121,64985,43219,14643,5888,110,3.1,3,3,16.1,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,10.0,5.6,74,101200,841,1322,308,418,400,163,49645,27873,19444,7721,30,4.6,4,4,16.1,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,12.8,7.8,72,101200,855,1322,320,595,767,97,73599,45908,12037,4956,60,3.1,3,3,16.1,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.7,3.9,83,101200,843,1322,289,572,715,114,69875,45646,13975,5696,30,4.1,3,3,16.1,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,11.1,6.7,74,101300,805,1322,308,578,803,87,71532,47279,10799,4403,20,4.1,2,2,11.3,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,12.2,7.8,75,101200,743,1322,310,494,759,65,53310,76746,9551,1639,50,4.6,1,1,11.3,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,8.9,4.4,74,101200,662,1322,299,436,610,128,51155,39814,15076,5714,10,4.1,3,3,11.3,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,12.8,7.8,72,101200,568,1322,317,387,718,76,46339,37643,9125,3468,50,3.1,2,2,11.3,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,7.2,2.8,74,101200,467,1322,284,287,691,41,30991,65554,6408,1055,320,4.1,1,1,11.3,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,2.2,86,101200,365,1322,278,198,459,70,22773,19026,8075,2763,330,3.1,3,3,11.3,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.7,3.3,80,101200,271,1322,293,125,270,69,13955,8295,7729,2420,50,2.1,5,5,11.3,77777,9,999999999,19,0.0000,0,88,0.000,0.0,1.0 +1988,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,7.2,3.9,80,101200,189,1322,296,70,140,50,7756,1327,5557,1668,90,2.1,5,5,11.3,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.0 +1988,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,7.8,5.0,83,101200,127,1322,297,45,155,29,5037,0,3254,987,140,2.1,4,4,16.1,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.6,2.8,83,101200,88,1322,277,25,136,16,2851,0,1828,565,290,2.1,2,1,11.3,77777,9,999999999,20,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,1.7,82,101300,74,1322,275,20,126,13,2293,0,1492,461,270,3.1,2,2,11.3,77777,9,999999999,21,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,2.8,96,101300,86,1322,275,23,101,16,2618,0,1824,561,280,3.6,5,3,4.8,77777,9,999999999,21,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.0,3.9,93,101300,123,1322,285,35,99,26,3935,0,2930,894,200,2.1,5,4,11.3,77777,9,999999999,21,0.0000,0,88,0.000,0.0,1.0 +1988,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,7.8,5.6,86,101300,183,1322,303,66,83,55,7217,836,6034,1733,240,3.1,7,6,11.3,7620,9,999999999,22,0.0000,0,88,0.000,0.0,1.0 +1988,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,7.2,4.4,83,101300,263,1322,308,87,158,55,9851,3652,6245,2020,240,5.7,8,8,11.3,2440,9,999999999,22,0.0000,0,88,0.000,0.0,1.0 +1988,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,7.2,4.4,83,101300,356,1322,303,122,102,94,13645,4800,10552,3390,240,6.7,8,7,11.3,3050,9,999999999,22,0.0000,0,88,0.000,0.0,1.0 +1988,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,8.3,5.6,83,101300,457,1322,329,77,0,77,7699,0,7761,3239,240,6.2,10,10,11.3,3050,9,999999999,23,0.0000,0,88,0.000,0.0,1.0 +1988,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,7.8,5.6,86,101300,559,1322,327,168,3,167,18875,214,18850,6377,260,5.2,10,10,11.3,3050,9,999999999,23,0.0000,0,88,0.000,0.0,1.0 +1988,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,8.3,6.1,86,101300,654,1322,330,204,9,199,23047,690,22595,7876,240,6.7,10,10,11.3,3350,9,999999999,23,0.0000,0,88,0.000,0.0,1.0 +1988,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,8.3,6.1,86,101300,735,1322,321,214,43,190,24650,3196,21991,8159,270,6.7,9,9,11.3,3350,9,999999999,24,0.0000,0,88,0.000,0.0,1.0 +1988,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,7.2,5.0,86,101300,798,1322,303,369,242,222,42477,19016,25688,9558,280,5.7,7,7,11.3,3050,9,999999999,24,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.7,4.4,86,101300,838,1322,305,360,207,228,41650,16335,26516,10010,270,5.2,8,8,11.3,3050,9,999999999,24,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.1,3.3,83,101300,853,1322,317,192,6,189,22606,444,22359,8753,280,4.1,10,10,11.3,4570,9,999999999,25,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.0,2.8,86,101300,840,1322,311,219,10,212,25507,773,24816,9499,300,4.1,10,10,11.3,4570,9,999999999,25,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,2.8,89,101300,802,1322,294,356,204,232,40901,16473,26795,9893,330,3.6,10,8,11.3,3350,9,999999999,25,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,2.2,89,101300,740,1322,297,282,59,249,31868,4999,28293,9874,360,3.6,10,9,11.3,2440,9,999999999,25,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.7,93,101300,660,1322,292,264,62,232,29548,5200,26106,8742,330,4.1,10,9,11.3,2440,9,999999999,25,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,1.7,89,101300,565,1322,294,194,56,170,21837,4111,19225,6513,20,3.6,10,9,11.3,2440,9,999999999,25,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.7,93,101300,464,1322,276,204,215,128,22950,13498,14460,4813,30,2.6,10,5,8.0,77777,9,999999999,25,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,3.3,96,101300,362,1322,307,77,7,75,8797,296,8595,2907,40,2.6,10,10,0.8,60,9,999999999,25,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.7,96,101300,267,1322,298,45,8,44,5207,166,5102,1710,10,2.6,10,10,0.4,60,9,999999999,24,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,2.2,96,101200,186,1322,301,48,7,47,5341,55,5245,1589,20,2.1,10,10,4.8,60,9,999999999,24,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.7,96,101200,124,1322,276,37,12,36,4065,0,3967,1135,70,3.1,9,6,11.3,2440,9,999999999,24,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,2.2,96,101200,85,1322,282,17,7,17,1925,0,1928,587,90,3.1,9,7,11.3,2290,9,999999999,24,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,1.7,89,101200,71,1322,280,15,6,15,1695,0,1698,512,110,3.1,9,6,11.3,2290,9,999999999,24,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,2.2,93,101100,82,1322,289,11,5,11,1287,0,1288,408,90,2.6,9,8,11.3,2590,9,999999999,24,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,2.2,93,101100,119,1322,281,28,15,26,3143,0,2925,887,80,1.5,9,6,11.3,2440,9,999999999,23,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,2.2,89,101000,179,1322,306,31,1,31,3551,0,3558,1142,350,2.6,10,10,11.3,150,9,999999999,22,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.7,96,101000,259,1322,298,34,4,33,4007,57,3896,1326,300,1.5,10,10,11.3,150,9,999999999,22,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,1.1,100,101000,353,1322,292,40,2,40,4787,62,4795,1701,260,2.6,10,10,0.8,310,9,999999999,21,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,1.1,96,101100,454,1322,287,127,45,111,14412,2629,12644,4295,270,6.2,10,9,6.4,60,9,999999999,20,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,1.1,96,101100,556,1322,295,63,11,59,7685,563,7212,2747,270,5.2,10,10,1.6,120,9,999999999,19,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.7,96,101100,651,1322,298,198,38,179,22583,2848,20512,7305,270,5.7,10,10,1.6,60,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.7,96,101100,732,1322,298,222,6,218,25318,482,24989,8976,270,6.2,10,10,1.6,60,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.7,93,101100,796,1322,286,344,191,229,39526,15442,26450,9751,260,7.2,8,8,11.3,2590,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,1.7,86,101100,836,1322,286,426,258,262,48765,21806,30159,11015,270,5.7,7,7,11.3,2290,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.1,89,101100,850,1322,300,235,10,229,27262,800,26705,10118,270,6.7,10,10,11.3,1680,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,1.7,86,101200,838,1322,305,250,1,250,28737,83,28894,10686,260,5.2,10,10,11.3,820,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,2.8,96,101200,799,1322,304,135,19,124,16278,1247,15007,6012,230,4.1,10,10,6.4,430,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,3.3,93,101200,738,1322,301,249,66,212,28482,5199,24372,8852,240,5.2,10,9,11.3,820,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.0,3.3,89,101200,657,1322,312,144,7,140,16767,474,16367,6117,270,4.6,10,10,11.3,610,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.6,4.4,93,101200,562,1322,316,162,15,155,18345,1042,17630,6101,280,4.6,10,10,11.3,760,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,3.3,93,101200,461,1322,309,102,0,102,10214,0,10296,4072,250,3.6,10,10,11.3,670,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.6,4.4,93,101200,359,1322,316,79,2,78,8986,85,8901,2985,250,3.1,10,10,11.3,460,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.6,4.4,93,101200,264,1322,316,76,0,76,7477,0,7532,2553,250,2.6,10,10,11.3,400,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,2.8,96,101200,183,1322,304,31,0,31,3029,0,3051,1153,280,2.6,10,10,2.4,270,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,2.8,100,101300,120,1322,302,19,1,19,2193,0,2197,699,250,4.1,10,10,0.8,150,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,2.2,100,101200,81,1322,298,9,0,9,871,0,877,342,220,2.1,10,10,0.8,150,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.1,93,101200,67,1322,297,7,0,7,677,0,682,267,230,2.6,10,10,0.8,90,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,1.1,100,101200,79,1322,284,15,3,14,1717,0,1605,496,240,2.6,10,9,1.2,3050,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,1.7,100,101200,115,1322,281,26,9,26,2912,0,2918,879,210,2.6,10,8,1.6,7620,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,2.8,100,101100,176,1322,302,28,1,28,3227,0,3233,1046,190,3.1,10,10,0.2,90,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.6,5.6,100,101000,256,1322,317,65,3,64,7247,76,7159,2230,180,6.2,10,10,0.4,90,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.1,6.1,100,101000,349,1322,320,68,5,67,7796,186,7703,2618,170,5.2,10,10,0.4,90,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,7.8,7.2,96,100900,451,1322,329,92,4,90,10585,203,10389,3652,160,6.2,10,10,0.8,30,9,999999999,19,0.0000,0,88,0.000,0.0,1.0 +1988,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,8.9,8.3,96,100900,552,1322,335,130,2,129,14875,125,14820,5280,160,4.1,10,10,0.8,90,9,999999999,20,0.0000,0,88,0.000,0.1,1.0 +1988,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,10.6,10.0,96,100800,647,1322,345,117,2,116,13756,121,13689,5216,170,6.2,10,10,11.3,760,9,999999999,22,0.0000,0,88,0.000,0.1,1.0 +1988,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,12.2,10.6,90,100800,729,1322,354,146,4,144,17134,260,16970,6555,220,6.7,10,10,11.3,760,9,999999999,24,0.0000,0,88,0.000,0.1,1.0 +1988,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,12.8,11.1,90,100800,793,1322,358,134,1,134,15985,63,16049,6398,210,5.2,10,10,11.3,760,9,999999999,26,0.0000,0,88,0.000,0.2,1.0 +1988,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,7.2,6.1,93,100800,833,1322,325,151,3,149,18031,203,17866,7138,240,7.7,10,10,11.3,1680,9,999999999,28,0.0000,0,88,0.000,0.2,1.0 +1988,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,5.6,5.0,96,100800,847,1322,316,161,1,161,19165,70,19248,7668,240,6.2,10,10,8.0,670,9,999999999,29,0.0000,0,88,0.000,0.2,1.0 +1988,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,5.0,4.4,96,100800,835,1322,313,162,0,162,16743,0,16896,7660,240,5.7,10,10,8.0,90,9,999999999,31,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,3.3,96,100800,796,1322,307,153,1,152,18152,69,18109,7126,250,7.7,10,10,6.4,90,9,999999999,29,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,2.2,96,100900,735,1322,301,157,1,157,18388,71,18467,7055,260,7.7,10,10,8.0,760,9,999999999,27,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.7,96,100900,654,1322,298,137,1,137,15978,68,16042,6002,260,6.7,10,10,8.0,610,9,999999999,25,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,1.7,100,101000,559,1322,296,105,0,105,10611,0,10699,4530,270,7.7,10,10,0.6,60,9,999999999,23,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.6,96,101100,458,1322,292,75,1,75,8795,50,8820,3178,250,8.2,10,10,2.4,120,9,999999999,21,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,101100,356,1322,289,61,1,61,7079,39,7098,2452,260,7.7,10,10,1.6,90,9,999999999,19,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,101200,261,1322,289,70,0,70,6895,0,6946,2406,270,9.8,10,10,4.8,120,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,101200,179,1322,289,40,0,40,3911,0,3939,1398,260,7.7,10,10,4.8,400,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.0,92,101200,117,1322,291,28,0,28,2723,0,2741,939,260,8.8,10,10,4.8,400,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,101300,77,1322,289,9,0,9,872,0,877,340,260,10.8,10,10,11.3,310,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,-0.6,92,101400,63,1322,289,12,0,12,1161,0,1169,421,250,10.3,10,10,4.8,310,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,101400,75,1322,289,16,0,16,1549,0,1560,546,250,9.3,10,10,8.0,310,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,101400,112,1322,289,25,0,25,2429,0,2445,846,250,8.8,10,10,6.4,310,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,-0.6,92,101500,172,1322,289,45,0,45,4397,0,4428,1485,270,9.8,10,10,8.0,310,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,101600,252,1322,289,77,0,77,7577,0,7632,2496,260,10.3,10,10,9.7,310,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,101600,346,1322,289,111,1,110,12233,53,12173,3689,270,9.3,10,10,6.4,310,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,-0.6,89,101700,447,1322,277,160,58,141,17783,3836,15740,5003,250,10.3,10,8,9.7,310,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.6,96,101800,549,1322,270,240,177,166,26965,12903,18737,6285,240,7.7,10,6,2.4,120,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.6,96,101800,644,1322,270,318,362,141,36930,24875,16442,6087,250,8.2,10,6,2.4,120,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.6,92,101900,726,1322,266,439,514,156,51370,36614,18333,6975,250,8.8,10,3,4.8,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,0.6,89,102000,789,1322,268,519,640,135,62103,43489,16217,6429,250,8.2,10,3,11.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,0.6,89,102000,830,1322,272,509,458,221,59020,36395,25757,9732,250,8.8,10,5,11.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.1,89,102000,844,1322,275,474,486,163,56413,34671,19484,7735,250,7.2,10,5,11.3,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.1,89,102100,832,1322,285,427,310,231,49354,24989,26840,10068,250,7.7,10,8,11.3,90,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,0.6,89,102000,793,1322,272,436,450,164,51439,32416,19434,7568,270,7.7,10,5,9.7,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,0.6,89,102100,732,1322,270,372,391,155,43609,27783,18248,6971,270,6.7,9,4,11.3,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,0.6,89,102100,651,1322,268,403,481,164,46325,34972,18936,6873,260,6.7,10,3,11.3,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.6,92,102100,556,1322,268,299,447,109,34820,27503,12739,4658,260,6.7,9,4,11.3,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,0.6,89,102200,454,1322,272,156,55,137,17420,3578,15364,4980,250,6.7,10,5,11.3,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.6,96,102200,352,1322,278,116,112,86,13083,5137,9733,3184,260,6.7,10,8,11.3,2900,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.6,96,102200,257,1322,292,52,95,33,6135,1419,3899,1328,240,6.2,10,10,0.6,30,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,1.1,100,102200,175,1322,292,35,2,34,3980,0,3875,1228,240,5.7,10,10,0.6,30,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,1.7,100,102300,113,1322,296,22,2,22,2500,0,2504,776,250,5.7,10,10,0.4,30,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,1.1,100,102300,74,1323,292,9,1,9,1062,0,1063,337,250,6.2,10,10,0.4,30,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,102300,59,1323,281,13,3,13,1471,0,1474,444,240,5.2,9,9,0.4,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,102400,71,1323,255,15,65,11,1739,0,1277,399,240,3.1,1,1,11.3,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.0,92,102400,108,1323,263,29,44,25,3243,0,2802,837,230,3.1,4,3,11.3,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.0,92,102400,168,1323,257,60,208,34,6788,0,3855,1205,230,3.6,2,1,11.3,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.6,96,102400,248,1323,258,111,331,49,12633,6515,5591,1812,230,4.1,2,1,11.3,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.1,89,102400,342,1323,260,182,472,61,21012,17231,7061,2411,240,4.6,2,0,16.1,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,1.7,86,102400,443,1323,270,228,419,88,26285,21789,10178,3565,240,3.6,2,1,16.1,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,1.1,86,102400,545,1323,270,325,485,124,37350,31093,14306,5094,240,6.2,3,2,16.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,1.7,82,102500,641,1323,282,317,336,154,36523,23728,17819,6495,240,6.2,6,5,16.1,3050,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.0,2.2,83,102500,723,1323,291,386,258,245,43525,21809,27777,9609,250,6.2,8,7,16.1,1490,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.1,2.8,80,102500,786,1323,279,531,727,98,65023,45034,12039,4861,250,5.2,1,1,16.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.1,2.8,80,102500,827,1323,279,559,724,104,68602,45541,12806,5216,250,6.2,1,1,16.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.1,3.3,83,102500,841,1323,286,537,516,207,62662,39460,24275,9334,250,6.2,4,3,16.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.6,3.3,86,102500,829,1323,273,601,782,109,73519,49579,13379,5444,270,4.6,0,0,16.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.0,2.8,86,102500,790,1323,275,546,688,132,65429,45951,15879,6315,270,5.7,1,1,11.3,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,1.7,86,102500,729,1323,273,472,657,107,56888,41615,12940,5112,270,5.7,3,2,11.3,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,1.7,89,102500,648,1323,274,344,375,159,39604,26811,18386,6700,270,5.2,9,3,9.7,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,1.1,96,102500,553,1323,287,183,49,162,20630,3526,18346,6230,280,5.7,10,9,0.6,7620,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.6,96,102500,451,1323,284,153,33,141,17030,2176,15763,5050,280,5.2,10,9,0.6,7620,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.6,100,102600,349,1323,290,74,42,63,8548,1611,7297,2500,280,5.7,10,10,0.6,30,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,102600,253,1323,271,96,77,80,10534,2660,8811,2582,280,5.7,10,7,0.6,7620,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,0.0,100,102600,172,1323,287,29,3,29,3336,0,3342,1076,270,6.2,10,10,0.6,7620,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-0.6,100,102600,109,1323,284,31,7,30,3428,0,3326,965,250,6.7,10,10,0.4,7620,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-1.1,96,102600,70,1323,275,8,7,7,960,0,840,268,250,4.6,10,9,0.6,7620,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.1,-1.1,100,102600,56,1323,273,5,0,5,483,0,487,193,240,5.7,10,9,0.6,7620,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.1,-1.1,100,102600,67,1323,258,17,45,14,1927,0,1590,481,260,7.2,6,5,2.4,2290,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-0.6,100,102600,104,1323,263,30,61,25,3345,0,2795,828,250,6.2,8,6,11.3,2130,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-1.1,96,102600,164,1323,256,61,225,33,6906,0,3744,1169,250,6.2,4,3,11.3,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-0.6,96,102600,244,1323,259,115,292,61,12842,7240,6833,2116,260,6.7,5,3,11.3,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,-0.6,92,102600,338,1323,275,103,68,86,11559,3047,9685,3110,260,6.7,8,8,16.1,2130,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,-0.6,85,102600,440,1323,285,150,127,108,17006,7312,12290,4146,260,6.2,9,9,16.1,2740,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,0.0,85,102600,542,1323,288,158,62,132,18059,4093,15148,5321,260,7.2,9,9,16.1,2740,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,0.0,82,102600,637,1323,290,244,114,189,27648,8812,21520,7495,270,6.2,9,9,16.1,2130,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,0.0,82,102600,719,1323,290,268,112,207,30634,8891,23779,8572,260,7.2,9,9,16.1,2440,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,0.0,82,102600,783,1323,290,262,77,216,30194,6141,25019,9273,250,6.7,9,9,16.1,2590,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,0.6,79,102600,823,1323,304,152,8,147,18174,556,17649,7026,260,6.2,10,10,16.1,2590,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,0.6,82,102500,838,1323,301,242,34,220,28112,2692,25687,9752,260,6.2,10,10,16.1,2740,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,0.6,79,102500,826,1323,304,222,6,218,25755,475,25420,9614,250,7.7,10,10,16.1,2740,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,0.6,82,102500,787,1323,282,381,195,264,43243,16831,30131,10673,270,6.2,9,7,11.3,2900,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,0.6,82,102400,725,1323,287,370,230,243,41803,19469,27603,9598,270,5.2,8,8,11.3,2900,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,1.1,79,102400,644,1323,284,291,262,163,33421,18965,18804,6807,290,5.7,7,6,11.3,2900,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,0.6,79,102400,549,1323,289,250,230,154,28282,16212,17499,5999,300,4.1,8,8,11.3,2900,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,0.6,86,102300,447,1323,285,176,72,152,19452,4939,16877,5258,250,4.1,9,8,11.3,2740,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,0.0,85,102300,345,1323,288,99,37,89,11113,1719,10026,3232,280,3.6,9,9,11.3,2740,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,0.6,89,102200,249,1323,282,90,55,79,9871,1845,8697,2543,250,4.1,8,8,11.3,2740,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.0,89,102200,168,1323,280,45,28,42,5014,63,4692,1416,290,4.1,9,8,11.3,2740,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.6,92,102200,105,1323,280,17,20,16,1972,0,1858,590,260,4.1,10,8,11.3,2900,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.6,92,102100,66,1323,286,4,2,4,499,0,498,159,270,3.6,10,9,11.3,2900,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.6,96,102100,52,1323,278,7,1,7,825,0,826,260,280,3.6,10,8,11.3,2900,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.6,96,102100,63,1323,284,10,1,10,1160,0,1161,362,280,4.1,10,9,11.3,3050,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.6,96,102000,99,1323,278,14,9,13,1640,0,1524,487,290,4.1,9,8,11.3,3660,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.6,96,102000,160,1323,274,38,24,35,4270,0,3943,1212,270,4.6,8,7,11.3,3350,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.6,96,101900,240,1323,270,71,89,55,7981,1881,6200,1953,280,4.6,8,6,11.3,3660,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.0,92,101900,334,1323,267,141,221,85,15817,9717,9568,3068,280,4.1,7,5,11.3,3660,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,101900,436,1323,268,167,124,126,18676,7667,14150,4590,290,4.1,8,6,8.0,3350,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,101900,538,1323,271,212,152,150,23963,10594,17029,5807,320,3.6,9,7,3.2,3350,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.0,92,101800,633,1323,267,380,484,147,43903,33830,17055,6236,300,3.6,7,5,11.3,3050,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.6,92,101900,716,1323,266,427,501,155,49901,35625,18191,6894,320,3.6,6,3,6.4,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.0,92,101800,780,1323,291,207,32,188,24105,2425,21996,8348,330,4.1,10,10,1.6,60,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.0,92,101800,820,1323,291,212,6,208,24664,468,24319,9248,300,4.1,10,10,0.8,60,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,101800,835,1323,289,234,10,228,27096,805,26538,9991,330,4.1,10,10,0.8,60,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.0,92,101800,822,1323,291,258,4,255,29549,338,29366,10720,340,3.6,10,10,0.8,60,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.0,92,101800,784,1323,291,122,7,118,14741,460,14309,5719,350,5.2,10,10,0.8,90,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.6,96,101800,722,1323,292,200,5,198,22958,389,22839,8337,360,5.2,10,10,0.8,90,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,101800,641,1323,289,221,5,218,24784,412,24575,8264,20,5.2,10,10,0.8,90,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,0.0,100,101800,546,1323,287,138,2,138,15741,135,15806,5533,10,5.2,10,10,0.8,90,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-0.6,96,101800,443,1323,286,121,1,121,13618,61,13673,4529,10,5.7,10,10,1.6,60,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-1.1,92,101800,341,1323,286,87,0,87,8635,0,8700,3165,30,5.2,10,10,1.6,90,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-1.1,96,101800,245,1323,269,62,48,53,7019,1066,6017,1929,30,5.2,10,8,1.6,90,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-1.1,92,101800,163,1323,286,30,1,30,3429,0,3436,1093,20,5.2,10,10,1.6,90,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.1,-1.7,96,101900,101,1323,280,14,1,14,1638,0,1639,523,30,4.6,10,10,1.6,90,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.1,-1.7,96,101900,61,1323,280,7,0,7,677,0,682,265,30,4.6,10,10,1.6,90,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.1,-1.7,96,101900,47,1323,267,3,9,3,376,0,375,118,30,4.1,10,8,1.6,90,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.7,-2.2,96,101900,59,1323,251,12,34,10,1387,0,1157,358,40,4.1,8,3,3.2,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.7,-2.2,96,101900,95,1323,257,26,27,24,2892,0,2676,785,30,5.2,9,6,2.4,90,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.7,-2.2,96,101900,155,1323,277,34,5,33,3833,0,3729,1151,40,4.1,10,10,11.3,90,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.1,-2.2,92,101900,236,1323,280,49,6,48,5564,108,5464,1753,10,4.6,10,10,4.8,150,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.1,-2.2,92,101900,330,1323,259,109,90,87,12195,4041,9768,3100,20,6.2,10,6,4.8,340,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.1,-2.8,89,102000,432,1323,272,104,87,76,12109,4310,8874,3138,20,4.1,9,9,11.3,310,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-2.8,85,102000,534,1323,274,128,40,112,14808,2498,13004,4666,20,6.2,10,9,11.3,310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-2.8,85,102000,630,1323,264,348,381,166,39816,28198,19078,6803,20,5.2,7,7,11.3,310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-2.8,85,102000,712,1323,274,265,98,212,30214,7940,24293,8665,20,4.1,10,9,11.3,310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-2.2,85,102000,776,1323,277,311,85,261,35278,7392,29771,10488,360,4.6,9,9,11.3,310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-2.2,89,102100,817,1323,282,231,11,224,26717,890,26041,9746,20,4.6,10,10,11.3,240,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-1.7,89,102100,831,1323,277,306,97,245,35227,8082,28356,10494,350,4.6,10,9,11.3,240,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-1.7,89,102100,819,1323,271,406,252,249,46582,21199,28724,10522,20,4.6,10,8,6.4,150,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,-1.1,89,102100,781,1323,262,457,466,180,53435,34911,21143,8085,10,4.6,10,4,9.7,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,-0.6,89,102100,718,1323,267,388,390,175,44963,29079,20372,7594,10,4.6,10,5,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,-0.6,89,102100,637,1323,277,296,221,189,33564,17117,21534,7513,10,4.6,10,8,11.3,340,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,-1.1,85,102100,542,1323,282,174,3,173,19478,224,19457,6428,10,4.6,10,9,11.3,340,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,-1.7,85,102100,440,1323,269,194,247,111,21973,14522,12620,4246,10,4.1,9,7,11.3,400,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-1.7,89,102100,337,1323,264,152,193,102,16841,9758,11345,3497,20,4.6,10,6,11.3,340,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-1.1,92,102100,241,1323,286,56,6,55,6312,135,6217,1971,360,3.6,10,10,9.7,270,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-1.1,92,102200,159,1323,286,21,0,21,2051,0,2065,808,10,3.6,10,10,9.7,400,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-1.1,92,102200,96,1323,278,28,13,27,3097,0,2994,866,20,3.6,10,9,11.3,430,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-0.6,96,102200,57,1323,259,11,28,10,1269,0,1155,357,360,3.1,4,3,11.3,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-0.6,100,102200,43,1323,276,0,3,0,0,0,0,0,350,3.1,10,9,0.6,60,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-1.1,96,102200,54,1323,262,10,6,10,1151,0,1152,355,20,3.1,10,6,0.8,30,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-0.6,96,102200,91,1323,286,9,2,9,1078,0,1079,347,360,4.6,10,10,0.4,90,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-0.6,100,102200,151,1323,284,29,3,29,3295,0,3302,1034,360,5.2,10,10,0.4,90,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.1,-1.1,100,102200,231,1323,260,97,205,61,10779,4749,6800,2068,340,4.1,6,6,0.6,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.1,-1.1,100,102300,326,1323,248,171,463,57,19764,15773,6605,2245,340,4.6,3,1,4.8,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-1.1,96,102300,428,1323,250,247,533,74,28778,25755,8646,3059,320,4.1,3,1,9.7,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-1.1,92,102200,530,1323,256,327,626,75,38984,33869,8965,3343,330,5.2,4,2,9.7,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-0.6,96,102300,626,1323,261,345,388,161,39519,28145,18524,6633,340,5.2,10,4,4.8,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,-0.6,92,102200,709,1323,258,454,653,103,54702,41305,12451,4890,320,4.6,4,2,11.3,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.0,92,102300,773,1323,261,507,671,113,61331,43594,13717,5475,290,5.7,4,2,11.3,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.0,89,102300,813,1323,260,548,677,130,66040,45616,15726,6301,290,5.2,3,1,11.3,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,0.0,85,102200,828,1323,261,573,768,90,71153,47556,11209,4584,290,5.7,3,1,11.3,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,0.0,85,102200,816,1323,265,514,561,167,60794,40648,19840,7775,300,6.7,5,2,11.3,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,0.0,85,102200,777,1323,288,262,119,192,30453,9088,22423,8476,280,5.7,9,9,11.3,1980,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,0.0,85,102100,715,1323,277,374,310,205,42764,24523,23557,8498,290,6.2,8,7,11.3,1980,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,0.0,85,102100,633,1323,270,385,561,115,45370,36057,13601,5142,290,5.7,5,4,11.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,0.0,85,102100,538,1323,261,334,653,65,40341,34076,7869,2971,290,6.2,1,1,11.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.0,89,102000,436,1323,294,96,1,96,10986,54,11023,3799,310,6.2,10,10,11.3,150,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.6,96,102000,333,1323,292,76,1,76,8610,41,8637,2843,310,5.7,10,10,1.2,60,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.6,100,101900,237,1323,290,53,3,53,5979,61,5996,1905,320,6.7,10,10,4.8,60,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,101900,155,1323,289,37,1,37,4139,0,4150,1261,320,5.7,10,10,9.7,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,101900,92,1323,289,15,1,14,1744,0,1629,516,310,6.7,10,10,2.4,60,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,101900,53,1324,289,11,0,11,1063,0,1070,382,320,5.7,10,10,1.2,30,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-0.6,96,101900,39,1324,286,5,0,5,483,0,486,188,320,6.2,10,10,1.2,30,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-0.6,100,101900,50,1324,284,6,0,6,580,0,584,226,300,6.2,10,10,1.2,90,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-1.1,96,101900,86,1324,283,17,0,17,1648,0,1660,592,300,6.2,10,10,1.2,60,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-1.1,96,101800,147,1324,269,23,5,23,2656,0,2660,852,300,5.2,10,8,0.8,60,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.1,-1.7,96,101800,227,1324,260,66,49,58,7352,1042,6481,1982,310,5.7,10,6,0.8,60,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,-1.1,-1.1,100,101800,321,1324,260,79,37,70,8970,1408,7972,2623,310,6.7,10,6,2.4,90,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-1.1,96,101700,423,1324,258,182,153,133,20205,9723,14829,4673,310,5.7,9,4,1.6,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-1.1,96,101700,526,1324,275,123,36,109,14230,2202,12655,4538,300,6.2,9,9,1.6,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-0.6,96,101700,622,1324,286,132,21,122,15444,1376,14327,5344,300,6.7,10,10,6.4,90,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,101700,705,1324,271,379,236,253,42508,20508,28533,9631,290,5.7,10,7,6.4,90,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.6,96,101600,769,1324,284,224,58,190,26010,4408,22167,8356,280,6.2,10,9,6.4,90,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.6,92,101600,810,1324,294,225,26,209,26116,2032,24380,9220,280,5.2,10,10,9.7,90,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,1.1,96,101500,824,1324,295,200,8,196,23389,608,23031,8865,280,6.7,10,10,3.2,90,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.7,96,101500,812,1324,298,195,2,194,22772,151,22764,8732,270,6.7,10,10,1.6,90,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.1,93,101500,773,1324,297,188,7,184,21905,524,21539,8187,280,5.7,10,10,9.7,520,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.7,96,101400,711,1324,298,161,1,160,18753,72,18718,7055,280,5.2,10,10,1.6,60,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.1,93,101400,630,1324,297,174,5,172,19842,370,19704,6993,300,4.6,10,10,9.7,400,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.6,92,101300,534,1324,294,122,2,121,14027,127,13965,4968,280,4.6,10,10,9.7,90,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.6,96,101200,431,1324,292,100,1,99,11402,55,11328,3873,280,4.6,10,10,4.8,90,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,101100,329,1324,289,74,1,74,8392,40,8418,2773,280,5.2,10,10,1.6,30,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,0.0,100,101100,233,1324,287,65,0,65,6388,0,6434,2181,270,4.6,10,10,1.6,30,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,0.0,100,101000,150,1324,287,36,0,36,3512,0,3536,1225,280,4.1,10,10,0.8,30,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,0.0,100,101000,87,1324,287,21,0,21,2037,0,2050,706,270,4.6,10,10,0.8,30,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,0.0,100,100900,48,1324,287,8,0,8,773,0,778,290,260,4.1,10,10,0.8,30,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,0.0,100,100900,34,1324,287,4,0,4,386,0,388,152,260,3.6,10,10,1.6,60,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,0.0,100,100700,46,1324,287,4,0,4,386,0,389,155,200,2.6,10,10,11.3,60,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,100700,82,1324,289,16,0,16,1550,0,1561,558,220,1.5,10,10,11.3,2290,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,100700,142,1324,289,37,0,37,3605,0,3630,1211,280,4.1,10,10,11.3,1980,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,0.0,96,100600,222,1324,289,54,0,54,5300,0,5338,1871,260,2.6,10,10,11.3,1130,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.0,92,100500,317,1324,291,56,0,56,5543,0,5584,2193,170,3.1,10,10,11.3,1070,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,0.6,89,100400,419,1324,297,117,0,117,11683,0,11774,4280,240,2.6,10,10,11.3,2440,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,0.6,86,100300,522,1324,291,177,77,147,19964,5288,16652,5632,230,1.5,10,9,11.3,2440,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,0.0,85,100300,618,1324,288,214,67,183,24219,5115,20810,7204,340,3.1,10,9,11.3,2440,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,0.0,82,100200,701,1324,280,340,208,230,38403,17329,26116,9052,360,3.6,10,7,11.3,2440,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,0.6,79,100200,765,1324,289,362,300,188,42041,22727,21937,8269,20,4.1,10,8,11.3,2440,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.6,1.7,76,100100,806,1324,298,382,222,246,43727,18427,28312,10332,50,5.2,10,8,11.3,2440,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,1.1,86,100100,821,1324,302,363,148,270,41359,12750,30937,11119,10,5.2,10,10,11.3,2440,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.0,1.7,79,100000,808,1324,295,448,391,208,51999,30368,24263,9184,50,6.2,10,8,11.3,2290,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,1.1,79,100000,770,1324,307,189,11,182,22026,821,21309,8099,50,6.7,10,10,11.3,2290,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,1.1,79,99900,707,1324,307,186,24,173,21521,1771,20108,7470,50,6.7,10,10,11.3,2290,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,1.7,86,99800,626,1324,305,138,9,134,16037,603,15635,5784,30,6.2,10,10,11.3,3050,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.1,89,99700,530,1324,300,121,3,120,13907,189,13844,4919,30,6.2,10,10,11.3,150,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.7,96,99600,427,1324,298,83,6,81,9603,297,9400,3302,30,7.2,10,10,8.0,240,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,1.7,96,99500,324,1324,298,45,3,44,5308,88,5200,1814,40,7.7,10,10,8.0,370,9,999999999,12,0.0000,0,88,0.000,0.2,1.0 +1988,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,2.2,1.7,96,99400,228,1324,298,27,2,27,3201,13,3206,1086,30,6.7,10,10,9.7,370,9,999999999,12,0.0000,0,88,0.000,0.2,1.0 +1988,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,2.2,1.7,96,99300,146,1324,298,19,0,19,1852,0,1865,729,40,6.2,10,10,9.7,370,9,999999999,13,0.0000,0,88,0.000,0.2,1.0 +1988,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,1.7,1.7,100,99300,83,1324,296,11,0,11,1066,0,1073,413,30,6.7,10,10,9.7,90,9,999999999,13,0.0000,0,88,0.000,0.2,1.0 +1988,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,1.7,1.7,100,99200,44,1324,296,5,0,5,482,0,486,189,30,6.7,10,10,9.7,90,9,999999999,13,0.0000,0,88,0.000,0.2,1.0 +1988,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,1.7,1.7,100,99200,30,1324,296,2,0,2,193,0,194,79,40,6.2,10,10,9.7,90,9,999999999,14,0.0000,0,88,0.000,0.2,1.0 +1988,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,1.7,1.1,96,99100,41,1324,295,4,0,4,386,0,388,154,30,6.7,10,10,9.7,90,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,1.1,100,99100,77,1324,292,17,0,17,1646,0,1657,577,30,6.7,10,10,1.2,30,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,1.1,100,99000,137,1324,292,35,1,35,3883,0,3894,1152,30,7.7,10,10,0.4,30,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,1.1,100,99000,218,1324,292,57,1,56,6339,18,6247,1902,20,7.2,10,10,0.4,30,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,1.1,100,99000,312,1324,292,92,1,92,10180,44,10218,3129,20,5.2,10,10,0.4,30,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,1.1,100,99000,415,1324,292,120,0,120,11976,0,12069,4328,350,6.2,10,10,0.4,30,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,1.1,100,99000,518,1324,292,169,1,168,18834,73,18811,6111,360,5.7,10,10,0.4,30,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,1.1,100,99000,614,1324,292,192,1,192,21620,78,21726,7406,330,5.7,10,10,0.8,90,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,1.1,100,99100,697,1324,292,219,0,219,22397,0,22591,8739,330,5.2,10,10,0.8,90,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,1.1,100,99100,761,1324,292,163,1,163,19128,72,19211,7386,290,4.6,10,10,4.8,90,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,1.1,100,99200,802,1324,292,163,1,162,19273,72,19238,7528,290,5.2,10,10,1.6,30,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,1.1,96,99300,817,1324,295,158,1,158,18766,71,18846,7436,280,6.2,10,10,4.8,580,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.7,93,99300,804,1324,274,528,614,153,62730,43021,18254,7197,270,6.2,9,4,11.3,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.1,89,99400,766,1324,300,252,1,252,28597,85,28754,10179,250,4.1,10,10,11.3,580,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,0.6,89,99400,703,1324,288,233,100,180,26859,7510,20846,7673,240,3.1,9,9,11.3,1130,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.8,1.1,89,99500,621,1324,285,287,261,163,32818,18892,18722,6684,250,4.1,9,8,11.3,1130,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,0.6,82,99500,526,1324,282,231,223,142,26173,15103,16157,5542,230,3.6,9,7,11.3,670,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,0.0,76,99500,423,1324,295,128,101,95,14614,5397,10883,3722,220,2.6,9,9,11.3,880,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,0.6,76,99500,320,1324,292,102,88,80,11462,3630,9020,2901,200,4.6,9,8,11.3,790,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,1.1,79,99500,223,1324,298,55,80,41,6301,1004,4708,1535,210,2.6,9,9,11.3,850,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.6,2.8,83,99500,141,1324,299,27,6,26,3083,0,2974,940,200,4.1,10,8,11.3,790,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.0,2.2,83,99600,78,1324,311,5,1,5,622,0,621,200,200,5.2,10,10,11.3,850,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.0,1.7,79,99600,39,1324,310,2,0,2,193,0,194,80,200,4.1,10,10,11.3,790,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,2.8,89,99600,25,1324,300,0,0,0,0,0,0,0,200,3.6,10,9,11.3,760,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,2.2,89,99600,36,1324,297,3,4,3,371,0,371,117,200,3.1,9,9,11.3,880,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,2.2,86,99600,72,1324,308,8,0,8,774,0,779,304,200,4.6,10,10,11.3,670,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.0,3.3,89,99600,132,1324,312,17,1,16,2001,0,1885,613,200,4.6,10,10,11.3,760,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.6,4.4,93,99500,213,1324,316,42,5,41,4776,43,4674,1502,170,5.2,10,10,11.3,520,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.1,5.0,93,99400,308,1324,319,66,2,65,7492,65,7400,2439,180,7.2,10,10,11.3,400,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,7.8,6.1,89,99300,410,1324,328,100,3,99,11306,154,11234,3769,200,8.2,10,10,11.3,1430,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,8.9,5.6,80,99300,513,1324,305,198,203,119,22634,12304,13656,4801,200,9.3,8,5,16.1,3960,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,9.4,5.0,74,99300,610,1324,334,173,4,171,19622,290,19485,6825,200,9.3,10,10,16.1,1980,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,8.9,4.4,74,99400,693,1324,331,132,5,130,15556,329,15379,5899,200,8.2,10,10,16.1,1310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.0,2.8,86,99500,757,1324,311,127,8,122,15222,523,14677,5804,230,4.6,10,10,11.3,760,9,999999999,9,0.0000,0,88,0.000,0.1,1.0 +1988,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,5.6,2.8,83,99500,798,1324,314,117,8,112,14214,512,13654,5500,200,7.2,10,10,11.3,1070,9,999999999,9,0.0000,0,88,0.000,0.1,1.0 +1988,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,6.7,1.1,68,99600,813,1324,291,511,541,177,60121,39775,20920,8132,230,5.2,6,5,16.1,7620,9,999999999,8,0.0000,0,88,0.000,0.1,1.0 +1988,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,6.7,0.6,65,99600,801,1324,293,439,387,203,51001,29969,23699,8974,230,5.2,6,6,16.1,1460,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.7,1.1,68,99700,762,1324,302,307,97,251,34825,8233,28629,10120,230,4.1,9,8,11.3,1830,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,7.8,1.1,63,99800,699,1324,302,339,275,192,38843,21146,22106,8016,230,5.2,8,7,11.3,1830,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.1,0.6,68,99800,617,1324,286,345,420,147,39749,29253,17008,6172,230,4.6,5,4,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.1,1.1,71,99900,521,1324,289,242,298,123,27707,18910,14137,4974,220,4.6,5,5,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.1,1.1,71,99900,418,1324,289,189,215,120,21142,12780,13478,4372,220,6.7,5,5,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.6,0.6,71,100000,315,1324,303,76,41,66,8662,1475,7544,2503,210,6.7,10,9,11.3,2130,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.6,1.1,73,100000,218,1324,304,49,17,46,5551,240,5225,1667,210,6.2,10,9,11.3,2130,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.6,1.1,73,100100,136,1324,304,35,15,33,3911,0,3697,1116,200,5.2,10,9,11.3,1980,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.0,2.2,83,100100,73,1324,302,17,8,17,1916,0,1920,579,200,3.1,9,9,11.3,1980,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.0,2.2,83,100200,34,1325,302,3,5,3,370,0,370,116,190,5.2,9,9,11.3,1370,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,0.6,79,100200,21,1325,285,1,16,1,132,0,131,40,230,5.2,7,7,11.3,1980,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,0.6,82,100200,32,1325,279,3,29,2,380,0,253,79,210,5.7,7,6,11.3,1980,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,0.6,82,100300,67,1325,272,20,129,14,2270,0,1591,483,210,6.2,3,3,11.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,0.0,76,100300,127,1325,276,49,166,33,5432,0,3668,1079,220,6.7,4,4,11.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,0.6,79,100400,208,1325,277,75,178,47,8428,2150,5296,1652,200,6.7,4,4,11.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.0,0.6,73,100400,303,1325,286,108,187,65,12258,6320,7399,2424,200,7.7,7,6,11.3,1980,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.1,1.1,71,100400,406,1325,284,236,516,78,27212,24375,9021,3130,200,8.2,3,3,16.1,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,7.8,1.1,63,100400,509,1325,298,210,204,132,23819,13266,15033,5156,200,10.8,8,6,16.1,1100,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,8.9,1.7,61,100500,605,1325,319,250,78,215,27838,6378,24065,7864,210,10.3,9,9,16.1,910,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,9.4,2.2,61,100500,689,1325,315,309,174,218,34949,14074,24784,8648,220,7.2,9,8,16.1,2900,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,11.1,2.8,57,100600,753,1325,330,271,74,228,30907,6002,26139,9418,200,6.2,9,9,16.1,2130,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,11.1,3.3,59,100600,794,1325,315,500,548,170,58781,39437,20075,7790,230,4.1,9,6,16.1,7620,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,12.8,1.7,47,100600,809,1325,316,456,502,148,54352,34813,17714,7017,200,7.7,9,4,16.1,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,12.8,1.1,45,100600,796,1325,312,517,588,161,61111,42002,19113,7470,200,9.3,7,3,16.1,77777,9,999999999,12,0.0000,0,88,0.000,0.1,1.0 +1988,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,14.4,3.3,48,100600,758,1325,334,329,216,205,37877,16722,23719,8781,200,8.2,8,7,11.3,1370,9,999999999,13,0.0000,0,88,0.000,0.1,1.0 +1988,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,12.8,4.4,57,100600,695,1325,350,106,12,100,12757,732,12074,4739,200,7.2,10,10,11.3,1370,9,999999999,13,0.0000,0,88,0.000,0.1,1.0 +1988,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,12.2,6.1,67,100500,613,1325,349,141,2,140,16264,133,16216,5928,200,8.8,10,10,11.3,1490,9,999999999,14,0.0000,0,88,0.000,0.1,1.0 +1988,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,11.1,7.8,80,100500,517,1325,345,74,2,73,8797,100,8701,3246,200,7.2,10,10,11.3,1070,9,999999999,14,0.0000,0,88,0.000,0.1,1.0 +1988,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,10.0,9.4,96,100500,414,1325,342,71,3,70,8257,127,8164,2899,200,5.2,10,10,11.3,1070,9,999999999,15,0.0000,0,88,0.000,0.1,1.0 +1988,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,10.6,9.4,93,100500,310,1325,345,58,4,57,6656,114,6558,2220,200,4.6,10,10,11.3,1070,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,10.0,9.4,96,100500,213,1325,342,32,0,32,3127,0,3149,1238,200,3.1,10,10,11.3,1070,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,10.0,9.4,96,100500,131,1325,342,22,2,22,2525,0,2529,807,200,3.6,10,10,11.3,490,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,7.8,7.8,100,100600,68,1325,330,18,1,18,2007,0,2011,596,260,1.5,10,10,8.0,270,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.7,6.7,100,100600,30,1325,323,2,0,2,192,0,194,79,260,1.5,10,10,0.8,150,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.0,5.0,100,100700,16,1325,314,1,0,1,96,0,97,40,240,1.5,10,10,0.4,30,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,3.9,100,100700,27,1325,299,0,0,0,0,0,0,0,250,3.6,10,9,1.6,2900,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,3.3,100,100800,62,1325,296,10,4,10,1159,0,1161,362,240,2.1,10,9,0.8,2900,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.9,3.9,100,100800,122,1325,288,31,6,30,3449,0,3346,996,240,2.6,10,7,1.2,3050,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.0,5.0,100,100900,203,1325,286,68,99,52,7550,1215,5792,1758,220,1.5,10,4,1.6,3050,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.6,5.6,100,100900,298,1325,287,129,234,76,14409,8296,8518,2696,220,2.6,6,3,9.7,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,7.8,6.7,93,101000,401,1325,299,163,151,117,18130,8383,13067,4180,230,3.1,8,4,11.3,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,9.4,6.7,83,101000,504,1325,311,220,235,130,24908,14640,14779,5077,240,2.6,10,6,11.3,7620,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,8.9,6.7,86,101000,601,1325,313,202,158,130,23361,10115,15094,5534,260,3.6,10,7,11.3,2440,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,8.9,6.1,83,101100,685,1325,317,252,109,196,28684,8263,22420,8020,270,3.6,10,8,11.3,2740,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,10.0,6.7,80,101100,749,1325,317,448,467,183,51882,34016,21293,8015,280,3.1,9,7,11.3,3050,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,10.6,6.7,77,101100,790,1325,316,410,307,226,47037,24105,26064,9629,20,3.1,9,6,11.3,3050,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,10.6,6.7,77,101100,805,1325,332,248,63,210,28694,4789,24420,9227,10,3.6,10,9,11.3,2590,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,10.6,6.7,77,101100,792,1325,332,264,68,223,30336,5306,25758,9560,350,3.6,10,9,11.3,2440,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,10.0,6.7,80,101100,753,1325,317,302,125,231,34368,9988,26428,9516,360,4.1,10,7,11.3,2440,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,12.8,8.3,75,101100,691,1325,332,416,431,189,47522,31680,21695,7873,330,3.6,10,7,11.3,2440,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,12.2,8.3,77,101100,608,1325,325,257,235,148,29459,15660,17038,6161,40,4.1,8,6,11.3,7620,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,12.8,7.8,72,101000,512,1325,328,196,151,137,22147,9595,15546,5333,50,4.1,8,6,11.3,2290,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,12.8,10.0,83,101000,409,1325,346,85,28,76,9806,1212,8794,3087,190,4.6,10,9,11.3,1070,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,12.2,9.4,83,101000,305,1325,343,77,19,73,8648,640,8226,2666,170,4.1,10,9,11.3,1220,9,999999999,19,0.0000,0,88,0.000,0.2,1.0 +1988,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,10.0,8.3,90,101000,208,1325,341,25,3,24,2962,0,2847,961,140,4.6,10,10,11.3,1520,9,999999999,19,0.0000,0,88,0.000,0.2,1.0 +1988,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,10.0,8.9,93,100900,126,1325,341,12,1,12,1440,0,1441,474,180,4.1,10,10,11.3,1520,9,999999999,19,0.0000,0,88,0.000,0.2,1.0 +1988,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,8.3,7.8,96,100800,63,1325,332,14,0,14,1350,0,1360,485,100,4.1,10,10,11.3,6100,9,999999999,19,0.0000,0,88,0.000,0.0,1.0 +1988,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,7.2,6.7,96,100700,25,1325,310,0,2,0,0,0,0,0,190,4.1,10,8,11.3,7620,9,999999999,19,0.0000,0,88,0.000,0.0,1.0 +1988,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,10.6,10.0,96,100700,11,1325,345,0,0,0,0,0,0,0,200,5.2,10,10,11.3,6100,9,999999999,19,0.0000,0,88,0.000,0.0,1.0 +1988,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,7.2,7.2,100,100700,22,1325,326,1,0,1,96,0,97,40,310,2.6,10,10,1.6,2440,9,999999999,19,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.7,6.1,96,100700,57,1325,323,7,0,7,675,0,680,263,190,1.5,10,10,0.8,1680,9,999999999,19,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,3.3,100,100800,117,1325,304,15,0,15,1457,0,1467,567,280,5.2,10,10,0.4,30,9,999999999,19,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,2.8,96,100800,198,1325,295,55,42,49,6128,448,5475,1671,300,4.1,9,9,9.7,6100,9,999999999,19,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,3.9,96,100800,293,1325,310,71,79,53,8157,2135,6104,2045,270,3.1,10,10,11.3,1370,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,7.2,5.6,89,100900,396,1325,324,95,7,93,10757,344,10568,3545,280,2.6,10,10,11.3,1190,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,7.2,5.0,86,100900,500,1325,324,105,9,102,12117,510,11812,4214,240,3.1,10,10,11.3,1070,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,8.9,6.1,83,100900,597,1325,333,146,1,145,16728,67,16683,5992,250,4.1,10,10,11.3,1070,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,10.6,7.2,80,100800,680,1325,312,345,339,170,39668,24087,19636,7215,210,6.7,9,4,11.3,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,9.4,6.1,80,100800,745,1325,308,385,219,261,43311,18592,29527,10202,260,6.7,9,5,11.3,6100,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1988,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,8.9,6.1,83,100800,786,1325,317,308,116,239,35160,9364,27430,9979,270,5.2,9,8,11.3,3660,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,9.4,6.1,80,100800,801,1325,335,157,4,154,18603,274,18325,7219,260,4.1,10,10,11.3,1220,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,10.0,6.1,77,100800,788,1325,338,180,4,178,21045,288,20908,8053,270,5.7,10,10,11.3,1430,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,10.6,6.7,77,100700,749,1325,342,228,15,219,26038,1173,25140,9144,230,2.6,10,10,11.3,1520,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,10.0,6.7,80,100700,686,1325,339,213,4,211,24115,312,24011,8464,250,4.1,10,10,11.3,1370,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,11.1,6.7,74,100600,604,1325,344,178,4,176,20117,290,19985,6944,220,3.1,10,10,11.3,1010,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,10.0,7.2,83,100600,507,1325,339,132,2,131,14957,125,14905,5142,200,2.6,10,10,11.3,760,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,9.4,7.2,86,100600,404,1325,336,52,0,52,5174,0,5214,2236,180,2.6,10,10,11.3,880,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,9.4,7.2,86,100600,300,1325,336,40,0,40,3944,0,3973,1637,90,4.6,10,10,11.3,980,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,8.9,7.8,93,100500,203,1325,335,27,1,27,3164,0,3169,1059,180,3.6,10,10,11.3,1130,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,8.9,8.3,96,100500,120,1325,335,16,0,16,1551,0,1562,607,190,3.6,10,10,11.3,1370,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,8.9,8.3,96,100500,58,1325,335,11,0,11,1060,0,1067,393,200,3.1,10,10,11.3,1130,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,8.3,7.8,96,100400,20,1326,332,2,0,2,192,0,193,78,200,3.1,10,10,11.3,1980,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,8.3,7.2,93,100400,7,1326,331,0,0,0,0,0,0,0,200,4.1,10,10,11.3,6100,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,8.3,7.2,93,100300,17,1326,322,0,3,0,0,0,0,0,200,4.1,10,9,11.3,6100,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,8.3,6.7,89,100300,52,1326,322,7,0,7,675,0,679,261,200,4.6,10,9,11.3,6100,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,8.3,6.1,86,100200,112,1326,330,25,3,25,2801,0,2808,850,200,7.2,10,10,11.3,1070,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,8.9,5.6,80,100100,193,1326,332,49,5,48,5450,40,5355,1630,200,9.8,10,10,11.3,1130,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,8.9,6.1,83,100100,288,1326,333,46,7,44,5350,154,5128,1747,210,9.8,10,10,9.7,610,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,8.3,7.8,96,100100,391,1326,332,48,3,47,5723,104,5614,2021,210,10.3,10,10,11.3,700,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,8.9,7.2,89,100100,495,1326,334,80,1,79,9401,50,9310,3410,220,8.8,10,10,11.3,700,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,7.2,6.1,93,100100,592,1326,325,108,3,107,12663,180,12589,4704,210,8.2,10,10,6.4,610,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,6.1,5.6,96,100100,676,1326,319,120,6,117,14206,378,13901,5350,210,6.2,10,10,6.4,760,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1988,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,5.6,5.0,96,100100,740,1326,316,137,5,135,16234,332,16060,6261,230,6.2,10,10,4.8,610,9,999999999,18,0.0000,0,88,0.000,0.7,1.0 +1988,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,5.0,4.4,96,100200,782,1326,313,166,1,166,19502,71,19589,7587,240,5.2,10,10,4.8,90,9,999999999,18,0.0000,0,88,0.000,0.7,1.0 +1988,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,3.9,3.3,96,100200,796,1326,307,165,1,164,19461,71,19428,7580,240,5.2,10,10,3.2,90,9,999999999,18,0.0000,0,88,0.000,0.7,1.0 +1988,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,3.9,3.3,96,100200,784,1326,307,158,1,157,18660,70,18621,7268,240,4.1,10,10,6.4,90,9,999999999,18,0.0000,0,88,0.000,1.0,1.0 +1988,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,4.4,4.4,100,100200,745,1326,310,149,1,149,17543,69,17617,6812,240,4.1,10,10,3.2,90,9,999999999,18,0.0000,0,88,0.000,1.0,1.0 +1988,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,4.4,3.9,96,100200,682,1326,310,151,0,150,15410,0,15441,6578,240,3.6,10,10,3.2,240,9,999999999,18,0.0000,0,88,0.000,1.0,1.0 +1988,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,5.0,5.0,100,100200,599,1326,314,112,1,112,13118,61,13165,4919,240,4.6,10,10,3.2,90,9,999999999,17,0.0000,0,88,0.000,1.0,1.0 +1988,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,6.7,6.1,96,100100,503,1326,323,92,1,91,10725,54,10643,3868,220,5.7,10,10,3.2,120,9,999999999,17,0.0000,0,88,0.000,1.0,1.0 +1988,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,8.3,7.8,96,100100,399,1326,332,70,1,70,8117,42,8140,2863,220,8.2,10,10,3.2,120,9,999999999,17,0.0000,0,88,0.000,1.0,1.0 +1988,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,7.8,7.2,96,100000,295,1326,329,57,0,57,5617,0,5659,2183,220,7.2,10,10,3.2,120,9,999999999,16,0.0000,0,88,0.000,1.3,1.0 +1988,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,6.1,5.6,96,99900,198,1326,319,33,0,33,3227,0,3250,1246,220,7.2,10,10,3.2,120,9,999999999,16,0.0000,0,88,0.000,1.3,1.0 +1988,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,5.6,5.6,100,99900,115,1326,317,17,0,17,1650,0,1661,635,220,7.2,10,10,3.2,120,9,999999999,16,0.0000,0,88,0.000,1.3,1.0 +1988,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,4.4,4.4,100,99900,53,1326,310,6,0,6,579,0,583,229,220,4.6,10,10,3.2,120,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1988,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,4.4,3.9,96,99900,15,1326,310,1,0,1,96,0,97,40,240,5.7,10,10,2.0,120,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,3.3,3.3,100,99900,2,1326,304,0,0,0,0,0,0,0,250,7.7,10,10,2.0,120,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,2.2,2.2,100,100000,12,1326,298,1,0,1,96,0,97,40,250,7.7,10,10,4.8,120,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,1.7,100,100100,47,1326,296,7,0,7,676,0,680,258,250,6.7,10,10,4.8,120,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.6,96,100100,107,1326,270,30,64,25,3356,0,2803,839,230,4.6,6,6,11.3,3050,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.0,92,100200,188,1326,270,50,35,45,5588,261,5043,1542,260,5.7,10,6,11.3,7620,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-0.6,100,100300,283,1326,284,93,2,92,10193,85,10123,2964,250,6.2,10,10,1.2,30,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-0.6,100,100400,386,1326,284,143,30,135,15693,1881,14881,4451,270,6.7,10,10,0.4,30,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1988,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,-0.6,-0.6,100,100400,490,1326,284,150,12,146,16809,820,16432,5411,260,7.2,10,10,6.4,90,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,0.0,100,100400,587,1326,287,184,1,183,20691,76,20678,6986,260,7.7,10,10,6.4,90,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,-0.6,92,100500,671,1326,289,223,6,220,25138,494,24928,8555,280,7.7,10,10,6.4,90,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.6,-0.6,92,100600,736,1326,289,278,2,277,31141,180,31207,10474,250,7.2,10,10,6.4,90,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.0,92,100600,777,1326,277,320,137,239,36547,11392,27442,9912,250,6.7,10,8,11.3,90,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.0,89,100600,792,1326,270,488,527,172,57356,38661,20306,7854,250,6.7,10,5,11.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.0,89,100700,779,1326,268,447,420,199,51830,32485,23187,8720,270,7.2,9,4,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.0,89,100700,740,1326,266,438,549,129,52177,36934,15426,6034,250,6.7,7,3,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.0,89,100800,677,1326,263,396,495,141,46319,34175,16559,6245,260,6.7,5,2,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.7,0.0,89,100800,594,1326,260,368,585,103,43411,35950,12191,4577,270,8.2,3,1,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,1.1,0.0,92,100900,498,1326,267,213,228,126,24218,14564,14383,4952,270,7.7,10,5,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-0.6,96,100900,394,1326,268,168,114,134,18511,7164,14829,4522,270,7.2,10,7,3.2,90,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.0,-0.6,96,100900,289,1326,268,121,172,82,13443,6800,9143,2822,290,7.2,10,7,1.6,90,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.2,-0.6,96,100900,192,1326,269,81,27,77,8698,728,8303,2169,270,6.6,10,7,1.6,90,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.5,-0.6,96,100900,109,1326,288,34,60,29,3780,0,3233,954,270,6.0,10,10,1.6,90,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1988,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,0.7,-0.7,96,100900,47,1326,289,9,6,8,1053,0,937,293,260,5.4,10,10,0.6,60,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.0,-0.8,89,100800,12,1326,290,1,0,1,96,0,97,40,290,4.9,10,10,24.1,370,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.2,-0.9,89,100800,0,354,265,0,0,0,0,0,0,0,240,4.3,8,4,24.1,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.5,-0.9,85,100800,10,1326,292,0,0,0,0,0,0,0,300,3.7,10,10,24.1,460,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.7,-1.1,82,100700,45,1326,285,3,3,3,374,0,374,118,270,3.1,10,9,24.1,610,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,0.0,85,100700,104,1326,288,18,1,18,2060,0,2064,643,300,4.6,10,9,11.3,610,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,0.6,86,100700,185,1326,299,22,2,21,2605,0,2490,827,260,5.2,10,10,11.3,610,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,0.6,86,100700,281,1326,299,51,2,50,5862,50,5761,1917,260,6.7,10,10,11.3,460,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.7,0.0,89,100700,384,1326,294,105,7,103,11764,371,11584,3741,250,5.2,10,10,16.1,310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,0.6,86,100700,488,1326,299,135,5,133,15221,324,15057,5056,230,4.1,10,10,16.1,430,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.9,1.1,82,100700,585,1326,305,168,0,168,17013,0,17155,6570,240,6.2,10,10,24.1,610,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1986,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,5.0,1.1,76,100700,669,1326,309,195,6,192,22194,463,21959,7785,240,6.7,10,10,24.1,610,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1986,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,5.0,1.7,79,100700,734,1326,310,207,6,204,23733,469,23505,8570,240,7.2,10,10,24.1,520,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1986,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,5.0,2.2,83,100700,775,1326,311,256,0,256,26341,0,26576,10333,240,7.2,10,10,24.1,520,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1986,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,5.6,2.2,79,100700,790,1326,313,248,1,248,28276,84,28430,10247,240,5.2,10,10,24.1,670,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1986,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,6.7,2.2,74,100600,777,1326,303,229,25,215,26353,1975,24867,9198,240,7.2,10,8,24.1,700,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1986,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,6.7,2.2,74,100600,738,1326,310,192,44,168,22375,3190,19666,7449,240,11.3,10,9,24.1,700,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1986,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,6.7,2.2,74,100600,675,1326,298,346,360,160,40009,25732,18582,6867,230,8.8,8,7,24.1,700,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1986,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,7.2,3.3,77,100600,592,1326,291,332,484,113,38806,30076,13256,4921,240,7.7,4,3,24.1,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1986,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,7.2,3.3,77,100500,495,1326,293,207,247,113,23691,14753,12981,4548,240,9.3,5,4,24.1,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1986,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,6.7,3.3,80,100500,391,1326,299,137,112,104,15373,5927,11714,3824,240,8.2,7,7,24.1,1520,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1986,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,6.7,3.3,80,100500,287,1326,304,90,72,74,10054,2499,8294,2612,240,8.2,8,8,24.1,1520,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1986,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,6.7,3.3,80,100500,190,1326,299,67,92,53,7397,1081,5870,1742,220,7.7,7,7,24.1,1680,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1986,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,6.7,3.3,80,100400,107,1326,299,34,39,31,3741,0,3420,982,240,7.2,8,7,24.1,2130,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1986,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,6.7,3.3,80,100400,45,1326,291,11,52,9,1267,0,1038,320,230,6.2,6,4,24.1,2130,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1986,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,6.1,3.9,86,100400,8,1072,284,2,47,1,0,0,0,0,230,5.2,2,2,24.1,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1986,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,6.1,3.9,86,100400,0,0,287,0,0,0,0,0,0,0,220,6.7,4,3,24.1,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1986,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,6.1,3.9,86,100400,6,917,287,1,10,1,0,0,0,0,230,6.7,4,3,24.1,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1986,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,6.1,4.4,89,100400,39,1326,281,9,127,5,987,6428,857,150,230,6.7,1,1,24.1,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1986,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,6.7,4.4,86,100400,99,1326,301,24,81,18,2732,0,2053,636,230,6.7,8,7,24.1,610,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1986,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,6.7,2.2,74,100400,180,1326,310,32,18,30,3674,0,3451,1111,250,7.7,10,9,24.1,610,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1986,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,6.7,2.8,77,100400,275,1326,304,76,31,70,8480,974,7836,2448,250,7.7,9,8,24.1,610,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1986,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,6.7,3.3,80,100400,379,1326,320,101,2,101,11306,102,11349,3666,260,7.2,10,10,24.1,610,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1986,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,6.7,2.8,77,100400,483,1326,319,133,8,130,14995,506,14717,4950,260,6.7,10,10,24.1,610,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1986,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,7.2,3.9,80,100400,580,1326,322,138,5,135,15852,329,15571,5590,260,6.7,10,10,24.1,610,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1986,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,6.1,3.9,86,100500,664,1326,317,235,10,230,26309,827,25887,8710,270,5.2,10,10,24.1,550,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1986,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,4.4,3.3,93,100500,729,1326,309,272,6,268,30463,525,30186,10185,320,3.6,10,10,16.1,640,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,2.2,93,100600,770,1326,303,212,3,211,24400,236,24407,9025,330,4.1,10,10,16.1,150,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,1.7,93,100700,785,1326,300,221,3,219,25433,239,25332,9371,330,5.7,10,10,11.3,150,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,1.7,93,100700,772,1326,300,250,2,248,28423,168,28349,10109,320,5.2,10,10,11.3,180,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,0.6,86,100700,733,1326,299,238,2,237,26974,167,27005,9498,310,4.1,10,10,11.3,310,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,0.0,85,100800,670,1326,296,226,0,226,23068,0,23265,8691,340,6.2,10,10,11.3,310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,0.0,85,100800,587,1326,296,192,0,192,19459,0,19621,7205,340,4.1,10,10,11.3,240,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,-0.6,89,100900,490,1326,291,155,1,154,17299,70,17265,5608,360,6.2,10,10,11.3,240,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,0.0,92,100900,386,1326,291,119,1,119,13200,58,13255,4147,330,4.1,10,10,11.3,180,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,0.0,96,101000,281,1326,275,105,62,92,11509,2614,10124,2969,320,3.6,10,8,11.3,150,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,0.0,96,101000,184,1326,271,61,78,49,6767,752,5452,1633,340,4.1,8,7,11.3,150,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,-0.6,92,101100,101,1326,261,39,182,24,4370,0,2695,808,360,4.1,5,3,16.1,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,-1.7,82,101100,39,1326,256,12,138,7,1403,0,819,255,350,5.2,3,1,16.1,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,-1.7,82,101200,6,741,256,1,14,1,0,0,0,0,330,4.1,2,1,16.1,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,-1.7,82,101200,0,0,256,0,0,0,0,0,0,0,350,4.6,3,1,16.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,-1.1,85,101300,6,608,260,1,7,1,0,0,0,0,330,3.6,8,2,16.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,-1.1,89,101300,34,1327,264,5,25,4,603,0,482,151,340,4.1,9,5,16.1,6100,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,-1.1,92,101400,93,1327,268,31,29,29,3385,0,3176,878,360,4.1,10,7,16.1,240,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,-1.1,92,101400,174,1327,278,35,10,34,3971,0,3866,1216,10,4.1,10,9,16.1,240,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,-1.1,92,101500,270,1327,260,102,118,78,11270,4164,8649,2604,50,3.6,8,4,16.1,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.7,-1.1,82,101500,374,1327,267,188,379,81,21421,17498,9259,3109,50,5.2,6,4,24.1,6100,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.7,-1.1,82,101500,478,1327,269,221,222,141,24749,14868,15858,5196,50,2.1,7,5,24.1,6100,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,-0.6,79,101500,575,1327,276,240,173,165,27136,12657,18741,6427,60,4.1,9,6,24.1,6100,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,-1.1,79,101500,660,1327,271,330,313,173,37826,23390,19921,7175,90,3.6,9,5,24.1,6100,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,-0.6,76,101500,724,1327,273,316,299,151,37061,21176,17784,6782,90,5.2,9,4,24.1,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,-0.6,79,101500,766,1327,269,456,525,150,53905,37038,17806,6919,70,3.6,7,3,24.1,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.9,-0.6,73,101500,780,1327,274,525,638,147,62322,44695,17522,6864,70,4.1,8,3,24.1,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.9,0.0,76,101500,768,1327,284,419,264,264,47379,22978,30020,10478,80,5.2,10,7,24.1,2440,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,-0.6,79,101500,728,1327,279,289,140,211,33043,11207,24247,8750,120,2.6,10,7,24.1,2440,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,-0.6,76,101500,665,1327,286,254,81,213,28673,6584,24167,8332,90,7.2,10,8,24.1,2440,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,-1.7,70,101400,582,1327,299,218,131,160,24769,9502,18260,6354,70,6.7,10,10,24.1,2440,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,-1.1,73,101400,485,1327,285,179,72,152,19977,5021,17040,5526,80,6.2,10,8,24.1,2440,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,-1.7,70,101400,380,1327,285,129,102,100,14499,5377,11281,3671,80,8.2,10,8,24.1,2440,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,-0.6,79,101400,276,1327,284,73,28,67,8199,896,7549,2395,80,7.2,10,8,24.1,2440,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,-0.6,79,101400,178,1327,279,63,13,62,6835,214,6751,1855,90,6.7,10,7,24.1,2440,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,-0.6,79,101400,95,1327,279,27,10,26,2993,0,2890,842,110,5.2,10,7,24.1,1520,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,-0.6,82,101400,34,1327,287,2,2,2,255,0,255,79,90,6.7,9,9,24.1,1520,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,0.0,85,101400,12,476,265,2,10,1,0,0,0,0,90,5.2,3,2,24.1,77777,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,0.0,85,101300,0,0,268,0,0,0,0,0,0,0,90,6.2,4,3,24.1,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.7,-0.6,85,101300,1,343,259,0,0,0,0,0,0,0,70,6.7,3,1,24.1,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.7,-0.6,85,101200,29,1327,262,5,83,3,551,3947,523,103,90,6.2,4,2,24.1,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,-0.6,82,101200,88,1327,267,31,143,22,3447,0,2452,717,80,7.7,7,3,24.1,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,0.0,82,101200,169,1327,272,50,98,38,5605,0,4270,1308,80,8.2,8,4,24.1,77777,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,0.6,89,101200,265,1327,288,68,15,65,7608,432,7295,2285,80,7.7,10,9,16.1,310,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,1.7,93,101100,368,1327,300,110,7,108,12215,372,12040,3775,70,8.2,10,10,16.1,180,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,1.7,93,101100,473,1327,300,134,7,131,15066,446,14790,4918,80,8.2,10,10,16.1,150,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,1.7,93,101100,570,1327,300,130,8,126,14994,518,14590,5261,80,9.8,10,10,16.1,150,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,1.7,93,101000,655,1327,300,204,7,200,23072,550,22732,7899,90,8.8,10,10,16.1,150,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,1.7,89,101000,720,1327,303,190,1,189,21859,76,21848,8024,90,8.2,10,10,16.1,150,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.9,2.2,89,101000,761,1327,306,267,3,266,30111,260,30168,10454,100,10.3,10,10,16.1,150,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.9,2.8,93,101000,776,1327,306,244,6,240,27818,495,27509,9913,110,10.3,10,10,16.1,150,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1986,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,5.0,2.8,86,101000,763,1327,311,238,2,237,27101,165,27132,9734,100,11.3,10,10,16.1,240,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.9,3.3,96,100900,723,1327,307,260,1,260,29169,86,29333,9967,100,9.3,10,10,16.1,150,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.9,3.3,96,100900,660,1327,307,219,1,218,24622,81,24637,8413,90,9.3,10,10,4.8,150,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.9,2.8,93,100900,576,1327,306,197,0,196,19930,0,19993,7211,100,8.8,10,10,1.6,90,9,999999999,19,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,2.8,96,100900,479,1327,304,154,1,153,17135,69,17101,5511,90,9.3,10,10,1.6,90,9,999999999,19,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.9,3.3,96,100900,374,1327,307,126,0,126,12524,0,12620,4216,90,8.2,10,10,0.8,60,9,999999999,19,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.9,3.3,96,100900,270,1327,307,78,1,78,8624,34,8655,2630,90,8.2,10,10,0.8,60,9,999999999,19,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,3.3,100,100900,172,1327,304,47,0,47,4588,0,4621,1548,100,7.7,10,10,0.4,60,9,999999999,19,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,3.3,100,100900,89,1327,304,24,0,24,2325,0,2341,782,110,8.8,10,10,0.4,60,9,999999999,19,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,3.3,100,100900,28,1327,304,4,0,4,385,0,388,151,80,5.2,10,10,3.2,90,9,999999999,20,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,3.3,100,100900,1,232,304,0,0,0,0,0,0,0,100,7.2,10,10,6.4,120,9,999999999,20,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,3.3,100,100900,0,0,304,0,0,0,0,0,0,0,100,8.2,10,10,2.0,90,9,999999999,20,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,3.3,100,100900,0,100,304,0,0,0,0,0,0,0,100,6.7,10,10,0.2,120,9,999999999,20,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.9,3.9,100,100900,23,1327,308,3,0,3,289,0,290,114,110,3.1,10,10,0.2,120,9,999999999,20,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,3.3,100,100900,82,1327,304,20,0,20,1935,0,1948,658,90,5.2,10,10,2.4,90,9,999999999,20,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,2.8,100,100800,163,1327,302,42,0,42,4096,0,4124,1385,120,6.2,10,10,2.4,90,9,999999999,20,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,2.8,96,100900,259,1327,289,89,55,78,9782,1808,8604,2548,110,4.6,10,8,6.4,120,9,999999999,21,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,2.8,100,100800,363,1327,287,102,82,79,11597,3565,9010,3014,110,6.2,10,8,9.7,120,9,999999999,21,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,2.8,96,100800,468,1327,304,144,20,137,16104,1291,15387,5035,110,6.2,10,10,11.3,120,9,999999999,21,0.0000,0,88,0.000,0.0,1.0 +1986,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,4.4,3.3,93,100800,565,1327,294,214,106,168,24080,7679,18992,6437,100,6.2,10,8,11.3,150,9,999999999,21,0.0000,0,88,0.000,0.0,1.0 +1986,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,4.4,3.3,93,100800,650,1327,294,295,82,254,32667,7164,28285,9057,100,4.6,10,8,11.3,1520,9,999999999,21,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,2.2,93,100800,715,1327,303,161,7,158,18767,497,18497,6984,80,5.2,10,10,11.3,2130,9,999999999,22,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.9,2.8,93,100800,756,1327,306,110,6,106,13319,378,12878,5132,90,4.6,10,10,11.3,370,9,999999999,22,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.9,2.8,93,100800,771,1327,306,124,13,117,14940,840,14148,5633,70,6.2,10,10,16.1,310,9,999999999,22,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,2.8,96,100800,758,1327,304,143,8,139,16968,543,16559,6474,60,5.7,10,10,16.1,400,9,999999999,22,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,2.2,96,100800,718,1327,301,118,3,117,14093,194,14024,5483,60,5.2,10,10,11.3,150,9,999999999,22,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.9,2.8,93,100700,654,1327,306,111,6,108,13183,374,12871,4940,60,6.7,10,10,11.3,460,9,999999999,21,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,2.2,93,100700,571,1327,303,90,0,90,9103,0,9178,4018,60,6.7,10,10,11.3,180,9,999999999,21,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,2.2,93,100700,474,1327,303,134,2,133,15065,128,15015,5000,80,5.2,10,10,16.1,370,9,999999999,21,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,1.7,89,100700,369,1327,294,93,78,71,10701,3304,8194,2808,80,3.1,10,9,11.3,370,9,999999999,20,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,1.7,93,100700,264,1327,292,30,27,25,3624,342,3023,1046,80,3.6,10,9,11.3,640,9,999999999,20,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,1.7,93,100700,166,1327,300,28,1,28,3221,0,3227,1039,110,3.1,10,10,16.1,700,9,999999999,20,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,1.7,93,100600,83,1327,300,8,1,8,965,0,965,311,90,3.1,10,10,16.1,700,9,999999999,19,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,1.7,89,100600,22,1327,303,0,0,0,0,0,0,0,80,3.1,10,10,16.1,700,9,999999999,19,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,1.7,89,100600,0,33,303,0,0,0,0,0,0,0,100,3.1,10,10,16.1,370,9,999999999,19,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,1.7,93,100600,0,0,300,0,0,0,0,0,0,0,120,3.1,10,10,16.1,340,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,1.7,93,100600,0,0,300,0,0,0,0,0,0,0,110,3.1,10,10,16.1,150,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,2.2,100,100700,18,1228,298,0,0,0,0,0,0,0,110,3.6,10,10,0.8,150,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,2.8,100,100700,76,1328,302,11,0,11,1064,0,1071,403,120,3.6,10,10,0.8,150,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.9,3.3,96,100600,157,1328,298,34,4,33,3828,0,3724,1152,110,5.2,10,9,11.3,1520,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1986,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,5.0,4.4,96,100600,253,1328,290,68,43,60,7616,1024,6741,2120,130,3.1,10,6,11.3,1830,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1986,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,8.3,6.7,89,100700,358,1328,322,94,20,89,10552,890,10026,3265,210,4.1,10,9,24.1,6100,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1986,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,9.4,6.7,83,100700,462,1328,320,139,55,120,15670,3228,13582,4575,190,5.2,10,8,24.1,6100,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1986,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,11.1,7.2,77,100700,560,1328,319,252,194,169,28266,13766,19045,6427,220,7.2,10,6,24.1,6100,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1986,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,11.7,7.2,74,100800,645,1328,317,342,257,216,38281,20354,24304,8213,230,7.2,10,4,24.1,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,12.2,6.7,69,100800,710,1328,313,439,438,202,50055,33388,23147,8348,230,8.2,8,2,24.1,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,13.3,6.7,64,100900,751,1328,318,479,500,194,55215,37243,22472,8372,230,6.2,8,2,24.1,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,13.9,6.1,60,100900,766,1328,320,500,594,154,58865,40815,18208,7070,230,6.7,5,2,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,13.3,6.7,64,101000,753,1328,321,357,251,213,40867,19399,24507,8974,240,4.1,5,3,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,11.1,7.2,77,101000,713,1328,319,380,375,176,43841,26937,20400,7586,310,3.6,6,6,24.1,1070,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,10.6,7.2,80,101100,649,1328,309,370,402,171,42270,28675,19626,7071,320,3.6,3,3,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,10.0,7.2,83,101100,566,1328,300,340,522,114,39440,31394,13273,4861,340,3.6,1,1,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,11.7,7.2,74,101100,468,1328,307,246,365,115,27893,21027,13090,4487,50,4.1,1,1,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,11.1,7.2,77,101100,363,1328,309,168,279,89,18913,12575,10055,3310,40,4.1,3,2,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,8.9,7.2,89,101200,258,1328,299,100,154,69,11103,4274,7687,2376,50,2.1,5,2,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,8.9,7.2,89,101200,160,1328,302,53,80,42,5870,0,4665,1396,60,3.6,6,3,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,8.3,7.2,93,101300,77,1328,297,18,21,17,2032,0,1922,585,20,4.6,2,2,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,7.8,6.7,93,101300,17,1162,285,3,1,3,364,0,363,114,30,3.6,0,0,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,7.2,6.1,93,101300,0,0,282,0,0,0,0,0,0,0,50,5.2,0,0,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,6.1,5.6,96,101300,0,0,277,0,0,0,0,0,0,0,70,3.6,0,0,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,6.1,5.0,93,101300,0,0,276,0,0,0,0,0,0,0,90,2.6,0,0,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,4.4,4.4,100,101400,13,1029,269,3,34,2,370,0,247,77,110,3.1,0,0,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,4.4,3.9,96,101400,71,1328,268,22,133,15,2483,0,1696,512,120,2.6,0,0,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,6.7,6.1,96,101400,151,1328,280,65,296,30,7344,0,3397,1059,170,3.6,0,0,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,7.8,6.7,93,101400,248,1328,285,125,433,43,14338,6261,4944,1632,180,3.1,2,0,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,10.0,7.2,83,101500,352,1328,300,188,469,62,21686,16559,7171,2465,180,3.1,4,1,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,11.1,7.8,80,101500,457,1328,305,272,576,71,31915,26467,8354,3023,180,3.6,6,1,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,13.3,7.2,67,101500,555,1328,314,318,536,92,37399,29678,10854,4038,170,4.1,7,1,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,13.9,7.2,64,101500,640,1328,321,385,505,139,44603,33200,16170,5991,150,3.1,8,2,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,15.0,6.1,56,101600,705,1328,320,481,693,110,57482,42890,13191,5158,170,4.6,8,1,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,13.9,7.2,64,101600,746,1328,321,483,631,125,57558,40326,14952,5882,310,2.6,7,2,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,13.3,7.2,67,101600,761,1328,314,498,627,135,59151,41012,16099,6327,300,2.6,5,1,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,13.3,7.2,67,101600,748,1328,318,508,676,124,60602,43104,14848,5851,320,4.1,3,2,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,13.3,7.2,67,101600,708,1328,321,476,656,122,56460,41534,14525,5646,360,4.1,3,3,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,15.0,7.2,60,101600,644,1328,329,427,644,110,50455,39121,13044,4983,10,2.6,3,3,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,15.0,7.2,60,101600,560,1328,332,283,401,111,32858,23829,12935,4738,60,6.2,4,4,24.1,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,12.8,8.3,75,101600,462,1328,328,224,267,129,25114,16074,14524,4833,20,4.1,6,6,24.1,1370,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,10.6,8.9,90,101600,357,1328,328,75,68,56,8740,2284,6542,2289,10,2.6,8,8,24.1,1370,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,11.1,7.8,80,101600,252,1328,329,79,83,63,8815,2003,7052,2210,320,3.1,8,8,24.1,1370,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,11.7,8.9,83,101600,154,1328,328,34,31,30,3855,0,3409,1077,40,2.1,8,7,24.1,2740,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,11.1,7.8,80,101600,71,1328,315,25,99,19,2781,0,2118,625,100,5.2,5,4,24.1,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,10.6,6.7,77,101600,13,963,311,2,14,2,248,0,248,77,70,3.6,4,4,24.1,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,9.4,6.7,83,101600,0,0,304,0,0,0,0,0,0,0,80,5.2,3,3,24.1,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1986,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,8.3,6.7,89,101600,0,0,301,0,0,0,0,0,0,0,90,5.2,4,4,24.1,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1986,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,8.9,6.7,86,101600,0,0,306,0,0,0,0,0,0,0,90,4.1,6,5,24.1,2740,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1986,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,7.8,6.1,89,101600,9,853,301,0,0,0,0,0,0,0,90,5.2,7,5,24.1,2740,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1986,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,7.2,6.1,93,101600,65,1329,298,16,7,15,1794,0,1686,503,100,4.1,7,5,24.1,2740,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1986,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,7.8,6.1,89,101600,145,1329,299,41,16,40,4509,0,4412,1282,90,5.2,7,4,24.1,2740,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1986,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,8.3,6.7,89,101600,242,1329,296,95,201,58,10612,4076,6499,2031,110,4.1,3,2,24.1,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1986,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,11.1,8.3,83,101500,346,1329,313,165,341,75,18704,13077,8529,2842,110,5.2,3,3,24.1,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1986,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,13.9,8.9,72,101500,452,1329,331,185,223,108,20956,12086,12280,4192,120,6.2,5,5,24.1,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,12.2,8.3,77,101500,550,1329,323,178,78,145,20158,5106,16492,5727,120,5.7,5,5,24.1,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,13.9,7.2,64,101500,634,1329,341,276,118,220,30781,9447,24666,8212,100,5.7,8,8,24.1,2740,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,14.4,7.2,62,101500,700,1329,329,439,484,181,50387,35206,20873,7655,100,5.7,4,4,24.1,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,12.2,7.2,72,101400,741,1329,313,472,593,138,55768,39060,16371,6369,80,5.7,3,2,24.1,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,11.7,6.7,72,101400,756,1329,311,466,508,173,54252,36223,20233,7702,90,6.2,6,2,24.1,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,11.1,6.1,72,101400,743,1329,298,511,630,155,59886,43443,18243,7009,80,5.2,6,0,24.1,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,10.0,5.6,74,101300,702,1329,298,442,554,146,51682,37593,17143,6517,70,7.7,5,1,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,8.9,5.0,77,101300,638,1329,297,370,418,166,42316,29880,19071,6857,90,8.2,7,2,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,8.3,5.0,80,101300,554,1329,294,328,438,142,37330,29136,16230,5689,80,8.8,8,2,24.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1986,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,7.2,4.4,83,101200,456,1329,289,228,308,120,25718,18369,13590,4567,90,9.8,8,2,24.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1986,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,7.2,4.4,83,101200,351,1329,292,172,286,94,19231,13436,10549,3385,100,7.7,7,3,24.1,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1986,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,6.7,4.4,86,101200,245,1329,297,87,41,79,9518,1306,8675,2526,80,8.2,10,6,24.1,6100,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1986,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,6.1,3.9,86,101100,148,1329,294,54,15,52,5843,62,5646,1535,90,6.2,10,6,24.1,6100,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1986,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,5.6,3.3,86,101100,65,1329,291,17,2,17,1901,0,1905,564,90,7.2,10,6,24.1,6100,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1986,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,4.4,3.3,93,101100,9,786,282,1,0,1,96,0,97,39,60,6.2,10,4,24.1,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.9,3.3,96,101000,0,0,307,0,0,0,0,0,0,0,90,6.7,10,10,3.2,150,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.9,3.3,96,101000,0,0,307,0,0,0,0,0,0,0,80,7.2,10,10,0.8,120,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,3.3,100,101000,0,0,304,0,0,0,0,0,0,0,60,7.2,10,10,1.2,90,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.9,3.3,96,100900,6,676,307,0,0,0,0,0,0,0,60,8.2,10,10,2.0,120,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.9,3.3,96,100900,59,1329,307,7,0,7,676,0,680,263,60,8.2,10,10,0.8,120,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.9,3.9,100,100800,140,1329,308,22,0,22,2140,0,2155,810,60,9.3,10,10,0.8,120,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1986,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,4.4,2.2,86,100800,236,1329,281,92,145,66,10161,3619,7315,2192,60,8.2,10,4,16.1,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1986,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,5.0,2.2,83,100800,341,1329,274,162,271,92,18072,12464,10301,3263,70,8.2,10,1,24.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1986,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,5.0,2.2,83,100800,446,1329,278,218,267,127,24402,16466,14275,4664,80,8.2,10,2,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,5.0,2.2,83,100800,544,1329,281,277,311,149,31337,21409,16930,5806,60,8.2,10,3,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,5.0,2.2,83,100700,629,1329,311,181,6,178,20554,448,20308,7127,70,10.3,10,10,24.1,2740,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,5.6,2.2,79,100700,694,1329,313,103,35,85,12545,2075,10383,4096,60,9.3,10,10,24.1,1130,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1986,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,5.0,2.8,86,100700,736,1329,311,140,15,131,16619,1000,15611,6082,50,8.8,10,10,24.1,1310,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1986,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,5.6,2.8,83,100700,750,1329,314,192,4,190,22199,302,22073,8241,60,8.2,10,10,24.1,2740,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1986,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,5.6,2.2,79,100700,737,1329,305,306,129,234,34721,10650,26693,9445,50,8.8,10,9,24.1,1370,9,999999999,19,0.0000,0,88,0.000,0.0,1.0 +1986,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,5.0,2.8,86,100600,697,1329,303,188,62,155,21879,4366,18116,6806,60,10.3,10,9,24.1,1520,9,999999999,19,0.0000,0,88,0.000,0.0,1.0 +1986,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,4.4,2.8,89,100600,633,1329,309,192,100,144,22201,6845,16720,6139,60,11.3,10,10,24.1,310,9,999999999,19,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.9,2.8,93,100600,548,1329,306,86,2,85,10187,111,10099,3771,70,8.2,10,10,11.3,240,9,999999999,19,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.9,2.2,89,100600,450,1329,306,54,6,52,6500,261,6272,2306,70,8.2,10,10,11.3,240,9,999999999,19,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,1.7,89,100600,345,1329,303,45,0,45,4464,0,4498,1880,70,8.2,10,10,11.3,310,9,999999999,19,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,1.7,93,100500,239,1329,300,25,3,24,3003,22,2886,988,60,7.7,10,10,11.3,310,9,999999999,19,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,1.1,89,100500,141,1329,300,18,0,18,1754,0,1766,691,60,8.2,10,10,11.3,310,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,1.7,96,100500,59,1329,298,8,0,8,773,0,779,299,60,7.2,10,10,11.3,120,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,1.7,96,100500,6,631,298,1,0,1,0,0,0,0,80,6.2,10,10,11.3,120,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,2.2,100,100500,0,0,298,0,0,0,0,0,0,0,70,6.2,10,10,4.8,120,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,2.2,100,100500,0,0,298,0,0,0,0,0,0,0,90,5.2,10,10,1.2,90,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,2.2,100,100400,0,0,298,0,0,0,0,0,0,0,80,5.2,10,10,1.2,90,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,2.2,100,100400,6,521,298,1,0,1,0,0,0,0,90,6.2,10,10,0.4,120,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,2.2,100,100400,53,1330,298,10,0,10,965,0,972,352,80,5.2,10,10,0.4,120,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,2.2,100,100300,133,1330,298,33,0,33,3210,0,3232,1091,80,5.2,10,10,3.2,90,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,2.2,100,100300,230,1330,298,53,0,53,5201,0,5238,1867,80,5.2,10,10,6.4,120,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,2.2,96,100300,335,1330,301,85,1,85,9527,43,9560,3066,60,5.2,10,10,4.8,150,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,2.2,93,100300,440,1330,303,113,1,113,12751,58,12800,4277,70,6.2,10,10,8.0,150,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,2.2,93,100300,539,1330,303,168,0,168,16939,0,17077,6250,80,6.2,10,10,9.7,150,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,2.2,93,100300,624,1330,303,209,1,209,23399,80,23519,7870,70,6.2,10,10,9.7,150,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,2.8,96,100300,689,1330,304,203,0,203,20730,0,20909,8230,60,6.2,10,10,3.2,120,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,2.2,93,100300,731,1330,303,238,0,238,24396,0,24610,9484,90,6.7,10,10,3.2,120,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,2.8,96,100200,745,1330,304,234,0,234,24011,0,24223,9503,80,7.2,10,10,3.2,120,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,2.8,96,100300,732,1330,304,257,1,256,28914,86,28962,9946,90,7.2,10,10,0.8,90,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.9,2.8,93,100300,691,1330,306,204,1,204,23202,78,23318,8289,90,7.2,10,10,2.0,120,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.9,2.2,89,100200,627,1330,306,193,1,192,21786,77,21779,7506,90,7.7,10,10,11.3,180,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.9,2.8,93,100100,542,1330,306,177,0,177,17854,0,18001,6515,70,8.2,10,10,11.3,150,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,2.2,96,100100,444,1330,301,121,0,121,12105,0,12201,4530,90,6.7,10,10,8.0,120,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,2.2,93,100100,338,1330,303,94,1,94,10478,47,10517,3325,90,8.2,10,10,2.4,120,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,2.2,96,100100,233,1330,301,66,0,66,6481,0,6528,2204,110,5.7,10,10,1.2,60,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,2.2,96,100200,135,1330,301,34,0,34,3310,0,3333,1136,120,4.1,10,10,1.2,60,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,2.2,100,100100,52,1330,298,12,0,12,1159,0,1167,415,80,4.1,10,10,1.2,60,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,2.8,100,100200,6,476,302,1,0,1,0,0,0,0,80,4.1,10,10,0.4,120,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,2.2,100,100200,0,0,298,0,0,0,0,0,0,0,80,5.2,10,10,0.4,120,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,2.2,100,100200,0,0,298,0,0,0,0,0,0,0,100,4.1,10,10,0.8,150,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,2.2,100,100100,0,0,298,0,0,0,0,0,0,0,90,3.6,10,10,0.8,150,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,2.2,100,100100,6,366,298,1,0,1,0,0,0,0,90,5.2,10,10,0.4,120,9,999999999,18,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,2.8,100,100100,47,1330,302,9,0,9,868,0,874,317,100,5.2,10,10,0.8,120,9,999999999,17,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.9,3.9,100,100100,127,1330,308,36,0,36,3498,0,3522,1136,100,6.2,10,10,0.2,90,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1986,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,4.4,4.4,100,100100,224,1330,310,69,0,69,6761,0,6810,2195,110,6.7,10,10,0.2,90,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1986,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,5.6,5.6,100,100100,329,1330,317,99,1,99,10924,46,10967,3358,120,4.6,10,10,0.2,90,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,6.7,6.7,100,100100,435,1330,292,229,403,96,26101,20745,10980,3774,140,5.2,10,3,11.3,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,11.7,7.8,77,100100,533,1330,302,354,708,67,42453,34749,8055,3032,210,6.2,4,0,24.1,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,13.3,6.1,62,100200,618,1330,307,426,737,80,51319,40812,9664,3727,230,6.7,5,0,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,12.8,6.7,67,100200,684,1330,311,425,657,83,51676,37434,10121,3989,220,6.2,3,1,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,13.3,7.2,67,100200,725,1330,314,491,725,91,59718,42468,11102,4419,210,6.2,3,1,24.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1986,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,12.2,7.2,72,100200,740,1330,313,499,700,105,60194,42598,12709,5048,220,6.2,4,2,24.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1986,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,12.2,7.8,75,100300,726,1330,320,417,542,117,49764,33777,14013,5504,240,7.2,7,4,24.1,6100,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1986,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,11.1,7.2,77,100300,686,1330,319,346,248,217,39047,19521,24617,8593,230,5.7,7,6,16.1,1220,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1986,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,11.7,7.2,74,100300,621,1330,317,331,427,128,38478,27179,14938,5552,260,2.6,6,4,24.1,6100,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1986,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,11.7,7.2,74,100300,536,1330,322,297,438,117,34165,26317,13510,4845,320,2.1,7,6,24.1,2130,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1986,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,12.8,4.4,57,100300,438,1330,324,183,243,101,20835,13163,11541,3953,230,1.5,8,6,24.1,2440,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1986,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,12.2,4.4,59,100300,332,1330,325,138,11,135,14883,650,14628,4017,160,3.1,10,7,24.1,6100,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1986,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,11.7,5.0,64,100300,226,1330,312,95,216,56,10609,4029,6272,1948,170,6.2,7,3,24.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1986,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,10.0,5.6,74,100300,128,1330,305,49,140,35,5414,0,3878,1139,160,4.6,5,3,24.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1986,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,8.9,5.0,77,100300,46,1330,297,14,114,9,1616,0,1040,322,160,5.2,3,2,24.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1986,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,7.2,5.0,86,100300,12,321,290,2,19,1,0,0,0,0,140,4.6,2,2,24.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1986,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,7.8,4.4,80,100300,0,0,292,0,0,0,0,0,0,0,140,5.2,3,2,24.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1986,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,7.8,5.0,83,100300,0,0,297,0,0,0,0,0,0,0,150,5.2,5,4,24.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1986,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,7.8,5.0,83,100300,0,0,297,0,0,0,0,0,0,0,130,4.1,5,4,24.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1986,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,6.1,4.4,89,100300,1,211,285,0,0,0,0,0,0,0,140,5.2,4,2,24.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1986,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,6.1,4.4,89,100300,41,1330,287,5,7,5,597,0,597,188,140,5.2,5,3,24.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1986,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,6.7,4.4,86,100300,121,1330,290,30,30,27,3359,0,3030,916,140,5.2,4,3,24.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1986,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,8.3,5.6,83,100400,218,1330,309,46,55,37,5280,367,4256,1391,140,5.7,8,7,24.1,2130,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1986,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,9.4,5.0,74,100400,323,1330,304,137,173,94,15156,7649,10439,3219,170,6.7,8,4,24.1,2740,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1986,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,11.1,5.0,66,100400,429,1330,296,244,447,98,27742,23442,11182,3809,170,9.3,7,0,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,11.7,4.4,62,100400,528,1330,298,327,515,120,37474,31744,13805,4883,200,7.2,8,0,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,12.2,4.4,59,100400,613,1330,300,398,563,136,45989,37288,15778,5770,190,7.2,8,0,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,13.9,5.6,58,100400,678,1330,327,354,307,196,40231,23370,22385,7958,170,7.2,9,5,24.1,7620,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,12.8,5.6,62,100400,720,1330,317,468,551,167,54298,39195,19463,7313,210,4.6,7,3,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,12.8,5.0,60,100400,734,1330,324,388,351,192,44653,26373,22203,8206,250,4.1,8,6,24.1,6100,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,12.8,5.6,62,100400,721,1330,325,330,241,197,37802,18268,22677,8279,240,4.6,8,6,24.1,6100,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,13.3,5.0,57,100500,680,1330,324,291,167,204,32998,12969,23249,8205,250,3.6,8,5,24.1,6100,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,12.2,4.4,59,100500,615,1330,321,308,322,157,35224,22572,18034,6456,310,2.1,7,6,24.1,1370,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,12.8,3.9,55,100500,530,1330,320,223,135,168,24912,9731,18856,6217,360,3.1,7,5,24.1,6100,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,13.9,4.4,53,100400,431,1330,329,217,233,139,24032,14819,15462,4875,60,3.6,8,6,24.1,6100,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,13.9,5.6,58,100400,325,1330,334,109,86,88,12152,3660,9847,3121,80,3.6,8,7,24.1,2740,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,13.3,6.7,64,100500,219,1330,332,80,63,69,8750,1461,7574,2202,80,2.6,8,7,24.1,2740,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,11.7,7.2,74,100500,121,1330,326,37,27,34,4078,0,3758,1096,180,3.1,8,7,24.1,2740,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,10.6,6.7,77,100500,40,1330,325,4,3,4,488,0,488,155,100,4.1,9,8,24.1,2740,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,10.0,7.2,83,100500,0,166,312,0,0,0,0,0,0,0,140,2.1,8,5,24.1,6100,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,8.3,6.7,89,100500,0,0,296,0,0,0,0,0,0,0,130,3.1,4,2,24.1,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,6.7,6.1,96,100600,0,0,285,0,0,0,0,0,0,0,140,4.1,3,1,24.1,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,6.7,6.1,96,100600,0,0,296,0,0,0,0,0,0,0,120,4.1,9,5,24.1,3960,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,6.7,6.1,96,100600,0,78,289,0,0,0,0,0,0,0,150,2.6,4,2,24.1,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,5.6,5.0,96,100600,35,1331,283,7,33,6,818,0,701,218,110,2.6,3,2,0.4,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,5.0,5.0,100,100600,115,1331,281,44,157,30,4862,0,3324,970,110,3.6,3,2,8.0,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,6.7,6.7,100,100600,212,1331,297,68,90,54,7545,1233,6010,1829,110,2.6,8,5,24.1,3960,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,9.4,7.8,90,100600,317,1331,305,153,345,70,17285,11742,7933,2603,100,3.1,3,3,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,11.1,8.3,83,100700,423,1331,315,225,322,121,25072,18242,13539,4386,120,3.1,4,4,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,9.4,6.7,83,100700,522,1331,304,307,549,90,35913,29667,10562,3870,220,3.1,4,3,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,11.1,5.6,69,100700,607,1331,303,382,685,66,46599,36107,8070,3122,250,3.6,1,1,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,11.1,5.6,69,100800,673,1331,297,471,775,75,57613,43360,9198,3623,230,4.1,0,0,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,11.1,5.0,66,100800,714,1331,296,495,769,78,60835,44141,9612,3829,260,2.6,0,0,24.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1986,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,11.7,5.0,64,100800,728,1331,299,523,801,80,64321,46389,9866,3945,340,3.6,0,0,24.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1986,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,12.8,5.6,62,100900,715,1331,304,512,797,79,62872,45690,9727,3877,340,2.6,0,0,24.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1986,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,12.2,6.1,67,100900,674,1331,315,394,501,136,46069,33037,15966,6042,360,4.6,4,3,24.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1986,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,11.7,6.7,72,100900,609,1331,316,265,292,129,30718,18669,15012,5536,10,5.7,9,4,24.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1986,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,13.3,5.6,60,100900,524,1331,320,299,487,104,34646,28124,12093,4373,30,3.1,5,3,24.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1986,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,13.3,6.1,62,101000,425,1331,323,198,339,87,22725,16667,10018,3483,50,4.1,4,4,24.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1986,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,12.2,7.8,75,101000,319,1331,320,105,79,85,11703,3155,9508,3019,10,2.6,4,4,24.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1986,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,10.6,8.3,86,101000,212,1331,327,66,110,47,7424,1159,5301,1678,320,2.1,8,8,24.1,1370,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1986,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,11.1,8.3,83,101000,114,1331,324,31,25,28,3455,0,3128,941,70,2.6,7,7,24.1,1370,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1986,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,8.9,7.2,89,101100,33,1331,313,4,6,4,484,0,484,153,90,3.6,10,7,24.1,1520,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1986,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,8.9,7.2,89,101100,0,11,318,0,0,0,0,0,0,0,120,3.1,9,8,24.1,1980,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1986,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,7.2,6.7,96,101100,0,0,294,0,0,0,0,0,0,0,140,2.6,4,3,24.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1986,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,7.2,6.7,96,101100,0,0,288,0,0,0,0,0,0,0,120,3.6,1,1,24.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1986,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,7.8,6.7,93,101200,0,0,285,0,0,0,0,0,0,0,110,3.6,0,0,24.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1986,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,6.1,5.6,96,101200,0,0,277,0,0,0,0,0,0,0,120,3.6,0,0,24.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1986,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,5.6,5.0,96,101200,29,1276,274,5,8,4,598,0,479,150,130,3.6,0,0,11.3,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1986,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,5.6,5.0,96,101200,109,1331,274,34,86,27,3773,0,3004,886,130,3.6,0,0,11.3,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1986,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,7.2,7.2,100,101300,206,1331,283,85,237,48,9495,2198,5377,1665,140,1.5,0,0,24.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1986,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,10.6,8.3,86,101300,311,1331,298,153,377,64,17372,11680,7288,2414,80,1.5,0,0,24.1,77777,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1986,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,12.2,8.3,77,101300,417,1331,310,211,384,90,24046,18469,10292,3529,90,2.1,1,1,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,13.3,6.7,64,101300,516,1331,323,279,400,122,31817,24308,13968,4892,60,3.6,5,4,24.1,77777,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,12.2,6.1,67,101400,602,1331,332,177,66,147,20265,4451,16902,6063,60,4.1,8,8,24.1,3050,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,12.2,5.6,64,101400,667,1331,348,151,2,150,17492,137,17451,6484,90,5.2,10,10,24.1,3050,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,11.7,5.6,66,101400,708,1331,346,214,12,207,24355,931,23677,8478,60,4.6,10,10,24.1,2740,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,11.7,6.7,72,101400,723,1331,337,337,153,253,37824,12851,28554,9782,90,4.1,9,9,24.1,2740,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,13.3,7.8,69,101400,709,1331,334,375,347,188,42983,25494,21653,7932,80,8.2,8,7,24.1,2740,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,13.9,8.3,69,101400,668,1331,333,345,294,195,39116,21973,22219,7874,70,6.7,7,6,24.1,2740,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,12.8,8.3,75,101400,603,1331,328,282,287,149,32252,19163,17115,6148,70,4.1,7,6,24.1,2740,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,11.1,7.8,80,101400,518,1331,324,231,200,151,25914,13322,17016,5719,80,5.7,9,7,24.1,2740,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,12.8,7.8,72,101500,418,1331,331,109,63,89,12457,3054,10206,3522,60,4.1,8,7,24.1,2740,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,11.7,8.9,83,101500,312,1331,333,96,71,78,10747,2578,8762,2817,70,2.6,8,8,24.1,2740,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,13.3,7.8,69,101500,206,1331,339,31,34,25,3657,0,2953,993,140,6.7,8,8,24.1,2740,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,12.2,6.7,69,101600,107,1331,327,35,14,33,3833,0,3624,1031,80,3.6,7,7,24.1,2740,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,11.1,7.2,77,101600,27,1209,316,4,4,4,481,0,481,151,90,3.1,6,5,24.1,2740,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,9.4,7.8,90,101600,0,0,310,0,0,0,0,0,0,0,90,3.6,6,5,24.1,2740,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,7.2,6.1,93,101600,0,0,294,0,0,0,0,0,0,0,90,4.1,5,3,24.1,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1986,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,6.7,6.1,96,101600,0,0,289,0,0,0,0,0,0,0,110,4.1,3,2,24.1,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1986,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,6.7,6.1,96,101700,0,0,289,0,0,0,0,0,0,0,130,3.1,3,2,1.6,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1986,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,6.7,6.1,96,101700,0,0,299,0,0,0,0,0,0,0,130,3.1,8,6,11.3,2290,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1986,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,7.8,7.8,100,101700,23,1121,305,3,4,2,375,0,250,78,120,3.6,8,6,11.3,2290,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1986,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,7.8,7.8,100,101700,102,1332,303,32,62,27,3530,0,2987,869,140,3.1,7,5,16.1,2290,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1986,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,8.3,7.8,96,101600,199,1332,293,81,232,46,9051,1568,5155,1596,130,3.6,1,1,24.1,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1986,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,10.0,8.3,90,101700,305,1332,301,156,439,54,17920,11691,6219,2098,150,4.1,1,1,24.1,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1986,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,11.1,8.3,83,101700,411,1332,300,243,580,62,28478,23264,7284,2600,140,6.2,0,0,24.1,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1986,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,11.1,8.3,83,101700,510,1332,306,323,655,70,38402,31689,8344,3103,150,5.2,1,1,24.1,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1986,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,14.4,8.3,67,101700,596,1332,324,358,519,123,41482,32070,14307,5265,160,6.2,2,2,24.1,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1986,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,14.4,7.8,65,101600,661,1332,319,425,685,80,51580,38033,9736,3815,180,5.7,1,1,24.1,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1986,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,15.6,7.2,58,101600,703,1332,318,493,752,91,59719,43849,11057,4369,160,4.6,0,0,24.1,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1986,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,12.8,7.8,72,101600,717,1332,306,499,746,92,60539,43525,11196,4444,250,4.1,0,0,24.1,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1986,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,12.8,8.3,75,101500,703,1332,307,489,743,91,59223,42923,11055,4372,310,2.6,0,0,24.1,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1986,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,12.8,7.8,72,101500,662,1332,317,437,579,145,50685,38556,16888,6302,360,3.1,2,2,24.1,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1986,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,15.0,8.3,65,101400,596,1332,335,365,478,147,41735,31718,16881,6054,290,1.5,5,5,24.1,77777,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1986,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,16.1,7.2,56,101400,511,1332,346,220,115,175,24352,8286,19466,6223,130,5.7,7,7,24.1,1370,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1986,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,16.1,10.0,67,101300,412,1332,346,156,148,109,17488,7729,12267,4056,120,10.3,6,6,24.1,1370,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1986,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,13.9,10.0,78,101300,305,1332,344,81,58,67,9155,1803,7596,2499,110,5.7,8,8,24.1,1370,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1986,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,12.8,11.7,93,101200,198,1332,329,77,119,58,8445,1416,6383,1890,120,6.2,6,5,24.1,1830,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,11.1,10.0,93,101200,100,1332,317,24,56,19,2732,0,2167,677,100,6.2,4,4,24.1,77777,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,9.4,8.3,93,101200,21,1054,316,5,7,4,596,0,477,149,130,4.1,7,7,24.1,1520,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,10.6,8.9,90,101100,0,0,314,0,0,0,0,0,0,0,130,4.1,6,4,24.1,2130,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,8.3,7.2,93,101100,0,0,307,0,0,0,0,0,0,0,140,4.1,10,6,24.1,6100,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,7.8,6.7,93,101100,0,0,304,0,0,0,0,0,0,0,180,4.1,10,6,24.1,6100,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,7.8,6.1,89,101100,0,0,304,0,0,0,0,0,0,0,260,3.6,10,6,24.1,2130,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,6.7,5.6,93,101100,0,0,307,0,0,0,0,0,0,0,220,2.1,10,8,24.1,2130,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,6.7,5.6,93,101100,19,1010,307,3,1,3,361,0,361,113,170,3.1,10,8,24.1,1520,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,7.2,6.1,93,101100,96,1332,325,16,1,16,1835,0,1837,575,160,3.6,10,10,24.1,1830,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,7.8,6.7,93,101000,193,1332,328,35,2,35,3989,0,3998,1284,170,4.1,10,10,24.1,1830,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,8.9,7.2,89,101000,299,1332,334,46,1,46,5343,23,5355,1828,200,4.1,10,10,24.1,1830,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,8.9,6.7,86,101000,405,1332,334,88,4,87,10031,189,9950,3396,230,5.2,10,10,24.1,3050,9,999999999,15,0.0000,0,88,0.000,0.3,1.0 +1986,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,8.9,6.1,83,101000,504,1332,333,67,6,65,8008,288,7788,2898,230,5.2,10,10,11.3,3050,9,999999999,16,0.0000,0,88,0.000,0.3,1.0 +1986,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,7.8,6.1,89,101000,590,1332,328,90,3,89,10692,169,10606,4018,230,6.2,10,10,11.3,1130,9,999999999,16,0.0000,0,88,0.000,0.3,1.0 +1986,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,7.2,6.1,93,101000,656,1332,325,103,3,102,12266,180,12188,4699,220,7.7,10,10,11.3,910,9,999999999,16,0.0000,0,88,0.000,0.4,1.0 +1986,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,7.8,6.1,89,101000,697,1332,328,119,4,117,14132,252,13945,5408,210,8.2,10,10,11.3,880,9,999999999,16,0.0000,0,88,0.000,0.4,1.0 +1986,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,8.3,6.7,89,101000,711,1332,331,128,2,127,15142,129,15081,5842,220,7.7,10,10,11.3,880,9,999999999,16,0.0000,0,88,0.000,0.4,1.0 +1986,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,8.3,6.7,89,100900,697,1332,331,147,0,146,14998,0,15026,6488,240,9.3,10,10,11.3,880,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1986,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,5.0,5.0,100,101000,656,1332,314,119,1,118,14026,63,13959,5318,320,5.2,10,10,4.8,120,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,3.3,100,101000,590,1332,304,107,1,106,12563,61,12489,4663,330,7.7,10,10,8.0,180,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,1.7,93,101100,504,1332,300,149,0,149,14986,0,15108,5586,340,9.8,10,10,11.3,310,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.7,0.6,92,101100,405,1332,294,120,0,120,11971,0,12064,4288,320,8.8,10,10,11.3,310,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,-0.6,89,101200,298,1332,291,85,1,84,9448,41,9370,2901,320,8.2,10,10,11.3,310,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,-1.1,85,101200,191,1332,290,55,0,55,5387,0,5426,1798,320,7.7,10,10,11.3,310,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,-1.1,89,101300,93,1332,288,28,0,27,2718,0,2639,863,320,7.2,10,10,11.3,370,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,-1.7,82,101300,16,922,290,4,0,4,385,0,388,147,320,6.2,10,10,11.3,370,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,-1.1,89,101300,0,0,288,0,0,0,0,0,0,0,290,6.7,10,10,11.3,370,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,-1.1,89,101300,0,0,280,0,0,0,0,0,0,0,300,4.6,10,9,3.2,370,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,-1.1,89,101300,0,0,288,0,0,0,0,0,0,0,290,6.7,10,10,6.4,520,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,-0.6,89,101400,0,0,291,0,0,0,0,0,0,0,260,5.7,10,10,6.4,520,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,-0.6,89,101300,0,0,283,0,0,0,0,0,0,0,260,5.2,10,9,11.3,520,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,-0.6,89,101300,14,877,252,4,35,3,479,0,359,111,250,4.6,0,0,24.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.7,0.0,89,101300,89,1333,280,15,2,15,1724,0,1726,538,250,4.1,9,8,24.1,370,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,0.6,89,101300,187,1333,297,34,5,33,3890,0,3783,1213,240,4.6,10,10,24.1,1310,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,0.6,82,101300,293,1333,301,64,3,63,7251,95,7159,2329,240,5.2,10,10,24.1,980,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,4.4,1.7,82,101300,399,1333,307,102,4,101,11488,211,11418,3761,220,5.2,10,10,24.1,980,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,5.0,2.2,83,101300,498,1333,311,141,5,139,15871,330,15712,5269,230,4.6,10,10,24.1,760,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,5.0,2.8,86,101300,584,1333,311,108,5,106,12657,304,12466,4631,220,7.2,10,10,11.3,520,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,5.6,2.8,83,101300,650,1333,314,115,6,112,13597,378,13289,5065,220,6.7,10,10,11.3,610,9,999999999,8,0.0000,0,88,0.000,0.1,1.0 +1986,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,4.4,3.9,96,101300,691,1333,310,120,1,120,14219,64,14271,5504,270,6.2,10,10,11.3,310,9,999999999,8,0.0000,0,88,0.000,0.1,1.0 +1986,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,5.0,0.6,73,101400,705,1333,294,350,263,209,39845,20975,23913,8511,290,6.2,9,8,24.1,1520,9,999999999,9,0.0000,0,88,0.000,0.1,1.0 +1986,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,5.0,0.0,70,101400,691,1333,289,293,165,206,33314,13139,23540,8331,230,5.2,8,7,24.1,1520,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,5.6,0.0,68,101400,649,1333,278,429,694,85,51870,41124,10307,4005,240,4.1,2,2,24.1,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,5.0,0.6,73,101400,584,1333,268,396,731,70,47976,39950,8502,3254,240,6.2,0,0,24.1,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,5.6,1.1,73,101300,498,1333,276,326,705,57,39403,33884,6904,2578,260,6.2,1,1,24.1,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,6.1,1.1,71,101300,398,1333,299,134,72,112,14987,4054,12576,4060,210,3.6,10,8,24.1,1220,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,6.7,2.2,74,101200,291,1333,298,109,127,80,12125,4816,8931,2777,180,3.1,8,7,24.1,910,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,6.7,2.8,77,101200,184,1333,304,55,28,51,6082,286,5657,1685,180,4.6,8,8,24.1,1070,9,999999999,9,0.0000,0,88,0.000,0.1,1.0 +1986,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,5.6,2.8,83,101200,86,1333,294,24,17,23,2670,0,2565,755,240,6.7,7,7,24.1,1070,9,999999999,9,0.0000,0,88,0.000,0.1,1.0 +1986,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,5.6,2.2,79,101200,12,789,285,4,7,4,470,0,470,145,230,5.7,9,4,24.1,77777,9,999999999,9,0.0000,0,88,0.000,0.1,1.0 +1986,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,5.6,3.3,86,101100,0,0,315,0,0,0,0,0,0,0,230,7.2,10,10,11.3,640,9,999999999,9,0.0000,0,88,0.000,0.1,1.0 +1986,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,4.4,3.3,93,101100,0,0,309,0,0,0,0,0,0,0,230,7.7,10,10,11.3,610,9,999999999,9,0.0000,0,88,0.000,0.1,1.0 +1986,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,5.0,2.8,86,101100,0,0,288,0,0,0,0,0,0,0,230,6.7,8,6,11.3,1220,9,999999999,9,0.0000,0,88,0.000,0.1,1.0 +1986,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,5.0,2.8,86,101000,0,0,311,0,0,0,0,0,0,0,200,8.2,10,10,11.3,1220,9,999999999,9,0.0000,0,88,0.000,0.2,1.0 +1986,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,4.4,2.8,89,101000,0,0,309,0,0,0,0,0,0,0,230,8.2,10,10,11.3,370,9,999999999,9,0.0000,0,88,0.000,0.2,1.0 +1986,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,4.4,3.3,93,101000,11,744,309,1,0,1,0,0,0,0,220,7.7,10,10,11.3,370,9,999999999,9,0.0000,0,88,0.000,0.2,1.0 +1986,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,4.4,3.3,93,101000,83,1333,309,9,0,9,871,0,877,343,220,7.2,10,10,4.8,760,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,6.1,5.0,93,100900,180,1333,319,45,2,45,4997,8,5012,1512,230,9.3,10,10,6.4,1070,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1986,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,6.7,5.0,89,100900,286,1333,321,64,3,64,7216,89,7238,2335,220,10.3,10,10,6.4,1980,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1986,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,6.7,4.4,86,100800,393,1333,321,81,1,81,9263,46,9292,3173,230,11.3,10,10,11.3,1980,9,999999999,10,0.0000,0,88,0.000,0.1,1.0 +1986,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,6.7,4.4,86,100800,492,1333,321,152,4,150,16965,270,16817,5499,230,11.8,10,10,11.3,1980,9,999999999,10,0.0000,0,88,0.000,0.1,1.0 +1986,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,6.7,4.4,86,100800,578,1333,321,149,2,148,16975,136,16934,5965,230,10.3,10,10,11.3,1980,9,999999999,10,0.0000,0,88,0.000,0.1,1.0 +1986,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,6.1,5.6,96,100800,644,1333,319,98,2,97,11691,118,11609,4469,210,12.4,10,10,11.3,610,9,999999999,10,0.0000,0,88,0.000,0.6,1.0 +1986,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,6.7,4.4,86,100700,685,1333,321,134,0,134,13670,0,13788,6003,220,10.3,10,10,11.3,520,9,999999999,11,0.0000,0,88,0.000,0.6,1.0 +1986,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,4.4,3.3,93,100800,699,1333,309,127,0,126,12977,0,12987,5761,270,7.7,10,10,6.4,550,9,999999999,11,0.0000,0,88,0.000,0.6,1.0 +1986,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,2.8,1.7,93,100800,685,1333,300,134,1,134,15738,67,15800,6007,310,7.2,10,10,6.4,210,9,999999999,11,0.0000,0,88,0.000,0.1,1.0 +1986,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,2.8,1.1,89,100800,643,1333,300,118,1,118,13891,65,13942,5274,230,7.2,10,10,11.3,980,9,999999999,11,0.0000,0,88,0.000,0.1,1.0 +1986,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,3.3,0.0,79,100900,577,1333,286,223,138,162,25271,9994,18441,6375,270,7.7,10,8,11.3,1070,9,999999999,10,0.0000,0,88,0.000,0.1,1.0 +1986,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,3.3,-0.6,76,100900,491,1333,286,173,35,160,19252,2503,17888,5748,250,8.8,10,8,16.1,1520,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.9,-1.1,70,101000,391,1333,275,184,235,113,20537,13370,12662,4046,260,9.8,4,4,24.1,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,-0.6,76,101000,284,1333,271,112,181,72,12546,6339,8092,2556,270,9.8,4,3,24.1,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,0.0,82,101100,177,1333,272,56,58,48,6207,470,5336,1592,260,9.8,4,4,24.1,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,-0.6,82,101100,79,1333,271,15,6,14,1729,0,1616,505,260,8.2,5,5,24.1,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.7,-1.1,82,101200,8,656,267,1,0,1,0,0,0,0,250,9.3,4,4,24.1,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,-0.6,82,101200,0,0,295,0,0,0,0,0,0,0,240,10.3,10,10,24.1,1520,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,0.6,89,101200,0,0,297,0,0,0,0,0,0,0,240,9.8,10,10,24.1,1520,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,0.6,89,101300,0,0,297,0,0,0,0,0,0,0,250,10.3,10,10,24.1,2130,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,0.6,89,101300,0,0,297,0,0,0,0,0,0,0,240,10.8,10,10,24.1,2130,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.7,0.6,92,101400,0,0,286,0,0,0,0,0,0,0,250,9.8,10,9,24.1,1070,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.7,0.6,92,101400,8,634,294,0,0,0,0,0,0,0,250,9.8,10,10,11.3,2130,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.7,0.6,92,101400,76,1334,294,11,1,11,1281,0,1283,404,250,9.3,10,10,11.3,2130,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,0.6,89,101500,174,1334,297,23,1,23,2691,0,2694,884,250,8.8,10,10,11.3,1070,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,0.0,85,101500,280,1334,296,48,1,48,5535,24,5548,1854,260,7.7,10,10,11.3,1070,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,0.6,89,101500,387,1334,288,103,16,98,11593,825,11070,3625,250,7.7,9,9,11.3,2130,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,0.0,82,101500,486,1334,290,132,40,117,15031,2452,13374,4605,250,7.7,10,9,11.3,2130,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,0.6,89,101600,572,1334,297,142,35,127,16375,2286,14702,5295,250,8.8,10,10,11.3,1070,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,1.1,93,101600,638,1334,297,130,0,130,13223,0,13336,5672,230,8.2,10,10,11.3,1680,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,0.6,82,101700,679,1334,287,235,69,199,26720,5414,22738,8042,240,8.2,10,8,24.1,1680,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,0.6,82,101700,693,1334,287,292,129,224,32977,10625,25430,8810,260,7.7,10,8,16.1,1830,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,0.6,86,101700,678,1334,285,209,98,159,24197,7039,18488,6841,240,7.7,10,8,24.1,1830,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,0.6,82,101700,637,1334,301,176,3,174,20069,223,19933,7073,230,7.7,10,10,24.1,1830,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.9,-0.6,73,101700,570,1334,294,218,76,185,24408,5857,20813,6906,260,6.2,10,9,24.1,790,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.9,1.7,86,101700,484,1334,291,187,127,140,20990,8398,15782,5236,250,7.2,10,8,24.1,910,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,1.1,86,101700,384,1334,302,81,4,80,9273,186,9188,3132,240,6.7,10,10,24.1,910,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,0.6,82,101700,276,1334,301,63,1,63,7114,30,7135,2298,240,4.1,10,10,24.1,790,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,1.7,89,101700,169,1334,303,19,1,19,2259,0,2261,751,290,3.1,10,10,11.3,790,9,999999999,11,0.0000,0,88,0.000,0.2,1.0 +1986,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,3.3,2.2,93,101600,72,1334,303,6,0,6,581,0,585,236,240,3.1,10,10,11.3,550,9,999999999,12,0.0000,0,88,0.000,0.2,1.0 +1986,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,2.8,2.2,96,101600,6,522,301,1,0,1,0,0,0,0,170,2.1,10,10,4.8,400,9,999999999,12,0.0000,0,88,0.000,0.2,1.0 +1986,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,2.2,2.2,100,101500,0,0,298,0,0,0,0,0,0,0,0,0.0,10,10,4.8,120,9,999999999,12,0.0000,0,88,0.000,0.2,1.0 +1986,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,2.2,2.2,100,101500,0,0,298,0,0,0,0,0,0,0,320,1.5,10,10,4.8,120,9,999999999,13,0.0000,0,88,0.000,0.2,1.0 +1986,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,2.2,2.2,100,101500,0,0,298,0,0,0,0,0,0,0,0,0.0,10,10,4.8,120,9,999999999,13,0.0000,0,88,0.000,0.2,1.0 +1986,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,2.8,2.2,96,101400,0,0,301,0,0,0,0,0,0,0,0,0.0,10,10,4.8,460,9,999999999,13,0.0000,0,88,0.000,0.1,1.0 +1986,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,2.8,2.8,100,101400,0,0,302,0,0,0,0,0,0,0,220,2.1,10,10,4.8,520,9,999999999,13,0.0000,0,88,0.000,0.1,1.0 +1986,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,2.8,2.2,96,101400,5,500,301,0,0,0,0,0,0,0,210,2.1,10,10,4.8,610,9,999999999,12,0.0000,0,88,0.000,0.1,1.0 +1986,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,2.8,2.8,100,101400,70,1334,302,10,0,10,967,0,973,367,0,0.0,10,10,4.8,760,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,2.2,100,101400,167,1334,298,43,1,43,4765,1,4779,1422,300,2.1,10,10,8.0,150,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,2.8,100,101400,273,1334,302,69,0,69,6795,0,6845,2416,0,0.0,10,10,11.3,240,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,2.2,96,101400,380,1334,301,102,1,101,11425,52,11356,3671,330,2.1,10,10,11.3,240,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,1.1,86,101400,480,1334,302,127,0,127,12744,0,12845,4850,350,3.1,10,10,11.3,270,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,1.7,89,101400,566,1334,303,160,0,160,16171,0,16305,6226,320,2.6,10,10,11.3,180,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,1.7,93,101300,631,1334,300,196,0,196,19922,0,20091,7613,300,1.5,10,10,11.3,180,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.9,2.2,89,101300,673,1334,306,227,1,226,25502,83,25524,8683,310,2.1,10,10,11.3,180,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.9,1.7,86,101300,686,1334,305,206,0,206,21039,0,21221,8291,330,2.6,10,10,11.3,210,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,1.7,89,101300,672,1334,303,220,1,219,24786,82,24801,8519,340,2.6,10,10,11.3,370,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,2.2,93,101200,630,1334,289,261,177,176,29681,13157,20108,7088,40,3.1,10,8,11.3,370,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.9,2.2,89,101200,563,1334,306,111,3,109,12937,183,12749,4679,360,2.6,10,10,11.3,340,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,4.4,2.8,89,101100,477,1334,309,107,2,106,12258,115,12188,4259,90,3.6,10,10,16.1,310,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,4.4,2.8,89,101000,377,1334,309,65,5,64,7556,203,7459,2603,50,2.1,10,10,11.3,310,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,5.0,3.9,93,100900,269,1334,312,48,4,47,5529,87,5427,1814,60,2.1,10,10,11.3,210,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,5.6,5.0,96,100800,162,1334,316,26,1,26,3002,0,3007,974,110,6.2,10,10,11.3,150,9,999999999,9,0.0000,0,88,0.000,1.0,1.0 +1986,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,6.1,6.1,100,100600,64,1334,320,8,0,8,773,0,778,303,170,4.1,10,10,11.3,150,9,999999999,9,0.0000,0,88,0.000,1.0,1.0 +1986,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,6.7,5.6,93,100500,3,411,322,0,0,0,0,0,0,0,250,5.2,10,10,11.3,150,9,999999999,9,0.0000,0,88,0.000,1.0,1.0 +1986,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,4.4,3.9,96,100400,0,0,310,0,0,0,0,0,0,0,320,5.7,10,10,11.3,1070,9,999999999,9,0.0000,0,88,0.000,1.0,1.0 +1986,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,1.7,1.1,96,100400,0,0,295,0,0,0,0,0,0,0,330,9.3,10,10,11.3,150,9,999999999,9,0.0000,0,88,0.000,1.0,1.0 +1986,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,1.7,1.1,96,100500,0,0,295,0,0,0,0,0,0,0,330,10.3,10,10,11.3,180,9,999999999,9,0.0000,0,88,0.000,1.0,1.0 +1986,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,1.7,-1.1,82,100500,0,0,293,0,0,0,0,0,0,0,330,9.8,10,10,11.3,310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.7,0.6,92,100600,0,0,294,0,0,0,0,0,0,0,320,7.7,10,10,11.3,460,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.7,0.0,89,100700,6,389,294,1,0,1,0,0,0,0,310,9.8,10,10,11.3,460,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,0.0,96,100700,63,1335,289,15,0,15,1451,0,1460,501,310,8.8,10,10,3.2,180,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,-0.6,92,100800,160,1335,289,46,0,46,4490,0,4521,1461,320,9.3,10,10,1.6,240,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,-1.7,85,100900,267,1335,287,81,1,80,8922,36,8844,2628,330,12.4,10,10,3.2,370,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,-3.9,73,100900,374,1335,285,113,1,113,12538,56,12588,3913,310,12.9,10,10,16.1,1070,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,-4.4,72,101000,474,1335,282,168,1,167,18544,74,18521,5715,320,11.3,10,10,16.1,910,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,-4.4,70,101000,559,1335,271,202,39,185,22562,3044,20764,6789,300,10.3,10,8,16.1,910,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,-4.4,67,101000,625,1335,269,292,162,215,32675,13479,24183,8010,310,10.3,10,7,16.1,980,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,-4.4,67,101100,666,1335,266,353,369,167,40652,27489,19318,7025,310,9.3,10,6,16.1,5490,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,-3.9,70,101100,680,1335,266,289,191,191,33014,14958,21924,7828,310,10.3,10,6,16.1,5490,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,-2.8,76,101100,665,1335,270,267,93,220,30066,7726,24902,8488,310,12.4,10,7,16.1,1220,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,-1.7,89,101100,623,1335,285,124,3,122,14513,197,14332,5346,310,10.8,10,10,16.1,490,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,-3.3,79,101300,557,1335,283,129,3,128,14844,199,14786,5275,330,14.4,10,10,8.0,310,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,-2.2,85,101400,470,1335,284,131,10,127,14786,639,14393,4823,320,13.4,10,10,1.6,490,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,-4.4,72,101500,369,1335,282,123,2,123,13559,119,13616,4126,320,11.8,10,10,11.3,610,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,-4.4,70,101600,261,1335,285,77,1,77,8518,35,8548,2574,320,11.8,10,10,11.3,790,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,-4.4,70,101600,154,1335,285,36,4,35,4053,0,3950,1215,320,11.8,10,10,11.3,790,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,-5.0,69,101700,57,1335,282,15,0,15,1453,0,1462,503,320,10.3,10,10,11.3,790,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,-5.0,69,101800,6,278,282,1,0,1,0,0,0,0,320,11.8,10,10,11.3,880,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,-5.6,67,101900,0,0,281,0,0,0,0,0,0,0,320,9.8,10,10,11.3,880,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1986,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,-0.6,-5.6,69,101900,0,0,278,0,0,0,0,0,0,0,320,10.3,10,10,11.3,880,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1986,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,-0.6,-5.0,72,101900,0,0,279,0,0,0,0,0,0,0,320,8.8,10,10,11.3,880,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,-5.0,69,102000,0,0,282,0,0,0,0,0,0,0,310,9.3,10,10,11.3,880,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,-3.9,75,102000,0,0,283,0,0,0,0,0,0,0,310,8.2,10,10,11.3,760,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,-2.8,79,102000,6,256,286,1,0,1,0,0,0,0,310,7.7,10,10,11.3,640,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,-0.6,92,102000,57,1336,289,12,0,12,1160,0,1168,413,300,6.7,10,10,6.4,370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,-0.6,92,102000,153,1336,289,37,0,37,3609,0,3634,1243,310,8.2,10,10,3.2,270,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,-1.1,85,102000,260,1336,290,69,0,69,6796,0,6846,2362,320,7.7,10,10,11.3,460,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,-2.2,82,102000,367,1336,287,104,1,104,11592,53,11636,3676,310,6.7,10,10,6.4,370,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,-0.6,89,102000,467,1336,291,156,1,155,17283,70,17251,5428,320,6.7,10,10,11.3,460,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,-1.7,82,102000,553,1336,290,173,1,173,19390,75,19481,6465,300,6.2,10,10,11.3,520,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,-2.2,79,102000,619,1336,289,195,0,195,19822,0,19988,7490,320,6.2,10,10,11.3,520,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.7,-2.2,76,102000,660,1336,292,206,0,206,21014,0,21193,8086,320,5.2,10,10,11.3,340,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.7,-1.1,82,102000,674,1336,293,219,1,218,24705,82,24719,8501,320,5.7,10,10,11.3,610,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.7,-0.6,85,102000,659,1336,293,212,1,211,23909,81,23918,8213,320,5.2,10,10,11.3,400,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,-1.1,79,101900,616,1336,281,308,237,197,34643,18772,22268,7541,320,4.1,10,8,16.1,550,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,-1.1,79,101900,550,1336,287,182,73,151,20624,5136,17186,5909,310,6.2,9,9,16.1,550,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.7,-1.1,82,101900,463,1336,285,189,130,143,21083,8736,16022,5172,320,6.2,10,9,16.1,490,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,-1.1,89,101900,362,1336,288,88,33,79,10029,1487,9032,3029,310,4.1,10,10,2.0,400,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,-2.2,82,101900,254,1336,287,50,14,47,5739,300,5407,1781,340,5.2,10,10,11.3,430,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,-2.8,82,101800,147,1336,284,32,0,32,3124,0,3145,1119,300,4.6,10,10,11.3,520,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,-2.2,85,101800,50,1336,284,6,0,6,580,0,584,228,300,4.1,10,10,11.3,460,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,-2.2,85,101800,0,145,284,0,0,0,0,0,0,0,320,4.1,10,10,11.3,400,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,-0.6,-3.3,82,101700,0,0,273,0,0,0,0,0,0,0,360,3.6,10,9,11.3,460,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,-0.6,-4.4,75,101700,0,0,272,0,0,0,0,0,0,0,320,3.1,10,9,11.3,610,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,-0.6,-3.3,82,101700,0,0,281,0,0,0,0,0,0,0,330,2.6,10,10,11.3,550,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,-0.6,-2.8,85,101700,0,0,281,0,0,0,0,0,0,0,320,2.6,10,10,11.3,460,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,-0.6,-3.3,82,101700,0,0,281,0,0,0,0,0,0,0,320,2.6,10,10,11.3,460,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,-0.6,-3.3,82,101600,6,145,281,1,0,1,0,0,0,0,340,3.6,10,10,11.3,790,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,-0.6,-3.3,82,101600,50,1336,281,6,0,6,580,0,584,226,350,4.1,10,10,16.1,610,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,-3.3,79,101500,147,1336,283,36,0,36,3512,0,3536,1200,350,4.1,10,10,16.1,610,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,-2.2,85,101500,253,1336,284,56,1,55,6329,24,6234,1991,360,5.2,10,10,16.1,490,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,-1.1,89,101500,361,1336,288,96,1,96,10746,50,10786,3453,330,4.1,10,10,11.3,520,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,-1.7,89,101500,461,1336,264,147,76,120,16608,4682,13611,4563,360,5.7,10,6,16.1,700,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,-1.7,85,101500,547,1336,287,203,116,155,22924,8267,17581,5974,360,4.1,10,10,16.1,700,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,-2.2,85,101500,613,1336,284,141,3,140,16282,207,16233,5894,350,4.1,10,10,16.1,310,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,-1.7,82,101500,654,1336,290,197,2,196,22327,158,22322,7777,350,4.6,10,10,16.1,310,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,-0.6,89,101500,667,1336,291,210,6,208,23746,483,23638,8195,10,4.1,10,10,16.1,520,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,-0.6,89,101400,652,1336,291,200,8,196,22660,629,22316,7776,360,2.6,10,10,6.4,520,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,-1.7,82,101400,610,1336,290,152,4,150,17454,283,17297,6207,360,6.7,10,10,9.7,460,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,-1.7,85,101400,543,1336,287,165,2,164,18546,146,18518,6200,360,4.1,10,10,6.4,370,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,-2.2,85,101400,455,1336,284,135,1,134,15116,65,15068,4915,360,6.7,10,10,11.3,790,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,-2.8,82,101400,354,1336,284,96,2,96,10750,100,10789,3452,10,5.2,10,10,11.3,790,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,-2.8,82,101400,246,1336,284,63,0,63,6204,0,6249,2193,360,6.2,10,10,11.3,460,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,-2.8,82,101400,139,1336,284,34,0,34,3316,0,3339,1151,40,5.7,10,10,11.3,370,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,-2.8,82,101400,42,1336,284,9,0,9,870,0,876,320,50,6.2,10,10,11.3,370,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,-2.2,85,101500,6,11,284,1,0,1,0,0,0,0,60,5.2,10,10,4.8,370,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,-1.7,89,101500,0,0,285,0,0,0,0,0,0,0,40,7.2,10,10,11.3,370,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,-2.2,85,101500,0,0,284,0,0,0,0,0,0,0,30,6.2,10,10,11.3,370,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,-1.7,89,101500,0,0,277,0,0,0,0,0,0,0,40,7.2,10,9,11.3,1070,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,-2.2,82,101500,0,0,287,0,0,0,0,0,0,0,50,7.7,10,10,11.3,1070,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,-2.2,85,101500,0,0,284,0,0,0,0,0,0,0,50,6.2,10,10,11.3,980,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,-2.8,82,101500,0,33,261,0,0,0,0,0,0,0,40,5.7,10,5,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,-3.3,76,101600,43,1337,272,10,8,10,1137,0,1138,343,50,5.7,10,8,11.3,980,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,-2.8,79,101600,140,1337,286,32,3,32,3584,0,3592,1086,50,6.2,10,10,11.3,910,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,-2.8,79,101600,247,1337,286,43,4,42,4954,69,4850,1600,60,6.2,10,10,24.1,790,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.7,-2.8,73,101600,354,1337,283,140,66,123,15329,3841,13526,3975,60,4.6,10,9,24.1,700,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,-2.8,76,101600,454,1337,288,98,2,97,11247,112,11171,3876,10,4.6,10,10,24.1,700,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.7,-2.8,73,101600,540,1337,291,160,5,157,18027,359,17768,5983,10,3.6,10,10,24.1,700,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,-2.8,76,101600,606,1337,288,143,8,139,16503,552,16106,5832,10,5.2,10,10,24.1,640,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,-2.2,79,101600,647,1337,289,170,7,167,19493,518,19235,6914,350,4.6,10,10,24.1,550,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,-2.8,76,101600,660,1337,288,169,0,169,17244,0,17390,7055,330,3.6,10,10,24.1,520,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,-2.2,79,101600,645,1337,289,227,7,224,25417,588,25212,8403,350,2.6,10,10,24.1,490,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,-2.2,79,101600,603,1337,289,195,6,192,21920,472,21689,7312,350,5.2,10,10,24.1,400,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,-2.2,82,101600,535,1337,273,277,215,189,30728,16858,21070,6703,350,3.6,10,8,24.1,340,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,-1.7,89,101600,448,1337,285,87,7,85,10085,369,9884,3491,350,4.1,10,10,11.3,210,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,-0.6,-2.2,89,101600,347,1337,282,76,11,73,8680,464,8363,2804,350,2.1,10,10,11.3,240,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,-0.6,-2.2,89,101600,238,1337,282,61,0,61,6002,0,6046,2117,350,2.1,10,10,11.3,240,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,-0.6,-1.7,92,101600,131,1337,282,29,2,29,3271,0,3278,1007,320,3.1,10,10,11.3,120,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,-0.6,-1.1,96,101600,35,1236,283,4,1,4,487,0,487,154,360,3.6,10,10,0.8,90,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,-0.6,-1.1,96,101500,0,0,283,0,0,0,0,0,0,0,0,0.0,10,10,4.8,90,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,-0.6,-1.1,96,101500,0,0,283,0,0,0,0,0,0,0,0,0.0,10,10,11.3,150,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,-1.1,92,101500,0,0,286,0,0,0,0,0,0,0,330,2.1,10,10,11.3,150,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,-0.6,96,101500,0,0,286,0,0,0,0,0,0,0,250,3.1,10,10,11.3,120,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,-0.6,96,101500,0,0,286,0,0,0,0,0,0,0,180,2.6,10,10,11.3,120,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,-0.6,-0.6,100,101500,0,0,284,0,0,0,0,0,0,0,170,3.1,10,10,0.4,150,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,-0.6,96,101500,0,0,286,0,0,0,0,0,0,0,170,2.1,10,10,4.8,120,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,0.0,100,101500,37,1259,287,5,0,5,482,0,486,187,150,1.5,10,10,8.0,180,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,0.0,96,101500,133,1337,289,25,1,25,2843,0,2848,888,0,0.0,10,10,11.3,240,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,-0.6,92,101500,240,1337,289,59,1,59,6593,23,6613,2048,0,0.0,10,10,11.3,180,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,0.0,92,101500,347,1337,291,83,0,83,8235,0,8298,3064,220,2.1,10,10,24.1,180,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.7,0.6,92,101500,448,1337,294,125,0,125,12510,0,12608,4620,200,2.6,10,10,16.1,180,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.7,0.6,92,101400,534,1337,294,165,0,165,16636,0,16772,6134,180,2.6,10,10,16.1,180,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.7,0.6,92,101400,600,1337,294,177,0,177,17947,0,18097,6892,220,4.1,10,10,16.1,180,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,0.6,89,101400,640,1337,297,221,0,221,22488,0,22679,8279,200,4.1,10,10,24.1,180,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,0.6,89,101400,654,1337,297,208,0,208,21191,0,21371,8089,230,3.1,10,10,24.1,180,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,0.0,85,101400,638,1337,296,197,0,197,20049,0,20219,7700,260,3.6,10,10,24.1,310,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,0.0,85,101400,596,1337,296,184,1,184,20713,77,20813,7062,240,2.6,10,10,11.3,370,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,0.0,82,101400,528,1337,299,153,1,153,17231,70,17307,5829,270,2.6,10,10,11.3,490,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,0.0,79,101300,441,1337,301,131,0,131,13110,0,13213,4753,230,4.1,10,10,11.3,490,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,0.0,79,101400,339,1337,301,105,1,105,11609,51,11655,3574,250,3.1,10,10,11.3,460,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,0.6,86,101400,231,1337,271,105,225,64,11640,5573,7118,2155,320,3.6,3,3,24.1,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.7,0.0,89,101400,123,1337,268,43,56,38,4718,0,4182,1190,330,2.6,4,4,24.1,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,0.0,92,101400,29,1103,263,6,16,5,713,0,594,186,0,0.0,3,3,24.1,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,0.0,92,101400,0,0,291,0,0,0,0,0,0,0,320,4.1,10,10,16.1,180,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,0.0,96,101400,0,0,289,0,0,0,0,0,0,0,310,3.1,10,10,16.1,150,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,0.0,96,101400,0,0,289,0,0,0,0,0,0,0,240,2.6,10,10,16.1,150,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,0.0,100,101400,0,0,287,0,0,0,0,0,0,0,290,1.5,10,10,1.6,150,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,0.0,96,101500,0,0,289,0,0,0,0,0,0,0,300,4.1,10,10,3.2,90,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,0.6,100,101500,0,0,290,0,0,0,0,0,0,0,300,3.6,10,10,11.3,150,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.7,0.6,92,101500,0,0,294,0,0,0,0,0,0,0,300,3.6,10,10,11.3,150,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.7,0.6,92,101500,31,1148,294,6,0,6,578,0,582,216,320,4.1,10,10,11.3,150,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,0.0,92,101500,126,1338,291,18,1,18,2092,0,2095,671,350,5.7,10,10,16.1,180,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,-1.1,85,101600,233,1338,290,38,3,38,4388,37,4397,1450,330,4.1,10,10,16.1,180,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,-0.6,89,101600,341,1338,291,78,2,77,8834,84,8749,2876,360,3.6,10,10,16.1,520,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,-1.7,82,101600,441,1338,290,110,4,108,12471,231,12290,4141,360,4.6,10,10,16.1,550,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,-1.1,89,101600,527,1338,288,169,3,167,18880,220,18744,6132,360,4.1,10,10,11.3,610,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,-2.2,79,101600,593,1338,289,171,4,169,19371,298,19232,6637,340,4.6,10,10,11.3,550,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,-1.7,85,101600,634,1338,287,160,2,159,18367,145,18332,6596,360,5.2,10,10,9.7,550,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,-2.2,82,101600,647,1338,287,192,1,191,21781,78,21772,7598,10,4.1,10,10,11.3,550,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,-2.8,79,101600,631,1338,286,209,1,208,23479,81,23485,7915,50,5.2,10,10,16.1,520,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,-2.8,82,101600,588,1338,284,193,1,192,21633,79,21626,7199,60,4.6,10,10,11.3,370,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,-2.8,79,101600,521,1338,286,150,0,150,15126,0,15249,5706,60,5.7,10,10,11.3,400,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,-2.2,85,101600,433,1338,284,123,0,122,12309,0,12305,4492,50,6.2,10,10,6.4,370,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,-0.6,-2.8,85,101700,331,1338,281,88,0,88,8731,0,8796,3149,80,5.7,10,10,6.4,370,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,-1.1,-3.3,85,101700,223,1338,279,56,0,56,5504,0,5544,1940,50,6.2,10,10,6.4,370,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,-1.1,-2.8,89,101700,115,1338,279,33,0,33,3212,0,3234,1061,50,6.2,10,10,4.8,460,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,-0.6,-1.7,92,101700,23,992,282,6,0,6,579,0,582,214,60,7.2,10,10,2.4,400,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,-1.1,-3.3,85,101600,0,0,265,0,0,0,0,0,0,0,60,4.6,10,8,8.0,400,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,-1.1,-2.8,89,101600,0,0,272,0,0,0,0,0,0,0,60,7.2,10,9,8.0,460,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1986,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,-1.1,-2.8,89,101600,0,0,266,0,0,0,0,0,0,0,50,5.2,10,8,8.0,460,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1986,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,-1.1,-2.8,89,101600,0,0,272,0,0,0,0,0,0,0,80,6.2,10,9,8.0,460,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1986,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,-1.1,-2.2,92,101600,0,0,280,0,0,0,0,0,0,0,50,5.7,10,10,8.0,460,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1986,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,-1.1,-2.2,92,101600,0,0,280,0,0,0,0,0,0,0,60,5.2,10,10,8.0,460,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1986,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,-1.7,-3.3,89,101600,0,0,259,0,0,0,0,0,0,0,50,6.2,9,7,11.3,520,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1986,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,-1.1,-2.8,89,101600,25,1037,272,1,0,1,96,0,97,40,50,6.2,10,9,8.0,520,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1986,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,-1.1,-3.9,82,101600,119,1338,265,20,3,20,2297,0,2301,723,50,7.7,10,8,8.0,520,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1986,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,-1.7,-3.3,89,101600,226,1338,269,51,12,49,5757,204,5546,1751,80,6.7,10,9,11.3,490,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1986,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,-0.6,-2.8,85,101600,334,1338,281,91,3,90,10160,139,10085,3180,50,6.7,10,10,11.3,520,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1986,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,-0.6,-2.8,85,101600,434,1338,281,97,1,96,11085,55,11009,3769,60,6.2,10,10,6.4,520,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1986,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,-0.6,-2.8,85,101600,520,1338,281,102,3,100,11861,178,11668,4207,60,7.2,10,10,11.3,520,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,-2.8,82,101600,586,1338,276,192,112,142,22027,7767,16358,5827,70,7.2,10,9,16.1,520,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,-2.8,76,101500,627,1338,275,247,111,195,27860,8793,22102,7551,60,6.2,10,8,6.4,520,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,-1.7,85,101500,640,1338,287,158,21,148,18265,1482,17181,6286,70,7.2,10,10,6.4,520,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,-2.8,82,101500,624,1338,284,116,2,116,13633,130,13682,5131,60,6.2,10,10,11.3,490,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,-2.2,82,101500,581,1338,279,213,42,194,23813,3327,21796,7186,70,6.7,10,9,11.3,460,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1986,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,-0.6,-3.3,82,101500,513,1338,267,185,69,158,20725,4968,17781,5853,60,7.7,10,8,11.3,400,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1986,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,-0.6,-2.2,89,101500,425,1338,268,123,62,103,13962,3482,11734,3955,70,6.7,10,8,11.3,370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1986,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,-0.6,-2.8,85,101500,323,1338,268,107,25,100,11828,1231,11097,3380,60,7.2,10,8,11.3,400,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1986,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,-1.1,-2.8,89,101500,215,1338,279,38,1,38,4370,11,4379,1429,70,5.2,10,10,8.0,370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1986,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,-1.1,-3.3,85,101500,107,1338,265,23,8,22,2614,0,2505,774,90,8.2,10,8,11.3,430,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1986,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,-1.1,-3.3,85,101500,18,881,279,5,0,5,482,0,485,179,60,7.7,10,10,11.3,400,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1986,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,-1.1,-2.8,89,101500,0,0,279,0,0,0,0,0,0,0,60,7.7,10,10,9.7,400,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1986,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,-1.1,-2.8,89,101500,0,0,279,0,0,0,0,0,0,0,60,6.7,10,10,9.7,460,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1986,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,-1.1,-2.8,89,101500,0,0,279,0,0,0,0,0,0,0,50,7.7,10,10,9.7,460,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1986,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,-1.1,-3.3,85,101500,0,0,265,0,0,0,0,0,0,0,50,7.2,10,8,9.7,460,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1986,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,-1.1,-2.8,89,101500,0,0,279,0,0,0,0,0,0,0,50,7.2,10,10,9.7,460,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1986,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,-1.1,-2.2,92,101500,0,0,266,0,0,0,0,0,0,0,60,6.2,10,8,9.7,610,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1986,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,-1.1,-2.2,92,101500,0,0,280,0,0,0,0,0,0,0,80,5.7,10,10,4.8,370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1986,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,-1.1,-2.2,92,101500,21,926,280,0,0,0,0,0,0,0,60,6.7,10,10,4.8,370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1986,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,-1.1,-2.2,92,101500,112,1339,280,17,0,17,1653,0,1664,624,60,5.2,10,10,6.4,370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1986,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,-1.1,-2.2,92,101500,219,1339,272,47,12,45,5325,162,5112,1625,60,6.2,10,9,4.8,400,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1986,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,-1.1,-2.8,89,101500,327,1339,279,88,33,80,9899,1394,9029,2904,70,6.2,10,10,4.8,460,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1986,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,-1.1,-2.2,92,101500,428,1339,280,99,4,98,11274,219,11199,3800,70,6.2,10,10,4.8,460,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,-2.2,85,101500,514,1339,284,108,3,107,12471,182,12399,4413,70,7.2,10,10,4.8,460,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,-2.8,82,101500,579,1339,270,236,208,145,26991,14531,16653,5881,80,7.7,10,8,3.2,400,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,-1.7,85,101500,620,1339,287,151,7,147,17394,492,17004,6153,90,7.2,10,10,3.2,460,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,-3.3,79,101500,633,1339,275,266,127,205,29925,10295,23178,7848,80,7.2,10,9,3.2,460,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1986,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,-0.6,-2.8,85,101500,617,1339,264,313,295,174,35570,22263,19865,6941,70,7.7,10,7,6.4,400,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1986,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,-0.6,-3.3,82,101500,574,1339,281,116,4,114,13516,256,13331,4882,70,7.7,10,10,6.4,400,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1986,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,-0.6,-3.3,82,101500,506,1339,281,95,3,94,11076,173,10995,3969,70,7.7,10,10,4.8,370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1986,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,-0.6,-2.8,85,101500,418,1339,281,123,0,123,12294,0,12390,4428,70,8.2,10,10,6.4,370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1986,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,-1.1,-2.2,92,101500,315,1339,272,91,18,86,10158,786,9634,3029,100,7.7,10,9,6.4,370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1986,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,-1.1,-3.3,85,101500,207,1339,261,76,20,73,8257,542,7961,2206,90,8.2,10,7,8.0,370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1986,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,-1.1,-3.3,85,101500,99,1339,279,17,1,17,1962,0,1965,619,80,8.8,10,10,6.4,370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1986,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,-1.1,-2.8,89,101500,13,748,279,1,0,1,96,0,97,40,80,8.2,10,10,6.4,340,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1986,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,-1.1,-2.8,89,101400,0,0,279,0,0,0,0,0,0,0,80,7.7,10,10,6.4,370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1986,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,-1.1,-2.8,89,101400,0,0,272,0,0,0,0,0,0,0,90,7.7,10,9,6.4,370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1986,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,-1.1,-2.8,89,101400,0,0,272,0,0,0,0,0,0,0,90,7.2,10,9,11.3,370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1986,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,-1.1,-2.8,89,101400,0,0,279,0,0,0,0,0,0,0,90,8.8,10,10,11.3,370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1986,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,-1.1,-2.8,89,101300,0,0,279,0,0,0,0,0,0,0,90,7.7,10,10,11.3,370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1986,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,-1.1,-2.8,89,101300,0,0,279,0,0,0,0,0,0,0,90,8.2,10,10,11.3,460,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1986,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,-1.1,-2.2,92,101200,0,0,280,0,0,0,0,0,0,0,90,6.7,10,10,11.3,460,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1986,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,-1.1,-2.2,92,101200,16,837,280,3,1,3,359,0,359,111,100,8.8,10,10,4.8,370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1986,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,-1.1,-1.1,100,101100,105,1340,281,17,3,17,1958,0,1961,616,90,7.7,10,10,1.2,150,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1986,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,-1.1,-1.1,100,101100,212,1340,281,43,2,42,4883,21,4781,1525,90,9.8,10,10,1.2,90,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1986,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,-1.1,-1.1,100,101000,320,1340,281,99,2,98,10923,95,10855,3283,100,10.3,10,10,1.2,90,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1986,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,-0.6,-1.1,96,101000,421,1340,283,107,2,107,12073,113,12119,4018,100,9.3,10,10,1.6,880,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,-0.6,96,100900,507,1340,286,178,2,177,19693,151,19678,6182,90,8.2,10,10,1.6,430,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,-0.6,96,100900,573,1340,286,203,3,201,22563,241,22454,7237,100,9.3,10,10,4.8,310,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,-0.6,92,100800,613,1340,289,209,1,209,23360,81,23480,7768,100,9.3,10,10,4.8,240,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,0.0,96,100700,626,1340,289,202,1,202,22701,80,22814,7718,110,8.2,10,10,3.2,120,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,0.6,96,100700,610,1340,292,197,1,197,22111,79,22221,7479,110,8.2,10,10,2.0,90,9,999999999,2,0.0000,0,88,0.000,0.2,1.0 +1986,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,1.1,1.1,100,100600,566,1340,292,204,0,203,20628,0,20696,7248,100,7.2,10,10,1.2,60,9,999999999,3,0.0000,0,88,0.000,0.2,1.0 +1986,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,1.7,1.7,100,100600,498,1340,296,100,0,100,10051,0,10132,4144,90,5.7,10,10,0.8,60,9,999999999,3,0.0000,0,88,0.000,0.2,1.0 +1986,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,1.7,1.7,100,100500,410,1340,296,77,1,77,8901,47,8927,3116,110,4.1,10,10,0.8,60,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,1.7,96,100500,307,1340,298,57,0,57,5636,0,5678,2211,90,4.1,10,10,2.4,150,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,2.2,96,100500,198,1340,301,36,0,36,3525,0,3550,1338,170,4.1,10,10,1.2,90,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,2.8,100,100500,91,1340,287,18,26,15,2083,0,1738,549,220,6.2,10,8,1.2,240,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,2.2,100,100500,9,636,298,3,1,3,0,0,0,0,220,6.2,10,10,0.4,30,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,2.8,100,100500,0,0,302,0,0,0,0,0,0,0,200,4.1,10,10,1.6,180,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,2.2,96,100500,0,0,301,0,0,0,0,0,0,0,200,4.6,10,10,1.2,150,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,2.2,100,100500,0,0,298,0,0,0,0,0,0,0,200,3.6,10,10,0.8,150,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,2.2,100,100500,0,0,298,0,0,0,0,0,0,0,200,2.6,10,10,0.8,150,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,2.2,100,100500,0,0,298,0,0,0,0,0,0,0,230,3.6,10,10,0.8,150,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,2.2,100,100500,0,0,298,0,0,0,0,0,0,0,230,6.2,10,10,4.8,150,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,1.7,96,100600,0,0,298,0,0,0,0,0,0,0,230,6.7,10,10,11.3,370,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,0.6,89,100600,12,726,297,0,1,0,0,0,0,0,230,8.2,10,10,11.3,370,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.7,0.6,92,100600,98,1340,286,29,28,27,3199,0,2986,858,270,6.7,10,9,11.3,310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.7,0.6,92,100600,205,1340,294,62,4,61,6804,75,6717,1949,240,6.2,10,10,24.1,310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,0.6,89,100700,313,1340,297,72,1,71,8134,37,8046,2614,240,6.7,10,10,16.1,310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,0.6,89,100700,414,1340,297,98,6,96,11130,316,10941,3687,260,5.7,10,10,16.1,400,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,0.0,85,100700,500,1340,296,118,10,114,13506,610,13098,4574,240,6.2,10,10,16.1,400,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,0.6,89,100700,566,1340,297,176,3,175,19748,224,19729,6600,260,6.2,10,10,16.1,400,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,0.6,86,100700,606,1340,285,283,279,155,32349,19816,17795,6322,250,6.2,10,8,16.1,640,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,0.6,89,100800,619,1340,282,266,126,206,29795,10124,23192,7753,270,7.7,10,8,16.1,370,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,0.6,86,100800,603,1340,280,237,126,180,26755,9535,20417,7002,240,7.2,10,7,16.1,370,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.7,0.0,89,100800,559,1340,286,278,255,169,31261,18800,19092,6426,250,4.1,10,9,16.1,310,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.7,0.0,89,100900,490,1340,294,145,4,143,16275,270,16120,5341,240,4.1,10,10,16.1,340,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,-0.6,89,100900,402,1340,291,103,4,102,11624,217,11553,3823,270,4.1,10,10,16.1,310,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,-0.6,89,100900,299,1340,291,65,5,64,7390,169,7297,2397,300,5.2,10,10,16.1,310,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,-0.6,89,100900,190,1340,291,47,3,46,5263,29,5166,1591,290,5.2,10,10,16.1,310,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,-0.6,89,100900,83,1340,291,19,0,19,1843,0,1855,652,240,4.1,10,10,16.1,310,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,-0.6,89,100900,6,525,291,4,0,4,0,0,0,0,290,3.1,10,10,16.1,340,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,-0.6,89,100900,0,0,291,0,0,0,0,0,0,0,300,2.6,10,10,16.1,340,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,0.0,92,100900,0,0,291,0,0,0,0,0,0,0,250,2.1,10,10,16.1,310,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,0.0,96,100900,0,0,289,0,0,0,0,0,0,0,200,1.5,10,10,11.3,760,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,-0.6,96,100900,0,0,278,0,0,0,0,0,0,0,150,1.5,10,9,11.3,760,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.0,0.0,100,100900,0,0,287,0,0,0,0,0,0,0,170,2.1,10,10,11.3,760,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,0.0,96,100900,0,0,281,0,0,0,0,0,0,0,0,0.0,10,9,11.3,610,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,0.0,96,100900,0,0,289,0,0,0,0,0,0,0,60,2.6,10,10,11.3,520,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,0.0,92,100900,9,615,291,1,0,1,0,0,0,0,60,2.6,10,10,11.3,520,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,0.6,0.0,96,100900,91,1341,289,21,0,21,2036,0,2050,703,90,3.1,10,10,11.3,460,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.1,0.0,92,100900,198,1341,291,55,1,55,6069,15,6089,1797,80,2.6,10,10,16.1,430,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.7,-0.6,85,100900,306,1341,293,81,1,81,9035,40,9066,2839,90,3.1,10,10,16.1,430,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.7,0.0,89,100900,407,1341,294,113,1,113,12642,57,12692,4099,60,3.1,10,10,16.1,400,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.7,-0.6,85,100900,493,1341,293,153,1,153,17074,70,17151,5567,80,3.1,10,10,16.1,400,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.7,0.0,89,100900,559,1341,294,186,1,186,20737,77,20839,6798,100,3.6,10,10,16.1,340,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,0.6,89,100800,599,1341,297,206,1,205,22984,80,22989,7556,90,3.6,10,10,16.1,310,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,1.1,89,100900,612,1341,300,215,1,215,23958,82,24083,7889,80,4.6,10,10,16.1,310,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,1.1,89,100800,595,1341,300,180,1,180,20285,76,20382,6949,80,4.6,10,10,16.1,270,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,1.7,93,100800,551,1341,300,171,0,171,17265,0,17407,6421,90,4.1,10,10,11.3,210,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1986,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,3.3,1.7,89,100700,483,1341,303,147,1,147,16423,68,16496,5387,100,6.2,10,10,11.3,240,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,1.7,93,100700,394,1341,300,114,0,114,11356,0,11444,4081,90,5.7,10,10,11.3,210,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.8,1.7,93,100700,291,1341,300,89,1,89,9816,41,9853,2974,90,5.7,10,10,11.3,240,9,999999999,14,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,1.1,93,100700,182,1341,297,48,0,48,4695,0,4728,1612,90,6.2,10,10,11.3,180,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,2.2,1.1,93,100600,75,1341,297,21,0,21,2034,0,2048,686,110,5.7,10,10,11.3,180,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.8,0.5,93,100600,12,391,295,2,0,2,0,0,0,0,80,6.1,10,10,11.3,180,9,999999999,15,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.4,-0.1,96,100500,0,0,292,0,0,0,0,0,0,0,90,6.4,10,10,8.0,120,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1986,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,1.0,-0.7,96,100500,0,0,290,0,0,0,0,0,0,0,110,6.8,10,10,8.0,150,9,999999999,16,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-1.3,82,101500,0,0,288,0,0,0,0,0,0,0,360,7.1,10,10,11.3,460,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.2,-1.9,75,101500,0,0,286,0,0,0,0,0,0,0,360,7.5,10,10,8.0,430,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.1,-2.6,82,101600,0,0,284,0,0,0,0,0,0,0,360,7.8,10,10,8.0,400,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-3.3,82,101700,0,0,281,0,0,0,0,0,0,0,360,8.2,10,10,11.3,400,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-2.8,85,101700,0,0,281,0,0,0,0,0,0,0,360,7.7,10,10,11.3,400,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-2.8,85,101800,6,503,281,2,0,2,0,0,0,0,10,7.2,10,10,3.2,400,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-3.3,82,101800,83,1342,281,20,0,20,1940,0,1953,664,10,6.7,10,10,4.8,460,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-2.8,85,101800,190,1342,281,54,0,54,5288,0,5326,1747,10,6.2,10,10,8.0,460,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-3.9,79,101900,299,1342,272,91,88,71,10244,3207,8018,2563,30,6.7,9,9,11.3,460,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-3.3,82,101900,400,1342,281,41,1,40,4972,37,4858,1757,40,6.2,10,10,11.3,460,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.0,-3.3,79,101900,486,1342,275,110,53,90,12797,2962,10503,3758,40,5.7,9,9,11.3,460,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.0,-3.3,79,102000,551,1342,275,226,196,144,25707,13613,16449,5700,40,6.2,9,9,11.3,460,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-1.7,85,102000,592,1342,287,140,23,130,16190,1537,15092,5476,50,5.2,10,10,9.7,460,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-2.8,79,102000,604,1342,278,145,24,134,16777,1633,15566,5664,40,5.7,9,9,11.3,490,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.1,-1.7,82,102000,588,1342,282,161,2,160,18302,145,18269,6368,60,6.7,9,9,8.0,490,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-1.1,89,102000,543,1342,280,227,89,190,25203,6969,21200,6782,40,5.2,9,9,11.3,490,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.0,-1.1,92,102000,475,1342,286,151,34,139,16928,2261,15650,5145,50,5.7,10,10,3.2,490,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-1.7,92,102000,386,1342,282,84,4,82,9608,192,9409,3196,60,4.1,10,10,3.2,460,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-2.2,89,102000,283,1342,282,41,2,41,4805,47,4814,1644,90,6.7,10,10,6.4,610,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-2.8,85,102100,173,1342,268,45,22,42,5040,106,4716,1443,80,5.2,10,8,9.7,460,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-3.3,85,102000,67,1342,271,16,2,16,1809,0,1812,547,80,5.7,10,9,11.3,460,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-3.9,85,102100,6,280,258,1,0,1,0,0,0,0,80,5.7,8,7,11.3,460,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-3.3,89,102100,0,0,256,0,0,0,0,0,0,0,80,5.2,9,6,11.3,460,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-3.9,85,102100,0,0,276,0,0,0,0,0,0,0,80,5.2,10,10,11.3,460,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-3.9,85,102100,0,0,276,0,0,0,0,0,0,0,90,5.2,10,10,11.3,460,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-2.2,-4.4,85,102100,0,0,273,0,0,0,0,0,0,0,80,5.7,10,10,11.3,460,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-3.9,85,102100,0,0,268,0,0,0,0,0,0,0,70,4.1,9,9,11.3,460,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-3.3,85,102100,0,0,279,0,0,0,0,0,0,0,80,4.1,10,10,11.3,460,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-2.2,92,102100,0,0,280,0,0,0,0,0,0,0,70,5.2,10,10,11.3,460,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-2.2,92,102100,4,414,280,0,1,0,0,0,0,0,70,5.2,10,10,11.3,370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-2.2,92,102100,76,1342,280,11,0,11,1066,0,1073,404,80,5.7,10,10,2.4,430,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-1.7,92,102100,183,1342,282,39,4,38,4408,11,4305,1347,70,6.2,10,10,4.8,550,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-2.2,89,102100,292,1342,282,56,6,54,6426,173,6213,2065,80,6.2,10,10,11.3,610,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-2.8,85,102100,393,1342,274,104,42,91,11804,2135,10364,3460,90,6.7,9,9,11.3,610,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-3.3,82,102100,479,1342,273,131,51,112,14952,3096,12831,4422,100,6.7,9,9,11.3,460,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-2.8,85,102100,544,1342,281,133,0,133,13434,0,13544,5346,90,6.2,10,10,11.3,460,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-3.3,82,102100,585,1342,281,114,0,114,11557,0,11652,4911,90,6.2,10,10,11.3,370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.0,-2.8,82,102100,597,1342,284,167,6,165,18975,443,18832,6556,100,6.7,10,10,11.3,340,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.0,-2.8,82,102100,580,1342,270,226,147,161,25643,10728,18350,6349,80,7.7,10,8,11.3,340,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-3.3,82,102100,536,1342,273,145,48,125,16635,3135,14396,5080,110,7.7,9,9,11.3,340,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-2.8,85,102100,467,1342,268,205,132,158,22705,9409,17581,5513,90,8.2,8,8,11.3,340,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-3.3,82,102000,377,1342,267,131,65,112,14581,3669,12516,3943,90,6.7,10,8,11.3,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-2.8,89,102100,274,1342,279,31,2,30,3712,36,3597,1243,90,5.2,10,10,11.3,270,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-2.8,89,102000,165,1342,279,31,2,31,3544,0,3551,1130,90,5.7,10,10,11.3,240,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-3.3,89,102000,59,1342,263,12,7,12,1378,0,1380,425,100,6.7,10,8,11.3,240,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-3.3,89,102000,1,168,263,0,0,0,0,0,0,0,80,7.2,10,8,11.3,270,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-3.3,89,102000,0,0,276,0,0,0,0,0,0,0,80,6.2,10,10,11.3,240,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-2.8,89,102000,0,0,279,0,0,0,0,0,0,0,110,5.2,10,10,11.3,240,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-3.3,89,102000,0,0,276,0,0,0,0,0,0,0,90,5.2,10,10,11.3,240,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-3.3,89,102000,0,0,276,0,0,0,0,0,0,0,100,6.2,10,10,11.3,270,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-3.3,89,102000,0,0,276,0,0,0,0,0,0,0,90,5.7,10,10,11.3,270,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-3.3,85,101900,0,0,279,0,0,0,0,0,0,0,70,6.2,10,10,11.3,430,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-3.3,85,101900,0,0,279,0,0,0,0,0,0,0,80,5.2,10,10,11.3,430,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-3.9,79,101900,2,302,280,0,0,0,0,0,0,0,90,5.2,10,10,11.3,520,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-3.9,79,101900,69,1343,280,13,1,13,1488,0,1490,457,70,6.2,10,10,16.1,520,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-3.3,82,101900,176,1343,281,34,1,34,3865,0,3874,1222,80,6.2,10,10,16.1,520,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-3.9,82,101900,284,1343,278,89,5,88,9794,207,9720,2882,70,5.7,10,10,16.1,460,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-4.4,78,101900,385,1343,278,94,7,92,10642,357,10451,3459,90,5.7,10,10,16.1,460,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-3.9,82,101800,472,1343,278,161,6,159,17829,431,17690,5537,90,7.7,10,10,11.3,400,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-4.4,82,101800,537,1343,275,153,1,152,17275,71,17238,5831,80,6.2,10,10,11.3,400,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-3.9,82,101800,577,1343,278,187,1,187,20946,78,21048,6972,70,7.2,10,10,11.3,370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-3.9,82,101800,589,1343,265,260,93,218,28838,7826,24306,7739,70,8.2,10,8,11.3,370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-3.9,79,101700,573,1343,267,265,168,192,29599,13319,21551,7059,90,8.8,10,8,11.3,430,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-3.9,79,101700,528,1343,267,193,77,162,21647,5630,18253,6041,70,8.2,10,8,11.3,430,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-3.9,82,101700,459,1343,278,109,10,105,12459,586,12045,4149,60,6.7,10,10,11.3,430,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-4.4,82,101600,369,1343,275,72,2,72,8288,89,8312,2840,80,7.7,10,10,11.3,340,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-3.9,82,101600,266,1343,278,70,3,70,7817,99,7842,2437,70,9.8,10,10,11.3,340,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-2.8,85,101600,156,1343,268,54,48,48,5930,257,5288,1517,90,6.7,10,8,11.3,340,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.0,-1.7,89,101500,51,1343,285,9,5,9,1049,0,1050,328,80,6.7,10,10,11.3,210,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.0,-1.1,92,101500,0,56,286,0,0,0,0,0,0,0,80,7.7,10,10,6.4,340,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-1.7,92,101500,0,0,282,0,0,0,0,0,0,0,70,7.2,10,10,9.7,340,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-2.8,89,101400,0,0,279,0,0,0,0,0,0,0,80,7.7,10,10,11.3,370,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-3.9,82,101400,0,0,278,0,0,0,0,0,0,0,80,8.2,10,10,11.3,400,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-3.9,82,101400,0,0,278,0,0,0,0,0,0,0,80,7.7,10,10,11.3,430,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-3.9,82,101400,0,0,278,0,0,0,0,0,0,0,70,7.7,10,10,11.3,430,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-3.3,85,101400,0,0,279,0,0,0,0,0,0,0,70,6.7,10,10,11.3,610,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-2.2,92,101400,0,0,280,0,0,0,0,0,0,0,90,4.6,10,10,11.3,610,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-2.2,89,101400,1,213,282,0,0,0,0,0,0,0,70,6.2,10,10,3.2,610,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-1.7,92,101400,62,1344,282,8,2,8,945,0,945,298,90,6.7,10,10,3.2,490,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.0,-1.1,92,101400,169,1344,286,34,5,33,3858,0,3753,1179,70,6.7,10,10,6.4,580,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-1.1,89,101400,277,1344,288,73,5,72,8141,168,8056,2503,80,7.2,10,10,9.7,550,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-0.6,92,101300,378,1344,289,108,5,106,12051,269,11873,3779,70,8.8,10,10,9.7,550,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.1,-1.7,82,101400,464,1344,290,129,1,129,14499,64,14559,4811,80,7.7,10,10,11.3,580,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.7,-0.6,85,101400,530,1344,293,160,2,159,17954,143,17923,5960,90,10.3,10,10,11.3,580,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.7,-0.6,85,101400,570,1344,293,184,1,183,20597,77,20584,6821,90,9.8,10,10,11.3,580,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.7,-0.6,85,101400,582,1344,293,185,0,185,18737,0,18893,6965,90,10.8,10,10,11.3,400,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.7,-1.1,82,101400,565,1344,285,200,39,183,22374,2997,20571,6795,90,11.3,10,9,11.3,370,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.7,-0.6,85,101300,520,1344,293,138,4,137,15650,267,15601,5349,90,9.8,10,10,6.4,180,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.7,-0.6,85,101300,450,1344,293,107,9,104,12206,514,11907,4086,80,10.3,10,10,9.7,430,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.1,-0.6,89,101300,361,1344,291,82,13,79,9339,582,9026,3023,90,9.3,10,10,2.4,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.1,-0.6,89,101300,257,1344,291,89,2,88,9713,77,9642,2762,90,8.2,10,10,9.7,400,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.1,-0.6,89,101300,148,1344,291,35,4,35,3925,0,3935,1201,80,8.2,10,10,9.7,400,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-0.6,92,101300,43,1265,289,9,1,9,1040,0,1041,321,80,9.3,10,10,9.7,400,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-0.6,92,101300,0,0,289,0,0,0,0,0,0,0,80,8.8,10,10,4.8,120,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-0.6,92,101300,0,0,289,0,0,0,0,0,0,0,80,8.8,10,10,8.0,120,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-0.6,92,101200,0,0,289,0,0,0,0,0,0,0,90,8.2,10,10,8.0,150,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-0.6,92,101200,0,0,289,0,0,0,0,0,0,0,70,8.8,10,10,8.0,150,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-0.6,92,101200,0,0,289,0,0,0,0,0,0,0,80,7.7,10,10,8.0,150,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-0.6,92,101200,0,0,289,0,0,0,0,0,0,0,90,7.2,10,10,8.0,150,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.0,-0.6,96,101200,0,0,286,0,0,0,0,0,0,0,80,7.7,10,10,8.0,240,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-0.6,92,101100,0,0,289,0,0,0,0,0,0,0,80,7.2,10,10,8.0,150,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-0.6,92,101100,0,101,289,0,0,0,0,0,0,0,80,7.7,10,10,8.0,120,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,0.0,96,101000,55,1344,289,9,1,8,1055,0,938,294,80,6.7,10,10,4.8,760,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,0.0,96,101000,161,1344,289,36,2,36,4040,0,4050,1241,80,9.3,10,10,4.8,760,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-0.6,92,100900,270,1344,275,104,104,82,11442,3826,9055,2684,80,9.3,10,8,6.4,610,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-1.1,89,100800,371,1344,288,108,47,95,12135,2355,10713,3474,80,10.3,10,10,8.0,760,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-1.1,89,100800,457,1344,274,134,73,108,15250,4259,12336,4211,80,9.8,10,8,9.7,240,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.1,-1.7,82,100700,523,1344,290,109,9,106,12618,544,12314,4412,80,9.8,10,10,11.3,430,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.1,-1.7,82,100600,563,1344,290,142,9,138,16241,612,15848,5585,80,10.8,10,10,11.3,430,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.7,-2.2,76,100500,574,1344,292,164,5,162,18569,365,18425,6332,80,12.9,10,10,11.3,460,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.1,-2.2,79,100400,557,1344,289,141,7,138,16115,477,15837,5566,80,11.3,10,10,11.3,490,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-2.2,82,100300,512,1344,279,213,64,188,23502,5008,20847,6462,80,12.4,10,9,11.3,460,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-2.8,79,100200,442,1344,286,93,2,92,10697,109,10617,3692,70,11.3,10,10,11.3,460,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.0,-2.8,82,100100,352,1344,284,94,10,91,10564,484,10263,3316,70,12.4,10,10,11.3,400,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.0,-2.2,85,100000,249,1344,284,47,1,47,5385,21,5398,1770,70,10.3,10,10,11.3,310,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-2.8,85,100000,139,1344,281,26,0,26,2536,0,2554,941,70,12.4,10,10,11.3,310,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-2.8,85,99900,35,1154,281,6,1,6,710,0,710,222,70,11.3,10,10,11.3,310,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-2.8,89,99900,0,0,279,0,0,0,0,0,0,0,70,11.8,10,10,11.3,340,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-3.3,85,99800,0,0,279,0,0,0,0,0,0,0,70,11.8,10,10,11.3,400,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-2.8,89,99800,0,0,279,0,0,0,0,0,0,0,50,10.8,10,10,11.3,370,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-3.3,85,99800,0,0,279,0,0,0,0,0,0,0,50,11.8,10,10,11.3,370,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-3.9,82,99800,0,0,278,0,0,0,0,0,0,0,50,11.8,10,10,11.3,400,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-3.9,82,99900,0,0,278,0,0,0,0,0,0,0,50,9.8,10,10,11.3,370,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-3.9,85,99900,0,0,276,0,0,0,0,0,0,0,60,9.8,10,10,11.3,370,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-3.9,85,99900,0,0,276,0,0,0,0,0,0,0,50,9.8,10,10,11.3,340,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,-2.2,-2.8,96,100000,0,11,275,0,0,0,0,0,0,0,50,8.2,10,10,4.0,400,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-4.4,82,100100,48,1345,275,9,2,8,1048,0,932,289,40,9.8,10,10,6.4,430,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-3.9,82,100100,154,1345,278,38,1,38,4232,0,4244,1269,40,7.7,10,10,9.7,430,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-2.8,89,100200,263,1345,279,76,1,76,8395,34,8425,2526,40,6.7,10,10,9.7,430,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-3.9,82,100300,364,1345,278,113,1,113,12498,56,12549,3848,30,7.7,10,10,11.3,460,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-3.9,82,100400,450,1345,278,147,1,146,16303,68,16264,5107,360,7.2,10,10,6.4,760,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-3.3,85,100500,515,1345,279,181,1,180,20048,77,20034,6308,340,6.7,10,10,8.0,460,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-3.9,82,100600,555,1345,278,203,1,203,22473,82,22588,7114,360,5.2,10,10,6.4,460,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-2.8,89,100700,567,1345,279,207,1,206,22945,82,22952,7287,350,5.2,10,10,6.4,460,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-4.4,78,100900,549,1345,278,177,2,177,19801,153,19895,6536,340,3.6,10,10,11.3,520,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-4.4,75,100900,504,1345,280,167,1,167,18581,74,18668,5978,310,2.6,10,10,11.3,520,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-2.8,85,101000,434,1345,281,142,1,142,15735,67,15804,4944,330,3.6,10,10,11.3,760,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-2.8,85,101100,344,1345,281,121,0,121,12018,0,12108,3906,320,5.2,10,10,8.0,610,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.0,-2.8,82,101100,240,1345,284,75,1,75,8245,32,8275,2429,320,3.1,10,10,11.3,550,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-5.0,67,101200,131,1345,284,37,1,37,4094,0,4105,1198,290,6.2,10,10,11.3,850,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-4.4,70,101200,29,1042,285,8,0,8,773,0,778,278,290,6.7,10,10,11.3,760,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-2.8,79,101300,0,0,286,0,0,0,0,0,0,0,270,6.7,10,10,11.3,730,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-1.7,85,101200,0,0,287,0,0,0,0,0,0,0,240,5.2,10,10,11.3,760,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-1.1,89,101300,0,0,288,0,0,0,0,0,0,0,240,7.7,10,10,8.0,760,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.1,-0.6,89,101300,0,0,291,0,0,0,0,0,0,0,280,8.8,10,10,6.4,760,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.1,-1.7,82,101300,0,0,290,0,0,0,0,0,0,0,300,8.8,10,10,9.7,370,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-1.7,85,101400,0,0,287,0,0,0,0,0,0,0,290,8.8,10,10,6.4,370,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-1.7,85,101400,0,0,287,0,0,0,0,0,0,0,300,8.8,10,10,6.4,430,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-1.1,89,101500,0,0,288,0,0,0,0,0,0,0,300,7.2,10,10,8.0,430,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.1,-1.7,82,101500,0,0,290,0,0,0,0,0,0,0,290,7.7,10,10,11.3,910,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.1,-1.1,85,101500,41,1245,276,6,1,6,709,0,709,222,270,6.2,10,8,11.3,1220,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.1,-0.6,89,101500,147,1346,291,25,3,25,2867,0,2872,911,270,5.7,10,10,11.3,910,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.1,0.6,96,101600,255,1346,292,47,13,45,5398,246,5181,1709,260,3.6,10,10,8.0,430,9,999999999,9,0.0000,0,88,0.000,0.1,1.0 +1990,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,1.7,0.6,92,101600,356,1346,294,80,3,79,9081,131,8996,2986,270,5.7,10,10,8.0,1220,9,999999999,9,0.0000,0,88,0.000,0.1,1.0 +1990,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,2.2,0.6,89,101600,443,1346,297,71,4,70,8328,190,8233,2950,280,6.7,10,10,9.7,760,9,999999999,9,0.0000,0,88,0.000,0.1,1.0 +1990,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,2.8,1.1,89,101600,508,1346,300,81,7,79,9557,372,9347,3431,270,6.7,10,10,8.0,760,9,999999999,9,0.0000,0,88,0.000,0.1,1.0 +1990,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,2.8,1.7,93,101600,548,1346,300,97,2,96,11370,116,11289,4155,260,8.8,10,10,9.7,610,9,999999999,9,0.0000,0,88,0.000,0.1,1.0 +1990,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,2.8,1.7,93,101600,559,1346,300,115,3,114,13333,186,13266,4816,230,6.2,10,10,11.3,610,9,999999999,9,0.0000,0,88,0.000,0.1,1.0 +1990,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,2.2,1.1,93,101600,542,1346,297,103,2,103,11997,119,12038,4385,240,7.7,10,10,11.3,340,9,999999999,9,0.0000,0,88,0.000,0.1,1.0 +1990,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,2.2,1.1,93,101500,496,1346,297,83,2,82,9745,107,9656,3518,250,9.3,10,10,11.3,400,9,999999999,9,0.0000,0,88,0.000,0.1,1.0 +1990,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,1.7,0.6,92,101500,426,1346,294,73,1,73,8509,48,8533,3024,260,7.7,10,10,6.4,240,9,999999999,9,0.0000,0,88,0.000,0.1,1.0 +1990,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,2.2,1.1,93,101500,336,1346,297,54,1,54,6290,34,6304,2177,250,8.2,10,10,9.7,270,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.7,0.6,92,101500,232,1346,294,37,1,37,4289,13,4298,1428,280,8.8,10,10,4.8,270,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,2.2,0.6,89,101400,122,1346,297,19,0,19,1849,0,1862,707,260,10.3,10,10,4.8,270,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.7,0.6,92,101400,23,931,294,4,0,4,385,0,388,150,260,8.2,10,10,6.4,460,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,2.2,0.0,85,101400,0,0,296,0,0,0,0,0,0,0,260,9.3,10,10,3.2,730,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,2.2,0.6,89,101300,0,0,297,0,0,0,0,0,0,0,260,9.3,10,10,8.0,610,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,2.2,1.1,93,101300,0,0,297,0,0,0,0,0,0,0,260,9.8,10,10,6.4,610,9,999999999,8,0.0000,0,88,0.000,0.1,1.0 +1990,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,2.2,0.6,89,101300,0,0,297,0,0,0,0,0,0,0,290,9.8,10,10,6.4,490,9,999999999,8,0.0000,0,88,0.000,0.1,1.0 +1990,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,1.7,-0.6,85,101300,0,0,293,0,0,0,0,0,0,0,290,8.8,10,10,11.3,490,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,2.2,-0.6,82,101300,0,0,295,0,0,0,0,0,0,0,280,8.8,10,10,11.3,520,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.1,-1.1,85,101300,0,0,266,0,0,0,0,0,0,0,300,10.3,5,5,11.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.7,-2.8,73,101300,0,0,283,0,0,0,0,0,0,0,310,7.7,9,9,11.3,1680,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.1,-2.8,76,101300,0,0,288,0,0,0,0,0,0,0,320,7.2,10,10,11.3,1680,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-2.2,82,101300,35,1156,287,10,0,10,965,0,971,332,330,6.2,10,10,3.2,610,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-2.2,82,101300,139,1346,287,42,0,42,4094,0,4122,1301,350,6.2,10,10,3.2,610,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-2.8,85,101400,248,1346,281,82,1,82,8949,35,8983,2558,310,8.8,10,10,3.2,460,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.0,-3.3,79,101400,349,1346,275,133,47,120,14568,2683,13201,3881,300,9.8,10,9,8.0,610,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-2.8,85,101500,435,1346,281,118,4,117,13272,240,13211,4346,340,6.7,10,10,1.6,520,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-4.4,75,101500,500,1346,280,148,4,146,16621,277,16468,5447,320,8.8,10,10,8.0,760,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-5.0,75,101600,540,1346,277,166,7,163,18650,515,18397,6125,320,8.8,10,10,11.3,580,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-5.6,75,101700,551,1346,274,161,10,157,18195,726,17821,6053,320,6.7,10,10,11.3,550,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-4.4,78,101700,534,1346,278,192,9,188,21295,709,20954,6640,300,6.7,10,10,11.3,460,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-4.4,78,101700,488,1346,278,132,6,129,14941,392,14661,4957,310,7.7,10,10,11.3,550,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-5.6,72,101700,417,1346,276,126,4,124,14064,248,13898,4442,300,7.7,10,10,11.3,640,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-6.1,67,101700,327,1346,278,91,2,90,10163,94,10088,3174,310,7.7,10,10,11.3,790,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-6.7,64,101700,223,1346,277,62,1,62,6881,25,6903,2080,300,6.2,10,10,11.3,850,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-6.1,67,101600,113,1346,278,32,1,32,3545,0,3555,1035,310,5.7,10,10,11.3,850,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-6.1,67,101600,18,819,278,8,0,8,772,0,777,261,260,4.1,10,10,11.3,850,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-5.6,69,101600,0,0,278,0,0,0,0,0,0,0,250,3.6,10,10,11.3,850,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-4.4,75,101500,0,0,280,0,0,0,0,0,0,0,250,4.6,10,10,11.3,760,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-2.8,85,101500,0,0,281,0,0,0,0,0,0,0,180,4.6,10,10,11.3,760,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-2.2,89,101400,0,0,282,0,0,0,0,0,0,0,210,7.2,10,10,11.3,760,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-2.2,89,101400,0,0,282,0,0,0,0,0,0,0,190,7.7,10,10,4.8,760,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.0,-1.1,92,101300,0,0,286,0,0,0,0,0,0,0,200,7.2,10,10,11.3,150,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,2.2,-0.6,82,101300,0,0,295,0,0,0,0,0,0,0,270,6.2,10,10,11.3,1520,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,2.2,-0.6,82,101200,0,0,295,0,0,0,0,0,0,0,280,6.7,10,10,11.3,1370,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,2.2,-0.6,82,101200,0,0,295,0,0,0,0,0,0,0,260,7.2,10,10,11.3,1070,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,2.2,-0.6,82,101200,29,1044,295,8,0,8,771,0,776,271,260,7.7,10,10,11.3,1070,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,2.2,-0.6,82,101200,132,1347,295,38,0,38,3700,0,3725,1195,270,7.7,10,10,11.3,1070,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.7,-0.6,85,101200,240,1347,293,39,1,39,4507,14,4516,1494,270,7.7,10,10,11.3,610,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.7,0.6,92,101100,341,1347,294,105,0,105,10410,0,10489,3548,260,6.2,10,10,6.4,180,9,999999999,10,0.0000,0,88,0.000,0.2,1.0 +1990,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,2.2,0.6,89,101100,428,1347,297,85,0,85,8491,0,8557,3407,280,5.7,10,10,9.7,1070,9,999999999,10,0.0000,0,88,0.000,0.2,1.0 +1990,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,2.8,1.1,89,101100,493,1347,300,150,1,149,16765,68,16727,5469,270,7.2,10,10,11.3,1220,9,999999999,10,0.0000,0,88,0.000,0.1,1.0 +1990,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,3.3,1.1,86,101100,532,1347,302,170,0,170,17134,0,17274,6234,270,7.7,10,10,11.3,1070,9,999999999,10,0.0000,0,88,0.000,0.1,1.0 +1990,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,2.8,1.7,93,101100,544,1347,300,101,1,100,11791,59,11714,4284,270,7.2,10,10,8.0,240,9,999999999,10,0.0000,0,88,0.000,0.1,1.0 +1990,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,2.8,1.7,93,101100,526,1347,300,107,1,107,12379,60,12423,4462,270,7.2,10,10,9.7,240,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.3,1.1,86,101100,480,1347,302,95,1,94,10993,55,10913,3879,280,7.7,10,10,9.7,430,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.3,1.1,86,101100,409,1347,302,78,0,78,7781,0,7842,3142,270,9.8,10,10,9.7,430,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.3,0.6,82,101100,318,1347,301,60,0,60,5940,0,5985,2330,280,8.8,10,10,9.7,430,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.3,0.6,82,101100,214,1347,301,62,0,62,6083,0,6126,2043,270,7.2,10,10,9.7,430,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.3,1.1,86,101100,105,1347,302,19,0,19,1846,0,1858,686,270,7.7,10,10,9.7,460,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1990,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,2.8,1.1,89,101100,13,707,300,3,0,3,289,0,290,111,260,6.2,10,10,9.7,520,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,2.8,0.0,82,101100,0,0,299,0,0,0,0,0,0,0,260,8.2,10,10,9.7,760,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,2.8,0.0,82,101100,0,0,299,0,0,0,0,0,0,0,260,8.2,10,10,11.3,760,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,2.8,0.6,86,101100,0,0,299,0,0,0,0,0,0,0,250,6.2,10,10,11.3,760,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,2.8,0.0,82,101100,0,0,299,0,0,0,0,0,0,0,260,9.3,10,10,11.3,760,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,2.2,0.0,85,101100,0,0,296,0,0,0,0,0,0,0,250,6.7,10,10,11.3,760,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,2.2,0.0,85,101100,0,0,296,0,0,0,0,0,0,0,250,6.7,10,10,11.3,760,9,999999999,9,0.0000,0,88,0.000,0.3,1.0 +1990,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,2.2,-0.6,82,101100,0,0,295,0,0,0,0,0,0,0,250,6.7,10,10,11.3,760,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.7,-0.6,85,101000,0,0,269,0,0,0,0,0,0,0,240,5.7,5,5,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.7,0.0,89,101000,0,0,280,0,0,0,0,0,0,0,260,7.7,8,8,9.7,340,9,999999999,9,0.0000,0,88,0.000,0.3,1.0 +1990,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,2.2,-0.6,82,101000,24,955,287,5,1,5,583,0,584,180,250,5.2,10,9,11.3,340,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,2.2,-0.6,82,101000,124,1348,295,16,2,16,1876,0,1878,605,280,7.2,10,10,11.3,580,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,2.8,0.0,82,101000,233,1348,299,51,4,50,5759,71,5661,1797,240,6.7,10,10,11.3,700,9,999999999,9,0.0000,0,88,0.000,0.1,1.0 +1990,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,2.8,-0.6,79,101000,334,1348,298,35,8,33,4227,212,3990,1411,240,6.2,10,10,11.3,460,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,2.8,0.0,82,101000,420,1348,299,63,2,62,7419,88,7319,2616,240,6.2,10,10,8.0,210,9,999999999,9,0.0000,0,88,0.000,0.1,1.0 +1990,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,3.3,0.0,79,101000,485,1348,301,68,3,67,8086,149,7987,2934,250,7.7,10,10,6.4,370,9,999999999,9,0.0000,0,88,0.000,0.1,1.0 +1990,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,3.9,-0.6,73,101000,525,1348,303,105,1,105,12166,60,12209,4386,270,8.8,10,10,2.4,150,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.9,-0.6,73,101000,536,1348,303,94,2,93,11025,116,10942,4014,270,9.8,10,10,4.8,760,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,4.4,-1.1,68,101000,518,1348,296,157,39,142,17738,2651,16111,5460,280,10.3,10,9,11.3,880,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,4.4,-0.6,70,101000,471,1348,305,109,5,107,12465,293,12280,4254,270,8.2,10,10,11.3,820,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.9,-1.1,70,101000,401,1348,302,86,3,85,9843,149,9760,3332,260,8.2,10,10,11.3,460,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.9,-2.2,65,100900,310,1348,301,59,4,58,6785,133,6687,2246,270,7.2,10,10,11.3,460,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.3,-0.6,76,100900,206,1348,300,29,2,28,3402,6,3289,1096,270,8.8,10,10,4.8,210,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.3,-1.7,70,100900,96,1348,299,13,1,13,1529,0,1530,490,260,7.7,10,10,11.3,270,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.3,-1.1,73,100800,9,595,300,2,0,2,0,0,0,0,270,7.7,10,10,11.3,490,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.3,-1.7,70,100800,0,0,299,0,0,0,0,0,0,0,280,7.7,10,10,11.3,490,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.3,-1.1,73,100700,0,0,300,0,0,0,0,0,0,0,270,7.7,10,10,11.3,490,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.3,-1.7,70,100700,0,0,299,0,0,0,0,0,0,0,260,7.2,10,10,11.3,700,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.3,-0.6,76,100700,0,0,300,0,0,0,0,0,0,0,270,8.2,10,10,11.3,700,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.3,0.6,82,100700,0,0,301,0,0,0,0,0,0,0,260,8.8,10,10,11.3,820,9,999999999,9,0.0000,0,88,0.000,0.1,1.0 +1990,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,3.3,1.1,86,100700,0,0,302,0,0,0,0,0,0,0,270,8.8,10,10,11.3,580,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.9,1.7,86,100600,0,0,305,0,0,0,0,0,0,0,270,10.8,10,10,11.3,610,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.9,1.1,82,100600,0,0,305,0,0,0,0,0,0,0,280,8.8,10,10,11.3,610,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.9,1.7,86,100600,0,0,305,0,0,0,0,0,0,0,260,8.2,10,10,11.3,1830,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.3,2.2,93,100500,19,843,303,3,0,2,289,0,194,77,240,6.7,10,10,11.3,580,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.9,2.2,89,100500,117,1348,306,17,2,17,1973,0,1975,630,240,7.2,10,10,11.3,2130,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.3,2.2,93,100500,225,1348,303,61,2,60,6760,41,6671,2016,230,8.2,10,10,11.3,1490,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.9,2.2,89,100400,326,1348,297,134,97,110,14657,4939,12082,3546,240,8.2,10,9,11.3,2130,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.3,2.2,93,100400,413,1348,303,105,8,102,11854,429,11558,3843,230,7.2,10,10,11.3,150,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.3,2.8,96,100400,478,1348,304,97,3,96,11185,165,11107,3924,240,7.2,10,10,11.3,90,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.9,2.8,93,100400,517,1348,306,149,6,147,16758,407,16606,5575,250,5.7,10,10,11.3,760,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.9,2.2,89,100400,528,1348,306,174,4,172,19375,294,19244,6247,280,7.7,10,10,11.3,760,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,2.8,0.0,82,100400,509,1348,299,133,2,133,15073,131,15135,5172,280,9.8,10,10,11.3,370,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.7,-1.1,82,100400,463,1348,293,129,8,126,14530,504,14250,4743,270,11.3,10,10,11.3,400,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,2.2,-1.1,79,100300,392,1348,295,121,2,120,13435,118,13379,4198,280,10.3,10,10,11.3,700,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,2.2,0.0,85,100300,301,1348,296,94,1,94,10358,45,10398,3126,270,10.8,10,10,8.0,310,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,2.2,-1.1,79,100200,197,1348,273,75,94,60,8242,1735,6616,1925,270,10.3,8,6,11.3,700,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.7,0.0,89,100100,87,1348,286,15,16,14,1742,0,1628,515,270,9.3,9,9,11.3,460,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.7,-0.6,85,100100,6,483,279,1,7,1,0,0,0,0,240,8.8,8,8,11.3,580,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.7,-0.6,85,100000,0,0,275,0,0,0,0,0,0,0,240,8.2,10,7,11.3,850,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.1,0.0,92,100000,0,0,277,0,0,0,0,0,0,0,250,12.9,10,8,11.3,760,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,2.2,-1.1,79,99900,0,0,295,0,0,0,0,0,0,0,250,11.3,10,10,11.3,760,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.1,0.0,92,99800,0,0,291,0,0,0,0,0,0,0,210,6.7,10,10,11.3,460,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.1,0.0,92,99700,0,0,291,0,0,0,0,0,0,0,210,8.8,10,10,11.3,1070,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.7,0.6,92,99600,0,0,294,0,0,0,0,0,0,0,200,9.3,10,10,11.3,270,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.7,0.6,92,99500,0,0,294,0,0,0,0,0,0,0,210,8.2,10,10,11.3,270,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,2.2,1.1,93,99400,0,0,297,0,0,0,0,0,0,0,220,8.2,10,10,11.3,1070,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,2.8,1.7,93,99300,0,0,300,0,0,0,0,0,0,0,220,8.8,10,10,11.3,980,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.3,1.7,89,99200,15,753,303,0,0,0,0,0,0,0,220,9.3,10,10,11.3,1070,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.9,1.1,82,99200,109,1349,305,11,2,11,1314,0,1315,426,240,7.7,10,10,11.3,1830,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.3,1.7,89,99200,218,1349,303,22,2,22,2633,1,2635,892,220,7.7,10,10,11.3,790,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.9,0.6,79,99100,319,1349,304,43,2,43,5064,55,5074,1759,220,10.3,10,10,11.3,880,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.3,0.6,82,99100,405,1349,301,52,1,52,6182,40,6195,2223,220,11.8,10,10,11.3,1340,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.3,1.1,86,99100,470,1349,302,67,6,65,7955,287,7736,2827,220,10.8,10,10,11.3,1010,9,999999999,10,0.0000,0,88,0.000,0.1,1.0 +1990,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,4.4,1.7,82,99000,509,1349,307,90,2,89,10521,110,10437,3791,220,10.3,10,10,11.3,1370,9,999999999,11,0.0000,0,88,0.000,0.1,1.0 +1990,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,5.0,2.2,83,99000,520,1349,311,107,4,106,12367,237,12295,4403,220,10.3,10,10,11.3,610,9,999999999,11,0.0000,0,88,0.000,0.1,1.0 +1990,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,5.0,2.2,83,99000,501,1349,311,171,1,170,18945,73,18925,6004,240,7.7,10,10,11.3,1520,9,999999999,11,0.0000,0,88,0.000,0.1,1.0 +1990,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,5.0,2.2,83,99000,455,1349,296,135,87,105,15385,4924,12010,4125,220,8.8,8,8,11.3,610,9,999999999,11,0.0000,0,88,0.000,0.1,1.0 +1990,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,5.6,1.7,76,99000,383,1349,304,87,36,76,9992,1616,8756,3002,220,9.3,9,9,11.3,1680,9,999999999,11,0.0000,0,88,0.000,0.1,1.0 +1990,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,4.4,2.2,86,99000,292,1349,283,110,85,91,12109,3576,10056,3016,220,9.3,9,5,11.3,7010,9,999999999,11,0.0000,0,88,0.000,0.1,1.0 +1990,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,4.4,1.7,82,99000,188,1349,288,60,25,56,6599,352,6179,1806,210,8.2,9,7,11.3,1680,9,999999999,11,0.0000,0,88,0.000,0.1,1.0 +1990,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,3.3,1.1,86,99000,79,1349,287,15,1,15,1721,0,1723,536,200,6.2,9,8,11.3,7010,9,999999999,11,0.0000,0,88,0.000,0.1,1.0 +1990,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,2.8,1.1,89,99000,3,371,281,0,2,0,0,0,0,0,200,5.7,9,7,11.3,2900,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.3,1.7,89,99100,0,0,280,0,0,0,0,0,0,0,190,6.7,8,6,11.3,2590,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.3,1.7,89,99100,0,0,288,0,0,0,0,0,0,0,190,5.7,10,8,11.3,2440,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1990,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,2.8,2.2,96,99100,0,0,286,0,0,0,0,0,0,0,170,4.1,10,8,11.3,3050,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1990,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,2.8,2.2,96,99100,0,0,301,0,0,0,0,0,0,0,160,4.1,10,10,11.3,580,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1990,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,2.2,1.7,96,99000,0,0,283,0,0,0,0,0,0,0,150,4.6,10,8,11.3,1010,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.1,0.6,96,99000,0,0,274,0,0,0,0,0,0,0,130,5.2,10,7,11.3,1680,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1990,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,2.8,1.7,93,98900,0,0,286,0,0,0,0,0,0,0,160,7.2,10,8,11.3,1520,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.3,1.1,86,98900,0,0,283,0,0,0,0,0,0,0,170,7.2,9,7,11.3,1520,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1990,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,2.8,0.6,86,98900,0,0,280,0,0,0,0,0,0,0,180,7.7,10,7,11.3,3660,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.9,0.0,76,99000,11,664,289,0,1,0,0,0,0,0,200,7.7,10,8,11.3,2440,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.9,0.6,79,99000,102,1350,304,10,4,10,1198,0,1198,387,200,6.2,10,10,11.3,2130,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.3,0.6,82,99000,210,1350,301,29,1,29,3387,3,3393,1126,180,5.2,10,10,11.3,2130,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.3,1.1,86,99100,311,1350,302,45,0,45,4449,0,4482,1815,170,3.6,10,10,11.3,2440,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.3,1.7,89,99100,397,1350,303,56,4,55,6614,159,6510,2319,180,5.7,10,10,11.3,1430,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.9,1.7,86,99100,462,1350,305,80,2,80,9327,102,9354,3346,170,4.1,10,10,11.3,2900,9,999999999,12,0.0000,0,88,0.000,0.1,1.0 +1990,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,5.0,1.7,79,99200,501,1350,310,126,4,125,14310,252,14253,4897,180,6.2,10,10,11.3,2440,9,999999999,12,0.0000,0,88,0.000,0.1,1.0 +1990,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,6.1,1.7,74,99200,512,1350,315,154,3,153,17251,208,17216,5693,170,4.1,10,10,11.3,1980,9,999999999,12,0.0000,0,88,0.000,0.1,1.0 +1990,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,6.7,1.1,68,99200,493,1350,297,231,289,123,26235,18075,14024,4809,180,6.2,9,7,11.3,2900,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1990,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,7.8,1.7,66,99200,446,1350,307,151,55,133,16848,3487,14903,4816,180,6.2,9,8,11.3,2900,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1990,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,7.8,1.7,66,99300,375,1350,307,123,74,102,13762,3838,11455,3687,190,5.2,9,8,11.3,2900,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1990,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,7.2,2.8,74,99300,283,1350,312,64,20,60,7266,584,6832,2234,180,3.6,10,9,11.3,3350,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1990,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,5.6,2.8,83,99300,179,1350,299,60,91,47,6665,644,5236,1579,170,3.6,9,8,11.3,3050,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.9,2.2,89,99300,70,1350,297,16,0,16,1549,0,1559,552,170,3.6,10,9,11.3,1830,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1990,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,4.4,2.2,86,99400,6,259,285,1,0,1,0,0,0,0,180,5.7,10,6,11.3,4270,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.9,1.7,86,99400,0,0,276,0,0,0,0,0,0,0,200,6.7,5,3,11.3,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1990,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,2.2,1.1,93,99500,0,0,271,0,0,0,0,0,0,0,180,4.6,5,4,11.3,77777,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1990,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,2.8,1.7,93,99500,0,0,272,0,0,0,0,0,0,0,220,8.2,6,3,11.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.3,2.2,93,99600,0,0,289,0,0,0,0,0,0,0,260,6.7,8,8,11.3,210,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1990,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,2.2,1.1,93,99600,0,0,271,0,0,0,0,0,0,0,240,4.1,7,4,11.3,240,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1990,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,2.2,1.1,93,99600,0,0,275,0,0,0,0,0,0,0,270,4.6,6,6,11.3,340,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1990,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,2.8,1.7,93,99600,0,0,274,0,0,0,0,0,0,0,320,2.6,5,4,11.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.0,-1.1,92,99700,0,0,264,0,0,0,0,0,0,0,130,3.6,8,6,11.3,4570,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.0,-0.6,96,99600,0,0,265,0,0,0,0,0,0,0,130,3.1,10,6,11.3,90,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-1.1,96,99600,8,552,262,2,2,2,0,0,0,0,110,4.1,10,6,3.2,1070,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,0.0,96,99600,94,1351,289,13,1,13,1518,0,1519,483,70,3.6,10,10,2.0,1830,9,999999999,11,0.0000,0,88,0.000,0.1,1.0 +1990,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,1.7,1.7,100,99600,202,1351,296,36,22,33,4147,64,3809,1242,90,4.1,10,10,0.6,90,9,999999999,11,0.0000,0,88,0.000,0.2,1.0 +1990,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,2.8,2.2,96,99500,303,1351,301,38,1,37,4504,23,4392,1524,80,5.2,10,10,6.4,850,9,999999999,12,0.0000,0,88,0.000,0.2,1.0 +1990,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,3.3,2.8,96,99500,389,1351,304,59,9,57,6932,352,6713,2376,90,5.2,10,10,6.4,820,9,999999999,12,0.0000,0,88,0.000,0.2,1.0 +1990,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,3.9,3.3,96,99500,454,1351,307,62,2,61,7365,90,7263,2646,90,5.2,10,10,6.4,820,9,999999999,12,0.0000,0,88,0.000,0.5,1.0 +1990,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,3.9,3.3,96,99500,493,1351,307,87,7,85,10165,371,9961,3606,90,5.2,10,10,6.4,760,9,999999999,13,0.0000,0,88,0.000,0.5,1.0 +1990,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,4.4,3.3,93,99400,504,1351,309,87,2,86,10181,108,10095,3672,60,6.2,10,10,11.3,820,9,999999999,13,0.0000,0,88,0.000,0.5,1.0 +1990,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,5.0,3.3,89,99400,485,1351,303,151,82,121,17126,5008,13777,4712,70,7.2,10,9,11.3,2440,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1990,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,6.1,4.4,89,99400,438,1351,303,215,167,160,23550,11528,17609,5299,90,6.2,8,8,11.3,2130,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1990,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,5.0,2.8,86,99400,366,1351,292,139,169,91,15652,8048,10284,3368,90,7.2,7,7,11.3,910,9,999999999,13,0.0000,0,88,0.000,0.0,1.0 +1990,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,5.0,2.8,86,99400,275,1351,279,147,410,60,16639,11512,6811,2208,100,6.2,2,2,11.3,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.9,2.2,89,99400,170,1351,274,83,288,43,9248,931,4805,1457,100,4.1,2,2,11.3,77777,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1990,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,2.2,1.7,96,99500,61,1351,283,20,15,19,2216,0,2110,610,100,3.1,8,8,11.3,1220,9,999999999,12,0.0000,0,88,0.000,0.0,1.0 +1990,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,2.8,2.2,96,99500,6,146,301,1,0,1,0,0,0,0,130,2.6,10,10,11.3,1220,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1990,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,2.8,2.2,96,99600,0,0,282,0,0,0,0,0,0,0,160,4.1,10,7,11.3,1070,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.9,3.3,96,99600,0,0,288,0,0,0,0,0,0,0,210,4.6,8,7,11.3,1070,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.3,3.3,100,99700,0,0,304,0,0,0,0,0,0,0,260,7.7,10,10,0.8,60,9,999999999,11,0.0000,0,88,0.000,0.0,1.0 +1990,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,2.8,2.2,96,99800,0,0,301,0,0,0,0,0,0,0,240,6.7,10,10,9.7,240,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.3,1.1,86,99900,0,0,294,0,0,0,0,0,0,0,260,8.2,9,9,11.3,1190,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.3,1.1,86,99900,0,0,302,0,0,0,0,0,0,0,260,8.2,10,10,11.3,400,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.3,1.1,86,100000,0,0,302,0,0,0,0,0,0,0,280,9.3,10,10,11.3,400,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.3,1.1,86,100100,0,0,302,0,0,0,0,0,0,0,270,7.2,10,10,11.3,430,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.3,0.0,79,100100,0,0,286,0,0,0,0,0,0,0,280,6.7,10,8,11.3,610,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,2.8,0.0,82,100200,6,462,280,2,5,2,0,0,0,0,270,5.2,9,7,11.3,3050,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,2.8,0.0,82,100300,87,1351,284,21,3,21,2346,0,2351,696,280,4.1,8,8,11.3,7010,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,2.2,1.1,93,100300,195,1351,271,57,111,40,6445,591,4534,1428,200,3.6,8,4,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.3,2.2,93,100400,296,1351,295,73,33,66,8243,1071,7475,2419,210,5.7,10,9,11.3,460,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.3,2.2,93,100500,382,1351,303,74,12,70,8538,509,8100,2794,210,5.7,10,10,11.3,790,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.9,2.2,89,100600,446,1351,297,170,59,150,18761,3977,16630,5156,230,5.2,10,9,11.3,790,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,5.0,0.6,73,100600,485,1351,294,164,66,139,18402,4364,15663,5179,230,5.2,8,8,11.3,3050,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,5.6,0.6,71,100700,495,1351,297,294,404,142,33017,27087,16016,5319,250,5.2,8,8,11.3,3660,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,4.4,1.1,79,100800,476,1351,292,184,163,125,20786,10189,14178,4779,260,3.6,8,8,11.3,3960,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,5.0,1.7,79,100900,429,1351,295,165,78,140,18250,5045,15554,4855,240,3.1,8,8,11.3,3960,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,5.6,0.0,68,100900,357,1351,283,174,299,92,19542,14414,10370,3356,230,4.6,5,4,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,6.1,0.0,65,101000,266,1351,287,113,234,65,12677,6986,7315,2310,230,2.6,5,5,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,5.0,0.0,70,101000,161,1351,279,66,198,40,7369,55,4478,1358,210,3.6,3,3,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.7,-0.6,85,101100,53,1351,267,21,119,15,2354,0,1685,498,200,3.6,4,4,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-1.1,89,101200,12,34,254,2,4,1,0,0,0,0,210,4.1,1,1,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-2.2,92,101300,0,0,242,0,0,0,0,0,0,0,200,5.2,0,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-2.2,89,101300,0,0,244,0,0,0,0,0,0,0,180,5.2,0,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-2.8,89,101400,0,0,242,0,0,0,0,0,0,0,200,4.6,0,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-3.9,85,101500,0,0,239,0,0,0,0,0,0,0,200,4.6,0,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-2.2,-3.3,92,101500,0,0,238,0,0,0,0,0,0,0,180,4.1,0,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-2.2,-3.3,92,101600,0,0,238,0,0,0,0,0,0,0,190,4.6,0,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-2.2,89,101600,0,0,244,0,0,0,0,0,0,0,180,5.2,0,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.3,-4.4,92,101600,0,0,233,0,0,0,0,0,0,0,160,4.1,0,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-2.8,-3.9,92,101700,0,0,235,0,0,0,0,0,0,0,160,3.6,0,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-4.4,96,101700,30,372,231,5,42,2,0,0,0,0,140,4.1,0,0,16.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-2.2,96,101700,79,1352,248,30,160,19,3359,0,2132,632,130,4.1,3,2,16.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-0.6,92,101700,187,1352,250,98,494,27,11399,0,3146,1030,130,3.6,0,0,16.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,3.3,-0.6,76,101700,288,1352,260,171,624,34,20312,12526,4045,1396,130,3.6,0,0,16.1,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,5.6,0.6,71,101800,374,1352,270,238,694,41,25536,62605,6469,940,120,3.6,1,0,16.1,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,6.1,0.0,65,101700,438,1352,271,288,705,54,34433,30540,6470,2353,110,5.2,4,0,16.1,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,6.7,1.7,71,101700,477,1352,275,322,741,54,38835,33742,6526,2415,80,5.7,3,0,16.1,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,6.7,0.6,65,101700,487,1352,274,333,742,59,40002,35409,7103,2630,90,6.2,4,0,16.1,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,5.6,0.0,68,101700,468,1352,275,289,669,51,34963,30010,6182,2285,90,6.7,4,1,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,4.4,1.1,79,101700,421,1352,277,267,594,77,30931,28474,8947,3138,90,6.7,6,3,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,4.4,1.1,79,101700,349,1352,277,181,441,63,20897,16777,7293,2496,100,6.7,7,3,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,4.4,0.6,76,101700,257,1352,279,100,133,74,11061,4298,8214,2484,100,7.7,9,4,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,2.8,0.0,82,101700,152,1352,270,63,101,50,6872,516,5472,1534,90,7.7,8,3,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,2.2,-0.6,82,101700,45,1273,264,19,109,14,2123,0,1568,459,90,8.2,6,2,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.7,-0.6,85,101700,0,0,262,0,0,0,0,0,0,0,90,7.7,5,2,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.7,0.0,89,101600,0,0,255,0,0,0,0,0,0,0,90,8.2,2,0,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.7,0.0,89,101700,0,0,255,0,0,0,0,0,0,0,90,7.7,2,0,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.7,-0.6,85,101700,0,0,254,0,0,0,0,0,0,0,90,9.3,0,0,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.7,0.0,89,101600,0,0,255,0,0,0,0,0,0,0,80,8.2,0,0,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.7,0.0,89,101600,0,0,263,0,0,0,0,0,0,0,80,8.8,3,2,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.7,0.0,89,101600,0,0,263,0,0,0,0,0,0,0,80,9.8,3,2,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.7,-0.6,85,101600,0,0,262,0,0,0,0,0,0,0,90,9.8,3,2,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.7,-0.6,85,101600,0,0,262,0,0,0,0,0,0,0,80,10.3,3,2,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.1,-1.1,85,101600,0,0,256,0,0,0,0,0,0,0,80,10.3,2,1,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.1,-1.1,85,101600,12,282,282,2,1,1,0,0,0,0,70,12.9,10,9,11.3,400,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.1,-1.1,85,101600,72,1353,290,15,20,13,1720,0,1493,461,70,11.8,10,10,11.3,340,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.1,-1.1,85,101500,179,1353,290,39,5,39,4389,11,4400,1363,70,12.4,10,10,11.3,310,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.7,-0.6,85,101500,280,1353,293,75,9,73,8361,308,8165,2537,70,11.3,10,10,11.3,310,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.7,-0.6,85,101500,366,1353,293,90,8,88,10157,379,9966,3268,70,12.9,10,10,16.1,310,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.7,-1.1,82,101500,431,1353,293,123,1,123,13753,61,13810,4465,70,13.4,10,10,16.1,310,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-2.2,82,101500,469,1353,287,126,5,124,14223,315,14054,4704,70,12.9,10,10,16.1,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-1.7,85,101500,479,1353,287,131,3,130,14767,194,14715,4918,70,13.9,10,10,16.1,240,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-1.1,89,101500,459,1353,288,130,2,129,14595,127,14543,4789,70,12.9,10,10,11.3,210,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-1.7,85,101400,412,1353,287,124,1,124,13802,61,13859,4398,70,12.9,10,10,11.3,240,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-1.1,89,101400,340,1353,288,108,1,108,11910,52,11958,3625,80,12.4,10,10,11.3,240,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-1.1,89,101400,248,1353,288,76,0,75,7481,0,7436,2461,70,12.9,10,10,11.3,210,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-1.7,85,101400,143,1353,287,40,0,40,3902,0,3929,1302,70,12.9,10,10,11.3,270,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-1.1,89,101400,37,1161,288,10,0,10,966,0,972,344,70,12.4,10,10,11.3,270,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-1.1,89,101500,0,0,288,0,0,0,0,0,0,0,70,10.3,10,10,11.3,310,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.0,-2.2,85,101500,0,0,284,0,0,0,0,0,0,0,70,11.8,10,10,9.7,430,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.0,-1.7,89,101500,0,0,285,0,0,0,0,0,0,0,70,10.3,10,10,9.7,370,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-2.2,89,101500,0,0,282,0,0,0,0,0,0,0,70,11.3,10,10,9.7,240,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-2.2,89,101500,0,0,282,0,0,0,0,0,0,0,70,10.3,10,10,9.7,240,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.0,-1.7,89,101500,0,0,285,0,0,0,0,0,0,0,70,10.3,10,10,11.3,240,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-1.7,85,101500,0,0,287,0,0,0,0,0,0,0,80,10.3,10,10,11.3,240,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.0,-1.1,92,101500,0,0,286,0,0,0,0,0,0,0,70,9.3,10,10,4.8,240,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.0,-1.1,92,101500,0,0,286,0,0,0,0,0,0,0,70,9.3,10,10,11.3,670,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-0.6,92,101500,0,0,289,0,0,0,0,0,0,0,70,9.3,10,10,11.3,340,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-1.1,89,101500,6,169,288,1,0,1,0,0,0,0,90,9.3,10,10,11.3,820,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-0.6,92,101600,64,1354,289,14,0,14,1355,0,1364,479,90,8.8,10,10,4.8,370,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.1,-0.6,89,101600,171,1354,269,55,11,54,6001,109,5912,1662,80,8.2,10,6,11.3,6100,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.1,-0.6,89,101600,272,1354,291,37,3,37,4343,56,4351,1480,80,10.8,10,10,11.3,880,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-0.6,92,101600,358,1354,289,57,0,57,5661,0,5704,2311,80,10.3,10,10,6.4,610,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-0.6,92,101700,423,1354,289,78,4,77,9036,193,8947,3133,70,9.8,10,10,6.4,880,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.7,0.0,89,101600,461,1354,294,129,2,129,14477,127,14537,4787,70,10.3,10,10,11.3,850,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.7,0.0,89,101700,471,1354,294,139,5,137,15564,328,15405,5044,70,10.3,10,10,11.3,880,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.7,0.0,89,101600,451,1354,294,113,5,112,12802,294,12737,4299,70,10.3,10,10,11.3,880,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.1,0.0,92,101700,403,1354,291,114,4,113,12750,228,12688,4092,70,10.8,10,10,11.3,910,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.7,0.0,89,101700,331,1354,294,78,0,78,7731,0,7789,2882,70,10.3,10,10,11.3,940,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.7,-0.6,85,101700,239,1354,293,58,0,58,5704,0,5745,2041,70,10.8,10,10,11.3,980,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.1,-0.6,89,101700,134,1354,291,33,0,33,3216,0,3238,1115,80,9.8,10,10,11.3,910,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.1,-0.6,89,101700,30,1049,291,11,0,11,1061,0,1068,358,70,9.8,10,10,11.3,910,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,0.0,96,101700,0,0,289,0,0,0,0,0,0,0,70,10.8,10,10,8.0,910,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.1,0.0,92,101700,0,0,291,0,0,0,0,0,0,0,80,10.8,10,10,11.3,490,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-0.6,92,101800,0,0,289,0,0,0,0,0,0,0,80,10.3,10,10,11.3,460,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.1,-0.6,89,101800,0,0,291,0,0,0,0,0,0,0,80,10.3,10,10,11.3,730,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.1,-0.6,89,101800,0,0,291,0,0,0,0,0,0,0,80,9.8,10,10,11.3,490,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.1,-0.6,89,101800,0,0,291,0,0,0,0,0,0,0,80,8.8,10,10,11.3,460,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-0.6,92,101800,0,0,289,0,0,0,0,0,0,0,90,9.8,10,10,11.3,460,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.1,-0.6,89,101800,0,0,291,0,0,0,0,0,0,0,90,8.8,10,10,11.3,400,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.1,-0.6,89,101800,0,0,291,0,0,0,0,0,0,0,90,9.3,10,10,11.3,340,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-1.1,89,101800,0,0,288,0,0,0,0,0,0,0,90,10.3,10,10,11.3,760,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-1.1,89,101800,0,79,274,0,0,0,0,0,0,0,90,8.8,10,8,11.3,820,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-1.1,89,101800,57,1354,280,11,4,11,1260,0,1262,387,80,9.3,10,9,11.3,880,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-0.6,92,101800,164,1354,289,48,4,47,5277,16,5183,1496,80,8.8,10,10,11.3,820,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-0.6,92,101800,265,1354,289,49,5,48,5619,110,5518,1819,80,9.3,10,10,11.3,820,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.1,-0.6,89,101800,350,1354,291,67,2,66,7703,78,7609,2582,80,10.8,10,10,11.3,820,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,1.1,-0.6,89,101800,414,1354,291,129,1,128,14313,62,14262,4479,70,11.8,10,10,8.0,610,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-1.1,89,101800,453,1354,288,135,6,133,15086,386,14925,4834,70,11.8,10,10,6.4,610,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-1.1,89,101800,462,1354,288,132,2,132,14798,129,14860,4872,70,10.8,10,10,8.0,820,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-1.1,89,101700,442,1354,288,137,2,136,15248,130,15202,4848,70,10.8,10,10,9.7,850,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.6,-1.7,85,101700,395,1354,287,133,1,133,14647,63,14711,4467,70,10.8,10,10,11.3,850,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.0,-2.2,85,101700,322,1354,284,105,2,105,11544,101,11591,3456,70,9.8,10,10,11.3,820,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.0,-2.2,85,101700,230,1354,284,72,0,72,7078,0,7129,2311,60,8.8,10,10,11.3,820,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,0.0,-3.3,79,101700,125,1354,283,33,0,33,3215,0,3237,1091,70,10.8,10,10,11.3,820,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-3.3,82,101700,24,937,281,9,0,9,868,0,874,297,60,10.3,10,10,11.3,820,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-3.3,85,101700,0,0,258,0,0,0,0,0,0,0,60,8.8,7,6,11.3,820,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-3.3,85,101700,0,0,279,0,0,0,0,0,0,0,80,7.7,10,10,11.3,520,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-3.9,82,101700,0,0,278,0,0,0,0,0,0,0,70,9.3,10,10,11.3,460,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-5.0,78,101800,0,0,275,0,0,0,0,0,0,0,70,7.2,10,10,11.3,520,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-2.2,-4.4,85,101700,0,0,273,0,0,0,0,0,0,0,60,7.2,10,10,11.3,400,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-2.2,-3.9,89,101700,0,0,274,0,0,0,0,0,0,0,60,6.7,10,10,11.3,400,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-2.2,-4.4,85,101700,0,0,273,0,0,0,0,0,0,0,70,6.7,10,10,11.3,340,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-2.2,-4.4,85,101700,0,0,273,0,0,0,0,0,0,0,50,7.2,10,10,11.3,370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-2.2,-4.4,85,101700,0,0,273,0,0,0,0,0,0,0,50,6.7,10,10,11.3,430,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-2.2,-4.4,85,101700,0,0,273,0,0,0,0,0,0,0,50,7.2,10,10,11.3,340,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-2.8,-4.4,89,101700,0,0,271,0,0,0,0,0,0,0,40,5.7,10,10,11.3,400,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-2.2,-4.4,85,101700,49,1344,273,11,0,11,1064,0,1071,379,50,5.7,10,10,11.3,400,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-2.8,-5.0,85,101600,156,1355,270,38,0,38,3712,0,3738,1275,60,5.7,10,10,11.3,400,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-2.8,-5.0,85,101600,257,1355,270,71,0,71,6997,0,7048,2389,40,4.1,10,10,11.3,400,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-2.8,-5.6,81,101600,342,1355,270,104,1,104,11507,52,11553,3529,60,3.1,10,10,11.3,430,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-2.8,-4.4,89,101500,406,1355,271,127,0,127,12679,0,12777,4405,20,6.2,10,10,8.0,580,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-2.8,-4.4,89,101500,445,1355,271,130,1,130,14534,64,14595,4713,40,6.7,10,10,6.4,640,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.3,-5.0,88,101500,454,1355,268,82,1,82,9539,53,9567,3392,20,5.7,10,10,8.0,460,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.3,-6.1,81,101400,434,1355,267,141,1,141,15628,67,15697,4896,20,5.2,10,10,11.3,460,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.3,-6.7,78,101400,386,1355,266,105,0,105,10472,0,10552,3807,20,4.1,10,10,11.3,460,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-6.1,85,101300,313,1355,265,94,1,93,10417,47,10345,3163,50,4.1,10,10,11.3,370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-6.1,85,101200,221,1355,265,62,0,62,6096,0,6140,2066,40,4.6,10,10,11.3,370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-6.7,81,101200,116,1355,264,31,0,31,3020,0,3041,1020,60,3.6,10,10,11.3,370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-4.4,-6.7,85,101200,18,824,262,8,0,8,772,0,777,262,80,4.6,10,10,11.3,370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-4.4,-6.7,85,101100,0,0,262,0,0,0,0,0,0,0,70,3.6,10,10,11.3,400,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-4.4,-6.7,85,101000,0,0,262,0,0,0,0,0,0,0,50,5.7,10,10,11.3,340,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-4.4,-6.7,85,101000,0,0,262,0,0,0,0,0,0,0,60,5.2,10,10,11.3,370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-4.4,-7.2,81,100900,0,0,262,0,0,0,0,0,0,0,50,5.2,10,10,11.3,370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-6.7,81,100900,0,0,264,0,0,0,0,0,0,0,50,5.2,10,10,11.3,370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-6.1,85,100800,0,0,265,0,0,0,0,0,0,0,50,5.2,10,10,11.3,370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-6.1,85,100800,0,0,265,0,0,0,0,0,0,0,60,5.2,10,10,11.3,370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-6.1,85,100700,0,0,265,0,0,0,0,0,0,0,70,4.6,10,10,11.3,370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-6.1,85,100600,0,0,265,0,0,0,0,0,0,0,50,4.1,10,10,11.3,370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-4.4,-6.7,85,100600,0,0,262,0,0,0,0,0,0,0,50,5.2,10,10,11.3,400,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-4.4,-6.7,85,100500,0,0,262,0,0,0,0,0,0,0,70,4.1,10,10,11.3,370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-4.4,-6.7,85,100500,42,1232,262,11,0,11,1064,0,1071,369,70,3.1,10,10,11.3,400,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-6.7,81,100500,148,1356,264,41,0,41,4004,0,4031,1316,80,2.1,10,10,11.3,400,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-6.7,81,100400,249,1356,264,76,1,76,8355,33,8386,2453,90,2.6,10,10,11.3,400,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-6.7,81,100400,334,1356,264,100,0,100,9926,0,10000,3399,0,0.0,10,10,11.3,370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-6.7,81,100400,398,1356,264,127,0,127,12676,0,12774,4351,0,0.0,10,10,11.3,400,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.3,-6.1,81,100300,436,1356,267,138,1,137,15334,66,15289,4816,220,1.0,10,10,11.3,370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.3,-6.1,81,100300,445,1356,267,140,0,140,14031,0,14141,4948,230,1.5,10,10,11.3,370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.3,-6.7,78,100300,425,1356,266,136,1,135,15095,65,15048,4712,190,3.1,10,10,11.3,400,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.3,-6.7,78,100300,377,1356,266,131,0,131,13056,0,13155,4301,330,2.1,10,10,11.3,400,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.3,-5.6,85,100300,304,1356,268,95,0,95,9407,0,9477,3154,200,2.6,10,10,11.3,340,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.3,-5.6,85,100200,212,1356,268,62,1,62,6844,23,6866,2027,180,3.1,10,10,11.3,340,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.3,-5.6,85,100200,107,1356,268,35,0,35,3407,0,3430,1073,180,4.6,10,10,11.3,430,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-6.1,85,100200,14,712,265,5,0,5,482,0,485,174,180,3.6,10,10,11.3,430,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-6.1,85,100200,0,0,265,0,0,0,0,0,0,0,170,4.1,10,10,11.3,340,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-6.1,85,100200,0,0,265,0,0,0,0,0,0,0,180,3.1,10,10,11.3,340,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-6.1,85,100100,0,0,265,0,0,0,0,0,0,0,180,4.6,10,10,11.3,340,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-6.1,85,100100,0,0,265,0,0,0,0,0,0,0,190,3.1,10,10,11.3,1520,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-5.6,88,100100,0,0,265,0,0,0,0,0,0,0,190,3.1,10,10,11.3,3960,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-5.6,88,100100,0,0,265,0,0,0,0,0,0,0,180,3.1,10,10,11.3,3960,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-5.0,-6.1,92,100100,0,0,237,0,0,0,0,0,0,0,190,3.1,8,4,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-5.6,88,100100,0,0,252,0,0,0,0,0,0,0,190,5.2,10,8,11.3,400,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.3,-5.6,85,100000,0,0,268,0,0,0,0,0,0,0,190,3.6,10,10,11.3,340,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-5.6,88,100000,0,0,258,0,0,0,0,0,0,0,190,3.6,10,9,11.3,370,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-5.0,-6.1,92,100000,0,0,248,0,0,0,0,0,0,0,170,3.6,9,8,11.3,6100,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-5.0,92,100000,36,1142,266,10,0,10,966,0,972,334,170,3.6,10,10,11.3,310,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-5.6,88,100000,140,1357,252,33,18,31,3709,0,3493,1063,170,3.1,10,8,11.3,310,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-2.8,-5.0,85,99900,241,1357,250,94,124,71,10357,3691,7850,2315,160,4.1,8,6,11.3,1680,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-2.2,-5.0,82,99900,326,1357,255,107,106,80,12034,4511,9028,2896,150,3.6,10,7,11.3,1680,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-2.2,-4.4,85,99900,390,1357,260,154,140,112,17174,7979,12539,3976,160,3.6,10,8,11.3,1520,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-5.0,75,99800,428,1357,260,170,61,150,18703,4206,16578,5011,120,3.6,10,7,11.3,1520,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-4.4,78,99800,437,1357,253,191,253,107,21656,14671,12177,4091,140,3.6,10,4,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-3.9,79,99700,417,1357,267,191,89,162,20820,6383,17744,5123,130,3.6,10,8,11.3,1370,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-2.8,85,99700,368,1357,281,93,17,88,10518,823,9987,3289,90,4.1,10,10,11.3,240,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-2.2,89,99600,295,1357,268,88,44,77,9838,1685,8637,2714,80,4.1,10,8,8.0,240,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-2.2,89,99600,203,1357,282,39,6,38,4459,48,4355,1403,80,3.6,10,10,4.8,4270,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-1.7,96,99500,98,1357,267,22,10,21,2493,0,2385,731,70,3.1,10,8,4.8,400,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-2.2,92,99500,10,599,266,4,5,3,0,0,0,0,80,4.6,10,8,4.8,400,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-2.2,92,99500,0,0,266,0,0,0,0,0,0,0,60,5.7,10,8,4.8,400,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-2.2,89,99400,0,0,282,0,0,0,0,0,0,0,50,6.2,10,10,6.4,430,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-1.7,96,99400,0,0,280,0,0,0,0,0,0,0,40,6.7,10,10,3.2,310,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-1.1,96,99300,0,0,283,0,0,0,0,0,0,0,40,7.7,10,10,3.2,310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-1.7,96,99300,0,0,280,0,0,0,0,0,0,0,40,7.7,10,10,3.2,310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-1.7,96,99300,0,0,280,0,0,0,0,0,0,0,40,8.8,10,10,3.2,310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-2.2,96,99300,0,0,277,0,0,0,0,0,0,0,50,8.8,10,10,1.6,310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-2.8,92,99200,0,0,277,0,0,0,0,0,0,0,30,7.7,10,10,3.2,430,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,-2.2,-2.8,96,99200,0,0,275,0,0,0,0,0,0,0,40,8.8,10,10,3.2,310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,-2.2,-2.8,96,99200,0,0,275,0,0,0,0,0,0,0,40,9.8,10,10,3.2,310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,-2.2,-3.3,92,99200,0,0,274,0,0,0,0,0,0,0,50,8.8,10,10,3.2,310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,-2.2,-2.8,96,99100,30,1052,275,9,1,8,1023,0,911,273,50,7.7,10,10,2.4,310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-2.8,92,99100,132,1357,277,28,0,28,2728,0,2747,969,50,7.2,10,10,2.4,310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-2.8,92,99200,233,1357,277,58,7,57,6483,152,6391,1974,50,7.2,10,10,3.2,340,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-2.8,92,99100,318,1357,277,108,5,107,11822,254,11761,3434,40,7.7,10,10,4.8,310,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-2.8,92,99100,382,1357,277,122,5,121,13482,294,13428,4120,40,8.8,10,10,3.2,310,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-2.8,92,99100,420,1357,277,154,4,153,16868,276,16837,4993,50,8.8,10,10,3.2,310,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-3.3,89,99100,428,1357,276,145,0,145,14501,0,14614,4927,20,7.7,10,10,6.4,340,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-3.3,89,99100,408,1357,276,149,3,148,16323,203,16289,4826,40,6.7,10,10,6.4,310,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-3.3,89,99100,359,1357,276,132,2,131,14411,122,14366,4163,40,6.7,10,10,6.4,310,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-3.3,89,99100,286,1357,276,118,1,117,12702,53,12651,3368,40,6.7,10,10,8.0,310,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-2.8,92,99100,193,1357,277,76,1,76,8174,27,8207,2155,50,5.2,10,10,4.8,340,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-2.2,96,99100,89,1357,277,32,0,32,3107,0,3128,949,60,3.6,10,10,4.8,310,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-1.7,96,99100,6,486,280,5,0,5,0,0,0,0,50,2.6,10,10,6.4,310,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-1.7,96,99100,0,0,280,0,0,0,0,0,0,0,60,2.6,10,10,3.2,150,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-1.7,96,99100,0,0,280,0,0,0,0,0,0,0,50,3.1,10,10,3.2,150,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-1.1,100,99100,0,0,281,0,0,0,0,0,0,0,60,3.1,10,10,6.4,150,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-1.7,96,99100,0,0,280,0,0,0,0,0,0,0,50,4.1,10,10,6.4,90,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-2.2,92,99100,0,0,280,0,0,0,0,0,0,0,50,3.6,10,10,6.4,90,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-2.2,92,99200,0,0,280,0,0,0,0,0,0,0,50,4.6,10,10,9.7,210,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-2.2,92,99200,0,0,280,0,0,0,0,0,0,0,50,4.1,10,10,9.7,270,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-2.2,92,99200,0,0,280,0,0,0,0,0,0,0,50,3.1,10,10,9.7,150,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-2.2,96,99200,0,0,277,0,0,0,0,0,0,0,60,4.1,10,10,9.7,270,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,-2.2,-2.8,96,99200,0,0,275,0,0,0,0,0,0,0,60,3.6,10,10,9.7,880,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,-2.2,-2.8,96,99200,0,0,275,0,0,0,0,0,0,0,60,3.6,10,10,9.7,980,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,-2.2,-2.8,96,99200,25,962,275,8,0,8,771,0,776,265,70,3.1,10,10,3.2,1100,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,-2.2,-2.8,96,99200,124,1358,275,38,0,38,3700,0,3725,1169,80,2.1,10,10,8.0,1070,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-2.8,92,99200,225,1358,277,69,0,68,6778,0,6727,2178,90,2.1,10,10,2.4,1070,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-2.2,92,99200,310,1358,280,112,1,112,12178,52,12230,3457,90,1.5,10,10,2.4,1070,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-2.2,92,99200,374,1358,280,133,1,133,14545,62,14610,4282,170,1.5,10,10,1.6,370,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,-2.2,-2.8,96,99200,411,1358,275,153,0,153,15276,0,15394,4920,210,4.1,10,10,1.6,370,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,-2.2,-3.3,92,99200,420,1358,274,156,1,156,17066,70,17147,5051,200,4.6,10,10,6.4,370,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.3,-3.9,96,99200,399,1358,269,139,0,139,13869,0,13976,4600,210,5.2,10,10,6.4,370,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-1.7,92,99200,350,1358,282,116,0,116,11521,0,11608,3837,310,5.2,10,10,6.4,460,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-2.2,89,99300,277,1358,282,88,0,88,8686,0,8750,2863,290,3.6,10,10,6.4,460,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-3.3,82,99300,184,1358,281,57,0,57,5583,0,5622,1806,250,8.2,10,10,8.0,460,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-3.9,82,99300,80,1358,278,26,0,26,2523,0,2540,807,260,10.8,10,10,8.0,460,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-2.8,89,99300,24,374,279,4,0,4,0,0,0,0,250,10.3,10,10,1.6,460,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-3.3,89,99400,0,0,276,0,0,0,0,0,0,0,270,9.3,10,10,1.6,460,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-2.8,92,99400,0,0,277,0,0,0,0,0,0,0,230,7.2,10,10,1.6,460,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-2.8,89,99400,0,0,279,0,0,0,0,0,0,0,310,5.2,10,10,3.2,460,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-2.2,96,99500,0,0,277,0,0,0,0,0,0,0,330,4.6,10,10,3.2,460,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-3.3,89,99500,0,0,276,0,0,0,0,0,0,0,310,5.7,10,10,3.2,460,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-2.8,92,99500,0,0,277,0,0,0,0,0,0,0,310,5.2,10,10,3.2,460,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-3.3,89,99600,0,0,276,0,0,0,0,0,0,0,300,4.1,10,10,3.2,460,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-2.8,89,99700,0,0,279,0,0,0,0,0,0,0,310,8.2,10,10,3.2,460,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-3.3,89,99700,0,0,276,0,0,0,0,0,0,0,300,7.7,10,10,3.2,460,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-3.9,85,99800,0,0,276,0,0,0,0,0,0,0,300,8.2,10,10,3.2,460,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-3.3,89,99900,0,0,276,0,0,0,0,0,0,0,290,8.8,10,10,3.2,460,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-2.8,92,100000,20,849,277,7,0,7,674,0,679,232,290,7.7,10,10,3.2,460,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-3.9,82,100000,117,1359,278,37,0,37,3601,0,3625,1119,280,9.3,10,10,3.2,460,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-3.3,85,100000,217,1359,279,83,0,83,8148,0,8206,2364,280,9.8,10,10,8.0,490,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-3.9,82,100100,302,1359,278,110,0,110,10881,0,10962,3365,290,10.3,10,10,11.3,490,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-3.9,82,100200,366,1359,278,136,1,136,14814,63,14882,4262,290,10.3,10,10,4.8,490,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-3.9,82,100200,403,1359,278,147,1,147,16084,67,16158,4751,270,11.3,10,10,8.0,520,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-4.4,78,100300,411,1359,278,151,1,151,16529,69,16606,4895,280,8.8,10,10,8.0,490,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-2.8,89,100300,390,1359,279,146,0,146,14553,0,14665,4645,250,9.3,10,10,4.8,610,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-3.3,82,100300,342,1359,281,123,0,123,12211,0,12303,3895,250,7.2,10,10,4.8,610,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-3.3,85,100400,268,1359,261,133,90,115,14242,4600,12371,3180,230,9.8,10,7,11.3,1130,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-2.8,89,100400,175,1359,266,45,5,44,5022,31,4924,1493,210,9.3,10,8,11.3,980,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-2.8,89,100400,71,1359,266,17,4,17,1920,0,1924,580,230,10.3,10,8,11.3,1070,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-2.2,89,100400,2,260,268,0,0,0,0,0,0,0,230,10.3,10,8,11.3,2900,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-2.8,85,100400,0,0,264,0,0,0,0,0,0,0,220,9.8,10,7,11.3,2290,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-5.0,-6.7,88,100400,0,0,241,0,0,0,0,0,0,0,200,7.7,10,6,11.3,2440,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-5.0,-7.2,85,100400,0,0,247,0,0,0,0,0,0,0,200,9.3,10,8,11.3,2440,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1990,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,-5.0,-7.2,85,100400,0,0,243,0,0,0,0,0,0,0,200,9.8,10,7,11.3,6100,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-4.4,-6.1,88,100400,0,0,243,0,0,0,0,0,0,0,210,9.3,8,6,11.3,6100,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.3,-4.4,92,100400,0,0,269,0,0,0,0,0,0,0,210,8.8,10,10,11.3,240,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-1.7,92,100500,0,0,282,0,0,0,0,0,0,0,230,8.2,10,10,11.3,210,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-2.2,89,100500,0,0,282,0,0,0,0,0,0,0,220,9.8,10,10,11.3,210,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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.0,-6.1,92,100500,0,0,248,0,0,0,0,0,0,0,200,8.2,8,8,11.3,270,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.3,-4.4,92,100500,0,0,269,0,0,0,0,0,0,0,200,8.8,10,10,11.3,270,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-2.2,89,100500,0,0,274,0,0,0,0,0,0,0,230,11.3,10,9,11.3,760,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-2.8,85,100600,15,759,281,3,1,3,0,0,0,0,250,9.3,10,10,3.2,610,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-2.8,89,100700,109,1360,279,30,9,29,3321,0,3219,935,230,9.3,10,10,6.4,1520,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-3.3,85,100700,209,1360,271,48,2,48,5387,27,5402,1674,230,10.3,9,9,6.4,980,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-3.9,79,100800,294,1360,260,194,414,101,21166,19507,11065,3166,250,10.8,6,6,11.3,1070,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-2.8,92,100900,357,1360,277,137,7,135,14891,434,14741,4176,230,9.3,10,10,0.4,0,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-2.8,89,100900,394,1360,272,197,105,165,21289,7553,17920,4922,230,10.3,9,9,3.2,460,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-3.3,82,100900,403,1360,281,99,6,97,11209,320,11022,3666,240,13.4,10,10,1.6,490,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-0.6,-2.8,85,100900,382,1360,274,188,71,167,20231,5138,18062,4825,230,10.3,9,9,6.4,270,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-2.8,92,100900,333,1360,263,133,70,115,14556,3822,12639,3696,230,10.3,9,8,6.4,240,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-3.3,89,100900,259,1360,269,67,18,63,7519,519,7092,2230,230,10.8,9,9,3.2,270,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-2.2,96,100900,166,1360,277,37,5,36,4178,0,4075,1268,240,11.8,10,10,0.2,150,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-2.2,96,100800,62,1360,277,13,12,12,1498,0,1384,429,240,11.3,10,10,1.6,240,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-2.2,92,100900,1,147,280,0,0,0,0,0,0,0,240,10.8,10,10,4.8,210,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-3.9,82,100900,0,0,270,0,0,0,0,0,0,0,270,11.3,9,9,9.7,790,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-5.0,75,100900,0,0,269,0,0,0,0,0,0,0,270,11.3,9,9,11.3,820,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-5.0,78,101000,0,0,275,0,0,0,0,0,0,0,280,11.3,10,10,11.3,880,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-5.0,78,101000,0,0,275,0,0,0,0,0,0,0,290,11.3,10,10,11.3,880,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-4.4,82,101100,0,0,275,0,0,0,0,0,0,0,280,10.3,10,10,4.8,460,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-6.1,72,101100,0,0,273,0,0,0,0,0,0,0,280,11.3,10,10,4.8,460,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-5.6,75,101100,0,0,274,0,0,0,0,0,0,0,290,10.8,10,10,4.8,610,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-2.2,-6.1,75,101200,0,0,271,0,0,0,0,0,0,0,290,11.3,10,10,11.3,760,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-6.1,72,101200,0,0,273,0,0,0,0,0,0,0,290,10.3,10,10,11.3,820,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-2.2,-6.7,72,101200,0,0,271,0,0,0,0,0,0,0,290,9.8,10,10,11.3,820,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-6.1,72,101200,0,0,273,0,0,0,0,0,0,0,290,10.3,10,10,11.3,820,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-5.6,75,101200,12,669,274,4,1,4,0,0,0,0,280,8.2,10,10,11.3,820,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-2.2,-6.1,75,101200,101,1361,271,31,4,30,3405,0,3305,931,300,9.8,10,10,11.3,850,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-6.1,72,101200,201,1361,273,81,5,81,8675,152,8711,2218,310,9.3,10,10,11.3,730,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-6.1,72,101200,286,1361,273,104,5,103,11300,239,11238,3139,300,9.3,10,10,11.3,760,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-7.2,66,101200,349,1361,272,130,1,130,14151,61,14214,4033,300,7.2,10,10,11.3,760,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-6.7,69,101200,386,1361,273,184,0,184,18346,0,18486,4990,280,7.2,10,10,11.3,1010,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-6.7,69,101200,394,1361,273,186,1,186,19915,79,20020,5119,290,6.7,10,10,11.3,910,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-3.9,82,101200,373,1361,278,167,0,167,16625,0,16752,4724,320,5.2,10,10,11.3,910,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.1,-4.4,78,101200,324,1361,270,161,91,138,17306,5670,14905,3934,300,3.6,9,9,11.3,1220,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-3.9,85,101100,250,1361,276,87,2,87,9474,76,9512,2681,350,3.6,10,10,11.3,430,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-1.7,-5.0,78,101100,157,1361,275,46,5,45,5079,19,4984,1454,340,5.2,10,10,11.3,550,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-2.2,-5.6,78,101100,54,1361,272,20,0,20,1937,0,1950,610,350,4.6,10,10,11.3,700,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-2.2,-5.6,78,101200,0,34,272,0,0,0,0,0,0,0,360,2.6,10,10,11.3,610,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-2.8,-6.1,78,101200,0,0,262,0,0,0,0,0,0,0,360,3.1,10,9,11.3,610,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1990,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,-2.8,-5.6,81,101200,0,0,270,0,0,0,0,0,0,0,60,4.6,10,10,11.3,490,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.3,-5.0,88,101200,0,0,268,0,0,0,0,0,0,0,90,2.6,10,10,11.3,490,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.3,-5.6,85,101200,0,0,268,0,0,0,0,0,0,0,100,2.6,10,10,11.3,610,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.3,-4.4,92,101200,0,0,269,0,0,0,0,0,0,0,70,2.6,10,10,11.3,610,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-5.6,88,101200,0,0,265,0,0,0,0,0,0,0,140,2.1,10,10,11.3,700,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.3,-3.9,96,101100,0,0,269,0,0,0,0,0,0,0,120,2.6,10,10,11.3,700,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-4.4,-5.0,96,101100,0,0,242,0,0,0,0,0,0,0,130,2.6,5,5,8.0,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.3,-4.4,92,101100,0,0,247,0,0,0,0,0,0,0,90,2.6,5,5,8.0,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.3,-5.0,88,101000,0,0,268,0,0,0,0,0,0,0,70,6.2,10,10,8.0,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-5.0,-7.2,85,101000,0,0,236,0,0,0,0,0,0,0,90,4.1,4,4,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-5.0,-6.7,88,101000,8,579,239,3,2,3,0,0,0,0,90,4.1,8,5,11.3,370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-4.4,-6.1,88,101000,93,1361,263,27,2,27,2974,0,2982,846,70,3.6,10,10,6.4,370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-5.6,-6.7,92,101000,193,1361,241,66,58,58,7243,981,6387,1834,120,3.6,9,7,9.7,460,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-5.0,-6.7,88,101000,277,1361,243,97,91,78,10756,3391,8680,2635,80,5.2,8,7,9.7,460,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-6.1,85,100900,341,1361,252,163,85,141,17571,5448,15272,4099,80,5.2,9,8,11.3,460,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.3,-5.0,88,100900,378,1361,255,179,119,145,19468,7885,15844,4499,100,5.7,8,8,11.3,460,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-2.8,-4.4,89,100900,386,1361,249,187,189,131,20562,11777,14468,4343,100,4.1,7,5,11.3,460,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.3,-5.6,85,100900,364,1361,260,151,113,119,16641,6564,13170,3976,80,6.7,10,9,9.7,580,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-6.1,85,100900,315,1361,252,141,67,125,15244,3872,13575,3702,60,5.2,8,8,9.7,610,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-5.6,88,100900,241,1361,258,102,40,94,10999,1632,10179,2717,80,8.2,9,9,9.7,460,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-5.6,88,100900,148,1361,258,38,11,37,4243,0,4143,1246,70,7.2,9,9,9.7,490,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.3,-5.6,85,100900,45,1282,268,1,2,1,136,0,136,41,60,7.7,10,10,9.7,460,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.3,-6.7,78,100900,0,0,266,0,0,0,0,0,0,0,80,7.7,10,10,9.7,490,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-6.7,81,100900,0,0,264,0,0,0,0,0,0,0,70,7.7,10,10,9.7,490,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-6.7,81,100900,0,0,264,0,0,0,0,0,0,0,90,6.2,10,10,9.7,490,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-6.7,81,100900,0,0,257,0,0,0,0,0,0,0,80,6.2,9,9,11.3,520,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.3,-4.4,92,100900,0,0,269,0,0,0,0,0,0,0,70,6.7,10,10,11.3,400,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.3,-5.6,85,101000,0,0,268,0,0,0,0,0,0,0,70,7.7,10,10,11.3,430,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.3,-5.6,85,101000,0,0,268,0,0,0,0,0,0,0,90,6.7,10,10,11.3,430,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.3,-6.1,81,101000,0,0,267,0,0,0,0,0,0,0,80,7.7,10,10,11.3,460,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.3,-6.1,81,101000,0,0,267,0,0,0,0,0,0,0,80,7.2,10,10,11.3,460,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.3,-5.6,85,101000,0,0,268,0,0,0,0,0,0,0,90,5.7,10,10,11.3,460,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.3,-5.6,85,101000,0,0,268,0,0,0,0,0,0,0,80,6.7,10,10,11.3,490,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.3,-6.1,81,101000,0,0,267,0,0,0,0,0,0,0,50,7.7,10,10,11.3,520,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.3,-6.1,81,101000,6,465,267,2,0,2,0,0,0,0,80,8.2,10,10,11.3,520,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.3,-5.6,85,101000,85,1362,268,18,0,18,1747,0,1759,618,70,7.2,10,10,11.3,520,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.3,-6.1,81,101100,185,1362,267,42,4,42,4715,25,4728,1454,90,7.2,10,10,11.3,520,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.3,-6.1,81,101100,269,1362,267,94,0,94,9276,0,9344,2886,90,6.7,10,10,11.3,460,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.3,-6.1,81,101100,332,1362,267,107,1,107,11774,52,11821,3525,70,6.7,10,10,11.3,460,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.3,-6.1,81,101100,369,1362,267,114,4,113,12630,226,12570,3875,60,7.7,10,10,11.3,460,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-6.7,81,101100,377,1362,264,129,1,129,14173,62,14235,4243,60,6.7,10,10,11.3,400,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-6.1,85,101100,355,1362,265,114,0,114,11337,0,11422,3820,50,5.7,10,10,11.3,400,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-7.2,78,101100,306,1362,264,109,0,109,10797,0,10876,3403,60,6.2,10,10,11.3,430,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-4.4,-6.7,85,101100,232,1362,262,92,1,92,9904,39,9946,2622,70,5.7,10,10,11.3,400,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-4.4,-7.2,81,101100,139,1362,262,51,0,51,4979,0,5013,1479,60,5.2,10,10,11.3,430,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-4.4,-7.2,81,101100,38,1169,262,13,0,13,1257,0,1266,421,50,5.2,10,10,11.3,430,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-4.4,-6.1,88,101100,0,0,263,0,0,0,0,0,0,0,50,4.1,10,10,11.3,400,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-4.4,-5.6,92,101100,0,0,263,0,0,0,0,0,0,0,70,4.6,10,10,11.3,430,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1990,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,-4.4,-6.7,85,101100,0,0,262,0,0,0,0,0,0,0,60,4.6,10,10,11.3,430,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-7.2,78,101100,0,0,264,0,0,0,0,0,0,0,50,4.6,10,10,11.3,610,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-6.7,81,101100,0,0,264,0,0,0,0,0,0,0,60,5.7,10,10,11.3,490,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-6.7,81,101100,0,0,264,0,0,0,0,0,0,0,60,5.2,10,10,11.3,520,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-6.7,81,101100,0,0,264,0,0,0,0,0,0,0,60,5.2,10,10,11.3,610,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-6.7,81,101100,0,0,264,0,0,0,0,0,0,0,50,4.1,10,10,11.3,580,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-7.2,78,101100,0,0,264,0,0,0,0,0,0,0,60,4.1,10,10,11.3,760,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-7.2,78,101100,0,0,264,0,0,0,0,0,0,0,50,3.6,10,10,11.3,610,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-4.4,-6.1,88,101100,0,0,263,0,0,0,0,0,0,0,50,3.6,10,10,11.3,3050,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-4.4,-6.1,88,101100,0,0,263,0,0,0,0,0,0,0,60,3.6,10,10,11.3,3050,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-5.6,88,101100,12,375,265,2,0,2,0,0,0,0,60,6.2,10,10,11.3,3050,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-5.6,88,101100,78,1363,265,27,0,27,2619,0,2637,793,70,6.7,10,10,11.3,730,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.3,-5.6,85,101100,176,1363,268,65,0,65,6362,0,6406,1858,60,6.7,10,10,8.0,760,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.3,-5.6,85,101100,261,1363,268,103,1,103,11087,46,11136,2947,80,5.7,10,10,4.8,1340,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.3,-5.6,85,101200,324,1363,268,117,1,116,12751,55,12697,3621,80,5.2,10,10,4.8,1340,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-6.1,85,101200,361,1363,248,202,222,141,21913,14373,15367,4290,70,5.2,9,7,11.3,3350,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-6.7,81,101200,368,1363,247,160,163,114,17715,9278,12673,3895,60,5.2,9,7,11.3,3050,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.3,-6.1,81,101200,346,1363,267,120,2,119,13155,115,13101,3853,70,4.6,10,10,11.3,1830,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-2.8,-6.1,78,101200,297,1363,269,82,19,77,9174,744,8644,2714,60,4.1,10,10,11.3,1280,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.3,-5.6,85,101200,223,1363,268,62,3,62,6871,72,6894,2068,70,4.6,10,10,9.7,1220,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.3,-5.6,85,101300,130,1363,268,29,0,29,2828,0,2847,1003,70,5.7,10,10,4.8,910,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-5.6,88,101300,31,1079,265,7,0,7,676,0,681,250,70,5.2,10,10,4.8,1520,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-4.4,-6.1,88,101300,0,0,263,0,0,0,0,0,0,0,70,5.2,10,10,4.8,1680,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-3.9,-6.1,85,101300,0,0,265,0,0,0,0,0,0,0,70,5.2,10,10,8.0,1830,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-4.5,-6.4,85,101300,0,0,262,0,0,0,0,0,0,0,80,4.9,10,10,8.0,1830,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-5.2,-6.8,85,101300,0,0,259,0,0,0,0,0,0,0,90,4.6,10,10,8.0,1680,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1990,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,-5.9,-7.2,85,101300,0,0,256,0,0,0,0,0,0,0,70,4.3,10,10,11.3,700,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.7,-7.6,100,101500,0,0,252,0,0,0,0,0,0,0,320,4.0,10,10,11.3,340,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.4,-8.0,100,101500,0,0,249,0,0,0,0,0,0,0,300,3.7,10,10,11.3,340,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.1,-8.4,100,101500,0,0,246,0,0,0,0,0,0,0,300,3.4,10,10,11.3,370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-8.9,100,101500,0,0,243,0,0,0,0,0,0,0,310,3.1,10,10,11.3,370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.3,100,101600,0,0,246,0,0,0,0,0,0,0,330,3.1,10,10,11.3,370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.9,96,101600,0,0,245,0,0,0,0,0,0,0,340,2.1,10,10,11.3,400,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.9,96,101600,0,0,245,0,0,0,0,0,0,0,320,1.5,10,10,11.3,400,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-8.3,96,101600,18,261,248,3,0,3,0,0,0,0,310,2.6,10,10,11.3,430,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-8.9,92,101700,68,1364,247,21,0,21,2037,0,2050,656,270,2.1,10,10,11.3,400,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.2,-8.9,88,101700,167,1364,242,49,14,47,5409,94,5204,1515,260,2.1,10,9,11.3,400,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.7,-8.3,88,101700,251,1364,236,103,102,83,11260,3780,9109,2601,310,3.1,9,7,11.3,400,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.7,-8.3,88,101800,314,1364,233,145,152,109,15849,7964,11964,3447,280,2.6,10,6,11.3,2440,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.7,-7.8,92,101800,350,1364,240,137,41,126,14968,2460,13827,3997,310,3.1,10,8,11.3,400,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.7,-8.3,88,101800,358,1364,245,107,82,85,12107,3912,9650,3163,330,2.6,10,9,11.3,430,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.7,-8.3,88,101900,336,1364,236,170,126,138,18361,7997,14974,4056,300,2.6,9,7,11.3,430,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.7,-8.3,88,101900,286,1364,245,90,29,84,9970,1197,9339,2831,310,2.6,10,9,11.3,430,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.2,-7.8,96,101900,212,1364,243,52,14,50,5846,238,5636,1754,310,2.6,10,9,11.3,2440,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.2,-7.8,96,101900,119,1364,243,31,10,30,3467,0,3364,1006,240,2.1,10,9,11.3,2440,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.2,-7.8,96,101900,23,943,243,7,3,7,804,0,805,244,310,2.1,10,9,11.3,2440,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.7,-7.8,92,101900,0,0,252,0,0,0,0,0,0,0,330,2.1,10,10,11.3,2440,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.2,-7.8,96,101900,0,0,250,0,0,0,0,0,0,0,310,2.1,10,10,11.3,370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.2,-7.8,96,102000,0,0,250,0,0,0,0,0,0,0,180,1.5,10,10,11.3,370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.2,-7.8,96,102000,0,0,250,0,0,0,0,0,0,0,210,2.1,10,10,11.3,370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-7.8,100,102000,0,0,248,0,0,0,0,0,0,0,0,0.0,10,10,11.3,2440,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-7.8,100,102000,0,0,248,0,0,0,0,0,0,0,170,2.1,10,10,11.3,1370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-7.8,100,102000,0,0,248,0,0,0,0,0,0,0,170,2.1,10,10,11.3,1370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,100,102000,0,0,248,0,0,0,0,0,0,0,180,2.1,10,10,11.3,1370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-7.8,100,102000,0,0,248,0,0,0,0,0,0,0,170,2.1,10,10,11.3,1370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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.3,-8.3,100,102000,0,0,246,0,0,0,0,0,0,0,190,2.1,10,10,11.3,1370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.3,100,102100,0,0,234,0,0,0,0,0,0,0,170,2.6,10,8,11.3,1370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-7.8,100,102100,0,0,241,0,0,0,0,0,0,0,200,2.1,10,9,11.3,1370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.3,100,102000,6,148,234,1,1,1,0,0,0,0,180,1.5,10,8,11.3,1370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.3,100,102000,61,1365,234,23,23,22,2508,0,2406,652,210,2.1,10,8,11.3,1830,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-7.8,100,102000,159,1365,241,62,57,54,6735,554,5886,1606,180,1.5,10,9,11.3,1830,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.1,-6.1,100,102100,243,1365,256,63,4,62,7031,105,6941,2135,170,2.1,10,10,11.3,430,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.6,-7.8,85,102100,306,1365,256,86,6,85,9569,258,9491,2931,170,2.1,10,10,11.3,430,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.1,-7.2,92,102100,342,1365,248,132,29,125,14392,1716,13689,3914,140,2.6,10,9,11.3,430,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.0,-7.2,85,102000,349,1365,259,90,2,89,10117,96,10040,3230,180,1.5,10,10,11.3,430,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.6,-7.2,88,102000,327,1365,257,84,7,83,9436,311,9355,2990,60,2.1,10,10,11.3,340,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.7,-7.2,96,102000,277,1365,253,72,5,71,8060,176,7974,2496,30,2.6,10,10,11.3,310,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.7,-6.7,100,102000,203,1365,253,87,6,86,9308,204,9240,2338,60,2.6,10,10,11.3,340,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.7,-7.2,96,102100,110,1365,253,34,3,34,3741,0,3752,1068,340,2.1,10,10,11.3,370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.7,-7.8,92,102000,18,830,252,5,1,5,584,0,584,179,10,2.6,10,10,11.3,400,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-7.8,100,102000,0,0,248,0,0,0,0,0,0,0,120,2.1,10,10,8.0,430,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-7.8,100,102000,0,0,248,0,0,0,0,0,0,0,0,0.0,10,10,8.0,430,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-9.4,-9.4,100,102000,0,0,218,0,0,0,0,0,0,0,120,2.6,5,3,8.0,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.3,100,102000,0,0,234,0,0,0,0,0,0,0,110,2.1,8,8,8.0,340,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-7.8,100,102000,0,0,248,0,0,0,0,0,0,0,0,0.0,10,10,8.0,400,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.3,100,102000,0,0,246,0,0,0,0,0,0,0,160,2.6,10,10,8.0,370,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.3,100,102000,0,0,246,0,0,0,0,0,0,0,150,2.1,10,10,9.7,340,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-7.8,100,101900,0,0,248,0,0,0,0,0,0,0,190,1.5,10,10,9.7,310,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-7.8,100,101900,0,0,241,0,0,0,0,0,0,0,210,2.1,10,9,4.8,310,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-7.8,100,101900,0,0,248,0,0,0,0,0,0,0,180,2.1,10,10,4.8,310,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.3,100,101900,0,0,246,0,0,0,0,0,0,0,0,0.0,10,10,4.8,400,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-9.4,-9.4,100,101900,0,0,241,0,0,0,0,0,0,0,160,2.1,10,10,8.0,1370,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-8.9,100,101900,0,57,243,0,0,0,0,0,0,0,170,2.6,10,10,9.7,370,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-8.9,100,101900,53,1365,243,13,0,13,1259,0,1267,439,160,2.6,10,10,11.3,370,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-8.9,100,101900,151,1365,243,47,0,47,4593,0,4625,1449,140,2.1,10,10,4.8,400,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.3,100,101900,235,1365,239,68,14,66,7527,385,7331,2190,130,2.1,10,9,11.3,1520,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.3,100,101900,297,1365,239,80,36,71,9008,1337,8020,2558,90,2.6,10,9,11.3,460,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.3,100,101900,333,1365,239,103,26,96,11450,1282,10712,3316,110,3.1,10,9,11.3,430,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.3,100,101900,341,1365,246,91,4,90,10195,192,10119,3216,100,3.6,10,10,11.3,430,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.3,100,101900,318,1365,246,79,2,78,8896,84,8812,2827,80,3.1,10,10,11.3,370,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-7.8,100,101900,268,1365,248,70,4,69,7830,133,7743,2412,70,2.1,10,10,6.4,310,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.3,100,101900,194,1365,246,43,2,43,4855,20,4868,1522,50,3.1,10,10,11.3,310,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-8.9,100,101900,101,1365,243,27,0,27,2628,0,2646,890,60,2.1,10,10,11.3,150,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-8.9,100,101900,13,717,243,6,0,6,579,0,582,203,0,0.0,10,10,11.3,150,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-8.9,100,101900,0,0,243,0,0,0,0,0,0,0,190,2.1,10,10,11.3,120,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-8.9,100,101900,0,0,243,0,0,0,0,0,0,0,350,2.6,10,10,11.3,120,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.3,100,101900,0,0,246,0,0,0,0,0,0,0,350,3.1,10,10,8.0,240,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-8.9,100,101900,0,0,243,0,0,0,0,0,0,0,360,4.1,10,10,8.0,240,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-8.9,100,101900,0,0,243,0,0,0,0,0,0,0,350,4.1,10,10,9.7,310,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-9.4,-9.4,100,101900,0,0,229,0,0,0,0,0,0,0,360,4.1,9,8,11.3,310,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-9.4,-9.4,100,101900,0,0,241,0,0,0,0,0,0,0,360,5.2,10,10,11.3,310,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-9.4,-9.4,100,101900,0,0,241,0,0,0,0,0,0,0,350,4.6,10,10,4.8,310,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,100,101800,0,0,243,0,0,0,0,0,0,0,340,4.1,10,10,4.8,310,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.3,100,101800,0,0,246,0,0,0,0,0,0,0,330,6.7,10,10,9.7,310,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-8.9,100,101800,0,0,243,0,0,0,0,0,0,0,340,5.2,10,10,6.4,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.3,100,101800,0,0,246,0,0,0,0,0,0,0,340,5.2,10,10,6.4,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-7.8,100,101800,0,0,248,0,0,0,0,0,0,0,340,4.6,10,10,6.4,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.2,-7.2,100,101800,46,1332,251,15,2,15,1662,0,1665,474,20,5.2,10,10,11.3,310,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-8.9,100,101800,143,1366,243,62,0,62,6055,0,6096,1598,330,7.2,10,10,11.3,310,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-10.6,-10.6,100,101800,227,1366,220,109,174,78,11862,5655,8521,2369,340,6.2,8,7,11.3,310,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-11.7,-12.8,92,101800,289,1366,205,175,336,101,19096,16241,11066,3141,10,5.7,6,2,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.2,-12.8,96,101900,325,1366,197,224,666,59,25847,24390,6826,2301,340,5.2,4,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.2,-12.8,96,101900,332,1366,197,230,688,55,26751,24877,6412,2192,330,6.2,3,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.2,-12.8,96,101900,309,1366,197,211,665,53,24452,21894,6157,2081,350,7.2,3,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-11.7,-12.2,96,101900,259,1366,206,159,467,65,17825,14595,7310,2281,340,6.7,6,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.2,-12.8,96,101900,185,1366,204,107,212,76,11481,5898,8188,2093,330,7.7,7,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.2,-12.8,96,101900,92,1366,206,46,168,32,5027,0,3507,965,330,6.7,8,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.8,-12.8,100,101900,9,603,202,10,70,7,0,0,0,0,310,5.7,7,2,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.3,-13.3,100,101900,0,0,205,0,0,0,0,0,0,0,330,5.2,8,5,11.3,6100,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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.3,-13.3,100,101900,0,0,204,0,0,0,0,0,0,0,320,5.7,7,4,11.3,6100,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.3,100,101900,0,0,223,0,0,0,0,0,0,0,320,5.2,10,10,11.3,310,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.8,-12.8,100,101900,0,0,226,0,0,0,0,0,0,0,310,5.2,10,10,8.0,180,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-11.7,-11.7,100,101900,0,0,230,0,0,0,0,0,0,0,320,5.7,10,10,8.0,180,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-10.6,-10.6,100,101900,0,0,235,0,0,0,0,0,0,0,320,6.2,10,10,6.4,150,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-11.1,-11.7,96,101900,0,0,232,0,0,0,0,0,0,0,320,7.2,10,10,11.3,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.2,-12.2,100,101900,0,0,222,0,0,0,0,0,0,0,310,6.2,10,9,11.3,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.2,-12.2,100,101900,0,0,228,0,0,0,0,0,0,0,310,6.2,10,10,11.3,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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.2,-12.2,100,101900,0,0,228,0,0,0,0,0,0,0,310,6.7,10,10,8.0,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.3,-13.3,100,101900,0,0,223,0,0,0,0,0,0,0,320,6.7,10,10,9.7,310,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.3,-13.3,100,101900,0,0,223,0,0,0,0,0,0,0,320,5.7,10,10,11.3,310,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.3,-13.3,100,101900,0,0,223,0,0,0,0,0,0,0,310,5.7,10,10,11.3,340,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.8,-12.8,100,101900,39,1219,226,9,0,9,871,0,877,313,310,6.2,10,10,11.3,310,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.8,-12.8,100,101900,135,1367,226,37,2,37,4094,0,4105,1191,310,6.2,10,10,11.3,310,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.2,-12.2,100,101900,218,1367,228,46,4,46,5212,64,5225,1652,310,6.2,10,10,11.3,310,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.2,-12.2,100,101900,280,1367,228,83,6,81,9197,239,9007,2720,310,6.2,10,10,11.3,340,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-11.7,-11.7,100,101900,316,1367,230,80,4,79,8991,170,8909,2836,290,6.2,10,10,11.3,340,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-11.1,-11.1,100,101900,323,1367,233,96,1,96,10644,49,10684,3265,290,6.7,10,10,2.4,310,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-11.1,-11.1,100,101900,301,1367,233,95,2,94,10477,93,10407,3105,300,6.7,10,10,4.8,370,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-11.1,-11.1,100,101900,250,1367,233,70,0,70,6905,0,6955,2360,300,6.2,10,10,4.8,370,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-11.7,-11.7,100,101800,176,1367,230,53,0,53,5195,0,5232,1692,310,4.6,10,10,4.8,310,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-11.1,-11.1,100,101800,83,1367,233,30,0,30,2917,0,2936,896,310,6.2,10,10,8.0,310,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-10.6,-10.6,100,101800,6,490,235,5,0,5,0,0,0,0,290,5.7,10,10,11.3,240,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-10.6,-10.6,100,101800,0,0,235,0,0,0,0,0,0,0,290,5.2,10,10,11.3,240,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-10.0,-10.0,100,101800,0,0,238,0,0,0,0,0,0,0,300,5.7,10,10,11.3,240,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-10.0,-10.0,100,101800,0,0,238,0,0,0,0,0,0,0,300,4.6,10,10,11.3,240,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-10.0,-10.0,100,101800,0,0,238,0,0,0,0,0,0,0,310,4.1,10,10,11.3,240,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-10.6,100,101800,0,0,235,0,0,0,0,0,0,0,300,5.7,10,10,11.3,270,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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.6,-10.6,100,101800,0,0,235,0,0,0,0,0,0,0,310,4.1,10,10,11.3,270,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-10.6,-10.6,100,101800,0,0,235,0,0,0,0,0,0,0,320,5.2,10,10,11.3,580,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-10.0,-10.0,100,101800,0,0,238,0,0,0,0,0,0,0,310,5.2,10,10,8.0,270,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-10.0,-10.0,100,101800,0,0,238,0,0,0,0,0,0,0,320,4.1,10,10,4.8,240,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-9.4,-9.4,100,101800,0,0,241,0,0,0,0,0,0,0,320,4.1,10,10,6.4,270,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-9.4,-9.4,100,101800,0,0,241,0,0,0,0,0,0,0,300,4.1,10,10,8.0,270,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-9.4,-9.4,100,101800,0,0,241,0,0,0,0,0,0,0,290,5.2,10,10,8.0,310,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-9.4,-9.4,100,101800,0,0,241,0,0,0,0,0,0,0,300,5.2,10,10,11.3,340,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-8.9,100,101800,32,1128,243,11,0,11,1063,0,1070,355,310,4.1,10,10,11.3,340,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-8.9,100,101800,127,1368,243,45,0,45,4388,0,4418,1301,300,4.1,10,10,11.3,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.3,100,101800,210,1368,246,80,0,80,7858,0,7914,2287,300,5.2,10,10,11.3,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.3,100,101900,272,1368,246,110,0,110,10864,0,10943,3131,310,5.2,10,10,11.3,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.3,100,101900,308,1368,246,121,1,121,13083,56,13141,3574,310,4.1,10,10,11.3,340,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.3,100,101900,314,1368,246,125,1,125,13512,58,13573,3689,310,4.1,10,10,11.3,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.3,100,101900,292,1368,246,113,1,113,12229,53,12282,3354,300,4.1,10,10,11.3,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-8.9,100,101900,241,1368,243,99,1,98,10646,43,10584,2768,300,4.1,10,10,11.3,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-8.9,100,102000,167,1368,243,66,1,65,7108,19,7027,1837,310,4.1,10,10,11.3,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-8.9,100,102000,75,1368,243,27,0,27,2622,0,2639,811,320,3.1,10,10,11.3,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-8.9,100,102000,18,376,243,3,0,3,0,0,0,0,320,3.6,10,10,11.3,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-8.9,100,102000,0,0,243,0,0,0,0,0,0,0,320,2.1,10,10,11.3,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-8.9,100,102100,0,0,243,0,0,0,0,0,0,0,310,3.1,10,10,11.3,520,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-8.9,100,102100,0,0,243,0,0,0,0,0,0,0,300,2.1,10,10,11.3,550,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-8.9,100,102100,0,0,243,0,0,0,0,0,0,0,300,1.5,10,10,11.3,640,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.3,100,102100,0,0,246,0,0,0,0,0,0,0,300,2.6,10,10,9.7,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.3,100,102100,0,0,246,0,0,0,0,0,0,0,340,2.1,10,10,9.7,340,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.3,100,102100,0,0,246,0,0,0,0,0,0,0,310,1.5,10,10,9.7,340,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.3,100,102200,0,0,246,0,0,0,0,0,0,0,340,2.1,10,10,8.0,180,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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.3,-8.3,100,102200,0,0,246,0,0,0,0,0,0,0,330,2.6,10,10,9.7,180,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-8.9,100,102200,0,0,243,0,0,0,0,0,0,0,160,1.5,10,10,9.7,180,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.3,100,102200,0,0,246,0,0,0,0,0,0,0,220,1.5,10,10,11.3,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.3,100,102300,0,0,246,0,0,0,0,0,0,0,0,0.0,10,10,11.3,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.3,100,102300,0,0,246,0,0,0,0,0,0,0,0,0.0,10,10,11.3,150,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-7.8,100,102300,27,1015,248,10,0,10,966,0,972,320,10,2.1,10,10,1.6,120,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-7.8,100,102300,119,1369,248,41,0,41,3994,0,4022,1201,50,3.1,10,10,1.6,120,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-7.8,100,102400,202,1369,248,43,0,43,4220,0,4250,1529,60,2.6,10,10,2.4,120,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-7.8,100,102400,264,1369,248,97,1,96,10524,44,10459,2886,50,2.6,10,10,11.3,340,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.2,-7.2,100,102400,299,1369,251,130,1,130,13926,59,13992,3589,40,2.6,10,10,11.3,370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.2,-7.2,100,102400,306,1369,251,131,1,131,14060,60,14126,3673,70,5.2,10,10,6.4,310,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.3,100,102400,283,1369,230,153,108,129,16320,6294,13826,3431,60,2.6,8,7,11.3,610,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-7.8,100,102500,232,1369,236,93,109,73,10213,3356,8046,2336,50,3.1,9,8,11.3,790,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-7.8,100,102500,158,1369,241,27,15,25,3130,0,2902,937,50,2.6,10,9,11.3,880,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.2,-7.2,100,102600,66,1369,244,22,7,22,2425,0,2431,687,60,3.6,10,9,11.3,310,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-7.8,100,102600,2,262,248,0,0,0,0,0,0,0,60,3.6,10,10,11.3,150,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-7.8,100,102600,0,0,248,0,0,0,0,0,0,0,60,3.1,10,10,11.3,240,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-7.8,100,102600,0,0,248,0,0,0,0,0,0,0,40,2.6,10,10,11.3,270,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-7.8,100,102700,0,0,248,0,0,0,0,0,0,0,60,2.6,10,10,11.3,790,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-7.8,100,102700,0,0,248,0,0,0,0,0,0,0,50,4.1,10,10,11.3,880,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-7.8,100,102700,0,0,248,0,0,0,0,0,0,0,40,4.6,10,10,11.3,340,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-7.8,100,102700,0,0,248,0,0,0,0,0,0,0,50,5.2,10,10,11.3,310,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.2,-7.2,100,102700,0,0,251,0,0,0,0,0,0,0,60,5.2,10,10,11.3,370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.2,-7.2,100,102700,0,0,251,0,0,0,0,0,0,0,50,5.7,10,10,11.3,340,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.2,-7.2,100,102700,0,0,251,0,0,0,0,0,0,0,60,6.7,10,10,11.3,340,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-7.8,100,102700,0,0,248,0,0,0,0,0,0,0,50,7.2,10,10,11.3,310,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.3,100,102700,0,0,246,0,0,0,0,0,0,0,50,7.7,10,10,11.3,790,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-8.9,100,102700,0,0,243,0,0,0,0,0,0,0,60,6.7,10,10,11.3,340,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-8.9,100,102700,0,0,243,0,0,0,0,0,0,0,50,7.7,10,10,11.3,310,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-8.9,100,102800,21,924,243,9,1,9,1002,0,1004,286,40,5.7,10,10,11.3,310,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-9.4,-9.4,100,102800,111,1369,234,43,23,41,4641,0,4440,1162,50,6.2,10,9,11.3,310,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-9.4,-9.4,100,102700,194,1369,234,64,17,61,7005,330,6700,1900,40,6.7,10,9,11.3,430,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-9.4,100,102700,255,1369,241,70,0,70,6904,0,6954,2366,20,6.2,10,10,11.3,880,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-9.4,-9.4,100,102700,291,1369,241,98,13,95,10751,595,10463,3052,20,5.7,10,10,11.3,880,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-9.4,-9.4,100,102700,297,1369,241,113,1,113,12248,53,12302,3387,30,6.7,10,10,11.3,880,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-9.4,-9.4,100,102700,274,1369,241,65,3,65,7320,98,7342,2329,30,5.7,10,10,11.3,880,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-9.4,-9.4,100,102700,223,1369,241,72,1,72,7889,30,7917,2270,20,7.7,10,10,11.3,880,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-9.4,-9.4,100,102700,149,1369,241,46,0,46,4497,0,4528,1443,30,7.2,10,10,11.3,880,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-9.4,-9.4,100,102600,57,1369,241,15,0,15,1454,0,1464,507,20,8.8,10,10,11.3,880,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-8.9,100,102600,6,148,243,1,0,1,0,0,0,0,30,7.7,10,10,11.3,310,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-9.4,96,102600,0,0,243,0,0,0,0,0,0,0,30,7.7,10,10,11.3,310,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-8.9,100,102600,0,0,243,0,0,0,0,0,0,0,40,8.2,10,10,11.3,310,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-9.4,-9.4,100,102500,0,0,241,0,0,0,0,0,0,0,20,7.7,10,10,11.3,210,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-9.4,-9.4,100,102500,0,0,241,0,0,0,0,0,0,0,360,6.7,10,10,11.3,790,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-9.4,-9.4,100,102400,0,0,241,0,0,0,0,0,0,0,20,7.2,10,10,11.3,1520,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-10.0,-10.0,100,102400,0,0,238,0,0,0,0,0,0,0,40,7.2,10,10,11.3,310,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-10.0,-10.0,100,102400,0,0,238,0,0,0,0,0,0,0,20,7.2,10,10,11.3,310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-10.0,-10.0,100,102400,0,0,238,0,0,0,0,0,0,0,30,7.7,10,10,6.4,310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-10.0,-10.0,100,102300,0,0,238,0,0,0,0,0,0,0,20,7.7,10,10,11.3,340,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-10.0,-10.0,100,102200,0,0,238,0,0,0,0,0,0,0,20,7.2,10,10,11.3,310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-10.0,-10.0,100,102200,0,0,238,0,0,0,0,0,0,0,10,7.7,10,10,11.3,310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-10.0,-10.0,100,102200,0,0,238,0,0,0,0,0,0,0,10,7.7,10,10,11.3,310,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-9.4,-9.4,100,102100,0,0,241,0,0,0,0,0,0,0,20,7.7,10,10,6.4,240,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-9.4,-9.4,100,102100,17,811,241,7,0,7,675,0,679,230,20,7.2,10,10,4.8,240,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-9.4,100,102100,103,1370,241,34,0,34,3309,0,3331,1017,40,5.2,10,10,8.0,270,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-9.4,-9.4,100,102100,185,1370,241,65,0,65,6372,0,6417,1921,20,6.7,10,10,4.8,310,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-9.4,-9.4,100,102100,247,1370,241,93,0,93,9166,0,9232,2722,40,5.7,10,10,11.3,180,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-8.9,100,102100,282,1370,243,93,1,93,10189,44,10229,2963,10,5.2,10,10,11.3,150,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-8.9,100,102000,288,1370,243,98,1,98,10717,47,10760,3095,20,5.7,10,10,11.3,150,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-8.9,100,102000,265,1370,243,98,0,98,9676,0,9746,2943,30,5.2,10,10,11.3,270,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-8.9,100,102000,215,1370,243,71,1,71,7758,28,7787,2205,360,4.1,10,10,11.3,5490,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-8.9,100,102000,140,1370,243,54,0,54,5274,0,5311,1529,360,4.1,10,10,4.8,310,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-8.9,100,102000,49,1370,243,16,0,16,1550,0,1560,516,40,3.6,10,10,9.7,310,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.3,100,102000,6,34,246,1,0,1,0,0,0,0,50,2.6,10,10,9.7,340,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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.3,-8.3,100,102000,0,0,246,0,0,0,0,0,0,0,350,3.6,10,10,9.7,310,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.3,100,102000,0,0,246,0,0,0,0,0,0,0,330,2.1,10,10,11.3,310,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.3,100,102000,0,0,246,0,0,0,0,0,0,0,310,3.1,10,10,11.3,310,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.3,100,102000,0,0,246,0,0,0,0,0,0,0,320,2.6,10,10,11.3,310,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.3,100,102000,0,0,246,0,0,0,0,0,0,0,320,2.1,10,10,11.3,310,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.3,100,102000,0,0,246,0,0,0,0,0,0,0,270,2.1,10,10,11.3,310,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-8.9,100,102000,0,0,243,0,0,0,0,0,0,0,170,3.6,10,10,11.3,310,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-8.9,100,102000,0,0,243,0,0,0,0,0,0,0,170,3.6,10,10,11.3,310,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.3,100,102100,0,0,246,0,0,0,0,0,0,0,150,4.1,10,10,11.3,310,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.3,100,102100,0,0,246,0,0,0,0,0,0,0,160,4.1,10,10,11.3,310,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-8.9,100,102100,0,0,243,0,0,0,0,0,0,0,140,3.1,10,10,11.3,180,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-8.9,100,102100,0,0,243,0,0,0,0,0,0,0,140,3.6,10,10,11.3,150,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,100,102200,0,0,243,0,0,0,0,0,0,0,140,3.6,10,10,6.4,90,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-8.9,100,102200,13,720,243,7,0,7,0,0,0,0,110,2.1,10,10,6.4,60,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-8.9,100,102200,95,1371,243,33,0,33,3209,0,3230,967,100,3.6,10,10,11.3,60,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-8.9,100,102200,177,1371,243,70,0,70,6857,0,6904,1932,90,3.6,10,10,11.3,90,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.3,100,102200,238,1371,246,105,1,104,11203,45,11146,2767,80,3.6,10,10,11.3,90,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-7.8,100,102200,273,1371,248,112,1,112,12040,51,12094,3168,90,4.1,10,10,6.4,90,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-7.8,100,102200,280,1371,248,120,1,120,12857,54,12917,3312,100,3.6,10,10,11.3,180,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-7.8,100,102100,257,1371,248,105,1,105,11285,47,11334,2961,90,3.1,10,10,11.3,180,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-7.8,100,102100,206,1371,248,83,1,83,8914,33,8951,2317,80,3.1,10,10,11.3,180,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-7.8,100,102100,131,1371,248,55,1,55,5887,7,5909,1485,70,2.1,10,10,11.3,1520,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-7.8,100,102100,41,1291,248,14,0,14,1355,0,1364,453,90,3.6,10,10,11.3,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.3,100,102000,0,0,246,0,0,0,0,0,0,0,90,3.6,10,10,11.3,180,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-7.8,100,102000,0,0,248,0,0,0,0,0,0,0,90,3.1,10,10,11.3,150,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-7.8,100,102000,0,0,248,0,0,0,0,0,0,0,90,2.6,10,10,11.3,150,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-7.8,100,101900,0,0,248,0,0,0,0,0,0,0,130,2.1,10,10,11.3,240,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-7.8,100,101900,0,0,248,0,0,0,0,0,0,0,0,0.0,10,10,9.7,310,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.2,-7.2,100,101800,0,0,251,0,0,0,0,0,0,0,0,0.0,10,10,6.4,120,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.1,-6.1,100,101800,0,0,256,0,0,0,0,0,0,0,220,2.1,10,10,8.0,120,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.1,-6.1,100,101800,0,0,256,0,0,0,0,0,0,0,0,0.0,10,10,6.4,180,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.6,-5.6,100,101700,0,0,259,0,0,0,0,0,0,0,0,0.0,10,10,6.4,210,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.0,-5.0,100,101700,0,0,261,0,0,0,0,0,0,0,330,2.1,10,10,6.4,180,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.0,100,101600,0,0,261,0,0,0,0,0,0,0,330,2.6,10,10,4.8,180,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.0,-5.0,100,101500,0,0,261,0,0,0,0,0,0,0,330,2.1,10,10,11.3,150,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.0,-5.0,100,101500,0,0,261,0,0,0,0,0,0,0,340,2.6,10,10,8.0,150,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-4.4,-4.4,100,101400,0,0,264,0,0,0,0,0,0,0,320,2.1,10,10,8.0,460,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-4.4,-4.4,100,101400,9,606,264,5,0,5,0,0,0,0,340,3.6,10,10,8.0,150,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-4.4,-4.4,100,101300,87,1372,264,26,0,26,2524,0,2541,812,330,2.6,10,10,11.3,150,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-4.4,-4.4,100,101300,169,1372,264,57,0,57,5574,0,5613,1706,320,2.1,10,10,4.8,150,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-3.9,-3.9,100,101200,230,1372,267,77,0,77,7570,0,7624,2373,20,2.1,10,10,4.0,150,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-3.9,-3.9,100,101200,265,1372,267,102,0,102,10059,0,10132,2980,50,1.5,10,10,11.3,150,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-3.9,-3.9,100,101100,271,1372,267,97,1,97,10541,44,10584,2961,60,2.1,10,10,8.0,150,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-4.4,-4.4,100,101100,248,1372,257,103,21,99,11080,907,10695,2820,70,1.5,10,9,11.3,460,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-4.4,-4.4,100,101000,197,1372,252,77,38,72,8331,965,7820,2116,40,2.6,10,8,11.3,460,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-4.4,-4.4,100,101000,122,1372,264,32,12,31,3572,0,3469,1035,70,2.1,10,10,4.8,400,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.0,-5.0,100,101000,34,1178,261,8,2,8,924,0,925,284,0,0.0,10,10,4.8,370,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.6,-5.6,100,101000,0,0,259,0,0,0,0,0,0,0,120,2.1,10,10,4.8,370,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.7,-6.7,100,100900,0,0,253,0,0,0,0,0,0,0,130,2.1,10,10,1.3,240,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.3,100,100700,0,0,246,0,0,0,0,0,0,0,0,0.0,10,10,1.3,270,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.1,-6.1,100,100900,0,0,256,0,0,0,0,0,0,0,120,1.5,10,10,4.8,180,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.7,-6.7,100,100900,0,0,253,0,0,0,0,0,0,0,110,2.6,10,10,1.6,120,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.7,-6.7,100,101000,0,0,253,0,0,0,0,0,0,0,100,3.1,10,10,1.6,120,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.7,-6.7,100,101000,0,0,253,0,0,0,0,0,0,0,100,3.1,10,10,8.0,790,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.7,-6.7,100,101000,0,0,253,0,0,0,0,0,0,0,90,3.6,10,10,11.3,980,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.2,-7.2,100,101000,0,0,251,0,0,0,0,0,0,0,100,3.1,10,10,11.3,980,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.2,-7.2,100,101000,0,0,251,0,0,0,0,0,0,0,90,2.6,10,10,11.3,980,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.7,-6.7,100,101000,0,0,253,0,0,0,0,0,0,0,80,3.1,10,10,11.3,980,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.7,-6.7,100,101000,0,0,253,0,0,0,0,0,0,0,100,2.1,10,10,6.4,150,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.1,-6.1,100,101000,0,0,256,0,0,0,0,0,0,0,90,3.1,10,10,11.3,980,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.6,-5.6,100,101000,0,0,259,0,0,0,0,0,0,0,80,3.1,10,10,1.3,90,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.2,-7.2,100,101000,6,515,251,0,0,0,0,0,0,0,140,2.6,10,10,11.3,120,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-7.8,100,101000,79,1373,241,21,8,21,2338,0,2344,683,110,3.1,10,9,11.3,1130,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-7.8,100,101100,161,1373,248,43,7,42,4774,15,4677,1386,70,3.1,10,10,1.3,90,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-7.8,100,101100,222,1373,248,73,2,73,7969,58,7998,2258,60,3.6,10,10,11.3,980,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-7.8,100,101100,256,1373,248,93,4,93,10091,167,10132,2794,90,4.1,10,10,11.3,980,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.3,100,101100,262,1373,226,137,286,80,15093,10587,8845,2613,100,3.6,8,5,1.6,980,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-8.9,100,101100,239,1373,223,109,133,85,11845,4925,9274,2570,90,2.6,8,5,3.2,3660,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.3,100,101100,188,1373,226,84,132,65,9136,2797,7095,1958,70,3.6,9,5,0.3,3660,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-7.8,100,101000,114,1373,248,39,15,38,4259,0,4163,1151,60,4.1,10,10,1.6,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-8.9,100,101000,27,1064,243,3,0,3,290,0,292,116,60,4.1,10,10,1.6,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-9.4,-9.4,100,101000,0,0,241,0,0,0,0,0,0,0,70,2.6,10,10,1.6,150,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.3,100,101000,0,0,246,0,0,0,0,0,0,0,90,2.6,10,10,1.3,60,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.2,-7.2,100,101000,0,0,251,0,0,0,0,0,0,0,80,2.6,10,10,1.3,60,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.1,-6.1,100,101000,0,0,256,0,0,0,0,0,0,0,90,4.6,10,10,4.8,120,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.6,-5.6,100,101000,0,0,259,0,0,0,0,0,0,0,80,3.6,10,10,4.8,120,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.6,100,100900,0,0,259,0,0,0,0,0,0,0,90,3.1,10,10,8.0,210,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.6,-5.6,100,100900,0,0,259,0,0,0,0,0,0,0,80,3.1,10,10,8.0,210,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.0,-5.0,100,100900,0,0,261,0,0,0,0,0,0,0,80,3.1,10,10,8.0,270,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.0,-5.0,100,100900,0,0,261,0,0,0,0,0,0,0,80,2.6,10,10,6.4,310,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-4.4,-4.4,100,100900,0,0,264,0,0,0,0,0,0,0,80,4.1,10,10,9.7,310,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-4.4,100,100900,0,0,264,0,0,0,0,0,0,0,100,5.2,10,10,11.3,310,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-4.4,-4.4,100,100900,0,0,264,0,0,0,0,0,0,0,80,3.6,10,10,11.3,310,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-4.4,100,100900,0,0,264,0,0,0,0,0,0,0,100,3.6,10,10,11.3,240,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-4.4,-4.4,100,100900,0,0,264,0,0,0,0,0,0,0,90,3.1,10,10,11.3,240,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.0,-5.0,100,100900,4,401,261,0,0,0,0,0,0,0,70,3.6,10,10,11.3,370,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-4.4,-4.4,100,100900,71,1373,264,24,1,24,2623,0,2631,724,70,5.7,10,10,11.3,310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-4.4,-4.4,100,100900,152,1373,264,39,0,39,3808,0,3835,1292,80,5.7,10,10,4.8,310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-4.4,-4.4,100,100900,213,1373,264,63,0,63,6185,0,6229,2032,90,6.2,10,10,6.4,310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-4.4,-4.4,100,100900,248,1373,264,64,0,64,6303,0,6348,2201,90,6.7,10,10,6.4,310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-4.4,-4.4,100,100900,254,1373,264,76,1,76,8375,34,8405,2490,80,7.2,10,10,11.3,310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-4.4,-4.4,100,100900,230,1373,264,68,1,68,7496,27,7522,2221,90,5.7,10,10,4.8,340,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-4.4,-4.4,100,100900,179,1373,264,66,0,65,6462,0,6409,1907,90,4.1,10,10,2.4,430,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-3.9,-3.9,100,100900,105,1373,267,40,0,40,3891,0,3917,1144,60,4.1,10,10,11.3,340,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-4.4,-4.4,100,100900,21,950,264,8,0,8,772,0,777,269,70,4.1,10,10,11.3,340,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-4.4,-4.4,100,100900,0,0,264,0,0,0,0,0,0,0,70,6.2,10,10,11.3,310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-4.4,-4.4,100,101000,0,0,264,0,0,0,0,0,0,0,80,4.6,10,10,11.3,310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-4.4,-4.4,100,101000,0,0,264,0,0,0,0,0,0,0,90,4.1,10,10,11.3,310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.0,100,101000,0,0,261,0,0,0,0,0,0,0,90,3.6,10,10,11.3,370,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-4.4,-4.4,100,101000,0,0,264,0,0,0,0,0,0,0,110,4.1,10,10,11.3,340,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-4.4,-4.4,100,101000,0,0,264,0,0,0,0,0,0,0,100,5.2,10,10,3.2,180,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-4.4,-4.4,100,101100,0,0,264,0,0,0,0,0,0,0,90,3.6,10,10,2.4,210,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.0,-5.0,100,101100,0,0,261,0,0,0,0,0,0,0,90,4.1,10,10,6.4,120,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.6,-5.6,100,101100,0,0,259,0,0,0,0,0,0,0,110,3.6,10,10,4.8,120,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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.6,-5.6,100,101100,0,0,259,0,0,0,0,0,0,0,100,4.6,10,10,6.4,120,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.6,-5.6,100,101100,0,0,259,0,0,0,0,0,0,0,110,4.6,10,10,2.4,90,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.7,-6.7,100,101100,0,0,253,0,0,0,0,0,0,0,100,5.2,10,10,8.0,90,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.7,-6.7,100,101200,0,0,246,0,0,0,0,0,0,0,100,5.2,10,9,3.2,90,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-7.8,100,101200,0,0,236,0,0,0,0,0,0,0,90,3.1,10,8,4.8,2740,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.2,-7.2,100,101200,6,309,251,1,0,1,0,0,0,0,90,2.6,10,10,2.4,180,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.7,-6.7,100,101200,63,1374,253,20,0,20,1938,0,1951,623,90,2.1,10,10,2.0,240,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.6,-5.6,100,101200,144,1374,259,56,0,56,5466,0,5504,1550,110,2.6,10,10,1.6,270,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.0,-5.0,100,101200,205,1374,261,66,0,66,6476,0,6522,2047,70,3.6,10,10,2.0,180,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-3.9,-3.9,100,101200,239,1374,267,86,0,86,8462,0,8523,2575,70,3.6,10,10,2.0,180,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-3.3,-3.3,100,101300,245,1374,270,95,0,95,9351,0,9419,2743,60,4.1,10,10,2.0,180,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-3.9,-3.9,100,101200,222,1374,267,75,0,75,7369,0,7422,2304,70,3.6,10,10,2.0,180,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-3.9,-3.9,100,101200,171,1374,267,67,0,67,6555,0,6600,1878,60,3.1,10,10,2.0,180,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-3.3,-3.3,100,101200,96,1374,270,35,0,35,3401,0,3424,1028,50,4.1,10,10,2.0,150,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-3.3,-3.3,100,101200,16,836,270,6,0,6,578,0,582,208,70,4.1,10,10,1.6,150,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-3.3,-3.3,100,101200,0,0,270,0,0,0,0,0,0,0,70,4.1,10,10,1.6,180,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-3.9,-3.9,100,101200,0,0,267,0,0,0,0,0,0,0,70,4.1,10,10,6.4,430,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-3.9,-3.9,100,101200,0,0,267,0,0,0,0,0,0,0,70,4.1,10,10,3.2,240,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-3.9,-3.9,100,101300,0,0,267,0,0,0,0,0,0,0,70,3.1,10,10,3.2,240,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-4.4,-4.4,100,101300,0,0,264,0,0,0,0,0,0,0,110,3.6,10,10,3.2,150,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-4.4,-4.4,100,101300,0,0,264,0,0,0,0,0,0,0,80,4.1,10,10,8.0,400,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-4.4,-4.4,100,101300,0,0,264,0,0,0,0,0,0,0,70,5.2,10,10,6.4,610,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-4.4,-4.4,100,101300,0,0,264,0,0,0,0,0,0,0,90,4.1,10,10,4.8,460,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-4.4,-4.4,100,101400,0,0,264,0,0,0,0,0,0,0,70,4.1,10,10,4.8,370,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-3.9,-3.9,100,101300,0,0,267,0,0,0,0,0,0,0,70,6.7,10,10,4.0,180,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-3.9,-3.9,100,101400,0,0,267,0,0,0,0,0,0,0,80,6.7,10,10,4.0,180,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-3.9,-3.9,100,101400,0,0,267,0,0,0,0,0,0,0,70,6.7,10,10,4.0,150,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-3.9,100,101400,0,0,267,0,0,0,0,0,0,0,80,7.2,10,10,8.0,180,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-4.4,-4.4,100,101400,0,0,264,0,0,0,0,0,0,0,80,6.7,10,10,8.0,180,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.0,-5.0,100,101500,12,195,261,2,0,2,0,0,0,0,70,6.2,10,10,11.3,180,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.0,-5.0,100,101500,56,1375,261,22,0,22,2130,0,2144,636,70,6.7,10,10,11.3,240,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.0,-5.0,100,101500,136,1375,261,52,0,52,5071,0,5106,1451,60,8.2,10,10,11.3,310,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-4.4,-4.4,100,101500,197,1375,264,86,0,86,8431,0,8491,2240,70,6.7,10,10,4.8,210,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-4.4,-4.4,100,101600,231,1375,264,108,0,108,10620,0,10696,2722,60,7.7,10,10,4.8,310,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.0,-5.0,100,101600,237,1375,261,110,1,110,11669,47,11724,2800,70,7.2,10,10,8.0,310,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.6,-5.6,100,101900,213,1375,259,100,0,100,9822,0,9892,2510,60,6.7,10,10,11.3,310,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.6,-5.6,100,101600,162,1375,259,67,0,67,6552,0,6598,1817,40,6.2,10,10,11.3,310,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.1,-6.1,100,101700,88,1375,256,37,0,37,3595,0,3619,1015,60,7.7,10,10,11.3,310,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.7,-6.7,100,101700,12,699,253,8,0,8,771,0,776,250,50,7.7,10,10,11.3,310,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.7,-6.7,100,101700,0,0,253,0,0,0,0,0,0,0,50,7.7,10,10,11.3,340,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.7,-6.7,100,101800,0,0,253,0,0,0,0,0,0,0,50,8.8,10,10,11.3,310,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.7,-6.7,100,101800,0,0,253,0,0,0,0,0,0,0,50,8.2,10,10,11.3,460,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.1,-6.1,100,101800,0,0,256,0,0,0,0,0,0,0,50,7.7,10,10,11.3,370,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.1,-6.1,100,101900,0,0,256,0,0,0,0,0,0,0,50,7.2,10,10,11.3,430,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.1,100,101900,0,0,256,0,0,0,0,0,0,0,60,7.2,10,10,11.3,490,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.1,-6.1,100,102000,0,0,256,0,0,0,0,0,0,0,60,7.7,10,10,11.3,270,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.6,-5.6,100,102000,0,0,259,0,0,0,0,0,0,0,60,8.2,10,10,11.3,270,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.6,100,102000,0,0,259,0,0,0,0,0,0,0,60,7.7,10,10,11.3,270,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.6,-5.6,100,102100,0,0,259,0,0,0,0,0,0,0,50,8.8,10,10,11.3,270,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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.6,-5.6,100,102100,0,0,259,0,0,0,0,0,0,0,60,8.2,10,10,11.3,270,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.1,-6.1,100,102200,0,0,256,0,0,0,0,0,0,0,60,7.7,10,10,11.3,270,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.7,-6.7,100,102200,0,0,235,0,0,0,0,0,0,0,60,7.7,7,6,11.3,1830,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.2,-7.2,100,102200,0,0,232,0,0,0,0,0,0,0,60,8.2,8,6,11.3,1830,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.2,-7.2,100,102300,6,80,251,1,0,1,0,0,0,0,60,9.3,10,10,4.8,370,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.2,-7.2,100,102400,48,1376,251,14,0,14,1355,0,1364,457,70,8.8,10,10,4.8,310,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.7,-6.7,100,102400,128,1376,253,45,0,45,4387,0,4417,1310,60,9.3,10,10,3.2,240,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.2,-7.2,100,102500,188,1376,251,64,0,64,6273,0,6317,1924,70,10.3,10,10,3.2,270,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.2,-7.2,100,102500,223,1376,251,79,1,79,8571,32,8604,2361,60,8.8,10,10,3.2,270,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.7,-6.7,100,102600,228,1376,253,79,0,79,7771,0,7826,2400,60,7.7,10,10,3.2,270,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.2,-7.2,100,102600,204,1376,251,70,1,70,7617,26,7645,2122,60,8.2,10,10,3.2,240,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-7.8,100,102700,153,1376,248,52,0,52,5083,0,5119,1564,60,8.2,10,10,4.0,210,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-9.4,-9.4,100,102700,80,1376,226,27,19,26,2968,0,2866,804,50,7.7,8,7,11.3,240,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-10.6,100,102700,8,585,218,4,3,4,0,0,0,0,60,6.7,7,6,11.3,3660,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-10.6,-10.6,100,102700,0,0,235,0,0,0,0,0,0,0,60,7.7,10,10,11.3,240,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-10.6,-10.6,100,102800,0,0,235,0,0,0,0,0,0,0,60,7.2,10,10,11.3,210,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-10.0,-10.0,100,102800,0,0,238,0,0,0,0,0,0,0,60,7.2,10,10,8.0,210,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-8.9,100,102800,0,0,243,0,0,0,0,0,0,0,60,6.7,10,10,11.3,240,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-7.8,100,102800,0,0,248,0,0,0,0,0,0,0,70,7.2,10,10,11.3,370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-7.8,100,102900,0,0,248,0,0,0,0,0,0,0,80,7.2,10,10,11.3,340,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.3,100,102900,0,0,246,0,0,0,0,0,0,0,70,6.2,10,10,11.3,340,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.3,100,102900,0,0,246,0,0,0,0,0,0,0,50,6.2,10,10,11.3,310,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-8.9,100,102900,0,0,243,0,0,0,0,0,0,0,70,5.7,10,10,11.3,310,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-9.4,-9.4,100,102900,0,0,241,0,0,0,0,0,0,0,60,6.7,10,10,11.3,310,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-10.0,-10.0,100,102900,0,0,238,0,0,0,0,0,0,0,50,5.7,10,10,11.3,180,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-10.0,-10.0,100,102900,0,0,238,0,0,0,0,0,0,0,60,5.7,10,10,11.3,210,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-10.0,-10.0,100,102900,0,0,238,0,0,0,0,0,0,0,90,6.2,10,10,11.3,270,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-10.6,-11.1,96,102900,0,0,235,0,0,0,0,0,0,0,70,6.7,10,10,11.3,310,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-10.6,-11.1,96,102900,0,0,235,0,0,0,0,0,0,0,60,7.7,10,10,11.3,310,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-11.7,-11.7,100,102900,41,1342,230,7,2,7,821,0,821,256,60,7.2,10,10,4.8,310,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.8,-12.8,100,102900,120,1377,226,30,5,29,3356,0,3252,970,60,8.2,10,10,4.8,310,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.9,-13.9,100,102900,180,1377,205,100,154,78,10656,4339,8347,2034,60,7.7,8,6,4.8,310,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-14.4,-14.4,100,102900,214,1377,199,99,125,78,10723,3959,8481,2292,50,5.7,6,4,11.3,310,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-15.0,-15.0,100,102800,220,1377,195,121,322,67,13310,8682,7396,2145,60,6.7,6,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-14.4,-14.4,100,102800,196,1377,198,114,320,65,12445,7315,7121,1993,60,6.2,6,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.9,-13.9,100,102700,145,1377,201,67,181,46,7339,610,5055,1420,60,6.2,6,4,11.3,2740,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.8,-12.8,100,102700,71,1377,207,30,109,23,3310,0,2544,719,70,7.2,6,5,11.3,2740,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.3,100,102600,18,470,207,3,17,2,0,0,0,0,60,6.2,7,6,11.3,2740,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.8,-12.8,100,102600,0,0,215,0,0,0,0,0,0,0,60,7.2,8,8,11.3,2740,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.8,-12.8,100,102600,0,0,215,0,0,0,0,0,0,0,50,6.7,8,8,11.3,2740,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.8,-12.8,100,102500,0,0,215,0,0,0,0,0,0,0,50,6.2,8,8,11.3,2740,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.2,-12.2,100,102500,0,0,222,0,0,0,0,0,0,0,60,6.7,10,9,11.3,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.2,-12.2,100,102500,0,0,222,0,0,0,0,0,0,0,60,5.2,10,9,11.3,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-11.1,-11.7,96,102400,0,0,221,0,0,0,0,0,0,0,50,5.7,10,8,11.3,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-11.1,-11.1,100,102400,0,0,222,0,0,0,0,0,0,0,60,6.2,10,8,11.3,1830,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-11.1,-11.7,96,102400,0,0,232,0,0,0,0,0,0,0,60,5.2,10,10,11.3,2440,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-10.6,-11.7,92,102400,0,0,220,0,0,0,0,0,0,0,60,6.7,8,7,11.3,2440,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-11.1,-11.1,100,102400,0,0,218,0,0,0,0,0,0,0,50,6.2,8,7,11.3,2440,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-11.1,-11.7,96,102400,0,0,218,0,0,0,0,0,0,0,60,7.2,9,7,11.3,2440,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-11.7,-12.8,92,102400,0,0,215,0,0,0,0,0,0,0,60,6.2,8,7,11.3,2440,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.2,-12.8,96,102400,0,0,211,0,0,0,0,0,0,0,70,5.2,7,6,11.3,2440,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.8,-12.8,100,102400,0,0,209,0,0,0,0,0,0,0,80,4.6,7,6,11.3,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.8,-12.8,100,102400,0,0,209,0,0,0,0,0,0,0,60,4.6,7,6,11.3,1830,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.9,-13.9,100,102400,34,1228,200,13,45,11,1458,0,1236,360,50,4.1,6,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.9,-13.9,100,102400,112,1377,200,57,149,44,6127,0,4746,1211,60,4.6,6,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.3,-13.3,100,102400,172,1377,202,97,253,63,10481,4587,6833,1813,60,5.2,7,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.3,-13.3,100,102400,206,1377,202,116,291,70,12631,7702,7650,2121,50,5.2,7,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.9,-13.9,100,102400,211,1377,201,112,272,68,12259,7141,7469,2120,60,4.6,6,4,11.3,3050,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.9,-13.9,100,102500,187,1377,201,97,125,79,10373,3701,8483,2120,70,5.2,6,4,11.3,6100,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-14.4,-14.4,100,102500,136,1377,198,71,228,46,7740,441,5031,1382,70,4.1,4,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-14.4,-14.4,100,102500,63,1377,198,24,91,19,2670,0,2119,612,60,3.6,4,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-15.0,-15.0,100,102500,12,356,195,2,13,1,0,0,0,0,70,3.1,4,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-15.0,-15.0,100,102500,0,0,195,0,0,0,0,0,0,0,80,3.1,5,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-15.0,-15.0,100,102600,0,0,197,0,0,0,0,0,0,0,70,3.1,5,4,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-15.0,-15.0,100,102600,0,0,200,0,0,0,0,0,0,0,80,3.1,8,6,11.3,6100,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-15.0,-15.0,100,102600,0,0,216,0,0,0,0,0,0,0,90,3.6,10,10,11.3,180,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.9,-13.9,100,102600,0,0,221,0,0,0,0,0,0,0,90,4.1,10,10,11.3,180,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-14.4,-14.4,100,102700,0,0,219,0,0,0,0,0,0,0,110,4.6,10,10,11.3,150,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.9,-13.9,100,102700,0,0,221,0,0,0,0,0,0,0,100,5.2,10,10,11.3,150,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-14.4,-14.4,100,102700,0,0,219,0,0,0,0,0,0,0,100,3.6,10,10,11.3,150,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-14.4,-14.4,100,102800,0,0,203,0,0,0,0,0,0,0,90,2.1,10,6,11.3,150,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.3,-13.3,100,102800,0,0,209,0,0,0,0,0,0,0,90,2.1,10,7,11.3,310,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.8,-12.8,100,102800,0,0,219,0,0,0,0,0,0,0,90,3.1,10,9,11.3,370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.2,-12.2,100,102800,0,0,228,0,0,0,0,0,0,0,100,3.1,10,10,11.3,370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.2,-12.2,100,102800,0,0,228,0,0,0,0,0,0,0,110,2.1,10,10,11.3,340,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-11.1,-11.1,100,102800,0,0,233,0,0,0,0,0,0,0,120,3.1,10,10,11.3,340,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-11.1,-11.1,100,102900,0,0,233,0,0,0,0,0,0,0,110,3.6,10,10,11.3,370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-10.6,-10.6,100,102900,28,1137,235,10,8,10,1120,0,1122,325,140,3.1,10,10,4.8,400,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-11.1,-11.1,100,102900,104,1378,233,30,4,30,3310,0,3319,948,130,3.6,10,10,11.3,520,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-11.1,-11.1,100,103000,164,1378,233,45,1,45,4979,5,4994,1462,160,3.6,10,10,8.0,610,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-10.6,-10.6,100,103000,198,1378,235,71,5,70,7699,126,7619,2071,160,3.1,10,10,6.4,640,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-10.6,-10.6,100,103000,203,1378,235,81,3,80,8708,93,8636,2242,140,3.1,10,10,11.3,640,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-10.6,-10.6,100,103000,179,1378,235,69,0,69,6763,0,6810,1949,150,3.1,10,10,11.3,610,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-11.1,-11.1,100,103000,128,1378,233,44,1,44,4788,0,4804,1310,150,2.6,10,10,11.3,700,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-11.1,-11.1,100,103100,55,1378,222,25,54,23,2715,0,2505,666,160,2.1,9,8,11.3,700,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.2,-12.2,100,103100,30,241,209,5,20,3,0,0,0,0,160,2.6,7,5,11.3,2440,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.3,-13.3,100,103100,0,0,213,0,0,0,0,0,0,0,180,3.6,9,8,11.3,980,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-14.4,96,103100,0,0,202,0,0,0,0,0,0,0,130,2.6,7,5,11.3,2440,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.9,-14.4,96,103100,0,0,202,0,0,0,0,0,0,0,220,2.6,7,5,8.0,2440,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-15.6,-16.1,96,103100,0,0,193,0,0,0,0,0,0,0,190,3.6,5,3,4.8,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-18.3,-19.4,90,103200,0,0,181,0,0,0,0,0,0,0,180,3.6,3,2,1.6,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-19.4,-20.0,95,103200,0,0,175,0,0,0,0,0,0,0,190,2.6,1,1,4.8,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-16.1,-16.7,96,103200,0,0,183,0,0,0,0,0,0,0,0,0.0,0,0,9.7,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-15.6,-15.6,100,103200,0,0,185,0,0,0,0,0,0,0,0,0.0,0,0,9.7,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-15.6,-15.6,100,103200,0,0,185,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-16.7,-16.7,100,103200,0,0,181,0,0,0,0,0,0,0,100,2.6,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-16.7,-16.7,100,103300,0,0,181,0,0,0,0,0,0,0,100,2.6,0,0,2.4,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-17.8,-17.8,100,103300,0,0,188,0,0,0,0,0,0,0,90,3.1,5,5,1.6,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-18.3,-18.3,100,103200,0,0,186,0,0,0,0,0,0,0,110,3.1,5,5,1.6,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-18.3,-18.3,100,103200,0,0,190,0,0,0,0,0,0,0,100,3.1,7,7,4.8,520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.8,-12.8,100,103200,0,0,226,0,0,0,0,0,0,0,110,3.1,10,10,11.3,550,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-11.7,-11.7,100,103200,22,1023,230,4,3,4,477,0,477,148,110,3.1,10,10,11.3,550,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-10.6,-10.6,100,103200,96,1379,235,17,5,17,1953,0,1956,609,110,3.6,10,10,11.3,490,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-10.0,-10.0,100,103200,156,1379,238,48,4,48,5259,22,5276,1489,90,4.1,10,10,11.3,490,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-8.9,100,103200,189,1379,236,79,95,65,8585,1998,7089,1947,90,6.2,10,9,11.3,460,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-11.7,-11.7,100,103200,194,1379,200,109,402,48,12184,5159,5381,1637,100,8.8,2,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.3,-13.3,100,103200,171,1379,194,93,360,44,10358,2343,4915,1470,90,6.2,2,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.9,-13.9,100,103200,120,1379,200,60,95,51,6415,309,5474,1356,90,6.7,8,3,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.3,-13.3,100,103100,47,1379,205,16,40,14,1797,0,1575,463,100,6.2,8,5,11.3,180,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-14.4,-14.4,100,103000,12,103,198,2,2,2,0,0,0,0,110,6.2,7,3,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-14.4,-14.4,100,103000,0,0,198,0,0,0,0,0,0,0,90,6.2,5,3,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-15.0,-15.0,100,102900,0,0,195,0,0,0,0,0,0,0,90,6.7,4,3,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-15.0,-15.0,100,102800,0,0,195,0,0,0,0,0,0,0,90,6.7,4,3,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-15.0,-15.0,100,102800,0,0,193,0,0,0,0,0,0,0,90,7.2,2,2,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-15.0,-15.0,100,102800,0,0,193,0,0,0,0,0,0,0,90,6.2,2,2,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-15.6,-15.6,100,102700,0,0,185,0,0,0,0,0,0,0,90,6.2,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-15.0,-15.0,100,102600,0,0,187,0,0,0,0,0,0,0,90,7.2,2,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-14.4,-14.4,100,102500,0,0,189,0,0,0,0,0,0,0,100,7.7,2,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.3,-13.3,100,102400,0,0,197,0,0,0,0,0,0,0,60,7.7,4,1,4.8,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.8,-12.8,100,102300,0,0,199,0,0,0,0,0,0,0,80,8.2,4,1,4.8,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.2,-12.2,100,102200,0,0,202,0,0,0,0,0,0,0,80,6.7,3,1,4.8,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-10.0,-10.0,100,102100,0,0,220,0,0,0,0,0,0,0,80,6.7,10,6,4.8,120,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-9.4,-9.4,100,102100,0,0,221,0,0,0,0,0,0,0,80,8.8,10,5,3.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-9.4,-9.4,100,102000,0,0,221,0,0,0,0,0,0,0,60,7.7,10,5,3.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-9.4,-9.4,100,101900,0,0,218,0,0,0,0,0,0,0,50,7.7,8,3,3.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-9.4,-9.4,100,101800,17,908,221,6,12,5,697,0,581,177,70,7.7,10,5,3.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-9.4,-9.4,100,101800,89,1380,229,22,17,21,2470,0,2363,705,60,7.2,10,8,11.3,210,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-10.6,-10.6,100,101700,148,1380,211,64,142,47,6993,505,5152,1435,60,6.7,6,2,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-10.6,-10.6,100,101600,181,1380,216,85,97,71,9133,2304,7659,1976,60,6.7,10,5,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-10.0,-10.0,100,101500,186,1380,218,97,137,77,10379,3801,8273,2082,50,7.2,10,5,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-8.9,100,101400,162,1380,221,74,35,69,7898,714,7394,1828,60,7.7,10,4,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-9.4,96,101300,111,1380,225,54,36,51,5738,61,5441,1298,60,8.2,10,6,11.3,6100,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-9.4,-9.4,100,101300,39,1368,223,10,8,10,1144,0,1145,347,50,6.2,10,6,11.3,6100,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-9.4,-9.4,100,101300,0,0,226,0,0,0,0,0,0,0,60,6.7,10,7,11.3,6100,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-9.4,96,101200,0,0,227,0,0,0,0,0,0,0,60,6.7,10,7,11.3,6100,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-9.4,-10.0,96,101200,0,0,225,0,0,0,0,0,0,0,60,7.2,10,7,11.3,6100,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-9.4,-10.0,96,101200,0,0,229,0,0,0,0,0,0,0,70,7.7,10,8,11.3,6100,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-9.4,-10.6,92,101200,0,0,228,0,0,0,0,0,0,0,60,6.2,10,8,11.3,2740,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-9.4,-10.6,92,101200,0,0,228,0,0,0,0,0,0,0,60,6.7,10,8,11.3,2440,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-9.4,-10.0,96,101200,0,0,234,0,0,0,0,0,0,0,70,5.2,10,9,11.3,2440,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-10.0,96,101200,0,0,229,0,0,0,0,0,0,0,60,8.2,10,8,4.8,2440,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-9.4,-10.0,96,101200,0,0,229,0,0,0,0,0,0,0,60,7.7,10,8,4.8,180,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-9.4,-9.4,100,101200,0,0,241,0,0,0,0,0,0,0,70,7.2,10,10,4.8,180,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-9.4,-9.4,100,101200,0,0,241,0,0,0,0,0,0,0,70,6.7,10,10,4.8,180,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-9.4,-9.4,100,101300,0,0,241,0,0,0,0,0,0,0,80,7.2,10,10,4.8,210,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-8.9,100,101300,0,0,243,0,0,0,0,0,0,0,70,7.2,10,10,4.8,210,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-10.0,92,101400,0,0,242,0,0,0,0,0,0,0,80,7.7,10,10,8.0,240,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-10.0,92,101400,0,0,242,0,0,0,0,0,0,0,80,6.2,10,10,8.0,240,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-10.0,92,101400,0,0,242,0,0,0,0,0,0,0,70,7.2,10,10,11.3,210,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-9.4,96,101500,13,794,243,0,0,0,0,0,0,0,80,8.2,10,10,6.4,210,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.9,96,101600,81,1381,245,19,0,19,1845,0,1857,640,70,8.8,10,10,4.0,180,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.9,96,101600,140,1381,245,51,4,50,5516,17,5427,1444,80,8.2,10,10,1.6,180,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-8.3,96,101700,173,1381,248,44,2,44,4899,12,4913,1472,80,7.2,10,10,2.4,180,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-7.8,100,101700,178,1381,248,49,0,49,4800,0,4833,1602,80,7.7,10,10,1.6,180,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.7,-7.2,96,101800,154,1381,253,58,1,58,6252,12,6275,1648,80,7.2,10,10,1.6,180,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.1,-6.1,100,101800,103,1381,256,30,0,30,2919,0,2938,955,80,7.7,10,10,1.6,150,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.1,-6.1,100,101800,32,1254,256,9,0,9,870,0,876,311,80,8.2,10,10,2.4,150,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.6,-6.1,96,101800,0,0,258,0,0,0,0,0,0,0,70,8.8,10,10,2.4,490,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.6,-6.1,96,101900,0,0,258,0,0,0,0,0,0,0,80,8.8,10,10,4.8,180,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.6,-6.1,96,101900,0,0,258,0,0,0,0,0,0,0,90,8.2,10,10,6.4,150,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.6,-5.6,100,101900,0,0,259,0,0,0,0,0,0,0,80,8.2,10,10,4.8,150,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.0,-5.6,96,101900,0,0,261,0,0,0,0,0,0,0,70,8.8,10,10,2.4,150,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.0,-5.6,96,101900,0,0,261,0,0,0,0,0,0,0,100,9.8,10,10,2.4,150,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.0,-5.6,96,101900,0,0,261,0,0,0,0,0,0,0,100,8.8,10,10,1.6,150,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.0,-5.6,96,101900,0,0,261,0,0,0,0,0,0,0,90,8.8,10,10,1.6,150,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-4.4,-5.0,96,101900,0,0,264,0,0,0,0,0,0,0,80,8.8,10,10,1.6,150,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.0,96,101900,0,0,264,0,0,0,0,0,0,0,90,8.8,10,10,1.6,150,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-3.9,-4.4,96,101800,0,0,266,0,0,0,0,0,0,0,90,8.2,10,10,4.8,150,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.0,96,101800,0,0,264,0,0,0,0,0,0,0,80,9.3,10,10,1.6,150,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.0,96,101700,0,0,264,0,0,0,0,0,0,0,90,9.3,10,10,4.8,150,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1981,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,-4.4,-5.0,96,101800,0,0,264,0,0,0,0,0,0,0,90,8.8,10,10,4.8,150,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.6,96,101800,0,0,261,0,0,0,0,0,0,0,80,9.3,10,10,4.8,150,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.0,-5.6,96,101800,0,0,261,0,0,0,0,0,0,0,80,9.3,10,10,1.3,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.0,-5.6,96,101800,9,679,261,2,0,2,0,0,0,0,80,8.2,10,10,1.6,150,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.0,-5.6,96,101800,73,1381,261,28,0,28,2716,0,2734,799,80,9.3,10,10,1.6,150,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.0,-5.6,96,101800,132,1381,261,55,0,55,5362,0,5399,1455,90,9.3,10,10,3.2,150,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.0,-5.6,96,101700,165,1381,261,65,0,65,6356,0,6400,1794,80,10.3,10,10,3.2,150,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.0,-6.1,92,101700,170,1381,260,65,1,65,6993,18,7020,1831,70,8.8,10,10,8.0,150,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.6,-6.1,96,101700,146,1381,258,57,0,57,5566,0,5604,1585,80,10.3,10,10,4.8,180,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.0,-5.6,96,101700,95,1381,261,40,0,40,3888,0,3915,1084,90,10.3,10,10,2.4,180,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.0,-6.1,92,101700,26,1140,260,9,0,9,869,0,875,303,90,9.8,10,10,2.4,490,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.6,-6.7,92,101700,0,0,257,0,0,0,0,0,0,0,90,9.8,10,10,1.6,310,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-5.6,-6.7,92,101600,0,0,257,0,0,0,0,0,0,0,80,10.3,10,10,1.6,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.1,-7.2,92,101600,0,0,255,0,0,0,0,0,0,0,70,11.3,10,10,1.6,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.7,-7.2,96,101600,0,0,253,0,0,0,0,0,0,0,80,10.3,10,10,1.6,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.7,-7.2,96,101600,0,0,253,0,0,0,0,0,0,0,80,10.8,10,10,1.6,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.7,-7.8,92,101500,0,0,252,0,0,0,0,0,0,0,80,10.3,10,10,1.6,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.7,-7.2,96,101500,0,0,253,0,0,0,0,0,0,0,80,10.8,10,10,1.6,310,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.7,-7.2,96,101500,0,0,253,0,0,0,0,0,0,0,70,12.9,10,10,1.6,240,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.1,-6.7,96,101400,0,0,256,0,0,0,0,0,0,0,80,12.9,10,10,1.6,210,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.7,-6.7,100,101400,0,0,253,0,0,0,0,0,0,0,80,11.3,10,10,1.6,240,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.7,-6.7,100,101300,0,0,253,0,0,0,0,0,0,0,70,17.5,10,10,1.6,240,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.7,-7.2,96,101300,0,0,253,0,0,0,0,0,0,0,60,13.4,10,10,1.6,270,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.7,-7.2,96,101200,0,0,253,0,0,0,0,0,0,0,60,12.4,10,10,1.6,310,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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.7,-7.2,96,101200,0,0,253,0,0,0,0,0,0,0,70,13.4,10,10,1.6,370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,92,101200,0,0,252,0,0,0,0,0,0,0,70,11.3,10,10,1.6,370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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.8,96,101100,0,0,250,0,0,0,0,0,0,0,70,12.9,10,10,1.0,370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.2,-7.8,96,101100,6,541,250,3,0,3,0,0,0,0,70,12.4,10,10,1.0,370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.7,-7.8,92,101100,66,1382,252,23,0,23,2230,0,2245,689,60,11.8,10,10,1.6,370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.7,-7.8,92,101100,124,1382,252,52,1,52,5549,3,5571,1372,70,11.8,10,10,1.6,340,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.7,-7.2,96,101100,157,1382,253,65,0,65,6354,0,6398,1736,60,10.8,10,10,2.4,340,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.7,-7.2,96,101100,162,1382,253,59,0,59,5770,0,5810,1701,70,10.3,10,10,2.4,340,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.1,-7.2,92,101100,138,1382,255,55,0,55,5368,0,5405,1509,70,10.3,10,10,2.4,340,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.1,-7.2,92,101100,87,1382,255,33,0,33,3207,0,3228,950,70,10.8,10,10,2.4,340,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-6.7,-7.2,96,101100,20,1002,253,9,0,9,869,0,874,294,70,10.8,10,10,2.4,340,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.2,-7.8,96,101100,0,0,250,0,0,0,0,0,0,0,70,11.8,10,10,2.4,340,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.2,-7.8,96,101100,0,0,250,0,0,0,0,0,0,0,70,14.4,10,10,2.4,340,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.2,-7.8,96,101200,0,0,250,0,0,0,0,0,0,0,70,11.3,10,10,2.4,340,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.2,-7.8,96,101200,0,0,250,0,0,0,0,0,0,0,60,12.4,10,10,2.4,340,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.2,-7.8,96,101100,0,0,250,0,0,0,0,0,0,0,80,12.4,10,10,2.4,340,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.2,-7.8,96,101100,0,0,250,0,0,0,0,0,0,0,70,10.8,10,10,2.4,340,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.2,-7.8,96,101100,0,0,250,0,0,0,0,0,0,0,70,11.3,10,10,2.4,340,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.2,-7.8,96,101100,0,0,250,0,0,0,0,0,0,0,60,12.4,10,10,2.4,340,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-7.8,-8.3,96,101100,0,0,248,0,0,0,0,0,0,0,60,12.9,10,10,2.4,370,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.9,96,101100,0,0,245,0,0,0,0,0,0,0,60,12.9,10,10,2.4,370,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.3,-8.9,96,101100,0,0,245,0,0,0,0,0,0,0,70,12.4,10,10,2.4,400,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-9.4,96,101000,0,0,243,0,0,0,0,0,0,0,70,12.9,10,10,1.6,400,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,101000,0,0,241,0,0,0,0,0,0,0,70,12.9,10,10,1.6,370,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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.9,-9.4,96,101000,0,0,243,0,0,0,0,0,0,0,70,12.4,10,10,1.6,370,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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.9,-9.4,96,101000,0,0,243,0,0,0,0,0,0,0,60,11.8,10,10,1.6,370,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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,-8.9,-9.4,96,101000,0,0,231,0,0,0,0,0,0,0,70,12.9,8,8,1.3,430,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1981,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.9,-10.0,92,101000,6,426,227,1,2,1,0,0,0,0,60,12.4,7,7,1.3,460,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-9.4,-10.0,96,101000,58,1383,222,24,3,24,2594,0,2602,678,60,12.4,6,6,1.3,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-9.4,-10.6,92,101000,116,1383,222,52,87,44,5602,0,4757,1232,70,10.8,6,6,1.3,370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1981,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,-10.0,-11.1,92,101100,149,1383,226,51,42,46,5588,134,5056,1424,60,13.4,8,8,1.3,370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-10.0,-11.1,92,101100,154,1383,226,56,32,52,6091,264,5676,1553,60,12.9,8,8,1.6,2740,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-10.6,-11.7,92,101100,130,1383,223,48,46,44,5225,0,4805,1312,60,12.9,8,8,1.6,3660,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-11.7,-12.8,92,101100,79,1383,218,23,6,23,2552,0,2558,738,50,11.8,10,8,1.6,3050,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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.7,-12.8,92,101100,15,887,218,7,2,7,794,0,795,235,50,12.4,10,8,2.4,3050,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.2,-13.3,92,101200,0,0,210,0,0,0,0,0,0,0,60,12.9,10,6,2.4,3050,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.8,-13.3,96,101200,0,0,211,0,0,0,0,0,0,0,50,11.3,10,7,2.4,3050,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.8,-13.9,91,101300,0,0,208,0,0,0,0,0,0,0,50,10.3,10,6,2.4,3050,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.8,-14.4,87,101300,0,0,208,0,0,0,0,0,0,0,40,9.8,10,6,2.4,6100,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.3,-14.4,91,101300,0,0,201,0,0,0,0,0,0,0,50,10.3,4,3,2.4,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.3,-14.4,91,101400,0,0,196,0,0,0,0,0,0,0,50,9.8,3,1,2.4,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.3,-13.9,96,101400,0,0,200,0,0,0,0,0,0,0,40,11.8,5,2,2.4,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.9,-13.9,100,101500,0,0,203,0,0,0,0,0,0,0,50,9.3,7,5,2.4,6100,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.9,-14.4,96,101500,0,0,210,0,0,0,0,0,0,0,60,9.3,8,8,1.3,6100,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1981,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,-14.4,-15.0,96,101500,0,0,212,0,0,0,0,0,0,0,50,10.8,10,9,1.3,6100,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1981,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,-14.4,-14.4,100,101600,0,0,219,0,0,0,0,0,0,0,50,10.8,10,10,1.3,6100,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1981,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,-14.4,-14.4,100,101600,0,0,219,0,0,0,0,0,0,0,50,10.3,10,10,1.3,6100,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1981,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,-14.4,-15.6,91,101600,0,0,218,0,0,0,0,0,0,0,50,9.3,10,10,1.3,6100,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.9,-15.0,91,101700,0,0,197,0,0,0,0,0,0,0,50,9.8,4,2,4.8,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.9,-15.6,87,101700,0,0,201,0,0,0,0,0,0,0,50,9.3,5,5,4.8,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.9,-14.4,96,101700,0,0,204,0,0,0,0,0,0,0,40,9.3,7,6,4.8,370,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1981,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,-15.0,-15.0,100,101800,12,311,203,2,5,2,0,0,0,0,50,8.8,8,7,2.4,340,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1981,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,-15.0,-15.0,100,101800,51,1384,200,14,55,12,1591,0,1366,411,50,7.7,7,6,2.4,340,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1981,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.6,-16.1,96,101800,108,1384,193,50,180,35,5465,0,3837,1058,50,8.2,4,3,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1981,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,-15.6,-16.1,96,101800,141,1384,193,72,229,47,7843,714,5137,1406,40,8.8,4,3,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1981,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,-15.6,-15.6,100,101800,146,1384,191,78,268,47,8523,1065,5152,1431,40,8.8,3,2,2.4,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1981,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,-15.6,-15.6,100,101800,122,1384,193,64,249,39,7005,0,4282,1191,40,7.7,4,3,2.4,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1981,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,-15.6,-16.1,96,101700,72,1384,194,24,99,18,2700,0,2029,604,40,8.2,5,4,1.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1981,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,-16.1,-16.7,96,101700,11,750,192,6,54,4,705,0,470,144,40,7.7,5,4,1.6,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1981,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,-16.7,-17.2,96,101700,0,0,190,0,0,0,0,0,0,0,50,6.7,5,4,1.6,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1981,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,-16.1,-16.1,100,101700,0,0,194,0,0,0,0,0,0,0,40,8.2,6,5,2.4,310,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1981,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,-16.7,-17.2,96,101700,0,0,193,0,0,0,0,0,0,0,40,8.2,6,6,2.4,340,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1981,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,-17.2,-17.8,95,101700,0,0,197,0,0,0,0,0,0,0,30,7.7,8,8,2.4,310,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1981,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,-17.2,-17.2,100,101700,0,0,197,0,0,0,0,0,0,0,30,7.7,8,8,2.4,240,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1981,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,-16.7,-17.2,96,101700,0,0,209,0,0,0,0,0,0,0,40,7.7,10,10,2.4,270,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1981,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,-17.2,-17.2,100,101700,0,0,197,0,0,0,0,0,0,0,10,7.2,8,8,2.4,270,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1981,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,-17.2,-17.2,100,101700,0,0,207,0,0,0,0,0,0,0,10,9.3,10,10,2.4,270,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1981,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,-17.2,-17.2,100,101700,0,0,194,0,0,0,0,0,0,0,20,8.2,7,7,2.4,240,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1981,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,-16.7,-17.2,96,101700,0,0,199,0,0,0,0,0,0,0,30,8.8,8,8,2.4,270,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1981,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,-16.7,-17.8,91,101600,0,0,198,0,0,0,0,0,0,0,30,8.2,8,8,2.4,270,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1981,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,-16.1,-17.2,91,101600,0,0,205,0,0,0,0,0,0,0,20,8.2,9,9,2.4,240,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1981,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,-16.7,-17.8,91,101600,0,0,208,0,0,0,0,0,0,0,30,9.3,10,10,2.4,310,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1981,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,-17.2,-17.8,95,101600,0,0,207,0,0,0,0,0,0,0,40,7.7,10,10,2.4,340,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1981,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,-17.8,-18.3,96,101500,0,0,204,0,0,0,0,0,0,0,50,9.3,10,10,2.4,310,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1981,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,-17.8,-18.3,96,101500,0,0,204,0,0,0,0,0,0,0,50,8.8,10,10,2.4,310,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1981,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,-18.3,-18.3,100,101500,1,173,203,0,0,0,0,0,0,0,40,8.2,10,10,2.4,310,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1981,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,-17.8,83,101500,44,1385,212,10,2,10,1145,0,1146,348,40,7.7,10,10,1.6,310,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1981,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,-19.4,79,101500,100,1385,194,37,15,35,4023,0,3818,1026,30,7.7,10,7,2.0,310,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1981,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.7,-18.3,87,101400,133,1385,195,60,29,57,6400,282,6104,1487,40,9.3,10,7,2.0,310,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1981,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,-15.6,-17.8,83,101400,138,1385,198,53,62,46,5776,130,5030,1378,30,7.7,10,7,2.0,340,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1981,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,-17.8,83,101300,114,1385,198,36,18,34,3966,0,3756,1067,40,8.8,10,7,2.0,340,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1981,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,-16.1,-18.3,83,101300,64,1385,196,18,7,18,2012,0,2016,589,40,8.8,10,7,2.0,340,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1981,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,-16.1,-18.3,83,101300,7,635,196,1,3,1,0,0,0,0,40,9.8,10,7,2.0,310,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1981,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,-16.7,-18.9,83,101300,0,0,194,0,0,0,0,0,0,0,50,9.3,10,7,2.0,310,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1981,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,-16.1,-17.8,87,101300,0,0,197,0,0,0,0,0,0,0,40,9.3,10,7,2.0,310,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1981,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,-16.1,-18.3,83,101300,0,0,193,0,0,0,0,0,0,0,50,10.8,5,5,2.0,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1981,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.1,-18.3,83,101300,0,0,191,0,0,0,0,0,0,0,50,9.3,5,4,2.0,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1981,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,-15.0,-17.2,83,101300,0,0,204,0,0,0,0,0,0,0,50,9.3,8,8,2.0,3350,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1981,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,-15.6,-17.2,87,101300,0,0,212,0,0,0,0,0,0,0,40,8.2,10,10,2.0,3350,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1981,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.4,-16.1,87,101300,0,0,204,0,0,0,0,0,0,0,50,8.8,10,7,2.0,3350,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.9,-16.1,83,101300,0,0,219,0,0,0,0,0,0,0,50,8.8,10,10,2.0,3350,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.9,-15.6,87,101300,0,0,219,0,0,0,0,0,0,0,40,7.7,10,10,2.0,3350,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1981,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,-14.4,-16.1,87,101300,0,0,217,0,0,0,0,0,0,0,40,8.8,10,10,2.0,3050,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1981,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,-15.6,-18.3,79,101300,0,0,211,0,0,0,0,0,0,0,40,9.3,10,10,2.0,3050,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1981,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,-16.1,-18.3,83,101300,0,0,210,0,0,0,0,0,0,0,40,7.7,10,10,2.0,3050,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1981,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,-15.6,-18.3,79,101300,0,0,211,0,0,0,0,0,0,0,40,8.2,10,10,2.0,3050,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1981,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,-15.6,-17.2,87,101300,0,0,212,0,0,0,0,0,0,0,40,7.7,10,10,2.0,3050,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.9,-15.0,91,101300,0,0,220,0,0,0,0,0,0,0,40,8.8,10,10,2.0,3050,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1981,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,-15.0,87,101300,0,0,222,0,0,0,0,0,0,0,30,8.2,10,10,2.0,3050,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.8,-13.3,96,101300,0,58,225,0,0,0,0,0,0,0,50,7.2,10,10,6.4,2130,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.2,-13.3,92,101300,36,1385,227,11,3,11,1239,0,1241,365,50,9.3,10,10,3.2,790,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.2,-13.3,92,101300,93,1385,227,22,0,22,2140,0,2155,739,50,10.3,10,10,4.8,880,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.3,-15.0,87,101300,125,1385,222,35,2,35,3870,0,3881,1121,40,9.3,10,10,4.8,880,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.3,-15.0,87,101400,130,1385,222,46,2,46,4988,1,5005,1340,30,9.3,10,10,2.4,980,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.9,-15.6,87,101300,106,1385,219,34,2,34,3725,0,3736,1039,30,9.8,10,10,2.4,2130,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-15.0,-17.8,80,101400,57,1385,214,15,3,15,1689,0,1693,502,50,8.8,10,10,4.8,980,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-15.6,-17.8,83,101400,6,496,206,1,0,1,0,0,0,0,40,8.2,10,9,2.4,980,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-15.6,-18.3,79,101400,0,0,201,0,0,0,0,0,0,0,50,8.2,9,8,2.4,980,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-16.1,-18.9,79,101400,0,0,199,0,0,0,0,0,0,0,40,8.8,8,8,4.8,790,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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.1,-18.3,83,101400,0,0,210,0,0,0,0,0,0,0,50,7.2,10,10,4.8,790,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-18.3,83,101400,0,0,210,0,0,0,0,0,0,0,40,8.2,10,10,6.4,790,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-18.3,83,101400,0,0,200,0,0,0,0,0,0,0,40,8.2,8,8,6.4,790,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-17.2,83,101300,0,0,204,0,0,0,0,0,0,0,50,7.7,8,8,6.4,790,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.3,-15.6,84,101300,0,0,215,0,0,0,0,0,0,0,50,8.8,10,9,4.8,790,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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.9,-14.4,96,101300,0,0,220,0,0,0,0,0,0,0,40,7.7,10,10,4.8,270,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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.3,-15.0,87,101300,0,0,222,0,0,0,0,0,0,0,30,7.7,10,10,4.8,240,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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.3,-15.0,87,101300,0,0,222,0,0,0,0,0,0,0,50,6.7,10,10,4.8,240,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.3,-15.6,84,101300,0,0,221,0,0,0,0,0,0,0,30,6.7,10,10,11.3,270,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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.3,-15.0,87,101300,0,0,222,0,0,0,0,0,0,0,30,7.2,10,10,11.3,880,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-14.4,91,101300,0,0,222,0,0,0,0,0,0,0,40,6.7,10,10,11.3,880,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.3,-14.4,91,101200,0,0,222,0,0,0,0,0,0,0,50,6.2,10,10,11.3,460,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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.8,-15.0,84,101200,0,0,217,0,0,0,0,0,0,0,60,6.7,10,9,11.3,490,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-15.6,76,101200,0,0,214,0,0,0,0,0,0,0,40,6.7,8,8,11.3,550,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-15.0,84,101200,0,0,213,0,0,0,0,0,0,0,360,6.2,10,8,11.3,550,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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.8,-16.1,76,101200,30,1305,216,5,3,5,595,0,595,186,20,6.2,10,9,11.3,490,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.8,-15.0,84,101200,85,1386,224,24,2,24,2661,0,2667,767,360,7.7,10,10,2.4,430,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.8,-15.0,84,101100,118,1386,224,25,4,25,2828,0,2834,865,360,7.2,10,10,1.6,370,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.8,-16.7,73,101100,122,1386,222,34,1,34,3763,0,3774,1091,20,6.2,10,10,6.4,550,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.8,-15.6,80,101100,98,1386,223,24,3,24,2691,0,2697,803,360,6.2,10,10,6.4,430,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.3,-14.4,91,101000,49,1386,222,9,0,9,872,0,878,326,40,5.2,10,10,1.3,400,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.8,-14.4,87,101000,6,358,224,1,0,1,0,0,0,0,40,5.2,10,10,2.4,370,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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.8,-13.9,91,101000,0,0,225,0,0,0,0,0,0,0,50,4.1,10,10,6.4,370,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.2,-12.8,96,101000,0,0,228,0,0,0,0,0,0,0,50,4.1,10,10,8.0,370,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.8,96,101000,0,0,228,0,0,0,0,0,0,0,60,4.1,10,10,8.0,2130,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.2,-12.8,96,101000,0,0,228,0,0,0,0,0,0,0,70,3.6,10,10,11.3,2130,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.2,-12.8,96,101000,0,0,228,0,0,0,0,0,0,0,80,3.6,10,10,11.3,2130,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-11.7,-12.2,96,101000,0,0,230,0,0,0,0,0,0,0,50,5.7,10,10,11.3,2130,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-11.1,-12.2,92,101000,0,0,232,0,0,0,0,0,0,0,360,5.2,10,10,8.0,370,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-10.6,-12.2,88,100900,0,0,234,0,0,0,0,0,0,0,360,6.7,10,10,8.0,400,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-11.7,-13.3,88,100900,0,0,229,0,0,0,0,0,0,0,350,6.7,10,10,6.4,400,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-11.7,-12.8,92,100900,0,0,229,0,0,0,0,0,0,0,10,6.7,10,10,4.8,400,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.2,-13.3,92,100900,0,0,227,0,0,0,0,0,0,0,350,7.7,10,10,4.8,400,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.2,-12.8,96,100900,0,0,228,0,0,0,0,0,0,0,360,7.2,10,10,4.8,400,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.2,-13.3,92,100900,0,0,227,0,0,0,0,0,0,0,10,7.2,10,10,4.8,370,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.2,-13.3,92,100900,0,0,227,0,0,0,0,0,0,0,350,7.2,10,10,8.0,370,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-12.2,-13.3,92,100900,0,0,227,0,0,0,0,0,0,0,340,7.2,10,10,9.7,370,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.3,-14.4,91,100900,0,0,222,0,0,0,0,0,0,0,360,7.2,10,10,9.7,370,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.9,-14.4,96,100900,0,0,214,0,0,0,0,0,0,0,340,7.2,10,9,6.4,340,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.9,-15.0,91,100900,23,1190,214,4,3,4,480,0,480,150,360,7.2,10,9,11.3,310,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.9,-15.0,91,100800,78,1387,214,20,8,19,2247,0,2139,635,350,7.2,10,9,11.3,310,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.9,-15.0,91,100800,110,1387,220,32,4,32,3529,0,3539,1009,340,7.2,10,10,11.3,310,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.9,-14.4,96,100800,115,1387,220,36,3,35,3954,0,3856,1086,360,5.7,10,10,3.2,240,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.9,-14.4,96,100800,91,1387,220,26,1,26,2880,0,2887,830,350,5.7,10,10,6.4,240,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-14.4,-15.0,96,100800,42,1387,218,9,1,9,1040,0,1041,320,340,5.2,10,10,11.3,240,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.9,-14.4,96,100800,12,243,220,2,0,2,0,0,0,0,360,5.2,10,10,11.3,210,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-14.4,-14.4,100,100700,0,0,219,0,0,0,0,0,0,0,340,5.2,10,10,11.3,210,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.9,-14.4,96,100800,0,0,220,0,0,0,0,0,0,0,340,5.7,10,10,11.3,240,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.3,-13.9,96,100800,0,0,223,0,0,0,0,0,0,0,350,4.6,10,10,11.3,240,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.3,-13.9,96,100800,0,0,223,0,0,0,0,0,0,0,360,4.1,10,10,11.3,270,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.3,-14.4,91,100800,0,0,222,0,0,0,0,0,0,0,20,3.6,10,10,11.3,270,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.3,-13.9,96,100800,0,0,223,0,0,0,0,0,0,0,50,4.6,10,10,11.3,400,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.9,-14.4,96,100800,0,0,220,0,0,0,0,0,0,0,60,3.6,10,10,11.3,400,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-13.9,-15.0,91,100800,0,0,204,0,0,0,0,0,0,0,60,4.1,6,6,11.3,400,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-14.4,-15.0,96,100900,0,0,202,0,0,0,0,0,0,0,50,4.6,6,6,9.7,400,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-14.4,-15.0,96,100900,0,0,208,0,0,0,0,0,0,0,70,4.1,8,8,8.0,980,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-15.6,-16.1,96,100900,0,0,196,0,0,0,0,0,0,0,60,4.1,6,5,8.0,980,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-15.0,-15.6,96,100900,0,0,202,0,0,0,0,0,0,0,60,3.1,10,7,9.7,2740,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-16.1,-17.2,91,101000,0,0,211,0,0,0,0,0,0,0,50,4.1,10,10,9.7,2740,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-16.1,-18.9,79,101000,0,0,209,0,0,0,0,0,0,0,70,4.1,10,10,9.7,2740,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-16.1,-18.3,83,101000,0,0,194,0,0,0,0,0,0,0,60,5.2,7,6,11.3,2740,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-17.8,-20.0,83,101100,0,0,183,0,0,0,0,0,0,0,60,3.6,4,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-17.8,-20.0,83,101100,0,0,183,0,0,0,0,0,0,0,60,4.1,4,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-16.7,-17.8,91,101100,18,1052,188,6,27,5,702,0,585,179,60,3.1,7,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-16.7,-18.9,83,101200,71,1388,192,19,21,18,2131,0,2023,596,60,3.1,8,6,11.3,2740,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-17.8,87,101200,103,1388,197,37,3,36,4020,0,3924,1053,60,3.6,8,7,4.8,2740,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-16.1,-17.2,91,101300,107,1388,200,42,83,35,4591,0,3837,1057,60,3.6,9,8,11.3,150,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-16.1,-17.8,87,101300,84,1388,190,31,104,24,3437,0,2668,767,70,3.1,6,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-16.1,-17.8,87,101300,35,1388,197,8,1,8,926,0,927,284,0,0.0,8,7,11.3,210,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-15.6,-17.2,87,101400,6,104,206,1,1,0,0,0,0,0,0,0.0,10,9,11.3,180,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-15.6,-17.8,83,101500,0,0,206,0,0,0,0,0,0,0,0,0.0,10,9,11.3,270,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-17.2,-18.9,87,101500,0,0,200,0,0,0,0,0,0,0,0,0.0,10,9,11.3,240,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-16.7,-18.9,83,101600,0,0,202,0,0,0,0,0,0,0,0,0.0,10,9,11.3,210,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-16.7,-18.3,87,101600,0,0,202,0,0,0,0,0,0,0,0,0.0,10,9,11.3,180,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1981,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,-16.8,-18.4,83,101700,0,0,192,0,0,0,0,0,0,0,0,0.7,7,6,11.3,180,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1981,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,-17.0,-18.6,83,101800,0,0,188,0,0,0,0,0,0,0,0,1.4,6,4,11.3,180,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1981,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,-17.2,-18.8,83,101800,0,0,186,0,0,0,0,0,0,0,0,2.1,4,3,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-17.3,-19.0,95,101700,0,0,205,0,0,0,0,0,0,0,350,2.9,10,10,11.3,370,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-17.5,-19.2,95,101700,0,0,204,0,0,0,0,0,0,0,350,3.6,10,10,11.3,370,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-17.7,-19.4,95,101700,0,0,204,0,0,0,0,0,0,0,350,4.3,10,10,11.3,370,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-18.0,-19.7,95,101700,0,0,193,0,0,0,0,0,0,0,350,5.0,9,8,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-18.1,-19.9,95,101700,0,0,187,0,0,0,0,0,0,0,360,4.3,9,6,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-18.3,-18.9,95,101700,0,0,184,0,0,0,0,0,0,0,360,3.6,8,4,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-18.1,-19.9,95,101700,0,0,185,0,0,0,0,0,0,0,360,3.6,8,5,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-18.0,-19.6,95,101700,0,0,188,0,0,0,0,0,0,0,360,3.6,8,6,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-17.8,-18.3,95,101700,0,0,191,0,0,0,0,0,0,0,360,3.6,8,7,11.3,3660,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-18.0,-19.9,94,101700,0,0,189,0,0,0,0,0,0,0,360,3.9,9,7,11.3,3660,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-18.1,-20.3,92,101700,13,914,189,3,2,3,362,0,362,112,350,4.3,9,7,11.3,3660,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-18.3,-19.4,91,101700,64,1388,189,16,6,16,1800,0,1804,534,350,4.6,10,7,11.3,3660,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-18.7,-21.3,90,101700,95,1388,184,23,5,23,2580,0,2586,769,360,4.6,8,6,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-19.0,-21.8,88,101700,100,1388,181,35,22,33,3825,0,3618,993,360,4.6,7,5,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-19.4,-21.1,87,101700,76,1388,179,25,29,23,2766,0,2551,726,10,4.6,5,4,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-19.8,-22.4,90,101700,28,1354,177,4,14,4,485,0,485,152,10,4.8,6,4,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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.2,-22.4,92,101700,0,0,176,0,0,0,0,0,0,0,360,5.0,8,4,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-20.6,-21.1,95,101700,0,0,176,0,0,0,0,0,0,0,360,5.2,9,4,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-20.8,-22.8,94,101700,0,0,173,0,0,0,0,0,0,0,360,5.0,7,3,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-20.9,-23.2,92,101600,0,0,168,0,0,0,0,0,0,0,360,4.8,4,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.1,-22.2,91,101600,0,0,165,0,0,0,0,0,0,0,360,4.6,2,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.1,-23.5,91,101600,0,0,168,0,0,0,0,0,0,0,10,4.4,3,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.1,-23.5,91,101600,0,0,168,0,0,0,0,0,0,0,20,4.3,3,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.1,-22.2,91,101600,0,0,171,0,0,0,0,0,0,0,30,4.1,4,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.3,-23.5,91,101600,0,0,169,0,0,0,0,0,0,0,20,4.6,4,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.5,-23.7,91,101600,0,0,169,0,0,0,0,0,0,0,20,5.2,3,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.7,-22.8,91,101600,0,0,169,0,0,0,0,0,0,0,10,5.7,3,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.7,-24.0,91,101600,0,0,168,0,0,0,0,0,0,0,360,5.2,3,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.7,-24.0,91,101600,0,0,168,0,0,0,0,0,0,0,360,4.6,4,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.7,-22.8,91,101600,0,0,169,0,0,0,0,0,0,0,350,4.1,4,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.7,-23.8,92,101500,0,0,170,0,0,0,0,0,0,0,360,4.1,6,3,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.7,-23.5,94,101500,0,0,170,0,0,0,0,0,0,0,20,4.1,7,3,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.7,-22.2,95,101500,0,0,172,0,0,0,0,0,0,0,30,4.1,9,4,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.5,-23.3,95,101500,0,0,173,0,0,0,0,0,0,0,30,4.5,9,5,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.3,-23.1,95,101500,9,776,174,2,10,1,0,0,0,0,40,4.8,10,5,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.7,95,101500,57,1389,177,21,34,20,2304,0,2200,605,40,5.2,10,6,11.3,3660,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-20.9,-23.0,94,101400,88,1389,175,37,46,33,4006,0,3584,941,40,5.2,10,5,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-20.8,-23.0,92,101400,93,1389,175,39,35,37,4198,0,3997,1020,30,5.2,9,5,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-20.6,-21.7,91,101400,69,1389,176,25,53,22,2759,0,2434,685,30,5.2,9,4,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-20.8,-23.2,91,101400,22,1215,175,4,16,4,481,0,481,150,40,5.0,9,5,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-20.9,-23.4,91,101300,0,0,178,0,0,0,0,0,0,0,40,4.8,10,7,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.1,-22.2,91,101300,0,0,182,0,0,0,0,0,0,0,50,4.6,10,8,11.3,2130,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.1,-23.5,91,101300,0,0,181,0,0,0,0,0,0,0,40,4.4,10,8,11.3,2130,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.1,-23.6,91,101300,0,0,184,0,0,0,0,0,0,0,40,4.3,10,9,11.3,2130,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.1,-22.2,91,101300,0,0,185,0,0,0,0,0,0,0,30,4.1,10,9,11.3,2130,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.3,-23.7,91,101200,0,0,184,0,0,0,0,0,0,0,30,3.9,10,9,11.3,2130,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.5,-23.9,91,101200,0,0,183,0,0,0,0,0,0,0,30,3.8,10,9,11.3,2130,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.7,-22.8,91,101200,0,0,183,0,0,0,0,0,0,0,30,3.6,10,9,11.3,2130,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.9,-24.1,91,101200,0,0,175,0,0,0,0,0,0,0,30,3.6,8,7,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.0,-24.2,91,101100,0,0,173,0,0,0,0,0,0,0,20,3.6,7,6,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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.2,-23.3,91,101100,0,0,170,0,0,0,0,0,0,0,20,3.6,5,4,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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.2,-24.5,91,101100,0,0,169,0,0,0,0,0,0,0,20,3.9,5,4,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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.2,-24.5,91,101100,0,0,168,0,0,0,0,0,0,0,20,4.3,4,3,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.3,91,101000,0,0,169,0,0,0,0,0,0,0,20,4.6,4,3,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.0,-24.1,92,101000,0,0,170,0,0,0,0,0,0,0,30,4.8,6,4,9.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.9,-23.7,94,101000,0,0,173,0,0,0,0,0,0,0,30,5.0,8,6,7.0,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.7,-22.2,95,100900,0,0,177,0,0,0,0,0,0,0,40,5.2,10,7,4.8,2440,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.5,-23.4,94,100900,0,0,175,0,0,0,0,0,0,0,40,5.4,10,6,6.4,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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.3,-23.4,92,100900,6,637,175,5,12,4,0,0,0,0,40,5.5,10,6,8.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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.1,-22.2,91,100900,50,1390,175,21,71,18,2307,0,1983,547,40,5.7,10,5,9.7,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-20.9,-23.1,92,100900,81,1390,175,23,18,22,2561,0,2455,712,40,5.3,10,5,10.2,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-20.8,-22.8,94,100800,85,1390,177,26,36,24,2886,0,2670,769,50,5.0,9,6,10.8,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-20.6,-21.1,95,100800,62,1390,179,27,42,25,2928,0,2719,715,50,4.6,9,6,11.3,5490,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-20.4,-22.2,95,100800,17,1077,181,5,12,4,596,0,477,148,50,5.5,9,7,11.3,3803,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-20.2,-22.1,95,100700,0,0,188,0,0,0,0,0,0,0,50,6.3,10,9,11.3,2117,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-20.6,95,100700,0,0,195,0,0,0,0,0,0,0,50,7.2,10,10,11.3,430,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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.8,-21.7,95,100700,0,0,195,0,0,0,0,0,0,0,50,7.2,10,10,10.2,357,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-19.6,-21.6,95,100600,0,0,196,0,0,0,0,0,0,0,50,7.2,10,10,9.1,283,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-19.4,-20.0,95,100600,0,0,198,0,0,0,0,0,0,0,50,7.2,10,10,8.0,210,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-19.2,-21.5,92,100600,0,0,197,0,0,0,0,0,0,0,50,7.2,10,10,8.6,283,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-19.1,-21.7,90,100600,0,0,197,0,0,0,0,0,0,0,60,7.2,10,10,9.1,357,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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.9,-20.6,87,100500,0,0,199,0,0,0,0,0,0,0,60,7.2,10,10,9.7,430,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-18.5,-20.8,91,100500,0,0,200,0,0,0,0,0,0,0,60,6.7,10,10,10.2,377,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-18.2,-19.8,96,100500,0,0,202,0,0,0,0,0,0,0,70,6.2,10,10,10.8,323,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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.8,-17.8,100,100500,0,0,205,0,0,0,0,0,0,0,70,5.7,10,10,11.3,270,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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.6,-19.0,98,100500,0,0,204,0,0,0,0,0,0,0,80,5.5,10,10,10.8,283,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-17.4,-19.0,97,100500,0,0,205,0,0,0,0,0,0,0,90,5.4,10,10,10.2,297,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-17.2,-17.8,95,100500,0,0,207,0,0,0,0,0,0,0,100,5.2,10,10,9.7,310,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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.5,-18.8,91,100500,0,0,208,0,0,0,0,0,0,0,90,5.4,10,10,7.0,297,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-15.7,-18.5,87,100500,0,0,211,0,0,0,0,0,0,0,70,5.5,10,10,4.3,283,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-15.0,-17.2,83,100400,0,0,214,0,0,0,0,0,0,0,60,5.7,10,10,1.6,270,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-14.8,-17.5,89,100500,0,0,215,0,0,0,0,0,0,0,60,5.9,10,10,3.2,313,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-14.6,-16.6,94,100500,3,498,216,0,1,0,0,0,0,0,60,6.0,10,10,4.8,357,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-14.4,-14.4,100,100500,43,1391,219,8,0,8,775,0,780,288,60,6.2,10,10,6.4,400,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-14.0,-15.3,100,100500,74,1391,219,26,3,26,2836,0,2844,771,60,6.4,10,10,4.8,370,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-13.7,-15.0,100,100500,78,1391,221,22,3,22,2444,0,2449,707,60,6.5,10,10,3.2,340,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-13.3,-13.3,100,100500,55,1391,223,15,0,15,1454,0,1464,497,60,6.7,10,10,1.6,310,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-13.3,-14.6,100,100500,12,939,222,3,1,3,362,0,362,113,60,6.9,10,10,3.2,410,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-13.3,-14.6,100,100500,0,0,222,0,0,0,0,0,0,0,60,7.0,10,10,4.8,510,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-13.3,-13.3,100,100400,0,0,223,0,0,0,0,0,0,0,60,7.2,10,10,6.4,610,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-12.9,-14.2,100,100400,0,0,224,0,0,0,0,0,0,0,60,6.7,10,10,7.5,590,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-12.6,-14.0,100,100400,0,0,225,0,0,0,0,0,0,0,60,6.2,10,10,8.6,570,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-12.2,-12.2,100,100400,0,0,228,0,0,0,0,0,0,0,60,5.7,10,10,9.7,550,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-12.0,-13.3,100,100400,0,0,228,0,0,0,0,0,0,0,60,6.4,10,10,9.7,580,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-11.9,-13.2,100,100400,0,0,228,0,0,0,0,0,0,0,50,7.0,10,10,9.7,610,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-11.7,-11.7,100,100400,0,0,230,0,0,0,0,0,0,0,50,7.7,10,10,9.7,640,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-11.5,-12.8,99,100400,0,0,230,0,0,0,0,0,0,0,50,7.5,10,10,9.7,660,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-11.3,-12.8,97,100400,0,0,231,0,0,0,0,0,0,0,50,7.4,10,10,9.7,680,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-11.1,-11.7,96,100400,0,0,232,0,0,0,0,0,0,0,50,7.2,10,10,9.7,700,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-11.3,-13.1,96,100400,0,0,231,0,0,0,0,0,0,0,50,7.0,10,10,9.1,580,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-11.5,-13.3,96,100400,0,0,230,0,0,0,0,0,0,0,60,6.9,10,10,8.6,460,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-11.7,-12.2,96,100400,0,0,230,0,0,0,0,0,0,0,60,6.7,10,10,8.0,340,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-11.9,-13.4,97,100400,0,0,228,0,0,0,0,0,0,0,60,6.0,10,10,8.0,370,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-12.0,-13.3,99,100400,0,0,228,0,0,0,0,0,0,0,60,5.3,10,10,8.0,400,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-12.2,-12.2,100,100400,0,0,228,0,0,0,0,0,0,0,60,4.6,10,10,8.0,430,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-12.4,-13.6,100,100400,0,0,226,0,0,0,0,0,0,0,60,5.0,10,10,9.1,410,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-12.6,-13.8,100,100400,6,336,225,1,0,1,0,0,0,0,60,5.3,10,10,10.2,390,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-12.8,-12.8,100,100400,36,1391,226,7,0,7,677,0,682,253,60,5.7,10,10,11.3,370,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-12.6,-13.9,100,100400,67,1391,225,21,1,21,2317,0,2323,655,60,5.5,10,10,11.3,360,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-12.4,-13.7,100,100400,71,1391,226,21,0,21,2039,0,2053,668,60,5.4,10,10,11.3,350,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-12.2,-12.2,100,100400,48,1391,228,13,0,13,1260,0,1268,436,60,5.2,10,10,11.3,340,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-12.2,-13.5,100,100500,8,777,227,3,0,3,289,0,291,111,60,4.8,10,10,11.3,350,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-12.2,-13.5,100,100500,0,0,227,0,0,0,0,0,0,0,70,4.5,10,10,11.3,360,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-12.2,-12.2,100,100500,0,0,228,0,0,0,0,0,0,0,70,4.1,10,10,11.3,370,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-12.2,-13.5,100,100500,0,0,227,0,0,0,0,0,0,0,60,4.6,10,10,10.8,370,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-12.2,-13.6,100,100500,0,0,227,0,0,0,0,0,0,0,40,5.2,10,10,10.2,370,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-12.2,-12.2,100,100500,0,0,228,0,0,0,0,0,0,0,30,5.7,10,10,9.7,370,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-12.6,-14.0,99,100500,0,0,225,0,0,0,0,0,0,0,30,5.5,10,10,9.7,307,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-12.9,-14.6,97,100500,0,0,224,0,0,0,0,0,0,0,40,5.4,10,10,9.7,243,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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.9,96,100500,0,0,223,0,0,0,0,0,0,0,40,5.2,10,10,9.7,180,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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.7,-15.9,92,100600,0,0,220,0,0,0,0,0,0,0,40,5.0,10,10,10.2,223,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-14.0,-16.9,87,100600,0,0,218,0,0,0,0,0,0,0,50,4.8,10,10,10.8,267,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-14.4,-16.7,83,100600,0,0,217,0,0,0,0,0,0,0,50,4.6,10,10,11.3,310,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-14.6,-17.7,86,100600,0,0,215,0,0,0,0,0,0,0,30,4.6,10,10,10.2,310,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-14.8,-17.5,88,100700,0,0,215,0,0,0,0,0,0,0,20,4.6,10,10,9.1,310,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-15.0,-16.1,91,100700,0,0,215,0,0,0,0,0,0,0,360,4.6,10,10,8.0,310,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-15.2,-17.6,90,100700,0,0,213,0,0,0,0,0,0,0,360,4.8,10,10,9.1,310,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-15.4,-18.0,88,100700,0,0,212,0,0,0,0,0,0,0,350,5.0,10,10,10.2,310,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-15.6,-17.2,87,100700,0,0,212,0,0,0,0,0,0,0,350,5.2,10,10,11.3,310,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-15.8,-18.6,87,100800,0,0,210,0,0,0,0,0,0,0,350,5.2,10,10,11.3,320,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-15.9,-18.8,87,100800,6,197,210,1,0,1,0,0,0,0,360,5.2,10,10,11.3,330,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-16.1,-17.8,87,100900,30,1392,210,7,0,7,677,0,682,249,360,5.2,10,10,11.3,340,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-16.3,-19.1,88,100900,60,1392,208,18,0,18,1747,0,1758,574,360,4.8,10,10,9.7,317,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-16.5,-19.1,90,101000,65,1392,208,22,0,22,2136,0,2150,669,350,4.5,10,10,8.0,293,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-16.7,-17.8,91,101000,42,1392,208,14,0,14,1356,0,1365,449,350,4.1,10,10,6.4,270,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-16.7,-19.3,90,101000,12,638,207,2,0,2,0,0,0,0,360,4.1,10,10,6.4,283,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-16.7,-19.5,88,101000,0,0,207,0,0,0,0,0,0,0,360,4.1,10,10,6.4,297,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-18.3,87,100900,0,0,208,0,0,0,0,0,0,0,10,4.1,10,10,6.4,310,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-16.7,-19.4,88,101100,0,0,207,0,0,0,0,0,0,0,360,3.8,10,10,6.9,310,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-16.7,-19.4,90,101200,0,0,207,0,0,0,0,0,0,0,360,3.4,10,10,7.5,310,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-16.7,-17.8,91,101300,0,0,208,0,0,0,0,0,0,0,350,3.1,10,10,8.0,310,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-16.7,-19.1,91,101400,0,0,207,0,0,0,0,0,0,0,10,3.8,10,10,8.6,267,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-16.7,-19.1,91,101500,0,0,207,0,0,0,0,0,0,0,30,4.5,10,10,9.1,223,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-16.7,-17.8,91,101500,0,0,208,0,0,0,0,0,0,0,50,5.2,10,10,9.7,180,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-16.9,-18.9,92,101600,0,0,207,0,0,0,0,0,0,0,60,4.3,10,10,10.2,180,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-17.0,-18.9,94,101600,0,0,206,0,0,0,0,0,0,0,60,3.5,10,10,10.8,180,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-17.2,-17.8,95,101700,0,0,207,0,0,0,0,0,0,0,70,2.6,10,10,11.3,180,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-17.0,-19.0,94,101700,0,0,206,0,0,0,0,0,0,0,40,3.1,10,10,10.8,210,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-16.9,-19.0,92,101700,0,0,206,0,0,0,0,0,0,0,360,3.6,10,10,10.2,240,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-16.7,-17.8,91,101800,0,0,208,0,0,0,0,0,0,0,330,4.1,10,10,9.7,270,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-16.9,-19.1,91,101800,0,0,206,0,0,0,0,0,0,0,340,3.8,10,10,10.2,283,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-17.0,-19.3,91,101800,0,0,206,0,0,0,0,0,0,0,350,3.4,10,10,10.8,297,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-17.2,-18.3,91,101900,0,0,206,0,0,0,0,0,0,0,360,3.1,10,10,11.3,310,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-17.2,-19.7,90,101900,0,0,205,0,0,0,0,0,0,0,360,2.9,10,10,11.3,330,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-17.2,-19.9,88,102000,0,35,205,0,0,0,0,0,0,0,350,2.8,10,10,11.3,350,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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.2,-18.9,87,102000,23,1393,206,7,0,7,677,0,681,244,350,2.6,10,10,11.3,370,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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.4,-20.4,87,102100,53,1393,204,16,0,16,1552,0,1562,515,20,2.4,10,10,11.3,360,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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.6,-20.5,87,102100,58,1393,203,20,0,20,1941,0,1954,611,60,2.3,10,10,11.3,350,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-17.8,-19.4,87,102100,35,1393,203,10,0,10,968,0,975,340,90,2.1,10,10,11.3,340,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-17.4,-20.3,87,102200,18,476,204,3,0,3,0,0,0,0,50,2.3,10,10,11.3,340,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-17.1,-20.0,87,102200,0,0,205,0,0,0,0,0,0,0,360,2.4,10,10,11.3,340,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-16.7,-18.3,87,102200,0,0,208,0,0,0,0,0,0,0,320,2.6,10,10,11.3,340,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-17.1,-20.0,87,102200,0,0,205,0,0,0,0,0,0,0,330,3.1,10,10,11.3,330,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-17.4,-20.4,87,102200,0,0,204,0,0,0,0,0,0,0,350,3.6,10,10,11.3,320,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-17.8,-19.4,87,102200,0,0,203,0,0,0,0,0,0,0,360,4.1,10,10,11.3,310,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-18.0,-20.9,87,102300,0,0,201,0,0,0,0,0,0,0,360,3.9,10,10,11.3,320,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-18.1,-21.1,87,102300,0,0,201,0,0,0,0,0,0,0,360,3.8,10,10,11.3,330,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-18.3,-20.0,87,102400,0,0,201,0,0,0,0,0,0,0,360,3.6,10,10,11.3,340,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-18.5,-21.3,87,102400,0,0,199,0,0,0,0,0,0,0,350,3.6,10,10,10.8,380,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-18.7,-21.5,87,102400,0,0,199,0,0,0,0,0,0,0,350,3.6,10,10,10.2,420,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-18.9,-20.6,87,102400,0,0,199,0,0,0,0,0,0,0,340,3.6,10,10,9.7,460,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-19.1,-22.0,87,102400,0,0,197,0,0,0,0,0,0,0,340,3.9,10,10,10.2,510,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-19.2,-22.2,87,102400,0,0,197,0,0,0,0,0,0,0,350,4.3,10,10,10.8,560,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.1,87,102400,0,0,197,0,0,0,0,0,0,0,350,4.6,10,10,11.3,610,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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.0,-22.1,86,102400,0,0,197,0,0,0,0,0,0,0,350,4.4,10,10,11.3,700,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-18.7,-21.9,84,102400,0,0,198,0,0,0,0,0,0,0,340,4.3,10,10,11.3,790,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-18.3,-20.6,83,102400,0,0,201,0,0,0,0,0,0,0,340,4.1,10,10,11.3,880,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-19.4,-23.1,81,102400,0,0,183,0,0,0,0,0,0,0,340,4.5,7,7,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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,-20.6,-24.4,80,102400,0,0,174,0,0,0,0,0,0,0,350,4.8,5,4,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.7,-24.4,78,102500,17,1266,165,4,41,3,487,0,365,114,350,5.2,2,1,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.9,-25.9,78,102500,47,1393,164,16,106,12,1813,0,1362,406,350,5.0,4,1,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.0,-26.1,78,102500,51,1393,160,23,109,18,2534,0,1988,554,340,4.8,7,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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.2,-25.0,78,102500,29,1393,160,12,64,10,1354,0,1130,332,340,4.6,9,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.0,-26.1,78,102500,18,314,160,3,11,3,0,0,0,0,340,5.1,8,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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.9,-25.9,78,102500,0,0,164,0,0,0,0,0,0,0,350,5.7,6,1,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.7,-24.4,78,102500,0,0,165,0,0,0,0,0,0,0,350,6.2,5,1,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.9,-25.9,78,102500,0,0,166,0,0,0,0,0,0,0,340,6.4,6,2,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.0,-26.2,78,102500,0,0,167,0,0,0,0,0,0,0,340,6.5,6,3,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.2,-25.0,78,102500,0,0,169,0,0,0,0,0,0,0,330,6.7,7,4,11.3,6100,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.2,-26.5,77,102500,0,0,166,0,0,0,0,0,0,0,330,6.7,6,3,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.2,-26.7,75,102500,0,0,165,0,0,0,0,0,0,0,330,6.7,6,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.2,-25.6,74,102600,0,0,163,0,0,0,0,0,0,0,330,6.7,5,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.2,-26.7,74,102600,0,0,165,0,0,0,0,0,0,0,340,6.5,6,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.2,-26.7,74,102600,0,0,167,0,0,0,0,0,0,0,340,6.4,6,4,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.2,-25.6,74,102600,0,0,170,0,0,0,0,0,0,0,350,6.2,7,5,11.3,6100,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.4,-27.0,74,102600,0,0,167,0,0,0,0,0,0,0,350,6.7,6,4,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.6,-27.2,74,102700,0,0,165,0,0,0,0,0,0,0,340,7.2,6,3,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.8,-26.1,74,102700,0,0,163,0,0,0,0,0,0,0,340,7.7,5,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.0,-27.5,74,102700,0,0,162,0,0,0,0,0,0,0,360,7.2,5,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.1,-27.6,74,102800,0,0,162,0,0,0,0,0,0,0,20,6.7,5,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.3,-26.7,74,102900,0,0,162,0,0,0,0,0,0,0,40,6.2,5,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.1,-28.7,74,102900,0,0,156,0,0,0,0,0,0,0,30,5.9,4,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.8,-29.4,74,103000,0,0,154,0,0,0,0,0,0,0,10,5.5,2,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.6,-28.9,74,103100,12,1080,149,4,81,2,438,3503,353,72,360,5.2,1,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.6,-29.3,81,103100,41,1394,149,15,141,10,1713,0,1144,345,360,5.2,2,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.6,-28.3,88,103100,45,1394,150,18,143,12,2036,0,1360,404,350,5.2,3,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.6,-26.1,95,103200,23,1394,151,8,110,6,933,0,700,215,350,5.2,4,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.8,-27.6,95,103200,12,151,150,2,6,1,0,0,0,0,350,5.0,3,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.9,-27.8,95,103300,0,0,149,0,0,0,0,0,0,0,350,4.8,3,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-26.1,-26.7,95,103300,0,0,150,0,0,0,0,0,0,0,350,4.6,2,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-26.1,-28.0,95,103300,0,0,149,0,0,0,0,0,0,0,340,4.6,2,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-26.1,-28.1,95,103400,0,0,149,0,0,0,0,0,0,0,340,4.6,1,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-26.1,-26.7,95,103400,0,0,150,0,0,0,0,0,0,0,330,4.6,1,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-26.1,-27.8,97,103400,0,0,149,0,0,0,0,0,0,0,330,4.4,1,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-26.1,-27.6,98,103400,0,0,149,0,0,0,0,0,0,0,340,4.3,2,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-26.1,-26.1,100,103400,0,0,150,0,0,0,0,0,0,0,340,4.1,2,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.7,-26.8,100,103400,0,0,153,0,0,0,0,0,0,0,340,4.1,2,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.4,-26.5,100,103400,0,0,154,0,0,0,0,0,0,0,330,4.1,3,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.0,-25.0,100,103400,0,0,158,0,0,0,0,0,0,0,330,4.1,3,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.6,-26.8,93,103400,0,0,158,0,0,0,0,0,0,0,320,3.8,2,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.3,-27.4,85,103400,0,0,156,0,0,0,0,0,0,0,320,3.4,2,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.9,-26.7,78,103400,0,0,158,0,0,0,0,0,0,0,310,3.1,1,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.1,-28.0,78,103400,0,0,157,0,0,0,0,0,0,0,320,3.1,1,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.2,-28.2,78,103300,0,0,153,0,0,0,0,0,0,0,320,3.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.4,-27.2,78,103300,0,0,153,0,0,0,0,0,0,0,330,3.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.2,-27.5,84,103300,0,0,154,0,0,0,0,0,0,0,340,3.3,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.1,-26.6,89,103300,0,0,155,0,0,0,0,0,0,0,340,3.4,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.9,-24.4,95,103300,8,895,157,6,131,2,656,5450,352,71,350,3.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.9,-25.5,97,103300,34,1395,156,15,237,7,1599,11569,1178,173,350,3.4,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.9,-25.4,98,103300,39,1395,156,17,243,9,1802,12088,1500,187,350,3.3,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.9,-23.9,100,103300,17,1360,157,8,218,3,869,9862,521,101,350,3.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.5,-25.0,98,103200,0,0,157,0,0,0,0,0,0,0,350,4.0,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.2,-24.8,97,103200,0,0,158,0,0,0,0,0,0,0,340,4.8,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.8,-23.3,95,103200,0,0,160,0,0,0,0,0,0,0,340,5.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.6,-24.2,97,103200,0,0,160,0,0,0,0,0,0,0,340,4.8,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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.4,-24.0,98,103100,0,0,161,0,0,0,0,0,0,0,330,4.0,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.2,100,103100,0,0,162,0,0,0,0,0,0,0,330,3.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.2,-23.5,100,103100,0,0,162,0,0,0,0,0,0,0,330,3.1,2,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.2,-23.5,100,103000,0,0,162,0,0,0,0,0,0,0,330,3.1,5,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.2,-22.2,100,103000,0,0,162,0,0,0,0,0,0,0,330,3.1,7,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.2,-23.3,100,102900,0,0,162,0,0,0,0,0,0,0,330,3.1,5,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.2,-23.3,100,102900,0,0,162,0,0,0,0,0,0,0,330,3.1,4,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.2,-22.2,100,102800,0,0,162,0,0,0,0,0,0,0,330,3.1,2,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.0,-23.2,100,102700,0,0,165,0,0,0,0,0,0,0,320,3.1,4,1,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.9,-23.1,100,102600,0,0,168,0,0,0,0,0,0,0,310,3.1,5,2,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.7,-21.7,100,102500,0,0,171,0,0,0,0,0,0,0,300,3.1,7,3,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.5,-22.7,100,102400,0,0,171,0,0,0,0,0,0,0,310,3.3,6,3,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.3,-22.4,100,102400,0,0,172,0,0,0,0,0,0,0,310,3.4,5,3,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.1,-21.1,100,102300,0,0,173,0,0,0,0,0,0,0,320,3.6,4,3,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.8,-23.1,100,102200,0,0,168,0,0,0,0,0,0,0,310,3.3,3,2,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.6,-23.8,100,102100,0,0,163,0,0,0,0,0,0,0,310,2.9,1,1,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.3,-23.3,100,102100,36,709,159,6,112,2,0,0,0,0,300,2.6,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.9,-24.2,100,102000,28,1395,159,13,272,6,1390,12899,1015,156,300,2.9,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.6,-23.9,100,101900,33,1395,160,15,273,7,1599,13244,1178,171,310,3.3,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.2,-22.2,100,101800,12,1174,162,8,223,2,878,9777,353,73,310,3.6,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.2,-24.2,94,101700,0,0,161,0,0,0,0,0,0,0,310,3.6,1,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.2,-25.0,88,101600,0,0,160,0,0,0,0,0,0,0,310,3.6,1,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.2,-24.4,82,101600,0,0,161,0,0,0,0,0,0,0,310,3.6,2,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.8,-25.3,82,101500,0,0,161,0,0,0,0,0,0,0,310,3.8,3,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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.5,-25.1,82,101500,0,0,162,0,0,0,0,0,0,0,310,3.9,3,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.1,-23.3,82,101400,0,0,164,0,0,0,0,0,0,0,310,4.1,4,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.5,-24.9,82,101300,0,0,165,0,0,0,0,0,0,0,310,4.1,4,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.8,-25.3,82,101300,0,0,164,0,0,0,0,0,0,0,300,4.1,5,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.2,-24.4,82,101200,0,0,166,0,0,0,0,0,0,0,300,4.1,5,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.4,-25.9,81,101200,0,0,165,0,0,0,0,0,0,0,300,4.1,5,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.6,-26.3,79,101100,0,0,164,0,0,0,0,0,0,0,300,4.1,6,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.8,-25.6,78,101100,0,0,164,0,0,0,0,0,0,0,300,4.1,6,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.6,-26.4,79,101000,0,0,168,0,0,0,0,0,0,0,310,4.5,7,5,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.4,-26.0,81,100900,0,0,172,0,0,0,0,0,0,0,310,4.8,9,7,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.2,-24.4,82,100800,0,0,186,0,0,0,0,0,0,0,320,5.2,10,10,11.3,310,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.8,-26.3,81,100800,0,0,174,0,0,0,0,0,0,0,320,5.2,9,8,10.2,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.3,-27.1,79,100700,0,0,166,0,0,0,0,0,0,0,330,5.2,8,5,9.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.9,-26.7,78,100700,0,0,162,0,0,0,0,0,0,0,330,5.2,7,3,8.0,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.1,-28.1,78,100700,0,0,160,0,0,0,0,0,0,0,340,4.7,6,3,9.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.2,-28.3,78,100600,0,0,158,0,0,0,0,0,0,0,360,4.1,4,2,10.2,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.4,-27.2,78,100600,6,500,159,1,9,1,0,0,0,0,10,3.6,3,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.4,-28.5,78,100500,22,1396,155,5,96,3,544,4441,522,102,360,4.1,2,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.4,-28.5,78,100500,27,1396,155,6,101,4,725,0,483,151,350,4.7,1,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.4,-27.2,78,100400,8,989,153,4,75,2,437,3160,352,72,340,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.0,-29.6,74,100400,0,0,150,0,0,0,0,0,0,0,350,4.0,1,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.5,-30.8,70,100400,0,0,151,0,0,0,0,0,0,0,350,2.7,1,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-26.1,-30.6,66,100300,0,0,150,0,0,0,0,0,0,0,360,1.5,2,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-26.3,-31.5,70,100300,0,0,149,0,0,0,0,0,0,0,10,2.2,1,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-26.5,-31.2,73,100300,0,0,146,0,0,0,0,0,0,0,20,2.9,1,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-26.7,-29.4,77,100300,0,0,146,0,0,0,0,0,0,0,30,3.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-27.1,-31.1,77,100300,0,0,144,0,0,0,0,0,0,0,40,3.9,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-27.4,-31.5,77,100300,0,0,143,0,0,0,0,0,0,0,60,4.3,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-27.8,-30.6,77,100300,0,0,143,0,0,0,0,0,0,0,70,4.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-28.0,-32.1,76,100300,0,0,142,0,0,0,0,0,0,0,70,4.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-28.1,-32.4,74,100300,0,0,141,0,0,0,0,0,0,0,60,4.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-28.3,-31.7,73,100300,0,0,141,0,0,0,0,0,0,0,60,4.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-28.5,-32.9,74,100300,0,0,140,0,0,0,0,0,0,0,60,4.6,0,0,10.8,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-28.7,-32.9,76,100300,0,0,139,0,0,0,0,0,0,0,60,4.6,0,0,10.2,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-28.9,-31.7,77,100300,0,0,140,0,0,0,0,0,0,0,60,4.6,0,0,9.7,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-28.9,-33.2,74,100400,0,0,139,0,0,0,0,0,0,0,60,4.6,0,0,10.2,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-28.9,-33.6,72,100400,0,0,139,0,0,0,0,0,0,0,60,4.6,0,0,10.8,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-28.9,-32.8,69,100400,0,0,139,0,0,0,0,0,0,0,60,4.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-28.7,-33.5,72,100500,0,0,139,0,0,0,0,0,0,0,50,4.1,1,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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,-28.5,-32.9,74,100500,0,0,143,0,0,0,0,0,0,0,50,3.6,1,1,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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,-28.3,-31.1,77,100500,12,291,144,2,7,1,0,0,0,0,40,3.1,2,1,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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,-28.1,-32.2,77,100500,17,1397,144,4,136,2,439,6097,354,74,50,3.6,2,1,9.1,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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,-28.0,-32.1,77,100500,21,1397,144,6,114,4,646,5219,687,123,50,4.1,2,1,7.0,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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,-27.8,-30.6,77,100500,18,757,146,3,67,1,0,0,0,0,60,4.6,2,1,4.8,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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,-27.6,-31.7,77,100500,0,0,146,0,0,0,0,0,0,0,60,4.8,3,1,4.8,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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,-27.4,-31.5,77,100500,0,0,148,0,0,0,0,0,0,0,50,5.0,5,2,4.8,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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,-27.2,-30.0,77,100500,0,0,150,0,0,0,0,0,0,0,50,5.2,6,2,4.8,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-27.0,-31.3,76,100600,0,0,147,0,0,0,0,0,0,0,40,5.4,5,1,4.8,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-26.9,-31.4,74,100600,0,0,147,0,0,0,0,0,0,0,40,5.5,3,1,4.8,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-26.7,-30.0,73,100600,0,0,146,0,0,0,0,0,0,0,30,5.7,2,0,4.8,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-26.5,-30.9,75,100600,0,0,146,0,0,0,0,0,0,0,30,5.9,2,0,7.0,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-26.3,-30.6,76,100600,0,0,147,0,0,0,0,0,0,0,40,6.0,2,0,9.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-26.1,-28.9,78,100600,0,0,148,0,0,0,0,0,0,0,40,6.2,2,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.7,-29.8,77,100600,0,0,153,0,0,0,0,0,0,0,40,5.9,4,2,10.2,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.4,-29.6,75,100600,0,0,158,0,0,0,0,0,0,0,40,5.5,7,5,9.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.0,-28.3,74,100500,0,0,164,0,0,0,0,0,0,0,40,5.2,9,7,8.0,3050,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.0,-29.7,73,100500,0,0,161,0,0,0,0,0,0,0,40,5.9,9,6,8.6,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.0,-29.9,71,100500,0,0,159,0,0,0,0,0,0,0,40,6.5,8,5,9.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.0,-28.9,70,100500,0,0,159,0,0,0,0,0,0,0,40,7.2,8,4,9.7,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.2,-29.9,73,100500,0,0,156,0,0,0,0,0,0,0,40,6.5,6,3,9.7,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.4,-29.6,75,100500,0,0,156,0,0,0,0,0,0,0,50,5.9,5,3,9.7,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.6,-28.3,78,100500,0,0,155,0,0,0,0,0,0,0,50,5.2,3,2,9.7,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.8,-28.6,79,100600,0,0,161,0,0,0,0,0,0,0,50,5.9,5,5,9.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.1,-27.7,81,100600,0,0,166,0,0,0,0,0,0,0,50,6.5,8,7,8.6,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.3,-25.6,82,100600,0,35,181,0,0,0,0,0,0,0,50,7.2,10,10,8.0,790,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.3,-26.7,83,100600,11,1397,181,0,0,0,0,0,0,0,50,7.5,10,10,6.9,1340,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.3,-26.5,85,100600,15,1397,181,0,1,0,0,0,0,0,60,7.9,10,10,5.9,1890,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.3,-25.0,86,100600,2,524,182,0,0,0,0,0,0,0,60,8.2,10,10,4.8,2440,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.1,-26.1,86,100700,0,0,182,0,0,0,0,0,0,0,60,7.9,10,10,5.3,1953,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.0,-25.9,86,100700,0,0,182,0,0,0,0,0,0,0,70,7.5,10,10,5.9,1467,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.8,-24.4,86,100700,0,0,184,0,0,0,0,0,0,0,70,7.2,10,10,6.4,980,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.2,-26.1,86,100800,0,0,170,0,0,0,0,0,0,0,70,6.9,7,7,8.0,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.5,-26.6,86,100800,0,0,164,0,0,0,0,0,0,0,70,6.5,5,4,9.7,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.9,-25.6,86,100800,0,0,159,0,0,0,0,0,0,0,70,6.2,2,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.1,-27.2,85,100900,0,0,157,0,0,0,0,0,0,0,60,6.5,2,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.2,-27.6,83,100900,0,0,157,0,0,0,0,0,0,0,60,6.9,3,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.4,-26.7,82,101000,0,0,157,0,0,0,0,0,0,0,50,7.2,3,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.7,-26.7,85,101000,0,0,164,0,0,0,0,0,0,0,50,7.0,5,4,9.7,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.9,-25.5,88,101000,0,0,171,0,0,0,0,0,0,0,60,6.9,8,7,8.0,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.2,-23.3,91,101100,0,0,187,0,0,0,0,0,0,0,60,6.7,10,10,6.4,340,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.6,-25.1,89,101100,0,0,184,0,0,0,0,0,0,0,60,6.9,10,10,4.9,307,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.9,-25.7,88,101100,0,0,183,0,0,0,0,0,0,0,60,7.0,10,10,3.5,273,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.3,-25.0,86,101100,0,0,182,0,0,0,0,0,0,0,60,7.2,10,10,2.0,240,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.4,-25.2,86,101200,0,0,184,0,0,0,0,0,0,0,60,7.4,10,10,1.9,240,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.5,-24.3,87,101200,0,0,188,0,0,0,0,0,0,0,50,7.5,10,10,1.7,240,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-20.6,-22.2,87,101200,0,0,192,0,0,0,0,0,0,0,50,7.7,10,10,1.6,240,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.3,-24.4,85,101300,0,0,179,0,0,0,0,0,0,0,50,7.4,9,8,4.8,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.1,-25.3,84,101300,0,0,172,0,0,0,0,0,0,0,60,7.0,9,6,8.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.8,-25.0,82,101400,0,0,167,0,0,0,0,0,0,0,60,6.7,8,4,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.8,-26.3,82,101500,6,1177,167,2,2,1,260,0,130,39,60,6.0,9,5,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.8,-26.3,82,101500,10,1398,169,0,4,0,0,0,0,0,50,5.3,9,6,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.8,-25.0,82,101600,6,268,172,1,0,1,0,0,0,0,50,4.6,10,7,11.3,7620,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.2,-26.7,82,101600,0,0,166,0,0,0,0,0,0,0,60,5.1,8,5,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.5,-27.1,82,101700,0,0,164,0,0,0,0,0,0,0,60,5.7,7,4,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.9,-26.1,82,101700,0,0,161,0,0,0,0,0,0,0,70,6.2,5,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.1,-27.4,83,101800,0,0,157,0,0,0,0,0,0,0,60,6.4,4,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.2,-27.5,85,101800,0,0,157,0,0,0,0,0,0,0,50,6.5,3,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.4,-26.1,86,101900,0,0,154,0,0,0,0,0,0,0,40,6.7,2,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.6,-27.9,83,102000,0,0,152,0,0,0,0,0,0,0,60,6.0,1,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.8,-28.5,81,102100,0,0,152,0,0,0,0,0,0,0,70,5.3,1,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.0,-27.8,78,102100,0,0,152,0,0,0,0,0,0,0,90,4.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.2,-28.9,79,102200,0,0,150,0,0,0,0,0,0,0,80,3.9,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.4,-28.9,81,102300,0,0,150,0,0,0,0,0,0,0,80,3.3,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.6,-27.8,82,102300,0,0,150,0,0,0,0,0,0,0,70,2.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.4,-29.0,81,102400,0,0,153,0,0,0,0,0,0,0,70,3.1,2,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.2,-29.0,79,102500,0,0,157,0,0,0,0,0,0,0,60,3.6,3,3,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.0,-27.8,78,102500,0,0,159,0,0,0,0,0,0,0,60,4.1,5,4,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.4,-27.8,82,102600,0,0,164,0,0,0,0,0,0,0,70,3.9,7,6,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.9,-26.7,87,102600,0,0,170,0,0,0,0,0,0,0,90,3.8,8,8,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.3,-24.4,91,102700,0,0,182,0,0,0,0,0,0,0,100,3.6,10,10,11.3,610,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.4,-24.9,90,102700,0,0,185,0,0,0,0,0,0,0,90,3.6,10,10,11.3,620,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.5,-24.2,88,102800,0,0,188,0,0,0,0,0,0,0,90,3.6,10,10,11.3,630,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-20.6,-22.2,87,102900,0,0,192,0,0,0,0,0,0,0,80,3.6,10,10,11.3,640,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-20.4,-23.1,88,102900,6,828,192,1,1,1,0,0,0,0,90,3.6,10,10,11.3,690,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-20.2,-22.8,90,103000,6,1340,193,1,1,1,130,0,130,39,110,3.6,10,10,11.3,740,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-20.0,-21.1,91,103100,0,0,195,0,0,0,0,0,0,0,120,3.6,10,10,11.3,790,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-19.8,-22.2,91,103100,0,0,195,0,0,0,0,0,0,0,90,3.3,10,10,11.3,820,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-19.6,-22.1,91,103100,0,0,195,0,0,0,0,0,0,0,70,2.9,10,10,11.3,850,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-20.6,91,103200,0,0,197,0,0,0,0,0,0,0,40,2.6,10,10,11.3,880,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-19.8,-22.4,90,103200,0,0,195,0,0,0,0,0,0,0,60,3.1,10,10,11.3,880,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-20.2,-23.1,88,103300,0,0,193,0,0,0,0,0,0,0,90,3.6,10,10,11.3,880,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-20.6,-22.2,87,103300,0,0,192,0,0,0,0,0,0,0,110,4.1,10,10,11.3,880,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-20.6,-23.5,87,103300,0,0,191,0,0,0,0,0,0,0,100,3.9,10,10,11.3,913,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-20.6,-23.5,87,103400,0,0,186,0,0,0,0,0,0,0,100,3.8,10,9,11.3,947,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-20.6,-22.2,87,103400,0,0,187,0,0,0,0,0,0,0,90,3.6,10,9,11.3,980,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.5,-24.2,87,103400,0,0,174,0,0,0,0,0,0,0,90,4.1,8,6,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.4,-25.2,86,103400,0,0,168,0,0,0,0,0,0,0,90,4.7,5,4,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.3,-25.0,86,103500,0,0,161,0,0,0,0,0,0,0,90,5.2,3,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.2,-27.3,85,103500,0,0,157,0,0,0,0,0,0,0,90,5.2,2,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.2,-28.4,83,103500,0,0,151,0,0,0,0,0,0,0,90,5.2,2,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-26.1,-28.3,82,103500,0,0,149,0,0,0,0,0,0,0,90,5.2,1,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.9,-29.7,79,103500,0,0,148,0,0,0,0,0,0,0,90,5.4,1,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.8,-29.8,77,103500,0,0,148,0,0,0,0,0,0,0,80,5.5,1,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.6,-28.9,74,103500,0,0,149,0,0,0,0,0,0,0,80,5.7,1,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.6,-29.9,75,103500,0,0,149,0,0,0,0,0,0,0,80,5.7,1,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.6,-29.7,77,103500,0,0,149,0,0,0,0,0,0,0,90,5.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.6,-28.3,78,103500,0,0,150,0,0,0,0,0,0,0,90,5.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.6,-29.6,78,103500,0,361,149,0,0,0,0,0,0,0,90,5.9,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.6,-29.6,78,103500,1,875,149,0,0,0,0,0,0,0,80,6.0,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.6,-28.3,78,103500,0,0,150,0,0,0,0,0,0,0,80,6.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.4,-29.4,78,103500,0,0,150,0,0,0,0,0,0,0,90,5.9,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.2,-29.3,78,103500,0,0,150,0,0,0,0,0,0,0,90,5.5,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.0,-27.8,78,103500,0,0,152,0,0,0,0,0,0,0,100,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.8,-29.1,77,103600,0,0,151,0,0,0,0,0,0,0,100,5.2,1,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.6,-29.2,75,103600,0,0,155,0,0,0,0,0,0,0,90,5.2,2,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.4,-27.8,74,103600,0,0,156,0,0,0,0,0,0,0,90,5.2,3,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.2,-28.5,77,103600,0,0,156,0,0,0,0,0,0,0,80,5.9,2,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.1,-28.0,79,103700,0,0,154,0,0,0,0,0,0,0,80,6.5,1,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.9,-26.1,82,103700,0,0,155,0,0,0,0,0,0,0,70,7.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.7,-26.8,83,103800,0,0,155,0,0,0,0,0,0,0,70,7.4,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.5,-26.5,85,103800,0,0,156,0,0,0,0,0,0,0,80,7.5,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.3,-25.0,86,103900,0,0,158,0,0,0,0,0,0,0,80,7.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.3,-26.2,86,103800,0,0,157,0,0,0,0,0,0,0,80,7.9,1,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.3,-26.2,86,103800,0,0,160,0,0,0,0,0,0,0,80,8.0,2,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.3,-25.0,86,103700,0,0,161,0,0,0,0,0,0,0,80,8.2,3,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.9,-26.0,85,103800,0,0,161,0,0,0,0,0,0,0,80,8.6,4,1,9.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.6,-25.7,83,103800,0,0,164,0,0,0,0,0,0,0,80,8.9,5,2,7.0,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.2,-24.4,82,103800,0,0,166,0,0,0,0,0,0,0,80,9.3,6,2,4.8,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.7,-25.3,81,103800,0,0,169,0,0,0,0,0,0,0,90,9.8,7,3,3.5,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.1,-24.9,80,103700,0,0,170,0,0,0,0,0,0,0,90,10.3,9,3,2.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1977,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,-20.6,-23.3,79,103700,0,0,174,0,0,0,0,0,0,0,100,10.8,10,4,0.8,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1977,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,-20.4,-24.2,80,103600,0,0,177,0,0,0,0,0,0,0,100,11.5,10,6,0.7,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1977,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,-20.2,-23.9,82,103600,0,0,183,0,0,0,0,0,0,0,100,12.2,10,8,0.7,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1977,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,-20.0,-22.2,83,103500,0,0,194,0,0,0,0,0,0,0,100,12.9,10,10,0.6,2440,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1977,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,-19.4,-22.6,86,103500,0,0,196,0,0,0,0,0,0,0,100,13.1,10,10,0.8,2743,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1977,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,-18.9,-21.7,88,103400,0,0,198,0,0,0,0,0,0,0,110,13.2,10,10,1.1,3047,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1977,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,-18.3,-19.4,91,103300,0,0,202,0,0,0,0,0,0,0,110,13.4,10,10,1.3,3350,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1977,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,-17.4,-20.5,86,103200,0,0,204,0,0,0,0,0,0,0,110,13.7,10,10,1.4,3350,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1977,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,-16.5,-20.5,81,103200,0,0,206,0,0,0,0,0,0,0,120,14.1,10,10,1.5,3350,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1977,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,-15.6,-18.9,76,103100,0,0,211,0,0,0,0,0,0,0,120,14.4,10,10,1.6,3350,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1977,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,-15.4,-19.4,80,103000,0,0,211,0,0,0,0,0,0,0,120,13.9,10,10,1.7,3350,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1977,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,-15.2,-18.7,83,102900,0,0,212,0,0,0,0,0,0,0,120,13.4,10,10,1.9,3350,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-15.0,-16.7,87,102900,0,0,215,0,0,0,0,0,0,0,120,12.9,10,10,2.0,3350,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-14.8,-17.4,88,102800,0,0,215,0,0,0,0,0,0,0,120,13.2,10,10,2.0,3250,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-14.6,-17.1,90,102700,0,0,216,0,0,0,0,0,0,0,110,13.6,10,10,2.0,3150,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-14.4,-15.6,91,102700,0,0,218,0,0,0,0,0,0,0,110,13.9,10,10,2.0,3050,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-14.0,-16.6,90,102700,0,0,218,0,0,0,0,0,0,0,120,11.8,10,10,2.9,3050,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-13.7,-16.4,88,102700,0,0,219,0,0,0,0,0,0,0,120,9.8,10,10,3.9,3050,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-13.3,-15.0,87,102700,0,0,222,0,0,0,0,0,0,0,130,7.7,10,10,4.8,3050,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-13.5,-16.4,87,102700,0,0,206,0,0,0,0,0,0,0,130,7.4,7,7,7.0,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1977,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,-13.7,-16.5,87,102700,0,0,201,0,0,0,0,0,0,0,120,7.0,5,5,9.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1977,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,-13.9,-15.6,87,102700,0,0,196,0,0,0,0,0,0,0,120,6.7,2,2,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1977,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,-14.5,-17.9,83,102700,0,0,190,0,0,0,0,0,0,0,120,6.5,1,1,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1977,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,-15.0,-19.0,80,102700,0,0,188,0,0,0,0,0,0,0,120,6.4,1,1,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1977,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,-15.6,-18.9,76,102700,0,0,183,0,0,0,0,0,0,0,120,6.2,0,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1977,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,-15.6,-19.6,80,102700,0,0,182,0,0,0,0,0,0,0,120,5.5,0,0,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1977,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,-15.6,-19.1,83,102700,0,0,183,0,0,0,0,0,0,0,110,4.8,1,0,11.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1977,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,-15.6,-17.2,87,102700,0,0,184,0,0,0,0,0,0,0,110,4.1,1,0,11.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1977,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,-15.6,-18.5,87,102700,0,0,186,0,0,0,0,0,0,0,100,4.8,3,1,11.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1977,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,-15.6,-18.5,87,102700,0,0,191,0,0,0,0,0,0,0,90,5.5,6,3,11.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1977,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,-15.6,-17.2,87,102700,0,0,193,0,0,0,0,0,0,0,80,6.2,8,4,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1977,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,-15.6,-18.7,86,102700,0,0,192,0,0,0,0,0,0,0,80,6.4,8,4,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1977,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,-15.6,-19.0,84,102700,0,0,192,0,0,0,0,0,0,0,90,6.5,9,4,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1977,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,-15.6,-17.8,83,102700,0,0,193,0,0,0,0,0,0,0,90,6.7,9,4,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1977,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,-15.4,-18.5,86,102700,0,0,191,0,0,0,0,0,0,0,80,6.7,8,3,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1977,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,-15.2,-18.0,88,102700,0,0,192,0,0,0,0,0,0,0,80,6.7,8,3,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1977,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,-15.0,-16.1,91,102700,0,0,193,0,0,0,0,0,0,0,70,6.7,7,2,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1977,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,-14.6,-16.6,93,102800,0,0,193,0,0,0,0,0,0,0,70,6.0,6,2,11.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1977,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,-14.3,-16.1,94,102800,0,0,195,0,0,0,0,0,0,0,70,5.3,6,2,11.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1977,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.9,-14.4,96,102800,0,0,197,0,0,0,0,0,0,0,70,4.6,5,2,11.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1977,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,-13.9,-15.8,94,102800,0,0,198,0,0,0,0,0,0,0,70,5.1,5,3,11.3,77777,9,999999999,10,0.0000,0,88,0.000,0.0,1.0 +1977,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,-13.9,-16.0,93,102900,0,0,198,0,0,0,0,0,0,0,70,5.7,5,3,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1977,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,-13.9,-15.0,91,102900,0,0,200,0,0,0,0,0,0,0,70,6.2,5,4,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1977,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,-14.3,-16.7,90,102900,0,0,198,0,0,0,0,0,0,0,70,5.9,4,4,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1977,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,-14.6,-17.3,88,103000,0,0,195,0,0,0,0,0,0,0,80,5.5,4,3,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1977,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,-15.0,-16.7,87,103000,0,0,194,0,0,0,0,0,0,0,80,5.2,3,3,11.3,77777,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1977,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,-14.4,-17.2,88,103100,0,0,199,0,0,0,0,0,0,0,90,5.9,5,5,11.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1977,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,-13.9,-16.4,90,103100,0,0,208,0,0,0,0,0,0,0,90,6.5,8,8,11.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1977,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,-13.3,-14.4,91,103200,0,0,222,0,0,0,0,0,0,0,100,7.2,10,10,11.3,2440,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1977,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,-13.1,-15.5,91,103200,0,0,222,0,0,0,0,0,0,0,100,7.7,10,10,11.3,2440,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1977,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,-13.0,-15.4,91,103200,0,0,223,0,0,0,0,0,0,0,100,8.3,10,10,11.3,2440,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1977,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,-12.8,-13.9,91,103300,0,0,225,0,0,0,0,0,0,0,100,8.8,10,10,11.3,2440,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1977,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,-12.8,-14.8,94,103300,0,0,224,0,0,0,0,0,0,0,100,10.3,10,10,8.6,2440,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1977,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,-12.8,-14.5,97,103300,0,0,224,0,0,0,0,0,0,0,100,11.9,10,10,5.9,2440,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1977,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,-12.8,-12.8,100,103300,0,0,226,0,0,0,0,0,0,0,100,13.4,10,10,3.2,2440,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1977,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,-12.8,-14.3,99,103300,0,0,213,0,0,0,0,0,0,0,100,13.9,10,8,2.9,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1977,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,-12.8,-14.5,97,103400,0,0,210,0,0,0,0,0,0,0,110,14.4,10,7,2.7,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1977,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,-12.8,-13.3,96,103400,0,0,207,0,0,0,0,0,0,0,110,14.9,10,5,2.4,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1977,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,-12.8,-14.8,94,103400,0,0,207,0,0,0,0,0,0,0,110,14.7,10,6,2.4,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1977,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,-12.8,-15.0,93,103400,0,0,207,0,0,0,0,0,0,0,110,14.6,10,6,2.4,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1977,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,-12.8,-13.9,91,103500,0,0,210,0,0,0,0,0,0,0,110,14.4,10,7,2.4,6100,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1977,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,-12.8,-15.2,90,103500,0,0,209,0,0,0,0,0,0,0,110,13.7,10,7,3.2,6100,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1977,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,-12.8,-15.3,88,103500,0,0,209,0,0,0,0,0,0,0,110,13.1,10,7,4.0,6100,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1977,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,-12.8,-14.4,87,103500,0,0,210,0,0,0,0,0,0,0,110,12.4,10,7,4.8,6100,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1977,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,-13.0,-16.0,86,103500,0,0,211,0,0,0,0,0,0,0,110,11.5,10,8,7.0,6100,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1977,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,-13.1,-16.4,85,103500,0,0,215,0,0,0,0,0,0,0,110,10.7,10,9,9.1,6100,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1977,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,-13.3,-15.6,84,103500,0,0,221,0,0,0,0,0,0,0,110,9.8,10,10,11.3,6100,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1977,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,-13.3,-16.8,84,103500,0,0,206,0,0,0,0,0,0,0,110,10.3,7,7,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1977,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,-13.3,-16.7,84,103400,0,0,202,0,0,0,0,0,0,0,110,10.8,5,5,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1977,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,-13.3,-15.6,84,103400,0,0,198,0,0,0,0,0,0,0,110,11.3,2,2,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1977,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.8,-16.6,82,103400,0,0,199,0,0,0,0,0,0,0,110,10.8,2,2,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1977,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,-12.2,-16.4,79,103300,0,0,198,0,0,0,0,0,0,0,110,10.3,3,1,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1977,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,-11.7,-15.0,77,103300,0,0,201,0,0,0,0,0,0,0,110,9.8,3,1,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1977,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,-12.1,-16.7,77,103300,0,0,198,0,0,0,0,0,0,0,110,9.8,4,1,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1977,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,-12.4,-17.0,76,103200,0,0,200,0,0,0,0,0,0,0,110,9.8,6,2,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1977,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,-12.8,-16.1,76,103200,0,0,199,0,0,0,0,0,0,0,110,9.8,7,2,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1977,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,-18.1,75,103200,0,0,194,0,0,0,0,0,0,0,110,8.1,5,1,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1977,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,-13.9,-18.9,74,103200,0,0,191,0,0,0,0,0,0,0,110,6.3,2,1,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1977,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,-14.4,-18.3,73,103200,0,0,187,0,0,0,0,0,0,0,110,4.6,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1977,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,-14.8,-19.8,74,103200,0,0,184,0,0,0,0,0,0,0,110,4.6,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1977,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,-15.2,-20.1,75,103200,0,0,183,0,0,0,0,0,0,0,100,4.6,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1977,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,-15.6,-18.9,76,103200,0,0,183,0,0,0,0,0,0,0,100,4.6,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1977,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,-20.2,77,103200,0,0,181,0,0,0,0,0,0,0,70,3.1,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1977,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.9,-20.2,78,103200,0,0,181,0,0,0,0,0,0,0,30,1.5,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1977,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,-16.1,-18.9,79,103200,0,0,181,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1977,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,-15.9,-20.0,78,103200,0,0,181,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1977,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,-15.8,-20.0,77,103100,0,0,181,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1977,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,-15.6,-18.9,76,103100,0,0,183,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1977,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,-15.0,-19.2,78,103100,0,0,184,0,0,0,0,0,0,0,360,0.5,0,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1977,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,-14.5,-18.3,81,103100,0,0,186,0,0,0,0,0,0,0,350,1.0,0,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1977,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,-13.9,-16.1,83,103100,0,0,190,0,0,0,0,0,0,0,350,1.5,0,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1977,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,-12.8,-16.0,85,103100,0,0,193,0,0,0,0,0,0,0,340,1.9,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1977,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.7,-14.6,86,103100,0,0,197,0,0,0,0,0,0,0,340,2.2,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1977,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,-10.6,-12.2,88,103200,0,0,203,0,0,0,0,0,0,0,330,2.6,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1977,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,-10.2,-13.3,87,103200,0,0,207,0,0,0,0,0,0,0,320,2.8,2,1,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1977,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,-9.8,-13.1,85,103200,0,0,208,0,0,0,0,0,0,0,310,2.9,3,1,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1977,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,-9.4,-11.7,84,103200,0,0,214,0,0,0,0,0,0,0,300,3.1,5,2,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1977,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,-9.4,-13.0,84,103200,0,0,213,0,0,0,0,0,0,0,310,3.1,6,2,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1977,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,-9.4,-13.0,84,103200,0,0,215,0,0,0,0,0,0,0,310,3.1,7,3,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1977,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,-9.4,-11.7,84,103200,0,0,216,0,0,0,0,0,0,0,320,3.1,8,3,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1977,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,-9.6,-13.2,84,103200,0,0,214,0,0,0,0,0,0,0,320,2.6,8,3,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1977,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,-9.8,-13.4,84,103200,0,0,211,0,0,0,0,0,0,0,310,2.0,9,2,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1977,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,-10.0,-12.2,84,103200,0,0,211,0,0,0,0,0,0,0,310,1.5,9,2,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1977,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,-10.4,-13.7,85,103200,0,0,209,0,0,0,0,0,0,0,330,1.0,8,2,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1977,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.7,-14.0,87,103200,0,0,205,0,0,0,0,0,0,0,340,0.5,8,1,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1977,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,-11.1,-12.8,88,103200,0,0,204,0,0,0,0,0,0,0,0,0.0,7,1,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1977,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,-12.0,-14.8,89,103100,0,0,200,0,0,0,0,0,0,0,310,1.0,5,1,7.8,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1977,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,-13.0,-15.6,90,103100,0,0,199,0,0,0,0,0,0,0,270,2.1,4,2,4.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1977,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,-13.9,-15.0,91,103000,0,0,197,0,0,0,0,0,0,0,220,3.1,2,2,0.8,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1977,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.0,-15.4,90,103000,0,0,197,0,0,0,0,0,0,0,230,2.9,1,1,4.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1977,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,-12.0,-14.6,89,102900,0,0,200,0,0,0,0,0,0,0,230,2.8,1,1,7.8,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1977,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,-11.1,-12.8,88,102900,0,0,201,0,0,0,0,0,0,0,240,2.6,0,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1977,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.5,-13.6,87,102800,0,0,202,0,0,0,0,0,0,0,240,2.8,0,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1977,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,-10.0,-13.3,85,102700,0,0,204,0,0,0,0,0,0,0,250,2.9,0,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1977,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,-9.4,-11.7,84,102700,0,0,207,0,0,0,0,0,0,0,250,3.1,0,0,11.3,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1977,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,-9.2,-12.7,84,102600,0,0,207,0,0,0,0,0,0,0,250,3.4,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1977,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.1,-12.4,84,102500,0,0,207,0,0,0,0,0,0,0,240,3.8,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1977,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,-8.9,-11.1,84,102400,0,0,209,0,0,0,0,0,0,0,240,4.1,0,0,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1977,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,-12.9,81,102300,0,0,211,0,0,0,0,0,0,0,250,4.5,1,1,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1977,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.9,-13.5,77,102300,0,0,211,0,0,0,0,0,0,0,260,4.8,1,1,11.3,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1977,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,-12.8,74,102200,0,0,214,0,0,0,0,0,0,0,270,5.2,2,2,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1977,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,-9.6,-14.3,77,102200,0,0,216,0,0,0,0,0,0,0,290,6.0,5,5,8.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1977,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.4,-14.4,81,102100,0,0,218,0,0,0,0,0,0,0,300,6.9,7,7,4.8,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1977,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,-11.1,-13.3,84,102100,0,0,231,0,0,0,0,0,0,0,320,7.7,10,10,1.6,120,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1977,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,-11.3,-14.8,84,102000,0,0,229,0,0,0,0,0,0,0,320,7.5,10,10,4.3,160,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1977,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,-11.5,-15.0,84,102000,0,0,228,0,0,0,0,0,0,0,320,7.4,10,10,7.0,200,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1977,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,-11.7,-13.9,84,101900,0,0,228,0,0,0,0,0,0,0,320,7.2,10,10,9.7,240,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1977,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.5,-14.8,85,101900,0,0,228,0,0,0,0,0,0,0,330,7.0,10,10,7.5,423,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1977,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.3,-14.6,87,101900,0,0,223,0,0,0,0,0,0,0,330,6.9,10,9,5.4,607,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1977,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,-11.1,-12.8,88,101900,0,0,225,0,0,0,0,0,0,0,340,6.7,10,9,3.2,790,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1977,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.3,-14.8,84,102000,0,0,223,0,0,0,0,0,0,0,340,7.9,10,9,3.2,640,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1977,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,-11.5,-15.6,81,102000,0,0,221,0,0,0,0,0,0,0,350,9.1,9,9,3.2,490,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1977,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,-11.7,-15.0,77,102000,0,0,221,0,0,0,0,0,0,0,350,10.3,9,9,3.2,340,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1977,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,-12.2,-16.5,78,102100,0,0,218,0,0,0,0,0,0,0,350,10.0,9,9,3.2,340,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1977,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,-12.8,-16.8,79,102200,0,0,222,0,0,0,0,0,0,0,350,9.6,10,10,3.2,340,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1977,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,-13.3,-16.1,80,102300,0,0,221,0,0,0,0,0,0,0,350,9.3,10,10,3.2,340,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1977,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,-13.7,-18.0,78,102400,0,0,204,0,0,0,0,0,0,0,350,9.3,8,7,4.8,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1977,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,-14.0,-18.8,75,102500,0,0,198,0,0,0,0,0,0,0,350,9.3,6,5,6.4,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1977,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,-14.4,-18.3,73,102600,0,0,193,0,0,0,0,0,0,0,350,9.3,4,2,8.0,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1977,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,-15.0,-20.2,72,102700,0,0,187,0,0,0,0,0,0,0,350,8.6,3,1,9.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1977,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.5,-21.0,70,102800,0,0,185,0,0,0,0,0,0,0,340,7.9,3,1,10.2,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-16.1,-20.6,69,102900,0,0,180,0,0,0,0,0,0,0,340,7.2,2,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-16.7,-22.6,68,103000,0,0,177,0,0,0,0,0,0,0,340,7.2,1,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-17.2,-23.3,66,103100,0,0,175,0,0,0,0,0,0,0,350,7.2,1,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-17.8,-22.8,65,103200,0,0,174,0,0,0,0,0,0,0,350,7.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-18.2,-24.1,67,103200,0,0,172,0,0,0,0,0,0,0,350,6.9,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-18.5,-24.1,70,103200,0,0,171,0,0,0,0,0,0,0,340,6.5,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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,-18.9,-22.8,72,103200,0,0,171,0,0,0,0,0,0,0,340,6.2,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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,-19.3,-24.5,72,103200,0,0,168,0,0,0,0,0,0,0,340,6.2,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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,-19.6,-24.9,71,103300,0,0,167,0,0,0,0,0,0,0,330,6.2,1,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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,-20.0,-23.9,71,103300,0,0,167,0,0,0,0,0,0,0,330,6.2,1,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.6,69,103300,0,0,166,0,0,0,0,0,0,0,330,6.9,1,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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,-20.0,-26.0,67,103300,0,0,165,0,0,0,0,0,0,0,340,7.5,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1977,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,-20.0,-25.0,65,103300,0,0,166,0,0,0,0,0,0,0,340,8.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-20.4,-26.5,66,103300,0,0,164,0,0,0,0,0,0,0,340,7.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-20.7,-26.7,67,103300,0,0,163,0,0,0,0,0,0,0,340,6.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.1,-25.6,68,103300,0,0,163,0,0,0,0,0,0,0,340,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.3,-26.7,69,103200,0,0,162,0,0,0,0,0,0,0,340,5.0,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.5,-26.7,70,103200,0,0,161,0,0,0,0,0,0,0,350,4.8,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.7,-25.6,71,103200,0,0,161,0,0,0,0,0,0,0,350,4.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.7,-26.4,73,103200,0,0,161,0,0,0,0,0,0,0,350,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.7,-26.0,76,103100,0,0,164,0,0,0,0,0,0,0,350,3.6,1,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.7,-24.4,78,103100,0,0,165,0,0,0,0,0,0,0,350,3.1,1,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.9,-26.1,76,103100,0,0,164,0,0,0,0,0,0,0,340,3.3,1,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.0,-26.7,73,103000,0,0,163,0,0,0,0,0,0,0,340,3.4,1,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.2,-26.1,71,103000,0,0,163,0,0,0,0,0,0,0,330,3.6,1,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.8,-27.2,70,102900,0,0,163,0,0,0,0,0,0,0,320,3.1,1,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.5,-27.0,69,102900,0,0,166,0,0,0,0,0,0,0,320,2.6,2,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.1,-25.6,68,102900,0,0,168,0,0,0,0,0,0,0,310,2.1,2,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.8,-27.4,69,102800,0,0,165,0,0,0,0,0,0,0,270,2.1,3,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.6,-28.0,70,102700,0,0,163,0,0,0,0,0,0,0,230,2.1,4,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.3,-27.2,71,102600,0,0,161,0,0,0,0,0,0,0,190,2.1,5,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.5,-28.7,71,102500,0,0,160,0,0,0,0,0,0,0,190,2.4,6,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.7,-28.9,70,102500,0,0,161,0,0,0,0,0,0,0,200,2.8,7,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.9,-27.8,70,102400,0,0,161,0,0,0,0,0,0,0,200,3.1,8,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.1,-29.3,70,102400,0,0,159,0,0,0,0,0,0,0,200,3.4,9,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.2,-29.5,70,102300,0,0,160,0,0,0,0,0,0,0,200,3.8,9,4,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.4,-28.3,70,102300,0,0,161,0,0,0,0,0,0,0,200,4.1,10,4,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.2,-30.5,69,102200,0,0,156,0,0,0,0,0,0,0,200,4.3,9,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.9,-31.5,67,102100,0,0,153,0,0,0,0,0,0,0,210,4.4,7,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-26.7,-31.1,66,102100,0,0,150,0,0,0,0,0,0,0,210,4.6,6,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.6,-30.9,68,102000,0,0,156,0,0,0,0,0,0,0,210,4.3,7,4,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.4,-29.6,69,101900,0,0,164,0,0,0,0,0,0,0,210,3.9,9,7,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.3,-27.2,71,101900,0,0,175,0,0,0,0,0,0,0,210,3.6,10,9,11.3,3350,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.7,-29.3,67,101900,0,0,166,0,0,0,0,0,0,0,210,3.8,8,7,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.0,-30.3,64,101900,0,0,160,0,0,0,0,0,0,0,200,3.9,5,4,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.4,-30.0,60,101900,0,0,157,0,0,0,0,0,0,0,200,4.1,3,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.0,-30.6,61,101800,0,0,160,0,0,0,0,0,0,0,200,3.9,5,4,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.7,-30.0,63,101800,0,0,166,0,0,0,0,0,0,0,210,3.8,7,7,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.3,-28.3,64,101700,0,0,174,0,0,0,0,0,0,0,210,3.6,9,9,11.3,3350,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.3,-29.0,67,101700,0,0,174,0,0,0,0,0,0,0,210,3.4,9,9,11.3,2610,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.3,-28.5,71,101700,0,0,174,0,0,0,0,0,0,0,200,3.3,10,9,11.3,1870,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.3,-26.7,74,101700,0,0,176,0,0,0,0,0,0,0,200,3.1,10,9,11.3,1130,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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.9,-25.4,76,101700,0,0,184,0,0,0,0,0,0,0,220,3.3,10,9,11.3,1017,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-18.5,-22.8,77,101700,0,0,198,0,0,0,0,0,0,0,230,3.4,10,10,11.3,903,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-16.1,-18.9,79,101700,0,0,209,0,0,0,0,0,0,0,250,3.6,10,10,11.3,790,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-15.5,-19.5,80,101700,0,0,211,0,0,0,0,0,0,0,280,4.3,10,10,9.7,670,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-15.0,-18.8,82,101700,0,0,213,0,0,0,0,0,0,0,300,5.0,10,10,8.0,550,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-14.4,-16.7,83,101700,0,0,217,0,0,0,0,0,0,0,330,5.7,10,10,6.4,430,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-15.5,-19.1,83,101700,0,0,211,0,0,0,0,0,0,0,330,6.5,10,10,7.5,410,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-16.7,-20.3,83,101800,0,0,206,0,0,0,0,0,0,0,330,7.4,10,10,8.6,390,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-17.8,-20.0,83,101800,0,0,203,0,0,0,0,0,0,0,330,8.2,10,10,9.7,370,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-18.5,-22.2,82,101900,0,0,189,0,0,0,0,0,0,0,330,7.5,8,8,10.2,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-19.3,-23.2,80,102000,0,0,179,0,0,0,0,0,0,0,330,6.9,5,5,10.8,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-20.0,-22.8,79,102000,0,0,175,0,0,0,0,0,0,0,330,6.2,3,3,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-20.7,-24.8,77,102000,0,0,170,0,0,0,0,0,0,0,330,6.4,2,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-21.5,-25.8,76,102100,0,0,167,0,0,0,0,0,0,0,340,6.5,2,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.2,-25.6,74,102100,0,0,163,0,0,0,0,0,0,0,340,6.7,1,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-22.8,-27.3,74,102100,0,0,160,0,0,0,0,0,0,0,340,6.5,1,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.3,-27.9,74,102100,0,0,156,0,0,0,0,0,0,0,330,6.4,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.9,-27.2,74,102100,0,0,155,0,0,0,0,0,0,0,330,6.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.1,-28.6,74,102100,0,0,153,0,0,0,0,0,0,0,330,5.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.2,-28.7,74,102200,0,0,156,0,0,0,0,0,0,0,330,5.1,1,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.4,-27.8,74,102200,0,0,156,0,0,0,0,0,0,0,330,4.6,1,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.4,-28.8,75,102200,0,0,155,0,0,0,0,0,0,0,330,4.8,1,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.4,-28.6,77,102200,0,0,152,0,0,0,0,0,0,0,330,5.0,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.4,-27.2,78,102200,0,0,153,0,0,0,0,0,0,0,330,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.6,-28.7,78,102300,0,0,152,0,0,0,0,0,0,0,340,4.8,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.8,-28.9,78,102300,0,0,151,0,0,0,0,0,0,0,340,4.5,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.0,-27.8,78,102300,0,0,152,0,0,0,0,0,0,0,350,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.2,-29.5,77,102300,0,0,150,0,0,0,0,0,0,0,340,4.3,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.4,-29.9,75,102300,0,0,149,0,0,0,0,0,0,0,340,4.4,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.6,-28.9,74,102300,0,0,149,0,0,0,0,0,0,0,330,4.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.8,-30.2,75,102300,0,0,148,0,0,0,0,0,0,0,340,3.9,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.9,-30.3,77,102300,0,0,148,0,0,0,0,0,0,0,340,3.3,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-26.1,-28.9,78,102300,0,0,148,0,0,0,0,0,0,0,350,2.6,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.9,-30.2,77,102300,0,0,148,0,0,0,0,0,0,0,350,2.8,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.8,-30.2,75,102300,0,0,148,0,0,0,0,0,0,0,350,2.9,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.6,-28.9,74,102300,0,0,149,0,0,0,0,0,0,0,350,3.1,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.8,-29.8,77,102300,0,0,148,0,0,0,0,0,0,0,350,2.9,2,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.9,-29.6,79,102200,0,0,151,0,0,0,0,0,0,0,350,2.8,5,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-26.1,-28.3,82,102200,0,0,151,0,0,0,0,0,0,0,350,2.6,7,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-26.3,-30.1,79,102200,0,0,150,0,0,0,0,0,0,0,360,2.4,7,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-26.5,-30.7,76,102200,0,0,149,0,0,0,0,0,0,0,20,2.3,8,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-26.7,-30.0,73,102100,0,0,149,0,0,0,0,0,0,0,30,2.1,8,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-26.7,-31.0,74,102100,0,0,148,0,0,0,0,0,0,0,20,2.3,5,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-26.7,-30.7,76,102100,0,0,146,0,0,0,0,0,0,0,20,2.4,3,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-26.7,-29.4,77,102100,0,0,146,0,0,0,0,0,0,0,10,2.6,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-26.5,-30.5,77,102100,0,0,146,0,0,0,0,0,0,0,20,2.8,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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.3,-30.3,78,102100,0,0,147,0,0,0,0,0,0,0,20,2.9,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-26.1,-28.9,78,102100,0,0,148,0,0,0,0,0,0,0,30,3.1,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.9,-30.0,78,102100,0,0,148,0,0,0,0,0,0,0,10,3.3,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.8,-29.8,78,102000,0,0,148,0,0,0,0,0,0,0,360,3.4,1,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.6,-28.3,78,102000,0,0,150,0,0,0,0,0,0,0,340,3.6,1,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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.1,-30.2,78,102000,0,0,147,0,0,0,0,0,0,0,340,3.1,1,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-26.7,-30.8,77,102000,0,0,145,0,0,0,0,0,0,0,340,2.6,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-27.2,-30.0,77,102000,0,0,145,0,0,0,0,0,0,0,340,2.1,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-27.6,-31.7,77,102000,0,0,143,0,0,0,0,0,0,0,350,2.3,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-27.9,-32.1,77,102000,0,0,142,0,0,0,0,0,0,0,10,2.4,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-28.3,-31.1,77,102000,0,0,142,0,0,0,0,0,0,0,20,2.6,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-28.7,-32.7,77,102000,0,0,140,0,0,0,0,0,0,0,40,2.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-29.0,-33.1,77,102000,0,0,139,0,0,0,0,0,0,0,70,1.9,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-29.4,-32.2,77,102000,0,0,138,0,0,0,0,0,0,0,90,1.5,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-29.6,-33.5,77,102000,0,0,137,0,0,0,0,0,0,0,100,1.5,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-29.8,-33.7,77,102000,0,0,136,0,0,0,0,0,0,0,100,1.5,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-30.0,-32.8,77,102000,0,0,137,0,0,0,0,0,0,0,110,1.5,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-29.8,-33.8,77,102000,0,0,136,0,0,0,0,0,0,0,120,2.0,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-29.6,-33.6,77,102000,0,0,137,0,0,0,0,0,0,0,120,2.6,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-29.4,-32.2,77,102000,0,0,138,0,0,0,0,0,0,0,130,3.1,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-30.0,-34.5,73,102000,0,0,140,0,0,0,0,0,0,0,150,2.9,3,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-30.5,-35.6,69,102000,0,0,141,0,0,0,0,0,0,0,180,2.8,6,4,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-31.1,-35.6,65,102000,0,0,142,0,0,0,0,0,0,0,200,2.6,9,6,11.3,2440,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-30.5,-35.9,68,102000,0,0,143,0,0,0,0,0,0,0,190,2.6,9,6,11.3,2440,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-30.0,-35.0,70,102000,0,0,145,0,0,0,0,0,0,0,190,2.6,10,6,11.3,2440,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-29.4,-32.8,73,102000,0,0,147,0,0,0,0,0,0,0,180,2.6,10,6,11.3,2440,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-29.8,-34.5,73,102000,0,0,143,0,0,0,0,0,0,0,170,2.8,7,4,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-30.2,-34.8,72,102000,0,0,139,0,0,0,0,0,0,0,160,2.9,4,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-30.6,-33.9,72,101900,0,0,135,0,0,0,0,0,0,0,150,3.1,1,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-31.1,-35.6,73,101900,0,0,132,0,0,0,0,0,0,0,150,3.4,1,0,9.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-31.7,-36.0,75,101900,0,0,131,0,0,0,0,0,0,0,150,3.8,0,0,7.0,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-32.2,-35.0,76,101800,0,0,130,0,0,0,0,0,0,0,150,4.1,0,0,4.8,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-32.6,-36.9,75,101800,0,0,128,0,0,0,0,0,0,0,150,3.6,0,0,5.9,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-32.9,-37.5,73,101800,0,0,127,0,0,0,0,0,0,0,140,3.1,1,0,6.9,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-33.3,-36.7,72,101700,0,0,127,0,0,0,0,0,0,0,140,2.6,1,0,8.0,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-33.3,-38.0,72,101700,0,0,126,0,0,0,0,0,0,0,130,3.1,2,0,7.5,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-33.3,-38.0,72,101600,0,0,126,0,0,0,0,0,0,0,130,3.6,3,0,6.9,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-33.3,-36.7,72,101600,0,0,127,0,0,0,0,0,0,0,120,4.1,4,0,6.4,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-32.6,-36.9,73,101500,0,0,134,0,0,0,0,0,0,0,130,4.1,6,3,8.0,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-31.8,-35.9,75,101500,0,0,138,0,0,0,0,0,0,0,140,4.1,8,5,9.7,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-31.1,-33.9,76,101400,0,0,147,0,0,0,0,0,0,0,150,4.1,10,8,11.3,6100,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-30.4,-34.5,75,101300,0,0,148,0,0,0,0,0,0,0,150,4.1,10,8,9.1,4880,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-29.6,-34.0,74,101300,0,0,153,0,0,0,0,0,0,0,150,4.1,10,9,7.0,3660,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-28.9,-32.2,73,101200,0,0,157,0,0,0,0,0,0,0,150,4.1,10,9,4.8,2440,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-28.5,-32.8,74,101200,0,0,154,0,0,0,0,0,0,0,140,3.6,10,8,5.9,2440,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-28.2,-32.3,76,101200,0,0,155,0,0,0,0,0,0,0,140,3.1,10,8,6.9,2440,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-27.8,-30.6,77,101100,0,0,155,0,0,0,0,0,0,0,130,2.6,10,7,8.0,2440,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-27.1,-31.1,77,101200,0,0,153,0,0,0,0,0,0,0,70,2.8,9,5,9.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-26.3,-30.3,78,101200,0,0,154,0,0,0,0,0,0,0,20,2.9,8,4,10.2,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.6,-28.3,78,101200,0,0,155,0,0,0,0,0,0,0,320,3.1,7,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-25.2,-29.2,78,101200,0,0,155,0,0,0,0,0,0,0,320,3.1,6,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.8,-28.9,78,101300,0,0,154,0,0,0,0,0,0,0,310,3.1,4,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.4,-27.2,78,101300,0,0,156,0,0,0,0,0,0,0,310,3.1,3,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.2,-28.3,78,101300,0,0,156,0,0,0,0,0,0,0,290,3.3,4,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-24.1,-28.2,78,101400,0,0,159,0,0,0,0,0,0,0,280,3.4,4,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.9,-26.7,78,101400,0,0,160,0,0,0,0,0,0,0,260,3.6,5,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.7,-27.8,78,101500,0,0,160,0,0,0,0,0,0,0,260,3.4,5,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.5,-27.7,78,101500,0,0,162,0,0,0,0,0,0,0,250,3.3,6,3,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.3,-26.1,78,101500,0,0,164,0,0,0,0,0,0,0,250,3.1,6,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.2,-25.9,79,101600,0,0,165,0,0,0,0,0,0,0,250,3.0,7,4,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.2,-25.9,81,101600,0,0,167,0,0,0,0,0,0,0,240,2.8,7,5,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1977,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,-23.2,-25.8,82,101600,0,0,168,0,0,0,0,0,0,0,240,2.7,8,6,11.3,6100,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.2,-25.7,78,99900,0,0,168,0,0,0,0,0,0,0,60,2.5,10,6,6.4,3050,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.2,-25.6,78,99900,0,0,167,0,0,0,0,0,0,0,50,2.4,10,5,6.4,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.2,-25.6,82,99800,0,0,168,0,0,0,0,0,0,0,50,2.2,10,6,6.4,3050,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.3,-25.6,82,99800,0,0,181,0,0,0,0,0,0,0,80,2.1,10,10,3.2,3050,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.3,-26.1,78,99800,0,0,181,0,0,0,0,0,0,0,70,2.6,10,10,3.2,3050,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.3,-26.1,78,99800,0,0,181,0,0,0,0,0,0,0,60,2.1,10,10,3.2,240,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.9,-26.1,82,99800,0,0,179,0,0,0,0,0,0,0,70,1.5,10,10,8.0,1370,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.3,-25.6,82,99800,0,0,181,0,0,0,0,0,0,0,80,2.1,10,10,8.0,1370,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-22.8,-25.6,78,99800,0,0,183,0,0,0,0,0,0,0,80,2.1,10,10,11.3,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-22.8,-25.0,82,99800,0,0,183,0,0,0,0,0,0,0,60,2.1,10,10,11.3,1520,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-22.8,-25.0,82,99800,0,0,183,0,0,0,0,0,0,0,60,2.6,10,10,11.3,1520,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.3,-26.1,78,99800,0,0,168,0,0,0,0,0,0,0,60,2.1,10,6,11.3,3050,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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.9,-26.7,78,99800,0,0,179,0,0,0,0,0,0,0,60,2.1,10,10,11.3,150,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-22.8,-24.4,86,99800,0,0,184,0,0,0,0,0,0,0,70,2.1,10,10,3.2,120,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-22.8,-25.0,82,99800,0,0,183,0,0,0,0,0,0,0,70,2.1,10,10,2.0,120,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-22.8,-25.6,78,99700,0,0,183,0,0,0,0,0,0,0,60,2.1,10,10,2.0,120,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-22.8,-25.0,82,99800,0,0,183,0,0,0,0,0,0,0,60,2.1,10,10,2.0,120,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-22.2,-24.4,82,99700,0,0,186,0,0,0,0,0,0,0,60,2.1,10,10,6.4,120,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-21.1,-23.9,79,99700,0,0,189,0,0,0,0,0,0,0,50,2.1,10,10,6.4,120,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-20.6,-23.3,79,99700,0,0,191,0,0,0,0,0,0,0,360,2.6,10,10,6.4,550,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-20.6,-22.8,83,99700,0,0,192,0,0,0,0,0,0,0,360,2.6,10,10,6.4,520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-21.1,-23.3,82,99700,0,0,190,0,0,0,0,0,0,0,60,2.1,10,10,6.4,550,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-20.6,-23.3,79,99700,0,0,191,0,0,0,0,0,0,0,40,2.1,10,10,6.4,610,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-20.6,-22.2,87,99700,0,0,192,0,0,0,0,0,0,0,340,2.6,10,10,6.4,550,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-20.6,-22.8,83,99700,0,0,192,0,0,0,0,0,0,0,350,2.6,10,10,6.4,550,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-20.0,-22.2,83,99600,0,0,194,0,0,0,0,0,0,0,360,2.6,10,10,6.4,610,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-20.0,-22.2,83,99600,0,0,189,0,0,0,0,0,0,0,360,5.2,10,9,6.4,610,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-20.0,-22.2,83,99600,0,0,189,0,0,0,0,0,0,0,40,4.1,10,9,6.4,610,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-20.0,-22.2,83,99600,0,0,189,0,0,0,0,0,0,0,20,5.2,10,9,6.4,610,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-19.4,-21.7,83,99600,0,0,196,0,0,0,0,0,0,0,360,4.1,10,10,6.4,760,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-20.0,-22.2,83,99600,0,0,194,0,0,0,0,0,0,0,340,4.1,10,10,6.4,760,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-20.0,-22.2,83,99600,0,0,194,0,0,0,0,0,0,0,320,5.7,10,10,6.4,760,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-20.0,-21.7,87,99600,0,0,194,0,0,0,0,0,0,0,340,5.7,10,10,11.3,400,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-19.4,-21.7,83,99600,0,0,196,0,0,0,0,0,0,0,350,4.6,10,10,11.3,400,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-19.4,-21.7,83,99600,0,0,196,0,0,0,0,0,0,0,330,5.7,10,10,11.3,400,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-19.4,-21.7,83,99600,0,0,196,0,0,0,0,0,0,0,340,6.2,10,10,11.3,340,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-19.4,-21.7,83,99600,0,0,196,0,0,0,0,0,0,0,330,6.2,10,10,11.3,340,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-19.4,-21.7,83,99600,0,0,196,0,0,0,0,0,0,0,330,6.2,10,10,4.8,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-19.4,-21.7,83,99600,0,0,196,0,0,0,0,0,0,0,330,6.2,10,10,4.8,370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-18.9,-21.1,83,99600,0,0,198,0,0,0,0,0,0,0,310,2.1,10,10,4.8,370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-18.9,-20.6,87,99600,0,0,199,0,0,0,0,0,0,0,340,2.6,10,10,4.8,400,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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.9,-20.6,87,99600,0,0,199,0,0,0,0,0,0,0,310,2.6,10,10,4.8,910,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-18.3,-20.6,83,99600,0,0,201,0,0,0,0,0,0,0,310,2.1,10,10,4.8,910,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-18.3,-20.6,83,99500,0,0,201,0,0,0,0,0,0,0,320,3.1,10,10,8.0,520,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-17.8,-20.0,83,99500,0,0,203,0,0,0,0,0,0,0,320,3.1,10,10,4.8,240,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-17.8,-19.4,87,99500,0,0,203,0,0,0,0,0,0,0,320,3.1,10,10,4.8,370,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-16.7,-18.3,87,99400,0,0,208,0,0,0,0,0,0,0,340,3.1,10,10,4.8,370,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-16.7,-18.3,87,99400,0,0,208,0,0,0,0,0,0,0,350,3.1,10,10,4.8,370,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-16.7,-18.3,87,99400,0,0,208,0,0,0,0,0,0,0,10,5.2,10,10,4.8,370,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-16.7,-18.3,87,99300,0,0,208,0,0,0,0,0,0,0,20,4.1,10,10,1.6,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-17.2,-18.9,87,99300,0,0,206,0,0,0,0,0,0,0,120,2.6,10,10,2.4,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-17.8,-19.4,87,99200,0,0,203,0,0,0,0,0,0,0,120,4.1,10,10,11.3,120,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-18.3,-20.0,87,99100,0,0,201,0,0,0,0,0,0,0,110,5.2,10,10,11.3,520,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-18.3,-20.6,83,99100,0,0,201,0,0,0,0,0,0,0,100,5.2,10,10,11.3,520,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-18.9,-20.6,87,99100,0,0,199,0,0,0,0,0,0,0,90,4.1,10,10,11.3,610,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-18.9,-21.1,83,99100,0,0,198,0,0,0,0,0,0,0,110,3.1,10,10,11.3,610,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-17.8,-19.4,87,99000,0,0,203,0,0,0,0,0,0,0,200,2.6,10,10,11.3,1310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-18.9,-20.6,87,99000,0,0,199,0,0,0,0,0,0,0,190,3.1,10,10,11.3,1310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-18.9,-21.1,83,99100,0,0,193,0,0,0,0,0,0,0,200,9.3,10,9,4.8,1310,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-18.9,-21.1,83,99100,0,0,193,0,0,0,0,0,0,0,220,8.2,10,9,3.2,1310,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-19.4,-21.7,83,99100,0,0,179,0,0,0,0,0,0,0,220,5.2,5,4,2.4,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-21.1,-23.9,79,99200,0,0,171,0,0,0,0,0,0,0,210,5.7,4,3,3.2,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-21.1,-23.9,79,99200,0,0,171,0,0,0,0,0,0,0,220,6.2,5,3,4.8,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-20.6,-22.8,83,99200,0,0,178,0,0,0,0,0,0,0,230,7.7,8,6,4.8,1980,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-21.1,-23.9,79,99300,0,0,189,0,0,0,0,0,0,0,240,7.7,10,10,4.8,1830,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-21.1,-23.3,82,99300,0,0,176,0,0,0,0,0,0,0,240,9.3,6,6,4.8,3050,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-21.7,-24.4,78,99400,0,0,169,0,0,0,0,0,0,0,250,7.7,3,3,4.8,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-20.6,-23.3,79,99400,0,0,173,0,0,0,0,0,0,0,240,9.3,6,3,4.8,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-20.6,-23.3,79,99500,0,0,174,0,0,0,0,0,0,0,250,7.7,8,4,4.8,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-21.7,-23.9,82,99500,0,0,170,0,0,0,0,0,0,0,250,7.7,8,3,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-21.7,-24.4,78,99600,0,0,168,0,0,0,0,0,0,0,240,6.2,5,2,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-21.1,-23.3,82,99600,0,0,173,0,0,0,0,0,0,0,240,5.2,8,4,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-21.1,-23.3,82,99700,0,0,190,0,0,0,0,0,0,0,250,6.7,10,10,11.3,610,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-21.1,-23.3,82,99800,0,0,190,0,0,0,0,0,0,0,240,5.2,10,10,11.3,520,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-21.7,-24.4,78,99800,0,0,182,0,0,0,0,0,0,0,260,7.7,10,9,11.3,490,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-22.2,-24.4,82,99800,0,0,166,0,0,0,0,0,0,0,270,7.7,3,2,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-22.2,-25.0,78,99900,0,0,166,0,0,0,0,0,0,0,280,7.2,3,2,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-22.8,-25.6,78,99900,0,0,165,0,0,0,0,0,0,0,260,6.7,5,3,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.9,-26.7,78,100000,0,0,155,0,0,0,0,0,0,0,260,7.2,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-24.4,-27.8,74,100000,0,0,156,0,0,0,0,0,0,0,250,6.2,2,1,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.0,-27.8,78,100100,0,0,152,0,0,0,0,0,0,0,270,5.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.0,-28.3,74,100100,0,0,151,0,0,0,0,0,0,0,280,7.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.6,-28.9,74,100200,0,0,149,0,0,0,0,0,0,0,290,6.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.1,-28.9,78,100300,0,0,148,0,0,0,0,0,0,0,290,6.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.1,-28.9,78,100300,0,0,148,0,0,0,0,0,0,0,290,6.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.7,-29.4,77,100300,0,0,146,0,0,0,0,0,0,0,300,6.7,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.2,-30.6,73,100400,0,0,144,0,0,0,0,0,0,0,290,4.6,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.2,-30.6,73,100400,0,0,144,0,0,0,0,0,0,0,310,5.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.2,-30.6,73,100500,0,0,152,0,0,0,0,0,0,0,300,4.1,4,4,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.8,-30.6,77,100500,0,0,149,0,0,0,0,0,0,0,310,6.2,3,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.8,-34.4,53,100600,0,0,147,0,0,0,0,0,0,0,310,4.6,3,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.2,-31.1,70,100600,0,0,158,0,0,0,0,0,0,0,320,6.2,8,8,11.3,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.2,-30.6,73,100700,0,0,167,0,0,0,0,0,0,0,310,4.1,10,10,9.7,910,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.8,-31.1,73,100700,0,0,165,0,0,0,0,0,0,0,330,4.1,10,10,4.8,640,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.8,-31.1,73,100700,0,0,165,0,0,0,0,0,0,0,330,4.1,10,10,4.8,120,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.2,-30.6,73,100800,0,0,167,0,0,0,0,0,0,0,340,3.6,10,10,4.8,120,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.2,-30.6,73,100900,0,0,162,0,0,0,0,0,0,0,320,4.1,10,9,8.0,120,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.2,-30.6,73,100900,0,0,162,0,0,0,0,0,0,0,340,4.1,10,9,8.0,120,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.2,-30.6,73,100900,0,0,167,0,0,0,0,0,0,0,340,5.2,10,10,11.3,120,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.2,-30.6,73,101000,0,0,167,0,0,0,0,0,0,0,360,4.1,10,10,11.3,120,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.2,-30.6,73,101000,0,0,167,0,0,0,0,0,0,0,340,4.1,10,10,11.3,910,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.2,-30.6,73,101000,0,0,167,0,0,0,0,0,0,0,360,5.2,10,10,11.3,910,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.7,-30.0,74,101100,0,0,169,0,0,0,0,0,0,0,30,2.6,10,10,11.3,910,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.2,-30.6,73,101100,0,0,162,0,0,0,0,0,0,0,10,3.6,10,9,11.3,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.7,-30.0,74,101100,0,0,164,0,0,0,0,0,0,0,10,4.1,10,9,11.3,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.1,-29.4,74,101100,0,0,171,0,0,0,0,0,0,0,30,3.1,10,10,11.3,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.6,-28.9,74,101100,0,0,172,0,0,0,0,0,0,0,40,2.6,10,10,11.3,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.0,-28.3,74,101100,0,0,175,0,0,0,0,0,0,0,30,4.1,10,10,11.3,1830,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.0,-28.3,74,101100,0,0,175,0,0,0,0,0,0,0,30,3.1,10,10,6.4,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.0,-27.8,78,101100,0,0,175,0,0,0,0,0,0,0,10,3.6,10,10,9.7,1830,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.0,-27.8,78,101100,0,0,170,0,0,0,0,0,0,0,30,4.1,10,9,11.3,1830,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.0,-27.8,78,101100,0,0,170,0,0,0,0,0,0,0,50,4.1,10,9,11.3,1830,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-24.4,-27.8,74,101100,0,0,177,0,0,0,0,0,0,0,40,3.1,10,10,11.3,1830,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-24.4,-27.2,78,101000,0,0,177,0,0,0,0,0,0,0,60,3.1,10,10,11.3,430,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-24.4,-27.8,74,101000,0,0,177,0,0,0,0,0,0,0,50,3.6,10,10,11.3,640,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-24.4,-27.8,74,101000,0,0,177,0,0,0,0,0,0,0,50,3.1,10,10,11.3,640,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-24.4,-27.8,74,101000,0,0,177,0,0,0,0,0,0,0,60,3.1,10,10,11.3,1830,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.6,-28.9,74,101000,0,0,157,0,0,0,0,0,0,0,60,3.1,4,4,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.1,-29.4,74,100900,0,0,153,0,0,0,0,0,0,0,60,3.1,2,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.9,-32.2,73,100900,0,0,139,0,0,0,0,0,0,0,60,3.1,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.9,-32.8,69,100900,0,0,139,0,0,0,0,0,0,0,80,3.1,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-30.0,-33.3,73,100900,0,0,136,0,0,0,0,0,0,0,90,3.1,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-29.4,-32.8,73,100900,0,0,145,0,0,0,0,0,0,0,80,3.1,8,4,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-29.4,-32.8,73,100900,0,0,138,0,0,0,0,0,0,0,80,3.6,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.8,-31.1,73,100800,0,0,143,0,0,0,0,0,0,0,70,3.6,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.8,-31.1,73,100800,0,0,143,0,0,0,0,0,0,0,80,2.6,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.9,-32.2,73,100800,0,0,139,0,0,0,0,0,0,0,90,2.6,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.3,-31.7,73,100800,0,0,141,0,0,0,0,0,0,0,70,3.6,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.9,-32.2,73,100700,0,0,139,0,0,0,0,0,0,0,70,3.1,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.9,-32.2,73,100700,0,0,139,0,0,0,0,0,0,0,70,3.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-29.4,-32.8,73,100700,0,0,138,0,0,0,0,0,0,0,70,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.3,-31.1,77,100700,0,0,142,0,0,0,0,0,0,0,60,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.9,-31.7,77,100700,0,0,140,0,0,0,0,0,0,0,70,3.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.8,-31.1,73,100700,0,0,145,0,0,0,0,0,0,0,70,4.1,1,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.3,-32.2,69,100700,0,0,144,0,0,0,0,0,0,0,70,3.6,1,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-29.4,-32.8,73,100700,0,0,141,0,0,0,0,0,0,0,70,4.1,1,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.3,-31.1,77,100700,0,0,146,0,0,0,0,0,0,0,70,3.6,2,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.8,-31.1,73,100700,0,0,149,0,0,0,0,0,0,0,70,2.6,6,3,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.2,-30.0,77,100700,0,0,151,0,0,0,0,0,0,0,70,3.1,6,3,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.8,-31.1,73,100700,0,0,150,0,0,0,0,0,0,0,70,3.1,4,4,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.9,-32.2,73,100700,0,0,148,0,0,0,0,0,0,0,70,3.1,5,5,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.9,-32.2,73,100700,0,0,139,0,0,0,0,0,0,0,70,3.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-29.4,-32.8,73,100700,0,0,138,0,0,0,0,0,0,0,60,3.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.3,-32.8,66,100700,0,0,140,0,0,0,0,0,0,0,60,3.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.3,-31.7,73,100700,0,0,141,0,0,0,0,0,0,0,60,3.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.3,-31.7,73,100600,0,0,141,0,0,0,0,0,0,0,60,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.3,-31.7,73,100600,0,0,141,0,0,0,0,0,0,0,60,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.3,-31.7,73,100600,0,0,141,0,0,0,0,0,0,0,60,3.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.9,-32.2,73,100600,0,0,139,0,0,0,0,0,0,0,60,3.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.3,-31.7,73,100500,0,0,141,0,0,0,0,0,0,0,60,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.9,-32.2,73,100500,0,0,139,0,0,0,0,0,0,0,60,4.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-30.0,-33.3,73,100500,0,0,136,0,0,0,0,0,0,0,70,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-30.0,-33.9,69,100500,0,0,136,0,0,0,0,0,0,0,60,4.1,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.9,-32.2,73,100500,0,0,139,0,0,0,0,0,0,0,60,4.1,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-29.4,-32.8,73,100500,0,0,138,0,0,0,0,0,0,0,60,3.6,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.9,-32.2,73,100500,0,0,139,0,0,0,0,0,0,0,50,3.6,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.9,-32.2,73,100500,0,0,139,0,0,0,0,0,0,0,60,3.6,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-29.4,-32.8,73,100500,0,0,138,0,0,0,0,0,0,0,60,3.6,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.9,-32.2,73,100500,0,0,139,0,0,0,0,0,0,0,60,3.6,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.9,-32.2,73,100500,0,0,139,0,0,0,0,0,0,0,60,3.6,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.3,-32.2,69,100500,0,0,141,0,0,0,0,0,0,0,60,4.1,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.3,-31.7,73,100500,0,0,141,0,0,0,0,0,0,0,50,4.1,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.9,-32.2,73,100500,0,0,139,0,0,0,0,0,0,0,60,4.1,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.3,-31.1,77,100400,0,0,142,0,0,0,0,0,0,0,60,4.6,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.8,-31.1,73,100400,0,0,143,0,0,0,0,0,0,0,60,4.1,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.8,-31.1,73,100400,0,0,143,0,0,0,0,0,0,0,60,4.6,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.8,-30.6,77,100400,0,0,143,0,0,0,0,0,0,0,60,4.6,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.6,-28.9,74,100400,0,0,149,0,0,0,0,0,0,0,60,5.2,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.7,-29.4,77,100400,0,0,146,0,0,0,0,0,0,0,70,5.2,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.2,-30.6,73,100400,0,0,144,0,0,0,0,0,0,0,70,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.6,-28.9,74,100300,0,0,149,0,0,0,0,0,0,0,70,4.1,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.7,-29.4,77,100300,0,0,149,0,0,0,0,0,0,0,70,3.1,4,1,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.9,-26.7,78,100300,0,0,155,0,0,0,0,0,0,0,60,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.3,-26.1,78,100200,0,0,157,0,0,0,0,0,0,0,50,5.2,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.3,-26.1,78,100200,0,0,157,0,0,0,0,0,0,0,60,4.6,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.6,-28.3,78,100200,0,0,150,0,0,0,0,0,0,0,70,4.6,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.0,-27.8,78,100100,0,0,152,0,0,0,0,0,0,0,60,4.1,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.9,-26.7,78,100100,0,0,155,0,0,0,0,0,0,0,70,4.1,4,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.3,-26.1,78,100100,0,0,157,0,0,0,0,0,0,0,60,5.2,2,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.9,-26.7,78,100100,0,0,155,0,0,0,0,0,0,0,60,5.7,2,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.9,-26.7,78,100000,0,0,155,0,0,0,0,0,0,0,60,5.2,3,0,16.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.9,-26.7,78,100000,0,0,155,0,0,0,0,0,0,0,70,4.6,2,0,16.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.3,-26.1,78,99900,0,0,157,0,0,0,0,0,0,0,70,5.2,3,0,16.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-22.2,-25.0,78,99800,0,0,166,0,0,0,0,0,0,0,60,5.7,3,2,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-21.7,-23.9,82,99800,0,0,170,0,0,0,0,0,0,0,60,5.2,5,3,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-22.2,83,99700,0,0,194,0,0,0,0,0,0,0,70,8.2,10,10,9.7,1520,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-19.4,-21.7,83,99700,0,0,196,0,0,0,0,0,0,0,60,8.2,10,10,9.7,1520,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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.3,-20.6,83,99600,0,0,201,0,0,0,0,0,0,0,60,8.2,10,10,9.7,370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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.3,-20.0,87,99600,0,0,201,0,0,0,0,0,0,0,70,8.2,10,10,9.7,430,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-17.8,-20.0,83,99500,0,0,203,0,0,0,0,0,0,0,60,8.8,10,10,9.7,430,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-17.8,-20.0,83,99500,0,0,203,0,0,0,0,0,0,0,50,7.2,10,10,11.3,430,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-18.3,-20.0,87,99500,0,0,201,0,0,0,0,0,0,0,60,5.7,10,10,11.3,370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-17.8,-20.0,83,99400,0,0,203,0,0,0,0,0,0,0,60,5.2,10,10,11.3,370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-17.2,-19.4,83,99400,0,0,205,0,0,0,0,0,0,0,60,5.2,10,10,11.3,880,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-16.7,-18.9,83,99300,0,0,207,0,0,0,0,0,0,0,70,5.2,10,10,11.3,340,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-16.7,-18.3,87,99200,0,0,208,0,0,0,0,0,0,0,60,5.2,10,10,11.3,340,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-16.1,-17.8,87,99200,0,0,210,0,0,0,0,0,0,0,60,5.2,10,10,2.0,310,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-16.1,-17.2,91,99100,0,0,211,0,0,0,0,0,0,0,60,6.2,10,10,11.3,370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-15.6,-17.2,87,99100,0,0,212,0,0,0,0,0,0,0,60,5.2,10,10,11.3,340,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-15.0,-16.7,87,99000,0,0,215,0,0,0,0,0,0,0,70,4.1,10,10,11.3,370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-18.3,-20.0,87,99000,0,0,201,0,0,0,0,0,0,0,80,5.7,10,10,11.3,430,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-20.6,-22.8,83,99000,0,0,173,0,0,0,0,0,0,0,90,5.2,3,3,8.0,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-18.9,-21.1,83,99100,0,0,198,0,0,0,0,0,0,0,90,6.7,10,10,8.0,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-18.3,-20.6,83,99100,0,0,201,0,0,0,0,0,0,0,100,6.2,10,10,8.0,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-17.8,-20.0,83,99100,0,0,203,0,0,0,0,0,0,0,90,6.7,10,10,8.0,550,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-17.8,-19.4,87,99100,0,0,203,0,0,0,0,0,0,0,100,6.7,10,10,4.8,490,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-17.8,-19.4,87,99100,0,0,203,0,0,0,0,0,0,0,100,5.2,10,10,4.8,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-17.8,-19.4,87,99100,0,0,203,0,0,0,0,0,0,0,120,4.1,10,10,8.0,310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-17.8,-19.4,87,99100,0,0,203,0,0,0,0,0,0,0,140,2.6,10,10,8.0,150,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-17.8,-19.4,87,99100,0,0,203,0,0,0,0,0,0,0,0,0.0,10,10,1.6,150,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-17.2,-19.4,83,99200,0,0,205,0,0,0,0,0,0,0,10,2.1,10,10,0.8,150,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-15.6,-17.8,83,99100,0,0,212,0,0,0,0,0,0,0,10,4.6,10,10,2.4,150,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-14.4,-16.1,87,99100,0,0,217,0,0,0,0,0,0,0,20,3.6,10,10,2.4,150,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-12.8,-14.4,88,99100,0,0,224,0,0,0,0,0,0,0,10,4.1,10,10,6.4,490,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-11.7,-12.8,92,99100,0,0,229,0,0,0,0,0,0,0,10,3.6,10,10,6.4,490,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-11.7,-12.8,92,99100,0,0,229,0,0,0,0,0,0,0,80,3.6,10,10,9.7,490,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-12.8,-13.9,92,99200,0,0,225,0,0,0,0,0,0,0,120,3.6,10,10,9.7,460,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-13.9,-15.6,87,99200,0,0,219,0,0,0,0,0,0,0,120,3.6,10,10,11.3,460,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-14.4,-16.1,87,99200,0,0,217,0,0,0,0,0,0,0,120,3.1,10,10,11.3,460,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-14.4,-16.1,87,99300,0,0,217,0,0,0,0,0,0,0,90,4.1,10,10,11.3,370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-15.0,-16.7,87,99300,0,0,215,0,0,0,0,0,0,0,120,2.1,10,10,11.3,310,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-15.6,-17.2,87,99300,0,0,212,0,0,0,0,0,0,0,130,1.5,10,10,11.3,310,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-16.7,-18.3,87,99400,0,0,208,0,0,0,0,0,0,0,150,2.1,10,10,11.3,370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-16.7,-18.3,87,99500,0,0,208,0,0,0,0,0,0,0,170,2.1,10,10,11.3,340,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-15.6,-16.7,91,99600,0,0,213,0,0,0,0,0,0,0,180,2.1,10,10,11.3,370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-14.4,-15.6,91,99600,0,0,218,0,0,0,0,0,0,0,210,2.6,10,10,11.3,430,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-13.3,-15.0,87,99700,0,0,222,0,0,0,0,0,0,0,210,2.6,10,10,6.4,370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.0,-10.6,96,99800,0,0,237,0,0,0,0,0,0,0,320,3.1,10,10,4.8,790,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.6,-11.7,92,99900,0,0,234,0,0,0,0,0,0,0,310,5.7,10,10,4.8,370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.6,-11.7,92,99900,0,0,234,0,0,0,0,0,0,0,300,6.7,10,10,3.2,90,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-11.1,-12.8,88,100000,0,0,225,0,0,0,0,0,0,0,290,7.7,10,9,6.4,1070,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-11.7,-12.8,92,100100,0,0,229,0,0,0,0,0,0,0,290,7.2,10,10,6.4,790,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-11.7,-13.3,88,100200,0,0,229,0,0,0,0,0,0,0,290,7.7,10,10,8.0,790,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-11.7,-13.3,88,100300,0,0,229,0,0,0,0,0,0,0,300,9.3,10,10,11.3,1520,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-12.2,-13.3,92,100400,0,0,227,0,0,0,0,0,0,0,300,9.3,10,10,11.3,1370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-12.8,-14.4,88,100500,0,0,224,0,0,0,0,0,0,0,290,9.3,10,10,11.3,1370,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-13.3,-15.0,87,100500,0,0,222,0,0,0,0,0,0,0,300,9.8,10,10,9.7,790,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-13.9,-15.6,87,100700,0,0,219,0,0,0,0,0,0,0,300,9.8,10,10,9.7,610,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-15.6,-17.8,83,100800,0,0,212,0,0,0,0,0,0,0,280,9.3,10,10,11.3,790,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-16.7,-18.9,83,100900,0,0,207,0,0,0,0,0,0,0,290,8.8,10,10,11.3,790,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-17.8,-20.0,83,101000,0,0,203,0,0,0,0,0,0,0,290,7.7,10,10,11.3,790,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-19.4,-21.1,87,101100,0,0,197,0,0,0,0,0,0,0,290,7.7,10,10,11.3,790,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-19.4,-21.7,83,101100,0,0,196,0,0,0,0,0,0,0,280,9.3,10,10,11.3,880,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-19.4,-21.7,83,101200,0,0,196,0,0,0,0,0,0,0,290,7.7,10,10,11.3,1220,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-20.0,-22.2,83,101300,0,0,194,0,0,0,0,0,0,0,300,7.7,10,10,11.3,1220,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-20.0,-22.2,83,101300,0,0,194,0,0,0,0,0,0,0,300,8.2,10,10,11.3,1220,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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.6,-22.8,83,101400,0,0,192,0,0,0,0,0,0,0,290,7.7,10,10,11.3,340,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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.6,-22.8,83,101600,0,0,192,0,0,0,0,0,0,0,290,7.2,10,10,11.3,340,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-20.0,-22.2,83,101700,0,0,189,0,0,0,0,0,0,0,280,5.7,10,9,11.3,430,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-20.6,-22.8,83,101700,0,0,186,0,0,0,0,0,0,0,290,6.2,10,9,11.3,430,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-21.1,-23.3,82,101800,0,0,178,0,0,0,0,0,0,0,290,6.2,10,7,11.3,430,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-20.0,-22.2,83,101900,0,0,180,0,0,0,0,0,0,0,300,6.2,10,6,11.3,1680,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-22.2,83,102000,0,0,194,0,0,0,0,0,0,0,290,7.7,10,10,11.3,1680,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-20.6,-22.8,83,102100,0,0,192,0,0,0,0,0,0,0,290,7.2,10,10,11.3,1680,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-20.0,-22.2,83,102100,0,0,194,0,0,0,0,0,0,0,290,6.7,10,10,11.3,640,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-20.0,-22.2,83,102200,0,0,194,0,0,0,0,0,0,0,290,7.7,10,10,11.3,760,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-19.4,-21.7,83,102200,0,0,196,0,0,0,0,0,0,0,290,7.7,10,10,11.3,790,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-21.7,79,102300,0,0,198,0,0,0,0,0,0,0,290,7.7,10,10,11.3,880,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-19.4,-21.7,83,102400,0,0,196,0,0,0,0,0,0,0,290,8.2,10,10,11.3,490,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-18.9,-21.1,83,102400,0,0,198,0,0,0,0,0,0,0,280,5.7,10,10,11.3,490,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-18.3,-20.6,83,102500,0,0,201,0,0,0,0,0,0,0,310,8.2,10,10,8.0,550,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-18.9,-20.6,87,102500,0,0,199,0,0,0,0,0,0,0,300,7.7,10,10,8.0,550,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-18.9,-21.1,83,102600,0,0,198,0,0,0,0,0,0,0,300,7.2,10,10,9.7,1680,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-18.9,-21.7,79,102700,0,0,198,0,0,0,0,0,0,0,300,6.7,10,10,11.3,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-19.4,-21.7,83,102700,0,0,196,0,0,0,0,0,0,0,310,6.7,10,10,11.3,3050,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-18.9,-21.1,83,102700,0,0,198,0,0,0,0,0,0,0,320,6.2,10,10,11.3,3050,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-18.9,-21.1,83,102700,0,0,189,0,0,0,0,0,0,0,320,6.7,8,8,11.3,3050,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-18.9,-21.1,83,102800,0,0,189,0,0,0,0,0,0,0,320,6.2,8,8,11.3,3050,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-19.4,-21.7,83,102900,0,0,191,0,0,0,0,0,0,0,310,6.2,9,9,11.3,3050,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-22.2,83,102900,0,0,180,0,0,0,0,0,0,0,300,6.2,6,6,11.3,3050,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-20.6,-23.3,79,102900,0,0,174,0,0,0,0,0,0,0,310,6.2,4,4,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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.1,-23.9,79,103000,0,0,164,0,0,0,0,0,0,0,310,5.2,1,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.3,-26.1,78,103100,0,0,157,0,0,0,0,0,0,0,300,4.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.0,-27.8,78,103100,0,0,152,0,0,0,0,0,0,0,290,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.6,-28.9,74,103200,0,0,149,0,0,0,0,0,0,0,290,4.6,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.1,-29.4,74,103300,0,0,148,0,0,0,0,0,0,0,290,4.1,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.7,-30.0,74,103300,0,0,146,0,0,0,0,0,0,0,290,4.6,0,0,16.1,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.7,-30.0,74,103400,0,0,146,0,0,0,0,0,0,0,290,5.2,0,0,16.1,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.2,-30.6,73,103400,0,0,144,0,0,0,0,0,0,0,290,3.6,0,0,16.1,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.8,-31.1,73,103400,0,0,143,0,0,0,0,0,0,0,290,4.6,0,0,16.1,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.8,-30.6,77,103500,0,0,143,0,0,0,0,0,0,0,290,4.1,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.2,-30.6,73,103500,0,0,144,0,0,0,0,0,0,0,300,4.6,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.7,-29.4,77,103500,0,0,146,0,0,0,0,0,0,0,300,4.6,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.2,-30.6,73,103500,0,0,144,0,0,0,0,0,0,0,310,3.6,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.7,-29.4,77,103500,0,0,146,0,0,0,0,0,0,0,330,3.1,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.2,-30.6,73,103500,0,0,144,0,0,0,0,0,0,0,330,2.6,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.3,-31.1,77,103500,0,0,142,0,0,0,0,0,0,0,300,2.6,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.3,-31.7,73,103500,0,0,141,0,0,0,0,0,0,0,310,2.6,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.3,-31.7,73,103500,0,0,141,0,0,0,0,0,0,0,340,2.6,0,0,16.1,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.2,-31.1,70,103500,0,0,144,0,0,0,0,0,0,0,340,2.1,0,0,16.1,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.3,-31.7,73,103500,0,0,141,0,0,0,0,0,0,0,330,1.5,0,0,16.1,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.2,-30.6,73,103500,0,0,144,0,0,0,0,0,0,0,360,2.6,0,0,16.1,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.2,-30.6,73,103400,0,0,144,0,0,0,0,0,0,0,360,1.5,0,0,16.1,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.8,-31.1,73,103400,0,0,143,0,0,0,0,0,0,0,20,2.1,0,0,16.1,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.8,-31.1,73,103400,0,0,143,0,0,0,0,0,0,0,20,2.1,0,0,16.1,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.9,-32.2,73,103300,0,0,139,0,0,0,0,0,0,0,40,2.1,0,0,16.1,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-29.4,-32.8,73,103300,0,0,138,0,0,0,0,0,0,0,50,3.1,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-29.4,-32.8,73,103300,0,0,138,0,0,0,0,0,0,0,30,2.6,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-29.4,-32.8,73,103200,0,0,138,0,0,0,0,0,0,0,40,3.6,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-30.0,-33.3,73,103200,0,0,136,0,0,0,0,0,0,0,50,4.1,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-30.0,-33.3,73,103200,0,0,136,0,0,0,0,0,0,0,50,3.1,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-30.6,-33.9,73,103300,0,0,135,0,0,0,0,0,0,0,50,3.6,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-29.4,-32.8,73,103200,0,0,141,0,0,0,0,0,0,0,50,4.1,1,1,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-30.0,-33.3,73,103200,0,0,139,0,0,0,0,0,0,0,50,4.1,1,1,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-30.6,-33.9,73,103200,0,0,135,0,0,0,0,0,0,0,50,3.6,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-30.0,-33.9,69,103100,0,0,136,0,0,0,0,0,0,0,50,3.6,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-30.0,-33.3,73,103100,0,0,136,0,0,0,0,0,0,0,50,3.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-31.1,-35.0,69,103000,0,0,133,0,0,0,0,0,0,0,60,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-31.7,-35.6,68,103000,0,0,131,0,0,0,0,0,0,0,60,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-31.7,-35.6,68,103000,0,0,131,0,0,0,0,0,0,0,50,3.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-31.7,-35.6,68,103000,0,0,131,0,0,0,0,0,0,0,60,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-32.8,-36.1,72,103000,0,0,128,0,0,0,0,0,0,0,70,4.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-32.8,-36.1,72,103000,0,0,128,0,0,0,0,0,0,0,60,4.1,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-33.3,-36.7,72,103000,0,0,127,0,0,0,0,0,0,0,80,4.1,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-32.2,-36.1,68,103000,0,0,130,0,0,0,0,0,0,0,70,4.1,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-31.1,-35.0,69,102900,0,0,133,0,0,0,0,0,0,0,60,4.1,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-31.7,-35.6,68,102900,0,0,131,0,0,0,0,0,0,0,70,4.1,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-32.8,-36.7,68,102900,0,0,128,0,0,0,0,0,0,0,90,4.1,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-31.7,-35.0,72,102900,0,0,134,0,0,0,0,0,0,0,70,4.1,6,1,8.0,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-31.7,-35.6,68,102900,0,0,135,0,0,0,0,0,0,0,80,4.1,5,2,2.4,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-32.2,-36.1,68,102900,0,0,134,0,0,0,0,0,0,0,80,4.6,3,2,1.6,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-32.8,-36.1,72,102900,0,0,133,0,0,0,0,0,0,0,70,4.6,8,2,1.6,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-32.2,-36.1,68,102900,0,0,134,0,0,0,0,0,0,0,70,5.2,7,2,1.6,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-32.8,-36.7,68,102900,0,0,131,0,0,0,0,0,0,0,80,4.6,7,1,1.6,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-32.8,-36.7,68,102900,0,0,128,0,0,0,0,0,0,0,80,5.2,4,0,1.6,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-33.9,-37.2,72,103000,0,0,125,0,0,0,0,0,0,0,80,4.6,4,0,3.2,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-34.4,-38.3,68,103000,0,0,124,0,0,0,0,0,0,0,80,3.6,3,0,6.4,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-32.8,-36.7,68,103000,0,0,128,0,0,0,0,0,0,0,80,4.1,4,0,9.7,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-31.1,-34.4,72,103000,0,0,133,0,0,0,0,0,0,0,70,4.6,6,0,9.7,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-31.7,-35.0,72,103000,0,0,131,0,0,0,0,0,0,0,70,4.6,4,0,9.7,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-32.2,-38.9,51,103000,0,0,128,0,0,0,0,0,0,0,70,4.6,0,0,9.7,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-33.9,-37.8,68,102900,0,0,125,0,0,0,0,0,0,0,70,4.6,0,0,11.3,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-29.4,-32.8,73,103000,0,0,144,0,0,0,0,0,0,0,70,4.6,6,3,9.7,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.8,-31.1,73,102900,0,0,154,0,0,0,0,0,0,0,70,5.2,10,7,9.7,1310,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.3,-31.1,77,103000,0,0,153,0,0,0,0,0,0,0,70,5.2,10,7,9.7,1310,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.3,-31.1,77,102900,0,0,153,0,0,0,0,0,0,0,70,4.6,10,7,9.7,1130,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.9,-32.2,73,102900,0,0,161,0,0,0,0,0,0,0,70,4.6,10,10,9.7,1130,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-31.7,-35.6,68,102900,0,0,151,0,0,0,0,0,0,0,70,4.6,10,10,9.7,1130,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-32.8,-36.1,72,102900,0,0,128,0,0,0,0,0,0,0,70,5.2,0,0,8.0,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-32.8,-36.7,68,102900,0,0,128,0,0,0,0,0,0,0,70,5.2,0,0,8.0,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-32.8,-36.7,68,102900,0,0,131,0,0,0,0,0,0,0,70,4.6,1,1,8.0,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-33.3,-36.7,72,102900,0,0,129,0,0,0,0,0,0,0,70,4.1,2,1,8.0,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-33.3,-37.2,68,102800,0,0,127,0,0,0,0,0,0,0,70,4.6,0,0,8.0,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-32.8,-36.1,72,102800,0,0,134,0,0,0,0,0,0,0,70,5.2,3,3,2.4,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-31.7,-35.6,68,102700,0,0,137,0,0,0,0,0,0,0,80,6.2,3,3,1.6,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-32.2,-36.1,68,102700,0,0,130,0,0,0,0,0,0,0,70,5.7,0,0,1.6,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-32.2,-35.6,72,102700,0,0,134,0,0,0,0,0,0,0,70,5.2,5,2,1.6,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-32.2,-36.1,68,102600,0,0,132,0,0,0,0,0,0,0,60,4.1,3,1,4.8,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-29.4,-32.8,73,102600,0,0,138,0,0,0,0,0,0,0,50,5.2,4,0,1.6,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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.4,-32.8,73,102500,0,0,138,0,0,0,0,0,0,0,50,6.2,5,0,1.6,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-30.6,-33.9,73,102400,0,0,143,0,0,0,0,0,0,0,50,6.7,8,5,1.6,1070,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-29.4,-32.8,73,102400,0,0,152,0,0,0,0,0,0,0,50,6.2,10,8,1.6,980,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-31.1,-34.4,72,102300,0,0,140,0,0,0,0,0,0,0,50,6.2,4,4,3.2,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-31.1,-35.0,69,102300,0,0,137,0,0,0,0,0,0,0,50,6.2,2,2,3.2,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-31.1,-35.6,65,102200,0,0,132,0,0,0,0,0,0,0,50,5.2,0,0,4.8,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.9,-32.2,73,102100,0,0,161,0,0,0,0,0,0,0,50,5.7,10,10,4.8,1680,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.8,-30.6,77,102100,0,0,165,0,0,0,0,0,0,0,50,6.7,10,10,4.8,1680,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.7,-29.4,77,102000,0,0,169,0,0,0,0,0,0,0,60,6.2,10,10,4.8,1680,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.1,-28.9,78,102000,0,0,171,0,0,0,0,0,0,0,50,7.2,10,10,4.8,1680,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.6,-28.3,78,101900,0,0,173,0,0,0,0,0,0,0,50,7.2,10,10,4.8,1520,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.0,-27.8,78,101900,0,0,175,0,0,0,0,0,0,0,60,7.2,10,10,4.8,1520,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-24.4,-27.2,78,101800,0,0,177,0,0,0,0,0,0,0,60,6.7,10,10,4.8,1520,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-24.4,-27.8,74,101800,0,0,177,0,0,0,0,0,0,0,50,6.7,10,10,4.8,1520,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.1,-28.9,78,101700,0,0,148,0,0,0,0,0,0,0,50,8.2,0,0,8.0,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.7,-29.4,77,101700,0,0,146,0,0,0,0,0,0,0,40,8.8,0,0,8.0,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.7,-29.4,77,101600,0,0,146,0,0,0,0,0,0,0,50,8.2,0,0,8.0,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.7,-29.4,77,101500,0,0,146,0,0,0,0,0,0,0,50,7.2,0,0,2.4,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.8,-30.6,77,101500,0,0,143,0,0,0,0,0,0,0,50,8.2,0,0,2.4,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.8,-31.1,73,101500,0,0,143,0,0,0,0,0,0,0,50,7.2,0,0,2.4,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.3,-31.7,73,101400,0,0,141,0,0,0,0,0,0,0,50,9.3,0,0,4.8,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.3,-31.7,73,101400,0,0,141,0,0,0,0,0,0,0,40,7.2,1,0,4.8,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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.8,-31.1,73,101400,0,0,145,0,0,0,0,0,0,0,50,7.7,1,1,4.8,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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.3,-31.1,77,101300,0,0,144,0,0,0,0,0,0,0,50,6.7,2,1,6.4,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.3,-31.7,73,101300,0,0,144,0,0,0,0,0,0,0,50,6.7,3,1,4.8,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.3,-31.7,73,101200,0,0,144,0,0,0,0,0,0,0,50,5.7,6,1,6.4,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.3,-31.7,73,101200,0,0,144,0,0,0,0,0,0,0,50,6.2,6,1,6.4,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.3,-32.2,69,101200,0,0,144,0,0,0,0,0,0,0,50,5.2,5,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.3,-31.1,77,101100,0,0,144,0,0,0,0,0,0,0,30,6.2,5,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.8,-30.6,77,101100,0,0,146,0,0,0,0,0,0,0,40,6.2,3,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.7,-30.6,70,101000,0,0,148,0,0,0,0,0,0,0,40,6.2,2,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.7,-29.4,77,101000,0,0,146,0,0,0,0,0,0,0,30,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.1,-29.4,74,100900,0,0,148,0,0,0,0,0,0,0,40,6.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.1,-29.4,74,100900,0,0,148,0,0,0,0,0,0,0,40,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.1,-28.9,78,100900,0,0,148,0,0,0,0,0,0,0,40,5.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.6,-28.3,78,100900,0,0,155,0,0,0,0,0,0,0,40,5.7,5,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.0,-27.8,78,100800,0,0,152,0,0,0,0,0,0,0,40,6.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.0,-28.3,74,100700,0,0,151,0,0,0,0,0,0,0,40,6.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.0,-27.8,78,100700,0,0,152,0,0,0,0,0,0,0,40,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.0,-27.8,78,100700,0,0,152,0,0,0,0,0,0,0,40,5.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.0,-27.8,78,100700,0,0,152,0,0,0,0,0,0,0,50,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.0,-27.8,78,100600,0,0,152,0,0,0,0,0,0,0,40,5.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.0,-27.8,78,100600,0,0,152,0,0,0,0,0,0,0,40,4.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.0,-27.8,78,100600,0,0,152,0,0,0,0,0,0,0,60,4.6,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.0,-27.8,78,100600,0,0,152,0,0,0,0,0,0,0,60,5.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.0,-28.3,74,100600,0,0,162,0,0,0,0,0,0,0,40,4.1,6,6,11.3,2440,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-24.4,-27.2,78,100600,0,0,169,0,0,0,0,0,0,0,50,4.6,8,8,11.3,610,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-22.8,-25.6,78,100600,0,0,174,0,0,0,0,0,0,0,60,4.6,8,8,11.3,610,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-22.8,-25.6,78,100700,0,0,174,0,0,0,0,0,0,0,70,6.2,8,8,11.3,910,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.3,-26.1,78,100700,0,0,181,0,0,0,0,0,0,0,70,6.2,10,10,11.3,910,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-22.8,-25.6,78,100700,0,0,174,0,0,0,0,0,0,0,70,4.6,8,8,11.3,2440,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-22.8,-25.6,78,100700,0,0,167,0,0,0,0,0,0,0,70,5.2,6,4,11.3,2440,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-22.8,-25.6,78,100700,0,0,167,0,0,0,0,0,0,0,70,4.6,6,4,11.3,2440,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-22.8,-25.6,78,100700,0,0,167,0,0,0,0,0,0,0,70,5.2,6,4,11.3,2440,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-22.8,-25.6,78,100700,0,0,165,0,0,0,0,0,0,0,80,5.2,5,3,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-22.8,-25.6,78,100700,0,0,164,0,0,0,0,0,0,0,60,4.6,3,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.3,-26.1,78,100700,0,0,162,0,0,0,0,0,0,0,60,5.7,3,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.3,-26.1,78,100800,0,0,162,0,0,0,0,0,0,0,60,5.2,3,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.9,-26.7,78,100800,0,0,160,0,0,0,0,0,0,0,60,4.6,3,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.3,-26.1,78,100800,0,0,157,0,0,0,0,0,0,0,60,5.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-22.8,-25.0,82,100900,0,0,159,0,0,0,0,0,0,0,60,5.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-22.8,-25.0,82,100900,0,0,183,0,0,0,0,0,0,0,70,5.2,10,10,11.3,370,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.3,-26.1,78,100900,0,0,181,0,0,0,0,0,0,0,70,4.1,10,10,11.3,370,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.3,-25.6,82,100900,0,0,164,0,0,0,0,0,0,0,60,5.2,10,3,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.3,-25.6,82,100900,0,0,167,0,0,0,0,0,0,0,60,5.7,10,5,9.7,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-22.8,-25.0,82,101000,0,0,172,0,0,0,0,0,0,0,60,5.2,10,7,9.7,2130,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-22.8,-25.0,82,101000,0,0,172,0,0,0,0,0,0,0,70,5.7,10,7,9.7,2130,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-22.8,-25.6,78,101000,0,0,183,0,0,0,0,0,0,0,60,5.2,10,10,9.7,2130,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.9,-26.1,82,101000,0,0,179,0,0,0,0,0,0,0,70,6.2,10,10,11.3,2130,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.9,-26.7,78,101000,0,0,179,0,0,0,0,0,0,0,70,6.2,10,10,4.8,2130,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.0,-27.8,78,101000,0,0,175,0,0,0,0,0,0,0,70,5.7,10,10,2.4,340,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.7,-29.4,77,101100,0,0,161,0,0,0,0,0,0,0,70,5.2,8,8,3.2,2130,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.2,-30.6,73,101100,0,0,153,0,0,0,0,0,0,0,60,4.1,5,5,8.0,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.1,-28.9,78,101100,0,0,157,0,0,0,0,0,0,0,60,5.2,5,5,6.4,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.7,-29.4,77,101100,0,0,161,0,0,0,0,0,0,0,60,6.2,8,8,6.4,2130,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.2,-30.0,77,101100,0,0,155,0,0,0,0,0,0,0,50,5.2,8,6,6.4,1220,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.7,-29.4,77,101200,0,0,169,0,0,0,0,0,0,0,60,5.2,10,10,11.3,1680,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.1,-29.4,74,101200,0,0,171,0,0,0,0,0,0,0,60,6.2,10,10,11.3,1680,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.1,-28.9,78,101200,0,0,171,0,0,0,0,0,0,0,60,5.7,10,10,11.3,1680,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.7,-29.4,77,101200,0,0,169,0,0,0,0,0,0,0,60,6.7,10,10,11.3,1830,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.2,-30.6,73,101200,0,0,167,0,0,0,0,0,0,0,60,6.2,10,10,11.3,1830,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.3,-31.7,73,101200,0,0,148,0,0,0,0,0,0,0,60,6.2,5,4,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.9,-32.2,73,101200,0,0,139,0,0,0,0,0,0,0,60,6.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.9,-32.8,69,101200,0,0,139,0,0,0,0,0,0,0,60,5.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-29.4,-32.8,73,101200,0,0,138,0,0,0,0,0,0,0,50,5.7,0,0,8.0,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-29.4,-32.8,73,101200,0,0,138,0,0,0,0,0,0,0,60,5.2,0,0,8.0,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-29.4,-33.3,69,101200,0,0,138,0,0,0,0,0,0,0,50,6.2,0,0,9.7,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-30.0,-33.3,73,101100,0,0,136,0,0,0,0,0,0,0,60,5.7,0,0,9.7,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-30.0,-33.3,73,101100,0,0,136,0,0,0,0,0,0,0,50,5.2,0,0,8.0,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-30.0,-33.3,73,101100,0,0,136,0,0,0,0,0,0,0,60,5.2,0,0,8.0,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-29.4,-33.3,69,101100,0,0,138,0,0,0,0,0,0,0,40,6.2,0,0,2.4,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-29.4,-32.8,73,101100,0,0,141,0,0,0,0,0,0,0,50,5.7,1,1,2.4,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-29.4,-32.8,73,101000,0,0,141,0,0,0,0,0,0,0,50,5.7,1,1,2.4,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-29.4,-32.8,73,101000,0,0,143,0,0,0,0,0,0,0,50,6.2,2,2,6.4,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.9,-32.2,73,101000,0,0,144,0,0,0,0,0,0,0,60,6.2,2,2,6.4,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.3,-31.7,73,101000,0,0,163,0,0,0,0,0,0,0,40,5.7,10,10,4.8,2130,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.2,-30.6,73,100900,0,0,167,0,0,0,0,0,0,0,50,6.2,10,10,4.8,2130,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.2,-30.0,77,100900,0,0,167,0,0,0,0,0,0,0,50,6.2,10,10,4.8,2130,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.2,-30.6,73,100800,0,0,167,0,0,0,0,0,0,0,40,6.7,10,10,4.8,2130,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.7,-30.0,74,100800,0,0,169,0,0,0,0,0,0,0,40,7.2,10,10,4.8,2130,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.7,-29.4,77,100700,0,0,169,0,0,0,0,0,0,0,40,7.7,10,10,2.4,2130,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.7,-30.6,70,100700,0,0,168,0,0,0,0,0,0,0,50,7.7,10,10,2.4,2130,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.1,-29.4,74,100700,0,0,171,0,0,0,0,0,0,0,50,8.2,10,10,2.4,2130,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.7,-29.4,77,100600,0,0,169,0,0,0,0,0,0,0,50,7.2,10,10,2.4,2130,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.7,-29.4,77,100600,0,0,154,0,0,0,0,0,0,0,40,7.2,5,4,2.4,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.7,-30.0,74,100600,0,0,156,0,0,0,0,0,0,0,40,7.7,6,6,2.4,2130,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.7,-29.4,77,100500,0,0,156,0,0,0,0,0,0,0,50,8.8,6,6,2.4,2130,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.7,-29.4,77,100500,0,0,151,0,0,0,0,0,0,0,40,7.2,3,2,2.4,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.7,-29.4,77,100400,0,0,151,0,0,0,0,0,0,0,50,8.8,5,2,2.4,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.7,-29.4,77,100400,0,0,153,0,0,0,0,0,0,0,50,8.2,3,3,2.4,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.1,-29.4,74,100400,0,0,171,0,0,0,0,0,0,0,50,7.2,10,10,2.4,1130,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.7,-29.4,77,100400,0,0,153,0,0,0,0,0,0,0,40,7.2,5,3,2.4,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.6,-28.3,78,100300,0,0,162,0,0,0,0,0,0,0,40,8.8,10,7,2.4,2130,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.6,-28.3,78,100300,0,0,162,0,0,0,0,0,0,0,40,9.8,10,7,1.6,2290,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.0,-27.8,78,100300,0,0,175,0,0,0,0,0,0,0,40,9.3,10,10,1.2,2290,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.0,-27.8,78,100200,0,0,175,0,0,0,0,0,0,0,40,8.8,10,10,1.2,2290,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.0,-27.8,78,100200,0,0,164,0,0,0,0,0,0,0,40,9.3,7,7,1.2,2290,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.0,-28.3,74,100200,0,0,166,0,0,0,0,0,0,0,50,8.8,8,8,1.2,2740,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.0,-27.8,78,100200,0,0,167,0,0,0,0,0,0,0,40,8.8,8,8,3.2,2740,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.0,-27.8,78,100200,0,0,175,0,0,0,0,0,0,0,50,8.2,10,10,3.2,2440,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.0,-27.8,78,100200,0,0,175,0,0,0,0,0,0,0,40,7.7,10,10,3.2,2440,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.0,-28.3,74,100200,0,0,175,0,0,0,0,0,0,0,40,10.3,10,10,1.2,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.6,-28.3,78,100100,0,0,173,0,0,0,0,0,0,0,40,12.4,10,10,1.2,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.6,-28.3,78,100100,0,0,173,0,0,0,0,0,0,0,40,12.9,10,10,1.2,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.6,-28.3,78,100100,0,0,173,0,0,0,0,0,0,0,50,12.4,10,10,0.8,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.6,-28.3,78,100100,0,0,173,0,0,0,0,0,0,0,50,11.8,10,10,0.8,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.6,-28.3,78,100000,0,0,173,0,0,0,0,0,0,0,50,11.3,10,10,0.8,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.0,-27.8,78,100000,0,0,175,0,0,0,0,0,0,0,50,10.8,10,10,0.8,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-24.4,-27.8,74,100000,0,0,177,0,0,0,0,0,0,0,50,10.3,10,10,0.8,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-24.4,-27.2,78,100000,0,0,177,0,0,0,0,0,0,0,50,10.3,10,10,0.8,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-24.4,-27.2,78,100100,0,0,177,0,0,0,0,0,0,0,50,11.3,10,10,0.8,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.9,-26.7,78,100100,0,0,179,0,0,0,0,0,0,0,70,10.3,10,10,0.8,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.9,-26.7,78,100100,0,0,179,0,0,0,0,0,0,0,60,9.3,10,10,0.8,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.3,-26.1,78,100100,0,0,181,0,0,0,0,0,0,0,60,8.8,10,10,0.8,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.3,-26.1,78,100100,0,0,181,0,0,0,0,0,0,0,70,8.8,10,10,0.8,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.3,-26.1,78,100100,0,0,181,0,0,0,0,0,0,0,70,7.7,10,10,0.8,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.9,-26.1,82,100200,0,0,179,0,0,0,0,0,0,0,70,7.2,10,10,1.6,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.9,-26.1,82,100200,0,0,179,0,0,0,0,0,0,0,70,8.2,10,10,1.6,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.3,-26.1,78,100300,0,0,181,0,0,0,0,0,0,0,80,7.7,10,10,2.4,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.3,-26.1,78,100300,0,0,181,0,0,0,0,0,0,0,80,7.7,10,10,2.4,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.3,-26.1,78,100300,0,0,181,0,0,0,0,0,0,0,80,7.2,10,10,4.8,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.3,-26.1,78,100400,0,0,181,0,0,0,0,0,0,0,70,6.7,10,10,4.8,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.3,-26.1,78,100400,0,0,181,0,0,0,0,0,0,0,70,6.2,10,10,4.8,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-22.8,-25.6,78,100500,0,0,183,0,0,0,0,0,0,0,80,7.2,10,10,4.8,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-22.8,-25.6,78,100500,0,0,183,0,0,0,0,0,0,0,70,6.7,10,10,4.8,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-22.8,-25.0,82,100600,0,0,183,0,0,0,0,0,0,0,90,5.7,10,10,6.4,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-22.8,-25.0,82,100600,0,0,183,0,0,0,0,0,0,0,80,5.2,10,10,9.7,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-22.8,-25.6,78,100700,0,0,183,0,0,0,0,0,0,0,80,4.6,10,10,9.7,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-22.2,-25.0,78,100700,0,0,185,0,0,0,0,0,0,0,80,4.6,10,10,9.7,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-22.2,-26.7,67,100800,0,0,184,0,0,0,0,0,0,0,80,4.1,10,10,8.0,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-22.2,-25.0,78,100900,0,0,185,0,0,0,0,0,0,0,90,4.1,10,10,8.0,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-22.8,-25.6,78,100900,0,0,183,0,0,0,0,0,0,0,90,3.6,10,10,8.0,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-22.8,-25.6,78,101000,0,0,183,0,0,0,0,0,0,0,90,3.1,10,10,8.0,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-22.2,-25.0,78,101000,0,0,185,0,0,0,0,0,0,0,90,3.1,10,10,8.0,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-22.2,-24.4,82,101100,0,0,186,0,0,0,0,0,0,0,110,3.6,10,10,8.0,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-22.8,-25.6,78,101200,0,0,183,0,0,0,0,0,0,0,90,3.1,10,10,8.0,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.6,-28.3,78,101200,0,0,168,0,0,0,0,0,0,0,110,3.1,10,9,8.0,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.2,-30.6,73,101300,0,0,149,0,0,0,0,0,0,0,120,3.1,4,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.7,-29.4,77,101300,0,0,154,0,0,0,0,0,0,0,120,2.6,9,4,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.0,-27.8,78,101400,0,0,170,0,0,0,0,0,0,0,130,3.6,10,9,11.3,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.0,-27.8,78,101400,0,0,170,0,0,0,0,0,0,0,120,3.1,10,9,11.3,1520,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.3,-31.7,73,101400,0,0,148,0,0,0,0,0,0,0,140,3.1,8,4,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-29.4,-32.8,73,101500,0,0,141,0,0,0,0,0,0,0,150,3.6,3,1,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.2,-30.0,77,101600,0,0,150,0,0,0,0,0,0,0,170,3.1,5,2,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.3,-31.7,73,101600,0,0,144,0,0,0,0,0,0,0,180,2.6,4,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.7,-30.0,74,101600,0,0,169,0,0,0,0,0,0,0,190,4.1,10,10,11.3,2740,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.8,-31.1,73,101700,0,0,165,0,0,0,0,0,0,0,180,3.6,10,10,11.3,2740,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.7,-29.4,77,101700,0,0,169,0,0,0,0,0,0,0,160,2.6,10,10,11.3,790,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.2,-30.0,77,101700,0,0,167,0,0,0,0,0,0,0,160,2.6,10,10,11.3,2740,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.8,-30.6,77,101700,0,0,165,0,0,0,0,0,0,0,150,2.1,10,10,11.3,2740,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.8,-31.1,73,101700,0,0,165,0,0,0,0,0,0,0,140,2.6,10,10,11.3,2740,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.1,-29.4,74,101700,0,0,171,0,0,0,0,0,0,0,120,4.1,10,10,11.3,790,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.0,-27.8,78,101700,0,0,175,0,0,0,0,0,0,0,120,3.1,10,10,11.3,790,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-24.4,-30.6,57,101700,0,0,174,0,0,0,0,0,0,0,120,2.1,10,10,11.3,2740,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-24.4,-27.2,78,101700,0,0,177,0,0,0,0,0,0,0,120,3.1,10,10,11.3,2740,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-24.4,-27.2,78,101700,0,0,177,0,0,0,0,0,0,0,100,2.6,10,10,11.3,2740,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.3,-26.1,78,101700,0,0,181,0,0,0,0,0,0,0,90,2.1,10,10,11.3,2740,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.3,-26.1,78,101700,0,0,181,0,0,0,0,0,0,0,80,2.1,10,10,11.3,2740,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.9,-27.2,74,101700,0,0,179,0,0,0,0,0,0,0,80,3.6,10,10,11.3,2740,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.0,-27.8,78,101700,0,0,175,0,0,0,0,0,0,0,80,4.1,10,10,11.3,2740,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.1,-29.4,74,101600,0,0,171,0,0,0,0,0,0,0,70,4.6,10,10,11.3,2740,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-29.4,-32.8,73,101600,0,0,159,0,0,0,0,0,0,0,80,5.2,10,10,11.3,2740,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.8,-31.1,73,101500,0,0,165,0,0,0,0,0,0,0,60,5.7,10,10,11.3,2740,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.9,-31.7,77,101500,0,0,161,0,0,0,0,0,0,0,60,5.7,10,10,11.3,2740,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-30.6,-33.9,73,101500,0,0,155,0,0,0,0,0,0,0,70,5.7,10,10,11.3,2740,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-30.0,-33.9,69,101400,0,0,157,0,0,0,0,0,0,0,60,5.7,10,10,11.3,2740,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-31.1,-34.4,72,101300,0,0,154,0,0,0,0,0,0,0,70,5.2,10,10,11.3,2740,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-30.0,-33.9,69,101300,0,0,143,0,0,0,0,0,0,0,60,5.7,8,4,4.8,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.9,-32.2,73,101200,0,0,146,0,0,0,0,0,0,0,60,7.2,7,3,4.8,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.8,-31.1,73,101100,0,0,150,0,0,0,0,0,0,0,60,7.7,9,4,2.4,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.3,-31.7,73,101100,0,0,146,0,0,0,0,0,0,0,60,8.2,6,2,2.4,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.7,-29.4,77,101000,0,0,151,0,0,0,0,0,0,0,60,7.2,7,2,2.4,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.2,-30.6,73,101000,0,0,147,0,0,0,0,0,0,0,70,7.2,3,1,3.2,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.7,-29.4,77,101000,0,0,153,0,0,0,0,0,0,0,50,7.2,5,3,4.8,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.2,-30.6,73,100900,0,0,151,0,0,0,0,0,0,0,50,6.2,5,3,4.8,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.7,-29.4,77,100800,0,0,151,0,0,0,0,0,0,0,50,7.2,5,2,8.0,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.1,-28.9,78,100700,0,0,148,0,0,0,0,0,0,0,50,7.2,0,0,8.0,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.6,-30.0,66,100700,0,0,149,0,0,0,0,0,0,0,60,7.7,0,0,8.0,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.0,-27.8,78,100700,0,0,152,0,0,0,0,0,0,0,60,8.2,0,0,8.0,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.9,-27.2,74,100600,0,0,155,0,0,0,0,0,0,0,60,8.2,0,0,8.0,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.3,-25.6,82,100500,0,0,157,0,0,0,0,0,0,0,60,8.8,0,0,8.0,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-22.2,-25.0,78,100500,0,0,174,0,0,0,0,0,0,0,60,9.3,7,7,4.8,3050,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-22.8,-25.0,82,100400,0,0,175,0,0,0,0,0,0,0,60,8.2,10,8,4.8,3050,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-21.7,-24.4,78,100300,0,0,187,0,0,0,0,0,0,0,60,9.8,10,10,4.8,3050,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-21.7,-24.4,78,100300,0,0,187,0,0,0,0,0,0,0,60,9.8,10,10,4.8,370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-22.2,-24.4,82,100200,0,0,186,0,0,0,0,0,0,0,70,9.8,10,10,4.8,430,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-21.7,-23.9,82,100200,0,0,188,0,0,0,0,0,0,0,70,9.8,10,10,6.4,1520,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-21.1,-23.9,79,100100,0,0,189,0,0,0,0,0,0,0,70,9.3,10,10,6.4,1520,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-21.1,-23.3,82,100000,0,0,190,0,0,0,0,0,0,0,70,8.2,10,10,6.4,1520,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-20.6,-23.3,79,100000,0,0,191,0,0,0,0,0,0,0,90,8.2,10,10,11.3,1680,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-20.6,-23.3,79,100000,0,0,191,0,0,0,0,0,0,0,80,7.2,10,10,11.3,1680,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-20.6,-23.3,79,99900,0,0,191,0,0,0,0,0,0,0,90,7.2,10,10,11.3,980,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-20.6,-23.3,79,99900,0,0,191,0,0,0,0,0,0,0,80,6.7,10,10,11.3,790,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-20.6,-22.8,83,99800,0,0,192,0,0,0,0,0,0,0,70,6.2,10,10,11.3,790,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-19.4,-22.2,79,99800,0,0,196,0,0,0,0,0,0,0,70,6.7,10,10,11.3,880,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-19.4,-21.7,83,99700,0,0,196,0,0,0,0,0,0,0,70,7.2,10,10,11.3,880,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-18.9,-21.7,79,99600,0,0,198,0,0,0,0,0,0,0,50,6.2,10,10,11.3,790,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-18.9,-21.1,83,99600,0,0,198,0,0,0,0,0,0,0,70,7.7,10,10,6.4,880,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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.9,-21.1,83,99600,0,0,198,0,0,0,0,0,0,0,70,6.7,10,10,6.4,430,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-18.3,-20.6,83,99500,0,0,201,0,0,0,0,0,0,0,40,6.2,10,10,6.4,430,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-18.3,-20.6,83,99500,0,0,201,0,0,0,0,0,0,0,60,7.2,10,10,11.3,430,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-18.3,-21.1,79,99500,0,0,200,0,0,0,0,0,0,0,40,6.2,10,10,11.3,430,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-17.8,-20.0,83,99400,0,0,203,0,0,0,0,0,0,0,50,6.2,10,10,11.3,1310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-17.2,-19.4,83,99400,0,0,205,0,0,0,0,0,0,0,50,8.2,10,10,11.3,1520,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-17.2,-19.4,83,99400,0,0,205,0,0,0,0,0,0,0,50,7.2,10,10,11.3,1520,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-17.2,-18.9,87,99400,0,0,206,0,0,0,0,0,0,0,60,6.7,10,10,11.3,1520,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-16.7,-18.9,83,99300,0,0,207,0,0,0,0,0,0,0,50,6.2,10,10,11.3,980,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-16.7,-18.9,83,99300,0,0,207,0,0,0,0,0,0,0,70,7.2,10,10,11.3,980,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-16.7,-18.9,83,99400,0,0,207,0,0,0,0,0,0,0,70,6.7,10,10,4.8,640,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-16.7,-18.9,83,99300,0,0,207,0,0,0,0,0,0,0,70,5.2,10,10,6.4,610,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-16.7,-18.9,83,99300,0,0,207,0,0,0,0,0,0,0,50,5.2,10,10,6.4,610,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-16.7,-18.9,83,99300,0,0,207,0,0,0,0,0,0,0,60,5.2,10,10,6.4,610,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-16.7,-18.9,83,99300,0,0,207,0,0,0,0,0,0,0,60,4.6,10,10,4.8,610,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-16.7,-18.9,83,99300,0,0,207,0,0,0,0,0,0,0,70,4.6,10,10,4.8,610,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-16.7,-18.9,83,99300,0,0,207,0,0,0,0,0,0,0,70,3.6,10,10,4.8,610,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-16.7,-18.9,83,99300,0,0,207,0,0,0,0,0,0,0,70,3.1,10,10,4.8,610,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-16.7,-18.9,83,99400,0,0,207,0,0,0,0,0,0,0,40,3.1,10,10,2.4,610,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-17.2,-18.9,87,99400,0,0,206,0,0,0,0,0,0,0,70,2.6,10,10,4.8,610,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-16.7,-18.9,83,99400,0,0,207,0,0,0,0,0,0,0,60,3.1,10,10,4.8,610,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-16.7,-18.9,83,99400,0,0,207,0,0,0,0,0,0,0,90,1.5,10,10,4.8,610,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-16.7,-18.9,83,99500,0,0,207,0,0,0,0,0,0,0,90,1.5,10,10,4.8,2740,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-17.2,-18.9,87,99500,0,0,206,0,0,0,0,0,0,0,160,1.5,10,10,4.8,2740,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-17.8,-20.0,83,99600,0,0,203,0,0,0,0,0,0,0,160,1.5,10,10,4.8,2290,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-17.8,-20.0,83,99600,0,0,203,0,0,0,0,0,0,0,160,2.1,10,10,11.3,2290,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-18.3,-20.0,87,99600,0,0,201,0,0,0,0,0,0,0,140,1.5,10,10,11.3,2290,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-18.3,-22.8,68,99700,0,0,199,0,0,0,0,0,0,0,180,3.6,10,10,11.3,610,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-18.9,-21.7,79,99700,0,0,198,0,0,0,0,0,0,0,190,3.1,10,10,11.3,610,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-17.8,-20.0,83,99800,0,0,203,0,0,0,0,0,0,0,0,0.0,10,10,9.7,700,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-17.2,-19.4,83,99800,0,0,205,0,0,0,0,0,0,0,320,2.6,10,10,8.0,520,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-16.7,-18.9,83,99900,0,0,207,0,0,0,0,0,0,0,330,5.2,10,10,9.7,610,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-17.2,-20.0,79,100000,0,0,205,0,0,0,0,0,0,0,320,5.7,10,10,11.3,610,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-17.8,-20.0,83,100100,0,0,203,0,0,0,0,0,0,0,310,4.6,10,10,11.3,610,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-17.8,-20.0,83,100200,0,0,203,0,0,0,0,0,0,0,280,5.2,10,10,11.3,610,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-17.8,-21.1,75,100200,0,0,192,0,0,0,0,0,0,0,270,7.7,10,8,11.3,610,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-17.8,-20.6,79,100300,0,0,187,0,0,0,0,0,0,0,280,7.7,8,6,11.3,610,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-17.8,-20.0,83,100300,0,0,188,0,0,0,0,0,0,0,300,8.8,8,6,11.3,610,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-17.8,-20.0,83,100400,0,0,188,0,0,0,0,0,0,0,280,8.8,8,6,11.3,610,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-17.8,-20.6,79,100400,0,0,202,0,0,0,0,0,0,0,270,9.8,10,10,11.3,610,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-17.8,-20.6,79,100500,0,0,202,0,0,0,0,0,0,0,280,10.3,10,10,8.0,640,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-18.3,-20.6,83,100600,0,0,201,0,0,0,0,0,0,0,270,9.3,10,10,8.0,700,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-18.3,-21.1,79,100700,0,0,200,0,0,0,0,0,0,0,280,9.8,10,10,9.7,790,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-18.9,-21.7,79,100700,0,0,198,0,0,0,0,0,0,0,280,9.3,10,10,9.7,790,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-19.4,-21.7,83,100800,0,0,196,0,0,0,0,0,0,0,290,10.3,10,10,9.7,790,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-20.0,-22.8,79,100900,0,0,184,0,0,0,0,0,0,0,280,9.8,10,8,9.7,3660,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-21.7,-23.9,82,101000,0,0,171,0,0,0,0,0,0,0,280,11.3,8,4,9.7,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-22.8,-25.6,78,101100,0,0,164,0,0,0,0,0,0,0,280,11.3,4,2,9.7,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.3,-26.1,78,101100,0,0,162,0,0,0,0,0,0,0,270,11.8,3,2,9.7,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.3,-27.2,71,101100,0,0,164,0,0,0,0,0,0,0,280,10.8,5,4,9.7,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-24.4,-27.2,78,101200,0,0,153,0,0,0,0,0,0,0,280,10.3,0,0,9.7,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-24.4,-30.6,57,101300,0,0,154,0,0,0,0,0,0,0,270,10.3,1,1,6.4,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-24.4,-27.8,74,101300,0,0,164,0,0,0,0,0,0,0,270,10.3,6,6,4.8,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.0,-28.3,74,101400,0,0,159,0,0,0,0,0,0,0,260,10.3,8,4,2.4,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.6,-28.9,74,101400,0,0,157,0,0,0,0,0,0,0,270,10.3,8,4,2.4,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.1,-28.9,78,101500,0,0,153,0,0,0,0,0,0,0,270,10.3,5,2,2.4,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.1,-29.4,74,101700,0,0,153,0,0,0,0,0,0,0,260,10.3,2,2,2.4,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.1,-28.9,78,101700,0,0,153,0,0,0,0,0,0,0,270,11.3,2,2,2.4,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.1,-29.4,74,101800,0,0,148,0,0,0,0,0,0,0,270,11.3,0,0,6.4,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-26.7,-30.0,74,101900,0,0,146,0,0,0,0,0,0,0,260,11.3,0,0,6.4,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.2,-30.6,73,101900,0,0,144,0,0,0,0,0,0,0,260,10.3,0,0,6.4,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.8,-30.6,77,102000,0,0,143,0,0,0,0,0,0,0,260,7.7,0,0,6.4,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.8,-30.6,77,102000,0,0,143,0,0,0,0,0,0,0,260,7.7,0,0,6.4,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.8,-31.1,73,102000,0,0,143,0,0,0,0,0,0,0,260,8.2,0,0,8.0,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.8,-31.1,73,102100,0,0,147,0,0,0,0,0,0,0,270,7.7,2,2,8.0,77777,9,999999999,1,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.2,-30.6,73,102100,0,0,149,0,0,0,0,0,0,0,270,9.8,3,2,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.3,-31.7,73,102200,0,0,141,0,0,0,0,0,0,0,260,8.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.8,-31.1,73,102300,0,0,153,0,0,0,0,0,0,0,260,8.8,6,6,11.3,1680,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.2,-30.6,73,102400,0,0,153,0,0,0,0,0,0,0,260,9.3,7,5,11.3,1520,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.8,-31.1,73,102500,0,0,145,0,0,0,0,0,0,0,250,8.2,1,1,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.8,-31.1,73,102600,0,0,143,0,0,0,0,0,0,0,260,7.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.8,-30.6,77,102600,0,0,143,0,0,0,0,0,0,0,270,7.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.3,-31.7,73,102700,0,0,141,0,0,0,0,0,0,0,250,7.2,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.3,-31.7,73,102700,0,0,141,0,0,0,0,0,0,0,250,5.7,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.9,-32.8,69,102800,0,0,139,0,0,0,0,0,0,0,270,4.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-30.0,-37.2,49,102900,0,0,134,0,0,0,0,0,0,0,240,3.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-30.0,-33.9,69,102900,0,0,136,0,0,0,0,0,0,0,240,3.1,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-33.3,-37.2,68,103000,0,0,127,0,0,0,0,0,0,0,220,2.6,0,0,11.3,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-33.9,-37.8,68,103000,0,0,125,0,0,0,0,0,0,0,210,5.2,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-35.0,-38.9,67,103100,0,0,122,0,0,0,0,0,0,0,180,3.1,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-36.7,-41.1,63,103100,0,0,117,0,0,0,0,0,0,0,180,3.1,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-37.8,-40.5,63,103200,0,0,116,0,0,0,0,0,0,0,150,2.6,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-37.2,-40.4,63,103200,0,0,117,0,0,0,0,0,0,0,120,3.1,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-36.7,-41.1,63,103100,0,0,117,0,0,0,0,0,0,0,100,4.1,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-37.2,-40.2,65,103100,0,0,117,0,0,0,0,0,0,0,120,4.6,0,0,16.1,77777,9,999999999,2,0.0000,0,88,0.000,0.0,1.0 +1987,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,-36.1,-40.0,67,103000,0,0,119,0,0,0,0,0,0,0,100,5.2,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-34.4,-38.3,68,103000,0,0,124,0,0,0,0,0,0,0,100,6.2,0,0,16.1,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-31.7,-35.6,68,102900,0,0,131,0,0,0,0,0,0,0,90,6.2,0,0,11.3,77777,9,999999999,3,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.9,-32.2,73,102900,0,0,139,0,0,0,0,0,0,0,100,6.7,0,0,3.2,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-28.3,-31.7,73,102700,0,0,141,0,0,0,0,0,0,0,100,7.7,0,0,6.4,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-27.2,-30.0,77,102600,0,0,157,0,0,0,0,0,0,0,100,8.2,10,7,6.4,6100,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-25.6,-28.3,78,102500,0,0,173,0,0,0,0,0,0,0,100,10.8,10,10,1.6,6100,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-23.9,-26.7,78,102400,0,0,179,0,0,0,0,0,0,0,100,11.8,10,10,1.6,2740,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-22.2,-24.4,82,102200,0,0,186,0,0,0,0,0,0,0,110,12.4,10,10,1.6,2740,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-21.1,-23.3,82,102100,0,0,190,0,0,0,0,0,0,0,110,14.4,10,10,1.2,2440,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-22.8,79,101900,0,0,194,0,0,0,0,0,0,0,110,14.9,10,10,1.2,2130,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-20.0,-22.2,83,101800,0,0,194,0,0,0,0,0,0,0,110,12.4,10,10,0.4,90,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-18.9,-21.7,79,101700,0,0,198,0,0,0,0,0,0,0,110,10.3,10,10,0.4,430,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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.3,-20.0,87,101600,0,0,201,0,0,0,0,0,0,0,120,10.3,10,10,0.4,430,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-16.7,-20.0,76,101500,0,0,206,0,0,0,0,0,0,0,130,9.3,10,10,0.8,980,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-14.4,-16.1,87,101500,0,0,217,0,0,0,0,0,0,0,130,9.3,10,10,2.4,980,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-12.2,-13.9,88,101400,0,0,227,0,0,0,0,0,0,0,140,7.7,10,10,11.3,1310,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-11.7,-13.3,88,101400,0,0,229,0,0,0,0,0,0,0,150,6.2,10,10,11.3,1310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.0,-11.7,88,101400,0,0,236,0,0,0,0,0,0,0,200,5.2,10,10,11.3,1310,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-9.4,-10.6,92,101500,0,0,240,0,0,0,0,0,0,0,180,5.2,10,10,11.3,1070,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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.1,-7.2,92,101500,0,0,255,0,0,0,0,0,0,0,230,3.6,10,10,11.3,1070,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.2,92,101600,0,0,255,0,0,0,0,0,0,0,240,3.6,10,10,11.3,980,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.2,88,101600,0,0,257,0,0,0,0,0,0,0,230,3.6,10,10,11.3,790,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,92,101700,0,0,257,0,0,0,0,0,0,0,230,3.6,10,10,11.3,550,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-7.8,92,101700,0,0,252,0,0,0,0,0,0,0,210,4.1,10,10,11.3,550,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,92,101800,0,0,257,0,0,0,0,0,0,0,230,3.1,10,10,11.3,490,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,92,101800,0,0,257,0,0,0,0,0,0,0,240,2.6,10,10,11.3,490,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-7.2,92,101800,0,0,255,0,0,0,0,0,0,0,220,2.1,10,10,11.3,430,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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.7,-7.8,92,101900,0,0,252,0,0,0,0,0,0,0,190,3.1,10,10,11.3,400,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-5.0,-6.1,92,101900,0,0,260,0,0,0,0,0,0,0,360,1.5,10,10,11.3,400,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-7.8,92,101900,0,0,252,0,0,0,0,0,0,0,90,2.6,10,10,11.3,370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,92,101900,0,0,252,0,0,0,0,0,0,0,100,3.6,10,10,11.3,340,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-6.7,96,101900,0,0,256,0,0,0,0,0,0,0,120,5.2,10,10,11.3,240,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-7.8,92,101900,0,0,252,0,0,0,0,0,0,0,90,5.7,10,10,11.3,240,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-7.2,96,101800,0,0,253,0,0,0,0,0,0,0,100,6.2,10,10,11.3,120,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-7.2,96,101800,0,0,253,0,0,0,0,0,0,0,100,7.7,10,10,4.8,120,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.8,-8.3,96,101700,0,0,248,0,0,0,0,0,0,0,100,7.2,10,10,0.4,60,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-8.3,-8.9,96,101700,0,0,245,0,0,0,0,0,0,0,90,7.2,10,10,1.6,120,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.8,-8.9,92,101700,0,0,247,0,0,0,0,0,0,0,90,7.2,10,10,1.2,120,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-8.3,-10.0,88,101600,0,0,244,0,0,0,0,0,0,0,90,9.3,10,10,2.4,240,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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.3,-9.4,92,101500,0,0,245,0,0,0,0,0,0,0,90,9.3,10,10,2.4,640,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.8,-8.9,92,101500,0,0,247,0,0,0,0,0,0,0,90,9.3,10,10,1.6,240,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.8,-8.9,92,101400,0,0,247,0,0,0,0,0,0,0,90,9.3,10,10,1.6,240,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.8,-8.9,92,101300,0,0,247,0,0,0,0,0,0,0,100,10.3,10,10,2.4,180,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.2,-8.3,92,101200,0,0,250,0,0,0,0,0,0,0,100,9.8,10,10,2.4,370,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-7.8,-8.9,92,101200,0,0,247,0,0,0,0,0,0,0,110,9.3,10,10,2.4,370,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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.8,-9.4,88,101100,0,0,240,0,0,0,0,0,0,0,120,8.2,10,9,6.4,1310,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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,-9.4,-11.1,88,101100,0,0,239,0,0,0,0,0,0,0,120,7.2,10,10,11.3,2440,9,999999999,9,0.0000,0,88,0.000,0.0,1.0 +1987,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.4,-10.6,92,101100,0,0,240,0,0,0,0,0,0,0,120,5.2,10,10,11.3,2440,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-9.4,-10.6,92,101100,0,0,240,0,0,0,0,0,0,0,130,5.2,10,10,11.3,2440,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.6,-11.7,92,101100,0,0,215,0,0,0,0,0,0,0,140,5.2,5,5,11.3,77777,9,999999999,8,0.0000,0,88,0.000,0.0,1.0 +1987,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.2,-8.3,92,101100,0,0,217,0,0,0,0,0,0,0,180,8.2,0,0,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-8.3,88,101100,0,0,236,0,0,0,0,0,0,0,200,6.2,7,7,11.3,1680,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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.3,-10.6,84,101200,0,0,218,0,0,0,0,0,0,0,220,4.1,2,2,11.3,77777,9,999999999,7,0.0000,0,88,0.000,0.0,1.0 +1987,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,-8.3,-10.0,88,101200,0,0,219,0,0,0,0,0,0,0,190,6.2,2,2,16.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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,-11.1,92,101200,0,0,212,0,0,0,0,0,0,0,190,7.7,2,2,16.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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.6,-12.2,88,101200,0,0,203,0,0,0,0,0,0,0,200,6.7,0,0,16.1,77777,9,999999999,6,0.0000,0,88,0.000,0.0,1.0 +1987,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.6,-12.8,84,101300,0,0,202,0,0,0,0,0,0,0,200,6.2,0,0,16.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-11.1,-12.8,88,101300,0,0,220,0,0,0,0,0,0,0,200,6.7,10,8,16.1,2740,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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.3,-10.0,88,101300,0,0,244,0,0,0,0,0,0,0,190,5.2,10,10,11.3,1520,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.0,88,101300,0,0,244,0,0,0,0,0,0,0,200,7.2,10,10,16.1,2740,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.6,84,101400,0,0,244,0,0,0,0,0,0,0,220,5.2,10,10,16.1,2130,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.1,-8.9,81,101400,0,0,238,0,0,0,0,0,0,0,230,4.1,7,7,16.1,1520,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-8.3,88,101400,0,0,228,0,0,0,0,0,0,0,230,5.7,3,3,16.1,77777,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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.6,-7.2,88,101500,0,0,234,0,0,0,0,0,0,0,220,5.2,4,4,16.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-6.7,-8.9,84,101500,0,0,218,0,0,0,0,0,0,0,230,5.2,0,0,16.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-8.3,-10.6,84,101600,0,0,222,0,0,0,0,0,0,0,220,5.2,4,4,16.1,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-9.4,84,101600,0,0,249,0,0,0,0,0,0,0,230,4.6,10,10,16.1,610,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,88,101700,0,0,249,0,0,0,0,0,0,0,230,3.6,10,10,11.3,790,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-8.3,88,101700,0,0,252,0,0,0,0,0,0,0,230,4.1,10,10,11.3,1980,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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.2,-8.3,92,101800,0,0,250,0,0,0,0,0,0,0,240,3.6,10,10,11.3,1980,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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.4,-11.1,88,101800,0,0,207,0,0,0,0,0,0,0,230,3.1,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.0,-11.7,88,101800,0,0,205,0,0,0,0,0,0,0,220,5.2,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-14.4,-16.1,87,101800,0,0,188,0,0,0,0,0,0,0,230,4.6,0,0,11.3,77777,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-14.4,-16.1,87,101800,0,0,201,0,0,0,0,0,0,0,210,6.2,6,6,11.3,2740,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-13.9,-16.1,84,101800,0,0,208,0,0,0,0,0,0,0,210,5.2,8,8,11.3,2740,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-12.8,-15.0,84,101800,0,0,224,0,0,0,0,0,0,0,200,6.2,10,10,16.1,2740,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-13.3,-15.6,84,101800,0,0,221,0,0,0,0,0,0,0,200,5.7,10,10,16.1,2740,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-15.0,-17.2,83,101700,0,0,214,0,0,0,0,0,0,0,160,2.1,10,10,16.1,6100,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-15.6,-17.8,83,101700,0,0,212,0,0,0,0,0,0,0,160,4.1,10,10,16.1,6100,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-13.9,-16.1,84,101700,0,0,219,0,0,0,0,0,0,0,170,3.6,10,10,16.1,6100,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-15.0,-17.2,83,101700,0,0,214,0,0,0,0,0,0,0,60,3.1,10,10,16.1,6100,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-15.6,-17.2,87,101700,0,0,212,0,0,0,0,0,0,0,60,5.2,10,10,16.1,6100,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-13.3,-15.6,84,101700,0,0,221,0,0,0,0,0,0,0,60,6.2,10,10,16.1,2130,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-11.7,92,101700,0,0,234,0,0,0,0,0,0,0,60,7.7,10,10,4.8,2130,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-10.6,-11.7,92,101700,0,0,234,0,0,0,0,0,0,0,60,9.3,10,10,4.8,1130,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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.3,-15.0,87,101800,0,0,222,0,0,0,0,0,0,0,60,9.3,10,10,4.8,1520,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-15.0,-17.2,83,101800,0,0,214,0,0,0,0,0,0,0,60,10.3,10,10,4.8,430,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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.7,-18.9,83,101900,0,0,207,0,0,0,0,0,0,0,60,10.3,10,10,4.8,430,9,999999999,4,0.0000,0,88,0.000,0.0,1.0 +1987,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,-18.3,-20.6,83,102000,0,0,201,0,0,0,0,0,0,0,60,12.4,10,10,4.8,640,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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.9,-21.1,83,102000,0,0,198,0,0,0,0,0,0,0,70,12.4,10,10,4.8,370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 +1987,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,83,102000,0,0,196,0,0,0,0,0,0,0,70,12.9,10,10,1.2,370,9,999999999,5,0.0000,0,88,0.000,0.0,1.0 diff --git a/AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD400.mos b/AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD400.mos new file mode 100644 index 0000000000..9ce01dd20f --- /dev/null +++ b/AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD400.mos @@ -0,0 +1,8800 @@ +#1 +double tab1(8760,30) +#LOCATION,Barrow-Post-Rogers Meml AP,AK,USA,TMY3,700260,71.28600,-156.7670,-9.0,10.0 +#DESIGN CONDITIONS,1,2017 ASHRAE Handbook -- Fundamentals - Chapter 14 Climatic Design Information,,Heating,2,-39.2,-36.8,-38.9,0.1,-34.9,-37.2,0.1,-33.6,15.7,-18.5,14.8,-19.6,3.3,100,Cooling,7,6.2,14.5,11.5,12.1,10,10.1,8.4,11.8,14,10.2,12.1,8.6,10.1,5,180,10.2,7.7,13,8.7,7,11.4,7.4,6.4,9.6,33.5,14.1,29.6,12.1,26.1,10,18.4,Extremes,14.1,12.3,11.1,-42,19.2,2.7,2.9,-44,21.3,-45.5,23,-47.1,24.6,-49,26.7,-36.9 +#TYPICAL/EXTREME PERIODS,6,Summer - Week Nearest Max Temperature For Period,Extreme,8/10,8/16,Summer - Week Nearest Average Temperature For Period,Typical,6/22,6/28,Winter - Week Nearest Min Temperature For Period,Extreme,2/17,2/23,Winter - Week Nearest Average Temperature For Period,Typical,12/ 1,12/ 7,Autumn - Week Nearest Average Temperature For Period,Typical,10/20,10/26,Spring - Week Nearest Average Temperature For Period,Typical,4/19,4/25 +#GROUND TEMPERATURES,3,.5,,,,-24.31,-25.53,-23.36,-19.97,-11.11,-4.27,0.34,1.74,-0.65,-5.96,-13.05,-19.64,2,,,,-19.81,-21.99,-21.54,-19.75,-13.82,-8.46,-4.17,-1.87,-2.36,-5.37,-10.26,-15.44,4,,,,-16.10,-18.33,-18.81,-18.14,-14.78,-11.17,-7.86,-5.56,-5.02,-6.32,-9.19,-12.70 +#HOLIDAYS/DAYLIGHT SAVINGS,No,0,0,0 +#COMMENTS 1,"NREL TMY Data Set (2008) updated 2015 to include better precipitation;Period of Record 1973-2005 (Generally)" +#COMMENTS 2,"Downloaded from Climate.Onebuilding.Org -- Ground temps represent undisturbed earth temperatures - calculated from this weather data." +#DATA PERIODS,1,1,Data,Sunday, 1/ 1,12/31 +#C1 Time in seconds. Beginning of a year is 0s. +#C2 Dry bulb temperature in Celsius at indicated time +#C3 Dew point temperature in Celsius at indicated time +#C4 Relative humidity in percent at indicated time +#C5 Atmospheric station pressure in Pa at indicated time +#C6 Extraterrestrial horizontal radiation in Wh/m2 +#C7 Extraterrestrial direct normal radiation in Wh/m2 +#C8 Horizontal infrared radiation intensity in Wh/m2 +#C9 Global horizontal radiation in Wh/m2 +#C10 Direct normal radiation in Wh/m2 +#C11 Diffuse horizontal radiation in Wh/m2 +#C12 Averaged global horizontal illuminance in lux during minutes preceding the indicated time +#C13 Direct normal illuminance in lux during minutes preceding the indicated time +#C14 Diffuse horizontal illuminance in lux during minutes preceding the indicated time +#C15 Zenith luminance in Cd/m2 during minutes preceding the indicated time +#C16 Wind direction at indicated time. N=0, E=90, S=180, W=270 +#C17 Wind speed in m/s at indicated time +#C18 Total sky cover at indicated time +#C19 Opaque sky cover at indicated time +#C20 Visibility in km at indicated time +#C21 Ceiling height in m +#C22 Present weather observation +#C23 Present weather codes +#C24 Precipitable water in mm +#C25 Aerosol optical depth +#C26 Snow depth in cm +#C27 Days since last snowfall +#C28 Albedo +#C29 Liquid precipitation depth in mm at indicated time +#C30 Liquid precipitation quantity +0.0 -19.4 -21.7 83 102100 0 0 196 0 0 0 0 0 0 0 80 13.4 10 10 1.2 370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3600.0 -19.4 -21.7 83 102100 0 0 196 0 0 0 0 0 0 0 80 13.4 10 10 1.2 370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7200.0 -19.4 -21.7 83 102100 0 0 196 0 0 0 0 0 0 0 80 14.4 10 10 1.2 610 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +10800.0 -20.0 -22.2 83 102100 0 0 194 0 0 0 0 0 0 0 80 15.4 10 10 1.2 1520 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +14400.0 -20.0 -22.2 83 102100 0 0 194 0 0 0 0 0 0 0 80 14.9 10 10 1.2 1220 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +18000.0 -20.0 -22.2 83 102000 0 0 194 0 0 0 0 0 0 0 80 15.9 10 10 0.8 1220 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +21600.0 -20.0 -22.2 83 102000 0 0 194 0 0 0 0 0 0 0 90 16.5 10 10 0.8 640 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +25200.0 -19.4 -21.7 83 101900 0 0 196 0 0 0 0 0 0 0 90 15.9 10 10 0.8 640 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +28800.0 -18.9 -21.1 83 101800 0 0 198 0 0 0 0 0 0 0 90 18.0 10 10 0.8 1220 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +32400.0 -17.8 -20.6 79 101800 0 0 202 0 0 0 0 0 0 0 90 19.0 10 10 0.8 60 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +36000.0 -17.8 -20.0 83 101800 0 0 203 0 0 0 0 0 0 0 100 18.0 10 10 0.4 30 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +39600.0 -17.2 -19.4 83 101800 0 0 205 0 0 0 0 0 0 0 100 17.5 10 10 0.4 2440 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +43200.0 -16.7 -16.7 100 101600 0 0 209 0 0 0 0 0 0 0 90 17.5 10 10 0.4 550 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +46800.0 -16.7 -18.3 87 101600 0 0 208 0 0 0 0 0 0 0 100 16.5 10 10 0.4 550 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +50400.0 -16.1 -18.3 83 101600 0 0 210 0 0 0 0 0 0 0 100 15.9 10 10 0.4 60 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +54000.0 -15.0 -17.2 83 101500 0 0 214 0 0 0 0 0 0 0 110 18.5 10 10 0.0 0 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +57600.0 -16.1 -18.3 83 101500 0 0 210 0 0 0 0 0 0 0 110 18.0 10 10 0.0 0 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +61200.0 -16.7 -18.3 87 101500 0 0 208 0 0 0 0 0 0 0 100 19.6 10 10 0.0 0 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +64800.0 -16.7 -18.9 83 101400 0 0 207 0 0 0 0 0 0 0 110 17.5 10 10 0.0 0 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +68400.0 -16.7 -18.3 87 101400 0 0 208 0 0 0 0 0 0 0 110 18.0 10 10 0.0 0 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +72000.0 -16.1 -18.9 79 101300 0 0 209 0 0 0 0 0 0 0 110 18.5 10 10 0.0 0 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +75600.0 -15.6 -17.8 83 101300 0 0 212 0 0 0 0 0 0 0 110 14.9 10 10 0.2 0 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +79200.0 -15.6 -17.2 87 101300 0 0 212 0 0 0 0 0 0 0 110 14.4 10 10 0.2 0 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +82800.0 -15.0 -16.7 87 101300 0 0 215 0 0 0 0 0 0 0 120 12.9 10 10 0.8 30 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +86400.0 -14.4 -16.1 87 101300 0 0 217 0 0 0 0 0 0 0 110 10.3 10 10 1.6 240 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +90000.0 -14.4 -16.1 87 101400 0 0 217 0 0 0 0 0 0 0 120 10.3 10 10 1.2 180 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +93600.0 -13.9 -15.6 87 101400 0 0 219 0 0 0 0 0 0 0 110 10.3 10 10 1.6 180 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +97200.0 -13.3 -15.0 87 101400 0 0 222 0 0 0 0 0 0 0 110 7.2 10 10 4.8 640 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +100800.0 -13.9 -15.6 87 101400 0 0 209 0 0 0 0 0 0 0 110 9.3 10 8 4.8 1520 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +104400.0 -13.3 -15.0 87 101300 0 0 222 0 0 0 0 0 0 0 110 9.3 10 10 11.3 980 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +108000.0 -12.8 -14.4 88 101300 0 0 224 0 0 0 0 0 0 0 120 8.2 10 10 11.3 2440 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +111600.0 -12.8 -13.9 92 101300 0 0 225 0 0 0 0 0 0 0 120 9.3 10 10 11.3 790 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +115200.0 -10.6 -12.2 88 101200 0 0 234 0 0 0 0 0 0 0 120 7.7 10 10 6.4 790 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +118800.0 -9.4 -10.0 96 101100 0 0 240 0 0 0 0 0 0 0 120 7.2 10 10 3.2 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +122400.0 -5.0 -6.1 92 101100 0 0 260 0 0 0 0 0 0 0 130 7.7 10 10 3.2 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +126000.0 -6.7 -7.8 92 101100 0 0 252 0 0 0 0 0 0 0 140 10.3 10 10 4.8 700 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +129600.0 -3.9 -4.4 96 101100 0 0 250 0 0 0 0 0 0 0 170 8.8 10 7 11.3 2130 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +133200.0 -2.8 -3.9 92 101200 0 0 271 0 0 0 0 0 0 0 200 7.2 10 10 11.3 2740 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +136800.0 -1.7 -2.2 96 101300 0 0 277 0 0 0 0 0 0 0 240 4.6 10 10 11.3 2740 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +140400.0 -2.8 -2.8 100 101400 0 0 272 0 0 0 0 0 0 0 240 4.6 10 10 11.3 2740 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +144000.0 -7.8 -8.3 96 101500 0 0 227 0 0 0 0 0 0 0 170 6.2 5 5 3.2 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +147600.0 -5.6 -6.1 96 101500 0 0 258 0 0 0 0 0 0 0 190 6.7 10 10 4.8 2130 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +151200.0 -4.4 -5.0 96 101600 0 0 264 0 0 0 0 0 0 0 200 5.2 10 10 4.8 2130 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +154800.0 -5.6 -6.1 96 101600 0 0 237 0 0 0 0 0 0 0 180 4.6 5 5 4.8 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +158400.0 -7.8 -8.9 92 101700 0 0 218 0 0 0 0 0 0 0 170 6.2 3 1 4.8 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +162000.0 -7.2 -8.3 92 101700 0 0 224 0 0 0 0 0 0 0 180 5.2 5 2 4.8 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +165600.0 -7.8 -9.4 88 101600 0 0 221 0 0 0 0 0 0 0 180 5.7 5 2 4.8 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +169200.0 -8.9 -10.0 92 101600 0 0 220 0 0 0 0 0 0 0 180 6.2 8 4 4.8 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +172800.0 -8.3 -10.0 88 101600 0 0 221 0 0 0 0 0 0 0 180 6.2 7 3 4.8 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +176400.0 -10.0 -11.1 92 101600 0 0 205 0 0 0 0 0 0 0 150 5.2 0 0 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +180000.0 -8.9 -10.0 92 101600 0 0 222 0 0 0 0 0 0 0 180 6.2 6 5 11.3 1520 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +183600.0 -9.4 -10.6 92 101600 0 0 214 0 0 0 0 0 0 0 170 5.2 10 2 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +187200.0 -7.8 -9.4 88 101500 0 0 247 0 0 0 0 0 0 0 150 4.1 10 10 11.3 1520 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +190800.0 -4.4 -5.6 92 101500 0 0 256 0 0 0 0 0 0 0 160 6.2 10 9 11.3 1680 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +194400.0 -5.0 -6.1 92 101500 0 0 260 0 0 0 0 0 0 0 140 6.2 10 10 11.3 2440 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +198000.0 -3.9 -5.0 92 101400 0 0 266 0 0 0 0 0 0 0 160 6.2 10 10 11.3 2440 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +201600.0 -3.9 -5.0 92 101400 0 0 266 0 0 0 0 0 0 0 160 7.2 10 10 11.3 2440 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +205200.0 -3.9 -5.0 92 101400 0 0 266 0 0 0 0 0 0 0 160 7.2 10 10 11.3 2440 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +208800.0 -3.9 -5.0 92 101400 0 0 266 0 0 0 0 0 0 0 160 6.2 10 10 11.3 2440 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +212400.0 -5.0 -6.1 92 101400 0 0 237 0 0 0 0 0 0 0 170 7.2 10 4 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +216000.0 -6.1 -7.8 88 101400 0 0 232 0 0 0 0 0 0 0 180 6.7 10 4 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +219600.0 -6.7 -7.8 92 101500 0 0 226 0 0 0 0 0 0 0 210 5.7 10 2 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +223200.0 -7.2 -8.9 88 101500 0 0 223 0 0 0 0 0 0 0 220 4.6 10 2 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +226800.0 -8.9 -10.0 92 101600 0 0 217 0 0 0 0 0 0 0 180 5.2 10 2 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +230400.0 -8.9 -9.4 96 101600 0 0 221 0 0 0 0 0 0 0 180 5.2 8 4 3.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +234000.0 -7.8 -8.9 92 101600 0 0 225 0 0 0 0 0 0 0 230 2.1 8 4 6.4 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +237600.0 -9.4 -10.0 96 101600 0 0 229 0 0 0 0 0 0 0 190 2.6 10 8 6.4 6100 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +241200.0 -8.9 -10.0 92 101600 0 0 222 0 0 0 0 0 0 0 180 3.1 10 5 6.4 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +244800.0 -8.9 -10.6 88 101600 0 0 241 0 0 0 0 0 0 0 180 3.1 10 10 6.4 3050 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +248400.0 -8.9 -10.6 88 101700 0 0 241 0 0 0 0 0 0 0 150 4.1 10 10 11.3 3050 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +252000.0 -10.0 -11.7 88 101700 0 0 225 0 0 0 0 0 0 0 140 4.1 8 8 11.3 3050 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +255600.0 -10.6 -12.8 84 101700 0 0 222 0 0 0 0 0 0 0 140 2.6 8 8 0.8 3050 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +259200.0 -8.9 -10.0 92 101800 0 0 217 0 0 0 0 0 0 0 60 2.1 3 2 1.6 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +262800.0 -13.9 -16.1 84 101800 0 0 190 0 0 0 0 0 0 0 80 2.6 0 0 1.6 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +266400.0 -12.8 -15.0 84 101900 0 0 194 0 0 0 0 0 0 0 60 3.1 0 0 1.6 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +270000.0 -15.0 -16.7 87 101900 0 0 186 0 0 0 0 0 0 0 110 3.6 0 0 0.8 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +273600.0 -16.1 -17.8 87 101900 0 0 182 0 0 0 0 0 0 0 140 2.1 0 0 1.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +277200.0 -17.8 -19.4 87 101900 0 0 176 0 0 0 0 0 0 0 140 2.6 0 0 1.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +280800.0 -16.7 -18.3 87 102000 0 0 180 0 0 0 0 0 0 0 190 2.6 0 0 1.6 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +284400.0 -15.6 -17.8 83 102000 0 0 183 0 0 0 0 0 0 0 330 1.5 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +288000.0 -16.7 -18.9 83 102000 0 0 185 0 0 0 0 0 0 0 60 1.5 2 2 0.8 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +291600.0 -18.9 -21.1 83 102000 0 0 181 0 0 0 0 0 0 0 100 2.1 8 4 1.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +295200.0 -19.4 -21.1 87 102100 0 0 176 0 0 0 0 0 0 0 80 2.1 8 2 1.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +298800.0 -17.8 -19.4 87 102100 0 0 182 0 0 0 0 0 0 0 80 2.6 6 2 6.4 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +302400.0 -18.3 -20.6 83 102100 0 0 180 0 0 0 0 0 0 0 90 3.1 10 2 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +306000.0 -18.3 -20.6 83 102100 0 0 174 0 0 0 0 0 0 0 120 4.6 10 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +309600.0 -18.3 -20.6 83 102100 0 0 183 0 0 0 0 0 0 0 120 3.1 10 4 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +313200.0 -17.2 -20.0 79 102100 0 0 188 0 0 0 0 0 0 0 110 3.6 10 5 8.0 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +316800.0 -15.6 -17.8 83 102100 0 0 190 0 0 0 0 0 0 0 120 4.1 10 2 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +320400.0 -16.1 -18.3 83 102100 0 0 191 0 0 0 0 0 0 0 110 3.6 10 4 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +324000.0 -16.1 -18.3 83 102100 0 0 188 0 0 0 0 0 0 0 110 3.6 6 2 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +327600.0 -16.7 -18.3 87 102100 0 0 186 0 0 0 0 0 0 0 100 4.1 6 2 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +331200.0 -15.6 -18.3 80 102100 0 0 189 0 0 0 0 0 0 0 110 4.1 7 2 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +334800.0 -16.7 -18.9 83 102100 0 0 180 0 0 0 0 0 0 0 100 3.6 3 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +338400.0 -15.6 -17.8 83 102000 0 0 183 0 0 0 0 0 0 0 110 5.2 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +342000.0 -14.4 -16.1 87 102000 0 0 188 0 0 0 0 0 0 0 110 5.2 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +345600.0 -15.0 -17.2 83 102000 0 0 186 0 0 0 0 0 0 0 110 4.6 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +349200.0 -15.0 -16.7 87 102100 0 0 186 0 0 0 0 0 0 0 100 5.2 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +352800.0 -13.9 -15.6 87 102000 0 0 190 0 0 0 0 0 0 0 110 5.7 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +356400.0 -11.7 -13.3 88 102000 0 0 198 0 0 0 0 0 0 0 110 6.2 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +360000.0 -13.3 -15.0 87 102000 0 0 192 0 0 0 0 0 0 0 120 5.2 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +363600.0 -13.3 -15.0 87 101900 0 0 199 0 0 0 0 0 0 0 110 5.2 10 2 4.8 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +367200.0 -14.4 -16.1 87 101900 0 0 188 0 0 0 0 0 0 0 90 5.2 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +370800.0 -15.0 -16.7 87 101900 0 0 190 0 0 0 0 0 0 0 110 5.2 3 1 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +374400.0 -14.4 -16.7 83 101900 0 0 194 0 0 0 0 0 0 0 110 5.2 6 2 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +378000.0 -15.0 -17.2 83 101900 0 0 192 0 0 0 0 0 0 0 100 5.2 7 2 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +381600.0 -14.4 -16.1 87 101900 0 0 194 0 0 0 0 0 0 0 100 5.2 6 2 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +385200.0 -15.0 -17.2 83 101900 0 0 192 0 0 0 0 0 0 0 110 5.2 6 2 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +388800.0 -15.6 -17.8 83 101900 0 0 190 0 0 0 0 0 0 0 110 4.6 8 2 9.7 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +392400.0 -17.2 -19.4 83 102000 0 0 200 0 0 0 0 0 0 0 120 3.1 10 9 9.7 6100 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +396000.0 -16.1 -18.3 83 101900 0 0 210 0 0 0 0 0 0 0 110 4.6 10 10 8.0 180 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +399600.0 -16.7 -18.3 87 101900 0 0 183 0 0 0 0 0 0 0 110 4.6 3 1 9.7 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +403200.0 -17.2 -19.4 83 101800 0 0 178 0 0 0 0 0 0 0 110 4.6 1 0 9.7 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +406800.0 -17.8 -20.0 83 101800 0 0 183 0 0 0 0 0 0 0 110 3.1 7 3 9.7 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +410400.0 -16.1 -18.3 83 101800 0 0 210 0 0 0 0 0 0 0 110 3.1 10 10 1.6 120 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +414000.0 -17.2 -19.4 83 101800 0 0 185 0 0 0 0 0 0 0 90 3.1 8 3 9.7 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +417600.0 -17.8 -20.6 79 101700 0 0 181 0 0 0 0 0 0 0 90 4.1 5 2 9.7 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +421200.0 -18.3 -20.6 83 101700 0 0 174 0 0 0 0 0 0 0 90 2.6 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +424800.0 -19.4 -21.7 83 101700 0 0 170 0 0 0 0 0 0 0 80 3.1 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +428400.0 -16.7 -18.3 87 101600 0 0 198 0 0 0 0 0 0 0 100 4.1 10 8 0.6 90 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +432000.0 -15.6 -17.2 87 101700 0 0 206 0 0 0 0 0 0 0 120 2.6 10 9 0.4 60 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +435600.0 -15.6 -17.2 87 101700 0 0 212 0 0 0 0 0 0 0 90 3.1 10 10 0.4 60 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +439200.0 -15.0 -16.7 87 101600 0 0 215 0 0 0 0 0 0 0 90 3.1 10 10 0.4 60 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +442800.0 -15.0 -16.7 87 101600 0 0 215 0 0 0 0 0 0 0 100 2.6 10 10 0.4 60 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +446400.0 -14.4 -16.1 87 101500 0 0 217 0 0 0 0 0 0 0 100 2.6 10 10 0.4 60 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +450000.0 -15.0 -16.7 87 101500 0 0 215 0 0 0 0 0 0 0 110 2.6 10 10 0.4 60 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +453600.0 -16.1 -17.8 87 101500 0 0 204 0 0 0 0 0 0 0 120 2.6 10 9 0.4 90 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +457200.0 -16.1 -17.8 87 101400 0 0 204 0 0 0 0 0 0 0 120 2.1 10 9 0.4 90 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +460800.0 -15.6 -17.2 87 101400 0 0 206 0 0 0 0 0 0 0 120 2.6 10 9 0.4 90 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +464400.0 -16.1 -17.8 87 101300 0 0 210 0 0 0 0 0 0 0 80 2.6 10 10 0.2 90 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +468000.0 -17.2 -19.4 83 101300 0 0 205 0 0 0 0 0 0 0 70 2.6 10 10 0.8 90 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +471600.0 -18.9 -21.1 83 101300 0 0 178 0 0 0 0 0 0 0 70 2.6 2 2 1.6 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +475200.0 -18.3 -20.6 83 101300 0 0 174 0 0 0 0 0 0 0 70 2.6 4 0 6.4 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +478800.0 -18.9 -21.1 83 101300 0 0 172 0 0 0 0 0 0 0 70 3.1 4 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +482400.0 -19.4 -21.7 83 101300 0 0 173 0 0 0 0 0 0 0 180 3.1 2 1 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +486000.0 -18.3 -20.6 83 101200 0 0 201 0 0 0 0 0 0 0 250 2.1 10 10 0.2 60 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +489600.0 -18.9 -21.1 83 101200 0 0 189 0 0 0 0 0 0 0 70 2.1 8 8 0.8 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +493200.0 -19.4 -21.7 83 101200 0 0 191 0 0 0 0 0 0 0 160 2.6 9 9 0.8 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +496800.0 -19.4 -21.7 83 101100 0 0 187 0 0 0 0 0 0 0 160 2.6 8 8 0.8 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +500400.0 -20.6 -22.8 83 101100 0 0 173 0 0 0 0 0 0 0 230 1.5 3 3 1.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +504000.0 -21.1 -24.4 75 101100 0 0 171 0 0 0 0 0 0 0 230 2.1 3 3 0.6 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +507600.0 -21.1 -23.9 79 101100 0 0 170 0 0 0 0 0 0 0 240 1.5 2 2 0.6 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +511200.0 -20.6 -22.8 83 101100 0 0 173 0 0 0 0 0 0 0 140 2.1 3 3 0.6 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +514800.0 -20.0 -22.8 79 101100 0 0 171 0 0 0 0 0 0 0 250 1.5 6 1 1.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +518400.0 -21.1 -23.9 79 101100 0 0 164 0 0 0 0 0 0 0 270 1.5 6 0 4.8 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +522000.0 -20.0 -22.8 79 101100 0 0 168 0 0 0 0 0 0 0 0 0.0 0 0 4.8 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +525600.0 -19.4 -22.2 79 101200 0 0 170 0 0 0 0 0 0 0 0 0.0 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +529200.0 -21.1 -23.9 79 101200 0 0 164 0 0 0 0 0 0 0 0 0.0 0 0 4.8 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +532800.0 -20.0 -22.8 79 101100 0 0 168 0 0 0 0 0 0 0 0 0.0 0 0 4.8 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +536400.0 -19.4 -22.2 79 101100 0 0 170 0 0 0 0 0 0 0 60 2.1 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +540000.0 -22.2 -25.0 78 101200 0 0 164 0 0 0 0 0 0 0 100 1.5 4 1 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +543600.0 -21.7 -23.3 87 101200 0 0 171 0 0 0 0 0 0 0 100 1.5 6 4 11.3 3050 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +547200.0 -20.0 -22.2 83 101100 0 0 180 0 0 0 0 0 0 0 60 2.1 10 6 11.3 3050 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +550800.0 -19.4 -22.2 79 101100 0 0 181 0 0 0 0 0 0 0 60 2.1 10 6 11.3 6100 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +554400.0 -18.9 -21.1 83 101200 0 0 184 0 0 0 0 0 0 0 70 2.1 10 6 11.3 6100 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +558000.0 -17.2 -19.4 83 101200 0 0 192 0 0 0 0 0 0 0 60 2.6 10 7 11.3 6100 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +561600.0 -17.8 -20.0 83 101300 0 0 186 0 0 0 0 0 0 0 90 2.1 10 5 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +565200.0 -18.3 -21.1 79 101300 0 0 182 0 0 0 0 0 0 0 60 2.1 10 4 11.3 3050 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +568800.0 -18.9 -21.1 83 101300 0 0 175 0 0 0 0 0 0 0 60 2.1 10 1 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +572400.0 -19.4 -22.2 79 101300 0 0 173 0 0 0 0 0 0 0 60 2.1 8 1 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +576000.0 -20.6 -23.3 79 101300 0 0 169 0 0 0 0 0 0 0 60 2.6 7 1 8.0 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +579600.0 -21.1 -23.9 79 101300 0 0 167 0 0 0 0 0 0 0 50 1.5 4 1 8.0 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +583200.0 -20.0 -22.2 83 101300 0 0 174 0 0 0 0 0 0 0 60 1.5 5 2 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +586800.0 -18.9 -21.1 83 101400 0 0 178 0 0 0 0 0 0 0 60 2.1 5 2 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +590400.0 -18.9 -21.7 79 101400 0 0 171 0 0 0 0 0 0 0 60 1.5 0 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +594000.0 -19.4 -21.7 83 101400 0 0 170 0 0 0 0 0 0 0 70 1.5 0 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +597600.0 -18.3 -20.6 83 101400 0 0 181 0 0 0 0 0 0 0 60 1.5 6 3 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +601200.0 -17.8 -20.0 83 101500 0 0 193 0 0 0 0 0 0 0 60 1.5 8 8 11.3 6100 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +604800.0 -17.2 -19.4 83 101500 0 0 200 0 0 0 0 0 0 0 60 1.5 9 9 11.3 6100 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +608400.0 -17.2 -18.9 87 101600 0 0 200 0 0 0 0 0 0 0 70 1.5 10 9 11.3 6100 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +612000.0 -17.2 -19.4 83 101600 0 0 190 0 0 0 0 0 0 0 60 2.1 10 6 11.3 6100 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +615600.0 -16.7 -18.9 83 101500 0 0 192 0 0 0 0 0 0 0 60 2.1 10 6 11.3 6100 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +619200.0 -17.2 -18.9 87 101600 0 0 187 0 0 0 0 0 0 0 60 2.1 6 4 11.3 6100 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +622800.0 -16.7 -18.9 83 101600 0 0 197 0 0 0 0 0 0 0 70 2.1 10 8 11.3 6100 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +626400.0 -17.8 -20.0 83 101600 0 0 182 0 0 0 0 0 0 0 60 2.1 5 2 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +630000.0 -17.8 -20.0 83 101600 0 0 176 0 0 0 0 0 0 0 60 2.1 0 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +633600.0 -18.3 -20.6 83 101600 0 0 174 0 0 0 0 0 0 0 60 2.1 0 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +637200.0 -20.0 -22.2 83 101600 0 0 168 0 0 0 0 0 0 0 60 2.1 0 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +640800.0 -18.3 -20.6 83 101700 0 0 174 0 0 0 0 0 0 0 60 2.1 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +644400.0 -19.4 -21.7 83 101700 0 0 170 0 0 0 0 0 0 0 60 2.1 1 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +648000.0 -20.6 -23.3 79 101700 0 0 166 0 0 0 0 0 0 0 60 2.1 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +651600.0 -21.1 -23.9 79 101700 0 0 167 0 0 0 0 0 0 0 60 2.1 1 1 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +655200.0 -21.1 -23.3 82 101700 0 0 170 0 0 0 0 0 0 0 70 1.5 5 2 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +658800.0 -20.0 -22.8 79 101700 0 0 175 0 0 0 0 0 0 0 60 1.5 8 3 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +662400.0 -19.4 -21.7 83 101700 0 0 184 0 0 0 0 0 0 0 60 1.5 10 7 11.3 150 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +666000.0 -20.0 -22.2 83 101700 0 0 185 0 0 0 0 0 0 0 60 1.5 10 8 11.3 150 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +669600.0 -19.4 -21.7 83 101700 0 0 184 0 0 0 0 0 0 0 60 1.5 9 7 11.3 90 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +673200.0 -20.0 -22.8 79 101700 0 0 179 0 0 0 0 0 0 0 60 1.5 6 6 11.3 90 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +676800.0 -20.6 -23.9 75 101700 0 0 165 0 0 0 0 0 0 0 60 2.1 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +680400.0 -21.1 -23.9 79 101700 0 0 164 0 0 0 0 0 0 0 50 1.5 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +684000.0 -21.1 -23.3 82 101700 0 0 164 0 0 0 0 0 0 0 60 1.5 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +687600.0 -21.1 -23.9 79 101600 0 0 164 0 0 0 0 0 0 0 50 2.1 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +691200.0 -20.0 -22.8 79 101600 0 0 168 0 0 0 0 0 0 0 70 2.6 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +694800.0 -20.0 -22.8 79 101600 0 0 168 0 0 0 0 0 0 0 60 2.1 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +698400.0 -20.0 -22.2 83 101600 0 0 168 0 0 0 0 0 0 0 60 2.1 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +702000.0 -20.0 -22.2 83 101600 0 0 171 0 0 0 0 0 0 0 50 2.1 3 1 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +705600.0 -21.1 -23.3 82 101500 0 0 164 0 0 0 0 0 0 0 60 2.1 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +709200.0 -20.0 -22.2 83 101400 0 0 168 0 0 0 0 0 0 0 60 2.1 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +712800.0 -18.9 -21.1 83 101400 0 0 172 0 0 0 0 0 0 0 60 2.1 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +716400.0 -20.0 -22.2 83 101400 0 0 168 0 0 0 0 0 0 0 50 2.1 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +720000.0 -20.0 -22.8 79 101400 0 0 168 0 0 0 0 0 0 0 50 2.1 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +723600.0 -20.6 -22.8 83 101400 0 0 166 0 0 0 0 0 0 0 60 2.1 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +727200.0 -20.6 -23.3 79 101400 0 0 166 0 0 0 0 0 0 0 50 2.1 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +730800.0 -20.6 -22.8 83 101300 0 0 166 0 0 0 0 0 0 0 50 4.6 1 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +734400.0 -21.1 -23.3 82 101300 0 0 168 0 0 0 0 0 0 0 60 5.2 2 1 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +738000.0 -21.7 -23.9 82 101300 0 0 163 0 0 0 0 0 0 0 60 5.2 1 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +741600.0 -21.7 -23.9 82 101200 0 0 163 0 0 0 0 0 0 0 60 5.7 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +745200.0 -21.7 -23.9 82 101200 0 0 163 0 0 0 0 0 0 0 60 5.7 1 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +748800.0 -22.2 -24.4 82 101200 0 0 161 0 0 0 0 0 0 0 60 5.2 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +752400.0 -22.8 -25.6 78 101200 0 0 159 0 0 0 0 0 0 0 60 5.7 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +756000.0 -23.9 -27.2 74 101100 0 0 155 0 0 0 0 0 0 0 60 4.6 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +759600.0 -22.8 -25.6 78 101100 0 0 159 0 0 0 0 0 0 0 60 4.6 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +763200.0 -22.8 -26.1 74 101100 0 0 158 0 0 0 0 0 0 0 50 5.7 1 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +766800.0 -22.8 -26.1 74 101100 0 0 158 0 0 0 0 0 0 0 40 5.2 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +770400.0 -23.3 -26.1 78 101100 0 0 157 0 0 0 0 0 0 0 60 5.2 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +774000.0 -23.9 -26.7 78 101100 0 0 155 0 0 0 0 0 0 0 50 4.6 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +777600.0 -23.3 -26.1 78 101100 0 0 157 0 0 0 0 0 0 0 50 5.2 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +781200.0 -22.8 -25.6 78 101200 0 0 159 0 0 0 0 0 0 0 60 4.6 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +784800.0 -22.8 -25.6 78 101200 0 0 159 0 0 0 0 0 0 0 50 4.6 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +788400.0 -22.8 -25.6 78 101200 0 0 159 0 0 0 0 0 0 0 60 4.6 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +792000.0 -23.3 -26.1 78 101200 0 0 157 0 0 0 0 0 0 0 60 5.2 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +795600.0 -22.8 -25.6 78 101200 0 0 159 0 0 0 0 0 0 0 60 4.6 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +799200.0 -22.8 -25.6 78 101200 0 0 159 0 0 0 0 0 0 0 60 4.6 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +802800.0 -23.3 -26.1 78 101200 0 0 157 0 0 0 0 0 0 0 60 4.6 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +806400.0 -22.8 -23.3 95 101200 0 0 160 0 0 0 0 0 0 0 50 5.2 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +810000.0 -23.9 -27.2 74 101200 0 0 155 0 0 0 0 0 0 0 60 4.1 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +813600.0 -23.9 -26.7 78 101300 0 0 155 0 0 0 0 0 0 0 50 5.2 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +817200.0 -23.9 -26.7 78 101300 0 0 155 0 0 0 0 0 0 0 50 4.1 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +820800.0 -24.4 -27.2 78 101300 0 0 153 0 0 0 0 0 0 0 60 4.6 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +824400.0 -23.9 -26.7 78 101300 0 0 155 0 0 0 0 0 0 0 60 4.6 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +828000.0 -24.4 -27.2 78 101400 0 0 153 0 0 0 0 0 0 0 60 4.6 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +831600.0 -24.4 -27.2 78 101400 0 0 153 0 0 0 0 0 0 0 50 5.2 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +835200.0 -23.9 -26.7 78 101400 0 0 155 0 0 0 0 0 0 0 50 5.2 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +838800.0 -23.9 -26.7 78 101500 0 0 155 0 0 0 0 0 0 0 60 5.2 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +842400.0 -23.9 -26.1 82 101500 0 0 155 0 0 0 0 0 0 0 60 5.7 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +846000.0 -25.6 -28.3 78 101500 0 0 150 0 0 0 0 0 0 0 70 5.2 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +849600.0 -25.6 -29.4 70 101600 0 0 149 0 0 0 0 0 0 0 70 5.2 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +853200.0 -25.6 -28.9 74 101600 0 0 149 0 0 0 0 0 0 0 70 5.2 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +856800.0 -25.0 -28.3 74 101600 0 0 151 0 0 0 0 0 0 0 60 5.2 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +860400.0 -25.0 -28.3 74 101700 0 0 151 0 0 0 0 0 0 0 70 5.2 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +864000.0 -25.6 -28.9 74 101700 0 0 149 0 0 0 0 0 0 0 60 5.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +867600.0 -26.7 -29.4 77 101700 0 0 146 0 0 0 0 0 0 0 70 5.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +871200.0 -25.6 -28.9 74 101700 0 0 149 0 0 0 0 0 0 0 70 5.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +874800.0 -26.1 -29.4 74 101800 0 0 148 0 0 0 0 0 0 0 70 5.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +878400.0 -24.4 -27.2 78 101800 0 0 153 0 0 0 0 0 0 0 70 5.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +882000.0 -24.4 -27.8 74 101800 0 0 153 0 0 0 0 0 0 0 70 5.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +885600.0 -25.6 -28.9 74 101800 0 0 149 0 0 0 0 0 0 0 70 5.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +889200.0 -25.6 -28.9 74 101800 0 0 149 0 0 0 0 0 0 0 70 5.2 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +892800.0 -26.1 -28.9 78 101800 0 0 148 0 0 0 0 0 0 0 60 5.2 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +896400.0 -26.1 -29.4 74 101800 0 0 148 0 0 0 0 0 0 0 60 5.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +900000.0 -25.0 -28.3 74 101800 0 0 151 0 0 0 0 0 0 0 60 5.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +903600.0 -26.1 -28.9 78 101900 0 0 148 0 0 0 0 0 0 0 60 5.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +907200.0 -26.1 -28.9 78 101900 0 0 148 0 0 0 0 0 0 0 60 4.6 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +910800.0 -25.0 -27.8 78 101900 0 0 152 0 0 0 0 0 0 0 60 5.2 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +914400.0 -24.4 -27.2 78 102000 0 0 153 0 0 0 0 0 0 0 70 4.6 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +918000.0 -23.9 -26.1 82 102000 0 0 155 0 0 0 0 0 0 0 60 4.6 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +921600.0 -24.4 -27.8 74 102000 0 0 153 0 0 0 0 0 0 0 60 4.6 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +925200.0 -23.3 -25.6 82 102000 0 0 157 0 0 0 0 0 0 0 80 5.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +928800.0 -22.8 -25.6 78 102000 0 0 159 0 0 0 0 0 0 0 70 4.6 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +932400.0 -23.9 -26.7 78 102000 0 0 155 0 0 0 0 0 0 0 70 4.6 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +936000.0 -23.9 -27.8 70 102000 0 0 154 0 0 0 0 0 0 0 60 5.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +939600.0 -25.0 -28.3 74 102100 0 0 151 0 0 0 0 0 0 0 70 4.6 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +943200.0 -23.3 -26.7 74 102100 0 0 157 0 0 0 0 0 0 0 60 4.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +946800.0 -22.8 -26.1 74 102100 0 0 158 0 0 0 0 0 0 0 60 5.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +950400.0 -23.3 -26.1 78 102100 0 0 157 0 0 0 0 0 0 0 60 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +954000.0 -23.3 -26.1 78 102100 0 0 157 0 0 0 0 0 0 0 60 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +957600.0 -23.9 -26.7 78 102100 0 0 155 0 0 0 0 0 0 0 60 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +961200.0 -23.3 -26.1 78 102100 0 0 157 0 0 0 0 0 0 0 60 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +964800.0 -22.8 -25.6 78 102100 0 0 159 0 0 0 0 0 0 0 60 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +968400.0 -23.9 -26.7 78 102100 0 0 155 0 0 0 0 0 0 0 60 4.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +972000.0 -23.3 -26.1 78 102100 0 0 157 0 0 0 0 0 0 0 50 5.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +975600.0 -23.3 -26.7 74 102100 0 0 157 0 0 0 0 0 0 0 60 4.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +979200.0 -23.9 -26.7 78 102100 0 0 155 0 0 0 0 0 0 0 60 4.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +982800.0 -22.8 -25.6 78 102100 0 0 159 0 0 0 0 0 0 0 50 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +986400.0 -23.3 -26.1 78 102100 0 0 157 0 0 0 0 0 0 0 50 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +990000.0 -25.0 -27.8 78 102100 0 0 152 0 0 0 0 0 0 0 60 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +993600.0 -24.4 -27.8 74 102100 0 0 153 0 0 0 0 0 0 0 60 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +997200.0 -23.3 -26.1 78 102000 0 0 157 0 0 0 0 0 0 0 60 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1000800.0 -23.3 -26.1 78 102000 0 0 157 0 0 0 0 0 0 0 50 4.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1004400.0 -23.9 -26.7 78 102000 0 0 155 0 0 0 0 0 0 0 50 4.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1008000.0 -24.4 -27.2 78 102000 0 0 153 0 0 0 0 0 0 0 50 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1011600.0 -24.4 -27.2 78 101900 0 0 153 0 0 0 0 0 0 0 60 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1015200.0 -25.6 -28.3 78 101900 0 0 150 0 0 0 0 0 0 0 40 4.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1018800.0 -25.6 -28.3 78 101900 0 0 150 0 0 0 0 0 0 0 50 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1022400.0 -26.1 -30.0 70 101900 0 0 147 0 0 0 0 0 0 0 50 4.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1026000.0 -26.1 -28.9 78 101800 0 0 148 0 0 0 0 0 0 0 50 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1029600.0 -25.0 -27.8 78 101700 0 0 152 0 0 0 0 0 0 0 50 6.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1033200.0 -24.4 -27.2 78 101700 0 0 153 0 0 0 0 0 0 0 50 5.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1036800.0 -24.4 -27.2 78 101700 0 0 153 0 0 0 0 0 0 0 60 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1040400.0 -24.4 -27.2 78 101600 0 0 153 0 0 0 0 0 0 0 50 6.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1044000.0 -23.9 -27.2 74 101600 0 0 155 0 0 0 0 0 0 0 50 6.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1047600.0 -23.9 -26.7 78 101500 0 0 155 0 0 0 0 0 0 0 40 6.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1051200.0 -23.9 -27.2 74 101500 0 0 155 0 0 0 0 0 0 0 60 6.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1054800.0 -23.9 -26.7 78 101500 0 0 155 0 0 0 0 0 0 0 50 5.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1058400.0 -23.9 -26.7 78 101400 0 0 155 0 0 0 0 0 0 0 50 6.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1062000.0 -23.3 -26.7 74 101400 0 0 157 0 0 0 0 0 0 0 50 7.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1065600.0 -23.3 -26.1 78 101300 0 0 157 0 0 0 0 0 0 0 50 6.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1069200.0 -23.9 -26.7 78 101300 0 0 155 0 0 0 0 0 0 0 60 6.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1072800.0 -23.3 -26.1 78 101300 0 0 157 0 0 0 0 0 0 0 50 6.7 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1076400.0 -23.3 -26.1 78 101200 0 0 157 0 0 0 0 0 0 0 50 7.2 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1080000.0 -23.3 -26.1 78 101200 0 0 157 0 0 0 0 0 0 0 50 7.2 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1083600.0 -23.3 -26.1 78 101200 0 0 157 0 0 0 0 0 0 0 50 6.7 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1087200.0 -22.8 -25.6 78 101100 0 0 159 0 0 0 0 0 0 0 50 7.7 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1090800.0 -22.8 -25.0 82 101100 0 0 159 0 0 0 0 0 0 0 40 8.2 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1094400.0 -22.8 -25.6 78 101000 0 0 159 0 0 0 0 0 0 0 50 7.7 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1098000.0 -22.8 -25.6 78 101000 0 0 159 0 0 0 0 0 0 0 50 8.2 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1101600.0 -22.8 -25.6 78 100900 0 0 159 0 0 0 0 0 0 0 50 8.8 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1105200.0 -22.8 -25.6 78 100900 0 0 159 0 0 0 0 0 0 0 50 8.8 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1108800.0 -22.8 -26.1 74 100900 0 0 158 0 0 0 0 0 0 0 60 8.2 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1112400.0 -22.8 -25.6 78 100800 0 0 159 0 0 0 0 0 0 0 60 9.3 0 0 9.7 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1116000.0 -22.8 -25.6 78 100800 0 0 159 0 0 0 0 0 0 0 50 8.2 0 0 9.7 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1119600.0 -23.3 -26.1 78 100800 0 0 157 0 0 0 0 0 0 0 50 6.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1123200.0 -22.8 -25.6 78 100800 0 0 159 0 0 0 0 0 0 0 60 8.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1126800.0 -22.2 -25.0 78 100800 0 0 160 0 0 0 0 0 0 0 60 8.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1130400.0 -22.2 -25.0 78 100700 0 0 160 0 0 0 0 0 0 0 50 7.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1134000.0 -21.7 -24.4 78 100700 0 0 162 0 0 0 0 0 0 0 50 7.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1137600.0 -21.7 -24.4 78 100700 0 0 162 0 0 0 0 0 0 0 50 7.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1141200.0 -22.2 -25.0 78 100700 0 0 160 0 0 0 0 0 0 0 50 8.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1144800.0 -22.2 -25.0 78 100700 0 0 160 0 0 0 0 0 0 0 50 8.8 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1148400.0 -21.1 -23.9 79 100600 0 0 164 0 0 0 0 0 0 0 60 9.3 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1152000.0 -20.6 -23.9 75 100600 0 0 165 0 0 0 0 0 0 0 60 9.8 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1155600.0 -20.6 -23.9 75 100600 0 0 165 0 0 0 0 0 0 0 60 8.8 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1159200.0 -20.6 -23.9 75 100600 0 0 165 0 0 0 0 0 0 0 60 8.8 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1162800.0 -20.6 -23.9 75 100600 0 0 165 0 0 0 0 0 0 0 60 10.3 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1166400.0 -20.6 -23.9 75 100600 0 0 165 0 0 0 0 0 0 0 60 9.3 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1170000.0 -20.6 -23.9 75 100600 0 0 165 0 0 0 0 0 0 0 60 9.8 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1173600.0 -20.6 -23.9 75 100600 0 0 165 0 0 0 0 0 0 0 50 9.3 0 0 9.7 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1177200.0 -20.6 -23.3 79 100600 0 0 166 0 0 0 0 0 0 0 60 10.8 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1180800.0 -20.6 -23.3 79 100600 0 0 166 0 0 0 0 0 0 0 60 10.8 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1184400.0 -20.6 -23.9 75 100600 0 0 165 0 0 0 0 0 0 0 60 9.3 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1188000.0 -20.6 -23.3 79 100600 0 0 166 0 0 0 0 0 0 0 50 9.3 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1191600.0 -20.6 -23.3 79 100600 0 0 166 0 0 0 0 0 0 0 60 9.3 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1195200.0 -21.1 -23.9 79 100600 0 0 164 0 0 0 0 0 0 0 60 8.8 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1198800.0 -21.1 -23.9 79 100600 0 0 164 0 0 0 0 0 0 0 60 8.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1202400.0 -21.7 -23.9 82 100600 0 0 163 0 0 0 0 0 0 0 50 8.8 0 0 4.8 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1206000.0 -21.7 -24.4 78 100600 0 0 162 0 0 0 0 0 0 0 50 8.2 0 0 4.8 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1209600.0 -22.2 -24.4 82 100600 0 0 164 0 0 0 0 0 0 0 50 9.3 1 1 1.6 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1213200.0 -22.8 -25.6 78 100700 0 0 162 0 0 0 0 0 0 0 60 8.2 1 1 1.6 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1216800.0 -22.8 -25.6 78 100700 0 0 162 0 0 0 0 0 0 0 50 8.2 1 1 1.6 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1220400.0 -23.3 -25.6 82 100700 0 0 160 0 0 0 0 0 0 0 50 7.7 1 1 1.6 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1224000.0 -22.8 -25.6 78 100700 0 0 159 0 0 0 0 0 0 0 50 8.2 0 0 2.4 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1227600.0 -23.3 -26.1 78 100700 0 0 157 0 0 0 0 0 0 0 50 6.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1231200.0 -23.3 -26.1 78 100700 0 0 157 0 0 0 0 0 0 0 50 7.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1234800.0 -23.9 -26.7 78 100800 0 0 155 0 0 0 0 0 0 0 60 6.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1238400.0 -23.3 -26.1 78 100800 0 0 157 0 0 0 0 0 0 0 60 7.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1242000.0 -23.9 -26.1 82 100800 0 0 155 0 0 0 0 0 0 0 60 6.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1245600.0 -23.3 -26.1 78 100800 0 0 157 0 0 0 0 0 0 0 60 7.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1249200.0 -23.3 -26.1 78 100800 0 0 157 0 0 0 0 0 0 0 60 7.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1252800.0 -23.3 -26.1 78 100900 0 0 157 0 0 0 0 0 0 0 50 6.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1256400.0 -23.9 -26.7 78 100900 0 0 155 0 0 0 0 0 0 0 50 6.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1260000.0 -24.4 -27.2 78 100900 0 0 153 0 0 0 0 0 0 0 50 6.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1263600.0 -24.4 -27.8 74 100900 0 0 153 0 0 0 0 0 0 0 50 6.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1267200.0 -25.0 -27.8 78 100900 0 0 152 0 0 0 0 0 0 0 50 6.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1270800.0 -25.6 -28.3 78 100800 0 0 150 0 0 0 0 0 0 0 50 5.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1274400.0 -25.0 -28.3 74 100800 0 0 151 0 0 0 0 0 0 0 50 5.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1278000.0 -25.6 -28.3 78 100800 0 0 150 0 0 0 0 0 0 0 50 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1281600.0 -25.6 -28.3 78 100800 0 0 150 0 0 0 0 0 0 0 50 5.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1285200.0 -25.6 -28.3 78 100800 0 0 150 0 0 0 0 0 0 0 60 5.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1288800.0 -25.6 -28.9 74 100800 0 0 149 0 0 0 0 0 0 0 50 6.2 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1292400.0 -25.6 -28.9 74 100800 0 0 149 0 0 0 0 0 0 0 50 5.7 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1296000.0 -25.0 -27.8 78 100900 0 0 152 0 0 0 0 0 0 0 50 6.2 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1299600.0 -25.6 -28.3 78 100900 0 0 150 0 0 0 0 0 0 0 50 5.7 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1303200.0 -25.0 -27.8 78 100900 0 0 152 0 0 0 0 0 0 0 50 6.2 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1306800.0 -25.6 -28.9 74 100900 0 0 149 0 0 0 0 0 0 0 50 6.2 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1310400.0 -26.1 -29.4 74 100900 0 0 148 0 0 0 0 0 0 0 50 6.2 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1314000.0 -26.1 -28.9 78 100800 0 0 148 0 0 0 0 0 0 0 50 6.2 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1317600.0 -25.6 -28.9 74 100800 0 0 149 0 0 0 0 0 0 0 50 6.2 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1321200.0 -25.6 -28.3 78 100800 0 0 150 0 0 0 0 0 0 0 50 6.2 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1324800.0 -25.6 -28.9 74 100800 0 0 149 0 0 0 0 0 0 0 50 6.2 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1328400.0 -26.1 -28.9 78 100800 0 0 148 0 0 0 0 0 0 0 50 6.2 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1332000.0 -26.1 -29.4 74 100800 0 0 148 0 0 0 0 0 0 0 60 6.7 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1335600.0 -25.6 -28.9 74 100900 0 0 149 0 0 0 0 0 0 0 60 6.2 0 0 4.8 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1339200.0 -26.1 -29.4 74 100900 0 0 148 0 0 0 0 0 0 0 50 5.7 0 0 8.0 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1342800.0 -26.7 -30.0 74 100900 0 0 146 0 0 0 0 0 0 0 50 5.7 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1346400.0 -27.2 -30.6 73 100900 0 0 144 0 0 0 0 0 0 0 40 5.7 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1350000.0 -27.8 -30.6 77 100900 0 0 143 0 0 0 0 0 0 0 50 5.7 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1353600.0 -26.7 -29.4 77 100900 0 0 146 0 0 0 0 0 0 0 50 6.2 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1357200.0 -26.1 -29.4 74 100900 0 0 148 0 0 0 0 0 0 0 60 6.2 0 0 1.6 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1360800.0 -26.7 -30.0 74 100900 0 0 146 0 0 0 0 0 0 0 60 6.2 0 0 4.8 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1364400.0 -27.2 -30.6 73 100900 0 0 144 0 0 0 0 0 0 0 60 6.2 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1368000.0 -27.8 -30.6 77 101000 0 0 143 0 0 0 0 0 0 0 50 6.2 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1371600.0 -27.2 -30.6 73 101000 0 0 144 0 0 0 0 0 0 0 50 6.2 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1375200.0 -27.2 -30.6 73 101000 0 0 144 0 0 0 0 0 0 0 50 7.2 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1378800.0 -27.2 -30.6 73 101000 0 0 144 0 0 0 0 0 0 0 60 6.7 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1382400.0 -27.2 -30.6 73 101000 0 0 144 0 0 0 0 0 0 0 50 6.2 0 0 4.8 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1386000.0 -27.8 -30.6 77 101100 0 0 143 0 0 0 0 0 0 0 50 6.2 0 0 4.8 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1389600.0 -27.8 -31.1 73 101100 0 0 143 0 0 0 0 0 0 0 50 6.2 0 0 6.4 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1393200.0 -27.2 -30.6 73 101100 0 0 144 0 0 0 0 0 0 0 60 6.2 0 0 6.4 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1396800.0 -27.8 -31.1 73 101100 0 0 143 0 0 0 0 0 0 0 60 6.2 0 0 6.4 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1400400.0 -27.8 -30.6 77 101100 0 0 143 0 0 0 0 0 0 0 60 6.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1404000.0 -27.8 -30.6 77 101200 0 0 143 0 0 0 0 0 0 0 70 6.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1407600.0 -28.3 -31.1 77 101200 0 0 142 0 0 0 0 0 0 0 60 6.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1411200.0 -27.2 -30.6 73 101200 0 0 144 0 0 0 0 0 0 0 60 6.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1414800.0 -27.2 -30.6 73 101200 0 0 144 0 0 0 0 0 0 0 60 7.2 0 0 4.8 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1418400.0 -27.2 -30.6 73 101200 0 0 144 0 0 0 0 0 0 0 60 6.7 0 0 4.8 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1422000.0 -27.2 -30.6 73 101200 0 0 144 0 0 0 0 0 0 0 60 6.2 0 0 6.4 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1425600.0 -27.8 -31.1 73 101300 0 0 143 0 0 0 0 0 0 0 70 6.2 0 0 6.4 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1429200.0 -28.3 -31.7 73 101300 0 0 141 0 0 0 0 0 0 0 70 6.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1432800.0 -28.3 -31.7 73 101200 0 0 141 0 0 0 0 0 0 0 60 6.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1436400.0 -26.7 -29.4 77 101200 0 0 146 0 0 0 0 0 0 0 70 8.2 0 0 4.8 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1440000.0 -26.1 -29.4 74 101200 0 0 148 0 0 0 0 0 0 0 70 7.7 0 0 4.8 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1443600.0 -26.1 -29.4 74 101200 0 0 148 0 0 0 0 0 0 0 80 7.7 0 0 8.0 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1447200.0 -26.1 -29.4 74 101200 0 0 148 0 0 0 0 0 0 0 70 6.7 0 0 8.0 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1450800.0 -26.1 -29.4 74 101200 0 0 148 0 0 0 0 0 0 0 70 7.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1454400.0 -26.1 -29.4 74 101200 0 0 148 0 0 0 0 0 0 0 70 7.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1458000.0 -25.6 -28.9 74 101200 0 0 149 0 0 0 0 0 0 0 70 8.2 0 0 9.7 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1461600.0 -26.1 -28.9 78 101200 0 0 148 0 0 0 0 0 0 0 70 8.2 0 0 9.7 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1465200.0 -26.1 -28.9 78 101200 0 0 148 0 0 0 0 0 0 0 70 8.2 0 0 9.7 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1468800.0 -26.1 -29.4 74 101200 0 0 148 0 0 0 0 0 0 0 70 7.2 0 0 9.7 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1472400.0 -26.1 -29.4 74 101200 0 0 148 0 0 0 0 0 0 0 70 7.2 0 0 9.7 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1476000.0 -26.7 -29.4 77 101200 0 0 146 0 0 0 0 0 0 0 80 7.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1479600.0 -26.7 -29.4 77 101200 0 0 146 0 0 0 0 0 0 0 70 7.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1483200.0 -27.2 -30.0 77 101200 0 0 145 0 0 0 0 0 0 0 70 7.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1486800.0 -27.2 -30.6 73 101200 0 0 144 0 0 0 0 0 0 0 80 7.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1490400.0 -27.8 -30.6 77 101100 0 0 143 0 0 0 0 0 0 0 80 6.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1494000.0 -27.8 -31.1 73 101100 0 0 143 0 0 0 0 0 0 0 80 7.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1497600.0 -28.3 -31.1 77 101100 0 0 142 0 0 0 0 0 0 0 80 6.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1501200.0 -27.8 -31.1 73 101100 0 0 143 0 0 0 0 0 0 0 80 7.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1504800.0 -27.8 -31.1 73 101100 0 0 143 0 0 0 0 0 0 0 80 7.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1508400.0 -27.8 -31.1 73 101100 0 0 143 0 0 0 0 0 0 0 70 8.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1512000.0 -27.2 -30.6 73 101100 0 0 144 0 0 0 0 0 0 0 80 8.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1515600.0 -27.2 -30.6 73 101100 0 0 144 0 0 0 0 0 0 0 90 7.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1519200.0 -26.7 -30.0 74 101100 0 0 146 0 0 0 0 0 0 0 80 8.8 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1522800.0 -26.1 -29.4 74 101000 0 0 148 0 0 0 0 0 0 0 90 8.8 0 0 4.8 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1526400.0 -26.1 -29.4 74 101000 0 0 148 0 0 0 0 0 0 0 80 7.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1530000.0 -26.1 -28.9 78 101000 0 0 148 0 0 0 0 0 0 0 90 7.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1533600.0 -25.6 -28.3 78 101000 0 0 150 0 0 0 0 0 0 0 80 7.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1537200.0 -25.0 -27.8 78 101000 0 0 152 0 0 0 0 0 0 0 70 7.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1540800.0 -24.4 -27.8 74 101000 0 0 153 0 0 0 0 0 0 0 70 7.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1544400.0 -24.4 -27.8 74 101000 0 0 153 0 0 0 0 0 0 0 70 7.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1548000.0 -24.4 -27.8 74 101000 0 0 153 0 0 0 0 0 0 0 80 7.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1551600.0 -24.4 -27.8 74 100900 0 0 153 0 0 0 0 0 0 0 70 7.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1555200.0 -24.4 -27.2 78 100800 0 0 153 0 0 0 0 0 0 0 70 8.8 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1558800.0 -24.4 -27.2 78 100800 0 0 153 0 0 0 0 0 0 0 70 7.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1562400.0 -25.0 -27.8 78 100700 0 0 152 0 0 0 0 0 0 0 70 7.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1566000.0 -25.0 -28.3 74 100700 0 0 151 0 0 0 0 0 0 0 70 7.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1569600.0 -25.6 -28.9 74 100700 0 0 149 0 0 0 0 0 0 0 70 7.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1573200.0 -25.6 -28.9 74 100600 0 0 149 0 0 0 0 0 0 0 60 8.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1576800.0 -25.6 -28.9 74 100500 0 0 149 0 0 0 0 0 0 0 60 7.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1580400.0 -26.1 -28.9 78 100500 0 0 148 0 0 0 0 0 0 0 70 7.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1584000.0 -26.7 -29.4 77 100500 0 0 146 0 0 0 0 0 0 0 60 6.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1587600.0 -27.2 -30.6 73 100400 0 0 144 0 0 0 0 0 0 0 60 6.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1591200.0 -27.2 -30.6 73 100400 0 0 144 0 0 0 0 0 0 0 60 6.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1594800.0 -25.6 -28.9 74 100300 0 0 149 0 0 0 0 0 0 0 70 7.7 3 0 3.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1598400.0 -25.6 -28.3 78 100300 0 0 153 0 0 0 0 0 0 0 80 7.7 4 1 3.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1602000.0 -25.6 -28.3 78 100300 0 0 153 0 0 0 0 0 0 0 70 8.8 3 1 3.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1605600.0 -25.6 -28.9 74 100300 0 0 152 0 0 0 0 0 0 0 80 8.8 3 1 4.8 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1609200.0 -25.6 -28.9 74 100300 0 0 152 0 0 0 0 0 0 0 80 7.2 4 1 8.0 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1612800.0 -25.0 -28.3 74 100200 0 0 154 0 0 0 0 0 0 0 80 8.8 3 1 8.0 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1616400.0 -25.0 -28.3 74 100200 0 0 154 0 0 0 0 0 0 0 80 8.2 3 1 8.0 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1620000.0 -25.0 -28.3 74 100200 0 0 154 0 0 0 0 0 0 0 80 8.2 3 1 8.0 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1623600.0 -25.0 -27.8 78 100200 0 0 154 0 0 0 0 0 0 0 70 7.2 3 1 4.8 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1627200.0 -25.0 -27.8 78 100100 0 0 154 0 0 0 0 0 0 0 80 7.7 3 1 8.0 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1630800.0 -25.0 -28.3 74 100200 0 0 151 0 0 0 0 0 0 0 80 8.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1634400.0 -25.6 -28.3 78 100200 0 0 150 0 0 0 0 0 0 0 80 6.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1638000.0 -25.6 -28.9 74 100200 0 0 152 0 0 0 0 0 0 0 80 5.2 3 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1641600.0 -26.1 -28.9 78 100300 0 0 153 0 0 0 0 0 0 0 80 5.2 5 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1645200.0 -27.2 -30.0 77 100300 0 0 148 0 0 0 0 0 0 0 70 4.6 3 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1648800.0 -27.2 -30.0 77 100300 0 0 150 0 0 0 0 0 0 0 80 5.2 4 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1652400.0 -27.8 -31.1 73 100300 0 0 145 0 0 0 0 0 0 0 90 5.2 3 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1656000.0 -29.4 -32.8 73 100300 0 0 138 0 0 0 0 0 0 0 70 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1659600.0 -30.0 -33.3 73 100300 0 0 136 0 0 0 0 0 0 0 70 4.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1663200.0 -30.0 -33.3 73 100300 0 0 136 0 0 0 0 0 0 0 90 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1666800.0 -30.6 -33.9 73 100300 0 0 135 0 0 0 0 0 0 0 70 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1670400.0 -31.1 -34.4 72 100300 0 0 133 0 0 0 0 0 0 0 70 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1674000.0 -31.1 -35.0 69 100400 0 0 133 0 0 0 0 0 0 0 80 4.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1677600.0 -31.7 -36.1 65 100400 0 0 131 0 0 0 0 0 0 0 100 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1681200.0 -33.3 -37.2 68 100500 0 0 127 0 0 0 0 0 0 0 120 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1684800.0 -34.4 -38.3 68 100600 0 0 124 0 0 0 0 0 0 0 130 4.1 2 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1688400.0 -33.9 -37.8 68 100600 0 0 125 0 0 0 0 0 0 0 100 4.6 2 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1692000.0 -34.4 -38.9 64 100700 0 0 123 0 0 0 0 0 0 0 120 3.1 1 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1695600.0 -33.9 -37.8 68 100700 0 0 127 0 0 0 0 0 0 0 110 2.6 3 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1699200.0 -34.4 -38.3 68 100600 0 0 126 0 0 0 0 0 0 0 110 3.1 3 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1702800.0 -35.0 -38.9 67 100700 0 0 122 0 0 0 0 0 0 0 110 3.6 2 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1706400.0 -34.4 -38.3 68 100700 0 0 124 0 0 0 0 0 0 0 120 3.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1710000.0 -35.0 -38.9 67 100700 0 0 122 0 0 0 0 0 0 0 120 2.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1713600.0 -34.4 -38.9 64 100700 0 0 123 0 0 0 0 0 0 0 100 3.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1717200.0 -34.4 -38.3 68 100700 0 0 124 0 0 0 0 0 0 0 110 3.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1720800.0 -34.4 -38.3 68 100700 0 0 124 0 0 0 0 0 0 0 100 3.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1724400.0 -33.9 -37.8 68 100700 0 0 125 0 0 0 0 0 0 0 120 3.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1728000.0 -33.9 -37.2 72 100700 0 0 125 0 0 0 0 0 0 0 120 3.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1731600.0 -33.9 -37.8 68 100700 0 0 125 0 0 0 0 0 0 0 90 3.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1735200.0 -33.9 -37.8 68 100700 0 0 125 0 0 0 0 0 0 0 90 2.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1738800.0 -33.3 -37.8 64 100600 0 0 126 0 0 0 0 0 0 0 80 2.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1742400.0 -33.3 -37.2 68 100600 0 0 127 0 0 0 0 0 0 0 70 2.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1746000.0 -32.8 -36.1 72 100500 0 0 128 0 0 0 0 0 0 0 60 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1749600.0 -31.7 -35.0 72 100500 0 0 131 0 0 0 0 0 0 0 70 3.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1753200.0 -31.1 -34.4 72 100400 0 0 133 0 0 0 0 0 0 0 60 2.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1756800.0 -30.6 -34.4 69 100400 0 0 134 0 0 0 0 0 0 0 60 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1760400.0 -31.1 -34.4 72 100400 0 0 133 0 0 0 0 0 0 0 70 4.1 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1764000.0 -28.9 -32.8 69 100300 0 0 142 0 0 0 0 0 0 0 60 4.1 2 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1767600.0 -28.9 -32.2 73 100300 0 0 142 0 0 0 0 0 0 0 60 4.1 4 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1771200.0 -26.7 -30.0 74 100200 0 0 149 0 0 0 0 0 0 0 60 5.7 5 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1774800.0 -25.6 -28.3 78 100200 0 0 153 0 0 0 0 0 0 0 60 5.7 6 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1778400.0 -25.6 -28.3 78 100100 0 0 153 0 0 0 0 0 0 0 60 5.2 4 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1782000.0 -25.0 -28.3 74 100000 0 0 154 0 0 0 0 0 0 0 50 6.2 3 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1785600.0 -25.6 -28.9 74 99900 0 0 152 0 0 0 0 0 0 0 50 5.7 3 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1789200.0 -25.0 -27.8 78 99900 0 0 157 0 0 0 0 0 0 0 50 4.6 5 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1792800.0 -24.4 -27.2 78 99900 0 0 159 0 0 0 0 0 0 0 50 5.2 5 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1796400.0 -23.3 -26.1 78 99800 0 0 162 0 0 0 0 0 0 0 40 6.2 5 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1800000.0 -22.8 -25.6 78 99800 0 0 164 0 0 0 0 0 0 0 40 5.2 5 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1803600.0 -22.8 -25.6 78 99700 0 0 164 0 0 0 0 0 0 0 30 4.6 5 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1807200.0 -22.8 -25.6 78 99700 0 0 164 0 0 0 0 0 0 0 20 5.2 5 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1810800.0 -23.3 -26.1 78 99700 0 0 160 0 0 0 0 0 0 0 30 5.2 3 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1814400.0 -23.9 -26.7 78 99800 0 0 158 0 0 0 0 0 0 0 40 5.2 3 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1818000.0 -23.3 -26.1 78 99800 0 0 160 0 0 0 0 0 0 0 30 5.2 3 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1821600.0 -23.3 -26.1 78 99800 0 0 160 0 0 0 0 0 0 0 30 5.7 3 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1825200.0 -23.3 -26.1 78 99900 0 0 157 0 0 0 0 0 0 0 30 5.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1828800.0 -23.3 -26.1 78 99900 0 0 157 0 0 0 0 0 0 0 40 5.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1832400.0 -23.9 -26.7 78 99900 0 0 155 0 0 0 0 0 0 0 40 6.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1836000.0 -23.3 -26.1 78 99900 0 0 157 0 0 0 0 0 0 0 30 5.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1839600.0 -23.3 -26.1 78 99900 0 0 157 0 0 0 0 0 0 0 40 4.1 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1843200.0 -23.3 -26.1 78 100000 0 0 157 0 0 0 0 0 0 0 30 4.6 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1846800.0 -23.3 -26.7 74 100100 0 0 160 0 0 0 0 0 0 0 30 4.6 3 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1850400.0 -23.3 -26.1 78 100100 0 0 162 0 0 0 0 0 0 0 50 5.7 5 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1854000.0 -23.3 -26.1 78 100200 0 0 166 0 0 0 0 0 0 0 50 4.1 10 5 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1857600.0 -22.8 -25.6 78 100300 0 0 169 0 0 0 0 0 0 0 40 4.6 10 6 11.3 6100 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1861200.0 -22.8 -25.6 78 100400 0 0 167 0 0 0 0 0 0 0 30 5.2 8 4 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1864800.0 -23.9 -26.7 78 100500 0 0 158 0 0 0 0 0 0 0 50 4.1 8 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1868400.0 -23.9 -26.7 78 100500 0 0 164 0 0 0 0 0 0 0 40 4.1 10 5 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1872000.0 -23.3 -26.1 78 100500 0 0 162 0 0 0 0 0 0 0 40 4.1 5 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1875600.0 -23.3 -26.1 78 100700 0 0 164 0 0 0 0 0 0 0 40 4.6 5 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1879200.0 -23.9 -26.7 78 100700 0 0 162 0 0 0 0 0 0 0 40 4.6 5 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1882800.0 -23.3 -26.1 78 100800 0 0 164 0 0 0 0 0 0 0 40 3.6 5 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1886400.0 -23.9 -26.7 78 100900 0 0 162 0 0 0 0 0 0 0 40 3.6 5 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1890000.0 -23.9 -26.1 82 101000 0 0 162 0 0 0 0 0 0 0 40 2.6 5 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1893600.0 -23.9 -26.7 78 101100 0 0 163 0 0 0 0 0 0 0 40 3.6 6 4 11.3 4570 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1897200.0 -22.8 -25.6 78 101200 0 0 167 0 0 0 0 0 0 0 30 2.6 6 4 11.3 4570 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1900800.0 -22.8 -25.0 82 101200 0 0 183 0 0 0 0 0 0 0 40 2.6 10 10 11.3 490 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1904400.0 -23.3 -26.1 78 101300 0 0 170 0 0 0 0 0 0 0 50 2.6 7 7 11.3 790 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1908000.0 -22.8 -25.0 82 101400 0 0 183 0 0 0 0 0 0 0 40 2.6 10 10 11.3 790 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1911600.0 -22.2 -25.0 78 101400 0 0 167 0 0 0 0 0 0 0 50 3.1 6 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1915200.0 -22.2 -24.4 82 101500 0 0 168 0 0 0 0 0 0 0 50 3.1 7 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1918800.0 -22.2 -24.4 82 101500 0 0 168 0 0 0 0 0 0 0 20 2.6 5 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1922400.0 -22.8 -25.0 82 101600 0 0 168 0 0 0 0 0 0 0 50 2.6 5 5 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1926000.0 -22.2 -25.0 78 101700 0 0 176 0 0 0 0 0 0 0 50 2.6 8 8 11.3 790 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1929600.0 -21.7 -23.9 82 101800 0 0 188 0 0 0 0 0 0 0 60 3.1 10 10 11.3 790 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1933200.0 -21.1 -23.3 82 101900 0 0 190 0 0 0 0 0 0 0 40 2.6 10 10 11.3 790 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1936800.0 -20.6 -23.3 79 102000 0 0 191 0 0 0 0 0 0 0 30 2.6 10 10 11.3 340 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1940400.0 -20.0 -22.2 83 102100 0 0 189 0 0 0 0 0 0 0 360 3.1 10 9 11.3 980 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1944000.0 -20.0 -22.8 79 102100 0 0 188 0 0 0 0 0 0 0 360 3.1 10 9 11.3 980 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1947600.0 -20.0 -22.2 83 102200 0 0 194 0 0 0 0 0 0 0 360 3.1 10 10 11.3 980 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1951200.0 -20.0 -22.2 83 102300 0 0 194 0 0 0 0 0 0 0 360 3.6 10 10 11.3 980 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1954800.0 -21.1 -23.3 82 102400 0 0 172 0 0 0 0 0 0 0 350 3.1 3 3 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1958400.0 -22.2 -25.0 78 102500 0 0 160 0 0 0 0 0 0 0 330 4.1 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1962000.0 -22.8 -25.6 78 102600 0 0 159 0 0 0 0 0 0 0 330 4.1 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1965600.0 -23.9 -26.7 78 102600 0 0 155 0 0 0 0 0 0 0 330 4.6 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1969200.0 -25.0 -27.8 78 102700 0 0 152 0 0 0 0 0 0 0 320 3.6 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1972800.0 -26.7 -29.4 77 102800 0 0 146 0 0 0 0 0 0 0 320 3.1 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1976400.0 -27.8 -31.1 73 102900 0 0 143 0 0 0 0 0 0 0 320 4.1 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1980000.0 -28.3 -31.7 73 103000 0 0 141 0 0 0 0 0 0 0 320 3.6 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1983600.0 -29.4 -32.8 73 103100 0 0 138 0 0 0 0 0 0 0 310 5.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1987200.0 -30.6 -33.9 73 103100 0 0 135 0 0 0 0 0 0 0 320 4.6 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1990800.0 -31.1 -34.4 72 103100 0 0 133 0 0 0 0 0 0 0 320 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1994400.0 -31.7 -35.0 72 103200 0 0 131 0 0 0 0 0 0 0 320 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1998000.0 -31.7 -35.6 68 103200 0 0 131 0 0 0 0 0 0 0 320 4.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2001600.0 -32.2 -35.6 72 103200 0 0 130 0 0 0 0 0 0 0 320 4.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2005200.0 -31.7 -35.0 72 103200 0 0 131 0 0 0 0 0 0 0 330 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2008800.0 -32.2 -36.1 68 103300 0 0 130 0 0 0 0 0 0 0 320 3.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2012400.0 -32.8 -36.1 72 103300 0 0 128 0 0 0 0 0 0 0 310 3.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2016000.0 -32.8 -36.7 68 103400 0 0 128 0 0 0 0 0 0 0 320 3.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2019600.0 -33.3 -36.7 72 103400 0 0 127 0 0 0 0 0 0 0 320 3.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2023200.0 -33.9 -37.8 68 103500 0 0 127 0 0 0 0 0 0 0 320 2.6 2 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2026800.0 -33.9 -37.8 68 103500 0 0 125 0 0 0 0 0 0 0 310 3.1 2 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2030400.0 -33.9 -37.8 68 103500 0 0 125 0 0 0 0 0 0 0 320 3.6 2 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2034000.0 -33.9 -37.8 68 103400 0 0 125 0 0 0 0 0 0 0 320 3.1 2 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2037600.0 -33.9 -37.8 68 103500 0 588 125 0 0 0 0 0 0 0 320 2.6 2 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2041200.0 -33.9 -37.8 68 103500 0 0 125 0 0 0 0 0 0 0 310 3.6 2 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2044800.0 -33.9 -37.8 68 103400 0 0 125 0 0 0 0 0 0 0 310 3.6 2 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2048400.0 -33.3 -37.2 68 103400 0 0 127 0 0 0 0 0 0 0 310 4.1 2 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2052000.0 -33.9 -37.8 68 103400 0 0 125 0 0 0 0 0 0 0 320 3.1 2 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2055600.0 -33.9 -37.8 68 103400 0 0 125 0 0 0 0 0 0 0 310 2.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2059200.0 -34.4 -38.3 68 103400 0 0 124 0 0 0 0 0 0 0 310 3.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2062800.0 -33.9 -38.3 64 103400 0 0 125 0 0 0 0 0 0 0 320 3.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2066400.0 -34.4 -38.3 68 103400 0 0 124 0 0 0 0 0 0 0 320 3.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2070000.0 -33.9 -37.8 68 103400 0 0 125 0 0 0 0 0 0 0 320 3.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2073600.0 -33.9 -37.8 68 103400 0 0 125 0 0 0 0 0 0 0 330 2.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2077200.0 -33.9 -37.8 68 103300 0 0 125 0 0 0 0 0 0 0 310 3.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2080800.0 -34.4 -38.3 68 103400 0 0 124 0 0 0 0 0 0 0 320 3.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2084400.0 -34.4 -38.3 68 103300 0 0 124 0 0 0 0 0 0 0 320 3.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2088000.0 -33.9 -37.8 68 103300 0 0 125 0 0 0 0 0 0 0 320 3.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2091600.0 -33.9 -37.8 68 103300 0 0 125 0 0 0 0 0 0 0 320 3.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2095200.0 -33.9 -37.8 68 103300 0 0 125 0 0 0 0 0 0 0 320 3.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2098800.0 -35.0 -38.9 67 103300 0 0 122 0 0 0 0 0 0 0 320 2.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2102400.0 -33.9 -37.8 68 103400 0 0 125 0 0 0 0 0 0 0 320 2.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2106000.0 -34.4 -38.3 68 103400 0 0 124 0 0 0 0 0 0 0 310 3.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2109600.0 -33.9 -38.3 64 103500 0 0 125 0 0 0 0 0 0 0 320 2.6 1 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2113200.0 -34.4 -38.3 68 103500 0 0 124 0 0 0 0 0 0 0 300 2.6 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2116800.0 -33.9 -37.8 68 103500 0 0 125 0 0 0 0 0 0 0 310 3.1 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2120400.0 -33.9 -37.8 68 103500 0 35 125 0 0 0 0 0 0 0 310 3.1 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2124000.0 -34.4 -37.8 72 103600 4 1411 124 0 0 0 0 0 0 0 310 3.6 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2127600.0 -33.9 -37.2 72 103600 1 459 125 0 0 0 0 0 0 0 310 3.1 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2131200.0 -33.9 -37.2 72 103600 0 0 125 0 0 0 0 0 0 0 300 3.6 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2134800.0 -34.4 -38.9 64 103600 0 0 123 0 0 0 0 0 0 0 300 2.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2138400.0 -34.4 -38.3 68 103600 0 0 124 0 0 0 0 0 0 0 290 2.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2142000.0 -33.3 -37.2 68 103600 0 0 127 0 0 0 0 0 0 0 0 0.0 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2145600.0 -35.0 -38.3 71 103700 0 0 122 0 0 0 0 0 0 0 0 0.0 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2149200.0 -34.4 -38.3 68 103700 0 0 124 0 0 0 0 0 0 0 250 2.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2152800.0 -33.9 -38.3 64 103700 0 0 125 0 0 0 0 0 0 0 320 1.5 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2156400.0 -33.9 -37.8 68 103800 0 0 125 0 0 0 0 0 0 0 320 2.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2160000.0 -33.9 -37.8 68 103800 0 0 125 0 0 0 0 0 0 0 320 2.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2163600.0 -35.0 -37.8 76 103800 0 0 123 0 0 0 0 0 0 0 300 2.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2167200.0 -35.0 -38.3 71 103800 0 0 122 0 0 0 0 0 0 0 0 0.0 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2170800.0 -33.9 -37.8 68 103800 0 0 125 0 0 0 0 0 0 0 350 1.5 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2174400.0 -34.4 -39.4 60 103800 0 0 123 0 0 0 0 0 0 0 0 0.0 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2178000.0 -36.7 -41.1 63 103800 0 0 117 0 0 0 0 0 0 0 0 0.0 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2181600.0 -36.1 -40.0 67 103800 0 0 119 0 0 0 0 0 0 0 0 0.0 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2185200.0 -33.9 -37.8 68 103800 0 0 125 0 0 0 0 0 0 0 0 0.0 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2188800.0 -35.0 -38.3 71 103800 0 0 122 0 0 0 0 0 0 0 0 0.0 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2192400.0 -35.0 -38.9 67 103900 0 0 122 0 0 0 0 0 0 0 110 1.5 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2196000.0 -37.8 -39.3 85 103900 0 0 116 0 0 0 0 0 0 0 130 1.5 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2199600.0 -37.2 -39.7 76 103900 0 0 117 0 0 0 0 0 0 0 150 2.1 1 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2203200.0 -38.3 -40.1 82 103900 0 0 115 0 0 0 0 0 0 0 170 2.6 1 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2206800.0 -38.9 -40.7 82 103900 1 388 113 0 0 0 0 0 0 0 160 2.1 2 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2210400.0 -40.0 -41.4 85 103900 9 1411 111 0 0 0 0 0 0 0 160 3.1 2 0 8.0 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2214000.0 -40.6 -40.9 97 103800 3 835 110 0 0 0 0 0 0 0 120 4.1 2 0 9.7 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2217600.0 -41.7 -41.7 100 103800 0 0 107 0 0 0 0 0 0 0 130 4.1 0 0 9.7 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2221200.0 -41.1 -41.4 97 103800 0 0 109 0 0 0 0 0 0 0 130 3.1 0 0 9.7 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2224800.0 -40.6 -40.7 99 103800 0 0 110 0 0 0 0 0 0 0 120 4.6 0 0 9.7 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2228400.0 -40.0 -41.1 88 103800 0 0 111 0 0 0 0 0 0 0 120 4.6 0 0 9.7 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2232000.0 -39.4 -41.5 79 103700 0 0 112 0 0 0 0 0 0 0 120 5.2 0 0 9.7 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2235600.0 -38.9 -41.3 76 103700 0 0 113 0 0 0 0 0 0 0 120 5.7 0 0 9.7 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2239200.0 -37.8 -41.1 69 103600 0 0 115 0 0 0 0 0 0 0 120 5.7 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2242800.0 -37.8 -41.0 70 103600 0 0 115 0 0 0 0 0 0 0 110 5.7 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2246400.0 -36.7 -41.1 63 103500 0 0 117 0 0 0 0 0 0 0 110 6.2 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2250000.0 -36.7 -41.1 63 103400 0 0 117 0 0 0 0 0 0 0 110 5.2 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2253600.0 -35.0 -38.9 67 103300 0 0 122 0 0 0 0 0 0 0 120 5.7 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2257200.0 -33.9 -37.8 68 103300 0 0 125 0 0 0 0 0 0 0 120 6.2 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2260800.0 -32.8 -36.7 68 103200 0 0 128 0 0 0 0 0 0 0 120 6.2 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2264400.0 -31.7 -35.0 72 103100 0 0 131 0 0 0 0 0 0 0 110 6.2 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2268000.0 -30.6 -34.4 69 103100 0 0 134 0 0 0 0 0 0 0 110 6.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2271600.0 -29.4 -32.8 73 102900 0 0 138 0 0 0 0 0 0 0 120 8.8 0 0 6.4 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2275200.0 -29.4 -32.8 73 102800 0 0 141 0 0 0 0 0 0 0 120 10.3 1 1 4.8 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2278800.0 -28.9 -32.8 69 102700 0 0 139 0 0 0 0 0 0 0 130 8.8 0 0 6.4 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2282400.0 -28.9 -32.8 69 102700 0 0 144 0 0 0 0 0 0 0 130 8.2 5 2 8.0 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2286000.0 -28.9 -32.8 69 102600 0 0 147 0 0 0 0 0 0 0 130 7.2 10 5 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2289600.0 -29.4 -33.3 69 102600 0 0 145 0 0 0 0 0 0 0 130 5.7 10 4 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2293200.0 -30.0 -33.9 69 102600 3 670 143 0 0 0 0 0 0 0 150 4.1 10 4 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2296800.0 -30.6 -34.4 69 102600 15 1411 141 2 1 2 0 0 0 0 150 2.1 10 4 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2300400.0 -30.0 -33.3 73 102600 7 1140 143 0 0 0 0 0 0 0 130 2.6 10 4 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2304000.0 -28.9 -32.2 73 102500 0 0 161 0 0 0 0 0 0 0 130 2.1 10 10 11.3 3960 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2307600.0 -27.8 -31.1 73 102400 0 0 165 0 0 0 0 0 0 0 130 2.6 10 10 11.3 3960 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2311200.0 -26.7 -29.4 77 102400 0 0 158 0 0 0 0 0 0 0 180 1.5 7 7 11.3 3960 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2314800.0 -27.8 -30.6 77 102400 0 0 155 0 0 0 0 0 0 0 180 3.1 7 7 11.3 3960 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2318400.0 -26.7 -29.4 77 102400 0 0 158 0 0 0 0 0 0 0 220 1.5 7 7 11.3 3960 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2322000.0 -25.6 -28.3 78 102400 0 0 162 0 0 0 0 0 0 0 130 2.1 7 7 11.3 3960 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2325600.0 -24.4 -27.2 78 102400 0 0 172 0 0 0 0 0 0 0 120 2.6 10 9 11.3 3960 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2329200.0 -23.9 -26.7 78 102300 0 0 179 0 0 0 0 0 0 0 140 3.6 10 10 11.3 3960 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2332800.0 -23.3 -26.1 78 102300 0 0 181 0 0 0 0 0 0 0 130 4.1 10 10 11.3 3050 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2336400.0 -25.0 -27.8 78 102300 0 0 164 0 0 0 0 0 0 0 90 4.1 7 7 11.3 2440 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2340000.0 -25.6 -28.9 74 102300 0 0 172 0 0 0 0 0 0 0 140 3.1 10 10 11.3 2440 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2343600.0 -23.9 -27.2 74 102300 0 0 174 0 0 0 0 0 0 0 180 3.1 10 9 11.3 2440 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2347200.0 -23.3 -26.7 74 102200 0 0 181 0 0 0 0 0 0 0 190 3.1 10 10 11.3 2130 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2350800.0 -23.3 -26.1 78 102200 0 0 181 0 0 0 0 0 0 0 210 2.6 10 10 11.3 2130 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2354400.0 -22.2 -25.6 75 102200 0 0 185 0 0 0 0 0 0 0 350 1.5 10 10 11.3 2130 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2358000.0 -22.2 -25.6 75 102100 0 0 185 0 0 0 0 0 0 0 140 3.1 10 10 11.3 2130 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2361600.0 -22.2 -25.0 78 102100 0 0 185 0 0 0 0 0 0 0 140 2.1 10 10 11.3 2130 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2365200.0 -21.7 -25.0 75 102100 0 0 187 0 0 0 0 0 0 0 80 2.6 10 10 11.3 2130 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2368800.0 -21.7 -25.0 75 102100 0 0 187 0 0 0 0 0 0 0 100 2.6 10 10 11.3 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2372400.0 -21.7 -24.4 78 102100 0 0 187 0 0 0 0 0 0 0 90 3.6 10 10 11.3 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2376000.0 -21.1 -23.9 79 102100 0 0 189 0 0 0 0 0 0 0 80 4.1 10 10 11.3 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2379600.0 -21.1 -23.9 79 102000 6 929 173 2 1 2 0 0 0 0 90 3.6 10 4 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2383200.0 -22.2 -25.0 78 102000 20 1410 166 2 56 2 219 2400 352 72 100 5.7 8 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2386800.0 -22.2 -25.6 75 102000 12 1399 168 2 16 1 0 0 0 0 110 5.7 8 4 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2390400.0 -22.8 -25.6 78 101900 0 0 162 0 0 0 0 0 0 0 110 4.6 6 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2394000.0 -23.3 -26.7 74 101900 0 0 160 0 0 0 0 0 0 0 110 4.6 7 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2397600.0 -23.3 -26.1 78 101900 0 0 162 0 0 0 0 0 0 0 90 5.7 7 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2401200.0 -24.4 -27.2 78 101900 0 0 153 0 0 0 0 0 0 0 90 6.7 5 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2404800.0 -25.6 -28.3 78 101900 0 0 153 0 0 0 0 0 0 0 100 6.7 5 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2408400.0 -25.6 -28.9 74 101900 0 0 149 0 0 0 0 0 0 0 110 5.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2412000.0 -26.1 -28.9 78 101900 0 0 148 0 0 0 0 0 0 0 100 6.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2415600.0 -26.7 -29.4 77 101900 0 0 146 0 0 0 0 0 0 0 100 6.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2419200.0 -27.2 -30.0 77 101900 0 0 145 0 0 0 0 0 0 0 110 5.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2422800.0 -27.8 -30.6 77 101800 0 0 143 0 0 0 0 0 0 0 100 5.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2426400.0 -27.8 -30.6 77 101800 0 0 143 0 0 0 0 0 0 0 100 5.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2430000.0 -28.9 -32.2 73 101800 0 0 139 0 0 0 0 0 0 0 90 5.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2433600.0 -29.4 -32.8 73 101800 0 0 138 0 0 0 0 0 0 0 90 5.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2437200.0 -30.0 -33.3 73 101800 0 0 136 0 0 0 0 0 0 0 90 5.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2440800.0 -30.0 -33.3 73 101800 0 0 136 0 0 0 0 0 0 0 90 4.1 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2444400.0 -28.3 -31.7 73 101800 0 0 141 0 0 0 0 0 0 0 110 5.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2448000.0 -30.0 -33.3 73 101800 0 0 141 0 0 0 0 0 0 0 90 5.2 6 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2451600.0 -30.0 -33.3 73 101800 0 0 136 0 0 0 0 0 0 0 90 5.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2455200.0 -29.4 -33.3 69 101800 0 0 138 0 0 0 0 0 0 0 80 5.7 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2458800.0 -30.0 -33.9 69 101800 0 0 136 0 0 0 0 0 0 0 90 5.2 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2462400.0 -30.6 -34.4 69 101800 0 0 134 0 0 0 0 0 0 0 90 5.7 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2466000.0 -30.0 -33.3 73 101800 10 1140 136 4 75 1 0 0 0 0 80 5.7 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2469600.0 -30.6 -33.9 73 101900 26 1410 135 6 250 2 658 11069 353 73 90 5.2 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2473200.0 -31.1 -35.0 69 101900 18 1410 133 5 154 2 546 6457 352 72 100 4.6 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2476800.0 -31.7 -35.6 68 101900 0 223 131 0 0 0 0 0 0 0 90 4.6 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2480400.0 -32.2 -35.6 72 102000 0 0 133 0 0 0 0 0 0 0 100 4.1 1 1 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2484000.0 -31.7 -35.0 72 101900 0 0 134 0 0 0 0 0 0 0 100 5.2 6 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2487600.0 -32.2 -36.1 68 102000 0 0 130 0 0 0 0 0 0 0 100 4.1 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2491200.0 -32.2 -36.1 68 102000 0 0 130 0 0 0 0 0 0 0 100 4.6 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2494800.0 -32.8 -36.7 68 102000 0 0 128 0 0 0 0 0 0 0 90 3.6 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2498400.0 -33.3 -36.7 72 102000 0 0 127 0 0 0 0 0 0 0 110 3.6 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2502000.0 -32.8 -36.7 68 102000 0 0 128 0 0 0 0 0 0 0 90 6.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2505600.0 -33.3 -37.8 64 102100 0 0 126 0 0 0 0 0 0 0 80 4.6 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2509200.0 -32.8 -36.7 68 102100 0 0 128 0 0 0 0 0 0 0 80 4.6 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2512800.0 -32.8 -36.1 72 102100 0 0 128 0 0 0 0 0 0 0 70 3.6 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2516400.0 -32.8 -36.7 68 102100 0 0 128 0 0 0 0 0 0 0 80 4.6 2 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2520000.0 -32.8 -36.7 68 102100 0 0 128 0 0 0 0 0 0 0 70 4.6 2 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2523600.0 -33.3 -37.2 68 102000 0 0 127 0 0 0 0 0 0 0 70 4.6 2 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2527200.0 -32.8 -36.7 68 102000 0 0 128 0 0 0 0 0 0 0 80 4.1 2 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2530800.0 -32.8 -36.7 68 102000 0 0 128 0 0 0 0 0 0 0 80 4.6 1 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2534400.0 -32.8 -36.1 72 102000 0 0 128 0 0 0 0 0 0 0 70 5.2 1 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2538000.0 -32.8 -36.1 72 101900 0 0 128 0 0 0 0 0 0 0 70 4.1 1 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2541600.0 -32.8 -36.7 68 101900 0 0 131 0 0 0 0 0 0 0 70 4.6 2 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2545200.0 -32.2 -36.7 64 101900 0 0 129 0 0 0 0 0 0 0 70 4.1 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2548800.0 -30.0 -33.3 73 101800 0 0 136 0 0 0 0 0 0 0 60 5.7 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2552400.0 -31.7 -35.0 72 101800 15 1351 131 4 101 2 0 0 0 0 80 5.2 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2556000.0 -31.7 -35.6 68 101800 32 1410 131 7 200 3 760 9124 522 102 70 5.2 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2559600.0 -30.6 -33.9 73 101800 24 1410 135 5 170 2 547 7403 353 73 90 6.2 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2563200.0 -30.6 -33.9 73 101800 2 435 135 0 0 0 0 0 0 0 100 5.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2566800.0 -30.6 -34.4 69 101800 0 0 134 0 0 0 0 0 0 0 100 5.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2570400.0 -30.0 -33.3 73 101800 0 0 136 0 0 0 0 0 0 0 100 6.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2574000.0 -29.4 -32.8 73 101800 0 0 138 0 0 0 0 0 0 0 100 7.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2577600.0 -29.4 -32.8 73 101700 0 0 138 0 0 0 0 0 0 0 100 8.2 0 0 4.8 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2581200.0 -28.9 -32.2 73 101700 0 0 139 0 0 0 0 0 0 0 100 8.8 0 0 1.6 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2584800.0 -27.2 -30.6 73 101800 0 0 162 0 0 0 0 0 0 0 110 8.2 10 9 1.6 2130 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2588400.0 -26.7 -29.4 77 101800 0 0 151 0 0 0 0 0 0 0 100 8.8 2 2 1.6 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2592000.0 -25.6 -28.3 78 101700 0 0 157 0 0 0 0 0 0 0 110 8.2 6 4 1.6 1370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2595600.0 -23.9 -26.7 78 101700 0 0 179 0 0 0 0 0 0 0 110 9.3 10 10 1.6 1520 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2599200.0 -23.9 -26.1 82 101700 0 0 179 0 0 0 0 0 0 0 110 9.3 10 10 1.2 1520 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2602800.0 -23.3 -26.1 78 101700 0 0 181 0 0 0 0 0 0 0 110 9.8 10 10 1.2 1520 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2606400.0 -22.8 -25.6 78 101700 0 0 183 0 0 0 0 0 0 0 110 10.3 10 10 1.2 1520 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2610000.0 -22.8 -25.6 78 101600 0 0 183 0 0 0 0 0 0 0 120 9.8 10 10 1.2 1520 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2613600.0 -22.8 -25.6 78 101600 0 0 183 0 0 0 0 0 0 0 110 10.3 10 10 1.2 1520 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2617200.0 -22.2 -25.0 78 101600 0 0 185 0 0 0 0 0 0 0 110 10.8 10 10 1.2 1520 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2620800.0 -22.2 -24.4 82 101500 0 0 186 0 0 0 0 0 0 0 110 9.8 10 10 1.2 1520 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2624400.0 -21.7 -24.4 78 101500 0 0 187 0 0 0 0 0 0 0 100 9.8 10 10 1.2 1130 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2628000.0 -21.1 -23.9 79 101500 0 0 189 0 0 0 0 0 0 0 110 9.8 10 10 1.2 1130 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2631600.0 -21.7 -23.9 82 101500 0 0 188 0 0 0 0 0 0 0 110 10.3 10 10 1.2 1130 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2635200.0 -21.7 -23.9 82 101500 0 129 188 0 0 0 0 0 0 0 110 9.3 10 10 1.2 1130 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2638800.0 -21.7 -24.4 78 101600 21 1409 187 1 0 1 97 0 97 40 110 8.2 10 10 1.2 980 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2642400.0 -21.1 -23.3 82 101600 38 1409 190 2 1 2 254 0 253 79 120 7.7 10 10 1.2 980 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2646000.0 -20.0 -22.2 83 101700 30 1409 194 1 1 1 132 0 132 40 120 7.2 10 10 1.2 1130 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2649600.0 -19.4 -21.7 83 101800 6 622 196 1 0 1 0 0 0 0 120 6.7 10 10 2.4 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2653200.0 -18.9 -21.7 79 101900 0 0 180 0 0 0 0 0 0 0 120 5.7 6 4 11.3 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2656800.0 -20.0 -22.2 83 102000 0 0 178 0 0 0 0 0 0 0 130 4.6 5 5 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2660400.0 -18.9 -21.1 83 102100 0 0 198 0 0 0 0 0 0 0 130 3.1 10 10 11.3 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2664000.0 -15.0 -16.1 91 102200 0 0 215 0 0 0 0 0 0 0 160 3.1 10 10 11.3 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2667600.0 -14.4 -16.1 87 102200 0 0 217 0 0 0 0 0 0 0 190 4.6 10 10 11.3 370 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2671200.0 -13.8 -15.6 84 102400 0 0 220 0 0 0 0 0 0 0 250 4.9 10 10 11.3 370 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2674800.0 -13.4 -15.2 88 102500 0 0 221 0 0 0 0 0 0 0 260 5.2 10 10 11.3 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2678400.0 -12.9 -14.8 88 102600 0 0 223 0 0 0 0 0 0 0 270 5.5 10 10 11.3 790 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2682000.0 -12.4 -14.4 88 102700 0 0 226 0 0 0 0 0 0 0 250 5.8 10 10 11.3 610 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2685600.0 -11.9 -14.0 80 102800 0 0 228 0 0 0 0 0 0 0 230 6.1 10 10 11.3 610 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2689200.0 -11.5 -13.6 84 102800 0 0 229 0 0 0 0 0 0 0 240 6.4 10 10 11.3 520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2692800.0 -11.1 -13.3 84 102900 0 0 231 0 0 0 0 0 0 0 260 6.7 10 10 11.3 610 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2696400.0 -12.2 -13.9 88 102900 0 0 227 0 0 0 0 0 0 0 260 9.3 10 10 11.3 520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2700000.0 -12.8 -15.0 84 103000 0 0 224 0 0 0 0 0 0 0 270 9.3 10 10 11.3 520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2703600.0 -13.9 -16.1 84 103100 0 0 219 0 0 0 0 0 0 0 280 9.3 10 10 11.3 520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2707200.0 -14.4 -16.7 83 103100 0 0 217 0 0 0 0 0 0 0 270 8.8 10 10 11.3 520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2710800.0 -14.4 -16.7 83 103200 0 0 217 0 0 0 0 0 0 0 280 9.3 10 10 11.3 430 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2714400.0 -16.1 -18.3 83 103300 0 0 210 0 0 0 0 0 0 0 270 9.3 10 10 11.3 400 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2718000.0 -16.7 -18.9 83 103300 0 0 207 0 0 0 0 0 0 0 280 8.2 10 10 11.3 370 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2721600.0 -17.2 -19.4 83 103400 1 317 205 0 0 0 0 0 0 0 290 8.8 10 10 11.3 370 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2725200.0 -17.2 -19.4 83 103500 27 1409 205 1 0 1 97 0 97 40 300 7.7 10 10 11.3 1130 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2728800.0 -16.7 -18.9 83 103600 45 1409 207 6 1 6 706 0 706 219 310 7.2 10 10 11.3 1130 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2732400.0 -16.1 -18.3 83 103600 36 1409 210 4 1 4 481 0 481 150 310 7.2 10 10 11.3 980 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2736000.0 -15.6 -17.8 83 103600 7 810 212 2 0 2 0 0 0 0 310 6.2 10 10 6.4 980 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2739600.0 -15.6 -17.8 83 103700 0 0 212 0 0 0 0 0 0 0 310 6.7 10 10 11.3 980 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2743200.0 -15.6 -17.2 87 103800 0 0 212 0 0 0 0 0 0 0 330 6.2 10 10 11.3 980 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2746800.0 -15.6 -17.2 87 103900 0 0 212 0 0 0 0 0 0 0 320 6.2 10 10 11.3 980 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2750400.0 -15.0 -17.2 83 104000 0 0 214 0 0 0 0 0 0 0 340 5.2 10 10 11.3 1130 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2754000.0 -16.1 -18.3 83 104100 0 0 188 0 0 0 0 0 0 0 330 5.2 2 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2757600.0 -16.1 -18.3 83 104100 0 0 196 0 0 0 0 0 0 0 350 5.2 10 7 11.3 270 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2761200.0 -19.4 -21.7 83 104200 0 0 177 0 0 0 0 0 0 0 30 5.7 7 3 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2764800.0 -20.0 -22.2 83 104300 0 0 178 0 0 0 0 0 0 0 30 5.7 10 5 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2768400.0 -21.1 -22.8 87 104500 0 0 175 0 0 0 0 0 0 0 0 0.0 7 5 11.3 1520 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2772000.0 -20.0 -21.7 87 104600 0 0 176 0 0 0 0 0 0 0 70 4.6 8 3 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2775600.0 -17.8 -20.0 83 104600 0 0 186 0 0 0 0 0 0 0 40 4.6 10 5 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2779200.0 -21.1 -23.3 82 104700 0 0 170 0 0 0 0 0 0 0 90 5.2 3 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2782800.0 -23.9 -26.1 82 104800 0 0 155 0 0 0 0 0 0 0 80 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2786400.0 -25.0 -27.2 82 104900 0 0 152 0 0 0 0 0 0 0 90 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2790000.0 -24.4 -27.2 78 105000 0 0 153 0 0 0 0 0 0 0 80 3.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2793600.0 -26.7 -30.0 74 105000 0 0 146 0 0 0 0 0 0 0 70 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2797200.0 -27.8 -32.2 66 105100 0 0 142 0 0 0 0 0 0 0 80 5.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2800800.0 -28.3 -31.7 73 105200 0 0 141 0 0 0 0 0 0 0 80 6.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2804400.0 -28.3 -31.7 73 105200 0 0 141 0 0 0 0 0 0 0 70 5.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2808000.0 -28.3 -31.1 77 105300 3 481 142 0 0 0 0 0 0 0 70 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2811600.0 -27.2 -30.6 73 105300 33 1408 144 7 184 3 760 8428 522 102 80 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2815200.0 -27.8 -31.1 73 105400 51 1408 143 16 224 8 1700 11099 1340 184 90 4.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2818800.0 -27.8 -31.1 73 105400 42 1408 143 13 165 8 1493 0 920 278 80 5.7 6 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2822400.0 -28.9 -32.2 73 105500 11 998 139 5 71 2 0 0 0 0 80 4.1 3 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2826000.0 -29.4 -32.8 73 105500 0 0 144 0 0 0 0 0 0 0 90 4.1 3 3 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2829600.0 -30.6 -33.9 73 105500 0 0 139 0 0 0 0 0 0 0 90 5.2 2 2 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2833200.0 -30.0 -33.9 69 105600 0 0 140 0 0 0 0 0 0 0 80 5.2 2 2 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2836800.0 -30.6 -33.9 73 105600 0 0 140 0 0 0 0 0 0 0 90 5.2 3 3 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2840400.0 -31.1 -34.4 72 105600 0 0 136 0 0 0 0 0 0 0 90 5.2 3 1 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2844000.0 -31.1 -34.4 72 105600 0 0 136 0 0 0 0 0 0 0 90 5.2 2 1 16.1 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2847600.0 -32.2 -35.6 72 105700 0 0 133 0 0 0 0 0 0 0 90 5.2 2 1 16.1 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2851200.0 -32.2 -36.1 68 105700 0 0 130 0 0 0 0 0 0 0 100 5.7 0 0 16.1 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2854800.0 -32.2 -35.6 72 105800 0 0 130 0 0 0 0 0 0 0 90 4.6 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2858400.0 -32.2 -36.1 68 105800 0 0 130 0 0 0 0 0 0 0 90 5.2 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2862000.0 -31.7 -35.6 68 105800 0 0 131 0 0 0 0 0 0 0 80 5.2 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2865600.0 -31.7 -35.6 68 105800 0 0 131 0 0 0 0 0 0 0 80 5.2 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2869200.0 -32.8 -32.8 100 105900 0 0 130 0 0 0 0 0 0 0 80 5.2 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2872800.0 -32.2 -36.1 68 105900 0 0 130 0 0 0 0 0 0 0 70 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2876400.0 -32.2 -36.1 68 105900 0 0 130 0 0 0 0 0 0 0 90 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2880000.0 -32.8 -36.7 68 105900 0 0 128 0 0 0 0 0 0 0 90 4.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2883600.0 -32.8 -36.7 68 105900 0 0 128 0 0 0 0 0 0 0 90 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2887200.0 -32.2 -36.1 68 105900 0 0 130 0 0 0 0 0 0 0 80 4.6 3 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2890800.0 -31.7 -35.0 72 105900 0 0 138 0 0 0 0 0 0 0 90 4.6 10 4 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2894400.0 -32.2 -36.1 68 105900 24 645 130 4 36 1 0 0 0 0 90 5.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2898000.0 -31.1 -35.6 65 105900 39 1408 132 11 251 5 1179 11806 852 143 80 4.6 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2901600.0 -32.2 -35.6 72 105900 58 1408 130 19 260 9 2015 13237 1503 200 80 4.6 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2905200.0 -31.1 -34.4 72 105900 49 1408 133 15 251 7 1598 12333 1179 176 70 5.2 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2908800.0 -31.1 -34.4 72 105800 16 1162 133 6 132 2 0 0 0 0 80 5.2 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2912400.0 -31.7 -35.0 72 105700 0 0 131 0 0 0 0 0 0 0 80 5.2 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2916000.0 -31.1 -34.4 72 105700 0 0 133 0 0 0 0 0 0 0 80 4.6 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2919600.0 -30.6 -33.9 73 105700 0 0 135 0 0 0 0 0 0 0 70 4.6 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2923200.0 -29.4 -32.2 77 105700 0 0 138 0 0 0 0 0 0 0 70 6.2 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2926800.0 -31.1 -34.4 72 105700 0 0 133 0 0 0 0 0 0 0 80 4.6 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2930400.0 -31.1 -34.4 72 105600 0 0 133 0 0 0 0 0 0 0 80 4.6 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2934000.0 -31.1 -34.4 72 105600 0 0 133 0 0 0 0 0 0 0 70 5.2 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2937600.0 -30.6 -34.4 69 105600 0 0 134 0 0 0 0 0 0 0 70 6.2 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2941200.0 -30.6 -33.9 73 105600 0 0 135 0 0 0 0 0 0 0 80 4.1 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2944800.0 -30.6 -34.4 69 105500 0 0 134 0 0 0 0 0 0 0 80 4.1 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2948400.0 -29.4 -33.3 69 105400 0 0 138 0 0 0 0 0 0 0 70 4.6 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2952000.0 -29.4 -32.8 73 105400 0 0 138 0 0 0 0 0 0 0 80 4.6 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2955600.0 -28.3 -31.1 77 105300 0 0 142 0 0 0 0 0 0 0 70 4.6 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2959200.0 -28.3 -31.7 73 105200 0 0 141 0 0 0 0 0 0 0 70 4.6 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2962800.0 -28.3 -31.7 73 105200 0 0 141 0 0 0 0 0 0 0 70 5.2 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2966400.0 -28.3 -31.7 73 105100 0 0 141 0 0 0 0 0 0 0 80 4.6 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2970000.0 -26.1 -30.0 70 105000 0 0 147 0 0 0 0 0 0 0 70 4.6 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2973600.0 -27.2 -31.1 70 105000 0 0 144 0 0 0 0 0 0 0 60 5.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2977200.0 -25.6 -28.9 74 105000 0 0 149 0 0 0 0 0 0 0 60 5.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2980800.0 -25.0 -27.8 78 104900 8 809 152 5 64 2 0 0 0 0 70 5.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2984400.0 -24.4 -27.2 78 104900 46 1408 153 13 229 6 1391 11127 1017 163 70 6.7 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2988000.0 -23.3 -26.1 78 104800 65 1408 157 22 253 11 2521 0 1262 384 70 7.2 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2991600.0 -22.8 -25.0 82 104700 56 1408 159 18 239 9 1911 12088 1502 195 70 7.2 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2995200.0 -21.7 -24.4 78 104700 21 1325 162 7 147 2 766 6309 352 72 70 8.2 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2998800.0 -21.7 -23.9 82 104600 0 0 163 0 0 0 0 0 0 0 60 8.2 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3002400.0 -21.1 -23.9 79 104600 0 0 164 0 0 0 0 0 0 0 60 8.2 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3006000.0 -21.7 -24.4 78 104500 0 0 162 0 0 0 0 0 0 0 60 7.2 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3009600.0 -20.6 -23.3 79 104400 0 0 166 0 0 0 0 0 0 0 60 8.2 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3013200.0 -21.1 -23.9 79 104400 0 0 164 0 0 0 0 0 0 0 60 7.7 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3016800.0 -21.7 -24.4 78 104400 0 0 162 0 0 0 0 0 0 0 60 7.7 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3020400.0 -20.0 -22.8 79 104300 0 0 168 0 0 0 0 0 0 0 60 8.2 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3024000.0 -20.6 -22.8 83 104300 0 0 166 0 0 0 0 0 0 0 40 7.7 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3027600.0 -19.4 -21.7 83 104200 0 0 170 0 0 0 0 0 0 0 50 9.3 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3031200.0 -20.0 -22.2 83 104100 0 0 168 0 0 0 0 0 0 0 50 8.8 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3034800.0 -20.6 -22.8 83 104100 0 0 166 0 0 0 0 0 0 0 50 8.2 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3038400.0 -20.6 -22.8 83 104000 0 0 166 0 0 0 0 0 0 0 60 8.2 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3042000.0 -20.0 -22.8 79 103900 0 0 168 0 0 0 0 0 0 0 50 10.3 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3045600.0 -20.6 -23.3 79 103900 0 0 166 0 0 0 0 0 0 0 50 10.3 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3049200.0 -21.7 -23.9 82 103900 0 0 163 0 0 0 0 0 0 0 60 10.3 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3052800.0 -22.2 -24.4 82 103800 0 0 161 0 0 0 0 0 0 0 70 8.2 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3056400.0 -21.7 -26.1 68 103800 0 0 161 0 0 0 0 0 0 0 70 8.2 0 0 2.4 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3060000.0 -20.6 -22.8 83 103700 0 0 172 0 0 0 0 0 0 0 70 8.8 2 2 1.6 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3063600.0 -20.6 -23.3 79 103700 0 0 171 0 0 0 0 0 0 0 60 9.3 3 2 1.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3067200.0 -22.2 -24.4 82 103700 12 973 161 8 160 2 0 0 0 0 70 7.2 0 0 4.8 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3070800.0 -21.1 -23.3 82 103600 53 1407 164 19 347 7 2030 17388 1181 181 60 7.7 0 0 8.0 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3074400.0 -20.6 -22.8 83 103600 72 1407 166 29 365 11 3076 19662 1828 231 60 7.7 0 0 4.8 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3078000.0 -20.6 -23.3 79 103500 63 1407 166 24 353 9 2554 18415 1506 210 60 8.2 0 0 1.6 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3081600.0 -21.7 -23.9 82 103400 28 1407 163 11 287 3 1194 12771 521 100 70 7.2 0 0 1.6 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3085200.0 -21.7 -23.9 82 103400 0 82 163 0 0 0 0 0 0 0 60 9.8 0 0 2.4 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3088800.0 -21.1 -23.9 79 103300 0 0 164 0 0 0 0 0 0 0 50 10.3 0 0 2.4 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3092400.0 -21.1 -23.9 79 103200 0 0 164 0 0 0 0 0 0 0 50 9.8 0 0 2.4 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3096000.0 -20.6 -23.3 79 103100 0 0 166 0 0 0 0 0 0 0 50 11.3 0 0 1.6 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3099600.0 -21.1 -23.3 82 103100 0 0 164 0 0 0 0 0 0 0 50 10.3 0 0 1.6 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3103200.0 -20.6 -23.3 79 103000 0 0 166 0 0 0 0 0 0 0 50 10.3 0 0 3.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3106800.0 -20.6 -22.8 83 103000 0 0 166 0 0 0 0 0 0 0 50 10.3 0 0 3.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3110400.0 -19.4 -21.7 83 103000 0 0 170 0 0 0 0 0 0 0 50 11.3 0 0 3.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3114000.0 -20.0 -22.2 83 102900 0 0 168 0 0 0 0 0 0 0 60 10.3 0 0 6.4 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3117600.0 -20.0 -22.2 83 102800 0 0 168 0 0 0 0 0 0 0 60 11.8 0 0 6.4 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3121200.0 -20.0 -22.2 83 102800 0 0 168 0 0 0 0 0 0 0 60 12.9 0 0 6.4 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3124800.0 -20.0 -22.2 83 102800 0 0 168 0 0 0 0 0 0 0 60 11.8 0 0 6.4 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3128400.0 -21.1 -23.9 79 102700 0 0 164 0 0 0 0 0 0 0 60 12.4 0 0 6.4 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3132000.0 -21.7 -24.4 78 102600 0 0 162 0 0 0 0 0 0 0 60 11.3 0 0 6.4 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3135600.0 -22.2 -24.4 82 102600 0 0 161 0 0 0 0 0 0 0 60 12.4 0 0 3.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3139200.0 -21.7 -24.4 78 102500 0 0 162 0 0 0 0 0 0 0 60 12.4 0 0 3.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3142800.0 -22.2 -24.4 82 102500 0 0 161 0 0 0 0 0 0 0 60 12.4 0 0 3.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3146400.0 -21.1 -23.3 82 102500 0 0 164 0 0 0 0 0 0 0 70 12.9 0 0 4.8 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3150000.0 -20.6 -23.3 79 102500 0 0 166 0 0 0 0 0 0 0 80 12.4 0 0 1.6 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3153600.0 -20.6 -23.3 79 102500 17 1114 166 3 48 2 371 0 247 76 70 11.3 0 0 3.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3157200.0 -20.6 -22.8 83 102500 60 1407 166 16 135 11 1824 0 1256 378 70 12.4 0 0 4.8 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3160800.0 -19.4 -21.7 83 102500 79 1407 170 25 174 16 2815 0 1805 535 70 11.3 0 0 4.8 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3164400.0 -18.9 -21.1 83 102400 70 1407 172 21 155 14 2371 0 1584 471 70 13.9 0 0 2.4 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3168000.0 -18.9 -21.1 83 102400 35 1407 172 6 87 4 720 0 480 150 70 13.9 0 0 1.6 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3171600.0 -18.9 -21.1 83 102400 1 246 172 0 0 0 0 0 0 0 90 12.9 0 0 1.6 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3175200.0 -19.4 -21.7 83 102400 0 0 170 0 0 0 0 0 0 0 90 13.9 0 0 1.6 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3178800.0 -19.4 -21.7 83 102400 0 0 170 0 0 0 0 0 0 0 80 13.4 0 0 2.4 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3182400.0 -19.4 -21.7 83 102400 0 0 170 0 0 0 0 0 0 0 90 12.4 0 0 2.4 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3186000.0 -18.9 -21.7 79 102400 0 0 171 0 0 0 0 0 0 0 90 12.9 0 0 2.4 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3189600.0 -19.4 -21.7 83 102400 0 0 170 0 0 0 0 0 0 0 90 13.4 0 0 4.8 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3193200.0 -19.4 -21.7 83 102500 0 0 170 0 0 0 0 0 0 0 90 13.4 0 0 4.8 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3196800.0 -18.9 -21.7 79 102500 0 0 171 0 0 0 0 0 0 0 90 12.4 0 0 8.0 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3200400.0 -18.9 -21.7 79 102600 0 0 171 0 0 0 0 0 0 0 90 11.8 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3204000.0 -19.4 -22.2 79 102600 0 0 170 0 0 0 0 0 0 0 90 11.3 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3207600.0 -20.0 -22.8 79 102600 0 0 168 0 0 0 0 0 0 0 90 10.3 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3211200.0 -20.6 -23.3 79 102600 0 0 166 0 0 0 0 0 0 0 90 10.8 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3214800.0 -21.1 -23.9 79 102500 0 0 164 0 0 0 0 0 0 0 90 11.8 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3218400.0 -21.7 -23.9 82 102600 0 0 163 0 0 0 0 0 0 0 90 11.3 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3222000.0 -21.1 -23.9 79 102500 0 0 164 0 0 0 0 0 0 0 90 12.4 0 0 8.0 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3225600.0 -21.1 -23.9 79 102500 0 0 164 0 0 0 0 0 0 0 100 11.8 0 0 8.0 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3229200.0 -21.1 -23.3 82 102500 0 0 164 0 0 0 0 0 0 0 100 11.8 0 0 8.0 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3232800.0 -20.6 -23.9 75 102500 0 0 165 0 0 0 0 0 0 0 100 12.9 0 0 4.8 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3236400.0 -21.7 -24.4 78 102500 0 0 162 0 0 0 0 0 0 0 110 10.3 0 0 4.8 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3240000.0 -22.2 -25.0 78 102500 23 1277 160 4 59 3 483 0 362 112 100 9.8 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3243600.0 -21.1 -23.3 82 102500 67 1406 164 19 150 13 2152 0 1475 440 110 9.8 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3247200.0 -20.6 -22.8 83 102400 86 1406 166 29 191 18 3255 0 2024 597 110 11.8 0 0 4.8 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3250800.0 -20.6 -23.3 79 102400 77 1406 166 24 172 16 2699 0 1803 533 110 9.3 0 0 4.8 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3254400.0 -21.1 -23.9 79 102400 41 1406 164 8 105 5 951 0 595 185 110 9.3 0 0 4.8 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3258000.0 -22.2 -25.0 78 102400 2 387 160 0 0 0 0 0 0 0 110 7.7 0 0 8.0 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3261600.0 -22.8 -25.6 78 102300 0 0 159 0 0 0 0 0 0 0 110 8.8 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3265200.0 -23.3 -26.1 78 102300 0 0 157 0 0 0 0 0 0 0 110 7.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3268800.0 -23.3 -26.1 78 102200 0 0 157 0 0 0 0 0 0 0 110 9.3 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3272400.0 -22.8 -25.6 78 102200 0 0 159 0 0 0 0 0 0 0 110 9.3 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3276000.0 -23.9 -26.7 78 102200 0 0 155 0 0 0 0 0 0 0 100 8.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3279600.0 -23.9 -26.7 78 102100 0 0 155 0 0 0 0 0 0 0 120 7.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3283200.0 -25.6 -28.3 78 102100 0 0 150 0 0 0 0 0 0 0 100 6.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3286800.0 -26.7 -29.4 77 102000 0 0 146 0 0 0 0 0 0 0 100 6.2 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3290400.0 -26.7 -29.4 77 102000 0 0 146 0 0 0 0 0 0 0 100 6.7 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3294000.0 -26.7 -30.0 74 102000 0 0 146 0 0 0 0 0 0 0 100 6.2 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3297600.0 -27.8 -31.1 73 101900 0 0 143 0 0 0 0 0 0 0 120 4.6 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3301200.0 -28.9 -32.2 73 101800 0 0 139 0 0 0 0 0 0 0 110 5.2 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3304800.0 -29.4 -32.8 73 101800 0 0 138 0 0 0 0 0 0 0 120 5.2 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3308400.0 -30.6 -33.9 73 101800 0 0 135 0 0 0 0 0 0 0 120 4.1 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3312000.0 -31.1 -34.4 72 101700 0 0 133 0 0 0 0 0 0 0 130 4.6 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3315600.0 -31.7 -35.0 72 101600 0 0 131 0 0 0 0 0 0 0 140 4.1 0 0 16.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3319200.0 -31.1 -35.0 69 101600 0 0 133 0 0 0 0 0 0 0 140 2.6 0 0 16.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3322800.0 -30.6 -34.4 69 101600 0 12 147 0 0 0 0 0 0 0 170 2.6 10 8 11.3 30 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3326400.0 -30.0 -33.9 69 101600 29 1406 157 5 1 5 586 0 586 180 140 3.6 10 10 1.6 30 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3330000.0 -29.4 -32.2 77 101600 74 1406 145 23 72 19 2543 0 2106 594 180 1.5 4 4 0.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3333600.0 -22.8 -25.6 78 101500 93 1406 183 25 2 25 2748 0 2756 767 360 2.6 10 10 0.0 0 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3337200.0 -23.9 -26.1 82 101400 84 1406 179 18 2 18 2018 0 2022 594 90 2.1 10 10 0.0 0 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3340800.0 -22.8 -25.0 82 101400 49 1406 183 6 1 6 709 0 709 221 150 2.6 10 10 0.0 0 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3344400.0 -22.2 -23.9 86 101400 6 551 186 1 0 1 0 0 0 0 130 1.5 10 10 0.0 0 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3348000.0 -21.7 -23.9 82 101400 0 0 188 0 0 0 0 0 0 0 0 0.0 10 10 0.0 0 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3351600.0 -21.1 -23.3 82 101300 0 0 190 0 0 0 0 0 0 0 0 0.0 10 10 0.4 30 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3355200.0 -19.4 -21.1 87 101300 0 0 197 0 0 0 0 0 0 0 130 1.5 10 10 0.4 30 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3358800.0 -18.9 -21.1 83 101200 0 0 198 0 0 0 0 0 0 0 160 1.5 10 10 0.4 30 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3362400.0 -19.4 -21.7 83 101200 0 0 196 0 0 0 0 0 0 0 0 0.0 10 10 0.4 30 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3366000.0 -20.0 -22.2 83 101200 0 0 194 0 0 0 0 0 0 0 140 2.1 10 10 0.4 120 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3369600.0 -19.4 -21.1 87 101200 0 0 197 0 0 0 0 0 0 0 0 0.0 10 10 0.4 270 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3373200.0 -20.0 -22.2 83 101200 0 0 194 0 0 0 0 0 0 0 50 1.5 10 10 0.4 240 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3376800.0 -20.6 -22.8 83 101200 0 0 192 0 0 0 0 0 0 0 60 1.5 10 10 2.4 180 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3380400.0 -22.8 -25.0 82 101200 0 0 167 0 0 0 0 0 0 0 0 0.0 5 4 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3384000.0 -23.3 -26.1 78 101200 0 0 181 0 0 0 0 0 0 0 90 1.5 10 10 11.3 150 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3387600.0 -24.4 -27.2 78 101100 0 0 177 0 0 0 0 0 0 0 60 2.1 10 10 11.3 150 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3391200.0 -26.1 -29.4 74 101100 0 0 155 0 0 0 0 0 0 0 60 2.1 5 4 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3394800.0 -26.1 -28.9 78 101100 0 0 157 0 0 0 0 0 0 0 70 2.1 5 5 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3398400.0 -27.2 -29.4 81 101100 0 0 168 0 0 0 0 0 0 0 90 2.1 10 10 11.3 150 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3402000.0 -26.1 -32.2 57 101100 0 0 168 0 0 0 0 0 0 0 80 1.5 10 10 11.3 120 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3405600.0 -26.1 -28.9 78 101100 0 0 171 0 0 0 0 0 0 0 20 1.5 10 10 3.2 120 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3409200.0 -26.7 -29.4 77 101100 0 152 169 0 0 0 0 0 0 0 50 1.5 10 10 6.4 180 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3412800.0 -26.7 -29.4 77 101200 36 1405 151 7 84 5 827 0 591 183 40 2.6 4 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3416400.0 -26.1 -28.9 78 101200 81 1405 153 27 155 19 3005 0 2120 611 30 2.6 4 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3420000.0 -25.0 -27.8 78 101200 101 1405 157 36 137 27 3956 0 2975 829 10 3.1 5 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3423600.0 -25.6 -28.9 74 101200 92 1405 154 32 154 23 3538 0 2550 723 30 3.1 4 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3427200.0 -25.6 -28.9 74 101100 56 1405 149 15 145 10 1716 0 1145 346 20 3.6 2 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3430800.0 -26.1 -28.9 78 101100 7 691 148 4 24 2 0 0 0 0 30 3.6 3 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3434400.0 -26.7 -30.0 74 101200 0 0 149 0 0 0 0 0 0 0 40 3.6 3 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3438000.0 -27.2 -30.0 77 101200 0 0 151 0 0 0 0 0 0 0 40 3.6 5 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3441600.0 -26.7 -29.4 77 101100 0 0 154 0 0 0 0 0 0 0 50 3.6 6 4 11.3 310 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3445200.0 -26.7 -29.4 77 101200 0 0 158 0 0 0 0 0 0 0 70 3.1 8 7 11.3 310 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3448800.0 -25.0 -27.8 78 101200 0 0 170 0 0 0 0 0 0 0 60 4.1 10 9 11.3 310 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3452400.0 -23.3 -26.1 78 101200 0 0 176 0 0 0 0 0 0 0 50 4.1 10 9 11.3 310 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3456000.0 -23.3 -26.7 74 101300 0 0 181 0 0 0 0 0 0 0 50 3.6 10 10 11.3 370 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3459600.0 -23.9 -26.7 78 101200 0 0 179 0 0 0 0 0 0 0 30 4.6 10 10 11.3 370 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3463200.0 -23.9 -26.7 78 101300 0 0 179 0 0 0 0 0 0 0 40 4.6 10 10 11.3 370 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3466800.0 -24.4 -27.2 78 101300 0 0 177 0 0 0 0 0 0 0 40 4.1 10 10 11.3 400 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3470400.0 -25.0 -27.8 78 101300 0 0 175 0 0 0 0 0 0 0 40 4.6 10 10 11.3 400 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3474000.0 -25.6 -28.9 74 101300 0 0 172 0 0 0 0 0 0 0 50 4.6 10 10 11.3 400 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3477600.0 -25.6 -28.9 74 101300 0 0 172 0 0 0 0 0 0 0 40 4.6 10 10 11.3 400 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3481200.0 -25.6 -28.9 74 101400 0 0 172 0 0 0 0 0 0 0 40 4.6 10 10 11.3 400 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3484800.0 -26.7 -30.0 74 101500 0 0 156 0 0 0 0 0 0 0 40 5.2 8 6 11.3 2440 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3488400.0 -28.3 -33.3 62 101500 0 0 146 0 0 0 0 0 0 0 40 4.6 4 3 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3492000.0 -28.9 -32.8 69 101600 0 0 144 0 0 0 0 0 0 0 40 4.6 6 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3495600.0 -29.4 -32.8 73 101600 1 293 141 0 0 0 0 0 0 0 40 5.2 8 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3499200.0 -30.0 -33.3 73 101700 43 1405 139 14 126 10 1579 0 1130 331 50 3.6 10 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3502800.0 -30.0 -33.3 73 101700 89 1405 139 36 149 27 3918 0 2947 787 50 3.6 10 1 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3506400.0 -30.6 -34.4 69 101800 108 1405 134 49 324 25 5451 0 2788 809 40 4.1 6 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3510000.0 -30.6 -34.4 69 101800 99 1405 134 44 342 21 4932 0 2359 696 40 4.1 4 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3513600.0 -31.1 -34.4 72 101900 63 1405 133 24 297 12 2528 15342 1980 199 30 4.1 3 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3517200.0 -31.1 -34.4 72 101900 11 831 133 8 111 3 0 0 0 0 40 4.6 2 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3520800.0 -31.7 -35.0 72 101900 0 0 131 0 0 0 0 0 0 0 50 3.6 2 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3524400.0 -31.7 -35.0 72 102000 0 0 131 0 0 0 0 0 0 0 40 4.1 2 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3528000.0 -30.6 -34.4 69 102000 0 0 137 0 0 0 0 0 0 0 40 4.1 1 1 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3531600.0 -30.6 -34.4 69 102100 0 0 134 0 0 0 0 0 0 0 30 4.6 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3535200.0 -30.6 -34.4 69 102100 0 0 134 0 0 0 0 0 0 0 40 4.6 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3538800.0 -31.1 -35.0 69 102200 0 0 133 0 0 0 0 0 0 0 30 4.1 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3542400.0 -31.7 -35.0 72 102200 0 0 131 0 0 0 0 0 0 0 50 4.1 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3546000.0 -32.2 -36.1 68 102200 0 0 130 0 0 0 0 0 0 0 50 2.6 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3549600.0 -31.7 -35.6 68 102200 0 0 131 0 0 0 0 0 0 0 50 3.1 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3553200.0 -32.8 -35.6 76 102300 0 0 129 0 0 0 0 0 0 0 60 1.5 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3556800.0 -32.2 -36.1 68 102300 0 0 130 0 0 0 0 0 0 0 20 1.5 0 0 16.1 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3560400.0 -29.4 -32.8 73 102300 0 0 138 0 0 0 0 0 0 0 350 1.5 0 0 16.1 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3564000.0 -28.9 -32.2 73 102300 0 0 139 0 0 0 0 0 0 0 340 1.5 0 0 16.1 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3567600.0 -28.9 -32.2 73 102300 0 0 139 0 0 0 0 0 0 0 350 3.1 0 0 16.1 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3571200.0 -29.4 -32.8 73 102300 0 0 138 0 0 0 0 0 0 0 320 3.1 0 0 16.1 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3574800.0 -29.4 -35.0 59 102300 0 0 137 0 0 0 0 0 0 0 310 3.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3578400.0 -29.4 -33.3 69 102300 0 0 138 0 0 0 0 0 0 0 290 4.1 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3582000.0 -28.9 -32.8 69 102300 24 433 139 4 16 1 0 0 0 0 300 3.6 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3585600.0 -26.7 -30.0 74 102300 50 1404 146 17 281 8 1806 13827 1339 181 330 3.6 1 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3589200.0 -26.1 -30.0 70 102300 96 1404 147 41 372 17 4663 0 1937 589 330 3.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3592800.0 -26.7 -30.0 74 102400 116 1404 146 53 415 20 6036 0 2282 700 330 3.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3596400.0 -27.8 -31.1 73 102300 107 1404 143 47 397 18 5365 0 2058 631 320 3.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3600000.0 -27.8 -31.1 73 102300 71 1404 143 27 321 12 2851 17118 1985 224 330 3.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3603600.0 -27.8 -31.1 73 102300 15 971 143 9 129 3 0 0 0 0 330 3.1 2 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3607200.0 -28.3 -31.1 77 102300 0 0 144 0 0 0 0 0 0 0 340 2.6 3 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3610800.0 -30.0 -32.8 77 102300 0 0 139 0 0 0 0 0 0 0 320 2.6 3 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3614400.0 -28.3 -31.7 73 102300 0 0 141 0 0 0 0 0 0 0 340 2.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3618000.0 -30.6 -33.9 73 102300 0 0 135 0 0 0 0 0 0 0 10 1.5 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3621600.0 -30.6 -33.9 73 102300 0 0 135 0 0 0 0 0 0 0 0 0.0 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3625200.0 -31.1 -34.4 72 102300 0 0 133 0 0 0 0 0 0 0 0 0.0 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3628800.0 -32.2 -35.6 72 102300 0 0 130 0 0 0 0 0 0 0 100 2.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3632400.0 -31.7 -35.0 72 102200 0 0 131 0 0 0 0 0 0 0 120 1.5 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3636000.0 -32.8 -36.7 68 102300 0 0 128 0 0 0 0 0 0 0 0 0.0 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3639600.0 -32.8 -36.7 68 102200 0 0 128 0 0 0 0 0 0 0 0 0.0 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3643200.0 -33.3 -36.7 72 102200 0 0 127 0 0 0 0 0 0 0 0 0.0 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3646800.0 -33.3 -36.7 72 102200 0 0 127 0 0 0 0 0 0 0 0 0.0 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3650400.0 -32.2 -36.1 68 102200 0 0 130 0 0 0 0 0 0 0 0 0.0 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3654000.0 -32.2 -36.1 68 102200 0 0 130 0 0 0 0 0 0 0 0 0.0 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3657600.0 -29.4 -32.8 73 102100 0 0 152 0 0 0 0 0 0 0 50 1.5 8 8 11.3 150 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3661200.0 -31.7 -36.7 61 102100 0 0 150 0 0 0 0 0 0 0 110 2.1 10 10 11.3 240 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3664800.0 -32.8 -36.7 68 102100 0 0 148 0 0 0 0 0 0 0 100 2.6 10 10 11.3 240 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3668400.0 -30.0 -33.3 73 102000 5 573 157 0 0 0 0 0 0 0 80 2.1 10 10 6.4 400 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3672000.0 -30.6 -33.9 73 102000 58 1404 155 14 8 14 1562 0 1565 450 120 2.6 10 10 3.2 400 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3675600.0 -30.0 -33.9 69 102000 104 1404 149 36 34 34 3890 0 3686 956 140 2.1 10 8 6.4 430 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3679200.0 -28.9 -31.7 77 102000 124 1404 161 40 2 40 4326 0 4340 1135 130 2.1 10 10 6.4 430 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3682800.0 -28.9 -32.2 73 101900 115 1404 161 24 4 23 2701 0 2594 776 140 1.5 10 10 4.8 520 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3686400.0 -28.9 -31.7 77 101900 78 1404 149 29 59 26 3135 0 2820 729 90 2.1 10 6 11.3 520 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3690000.0 -30.6 -33.9 73 101800 21 1111 151 5 5 5 578 0 578 174 120 2.1 10 9 11.3 550 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3693600.0 -31.1 -35.0 69 101800 0 0 149 0 0 0 0 0 0 0 100 2.1 10 9 11.3 550 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3697200.0 -31.1 -35.0 69 101700 0 0 149 0 0 0 0 0 0 0 100 2.1 10 9 11.3 550 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3700800.0 -29.4 -32.8 73 101700 0 0 159 0 0 0 0 0 0 0 120 2.6 10 10 11.3 460 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3704400.0 -28.3 -31.7 73 101600 0 0 163 0 0 0 0 0 0 0 60 2.1 10 10 11.3 370 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3708000.0 -26.1 -28.9 78 101600 0 0 171 0 0 0 0 0 0 0 50 2.6 10 10 11.3 310 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3711600.0 -26.1 -28.9 78 101600 0 0 171 0 0 0 0 0 0 0 70 2.6 10 10 11.3 310 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3715200.0 -25.6 -28.9 74 101500 0 0 172 0 0 0 0 0 0 0 60 2.1 10 10 11.3 370 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3718800.0 -25.6 -28.3 78 101500 0 0 173 0 0 0 0 0 0 0 50 2.6 10 10 11.3 400 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3722400.0 -25.6 -28.9 74 101500 0 0 172 0 0 0 0 0 0 0 60 2.6 10 10 11.3 550 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3726000.0 -26.1 -29.4 74 101400 0 0 171 0 0 0 0 0 0 0 60 2.6 10 10 11.3 520 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3729600.0 -28.9 -32.2 73 101400 0 0 151 0 0 0 0 0 0 0 60 3.1 7 7 11.3 550 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3733200.0 -27.2 -30.6 73 101400 0 0 167 0 0 0 0 0 0 0 50 2.6 10 10 11.3 520 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3736800.0 -26.1 -28.9 78 101300 0 0 171 0 0 0 0 0 0 0 50 3.1 10 10 11.3 610 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3740400.0 -25.0 -27.8 78 101300 0 0 175 0 0 0 0 0 0 0 60 3.1 10 10 11.3 700 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3744000.0 -24.4 -27.2 78 101200 0 0 177 0 0 0 0 0 0 0 50 3.1 10 10 11.3 640 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3747600.0 -23.9 -27.2 74 101200 0 0 179 0 0 0 0 0 0 0 80 4.1 10 10 11.3 910 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3751200.0 -24.4 -27.8 74 101200 0 0 177 0 0 0 0 0 0 0 60 4.6 10 10 4.8 910 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3754800.0 -24.4 -27.8 74 101100 9 690 177 2 0 2 0 0 0 0 50 4.1 10 10 3.2 1130 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3758400.0 -25.0 -27.8 78 101100 65 1403 175 11 4 11 1261 0 1262 384 50 5.2 10 10 1.6 1130 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3762000.0 -25.0 -27.8 78 101100 112 1403 175 22 4 21 2488 0 2380 719 50 4.1 10 10 1.6 1310 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3765600.0 -24.4 -27.2 78 101000 132 1403 177 37 4 37 4048 0 4061 1122 50 5.2 10 10 1.6 1310 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3769200.0 -23.9 -26.7 78 101000 123 1403 179 42 1 42 4519 0 4535 1155 50 4.1 10 10 3.2 1310 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3772800.0 -23.3 -26.1 78 101000 86 1403 181 20 2 20 2225 0 2230 643 60 3.6 10 10 4.8 1310 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3776400.0 -23.3 -26.1 78 101000 26 1228 181 2 0 2 193 0 195 77 60 4.6 10 10 4.8 1310 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3780000.0 -23.3 -26.1 78 100900 0 0 181 0 0 0 0 0 0 0 50 4.6 10 10 4.8 1130 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3783600.0 -23.9 -26.7 78 100900 0 0 179 0 0 0 0 0 0 0 50 5.2 10 10 4.8 980 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3787200.0 -23.9 -26.7 78 100900 0 0 179 0 0 0 0 0 0 0 50 4.6 10 10 4.8 980 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3790800.0 -23.9 -26.7 78 100800 0 0 179 0 0 0 0 0 0 0 30 4.6 10 10 4.8 910 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3794400.0 -23.9 -26.7 78 100800 0 0 179 0 0 0 0 0 0 0 40 4.1 10 10 4.8 980 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3798000.0 -23.9 -26.7 78 100800 0 0 179 0 0 0 0 0 0 0 40 5.2 10 10 4.8 980 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3801600.0 -24.4 -27.2 78 100800 0 0 177 0 0 0 0 0 0 0 50 4.6 10 10 9.7 1130 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3805200.0 -25.0 -27.8 78 100700 0 0 175 0 0 0 0 0 0 0 50 4.1 10 10 9.7 1130 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3808800.0 -25.0 -27.8 78 100700 0 0 175 0 0 0 0 0 0 0 40 4.1 10 10 9.7 1130 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3812400.0 -25.6 -28.3 78 100700 0 0 173 0 0 0 0 0 0 0 30 4.1 10 10 9.7 1310 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3816000.0 -24.4 -27.8 74 100700 0 0 177 0 0 0 0 0 0 0 40 4.1 10 10 9.7 1310 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3819600.0 -24.4 -27.2 78 100700 0 0 159 0 0 0 0 0 0 0 50 4.1 7 2 9.7 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3823200.0 -25.6 -28.3 78 100700 0 0 156 0 0 0 0 0 0 0 40 3.1 8 3 9.7 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3826800.0 -25.0 -27.8 78 100600 0 0 167 0 0 0 0 0 0 0 40 4.1 10 8 9.7 1520 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3830400.0 -25.0 -27.8 78 100600 0 0 175 0 0 0 0 0 0 0 40 4.6 10 10 9.7 1520 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3834000.0 -25.6 -28.3 78 100600 0 0 168 0 0 0 0 0 0 0 50 3.6 10 9 11.3 1520 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3837600.0 -26.7 -30.0 74 100600 0 0 158 0 0 0 0 0 0 0 50 3.6 9 7 11.3 1520 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3841200.0 -27.8 -30.6 77 100500 12 830 149 5 26 4 0 0 0 0 50 3.1 6 3 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3844800.0 -27.8 -31.1 73 100500 73 1403 150 25 36 23 2717 0 2507 664 50 3.1 8 4 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3848400.0 -27.2 -30.6 73 100500 120 1403 152 53 124 43 5680 0 4625 1150 40 3.1 10 4 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3852000.0 -27.8 -31.1 73 100500 140 1403 145 63 324 32 7013 0 3571 1047 50 3.1 5 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3855600.0 -27.8 -31.1 73 100500 131 1403 145 59 252 36 6467 0 3958 1100 50 2.6 4 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3859200.0 -28.9 -32.2 73 100500 94 1403 139 38 320 18 4293 0 2037 610 50 3.1 1 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3862800.0 -29.4 -32.8 73 100500 33 1367 138 12 180 5 1283 8135 849 136 50 2.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3866400.0 -29.4 -33.3 69 100500 0 0 138 0 0 0 0 0 0 0 50 2.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3870000.0 -30.0 -33.3 73 100500 0 0 136 0 0 0 0 0 0 0 50 2.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3873600.0 -30.6 -34.4 69 100500 0 0 134 0 0 0 0 0 0 0 70 2.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3877200.0 -30.0 -33.3 73 100500 0 0 136 0 0 0 0 0 0 0 60 2.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3880800.0 -30.6 -33.9 73 100500 0 0 135 0 0 0 0 0 0 0 50 3.1 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3884400.0 -31.1 -34.4 72 100500 0 0 133 0 0 0 0 0 0 0 60 2.6 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3888000.0 -30.0 -33.3 73 100500 0 0 136 0 0 0 0 0 0 0 60 2.1 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3891600.0 -31.1 -34.4 72 100500 0 0 138 0 0 0 0 0 0 0 60 2.6 6 2 16.1 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3895200.0 -30.6 -33.9 73 100500 0 0 139 0 0 0 0 0 0 0 60 2.6 4 2 16.1 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3898800.0 -30.0 -33.3 73 100500 0 0 139 0 0 0 0 0 0 0 50 3.1 3 1 16.1 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3902400.0 -30.0 -33.3 73 100500 0 0 136 0 0 0 0 0 0 0 50 2.6 0 0 16.1 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3906000.0 -30.0 -33.9 69 100500 0 0 136 0 0 0 0 0 0 0 50 2.6 0 0 16.1 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3909600.0 -31.1 -34.4 72 100500 0 0 136 0 0 0 0 0 0 0 60 2.6 2 1 16.1 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3913200.0 -30.6 -34.4 69 100500 0 0 134 0 0 0 0 0 0 0 60 2.1 0 0 16.1 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3916800.0 -31.7 -35.0 72 100500 0 0 131 0 0 0 0 0 0 0 60 2.6 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3920400.0 -31.7 -38.9 49 100500 0 0 129 0 0 0 0 0 0 0 70 2.6 1 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3924000.0 -33.9 -38.3 64 100500 0 0 125 0 0 0 0 0 0 0 100 3.1 1 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3927600.0 -34.4 -38.3 68 100600 17 946 126 5 56 3 0 0 0 0 110 2.6 5 1 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3931200.0 -34.4 -38.3 68 100600 81 1402 124 30 228 18 3353 0 2016 587 150 1.5 3 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3934800.0 -32.8 -36.7 68 100600 128 1402 131 53 264 30 5887 0 3341 970 130 1.5 4 1 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3938400.0 -31.1 -35.0 69 100700 148 1402 137 69 242 44 7518 14 4810 1308 120 1.0 5 2 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3942000.0 -32.2 -36.1 68 100700 139 1402 132 61 188 43 6622 0 4683 1250 120 2.6 10 1 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3945600.0 -32.2 -36.1 68 100700 101 1402 132 41 131 31 4456 0 3380 900 0 0.0 10 1 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3949200.0 -32.8 -36.7 68 100700 40 1402 132 11 44 10 1236 0 1126 327 0 0.0 9 2 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3952800.0 -32.2 -36.1 68 100700 0 82 134 0 0 0 0 0 0 0 0 0.0 10 2 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3956400.0 -31.7 -35.0 72 100700 0 0 137 0 0 0 0 0 0 0 0 0.0 10 3 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3960000.0 -32.2 -35.6 72 100800 0 0 134 0 0 0 0 0 0 0 90 1.5 10 2 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3963600.0 -32.8 -36.7 68 100800 0 0 134 0 0 0 0 0 0 0 110 2.6 10 3 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3967200.0 -33.3 -36.7 72 100800 0 0 132 0 0 0 0 0 0 0 110 2.6 10 3 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3970800.0 -34.4 -38.3 68 100900 0 0 129 0 0 0 0 0 0 0 110 2.6 10 3 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3974400.0 -35.0 -39.4 64 100900 0 0 127 0 0 0 0 0 0 0 110 2.6 10 3 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3978000.0 -35.6 -39.4 67 100900 0 0 128 0 0 0 0 0 0 0 110 2.6 10 5 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3981600.0 -35.6 -39.4 67 100900 0 0 129 0 0 0 0 0 0 0 120 2.1 10 6 11.3 1830 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3985200.0 -35.0 -38.9 67 101000 0 0 141 0 0 0 0 0 0 0 100 2.6 10 10 11.3 1830 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3988800.0 -34.4 -38.9 64 100900 0 0 142 0 0 0 0 0 0 0 120 2.1 10 10 11.3 1830 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3992400.0 -35.0 -38.9 67 100900 0 0 132 0 0 0 0 0 0 0 120 2.1 7 7 11.3 1830 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3996000.0 -36.1 -40.0 67 100900 0 0 124 0 0 0 0 0 0 0 120 1.5 3 3 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3999600.0 -36.1 -40.0 67 100900 0 0 119 0 0 0 0 0 0 0 100 1.5 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +4003200.0 -36.7 -41.1 63 101000 0 0 117 0 0 0 0 0 0 0 110 2.1 0 0 16.1 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +4006800.0 -36.7 -41.1 63 100900 0 0 120 0 0 0 0 0 0 0 130 1.5 3 1 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +4010400.0 -36.7 -41.1 63 101000 0 0 120 0 0 0 0 0 0 0 110 1.5 4 1 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +4014000.0 -36.7 -41.1 63 100900 22 1086 120 10 127 5 1158 0 579 175 100 1.5 4 1 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +4017600.0 -35.0 -39.4 64 101000 89 1401 124 34 188 22 3763 0 2441 693 60 2.1 4 1 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +4021200.0 -36.1 -40.6 63 101000 136 1401 119 66 441 25 7481 0 2839 868 80 2.6 2 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +4024800.0 -36.7 -41.1 63 101000 156 1401 117 79 479 27 9003 0 3083 958 60 2.6 2 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +4028400.0 -36.1 -40.0 67 101000 147 1401 119 72 404 31 8072 0 3484 1043 80 3.1 5 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +4032000.0 -36.7 -40.6 67 101000 109 1401 124 46 84 40 4923 0 4297 1057 80 3.1 10 4 4.8 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4035600.0 -36.1 -40.6 63 101000 48 1401 125 14 49 12 1564 0 1343 386 60 2.6 10 4 4.8 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4039200.0 -36.7 -41.1 63 101000 1 222 120 0 0 0 0 0 0 0 70 3.1 6 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4042800.0 -37.2 -39.8 75 101100 0 0 117 0 0 0 0 0 0 0 70 3.1 3 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4046400.0 -38.3 -39.8 85 101100 0 0 117 0 0 0 0 0 0 0 80 2.6 2 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4050000.0 -37.8 -41.5 66 101100 0 0 115 0 0 0 0 0 0 0 80 2.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4053600.0 -37.2 -40.2 71 101200 0 0 117 0 0 0 0 0 0 0 80 2.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4057200.0 -37.2 -40.3 71 101200 0 0 117 0 0 0 0 0 0 0 90 2.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4060800.0 -38.3 -41.9 67 101200 0 0 114 0 0 0 0 0 0 0 90 2.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4064400.0 -36.7 -40.6 67 101200 0 0 118 0 0 0 0 0 0 0 70 2.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4068000.0 -38.3 -40.7 76 101300 0 0 114 0 0 0 0 0 0 0 80 2.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4071600.0 -37.8 -42.0 62 101300 0 0 115 0 0 0 0 0 0 0 80 3.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4075200.0 -39.4 -40.5 88 101300 0 0 112 0 0 0 0 0 0 0 90 2.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4078800.0 -40.0 -40.6 93 101300 0 0 111 0 0 0 0 0 0 0 90 2.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4082400.0 -39.4 -42.1 74 101400 0 0 112 0 0 0 0 0 0 0 70 2.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4086000.0 -38.3 -40.8 75 101400 0 0 114 0 0 0 0 0 0 0 90 2.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4089600.0 -38.3 -40.7 76 101400 0 0 114 0 0 0 0 0 0 0 90 2.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4093200.0 -37.2 -42.2 57 101400 0 0 118 0 0 0 0 0 0 0 110 2.1 6 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4096800.0 -36.1 -40.6 63 101400 0 0 127 0 0 0 0 0 0 0 70 2.6 10 6 11.3 6100 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4100400.0 -35.0 -38.9 67 101400 28 1202 141 1 1 1 132 0 131 40 70 3.1 10 10 4.8 6100 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4104000.0 -34.4 -38.3 68 101400 97 1401 132 25 23 24 2766 0 2662 756 80 2.6 10 6 4.8 6100 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4107600.0 -33.3 -36.7 72 101400 144 1401 135 50 60 44 5436 0 4799 1291 60 2.6 10 5 6.4 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4111200.0 -32.8 -36.7 68 101400 164 1401 135 70 58 63 7469 955 6749 1639 70 2.6 10 4 8.0 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4114800.0 -33.9 -37.8 68 101400 155 1401 132 62 81 54 6668 717 5829 1486 70 2.6 10 5 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4118400.0 -33.9 -37.8 68 101400 117 1401 127 41 183 26 4576 0 2909 853 60 3.1 2 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4122000.0 -35.6 -39.4 67 101300 55 1401 121 13 99 9 1499 0 1039 317 80 3.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4125600.0 -36.7 -40.6 67 101300 6 339 118 1 2 1 0 0 0 0 80 3.1 0 0 6.4 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4129200.0 -36.7 -41.1 63 101200 0 0 117 0 0 0 0 0 0 0 80 3.6 0 0 6.4 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4132800.0 -36.7 -41.1 63 101200 0 0 117 0 0 0 0 0 0 0 70 3.1 0 0 6.4 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4136400.0 -35.0 -39.4 64 101200 0 0 122 0 0 0 0 0 0 0 60 3.6 0 0 6.4 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4140000.0 -35.6 -39.4 67 101100 0 0 121 0 0 0 0 0 0 0 50 3.6 0 0 6.4 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4143600.0 -36.1 -40.0 67 101100 0 0 119 0 0 0 0 0 0 0 60 3.1 0 0 6.4 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4147200.0 -36.1 -40.6 63 101100 0 0 119 0 0 0 0 0 0 0 50 3.1 0 0 6.4 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4150800.0 -36.1 -40.0 67 101100 0 0 119 0 0 0 0 0 0 0 50 3.1 0 0 6.4 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4154400.0 -36.1 -40.6 63 101000 0 0 119 0 0 0 0 0 0 0 50 3.6 0 0 6.4 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4158000.0 -36.7 -40.6 67 101000 0 0 118 0 0 0 0 0 0 0 60 3.1 0 0 6.4 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4161600.0 -36.1 -40.0 67 100900 0 0 119 0 0 0 0 0 0 0 50 3.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4165200.0 -36.1 -40.0 67 100900 0 0 119 0 0 0 0 0 0 0 50 3.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4168800.0 -35.6 -39.4 67 100900 0 0 121 0 0 0 0 0 0 0 50 3.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4172400.0 -34.4 -38.3 68 100900 0 0 124 0 0 0 0 0 0 0 50 4.1 1 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4176000.0 -34.4 -38.3 68 100800 0 0 128 0 0 0 0 0 0 0 40 4.1 6 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4179600.0 -33.9 -38.9 60 100800 0 0 129 0 0 0 0 0 0 0 40 4.1 6 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4183200.0 -32.8 -36.7 68 100800 0 0 132 0 0 0 0 0 0 0 30 4.1 6 2 6.4 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4186800.0 -33.3 -37.2 68 100800 35 1342 131 9 66 6 1047 0 698 214 40 3.6 5 2 6.4 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4190400.0 -31.7 -35.6 68 100700 105 1400 144 30 16 29 3288 0 3187 879 30 4.1 10 8 6.4 6100 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4194000.0 -30.6 -34.4 69 100700 152 1400 141 68 122 55 7290 1124 5919 1481 30 4.1 10 4 6.4 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4197600.0 -29.4 -32.8 73 100600 173 1400 145 77 84 67 8210 1677 7173 1736 30 4.1 10 4 6.4 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +4201200.0 -28.9 -32.2 73 100500 163 1400 148 70 71 62 7475 1103 6647 1624 30 3.6 10 5 4.8 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +4204800.0 -28.3 -31.1 77 100400 126 1400 156 37 20 35 4051 0 3843 1062 10 3.6 10 8 4.8 6100 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +4208400.0 -27.8 -31.1 73 100400 63 1400 165 10 34 9 1162 0 1047 323 360 3.6 10 10 4.8 6100 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +4212000.0 -27.8 -31.1 73 100300 6 455 165 1 0 1 0 0 0 0 360 4.1 10 10 4.8 6100 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +4215600.0 -27.2 -30.6 73 100300 0 0 167 0 0 0 0 0 0 0 60 4.1 10 10 4.8 2130 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +4219200.0 -27.8 -31.1 73 100300 0 0 165 0 0 0 0 0 0 0 60 4.1 10 10 11.3 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +4222800.0 -28.3 -31.7 73 100200 0 0 163 0 0 0 0 0 0 0 50 3.6 10 10 11.3 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +4226400.0 -28.3 -31.1 77 100200 0 0 163 0 0 0 0 0 0 0 40 3.1 10 10 11.3 980 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +4230000.0 -27.8 -30.6 77 100200 0 0 165 0 0 0 0 0 0 0 50 3.1 10 10 11.3 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +4233600.0 -27.2 -30.6 73 100100 0 0 167 0 0 0 0 0 0 0 70 3.1 10 10 11.3 910 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +4237200.0 -26.1 -29.4 74 100100 0 0 171 0 0 0 0 0 0 0 50 3.6 10 10 11.3 910 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +4240800.0 -26.7 -29.4 77 100100 0 0 169 0 0 0 0 0 0 0 60 3.1 10 10 11.3 980 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +4244400.0 -26.1 -29.4 74 100000 0 0 153 0 0 0 0 0 0 0 60 3.6 5 2 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +4248000.0 -25.6 -28.9 74 100000 0 0 154 0 0 0 0 0 0 0 50 3.6 4 2 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +4251600.0 -25.0 -27.8 78 99900 0 0 158 0 0 0 0 0 0 0 60 4.1 6 3 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +4255200.0 -25.0 -27.8 78 99800 0 0 158 0 0 0 0 0 0 0 50 4.1 6 3 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +4258800.0 -24.4 -27.2 78 99700 0 0 161 0 0 0 0 0 0 0 70 4.6 10 4 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +4262400.0 -25.0 -27.8 78 99700 0 0 157 0 0 0 0 0 0 0 70 3.6 7 2 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +4266000.0 -23.9 -27.8 70 99600 0 0 165 0 0 0 0 0 0 0 80 4.6 10 6 11.3 2440 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +4269600.0 -23.3 -26.7 74 99600 0 58 181 0 0 0 0 0 0 0 80 5.2 10 10 4.8 2440 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +4273200.0 -23.3 -26.1 78 99600 43 1400 181 7 1 7 812 0 812 248 90 4.1 10 10 1.6 90 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +4276800.0 -23.3 -26.7 74 99600 113 1400 181 23 0 23 2241 0 2256 772 90 4.6 10 10 2.0 760 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +4280400.0 -23.3 -26.1 78 99600 161 1400 181 33 1 33 3709 0 3718 1125 110 5.2 10 10 11.3 1130 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +4284000.0 -23.3 -26.1 78 99500 181 1400 170 75 28 72 7982 667 7694 1842 110 3.6 9 7 11.3 1130 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +4287600.0 -25.6 -28.9 74 99600 172 1400 172 39 4 38 4358 0 4258 1274 140 3.1 10 10 11.3 1520 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +4291200.0 -25.0 -27.8 78 99600 134 1400 170 57 46 53 6057 243 5654 1333 180 4.1 9 9 11.3 2440 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +4294800.0 -26.1 -28.9 78 99600 71 1400 163 22 30 20 2414 0 2200 605 190 4.6 9 8 11.3 2290 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +4298400.0 -28.3 -31.7 73 99700 7 595 148 1 6 1 0 0 0 0 210 4.1 6 4 11.3 2290 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +4302000.0 -28.9 -32.2 73 99700 0 0 148 0 0 0 0 0 0 0 210 3.1 6 5 11.3 2290 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +4305600.0 -30.6 -33.9 73 99800 0 0 140 0 0 0 0 0 0 0 210 3.1 5 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +4309200.0 -32.8 -36.7 68 99900 0 0 128 0 0 0 0 0 0 0 200 3.1 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +4312800.0 -33.3 -37.2 68 100000 0 0 127 0 0 0 0 0 0 0 200 1.5 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +4316400.0 -33.9 -38.3 64 100000 0 0 125 0 0 0 0 0 0 0 180 3.6 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +4320000.0 -32.8 -36.7 68 100000 0 0 137 0 0 0 0 0 0 0 190 3.1 8 6 11.3 6100 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +4323600.0 -33.3 -36.7 72 100100 0 0 132 0 0 0 0 0 0 0 220 3.1 7 3 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4327200.0 -31.7 -35.0 72 100200 0 0 134 0 0 0 0 0 0 0 230 1.5 3 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4330800.0 -30.6 -33.9 73 100200 0 0 137 0 0 0 0 0 0 0 230 1.5 3 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4334400.0 -29.4 -32.8 73 100200 0 0 143 0 0 0 0 0 0 0 220 2.1 4 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4338000.0 -28.3 -31.1 77 100300 0 0 146 0 0 0 0 0 0 0 220 2.1 4 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4341600.0 -27.2 -30.0 77 100300 0 0 153 0 0 0 0 0 0 0 240 2.6 7 5 8.0 2130 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4345200.0 -27.2 -30.6 73 100300 0 0 152 0 0 0 0 0 0 0 250 5.2 7 4 8.0 2130 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4348800.0 -27.2 -30.6 73 100400 0 0 167 0 0 0 0 0 0 0 290 5.2 10 10 8.0 2130 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4352400.0 -27.2 -33.3 56 100400 0 0 165 0 0 0 0 0 0 0 260 6.7 10 10 8.0 2130 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4356000.0 -27.8 -31.1 73 100400 1 198 165 0 0 0 0 0 0 0 270 6.7 10 10 2.0 2130 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4359600.0 -27.8 -31.1 73 100400 51 1399 165 9 2 9 1032 0 1034 313 260 7.2 10 10 4.8 2440 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4363200.0 -27.2 -30.6 73 100500 121 1399 167 27 9 26 3021 0 2916 863 270 6.2 10 10 3.2 2440 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4366800.0 -27.2 -30.6 73 100600 169 1399 167 67 2 67 7131 39 7160 1711 270 6.2 10 10 4.8 2440 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4370400.0 -27.8 -31.1 73 100600 189 1399 153 72 57 64 7775 1131 6938 1821 270 6.7 10 6 11.3 6100 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4374000.0 -28.9 -32.2 73 100700 180 1399 149 75 56 68 8019 1196 7300 1802 260 7.2 10 6 11.3 6100 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4377600.0 -28.3 -31.7 73 100700 142 1399 151 59 12 57 6265 115 6077 1424 270 8.8 10 6 11.3 6100 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +4381200.0 -28.3 -32.2 69 100800 79 1399 155 27 37 25 2930 0 2721 716 260 8.8 10 8 11.3 6100 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +4384800.0 -29.4 -32.8 73 101000 10 711 145 4 8 4 0 0 0 0 260 9.3 10 4 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +4388400.0 -29.4 -32.8 73 101000 0 0 145 0 0 0 0 0 0 0 270 9.3 10 4 6.4 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +4392000.0 -29.4 -32.8 73 101100 0 0 145 0 0 0 0 0 0 0 260 10.3 10 4 6.4 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +4395600.0 -29.4 -32.8 73 101300 0 0 152 0 0 0 0 0 0 0 270 9.3 10 8 6.4 6100 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +4399200.0 -29.4 -32.8 73 101400 0 0 155 0 0 0 0 0 0 0 260 9.8 10 9 6.4 6100 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +4402800.0 -29.4 -32.8 73 101500 0 0 159 0 0 0 0 0 0 0 250 5.2 10 10 6.4 6100 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +4406400.0 -30.6 -33.9 73 101600 0 0 143 0 0 0 0 0 0 0 240 4.1 10 5 6.4 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +4410000.0 -31.1 -35.0 69 101700 0 0 140 0 0 0 0 0 0 0 230 3.1 8 4 6.4 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4413600.0 -31.1 -34.4 72 101800 0 0 140 0 0 0 0 0 0 0 230 2.1 8 4 6.4 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4417200.0 -31.7 -35.0 72 101900 0 0 136 0 0 0 0 0 0 0 230 2.6 5 2 8.0 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4420800.0 -31.7 -35.0 72 102000 0 0 136 0 0 0 0 0 0 0 240 3.1 5 2 8.0 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4424400.0 -33.3 -37.2 68 102100 0 0 131 0 0 0 0 0 0 0 210 4.6 4 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4428000.0 -33.3 -37.8 64 102200 0 0 126 0 0 0 0 0 0 0 210 3.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4431600.0 -35.0 -39.4 64 102200 0 0 122 0 0 0 0 0 0 0 210 4.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4435200.0 -37.2 -39.7 64 102300 0 0 119 0 0 0 0 0 0 0 200 3.6 3 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4438800.0 -37.8 -41.5 64 102400 0 0 117 0 0 0 0 0 0 0 190 5.2 3 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4442400.0 -37.8 -40.2 64 102500 18 315 116 3 4 1 0 0 0 0 200 6.2 2 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4446000.0 -37.8 -40.6 63 102500 59 1398 116 19 227 11 2164 0 1254 377 200 5.7 2 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4449600.0 -37.2 -42.3 63 102600 130 1398 116 59 395 23 6707 0 2620 804 200 4.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4453200.0 -36.7 -41.1 63 102600 178 1398 117 91 497 30 10403 0 3436 1081 190 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4456800.0 -36.7 -41.1 63 102600 198 1398 117 105 527 32 12057 1109 3682 1174 190 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4460400.0 -36.1 -40.6 63 102700 189 1398 119 99 516 31 11346 0 3560 1129 210 3.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4464000.0 -36.1 -40.0 67 102700 150 1398 119 73 442 26 8318 0 2968 921 220 3.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4467600.0 -36.7 -40.6 67 102700 87 1398 118 34 305 16 3856 0 1818 547 230 1.5 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4471200.0 -36.1 -40.6 63 102700 14 827 119 8 90 3 0 0 0 0 180 4.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4474800.0 -37.2 -40.4 63 102700 0 0 117 0 0 0 0 0 0 0 180 3.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4478400.0 -38.9 -40.0 65 102700 0 0 114 0 0 0 0 0 0 0 150 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4482000.0 -38.9 -39.1 65 102700 0 0 114 0 0 0 0 0 0 0 160 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4485600.0 -38.3 -38.3 65 102700 0 0 116 0 0 0 0 0 0 0 180 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4489200.0 -40.0 -40.0 68 102700 0 0 112 0 0 0 0 0 0 0 170 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4492800.0 -40.0 -40.0 68 102800 0 0 112 0 0 0 0 0 0 0 150 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4496400.0 -38.9 -38.9 66 102800 0 0 114 0 0 0 0 0 0 0 160 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4500000.0 -38.9 -38.9 66 102700 0 0 114 0 0 0 0 0 0 0 170 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4503600.0 -38.9 -38.9 66 102700 0 0 114 0 0 0 0 0 0 0 160 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4507200.0 -38.9 -38.9 68 102700 0 0 114 0 0 0 0 0 0 0 170 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4510800.0 -39.4 -39.4 68 102700 0 0 113 0 0 0 0 0 0 0 160 3.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4514400.0 -40.6 -40.6 64 102700 0 0 110 0 0 0 0 0 0 0 150 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4518000.0 -40.0 -40.0 64 102700 0 0 112 0 0 0 0 0 0 0 160 3.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4521600.0 -39.4 -39.4 64 102600 0 0 113 0 0 0 0 0 0 0 150 2.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4525200.0 -40.6 -41.3 61 102600 0 0 110 0 0 0 0 0 0 0 110 2.6 0 0 4.8 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4528800.0 -40.0 -40.5 63 102600 30 431 111 5 29 2 0 0 0 0 120 3.6 0 0 3.2 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4532400.0 -38.9 -40.6 63 102600 67 1398 113 24 291 11 2536 15289 1825 218 110 4.1 0 0 3.2 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4536000.0 -37.2 -41.6 63 102600 138 1398 116 65 443 23 7428 0 2633 818 120 5.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4539600.0 -36.7 -41.1 63 102500 186 1398 117 99 534 29 11396 0 3344 1067 120 5.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4543200.0 -36.7 -40.6 67 102400 207 1398 118 114 508 41 12882 4624 4644 1441 120 5.2 4 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4546800.0 -35.6 -39.4 67 102300 197 1398 121 107 474 42 12014 3722 4728 1441 120 5.2 5 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4550400.0 -34.4 -38.3 68 102300 159 1398 124 79 403 35 8829 0 3921 1168 120 5.2 5 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4554000.0 -33.3 -37.2 68 102200 95 1398 135 45 24 43 4730 0 4538 975 110 6.2 10 6 11.3 6100 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4557600.0 -32.8 -36.7 68 102100 19 943 137 5 10 5 0 0 0 0 110 5.7 10 6 11.3 6100 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4561200.0 -32.2 -36.1 68 102000 0 0 136 0 0 0 0 0 0 0 100 5.7 10 4 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4564800.0 -31.7 -35.0 72 101900 0 0 137 0 0 0 0 0 0 0 90 5.2 6 3 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4568400.0 -29.4 -32.8 73 101800 0 0 145 0 0 0 0 0 0 0 80 5.7 6 4 11.3 6100 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4572000.0 -27.2 -30.6 73 101700 0 0 159 0 0 0 0 0 0 0 70 6.2 10 8 11.3 6100 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4575600.0 -25.0 -27.8 78 101600 0 0 175 0 0 0 0 0 0 0 80 7.7 10 10 11.3 6100 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4579200.0 -23.9 -26.7 78 101500 0 0 179 0 0 0 0 0 0 0 70 6.7 10 10 11.3 6100 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4582800.0 -22.8 -25.6 78 101400 0 0 178 0 0 0 0 0 0 0 70 7.2 10 9 11.3 6100 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4586400.0 -21.7 -25.0 75 101300 0 0 187 0 0 0 0 0 0 0 60 9.3 10 10 11.3 6100 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4590000.0 -20.6 -23.9 75 101100 0 0 191 0 0 0 0 0 0 0 70 10.3 10 10 11.3 3050 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4593600.0 -20.0 -22.8 79 100900 0 0 194 0 0 0 0 0 0 0 70 11.3 10 10 6.4 3050 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4597200.0 -20.6 -22.8 83 100700 0 0 192 0 0 0 0 0 0 0 80 11.8 10 10 6.4 3050 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +4600800.0 -20.6 -23.3 79 100600 0 0 191 0 0 0 0 0 0 0 80 11.3 10 10 6.4 2440 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +4604400.0 -20.0 -22.8 79 100600 0 0 194 0 0 0 0 0 0 0 90 10.8 10 10 6.4 2440 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +4608000.0 -20.6 -23.3 79 100400 0 0 191 0 0 0 0 0 0 0 80 12.4 10 10 6.4 2440 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +4611600.0 -21.7 -25.0 75 100400 0 0 187 0 0 0 0 0 0 0 80 11.8 10 10 4.8 700 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +4615200.0 -21.7 -24.4 78 100300 7 547 187 0 0 0 0 0 0 0 80 10.3 10 10 2.0 2440 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +4618800.0 -21.1 -23.9 79 100200 75 1397 189 11 1 11 1272 0 1274 394 80 10.8 10 10 0.8 2440 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +4622400.0 -21.1 -23.9 79 100100 147 1397 189 33 4 32 3689 0 3586 1067 90 10.8 10 10 0.8 2440 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4626000.0 -21.1 -23.9 79 100000 195 1397 189 43 1 43 4812 8 4825 1460 90 11.3 10 10 0.8 2440 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4629600.0 -21.7 -24.4 78 99900 215 1397 175 86 78 75 9275 2254 8121 2128 90 9.3 10 7 6.4 790 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +4633200.0 -21.7 -24.4 78 99800 206 1397 173 102 92 89 10791 3307 9458 2165 90 9.8 10 6 4.8 790 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +4636800.0 -21.1 -23.9 79 99800 167 1397 189 46 6 46 5047 27 5063 1426 90 7.7 10 10 4.8 2440 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +4640400.0 -20.6 -23.3 79 99600 103 1397 191 22 1 22 2462 0 2468 727 80 9.8 10 10 4.8 2440 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +4644000.0 -20.6 -22.8 83 99500 24 1059 192 2 0 2 193 0 194 77 80 9.3 10 10 4.8 2440 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +4647600.0 -20.0 -22.2 83 99400 0 0 194 0 0 0 0 0 0 0 80 9.3 10 10 4.8 2440 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +4651200.0 -19.4 -21.7 83 99300 0 0 196 0 0 0 0 0 0 0 80 9.3 10 10 2.4 310 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +4654800.0 -19.4 -21.7 83 99200 0 0 196 0 0 0 0 0 0 0 80 7.7 10 10 2.4 310 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +4658400.0 -18.9 -21.1 83 99000 0 0 198 0 0 0 0 0 0 0 80 8.2 10 10 2.4 310 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +4662000.0 -18.9 -21.1 83 99100 0 0 198 0 0 0 0 0 0 0 100 8.2 10 10 2.4 310 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +4665600.0 -18.9 -21.1 83 98900 0 0 198 0 0 0 0 0 0 0 70 6.7 10 10 2.4 240 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +4669200.0 -17.8 -20.0 83 98800 0 0 203 0 0 0 0 0 0 0 70 7.2 10 10 6.4 1070 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +4672800.0 -17.8 -20.0 83 98800 0 0 203 0 0 0 0 0 0 0 100 6.7 10 10 6.4 910 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +4676400.0 -17.2 -19.4 83 98800 0 0 205 0 0 0 0 0 0 0 110 5.7 10 10 6.4 1070 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +4680000.0 -17.8 -20.0 83 98700 0 0 188 0 0 0 0 0 0 0 110 4.6 9 6 11.3 2440 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +4683600.0 -16.7 -18.9 83 98700 0 0 190 0 0 0 0 0 0 0 110 4.1 10 5 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +4687200.0 -16.7 -18.9 83 98700 0 0 192 0 0 0 0 0 0 0 90 4.6 10 6 11.3 310 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4690800.0 -17.2 -18.9 87 98800 0 0 206 0 0 0 0 0 0 0 100 3.6 10 10 8.0 210 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4694400.0 -17.2 -18.9 87 98800 0 0 206 0 0 0 0 0 0 0 70 3.1 10 10 11.3 210 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4698000.0 -17.2 -20.6 76 98800 0 0 204 0 0 0 0 0 0 0 70 2.6 10 10 11.3 180 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4701600.0 -16.7 -18.3 87 98900 10 687 208 0 0 0 0 0 0 0 160 2.1 10 10 4.8 180 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4705200.0 -16.7 -18.3 87 99000 84 1396 208 23 0 23 2234 0 2249 699 170 2.6 10 10 3.2 400 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4708800.0 -16.7 -18.9 83 99100 156 1396 207 41 4 41 4512 0 4525 1287 170 3.6 10 10 6.4 370 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4712400.0 -16.1 -17.8 87 99300 204 1396 210 62 1 62 6757 20 6781 1875 220 2.6 10 10 3.2 340 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +4716000.0 -15.0 -16.7 87 99400 224 1396 215 73 2 73 7918 56 7948 2157 90 2.1 10 10 3.2 340 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +4719600.0 -16.1 -17.8 87 99400 214 1396 210 73 0 73 7170 0 7220 2096 110 2.1 10 10 8.0 340 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +4723200.0 -16.7 -18.3 87 99400 176 1396 208 59 0 59 5776 0 5816 1673 130 2.1 10 10 11.3 370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +4726800.0 -17.8 -20.0 83 99400 111 1396 186 40 39 37 4313 0 4003 1031 20 2.1 10 5 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +4730400.0 -16.7 -18.9 83 99500 30 1175 187 12 24 11 1316 0 1209 329 320 3.1 10 3 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +4734000.0 -17.8 -20.0 83 99500 0 0 183 0 0 0 0 0 0 0 360 1.5 10 3 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +4737600.0 -16.1 -18.3 83 99600 0 0 200 0 0 0 0 0 0 0 10 3.6 10 8 11.3 1520 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +4741200.0 -15.0 -16.7 87 99700 0 0 215 0 0 0 0 0 0 0 100 4.1 10 10 11.3 1520 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4744800.0 -17.2 -19.4 83 99700 0 0 200 0 0 0 0 0 0 0 50 3.1 10 9 11.3 370 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4748400.0 -16.1 -18.3 83 99700 0 0 210 0 0 0 0 0 0 0 40 4.6 10 10 11.3 370 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4752000.0 -16.1 -18.3 83 99800 0 0 204 0 0 0 0 0 0 0 40 3.6 10 9 11.3 370 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4755600.0 -16.1 -18.3 83 99900 0 0 210 0 0 0 0 0 0 0 40 3.6 10 10 11.3 400 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4759200.0 -16.1 -18.3 83 99900 0 0 210 0 0 0 0 0 0 0 30 5.7 10 10 11.3 400 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4762800.0 -16.7 -18.3 87 99900 0 0 208 0 0 0 0 0 0 0 20 4.6 10 10 11.3 400 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4766400.0 -17.2 -18.9 87 99900 0 0 200 0 0 0 0 0 0 0 30 4.6 10 9 11.3 610 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4770000.0 -16.7 -18.9 83 99900 0 0 207 0 0 0 0 0 0 0 30 5.7 10 10 11.3 610 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4773600.0 -16.7 -18.9 83 99900 0 0 207 0 0 0 0 0 0 0 30 6.7 10 10 11.3 520 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4777200.0 -17.2 -18.9 87 99800 0 0 206 0 0 0 0 0 0 0 30 7.2 10 10 11.3 150 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4780800.0 -17.2 -19.4 83 99800 0 0 205 0 0 0 0 0 0 0 40 7.2 10 10 11.3 310 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4784400.0 -17.2 -21.1 72 99700 0 0 204 0 0 0 0 0 0 0 40 6.7 10 10 11.3 310 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4788000.0 -16.7 -18.9 83 99700 14 803 207 1 0 1 0 0 0 0 40 6.2 10 10 1.6 240 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +4791600.0 -16.7 -18.9 83 99700 92 1396 207 18 0 18 1750 0 1761 608 40 7.2 10 10 1.6 270 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +4795200.0 -16.7 -18.3 87 99700 165 1396 208 33 1 33 3715 0 3723 1134 40 9.3 10 10 3.2 270 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +4798800.0 -16.7 -18.3 87 99600 213 1396 208 67 3 67 7284 71 7311 2002 40 9.3 10 10 4.8 340 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +4802400.0 -16.7 -18.3 87 99500 233 1396 208 61 2 61 6743 46 6765 1991 50 10.8 10 10 3.2 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +4806000.0 -15.6 -17.8 83 99500 223 1396 212 71 1 71 7716 27 7745 2121 50 11.3 10 10 3.2 270 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +4809600.0 -15.6 -17.2 87 99400 184 1396 212 53 1 52 5805 11 5714 1609 50 10.8 10 10 3.2 270 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +4813200.0 -15.0 -16.7 87 99400 120 1396 215 32 0 32 3117 0 3138 985 50 10.3 10 10 3.2 270 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +4816800.0 -15.0 -16.7 87 99300 37 1291 215 7 0 7 677 0 681 243 50 9.3 10 10 4.8 270 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +4820400.0 -14.4 -16.7 83 99300 0 0 217 0 0 0 0 0 0 0 50 9.3 10 10 4.8 270 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +4824000.0 -14.4 -16.1 87 99200 0 0 217 0 0 0 0 0 0 0 50 9.3 10 10 4.8 270 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +4827600.0 -15.6 -17.2 87 99200 0 0 202 0 0 0 0 0 0 0 50 8.8 8 8 4.8 270 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4831200.0 -15.6 -17.2 87 99100 0 0 202 0 0 0 0 0 0 0 50 7.2 10 8 11.3 1520 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4834800.0 -15.0 -16.7 87 99100 0 0 215 0 0 0 0 0 0 0 50 8.2 10 10 3.2 240 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4838400.0 -15.6 -17.2 87 99100 0 0 212 0 0 0 0 0 0 0 70 8.2 10 10 3.2 270 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4842000.0 -15.6 -17.8 83 99100 0 0 212 0 0 0 0 0 0 0 70 7.2 10 10 6.4 240 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4845600.0 -16.1 -17.8 87 99100 0 0 210 0 0 0 0 0 0 0 60 7.7 10 10 6.4 240 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4849200.0 -16.7 -18.3 87 99100 0 0 198 0 0 0 0 0 0 0 50 8.2 10 8 3.2 240 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4852800.0 -16.7 -18.3 87 99000 0 0 191 0 0 0 0 0 0 0 70 7.2 10 5 4.8 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4856400.0 -16.1 -18.3 83 99000 0 0 210 0 0 0 0 0 0 0 70 7.7 10 10 4.8 370 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4860000.0 -16.1 -17.8 87 99000 0 0 210 0 0 0 0 0 0 0 70 7.7 10 10 4.8 270 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4863600.0 -15.6 -17.2 87 99000 0 0 212 0 0 0 0 0 0 0 60 7.2 10 10 8.0 240 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4867200.0 -15.6 -17.2 87 99000 0 0 212 0 0 0 0 0 0 0 60 7.7 10 10 8.0 240 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4870800.0 -15.0 -17.8 80 99000 0 0 214 0 0 0 0 0 0 0 70 6.2 10 10 3.2 240 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4874400.0 -14.4 -16.7 83 99000 19 918 217 5 0 5 0 0 0 0 60 6.7 10 10 1.6 210 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +4878000.0 -13.9 -15.6 87 99000 101 1395 219 31 0 31 3015 0 3035 898 80 6.2 10 10 2.0 210 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +4881600.0 -13.9 -15.0 91 99000 173 1395 220 71 0 71 6947 0 6995 1773 90 4.6 10 10 0.8 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +4885200.0 -12.8 -14.4 88 99000 221 1395 213 86 40 80 9244 1259 8634 2232 100 5.2 10 8 3.2 1130 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +4888800.0 -12.8 -14.4 88 99100 241 1395 218 104 26 100 11063 1124 10686 2576 110 5.7 10 9 2.4 610 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +4892400.0 -12.8 -14.4 88 99100 231 1395 218 118 67 107 12426 3098 11322 2503 120 6.2 10 9 11.3 980 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +4896000.0 -12.8 -15.0 84 99100 193 1395 217 79 81 68 8494 1758 7340 1893 110 5.2 9 9 11.3 3050 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +4899600.0 -13.9 -15.6 87 99100 128 1395 209 44 37 41 4757 0 4448 1169 120 6.7 8 8 11.3 3660 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4903200.0 -15.6 -17.2 87 99100 45 1395 202 11 10 11 1230 0 1233 356 120 7.2 8 8 11.3 3660 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4906800.0 -16.7 -18.9 83 99200 0 12 190 0 0 0 0 0 0 0 110 5.7 5 5 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4910400.0 -18.9 -21.1 83 99200 0 0 182 0 0 0 0 0 0 0 120 4.1 5 5 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4914000.0 -19.4 -21.7 83 99300 0 0 179 0 0 0 0 0 0 0 140 4.1 4 4 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +4917600.0 -13.9 -15.6 87 99400 0 0 209 0 0 0 0 0 0 0 220 4.1 8 8 11.3 1310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +4921200.0 -11.1 -12.8 88 99500 0 0 232 0 0 0 0 0 0 0 220 6.2 10 10 11.3 1520 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +4924800.0 -6.7 -7.8 92 99600 0 0 252 0 0 0 0 0 0 0 260 8.2 10 10 11.3 1520 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +4928400.0 -7.2 -8.3 92 99900 0 0 250 0 0 0 0 0 0 0 290 7.2 10 10 11.3 1520 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +4932000.0 -7.2 -8.9 88 100000 0 0 249 0 0 0 0 0 0 0 290 7.2 10 10 11.3 910 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +4935600.0 -7.2 -8.9 88 100200 0 0 249 0 0 0 0 0 0 0 290 6.7 10 10 11.3 980 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +4939200.0 -7.8 -9.4 88 100200 0 0 247 0 0 0 0 0 0 0 310 5.2 10 10 11.3 520 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +4942800.0 -8.9 -10.0 92 100300 0 0 242 0 0 0 0 0 0 0 310 4.1 10 10 11.3 640 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +4946400.0 -9.4 -11.1 88 100500 0 0 239 0 0 0 0 0 0 0 310 4.1 10 10 11.3 490 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +4950000.0 -10.0 -11.7 88 100500 0 0 236 0 0 0 0 0 0 0 320 3.6 10 10 11.3 610 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +4953600.0 -10.6 -12.8 84 100600 0 0 233 0 0 0 0 0 0 0 310 3.1 10 10 8.0 1220 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +4957200.0 -11.1 -13.3 84 100700 0 0 231 0 0 0 0 0 0 0 0 0.0 10 10 1.6 550 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +4960800.0 -16.1 -18.3 83 100800 25 1034 196 4 9 3 482 0 361 112 200 4.1 10 7 8.0 430 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +4964400.0 -19.4 -21.7 83 100900 110 1394 180 38 87 31 4154 0 3399 932 190 3.6 8 5 9.7 1220 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +4968000.0 -15.6 -17.2 87 101000 182 1394 212 35 3 34 3966 0 3862 1200 210 4.6 10 10 1.6 460 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +4971600.0 -13.9 -15.6 87 101100 230 1394 203 104 64 94 11071 2537 10051 2433 290 5.7 10 6 2.4 790 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4975200.0 -16.1 -18.3 83 101200 250 1394 191 131 365 67 14473 10416 7427 2191 280 6.7 6 4 8.0 790 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4978800.0 -17.2 -19.4 83 101300 240 1394 187 117 260 73 12783 7884 8005 2253 270 4.6 8 4 9.7 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4982400.0 -17.8 -20.6 79 101400 201 1394 179 94 374 41 10590 2760 4631 1428 280 5.7 2 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4986000.0 -20.0 -22.8 79 101400 136 1394 168 62 393 25 7025 0 2838 869 310 4.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4989600.0 -22.2 -25.0 78 101500 52 1394 160 18 203 9 2066 0 1034 314 310 4.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4993200.0 -23.3 -26.1 78 101500 0 105 157 0 0 0 0 0 0 0 320 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +4996800.0 -22.8 -26.1 74 101600 0 0 158 0 0 0 0 0 0 0 310 2.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5000400.0 -24.4 -27.2 78 101700 0 0 153 0 0 0 0 0 0 0 310 2.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5004000.0 -29.4 -32.8 73 101700 0 0 138 0 0 0 0 0 0 0 140 1.5 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5007600.0 -30.6 -33.3 77 101800 0 0 135 0 0 0 0 0 0 0 140 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5011200.0 -30.6 -33.3 77 101800 0 0 135 0 0 0 0 0 0 0 150 4.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5014800.0 -28.9 -31.7 77 101900 0 0 140 0 0 0 0 0 0 0 140 3.6 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5018400.0 -33.3 -36.7 72 101900 0 0 127 0 0 0 0 0 0 0 150 4.1 0 0 1.6 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5022000.0 -33.9 -37.8 68 102000 0 0 125 0 0 0 0 0 0 0 130 4.1 0 0 1.6 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5025600.0 -33.3 -37.2 68 102000 0 0 127 0 0 0 0 0 0 0 130 4.1 0 0 1.2 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5029200.0 -32.2 -36.1 68 102000 0 0 136 0 0 0 0 0 0 0 130 3.6 4 4 0.8 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5032800.0 -31.7 -35.6 68 102100 0 0 138 0 0 0 0 0 0 0 130 4.6 4 4 0.8 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5036400.0 -31.1 -35.0 69 102100 0 0 140 0 0 0 0 0 0 0 120 3.6 4 4 0.8 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5040000.0 -30.0 -32.8 77 102100 0 0 141 0 0 0 0 0 0 0 110 4.6 5 2 2.0 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5043600.0 -29.4 -35.6 55 102100 0 0 142 0 0 0 0 0 0 0 90 3.1 6 3 2.0 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5047200.0 -30.6 -34.4 69 102100 31 1150 140 12 51 9 1341 0 1007 288 80 3.6 6 3 8.0 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5050800.0 -28.9 -32.8 69 102100 119 1394 145 46 59 42 4936 0 4523 1132 90 4.1 10 3 8.0 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5054400.0 -28.9 -32.2 73 102100 191 1394 144 93 227 63 10067 4428 6845 1820 80 5.2 10 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5058000.0 -27.2 -30.6 73 102100 239 1394 149 134 352 75 14610 11193 8208 2280 90 4.1 10 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5061600.0 -25.0 -27.8 78 102100 259 1394 158 125 237 82 13634 8792 8978 2509 60 4.1 10 3 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5065200.0 -23.3 -26.1 78 102000 249 1394 164 139 194 105 14785 9114 11219 2683 50 5.2 10 3 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5068800.0 -22.8 -25.0 82 102000 210 1394 164 113 244 77 12132 7204 8300 2115 50 4.1 10 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5072400.0 -21.7 -24.4 78 102000 145 1394 178 49 41 45 5317 0 4899 1310 50 4.1 10 8 11.3 6100 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5076000.0 -18.9 -21.7 79 102000 60 1394 198 16 12 15 1777 0 1669 475 60 4.1 10 10 11.3 3050 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5079600.0 -18.3 -20.6 83 102000 1 221 184 0 0 0 0 0 0 0 60 5.2 10 5 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5083200.0 -17.8 -19.4 87 102000 0 0 188 0 0 0 0 0 0 0 50 5.2 10 6 11.3 6100 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5086800.0 -17.2 -19.4 83 101900 0 0 205 0 0 0 0 0 0 0 70 6.2 10 10 11.3 910 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5090400.0 -19.2 -21.6 83 101800 0 0 181 0 0 0 0 0 0 0 60 5.3 10 5 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5094000.0 -21.4 -23.9 83 101800 0 0 175 0 0 0 0 0 0 0 70 4.4 10 6 11.3 790 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5097600.0 -23.5 -26.2 87 101700 0 0 169 0 0 0 0 0 0 0 90 3.5 10 7 4.8 790 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5101200.0 -25.7 -28.6 77 101700 0 0 149 0 0 0 0 0 0 0 260 2.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5104800.0 -27.8 -30.9 77 101700 0 0 143 0 0 0 0 0 0 0 260 1.8 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5108400.0 -30.0 -33.2 72 101700 0 0 136 0 0 0 0 0 0 0 250 0.9 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5112000.0 -32.2 -35.6 72 101600 0 0 130 0 0 0 0 0 0 0 0 0.0 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5115600.0 -32.2 -35.6 72 101600 0 0 130 0 0 0 0 0 0 0 230 2.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5119200.0 -32.8 -36.1 72 101600 0 0 128 0 0 0 0 0 0 0 200 4.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5122800.0 -32.8 -36.1 72 101600 0 0 128 0 0 0 0 0 0 0 200 3.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5126400.0 -33.3 -36.7 72 101500 0 0 127 0 0 0 0 0 0 0 190 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5130000.0 -33.9 -36.7 76 101500 0 0 126 0 0 0 0 0 0 0 210 2.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5133600.0 -35.0 -38.3 71 101500 43 1335 122 14 149 7 1613 0 807 245 180 2.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5137200.0 -34.4 -37.2 76 101400 132 1393 124 56 374 23 6356 0 2615 799 170 2.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5140800.0 -33.3 -36.1 76 101400 205 1393 127 104 517 32 11954 1319 3685 1179 160 2.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5144400.0 -32.2 -35.0 76 101300 253 1393 130 140 593 37 16229 8773 4297 1412 110 2.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5148000.0 -31.7 -34.4 76 101300 272 1393 132 155 618 38 18061 11569 4436 1476 120 3.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5151600.0 -30.6 -33.3 77 101200 262 1393 135 148 607 38 17181 10277 4420 1460 130 3.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5155200.0 -31.7 -35.0 72 101100 223 1393 134 104 343 51 11607 5733 5708 1722 80 3.1 7 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5158800.0 -31.1 -34.4 72 101100 158 1393 142 50 20 48 5426 80 5227 1397 90 4.6 9 6 11.3 210 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5162400.0 -30.6 -33.3 77 101000 72 1393 144 24 32 23 2595 0 2494 643 80 3.6 10 6 11.3 240 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5166000.0 -31.7 -35.0 72 101000 12 383 134 2 5 1 0 0 0 0 80 5.2 3 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5169600.0 -32.8 -36.1 72 100900 0 0 128 0 0 0 0 0 0 0 80 5.2 1 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5173200.0 -32.8 -37.8 61 100900 0 0 127 0 0 0 0 0 0 0 90 5.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5176800.0 -32.8 -36.7 68 100800 0 0 128 0 0 0 0 0 0 0 90 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5180400.0 -32.8 -36.7 68 100800 0 0 128 0 0 0 0 0 0 0 80 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5184000.0 -31.1 -34.4 72 100700 0 0 133 0 0 0 0 0 0 0 60 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5187600.0 -29.4 -32.2 77 100600 0 0 138 0 0 0 0 0 0 0 60 6.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5191200.0 -28.9 -32.2 73 100600 0 0 139 0 0 0 0 0 0 0 50 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5194800.0 -28.9 -32.2 73 100600 0 0 139 0 0 0 0 0 0 0 30 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5198400.0 -28.3 -31.1 77 100500 0 0 142 0 0 0 0 0 0 0 40 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5202000.0 -27.2 -30.0 77 100500 0 0 150 0 0 0 0 0 0 0 30 5.2 3 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5205600.0 -27.2 -30.0 77 100500 0 0 151 0 0 0 0 0 0 0 40 5.2 4 3 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5209200.0 -27.8 -30.6 77 100500 0 0 149 0 0 0 0 0 0 0 30 5.7 4 3 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5212800.0 -27.8 -30.6 77 100500 0 0 149 0 0 0 0 0 0 0 30 5.7 6 3 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5216400.0 -27.8 -30.6 77 100500 0 58 149 0 0 0 0 0 0 0 30 4.6 6 3 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5220000.0 -27.8 -30.6 77 100500 51 1392 150 12 43 10 1357 0 1133 335 30 5.7 8 4 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5223600.0 -27.2 -30.0 77 100500 141 1392 151 56 103 46 6035 0 4975 1281 20 6.7 8 3 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5227200.0 -26.7 -29.4 77 100500 214 1392 153 104 325 56 11467 5794 6195 1793 20 6.7 7 3 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5230800.0 -27.2 -29.4 81 100500 262 1392 150 140 410 65 15559 11955 7247 2180 20 5.7 5 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5234400.0 -26.7 -29.4 77 100500 281 1392 149 155 504 57 17540 14226 6468 2055 20 5.7 4 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5238000.0 -26.7 -29.4 77 100500 271 1392 149 146 542 44 16806 11390 5076 1661 40 3.6 3 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5241600.0 -26.7 -28.9 82 100600 232 1392 152 114 346 59 12616 7648 6550 1929 30 4.1 7 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5245200.0 -26.7 -29.4 77 100600 166 1392 149 72 360 32 8118 0 3616 1103 40 3.6 5 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5248800.0 -27.8 -30.6 77 100600 80 1392 148 22 147 15 2483 0 1696 504 30 2.1 5 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5252400.0 -28.3 -30.6 81 100600 6 499 145 4 30 2 0 0 0 0 20 2.6 3 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5256000.0 -28.3 -31.1 77 100600 0 0 144 0 0 0 0 0 0 0 10 3.6 3 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5259600.0 -28.9 -32.8 69 100600 0 0 142 0 0 0 0 0 0 0 30 3.1 3 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5263200.0 -29.4 -32.8 73 100600 0 0 141 0 0 0 0 0 0 0 30 3.1 3 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5266800.0 -29.4 -32.2 77 100700 0 0 141 0 0 0 0 0 0 0 20 2.6 3 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5270400.0 -28.9 -32.2 73 100700 0 0 142 0 0 0 0 0 0 0 10 3.6 3 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5274000.0 -29.4 -32.2 77 100600 0 0 141 0 0 0 0 0 0 0 10 5.2 2 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5277600.0 -29.4 -32.8 73 100700 0 0 141 0 0 0 0 0 0 0 10 3.1 2 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5281200.0 -29.4 -32.8 73 100600 0 0 144 0 0 0 0 0 0 0 20 4.1 4 3 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5284800.0 -28.9 -31.7 77 100600 0 0 151 0 0 0 0 0 0 0 40 3.6 7 7 11.3 3350 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5288400.0 -28.9 -31.7 77 100600 0 0 161 0 0 0 0 0 0 0 50 3.6 10 10 11.3 3350 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5292000.0 -28.3 -31.1 77 100600 0 0 163 0 0 0 0 0 0 0 10 3.1 10 10 11.3 3050 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5295600.0 -28.3 -31.1 77 100500 0 0 163 0 0 0 0 0 0 0 30 4.1 10 10 11.3 3050 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5299200.0 -28.3 -31.1 77 100400 0 0 149 0 0 0 0 0 0 0 40 4.6 7 4 11.3 6100 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5302800.0 -28.3 -31.1 77 100400 1 174 156 0 0 0 0 0 0 0 40 5.2 8 8 11.3 5490 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5306400.0 -28.9 -31.7 77 100400 59 1392 154 8 14 7 940 0 823 256 60 5.2 10 8 11.3 5490 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5310000.0 -28.3 -31.1 77 100400 150 1392 156 47 24 45 5104 9 4903 1314 50 5.7 10 8 11.3 5490 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5313600.0 -27.8 -30.6 77 100300 223 1392 165 53 5 52 5904 85 5810 1744 50 5.2 10 10 11.3 5490 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5317200.0 -27.2 -30.0 77 100300 271 1392 167 102 0 102 10070 0 10142 2820 60 4.6 10 10 11.3 5490 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +5320800.0 -26.7 -29.4 77 100200 290 1392 169 87 9 85 9558 370 9374 2717 50 6.2 10 10 3.2 2740 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +5324400.0 -26.7 -28.9 82 100200 280 1392 169 71 7 70 7897 235 7812 2365 60 6.7 10 10 3.2 2740 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +5328000.0 -26.1 -28.9 78 100100 240 1392 171 56 5 55 6256 107 6163 1874 50 6.2 10 10 3.2 3660 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +5331600.0 -26.1 -28.9 78 100100 175 1392 171 48 1 48 5258 7 5275 1477 50 7.7 10 10 2.0 3660 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +5335200.0 -26.1 -28.9 78 100000 89 1392 171 18 1 18 2017 0 2021 593 50 7.2 10 10 2.0 3660 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +5338800.0 -26.1 -28.3 82 100000 9 615 171 2 0 2 0 0 0 0 60 6.7 10 10 3.2 3660 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +5342400.0 -25.6 -27.8 82 100000 0 0 173 0 0 0 0 0 0 0 50 7.2 10 10 3.2 3660 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +5346000.0 -25.6 -28.9 74 99900 0 0 172 0 0 0 0 0 0 0 50 7.7 10 10 3.2 3660 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +5349600.0 -25.0 -27.8 78 99900 0 0 175 0 0 0 0 0 0 0 60 5.2 10 10 8.0 3660 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +5353200.0 -25.0 -27.2 82 99900 0 0 175 0 0 0 0 0 0 0 60 4.1 10 10 3.2 1340 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +5356800.0 -24.4 -27.2 78 99900 0 0 177 0 0 0 0 0 0 0 70 3.1 10 10 4.8 1130 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +5360400.0 -24.4 -26.7 82 99800 0 0 177 0 0 0 0 0 0 0 50 2.1 10 10 8.0 1070 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +5364000.0 -25.6 -27.8 82 99800 0 0 173 0 0 0 0 0 0 0 60 1.5 10 10 8.0 1010 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +5367600.0 -26.7 -29.4 77 99800 0 0 169 0 0 0 0 0 0 0 90 1.5 10 10 8.0 910 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +5371200.0 -26.7 -28.9 82 99800 0 0 169 0 0 0 0 0 0 0 0 0.0 10 10 11.3 820 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +5374800.0 -26.1 -28.3 82 99800 0 0 171 0 0 0 0 0 0 0 190 3.6 10 10 11.3 2130 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +5378400.0 -28.9 -31.7 77 99900 0 0 151 0 0 0 0 0 0 0 210 4.6 7 7 11.3 2130 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5382000.0 -29.4 -32.2 77 99800 0 0 152 0 0 0 0 0 0 0 230 5.2 8 8 11.3 2440 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5385600.0 -27.8 -30.6 77 99900 0 0 150 0 0 0 0 0 0 0 230 3.6 4 4 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5389200.0 -27.8 -30.6 77 99900 2 290 149 0 0 0 0 0 0 0 230 4.1 4 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5392800.0 -28.3 -31.1 77 99900 68 1391 153 12 24 11 1372 0 1260 382 210 5.7 8 7 11.3 2740 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5396400.0 -28.9 -31.7 77 100000 159 1391 149 45 66 38 4983 0 4220 1223 210 6.7 8 6 3.2 2740 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5400000.0 -28.3 -31.1 77 100000 232 1391 149 103 142 80 11113 4704 8666 2276 220 5.7 8 4 6.4 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5403600.0 -25.0 -27.8 78 100000 280 1391 158 142 230 97 15369 10399 10542 2836 240 2.6 7 3 8.0 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5407200.0 -25.0 -27.2 82 100100 299 1391 155 167 534 56 19044 16105 6403 2078 240 3.6 4 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5410800.0 -25.6 -27.8 82 100100 289 1391 150 167 638 39 19529 13829 4569 1535 270 7.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5414400.0 -26.1 -28.3 82 100100 249 1391 149 138 593 36 16008 7987 4184 1375 270 9.8 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5418000.0 -26.7 -29.4 77 100200 183 1391 146 90 488 29 10320 0 3332 1055 270 9.8 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5421600.0 -27.8 -30.6 77 100300 97 1391 143 36 301 17 4080 0 1930 582 270 10.3 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5425200.0 -28.3 -31.1 77 100300 12 707 142 6 62 2 0 0 0 0 260 9.8 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5428800.0 -28.9 -31.7 77 100400 0 0 140 0 0 0 0 0 0 0 260 6.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5432400.0 -28.3 -32.2 69 100400 0 0 141 0 0 0 0 0 0 0 260 7.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5436000.0 -28.3 -31.7 73 100500 0 0 141 0 0 0 0 0 0 0 260 7.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5439600.0 -28.3 -31.7 73 100500 0 0 141 0 0 0 0 0 0 0 260 8.8 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5443200.0 -28.3 -31.1 77 100600 0 0 142 0 0 0 0 0 0 0 260 7.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5446800.0 -28.3 -31.7 73 100600 0 0 141 0 0 0 0 0 0 0 260 8.8 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5450400.0 -28.3 -31.7 73 100700 0 0 141 0 0 0 0 0 0 0 270 9.8 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5454000.0 -28.3 -31.7 73 100700 0 0 141 0 0 0 0 0 0 0 260 9.3 0 0 4.8 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5457600.0 -28.9 -31.7 77 100800 0 0 140 0 0 0 0 0 0 0 260 9.8 0 0 4.8 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5461200.0 -28.9 -31.7 77 100800 0 0 146 0 0 0 0 0 0 0 260 8.2 6 3 4.8 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5464800.0 -28.9 -32.2 73 100900 0 0 144 0 0 0 0 0 0 0 260 8.8 5 2 4.8 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5468400.0 -28.9 -31.7 77 100900 0 0 142 0 0 0 0 0 0 0 260 8.8 3 1 4.8 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5472000.0 -29.4 -32.2 77 101000 0 0 138 0 0 0 0 0 0 0 260 8.2 1 0 4.8 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5475600.0 -29.4 -32.2 77 101000 18 405 138 3 13 1 0 0 0 0 260 10.3 0 0 3.2 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5479200.0 -29.4 -32.2 77 101100 77 1390 138 24 252 12 2749 0 1376 419 270 9.8 0 0 3.2 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +5482800.0 -29.4 -32.2 77 101100 168 1390 138 80 459 28 9128 0 3201 1000 270 10.3 0 0 3.2 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +5486400.0 -28.9 -31.7 77 101200 241 1390 140 133 586 36 15381 7067 4171 1362 270 9.8 0 0 4.8 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +5490000.0 -28.3 -31.7 73 101200 289 1390 141 171 651 40 19961 14495 4678 1569 270 9.8 0 0 4.8 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +5493600.0 -28.3 -31.1 77 101300 308 1390 142 187 674 42 21886 17538 4925 1666 280 7.2 0 0 4.8 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +5497200.0 -28.3 -31.1 77 101300 298 1390 142 178 663 41 20799 15932 4800 1616 280 7.2 0 0 6.4 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +5500800.0 -28.3 -31.1 77 101400 258 1390 142 147 612 37 17074 9585 4306 1421 270 8.8 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +5504400.0 -28.9 -31.7 77 101400 192 1390 140 97 507 31 11111 0 3558 1127 280 7.2 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +5508000.0 -30.0 -32.8 77 101500 105 1390 137 41 322 19 4636 0 2153 648 270 7.2 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +5511600.0 -30.6 -33.3 77 101500 17 822 135 8 75 3 0 0 0 0 270 7.7 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +5515200.0 -31.1 -33.9 76 101600 0 0 133 0 0 0 0 0 0 0 260 5.2 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +5518800.0 -30.6 -34.4 69 101600 0 0 134 0 0 0 0 0 0 0 270 6.7 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +5522400.0 -30.6 -33.9 73 101600 0 0 135 0 0 0 0 0 0 0 270 6.7 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +5526000.0 -31.1 -34.4 72 101700 0 0 133 0 0 0 0 0 0 0 270 6.2 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +5529600.0 -32.2 -35.6 72 101700 0 0 130 0 0 0 0 0 0 0 260 6.2 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +5533200.0 -31.7 -35.0 72 101700 0 0 131 0 0 0 0 0 0 0 250 4.1 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +5536800.0 -31.7 -34.4 76 101700 0 0 132 0 0 0 0 0 0 0 260 6.7 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +5540400.0 -31.7 -35.0 72 101800 0 0 131 0 0 0 0 0 0 0 250 2.1 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +5544000.0 -31.7 -35.0 72 101800 0 0 131 0 0 0 0 0 0 0 250 2.1 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +5547600.0 -31.7 -35.0 72 101800 0 0 131 0 0 0 0 0 0 0 250 3.1 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +5551200.0 -32.2 -35.6 72 101800 0 0 130 0 0 0 0 0 0 0 230 3.6 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +5554800.0 -35.6 -39.4 67 101900 0 0 121 0 0 0 0 0 0 0 210 5.7 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +5558400.0 -34.4 -38.3 68 101900 0 0 124 0 0 0 0 0 0 0 240 1.5 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +5562000.0 -33.3 -36.7 72 102000 7 521 127 3 15 1 0 0 0 0 250 2.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5565600.0 -33.3 -36.7 72 102000 86 1389 127 26 178 16 2934 0 1809 538 240 2.1 1 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5569200.0 -33.9 -37.2 72 102100 177 1389 125 80 374 35 9010 0 3951 1205 230 1.5 1 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5572800.0 -31.1 -33.9 76 102100 250 1389 138 90 176 59 10039 4390 6601 2002 270 5.7 3 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5576400.0 -30.6 -33.3 77 102100 298 1389 139 157 410 72 17539 15049 8070 2486 270 4.6 3 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5580000.0 -29.4 -32.8 73 102200 317 1389 143 163 420 70 18371 15974 7914 2511 290 5.2 3 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5583600.0 -29.4 -32.8 73 102200 306 1389 138 173 582 49 19993 16639 5676 1888 250 2.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5587200.0 -30.0 -32.8 77 102200 266 1389 137 144 540 44 16552 11042 5069 1653 260 2.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5590800.0 -31.7 -35.0 72 102300 200 1389 131 96 431 37 10887 2002 4206 1311 220 1.5 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5594400.0 -33.9 -37.2 72 102300 113 1389 125 41 252 22 4611 0 2479 739 210 3.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5598000.0 -35.0 -38.3 71 102400 21 915 122 7 50 4 0 0 0 0 210 4.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5601600.0 -35.6 -39.4 67 102400 0 0 121 0 0 0 0 0 0 0 200 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5605200.0 -36.7 -41.7 59 102400 0 0 117 0 0 0 0 0 0 0 200 3.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5608800.0 -36.7 -40.6 67 102400 0 0 118 0 0 0 0 0 0 0 210 2.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5612400.0 -37.2 -40.6 67 102400 0 0 117 0 0 0 0 0 0 0 170 3.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5616000.0 -36.7 -40.6 67 102400 0 0 118 0 0 0 0 0 0 0 190 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5619600.0 -36.1 -40.0 67 102400 0 0 119 0 0 0 0 0 0 0 190 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5623200.0 -37.8 -39.6 69 102300 0 0 116 0 0 0 0 0 0 0 170 2.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5626800.0 -38.3 -40.4 68 102300 0 0 115 0 0 0 0 0 0 0 160 3.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5630400.0 -38.3 -39.7 70 102300 0 0 115 0 0 0 0 0 0 0 160 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5634000.0 -37.2 -39.7 70 102300 0 0 117 0 0 0 0 0 0 0 170 3.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5637600.0 -38.3 -39.6 71 102300 0 0 115 0 0 0 0 0 0 0 140 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5641200.0 -37.2 -41.7 67 102200 0 0 116 0 0 0 0 0 0 0 130 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5644800.0 -39.4 -41.3 69 102200 0 0 112 0 0 0 0 0 0 0 120 3.1 0 0 8.0 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5648400.0 -39.4 -40.2 72 102200 10 636 113 6 53 2 0 0 0 0 140 3.1 0 0 8.0 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5652000.0 -38.3 -39.8 70 102100 95 1389 115 34 302 16 3867 0 1823 552 150 3.6 0 0 9.7 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5655600.0 -36.1 -39.4 71 102100 187 1389 120 92 496 29 10569 0 3338 1060 140 4.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5659200.0 -35.0 -38.9 67 102100 259 1389 122 145 611 36 16891 9581 4201 1392 110 3.1 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5662800.0 -34.4 -37.8 72 102000 307 1389 124 183 670 40 21496 16932 4707 1598 120 3.6 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5666400.0 -33.3 -37.2 68 102000 326 1389 127 200 691 42 23546 19890 4954 1695 100 4.6 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5670000.0 -32.2 -36.1 68 101900 315 1389 130 191 680 41 22452 18258 4828 1644 110 4.6 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5673600.0 -31.7 -34.4 76 101800 275 1389 132 159 634 37 18588 11956 4333 1449 80 4.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5677200.0 -31.7 -35.0 72 101800 209 1389 131 109 538 31 12587 1594 3586 1156 70 4.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5680800.0 -32.2 -35.6 72 101800 122 1389 130 51 367 21 5791 0 2389 728 70 6.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5684400.0 -33.3 -36.7 72 101700 27 1030 127 11 117 5 1270 0 578 174 80 4.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5688000.0 -33.3 -36.7 72 101700 0 0 127 0 0 0 0 0 0 0 80 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5691600.0 -32.2 -36.7 64 101600 0 0 129 0 0 0 0 0 0 0 70 5.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5695200.0 -31.7 -35.0 72 101600 0 0 131 0 0 0 0 0 0 0 60 5.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5698800.0 -31.7 -35.0 72 101500 0 0 131 0 0 0 0 0 0 0 60 6.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5702400.0 -32.2 -35.6 72 101500 0 0 130 0 0 0 0 0 0 0 70 6.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5706000.0 -32.2 -35.6 72 101500 0 0 130 0 0 0 0 0 0 0 70 6.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5709600.0 -32.2 -35.6 72 101400 0 0 130 0 0 0 0 0 0 0 60 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5713200.0 -33.3 -36.7 72 101300 0 0 127 0 0 0 0 0 0 0 70 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5716800.0 -32.8 -35.6 76 101300 0 0 131 0 0 0 0 0 0 0 60 4.6 3 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5720400.0 -32.8 -35.6 76 101200 0 0 133 0 0 0 0 0 0 0 80 5.2 6 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5724000.0 -32.2 -35.0 76 101200 0 0 130 0 0 0 0 0 0 0 60 5.7 3 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5727600.0 -32.2 -35.6 72 101200 0 0 130 0 0 0 0 0 0 0 60 6.2 2 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5731200.0 -33.3 -36.1 76 101100 0 0 130 0 0 0 0 0 0 0 60 5.7 4 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5734800.0 -32.8 -35.6 76 101100 14 752 131 5 35 3 0 0 0 0 60 5.7 5 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5738400.0 -31.7 -35.0 72 101000 104 1388 134 37 225 22 4130 0 2461 718 70 5.7 5 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5742000.0 -30.6 -33.9 73 101000 196 1388 139 90 274 53 9887 3689 5841 1660 70 5.2 8 2 3.2 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5745600.0 -29.4 -32.2 77 101000 269 1388 143 136 356 70 15066 11544 7781 2317 70 5.7 8 2 6.4 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5749200.0 -28.3 -31.1 77 101000 316 1388 146 171 380 88 18908 17004 9766 2917 70 6.2 8 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5752800.0 -27.8 -30.6 77 101000 335 1388 148 196 421 98 21615 21037 10849 3218 80 5.7 8 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5756400.0 -27.8 -30.6 77 100900 324 1388 143 199 627 57 22855 21267 6563 2173 70 7.2 4 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5760000.0 -27.2 -29.4 81 100800 284 1388 148 149 508 48 17116 12626 5527 1810 60 4.6 2 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5763600.0 -27.2 -30.0 77 100800 218 1388 148 112 499 37 12799 3993 4237 1348 70 5.2 2 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5767200.0 -27.8 -30.6 77 100800 130 1388 143 54 354 23 6120 0 2612 796 60 4.6 1 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5770800.0 -28.3 -31.1 77 100800 33 1145 144 11 101 6 1264 0 690 207 60 5.7 2 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5774400.0 -27.8 -30.6 77 100800 0 0 149 0 0 0 0 0 0 0 60 4.6 6 3 9.7 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5778000.0 -28.3 -31.7 73 100700 0 0 147 0 0 0 0 0 0 0 60 6.2 7 3 9.7 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5781600.0 -28.3 -31.1 77 100700 0 0 150 0 0 0 0 0 0 0 60 5.7 8 5 9.7 340 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5785200.0 -28.3 -31.1 77 100700 0 0 150 0 0 0 0 0 0 0 50 5.2 8 5 9.7 340 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5788800.0 -28.3 -31.1 77 100700 0 0 150 0 0 0 0 0 0 0 50 6.2 9 5 11.3 340 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5792400.0 -28.9 -32.2 73 100700 0 0 144 0 0 0 0 0 0 0 60 6.7 4 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5796000.0 -29.4 -32.2 77 100700 0 0 145 0 0 0 0 0 0 0 70 5.7 8 4 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5799600.0 -30.0 -33.3 73 100700 0 0 141 0 0 0 0 0 0 0 50 4.6 5 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5803200.0 -30.6 -33.3 77 100700 0 0 138 0 0 0 0 0 0 0 60 4.6 3 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5806800.0 -30.6 -33.3 77 100700 0 0 135 0 0 0 0 0 0 0 40 4.1 3 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5810400.0 -30.6 -33.3 77 100700 0 0 135 0 0 0 0 0 0 0 50 4.1 3 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5814000.0 -30.6 -33.3 77 100700 0 0 135 0 0 0 0 0 0 0 50 4.6 3 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5817600.0 -30.6 -33.9 73 100700 0 0 139 0 0 0 0 0 0 0 60 4.6 8 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +5821200.0 -30.6 -33.3 77 100700 19 867 139 7 20 6 0 0 0 0 60 4.1 8 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5824800.0 -30.0 -33.3 73 100700 113 1387 141 40 134 30 4382 0 3296 909 60 3.6 7 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5828400.0 -30.0 -32.8 77 100700 205 1387 137 100 394 45 11185 4027 5047 1525 60 3.6 5 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5832000.0 -28.9 -32.2 73 100800 278 1387 139 154 502 57 17409 14005 6462 2045 70 3.1 5 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5835600.0 -28.3 -31.1 77 100800 325 1387 144 182 477 73 20498 19079 8248 2617 70 2.6 5 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5839200.0 -27.8 -30.6 77 100800 344 1387 146 201 558 66 22959 22011 7560 2491 60 2.6 4 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5842800.0 -27.8 -31.1 73 100800 333 1387 145 184 511 65 20971 19373 7429 2429 70 2.1 5 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5846400.0 -27.8 -30.6 77 100800 293 1387 143 165 579 46 19077 14698 5330 1768 80 1.0 1 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5850000.0 -27.2 -30.6 73 100800 226 1387 144 114 479 39 13021 5174 4465 1423 0 0.0 1 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5853600.0 -28.3 -31.1 77 100900 139 1387 142 56 316 27 6299 0 3044 915 0 0.0 1 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5857200.0 -29.4 -32.2 77 100900 40 1237 138 12 99 8 1361 0 909 268 0 0.0 1 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5860800.0 -30.0 -32.8 77 100900 0 0 137 0 0 0 0 0 0 0 0 0.0 1 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5864400.0 -30.0 -33.9 69 100900 0 0 136 0 0 0 0 0 0 0 0 0.0 1 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5868000.0 -32.8 -35.6 76 100900 0 0 129 0 0 0 0 0 0 0 120 1.0 1 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5871600.0 -30.0 -33.3 73 100900 0 0 136 0 0 0 0 0 0 0 0 0.0 1 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5875200.0 -31.1 -33.9 76 101000 0 0 136 0 0 0 0 0 0 0 180 1.5 3 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5878800.0 -30.6 -33.9 73 100900 0 0 135 0 0 0 0 0 0 0 0 0.0 2 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5882400.0 -31.1 -34.4 72 101000 0 0 133 0 0 0 0 0 0 0 210 1.5 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5886000.0 -32.2 -35.0 76 101000 0 0 130 0 0 0 0 0 0 0 210 2.6 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5889600.0 -31.7 -34.4 76 101000 0 0 132 0 0 0 0 0 0 0 220 1.5 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5893200.0 -30.6 -33.9 73 101000 0 0 135 0 0 0 0 0 0 0 230 1.5 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5896800.0 -30.6 -33.9 73 101000 0 0 140 0 0 0 0 0 0 0 220 1.5 4 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5900400.0 -28.9 -31.7 77 101000 0 0 149 0 0 0 0 0 0 0 0 0.0 8 6 11.3 4270 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5904000.0 -31.1 -33.9 76 101000 0 0 138 0 0 0 0 0 0 0 0 0.0 7 2 9.7 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5907600.0 -30.6 -33.9 73 101000 25 982 146 6 12 5 0 0 0 0 180 1.5 10 7 9.7 6100 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5911200.0 -28.9 -31.1 81 101000 122 1386 147 52 142 40 5598 0 4321 1102 0 0.0 9 4 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5914800.0 -28.9 -31.1 81 101000 214 1386 145 110 395 51 12229 6013 5687 1693 0 0.0 6 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5918400.0 -27.8 -30.6 77 101000 287 1386 146 157 475 62 17686 14830 7005 2204 180 2.1 7 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5922000.0 -27.8 -30.0 81 101000 334 1386 148 176 380 87 19597 17460 9722 2988 190 1.5 8 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5925600.0 -27.2 -29.4 81 101000 353 1386 150 209 514 81 23546 23369 9156 2927 210 2.6 8 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5929200.0 -26.7 -29.4 77 101000 342 1386 153 195 388 102 21481 20119 11280 3335 180 1.5 10 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5932800.0 -28.3 -31.1 77 101000 301 1386 148 152 279 93 16647 12685 10225 2927 170 1.0 10 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5936400.0 -27.8 -30.6 77 101000 235 1386 149 102 195 71 11133 5622 7778 2169 180 2.1 10 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5940000.0 -28.3 -31.1 77 101000 147 1386 148 51 87 42 5560 0 4594 1252 190 2.1 10 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5943600.0 -29.4 -32.2 77 101000 47 1352 145 18 68 14 1969 0 1535 413 180 2.1 10 4 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5947200.0 -28.9 -31.7 77 100900 0 0 147 0 0 0 0 0 0 0 180 2.1 10 4 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5950800.0 -28.3 -32.2 69 100900 0 0 148 0 0 0 0 0 0 0 160 2.1 10 4 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5954400.0 -27.8 -30.6 77 100900 0 0 153 0 0 0 0 0 0 0 130 1.5 10 6 11.3 6100 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +5958000.0 -27.8 -30.6 77 100900 0 0 153 0 0 0 0 0 0 0 130 2.1 10 6 9.7 6100 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +5961600.0 -27.8 -30.6 77 100900 0 0 149 0 0 0 0 0 0 0 120 3.6 10 3 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +5965200.0 -28.9 -31.7 77 100900 0 0 147 0 0 0 0 0 0 0 120 3.1 8 4 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +5968800.0 -28.3 -31.1 77 100900 0 0 149 0 0 0 0 0 0 0 110 2.6 8 4 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +5972400.0 -28.9 -31.7 77 100800 0 0 148 0 0 0 0 0 0 0 120 3.1 10 5 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +5976000.0 -28.9 -31.7 77 100800 0 0 147 0 0 0 0 0 0 0 130 1.5 8 4 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +5979600.0 -28.9 -31.7 77 100800 0 0 148 0 0 0 0 0 0 0 120 1.5 9 5 11.3 2900 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +5983200.0 -28.9 -31.7 77 100800 0 0 147 0 0 0 0 0 0 0 110 1.5 8 4 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +5986800.0 -28.9 -31.1 81 100800 0 0 147 0 0 0 0 0 0 0 90 2.6 7 4 11.3 6100 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +5990400.0 -28.3 -31.1 77 100700 0 0 156 0 0 0 0 0 0 0 90 2.1 9 8 11.3 3050 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +5994000.0 -29.4 -32.2 77 100700 31 1097 148 7 26 6 802 0 689 206 90 2.1 9 6 11.3 3050 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +5997600.0 -28.3 -30.6 81 100700 131 1386 159 45 37 42 4856 0 4548 1177 80 1.5 9 9 11.3 2290 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6001200.0 -27.2 -30.0 77 100700 224 1386 157 99 68 89 10547 2527 9523 2300 70 1.5 9 7 11.3 2290 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6004800.0 -25.6 -28.3 78 100700 296 1386 165 118 32 111 12706 1672 12005 3137 0 0.0 10 8 11.3 2290 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6008400.0 -25.0 -27.2 82 100700 343 1386 167 149 140 115 16257 7900 12601 3566 0 0.0 10 8 11.3 2440 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6012000.0 -23.3 -26.1 78 100700 362 1386 172 167 73 148 17941 4991 15977 4127 0 0.0 10 8 11.3 3660 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6015600.0 -23.3 -25.6 82 100700 351 1386 168 176 247 115 19247 14021 12629 3620 0 0.0 8 6 11.3 2290 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6019200.0 -23.3 -25.6 82 100700 310 1386 168 102 54 90 11234 2420 9950 2926 50 1.0 7 6 11.3 2130 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6022800.0 -23.9 -26.7 78 100700 243 1386 162 109 226 71 11939 6715 7805 2216 80 1.0 4 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6026400.0 -26.1 -28.9 78 100700 155 1386 155 61 204 40 6712 0 4414 1251 0 0.0 4 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6030000.0 -26.1 -28.3 82 100600 55 1386 161 12 29 11 1352 0 1241 364 0 0.0 7 7 11.3 1830 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6033600.0 -25.0 -27.8 78 100600 0 58 175 0 0 0 0 0 0 0 0 0.0 10 10 11.3 1830 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6037200.0 -23.3 -26.7 74 100600 0 0 181 0 0 0 0 0 0 0 350 2.1 10 10 11.3 1830 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6040800.0 -23.3 -26.1 78 100600 0 0 181 0 0 0 0 0 0 0 10 2.6 10 10 11.3 1680 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6044400.0 -23.3 -25.6 82 100600 0 0 181 0 0 0 0 0 0 0 360 3.1 10 10 11.3 1680 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6048000.0 -23.3 -25.6 82 100500 0 0 181 0 0 0 0 0 0 0 20 3.1 10 10 11.3 1680 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6051600.0 -22.8 -25.0 82 100500 0 0 175 0 0 0 0 0 0 0 40 1.5 8 8 11.3 1680 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6055200.0 -22.8 -25.6 78 100600 0 0 183 0 0 0 0 0 0 0 100 1.5 10 10 11.3 1490 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6058800.0 -22.8 -25.0 82 100500 0 0 183 0 0 0 0 0 0 0 360 2.6 10 10 11.3 1490 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6062400.0 -22.8 -25.0 82 100500 0 0 183 0 0 0 0 0 0 0 360 3.6 10 10 11.3 1460 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6066000.0 -22.8 -25.0 82 100500 0 0 183 0 0 0 0 0 0 0 350 3.1 10 10 11.3 1460 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6069600.0 -22.8 -25.0 82 100500 0 0 183 0 0 0 0 0 0 0 350 3.6 10 10 11.3 1430 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6073200.0 -22.8 -25.0 82 100500 0 0 183 0 0 0 0 0 0 0 10 3.1 10 10 11.3 1430 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6076800.0 -22.8 -25.0 82 100500 0 0 183 0 0 0 0 0 0 0 350 3.6 10 10 11.3 1460 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6080400.0 -22.8 -25.0 82 100500 39 1212 183 2 1 2 252 0 252 78 340 3.1 10 10 6.4 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6084000.0 -22.8 -25.0 82 100400 140 1385 183 28 2 27 3153 0 3047 920 340 3.1 10 10 4.8 1680 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6087600.0 -23.3 -25.6 82 100400 233 1385 173 85 48 77 9205 1512 8371 2247 330 3.1 10 8 4.8 1680 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6091200.0 -23.3 -25.6 82 100500 305 1385 176 86 30 79 9558 1202 8811 2678 320 3.6 10 9 4.8 1680 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6094800.0 -23.9 -26.1 82 100400 352 1385 179 123 22 117 13440 1267 12839 3665 340 3.6 10 10 11.3 1680 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6098400.0 -23.9 -26.1 82 100400 371 1385 179 107 0 107 10653 0 10732 3607 340 4.1 10 10 11.3 1680 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6102000.0 -23.9 -26.1 82 100400 359 1385 179 145 2 144 15603 134 15569 4066 350 4.1 10 10 11.3 1680 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6105600.0 -23.3 -25.6 82 100400 319 1385 167 146 243 92 16099 11257 10183 3013 360 4.6 8 5 9.7 4270 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6109200.0 -23.9 -26.1 82 100400 252 1385 171 76 18 73 8335 570 8035 2297 350 4.6 10 8 11.3 6100 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6112800.0 -23.9 -26.1 82 100400 164 1385 168 69 40 65 7321 685 6925 1619 350 4.6 10 7 11.3 6100 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6116400.0 -23.9 -26.1 82 100400 62 1385 168 18 8 17 1974 0 1869 510 340 3.6 10 7 11.3 6100 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6120000.0 -24.4 -26.7 82 100500 1 173 166 0 0 0 0 0 0 0 330 3.6 10 7 11.3 6100 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6123600.0 -24.4 -27.8 74 100500 0 0 177 0 0 0 0 0 0 0 330 3.6 10 10 11.3 1680 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6127200.0 -25.0 -27.8 78 100500 0 0 167 0 0 0 0 0 0 0 320 3.6 10 8 11.3 1680 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6130800.0 -26.1 -28.9 78 100500 0 0 166 0 0 0 0 0 0 0 310 4.1 10 9 11.3 1680 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6134400.0 -25.6 -27.8 82 100500 0 0 160 0 0 0 0 0 0 0 320 5.2 10 6 9.7 1520 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6138000.0 -25.6 -28.3 78 100600 0 0 162 0 0 0 0 0 0 0 310 5.2 10 7 9.7 1520 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6141600.0 -26.1 -28.9 78 100600 0 0 157 0 0 0 0 0 0 0 310 4.1 10 5 9.7 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6145200.0 -27.2 -30.0 77 100600 0 0 153 0 0 0 0 0 0 0 310 5.2 10 5 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6148800.0 -27.2 -29.4 81 100600 0 0 154 0 0 0 0 0 0 0 320 4.6 10 5 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6152400.0 -28.3 -31.1 77 100700 0 0 149 0 0 0 0 0 0 0 320 4.6 9 4 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6156000.0 -29.4 -32.2 77 100700 0 0 143 0 0 0 0 0 0 0 310 4.6 8 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6159600.0 -31.1 -33.9 76 100800 0 0 138 0 0 0 0 0 0 0 300 4.1 4 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6163200.0 -31.1 -33.9 76 100800 0 0 133 0 0 0 0 0 0 0 310 5.2 5 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6166800.0 -31.7 -34.4 76 100800 47 1326 132 13 71 10 1462 0 1127 328 300 4.1 3 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6170400.0 -31.7 -34.4 76 100900 150 1384 132 60 300 30 6739 0 3377 1015 290 4.1 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +6174000.0 -30.6 -33.9 73 100900 242 1384 135 125 482 44 14236 7912 5023 1599 280 3.6 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +6177600.0 -30.0 -32.8 77 101000 315 1384 137 181 585 52 20880 18105 6013 2000 290 4.6 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +6181200.0 -28.9 -32.2 73 101000 362 1384 139 220 637 58 25527 24649 6747 2294 270 4.6 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +6184800.0 -28.3 -31.7 73 101000 380 1384 141 237 664 60 27571 27374 6997 2401 280 5.2 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +6188400.0 -28.3 -31.7 73 101100 368 1384 141 227 647 59 26356 25705 6867 2342 280 4.6 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +6192000.0 -28.3 -31.7 73 101100 327 1384 141 193 607 54 22291 20245 6252 2091 270 3.1 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +6195600.0 -28.9 -31.7 77 101100 260 1384 140 140 516 46 16002 10549 5271 1699 260 4.1 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +6199200.0 -29.4 -32.2 77 101100 172 1384 138 77 362 34 8669 0 3837 1168 270 4.6 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +6202800.0 -31.1 -34.4 72 101200 70 1384 133 19 137 12 2162 0 1368 411 260 2.6 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +6206400.0 -31.7 -34.4 76 101200 2 265 132 0 0 0 0 0 0 0 250 2.1 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +6210000.0 -36.1 -41.1 60 101200 0 0 119 0 0 0 0 0 0 0 230 1.5 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6213600.0 -35.0 -38.9 67 101200 0 0 122 0 0 0 0 0 0 0 220 3.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6217200.0 -35.6 -39.4 67 101200 0 0 121 0 0 0 0 0 0 0 200 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6220800.0 -35.6 -39.4 67 101200 0 0 121 0 0 0 0 0 0 0 210 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6224400.0 -36.7 -41.1 63 101300 0 0 117 0 0 0 0 0 0 0 230 1.5 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6228000.0 -37.2 -40.2 67 101300 0 0 117 0 0 0 0 0 0 0 230 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6231600.0 -36.1 -39.4 71 101300 0 0 120 0 0 0 0 0 0 0 210 4.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6235200.0 -36.1 -38.9 75 101300 0 0 120 0 0 0 0 0 0 0 210 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6238800.0 -36.1 -39.4 71 101300 0 0 120 0 0 0 0 0 0 0 210 6.2 5 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6242400.0 -35.0 -38.3 71 101300 0 0 130 0 0 0 0 0 0 0 210 5.2 9 5 11.3 1400 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6246000.0 -35.6 -38.9 71 101400 0 0 125 0 0 0 0 0 0 0 210 5.2 6 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6249600.0 -35.0 -38.3 71 101400 0 58 129 0 0 0 0 0 0 0 230 3.1 10 4 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6253200.0 -34.4 -38.3 68 101400 55 1383 128 10 14 10 1137 0 1138 340 210 5.2 7 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6256800.0 -34.4 -37.8 72 101400 159 1383 128 55 100 44 6018 135 4830 1339 200 5.7 8 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6260400.0 -33.3 -36.7 72 101500 251 1383 127 119 315 65 13179 8866 7222 2140 210 5.2 3 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6264000.0 -32.2 -36.1 68 101500 324 1383 130 169 437 69 19118 16852 7829 2511 220 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6267600.0 -31.1 -34.4 72 101600 371 1383 133 206 494 77 23433 22670 8786 2888 210 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6271200.0 -30.6 -33.9 73 101600 389 1383 135 222 519 80 25308 25095 9149 3035 210 4.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6274800.0 -30.0 -33.3 73 101600 377 1383 136 212 504 78 24136 23559 8908 2938 200 4.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6278400.0 -30.0 -33.3 73 101600 336 1383 136 180 459 72 20373 18780 8174 2634 210 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6282000.0 -30.0 -33.3 73 101600 269 1383 136 130 369 60 14592 10385 6755 2095 200 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6285600.0 -31.1 -34.4 72 101700 181 1383 133 71 223 43 7877 1013 4784 1402 200 6.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6289200.0 -32.2 -35.0 76 101700 78 1383 130 17 51 15 1915 0 1693 501 190 6.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6292800.0 -32.8 -35.6 76 101700 6 357 129 1 1 1 0 0 0 0 200 6.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6296400.0 -33.9 -37.2 72 101700 0 0 125 0 0 0 0 0 0 0 180 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6300000.0 -34.4 -37.8 72 101600 0 0 124 0 0 0 0 0 0 0 170 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6303600.0 -34.4 -38.3 68 101700 0 0 124 0 0 0 0 0 0 0 180 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6307200.0 -36.7 -39.4 75 101700 0 0 118 0 0 0 0 0 0 0 160 5.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6310800.0 -36.7 -39.4 75 101600 0 0 118 0 0 0 0 0 0 0 150 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6314400.0 -35.6 -38.9 71 101600 0 0 121 0 0 0 0 0 0 0 130 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6318000.0 -36.1 -39.4 71 101600 0 0 120 0 0 0 0 0 0 0 130 5.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6321600.0 -36.1 -39.4 71 101500 0 0 120 0 0 0 0 0 0 0 120 5.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6325200.0 -36.1 -39.4 71 101500 0 0 120 0 0 0 0 0 0 0 130 5.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6328800.0 -34.4 -38.3 68 101400 0 0 124 0 0 0 0 0 0 0 130 5.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6332400.0 -35.0 -38.3 71 101300 0 0 122 0 0 0 0 0 0 0 120 5.7 4 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6336000.0 -33.9 -37.2 72 101300 1 173 125 0 0 0 0 0 0 0 120 5.2 1 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6339600.0 -32.8 -36.1 72 101200 64 1383 131 17 133 11 1936 0 1255 377 120 6.7 2 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6343200.0 -31.7 -34.4 76 101100 168 1383 138 66 136 50 7183 979 5460 1482 110 7.2 7 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6346800.0 -30.0 -32.8 77 101000 261 1383 144 119 229 78 13028 8075 8571 2433 120 6.7 10 4 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6350400.0 -27.8 -31.1 73 101000 333 1383 150 180 288 112 19622 15823 12261 3447 110 6.7 10 4 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6354000.0 -26.1 -29.4 74 100900 380 1383 155 214 313 130 23378 19806 14264 4078 110 7.2 10 4 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6357600.0 -25.0 -27.8 78 100800 398 1383 159 239 391 130 26247 25000 14339 4216 120 7.7 10 4 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6361200.0 -23.3 -25.6 82 100600 386 1383 167 233 369 132 25465 23612 14490 4158 120 8.2 10 5 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6364800.0 -22.2 -24.4 82 100600 345 1383 174 143 114 115 15611 6431 12608 3582 120 9.3 10 7 11.3 5180 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6368400.0 -20.0 -21.7 87 100500 277 1383 194 69 6 68 7687 194 7600 2316 130 10.3 10 10 1.2 4270 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6372000.0 -20.0 -21.7 87 100300 189 1383 194 56 6 56 6101 83 6122 1682 130 9.3 10 10 1.2 4270 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +6375600.0 -18.9 -20.6 87 100300 87 1383 199 14 3 13 1606 0 1494 458 130 8.8 10 10 1.6 4270 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +6379200.0 -16.7 -18.3 87 100200 6 472 208 0 0 0 0 0 0 0 130 9.3 10 10 1.6 1370 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +6382800.0 -16.1 -17.8 87 100100 0 0 210 0 0 0 0 0 0 0 140 8.8 10 10 1.2 1370 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +6386400.0 -15.6 -16.7 91 100000 0 0 213 0 0 0 0 0 0 0 140 9.3 10 10 1.2 1370 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +6390000.0 -12.8 -13.9 92 100000 0 0 225 0 0 0 0 0 0 0 160 8.8 10 10 2.4 1370 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +6393600.0 -12.2 -12.8 96 99900 0 0 217 0 0 0 0 0 0 0 160 8.2 10 8 6.4 1830 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +6397200.0 -10.6 -11.7 92 99900 0 0 234 0 0 0 0 0 0 0 170 8.2 10 10 4.8 1830 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +6400800.0 -7.8 -7.8 100 99900 0 0 248 0 0 0 0 0 0 0 180 9.8 10 10 2.4 1830 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +6404400.0 -6.1 -6.7 96 99800 0 0 256 0 0 0 0 0 0 0 190 12.4 10 10 2.4 460 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +6408000.0 -5.6 -5.6 100 99800 0 0 259 0 0 0 0 0 0 0 210 12.9 10 10 2.4 400 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +6411600.0 -4.4 -4.4 100 99800 0 0 264 0 0 0 0 0 0 0 210 12.4 10 10 2.4 460 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +6415200.0 -3.9 -3.9 100 99800 0 0 267 0 0 0 0 0 0 0 210 13.4 10 10 4.8 610 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +6418800.0 -3.9 -3.9 100 99900 0 0 267 0 0 0 0 0 0 0 210 12.9 10 10 1.2 370 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +6422400.0 -3.3 -3.3 100 99900 2 288 270 0 0 0 0 0 0 0 220 9.3 10 10 1.2 460 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +6426000.0 -3.3 -3.3 100 99900 73 1382 270 11 1 11 1261 0 1262 387 220 7.2 10 10 2.4 240 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +6429600.0 -2.8 -2.8 100 100000 178 1382 272 58 2 58 6247 22 6271 1649 220 8.2 10 10 4.8 240 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +6433200.0 -2.8 -2.8 100 100000 270 1382 272 86 2 86 9346 74 9383 2620 230 5.7 10 10 8.0 210 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +6436800.0 -2.8 -2.8 100 100100 342 1382 272 125 3 124 13513 170 13465 3687 240 3.1 10 10 8.0 150 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +6440400.0 -3.9 -3.9 100 100200 389 1382 267 147 2 147 15897 132 15973 4391 250 6.7 10 10 4.8 150 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +6444000.0 -5.0 -5.6 96 100300 407 1382 244 216 124 180 23088 9521 19341 4893 240 2.6 9 7 4.8 820 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +6447600.0 -5.0 -6.1 92 100300 394 1382 241 228 310 142 24783 20248 15507 4379 240 4.1 9 6 9.7 700 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +6451200.0 -6.7 -7.2 96 100400 353 1382 253 114 0 114 11312 0 11396 3629 260 7.2 10 10 6.4 270 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +6454800.0 -8.9 -10.0 92 100500 286 1382 227 119 120 95 12921 5216 10357 2863 270 9.8 10 7 8.0 270 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +6458400.0 -10.0 -11.7 88 100600 197 1382 236 65 30 61 7055 516 6645 1805 270 8.2 10 10 8.0 1040 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +6462000.0 -11.1 -12.2 92 100700 95 1382 232 15 9 14 1722 0 1609 496 250 6.2 10 10 9.7 910 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +6465600.0 -12.2 -13.3 92 100700 8 564 227 0 0 0 0 0 0 0 280 7.7 10 10 9.7 910 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +6469200.0 -13.3 -15.0 87 100800 0 0 211 0 0 0 0 0 0 0 260 9.3 8 8 9.7 5180 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +6472800.0 -14.4 -16.1 87 100900 0 0 207 0 0 0 0 0 0 0 270 7.7 10 8 11.3 5180 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +6476400.0 -15.0 -16.7 87 101000 0 0 215 0 0 0 0 0 0 0 270 8.2 10 10 11.3 2740 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +6480000.0 -16.7 -18.3 87 101000 0 0 198 0 0 0 0 0 0 0 270 6.2 9 8 11.3 2740 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +6483600.0 -17.2 -19.4 83 101100 0 0 192 0 0 0 0 0 0 0 290 6.7 7 7 11.3 1220 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6487200.0 -18.9 -21.1 83 101100 0 0 182 0 0 0 0 0 0 0 280 6.7 8 5 11.3 1220 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6490800.0 -19.4 -21.7 83 101100 0 0 173 0 0 0 0 0 0 0 280 6.2 4 1 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6494400.0 -20.0 -22.2 83 101200 0 0 177 0 0 0 0 0 0 0 280 6.2 7 4 11.3 4270 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6498000.0 -20.0 -21.7 87 101300 0 0 185 0 0 0 0 0 0 0 280 7.7 8 8 11.3 1220 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6501600.0 -19.4 -21.7 83 101300 0 0 191 0 0 0 0 0 0 0 290 6.7 10 9 11.3 1830 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6505200.0 -20.0 -22.2 83 101400 0 0 185 0 0 0 0 0 0 0 290 7.2 10 8 4.8 4270 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6508800.0 -20.0 -21.7 87 101500 4 403 194 0 0 0 0 0 0 0 280 7.7 10 10 8.0 4270 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6512400.0 -20.0 -22.2 83 101600 82 1381 194 16 0 16 1554 0 1564 532 280 7.2 10 10 8.0 3350 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6516000.0 -20.0 -22.2 83 101700 187 1381 189 32 19 30 3666 0 3443 1091 290 7.7 10 9 9.7 3350 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6519600.0 -20.6 -22.8 83 101800 279 1381 176 113 142 86 12355 5720 9439 2678 280 7.7 10 5 9.7 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6523200.0 -20.6 -22.8 83 101900 351 1381 175 161 126 129 17442 7745 14038 3830 280 8.2 10 4 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6526800.0 -20.0 -22.2 83 102100 398 1381 174 229 275 152 24816 19330 16550 4539 270 8.2 10 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6530400.0 -19.4 -21.7 83 102100 415 1381 170 259 542 100 29203 30171 11316 3681 270 7.7 4 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6534000.0 -20.0 -22.2 83 102200 403 1381 168 245 588 78 28091 28479 8970 3027 270 8.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6537600.0 -20.6 -22.8 83 102300 362 1381 166 210 542 71 23978 23156 8131 2693 270 10.3 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6541200.0 -21.1 -23.3 82 102400 294 1381 164 156 461 61 17645 14561 6920 2206 270 9.3 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6544800.0 -21.7 -24.4 78 102500 206 1381 162 93 321 47 10368 3626 5255 1576 270 11.3 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6548400.0 -22.8 -25.0 82 102600 103 1381 159 31 123 23 3444 0 2561 738 280 9.8 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6552000.0 -23.3 -25.6 82 102600 12 679 157 2 8 2 0 0 0 0 270 9.8 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6555600.0 -23.9 -26.7 78 102700 0 0 155 0 0 0 0 0 0 0 270 9.8 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6559200.0 -23.3 -26.1 78 102800 0 0 157 0 0 0 0 0 0 0 270 10.8 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6562800.0 -23.9 -26.1 82 102800 0 0 155 0 0 0 0 0 0 0 260 9.3 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6566400.0 -23.9 -26.7 78 103000 0 0 155 0 0 0 0 0 0 0 270 10.3 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6570000.0 -24.4 -27.2 78 103000 0 0 153 0 0 0 0 0 0 0 280 10.3 2 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6573600.0 -25.0 -27.8 78 103100 0 0 152 0 0 0 0 0 0 0 270 8.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6577200.0 -25.6 -28.3 78 103100 0 0 150 0 0 0 0 0 0 0 270 7.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6580800.0 -26.1 -28.9 78 103200 0 0 148 0 0 0 0 0 0 0 280 8.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6584400.0 -26.1 -28.3 82 103300 0 0 149 0 0 0 0 0 0 0 280 9.3 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6588000.0 -26.7 -28.9 82 103400 0 0 147 0 0 0 0 0 0 0 270 8.8 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6591600.0 -26.7 -29.4 77 103500 0 0 146 0 0 0 0 0 0 0 270 9.3 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6595200.0 -26.7 -29.4 77 103500 7 518 146 3 17 1 0 0 0 0 280 7.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6598800.0 -26.7 -29.4 77 103600 91 1380 146 29 203 17 3272 0 1921 573 280 7.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6602400.0 -26.7 -28.9 82 103700 196 1380 147 94 426 37 10640 1581 4198 1303 290 7.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6606000.0 -26.1 -28.9 78 103800 288 1380 148 163 569 48 18759 14594 5537 1822 290 6.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6609600.0 -25.6 -28.3 78 103900 360 1380 150 222 653 56 25824 24711 6530 2229 280 6.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6613200.0 -25.6 -27.8 82 103900 407 1380 150 262 696 62 30627 30818 7266 2529 290 6.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6616800.0 -24.4 -27.8 74 104000 424 1380 153 278 711 64 32567 32956 7516 2636 280 6.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6620400.0 -24.4 -27.8 74 104100 412 1380 153 267 702 63 31217 31620 7384 2574 280 6.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6624000.0 -24.4 -27.2 78 104100 370 1380 153 231 664 58 26877 26273 6765 2317 300 3.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6627600.0 -24.4 -27.2 78 104100 303 1380 153 176 589 50 20291 16797 5778 1915 260 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6631200.0 -26.1 -28.3 82 104200 214 1380 151 108 430 44 12155 4857 4965 1529 260 4.1 1 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6634800.0 -26.7 -28.9 82 104200 111 1380 150 40 220 24 4457 0 2680 781 260 3.1 1 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6638400.0 -27.8 -30.0 81 104200 16 771 146 4 33 2 0 0 0 0 300 1.5 1 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +6642000.0 -27.8 -31.1 73 104200 0 0 147 0 0 0 0 0 0 0 210 1.5 2 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6645600.0 -27.8 -31.1 73 104200 0 0 147 0 0 0 0 0 0 0 160 3.6 3 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6649200.0 -27.2 -30.6 73 104200 0 0 149 0 0 0 0 0 0 0 170 3.6 2 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6652800.0 -27.2 -30.0 77 104100 0 0 155 0 0 0 0 0 0 0 160 3.6 8 6 11.3 6100 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6656400.0 -25.6 -28.3 78 104100 0 0 165 0 0 0 0 0 0 0 160 4.1 10 8 11.3 6100 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6660000.0 -25.0 -27.2 82 104100 0 0 167 0 0 0 0 0 0 0 150 3.6 10 8 11.3 6100 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6663600.0 -23.9 -26.1 82 104000 0 0 171 0 0 0 0 0 0 0 150 4.6 10 8 11.3 4270 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6667200.0 -22.8 -25.0 82 104000 0 0 175 0 0 0 0 0 0 0 150 4.6 10 8 11.3 4270 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6670800.0 -21.7 -23.9 82 103900 0 0 179 0 0 0 0 0 0 0 130 6.2 10 8 11.3 4270 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6674400.0 -21.7 -23.9 82 103800 0 0 188 0 0 0 0 0 0 0 140 6.2 10 10 11.3 4270 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6678000.0 -21.7 -23.9 82 103800 0 0 182 0 0 0 0 0 0 0 150 7.7 10 9 11.3 4270 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6681600.0 -21.7 -23.9 82 103700 10 632 188 2 0 2 0 0 0 0 150 7.7 10 10 11.3 4270 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6685200.0 -21.7 -23.9 82 103600 100 1379 188 31 11 31 3353 0 3363 876 140 7.7 10 10 11.3 6100 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6688800.0 -21.1 -23.3 82 103600 206 1379 190 57 1 57 6253 17 6274 1781 140 6.7 10 10 11.3 4270 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6692400.0 -20.6 -23.3 79 103500 298 1379 186 117 25 112 12598 1314 12113 3170 150 6.7 10 9 11.3 6100 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6696000.0 -20.0 -22.2 83 103400 369 1379 189 105 0 105 10451 0 10529 3564 160 6.7 10 9 11.3 6100 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6699600.0 -18.9 -21.7 79 103400 416 1379 198 101 8 99 11399 443 11213 3658 170 6.7 10 10 11.3 6100 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +6703200.0 -18.9 -21.7 79 103300 433 1379 198 126 1 126 14009 64 14067 4385 170 6.7 10 10 11.3 6100 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +6706800.0 -18.9 -21.7 79 103200 420 1379 182 248 343 146 27145 23694 16054 4665 190 5.7 10 5 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +6710400.0 -18.3 -21.1 79 103200 379 1379 181 251 464 126 27484 28584 13857 4017 200 4.1 10 3 16.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +6714000.0 -18.9 -21.7 79 103100 311 1379 177 175 409 85 19377 17536 9446 2840 210 6.2 7 2 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +6717600.0 -18.3 -21.1 79 103100 222 1379 179 96 243 59 10583 4990 6525 1895 210 5.2 6 2 16.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +6721200.0 -18.9 -22.2 75 103000 119 1379 174 45 221 27 4994 0 3004 869 210 6.2 4 1 16.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +6724800.0 -19.4 -22.8 75 103000 20 862 173 8 44 5 0 0 0 0 230 3.6 6 1 16.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +6728400.0 -18.3 -22.2 72 103000 0 0 176 0 0 0 0 0 0 0 240 3.1 4 1 16.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6732000.0 -19.4 -22.2 79 102900 0 0 173 0 0 0 0 0 0 0 230 4.1 4 1 16.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6735600.0 -17.2 -20.6 76 102900 0 0 177 0 0 0 0 0 0 0 240 2.1 3 0 16.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6739200.0 -15.6 -18.3 80 102900 0 0 183 0 0 0 0 0 0 0 240 2.1 3 0 16.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6742800.0 -16.7 -18.9 83 103000 0 0 180 0 0 0 0 0 0 0 250 4.6 2 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6746400.0 -16.7 -20.0 76 102900 0 0 179 0 0 0 0 0 0 0 240 2.1 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6750000.0 -16.7 -19.4 79 102900 0 0 179 0 0 0 0 0 0 0 260 5.2 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6753600.0 -17.2 -18.9 87 103000 0 0 178 0 0 0 0 0 0 0 270 5.7 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6757200.0 -15.6 -17.8 83 103000 0 0 183 0 0 0 0 0 0 0 270 5.7 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6760800.0 -17.2 -19.4 83 103000 0 0 178 0 0 0 0 0 0 0 260 6.2 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6764400.0 -16.7 -18.3 87 103000 0 0 180 0 0 0 0 0 0 0 250 3.6 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6768000.0 -16.7 -18.3 87 103000 14 747 180 4 22 2 0 0 0 0 250 2.1 0 0 16.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6771600.0 -21.1 -22.8 87 103100 110 1379 168 38 132 29 4163 0 3186 880 230 2.1 5 1 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6775200.0 -17.2 -18.9 87 103200 215 1379 182 97 305 52 10767 4684 5789 1719 270 5.7 5 1 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6778800.0 -16.1 -18.3 83 103200 307 1379 185 165 425 73 18467 15941 8197 2552 260 3.1 5 1 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6782400.0 -16.7 -18.3 87 103300 378 1379 180 238 568 87 26857 27848 9851 3190 270 2.1 5 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6786000.0 -16.7 -19.4 79 103300 424 1379 179 263 646 69 30620 30574 8055 2805 200 2.6 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6789600.0 -16.7 -18.9 83 103400 442 1379 180 283 676 71 33020 33216 8307 2915 200 3.6 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6793200.0 -15.6 -18.3 80 103400 429 1379 183 272 664 70 31669 31800 8172 2850 180 3.6 0 0 24.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6796800.0 -15.0 -18.3 76 103500 387 1379 185 238 630 65 27565 27054 7548 2583 190 5.2 0 0 24.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6800400.0 -15.6 -18.9 76 103500 320 1379 183 182 560 56 20903 18257 6448 2136 140 4.1 0 0 24.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6804000.0 -17.8 -20.6 79 103500 231 1379 175 115 437 45 13009 6321 5104 1600 120 3.1 0 0 24.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +6807600.0 -21.1 -23.3 82 103500 127 1379 164 47 236 27 5247 0 3021 890 140 4.6 0 0 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6811200.0 -21.1 -22.8 87 103600 25 977 165 7 40 5 0 0 0 0 130 6.7 0 0 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6814800.0 -20.6 -23.3 79 103500 0 0 166 0 0 0 0 0 0 0 130 6.7 0 0 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6818400.0 -21.1 -23.3 82 103600 0 0 164 0 0 0 0 0 0 0 130 5.2 0 0 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6822000.0 -21.7 -23.3 87 103500 0 0 163 0 0 0 0 0 0 0 130 6.2 0 0 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6825600.0 -22.2 -24.4 82 103600 0 0 161 0 0 0 0 0 0 0 150 6.7 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6829200.0 -22.2 -24.4 82 103600 0 0 161 0 0 0 0 0 0 0 150 3.1 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +6832800.0 -23.3 -25.6 82 103600 0 0 157 0 0 0 0 0 0 0 150 3.6 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +6836400.0 -24.4 -27.2 78 103600 0 0 153 0 0 0 0 0 0 0 150 4.1 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +6840000.0 -25.0 -27.8 78 103600 0 0 152 0 0 0 0 0 0 0 160 3.1 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +6843600.0 -25.6 -27.8 82 103600 0 0 150 0 0 0 0 0 0 0 150 3.1 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +6847200.0 -25.6 -27.8 82 103600 0 0 150 0 0 0 0 0 0 0 140 3.6 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +6850800.0 -24.4 -27.2 78 103600 0 0 153 0 0 0 0 0 0 0 180 3.1 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +6854400.0 -24.4 -27.2 78 103600 19 861 153 5 32 4 0 0 0 0 180 3.1 0 0 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +6858000.0 -23.3 -26.1 78 103600 119 1378 157 42 223 25 4691 0 2799 823 190 2.1 0 0 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6861600.0 -22.8 -25.6 78 103600 224 1378 159 109 428 43 12344 5350 4882 1530 190 3.6 0 0 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6865200.0 -20.0 -23.3 75 103600 316 1378 167 178 557 54 20483 17633 6229 2067 180 4.1 0 0 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6868800.0 -17.2 -20.6 76 103600 387 1378 177 236 634 63 27405 26939 7335 2519 180 5.2 0 0 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6872400.0 -15.6 -18.3 80 103500 433 1378 183 276 675 69 32207 32357 8073 2828 170 4.1 0 0 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6876000.0 -14.4 -17.2 80 103500 450 1378 187 291 689 71 34025 34190 8324 2937 170 4.6 0 0 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6879600.0 -13.9 -16.7 80 103500 438 1378 189 281 680 69 32824 32731 8081 2839 160 3.6 0 0 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6883200.0 -13.3 -16.7 76 103400 396 1378 191 245 643 64 28475 27835 7458 2572 130 3.6 0 0 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6886800.0 -13.9 -17.2 76 103400 328 1378 189 189 573 56 21763 19205 6465 2157 120 4.1 0 0 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6890400.0 -15.6 -18.3 80 103300 239 1378 183 121 455 45 13734 7174 5120 1622 110 4.1 0 0 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6894000.0 -16.7 -18.9 83 103300 135 1378 180 52 262 29 5801 0 3243 957 110 4.1 0 0 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6897600.0 -18.3 -20.6 83 103200 31 1068 174 9 51 6 1029 0 687 205 140 6.2 0 0 16.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6901200.0 -18.3 -21.7 75 103200 0 0 173 0 0 0 0 0 0 0 150 7.7 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +6904800.0 -18.3 -20.6 83 103200 0 0 174 0 0 0 0 0 0 0 160 5.2 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +6908400.0 -18.3 -20.6 83 103100 0 0 174 0 0 0 0 0 0 0 210 2.6 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +6912000.0 -18.3 -20.6 83 103100 0 0 174 0 0 0 0 0 0 0 250 2.6 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +6915600.0 -17.8 -20.0 83 103100 0 0 176 0 0 0 0 0 0 0 270 3.6 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +6919200.0 -17.8 -19.4 87 103000 0 0 176 0 0 0 0 0 0 0 270 3.1 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +6922800.0 -16.1 -17.8 87 103000 0 0 182 0 0 0 0 0 0 0 250 1.5 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +6926400.0 -17.8 -18.9 91 103000 0 0 176 0 0 0 0 0 0 0 200 3.6 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +6930000.0 -17.2 -18.9 87 103000 0 0 178 0 0 0 0 0 0 0 250 1.5 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +6933600.0 -15.6 -16.7 91 103000 0 0 188 0 0 0 0 0 0 0 250 1.5 3 1 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +6937200.0 -17.8 -18.9 91 103000 0 0 180 0 0 0 0 0 0 0 210 4.6 3 1 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +6940800.0 -11.7 -15.0 77 103000 25 975 206 8 30 6 0 0 0 0 240 2.6 10 3 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +6944400.0 -10.6 -15.0 70 103000 128 1377 209 48 73 42 5164 0 4535 1161 240 2.1 10 3 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +6948000.0 -9.4 -13.3 74 103000 233 1377 216 95 76 83 10220 2567 8966 2333 240 2.1 10 4 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +6951600.0 -9.4 -12.8 77 103000 325 1377 220 176 228 124 18957 13160 13417 3548 240 2.6 10 6 24.1 6100 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +6955200.0 -9.4 -12.2 81 103000 396 1377 217 225 251 154 24333 17566 16735 4560 240 3.1 10 4 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +6958800.0 -7.8 -10.0 84 103100 442 1377 228 267 314 168 29026 23368 18353 5183 250 3.6 10 6 24.1 6100 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +6962400.0 -7.2 -9.4 84 103100 459 1377 233 212 72 188 22931 5740 20440 5601 260 6.7 10 7 24.1 6100 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +6966000.0 -6.7 -8.9 84 103100 446 1377 239 171 16 166 18627 1180 18170 5197 240 5.7 10 8 11.3 4270 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +6969600.0 -6.7 -8.9 84 103100 404 1377 244 132 43 120 14604 2565 13332 4086 260 6.7 10 9 11.3 3960 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +6973200.0 -7.2 -8.9 88 103200 336 1377 242 123 38 114 13388 2058 12461 3514 270 7.7 10 9 11.3 3960 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +6976800.0 -7.8 -9.4 88 103200 247 1377 247 92 47 84 9942 1649 9114 2446 280 6.7 10 10 11.3 3960 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +6980400.0 -8.9 -10.6 88 103300 144 1377 241 38 4 37 4173 0 4075 1151 270 5.7 10 10 11.3 3960 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +6984000.0 -9.4 -10.6 92 103300 37 1182 240 5 1 5 585 0 585 180 270 6.2 10 10 11.3 2440 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +6987600.0 -9.4 -11.1 88 103300 0 0 228 0 0 0 0 0 0 0 270 5.2 10 8 11.3 4270 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +6991200.0 -10.0 -11.1 92 103400 0 0 219 0 0 0 0 0 0 0 280 6.2 9 6 11.3 3960 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +6994800.0 -11.1 -12.2 92 103500 0 0 215 0 0 0 0 0 0 0 280 5.2 9 6 11.3 3960 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +6998400.0 -12.2 -13.3 92 103500 0 0 207 0 0 0 0 0 0 0 290 4.1 7 4 11.3 4270 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +7002000.0 -13.9 -15.0 91 103600 0 0 200 0 0 0 0 0 0 0 290 4.1 7 4 11.3 4270 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7005600.0 -14.4 -15.0 96 103700 0 0 195 0 0 0 0 0 0 0 310 5.2 6 2 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7009200.0 -15.6 -17.2 87 103700 0 0 197 0 0 0 0 0 0 0 310 3.1 6 6 3.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7012800.0 -16.1 -17.2 91 103700 0 0 190 0 0 0 0 0 0 0 320 3.1 5 3 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7016400.0 -17.2 -18.3 91 103800 0 0 186 0 0 0 0 0 0 0 330 2.6 5 3 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7020000.0 -18.3 -19.4 91 103800 0 0 178 0 0 0 0 0 0 0 340 2.1 3 1 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7023600.0 -18.3 -20.6 83 103900 0 0 177 0 0 0 0 0 0 0 360 1.5 2 1 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7027200.0 -18.3 -20.0 87 103900 31 1067 180 7 21 6 802 0 688 206 360 2.1 7 2 24.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7030800.0 -18.3 -20.0 87 104000 137 1376 182 41 55 36 4499 0 3962 1109 20 2.6 10 3 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +7034400.0 -18.9 -20.0 91 104000 243 1376 178 110 228 72 12032 6806 7904 2235 30 3.1 7 2 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +7038000.0 -17.8 -19.4 87 104100 334 1376 180 183 465 74 20650 19016 8377 2684 30 4.1 3 1 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +7041600.0 -17.8 -18.9 91 104100 405 1376 176 254 579 87 28889 29591 9928 3297 40 4.1 4 0 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +7045200.0 -17.2 -18.9 87 104100 451 1376 182 275 602 82 31803 31748 9512 3302 40 5.2 2 1 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +7048800.0 -17.2 -18.9 87 104100 468 1376 178 300 642 86 34708 35166 9980 3481 50 4.1 2 0 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +7052400.0 -16.7 -18.9 83 104100 455 1376 183 286 540 111 32314 32717 12589 4155 70 3.6 5 1 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +7056000.0 -17.2 -19.4 83 104100 413 1376 178 258 560 94 29222 30070 10684 3519 70 3.1 5 0 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +7059600.0 -17.2 -19.4 83 104100 345 1376 178 203 501 80 22839 22063 9031 2878 60 4.6 5 0 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +7063200.0 -17.8 -20.0 83 104100 255 1376 179 129 339 68 14254 10012 7539 2225 50 5.2 6 1 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +7066800.0 -18.3 -21.1 79 104100 152 1376 179 52 97 42 5685 0 4606 1275 50 5.7 7 2 24.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +7070400.0 -19.4 -21.7 83 104100 44 1273 173 11 36 9 1242 0 1018 299 60 5.2 7 1 16.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +7074000.0 -20.0 -22.8 79 104100 0 0 171 0 0 0 0 0 0 0 60 6.2 7 1 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +7077600.0 -21.1 -23.3 82 104000 0 0 174 0 0 0 0 0 0 0 70 5.2 8 5 11.3 5790 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +7081200.0 -21.7 -23.3 87 104000 0 0 168 0 0 0 0 0 0 0 70 5.7 7 2 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +7084800.0 -21.1 -22.8 87 104000 0 0 165 0 0 0 0 0 0 0 70 5.7 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +7088400.0 -20.6 -22.2 87 103900 0 0 170 0 0 0 0 0 0 0 70 5.2 3 1 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +7092000.0 -19.4 -21.1 87 103900 0 0 179 0 0 0 0 0 0 0 70 5.2 6 4 11.3 5790 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +7095600.0 -18.3 -20.0 87 103900 0 0 189 0 0 0 0 0 0 0 70 5.7 10 7 11.3 5790 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +7099200.0 -17.8 -19.4 87 103800 0 0 203 0 0 0 0 0 0 0 60 5.7 10 10 11.3 5790 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +7102800.0 -17.2 -18.9 87 103700 0 0 206 0 0 0 0 0 0 0 70 5.7 10 10 11.3 5790 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +7106400.0 -17.2 -18.9 87 103700 0 0 206 0 0 0 0 0 0 0 70 5.2 10 10 11.3 5790 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +7110000.0 -17.2 -18.9 87 103700 0 0 196 0 0 0 0 0 0 0 60 5.2 10 8 16.1 3350 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +7113600.0 -17.2 -18.9 87 103600 39 1181 196 10 11 10 1111 0 1114 315 80 5.7 10 8 24.1 4270 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +7117200.0 -16.7 -18.9 83 103600 146 1375 207 36 5 35 3983 0 3883 1121 80 5.2 10 10 24.1 4270 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7120800.0 -17.2 -18.9 87 103600 252 1375 196 95 57 86 10276 2139 9340 2505 60 5.7 10 8 24.1 4270 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7124400.0 -17.2 -19.4 83 103600 343 1375 195 146 99 122 15854 5794 13307 3683 60 6.2 10 8 24.1 4270 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7128000.0 -16.7 -18.9 83 103500 414 1375 190 217 254 143 23754 17240 15725 4574 70 6.7 10 5 24.1 4570 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7131600.0 -17.8 -19.4 87 103400 460 1375 184 275 419 138 30564 28431 15404 4819 50 6.2 7 3 24.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7135200.0 -17.2 -20.0 79 103400 476 1375 183 316 609 109 35954 37210 12447 4202 60 6.2 5 2 24.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7138800.0 -17.2 -19.4 83 103400 463 1375 184 288 551 106 32734 32906 12092 4061 50 6.2 4 2 24.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7142400.0 -17.2 -20.0 79 103300 421 1375 183 258 613 74 29856 29799 8588 2961 60 7.2 4 2 24.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7146000.0 -17.2 -20.0 79 103300 353 1375 181 211 568 69 24088 23358 7900 2612 60 7.2 3 1 24.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7149600.0 -18.3 -20.6 83 103200 264 1375 177 121 338 58 13591 8818 6534 2032 60 6.2 5 1 24.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7153200.0 -19.4 -21.7 83 103200 160 1375 170 72 366 32 8090 0 3604 1090 70 6.7 3 0 24.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7156800.0 -20.0 -22.2 83 103100 51 1364 168 17 157 10 1921 0 1132 334 60 6.2 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7160400.0 -20.6 -23.3 79 103100 0 0 166 0 0 0 0 0 0 0 50 5.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7164000.0 -21.1 -23.3 82 103100 0 0 164 0 0 0 0 0 0 0 50 6.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7167600.0 -21.7 -23.9 82 103000 0 0 163 0 0 0 0 0 0 0 50 6.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7171200.0 -22.2 -24.4 82 103000 0 0 161 0 0 0 0 0 0 0 50 5.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7174800.0 -22.2 -23.9 86 103000 0 0 161 0 0 0 0 0 0 0 50 6.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7178400.0 -22.2 -24.4 82 102900 0 0 161 0 0 0 0 0 0 0 50 6.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7182000.0 -23.3 -25.6 82 102900 0 0 157 0 0 0 0 0 0 0 50 6.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7185600.0 -23.3 -25.0 86 102800 0 0 158 0 0 0 0 0 0 0 60 6.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7189200.0 -23.9 -26.1 82 102700 0 0 155 0 0 0 0 0 0 0 50 5.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7192800.0 -23.9 -26.7 78 102700 0 0 155 0 0 0 0 0 0 0 70 5.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7196400.0 -23.9 -26.1 82 102700 0 0 155 0 0 0 0 0 0 0 50 6.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7200000.0 -23.9 -26.1 82 102600 46 1294 155 12 75 9 1361 0 1022 303 60 5.7 0 0 24.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7203600.0 -23.3 -25.0 86 102600 156 1375 158 64 304 32 7175 0 3596 1080 60 6.2 0 0 24.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7207200.0 -22.8 -24.4 86 102500 261 1375 159 136 492 47 15524 10273 5378 1732 60 6.2 0 0 24.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7210800.0 -21.7 -23.9 82 102500 352 1375 163 210 610 58 24309 22920 6731 2278 60 5.2 0 0 24.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7214400.0 -20.0 -22.8 79 102400 423 1375 168 271 680 67 31630 31947 7840 2738 50 6.7 0 0 24.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7218000.0 -19.4 -22.2 79 102300 468 1375 170 312 717 72 36621 36930 8474 3017 60 5.2 0 0 24.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7221600.0 -18.3 -21.1 79 102200 485 1375 177 327 712 81 38177 38919 9484 3368 60 6.7 1 1 24.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7225200.0 -17.8 -20.6 79 102200 472 1375 183 321 580 126 36058 37844 14211 4623 50 5.7 4 3 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7228800.0 -17.8 -20.6 79 102100 429 1375 186 218 292 128 24190 18769 14263 4414 50 6.7 6 5 16.1 4880 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7232400.0 -17.8 -20.6 79 102000 361 1375 190 141 112 113 15501 6332 12474 3677 50 6.2 7 7 16.1 4880 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7236000.0 -17.8 -20.6 79 101900 272 1375 202 85 3 84 9289 116 9215 2608 40 6.7 10 10 11.3 4880 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7239600.0 -17.2 -20.0 79 101800 168 1375 205 28 2 28 3194 0 3201 1001 50 7.2 10 10 11.3 4880 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7243200.0 -17.8 -20.0 83 101700 59 1375 203 11 1 11 1244 0 1246 370 60 6.7 10 10 11.3 4880 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7246800.0 -17.8 -20.6 79 101700 0 103 202 0 0 0 0 0 0 0 60 6.2 10 10 11.3 4880 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7250400.0 -17.8 -20.0 83 101600 0 0 193 0 0 0 0 0 0 0 60 5.2 10 8 11.3 4880 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7254000.0 -17.8 -20.0 83 101600 0 0 197 0 0 0 0 0 0 0 70 4.1 10 9 11.3 3960 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7257600.0 -17.8 -20.0 83 101500 0 0 203 0 0 0 0 0 0 0 40 3.1 10 10 11.3 3960 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7261200.0 -18.3 -20.6 83 101500 0 0 181 0 0 0 0 0 0 0 50 3.1 7 3 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +7264800.0 -17.8 -20.0 83 101400 0 0 186 0 0 0 0 0 0 0 30 2.6 9 5 11.3 3660 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +7268400.0 -19.4 -21.1 87 101400 0 0 178 0 0 0 0 0 0 0 20 2.6 7 3 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +7272000.0 -20.0 -21.7 87 101400 0 0 176 0 0 0 0 0 0 0 30 3.1 7 3 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +7275600.0 -19.4 -21.1 87 101400 0 0 176 0 0 0 0 0 0 0 20 2.6 5 2 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +7279200.0 -20.6 -21.7 91 101400 0 0 170 0 0 0 0 0 0 0 0 0.0 2 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7282800.0 -22.8 -24.4 86 101400 0 34 159 0 0 0 0 0 0 0 300 3.6 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7286400.0 -23.3 -25.0 86 101400 55 1374 158 12 60 10 1363 0 1138 339 320 3.6 0 0 24.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7290000.0 -23.3 -25.6 82 101500 165 1374 157 66 273 36 7368 0 4029 1199 310 4.1 0 0 24.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7293600.0 -22.8 -24.4 86 101500 270 1374 159 138 453 52 15680 11135 5924 1895 290 4.1 0 0 24.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7297200.0 -22.2 -23.9 86 101500 361 1374 161 210 568 65 24156 23226 7497 2518 290 4.1 0 0 24.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7300800.0 -21.1 -23.3 82 101600 432 1374 164 270 638 74 31342 31676 8614 2992 290 4.1 0 0 24.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7304400.0 -20.0 -22.8 79 101700 477 1374 168 311 679 80 36282 36731 9360 3314 290 4.6 0 0 24.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7308000.0 -19.4 -22.2 79 101700 493 1374 170 327 694 83 38185 38646 9721 3460 290 4.1 0 0 24.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7311600.0 -18.3 -22.2 72 101800 480 1374 173 316 686 81 36855 37372 9475 3356 280 4.1 0 0 24.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7315200.0 -17.8 -21.7 72 101800 438 1374 174 278 651 75 32282 32707 8734 3041 270 3.6 0 0 24.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7318800.0 -18.3 -21.1 79 101800 369 1374 174 220 586 66 25332 24533 7621 2571 270 3.6 0 0 24.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7322400.0 -18.9 -21.7 79 101800 280 1374 171 148 477 54 16825 12772 6155 1978 270 3.6 0 0 24.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7326000.0 -20.6 -22.8 83 101900 176 1374 166 75 303 38 8385 0 4260 1278 280 4.6 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7329600.0 -21.1 -23.3 82 101900 67 1374 164 16 81 12 1813 0 1362 406 260 4.1 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7333200.0 -22.2 -25.0 78 101900 1 195 160 0 0 0 0 0 0 0 280 4.6 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7336800.0 -22.8 -25.0 82 101900 0 0 159 0 0 0 0 0 0 0 290 4.1 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7340400.0 -22.2 -24.4 82 102000 0 0 161 0 0 0 0 0 0 0 320 3.6 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7344000.0 -21.7 -23.3 87 102000 0 0 168 0 0 0 0 0 0 0 330 3.1 6 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7347600.0 -21.7 -23.3 87 102100 0 0 168 0 0 0 0 0 0 0 340 3.6 7 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7351200.0 -23.3 -25.0 86 102100 0 0 163 0 0 0 0 0 0 0 350 3.6 6 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7354800.0 -23.3 -25.6 82 102100 0 0 181 0 0 0 0 0 0 0 340 3.1 10 10 1.6 30 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7358400.0 -23.3 -25.6 82 102100 0 0 181 0 0 0 0 0 0 0 340 1.5 10 10 1.4 30 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7362000.0 -24.4 -26.1 86 102100 0 0 178 0 0 0 0 0 0 0 320 1.5 10 10 1.4 30 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7365600.0 -25.0 -27.2 82 102100 0 0 160 0 0 0 0 0 0 0 310 1.5 8 4 1.4 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7369200.0 -25.6 -28.3 78 102100 1 149 150 0 0 0 0 0 0 0 320 1.5 0 0 4.8 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7372800.0 -26.1 -27.8 86 102100 64 1373 149 22 256 10 2329 13042 1662 199 0 0.0 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7376400.0 -25.0 -27.2 82 102100 174 1373 152 85 500 26 9791 0 3000 954 0 0.0 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7380000.0 -22.8 -25.0 82 102100 279 1373 159 164 658 35 19293 12313 4124 1392 340 1.5 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7383600.0 -22.2 -24.4 82 102100 370 1373 161 240 749 43 25324 65422 6770 901 330 1.5 0 0 9.7 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7387200.0 -21.7 -23.3 87 102100 441 1373 163 301 803 49 31742 72995 7618 1042 350 2.6 0 0 9.7 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7390800.0 -20.6 -22.8 83 102000 486 1373 166 342 831 53 36040 77015 8169 1130 360 3.1 0 0 9.7 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7394400.0 -20.6 -21.7 91 102000 502 1373 167 357 842 55 37608 78518 8447 1163 30 3.1 0 0 9.7 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7398000.0 -20.6 -22.2 87 101900 488 1373 167 345 835 54 36344 77466 8313 1137 20 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7401600.0 -20.6 -22.2 87 101800 446 1373 167 307 809 50 32370 73733 7762 1054 20 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7405200.0 -20.6 -22.2 87 101800 377 1373 167 248 757 44 26173 66469 6916 917 20 3.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7408800.0 -21.1 -23.3 82 101800 288 1373 164 172 670 36 20252 13792 4246 1438 30 3.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7412400.0 -22.2 -23.9 86 101800 184 1373 161 93 521 27 10734 0 3122 999 40 3.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7416000.0 -23.3 -25.6 82 101700 74 1373 157 25 294 11 2648 15623 1826 223 50 3.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7419600.0 -23.9 -26.7 78 101700 2 309 155 0 0 0 0 0 0 0 30 2.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7423200.0 -23.9 -26.7 78 101600 0 0 155 0 0 0 0 0 0 0 40 3.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7426800.0 -24.4 -27.2 78 101600 0 0 153 0 0 0 0 0 0 0 30 3.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7430400.0 -25.6 -27.8 82 101600 0 0 150 0 0 0 0 0 0 0 40 2.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7434000.0 -26.1 -28.9 78 101500 0 0 148 0 0 0 0 0 0 0 40 3.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7437600.0 -26.1 -28.9 78 101500 0 0 148 0 0 0 0 0 0 0 50 3.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7441200.0 -26.1 -28.9 78 101500 0 0 148 0 0 0 0 0 0 0 30 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7444800.0 -26.1 -28.9 78 101400 0 0 148 0 0 0 0 0 0 0 40 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7448400.0 -26.7 -29.4 77 101300 0 0 146 0 0 0 0 0 0 0 40 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7452000.0 -28.3 -31.1 77 101300 0 0 142 0 0 0 0 0 0 0 50 3.6 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7455600.0 -28.3 -30.6 81 101300 2 263 145 0 0 0 0 0 0 0 50 3.6 4 1 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7459200.0 -27.2 -30.0 77 101200 73 1372 148 20 117 15 2241 0 1684 492 50 3.1 7 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7462800.0 -27.2 -29.4 81 101200 183 1372 148 82 317 42 9130 1396 4689 1392 50 3.1 7 1 4.8 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7466400.0 -25.6 -27.8 82 101100 288 1372 153 145 380 68 16232 12951 7637 2365 40 3.6 6 1 9.7 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7470000.0 -24.4 -26.1 86 101000 379 1372 157 227 594 68 26158 25980 7858 2659 40 4.6 6 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7473600.0 -23.9 -26.1 82 100900 450 1372 158 287 631 85 33107 34051 9836 3395 60 2.6 6 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7477200.0 -23.9 -25.6 86 100900 494 1372 159 334 683 93 38672 39852 10803 3794 50 4.1 6 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7480800.0 -21.7 -24.4 78 100800 510 1372 165 286 512 99 33073 30928 11487 4041 50 5.2 6 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7484400.0 -21.1 -23.9 79 100700 496 1372 167 324 660 89 37663 37893 10378 3672 50 6.2 6 1 24.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7488000.0 -21.1 -23.9 79 100600 454 1372 173 270 397 141 29928 27315 15697 4849 50 5.7 9 4 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7491600.0 -21.1 -23.9 79 100500 385 1372 174 240 370 138 26149 24365 15104 4268 50 6.2 10 5 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7495200.0 -20.6 -23.3 79 100400 296 1372 182 103 114 80 11408 4521 8892 2667 60 6.7 10 8 11.3 6100 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7498800.0 -20.6 -23.3 79 100300 192 1372 191 64 31 60 6947 528 6537 1766 50 6.7 10 10 11.3 6100 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7502400.0 -20.6 -23.3 79 100200 82 1372 191 15 0 15 1456 0 1466 507 50 6.2 10 10 11.3 6100 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7506000.0 -20.6 -23.9 75 100100 4 400 191 0 0 0 0 0 0 0 50 6.2 10 10 11.3 6100 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7509600.0 -20.0 -23.9 71 100000 0 0 183 0 0 0 0 0 0 0 40 7.2 10 8 11.3 6100 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +7513200.0 -20.0 -23.3 75 100000 0 0 184 0 0 0 0 0 0 0 40 6.7 10 8 11.3 6100 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +7516800.0 -19.4 -23.3 72 99900 0 0 195 0 0 0 0 0 0 0 40 8.2 10 10 11.3 6100 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +7520400.0 -18.9 -22.8 72 99800 0 0 197 0 0 0 0 0 0 0 40 8.2 10 10 11.3 6100 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +7524000.0 -18.9 -22.2 75 99700 0 0 197 0 0 0 0 0 0 0 40 7.7 10 10 11.3 5490 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7527600.0 -18.9 -20.6 87 99600 0 0 199 0 0 0 0 0 0 0 40 8.8 10 10 2.4 760 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7531200.0 -18.3 -20.0 87 99500 0 0 201 0 0 0 0 0 0 0 40 8.2 10 10 1.2 760 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7534800.0 -17.8 -19.4 87 99500 0 0 203 0 0 0 0 0 0 0 50 8.2 10 10 3.2 760 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7538400.0 -17.8 -19.4 87 99400 0 0 203 0 0 0 0 0 0 0 50 8.2 10 10 1.6 760 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7542000.0 -17.8 -18.9 91 99400 6 377 204 1 0 1 0 0 0 0 50 7.2 10 10 2.4 1190 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7545600.0 -17.8 -18.9 91 99300 81 1371 204 16 3 16 1798 0 1801 532 50 7.2 10 10 4.0 1070 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7549200.0 -17.2 -18.9 87 99300 192 1371 206 59 5 59 6413 81 6436 1752 60 6.2 10 10 6.4 1010 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +7552800.0 -17.2 -18.9 87 99300 297 1371 190 139 156 106 15039 7785 11517 3109 50 5.2 10 6 8.0 910 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +7556400.0 -17.2 -18.9 87 99300 388 1371 190 213 306 129 23349 19229 14203 4148 50 4.6 10 6 9.7 4270 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +7560000.0 -16.7 -18.9 83 99300 458 1371 190 266 289 171 29038 22072 18758 5397 50 3.1 10 5 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +7563600.0 -16.7 -18.9 83 99300 503 1371 190 321 377 185 35207 30186 20392 6034 50 3.1 10 5 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +7567200.0 -16.1 -18.3 83 99300 519 1371 193 315 320 196 34514 26417 21585 6359 60 3.1 10 5 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +7570800.0 -15.0 -18.3 76 99300 505 1371 193 331 529 139 37188 36606 15683 5136 30 1.5 9 3 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +7574400.0 -15.0 -17.8 80 99300 462 1371 193 305 545 125 34204 35147 14075 4551 0 0.0 8 3 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +7578000.0 -16.1 -18.3 83 99400 393 1371 190 224 395 113 24867 22985 12595 3885 280 2.1 7 3 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +7581600.0 -16.1 -17.8 87 99400 304 1371 190 164 412 76 18287 15874 8503 2618 340 2.6 8 3 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +7585200.0 -16.7 -18.3 87 99400 200 1371 198 66 16 64 7152 323 6961 1871 320 2.6 10 8 11.3 1220 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +7588800.0 -16.1 -17.8 87 99400 90 1371 200 21 20 20 2333 0 2227 641 320 3.1 10 8 11.3 1010 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +7592400.0 -16.1 -18.3 83 99500 6 514 210 2 0 2 0 0 0 0 310 3.1 10 10 11.3 980 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +7596000.0 -16.7 -17.8 91 99500 0 0 208 0 0 0 0 0 0 0 310 2.6 10 10 11.3 850 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +7599600.0 -17.8 -18.9 91 99600 0 0 186 0 0 0 0 0 0 0 290 2.6 6 4 11.3 820 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +7603200.0 -20.6 -22.2 87 99600 0 0 174 0 0 0 0 0 0 0 290 2.6 3 3 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +7606800.0 -20.0 -21.7 87 99700 0 0 179 0 0 0 0 0 0 0 270 3.1 7 5 11.3 550 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +7610400.0 -18.9 -20.6 87 99700 0 0 189 0 0 0 0 0 0 0 280 2.6 8 8 11.3 550 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +7614000.0 -18.3 -19.4 91 99800 0 0 202 0 0 0 0 0 0 0 290 2.6 10 10 11.3 550 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +7617600.0 -18.3 -19.4 91 99800 0 0 202 0 0 0 0 0 0 0 290 2.6 10 10 11.3 460 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +7621200.0 -18.3 -19.4 91 99900 0 0 202 0 0 0 0 0 0 0 290 3.1 10 10 11.3 460 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +7624800.0 -18.3 -20.0 87 99900 0 0 196 0 0 0 0 0 0 0 300 2.6 10 9 11.3 340 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +7628400.0 -18.9 -20.6 87 100000 6 491 199 0 0 0 0 0 0 0 280 2.1 10 10 11.3 400 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +7632000.0 -18.9 -20.6 87 100000 90 1371 184 24 11 23 2639 0 2536 706 310 3.1 9 6 11.3 370 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +7635600.0 -19.4 -21.1 87 100100 201 1371 179 87 117 71 9353 2891 7663 1970 320 2.6 9 4 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +7639200.0 -18.3 -20.0 87 100100 306 1371 186 147 90 127 15714 5290 13640 3404 310 1.5 10 6 11.3 3050 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +7642800.0 -17.2 -18.3 91 100200 397 1371 191 142 98 114 15767 5749 12709 3926 320 1.5 10 6 8.0 7620 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +7646400.0 -16.7 -18.3 87 100200 467 1371 192 271 276 179 29537 21650 19607 5595 330 2.1 10 6 11.3 7620 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +7650000.0 -16.1 -17.8 87 100300 511 1371 200 229 62 206 24942 5262 22555 6419 340 2.6 10 8 6.4 7620 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7653600.0 -15.6 -17.8 83 100300 527 1371 202 233 90 199 25548 7484 21932 6491 40 2.1 10 8 6.4 7620 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7657200.0 -15.0 -17.2 83 100400 513 1371 201 223 84 192 24442 6851 21151 6245 60 1.5 10 7 6.4 7620 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7660800.0 -15.0 -17.8 80 100400 470 1371 200 200 51 183 21777 4051 20027 5684 80 2.6 10 7 11.3 7620 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7664400.0 -15.6 -17.8 83 100400 401 1371 212 91 6 89 10324 309 10132 3345 70 2.1 10 10 11.3 7620 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7668000.0 -16.1 -18.3 83 100500 312 1371 200 102 67 88 11269 2948 9758 2914 70 1.5 10 8 11.3 7620 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7671600.0 -16.7 -18.3 87 100500 208 1371 195 69 45 63 7517 930 6888 1902 80 2.1 10 7 11.3 7620 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7675200.0 -16.7 -18.3 87 100600 98 1371 198 28 24 26 3065 0 2854 784 70 3.1 10 8 11.3 7620 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7678800.0 -17.2 -19.4 83 100600 9 605 205 0 0 0 0 0 0 0 70 3.6 10 10 6.4 7620 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7682400.0 -17.2 -18.9 87 100700 0 0 206 0 0 0 0 0 0 0 70 3.1 10 10 6.4 7620 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7686000.0 -17.8 -19.4 87 100700 0 0 203 0 0 0 0 0 0 0 80 3.1 10 10 6.4 3050 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7689600.0 -18.3 -20.0 87 100800 0 0 201 0 0 0 0 0 0 0 40 3.1 10 10 11.3 2900 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7693200.0 -18.3 -20.0 87 100800 0 0 201 0 0 0 0 0 0 0 70 3.6 10 10 11.3 2900 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7696800.0 -18.3 -20.0 87 100900 0 0 192 0 0 0 0 0 0 0 50 4.1 10 8 8.0 2900 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7700400.0 -17.8 -19.4 87 100900 0 0 203 0 0 0 0 0 0 0 70 4.1 10 10 9.7 1430 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7704000.0 -17.2 -18.3 91 100900 0 0 206 0 0 0 0 0 0 0 50 4.1 10 10 9.7 1310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7707600.0 -17.2 -18.9 87 101000 0 0 206 0 0 0 0 0 0 0 50 4.1 10 10 9.7 2900 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7711200.0 -16.7 -18.3 87 101000 0 0 208 0 0 0 0 0 0 0 50 4.1 10 10 6.4 1220 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7714800.0 -16.7 -17.8 91 101000 10 605 208 1 1 1 0 0 0 0 50 5.2 10 10 6.4 730 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7718400.0 -15.6 -17.2 87 101100 99 1370 212 17 4 16 1940 0 1829 559 60 4.1 10 10 6.4 700 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7722000.0 -15.0 -16.7 87 101100 210 1370 215 69 5 68 7476 118 7396 1991 60 5.2 10 10 6.4 520 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7725600.0 -15.0 -16.1 91 101100 315 1370 215 103 7 102 11250 346 11186 3185 60 5.7 10 10 4.8 610 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7729200.0 -14.4 -15.6 91 101100 406 1370 218 144 7 141 15746 468 15488 4484 60 5.2 10 10 4.8 520 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7732800.0 -13.3 -15.0 87 101100 475 1370 222 205 4 204 22143 338 22152 5979 70 6.2 10 10 8.0 340 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7736400.0 -12.8 -14.4 88 101200 520 1370 224 224 1 223 24279 88 24302 6715 70 6.2 10 10 9.7 210 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7740000.0 -11.7 -13.3 88 101200 535 1370 218 346 329 220 37681 28724 24088 6871 80 6.2 10 8 11.3 210 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7743600.0 -11.1 -12.2 92 101200 521 1370 221 296 171 232 31979 15409 25204 6820 100 6.7 10 8 2.4 150 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7747200.0 -11.1 -12.8 88 101200 478 1370 225 221 84 192 24006 6819 20964 5885 90 7.2 10 9 4.8 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7750800.0 -11.1 -12.8 88 101200 409 1370 232 156 6 154 16947 422 16810 4708 90 6.7 10 10 4.8 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7754400.0 -11.1 -12.8 88 101200 320 1370 232 108 5 107 11765 256 11705 3299 90 5.7 10 10 11.3 340 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7758000.0 -11.7 -12.8 92 101300 216 1370 229 71 1 71 7682 26 7712 2069 80 5.7 10 10 11.3 370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7761600.0 -11.7 -12.8 92 101300 106 1370 229 24 2 24 2661 0 2667 768 80 6.2 10 10 8.0 340 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7765200.0 -12.8 -14.4 88 101300 13 696 224 0 0 0 0 0 0 0 80 6.2 10 10 4.8 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7768800.0 -15.5 -17.6 92 101300 0 0 212 0 0 0 0 0 0 0 80 5.9 10 10 6.4 240 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7772400.0 -18.3 -20.9 96 101300 0 0 200 0 0 0 0 0 0 0 110 5.7 10 10 6.4 150 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7776000.0 -21.1 -24.2 92 101300 0 0 189 0 0 0 0 0 0 0 120 5.4 10 10 6.4 150 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +7779600.0 -23.9 -27.6 72 101400 0 0 154 0 0 0 0 0 0 0 80 5.1 0 0 8.0 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +7783200.0 -26.7 -30.9 69 101400 0 0 145 0 0 0 0 0 0 0 80 4.8 0 0 9.7 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +7786800.0 -29.5 -34.2 65 101400 0 0 137 0 0 0 0 0 0 0 80 4.6 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +7790400.0 -32.4 -37.6 63 101400 0 0 128 0 0 0 0 0 0 0 80 4.3 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +7794000.0 -33.2 -38.2 62 101400 0 0 126 0 0 0 0 0 0 0 80 3.9 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +7797600.0 -33.9 -38.9 60 101400 0 0 124 0 0 0 0 0 0 0 80 3.6 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +7801200.0 -33.7 -38.9 61 101300 16 787 125 7 66 4 0 0 0 0 80 3.9 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +7804800.0 -33.5 -38.3 63 101300 112 1368 126 47 319 22 5268 0 2471 730 80 4.3 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +7808400.0 -33.3 -37.8 64 101300 223 1368 126 122 539 36 13999 4554 4139 1327 80 4.6 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +7812000.0 -31.5 -36.0 66 101300 327 1368 131 207 651 54 23906 21750 6252 2090 80 4.8 2 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +7815600.0 -29.6 -34.0 67 101200 418 1368 137 290 710 76 33463 35106 8795 3010 80 5.0 4 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +7819200.0 -27.8 -31.7 69 101200 487 1368 142 360 735 100 41361 44004 11529 3979 80 5.2 6 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +7822800.0 -27.1 -31.3 69 101200 531 1368 144 402 763 109 46342 48584 12610 4425 80 5.4 6 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +7826400.0 -26.3 -30.5 70 101200 546 1368 149 412 762 110 47623 49039 12760 4516 70 5.5 6 1 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +7830000.0 -25.6 -29.4 70 101200 532 1368 152 374 654 122 42738 43531 13995 4819 70 5.7 6 1 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +7833600.0 -25.6 -29.6 71 101100 489 1368 152 336 633 111 38302 39617 12700 4311 70 6.0 4 1 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +7837200.0 -25.6 -29.4 73 101100 420 1368 149 274 690 64 32072 31833 7510 2628 60 6.4 2 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +7840800.0 -25.6 -28.9 74 101100 331 1368 149 207 667 47 24196 20788 5505 1874 60 6.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7844400.0 -26.5 -30.4 72 101000 227 1368 149 119 448 46 13412 6490 5198 1611 60 6.5 2 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7848000.0 -27.4 -31.4 71 101000 116 1368 146 41 131 31 4482 0 3399 930 70 6.4 5 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7851600.0 -28.3 -32.2 69 101000 19 855 145 8 47 5 0 0 0 0 70 6.2 7 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7855200.0 -28.3 -31.5 79 100900 0 0 146 0 0 0 0 0 0 0 70 5.9 7 2 8.6 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7858800.0 -28.3 -30.2 90 100900 0 0 148 0 0 0 0 0 0 0 60 5.5 6 3 5.9 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7862400.0 -28.3 -28.3 100 100900 0 0 150 0 0 0 0 0 0 0 60 5.2 6 3 3.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7866000.0 -28.5 -29.2 100 100900 0 0 147 0 0 0 0 0 0 0 60 4.8 4 2 4.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7869600.0 -28.7 -29.2 100 100900 0 0 145 0 0 0 0 0 0 0 60 4.5 2 1 5.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7873200.0 -28.9 -28.9 100 100900 0 0 142 0 0 0 0 0 0 0 60 4.1 0 0 6.4 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7876800.0 -29.3 -31.1 90 100800 0 0 139 0 0 0 0 0 0 0 90 3.8 1 0 8.0 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7880400.0 -29.6 -32.5 79 100800 0 0 140 0 0 0 0 0 0 0 120 3.4 1 1 9.7 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7884000.0 -30.0 -33.9 69 100800 0 0 139 0 0 0 0 0 0 0 150 3.1 2 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7887600.0 -29.6 -33.9 69 100800 21 900 141 3 10 3 0 0 0 0 120 3.6 4 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7891200.0 -29.3 -33.3 69 100800 120 1367 142 44 81 37 4755 0 4012 1043 90 4.1 7 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7894800.0 -28.9 -32.8 69 100800 232 1367 145 107 173 78 11566 5545 8465 2245 60 4.6 9 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7898400.0 -28.0 -31.9 71 100800 336 1367 148 159 172 117 17287 9793 12776 3543 60 5.6 9 3 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7902000.0 -27.0 -30.8 72 100800 426 1367 151 239 355 129 26482 23035 14354 4403 70 6.7 8 3 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7905600.0 -26.1 -29.4 74 100700 495 1367 154 303 393 162 33543 29516 18017 5555 70 7.7 8 3 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7909200.0 -25.4 -28.8 75 100700 539 1367 156 325 374 178 36075 29586 19852 6220 70 6.7 6 3 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7912800.0 -24.6 -27.9 77 100700 554 1367 158 390 612 144 44197 43946 16388 5543 60 5.6 4 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7916400.0 -23.9 -26.7 78 100700 540 1367 160 362 625 117 41579 40979 13488 4708 60 4.6 2 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7920000.0 -24.1 -27.4 77 100700 497 1367 157 326 602 108 37314 37378 12406 4259 60 4.3 1 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7923600.0 -24.2 -27.8 75 100700 428 1367 156 255 489 103 28797 28173 11674 3821 60 3.9 1 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7927200.0 -24.4 -27.8 74 100700 339 1367 153 193 515 67 21988 20214 7655 2507 60 3.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7930800.0 -25.2 -29.0 74 100800 235 1367 150 113 367 52 12652 6946 5839 1784 60 3.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7934400.0 -25.9 -29.6 73 100800 124 1367 148 44 158 31 4838 0 3418 958 60 3.6 1 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +7938000.0 -26.7 -30.0 73 100800 23 946 146 6 16 5 0 0 0 0 60 3.6 1 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7941600.0 -27.1 -31.2 72 100800 0 0 144 0 0 0 0 0 0 0 60 3.4 1 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7945200.0 -27.4 -31.7 70 100800 0 0 143 0 0 0 0 0 0 0 60 3.3 1 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7948800.0 -27.8 -31.7 69 100800 0 0 142 0 0 0 0 0 0 0 60 3.1 1 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7952400.0 -28.2 -32.9 68 100800 0 0 141 0 0 0 0 0 0 0 60 3.4 1 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7956000.0 -28.5 -33.2 66 100800 0 0 140 0 0 0 0 0 0 0 60 3.8 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7959600.0 -28.9 -33.3 65 100800 0 0 139 0 0 0 0 0 0 0 60 4.1 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7963200.0 -29.1 -33.8 66 100800 0 0 138 0 0 0 0 0 0 0 60 4.1 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7966800.0 -29.2 -33.5 68 100800 0 0 138 0 0 0 0 0 0 0 50 4.1 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7970400.0 -29.4 -33.3 69 100800 0 0 138 0 0 0 0 0 0 0 50 4.1 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7974000.0 -28.9 -33.1 69 100800 26 1013 139 7 33 6 0 0 0 0 50 3.9 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7977600.0 -28.3 -32.4 69 100800 129 1367 141 49 209 30 5424 0 3329 955 60 3.8 1 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7981200.0 -27.8 -31.7 69 100800 240 1367 142 122 413 50 13736 7813 5645 1752 60 3.6 1 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7984800.0 -26.7 -29.5 79 100800 345 1367 149 195 444 85 21833 20515 9550 2995 60 4.6 3 1 8.6 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7988400.0 -25.5 -27.1 90 100800 435 1367 154 273 528 107 30785 31163 12111 3953 50 5.7 6 1 5.9 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7992000.0 -24.4 -24.4 100 100800 504 1367 160 336 513 148 37546 36768 16611 5328 50 6.7 8 2 3.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7995600.0 -23.7 -24.0 100 100800 547 1367 163 353 423 185 39127 34021 20605 6427 50 6.5 9 2 2.7 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +7999200.0 -22.9 -23.2 100 100800 562 1367 165 351 444 170 39309 34276 19127 6234 50 6.4 9 2 2.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8002800.0 -22.2 -22.2 100 100700 548 1367 168 390 515 185 43230 41365 20607 6432 50 6.2 10 2 1.6 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8006400.0 -22.4 -22.8 100 100700 504 1367 167 324 460 155 36076 33699 17336 5489 50 5.9 9 2 2.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8010000.0 -22.6 -23.0 100 100700 436 1367 164 288 515 125 32075 32872 13979 4387 50 5.5 9 1 2.7 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8013600.0 -22.8 -22.8 100 100700 346 1367 164 199 429 92 22145 20803 10275 3165 50 5.2 8 1 3.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8017200.0 -23.2 -24.9 90 100700 242 1367 163 109 197 75 11877 6196 8203 2275 50 5.7 7 2 5.9 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8020800.0 -23.5 -26.4 80 100700 132 1367 161 51 136 38 5543 0 4143 1111 60 6.2 6 2 8.6 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8024400.0 -23.9 -27.8 70 100700 29 1059 161 6 6 6 681 0 682 201 60 6.7 5 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8028000.0 -24.5 -27.7 80 100800 0 0 159 0 0 0 0 0 0 0 60 6.0 4 3 9.7 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8031600.0 -25.0 -26.9 90 100800 0 0 157 0 0 0 0 0 0 0 60 5.3 3 2 8.0 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8035200.0 -25.6 -25.6 100 100800 0 0 157 0 0 0 0 0 0 0 60 4.6 2 2 6.4 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8038800.0 -26.0 -27.7 91 100800 0 0 152 0 0 0 0 0 0 0 50 5.0 1 1 8.0 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8042400.0 -26.3 -29.0 82 100800 0 0 150 0 0 0 0 0 0 0 50 5.3 1 1 9.7 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8046000.0 -26.7 -30.0 73 100800 0 0 146 0 0 0 0 0 0 0 40 5.7 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8049600.0 -26.7 -30.7 72 100800 0 0 150 0 0 0 0 0 0 0 40 5.9 3 2 8.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8053200.0 -26.7 -30.6 71 100800 0 0 154 0 0 0 0 0 0 0 50 6.0 7 5 5.4 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8056800.0 -26.7 -30.6 70 100800 0 0 157 0 0 0 0 0 0 0 50 6.2 10 7 2.4 5180 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8060400.0 -25.8 -29.8 71 100800 33 1127 163 7 5 6 801 0 688 205 50 6.2 10 8 2.7 3910 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8064000.0 -24.8 -28.5 73 100800 138 1366 170 43 27 41 4665 0 4463 1187 50 6.2 10 9 2.9 2640 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8067600.0 -23.9 -27.2 74 100700 249 1366 179 53 4 52 5970 85 5873 1830 50 6.2 10 10 3.2 1370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8071200.0 -23.3 -25.7 83 100700 353 1366 181 135 15 131 14620 936 14251 3877 60 6.2 10 10 3.7 1370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8074800.0 -22.8 -24.1 91 100700 443 1366 184 184 10 181 19908 792 19683 5348 60 6.2 10 10 4.3 1370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8078400.0 -22.2 -22.2 100 100700 512 1366 187 167 1 167 18513 76 18599 5789 70 6.2 10 10 4.8 1370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8082000.0 -21.5 -21.8 100 100700 555 1366 190 203 7 201 22387 586 22279 6792 70 6.0 10 10 4.3 1370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8085600.0 -20.7 -21.0 100 100700 570 1366 193 275 8 271 29676 785 29416 7806 60 5.9 10 10 3.7 1370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8089200.0 -20.0 -20.0 100 100700 555 1366 196 207 7 205 22790 591 22686 6862 60 5.7 10 10 3.2 1370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8092800.0 -19.6 -20.0 100 100700 512 1366 197 237 4 236 25522 368 25558 6711 60 5.9 10 10 4.8 1137 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8096400.0 -19.3 -19.6 100 100700 443 1366 198 181 1 181 19583 79 19683 5358 70 6.0 10 10 6.4 903 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8100000.0 -18.9 -18.9 100 100700 354 1366 200 149 1 149 15960 68 16038 4068 70 6.2 10 10 8.0 670 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8103600.0 -19.3 -19.7 100 100800 250 1366 198 91 1 91 9784 40 9826 2542 70 6.4 10 10 8.0 600 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8107200.0 -19.6 -19.9 100 100800 140 1366 197 46 0 46 4488 0 4518 1262 70 6.5 10 10 8.0 530 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8110800.0 -20.0 -20.0 100 100800 35 1149 196 8 0 8 773 0 778 258 70 6.7 10 10 8.0 460 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8114400.0 -20.4 -22.5 89 100800 0 0 187 0 0 0 0 0 0 0 70 5.7 9 9 9.1 1120 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +8118000.0 -20.7 -24.3 79 100800 0 0 178 0 0 0 0 0 0 0 60 4.6 8 7 10.2 1780 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +8121600.0 -21.1 -25.6 68 100900 0 0 174 0 0 0 0 0 0 0 60 3.6 7 6 11.3 2440 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +8125200.0 -20.9 -24.6 79 100900 0 0 177 0 0 0 0 0 0 0 60 3.3 8 7 10.2 1730 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +8128800.0 -20.8 -22.7 89 100900 0 0 186 0 0 0 0 0 0 0 60 2.9 9 9 9.1 1020 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +8132400.0 -20.6 -20.6 100 100900 0 0 194 0 0 0 0 0 0 0 60 2.6 10 10 8.0 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +8136000.0 -20.4 -21.9 93 100900 0 0 193 0 0 0 0 0 0 0 60 3.1 10 10 8.6 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +8139600.0 -20.2 -22.3 86 100900 0 0 193 0 0 0 0 0 0 0 70 3.6 10 10 9.1 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +8143200.0 -20.0 -22.8 79 100900 0 0 194 0 0 0 0 0 0 0 70 4.1 10 10 9.7 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +8146800.0 -20.2 -23.3 79 100900 40 1240 193 11 0 11 1064 0 1070 334 60 4.3 10 10 10.2 360 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +8150400.0 -20.4 -23.3 79 100900 147 1365 192 53 1 52 5667 5 5581 1375 60 4.4 10 10 10.8 410 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +8154000.0 -20.6 -23.3 79 101000 258 1365 191 101 1 101 10800 45 10848 2703 50 4.6 10 10 11.3 460 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8157600.0 -20.2 -23.3 78 101000 362 1365 193 153 1 153 16396 70 16477 4184 50 4.3 10 10 11.3 560 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8161200.0 -19.8 -23.2 76 101000 452 1365 189 137 37 125 15322 2384 14037 4482 50 3.9 10 9 11.3 660 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8164800.0 -19.4 -22.8 75 101000 520 1365 190 149 55 128 16915 3702 14588 4935 50 3.6 10 9 11.3 760 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8168400.0 -18.9 -22.6 75 101000 563 1365 192 241 61 216 26471 5299 23850 7119 60 3.4 10 9 11.3 760 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8172000.0 -18.3 -22.0 75 101000 578 1365 200 203 11 198 22532 912 22087 6954 60 3.3 10 10 11.3 760 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8175600.0 -17.8 -21.1 75 101000 563 1365 202 226 10 222 24765 880 24456 7208 70 3.1 10 10 11.3 760 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8179200.0 -18.2 -21.7 76 101000 520 1365 187 247 168 184 27218 13449 20375 6174 70 2.9 8 7 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8182800.0 -18.5 -21.9 78 101000 451 1365 181 325 613 125 36346 39455 14036 4483 60 2.8 6 4 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8186400.0 -18.9 -21.7 79 101100 362 1365 175 215 535 75 24444 23561 8553 2808 60 2.6 4 1 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8190000.0 -19.6 -23.0 78 101100 258 1365 172 139 453 55 15639 10787 6206 1934 60 2.6 3 1 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8193600.0 -20.4 -23.8 76 101100 147 1365 171 54 222 31 6030 0 3470 1028 60 2.6 3 2 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8197200.0 -21.1 -24.4 75 101100 41 1263 169 9 46 6 1042 0 695 211 60 2.6 2 2 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8200800.0 -21.5 -25.8 72 101100 0 0 165 0 0 0 0 0 0 0 60 2.4 1 1 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +8204400.0 -21.8 -26.5 70 101200 0 0 164 0 0 0 0 0 0 0 60 2.3 1 1 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +8208000.0 -22.2 -26.7 67 101200 0 0 159 0 0 0 0 0 0 0 60 2.1 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +8211600.0 -22.2 -26.8 71 101200 0 0 159 0 0 0 0 0 0 0 80 1.9 1 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +8215200.0 -22.2 -26.0 74 101300 0 0 163 0 0 0 0 0 0 0 100 1.7 2 1 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +8218800.0 -22.2 -25.0 78 101300 0 0 164 0 0 0 0 0 0 0 120 1.5 3 1 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +8222400.0 -22.0 -25.3 78 101300 0 0 169 0 0 0 0 0 0 0 170 1.5 5 4 10.8 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +8226000.0 -21.9 -24.8 78 101400 0 0 175 0 0 0 0 0 0 0 210 1.5 8 7 10.2 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +8229600.0 -21.7 -24.4 78 101400 0 0 187 0 0 0 0 0 0 0 260 1.5 10 10 9.7 460 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8233200.0 -20.8 -23.8 78 101500 48 1353 190 2 0 2 194 0 195 79 240 1.7 10 10 9.7 430 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8236800.0 -19.8 -22.8 79 101500 156 1364 189 37 10 36 4103 0 4003 1165 230 1.9 10 9 9.7 400 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8240400.0 -18.9 -21.7 79 101500 267 1364 192 46 10 45 5277 205 5174 1684 210 2.1 10 9 9.7 370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8244000.0 -18.0 -21.1 78 101600 371 1364 189 199 183 150 21418 12625 16223 4254 220 2.9 10 7 10.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8247600.0 -17.0 -20.4 76 101600 460 1364 188 282 371 158 30998 27128 17449 5201 240 3.8 10 5 10.8 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8251200.0 -16.1 -19.4 75 101700 528 1364 189 355 380 209 38776 32500 22949 6640 250 4.6 10 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8254800.0 -16.1 -19.9 74 101700 571 1364 188 341 380 183 38037 30297 20511 6596 250 5.0 7 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8258400.0 -16.1 -20.1 72 101800 586 1364 186 419 617 156 47501 45819 17762 6054 260 5.3 5 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8262000.0 -16.1 -20.0 71 101800 571 1364 186 395 654 123 45496 43992 14221 5031 260 5.7 2 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8265600.0 -17.2 -21.5 71 101900 527 1364 180 347 627 107 40032 39321 12387 4357 250 5.0 2 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8269200.0 -18.3 -22.6 71 102000 459 1364 176 290 562 103 33013 33150 11767 3961 240 4.3 3 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8272800.0 -19.4 -23.3 71 102000 369 1364 169 222 525 81 25145 24566 9204 2999 230 3.6 3 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8276400.0 -22.0 -26.9 67 102000 265 1364 160 139 414 60 15579 11361 6745 2084 230 4.1 2 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +8280000.0 -24.6 -29.9 63 102100 155 1364 151 63 235 37 6969 0 4104 1184 220 4.7 1 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +8283600.0 -27.2 -32.8 59 102100 48 1364 143 12 48 9 1358 0 1020 301 220 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +8287200.0 -27.9 -33.8 61 102100 0 11 141 0 0 0 0 0 0 0 220 5.0 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +8290800.0 -28.7 -34.1 63 102100 0 0 139 0 0 0 0 0 0 0 220 4.8 1 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +8294400.0 -29.4 -33.9 65 102100 0 0 137 0 0 0 0 0 0 0 220 4.6 1 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +8298000.0 -30.2 -35.5 64 102200 0 0 134 0 0 0 0 0 0 0 210 4.1 1 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +8301600.0 -30.9 -36.2 62 102200 0 0 132 0 0 0 0 0 0 0 210 3.6 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +8305200.0 -31.7 -36.7 61 102200 0 0 130 0 0 0 0 0 0 0 200 3.1 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +8308800.0 -30.9 -35.9 65 102200 0 0 133 0 0 0 0 0 0 0 170 2.8 0 0 7.7 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +8312400.0 -30.2 -34.3 69 102200 0 0 138 0 0 0 0 0 0 0 130 2.4 1 1 4.2 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +8316000.0 -29.4 -32.8 73 102100 0 102 141 0 0 0 0 0 0 0 100 2.1 1 1 0.6 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +8319600.0 -30.2 -34.2 70 102100 56 1363 138 8 25 7 934 0 817 252 100 2.3 1 1 4.2 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +8323200.0 -30.9 -35.2 68 102100 164 1363 133 65 197 42 7156 107 4638 1319 110 2.4 0 0 7.7 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +8326800.0 -31.7 -36.1 65 102100 275 1363 131 138 377 63 15466 11456 7082 2191 110 2.6 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +8330400.0 -30.0 -34.3 68 102100 379 1363 136 220 506 81 24997 24301 9233 3034 110 2.6 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +8334000.0 -28.4 -32.3 70 102100 468 1363 141 300 598 96 34437 34726 11057 3795 100 2.6 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +8337600.0 -26.7 -30.0 73 102100 536 1363 146 363 654 108 41946 41627 12524 4422 100 2.6 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +8341200.0 -25.6 -29.0 75 102000 579 1363 149 403 682 115 46770 45211 13394 4812 100 2.8 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +8344800.0 -24.4 -27.7 76 102000 593 1363 153 416 690 117 48357 46205 13650 4933 90 2.9 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +8348400.0 -23.3 -26.1 78 102000 578 1363 157 403 683 115 46759 45185 13391 4810 90 3.1 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +8352000.0 -23.1 -26.8 74 102000 535 1363 157 363 642 112 41811 41330 12947 4543 80 3.3 1 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +8355600.0 -23.0 -27.2 71 102000 466 1363 160 290 537 108 32959 32689 12319 4134 70 3.4 1 1 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +8359200.0 -22.8 -27.2 67 101900 377 1363 160 204 436 85 23073 21324 9646 3136 60 3.6 2 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +8362800.0 -23.7 -28.2 69 101900 273 1363 157 127 322 64 14202 9767 7179 2207 60 3.9 2 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +8366400.0 -24.7 -28.6 72 101900 163 1363 155 55 144 39 6085 0 4327 1252 70 4.3 3 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +8370000.0 -25.6 -28.9 74 101900 55 1363 152 9 22 8 1037 0 923 281 70 4.6 3 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +8373600.0 -25.8 -30.1 71 101800 0 102 151 0 0 0 0 0 0 0 70 4.4 5 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +8377200.0 -25.9 -30.6 69 101800 0 0 152 0 0 0 0 0 0 0 70 4.3 8 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +8380800.0 -26.1 -30.6 66 101800 0 0 152 0 0 0 0 0 0 0 70 4.1 10 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8384400.0 -26.1 -30.9 69 101800 0 0 152 0 0 0 0 0 0 0 70 3.9 9 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8388000.0 -26.1 -30.3 71 101800 0 0 152 0 0 0 0 0 0 0 80 3.8 7 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8391600.0 -26.1 -29.4 74 101800 0 0 153 0 0 0 0 0 0 0 80 3.6 6 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8395200.0 -24.3 -27.9 76 101700 0 0 162 0 0 0 0 0 0 0 80 3.8 7 5 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8398800.0 -22.4 -25.6 77 101700 0 0 173 0 0 0 0 0 0 0 70 3.9 9 7 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8402400.0 -20.6 -23.3 79 101600 1 216 191 0 0 0 0 0 0 0 70 4.1 10 10 11.3 2740 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8406000.0 -19.5 -22.5 79 101600 64 1362 195 6 1 6 715 0 715 224 70 4.1 10 10 11.3 1907 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8409600.0 -18.3 -21.3 79 101600 173 1362 200 38 4 37 4246 0 4145 1240 80 4.1 10 10 11.3 1073 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8413200.0 -17.2 -20.0 79 101600 284 1362 205 73 0 73 7212 0 7264 2454 80 4.1 10 10 11.3 240 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8416800.0 -17.2 -20.4 78 101500 387 1362 204 98 6 96 11004 316 10818 3460 80 3.9 10 10 11.3 210 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8420400.0 -17.2 -20.7 77 101500 476 1362 204 137 7 135 15323 474 15163 4866 90 3.8 10 10 11.3 180 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8424000.0 -17.2 -20.6 76 101500 544 1362 204 207 2 207 22720 170 22838 6791 90 3.6 10 10 11.3 150 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8427600.0 -17.8 -21.3 77 101500 587 1362 202 214 3 213 23661 258 23673 7324 80 3.3 10 10 11.3 150 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8431200.0 -18.3 -21.6 78 101400 601 1362 200 259 2 258 28272 189 28323 8146 80 2.9 10 10 11.3 150 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8434800.0 -18.9 -21.7 79 101400 586 1362 198 208 2 207 23049 169 23055 7208 70 2.6 10 10 11.3 150 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8438400.0 -19.1 -22.2 79 101400 542 1362 197 228 0 227 23032 0 23114 7043 70 3.1 10 10 11.3 180 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8442000.0 -19.2 -22.4 79 101400 473 1362 191 164 35 151 18167 2511 16802 5192 60 3.6 10 9 11.3 210 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8445600.0 -19.4 -22.2 79 101300 384 1362 191 152 50 138 16551 3285 15095 4254 60 4.1 10 9 11.3 240 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8449200.0 -19.6 -23.0 78 101300 281 1362 182 119 74 104 12813 3564 11247 2940 30 3.4 10 7 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8452800.0 -19.8 -23.2 76 101300 170 1362 178 64 41 59 6867 542 6355 1606 360 2.8 10 5 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8456400.0 -20.0 -23.3 75 101300 63 1362 175 13 13 12 1462 0 1352 396 330 2.1 10 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8460000.0 -20.7 -24.5 76 101300 1 216 172 0 0 0 0 0 0 0 340 2.1 7 3 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8463600.0 -21.5 -25.0 77 101300 0 0 168 0 0 0 0 0 0 0 340 2.1 5 2 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8467200.0 -22.2 -25.0 78 101400 0 0 166 0 0 0 0 0 0 0 350 2.1 2 2 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8470800.0 -22.2 -25.5 79 101300 0 0 163 0 0 0 0 0 0 0 350 2.3 1 1 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8474400.0 -22.2 -25.1 81 101300 0 0 163 0 0 0 0 0 0 0 350 2.4 1 1 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8478000.0 -22.2 -24.4 82 101300 0 0 161 0 0 0 0 0 0 0 350 2.6 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8481600.0 -22.6 -25.5 81 101300 0 0 159 0 0 0 0 0 0 0 360 2.8 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8485200.0 -22.9 -25.8 79 101300 0 0 158 0 0 0 0 0 0 0 20 2.9 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8488800.0 -23.3 -26.1 78 101300 6 352 157 1 4 1 0 0 0 0 30 3.1 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8492400.0 -22.9 -25.9 79 101300 73 1362 158 21 99 16 2335 0 1783 510 20 2.9 2 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8496000.0 -22.6 -25.1 81 101300 182 1362 162 74 225 45 8177 1248 4987 1445 360 2.8 5 1 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8499600.0 -22.2 -24.4 82 101300 292 1362 164 154 362 78 17062 13892 8672 2601 350 2.6 7 1 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8503200.0 -21.5 -24.2 80 101200 396 1362 166 241 490 101 27022 26968 11366 3622 360 3.5 7 1 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8506800.0 -20.7 -23.9 77 101200 484 1362 171 314 476 147 34956 33823 16437 5186 20 4.3 7 2 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8510400.0 -20.0 -23.3 75 101100 552 1362 173 382 522 172 42663 40504 19299 6219 30 5.2 7 2 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8514000.0 -19.3 -22.5 78 101100 595 1362 180 424 569 177 47686 44768 20000 6647 40 5.4 8 5 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8517600.0 -18.5 -21.4 80 101100 609 1362 187 267 87 229 29487 7718 25425 7827 50 5.5 9 7 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8521200.0 -17.8 -20.0 83 101000 593 1362 203 232 42 213 25689 3599 23707 7393 60 5.7 10 10 11.3 150 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8524800.0 -17.2 -19.8 83 101000 550 1362 205 153 11 148 17287 794 16793 5637 60 5.7 10 10 11.3 150 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8528400.0 -16.7 -19.2 83 100900 481 1362 207 150 4 148 16673 284 16523 5187 60 5.7 10 10 11.3 150 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8532000.0 -16.1 -18.3 83 100900 392 1362 210 126 4 125 13862 247 13811 4105 60 5.7 10 10 11.3 150 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8535600.0 -16.3 -19.1 82 100800 288 1362 208 74 3 73 8229 107 8145 2476 50 5.2 10 10 11.3 253 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8539200.0 -16.5 -19.3 80 100800 178 1362 208 54 1 54 5862 11 5882 1587 50 4.6 10 10 11.3 357 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8542800.0 -16.7 -19.4 79 100700 70 1362 207 12 1 12 1360 0 1362 407 40 4.1 10 10 11.3 460 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8546400.0 -17.2 -20.8 78 100700 2 329 194 0 0 0 0 0 0 0 40 5.0 10 8 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8550000.0 -17.8 -21.5 76 100600 0 0 187 0 0 0 0 0 0 0 50 5.8 10 6 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8553600.0 -18.3 -21.7 75 100600 0 0 182 0 0 0 0 0 0 0 50 6.7 10 4 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8557200.0 -17.8 -21.8 75 100500 0 0 186 0 0 0 0 0 0 0 50 6.5 10 6 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8560800.0 -17.2 -21.0 76 100500 0 0 191 0 0 0 0 0 0 0 60 6.4 10 7 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8564400.0 -16.7 -20.0 76 100500 0 0 201 0 0 0 0 0 0 0 60 6.2 10 9 11.3 1520 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8568000.0 -17.1 -20.7 77 100500 0 0 199 0 0 0 0 0 0 0 60 5.7 10 9 11.3 1127 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8571600.0 -17.4 -20.6 78 100500 0 0 204 0 0 0 0 0 0 0 60 5.1 10 10 11.3 733 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8575200.0 -17.8 -20.6 79 100400 5 465 202 0 0 0 0 0 0 0 60 4.6 10 10 11.3 340 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8578800.0 -17.6 -20.5 80 100400 81 1361 203 24 1 24 2601 0 2609 683 60 5.1 10 10 11.3 340 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8582400.0 -17.4 -20.0 82 100400 190 1361 204 51 7 50 5610 70 5517 1578 70 5.7 10 10 11.3 340 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8586000.0 -17.2 -19.4 83 100300 301 1361 205 65 4 64 7339 134 7248 2307 70 6.2 10 10 11.3 340 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8589600.0 -16.8 -19.4 82 100300 404 1361 206 121 4 119 13414 242 13246 4070 70 6.9 10 10 11.3 317 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +8593200.0 -16.5 -19.3 80 100300 492 1361 208 198 2 197 21550 166 21553 6100 70 7.5 10 10 11.3 293 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +8596800.0 -16.1 -18.9 79 100300 560 1361 209 176 1 176 19650 78 19743 6368 70 8.2 10 10 11.3 270 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +8600400.0 -15.7 -18.7 80 100300 602 1361 211 202 4 200 22526 332 22414 7223 70 8.0 10 10 11.3 433 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +8604000.0 -15.4 -18.1 82 100300 616 1361 212 239 1 238 26349 90 26381 8059 70 7.9 10 10 11.3 597 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +8607600.0 -15.0 -17.2 83 100300 600 1361 214 229 1 229 25242 89 25377 7747 70 7.7 10 10 11.3 760 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +8611200.0 -14.4 -17.6 80 100300 557 1361 216 221 0 221 22346 0 22526 7146 70 7.9 10 10 11.3 1320 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +8614800.0 -13.9 -17.6 76 100300 488 1361 218 195 1 195 21220 82 21330 6036 80 8.0 10 10 11.3 1880 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +8618400.0 -13.3 -17.2 73 100200 399 1361 220 143 0 143 14266 0 14374 4457 80 8.2 10 10 11.3 2440 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +8622000.0 -13.7 -18.2 72 100200 295 1361 218 94 1 94 10264 45 10305 2918 80 7.5 10 10 11.3 2033 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +8625600.0 -14.0 -18.6 70 100200 185 1361 216 62 0 62 6073 0 6114 1742 70 6.9 10 10 11.3 1627 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +8629200.0 -14.4 -18.9 69 100200 77 1361 215 19 0 19 1843 0 1855 581 70 6.2 10 10 11.3 1220 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +8632800.0 -14.6 -19.9 68 100200 12 420 213 2 0 2 0 0 0 0 70 6.5 10 10 11.3 1727 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +8636400.0 -14.8 -20.2 67 100300 0 0 212 0 0 0 0 0 0 0 80 6.9 10 10 11.3 2233 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +8640000.0 -15.0 -20.0 66 100300 0 0 212 0 0 0 0 0 0 0 80 7.2 10 10 11.3 2740 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +8643600.0 -15.0 -19.6 73 100300 0 0 212 0 0 0 0 0 0 0 80 6.9 10 10 10.2 2233 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +8647200.0 -15.0 -18.3 80 100300 0 0 213 0 0 0 0 0 0 0 80 6.5 10 10 9.1 1727 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +8650800.0 -15.0 -16.7 87 100300 0 0 215 0 0 0 0 0 0 0 80 6.2 10 10 8.0 1220 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +8654400.0 -15.0 -17.6 85 100300 0 0 208 0 0 0 0 0 0 0 80 5.7 10 9 9.1 1727 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +8658000.0 -15.0 -17.7 82 100300 0 0 208 0 0 0 0 0 0 0 80 5.1 10 9 10.2 2233 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +8661600.0 -15.0 -17.8 80 100200 8 578 203 0 0 0 0 0 0 0 80 4.6 10 8 11.3 2740 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +8665200.0 -15.0 -17.9 81 100200 89 1360 203 21 1 21 2319 0 2325 657 80 4.3 10 8 11.3 2153 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +8668800.0 -15.0 -17.6 82 100200 199 1360 204 55 23 51 6065 273 5642 1633 90 3.9 9 8 11.3 1567 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +8672400.0 -15.0 -17.2 83 100200 309 1360 204 101 36 93 11090 1637 10252 2985 90 3.6 9 8 11.3 980 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +8676000.0 -14.8 -18.0 78 100200 412 1360 198 182 92 155 19782 6554 16927 4739 90 4.1 8 6 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +8679600.0 -14.6 -18.6 74 100200 500 1360 194 290 286 185 31794 22893 20384 6019 90 4.7 7 3 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8683200.0 -14.4 -18.9 69 100200 568 1360 190 322 342 180 35949 27028 20192 6518 90 5.2 6 1 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8686800.0 -13.9 -18.9 68 100300 610 1360 191 405 509 178 45672 40017 20167 6786 90 4.8 4 1 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8690400.0 -13.3 -18.5 68 100300 623 1360 190 416 542 169 47245 41660 19280 6647 90 4.5 2 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8694000.0 -12.8 -17.8 67 100300 608 1360 192 399 554 152 45554 40707 17428 6085 90 4.1 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8697600.0 -13.0 -17.8 70 100300 564 1360 191 353 512 142 40147 36339 16217 5565 90 3.9 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8701200.0 -13.1 -17.4 73 100300 495 1360 191 295 465 126 33343 30611 14298 4765 90 3.8 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8704800.0 -13.3 -16.7 76 100300 406 1360 191 217 377 106 24303 21368 11917 3800 90 3.6 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8708400.0 -13.9 -17.9 75 100400 303 1360 188 139 263 81 15408 10601 9011 2719 90 3.1 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8712000.0 -14.4 -18.5 73 100400 193 1360 186 71 119 55 7758 1600 6030 1681 90 2.6 1 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8715600.0 -15.0 -18.9 72 100400 85 1360 184 20 13 19 2216 0 2110 601 90 2.1 1 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8719200.0 -15.7 -20.1 73 100500 7 533 185 0 0 0 0 0 0 0 100 2.1 3 1 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +8722800.0 -16.5 -20.6 75 100500 0 0 187 0 0 0 0 0 0 0 120 2.1 6 3 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +8726400.0 -17.2 -20.6 76 100500 0 0 186 0 0 0 0 0 0 0 130 2.1 8 4 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +8730000.0 -18.1 -21.1 84 100600 0 0 186 0 0 0 0 0 0 0 90 1.4 8 6 7.7 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +8733600.0 -19.1 -20.7 92 100600 0 0 186 0 0 0 0 0 0 0 40 0.7 9 7 4.0 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +8737200.0 -20.0 -20.0 100 100600 0 0 190 0 0 0 0 0 0 0 0 0.0 9 9 0.4 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +8740800.0 -20.0 -22.4 87 100600 0 0 180 0 0 0 0 0 0 0 20 0.7 7 6 4.0 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +8744400.0 -20.0 -24.0 74 100600 0 0 174 0 0 0 0 0 0 0 50 1.4 4 3 7.7 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +8748000.0 -20.0 -25.6 61 100500 12 691 166 5 32 3 0 0 0 0 70 2.1 2 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +8751600.0 -19.1 -23.1 74 100500 98 1359 177 33 132 24 3633 0 2649 741 70 2.3 4 3 7.6 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +8755200.0 -18.1 -20.2 87 100500 207 1359 187 75 94 61 8184 1816 6680 1856 70 2.4 7 6 3.9 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +8758800.0 -17.2 -17.2 100 100500 317 1359 201 99 40 90 10932 1802 9976 2977 70 2.6 9 9 0.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +8762400.0 -16.3 -16.5 100 100500 420 1359 205 205 123 168 22180 9220 18267 4980 70 3.1 9 9 0.4 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +8766000.0 -15.3 -15.6 100 100500 508 1359 204 211 106 172 23315 8136 19096 5873 80 3.6 8 8 0.6 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +8769600.0 -14.4 -14.4 100 100500 575 1359 208 239 82 204 26446 6851 22688 7065 80 4.1 8 8 0.8 60 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +8773200.0 -13.5 -13.8 100 100400 617 1359 212 307 194 220 34067 16715 24540 7764 80 4.8 8 8 3.2 60 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +8776800.0 -12.6 -12.9 100 100400 631 1359 215 219 20 210 24463 1680 23577 7690 80 5.5 9 8 5.6 60 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +8780400.0 -11.7 -11.7 100 100400 615 1359 219 289 124 233 31897 10965 25855 7977 80 6.2 9 8 8.0 60 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +8784000.0 -11.5 -12.4 96 100400 571 1359 219 287 163 218 31551 14057 24092 7267 90 6.5 9 8 6.9 293 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +8787600.0 -11.3 -12.8 91 100300 502 1359 220 247 117 204 26866 9822 22305 6315 90 6.9 9 8 5.9 527 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +8791200.0 -11.1 -12.8 87 100300 413 1359 220 194 81 170 20925 6080 18428 4935 100 7.2 9 8 4.8 760 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +8794800.0 -11.1 -13.8 84 100300 310 1359 220 109 58 96 11940 2693 10558 3049 140 6.5 9 8 7.0 863 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +8798400.0 -11.1 -14.2 80 100300 200 1359 219 69 32 65 7459 647 7053 1877 170 5.9 9 8 9.1 967 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +8802000.0 -11.1 -14.4 77 100300 92 1359 219 24 13 23 2634 0 2531 702 210 5.2 9 8 11.3 1070 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8805600.0 -11.3 -15.2 77 100400 10 646 212 2 3 2 0 0 0 0 220 5.0 8 6 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8809200.0 -11.5 -15.4 77 100400 0 0 208 0 0 0 0 0 0 0 230 4.8 7 4 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8812800.0 -11.7 -15.0 77 100400 0 0 204 0 0 0 0 0 0 0 240 4.6 6 2 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +8816400.0 -12.6 -16.4 78 100500 0 0 200 0 0 0 0 0 0 0 240 4.4 6 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8820000.0 -13.5 -16.9 79 100500 0 0 197 0 0 0 0 0 0 0 240 4.3 5 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8823600.0 -14.4 -17.2 80 100500 0 0 194 0 0 0 0 0 0 0 240 4.1 5 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8827200.0 -15.7 -18.9 81 100500 0 0 188 0 0 0 0 0 0 0 240 3.9 6 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8830800.0 -17.0 -19.7 82 100500 0 0 184 0 0 0 0 0 0 0 230 3.8 7 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8834400.0 -18.3 -20.6 83 100600 16 826 180 8 50 5 0 0 0 0 230 3.6 8 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8838000.0 -17.6 -20.4 82 100600 106 1359 182 42 169 29 4582 0 3173 861 230 3.3 8 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8841600.0 -16.8 -19.6 80 100600 215 1359 186 95 188 66 10339 4373 7209 1983 230 2.9 8 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8845200.0 -16.1 -18.9 79 100500 325 1359 189 190 369 103 20809 18703 11327 3267 230 2.6 8 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8848800.0 -14.6 -17.6 79 100600 428 1359 195 261 434 125 29014 27438 13953 4353 270 1.7 8 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8852400.0 -13.2 -16.2 80 100600 516 1359 202 305 394 156 34042 28839 17490 5612 320 0.9 9 4 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8856000.0 -11.7 -14.4 80 100600 583 1359 208 288 230 190 32112 18547 21289 6860 0 0.0 9 4 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8859600.0 -11.5 -15.1 77 100600 624 1359 209 452 503 222 50209 43542 24789 7878 350 1.0 9 5 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8863200.0 -11.3 -15.5 73 100600 638 1359 214 330 114 277 36093 11008 30473 8892 350 2.1 10 7 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8866800.0 -11.1 -15.6 70 100600 622 1359 218 367 219 268 40118 20885 29464 8573 340 3.1 10 8 11.3 1070 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8870400.0 -11.3 -14.7 80 100600 578 1359 218 300 108 255 32613 10147 27879 7841 310 3.3 10 8 9.1 803 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8874000.0 -11.5 -13.4 90 100600 509 1359 223 239 56 218 25900 4884 23752 6561 290 3.4 10 9 7.0 537 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8877600.0 -11.7 -11.7 100 100600 420 1359 224 154 12 150 16820 832 16459 4757 260 3.6 10 9 4.8 270 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8881200.0 -13.2 -14.7 92 100600 317 1359 208 117 15 113 12676 803 12296 3361 250 3.6 9 7 7.0 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8884800.0 -14.6 -17.1 84 100600 207 1359 198 92 89 79 9821 2630 8469 2086 240 3.6 9 5 9.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8888400.0 -16.1 -19.4 76 100600 99 1359 189 39 141 30 4215 0 3253 846 230 3.6 8 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +8892000.0 -18.9 -23.3 72 100700 13 759 176 6 40 4 0 0 0 0 230 4.5 5 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +8895600.0 -21.6 -26.6 67 100700 0 0 164 0 0 0 0 0 0 0 230 5.3 3 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +8899200.0 -24.4 -29.4 63 100700 0 0 152 0 0 0 0 0 0 0 230 6.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +8902800.0 -25.2 -30.5 65 100700 0 0 149 0 0 0 0 0 0 0 230 6.0 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +8906400.0 -25.9 -30.7 68 100700 0 0 147 0 0 0 0 0 0 0 220 5.9 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +8910000.0 -26.7 -30.6 70 100700 0 0 146 0 0 0 0 0 0 0 220 5.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +8913600.0 -24.5 -28.7 72 100700 0 0 157 0 0 0 0 0 0 0 230 6.2 3 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +8917200.0 -22.2 -26.0 73 100700 0 0 168 0 0 0 0 0 0 0 240 6.7 7 4 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +8920800.0 -20.0 -23.3 75 100700 21 939 179 4 4 4 0 0 0 0 250 7.2 10 6 11.3 910 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +8924400.0 -20.4 -24.9 69 100800 114 1358 174 40 115 31 4370 0 3396 927 250 6.7 7 4 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +8928000.0 -20.7 -26.1 64 100800 223 1358 171 95 265 52 10591 4571 5814 1751 250 6.2 4 3 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +8931600.0 -21.1 -27.2 58 100900 333 1358 165 192 574 53 22265 19461 6161 2079 250 5.7 1 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +8935200.0 -20.9 -27.0 59 100900 436 1358 166 289 680 72 33676 33806 8413 2942 250 6.7 1 1 10.2 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +8938800.0 -20.8 -26.7 60 100900 523 1358 168 348 608 115 39913 39368 13238 4595 250 7.8 2 2 9.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +8942400.0 -20.6 -26.1 61 101000 590 1358 169 422 632 149 48111 46310 17059 5907 250 8.8 2 2 8.0 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +8946000.0 -20.4 -25.9 63 101000 632 1358 168 452 739 110 53233 49019 13000 4838 250 8.8 4 1 8.0 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +8949600.0 -20.2 -25.3 66 101100 645 1358 169 426 567 158 48889 42695 18211 6471 260 8.8 6 1 8.0 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +8953200.0 -20.0 -24.4 68 101100 629 1358 167 496 748 152 56915 55409 17516 6208 260 8.8 8 0 8.0 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +8956800.0 -19.6 -24.8 66 101200 585 1358 171 415 622 148 47290 45383 16936 5854 260 8.8 8 1 8.6 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +8960400.0 -19.3 -24.8 64 101200 516 1358 171 356 640 115 40767 41252 13218 4567 250 8.8 7 1 9.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +8964000.0 -18.9 -24.4 62 101300 427 1358 175 275 536 108 30956 31620 12203 3962 250 8.8 7 2 9.7 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +8967600.0 -19.5 -25.2 63 101300 324 1358 173 184 449 78 20626 18809 8773 2752 250 8.1 6 2 10.2 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +8971200.0 -20.0 -25.5 63 101400 215 1358 169 107 368 50 11919 5384 5586 1674 250 7.4 5 1 10.8 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +8974800.0 -20.6 -25.6 64 101400 107 1358 167 37 144 27 4062 0 2972 825 250 6.7 4 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +8978400.0 -20.8 -26.2 65 101500 17 871 166 5 44 3 0 0 0 0 250 6.9 3 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +8982000.0 -20.9 -26.2 67 101500 0 0 163 0 0 0 0 0 0 0 250 7.0 2 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +8985600.0 -21.1 -25.6 68 101600 0 0 163 0 0 0 0 0 0 0 250 7.2 1 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +8989200.0 -20.9 -26.8 64 101600 0 0 163 0 0 0 0 0 0 0 250 7.0 1 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +8992800.0 -20.8 -27.1 59 101700 0 0 163 0 0 0 0 0 0 0 250 6.9 1 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +8996400.0 -20.6 -27.2 55 101700 0 0 163 0 0 0 0 0 0 0 250 6.7 1 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9000000.0 -22.1 -28.1 61 101800 0 0 159 0 0 0 0 0 0 0 240 5.7 1 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9003600.0 -23.5 -28.2 68 101800 0 0 155 0 0 0 0 0 0 0 240 4.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9007200.0 -25.0 -28.3 74 101800 26 1052 151 2 3 2 247 0 247 76 230 3.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9010800.0 -25.6 -29.0 75 101800 122 1357 149 38 70 32 4167 0 3519 976 230 3.9 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9014400.0 -26.1 -29.2 76 101800 232 1357 148 99 225 61 10934 5265 6759 1977 230 4.3 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9018000.0 -26.7 -29.4 77 101800 341 1357 146 177 372 84 19834 17042 9445 2969 230 4.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9021600.0 -25.4 -28.5 76 101800 444 1357 150 262 482 105 29689 28520 11942 3959 220 4.3 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9025200.0 -24.1 -27.5 75 101800 531 1357 154 340 558 123 38857 37278 14111 4865 220 3.9 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9028800.0 -22.8 -26.1 74 101800 598 1357 158 401 605 136 46127 42826 15707 5567 210 3.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9032400.0 -21.7 -25.1 76 101800 639 1357 162 440 631 145 50782 45985 16804 6045 210 3.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9036000.0 -20.5 -23.8 77 101800 652 1357 166 454 641 147 52476 46956 17061 6172 200 3.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9039600.0 -19.4 -22.2 79 101800 636 1357 170 439 632 144 50661 45826 16686 6001 200 3.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9043200.0 -18.1 -22.8 71 101800 592 1357 173 397 603 135 45639 42416 15581 5513 220 3.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9046800.0 -16.9 -23.0 62 101800 523 1357 176 333 552 122 38014 36523 13980 4803 240 2.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9050400.0 -15.6 -22.8 54 101700 434 1357 180 254 475 103 28755 27506 11703 3867 260 2.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9054000.0 -16.7 -23.6 58 101700 332 1357 176 170 362 82 19023 15915 9207 2879 250 2.3 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9057600.0 -17.8 -23.8 61 101800 222 1357 173 92 213 59 10142 4400 6526 1894 230 2.4 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9061200.0 -18.9 -23.9 65 101800 114 1357 170 33 57 29 3622 0 3192 887 220 2.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9064800.0 -20.2 -25.8 65 101800 22 984 165 4 2 4 0 0 0 0 240 2.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9068400.0 -21.5 -27.1 64 101800 0 0 161 0 0 0 0 0 0 0 270 1.9 1 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9072000.0 -22.8 -27.8 64 101800 0 0 157 0 0 0 0 0 0 0 290 1.5 1 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9075600.0 -23.0 -28.1 67 101800 0 0 156 0 0 0 0 0 0 0 300 1.7 1 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9079200.0 -23.1 -27.5 71 101800 0 0 156 0 0 0 0 0 0 0 300 1.9 2 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9082800.0 -23.3 -26.7 74 101800 0 0 157 0 0 0 0 0 0 0 310 2.1 2 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9086400.0 -23.5 -27.6 73 101800 0 0 155 0 0 0 0 0 0 0 300 1.9 1 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9090000.0 -23.7 -27.7 71 101800 0 0 155 0 0 0 0 0 0 0 300 1.7 1 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9093600.0 -23.9 -27.8 70 101900 33 1187 154 7 31 6 803 0 689 207 290 1.5 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9097200.0 -23.7 -27.9 70 101900 130 1356 155 49 197 31 5418 0 3437 984 270 1.5 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9100800.0 -23.5 -27.6 71 101900 240 1356 155 120 397 51 13497 7755 5752 1782 250 1.5 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9104400.0 -23.3 -27.2 71 101900 349 1356 156 205 543 67 23453 22076 7687 2548 230 1.5 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9108000.0 -22.2 -26.1 72 102000 451 1356 160 293 642 81 33964 34133 9417 3281 240 1.9 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9111600.0 -21.1 -24.9 74 102000 538 1356 163 372 705 94 43502 42675 11027 3979 250 2.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9115200.0 -20.0 -23.3 75 102000 605 1356 167 434 746 103 51101 47979 12168 4502 260 2.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9118800.0 -19.3 -23.3 73 102000 646 1356 169 474 770 109 56023 51031 12927 4851 270 2.4 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9122400.0 -18.5 -22.9 70 102000 659 1356 172 486 776 110 57544 51712 13069 4929 270 2.3 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9126000.0 -17.8 -22.2 68 102000 643 1356 174 471 769 108 55675 50737 12809 4805 280 2.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9129600.0 -17.2 -21.6 71 102000 599 1356 176 429 743 102 50491 47466 12044 4450 280 2.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9133200.0 -16.7 -20.7 73 102000 530 1356 178 365 700 93 42637 41836 10898 3921 270 2.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9136800.0 -16.1 -19.4 76 102000 441 1356 181 284 633 80 32863 32849 9285 3221 270 2.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9140400.0 -16.8 -21.0 73 102100 339 1356 178 196 529 65 22398 20373 7449 2459 250 1.9 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9144000.0 -17.6 -22.0 71 102100 229 1356 175 112 378 49 12577 6208 5518 1699 230 1.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9147600.0 -18.3 -22.8 68 102100 121 1356 172 43 174 28 4759 0 3107 891 210 1.5 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9151200.0 -20.0 -23.6 79 102100 27 1096 167 6 23 5 0 0 0 0 210 2.2 0 0 9.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9154800.0 -21.6 -23.7 89 102100 0 0 163 0 0 0 0 0 0 0 200 2.9 0 0 7.0 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9158400.0 -23.3 -23.3 100 102100 0 0 159 0 0 0 0 0 0 0 200 3.6 0 0 4.8 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9162000.0 -24.1 -24.7 100 102100 0 0 156 0 0 0 0 0 0 0 210 3.3 0 0 3.7 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9165600.0 -24.8 -25.3 100 102100 0 0 157 0 0 0 0 0 0 0 210 2.9 1 1 2.7 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9169200.0 -25.6 -25.6 100 102100 0 0 154 0 0 0 0 0 0 0 220 2.6 1 1 1.6 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9172800.0 -26.0 -26.5 100 102100 0 0 155 0 0 0 0 0 0 0 220 2.2 2 2 1.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9176400.0 -26.3 -26.6 100 102100 0 0 154 0 0 0 0 0 0 0 220 1.9 2 2 1.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9180000.0 -26.7 -26.7 100 102100 40 1299 155 11 73 8 1246 0 907 267 220 1.5 3 3 0.8 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9183600.0 -26.9 -27.2 100 102100 138 1355 154 55 230 33 6084 0 3660 1052 190 1.5 3 3 0.8 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9187200.0 -27.0 -27.2 100 102100 248 1355 153 113 244 70 12424 7320 7724 2230 160 1.5 3 3 0.8 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9190800.0 -27.2 -27.2 100 102100 357 1355 153 137 183 90 15342 8991 10114 3185 130 1.5 3 3 0.8 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9194400.0 -25.5 -27.0 90 102100 459 1355 156 288 578 94 33059 32973 10826 3712 120 1.5 2 2 3.8 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +9198000.0 -23.9 -26.7 81 102100 546 1355 158 385 756 82 45584 44084 9736 3575 110 1.5 1 1 6.7 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +9201600.0 -22.2 -26.1 71 102100 612 1355 160 464 855 80 55799 51485 9647 3654 100 1.5 0 0 9.7 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +9205200.0 -21.7 -26.4 68 102100 653 1355 161 503 873 84 60744 54175 10172 3904 100 1.7 0 0 10.2 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +9208800.0 -21.1 -26.4 64 102100 666 1355 162 505 859 85 61080 53704 10310 3973 110 1.9 0 0 10.8 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +9212400.0 -20.6 -26.1 61 102100 650 1355 164 497 866 84 59985 53668 10167 3897 110 2.1 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +9216000.0 -20.0 -26.1 60 102100 606 1355 165 458 853 79 55066 51047 9524 3601 100 2.1 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +9219600.0 -19.5 -25.7 60 102100 537 1355 167 390 810 71 46606 44962 8506 3144 100 2.1 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +9223200.0 -18.9 -25.0 59 102100 448 1355 169 310 756 62 36672 36263 7352 2628 90 2.1 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +9226800.0 -19.3 -23.8 73 102100 346 1355 169 219 666 51 25574 23082 5969 2041 80 2.1 0 0 10.8 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +9230400.0 -19.6 -22.0 86 102100 236 1355 169 130 531 40 14886 6964 4590 1476 80 2.1 0 0 10.2 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +9234000.0 -20.0 -20.0 100 102100 128 1355 170 54 319 25 6063 0 2813 841 70 2.1 0 0 9.7 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9237600.0 -20.7 -21.3 100 102100 33 1209 167 10 94 6 1145 0 688 205 70 2.3 0 0 9.7 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9241200.0 -21.5 -22.0 100 102100 0 0 164 0 0 0 0 0 0 0 60 2.4 0 0 9.7 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9244800.0 -22.2 -22.2 100 102100 0 0 162 0 0 0 0 0 0 0 60 2.6 0 0 9.7 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9248400.0 -22.9 -23.6 100 102100 0 0 160 0 0 0 0 0 0 0 60 2.6 1 0 8.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9252000.0 -23.7 -24.1 100 102100 0 0 157 0 0 0 0 0 0 0 70 2.6 1 0 6.4 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9255600.0 -24.4 -24.4 100 102100 0 0 155 0 0 0 0 0 0 0 70 2.6 2 0 4.8 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9259200.0 -24.6 -26.4 90 102200 0 0 153 0 0 0 0 0 0 0 70 2.8 1 0 7.0 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9262800.0 -24.8 -27.6 80 102200 0 79 152 0 0 0 0 0 0 0 70 2.9 1 0 9.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9266400.0 -25.0 -28.9 70 102200 47 1355 151 16 176 8 1830 0 916 275 70 3.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9270000.0 -24.6 -28.9 70 102200 146 1355 152 69 407 26 7823 0 2954 906 70 3.3 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9273600.0 -24.3 -28.3 70 102200 255 1355 153 147 589 38 17040 9500 4414 1454 60 3.4 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9277200.0 -23.9 -27.8 70 102200 365 1355 154 237 709 48 27970 25616 5676 1974 60 3.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9280800.0 -22.6 -26.9 69 102200 466 1355 158 332 800 58 39653 38668 6942 2515 60 3.4 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +9284400.0 -21.3 -25.8 69 102200 553 1355 162 412 850 67 49622 47076 8089 3020 70 3.3 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +9288000.0 -20.0 -24.4 68 102200 619 1355 167 475 883 73 57600 52116 8874 3387 70 3.1 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +9291600.0 -19.1 -24.2 66 102200 660 1355 169 513 899 77 62441 54717 9396 3631 50 3.3 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +9295200.0 -18.1 -23.6 64 102200 673 1355 172 526 905 79 64049 55636 9645 3739 30 3.4 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +9298800.0 -17.2 -22.8 62 102200 656 1355 175 509 897 77 61912 54454 9390 3624 10 3.6 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +9302400.0 -17.2 -22.2 68 102200 612 1355 176 467 878 73 56555 51536 8863 3375 20 3.9 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +9306000.0 -17.2 -21.3 73 102200 544 1355 176 403 846 66 48492 46108 7960 2964 30 4.3 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +9309600.0 -17.2 -20.0 79 102200 455 1355 177 321 792 57 38277 37132 6812 2458 40 4.6 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +9313200.0 -17.8 -21.0 79 102200 352 1355 175 229 695 50 26837 24329 5872 2022 30 4.4 1 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +9316800.0 -18.3 -21.4 79 102200 243 1355 173 138 567 39 15880 7904 4497 1461 20 4.3 1 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +9320400.0 -18.9 -21.7 79 102200 136 1355 171 60 353 27 6728 0 3035 906 10 4.1 2 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9324000.0 -19.6 -23.0 79 102200 39 1321 169 14 136 8 1580 0 904 265 10 4.1 2 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9327600.0 -20.4 -23.7 78 102200 0 0 166 0 0 0 0 0 0 0 20 4.1 2 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9331200.0 -21.1 -23.9 78 102100 0 0 164 0 0 0 0 0 0 0 20 4.1 2 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9334800.0 -21.5 -24.9 78 102100 0 0 162 0 0 0 0 0 0 0 30 4.3 2 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9338400.0 -21.8 -25.1 78 102100 0 0 161 0 0 0 0 0 0 0 30 4.4 2 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9342000.0 -22.2 -25.0 78 102100 0 0 160 0 0 0 0 0 0 0 40 4.6 2 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9345600.0 -21.8 -25.3 77 102100 0 0 167 0 0 0 0 0 0 0 40 5.0 4 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9349200.0 -21.5 -24.8 76 102100 1 214 172 0 0 0 0 0 0 0 40 5.3 5 5 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9352800.0 -21.1 -24.4 75 102100 55 1354 177 15 20 14 1654 0 1547 430 40 5.7 7 7 11.3 610 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9356400.0 -20.9 -24.7 74 102100 154 1354 175 60 58 54 6433 454 5811 1458 40 5.9 8 6 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9360000.0 -20.8 -24.6 72 102100 263 1354 173 144 297 87 15648 11748 9492 2607 50 6.0 8 4 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9363600.0 -20.6 -24.4 71 102100 372 1354 172 227 379 124 24873 23136 13646 3964 50 6.2 9 3 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9367200.0 -19.7 -23.7 71 102100 474 1354 173 265 353 143 29514 24672 15996 5051 50 5.7 6 2 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +9370800.0 -18.7 -22.9 72 102000 560 1354 174 380 673 103 44337 42484 12058 4361 40 5.1 3 1 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +9374400.0 -17.8 -21.7 72 102000 626 1354 174 469 819 92 55952 51312 11009 4158 40 4.6 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +9378000.0 -17.2 -21.5 72 102000 667 1354 176 505 834 97 60473 53704 11652 4458 40 4.6 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +9381600.0 -16.7 -20.9 72 102000 679 1354 178 521 847 98 62486 54835 11790 4530 30 4.6 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +9385200.0 -16.1 -20.0 72 101900 663 1354 180 503 835 96 60237 53483 11532 4410 30 4.6 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +9388800.0 -16.1 -20.2 73 101900 619 1354 180 464 819 91 55325 50939 10883 4102 30 5.0 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +9392400.0 -16.1 -20.0 75 101900 550 1354 180 399 782 83 47240 45646 9855 3626 40 5.3 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +9396000.0 -16.1 -19.4 76 101900 462 1354 181 311 707 72 36480 36193 8468 3013 40 5.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9399600.0 -16.8 -20.6 76 101800 359 1354 186 212 435 98 23589 22462 10945 3383 50 5.3 3 3 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9403200.0 -17.6 -21.2 75 101800 250 1354 187 113 149 86 12222 5609 9339 2501 50 5.0 7 6 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9406800.0 -18.3 -21.7 75 101800 143 1354 194 33 17 31 3676 0 3462 1018 60 4.6 10 9 11.3 400 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9410400.0 -19.6 -23.6 75 101800 46 1354 180 9 19 8 1025 0 912 272 60 4.3 7 6 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9414000.0 -20.9 -24.9 74 101800 0 79 171 0 0 0 0 0 0 0 60 3.9 5 3 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9417600.0 -22.2 -25.6 74 101800 0 0 160 0 0 0 0 0 0 0 60 3.6 2 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +9421200.0 -22.2 -26.4 73 101800 0 0 160 0 0 0 0 0 0 0 60 3.6 3 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +9424800.0 -22.2 -26.4 72 101800 0 0 163 0 0 0 0 0 0 0 50 3.6 3 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +9428400.0 -22.2 -26.1 71 101700 0 0 163 0 0 0 0 0 0 0 50 3.6 4 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +9432000.0 -22.8 -27.0 72 101700 0 0 163 0 0 0 0 0 0 0 50 3.6 6 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +9435600.0 -23.3 -27.1 73 101700 6 327 161 1 1 1 0 0 0 0 60 3.6 8 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +9439200.0 -23.9 -27.2 74 101700 62 1353 161 16 14 15 1770 0 1663 468 60 3.6 10 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +9442800.0 -22.8 -26.6 73 101600 162 1353 167 59 39 54 6357 350 5839 1508 60 4.8 10 5 10.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +9446400.0 -21.7 -25.5 72 101600 271 1353 177 106 83 90 11523 3458 9822 2705 70 6.0 10 8 9.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +9450000.0 -20.6 -24.4 71 101600 380 1353 190 52 6 51 6135 232 6029 2107 70 7.2 10 10 8.0 550 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +9453600.0 -19.8 -23.9 71 101600 481 1353 193 167 2 166 18407 151 18383 5558 70 6.9 10 10 9.1 540 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9457200.0 -19.1 -23.2 72 101600 567 1353 191 129 30 116 14935 1982 13479 4817 70 6.5 10 9 10.2 530 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9460800.0 -18.3 -22.2 72 101600 633 1353 194 309 156 236 34251 13971 26300 8252 70 6.2 10 9 11.3 520 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9464400.0 -17.8 -21.8 73 101500 673 1353 189 363 161 283 39967 15604 31340 9480 70 6.5 9 7 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9468000.0 -17.2 -21.0 75 101500 686 1353 186 432 346 257 48064 31841 28752 9201 70 6.9 8 4 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9471600.0 -16.7 -20.0 76 101500 669 1353 185 491 564 213 55292 47748 24108 8119 70 7.2 7 2 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9475200.0 -16.5 -20.0 77 101400 625 1353 187 413 463 200 46331 38335 22547 7457 70 7.2 8 3 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9478800.0 -16.3 -19.6 78 101400 557 1353 188 370 445 188 41099 35941 20985 6626 70 7.2 8 3 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9482400.0 -16.1 -18.9 79 101400 468 1353 191 271 257 183 29526 20438 20038 5704 70 7.2 9 4 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9486000.0 -16.5 -19.5 80 101400 366 1353 190 179 247 113 19725 14055 12503 3729 70 6.7 9 5 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9489600.0 -16.8 -19.5 82 101400 257 1353 193 116 91 99 12433 4023 10657 2704 80 6.2 10 7 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9493200.0 -17.2 -19.4 83 101400 150 1353 195 49 24 46 5305 10 4998 1325 80 5.7 10 8 11.3 1310 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +9496800.0 -17.8 -20.9 80 101400 53 1353 196 10 2 9 1138 0 1025 306 80 5.5 10 9 11.3 987 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +9500400.0 -18.3 -21.8 78 101400 1 214 194 0 0 0 0 0 0 0 70 5.4 10 9 11.3 663 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +9504000.0 -18.9 -22.2 75 101400 0 0 197 0 0 0 0 0 0 0 70 5.2 10 10 11.3 340 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +9507600.0 -18.3 -22.5 74 101300 0 0 199 0 0 0 0 0 0 0 70 5.0 10 10 11.3 287 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +9511200.0 -17.8 -21.9 73 101300 0 0 201 0 0 0 0 0 0 0 70 4.8 10 10 11.3 233 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +9514800.0 -17.2 -21.1 72 101300 0 0 204 0 0 0 0 0 0 0 70 4.6 10 10 11.3 180 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +9518400.0 -17.6 -21.6 74 101300 0 0 202 0 0 0 0 0 0 0 70 5.3 10 10 8.3 180 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +9522000.0 -17.9 -21.3 77 101200 12 462 201 2 0 2 0 0 0 0 70 6.0 10 10 5.4 180 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +9525600.0 -18.3 -21.1 79 101200 70 1352 200 6 0 6 582 0 586 227 70 6.7 10 10 2.4 180 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +9529200.0 -18.1 -20.3 86 101200 170 1352 202 38 4 38 4234 0 4245 1260 70 6.5 10 10 3.7 190 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +9532800.0 -18.0 -19.1 93 101200 278 1352 203 97 1 97 10506 45 10549 2859 70 6.4 10 10 5.1 200 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +9536400.0 -17.8 -17.8 100 101200 387 1352 205 143 4 141 15567 266 15420 4350 70 6.2 10 10 6.4 210 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +9540000.0 -17.1 -18.5 91 101200 488 1352 196 233 90 200 25324 7528 21851 6133 70 6.0 10 8 8.0 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9543600.0 -16.3 -19.1 81 101200 574 1352 195 303 143 243 33075 13146 26673 7687 80 5.9 10 7 9.7 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9547200.0 -15.6 -19.4 72 101200 640 1352 193 465 549 206 52191 45965 23237 7711 80 5.7 10 5 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9550800.0 -15.2 -19.4 72 101200 680 1352 194 406 336 238 45403 29829 26758 8770 80 5.7 10 5 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9554400.0 -14.8 -19.0 73 101200 692 1352 198 363 215 253 40490 19572 28375 9198 90 5.7 10 6 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9558000.0 -14.4 -18.3 73 101200 676 1352 199 463 509 210 52264 42713 23824 8103 90 5.7 10 6 11.3 5180 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9561600.0 -14.2 -18.5 73 101200 632 1352 198 358 219 256 39404 20369 28335 8578 100 5.2 10 5 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9565200.0 -14.1 -18.3 73 101200 563 1352 197 376 371 222 41254 32549 24487 7279 100 4.6 10 4 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9568800.0 -13.9 -17.8 73 101200 475 1352 197 303 426 155 33529 30890 17230 5312 110 4.1 10 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +9572400.0 -14.3 -18.2 75 101100 373 1352 198 192 153 151 20691 10595 16351 4332 100 3.9 10 5 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +9576000.0 -14.6 -18.1 78 101100 264 1352 201 120 85 104 12843 3983 11180 2813 90 3.8 10 7 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +9579600.0 -15.0 -17.8 80 101100 157 1352 208 44 15 42 4821 0 4616 1292 80 3.6 10 9 11.3 610 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +9583200.0 -15.0 -18.2 81 101200 60 1352 207 9 19 8 1042 0 927 284 80 4.3 10 9 11.3 510 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +9586800.0 -15.0 -18.0 82 101200 2 327 214 0 0 0 0 0 0 0 90 5.0 10 10 11.3 410 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +9590400.0 -15.0 -17.2 83 101200 0 0 214 0 0 0 0 0 0 0 90 5.7 10 10 11.3 310 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +9594000.0 -16.3 -19.5 80 101200 0 0 195 0 0 0 0 0 0 0 90 5.2 7 7 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9597600.0 -17.6 -21.0 78 101200 0 0 185 0 0 0 0 0 0 0 100 4.6 4 4 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9601200.0 -18.9 -22.2 75 101300 0 0 174 0 0 0 0 0 0 0 100 4.1 1 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9604800.0 -20.2 -24.2 74 101300 0 0 169 0 0 0 0 0 0 0 130 3.8 3 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +9608400.0 -21.5 -25.4 72 101300 7 597 167 3 10 2 0 0 0 0 170 3.4 5 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +9612000.0 -22.8 -26.7 71 101400 77 1352 163 25 81 20 2745 0 2202 607 200 3.1 7 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +9615600.0 -20.9 -25.2 71 101400 177 1352 173 66 103 52 7198 1016 5690 1565 220 2.8 8 5 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +9619200.0 -19.1 -23.1 72 101400 286 1352 184 117 83 100 12680 3907 10883 2958 240 2.4 9 7 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +9622800.0 -17.2 -21.1 72 101500 395 1352 204 97 1 97 10918 54 10958 3537 260 2.1 10 10 11.3 30 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +9626400.0 -16.5 -20.0 76 101500 495 1352 207 123 4 121 13961 260 13787 4648 280 2.4 10 10 8.0 70 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9630000.0 -15.7 -18.8 79 101500 581 1352 211 181 1 181 20278 79 20374 6678 300 2.8 10 10 4.6 110 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9633600.0 -15.0 -17.2 83 101600 646 1352 214 231 2 230 25727 176 25752 8284 320 3.1 10 10 1.3 150 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9637200.0 -14.4 -17.2 82 101600 686 1352 216 242 5 240 27077 444 26997 8879 330 2.9 10 10 3.5 537 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9640800.0 -13.9 -16.8 81 101600 699 1352 218 257 4 254 28691 363 28512 9289 330 2.8 10 10 5.8 923 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +9644400.0 -13.3 -16.1 80 101600 682 1352 221 279 2 278 30813 191 30880 9531 340 2.6 10 10 8.0 1310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +9648000.0 -13.1 -15.9 82 101600 638 1352 222 290 5 288 31645 492 31613 9079 20 3.1 10 10 9.1 1533 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +9651600.0 -13.0 -15.3 85 101600 570 1352 217 256 102 213 28220 8721 23603 7210 60 3.6 10 9 10.2 1757 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +9655200.0 -12.8 -14.4 87 101600 481 1352 218 135 34 123 15246 2192 13946 4632 100 4.1 10 9 11.3 1980 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +9658800.0 -13.0 -15.2 86 101600 379 1352 217 146 136 109 16199 7624 12141 3735 100 3.9 10 9 11.3 1423 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +9662400.0 -13.1 -15.5 85 101700 271 1352 222 49 6 47 5614 132 5398 1759 90 3.8 10 10 11.3 867 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +9666000.0 -13.3 -15.6 84 101700 164 1352 221 28 2 27 3194 0 3086 964 90 3.6 10 10 11.3 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +9669600.0 -13.7 -16.6 84 101700 66 1352 219 7 2 7 825 0 825 258 80 3.3 10 10 11.3 267 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +9673200.0 -14.0 -16.9 83 101700 4 462 218 0 0 0 0 0 0 0 80 2.9 10 10 11.3 223 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +9676800.0 -14.4 -16.7 83 101700 0 0 217 0 0 0 0 0 0 0 70 2.6 10 10 11.3 180 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +9680400.0 -14.6 -17.5 83 101700 0 0 215 0 0 0 0 0 0 0 70 2.8 10 10 11.3 170 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +9684000.0 -14.8 -17.5 83 101700 0 0 215 0 0 0 0 0 0 0 60 2.9 10 10 11.3 160 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +9687600.0 -15.0 -17.2 83 101700 0 0 214 0 0 0 0 0 0 0 60 3.1 10 10 11.3 150 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +9691200.0 -15.0 -17.7 83 101700 0 0 214 0 0 0 0 0 0 0 60 2.8 10 10 11.3 150 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +9694800.0 -15.0 -17.4 83 101700 10 732 214 2 0 2 0 0 0 0 60 2.4 10 10 11.3 150 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +9698400.0 -15.0 -17.2 83 101700 85 1351 214 17 0 17 1650 0 1661 560 60 2.1 10 10 11.3 150 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +9702000.0 -14.6 -16.4 89 101700 185 1351 216 44 2 44 4883 11 4897 1444 70 2.3 10 10 8.3 140 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +9705600.0 -14.3 -15.2 94 101700 293 1351 218 85 0 85 8404 0 8465 2764 80 2.4 10 10 5.4 130 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +9709200.0 -13.9 -13.9 100 101700 402 1351 221 130 1 130 14307 63 14369 4294 90 2.6 10 10 2.4 120 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9712800.0 -13.7 -14.7 95 101700 502 1351 221 212 0 212 21339 0 21507 6444 70 2.2 10 10 2.1 130 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9716400.0 -13.5 -15.3 89 101700 588 1351 221 239 1 238 26211 90 26244 7797 60 1.9 10 10 1.9 140 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9720000.0 -13.3 -15.6 84 101700 653 1351 221 257 1 256 28408 92 28456 8831 40 1.5 10 10 1.6 150 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9723600.0 -12.9 -15.4 85 101700 693 1351 223 282 0 282 28848 0 29092 9729 20 1.9 10 10 2.7 213 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9727200.0 -12.6 -14.8 87 101700 705 1351 224 319 1 319 34987 101 35201 10410 350 2.2 10 10 3.7 277 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9730800.0 -12.2 -13.9 88 101700 688 1351 227 287 1 286 31658 96 31732 9738 330 2.6 10 10 4.8 340 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9734400.0 -12.2 -14.4 87 101700 644 1351 226 274 0 274 27914 0 28146 9001 340 2.6 10 10 5.9 410 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9738000.0 -12.2 -14.6 85 101700 576 1351 226 225 0 225 22790 0 22975 7473 340 2.6 10 10 6.9 480 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9741600.0 -12.2 -14.4 84 101700 488 1351 226 200 1 200 21733 83 21846 6140 350 2.6 10 10 8.0 550 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9745200.0 -12.2 -14.7 85 101700 386 1351 226 139 1 139 15143 66 15212 4316 350 2.6 10 10 6.9 550 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9748800.0 -12.2 -14.4 87 101700 277 1351 226 98 0 98 9674 0 9744 2865 340 2.6 10 10 5.9 550 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9752400.0 -12.2 -13.9 88 101700 170 1351 227 47 0 47 4596 0 4627 1443 340 2.6 10 10 4.8 550 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +9756000.0 -12.2 -13.9 92 101700 73 1351 227 16 0 16 1551 0 1561 510 20 2.6 10 10 6.4 530 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +9759600.0 -12.2 -13.3 96 101800 6 574 227 2 0 2 0 0 0 0 50 2.6 10 10 8.1 510 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +9763200.0 -12.2 -12.2 100 101800 0 0 228 0 0 0 0 0 0 0 90 2.6 10 10 9.7 490 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +9766800.0 -12.6 -13.8 96 101800 0 0 225 0 0 0 0 0 0 0 90 3.1 10 10 10.2 450 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +9770400.0 -12.9 -14.5 91 101800 0 0 224 0 0 0 0 0 0 0 90 3.6 10 10 10.8 410 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +9774000.0 -13.3 -15.0 87 101800 0 0 222 0 0 0 0 0 0 0 90 4.1 10 10 11.3 370 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +9777600.0 -13.3 -15.5 87 101800 0 0 221 0 0 0 0 0 0 0 90 3.2 10 10 11.3 317 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +9781200.0 -13.3 -15.2 87 101800 14 866 222 3 0 3 0 0 0 0 80 2.4 10 10 11.3 263 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +9784800.0 -13.3 -15.0 87 101800 92 1350 222 25 0 25 2428 0 2444 746 80 1.5 10 10 11.3 210 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +9788400.0 -12.9 -15.0 87 101800 192 1350 223 65 0 65 6370 0 6414 1842 70 2.4 10 10 10.8 190 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +9792000.0 -12.6 -14.4 88 101800 301 1350 225 108 1 108 11687 51 11737 3182 70 3.2 10 10 10.2 170 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +9795600.0 -12.2 -13.9 88 101700 409 1350 227 135 1 134 14851 65 14806 4421 60 4.1 10 10 9.7 150 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +9799200.0 -12.9 -15.0 86 101700 509 1350 223 181 0 181 18230 0 18375 6081 60 4.1 10 10 7.0 150 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9802800.0 -13.7 -16.0 85 101800 595 1350 220 232 1 231 25548 89 25575 7772 70 4.1 10 10 4.3 150 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9806400.0 -14.4 -16.7 83 101800 659 1350 217 283 1 283 31070 97 31251 9319 70 4.1 10 10 1.6 150 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9810000.0 -14.4 -17.2 82 101800 699 1350 216 289 1 288 31940 97 32015 9908 70 4.6 10 10 4.8 273 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9813600.0 -14.4 -17.3 81 101800 711 1350 216 276 1 275 30693 94 30756 9834 80 5.2 10 10 8.1 397 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9817200.0 -14.4 -17.2 80 101800 694 1350 216 278 0 278 28449 0 28690 9693 80 5.7 10 10 11.3 520 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9820800.0 -14.0 -17.4 79 101800 650 1350 211 280 69 248 31027 6277 27632 8676 80 5.7 10 9 11.3 437 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9824400.0 -13.7 -17.2 77 101700 582 1350 213 283 196 199 31471 16211 22240 7080 80 5.7 10 9 11.3 353 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9828000.0 -13.3 -16.7 76 101700 494 1350 210 263 172 201 28621 14393 21988 6228 80 5.7 10 8 11.3 270 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9831600.0 -13.3 -17.1 76 101700 392 1350 214 174 106 144 18942 7158 15749 4446 90 4.7 10 9 11.3 353 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9835200.0 -13.3 -17.0 76 101700 284 1350 214 83 19 79 9165 717 8754 2596 100 3.6 10 9 11.3 437 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9838800.0 -13.3 -16.7 76 101700 177 1350 220 37 1 37 4146 0 4157 1256 110 2.6 10 10 11.3 520 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9842400.0 -12.9 -16.7 77 101700 80 1350 222 9 0 9 873 0 879 330 100 2.4 10 10 11.3 520 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9846000.0 -12.6 -16.1 79 101700 9 709 223 0 0 0 0 0 0 0 100 2.3 10 10 11.3 520 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9849600.0 -12.2 -15.0 80 101700 0 0 226 0 0 0 0 0 0 0 90 2.1 10 10 11.3 520 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9853200.0 -12.4 -15.5 82 101700 0 0 225 0 0 0 0 0 0 0 90 2.4 10 10 11.3 500 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9856800.0 -12.6 -15.1 85 101600 0 0 224 0 0 0 0 0 0 0 90 2.8 10 10 11.3 480 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9860400.0 -12.8 -14.4 87 101600 0 0 224 0 0 0 0 0 0 0 90 3.1 10 10 11.3 460 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9864000.0 -12.6 -14.8 87 101600 0 0 224 0 0 0 0 0 0 0 80 2.9 10 10 11.3 460 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9867600.0 -12.4 -14.3 88 101600 19 1001 226 3 1 3 0 0 0 0 70 2.8 10 10 11.3 460 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9871200.0 -12.2 -13.9 88 101600 99 1349 227 26 3 26 2849 0 2857 790 60 2.6 10 10 11.3 460 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9874800.0 -11.7 -13.9 87 101600 199 1349 228 57 3 56 6246 45 6157 1745 60 2.6 10 10 11.3 510 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9878400.0 -11.1 -13.3 85 101500 308 1349 231 117 3 117 12607 163 12664 3353 60 2.6 10 10 11.3 560 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9882000.0 -10.6 -12.8 84 101500 416 1349 233 163 1 163 17674 73 17760 4921 60 2.6 10 10 11.3 610 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9885600.0 -10.0 -12.8 82 101500 516 1349 235 202 2 201 22093 166 22097 6468 70 3.3 10 10 10.8 610 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9889200.0 -9.5 -12.7 79 101500 601 1349 237 250 2 249 27391 184 27434 8119 80 3.9 10 10 10.2 610 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9892800.0 -8.9 -12.2 77 101500 666 1349 240 299 1 298 32716 99 32802 9602 90 4.6 10 10 9.7 610 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9896400.0 -9.3 -12.5 79 101500 705 1349 238 309 1 308 33989 99 34084 10287 100 4.3 10 10 10.2 590 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9900000.0 -9.6 -12.5 82 101500 717 1349 237 325 1 325 35674 101 35894 10677 110 3.9 10 10 10.8 570 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9903600.0 -10.0 -12.2 84 101500 700 1349 236 331 1 331 36157 103 36382 10492 120 3.6 10 10 11.3 550 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9907200.0 -10.0 -13.5 78 101500 656 1349 235 277 1 277 30443 96 30620 9211 110 4.5 10 10 11.3 510 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9910800.0 -10.0 -14.4 73 101500 588 1349 234 242 1 241 26519 91 26555 7857 110 5.3 10 10 11.3 470 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9914400.0 -10.0 -15.0 67 101500 500 1349 233 205 2 205 22305 169 22423 6352 100 6.2 10 10 11.3 430 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9918000.0 -10.7 -15.8 69 101500 399 1349 224 103 43 91 11666 2234 10343 3403 100 5.5 10 9 11.3 367 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9921600.0 -11.5 -16.0 71 101500 291 1349 221 86 39 78 9529 1480 8673 2609 100 4.8 10 9 11.3 303 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9925200.0 -12.2 -16.1 73 101500 184 1349 214 66 33 61 7120 528 6605 1731 100 4.1 10 8 11.3 240 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9928800.0 -13.1 -17.4 74 101500 87 1349 214 21 11 21 2313 0 2318 648 90 3.8 10 9 11.3 1990 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9932400.0 -14.1 -18.1 75 101600 13 843 210 0 2 0 0 0 0 0 90 3.4 10 9 11.3 3740 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9936000.0 -15.0 -18.3 76 101600 0 0 213 0 0 0 0 0 0 0 80 3.1 10 10 11.3 5490 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9939600.0 -15.2 -19.0 77 101500 0 0 212 0 0 0 0 0 0 0 80 3.3 10 10 11.3 4880 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9943200.0 -15.4 -18.8 78 101500 0 0 212 0 0 0 0 0 0 0 70 3.4 10 10 11.3 4270 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9946800.0 -15.6 -18.3 79 101500 0 0 211 0 0 0 0 0 0 0 70 3.6 10 10 11.3 3660 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9950400.0 -14.5 -17.5 81 101400 0 0 216 0 0 0 0 0 0 0 70 3.6 10 10 11.3 2460 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9954000.0 -13.3 -15.9 82 101400 24 1135 221 5 1 5 576 0 576 173 70 3.6 10 10 11.3 1260 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9957600.0 -12.2 -14.4 84 101300 106 1349 226 25 0 25 2431 0 2447 793 70 3.6 10 10 11.3 60 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9961200.0 -11.5 -13.3 89 101300 207 1349 230 40 4 40 4522 28 4534 1414 70 3.8 10 10 8.0 50 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9964800.0 -10.7 -11.6 95 101200 315 1349 234 88 1 88 9735 44 9771 2944 70 3.9 10 10 4.6 40 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9968400.0 -10.0 -10.0 100 101200 423 1349 238 114 7 112 12773 411 12598 4052 70 4.1 10 10 1.3 30 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9972000.0 -9.6 -9.8 100 101100 522 1349 240 171 4 169 18999 302 18865 5975 70 4.1 10 10 4.1 40 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9975600.0 -9.3 -9.5 100 101100 608 1349 241 229 0 229 23243 0 23435 7888 70 4.1 10 10 6.9 50 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9979200.0 -8.9 -8.9 100 101100 672 1349 243 272 3 271 30026 280 30087 9315 70 4.1 10 10 9.7 60 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9982800.0 -8.5 -8.9 100 101100 711 1349 244 314 3 312 34531 297 34519 10433 80 4.6 10 10 9.7 70 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9986400.0 -8.2 -8.5 100 101100 723 1349 246 311 1 310 34297 98 34393 10568 80 5.2 10 10 9.7 80 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9990000.0 -7.8 -7.8 100 101100 706 1349 248 290 0 290 29674 0 29928 10047 90 5.7 10 10 9.7 90 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9993600.0 -8.2 -9.5 94 101200 662 1349 245 286 1 286 31374 96 31559 9418 110 5.3 10 10 10.2 80 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +9997200.0 -8.5 -10.8 87 101200 594 1349 243 227 1 226 25034 87 25057 7700 140 5.0 10 10 10.8 70 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.00008E7 -8.9 -11.7 81 101300 506 1349 240 184 1 184 20228 79 20328 6117 160 4.6 10 10 11.3 60 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.00044E7 -9.1 -11.4 87 101400 405 1349 240 152 1 152 16526 70 16604 4678 190 4.3 10 10 8.0 50 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.0008E7 -9.2 -10.5 94 101400 297 1349 240 92 1 92 10073 44 10113 2915 210 3.9 10 10 4.6 40 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.00116E7 -9.4 -9.4 100 101500 190 1349 241 54 0 54 5287 0 5323 1662 240 3.6 10 10 1.3 30 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.00152E7 -9.8 -10.4 100 101600 93 1349 238 22 0 22 2135 0 2149 688 240 3.3 10 10 1.1 30 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1.00188E7 -10.2 -10.8 100 101700 17 978 237 3 0 3 0 0 0 0 240 2.9 10 10 1.0 30 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1.00224E7 -10.6 -10.6 100 101700 0 0 235 0 0 0 0 0 0 0 240 2.6 10 10 0.8 30 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1.0026E7 -11.0 -11.6 100 101800 0 0 233 0 0 0 0 0 0 0 220 2.2 10 10 0.7 30 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1.00296E7 -11.3 -11.8 100 101800 0 0 232 0 0 0 0 0 0 0 190 1.9 10 10 0.5 30 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1.00332E7 -11.7 -11.7 100 101800 0 0 230 0 0 0 0 0 0 0 170 1.5 10 10 0.4 30 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +1.00368E7 -13.5 -14.1 100 101800 0 0 216 0 0 0 0 0 0 0 230 1.5 9 9 0.5 1850 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1.00404E7 -15.4 -15.6 100 101900 30 1269 201 6 18 6 687 0 688 206 280 1.5 8 7 0.7 3670 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1.0044E7 -17.2 -17.2 100 101900 114 1348 192 38 8 37 4092 0 3998 1025 340 1.5 7 6 0.8 5490 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.00476E7 -16.1 -17.7 91 101900 214 1348 193 88 102 72 9513 2716 7814 2080 350 2.0 8 5 4.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.00512E7 -15.0 -17.8 82 101900 322 1348 193 174 303 103 19057 15335 11326 3269 10 2.6 8 3 7.8 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.00548E7 -13.9 -17.8 73 101900 429 1348 195 288 534 119 32198 33019 13357 4255 20 3.1 9 2 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.00584E7 -12.8 -15.6 82 101900 529 1348 205 360 469 177 39937 36595 19730 6192 40 2.9 9 5 9.7 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.0062E7 -11.7 -13.3 91 102000 614 1348 215 337 173 259 36914 16173 28531 8424 70 2.8 10 7 8.0 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.00656E7 -10.6 -10.6 100 102000 678 1348 235 208 9 203 23548 736 23095 7965 90 2.6 10 10 6.4 150 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.00692E7 -10.4 -10.7 100 102000 717 1348 236 265 33 247 29754 2921 27883 9350 60 2.9 10 10 6.9 303 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.00728E7 -10.2 -10.5 100 102000 729 1348 237 285 14 278 31762 1304 31159 10110 40 3.3 10 10 7.5 457 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.00764E7 -10.0 -10.0 100 102000 712 1348 238 265 12 259 29608 1086 29098 9557 10 3.6 10 10 8.0 610 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.008E7 -10.0 -10.4 100 102100 668 1348 238 246 9 241 27411 797 26999 8746 360 3.3 10 10 5.6 417 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.00836E7 -10.0 -10.4 100 102200 600 1348 238 229 3 227 25279 262 25192 7784 350 2.9 10 10 3.2 223 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.00872E7 -10.0 -10.0 100 102200 512 1348 238 185 2 184 20365 158 20355 6177 340 2.6 10 10 0.8 30 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.00908E7 -10.0 -11.2 95 102300 411 1348 237 169 2 168 18253 149 18236 4937 320 2.6 10 10 4.3 133 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.00944E7 -10.0 -11.8 89 102300 303 1348 236 108 1 108 11697 51 11747 3207 290 2.6 10 10 7.8 237 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.0098E7 -10.0 -12.2 84 102400 197 1348 236 68 1 68 7317 22 7346 1908 270 2.6 10 10 11.3 340 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.01016E7 -12.4 -15.6 81 102500 100 1348 210 35 49 32 3766 0 3454 879 260 2.8 7 7 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.01052E7 -14.8 -18.4 79 102600 22 1112 193 7 41 5 0 0 0 0 240 2.9 5 3 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.01088E7 -17.2 -20.6 76 102700 0 0 177 0 0 0 0 0 0 0 230 3.1 2 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.01124E7 -18.7 -22.9 74 102700 0 0 171 0 0 0 0 0 0 0 230 3.3 1 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.0116E7 -20.2 -24.4 73 102800 0 0 166 0 0 0 0 0 0 0 230 3.4 1 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.01196E7 -21.7 -25.6 71 102900 0 0 161 0 0 0 0 0 0 0 230 3.6 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.01232E7 -21.9 -26.3 71 103000 0 79 160 0 0 0 0 0 0 0 230 3.4 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.01268E7 -22.0 -26.2 71 103100 37 1347 160 4 24 3 488 0 366 114 230 3.3 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.01304E7 -22.2 -26.1 71 103200 121 1347 160 43 163 29 4755 0 3215 919 230 3.1 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.0134E7 -22.0 -26.4 70 103200 221 1347 160 105 345 49 11766 5429 5506 1682 230 3.1 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.01376E7 -21.9 -26.3 68 103300 329 1347 160 185 497 65 21101 18909 7435 2438 230 3.1 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.01412E7 -21.7 -26.1 67 103300 436 1347 161 276 605 81 31902 31727 9391 3247 230 3.1 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.01448E7 -19.8 -23.9 71 103400 535 1347 167 363 676 95 42427 41071 11139 4018 220 2.9 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.01484E7 -18.0 -21.6 75 103400 620 1347 174 443 732 108 52177 48024 12764 4747 220 2.8 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.0152E7 -16.1 -18.9 79 103500 684 1347 181 502 763 117 59484 51861 13913 5288 210 2.6 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.01556E7 -14.4 -17.9 77 103500 723 1347 187 541 782 122 64356 53982 14565 5607 200 3.5 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.01592E7 -12.8 -16.6 75 103600 735 1347 193 552 788 124 65713 54606 14816 5722 190 4.3 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.01628E7 -11.1 -15.0 73 103600 718 1347 199 536 781 121 63729 53551 14439 5552 180 5.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.01664E7 -11.3 -15.6 73 103600 674 1347 198 495 761 115 58611 51160 13665 5182 170 5.5 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.017E7 -11.5 -15.8 73 103700 606 1347 197 430 724 106 50559 46679 12506 4631 170 5.9 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.01736E7 -11.7 -15.6 73 103700 518 1347 197 347 663 93 40449 39139 10875 3897 160 6.2 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.01772E7 -12.8 -16.8 75 103700 417 1347 192 257 572 82 29514 29066 9446 3218 160 5.9 1 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.01808E7 -13.9 -17.4 78 103700 310 1347 189 169 457 65 19143 16097 7384 2377 160 5.5 1 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.01844E7 -15.0 -17.8 80 103700 203 1347 185 93 295 49 10326 3520 5457 1619 160 5.2 2 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.0188E7 -15.9 -19.5 78 103700 106 1347 181 35 119 26 3855 0 2871 808 150 5.2 2 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.01916E7 -16.9 -20.6 77 103700 27 1246 178 5 17 4 587 0 470 144 150 5.2 2 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.01952E7 -17.8 -21.1 75 103700 0 0 175 0 0 0 0 0 0 0 140 5.2 2 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.01988E7 -18.2 -21.8 78 103700 0 0 173 0 0 0 0 0 0 0 120 4.5 3 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.02024E7 -18.5 -21.6 80 103700 0 0 176 0 0 0 0 0 0 0 110 3.8 3 1 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.0206E7 -18.9 -21.1 83 103700 0 0 175 0 0 0 0 0 0 0 90 3.1 4 1 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.02096E7 -19.6 -22.9 79 103700 1 213 172 0 0 0 0 0 0 0 90 2.9 5 1 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.02132E7 -20.4 -23.9 75 103700 43 1347 171 10 56 8 1140 0 913 273 80 2.8 6 2 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.02168E7 -21.1 -25.0 71 103700 127 1347 169 45 92 37 4900 0 4042 1093 80 2.6 7 2 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.02204E7 -19.6 -23.3 75 103600 228 1347 172 117 383 53 13066 7230 5936 1801 80 3.5 5 1 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.0224E7 -18.2 -21.1 79 103600 335 1347 177 159 401 60 18288 14749 6919 2311 90 4.3 2 1 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.02276E7 -16.7 -18.9 83 103600 442 1347 180 297 734 58 35285 34022 6906 2478 90 5.2 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.02312E7 -14.7 -17.2 82 103500 542 1347 187 384 788 68 46105 43103 8184 3046 90 5.7 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.02348E7 -12.6 -15.4 81 103500 626 1347 194 465 839 77 56256 49879 9340 3573 90 6.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.02384E7 -10.6 -13.3 80 103500 690 1347 202 524 865 83 63783 53417 10131 3953 90 6.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.0242E7 -9.8 -13.1 79 103400 729 1347 208 525 752 119 62616 51216 14244 5512 90 6.9 3 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.02456E7 -9.1 -12.5 78 103400 740 1347 214 578 772 155 67676 56940 18225 6884 90 7.0 5 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1.02492E7 -8.3 -11.7 77 103300 724 1347 219 527 594 210 60046 49024 24047 8497 90 7.2 8 3 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1.02528E7 -7.9 -11.9 76 103200 680 1347 220 410 348 235 45901 30428 26449 8743 90 7.9 9 3 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1.02564E7 -7.6 -11.7 75 103200 612 1347 222 434 530 195 48649 42988 21966 7263 100 8.6 9 3 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1.026E7 -7.2 -11.1 74 103100 524 1347 223 350 410 192 38514 33142 21234 6431 100 9.3 10 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.02636E7 -7.6 -11.7 75 103000 423 1347 225 232 258 152 25364 18084 16695 4853 100 9.5 10 5 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.02672E7 -7.9 -11.8 76 103000 316 1347 226 101 53 89 11168 2350 9878 2972 90 9.6 10 6 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.02708E7 -8.3 -11.7 77 102900 210 1347 231 74 38 68 8015 881 7393 1994 90 9.8 10 8 11.3 5490 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.02744E7 -8.5 -12.1 79 102900 113 1347 235 32 11 31 3489 0 3390 923 90 9.6 10 9 8.3 3730 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.0278E7 -8.7 -11.9 82 102900 33 1347 234 4 2 3 484 0 363 113 100 9.5 10 9 5.4 1970 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.02816E7 -8.9 -11.1 84 102800 0 56 241 0 0 0 0 0 0 0 100 9.3 10 10 2.4 210 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.02852E7 -9.3 -11.8 87 102800 0 0 232 0 0 0 0 0 0 0 100 8.9 10 9 3.2 243 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.02888E7 -9.6 -11.6 89 102800 0 0 227 0 0 0 0 0 0 0 90 8.6 9 8 4.0 277 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.02924E7 -10.0 -11.1 92 102700 0 0 222 0 0 0 0 0 0 0 90 8.2 9 7 4.8 310 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.0296E7 -10.0 -11.8 91 102700 6 370 217 1 0 1 0 0 0 0 90 7.4 9 5 7.0 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.02996E7 -10.0 -11.7 89 102700 50 1346 215 13 40 11 1455 0 1234 358 90 6.5 9 4 9.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.03032E7 -10.0 -11.7 88 102600 134 1346 212 58 78 51 6170 166 5446 1306 90 5.7 9 2 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.03068E7 -9.6 -11.7 88 102600 234 1346 215 93 139 70 10170 3825 7683 2177 90 5.9 9 3 8.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.03104E7 -9.3 -11.1 88 102600 342 1346 220 168 181 123 18243 10541 13416 3734 90 6.0 10 5 4.8 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.0314E7 -8.9 -10.6 88 102600 449 1346 224 196 150 146 21649 10342 16199 4961 90 6.2 10 6 1.6 180 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.03176E7 -8.3 -10.2 88 102600 548 1346 222 369 542 149 41684 38735 16905 5698 90 6.4 7 4 4.8 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.03212E7 -7.8 -9.7 88 102600 632 1346 221 445 646 143 51348 45926 16568 5980 100 6.5 4 2 8.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.03248E7 -7.2 -8.9 88 102600 696 1346 216 523 837 92 63208 52540 11152 4341 100 6.7 1 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.03284E7 -6.7 -8.9 87 102600 735 1346 218 554 842 96 67205 53825 11682 4598 100 6.2 1 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.0332E7 -6.1 -8.5 86 102600 746 1346 220 573 843 107 69076 55379 12942 5083 100 5.7 2 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.03356E7 -5.6 -7.8 85 102700 729 1346 222 556 835 105 66918 54377 12679 4957 100 5.2 2 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.03392E7 -5.4 -8.0 85 102600 685 1346 223 521 794 118 61654 53101 14014 5334 100 5.0 4 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.03428E7 -5.2 -7.8 85 102600 617 1346 224 464 762 116 54258 49966 13613 5025 90 4.8 5 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.03464E7 -5.0 -7.2 85 102600 530 1346 225 386 691 116 44295 43852 13361 4680 90 4.6 7 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.035E7 -5.9 -8.8 84 102600 429 1346 220 291 601 101 32946 33592 11476 3810 90 4.6 8 0 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.03536E7 -6.9 -9.8 82 102600 322 1346 216 195 479 82 21750 20152 9178 2852 90 4.6 9 0 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.03572E7 -7.8 -10.6 81 102600 216 1346 213 108 305 61 11840 6106 6711 1915 90 4.6 10 0 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.03608E7 -8.3 -10.9 80 102600 119 1346 211 48 185 33 5232 0 3608 983 90 5.0 8 0 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.03644E7 -8.8 -11.3 78 102600 40 1346 209 10 94 7 1142 0 800 239 80 5.5 5 0 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.0368E7 -9.4 -11.7 77 102600 1 213 207 0 0 0 0 0 0 0 80 5.9 3 0 11.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.03716E7 -9.9 -12.0 88 101200 0 0 237 0 0 0 0 0 0 0 80 6.4 10 10 11.3 240 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.03752E7 -10.5 -12.4 84 101200 0 0 234 0 0 0 0 0 0 0 70 6.8 10 10 9.7 270 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.03788E7 -11.0 -12.8 88 101200 0 0 232 0 0 0 0 0 0 0 70 7.3 10 10 9.7 270 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.03824E7 -11.7 -13.3 88 101300 12 415 229 2 0 2 0 0 0 0 70 7.7 10 10 11.3 240 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.0386E7 -12.2 -13.9 88 101300 52 1346 227 9 0 9 871 0 877 314 80 8.2 10 10 9.7 270 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.03896E7 -12.2 -13.9 88 101300 137 1346 227 40 0 40 3902 0 3928 1204 80 7.7 10 10 9.7 240 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.03932E7 -12.2 -14.4 84 101300 237 1346 226 87 0 86 8563 0 8525 2458 90 8.8 10 10 9.7 240 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.03968E7 -12.2 -13.9 88 101300 344 1346 227 126 0 126 12518 0 12611 3833 80 8.8 10 10 9.7 270 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.04004E7 -12.2 -13.9 88 101300 451 1346 227 192 0 192 19251 0 19400 5702 80 8.2 10 10 1.2 310 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.0404E7 -12.2 -13.9 88 101400 550 1346 227 223 0 223 22549 0 22731 7228 70 7.7 10 10 8.0 340 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.04076E7 -11.7 -13.9 84 101400 634 1346 228 260 1 260 28630 93 28791 8760 80 8.8 10 10 6.4 340 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.04112E7 -11.1 -13.3 84 101400 698 1346 231 292 0 292 29895 0 30150 10042 80 8.8 10 10 1.6 340 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.04148E7 -11.1 -13.3 84 101400 737 1346 231 320 1 319 35360 100 35464 10965 90 8.8 10 10 1.6 430 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.04184E7 -10.6 -13.3 80 101400 748 1346 233 363 0 362 37322 0 37541 11678 80 8.8 10 10 2.4 400 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.0422E7 -10.6 -13.3 80 101400 731 1346 233 323 1 322 35627 100 35734 10934 80 10.3 10 10 8.0 400 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.04256E7 -10.6 -13.3 80 101400 687 1346 226 343 83 300 37730 8160 33197 10021 70 9.3 10 9 9.7 400 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.04292E7 -10.6 -13.3 80 101400 619 1346 216 355 302 218 39539 25827 24406 7861 70 10.3 10 6 9.7 400 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.04328E7 -10.0 -13.3 77 101400 532 1346 218 311 253 212 34048 21614 23332 6869 80 9.3 10 6 11.3 400 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.04364E7 -10.0 -12.8 80 101400 431 1346 224 141 66 120 15775 4085 13480 4319 70 7.7 10 8 11.3 400 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.044E7 -11.1 -13.3 84 101500 324 1346 231 76 7 75 8561 284 8475 2708 70 7.7 10 10 11.3 400 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.04436E7 -11.1 -13.3 84 101500 218 1346 231 59 18 57 6526 345 6325 1866 80 10.8 10 10 11.3 430 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.04472E7 -11.7 -13.3 88 101500 121 1346 229 28 2 28 3110 0 3118 907 80 9.3 10 10 8.0 370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.04508E7 -12.2 -13.9 88 101500 42 1346 227 4 0 4 387 0 389 150 80 9.8 10 10 8.0 370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.04544E7 -12.8 -15.0 84 101500 1 258 224 0 0 0 0 0 0 0 70 8.2 10 10 11.3 430 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.0458E7 -13.3 -15.6 84 101500 0 0 215 0 0 0 0 0 0 0 60 6.2 10 9 11.3 400 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.04616E7 -12.8 -15.0 84 101500 0 0 207 0 0 0 0 0 0 0 70 8.8 9 6 11.3 910 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.04652E7 -12.8 -15.0 84 101500 0 0 213 0 0 0 0 0 0 0 70 8.8 10 8 11.3 980 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.04688E7 -12.8 -15.0 84 101500 12 572 213 2 1 2 0 0 0 0 70 9.3 10 8 11.3 980 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.04724E7 -13.3 -15.6 84 101500 59 1345 207 14 26 13 1571 0 1461 428 70 8.2 10 7 11.3 980 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.0476E7 -14.4 -16.7 83 101500 143 1345 201 58 46 53 6209 275 5696 1421 70 7.7 10 6 11.3 1070 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.04796E7 -13.9 -16.7 80 101500 243 1345 202 128 118 107 13589 5586 11412 2703 70 8.2 10 6 11.3 2130 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.04832E7 -13.9 -16.7 80 101500 351 1345 205 189 144 152 20259 9952 16373 4181 70 9.3 10 7 11.3 1830 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.04868E7 -13.3 -16.1 80 101500 457 1345 210 178 77 152 19675 5499 16878 5176 70 9.3 10 8 11.3 1830 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.04904E7 -12.2 -15.6 77 101500 556 1345 219 335 141 277 36072 13949 30004 7851 70 10.8 10 9 11.3 1830 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.0494E7 -12.2 -15.6 77 101500 640 1345 214 292 86 251 32295 7863 27914 8688 70 9.3 10 8 6.4 1830 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.04976E7 -11.7 -15.0 77 101400 704 1345 216 384 75 345 41894 7899 37878 10782 70 10.8 10 8 6.4 2440 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.05012E7 -11.7 -14.4 80 101400 742 1345 228 274 2 273 30705 185 30767 10217 80 11.3 10 10 6.4 2440 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.05048E7 -11.7 -15.0 77 101400 753 1345 227 366 11 360 40177 1160 39772 11752 70 10.8 10 10 6.4 2440 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.05084E7 -11.1 -14.4 77 101400 737 1345 230 274 4 272 30683 369 30631 10138 70 9.8 10 10 6.4 1680 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.0512E7 -11.1 -14.4 77 101400 693 1345 230 252 2 251 28167 180 28209 9253 60 9.8 10 10 6.4 1680 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.05156E7 -10.6 -13.9 77 101400 625 1345 232 243 8 239 26896 715 26596 8316 70 10.3 10 10 6.4 1680 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.05192E7 -11.1 -13.9 80 101400 538 1345 231 187 0 187 18889 0 19041 6510 80 12.4 10 10 6.4 1680 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.05228E7 -11.1 -13.9 80 101300 437 1345 231 156 2 156 17109 144 17189 5078 70 9.3 10 10 6.4 1680 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.05264E7 -11.1 -14.4 77 101300 330 1345 224 125 65 109 13682 3467 11980 3461 80 9.8 10 9 6.4 1680 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.053E7 -11.7 -14.4 80 101400 224 1345 228 43 4 42 4891 50 4789 1521 80 10.3 10 10 6.4 1680 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.05336E7 -12.2 -14.4 84 101400 128 1345 212 41 29 39 4450 0 4247 1137 80 10.3 9 7 6.4 2440 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.05372E7 -12.2 -15.0 80 101400 48 1345 215 7 4 7 812 0 813 249 80 10.3 9 8 8.0 2440 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.05408E7 -12.8 -15.0 84 101400 2 415 217 0 0 0 0 0 0 0 80 9.8 10 9 9.7 2440 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.05444E7 -12.8 -15.0 84 101400 0 0 213 0 0 0 0 0 0 0 70 8.8 10 8 9.7 2440 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.0548E7 -13.3 -15.6 84 101400 0 0 211 0 0 0 0 0 0 0 70 10.3 10 8 9.7 2440 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.05516E7 -13.9 -16.1 84 101400 0 0 213 0 0 0 0 0 0 0 80 9.8 10 9 9.7 2440 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.05552E7 -13.9 -16.7 80 101400 8 728 208 1 0 1 0 0 0 0 80 8.2 10 8 11.3 2440 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.05588E7 -14.4 -16.7 83 101400 65 1344 197 11 3 11 1260 0 1261 384 70 9.8 7 4 11.3 4270 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.05624E7 -15.0 -17.2 83 101400 150 1344 195 46 16 44 5024 2 4821 1333 70 8.2 7 4 11.3 4270 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.0566E7 -15.6 -17.8 83 101400 250 1344 191 112 111 92 12080 4538 9965 2633 70 7.7 8 3 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.05696E7 -15.0 -17.8 80 101400 357 1344 198 163 142 126 17790 8650 13812 3941 70 9.8 9 6 11.3 4270 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.05732E7 -14.4 -17.2 80 101500 463 1344 203 233 168 176 25487 13044 19346 5639 80 10.3 9 7 11.3 4270 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.05768E7 -13.9 -16.7 80 101500 562 1344 197 394 402 228 43194 35668 25130 7444 70 9.3 8 3 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.05804E7 -12.8 -16.1 76 101500 646 1344 193 440 571 168 50346 43665 19309 6836 80 8.8 1 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.0584E7 -12.2 -15.6 77 101500 709 1344 195 506 616 183 58211 48485 21150 7659 80 10.3 1 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.05876E7 -11.1 -15.0 73 101500 748 1344 205 538 532 243 60933 46603 27669 9588 70 9.8 3 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.05912E7 -10.0 -13.9 74 101500 759 1344 207 553 607 212 63447 50091 24444 8840 70 9.8 3 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.05948E7 -10.0 -13.3 77 101500 742 1344 204 538 632 191 62046 50205 22132 8102 70 9.3 1 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.05984E7 -10.0 -13.3 77 101500 698 1344 204 491 616 173 56610 47362 20036 7290 80 10.3 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.0602E7 -10.0 -13.3 77 101500 630 1344 204 425 574 158 48705 42675 18185 6455 80 10.3 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.06056E7 -10.0 -13.9 74 101600 543 1344 203 344 514 138 39122 35774 15759 5405 80 9.8 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.06092E7 -10.6 -14.4 73 101600 443 1344 201 254 427 115 28613 26162 13005 4264 80 9.3 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.06128E7 -11.1 -14.4 77 101600 336 1344 199 167 314 90 18609 14811 10065 3123 80 7.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.06164E7 -12.2 -15.6 77 101600 231 1344 195 94 181 64 10359 4505 7077 2064 80 7.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.062E7 -13.3 -16.1 80 101700 134 1344 191 41 57 36 4500 0 3963 1113 80 7.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.06236E7 -13.9 -16.7 80 101700 54 1344 189 7 3 7 818 0 819 253 70 7.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.06272E7 -15.0 -17.2 83 101700 6 571 186 1 0 1 0 0 0 0 70 7.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.06308E7 -15.6 -17.8 83 101800 0 0 183 0 0 0 0 0 0 0 70 6.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.06344E7 -16.1 -18.3 83 101800 0 0 182 0 0 0 0 0 0 0 80 6.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.0638E7 -16.7 -18.9 83 101800 0 0 180 0 0 0 0 0 0 0 80 7.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.06416E7 -17.2 -19.4 83 101900 11 907 178 1 4 1 0 0 0 0 70 6.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.06452E7 -17.2 -19.4 83 101900 71 1344 178 17 47 15 1912 0 1690 499 70 5.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.06488E7 -17.2 -20.0 79 101900 156 1344 177 61 186 40 6744 0 4435 1283 70 5.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.06524E7 -16.7 -19.4 79 102000 256 1344 179 126 351 60 14122 9535 6745 2088 70 5.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.0656E7 -16.1 -18.9 79 102000 363 1344 181 209 488 79 23752 22606 9007 2965 80 5.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.06596E7 -15.0 -18.3 76 102000 469 1344 185 300 589 97 34509 34342 11196 3879 80 6.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.06632E7 -14.4 -17.2 80 102000 568 1344 187 390 661 113 45324 43127 13179 4758 80 6.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.06668E7 -13.9 -16.7 80 102100 651 1344 189 469 711 127 54932 49236 14931 5555 80 7.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.06704E7 -12.8 -16.1 76 102100 714 1344 193 530 744 137 62447 53031 16205 6157 80 7.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.0674E7 -12.2 -16.1 73 102100 753 1344 195 568 762 143 67164 55059 16977 6528 80 7.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.06776E7 -11.7 -15.0 77 102100 764 1344 197 577 764 145 68283 55341 17229 6646 90 7.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.06812E7 -10.6 -14.4 73 102100 747 1344 201 561 757 142 66296 54453 16848 6469 90 7.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.06848E7 -10.6 -14.4 73 102200 703 1344 201 519 737 135 61088 52138 15952 6042 80 7.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.06884E7 -10.6 -13.9 77 102200 636 1344 201 454 702 125 53066 48040 14666 5425 90 8.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.0692E7 -10.6 -14.4 73 102200 549 1344 201 371 647 110 43020 41314 12800 4587 80 7.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.06956E7 -11.1 -14.4 77 102200 448 1344 199 280 570 93 32135 31829 10709 3679 80 6.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.06992E7 -11.7 -15.0 77 102200 342 1344 197 190 462 75 21532 19702 8526 2776 90 6.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.07028E7 -12.2 -15.6 77 102200 237 1344 195 110 318 56 12289 6942 6275 1917 90 6.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.07064E7 -13.3 -16.1 80 102300 140 1344 191 50 152 35 5524 0 3878 1115 90 6.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.071E7 -14.4 -16.7 83 102300 60 1344 188 10 30 9 1154 0 1039 318 80 6.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.07136E7 -15.6 -17.2 87 102300 7 750 184 1 2 1 0 0 0 0 80 6.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.07172E7 -16.1 -18.3 83 102400 0 0 182 0 0 0 0 0 0 0 80 5.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.07208E7 -16.7 -18.3 87 102400 0 0 180 0 0 0 0 0 0 0 80 5.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.07244E7 -16.7 -18.9 83 102400 0 0 180 0 0 0 0 0 0 0 80 5.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.0728E7 -17.2 -18.9 87 102400 16 1086 178 2 4 1 0 0 0 0 80 5.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.07316E7 -17.8 -19.4 87 102300 78 1343 176 20 47 17 2240 0 1908 559 80 5.7 1 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.07352E7 -17.2 -19.4 83 102300 163 1343 178 66 176 45 7252 603 4960 1407 80 5.2 2 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.07388E7 -16.7 -18.9 83 102300 263 1343 180 132 333 68 14680 10505 7587 2299 80 5.7 2 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.07424E7 -15.6 -18.3 80 102300 369 1343 187 211 376 109 23401 21135 12137 3722 90 5.2 5 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.0746E7 -14.4 -17.2 80 102300 475 1343 187 318 533 132 35734 35720 14894 4870 90 5.2 5 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.07496E7 -13.3 -16.1 80 102300 573 1343 191 410 617 148 46692 44633 16926 5853 90 5.7 4 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1.07532E7 -12.2 -15.0 80 102200 657 1343 196 483 671 158 55662 50051 18287 6603 90 6.2 3 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1.07568E7 -11.1 -15.0 73 102200 720 1343 199 535 737 142 62920 53053 16767 6361 90 7.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1.07604E7 -10.6 -13.9 77 102200 758 1343 201 573 756 149 67594 55139 17649 6771 100 7.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1.0764E7 -10.0 -13.3 77 102100 769 1343 204 584 762 150 68986 55617 17792 6854 90 8.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1.07676E7 -9.4 -12.8 77 102100 752 1343 206 569 757 148 67081 55009 17519 6711 100 8.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1.07712E7 -9.4 -12.8 77 102000 708 1343 206 538 722 159 62573 53782 18572 6899 100 7.7 2 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +1.07748E7 -9.4 -12.2 81 102000 641 1343 227 365 191 274 40079 18172 30261 9067 100 8.2 10 8 11.3 430 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.07784E7 -10.6 -13.3 80 102000 554 1343 233 206 5 204 22749 417 22643 6984 130 9.8 10 10 11.3 430 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.0782E7 -11.1 -13.3 84 101900 454 1343 231 136 2 135 15166 133 15118 4807 110 7.7 10 10 9.7 430 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.07856E7 -11.1 -13.3 84 101800 348 1343 231 91 5 89 10188 238 9999 3158 110 9.3 10 10 9.7 430 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.07892E7 -11.7 -13.3 88 101800 243 1343 229 78 2 77 8507 65 8429 2363 110 7.2 10 10 9.7 370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.07928E7 -11.7 -13.9 84 101800 146 1343 228 30 2 30 3369 0 3377 1019 120 8.2 10 10 11.3 340 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.07964E7 -12.8 -14.4 88 101700 66 1343 218 12 6 12 1361 0 1364 409 120 7.2 10 9 11.3 370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.08E7 -12.2 -14.4 84 101700 11 929 212 1 0 1 0 0 0 0 110 7.7 9 7 11.3 1980 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.08036E7 -12.2 -14.4 84 101600 0 0 215 0 0 0 0 0 0 0 110 8.2 10 8 11.3 1520 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.08072E7 -12.2 -13.9 88 101600 0 0 216 0 0 0 0 0 0 0 120 10.3 10 8 11.3 1520 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.08108E7 -12.8 -14.4 88 101600 0 0 224 0 0 0 0 0 0 0 120 8.2 10 10 3.2 1370 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.08144E7 -13.3 -15.6 84 101500 21 1264 221 1 1 1 130 0 130 40 120 8.2 10 10 6.4 1370 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.0818E7 -13.3 -15.0 87 101500 84 1342 208 29 33 27 3143 0 2935 773 110 7.7 10 7 11.3 980 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.08216E7 -12.8 -14.4 88 101400 169 1342 213 38 10 37 4257 0 4155 1256 110 8.8 10 8 6.4 180 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.08252E7 -11.7 -13.3 88 101400 269 1342 218 107 79 92 11626 3326 10037 2776 100 7.7 10 8 8.0 340 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.08288E7 -10.6 -12.8 84 101400 375 1342 233 137 10 134 14956 637 14694 4218 110 7.2 10 10 11.3 430 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.08324E7 -10.6 -12.2 88 101400 481 1342 234 166 10 163 18352 741 18104 5584 100 8.8 10 10 11.3 610 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.0836E7 -9.4 -11.7 84 101300 579 1342 239 241 10 237 26429 897 26133 7782 110 8.8 10 10 11.3 5490 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.08396E7 -9.4 -11.7 84 101300 662 1342 239 231 11 225 25894 945 25353 8420 100 7.7 10 10 11.3 3660 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.08432E7 -8.9 -11.1 84 101300 725 1342 241 258 7 254 28987 625 28694 9651 110 7.2 10 10 11.3 3660 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.08468E7 -7.8 -11.1 77 101300 763 1342 238 419 70 379 45877 7512 41769 12138 110 6.7 10 9 11.3 3660 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.08504E7 -7.2 -10.0 81 101300 774 1342 241 344 75 301 38464 7126 33855 11154 120 6.7 10 9 11.3 3660 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.0854E7 -7.2 -10.0 81 101300 757 1342 241 338 72 297 37717 6837 33337 10881 120 6.2 10 9 11.3 3660 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.08576E7 -6.7 -9.4 81 101200 713 1342 235 405 249 273 45127 23017 30592 9927 110 4.6 10 7 11.3 3660 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.08612E7 -7.2 -10.0 81 101200 646 1342 233 316 55 289 34575 5354 31808 9336 130 3.6 10 7 11.3 3660 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.08648E7 -7.2 -9.4 84 101200 559 1342 230 345 284 228 37778 24957 25101 7426 160 3.1 10 6 11.3 3660 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.08684E7 -7.2 -10.0 81 101200 459 1342 230 246 191 181 26801 14907 19819 5676 190 1.5 10 6 11.3 3050 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.0872E7 -7.2 -9.4 84 101200 353 1342 228 138 78 118 15114 4458 12978 3785 170 2.1 10 5 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.08756E7 -7.8 -10.0 84 101200 248 1342 220 131 368 65 14521 10012 7229 2167 220 2.1 5 2 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.08792E7 -8.9 -10.6 88 101200 152 1342 213 59 186 39 6506 0 4313 1240 190 2.1 3 1 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.08828E7 -9.4 -10.0 96 101300 72 1342 240 18 0 18 1744 0 1756 562 230 2.6 10 10 0.8 120 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.08864E7 -8.3 -8.9 96 101300 15 1130 245 2 0 2 0 0 0 0 220 3.6 10 10 0.4 120 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.089E7 -7.2 -8.3 92 101300 0 0 250 0 0 0 0 0 0 0 240 2.6 10 10 0.6 120 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.08936E7 -7.8 -8.3 96 101300 0 0 248 0 0 0 0 0 0 0 240 2.1 10 10 1.6 90 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.08972E7 -7.8 -8.3 96 101400 0 123 248 0 0 0 0 0 0 0 200 4.1 10 10 0.8 120 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.09008E7 -10.6 -11.7 92 101400 27 1342 213 2 13 2 250 0 249 77 200 4.1 6 4 11.3 3050 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.09044E7 -11.7 -12.8 92 101400 90 1342 218 21 7 20 2346 0 2239 656 170 3.6 10 8 11.3 3050 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.0908E7 -10.0 -11.1 92 101400 175 1342 237 44 9 42 4893 27 4683 1392 190 4.6 10 10 11.3 610 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.09116E7 -7.8 -8.3 96 101400 275 1342 241 100 38 92 10885 1594 10054 2818 220 3.6 10 9 11.3 430 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.09152E7 -6.7 -7.8 92 101400 381 1342 240 243 224 181 25888 17355 19385 4757 190 4.6 10 8 11.3 610 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.09188E7 -5.6 -6.7 92 101500 487 1342 245 227 82 198 24708 6694 21664 6199 170 4.1 10 8 11.3 980 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.09224E7 -3.9 -5.6 88 101500 584 1342 252 349 117 299 37543 11793 32362 8473 190 6.2 10 8 11.3 980 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.0926E7 -3.3 -5.6 85 101500 667 1342 255 343 151 269 37895 13953 29890 9328 170 5.7 10 8 11.3 980 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.09296E7 -2.2 -4.4 85 101500 730 1342 260 513 382 307 56745 36831 34163 10725 190 7.2 10 8 8.0 980 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.09332E7 -1.7 -3.9 85 101500 768 1342 258 488 210 369 53542 21900 40749 12124 190 6.7 10 7 11.3 980 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.09368E7 -1.1 -3.9 82 101600 779 1342 270 420 75 377 46093 7872 41646 12392 200 7.7 10 9 11.3 980 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.09404E7 -0.6 -3.3 82 101600 762 1342 273 419 137 341 46217 13726 37850 11678 190 7.2 10 9 9.7 980 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.0944E7 -0.6 -3.3 82 101600 718 1342 260 524 439 290 58094 41199 32341 10299 190 6.2 9 6 11.3 1070 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.09476E7 -0.6 -2.8 85 101600 651 1342 248 455 655 139 52826 45344 16203 5969 190 6.7 3 1 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.09512E7 -0.6 -2.8 85 101600 564 1342 248 373 634 109 43367 39417 12718 4616 170 5.7 2 1 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.09548E7 -1.1 -3.9 82 101500 465 1342 241 303 608 95 34814 33792 10952 3803 160 6.2 2 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.09584E7 -2.2 -4.4 85 101500 359 1342 245 199 312 117 21831 17543 12890 3809 150 6.7 6 2 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.0962E7 -3.3 -5.0 88 101500 254 1342 242 114 169 83 12401 5970 9064 2533 170 4.6 7 3 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.09656E7 -4.4 -5.6 92 101600 158 1342 238 63 115 50 6823 466 5434 1460 170 5.7 9 3 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.09692E7 -6.1 -6.7 96 101600 78 1342 231 20 30 19 2210 0 2105 598 170 3.6 9 3 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.09728E7 -7.8 -8.9 92 101600 20 1342 218 3 11 2 0 0 0 0 150 4.6 4 1 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.09764E7 -8.9 -10.0 92 101600 0 11 214 0 0 0 0 0 0 0 150 5.7 3 1 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.098E7 -9.4 -10.6 92 101600 0 0 208 0 0 0 0 0 0 0 160 4.1 2 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.09836E7 -10.0 -11.1 92 101600 1 346 205 0 0 0 0 0 0 0 160 4.1 0 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.09872E7 -10.0 -11.1 92 101600 32 1341 205 6 89 3 655 4078 522 101 160 4.1 0 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.09908E7 -11.1 -12.2 92 101500 96 1341 201 35 220 20 3930 0 2250 669 150 3.6 0 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.09944E7 -11.1 -12.2 92 101500 181 1341 201 85 391 34 9648 0 3868 1209 150 4.1 0 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.0998E7 -11.1 -12.2 92 101500 281 1341 201 156 541 45 18050 12852 5218 1738 150 4.1 0 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.10016E7 -10.6 -11.7 92 101500 387 1341 203 245 633 65 28462 27502 7571 2616 130 3.6 2 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.10052E7 -9.4 -11.1 88 101500 492 1341 207 339 699 85 39604 39013 9960 3568 120 3.1 3 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.10088E7 -8.3 -10.6 84 101500 590 1341 211 426 767 92 50521 46724 10944 4092 130 5.2 2 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.10124E7 -7.2 -9.4 84 101500 672 1341 216 507 793 112 60181 52347 13341 5088 130 4.1 3 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.1016E7 -6.7 -8.3 88 101400 735 1341 222 538 736 136 63626 51647 16147 6206 120 3.6 4 1 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.10196E7 -5.0 -7.8 81 101400 773 1341 229 571 767 131 68172 53199 15700 6148 110 5.2 4 1 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.10232E7 -3.9 -5.6 88 101300 784 1341 230 620 827 139 73799 57997 16611 6498 110 5.7 4 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.10268E7 -2.8 -4.4 89 101300 767 1341 235 604 822 136 71790 57088 16228 6322 120 5.7 4 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.10304E7 -1.7 -3.3 89 101300 723 1341 239 551 807 119 65646 53629 14229 5518 120 6.2 3 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.1034E7 -2.2 -4.4 85 101200 656 1341 237 486 794 101 57924 49986 12077 4618 110 6.2 2 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.10376E7 -2.8 -3.9 92 101200 570 1341 235 405 751 89 47905 43948 10559 3926 120 7.7 2 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.10412E7 -3.3 -4.4 92 101200 470 1341 237 289 560 95 33255 31340 10968 3823 110 8.2 4 1 8.0 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.10448E7 -3.9 -5.0 92 101100 364 1341 240 231 441 113 25463 24427 12507 3773 120 9.3 8 3 4.8 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.10484E7 -3.3 -3.9 96 101100 260 1341 247 107 41 99 11492 1755 10679 2790 120 8.2 8 5 1.6 120 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.1052E7 -3.9 -4.4 96 101100 164 1341 247 65 118 52 7039 728 5651 1522 120 8.8 10 6 1.6 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.10556E7 -4.4 -5.0 96 101000 83 1341 244 21 21 20 2323 0 2218 634 120 8.2 10 6 1.2 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.10592E7 -5.0 -6.7 88 101100 26 1341 260 1 0 1 96 0 97 40 120 9.8 10 10 1.6 150 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.10628E7 -5.6 -6.7 92 101000 0 235 257 0 0 0 0 0 0 0 120 9.3 10 10 1.6 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.10664E7 -6.1 -7.2 92 101100 0 0 231 0 0 0 0 0 0 0 120 7.2 5 3 2.4 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.107E7 -6.7 -7.8 92 101000 3 592 226 0 0 0 0 0 0 0 120 6.2 8 2 1.6 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.10736E7 -7.2 -7.8 96 101000 38 1341 250 1 1 1 133 0 133 40 120 6.2 10 10 0.4 90 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.10772E7 -6.7 -7.2 96 101000 102 1341 237 24 8 24 2666 0 2672 777 120 6.7 8 7 6.4 2440 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.10808E7 -7.2 -8.3 92 101000 187 1341 234 60 96 47 6650 773 5224 1544 130 6.2 8 7 11.3 1980 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.10844E7 -6.7 -7.2 96 101000 286 1341 237 116 111 93 12670 4798 10198 2914 130 6.2 7 7 11.3 1980 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.1088E7 -6.7 -7.8 92 101000 392 1341 232 210 301 124 23180 18279 13745 4178 120 5.2 7 5 11.3 1980 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.10916E7 -5.0 -6.1 92 101000 497 1341 244 249 155 192 27248 12411 21118 6237 120 5.2 9 7 11.3 1980 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.10952E7 -4.4 -6.1 88 101000 595 1341 246 251 180 172 28343 13649 19512 6636 120 5.7 9 7 11.3 1980 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.10988E7 -3.9 -6.1 85 101000 677 1341 241 488 556 209 55167 45590 23746 8180 140 5.7 7 4 11.3 5490 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.11024E7 -3.3 -5.6 85 101000 740 1341 236 558 735 155 65356 53394 18231 6916 120 6.2 7 1 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.1106E7 -2.2 -4.4 85 101000 778 1341 237 615 844 127 73624 57487 15261 6007 120 5.7 4 0 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.11096E7 -1.7 -4.4 82 101100 789 1341 238 631 819 152 74641 58777 18055 7013 120 5.7 6 0 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.11132E7 -1.7 -3.9 85 101000 772 1341 243 589 740 165 69020 54510 19420 7414 120 6.7 8 1 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.11168E7 -1.1 -3.9 82 101000 728 1341 241 514 736 116 61422 48685 13911 5416 120 6.2 4 0 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.11204E7 -1.7 -3.9 85 101000 661 1341 243 475 739 113 56176 48050 13411 5090 120 5.2 5 1 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.1124E7 -2.2 -3.9 89 101000 575 1341 256 230 172 157 26040 12440 17854 6114 110 5.2 9 7 11.3 1830 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.11276E7 -2.8 -4.4 89 101000 475 1341 263 159 50 141 17745 3370 15805 5088 110 5.7 10 9 11.3 2440 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.11312E7 -3.3 -4.4 92 101100 370 1341 261 178 23 171 18977 1695 18325 4553 120 5.7 10 9 11.3 2440 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.11348E7 -3.3 -5.0 88 101100 265 1341 251 104 78 89 11300 3052 9709 2703 120 4.6 10 7 11.3 2440 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.11384E7 -3.9 -5.0 92 101100 169 1341 258 42 15 40 4665 0 4455 1322 90 4.6 10 9 11.3 2130 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.1142E7 -3.9 -5.6 88 101100 89 1341 258 20 9 19 2234 0 2127 625 120 5.7 10 9 11.3 2130 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.11456E7 -4.4 -6.1 88 101100 31 1341 255 2 10 2 250 0 250 78 80 6.2 10 9 11.3 2130 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.11492E7 -5.6 -6.7 92 101100 2 525 241 0 0 0 0 0 0 0 150 3.6 7 7 11.3 2130 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.11528E7 -6.7 -7.8 92 101100 0 0 236 0 0 0 0 0 0 0 110 5.2 7 7 11.3 2130 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.11564E7 -7.8 -8.3 96 101200 6 860 226 0 0 0 0 0 0 0 150 3.1 5 4 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.116E7 -7.8 -8.3 96 101200 44 1340 224 3 3 3 371 0 371 116 110 3.6 4 3 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.11636E7 -8.3 -8.9 96 101100 108 1340 223 23 12 22 2585 0 2478 743 100 4.1 5 4 0.8 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.11672E7 -7.8 -8.3 96 101200 193 1340 229 53 29 49 5871 299 5444 1609 100 3.6 9 6 11.3 2130 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.11708E7 -7.2 -8.3 92 101200 292 1340 228 123 88 104 13340 4246 11327 3124 130 3.1 6 4 11.3 2130 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.11744E7 -7.8 -9.4 88 101200 398 1340 225 182 193 126 20101 11931 13975 4256 110 4.1 5 4 16.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.1178E7 -7.2 -8.9 88 101200 503 1340 231 256 238 167 28393 17807 18609 5847 110 3.1 7 6 16.1 2740 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.11816E7 -5.6 -7.8 85 101200 600 1340 230 386 468 178 43528 36172 20167 6825 110 3.6 3 2 16.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.11852E7 -5.0 -7.8 81 101300 682 1340 224 478 589 179 54786 45456 20611 7394 120 4.1 3 0 16.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.11888E7 -3.3 -5.6 85 101300 745 1340 246 440 202 328 48562 20070 36425 11259 120 4.1 9 5 11.3 6100 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.11924E7 -1.7 -3.9 85 101300 782 1340 258 471 229 338 52206 22675 37698 11934 120 2.6 10 7 11.3 6100 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.1196E7 -1.7 -4.4 82 101300 793 1340 268 271 52 240 30950 4394 27556 9910 120 4.1 10 9 11.3 6100 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.11996E7 -1.1 -3.3 85 101300 776 1340 261 338 65 300 37786 6077 33737 11178 120 3.6 10 7 16.1 6100 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.12032E7 -1.1 -3.3 85 101400 733 1340 265 375 50 348 41073 5123 38359 11343 110 3.6 10 8 16.1 6100 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.12068E7 -0.6 -3.3 82 101400 666 1340 256 398 320 240 44364 27809 26897 8788 100 3.1 7 4 16.1 6100 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.12104E7 -1.1 -3.3 85 101400 580 1340 252 364 401 192 40582 31752 21512 6995 110 3.6 5 3 11.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.1214E7 -1.7 -3.9 85 101400 480 1340 258 261 217 184 28529 16868 20214 5944 110 4.1 10 7 11.3 2130 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.12176E7 -1.7 -3.3 89 101400 375 1340 269 98 0 98 9745 0 9819 3510 110 3.6 10 9 11.3 2440 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.12212E7 -2.2 -3.9 89 101400 271 1340 256 72 16 69 8006 494 7698 2355 90 3.6 10 7 11.3 2440 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.12248E7 -2.8 -3.9 92 101400 175 1340 245 64 74 55 6943 732 5988 1631 90 4.1 5 3 11.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.12284E7 -4.4 -5.0 96 101400 95 1340 238 27 9 26 2953 0 2852 787 100 4.1 7 3 11.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.1232E7 -5.0 -6.1 92 101400 36 1340 237 2 0 2 193 0 194 78 100 5.2 6 4 11.3 2440 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.12356E7 -5.6 -6.1 96 101400 4 859 233 0 1 0 0 0 0 0 100 4.1 5 3 11.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.12392E7 -6.1 -6.7 96 101400 0 0 231 0 0 0 0 0 0 0 80 4.6 5 3 11.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.12428E7 -6.1 -6.7 96 101400 10 1194 231 0 4 0 0 0 0 0 80 4.1 5 3 11.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.12464E7 -6.7 -7.8 92 101400 49 1339 228 8 16 7 933 0 817 253 70 5.2 8 3 11.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.125E7 -5.0 -5.6 96 101500 114 1339 261 22 1 22 2482 0 2487 754 80 4.1 10 10 0.6 120 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.12536E7 -5.0 -5.6 96 101500 199 1339 261 51 4 50 5653 46 5559 1653 110 3.1 10 10 1.2 120 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.12572E7 -4.4 -4.4 100 101500 298 1339 264 74 4 73 8276 144 8192 2565 60 4.1 10 10 0.6 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.12608E7 -4.4 -5.0 96 101400 403 1339 264 101 6 99 11387 321 11202 3672 70 5.2 10 10 0.6 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.12644E7 -4.4 -5.0 96 101400 508 1339 264 147 3 146 16495 208 16454 5421 70 4.1 10 10 0.6 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.1268E7 -3.9 -4.4 96 101400 605 1339 266 130 6 127 15069 402 14778 5378 70 5.2 10 10 0.6 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.12716E7 -3.9 -4.4 96 101400 687 1339 266 148 1 148 17228 71 17299 6440 70 6.2 10 10 0.6 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.12752E7 -3.9 -3.9 100 101400 749 1339 267 273 2 272 30617 180 30679 10308 70 6.2 10 10 3.2 150 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.12788E7 -3.9 -4.4 96 101300 787 1339 266 367 3 365 40461 309 40501 12398 60 6.2 10 10 1.6 120 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.12824E7 -3.9 -5.0 92 101400 798 1339 266 330 0 330 34038 0 34339 12007 60 6.7 10 10 1.6 150 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.1286E7 -4.4 -5.0 96 101300 781 1339 264 323 1 323 35936 97 36156 11668 70 6.7 10 10 4.8 150 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.12896E7 -3.9 -5.0 92 101300 737 1339 266 302 1 302 33513 95 33713 10757 50 6.7 10 10 4.8 150 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.12932E7 -4.4 -5.6 92 101300 670 1339 263 293 1 293 32172 96 32364 9749 80 6.7 10 10 4.8 150 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.12968E7 -4.4 -5.6 92 101200 584 1339 263 229 1 229 25202 87 25338 7742 90 5.7 10 10 11.3 150 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.13004E7 -4.4 -5.6 92 101200 485 1339 263 177 1 177 19443 76 19538 5883 60 4.6 10 10 11.3 150 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.1304E7 -3.3 -5.0 88 101200 380 1339 244 205 283 126 22506 17053 13893 4129 60 4.6 8 4 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.13076E7 -3.9 -5.6 88 101200 276 1339 230 143 438 55 16238 11422 6262 2021 70 5.2 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.13112E7 -5.0 -6.7 88 101200 181 1339 225 78 279 42 8685 852 4690 1404 60 5.2 1 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.13148E7 -6.7 -7.8 92 101200 100 1339 219 32 122 24 3542 0 2663 765 70 5.7 2 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.13184E7 -7.8 -9.4 88 101200 42 1339 214 5 35 4 602 0 481 151 70 5.7 2 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.1322E7 -8.3 -10.0 88 101200 9 1339 212 1 3 1 0 0 0 0 70 5.7 1 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.13256E7 -9.4 -10.6 92 101200 0 469 208 0 0 0 0 0 0 0 70 6.2 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.13292E7 -9.4 -10.6 92 101200 15 1339 208 1 5 1 0 0 0 0 70 6.2 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.13328E7 -9.4 -10.6 92 101200 55 1339 208 10 29 9 1151 0 1037 317 70 7.2 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.13364E7 -10.0 -11.7 88 101200 119 1339 205 39 123 29 4324 0 3223 934 60 6.2 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.134E7 -9.4 -11.1 88 101200 204 1339 207 88 272 48 9823 3324 5373 1627 70 6.2 0 0 16.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.13436E7 -7.8 -10.0 84 101200 303 1339 213 157 417 64 17799 14235 7277 2354 70 7.7 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.13472E7 -6.7 -9.4 81 101200 408 1339 217 241 533 81 27675 26429 9331 3185 70 8.8 0 0 16.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.13508E7 -5.6 -8.9 78 101200 513 1339 221 332 622 97 38569 36824 11306 4041 70 8.8 0 0 16.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.13544E7 -5.0 -8.9 75 101200 610 1339 223 421 684 111 49409 44332 13073 4850 70 10.3 0 0 16.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.1358E7 -4.4 -7.8 78 101300 692 1339 226 498 729 123 58901 49433 14602 5570 70 10.3 0 0 16.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.13616E7 -3.9 -7.2 78 101300 754 1339 228 556 757 132 66134 52530 15761 6127 80 10.3 0 0 16.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.13652E7 -3.3 -6.7 78 101300 791 1339 231 592 773 138 70628 54248 16529 6491 70 9.3 0 0 16.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.13688E7 -2.8 -6.1 78 101300 802 1339 233 603 778 139 72024 54604 16668 6568 80 10.3 0 0 16.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.13724E7 -2.2 -5.6 78 101400 785 1339 236 587 771 137 69985 53840 16398 6431 80 5.2 0 0 16.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.1376E7 -2.2 -5.0 82 101400 742 1339 236 545 752 131 64705 51734 15612 6048 80 8.8 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.13796E7 -2.2 -5.0 82 101400 675 1339 236 481 719 121 56759 48032 14331 5438 70 9.8 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.13832E7 -2.2 -5.6 78 101400 589 1339 236 402 672 108 47059 42488 12686 4674 70 9.3 0 0 16.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.13868E7 -2.8 -5.6 81 101500 490 1339 234 312 603 93 36156 34213 10812 3833 70 7.7 0 0 16.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.13904E7 -3.3 -6.7 78 101500 385 1339 231 221 509 77 25306 23498 8844 2988 70 7.7 0 0 16.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.1394E7 -4.4 -7.2 81 101500 281 1339 227 140 385 61 15800 11405 6905 2200 60 7.2 0 0 16.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.13976E7 -5.6 -7.8 85 101600 186 1339 222 75 236 44 8345 1323 4910 1468 50 7.2 0 0 16.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.14012E7 -6.7 -8.9 84 101600 106 1339 218 31 95 24 3447 0 2675 780 60 7.2 0 0 16.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.14048E7 -7.2 -10.0 81 101700 47 1339 215 6 20 5 714 0 595 186 50 6.2 0 0 16.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.14084E7 -7.2 -9.4 84 101700 14 1338 216 1 2 1 0 0 0 0 50 5.7 0 0 16.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.1412E7 -7.8 -9.4 88 101700 5 1338 214 0 0 0 0 0 0 0 50 5.7 0 0 16.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.14156E7 -7.8 -9.4 88 101800 20 1338 214 1 2 1 130 0 130 40 50 5.7 1 0 16.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.14192E7 -8.3 -9.4 92 101800 60 1338 212 11 17 10 1263 0 1150 351 50 6.2 0 0 16.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.14228E7 -7.8 -9.4 88 101800 125 1338 218 36 69 29 4005 0 3235 950 40 6.2 3 1 16.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.14264E7 -6.7 -8.3 88 101800 210 1338 218 91 194 61 9980 3855 6713 1922 50 5.7 4 0 16.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.143E7 -7.2 -8.9 88 101900 308 1338 220 142 276 79 15852 11100 8849 2754 50 5.7 3 1 16.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.14336E7 -7.8 -10.0 84 101900 413 1338 217 225 379 109 25265 21924 12286 3977 60 6.2 5 1 16.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.14372E7 -7.8 -8.3 96 102000 518 1338 248 125 7 122 14275 454 13986 4839 70 6.7 10 10 1.6 150 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.14408E7 -7.2 -7.8 96 102000 614 1338 250 139 16 132 16106 1098 15355 5585 90 5.7 10 10 1.6 150 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.14444E7 -7.2 -7.8 96 102100 696 1338 250 194 9 189 22203 709 21733 7781 100 6.7 10 10 1.2 120 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.1448E7 -7.2 -8.3 92 102100 758 1338 250 235 1 235 26739 85 26879 9506 80 6.2 10 10 3.2 150 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.14516E7 -6.7 -7.8 92 102200 796 1338 252 263 2 262 29863 177 29914 10524 80 5.7 10 10 3.2 150 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.14552E7 -6.1 -7.2 92 102200 806 1338 255 289 2 288 32624 183 32699 11256 70 5.2 10 10 3.2 150 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.14588E7 -5.6 -7.2 88 102200 789 1338 257 278 3 276 31396 271 31347 10810 70 5.7 10 10 4.8 150 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.14624E7 -5.6 -7.8 85 102200 746 1338 244 374 119 308 41532 11492 34408 10981 70 5.7 10 8 9.7 150 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.1466E7 -6.1 -7.8 88 102300 679 1338 248 257 45 235 28806 3899 26480 8825 50 6.2 10 9 9.7 150 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.14696E7 -6.1 -7.8 88 102300 594 1338 255 171 16 164 19391 1193 18681 6429 50 7.7 10 10 11.3 150 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.14732E7 -6.7 -8.3 88 102300 495 1338 252 118 6 116 13458 377 13280 4560 60 7.2 10 10 11.3 150 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.14768E7 -7.2 -8.3 92 102300 390 1338 243 105 26 98 11812 1380 11065 3587 50 5.2 10 9 11.3 120 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.14804E7 -7.8 -8.9 92 102400 287 1338 247 55 1 55 6273 28 6290 2051 50 6.7 10 10 11.3 120 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.1484E7 -7.8 -9.4 88 102400 191 1338 247 33 2 33 3770 1 3778 1199 60 5.7 10 10 11.3 210 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.14876E7 -8.3 -10.0 88 102400 111 1338 244 23 1 23 2578 0 2584 769 70 6.2 10 10 11.3 180 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.14912E7 -8.9 -10.0 92 102400 52 1338 242 6 0 6 580 0 584 221 50 6.2 10 10 11.3 180 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.14948E7 -8.9 -10.0 92 102400 19 1337 242 0 0 0 0 0 0 0 70 5.7 10 10 11.3 180 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.14984E7 -8.9 -10.0 92 102400 10 1337 242 0 0 0 0 0 0 0 110 5.7 10 10 11.3 210 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.1502E7 -9.4 -10.6 92 102400 25 1337 240 1 0 1 97 0 97 40 90 5.7 10 10 11.3 210 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.15056E7 -10.6 -11.7 92 102500 65 1337 234 10 0 10 969 0 975 357 70 5.2 10 10 6.4 270 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.15092E7 -10.6 -12.2 88 102500 130 1337 234 38 0 38 3705 0 3730 1150 80 4.6 10 10 6.4 310 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.15128E7 -10.6 -12.2 88 102500 215 1337 234 65 1 64 7122 23 7037 2004 70 4.6 10 10 6.4 310 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.15164E7 -10.6 -12.2 88 102500 313 1337 234 102 1 101 11183 49 11117 3233 70 4.6 10 10 6.4 310 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.152E7 -10.0 -12.2 84 102500 418 1337 236 142 0 142 14199 0 14308 4713 80 5.7 10 10 8.0 400 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.15236E7 -9.4 -12.2 81 102500 522 1337 238 192 1 192 21165 81 21271 6498 90 5.2 10 10 8.0 430 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.15272E7 -8.9 -12.2 77 102600 619 1337 240 245 1 245 27046 90 27195 8398 60 5.7 10 10 9.7 430 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.15308E7 -8.9 -11.7 81 102600 701 1337 240 265 0 265 27144 0 27376 9664 60 5.7 10 10 11.3 460 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.15344E7 -8.3 -11.1 81 102600 762 1337 243 333 2 332 36882 200 36999 11588 70 6.2 10 10 11.3 370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.1538E7 -8.3 -11.1 81 102600 800 1337 243 360 1 359 39891 103 40034 12525 70 6.2 10 10 11.3 400 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.15416E7 -8.3 -11.7 77 102600 810 1337 243 322 2 321 36082 194 36188 12011 80 5.2 10 10 11.3 370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.15452E7 -8.3 -11.1 81 102600 794 1337 243 333 1 332 37096 99 37213 12007 80 5.7 10 10 11.3 370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.15488E7 -8.3 -10.6 84 102600 750 1337 244 289 1 288 32312 94 32387 10667 70 6.7 10 10 11.3 310 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.15524E7 -7.8 -10.0 84 102600 684 1337 246 278 0 278 28429 0 28670 9708 80 6.7 10 10 11.3 310 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.1556E7 -7.8 -10.0 84 102600 598 1337 246 227 1 227 25100 87 25234 7868 80 5.7 10 10 11.3 310 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.15596E7 -8.3 -10.6 84 102700 500 1337 244 177 0 177 17819 0 17961 6022 90 6.2 10 10 11.3 310 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.15632E7 -9.4 -11.1 88 102700 395 1337 239 137 0 137 13669 0 13773 4440 80 6.2 10 10 11.3 270 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.15668E7 -9.4 -11.1 88 102700 292 1337 239 88 0 88 8701 0 8764 2856 70 6.7 10 10 11.3 240 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.15704E7 -10.0 -11.7 88 102700 197 1337 236 56 0 56 5491 0 5529 1759 90 6.2 10 10 11.3 210 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.1574E7 -10.6 -11.7 92 102700 116 1337 234 32 0 32 3115 0 3136 977 90 4.6 10 10 11.3 180 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.15776E7 -11.1 -12.8 88 102800 58 1337 232 11 0 11 1065 0 1072 372 70 4.6 10 10 11.3 180 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.15812E7 -11.1 -12.8 88 102800 23 1337 232 2 0 2 193 0 194 77 80 3.6 10 10 11.3 210 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.15848E7 -11.7 -12.8 92 102800 14 1337 229 2 0 2 0 0 0 0 110 4.6 10 10 11.3 180 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.15884E7 -11.7 -13.3 88 102800 30 1337 229 3 0 3 290 0 292 114 80 4.1 10 10 11.3 180 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.1592E7 -12.2 -13.9 88 102800 70 1337 227 18 0 18 1746 0 1757 569 80 4.1 10 10 11.3 180 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +1.15956E7 -12.8 -13.9 92 102800 135 1337 225 41 1 41 4467 0 4481 1224 70 4.1 10 10 11.3 150 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.15992E7 -12.2 -13.3 92 102800 220 1337 227 72 1 71 7840 27 7760 2152 80 3.6 10 10 11.3 150 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.16028E7 -12.2 -13.9 88 102800 318 1337 227 114 1 114 12396 55 12450 3478 80 4.1 10 10 11.3 120 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.16064E7 -12.2 -13.3 92 102900 423 1337 227 156 1 156 17061 72 17141 4989 70 4.1 10 10 11.3 180 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.161E7 -11.7 -13.3 88 102900 527 1337 229 205 1 205 22504 84 22621 6760 90 5.2 10 10 8.0 150 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.16136E7 -11.1 -12.8 88 102900 623 1337 232 247 0 247 25139 0 25348 8485 90 5.2 10 10 8.0 150 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.16172E7 -10.6 -12.2 88 102900 705 1337 215 409 337 233 46137 29138 26422 9015 90 4.6 10 5 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.16208E7 -10.0 -12.2 84 102900 766 1337 211 568 632 207 65430 51432 23962 8777 80 4.1 8 2 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.16244E7 -9.4 -11.7 84 102900 804 1337 207 622 893 87 65191 88796 12455 1900 80 5.2 0 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.1628E7 -9.4 -11.7 84 102900 814 1337 207 629 864 104 77033 57121 12778 5150 90 5.2 2 0 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.16316E7 -8.9 -11.7 81 102900 798 1337 212 592 773 132 71009 54171 15893 6279 80 5.2 4 1 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.16352E7 -8.3 -11.1 81 102900 754 1337 211 572 872 82 60056 86335 11875 1760 90 4.6 0 0 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.16388E7 -7.8 -10.6 81 102900 688 1337 213 509 846 76 62443 51088 9347 3669 90 5.2 0 0 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.16424E7 -7.8 -10.0 84 102900 603 1337 213 433 814 69 52651 46290 8410 3218 90 5.2 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.1646E7 -7.8 -10.0 84 102900 504 1337 213 346 766 60 41653 38785 7239 2681 90 5.7 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.16496E7 -7.8 -9.4 88 102900 400 1337 214 256 698 50 30465 27976 5962 2124 90 4.6 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.16532E7 -7.8 -10.0 84 102900 297 1337 213 171 603 40 20077 14467 4705 1603 110 3.6 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.16568E7 -8.9 -10.6 88 102900 202 1337 209 100 449 35 11430 1809 4009 1278 100 4.1 2 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.16604E7 -9.4 -11.1 88 102900 122 1337 207 49 299 24 5517 0 2708 817 80 5.2 2 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.1664E7 -10.0 -11.7 88 102900 63 1337 205 17 186 10 1952 0 1150 351 90 5.2 1 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.16676E7 -11.1 -12.2 92 103000 28 1336 201 3 60 2 331 2723 354 74 90 5.2 1 0 16.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.16712E7 -12.2 -13.3 92 103000 19 1336 197 2 59 1 224 2527 182 40 100 5.2 1 0 16.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.16748E7 -12.8 -13.9 92 103000 35 1336 195 5 65 3 613 0 368 115 100 5.2 1 0 16.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.16784E7 -12.8 -14.4 88 103000 76 1336 194 23 125 16 2585 0 1802 533 100 4.6 2 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.1682E7 -12.8 -14.4 88 103000 140 1336 194 57 260 31 6377 0 3477 1039 100 5.2 1 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.16856E7 -12.8 -14.4 88 103000 225 1336 194 111 412 44 12603 5930 5008 1588 100 4.6 1 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.16892E7 -11.7 -13.3 88 103000 323 1336 198 185 542 56 21355 18534 6480 2178 100 5.2 1 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.16928E7 -10.6 -12.8 84 102900 428 1336 202 274 633 73 31910 31216 8525 2991 100 5.2 2 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.16964E7 -10.6 -12.2 88 102900 531 1336 203 367 707 88 43172 41333 10383 3792 100 5.2 2 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.17E7 -9.4 -11.7 84 102900 627 1336 207 451 777 88 54113 47672 10589 4041 100 5.7 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.17036E7 -7.8 -10.6 81 102900 709 1336 217 507 763 104 60976 49821 12549 4889 100 6.2 2 1 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.17072E7 -6.7 -10.0 78 102900 770 1336 221 550 700 147 65114 50463 17474 6766 70 5.2 2 1 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.17108E7 -6.1 -8.9 81 102900 808 1336 220 587 786 113 71345 52635 13781 5523 80 6.2 1 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.17144E7 -4.4 -8.3 75 102900 818 1336 230 584 750 126 70516 51528 15270 6099 70 5.2 2 1 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.1718E7 -3.9 -7.8 75 102900 802 1336 228 619 828 124 74620 56590 15003 5967 70 5.7 2 0 16.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.17216E7 -3.9 -7.2 78 102800 759 1336 228 578 813 118 69424 54702 14224 5596 70 5.7 2 0 16.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.17252E7 -3.9 -7.2 78 102800 692 1336 228 513 783 109 61262 51209 13061 5042 80 6.2 2 0 16.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.17288E7 -3.3 -6.7 78 102800 607 1336 231 435 747 98 51520 46282 11644 4373 60 5.2 2 0 16.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.17324E7 -3.3 -6.1 81 102800 509 1336 231 342 697 79 40330 38011 9342 3408 70 5.2 1 0 16.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.1736E7 -3.3 -6.1 81 102700 405 1336 231 252 623 66 29372 27744 7713 2697 60 5.7 1 0 16.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.17396E7 -4.4 -6.7 85 102700 302 1336 227 168 505 56 19231 15319 6427 2122 70 4.6 2 0 16.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.17432E7 -5.6 -7.8 85 102700 207 1336 222 98 371 43 11039 3397 4856 1508 70 4.6 2 0 16.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.17468E7 -6.1 -7.8 88 102700 127 1336 221 48 219 28 5354 0 3131 926 80 5.7 2 0 16.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.17504E7 -6.7 -8.9 84 102700 68 1336 218 17 113 12 1933 0 1367 412 80 6.2 0 0 16.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.1754E7 -6.7 -8.9 84 102700 33 1336 218 5 78 3 547 3642 523 102 80 6.2 0 0 16.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.17576E7 -7.8 -10.0 84 102700 24 1336 213 2 73 1 225 3237 182 40 100 6.2 0 0 16.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.17612E7 -8.3 -10.0 88 102600 40 1336 212 7 84 5 830 0 593 185 110 6.2 0 0 16.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.17648E7 -8.9 -11.1 84 102600 81 1336 209 25 158 16 2823 0 1810 542 100 5.7 0 0 16.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.17684E7 -9.4 -11.7 84 102600 145 1336 207 61 296 30 6863 0 3383 1027 80 5.7 0 0 16.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.1772E7 -8.3 -11.1 81 102600 230 1336 211 116 444 41 13269 5959 4701 1515 100 5.7 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.17756E7 -7.8 -11.1 77 102600 328 1336 212 190 570 52 22090 18876 6060 2062 110 5.2 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.17792E7 -7.2 -10.6 77 102600 432 1336 215 277 665 64 32625 31239 7557 2693 120 6.2 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.17828E7 -6.1 -9.4 78 102600 536 1336 219 368 736 75 43858 40825 8962 3325 110 7.2 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.17864E7 -5.6 -9.4 74 102600 632 1336 221 454 785 85 54649 47562 10261 3932 120 7.2 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.179E7 -4.4 -8.9 72 102600 713 1336 225 530 820 94 64269 52053 11433 4489 110 7.2 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.17936E7 -3.3 -7.8 72 102600 774 1336 230 587 842 101 71543 54665 12349 4929 120 7.2 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.17972E7 -2.8 -6.7 75 102600 812 1336 233 619 849 104 75733 55462 12766 5145 120 7.7 0 0 16.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.18008E7 -2.2 -6.7 72 102500 822 1336 235 629 853 105 77035 55867 12902 5213 120 8.2 0 0 16.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.18044E7 -1.7 -5.6 75 102600 805 1336 237 613 848 104 74911 55200 12751 5131 110 7.2 0 0 16.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.1808E7 -1.1 -5.6 72 102500 762 1336 240 573 834 99 69779 53494 12094 4816 100 8.2 0 0 16.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.18116E7 -1.7 -6.1 72 102500 696 1336 237 512 810 92 61977 50580 11170 4367 100 7.7 0 0 16.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.18152E7 -1.7 -5.6 75 102500 611 1336 237 435 775 83 52220 45753 9992 3806 100 7.2 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.18188E7 -2.2 -5.0 82 102500 513 1336 236 347 722 72 41251 38246 8582 3161 100 7.7 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.18224E7 -2.8 -4.4 89 102500 409 1336 235 256 646 61 30053 27895 7178 2537 100 7.2 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.1826E7 -3.3 -5.6 85 102500 306 1336 232 172 544 50 19897 15516 5798 1950 100 6.7 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.18296E7 -4.4 -6.7 85 102500 212 1336 227 102 399 40 11581 3315 4553 1441 100 7.2 1 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.18332E7 -6.1 -7.8 88 102500 132 1336 221 51 241 29 5692 0 3244 963 100 6.7 2 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.18368E7 -7.2 -8.9 88 102500 73 1336 220 18 93 14 2032 0 1583 472 100 6.2 4 1 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.18404E7 -8.3 -9.4 92 102500 38 1335 219 3 7 2 381 0 253 79 100 6.7 5 2 16.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.1844E7 -8.9 -10.0 92 102500 29 1335 217 1 3 0 97 0 0 0 100 6.7 6 2 16.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.18476E7 -8.3 -9.4 92 102500 44 1335 245 8 0 8 773 0 778 280 100 7.2 10 10 0.6 180 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.18512E7 -8.3 -9.4 92 102500 85 1335 245 10 1 10 1177 0 1178 372 90 6.2 10 10 0.6 180 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.18548E7 -8.3 -9.4 92 102400 150 1335 238 35 7 34 3908 0 3806 1137 90 6.7 9 9 1.6 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.18584E7 -8.3 -8.9 96 102400 235 1335 245 74 53 65 8167 1361 7198 2122 100 5.7 10 10 1.6 180 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.1862E7 -8.3 -8.9 96 102400 332 1335 245 76 2 75 8592 83 8505 2756 110 6.7 10 10 1.6 180 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.18656E7 -7.8 -8.3 96 102300 436 1335 248 122 2 121 13670 124 13612 4402 100 7.2 10 10 4.8 120 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.18692E7 -7.2 -8.3 92 102300 540 1335 250 160 3 159 17983 220 17951 5961 100 8.2 10 10 4.8 120 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.18728E7 -6.7 -7.8 92 102300 636 1335 252 173 6 170 19739 455 19485 6866 110 9.3 10 10 8.0 120 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.18764E7 -6.7 -7.8 92 102300 717 1335 245 337 75 297 37339 7184 33102 10450 100 8.8 10 9 11.3 150 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.188E7 -6.1 -7.2 92 102300 778 1335 243 405 133 328 45022 13067 36687 11758 100 7.7 10 8 11.3 150 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.18836E7 -5.6 -6.7 92 102300 815 1335 236 515 423 257 58784 36724 29496 10581 110 8.2 5 5 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.18872E7 -5.0 -7.2 85 102200 826 1335 236 461 334 255 52755 28851 29341 10612 100 9.3 4 4 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.18908E7 -5.0 -7.2 85 102200 809 1335 234 572 590 216 66137 47939 25101 9340 100 9.8 4 3 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.18944E7 -4.4 -6.7 85 102200 766 1335 235 526 594 186 61075 45964 21698 8122 110 8.8 3 2 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.1898E7 -4.4 -7.2 81 102100 700 1335 231 476 587 170 54997 44300 19730 7240 120 8.8 4 1 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.19016E7 -4.4 -6.7 85 102100 615 1335 232 401 579 135 46403 39982 15684 5696 120 9.3 3 1 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.19052E7 -4.4 -6.7 85 102100 518 1335 235 306 413 147 34424 28973 16609 5520 120 7.7 4 2 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.19088E7 -5.6 -7.2 88 102100 414 1335 245 167 102 135 18424 6597 14959 4553 120 8.2 10 8 11.3 150 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.19124E7 -5.6 -7.2 88 102100 311 1335 245 102 9 100 11174 432 10999 3199 120 9.8 10 8 11.3 150 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.1916E7 -6.7 -7.8 92 102000 216 1335 245 49 14 47 5505 185 5294 1639 130 8.2 10 9 11.3 120 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.19196E7 -6.7 -7.2 96 102000 137 1335 253 24 0 24 2339 0 2355 846 120 8.2 10 10 11.3 90 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.19232E7 -6.7 -7.8 92 102000 77 1335 252 11 1 11 1272 0 1273 395 110 7.2 10 10 11.3 90 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.19268E7 -7.2 -7.8 96 102000 43 1335 250 3 0 3 290 0 292 117 110 7.7 10 10 6.4 90 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.19304E7 -7.2 -8.3 92 102000 33 1335 250 0 0 0 0 0 0 0 130 6.2 10 10 6.4 120 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.1934E7 -7.8 -8.3 96 102000 49 1335 248 7 0 7 677 0 681 254 120 7.2 10 10 11.3 90 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.19376E7 -7.2 -8.3 92 102000 90 1335 250 16 1 16 1821 0 1824 557 120 6.2 10 10 6.4 90 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.19412E7 -7.2 -8.3 92 102000 155 1335 250 32 1 32 3600 0 3609 1101 120 5.2 10 10 6.4 90 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.19448E7 -7.2 -8.3 92 101900 239 1335 250 69 0 69 6789 0 6837 2224 120 5.7 10 10 11.3 90 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.19484E7 -7.8 -8.3 96 101900 337 1335 248 101 0 101 10023 0 10098 3386 120 6.7 10 10 11.3 90 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.1952E7 -7.2 -7.8 96 101900 441 1335 250 168 1 167 18349 74 18328 5330 110 7.7 10 10 11.3 180 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.19556E7 -6.7 -7.8 92 101900 544 1335 240 182 53 161 20453 3906 18175 6040 120 8.2 10 8 16.1 180 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.19592E7 -6.1 -7.8 88 101900 639 1335 248 272 55 246 30141 4915 27409 8665 100 7.2 10 9 11.3 180 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.19628E7 -5.6 -7.8 85 101900 721 1335 244 375 136 301 41537 13095 33539 10569 100 6.2 10 8 11.3 270 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.19664E7 -4.4 -7.2 81 101900 782 1335 242 478 342 279 53885 31095 31632 10828 100 6.7 10 6 16.1 270 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.197E7 -5.0 -6.7 88 101900 819 1335 260 348 3 346 38802 297 38821 12609 110 6.7 10 10 16.1 270 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.19736E7 -4.4 -6.7 85 101800 830 1335 239 511 344 297 57799 31644 33791 11726 90 7.7 9 4 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.19772E7 -3.9 -6.1 85 101900 813 1335 257 364 72 321 40788 6895 36189 12066 90 6.2 10 9 16.1 240 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.19808E7 -3.9 -5.6 88 101900 770 1335 265 186 1 186 21609 77 21710 8144 90 5.2 10 10 16.1 210 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.19844E7 -4.4 -6.1 88 101800 704 1335 263 182 12 176 20984 915 20384 7453 80 4.6 10 10 16.1 150 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.1988E7 -4.4 -6.1 88 101800 619 1335 263 259 2 258 28458 183 28508 8630 90 4.1 10 10 16.1 150 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.19916E7 -5.0 -5.6 96 101900 522 1335 261 180 3 179 19942 231 19927 6264 120 3.6 10 10 11.3 120 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.19952E7 -5.0 -5.6 96 101900 418 1335 261 130 0 129 12986 0 12985 4466 90 2.6 10 10 11.3 120 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.19988E7 -5.6 -6.1 96 101900 315 1335 258 78 2 78 8735 80 8764 2763 70 4.1 10 10 0.8 60 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.20024E7 -5.6 -6.1 96 101900 221 1335 258 47 0 47 4614 0 4647 1653 60 3.1 10 10 0.8 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.2006E7 -6.1 -6.7 96 101900 141 1335 256 31 0 31 3022 0 3043 1036 60 2.1 10 10 0.4 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.20096E7 -6.1 -7.2 92 102000 82 1335 255 17 0 17 1648 0 1659 565 100 3.1 10 10 0.4 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.20132E7 -6.1 -6.7 96 102000 47 1334 256 8 0 8 773 0 778 283 120 3.1 10 10 0.4 60 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.20168E7 -6.7 -7.2 96 102000 38 1334 253 6 0 6 580 0 583 216 90 2.6 10 10 0.4 60 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.20204E7 -6.7 -7.8 92 102000 54 1334 252 10 0 10 967 0 974 346 90 3.1 10 10 0.4 60 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.2024E7 -7.2 -7.8 96 102000 95 1334 250 23 0 23 2234 0 2249 739 110 2.6 10 10 0.4 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.20276E7 -7.8 -8.3 96 102000 160 1334 241 42 20 40 4652 0 4443 1302 130 2.6 9 9 0.4 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.20312E7 -7.8 -8.9 92 102000 244 1334 247 73 3 72 8020 91 7938 2305 120 2.6 10 10 0.4 90 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.20348E7 -7.8 -8.3 96 102000 341 1334 248 103 4 102 11386 205 11320 3432 120 2.6 10 10 0.4 60 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.20384E7 -6.7 -7.8 92 102000 445 1334 252 134 8 131 14951 518 14678 4688 130 2.6 10 10 1.2 90 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.2042E7 -6.7 -7.2 96 102000 548 1334 253 198 6 196 21914 486 21802 6827 130 2.6 10 10 0.8 90 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.20456E7 -6.1 -6.7 96 102000 643 1334 256 235 8 231 26194 691 25885 8419 160 3.1 10 10 0.8 90 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.20492E7 -5.0 -6.1 92 102000 724 1334 260 238 4 236 26905 342 26821 9273 130 2.1 10 10 0.8 90 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.20528E7 -4.4 -5.6 92 102100 785 1334 263 311 2 310 34774 190 34871 11528 120 2.1 10 10 0.8 90 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.20564E7 -4.4 -5.0 96 102100 822 1334 264 324 2 322 36353 191 36349 12202 140 2.6 10 10 1.2 90 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.206E7 -3.9 -5.0 92 102100 833 1334 266 325 3 323 36525 285 36521 12345 120 2.6 10 10 1.6 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.20636E7 -3.3 -4.4 92 102100 816 1334 269 343 0 343 35442 0 35758 12529 80 1.5 10 10 2.0 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.20672E7 -3.3 -4.4 92 102100 774 1334 269 317 0 316 32638 0 32821 11503 140 2.1 10 10 1.6 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.20708E7 -3.3 -4.4 92 102100 708 1334 269 324 1 323 35571 100 35680 10723 110 3.1 10 10 1.6 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.20744E7 -3.9 -4.4 96 102100 623 1334 266 245 0 245 24905 0 25113 8473 110 3.6 10 10 1.6 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.2078E7 -3.9 -5.0 92 102100 526 1334 266 219 1 218 23890 85 23909 6951 80 3.6 10 10 1.2 90 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.20816E7 -3.9 -4.4 96 102100 422 1334 266 156 0 156 15585 0 15705 4991 90 4.1 10 10 1.6 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.20852E7 -3.9 -4.4 96 102100 320 1334 266 113 1 112 12295 52 12239 3462 100 3.1 10 10 4.8 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.20888E7 -4.4 -5.0 96 102100 225 1334 264 73 0 73 7168 0 7219 2212 100 4.6 10 10 2.4 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.20924E7 -5.0 -5.6 96 102100 146 1334 261 43 0 43 4193 0 4221 1298 100 4.6 10 10 0.8 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.2096E7 -5.0 -6.1 92 102100 87 1334 260 24 0 23 2328 0 2245 708 90 4.6 10 10 0.8 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.20996E7 -5.6 -6.7 92 102100 52 1334 257 10 0 10 967 0 973 345 90 5.2 10 10 0.8 90 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.21032E7 -5.6 -6.1 96 102100 42 1334 258 6 0 6 580 0 583 219 110 4.6 10 10 0.8 90 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.21068E7 -5.6 -6.1 96 102100 58 1334 258 11 0 11 1064 0 1071 378 90 3.1 10 10 0.8 90 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.21104E7 -6.1 -6.7 96 102000 99 1334 256 30 0 30 2914 0 2934 890 70 4.1 10 10 0.8 90 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.2114E7 -6.1 -6.7 96 102000 164 1334 256 58 0 58 5667 0 5706 1631 80 4.6 10 10 0.8 90 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.21176E7 -5.6 -6.7 92 102000 248 1334 257 84 0 84 8269 0 8328 2535 80 3.6 10 10 0.8 90 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.21212E7 -6.1 -6.7 96 102000 345 1334 256 106 0 106 10524 0 10603 3539 90 4.6 10 10 1.2 90 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.21248E7 -6.1 -7.2 92 102000 449 1334 255 142 0 142 14228 0 14339 4955 80 4.6 10 10 1.2 90 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.21284E7 -6.1 -6.7 96 102000 552 1334 256 210 1 210 23129 84 23250 7117 80 4.1 10 10 1.2 180 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.2132E7 -5.6 -6.1 96 102000 647 1334 258 266 1 266 29326 92 29494 9096 80 4.1 10 10 1.6 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.21356E7 -5.0 -5.6 96 102000 728 1334 261 270 1 270 30209 91 30381 10084 90 4.6 10 10 1.6 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.21392E7 -5.0 -6.1 92 102000 789 1334 260 318 1 318 35511 96 35726 11727 70 4.1 10 10 2.4 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.21428E7 -5.0 -5.6 96 101900 826 1334 261 317 1 317 35641 95 35857 12141 70 4.1 10 10 8.0 150 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.21464E7 -5.0 -6.1 92 101900 836 1334 260 345 1 345 38598 98 38840 12826 70 5.2 10 10 8.0 150 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.215E7 -4.4 -5.6 92 101900 820 1334 263 357 0 357 36909 0 37239 12820 70 5.7 10 10 11.3 150 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.21536E7 -4.4 -5.6 92 101900 777 1334 256 269 34 249 30576 2934 28457 10060 80 6.2 10 9 11.3 150 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.21572E7 -4.4 -5.6 92 101900 711 1334 263 177 2 176 20437 152 20414 7499 70 6.2 10 10 11.3 150 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.21608E7 -4.4 -5.6 92 101800 627 1334 263 136 5 134 15785 344 15614 5720 70 7.2 10 10 11.3 150 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.21644E7 -5.0 -5.6 96 101900 530 1334 261 123 3 122 14087 194 14026 4906 70 6.7 10 10 11.3 120 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.2168E7 -5.0 -6.1 92 101800 427 1334 260 99 2 99 11242 110 11282 3785 70 6.7 10 10 11.3 120 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.21716E7 -5.6 -6.1 96 101800 324 1334 258 91 2 91 10093 91 10131 3104 70 6.2 10 10 11.3 120 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.21752E7 -5.6 -6.1 96 101800 230 1334 258 59 0 59 5797 0 5838 1971 80 5.7 10 10 1.6 90 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.21788E7 -5.6 -6.1 96 101800 150 1334 258 47 0 47 4585 0 4617 1386 90 6.2 10 10 1.6 90 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.21824E7 -6.1 -6.7 96 101800 91 1334 256 24 0 24 2329 0 2344 742 70 5.7 10 10 1.6 90 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.2186E7 -6.1 -6.7 96 101800 56 1333 256 10 0 10 968 0 974 349 70 5.2 10 10 1.6 60 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.21896E7 -6.1 -6.7 96 101800 46 1333 256 10 0 10 967 0 973 338 90 5.2 10 10 1.6 60 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.21932E7 -6.7 -7.2 96 101800 62 1333 253 15 0 15 1452 0 1462 486 80 5.7 10 10 1.6 60 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.21968E7 -6.7 -7.2 96 101800 104 1333 253 28 1 28 3078 0 3087 870 80 5.7 10 10 1.2 60 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.22004E7 -6.7 -7.8 92 101700 168 1333 252 54 0 53 5279 0 5217 1585 90 4.1 10 10 1.2 60 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.2204E7 -6.7 -7.2 96 101700 252 1333 253 98 1 98 10526 43 10571 2749 80 4.6 10 10 1.2 60 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.22076E7 -6.7 -7.8 92 101700 349 1333 252 127 1 126 13831 60 13783 3915 70 4.6 10 10 1.2 60 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.22112E7 -6.1 -6.7 96 101700 453 1333 256 177 1 177 19300 76 19396 5600 80 4.6 10 10 11.3 240 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.22148E7 -5.6 -6.7 92 101700 555 1333 245 270 228 176 30201 17485 19780 6480 80 5.7 10 8 11.3 2740 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.22184E7 -5.0 -6.1 92 101700 650 1333 248 254 85 212 28554 7039 23953 8073 90 5.2 10 8 11.3 240 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.2222E7 -5.0 -6.7 88 101700 731 1333 253 372 85 325 41028 8453 36065 11094 80 5.7 10 9 11.3 180 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.22256E7 -5.0 -6.1 92 101600 792 1333 260 307 6 303 34441 563 34194 11473 90 5.7 10 10 11.3 150 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.22292E7 -5.0 -6.1 92 101600 829 1333 260 324 14 315 36474 1321 35675 12139 90 7.2 10 10 11.3 150 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.22328E7 -5.0 -6.1 92 101600 840 1333 260 291 6 287 33068 541 32802 11593 90 6.2 10 10 11.3 150 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.22364E7 -4.4 -5.6 92 101600 823 1333 263 287 0 287 29682 0 29947 11437 90 6.7 10 10 11.3 150 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.224E7 -4.4 -5.6 92 101600 781 1333 263 279 2 278 31453 181 31520 10807 100 6.2 10 10 11.3 180 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.22436E7 -4.4 -5.6 92 101500 715 1333 263 282 5 279 31394 463 31239 10129 90 7.7 10 10 11.3 240 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.22472E7 -4.4 -5.6 92 101500 631 1333 263 246 6 244 27224 533 27151 8546 90 7.2 10 10 11.3 180 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.22508E7 -4.4 -5.6 92 101500 534 1333 263 197 5 196 21728 404 21727 6698 90 8.2 10 10 11.3 180 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.22544E7 -5.0 -5.6 96 101400 431 1333 261 160 1 159 17494 71 17467 5116 90 7.7 10 10 11.3 150 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.2258E7 -5.0 -6.1 92 101400 328 1333 260 136 1 136 14606 62 14676 3840 90 7.7 10 10 11.3 150 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.22616E7 -5.6 -6.1 96 101400 234 1333 258 82 0 82 8060 0 8118 2404 90 7.2 10 10 11.3 150 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.22652E7 -5.0 -6.1 92 101400 155 1333 260 54 0 54 5270 0 5306 1510 90 7.7 10 10 11.3 150 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.22688E7 -5.6 -6.7 92 101400 96 1333 257 29 0 29 2815 0 2834 848 100 8.8 10 10 11.3 150 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.22724E7 -5.6 -6.7 92 101400 60 1332 257 12 0 12 1162 0 1169 410 90 6.7 10 10 11.3 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.2276E7 -5.6 -6.7 92 101300 51 1332 257 10 0 10 967 0 973 343 100 7.7 10 10 11.3 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.22796E7 -5.6 -6.7 92 101300 67 1332 257 14 0 14 1356 0 1365 470 100 7.2 10 10 11.3 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.22832E7 -5.6 -6.7 92 101300 108 1332 257 27 0 27 2625 0 2642 863 90 6.7 10 10 11.3 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.22868E7 -6.1 -7.2 92 101300 172 1332 255 48 1 48 5275 6 5291 1516 80 6.7 10 10 11.3 150 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.22904E7 -6.1 -7.2 92 101300 256 1332 255 82 0 82 8079 0 8137 2557 90 6.7 10 10 11.3 150 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.2294E7 -6.1 -7.2 92 101300 353 1332 255 117 0 117 11626 0 11713 3799 90 6.7 10 10 11.3 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.22976E7 -6.1 -7.2 92 101300 456 1332 255 172 1 172 18821 75 18913 5565 80 6.2 10 10 11.3 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.23012E7 -6.1 -6.7 96 101200 559 1332 256 237 1 236 25896 89 25929 7597 80 7.7 10 10 11.3 120 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.23048E7 -6.1 -6.7 96 101200 654 1332 256 272 1 271 29991 93 30053 9267 100 7.7 10 10 11.3 120 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.23084E7 -5.6 -7.2 88 101200 734 1332 257 292 1 292 32516 94 32707 10598 90 7.7 10 10 11.3 180 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.2312E7 -5.0 -7.2 85 101200 795 1332 259 329 1 328 36701 98 36815 12003 100 8.2 10 10 11.3 180 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.23156E7 -5.0 -6.7 88 101200 832 1332 260 380 0 380 39339 0 39691 13367 100 8.2 10 10 11.3 180 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.23192E7 -5.0 -6.7 88 101200 843 1332 260 343 0 343 35540 0 35860 12879 100 7.2 10 10 11.3 180 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.23228E7 -4.4 -6.1 88 101200 826 1332 263 378 1 377 41914 103 42076 13238 90 7.7 10 10 11.3 180 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.23264E7 -4.4 -6.1 88 101200 784 1332 263 355 1 354 39266 102 39405 12278 90 7.7 10 10 11.3 210 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.233E7 -4.4 -6.1 88 101200 718 1332 263 303 1 302 33540 96 33629 10579 100 7.7 10 10 11.3 270 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.23336E7 -4.4 -6.1 88 101200 634 1332 263 244 0 244 24837 0 25046 8589 100 8.2 10 10 11.3 270 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.23372E7 -3.9 -5.6 88 101100 538 1332 265 121 1 120 13902 65 13839 4883 100 8.2 10 10 11.3 270 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.23408E7 -3.9 -5.6 88 101200 435 1332 265 154 0 154 15406 0 15526 5071 100 7.7 10 10 11.3 310 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.23444E7 -3.9 -5.0 92 101100 332 1332 266 111 0 111 11004 0 11086 3543 90 5.7 10 10 11.3 310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.2348E7 -3.9 -5.6 88 101100 238 1332 265 85 0 85 8358 0 8417 2476 80 6.2 10 10 11.3 310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.23516E7 -4.4 -6.1 88 101200 159 1332 263 44 0 44 4296 0 4326 1375 80 7.7 10 10 11.3 270 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.23552E7 -5.0 -6.7 88 101200 100 1332 260 27 0 27 2622 0 2640 829 90 6.2 10 10 11.3 270 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.23588E7 -5.0 -6.7 88 101200 65 1332 260 15 0 15 1453 0 1462 492 90 6.7 10 10 11.3 270 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.23624E7 -5.6 -7.2 88 101200 55 1332 257 10 0 10 968 0 974 348 90 7.2 10 10 11.3 270 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.2366E7 -5.6 -7.2 88 101200 71 1332 257 16 0 16 1550 0 1561 526 80 6.2 10 10 11.3 270 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.23696E7 -6.1 -7.2 92 101100 112 1332 255 33 0 33 3210 0 3231 994 80 5.7 10 10 11.3 150 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.23732E7 -6.1 -7.2 92 101100 176 1332 255 50 0 50 4892 0 4925 1572 70 6.2 10 10 11.3 150 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.23768E7 -6.1 -7.2 92 101100 260 1332 255 83 0 83 8181 0 8240 2599 80 5.7 10 10 4.8 150 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.23804E7 -6.7 -7.2 96 101100 357 1332 253 123 0 123 12227 0 12318 3931 70 7.2 10 10 8.0 120 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.2384E7 -6.7 -7.2 96 101100 460 1332 253 91 0 91 9127 0 9199 3679 90 6.7 10 10 8.0 150 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.23876E7 -6.7 -7.8 92 101100 562 1332 252 116 1 116 13443 65 13492 4861 80 7.2 10 10 8.0 150 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.23912E7 -6.7 -7.8 92 101100 657 1332 252 147 0 147 14997 0 15124 6289 90 6.2 10 10 11.3 150 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.23948E7 -6.7 -7.8 92 101100 737 1332 252 185 1 184 21399 78 21383 7906 70 6.7 10 10 11.3 150 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.23984E7 -6.7 -7.8 92 101100 798 1332 252 306 0 306 31595 0 31875 11614 90 6.7 10 10 11.3 150 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.2402E7 -6.7 -8.3 88 101100 835 1332 252 330 1 329 37077 96 37191 12513 90 7.2 10 10 11.3 180 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.24056E7 -6.7 -8.3 88 101100 846 1332 252 327 0 327 33902 0 34207 12594 70 6.7 10 10 11.3 180 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.24092E7 -6.7 -8.3 88 101100 830 1332 252 325 1 324 36524 96 36634 12344 90 6.7 10 10 11.3 180 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.24128E7 -5.6 -7.8 85 101000 787 1332 256 302 1 301 33884 94 33972 11387 70 6.7 10 10 11.3 210 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.24164E7 -6.1 -7.8 88 101000 722 1332 255 296 0 296 30366 0 30628 10525 80 7.2 10 10 11.3 210 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.242E7 -6.1 -7.8 88 101000 638 1332 255 257 1 257 28377 91 28536 8857 70 7.2 10 10 11.3 270 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.24236E7 -6.1 -8.3 85 101000 541 1332 254 201 0 200 20306 0 20368 6847 80 7.7 10 10 11.3 310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.24272E7 -5.6 -7.8 85 101000 438 1332 256 158 0 158 15819 0 15942 5174 70 6.7 10 10 11.3 310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.24308E7 -5.6 -7.8 85 100900 336 1332 256 107 0 106 10618 0 10597 3482 90 7.2 10 10 11.3 310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.24344E7 -6.1 -7.8 88 100900 243 1332 255 70 0 70 6888 0 6938 2257 90 6.7 10 10 11.3 310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.2438E7 -6.1 -7.8 88 100900 163 1332 255 45 0 45 4397 0 4427 1412 90 6.2 10 10 11.3 310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.24416E7 -6.1 -7.8 88 100900 104 1332 255 28 0 28 2721 0 2739 863 80 5.2 10 10 11.3 310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.24452E7 -5.6 -7.2 88 100900 69 1331 257 15 0 15 1453 0 1463 500 100 5.2 10 10 11.3 240 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.24488E7 -5.6 -7.2 88 100900 59 1331 257 14 0 14 1355 0 1364 457 90 5.2 10 10 11.3 240 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.24524E7 -5.6 -7.2 88 100900 75 1331 257 17 0 17 1648 0 1659 558 100 5.2 10 10 11.3 240 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.2456E7 -5.6 -7.2 88 100800 116 1331 257 30 0 29 2919 0 2841 930 90 4.1 10 10 11.3 240 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.24596E7 -6.1 -7.2 92 100800 180 1331 255 50 0 50 4893 0 4927 1589 80 5.2 10 10 11.3 210 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.24632E7 -6.1 -7.2 92 100800 264 1331 255 79 0 79 7789 0 7845 2549 80 5.7 10 10 11.3 210 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.24668E7 -6.1 -7.8 88 100700 360 1331 255 120 1 119 13180 58 13125 3890 70 6.2 10 10 2.4 240 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.24704E7 -6.1 -7.2 92 100700 463 1331 255 158 1 158 17446 72 17527 5389 80 6.2 10 10 11.3 180 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.2474E7 -6.1 -7.2 92 100700 566 1331 255 217 0 217 21965 0 22144 7391 80 7.2 10 10 11.3 180 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.24776E7 -5.6 -7.2 88 100700 660 1331 257 258 0 258 26327 0 26549 9131 90 6.7 10 10 11.3 180 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.24812E7 -5.6 -7.2 88 100600 740 1331 257 290 1 290 32354 94 32543 10641 70 7.2 10 10 6.4 180 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.24848E7 -5.6 -7.2 88 100600 801 1331 257 327 1 327 36532 97 36756 12069 90 6.7 10 10 9.7 1310 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.24884E7 -4.4 -6.7 85 100600 838 1331 262 372 0 372 38533 0 38879 13342 70 6.7 10 10 3.2 1310 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.2492E7 -4.4 -6.7 85 100600 849 1331 262 377 1 376 41989 102 42150 13557 70 7.2 10 10 3.2 1370 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.24956E7 -3.9 -6.7 81 100600 833 1331 264 330 1 329 37053 96 37167 12486 90 6.7 10 10 11.3 2130 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.24992E7 -3.3 -5.6 85 100500 790 1331 268 331 1 331 36859 98 37087 12005 80 8.2 10 10 11.3 310 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.25028E7 -3.9 -5.0 92 100500 725 1331 266 299 1 298 33173 95 33259 10604 80 8.8 10 10 4.8 150 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.25064E7 -3.3 -4.4 92 100500 641 1331 269 145 1 144 16782 70 16735 6118 90 8.2 10 10 2.4 150 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.251E7 -3.9 -4.4 96 100500 545 1331 266 119 1 118 13711 64 13647 4854 80 8.2 10 10 2.4 150 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.25136E7 -3.9 -4.4 96 100500 442 1331 266 104 1 104 11811 57 11854 3996 70 7.7 10 10 2.4 150 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.25172E7 -3.9 -4.4 96 100500 340 1331 266 108 1 108 11872 52 11921 3546 80 7.2 10 10 2.4 120 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.25208E7 -3.3 -3.9 96 100400 246 1331 269 85 1 85 9210 36 9247 2536 100 7.2 10 10 2.4 150 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.25244E7 -3.9 -4.4 96 100400 167 1331 266 49 0 49 4786 0 4819 1504 100 7.7 10 10 2.4 150 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.2528E7 -4.4 -5.0 96 100400 108 1331 264 17 0 17 1652 0 1663 607 110 8.2 10 10 2.4 150 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.25316E7 -4.4 -5.6 92 100400 73 1331 263 10 0 10 969 0 975 364 110 8.2 10 10 3.2 150 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.25352E7 -4.4 -5.6 92 100400 63 1331 263 15 0 15 1452 0 1461 488 110 7.7 10 10 3.2 150 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.25388E7 -5.0 -5.6 96 100400 79 1331 261 20 0 20 1939 0 1952 635 110 6.7 10 10 4.8 150 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.25424E7 -5.0 -6.1 92 100400 120 1331 260 34 0 34 3309 0 3331 1043 100 7.7 10 10 11.3 150 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.2546E7 -5.0 -6.1 92 100400 184 1331 260 56 0 56 5481 0 5519 1718 110 6.7 10 10 11.3 150 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.25496E7 -5.6 -6.7 92 100400 267 1331 257 92 0 92 9073 0 9139 2794 110 7.7 10 10 11.3 150 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.25532E7 -5.6 -7.2 88 100400 364 1331 245 125 33 116 13772 1881 12834 3859 110 7.2 9 8 11.3 910 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.25568E7 -6.1 -7.2 92 100400 466 1331 255 140 2 140 15627 135 15695 5041 100 6.7 10 10 3.2 90 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.25604E7 -5.6 -7.2 88 100400 569 1331 257 149 4 147 16968 284 16811 5838 90 7.2 10 10 4.8 180 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.2564E7 -5.0 -7.2 85 100400 663 1331 259 223 6 219 25078 504 24755 8356 70 7.2 10 10 8.0 210 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.25676E7 -4.4 -6.7 85 100400 743 1331 262 244 9 239 27669 771 27246 9531 70 7.7 10 10 11.3 180 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.25712E7 -3.9 -6.1 85 100400 804 1331 265 354 4 352 39325 401 39351 12547 80 7.2 10 10 11.3 180 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.25748E7 -3.3 -6.1 81 100400 841 1331 267 295 3 293 33484 273 33450 11769 60 7.2 10 10 11.3 180 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.25784E7 -3.3 -5.6 85 100400 852 1331 268 316 2 315 35721 187 35822 12400 80 7.2 10 10 11.3 180 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.2582E7 -3.3 -5.6 85 100400 835 1331 268 376 2 375 41783 204 41943 13356 80 7.2 10 10 11.3 180 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.25856E7 -3.9 -5.6 88 100400 793 1331 265 299 2 298 33604 186 33689 11399 60 6.2 10 10 11.3 180 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.25892E7 -4.4 -6.1 88 100400 728 1331 263 318 0 318 32632 0 32915 10973 70 7.7 10 10 11.3 180 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.25928E7 -4.4 -6.1 88 100400 645 1331 263 271 2 270 29837 186 29898 9151 60 7.2 10 10 11.3 180 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.25964E7 -5.0 -6.1 92 100400 548 1331 260 232 0 232 23444 0 23634 7423 70 6.2 10 10 11.3 180 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.26E7 -4.4 -6.1 88 100400 446 1331 263 160 1 160 17563 72 17646 5276 70 6.2 10 10 11.3 180 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.26036E7 -4.4 -6.1 88 100400 344 1331 263 130 1 129 14102 60 14057 3915 70 5.2 10 10 11.3 240 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.26072E7 -4.4 -6.1 88 100400 250 1331 263 81 1 81 8831 35 8865 2500 50 5.2 10 10 11.3 270 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.26108E7 -4.4 -6.1 88 100400 171 1331 263 56 0 56 5474 0 5512 1639 60 5.7 10 10 11.3 310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.26144E7 -4.4 -6.1 88 100400 112 1331 263 32 0 32 3111 0 3132 967 70 5.2 10 10 11.3 370 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.2618E7 -4.4 -6.1 88 100400 76 1331 263 19 0 19 1842 0 1854 610 70 4.1 10 10 11.3 310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.26216E7 -4.4 -6.1 88 100400 66 1331 263 15 0 15 1453 0 1462 495 60 4.1 10 10 11.3 1520 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.26252E7 -4.4 -5.6 92 100400 82 1331 263 19 0 19 1842 0 1855 621 50 3.6 10 10 11.3 610 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.26288E7 -4.4 -5.6 92 100400 123 1331 263 38 0 38 3699 0 3724 1128 60 4.6 10 10 11.3 610 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.26324E7 -3.9 -5.0 92 100400 188 1331 266 62 0 62 6069 0 6112 1835 60 4.6 10 10 11.3 700 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.2636E7 -3.9 -5.0 92 100500 271 1331 266 91 1 91 9909 41 9948 2803 70 3.6 10 10 11.3 880 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.26396E7 -3.9 -5.0 92 100500 367 1331 266 143 0 143 14222 0 14330 4318 50 3.6 10 10 11.3 700 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.26432E7 -3.3 -4.4 92 100500 470 1331 269 188 1 187 20494 79 20489 5929 60 3.1 10 10 9.7 700 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.26468E7 -2.8 -3.9 92 100500 572 1331 271 222 1 221 24455 85 24474 7529 70 4.1 10 10 9.7 700 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.26504E7 -2.2 -4.4 85 100500 666 1331 273 297 1 297 32575 97 32771 9820 80 4.1 10 10 11.3 700 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.2654E7 -1.7 -4.4 82 100500 746 1331 275 341 2 340 37573 201 37699 11546 70 4.1 10 10 11.3 700 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.26576E7 -1.1 -4.4 78 100600 807 1331 278 334 1 333 37282 97 37400 12259 70 4.1 10 10 11.3 310 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.26612E7 -1.1 -4.4 78 100600 844 1331 278 349 1 349 39062 98 39309 13023 90 3.6 10 10 11.3 340 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.26648E7 -0.6 -3.9 79 100600 854 1331 280 363 2 362 40580 198 40727 13402 50 3.6 10 10 11.3 340 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.26684E7 -0.6 -3.3 82 100600 838 1331 281 344 2 343 38512 194 38641 12841 70 4.6 10 10 11.3 310 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.2672E7 -1.1 -3.3 85 100600 796 1331 279 325 1 325 36273 96 36496 11980 70 4.1 10 10 11.3 310 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.26756E7 -1.7 -3.3 89 100600 731 1331 276 331 1 331 36441 100 36668 11207 80 3.6 10 10 11.3 210 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.26792E7 -1.1 -2.8 89 100600 648 1331 279 254 1 253 28118 89 28164 8912 70 3.6 10 10 11.3 180 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.26828E7 -1.1 -3.3 85 100700 552 1331 279 237 1 237 25832 89 25976 7532 80 3.1 10 10 11.3 180 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.26864E7 -1.7 -2.8 92 100700 449 1331 277 172 0 172 17220 0 17355 5502 70 3.6 10 10 11.3 180 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.269E7 -2.2 -3.3 92 100700 348 1331 274 115 0 115 11413 0 11498 3727 80 3.6 10 10 11.3 150 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.26936E7 -2.2 -3.3 92 100700 254 1331 274 87 1 87 9438 37 9476 2620 60 4.1 10 10 11.3 150 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.26972E7 -2.2 -2.8 96 100800 175 1331 275 50 0 50 4885 0 4919 1559 90 4.1 10 10 11.3 150 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.27008E7 -2.2 -3.9 89 100800 116 1331 274 35 0 35 3402 0 3425 1034 80 4.1 10 10 11.3 150 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.27044E7 -2.2 -3.3 92 100800 80 1330 274 21 0 21 2035 0 2049 662 60 4.6 10 10 4.8 310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.2708E7 -2.8 -3.9 92 100800 70 1330 271 17 0 17 1646 0 1657 550 60 4.1 10 10 9.7 180 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.27116E7 -3.3 -4.4 92 100800 86 1330 269 25 0 25 2424 0 2441 757 60 5.2 10 10 4.8 90 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.27152E7 -3.9 -4.4 96 100800 127 1330 266 38 0 38 3699 0 3724 1144 40 5.2 10 10 1.2 60 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.27188E7 -3.9 -4.4 96 100800 191 1330 266 58 0 58 5679 0 5718 1789 50 4.1 10 10 1.2 60 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.27224E7 -4.4 -5.0 96 100800 274 1330 264 87 0 87 8582 0 8645 2758 60 5.2 10 10 1.6 120 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.2726E7 -3.9 -4.4 96 100800 370 1330 266 126 1 125 13818 60 13768 4072 60 5.2 10 10 1.6 150 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.27296E7 -3.9 -5.0 92 100800 473 1330 266 177 1 177 19402 76 19498 5811 60 6.2 10 10 9.7 150 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.27332E7 -3.9 -5.0 92 100800 574 1330 266 247 1 247 26982 90 27134 7953 60 6.7 10 10 11.3 150 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.27368E7 -3.3 -4.4 92 100800 669 1330 269 267 1 266 29573 91 29630 9382 60 6.2 10 10 11.3 150 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.27404E7 -3.3 -4.4 92 100800 749 1330 269 306 1 305 34041 95 34132 11031 50 6.2 10 10 11.3 150 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.2744E7 -3.3 -4.4 92 100800 809 1330 269 332 1 331 37097 97 37213 12258 60 7.2 10 10 11.3 150 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.27476E7 -2.8 -4.4 89 100800 846 1330 271 360 0 360 37301 0 37638 13263 50 7.2 10 10 11.3 150 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.27512E7 -2.2 -4.4 85 100700 857 1330 273 394 1 394 43767 103 44057 13974 50 7.2 10 10 11.3 150 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.27548E7 -2.2 -3.9 89 100700 841 1330 274 380 0 380 39352 0 39706 13524 40 7.2 10 10 11.3 180 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.27584E7 -2.2 -3.3 92 100700 799 1330 274 328 1 327 36610 96 36723 12056 40 7.2 10 10 11.3 150 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.2762E7 -2.2 -2.8 96 100700 734 1330 275 301 1 301 33417 95 33617 10782 50 7.2 10 10 11.3 120 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.27656E7 -1.7 -2.8 92 100700 651 1330 277 290 0 290 29544 0 29794 9524 70 7.2 10 10 6.4 180 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.27692E7 -1.7 -3.3 89 100700 555 1330 276 231 0 231 23343 0 23533 7496 50 6.7 10 10 11.3 240 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.27728E7 -1.7 -3.3 89 100700 453 1330 276 178 0 177 17828 0 17867 5611 50 6.7 10 10 11.3 240 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.27764E7 -1.7 -2.8 92 100700 351 1330 277 120 1 120 13120 57 13177 3840 50 6.2 10 10 11.3 120 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.278E7 -1.7 -2.2 96 100700 258 1330 277 85 0 85 8366 0 8427 2614 50 6.7 10 10 8.0 120 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.27836E7 -1.7 -2.2 96 100700 178 1330 277 53 1 53 5786 9 5806 1631 40 6.2 10 10 11.3 270 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.27872E7 -1.7 -2.8 92 100700 119 1330 277 31 0 31 3014 0 3034 975 30 5.2 10 10 11.3 150 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.27908E7 -1.7 -2.8 92 100800 84 1330 277 20 0 20 1939 0 1951 649 70 5.7 10 10 11.3 180 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.27944E7 -2.2 -3.3 92 100800 74 1330 274 19 0 19 1840 0 1852 602 70 6.7 10 10 11.3 370 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.2798E7 -2.8 -3.9 92 100800 89 1330 271 25 0 25 2425 0 2441 768 60 6.2 10 10 11.3 310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.28016E7 -2.8 -3.9 92 100800 130 1330 271 36 0 36 3505 0 3529 1122 70 6.2 10 10 11.3 150 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.28052E7 -2.8 -3.9 92 100800 194 1330 271 63 0 63 6169 0 6213 1891 60 5.7 10 10 11.3 180 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.28088E7 -3.3 -4.4 92 100800 277 1330 269 81 0 81 7992 0 8050 2664 60 6.2 10 10 11.3 150 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.28124E7 -2.8 -3.9 92 100800 373 1330 271 129 0 128 12834 0 12831 4148 70 6.7 10 10 11.3 180 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.2816E7 -2.8 -3.9 92 100900 475 1330 271 182 1 182 19915 77 20015 5920 60 4.1 10 10 11.3 150 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.28196E7 -2.2 -3.9 89 100900 577 1330 274 212 1 211 23475 83 23485 7412 50 4.6 10 10 11.3 150 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.28232E7 -2.2 -3.9 89 100900 671 1330 274 250 1 249 27855 88 27896 9094 50 5.2 10 10 11.3 150 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.28268E7 -2.2 -3.3 92 100900 751 1330 274 195 1 195 22498 78 22606 8345 40 5.2 10 10 6.4 150 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.28304E7 -2.2 -3.3 92 100900 812 1330 274 354 0 354 36565 0 36892 12701 40 5.7 10 10 9.7 150 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.2834E7 -1.7 -2.8 92 100900 849 1330 277 350 1 349 39201 97 39335 13095 40 5.7 10 10 9.7 120 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.28376E7 -1.1 -2.8 89 100900 860 1330 279 213 1 212 24874 79 24881 9538 40 5.7 10 10 6.4 180 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.28412E7 -1.1 -2.8 89 100900 843 1330 279 200 0 200 20711 0 20898 9038 30 6.2 10 10 3.2 150 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.28448E7 -1.1 -2.8 89 100900 802 1330 279 320 1 320 35796 95 36015 11959 40 5.7 10 10 3.2 240 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.28484E7 -0.6 -2.2 89 100900 737 1330 282 302 1 302 33535 95 33735 10838 40 5.7 10 10 8.0 270 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.2852E7 -0.6 -2.2 89 100900 654 1330 282 268 1 268 29563 92 29733 9245 40 5.2 10 10 3.2 180 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.28556E7 -1.1 -2.2 92 100900 558 1330 280 201 0 201 20312 0 20478 7038 40 4.6 10 10 1.6 180 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.28592E7 -0.6 -1.7 92 100900 456 1330 282 152 0 152 15223 0 15342 5220 40 3.6 10 10 2.4 180 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.28628E7 -0.6 -1.7 92 100900 355 1330 282 117 0 117 11614 0 11701 3814 40 4.1 10 10 4.8 150 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.28664E7 -1.1 -1.7 96 100900 261 1330 280 73 1 73 8057 31 8086 2414 50 4.1 10 10 4.8 150 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.287E7 -1.1 -1.7 96 101000 182 1330 280 50 0 49 4887 0 4823 1572 60 4.6 10 10 11.3 180 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.28736E7 -1.1 -2.2 92 101000 123 1330 280 38 0 38 3695 0 3720 1117 60 4.6 10 10 11.3 120 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.28772E7 -1.1 -1.7 96 101000 87 1329 280 21 0 21 2036 0 2049 680 60 4.1 10 10 3.2 90 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.28808E7 -1.1 -1.1 100 101000 77 1329 281 22 0 22 2130 0 2144 673 70 4.1 10 10 3.2 90 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.28844E7 -1.1 -1.7 96 101000 93 1329 280 25 0 25 2424 0 2441 779 70 4.6 10 10 4.8 120 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.2888E7 -1.1 -1.1 100 101100 134 1329 281 36 0 36 3504 0 3528 1134 60 4.1 10 10 0.8 120 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.28916E7 -1.1 -1.7 96 101100 197 1329 280 58 1 58 6351 15 6373 1822 60 5.2 10 10 0.8 120 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.28952E7 -1.1 -1.1 100 101100 280 1329 281 105 1 105 11329 47 11378 3077 60 5.2 10 10 1.2 150 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.28988E7 -1.1 -1.1 100 101100 376 1329 281 133 1 133 14527 61 14592 4256 60 4.6 10 10 0.8 120 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.29024E7 -0.6 -1.1 96 101100 478 1329 283 196 0 196 19665 0 19821 6152 70 5.2 10 10 6.4 60 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.2906E7 -0.6 -1.1 96 101100 580 1329 283 248 1 247 27103 89 27146 8027 70 4.6 10 10 1.6 60 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.29096E7 0.0 -1.1 92 101100 674 1329 286 274 0 273 27957 0 28093 9570 70 5.2 10 10 11.3 120 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.29132E7 0.6 -0.6 92 101100 754 1329 289 303 0 303 31123 0 31396 11062 70 4.6 10 10 11.3 120 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.29168E7 1.1 -1.1 85 101100 814 1329 290 364 0 364 37586 0 37922 12900 70 5.2 10 10 11.3 150 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.29204E7 0.6 -1.1 89 101100 851 1329 288 357 1 356 39922 98 40064 13262 60 5.7 10 10 11.3 150 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.2924E7 1.1 -0.6 89 101100 862 1329 291 377 1 377 42035 100 42310 13782 70 4.6 10 10 11.3 150 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.29276E7 1.1 -0.6 89 101100 846 1329 291 358 0 358 37061 0 37396 13234 70 5.2 10 10 11.3 120 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.29312E7 1.1 -0.6 89 101100 804 1329 291 343 1 342 38160 98 38288 12403 80 5.2 10 10 11.3 120 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.29348E7 1.1 -0.6 89 101100 740 1329 291 300 0 300 30779 0 31048 10840 70 5.2 10 10 11.3 90 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.29384E7 0.6 -0.6 92 101100 657 1329 289 270 0 270 27506 0 27739 9316 70 5.2 10 10 0.8 60 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.2942E7 0.6 -0.6 92 101100 561 1329 289 219 0 219 22127 0 22309 7389 80 4.1 10 10 1.2 60 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.29456E7 0.6 -0.6 92 101200 459 1329 289 165 1 164 18121 72 18097 5470 80 5.2 10 10 1.2 60 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.29492E7 0.6 -0.6 92 101100 358 1329 289 126 1 125 13752 58 13703 3977 90 4.6 10 10 0.2 150 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.29528E7 0.0 -0.6 96 101200 264 1329 286 82 1 82 8974 35 9008 2607 110 5.2 10 10 6.4 120 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.29564E7 0.0 -0.6 96 101200 185 1329 286 58 1 58 6306 13 6328 1753 90 4.6 10 10 11.3 180 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.296E7 0.0 -0.6 96 101200 126 1329 286 35 0 35 3403 0 3426 1079 90 5.2 10 10 11.3 120 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.29636E7 -0.6 -1.7 92 101200 90 1329 282 19 0 19 1842 0 1855 640 80 7.2 10 10 11.3 180 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.29672E7 -1.1 -2.2 92 101300 80 1329 280 18 0 18 1744 0 1755 595 80 6.2 10 10 11.3 760 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.29708E7 -1.7 -2.8 92 101300 96 1329 277 20 0 20 1941 0 1954 674 70 5.2 10 10 11.3 310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.29744E7 -1.7 -3.3 89 101300 137 1329 276 32 0 32 3117 0 3138 1058 70 6.2 10 10 11.3 370 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.2978E7 -1.7 -3.3 89 101300 200 1329 276 54 0 54 5290 0 5328 1758 60 6.2 10 10 11.3 210 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.29816E7 -1.7 -2.2 96 101300 283 1329 277 71 1 71 7926 33 7952 2475 60 5.2 10 10 11.3 210 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.29852E7 -1.7 -2.8 92 101300 379 1329 277 101 0 101 10051 0 10127 3629 60 6.2 10 10 11.3 180 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.29888E7 -0.6 -2.2 89 101300 481 1329 282 135 1 135 15158 66 15222 5020 70 6.7 10 10 11.3 180 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.29924E7 -0.6 -1.7 92 101300 582 1329 275 211 73 179 23699 5562 20201 6771 70 6.2 10 9 11.3 180 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.2996E7 0.0 -1.7 89 101300 676 1329 277 253 63 221 28482 5225 25009 8528 70 6.2 10 9 11.3 210 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.29996E7 0.0 -1.1 92 101300 756 1329 286 207 7 203 23818 551 23472 8626 70 6.7 10 10 11.3 150 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.30032E7 0.0 -1.1 92 101300 816 1329 286 195 14 186 22834 1057 21882 8413 60 6.7 10 10 11.3 150 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.30068E7 0.0 -1.7 89 101300 853 1329 285 202 5 198 23688 384 23331 9024 60 6.7 10 10 11.3 240 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.30104E7 0.0 -1.7 89 101300 864 1329 285 260 11 253 29961 923 29314 10886 70 7.2 10 10 11.3 180 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.3014E7 0.0 -1.1 92 101300 848 1329 286 275 4 272 31418 347 31251 11307 70 7.2 10 10 11.3 240 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.30176E7 0.0 -1.7 89 101300 807 1329 285 248 4 246 28361 337 28284 10249 50 6.7 10 10 11.3 240 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.30212E7 0.0 -1.7 89 101300 742 1329 285 236 3 234 26784 251 26698 9407 70 7.2 10 10 11.3 270 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.30248E7 0.0 -1.7 89 101300 659 1329 285 230 2 229 25732 169 25756 8565 50 6.7 10 10 11.3 240 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.30284E7 0.0 -1.7 89 101300 564 1329 285 156 0 156 15771 0 15900 6063 50 7.2 10 10 11.3 210 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.3032E7 0.0 -1.1 92 101300 462 1329 286 128 0 128 12824 0 12926 4735 60 7.7 10 10 11.3 180 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.30356E7 -0.6 -1.1 96 101200 361 1329 283 94 1 94 10517 49 10556 3369 60 7.7 10 10 3.2 90 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.30392E7 -1.1 -1.7 96 101200 268 1329 280 64 0 64 6304 0 6350 2242 70 8.0 10 10 3.2 60 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.30428E7 -1.8 -2.4 96 101200 189 1329 277 25 0 25 2446 0 2463 956 70 8.3 10 10 11.3 120 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.30464E7 -2.4 -3.1 96 101200 129 1329 274 27 0 27 2628 0 2645 915 70 8.6 10 10 11.3 120 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.305E7 -3.0 -3.9 96 101200 96 1328 270 26 0 26 2523 0 2540 804 80 8.9 10 10 11.3 240 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.30536E7 -3.6 -4.6 88 101200 85 1328 267 25 0 25 2424 0 2440 750 90 9.2 10 10 8.0 240 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.30572E7 -4.3 -5.3 92 101200 101 1328 264 28 1 28 3069 0 3077 858 80 9.5 10 10 6.4 240 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.30608E7 -5.0 -6.1 92 101200 142 1328 260 41 0 40 3997 0 3926 1235 80 9.8 10 10 3.2 180 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.30644E7 -5.0 -6.1 92 101200 205 1328 260 67 1 66 7286 22 7204 1992 100 9.8 10 10 3.2 240 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.3068E7 -5.0 -6.1 92 101200 288 1328 260 104 0 104 10273 0 10348 3111 100 7.2 10 10 2.4 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.30716E7 -5.0 -6.1 92 101200 383 1328 260 150 1 150 16264 68 16342 4554 90 9.8 10 10 3.2 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.30752E7 -5.0 -6.7 88 101200 485 1328 260 202 1 202 21970 83 22086 6290 110 8.2 10 10 3.2 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.30788E7 -5.0 -6.7 88 101200 586 1328 260 260 1 259 28369 93 28422 8249 90 10.3 10 10 4.8 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.30824E7 -4.4 -6.1 88 101200 680 1328 263 297 1 297 32678 97 32873 10010 100 9.3 10 10 3.2 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.3086E7 -4.4 -6.1 88 101200 759 1328 263 343 0 343 35293 0 35602 11787 110 11.3 10 10 3.2 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.30896E7 -3.9 -6.1 85 101200 820 1328 265 342 0 342 35370 0 35686 12596 100 10.3 10 10 3.2 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.30932E7 -3.9 -6.1 85 101300 857 1328 265 369 0 369 38281 0 38627 13564 100 10.3 10 10 6.4 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.30968E7 -3.9 -5.6 88 101200 868 1328 265 385 1 385 42939 102 43221 13988 100 10.3 10 10 8.0 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.31004E7 -3.3 -5.0 88 101200 852 1328 268 357 0 357 37013 0 37348 13284 100 11.3 10 10 4.8 240 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.3104E7 -3.3 -5.6 85 101200 811 1328 268 341 2 340 38036 197 38161 12440 100 10.8 10 10 8.0 270 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.31076E7 -3.3 -4.4 92 101200 746 1328 269 342 1 341 37678 101 37804 11566 110 8.8 10 10 8.0 240 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.31112E7 -3.3 -5.0 88 101200 664 1328 268 298 1 297 32674 97 32760 9788 100 8.8 10 10 8.0 270 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.31148E7 -3.3 -5.0 88 101300 568 1328 268 218 1 218 24027 85 24154 7439 110 8.8 10 10 11.3 240 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.31184E7 -3.3 -4.4 92 101300 467 1328 269 174 1 174 19064 75 19157 5696 110 8.2 10 10 11.3 180 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.3122E7 -3.3 -4.4 92 101300 366 1328 269 147 0 147 14614 0 14725 4341 100 8.8 10 10 11.3 180 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.31256E7 -3.9 -4.4 96 101300 273 1328 266 93 0 93 9170 0 9237 2833 120 7.7 10 10 11.3 180 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.31292E7 -3.9 -4.4 96 101300 194 1328 266 59 1 59 6433 16 6456 1806 110 7.7 10 10 8.0 150 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.31328E7 -3.9 -4.4 96 101400 135 1328 266 37 1 37 4053 0 4066 1143 120 8.8 10 10 6.4 150 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.31364E7 -3.9 -4.4 96 101400 99 1328 266 27 0 27 2621 0 2639 834 120 7.2 10 10 11.3 150 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.314E7 -3.9 -5.0 92 101400 88 1328 266 26 0 26 2522 0 2539 779 120 8.2 10 10 6.4 150 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.31436E7 -3.9 -4.4 96 101400 104 1328 266 27 0 27 2622 0 2640 848 130 8.8 10 10 2.0 150 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.31472E7 -3.9 -4.4 96 101400 144 1328 266 40 0 40 3899 0 3926 1247 130 7.7 10 10 2.0 180 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.31508E7 -3.3 -4.4 92 101400 208 1328 269 62 1 61 6794 19 6707 1921 140 7.2 10 10 2.0 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.31544E7 -3.3 -3.9 96 101400 290 1328 252 142 180 103 15406 8473 11222 3117 150 4.6 7 7 11.3 520 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.3158E7 -2.8 -3.9 92 101400 385 1328 271 98 2 97 11021 104 10948 3556 180 5.2 10 10 11.3 150 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.31616E7 -2.8 -3.9 92 101400 487 1328 271 122 6 120 13852 377 13678 4655 170 5.7 10 10 11.3 340 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.31652E7 -2.2 -3.3 92 101500 588 1328 274 149 2 148 17019 141 16977 5976 210 6.7 10 10 11.3 490 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.31688E7 -1.1 -3.9 82 101500 682 1328 278 242 6 239 27110 518 26918 8986 220 5.2 10 10 11.3 460 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.31724E7 -1.7 -2.8 92 101500 761 1328 277 146 3 145 17270 211 17222 6675 220 5.7 10 10 4.8 150 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.3176E7 -1.7 -3.3 89 101600 822 1328 276 298 1 298 33653 92 33852 11711 220 4.1 10 10 11.3 340 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.31796E7 -1.1 -3.9 82 101600 859 1328 278 323 3 321 36496 281 36491 12625 210 5.2 10 10 11.3 430 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.31832E7 -1.7 -4.4 82 101600 870 1328 275 316 1 316 35822 93 36038 12624 210 5.7 10 10 11.3 430 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.31868E7 -1.7 -3.9 85 101600 854 1328 276 390 0 390 40434 0 40799 13877 220 4.1 10 10 11.3 370 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.31904E7 -1.1 -3.9 82 101600 813 1328 278 327 1 327 36596 96 36821 12229 240 4.1 10 10 11.3 370 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.3194E7 -1.7 -3.9 85 101600 749 1328 251 483 453 228 55014 37752 26105 9291 230 3.6 6 4 11.3 370 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.31976E7 -1.1 -3.9 82 101600 666 1328 253 433 504 181 49457 38709 20770 7393 230 3.1 6 4 11.3 370 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.32012E7 -1.7 -4.4 82 101700 571 1328 268 253 52 231 27765 4537 25489 7680 240 2.6 10 9 11.3 430 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.32048E7 -1.7 -4.4 82 101700 470 1328 253 257 341 137 28742 22640 15387 4989 210 3.6 5 5 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.32084E7 -1.7 -3.9 85 101700 369 1328 276 104 0 104 10341 0 10419 3635 210 3.6 10 10 11.3 2440 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.3212E7 -1.7 -3.3 89 101700 276 1328 276 53 8 52 6047 197 5949 1942 180 2.6 10 10 11.3 2440 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.32156E7 -1.7 -3.3 89 101700 197 1328 276 47 1 47 5230 9 5245 1579 170 2.6 10 10 11.3 2440 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.32192E7 -1.7 -2.8 92 101700 137 1328 277 24 1 23 2738 0 2629 821 180 2.6 10 10 11.3 2440 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.32228E7 -1.7 -2.8 92 101700 102 1327 277 17 1 17 1942 0 1945 601 140 2.1 10 10 11.3 2440 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.32264E7 -1.7 -4.4 82 101700 91 1327 275 19 1 19 2133 0 2138 637 130 2.6 10 10 6.4 340 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.323E7 -1.7 -3.3 89 101700 106 1327 276 34 1 34 3682 0 3693 984 150 2.6 10 10 3.2 310 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.32336E7 -1.7 -2.8 92 101700 147 1327 277 37 0 37 3606 0 3631 1196 130 2.6 10 10 3.2 310 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.32372E7 -1.7 -2.2 96 101700 210 1327 277 58 1 58 6387 17 6409 1876 150 3.6 10 10 2.4 310 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.32408E7 -1.7 -2.8 92 101700 292 1327 277 106 1 106 11480 48 11530 3180 160 4.1 10 10 2.4 430 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.32444E7 -1.7 -2.2 96 101700 388 1327 277 128 1 128 14075 61 14136 4252 160 3.1 10 10 3.2 430 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.3248E7 -1.1 -2.2 92 101800 489 1327 280 174 1 174 19169 75 19262 5910 160 4.1 10 10 4.8 880 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.32516E7 -1.1 -2.2 92 101800 590 1327 280 221 1 221 24438 84 24568 7726 150 3.6 10 10 8.0 1310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.32552E7 -0.6 -1.7 92 101800 684 1327 282 284 0 284 29007 0 29255 9872 170 4.1 10 10 11.3 1310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.32588E7 0.0 -1.7 89 101800 763 1327 285 331 1 331 36656 98 36884 11669 170 4.1 10 10 11.3 180 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.32624E7 0.6 -1.1 89 101800 824 1327 280 378 73 332 42309 6979 37390 12463 200 4.1 10 9 11.3 760 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.3266E7 0.6 -1.1 89 101900 861 1327 288 428 97 366 47834 9582 41169 13572 180 4.1 10 10 11.3 120 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.32696E7 1.1 -0.6 89 101900 872 1327 291 307 5 303 34903 450 34653 12327 230 2.6 10 10 11.3 120 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.32732E7 0.6 -1.1 89 101900 856 1327 288 333 10 327 37531 938 37081 12734 230 4.1 10 10 11.3 120 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.32768E7 0.6 -1.7 85 101900 815 1327 287 270 6 266 30726 521 30440 10857 230 3.6 10 10 11.3 700 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.32804E7 0.0 -2.2 85 101900 751 1327 266 383 262 234 43538 21954 26741 9473 230 3.6 9 7 11.3 2440 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.3284E7 0.6 -2.2 82 102000 669 1327 269 321 176 232 35941 14973 26114 8710 240 3.6 9 7 11.3 2440 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.32876E7 0.0 -2.2 85 102000 573 1327 259 346 371 186 38663 28835 20886 6860 230 3.6 9 4 11.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.32912E7 -0.6 -3.3 82 102000 472 1327 256 275 258 184 30028 20018 20193 5908 230 3.6 9 4 11.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.32948E7 -1.7 -3.9 85 102000 371 1327 276 63 0 63 6266 0 6314 2522 240 4.1 10 10 11.3 370 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.32984E7 -2.2 -4.4 85 102100 278 1327 256 118 98 97 12808 4293 10572 2937 240 3.6 10 7 11.3 370 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.3302E7 -2.8 -4.4 89 102100 200 1327 242 82 95 68 8863 2061 7377 1981 250 4.6 5 2 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.33056E7 -2.8 -4.4 89 102100 140 1327 247 49 66 43 5322 0 4686 1274 230 2.6 7 4 11.3 310 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.33092E7 -2.8 -3.9 92 102100 104 1327 251 30 33 27 3308 0 2985 852 250 7.2 7 6 11.3 310 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.33128E7 -3.3 -5.0 88 102200 94 1327 268 14 3 14 1615 0 1617 504 270 7.2 10 10 11.3 310 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.33164E7 -2.8 -4.4 89 102200 109 1327 271 17 1 17 1953 0 1956 611 270 7.2 10 10 11.3 370 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.332E7 -3.3 -5.6 85 102200 149 1327 268 36 0 36 3512 0 3536 1183 270 6.7 10 10 11.3 400 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.33236E7 -2.8 -5.6 81 102200 213 1327 270 44 1 43 4975 11 4875 1533 260 6.7 10 10 11.3 430 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.33272E7 -3.3 -4.4 92 102300 295 1327 252 111 78 94 12159 3438 10337 3007 250 6.2 8 7 11.3 430 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.33308E7 -2.8 -4.4 89 102300 390 1327 258 144 75 122 15916 4468 13541 4152 270 5.7 10 8 11.3 370 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.33344E7 -2.8 -5.0 85 102400 491 1327 250 228 190 158 25348 13673 17646 5614 290 5.2 10 6 11.3 460 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.3338E7 -2.2 -5.0 82 102400 592 1327 273 161 4 159 18308 292 18161 6315 270 6.2 10 10 11.3 460 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.33416E7 -2.2 -5.0 82 102400 685 1327 255 272 106 217 30744 8787 24653 8506 260 5.7 10 7 11.3 460 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.33452E7 -2.2 -5.0 82 102400 765 1327 273 250 1 250 28360 87 28514 10012 290 5.2 10 10 11.3 460 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.33488E7 -2.8 -5.0 85 102500 825 1327 270 335 9 329 37570 864 37124 12428 270 5.2 10 10 11.3 370 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.33524E7 -1.7 -4.4 82 102500 862 1327 275 326 4 323 36848 375 36731 12717 290 4.1 10 10 11.3 370 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.3356E7 -1.7 -5.0 78 102500 873 1327 275 371 10 364 41613 989 41089 13705 260 4.1 10 10 11.3 430 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.33596E7 -1.7 -5.0 78 102600 858 1327 275 366 9 360 40979 891 40565 13432 250 5.2 10 10 11.3 430 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.33632E7 -2.2 -5.6 78 102600 817 1327 259 407 191 289 46064 17363 32899 11456 220 4.6 9 8 11.3 430 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.33668E7 -1.7 -5.6 75 102600 753 1327 274 258 3 256 29150 264 29083 10053 260 4.1 10 10 11.3 520 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.33704E7 -2.2 -5.6 78 102600 671 1327 272 186 2 185 21237 156 21222 7541 270 4.1 10 10 11.3 490 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.3374E7 -1.7 -5.6 75 102600 576 1327 261 258 90 219 28482 7651 24304 7544 240 3.1 9 8 11.3 490 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.33776E7 -2.2 -5.6 78 102600 475 1327 272 131 6 129 14747 389 14582 4828 250 4.1 10 10 11.3 460 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.33812E7 -2.8 -5.0 85 102600 374 1327 270 121 3 120 13329 175 13275 4002 240 2.1 10 10 11.3 370 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.33848E7 -3.3 -5.6 85 102600 281 1327 268 64 2 64 7200 62 7222 2287 220 2.6 10 10 11.3 340 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.33884E7 -3.3 -5.6 85 102600 202 1327 268 42 4 41 4742 28 4640 1449 240 2.1 10 10 11.3 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.3392E7 -3.3 -4.4 92 102600 143 1327 269 29 0 29 2826 0 2846 993 240 2.6 10 10 11.3 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.33956E7 -3.3 -5.0 88 102600 107 1326 268 24 0 24 2332 0 2348 793 230 1.5 10 10 11.3 340 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.33992E7 -2.8 -5.6 81 102600 96 1326 270 30 0 30 2913 0 2932 879 270 2.1 10 10 11.3 370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.34028E7 -2.8 -5.0 85 102600 111 1326 270 32 0 32 3111 0 3132 973 300 2.6 10 10 11.3 370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.34064E7 -3.3 -4.4 92 102600 152 1326 269 45 0 45 4390 0 4420 1372 330 2.6 10 10 9.7 370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.341E7 -3.3 -4.4 92 102600 215 1326 269 74 0 74 7260 0 7312 2177 40 1.5 10 10 9.7 460 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +1.34136E7 -2.8 -3.9 92 102600 297 1326 271 91 1 91 10002 43 10041 2966 100 3.1 10 10 11.3 150 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.34172E7 -2.8 -3.9 92 102600 391 1326 271 133 0 133 13253 0 13355 4376 100 3.1 10 10 11.3 150 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.34208E7 -2.8 -3.3 96 102600 493 1326 272 159 1 159 17671 72 17752 5651 90 4.1 10 10 4.8 150 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.34244E7 -2.2 -3.3 92 102500 593 1326 274 228 0 228 23119 0 23310 7895 90 4.1 10 10 4.8 120 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.3428E7 -0.6 -2.8 85 102500 687 1326 281 275 0 275 28105 0 28346 9768 100 3.6 10 10 8.0 120 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.34316E7 0.0 -2.8 82 102500 766 1326 284 286 1 285 32097 91 32170 10854 100 5.2 10 10 11.3 180 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.34352E7 0.6 -2.2 82 102400 827 1326 287 330 0 329 34124 0 34326 12451 90 4.1 10 10 11.3 370 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.34388E7 1.7 -2.8 73 102400 864 1326 291 339 0 338 35170 0 35385 13069 110 3.1 10 10 11.3 400 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.34424E7 1.7 -2.2 76 102400 875 1326 292 358 1 357 40209 97 40352 13593 110 3.6 10 10 11.3 310 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.3446E7 1.1 -1.7 82 102300 860 1326 290 329 1 328 37105 94 37219 12805 100 4.1 10 10 11.3 700 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.34496E7 1.1 -1.7 82 102300 819 1326 290 326 0 326 33683 0 33985 12294 90 4.1 10 10 11.3 700 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.34532E7 1.1 -1.7 82 102300 755 1326 290 289 0 288 29699 0 29856 10792 90 5.2 10 10 11.3 700 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.34568E7 0.6 -3.9 73 102200 673 1326 285 248 0 248 25322 0 25537 9099 90 5.2 10 10 11.3 610 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.34604E7 0.0 -2.8 82 102200 578 1326 284 226 1 225 24893 86 24916 7674 80 4.1 10 10 11.3 610 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.3464E7 0.0 -2.8 82 102200 477 1326 284 175 1 175 19214 75 19308 5819 90 5.7 10 10 11.3 520 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.34676E7 -0.6 -2.2 89 102100 376 1326 282 118 1 118 13020 57 13074 3982 80 5.2 10 10 3.2 520 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.34712E7 -1.1 -3.3 85 102100 284 1326 279 95 0 95 9375 0 9443 2946 50 6.2 10 10 6.4 460 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.34748E7 -1.7 -3.9 85 102200 205 1326 276 59 0 59 5782 0 5823 1865 60 6.2 10 10 11.3 370 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.34784E7 -2.2 -3.9 89 102100 145 1326 274 45 0 45 4386 0 4416 1334 50 6.2 10 10 11.3 400 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.3482E7 -2.8 -4.4 89 102000 109 1326 271 24 0 24 2332 0 2348 799 40 6.2 10 10 11.3 370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.34856E7 -3.3 -5.0 88 102100 98 1326 268 22 0 22 2136 0 2150 726 60 6.7 10 10 11.3 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.34892E7 -3.9 -5.6 88 102000 113 1326 265 26 0 26 2528 0 2545 856 40 6.7 10 10 11.3 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.34928E7 -5.0 -6.1 92 102000 154 1326 260 34 0 34 3319 0 3342 1150 40 6.7 10 10 6.4 150 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.34964E7 -5.6 -6.1 96 101900 217 1326 233 76 153 51 8494 2400 5716 1749 40 7.7 4 3 8.0 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.35E7 -6.1 -6.7 96 101900 298 1326 226 143 355 64 16199 11891 7271 2351 50 5.2 1 1 8.0 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.35036E7 -5.6 -6.7 92 101800 393 1326 227 209 484 66 24315 21310 7699 2679 50 6.7 2 1 8.0 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.35072E7 -5.0 -6.7 88 101800 494 1326 225 309 627 76 36470 33530 8995 3275 50 7.7 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.35108E7 -4.4 -6.7 85 101800 595 1326 227 395 686 87 47150 40951 10415 3936 50 8.8 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.35144E7 -4.4 -6.7 85 101800 688 1326 227 480 732 100 57717 46734 12063 4689 50 8.8 1 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.3518E7 -3.9 -6.1 85 101800 768 1326 229 555 776 106 67376 50713 12911 5141 50 8.8 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.35216E7 -3.3 -6.1 81 101700 828 1326 231 606 792 112 74003 52562 13724 5548 40 8.8 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.35252E7 -2.8 -6.1 78 101800 865 1326 233 642 806 116 78659 53906 14263 5813 50 7.7 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.35288E7 -2.8 -5.6 81 101800 877 1326 234 654 813 117 80213 54383 14401 5884 30 8.2 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.35324E7 -2.8 -5.6 81 101800 861 1326 234 638 800 118 78012 53643 14480 5891 40 7.7 1 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.3536E7 -2.2 -5.0 82 101800 820 1326 241 565 710 125 68326 48238 15172 6083 40 8.8 5 1 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.35396E7 -2.2 -5.0 82 101800 757 1326 241 504 673 119 60522 45108 14341 5649 50 9.3 3 1 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.35432E7 -2.2 -5.0 82 101800 675 1326 241 449 684 101 53797 43432 12140 4693 30 7.7 5 1 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.35468E7 -2.2 -5.0 82 101800 580 1326 241 355 580 102 41714 35880 12025 4452 40 7.7 5 1 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.35504E7 -2.8 -5.0 85 101800 479 1326 239 245 452 82 28631 24284 9611 3446 40 7.7 5 1 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.3554E7 -2.8 -5.0 85 101900 379 1326 239 198 440 73 22748 19556 8411 2860 50 6.7 5 1 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.35576E7 -3.3 -5.6 85 101900 286 1326 236 134 387 52 15359 10373 5975 1971 40 6.2 3 1 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.35612E7 -3.9 -5.6 88 101900 207 1326 230 87 289 43 9809 2689 4861 1516 40 6.2 1 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.35648E7 -4.4 -6.1 88 102000 148 1326 228 52 182 33 5806 0 3694 1105 50 5.7 1 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.35684E7 -5.6 -6.7 92 102000 111 1326 223 43 263 21 4871 0 2383 728 50 5.7 1 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.3572E7 -5.6 -7.8 85 102000 100 1326 222 37 242 19 4191 0 2156 656 50 5.7 1 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.35756E7 -6.1 -7.2 92 102000 115 1326 221 45 273 21 5112 0 2390 734 60 6.2 1 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.35792E7 -6.7 -7.8 92 102000 156 1326 219 68 355 27 7764 0 3089 971 60 5.2 1 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.35828E7 -6.7 -7.8 92 102000 219 1326 219 109 465 33 12631 3284 3831 1256 60 5.7 1 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.35864E7 -6.7 -8.3 88 102000 300 1326 218 168 572 39 19812 14054 4607 1581 70 5.2 1 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.359E7 -6.7 -7.8 92 102000 395 1326 219 245 675 45 29382 25880 5406 1936 60 4.6 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.35936E7 -5.6 -7.2 88 102100 496 1326 223 331 747 53 40179 36144 6446 2396 60 4.1 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.35972E7 -5.0 -6.7 88 102100 596 1326 225 418 796 60 44334 77276 9045 1370 70 4.1 0 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.36008E7 -3.9 -5.6 88 102100 690 1326 230 500 834 67 52972 82351 9905 1561 70 4.6 0 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.36044E7 -2.8 -5.0 85 102100 769 1326 234 573 862 73 60623 85942 10607 1747 70 5.2 0 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.3608E7 -1.7 -4.4 82 102100 830 1326 238 624 862 85 65774 86350 12123 1976 80 4.6 2 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.36116E7 -1.1 -3.9 82 102100 867 1326 241 655 851 99 81194 54628 12311 5051 70 4.1 4 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.36152E7 -1.7 -4.4 82 102100 878 1326 238 667 865 94 70105 86881 13218 2178 90 4.6 3 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.36188E7 -1.1 -3.9 82 102000 863 1326 246 602 772 100 74523 49655 12419 5089 70 5.2 6 1 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.36224E7 -1.1 -3.9 82 102000 822 1326 251 559 595 190 65465 45625 22356 8588 80 6.2 3 3 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.3626E7 -1.1 -3.9 82 102000 759 1326 251 528 696 130 62987 47635 15567 6095 80 6.2 3 3 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.36296E7 -1.7 -3.9 85 102000 677 1326 249 396 549 116 46955 36129 13803 5283 70 5.7 3 3 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.36332E7 -1.1 -3.9 82 102000 582 1326 253 390 623 117 45349 40254 13655 4982 90 6.2 4 4 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.36368E7 -2.2 -4.4 85 102000 481 1326 251 194 300 86 22597 16401 10048 3589 90 6.2 5 5 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.36404E7 -2.2 -3.3 92 102000 381 1326 254 179 244 109 19915 13431 12175 3824 90 6.2 6 6 16.1 3660 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.3644E7 -3.3 -4.4 92 102000 288 1326 249 114 154 80 12626 5848 8892 2696 90 6.2 6 6 16.1 3660 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.36476E7 -3.9 -4.4 96 102000 209 1326 241 101 355 46 11336 3963 5177 1600 90 5.2 3 3 1.6 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.36512E7 -5.0 -5.6 96 102000 150 1326 226 61 322 26 6954 0 2970 929 80 4.6 1 0 1.6 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.36548E7 -5.6 -6.1 96 102000 113 1325 224 44 266 21 4992 0 2387 732 80 4.1 1 0 2.4 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.36584E7 -6.7 -7.8 92 102000 102 1325 219 38 240 19 4312 0 2160 659 80 4.1 1 0 2.0 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.3662E7 -7.2 -8.3 92 102000 117 1325 217 46 274 22 5215 0 2499 765 80 5.2 1 0 6.4 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.36656E7 -7.8 -8.9 92 102100 157 1325 214 69 367 27 7889 0 3093 974 90 4.6 0 0 8.0 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.36692E7 -7.8 -8.9 92 102000 220 1325 214 110 474 32 12791 3385 3727 1227 80 4.6 0 0 3.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.36728E7 -6.7 -7.2 96 102000 302 1325 241 100 112 74 11211 4235 8323 2624 70 5.2 8 8 0.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.36764E7 -6.1 -7.2 92 102000 396 1325 228 170 322 74 19621 15045 8566 2947 80 5.7 2 2 1.2 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.368E7 -5.0 -6.1 92 102000 497 1325 237 263 405 112 30128 25017 12878 4479 90 5.2 6 4 1.2 150 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.36836E7 -3.9 -5.0 92 102100 598 1325 240 286 405 103 33710 25311 12181 4547 90 7.7 6 3 1.6 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.36872E7 -3.3 -4.4 92 102100 691 1325 241 441 623 117 52404 41254 13953 5368 90 6.7 7 2 1.6 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.36908E7 -2.2 -3.9 89 102000 770 1325 245 450 547 132 53734 37602 15822 6215 90 6.7 9 2 4.8 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.36944E7 -1.1 -3.9 82 102000 831 1325 246 573 713 125 69407 48260 15197 6115 90 8.8 8 1 11.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.3698E7 -1.1 -4.4 78 102000 868 1325 253 521 561 153 62528 40036 18439 7389 90 8.2 5 4 11.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.37016E7 -0.6 -3.9 79 102100 879 1325 272 287 63 245 33266 5232 28550 10758 90 7.7 10 9 11.3 2130 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.37052E7 0.0 -3.9 75 102000 864 1325 283 195 1 194 22963 77 22954 8944 80 8.8 10 10 11.3 2130 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.37088E7 0.0 -3.3 79 102000 823 1325 283 193 1 192 22589 77 22578 8668 90 9.3 10 10 11.3 1520 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.37124E7 0.0 -3.3 79 102000 760 1325 283 205 8 201 23643 631 23295 8601 90 9.3 10 10 11.3 1520 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.3716E7 0.0 -2.8 82 102000 678 1325 276 201 116 141 23478 8092 16536 6199 90 9.3 9 9 11.3 4570 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.37196E7 0.0 -2.2 85 102000 584 1325 271 258 194 173 29079 14580 19590 6642 90 8.8 8 8 11.3 4570 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.37232E7 0.0 -2.2 85 102000 483 1325 277 130 50 112 14829 3019 12823 4416 90 9.3 9 9 11.3 4570 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.37268E7 -0.6 -2.2 89 101900 383 1325 282 119 1 118 13159 58 13103 4031 90 9.8 10 10 11.3 210 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.37304E7 -0.6 -1.7 92 102000 290 1325 282 65 3 64 7334 94 7242 2322 110 9.3 10 10 11.3 180 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.3734E7 -1.1 -1.7 96 101900 211 1325 280 41 5 40 4656 39 4554 1447 110 10.3 10 10 1.6 150 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.37376E7 -1.1 -1.7 96 102000 152 1325 280 28 1 28 3175 0 3181 989 110 10.8 10 10 1.2 120 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.37412E7 -1.1 -1.7 96 101900 115 1325 280 19 0 19 1846 0 1859 679 110 9.3 10 10 0.8 120 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.37448E7 -1.1 -5.0 75 101900 104 1325 277 19 1 18 2168 0 2057 635 120 9.8 10 10 0.8 120 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.37484E7 -1.7 -2.8 92 101900 119 1325 277 20 1 20 2286 0 2289 713 110 9.3 10 10 2.4 150 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.3752E7 -1.1 -2.2 92 101900 159 1325 280 30 1 30 3400 0 3408 1061 110 10.3 10 10 2.0 150 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.37556E7 -1.1 -2.2 92 101900 222 1325 280 54 1 54 6017 17 6036 1840 110 10.8 10 10 2.0 150 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.37592E7 -1.1 -2.8 89 101900 303 1325 279 48 0 48 4745 0 4780 1889 110 10.3 10 10 1.6 120 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.37628E7 -0.6 -1.1 96 101800 397 1325 283 121 0 121 12056 0 12149 4193 110 9.3 10 10 8.0 150 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.37664E7 0.0 -1.1 92 101800 498 1325 286 145 1 144 16266 68 16224 5357 110 9.8 10 10 11.3 150 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.377E7 0.6 -0.6 92 101700 599 1325 265 280 304 143 32140 20988 16483 5896 110 10.8 9 5 11.3 1520 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.37736E7 0.6 -0.6 92 101700 692 1325 265 326 323 158 37820 23260 18409 6841 110 11.3 9 5 11.3 1520 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.37772E7 1.1 0.0 92 101800 771 1325 291 217 2 216 24917 160 24928 9135 130 6.2 10 10 3.2 150 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.37808E7 1.1 -0.6 89 101800 832 1325 291 238 3 236 27430 246 27343 10157 120 10.8 10 10 2.4 150 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.37844E7 1.7 0.0 89 101700 869 1325 294 304 10 298 34602 892 34119 12198 110 9.8 10 10 2.4 150 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.3788E7 1.1 0.0 92 101800 880 1325 277 365 139 272 41931 11882 31424 11585 110 11.3 10 8 4.8 150 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.37916E7 1.7 0.6 92 101700 865 1325 273 504 383 254 58060 31912 29421 10941 120 9.3 10 6 4.8 150 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.37952E7 1.1 0.0 92 101700 825 1325 267 484 438 212 56181 34450 24732 9353 120 9.3 7 5 3.2 3660 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.37988E7 1.7 0.0 89 101600 762 1325 270 385 359 179 44791 26830 20921 7900 110 9.3 5 5 3.2 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.38024E7 1.1 0.0 92 101600 680 1325 270 308 275 167 35488 20173 19328 7069 110 8.8 6 6 1.6 150 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.3806E7 1.1 0.0 92 101600 586 1325 267 332 418 147 37911 29055 16857 5946 100 9.3 7 5 1.6 150 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.38096E7 0.6 -0.6 92 101600 485 1325 263 262 426 106 30022 24978 12190 4246 120 8.8 8 4 1.6 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.38132E7 0.6 -0.6 92 101500 385 1325 263 174 253 101 19494 13218 11358 3660 110 9.3 8 4 1.6 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.38168E7 0.0 -0.6 96 101500 292 1325 261 126 289 63 14241 8930 7142 2303 110 8.8 8 4 1.6 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.38204E7 0.0 -0.6 96 101600 213 1325 261 83 146 60 9125 2700 6619 1930 120 7.2 8 4 1.6 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.3824E7 -0.6 -1.1 96 101600 153 1325 258 43 18 41 4731 0 4524 1303 110 6.2 8 4 1.6 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.38276E7 -0.6 -1.1 96 101600 117 1325 253 37 101 28 4108 0 3117 914 110 7.7 7 2 1.6 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.38312E7 -0.6 -1.1 96 101500 106 1325 258 30 66 25 3334 0 2785 817 110 8.8 8 4 1.6 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.38348E7 -1.1 -1.7 96 101600 121 1325 255 36 80 29 3996 0 3227 946 120 6.2 8 4 1.6 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.38384E7 -1.1 -1.1 100 101500 161 1325 256 50 58 43 5506 0 4750 1375 110 5.7 8 4 1.6 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.3842E7 -1.1 -1.7 96 101500 223 1325 253 84 180 54 9366 3144 6039 1846 100 6.7 6 3 1.6 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.38456E7 -0.6 -1.1 96 101500 304 1325 258 147 319 74 16478 11740 8322 2637 110 5.7 8 4 1.6 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.38492E7 0.0 -1.1 92 101500 399 1325 247 219 543 56 25825 21984 6619 2349 110 7.2 1 0 11.3 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.38528E7 0.6 -1.1 89 101500 499 1325 250 309 648 66 36882 32569 7897 2916 110 5.2 1 0 11.3 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.38564E7 1.1 -0.6 89 101500 600 1325 252 395 707 75 47688 39724 9078 3473 110 7.2 1 0 16.1 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.386E7 1.7 0.0 89 101500 693 1325 255 475 741 88 57658 44737 10713 4208 130 4.6 2 0 16.1 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.38636E7 2.2 0.0 85 101500 772 1325 261 540 792 79 57274 79291 11428 1802 120 6.7 1 1 16.1 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.38672E7 2.8 0.0 82 101500 833 1325 267 543 652 133 65438 44181 16090 6458 110 5.2 4 2 16.1 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.38708E7 2.8 0.0 82 101500 870 1325 264 593 748 101 73390 47459 12540 5152 120 4.1 3 1 11.3 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.38744E7 3.3 0.6 82 101500 881 1325 266 572 705 103 70804 44786 12792 5266 80 4.1 2 1 16.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.3878E7 2.8 0.6 86 101500 867 1325 259 622 791 104 76759 50353 12877 5282 100 5.2 2 0 16.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.38816E7 2.2 0.0 85 101500 826 1325 265 538 617 153 64075 43515 18299 7241 90 5.2 3 2 16.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.38852E7 2.2 0.0 85 101500 763 1325 270 395 392 169 46177 28708 19845 7565 90 5.2 4 4 16.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.38888E7 2.2 0.0 85 101500 682 1325 265 317 395 114 37647 25487 13587 5225 110 5.7 3 2 11.3 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.38924E7 2.2 0.0 85 101500 587 1325 270 297 385 127 34327 25279 14735 5338 100 3.6 7 4 2.4 3660 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.3896E7 0.0 -0.6 96 101500 487 1325 286 122 8 119 13857 494 13569 4635 80 3.6 10 10 1.6 90 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.38996E7 0.0 0.0 100 101500 386 1325 273 125 53 109 13923 2891 12189 3861 80 5.2 8 8 1.6 2440 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.39032E7 0.0 -0.6 96 101500 294 1325 272 107 93 86 11798 3724 9518 2855 80 5.2 8 8 1.6 3050 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.39068E7 0.0 -0.6 96 101500 215 1325 268 79 175 51 8811 2464 5705 1743 80 4.1 7 7 4.8 3050 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.39104E7 0.0 -0.6 96 101600 155 1325 265 48 53 42 5276 0 4630 1330 90 3.6 6 6 11.3 3050 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.3914E7 0.0 -0.6 96 101600 119 1325 263 38 68 32 4178 0 3528 1005 100 3.1 6 5 11.3 3050 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.39176E7 -0.6 -1.7 92 101600 108 1325 255 23 52 19 2618 0 2166 668 150 2.6 3 3 11.3 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.39212E7 -0.6 -1.7 92 101600 122 1325 253 44 152 30 4875 0 3333 973 110 4.1 2 2 11.3 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.39248E7 0.0 -1.1 92 101600 162 1325 258 68 275 35 7624 0 3934 1199 80 4.1 4 3 11.3 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.39284E7 0.0 -1.1 92 101600 224 1325 256 99 323 45 11209 4212 5108 1622 80 4.6 3 2 11.3 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.3932E7 0.6 -1.1 89 101600 305 1325 270 99 91 78 11055 3497 8740 2741 90 5.7 8 7 11.3 3050 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.39356E7 0.6 -1.1 89 101600 400 1325 260 211 447 76 24300 20686 8779 3023 80 5.2 5 3 11.3 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.39392E7 1.7 -0.6 85 101700 500 1325 265 219 342 90 25522 19025 10522 3789 80 4.1 5 3 16.1 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.39428E7 1.7 -0.6 85 101700 601 1325 267 230 185 146 26371 12882 16810 6000 80 3.6 5 4 16.1 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.39464E7 3.3 0.0 79 101700 694 1325 274 418 583 113 49792 37591 13508 5226 60 3.6 5 4 16.1 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.395E7 3.3 -0.6 76 101700 773 1325 273 375 423 129 44855 28538 15489 6109 50 4.6 5 4 16.1 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.39536E7 2.2 0.0 85 101800 834 1325 272 479 381 239 55165 31307 27671 10265 70 5.7 7 5 16.1 3050 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.39572E7 2.8 0.0 82 101800 871 1325 274 497 453 199 58434 34520 23510 9164 60 6.2 7 5 16.1 3050 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.39608E7 2.2 0.0 85 101800 882 1325 274 464 321 250 53688 26510 29084 10945 50 6.2 8 6 16.1 3050 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.39644E7 2.8 0.0 82 101800 868 1325 270 548 671 109 67417 43274 13455 5511 80 5.7 4 3 16.1 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.3968E7 2.8 0.6 86 101800 827 1325 275 384 290 203 44744 22384 23770 9072 60 5.2 5 5 16.1 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.39716E7 2.2 0.0 85 101800 764 1325 277 471 511 176 54903 37947 20609 7815 70 5.2 7 7 16.1 3050 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.39752E7 2.2 0.0 85 101900 683 1325 277 329 245 202 37361 19393 23053 8116 70 4.6 7 7 11.3 6100 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.39788E7 2.2 0.0 85 101900 589 1325 270 245 256 131 28258 17014 15169 5475 50 5.7 4 4 11.3 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.39824E7 1.7 0.0 89 101900 488 1325 275 175 93 141 19611 6208 15869 5221 50 5.7 7 7 11.3 3050 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.3986E7 1.7 0.0 89 102000 388 1325 268 195 408 76 22376 18365 8747 2986 60 5.2 4 4 11.3 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.39896E7 1.1 0.0 92 102000 295 1325 265 105 148 72 11754 5134 8087 2550 60 5.7 4 4 11.3 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.39932E7 0.6 -0.6 92 102000 216 1325 263 64 60 55 7100 990 6121 1842 70 4.1 4 4 11.3 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.39968E7 0.6 -0.6 92 102100 157 1325 275 28 33 24 3225 0 2769 884 80 3.1 9 8 11.3 3050 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.40004E7 0.6 -0.6 92 102200 120 1324 275 28 9 28 3116 0 3124 924 80 4.1 9 8 11.3 3050 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.4004E7 0.6 -0.6 92 102200 109 1324 281 23 2 22 2589 0 2482 751 100 3.1 9 9 11.3 3050 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.40076E7 0.6 -0.6 92 102200 123 1324 281 20 3 19 2301 0 2190 691 70 4.6 9 9 11.3 3050 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.40112E7 0.6 0.0 96 102200 163 1324 281 25 0 25 2439 0 2456 926 90 4.1 10 9 11.3 3050 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.40148E7 0.0 -0.6 96 102300 225 1324 268 72 46 64 7923 1040 7067 2075 80 3.1 8 7 11.3 3050 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.40184E7 0.6 -0.6 92 102300 306 1324 263 105 149 71 11819 5340 8017 2571 100 3.6 6 4 11.3 3050 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.4022E7 1.1 0.0 92 102300 400 1324 283 115 18 110 12855 1002 12345 3968 110 4.1 10 9 11.3 3050 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.40256E7 1.7 0.0 89 102400 501 1324 280 112 29 101 12935 1682 11705 4157 120 3.6 10 8 16.1 3050 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.40292E7 2.2 0.6 89 102400 601 1324 282 239 45 219 26512 3737 24422 7831 120 3.6 10 8 16.1 3050 9 999999999 18 0.0000 0 88 0.000 0.1 1.0 +1.40328E7 1.1 0.6 96 102400 694 1324 278 147 50 121 17419 3281 14391 5537 150 3.6 10 8 16.1 2440 9 999999999 18 0.0000 0 88 0.000 0.1 1.0 +1.40364E7 2.2 0.6 89 102500 774 1324 288 156 57 123 18726 3775 14819 5870 170 2.6 10 9 11.3 790 9 999999999 19 0.0000 0 88 0.000 0.1 1.0 +1.404E7 2.8 1.1 89 102500 834 1324 300 112 27 95 13844 1681 11779 4809 0 0.0 10 10 11.3 790 9 999999999 19 0.0000 0 88 0.000 0.1 1.0 +1.40436E7 2.2 1.1 93 102500 872 1324 297 133 3 131 16145 201 15963 6488 310 2.1 10 10 11.3 790 9 999999999 19 0.0000 0 88 0.000 0.1 1.0 +1.40472E7 2.2 1.1 93 102500 883 1324 297 252 3 250 29155 247 29081 10953 290 2.1 10 10 11.3 310 9 999999999 20 0.0000 0 88 0.000 0.1 1.0 +1.40508E7 1.7 0.6 92 102500 869 1324 294 257 8 252 29646 664 29228 10912 310 1.5 10 10 11.3 310 9 999999999 20 0.0000 0 88 0.000 0.1 1.0 +1.40544E7 1.7 0.6 92 102500 828 1324 294 181 7 176 21332 514 20837 8127 280 2.6 10 10 4.0 240 9 999999999 19 0.0000 0 88 0.000 0.1 1.0 +1.4058E7 1.1 0.6 96 102500 765 1324 292 193 6 190 22365 457 22122 8292 290 2.6 10 10 6.4 270 9 999999999 19 0.0000 0 88 0.000 0.1 1.0 +1.40616E7 1.1 0.6 96 102500 684 1324 292 185 2 184 21170 152 21155 7618 330 5.7 10 10 8.0 430 9 999999999 18 0.0000 0 88 0.000 0.1 1.0 +1.40652E7 1.1 0.6 96 102500 590 1324 292 170 1 170 19206 74 19294 6617 330 3.6 10 10 9.7 430 9 999999999 17 0.0000 0 88 0.000 0.1 1.0 +1.40688E7 1.1 0.6 96 102500 489 1324 292 86 2 85 10039 107 9953 3585 290 3.1 10 10 9.7 430 9 999999999 16 0.0000 0 88 0.000 0.1 1.0 +1.40724E7 1.1 0.6 96 102500 389 1324 292 63 1 63 7340 41 7359 2573 290 2.6 10 10 8.0 310 9 999999999 15 0.0000 0 88 0.000 0.1 1.0 +1.4076E7 1.1 0.6 96 102500 297 1324 292 41 0 41 4047 0 4077 1646 320 4.1 10 10 3.2 310 9 999999999 15 0.0000 0 88 0.000 0.1 1.0 +1.40796E7 1.1 0.6 96 102500 218 1324 292 34 0 34 3332 0 3356 1287 330 4.1 10 10 8.0 1520 9 999999999 14 0.0000 0 88 0.000 0.1 1.0 +1.40832E7 0.6 0.6 100 102600 158 1324 290 42 0 42 4094 0 4123 1344 280 4.1 10 10 9.7 310 9 999999999 13 0.0000 0 88 0.000 0.1 1.0 +1.40868E7 0.6 0.6 100 102600 122 1324 276 35 5 34 3836 0 3737 1056 300 3.1 10 8 6.4 60 9 999999999 13 0.0000 0 88 0.000 0.1 1.0 +1.40904E7 0.6 0.0 96 102600 110 1324 275 27 6 26 3001 0 2897 852 350 2.6 10 8 1.6 6100 9 999999999 12 0.0000 0 88 0.000 0.1 1.0 +1.4094E7 0.6 0.0 96 102500 125 1324 275 27 3 27 3022 0 3029 911 30 3.6 10 8 3.2 6100 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.40976E7 0.6 0.0 96 102500 164 1324 289 36 33 32 4070 0 3626 1128 60 2.6 10 10 11.3 6100 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.41012E7 0.6 0.6 100 102600 226 1324 290 44 10 42 5013 115 4796 1544 260 3.1 10 10 0.8 120 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.41048E7 0.6 0.6 100 102500 307 1324 290 67 1 67 7577 34 7601 2468 250 3.6 10 10 0.4 120 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.41084E7 0.6 0.6 100 102500 401 1324 290 81 0 81 8070 0 8132 3185 230 2.1 10 10 0.2 120 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.4112E7 1.1 0.6 96 102500 502 1324 292 103 3 102 11887 174 11813 4193 170 3.1 10 10 6.4 7620 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.41156E7 1.7 1.1 96 102500 602 1324 295 146 6 144 16757 413 16597 5949 200 2.1 10 10 11.3 2130 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.41192E7 2.8 1.1 89 102500 695 1324 291 244 126 177 28064 9398 20452 7474 140 2.6 10 9 11.3 2130 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.41228E7 2.8 1.1 89 102500 774 1324 275 418 345 216 48020 27489 24940 9165 140 3.1 10 5 11.3 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.41264E7 3.3 1.7 89 102400 835 1324 280 434 259 271 49477 22258 31069 11197 150 3.6 10 6 11.3 7620 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.413E7 4.4 2.2 86 102400 872 1324 276 575 527 228 66870 41756 26654 10176 160 3.1 10 2 11.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.41336E7 4.4 2.2 86 102400 884 1324 272 590 631 168 70398 45008 20135 8055 160 3.6 5 1 11.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.41372E7 4.4 2.8 89 102300 869 1324 273 579 618 173 68755 44442 20636 8192 180 4.1 5 1 11.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.41408E7 3.3 2.8 96 102300 829 1324 304 221 3 219 25593 236 25491 9617 170 4.1 10 10 0.4 60 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.41444E7 3.3 3.3 100 102300 767 1324 279 412 368 199 47541 28166 23075 8589 140 4.1 5 5 0.8 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.4148E7 2.8 2.2 96 102300 685 1324 293 251 112 193 28607 8616 22104 7888 150 4.1 9 9 1.6 1520 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.41516E7 3.3 2.8 96 102200 591 1324 304 107 7 104 12566 423 12255 4568 160 3.1 10 10 6.4 310 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.41552E7 3.3 2.2 93 102200 491 1324 303 127 7 125 14375 437 14206 4828 150 3.6 10 10 8.0 310 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.41588E7 3.3 2.8 96 102200 391 1324 304 114 2 114 12660 111 12712 4005 120 2.1 10 10 9.7 340 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.41624E7 2.8 2.2 96 102100 298 1324 286 70 49 59 7968 1443 6735 2215 100 3.1 8 8 11.3 310 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.4166E7 2.8 1.7 93 102100 219 1324 300 49 37 43 5551 377 4884 1554 110 4.1 10 10 11.3 150 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.41696E7 1.1 0.6 96 102100 159 1324 258 53 128 37 5903 0 4132 1240 110 4.1 5 1 16.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.41732E7 1.1 0.6 96 102100 123 1324 270 34 16 33 3739 0 3639 1041 80 3.6 8 6 16.1 3050 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.41768E7 1.1 0.6 96 102000 111 1324 270 34 22 32 3718 0 3509 980 90 3.6 9 6 16.1 6100 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.41804E7 0.6 0.0 96 102000 126 1324 275 23 10 22 2620 0 2511 781 70 2.6 9 8 16.1 6100 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.4184E7 1.7 0.6 92 102000 165 1324 276 60 59 52 6520 364 5670 1565 80 3.1 9 7 16.1 3960 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.41876E7 1.7 0.6 92 101900 227 1324 276 69 43 62 7618 927 6868 2044 80 3.1 9 7 16.1 6100 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.41912E7 2.8 1.7 93 101900 308 1324 281 92 60 78 10277 2275 8743 2755 70 3.1 9 7 16.1 3960 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.41948E7 2.8 1.1 89 101800 402 1324 275 182 295 92 20647 14856 10473 3509 100 3.1 7 5 16.1 3960 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.41984E7 2.2 1.1 93 101800 502 1324 297 87 4 85 10186 216 9983 3624 110 4.1 10 10 11.3 1520 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.4202E7 3.3 1.7 89 101800 602 1324 303 163 5 161 18542 359 18396 6455 110 4.1 10 10 11.3 1520 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.42056E7 3.9 1.7 86 101800 695 1324 291 358 265 219 40477 21526 24889 8667 120 3.1 10 8 11.3 1520 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.42092E7 3.9 1.7 86 101800 775 1324 291 358 243 215 41141 19276 24833 9141 90 2.6 10 8 11.3 1520 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.42128E7 6.1 2.8 80 101700 835 1324 296 449 395 199 52447 29932 23358 8986 110 2.6 10 7 11.3 1520 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.42164E7 6.1 3.3 83 101700 873 1324 308 321 61 281 36709 5227 32320 11794 80 3.1 10 9 11.3 1520 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.422E7 4.4 2.2 86 101700 885 1324 299 367 60 326 41569 5492 37152 13063 20 4.1 10 9 11.3 1520 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.42236E7 5.0 2.2 83 101700 870 1324 302 368 124 287 42008 10781 32952 11935 30 4.1 10 9 11.3 2130 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.42272E7 5.0 2.8 86 101700 830 1324 288 499 490 192 58399 36699 22578 8714 50 4.6 7 6 16.1 6100 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.42308E7 3.9 1.7 86 101700 767 1324 283 415 433 164 48657 31142 19313 7416 30 6.2 8 6 16.1 6100 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.42344E7 3.3 1.1 86 101700 686 1324 275 389 456 152 45213 32155 17742 6621 30 5.7 7 4 16.1 6100 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.4238E7 3.9 2.2 89 101700 592 1324 279 282 346 127 32618 22510 14747 5366 40 5.7 7 4 16.1 6100 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.42416E7 3.3 1.7 89 101600 492 1324 276 249 299 138 27973 19624 15569 5178 50 5.7 10 4 16.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.42452E7 2.8 1.1 89 101700 392 1324 273 181 261 104 20273 13874 11693 3779 50 5.7 10 4 16.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.42488E7 2.8 1.1 89 101700 299 1324 275 118 172 79 13129 6460 8820 2738 40 5.7 8 5 16.1 6100 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.42524E7 2.8 1.1 89 101600 220 1324 278 80 72 68 8735 1685 7452 2125 40 5.7 8 6 16.1 6100 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.4256E7 2.8 1.1 89 101600 161 1324 285 29 30 26 3326 0 2987 951 40 5.7 8 8 16.1 3050 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.42596E7 2.2 0.6 89 101600 124 1324 282 35 31 32 3862 0 3541 1024 40 6.2 8 8 16.1 3050 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.42632E7 1.7 0.0 89 101600 112 1324 280 20 12 19 2285 0 2174 676 50 6.2 8 8 16.1 3050 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.42668E7 1.7 0.0 89 101600 126 1324 280 34 39 30 3779 0 3343 987 50 6.2 8 8 16.1 3050 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.42704E7 0.6 0.0 96 101500 166 1324 289 34 5 34 3830 0 3839 1186 50 6.7 10 10 16.1 3050 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.4274E7 0.6 0.0 96 101500 228 1324 271 64 50 56 7130 946 6257 1914 60 6.7 10 7 1.2 1220 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.42776E7 0.6 0.0 96 101500 308 1324 289 89 52 77 9960 1985 8646 2734 60 6.2 10 10 0.8 60 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.42812E7 0.6 0.0 96 101500 402 1324 281 127 72 105 14261 3917 11835 3858 60 6.7 10 9 0.8 60 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.42848E7 0.6 0.0 96 101500 503 1324 275 129 10 125 14655 635 14257 4892 60 6.2 10 8 1.2 1520 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.42884E7 1.1 0.6 96 101500 603 1324 292 143 6 141 16448 410 16285 5863 60 6.7 10 10 1.6 60 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.4292E7 1.1 0.6 96 101500 696 1324 292 180 6 177 20711 448 20460 7482 70 6.7 10 10 1.2 60 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.42956E7 1.1 0.6 96 101500 775 1324 292 204 4 201 23580 310 23347 8710 70 6.7 10 10 1.2 90 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.42992E7 1.7 1.1 96 101500 836 1324 295 235 9 230 27155 725 26717 10013 70 7.2 10 10 1.2 120 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.43028E7 1.7 1.1 96 101400 873 1324 295 245 6 241 28385 488 28071 10609 80 7.7 10 10 1.2 120 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.43064E7 2.2 1.1 93 101400 885 1324 297 259 8 253 29951 660 29418 11067 80 7.7 10 10 1.2 120 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.431E7 1.7 1.1 96 101400 871 1324 295 262 4 259 30169 335 29989 11147 70 7.2 10 10 1.2 120 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.43136E7 1.7 1.1 96 101400 831 1324 295 260 5 257 29755 422 29574 10783 70 7.2 10 10 1.2 150 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.43172E7 1.1 0.6 96 101400 768 1324 292 260 0 260 26740 0 26977 10329 70 7.7 10 10 1.2 150 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.43208E7 1.1 0.6 96 101300 687 1324 292 225 1 225 25353 83 25486 8753 70 7.2 10 10 1.2 150 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.43244E7 0.6 0.0 96 101300 593 1324 289 211 0 211 21382 0 21560 7604 70 7.7 10 10 1.2 150 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.4328E7 0.6 0.0 96 101300 493 1324 289 166 0 166 16676 0 16809 5821 70 7.7 10 10 1.2 150 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.43316E7 0.0 -0.6 96 101300 393 1324 286 130 1 130 14307 61 14370 4353 80 7.7 10 10 1.2 150 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.43352E7 -0.6 -0.6 100 101300 300 1324 284 92 0 92 9088 0 9156 3021 90 6.2 10 10 1.2 180 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.43388E7 -1.1 -1.1 100 101300 221 1324 281 63 1 63 6931 22 6955 2038 80 7.2 10 10 1.2 180 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.43424E7 -1.1 -1.7 96 101200 162 1324 280 39 1 39 4334 0 4346 1294 80 8.2 10 10 1.2 150 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.4346E7 -1.7 -2.2 96 101200 125 1323 277 32 0 32 3113 0 3134 1027 70 7.2 10 10 0.8 150 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.43496E7 -1.7 -2.2 96 101200 113 1323 277 26 0 26 2527 0 2544 860 80 6.2 10 10 0.8 150 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.43532E7 -1.7 -3.3 89 101200 127 1323 276 29 0 29 2823 0 2842 966 70 6.2 10 10 0.8 150 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.43568E7 -1.7 -2.2 96 101200 166 1323 277 37 0 37 3613 0 3638 1264 80 6.2 10 10 0.8 150 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.43604E7 -2.2 -2.8 96 101100 228 1323 275 32 0 32 3143 0 3165 1242 60 6.2 10 10 2.4 150 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.4364E7 -1.7 -2.2 96 101100 309 1323 277 45 0 45 4451 0 4484 1804 70 5.7 10 10 3.2 150 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.43676E7 -1.7 -2.2 96 101100 403 1323 277 62 1 62 7266 43 7284 2572 60 6.2 10 10 3.2 150 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.43712E7 -1.1 -1.7 96 101100 503 1323 280 84 0 84 8450 0 8518 3592 80 6.2 10 10 2.4 120 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.43748E7 -1.1 -1.7 96 101100 603 1323 280 119 1 119 13882 65 13933 5142 90 5.7 10 10 2.4 120 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.43784E7 -1.1 -1.1 100 101100 696 1323 281 237 0 237 24237 0 24446 9119 70 5.7 10 10 0.8 90 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.4382E7 -0.6 -0.6 100 101000 775 1323 284 244 0 243 25119 0 25238 9952 80 6.7 10 10 0.8 90 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.43856E7 -0.6 -1.1 96 101000 836 1323 283 302 1 302 34168 91 34371 12003 80 6.2 10 10 0.8 90 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.43892E7 0.0 -0.6 96 101000 874 1323 286 298 1 297 33975 89 34060 12238 80 6.2 10 10 0.8 90 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.43928E7 0.0 -0.6 96 101000 886 1323 286 283 1 282 32465 87 32536 11934 80 6.2 10 10 0.8 120 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.43964E7 0.0 -0.6 96 101000 871 1323 286 284 1 283 32492 87 32564 11842 60 6.2 10 10 0.8 120 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.44E7 0.0 -0.6 96 100900 831 1323 286 262 1 261 29966 85 30017 10903 70 6.2 10 10 0.8 120 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.44036E7 0.0 -0.6 96 100900 769 1323 286 266 1 265 30050 87 30105 10462 90 8.2 10 10 0.8 120 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.44072E7 0.0 -0.6 96 100900 688 1323 286 222 1 222 25056 83 25186 8689 70 7.7 10 10 0.8 120 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.44108E7 -0.6 -0.6 100 100800 594 1323 284 177 0 177 17941 0 18091 6836 70 6.2 10 10 0.8 120 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.44144E7 -0.6 -0.6 100 100800 494 1323 284 137 1 136 15429 66 15381 5142 80 7.2 10 10 0.8 120 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.4418E7 -0.6 -0.6 100 100800 394 1323 284 118 1 118 13096 58 13150 4118 80 6.2 10 10 0.8 120 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.44216E7 -0.6 -0.6 100 100800 301 1323 284 76 1 76 8494 37 8523 2679 80 6.2 10 10 0.8 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.44252E7 -1.1 -1.1 100 100800 222 1323 281 57 0 57 5593 0 5633 1916 80 6.2 10 10 0.8 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.44288E7 -0.6 -1.1 96 100800 162 1323 283 22 0 22 2147 0 2162 832 90 6.2 10 10 2.4 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.44324E7 -0.6 -0.6 100 100800 125 1323 284 20 0 20 1945 0 1958 724 100 6.7 10 10 2.4 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.4436E7 -0.6 -0.6 100 100800 114 1323 284 14 0 14 1360 0 1369 526 90 6.2 10 10 1.6 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.44396E7 -0.6 -1.7 92 100800 128 1323 282 29 0 29 2822 0 2841 968 100 6.7 10 10 6.4 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.44432E7 -0.6 -1.1 96 100700 167 1323 283 39 0 39 3808 0 3834 1314 90 7.2 10 10 6.4 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.44468E7 -0.6 -1.1 96 100700 229 1323 283 55 0 55 5400 0 5438 1895 90 7.2 10 10 6.4 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.44504E7 0.0 -0.6 96 100700 309 1323 268 102 61 88 11296 2590 9782 2992 90 6.7 10 7 4.8 640 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.4454E7 0.0 -0.6 96 100600 403 1323 286 126 2 126 13945 121 14004 4346 80 6.2 10 10 4.8 270 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.44576E7 0.0 -0.6 96 100600 503 1323 286 132 2 131 14945 130 14892 5063 80 7.7 10 10 4.8 6100 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.44612E7 0.6 -1.7 85 100600 603 1323 287 169 3 168 19182 222 19155 6659 80 7.2 10 10 11.3 6100 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.44648E7 1.1 -1.7 82 100600 696 1323 290 188 10 183 21591 764 21115 7671 90 7.2 10 10 8.0 370 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.44684E7 0.6 -2.2 82 100600 775 1323 287 221 6 218 25402 485 25185 9242 80 7.2 10 10 11.3 430 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.4472E7 0.6 -1.1 89 100600 836 1323 288 262 2 261 29995 171 30046 10943 70 8.2 10 10 8.0 370 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.44756E7 0.6 -1.7 85 100500 874 1323 287 279 6 275 32017 519 31737 11642 70 8.8 10 10 11.3 2440 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.44792E7 1.7 -1.1 82 100500 886 1323 293 305 3 303 34796 269 34773 12511 80 7.7 10 10 11.3 2440 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.44828E7 1.7 -1.1 82 100500 872 1323 293 313 2 311 35548 182 35533 12579 90 8.2 10 10 11.3 2440 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.44864E7 1.1 -0.6 89 100500 832 1323 291 273 1 273 31116 87 31292 11237 60 7.2 10 10 11.3 240 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.449E7 1.7 -1.1 82 100500 770 1323 285 260 76 216 29868 6109 24939 9142 80 9.3 10 9 11.3 270 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.44936E7 0.6 -1.7 85 100400 689 1323 280 296 131 228 33351 10978 25825 8844 60 7.7 10 9 11.3 310 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.44972E7 0.0 -1.1 92 100400 595 1323 286 150 28 137 17274 1905 15841 5703 70 8.8 10 10 11.3 310 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.45008E7 0.6 -1.1 89 100400 495 1323 288 105 1 105 12079 59 12122 4266 70 8.8 10 10 11.3 310 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.45044E7 0.0 -1.1 92 100400 395 1323 286 85 8 83 9712 384 9514 3226 70 7.2 10 10 11.3 310 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.4508E7 0.0 -1.1 92 100400 302 1323 286 62 2 61 7058 64 6964 2287 60 7.7 10 10 11.3 310 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.45116E7 0.0 -1.1 92 100400 223 1323 286 42 1 42 4782 12 4793 1538 70 8.8 10 10 11.3 310 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.45152E7 0.0 -1.1 92 100400 163 1323 286 33 1 33 3722 0 3730 1153 80 6.7 10 10 11.3 270 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.45188E7 0.0 -1.1 92 100400 126 1323 286 23 0 23 2237 0 2253 811 60 7.2 10 10 11.3 270 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.45224E7 -0.6 -1.1 96 100400 114 1323 283 24 2 24 2696 0 2702 815 70 7.2 10 10 11.3 270 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.4526E7 -0.6 -2.2 89 100400 128 1323 282 28 1 28 3136 0 3143 946 70 7.7 10 10 11.3 270 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.45296E7 -0.6 -1.7 92 100400 167 1323 282 45 0 44 4394 0 4327 1427 70 8.2 10 10 11.3 180 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.45332E7 -0.6 -1.7 92 100400 229 1323 282 60 0 60 5892 0 5934 2012 50 7.2 10 10 11.3 180 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.45368E7 -0.6 -1.1 96 100400 309 1323 283 86 1 86 9544 42 9579 2950 60 7.7 10 10 11.3 180 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.45404E7 -0.6 -1.1 96 100300 403 1323 283 79 1 79 9083 47 9111 3132 60 8.2 10 10 1.2 120 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.4544E7 -0.6 -1.1 96 100400 503 1323 283 90 0 90 9053 0 9125 3803 60 7.7 10 10 2.4 150 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.45476E7 0.0 -0.6 96 100400 603 1323 286 130 1 129 15067 66 15009 5483 70 7.7 10 10 2.4 150 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.45512E7 0.0 -0.6 96 100400 696 1323 286 246 2 245 27588 172 27626 9308 70 7.7 10 10 11.3 150 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.45548E7 0.6 -0.6 92 100400 775 1323 289 262 1 261 29673 87 29724 10428 60 7.7 10 10 11.3 150 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.45584E7 0.6 -0.6 92 100400 836 1323 289 299 1 299 33857 90 34057 11940 70 7.2 10 10 11.3 150 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.4562E7 1.1 -0.6 89 100400 874 1323 291 286 2 285 32720 175 32794 11925 70 7.2 10 10 11.3 150 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.45656E7 1.1 0.0 92 100400 886 1323 291 300 0 300 31172 0 31458 12436 60 7.2 10 10 11.3 150 9 999999999 11 0.0000 0 88 0.000 0.1 1.0 +1.45692E7 1.1 0.0 92 100400 872 1323 291 288 1 287 32915 88 32991 11963 70 8.2 10 10 11.3 180 9 999999999 11 0.0000 0 88 0.000 0.1 1.0 +1.45728E7 1.1 -0.6 89 100400 832 1323 291 283 1 282 32175 88 32246 11480 60 8.8 10 10 11.3 240 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.45764E7 1.1 -0.6 89 100400 770 1323 291 268 1 267 30267 88 30324 10526 80 8.2 10 10 11.3 240 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.458E7 1.1 -0.6 89 100400 689 1323 291 137 0 137 14002 0 14122 6117 80 7.2 10 10 11.3 210 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.45836E7 0.6 -0.6 92 100400 596 1323 289 113 1 112 13223 63 13153 4874 60 7.2 10 10 4.0 180 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.45872E7 0.6 0.0 96 100400 495 1323 289 171 0 171 17183 0 17321 5948 70 6.7 10 10 4.0 180 9 999999999 14 0.0000 0 88 0.000 0.1 1.0 +1.45908E7 0.6 -0.6 92 100400 395 1323 289 119 0 119 11856 0 11947 4153 40 6.2 10 10 4.0 150 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.45944E7 0.6 0.0 96 100400 303 1323 289 90 1 90 9925 42 9963 3000 50 6.2 10 10 0.8 150 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.4598E7 0.6 0.6 100 100400 224 1323 290 63 1 63 6938 22 6962 2052 70 5.7 10 10 0.8 120 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.46016E7 0.6 0.0 96 100400 163 1323 289 44 0 44 4293 0 4323 1413 60 6.2 10 10 0.8 120 9 999999999 16 0.0000 0 88 0.000 0.1 1.0 +1.46052E7 0.0 0.0 100 100400 126 1323 287 28 0 28 2723 0 2741 942 60 5.2 10 10 1.6 150 9 999999999 17 0.0000 0 88 0.000 0.1 1.0 +1.46088E7 0.0 0.0 100 100400 114 1323 287 30 0 30 2914 0 2934 955 60 5.2 10 10 0.4 90 9 999999999 17 0.0000 0 88 0.000 0.1 1.0 +1.46124E7 0.6 -0.6 92 100400 128 1323 289 30 0 30 2918 0 2938 995 80 5.2 10 10 3.2 150 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.4616E7 0.6 0.0 96 100400 167 1323 289 27 0 27 2635 0 2654 994 40 5.2 10 10 1.6 150 9 999999999 18 0.0000 0 88 0.000 0.1 1.0 +1.46196E7 0.6 0.0 96 100400 229 1323 289 57 0 57 5595 0 5635 1945 50 4.1 10 10 1.6 150 9 999999999 18 0.0000 0 88 0.000 0.1 1.0 +1.46232E7 0.6 0.6 100 100400 309 1323 290 44 0 44 4349 0 4381 1772 60 3.6 10 10 3.2 150 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.46268E7 1.1 0.6 96 100400 403 1323 292 114 0 114 11361 0 11449 4084 60 3.1 10 10 11.3 150 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.46304E7 1.7 1.1 96 100400 503 1323 295 138 1 137 15561 66 15514 5225 60 3.1 10 10 11.3 150 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.4634E7 1.7 0.6 92 100400 603 1323 294 179 1 179 20202 75 20298 6953 120 2.1 10 10 11.3 310 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.46376E7 1.7 0.6 92 100500 696 1323 294 212 0 211 21671 0 21755 8473 360 2.6 10 10 11.3 240 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.46412E7 2.2 0.6 89 100500 775 1323 297 265 1 264 29976 87 30031 10505 330 2.1 10 10 11.3 980 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.46448E7 2.2 0.6 89 100500 836 1323 297 279 1 278 31769 87 31836 11411 270 4.1 10 10 11.3 2440 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.46484E7 1.7 0.6 92 100600 874 1323 294 279 1 278 31975 86 32042 11733 270 4.6 10 10 11.3 2440 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.4652E7 1.7 0.6 92 100600 886 1323 294 306 0 305 31790 0 31978 12571 290 3.6 10 10 11.3 1070 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.46556E7 1.7 0.6 92 100600 872 1323 294 280 1 279 32070 86 32139 11747 270 5.2 10 10 11.3 700 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.46592E7 1.7 0.6 92 100700 833 1323 286 327 127 247 37567 10546 28530 10518 260 6.2 10 9 11.3 610 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.46628E7 2.2 0.6 89 100700 770 1323 275 453 439 197 52412 33839 22903 8561 270 6.2 9 6 11.3 460 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.46664E7 1.7 0.6 92 100700 690 1323 294 236 8 232 26546 670 26235 8955 270 5.7 10 10 11.3 370 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.467E7 1.7 0.6 92 100700 596 1323 276 226 62 198 25262 4905 22243 7361 260 6.2 10 7 4.0 210 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.46736E7 1.7 0.6 92 100700 496 1323 260 282 527 84 33016 28362 9864 3575 270 6.7 1 1 11.3 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.46772E7 1.7 0.6 92 100800 396 1323 260 206 441 74 23755 19889 8558 2956 250 6.2 1 1 11.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.46808E7 1.1 0.0 92 100800 303 1323 261 135 295 67 15257 10035 7595 2460 250 6.2 2 2 11.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.46844E7 0.6 0.0 96 100900 224 1323 275 54 26 50 6064 403 5631 1758 250 6.2 9 8 11.3 1130 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.4688E7 0.6 0.0 96 100800 164 1323 289 38 0 38 3708 0 3734 1282 240 4.1 10 10 11.3 980 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.46916E7 0.6 0.0 96 100900 127 1322 289 20 2 20 2299 0 2303 727 240 4.1 10 10 11.3 980 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.46952E7 0.6 0.0 96 100900 115 1322 289 19 1 19 2175 0 2179 681 240 4.1 10 10 9.7 980 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.46988E7 0.0 -1.7 89 100900 128 1322 262 24 12 23 2732 0 2623 816 240 5.2 8 5 11.3 2440 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.47024E7 0.0 -0.6 96 100800 167 1322 272 31 13 30 3532 0 3426 1082 250 7.7 8 8 3.2 150 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.4706E7 0.0 -1.1 92 100800 229 1322 262 62 116 42 7078 1477 4806 1553 260 6.7 5 5 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.47096E7 0.0 -0.6 96 100800 309 1322 286 71 18 67 8042 628 7611 2480 240 4.1 10 10 8.0 150 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.47132E7 0.6 0.0 96 100800 402 1322 289 66 1 66 7695 44 7715 2711 240 5.2 10 10 11.3 150 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.47168E7 0.6 -0.6 92 100900 502 1322 261 280 363 142 31497 24506 16042 5353 230 4.1 9 3 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.47204E7 0.6 -0.6 92 100900 602 1322 255 388 609 110 45535 38318 12955 4828 230 4.1 7 1 11.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.4724E7 1.1 -0.6 89 100900 695 1322 260 439 527 162 50897 38286 18864 7009 230 4.6 10 2 11.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.47276E7 1.1 -1.1 85 100900 775 1322 262 496 535 182 57822 40300 21315 8092 240 4.6 10 3 11.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.47312E7 1.1 -0.6 89 100900 836 1322 263 482 456 193 56514 34665 22737 8789 240 5.2 10 3 11.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.47348E7 1.7 -0.6 85 100900 874 1322 272 376 176 260 43337 14814 30133 11211 240 7.2 10 6 11.3 7620 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.47384E7 1.7 0.0 89 100900 886 1322 266 544 484 219 63675 37987 25764 9966 240 4.1 10 3 11.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.4742E7 1.7 0.0 89 100800 872 1322 260 605 660 169 72089 47688 20227 8058 230 5.2 10 1 11.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.47456E7 1.7 0.0 89 100800 833 1322 268 497 333 287 56428 29515 32774 11617 240 5.2 10 4 11.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.47492E7 1.7 -0.6 85 100800 771 1322 265 505 570 172 59080 42047 20213 7724 240 4.6 10 3 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.47528E7 2.2 -1.1 79 100700 690 1322 267 424 491 168 48974 36228 19492 7176 230 4.6 10 3 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.47564E7 1.7 -1.7 79 100700 596 1322 266 337 317 194 37761 25044 21845 7275 240 4.1 10 4 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.476E7 2.2 -2.2 73 100700 496 1322 268 211 170 147 23643 11722 16544 5437 230 4.6 10 4 11.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.47636E7 1.7 -2.2 76 100700 396 1322 266 185 311 91 21002 15789 10366 3466 230 4.6 10 4 11.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.47672E7 1.7 -1.7 79 100700 303 1322 268 133 157 97 14590 7168 10683 3144 230 4.1 10 5 11.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.47708E7 1.7 -2.2 76 100600 224 1322 268 72 106 54 8041 1927 6049 1859 210 5.2 10 5 11.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.47744E7 1.1 -1.7 82 100600 164 1322 264 58 67 49 6340 327 5374 1515 220 4.1 8 4 11.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.4778E7 1.1 -1.7 82 100600 127 1322 264 47 134 34 5178 0 3756 1079 230 5.2 8 4 11.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.47816E7 1.1 -2.2 79 100600 115 1322 281 22 18 21 2501 0 2391 738 220 5.2 9 9 11.3 3050 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.47852E7 1.1 -2.2 79 100500 128 1322 281 42 29 40 4569 0 4366 1197 230 4.1 9 9 11.3 3050 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.47888E7 1.1 -1.1 85 100500 167 1322 290 42 3 42 4657 2 4671 1386 240 3.1 10 10 11.3 3350 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.47924E7 1.7 -0.6 85 100500 228 1322 293 48 6 47 5430 90 5330 1693 230 4.1 10 10 11.3 3350 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.4796E7 1.7 0.0 89 100500 309 1322 294 71 1 70 8012 36 7923 2561 220 4.1 10 10 11.3 1830 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.47996E7 1.1 0.0 92 100400 402 1322 291 115 5 113 12841 284 12668 4060 240 4.1 10 10 11.3 1520 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.48032E7 1.7 0.0 89 100400 502 1322 294 123 2 122 14004 126 13945 4812 230 3.6 10 10 11.3 1520 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.48068E7 2.2 0.0 85 100400 602 1322 296 195 7 192 21886 547 21655 7274 210 6.2 10 10 11.3 980 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.48104E7 2.8 0.0 82 100300 695 1322 299 203 1 203 23112 79 23227 8253 220 7.2 10 10 11.3 980 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.4814E7 2.2 0.0 85 100300 775 1322 296 251 1 250 28522 85 28564 10146 220 6.7 10 10 11.3 880 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.48176E7 2.8 -1.1 76 100300 836 1322 297 171 1 171 20242 73 20332 7985 230 5.2 10 10 11.3 790 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.48212E7 3.3 -0.6 76 100200 874 1322 300 178 1 177 21143 73 21120 8374 230 4.6 10 10 11.3 880 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.48248E7 3.9 1.7 86 100200 886 1322 305 178 1 177 21173 73 21150 8425 230 3.6 10 10 11.3 880 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.48284E7 3.3 2.2 93 100200 872 1322 303 186 1 185 21996 74 21980 8672 230 3.6 10 10 11.3 370 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.4832E7 3.3 1.7 89 100100 833 1322 303 176 1 175 20771 73 20747 8123 250 4.1 10 10 11.3 430 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.48356E7 2.8 1.7 93 100100 771 1322 300 155 1 154 18281 70 18240 7076 250 6.2 10 10 11.3 1070 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.48392E7 2.8 1.7 93 100000 690 1322 300 230 1 230 25887 83 26024 8917 240 2.6 10 10 11.3 1070 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.48428E7 2.2 1.7 96 100000 597 1322 298 115 1 114 13435 63 13367 4951 240 3.6 10 10 11.3 430 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.48464E7 2.2 1.1 93 100000 496 1322 297 105 0 105 10549 0 10634 4278 240 3.6 10 10 11.3 640 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.485E7 2.2 1.7 96 100000 396 1322 298 77 1 77 8851 46 8878 3054 240 2.6 10 10 11.3 640 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.48536E7 2.8 1.7 93 99900 304 1322 278 118 105 94 12969 4577 10372 3091 230 3.6 10 6 11.3 6100 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.48572E7 1.7 1.1 96 99900 224 1322 295 49 7 48 5522 100 5424 1709 230 3.1 10 10 3.2 120 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.48608E7 2.2 1.7 96 99900 164 1322 298 16 2 16 1912 0 1913 633 210 4.6 10 10 3.2 150 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.48644E7 1.7 1.1 96 99900 127 1322 287 16 10 15 1881 0 1766 570 230 2.6 10 9 3.2 150 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.4868E7 1.1 1.1 100 99900 114 1322 271 30 24 28 3328 0 3114 913 230 2.6 10 6 4.8 610 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.48716E7 1.1 0.6 96 99800 128 1322 292 12 2 11 1446 0 1326 433 240 2.6 10 10 11.3 370 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.48752E7 1.1 0.6 96 99800 167 1322 278 22 15 20 2588 0 2355 773 250 3.1 10 8 11.3 310 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.48788E7 0.6 0.6 100 99800 228 1322 290 45 0 45 4416 0 4448 1638 260 3.1 10 10 4.8 310 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.48824E7 0.6 0.6 100 99800 308 1322 290 60 4 59 6863 126 6767 2250 280 3.1 10 10 1.2 180 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.4886E7 0.6 0.6 100 99800 401 1322 290 55 2 54 6512 80 6407 2288 310 3.1 10 10 1.6 150 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.48896E7 0.6 0.6 100 99800 501 1322 290 66 7 64 7903 347 7681 2850 310 3.1 10 10 1.6 640 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.48932E7 0.6 0.0 96 99800 601 1322 289 125 5 123 14538 326 14360 5280 320 3.6 10 10 0.8 90 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.48968E7 1.1 -0.6 89 99900 694 1322 291 221 2 220 25001 164 25017 8705 290 3.6 10 10 11.3 370 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.49004E7 1.7 -1.1 82 99900 774 1322 293 229 5 226 26240 409 26031 9480 320 3.6 10 10 11.3 180 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.4904E7 1.7 -1.1 82 99900 835 1322 293 280 1 280 31879 88 32061 11464 290 4.6 10 10 11.3 7620 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.49076E7 1.7 -0.6 85 100000 873 1322 285 364 127 280 41707 11018 32266 11791 260 4.6 10 9 11.3 7620 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.49112E7 1.1 -0.6 89 100000 886 1322 291 260 14 251 30114 1158 29229 11024 300 4.1 10 10 11.3 1520 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.49148E7 1.7 0.0 89 100000 872 1322 294 293 1 292 33447 88 33528 12109 280 3.6 10 10 11.3 1520 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.49184E7 1.1 -0.6 89 100000 833 1322 291 182 2 180 21447 149 21309 8309 300 5.2 10 10 11.3 1520 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.4922E7 1.7 -0.6 85 100100 771 1322 272 377 284 211 43406 22569 24415 9009 300 5.2 8 6 11.3 6100 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.49256E7 1.1 -0.6 89 100100 690 1322 269 374 397 167 43221 29171 19385 7148 270 5.7 9 6 11.3 6100 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.49292E7 1.1 -0.6 89 100100 597 1322 277 153 6 150 17503 422 17233 6118 270 4.1 10 8 11.3 6100 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.49328E7 0.0 -0.6 96 100200 496 1322 272 216 162 155 24094 11398 17368 5630 260 4.6 10 8 1.6 2440 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.49364E7 0.6 -0.6 92 100200 397 1322 289 76 4 75 8761 183 8672 2992 240 4.1 10 10 1.6 150 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.494E7 0.0 -0.6 96 100200 304 1322 286 61 24 56 6999 728 6442 2149 240 3.1 10 10 4.8 2440 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.49436E7 0.0 -0.6 96 100300 224 1322 286 39 0 39 3827 0 3855 1457 230 3.1 10 10 3.2 150 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.49472E7 0.0 -0.6 96 100300 164 1322 286 27 1 27 3099 0 3105 991 240 3.1 10 10 3.2 150 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.49508E7 -0.6 -0.6 100 100300 127 1322 276 14 9 14 1656 0 1657 537 220 3.1 10 9 3.2 2440 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.49544E7 -0.6 -0.6 100 100300 114 1322 276 28 11 27 3117 0 3013 890 240 3.1 10 9 6.4 1830 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.4958E7 0.0 -1.1 92 100400 128 1322 278 19 9 18 2205 0 2092 668 240 2.6 10 9 6.4 1830 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.49616E7 0.0 -0.6 96 100400 166 1322 278 39 14 37 4368 0 4155 1267 230 2.6 10 9 8.0 1830 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.49652E7 0.0 -0.6 96 100400 227 1322 278 52 23 48 5871 355 5434 1719 230 2.6 10 9 6.4 1680 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.49688E7 0.6 0.6 100 100400 307 1322 290 74 2 73 8318 73 8233 2637 280 3.1 10 10 1.2 1520 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.49724E7 0.0 -0.6 96 100400 401 1322 286 69 12 66 8044 524 7715 2709 250 4.1 10 10 6.4 1520 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.4976E7 0.6 -0.6 92 100400 501 1322 289 140 9 137 15791 597 15517 5219 240 3.6 10 10 6.4 1520 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.49796E7 1.1 0.0 92 100400 601 1322 277 256 159 183 28840 12152 20715 7048 240 4.1 8 8 8.0 1520 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.49832E7 1.1 0.0 92 100500 694 1322 291 122 6 119 14485 393 14180 5470 220 3.1 10 10 8.0 1520 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.49868E7 1.7 -0.6 85 100500 774 1322 293 206 2 205 23785 157 23786 8842 250 4.1 10 10 8.0 1520 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.49904E7 1.7 -0.6 85 100500 835 1322 293 284 9 278 32347 788 31845 11409 250 4.6 10 10 8.0 1520 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.4994E7 1.7 0.0 89 100500 873 1322 294 250 4 247 28927 329 28734 10812 250 5.7 10 10 8.0 1520 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.49976E7 1.7 -1.7 79 100600 885 1322 292 268 1 268 30887 85 31060 11543 240 4.1 10 10 9.7 1520 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.50012E7 2.2 -1.1 79 100600 872 1322 295 275 3 273 31571 258 31519 11583 270 4.6 10 10 9.7 1830 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.50048E7 2.2 -1.1 79 100600 833 1322 287 195 46 166 23127 3336 19774 7786 270 5.2 10 9 11.3 2440 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.50084E7 2.8 -1.1 76 100600 771 1322 279 270 100 212 31079 7975 24526 9041 270 4.6 10 7 11.3 2440 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.5012E7 2.2 -2.8 70 100600 690 1322 279 322 256 189 36867 19878 21743 7826 240 2.6 10 8 11.3 2290 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.50156E7 2.2 -1.1 79 100700 597 1322 295 88 1 87 10508 59 10419 3954 280 3.1 10 10 11.3 2290 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.50192E7 1.1 -0.6 89 100700 496 1322 291 133 24 124 15109 1520 14142 4846 310 4.1 10 10 11.3 2290 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.50228E7 0.6 -0.6 92 100700 396 1322 289 91 4 89 10349 199 10155 3414 330 2.6 10 10 11.3 2440 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.50264E7 0.6 -1.1 89 100800 304 1322 288 54 1 53 6224 29 6124 2057 300 1.5 10 10 11.3 4270 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.503E7 0.0 -1.1 92 100800 224 1322 286 52 4 52 5827 68 5843 1813 310 2.1 10 10 11.3 4270 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.50336E7 0.0 -1.1 92 100900 164 1322 272 38 27 35 4272 0 3944 1212 320 2.6 8 8 11.3 980 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.50372E7 0.0 -1.1 92 100900 126 1322 268 36 6 35 3956 0 3857 1100 280 3.1 7 7 11.3 980 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.50408E7 -0.6 -1.1 96 100900 114 1322 265 21 4 20 2395 0 2285 710 300 2.6 8 7 11.3 980 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.50444E7 -0.6 -1.7 92 100900 127 1322 265 26 12 25 2939 0 2832 870 270 3.6 8 7 11.3 980 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.5048E7 -0.6 -1.7 92 100900 165 1322 262 54 35 49 5910 185 5380 1525 290 2.6 7 6 11.3 1310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.50516E7 -0.6 -2.8 85 100900 227 1322 264 47 19 43 5355 256 4911 1579 340 2.6 8 7 11.3 980 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.50552E7 0.0 -3.3 79 100900 307 1322 262 99 92 78 11077 3628 8757 2759 60 1.5 8 6 11.3 3050 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.50588E7 0.0 -2.8 82 101000 400 1322 259 190 284 104 21367 15581 11739 3833 290 2.1 9 4 11.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.50624E7 1.1 -3.3 73 100900 500 1322 288 92 1 92 10718 57 10752 3867 260 2.1 10 10 11.3 3050 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.5066E7 0.6 -2.2 82 101000 600 1322 273 216 104 169 24502 7738 19258 6679 320 2.1 8 8 11.3 3050 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.50696E7 0.6 -2.2 82 100900 693 1322 273 219 65 185 25128 4994 21327 7725 320 2.6 8 8 11.3 3050 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.50732E7 1.7 -2.2 76 100900 773 1322 268 370 223 240 42199 18752 27518 9869 10 3.1 5 5 11.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.50768E7 3.9 0.0 76 100900 834 1322 289 325 130 243 37409 10740 28121 10419 60 3.6 8 8 11.3 3050 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.50804E7 3.9 0.0 76 100900 872 1322 295 370 117 292 42242 10313 33532 12116 70 3.6 9 9 11.3 3050 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.5084E7 3.3 -0.6 76 100800 885 1322 300 278 11 270 32011 937 31265 11601 80 5.2 10 10 11.3 3050 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.50876E7 4.4 1.7 82 100800 871 1322 299 388 136 298 44198 12024 34146 12267 80 5.2 9 9 11.3 3050 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.50912E7 4.4 2.2 86 100700 832 1322 308 174 2 173 20552 145 20526 8050 90 6.2 10 10 11.3 3050 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.50948E7 3.9 2.2 89 100700 770 1322 306 142 15 133 16937 1008 15925 6273 70 5.2 10 10 11.3 3050 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.50984E7 3.3 2.2 93 100600 690 1322 303 102 2 100 12258 123 12057 4709 70 5.2 10 10 8.0 980 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.5102E7 3.3 2.8 96 100600 596 1322 304 123 8 120 14310 509 14013 5162 80 5.2 10 10 8.0 980 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.51056E7 3.3 2.8 96 100500 496 1322 304 69 4 68 8211 198 8112 2995 90 3.6 10 10 8.0 980 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.51092E7 3.9 3.3 96 100500 396 1322 307 80 0 80 7962 0 8024 3149 100 4.1 10 10 11.3 790 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.51128E7 5.6 5.0 96 100500 303 1322 316 70 2 69 7885 66 7796 2520 190 2.6 10 10 11.3 1520 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.51164E7 3.9 3.3 96 100500 224 1322 307 45 0 45 4410 0 4442 1630 240 2.6 10 10 11.3 1830 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.512E7 3.9 3.3 96 100500 163 1322 307 42 0 42 4094 0 4123 1377 240 2.6 10 10 9.7 370 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.51236E7 3.3 2.8 96 100600 126 1322 304 29 0 29 2817 0 2837 968 220 2.1 10 10 11.3 180 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.51272E7 3.9 3.3 96 100500 113 1322 307 27 0 27 2620 0 2638 888 180 1.5 10 10 2.4 150 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.51308E7 2.8 2.2 96 100600 126 1322 301 31 0 31 3013 0 3033 1016 240 4.1 10 10 11.3 180 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.51344E7 1.7 1.1 96 100600 165 1322 295 41 0 41 4000 0 4028 1359 250 6.2 10 10 8.0 150 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.5138E7 1.1 1.1 100 100600 226 1322 292 57 0 57 5592 0 5632 1939 230 4.1 10 10 0.8 180 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.51416E7 1.1 0.6 96 100600 306 1322 292 84 0 83 8301 0 8263 2874 220 3.6 10 10 0.4 180 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.51452E7 1.1 0.6 96 100600 399 1322 292 128 1 128 14136 61 14196 4375 230 3.6 10 10 0.4 180 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.51488E7 1.1 0.6 96 100700 499 1322 292 150 1 149 16793 69 16755 5511 240 4.1 10 10 1.6 180 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.51524E7 2.8 1.1 89 100700 599 1322 300 208 0 208 21086 0 21262 7619 240 4.6 10 10 6.4 240 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.5156E7 2.8 1.7 93 100800 692 1322 300 241 2 240 27046 169 27079 9177 240 3.1 10 10 6.4 240 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.51596E7 3.9 1.1 82 100800 772 1322 305 283 1 282 31827 89 31899 10915 220 5.2 10 10 6.4 240 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.51632E7 4.4 2.2 86 100800 833 1322 308 308 1 308 34758 91 34967 12143 240 4.1 10 10 6.4 240 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.51668E7 5.6 3.3 86 100800 872 1322 315 306 2 305 34776 177 34870 12451 230 4.1 10 10 8.0 240 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.51704E7 5.6 2.8 83 100800 884 1322 314 299 0 299 31040 0 31326 12413 230 5.2 10 10 8.0 240 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.5174E7 5.6 2.8 83 100800 871 1322 314 325 1 324 36758 91 36870 12909 240 4.6 10 10 9.7 1520 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.51776E7 4.4 2.2 86 100800 832 1322 308 277 0 277 28635 0 28895 11364 240 4.1 10 10 11.3 1520 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.51812E7 3.9 2.2 89 100800 770 1322 306 256 1 255 29008 85 29055 10248 240 3.1 10 10 11.3 1520 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.51848E7 3.9 2.2 89 100900 690 1322 306 239 1 239 26815 84 26960 9135 220 6.2 10 10 11.3 1520 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.51884E7 3.3 1.7 89 100900 596 1322 303 200 1 200 22340 79 22453 7423 230 4.6 10 10 11.3 1370 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.5192E7 2.8 1.1 89 100900 496 1322 300 97 1 96 11242 56 11163 3991 230 5.2 10 10 11.3 1370 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.51956E7 2.8 1.1 89 100900 396 1322 300 110 0 110 10956 0 11041 3965 220 5.2 10 10 11.3 1370 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.51992E7 2.8 1.7 93 101000 303 1322 300 79 1 79 8810 38 8841 2771 230 4.1 10 10 11.3 1370 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.52028E7 2.2 1.1 93 101000 223 1322 283 71 61 61 7846 1271 6764 2021 250 6.7 9 8 11.3 1370 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.52064E7 1.1 0.0 92 101100 163 1322 291 25 1 25 2886 0 2891 930 260 9.3 10 10 11.3 1370 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.521E7 1.1 -0.6 89 101200 125 1322 291 9 1 9 1100 0 1100 360 260 6.7 10 10 11.3 1070 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.52136E7 0.6 -1.1 89 101200 112 1322 288 20 1 19 2289 0 2178 680 270 4.6 10 10 11.3 180 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.52172E7 0.6 -0.6 92 101200 126 1322 281 25 7 24 2833 0 2725 841 260 5.7 10 9 11.3 180 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.52208E7 0.0 -1.1 92 101300 164 1322 278 49 19 47 5377 67 5173 1481 250 6.7 10 9 11.3 180 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.52244E7 0.0 -0.6 96 101300 225 1322 278 50 19 46 5660 268 5220 1659 240 3.6 10 9 9.7 180 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.5228E7 0.6 -0.6 92 101300 305 1322 281 87 54 75 9754 2024 8437 2679 240 4.1 10 9 4.8 180 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.52316E7 1.7 -0.6 85 101400 398 1322 269 170 191 113 18970 10836 12659 4044 230 3.1 5 5 11.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.52352E7 1.7 -1.1 82 101400 498 1322 293 65 6 63 7791 298 7569 2806 240 4.6 10 10 3.2 180 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.52388E7 2.2 -2.2 73 101400 598 1322 294 203 23 192 22783 1811 21654 7252 240 4.6 10 10 6.4 270 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.52424E7 2.8 -2.2 70 101400 691 1322 282 273 138 201 31108 10963 23016 8179 260 5.2 8 8 11.3 270 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.5246E7 5.0 0.6 73 101400 771 1322 294 354 231 219 40633 18541 25266 9259 230 3.6 8 8 11.3 430 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.52496E7 5.6 -2.8 55 101400 832 1322 308 209 4 207 24376 314 24262 9263 240 4.1 10 10 11.3 310 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.52532E7 6.1 -0.6 63 101500 871 1322 312 231 7 226 26915 559 26469 10125 270 5.2 10 10 11.3 310 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.52568E7 7.2 -3.9 46 101400 884 1322 299 447 268 268 51534 22983 31070 11536 270 5.2 8 8 11.3 310 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.52604E7 6.7 -2.2 54 101500 870 1322 305 307 126 223 35819 10061 26152 10022 310 3.6 9 9 11.3 3050 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.5264E7 2.8 -0.6 79 101500 831 1322 298 226 29 208 26331 2265 24354 9292 280 3.6 10 10 11.3 3050 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.52676E7 2.2 -0.6 82 101500 770 1322 295 235 7 231 26862 577 26543 9599 290 3.1 10 10 8.0 340 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.52712E7 1.1 -0.6 89 101500 689 1322 291 178 7 174 20504 522 20135 7371 230 2.1 10 10 4.8 340 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.52748E7 1.7 0.0 89 101500 596 1322 294 153 7 150 17501 491 17232 6120 250 3.1 10 10 11.3 460 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.52784E7 2.2 0.6 89 101500 496 1322 297 127 6 125 14413 379 14243 4874 230 4.1 10 10 11.3 460 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.5282E7 1.7 0.6 92 101600 395 1322 294 93 4 92 10544 201 10467 3498 230 2.6 10 10 11.3 460 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.52856E7 2.2 0.6 89 101600 302 1322 270 142 311 71 15979 11039 8015 2572 230 3.1 5 4 11.3 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.52892E7 1.1 0.0 92 101600 223 1322 273 69 57 59 7648 1148 6561 1976 240 2.1 8 7 11.3 3050 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.52928E7 1.7 0.0 89 101600 162 1322 268 59 77 49 6446 340 5371 1515 200 2.1 9 4 11.3 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.52964E7 2.2 -1.1 79 101600 124 1322 271 37 78 29 4126 0 3242 965 190 1.5 9 5 11.3 3050 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.53E7 2.2 0.0 85 101700 111 1322 274 23 37 19 2630 0 2176 679 130 2.1 9 6 11.3 3050 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.53036E7 2.2 0.0 85 101600 125 1322 296 22 1 22 2509 0 2513 784 120 3.1 10 10 11.3 3050 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.53072E7 2.8 1.1 89 101600 163 1322 291 43 22 40 4777 0 4456 1331 120 3.1 10 9 11.3 460 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.53108E7 3.3 2.2 93 101600 224 1322 295 52 20 49 5849 291 5527 1737 80 2.6 10 9 11.3 460 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.53144E7 2.8 1.7 93 101600 303 1322 300 54 1 54 6211 29 6227 2089 100 4.6 10 10 11.3 610 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.5318E7 3.3 2.2 93 101600 397 1322 303 77 15 72 8901 663 8347 2899 110 4.1 10 10 11.3 610 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.53216E7 4.4 3.3 93 101600 497 1322 309 110 9 106 12642 522 12226 4315 120 6.2 10 10 11.3 610 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.53252E7 5.0 3.3 89 101600 597 1322 312 86 7 83 10295 395 9965 3798 120 6.2 10 10 11.3 610 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.53288E7 6.7 3.9 83 101600 690 1322 320 106 2 105 12686 124 12608 4912 130 7.7 10 10 11.3 610 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.53324E7 6.7 4.4 86 101600 770 1322 321 226 3 224 25859 239 25764 9401 130 7.2 10 10 11.3 610 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.5336E7 8.9 5.0 77 101600 831 1322 332 297 1 296 33585 88 33670 11845 140 6.7 10 10 11.3 1430 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.53396E7 9.4 6.1 80 101600 870 1322 335 257 1 256 29584 81 29632 11076 150 6.2 10 10 11.3 1430 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.53432E7 10.0 6.1 77 101600 883 1322 338 273 2 272 31342 166 31406 11650 150 5.7 10 10 11.3 1680 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.53468E7 7.2 5.6 89 101600 869 1322 324 172 1 171 20438 70 20411 8133 290 3.6 10 10 11.3 1370 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.53504E7 4.4 3.3 93 101700 831 1322 309 274 2 273 31203 171 31266 11252 330 4.1 10 10 11.3 980 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.5354E7 4.4 3.3 93 101700 769 1322 309 268 2 267 30241 173 30299 10542 350 4.1 10 10 11.3 1130 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.53576E7 4.4 3.3 93 101700 689 1322 309 136 1 136 15954 67 16018 6090 360 3.1 10 10 11.3 1070 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.53612E7 4.4 3.3 93 101800 595 1322 309 209 1 209 23247 80 23367 7615 20 3.1 10 10 11.3 1220 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.53648E7 5.0 3.3 89 101800 495 1322 312 158 0 158 15862 0 15990 5697 10 2.1 10 10 11.3 1160 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.53684E7 5.6 3.9 89 101800 395 1322 315 127 1 126 14017 59 13967 4315 60 2.1 10 10 11.3 1340 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.5372E7 6.1 3.9 86 101900 302 1322 317 84 0 84 8289 0 8351 2883 40 1.5 10 10 11.3 1250 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.53756E7 6.1 3.9 86 101900 222 1322 309 52 19 49 5844 262 5522 1734 60 2.1 10 9 11.3 2290 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.53792E7 6.1 3.9 86 101900 161 1322 309 40 17 38 4457 0 4245 1283 0 0.0 10 9 11.3 2590 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.53828E7 5.0 3.9 93 102000 123 1322 304 16 3 16 1868 0 1870 601 80 2.1 10 9 11.3 1460 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.53864E7 4.4 3.9 96 102000 110 1322 287 28 6 28 3097 0 3105 905 120 3.6 8 6 11.3 1520 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.539E7 3.9 3.3 96 102000 123 1322 280 35 10 34 3845 0 3746 1072 130 1.5 7 4 1.2 3660 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.53936E7 4.4 3.9 96 102000 161 1322 282 56 24 53 6067 134 5762 1578 130 2.6 7 4 11.3 3660 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.53972E7 6.1 4.4 89 102000 222 1322 287 71 110 53 7925 1706 5934 1834 130 2.1 4 3 11.3 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.54008E7 7.2 4.4 83 102000 302 1322 289 128 258 69 14416 8603 7796 2517 120 3.6 3 2 16.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.54044E7 7.2 4.4 83 102000 395 1322 292 180 273 99 20260 13912 11184 3686 100 4.1 5 3 11.3 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.5408E7 6.7 5.0 89 102100 495 1322 321 127 37 113 14508 2179 12958 4525 90 3.6 10 10 11.3 1520 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.54116E7 6.7 4.4 86 102100 595 1322 321 133 3 132 15347 196 15293 5559 100 4.1 10 10 11.3 1680 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.54152E7 8.3 5.0 80 102100 689 1322 308 214 48 189 24444 3606 21693 7823 100 5.2 8 7 11.3 3660 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.54188E7 10.0 5.6 74 102100 769 1322 316 416 323 228 47501 25765 26172 9509 110 6.2 8 7 11.3 3660 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.54224E7 10.6 6.7 77 102100 830 1322 342 158 4 155 18788 273 18510 7356 120 5.2 10 10 11.3 1980 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.5426E7 11.1 7.2 77 102100 869 1322 345 259 3 257 29787 243 29722 11101 130 5.2 10 10 11.3 1830 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.54296E7 12.2 7.8 75 102100 882 1322 351 252 5 248 29120 396 28815 10915 130 4.1 10 10 11.3 1070 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.54332E7 11.1 7.2 77 102100 869 1322 328 376 150 277 42984 12525 31849 11684 40 4.1 9 8 11.3 1680 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.54368E7 7.2 4.4 83 102100 830 1322 314 275 72 229 31745 5706 26574 9969 70 4.6 9 9 11.3 1680 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.54404E7 8.3 4.4 77 102200 768 1322 312 387 240 247 43925 19934 28188 10031 70 4.6 8 8 11.3 1830 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.5444E7 7.8 4.4 80 102200 688 1322 310 244 78 203 27716 6058 23174 8219 70 5.2 8 8 11.3 1980 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.54476E7 5.0 2.8 86 102200 594 1322 296 268 134 208 29824 10755 23266 7590 40 4.1 8 8 11.3 2440 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.54512E7 3.9 1.7 86 102300 494 1322 286 174 148 118 19829 9064 13499 4671 40 3.6 7 7 11.3 2440 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.54548E7 3.3 1.1 86 102300 394 1322 280 129 40 117 14337 2289 13056 4121 30 3.6 6 6 11.3 2440 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.54584E7 2.8 1.1 89 102300 301 1322 285 83 46 72 9325 1638 8115 2594 40 3.6 8 8 11.3 2130 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.5462E7 2.8 1.1 89 102300 221 1322 285 35 16 32 4073 100 3730 1237 50 4.1 8 8 11.3 2130 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.54656E7 2.2 1.1 93 102400 160 1322 275 46 38 41 5096 0 4555 1349 50 3.6 8 6 11.3 2130 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.54692E7 2.2 1.1 93 102400 122 1321 273 32 15 31 3542 0 3441 1006 60 3.1 7 5 11.3 2130 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.54728E7 2.2 1.1 93 102400 109 1321 283 28 6 27 3107 0 3003 880 80 4.6 8 8 11.3 2130 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.54764E7 2.2 1.1 93 102400 122 1321 278 25 5 24 2826 0 2718 835 90 3.1 8 7 11.3 2130 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.548E7 2.2 1.7 96 102400 160 1321 290 37 4 37 4131 0 4142 1254 100 5.2 10 9 0.8 2130 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.54836E7 2.2 1.7 96 102400 221 1321 276 72 40 65 7905 892 7162 2092 80 3.1 10 6 2.4 60 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.54872E7 1.7 1.1 96 102500 301 1321 295 46 15 42 5393 366 4934 1693 80 3.1 10 10 1.6 30 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.54908E7 2.8 1.7 93 102500 394 1321 292 86 33 76 9893 1496 8769 3019 50 3.6 10 9 4.8 3960 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.54944E7 3.3 1.7 89 102500 494 1321 303 96 8 93 11147 444 10834 3885 70 4.1 10 10 4.8 3960 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.5498E7 3.9 2.2 89 102500 594 1321 306 101 3 100 11917 180 11838 4444 80 5.2 10 10 3.2 90 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.55016E7 4.4 2.2 86 102500 687 1321 285 307 173 217 34704 13977 24657 8585 70 5.2 10 6 8.0 7620 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.55052E7 6.7 3.9 83 102500 768 1321 297 372 213 248 42209 17769 28294 10051 100 2.1 10 6 9.7 2590 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.55088E7 3.3 1.7 89 102500 829 1321 303 155 33 134 18667 2223 16201 6506 10 5.2 10 10 11.3 150 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.55124E7 2.8 1.7 93 102500 868 1321 300 254 8 249 29340 657 28919 10850 10 4.1 10 10 11.3 90 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.5516E7 3.3 2.2 93 102600 881 1321 303 191 5 187 22609 369 22240 8796 20 3.6 10 10 3.2 90 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.55196E7 2.8 2.8 100 102500 868 1321 302 320 8 314 36272 721 35807 12649 20 4.1 10 10 0.8 30 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.55232E7 3.3 2.2 93 102500 829 1321 278 418 258 255 47871 21573 29364 10745 20 3.6 5 5 6.4 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.55268E7 3.3 1.7 89 102500 767 1321 274 491 538 177 57272 39703 20741 7895 30 4.1 3 3 11.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.55304E7 3.3 1.7 89 102500 687 1321 278 373 359 185 42720 27184 21289 7700 40 4.1 5 5 11.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.5534E7 4.4 2.2 86 102500 594 1321 267 366 552 117 42662 34917 13688 5054 50 4.1 0 0 11.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.55376E7 3.3 1.1 86 102500 493 1321 273 246 334 121 27979 20743 13816 4755 20 4.1 3 3 11.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.55412E7 2.2 0.6 89 102500 393 1321 270 160 182 105 17940 9819 11818 3835 360 3.1 4 4 11.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.55448E7 2.2 0.6 89 102500 300 1321 257 134 291 68 15124 9956 7699 2487 30 3.1 0 0 11.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.55484E7 3.3 1.1 86 102600 220 1321 262 86 195 53 9606 3225 5938 1830 60 3.1 0 0 11.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.5552E7 2.2 0.6 89 102600 159 1321 257 54 113 40 5993 0 4451 1324 60 3.1 0 0 11.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.55556E7 1.7 0.6 92 102600 121 1321 255 45 236 24 5084 0 2717 833 50 3.1 0 0 11.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.55592E7 1.1 0.0 92 102600 108 1321 252 39 211 22 4398 0 2486 756 60 2.6 0 0 11.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.55628E7 0.6 0.0 96 102600 121 1321 265 32 34 29 3560 0 3234 957 70 3.1 8 5 3.2 6100 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.55664E7 0.6 0.0 96 102600 159 1321 259 58 197 34 6518 0 3830 1176 70 3.6 5 2 0.8 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.557E7 1.7 0.6 92 102600 219 1321 260 92 298 43 10447 3397 4895 1565 60 5.2 3 1 11.3 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.55736E7 2.8 1.1 89 102600 299 1321 260 154 484 44 17982 12058 5148 1759 70 4.6 1 0 11.3 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.55772E7 3.3 1.1 86 102600 392 1321 270 214 456 78 24562 20969 8980 3077 90 4.6 5 2 11.3 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.55808E7 3.3 1.1 86 102600 492 1321 273 265 424 107 30426 24956 12330 4331 80 5.7 8 3 11.3 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.55844E7 3.9 1.7 86 102600 592 1321 278 365 496 142 41889 33797 16364 5863 110 5.7 9 4 11.3 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.5588E7 5.0 2.2 83 102600 686 1321 283 442 560 151 51421 39193 17641 6605 70 5.2 9 4 11.3 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.55916E7 5.6 2.8 83 102600 766 1321 286 498 592 153 58719 41383 18116 7029 90 4.1 9 4 11.3 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.55952E7 4.4 2.2 86 102500 828 1321 285 476 470 181 55996 34584 21391 8331 60 6.2 10 6 11.3 3050 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.55988E7 6.1 3.3 83 102500 867 1321 284 558 595 167 66454 42202 19977 7968 80 5.7 6 2 11.3 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.56024E7 6.1 3.3 83 102500 880 1321 286 595 710 121 72769 46087 14853 6088 60 6.2 7 3 11.3 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.5606E7 5.6 2.2 79 102500 867 1321 283 612 734 129 74361 48725 15734 6404 80 5.7 5 3 11.3 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.56096E7 6.1 2.8 80 102400 828 1321 290 499 497 187 58547 36868 22044 8551 40 5.2 5 5 11.3 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.56132E7 5.0 2.2 83 102400 766 1321 285 487 608 133 58065 40843 15919 6265 60 5.2 5 5 11.3 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.56168E7 3.3 1.7 89 102400 686 1321 280 382 421 162 44210 30294 18831 6977 80 6.7 10 6 11.3 120 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.56204E7 2.8 1.1 89 102400 593 1321 278 253 164 179 28510 12358 20267 6907 50 6.2 9 6 11.3 120 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.5624E7 2.2 1.1 93 102400 492 1321 273 231 289 123 26234 18074 14024 4809 70 5.2 8 5 11.3 3050 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.56276E7 2.2 1.1 93 102400 392 1321 273 162 169 112 18062 9421 12537 3999 40 5.2 8 5 11.3 3050 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.56312E7 2.0 0.9 96 102400 299 1321 274 115 81 97 12601 3628 10671 3135 40 5.0 10 6 3.2 120 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.56348E7 1.7 0.8 96 102400 219 1321 295 36 2 36 4148 16 4156 1361 40 4.9 10 10 1.6 120 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.56384E7 1.5 0.6 96 102400 158 1321 294 26 3 26 2986 0 2992 955 50 4.7 10 10 0.4 30 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.5642E7 1.3 0.5 96 102400 119 1321 269 37 64 31 4090 0 3436 999 60 4.6 8 5 3.2 90 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.56456E7 1.1 0.3 92 102400 106 1321 273 22 13 21 2488 0 2379 727 70 4.4 9 7 1.2 90 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.56492E7 0.8 0.2 96 102400 119 1321 266 42 28 39 4554 0 4242 1147 70 4.3 8 5 3.2 90 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.56528E7 0.6 0.0 96 102300 157 1321 271 53 146 36 5924 0 4034 1222 60 4.1 8 7 1.6 60 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.56564E7 2.2 1.1 93 102300 218 1321 269 86 232 48 9671 3129 5413 1695 50 4.1 3 3 11.3 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.566E7 3.3 1.1 86 102300 297 1321 270 149 435 51 17188 11880 5897 1983 70 5.2 2 2 11.3 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.56636E7 4.4 1.7 82 102300 390 1321 275 233 578 62 27217 23746 7261 2553 80 5.7 2 2 11.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.56672E7 4.4 1.7 82 102300 491 1321 275 278 525 83 32548 27886 9747 3533 100 5.7 2 2 11.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.56708E7 5.0 2.2 83 102300 591 1321 274 368 676 64 44901 35906 7827 3010 90 7.2 1 1 11.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.56744E7 5.0 2.2 83 102300 684 1321 278 452 707 85 54950 41810 10363 4075 100 9.3 4 2 11.3 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.5678E7 5.6 2.8 83 102200 765 1321 281 429 520 128 51272 34440 15356 6060 100 7.7 5 2 11.3 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.56816E7 5.6 2.8 83 102200 826 1321 284 536 602 159 63666 42374 18968 7500 100 8.2 6 3 11.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.56852E7 6.1 2.8 80 102200 865 1321 286 535 589 148 64306 40434 17863 7200 100 9.3 6 3 11.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.56888E7 6.1 2.8 80 102200 879 1321 279 608 808 69 65002 81953 9869 1929 100 8.2 2 1 11.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.56924E7 4.4 2.2 86 102200 866 1321 299 347 188 224 40402 14803 26216 10035 100 9.8 10 9 11.3 180 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.5696E7 4.4 2.2 86 102100 827 1321 293 422 252 263 48196 21355 30205 10957 90 9.3 10 8 11.3 180 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.56996E7 3.9 2.2 89 102100 765 1321 306 251 72 209 28883 5641 24171 8929 90 9.8 10 10 11.3 180 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.57032E7 3.9 2.2 89 102100 685 1321 306 196 2 195 22344 154 22338 7981 90 9.3 10 10 11.3 150 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.57068E7 4.4 1.7 82 102000 592 1321 293 268 171 192 30018 13274 21612 7217 70 8.2 8 8 11.3 310 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.57104E7 4.4 2.2 86 102000 491 1321 283 216 236 128 24439 14937 14541 4943 80 9.3 5 5 11.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.5714E7 4.4 1.7 82 102000 391 1321 280 199 282 115 22130 15894 12840 4063 90 9.3 4 4 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.57176E7 3.9 1.7 86 102000 298 1321 273 156 441 56 17868 12870 6431 2141 90 8.8 2 2 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.57212E7 2.8 1.1 89 101900 217 1321 260 110 464 33 12754 2857 3833 1265 90 8.2 0 0 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.57248E7 2.2 1.1 93 101900 156 1321 257 70 360 27 8010 0 3095 983 60 7.2 0 0 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.57284E7 1.7 0.6 92 101900 118 1321 255 47 282 22 5338 0 2503 775 70 7.2 0 0 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.5732E7 1.7 0.6 92 101900 105 1321 255 40 255 20 4536 0 2272 698 70 6.7 0 0 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.57356E7 1.1 0.6 96 101900 117 1321 292 12 4 11 1439 0 1319 429 70 6.7 10 10 0.4 30 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.57392E7 1.1 0.6 96 101800 155 1321 292 31 2 30 3513 0 3407 1063 80 7.2 10 10 0.4 30 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.57428E7 1.1 1.1 100 101800 216 1321 284 54 66 44 6111 736 4992 1585 70 6.2 9 9 1.2 30 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.57464E7 2.2 1.7 96 101800 295 1321 271 149 324 77 16613 11881 8615 2694 70 6.7 9 4 9.7 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.575E7 3.3 1.7 89 101700 389 1321 271 206 492 62 24052 20139 7257 2549 70 7.7 2 2 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.57536E7 3.9 1.7 86 101700 489 1321 270 287 590 69 34075 29396 8213 3020 80 8.2 2 1 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.57572E7 4.4 1.7 82 101700 589 1321 275 318 501 94 37674 29535 11171 4207 70 9.3 2 2 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.57608E7 3.9 2.2 89 101600 683 1321 306 254 4 252 28342 347 28275 9363 80 8.8 10 10 11.3 180 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.57644E7 4.4 2.2 86 101600 763 1321 308 181 8 176 21103 588 20614 7839 80 7.2 10 10 9.7 150 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.5768E7 3.9 2.2 89 101600 825 1321 306 225 21 212 26131 1635 24746 9394 80 8.8 10 10 6.4 150 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.57716E7 3.9 2.2 89 101500 864 1321 306 238 11 230 27645 875 26856 10223 80 8.2 10 10 6.4 150 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.57752E7 3.9 2.2 89 101500 877 1321 306 266 7 262 30650 584 30357 11320 80 7.7 10 10 6.4 150 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.57788E7 3.9 2.2 89 101500 864 1321 306 252 8 246 29119 653 28580 10739 90 9.3 10 10 6.4 150 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.57824E7 3.3 2.2 93 101400 826 1321 303 281 6 278 31944 521 31785 11352 100 8.2 10 10 6.4 150 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.5786E7 2.8 2.2 96 101400 764 1321 301 143 1 143 16950 69 17019 6648 90 7.7 10 10 1.2 90 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.57896E7 2.8 2.2 96 101400 684 1321 301 252 3 250 28149 259 28080 9342 80 7.7 10 10 1.2 90 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.57932E7 2.8 2.2 96 101400 590 1321 301 185 1 185 20777 76 20878 7043 80 7.7 10 10 1.6 150 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.57968E7 2.2 2.2 100 101400 490 1321 298 148 1 148 16544 68 16618 5445 90 6.7 10 10 0.8 30 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.58004E7 2.2 1.7 96 101400 390 1321 298 121 1 120 13405 58 13349 4166 90 7.7 10 10 0.4 30 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.5804E7 2.8 1.1 89 101400 296 1321 285 87 87 68 9808 2934 7690 2477 90 5.7 8 8 11.3 6100 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.58076E7 2.8 1.1 89 101400 216 1321 278 61 55 52 6815 853 5827 1796 90 5.7 8 6 11.3 6100 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.58112E7 2.2 1.1 93 101400 155 1321 266 62 180 40 6866 0 4442 1313 90 4.6 7 2 11.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.58148E7 1.7 0.6 92 101400 116 1321 260 29 33 26 3246 0 2917 876 90 5.2 6 1 11.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.58184E7 1.7 0.6 92 101400 103 1321 260 25 33 22 2810 0 2478 747 90 5.2 5 1 11.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.5822E7 1.7 0.6 92 101400 115 1321 255 35 48 31 3859 0 3427 987 100 5.2 3 0 11.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.58256E7 2.2 1.1 93 101400 153 1321 266 44 75 35 4918 0 3922 1188 100 6.2 3 2 11.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.58292E7 2.8 1.1 89 101400 214 1321 265 73 159 48 8197 2046 5404 1685 100 6.2 1 1 11.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.58328E7 3.3 1.1 86 101400 293 1321 267 118 239 65 13334 7678 7367 2383 100 8.2 1 1 11.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.58364E7 3.9 1.7 86 101400 387 1321 270 163 266 86 18533 12692 9811 3297 90 7.7 1 1 11.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.584E7 4.4 2.2 86 101500 487 1321 272 265 435 105 30426 25165 12099 4249 80 7.2 1 1 11.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.58436E7 5.0 2.2 83 101500 587 1321 274 340 487 123 39422 31308 14316 5232 100 8.8 2 1 11.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.58472E7 5.0 2.2 83 101500 681 1321 285 346 307 187 39541 23311 21472 7720 90 7.7 10 5 11.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.58508E7 4.4 2.8 89 101500 761 1321 309 306 49 278 34379 4331 31414 10734 100 10.3 10 10 11.3 150 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.58544E7 5.0 2.8 86 101500 823 1321 311 233 9 227 26903 717 26347 9868 100 9.3 10 10 11.3 150 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.5858E7 5.6 3.3 86 101500 862 1321 315 218 2 217 25424 155 25436 9782 100 9.3 10 10 11.3 150 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.58616E7 5.6 2.8 83 101500 876 1321 305 285 77 233 33132 6121 27230 10398 90 9.3 10 9 11.3 180 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.58652E7 5.6 2.8 83 101500 863 1321 314 213 2 212 24894 154 24901 9615 90 10.8 10 10 11.3 210 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.58688E7 5.6 2.8 83 101500 824 1321 314 169 9 164 20022 640 19515 7687 90 9.3 10 10 11.3 210 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.58724E7 6.7 2.8 77 101500 763 1321 291 479 500 189 55531 37608 22015 8280 90 9.3 4 4 11.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.5876E7 6.7 2.8 77 101500 683 1321 276 441 593 133 51790 39621 15681 5964 90 9.3 0 0 16.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.58796E7 7.2 2.2 71 101500 589 1321 278 364 550 118 42370 34861 13786 5075 100 9.3 0 0 16.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.58832E7 6.7 2.8 77 101500 489 1321 276 279 478 101 32150 27170 11679 4135 90 8.2 0 0 16.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.58868E7 7.2 2.8 74 101600 388 1321 278 199 391 84 22680 18366 9605 3250 90 10.3 0 0 16.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.58904E7 5.6 2.2 79 101600 294 1321 271 133 291 67 15000 9555 7580 2446 100 8.8 0 0 16.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.5894E7 4.4 1.7 82 101700 214 1321 266 83 187 53 9251 2918 5925 1815 90 9.8 0 0 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.58976E7 3.9 1.1 82 101700 153 1321 264 52 98 41 5742 0 4541 1330 90 9.3 2 0 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.59012E7 3.3 1.1 86 101700 114 1321 262 44 249 22 4986 0 2498 769 90 8.8 0 0 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.59048E7 3.3 0.6 82 101700 101 1321 261 37 220 20 4185 0 2267 692 90 8.2 0 0 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.59084E7 3.3 1.1 86 101800 113 1321 262 43 248 22 4869 0 2496 767 90 8.2 0 0 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.5912E7 3.3 1.1 86 101800 151 1321 262 64 324 28 7277 0 3190 1001 100 7.2 0 0 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.59156E7 3.3 1.1 86 101800 212 1321 262 103 430 34 11880 2266 3929 1286 90 7.7 0 0 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.59192E7 3.9 1.1 82 101800 291 1321 264 159 538 41 18625 12233 4812 1646 90 8.2 0 0 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.59228E7 4.4 1.1 79 101800 384 1321 271 230 631 47 27414 22988 5613 2006 90 8.2 1 1 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.59264E7 5.0 1.7 79 101900 485 1321 269 310 669 64 36988 32423 7655 2823 90 8.2 3 0 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.593E7 5.6 1.7 76 101900 585 1321 271 398 740 70 48192 40149 8497 3252 90 8.2 2 0 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.59336E7 5.6 1.7 76 101900 679 1321 271 480 780 78 58688 45294 9562 3765 70 8.2 2 0 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.59372E7 5.6 2.2 79 101900 760 1321 271 551 809 85 67879 48598 10501 4226 90 8.8 2 0 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.59408E7 6.1 2.2 76 101900 822 1321 273 605 833 85 64222 83972 12135 1976 90 6.7 1 0 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.59444E7 6.1 2.8 80 101900 861 1321 274 649 862 86 68933 87199 12187 2091 90 8.2 0 0 16.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.5948E7 5.6 2.2 79 101900 874 1321 271 662 866 86 70259 87618 12156 2131 90 8.2 0 0 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.59516E7 5.0 2.2 83 101900 861 1321 274 595 796 75 63403 80551 10707 1977 80 8.2 2 1 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.59552E7 5.6 2.8 83 101900 823 1321 277 574 776 89 71203 47216 11073 4525 90 8.2 4 1 16.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.59588E7 6.1 2.8 80 101800 761 1321 279 518 769 73 55262 77252 10618 1749 90 9.3 2 1 16.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.59624E7 6.1 2.8 80 101800 681 1321 283 452 638 121 53461 41363 14365 5515 90 9.3 3 2 16.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.5966E7 6.1 2.2 76 101800 588 1321 282 360 596 94 42643 35035 11170 4207 90 8.8 2 2 16.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.59696E7 5.6 2.2 79 101800 487 1321 280 314 634 79 36886 32938 9307 3387 90 8.2 2 2 16.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.59732E7 5.6 2.2 79 101800 386 1321 280 245 625 61 28636 25288 7148 2514 80 6.2 2 2 16.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.59768E7 3.9 1.7 86 101800 293 1321 276 149 438 51 17172 11739 5892 1978 80 6.2 3 3 16.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.59804E7 2.8 1.1 89 101800 212 1321 265 98 375 37 11240 2758 4253 1382 90 5.7 1 1 11.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.5984E7 1.7 0.6 92 101800 151 1321 255 66 326 28 7513 0 3194 1004 60 5.2 0 0 11.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.59876E7 1.1 0.0 92 101800 112 1321 257 35 133 23 3948 0 2600 792 80 6.2 1 1 11.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.59912E7 0.0 -1.1 92 101800 99 1321 286 16 1 16 1841 0 1843 577 80 6.7 10 10 0.8 30 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.59948E7 -0.6 -1.1 96 101700 111 1321 283 14 1 14 1642 0 1644 527 90 6.7 10 10 0.4 0 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.59984E7 -1.1 -1.1 100 101700 149 1321 281 36 0 36 3510 0 3534 1201 90 5.7 10 10 0.4 0 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.6002E7 -0.6 -1.1 96 101700 209 1321 283 37 2 37 4238 14 4247 1373 90 5.7 10 10 0.4 0 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.60056E7 -0.6 -1.1 96 101700 289 1321 283 55 5 54 6303 140 6204 2057 90 6.2 10 10 0.4 30 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.60092E7 -0.6 -0.6 100 101700 382 1321 284 79 4 78 9048 183 8962 3048 90 6.2 10 10 0.8 90 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.60128E7 0.0 -0.6 96 101700 482 1321 286 127 1 127 14358 64 14416 4867 100 6.2 10 10 0.8 90 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.60164E7 1.1 0.0 92 101700 583 1321 291 186 3 185 20867 231 20856 6983 90 6.2 10 10 1.6 90 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.602E7 1.7 0.0 89 101700 677 1321 294 196 2 195 22322 156 22316 7925 80 6.7 10 10 4.8 150 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.60236E7 2.8 0.6 86 101600 758 1321 285 381 306 205 43870 23986 23722 8757 100 5.7 10 8 11.3 150 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +1.60272E7 3.3 1.1 86 101600 820 1321 277 437 380 201 50943 29173 23546 8999 90 5.7 10 5 11.3 2000 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +1.60308E7 3.3 1.1 86 101600 859 1321 275 561 594 173 66602 43086 20631 8174 70 6.7 8 4 11.3 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.60344E7 2.8 1.1 89 101600 873 1321 273 475 420 197 55953 31703 23318 9134 80 7.2 10 4 11.3 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.6038E7 3.3 1.1 86 101600 860 1321 275 500 463 197 58776 35031 23270 9072 80 6.7 10 4 11.3 2000 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.60416E7 3.9 1.7 86 101500 821 1321 280 413 322 212 47953 25132 24739 9379 70 6.7 10 5 11.3 2000 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.60452E7 3.9 1.7 86 101500 760 1321 273 357 358 150 42138 25010 17779 6898 90 7.7 5 2 11.3 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.60488E7 3.9 1.7 86 101500 680 1321 278 363 305 205 41185 24116 23375 8226 80 6.7 9 4 11.3 2000 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +1.60524E7 3.3 1.7 89 101500 586 1321 278 306 370 141 35106 25125 16243 5810 80 7.7 10 5 11.3 2000 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +1.6056E7 2.8 1.1 89 101400 485 1321 278 231 225 148 25807 15329 16608 5420 90 7.7 10 6 11.3 150 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.60596E7 2.2 0.6 89 101400 385 1321 275 134 95 106 14985 5117 11899 3825 90 6.2 10 6 11.3 150 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.60632E7 1.7 0.6 92 101400 291 1321 276 78 91 58 8895 2693 6633 2186 80 6.2 10 7 11.3 150 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.60668E7 0.6 0.0 96 101400 210 1321 289 32 4 32 3711 19 3718 1224 80 6.7 10 10 1.6 150 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.60704E7 0.6 0.0 96 101300 149 1321 275 37 33 34 4143 0 3816 1159 90 6.2 8 8 1.6 150 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.6074E7 0.0 -0.6 96 101300 110 1321 272 12 0 12 1166 0 1174 460 80 6.2 8 8 1.6 150 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.60776E7 0.0 -1.1 92 101300 97 1321 278 11 0 11 1067 0 1075 417 90 5.2 9 9 0.4 60 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.60812E7 -0.6 -1.1 96 101300 109 1321 275 11 2 11 1313 0 1313 425 80 5.2 9 9 0.4 60 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.60848E7 -0.6 -1.1 96 101300 146 1321 269 27 8 26 3083 0 2974 937 70 4.1 8 8 0.4 60 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.60884E7 0.0 -0.6 96 101300 207 1321 272 56 10 55 6203 160 6112 1829 70 4.1 8 8 0.4 60 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.6092E7 1.7 0.6 92 101300 287 1321 266 89 74 73 9941 2561 8181 2564 70 4.1 5 3 11.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.60956E7 3.3 0.6 82 101300 380 1321 270 167 202 108 18612 10923 12084 3838 80 6.7 8 2 11.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.60992E7 3.3 0.6 82 101300 480 1321 270 217 232 133 24421 15003 15030 5013 80 5.7 6 2 11.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.61028E7 3.9 1.1 82 101300 581 1321 269 321 395 148 36642 27407 16966 5987 90 6.2 5 1 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.61064E7 5.0 1.7 79 101300 675 1321 278 399 378 206 45201 29979 23454 8210 90 7.2 8 2 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.611E7 6.1 2.2 76 101300 756 1321 273 490 514 196 56577 39347 22741 8463 90 6.2 4 0 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.61136E7 6.7 3.3 80 101300 818 1321 277 552 569 199 64336 43109 23307 8921 100 5.7 2 0 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.61172E7 6.7 3.3 80 101300 857 1321 277 591 572 218 68846 44443 25525 9788 80 6.2 4 0 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.61208E7 6.7 3.3 80 101300 871 1321 296 541 392 281 61909 33552 32341 11827 90 6.2 10 6 11.3 7620 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.61244E7 6.7 3.3 80 101300 858 1321 282 562 547 205 65798 41557 24120 9348 90 5.7 4 1 11.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.6128E7 6.1 3.3 83 101300 820 1321 280 516 526 188 60435 39040 22123 8551 90 4.6 2 1 11.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.61316E7 6.1 2.8 80 101300 758 1321 286 424 361 216 48601 28612 24885 9100 60 6.7 6 3 11.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.61352E7 5.6 2.8 83 101300 678 1321 281 326 225 210 36892 17895 23886 8348 60 6.2 5 2 11.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.61388E7 5.6 2.2 79 101300 584 1321 277 319 390 145 36498 26709 16660 5924 60 5.7 2 1 11.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.61424E7 5.6 2.2 79 101400 483 1321 277 223 227 139 25024 14904 15665 5193 80 6.2 3 1 11.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.6146E7 5.0 2.2 83 101400 383 1321 278 169 176 118 18715 9984 13121 4088 70 5.2 4 2 11.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.61496E7 3.9 1.7 86 101400 289 1321 273 106 153 72 11868 5256 8088 2557 70 5.7 4 2 11.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.61532E7 3.3 1.1 86 101400 208 1321 270 67 63 57 7408 1074 6323 1887 90 4.1 4 2 11.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.61568E7 2.2 0.6 89 101400 147 1321 266 34 26 31 3831 0 3501 1078 50 4.6 3 2 16.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.61604E7 1.7 0.6 92 101400 108 1321 266 29 58 25 3239 0 2799 834 60 3.6 3 3 16.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.6164E7 1.7 0.0 89 101400 94 1321 266 22 52 18 2498 0 2048 628 70 4.1 3 3 16.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.61676E7 1.7 0.0 89 101500 107 1321 263 29 109 21 3282 0 2381 729 80 3.1 2 2 16.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.61712E7 1.7 0.6 92 101500 144 1321 266 48 77 40 5281 0 4414 1273 70 3.6 3 3 16.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.61748E7 2.8 1.1 89 101400 204 1321 271 78 185 50 8695 2293 5590 1707 80 3.1 3 3 16.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.61784E7 3.9 1.1 82 101500 284 1321 275 90 131 62 10178 3916 7032 2273 100 2.1 3 3 16.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.6182E7 4.4 1.1 79 101500 377 1321 277 189 400 75 21678 17612 8628 2942 40 2.6 3 3 16.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.61856E7 5.6 2.2 79 101500 478 1321 280 271 455 107 31006 26387 12287 4277 70 3.1 2 2 11.3 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.61892E7 6.7 2.8 77 101500 578 1321 286 349 543 111 40718 33456 12997 4793 40 3.1 3 2 11.3 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.61928E7 5.6 2.2 79 101500 672 1321 280 431 597 126 50739 39286 14890 5669 360 3.6 2 2 11.3 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.61964E7 5.6 2.8 83 101600 753 1321 281 508 656 133 60428 43931 15882 6223 30 3.1 2 2 11.3 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.62E7 6.7 3.3 80 101600 816 1321 286 545 678 125 65821 44471 15153 6095 20 4.1 2 2 11.3 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.62036E7 6.1 2.8 80 101700 855 1321 283 574 670 139 69223 45242 16830 6799 10 4.1 2 2 11.3 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.62072E7 6.1 2.8 80 101600 869 1321 283 589 679 141 71114 45975 17092 6925 360 3.6 2 2 11.3 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.62108E7 7.2 3.9 80 101600 856 1321 285 606 758 112 74272 48181 13775 5636 10 4.1 1 1 11.3 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.62144E7 6.7 3.3 80 101700 818 1321 282 543 664 130 65415 44006 15721 6312 10 4.6 4 1 11.3 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.6218E7 10.0 6.1 77 101700 756 1321 299 504 633 140 59687 42203 16647 6508 40 3.6 3 1 11.3 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.62216E7 8.9 4.4 74 101700 676 1321 292 408 548 126 48041 35630 14893 5687 30 4.1 3 1 11.3 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.62252E7 7.8 3.9 77 101700 582 1321 287 353 588 92 41823 33905 10934 4119 360 3.6 3 1 11.3 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.62288E7 7.2 3.3 77 101800 482 1321 284 282 553 79 33080 28382 9294 3375 360 2.6 2 1 11.3 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.62324E7 8.3 3.9 74 101800 381 1321 289 205 476 66 23767 19447 7673 2671 60 2.6 3 1 11.3 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.6236E7 3.9 1.7 86 101800 287 1321 270 127 301 61 14402 9007 6938 2261 300 4.1 3 1 11.3 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.62396E7 4.4 1.7 82 101800 206 1321 266 90 295 43 10173 2715 4873 1541 330 2.6 0 0 11.3 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.62432E7 5.0 1.7 79 101800 144 1321 269 54 193 33 6044 0 3703 1124 50 1.5 0 0 16.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.62468E7 2.8 1.1 89 101800 106 1321 260 41 276 19 4674 0 2170 673 270 3.6 0 0 16.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.62504E7 2.8 1.1 89 101800 92 1321 260 34 251 17 3870 0 1938 597 280 1.5 0 0 16.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.6254E7 2.8 1.7 93 101900 104 1321 265 36 219 19 4098 0 2167 670 260 1.5 3 1 16.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.62576E7 2.2 1.1 93 101900 141 1321 266 54 219 30 6074 0 3382 1036 250 4.1 4 2 16.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.62612E7 2.2 1.1 93 101900 202 1321 275 75 172 49 8365 1963 5481 1674 270 4.6 7 6 11.3 3660 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.62648E7 1.7 1.7 100 102000 281 1321 281 94 46 84 10357 1749 9290 2785 270 3.6 10 8 0.8 210 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.62684E7 2.2 2.2 100 102000 375 1321 298 78 6 76 8928 263 8725 2965 290 2.6 10 10 0.4 60 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.6272E7 2.2 2.2 100 102000 475 1321 298 94 3 93 10869 164 10789 3828 320 3.1 10 10 0.8 90 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.62756E7 2.8 2.2 96 102100 576 1321 301 128 5 126 14781 323 14606 5287 280 4.6 10 10 0.8 90 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.62792E7 2.8 2.2 96 102100 670 1321 301 169 4 167 19451 291 19307 7055 260 4.6 10 10 1.2 90 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.62828E7 2.2 1.1 93 102100 751 1321 297 213 0 213 21881 0 22074 8959 230 4.1 10 10 1.6 90 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.62864E7 2.2 1.1 93 102100 814 1321 297 295 4 293 33337 358 33306 11617 270 5.2 10 10 1.6 90 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.629E7 2.2 1.7 96 102200 853 1321 298 246 3 244 28399 245 28320 10605 290 5.2 10 10 1.6 90 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.62936E7 1.7 1.1 96 102200 867 1321 295 266 4 263 30603 336 30427 11282 290 5.2 10 10 1.6 90 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.62972E7 1.7 0.6 92 102300 854 1321 294 298 1 297 33886 89 33971 12114 300 4.6 10 10 1.6 90 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.63008E7 1.1 0.6 96 102300 816 1321 292 290 1 290 32822 89 33014 11575 300 5.2 10 10 1.6 90 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.63044E7 1.1 0.6 96 102300 754 1321 292 271 2 270 30511 176 30571 10500 310 5.7 10 10 1.6 90 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.6308E7 1.1 0.6 96 102300 674 1321 292 222 1 222 25010 82 25141 8625 320 5.2 10 10 1.6 90 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.63116E7 0.6 0.6 100 102300 580 1321 290 188 2 187 21067 154 21057 7026 330 4.6 10 10 1.6 90 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.63152E7 1.1 0.6 96 102300 479 1321 292 156 0 156 15659 0 15785 5563 320 4.6 10 10 1.6 90 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.63188E7 1.1 0.6 96 102400 379 1321 292 112 1 112 12449 55 12499 3935 310 4.6 10 10 1.6 90 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.63224E7 0.6 0.6 100 102400 284 1321 290 92 1 92 10083 42 10123 2970 330 4.1 10 10 1.6 90 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.6326E7 0.6 0.6 100 102400 204 1321 290 57 1 57 6292 17 6312 1870 340 4.6 10 10 1.6 90 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.63296E7 0.6 0.6 100 102400 142 1321 290 39 0 39 3799 0 3826 1254 360 3.6 10 10 1.6 90 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.63332E7 0.6 0.0 96 102400 103 1322 289 22 0 22 2135 0 2150 749 350 3.6 10 10 0.8 60 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.63368E7 0.0 -0.6 96 102400 89 1322 286 11 0 11 1067 0 1074 412 340 3.6 10 10 0.8 60 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.63404E7 0.0 0.0 100 102400 101 1322 287 16 0 16 1553 0 1563 580 330 3.1 10 10 0.8 60 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.6344E7 0.0 0.0 100 102400 139 1322 287 22 0 22 2142 0 2157 808 340 3.1 10 10 0.1 0 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.63476E7 0.0 0.0 100 102400 199 1322 287 32 0 32 3133 0 3156 1204 340 3.1 10 10 0.1 0 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.63512E7 0.0 0.0 100 102400 279 1322 287 79 1 78 8754 36 8674 2646 360 3.1 10 10 0.8 60 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.63548E7 0.0 0.0 100 102400 372 1322 287 102 1 101 11408 52 11338 3633 40 3.1 10 10 0.8 60 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.63584E7 0.0 0.0 100 102400 472 1322 287 140 1 139 15673 66 15628 5118 10 3.1 10 10 2.4 90 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.6362E7 0.6 0.0 96 102400 573 1322 289 183 1 182 20518 76 20504 6843 360 3.6 10 10 1.6 60 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.63656E7 1.1 0.6 96 102400 668 1322 284 244 113 187 27831 8650 21431 7640 10 3.1 10 9 3.2 90 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.63692E7 1.1 0.6 96 102400 749 1322 284 230 77 187 26638 5837 21760 8137 360 3.6 10 9 0.8 90 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.63728E7 1.1 0.6 96 102400 811 1322 274 292 138 207 33920 10746 24165 9155 360 4.1 7 7 4.8 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.63764E7 1.7 0.6 92 102400 851 1322 286 346 162 241 39982 13243 27998 10498 340 4.1 9 9 3.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.638E7 1.7 1.1 96 102400 865 1322 287 310 94 249 35809 7740 28919 10844 360 3.6 9 9 3.2 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.63836E7 2.2 1.1 93 102300 852 1322 289 280 81 228 32503 6467 26604 10096 350 4.1 9 9 3.2 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.63872E7 2.2 1.1 93 102200 814 1322 271 507 559 161 60088 39866 19164 7535 10 5.2 4 4 6.4 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.63908E7 2.2 1.1 93 102200 752 1322 271 425 444 171 49605 32505 20049 7624 360 4.6 9 4 6.4 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.63944E7 2.2 1.1 93 102200 672 1322 266 418 572 125 49267 37759 14788 5637 20 5.2 5 2 6.4 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.6398E7 2.2 1.1 93 102100 578 1322 266 339 524 109 39642 32403 12791 4729 20 5.7 5 2 9.7 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.64016E7 1.7 0.6 92 102100 477 1322 270 261 423 107 29888 24780 12298 4284 20 5.7 10 5 8.0 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.64052E7 1.7 0.6 92 102100 376 1322 294 73 0 73 7262 0 7318 2885 40 5.2 10 10 3.2 90 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.64088E7 1.1 1.1 100 102000 282 1322 292 50 6 48 5773 147 5555 1864 40 5.7 10 10 0.8 90 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.64124E7 1.1 0.6 96 102000 201 1322 292 36 1 36 4121 5 4130 1333 40 6.2 10 10 0.8 90 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.6416E7 0.6 0.6 100 102000 139 1322 290 24 3 23 2759 0 2649 842 40 4.6 10 10 0.4 30 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.64196E7 0.6 0.0 96 101900 100 1322 289 20 1 20 2263 0 2267 692 60 4.6 10 10 0.4 30 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.64232E7 0.0 -0.6 96 101800 86 1322 286 16 0 16 1551 0 1561 562 60 4.1 10 10 0.4 30 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.64268E7 0.0 0.0 100 101900 98 1322 287 22 1 22 2466 0 2472 740 80 4.1 10 10 0.4 60 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.64304E7 0.0 -0.6 96 101800 136 1322 286 28 1 28 3158 0 3165 972 80 4.1 10 10 0.4 30 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.6434E7 0.0 0.0 100 101800 196 1322 287 44 1 44 4940 8 4953 1535 60 3.1 10 10 0.8 60 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.64376E7 0.6 0.6 100 101800 276 1322 290 77 0 77 7591 0 7646 2611 60 3.1 10 10 2.4 90 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.64412E7 1.1 1.1 100 101700 369 1322 292 110 1 110 12203 54 12252 3825 90 3.1 10 10 4.8 120 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.64448E7 1.7 1.1 96 101700 470 1322 295 127 1 127 14309 63 14367 4802 100 3.6 10 10 4.8 120 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.64484E7 2.2 1.7 96 101600 571 1322 298 176 1 175 19775 74 19756 6655 120 4.1 10 10 1.6 120 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.6452E7 2.8 2.2 96 101600 665 1322 301 201 1 201 22771 78 22885 8009 120 4.1 10 10 1.6 90 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.64556E7 2.8 1.7 93 101600 746 1322 300 234 0 234 24024 0 24236 9519 90 4.6 10 10 1.6 90 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.64592E7 2.8 2.2 96 101600 809 1322 301 264 1 263 30063 85 30116 10816 120 4.6 10 10 1.6 90 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.64628E7 3.3 2.2 93 101600 849 1322 303 279 0 278 28890 0 29049 11561 70 5.7 10 10 6.4 90 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.64664E7 4.4 2.8 89 101500 863 1322 309 310 0 310 32132 0 32426 12521 90 5.2 10 10 8.0 120 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.647E7 3.9 2.2 89 101500 850 1322 306 303 1 303 34360 89 34565 12227 80 6.2 10 10 11.3 120 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.64736E7 2.8 1.7 93 101500 812 1322 300 280 2 279 31758 175 31827 11266 80 6.2 10 10 1.6 120 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.64772E7 2.8 1.1 89 101500 750 1322 300 237 1 237 26944 83 27088 9640 80 5.2 10 10 3.2 90 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.64808E7 2.8 1.1 89 101500 670 1322 291 216 62 184 24684 4703 21127 7578 80 5.7 10 9 9.7 120 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.64844E7 4.4 2.2 86 101500 576 1322 299 237 187 155 26929 13156 17689 6174 80 5.2 10 9 9.7 120 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.6488E7 3.3 1.7 89 101400 475 1322 294 158 48 141 17679 3174 15845 5194 90 5.7 10 9 9.7 120 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.64916E7 3.3 1.7 89 101400 374 1322 280 142 164 95 15973 8149 10725 3503 70 5.2 9 6 9.7 2740 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.64952E7 2.2 1.1 93 101400 279 1322 297 42 1 42 4897 22 4907 1665 80 6.2 10 10 1.6 90 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.64988E7 1.7 1.7 100 101400 198 1322 296 41 3 41 4638 20 4649 1469 90 6.7 10 10 0.4 90 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.65024E7 1.1 1.1 100 101400 136 1322 292 22 0 22 2142 0 2157 809 90 5.2 10 10 0.6 90 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.6506E7 1.1 0.6 96 101400 97 1322 278 12 2 12 1411 0 1412 451 90 4.6 10 8 1.2 120 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.65096E7 1.1 0.0 92 101400 84 1322 291 12 0 12 1163 0 1171 440 80 5.2 10 10 0.8 60 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.65132E7 1.1 1.1 100 101400 95 1322 292 18 0 18 1745 0 1757 630 90 5.2 10 10 0.4 60 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.65168E7 1.1 1.1 100 101400 133 1322 292 27 0 27 2627 0 2645 940 80 4.1 10 10 0.8 90 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.65204E7 1.1 1.1 100 101300 193 1322 278 61 5 60 6663 81 6577 1870 90 4.1 10 8 0.8 90 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.6524E7 1.7 1.1 96 101400 273 1322 295 40 11 38 4685 207 4459 1516 110 4.1 10 10 0.6 30 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.65276E7 1.7 1.7 100 101400 366 1322 296 85 11 82 9648 496 9338 3112 70 4.1 10 10 0.6 60 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.65312E7 1.7 1.7 100 101400 467 1322 296 107 3 106 12222 173 12152 4204 100 4.1 10 10 2.4 90 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.65348E7 2.8 1.7 93 101400 568 1322 300 137 1 137 15692 67 15756 5596 90 4.1 10 10 11.3 120 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.65384E7 3.9 1.7 86 101400 662 1322 305 218 1 218 24526 81 24654 8421 90 4.1 10 10 11.3 150 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.6542E7 5.0 2.2 83 101400 744 1322 283 472 503 188 54569 37966 21839 8142 70 4.6 7 4 11.3 2590 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.65456E7 6.1 2.8 80 101400 806 1322 286 511 478 219 59011 37704 25420 9515 90 4.6 9 3 11.3 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.65492E7 6.7 3.3 80 101400 846 1322 320 237 3 235 27399 240 27312 10281 80 4.1 10 10 11.3 1220 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.65528E7 6.7 3.3 80 101400 860 1322 311 395 152 296 44939 13347 33875 12146 90 4.1 10 9 11.3 1220 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.65564E7 6.7 3.3 80 101400 848 1322 286 551 507 224 63963 39866 26138 9940 90 5.2 10 2 11.3 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.656E7 6.7 3.3 80 101400 809 1322 282 529 596 162 62581 42153 19249 7556 80 4.6 3 1 11.3 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.65636E7 5.0 2.2 83 101400 748 1322 274 466 534 162 54564 38195 19052 7289 40 5.7 2 1 11.3 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.65672E7 6.1 2.8 80 101400 667 1322 274 427 573 136 49933 38535 15967 6019 60 5.2 0 0 11.3 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.65708E7 6.1 2.8 80 101400 573 1322 274 346 519 120 40099 32859 13960 5089 70 5.7 0 0 16.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.65744E7 5.0 2.2 83 101400 472 1322 274 255 437 97 29386 24268 11216 3956 80 4.6 1 1 11.3 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.6578E7 4.4 2.2 86 101400 371 1322 272 167 286 86 18921 13350 9777 3252 70 5.7 1 1 11.3 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.65816E7 3.3 1.7 89 101400 277 1322 274 93 129 65 10459 3915 7333 2339 70 4.1 5 3 11.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.65852E7 2.2 1.1 93 101400 196 1322 289 51 6 51 5661 72 5679 1711 70 5.7 9 9 3.2 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.65888E7 1.1 1.1 100 101400 133 1322 292 29 1 29 3262 0 3269 1000 60 4.6 10 10 0.8 150 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.65924E7 0.6 0.6 100 101400 94 1322 272 20 4 20 2253 0 2257 682 80 4.1 9 7 0.8 60 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.6596E7 0.6 0.0 96 101500 80 1322 265 13 2 13 1499 0 1501 468 80 4.1 7 5 1.2 60 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.65996E7 0.0 0.0 100 101500 92 1322 261 20 4 20 2250 0 2254 679 80 3.6 5 4 1.2 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.66032E7 0.6 0.6 100 101400 129 1322 276 17 5 16 1997 0 1881 609 80 3.1 8 8 0.8 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.66068E7 1.1 1.1 100 101500 190 1322 292 33 1 33 3780 0 3788 1219 70 3.1 10 10 0.4 30 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.66104E7 1.7 1.7 100 101500 269 1322 281 72 38 64 8079 1091 7204 2279 80 2.6 8 8 0.6 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.6614E7 1.7 1.7 100 101500 363 1322 296 44 0 44 4370 0 4403 1864 70 4.1 10 10 0.6 30 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.66176E7 2.8 2.8 100 101500 464 1322 302 77 2 76 9021 100 8929 3220 70 4.1 10 10 0.8 30 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.66212E7 4.4 2.2 86 101500 565 1322 272 311 410 135 35636 27183 15532 5522 80 4.1 4 1 11.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.66248E7 5.6 2.8 83 101500 660 1322 272 412 530 148 47773 36699 17233 6390 80 5.2 0 0 11.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.66284E7 6.1 2.8 80 101400 741 1322 274 486 574 163 56786 41046 19129 7287 80 4.6 0 0 11.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.6632E7 7.2 3.9 80 101400 804 1322 279 546 569 199 63482 43082 23250 8848 80 4.1 5 0 11.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.66356E7 5.6 3.3 86 101500 844 1322 287 469 318 266 53666 26808 30608 11191 80 5.2 9 4 11.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.66392E7 6.7 3.9 83 101400 858 1322 289 477 266 304 54120 23592 34698 12329 60 5.7 7 3 11.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.66428E7 6.7 3.9 83 101400 845 1322 287 545 465 247 62742 37896 28590 10650 70 6.2 7 2 11.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.66464E7 7.2 3.3 77 101400 807 1322 279 548 608 175 64417 44111 20665 8029 60 4.1 0 0 11.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.665E7 7.2 3.3 77 101400 746 1322 279 492 578 164 57510 41295 19255 7350 70 5.2 0 0 11.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.66536E7 6.7 3.9 83 101400 665 1322 277 417 530 149 48376 36579 17359 6457 50 4.6 0 0 11.3 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.66572E7 5.0 2.8 86 101400 571 1322 270 335 469 131 38536 30682 15130 5436 60 5.2 0 0 11.3 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.66608E7 5.0 1.7 79 101400 470 1322 274 239 289 135 26806 18668 15206 5020 70 4.6 6 1 11.3 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.66644E7 4.4 1.7 82 101400 368 1322 266 174 301 90 19631 14405 10189 3351 80 5.2 0 0 11.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.6668E7 3.9 1.7 86 101300 274 1322 264 112 202 70 12508 6467 7843 2455 90 5.2 0 0 11.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.66716E7 2.8 1.7 93 101300 193 1322 269 61 77 50 6773 829 5568 1678 100 5.7 5 2 11.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.66752E7 2.2 1.7 96 101300 130 1322 290 19 1 19 2207 0 2210 709 100 5.7 9 9 0.8 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.66788E7 1.7 1.7 100 101300 91 1322 287 23 15 22 2564 0 2458 726 100 2.6 9 9 0.8 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.66824E7 1.7 1.1 96 101300 77 1322 295 4 5 4 503 0 503 160 90 3.1 10 10 0.4 90 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.6686E7 2.2 1.7 96 101300 89 1322 298 23 7 22 2559 0 2454 721 90 3.1 10 10 0.0 0 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.66896E7 1.1 1.1 100 101300 126 1322 268 40 56 35 4402 0 3863 1111 100 3.1 5 5 0.6 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.66932E7 1.7 1.7 100 101300 186 1322 269 82 281 42 9196 1282 4723 1458 110 4.1 4 4 0.8 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.66968E7 2.8 2.8 100 101300 266 1322 302 46 2 45 5302 40 5199 1733 120 4.1 10 10 0.4 120 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.67004E7 4.4 4.4 100 101300 360 1322 310 108 4 107 11963 205 11900 3708 120 3.1 10 10 0.4 30 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.6704E7 5.6 5.6 100 101300 461 1322 317 129 5 128 14471 306 14419 4780 120 3.6 10 10 0.4 30 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.67076E7 6.7 6.7 100 101300 562 1322 323 154 4 153 17429 272 17393 6028 140 2.6 10 10 4.8 90 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.67112E7 11.7 7.8 77 101200 657 1322 312 447 742 77 54380 40779 9393 3682 90 3.1 2 2 11.3 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.67148E7 12.2 6.7 69 101200 738 1322 316 395 483 124 47055 30903 14827 5821 80 3.6 3 3 11.3 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.67184E7 14.4 8.3 67 101200 801 1322 328 539 688 121 64985 43219 14643 5888 110 3.1 3 3 16.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.6722E7 10.0 5.6 74 101200 841 1322 308 418 400 163 49645 27873 19444 7721 30 4.6 4 4 16.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.67256E7 12.8 7.8 72 101200 855 1322 320 595 767 97 73599 45908 12037 4956 60 3.1 3 3 16.1 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.67292E7 6.7 3.9 83 101200 843 1322 289 572 715 114 69875 45646 13975 5696 30 4.1 3 3 16.1 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.67328E7 11.1 6.7 74 101300 805 1322 308 578 803 87 71532 47279 10799 4403 20 4.1 2 2 11.3 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.67364E7 12.2 7.8 75 101200 743 1322 310 494 759 65 53310 76746 9551 1639 50 4.6 1 1 11.3 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.674E7 8.9 4.4 74 101200 662 1322 299 436 610 128 51155 39814 15076 5714 10 4.1 3 3 11.3 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.67436E7 12.8 7.8 72 101200 568 1322 317 387 718 76 46339 37643 9125 3468 50 3.1 2 2 11.3 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.67472E7 7.2 2.8 74 101200 467 1322 284 287 691 41 30991 65554 6408 1055 320 4.1 1 1 11.3 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.67508E7 4.4 2.2 86 101200 365 1322 278 198 459 70 22773 19026 8075 2763 330 3.1 3 3 11.3 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.67544E7 6.7 3.3 80 101200 271 1322 293 125 270 69 13955 8295 7729 2420 50 2.1 5 5 11.3 2000 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.6758E7 7.2 3.9 80 101200 189 1322 296 70 140 50 7756 1327 5557 1668 90 2.1 5 5 11.3 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.67616E7 7.8 5.0 83 101200 127 1322 297 45 155 29 5037 0 3254 987 140 2.1 4 4 16.1 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.67652E7 5.6 2.8 83 101200 88 1322 277 25 136 16 2851 0 1828 565 290 2.1 2 1 11.3 2000 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.67688E7 4.4 1.7 82 101300 74 1322 275 20 126 13 2293 0 1492 461 270 3.1 2 2 11.3 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +1.67724E7 3.3 2.8 96 101300 86 1322 275 23 101 16 2618 0 1824 561 280 3.6 5 3 4.8 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +1.6776E7 5.0 3.9 93 101300 123 1322 285 35 99 26 3935 0 2930 894 200 2.1 5 4 11.3 2000 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +1.67796E7 7.8 5.6 86 101300 183 1322 303 66 83 55 7217 836 6034 1733 240 3.1 7 6 11.3 7620 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +1.67832E7 7.2 4.4 83 101300 263 1322 308 87 158 55 9851 3652 6245 2020 240 5.7 8 8 11.3 2440 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +1.67868E7 7.2 4.4 83 101300 356 1322 303 122 102 94 13645 4800 10552 3390 240 6.7 8 7 11.3 3050 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +1.67904E7 8.3 5.6 83 101300 457 1322 329 77 0 77 7699 0 7761 3239 240 6.2 10 10 11.3 3050 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +1.6794E7 7.8 5.6 86 101300 559 1322 327 168 3 167 18875 214 18850 6377 260 5.2 10 10 11.3 3050 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +1.67976E7 8.3 6.1 86 101300 654 1322 330 204 9 199 23047 690 22595 7876 240 6.7 10 10 11.3 3350 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +1.68012E7 8.3 6.1 86 101300 735 1322 321 214 43 190 24650 3196 21991 8159 270 6.7 9 9 11.3 3350 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +1.68048E7 7.2 5.0 86 101300 798 1322 303 369 242 222 42477 19016 25688 9558 280 5.7 7 7 11.3 3050 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +1.68084E7 6.7 4.4 86 101300 838 1322 305 360 207 228 41650 16335 26516 10010 270 5.2 8 8 11.3 3050 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +1.6812E7 6.1 3.3 83 101300 853 1322 317 192 6 189 22606 444 22359 8753 280 4.1 10 10 11.3 4570 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.68156E7 5.0 2.8 86 101300 840 1322 311 219 10 212 25507 773 24816 9499 300 4.1 10 10 11.3 4570 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.68192E7 4.4 2.8 89 101300 802 1322 294 356 204 232 40901 16473 26795 9893 330 3.6 10 8 11.3 3350 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.68228E7 3.9 2.2 89 101300 740 1322 297 282 59 249 31868 4999 28293 9874 360 3.6 10 9 11.3 2440 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.68264E7 2.8 1.7 93 101300 660 1322 292 264 62 232 29548 5200 26106 8742 330 4.1 10 9 11.3 2440 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.683E7 3.3 1.7 89 101300 565 1322 294 194 56 170 21837 4111 19225 6513 20 3.6 10 9 11.3 2440 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.68336E7 2.8 1.7 93 101300 464 1322 276 204 215 128 22950 13498 14460 4813 30 2.6 10 5 8.0 2000 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.68372E7 3.9 3.3 96 101300 362 1322 307 77 7 75 8797 296 8595 2907 40 2.6 10 10 0.8 60 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.68408E7 2.2 1.7 96 101300 267 1322 298 45 8 44 5207 166 5102 1710 10 2.6 10 10 0.4 60 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +1.68444E7 2.8 2.2 96 101200 186 1322 301 48 7 47 5341 55 5245 1589 20 2.1 10 10 4.8 60 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +1.6848E7 2.2 1.7 96 101200 124 1322 276 37 12 36 4065 0 3967 1135 70 3.1 9 6 11.3 2440 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +1.68516E7 2.8 2.2 96 101200 85 1322 282 17 7 17 1925 0 1928 587 90 3.1 9 7 11.3 2290 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +1.68552E7 3.3 1.7 89 101200 71 1322 280 15 6 15 1695 0 1698 512 110 3.1 9 6 11.3 2290 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +1.68588E7 3.3 2.2 93 101100 82 1322 289 11 5 11 1287 0 1288 408 90 2.6 9 8 11.3 2590 9 999999999 24 0.0000 0 88 0.000 0.0 1.0 +1.68624E7 3.3 2.2 93 101100 119 1322 281 28 15 26 3143 0 2925 887 80 1.5 9 6 11.3 2440 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +1.6866E7 3.9 2.2 89 101000 179 1322 306 31 1 31 3551 0 3558 1142 350 2.6 10 10 11.3 150 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +1.68696E7 2.2 1.7 96 101000 259 1322 298 34 4 33 4007 57 3896 1326 300 1.5 10 10 11.3 150 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +1.68732E7 1.1 1.1 100 101000 353 1322 292 40 2 40 4787 62 4795 1701 260 2.6 10 10 0.8 310 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +1.68768E7 1.7 1.1 96 101100 454 1322 287 127 45 111 14412 2629 12644 4295 270 6.2 10 9 6.4 60 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.68804E7 1.7 1.1 96 101100 556 1322 295 63 11 59 7685 563 7212 2747 270 5.2 10 10 1.6 120 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.6884E7 2.2 1.7 96 101100 651 1322 298 198 38 179 22583 2848 20512 7305 270 5.7 10 10 1.6 60 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.68876E7 2.2 1.7 96 101100 732 1322 298 222 6 218 25318 482 24989 8976 270 6.2 10 10 1.6 60 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.68912E7 2.8 1.7 93 101100 796 1322 286 344 191 229 39526 15442 26450 9751 260 7.2 8 8 11.3 2590 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.68948E7 3.9 1.7 86 101100 836 1322 286 426 258 262 48765 21806 30159 11015 270 5.7 7 7 11.3 2290 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.68984E7 2.8 1.1 89 101100 850 1322 300 235 10 229 27262 800 26705 10118 270 6.7 10 10 11.3 1680 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.6902E7 3.9 1.7 86 101200 838 1322 305 250 1 250 28737 83 28894 10686 260 5.2 10 10 11.3 820 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.69056E7 3.3 2.8 96 101200 799 1322 304 135 19 124 16278 1247 15007 6012 230 4.1 10 10 6.4 430 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.69092E7 4.4 3.3 93 101200 738 1322 301 249 66 212 28482 5199 24372 8852 240 5.2 10 9 11.3 820 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.69128E7 5.0 3.3 89 101200 657 1322 312 144 7 140 16767 474 16367 6117 270 4.6 10 10 11.3 610 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.69164E7 5.6 4.4 93 101200 562 1322 316 162 15 155 18345 1042 17630 6101 280 4.6 10 10 11.3 760 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.692E7 4.4 3.3 93 101200 461 1322 309 102 0 102 10214 0 10296 4072 250 3.6 10 10 11.3 670 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.69236E7 5.6 4.4 93 101200 359 1322 316 79 2 78 8986 85 8901 2985 250 3.1 10 10 11.3 460 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.69272E7 5.6 4.4 93 101200 264 1322 316 76 0 76 7477 0 7532 2553 250 2.6 10 10 11.3 400 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.69308E7 3.3 2.8 96 101200 183 1322 304 31 0 31 3029 0 3051 1153 280 2.6 10 10 2.4 270 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.69344E7 2.8 2.8 100 101300 120 1322 302 19 1 19 2193 0 2197 699 250 4.1 10 10 0.8 150 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.6938E7 2.2 2.2 100 101200 81 1322 298 9 0 9 871 0 877 342 220 2.1 10 10 0.8 150 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.69416E7 2.2 1.1 93 101200 67 1322 297 7 0 7 677 0 682 267 230 2.6 10 10 0.8 90 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.69452E7 1.1 1.1 100 101200 79 1322 284 15 3 14 1717 0 1605 496 240 2.6 10 9 1.2 3050 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.69488E7 1.7 1.7 100 101200 115 1322 281 26 9 26 2912 0 2918 879 210 2.6 10 8 1.6 7620 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.69524E7 2.8 2.8 100 101100 176 1322 302 28 1 28 3227 0 3233 1046 190 3.1 10 10 0.2 90 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.6956E7 5.6 5.6 100 101000 256 1322 317 65 3 64 7247 76 7159 2230 180 6.2 10 10 0.4 90 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.69596E7 6.1 6.1 100 101000 349 1322 320 68 5 67 7796 186 7703 2618 170 5.2 10 10 0.4 90 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.69632E7 7.8 7.2 96 100900 451 1322 329 92 4 90 10585 203 10389 3652 160 6.2 10 10 0.8 30 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.69668E7 8.9 8.3 96 100900 552 1322 335 130 2 129 14875 125 14820 5280 160 4.1 10 10 0.8 90 9 999999999 20 0.0000 0 88 0.000 0.1 1.0 +1.69704E7 10.6 10.0 96 100800 647 1322 345 117 2 116 13756 121 13689 5216 170 6.2 10 10 11.3 760 9 999999999 22 0.0000 0 88 0.000 0.1 1.0 +1.6974E7 12.2 10.6 90 100800 729 1322 354 146 4 144 17134 260 16970 6555 220 6.7 10 10 11.3 760 9 999999999 24 0.0000 0 88 0.000 0.1 1.0 +1.69776E7 12.8 11.1 90 100800 793 1322 358 134 1 134 15985 63 16049 6398 210 5.2 10 10 11.3 760 9 999999999 26 0.0000 0 88 0.000 0.2 1.0 +1.69812E7 7.2 6.1 93 100800 833 1322 325 151 3 149 18031 203 17866 7138 240 7.7 10 10 11.3 1680 9 999999999 28 0.0000 0 88 0.000 0.2 1.0 +1.69848E7 5.6 5.0 96 100800 847 1322 316 161 1 161 19165 70 19248 7668 240 6.2 10 10 8.0 670 9 999999999 29 0.0000 0 88 0.000 0.2 1.0 +1.69884E7 5.0 4.4 96 100800 835 1322 313 162 0 162 16743 0 16896 7660 240 5.7 10 10 8.0 90 9 999999999 31 0.0000 0 88 0.000 0.0 1.0 +1.6992E7 3.9 3.3 96 100800 796 1322 307 153 1 152 18152 69 18109 7126 250 7.7 10 10 6.4 90 9 999999999 29 0.0000 0 88 0.000 0.0 1.0 +1.69956E7 2.8 2.2 96 100900 735 1322 301 157 1 157 18388 71 18467 7055 260 7.7 10 10 8.0 760 9 999999999 27 0.0000 0 88 0.000 0.0 1.0 +1.69992E7 2.2 1.7 96 100900 654 1322 298 137 1 137 15978 68 16042 6002 260 6.7 10 10 8.0 610 9 999999999 25 0.0000 0 88 0.000 0.0 1.0 +1.70028E7 1.7 1.7 100 101000 559 1322 296 105 0 105 10611 0 10699 4530 270 7.7 10 10 0.6 60 9 999999999 23 0.0000 0 88 0.000 0.0 1.0 +1.70064E7 1.1 0.6 96 101100 458 1322 292 75 1 75 8795 50 8820 3178 250 8.2 10 10 2.4 120 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +1.701E7 0.6 0.0 96 101100 356 1322 289 61 1 61 7079 39 7098 2452 260 7.7 10 10 1.6 90 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.70136E7 0.6 0.0 96 101200 261 1322 289 70 0 70 6895 0 6946 2406 270 9.8 10 10 4.8 120 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.70172E7 0.6 0.0 96 101200 179 1322 289 40 0 40 3911 0 3939 1398 260 7.7 10 10 4.8 400 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.70208E7 1.1 0.0 92 101200 117 1322 291 28 0 28 2723 0 2741 939 260 8.8 10 10 4.8 400 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.70244E7 0.6 0.0 96 101300 77 1322 289 9 0 9 872 0 877 340 260 10.8 10 10 11.3 310 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.7028E7 0.6 -0.6 92 101400 63 1322 289 12 0 12 1161 0 1169 421 250 10.3 10 10 4.8 310 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.70316E7 0.6 0.0 96 101400 75 1322 289 16 0 16 1549 0 1560 546 250 9.3 10 10 8.0 310 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.70352E7 0.6 0.0 96 101400 112 1322 289 25 0 25 2429 0 2445 846 250 8.8 10 10 6.4 310 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.70388E7 0.6 -0.6 92 101500 172 1322 289 45 0 45 4397 0 4428 1485 270 9.8 10 10 8.0 310 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.70424E7 0.6 0.0 96 101600 252 1322 289 77 0 77 7577 0 7632 2496 260 10.3 10 10 9.7 310 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.7046E7 0.6 0.0 96 101600 346 1322 289 111 1 110 12233 53 12173 3689 270 9.3 10 10 6.4 310 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.70496E7 1.1 -0.6 89 101700 447 1322 277 160 58 141 17783 3836 15740 5003 250 10.3 10 8 9.7 310 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.70532E7 1.1 0.6 96 101800 549 1322 270 240 177 166 26965 12903 18737 6285 240 7.7 10 6 2.4 120 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.70568E7 1.1 0.6 96 101800 644 1322 270 318 362 141 36930 24875 16442 6087 250 8.2 10 6 2.4 120 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.70604E7 1.7 0.6 92 101900 726 1322 266 439 514 156 51370 36614 18333 6975 250 8.8 10 3 4.8 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.7064E7 2.2 0.6 89 102000 789 1322 268 519 640 135 62103 43489 16217 6429 250 8.2 10 3 11.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.70676E7 2.2 0.6 89 102000 830 1322 272 509 458 221 59020 36395 25757 9732 250 8.8 10 5 11.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.70712E7 2.8 1.1 89 102000 844 1322 275 474 486 163 56413 34671 19484 7735 250 7.2 10 5 11.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.70748E7 2.8 1.1 89 102100 832 1322 285 427 310 231 49354 24989 26840 10068 250 7.7 10 8 11.3 90 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.70784E7 2.2 0.6 89 102000 793 1322 272 436 450 164 51439 32416 19434 7568 270 7.7 10 5 9.7 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.7082E7 2.2 0.6 89 102100 732 1322 270 372 391 155 43609 27783 18248 6971 270 6.7 9 4 11.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.70856E7 2.2 0.6 89 102100 651 1322 268 403 481 164 46325 34972 18936 6873 260 6.7 10 3 11.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.70892E7 1.7 0.6 92 102100 556 1322 268 299 447 109 34820 27503 12739 4658 260 6.7 9 4 11.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.70928E7 2.2 0.6 89 102200 454 1322 272 156 55 137 17420 3578 15364 4980 250 6.7 10 5 11.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.70964E7 1.1 0.6 96 102200 352 1322 278 116 112 86 13083 5137 9733 3184 260 6.7 10 8 11.3 2900 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.71E7 1.1 0.6 96 102200 257 1322 292 52 95 33 6135 1419 3899 1328 240 6.2 10 10 0.6 30 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.71036E7 1.1 1.1 100 102200 175 1322 292 35 2 34 3980 0 3875 1228 240 5.7 10 10 0.6 30 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.71072E7 1.7 1.7 100 102300 113 1322 296 22 2 22 2500 0 2504 776 250 5.7 10 10 0.4 30 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.71108E7 1.1 1.1 100 102300 74 1323 292 9 1 9 1062 0 1063 337 250 6.2 10 10 0.4 30 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.71144E7 0.6 0.0 96 102300 59 1323 281 13 3 13 1471 0 1474 444 240 5.2 9 9 0.4 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.7118E7 0.6 0.0 96 102400 71 1323 255 15 65 11 1739 0 1277 399 240 3.1 1 1 11.3 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.71216E7 1.1 0.0 92 102400 108 1323 263 29 44 25 3243 0 2802 837 230 3.1 4 3 11.3 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.71252E7 1.1 0.0 92 102400 168 1323 257 60 208 34 6788 0 3855 1205 230 3.6 2 1 11.3 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.71288E7 1.1 0.6 96 102400 248 1323 258 111 331 49 12633 6515 5591 1812 230 4.1 2 1 11.3 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.71324E7 2.8 1.1 89 102400 342 1323 260 182 472 61 21012 17231 7061 2411 240 4.6 2 0 16.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.7136E7 3.9 1.7 86 102400 443 1323 270 228 419 88 26285 21789 10178 3565 240 3.6 2 1 16.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.71396E7 3.3 1.1 86 102400 545 1323 270 325 485 124 37350 31093 14306 5094 240 6.2 3 2 16.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.71432E7 4.4 1.7 82 102500 641 1323 282 317 336 154 36523 23728 17819 6495 240 6.2 6 5 16.1 3050 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.71468E7 5.0 2.2 83 102500 723 1323 291 386 258 245 43525 21809 27777 9609 250 6.2 8 7 16.1 1490 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.71504E7 6.1 2.8 80 102500 786 1323 279 531 727 98 65023 45034 12039 4861 250 5.2 1 1 16.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.7154E7 6.1 2.8 80 102500 827 1323 279 559 724 104 68602 45541 12806 5216 250 6.2 1 1 16.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.71576E7 6.1 3.3 83 102500 841 1323 286 537 516 207 62662 39460 24275 9334 250 6.2 4 3 16.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.71612E7 5.6 3.3 86 102500 829 1323 273 601 782 109 73519 49579 13379 5444 270 4.6 0 0 16.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.71648E7 5.0 2.8 86 102500 790 1323 275 546 688 132 65429 45951 15879 6315 270 5.7 1 1 11.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.71684E7 3.9 1.7 86 102500 729 1323 273 472 657 107 56888 41615 12940 5112 270 5.7 3 2 11.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.7172E7 3.3 1.7 89 102500 648 1323 274 344 375 159 39604 26811 18386 6700 270 5.2 9 3 9.7 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.71756E7 1.7 1.1 96 102500 553 1323 287 183 49 162 20630 3526 18346 6230 280 5.7 10 9 0.6 7620 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.71792E7 1.1 0.6 96 102500 451 1323 284 153 33 141 17030 2176 15763 5050 280 5.2 10 9 0.6 7620 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.71828E7 0.6 0.6 100 102600 349 1323 290 74 42 63 8548 1611 7297 2500 280 5.7 10 10 0.6 30 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.71864E7 0.6 0.0 96 102600 253 1323 271 96 77 80 10534 2660 8811 2582 280 5.7 10 7 0.6 7620 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.719E7 0.0 0.0 100 102600 172 1323 287 29 3 29 3336 0 3342 1076 270 6.2 10 10 0.6 7620 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.71936E7 -0.6 -0.6 100 102600 109 1323 284 31 7 30 3428 0 3326 965 250 6.7 10 10 0.4 7620 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.71972E7 -0.6 -1.1 96 102600 70 1323 275 8 7 7 960 0 840 268 250 4.6 10 9 0.6 7620 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.72008E7 -1.1 -1.1 100 102600 56 1323 273 5 0 5 483 0 487 193 240 5.7 10 9 0.6 7620 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.72044E7 -1.1 -1.1 100 102600 67 1323 258 17 45 14 1927 0 1590 481 260 7.2 6 5 2.4 2290 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.7208E7 -0.6 -0.6 100 102600 104 1323 263 30 61 25 3345 0 2795 828 250 6.2 8 6 11.3 2130 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.72116E7 -0.6 -1.1 96 102600 164 1323 256 61 225 33 6906 0 3744 1169 250 6.2 4 3 11.3 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.72152E7 0.0 -0.6 96 102600 244 1323 259 115 292 61 12842 7240 6833 2116 260 6.7 5 3 11.3 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.72188E7 0.6 -0.6 92 102600 338 1323 275 103 68 86 11559 3047 9685 3110 260 6.7 8 8 16.1 2130 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.72224E7 1.7 -0.6 85 102600 440 1323 285 150 127 108 17006 7312 12290 4146 260 6.2 9 9 16.1 2740 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.7226E7 2.2 0.0 85 102600 542 1323 288 158 62 132 18059 4093 15148 5321 260 7.2 9 9 16.1 2740 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.72296E7 2.8 0.0 82 102600 637 1323 290 244 114 189 27648 8812 21520 7495 270 6.2 9 9 16.1 2130 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.72332E7 2.8 0.0 82 102600 719 1323 290 268 112 207 30634 8891 23779 8572 260 7.2 9 9 16.1 2440 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.72368E7 2.8 0.0 82 102600 783 1323 290 262 77 216 30194 6141 25019 9273 250 6.7 9 9 16.1 2590 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.72404E7 3.9 0.6 79 102600 823 1323 304 152 8 147 18174 556 17649 7026 260 6.2 10 10 16.1 2590 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.7244E7 3.3 0.6 82 102500 838 1323 301 242 34 220 28112 2692 25687 9752 260 6.2 10 10 16.1 2740 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.72476E7 3.9 0.6 79 102500 826 1323 304 222 6 218 25755 475 25420 9614 250 7.7 10 10 16.1 2740 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.72512E7 3.3 0.6 82 102500 787 1323 282 381 195 264 43243 16831 30131 10673 270 6.2 9 7 11.3 2900 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.72548E7 3.3 0.6 82 102400 725 1323 287 370 230 243 41803 19469 27603 9598 270 5.2 8 8 11.3 2900 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.72584E7 4.4 1.1 79 102400 644 1323 284 291 262 163 33421 18965 18804 6807 290 5.7 7 6 11.3 2900 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.7262E7 3.9 0.6 79 102400 549 1323 289 250 230 154 28282 16212 17499 5999 300 4.1 8 8 11.3 2900 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.72656E7 2.8 0.6 86 102300 447 1323 285 176 72 152 19452 4939 16877 5258 250 4.1 9 8 11.3 2740 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.72692E7 2.2 0.0 85 102300 345 1323 288 99 37 89 11113 1719 10026 3232 280 3.6 9 9 11.3 2740 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.72728E7 2.2 0.6 89 102200 249 1323 282 90 55 79 9871 1845 8697 2543 250 4.1 8 8 11.3 2740 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.72764E7 1.7 0.0 89 102200 168 1323 280 45 28 42 5014 63 4692 1416 290 4.1 9 8 11.3 2740 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.728E7 1.7 0.6 92 102200 105 1323 280 17 20 16 1972 0 1858 590 260 4.1 10 8 11.3 2900 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.72836E7 1.7 0.6 92 102100 66 1323 286 4 2 4 499 0 498 159 270 3.6 10 9 11.3 2900 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.72872E7 1.1 0.6 96 102100 52 1323 278 7 1 7 825 0 826 260 280 3.6 10 8 11.3 2900 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.72908E7 1.1 0.6 96 102100 63 1323 284 10 1 10 1160 0 1161 362 280 4.1 10 9 11.3 3050 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.72944E7 1.1 0.6 96 102000 99 1323 278 14 9 13 1640 0 1524 487 290 4.1 9 8 11.3 3660 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.7298E7 1.1 0.6 96 102000 160 1323 274 38 24 35 4270 0 3943 1212 270 4.6 8 7 11.3 3350 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.73016E7 1.1 0.6 96 101900 240 1323 270 71 89 55 7981 1881 6200 1953 280 4.6 8 6 11.3 3660 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.73052E7 1.1 0.0 92 101900 334 1323 267 141 221 85 15817 9717 9568 3068 280 4.1 7 5 11.3 3660 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.73088E7 0.6 0.0 96 101900 436 1323 268 167 124 126 18676 7667 14150 4590 290 4.1 8 6 8.0 3350 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.73124E7 0.6 0.0 96 101900 538 1323 271 212 152 150 23963 10594 17029 5807 320 3.6 9 7 3.2 3350 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.7316E7 1.1 0.0 92 101800 633 1323 267 380 484 147 43903 33830 17055 6236 300 3.6 7 5 11.3 3050 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.73196E7 1.7 0.6 92 101900 716 1323 266 427 501 155 49901 35625 18191 6894 320 3.6 6 3 6.4 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.73232E7 1.1 0.0 92 101800 780 1323 291 207 32 188 24105 2425 21996 8348 330 4.1 10 10 1.6 60 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.73268E7 1.1 0.0 92 101800 820 1323 291 212 6 208 24664 468 24319 9248 300 4.1 10 10 0.8 60 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.73304E7 0.6 0.0 96 101800 835 1323 289 234 10 228 27096 805 26538 9991 330 4.1 10 10 0.8 60 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.7334E7 1.1 0.0 92 101800 822 1323 291 258 4 255 29549 338 29366 10720 340 3.6 10 10 0.8 60 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.73376E7 1.1 0.0 92 101800 784 1323 291 122 7 118 14741 460 14309 5719 350 5.2 10 10 0.8 90 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.73412E7 1.1 0.6 96 101800 722 1323 292 200 5 198 22958 389 22839 8337 360 5.2 10 10 0.8 90 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.73448E7 0.6 0.0 96 101800 641 1323 289 221 5 218 24784 412 24575 8264 20 5.2 10 10 0.8 90 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.73484E7 0.0 0.0 100 101800 546 1323 287 138 2 138 15741 135 15806 5533 10 5.2 10 10 0.8 90 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.7352E7 0.0 -0.6 96 101800 443 1323 286 121 1 121 13618 61 13673 4529 10 5.7 10 10 1.6 60 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.73556E7 0.0 -1.1 92 101800 341 1323 286 87 0 87 8635 0 8700 3165 30 5.2 10 10 1.6 90 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.73592E7 -0.6 -1.1 96 101800 245 1323 269 62 48 53 7019 1066 6017 1929 30 5.2 10 8 1.6 90 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.73628E7 0.0 -1.1 92 101800 163 1323 286 30 1 30 3429 0 3436 1093 20 5.2 10 10 1.6 90 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.73664E7 -1.1 -1.7 96 101900 101 1323 280 14 1 14 1638 0 1639 523 30 4.6 10 10 1.6 90 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.737E7 -1.1 -1.7 96 101900 61 1323 280 7 0 7 677 0 682 265 30 4.6 10 10 1.6 90 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.73736E7 -1.1 -1.7 96 101900 47 1323 267 3 9 3 376 0 375 118 30 4.1 10 8 1.6 90 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.73772E7 -1.7 -2.2 96 101900 59 1323 251 12 34 10 1387 0 1157 358 40 4.1 8 3 3.2 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.73808E7 -1.7 -2.2 96 101900 95 1323 257 26 27 24 2892 0 2676 785 30 5.2 9 6 2.4 90 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.73844E7 -1.7 -2.2 96 101900 155 1323 277 34 5 33 3833 0 3729 1151 40 4.1 10 10 11.3 90 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.7388E7 -1.1 -2.2 92 101900 236 1323 280 49 6 48 5564 108 5464 1753 10 4.6 10 10 4.8 150 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.73916E7 -1.1 -2.2 92 101900 330 1323 259 109 90 87 12195 4041 9768 3100 20 6.2 10 6 4.8 340 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.73952E7 -1.1 -2.8 89 102000 432 1323 272 104 87 76 12109 4310 8874 3138 20 4.1 9 9 11.3 310 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.73988E7 -0.6 -2.8 85 102000 534 1323 274 128 40 112 14808 2498 13004 4666 20 6.2 10 9 11.3 310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.74024E7 -0.6 -2.8 85 102000 630 1323 264 348 381 166 39816 28198 19078 6803 20 5.2 7 7 11.3 310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.7406E7 -0.6 -2.8 85 102000 712 1323 274 265 98 212 30214 7940 24293 8665 20 4.1 10 9 11.3 310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.74096E7 0.0 -2.2 85 102000 776 1323 277 311 85 261 35278 7392 29771 10488 360 4.6 9 9 11.3 310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.74132E7 -0.6 -2.2 89 102100 817 1323 282 231 11 224 26717 890 26041 9746 20 4.6 10 10 11.3 240 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.74168E7 0.0 -1.7 89 102100 831 1323 277 306 97 245 35227 8082 28356 10494 350 4.6 10 9 11.3 240 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.74204E7 0.0 -1.7 89 102100 819 1323 271 406 252 249 46582 21199 28724 10522 20 4.6 10 8 6.4 150 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.7424E7 0.6 -1.1 89 102100 781 1323 262 457 466 180 53435 34911 21143 8085 10 4.6 10 4 9.7 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.74276E7 1.1 -0.6 89 102100 718 1323 267 388 390 175 44963 29079 20372 7594 10 4.6 10 5 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.74312E7 1.1 -0.6 89 102100 637 1323 277 296 221 189 33564 17117 21534 7513 10 4.6 10 8 11.3 340 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.74348E7 1.1 -1.1 85 102100 542 1323 282 174 3 173 19478 224 19457 6428 10 4.6 10 9 11.3 340 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.74384E7 0.6 -1.7 85 102100 440 1323 269 194 247 111 21973 14522 12620 4246 10 4.1 9 7 11.3 400 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.7442E7 0.0 -1.7 89 102100 337 1323 264 152 193 102 16841 9758 11345 3497 20 4.6 10 6 11.3 340 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.74456E7 0.0 -1.1 92 102100 241 1323 286 56 6 55 6312 135 6217 1971 360 3.6 10 10 9.7 270 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.74492E7 0.0 -1.1 92 102200 159 1323 286 21 0 21 2051 0 2065 808 10 3.6 10 10 9.7 400 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.74528E7 0.0 -1.1 92 102200 96 1323 278 28 13 27 3097 0 2994 866 20 3.6 10 9 11.3 430 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.74564E7 0.0 -0.6 96 102200 57 1323 259 11 28 10 1269 0 1155 357 360 3.1 4 3 11.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.746E7 -0.6 -0.6 100 102200 43 1323 276 0 3 0 0 0 0 0 350 3.1 10 9 0.6 60 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.74636E7 -0.6 -1.1 96 102200 54 1323 262 10 6 10 1151 0 1152 355 20 3.1 10 6 0.8 30 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.74672E7 0.0 -0.6 96 102200 91 1323 286 9 2 9 1078 0 1079 347 360 4.6 10 10 0.4 90 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.74708E7 -0.6 -0.6 100 102200 151 1323 284 29 3 29 3295 0 3302 1034 360 5.2 10 10 0.4 90 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.74744E7 -1.1 -1.1 100 102200 231 1323 260 97 205 61 10779 4749 6800 2068 340 4.1 6 6 0.6 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.7478E7 -1.1 -1.1 100 102300 326 1323 248 171 463 57 19764 15773 6605 2245 340 4.6 3 1 4.8 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.74816E7 -0.6 -1.1 96 102300 428 1323 250 247 533 74 28778 25755 8646 3059 320 4.1 3 1 9.7 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.74852E7 0.0 -1.1 92 102200 530 1323 256 327 626 75 38984 33869 8965 3343 330 5.2 4 2 9.7 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.74888E7 0.0 -0.6 96 102300 626 1323 261 345 388 161 39519 28145 18524 6633 340 5.2 10 4 4.8 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.74924E7 0.6 -0.6 92 102200 709 1323 258 454 653 103 54702 41305 12451 4890 320 4.6 4 2 11.3 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.7496E7 1.1 0.0 92 102300 773 1323 261 507 671 113 61331 43594 13717 5475 290 5.7 4 2 11.3 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.74996E7 1.7 0.0 89 102300 813 1323 260 548 677 130 66040 45616 15726 6301 290 5.2 3 1 11.3 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.75032E7 2.2 0.0 85 102200 828 1323 261 573 768 90 71153 47556 11209 4584 290 5.7 3 1 11.3 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.75068E7 2.2 0.0 85 102200 816 1323 265 514 561 167 60794 40648 19840 7775 300 6.7 5 2 11.3 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.75104E7 2.2 0.0 85 102200 777 1323 288 262 119 192 30453 9088 22423 8476 280 5.7 9 9 11.3 1980 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.7514E7 2.2 0.0 85 102100 715 1323 277 374 310 205 42764 24523 23557 8498 290 6.2 8 7 11.3 1980 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.75176E7 2.2 0.0 85 102100 633 1323 270 385 561 115 45370 36057 13601 5142 290 5.7 5 4 11.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.75212E7 2.2 0.0 85 102100 538 1323 261 334 653 65 40341 34076 7869 2971 290 6.2 1 1 11.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.75248E7 1.7 0.0 89 102000 436 1323 294 96 1 96 10986 54 11023 3799 310 6.2 10 10 11.3 150 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.75284E7 1.1 0.6 96 102000 333 1323 292 76 1 76 8610 41 8637 2843 310 5.7 10 10 1.2 60 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.7532E7 0.6 0.6 100 101900 237 1323 290 53 3 53 5979 61 5996 1905 320 6.7 10 10 4.8 60 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.75356E7 0.6 0.0 96 101900 155 1323 289 37 1 37 4139 0 4150 1261 320 5.7 10 10 9.7 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.75392E7 0.6 0.0 96 101900 92 1323 289 15 1 14 1744 0 1629 516 310 6.7 10 10 2.4 60 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.75428E7 0.6 0.0 96 101900 53 1324 289 11 0 11 1063 0 1070 382 320 5.7 10 10 1.2 30 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.75464E7 0.0 -0.6 96 101900 39 1324 286 5 0 5 483 0 486 188 320 6.2 10 10 1.2 30 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.755E7 -0.6 -0.6 100 101900 50 1324 284 6 0 6 580 0 584 226 300 6.2 10 10 1.2 90 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.75536E7 -0.6 -1.1 96 101900 86 1324 283 17 0 17 1648 0 1660 592 300 6.2 10 10 1.2 60 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.75572E7 -0.6 -1.1 96 101800 147 1324 269 23 5 23 2656 0 2660 852 300 5.2 10 8 0.8 60 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.75608E7 -1.1 -1.7 96 101800 227 1324 260 66 49 58 7352 1042 6481 1982 310 5.7 10 6 0.8 60 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.75644E7 -1.1 -1.1 100 101800 321 1324 260 79 37 70 8970 1408 7972 2623 310 6.7 10 6 2.4 90 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.7568E7 -0.6 -1.1 96 101700 423 1324 258 182 153 133 20205 9723 14829 4673 310 5.7 9 4 1.6 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.75716E7 -0.6 -1.1 96 101700 526 1324 275 123 36 109 14230 2202 12655 4538 300 6.2 9 9 1.6 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.75752E7 0.0 -0.6 96 101700 622 1324 286 132 21 122 15444 1376 14327 5344 300 6.7 10 10 6.4 90 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.75788E7 0.6 0.0 96 101700 705 1324 271 379 236 253 42508 20508 28533 9631 290 5.7 10 7 6.4 90 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.75824E7 1.1 0.6 96 101600 769 1324 284 224 58 190 26010 4408 22167 8356 280 6.2 10 9 6.4 90 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.7586E7 1.7 0.6 92 101600 810 1324 294 225 26 209 26116 2032 24380 9220 280 5.2 10 10 9.7 90 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.75896E7 1.7 1.1 96 101500 824 1324 295 200 8 196 23389 608 23031 8865 280 6.7 10 10 3.2 90 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.75932E7 2.2 1.7 96 101500 812 1324 298 195 2 194 22772 151 22764 8732 270 6.7 10 10 1.6 90 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.75968E7 2.2 1.1 93 101500 773 1324 297 188 7 184 21905 524 21539 8187 280 5.7 10 10 9.7 520 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.76004E7 2.2 1.7 96 101400 711 1324 298 161 1 160 18753 72 18718 7055 280 5.2 10 10 1.6 60 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.7604E7 2.2 1.1 93 101400 630 1324 297 174 5 172 19842 370 19704 6993 300 4.6 10 10 9.7 400 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.76076E7 1.7 0.6 92 101300 534 1324 294 122 2 121 14027 127 13965 4968 280 4.6 10 10 9.7 90 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.76112E7 1.1 0.6 96 101200 431 1324 292 100 1 99 11402 55 11328 3873 280 4.6 10 10 4.8 90 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.76148E7 0.6 0.0 96 101100 329 1324 289 74 1 74 8392 40 8418 2773 280 5.2 10 10 1.6 30 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.76184E7 0.0 0.0 100 101100 233 1324 287 65 0 65 6388 0 6434 2181 270 4.6 10 10 1.6 30 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.7622E7 0.0 0.0 100 101000 150 1324 287 36 0 36 3512 0 3536 1225 280 4.1 10 10 0.8 30 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.76256E7 0.0 0.0 100 101000 87 1324 287 21 0 21 2037 0 2050 706 270 4.6 10 10 0.8 30 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.76292E7 0.0 0.0 100 100900 48 1324 287 8 0 8 773 0 778 290 260 4.1 10 10 0.8 30 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.76328E7 0.0 0.0 100 100900 34 1324 287 4 0 4 386 0 388 152 260 3.6 10 10 1.6 60 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.76364E7 0.0 0.0 100 100700 46 1324 287 4 0 4 386 0 389 155 200 2.6 10 10 11.3 60 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.764E7 0.6 0.0 96 100700 82 1324 289 16 0 16 1550 0 1561 558 220 1.5 10 10 11.3 2290 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.76436E7 0.6 0.0 96 100700 142 1324 289 37 0 37 3605 0 3630 1211 280 4.1 10 10 11.3 1980 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.76472E7 0.6 0.0 96 100600 222 1324 289 54 0 54 5300 0 5338 1871 260 2.6 10 10 11.3 1130 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.76508E7 1.1 0.0 92 100500 317 1324 291 56 0 56 5543 0 5584 2193 170 3.1 10 10 11.3 1070 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.76544E7 2.2 0.6 89 100400 419 1324 297 117 0 117 11683 0 11774 4280 240 2.6 10 10 11.3 2440 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.7658E7 2.8 0.6 86 100300 522 1324 291 177 77 147 19964 5288 16652 5632 230 1.5 10 9 11.3 2440 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.76616E7 2.2 0.0 85 100300 618 1324 288 214 67 183 24219 5115 20810 7204 340 3.1 10 9 11.3 2440 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.76652E7 2.8 0.0 82 100200 701 1324 280 340 208 230 38403 17329 26116 9052 360 3.6 10 7 11.3 2440 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.76688E7 3.9 0.6 79 100200 765 1324 289 362 300 188 42041 22727 21937 8269 20 4.1 10 8 11.3 2440 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.76724E7 5.6 1.7 76 100100 806 1324 298 382 222 246 43727 18427 28312 10332 50 5.2 10 8 11.3 2440 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.7676E7 3.3 1.1 86 100100 821 1324 302 363 148 270 41359 12750 30937 11119 10 5.2 10 10 11.3 2440 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.76796E7 5.0 1.7 79 100000 808 1324 295 448 391 208 51999 30368 24263 9184 50 6.2 10 8 11.3 2290 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.76832E7 4.4 1.1 79 100000 770 1324 307 189 11 182 22026 821 21309 8099 50 6.7 10 10 11.3 2290 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.76868E7 4.4 1.1 79 99900 707 1324 307 186 24 173 21521 1771 20108 7470 50 6.7 10 10 11.3 2290 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.76904E7 3.9 1.7 86 99800 626 1324 305 138 9 134 16037 603 15635 5784 30 6.2 10 10 11.3 3050 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.7694E7 2.8 1.1 89 99700 530 1324 300 121 3 120 13907 189 13844 4919 30 6.2 10 10 11.3 150 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.76976E7 2.2 1.7 96 99600 427 1324 298 83 6 81 9603 297 9400 3302 30 7.2 10 10 8.0 240 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.77012E7 2.2 1.7 96 99500 324 1324 298 45 3 44 5308 88 5200 1814 40 7.7 10 10 8.0 370 9 999999999 12 0.0000 0 88 0.000 0.2 1.0 +1.77048E7 2.2 1.7 96 99400 228 1324 298 27 2 27 3201 13 3206 1086 30 6.7 10 10 9.7 370 9 999999999 12 0.0000 0 88 0.000 0.2 1.0 +1.77084E7 2.2 1.7 96 99300 146 1324 298 19 0 19 1852 0 1865 729 40 6.2 10 10 9.7 370 9 999999999 13 0.0000 0 88 0.000 0.2 1.0 +1.7712E7 1.7 1.7 100 99300 83 1324 296 11 0 11 1066 0 1073 413 30 6.7 10 10 9.7 90 9 999999999 13 0.0000 0 88 0.000 0.2 1.0 +1.77156E7 1.7 1.7 100 99200 44 1324 296 5 0 5 482 0 486 189 30 6.7 10 10 9.7 90 9 999999999 13 0.0000 0 88 0.000 0.2 1.0 +1.77192E7 1.7 1.7 100 99200 30 1324 296 2 0 2 193 0 194 79 40 6.2 10 10 9.7 90 9 999999999 14 0.0000 0 88 0.000 0.2 1.0 +1.77228E7 1.7 1.1 96 99100 41 1324 295 4 0 4 386 0 388 154 30 6.7 10 10 9.7 90 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.77264E7 1.1 1.1 100 99100 77 1324 292 17 0 17 1646 0 1657 577 30 6.7 10 10 1.2 30 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.773E7 1.1 1.1 100 99000 137 1324 292 35 1 35 3883 0 3894 1152 30 7.7 10 10 0.4 30 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.77336E7 1.1 1.1 100 99000 218 1324 292 57 1 56 6339 18 6247 1902 20 7.2 10 10 0.4 30 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.77372E7 1.1 1.1 100 99000 312 1324 292 92 1 92 10180 44 10218 3129 20 5.2 10 10 0.4 30 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.77408E7 1.1 1.1 100 99000 415 1324 292 120 0 120 11976 0 12069 4328 350 6.2 10 10 0.4 30 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.77444E7 1.1 1.1 100 99000 518 1324 292 169 1 168 18834 73 18811 6111 360 5.7 10 10 0.4 30 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.7748E7 1.1 1.1 100 99000 614 1324 292 192 1 192 21620 78 21726 7406 330 5.7 10 10 0.8 90 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.77516E7 1.1 1.1 100 99100 697 1324 292 219 0 219 22397 0 22591 8739 330 5.2 10 10 0.8 90 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.77552E7 1.1 1.1 100 99100 761 1324 292 163 1 163 19128 72 19211 7386 290 4.6 10 10 4.8 90 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.77588E7 1.1 1.1 100 99200 802 1324 292 163 1 162 19273 72 19238 7528 290 5.2 10 10 1.6 30 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.77624E7 1.7 1.1 96 99300 817 1324 295 158 1 158 18766 71 18846 7436 280 6.2 10 10 4.8 580 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.7766E7 2.8 1.7 93 99300 804 1324 274 528 614 153 62730 43021 18254 7197 270 6.2 9 4 11.3 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.77696E7 2.8 1.1 89 99400 766 1324 300 252 1 252 28597 85 28754 10179 250 4.1 10 10 11.3 580 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.77732E7 2.2 0.6 89 99400 703 1324 288 233 100 180 26859 7510 20846 7673 240 3.1 9 9 11.3 1130 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.77768E7 2.8 1.1 89 99500 621 1324 285 287 261 163 32818 18892 18722 6684 250 4.1 9 8 11.3 1130 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.77804E7 3.3 0.6 82 99500 526 1324 282 231 223 142 26173 15103 16157 5542 230 3.6 9 7 11.3 670 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.7784E7 3.9 0.0 76 99500 423 1324 295 128 101 95 14614 5397 10883 3722 220 2.6 9 9 11.3 880 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.77876E7 4.4 0.6 76 99500 320 1324 292 102 88 80 11462 3630 9020 2901 200 4.6 9 8 11.3 790 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.77912E7 4.4 1.1 79 99500 223 1324 298 55 80 41 6301 1004 4708 1535 210 2.6 9 9 11.3 850 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.77948E7 5.6 2.8 83 99500 141 1324 299 27 6 26 3083 0 2974 940 200 4.1 10 8 11.3 790 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.77984E7 5.0 2.2 83 99600 78 1324 311 5 1 5 622 0 621 200 200 5.2 10 10 11.3 850 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.7802E7 5.0 1.7 79 99600 39 1324 310 2 0 2 193 0 194 80 200 4.1 10 10 11.3 790 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.78056E7 4.4 2.8 89 99600 25 1324 300 0 0 0 0 0 0 0 200 3.6 10 9 11.3 760 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.78092E7 3.9 2.2 89 99600 36 1324 297 3 4 3 371 0 371 117 200 3.1 9 9 11.3 880 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.78128E7 4.4 2.2 86 99600 72 1324 308 8 0 8 774 0 779 304 200 4.6 10 10 11.3 670 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.78164E7 5.0 3.3 89 99600 132 1324 312 17 1 16 2001 0 1885 613 200 4.6 10 10 11.3 760 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.782E7 5.6 4.4 93 99500 213 1324 316 42 5 41 4776 43 4674 1502 170 5.2 10 10 11.3 520 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.78236E7 6.1 5.0 93 99400 308 1324 319 66 2 65 7492 65 7400 2439 180 7.2 10 10 11.3 400 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.78272E7 7.8 6.1 89 99300 410 1324 328 100 3 99 11306 154 11234 3769 200 8.2 10 10 11.3 1430 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.78308E7 8.9 5.6 80 99300 513 1324 305 198 203 119 22634 12304 13656 4801 200 9.3 8 5 16.1 3960 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.78344E7 9.4 5.0 74 99300 610 1324 334 173 4 171 19622 290 19485 6825 200 9.3 10 10 16.1 1980 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.7838E7 8.9 4.4 74 99400 693 1324 331 132 5 130 15556 329 15379 5899 200 8.2 10 10 16.1 1310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.78416E7 5.0 2.8 86 99500 757 1324 311 127 8 122 15222 523 14677 5804 230 4.6 10 10 11.3 760 9 999999999 9 0.0000 0 88 0.000 0.1 1.0 +1.78452E7 5.6 2.8 83 99500 798 1324 314 117 8 112 14214 512 13654 5500 200 7.2 10 10 11.3 1070 9 999999999 9 0.0000 0 88 0.000 0.1 1.0 +1.78488E7 6.7 1.1 68 99600 813 1324 291 511 541 177 60121 39775 20920 8132 230 5.2 6 5 16.1 7620 9 999999999 8 0.0000 0 88 0.000 0.1 1.0 +1.78524E7 6.7 0.6 65 99600 801 1324 293 439 387 203 51001 29969 23699 8974 230 5.2 6 6 16.1 1460 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.7856E7 6.7 1.1 68 99700 762 1324 302 307 97 251 34825 8233 28629 10120 230 4.1 9 8 11.3 1830 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.78596E7 7.8 1.1 63 99800 699 1324 302 339 275 192 38843 21146 22106 8016 230 5.2 8 7 11.3 1830 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.78632E7 6.1 0.6 68 99800 617 1324 286 345 420 147 39749 29253 17008 6172 230 4.6 5 4 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.78668E7 6.1 1.1 71 99900 521 1324 289 242 298 123 27707 18910 14137 4974 220 4.6 5 5 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.78704E7 6.1 1.1 71 99900 418 1324 289 189 215 120 21142 12780 13478 4372 220 6.7 5 5 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.7874E7 5.6 0.6 71 100000 315 1324 303 76 41 66 8662 1475 7544 2503 210 6.7 10 9 11.3 2130 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.78776E7 5.6 1.1 73 100000 218 1324 304 49 17 46 5551 240 5225 1667 210 6.2 10 9 11.3 2130 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.78812E7 5.6 1.1 73 100100 136 1324 304 35 15 33 3911 0 3697 1116 200 5.2 10 9 11.3 1980 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.78848E7 5.0 2.2 83 100100 73 1324 302 17 8 17 1916 0 1920 579 200 3.1 9 9 11.3 1980 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.78884E7 5.0 2.2 83 100200 34 1325 302 3 5 3 370 0 370 116 190 5.2 9 9 11.3 1370 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.7892E7 3.9 0.6 79 100200 21 1325 285 1 16 1 132 0 131 40 230 5.2 7 7 11.3 1980 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.78956E7 3.3 0.6 82 100200 32 1325 279 3 29 2 380 0 253 79 210 5.7 7 6 11.3 1980 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.78992E7 3.3 0.6 82 100300 67 1325 272 20 129 14 2270 0 1591 483 210 6.2 3 3 11.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.79028E7 3.9 0.0 76 100300 127 1325 276 49 166 33 5432 0 3668 1079 220 6.7 4 4 11.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.79064E7 3.9 0.6 79 100400 208 1325 277 75 178 47 8428 2150 5296 1652 200 6.7 4 4 11.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.791E7 5.0 0.6 73 100400 303 1325 286 108 187 65 12258 6320 7399 2424 200 7.7 7 6 11.3 1980 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.79136E7 6.1 1.1 71 100400 406 1325 284 236 516 78 27212 24375 9021 3130 200 8.2 3 3 16.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.79172E7 7.8 1.1 63 100400 509 1325 298 210 204 132 23819 13266 15033 5156 200 10.8 8 6 16.1 1100 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.79208E7 8.9 1.7 61 100500 605 1325 319 250 78 215 27838 6378 24065 7864 210 10.3 9 9 16.1 910 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.79244E7 9.4 2.2 61 100500 689 1325 315 309 174 218 34949 14074 24784 8648 220 7.2 9 8 16.1 2900 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.7928E7 11.1 2.8 57 100600 753 1325 330 271 74 228 30907 6002 26139 9418 200 6.2 9 9 16.1 2130 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.79316E7 11.1 3.3 59 100600 794 1325 315 500 548 170 58781 39437 20075 7790 230 4.1 9 6 16.1 7620 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.79352E7 12.8 1.7 47 100600 809 1325 316 456 502 148 54352 34813 17714 7017 200 7.7 9 4 16.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.79388E7 12.8 1.1 45 100600 796 1325 312 517 588 161 61111 42002 19113 7470 200 9.3 7 3 16.1 2000 9 999999999 12 0.0000 0 88 0.000 0.1 1.0 +1.79424E7 14.4 3.3 48 100600 758 1325 334 329 216 205 37877 16722 23719 8781 200 8.2 8 7 11.3 1370 9 999999999 13 0.0000 0 88 0.000 0.1 1.0 +1.7946E7 12.8 4.4 57 100600 695 1325 350 106 12 100 12757 732 12074 4739 200 7.2 10 10 11.3 1370 9 999999999 13 0.0000 0 88 0.000 0.1 1.0 +1.79496E7 12.2 6.1 67 100500 613 1325 349 141 2 140 16264 133 16216 5928 200 8.8 10 10 11.3 1490 9 999999999 14 0.0000 0 88 0.000 0.1 1.0 +1.79532E7 11.1 7.8 80 100500 517 1325 345 74 2 73 8797 100 8701 3246 200 7.2 10 10 11.3 1070 9 999999999 14 0.0000 0 88 0.000 0.1 1.0 +1.79568E7 10.0 9.4 96 100500 414 1325 342 71 3 70 8257 127 8164 2899 200 5.2 10 10 11.3 1070 9 999999999 15 0.0000 0 88 0.000 0.1 1.0 +1.79604E7 10.6 9.4 93 100500 310 1325 345 58 4 57 6656 114 6558 2220 200 4.6 10 10 11.3 1070 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.7964E7 10.0 9.4 96 100500 213 1325 342 32 0 32 3127 0 3149 1238 200 3.1 10 10 11.3 1070 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.79676E7 10.0 9.4 96 100500 131 1325 342 22 2 22 2525 0 2529 807 200 3.6 10 10 11.3 490 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.79712E7 7.8 7.8 100 100600 68 1325 330 18 1 18 2007 0 2011 596 260 1.5 10 10 8.0 270 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.79748E7 6.7 6.7 100 100600 30 1325 323 2 0 2 192 0 194 79 260 1.5 10 10 0.8 150 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.79784E7 5.0 5.0 100 100700 16 1325 314 1 0 1 96 0 97 40 240 1.5 10 10 0.4 30 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.7982E7 3.9 3.9 100 100700 27 1325 299 0 0 0 0 0 0 0 250 3.6 10 9 1.6 2900 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.79856E7 3.3 3.3 100 100800 62 1325 296 10 4 10 1159 0 1161 362 240 2.1 10 9 0.8 2900 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.79892E7 3.9 3.9 100 100800 122 1325 288 31 6 30 3449 0 3346 996 240 2.6 10 7 1.2 3050 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.79928E7 5.0 5.0 100 100900 203 1325 286 68 99 52 7550 1215 5792 1758 220 1.5 10 4 1.6 3050 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.79964E7 5.6 5.6 100 100900 298 1325 287 129 234 76 14409 8296 8518 2696 220 2.6 6 3 9.7 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.8E7 7.8 6.7 93 101000 401 1325 299 163 151 117 18130 8383 13067 4180 230 3.1 8 4 11.3 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.80036E7 9.4 6.7 83 101000 504 1325 311 220 235 130 24908 14640 14779 5077 240 2.6 10 6 11.3 7620 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.80072E7 8.9 6.7 86 101000 601 1325 313 202 158 130 23361 10115 15094 5534 260 3.6 10 7 11.3 2440 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.80108E7 8.9 6.1 83 101100 685 1325 317 252 109 196 28684 8263 22420 8020 270 3.6 10 8 11.3 2740 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.80144E7 10.0 6.7 80 101100 749 1325 317 448 467 183 51882 34016 21293 8015 280 3.1 9 7 11.3 3050 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.8018E7 10.6 6.7 77 101100 790 1325 316 410 307 226 47037 24105 26064 9629 20 3.1 9 6 11.3 3050 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.80216E7 10.6 6.7 77 101100 805 1325 332 248 63 210 28694 4789 24420 9227 10 3.6 10 9 11.3 2590 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.80252E7 10.6 6.7 77 101100 792 1325 332 264 68 223 30336 5306 25758 9560 350 3.6 10 9 11.3 2440 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.80288E7 10.0 6.7 80 101100 753 1325 317 302 125 231 34368 9988 26428 9516 360 4.1 10 7 11.3 2440 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.80324E7 12.8 8.3 75 101100 691 1325 332 416 431 189 47522 31680 21695 7873 330 3.6 10 7 11.3 2440 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.8036E7 12.2 8.3 77 101100 608 1325 325 257 235 148 29459 15660 17038 6161 40 4.1 8 6 11.3 7620 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.80396E7 12.8 7.8 72 101000 512 1325 328 196 151 137 22147 9595 15546 5333 50 4.1 8 6 11.3 2290 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.80432E7 12.8 10.0 83 101000 409 1325 346 85 28 76 9806 1212 8794 3087 190 4.6 10 9 11.3 1070 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.80468E7 12.2 9.4 83 101000 305 1325 343 77 19 73 8648 640 8226 2666 170 4.1 10 9 11.3 1220 9 999999999 19 0.0000 0 88 0.000 0.2 1.0 +1.80504E7 10.0 8.3 90 101000 208 1325 341 25 3 24 2962 0 2847 961 140 4.6 10 10 11.3 1520 9 999999999 19 0.0000 0 88 0.000 0.2 1.0 +1.8054E7 10.0 8.9 93 100900 126 1325 341 12 1 12 1440 0 1441 474 180 4.1 10 10 11.3 1520 9 999999999 19 0.0000 0 88 0.000 0.2 1.0 +1.80576E7 8.3 7.8 96 100800 63 1325 332 14 0 14 1350 0 1360 485 100 4.1 10 10 11.3 6100 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.80612E7 7.2 6.7 96 100700 25 1325 310 0 2 0 0 0 0 0 190 4.1 10 8 11.3 7620 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.80648E7 10.6 10.0 96 100700 11 1325 345 0 0 0 0 0 0 0 200 5.2 10 10 11.3 6100 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.80684E7 7.2 7.2 100 100700 22 1325 326 1 0 1 96 0 97 40 310 2.6 10 10 1.6 2440 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.8072E7 6.7 6.1 96 100700 57 1325 323 7 0 7 675 0 680 263 190 1.5 10 10 0.8 1680 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.80756E7 3.3 3.3 100 100800 117 1325 304 15 0 15 1457 0 1467 567 280 5.2 10 10 0.4 30 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.80792E7 3.3 2.8 96 100800 198 1325 295 55 42 49 6128 448 5475 1671 300 4.1 9 9 9.7 6100 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.80828E7 4.4 3.9 96 100800 293 1325 310 71 79 53 8157 2135 6104 2045 270 3.1 10 10 11.3 1370 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.80864E7 7.2 5.6 89 100900 396 1325 324 95 7 93 10757 344 10568 3545 280 2.6 10 10 11.3 1190 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.809E7 7.2 5.0 86 100900 500 1325 324 105 9 102 12117 510 11812 4214 240 3.1 10 10 11.3 1070 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.80936E7 8.9 6.1 83 100900 597 1325 333 146 1 145 16728 67 16683 5992 250 4.1 10 10 11.3 1070 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.80972E7 10.6 7.2 80 100800 680 1325 312 345 339 170 39668 24087 19636 7215 210 6.7 9 4 11.3 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.81008E7 9.4 6.1 80 100800 745 1325 308 385 219 261 43311 18592 29527 10202 260 6.7 9 5 11.3 6100 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.81044E7 8.9 6.1 83 100800 786 1325 317 308 116 239 35160 9364 27430 9979 270 5.2 9 8 11.3 3660 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.8108E7 9.4 6.1 80 100800 801 1325 335 157 4 154 18603 274 18325 7219 260 4.1 10 10 11.3 1220 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.81116E7 10.0 6.1 77 100800 788 1325 338 180 4 178 21045 288 20908 8053 270 5.7 10 10 11.3 1430 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.81152E7 10.6 6.7 77 100700 749 1325 342 228 15 219 26038 1173 25140 9144 230 2.6 10 10 11.3 1520 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.81188E7 10.0 6.7 80 100700 686 1325 339 213 4 211 24115 312 24011 8464 250 4.1 10 10 11.3 1370 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.81224E7 11.1 6.7 74 100600 604 1325 344 178 4 176 20117 290 19985 6944 220 3.1 10 10 11.3 1010 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.8126E7 10.0 7.2 83 100600 507 1325 339 132 2 131 14957 125 14905 5142 200 2.6 10 10 11.3 760 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.81296E7 9.4 7.2 86 100600 404 1325 336 52 0 52 5174 0 5214 2236 180 2.6 10 10 11.3 880 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.81332E7 9.4 7.2 86 100600 300 1325 336 40 0 40 3944 0 3973 1637 90 4.6 10 10 11.3 980 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.81368E7 8.9 7.8 93 100500 203 1325 335 27 1 27 3164 0 3169 1059 180 3.6 10 10 11.3 1130 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.81404E7 8.9 8.3 96 100500 120 1325 335 16 0 16 1551 0 1562 607 190 3.6 10 10 11.3 1370 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.8144E7 8.9 8.3 96 100500 58 1325 335 11 0 11 1060 0 1067 393 200 3.1 10 10 11.3 1130 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.81476E7 8.3 7.8 96 100400 20 1326 332 2 0 2 192 0 193 78 200 3.1 10 10 11.3 1980 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.81512E7 8.3 7.2 93 100400 7 1326 331 0 0 0 0 0 0 0 200 4.1 10 10 11.3 6100 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.81548E7 8.3 7.2 93 100300 17 1326 322 0 3 0 0 0 0 0 200 4.1 10 9 11.3 6100 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.81584E7 8.3 6.7 89 100300 52 1326 322 7 0 7 675 0 679 261 200 4.6 10 9 11.3 6100 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.8162E7 8.3 6.1 86 100200 112 1326 330 25 3 25 2801 0 2808 850 200 7.2 10 10 11.3 1070 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.81656E7 8.9 5.6 80 100100 193 1326 332 49 5 48 5450 40 5355 1630 200 9.8 10 10 11.3 1130 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.81692E7 8.9 6.1 83 100100 288 1326 333 46 7 44 5350 154 5128 1747 210 9.8 10 10 9.7 610 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.81728E7 8.3 7.8 96 100100 391 1326 332 48 3 47 5723 104 5614 2021 210 10.3 10 10 11.3 700 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.81764E7 8.9 7.2 89 100100 495 1326 334 80 1 79 9401 50 9310 3410 220 8.8 10 10 11.3 700 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.818E7 7.2 6.1 93 100100 592 1326 325 108 3 107 12663 180 12589 4704 210 8.2 10 10 6.4 610 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.81836E7 6.1 5.6 96 100100 676 1326 319 120 6 117 14206 378 13901 5350 210 6.2 10 10 6.4 760 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.81872E7 5.6 5.0 96 100100 740 1326 316 137 5 135 16234 332 16060 6261 230 6.2 10 10 4.8 610 9 999999999 18 0.0000 0 88 0.000 0.7 1.0 +1.81908E7 5.0 4.4 96 100200 782 1326 313 166 1 166 19502 71 19589 7587 240 5.2 10 10 4.8 90 9 999999999 18 0.0000 0 88 0.000 0.7 1.0 +1.81944E7 3.9 3.3 96 100200 796 1326 307 165 1 164 19461 71 19428 7580 240 5.2 10 10 3.2 90 9 999999999 18 0.0000 0 88 0.000 0.7 1.0 +1.8198E7 3.9 3.3 96 100200 784 1326 307 158 1 157 18660 70 18621 7268 240 4.1 10 10 6.4 90 9 999999999 18 0.0000 0 88 0.000 1.0 1.0 +1.82016E7 4.4 4.4 100 100200 745 1326 310 149 1 149 17543 69 17617 6812 240 4.1 10 10 3.2 90 9 999999999 18 0.0000 0 88 0.000 1.0 1.0 +1.82052E7 4.4 3.9 96 100200 682 1326 310 151 0 150 15410 0 15441 6578 240 3.6 10 10 3.2 240 9 999999999 18 0.0000 0 88 0.000 1.0 1.0 +1.82088E7 5.0 5.0 100 100200 599 1326 314 112 1 112 13118 61 13165 4919 240 4.6 10 10 3.2 90 9 999999999 17 0.0000 0 88 0.000 1.0 1.0 +1.82124E7 6.7 6.1 96 100100 503 1326 323 92 1 91 10725 54 10643 3868 220 5.7 10 10 3.2 120 9 999999999 17 0.0000 0 88 0.000 1.0 1.0 +1.8216E7 8.3 7.8 96 100100 399 1326 332 70 1 70 8117 42 8140 2863 220 8.2 10 10 3.2 120 9 999999999 17 0.0000 0 88 0.000 1.0 1.0 +1.82196E7 7.8 7.2 96 100000 295 1326 329 57 0 57 5617 0 5659 2183 220 7.2 10 10 3.2 120 9 999999999 16 0.0000 0 88 0.000 1.3 1.0 +1.82232E7 6.1 5.6 96 99900 198 1326 319 33 0 33 3227 0 3250 1246 220 7.2 10 10 3.2 120 9 999999999 16 0.0000 0 88 0.000 1.3 1.0 +1.82268E7 5.6 5.6 100 99900 115 1326 317 17 0 17 1650 0 1661 635 220 7.2 10 10 3.2 120 9 999999999 16 0.0000 0 88 0.000 1.3 1.0 +1.82304E7 4.4 4.4 100 99900 53 1326 310 6 0 6 579 0 583 229 220 4.6 10 10 3.2 120 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.8234E7 4.4 3.9 96 99900 15 1326 310 1 0 1 96 0 97 40 240 5.7 10 10 2.0 120 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.82376E7 3.3 3.3 100 99900 2 1326 304 0 0 0 0 0 0 0 250 7.7 10 10 2.0 120 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.82412E7 2.2 2.2 100 100000 12 1326 298 1 0 1 96 0 97 40 250 7.7 10 10 4.8 120 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.82448E7 1.7 1.7 100 100100 47 1326 296 7 0 7 676 0 680 258 250 6.7 10 10 4.8 120 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.82484E7 1.1 0.6 96 100100 107 1326 270 30 64 25 3356 0 2803 839 230 4.6 6 6 11.3 3050 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.8252E7 1.1 0.0 92 100200 188 1326 270 50 35 45 5588 261 5043 1542 260 5.7 10 6 11.3 7620 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.82556E7 -0.6 -0.6 100 100300 283 1326 284 93 2 92 10193 85 10123 2964 250 6.2 10 10 1.2 30 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.82592E7 -0.6 -0.6 100 100400 386 1326 284 143 30 135 15693 1881 14881 4451 270 6.7 10 10 0.4 30 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.82628E7 -0.6 -0.6 100 100400 490 1326 284 150 12 146 16809 820 16432 5411 260 7.2 10 10 6.4 90 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.82664E7 0.0 0.0 100 100400 587 1326 287 184 1 183 20691 76 20678 6986 260 7.7 10 10 6.4 90 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.827E7 0.6 -0.6 92 100500 671 1326 289 223 6 220 25138 494 24928 8555 280 7.7 10 10 6.4 90 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.82736E7 0.6 -0.6 92 100600 736 1326 289 278 2 277 31141 180 31207 10474 250 7.2 10 10 6.4 90 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.82772E7 1.1 0.0 92 100600 777 1326 277 320 137 239 36547 11392 27442 9912 250 6.7 10 8 11.3 90 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.82808E7 1.7 0.0 89 100600 792 1326 270 488 527 172 57356 38661 20306 7854 250 6.7 10 5 11.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.82844E7 1.7 0.0 89 100700 779 1326 268 447 420 199 51830 32485 23187 8720 270 7.2 9 4 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.8288E7 1.7 0.0 89 100700 740 1326 266 438 549 129 52177 36934 15426 6034 250 6.7 7 3 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.82916E7 1.7 0.0 89 100800 677 1326 263 396 495 141 46319 34175 16559 6245 260 6.7 5 2 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.82952E7 1.7 0.0 89 100800 594 1326 260 368 585 103 43411 35950 12191 4577 270 8.2 3 1 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.82988E7 1.1 0.0 92 100900 498 1326 267 213 228 126 24218 14564 14383 4952 270 7.7 10 5 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.83024E7 0.0 -0.6 96 100900 394 1326 268 168 114 134 18511 7164 14829 4522 270 7.2 10 7 3.2 90 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.8306E7 0.0 -0.6 96 100900 289 1326 268 121 172 82 13443 6800 9143 2822 290 7.2 10 7 1.6 90 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.83096E7 0.2 -0.6 96 100900 192 1326 269 81 27 77 8698 728 8303 2169 270 6.6 10 7 1.6 90 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.83132E7 0.5 -0.6 96 100900 109 1326 288 34 60 29 3780 0 3233 954 270 6.0 10 10 1.6 90 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.83168E7 0.7 -0.7 96 100900 47 1326 289 9 6 8 1053 0 937 293 260 5.4 10 10 0.6 60 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.83204E7 1.0 -0.8 89 100800 12 1326 290 1 0 1 96 0 97 40 290 4.9 10 10 24.1 370 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.8324E7 1.2 -0.9 89 100800 0 354 265 0 0 0 0 0 0 0 240 4.3 8 4 24.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.83276E7 1.5 -0.9 85 100800 10 1326 292 0 0 0 0 0 0 0 300 3.7 10 10 24.1 460 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.83312E7 1.7 -1.1 82 100700 45 1326 285 3 3 3 374 0 374 118 270 3.1 10 9 24.1 610 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.83348E7 2.2 0.0 85 100700 104 1326 288 18 1 18 2060 0 2064 643 300 4.6 10 9 11.3 610 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.83384E7 2.8 0.6 86 100700 185 1326 299 22 2 21 2605 0 2490 827 260 5.2 10 10 11.3 610 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.8342E7 2.8 0.6 86 100700 281 1326 299 51 2 50 5862 50 5761 1917 260 6.7 10 10 11.3 460 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.83456E7 1.7 0.0 89 100700 384 1326 294 105 7 103 11764 371 11584 3741 250 5.2 10 10 16.1 310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.83492E7 2.8 0.6 86 100700 488 1326 299 135 5 133 15221 324 15057 5056 230 4.1 10 10 16.1 430 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.83528E7 3.9 1.1 82 100700 585 1326 305 168 0 168 17013 0 17155 6570 240 6.2 10 10 24.1 610 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.83564E7 5.0 1.1 76 100700 669 1326 309 195 6 192 22194 463 21959 7785 240 6.7 10 10 24.1 610 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.836E7 5.0 1.7 79 100700 734 1326 310 207 6 204 23733 469 23505 8570 240 7.2 10 10 24.1 520 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.83636E7 5.0 2.2 83 100700 775 1326 311 256 0 256 26341 0 26576 10333 240 7.2 10 10 24.1 520 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.83672E7 5.6 2.2 79 100700 790 1326 313 248 1 248 28276 84 28430 10247 240 5.2 10 10 24.1 670 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.83708E7 6.7 2.2 74 100600 777 1326 303 229 25 215 26353 1975 24867 9198 240 7.2 10 8 24.1 700 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.83744E7 6.7 2.2 74 100600 738 1326 310 192 44 168 22375 3190 19666 7449 240 11.3 10 9 24.1 700 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.8378E7 6.7 2.2 74 100600 675 1326 298 346 360 160 40009 25732 18582 6867 230 8.8 8 7 24.1 700 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.83816E7 7.2 3.3 77 100600 592 1326 291 332 484 113 38806 30076 13256 4921 240 7.7 4 3 24.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.83852E7 7.2 3.3 77 100500 495 1326 293 207 247 113 23691 14753 12981 4548 240 9.3 5 4 24.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.83888E7 6.7 3.3 80 100500 391 1326 299 137 112 104 15373 5927 11714 3824 240 8.2 7 7 24.1 1520 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.83924E7 6.7 3.3 80 100500 287 1326 304 90 72 74 10054 2499 8294 2612 240 8.2 8 8 24.1 1520 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.8396E7 6.7 3.3 80 100500 190 1326 299 67 92 53 7397 1081 5870 1742 220 7.7 7 7 24.1 1680 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.83996E7 6.7 3.3 80 100400 107 1326 299 34 39 31 3741 0 3420 982 240 7.2 8 7 24.1 2130 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.84032E7 6.7 3.3 80 100400 45 1326 291 11 52 9 1267 0 1038 320 230 6.2 6 4 24.1 2130 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.84068E7 6.1 3.9 86 100400 8 1072 284 2 47 1 0 0 0 0 230 5.2 2 2 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.84104E7 6.1 3.9 86 100400 0 0 287 0 0 0 0 0 0 0 220 6.7 4 3 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.8414E7 6.1 3.9 86 100400 6 917 287 1 10 1 0 0 0 0 230 6.7 4 3 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.84176E7 6.1 4.4 89 100400 39 1326 281 9 127 5 987 6428 857 150 230 6.7 1 1 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.84212E7 6.7 4.4 86 100400 99 1326 301 24 81 18 2732 0 2053 636 230 6.7 8 7 24.1 610 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.84248E7 6.7 2.2 74 100400 180 1326 310 32 18 30 3674 0 3451 1111 250 7.7 10 9 24.1 610 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.84284E7 6.7 2.8 77 100400 275 1326 304 76 31 70 8480 974 7836 2448 250 7.7 9 8 24.1 610 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.8432E7 6.7 3.3 80 100400 379 1326 320 101 2 101 11306 102 11349 3666 260 7.2 10 10 24.1 610 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.84356E7 6.7 2.8 77 100400 483 1326 319 133 8 130 14995 506 14717 4950 260 6.7 10 10 24.1 610 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.84392E7 7.2 3.9 80 100400 580 1326 322 138 5 135 15852 329 15571 5590 260 6.7 10 10 24.1 610 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.84428E7 6.1 3.9 86 100500 664 1326 317 235 10 230 26309 827 25887 8710 270 5.2 10 10 24.1 550 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.84464E7 4.4 3.3 93 100500 729 1326 309 272 6 268 30463 525 30186 10185 320 3.6 10 10 16.1 640 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.845E7 3.3 2.2 93 100600 770 1326 303 212 3 211 24400 236 24407 9025 330 4.1 10 10 16.1 150 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.84536E7 2.8 1.7 93 100700 785 1326 300 221 3 219 25433 239 25332 9371 330 5.7 10 10 11.3 150 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.84572E7 2.8 1.7 93 100700 772 1326 300 250 2 248 28423 168 28349 10109 320 5.2 10 10 11.3 180 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.84608E7 2.8 0.6 86 100700 733 1326 299 238 2 237 26974 167 27005 9498 310 4.1 10 10 11.3 310 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.84644E7 2.2 0.0 85 100800 670 1326 296 226 0 226 23068 0 23265 8691 340 6.2 10 10 11.3 310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.8468E7 2.2 0.0 85 100800 587 1326 296 192 0 192 19459 0 19621 7205 340 4.1 10 10 11.3 240 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.84716E7 1.1 -0.6 89 100900 490 1326 291 155 1 154 17299 70 17265 5608 360 6.2 10 10 11.3 240 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.84752E7 1.1 0.0 92 100900 386 1326 291 119 1 119 13200 58 13255 4147 330 4.1 10 10 11.3 180 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.84788E7 0.6 0.0 96 101000 281 1326 275 105 62 92 11509 2614 10124 2969 320 3.6 10 8 11.3 150 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.84824E7 0.6 0.0 96 101000 184 1326 271 61 78 49 6767 752 5452 1633 340 4.1 8 7 11.3 150 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.8486E7 0.6 -0.6 92 101100 101 1326 261 39 182 24 4370 0 2695 808 360 4.1 5 3 16.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.84896E7 1.1 -1.7 82 101100 39 1326 256 12 138 7 1403 0 819 255 350 5.2 3 1 16.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.84932E7 1.1 -1.7 82 101200 6 741 256 1 14 1 0 0 0 0 330 4.1 2 1 16.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.84968E7 1.1 -1.7 82 101200 0 0 256 0 0 0 0 0 0 0 350 4.6 3 1 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.85004E7 1.1 -1.1 85 101300 6 608 260 1 7 1 0 0 0 0 330 3.6 8 2 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.8504E7 0.6 -1.1 89 101300 34 1327 264 5 25 4 603 0 482 151 340 4.1 9 5 16.1 6100 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.85076E7 0.0 -1.1 92 101400 93 1327 268 31 29 29 3385 0 3176 878 360 4.1 10 7 16.1 240 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.85112E7 0.0 -1.1 92 101400 174 1327 278 35 10 34 3971 0 3866 1216 10 4.1 10 9 16.1 240 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.85148E7 0.0 -1.1 92 101500 270 1327 260 102 118 78 11270 4164 8649 2604 50 3.6 8 4 16.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.85184E7 1.7 -1.1 82 101500 374 1327 267 188 379 81 21421 17498 9259 3109 50 5.2 6 4 24.1 6100 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.8522E7 1.7 -1.1 82 101500 478 1327 269 221 222 141 24749 14868 15858 5196 50 2.1 7 5 24.1 6100 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.85256E7 2.8 -0.6 79 101500 575 1327 276 240 173 165 27136 12657 18741 6427 60 4.1 9 6 24.1 6100 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.85292E7 2.2 -1.1 79 101500 660 1327 271 330 313 173 37826 23390 19921 7175 90 3.6 9 5 24.1 6100 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.85328E7 3.3 -0.6 76 101500 724 1327 273 316 299 151 37061 21176 17784 6782 90 5.2 9 4 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.85364E7 2.8 -0.6 79 101500 766 1327 269 456 525 150 53905 37038 17806 6919 70 3.6 7 3 24.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.854E7 3.9 -0.6 73 101500 780 1327 274 525 638 147 62322 44695 17522 6864 70 4.1 8 3 24.1 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.85436E7 3.9 0.0 76 101500 768 1327 284 419 264 264 47379 22978 30020 10478 80 5.2 10 7 24.1 2440 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.85472E7 2.8 -0.6 79 101500 728 1327 279 289 140 211 33043 11207 24247 8750 120 2.6 10 7 24.1 2440 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.85508E7 3.3 -0.6 76 101500 665 1327 286 254 81 213 28673 6584 24167 8332 90 7.2 10 8 24.1 2440 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.85544E7 3.3 -1.7 70 101400 582 1327 299 218 131 160 24769 9502 18260 6354 70 6.7 10 10 24.1 2440 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.8558E7 3.3 -1.1 73 101400 485 1327 285 179 72 152 19977 5021 17040 5526 80 6.2 10 8 24.1 2440 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.85616E7 3.3 -1.7 70 101400 380 1327 285 129 102 100 14499 5377 11281 3671 80 8.2 10 8 24.1 2440 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.85652E7 2.8 -0.6 79 101400 276 1327 284 73 28 67 8199 896 7549 2395 80 7.2 10 8 24.1 2440 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.85688E7 2.8 -0.6 79 101400 178 1327 279 63 13 62 6835 214 6751 1855 90 6.7 10 7 24.1 2440 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.85724E7 2.8 -0.6 79 101400 95 1327 279 27 10 26 2993 0 2890 842 110 5.2 10 7 24.1 1520 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.8576E7 2.2 -0.6 82 101400 34 1327 287 2 2 2 255 0 255 79 90 6.7 9 9 24.1 1520 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.85796E7 2.2 0.0 85 101400 12 476 265 2 10 1 0 0 0 0 90 5.2 3 2 24.1 2000 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.85832E7 2.2 0.0 85 101300 0 0 268 0 0 0 0 0 0 0 90 6.2 4 3 24.1 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.85868E7 1.7 -0.6 85 101300 1 343 259 0 0 0 0 0 0 0 70 6.7 3 1 24.1 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.85904E7 1.7 -0.6 85 101200 29 1327 262 5 83 3 551 3947 523 103 90 6.2 4 2 24.1 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.8594E7 2.2 -0.6 82 101200 88 1327 267 31 143 22 3447 0 2452 717 80 7.7 7 3 24.1 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.85976E7 2.8 0.0 82 101200 169 1327 272 50 98 38 5605 0 4270 1308 80 8.2 8 4 24.1 2000 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.86012E7 2.2 0.6 89 101200 265 1327 288 68 15 65 7608 432 7295 2285 80 7.7 10 9 16.1 310 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.86048E7 2.8 1.7 93 101100 368 1327 300 110 7 108 12215 372 12040 3775 70 8.2 10 10 16.1 180 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.86084E7 2.8 1.7 93 101100 473 1327 300 134 7 131 15066 446 14790 4918 80 8.2 10 10 16.1 150 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.8612E7 2.8 1.7 93 101100 570 1327 300 130 8 126 14994 518 14590 5261 80 9.8 10 10 16.1 150 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.86156E7 2.8 1.7 93 101000 655 1327 300 204 7 200 23072 550 22732 7899 90 8.8 10 10 16.1 150 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.86192E7 3.3 1.7 89 101000 720 1327 303 190 1 189 21859 76 21848 8024 90 8.2 10 10 16.1 150 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.86228E7 3.9 2.2 89 101000 761 1327 306 267 3 266 30111 260 30168 10454 100 10.3 10 10 16.1 150 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.86264E7 3.9 2.8 93 101000 776 1327 306 244 6 240 27818 495 27509 9913 110 10.3 10 10 16.1 150 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.863E7 5.0 2.8 86 101000 763 1327 311 238 2 237 27101 165 27132 9734 100 11.3 10 10 16.1 240 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.86336E7 3.9 3.3 96 100900 723 1327 307 260 1 260 29169 86 29333 9967 100 9.3 10 10 16.1 150 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.86372E7 3.9 3.3 96 100900 660 1327 307 219 1 218 24622 81 24637 8413 90 9.3 10 10 4.8 150 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.86408E7 3.9 2.8 93 100900 576 1327 306 197 0 196 19930 0 19993 7211 100 8.8 10 10 1.6 90 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.86444E7 3.3 2.8 96 100900 479 1327 304 154 1 153 17135 69 17101 5511 90 9.3 10 10 1.6 90 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.8648E7 3.9 3.3 96 100900 374 1327 307 126 0 126 12524 0 12620 4216 90 8.2 10 10 0.8 60 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.86516E7 3.9 3.3 96 100900 270 1327 307 78 1 78 8624 34 8655 2630 90 8.2 10 10 0.8 60 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.86552E7 3.3 3.3 100 100900 172 1327 304 47 0 47 4588 0 4621 1548 100 7.7 10 10 0.4 60 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.86588E7 3.3 3.3 100 100900 89 1327 304 24 0 24 2325 0 2341 782 110 8.8 10 10 0.4 60 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.86624E7 3.3 3.3 100 100900 28 1327 304 4 0 4 385 0 388 151 80 5.2 10 10 3.2 90 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.8666E7 3.3 3.3 100 100900 1 232 304 0 0 0 0 0 0 0 100 7.2 10 10 6.4 120 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.86696E7 3.3 3.3 100 100900 0 0 304 0 0 0 0 0 0 0 100 8.2 10 10 2.0 90 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.86732E7 3.3 3.3 100 100900 0 100 304 0 0 0 0 0 0 0 100 6.7 10 10 0.2 120 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.86768E7 3.9 3.9 100 100900 23 1327 308 3 0 3 289 0 290 114 110 3.1 10 10 0.2 120 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.86804E7 3.3 3.3 100 100900 82 1327 304 20 0 20 1935 0 1948 658 90 5.2 10 10 2.4 90 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.8684E7 2.8 2.8 100 100800 163 1327 302 42 0 42 4096 0 4124 1385 120 6.2 10 10 2.4 90 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.86876E7 3.3 2.8 96 100900 259 1327 289 89 55 78 9782 1808 8604 2548 110 4.6 10 8 6.4 120 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +1.86912E7 2.8 2.8 100 100800 363 1327 287 102 82 79 11597 3565 9010 3014 110 6.2 10 8 9.7 120 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +1.86948E7 3.3 2.8 96 100800 468 1327 304 144 20 137 16104 1291 15387 5035 110 6.2 10 10 11.3 120 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +1.86984E7 4.4 3.3 93 100800 565 1327 294 214 106 168 24080 7679 18992 6437 100 6.2 10 8 11.3 150 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +1.8702E7 4.4 3.3 93 100800 650 1327 294 295 82 254 32667 7164 28285 9057 100 4.6 10 8 11.3 1520 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +1.87056E7 3.3 2.2 93 100800 715 1327 303 161 7 158 18767 497 18497 6984 80 5.2 10 10 11.3 2130 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +1.87092E7 3.9 2.8 93 100800 756 1327 306 110 6 106 13319 378 12878 5132 90 4.6 10 10 11.3 370 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +1.87128E7 3.9 2.8 93 100800 771 1327 306 124 13 117 14940 840 14148 5633 70 6.2 10 10 16.1 310 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +1.87164E7 3.3 2.8 96 100800 758 1327 304 143 8 139 16968 543 16559 6474 60 5.7 10 10 16.1 400 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +1.872E7 2.8 2.2 96 100800 718 1327 301 118 3 117 14093 194 14024 5483 60 5.2 10 10 11.3 150 9 999999999 22 0.0000 0 88 0.000 0.0 1.0 +1.87236E7 3.9 2.8 93 100700 654 1327 306 111 6 108 13183 374 12871 4940 60 6.7 10 10 11.3 460 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +1.87272E7 3.3 2.2 93 100700 571 1327 303 90 0 90 9103 0 9178 4018 60 6.7 10 10 11.3 180 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +1.87308E7 3.3 2.2 93 100700 474 1327 303 134 2 133 15065 128 15015 5000 80 5.2 10 10 16.1 370 9 999999999 21 0.0000 0 88 0.000 0.0 1.0 +1.87344E7 3.3 1.7 89 100700 369 1327 294 93 78 71 10701 3304 8194 2808 80 3.1 10 9 11.3 370 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.8738E7 2.8 1.7 93 100700 264 1327 292 30 27 25 3624 342 3023 1046 80 3.6 10 9 11.3 640 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.87416E7 2.8 1.7 93 100700 166 1327 300 28 1 28 3221 0 3227 1039 110 3.1 10 10 16.1 700 9 999999999 20 0.0000 0 88 0.000 0.0 1.0 +1.87452E7 2.8 1.7 93 100600 83 1327 300 8 1 8 965 0 965 311 90 3.1 10 10 16.1 700 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.87488E7 3.3 1.7 89 100600 22 1327 303 0 0 0 0 0 0 0 80 3.1 10 10 16.1 700 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.87524E7 3.3 1.7 89 100600 0 33 303 0 0 0 0 0 0 0 100 3.1 10 10 16.1 370 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.8756E7 2.8 1.7 93 100600 0 0 300 0 0 0 0 0 0 0 120 3.1 10 10 16.1 340 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.87596E7 2.8 1.7 93 100600 0 0 300 0 0 0 0 0 0 0 110 3.1 10 10 16.1 150 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.87632E7 2.2 2.2 100 100700 18 1228 298 0 0 0 0 0 0 0 110 3.6 10 10 0.8 150 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.87668E7 2.8 2.8 100 100700 76 1328 302 11 0 11 1064 0 1071 403 120 3.6 10 10 0.8 150 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.87704E7 3.9 3.3 96 100600 157 1328 298 34 4 33 3828 0 3724 1152 110 5.2 10 9 11.3 1520 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.8774E7 5.0 4.4 96 100600 253 1328 290 68 43 60 7616 1024 6741 2120 130 3.1 10 6 11.3 1830 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.87776E7 8.3 6.7 89 100700 358 1328 322 94 20 89 10552 890 10026 3265 210 4.1 10 9 24.1 6100 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.87812E7 9.4 6.7 83 100700 462 1328 320 139 55 120 15670 3228 13582 4575 190 5.2 10 8 24.1 6100 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.87848E7 11.1 7.2 77 100700 560 1328 319 252 194 169 28266 13766 19045 6427 220 7.2 10 6 24.1 6100 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.87884E7 11.7 7.2 74 100800 645 1328 317 342 257 216 38281 20354 24304 8213 230 7.2 10 4 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.8792E7 12.2 6.7 69 100800 710 1328 313 439 438 202 50055 33388 23147 8348 230 8.2 8 2 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.87956E7 13.3 6.7 64 100900 751 1328 318 479 500 194 55215 37243 22472 8372 230 6.2 8 2 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.87992E7 13.9 6.1 60 100900 766 1328 320 500 594 154 58865 40815 18208 7070 230 6.7 5 2 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.88028E7 13.3 6.7 64 101000 753 1328 321 357 251 213 40867 19399 24507 8974 240 4.1 5 3 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.88064E7 11.1 7.2 77 101000 713 1328 319 380 375 176 43841 26937 20400 7586 310 3.6 6 6 24.1 1070 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.881E7 10.6 7.2 80 101100 649 1328 309 370 402 171 42270 28675 19626 7071 320 3.6 3 3 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.88136E7 10.0 7.2 83 101100 566 1328 300 340 522 114 39440 31394 13273 4861 340 3.6 1 1 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.88172E7 11.7 7.2 74 101100 468 1328 307 246 365 115 27893 21027 13090 4487 50 4.1 1 1 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.88208E7 11.1 7.2 77 101100 363 1328 309 168 279 89 18913 12575 10055 3310 40 4.1 3 2 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.88244E7 8.9 7.2 89 101200 258 1328 299 100 154 69 11103 4274 7687 2376 50 2.1 5 2 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.8828E7 8.9 7.2 89 101200 160 1328 302 53 80 42 5870 0 4665 1396 60 3.6 6 3 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.88316E7 8.3 7.2 93 101300 77 1328 297 18 21 17 2032 0 1922 585 20 4.6 2 2 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.88352E7 7.8 6.7 93 101300 17 1162 285 3 1 3 364 0 363 114 30 3.6 0 0 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.88388E7 7.2 6.1 93 101300 0 0 282 0 0 0 0 0 0 0 50 5.2 0 0 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.88424E7 6.1 5.6 96 101300 0 0 277 0 0 0 0 0 0 0 70 3.6 0 0 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.8846E7 6.1 5.0 93 101300 0 0 276 0 0 0 0 0 0 0 90 2.6 0 0 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.88496E7 4.4 4.4 100 101400 13 1029 269 3 34 2 370 0 247 77 110 3.1 0 0 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.88532E7 4.4 3.9 96 101400 71 1328 268 22 133 15 2483 0 1696 512 120 2.6 0 0 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.88568E7 6.7 6.1 96 101400 151 1328 280 65 296 30 7344 0 3397 1059 170 3.6 0 0 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.88604E7 7.8 6.7 93 101400 248 1328 285 125 433 43 14338 6261 4944 1632 180 3.1 2 0 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.8864E7 10.0 7.2 83 101500 352 1328 300 188 469 62 21686 16559 7171 2465 180 3.1 4 1 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.88676E7 11.1 7.8 80 101500 457 1328 305 272 576 71 31915 26467 8354 3023 180 3.6 6 1 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.88712E7 13.3 7.2 67 101500 555 1328 314 318 536 92 37399 29678 10854 4038 170 4.1 7 1 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.88748E7 13.9 7.2 64 101500 640 1328 321 385 505 139 44603 33200 16170 5991 150 3.1 8 2 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.88784E7 15.0 6.1 56 101600 705 1328 320 481 693 110 57482 42890 13191 5158 170 4.6 8 1 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.8882E7 13.9 7.2 64 101600 746 1328 321 483 631 125 57558 40326 14952 5882 310 2.6 7 2 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.88856E7 13.3 7.2 67 101600 761 1328 314 498 627 135 59151 41012 16099 6327 300 2.6 5 1 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.88892E7 13.3 7.2 67 101600 748 1328 318 508 676 124 60602 43104 14848 5851 320 4.1 3 2 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.88928E7 13.3 7.2 67 101600 708 1328 321 476 656 122 56460 41534 14525 5646 360 4.1 3 3 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.88964E7 15.0 7.2 60 101600 644 1328 329 427 644 110 50455 39121 13044 4983 10 2.6 3 3 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.89E7 15.0 7.2 60 101600 560 1328 332 283 401 111 32858 23829 12935 4738 60 6.2 4 4 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.89036E7 12.8 8.3 75 101600 462 1328 328 224 267 129 25114 16074 14524 4833 20 4.1 6 6 24.1 1370 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.89072E7 10.6 8.9 90 101600 357 1328 328 75 68 56 8740 2284 6542 2289 10 2.6 8 8 24.1 1370 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.89108E7 11.1 7.8 80 101600 252 1328 329 79 83 63 8815 2003 7052 2210 320 3.1 8 8 24.1 1370 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.89144E7 11.7 8.9 83 101600 154 1328 328 34 31 30 3855 0 3409 1077 40 2.1 8 7 24.1 2740 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.8918E7 11.1 7.8 80 101600 71 1328 315 25 99 19 2781 0 2118 625 100 5.2 5 4 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.89216E7 10.6 6.7 77 101600 13 963 311 2 14 2 248 0 248 77 70 3.6 4 4 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.89252E7 9.4 6.7 83 101600 0 0 304 0 0 0 0 0 0 0 80 5.2 3 3 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.89288E7 8.3 6.7 89 101600 0 0 301 0 0 0 0 0 0 0 90 5.2 4 4 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.89324E7 8.9 6.7 86 101600 0 0 306 0 0 0 0 0 0 0 90 4.1 6 5 24.1 2740 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.8936E7 7.8 6.1 89 101600 9 853 301 0 0 0 0 0 0 0 90 5.2 7 5 24.1 2740 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.89396E7 7.2 6.1 93 101600 65 1329 298 16 7 15 1794 0 1686 503 100 4.1 7 5 24.1 2740 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.89432E7 7.8 6.1 89 101600 145 1329 299 41 16 40 4509 0 4412 1282 90 5.2 7 4 24.1 2740 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.89468E7 8.3 6.7 89 101600 242 1329 296 95 201 58 10612 4076 6499 2031 110 4.1 3 2 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.89504E7 11.1 8.3 83 101500 346 1329 313 165 341 75 18704 13077 8529 2842 110 5.2 3 3 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.8954E7 13.9 8.9 72 101500 452 1329 331 185 223 108 20956 12086 12280 4192 120 6.2 5 5 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.89576E7 12.2 8.3 77 101500 550 1329 323 178 78 145 20158 5106 16492 5727 120 5.7 5 5 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.89612E7 13.9 7.2 64 101500 634 1329 341 276 118 220 30781 9447 24666 8212 100 5.7 8 8 24.1 2740 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.89648E7 14.4 7.2 62 101500 700 1329 329 439 484 181 50387 35206 20873 7655 100 5.7 4 4 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.89684E7 12.2 7.2 72 101400 741 1329 313 472 593 138 55768 39060 16371 6369 80 5.7 3 2 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.8972E7 11.7 6.7 72 101400 756 1329 311 466 508 173 54252 36223 20233 7702 90 6.2 6 2 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.89756E7 11.1 6.1 72 101400 743 1329 298 511 630 155 59886 43443 18243 7009 80 5.2 6 0 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.89792E7 10.0 5.6 74 101300 702 1329 298 442 554 146 51682 37593 17143 6517 70 7.7 5 1 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.89828E7 8.9 5.0 77 101300 638 1329 297 370 418 166 42316 29880 19071 6857 90 8.2 7 2 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.89864E7 8.3 5.0 80 101300 554 1329 294 328 438 142 37330 29136 16230 5689 80 8.8 8 2 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.899E7 7.2 4.4 83 101200 456 1329 289 228 308 120 25718 18369 13590 4567 90 9.8 8 2 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.89936E7 7.2 4.4 83 101200 351 1329 292 172 286 94 19231 13436 10549 3385 100 7.7 7 3 24.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.89972E7 6.7 4.4 86 101200 245 1329 297 87 41 79 9518 1306 8675 2526 80 8.2 10 6 24.1 6100 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.90008E7 6.1 3.9 86 101100 148 1329 294 54 15 52 5843 62 5646 1535 90 6.2 10 6 24.1 6100 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.90044E7 5.6 3.3 86 101100 65 1329 291 17 2 17 1901 0 1905 564 90 7.2 10 6 24.1 6100 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.9008E7 4.4 3.3 93 101100 9 786 282 1 0 1 96 0 97 39 60 6.2 10 4 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.90116E7 3.9 3.3 96 101000 0 0 307 0 0 0 0 0 0 0 90 6.7 10 10 3.2 150 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.90152E7 3.9 3.3 96 101000 0 0 307 0 0 0 0 0 0 0 80 7.2 10 10 0.8 120 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.90188E7 3.3 3.3 100 101000 0 0 304 0 0 0 0 0 0 0 60 7.2 10 10 1.2 90 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.90224E7 3.9 3.3 96 100900 6 676 307 0 0 0 0 0 0 0 60 8.2 10 10 2.0 120 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.9026E7 3.9 3.3 96 100900 59 1329 307 7 0 7 676 0 680 263 60 8.2 10 10 0.8 120 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.90296E7 3.9 3.9 100 100800 140 1329 308 22 0 22 2140 0 2155 810 60 9.3 10 10 0.8 120 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.90332E7 4.4 2.2 86 100800 236 1329 281 92 145 66 10161 3619 7315 2192 60 8.2 10 4 16.1 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.90368E7 5.0 2.2 83 100800 341 1329 274 162 271 92 18072 12464 10301 3263 70 8.2 10 1 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.90404E7 5.0 2.2 83 100800 446 1329 278 218 267 127 24402 16466 14275 4664 80 8.2 10 2 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.9044E7 5.0 2.2 83 100800 544 1329 281 277 311 149 31337 21409 16930 5806 60 8.2 10 3 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.90476E7 5.0 2.2 83 100700 629 1329 311 181 6 178 20554 448 20308 7127 70 10.3 10 10 24.1 2740 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.90512E7 5.6 2.2 79 100700 694 1329 313 103 35 85 12545 2075 10383 4096 60 9.3 10 10 24.1 1130 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.90548E7 5.0 2.8 86 100700 736 1329 311 140 15 131 16619 1000 15611 6082 50 8.8 10 10 24.1 1310 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.90584E7 5.6 2.8 83 100700 750 1329 314 192 4 190 22199 302 22073 8241 60 8.2 10 10 24.1 2740 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.9062E7 5.6 2.2 79 100700 737 1329 305 306 129 234 34721 10650 26693 9445 50 8.8 10 9 24.1 1370 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.90656E7 5.0 2.8 86 100600 697 1329 303 188 62 155 21879 4366 18116 6806 60 10.3 10 9 24.1 1520 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.90692E7 4.4 2.8 89 100600 633 1329 309 192 100 144 22201 6845 16720 6139 60 11.3 10 10 24.1 310 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.90728E7 3.9 2.8 93 100600 548 1329 306 86 2 85 10187 111 10099 3771 70 8.2 10 10 11.3 240 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.90764E7 3.9 2.2 89 100600 450 1329 306 54 6 52 6500 261 6272 2306 70 8.2 10 10 11.3 240 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.908E7 3.3 1.7 89 100600 345 1329 303 45 0 45 4464 0 4498 1880 70 8.2 10 10 11.3 310 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.90836E7 2.8 1.7 93 100500 239 1329 300 25 3 24 3003 22 2886 988 60 7.7 10 10 11.3 310 9 999999999 19 0.0000 0 88 0.000 0.0 1.0 +1.90872E7 2.8 1.1 89 100500 141 1329 300 18 0 18 1754 0 1766 691 60 8.2 10 10 11.3 310 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.90908E7 2.2 1.7 96 100500 59 1329 298 8 0 8 773 0 779 299 60 7.2 10 10 11.3 120 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.90944E7 2.2 1.7 96 100500 6 631 298 1 0 1 0 0 0 0 80 6.2 10 10 11.3 120 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.9098E7 2.2 2.2 100 100500 0 0 298 0 0 0 0 0 0 0 70 6.2 10 10 4.8 120 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.91016E7 2.2 2.2 100 100500 0 0 298 0 0 0 0 0 0 0 90 5.2 10 10 1.2 90 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.91052E7 2.2 2.2 100 100400 0 0 298 0 0 0 0 0 0 0 80 5.2 10 10 1.2 90 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.91088E7 2.2 2.2 100 100400 6 521 298 1 0 1 0 0 0 0 90 6.2 10 10 0.4 120 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.91124E7 2.2 2.2 100 100400 53 1330 298 10 0 10 965 0 972 352 80 5.2 10 10 0.4 120 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.9116E7 2.2 2.2 100 100300 133 1330 298 33 0 33 3210 0 3232 1091 80 5.2 10 10 3.2 90 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.91196E7 2.2 2.2 100 100300 230 1330 298 53 0 53 5201 0 5238 1867 80 5.2 10 10 6.4 120 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.91232E7 2.8 2.2 96 100300 335 1330 301 85 1 85 9527 43 9560 3066 60 5.2 10 10 4.8 150 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.91268E7 3.3 2.2 93 100300 440 1330 303 113 1 113 12751 58 12800 4277 70 6.2 10 10 8.0 150 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.91304E7 3.3 2.2 93 100300 539 1330 303 168 0 168 16939 0 17077 6250 80 6.2 10 10 9.7 150 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.9134E7 3.3 2.2 93 100300 624 1330 303 209 1 209 23399 80 23519 7870 70 6.2 10 10 9.7 150 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.91376E7 3.3 2.8 96 100300 689 1330 304 203 0 203 20730 0 20909 8230 60 6.2 10 10 3.2 120 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.91412E7 3.3 2.2 93 100300 731 1330 303 238 0 238 24396 0 24610 9484 90 6.7 10 10 3.2 120 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.91448E7 3.3 2.8 96 100200 745 1330 304 234 0 234 24011 0 24223 9503 80 7.2 10 10 3.2 120 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.91484E7 3.3 2.8 96 100300 732 1330 304 257 1 256 28914 86 28962 9946 90 7.2 10 10 0.8 90 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.9152E7 3.9 2.8 93 100300 691 1330 306 204 1 204 23202 78 23318 8289 90 7.2 10 10 2.0 120 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.91556E7 3.9 2.2 89 100200 627 1330 306 193 1 192 21786 77 21779 7506 90 7.7 10 10 11.3 180 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.91592E7 3.9 2.8 93 100100 542 1330 306 177 0 177 17854 0 18001 6515 70 8.2 10 10 11.3 150 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.91628E7 2.8 2.2 96 100100 444 1330 301 121 0 121 12105 0 12201 4530 90 6.7 10 10 8.0 120 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.91664E7 3.3 2.2 93 100100 338 1330 303 94 1 94 10478 47 10517 3325 90 8.2 10 10 2.4 120 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.917E7 2.8 2.2 96 100100 233 1330 301 66 0 66 6481 0 6528 2204 110 5.7 10 10 1.2 60 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.91736E7 2.8 2.2 96 100200 135 1330 301 34 0 34 3310 0 3333 1136 120 4.1 10 10 1.2 60 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.91772E7 2.2 2.2 100 100100 52 1330 298 12 0 12 1159 0 1167 415 80 4.1 10 10 1.2 60 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.91808E7 2.8 2.8 100 100200 6 476 302 1 0 1 0 0 0 0 80 4.1 10 10 0.4 120 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.91844E7 2.2 2.2 100 100200 0 0 298 0 0 0 0 0 0 0 80 5.2 10 10 0.4 120 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.9188E7 2.2 2.2 100 100200 0 0 298 0 0 0 0 0 0 0 100 4.1 10 10 0.8 150 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.91916E7 2.2 2.2 100 100100 0 0 298 0 0 0 0 0 0 0 90 3.6 10 10 0.8 150 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.91952E7 2.2 2.2 100 100100 6 366 298 1 0 1 0 0 0 0 90 5.2 10 10 0.4 120 9 999999999 18 0.0000 0 88 0.000 0.0 1.0 +1.91988E7 2.8 2.8 100 100100 47 1330 302 9 0 9 868 0 874 317 100 5.2 10 10 0.8 120 9 999999999 17 0.0000 0 88 0.000 0.0 1.0 +1.92024E7 3.9 3.9 100 100100 127 1330 308 36 0 36 3498 0 3522 1136 100 6.2 10 10 0.2 90 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.9206E7 4.4 4.4 100 100100 224 1330 310 69 0 69 6761 0 6810 2195 110 6.7 10 10 0.2 90 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.92096E7 5.6 5.6 100 100100 329 1330 317 99 1 99 10924 46 10967 3358 120 4.6 10 10 0.2 90 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.92132E7 6.7 6.7 100 100100 435 1330 292 229 403 96 26101 20745 10980 3774 140 5.2 10 3 11.3 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.92168E7 11.7 7.8 77 100100 533 1330 302 354 708 67 42453 34749 8055 3032 210 6.2 4 0 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.92204E7 13.3 6.1 62 100200 618 1330 307 426 737 80 51319 40812 9664 3727 230 6.7 5 0 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.9224E7 12.8 6.7 67 100200 684 1330 311 425 657 83 51676 37434 10121 3989 220 6.2 3 1 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.92276E7 13.3 7.2 67 100200 725 1330 314 491 725 91 59718 42468 11102 4419 210 6.2 3 1 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.92312E7 12.2 7.2 72 100200 740 1330 313 499 700 105 60194 42598 12709 5048 220 6.2 4 2 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.92348E7 12.2 7.8 75 100300 726 1330 320 417 542 117 49764 33777 14013 5504 240 7.2 7 4 24.1 6100 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.92384E7 11.1 7.2 77 100300 686 1330 319 346 248 217 39047 19521 24617 8593 230 5.7 7 6 16.1 1220 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.9242E7 11.7 7.2 74 100300 621 1330 317 331 427 128 38478 27179 14938 5552 260 2.6 6 4 24.1 6100 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.92456E7 11.7 7.2 74 100300 536 1330 322 297 438 117 34165 26317 13510 4845 320 2.1 7 6 24.1 2130 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.92492E7 12.8 4.4 57 100300 438 1330 324 183 243 101 20835 13163 11541 3953 230 1.5 8 6 24.1 2440 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.92528E7 12.2 4.4 59 100300 332 1330 325 138 11 135 14883 650 14628 4017 160 3.1 10 7 24.1 6100 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.92564E7 11.7 5.0 64 100300 226 1330 312 95 216 56 10609 4029 6272 1948 170 6.2 7 3 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.926E7 10.0 5.6 74 100300 128 1330 305 49 140 35 5414 0 3878 1139 160 4.6 5 3 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.92636E7 8.9 5.0 77 100300 46 1330 297 14 114 9 1616 0 1040 322 160 5.2 3 2 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.92672E7 7.2 5.0 86 100300 12 321 290 2 19 1 0 0 0 0 140 4.6 2 2 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.92708E7 7.8 4.4 80 100300 0 0 292 0 0 0 0 0 0 0 140 5.2 3 2 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.92744E7 7.8 5.0 83 100300 0 0 297 0 0 0 0 0 0 0 150 5.2 5 4 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.9278E7 7.8 5.0 83 100300 0 0 297 0 0 0 0 0 0 0 130 4.1 5 4 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.92816E7 6.1 4.4 89 100300 1 211 285 0 0 0 0 0 0 0 140 5.2 4 2 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.92852E7 6.1 4.4 89 100300 41 1330 287 5 7 5 597 0 597 188 140 5.2 5 3 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.92888E7 6.7 4.4 86 100300 121 1330 290 30 30 27 3359 0 3030 916 140 5.2 4 3 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.92924E7 8.3 5.6 83 100400 218 1330 309 46 55 37 5280 367 4256 1391 140 5.7 8 7 24.1 2130 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.9296E7 9.4 5.0 74 100400 323 1330 304 137 173 94 15156 7649 10439 3219 170 6.7 8 4 24.1 2740 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.92996E7 11.1 5.0 66 100400 429 1330 296 244 447 98 27742 23442 11182 3809 170 9.3 7 0 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.93032E7 11.7 4.4 62 100400 528 1330 298 327 515 120 37474 31744 13805 4883 200 7.2 8 0 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.93068E7 12.2 4.4 59 100400 613 1330 300 398 563 136 45989 37288 15778 5770 190 7.2 8 0 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.93104E7 13.9 5.6 58 100400 678 1330 327 354 307 196 40231 23370 22385 7958 170 7.2 9 5 24.1 7620 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.9314E7 12.8 5.6 62 100400 720 1330 317 468 551 167 54298 39195 19463 7313 210 4.6 7 3 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.93176E7 12.8 5.0 60 100400 734 1330 324 388 351 192 44653 26373 22203 8206 250 4.1 8 6 24.1 6100 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.93212E7 12.8 5.6 62 100400 721 1330 325 330 241 197 37802 18268 22677 8279 240 4.6 8 6 24.1 6100 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.93248E7 13.3 5.0 57 100500 680 1330 324 291 167 204 32998 12969 23249 8205 250 3.6 8 5 24.1 6100 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.93284E7 12.2 4.4 59 100500 615 1330 321 308 322 157 35224 22572 18034 6456 310 2.1 7 6 24.1 1370 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.9332E7 12.8 3.9 55 100500 530 1330 320 223 135 168 24912 9731 18856 6217 360 3.1 7 5 24.1 6100 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.93356E7 13.9 4.4 53 100400 431 1330 329 217 233 139 24032 14819 15462 4875 60 3.6 8 6 24.1 6100 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.93392E7 13.9 5.6 58 100400 325 1330 334 109 86 88 12152 3660 9847 3121 80 3.6 8 7 24.1 2740 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.93428E7 13.3 6.7 64 100500 219 1330 332 80 63 69 8750 1461 7574 2202 80 2.6 8 7 24.1 2740 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.93464E7 11.7 7.2 74 100500 121 1330 326 37 27 34 4078 0 3758 1096 180 3.1 8 7 24.1 2740 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.935E7 10.6 6.7 77 100500 40 1330 325 4 3 4 488 0 488 155 100 4.1 9 8 24.1 2740 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.93536E7 10.0 7.2 83 100500 0 166 312 0 0 0 0 0 0 0 140 2.1 8 5 24.1 6100 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.93572E7 8.3 6.7 89 100500 0 0 296 0 0 0 0 0 0 0 130 3.1 4 2 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.93608E7 6.7 6.1 96 100600 0 0 285 0 0 0 0 0 0 0 140 4.1 3 1 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.93644E7 6.7 6.1 96 100600 0 0 296 0 0 0 0 0 0 0 120 4.1 9 5 24.1 3960 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.9368E7 6.7 6.1 96 100600 0 78 289 0 0 0 0 0 0 0 150 2.6 4 2 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.93716E7 5.6 5.0 96 100600 35 1331 283 7 33 6 818 0 701 218 110 2.6 3 2 0.4 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.93752E7 5.0 5.0 100 100600 115 1331 281 44 157 30 4862 0 3324 970 110 3.6 3 2 8.0 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.93788E7 6.7 6.7 100 100600 212 1331 297 68 90 54 7545 1233 6010 1829 110 2.6 8 5 24.1 3960 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.93824E7 9.4 7.8 90 100600 317 1331 305 153 345 70 17285 11742 7933 2603 100 3.1 3 3 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.9386E7 11.1 8.3 83 100700 423 1331 315 225 322 121 25072 18242 13539 4386 120 3.1 4 4 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.93896E7 9.4 6.7 83 100700 522 1331 304 307 549 90 35913 29667 10562 3870 220 3.1 4 3 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.93932E7 11.1 5.6 69 100700 607 1331 303 382 685 66 46599 36107 8070 3122 250 3.6 1 1 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.93968E7 11.1 5.6 69 100800 673 1331 297 471 775 75 57613 43360 9198 3623 230 4.1 0 0 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.94004E7 11.1 5.0 66 100800 714 1331 296 495 769 78 60835 44141 9612 3829 260 2.6 0 0 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.9404E7 11.7 5.0 64 100800 728 1331 299 523 801 80 64321 46389 9866 3945 340 3.6 0 0 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.94076E7 12.8 5.6 62 100900 715 1331 304 512 797 79 62872 45690 9727 3877 340 2.6 0 0 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.94112E7 12.2 6.1 67 100900 674 1331 315 394 501 136 46069 33037 15966 6042 360 4.6 4 3 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.94148E7 11.7 6.7 72 100900 609 1331 316 265 292 129 30718 18669 15012 5536 10 5.7 9 4 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.94184E7 13.3 5.6 60 100900 524 1331 320 299 487 104 34646 28124 12093 4373 30 3.1 5 3 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.9422E7 13.3 6.1 62 101000 425 1331 323 198 339 87 22725 16667 10018 3483 50 4.1 4 4 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.94256E7 12.2 7.8 75 101000 319 1331 320 105 79 85 11703 3155 9508 3019 10 2.6 4 4 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.94292E7 10.6 8.3 86 101000 212 1331 327 66 110 47 7424 1159 5301 1678 320 2.1 8 8 24.1 1370 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.94328E7 11.1 8.3 83 101000 114 1331 324 31 25 28 3455 0 3128 941 70 2.6 7 7 24.1 1370 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.94364E7 8.9 7.2 89 101100 33 1331 313 4 6 4 484 0 484 153 90 3.6 10 7 24.1 1520 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.944E7 8.9 7.2 89 101100 0 11 318 0 0 0 0 0 0 0 120 3.1 9 8 24.1 1980 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.94436E7 7.2 6.7 96 101100 0 0 294 0 0 0 0 0 0 0 140 2.6 4 3 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.94472E7 7.2 6.7 96 101100 0 0 288 0 0 0 0 0 0 0 120 3.6 1 1 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.94508E7 7.8 6.7 93 101200 0 0 285 0 0 0 0 0 0 0 110 3.6 0 0 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.94544E7 6.1 5.6 96 101200 0 0 277 0 0 0 0 0 0 0 120 3.6 0 0 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.9458E7 5.6 5.0 96 101200 29 1276 274 5 8 4 598 0 479 150 130 3.6 0 0 11.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.94616E7 5.6 5.0 96 101200 109 1331 274 34 86 27 3773 0 3004 886 130 3.6 0 0 11.3 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.94652E7 7.2 7.2 100 101300 206 1331 283 85 237 48 9495 2198 5377 1665 140 1.5 0 0 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.94688E7 10.6 8.3 86 101300 311 1331 298 153 377 64 17372 11680 7288 2414 80 1.5 0 0 24.1 2000 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.94724E7 12.2 8.3 77 101300 417 1331 310 211 384 90 24046 18469 10292 3529 90 2.1 1 1 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.9476E7 13.3 6.7 64 101300 516 1331 323 279 400 122 31817 24308 13968 4892 60 3.6 5 4 24.1 2000 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.94796E7 12.2 6.1 67 101400 602 1331 332 177 66 147 20265 4451 16902 6063 60 4.1 8 8 24.1 3050 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.94832E7 12.2 5.6 64 101400 667 1331 348 151 2 150 17492 137 17451 6484 90 5.2 10 10 24.1 3050 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.94868E7 11.7 5.6 66 101400 708 1331 346 214 12 207 24355 931 23677 8478 60 4.6 10 10 24.1 2740 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.94904E7 11.7 6.7 72 101400 723 1331 337 337 153 253 37824 12851 28554 9782 90 4.1 9 9 24.1 2740 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.9494E7 13.3 7.8 69 101400 709 1331 334 375 347 188 42983 25494 21653 7932 80 8.2 8 7 24.1 2740 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.94976E7 13.9 8.3 69 101400 668 1331 333 345 294 195 39116 21973 22219 7874 70 6.7 7 6 24.1 2740 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.95012E7 12.8 8.3 75 101400 603 1331 328 282 287 149 32252 19163 17115 6148 70 4.1 7 6 24.1 2740 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.95048E7 11.1 7.8 80 101400 518 1331 324 231 200 151 25914 13322 17016 5719 80 5.7 9 7 24.1 2740 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.95084E7 12.8 7.8 72 101500 418 1331 331 109 63 89 12457 3054 10206 3522 60 4.1 8 7 24.1 2740 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.9512E7 11.7 8.9 83 101500 312 1331 333 96 71 78 10747 2578 8762 2817 70 2.6 8 8 24.1 2740 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.95156E7 13.3 7.8 69 101500 206 1331 339 31 34 25 3657 0 2953 993 140 6.7 8 8 24.1 2740 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.95192E7 12.2 6.7 69 101600 107 1331 327 35 14 33 3833 0 3624 1031 80 3.6 7 7 24.1 2740 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.95228E7 11.1 7.2 77 101600 27 1209 316 4 4 4 481 0 481 151 90 3.1 6 5 24.1 2740 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.95264E7 9.4 7.8 90 101600 0 0 310 0 0 0 0 0 0 0 90 3.6 6 5 24.1 2740 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.953E7 7.2 6.1 93 101600 0 0 294 0 0 0 0 0 0 0 90 4.1 5 3 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.95336E7 6.7 6.1 96 101600 0 0 289 0 0 0 0 0 0 0 110 4.1 3 2 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.95372E7 6.7 6.1 96 101700 0 0 289 0 0 0 0 0 0 0 130 3.1 3 2 1.6 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.95408E7 6.7 6.1 96 101700 0 0 299 0 0 0 0 0 0 0 130 3.1 8 6 11.3 2290 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.95444E7 7.8 7.8 100 101700 23 1121 305 3 4 2 375 0 250 78 120 3.6 8 6 11.3 2290 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.9548E7 7.8 7.8 100 101700 102 1332 303 32 62 27 3530 0 2987 869 140 3.1 7 5 16.1 2290 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.95516E7 8.3 7.8 96 101600 199 1332 293 81 232 46 9051 1568 5155 1596 130 3.6 1 1 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.95552E7 10.0 8.3 90 101700 305 1332 301 156 439 54 17920 11691 6219 2098 150 4.1 1 1 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.95588E7 11.1 8.3 83 101700 411 1332 300 243 580 62 28478 23264 7284 2600 140 6.2 0 0 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.95624E7 11.1 8.3 83 101700 510 1332 306 323 655 70 38402 31689 8344 3103 150 5.2 1 1 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.9566E7 14.4 8.3 67 101700 596 1332 324 358 519 123 41482 32070 14307 5265 160 6.2 2 2 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.95696E7 14.4 7.8 65 101600 661 1332 319 425 685 80 51580 38033 9736 3815 180 5.7 1 1 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.95732E7 15.6 7.2 58 101600 703 1332 318 493 752 91 59719 43849 11057 4369 160 4.6 0 0 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.95768E7 12.8 7.8 72 101600 717 1332 306 499 746 92 60539 43525 11196 4444 250 4.1 0 0 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.95804E7 12.8 8.3 75 101500 703 1332 307 489 743 91 59223 42923 11055 4372 310 2.6 0 0 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.9584E7 12.8 7.8 72 101500 662 1332 317 437 579 145 50685 38556 16888 6302 360 3.1 2 2 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.95876E7 15.0 8.3 65 101400 596 1332 335 365 478 147 41735 31718 16881 6054 290 1.5 5 5 24.1 2000 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.95912E7 16.1 7.2 56 101400 511 1332 346 220 115 175 24352 8286 19466 6223 130 5.7 7 7 24.1 1370 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.95948E7 16.1 10.0 67 101300 412 1332 346 156 148 109 17488 7729 12267 4056 120 10.3 6 6 24.1 1370 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.95984E7 13.9 10.0 78 101300 305 1332 344 81 58 67 9155 1803 7596 2499 110 5.7 8 8 24.1 1370 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.9602E7 12.8 11.7 93 101200 198 1332 329 77 119 58 8445 1416 6383 1890 120 6.2 6 5 24.1 1830 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.96056E7 11.1 10.0 93 101200 100 1332 317 24 56 19 2732 0 2167 677 100 6.2 4 4 24.1 2000 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.96092E7 9.4 8.3 93 101200 21 1054 316 5 7 4 596 0 477 149 130 4.1 7 7 24.1 1520 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.96128E7 10.6 8.9 90 101100 0 0 314 0 0 0 0 0 0 0 130 4.1 6 4 24.1 2130 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.96164E7 8.3 7.2 93 101100 0 0 307 0 0 0 0 0 0 0 140 4.1 10 6 24.1 6100 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.962E7 7.8 6.7 93 101100 0 0 304 0 0 0 0 0 0 0 180 4.1 10 6 24.1 6100 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.96236E7 7.8 6.1 89 101100 0 0 304 0 0 0 0 0 0 0 260 3.6 10 6 24.1 2130 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.96272E7 6.7 5.6 93 101100 0 0 307 0 0 0 0 0 0 0 220 2.1 10 8 24.1 2130 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.96308E7 6.7 5.6 93 101100 19 1010 307 3 1 3 361 0 361 113 170 3.1 10 8 24.1 1520 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.96344E7 7.2 6.1 93 101100 96 1332 325 16 1 16 1835 0 1837 575 160 3.6 10 10 24.1 1830 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.9638E7 7.8 6.7 93 101000 193 1332 328 35 2 35 3989 0 3998 1284 170 4.1 10 10 24.1 1830 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.96416E7 8.9 7.2 89 101000 299 1332 334 46 1 46 5343 23 5355 1828 200 4.1 10 10 24.1 1830 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.96452E7 8.9 6.7 86 101000 405 1332 334 88 4 87 10031 189 9950 3396 230 5.2 10 10 24.1 3050 9 999999999 15 0.0000 0 88 0.000 0.3 1.0 +1.96488E7 8.9 6.1 83 101000 504 1332 333 67 6 65 8008 288 7788 2898 230 5.2 10 10 11.3 3050 9 999999999 16 0.0000 0 88 0.000 0.3 1.0 +1.96524E7 7.8 6.1 89 101000 590 1332 328 90 3 89 10692 169 10606 4018 230 6.2 10 10 11.3 1130 9 999999999 16 0.0000 0 88 0.000 0.3 1.0 +1.9656E7 7.2 6.1 93 101000 656 1332 325 103 3 102 12266 180 12188 4699 220 7.7 10 10 11.3 910 9 999999999 16 0.0000 0 88 0.000 0.4 1.0 +1.96596E7 7.8 6.1 89 101000 697 1332 328 119 4 117 14132 252 13945 5408 210 8.2 10 10 11.3 880 9 999999999 16 0.0000 0 88 0.000 0.4 1.0 +1.96632E7 8.3 6.7 89 101000 711 1332 331 128 2 127 15142 129 15081 5842 220 7.7 10 10 11.3 880 9 999999999 16 0.0000 0 88 0.000 0.4 1.0 +1.96668E7 8.3 6.7 89 100900 697 1332 331 147 0 146 14998 0 15026 6488 240 9.3 10 10 11.3 880 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +1.96704E7 5.0 5.0 100 101000 656 1332 314 119 1 118 14026 63 13959 5318 320 5.2 10 10 4.8 120 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +1.9674E7 3.3 3.3 100 101000 590 1332 304 107 1 106 12563 61 12489 4663 330 7.7 10 10 8.0 180 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +1.96776E7 2.8 1.7 93 101100 504 1332 300 149 0 149 14986 0 15108 5586 340 9.8 10 10 11.3 310 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +1.96812E7 1.7 0.6 92 101100 405 1332 294 120 0 120 11971 0 12064 4288 320 8.8 10 10 11.3 310 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.96848E7 1.1 -0.6 89 101200 298 1332 291 85 1 84 9448 41 9370 2901 320 8.2 10 10 11.3 310 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.96884E7 1.1 -1.1 85 101200 191 1332 290 55 0 55 5387 0 5426 1798 320 7.7 10 10 11.3 310 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.9692E7 0.6 -1.1 89 101300 93 1332 288 28 0 27 2718 0 2639 863 320 7.2 10 10 11.3 370 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.96956E7 1.1 -1.7 82 101300 16 922 290 4 0 4 385 0 388 147 320 6.2 10 10 11.3 370 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.96992E7 0.6 -1.1 89 101300 0 0 288 0 0 0 0 0 0 0 290 6.7 10 10 11.3 370 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.97028E7 0.6 -1.1 89 101300 0 0 280 0 0 0 0 0 0 0 300 4.6 10 9 3.2 370 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.97064E7 0.6 -1.1 89 101300 0 0 288 0 0 0 0 0 0 0 290 6.7 10 10 6.4 520 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.971E7 1.1 -0.6 89 101400 0 0 291 0 0 0 0 0 0 0 260 5.7 10 10 6.4 520 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.97136E7 1.1 -0.6 89 101300 0 0 283 0 0 0 0 0 0 0 260 5.2 10 9 11.3 520 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +1.97172E7 1.1 -0.6 89 101300 14 877 252 4 35 3 479 0 359 111 250 4.6 0 0 24.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.97208E7 1.7 0.0 89 101300 89 1333 280 15 2 15 1724 0 1726 538 250 4.1 9 8 24.1 370 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.97244E7 2.2 0.6 89 101300 187 1333 297 34 5 33 3890 0 3783 1213 240 4.6 10 10 24.1 1310 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +1.9728E7 3.3 0.6 82 101300 293 1333 301 64 3 63 7251 95 7159 2329 240 5.2 10 10 24.1 980 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.97316E7 4.4 1.7 82 101300 399 1333 307 102 4 101 11488 211 11418 3761 220 5.2 10 10 24.1 980 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.97352E7 5.0 2.2 83 101300 498 1333 311 141 5 139 15871 330 15712 5269 230 4.6 10 10 24.1 760 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.97388E7 5.0 2.8 86 101300 584 1333 311 108 5 106 12657 304 12466 4631 220 7.2 10 10 11.3 520 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.97424E7 5.6 2.8 83 101300 650 1333 314 115 6 112 13597 378 13289 5065 220 6.7 10 10 11.3 610 9 999999999 8 0.0000 0 88 0.000 0.1 1.0 +1.9746E7 4.4 3.9 96 101300 691 1333 310 120 1 120 14219 64 14271 5504 270 6.2 10 10 11.3 310 9 999999999 8 0.0000 0 88 0.000 0.1 1.0 +1.97496E7 5.0 0.6 73 101400 705 1333 294 350 263 209 39845 20975 23913 8511 290 6.2 9 8 24.1 1520 9 999999999 9 0.0000 0 88 0.000 0.1 1.0 +1.97532E7 5.0 0.0 70 101400 691 1333 289 293 165 206 33314 13139 23540 8331 230 5.2 8 7 24.1 1520 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.97568E7 5.6 0.0 68 101400 649 1333 278 429 694 85 51870 41124 10307 4005 240 4.1 2 2 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.97604E7 5.0 0.6 73 101400 584 1333 268 396 731 70 47976 39950 8502 3254 240 6.2 0 0 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.9764E7 5.6 1.1 73 101300 498 1333 276 326 705 57 39403 33884 6904 2578 260 6.2 1 1 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.97676E7 6.1 1.1 71 101300 398 1333 299 134 72 112 14987 4054 12576 4060 210 3.6 10 8 24.1 1220 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.97712E7 6.7 2.2 74 101200 291 1333 298 109 127 80 12125 4816 8931 2777 180 3.1 8 7 24.1 910 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.97748E7 6.7 2.8 77 101200 184 1333 304 55 28 51 6082 286 5657 1685 180 4.6 8 8 24.1 1070 9 999999999 9 0.0000 0 88 0.000 0.1 1.0 +1.97784E7 5.6 2.8 83 101200 86 1333 294 24 17 23 2670 0 2565 755 240 6.7 7 7 24.1 1070 9 999999999 9 0.0000 0 88 0.000 0.1 1.0 +1.9782E7 5.6 2.2 79 101200 12 789 285 4 7 4 470 0 470 145 230 5.7 9 4 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.1 1.0 +1.97856E7 5.6 3.3 86 101100 0 0 315 0 0 0 0 0 0 0 230 7.2 10 10 11.3 640 9 999999999 9 0.0000 0 88 0.000 0.1 1.0 +1.97892E7 4.4 3.3 93 101100 0 0 309 0 0 0 0 0 0 0 230 7.7 10 10 11.3 610 9 999999999 9 0.0000 0 88 0.000 0.1 1.0 +1.97928E7 5.0 2.8 86 101100 0 0 288 0 0 0 0 0 0 0 230 6.7 8 6 11.3 1220 9 999999999 9 0.0000 0 88 0.000 0.1 1.0 +1.97964E7 5.0 2.8 86 101000 0 0 311 0 0 0 0 0 0 0 200 8.2 10 10 11.3 1220 9 999999999 9 0.0000 0 88 0.000 0.2 1.0 +1.98E7 4.4 2.8 89 101000 0 0 309 0 0 0 0 0 0 0 230 8.2 10 10 11.3 370 9 999999999 9 0.0000 0 88 0.000 0.2 1.0 +1.98036E7 4.4 3.3 93 101000 11 744 309 1 0 1 0 0 0 0 220 7.7 10 10 11.3 370 9 999999999 9 0.0000 0 88 0.000 0.2 1.0 +1.98072E7 4.4 3.3 93 101000 83 1333 309 9 0 9 871 0 877 343 220 7.2 10 10 4.8 760 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.98108E7 6.1 5.0 93 100900 180 1333 319 45 2 45 4997 8 5012 1512 230 9.3 10 10 6.4 1070 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.98144E7 6.7 5.0 89 100900 286 1333 321 64 3 64 7216 89 7238 2335 220 10.3 10 10 6.4 1980 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.9818E7 6.7 4.4 86 100800 393 1333 321 81 1 81 9263 46 9292 3173 230 11.3 10 10 11.3 1980 9 999999999 10 0.0000 0 88 0.000 0.1 1.0 +1.98216E7 6.7 4.4 86 100800 492 1333 321 152 4 150 16965 270 16817 5499 230 11.8 10 10 11.3 1980 9 999999999 10 0.0000 0 88 0.000 0.1 1.0 +1.98252E7 6.7 4.4 86 100800 578 1333 321 149 2 148 16975 136 16934 5965 230 10.3 10 10 11.3 1980 9 999999999 10 0.0000 0 88 0.000 0.1 1.0 +1.98288E7 6.1 5.6 96 100800 644 1333 319 98 2 97 11691 118 11609 4469 210 12.4 10 10 11.3 610 9 999999999 10 0.0000 0 88 0.000 0.6 1.0 +1.98324E7 6.7 4.4 86 100700 685 1333 321 134 0 134 13670 0 13788 6003 220 10.3 10 10 11.3 520 9 999999999 11 0.0000 0 88 0.000 0.6 1.0 +1.9836E7 4.4 3.3 93 100800 699 1333 309 127 0 126 12977 0 12987 5761 270 7.7 10 10 6.4 550 9 999999999 11 0.0000 0 88 0.000 0.6 1.0 +1.98396E7 2.8 1.7 93 100800 685 1333 300 134 1 134 15738 67 15800 6007 310 7.2 10 10 6.4 210 9 999999999 11 0.0000 0 88 0.000 0.1 1.0 +1.98432E7 2.8 1.1 89 100800 643 1333 300 118 1 118 13891 65 13942 5274 230 7.2 10 10 11.3 980 9 999999999 11 0.0000 0 88 0.000 0.1 1.0 +1.98468E7 3.3 0.0 79 100900 577 1333 286 223 138 162 25271 9994 18441 6375 270 7.7 10 8 11.3 1070 9 999999999 10 0.0000 0 88 0.000 0.1 1.0 +1.98504E7 3.3 -0.6 76 100900 491 1333 286 173 35 160 19252 2503 17888 5748 250 8.8 10 8 16.1 1520 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.9854E7 3.9 -1.1 70 101000 391 1333 275 184 235 113 20537 13370 12662 4046 260 9.8 4 4 24.1 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.98576E7 3.3 -0.6 76 101000 284 1333 271 112 181 72 12546 6339 8092 2556 270 9.8 4 3 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.98612E7 2.8 0.0 82 101100 177 1333 272 56 58 48 6207 470 5336 1592 260 9.8 4 4 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.98648E7 2.2 -0.6 82 101100 79 1333 271 15 6 14 1729 0 1616 505 260 8.2 5 5 24.1 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.98684E7 1.7 -1.1 82 101200 8 656 267 1 0 1 0 0 0 0 250 9.3 4 4 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.9872E7 2.2 -0.6 82 101200 0 0 295 0 0 0 0 0 0 0 240 10.3 10 10 24.1 1520 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.98756E7 2.2 0.6 89 101200 0 0 297 0 0 0 0 0 0 0 240 9.8 10 10 24.1 1520 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.98792E7 2.2 0.6 89 101300 0 0 297 0 0 0 0 0 0 0 250 10.3 10 10 24.1 2130 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.98828E7 2.2 0.6 89 101300 0 0 297 0 0 0 0 0 0 0 240 10.8 10 10 24.1 2130 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.98864E7 1.7 0.6 92 101400 0 0 286 0 0 0 0 0 0 0 250 9.8 10 9 24.1 1070 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +1.989E7 1.7 0.6 92 101400 8 634 294 0 0 0 0 0 0 0 250 9.8 10 10 11.3 2130 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.98936E7 1.7 0.6 92 101400 76 1334 294 11 1 11 1281 0 1283 404 250 9.3 10 10 11.3 2130 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.98972E7 2.2 0.6 89 101500 174 1334 297 23 1 23 2691 0 2694 884 250 8.8 10 10 11.3 1070 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.99008E7 2.2 0.0 85 101500 280 1334 296 48 1 48 5535 24 5548 1854 260 7.7 10 10 11.3 1070 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +1.99044E7 2.2 0.6 89 101500 387 1334 288 103 16 98 11593 825 11070 3625 250 7.7 9 9 11.3 2130 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.9908E7 2.8 0.0 82 101500 486 1334 290 132 40 117 15031 2452 13374 4605 250 7.7 10 9 11.3 2130 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.99116E7 2.2 0.6 89 101600 572 1334 297 142 35 127 16375 2286 14702 5295 250 8.8 10 10 11.3 1070 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.99152E7 2.2 1.1 93 101600 638 1334 297 130 0 130 13223 0 13336 5672 230 8.2 10 10 11.3 1680 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.99188E7 3.3 0.6 82 101700 679 1334 287 235 69 199 26720 5414 22738 8042 240 8.2 10 8 24.1 1680 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +1.99224E7 3.3 0.6 82 101700 693 1334 287 292 129 224 32977 10625 25430 8810 260 7.7 10 8 16.1 1830 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.9926E7 2.8 0.6 86 101700 678 1334 285 209 98 159 24197 7039 18488 6841 240 7.7 10 8 24.1 1830 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.99296E7 3.3 0.6 82 101700 637 1334 301 176 3 174 20069 223 19933 7073 230 7.7 10 10 24.1 1830 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.99332E7 3.9 -0.6 73 101700 570 1334 294 218 76 185 24408 5857 20813 6906 260 6.2 10 9 24.1 790 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.99368E7 3.9 1.7 86 101700 484 1334 291 187 127 140 20990 8398 15782 5236 250 7.2 10 8 24.1 910 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.99404E7 3.3 1.1 86 101700 384 1334 302 81 4 80 9273 186 9188 3132 240 6.7 10 10 24.1 910 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.9944E7 3.3 0.6 82 101700 276 1334 301 63 1 63 7114 30 7135 2298 240 4.1 10 10 24.1 790 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.99476E7 3.3 1.7 89 101700 169 1334 303 19 1 19 2259 0 2261 751 290 3.1 10 10 11.3 790 9 999999999 11 0.0000 0 88 0.000 0.2 1.0 +1.99512E7 3.3 2.2 93 101600 72 1334 303 6 0 6 581 0 585 236 240 3.1 10 10 11.3 550 9 999999999 12 0.0000 0 88 0.000 0.2 1.0 +1.99548E7 2.8 2.2 96 101600 6 522 301 1 0 1 0 0 0 0 170 2.1 10 10 4.8 400 9 999999999 12 0.0000 0 88 0.000 0.2 1.0 +1.99584E7 2.2 2.2 100 101500 0 0 298 0 0 0 0 0 0 0 0 0.0 10 10 4.8 120 9 999999999 12 0.0000 0 88 0.000 0.2 1.0 +1.9962E7 2.2 2.2 100 101500 0 0 298 0 0 0 0 0 0 0 320 1.5 10 10 4.8 120 9 999999999 13 0.0000 0 88 0.000 0.2 1.0 +1.99656E7 2.2 2.2 100 101500 0 0 298 0 0 0 0 0 0 0 0 0.0 10 10 4.8 120 9 999999999 13 0.0000 0 88 0.000 0.2 1.0 +1.99692E7 2.8 2.2 96 101400 0 0 301 0 0 0 0 0 0 0 0 0.0 10 10 4.8 460 9 999999999 13 0.0000 0 88 0.000 0.1 1.0 +1.99728E7 2.8 2.8 100 101400 0 0 302 0 0 0 0 0 0 0 220 2.1 10 10 4.8 520 9 999999999 13 0.0000 0 88 0.000 0.1 1.0 +1.99764E7 2.8 2.2 96 101400 5 500 301 0 0 0 0 0 0 0 210 2.1 10 10 4.8 610 9 999999999 12 0.0000 0 88 0.000 0.1 1.0 +1.998E7 2.8 2.8 100 101400 70 1334 302 10 0 10 967 0 973 367 0 0.0 10 10 4.8 760 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +1.99836E7 2.2 2.2 100 101400 167 1334 298 43 1 43 4765 1 4779 1422 300 2.1 10 10 8.0 150 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.99872E7 2.8 2.8 100 101400 273 1334 302 69 0 69 6795 0 6845 2416 0 0.0 10 10 11.3 240 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +1.99908E7 2.8 2.2 96 101400 380 1334 301 102 1 101 11425 52 11356 3671 330 2.1 10 10 11.3 240 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.99944E7 3.3 1.1 86 101400 480 1334 302 127 0 127 12744 0 12845 4850 350 3.1 10 10 11.3 270 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +1.9998E7 3.3 1.7 89 101400 566 1334 303 160 0 160 16171 0 16305 6226 320 2.6 10 10 11.3 180 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.00016E7 2.8 1.7 93 101300 631 1334 300 196 0 196 19922 0 20091 7613 300 1.5 10 10 11.3 180 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.00052E7 3.9 2.2 89 101300 673 1334 306 227 1 226 25502 83 25524 8683 310 2.1 10 10 11.3 180 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.00088E7 3.9 1.7 86 101300 686 1334 305 206 0 206 21039 0 21221 8291 330 2.6 10 10 11.3 210 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.00124E7 3.3 1.7 89 101300 672 1334 303 220 1 219 24786 82 24801 8519 340 2.6 10 10 11.3 370 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.0016E7 3.3 2.2 93 101200 630 1334 289 261 177 176 29681 13157 20108 7088 40 3.1 10 8 11.3 370 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.00196E7 3.9 2.2 89 101200 563 1334 306 111 3 109 12937 183 12749 4679 360 2.6 10 10 11.3 340 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.00232E7 4.4 2.8 89 101100 477 1334 309 107 2 106 12258 115 12188 4259 90 3.6 10 10 16.1 310 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.00268E7 4.4 2.8 89 101000 377 1334 309 65 5 64 7556 203 7459 2603 50 2.1 10 10 11.3 310 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.00304E7 5.0 3.9 93 100900 269 1334 312 48 4 47 5529 87 5427 1814 60 2.1 10 10 11.3 210 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.0034E7 5.6 5.0 96 100800 162 1334 316 26 1 26 3002 0 3007 974 110 6.2 10 10 11.3 150 9 999999999 9 0.0000 0 88 0.000 1.0 1.0 +2.00376E7 6.1 6.1 100 100600 64 1334 320 8 0 8 773 0 778 303 170 4.1 10 10 11.3 150 9 999999999 9 0.0000 0 88 0.000 1.0 1.0 +2.00412E7 6.7 5.6 93 100500 3 411 322 0 0 0 0 0 0 0 250 5.2 10 10 11.3 150 9 999999999 9 0.0000 0 88 0.000 1.0 1.0 +2.00448E7 4.4 3.9 96 100400 0 0 310 0 0 0 0 0 0 0 320 5.7 10 10 11.3 1070 9 999999999 9 0.0000 0 88 0.000 1.0 1.0 +2.00484E7 1.7 1.1 96 100400 0 0 295 0 0 0 0 0 0 0 330 9.3 10 10 11.3 150 9 999999999 9 0.0000 0 88 0.000 1.0 1.0 +2.0052E7 1.7 1.1 96 100500 0 0 295 0 0 0 0 0 0 0 330 10.3 10 10 11.3 180 9 999999999 9 0.0000 0 88 0.000 1.0 1.0 +2.00556E7 1.7 -1.1 82 100500 0 0 293 0 0 0 0 0 0 0 330 9.8 10 10 11.3 310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.00592E7 1.7 0.6 92 100600 0 0 294 0 0 0 0 0 0 0 320 7.7 10 10 11.3 460 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.00628E7 1.7 0.0 89 100700 6 389 294 1 0 1 0 0 0 0 310 9.8 10 10 11.3 460 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.00664E7 0.6 0.0 96 100700 63 1335 289 15 0 15 1451 0 1460 501 310 8.8 10 10 3.2 180 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.007E7 0.6 -0.6 92 100800 160 1335 289 46 0 46 4490 0 4521 1461 320 9.3 10 10 1.6 240 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.00736E7 0.6 -1.7 85 100900 267 1335 287 81 1 80 8922 36 8844 2628 330 12.4 10 10 3.2 370 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.00772E7 0.6 -3.9 73 100900 374 1335 285 113 1 113 12538 56 12588 3913 310 12.9 10 10 16.1 1070 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.00808E7 0.0 -4.4 72 101000 474 1335 282 168 1 167 18544 74 18521 5715 320 11.3 10 10 16.1 910 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.00844E7 0.6 -4.4 70 101000 559 1335 271 202 39 185 22562 3044 20764 6789 300 10.3 10 8 16.1 910 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.0088E7 1.1 -4.4 67 101000 625 1335 269 292 162 215 32675 13479 24183 8010 310 10.3 10 7 16.1 980 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.00916E7 1.1 -4.4 67 101100 666 1335 266 353 369 167 40652 27489 19318 7025 310 9.3 10 6 16.1 5490 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.00952E7 1.1 -3.9 70 101100 680 1335 266 289 191 191 33014 14958 21924 7828 310 10.3 10 6 16.1 5490 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.00988E7 1.1 -2.8 76 101100 665 1335 270 267 93 220 30066 7726 24902 8488 310 12.4 10 7 16.1 1220 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.01024E7 0.0 -1.7 89 101100 623 1335 285 124 3 122 14513 197 14332 5346 310 10.8 10 10 16.1 490 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.0106E7 0.0 -3.3 79 101300 557 1335 283 129 3 128 14844 199 14786 5275 330 14.4 10 10 8.0 310 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.01096E7 0.0 -2.2 85 101400 470 1335 284 131 10 127 14786 639 14393 4823 320 13.4 10 10 1.6 490 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.01132E7 0.0 -4.4 72 101500 369 1335 282 123 2 123 13559 119 13616 4126 320 11.8 10 10 11.3 610 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.01168E7 0.6 -4.4 70 101600 261 1335 285 77 1 77 8518 35 8548 2574 320 11.8 10 10 11.3 790 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.01204E7 0.6 -4.4 70 101600 154 1335 285 36 4 35 4053 0 3950 1215 320 11.8 10 10 11.3 790 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.0124E7 0.0 -5.0 69 101700 57 1335 282 15 0 15 1453 0 1462 503 320 10.3 10 10 11.3 790 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.01276E7 0.0 -5.0 69 101800 6 278 282 1 0 1 0 0 0 0 320 11.8 10 10 11.3 880 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.01312E7 0.0 -5.6 67 101900 0 0 281 0 0 0 0 0 0 0 320 9.8 10 10 11.3 880 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.01348E7 -0.6 -5.6 69 101900 0 0 278 0 0 0 0 0 0 0 320 10.3 10 10 11.3 880 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.01384E7 -0.6 -5.0 72 101900 0 0 279 0 0 0 0 0 0 0 320 8.8 10 10 11.3 880 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.0142E7 0.0 -5.0 69 102000 0 0 282 0 0 0 0 0 0 0 310 9.3 10 10 11.3 880 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.01456E7 0.0 -3.9 75 102000 0 0 283 0 0 0 0 0 0 0 310 8.2 10 10 11.3 760 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.01492E7 0.6 -2.8 79 102000 6 256 286 1 0 1 0 0 0 0 310 7.7 10 10 11.3 640 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.01528E7 0.6 -0.6 92 102000 57 1336 289 12 0 12 1160 0 1168 413 300 6.7 10 10 6.4 370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.01564E7 0.6 -0.6 92 102000 153 1336 289 37 0 37 3609 0 3634 1243 310 8.2 10 10 3.2 270 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.016E7 1.1 -1.1 85 102000 260 1336 290 69 0 69 6796 0 6846 2362 320 7.7 10 10 11.3 460 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.01636E7 0.6 -2.2 82 102000 367 1336 287 104 1 104 11592 53 11636 3676 310 6.7 10 10 6.4 370 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.01672E7 1.1 -0.6 89 102000 467 1336 291 156 1 155 17283 70 17251 5428 320 6.7 10 10 11.3 460 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.01708E7 1.1 -1.7 82 102000 553 1336 290 173 1 173 19390 75 19481 6465 300 6.2 10 10 11.3 520 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.01744E7 1.1 -2.2 79 102000 619 1336 289 195 0 195 19822 0 19988 7490 320 6.2 10 10 11.3 520 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.0178E7 1.7 -2.2 76 102000 660 1336 292 206 0 206 21014 0 21193 8086 320 5.2 10 10 11.3 340 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.01816E7 1.7 -1.1 82 102000 674 1336 293 219 1 218 24705 82 24719 8501 320 5.7 10 10 11.3 610 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.01852E7 1.7 -0.6 85 102000 659 1336 293 212 1 211 23909 81 23918 8213 320 5.2 10 10 11.3 400 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.01888E7 2.2 -1.1 79 101900 616 1336 281 308 237 197 34643 18772 22268 7541 320 4.1 10 8 16.1 550 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.01924E7 2.2 -1.1 79 101900 550 1336 287 182 73 151 20624 5136 17186 5909 310 6.2 9 9 16.1 550 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.0196E7 1.7 -1.1 82 101900 463 1336 285 189 130 143 21083 8736 16022 5172 320 6.2 10 9 16.1 490 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.01996E7 0.6 -1.1 89 101900 362 1336 288 88 33 79 10029 1487 9032 3029 310 4.1 10 10 2.0 400 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.02032E7 0.6 -2.2 82 101900 254 1336 287 50 14 47 5739 300 5407 1781 340 5.2 10 10 11.3 430 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.02068E7 0.0 -2.8 82 101800 147 1336 284 32 0 32 3124 0 3145 1119 300 4.6 10 10 11.3 520 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.02104E7 0.0 -2.2 85 101800 50 1336 284 6 0 6 580 0 584 228 300 4.1 10 10 11.3 460 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.0214E7 0.0 -2.2 85 101800 0 145 284 0 0 0 0 0 0 0 320 4.1 10 10 11.3 400 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.02176E7 -0.6 -3.3 82 101700 0 0 273 0 0 0 0 0 0 0 360 3.6 10 9 11.3 460 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.02212E7 -0.6 -4.4 75 101700 0 0 272 0 0 0 0 0 0 0 320 3.1 10 9 11.3 610 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.02248E7 -0.6 -3.3 82 101700 0 0 281 0 0 0 0 0 0 0 330 2.6 10 10 11.3 550 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.02284E7 -0.6 -2.8 85 101700 0 0 281 0 0 0 0 0 0 0 320 2.6 10 10 11.3 460 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.0232E7 -0.6 -3.3 82 101700 0 0 281 0 0 0 0 0 0 0 320 2.6 10 10 11.3 460 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.02356E7 -0.6 -3.3 82 101600 6 145 281 1 0 1 0 0 0 0 340 3.6 10 10 11.3 790 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.02392E7 -0.6 -3.3 82 101600 50 1336 281 6 0 6 580 0 584 226 350 4.1 10 10 16.1 610 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.02428E7 0.0 -3.3 79 101500 147 1336 283 36 0 36 3512 0 3536 1200 350 4.1 10 10 16.1 610 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.02464E7 0.0 -2.2 85 101500 253 1336 284 56 1 55 6329 24 6234 1991 360 5.2 10 10 16.1 490 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.025E7 0.6 -1.1 89 101500 361 1336 288 96 1 96 10746 50 10786 3453 330 4.1 10 10 11.3 520 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.02536E7 0.0 -1.7 89 101500 461 1336 264 147 76 120 16608 4682 13611 4563 360 5.7 10 6 16.1 700 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.02572E7 0.6 -1.7 85 101500 547 1336 287 203 116 155 22924 8267 17581 5974 360 4.1 10 10 16.1 700 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.02608E7 0.0 -2.2 85 101500 613 1336 284 141 3 140 16282 207 16233 5894 350 4.1 10 10 16.1 310 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.02644E7 1.1 -1.7 82 101500 654 1336 290 197 2 196 22327 158 22322 7777 350 4.6 10 10 16.1 310 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.0268E7 1.1 -0.6 89 101500 667 1336 291 210 6 208 23746 483 23638 8195 10 4.1 10 10 16.1 520 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.02716E7 1.1 -0.6 89 101400 652 1336 291 200 8 196 22660 629 22316 7776 360 2.6 10 10 6.4 520 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.02752E7 1.1 -1.7 82 101400 610 1336 290 152 4 150 17454 283 17297 6207 360 6.7 10 10 9.7 460 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.02788E7 0.6 -1.7 85 101400 543 1336 287 165 2 164 18546 146 18518 6200 360 4.1 10 10 6.4 370 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.02824E7 0.0 -2.2 85 101400 455 1336 284 135 1 134 15116 65 15068 4915 360 6.7 10 10 11.3 790 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.0286E7 0.0 -2.8 82 101400 354 1336 284 96 2 96 10750 100 10789 3452 10 5.2 10 10 11.3 790 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.02896E7 0.0 -2.8 82 101400 246 1336 284 63 0 63 6204 0 6249 2193 360 6.2 10 10 11.3 460 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.02932E7 0.0 -2.8 82 101400 139 1336 284 34 0 34 3316 0 3339 1151 40 5.7 10 10 11.3 370 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.02968E7 0.0 -2.8 82 101400 42 1336 284 9 0 9 870 0 876 320 50 6.2 10 10 11.3 370 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.03004E7 0.0 -2.2 85 101500 6 11 284 1 0 1 0 0 0 0 60 5.2 10 10 4.8 370 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.0304E7 0.0 -1.7 89 101500 0 0 285 0 0 0 0 0 0 0 40 7.2 10 10 11.3 370 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.03076E7 0.0 -2.2 85 101500 0 0 284 0 0 0 0 0 0 0 30 6.2 10 10 11.3 370 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.03112E7 0.0 -1.7 89 101500 0 0 277 0 0 0 0 0 0 0 40 7.2 10 9 11.3 1070 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.03148E7 0.6 -2.2 82 101500 0 0 287 0 0 0 0 0 0 0 50 7.7 10 10 11.3 1070 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.03184E7 0.0 -2.2 85 101500 0 0 284 0 0 0 0 0 0 0 50 6.2 10 10 11.3 980 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.0322E7 0.0 -2.8 82 101500 0 33 261 0 0 0 0 0 0 0 40 5.7 10 5 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.03256E7 0.6 -3.3 76 101600 43 1337 272 10 8 10 1137 0 1138 343 50 5.7 10 8 11.3 980 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.03292E7 0.6 -2.8 79 101600 140 1337 286 32 3 32 3584 0 3592 1086 50 6.2 10 10 11.3 910 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.03328E7 0.6 -2.8 79 101600 247 1337 286 43 4 42 4954 69 4850 1600 60 6.2 10 10 24.1 790 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.03364E7 1.7 -2.8 73 101600 354 1337 283 140 66 123 15329 3841 13526 3975 60 4.6 10 9 24.1 700 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.034E7 1.1 -2.8 76 101600 454 1337 288 98 2 97 11247 112 11171 3876 10 4.6 10 10 24.1 700 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.03436E7 1.7 -2.8 73 101600 540 1337 291 160 5 157 18027 359 17768 5983 10 3.6 10 10 24.1 700 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.03472E7 1.1 -2.8 76 101600 606 1337 288 143 8 139 16503 552 16106 5832 10 5.2 10 10 24.1 640 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.03508E7 1.1 -2.2 79 101600 647 1337 289 170 7 167 19493 518 19235 6914 350 4.6 10 10 24.1 550 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.03544E7 1.1 -2.8 76 101600 660 1337 288 169 0 169 17244 0 17390 7055 330 3.6 10 10 24.1 520 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.0358E7 1.1 -2.2 79 101600 645 1337 289 227 7 224 25417 588 25212 8403 350 2.6 10 10 24.1 490 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.03616E7 1.1 -2.2 79 101600 603 1337 289 195 6 192 21920 472 21689 7312 350 5.2 10 10 24.1 400 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.03652E7 0.6 -2.2 82 101600 535 1337 273 277 215 189 30728 16858 21070 6703 350 3.6 10 8 24.1 340 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.03688E7 0.0 -1.7 89 101600 448 1337 285 87 7 85 10085 369 9884 3491 350 4.1 10 10 11.3 210 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.03724E7 -0.6 -2.2 89 101600 347 1337 282 76 11 73 8680 464 8363 2804 350 2.1 10 10 11.3 240 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.0376E7 -0.6 -2.2 89 101600 238 1337 282 61 0 61 6002 0 6046 2117 350 2.1 10 10 11.3 240 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.03796E7 -0.6 -1.7 92 101600 131 1337 282 29 2 29 3271 0 3278 1007 320 3.1 10 10 11.3 120 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.03832E7 -0.6 -1.1 96 101600 35 1236 283 4 1 4 487 0 487 154 360 3.6 10 10 0.8 90 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.03868E7 -0.6 -1.1 96 101500 0 0 283 0 0 0 0 0 0 0 0 0.0 10 10 4.8 90 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.03904E7 -0.6 -1.1 96 101500 0 0 283 0 0 0 0 0 0 0 0 0.0 10 10 11.3 150 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.0394E7 0.0 -1.1 92 101500 0 0 286 0 0 0 0 0 0 0 330 2.1 10 10 11.3 150 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.03976E7 0.0 -0.6 96 101500 0 0 286 0 0 0 0 0 0 0 250 3.1 10 10 11.3 120 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.04012E7 0.0 -0.6 96 101500 0 0 286 0 0 0 0 0 0 0 180 2.6 10 10 11.3 120 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.04048E7 -0.6 -0.6 100 101500 0 0 284 0 0 0 0 0 0 0 170 3.1 10 10 0.4 150 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.04084E7 0.0 -0.6 96 101500 0 0 286 0 0 0 0 0 0 0 170 2.1 10 10 4.8 120 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.0412E7 0.0 0.0 100 101500 37 1259 287 5 0 5 482 0 486 187 150 1.5 10 10 8.0 180 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.04156E7 0.6 0.0 96 101500 133 1337 289 25 1 25 2843 0 2848 888 0 0.0 10 10 11.3 240 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.04192E7 0.6 -0.6 92 101500 240 1337 289 59 1 59 6593 23 6613 2048 0 0.0 10 10 11.3 180 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.04228E7 1.1 0.0 92 101500 347 1337 291 83 0 83 8235 0 8298 3064 220 2.1 10 10 24.1 180 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.04264E7 1.7 0.6 92 101500 448 1337 294 125 0 125 12510 0 12608 4620 200 2.6 10 10 16.1 180 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.043E7 1.7 0.6 92 101400 534 1337 294 165 0 165 16636 0 16772 6134 180 2.6 10 10 16.1 180 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.04336E7 1.7 0.6 92 101400 600 1337 294 177 0 177 17947 0 18097 6892 220 4.1 10 10 16.1 180 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.04372E7 2.2 0.6 89 101400 640 1337 297 221 0 221 22488 0 22679 8279 200 4.1 10 10 24.1 180 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.04408E7 2.2 0.6 89 101400 654 1337 297 208 0 208 21191 0 21371 8089 230 3.1 10 10 24.1 180 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.04444E7 2.2 0.0 85 101400 638 1337 296 197 0 197 20049 0 20219 7700 260 3.6 10 10 24.1 310 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.0448E7 2.2 0.0 85 101400 596 1337 296 184 1 184 20713 77 20813 7062 240 2.6 10 10 11.3 370 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.04516E7 2.8 0.0 82 101400 528 1337 299 153 1 153 17231 70 17307 5829 270 2.6 10 10 11.3 490 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.04552E7 3.3 0.0 79 101300 441 1337 301 131 0 131 13110 0 13213 4753 230 4.1 10 10 11.3 490 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.04588E7 3.3 0.0 79 101400 339 1337 301 105 1 105 11609 51 11655 3574 250 3.1 10 10 11.3 460 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.04624E7 2.8 0.6 86 101400 231 1337 271 105 225 64 11640 5573 7118 2155 320 3.6 3 3 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.0466E7 1.7 0.0 89 101400 123 1337 268 43 56 38 4718 0 4182 1190 330 2.6 4 4 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.04696E7 1.1 0.0 92 101400 29 1103 263 6 16 5 713 0 594 186 0 0.0 3 3 24.1 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.04732E7 1.1 0.0 92 101400 0 0 291 0 0 0 0 0 0 0 320 4.1 10 10 16.1 180 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.04768E7 0.6 0.0 96 101400 0 0 289 0 0 0 0 0 0 0 310 3.1 10 10 16.1 150 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.04804E7 0.6 0.0 96 101400 0 0 289 0 0 0 0 0 0 0 240 2.6 10 10 16.1 150 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.0484E7 0.0 0.0 100 101400 0 0 287 0 0 0 0 0 0 0 290 1.5 10 10 1.6 150 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.04876E7 0.6 0.0 96 101500 0 0 289 0 0 0 0 0 0 0 300 4.1 10 10 3.2 90 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.04912E7 0.6 0.6 100 101500 0 0 290 0 0 0 0 0 0 0 300 3.6 10 10 11.3 150 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.04948E7 1.7 0.6 92 101500 0 0 294 0 0 0 0 0 0 0 300 3.6 10 10 11.3 150 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.04984E7 1.7 0.6 92 101500 31 1148 294 6 0 6 578 0 582 216 320 4.1 10 10 11.3 150 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.0502E7 1.1 0.0 92 101500 126 1338 291 18 1 18 2092 0 2095 671 350 5.7 10 10 16.1 180 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.05056E7 1.1 -1.1 85 101600 233 1338 290 38 3 38 4388 37 4397 1450 330 4.1 10 10 16.1 180 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.05092E7 1.1 -0.6 89 101600 341 1338 291 78 2 77 8834 84 8749 2876 360 3.6 10 10 16.1 520 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.05128E7 1.1 -1.7 82 101600 441 1338 290 110 4 108 12471 231 12290 4141 360 4.6 10 10 16.1 550 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.05164E7 0.6 -1.1 89 101600 527 1338 288 169 3 167 18880 220 18744 6132 360 4.1 10 10 11.3 610 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.052E7 1.1 -2.2 79 101600 593 1338 289 171 4 169 19371 298 19232 6637 340 4.6 10 10 11.3 550 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.05236E7 0.6 -1.7 85 101600 634 1338 287 160 2 159 18367 145 18332 6596 360 5.2 10 10 9.7 550 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.05272E7 0.6 -2.2 82 101600 647 1338 287 192 1 191 21781 78 21772 7598 10 4.1 10 10 11.3 550 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.05308E7 0.6 -2.8 79 101600 631 1338 286 209 1 208 23479 81 23485 7915 50 5.2 10 10 16.1 520 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.05344E7 0.0 -2.8 82 101600 588 1338 284 193 1 192 21633 79 21626 7199 60 4.6 10 10 11.3 370 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.0538E7 0.6 -2.8 79 101600 521 1338 286 150 0 150 15126 0 15249 5706 60 5.7 10 10 11.3 400 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.05416E7 0.0 -2.2 85 101600 433 1338 284 123 0 122 12309 0 12305 4492 50 6.2 10 10 6.4 370 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.05452E7 -0.6 -2.8 85 101700 331 1338 281 88 0 88 8731 0 8796 3149 80 5.7 10 10 6.4 370 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.05488E7 -1.1 -3.3 85 101700 223 1338 279 56 0 56 5504 0 5544 1940 50 6.2 10 10 6.4 370 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.05524E7 -1.1 -2.8 89 101700 115 1338 279 33 0 33 3212 0 3234 1061 50 6.2 10 10 4.8 460 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.0556E7 -0.6 -1.7 92 101700 23 992 282 6 0 6 579 0 582 214 60 7.2 10 10 2.4 400 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.05596E7 -1.1 -3.3 85 101600 0 0 265 0 0 0 0 0 0 0 60 4.6 10 8 8.0 400 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.05632E7 -1.1 -2.8 89 101600 0 0 272 0 0 0 0 0 0 0 60 7.2 10 9 8.0 460 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.05668E7 -1.1 -2.8 89 101600 0 0 266 0 0 0 0 0 0 0 50 5.2 10 8 8.0 460 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.05704E7 -1.1 -2.8 89 101600 0 0 272 0 0 0 0 0 0 0 80 6.2 10 9 8.0 460 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.0574E7 -1.1 -2.2 92 101600 0 0 280 0 0 0 0 0 0 0 50 5.7 10 10 8.0 460 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.05776E7 -1.1 -2.2 92 101600 0 0 280 0 0 0 0 0 0 0 60 5.2 10 10 8.0 460 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.05812E7 -1.7 -3.3 89 101600 0 0 259 0 0 0 0 0 0 0 50 6.2 9 7 11.3 520 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.05848E7 -1.1 -2.8 89 101600 25 1037 272 1 0 1 96 0 97 40 50 6.2 10 9 8.0 520 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.05884E7 -1.1 -3.9 82 101600 119 1338 265 20 3 20 2297 0 2301 723 50 7.7 10 8 8.0 520 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.0592E7 -1.7 -3.3 89 101600 226 1338 269 51 12 49 5757 204 5546 1751 80 6.7 10 9 11.3 490 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.05956E7 -0.6 -2.8 85 101600 334 1338 281 91 3 90 10160 139 10085 3180 50 6.7 10 10 11.3 520 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.05992E7 -0.6 -2.8 85 101600 434 1338 281 97 1 96 11085 55 11009 3769 60 6.2 10 10 6.4 520 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.06028E7 -0.6 -2.8 85 101600 520 1338 281 102 3 100 11861 178 11668 4207 60 7.2 10 10 11.3 520 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.06064E7 0.0 -2.8 82 101600 586 1338 276 192 112 142 22027 7767 16358 5827 70 7.2 10 9 16.1 520 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.061E7 1.1 -2.8 76 101500 627 1338 275 247 111 195 27860 8793 22102 7551 60 6.2 10 8 6.4 520 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.06136E7 0.6 -1.7 85 101500 640 1338 287 158 21 148 18265 1482 17181 6286 70 7.2 10 10 6.4 520 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.06172E7 0.0 -2.8 82 101500 624 1338 284 116 2 116 13633 130 13682 5131 60 6.2 10 10 11.3 490 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.06208E7 0.6 -2.2 82 101500 581 1338 279 213 42 194 23813 3327 21796 7186 70 6.7 10 9 11.3 460 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.06244E7 -0.6 -3.3 82 101500 513 1338 267 185 69 158 20725 4968 17781 5853 60 7.7 10 8 11.3 400 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.0628E7 -0.6 -2.2 89 101500 425 1338 268 123 62 103 13962 3482 11734 3955 70 6.7 10 8 11.3 370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.06316E7 -0.6 -2.8 85 101500 323 1338 268 107 25 100 11828 1231 11097 3380 60 7.2 10 8 11.3 400 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.06352E7 -1.1 -2.8 89 101500 215 1338 279 38 1 38 4370 11 4379 1429 70 5.2 10 10 8.0 370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.06388E7 -1.1 -3.3 85 101500 107 1338 265 23 8 22 2614 0 2505 774 90 8.2 10 8 11.3 430 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.06424E7 -1.1 -3.3 85 101500 18 881 279 5 0 5 482 0 485 179 60 7.7 10 10 11.3 400 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.0646E7 -1.1 -2.8 89 101500 0 0 279 0 0 0 0 0 0 0 60 7.7 10 10 9.7 400 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.06496E7 -1.1 -2.8 89 101500 0 0 279 0 0 0 0 0 0 0 60 6.7 10 10 9.7 460 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.06532E7 -1.1 -2.8 89 101500 0 0 279 0 0 0 0 0 0 0 50 7.7 10 10 9.7 460 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.06568E7 -1.1 -3.3 85 101500 0 0 265 0 0 0 0 0 0 0 50 7.2 10 8 9.7 460 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.06604E7 -1.1 -2.8 89 101500 0 0 279 0 0 0 0 0 0 0 50 7.2 10 10 9.7 460 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.0664E7 -1.1 -2.2 92 101500 0 0 266 0 0 0 0 0 0 0 60 6.2 10 8 9.7 610 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.06676E7 -1.1 -2.2 92 101500 0 0 280 0 0 0 0 0 0 0 80 5.7 10 10 4.8 370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.06712E7 -1.1 -2.2 92 101500 21 926 280 0 0 0 0 0 0 0 60 6.7 10 10 4.8 370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.06748E7 -1.1 -2.2 92 101500 112 1339 280 17 0 17 1653 0 1664 624 60 5.2 10 10 6.4 370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.06784E7 -1.1 -2.2 92 101500 219 1339 272 47 12 45 5325 162 5112 1625 60 6.2 10 9 4.8 400 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.0682E7 -1.1 -2.8 89 101500 327 1339 279 88 33 80 9899 1394 9029 2904 70 6.2 10 10 4.8 460 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.06856E7 -1.1 -2.2 92 101500 428 1339 280 99 4 98 11274 219 11199 3800 70 6.2 10 10 4.8 460 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.06892E7 0.0 -2.2 85 101500 514 1339 284 108 3 107 12471 182 12399 4413 70 7.2 10 10 4.8 460 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.06928E7 0.0 -2.8 82 101500 579 1339 270 236 208 145 26991 14531 16653 5881 80 7.7 10 8 3.2 400 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.06964E7 0.6 -1.7 85 101500 620 1339 287 151 7 147 17394 492 17004 6153 90 7.2 10 10 3.2 460 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.07E7 0.0 -3.3 79 101500 633 1339 275 266 127 205 29925 10295 23178 7848 80 7.2 10 9 3.2 460 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.07036E7 -0.6 -2.8 85 101500 617 1339 264 313 295 174 35570 22263 19865 6941 70 7.7 10 7 6.4 400 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.07072E7 -0.6 -3.3 82 101500 574 1339 281 116 4 114 13516 256 13331 4882 70 7.7 10 10 6.4 400 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.07108E7 -0.6 -3.3 82 101500 506 1339 281 95 3 94 11076 173 10995 3969 70 7.7 10 10 4.8 370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.07144E7 -0.6 -2.8 85 101500 418 1339 281 123 0 123 12294 0 12390 4428 70 8.2 10 10 6.4 370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.0718E7 -1.1 -2.2 92 101500 315 1339 272 91 18 86 10158 786 9634 3029 100 7.7 10 9 6.4 370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.07216E7 -1.1 -3.3 85 101500 207 1339 261 76 20 73 8257 542 7961 2206 90 8.2 10 7 8.0 370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.07252E7 -1.1 -3.3 85 101500 99 1339 279 17 1 17 1962 0 1965 619 80 8.8 10 10 6.4 370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.07288E7 -1.1 -2.8 89 101500 13 748 279 1 0 1 96 0 97 40 80 8.2 10 10 6.4 340 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.07324E7 -1.1 -2.8 89 101400 0 0 279 0 0 0 0 0 0 0 80 7.7 10 10 6.4 370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.0736E7 -1.1 -2.8 89 101400 0 0 272 0 0 0 0 0 0 0 90 7.7 10 9 6.4 370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.07396E7 -1.1 -2.8 89 101400 0 0 272 0 0 0 0 0 0 0 90 7.2 10 9 11.3 370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.07432E7 -1.1 -2.8 89 101400 0 0 279 0 0 0 0 0 0 0 90 8.8 10 10 11.3 370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.07468E7 -1.1 -2.8 89 101300 0 0 279 0 0 0 0 0 0 0 90 7.7 10 10 11.3 370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.07504E7 -1.1 -2.8 89 101300 0 0 279 0 0 0 0 0 0 0 90 8.2 10 10 11.3 460 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.0754E7 -1.1 -2.2 92 101200 0 0 280 0 0 0 0 0 0 0 90 6.7 10 10 11.3 460 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.07576E7 -1.1 -2.2 92 101200 16 837 280 3 1 3 359 0 359 111 100 8.8 10 10 4.8 370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.07612E7 -1.1 -1.1 100 101100 105 1340 281 17 3 17 1958 0 1961 616 90 7.7 10 10 1.2 150 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.07648E7 -1.1 -1.1 100 101100 212 1340 281 43 2 42 4883 21 4781 1525 90 9.8 10 10 1.2 90 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.07684E7 -1.1 -1.1 100 101000 320 1340 281 99 2 98 10923 95 10855 3283 100 10.3 10 10 1.2 90 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.0772E7 -0.6 -1.1 96 101000 421 1340 283 107 2 107 12073 113 12119 4018 100 9.3 10 10 1.6 880 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.07756E7 0.0 -0.6 96 100900 507 1340 286 178 2 177 19693 151 19678 6182 90 8.2 10 10 1.6 430 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.07792E7 0.0 -0.6 96 100900 573 1340 286 203 3 201 22563 241 22454 7237 100 9.3 10 10 4.8 310 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.07828E7 0.6 -0.6 92 100800 613 1340 289 209 1 209 23360 81 23480 7768 100 9.3 10 10 4.8 240 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.07864E7 0.6 0.0 96 100700 626 1340 289 202 1 202 22701 80 22814 7718 110 8.2 10 10 3.2 120 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.079E7 1.1 0.6 96 100700 610 1340 292 197 1 197 22111 79 22221 7479 110 8.2 10 10 2.0 90 9 999999999 2 0.0000 0 88 0.000 0.2 1.0 +2.07936E7 1.1 1.1 100 100600 566 1340 292 204 0 203 20628 0 20696 7248 100 7.2 10 10 1.2 60 9 999999999 3 0.0000 0 88 0.000 0.2 1.0 +2.07972E7 1.7 1.7 100 100600 498 1340 296 100 0 100 10051 0 10132 4144 90 5.7 10 10 0.8 60 9 999999999 3 0.0000 0 88 0.000 0.2 1.0 +2.08008E7 1.7 1.7 100 100500 410 1340 296 77 1 77 8901 47 8927 3116 110 4.1 10 10 0.8 60 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.08044E7 2.2 1.7 96 100500 307 1340 298 57 0 57 5636 0 5678 2211 90 4.1 10 10 2.4 150 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.0808E7 2.8 2.2 96 100500 198 1340 301 36 0 36 3525 0 3550 1338 170 4.1 10 10 1.2 90 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.08116E7 2.8 2.8 100 100500 91 1340 287 18 26 15 2083 0 1738 549 220 6.2 10 8 1.2 240 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.08152E7 2.2 2.2 100 100500 9 636 298 3 1 3 0 0 0 0 220 6.2 10 10 0.4 30 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.08188E7 2.8 2.8 100 100500 0 0 302 0 0 0 0 0 0 0 200 4.1 10 10 1.6 180 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.08224E7 2.8 2.2 96 100500 0 0 301 0 0 0 0 0 0 0 200 4.6 10 10 1.2 150 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.0826E7 2.2 2.2 100 100500 0 0 298 0 0 0 0 0 0 0 200 3.6 10 10 0.8 150 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.08296E7 2.2 2.2 100 100500 0 0 298 0 0 0 0 0 0 0 200 2.6 10 10 0.8 150 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.08332E7 2.2 2.2 100 100500 0 0 298 0 0 0 0 0 0 0 230 3.6 10 10 0.8 150 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.08368E7 2.2 2.2 100 100500 0 0 298 0 0 0 0 0 0 0 230 6.2 10 10 4.8 150 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.08404E7 2.2 1.7 96 100600 0 0 298 0 0 0 0 0 0 0 230 6.7 10 10 11.3 370 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.0844E7 2.2 0.6 89 100600 12 726 297 0 1 0 0 0 0 0 230 8.2 10 10 11.3 370 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.08476E7 1.7 0.6 92 100600 98 1340 286 29 28 27 3199 0 2986 858 270 6.7 10 9 11.3 310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.08512E7 1.7 0.6 92 100600 205 1340 294 62 4 61 6804 75 6717 1949 240 6.2 10 10 24.1 310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.08548E7 2.2 0.6 89 100700 313 1340 297 72 1 71 8134 37 8046 2614 240 6.7 10 10 16.1 310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.08584E7 2.2 0.6 89 100700 414 1340 297 98 6 96 11130 316 10941 3687 260 5.7 10 10 16.1 400 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.0862E7 2.2 0.0 85 100700 500 1340 296 118 10 114 13506 610 13098 4574 240 6.2 10 10 16.1 400 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.08656E7 2.2 0.6 89 100700 566 1340 297 176 3 175 19748 224 19729 6600 260 6.2 10 10 16.1 400 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.08692E7 2.8 0.6 86 100700 606 1340 285 283 279 155 32349 19816 17795 6322 250 6.2 10 8 16.1 640 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.08728E7 2.2 0.6 89 100800 619 1340 282 266 126 206 29795 10124 23192 7753 270 7.7 10 8 16.1 370 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.08764E7 2.8 0.6 86 100800 603 1340 280 237 126 180 26755 9535 20417 7002 240 7.2 10 7 16.1 370 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.088E7 1.7 0.0 89 100800 559 1340 286 278 255 169 31261 18800 19092 6426 250 4.1 10 9 16.1 310 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.08836E7 1.7 0.0 89 100900 490 1340 294 145 4 143 16275 270 16120 5341 240 4.1 10 10 16.1 340 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.08872E7 1.1 -0.6 89 100900 402 1340 291 103 4 102 11624 217 11553 3823 270 4.1 10 10 16.1 310 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.08908E7 1.1 -0.6 89 100900 299 1340 291 65 5 64 7390 169 7297 2397 300 5.2 10 10 16.1 310 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.08944E7 1.1 -0.6 89 100900 190 1340 291 47 3 46 5263 29 5166 1591 290 5.2 10 10 16.1 310 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.0898E7 1.1 -0.6 89 100900 83 1340 291 19 0 19 1843 0 1855 652 240 4.1 10 10 16.1 310 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.09016E7 1.1 -0.6 89 100900 6 525 291 4 0 4 0 0 0 0 290 3.1 10 10 16.1 340 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.09052E7 1.1 -0.6 89 100900 0 0 291 0 0 0 0 0 0 0 300 2.6 10 10 16.1 340 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.09088E7 1.1 0.0 92 100900 0 0 291 0 0 0 0 0 0 0 250 2.1 10 10 16.1 310 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.09124E7 0.6 0.0 96 100900 0 0 289 0 0 0 0 0 0 0 200 1.5 10 10 11.3 760 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.0916E7 0.0 -0.6 96 100900 0 0 278 0 0 0 0 0 0 0 150 1.5 10 9 11.3 760 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.09196E7 0.0 0.0 100 100900 0 0 287 0 0 0 0 0 0 0 170 2.1 10 10 11.3 760 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.09232E7 0.6 0.0 96 100900 0 0 281 0 0 0 0 0 0 0 0 0.0 10 9 11.3 610 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.09268E7 0.6 0.0 96 100900 0 0 289 0 0 0 0 0 0 0 60 2.6 10 10 11.3 520 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.09304E7 1.1 0.0 92 100900 9 615 291 1 0 1 0 0 0 0 60 2.6 10 10 11.3 520 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.0934E7 0.6 0.0 96 100900 91 1341 289 21 0 21 2036 0 2050 703 90 3.1 10 10 11.3 460 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.09376E7 1.1 0.0 92 100900 198 1341 291 55 1 55 6069 15 6089 1797 80 2.6 10 10 16.1 430 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.09412E7 1.7 -0.6 85 100900 306 1341 293 81 1 81 9035 40 9066 2839 90 3.1 10 10 16.1 430 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.09448E7 1.7 0.0 89 100900 407 1341 294 113 1 113 12642 57 12692 4099 60 3.1 10 10 16.1 400 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.09484E7 1.7 -0.6 85 100900 493 1341 293 153 1 153 17074 70 17151 5567 80 3.1 10 10 16.1 400 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.0952E7 1.7 0.0 89 100900 559 1341 294 186 1 186 20737 77 20839 6798 100 3.6 10 10 16.1 340 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.09556E7 2.2 0.6 89 100800 599 1341 297 206 1 205 22984 80 22989 7556 90 3.6 10 10 16.1 310 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.09592E7 2.8 1.1 89 100900 612 1341 300 215 1 215 23958 82 24083 7889 80 4.6 10 10 16.1 310 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2.09628E7 2.8 1.1 89 100800 595 1341 300 180 1 180 20285 76 20382 6949 80 4.6 10 10 16.1 270 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2.09664E7 2.8 1.7 93 100800 551 1341 300 171 0 171 17265 0 17407 6421 90 4.1 10 10 11.3 210 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2.097E7 3.3 1.7 89 100700 483 1341 303 147 1 147 16423 68 16496 5387 100 6.2 10 10 11.3 240 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.09736E7 2.8 1.7 93 100700 394 1341 300 114 0 114 11356 0 11444 4081 90 5.7 10 10 11.3 210 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.09772E7 2.8 1.7 93 100700 291 1341 300 89 1 89 9816 41 9853 2974 90 5.7 10 10 11.3 240 9 999999999 14 0.0000 0 88 0.000 0.0 1.0 +2.09808E7 2.2 1.1 93 100700 182 1341 297 48 0 48 4695 0 4728 1612 90 6.2 10 10 11.3 180 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +2.09844E7 2.2 1.1 93 100600 75 1341 297 21 0 21 2034 0 2048 686 110 5.7 10 10 11.3 180 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +2.0988E7 1.8 0.5 93 100600 12 391 295 2 0 2 0 0 0 0 80 6.1 10 10 11.3 180 9 999999999 15 0.0000 0 88 0.000 0.0 1.0 +2.09916E7 1.4 -0.1 96 100500 0 0 292 0 0 0 0 0 0 0 90 6.4 10 10 8.0 120 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +2.09952E7 1.0 -0.7 96 100500 0 0 290 0 0 0 0 0 0 0 110 6.8 10 10 8.0 150 9 999999999 16 0.0000 0 88 0.000 0.0 1.0 +2.09988E7 0.6 -1.3 82 101500 0 0 288 0 0 0 0 0 0 0 360 7.1 10 10 11.3 460 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.10024E7 0.2 -1.9 75 101500 0 0 286 0 0 0 0 0 0 0 360 7.5 10 10 8.0 430 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.1006E7 -0.1 -2.6 82 101600 0 0 284 0 0 0 0 0 0 0 360 7.8 10 10 8.0 400 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.10096E7 -0.6 -3.3 82 101700 0 0 281 0 0 0 0 0 0 0 360 8.2 10 10 11.3 400 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.10132E7 -0.6 -2.8 85 101700 0 0 281 0 0 0 0 0 0 0 360 7.7 10 10 11.3 400 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.10168E7 -0.6 -2.8 85 101800 6 503 281 2 0 2 0 0 0 0 10 7.2 10 10 3.2 400 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.10204E7 -0.6 -3.3 82 101800 83 1342 281 20 0 20 1940 0 1953 664 10 6.7 10 10 4.8 460 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.1024E7 -0.6 -2.8 85 101800 190 1342 281 54 0 54 5288 0 5326 1747 10 6.2 10 10 8.0 460 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.10276E7 -0.6 -3.9 79 101900 299 1342 272 91 88 71 10244 3207 8018 2563 30 6.7 9 9 11.3 460 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.10312E7 -0.6 -3.3 82 101900 400 1342 281 41 1 40 4972 37 4858 1757 40 6.2 10 10 11.3 460 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.10348E7 0.0 -3.3 79 101900 486 1342 275 110 53 90 12797 2962 10503 3758 40 5.7 9 9 11.3 460 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.10384E7 0.0 -3.3 79 102000 551 1342 275 226 196 144 25707 13613 16449 5700 40 6.2 9 9 11.3 460 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.1042E7 0.6 -1.7 85 102000 592 1342 287 140 23 130 16190 1537 15092 5476 50 5.2 10 10 9.7 460 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.10456E7 0.6 -2.8 79 102000 604 1342 278 145 24 134 16777 1633 15566 5664 40 5.7 9 9 11.3 490 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.10492E7 1.1 -1.7 82 102000 588 1342 282 161 2 160 18302 145 18269 6368 60 6.7 9 9 8.0 490 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.10528E7 0.6 -1.1 89 102000 543 1342 280 227 89 190 25203 6969 21200 6782 40 5.2 9 9 11.3 490 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.10564E7 0.0 -1.1 92 102000 475 1342 286 151 34 139 16928 2261 15650 5145 50 5.7 10 10 3.2 490 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.106E7 -0.6 -1.7 92 102000 386 1342 282 84 4 82 9608 192 9409 3196 60 4.1 10 10 3.2 460 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.10636E7 -0.6 -2.2 89 102000 283 1342 282 41 2 41 4805 47 4814 1644 90 6.7 10 10 6.4 610 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.10672E7 -0.6 -2.8 85 102100 173 1342 268 45 22 42 5040 106 4716 1443 80 5.2 10 8 9.7 460 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.10708E7 -1.1 -3.3 85 102000 67 1342 271 16 2 16 1809 0 1812 547 80 5.7 10 9 11.3 460 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.10744E7 -1.7 -3.9 85 102100 6 280 258 1 0 1 0 0 0 0 80 5.7 8 7 11.3 460 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.1078E7 -1.7 -3.3 89 102100 0 0 256 0 0 0 0 0 0 0 80 5.2 9 6 11.3 460 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.10816E7 -1.7 -3.9 85 102100 0 0 276 0 0 0 0 0 0 0 80 5.2 10 10 11.3 460 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.10852E7 -1.7 -3.9 85 102100 0 0 276 0 0 0 0 0 0 0 90 5.2 10 10 11.3 460 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.10888E7 -2.2 -4.4 85 102100 0 0 273 0 0 0 0 0 0 0 80 5.7 10 10 11.3 460 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.10924E7 -1.7 -3.9 85 102100 0 0 268 0 0 0 0 0 0 0 70 4.1 9 9 11.3 460 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.1096E7 -1.1 -3.3 85 102100 0 0 279 0 0 0 0 0 0 0 80 4.1 10 10 11.3 460 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.10996E7 -1.1 -2.2 92 102100 0 0 280 0 0 0 0 0 0 0 70 5.2 10 10 11.3 460 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.11032E7 -1.1 -2.2 92 102100 4 414 280 0 1 0 0 0 0 0 70 5.2 10 10 11.3 370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.11068E7 -1.1 -2.2 92 102100 76 1342 280 11 0 11 1066 0 1073 404 80 5.7 10 10 2.4 430 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.11104E7 -0.6 -1.7 92 102100 183 1342 282 39 4 38 4408 11 4305 1347 70 6.2 10 10 4.8 550 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.1114E7 -0.6 -2.2 89 102100 292 1342 282 56 6 54 6426 173 6213 2065 80 6.2 10 10 11.3 610 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.11176E7 -0.6 -2.8 85 102100 393 1342 274 104 42 91 11804 2135 10364 3460 90 6.7 9 9 11.3 610 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.11212E7 -0.6 -3.3 82 102100 479 1342 273 131 51 112 14952 3096 12831 4422 100 6.7 9 9 11.3 460 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.11248E7 -0.6 -2.8 85 102100 544 1342 281 133 0 133 13434 0 13544 5346 90 6.2 10 10 11.3 460 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.11284E7 -0.6 -3.3 82 102100 585 1342 281 114 0 114 11557 0 11652 4911 90 6.2 10 10 11.3 370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.1132E7 0.0 -2.8 82 102100 597 1342 284 167 6 165 18975 443 18832 6556 100 6.7 10 10 11.3 340 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.11356E7 0.0 -2.8 82 102100 580 1342 270 226 147 161 25643 10728 18350 6349 80 7.7 10 8 11.3 340 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.11392E7 -0.6 -3.3 82 102100 536 1342 273 145 48 125 16635 3135 14396 5080 110 7.7 9 9 11.3 340 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.11428E7 -0.6 -2.8 85 102100 467 1342 268 205 132 158 22705 9409 17581 5513 90 8.2 8 8 11.3 340 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.11464E7 -0.6 -3.3 82 102000 377 1342 267 131 65 112 14581 3669 12516 3943 90 6.7 10 8 11.3 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.115E7 -1.1 -2.8 89 102100 274 1342 279 31 2 30 3712 36 3597 1243 90 5.2 10 10 11.3 270 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.11536E7 -1.1 -2.8 89 102000 165 1342 279 31 2 31 3544 0 3551 1130 90 5.7 10 10 11.3 240 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.11572E7 -1.7 -3.3 89 102000 59 1342 263 12 7 12 1378 0 1380 425 100 6.7 10 8 11.3 240 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.11608E7 -1.7 -3.3 89 102000 1 168 263 0 0 0 0 0 0 0 80 7.2 10 8 11.3 270 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.11644E7 -1.7 -3.3 89 102000 0 0 276 0 0 0 0 0 0 0 80 6.2 10 10 11.3 240 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.1168E7 -1.1 -2.8 89 102000 0 0 279 0 0 0 0 0 0 0 110 5.2 10 10 11.3 240 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.11716E7 -1.7 -3.3 89 102000 0 0 276 0 0 0 0 0 0 0 90 5.2 10 10 11.3 240 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.11752E7 -1.7 -3.3 89 102000 0 0 276 0 0 0 0 0 0 0 100 6.2 10 10 11.3 270 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.11788E7 -1.7 -3.3 89 102000 0 0 276 0 0 0 0 0 0 0 90 5.7 10 10 11.3 270 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.11824E7 -1.1 -3.3 85 101900 0 0 279 0 0 0 0 0 0 0 70 6.2 10 10 11.3 430 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.1186E7 -1.1 -3.3 85 101900 0 0 279 0 0 0 0 0 0 0 80 5.2 10 10 11.3 430 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.11896E7 -0.6 -3.9 79 101900 2 302 280 0 0 0 0 0 0 0 90 5.2 10 10 11.3 520 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.11932E7 -0.6 -3.9 79 101900 69 1343 280 13 1 13 1488 0 1490 457 70 6.2 10 10 16.1 520 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.11968E7 -0.6 -3.3 82 101900 176 1343 281 34 1 34 3865 0 3874 1222 80 6.2 10 10 16.1 520 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.12004E7 -1.1 -3.9 82 101900 284 1343 278 89 5 88 9794 207 9720 2882 70 5.7 10 10 16.1 460 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.1204E7 -1.1 -4.4 78 101900 385 1343 278 94 7 92 10642 357 10451 3459 90 5.7 10 10 16.1 460 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.12076E7 -1.1 -3.9 82 101800 472 1343 278 161 6 159 17829 431 17690 5537 90 7.7 10 10 11.3 400 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.12112E7 -1.7 -4.4 82 101800 537 1343 275 153 1 152 17275 71 17238 5831 80 6.2 10 10 11.3 400 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.12148E7 -1.1 -3.9 82 101800 577 1343 278 187 1 187 20946 78 21048 6972 70 7.2 10 10 11.3 370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.12184E7 -1.1 -3.9 82 101800 589 1343 265 260 93 218 28838 7826 24306 7739 70 8.2 10 8 11.3 370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.1222E7 -0.6 -3.9 79 101700 573 1343 267 265 168 192 29599 13319 21551 7059 90 8.8 10 8 11.3 430 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.12256E7 -0.6 -3.9 79 101700 528 1343 267 193 77 162 21647 5630 18253 6041 70 8.2 10 8 11.3 430 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.12292E7 -1.1 -3.9 82 101700 459 1343 278 109 10 105 12459 586 12045 4149 60 6.7 10 10 11.3 430 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.12328E7 -1.7 -4.4 82 101600 369 1343 275 72 2 72 8288 89 8312 2840 80 7.7 10 10 11.3 340 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.12364E7 -1.1 -3.9 82 101600 266 1343 278 70 3 70 7817 99 7842 2437 70 9.8 10 10 11.3 340 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.124E7 -0.6 -2.8 85 101600 156 1343 268 54 48 48 5930 257 5288 1517 90 6.7 10 8 11.3 340 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.12436E7 0.0 -1.7 89 101500 51 1343 285 9 5 9 1049 0 1050 328 80 6.7 10 10 11.3 210 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.12472E7 0.0 -1.1 92 101500 0 56 286 0 0 0 0 0 0 0 80 7.7 10 10 6.4 340 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.12508E7 -0.6 -1.7 92 101500 0 0 282 0 0 0 0 0 0 0 70 7.2 10 10 9.7 340 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.12544E7 -1.1 -2.8 89 101400 0 0 279 0 0 0 0 0 0 0 80 7.7 10 10 11.3 370 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.1258E7 -1.1 -3.9 82 101400 0 0 278 0 0 0 0 0 0 0 80 8.2 10 10 11.3 400 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.12616E7 -1.1 -3.9 82 101400 0 0 278 0 0 0 0 0 0 0 80 7.7 10 10 11.3 430 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.12652E7 -1.1 -3.9 82 101400 0 0 278 0 0 0 0 0 0 0 70 7.7 10 10 11.3 430 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.12688E7 -1.1 -3.3 85 101400 0 0 279 0 0 0 0 0 0 0 70 6.7 10 10 11.3 610 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.12724E7 -1.1 -2.2 92 101400 0 0 280 0 0 0 0 0 0 0 90 4.6 10 10 11.3 610 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.1276E7 -0.6 -2.2 89 101400 1 213 282 0 0 0 0 0 0 0 70 6.2 10 10 3.2 610 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.12796E7 -0.6 -1.7 92 101400 62 1344 282 8 2 8 945 0 945 298 90 6.7 10 10 3.2 490 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.12832E7 0.0 -1.1 92 101400 169 1344 286 34 5 33 3858 0 3753 1179 70 6.7 10 10 6.4 580 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.12868E7 0.6 -1.1 89 101400 277 1344 288 73 5 72 8141 168 8056 2503 80 7.2 10 10 9.7 550 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.12904E7 0.6 -0.6 92 101300 378 1344 289 108 5 106 12051 269 11873 3779 70 8.8 10 10 9.7 550 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.1294E7 1.1 -1.7 82 101400 464 1344 290 129 1 129 14499 64 14559 4811 80 7.7 10 10 11.3 580 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.12976E7 1.7 -0.6 85 101400 530 1344 293 160 2 159 17954 143 17923 5960 90 10.3 10 10 11.3 580 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.13012E7 1.7 -0.6 85 101400 570 1344 293 184 1 183 20597 77 20584 6821 90 9.8 10 10 11.3 580 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.13048E7 1.7 -0.6 85 101400 582 1344 293 185 0 185 18737 0 18893 6965 90 10.8 10 10 11.3 400 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.13084E7 1.7 -1.1 82 101400 565 1344 285 200 39 183 22374 2997 20571 6795 90 11.3 10 9 11.3 370 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.1312E7 1.7 -0.6 85 101300 520 1344 293 138 4 137 15650 267 15601 5349 90 9.8 10 10 6.4 180 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.13156E7 1.7 -0.6 85 101300 450 1344 293 107 9 104 12206 514 11907 4086 80 10.3 10 10 9.7 430 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.13192E7 1.1 -0.6 89 101300 361 1344 291 82 13 79 9339 582 9026 3023 90 9.3 10 10 2.4 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.13228E7 1.1 -0.6 89 101300 257 1344 291 89 2 88 9713 77 9642 2762 90 8.2 10 10 9.7 400 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.13264E7 1.1 -0.6 89 101300 148 1344 291 35 4 35 3925 0 3935 1201 80 8.2 10 10 9.7 400 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.133E7 0.6 -0.6 92 101300 43 1265 289 9 1 9 1040 0 1041 321 80 9.3 10 10 9.7 400 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.13336E7 0.6 -0.6 92 101300 0 0 289 0 0 0 0 0 0 0 80 8.8 10 10 4.8 120 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.13372E7 0.6 -0.6 92 101300 0 0 289 0 0 0 0 0 0 0 80 8.8 10 10 8.0 120 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.13408E7 0.6 -0.6 92 101200 0 0 289 0 0 0 0 0 0 0 90 8.2 10 10 8.0 150 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.13444E7 0.6 -0.6 92 101200 0 0 289 0 0 0 0 0 0 0 70 8.8 10 10 8.0 150 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.1348E7 0.6 -0.6 92 101200 0 0 289 0 0 0 0 0 0 0 80 7.7 10 10 8.0 150 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.13516E7 0.6 -0.6 92 101200 0 0 289 0 0 0 0 0 0 0 90 7.2 10 10 8.0 150 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.13552E7 0.0 -0.6 96 101200 0 0 286 0 0 0 0 0 0 0 80 7.7 10 10 8.0 240 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.13588E7 0.6 -0.6 92 101100 0 0 289 0 0 0 0 0 0 0 80 7.2 10 10 8.0 150 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.13624E7 0.6 -0.6 92 101100 0 101 289 0 0 0 0 0 0 0 80 7.7 10 10 8.0 120 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.1366E7 0.6 0.0 96 101000 55 1344 289 9 1 8 1055 0 938 294 80 6.7 10 10 4.8 760 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.13696E7 0.6 0.0 96 101000 161 1344 289 36 2 36 4040 0 4050 1241 80 9.3 10 10 4.8 760 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.13732E7 0.6 -0.6 92 100900 270 1344 275 104 104 82 11442 3826 9055 2684 80 9.3 10 8 6.4 610 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.13768E7 0.6 -1.1 89 100800 371 1344 288 108 47 95 12135 2355 10713 3474 80 10.3 10 10 8.0 760 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.13804E7 0.6 -1.1 89 100800 457 1344 274 134 73 108 15250 4259 12336 4211 80 9.8 10 8 9.7 240 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.1384E7 1.1 -1.7 82 100700 523 1344 290 109 9 106 12618 544 12314 4412 80 9.8 10 10 11.3 430 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.13876E7 1.1 -1.7 82 100600 563 1344 290 142 9 138 16241 612 15848 5585 80 10.8 10 10 11.3 430 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.13912E7 1.7 -2.2 76 100500 574 1344 292 164 5 162 18569 365 18425 6332 80 12.9 10 10 11.3 460 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.13948E7 1.1 -2.2 79 100400 557 1344 289 141 7 138 16115 477 15837 5566 80 11.3 10 10 11.3 490 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.13984E7 0.6 -2.2 82 100300 512 1344 279 213 64 188 23502 5008 20847 6462 80 12.4 10 9 11.3 460 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.1402E7 0.6 -2.8 79 100200 442 1344 286 93 2 92 10697 109 10617 3692 70 11.3 10 10 11.3 460 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.14056E7 0.0 -2.8 82 100100 352 1344 284 94 10 91 10564 484 10263 3316 70 12.4 10 10 11.3 400 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.14092E7 0.0 -2.2 85 100000 249 1344 284 47 1 47 5385 21 5398 1770 70 10.3 10 10 11.3 310 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.14128E7 -0.6 -2.8 85 100000 139 1344 281 26 0 26 2536 0 2554 941 70 12.4 10 10 11.3 310 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.14164E7 -0.6 -2.8 85 99900 35 1154 281 6 1 6 710 0 710 222 70 11.3 10 10 11.3 310 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.142E7 -1.1 -2.8 89 99900 0 0 279 0 0 0 0 0 0 0 70 11.8 10 10 11.3 340 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.14236E7 -1.1 -3.3 85 99800 0 0 279 0 0 0 0 0 0 0 70 11.8 10 10 11.3 400 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.14272E7 -1.1 -2.8 89 99800 0 0 279 0 0 0 0 0 0 0 50 10.8 10 10 11.3 370 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.14308E7 -1.1 -3.3 85 99800 0 0 279 0 0 0 0 0 0 0 50 11.8 10 10 11.3 370 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.14344E7 -1.1 -3.9 82 99800 0 0 278 0 0 0 0 0 0 0 50 11.8 10 10 11.3 400 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.1438E7 -1.1 -3.9 82 99900 0 0 278 0 0 0 0 0 0 0 50 9.8 10 10 11.3 370 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.14416E7 -1.7 -3.9 85 99900 0 0 276 0 0 0 0 0 0 0 60 9.8 10 10 11.3 370 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.14452E7 -1.7 -3.9 85 99900 0 0 276 0 0 0 0 0 0 0 50 9.8 10 10 11.3 340 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.14488E7 -2.2 -2.8 96 100000 0 11 275 0 0 0 0 0 0 0 50 8.2 10 10 4.0 400 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.14524E7 -1.7 -4.4 82 100100 48 1345 275 9 2 8 1048 0 932 289 40 9.8 10 10 6.4 430 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.1456E7 -1.1 -3.9 82 100100 154 1345 278 38 1 38 4232 0 4244 1269 40 7.7 10 10 9.7 430 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.14596E7 -1.1 -2.8 89 100200 263 1345 279 76 1 76 8395 34 8425 2526 40 6.7 10 10 9.7 430 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.14632E7 -1.1 -3.9 82 100300 364 1345 278 113 1 113 12498 56 12549 3848 30 7.7 10 10 11.3 460 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.14668E7 -1.1 -3.9 82 100400 450 1345 278 147 1 146 16303 68 16264 5107 360 7.2 10 10 6.4 760 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.14704E7 -1.1 -3.3 85 100500 515 1345 279 181 1 180 20048 77 20034 6308 340 6.7 10 10 8.0 460 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.1474E7 -1.1 -3.9 82 100600 555 1345 278 203 1 203 22473 82 22588 7114 360 5.2 10 10 6.4 460 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.14776E7 -1.1 -2.8 89 100700 567 1345 279 207 1 206 22945 82 22952 7287 350 5.2 10 10 6.4 460 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.14812E7 -1.1 -4.4 78 100900 549 1345 278 177 2 177 19801 153 19895 6536 340 3.6 10 10 11.3 520 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.14848E7 -0.6 -4.4 75 100900 504 1345 280 167 1 167 18581 74 18668 5978 310 2.6 10 10 11.3 520 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.14884E7 -0.6 -2.8 85 101000 434 1345 281 142 1 142 15735 67 15804 4944 330 3.6 10 10 11.3 760 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.1492E7 -0.6 -2.8 85 101100 344 1345 281 121 0 121 12018 0 12108 3906 320 5.2 10 10 8.0 610 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.14956E7 0.0 -2.8 82 101100 240 1345 284 75 1 75 8245 32 8275 2429 320 3.1 10 10 11.3 550 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.14992E7 0.6 -5.0 67 101200 131 1345 284 37 1 37 4094 0 4105 1198 290 6.2 10 10 11.3 850 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.15028E7 0.6 -4.4 70 101200 29 1042 285 8 0 8 773 0 778 278 290 6.7 10 10 11.3 760 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.15064E7 0.6 -2.8 79 101300 0 0 286 0 0 0 0 0 0 0 270 6.7 10 10 11.3 730 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.151E7 0.6 -1.7 85 101200 0 0 287 0 0 0 0 0 0 0 240 5.2 10 10 11.3 760 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.15136E7 0.6 -1.1 89 101300 0 0 288 0 0 0 0 0 0 0 240 7.7 10 10 8.0 760 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.15172E7 1.1 -0.6 89 101300 0 0 291 0 0 0 0 0 0 0 280 8.8 10 10 6.4 760 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.15208E7 1.1 -1.7 82 101300 0 0 290 0 0 0 0 0 0 0 300 8.8 10 10 9.7 370 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.15244E7 0.6 -1.7 85 101400 0 0 287 0 0 0 0 0 0 0 290 8.8 10 10 6.4 370 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.1528E7 0.6 -1.7 85 101400 0 0 287 0 0 0 0 0 0 0 300 8.8 10 10 6.4 430 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.15316E7 0.6 -1.1 89 101500 0 0 288 0 0 0 0 0 0 0 300 7.2 10 10 8.0 430 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.15352E7 1.1 -1.7 82 101500 0 0 290 0 0 0 0 0 0 0 290 7.7 10 10 11.3 910 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.15388E7 1.1 -1.1 85 101500 41 1245 276 6 1 6 709 0 709 222 270 6.2 10 8 11.3 1220 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.15424E7 1.1 -0.6 89 101500 147 1346 291 25 3 25 2867 0 2872 911 270 5.7 10 10 11.3 910 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.1546E7 1.1 0.6 96 101600 255 1346 292 47 13 45 5398 246 5181 1709 260 3.6 10 10 8.0 430 9 999999999 9 0.0000 0 88 0.000 0.1 1.0 +2.15496E7 1.7 0.6 92 101600 356 1346 294 80 3 79 9081 131 8996 2986 270 5.7 10 10 8.0 1220 9 999999999 9 0.0000 0 88 0.000 0.1 1.0 +2.15532E7 2.2 0.6 89 101600 443 1346 297 71 4 70 8328 190 8233 2950 280 6.7 10 10 9.7 760 9 999999999 9 0.0000 0 88 0.000 0.1 1.0 +2.15568E7 2.8 1.1 89 101600 508 1346 300 81 7 79 9557 372 9347 3431 270 6.7 10 10 8.0 760 9 999999999 9 0.0000 0 88 0.000 0.1 1.0 +2.15604E7 2.8 1.7 93 101600 548 1346 300 97 2 96 11370 116 11289 4155 260 8.8 10 10 9.7 610 9 999999999 9 0.0000 0 88 0.000 0.1 1.0 +2.1564E7 2.8 1.7 93 101600 559 1346 300 115 3 114 13333 186 13266 4816 230 6.2 10 10 11.3 610 9 999999999 9 0.0000 0 88 0.000 0.1 1.0 +2.15676E7 2.2 1.1 93 101600 542 1346 297 103 2 103 11997 119 12038 4385 240 7.7 10 10 11.3 340 9 999999999 9 0.0000 0 88 0.000 0.1 1.0 +2.15712E7 2.2 1.1 93 101500 496 1346 297 83 2 82 9745 107 9656 3518 250 9.3 10 10 11.3 400 9 999999999 9 0.0000 0 88 0.000 0.1 1.0 +2.15748E7 1.7 0.6 92 101500 426 1346 294 73 1 73 8509 48 8533 3024 260 7.7 10 10 6.4 240 9 999999999 9 0.0000 0 88 0.000 0.1 1.0 +2.15784E7 2.2 1.1 93 101500 336 1346 297 54 1 54 6290 34 6304 2177 250 8.2 10 10 9.7 270 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.1582E7 1.7 0.6 92 101500 232 1346 294 37 1 37 4289 13 4298 1428 280 8.8 10 10 4.8 270 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.15856E7 2.2 0.6 89 101400 122 1346 297 19 0 19 1849 0 1862 707 260 10.3 10 10 4.8 270 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.15892E7 1.7 0.6 92 101400 23 931 294 4 0 4 385 0 388 150 260 8.2 10 10 6.4 460 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.15928E7 2.2 0.0 85 101400 0 0 296 0 0 0 0 0 0 0 260 9.3 10 10 3.2 730 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.15964E7 2.2 0.6 89 101300 0 0 297 0 0 0 0 0 0 0 260 9.3 10 10 8.0 610 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.16E7 2.2 1.1 93 101300 0 0 297 0 0 0 0 0 0 0 260 9.8 10 10 6.4 610 9 999999999 8 0.0000 0 88 0.000 0.1 1.0 +2.16036E7 2.2 0.6 89 101300 0 0 297 0 0 0 0 0 0 0 290 9.8 10 10 6.4 490 9 999999999 8 0.0000 0 88 0.000 0.1 1.0 +2.16072E7 1.7 -0.6 85 101300 0 0 293 0 0 0 0 0 0 0 290 8.8 10 10 11.3 490 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.16108E7 2.2 -0.6 82 101300 0 0 295 0 0 0 0 0 0 0 280 8.8 10 10 11.3 520 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.16144E7 1.1 -1.1 85 101300 0 0 266 0 0 0 0 0 0 0 300 10.3 5 5 11.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.1618E7 1.7 -2.8 73 101300 0 0 283 0 0 0 0 0 0 0 310 7.7 9 9 11.3 1680 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.16216E7 1.1 -2.8 76 101300 0 0 288 0 0 0 0 0 0 0 320 7.2 10 10 11.3 1680 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.16252E7 0.6 -2.2 82 101300 35 1156 287 10 0 10 965 0 971 332 330 6.2 10 10 3.2 610 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.16288E7 0.6 -2.2 82 101300 139 1346 287 42 0 42 4094 0 4122 1301 350 6.2 10 10 3.2 610 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.16324E7 -0.6 -2.8 85 101400 248 1346 281 82 1 82 8949 35 8983 2558 310 8.8 10 10 3.2 460 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.1636E7 0.0 -3.3 79 101400 349 1346 275 133 47 120 14568 2683 13201 3881 300 9.8 10 9 8.0 610 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.16396E7 -0.6 -2.8 85 101500 435 1346 281 118 4 117 13272 240 13211 4346 340 6.7 10 10 1.6 520 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.16432E7 -0.6 -4.4 75 101500 500 1346 280 148 4 146 16621 277 16468 5447 320 8.8 10 10 8.0 760 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.16468E7 -1.1 -5.0 75 101600 540 1346 277 166 7 163 18650 515 18397 6125 320 8.8 10 10 11.3 580 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.16504E7 -1.7 -5.6 75 101700 551 1346 274 161 10 157 18195 726 17821 6053 320 6.7 10 10 11.3 550 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.1654E7 -1.1 -4.4 78 101700 534 1346 278 192 9 188 21295 709 20954 6640 300 6.7 10 10 11.3 460 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.16576E7 -1.1 -4.4 78 101700 488 1346 278 132 6 129 14941 392 14661 4957 310 7.7 10 10 11.3 550 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.16612E7 -1.1 -5.6 72 101700 417 1346 276 126 4 124 14064 248 13898 4442 300 7.7 10 10 11.3 640 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.16648E7 -0.6 -6.1 67 101700 327 1346 278 91 2 90 10163 94 10088 3174 310 7.7 10 10 11.3 790 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.16684E7 -0.6 -6.7 64 101700 223 1346 277 62 1 62 6881 25 6903 2080 300 6.2 10 10 11.3 850 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.1672E7 -0.6 -6.1 67 101600 113 1346 278 32 1 32 3545 0 3555 1035 310 5.7 10 10 11.3 850 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.16756E7 -0.6 -6.1 67 101600 18 819 278 8 0 8 772 0 777 261 260 4.1 10 10 11.3 850 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.16792E7 -0.6 -5.6 69 101600 0 0 278 0 0 0 0 0 0 0 250 3.6 10 10 11.3 850 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.16828E7 -0.6 -4.4 75 101500 0 0 280 0 0 0 0 0 0 0 250 4.6 10 10 11.3 760 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.16864E7 -0.6 -2.8 85 101500 0 0 281 0 0 0 0 0 0 0 180 4.6 10 10 11.3 760 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.169E7 -0.6 -2.2 89 101400 0 0 282 0 0 0 0 0 0 0 210 7.2 10 10 11.3 760 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.16936E7 -0.6 -2.2 89 101400 0 0 282 0 0 0 0 0 0 0 190 7.7 10 10 4.8 760 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.16972E7 0.0 -1.1 92 101300 0 0 286 0 0 0 0 0 0 0 200 7.2 10 10 11.3 150 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.17008E7 2.2 -0.6 82 101300 0 0 295 0 0 0 0 0 0 0 270 6.2 10 10 11.3 1520 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.17044E7 2.2 -0.6 82 101200 0 0 295 0 0 0 0 0 0 0 280 6.7 10 10 11.3 1370 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.1708E7 2.2 -0.6 82 101200 0 0 295 0 0 0 0 0 0 0 260 7.2 10 10 11.3 1070 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.17116E7 2.2 -0.6 82 101200 29 1044 295 8 0 8 771 0 776 271 260 7.7 10 10 11.3 1070 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.17152E7 2.2 -0.6 82 101200 132 1347 295 38 0 38 3700 0 3725 1195 270 7.7 10 10 11.3 1070 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.17188E7 1.7 -0.6 85 101200 240 1347 293 39 1 39 4507 14 4516 1494 270 7.7 10 10 11.3 610 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.17224E7 1.7 0.6 92 101100 341 1347 294 105 0 105 10410 0 10489 3548 260 6.2 10 10 6.4 180 9 999999999 10 0.0000 0 88 0.000 0.2 1.0 +2.1726E7 2.2 0.6 89 101100 428 1347 297 85 0 85 8491 0 8557 3407 280 5.7 10 10 9.7 1070 9 999999999 10 0.0000 0 88 0.000 0.2 1.0 +2.17296E7 2.8 1.1 89 101100 493 1347 300 150 1 149 16765 68 16727 5469 270 7.2 10 10 11.3 1220 9 999999999 10 0.0000 0 88 0.000 0.1 1.0 +2.17332E7 3.3 1.1 86 101100 532 1347 302 170 0 170 17134 0 17274 6234 270 7.7 10 10 11.3 1070 9 999999999 10 0.0000 0 88 0.000 0.1 1.0 +2.17368E7 2.8 1.7 93 101100 544 1347 300 101 1 100 11791 59 11714 4284 270 7.2 10 10 8.0 240 9 999999999 10 0.0000 0 88 0.000 0.1 1.0 +2.17404E7 2.8 1.7 93 101100 526 1347 300 107 1 107 12379 60 12423 4462 270 7.2 10 10 9.7 240 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.1744E7 3.3 1.1 86 101100 480 1347 302 95 1 94 10993 55 10913 3879 280 7.7 10 10 9.7 430 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.17476E7 3.3 1.1 86 101100 409 1347 302 78 0 78 7781 0 7842 3142 270 9.8 10 10 9.7 430 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.17512E7 3.3 0.6 82 101100 318 1347 301 60 0 60 5940 0 5985 2330 280 8.8 10 10 9.7 430 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.17548E7 3.3 0.6 82 101100 214 1347 301 62 0 62 6083 0 6126 2043 270 7.2 10 10 9.7 430 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.17584E7 3.3 1.1 86 101100 105 1347 302 19 0 19 1846 0 1858 686 270 7.7 10 10 9.7 460 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.1762E7 2.8 1.1 89 101100 13 707 300 3 0 3 289 0 290 111 260 6.2 10 10 9.7 520 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.17656E7 2.8 0.0 82 101100 0 0 299 0 0 0 0 0 0 0 260 8.2 10 10 9.7 760 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.17692E7 2.8 0.0 82 101100 0 0 299 0 0 0 0 0 0 0 260 8.2 10 10 11.3 760 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.17728E7 2.8 0.6 86 101100 0 0 299 0 0 0 0 0 0 0 250 6.2 10 10 11.3 760 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.17764E7 2.8 0.0 82 101100 0 0 299 0 0 0 0 0 0 0 260 9.3 10 10 11.3 760 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.178E7 2.2 0.0 85 101100 0 0 296 0 0 0 0 0 0 0 250 6.7 10 10 11.3 760 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.17836E7 2.2 0.0 85 101100 0 0 296 0 0 0 0 0 0 0 250 6.7 10 10 11.3 760 9 999999999 9 0.0000 0 88 0.000 0.3 1.0 +2.17872E7 2.2 -0.6 82 101100 0 0 295 0 0 0 0 0 0 0 250 6.7 10 10 11.3 760 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.17908E7 1.7 -0.6 85 101000 0 0 269 0 0 0 0 0 0 0 240 5.7 5 5 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.17944E7 1.7 0.0 89 101000 0 0 280 0 0 0 0 0 0 0 260 7.7 8 8 9.7 340 9 999999999 9 0.0000 0 88 0.000 0.3 1.0 +2.1798E7 2.2 -0.6 82 101000 24 955 287 5 1 5 583 0 584 180 250 5.2 10 9 11.3 340 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.18016E7 2.2 -0.6 82 101000 124 1348 295 16 2 16 1876 0 1878 605 280 7.2 10 10 11.3 580 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.18052E7 2.8 0.0 82 101000 233 1348 299 51 4 50 5759 71 5661 1797 240 6.7 10 10 11.3 700 9 999999999 9 0.0000 0 88 0.000 0.1 1.0 +2.18088E7 2.8 -0.6 79 101000 334 1348 298 35 8 33 4227 212 3990 1411 240 6.2 10 10 11.3 460 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.18124E7 2.8 0.0 82 101000 420 1348 299 63 2 62 7419 88 7319 2616 240 6.2 10 10 8.0 210 9 999999999 9 0.0000 0 88 0.000 0.1 1.0 +2.1816E7 3.3 0.0 79 101000 485 1348 301 68 3 67 8086 149 7987 2934 250 7.7 10 10 6.4 370 9 999999999 9 0.0000 0 88 0.000 0.1 1.0 +2.18196E7 3.9 -0.6 73 101000 525 1348 303 105 1 105 12166 60 12209 4386 270 8.8 10 10 2.4 150 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.18232E7 3.9 -0.6 73 101000 536 1348 303 94 2 93 11025 116 10942 4014 270 9.8 10 10 4.8 760 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.18268E7 4.4 -1.1 68 101000 518 1348 296 157 39 142 17738 2651 16111 5460 280 10.3 10 9 11.3 880 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.18304E7 4.4 -0.6 70 101000 471 1348 305 109 5 107 12465 293 12280 4254 270 8.2 10 10 11.3 820 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.1834E7 3.9 -1.1 70 101000 401 1348 302 86 3 85 9843 149 9760 3332 260 8.2 10 10 11.3 460 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.18376E7 3.9 -2.2 65 100900 310 1348 301 59 4 58 6785 133 6687 2246 270 7.2 10 10 11.3 460 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.18412E7 3.3 -0.6 76 100900 206 1348 300 29 2 28 3402 6 3289 1096 270 8.8 10 10 4.8 210 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.18448E7 3.3 -1.7 70 100900 96 1348 299 13 1 13 1529 0 1530 490 260 7.7 10 10 11.3 270 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.18484E7 3.3 -1.1 73 100800 9 595 300 2 0 2 0 0 0 0 270 7.7 10 10 11.3 490 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.1852E7 3.3 -1.7 70 100800 0 0 299 0 0 0 0 0 0 0 280 7.7 10 10 11.3 490 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.18556E7 3.3 -1.1 73 100700 0 0 300 0 0 0 0 0 0 0 270 7.7 10 10 11.3 490 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.18592E7 3.3 -1.7 70 100700 0 0 299 0 0 0 0 0 0 0 260 7.2 10 10 11.3 700 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.18628E7 3.3 -0.6 76 100700 0 0 300 0 0 0 0 0 0 0 270 8.2 10 10 11.3 700 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.18664E7 3.3 0.6 82 100700 0 0 301 0 0 0 0 0 0 0 260 8.8 10 10 11.3 820 9 999999999 9 0.0000 0 88 0.000 0.1 1.0 +2.187E7 3.3 1.1 86 100700 0 0 302 0 0 0 0 0 0 0 270 8.8 10 10 11.3 580 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.18736E7 3.9 1.7 86 100600 0 0 305 0 0 0 0 0 0 0 270 10.8 10 10 11.3 610 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.18772E7 3.9 1.1 82 100600 0 0 305 0 0 0 0 0 0 0 280 8.8 10 10 11.3 610 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.18808E7 3.9 1.7 86 100600 0 0 305 0 0 0 0 0 0 0 260 8.2 10 10 11.3 1830 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.18844E7 3.3 2.2 93 100500 19 843 303 3 0 2 289 0 194 77 240 6.7 10 10 11.3 580 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.1888E7 3.9 2.2 89 100500 117 1348 306 17 2 17 1973 0 1975 630 240 7.2 10 10 11.3 2130 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.18916E7 3.3 2.2 93 100500 225 1348 303 61 2 60 6760 41 6671 2016 230 8.2 10 10 11.3 1490 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.18952E7 3.9 2.2 89 100400 326 1348 297 134 97 110 14657 4939 12082 3546 240 8.2 10 9 11.3 2130 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.18988E7 3.3 2.2 93 100400 413 1348 303 105 8 102 11854 429 11558 3843 230 7.2 10 10 11.3 150 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.19024E7 3.3 2.8 96 100400 478 1348 304 97 3 96 11185 165 11107 3924 240 7.2 10 10 11.3 90 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.1906E7 3.9 2.8 93 100400 517 1348 306 149 6 147 16758 407 16606 5575 250 5.7 10 10 11.3 760 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.19096E7 3.9 2.2 89 100400 528 1348 306 174 4 172 19375 294 19244 6247 280 7.7 10 10 11.3 760 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.19132E7 2.8 0.0 82 100400 509 1348 299 133 2 133 15073 131 15135 5172 280 9.8 10 10 11.3 370 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.19168E7 1.7 -1.1 82 100400 463 1348 293 129 8 126 14530 504 14250 4743 270 11.3 10 10 11.3 400 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.19204E7 2.2 -1.1 79 100300 392 1348 295 121 2 120 13435 118 13379 4198 280 10.3 10 10 11.3 700 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.1924E7 2.2 0.0 85 100300 301 1348 296 94 1 94 10358 45 10398 3126 270 10.8 10 10 8.0 310 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.19276E7 2.2 -1.1 79 100200 197 1348 273 75 94 60 8242 1735 6616 1925 270 10.3 8 6 11.3 700 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.19312E7 1.7 0.0 89 100100 87 1348 286 15 16 14 1742 0 1628 515 270 9.3 9 9 11.3 460 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.19348E7 1.7 -0.6 85 100100 6 483 279 1 7 1 0 0 0 0 240 8.8 8 8 11.3 580 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.19384E7 1.7 -0.6 85 100000 0 0 275 0 0 0 0 0 0 0 240 8.2 10 7 11.3 850 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.1942E7 1.1 0.0 92 100000 0 0 277 0 0 0 0 0 0 0 250 12.9 10 8 11.3 760 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.19456E7 2.2 -1.1 79 99900 0 0 295 0 0 0 0 0 0 0 250 11.3 10 10 11.3 760 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.19492E7 1.1 0.0 92 99800 0 0 291 0 0 0 0 0 0 0 210 6.7 10 10 11.3 460 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.19528E7 1.1 0.0 92 99700 0 0 291 0 0 0 0 0 0 0 210 8.8 10 10 11.3 1070 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.19564E7 1.7 0.6 92 99600 0 0 294 0 0 0 0 0 0 0 200 9.3 10 10 11.3 270 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.196E7 1.7 0.6 92 99500 0 0 294 0 0 0 0 0 0 0 210 8.2 10 10 11.3 270 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.19636E7 2.2 1.1 93 99400 0 0 297 0 0 0 0 0 0 0 220 8.2 10 10 11.3 1070 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.19672E7 2.8 1.7 93 99300 0 0 300 0 0 0 0 0 0 0 220 8.8 10 10 11.3 980 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.19708E7 3.3 1.7 89 99200 15 753 303 0 0 0 0 0 0 0 220 9.3 10 10 11.3 1070 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.19744E7 3.9 1.1 82 99200 109 1349 305 11 2 11 1314 0 1315 426 240 7.7 10 10 11.3 1830 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.1978E7 3.3 1.7 89 99200 218 1349 303 22 2 22 2633 1 2635 892 220 7.7 10 10 11.3 790 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.19816E7 3.9 0.6 79 99100 319 1349 304 43 2 43 5064 55 5074 1759 220 10.3 10 10 11.3 880 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.19852E7 3.3 0.6 82 99100 405 1349 301 52 1 52 6182 40 6195 2223 220 11.8 10 10 11.3 1340 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.19888E7 3.3 1.1 86 99100 470 1349 302 67 6 65 7955 287 7736 2827 220 10.8 10 10 11.3 1010 9 999999999 10 0.0000 0 88 0.000 0.1 1.0 +2.19924E7 4.4 1.7 82 99000 509 1349 307 90 2 89 10521 110 10437 3791 220 10.3 10 10 11.3 1370 9 999999999 11 0.0000 0 88 0.000 0.1 1.0 +2.1996E7 5.0 2.2 83 99000 520 1349 311 107 4 106 12367 237 12295 4403 220 10.3 10 10 11.3 610 9 999999999 11 0.0000 0 88 0.000 0.1 1.0 +2.19996E7 5.0 2.2 83 99000 501 1349 311 171 1 170 18945 73 18925 6004 240 7.7 10 10 11.3 1520 9 999999999 11 0.0000 0 88 0.000 0.1 1.0 +2.20032E7 5.0 2.2 83 99000 455 1349 296 135 87 105 15385 4924 12010 4125 220 8.8 8 8 11.3 610 9 999999999 11 0.0000 0 88 0.000 0.1 1.0 +2.20068E7 5.6 1.7 76 99000 383 1349 304 87 36 76 9992 1616 8756 3002 220 9.3 9 9 11.3 1680 9 999999999 11 0.0000 0 88 0.000 0.1 1.0 +2.20104E7 4.4 2.2 86 99000 292 1349 283 110 85 91 12109 3576 10056 3016 220 9.3 9 5 11.3 7010 9 999999999 11 0.0000 0 88 0.000 0.1 1.0 +2.2014E7 4.4 1.7 82 99000 188 1349 288 60 25 56 6599 352 6179 1806 210 8.2 9 7 11.3 1680 9 999999999 11 0.0000 0 88 0.000 0.1 1.0 +2.20176E7 3.3 1.1 86 99000 79 1349 287 15 1 15 1721 0 1723 536 200 6.2 9 8 11.3 7010 9 999999999 11 0.0000 0 88 0.000 0.1 1.0 +2.20212E7 2.8 1.1 89 99000 3 371 281 0 2 0 0 0 0 0 200 5.7 9 7 11.3 2900 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.20248E7 3.3 1.7 89 99100 0 0 280 0 0 0 0 0 0 0 190 6.7 8 6 11.3 2590 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.20284E7 3.3 1.7 89 99100 0 0 288 0 0 0 0 0 0 0 190 5.7 10 8 11.3 2440 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.2032E7 2.8 2.2 96 99100 0 0 286 0 0 0 0 0 0 0 170 4.1 10 8 11.3 3050 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.20356E7 2.8 2.2 96 99100 0 0 301 0 0 0 0 0 0 0 160 4.1 10 10 11.3 580 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.20392E7 2.2 1.7 96 99000 0 0 283 0 0 0 0 0 0 0 150 4.6 10 8 11.3 1010 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.20428E7 1.1 0.6 96 99000 0 0 274 0 0 0 0 0 0 0 130 5.2 10 7 11.3 1680 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.20464E7 2.8 1.7 93 98900 0 0 286 0 0 0 0 0 0 0 160 7.2 10 8 11.3 1520 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.205E7 3.3 1.1 86 98900 0 0 283 0 0 0 0 0 0 0 170 7.2 9 7 11.3 1520 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.20536E7 2.8 0.6 86 98900 0 0 280 0 0 0 0 0 0 0 180 7.7 10 7 11.3 3660 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.20572E7 3.9 0.0 76 99000 11 664 289 0 1 0 0 0 0 0 200 7.7 10 8 11.3 2440 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.20608E7 3.9 0.6 79 99000 102 1350 304 10 4 10 1198 0 1198 387 200 6.2 10 10 11.3 2130 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.20644E7 3.3 0.6 82 99000 210 1350 301 29 1 29 3387 3 3393 1126 180 5.2 10 10 11.3 2130 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.2068E7 3.3 1.1 86 99100 311 1350 302 45 0 45 4449 0 4482 1815 170 3.6 10 10 11.3 2440 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.20716E7 3.3 1.7 89 99100 397 1350 303 56 4 55 6614 159 6510 2319 180 5.7 10 10 11.3 1430 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.20752E7 3.9 1.7 86 99100 462 1350 305 80 2 80 9327 102 9354 3346 170 4.1 10 10 11.3 2900 9 999999999 12 0.0000 0 88 0.000 0.1 1.0 +2.20788E7 5.0 1.7 79 99200 501 1350 310 126 4 125 14310 252 14253 4897 180 6.2 10 10 11.3 2440 9 999999999 12 0.0000 0 88 0.000 0.1 1.0 +2.20824E7 6.1 1.7 74 99200 512 1350 315 154 3 153 17251 208 17216 5693 170 4.1 10 10 11.3 1980 9 999999999 12 0.0000 0 88 0.000 0.1 1.0 +2.2086E7 6.7 1.1 68 99200 493 1350 297 231 289 123 26235 18075 14024 4809 180 6.2 9 7 11.3 2900 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.20896E7 7.8 1.7 66 99200 446 1350 307 151 55 133 16848 3487 14903 4816 180 6.2 9 8 11.3 2900 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.20932E7 7.8 1.7 66 99300 375 1350 307 123 74 102 13762 3838 11455 3687 190 5.2 9 8 11.3 2900 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.20968E7 7.2 2.8 74 99300 283 1350 312 64 20 60 7266 584 6832 2234 180 3.6 10 9 11.3 3350 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.21004E7 5.6 2.8 83 99300 179 1350 299 60 91 47 6665 644 5236 1579 170 3.6 9 8 11.3 3050 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.2104E7 3.9 2.2 89 99300 70 1350 297 16 0 16 1549 0 1559 552 170 3.6 10 9 11.3 1830 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.21076E7 4.4 2.2 86 99400 6 259 285 1 0 1 0 0 0 0 180 5.7 10 6 11.3 4270 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.21112E7 3.9 1.7 86 99400 0 0 276 0 0 0 0 0 0 0 200 6.7 5 3 11.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.21148E7 2.2 1.1 93 99500 0 0 271 0 0 0 0 0 0 0 180 4.6 5 4 11.3 2000 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.21184E7 2.8 1.7 93 99500 0 0 272 0 0 0 0 0 0 0 220 8.2 6 3 11.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.2122E7 3.3 2.2 93 99600 0 0 289 0 0 0 0 0 0 0 260 6.7 8 8 11.3 210 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.21256E7 2.2 1.1 93 99600 0 0 271 0 0 0 0 0 0 0 240 4.1 7 4 11.3 240 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.21292E7 2.2 1.1 93 99600 0 0 275 0 0 0 0 0 0 0 270 4.6 6 6 11.3 340 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.21328E7 2.8 1.7 93 99600 0 0 274 0 0 0 0 0 0 0 320 2.6 5 4 11.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.21364E7 0.0 -1.1 92 99700 0 0 264 0 0 0 0 0 0 0 130 3.6 8 6 11.3 4570 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.214E7 0.0 -0.6 96 99600 0 0 265 0 0 0 0 0 0 0 130 3.1 10 6 11.3 90 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.21436E7 -0.6 -1.1 96 99600 8 552 262 2 2 2 0 0 0 0 110 4.1 10 6 3.2 1070 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.21472E7 0.6 0.0 96 99600 94 1351 289 13 1 13 1518 0 1519 483 70 3.6 10 10 2.0 1830 9 999999999 11 0.0000 0 88 0.000 0.1 1.0 +2.21508E7 1.7 1.7 100 99600 202 1351 296 36 22 33 4147 64 3809 1242 90 4.1 10 10 0.6 90 9 999999999 11 0.0000 0 88 0.000 0.2 1.0 +2.21544E7 2.8 2.2 96 99500 303 1351 301 38 1 37 4504 23 4392 1524 80 5.2 10 10 6.4 850 9 999999999 12 0.0000 0 88 0.000 0.2 1.0 +2.2158E7 3.3 2.8 96 99500 389 1351 304 59 9 57 6932 352 6713 2376 90 5.2 10 10 6.4 820 9 999999999 12 0.0000 0 88 0.000 0.2 1.0 +2.21616E7 3.9 3.3 96 99500 454 1351 307 62 2 61 7365 90 7263 2646 90 5.2 10 10 6.4 820 9 999999999 12 0.0000 0 88 0.000 0.5 1.0 +2.21652E7 3.9 3.3 96 99500 493 1351 307 87 7 85 10165 371 9961 3606 90 5.2 10 10 6.4 760 9 999999999 13 0.0000 0 88 0.000 0.5 1.0 +2.21688E7 4.4 3.3 93 99400 504 1351 309 87 2 86 10181 108 10095 3672 60 6.2 10 10 11.3 820 9 999999999 13 0.0000 0 88 0.000 0.5 1.0 +2.21724E7 5.0 3.3 89 99400 485 1351 303 151 82 121 17126 5008 13777 4712 70 7.2 10 9 11.3 2440 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2.2176E7 6.1 4.4 89 99400 438 1351 303 215 167 160 23550 11528 17609 5299 90 6.2 8 8 11.3 2130 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2.21796E7 5.0 2.8 86 99400 366 1351 292 139 169 91 15652 8048 10284 3368 90 7.2 7 7 11.3 910 9 999999999 13 0.0000 0 88 0.000 0.0 1.0 +2.21832E7 5.0 2.8 86 99400 275 1351 279 147 410 60 16639 11512 6811 2208 100 6.2 2 2 11.3 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.21868E7 3.9 2.2 89 99400 170 1351 274 83 288 43 9248 931 4805 1457 100 4.1 2 2 11.3 2000 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.21904E7 2.2 1.7 96 99500 61 1351 283 20 15 19 2216 0 2110 610 100 3.1 8 8 11.3 1220 9 999999999 12 0.0000 0 88 0.000 0.0 1.0 +2.2194E7 2.8 2.2 96 99500 6 146 301 1 0 1 0 0 0 0 130 2.6 10 10 11.3 1220 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.21976E7 2.8 2.2 96 99600 0 0 282 0 0 0 0 0 0 0 160 4.1 10 7 11.3 1070 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.22012E7 3.9 3.3 96 99600 0 0 288 0 0 0 0 0 0 0 210 4.6 8 7 11.3 1070 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.22048E7 3.3 3.3 100 99700 0 0 304 0 0 0 0 0 0 0 260 7.7 10 10 0.8 60 9 999999999 11 0.0000 0 88 0.000 0.0 1.0 +2.22084E7 2.8 2.2 96 99800 0 0 301 0 0 0 0 0 0 0 240 6.7 10 10 9.7 240 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.2212E7 3.3 1.1 86 99900 0 0 294 0 0 0 0 0 0 0 260 8.2 9 9 11.3 1190 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.22156E7 3.3 1.1 86 99900 0 0 302 0 0 0 0 0 0 0 260 8.2 10 10 11.3 400 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.22192E7 3.3 1.1 86 100000 0 0 302 0 0 0 0 0 0 0 280 9.3 10 10 11.3 400 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.22228E7 3.3 1.1 86 100100 0 0 302 0 0 0 0 0 0 0 270 7.2 10 10 11.3 430 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.22264E7 3.3 0.0 79 100100 0 0 286 0 0 0 0 0 0 0 280 6.7 10 8 11.3 610 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.223E7 2.8 0.0 82 100200 6 462 280 2 5 2 0 0 0 0 270 5.2 9 7 11.3 3050 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.22336E7 2.8 0.0 82 100300 87 1351 284 21 3 21 2346 0 2351 696 280 4.1 8 8 11.3 7010 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.22372E7 2.2 1.1 93 100300 195 1351 271 57 111 40 6445 591 4534 1428 200 3.6 8 4 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.22408E7 3.3 2.2 93 100400 296 1351 295 73 33 66 8243 1071 7475 2419 210 5.7 10 9 11.3 460 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.22444E7 3.3 2.2 93 100500 382 1351 303 74 12 70 8538 509 8100 2794 210 5.7 10 10 11.3 790 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.2248E7 3.9 2.2 89 100600 446 1351 297 170 59 150 18761 3977 16630 5156 230 5.2 10 9 11.3 790 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.22516E7 5.0 0.6 73 100600 485 1351 294 164 66 139 18402 4364 15663 5179 230 5.2 8 8 11.3 3050 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.22552E7 5.6 0.6 71 100700 495 1351 297 294 404 142 33017 27087 16016 5319 250 5.2 8 8 11.3 3660 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.22588E7 4.4 1.1 79 100800 476 1351 292 184 163 125 20786 10189 14178 4779 260 3.6 8 8 11.3 3960 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.22624E7 5.0 1.7 79 100900 429 1351 295 165 78 140 18250 5045 15554 4855 240 3.1 8 8 11.3 3960 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.2266E7 5.6 0.0 68 100900 357 1351 283 174 299 92 19542 14414 10370 3356 230 4.6 5 4 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.22696E7 6.1 0.0 65 101000 266 1351 287 113 234 65 12677 6986 7315 2310 230 2.6 5 5 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.22732E7 5.0 0.0 70 101000 161 1351 279 66 198 40 7369 55 4478 1358 210 3.6 3 3 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.22768E7 1.7 -0.6 85 101100 53 1351 267 21 119 15 2354 0 1685 498 200 3.6 4 4 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.22804E7 0.6 -1.1 89 101200 12 34 254 2 4 1 0 0 0 0 210 4.1 1 1 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.2284E7 -1.1 -2.2 92 101300 0 0 242 0 0 0 0 0 0 0 200 5.2 0 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.22876E7 -0.6 -2.2 89 101300 0 0 244 0 0 0 0 0 0 0 180 5.2 0 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.22912E7 -1.1 -2.8 89 101400 0 0 242 0 0 0 0 0 0 0 200 4.6 0 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.22948E7 -1.7 -3.9 85 101500 0 0 239 0 0 0 0 0 0 0 200 4.6 0 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.22984E7 -2.2 -3.3 92 101500 0 0 238 0 0 0 0 0 0 0 180 4.1 0 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.2302E7 -2.2 -3.3 92 101600 0 0 238 0 0 0 0 0 0 0 190 4.6 0 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.23056E7 -0.6 -2.2 89 101600 0 0 244 0 0 0 0 0 0 0 180 5.2 0 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.23092E7 -3.3 -4.4 92 101600 0 0 233 0 0 0 0 0 0 0 160 4.1 0 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.23128E7 -2.8 -3.9 92 101700 0 0 235 0 0 0 0 0 0 0 160 3.6 0 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.23164E7 -3.9 -4.4 96 101700 30 372 231 5 42 2 0 0 0 0 140 4.1 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.232E7 -1.7 -2.2 96 101700 79 1352 248 30 160 19 3359 0 2132 632 130 4.1 3 2 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.23236E7 0.6 -0.6 92 101700 187 1352 250 98 494 27 11399 0 3146 1030 130 3.6 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.23272E7 3.3 -0.6 76 101700 288 1352 260 171 624 34 20312 12526 4045 1396 130 3.6 0 0 16.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.23308E7 5.6 0.6 71 101800 374 1352 270 238 694 41 25536 62605 6469 940 120 3.6 1 0 16.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.23344E7 6.1 0.0 65 101700 438 1352 271 288 705 54 34433 30540 6470 2353 110 5.2 4 0 16.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.2338E7 6.7 1.7 71 101700 477 1352 275 322 741 54 38835 33742 6526 2415 80 5.7 3 0 16.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.23416E7 6.7 0.6 65 101700 487 1352 274 333 742 59 40002 35409 7103 2630 90 6.2 4 0 16.1 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.23452E7 5.6 0.0 68 101700 468 1352 275 289 669 51 34963 30010 6182 2285 90 6.7 4 1 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.23488E7 4.4 1.1 79 101700 421 1352 277 267 594 77 30931 28474 8947 3138 90 6.7 6 3 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.23524E7 4.4 1.1 79 101700 349 1352 277 181 441 63 20897 16777 7293 2496 100 6.7 7 3 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.2356E7 4.4 0.6 76 101700 257 1352 279 100 133 74 11061 4298 8214 2484 100 7.7 9 4 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.23596E7 2.8 0.0 82 101700 152 1352 270 63 101 50 6872 516 5472 1534 90 7.7 8 3 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.23632E7 2.2 -0.6 82 101700 45 1273 264 19 109 14 2123 0 1568 459 90 8.2 6 2 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.23668E7 1.7 -0.6 85 101700 0 0 262 0 0 0 0 0 0 0 90 7.7 5 2 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.23704E7 1.7 0.0 89 101600 0 0 255 0 0 0 0 0 0 0 90 8.2 2 0 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.2374E7 1.7 0.0 89 101700 0 0 255 0 0 0 0 0 0 0 90 7.7 2 0 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.23776E7 1.7 -0.6 85 101700 0 0 254 0 0 0 0 0 0 0 90 9.3 0 0 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.23812E7 1.7 0.0 89 101600 0 0 255 0 0 0 0 0 0 0 80 8.2 0 0 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.23848E7 1.7 0.0 89 101600 0 0 263 0 0 0 0 0 0 0 80 8.8 3 2 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.23884E7 1.7 0.0 89 101600 0 0 263 0 0 0 0 0 0 0 80 9.8 3 2 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.2392E7 1.7 -0.6 85 101600 0 0 262 0 0 0 0 0 0 0 90 9.8 3 2 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.23956E7 1.7 -0.6 85 101600 0 0 262 0 0 0 0 0 0 0 80 10.3 3 2 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.23992E7 1.1 -1.1 85 101600 0 0 256 0 0 0 0 0 0 0 80 10.3 2 1 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.24028E7 1.1 -1.1 85 101600 12 282 282 2 1 1 0 0 0 0 70 12.9 10 9 11.3 400 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.24064E7 1.1 -1.1 85 101600 72 1353 290 15 20 13 1720 0 1493 461 70 11.8 10 10 11.3 340 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.241E7 1.1 -1.1 85 101500 179 1353 290 39 5 39 4389 11 4400 1363 70 12.4 10 10 11.3 310 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.24136E7 1.7 -0.6 85 101500 280 1353 293 75 9 73 8361 308 8165 2537 70 11.3 10 10 11.3 310 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.24172E7 1.7 -0.6 85 101500 366 1353 293 90 8 88 10157 379 9966 3268 70 12.9 10 10 16.1 310 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.24208E7 1.7 -1.1 82 101500 431 1353 293 123 1 123 13753 61 13810 4465 70 13.4 10 10 16.1 310 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.24244E7 0.6 -2.2 82 101500 469 1353 287 126 5 124 14223 315 14054 4704 70 12.9 10 10 16.1 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.2428E7 0.6 -1.7 85 101500 479 1353 287 131 3 130 14767 194 14715 4918 70 13.9 10 10 16.1 240 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.24316E7 0.6 -1.1 89 101500 459 1353 288 130 2 129 14595 127 14543 4789 70 12.9 10 10 11.3 210 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.24352E7 0.6 -1.7 85 101400 412 1353 287 124 1 124 13802 61 13859 4398 70 12.9 10 10 11.3 240 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.24388E7 0.6 -1.1 89 101400 340 1353 288 108 1 108 11910 52 11958 3625 80 12.4 10 10 11.3 240 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.24424E7 0.6 -1.1 89 101400 248 1353 288 76 0 75 7481 0 7436 2461 70 12.9 10 10 11.3 210 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.2446E7 0.6 -1.7 85 101400 143 1353 287 40 0 40 3902 0 3929 1302 70 12.9 10 10 11.3 270 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.24496E7 0.6 -1.1 89 101400 37 1161 288 10 0 10 966 0 972 344 70 12.4 10 10 11.3 270 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.24532E7 0.6 -1.1 89 101500 0 0 288 0 0 0 0 0 0 0 70 10.3 10 10 11.3 310 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.24568E7 0.0 -2.2 85 101500 0 0 284 0 0 0 0 0 0 0 70 11.8 10 10 9.7 430 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.24604E7 0.0 -1.7 89 101500 0 0 285 0 0 0 0 0 0 0 70 10.3 10 10 9.7 370 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.2464E7 -0.6 -2.2 89 101500 0 0 282 0 0 0 0 0 0 0 70 11.3 10 10 9.7 240 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.24676E7 -0.6 -2.2 89 101500 0 0 282 0 0 0 0 0 0 0 70 10.3 10 10 9.7 240 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.24712E7 0.0 -1.7 89 101500 0 0 285 0 0 0 0 0 0 0 70 10.3 10 10 11.3 240 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.24748E7 0.6 -1.7 85 101500 0 0 287 0 0 0 0 0 0 0 80 10.3 10 10 11.3 240 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.24784E7 0.0 -1.1 92 101500 0 0 286 0 0 0 0 0 0 0 70 9.3 10 10 4.8 240 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.2482E7 0.0 -1.1 92 101500 0 0 286 0 0 0 0 0 0 0 70 9.3 10 10 11.3 670 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.24856E7 0.6 -0.6 92 101500 0 0 289 0 0 0 0 0 0 0 70 9.3 10 10 11.3 340 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.24892E7 0.6 -1.1 89 101500 6 169 288 1 0 1 0 0 0 0 90 9.3 10 10 11.3 820 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.24928E7 0.6 -0.6 92 101600 64 1354 289 14 0 14 1355 0 1364 479 90 8.8 10 10 4.8 370 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.24964E7 1.1 -0.6 89 101600 171 1354 269 55 11 54 6001 109 5912 1662 80 8.2 10 6 11.3 6100 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.25E7 1.1 -0.6 89 101600 272 1354 291 37 3 37 4343 56 4351 1480 80 10.8 10 10 11.3 880 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.25036E7 0.6 -0.6 92 101600 358 1354 289 57 0 57 5661 0 5704 2311 80 10.3 10 10 6.4 610 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.25072E7 0.6 -0.6 92 101700 423 1354 289 78 4 77 9036 193 8947 3133 70 9.8 10 10 6.4 880 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.25108E7 1.7 0.0 89 101600 461 1354 294 129 2 129 14477 127 14537 4787 70 10.3 10 10 11.3 850 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.25144E7 1.7 0.0 89 101700 471 1354 294 139 5 137 15564 328 15405 5044 70 10.3 10 10 11.3 880 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.2518E7 1.7 0.0 89 101600 451 1354 294 113 5 112 12802 294 12737 4299 70 10.3 10 10 11.3 880 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.25216E7 1.1 0.0 92 101700 403 1354 291 114 4 113 12750 228 12688 4092 70 10.8 10 10 11.3 910 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.25252E7 1.7 0.0 89 101700 331 1354 294 78 0 78 7731 0 7789 2882 70 10.3 10 10 11.3 940 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.25288E7 1.7 -0.6 85 101700 239 1354 293 58 0 58 5704 0 5745 2041 70 10.8 10 10 11.3 980 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.25324E7 1.1 -0.6 89 101700 134 1354 291 33 0 33 3216 0 3238 1115 80 9.8 10 10 11.3 910 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.2536E7 1.1 -0.6 89 101700 30 1049 291 11 0 11 1061 0 1068 358 70 9.8 10 10 11.3 910 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.25396E7 0.6 0.0 96 101700 0 0 289 0 0 0 0 0 0 0 70 10.8 10 10 8.0 910 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.25432E7 1.1 0.0 92 101700 0 0 291 0 0 0 0 0 0 0 80 10.8 10 10 11.3 490 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.25468E7 0.6 -0.6 92 101800 0 0 289 0 0 0 0 0 0 0 80 10.3 10 10 11.3 460 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.25504E7 1.1 -0.6 89 101800 0 0 291 0 0 0 0 0 0 0 80 10.3 10 10 11.3 730 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.2554E7 1.1 -0.6 89 101800 0 0 291 0 0 0 0 0 0 0 80 9.8 10 10 11.3 490 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.25576E7 1.1 -0.6 89 101800 0 0 291 0 0 0 0 0 0 0 80 8.8 10 10 11.3 460 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.25612E7 0.6 -0.6 92 101800 0 0 289 0 0 0 0 0 0 0 90 9.8 10 10 11.3 460 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.25648E7 1.1 -0.6 89 101800 0 0 291 0 0 0 0 0 0 0 90 8.8 10 10 11.3 400 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.25684E7 1.1 -0.6 89 101800 0 0 291 0 0 0 0 0 0 0 90 9.3 10 10 11.3 340 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.2572E7 0.6 -1.1 89 101800 0 0 288 0 0 0 0 0 0 0 90 10.3 10 10 11.3 760 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.25756E7 0.6 -1.1 89 101800 0 79 274 0 0 0 0 0 0 0 90 8.8 10 8 11.3 820 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.25792E7 0.6 -1.1 89 101800 57 1354 280 11 4 11 1260 0 1262 387 80 9.3 10 9 11.3 880 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.25828E7 0.6 -0.6 92 101800 164 1354 289 48 4 47 5277 16 5183 1496 80 8.8 10 10 11.3 820 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.25864E7 0.6 -0.6 92 101800 265 1354 289 49 5 48 5619 110 5518 1819 80 9.3 10 10 11.3 820 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.259E7 1.1 -0.6 89 101800 350 1354 291 67 2 66 7703 78 7609 2582 80 10.8 10 10 11.3 820 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.25936E7 1.1 -0.6 89 101800 414 1354 291 129 1 128 14313 62 14262 4479 70 11.8 10 10 8.0 610 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.25972E7 0.6 -1.1 89 101800 453 1354 288 135 6 133 15086 386 14925 4834 70 11.8 10 10 6.4 610 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.26008E7 0.6 -1.1 89 101800 462 1354 288 132 2 132 14798 129 14860 4872 70 10.8 10 10 8.0 820 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.26044E7 0.6 -1.1 89 101700 442 1354 288 137 2 136 15248 130 15202 4848 70 10.8 10 10 9.7 850 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.2608E7 0.6 -1.7 85 101700 395 1354 287 133 1 133 14647 63 14711 4467 70 10.8 10 10 11.3 850 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.26116E7 0.0 -2.2 85 101700 322 1354 284 105 2 105 11544 101 11591 3456 70 9.8 10 10 11.3 820 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.26152E7 0.0 -2.2 85 101700 230 1354 284 72 0 72 7078 0 7129 2311 60 8.8 10 10 11.3 820 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.26188E7 0.0 -3.3 79 101700 125 1354 283 33 0 33 3215 0 3237 1091 70 10.8 10 10 11.3 820 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.26224E7 -0.6 -3.3 82 101700 24 937 281 9 0 9 868 0 874 297 60 10.3 10 10 11.3 820 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.2626E7 -1.1 -3.3 85 101700 0 0 258 0 0 0 0 0 0 0 60 8.8 7 6 11.3 820 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.26296E7 -1.1 -3.3 85 101700 0 0 279 0 0 0 0 0 0 0 80 7.7 10 10 11.3 520 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.26332E7 -1.1 -3.9 82 101700 0 0 278 0 0 0 0 0 0 0 70 9.3 10 10 11.3 460 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.26368E7 -1.7 -5.0 78 101800 0 0 275 0 0 0 0 0 0 0 70 7.2 10 10 11.3 520 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.26404E7 -2.2 -4.4 85 101700 0 0 273 0 0 0 0 0 0 0 60 7.2 10 10 11.3 400 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.2644E7 -2.2 -3.9 89 101700 0 0 274 0 0 0 0 0 0 0 60 6.7 10 10 11.3 400 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.26476E7 -2.2 -4.4 85 101700 0 0 273 0 0 0 0 0 0 0 70 6.7 10 10 11.3 340 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.26512E7 -2.2 -4.4 85 101700 0 0 273 0 0 0 0 0 0 0 50 7.2 10 10 11.3 370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.26548E7 -2.2 -4.4 85 101700 0 0 273 0 0 0 0 0 0 0 50 6.7 10 10 11.3 430 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.26584E7 -2.2 -4.4 85 101700 0 0 273 0 0 0 0 0 0 0 50 7.2 10 10 11.3 340 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.2662E7 -2.8 -4.4 89 101700 0 0 271 0 0 0 0 0 0 0 40 5.7 10 10 11.3 400 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.26656E7 -2.2 -4.4 85 101700 49 1344 273 11 0 11 1064 0 1071 379 50 5.7 10 10 11.3 400 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.26692E7 -2.8 -5.0 85 101600 156 1355 270 38 0 38 3712 0 3738 1275 60 5.7 10 10 11.3 400 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.26728E7 -2.8 -5.0 85 101600 257 1355 270 71 0 71 6997 0 7048 2389 40 4.1 10 10 11.3 400 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.26764E7 -2.8 -5.6 81 101600 342 1355 270 104 1 104 11507 52 11553 3529 60 3.1 10 10 11.3 430 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.268E7 -2.8 -4.4 89 101500 406 1355 271 127 0 127 12679 0 12777 4405 20 6.2 10 10 8.0 580 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.26836E7 -2.8 -4.4 89 101500 445 1355 271 130 1 130 14534 64 14595 4713 40 6.7 10 10 6.4 640 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.26872E7 -3.3 -5.0 88 101500 454 1355 268 82 1 82 9539 53 9567 3392 20 5.7 10 10 8.0 460 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.26908E7 -3.3 -6.1 81 101400 434 1355 267 141 1 141 15628 67 15697 4896 20 5.2 10 10 11.3 460 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.26944E7 -3.3 -6.7 78 101400 386 1355 266 105 0 105 10472 0 10552 3807 20 4.1 10 10 11.3 460 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.2698E7 -3.9 -6.1 85 101300 313 1355 265 94 1 93 10417 47 10345 3163 50 4.1 10 10 11.3 370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.27016E7 -3.9 -6.1 85 101200 221 1355 265 62 0 62 6096 0 6140 2066 40 4.6 10 10 11.3 370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.27052E7 -3.9 -6.7 81 101200 116 1355 264 31 0 31 3020 0 3041 1020 60 3.6 10 10 11.3 370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.27088E7 -4.4 -6.7 85 101200 18 824 262 8 0 8 772 0 777 262 80 4.6 10 10 11.3 370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.27124E7 -4.4 -6.7 85 101100 0 0 262 0 0 0 0 0 0 0 70 3.6 10 10 11.3 400 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.2716E7 -4.4 -6.7 85 101000 0 0 262 0 0 0 0 0 0 0 50 5.7 10 10 11.3 340 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.27196E7 -4.4 -6.7 85 101000 0 0 262 0 0 0 0 0 0 0 60 5.2 10 10 11.3 370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.27232E7 -4.4 -7.2 81 100900 0 0 262 0 0 0 0 0 0 0 50 5.2 10 10 11.3 370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.27268E7 -3.9 -6.7 81 100900 0 0 264 0 0 0 0 0 0 0 50 5.2 10 10 11.3 370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.27304E7 -3.9 -6.1 85 100800 0 0 265 0 0 0 0 0 0 0 50 5.2 10 10 11.3 370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.2734E7 -3.9 -6.1 85 100800 0 0 265 0 0 0 0 0 0 0 60 5.2 10 10 11.3 370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.27376E7 -3.9 -6.1 85 100700 0 0 265 0 0 0 0 0 0 0 70 4.6 10 10 11.3 370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.27412E7 -3.9 -6.1 85 100600 0 0 265 0 0 0 0 0 0 0 50 4.1 10 10 11.3 370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.27448E7 -4.4 -6.7 85 100600 0 0 262 0 0 0 0 0 0 0 50 5.2 10 10 11.3 400 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.27484E7 -4.4 -6.7 85 100500 0 0 262 0 0 0 0 0 0 0 70 4.1 10 10 11.3 370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.2752E7 -4.4 -6.7 85 100500 42 1232 262 11 0 11 1064 0 1071 369 70 3.1 10 10 11.3 400 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.27556E7 -3.9 -6.7 81 100500 148 1356 264 41 0 41 4004 0 4031 1316 80 2.1 10 10 11.3 400 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.27592E7 -3.9 -6.7 81 100400 249 1356 264 76 1 76 8355 33 8386 2453 90 2.6 10 10 11.3 400 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.27628E7 -3.9 -6.7 81 100400 334 1356 264 100 0 100 9926 0 10000 3399 0 0.0 10 10 11.3 370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.27664E7 -3.9 -6.7 81 100400 398 1356 264 127 0 127 12676 0 12774 4351 0 0.0 10 10 11.3 400 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.277E7 -3.3 -6.1 81 100300 436 1356 267 138 1 137 15334 66 15289 4816 220 1.0 10 10 11.3 370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.27736E7 -3.3 -6.1 81 100300 445 1356 267 140 0 140 14031 0 14141 4948 230 1.5 10 10 11.3 370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.27772E7 -3.3 -6.7 78 100300 425 1356 266 136 1 135 15095 65 15048 4712 190 3.1 10 10 11.3 400 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.27808E7 -3.3 -6.7 78 100300 377 1356 266 131 0 131 13056 0 13155 4301 330 2.1 10 10 11.3 400 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.27844E7 -3.3 -5.6 85 100300 304 1356 268 95 0 95 9407 0 9477 3154 200 2.6 10 10 11.3 340 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.2788E7 -3.3 -5.6 85 100200 212 1356 268 62 1 62 6844 23 6866 2027 180 3.1 10 10 11.3 340 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.27916E7 -3.3 -5.6 85 100200 107 1356 268 35 0 35 3407 0 3430 1073 180 4.6 10 10 11.3 430 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.27952E7 -3.9 -6.1 85 100200 14 712 265 5 0 5 482 0 485 174 180 3.6 10 10 11.3 430 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.27988E7 -3.9 -6.1 85 100200 0 0 265 0 0 0 0 0 0 0 170 4.1 10 10 11.3 340 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.28024E7 -3.9 -6.1 85 100200 0 0 265 0 0 0 0 0 0 0 180 3.1 10 10 11.3 340 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.2806E7 -3.9 -6.1 85 100100 0 0 265 0 0 0 0 0 0 0 180 4.6 10 10 11.3 340 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.28096E7 -3.9 -6.1 85 100100 0 0 265 0 0 0 0 0 0 0 190 3.1 10 10 11.3 1520 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.28132E7 -3.9 -5.6 88 100100 0 0 265 0 0 0 0 0 0 0 190 3.1 10 10 11.3 3960 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.28168E7 -3.9 -5.6 88 100100 0 0 265 0 0 0 0 0 0 0 180 3.1 10 10 11.3 3960 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.28204E7 -5.0 -6.1 92 100100 0 0 237 0 0 0 0 0 0 0 190 3.1 8 4 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.2824E7 -3.9 -5.6 88 100100 0 0 252 0 0 0 0 0 0 0 190 5.2 10 8 11.3 400 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.28276E7 -3.3 -5.6 85 100000 0 0 268 0 0 0 0 0 0 0 190 3.6 10 10 11.3 340 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.28312E7 -3.9 -5.6 88 100000 0 0 258 0 0 0 0 0 0 0 190 3.6 10 9 11.3 370 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.28348E7 -5.0 -6.1 92 100000 0 0 248 0 0 0 0 0 0 0 170 3.6 9 8 11.3 6100 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.28384E7 -3.9 -5.0 92 100000 36 1142 266 10 0 10 966 0 972 334 170 3.6 10 10 11.3 310 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.2842E7 -3.9 -5.6 88 100000 140 1357 252 33 18 31 3709 0 3493 1063 170 3.1 10 8 11.3 310 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.28456E7 -2.8 -5.0 85 99900 241 1357 250 94 124 71 10357 3691 7850 2315 160 4.1 8 6 11.3 1680 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.28492E7 -2.2 -5.0 82 99900 326 1357 255 107 106 80 12034 4511 9028 2896 150 3.6 10 7 11.3 1680 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.28528E7 -2.2 -4.4 85 99900 390 1357 260 154 140 112 17174 7979 12539 3976 160 3.6 10 8 11.3 1520 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.28564E7 -1.1 -5.0 75 99800 428 1357 260 170 61 150 18703 4206 16578 5011 120 3.6 10 7 11.3 1520 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.286E7 -1.1 -4.4 78 99800 437 1357 253 191 253 107 21656 14671 12177 4091 140 3.6 10 4 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.28636E7 -0.6 -3.9 79 99700 417 1357 267 191 89 162 20820 6383 17744 5123 130 3.6 10 8 11.3 1370 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.28672E7 -0.6 -2.8 85 99700 368 1357 281 93 17 88 10518 823 9987 3289 90 4.1 10 10 11.3 240 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.28708E7 -0.6 -2.2 89 99600 295 1357 268 88 44 77 9838 1685 8637 2714 80 4.1 10 8 8.0 240 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.28744E7 -0.6 -2.2 89 99600 203 1357 282 39 6 38 4459 48 4355 1403 80 3.6 10 10 4.8 4270 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.2878E7 -1.1 -1.7 96 99500 98 1357 267 22 10 21 2493 0 2385 731 70 3.1 10 8 4.8 400 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.28816E7 -1.1 -2.2 92 99500 10 599 266 4 5 3 0 0 0 0 80 4.6 10 8 4.8 400 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.28852E7 -1.1 -2.2 92 99500 0 0 266 0 0 0 0 0 0 0 60 5.7 10 8 4.8 400 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.28888E7 -0.6 -2.2 89 99400 0 0 282 0 0 0 0 0 0 0 50 6.2 10 10 6.4 430 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.28924E7 -1.1 -1.7 96 99400 0 0 280 0 0 0 0 0 0 0 40 6.7 10 10 3.2 310 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.2896E7 -0.6 -1.1 96 99300 0 0 283 0 0 0 0 0 0 0 40 7.7 10 10 3.2 310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.28996E7 -1.1 -1.7 96 99300 0 0 280 0 0 0 0 0 0 0 40 7.7 10 10 3.2 310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.29032E7 -1.1 -1.7 96 99300 0 0 280 0 0 0 0 0 0 0 40 8.8 10 10 3.2 310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.29068E7 -1.7 -2.2 96 99300 0 0 277 0 0 0 0 0 0 0 50 8.8 10 10 1.6 310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.29104E7 -1.7 -2.8 92 99200 0 0 277 0 0 0 0 0 0 0 30 7.7 10 10 3.2 430 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.2914E7 -2.2 -2.8 96 99200 0 0 275 0 0 0 0 0 0 0 40 8.8 10 10 3.2 310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.29176E7 -2.2 -2.8 96 99200 0 0 275 0 0 0 0 0 0 0 40 9.8 10 10 3.2 310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.29212E7 -2.2 -3.3 92 99200 0 0 274 0 0 0 0 0 0 0 50 8.8 10 10 3.2 310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.29248E7 -2.2 -2.8 96 99100 30 1052 275 9 1 8 1023 0 911 273 50 7.7 10 10 2.4 310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.29284E7 -1.7 -2.8 92 99100 132 1357 277 28 0 28 2728 0 2747 969 50 7.2 10 10 2.4 310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.2932E7 -1.7 -2.8 92 99200 233 1357 277 58 7 57 6483 152 6391 1974 50 7.2 10 10 3.2 340 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.29356E7 -1.7 -2.8 92 99100 318 1357 277 108 5 107 11822 254 11761 3434 40 7.7 10 10 4.8 310 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.29392E7 -1.7 -2.8 92 99100 382 1357 277 122 5 121 13482 294 13428 4120 40 8.8 10 10 3.2 310 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.29428E7 -1.7 -2.8 92 99100 420 1357 277 154 4 153 16868 276 16837 4993 50 8.8 10 10 3.2 310 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.29464E7 -1.7 -3.3 89 99100 428 1357 276 145 0 145 14501 0 14614 4927 20 7.7 10 10 6.4 340 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.295E7 -1.7 -3.3 89 99100 408 1357 276 149 3 148 16323 203 16289 4826 40 6.7 10 10 6.4 310 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.29536E7 -1.7 -3.3 89 99100 359 1357 276 132 2 131 14411 122 14366 4163 40 6.7 10 10 6.4 310 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.29572E7 -1.7 -3.3 89 99100 286 1357 276 118 1 117 12702 53 12651 3368 40 6.7 10 10 8.0 310 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.29608E7 -1.7 -2.8 92 99100 193 1357 277 76 1 76 8174 27 8207 2155 50 5.2 10 10 4.8 340 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.29644E7 -1.7 -2.2 96 99100 89 1357 277 32 0 32 3107 0 3128 949 60 3.6 10 10 4.8 310 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.2968E7 -1.1 -1.7 96 99100 6 486 280 5 0 5 0 0 0 0 50 2.6 10 10 6.4 310 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.29716E7 -1.1 -1.7 96 99100 0 0 280 0 0 0 0 0 0 0 60 2.6 10 10 3.2 150 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.29752E7 -1.1 -1.7 96 99100 0 0 280 0 0 0 0 0 0 0 50 3.1 10 10 3.2 150 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.29788E7 -1.1 -1.1 100 99100 0 0 281 0 0 0 0 0 0 0 60 3.1 10 10 6.4 150 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.29824E7 -1.1 -1.7 96 99100 0 0 280 0 0 0 0 0 0 0 50 4.1 10 10 6.4 90 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.2986E7 -1.1 -2.2 92 99100 0 0 280 0 0 0 0 0 0 0 50 3.6 10 10 6.4 90 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.29896E7 -1.1 -2.2 92 99200 0 0 280 0 0 0 0 0 0 0 50 4.6 10 10 9.7 210 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.29932E7 -1.1 -2.2 92 99200 0 0 280 0 0 0 0 0 0 0 50 4.1 10 10 9.7 270 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.29968E7 -1.1 -2.2 92 99200 0 0 280 0 0 0 0 0 0 0 50 3.1 10 10 9.7 150 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.30004E7 -1.7 -2.2 96 99200 0 0 277 0 0 0 0 0 0 0 60 4.1 10 10 9.7 270 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.3004E7 -2.2 -2.8 96 99200 0 0 275 0 0 0 0 0 0 0 60 3.6 10 10 9.7 880 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.30076E7 -2.2 -2.8 96 99200 0 0 275 0 0 0 0 0 0 0 60 3.6 10 10 9.7 980 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.30112E7 -2.2 -2.8 96 99200 25 962 275 8 0 8 771 0 776 265 70 3.1 10 10 3.2 1100 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.30148E7 -2.2 -2.8 96 99200 124 1358 275 38 0 38 3700 0 3725 1169 80 2.1 10 10 8.0 1070 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.30184E7 -1.7 -2.8 92 99200 225 1358 277 69 0 68 6778 0 6727 2178 90 2.1 10 10 2.4 1070 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.3022E7 -1.1 -2.2 92 99200 310 1358 280 112 1 112 12178 52 12230 3457 90 1.5 10 10 2.4 1070 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.30256E7 -1.1 -2.2 92 99200 374 1358 280 133 1 133 14545 62 14610 4282 170 1.5 10 10 1.6 370 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.30292E7 -2.2 -2.8 96 99200 411 1358 275 153 0 153 15276 0 15394 4920 210 4.1 10 10 1.6 370 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.30328E7 -2.2 -3.3 92 99200 420 1358 274 156 1 156 17066 70 17147 5051 200 4.6 10 10 6.4 370 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.30364E7 -3.3 -3.9 96 99200 399 1358 269 139 0 139 13869 0 13976 4600 210 5.2 10 10 6.4 370 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.304E7 -0.6 -1.7 92 99200 350 1358 282 116 0 116 11521 0 11608 3837 310 5.2 10 10 6.4 460 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.30436E7 -0.6 -2.2 89 99300 277 1358 282 88 0 88 8686 0 8750 2863 290 3.6 10 10 6.4 460 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.30472E7 -0.6 -3.3 82 99300 184 1358 281 57 0 57 5583 0 5622 1806 250 8.2 10 10 8.0 460 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.30508E7 -1.1 -3.9 82 99300 80 1358 278 26 0 26 2523 0 2540 807 260 10.8 10 10 8.0 460 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.30544E7 -1.1 -2.8 89 99300 24 374 279 4 0 4 0 0 0 0 250 10.3 10 10 1.6 460 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.3058E7 -1.7 -3.3 89 99400 0 0 276 0 0 0 0 0 0 0 270 9.3 10 10 1.6 460 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.30616E7 -1.7 -2.8 92 99400 0 0 277 0 0 0 0 0 0 0 230 7.2 10 10 1.6 460 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.30652E7 -1.1 -2.8 89 99400 0 0 279 0 0 0 0 0 0 0 310 5.2 10 10 3.2 460 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.30688E7 -1.7 -2.2 96 99500 0 0 277 0 0 0 0 0 0 0 330 4.6 10 10 3.2 460 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.30724E7 -1.7 -3.3 89 99500 0 0 276 0 0 0 0 0 0 0 310 5.7 10 10 3.2 460 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.3076E7 -1.7 -2.8 92 99500 0 0 277 0 0 0 0 0 0 0 310 5.2 10 10 3.2 460 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.30796E7 -1.7 -3.3 89 99600 0 0 276 0 0 0 0 0 0 0 300 4.1 10 10 3.2 460 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.30832E7 -1.1 -2.8 89 99700 0 0 279 0 0 0 0 0 0 0 310 8.2 10 10 3.2 460 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.30868E7 -1.7 -3.3 89 99700 0 0 276 0 0 0 0 0 0 0 300 7.7 10 10 3.2 460 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.30904E7 -1.7 -3.9 85 99800 0 0 276 0 0 0 0 0 0 0 300 8.2 10 10 3.2 460 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.3094E7 -1.7 -3.3 89 99900 0 0 276 0 0 0 0 0 0 0 290 8.8 10 10 3.2 460 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.30976E7 -1.7 -2.8 92 100000 20 849 277 7 0 7 674 0 679 232 290 7.7 10 10 3.2 460 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.31012E7 -1.1 -3.9 82 100000 117 1359 278 37 0 37 3601 0 3625 1119 280 9.3 10 10 3.2 460 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.31048E7 -1.1 -3.3 85 100000 217 1359 279 83 0 83 8148 0 8206 2364 280 9.8 10 10 8.0 490 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.31084E7 -1.1 -3.9 82 100100 302 1359 278 110 0 110 10881 0 10962 3365 290 10.3 10 10 11.3 490 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.3112E7 -1.1 -3.9 82 100200 366 1359 278 136 1 136 14814 63 14882 4262 290 10.3 10 10 4.8 490 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.31156E7 -1.1 -3.9 82 100200 403 1359 278 147 1 147 16084 67 16158 4751 270 11.3 10 10 8.0 520 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.31192E7 -1.1 -4.4 78 100300 411 1359 278 151 1 151 16529 69 16606 4895 280 8.8 10 10 8.0 490 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.31228E7 -1.1 -2.8 89 100300 390 1359 279 146 0 146 14553 0 14665 4645 250 9.3 10 10 4.8 610 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.31264E7 -0.6 -3.3 82 100300 342 1359 281 123 0 123 12211 0 12303 3895 250 7.2 10 10 4.8 610 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.313E7 -1.1 -3.3 85 100400 268 1359 261 133 90 115 14242 4600 12371 3180 230 9.8 10 7 11.3 1130 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.31336E7 -1.1 -2.8 89 100400 175 1359 266 45 5 44 5022 31 4924 1493 210 9.3 10 8 11.3 980 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.31372E7 -1.1 -2.8 89 100400 71 1359 266 17 4 17 1920 0 1924 580 230 10.3 10 8 11.3 1070 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.31408E7 -0.6 -2.2 89 100400 2 260 268 0 0 0 0 0 0 0 230 10.3 10 8 11.3 2900 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.31444E7 -0.6 -2.8 85 100400 0 0 264 0 0 0 0 0 0 0 220 9.8 10 7 11.3 2290 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.3148E7 -5.0 -6.7 88 100400 0 0 241 0 0 0 0 0 0 0 200 7.7 10 6 11.3 2440 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.31516E7 -5.0 -7.2 85 100400 0 0 247 0 0 0 0 0 0 0 200 9.3 10 8 11.3 2440 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.31552E7 -5.0 -7.2 85 100400 0 0 243 0 0 0 0 0 0 0 200 9.8 10 7 11.3 6100 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.31588E7 -4.4 -6.1 88 100400 0 0 243 0 0 0 0 0 0 0 210 9.3 8 6 11.3 6100 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.31624E7 -3.3 -4.4 92 100400 0 0 269 0 0 0 0 0 0 0 210 8.8 10 10 11.3 240 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.3166E7 -0.6 -1.7 92 100500 0 0 282 0 0 0 0 0 0 0 230 8.2 10 10 11.3 210 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.31696E7 -0.6 -2.2 89 100500 0 0 282 0 0 0 0 0 0 0 220 9.8 10 10 11.3 210 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.31732E7 -5.0 -6.1 92 100500 0 0 248 0 0 0 0 0 0 0 200 8.2 8 8 11.3 270 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.31768E7 -3.3 -4.4 92 100500 0 0 269 0 0 0 0 0 0 0 200 8.8 10 10 11.3 270 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.31804E7 -0.6 -2.2 89 100500 0 0 274 0 0 0 0 0 0 0 230 11.3 10 9 11.3 760 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.3184E7 -0.6 -2.8 85 100600 15 759 281 3 1 3 0 0 0 0 250 9.3 10 10 3.2 610 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.31876E7 -1.1 -2.8 89 100700 109 1360 279 30 9 29 3321 0 3219 935 230 9.3 10 10 6.4 1520 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.31912E7 -1.1 -3.3 85 100700 209 1360 271 48 2 48 5387 27 5402 1674 230 10.3 9 9 6.4 980 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.31948E7 -0.6 -3.9 79 100800 294 1360 260 194 414 101 21166 19507 11065 3166 250 10.8 6 6 11.3 1070 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.31984E7 -1.7 -2.8 92 100900 357 1360 277 137 7 135 14891 434 14741 4176 230 9.3 10 10 0.4 0 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.3202E7 -1.1 -2.8 89 100900 394 1360 272 197 105 165 21289 7553 17920 4922 230 10.3 9 9 3.2 460 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.32056E7 -0.6 -3.3 82 100900 403 1360 281 99 6 97 11209 320 11022 3666 240 13.4 10 10 1.6 490 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.32092E7 -0.6 -2.8 85 100900 382 1360 274 188 71 167 20231 5138 18062 4825 230 10.3 9 9 6.4 270 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.32128E7 -1.7 -2.8 92 100900 333 1360 263 133 70 115 14556 3822 12639 3696 230 10.3 9 8 6.4 240 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.32164E7 -1.7 -3.3 89 100900 259 1360 269 67 18 63 7519 519 7092 2230 230 10.8 9 9 3.2 270 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.322E7 -1.7 -2.2 96 100900 166 1360 277 37 5 36 4178 0 4075 1268 240 11.8 10 10 0.2 150 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.32236E7 -1.7 -2.2 96 100800 62 1360 277 13 12 12 1498 0 1384 429 240 11.3 10 10 1.6 240 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.32272E7 -1.1 -2.2 92 100900 1 147 280 0 0 0 0 0 0 0 240 10.8 10 10 4.8 210 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.32308E7 -1.1 -3.9 82 100900 0 0 270 0 0 0 0 0 0 0 270 11.3 9 9 9.7 790 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.32344E7 -1.1 -5.0 75 100900 0 0 269 0 0 0 0 0 0 0 270 11.3 9 9 11.3 820 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.3238E7 -1.7 -5.0 78 101000 0 0 275 0 0 0 0 0 0 0 280 11.3 10 10 11.3 880 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.32416E7 -1.7 -5.0 78 101000 0 0 275 0 0 0 0 0 0 0 290 11.3 10 10 11.3 880 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.32452E7 -1.7 -4.4 82 101100 0 0 275 0 0 0 0 0 0 0 280 10.3 10 10 4.8 460 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.32488E7 -1.7 -6.1 72 101100 0 0 273 0 0 0 0 0 0 0 280 11.3 10 10 4.8 460 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.32524E7 -1.7 -5.6 75 101100 0 0 274 0 0 0 0 0 0 0 290 10.8 10 10 4.8 610 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.3256E7 -2.2 -6.1 75 101200 0 0 271 0 0 0 0 0 0 0 290 11.3 10 10 11.3 760 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.32596E7 -1.7 -6.1 72 101200 0 0 273 0 0 0 0 0 0 0 290 10.3 10 10 11.3 820 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.32632E7 -2.2 -6.7 72 101200 0 0 271 0 0 0 0 0 0 0 290 9.8 10 10 11.3 820 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.32668E7 -1.7 -6.1 72 101200 0 0 273 0 0 0 0 0 0 0 290 10.3 10 10 11.3 820 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.32704E7 -1.7 -5.6 75 101200 12 669 274 4 1 4 0 0 0 0 280 8.2 10 10 11.3 820 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.3274E7 -2.2 -6.1 75 101200 101 1361 271 31 4 30 3405 0 3305 931 300 9.8 10 10 11.3 850 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.32776E7 -1.7 -6.1 72 101200 201 1361 273 81 5 81 8675 152 8711 2218 310 9.3 10 10 11.3 730 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.32812E7 -1.7 -6.1 72 101200 286 1361 273 104 5 103 11300 239 11238 3139 300 9.3 10 10 11.3 760 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.32848E7 -1.7 -7.2 66 101200 349 1361 272 130 1 130 14151 61 14214 4033 300 7.2 10 10 11.3 760 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.32884E7 -1.7 -6.7 69 101200 386 1361 273 184 0 184 18346 0 18486 4990 280 7.2 10 10 11.3 1010 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.3292E7 -1.7 -6.7 69 101200 394 1361 273 186 1 186 19915 79 20020 5119 290 6.7 10 10 11.3 910 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.32956E7 -1.1 -3.9 82 101200 373 1361 278 167 0 167 16625 0 16752 4724 320 5.2 10 10 11.3 910 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.32992E7 -1.1 -4.4 78 101200 324 1361 270 161 91 138 17306 5670 14905 3934 300 3.6 9 9 11.3 1220 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.33028E7 -1.7 -3.9 85 101100 250 1361 276 87 2 87 9474 76 9512 2681 350 3.6 10 10 11.3 430 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.33064E7 -1.7 -5.0 78 101100 157 1361 275 46 5 45 5079 19 4984 1454 340 5.2 10 10 11.3 550 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.331E7 -2.2 -5.6 78 101100 54 1361 272 20 0 20 1937 0 1950 610 350 4.6 10 10 11.3 700 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.33136E7 -2.2 -5.6 78 101200 0 34 272 0 0 0 0 0 0 0 360 2.6 10 10 11.3 610 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.33172E7 -2.8 -6.1 78 101200 0 0 262 0 0 0 0 0 0 0 360 3.1 10 9 11.3 610 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.33208E7 -2.8 -5.6 81 101200 0 0 270 0 0 0 0 0 0 0 60 4.6 10 10 11.3 490 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.33244E7 -3.3 -5.0 88 101200 0 0 268 0 0 0 0 0 0 0 90 2.6 10 10 11.3 490 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.3328E7 -3.3 -5.6 85 101200 0 0 268 0 0 0 0 0 0 0 100 2.6 10 10 11.3 610 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.33316E7 -3.3 -4.4 92 101200 0 0 269 0 0 0 0 0 0 0 70 2.6 10 10 11.3 610 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.33352E7 -3.9 -5.6 88 101200 0 0 265 0 0 0 0 0 0 0 140 2.1 10 10 11.3 700 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.33388E7 -3.3 -3.9 96 101100 0 0 269 0 0 0 0 0 0 0 120 2.6 10 10 11.3 700 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.33424E7 -4.4 -5.0 96 101100 0 0 242 0 0 0 0 0 0 0 130 2.6 5 5 8.0 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.3346E7 -3.3 -4.4 92 101100 0 0 247 0 0 0 0 0 0 0 90 2.6 5 5 8.0 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.33496E7 -3.3 -5.0 88 101000 0 0 268 0 0 0 0 0 0 0 70 6.2 10 10 8.0 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.33532E7 -5.0 -7.2 85 101000 0 0 236 0 0 0 0 0 0 0 90 4.1 4 4 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.33568E7 -5.0 -6.7 88 101000 8 579 239 3 2 3 0 0 0 0 90 4.1 8 5 11.3 370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.33604E7 -4.4 -6.1 88 101000 93 1361 263 27 2 27 2974 0 2982 846 70 3.6 10 10 6.4 370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.3364E7 -5.6 -6.7 92 101000 193 1361 241 66 58 58 7243 981 6387 1834 120 3.6 9 7 9.7 460 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.33676E7 -5.0 -6.7 88 101000 277 1361 243 97 91 78 10756 3391 8680 2635 80 5.2 8 7 9.7 460 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.33712E7 -3.9 -6.1 85 100900 341 1361 252 163 85 141 17571 5448 15272 4099 80 5.2 9 8 11.3 460 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.33748E7 -3.3 -5.0 88 100900 378 1361 255 179 119 145 19468 7885 15844 4499 100 5.7 8 8 11.3 460 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.33784E7 -2.8 -4.4 89 100900 386 1361 249 187 189 131 20562 11777 14468 4343 100 4.1 7 5 11.3 460 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.3382E7 -3.3 -5.6 85 100900 364 1361 260 151 113 119 16641 6564 13170 3976 80 6.7 10 9 9.7 580 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.33856E7 -3.9 -6.1 85 100900 315 1361 252 141 67 125 15244 3872 13575 3702 60 5.2 8 8 9.7 610 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.33892E7 -3.9 -5.6 88 100900 241 1361 258 102 40 94 10999 1632 10179 2717 80 8.2 9 9 9.7 460 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.33928E7 -3.9 -5.6 88 100900 148 1361 258 38 11 37 4243 0 4143 1246 70 7.2 9 9 9.7 490 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.33964E7 -3.3 -5.6 85 100900 45 1282 268 1 2 1 136 0 136 41 60 7.7 10 10 9.7 460 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.34E7 -3.3 -6.7 78 100900 0 0 266 0 0 0 0 0 0 0 80 7.7 10 10 9.7 490 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.34036E7 -3.9 -6.7 81 100900 0 0 264 0 0 0 0 0 0 0 70 7.7 10 10 9.7 490 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.34072E7 -3.9 -6.7 81 100900 0 0 264 0 0 0 0 0 0 0 90 6.2 10 10 9.7 490 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.34108E7 -3.9 -6.7 81 100900 0 0 257 0 0 0 0 0 0 0 80 6.2 9 9 11.3 520 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.34144E7 -3.3 -4.4 92 100900 0 0 269 0 0 0 0 0 0 0 70 6.7 10 10 11.3 400 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.3418E7 -3.3 -5.6 85 101000 0 0 268 0 0 0 0 0 0 0 70 7.7 10 10 11.3 430 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.34216E7 -3.3 -5.6 85 101000 0 0 268 0 0 0 0 0 0 0 90 6.7 10 10 11.3 430 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.34252E7 -3.3 -6.1 81 101000 0 0 267 0 0 0 0 0 0 0 80 7.7 10 10 11.3 460 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.34288E7 -3.3 -6.1 81 101000 0 0 267 0 0 0 0 0 0 0 80 7.2 10 10 11.3 460 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.34324E7 -3.3 -5.6 85 101000 0 0 268 0 0 0 0 0 0 0 90 5.7 10 10 11.3 460 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.3436E7 -3.3 -5.6 85 101000 0 0 268 0 0 0 0 0 0 0 80 6.7 10 10 11.3 490 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.34396E7 -3.3 -6.1 81 101000 0 0 267 0 0 0 0 0 0 0 50 7.7 10 10 11.3 520 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.34432E7 -3.3 -6.1 81 101000 6 465 267 2 0 2 0 0 0 0 80 8.2 10 10 11.3 520 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.34468E7 -3.3 -5.6 85 101000 85 1362 268 18 0 18 1747 0 1759 618 70 7.2 10 10 11.3 520 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.34504E7 -3.3 -6.1 81 101100 185 1362 267 42 4 42 4715 25 4728 1454 90 7.2 10 10 11.3 520 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.3454E7 -3.3 -6.1 81 101100 269 1362 267 94 0 94 9276 0 9344 2886 90 6.7 10 10 11.3 460 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.34576E7 -3.3 -6.1 81 101100 332 1362 267 107 1 107 11774 52 11821 3525 70 6.7 10 10 11.3 460 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.34612E7 -3.3 -6.1 81 101100 369 1362 267 114 4 113 12630 226 12570 3875 60 7.7 10 10 11.3 460 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.34648E7 -3.9 -6.7 81 101100 377 1362 264 129 1 129 14173 62 14235 4243 60 6.7 10 10 11.3 400 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.34684E7 -3.9 -6.1 85 101100 355 1362 265 114 0 114 11337 0 11422 3820 50 5.7 10 10 11.3 400 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.3472E7 -3.9 -7.2 78 101100 306 1362 264 109 0 109 10797 0 10876 3403 60 6.2 10 10 11.3 430 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.34756E7 -4.4 -6.7 85 101100 232 1362 262 92 1 92 9904 39 9946 2622 70 5.7 10 10 11.3 400 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.34792E7 -4.4 -7.2 81 101100 139 1362 262 51 0 51 4979 0 5013 1479 60 5.2 10 10 11.3 430 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.34828E7 -4.4 -7.2 81 101100 38 1169 262 13 0 13 1257 0 1266 421 50 5.2 10 10 11.3 430 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.34864E7 -4.4 -6.1 88 101100 0 0 263 0 0 0 0 0 0 0 50 4.1 10 10 11.3 400 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.349E7 -4.4 -5.6 92 101100 0 0 263 0 0 0 0 0 0 0 70 4.6 10 10 11.3 430 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.34936E7 -4.4 -6.7 85 101100 0 0 262 0 0 0 0 0 0 0 60 4.6 10 10 11.3 430 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.34972E7 -3.9 -7.2 78 101100 0 0 264 0 0 0 0 0 0 0 50 4.6 10 10 11.3 610 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.35008E7 -3.9 -6.7 81 101100 0 0 264 0 0 0 0 0 0 0 60 5.7 10 10 11.3 490 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.35044E7 -3.9 -6.7 81 101100 0 0 264 0 0 0 0 0 0 0 60 5.2 10 10 11.3 520 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.3508E7 -3.9 -6.7 81 101100 0 0 264 0 0 0 0 0 0 0 60 5.2 10 10 11.3 610 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.35116E7 -3.9 -6.7 81 101100 0 0 264 0 0 0 0 0 0 0 50 4.1 10 10 11.3 580 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.35152E7 -3.9 -7.2 78 101100 0 0 264 0 0 0 0 0 0 0 60 4.1 10 10 11.3 760 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.35188E7 -3.9 -7.2 78 101100 0 0 264 0 0 0 0 0 0 0 50 3.6 10 10 11.3 610 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.35224E7 -4.4 -6.1 88 101100 0 0 263 0 0 0 0 0 0 0 50 3.6 10 10 11.3 3050 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.3526E7 -4.4 -6.1 88 101100 0 0 263 0 0 0 0 0 0 0 60 3.6 10 10 11.3 3050 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.35296E7 -3.9 -5.6 88 101100 12 375 265 2 0 2 0 0 0 0 60 6.2 10 10 11.3 3050 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.35332E7 -3.9 -5.6 88 101100 78 1363 265 27 0 27 2619 0 2637 793 70 6.7 10 10 11.3 730 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.35368E7 -3.3 -5.6 85 101100 176 1363 268 65 0 65 6362 0 6406 1858 60 6.7 10 10 8.0 760 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.35404E7 -3.3 -5.6 85 101100 261 1363 268 103 1 103 11087 46 11136 2947 80 5.7 10 10 4.8 1340 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.3544E7 -3.3 -5.6 85 101200 324 1363 268 117 1 116 12751 55 12697 3621 80 5.2 10 10 4.8 1340 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.35476E7 -3.9 -6.1 85 101200 361 1363 248 202 222 141 21913 14373 15367 4290 70 5.2 9 7 11.3 3350 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.35512E7 -3.9 -6.7 81 101200 368 1363 247 160 163 114 17715 9278 12673 3895 60 5.2 9 7 11.3 3050 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.35548E7 -3.3 -6.1 81 101200 346 1363 267 120 2 119 13155 115 13101 3853 70 4.6 10 10 11.3 1830 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.35584E7 -2.8 -6.1 78 101200 297 1363 269 82 19 77 9174 744 8644 2714 60 4.1 10 10 11.3 1280 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.3562E7 -3.3 -5.6 85 101200 223 1363 268 62 3 62 6871 72 6894 2068 70 4.6 10 10 9.7 1220 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.35656E7 -3.3 -5.6 85 101300 130 1363 268 29 0 29 2828 0 2847 1003 70 5.7 10 10 4.8 910 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.35692E7 -3.9 -5.6 88 101300 31 1079 265 7 0 7 676 0 681 250 70 5.2 10 10 4.8 1520 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.35728E7 -4.4 -6.1 88 101300 0 0 263 0 0 0 0 0 0 0 70 5.2 10 10 4.8 1680 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.35764E7 -3.9 -6.1 85 101300 0 0 265 0 0 0 0 0 0 0 70 5.2 10 10 8.0 1830 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.358E7 -4.5 -6.4 85 101300 0 0 262 0 0 0 0 0 0 0 80 4.9 10 10 8.0 1830 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.35836E7 -5.2 -6.8 85 101300 0 0 259 0 0 0 0 0 0 0 90 4.6 10 10 8.0 1680 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.35872E7 -5.9 -7.2 85 101300 0 0 256 0 0 0 0 0 0 0 70 4.3 10 10 11.3 700 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.35908E7 -6.7 -7.6 100 101500 0 0 252 0 0 0 0 0 0 0 320 4.0 10 10 11.3 340 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.35944E7 -7.4 -8.0 100 101500 0 0 249 0 0 0 0 0 0 0 300 3.7 10 10 11.3 340 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.3598E7 -8.1 -8.4 100 101500 0 0 246 0 0 0 0 0 0 0 300 3.4 10 10 11.3 370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.36016E7 -8.9 -8.9 100 101500 0 0 243 0 0 0 0 0 0 0 310 3.1 10 10 11.3 370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.36052E7 -8.3 -8.3 100 101600 0 0 246 0 0 0 0 0 0 0 330 3.1 10 10 11.3 370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.36088E7 -8.3 -8.9 96 101600 0 0 245 0 0 0 0 0 0 0 340 2.1 10 10 11.3 400 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.36124E7 -8.3 -8.9 96 101600 0 0 245 0 0 0 0 0 0 0 320 1.5 10 10 11.3 400 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.3616E7 -7.8 -8.3 96 101600 18 261 248 3 0 3 0 0 0 0 310 2.6 10 10 11.3 430 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.36196E7 -7.8 -8.9 92 101700 68 1364 247 21 0 21 2037 0 2050 656 270 2.1 10 10 11.3 400 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.36232E7 -7.2 -8.9 88 101700 167 1364 242 49 14 47 5409 94 5204 1515 260 2.1 10 9 11.3 400 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.36268E7 -6.7 -8.3 88 101700 251 1364 236 103 102 83 11260 3780 9109 2601 310 3.1 9 7 11.3 400 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.36304E7 -6.7 -8.3 88 101800 314 1364 233 145 152 109 15849 7964 11964 3447 280 2.6 10 6 11.3 2440 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.3634E7 -6.7 -7.8 92 101800 350 1364 240 137 41 126 14968 2460 13827 3997 310 3.1 10 8 11.3 400 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.36376E7 -6.7 -8.3 88 101800 358 1364 245 107 82 85 12107 3912 9650 3163 330 2.6 10 9 11.3 430 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.36412E7 -6.7 -8.3 88 101900 336 1364 236 170 126 138 18361 7997 14974 4056 300 2.6 9 7 11.3 430 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.36448E7 -6.7 -8.3 88 101900 286 1364 245 90 29 84 9970 1197 9339 2831 310 2.6 10 9 11.3 430 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.36484E7 -7.2 -7.8 96 101900 212 1364 243 52 14 50 5846 238 5636 1754 310 2.6 10 9 11.3 2440 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.3652E7 -7.2 -7.8 96 101900 119 1364 243 31 10 30 3467 0 3364 1006 240 2.1 10 9 11.3 2440 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.36556E7 -7.2 -7.8 96 101900 23 943 243 7 3 7 804 0 805 244 310 2.1 10 9 11.3 2440 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.36592E7 -6.7 -7.8 92 101900 0 0 252 0 0 0 0 0 0 0 330 2.1 10 10 11.3 2440 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.36628E7 -7.2 -7.8 96 101900 0 0 250 0 0 0 0 0 0 0 310 2.1 10 10 11.3 370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.36664E7 -7.2 -7.8 96 102000 0 0 250 0 0 0 0 0 0 0 180 1.5 10 10 11.3 370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.367E7 -7.2 -7.8 96 102000 0 0 250 0 0 0 0 0 0 0 210 2.1 10 10 11.3 370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.36736E7 -7.8 -7.8 100 102000 0 0 248 0 0 0 0 0 0 0 0 0.0 10 10 11.3 2440 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.36772E7 -7.8 -7.8 100 102000 0 0 248 0 0 0 0 0 0 0 170 2.1 10 10 11.3 1370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.36808E7 -7.8 -7.8 100 102000 0 0 248 0 0 0 0 0 0 0 170 2.1 10 10 11.3 1370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.36844E7 -7.8 -7.8 100 102000 0 0 248 0 0 0 0 0 0 0 180 2.1 10 10 11.3 1370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.3688E7 -7.8 -7.8 100 102000 0 0 248 0 0 0 0 0 0 0 170 2.1 10 10 11.3 1370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.36916E7 -8.3 -8.3 100 102000 0 0 246 0 0 0 0 0 0 0 190 2.1 10 10 11.3 1370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.36952E7 -8.3 -8.3 100 102100 0 0 234 0 0 0 0 0 0 0 170 2.6 10 8 11.3 1370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.36988E7 -7.8 -7.8 100 102100 0 0 241 0 0 0 0 0 0 0 200 2.1 10 9 11.3 1370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.37024E7 -8.3 -8.3 100 102000 6 148 234 1 1 1 0 0 0 0 180 1.5 10 8 11.3 1370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.3706E7 -8.3 -8.3 100 102000 61 1365 234 23 23 22 2508 0 2406 652 210 2.1 10 8 11.3 1830 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.37096E7 -7.8 -7.8 100 102000 159 1365 241 62 57 54 6735 554 5886 1606 180 1.5 10 9 11.3 1830 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.37132E7 -6.1 -6.1 100 102100 243 1365 256 63 4 62 7031 105 6941 2135 170 2.1 10 10 11.3 430 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.37168E7 -5.6 -7.8 85 102100 306 1365 256 86 6 85 9569 258 9491 2931 170 2.1 10 10 11.3 430 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.37204E7 -6.1 -7.2 92 102100 342 1365 248 132 29 125 14392 1716 13689 3914 140 2.6 10 9 11.3 430 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.3724E7 -5.0 -7.2 85 102000 349 1365 259 90 2 89 10117 96 10040 3230 180 1.5 10 10 11.3 430 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.37276E7 -5.6 -7.2 88 102000 327 1365 257 84 7 83 9436 311 9355 2990 60 2.1 10 10 11.3 340 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.37312E7 -6.7 -7.2 96 102000 277 1365 253 72 5 71 8060 176 7974 2496 30 2.6 10 10 11.3 310 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.37348E7 -6.7 -6.7 100 102000 203 1365 253 87 6 86 9308 204 9240 2338 60 2.6 10 10 11.3 340 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.37384E7 -6.7 -7.2 96 102100 110 1365 253 34 3 34 3741 0 3752 1068 340 2.1 10 10 11.3 370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.3742E7 -6.7 -7.8 92 102000 18 830 252 5 1 5 584 0 584 179 10 2.6 10 10 11.3 400 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.37456E7 -7.8 -7.8 100 102000 0 0 248 0 0 0 0 0 0 0 120 2.1 10 10 8.0 430 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.37492E7 -7.8 -7.8 100 102000 0 0 248 0 0 0 0 0 0 0 0 0.0 10 10 8.0 430 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.37528E7 -9.4 -9.4 100 102000 0 0 218 0 0 0 0 0 0 0 120 2.6 5 3 8.0 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.37564E7 -8.3 -8.3 100 102000 0 0 234 0 0 0 0 0 0 0 110 2.1 8 8 8.0 340 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.376E7 -7.8 -7.8 100 102000 0 0 248 0 0 0 0 0 0 0 0 0.0 10 10 8.0 400 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.37636E7 -8.3 -8.3 100 102000 0 0 246 0 0 0 0 0 0 0 160 2.6 10 10 8.0 370 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.37672E7 -8.3 -8.3 100 102000 0 0 246 0 0 0 0 0 0 0 150 2.1 10 10 9.7 340 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.37708E7 -7.8 -7.8 100 101900 0 0 248 0 0 0 0 0 0 0 190 1.5 10 10 9.7 310 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.37744E7 -7.8 -7.8 100 101900 0 0 241 0 0 0 0 0 0 0 210 2.1 10 9 4.8 310 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.3778E7 -7.8 -7.8 100 101900 0 0 248 0 0 0 0 0 0 0 180 2.1 10 10 4.8 310 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.37816E7 -8.3 -8.3 100 101900 0 0 246 0 0 0 0 0 0 0 0 0.0 10 10 4.8 400 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.37852E7 -9.4 -9.4 100 101900 0 0 241 0 0 0 0 0 0 0 160 2.1 10 10 8.0 1370 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.37888E7 -8.9 -8.9 100 101900 0 57 243 0 0 0 0 0 0 0 170 2.6 10 10 9.7 370 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.37924E7 -8.9 -8.9 100 101900 53 1365 243 13 0 13 1259 0 1267 439 160 2.6 10 10 11.3 370 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.3796E7 -8.9 -8.9 100 101900 151 1365 243 47 0 47 4593 0 4625 1449 140 2.1 10 10 4.8 400 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.37996E7 -8.3 -8.3 100 101900 235 1365 239 68 14 66 7527 385 7331 2190 130 2.1 10 9 11.3 1520 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.38032E7 -8.3 -8.3 100 101900 297 1365 239 80 36 71 9008 1337 8020 2558 90 2.6 10 9 11.3 460 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.38068E7 -8.3 -8.3 100 101900 333 1365 239 103 26 96 11450 1282 10712 3316 110 3.1 10 9 11.3 430 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.38104E7 -8.3 -8.3 100 101900 341 1365 246 91 4 90 10195 192 10119 3216 100 3.6 10 10 11.3 430 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.3814E7 -8.3 -8.3 100 101900 318 1365 246 79 2 78 8896 84 8812 2827 80 3.1 10 10 11.3 370 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.38176E7 -7.8 -7.8 100 101900 268 1365 248 70 4 69 7830 133 7743 2412 70 2.1 10 10 6.4 310 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.38212E7 -8.3 -8.3 100 101900 194 1365 246 43 2 43 4855 20 4868 1522 50 3.1 10 10 11.3 310 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.38248E7 -8.9 -8.9 100 101900 101 1365 243 27 0 27 2628 0 2646 890 60 2.1 10 10 11.3 150 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.38284E7 -8.9 -8.9 100 101900 13 717 243 6 0 6 579 0 582 203 0 0.0 10 10 11.3 150 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.3832E7 -8.9 -8.9 100 101900 0 0 243 0 0 0 0 0 0 0 190 2.1 10 10 11.3 120 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.38356E7 -8.9 -8.9 100 101900 0 0 243 0 0 0 0 0 0 0 350 2.6 10 10 11.3 120 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.38392E7 -8.3 -8.3 100 101900 0 0 246 0 0 0 0 0 0 0 350 3.1 10 10 8.0 240 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.38428E7 -8.9 -8.9 100 101900 0 0 243 0 0 0 0 0 0 0 360 4.1 10 10 8.0 240 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.38464E7 -8.9 -8.9 100 101900 0 0 243 0 0 0 0 0 0 0 350 4.1 10 10 9.7 310 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.385E7 -9.4 -9.4 100 101900 0 0 229 0 0 0 0 0 0 0 360 4.1 9 8 11.3 310 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.38536E7 -9.4 -9.4 100 101900 0 0 241 0 0 0 0 0 0 0 360 5.2 10 10 11.3 310 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.38572E7 -9.4 -9.4 100 101900 0 0 241 0 0 0 0 0 0 0 350 4.6 10 10 4.8 310 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.38608E7 -8.9 -8.9 100 101800 0 0 243 0 0 0 0 0 0 0 340 4.1 10 10 4.8 310 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.38644E7 -8.3 -8.3 100 101800 0 0 246 0 0 0 0 0 0 0 330 6.7 10 10 9.7 310 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.3868E7 -8.9 -8.9 100 101800 0 0 243 0 0 0 0 0 0 0 340 5.2 10 10 6.4 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.38716E7 -8.3 -8.3 100 101800 0 0 246 0 0 0 0 0 0 0 340 5.2 10 10 6.4 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.38752E7 -7.8 -7.8 100 101800 0 0 248 0 0 0 0 0 0 0 340 4.6 10 10 6.4 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.38788E7 -7.2 -7.2 100 101800 46 1332 251 15 2 15 1662 0 1665 474 20 5.2 10 10 11.3 310 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.38824E7 -8.9 -8.9 100 101800 143 1366 243 62 0 62 6055 0 6096 1598 330 7.2 10 10 11.3 310 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.3886E7 -10.6 -10.6 100 101800 227 1366 220 109 174 78 11862 5655 8521 2369 340 6.2 8 7 11.3 310 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.38896E7 -11.7 -12.8 92 101800 289 1366 205 175 336 101 19096 16241 11066 3141 10 5.7 6 2 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.38932E7 -12.2 -12.8 96 101900 325 1366 197 224 666 59 25847 24390 6826 2301 340 5.2 4 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.38968E7 -12.2 -12.8 96 101900 332 1366 197 230 688 55 26751 24877 6412 2192 330 6.2 3 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.39004E7 -12.2 -12.8 96 101900 309 1366 197 211 665 53 24452 21894 6157 2081 350 7.2 3 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.3904E7 -11.7 -12.2 96 101900 259 1366 206 159 467 65 17825 14595 7310 2281 340 6.7 6 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.39076E7 -12.2 -12.8 96 101900 185 1366 204 107 212 76 11481 5898 8188 2093 330 7.7 7 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.39112E7 -12.2 -12.8 96 101900 92 1366 206 46 168 32 5027 0 3507 965 330 6.7 8 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.39148E7 -12.8 -12.8 100 101900 9 603 202 10 70 7 0 0 0 0 310 5.7 7 2 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.39184E7 -13.3 -13.3 100 101900 0 0 205 0 0 0 0 0 0 0 330 5.2 8 5 11.3 6100 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.3922E7 -13.3 -13.3 100 101900 0 0 204 0 0 0 0 0 0 0 320 5.7 7 4 11.3 6100 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.39256E7 -13.3 -13.3 100 101900 0 0 223 0 0 0 0 0 0 0 320 5.2 10 10 11.3 310 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.39292E7 -12.8 -12.8 100 101900 0 0 226 0 0 0 0 0 0 0 310 5.2 10 10 8.0 180 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.39328E7 -11.7 -11.7 100 101900 0 0 230 0 0 0 0 0 0 0 320 5.7 10 10 8.0 180 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.39364E7 -10.6 -10.6 100 101900 0 0 235 0 0 0 0 0 0 0 320 6.2 10 10 6.4 150 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.394E7 -11.1 -11.7 96 101900 0 0 232 0 0 0 0 0 0 0 320 7.2 10 10 11.3 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.39436E7 -12.2 -12.2 100 101900 0 0 222 0 0 0 0 0 0 0 310 6.2 10 9 11.3 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.39472E7 -12.2 -12.2 100 101900 0 0 228 0 0 0 0 0 0 0 310 6.2 10 10 11.3 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.39508E7 -12.2 -12.2 100 101900 0 0 228 0 0 0 0 0 0 0 310 6.7 10 10 8.0 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.39544E7 -13.3 -13.3 100 101900 0 0 223 0 0 0 0 0 0 0 320 6.7 10 10 9.7 310 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.3958E7 -13.3 -13.3 100 101900 0 0 223 0 0 0 0 0 0 0 320 5.7 10 10 11.3 310 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.39616E7 -13.3 -13.3 100 101900 0 0 223 0 0 0 0 0 0 0 310 5.7 10 10 11.3 340 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.39652E7 -12.8 -12.8 100 101900 39 1219 226 9 0 9 871 0 877 313 310 6.2 10 10 11.3 310 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.39688E7 -12.8 -12.8 100 101900 135 1367 226 37 2 37 4094 0 4105 1191 310 6.2 10 10 11.3 310 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.39724E7 -12.2 -12.2 100 101900 218 1367 228 46 4 46 5212 64 5225 1652 310 6.2 10 10 11.3 310 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.3976E7 -12.2 -12.2 100 101900 280 1367 228 83 6 81 9197 239 9007 2720 310 6.2 10 10 11.3 340 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.39796E7 -11.7 -11.7 100 101900 316 1367 230 80 4 79 8991 170 8909 2836 290 6.2 10 10 11.3 340 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.39832E7 -11.1 -11.1 100 101900 323 1367 233 96 1 96 10644 49 10684 3265 290 6.7 10 10 2.4 310 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.39868E7 -11.1 -11.1 100 101900 301 1367 233 95 2 94 10477 93 10407 3105 300 6.7 10 10 4.8 370 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.39904E7 -11.1 -11.1 100 101900 250 1367 233 70 0 70 6905 0 6955 2360 300 6.2 10 10 4.8 370 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.3994E7 -11.7 -11.7 100 101800 176 1367 230 53 0 53 5195 0 5232 1692 310 4.6 10 10 4.8 310 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.39976E7 -11.1 -11.1 100 101800 83 1367 233 30 0 30 2917 0 2936 896 310 6.2 10 10 8.0 310 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.40012E7 -10.6 -10.6 100 101800 6 490 235 5 0 5 0 0 0 0 290 5.7 10 10 11.3 240 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.40048E7 -10.6 -10.6 100 101800 0 0 235 0 0 0 0 0 0 0 290 5.2 10 10 11.3 240 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.40084E7 -10.0 -10.0 100 101800 0 0 238 0 0 0 0 0 0 0 300 5.7 10 10 11.3 240 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.4012E7 -10.0 -10.0 100 101800 0 0 238 0 0 0 0 0 0 0 300 4.6 10 10 11.3 240 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.40156E7 -10.0 -10.0 100 101800 0 0 238 0 0 0 0 0 0 0 310 4.1 10 10 11.3 240 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.40192E7 -10.6 -10.6 100 101800 0 0 235 0 0 0 0 0 0 0 300 5.7 10 10 11.3 270 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.40228E7 -10.6 -10.6 100 101800 0 0 235 0 0 0 0 0 0 0 310 4.1 10 10 11.3 270 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.40264E7 -10.6 -10.6 100 101800 0 0 235 0 0 0 0 0 0 0 320 5.2 10 10 11.3 580 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.403E7 -10.0 -10.0 100 101800 0 0 238 0 0 0 0 0 0 0 310 5.2 10 10 8.0 270 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.40336E7 -10.0 -10.0 100 101800 0 0 238 0 0 0 0 0 0 0 320 4.1 10 10 4.8 240 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.40372E7 -9.4 -9.4 100 101800 0 0 241 0 0 0 0 0 0 0 320 4.1 10 10 6.4 270 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.40408E7 -9.4 -9.4 100 101800 0 0 241 0 0 0 0 0 0 0 300 4.1 10 10 8.0 270 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.40444E7 -9.4 -9.4 100 101800 0 0 241 0 0 0 0 0 0 0 290 5.2 10 10 8.0 310 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.4048E7 -9.4 -9.4 100 101800 0 0 241 0 0 0 0 0 0 0 300 5.2 10 10 11.3 340 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.40516E7 -8.9 -8.9 100 101800 32 1128 243 11 0 11 1063 0 1070 355 310 4.1 10 10 11.3 340 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.40552E7 -8.9 -8.9 100 101800 127 1368 243 45 0 45 4388 0 4418 1301 300 4.1 10 10 11.3 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.40588E7 -8.3 -8.3 100 101800 210 1368 246 80 0 80 7858 0 7914 2287 300 5.2 10 10 11.3 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.40624E7 -8.3 -8.3 100 101900 272 1368 246 110 0 110 10864 0 10943 3131 310 5.2 10 10 11.3 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.4066E7 -8.3 -8.3 100 101900 308 1368 246 121 1 121 13083 56 13141 3574 310 4.1 10 10 11.3 340 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.40696E7 -8.3 -8.3 100 101900 314 1368 246 125 1 125 13512 58 13573 3689 310 4.1 10 10 11.3 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.40732E7 -8.3 -8.3 100 101900 292 1368 246 113 1 113 12229 53 12282 3354 300 4.1 10 10 11.3 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.40768E7 -8.9 -8.9 100 101900 241 1368 243 99 1 98 10646 43 10584 2768 300 4.1 10 10 11.3 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.40804E7 -8.9 -8.9 100 102000 167 1368 243 66 1 65 7108 19 7027 1837 310 4.1 10 10 11.3 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.4084E7 -8.9 -8.9 100 102000 75 1368 243 27 0 27 2622 0 2639 811 320 3.1 10 10 11.3 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.40876E7 -8.9 -8.9 100 102000 18 376 243 3 0 3 0 0 0 0 320 3.6 10 10 11.3 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.40912E7 -8.9 -8.9 100 102000 0 0 243 0 0 0 0 0 0 0 320 2.1 10 10 11.3 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.40948E7 -8.9 -8.9 100 102100 0 0 243 0 0 0 0 0 0 0 310 3.1 10 10 11.3 520 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.40984E7 -8.9 -8.9 100 102100 0 0 243 0 0 0 0 0 0 0 300 2.1 10 10 11.3 550 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.4102E7 -8.9 -8.9 100 102100 0 0 243 0 0 0 0 0 0 0 300 1.5 10 10 11.3 640 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.41056E7 -8.3 -8.3 100 102100 0 0 246 0 0 0 0 0 0 0 300 2.6 10 10 9.7 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.41092E7 -8.3 -8.3 100 102100 0 0 246 0 0 0 0 0 0 0 340 2.1 10 10 9.7 340 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.41128E7 -8.3 -8.3 100 102100 0 0 246 0 0 0 0 0 0 0 310 1.5 10 10 9.7 340 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.41164E7 -8.3 -8.3 100 102200 0 0 246 0 0 0 0 0 0 0 340 2.1 10 10 8.0 180 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.412E7 -8.3 -8.3 100 102200 0 0 246 0 0 0 0 0 0 0 330 2.6 10 10 9.7 180 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.41236E7 -8.9 -8.9 100 102200 0 0 243 0 0 0 0 0 0 0 160 1.5 10 10 9.7 180 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.41272E7 -8.3 -8.3 100 102200 0 0 246 0 0 0 0 0 0 0 220 1.5 10 10 11.3 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.41308E7 -8.3 -8.3 100 102300 0 0 246 0 0 0 0 0 0 0 0 0.0 10 10 11.3 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.41344E7 -8.3 -8.3 100 102300 0 0 246 0 0 0 0 0 0 0 0 0.0 10 10 11.3 150 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.4138E7 -7.8 -7.8 100 102300 27 1015 248 10 0 10 966 0 972 320 10 2.1 10 10 1.6 120 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.41416E7 -7.8 -7.8 100 102300 119 1369 248 41 0 41 3994 0 4022 1201 50 3.1 10 10 1.6 120 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.41452E7 -7.8 -7.8 100 102400 202 1369 248 43 0 43 4220 0 4250 1529 60 2.6 10 10 2.4 120 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.41488E7 -7.8 -7.8 100 102400 264 1369 248 97 1 96 10524 44 10459 2886 50 2.6 10 10 11.3 340 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.41524E7 -7.2 -7.2 100 102400 299 1369 251 130 1 130 13926 59 13992 3589 40 2.6 10 10 11.3 370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.4156E7 -7.2 -7.2 100 102400 306 1369 251 131 1 131 14060 60 14126 3673 70 5.2 10 10 6.4 310 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.41596E7 -8.3 -8.3 100 102400 283 1369 230 153 108 129 16320 6294 13826 3431 60 2.6 8 7 11.3 610 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.41632E7 -7.8 -7.8 100 102500 232 1369 236 93 109 73 10213 3356 8046 2336 50 3.1 9 8 11.3 790 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.41668E7 -7.8 -7.8 100 102500 158 1369 241 27 15 25 3130 0 2902 937 50 2.6 10 9 11.3 880 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.41704E7 -7.2 -7.2 100 102600 66 1369 244 22 7 22 2425 0 2431 687 60 3.6 10 9 11.3 310 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.4174E7 -7.8 -7.8 100 102600 2 262 248 0 0 0 0 0 0 0 60 3.6 10 10 11.3 150 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.41776E7 -7.8 -7.8 100 102600 0 0 248 0 0 0 0 0 0 0 60 3.1 10 10 11.3 240 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.41812E7 -7.8 -7.8 100 102600 0 0 248 0 0 0 0 0 0 0 40 2.6 10 10 11.3 270 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.41848E7 -7.8 -7.8 100 102700 0 0 248 0 0 0 0 0 0 0 60 2.6 10 10 11.3 790 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.41884E7 -7.8 -7.8 100 102700 0 0 248 0 0 0 0 0 0 0 50 4.1 10 10 11.3 880 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.4192E7 -7.8 -7.8 100 102700 0 0 248 0 0 0 0 0 0 0 40 4.6 10 10 11.3 340 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.41956E7 -7.8 -7.8 100 102700 0 0 248 0 0 0 0 0 0 0 50 5.2 10 10 11.3 310 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.41992E7 -7.2 -7.2 100 102700 0 0 251 0 0 0 0 0 0 0 60 5.2 10 10 11.3 370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.42028E7 -7.2 -7.2 100 102700 0 0 251 0 0 0 0 0 0 0 50 5.7 10 10 11.3 340 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.42064E7 -7.2 -7.2 100 102700 0 0 251 0 0 0 0 0 0 0 60 6.7 10 10 11.3 340 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.421E7 -7.8 -7.8 100 102700 0 0 248 0 0 0 0 0 0 0 50 7.2 10 10 11.3 310 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.42136E7 -8.3 -8.3 100 102700 0 0 246 0 0 0 0 0 0 0 50 7.7 10 10 11.3 790 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.42172E7 -8.9 -8.9 100 102700 0 0 243 0 0 0 0 0 0 0 60 6.7 10 10 11.3 340 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.42208E7 -8.9 -8.9 100 102700 0 0 243 0 0 0 0 0 0 0 50 7.7 10 10 11.3 310 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.42244E7 -8.9 -8.9 100 102800 21 924 243 9 1 9 1002 0 1004 286 40 5.7 10 10 11.3 310 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.4228E7 -9.4 -9.4 100 102800 111 1369 234 43 23 41 4641 0 4440 1162 50 6.2 10 9 11.3 310 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.42316E7 -9.4 -9.4 100 102700 194 1369 234 64 17 61 7005 330 6700 1900 40 6.7 10 9 11.3 430 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.42352E7 -9.4 -9.4 100 102700 255 1369 241 70 0 70 6904 0 6954 2366 20 6.2 10 10 11.3 880 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.42388E7 -9.4 -9.4 100 102700 291 1369 241 98 13 95 10751 595 10463 3052 20 5.7 10 10 11.3 880 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.42424E7 -9.4 -9.4 100 102700 297 1369 241 113 1 113 12248 53 12302 3387 30 6.7 10 10 11.3 880 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.4246E7 -9.4 -9.4 100 102700 274 1369 241 65 3 65 7320 98 7342 2329 30 5.7 10 10 11.3 880 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.42496E7 -9.4 -9.4 100 102700 223 1369 241 72 1 72 7889 30 7917 2270 20 7.7 10 10 11.3 880 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.42532E7 -9.4 -9.4 100 102700 149 1369 241 46 0 46 4497 0 4528 1443 30 7.2 10 10 11.3 880 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.42568E7 -9.4 -9.4 100 102600 57 1369 241 15 0 15 1454 0 1464 507 20 8.8 10 10 11.3 880 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.42604E7 -8.9 -8.9 100 102600 6 148 243 1 0 1 0 0 0 0 30 7.7 10 10 11.3 310 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.4264E7 -8.9 -9.4 96 102600 0 0 243 0 0 0 0 0 0 0 30 7.7 10 10 11.3 310 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.42676E7 -8.9 -8.9 100 102600 0 0 243 0 0 0 0 0 0 0 40 8.2 10 10 11.3 310 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.42712E7 -9.4 -9.4 100 102500 0 0 241 0 0 0 0 0 0 0 20 7.7 10 10 11.3 210 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.42748E7 -9.4 -9.4 100 102500 0 0 241 0 0 0 0 0 0 0 360 6.7 10 10 11.3 790 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.42784E7 -9.4 -9.4 100 102400 0 0 241 0 0 0 0 0 0 0 20 7.2 10 10 11.3 1520 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.4282E7 -10.0 -10.0 100 102400 0 0 238 0 0 0 0 0 0 0 40 7.2 10 10 11.3 310 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.42856E7 -10.0 -10.0 100 102400 0 0 238 0 0 0 0 0 0 0 20 7.2 10 10 11.3 310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.42892E7 -10.0 -10.0 100 102400 0 0 238 0 0 0 0 0 0 0 30 7.7 10 10 6.4 310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.42928E7 -10.0 -10.0 100 102300 0 0 238 0 0 0 0 0 0 0 20 7.7 10 10 11.3 340 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.42964E7 -10.0 -10.0 100 102200 0 0 238 0 0 0 0 0 0 0 20 7.2 10 10 11.3 310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.43E7 -10.0 -10.0 100 102200 0 0 238 0 0 0 0 0 0 0 10 7.7 10 10 11.3 310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.43036E7 -10.0 -10.0 100 102200 0 0 238 0 0 0 0 0 0 0 10 7.7 10 10 11.3 310 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.43072E7 -9.4 -9.4 100 102100 0 0 241 0 0 0 0 0 0 0 20 7.7 10 10 6.4 240 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.43108E7 -9.4 -9.4 100 102100 17 811 241 7 0 7 675 0 679 230 20 7.2 10 10 4.8 240 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.43144E7 -9.4 -9.4 100 102100 103 1370 241 34 0 34 3309 0 3331 1017 40 5.2 10 10 8.0 270 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.4318E7 -9.4 -9.4 100 102100 185 1370 241 65 0 65 6372 0 6417 1921 20 6.7 10 10 4.8 310 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.43216E7 -9.4 -9.4 100 102100 247 1370 241 93 0 93 9166 0 9232 2722 40 5.7 10 10 11.3 180 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.43252E7 -8.9 -8.9 100 102100 282 1370 243 93 1 93 10189 44 10229 2963 10 5.2 10 10 11.3 150 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.43288E7 -8.9 -8.9 100 102000 288 1370 243 98 1 98 10717 47 10760 3095 20 5.7 10 10 11.3 150 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.43324E7 -8.9 -8.9 100 102000 265 1370 243 98 0 98 9676 0 9746 2943 30 5.2 10 10 11.3 270 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.4336E7 -8.9 -8.9 100 102000 215 1370 243 71 1 71 7758 28 7787 2205 360 4.1 10 10 11.3 5490 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.43396E7 -8.9 -8.9 100 102000 140 1370 243 54 0 54 5274 0 5311 1529 360 4.1 10 10 4.8 310 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.43432E7 -8.9 -8.9 100 102000 49 1370 243 16 0 16 1550 0 1560 516 40 3.6 10 10 9.7 310 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.43468E7 -8.3 -8.3 100 102000 6 34 246 1 0 1 0 0 0 0 50 2.6 10 10 9.7 340 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.43504E7 -8.3 -8.3 100 102000 0 0 246 0 0 0 0 0 0 0 350 3.6 10 10 9.7 310 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.4354E7 -8.3 -8.3 100 102000 0 0 246 0 0 0 0 0 0 0 330 2.1 10 10 11.3 310 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.43576E7 -8.3 -8.3 100 102000 0 0 246 0 0 0 0 0 0 0 310 3.1 10 10 11.3 310 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.43612E7 -8.3 -8.3 100 102000 0 0 246 0 0 0 0 0 0 0 320 2.6 10 10 11.3 310 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.43648E7 -8.3 -8.3 100 102000 0 0 246 0 0 0 0 0 0 0 320 2.1 10 10 11.3 310 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.43684E7 -8.3 -8.3 100 102000 0 0 246 0 0 0 0 0 0 0 270 2.1 10 10 11.3 310 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.4372E7 -8.9 -8.9 100 102000 0 0 243 0 0 0 0 0 0 0 170 3.6 10 10 11.3 310 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.43756E7 -8.9 -8.9 100 102000 0 0 243 0 0 0 0 0 0 0 170 3.6 10 10 11.3 310 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.43792E7 -8.3 -8.3 100 102100 0 0 246 0 0 0 0 0 0 0 150 4.1 10 10 11.3 310 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.43828E7 -8.3 -8.3 100 102100 0 0 246 0 0 0 0 0 0 0 160 4.1 10 10 11.3 310 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.43864E7 -8.9 -8.9 100 102100 0 0 243 0 0 0 0 0 0 0 140 3.1 10 10 11.3 180 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.439E7 -8.9 -8.9 100 102100 0 0 243 0 0 0 0 0 0 0 140 3.6 10 10 11.3 150 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.43936E7 -8.9 -8.9 100 102200 0 0 243 0 0 0 0 0 0 0 140 3.6 10 10 6.4 90 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.43972E7 -8.9 -8.9 100 102200 13 720 243 7 0 7 0 0 0 0 110 2.1 10 10 6.4 60 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.44008E7 -8.9 -8.9 100 102200 95 1371 243 33 0 33 3209 0 3230 967 100 3.6 10 10 11.3 60 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.44044E7 -8.9 -8.9 100 102200 177 1371 243 70 0 70 6857 0 6904 1932 90 3.6 10 10 11.3 90 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.4408E7 -8.3 -8.3 100 102200 238 1371 246 105 1 104 11203 45 11146 2767 80 3.6 10 10 11.3 90 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.44116E7 -7.8 -7.8 100 102200 273 1371 248 112 1 112 12040 51 12094 3168 90 4.1 10 10 6.4 90 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.44152E7 -7.8 -7.8 100 102200 280 1371 248 120 1 120 12857 54 12917 3312 100 3.6 10 10 11.3 180 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.44188E7 -7.8 -7.8 100 102100 257 1371 248 105 1 105 11285 47 11334 2961 90 3.1 10 10 11.3 180 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.44224E7 -7.8 -7.8 100 102100 206 1371 248 83 1 83 8914 33 8951 2317 80 3.1 10 10 11.3 180 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.4426E7 -7.8 -7.8 100 102100 131 1371 248 55 1 55 5887 7 5909 1485 70 2.1 10 10 11.3 1520 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.44296E7 -7.8 -7.8 100 102100 41 1291 248 14 0 14 1355 0 1364 453 90 3.6 10 10 11.3 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.44332E7 -8.3 -8.3 100 102000 0 0 246 0 0 0 0 0 0 0 90 3.6 10 10 11.3 180 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.44368E7 -7.8 -7.8 100 102000 0 0 248 0 0 0 0 0 0 0 90 3.1 10 10 11.3 150 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.44404E7 -7.8 -7.8 100 102000 0 0 248 0 0 0 0 0 0 0 90 2.6 10 10 11.3 150 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.4444E7 -7.8 -7.8 100 101900 0 0 248 0 0 0 0 0 0 0 130 2.1 10 10 11.3 240 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.44476E7 -7.8 -7.8 100 101900 0 0 248 0 0 0 0 0 0 0 0 0.0 10 10 9.7 310 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.44512E7 -7.2 -7.2 100 101800 0 0 251 0 0 0 0 0 0 0 0 0.0 10 10 6.4 120 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.44548E7 -6.1 -6.1 100 101800 0 0 256 0 0 0 0 0 0 0 220 2.1 10 10 8.0 120 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.44584E7 -6.1 -6.1 100 101800 0 0 256 0 0 0 0 0 0 0 0 0.0 10 10 6.4 180 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.4462E7 -5.6 -5.6 100 101700 0 0 259 0 0 0 0 0 0 0 0 0.0 10 10 6.4 210 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.44656E7 -5.0 -5.0 100 101700 0 0 261 0 0 0 0 0 0 0 330 2.1 10 10 6.4 180 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.44692E7 -5.0 -5.0 100 101600 0 0 261 0 0 0 0 0 0 0 330 2.6 10 10 4.8 180 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.44728E7 -5.0 -5.0 100 101500 0 0 261 0 0 0 0 0 0 0 330 2.1 10 10 11.3 150 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.44764E7 -5.0 -5.0 100 101500 0 0 261 0 0 0 0 0 0 0 340 2.6 10 10 8.0 150 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.448E7 -4.4 -4.4 100 101400 0 0 264 0 0 0 0 0 0 0 320 2.1 10 10 8.0 460 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.44836E7 -4.4 -4.4 100 101400 9 606 264 5 0 5 0 0 0 0 340 3.6 10 10 8.0 150 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.44872E7 -4.4 -4.4 100 101300 87 1372 264 26 0 26 2524 0 2541 812 330 2.6 10 10 11.3 150 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.44908E7 -4.4 -4.4 100 101300 169 1372 264 57 0 57 5574 0 5613 1706 320 2.1 10 10 4.8 150 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.44944E7 -3.9 -3.9 100 101200 230 1372 267 77 0 77 7570 0 7624 2373 20 2.1 10 10 4.0 150 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.4498E7 -3.9 -3.9 100 101200 265 1372 267 102 0 102 10059 0 10132 2980 50 1.5 10 10 11.3 150 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.45016E7 -3.9 -3.9 100 101100 271 1372 267 97 1 97 10541 44 10584 2961 60 2.1 10 10 8.0 150 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.45052E7 -4.4 -4.4 100 101100 248 1372 257 103 21 99 11080 907 10695 2820 70 1.5 10 9 11.3 460 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.45088E7 -4.4 -4.4 100 101000 197 1372 252 77 38 72 8331 965 7820 2116 40 2.6 10 8 11.3 460 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.45124E7 -4.4 -4.4 100 101000 122 1372 264 32 12 31 3572 0 3469 1035 70 2.1 10 10 4.8 400 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.4516E7 -5.0 -5.0 100 101000 34 1178 261 8 2 8 924 0 925 284 0 0.0 10 10 4.8 370 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.45196E7 -5.6 -5.6 100 101000 0 0 259 0 0 0 0 0 0 0 120 2.1 10 10 4.8 370 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.45232E7 -6.7 -6.7 100 100900 0 0 253 0 0 0 0 0 0 0 130 2.1 10 10 1.3 240 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.45268E7 -8.3 -8.3 100 100700 0 0 246 0 0 0 0 0 0 0 0 0.0 10 10 1.3 270 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.45304E7 -6.1 -6.1 100 100900 0 0 256 0 0 0 0 0 0 0 120 1.5 10 10 4.8 180 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.4534E7 -6.7 -6.7 100 100900 0 0 253 0 0 0 0 0 0 0 110 2.6 10 10 1.6 120 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.45376E7 -6.7 -6.7 100 101000 0 0 253 0 0 0 0 0 0 0 100 3.1 10 10 1.6 120 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.45412E7 -6.7 -6.7 100 101000 0 0 253 0 0 0 0 0 0 0 100 3.1 10 10 8.0 790 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.45448E7 -6.7 -6.7 100 101000 0 0 253 0 0 0 0 0 0 0 90 3.6 10 10 11.3 980 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.45484E7 -7.2 -7.2 100 101000 0 0 251 0 0 0 0 0 0 0 100 3.1 10 10 11.3 980 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.4552E7 -7.2 -7.2 100 101000 0 0 251 0 0 0 0 0 0 0 90 2.6 10 10 11.3 980 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.45556E7 -6.7 -6.7 100 101000 0 0 253 0 0 0 0 0 0 0 80 3.1 10 10 11.3 980 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.45592E7 -6.7 -6.7 100 101000 0 0 253 0 0 0 0 0 0 0 100 2.1 10 10 6.4 150 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.45628E7 -6.1 -6.1 100 101000 0 0 256 0 0 0 0 0 0 0 90 3.1 10 10 11.3 980 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.45664E7 -5.6 -5.6 100 101000 0 0 259 0 0 0 0 0 0 0 80 3.1 10 10 1.3 90 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.457E7 -7.2 -7.2 100 101000 6 515 251 0 0 0 0 0 0 0 140 2.6 10 10 11.3 120 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.45736E7 -7.8 -7.8 100 101000 79 1373 241 21 8 21 2338 0 2344 683 110 3.1 10 9 11.3 1130 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.45772E7 -7.8 -7.8 100 101100 161 1373 248 43 7 42 4774 15 4677 1386 70 3.1 10 10 1.3 90 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.45808E7 -7.8 -7.8 100 101100 222 1373 248 73 2 73 7969 58 7998 2258 60 3.6 10 10 11.3 980 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.45844E7 -7.8 -7.8 100 101100 256 1373 248 93 4 93 10091 167 10132 2794 90 4.1 10 10 11.3 980 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.4588E7 -8.3 -8.3 100 101100 262 1373 226 137 286 80 15093 10587 8845 2613 100 3.6 8 5 1.6 980 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.45916E7 -8.9 -8.9 100 101100 239 1373 223 109 133 85 11845 4925 9274 2570 90 2.6 8 5 3.2 3660 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.45952E7 -8.3 -8.3 100 101100 188 1373 226 84 132 65 9136 2797 7095 1958 70 3.6 9 5 0.3 3660 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.45988E7 -7.8 -7.8 100 101000 114 1373 248 39 15 38 4259 0 4163 1151 60 4.1 10 10 1.6 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.46024E7 -8.9 -8.9 100 101000 27 1064 243 3 0 3 290 0 292 116 60 4.1 10 10 1.6 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.4606E7 -9.4 -9.4 100 101000 0 0 241 0 0 0 0 0 0 0 70 2.6 10 10 1.6 150 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.46096E7 -8.3 -8.3 100 101000 0 0 246 0 0 0 0 0 0 0 90 2.6 10 10 1.3 60 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.46132E7 -7.2 -7.2 100 101000 0 0 251 0 0 0 0 0 0 0 80 2.6 10 10 1.3 60 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.46168E7 -6.1 -6.1 100 101000 0 0 256 0 0 0 0 0 0 0 90 4.6 10 10 4.8 120 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.46204E7 -5.6 -5.6 100 101000 0 0 259 0 0 0 0 0 0 0 80 3.6 10 10 4.8 120 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.4624E7 -5.6 -5.6 100 100900 0 0 259 0 0 0 0 0 0 0 90 3.1 10 10 8.0 210 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.46276E7 -5.6 -5.6 100 100900 0 0 259 0 0 0 0 0 0 0 80 3.1 10 10 8.0 210 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.46312E7 -5.0 -5.0 100 100900 0 0 261 0 0 0 0 0 0 0 80 3.1 10 10 8.0 270 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.46348E7 -5.0 -5.0 100 100900 0 0 261 0 0 0 0 0 0 0 80 2.6 10 10 6.4 310 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.46384E7 -4.4 -4.4 100 100900 0 0 264 0 0 0 0 0 0 0 80 4.1 10 10 9.7 310 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.4642E7 -4.4 -4.4 100 100900 0 0 264 0 0 0 0 0 0 0 100 5.2 10 10 11.3 310 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.46456E7 -4.4 -4.4 100 100900 0 0 264 0 0 0 0 0 0 0 80 3.6 10 10 11.3 310 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.46492E7 -4.4 -4.4 100 100900 0 0 264 0 0 0 0 0 0 0 100 3.6 10 10 11.3 240 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.46528E7 -4.4 -4.4 100 100900 0 0 264 0 0 0 0 0 0 0 90 3.1 10 10 11.3 240 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.46564E7 -5.0 -5.0 100 100900 4 401 261 0 0 0 0 0 0 0 70 3.6 10 10 11.3 370 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.466E7 -4.4 -4.4 100 100900 71 1373 264 24 1 24 2623 0 2631 724 70 5.7 10 10 11.3 310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.46636E7 -4.4 -4.4 100 100900 152 1373 264 39 0 39 3808 0 3835 1292 80 5.7 10 10 4.8 310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.46672E7 -4.4 -4.4 100 100900 213 1373 264 63 0 63 6185 0 6229 2032 90 6.2 10 10 6.4 310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.46708E7 -4.4 -4.4 100 100900 248 1373 264 64 0 64 6303 0 6348 2201 90 6.7 10 10 6.4 310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.46744E7 -4.4 -4.4 100 100900 254 1373 264 76 1 76 8375 34 8405 2490 80 7.2 10 10 11.3 310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.4678E7 -4.4 -4.4 100 100900 230 1373 264 68 1 68 7496 27 7522 2221 90 5.7 10 10 4.8 340 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.46816E7 -4.4 -4.4 100 100900 179 1373 264 66 0 65 6462 0 6409 1907 90 4.1 10 10 2.4 430 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.46852E7 -3.9 -3.9 100 100900 105 1373 267 40 0 40 3891 0 3917 1144 60 4.1 10 10 11.3 340 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.46888E7 -4.4 -4.4 100 100900 21 950 264 8 0 8 772 0 777 269 70 4.1 10 10 11.3 340 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.46924E7 -4.4 -4.4 100 100900 0 0 264 0 0 0 0 0 0 0 70 6.2 10 10 11.3 310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.4696E7 -4.4 -4.4 100 101000 0 0 264 0 0 0 0 0 0 0 80 4.6 10 10 11.3 310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.46996E7 -4.4 -4.4 100 101000 0 0 264 0 0 0 0 0 0 0 90 4.1 10 10 11.3 310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.47032E7 -5.0 -5.0 100 101000 0 0 261 0 0 0 0 0 0 0 90 3.6 10 10 11.3 370 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.47068E7 -4.4 -4.4 100 101000 0 0 264 0 0 0 0 0 0 0 110 4.1 10 10 11.3 340 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.47104E7 -4.4 -4.4 100 101000 0 0 264 0 0 0 0 0 0 0 100 5.2 10 10 3.2 180 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.4714E7 -4.4 -4.4 100 101100 0 0 264 0 0 0 0 0 0 0 90 3.6 10 10 2.4 210 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.47176E7 -5.0 -5.0 100 101100 0 0 261 0 0 0 0 0 0 0 90 4.1 10 10 6.4 120 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.47212E7 -5.6 -5.6 100 101100 0 0 259 0 0 0 0 0 0 0 110 3.6 10 10 4.8 120 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.47248E7 -5.6 -5.6 100 101100 0 0 259 0 0 0 0 0 0 0 100 4.6 10 10 6.4 120 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.47284E7 -5.6 -5.6 100 101100 0 0 259 0 0 0 0 0 0 0 110 4.6 10 10 2.4 90 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.4732E7 -6.7 -6.7 100 101100 0 0 253 0 0 0 0 0 0 0 100 5.2 10 10 8.0 90 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.47356E7 -6.7 -6.7 100 101200 0 0 246 0 0 0 0 0 0 0 100 5.2 10 9 3.2 90 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.47392E7 -7.8 -7.8 100 101200 0 0 236 0 0 0 0 0 0 0 90 3.1 10 8 4.8 2740 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.47428E7 -7.2 -7.2 100 101200 6 309 251 1 0 1 0 0 0 0 90 2.6 10 10 2.4 180 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.47464E7 -6.7 -6.7 100 101200 63 1374 253 20 0 20 1938 0 1951 623 90 2.1 10 10 2.0 240 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.475E7 -5.6 -5.6 100 101200 144 1374 259 56 0 56 5466 0 5504 1550 110 2.6 10 10 1.6 270 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.47536E7 -5.0 -5.0 100 101200 205 1374 261 66 0 66 6476 0 6522 2047 70 3.6 10 10 2.0 180 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.47572E7 -3.9 -3.9 100 101200 239 1374 267 86 0 86 8462 0 8523 2575 70 3.6 10 10 2.0 180 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.47608E7 -3.3 -3.3 100 101300 245 1374 270 95 0 95 9351 0 9419 2743 60 4.1 10 10 2.0 180 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.47644E7 -3.9 -3.9 100 101200 222 1374 267 75 0 75 7369 0 7422 2304 70 3.6 10 10 2.0 180 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.4768E7 -3.9 -3.9 100 101200 171 1374 267 67 0 67 6555 0 6600 1878 60 3.1 10 10 2.0 180 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.47716E7 -3.3 -3.3 100 101200 96 1374 270 35 0 35 3401 0 3424 1028 50 4.1 10 10 2.0 150 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.47752E7 -3.3 -3.3 100 101200 16 836 270 6 0 6 578 0 582 208 70 4.1 10 10 1.6 150 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.47788E7 -3.3 -3.3 100 101200 0 0 270 0 0 0 0 0 0 0 70 4.1 10 10 1.6 180 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.47824E7 -3.9 -3.9 100 101200 0 0 267 0 0 0 0 0 0 0 70 4.1 10 10 6.4 430 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.4786E7 -3.9 -3.9 100 101200 0 0 267 0 0 0 0 0 0 0 70 4.1 10 10 3.2 240 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.47896E7 -3.9 -3.9 100 101300 0 0 267 0 0 0 0 0 0 0 70 3.1 10 10 3.2 240 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.47932E7 -4.4 -4.4 100 101300 0 0 264 0 0 0 0 0 0 0 110 3.6 10 10 3.2 150 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.47968E7 -4.4 -4.4 100 101300 0 0 264 0 0 0 0 0 0 0 80 4.1 10 10 8.0 400 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.48004E7 -4.4 -4.4 100 101300 0 0 264 0 0 0 0 0 0 0 70 5.2 10 10 6.4 610 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.4804E7 -4.4 -4.4 100 101300 0 0 264 0 0 0 0 0 0 0 90 4.1 10 10 4.8 460 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.48076E7 -4.4 -4.4 100 101400 0 0 264 0 0 0 0 0 0 0 70 4.1 10 10 4.8 370 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.48112E7 -3.9 -3.9 100 101300 0 0 267 0 0 0 0 0 0 0 70 6.7 10 10 4.0 180 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.48148E7 -3.9 -3.9 100 101400 0 0 267 0 0 0 0 0 0 0 80 6.7 10 10 4.0 180 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.48184E7 -3.9 -3.9 100 101400 0 0 267 0 0 0 0 0 0 0 70 6.7 10 10 4.0 150 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.4822E7 -3.9 -3.9 100 101400 0 0 267 0 0 0 0 0 0 0 80 7.2 10 10 8.0 180 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.48256E7 -4.4 -4.4 100 101400 0 0 264 0 0 0 0 0 0 0 80 6.7 10 10 8.0 180 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.48292E7 -5.0 -5.0 100 101500 12 195 261 2 0 2 0 0 0 0 70 6.2 10 10 11.3 180 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.48328E7 -5.0 -5.0 100 101500 56 1375 261 22 0 22 2130 0 2144 636 70 6.7 10 10 11.3 240 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.48364E7 -5.0 -5.0 100 101500 136 1375 261 52 0 52 5071 0 5106 1451 60 8.2 10 10 11.3 310 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.484E7 -4.4 -4.4 100 101500 197 1375 264 86 0 86 8431 0 8491 2240 70 6.7 10 10 4.8 210 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.48436E7 -4.4 -4.4 100 101600 231 1375 264 108 0 108 10620 0 10696 2722 60 7.7 10 10 4.8 310 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.48472E7 -5.0 -5.0 100 101600 237 1375 261 110 1 110 11669 47 11724 2800 70 7.2 10 10 8.0 310 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.48508E7 -5.6 -5.6 100 101900 213 1375 259 100 0 100 9822 0 9892 2510 60 6.7 10 10 11.3 310 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.48544E7 -5.6 -5.6 100 101600 162 1375 259 67 0 67 6552 0 6598 1817 40 6.2 10 10 11.3 310 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.4858E7 -6.1 -6.1 100 101700 88 1375 256 37 0 37 3595 0 3619 1015 60 7.7 10 10 11.3 310 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.48616E7 -6.7 -6.7 100 101700 12 699 253 8 0 8 771 0 776 250 50 7.7 10 10 11.3 310 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.48652E7 -6.7 -6.7 100 101700 0 0 253 0 0 0 0 0 0 0 50 7.7 10 10 11.3 340 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.48688E7 -6.7 -6.7 100 101800 0 0 253 0 0 0 0 0 0 0 50 8.8 10 10 11.3 310 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.48724E7 -6.7 -6.7 100 101800 0 0 253 0 0 0 0 0 0 0 50 8.2 10 10 11.3 460 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.4876E7 -6.1 -6.1 100 101800 0 0 256 0 0 0 0 0 0 0 50 7.7 10 10 11.3 370 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.48796E7 -6.1 -6.1 100 101900 0 0 256 0 0 0 0 0 0 0 50 7.2 10 10 11.3 430 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.48832E7 -6.1 -6.1 100 101900 0 0 256 0 0 0 0 0 0 0 60 7.2 10 10 11.3 490 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.48868E7 -6.1 -6.1 100 102000 0 0 256 0 0 0 0 0 0 0 60 7.7 10 10 11.3 270 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.48904E7 -5.6 -5.6 100 102000 0 0 259 0 0 0 0 0 0 0 60 8.2 10 10 11.3 270 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.4894E7 -5.6 -5.6 100 102000 0 0 259 0 0 0 0 0 0 0 60 7.7 10 10 11.3 270 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.48976E7 -5.6 -5.6 100 102100 0 0 259 0 0 0 0 0 0 0 50 8.8 10 10 11.3 270 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.49012E7 -5.6 -5.6 100 102100 0 0 259 0 0 0 0 0 0 0 60 8.2 10 10 11.3 270 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.49048E7 -6.1 -6.1 100 102200 0 0 256 0 0 0 0 0 0 0 60 7.7 10 10 11.3 270 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.49084E7 -6.7 -6.7 100 102200 0 0 235 0 0 0 0 0 0 0 60 7.7 7 6 11.3 1830 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.4912E7 -7.2 -7.2 100 102200 0 0 232 0 0 0 0 0 0 0 60 8.2 8 6 11.3 1830 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.49156E7 -7.2 -7.2 100 102300 6 80 251 1 0 1 0 0 0 0 60 9.3 10 10 4.8 370 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.49192E7 -7.2 -7.2 100 102400 48 1376 251 14 0 14 1355 0 1364 457 70 8.8 10 10 4.8 310 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.49228E7 -6.7 -6.7 100 102400 128 1376 253 45 0 45 4387 0 4417 1310 60 9.3 10 10 3.2 240 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.49264E7 -7.2 -7.2 100 102500 188 1376 251 64 0 64 6273 0 6317 1924 70 10.3 10 10 3.2 270 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.493E7 -7.2 -7.2 100 102500 223 1376 251 79 1 79 8571 32 8604 2361 60 8.8 10 10 3.2 270 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.49336E7 -6.7 -6.7 100 102600 228 1376 253 79 0 79 7771 0 7826 2400 60 7.7 10 10 3.2 270 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.49372E7 -7.2 -7.2 100 102600 204 1376 251 70 1 70 7617 26 7645 2122 60 8.2 10 10 3.2 240 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.49408E7 -7.8 -7.8 100 102700 153 1376 248 52 0 52 5083 0 5119 1564 60 8.2 10 10 4.0 210 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.49444E7 -9.4 -9.4 100 102700 80 1376 226 27 19 26 2968 0 2866 804 50 7.7 8 7 11.3 240 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.4948E7 -10.6 -10.6 100 102700 8 585 218 4 3 4 0 0 0 0 60 6.7 7 6 11.3 3660 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.49516E7 -10.6 -10.6 100 102700 0 0 235 0 0 0 0 0 0 0 60 7.7 10 10 11.3 240 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.49552E7 -10.6 -10.6 100 102800 0 0 235 0 0 0 0 0 0 0 60 7.2 10 10 11.3 210 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.49588E7 -10.0 -10.0 100 102800 0 0 238 0 0 0 0 0 0 0 60 7.2 10 10 8.0 210 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.49624E7 -8.9 -8.9 100 102800 0 0 243 0 0 0 0 0 0 0 60 6.7 10 10 11.3 240 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.4966E7 -7.8 -7.8 100 102800 0 0 248 0 0 0 0 0 0 0 70 7.2 10 10 11.3 370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.49696E7 -7.8 -7.8 100 102900 0 0 248 0 0 0 0 0 0 0 80 7.2 10 10 11.3 340 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.49732E7 -8.3 -8.3 100 102900 0 0 246 0 0 0 0 0 0 0 70 6.2 10 10 11.3 340 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.49768E7 -8.3 -8.3 100 102900 0 0 246 0 0 0 0 0 0 0 50 6.2 10 10 11.3 310 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.49804E7 -8.9 -8.9 100 102900 0 0 243 0 0 0 0 0 0 0 70 5.7 10 10 11.3 310 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.4984E7 -9.4 -9.4 100 102900 0 0 241 0 0 0 0 0 0 0 60 6.7 10 10 11.3 310 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.49876E7 -10.0 -10.0 100 102900 0 0 238 0 0 0 0 0 0 0 50 5.7 10 10 11.3 180 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.49912E7 -10.0 -10.0 100 102900 0 0 238 0 0 0 0 0 0 0 60 5.7 10 10 11.3 210 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.49948E7 -10.0 -10.0 100 102900 0 0 238 0 0 0 0 0 0 0 90 6.2 10 10 11.3 270 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.49984E7 -10.6 -11.1 96 102900 0 0 235 0 0 0 0 0 0 0 70 6.7 10 10 11.3 310 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.5002E7 -10.6 -11.1 96 102900 0 0 235 0 0 0 0 0 0 0 60 7.7 10 10 11.3 310 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.50056E7 -11.7 -11.7 100 102900 41 1342 230 7 2 7 821 0 821 256 60 7.2 10 10 4.8 310 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.50092E7 -12.8 -12.8 100 102900 120 1377 226 30 5 29 3356 0 3252 970 60 8.2 10 10 4.8 310 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.50128E7 -13.9 -13.9 100 102900 180 1377 205 100 154 78 10656 4339 8347 2034 60 7.7 8 6 4.8 310 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.50164E7 -14.4 -14.4 100 102900 214 1377 199 99 125 78 10723 3959 8481 2292 50 5.7 6 4 11.3 310 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.502E7 -15.0 -15.0 100 102800 220 1377 195 121 322 67 13310 8682 7396 2145 60 6.7 6 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.50236E7 -14.4 -14.4 100 102800 196 1377 198 114 320 65 12445 7315 7121 1993 60 6.2 6 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.50272E7 -13.9 -13.9 100 102700 145 1377 201 67 181 46 7339 610 5055 1420 60 6.2 6 4 11.3 2740 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.50308E7 -12.8 -12.8 100 102700 71 1377 207 30 109 23 3310 0 2544 719 70 7.2 6 5 11.3 2740 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.50344E7 -13.3 -13.3 100 102600 18 470 207 3 17 2 0 0 0 0 60 6.2 7 6 11.3 2740 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.5038E7 -12.8 -12.8 100 102600 0 0 215 0 0 0 0 0 0 0 60 7.2 8 8 11.3 2740 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.50416E7 -12.8 -12.8 100 102600 0 0 215 0 0 0 0 0 0 0 50 6.7 8 8 11.3 2740 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.50452E7 -12.8 -12.8 100 102500 0 0 215 0 0 0 0 0 0 0 50 6.2 8 8 11.3 2740 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.50488E7 -12.2 -12.2 100 102500 0 0 222 0 0 0 0 0 0 0 60 6.7 10 9 11.3 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.50524E7 -12.2 -12.2 100 102500 0 0 222 0 0 0 0 0 0 0 60 5.2 10 9 11.3 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.5056E7 -11.1 -11.7 96 102400 0 0 221 0 0 0 0 0 0 0 50 5.7 10 8 11.3 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.50596E7 -11.1 -11.1 100 102400 0 0 222 0 0 0 0 0 0 0 60 6.2 10 8 11.3 1830 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.50632E7 -11.1 -11.7 96 102400 0 0 232 0 0 0 0 0 0 0 60 5.2 10 10 11.3 2440 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.50668E7 -10.6 -11.7 92 102400 0 0 220 0 0 0 0 0 0 0 60 6.7 8 7 11.3 2440 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.50704E7 -11.1 -11.1 100 102400 0 0 218 0 0 0 0 0 0 0 50 6.2 8 7 11.3 2440 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.5074E7 -11.1 -11.7 96 102400 0 0 218 0 0 0 0 0 0 0 60 7.2 9 7 11.3 2440 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.50776E7 -11.7 -12.8 92 102400 0 0 215 0 0 0 0 0 0 0 60 6.2 8 7 11.3 2440 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.50812E7 -12.2 -12.8 96 102400 0 0 211 0 0 0 0 0 0 0 70 5.2 7 6 11.3 2440 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.50848E7 -12.8 -12.8 100 102400 0 0 209 0 0 0 0 0 0 0 80 4.6 7 6 11.3 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.50884E7 -12.8 -12.8 100 102400 0 0 209 0 0 0 0 0 0 0 60 4.6 7 6 11.3 1830 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.5092E7 -13.9 -13.9 100 102400 34 1228 200 13 45 11 1458 0 1236 360 50 4.1 6 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.50956E7 -13.9 -13.9 100 102400 112 1377 200 57 149 44 6127 0 4746 1211 60 4.6 6 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.50992E7 -13.3 -13.3 100 102400 172 1377 202 97 253 63 10481 4587 6833 1813 60 5.2 7 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.51028E7 -13.3 -13.3 100 102400 206 1377 202 116 291 70 12631 7702 7650 2121 50 5.2 7 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.51064E7 -13.9 -13.9 100 102400 211 1377 201 112 272 68 12259 7141 7469 2120 60 4.6 6 4 11.3 3050 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.511E7 -13.9 -13.9 100 102500 187 1377 201 97 125 79 10373 3701 8483 2120 70 5.2 6 4 11.3 6100 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.51136E7 -14.4 -14.4 100 102500 136 1377 198 71 228 46 7740 441 5031 1382 70 4.1 4 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.51172E7 -14.4 -14.4 100 102500 63 1377 198 24 91 19 2670 0 2119 612 60 3.6 4 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.51208E7 -15.0 -15.0 100 102500 12 356 195 2 13 1 0 0 0 0 70 3.1 4 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.51244E7 -15.0 -15.0 100 102500 0 0 195 0 0 0 0 0 0 0 80 3.1 5 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.5128E7 -15.0 -15.0 100 102600 0 0 197 0 0 0 0 0 0 0 70 3.1 5 4 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.51316E7 -15.0 -15.0 100 102600 0 0 200 0 0 0 0 0 0 0 80 3.1 8 6 11.3 6100 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.51352E7 -15.0 -15.0 100 102600 0 0 216 0 0 0 0 0 0 0 90 3.6 10 10 11.3 180 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.51388E7 -13.9 -13.9 100 102600 0 0 221 0 0 0 0 0 0 0 90 4.1 10 10 11.3 180 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.51424E7 -14.4 -14.4 100 102700 0 0 219 0 0 0 0 0 0 0 110 4.6 10 10 11.3 150 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.5146E7 -13.9 -13.9 100 102700 0 0 221 0 0 0 0 0 0 0 100 5.2 10 10 11.3 150 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.51496E7 -14.4 -14.4 100 102700 0 0 219 0 0 0 0 0 0 0 100 3.6 10 10 11.3 150 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.51532E7 -14.4 -14.4 100 102800 0 0 203 0 0 0 0 0 0 0 90 2.1 10 6 11.3 150 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.51568E7 -13.3 -13.3 100 102800 0 0 209 0 0 0 0 0 0 0 90 2.1 10 7 11.3 310 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.51604E7 -12.8 -12.8 100 102800 0 0 219 0 0 0 0 0 0 0 90 3.1 10 9 11.3 370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.5164E7 -12.2 -12.2 100 102800 0 0 228 0 0 0 0 0 0 0 100 3.1 10 10 11.3 370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.51676E7 -12.2 -12.2 100 102800 0 0 228 0 0 0 0 0 0 0 110 2.1 10 10 11.3 340 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.51712E7 -11.1 -11.1 100 102800 0 0 233 0 0 0 0 0 0 0 120 3.1 10 10 11.3 340 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.51748E7 -11.1 -11.1 100 102900 0 0 233 0 0 0 0 0 0 0 110 3.6 10 10 11.3 370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.51784E7 -10.6 -10.6 100 102900 28 1137 235 10 8 10 1120 0 1122 325 140 3.1 10 10 4.8 400 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.5182E7 -11.1 -11.1 100 102900 104 1378 233 30 4 30 3310 0 3319 948 130 3.6 10 10 11.3 520 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.51856E7 -11.1 -11.1 100 103000 164 1378 233 45 1 45 4979 5 4994 1462 160 3.6 10 10 8.0 610 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.51892E7 -10.6 -10.6 100 103000 198 1378 235 71 5 70 7699 126 7619 2071 160 3.1 10 10 6.4 640 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.51928E7 -10.6 -10.6 100 103000 203 1378 235 81 3 80 8708 93 8636 2242 140 3.1 10 10 11.3 640 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.51964E7 -10.6 -10.6 100 103000 179 1378 235 69 0 69 6763 0 6810 1949 150 3.1 10 10 11.3 610 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.52E7 -11.1 -11.1 100 103000 128 1378 233 44 1 44 4788 0 4804 1310 150 2.6 10 10 11.3 700 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.52036E7 -11.1 -11.1 100 103100 55 1378 222 25 54 23 2715 0 2505 666 160 2.1 9 8 11.3 700 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.52072E7 -12.2 -12.2 100 103100 30 241 209 5 20 3 0 0 0 0 160 2.6 7 5 11.3 2440 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.52108E7 -13.3 -13.3 100 103100 0 0 213 0 0 0 0 0 0 0 180 3.6 9 8 11.3 980 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.52144E7 -13.9 -14.4 96 103100 0 0 202 0 0 0 0 0 0 0 130 2.6 7 5 11.3 2440 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.5218E7 -13.9 -14.4 96 103100 0 0 202 0 0 0 0 0 0 0 220 2.6 7 5 8.0 2440 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.52216E7 -15.6 -16.1 96 103100 0 0 193 0 0 0 0 0 0 0 190 3.6 5 3 4.8 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.52252E7 -18.3 -19.4 90 103200 0 0 181 0 0 0 0 0 0 0 180 3.6 3 2 1.6 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.52288E7 -19.4 -20.0 95 103200 0 0 175 0 0 0 0 0 0 0 190 2.6 1 1 4.8 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.52324E7 -16.1 -16.7 96 103200 0 0 183 0 0 0 0 0 0 0 0 0.0 0 0 9.7 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.5236E7 -15.6 -15.6 100 103200 0 0 185 0 0 0 0 0 0 0 0 0.0 0 0 9.7 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.52396E7 -15.6 -15.6 100 103200 0 0 185 0 0 0 0 0 0 0 0 0.0 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.52432E7 -16.7 -16.7 100 103200 0 0 181 0 0 0 0 0 0 0 100 2.6 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.52468E7 -16.7 -16.7 100 103300 0 0 181 0 0 0 0 0 0 0 100 2.6 0 0 2.4 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.52504E7 -17.8 -17.8 100 103300 0 0 188 0 0 0 0 0 0 0 90 3.1 5 5 1.6 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.5254E7 -18.3 -18.3 100 103200 0 0 186 0 0 0 0 0 0 0 110 3.1 5 5 1.6 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.52576E7 -18.3 -18.3 100 103200 0 0 190 0 0 0 0 0 0 0 100 3.1 7 7 4.8 520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.52612E7 -12.8 -12.8 100 103200 0 0 226 0 0 0 0 0 0 0 110 3.1 10 10 11.3 550 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.52648E7 -11.7 -11.7 100 103200 22 1023 230 4 3 4 477 0 477 148 110 3.1 10 10 11.3 550 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.52684E7 -10.6 -10.6 100 103200 96 1379 235 17 5 17 1953 0 1956 609 110 3.6 10 10 11.3 490 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.5272E7 -10.0 -10.0 100 103200 156 1379 238 48 4 48 5259 22 5276 1489 90 4.1 10 10 11.3 490 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.52756E7 -8.9 -8.9 100 103200 189 1379 236 79 95 65 8585 1998 7089 1947 90 6.2 10 9 11.3 460 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.52792E7 -11.7 -11.7 100 103200 194 1379 200 109 402 48 12184 5159 5381 1637 100 8.8 2 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.52828E7 -13.3 -13.3 100 103200 171 1379 194 93 360 44 10358 2343 4915 1470 90 6.2 2 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.52864E7 -13.9 -13.9 100 103200 120 1379 200 60 95 51 6415 309 5474 1356 90 6.7 8 3 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.529E7 -13.3 -13.3 100 103100 47 1379 205 16 40 14 1797 0 1575 463 100 6.2 8 5 11.3 180 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.52936E7 -14.4 -14.4 100 103000 12 103 198 2 2 2 0 0 0 0 110 6.2 7 3 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.52972E7 -14.4 -14.4 100 103000 0 0 198 0 0 0 0 0 0 0 90 6.2 5 3 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.53008E7 -15.0 -15.0 100 102900 0 0 195 0 0 0 0 0 0 0 90 6.7 4 3 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.53044E7 -15.0 -15.0 100 102800 0 0 195 0 0 0 0 0 0 0 90 6.7 4 3 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.5308E7 -15.0 -15.0 100 102800 0 0 193 0 0 0 0 0 0 0 90 7.2 2 2 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.53116E7 -15.0 -15.0 100 102800 0 0 193 0 0 0 0 0 0 0 90 6.2 2 2 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.53152E7 -15.6 -15.6 100 102700 0 0 185 0 0 0 0 0 0 0 90 6.2 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.53188E7 -15.0 -15.0 100 102600 0 0 187 0 0 0 0 0 0 0 90 7.2 2 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.53224E7 -14.4 -14.4 100 102500 0 0 189 0 0 0 0 0 0 0 100 7.7 2 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.5326E7 -13.3 -13.3 100 102400 0 0 197 0 0 0 0 0 0 0 60 7.7 4 1 4.8 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.53296E7 -12.8 -12.8 100 102300 0 0 199 0 0 0 0 0 0 0 80 8.2 4 1 4.8 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.53332E7 -12.2 -12.2 100 102200 0 0 202 0 0 0 0 0 0 0 80 6.7 3 1 4.8 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.53368E7 -10.0 -10.0 100 102100 0 0 220 0 0 0 0 0 0 0 80 6.7 10 6 4.8 120 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.53404E7 -9.4 -9.4 100 102100 0 0 221 0 0 0 0 0 0 0 80 8.8 10 5 3.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.5344E7 -9.4 -9.4 100 102000 0 0 221 0 0 0 0 0 0 0 60 7.7 10 5 3.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.53476E7 -9.4 -9.4 100 101900 0 0 218 0 0 0 0 0 0 0 50 7.7 8 3 3.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.53512E7 -9.4 -9.4 100 101800 17 908 221 6 12 5 697 0 581 177 70 7.7 10 5 3.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.53548E7 -9.4 -9.4 100 101800 89 1380 229 22 17 21 2470 0 2363 705 60 7.2 10 8 11.3 210 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.53584E7 -10.6 -10.6 100 101700 148 1380 211 64 142 47 6993 505 5152 1435 60 6.7 6 2 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.5362E7 -10.6 -10.6 100 101600 181 1380 216 85 97 71 9133 2304 7659 1976 60 6.7 10 5 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.53656E7 -10.0 -10.0 100 101500 186 1380 218 97 137 77 10379 3801 8273 2082 50 7.2 10 5 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.53692E7 -8.9 -8.9 100 101400 162 1380 221 74 35 69 7898 714 7394 1828 60 7.7 10 4 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.53728E7 -8.9 -9.4 96 101300 111 1380 225 54 36 51 5738 61 5441 1298 60 8.2 10 6 11.3 6100 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.53764E7 -9.4 -9.4 100 101300 39 1368 223 10 8 10 1144 0 1145 347 50 6.2 10 6 11.3 6100 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.538E7 -9.4 -9.4 100 101300 0 0 226 0 0 0 0 0 0 0 60 6.7 10 7 11.3 6100 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.53836E7 -8.9 -9.4 96 101200 0 0 227 0 0 0 0 0 0 0 60 6.7 10 7 11.3 6100 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.53872E7 -9.4 -10.0 96 101200 0 0 225 0 0 0 0 0 0 0 60 7.2 10 7 11.3 6100 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.53908E7 -9.4 -10.0 96 101200 0 0 229 0 0 0 0 0 0 0 70 7.7 10 8 11.3 6100 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.53944E7 -9.4 -10.6 92 101200 0 0 228 0 0 0 0 0 0 0 60 6.2 10 8 11.3 2740 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.5398E7 -9.4 -10.6 92 101200 0 0 228 0 0 0 0 0 0 0 60 6.7 10 8 11.3 2440 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.54016E7 -9.4 -10.0 96 101200 0 0 234 0 0 0 0 0 0 0 70 5.2 10 9 11.3 2440 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.54052E7 -9.4 -10.0 96 101200 0 0 229 0 0 0 0 0 0 0 60 8.2 10 8 4.8 2440 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.54088E7 -9.4 -10.0 96 101200 0 0 229 0 0 0 0 0 0 0 60 7.7 10 8 4.8 180 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.54124E7 -9.4 -9.4 100 101200 0 0 241 0 0 0 0 0 0 0 70 7.2 10 10 4.8 180 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.5416E7 -9.4 -9.4 100 101200 0 0 241 0 0 0 0 0 0 0 70 6.7 10 10 4.8 180 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.54196E7 -9.4 -9.4 100 101300 0 0 241 0 0 0 0 0 0 0 80 7.2 10 10 4.8 210 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.54232E7 -8.9 -8.9 100 101300 0 0 243 0 0 0 0 0 0 0 70 7.2 10 10 4.8 210 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.54268E7 -8.9 -10.0 92 101400 0 0 242 0 0 0 0 0 0 0 80 7.7 10 10 8.0 240 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.54304E7 -8.9 -10.0 92 101400 0 0 242 0 0 0 0 0 0 0 80 6.2 10 10 8.0 240 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.5434E7 -8.9 -10.0 92 101400 0 0 242 0 0 0 0 0 0 0 70 7.2 10 10 11.3 210 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.54376E7 -8.9 -9.4 96 101500 13 794 243 0 0 0 0 0 0 0 80 8.2 10 10 6.4 210 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.54412E7 -8.3 -8.9 96 101600 81 1381 245 19 0 19 1845 0 1857 640 70 8.8 10 10 4.0 180 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.54448E7 -8.3 -8.9 96 101600 140 1381 245 51 4 50 5516 17 5427 1444 80 8.2 10 10 1.6 180 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.54484E7 -7.8 -8.3 96 101700 173 1381 248 44 2 44 4899 12 4913 1472 80 7.2 10 10 2.4 180 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.5452E7 -7.8 -7.8 100 101700 178 1381 248 49 0 49 4800 0 4833 1602 80 7.7 10 10 1.6 180 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.54556E7 -6.7 -7.2 96 101800 154 1381 253 58 1 58 6252 12 6275 1648 80 7.2 10 10 1.6 180 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.54592E7 -6.1 -6.1 100 101800 103 1381 256 30 0 30 2919 0 2938 955 80 7.7 10 10 1.6 150 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.54628E7 -6.1 -6.1 100 101800 32 1254 256 9 0 9 870 0 876 311 80 8.2 10 10 2.4 150 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.54664E7 -5.6 -6.1 96 101800 0 0 258 0 0 0 0 0 0 0 70 8.8 10 10 2.4 490 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.547E7 -5.6 -6.1 96 101900 0 0 258 0 0 0 0 0 0 0 80 8.8 10 10 4.8 180 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.54736E7 -5.6 -6.1 96 101900 0 0 258 0 0 0 0 0 0 0 90 8.2 10 10 6.4 150 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.54772E7 -5.6 -5.6 100 101900 0 0 259 0 0 0 0 0 0 0 80 8.2 10 10 4.8 150 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.54808E7 -5.0 -5.6 96 101900 0 0 261 0 0 0 0 0 0 0 70 8.8 10 10 2.4 150 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.54844E7 -5.0 -5.6 96 101900 0 0 261 0 0 0 0 0 0 0 100 9.8 10 10 2.4 150 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.5488E7 -5.0 -5.6 96 101900 0 0 261 0 0 0 0 0 0 0 100 8.8 10 10 1.6 150 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.54916E7 -5.0 -5.6 96 101900 0 0 261 0 0 0 0 0 0 0 90 8.8 10 10 1.6 150 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.54952E7 -4.4 -5.0 96 101900 0 0 264 0 0 0 0 0 0 0 80 8.8 10 10 1.6 150 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.54988E7 -4.4 -5.0 96 101900 0 0 264 0 0 0 0 0 0 0 90 8.8 10 10 1.6 150 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.55024E7 -3.9 -4.4 96 101800 0 0 266 0 0 0 0 0 0 0 90 8.2 10 10 4.8 150 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.5506E7 -4.4 -5.0 96 101800 0 0 264 0 0 0 0 0 0 0 80 9.3 10 10 1.6 150 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.55096E7 -4.4 -5.0 96 101700 0 0 264 0 0 0 0 0 0 0 90 9.3 10 10 4.8 150 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.55132E7 -4.4 -5.0 96 101800 0 0 264 0 0 0 0 0 0 0 90 8.8 10 10 4.8 150 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.55168E7 -5.0 -5.6 96 101800 0 0 261 0 0 0 0 0 0 0 80 9.3 10 10 4.8 150 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.55204E7 -5.0 -5.6 96 101800 0 0 261 0 0 0 0 0 0 0 80 9.3 10 10 1.3 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.5524E7 -5.0 -5.6 96 101800 9 679 261 2 0 2 0 0 0 0 80 8.2 10 10 1.6 150 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.55276E7 -5.0 -5.6 96 101800 73 1381 261 28 0 28 2716 0 2734 799 80 9.3 10 10 1.6 150 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.55312E7 -5.0 -5.6 96 101800 132 1381 261 55 0 55 5362 0 5399 1455 90 9.3 10 10 3.2 150 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.55348E7 -5.0 -5.6 96 101700 165 1381 261 65 0 65 6356 0 6400 1794 80 10.3 10 10 3.2 150 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.55384E7 -5.0 -6.1 92 101700 170 1381 260 65 1 65 6993 18 7020 1831 70 8.8 10 10 8.0 150 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.5542E7 -5.6 -6.1 96 101700 146 1381 258 57 0 57 5566 0 5604 1585 80 10.3 10 10 4.8 180 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.55456E7 -5.0 -5.6 96 101700 95 1381 261 40 0 40 3888 0 3915 1084 90 10.3 10 10 2.4 180 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.55492E7 -5.0 -6.1 92 101700 26 1140 260 9 0 9 869 0 875 303 90 9.8 10 10 2.4 490 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.55528E7 -5.6 -6.7 92 101700 0 0 257 0 0 0 0 0 0 0 90 9.8 10 10 1.6 310 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.55564E7 -5.6 -6.7 92 101600 0 0 257 0 0 0 0 0 0 0 80 10.3 10 10 1.6 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.556E7 -6.1 -7.2 92 101600 0 0 255 0 0 0 0 0 0 0 70 11.3 10 10 1.6 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.55636E7 -6.7 -7.2 96 101600 0 0 253 0 0 0 0 0 0 0 80 10.3 10 10 1.6 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.55672E7 -6.7 -7.2 96 101600 0 0 253 0 0 0 0 0 0 0 80 10.8 10 10 1.6 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.55708E7 -6.7 -7.8 92 101500 0 0 252 0 0 0 0 0 0 0 80 10.3 10 10 1.6 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.55744E7 -6.7 -7.2 96 101500 0 0 253 0 0 0 0 0 0 0 80 10.8 10 10 1.6 310 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.5578E7 -6.7 -7.2 96 101500 0 0 253 0 0 0 0 0 0 0 70 12.9 10 10 1.6 240 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.55816E7 -6.1 -6.7 96 101400 0 0 256 0 0 0 0 0 0 0 80 12.9 10 10 1.6 210 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.55852E7 -6.7 -6.7 100 101400 0 0 253 0 0 0 0 0 0 0 80 11.3 10 10 1.6 240 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.55888E7 -6.7 -6.7 100 101300 0 0 253 0 0 0 0 0 0 0 70 17.5 10 10 1.6 240 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.55924E7 -6.7 -7.2 96 101300 0 0 253 0 0 0 0 0 0 0 60 13.4 10 10 1.6 270 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.5596E7 -6.7 -7.2 96 101200 0 0 253 0 0 0 0 0 0 0 60 12.4 10 10 1.6 310 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.55996E7 -6.7 -7.2 96 101200 0 0 253 0 0 0 0 0 0 0 70 13.4 10 10 1.6 370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.56032E7 -6.7 -7.8 92 101200 0 0 252 0 0 0 0 0 0 0 70 11.3 10 10 1.6 370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.56068E7 -7.2 -7.8 96 101100 0 0 250 0 0 0 0 0 0 0 70 12.9 10 10 1.0 370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.56104E7 -7.2 -7.8 96 101100 6 541 250 3 0 3 0 0 0 0 70 12.4 10 10 1.0 370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.5614E7 -6.7 -7.8 92 101100 66 1382 252 23 0 23 2230 0 2245 689 60 11.8 10 10 1.6 370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.56176E7 -6.7 -7.8 92 101100 124 1382 252 52 1 52 5549 3 5571 1372 70 11.8 10 10 1.6 340 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.56212E7 -6.7 -7.2 96 101100 157 1382 253 65 0 65 6354 0 6398 1736 60 10.8 10 10 2.4 340 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.56248E7 -6.7 -7.2 96 101100 162 1382 253 59 0 59 5770 0 5810 1701 70 10.3 10 10 2.4 340 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.56284E7 -6.1 -7.2 92 101100 138 1382 255 55 0 55 5368 0 5405 1509 70 10.3 10 10 2.4 340 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.5632E7 -6.1 -7.2 92 101100 87 1382 255 33 0 33 3207 0 3228 950 70 10.8 10 10 2.4 340 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.56356E7 -6.7 -7.2 96 101100 20 1002 253 9 0 9 869 0 874 294 70 10.8 10 10 2.4 340 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.56392E7 -7.2 -7.8 96 101100 0 0 250 0 0 0 0 0 0 0 70 11.8 10 10 2.4 340 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.56428E7 -7.2 -7.8 96 101100 0 0 250 0 0 0 0 0 0 0 70 14.4 10 10 2.4 340 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.56464E7 -7.2 -7.8 96 101200 0 0 250 0 0 0 0 0 0 0 70 11.3 10 10 2.4 340 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.565E7 -7.2 -7.8 96 101200 0 0 250 0 0 0 0 0 0 0 60 12.4 10 10 2.4 340 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.56536E7 -7.2 -7.8 96 101100 0 0 250 0 0 0 0 0 0 0 80 12.4 10 10 2.4 340 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.56572E7 -7.2 -7.8 96 101100 0 0 250 0 0 0 0 0 0 0 70 10.8 10 10 2.4 340 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.56608E7 -7.2 -7.8 96 101100 0 0 250 0 0 0 0 0 0 0 70 11.3 10 10 2.4 340 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.56644E7 -7.2 -7.8 96 101100 0 0 250 0 0 0 0 0 0 0 60 12.4 10 10 2.4 340 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.5668E7 -7.8 -8.3 96 101100 0 0 248 0 0 0 0 0 0 0 60 12.9 10 10 2.4 370 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.56716E7 -8.3 -8.9 96 101100 0 0 245 0 0 0 0 0 0 0 60 12.9 10 10 2.4 370 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.56752E7 -8.3 -8.9 96 101100 0 0 245 0 0 0 0 0 0 0 70 12.4 10 10 2.4 400 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.56788E7 -8.9 -9.4 96 101000 0 0 243 0 0 0 0 0 0 0 70 12.9 10 10 1.6 400 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.56824E7 -9.4 -9.4 100 101000 0 0 241 0 0 0 0 0 0 0 70 12.9 10 10 1.6 370 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.5686E7 -8.9 -9.4 96 101000 0 0 243 0 0 0 0 0 0 0 70 12.4 10 10 1.6 370 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.56896E7 -8.9 -9.4 96 101000 0 0 243 0 0 0 0 0 0 0 60 11.8 10 10 1.6 370 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.56932E7 -8.9 -9.4 96 101000 0 0 231 0 0 0 0 0 0 0 70 12.9 8 8 1.3 430 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.56968E7 -8.9 -10.0 92 101000 6 426 227 1 2 1 0 0 0 0 60 12.4 7 7 1.3 460 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.57004E7 -9.4 -10.0 96 101000 58 1383 222 24 3 24 2594 0 2602 678 60 12.4 6 6 1.3 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.5704E7 -9.4 -10.6 92 101000 116 1383 222 52 87 44 5602 0 4757 1232 70 10.8 6 6 1.3 370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.57076E7 -10.0 -11.1 92 101100 149 1383 226 51 42 46 5588 134 5056 1424 60 13.4 8 8 1.3 370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.57112E7 -10.0 -11.1 92 101100 154 1383 226 56 32 52 6091 264 5676 1553 60 12.9 8 8 1.6 2740 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.57148E7 -10.6 -11.7 92 101100 130 1383 223 48 46 44 5225 0 4805 1312 60 12.9 8 8 1.6 3660 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.57184E7 -11.7 -12.8 92 101100 79 1383 218 23 6 23 2552 0 2558 738 50 11.8 10 8 1.6 3050 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.5722E7 -11.7 -12.8 92 101100 15 887 218 7 2 7 794 0 795 235 50 12.4 10 8 2.4 3050 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.57256E7 -12.2 -13.3 92 101200 0 0 210 0 0 0 0 0 0 0 60 12.9 10 6 2.4 3050 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.57292E7 -12.8 -13.3 96 101200 0 0 211 0 0 0 0 0 0 0 50 11.3 10 7 2.4 3050 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.57328E7 -12.8 -13.9 91 101300 0 0 208 0 0 0 0 0 0 0 50 10.3 10 6 2.4 3050 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.57364E7 -12.8 -14.4 87 101300 0 0 208 0 0 0 0 0 0 0 40 9.8 10 6 2.4 6100 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.574E7 -13.3 -14.4 91 101300 0 0 201 0 0 0 0 0 0 0 50 10.3 4 3 2.4 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.57436E7 -13.3 -14.4 91 101400 0 0 196 0 0 0 0 0 0 0 50 9.8 3 1 2.4 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.57472E7 -13.3 -13.9 96 101400 0 0 200 0 0 0 0 0 0 0 40 11.8 5 2 2.4 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.57508E7 -13.9 -13.9 100 101500 0 0 203 0 0 0 0 0 0 0 50 9.3 7 5 2.4 6100 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.57544E7 -13.9 -14.4 96 101500 0 0 210 0 0 0 0 0 0 0 60 9.3 8 8 1.3 6100 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.5758E7 -14.4 -15.0 96 101500 0 0 212 0 0 0 0 0 0 0 50 10.8 10 9 1.3 6100 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.57616E7 -14.4 -14.4 100 101600 0 0 219 0 0 0 0 0 0 0 50 10.8 10 10 1.3 6100 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.57652E7 -14.4 -14.4 100 101600 0 0 219 0 0 0 0 0 0 0 50 10.3 10 10 1.3 6100 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.57688E7 -14.4 -15.6 91 101600 0 0 218 0 0 0 0 0 0 0 50 9.3 10 10 1.3 6100 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.57724E7 -13.9 -15.0 91 101700 0 0 197 0 0 0 0 0 0 0 50 9.8 4 2 4.8 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.5776E7 -13.9 -15.6 87 101700 0 0 201 0 0 0 0 0 0 0 50 9.3 5 5 4.8 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.57796E7 -13.9 -14.4 96 101700 0 0 204 0 0 0 0 0 0 0 40 9.3 7 6 4.8 370 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.57832E7 -15.0 -15.0 100 101800 12 311 203 2 5 2 0 0 0 0 50 8.8 8 7 2.4 340 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.57868E7 -15.0 -15.0 100 101800 51 1384 200 14 55 12 1591 0 1366 411 50 7.7 7 6 2.4 340 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.57904E7 -15.6 -16.1 96 101800 108 1384 193 50 180 35 5465 0 3837 1058 50 8.2 4 3 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.5794E7 -15.6 -16.1 96 101800 141 1384 193 72 229 47 7843 714 5137 1406 40 8.8 4 3 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.57976E7 -15.6 -15.6 100 101800 146 1384 191 78 268 47 8523 1065 5152 1431 40 8.8 3 2 2.4 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.58012E7 -15.6 -15.6 100 101800 122 1384 193 64 249 39 7005 0 4282 1191 40 7.7 4 3 2.4 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.58048E7 -15.6 -16.1 96 101700 72 1384 194 24 99 18 2700 0 2029 604 40 8.2 5 4 1.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.58084E7 -16.1 -16.7 96 101700 11 750 192 6 54 4 705 0 470 144 40 7.7 5 4 1.6 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.5812E7 -16.7 -17.2 96 101700 0 0 190 0 0 0 0 0 0 0 50 6.7 5 4 1.6 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.58156E7 -16.1 -16.1 100 101700 0 0 194 0 0 0 0 0 0 0 40 8.2 6 5 2.4 310 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.58192E7 -16.7 -17.2 96 101700 0 0 193 0 0 0 0 0 0 0 40 8.2 6 6 2.4 340 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.58228E7 -17.2 -17.8 95 101700 0 0 197 0 0 0 0 0 0 0 30 7.7 8 8 2.4 310 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.58264E7 -17.2 -17.2 100 101700 0 0 197 0 0 0 0 0 0 0 30 7.7 8 8 2.4 240 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.583E7 -16.7 -17.2 96 101700 0 0 209 0 0 0 0 0 0 0 40 7.7 10 10 2.4 270 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.58336E7 -17.2 -17.2 100 101700 0 0 197 0 0 0 0 0 0 0 10 7.2 8 8 2.4 270 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.58372E7 -17.2 -17.2 100 101700 0 0 207 0 0 0 0 0 0 0 10 9.3 10 10 2.4 270 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.58408E7 -17.2 -17.2 100 101700 0 0 194 0 0 0 0 0 0 0 20 8.2 7 7 2.4 240 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.58444E7 -16.7 -17.2 96 101700 0 0 199 0 0 0 0 0 0 0 30 8.8 8 8 2.4 270 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.5848E7 -16.7 -17.8 91 101600 0 0 198 0 0 0 0 0 0 0 30 8.2 8 8 2.4 270 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.58516E7 -16.1 -17.2 91 101600 0 0 205 0 0 0 0 0 0 0 20 8.2 9 9 2.4 240 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.58552E7 -16.7 -17.8 91 101600 0 0 208 0 0 0 0 0 0 0 30 9.3 10 10 2.4 310 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.58588E7 -17.2 -17.8 95 101600 0 0 207 0 0 0 0 0 0 0 40 7.7 10 10 2.4 340 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.58624E7 -17.8 -18.3 96 101500 0 0 204 0 0 0 0 0 0 0 50 9.3 10 10 2.4 310 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.5866E7 -17.8 -18.3 96 101500 0 0 204 0 0 0 0 0 0 0 50 8.8 10 10 2.4 310 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.58696E7 -18.3 -18.3 100 101500 1 173 203 0 0 0 0 0 0 0 40 8.2 10 10 2.4 310 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.58732E7 -15.6 -17.8 83 101500 44 1385 212 10 2 10 1145 0 1146 348 40 7.7 10 10 1.6 310 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.58768E7 -16.7 -19.4 79 101500 100 1385 194 37 15 35 4023 0 3818 1026 30 7.7 10 7 2.0 310 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.58804E7 -16.7 -18.3 87 101400 133 1385 195 60 29 57 6400 282 6104 1487 40 9.3 10 7 2.0 310 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.5884E7 -15.6 -17.8 83 101400 138 1385 198 53 62 46 5776 130 5030 1378 30 7.7 10 7 2.0 340 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.58876E7 -15.6 -17.8 83 101300 114 1385 198 36 18 34 3966 0 3756 1067 40 8.8 10 7 2.0 340 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.58912E7 -16.1 -18.3 83 101300 64 1385 196 18 7 18 2012 0 2016 589 40 8.8 10 7 2.0 340 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.58948E7 -16.1 -18.3 83 101300 7 635 196 1 3 1 0 0 0 0 40 9.8 10 7 2.0 310 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.58984E7 -16.7 -18.9 83 101300 0 0 194 0 0 0 0 0 0 0 50 9.3 10 7 2.0 310 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.5902E7 -16.1 -17.8 87 101300 0 0 197 0 0 0 0 0 0 0 40 9.3 10 7 2.0 310 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.59056E7 -16.1 -18.3 83 101300 0 0 193 0 0 0 0 0 0 0 50 10.8 5 5 2.0 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.59092E7 -16.1 -18.3 83 101300 0 0 191 0 0 0 0 0 0 0 50 9.3 5 4 2.0 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.59128E7 -15.0 -17.2 83 101300 0 0 204 0 0 0 0 0 0 0 50 9.3 8 8 2.0 3350 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.59164E7 -15.6 -17.2 87 101300 0 0 212 0 0 0 0 0 0 0 40 8.2 10 10 2.0 3350 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.592E7 -14.4 -16.1 87 101300 0 0 204 0 0 0 0 0 0 0 50 8.8 10 7 2.0 3350 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.59236E7 -13.9 -16.1 83 101300 0 0 219 0 0 0 0 0 0 0 50 8.8 10 10 2.0 3350 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.59272E7 -13.9 -15.6 87 101300 0 0 219 0 0 0 0 0 0 0 40 7.7 10 10 2.0 3350 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.59308E7 -14.4 -16.1 87 101300 0 0 217 0 0 0 0 0 0 0 40 8.8 10 10 2.0 3050 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.59344E7 -15.6 -18.3 79 101300 0 0 211 0 0 0 0 0 0 0 40 9.3 10 10 2.0 3050 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.5938E7 -16.1 -18.3 83 101300 0 0 210 0 0 0 0 0 0 0 40 7.7 10 10 2.0 3050 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.59416E7 -15.6 -18.3 79 101300 0 0 211 0 0 0 0 0 0 0 40 8.2 10 10 2.0 3050 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.59452E7 -15.6 -17.2 87 101300 0 0 212 0 0 0 0 0 0 0 40 7.7 10 10 2.0 3050 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.59488E7 -13.9 -15.0 91 101300 0 0 220 0 0 0 0 0 0 0 40 8.8 10 10 2.0 3050 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.59524E7 -13.3 -15.0 87 101300 0 0 222 0 0 0 0 0 0 0 30 8.2 10 10 2.0 3050 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.5956E7 -12.8 -13.3 96 101300 0 58 225 0 0 0 0 0 0 0 50 7.2 10 10 6.4 2130 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.59596E7 -12.2 -13.3 92 101300 36 1385 227 11 3 11 1239 0 1241 365 50 9.3 10 10 3.2 790 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.59632E7 -12.2 -13.3 92 101300 93 1385 227 22 0 22 2140 0 2155 739 50 10.3 10 10 4.8 880 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.59668E7 -13.3 -15.0 87 101300 125 1385 222 35 2 35 3870 0 3881 1121 40 9.3 10 10 4.8 880 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.59704E7 -13.3 -15.0 87 101400 130 1385 222 46 2 46 4988 1 5005 1340 30 9.3 10 10 2.4 980 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.5974E7 -13.9 -15.6 87 101300 106 1385 219 34 2 34 3725 0 3736 1039 30 9.8 10 10 2.4 2130 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.59776E7 -15.0 -17.8 80 101400 57 1385 214 15 3 15 1689 0 1693 502 50 8.8 10 10 4.8 980 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.59812E7 -15.6 -17.8 83 101400 6 496 206 1 0 1 0 0 0 0 40 8.2 10 9 2.4 980 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.59848E7 -15.6 -18.3 79 101400 0 0 201 0 0 0 0 0 0 0 50 8.2 9 8 2.4 980 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.59884E7 -16.1 -18.9 79 101400 0 0 199 0 0 0 0 0 0 0 40 8.8 8 8 4.8 790 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.5992E7 -16.1 -18.3 83 101400 0 0 210 0 0 0 0 0 0 0 50 7.2 10 10 4.8 790 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.59956E7 -16.1 -18.3 83 101400 0 0 210 0 0 0 0 0 0 0 40 8.2 10 10 6.4 790 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.59992E7 -16.1 -18.3 83 101400 0 0 200 0 0 0 0 0 0 0 40 8.2 8 8 6.4 790 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.60028E7 -15.0 -17.2 83 101300 0 0 204 0 0 0 0 0 0 0 50 7.7 8 8 6.4 790 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.60064E7 -13.3 -15.6 84 101300 0 0 215 0 0 0 0 0 0 0 50 8.8 10 9 4.8 790 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.601E7 -13.9 -14.4 96 101300 0 0 220 0 0 0 0 0 0 0 40 7.7 10 10 4.8 270 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.60136E7 -13.3 -15.0 87 101300 0 0 222 0 0 0 0 0 0 0 30 7.7 10 10 4.8 240 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.60172E7 -13.3 -15.0 87 101300 0 0 222 0 0 0 0 0 0 0 50 6.7 10 10 4.8 240 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.60208E7 -13.3 -15.6 84 101300 0 0 221 0 0 0 0 0 0 0 30 6.7 10 10 11.3 270 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.60244E7 -13.3 -15.0 87 101300 0 0 222 0 0 0 0 0 0 0 30 7.2 10 10 11.3 880 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.6028E7 -13.3 -14.4 91 101300 0 0 222 0 0 0 0 0 0 0 40 6.7 10 10 11.3 880 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.60316E7 -13.3 -14.4 91 101200 0 0 222 0 0 0 0 0 0 0 50 6.2 10 10 11.3 460 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.60352E7 -12.8 -15.0 84 101200 0 0 217 0 0 0 0 0 0 0 60 6.7 10 9 11.3 490 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.60388E7 -12.2 -15.6 76 101200 0 0 214 0 0 0 0 0 0 0 40 6.7 8 8 11.3 550 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.60424E7 -12.8 -15.0 84 101200 0 0 213 0 0 0 0 0 0 0 360 6.2 10 8 11.3 550 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.6046E7 -12.8 -16.1 76 101200 30 1305 216 5 3 5 595 0 595 186 20 6.2 10 9 11.3 490 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.60496E7 -12.8 -15.0 84 101200 85 1386 224 24 2 24 2661 0 2667 767 360 7.7 10 10 2.4 430 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.60532E7 -12.8 -15.0 84 101100 118 1386 224 25 4 25 2828 0 2834 865 360 7.2 10 10 1.6 370 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.60568E7 -12.8 -16.7 73 101100 122 1386 222 34 1 34 3763 0 3774 1091 20 6.2 10 10 6.4 550 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.60604E7 -12.8 -15.6 80 101100 98 1386 223 24 3 24 2691 0 2697 803 360 6.2 10 10 6.4 430 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.6064E7 -13.3 -14.4 91 101000 49 1386 222 9 0 9 872 0 878 326 40 5.2 10 10 1.3 400 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.60676E7 -12.8 -14.4 87 101000 6 358 224 1 0 1 0 0 0 0 40 5.2 10 10 2.4 370 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.60712E7 -12.8 -13.9 91 101000 0 0 225 0 0 0 0 0 0 0 50 4.1 10 10 6.4 370 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.60748E7 -12.2 -12.8 96 101000 0 0 228 0 0 0 0 0 0 0 50 4.1 10 10 8.0 370 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.60784E7 -12.2 -12.8 96 101000 0 0 228 0 0 0 0 0 0 0 60 4.1 10 10 8.0 2130 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.6082E7 -12.2 -12.8 96 101000 0 0 228 0 0 0 0 0 0 0 70 3.6 10 10 11.3 2130 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.60856E7 -12.2 -12.8 96 101000 0 0 228 0 0 0 0 0 0 0 80 3.6 10 10 11.3 2130 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.60892E7 -11.7 -12.2 96 101000 0 0 230 0 0 0 0 0 0 0 50 5.7 10 10 11.3 2130 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.60928E7 -11.1 -12.2 92 101000 0 0 232 0 0 0 0 0 0 0 360 5.2 10 10 8.0 370 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.60964E7 -10.6 -12.2 88 100900 0 0 234 0 0 0 0 0 0 0 360 6.7 10 10 8.0 400 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.61E7 -11.7 -13.3 88 100900 0 0 229 0 0 0 0 0 0 0 350 6.7 10 10 6.4 400 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.61036E7 -11.7 -12.8 92 100900 0 0 229 0 0 0 0 0 0 0 10 6.7 10 10 4.8 400 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.61072E7 -12.2 -13.3 92 100900 0 0 227 0 0 0 0 0 0 0 350 7.7 10 10 4.8 400 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.61108E7 -12.2 -12.8 96 100900 0 0 228 0 0 0 0 0 0 0 360 7.2 10 10 4.8 400 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.61144E7 -12.2 -13.3 92 100900 0 0 227 0 0 0 0 0 0 0 10 7.2 10 10 4.8 370 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.6118E7 -12.2 -13.3 92 100900 0 0 227 0 0 0 0 0 0 0 350 7.2 10 10 8.0 370 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.61216E7 -12.2 -13.3 92 100900 0 0 227 0 0 0 0 0 0 0 340 7.2 10 10 9.7 370 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.61252E7 -13.3 -14.4 91 100900 0 0 222 0 0 0 0 0 0 0 360 7.2 10 10 9.7 370 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.61288E7 -13.9 -14.4 96 100900 0 0 214 0 0 0 0 0 0 0 340 7.2 10 9 6.4 340 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.61324E7 -13.9 -15.0 91 100900 23 1190 214 4 3 4 480 0 480 150 360 7.2 10 9 11.3 310 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.6136E7 -13.9 -15.0 91 100800 78 1387 214 20 8 19 2247 0 2139 635 350 7.2 10 9 11.3 310 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.61396E7 -13.9 -15.0 91 100800 110 1387 220 32 4 32 3529 0 3539 1009 340 7.2 10 10 11.3 310 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.61432E7 -13.9 -14.4 96 100800 115 1387 220 36 3 35 3954 0 3856 1086 360 5.7 10 10 3.2 240 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.61468E7 -13.9 -14.4 96 100800 91 1387 220 26 1 26 2880 0 2887 830 350 5.7 10 10 6.4 240 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.61504E7 -14.4 -15.0 96 100800 42 1387 218 9 1 9 1040 0 1041 320 340 5.2 10 10 11.3 240 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.6154E7 -13.9 -14.4 96 100800 12 243 220 2 0 2 0 0 0 0 360 5.2 10 10 11.3 210 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.61576E7 -14.4 -14.4 100 100700 0 0 219 0 0 0 0 0 0 0 340 5.2 10 10 11.3 210 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.61612E7 -13.9 -14.4 96 100800 0 0 220 0 0 0 0 0 0 0 340 5.7 10 10 11.3 240 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.61648E7 -13.3 -13.9 96 100800 0 0 223 0 0 0 0 0 0 0 350 4.6 10 10 11.3 240 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.61684E7 -13.3 -13.9 96 100800 0 0 223 0 0 0 0 0 0 0 360 4.1 10 10 11.3 270 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.6172E7 -13.3 -14.4 91 100800 0 0 222 0 0 0 0 0 0 0 20 3.6 10 10 11.3 270 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.61756E7 -13.3 -13.9 96 100800 0 0 223 0 0 0 0 0 0 0 50 4.6 10 10 11.3 400 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.61792E7 -13.9 -14.4 96 100800 0 0 220 0 0 0 0 0 0 0 60 3.6 10 10 11.3 400 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.61828E7 -13.9 -15.0 91 100800 0 0 204 0 0 0 0 0 0 0 60 4.1 6 6 11.3 400 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.61864E7 -14.4 -15.0 96 100900 0 0 202 0 0 0 0 0 0 0 50 4.6 6 6 9.7 400 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.619E7 -14.4 -15.0 96 100900 0 0 208 0 0 0 0 0 0 0 70 4.1 8 8 8.0 980 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.61936E7 -15.6 -16.1 96 100900 0 0 196 0 0 0 0 0 0 0 60 4.1 6 5 8.0 980 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.61972E7 -15.0 -15.6 96 100900 0 0 202 0 0 0 0 0 0 0 60 3.1 10 7 9.7 2740 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.62008E7 -16.1 -17.2 91 101000 0 0 211 0 0 0 0 0 0 0 50 4.1 10 10 9.7 2740 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.62044E7 -16.1 -18.9 79 101000 0 0 209 0 0 0 0 0 0 0 70 4.1 10 10 9.7 2740 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.6208E7 -16.1 -18.3 83 101000 0 0 194 0 0 0 0 0 0 0 60 5.2 7 6 11.3 2740 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.62116E7 -17.8 -20.0 83 101100 0 0 183 0 0 0 0 0 0 0 60 3.6 4 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.62152E7 -17.8 -20.0 83 101100 0 0 183 0 0 0 0 0 0 0 60 4.1 4 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.62188E7 -16.7 -17.8 91 101100 18 1052 188 6 27 5 702 0 585 179 60 3.1 7 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.62224E7 -16.7 -18.9 83 101200 71 1388 192 19 21 18 2131 0 2023 596 60 3.1 8 6 11.3 2740 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.6226E7 -16.1 -17.8 87 101200 103 1388 197 37 3 36 4020 0 3924 1053 60 3.6 8 7 4.8 2740 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.62296E7 -16.1 -17.2 91 101300 107 1388 200 42 83 35 4591 0 3837 1057 60 3.6 9 8 11.3 150 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.62332E7 -16.1 -17.8 87 101300 84 1388 190 31 104 24 3437 0 2668 767 70 3.1 6 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.62368E7 -16.1 -17.8 87 101300 35 1388 197 8 1 8 926 0 927 284 0 0.0 8 7 11.3 210 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.62404E7 -15.6 -17.2 87 101400 6 104 206 1 1 0 0 0 0 0 0 0.0 10 9 11.3 180 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.6244E7 -15.6 -17.8 83 101500 0 0 206 0 0 0 0 0 0 0 0 0.0 10 9 11.3 270 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.62476E7 -17.2 -18.9 87 101500 0 0 200 0 0 0 0 0 0 0 0 0.0 10 9 11.3 240 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.62512E7 -16.7 -18.9 83 101600 0 0 202 0 0 0 0 0 0 0 0 0.0 10 9 11.3 210 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.62548E7 -16.7 -18.3 87 101600 0 0 202 0 0 0 0 0 0 0 0 0.0 10 9 11.3 180 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.62584E7 -16.8 -18.4 83 101700 0 0 192 0 0 0 0 0 0 0 0 0.7 7 6 11.3 180 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.6262E7 -17.0 -18.6 83 101800 0 0 188 0 0 0 0 0 0 0 0 1.4 6 4 11.3 180 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.62656E7 -17.2 -18.8 83 101800 0 0 186 0 0 0 0 0 0 0 0 2.1 4 3 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.62692E7 -17.3 -19.0 95 101700 0 0 205 0 0 0 0 0 0 0 350 2.9 10 10 11.3 370 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.62728E7 -17.5 -19.2 95 101700 0 0 204 0 0 0 0 0 0 0 350 3.6 10 10 11.3 370 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.62764E7 -17.7 -19.4 95 101700 0 0 204 0 0 0 0 0 0 0 350 4.3 10 10 11.3 370 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.628E7 -18.0 -19.7 95 101700 0 0 193 0 0 0 0 0 0 0 350 5.0 9 8 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.62836E7 -18.1 -19.9 95 101700 0 0 187 0 0 0 0 0 0 0 360 4.3 9 6 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.62872E7 -18.3 -18.9 95 101700 0 0 184 0 0 0 0 0 0 0 360 3.6 8 4 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.62908E7 -18.1 -19.9 95 101700 0 0 185 0 0 0 0 0 0 0 360 3.6 8 5 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.62944E7 -18.0 -19.6 95 101700 0 0 188 0 0 0 0 0 0 0 360 3.6 8 6 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.6298E7 -17.8 -18.3 95 101700 0 0 191 0 0 0 0 0 0 0 360 3.6 8 7 11.3 3660 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.63016E7 -18.0 -19.9 94 101700 0 0 189 0 0 0 0 0 0 0 360 3.9 9 7 11.3 3660 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.63052E7 -18.1 -20.3 92 101700 13 914 189 3 2 3 362 0 362 112 350 4.3 9 7 11.3 3660 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.63088E7 -18.3 -19.4 91 101700 64 1388 189 16 6 16 1800 0 1804 534 350 4.6 10 7 11.3 3660 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.63124E7 -18.7 -21.3 90 101700 95 1388 184 23 5 23 2580 0 2586 769 360 4.6 8 6 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.6316E7 -19.0 -21.8 88 101700 100 1388 181 35 22 33 3825 0 3618 993 360 4.6 7 5 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.63196E7 -19.4 -21.1 87 101700 76 1388 179 25 29 23 2766 0 2551 726 10 4.6 5 4 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.63232E7 -19.8 -22.4 90 101700 28 1354 177 4 14 4 485 0 485 152 10 4.8 6 4 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.63268E7 -20.2 -22.4 92 101700 0 0 176 0 0 0 0 0 0 0 360 5.0 8 4 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.63304E7 -20.6 -21.1 95 101700 0 0 176 0 0 0 0 0 0 0 360 5.2 9 4 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.6334E7 -20.8 -22.8 94 101700 0 0 173 0 0 0 0 0 0 0 360 5.0 7 3 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.63376E7 -20.9 -23.2 92 101600 0 0 168 0 0 0 0 0 0 0 360 4.8 4 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.63412E7 -21.1 -22.2 91 101600 0 0 165 0 0 0 0 0 0 0 360 4.6 2 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.63448E7 -21.1 -23.5 91 101600 0 0 168 0 0 0 0 0 0 0 10 4.4 3 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.63484E7 -21.1 -23.5 91 101600 0 0 168 0 0 0 0 0 0 0 20 4.3 3 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.6352E7 -21.1 -22.2 91 101600 0 0 171 0 0 0 0 0 0 0 30 4.1 4 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.63556E7 -21.3 -23.5 91 101600 0 0 169 0 0 0 0 0 0 0 20 4.6 4 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.63592E7 -21.5 -23.7 91 101600 0 0 169 0 0 0 0 0 0 0 20 5.2 3 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.63628E7 -21.7 -22.8 91 101600 0 0 169 0 0 0 0 0 0 0 10 5.7 3 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.63664E7 -21.7 -24.0 91 101600 0 0 168 0 0 0 0 0 0 0 360 5.2 3 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.637E7 -21.7 -24.0 91 101600 0 0 168 0 0 0 0 0 0 0 360 4.6 4 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.63736E7 -21.7 -22.8 91 101600 0 0 169 0 0 0 0 0 0 0 350 4.1 4 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.63772E7 -21.7 -23.8 92 101500 0 0 170 0 0 0 0 0 0 0 360 4.1 6 3 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.63808E7 -21.7 -23.5 94 101500 0 0 170 0 0 0 0 0 0 0 20 4.1 7 3 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.63844E7 -21.7 -22.2 95 101500 0 0 172 0 0 0 0 0 0 0 30 4.1 9 4 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.6388E7 -21.5 -23.3 95 101500 0 0 173 0 0 0 0 0 0 0 30 4.5 9 5 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.63916E7 -21.3 -23.1 95 101500 9 776 174 2 10 1 0 0 0 0 40 4.8 10 5 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.63952E7 -21.1 -21.7 95 101500 57 1389 177 21 34 20 2304 0 2200 605 40 5.2 10 6 11.3 3660 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.63988E7 -20.9 -23.0 94 101400 88 1389 175 37 46 33 4006 0 3584 941 40 5.2 10 5 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.64024E7 -20.8 -23.0 92 101400 93 1389 175 39 35 37 4198 0 3997 1020 30 5.2 9 5 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.6406E7 -20.6 -21.7 91 101400 69 1389 176 25 53 22 2759 0 2434 685 30 5.2 9 4 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.64096E7 -20.8 -23.2 91 101400 22 1215 175 4 16 4 481 0 481 150 40 5.0 9 5 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.64132E7 -20.9 -23.4 91 101300 0 0 178 0 0 0 0 0 0 0 40 4.8 10 7 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.64168E7 -21.1 -22.2 91 101300 0 0 182 0 0 0 0 0 0 0 50 4.6 10 8 11.3 2130 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.64204E7 -21.1 -23.5 91 101300 0 0 181 0 0 0 0 0 0 0 40 4.4 10 8 11.3 2130 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.6424E7 -21.1 -23.6 91 101300 0 0 184 0 0 0 0 0 0 0 40 4.3 10 9 11.3 2130 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.64276E7 -21.1 -22.2 91 101300 0 0 185 0 0 0 0 0 0 0 30 4.1 10 9 11.3 2130 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.64312E7 -21.3 -23.7 91 101200 0 0 184 0 0 0 0 0 0 0 30 3.9 10 9 11.3 2130 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.64348E7 -21.5 -23.9 91 101200 0 0 183 0 0 0 0 0 0 0 30 3.8 10 9 11.3 2130 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.64384E7 -21.7 -22.8 91 101200 0 0 183 0 0 0 0 0 0 0 30 3.6 10 9 11.3 2130 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.6442E7 -21.9 -24.1 91 101200 0 0 175 0 0 0 0 0 0 0 30 3.6 8 7 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.64456E7 -22.0 -24.2 91 101100 0 0 173 0 0 0 0 0 0 0 20 3.6 7 6 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.64492E7 -22.2 -23.3 91 101100 0 0 170 0 0 0 0 0 0 0 20 3.6 5 4 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.64528E7 -22.2 -24.5 91 101100 0 0 169 0 0 0 0 0 0 0 20 3.9 5 4 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.64564E7 -22.2 -24.5 91 101100 0 0 168 0 0 0 0 0 0 0 20 4.3 4 3 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.646E7 -22.2 -23.3 91 101000 0 0 169 0 0 0 0 0 0 0 20 4.6 4 3 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.64636E7 -22.0 -24.1 92 101000 0 0 170 0 0 0 0 0 0 0 30 4.8 6 4 9.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.64672E7 -21.9 -23.7 94 101000 0 0 173 0 0 0 0 0 0 0 30 5.0 8 6 7.0 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.64708E7 -21.7 -22.2 95 100900 0 0 177 0 0 0 0 0 0 0 40 5.2 10 7 4.8 2440 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.64744E7 -21.5 -23.4 94 100900 0 0 175 0 0 0 0 0 0 0 40 5.4 10 6 6.4 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.6478E7 -21.3 -23.4 92 100900 6 637 175 5 12 4 0 0 0 0 40 5.5 10 6 8.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.64816E7 -21.1 -22.2 91 100900 50 1390 175 21 71 18 2307 0 1983 547 40 5.7 10 5 9.7 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.64852E7 -20.9 -23.1 92 100900 81 1390 175 23 18 22 2561 0 2455 712 40 5.3 10 5 10.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.64888E7 -20.8 -22.8 94 100800 85 1390 177 26 36 24 2886 0 2670 769 50 5.0 9 6 10.8 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.64924E7 -20.6 -21.1 95 100800 62 1390 179 27 42 25 2928 0 2719 715 50 4.6 9 6 11.3 5490 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.6496E7 -20.4 -22.2 95 100800 17 1077 181 5 12 4 596 0 477 148 50 5.5 9 7 11.3 3803 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.64996E7 -20.2 -22.1 95 100700 0 0 188 0 0 0 0 0 0 0 50 6.3 10 9 11.3 2117 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.65032E7 -20.0 -20.6 95 100700 0 0 195 0 0 0 0 0 0 0 50 7.2 10 10 11.3 430 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.65068E7 -19.8 -21.7 95 100700 0 0 195 0 0 0 0 0 0 0 50 7.2 10 10 10.2 357 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.65104E7 -19.6 -21.6 95 100600 0 0 196 0 0 0 0 0 0 0 50 7.2 10 10 9.1 283 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.6514E7 -19.4 -20.0 95 100600 0 0 198 0 0 0 0 0 0 0 50 7.2 10 10 8.0 210 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.65176E7 -19.2 -21.5 92 100600 0 0 197 0 0 0 0 0 0 0 50 7.2 10 10 8.6 283 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.65212E7 -19.1 -21.7 90 100600 0 0 197 0 0 0 0 0 0 0 60 7.2 10 10 9.1 357 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.65248E7 -18.9 -20.6 87 100500 0 0 199 0 0 0 0 0 0 0 60 7.2 10 10 9.7 430 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.65284E7 -18.5 -20.8 91 100500 0 0 200 0 0 0 0 0 0 0 60 6.7 10 10 10.2 377 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.6532E7 -18.2 -19.8 96 100500 0 0 202 0 0 0 0 0 0 0 70 6.2 10 10 10.8 323 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.65356E7 -17.8 -17.8 100 100500 0 0 205 0 0 0 0 0 0 0 70 5.7 10 10 11.3 270 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.65392E7 -17.6 -19.0 98 100500 0 0 204 0 0 0 0 0 0 0 80 5.5 10 10 10.8 283 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.65428E7 -17.4 -19.0 97 100500 0 0 205 0 0 0 0 0 0 0 90 5.4 10 10 10.2 297 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.65464E7 -17.2 -17.8 95 100500 0 0 207 0 0 0 0 0 0 0 100 5.2 10 10 9.7 310 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.655E7 -16.5 -18.8 91 100500 0 0 208 0 0 0 0 0 0 0 90 5.4 10 10 7.0 297 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.65536E7 -15.7 -18.5 87 100500 0 0 211 0 0 0 0 0 0 0 70 5.5 10 10 4.3 283 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.65572E7 -15.0 -17.2 83 100400 0 0 214 0 0 0 0 0 0 0 60 5.7 10 10 1.6 270 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.65608E7 -14.8 -17.5 89 100500 0 0 215 0 0 0 0 0 0 0 60 5.9 10 10 3.2 313 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.65644E7 -14.6 -16.6 94 100500 3 498 216 0 1 0 0 0 0 0 60 6.0 10 10 4.8 357 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.6568E7 -14.4 -14.4 100 100500 43 1391 219 8 0 8 775 0 780 288 60 6.2 10 10 6.4 400 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.65716E7 -14.0 -15.3 100 100500 74 1391 219 26 3 26 2836 0 2844 771 60 6.4 10 10 4.8 370 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.65752E7 -13.7 -15.0 100 100500 78 1391 221 22 3 22 2444 0 2449 707 60 6.5 10 10 3.2 340 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.65788E7 -13.3 -13.3 100 100500 55 1391 223 15 0 15 1454 0 1464 497 60 6.7 10 10 1.6 310 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.65824E7 -13.3 -14.6 100 100500 12 939 222 3 1 3 362 0 362 113 60 6.9 10 10 3.2 410 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.6586E7 -13.3 -14.6 100 100500 0 0 222 0 0 0 0 0 0 0 60 7.0 10 10 4.8 510 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.65896E7 -13.3 -13.3 100 100400 0 0 223 0 0 0 0 0 0 0 60 7.2 10 10 6.4 610 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.65932E7 -12.9 -14.2 100 100400 0 0 224 0 0 0 0 0 0 0 60 6.7 10 10 7.5 590 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.65968E7 -12.6 -14.0 100 100400 0 0 225 0 0 0 0 0 0 0 60 6.2 10 10 8.6 570 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.66004E7 -12.2 -12.2 100 100400 0 0 228 0 0 0 0 0 0 0 60 5.7 10 10 9.7 550 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.6604E7 -12.0 -13.3 100 100400 0 0 228 0 0 0 0 0 0 0 60 6.4 10 10 9.7 580 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.66076E7 -11.9 -13.2 100 100400 0 0 228 0 0 0 0 0 0 0 50 7.0 10 10 9.7 610 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.66112E7 -11.7 -11.7 100 100400 0 0 230 0 0 0 0 0 0 0 50 7.7 10 10 9.7 640 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.66148E7 -11.5 -12.8 99 100400 0 0 230 0 0 0 0 0 0 0 50 7.5 10 10 9.7 660 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.66184E7 -11.3 -12.8 97 100400 0 0 231 0 0 0 0 0 0 0 50 7.4 10 10 9.7 680 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.6622E7 -11.1 -11.7 96 100400 0 0 232 0 0 0 0 0 0 0 50 7.2 10 10 9.7 700 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.66256E7 -11.3 -13.1 96 100400 0 0 231 0 0 0 0 0 0 0 50 7.0 10 10 9.1 580 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.66292E7 -11.5 -13.3 96 100400 0 0 230 0 0 0 0 0 0 0 60 6.9 10 10 8.6 460 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.66328E7 -11.7 -12.2 96 100400 0 0 230 0 0 0 0 0 0 0 60 6.7 10 10 8.0 340 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.66364E7 -11.9 -13.4 97 100400 0 0 228 0 0 0 0 0 0 0 60 6.0 10 10 8.0 370 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.664E7 -12.0 -13.3 99 100400 0 0 228 0 0 0 0 0 0 0 60 5.3 10 10 8.0 400 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.66436E7 -12.2 -12.2 100 100400 0 0 228 0 0 0 0 0 0 0 60 4.6 10 10 8.0 430 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.66472E7 -12.4 -13.6 100 100400 0 0 226 0 0 0 0 0 0 0 60 5.0 10 10 9.1 410 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.66508E7 -12.6 -13.8 100 100400 6 336 225 1 0 1 0 0 0 0 60 5.3 10 10 10.2 390 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.66544E7 -12.8 -12.8 100 100400 36 1391 226 7 0 7 677 0 682 253 60 5.7 10 10 11.3 370 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.6658E7 -12.6 -13.9 100 100400 67 1391 225 21 1 21 2317 0 2323 655 60 5.5 10 10 11.3 360 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.66616E7 -12.4 -13.7 100 100400 71 1391 226 21 0 21 2039 0 2053 668 60 5.4 10 10 11.3 350 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.66652E7 -12.2 -12.2 100 100400 48 1391 228 13 0 13 1260 0 1268 436 60 5.2 10 10 11.3 340 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.66688E7 -12.2 -13.5 100 100500 8 777 227 3 0 3 289 0 291 111 60 4.8 10 10 11.3 350 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.66724E7 -12.2 -13.5 100 100500 0 0 227 0 0 0 0 0 0 0 70 4.5 10 10 11.3 360 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.6676E7 -12.2 -12.2 100 100500 0 0 228 0 0 0 0 0 0 0 70 4.1 10 10 11.3 370 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.66796E7 -12.2 -13.5 100 100500 0 0 227 0 0 0 0 0 0 0 60 4.6 10 10 10.8 370 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.66832E7 -12.2 -13.6 100 100500 0 0 227 0 0 0 0 0 0 0 40 5.2 10 10 10.2 370 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.66868E7 -12.2 -12.2 100 100500 0 0 228 0 0 0 0 0 0 0 30 5.7 10 10 9.7 370 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.66904E7 -12.6 -14.0 99 100500 0 0 225 0 0 0 0 0 0 0 30 5.5 10 10 9.7 307 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.6694E7 -12.9 -14.6 97 100500 0 0 224 0 0 0 0 0 0 0 40 5.4 10 10 9.7 243 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.66976E7 -13.3 -13.9 96 100500 0 0 223 0 0 0 0 0 0 0 40 5.2 10 10 9.7 180 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.67012E7 -13.7 -15.9 92 100600 0 0 220 0 0 0 0 0 0 0 40 5.0 10 10 10.2 223 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.67048E7 -14.0 -16.9 87 100600 0 0 218 0 0 0 0 0 0 0 50 4.8 10 10 10.8 267 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.67084E7 -14.4 -16.7 83 100600 0 0 217 0 0 0 0 0 0 0 50 4.6 10 10 11.3 310 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.6712E7 -14.6 -17.7 86 100600 0 0 215 0 0 0 0 0 0 0 30 4.6 10 10 10.2 310 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.67156E7 -14.8 -17.5 88 100700 0 0 215 0 0 0 0 0 0 0 20 4.6 10 10 9.1 310 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.67192E7 -15.0 -16.1 91 100700 0 0 215 0 0 0 0 0 0 0 360 4.6 10 10 8.0 310 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.67228E7 -15.2 -17.6 90 100700 0 0 213 0 0 0 0 0 0 0 360 4.8 10 10 9.1 310 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.67264E7 -15.4 -18.0 88 100700 0 0 212 0 0 0 0 0 0 0 350 5.0 10 10 10.2 310 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.673E7 -15.6 -17.2 87 100700 0 0 212 0 0 0 0 0 0 0 350 5.2 10 10 11.3 310 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.67336E7 -15.8 -18.6 87 100800 0 0 210 0 0 0 0 0 0 0 350 5.2 10 10 11.3 320 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.67372E7 -15.9 -18.8 87 100800 6 197 210 1 0 1 0 0 0 0 360 5.2 10 10 11.3 330 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.67408E7 -16.1 -17.8 87 100900 30 1392 210 7 0 7 677 0 682 249 360 5.2 10 10 11.3 340 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.67444E7 -16.3 -19.1 88 100900 60 1392 208 18 0 18 1747 0 1758 574 360 4.8 10 10 9.7 317 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.6748E7 -16.5 -19.1 90 101000 65 1392 208 22 0 22 2136 0 2150 669 350 4.5 10 10 8.0 293 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.67516E7 -16.7 -17.8 91 101000 42 1392 208 14 0 14 1356 0 1365 449 350 4.1 10 10 6.4 270 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.67552E7 -16.7 -19.3 90 101000 12 638 207 2 0 2 0 0 0 0 360 4.1 10 10 6.4 283 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.67588E7 -16.7 -19.5 88 101000 0 0 207 0 0 0 0 0 0 0 360 4.1 10 10 6.4 297 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.67624E7 -16.7 -18.3 87 100900 0 0 208 0 0 0 0 0 0 0 10 4.1 10 10 6.4 310 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.6766E7 -16.7 -19.4 88 101100 0 0 207 0 0 0 0 0 0 0 360 3.8 10 10 6.9 310 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.67696E7 -16.7 -19.4 90 101200 0 0 207 0 0 0 0 0 0 0 360 3.4 10 10 7.5 310 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.67732E7 -16.7 -17.8 91 101300 0 0 208 0 0 0 0 0 0 0 350 3.1 10 10 8.0 310 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.67768E7 -16.7 -19.1 91 101400 0 0 207 0 0 0 0 0 0 0 10 3.8 10 10 8.6 267 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.67804E7 -16.7 -19.1 91 101500 0 0 207 0 0 0 0 0 0 0 30 4.5 10 10 9.1 223 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.6784E7 -16.7 -17.8 91 101500 0 0 208 0 0 0 0 0 0 0 50 5.2 10 10 9.7 180 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.67876E7 -16.9 -18.9 92 101600 0 0 207 0 0 0 0 0 0 0 60 4.3 10 10 10.2 180 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.67912E7 -17.0 -18.9 94 101600 0 0 206 0 0 0 0 0 0 0 60 3.5 10 10 10.8 180 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.67948E7 -17.2 -17.8 95 101700 0 0 207 0 0 0 0 0 0 0 70 2.6 10 10 11.3 180 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.67984E7 -17.0 -19.0 94 101700 0 0 206 0 0 0 0 0 0 0 40 3.1 10 10 10.8 210 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.6802E7 -16.9 -19.0 92 101700 0 0 206 0 0 0 0 0 0 0 360 3.6 10 10 10.2 240 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.68056E7 -16.7 -17.8 91 101800 0 0 208 0 0 0 0 0 0 0 330 4.1 10 10 9.7 270 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.68092E7 -16.9 -19.1 91 101800 0 0 206 0 0 0 0 0 0 0 340 3.8 10 10 10.2 283 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.68128E7 -17.0 -19.3 91 101800 0 0 206 0 0 0 0 0 0 0 350 3.4 10 10 10.8 297 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.68164E7 -17.2 -18.3 91 101900 0 0 206 0 0 0 0 0 0 0 360 3.1 10 10 11.3 310 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.682E7 -17.2 -19.7 90 101900 0 0 205 0 0 0 0 0 0 0 360 2.9 10 10 11.3 330 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.68236E7 -17.2 -19.9 88 102000 0 35 205 0 0 0 0 0 0 0 350 2.8 10 10 11.3 350 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.68272E7 -17.2 -18.9 87 102000 23 1393 206 7 0 7 677 0 681 244 350 2.6 10 10 11.3 370 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.68308E7 -17.4 -20.4 87 102100 53 1393 204 16 0 16 1552 0 1562 515 20 2.4 10 10 11.3 360 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.68344E7 -17.6 -20.5 87 102100 58 1393 203 20 0 20 1941 0 1954 611 60 2.3 10 10 11.3 350 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.6838E7 -17.8 -19.4 87 102100 35 1393 203 10 0 10 968 0 975 340 90 2.1 10 10 11.3 340 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.68416E7 -17.4 -20.3 87 102200 18 476 204 3 0 3 0 0 0 0 50 2.3 10 10 11.3 340 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.68452E7 -17.1 -20.0 87 102200 0 0 205 0 0 0 0 0 0 0 360 2.4 10 10 11.3 340 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.68488E7 -16.7 -18.3 87 102200 0 0 208 0 0 0 0 0 0 0 320 2.6 10 10 11.3 340 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.68524E7 -17.1 -20.0 87 102200 0 0 205 0 0 0 0 0 0 0 330 3.1 10 10 11.3 330 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.6856E7 -17.4 -20.4 87 102200 0 0 204 0 0 0 0 0 0 0 350 3.6 10 10 11.3 320 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.68596E7 -17.8 -19.4 87 102200 0 0 203 0 0 0 0 0 0 0 360 4.1 10 10 11.3 310 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.68632E7 -18.0 -20.9 87 102300 0 0 201 0 0 0 0 0 0 0 360 3.9 10 10 11.3 320 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.68668E7 -18.1 -21.1 87 102300 0 0 201 0 0 0 0 0 0 0 360 3.8 10 10 11.3 330 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.68704E7 -18.3 -20.0 87 102400 0 0 201 0 0 0 0 0 0 0 360 3.6 10 10 11.3 340 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.6874E7 -18.5 -21.3 87 102400 0 0 199 0 0 0 0 0 0 0 350 3.6 10 10 10.8 380 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.68776E7 -18.7 -21.5 87 102400 0 0 199 0 0 0 0 0 0 0 350 3.6 10 10 10.2 420 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.68812E7 -18.9 -20.6 87 102400 0 0 199 0 0 0 0 0 0 0 340 3.6 10 10 9.7 460 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.68848E7 -19.1 -22.0 87 102400 0 0 197 0 0 0 0 0 0 0 340 3.9 10 10 10.2 510 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.68884E7 -19.2 -22.2 87 102400 0 0 197 0 0 0 0 0 0 0 350 4.3 10 10 10.8 560 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.6892E7 -19.4 -21.1 87 102400 0 0 197 0 0 0 0 0 0 0 350 4.6 10 10 11.3 610 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.68956E7 -19.0 -22.1 86 102400 0 0 197 0 0 0 0 0 0 0 350 4.4 10 10 11.3 700 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.68992E7 -18.7 -21.9 84 102400 0 0 198 0 0 0 0 0 0 0 340 4.3 10 10 11.3 790 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.69028E7 -18.3 -20.6 83 102400 0 0 201 0 0 0 0 0 0 0 340 4.1 10 10 11.3 880 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.69064E7 -19.4 -23.1 81 102400 0 0 183 0 0 0 0 0 0 0 340 4.5 7 7 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.691E7 -20.6 -24.4 80 102400 0 0 174 0 0 0 0 0 0 0 350 4.8 5 4 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.69136E7 -21.7 -24.4 78 102500 17 1266 165 4 41 3 487 0 365 114 350 5.2 2 1 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.69172E7 -21.9 -25.9 78 102500 47 1393 164 16 106 12 1813 0 1362 406 350 5.0 4 1 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.69208E7 -22.0 -26.1 78 102500 51 1393 160 23 109 18 2534 0 1988 554 340 4.8 7 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.69244E7 -22.2 -25.0 78 102500 29 1393 160 12 64 10 1354 0 1130 332 340 4.6 9 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.6928E7 -22.0 -26.1 78 102500 18 314 160 3 11 3 0 0 0 0 340 5.1 8 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.69316E7 -21.9 -25.9 78 102500 0 0 164 0 0 0 0 0 0 0 350 5.7 6 1 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.69352E7 -21.7 -24.4 78 102500 0 0 165 0 0 0 0 0 0 0 350 6.2 5 1 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.69388E7 -21.9 -25.9 78 102500 0 0 166 0 0 0 0 0 0 0 340 6.4 6 2 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.69424E7 -22.0 -26.2 78 102500 0 0 167 0 0 0 0 0 0 0 340 6.5 6 3 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.6946E7 -22.2 -25.0 78 102500 0 0 169 0 0 0 0 0 0 0 330 6.7 7 4 11.3 6100 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.69496E7 -22.2 -26.5 77 102500 0 0 166 0 0 0 0 0 0 0 330 6.7 6 3 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.69532E7 -22.2 -26.7 75 102500 0 0 165 0 0 0 0 0 0 0 330 6.7 6 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.69568E7 -22.2 -25.6 74 102600 0 0 163 0 0 0 0 0 0 0 330 6.7 5 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.69604E7 -22.2 -26.7 74 102600 0 0 165 0 0 0 0 0 0 0 340 6.5 6 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.6964E7 -22.2 -26.7 74 102600 0 0 167 0 0 0 0 0 0 0 340 6.4 6 4 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.69676E7 -22.2 -25.6 74 102600 0 0 170 0 0 0 0 0 0 0 350 6.2 7 5 11.3 6100 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.69712E7 -22.4 -27.0 74 102600 0 0 167 0 0 0 0 0 0 0 350 6.7 6 4 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.69748E7 -22.6 -27.2 74 102700 0 0 165 0 0 0 0 0 0 0 340 7.2 6 3 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.69784E7 -22.8 -26.1 74 102700 0 0 163 0 0 0 0 0 0 0 340 7.7 5 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.6982E7 -23.0 -27.5 74 102700 0 0 162 0 0 0 0 0 0 0 360 7.2 5 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.69856E7 -23.1 -27.6 74 102800 0 0 162 0 0 0 0 0 0 0 20 6.7 5 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.69892E7 -23.3 -26.7 74 102900 0 0 162 0 0 0 0 0 0 0 40 6.2 5 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.69928E7 -24.1 -28.7 74 102900 0 0 156 0 0 0 0 0 0 0 30 5.9 4 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.69964E7 -24.8 -29.4 74 103000 0 0 154 0 0 0 0 0 0 0 10 5.5 2 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.7E7 -25.6 -28.9 74 103100 12 1080 149 4 81 2 438 3503 353 72 360 5.2 1 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.70036E7 -25.6 -29.3 81 103100 41 1394 149 15 141 10 1713 0 1144 345 360 5.2 2 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.70072E7 -25.6 -28.3 88 103100 45 1394 150 18 143 12 2036 0 1360 404 350 5.2 3 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.70108E7 -25.6 -26.1 95 103200 23 1394 151 8 110 6 933 0 700 215 350 5.2 4 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.70144E7 -25.8 -27.6 95 103200 12 151 150 2 6 1 0 0 0 0 350 5.0 3 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.7018E7 -25.9 -27.8 95 103300 0 0 149 0 0 0 0 0 0 0 350 4.8 3 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.70216E7 -26.1 -26.7 95 103300 0 0 150 0 0 0 0 0 0 0 350 4.6 2 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.70252E7 -26.1 -28.0 95 103300 0 0 149 0 0 0 0 0 0 0 340 4.6 2 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.70288E7 -26.1 -28.1 95 103400 0 0 149 0 0 0 0 0 0 0 340 4.6 1 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.70324E7 -26.1 -26.7 95 103400 0 0 150 0 0 0 0 0 0 0 330 4.6 1 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.7036E7 -26.1 -27.8 97 103400 0 0 149 0 0 0 0 0 0 0 330 4.4 1 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.70396E7 -26.1 -27.6 98 103400 0 0 149 0 0 0 0 0 0 0 340 4.3 2 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.70432E7 -26.1 -26.1 100 103400 0 0 150 0 0 0 0 0 0 0 340 4.1 2 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.70468E7 -25.7 -26.8 100 103400 0 0 153 0 0 0 0 0 0 0 340 4.1 2 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.70504E7 -25.4 -26.5 100 103400 0 0 154 0 0 0 0 0 0 0 330 4.1 3 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.7054E7 -25.0 -25.0 100 103400 0 0 158 0 0 0 0 0 0 0 330 4.1 3 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.70576E7 -24.6 -26.8 93 103400 0 0 158 0 0 0 0 0 0 0 320 3.8 2 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.70612E7 -24.3 -27.4 85 103400 0 0 156 0 0 0 0 0 0 0 320 3.4 2 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.70648E7 -23.9 -26.7 78 103400 0 0 158 0 0 0 0 0 0 0 310 3.1 1 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.70684E7 -24.1 -28.0 78 103400 0 0 157 0 0 0 0 0 0 0 320 3.1 1 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.7072E7 -24.2 -28.2 78 103300 0 0 153 0 0 0 0 0 0 0 320 3.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.70756E7 -24.4 -27.2 78 103300 0 0 153 0 0 0 0 0 0 0 330 3.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.70792E7 -24.2 -27.5 84 103300 0 0 154 0 0 0 0 0 0 0 340 3.3 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.70828E7 -24.1 -26.6 89 103300 0 0 155 0 0 0 0 0 0 0 340 3.4 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.70864E7 -23.9 -24.4 95 103300 8 895 157 6 131 2 656 5450 352 71 350 3.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.709E7 -23.9 -25.5 97 103300 34 1395 156 15 237 7 1599 11569 1178 173 350 3.4 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.70936E7 -23.9 -25.4 98 103300 39 1395 156 17 243 9 1802 12088 1500 187 350 3.3 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.70972E7 -23.9 -23.9 100 103300 17 1360 157 8 218 3 869 9862 521 101 350 3.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.71008E7 -23.5 -25.0 98 103200 0 0 157 0 0 0 0 0 0 0 350 4.0 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.71044E7 -23.2 -24.8 97 103200 0 0 158 0 0 0 0 0 0 0 340 4.8 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.7108E7 -22.8 -23.3 95 103200 0 0 160 0 0 0 0 0 0 0 340 5.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.71116E7 -22.6 -24.2 97 103200 0 0 160 0 0 0 0 0 0 0 340 4.8 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.71152E7 -22.4 -24.0 98 103100 0 0 161 0 0 0 0 0 0 0 330 4.0 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.71188E7 -22.2 -22.2 100 103100 0 0 162 0 0 0 0 0 0 0 330 3.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.71224E7 -22.2 -23.5 100 103100 0 0 162 0 0 0 0 0 0 0 330 3.1 2 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.7126E7 -22.2 -23.5 100 103000 0 0 162 0 0 0 0 0 0 0 330 3.1 5 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.71296E7 -22.2 -22.2 100 103000 0 0 162 0 0 0 0 0 0 0 330 3.1 7 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.71332E7 -22.2 -23.3 100 102900 0 0 162 0 0 0 0 0 0 0 330 3.1 5 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.71368E7 -22.2 -23.3 100 102900 0 0 162 0 0 0 0 0 0 0 330 3.1 4 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.71404E7 -22.2 -22.2 100 102800 0 0 162 0 0 0 0 0 0 0 330 3.1 2 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.7144E7 -22.0 -23.2 100 102700 0 0 165 0 0 0 0 0 0 0 320 3.1 4 1 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.71476E7 -21.9 -23.1 100 102600 0 0 168 0 0 0 0 0 0 0 310 3.1 5 2 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.71512E7 -21.7 -21.7 100 102500 0 0 171 0 0 0 0 0 0 0 300 3.1 7 3 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.71548E7 -21.5 -22.7 100 102400 0 0 171 0 0 0 0 0 0 0 310 3.3 6 3 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.71584E7 -21.3 -22.4 100 102400 0 0 172 0 0 0 0 0 0 0 310 3.4 5 3 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.7162E7 -21.1 -21.1 100 102300 0 0 173 0 0 0 0 0 0 0 320 3.6 4 3 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.71656E7 -21.8 -23.1 100 102200 0 0 168 0 0 0 0 0 0 0 310 3.3 3 2 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.71692E7 -22.6 -23.8 100 102100 0 0 163 0 0 0 0 0 0 0 310 2.9 1 1 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.71728E7 -23.3 -23.3 100 102100 36 709 159 6 112 2 0 0 0 0 300 2.6 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.71764E7 -22.9 -24.2 100 102000 28 1395 159 13 272 6 1390 12899 1015 156 300 2.9 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.718E7 -22.6 -23.9 100 101900 33 1395 160 15 273 7 1599 13244 1178 171 310 3.3 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.71836E7 -22.2 -22.2 100 101800 12 1174 162 8 223 2 878 9777 353 73 310 3.6 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.71872E7 -22.2 -24.2 94 101700 0 0 161 0 0 0 0 0 0 0 310 3.6 1 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.71908E7 -22.2 -25.0 88 101600 0 0 160 0 0 0 0 0 0 0 310 3.6 1 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.71944E7 -22.2 -24.4 82 101600 0 0 161 0 0 0 0 0 0 0 310 3.6 2 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.7198E7 -21.8 -25.3 82 101500 0 0 161 0 0 0 0 0 0 0 310 3.8 3 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.72016E7 -21.5 -25.1 82 101500 0 0 162 0 0 0 0 0 0 0 310 3.9 3 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.72052E7 -21.1 -23.3 82 101400 0 0 164 0 0 0 0 0 0 0 310 4.1 4 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.72088E7 -21.5 -24.9 82 101300 0 0 165 0 0 0 0 0 0 0 310 4.1 4 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.72124E7 -21.8 -25.3 82 101300 0 0 164 0 0 0 0 0 0 0 300 4.1 5 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.7216E7 -22.2 -24.4 82 101200 0 0 166 0 0 0 0 0 0 0 300 4.1 5 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.72196E7 -22.4 -25.9 81 101200 0 0 165 0 0 0 0 0 0 0 300 4.1 5 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.72232E7 -22.6 -26.3 79 101100 0 0 164 0 0 0 0 0 0 0 300 4.1 6 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.72268E7 -22.8 -25.6 78 101100 0 0 164 0 0 0 0 0 0 0 300 4.1 6 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.72304E7 -22.6 -26.4 79 101000 0 0 168 0 0 0 0 0 0 0 310 4.5 7 5 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.7234E7 -22.4 -26.0 81 100900 0 0 172 0 0 0 0 0 0 0 310 4.8 9 7 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.72376E7 -22.2 -24.4 82 100800 0 0 186 0 0 0 0 0 0 0 320 5.2 10 10 11.3 310 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.72412E7 -22.8 -26.3 81 100800 0 0 174 0 0 0 0 0 0 0 320 5.2 9 8 10.2 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.72448E7 -23.3 -27.1 79 100700 0 0 166 0 0 0 0 0 0 0 330 5.2 8 5 9.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.72484E7 -23.9 -26.7 78 100700 0 0 162 0 0 0 0 0 0 0 330 5.2 7 3 8.0 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.7252E7 -24.1 -28.1 78 100700 0 0 160 0 0 0 0 0 0 0 340 4.7 6 3 9.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.72556E7 -24.2 -28.3 78 100600 0 0 158 0 0 0 0 0 0 0 360 4.1 4 2 10.2 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.72592E7 -24.4 -27.2 78 100600 6 500 159 1 9 1 0 0 0 0 10 3.6 3 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.72628E7 -24.4 -28.5 78 100500 22 1396 155 5 96 3 544 4441 522 102 360 4.1 2 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.72664E7 -24.4 -28.5 78 100500 27 1396 155 6 101 4 725 0 483 151 350 4.7 1 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.727E7 -24.4 -27.2 78 100400 8 989 153 4 75 2 437 3160 352 72 340 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.72736E7 -25.0 -29.6 74 100400 0 0 150 0 0 0 0 0 0 0 350 4.0 1 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.72772E7 -25.5 -30.8 70 100400 0 0 151 0 0 0 0 0 0 0 350 2.7 1 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.72808E7 -26.1 -30.6 66 100300 0 0 150 0 0 0 0 0 0 0 360 1.5 2 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.72844E7 -26.3 -31.5 70 100300 0 0 149 0 0 0 0 0 0 0 10 2.2 1 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.7288E7 -26.5 -31.2 73 100300 0 0 146 0 0 0 0 0 0 0 20 2.9 1 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.72916E7 -26.7 -29.4 77 100300 0 0 146 0 0 0 0 0 0 0 30 3.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.72952E7 -27.1 -31.1 77 100300 0 0 144 0 0 0 0 0 0 0 40 3.9 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.72988E7 -27.4 -31.5 77 100300 0 0 143 0 0 0 0 0 0 0 60 4.3 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.73024E7 -27.8 -30.6 77 100300 0 0 143 0 0 0 0 0 0 0 70 4.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.7306E7 -28.0 -32.1 76 100300 0 0 142 0 0 0 0 0 0 0 70 4.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.73096E7 -28.1 -32.4 74 100300 0 0 141 0 0 0 0 0 0 0 60 4.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.73132E7 -28.3 -31.7 73 100300 0 0 141 0 0 0 0 0 0 0 60 4.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.73168E7 -28.5 -32.9 74 100300 0 0 140 0 0 0 0 0 0 0 60 4.6 0 0 10.8 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.73204E7 -28.7 -32.9 76 100300 0 0 139 0 0 0 0 0 0 0 60 4.6 0 0 10.2 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.7324E7 -28.9 -31.7 77 100300 0 0 140 0 0 0 0 0 0 0 60 4.6 0 0 9.7 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.73276E7 -28.9 -33.2 74 100400 0 0 139 0 0 0 0 0 0 0 60 4.6 0 0 10.2 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.73312E7 -28.9 -33.6 72 100400 0 0 139 0 0 0 0 0 0 0 60 4.6 0 0 10.8 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.73348E7 -28.9 -32.8 69 100400 0 0 139 0 0 0 0 0 0 0 60 4.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.73384E7 -28.7 -33.5 72 100500 0 0 139 0 0 0 0 0 0 0 50 4.1 1 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.7342E7 -28.5 -32.9 74 100500 0 0 143 0 0 0 0 0 0 0 50 3.6 1 1 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.73456E7 -28.3 -31.1 77 100500 12 291 144 2 7 1 0 0 0 0 40 3.1 2 1 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.73492E7 -28.1 -32.2 77 100500 17 1397 144 4 136 2 439 6097 354 74 50 3.6 2 1 9.1 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.73528E7 -28.0 -32.1 77 100500 21 1397 144 6 114 4 646 5219 687 123 50 4.1 2 1 7.0 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.73564E7 -27.8 -30.6 77 100500 18 757 146 3 67 1 0 0 0 0 60 4.6 2 1 4.8 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.736E7 -27.6 -31.7 77 100500 0 0 146 0 0 0 0 0 0 0 60 4.8 3 1 4.8 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.73636E7 -27.4 -31.5 77 100500 0 0 148 0 0 0 0 0 0 0 50 5.0 5 2 4.8 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.73672E7 -27.2 -30.0 77 100500 0 0 150 0 0 0 0 0 0 0 50 5.2 6 2 4.8 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.73708E7 -27.0 -31.3 76 100600 0 0 147 0 0 0 0 0 0 0 40 5.4 5 1 4.8 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.73744E7 -26.9 -31.4 74 100600 0 0 147 0 0 0 0 0 0 0 40 5.5 3 1 4.8 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.7378E7 -26.7 -30.0 73 100600 0 0 146 0 0 0 0 0 0 0 30 5.7 2 0 4.8 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.73816E7 -26.5 -30.9 75 100600 0 0 146 0 0 0 0 0 0 0 30 5.9 2 0 7.0 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.73852E7 -26.3 -30.6 76 100600 0 0 147 0 0 0 0 0 0 0 40 6.0 2 0 9.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.73888E7 -26.1 -28.9 78 100600 0 0 148 0 0 0 0 0 0 0 40 6.2 2 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.73924E7 -25.7 -29.8 77 100600 0 0 153 0 0 0 0 0 0 0 40 5.9 4 2 10.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.7396E7 -25.4 -29.6 75 100600 0 0 158 0 0 0 0 0 0 0 40 5.5 7 5 9.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.73996E7 -25.0 -28.3 74 100500 0 0 164 0 0 0 0 0 0 0 40 5.2 9 7 8.0 3050 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.74032E7 -25.0 -29.7 73 100500 0 0 161 0 0 0 0 0 0 0 40 5.9 9 6 8.6 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.74068E7 -25.0 -29.9 71 100500 0 0 159 0 0 0 0 0 0 0 40 6.5 8 5 9.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.74104E7 -25.0 -28.9 70 100500 0 0 159 0 0 0 0 0 0 0 40 7.2 8 4 9.7 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.7414E7 -25.2 -29.9 73 100500 0 0 156 0 0 0 0 0 0 0 40 6.5 6 3 9.7 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.74176E7 -25.4 -29.6 75 100500 0 0 156 0 0 0 0 0 0 0 50 5.9 5 3 9.7 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.74212E7 -25.6 -28.3 78 100500 0 0 155 0 0 0 0 0 0 0 50 5.2 3 2 9.7 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.74248E7 -24.8 -28.6 79 100600 0 0 161 0 0 0 0 0 0 0 50 5.9 5 5 9.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.74284E7 -24.1 -27.7 81 100600 0 0 166 0 0 0 0 0 0 0 50 6.5 8 7 8.6 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.7432E7 -23.3 -25.6 82 100600 0 35 181 0 0 0 0 0 0 0 50 7.2 10 10 8.0 790 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.74356E7 -23.3 -26.7 83 100600 11 1397 181 0 0 0 0 0 0 0 50 7.5 10 10 6.9 1340 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.74392E7 -23.3 -26.5 85 100600 15 1397 181 0 1 0 0 0 0 0 60 7.9 10 10 5.9 1890 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.74428E7 -23.3 -25.0 86 100600 2 524 182 0 0 0 0 0 0 0 60 8.2 10 10 4.8 2440 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.74464E7 -23.1 -26.1 86 100700 0 0 182 0 0 0 0 0 0 0 60 7.9 10 10 5.3 1953 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.745E7 -23.0 -25.9 86 100700 0 0 182 0 0 0 0 0 0 0 70 7.5 10 10 5.9 1467 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.74536E7 -22.8 -24.4 86 100700 0 0 184 0 0 0 0 0 0 0 70 7.2 10 10 6.4 980 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.74572E7 -23.2 -26.1 86 100800 0 0 170 0 0 0 0 0 0 0 70 6.9 7 7 8.0 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.74608E7 -23.5 -26.6 86 100800 0 0 164 0 0 0 0 0 0 0 70 6.5 5 4 9.7 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.74644E7 -23.9 -25.6 86 100800 0 0 159 0 0 0 0 0 0 0 70 6.2 2 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.7468E7 -24.1 -27.2 85 100900 0 0 157 0 0 0 0 0 0 0 60 6.5 2 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.74716E7 -24.2 -27.6 83 100900 0 0 157 0 0 0 0 0 0 0 60 6.9 3 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.74752E7 -24.4 -26.7 82 101000 0 0 157 0 0 0 0 0 0 0 50 7.2 3 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.74788E7 -23.7 -26.7 85 101000 0 0 164 0 0 0 0 0 0 0 50 7.0 5 4 9.7 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.74824E7 -22.9 -25.5 88 101000 0 0 171 0 0 0 0 0 0 0 60 6.9 8 7 8.0 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.7486E7 -22.2 -23.3 91 101100 0 0 187 0 0 0 0 0 0 0 60 6.7 10 10 6.4 340 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.74896E7 -22.6 -25.1 89 101100 0 0 184 0 0 0 0 0 0 0 60 6.9 10 10 4.9 307 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.74932E7 -22.9 -25.7 88 101100 0 0 183 0 0 0 0 0 0 0 60 7.0 10 10 3.5 273 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.74968E7 -23.3 -25.0 86 101100 0 0 182 0 0 0 0 0 0 0 60 7.2 10 10 2.0 240 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.75004E7 -22.4 -25.2 86 101200 0 0 184 0 0 0 0 0 0 0 60 7.4 10 10 1.9 240 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.7504E7 -21.5 -24.3 87 101200 0 0 188 0 0 0 0 0 0 0 50 7.5 10 10 1.7 240 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.75076E7 -20.6 -22.2 87 101200 0 0 192 0 0 0 0 0 0 0 50 7.7 10 10 1.6 240 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.75112E7 -21.3 -24.4 85 101300 0 0 179 0 0 0 0 0 0 0 50 7.4 9 8 4.8 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.75148E7 -22.1 -25.3 84 101300 0 0 172 0 0 0 0 0 0 0 60 7.0 9 6 8.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.75184E7 -22.8 -25.0 82 101400 0 0 167 0 0 0 0 0 0 0 60 6.7 8 4 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.7522E7 -22.8 -26.3 82 101500 6 1177 167 2 2 1 260 0 130 39 60 6.0 9 5 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.75256E7 -22.8 -26.3 82 101500 10 1398 169 0 4 0 0 0 0 0 50 5.3 9 6 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.75292E7 -22.8 -25.0 82 101600 6 268 172 1 0 1 0 0 0 0 50 4.6 10 7 11.3 7620 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.75328E7 -23.2 -26.7 82 101600 0 0 166 0 0 0 0 0 0 0 60 5.1 8 5 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.75364E7 -23.5 -27.1 82 101700 0 0 164 0 0 0 0 0 0 0 60 5.7 7 4 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.754E7 -23.9 -26.1 82 101700 0 0 161 0 0 0 0 0 0 0 70 6.2 5 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.75436E7 -24.1 -27.4 83 101800 0 0 157 0 0 0 0 0 0 0 60 6.4 4 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.75472E7 -24.2 -27.5 85 101800 0 0 157 0 0 0 0 0 0 0 50 6.5 3 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.75508E7 -24.4 -26.1 86 101900 0 0 154 0 0 0 0 0 0 0 40 6.7 2 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.75544E7 -24.6 -27.9 83 102000 0 0 152 0 0 0 0 0 0 0 60 6.0 1 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.7558E7 -24.8 -28.5 81 102100 0 0 152 0 0 0 0 0 0 0 70 5.3 1 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.75616E7 -25.0 -27.8 78 102100 0 0 152 0 0 0 0 0 0 0 90 4.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.75652E7 -25.2 -28.9 79 102200 0 0 150 0 0 0 0 0 0 0 80 3.9 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.75688E7 -25.4 -28.9 81 102300 0 0 150 0 0 0 0 0 0 0 80 3.3 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.75724E7 -25.6 -27.8 82 102300 0 0 150 0 0 0 0 0 0 0 70 2.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.7576E7 -25.4 -29.0 81 102400 0 0 153 0 0 0 0 0 0 0 70 3.1 2 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.75796E7 -25.2 -29.0 79 102500 0 0 157 0 0 0 0 0 0 0 60 3.6 3 3 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.75832E7 -25.0 -27.8 78 102500 0 0 159 0 0 0 0 0 0 0 60 4.1 5 4 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.75868E7 -24.4 -27.8 82 102600 0 0 164 0 0 0 0 0 0 0 70 3.9 7 6 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.75904E7 -23.9 -26.7 87 102600 0 0 170 0 0 0 0 0 0 0 90 3.8 8 8 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.7594E7 -23.3 -24.4 91 102700 0 0 182 0 0 0 0 0 0 0 100 3.6 10 10 11.3 610 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.75976E7 -22.4 -24.9 90 102700 0 0 185 0 0 0 0 0 0 0 90 3.6 10 10 11.3 620 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.76012E7 -21.5 -24.2 88 102800 0 0 188 0 0 0 0 0 0 0 90 3.6 10 10 11.3 630 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.76048E7 -20.6 -22.2 87 102900 0 0 192 0 0 0 0 0 0 0 80 3.6 10 10 11.3 640 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.76084E7 -20.4 -23.1 88 102900 6 828 192 1 1 1 0 0 0 0 90 3.6 10 10 11.3 690 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.7612E7 -20.2 -22.8 90 103000 6 1340 193 1 1 1 130 0 130 39 110 3.6 10 10 11.3 740 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.76156E7 -20.0 -21.1 91 103100 0 0 195 0 0 0 0 0 0 0 120 3.6 10 10 11.3 790 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.76192E7 -19.8 -22.2 91 103100 0 0 195 0 0 0 0 0 0 0 90 3.3 10 10 11.3 820 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.76228E7 -19.6 -22.1 91 103100 0 0 195 0 0 0 0 0 0 0 70 2.9 10 10 11.3 850 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.76264E7 -19.4 -20.6 91 103200 0 0 197 0 0 0 0 0 0 0 40 2.6 10 10 11.3 880 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.763E7 -19.8 -22.4 90 103200 0 0 195 0 0 0 0 0 0 0 60 3.1 10 10 11.3 880 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.76336E7 -20.2 -23.1 88 103300 0 0 193 0 0 0 0 0 0 0 90 3.6 10 10 11.3 880 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.76372E7 -20.6 -22.2 87 103300 0 0 192 0 0 0 0 0 0 0 110 4.1 10 10 11.3 880 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.76408E7 -20.6 -23.5 87 103300 0 0 191 0 0 0 0 0 0 0 100 3.9 10 10 11.3 913 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.76444E7 -20.6 -23.5 87 103400 0 0 186 0 0 0 0 0 0 0 100 3.8 10 9 11.3 947 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.7648E7 -20.6 -22.2 87 103400 0 0 187 0 0 0 0 0 0 0 90 3.6 10 9 11.3 980 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.76516E7 -21.5 -24.2 87 103400 0 0 174 0 0 0 0 0 0 0 90 4.1 8 6 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.76552E7 -22.4 -25.2 86 103400 0 0 168 0 0 0 0 0 0 0 90 4.7 5 4 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.76588E7 -23.3 -25.0 86 103500 0 0 161 0 0 0 0 0 0 0 90 5.2 3 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.76624E7 -24.2 -27.3 85 103500 0 0 157 0 0 0 0 0 0 0 90 5.2 2 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.7666E7 -25.2 -28.4 83 103500 0 0 151 0 0 0 0 0 0 0 90 5.2 2 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.76696E7 -26.1 -28.3 82 103500 0 0 149 0 0 0 0 0 0 0 90 5.2 1 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.76732E7 -25.9 -29.7 79 103500 0 0 148 0 0 0 0 0 0 0 90 5.4 1 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.76768E7 -25.8 -29.8 77 103500 0 0 148 0 0 0 0 0 0 0 80 5.5 1 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.76804E7 -25.6 -28.9 74 103500 0 0 149 0 0 0 0 0 0 0 80 5.7 1 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.7684E7 -25.6 -29.9 75 103500 0 0 149 0 0 0 0 0 0 0 80 5.7 1 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.76876E7 -25.6 -29.7 77 103500 0 0 149 0 0 0 0 0 0 0 90 5.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.76912E7 -25.6 -28.3 78 103500 0 0 150 0 0 0 0 0 0 0 90 5.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.76948E7 -25.6 -29.6 78 103500 0 361 149 0 0 0 0 0 0 0 90 5.9 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.76984E7 -25.6 -29.6 78 103500 1 875 149 0 0 0 0 0 0 0 80 6.0 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.7702E7 -25.6 -28.3 78 103500 0 0 150 0 0 0 0 0 0 0 80 6.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.77056E7 -25.4 -29.4 78 103500 0 0 150 0 0 0 0 0 0 0 90 5.9 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.77092E7 -25.2 -29.3 78 103500 0 0 150 0 0 0 0 0 0 0 90 5.5 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.77128E7 -25.0 -27.8 78 103500 0 0 152 0 0 0 0 0 0 0 100 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.77164E7 -24.8 -29.1 77 103600 0 0 151 0 0 0 0 0 0 0 100 5.2 1 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.772E7 -24.6 -29.2 75 103600 0 0 155 0 0 0 0 0 0 0 90 5.2 2 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.77236E7 -24.4 -27.8 74 103600 0 0 156 0 0 0 0 0 0 0 90 5.2 3 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.77272E7 -24.2 -28.5 77 103600 0 0 156 0 0 0 0 0 0 0 80 5.9 2 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.77308E7 -24.1 -28.0 79 103700 0 0 154 0 0 0 0 0 0 0 80 6.5 1 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.77344E7 -23.9 -26.1 82 103700 0 0 155 0 0 0 0 0 0 0 70 7.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.7738E7 -23.7 -26.8 83 103800 0 0 155 0 0 0 0 0 0 0 70 7.4 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.77416E7 -23.5 -26.5 85 103800 0 0 156 0 0 0 0 0 0 0 80 7.5 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.77452E7 -23.3 -25.0 86 103900 0 0 158 0 0 0 0 0 0 0 80 7.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.77488E7 -23.3 -26.2 86 103800 0 0 157 0 0 0 0 0 0 0 80 7.9 1 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.77524E7 -23.3 -26.2 86 103800 0 0 160 0 0 0 0 0 0 0 80 8.0 2 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.7756E7 -23.3 -25.0 86 103700 0 0 161 0 0 0 0 0 0 0 80 8.2 3 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.77596E7 -22.9 -26.0 85 103800 0 0 161 0 0 0 0 0 0 0 80 8.6 4 1 9.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.77632E7 -22.6 -25.7 83 103800 0 0 164 0 0 0 0 0 0 0 80 8.9 5 2 7.0 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.77668E7 -22.2 -24.4 82 103800 0 0 166 0 0 0 0 0 0 0 80 9.3 6 2 4.8 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.77704E7 -21.7 -25.3 81 103800 0 0 169 0 0 0 0 0 0 0 90 9.8 7 3 3.5 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.7774E7 -21.1 -24.9 80 103700 0 0 170 0 0 0 0 0 0 0 90 10.3 9 3 2.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.77776E7 -20.6 -23.3 79 103700 0 0 174 0 0 0 0 0 0 0 100 10.8 10 4 0.8 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.77812E7 -20.4 -24.2 80 103600 0 0 177 0 0 0 0 0 0 0 100 11.5 10 6 0.7 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.77848E7 -20.2 -23.9 82 103600 0 0 183 0 0 0 0 0 0 0 100 12.2 10 8 0.7 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.77884E7 -20.0 -22.2 83 103500 0 0 194 0 0 0 0 0 0 0 100 12.9 10 10 0.6 2440 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.7792E7 -19.4 -22.6 86 103500 0 0 196 0 0 0 0 0 0 0 100 13.1 10 10 0.8 2743 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.77956E7 -18.9 -21.7 88 103400 0 0 198 0 0 0 0 0 0 0 110 13.2 10 10 1.1 3047 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.77992E7 -18.3 -19.4 91 103300 0 0 202 0 0 0 0 0 0 0 110 13.4 10 10 1.3 3350 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.78028E7 -17.4 -20.5 86 103200 0 0 204 0 0 0 0 0 0 0 110 13.7 10 10 1.4 3350 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.78064E7 -16.5 -20.5 81 103200 0 0 206 0 0 0 0 0 0 0 120 14.1 10 10 1.5 3350 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.781E7 -15.6 -18.9 76 103100 0 0 211 0 0 0 0 0 0 0 120 14.4 10 10 1.6 3350 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.78136E7 -15.4 -19.4 80 103000 0 0 211 0 0 0 0 0 0 0 120 13.9 10 10 1.7 3350 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.78172E7 -15.2 -18.7 83 102900 0 0 212 0 0 0 0 0 0 0 120 13.4 10 10 1.9 3350 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.78208E7 -15.0 -16.7 87 102900 0 0 215 0 0 0 0 0 0 0 120 12.9 10 10 2.0 3350 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.78244E7 -14.8 -17.4 88 102800 0 0 215 0 0 0 0 0 0 0 120 13.2 10 10 2.0 3250 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.7828E7 -14.6 -17.1 90 102700 0 0 216 0 0 0 0 0 0 0 110 13.6 10 10 2.0 3150 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.78316E7 -14.4 -15.6 91 102700 0 0 218 0 0 0 0 0 0 0 110 13.9 10 10 2.0 3050 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.78352E7 -14.0 -16.6 90 102700 0 0 218 0 0 0 0 0 0 0 120 11.8 10 10 2.9 3050 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.78388E7 -13.7 -16.4 88 102700 0 0 219 0 0 0 0 0 0 0 120 9.8 10 10 3.9 3050 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.78424E7 -13.3 -15.0 87 102700 0 0 222 0 0 0 0 0 0 0 130 7.7 10 10 4.8 3050 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.7846E7 -13.5 -16.4 87 102700 0 0 206 0 0 0 0 0 0 0 130 7.4 7 7 7.0 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.78496E7 -13.7 -16.5 87 102700 0 0 201 0 0 0 0 0 0 0 120 7.0 5 5 9.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.78532E7 -13.9 -15.6 87 102700 0 0 196 0 0 0 0 0 0 0 120 6.7 2 2 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.78568E7 -14.5 -17.9 83 102700 0 0 190 0 0 0 0 0 0 0 120 6.5 1 1 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.78604E7 -15.0 -19.0 80 102700 0 0 188 0 0 0 0 0 0 0 120 6.4 1 1 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.7864E7 -15.6 -18.9 76 102700 0 0 183 0 0 0 0 0 0 0 120 6.2 0 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.78676E7 -15.6 -19.6 80 102700 0 0 182 0 0 0 0 0 0 0 120 5.5 0 0 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.78712E7 -15.6 -19.1 83 102700 0 0 183 0 0 0 0 0 0 0 110 4.8 1 0 11.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.78748E7 -15.6 -17.2 87 102700 0 0 184 0 0 0 0 0 0 0 110 4.1 1 0 11.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.78784E7 -15.6 -18.5 87 102700 0 0 186 0 0 0 0 0 0 0 100 4.8 3 1 11.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.7882E7 -15.6 -18.5 87 102700 0 0 191 0 0 0 0 0 0 0 90 5.5 6 3 11.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.78856E7 -15.6 -17.2 87 102700 0 0 193 0 0 0 0 0 0 0 80 6.2 8 4 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.78892E7 -15.6 -18.7 86 102700 0 0 192 0 0 0 0 0 0 0 80 6.4 8 4 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.78928E7 -15.6 -19.0 84 102700 0 0 192 0 0 0 0 0 0 0 90 6.5 9 4 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.78964E7 -15.6 -17.8 83 102700 0 0 193 0 0 0 0 0 0 0 90 6.7 9 4 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.79E7 -15.4 -18.5 86 102700 0 0 191 0 0 0 0 0 0 0 80 6.7 8 3 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.79036E7 -15.2 -18.0 88 102700 0 0 192 0 0 0 0 0 0 0 80 6.7 8 3 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.79072E7 -15.0 -16.1 91 102700 0 0 193 0 0 0 0 0 0 0 70 6.7 7 2 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.79108E7 -14.6 -16.6 93 102800 0 0 193 0 0 0 0 0 0 0 70 6.0 6 2 11.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.79144E7 -14.3 -16.1 94 102800 0 0 195 0 0 0 0 0 0 0 70 5.3 6 2 11.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.7918E7 -13.9 -14.4 96 102800 0 0 197 0 0 0 0 0 0 0 70 4.6 5 2 11.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.79216E7 -13.9 -15.8 94 102800 0 0 198 0 0 0 0 0 0 0 70 5.1 5 3 11.3 2000 9 999999999 10 0.0000 0 88 0.000 0.0 1.0 +2.79252E7 -13.9 -16.0 93 102900 0 0 198 0 0 0 0 0 0 0 70 5.7 5 3 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.79288E7 -13.9 -15.0 91 102900 0 0 200 0 0 0 0 0 0 0 70 6.2 5 4 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.79324E7 -14.3 -16.7 90 102900 0 0 198 0 0 0 0 0 0 0 70 5.9 4 4 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.7936E7 -14.6 -17.3 88 103000 0 0 195 0 0 0 0 0 0 0 80 5.5 4 3 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.79396E7 -15.0 -16.7 87 103000 0 0 194 0 0 0 0 0 0 0 80 5.2 3 3 11.3 2000 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +2.79432E7 -14.4 -17.2 88 103100 0 0 199 0 0 0 0 0 0 0 90 5.9 5 5 11.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.79468E7 -13.9 -16.4 90 103100 0 0 208 0 0 0 0 0 0 0 90 6.5 8 8 11.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.79504E7 -13.3 -14.4 91 103200 0 0 222 0 0 0 0 0 0 0 100 7.2 10 10 11.3 2440 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.7954E7 -13.1 -15.5 91 103200 0 0 222 0 0 0 0 0 0 0 100 7.7 10 10 11.3 2440 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +2.79576E7 -13.0 -15.4 91 103200 0 0 223 0 0 0 0 0 0 0 100 8.3 10 10 11.3 2440 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.79612E7 -12.8 -13.9 91 103300 0 0 225 0 0 0 0 0 0 0 100 8.8 10 10 11.3 2440 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.79648E7 -12.8 -14.8 94 103300 0 0 224 0 0 0 0 0 0 0 100 10.3 10 10 8.6 2440 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.79684E7 -12.8 -14.5 97 103300 0 0 224 0 0 0 0 0 0 0 100 11.9 10 10 5.9 2440 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.7972E7 -12.8 -12.8 100 103300 0 0 226 0 0 0 0 0 0 0 100 13.4 10 10 3.2 2440 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.79756E7 -12.8 -14.3 99 103300 0 0 213 0 0 0 0 0 0 0 100 13.9 10 8 2.9 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.79792E7 -12.8 -14.5 97 103400 0 0 210 0 0 0 0 0 0 0 110 14.4 10 7 2.7 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.79828E7 -12.8 -13.3 96 103400 0 0 207 0 0 0 0 0 0 0 110 14.9 10 5 2.4 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.79864E7 -12.8 -14.8 94 103400 0 0 207 0 0 0 0 0 0 0 110 14.7 10 6 2.4 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.799E7 -12.8 -15.0 93 103400 0 0 207 0 0 0 0 0 0 0 110 14.6 10 6 2.4 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.79936E7 -12.8 -13.9 91 103500 0 0 210 0 0 0 0 0 0 0 110 14.4 10 7 2.4 6100 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.79972E7 -12.8 -15.2 90 103500 0 0 209 0 0 0 0 0 0 0 110 13.7 10 7 3.2 6100 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.80008E7 -12.8 -15.3 88 103500 0 0 209 0 0 0 0 0 0 0 110 13.1 10 7 4.0 6100 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.80044E7 -12.8 -14.4 87 103500 0 0 210 0 0 0 0 0 0 0 110 12.4 10 7 4.8 6100 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.8008E7 -13.0 -16.0 86 103500 0 0 211 0 0 0 0 0 0 0 110 11.5 10 8 7.0 6100 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.80116E7 -13.1 -16.4 85 103500 0 0 215 0 0 0 0 0 0 0 110 10.7 10 9 9.1 6100 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.80152E7 -13.3 -15.6 84 103500 0 0 221 0 0 0 0 0 0 0 110 9.8 10 10 11.3 6100 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.80188E7 -13.3 -16.8 84 103500 0 0 206 0 0 0 0 0 0 0 110 10.3 7 7 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.80224E7 -13.3 -16.7 84 103400 0 0 202 0 0 0 0 0 0 0 110 10.8 5 5 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.8026E7 -13.3 -15.6 84 103400 0 0 198 0 0 0 0 0 0 0 110 11.3 2 2 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.80296E7 -12.8 -16.6 82 103400 0 0 199 0 0 0 0 0 0 0 110 10.8 2 2 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.80332E7 -12.2 -16.4 79 103300 0 0 198 0 0 0 0 0 0 0 110 10.3 3 1 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.80368E7 -11.7 -15.0 77 103300 0 0 201 0 0 0 0 0 0 0 110 9.8 3 1 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.80404E7 -12.1 -16.7 77 103300 0 0 198 0 0 0 0 0 0 0 110 9.8 4 1 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.8044E7 -12.4 -17.0 76 103200 0 0 200 0 0 0 0 0 0 0 110 9.8 6 2 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.80476E7 -12.8 -16.1 76 103200 0 0 199 0 0 0 0 0 0 0 110 9.8 7 2 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.80512E7 -13.3 -18.1 75 103200 0 0 194 0 0 0 0 0 0 0 110 8.1 5 1 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.80548E7 -13.9 -18.9 74 103200 0 0 191 0 0 0 0 0 0 0 110 6.3 2 1 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.80584E7 -14.4 -18.3 73 103200 0 0 187 0 0 0 0 0 0 0 110 4.6 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.8062E7 -14.8 -19.8 74 103200 0 0 184 0 0 0 0 0 0 0 110 4.6 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.80656E7 -15.2 -20.1 75 103200 0 0 183 0 0 0 0 0 0 0 100 4.6 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.80692E7 -15.6 -18.9 76 103200 0 0 183 0 0 0 0 0 0 0 100 4.6 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.80728E7 -15.8 -20.2 77 103200 0 0 181 0 0 0 0 0 0 0 70 3.1 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.80764E7 -15.9 -20.2 78 103200 0 0 181 0 0 0 0 0 0 0 30 1.5 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.808E7 -16.1 -18.9 79 103200 0 0 181 0 0 0 0 0 0 0 0 0.0 0 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.80836E7 -15.9 -20.0 78 103200 0 0 181 0 0 0 0 0 0 0 0 0.0 0 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.80872E7 -15.8 -20.0 77 103100 0 0 181 0 0 0 0 0 0 0 0 0.0 0 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.80908E7 -15.6 -18.9 76 103100 0 0 183 0 0 0 0 0 0 0 0 0.0 0 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.80944E7 -15.0 -19.2 78 103100 0 0 184 0 0 0 0 0 0 0 360 0.5 0 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.8098E7 -14.5 -18.3 81 103100 0 0 186 0 0 0 0 0 0 0 350 1.0 0 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.81016E7 -13.9 -16.1 83 103100 0 0 190 0 0 0 0 0 0 0 350 1.5 0 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.81052E7 -12.8 -16.0 85 103100 0 0 193 0 0 0 0 0 0 0 340 1.9 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.81088E7 -11.7 -14.6 86 103100 0 0 197 0 0 0 0 0 0 0 340 2.2 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.81124E7 -10.6 -12.2 88 103200 0 0 203 0 0 0 0 0 0 0 330 2.6 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.8116E7 -10.2 -13.3 87 103200 0 0 207 0 0 0 0 0 0 0 320 2.8 2 1 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.81196E7 -9.8 -13.1 85 103200 0 0 208 0 0 0 0 0 0 0 310 2.9 3 1 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.81232E7 -9.4 -11.7 84 103200 0 0 214 0 0 0 0 0 0 0 300 3.1 5 2 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.81268E7 -9.4 -13.0 84 103200 0 0 213 0 0 0 0 0 0 0 310 3.1 6 2 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.81304E7 -9.4 -13.0 84 103200 0 0 215 0 0 0 0 0 0 0 310 3.1 7 3 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.8134E7 -9.4 -11.7 84 103200 0 0 216 0 0 0 0 0 0 0 320 3.1 8 3 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.81376E7 -9.6 -13.2 84 103200 0 0 214 0 0 0 0 0 0 0 320 2.6 8 3 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.81412E7 -9.8 -13.4 84 103200 0 0 211 0 0 0 0 0 0 0 310 2.0 9 2 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.81448E7 -10.0 -12.2 84 103200 0 0 211 0 0 0 0 0 0 0 310 1.5 9 2 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.81484E7 -10.4 -13.7 85 103200 0 0 209 0 0 0 0 0 0 0 330 1.0 8 2 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.8152E7 -10.7 -14.0 87 103200 0 0 205 0 0 0 0 0 0 0 340 0.5 8 1 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.81556E7 -11.1 -12.8 88 103200 0 0 204 0 0 0 0 0 0 0 0 0.0 7 1 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.81592E7 -12.0 -14.8 89 103100 0 0 200 0 0 0 0 0 0 0 310 1.0 5 1 7.8 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.81628E7 -13.0 -15.6 90 103100 0 0 199 0 0 0 0 0 0 0 270 2.1 4 2 4.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.81664E7 -13.9 -15.0 91 103000 0 0 197 0 0 0 0 0 0 0 220 3.1 2 2 0.8 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.817E7 -13.0 -15.4 90 103000 0 0 197 0 0 0 0 0 0 0 230 2.9 1 1 4.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.81736E7 -12.0 -14.6 89 102900 0 0 200 0 0 0 0 0 0 0 230 2.8 1 1 7.8 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.81772E7 -11.1 -12.8 88 102900 0 0 201 0 0 0 0 0 0 0 240 2.6 0 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.81808E7 -10.5 -13.6 87 102800 0 0 202 0 0 0 0 0 0 0 240 2.8 0 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.81844E7 -10.0 -13.3 85 102700 0 0 204 0 0 0 0 0 0 0 250 2.9 0 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.8188E7 -9.4 -11.7 84 102700 0 0 207 0 0 0 0 0 0 0 250 3.1 0 0 11.3 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.81916E7 -9.2 -12.7 84 102600 0 0 207 0 0 0 0 0 0 0 250 3.4 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.81952E7 -9.1 -12.4 84 102500 0 0 207 0 0 0 0 0 0 0 240 3.8 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.81988E7 -8.9 -11.1 84 102400 0 0 209 0 0 0 0 0 0 0 240 4.1 0 0 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.82024E7 -8.9 -12.9 81 102300 0 0 211 0 0 0 0 0 0 0 250 4.5 1 1 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.8206E7 -8.9 -13.5 77 102300 0 0 211 0 0 0 0 0 0 0 260 4.8 1 1 11.3 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.82096E7 -8.9 -12.8 74 102200 0 0 214 0 0 0 0 0 0 0 270 5.2 2 2 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.82132E7 -9.6 -14.3 77 102200 0 0 216 0 0 0 0 0 0 0 290 6.0 5 5 8.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.82168E7 -10.4 -14.4 81 102100 0 0 218 0 0 0 0 0 0 0 300 6.9 7 7 4.8 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.82204E7 -11.1 -13.3 84 102100 0 0 231 0 0 0 0 0 0 0 320 7.7 10 10 1.6 120 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.8224E7 -11.3 -14.8 84 102000 0 0 229 0 0 0 0 0 0 0 320 7.5 10 10 4.3 160 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.82276E7 -11.5 -15.0 84 102000 0 0 228 0 0 0 0 0 0 0 320 7.4 10 10 7.0 200 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.82312E7 -11.7 -13.9 84 101900 0 0 228 0 0 0 0 0 0 0 320 7.2 10 10 9.7 240 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.82348E7 -11.5 -14.8 85 101900 0 0 228 0 0 0 0 0 0 0 330 7.0 10 10 7.5 423 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.82384E7 -11.3 -14.6 87 101900 0 0 223 0 0 0 0 0 0 0 330 6.9 10 9 5.4 607 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.8242E7 -11.1 -12.8 88 101900 0 0 225 0 0 0 0 0 0 0 340 6.7 10 9 3.2 790 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.82456E7 -11.3 -14.8 84 102000 0 0 223 0 0 0 0 0 0 0 340 7.9 10 9 3.2 640 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.82492E7 -11.5 -15.6 81 102000 0 0 221 0 0 0 0 0 0 0 350 9.1 9 9 3.2 490 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.82528E7 -11.7 -15.0 77 102000 0 0 221 0 0 0 0 0 0 0 350 10.3 9 9 3.2 340 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.82564E7 -12.2 -16.5 78 102100 0 0 218 0 0 0 0 0 0 0 350 10.0 9 9 3.2 340 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.826E7 -12.8 -16.8 79 102200 0 0 222 0 0 0 0 0 0 0 350 9.6 10 10 3.2 340 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.82636E7 -13.3 -16.1 80 102300 0 0 221 0 0 0 0 0 0 0 350 9.3 10 10 3.2 340 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.82672E7 -13.7 -18.0 78 102400 0 0 204 0 0 0 0 0 0 0 350 9.3 8 7 4.8 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.82708E7 -14.0 -18.8 75 102500 0 0 198 0 0 0 0 0 0 0 350 9.3 6 5 6.4 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.82744E7 -14.4 -18.3 73 102600 0 0 193 0 0 0 0 0 0 0 350 9.3 4 2 8.0 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.8278E7 -15.0 -20.2 72 102700 0 0 187 0 0 0 0 0 0 0 350 8.6 3 1 9.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.82816E7 -15.5 -21.0 70 102800 0 0 185 0 0 0 0 0 0 0 340 7.9 3 1 10.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.82852E7 -16.1 -20.6 69 102900 0 0 180 0 0 0 0 0 0 0 340 7.2 2 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.82888E7 -16.7 -22.6 68 103000 0 0 177 0 0 0 0 0 0 0 340 7.2 1 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.82924E7 -17.2 -23.3 66 103100 0 0 175 0 0 0 0 0 0 0 350 7.2 1 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.8296E7 -17.8 -22.8 65 103200 0 0 174 0 0 0 0 0 0 0 350 7.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.82996E7 -18.2 -24.1 67 103200 0 0 172 0 0 0 0 0 0 0 350 6.9 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.83032E7 -18.5 -24.1 70 103200 0 0 171 0 0 0 0 0 0 0 340 6.5 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.83068E7 -18.9 -22.8 72 103200 0 0 171 0 0 0 0 0 0 0 340 6.2 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.83104E7 -19.3 -24.5 72 103200 0 0 168 0 0 0 0 0 0 0 340 6.2 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.8314E7 -19.6 -24.9 71 103300 0 0 167 0 0 0 0 0 0 0 330 6.2 1 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.83176E7 -20.0 -23.9 71 103300 0 0 167 0 0 0 0 0 0 0 330 6.2 1 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.83212E7 -20.0 -25.6 69 103300 0 0 166 0 0 0 0 0 0 0 330 6.9 1 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.83248E7 -20.0 -26.0 67 103300 0 0 165 0 0 0 0 0 0 0 340 7.5 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.83284E7 -20.0 -25.0 65 103300 0 0 166 0 0 0 0 0 0 0 340 8.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.8332E7 -20.4 -26.5 66 103300 0 0 164 0 0 0 0 0 0 0 340 7.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.83356E7 -20.7 -26.7 67 103300 0 0 163 0 0 0 0 0 0 0 340 6.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.83392E7 -21.1 -25.6 68 103300 0 0 163 0 0 0 0 0 0 0 340 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.83428E7 -21.3 -26.7 69 103200 0 0 162 0 0 0 0 0 0 0 340 5.0 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.83464E7 -21.5 -26.7 70 103200 0 0 161 0 0 0 0 0 0 0 350 4.8 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.835E7 -21.7 -25.6 71 103200 0 0 161 0 0 0 0 0 0 0 350 4.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.83536E7 -21.7 -26.4 73 103200 0 0 161 0 0 0 0 0 0 0 350 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.83572E7 -21.7 -26.0 76 103100 0 0 164 0 0 0 0 0 0 0 350 3.6 1 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.83608E7 -21.7 -24.4 78 103100 0 0 165 0 0 0 0 0 0 0 350 3.1 1 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.83644E7 -21.9 -26.1 76 103100 0 0 164 0 0 0 0 0 0 0 340 3.3 1 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.8368E7 -22.0 -26.7 73 103000 0 0 163 0 0 0 0 0 0 0 340 3.4 1 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.83716E7 -22.2 -26.1 71 103000 0 0 163 0 0 0 0 0 0 0 330 3.6 1 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.83752E7 -21.8 -27.2 70 102900 0 0 163 0 0 0 0 0 0 0 320 3.1 1 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.83788E7 -21.5 -27.0 69 102900 0 0 166 0 0 0 0 0 0 0 320 2.6 2 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.83824E7 -21.1 -25.6 68 102900 0 0 168 0 0 0 0 0 0 0 310 2.1 2 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.8386E7 -21.8 -27.4 69 102800 0 0 165 0 0 0 0 0 0 0 270 2.1 3 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.83896E7 -22.6 -28.0 70 102700 0 0 163 0 0 0 0 0 0 0 230 2.1 4 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.83932E7 -23.3 -27.2 71 102600 0 0 161 0 0 0 0 0 0 0 190 2.1 5 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.83968E7 -23.5 -28.7 71 102500 0 0 160 0 0 0 0 0 0 0 190 2.4 6 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.84004E7 -23.7 -28.9 70 102500 0 0 161 0 0 0 0 0 0 0 200 2.8 7 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.8404E7 -23.9 -27.8 70 102400 0 0 161 0 0 0 0 0 0 0 200 3.1 8 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.84076E7 -24.1 -29.3 70 102400 0 0 159 0 0 0 0 0 0 0 200 3.4 9 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.84112E7 -24.2 -29.5 70 102300 0 0 160 0 0 0 0 0 0 0 200 3.8 9 4 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.84148E7 -24.4 -28.3 70 102300 0 0 161 0 0 0 0 0 0 0 200 4.1 10 4 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.84184E7 -25.2 -30.5 69 102200 0 0 156 0 0 0 0 0 0 0 200 4.3 9 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.8422E7 -25.9 -31.5 67 102100 0 0 153 0 0 0 0 0 0 0 210 4.4 7 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.84256E7 -26.7 -31.1 66 102100 0 0 150 0 0 0 0 0 0 0 210 4.6 6 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.84292E7 -25.6 -30.9 68 102000 0 0 156 0 0 0 0 0 0 0 210 4.3 7 4 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.84328E7 -24.4 -29.6 69 101900 0 0 164 0 0 0 0 0 0 0 210 3.9 9 7 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.84364E7 -23.3 -27.2 71 101900 0 0 175 0 0 0 0 0 0 0 210 3.6 10 9 11.3 3350 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.844E7 -23.7 -29.3 67 101900 0 0 166 0 0 0 0 0 0 0 210 3.8 8 7 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.84436E7 -24.0 -30.3 64 101900 0 0 160 0 0 0 0 0 0 0 200 3.9 5 4 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.84472E7 -24.4 -30.0 60 101900 0 0 157 0 0 0 0 0 0 0 200 4.1 3 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.84508E7 -24.0 -30.6 61 101800 0 0 160 0 0 0 0 0 0 0 200 3.9 5 4 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.84544E7 -23.7 -30.0 63 101800 0 0 166 0 0 0 0 0 0 0 210 3.8 7 7 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.8458E7 -23.3 -28.3 64 101700 0 0 174 0 0 0 0 0 0 0 210 3.6 9 9 11.3 3350 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.84616E7 -23.3 -29.0 67 101700 0 0 174 0 0 0 0 0 0 0 210 3.4 9 9 11.3 2610 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.84652E7 -23.3 -28.5 71 101700 0 0 174 0 0 0 0 0 0 0 200 3.3 10 9 11.3 1870 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.84688E7 -23.3 -26.7 74 101700 0 0 176 0 0 0 0 0 0 0 200 3.1 10 9 11.3 1130 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.84724E7 -20.9 -25.4 76 101700 0 0 184 0 0 0 0 0 0 0 220 3.3 10 9 11.3 1017 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.8476E7 -18.5 -22.8 77 101700 0 0 198 0 0 0 0 0 0 0 230 3.4 10 10 11.3 903 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.84796E7 -16.1 -18.9 79 101700 0 0 209 0 0 0 0 0 0 0 250 3.6 10 10 11.3 790 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.84832E7 -15.5 -19.5 80 101700 0 0 211 0 0 0 0 0 0 0 280 4.3 10 10 9.7 670 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.84868E7 -15.0 -18.8 82 101700 0 0 213 0 0 0 0 0 0 0 300 5.0 10 10 8.0 550 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.84904E7 -14.4 -16.7 83 101700 0 0 217 0 0 0 0 0 0 0 330 5.7 10 10 6.4 430 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.8494E7 -15.5 -19.1 83 101700 0 0 211 0 0 0 0 0 0 0 330 6.5 10 10 7.5 410 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.84976E7 -16.7 -20.3 83 101800 0 0 206 0 0 0 0 0 0 0 330 7.4 10 10 8.6 390 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.85012E7 -17.8 -20.0 83 101800 0 0 203 0 0 0 0 0 0 0 330 8.2 10 10 9.7 370 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.85048E7 -18.5 -22.2 82 101900 0 0 189 0 0 0 0 0 0 0 330 7.5 8 8 10.2 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.85084E7 -19.3 -23.2 80 102000 0 0 179 0 0 0 0 0 0 0 330 6.9 5 5 10.8 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.8512E7 -20.0 -22.8 79 102000 0 0 175 0 0 0 0 0 0 0 330 6.2 3 3 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.85156E7 -20.7 -24.8 77 102000 0 0 170 0 0 0 0 0 0 0 330 6.4 2 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.85192E7 -21.5 -25.8 76 102100 0 0 167 0 0 0 0 0 0 0 340 6.5 2 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.85228E7 -22.2 -25.6 74 102100 0 0 163 0 0 0 0 0 0 0 340 6.7 1 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.85264E7 -22.8 -27.3 74 102100 0 0 160 0 0 0 0 0 0 0 340 6.5 1 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.853E7 -23.3 -27.9 74 102100 0 0 156 0 0 0 0 0 0 0 330 6.4 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.85336E7 -23.9 -27.2 74 102100 0 0 155 0 0 0 0 0 0 0 330 6.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.85372E7 -24.1 -28.6 74 102100 0 0 153 0 0 0 0 0 0 0 330 5.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.85408E7 -24.2 -28.7 74 102200 0 0 156 0 0 0 0 0 0 0 330 5.1 1 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.85444E7 -24.4 -27.8 74 102200 0 0 156 0 0 0 0 0 0 0 330 4.6 1 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.8548E7 -24.4 -28.8 75 102200 0 0 155 0 0 0 0 0 0 0 330 4.8 1 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.85516E7 -24.4 -28.6 77 102200 0 0 152 0 0 0 0 0 0 0 330 5.0 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.85552E7 -24.4 -27.2 78 102200 0 0 153 0 0 0 0 0 0 0 330 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.85588E7 -24.6 -28.7 78 102300 0 0 152 0 0 0 0 0 0 0 340 4.8 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.85624E7 -24.8 -28.9 78 102300 0 0 151 0 0 0 0 0 0 0 340 4.5 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.8566E7 -25.0 -27.8 78 102300 0 0 152 0 0 0 0 0 0 0 350 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.85696E7 -25.2 -29.5 77 102300 0 0 150 0 0 0 0 0 0 0 340 4.3 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.85732E7 -25.4 -29.9 75 102300 0 0 149 0 0 0 0 0 0 0 340 4.4 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.85768E7 -25.6 -28.9 74 102300 0 0 149 0 0 0 0 0 0 0 330 4.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.85804E7 -25.8 -30.2 75 102300 0 0 148 0 0 0 0 0 0 0 340 3.9 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.8584E7 -25.9 -30.3 77 102300 0 0 148 0 0 0 0 0 0 0 340 3.3 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.85876E7 -26.1 -28.9 78 102300 0 0 148 0 0 0 0 0 0 0 350 2.6 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.85912E7 -25.9 -30.2 77 102300 0 0 148 0 0 0 0 0 0 0 350 2.8 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.85948E7 -25.8 -30.2 75 102300 0 0 148 0 0 0 0 0 0 0 350 2.9 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.85984E7 -25.6 -28.9 74 102300 0 0 149 0 0 0 0 0 0 0 350 3.1 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.8602E7 -25.8 -29.8 77 102300 0 0 148 0 0 0 0 0 0 0 350 2.9 2 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.86056E7 -25.9 -29.6 79 102200 0 0 151 0 0 0 0 0 0 0 350 2.8 5 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.86092E7 -26.1 -28.3 82 102200 0 0 151 0 0 0 0 0 0 0 350 2.6 7 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.86128E7 -26.3 -30.1 79 102200 0 0 150 0 0 0 0 0 0 0 360 2.4 7 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.86164E7 -26.5 -30.7 76 102200 0 0 149 0 0 0 0 0 0 0 20 2.3 8 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.862E7 -26.7 -30.0 73 102100 0 0 149 0 0 0 0 0 0 0 30 2.1 8 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.86236E7 -26.7 -31.0 74 102100 0 0 148 0 0 0 0 0 0 0 20 2.3 5 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.86272E7 -26.7 -30.7 76 102100 0 0 146 0 0 0 0 0 0 0 20 2.4 3 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.86308E7 -26.7 -29.4 77 102100 0 0 146 0 0 0 0 0 0 0 10 2.6 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.86344E7 -26.5 -30.5 77 102100 0 0 146 0 0 0 0 0 0 0 20 2.8 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.8638E7 -26.3 -30.3 78 102100 0 0 147 0 0 0 0 0 0 0 20 2.9 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.86416E7 -26.1 -28.9 78 102100 0 0 148 0 0 0 0 0 0 0 30 3.1 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.86452E7 -25.9 -30.0 78 102100 0 0 148 0 0 0 0 0 0 0 10 3.3 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.86488E7 -25.8 -29.8 78 102000 0 0 148 0 0 0 0 0 0 0 360 3.4 1 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.86524E7 -25.6 -28.3 78 102000 0 0 150 0 0 0 0 0 0 0 340 3.6 1 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.8656E7 -26.1 -30.2 78 102000 0 0 147 0 0 0 0 0 0 0 340 3.1 1 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.86596E7 -26.7 -30.8 77 102000 0 0 145 0 0 0 0 0 0 0 340 2.6 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.86632E7 -27.2 -30.0 77 102000 0 0 145 0 0 0 0 0 0 0 340 2.1 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.86668E7 -27.6 -31.7 77 102000 0 0 143 0 0 0 0 0 0 0 350 2.3 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.86704E7 -27.9 -32.1 77 102000 0 0 142 0 0 0 0 0 0 0 10 2.4 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.8674E7 -28.3 -31.1 77 102000 0 0 142 0 0 0 0 0 0 0 20 2.6 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.86776E7 -28.7 -32.7 77 102000 0 0 140 0 0 0 0 0 0 0 40 2.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.86812E7 -29.0 -33.1 77 102000 0 0 139 0 0 0 0 0 0 0 70 1.9 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.86848E7 -29.4 -32.2 77 102000 0 0 138 0 0 0 0 0 0 0 90 1.5 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.86884E7 -29.6 -33.5 77 102000 0 0 137 0 0 0 0 0 0 0 100 1.5 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.8692E7 -29.8 -33.7 77 102000 0 0 136 0 0 0 0 0 0 0 100 1.5 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.86956E7 -30.0 -32.8 77 102000 0 0 137 0 0 0 0 0 0 0 110 1.5 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.86992E7 -29.8 -33.8 77 102000 0 0 136 0 0 0 0 0 0 0 120 2.0 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.87028E7 -29.6 -33.6 77 102000 0 0 137 0 0 0 0 0 0 0 120 2.6 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.87064E7 -29.4 -32.2 77 102000 0 0 138 0 0 0 0 0 0 0 130 3.1 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.871E7 -30.0 -34.5 73 102000 0 0 140 0 0 0 0 0 0 0 150 2.9 3 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.87136E7 -30.5 -35.6 69 102000 0 0 141 0 0 0 0 0 0 0 180 2.8 6 4 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.87172E7 -31.1 -35.6 65 102000 0 0 142 0 0 0 0 0 0 0 200 2.6 9 6 11.3 2440 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.87208E7 -30.5 -35.9 68 102000 0 0 143 0 0 0 0 0 0 0 190 2.6 9 6 11.3 2440 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.87244E7 -30.0 -35.0 70 102000 0 0 145 0 0 0 0 0 0 0 190 2.6 10 6 11.3 2440 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.8728E7 -29.4 -32.8 73 102000 0 0 147 0 0 0 0 0 0 0 180 2.6 10 6 11.3 2440 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.87316E7 -29.8 -34.5 73 102000 0 0 143 0 0 0 0 0 0 0 170 2.8 7 4 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.87352E7 -30.2 -34.8 72 102000 0 0 139 0 0 0 0 0 0 0 160 2.9 4 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.87388E7 -30.6 -33.9 72 101900 0 0 135 0 0 0 0 0 0 0 150 3.1 1 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.87424E7 -31.1 -35.6 73 101900 0 0 132 0 0 0 0 0 0 0 150 3.4 1 0 9.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.8746E7 -31.7 -36.0 75 101900 0 0 131 0 0 0 0 0 0 0 150 3.8 0 0 7.0 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.87496E7 -32.2 -35.0 76 101800 0 0 130 0 0 0 0 0 0 0 150 4.1 0 0 4.8 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.87532E7 -32.6 -36.9 75 101800 0 0 128 0 0 0 0 0 0 0 150 3.6 0 0 5.9 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.87568E7 -32.9 -37.5 73 101800 0 0 127 0 0 0 0 0 0 0 140 3.1 1 0 6.9 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.87604E7 -33.3 -36.7 72 101700 0 0 127 0 0 0 0 0 0 0 140 2.6 1 0 8.0 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.8764E7 -33.3 -38.0 72 101700 0 0 126 0 0 0 0 0 0 0 130 3.1 2 0 7.5 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.87676E7 -33.3 -38.0 72 101600 0 0 126 0 0 0 0 0 0 0 130 3.6 3 0 6.9 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.87712E7 -33.3 -36.7 72 101600 0 0 127 0 0 0 0 0 0 0 120 4.1 4 0 6.4 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.87748E7 -32.6 -36.9 73 101500 0 0 134 0 0 0 0 0 0 0 130 4.1 6 3 8.0 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.87784E7 -31.8 -35.9 75 101500 0 0 138 0 0 0 0 0 0 0 140 4.1 8 5 9.7 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.8782E7 -31.1 -33.9 76 101400 0 0 147 0 0 0 0 0 0 0 150 4.1 10 8 11.3 6100 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.87856E7 -30.4 -34.5 75 101300 0 0 148 0 0 0 0 0 0 0 150 4.1 10 8 9.1 4880 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.87892E7 -29.6 -34.0 74 101300 0 0 153 0 0 0 0 0 0 0 150 4.1 10 9 7.0 3660 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.87928E7 -28.9 -32.2 73 101200 0 0 157 0 0 0 0 0 0 0 150 4.1 10 9 4.8 2440 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.87964E7 -28.5 -32.8 74 101200 0 0 154 0 0 0 0 0 0 0 140 3.6 10 8 5.9 2440 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.88E7 -28.2 -32.3 76 101200 0 0 155 0 0 0 0 0 0 0 140 3.1 10 8 6.9 2440 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.88036E7 -27.8 -30.6 77 101100 0 0 155 0 0 0 0 0 0 0 130 2.6 10 7 8.0 2440 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.88072E7 -27.1 -31.1 77 101200 0 0 153 0 0 0 0 0 0 0 70 2.8 9 5 9.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.88108E7 -26.3 -30.3 78 101200 0 0 154 0 0 0 0 0 0 0 20 2.9 8 4 10.2 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.88144E7 -25.6 -28.3 78 101200 0 0 155 0 0 0 0 0 0 0 320 3.1 7 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.8818E7 -25.2 -29.2 78 101200 0 0 155 0 0 0 0 0 0 0 320 3.1 6 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.88216E7 -24.8 -28.9 78 101300 0 0 154 0 0 0 0 0 0 0 310 3.1 4 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.88252E7 -24.4 -27.2 78 101300 0 0 156 0 0 0 0 0 0 0 310 3.1 3 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.88288E7 -24.2 -28.3 78 101300 0 0 156 0 0 0 0 0 0 0 290 3.3 4 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.88324E7 -24.1 -28.2 78 101400 0 0 159 0 0 0 0 0 0 0 280 3.4 4 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.8836E7 -23.9 -26.7 78 101400 0 0 160 0 0 0 0 0 0 0 260 3.6 5 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.88396E7 -23.7 -27.8 78 101500 0 0 160 0 0 0 0 0 0 0 260 3.4 5 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.88432E7 -23.5 -27.7 78 101500 0 0 162 0 0 0 0 0 0 0 250 3.3 6 3 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.88468E7 -23.3 -26.1 78 101500 0 0 164 0 0 0 0 0 0 0 250 3.1 6 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.88504E7 -23.2 -25.9 79 101600 0 0 165 0 0 0 0 0 0 0 250 3.0 7 4 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.8854E7 -23.2 -25.9 81 101600 0 0 167 0 0 0 0 0 0 0 240 2.8 7 5 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.88576E7 -23.2 -25.8 82 101600 0 0 168 0 0 0 0 0 0 0 240 2.7 8 6 11.3 6100 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.88612E7 -23.2 -25.7 78 99900 0 0 168 0 0 0 0 0 0 0 60 2.5 10 6 6.4 3050 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.88648E7 -23.2 -25.6 78 99900 0 0 167 0 0 0 0 0 0 0 50 2.4 10 5 6.4 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.88684E7 -23.2 -25.6 82 99800 0 0 168 0 0 0 0 0 0 0 50 2.2 10 6 6.4 3050 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.8872E7 -23.3 -25.6 82 99800 0 0 181 0 0 0 0 0 0 0 80 2.1 10 10 3.2 3050 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.88756E7 -23.3 -26.1 78 99800 0 0 181 0 0 0 0 0 0 0 70 2.6 10 10 3.2 3050 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.88792E7 -23.3 -26.1 78 99800 0 0 181 0 0 0 0 0 0 0 60 2.1 10 10 3.2 240 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.88828E7 -23.9 -26.1 82 99800 0 0 179 0 0 0 0 0 0 0 70 1.5 10 10 8.0 1370 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.88864E7 -23.3 -25.6 82 99800 0 0 181 0 0 0 0 0 0 0 80 2.1 10 10 8.0 1370 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.889E7 -22.8 -25.6 78 99800 0 0 183 0 0 0 0 0 0 0 80 2.1 10 10 11.3 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.88936E7 -22.8 -25.0 82 99800 0 0 183 0 0 0 0 0 0 0 60 2.1 10 10 11.3 1520 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.88972E7 -22.8 -25.0 82 99800 0 0 183 0 0 0 0 0 0 0 60 2.6 10 10 11.3 1520 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.89008E7 -23.3 -26.1 78 99800 0 0 168 0 0 0 0 0 0 0 60 2.1 10 6 11.3 3050 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.89044E7 -23.9 -26.7 78 99800 0 0 179 0 0 0 0 0 0 0 60 2.1 10 10 11.3 150 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.8908E7 -22.8 -24.4 86 99800 0 0 184 0 0 0 0 0 0 0 70 2.1 10 10 3.2 120 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.89116E7 -22.8 -25.0 82 99800 0 0 183 0 0 0 0 0 0 0 70 2.1 10 10 2.0 120 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.89152E7 -22.8 -25.6 78 99700 0 0 183 0 0 0 0 0 0 0 60 2.1 10 10 2.0 120 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.89188E7 -22.8 -25.0 82 99800 0 0 183 0 0 0 0 0 0 0 60 2.1 10 10 2.0 120 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.89224E7 -22.2 -24.4 82 99700 0 0 186 0 0 0 0 0 0 0 60 2.1 10 10 6.4 120 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.8926E7 -21.1 -23.9 79 99700 0 0 189 0 0 0 0 0 0 0 50 2.1 10 10 6.4 120 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.89296E7 -20.6 -23.3 79 99700 0 0 191 0 0 0 0 0 0 0 360 2.6 10 10 6.4 550 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.89332E7 -20.6 -22.8 83 99700 0 0 192 0 0 0 0 0 0 0 360 2.6 10 10 6.4 520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.89368E7 -21.1 -23.3 82 99700 0 0 190 0 0 0 0 0 0 0 60 2.1 10 10 6.4 550 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.89404E7 -20.6 -23.3 79 99700 0 0 191 0 0 0 0 0 0 0 40 2.1 10 10 6.4 610 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.8944E7 -20.6 -22.2 87 99700 0 0 192 0 0 0 0 0 0 0 340 2.6 10 10 6.4 550 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.89476E7 -20.6 -22.8 83 99700 0 0 192 0 0 0 0 0 0 0 350 2.6 10 10 6.4 550 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.89512E7 -20.0 -22.2 83 99600 0 0 194 0 0 0 0 0 0 0 360 2.6 10 10 6.4 610 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.89548E7 -20.0 -22.2 83 99600 0 0 189 0 0 0 0 0 0 0 360 5.2 10 9 6.4 610 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.89584E7 -20.0 -22.2 83 99600 0 0 189 0 0 0 0 0 0 0 40 4.1 10 9 6.4 610 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.8962E7 -20.0 -22.2 83 99600 0 0 189 0 0 0 0 0 0 0 20 5.2 10 9 6.4 610 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.89656E7 -19.4 -21.7 83 99600 0 0 196 0 0 0 0 0 0 0 360 4.1 10 10 6.4 760 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.89692E7 -20.0 -22.2 83 99600 0 0 194 0 0 0 0 0 0 0 340 4.1 10 10 6.4 760 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.89728E7 -20.0 -22.2 83 99600 0 0 194 0 0 0 0 0 0 0 320 5.7 10 10 6.4 760 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.89764E7 -20.0 -21.7 87 99600 0 0 194 0 0 0 0 0 0 0 340 5.7 10 10 11.3 400 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.898E7 -19.4 -21.7 83 99600 0 0 196 0 0 0 0 0 0 0 350 4.6 10 10 11.3 400 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.89836E7 -19.4 -21.7 83 99600 0 0 196 0 0 0 0 0 0 0 330 5.7 10 10 11.3 400 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.89872E7 -19.4 -21.7 83 99600 0 0 196 0 0 0 0 0 0 0 340 6.2 10 10 11.3 340 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.89908E7 -19.4 -21.7 83 99600 0 0 196 0 0 0 0 0 0 0 330 6.2 10 10 11.3 340 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.89944E7 -19.4 -21.7 83 99600 0 0 196 0 0 0 0 0 0 0 330 6.2 10 10 4.8 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.8998E7 -19.4 -21.7 83 99600 0 0 196 0 0 0 0 0 0 0 330 6.2 10 10 4.8 370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.90016E7 -18.9 -21.1 83 99600 0 0 198 0 0 0 0 0 0 0 310 2.1 10 10 4.8 370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.90052E7 -18.9 -20.6 87 99600 0 0 199 0 0 0 0 0 0 0 340 2.6 10 10 4.8 400 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.90088E7 -18.9 -20.6 87 99600 0 0 199 0 0 0 0 0 0 0 310 2.6 10 10 4.8 910 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.90124E7 -18.3 -20.6 83 99600 0 0 201 0 0 0 0 0 0 0 310 2.1 10 10 4.8 910 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.9016E7 -18.3 -20.6 83 99500 0 0 201 0 0 0 0 0 0 0 320 3.1 10 10 8.0 520 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.90196E7 -17.8 -20.0 83 99500 0 0 203 0 0 0 0 0 0 0 320 3.1 10 10 4.8 240 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.90232E7 -17.8 -19.4 87 99500 0 0 203 0 0 0 0 0 0 0 320 3.1 10 10 4.8 370 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.90268E7 -16.7 -18.3 87 99400 0 0 208 0 0 0 0 0 0 0 340 3.1 10 10 4.8 370 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.90304E7 -16.7 -18.3 87 99400 0 0 208 0 0 0 0 0 0 0 350 3.1 10 10 4.8 370 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.9034E7 -16.7 -18.3 87 99400 0 0 208 0 0 0 0 0 0 0 10 5.2 10 10 4.8 370 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.90376E7 -16.7 -18.3 87 99300 0 0 208 0 0 0 0 0 0 0 20 4.1 10 10 1.6 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.90412E7 -17.2 -18.9 87 99300 0 0 206 0 0 0 0 0 0 0 120 2.6 10 10 2.4 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.90448E7 -17.8 -19.4 87 99200 0 0 203 0 0 0 0 0 0 0 120 4.1 10 10 11.3 120 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +2.90484E7 -18.3 -20.0 87 99100 0 0 201 0 0 0 0 0 0 0 110 5.2 10 10 11.3 520 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.9052E7 -18.3 -20.6 83 99100 0 0 201 0 0 0 0 0 0 0 100 5.2 10 10 11.3 520 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.90556E7 -18.9 -20.6 87 99100 0 0 199 0 0 0 0 0 0 0 90 4.1 10 10 11.3 610 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +2.90592E7 -18.9 -21.1 83 99100 0 0 198 0 0 0 0 0 0 0 110 3.1 10 10 11.3 610 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.90628E7 -17.8 -19.4 87 99000 0 0 203 0 0 0 0 0 0 0 200 2.6 10 10 11.3 1310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.90664E7 -18.9 -20.6 87 99000 0 0 199 0 0 0 0 0 0 0 190 3.1 10 10 11.3 1310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.907E7 -18.9 -21.1 83 99100 0 0 193 0 0 0 0 0 0 0 200 9.3 10 9 4.8 1310 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.90736E7 -18.9 -21.1 83 99100 0 0 193 0 0 0 0 0 0 0 220 8.2 10 9 3.2 1310 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.90772E7 -19.4 -21.7 83 99100 0 0 179 0 0 0 0 0 0 0 220 5.2 5 4 2.4 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.90808E7 -21.1 -23.9 79 99200 0 0 171 0 0 0 0 0 0 0 210 5.7 4 3 3.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.90844E7 -21.1 -23.9 79 99200 0 0 171 0 0 0 0 0 0 0 220 6.2 5 3 4.8 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.9088E7 -20.6 -22.8 83 99200 0 0 178 0 0 0 0 0 0 0 230 7.7 8 6 4.8 1980 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.90916E7 -21.1 -23.9 79 99300 0 0 189 0 0 0 0 0 0 0 240 7.7 10 10 4.8 1830 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.90952E7 -21.1 -23.3 82 99300 0 0 176 0 0 0 0 0 0 0 240 9.3 6 6 4.8 3050 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.90988E7 -21.7 -24.4 78 99400 0 0 169 0 0 0 0 0 0 0 250 7.7 3 3 4.8 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.91024E7 -20.6 -23.3 79 99400 0 0 173 0 0 0 0 0 0 0 240 9.3 6 3 4.8 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.9106E7 -20.6 -23.3 79 99500 0 0 174 0 0 0 0 0 0 0 250 7.7 8 4 4.8 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.91096E7 -21.7 -23.9 82 99500 0 0 170 0 0 0 0 0 0 0 250 7.7 8 3 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.91132E7 -21.7 -24.4 78 99600 0 0 168 0 0 0 0 0 0 0 240 6.2 5 2 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.91168E7 -21.1 -23.3 82 99600 0 0 173 0 0 0 0 0 0 0 240 5.2 8 4 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.91204E7 -21.1 -23.3 82 99700 0 0 190 0 0 0 0 0 0 0 250 6.7 10 10 11.3 610 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.9124E7 -21.1 -23.3 82 99800 0 0 190 0 0 0 0 0 0 0 240 5.2 10 10 11.3 520 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.91276E7 -21.7 -24.4 78 99800 0 0 182 0 0 0 0 0 0 0 260 7.7 10 9 11.3 490 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.91312E7 -22.2 -24.4 82 99800 0 0 166 0 0 0 0 0 0 0 270 7.7 3 2 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.91348E7 -22.2 -25.0 78 99900 0 0 166 0 0 0 0 0 0 0 280 7.2 3 2 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.91384E7 -22.8 -25.6 78 99900 0 0 165 0 0 0 0 0 0 0 260 6.7 5 3 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.9142E7 -23.9 -26.7 78 100000 0 0 155 0 0 0 0 0 0 0 260 7.2 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.91456E7 -24.4 -27.8 74 100000 0 0 156 0 0 0 0 0 0 0 250 6.2 2 1 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.91492E7 -25.0 -27.8 78 100100 0 0 152 0 0 0 0 0 0 0 270 5.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.91528E7 -25.0 -28.3 74 100100 0 0 151 0 0 0 0 0 0 0 280 7.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.91564E7 -25.6 -28.9 74 100200 0 0 149 0 0 0 0 0 0 0 290 6.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.916E7 -26.1 -28.9 78 100300 0 0 148 0 0 0 0 0 0 0 290 6.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.91636E7 -26.1 -28.9 78 100300 0 0 148 0 0 0 0 0 0 0 290 6.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.91672E7 -26.7 -29.4 77 100300 0 0 146 0 0 0 0 0 0 0 300 6.7 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.91708E7 -27.2 -30.6 73 100400 0 0 144 0 0 0 0 0 0 0 290 4.6 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.91744E7 -27.2 -30.6 73 100400 0 0 144 0 0 0 0 0 0 0 310 5.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.9178E7 -27.2 -30.6 73 100500 0 0 152 0 0 0 0 0 0 0 300 4.1 4 4 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.91816E7 -27.8 -30.6 77 100500 0 0 149 0 0 0 0 0 0 0 310 6.2 3 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.91852E7 -27.8 -34.4 53 100600 0 0 147 0 0 0 0 0 0 0 310 4.6 3 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.91888E7 -27.2 -31.1 70 100600 0 0 158 0 0 0 0 0 0 0 320 6.2 8 8 11.3 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.91924E7 -27.2 -30.6 73 100700 0 0 167 0 0 0 0 0 0 0 310 4.1 10 10 9.7 910 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.9196E7 -27.8 -31.1 73 100700 0 0 165 0 0 0 0 0 0 0 330 4.1 10 10 4.8 640 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.91996E7 -27.8 -31.1 73 100700 0 0 165 0 0 0 0 0 0 0 330 4.1 10 10 4.8 120 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.92032E7 -27.2 -30.6 73 100800 0 0 167 0 0 0 0 0 0 0 340 3.6 10 10 4.8 120 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.92068E7 -27.2 -30.6 73 100900 0 0 162 0 0 0 0 0 0 0 320 4.1 10 9 8.0 120 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.92104E7 -27.2 -30.6 73 100900 0 0 162 0 0 0 0 0 0 0 340 4.1 10 9 8.0 120 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.9214E7 -27.2 -30.6 73 100900 0 0 167 0 0 0 0 0 0 0 340 5.2 10 10 11.3 120 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.92176E7 -27.2 -30.6 73 101000 0 0 167 0 0 0 0 0 0 0 360 4.1 10 10 11.3 120 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.92212E7 -27.2 -30.6 73 101000 0 0 167 0 0 0 0 0 0 0 340 4.1 10 10 11.3 910 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.92248E7 -27.2 -30.6 73 101000 0 0 167 0 0 0 0 0 0 0 360 5.2 10 10 11.3 910 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.92284E7 -26.7 -30.0 74 101100 0 0 169 0 0 0 0 0 0 0 30 2.6 10 10 11.3 910 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.9232E7 -27.2 -30.6 73 101100 0 0 162 0 0 0 0 0 0 0 10 3.6 10 9 11.3 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.92356E7 -26.7 -30.0 74 101100 0 0 164 0 0 0 0 0 0 0 10 4.1 10 9 11.3 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.92392E7 -26.1 -29.4 74 101100 0 0 171 0 0 0 0 0 0 0 30 3.1 10 10 11.3 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.92428E7 -25.6 -28.9 74 101100 0 0 172 0 0 0 0 0 0 0 40 2.6 10 10 11.3 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.92464E7 -25.0 -28.3 74 101100 0 0 175 0 0 0 0 0 0 0 30 4.1 10 10 11.3 1830 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.925E7 -25.0 -28.3 74 101100 0 0 175 0 0 0 0 0 0 0 30 3.1 10 10 6.4 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.92536E7 -25.0 -27.8 78 101100 0 0 175 0 0 0 0 0 0 0 10 3.6 10 10 9.7 1830 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.92572E7 -25.0 -27.8 78 101100 0 0 170 0 0 0 0 0 0 0 30 4.1 10 9 11.3 1830 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.92608E7 -25.0 -27.8 78 101100 0 0 170 0 0 0 0 0 0 0 50 4.1 10 9 11.3 1830 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.92644E7 -24.4 -27.8 74 101100 0 0 177 0 0 0 0 0 0 0 40 3.1 10 10 11.3 1830 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.9268E7 -24.4 -27.2 78 101000 0 0 177 0 0 0 0 0 0 0 60 3.1 10 10 11.3 430 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.92716E7 -24.4 -27.8 74 101000 0 0 177 0 0 0 0 0 0 0 50 3.6 10 10 11.3 640 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.92752E7 -24.4 -27.8 74 101000 0 0 177 0 0 0 0 0 0 0 50 3.1 10 10 11.3 640 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.92788E7 -24.4 -27.8 74 101000 0 0 177 0 0 0 0 0 0 0 60 3.1 10 10 11.3 1830 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.92824E7 -25.6 -28.9 74 101000 0 0 157 0 0 0 0 0 0 0 60 3.1 4 4 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.9286E7 -26.1 -29.4 74 100900 0 0 153 0 0 0 0 0 0 0 60 3.1 2 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.92896E7 -28.9 -32.2 73 100900 0 0 139 0 0 0 0 0 0 0 60 3.1 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.92932E7 -28.9 -32.8 69 100900 0 0 139 0 0 0 0 0 0 0 80 3.1 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.92968E7 -30.0 -33.3 73 100900 0 0 136 0 0 0 0 0 0 0 90 3.1 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.93004E7 -29.4 -32.8 73 100900 0 0 145 0 0 0 0 0 0 0 80 3.1 8 4 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.9304E7 -29.4 -32.8 73 100900 0 0 138 0 0 0 0 0 0 0 80 3.6 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.93076E7 -27.8 -31.1 73 100800 0 0 143 0 0 0 0 0 0 0 70 3.6 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.93112E7 -27.8 -31.1 73 100800 0 0 143 0 0 0 0 0 0 0 80 2.6 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.93148E7 -28.9 -32.2 73 100800 0 0 139 0 0 0 0 0 0 0 90 2.6 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.93184E7 -28.3 -31.7 73 100800 0 0 141 0 0 0 0 0 0 0 70 3.6 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.9322E7 -28.9 -32.2 73 100700 0 0 139 0 0 0 0 0 0 0 70 3.1 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.93256E7 -28.9 -32.2 73 100700 0 0 139 0 0 0 0 0 0 0 70 3.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.93292E7 -29.4 -32.8 73 100700 0 0 138 0 0 0 0 0 0 0 70 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.93328E7 -28.3 -31.1 77 100700 0 0 142 0 0 0 0 0 0 0 60 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.93364E7 -28.9 -31.7 77 100700 0 0 140 0 0 0 0 0 0 0 70 3.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.934E7 -27.8 -31.1 73 100700 0 0 145 0 0 0 0 0 0 0 70 4.1 1 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.93436E7 -28.3 -32.2 69 100700 0 0 144 0 0 0 0 0 0 0 70 3.6 1 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.93472E7 -29.4 -32.8 73 100700 0 0 141 0 0 0 0 0 0 0 70 4.1 1 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.93508E7 -28.3 -31.1 77 100700 0 0 146 0 0 0 0 0 0 0 70 3.6 2 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.93544E7 -27.8 -31.1 73 100700 0 0 149 0 0 0 0 0 0 0 70 2.6 6 3 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.9358E7 -27.2 -30.0 77 100700 0 0 151 0 0 0 0 0 0 0 70 3.1 6 3 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.93616E7 -27.8 -31.1 73 100700 0 0 150 0 0 0 0 0 0 0 70 3.1 4 4 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.93652E7 -28.9 -32.2 73 100700 0 0 148 0 0 0 0 0 0 0 70 3.1 5 5 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.93688E7 -28.9 -32.2 73 100700 0 0 139 0 0 0 0 0 0 0 70 3.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.93724E7 -29.4 -32.8 73 100700 0 0 138 0 0 0 0 0 0 0 60 3.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.9376E7 -28.3 -32.8 66 100700 0 0 140 0 0 0 0 0 0 0 60 3.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.93796E7 -28.3 -31.7 73 100700 0 0 141 0 0 0 0 0 0 0 60 3.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.93832E7 -28.3 -31.7 73 100600 0 0 141 0 0 0 0 0 0 0 60 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.93868E7 -28.3 -31.7 73 100600 0 0 141 0 0 0 0 0 0 0 60 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.93904E7 -28.3 -31.7 73 100600 0 0 141 0 0 0 0 0 0 0 60 3.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.9394E7 -28.9 -32.2 73 100600 0 0 139 0 0 0 0 0 0 0 60 3.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.93976E7 -28.3 -31.7 73 100500 0 0 141 0 0 0 0 0 0 0 60 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.94012E7 -28.9 -32.2 73 100500 0 0 139 0 0 0 0 0 0 0 60 4.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.94048E7 -30.0 -33.3 73 100500 0 0 136 0 0 0 0 0 0 0 70 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.94084E7 -30.0 -33.9 69 100500 0 0 136 0 0 0 0 0 0 0 60 4.1 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.9412E7 -28.9 -32.2 73 100500 0 0 139 0 0 0 0 0 0 0 60 4.1 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.94156E7 -29.4 -32.8 73 100500 0 0 138 0 0 0 0 0 0 0 60 3.6 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.94192E7 -28.9 -32.2 73 100500 0 0 139 0 0 0 0 0 0 0 50 3.6 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.94228E7 -28.9 -32.2 73 100500 0 0 139 0 0 0 0 0 0 0 60 3.6 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.94264E7 -29.4 -32.8 73 100500 0 0 138 0 0 0 0 0 0 0 60 3.6 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.943E7 -28.9 -32.2 73 100500 0 0 139 0 0 0 0 0 0 0 60 3.6 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.94336E7 -28.9 -32.2 73 100500 0 0 139 0 0 0 0 0 0 0 60 3.6 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.94372E7 -28.3 -32.2 69 100500 0 0 141 0 0 0 0 0 0 0 60 4.1 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.94408E7 -28.3 -31.7 73 100500 0 0 141 0 0 0 0 0 0 0 50 4.1 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.94444E7 -28.9 -32.2 73 100500 0 0 139 0 0 0 0 0 0 0 60 4.1 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.9448E7 -28.3 -31.1 77 100400 0 0 142 0 0 0 0 0 0 0 60 4.6 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.94516E7 -27.8 -31.1 73 100400 0 0 143 0 0 0 0 0 0 0 60 4.1 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.94552E7 -27.8 -31.1 73 100400 0 0 143 0 0 0 0 0 0 0 60 4.6 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.94588E7 -27.8 -30.6 77 100400 0 0 143 0 0 0 0 0 0 0 60 4.6 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.94624E7 -25.6 -28.9 74 100400 0 0 149 0 0 0 0 0 0 0 60 5.2 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.9466E7 -26.7 -29.4 77 100400 0 0 146 0 0 0 0 0 0 0 70 5.2 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.94696E7 -27.2 -30.6 73 100400 0 0 144 0 0 0 0 0 0 0 70 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.94732E7 -25.6 -28.9 74 100300 0 0 149 0 0 0 0 0 0 0 70 4.1 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.94768E7 -26.7 -29.4 77 100300 0 0 149 0 0 0 0 0 0 0 70 3.1 4 1 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.94804E7 -23.9 -26.7 78 100300 0 0 155 0 0 0 0 0 0 0 60 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.9484E7 -23.3 -26.1 78 100200 0 0 157 0 0 0 0 0 0 0 50 5.2 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.94876E7 -23.3 -26.1 78 100200 0 0 157 0 0 0 0 0 0 0 60 4.6 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.94912E7 -25.6 -28.3 78 100200 0 0 150 0 0 0 0 0 0 0 70 4.6 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.94948E7 -25.0 -27.8 78 100100 0 0 152 0 0 0 0 0 0 0 60 4.1 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.94984E7 -23.9 -26.7 78 100100 0 0 155 0 0 0 0 0 0 0 70 4.1 4 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.9502E7 -23.3 -26.1 78 100100 0 0 157 0 0 0 0 0 0 0 60 5.2 2 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.95056E7 -23.9 -26.7 78 100100 0 0 155 0 0 0 0 0 0 0 60 5.7 2 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.95092E7 -23.9 -26.7 78 100000 0 0 155 0 0 0 0 0 0 0 60 5.2 3 0 16.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.95128E7 -23.9 -26.7 78 100000 0 0 155 0 0 0 0 0 0 0 70 4.6 2 0 16.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.95164E7 -23.3 -26.1 78 99900 0 0 157 0 0 0 0 0 0 0 70 5.2 3 0 16.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.952E7 -22.2 -25.0 78 99800 0 0 166 0 0 0 0 0 0 0 60 5.7 3 2 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.95236E7 -21.7 -23.9 82 99800 0 0 170 0 0 0 0 0 0 0 60 5.2 5 3 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.95272E7 -20.0 -22.2 83 99700 0 0 194 0 0 0 0 0 0 0 70 8.2 10 10 9.7 1520 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.95308E7 -19.4 -21.7 83 99700 0 0 196 0 0 0 0 0 0 0 60 8.2 10 10 9.7 1520 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.95344E7 -18.3 -20.6 83 99600 0 0 201 0 0 0 0 0 0 0 60 8.2 10 10 9.7 370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.9538E7 -18.3 -20.0 87 99600 0 0 201 0 0 0 0 0 0 0 70 8.2 10 10 9.7 430 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.95416E7 -17.8 -20.0 83 99500 0 0 203 0 0 0 0 0 0 0 60 8.8 10 10 9.7 430 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.95452E7 -17.8 -20.0 83 99500 0 0 203 0 0 0 0 0 0 0 50 7.2 10 10 11.3 430 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.95488E7 -18.3 -20.0 87 99500 0 0 201 0 0 0 0 0 0 0 60 5.7 10 10 11.3 370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.95524E7 -17.8 -20.0 83 99400 0 0 203 0 0 0 0 0 0 0 60 5.2 10 10 11.3 370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.9556E7 -17.2 -19.4 83 99400 0 0 205 0 0 0 0 0 0 0 60 5.2 10 10 11.3 880 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.95596E7 -16.7 -18.9 83 99300 0 0 207 0 0 0 0 0 0 0 70 5.2 10 10 11.3 340 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.95632E7 -16.7 -18.3 87 99200 0 0 208 0 0 0 0 0 0 0 60 5.2 10 10 11.3 340 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.95668E7 -16.1 -17.8 87 99200 0 0 210 0 0 0 0 0 0 0 60 5.2 10 10 2.0 310 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.95704E7 -16.1 -17.2 91 99100 0 0 211 0 0 0 0 0 0 0 60 6.2 10 10 11.3 370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.9574E7 -15.6 -17.2 87 99100 0 0 212 0 0 0 0 0 0 0 60 5.2 10 10 11.3 340 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.95776E7 -15.0 -16.7 87 99000 0 0 215 0 0 0 0 0 0 0 70 4.1 10 10 11.3 370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.95812E7 -18.3 -20.0 87 99000 0 0 201 0 0 0 0 0 0 0 80 5.7 10 10 11.3 430 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.95848E7 -20.6 -22.8 83 99000 0 0 173 0 0 0 0 0 0 0 90 5.2 3 3 8.0 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.95884E7 -18.9 -21.1 83 99100 0 0 198 0 0 0 0 0 0 0 90 6.7 10 10 8.0 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.9592E7 -18.3 -20.6 83 99100 0 0 201 0 0 0 0 0 0 0 100 6.2 10 10 8.0 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.95956E7 -17.8 -20.0 83 99100 0 0 203 0 0 0 0 0 0 0 90 6.7 10 10 8.0 550 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.95992E7 -17.8 -19.4 87 99100 0 0 203 0 0 0 0 0 0 0 100 6.7 10 10 4.8 490 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.96028E7 -17.8 -19.4 87 99100 0 0 203 0 0 0 0 0 0 0 100 5.2 10 10 4.8 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.96064E7 -17.8 -19.4 87 99100 0 0 203 0 0 0 0 0 0 0 120 4.1 10 10 8.0 310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.961E7 -17.8 -19.4 87 99100 0 0 203 0 0 0 0 0 0 0 140 2.6 10 10 8.0 150 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.96136E7 -17.8 -19.4 87 99100 0 0 203 0 0 0 0 0 0 0 0 0.0 10 10 1.6 150 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.96172E7 -17.2 -19.4 83 99200 0 0 205 0 0 0 0 0 0 0 10 2.1 10 10 0.8 150 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.96208E7 -15.6 -17.8 83 99100 0 0 212 0 0 0 0 0 0 0 10 4.6 10 10 2.4 150 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.96244E7 -14.4 -16.1 87 99100 0 0 217 0 0 0 0 0 0 0 20 3.6 10 10 2.4 150 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.9628E7 -12.8 -14.4 88 99100 0 0 224 0 0 0 0 0 0 0 10 4.1 10 10 6.4 490 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.96316E7 -11.7 -12.8 92 99100 0 0 229 0 0 0 0 0 0 0 10 3.6 10 10 6.4 490 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.96352E7 -11.7 -12.8 92 99100 0 0 229 0 0 0 0 0 0 0 80 3.6 10 10 9.7 490 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.96388E7 -12.8 -13.9 92 99200 0 0 225 0 0 0 0 0 0 0 120 3.6 10 10 9.7 460 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.96424E7 -13.9 -15.6 87 99200 0 0 219 0 0 0 0 0 0 0 120 3.6 10 10 11.3 460 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.9646E7 -14.4 -16.1 87 99200 0 0 217 0 0 0 0 0 0 0 120 3.1 10 10 11.3 460 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.96496E7 -14.4 -16.1 87 99300 0 0 217 0 0 0 0 0 0 0 90 4.1 10 10 11.3 370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.96532E7 -15.0 -16.7 87 99300 0 0 215 0 0 0 0 0 0 0 120 2.1 10 10 11.3 310 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.96568E7 -15.6 -17.2 87 99300 0 0 212 0 0 0 0 0 0 0 130 1.5 10 10 11.3 310 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.96604E7 -16.7 -18.3 87 99400 0 0 208 0 0 0 0 0 0 0 150 2.1 10 10 11.3 370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.9664E7 -16.7 -18.3 87 99500 0 0 208 0 0 0 0 0 0 0 170 2.1 10 10 11.3 340 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.96676E7 -15.6 -16.7 91 99600 0 0 213 0 0 0 0 0 0 0 180 2.1 10 10 11.3 370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.96712E7 -14.4 -15.6 91 99600 0 0 218 0 0 0 0 0 0 0 210 2.6 10 10 11.3 430 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.96748E7 -13.3 -15.0 87 99700 0 0 222 0 0 0 0 0 0 0 210 2.6 10 10 6.4 370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.96784E7 -10.0 -10.6 96 99800 0 0 237 0 0 0 0 0 0 0 320 3.1 10 10 4.8 790 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.9682E7 -10.6 -11.7 92 99900 0 0 234 0 0 0 0 0 0 0 310 5.7 10 10 4.8 370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.96856E7 -10.6 -11.7 92 99900 0 0 234 0 0 0 0 0 0 0 300 6.7 10 10 3.2 90 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.96892E7 -11.1 -12.8 88 100000 0 0 225 0 0 0 0 0 0 0 290 7.7 10 9 6.4 1070 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.96928E7 -11.7 -12.8 92 100100 0 0 229 0 0 0 0 0 0 0 290 7.2 10 10 6.4 790 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.96964E7 -11.7 -13.3 88 100200 0 0 229 0 0 0 0 0 0 0 290 7.7 10 10 8.0 790 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +2.97E7 -11.7 -13.3 88 100300 0 0 229 0 0 0 0 0 0 0 300 9.3 10 10 11.3 1520 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.97036E7 -12.2 -13.3 92 100400 0 0 227 0 0 0 0 0 0 0 300 9.3 10 10 11.3 1370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.97072E7 -12.8 -14.4 88 100500 0 0 224 0 0 0 0 0 0 0 290 9.3 10 10 11.3 1370 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.97108E7 -13.3 -15.0 87 100500 0 0 222 0 0 0 0 0 0 0 300 9.8 10 10 9.7 790 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.97144E7 -13.9 -15.6 87 100700 0 0 219 0 0 0 0 0 0 0 300 9.8 10 10 9.7 610 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.9718E7 -15.6 -17.8 83 100800 0 0 212 0 0 0 0 0 0 0 280 9.3 10 10 11.3 790 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +2.97216E7 -16.7 -18.9 83 100900 0 0 207 0 0 0 0 0 0 0 290 8.8 10 10 11.3 790 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.97252E7 -17.8 -20.0 83 101000 0 0 203 0 0 0 0 0 0 0 290 7.7 10 10 11.3 790 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.97288E7 -19.4 -21.1 87 101100 0 0 197 0 0 0 0 0 0 0 290 7.7 10 10 11.3 790 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.97324E7 -19.4 -21.7 83 101100 0 0 196 0 0 0 0 0 0 0 280 9.3 10 10 11.3 880 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.9736E7 -19.4 -21.7 83 101200 0 0 196 0 0 0 0 0 0 0 290 7.7 10 10 11.3 1220 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.97396E7 -20.0 -22.2 83 101300 0 0 194 0 0 0 0 0 0 0 300 7.7 10 10 11.3 1220 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.97432E7 -20.0 -22.2 83 101300 0 0 194 0 0 0 0 0 0 0 300 8.2 10 10 11.3 1220 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.97468E7 -20.6 -22.8 83 101400 0 0 192 0 0 0 0 0 0 0 290 7.7 10 10 11.3 340 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.97504E7 -20.6 -22.8 83 101600 0 0 192 0 0 0 0 0 0 0 290 7.2 10 10 11.3 340 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.9754E7 -20.0 -22.2 83 101700 0 0 189 0 0 0 0 0 0 0 280 5.7 10 9 11.3 430 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.97576E7 -20.6 -22.8 83 101700 0 0 186 0 0 0 0 0 0 0 290 6.2 10 9 11.3 430 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.97612E7 -21.1 -23.3 82 101800 0 0 178 0 0 0 0 0 0 0 290 6.2 10 7 11.3 430 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.97648E7 -20.0 -22.2 83 101900 0 0 180 0 0 0 0 0 0 0 300 6.2 10 6 11.3 1680 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.97684E7 -20.0 -22.2 83 102000 0 0 194 0 0 0 0 0 0 0 290 7.7 10 10 11.3 1680 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.9772E7 -20.6 -22.8 83 102100 0 0 192 0 0 0 0 0 0 0 290 7.2 10 10 11.3 1680 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.97756E7 -20.0 -22.2 83 102100 0 0 194 0 0 0 0 0 0 0 290 6.7 10 10 11.3 640 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.97792E7 -20.0 -22.2 83 102200 0 0 194 0 0 0 0 0 0 0 290 7.7 10 10 11.3 760 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.97828E7 -19.4 -21.7 83 102200 0 0 196 0 0 0 0 0 0 0 290 7.7 10 10 11.3 790 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.97864E7 -18.9 -21.7 79 102300 0 0 198 0 0 0 0 0 0 0 290 7.7 10 10 11.3 880 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.979E7 -19.4 -21.7 83 102400 0 0 196 0 0 0 0 0 0 0 290 8.2 10 10 11.3 490 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.97936E7 -18.9 -21.1 83 102400 0 0 198 0 0 0 0 0 0 0 280 5.7 10 10 11.3 490 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.97972E7 -18.3 -20.6 83 102500 0 0 201 0 0 0 0 0 0 0 310 8.2 10 10 8.0 550 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.98008E7 -18.9 -20.6 87 102500 0 0 199 0 0 0 0 0 0 0 300 7.7 10 10 8.0 550 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.98044E7 -18.9 -21.1 83 102600 0 0 198 0 0 0 0 0 0 0 300 7.2 10 10 9.7 1680 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.9808E7 -18.9 -21.7 79 102700 0 0 198 0 0 0 0 0 0 0 300 6.7 10 10 11.3 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.98116E7 -19.4 -21.7 83 102700 0 0 196 0 0 0 0 0 0 0 310 6.7 10 10 11.3 3050 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.98152E7 -18.9 -21.1 83 102700 0 0 198 0 0 0 0 0 0 0 320 6.2 10 10 11.3 3050 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.98188E7 -18.9 -21.1 83 102700 0 0 189 0 0 0 0 0 0 0 320 6.7 8 8 11.3 3050 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.98224E7 -18.9 -21.1 83 102800 0 0 189 0 0 0 0 0 0 0 320 6.2 8 8 11.3 3050 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.9826E7 -19.4 -21.7 83 102900 0 0 191 0 0 0 0 0 0 0 310 6.2 9 9 11.3 3050 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.98296E7 -20.0 -22.2 83 102900 0 0 180 0 0 0 0 0 0 0 300 6.2 6 6 11.3 3050 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +2.98332E7 -20.6 -23.3 79 102900 0 0 174 0 0 0 0 0 0 0 310 6.2 4 4 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.98368E7 -21.1 -23.9 79 103000 0 0 164 0 0 0 0 0 0 0 310 5.2 1 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.98404E7 -23.3 -26.1 78 103100 0 0 157 0 0 0 0 0 0 0 300 4.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.9844E7 -25.0 -27.8 78 103100 0 0 152 0 0 0 0 0 0 0 290 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.98476E7 -25.6 -28.9 74 103200 0 0 149 0 0 0 0 0 0 0 290 4.6 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.98512E7 -26.1 -29.4 74 103300 0 0 148 0 0 0 0 0 0 0 290 4.1 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.98548E7 -26.7 -30.0 74 103300 0 0 146 0 0 0 0 0 0 0 290 4.6 0 0 16.1 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.98584E7 -26.7 -30.0 74 103400 0 0 146 0 0 0 0 0 0 0 290 5.2 0 0 16.1 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.9862E7 -27.2 -30.6 73 103400 0 0 144 0 0 0 0 0 0 0 290 3.6 0 0 16.1 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.98656E7 -27.8 -31.1 73 103400 0 0 143 0 0 0 0 0 0 0 290 4.6 0 0 16.1 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.98692E7 -27.8 -30.6 77 103500 0 0 143 0 0 0 0 0 0 0 290 4.1 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.98728E7 -27.2 -30.6 73 103500 0 0 144 0 0 0 0 0 0 0 300 4.6 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.98764E7 -26.7 -29.4 77 103500 0 0 146 0 0 0 0 0 0 0 300 4.6 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.988E7 -27.2 -30.6 73 103500 0 0 144 0 0 0 0 0 0 0 310 3.6 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.98836E7 -26.7 -29.4 77 103500 0 0 146 0 0 0 0 0 0 0 330 3.1 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.98872E7 -27.2 -30.6 73 103500 0 0 144 0 0 0 0 0 0 0 330 2.6 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.98908E7 -28.3 -31.1 77 103500 0 0 142 0 0 0 0 0 0 0 300 2.6 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.98944E7 -28.3 -31.7 73 103500 0 0 141 0 0 0 0 0 0 0 310 2.6 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.9898E7 -28.3 -31.7 73 103500 0 0 141 0 0 0 0 0 0 0 340 2.6 0 0 16.1 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.99016E7 -27.2 -31.1 70 103500 0 0 144 0 0 0 0 0 0 0 340 2.1 0 0 16.1 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.99052E7 -28.3 -31.7 73 103500 0 0 141 0 0 0 0 0 0 0 330 1.5 0 0 16.1 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.99088E7 -27.2 -30.6 73 103500 0 0 144 0 0 0 0 0 0 0 360 2.6 0 0 16.1 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.99124E7 -27.2 -30.6 73 103400 0 0 144 0 0 0 0 0 0 0 360 1.5 0 0 16.1 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.9916E7 -27.8 -31.1 73 103400 0 0 143 0 0 0 0 0 0 0 20 2.1 0 0 16.1 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.99196E7 -27.8 -31.1 73 103400 0 0 143 0 0 0 0 0 0 0 20 2.1 0 0 16.1 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.99232E7 -28.9 -32.2 73 103300 0 0 139 0 0 0 0 0 0 0 40 2.1 0 0 16.1 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +2.99268E7 -29.4 -32.8 73 103300 0 0 138 0 0 0 0 0 0 0 50 3.1 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.99304E7 -29.4 -32.8 73 103300 0 0 138 0 0 0 0 0 0 0 30 2.6 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.9934E7 -29.4 -32.8 73 103200 0 0 138 0 0 0 0 0 0 0 40 3.6 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.99376E7 -30.0 -33.3 73 103200 0 0 136 0 0 0 0 0 0 0 50 4.1 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.99412E7 -30.0 -33.3 73 103200 0 0 136 0 0 0 0 0 0 0 50 3.1 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.99448E7 -30.6 -33.9 73 103300 0 0 135 0 0 0 0 0 0 0 50 3.6 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.99484E7 -29.4 -32.8 73 103200 0 0 141 0 0 0 0 0 0 0 50 4.1 1 1 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.9952E7 -30.0 -33.3 73 103200 0 0 139 0 0 0 0 0 0 0 50 4.1 1 1 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.99556E7 -30.6 -33.9 73 103200 0 0 135 0 0 0 0 0 0 0 50 3.6 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.99592E7 -30.0 -33.9 69 103100 0 0 136 0 0 0 0 0 0 0 50 3.6 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.99628E7 -30.0 -33.3 73 103100 0 0 136 0 0 0 0 0 0 0 50 3.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.99664E7 -31.1 -35.0 69 103000 0 0 133 0 0 0 0 0 0 0 60 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.997E7 -31.7 -35.6 68 103000 0 0 131 0 0 0 0 0 0 0 60 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.99736E7 -31.7 -35.6 68 103000 0 0 131 0 0 0 0 0 0 0 50 3.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.99772E7 -31.7 -35.6 68 103000 0 0 131 0 0 0 0 0 0 0 60 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.99808E7 -32.8 -36.1 72 103000 0 0 128 0 0 0 0 0 0 0 70 4.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.99844E7 -32.8 -36.1 72 103000 0 0 128 0 0 0 0 0 0 0 60 4.1 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.9988E7 -33.3 -36.7 72 103000 0 0 127 0 0 0 0 0 0 0 80 4.1 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.99916E7 -32.2 -36.1 68 103000 0 0 130 0 0 0 0 0 0 0 70 4.1 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.99952E7 -31.1 -35.0 69 102900 0 0 133 0 0 0 0 0 0 0 60 4.1 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +2.99988E7 -31.7 -35.6 68 102900 0 0 131 0 0 0 0 0 0 0 70 4.1 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.00024E7 -32.8 -36.7 68 102900 0 0 128 0 0 0 0 0 0 0 90 4.1 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.0006E7 -31.7 -35.0 72 102900 0 0 134 0 0 0 0 0 0 0 70 4.1 6 1 8.0 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.00096E7 -31.7 -35.6 68 102900 0 0 135 0 0 0 0 0 0 0 80 4.1 5 2 2.4 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.00132E7 -32.2 -36.1 68 102900 0 0 134 0 0 0 0 0 0 0 80 4.6 3 2 1.6 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.00168E7 -32.8 -36.1 72 102900 0 0 133 0 0 0 0 0 0 0 70 4.6 8 2 1.6 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3.00204E7 -32.2 -36.1 68 102900 0 0 134 0 0 0 0 0 0 0 70 5.2 7 2 1.6 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3.0024E7 -32.8 -36.7 68 102900 0 0 131 0 0 0 0 0 0 0 80 4.6 7 1 1.6 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3.00276E7 -32.8 -36.7 68 102900 0 0 128 0 0 0 0 0 0 0 80 5.2 4 0 1.6 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3.00312E7 -33.9 -37.2 72 103000 0 0 125 0 0 0 0 0 0 0 80 4.6 4 0 3.2 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3.00348E7 -34.4 -38.3 68 103000 0 0 124 0 0 0 0 0 0 0 80 3.6 3 0 6.4 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3.00384E7 -32.8 -36.7 68 103000 0 0 128 0 0 0 0 0 0 0 80 4.1 4 0 9.7 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3.0042E7 -31.1 -34.4 72 103000 0 0 133 0 0 0 0 0 0 0 70 4.6 6 0 9.7 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3.00456E7 -31.7 -35.0 72 103000 0 0 131 0 0 0 0 0 0 0 70 4.6 4 0 9.7 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3.00492E7 -32.2 -38.9 51 103000 0 0 128 0 0 0 0 0 0 0 70 4.6 0 0 9.7 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3.00528E7 -33.9 -37.8 68 102900 0 0 125 0 0 0 0 0 0 0 70 4.6 0 0 11.3 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3.00564E7 -29.4 -32.8 73 103000 0 0 144 0 0 0 0 0 0 0 70 4.6 6 3 9.7 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3.006E7 -27.8 -31.1 73 102900 0 0 154 0 0 0 0 0 0 0 70 5.2 10 7 9.7 1310 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3.00636E7 -28.3 -31.1 77 103000 0 0 153 0 0 0 0 0 0 0 70 5.2 10 7 9.7 1310 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3.00672E7 -28.3 -31.1 77 102900 0 0 153 0 0 0 0 0 0 0 70 4.6 10 7 9.7 1130 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3.00708E7 -28.9 -32.2 73 102900 0 0 161 0 0 0 0 0 0 0 70 4.6 10 10 9.7 1130 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3.00744E7 -31.7 -35.6 68 102900 0 0 151 0 0 0 0 0 0 0 70 4.6 10 10 9.7 1130 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3.0078E7 -32.8 -36.1 72 102900 0 0 128 0 0 0 0 0 0 0 70 5.2 0 0 8.0 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3.00816E7 -32.8 -36.7 68 102900 0 0 128 0 0 0 0 0 0 0 70 5.2 0 0 8.0 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3.00852E7 -32.8 -36.7 68 102900 0 0 131 0 0 0 0 0 0 0 70 4.6 1 1 8.0 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3.00888E7 -33.3 -36.7 72 102900 0 0 129 0 0 0 0 0 0 0 70 4.1 2 1 8.0 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3.00924E7 -33.3 -37.2 68 102800 0 0 127 0 0 0 0 0 0 0 70 4.6 0 0 8.0 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3.0096E7 -32.8 -36.1 72 102800 0 0 134 0 0 0 0 0 0 0 70 5.2 3 3 2.4 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3.00996E7 -31.7 -35.6 68 102700 0 0 137 0 0 0 0 0 0 0 80 6.2 3 3 1.6 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.01032E7 -32.2 -36.1 68 102700 0 0 130 0 0 0 0 0 0 0 70 5.7 0 0 1.6 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.01068E7 -32.2 -35.6 72 102700 0 0 134 0 0 0 0 0 0 0 70 5.2 5 2 1.6 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.01104E7 -32.2 -36.1 68 102600 0 0 132 0 0 0 0 0 0 0 60 4.1 3 1 4.8 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.0114E7 -29.4 -32.8 73 102600 0 0 138 0 0 0 0 0 0 0 50 5.2 4 0 1.6 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.01176E7 -29.4 -32.8 73 102500 0 0 138 0 0 0 0 0 0 0 50 6.2 5 0 1.6 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.01212E7 -30.6 -33.9 73 102400 0 0 143 0 0 0 0 0 0 0 50 6.7 8 5 1.6 1070 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.01248E7 -29.4 -32.8 73 102400 0 0 152 0 0 0 0 0 0 0 50 6.2 10 8 1.6 980 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.01284E7 -31.1 -34.4 72 102300 0 0 140 0 0 0 0 0 0 0 50 6.2 4 4 3.2 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.0132E7 -31.1 -35.0 69 102300 0 0 137 0 0 0 0 0 0 0 50 6.2 2 2 3.2 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.01356E7 -31.1 -35.6 65 102200 0 0 132 0 0 0 0 0 0 0 50 5.2 0 0 4.8 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.01392E7 -28.9 -32.2 73 102100 0 0 161 0 0 0 0 0 0 0 50 5.7 10 10 4.8 1680 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.01428E7 -27.8 -30.6 77 102100 0 0 165 0 0 0 0 0 0 0 50 6.7 10 10 4.8 1680 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.01464E7 -26.7 -29.4 77 102000 0 0 169 0 0 0 0 0 0 0 60 6.2 10 10 4.8 1680 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.015E7 -26.1 -28.9 78 102000 0 0 171 0 0 0 0 0 0 0 50 7.2 10 10 4.8 1680 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.01536E7 -25.6 -28.3 78 101900 0 0 173 0 0 0 0 0 0 0 50 7.2 10 10 4.8 1520 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.01572E7 -25.0 -27.8 78 101900 0 0 175 0 0 0 0 0 0 0 60 7.2 10 10 4.8 1520 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.01608E7 -24.4 -27.2 78 101800 0 0 177 0 0 0 0 0 0 0 60 6.7 10 10 4.8 1520 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.01644E7 -24.4 -27.8 74 101800 0 0 177 0 0 0 0 0 0 0 50 6.7 10 10 4.8 1520 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.0168E7 -26.1 -28.9 78 101700 0 0 148 0 0 0 0 0 0 0 50 8.2 0 0 8.0 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.01716E7 -26.7 -29.4 77 101700 0 0 146 0 0 0 0 0 0 0 40 8.8 0 0 8.0 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.01752E7 -26.7 -29.4 77 101600 0 0 146 0 0 0 0 0 0 0 50 8.2 0 0 8.0 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.01788E7 -26.7 -29.4 77 101500 0 0 146 0 0 0 0 0 0 0 50 7.2 0 0 2.4 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.01824E7 -27.8 -30.6 77 101500 0 0 143 0 0 0 0 0 0 0 50 8.2 0 0 2.4 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.0186E7 -27.8 -31.1 73 101500 0 0 143 0 0 0 0 0 0 0 50 7.2 0 0 2.4 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.01896E7 -28.3 -31.7 73 101400 0 0 141 0 0 0 0 0 0 0 50 9.3 0 0 4.8 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.01932E7 -28.3 -31.7 73 101400 0 0 141 0 0 0 0 0 0 0 40 7.2 1 0 4.8 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.01968E7 -27.8 -31.1 73 101400 0 0 145 0 0 0 0 0 0 0 50 7.7 1 1 4.8 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.02004E7 -28.3 -31.1 77 101300 0 0 144 0 0 0 0 0 0 0 50 6.7 2 1 6.4 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.0204E7 -28.3 -31.7 73 101300 0 0 144 0 0 0 0 0 0 0 50 6.7 3 1 4.8 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.02076E7 -28.3 -31.7 73 101200 0 0 144 0 0 0 0 0 0 0 50 5.7 6 1 6.4 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.02112E7 -28.3 -31.7 73 101200 0 0 144 0 0 0 0 0 0 0 50 6.2 6 1 6.4 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.02148E7 -28.3 -32.2 69 101200 0 0 144 0 0 0 0 0 0 0 50 5.2 5 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.02184E7 -28.3 -31.1 77 101100 0 0 144 0 0 0 0 0 0 0 30 6.2 5 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.0222E7 -27.8 -30.6 77 101100 0 0 146 0 0 0 0 0 0 0 40 6.2 3 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.02256E7 -26.7 -30.6 70 101000 0 0 148 0 0 0 0 0 0 0 40 6.2 2 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.02292E7 -26.7 -29.4 77 101000 0 0 146 0 0 0 0 0 0 0 30 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.02328E7 -26.1 -29.4 74 100900 0 0 148 0 0 0 0 0 0 0 40 6.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.02364E7 -26.1 -29.4 74 100900 0 0 148 0 0 0 0 0 0 0 40 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.024E7 -26.1 -28.9 78 100900 0 0 148 0 0 0 0 0 0 0 40 5.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.02436E7 -25.6 -28.3 78 100900 0 0 155 0 0 0 0 0 0 0 40 5.7 5 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.02472E7 -25.0 -27.8 78 100800 0 0 152 0 0 0 0 0 0 0 40 6.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.02508E7 -25.0 -28.3 74 100700 0 0 151 0 0 0 0 0 0 0 40 6.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.02544E7 -25.0 -27.8 78 100700 0 0 152 0 0 0 0 0 0 0 40 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.0258E7 -25.0 -27.8 78 100700 0 0 152 0 0 0 0 0 0 0 40 5.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.02616E7 -25.0 -27.8 78 100700 0 0 152 0 0 0 0 0 0 0 50 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.02652E7 -25.0 -27.8 78 100600 0 0 152 0 0 0 0 0 0 0 40 5.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.02688E7 -25.0 -27.8 78 100600 0 0 152 0 0 0 0 0 0 0 40 4.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.02724E7 -25.0 -27.8 78 100600 0 0 152 0 0 0 0 0 0 0 60 4.6 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.0276E7 -25.0 -27.8 78 100600 0 0 152 0 0 0 0 0 0 0 60 5.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.02796E7 -25.0 -28.3 74 100600 0 0 162 0 0 0 0 0 0 0 40 4.1 6 6 11.3 2440 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.02832E7 -24.4 -27.2 78 100600 0 0 169 0 0 0 0 0 0 0 50 4.6 8 8 11.3 610 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.02868E7 -22.8 -25.6 78 100600 0 0 174 0 0 0 0 0 0 0 60 4.6 8 8 11.3 610 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.02904E7 -22.8 -25.6 78 100700 0 0 174 0 0 0 0 0 0 0 70 6.2 8 8 11.3 910 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.0294E7 -23.3 -26.1 78 100700 0 0 181 0 0 0 0 0 0 0 70 6.2 10 10 11.3 910 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.02976E7 -22.8 -25.6 78 100700 0 0 174 0 0 0 0 0 0 0 70 4.6 8 8 11.3 2440 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.03012E7 -22.8 -25.6 78 100700 0 0 167 0 0 0 0 0 0 0 70 5.2 6 4 11.3 2440 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.03048E7 -22.8 -25.6 78 100700 0 0 167 0 0 0 0 0 0 0 70 4.6 6 4 11.3 2440 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.03084E7 -22.8 -25.6 78 100700 0 0 167 0 0 0 0 0 0 0 70 5.2 6 4 11.3 2440 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.0312E7 -22.8 -25.6 78 100700 0 0 165 0 0 0 0 0 0 0 80 5.2 5 3 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.03156E7 -22.8 -25.6 78 100700 0 0 164 0 0 0 0 0 0 0 60 4.6 3 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.03192E7 -23.3 -26.1 78 100700 0 0 162 0 0 0 0 0 0 0 60 5.7 3 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.03228E7 -23.3 -26.1 78 100800 0 0 162 0 0 0 0 0 0 0 60 5.2 3 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.03264E7 -23.9 -26.7 78 100800 0 0 160 0 0 0 0 0 0 0 60 4.6 3 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.033E7 -23.3 -26.1 78 100800 0 0 157 0 0 0 0 0 0 0 60 5.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.03336E7 -22.8 -25.0 82 100900 0 0 159 0 0 0 0 0 0 0 60 5.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.03372E7 -22.8 -25.0 82 100900 0 0 183 0 0 0 0 0 0 0 70 5.2 10 10 11.3 370 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.03408E7 -23.3 -26.1 78 100900 0 0 181 0 0 0 0 0 0 0 70 4.1 10 10 11.3 370 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.03444E7 -23.3 -25.6 82 100900 0 0 164 0 0 0 0 0 0 0 60 5.2 10 3 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.0348E7 -23.3 -25.6 82 100900 0 0 167 0 0 0 0 0 0 0 60 5.7 10 5 9.7 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.03516E7 -22.8 -25.0 82 101000 0 0 172 0 0 0 0 0 0 0 60 5.2 10 7 9.7 2130 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.03552E7 -22.8 -25.0 82 101000 0 0 172 0 0 0 0 0 0 0 70 5.7 10 7 9.7 2130 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.03588E7 -22.8 -25.6 78 101000 0 0 183 0 0 0 0 0 0 0 60 5.2 10 10 9.7 2130 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.03624E7 -23.9 -26.1 82 101000 0 0 179 0 0 0 0 0 0 0 70 6.2 10 10 11.3 2130 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.0366E7 -23.9 -26.7 78 101000 0 0 179 0 0 0 0 0 0 0 70 6.2 10 10 4.8 2130 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.03696E7 -25.0 -27.8 78 101000 0 0 175 0 0 0 0 0 0 0 70 5.7 10 10 2.4 340 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.03732E7 -26.7 -29.4 77 101100 0 0 161 0 0 0 0 0 0 0 70 5.2 8 8 3.2 2130 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.03768E7 -27.2 -30.6 73 101100 0 0 153 0 0 0 0 0 0 0 60 4.1 5 5 8.0 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.03804E7 -26.1 -28.9 78 101100 0 0 157 0 0 0 0 0 0 0 60 5.2 5 5 6.4 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.0384E7 -26.7 -29.4 77 101100 0 0 161 0 0 0 0 0 0 0 60 6.2 8 8 6.4 2130 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.03876E7 -27.2 -30.0 77 101100 0 0 155 0 0 0 0 0 0 0 50 5.2 8 6 6.4 1220 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.03912E7 -26.7 -29.4 77 101200 0 0 169 0 0 0 0 0 0 0 60 5.2 10 10 11.3 1680 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.03948E7 -26.1 -29.4 74 101200 0 0 171 0 0 0 0 0 0 0 60 6.2 10 10 11.3 1680 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.03984E7 -26.1 -28.9 78 101200 0 0 171 0 0 0 0 0 0 0 60 5.7 10 10 11.3 1680 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.0402E7 -26.7 -29.4 77 101200 0 0 169 0 0 0 0 0 0 0 60 6.7 10 10 11.3 1830 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.04056E7 -27.2 -30.6 73 101200 0 0 167 0 0 0 0 0 0 0 60 6.2 10 10 11.3 1830 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.04092E7 -28.3 -31.7 73 101200 0 0 148 0 0 0 0 0 0 0 60 6.2 5 4 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.04128E7 -28.9 -32.2 73 101200 0 0 139 0 0 0 0 0 0 0 60 6.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.04164E7 -28.9 -32.8 69 101200 0 0 139 0 0 0 0 0 0 0 60 5.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.042E7 -29.4 -32.8 73 101200 0 0 138 0 0 0 0 0 0 0 50 5.7 0 0 8.0 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.04236E7 -29.4 -32.8 73 101200 0 0 138 0 0 0 0 0 0 0 60 5.2 0 0 8.0 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.04272E7 -29.4 -33.3 69 101200 0 0 138 0 0 0 0 0 0 0 50 6.2 0 0 9.7 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.04308E7 -30.0 -33.3 73 101100 0 0 136 0 0 0 0 0 0 0 60 5.7 0 0 9.7 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.04344E7 -30.0 -33.3 73 101100 0 0 136 0 0 0 0 0 0 0 50 5.2 0 0 8.0 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.0438E7 -30.0 -33.3 73 101100 0 0 136 0 0 0 0 0 0 0 60 5.2 0 0 8.0 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.04416E7 -29.4 -33.3 69 101100 0 0 138 0 0 0 0 0 0 0 40 6.2 0 0 2.4 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.04452E7 -29.4 -32.8 73 101100 0 0 141 0 0 0 0 0 0 0 50 5.7 1 1 2.4 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.04488E7 -29.4 -32.8 73 101000 0 0 141 0 0 0 0 0 0 0 50 5.7 1 1 2.4 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.04524E7 -29.4 -32.8 73 101000 0 0 143 0 0 0 0 0 0 0 50 6.2 2 2 6.4 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.0456E7 -28.9 -32.2 73 101000 0 0 144 0 0 0 0 0 0 0 60 6.2 2 2 6.4 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.04596E7 -28.3 -31.7 73 101000 0 0 163 0 0 0 0 0 0 0 40 5.7 10 10 4.8 2130 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.04632E7 -27.2 -30.6 73 100900 0 0 167 0 0 0 0 0 0 0 50 6.2 10 10 4.8 2130 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.04668E7 -27.2 -30.0 77 100900 0 0 167 0 0 0 0 0 0 0 50 6.2 10 10 4.8 2130 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.04704E7 -27.2 -30.6 73 100800 0 0 167 0 0 0 0 0 0 0 40 6.7 10 10 4.8 2130 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.0474E7 -26.7 -30.0 74 100800 0 0 169 0 0 0 0 0 0 0 40 7.2 10 10 4.8 2130 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.04776E7 -26.7 -29.4 77 100700 0 0 169 0 0 0 0 0 0 0 40 7.7 10 10 2.4 2130 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.04812E7 -26.7 -30.6 70 100700 0 0 168 0 0 0 0 0 0 0 50 7.7 10 10 2.4 2130 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.04848E7 -26.1 -29.4 74 100700 0 0 171 0 0 0 0 0 0 0 50 8.2 10 10 2.4 2130 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.04884E7 -26.7 -29.4 77 100600 0 0 169 0 0 0 0 0 0 0 50 7.2 10 10 2.4 2130 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.0492E7 -26.7 -29.4 77 100600 0 0 154 0 0 0 0 0 0 0 40 7.2 5 4 2.4 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.04956E7 -26.7 -30.0 74 100600 0 0 156 0 0 0 0 0 0 0 40 7.7 6 6 2.4 2130 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.04992E7 -26.7 -29.4 77 100500 0 0 156 0 0 0 0 0 0 0 50 8.8 6 6 2.4 2130 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.05028E7 -26.7 -29.4 77 100500 0 0 151 0 0 0 0 0 0 0 40 7.2 3 2 2.4 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.05064E7 -26.7 -29.4 77 100400 0 0 151 0 0 0 0 0 0 0 50 8.8 5 2 2.4 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.051E7 -26.7 -29.4 77 100400 0 0 153 0 0 0 0 0 0 0 50 8.2 3 3 2.4 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.05136E7 -26.1 -29.4 74 100400 0 0 171 0 0 0 0 0 0 0 50 7.2 10 10 2.4 1130 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.05172E7 -26.7 -29.4 77 100400 0 0 153 0 0 0 0 0 0 0 40 7.2 5 3 2.4 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.05208E7 -25.6 -28.3 78 100300 0 0 162 0 0 0 0 0 0 0 40 8.8 10 7 2.4 2130 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.05244E7 -25.6 -28.3 78 100300 0 0 162 0 0 0 0 0 0 0 40 9.8 10 7 1.6 2290 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.0528E7 -25.0 -27.8 78 100300 0 0 175 0 0 0 0 0 0 0 40 9.3 10 10 1.2 2290 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.05316E7 -25.0 -27.8 78 100200 0 0 175 0 0 0 0 0 0 0 40 8.8 10 10 1.2 2290 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.05352E7 -25.0 -27.8 78 100200 0 0 164 0 0 0 0 0 0 0 40 9.3 7 7 1.2 2290 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.05388E7 -25.0 -28.3 74 100200 0 0 166 0 0 0 0 0 0 0 50 8.8 8 8 1.2 2740 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.05424E7 -25.0 -27.8 78 100200 0 0 167 0 0 0 0 0 0 0 40 8.8 8 8 3.2 2740 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.0546E7 -25.0 -27.8 78 100200 0 0 175 0 0 0 0 0 0 0 50 8.2 10 10 3.2 2440 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.05496E7 -25.0 -27.8 78 100200 0 0 175 0 0 0 0 0 0 0 40 7.7 10 10 3.2 2440 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.05532E7 -25.0 -28.3 74 100200 0 0 175 0 0 0 0 0 0 0 40 10.3 10 10 1.2 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.05568E7 -25.6 -28.3 78 100100 0 0 173 0 0 0 0 0 0 0 40 12.4 10 10 1.2 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.05604E7 -25.6 -28.3 78 100100 0 0 173 0 0 0 0 0 0 0 40 12.9 10 10 1.2 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.0564E7 -25.6 -28.3 78 100100 0 0 173 0 0 0 0 0 0 0 50 12.4 10 10 0.8 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.05676E7 -25.6 -28.3 78 100100 0 0 173 0 0 0 0 0 0 0 50 11.8 10 10 0.8 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.05712E7 -25.6 -28.3 78 100000 0 0 173 0 0 0 0 0 0 0 50 11.3 10 10 0.8 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.05748E7 -25.0 -27.8 78 100000 0 0 175 0 0 0 0 0 0 0 50 10.8 10 10 0.8 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.05784E7 -24.4 -27.8 74 100000 0 0 177 0 0 0 0 0 0 0 50 10.3 10 10 0.8 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.0582E7 -24.4 -27.2 78 100000 0 0 177 0 0 0 0 0 0 0 50 10.3 10 10 0.8 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.05856E7 -24.4 -27.2 78 100100 0 0 177 0 0 0 0 0 0 0 50 11.3 10 10 0.8 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.05892E7 -23.9 -26.7 78 100100 0 0 179 0 0 0 0 0 0 0 70 10.3 10 10 0.8 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.05928E7 -23.9 -26.7 78 100100 0 0 179 0 0 0 0 0 0 0 60 9.3 10 10 0.8 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.05964E7 -23.3 -26.1 78 100100 0 0 181 0 0 0 0 0 0 0 60 8.8 10 10 0.8 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.06E7 -23.3 -26.1 78 100100 0 0 181 0 0 0 0 0 0 0 70 8.8 10 10 0.8 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.06036E7 -23.3 -26.1 78 100100 0 0 181 0 0 0 0 0 0 0 70 7.7 10 10 0.8 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.06072E7 -23.9 -26.1 82 100200 0 0 179 0 0 0 0 0 0 0 70 7.2 10 10 1.6 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.06108E7 -23.9 -26.1 82 100200 0 0 179 0 0 0 0 0 0 0 70 8.2 10 10 1.6 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.06144E7 -23.3 -26.1 78 100300 0 0 181 0 0 0 0 0 0 0 80 7.7 10 10 2.4 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.0618E7 -23.3 -26.1 78 100300 0 0 181 0 0 0 0 0 0 0 80 7.7 10 10 2.4 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.06216E7 -23.3 -26.1 78 100300 0 0 181 0 0 0 0 0 0 0 80 7.2 10 10 4.8 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.06252E7 -23.3 -26.1 78 100400 0 0 181 0 0 0 0 0 0 0 70 6.7 10 10 4.8 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.06288E7 -23.3 -26.1 78 100400 0 0 181 0 0 0 0 0 0 0 70 6.2 10 10 4.8 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.06324E7 -22.8 -25.6 78 100500 0 0 183 0 0 0 0 0 0 0 80 7.2 10 10 4.8 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.0636E7 -22.8 -25.6 78 100500 0 0 183 0 0 0 0 0 0 0 70 6.7 10 10 4.8 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.06396E7 -22.8 -25.0 82 100600 0 0 183 0 0 0 0 0 0 0 90 5.7 10 10 6.4 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.06432E7 -22.8 -25.0 82 100600 0 0 183 0 0 0 0 0 0 0 80 5.2 10 10 9.7 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.06468E7 -22.8 -25.6 78 100700 0 0 183 0 0 0 0 0 0 0 80 4.6 10 10 9.7 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.06504E7 -22.2 -25.0 78 100700 0 0 185 0 0 0 0 0 0 0 80 4.6 10 10 9.7 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.0654E7 -22.2 -26.7 67 100800 0 0 184 0 0 0 0 0 0 0 80 4.1 10 10 8.0 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.06576E7 -22.2 -25.0 78 100900 0 0 185 0 0 0 0 0 0 0 90 4.1 10 10 8.0 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.06612E7 -22.8 -25.6 78 100900 0 0 183 0 0 0 0 0 0 0 90 3.6 10 10 8.0 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.06648E7 -22.8 -25.6 78 101000 0 0 183 0 0 0 0 0 0 0 90 3.1 10 10 8.0 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.06684E7 -22.2 -25.0 78 101000 0 0 185 0 0 0 0 0 0 0 90 3.1 10 10 8.0 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.0672E7 -22.2 -24.4 82 101100 0 0 186 0 0 0 0 0 0 0 110 3.6 10 10 8.0 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.06756E7 -22.8 -25.6 78 101200 0 0 183 0 0 0 0 0 0 0 90 3.1 10 10 8.0 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.06792E7 -25.6 -28.3 78 101200 0 0 168 0 0 0 0 0 0 0 110 3.1 10 9 8.0 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.06828E7 -27.2 -30.6 73 101300 0 0 149 0 0 0 0 0 0 0 120 3.1 4 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.06864E7 -26.7 -29.4 77 101300 0 0 154 0 0 0 0 0 0 0 120 2.6 9 4 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.069E7 -25.0 -27.8 78 101400 0 0 170 0 0 0 0 0 0 0 130 3.6 10 9 11.3 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.06936E7 -25.0 -27.8 78 101400 0 0 170 0 0 0 0 0 0 0 120 3.1 10 9 11.3 1520 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.06972E7 -28.3 -31.7 73 101400 0 0 148 0 0 0 0 0 0 0 140 3.1 8 4 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.07008E7 -29.4 -32.8 73 101500 0 0 141 0 0 0 0 0 0 0 150 3.6 3 1 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.07044E7 -27.2 -30.0 77 101600 0 0 150 0 0 0 0 0 0 0 170 3.1 5 2 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.0708E7 -28.3 -31.7 73 101600 0 0 144 0 0 0 0 0 0 0 180 2.6 4 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.07116E7 -26.7 -30.0 74 101600 0 0 169 0 0 0 0 0 0 0 190 4.1 10 10 11.3 2740 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.07152E7 -27.8 -31.1 73 101700 0 0 165 0 0 0 0 0 0 0 180 3.6 10 10 11.3 2740 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.07188E7 -26.7 -29.4 77 101700 0 0 169 0 0 0 0 0 0 0 160 2.6 10 10 11.3 790 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.07224E7 -27.2 -30.0 77 101700 0 0 167 0 0 0 0 0 0 0 160 2.6 10 10 11.3 2740 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.0726E7 -27.8 -30.6 77 101700 0 0 165 0 0 0 0 0 0 0 150 2.1 10 10 11.3 2740 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.07296E7 -27.8 -31.1 73 101700 0 0 165 0 0 0 0 0 0 0 140 2.6 10 10 11.3 2740 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.07332E7 -26.1 -29.4 74 101700 0 0 171 0 0 0 0 0 0 0 120 4.1 10 10 11.3 790 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.07368E7 -25.0 -27.8 78 101700 0 0 175 0 0 0 0 0 0 0 120 3.1 10 10 11.3 790 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.07404E7 -24.4 -30.6 57 101700 0 0 174 0 0 0 0 0 0 0 120 2.1 10 10 11.3 2740 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.0744E7 -24.4 -27.2 78 101700 0 0 177 0 0 0 0 0 0 0 120 3.1 10 10 11.3 2740 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.07476E7 -24.4 -27.2 78 101700 0 0 177 0 0 0 0 0 0 0 100 2.6 10 10 11.3 2740 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.07512E7 -23.3 -26.1 78 101700 0 0 181 0 0 0 0 0 0 0 90 2.1 10 10 11.3 2740 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.07548E7 -23.3 -26.1 78 101700 0 0 181 0 0 0 0 0 0 0 80 2.1 10 10 11.3 2740 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.07584E7 -23.9 -27.2 74 101700 0 0 179 0 0 0 0 0 0 0 80 3.6 10 10 11.3 2740 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.0762E7 -25.0 -27.8 78 101700 0 0 175 0 0 0 0 0 0 0 80 4.1 10 10 11.3 2740 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.07656E7 -26.1 -29.4 74 101600 0 0 171 0 0 0 0 0 0 0 70 4.6 10 10 11.3 2740 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.07692E7 -29.4 -32.8 73 101600 0 0 159 0 0 0 0 0 0 0 80 5.2 10 10 11.3 2740 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.07728E7 -27.8 -31.1 73 101500 0 0 165 0 0 0 0 0 0 0 60 5.7 10 10 11.3 2740 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.07764E7 -28.9 -31.7 77 101500 0 0 161 0 0 0 0 0 0 0 60 5.7 10 10 11.3 2740 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.078E7 -30.6 -33.9 73 101500 0 0 155 0 0 0 0 0 0 0 70 5.7 10 10 11.3 2740 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.07836E7 -30.0 -33.9 69 101400 0 0 157 0 0 0 0 0 0 0 60 5.7 10 10 11.3 2740 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.07872E7 -31.1 -34.4 72 101300 0 0 154 0 0 0 0 0 0 0 70 5.2 10 10 11.3 2740 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.07908E7 -30.0 -33.9 69 101300 0 0 143 0 0 0 0 0 0 0 60 5.7 8 4 4.8 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.07944E7 -28.9 -32.2 73 101200 0 0 146 0 0 0 0 0 0 0 60 7.2 7 3 4.8 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.0798E7 -27.8 -31.1 73 101100 0 0 150 0 0 0 0 0 0 0 60 7.7 9 4 2.4 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.08016E7 -28.3 -31.7 73 101100 0 0 146 0 0 0 0 0 0 0 60 8.2 6 2 2.4 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.08052E7 -26.7 -29.4 77 101000 0 0 151 0 0 0 0 0 0 0 60 7.2 7 2 2.4 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.08088E7 -27.2 -30.6 73 101000 0 0 147 0 0 0 0 0 0 0 70 7.2 3 1 3.2 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.08124E7 -26.7 -29.4 77 101000 0 0 153 0 0 0 0 0 0 0 50 7.2 5 3 4.8 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.0816E7 -27.2 -30.6 73 100900 0 0 151 0 0 0 0 0 0 0 50 6.2 5 3 4.8 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.08196E7 -26.7 -29.4 77 100800 0 0 151 0 0 0 0 0 0 0 50 7.2 5 2 8.0 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.08232E7 -26.1 -28.9 78 100700 0 0 148 0 0 0 0 0 0 0 50 7.2 0 0 8.0 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.08268E7 -25.6 -30.0 66 100700 0 0 149 0 0 0 0 0 0 0 60 7.7 0 0 8.0 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3.08304E7 -25.0 -27.8 78 100700 0 0 152 0 0 0 0 0 0 0 60 8.2 0 0 8.0 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3.0834E7 -23.9 -27.2 74 100600 0 0 155 0 0 0 0 0 0 0 60 8.2 0 0 8.0 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3.08376E7 -23.3 -25.6 82 100500 0 0 157 0 0 0 0 0 0 0 60 8.8 0 0 8.0 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3.08412E7 -22.2 -25.0 78 100500 0 0 174 0 0 0 0 0 0 0 60 9.3 7 7 4.8 3050 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3.08448E7 -22.8 -25.0 82 100400 0 0 175 0 0 0 0 0 0 0 60 8.2 10 8 4.8 3050 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3.08484E7 -21.7 -24.4 78 100300 0 0 187 0 0 0 0 0 0 0 60 9.8 10 10 4.8 3050 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.0852E7 -21.7 -24.4 78 100300 0 0 187 0 0 0 0 0 0 0 60 9.8 10 10 4.8 370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.08556E7 -22.2 -24.4 82 100200 0 0 186 0 0 0 0 0 0 0 70 9.8 10 10 4.8 430 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.08592E7 -21.7 -23.9 82 100200 0 0 188 0 0 0 0 0 0 0 70 9.8 10 10 6.4 1520 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.08628E7 -21.1 -23.9 79 100100 0 0 189 0 0 0 0 0 0 0 70 9.3 10 10 6.4 1520 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.08664E7 -21.1 -23.3 82 100000 0 0 190 0 0 0 0 0 0 0 70 8.2 10 10 6.4 1520 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.087E7 -20.6 -23.3 79 100000 0 0 191 0 0 0 0 0 0 0 90 8.2 10 10 11.3 1680 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.08736E7 -20.6 -23.3 79 100000 0 0 191 0 0 0 0 0 0 0 80 7.2 10 10 11.3 1680 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.08772E7 -20.6 -23.3 79 99900 0 0 191 0 0 0 0 0 0 0 90 7.2 10 10 11.3 980 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.08808E7 -20.6 -23.3 79 99900 0 0 191 0 0 0 0 0 0 0 80 6.7 10 10 11.3 790 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.08844E7 -20.6 -22.8 83 99800 0 0 192 0 0 0 0 0 0 0 70 6.2 10 10 11.3 790 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.0888E7 -19.4 -22.2 79 99800 0 0 196 0 0 0 0 0 0 0 70 6.7 10 10 11.3 880 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.08916E7 -19.4 -21.7 83 99700 0 0 196 0 0 0 0 0 0 0 70 7.2 10 10 11.3 880 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.08952E7 -18.9 -21.7 79 99600 0 0 198 0 0 0 0 0 0 0 50 6.2 10 10 11.3 790 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.08988E7 -18.9 -21.1 83 99600 0 0 198 0 0 0 0 0 0 0 70 7.7 10 10 6.4 880 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.09024E7 -18.9 -21.1 83 99600 0 0 198 0 0 0 0 0 0 0 70 6.7 10 10 6.4 430 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.0906E7 -18.3 -20.6 83 99500 0 0 201 0 0 0 0 0 0 0 40 6.2 10 10 6.4 430 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.09096E7 -18.3 -20.6 83 99500 0 0 201 0 0 0 0 0 0 0 60 7.2 10 10 11.3 430 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.09132E7 -18.3 -21.1 79 99500 0 0 200 0 0 0 0 0 0 0 40 6.2 10 10 11.3 430 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.09168E7 -17.8 -20.0 83 99400 0 0 203 0 0 0 0 0 0 0 50 6.2 10 10 11.3 1310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.09204E7 -17.2 -19.4 83 99400 0 0 205 0 0 0 0 0 0 0 50 8.2 10 10 11.3 1520 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3.0924E7 -17.2 -19.4 83 99400 0 0 205 0 0 0 0 0 0 0 50 7.2 10 10 11.3 1520 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3.09276E7 -17.2 -18.9 87 99400 0 0 206 0 0 0 0 0 0 0 60 6.7 10 10 11.3 1520 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3.09312E7 -16.7 -18.9 83 99300 0 0 207 0 0 0 0 0 0 0 50 6.2 10 10 11.3 980 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3.09348E7 -16.7 -18.9 83 99300 0 0 207 0 0 0 0 0 0 0 70 7.2 10 10 11.3 980 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3.09384E7 -16.7 -18.9 83 99400 0 0 207 0 0 0 0 0 0 0 70 6.7 10 10 4.8 640 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3.0942E7 -16.7 -18.9 83 99300 0 0 207 0 0 0 0 0 0 0 70 5.2 10 10 6.4 610 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3.09456E7 -16.7 -18.9 83 99300 0 0 207 0 0 0 0 0 0 0 50 5.2 10 10 6.4 610 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3.09492E7 -16.7 -18.9 83 99300 0 0 207 0 0 0 0 0 0 0 60 5.2 10 10 6.4 610 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3.09528E7 -16.7 -18.9 83 99300 0 0 207 0 0 0 0 0 0 0 60 4.6 10 10 4.8 610 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3.09564E7 -16.7 -18.9 83 99300 0 0 207 0 0 0 0 0 0 0 70 4.6 10 10 4.8 610 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3.096E7 -16.7 -18.9 83 99300 0 0 207 0 0 0 0 0 0 0 70 3.6 10 10 4.8 610 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3.09636E7 -16.7 -18.9 83 99300 0 0 207 0 0 0 0 0 0 0 70 3.1 10 10 4.8 610 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3.09672E7 -16.7 -18.9 83 99400 0 0 207 0 0 0 0 0 0 0 40 3.1 10 10 2.4 610 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.09708E7 -17.2 -18.9 87 99400 0 0 206 0 0 0 0 0 0 0 70 2.6 10 10 4.8 610 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.09744E7 -16.7 -18.9 83 99400 0 0 207 0 0 0 0 0 0 0 60 3.1 10 10 4.8 610 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.0978E7 -16.7 -18.9 83 99400 0 0 207 0 0 0 0 0 0 0 90 1.5 10 10 4.8 610 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.09816E7 -16.7 -18.9 83 99500 0 0 207 0 0 0 0 0 0 0 90 1.5 10 10 4.8 2740 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.09852E7 -17.2 -18.9 87 99500 0 0 206 0 0 0 0 0 0 0 160 1.5 10 10 4.8 2740 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.09888E7 -17.8 -20.0 83 99600 0 0 203 0 0 0 0 0 0 0 160 1.5 10 10 4.8 2290 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.09924E7 -17.8 -20.0 83 99600 0 0 203 0 0 0 0 0 0 0 160 2.1 10 10 11.3 2290 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.0996E7 -18.3 -20.0 87 99600 0 0 201 0 0 0 0 0 0 0 140 1.5 10 10 11.3 2290 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.09996E7 -18.3 -22.8 68 99700 0 0 199 0 0 0 0 0 0 0 180 3.6 10 10 11.3 610 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.10032E7 -18.9 -21.7 79 99700 0 0 198 0 0 0 0 0 0 0 190 3.1 10 10 11.3 610 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.10068E7 -17.8 -20.0 83 99800 0 0 203 0 0 0 0 0 0 0 0 0.0 10 10 9.7 700 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3.10104E7 -17.2 -19.4 83 99800 0 0 205 0 0 0 0 0 0 0 320 2.6 10 10 8.0 520 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3.1014E7 -16.7 -18.9 83 99900 0 0 207 0 0 0 0 0 0 0 330 5.2 10 10 9.7 610 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3.10176E7 -17.2 -20.0 79 100000 0 0 205 0 0 0 0 0 0 0 320 5.7 10 10 11.3 610 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3.10212E7 -17.8 -20.0 83 100100 0 0 203 0 0 0 0 0 0 0 310 4.6 10 10 11.3 610 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3.10248E7 -17.8 -20.0 83 100200 0 0 203 0 0 0 0 0 0 0 280 5.2 10 10 11.3 610 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3.10284E7 -17.8 -21.1 75 100200 0 0 192 0 0 0 0 0 0 0 270 7.7 10 8 11.3 610 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3.1032E7 -17.8 -20.6 79 100300 0 0 187 0 0 0 0 0 0 0 280 7.7 8 6 11.3 610 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3.10356E7 -17.8 -20.0 83 100300 0 0 188 0 0 0 0 0 0 0 300 8.8 8 6 11.3 610 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3.10392E7 -17.8 -20.0 83 100400 0 0 188 0 0 0 0 0 0 0 280 8.8 8 6 11.3 610 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3.10428E7 -17.8 -20.6 79 100400 0 0 202 0 0 0 0 0 0 0 270 9.8 10 10 11.3 610 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3.10464E7 -17.8 -20.6 79 100500 0 0 202 0 0 0 0 0 0 0 280 10.3 10 10 8.0 640 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3.105E7 -18.3 -20.6 83 100600 0 0 201 0 0 0 0 0 0 0 270 9.3 10 10 8.0 700 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.10536E7 -18.3 -21.1 79 100700 0 0 200 0 0 0 0 0 0 0 280 9.8 10 10 9.7 790 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.10572E7 -18.9 -21.7 79 100700 0 0 198 0 0 0 0 0 0 0 280 9.3 10 10 9.7 790 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.10608E7 -19.4 -21.7 83 100800 0 0 196 0 0 0 0 0 0 0 290 10.3 10 10 9.7 790 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.10644E7 -20.0 -22.8 79 100900 0 0 184 0 0 0 0 0 0 0 280 9.8 10 8 9.7 3660 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.1068E7 -21.7 -23.9 82 101000 0 0 171 0 0 0 0 0 0 0 280 11.3 8 4 9.7 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.10716E7 -22.8 -25.6 78 101100 0 0 164 0 0 0 0 0 0 0 280 11.3 4 2 9.7 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.10752E7 -23.3 -26.1 78 101100 0 0 162 0 0 0 0 0 0 0 270 11.8 3 2 9.7 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.10788E7 -23.3 -27.2 71 101100 0 0 164 0 0 0 0 0 0 0 280 10.8 5 4 9.7 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.10824E7 -24.4 -27.2 78 101200 0 0 153 0 0 0 0 0 0 0 280 10.3 0 0 9.7 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.1086E7 -24.4 -30.6 57 101300 0 0 154 0 0 0 0 0 0 0 270 10.3 1 1 6.4 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.10896E7 -24.4 -27.8 74 101300 0 0 164 0 0 0 0 0 0 0 270 10.3 6 6 4.8 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.10932E7 -25.0 -28.3 74 101400 0 0 159 0 0 0 0 0 0 0 260 10.3 8 4 2.4 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.10968E7 -25.6 -28.9 74 101400 0 0 157 0 0 0 0 0 0 0 270 10.3 8 4 2.4 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.11004E7 -26.1 -28.9 78 101500 0 0 153 0 0 0 0 0 0 0 270 10.3 5 2 2.4 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.1104E7 -26.1 -29.4 74 101700 0 0 153 0 0 0 0 0 0 0 260 10.3 2 2 2.4 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.11076E7 -26.1 -28.9 78 101700 0 0 153 0 0 0 0 0 0 0 270 11.3 2 2 2.4 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3.11112E7 -26.1 -29.4 74 101800 0 0 148 0 0 0 0 0 0 0 270 11.3 0 0 6.4 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3.11148E7 -26.7 -30.0 74 101900 0 0 146 0 0 0 0 0 0 0 260 11.3 0 0 6.4 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3.11184E7 -27.2 -30.6 73 101900 0 0 144 0 0 0 0 0 0 0 260 10.3 0 0 6.4 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3.1122E7 -27.8 -30.6 77 102000 0 0 143 0 0 0 0 0 0 0 260 7.7 0 0 6.4 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3.11256E7 -27.8 -30.6 77 102000 0 0 143 0 0 0 0 0 0 0 260 7.7 0 0 6.4 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3.11292E7 -27.8 -31.1 73 102000 0 0 143 0 0 0 0 0 0 0 260 8.2 0 0 8.0 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3.11328E7 -27.8 -31.1 73 102100 0 0 147 0 0 0 0 0 0 0 270 7.7 2 2 8.0 2000 9 999999999 1 0.0000 0 88 0.000 0.0 1.0 +3.11364E7 -27.2 -30.6 73 102100 0 0 149 0 0 0 0 0 0 0 270 9.8 3 2 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.114E7 -28.3 -31.7 73 102200 0 0 141 0 0 0 0 0 0 0 260 8.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.11436E7 -27.8 -31.1 73 102300 0 0 153 0 0 0 0 0 0 0 260 8.8 6 6 11.3 1680 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.11472E7 -27.2 -30.6 73 102400 0 0 153 0 0 0 0 0 0 0 260 9.3 7 5 11.3 1520 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.11508E7 -27.8 -31.1 73 102500 0 0 145 0 0 0 0 0 0 0 250 8.2 1 1 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.11544E7 -27.8 -31.1 73 102600 0 0 143 0 0 0 0 0 0 0 260 7.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.1158E7 -27.8 -30.6 77 102600 0 0 143 0 0 0 0 0 0 0 270 7.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.11616E7 -28.3 -31.7 73 102700 0 0 141 0 0 0 0 0 0 0 250 7.2 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.11652E7 -28.3 -31.7 73 102700 0 0 141 0 0 0 0 0 0 0 250 5.7 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.11688E7 -28.9 -32.8 69 102800 0 0 139 0 0 0 0 0 0 0 270 4.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.11724E7 -30.0 -37.2 49 102900 0 0 134 0 0 0 0 0 0 0 240 3.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.1176E7 -30.0 -33.9 69 102900 0 0 136 0 0 0 0 0 0 0 240 3.1 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.11796E7 -33.3 -37.2 68 103000 0 0 127 0 0 0 0 0 0 0 220 2.6 0 0 11.3 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.11832E7 -33.9 -37.8 68 103000 0 0 125 0 0 0 0 0 0 0 210 5.2 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.11868E7 -35.0 -38.9 67 103100 0 0 122 0 0 0 0 0 0 0 180 3.1 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.11904E7 -36.7 -41.1 63 103100 0 0 117 0 0 0 0 0 0 0 180 3.1 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.1194E7 -37.8 -40.5 63 103200 0 0 116 0 0 0 0 0 0 0 150 2.6 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.11976E7 -37.2 -40.4 63 103200 0 0 117 0 0 0 0 0 0 0 120 3.1 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.12012E7 -36.7 -41.1 63 103100 0 0 117 0 0 0 0 0 0 0 100 4.1 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.12048E7 -37.2 -40.2 65 103100 0 0 117 0 0 0 0 0 0 0 120 4.6 0 0 16.1 2000 9 999999999 2 0.0000 0 88 0.000 0.0 1.0 +3.12084E7 -36.1 -40.0 67 103000 0 0 119 0 0 0 0 0 0 0 100 5.2 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.1212E7 -34.4 -38.3 68 103000 0 0 124 0 0 0 0 0 0 0 100 6.2 0 0 16.1 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.12156E7 -31.7 -35.6 68 102900 0 0 131 0 0 0 0 0 0 0 90 6.2 0 0 11.3 2000 9 999999999 3 0.0000 0 88 0.000 0.0 1.0 +3.12192E7 -28.9 -32.2 73 102900 0 0 139 0 0 0 0 0 0 0 100 6.7 0 0 3.2 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3.12228E7 -28.3 -31.7 73 102700 0 0 141 0 0 0 0 0 0 0 100 7.7 0 0 6.4 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3.12264E7 -27.2 -30.0 77 102600 0 0 157 0 0 0 0 0 0 0 100 8.2 10 7 6.4 6100 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3.123E7 -25.6 -28.3 78 102500 0 0 173 0 0 0 0 0 0 0 100 10.8 10 10 1.6 6100 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.12336E7 -23.9 -26.7 78 102400 0 0 179 0 0 0 0 0 0 0 100 11.8 10 10 1.6 2740 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.12372E7 -22.2 -24.4 82 102200 0 0 186 0 0 0 0 0 0 0 110 12.4 10 10 1.6 2740 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.12408E7 -21.1 -23.3 82 102100 0 0 190 0 0 0 0 0 0 0 110 14.4 10 10 1.2 2440 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3.12444E7 -20.0 -22.8 79 101900 0 0 194 0 0 0 0 0 0 0 110 14.9 10 10 1.2 2130 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3.1248E7 -20.0 -22.2 83 101800 0 0 194 0 0 0 0 0 0 0 110 12.4 10 10 0.4 90 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3.12516E7 -18.9 -21.7 79 101700 0 0 198 0 0 0 0 0 0 0 110 10.3 10 10 0.4 430 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3.12552E7 -18.3 -20.0 87 101600 0 0 201 0 0 0 0 0 0 0 120 10.3 10 10 0.4 430 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3.12588E7 -16.7 -20.0 76 101500 0 0 206 0 0 0 0 0 0 0 130 9.3 10 10 0.8 980 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3.12624E7 -14.4 -16.1 87 101500 0 0 217 0 0 0 0 0 0 0 130 9.3 10 10 2.4 980 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3.1266E7 -12.2 -13.9 88 101400 0 0 227 0 0 0 0 0 0 0 140 7.7 10 10 11.3 1310 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3.12696E7 -11.7 -13.3 88 101400 0 0 229 0 0 0 0 0 0 0 150 6.2 10 10 11.3 1310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.12732E7 -10.0 -11.7 88 101400 0 0 236 0 0 0 0 0 0 0 200 5.2 10 10 11.3 1310 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.12768E7 -9.4 -10.6 92 101500 0 0 240 0 0 0 0 0 0 0 180 5.2 10 10 11.3 1070 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.12804E7 -6.1 -7.2 92 101500 0 0 255 0 0 0 0 0 0 0 230 3.6 10 10 11.3 1070 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.1284E7 -6.1 -7.2 92 101600 0 0 255 0 0 0 0 0 0 0 240 3.6 10 10 11.3 980 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.12876E7 -5.6 -7.2 88 101600 0 0 257 0 0 0 0 0 0 0 230 3.6 10 10 11.3 790 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.12912E7 -5.6 -6.7 92 101700 0 0 257 0 0 0 0 0 0 0 230 3.6 10 10 11.3 550 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.12948E7 -6.7 -7.8 92 101700 0 0 252 0 0 0 0 0 0 0 210 4.1 10 10 11.3 550 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.12984E7 -5.6 -6.7 92 101800 0 0 257 0 0 0 0 0 0 0 230 3.1 10 10 11.3 490 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.1302E7 -5.6 -6.7 92 101800 0 0 257 0 0 0 0 0 0 0 240 2.6 10 10 11.3 490 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.13056E7 -6.1 -7.2 92 101800 0 0 255 0 0 0 0 0 0 0 220 2.1 10 10 11.3 430 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.13092E7 -6.7 -7.8 92 101900 0 0 252 0 0 0 0 0 0 0 190 3.1 10 10 11.3 400 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.13128E7 -5.0 -6.1 92 101900 0 0 260 0 0 0 0 0 0 0 360 1.5 10 10 11.3 400 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.13164E7 -6.7 -7.8 92 101900 0 0 252 0 0 0 0 0 0 0 90 2.6 10 10 11.3 370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.132E7 -6.7 -7.8 92 101900 0 0 252 0 0 0 0 0 0 0 100 3.6 10 10 11.3 340 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.13236E7 -6.1 -6.7 96 101900 0 0 256 0 0 0 0 0 0 0 120 5.2 10 10 11.3 240 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.13272E7 -6.7 -7.8 92 101900 0 0 252 0 0 0 0 0 0 0 90 5.7 10 10 11.3 240 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.13308E7 -6.7 -7.2 96 101800 0 0 253 0 0 0 0 0 0 0 100 6.2 10 10 11.3 120 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.13344E7 -6.7 -7.2 96 101800 0 0 253 0 0 0 0 0 0 0 100 7.7 10 10 4.8 120 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.1338E7 -7.8 -8.3 96 101700 0 0 248 0 0 0 0 0 0 0 100 7.2 10 10 0.4 60 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3.13416E7 -8.3 -8.9 96 101700 0 0 245 0 0 0 0 0 0 0 90 7.2 10 10 1.6 120 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3.13452E7 -7.8 -8.9 92 101700 0 0 247 0 0 0 0 0 0 0 90 7.2 10 10 1.2 120 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3.13488E7 -8.3 -10.0 88 101600 0 0 244 0 0 0 0 0 0 0 90 9.3 10 10 2.4 240 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +3.13524E7 -8.3 -9.4 92 101500 0 0 245 0 0 0 0 0 0 0 90 9.3 10 10 2.4 640 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +3.1356E7 -7.8 -8.9 92 101500 0 0 247 0 0 0 0 0 0 0 90 9.3 10 10 1.6 240 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +3.13596E7 -7.8 -8.9 92 101400 0 0 247 0 0 0 0 0 0 0 90 9.3 10 10 1.6 240 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +3.13632E7 -7.8 -8.9 92 101300 0 0 247 0 0 0 0 0 0 0 100 10.3 10 10 2.4 180 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +3.13668E7 -7.2 -8.3 92 101200 0 0 250 0 0 0 0 0 0 0 100 9.8 10 10 2.4 370 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +3.13704E7 -7.8 -8.9 92 101200 0 0 247 0 0 0 0 0 0 0 110 9.3 10 10 2.4 370 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3.1374E7 -7.8 -9.4 88 101100 0 0 240 0 0 0 0 0 0 0 120 8.2 10 9 6.4 1310 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3.13776E7 -9.4 -11.1 88 101100 0 0 239 0 0 0 0 0 0 0 120 7.2 10 10 11.3 2440 9 999999999 9 0.0000 0 88 0.000 0.0 1.0 +3.13812E7 -9.4 -10.6 92 101100 0 0 240 0 0 0 0 0 0 0 120 5.2 10 10 11.3 2440 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +3.13848E7 -9.4 -10.6 92 101100 0 0 240 0 0 0 0 0 0 0 130 5.2 10 10 11.3 2440 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +3.13884E7 -10.6 -11.7 92 101100 0 0 215 0 0 0 0 0 0 0 140 5.2 5 5 11.3 2000 9 999999999 8 0.0000 0 88 0.000 0.0 1.0 +3.1392E7 -7.2 -8.3 92 101100 0 0 217 0 0 0 0 0 0 0 180 8.2 0 0 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +3.13956E7 -6.7 -8.3 88 101100 0 0 236 0 0 0 0 0 0 0 200 6.2 7 7 11.3 1680 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +3.13992E7 -8.3 -10.6 84 101200 0 0 218 0 0 0 0 0 0 0 220 4.1 2 2 11.3 2000 9 999999999 7 0.0000 0 88 0.000 0.0 1.0 +3.14028E7 -8.3 -10.0 88 101200 0 0 219 0 0 0 0 0 0 0 190 6.2 2 2 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3.14064E7 -10.0 -11.1 92 101200 0 0 212 0 0 0 0 0 0 0 190 7.7 2 2 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3.141E7 -10.6 -12.2 88 101200 0 0 203 0 0 0 0 0 0 0 200 6.7 0 0 16.1 2000 9 999999999 6 0.0000 0 88 0.000 0.0 1.0 +3.14136E7 -10.6 -12.8 84 101300 0 0 202 0 0 0 0 0 0 0 200 6.2 0 0 16.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.14172E7 -11.1 -12.8 88 101300 0 0 220 0 0 0 0 0 0 0 200 6.7 10 8 16.1 2740 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.14208E7 -8.3 -10.0 88 101300 0 0 244 0 0 0 0 0 0 0 190 5.2 10 10 11.3 1520 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.14244E7 -8.3 -10.0 88 101300 0 0 244 0 0 0 0 0 0 0 200 7.2 10 10 16.1 2740 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.1428E7 -8.3 -10.6 84 101400 0 0 244 0 0 0 0 0 0 0 220 5.2 10 10 16.1 2130 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.14316E7 -6.1 -8.9 81 101400 0 0 238 0 0 0 0 0 0 0 230 4.1 7 7 16.1 1520 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.14352E7 -6.7 -8.3 88 101400 0 0 228 0 0 0 0 0 0 0 230 5.7 3 3 16.1 2000 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.14388E7 -5.6 -7.2 88 101500 0 0 234 0 0 0 0 0 0 0 220 5.2 4 4 16.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3.14424E7 -6.7 -8.9 84 101500 0 0 218 0 0 0 0 0 0 0 230 5.2 0 0 16.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3.1446E7 -8.3 -10.6 84 101600 0 0 222 0 0 0 0 0 0 0 220 5.2 4 4 16.1 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3.14496E7 -7.2 -9.4 84 101600 0 0 249 0 0 0 0 0 0 0 230 4.6 10 10 16.1 610 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3.14532E7 -7.2 -8.9 88 101700 0 0 249 0 0 0 0 0 0 0 230 3.6 10 10 11.3 790 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3.14568E7 -6.7 -8.3 88 101700 0 0 252 0 0 0 0 0 0 0 230 4.1 10 10 11.3 1980 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3.14604E7 -7.2 -8.3 92 101800 0 0 250 0 0 0 0 0 0 0 240 3.6 10 10 11.3 1980 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3.1464E7 -9.4 -11.1 88 101800 0 0 207 0 0 0 0 0 0 0 230 3.1 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3.14676E7 -10.0 -11.7 88 101800 0 0 205 0 0 0 0 0 0 0 220 5.2 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3.14712E7 -14.4 -16.1 87 101800 0 0 188 0 0 0 0 0 0 0 230 4.6 0 0 11.3 2000 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3.14748E7 -14.4 -16.1 87 101800 0 0 201 0 0 0 0 0 0 0 210 6.2 6 6 11.3 2740 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3.14784E7 -13.9 -16.1 84 101800 0 0 208 0 0 0 0 0 0 0 210 5.2 8 8 11.3 2740 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3.1482E7 -12.8 -15.0 84 101800 0 0 224 0 0 0 0 0 0 0 200 6.2 10 10 16.1 2740 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3.14856E7 -13.3 -15.6 84 101800 0 0 221 0 0 0 0 0 0 0 200 5.7 10 10 16.1 2740 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3.14892E7 -15.0 -17.2 83 101700 0 0 214 0 0 0 0 0 0 0 160 2.1 10 10 16.1 6100 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3.14928E7 -15.6 -17.8 83 101700 0 0 212 0 0 0 0 0 0 0 160 4.1 10 10 16.1 6100 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3.14964E7 -13.9 -16.1 84 101700 0 0 219 0 0 0 0 0 0 0 170 3.6 10 10 16.1 6100 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3.15E7 -15.0 -17.2 83 101700 0 0 214 0 0 0 0 0 0 0 60 3.1 10 10 16.1 6100 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3.15036E7 -15.6 -17.2 87 101700 0 0 212 0 0 0 0 0 0 0 60 5.2 10 10 16.1 6100 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3.15072E7 -13.3 -15.6 84 101700 0 0 221 0 0 0 0 0 0 0 60 6.2 10 10 16.1 2130 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3.15108E7 -10.6 -11.7 92 101700 0 0 234 0 0 0 0 0 0 0 60 7.7 10 10 4.8 2130 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3.15144E7 -10.6 -11.7 92 101700 0 0 234 0 0 0 0 0 0 0 60 9.3 10 10 4.8 1130 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3.1518E7 -13.3 -15.0 87 101800 0 0 222 0 0 0 0 0 0 0 60 9.3 10 10 4.8 1520 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3.15216E7 -15.0 -17.2 83 101800 0 0 214 0 0 0 0 0 0 0 60 10.3 10 10 4.8 430 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3.15252E7 -16.7 -18.9 83 101900 0 0 207 0 0 0 0 0 0 0 60 10.3 10 10 4.8 430 9 999999999 4 0.0000 0 88 0.000 0.0 1.0 +3.15288E7 -18.3 -20.6 83 102000 0 0 201 0 0 0 0 0 0 0 60 12.4 10 10 4.8 640 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 +3.15324E7 -18.9 -21.1 83 102000 0 0 198 0 0 0 0 0 0 0 70 12.4 10 10 4.8 370 9 999999999 5 0.0000 0 88 0.000 0.0 1.0 diff --git a/AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD500.epw b/AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD500.epw new file mode 100644 index 0000000000..d6e7b68887 --- /dev/null +++ b/AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD500.epw @@ -0,0 +1,8768 @@ +LOCATION,New Delhi Gandhi Intl AP,DL,IND,ISD-TMYx,421810,28.56700,77.10300,5.5,236.8 +DESIGN CONDITIONS,1,2017 ASHRAE Handbook -- Fundamentals - Chapter 14 Climatic Design Information,,Heating,1,5.8,6.9,-0.9,3.6,19,1.1,4.2,21,7.7,18.5,6.8,18.2,1.5,250,Cooling,5,12.5,43.2,22.4,42,22.3,40.8,22.4,29.4,33.2,28.7,32.5,28.2,31.8,4.7,300,28.9,26.2,30.9,28,24.8,30.6,27.2,23.6,30,98.4,32.6,95.1,32.9,92.4,31.5,32.2,Extremes,7.9,6.7,5.9,3.1,45.5,1.8,1.5,1.8,46.5,0.8,47.4,-0.2,48.3,-1.5,49.4,2.6 +TYPICAL/EXTREME PERIODS,8,Wet Season - Week Near Average For Period,Typical,8/10,8/16,Dry Season - Week Near Average For Period,Typical,11/ 8,11/14,Summer - Week Nearest Max Temperature For Period,Extreme,5/13,5/19,Summer - Week Nearest Average Temperature For Period,Typical,4/15,4/21,Winter - Week Nearest Min Temperature For Period,Extreme,12/24,12/30,Winter - Week Nearest Average Temperature For Period,Typical,11/12,11/18,Autumn - Week Nearest Average Temperature For Period,Typical,7/29,8/ 4,Spring - Week Nearest Average Temperature For Period,Typical,2/12,2/18 +GROUND TEMPERATURES,3,.5,,,,16.62,18.30,21.56,24.66,30.51,33.59,34.44,32.88,29.27,24.77,20.34,17.42,2,,,,18.93,19.34,21.20,23.28,27.78,30.66,32.09,31.76,29.71,26.60,23.10,20.35,4,,,,21.33,21.03,21.85,23.03,26.00,28.23,29.67,30.03,29.12,27.30,24.93,22.78 +HOLIDAYS/DAYLIGHT SAVINGS,No,0,0,0 +COMMENTS 1,"NCEI ISD - #years=[23] Period of Record=1997-2019; Jan=2019; Feb=2016; Mar=2001; Apr=2008; May=2011; Jun=1998; Jul=2018; Aug=2004; Sep=2017; Oct=2016; Nov=2008; Dec=2013" +COMMENTS 2,"Downloaded from Climate.Onebuilding.org -- Ground temps represent undisturbed earth temperatures - calculated from this weather data." +DATA PERIODS,1,1,Data,Sunday,1/ 1,12/31 +2019,1,1,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,6,81,98468,0,0,289,0,0,0,0,0,0,0,156,0,0,0,1000,77777,0,999999999,18,0,0,88,0.2,0,0 +2019,1,1,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,8.8,6.4,85,98901,0,0,317,0,0,0,0,0,0,0,119,0,8,8,750,77777,9,999999999,18,0,0,88,0.2,0,0 +2019,1,1,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,8.6,6.9,89,99334,0,0,323,0,0,0,0,0,0,0,60,0,9,9,500,77777,0,999999999,19,0,0,88,0.2,0,0 +2019,1,1,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,8.5,7.1,91,99219,0,0,323,0,0,0,0,0,0,0,53,0,9,9,666,77777,9,999999999,20,0,0,88,0.2,0,0 +2019,1,1,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,8.3,7.2,93,99104,0,0,331,0,0,0,0,0,0,0,313,0,10,10,833,77777,9,999999999,20,0,0,88,0.2,0,0 +2019,1,1,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,7,5.7,91,99172,0,0,280,0,0,0,0,0,0,0,161,0,0,0,500,77777,0,999999999,17,0,0,88,0.2,0,0 +2019,1,1,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,4,87,98438,0,0,275,0,0,0,0,0,0,0,330,0,0,0,500,77777,0,999999999,14,0,0,88,0.2,0,0 +2019,1,1,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,5,87,98448,55,263,280,17,0,17,1632,0,1643,527,46,0,0,0,400,77777,0,999999999,16,0,0,88,0.2,0,0 +2019,1,1,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,7.8,6.5,91,99413,327,1415,284,169,434,69,19085,14275,7760,2524,225,0,0,0,500,77777,0,999999999,19,0,0,88,0.2,0,0 +2019,1,1,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,8,76,98498,560,1415,303,356,669,91,41615,35899,10673,3909,240,1.5,0,0,900,77777,0,999999999,21,0,0,88,0.2,0,0 +2019,1,1,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,8,63,98527,736,1415,316,510,804,91,61540,46388,11043,4340,260,1.5,0,0,1000,77777,0,999999999,21,0,0,88,0.2,0,0 +2019,1,1,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.6,9.8,64,99471,844,1415,325,604,856,93,74059,49627,11428,4633,270,2.1,0,0,1000,77777,0,999999999,26,0,0,88,0.2,0,0 +2019,1,1,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,7,43,98574,876,1415,338,636,787,149,75753,52925,17763,7057,260,2.1,0,0,1800,77777,0,999999999,19,0,0,88,0.2,0,0 +2019,1,1,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,6,38,98583,831,1415,341,597,781,137,70964,51789,16398,6461,270,2.6,0,0,2200,77777,0,999999999,17,0,0,88,0.2,0,0 +2019,1,1,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.2,7.2,40,99154,711,1415,358,482,768,96,57758,44951,11485,4463,270,2.6,3,3,2000,77777,0,999999999,19,0,0,88,0.2,0,0 +2019,1,1,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21,5,35,98583,524,1415,355,324,618,95,37466,33657,10988,3926,300,2.6,3,3,3000,77777,0,999999999,16,0,0,88,0.2,0,0 +2019,1,1,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21,5,35,98583,284,1415,355,136,360,64,15228,9627,7165,2257,280,2.1,3,3,3000,77777,0,999999999,16,0,0,88,0.2,0,0 +2019,1,1,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,17.6,10.5,63,99130,6,1415,331,2,0,2,178,0,179,72,101,0,0,0,2000,77777,0,999999999,27,0,0,88,0.2,0,0 +2019,1,1,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,6,48,98546,0,29,323,0,0,0,0,0,0,0,318,0,0,0,2500,77777,0,999999999,17,0,0,88,0.2,0,0 +2019,1,1,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,6,55,98527,0,0,314,0,0,0,0,0,0,0,147,0,0,0,2500,77777,0,999999999,17,0,0,88,0.2,0,0 +2019,1,1,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14,7,63,98517,0,0,324,0,0,0,0,0,0,0,90,1.5,3,3,2500,77777,0,999999999,19,0,0,88,0.2,0,0 +2019,1,1,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13,7,67,98507,0,0,320,0,0,0,0,0,0,0,110,2.1,3,3,2200,77777,0,999999999,19,0,0,88,0.2,0,0 +2019,1,1,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13,9,77,98507,0,0,322,0,0,0,0,0,0,0,140,2.1,3,3,2000,77777,0,999999999,24,0,0,88,0.2,0,0 +2019,1,1,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13.6,9.7,77,99218,0,0,330,0,0,0,0,0,0,0,140,2.6,5,5,1000,77777,0,999999999,25,0,0,88,0.2,0,0 +2019,1,2,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,13,9,77,98507,0,0,327,0,0,0,0,0,0,0,59,0,5,5,1500,77777,0,999999999,24,0,0,88,0.2,0,0 +2019,1,2,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,12,9,82,98498,0,0,322,0,0,0,0,0,0,0,84,0,5,5,1500,77777,0,999999999,24,0,0,88,0.2,0,0 +2019,1,2,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11.6,9.2,85,99199,0,0,321,0,0,0,0,0,0,0,284,0,5,5,1000,77777,0,999999999,24,0,0,88,0.2,0,0 +2019,1,2,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,11,9,87,98488,0,0,318,0,0,0,0,0,0,0,212,0,5,5,1200,77777,0,999999999,24,0,0,88,0.2,0,0 +2019,1,2,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,10,8,87,98478,0,0,308,0,0,0,0,0,0,0,154,0,3,3,1000,77777,0,999999999,21,0,0,88,0.2,0,0 +2019,1,2,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9.4,7.7,89,99216,0,0,305,0,0,0,0,0,0,0,248,0,3,3,500,77777,9,999999999,21,0,0,88,0.2,0,0 +2019,1,2,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,9,7,87,98468,0,0,302,0,0,0,0,0,0,0,104,0,3,3,600,77777,9,999999999,19,0,0,88,0.2,0,0 +2019,1,2,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11,9,87,98488,54,257,313,16,0,16,1573,0,1583,513,120,1.5,3,3,600,77777,9,999999999,24,0,0,88,0.2,0,0 +2019,1,2,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.8,8.6,92,99395,327,1415,307,166,415,70,18692,13432,7925,2567,90,2.1,3,3,500,77777,9,999999999,23,0,0,88,0.2,0,0 +2019,1,2,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14,10,77,98517,560,1415,328,351,641,97,40726,34453,11277,4106,110,2.6,3,3,800,77777,9,999999999,26,0,0,88,0.2,0,0 +2019,1,2,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17,9,59,98546,736,1415,340,503,781,96,60474,45291,11573,4539,110,3.1,3,3,1200,77777,9,999999999,23,0,0,88,0.2,0,0 +2019,1,2,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18.6,10.4,59,99431,845,1415,335,605,856,93,74136,49324,11411,4629,110,3.6,0,0,1000,77777,9,999999999,27,0,0,88,0.2,0,0 +2019,1,2,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,7,40,98583,878,1415,342,638,787,149,75957,53015,17854,7093,140,3.1,0,0,1600,77777,9,999999999,19,0,0,88,0.2,0,0 +2019,1,2,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,7,38,98592,833,1415,347,598,859,91,73353,50839,11235,4539,140,2.6,0,0,1700,77777,9,999999999,19,0,0,88,0.2,0,0 +2019,1,2,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.6,10.3,49,99177,713,1415,349,488,796,87,58897,44033,10482,4104,160,2.6,0,0,1000,77777,9,999999999,27,0,0,88,0.2,0,0 +2019,1,2,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,7,38,98592,527,1415,347,330,651,87,38413,33819,10168,3678,200,2.1,0,0,1800,77777,9,999999999,19,0,0,88,0.2,0,0 +2019,1,2,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,7,38,98592,287,1415,347,140,378,63,15686,9834,7109,2254,210,2.1,0,0,1800,77777,9,999999999,19,0,0,88,0.2,0,0 +2019,1,2,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.4,11.5,64,99215,9,1415,335,3,0,3,276,0,278,108,200,1.5,0,0,1000,77777,9,999999999,30,0,0,88,0.2,0,0 +2019,1,2,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,8,52,98555,0,45,330,0,0,0,0,0,0,0,224,0,0,0,1800,77777,9,999999999,21,0,0,88,0.2,0,0 +2019,1,2,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,9,63,98536,0,0,322,0,0,0,0,0,0,0,87,0,0,0,1500,77777,9,999999999,23,0,0,88,0.2,0,0 +2019,1,2,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,14.6,8.7,68,99354,0,0,315,0,0,0,0,0,0,0,19,0,0,0,1000,77777,9,999999999,23,0,0,88,0.2,0,0 +2019,1,2,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,9,72,98517,0,0,313,0,0,0,0,0,0,0,281,0,0,0,1500,77777,9,999999999,23,0,0,88,0.2,0,0 +2019,1,2,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,10,82,98507,0,0,310,0,0,0,0,0,0,0,298,0,0,0,1200,77777,9,999999999,26,0,0,88,0.2,0,0 +2019,1,2,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,11.8,10.6,92,99346,0,0,305,0,0,0,0,0,0,0,10,0,0,0,1000,77777,9,999999999,28,0,0,88,0.2,0,0 +2019,1,3,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,10,88,98498,0,0,305,0,0,0,0,0,0,0,151,0,0,0,1000,77777,9,999999999,26,0,0,88,0.2,0,0 +2019,1,3,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,9,87,98488,0,0,300,0,0,0,0,0,0,0,238,0,0,0,1000,77777,9,999999999,24,0,0,88,0.2,0,0 +2019,1,3,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,9,87,98488,0,0,300,0,0,0,0,0,0,0,186,0,0,0,600,77777,9,999999999,24,0,0,88,0.2,0,0 +2019,1,3,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,9,87,98488,0,0,300,0,0,0,0,0,0,0,280,0,0,0,600,77777,0,999999999,24,0,0,88,0.2,0,0 +2019,1,3,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,9,93,98478,0,0,296,0,0,0,0,0,0,0,206,0,0,0,300,77777,0,999999999,24,0,0,88,0.2,0,0 +2019,1,3,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,9.4,8.6,95,99361,0,0,293,0,0,0,0,0,0,0,193,0,0,0,200,77777,0,999999999,23,0,0,88,0.2,0,0 +2019,1,3,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,8,100,98458,0,0,287,0,0,0,0,0,0,0,97,0,0,0,200,77777,0,999999999,21,0,0,88,0.2,0,0 +2019,1,3,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,7,100,98448,53,252,282,16,0,16,1569,0,1579,509,260,1.5,0,0,50,77777,0,999999999,19,0,0,88,0.2,0,0 +2019,1,3,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.4,8.4,100,99546,326,1415,289,168,305,98,18384,12929,10718,3182,230,2.1,0,0,49,77777,0,999999999,23,0,0,88,0.2,0,0 +2019,1,3,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,9,8,93,98468,559,1415,335,150,22,141,16945,1444,16013,5469,260,2.6,10,10,75,77777,0,999999999,21,0,0,88,0.2,0,0 +2019,1,3,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,9,100,98468,737,1415,292,510,635,179,58390,45422,20562,7508,250,3.1,0,0,300,77777,0,999999999,24,0,0,88,0.2,0,0 +2019,1,3,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,11.2,90,99541,846,1415,310,605,855,93,74095,48837,11446,4646,270,2.6,0,0,500,77777,0,999999999,30,0,0,88,0.2,0,0 +2019,1,3,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,11,77,98527,880,1415,319,635,787,145,75637,50824,17370,6936,260,3.1,0,0,1100,77777,0,999999999,29,0,0,88,0.2,0,0 +2019,1,3,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,11,72,98536,835,1415,324,596,852,92,72916,48608,11317,4582,280,3.1,0,0,1100,77777,0,999999999,29,0,0,88,0.2,0,0 +2019,1,3,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.6,10.9,61,99353,716,1415,336,490,797,86,59155,43791,10430,4090,290,4.1,0,0,1000,77777,0,999999999,28,0,0,88,0.2,0,0 +2019,1,3,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,10,56,98564,530,1415,336,331,643,89,38407,32797,10389,3759,290,4.6,0,0,1300,77777,0,999999999,26,0,0,88,0.2,0,0 +2019,1,3,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,10,59,98555,290,1415,332,142,377,64,15841,9497,7206,2289,290,4.1,0,0,1500,77777,0,999999999,26,0,0,88,0.2,0,0 +2019,1,3,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.6,9.8,64,99315,13,1415,325,4,0,4,377,0,379,145,290,2.6,0,0,1000,77777,0,999999999,25,0,0,88,0.2,0,0 +2019,1,3,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,9,67,98527,0,61,317,0,0,0,0,0,0,0,280,2.6,0,0,1600,77777,0,999999999,23,0,0,88,0.2,0,0 +2019,1,3,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,8,72,98507,0,0,308,0,0,0,0,0,0,0,280,2.6,0,0,1600,77777,0,999999999,21,0,0,88,0.2,0,0 +2019,1,3,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.2,10.9,86,99389,0,0,311,0,0,0,0,0,0,0,320,3.1,0,0,1000,77777,0,999999999,29,0,0,88,0.2,0,0 +2019,1,3,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,10,88,98498,0,0,305,0,0,0,0,0,0,0,250,2.6,0,0,700,77777,0,999999999,26,0,0,88,0.2,0,0 +2019,1,3,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,10,94,98488,0,0,301,0,0,0,0,0,0,0,250,2.1,0,0,600,77777,0,999999999,26,0,0,88,0.2,0,0 +2019,1,3,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.2,10.4,95,99360,0,0,302,0,0,0,0,0,0,0,250,2.1,0,0,1000,77777,0,999999999,27,0,0,88,0.2,0,0 +2019,1,4,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,10,100,98478,0,0,297,0,0,0,0,0,0,0,225,0,0,0,350,77777,0,999999999,26,0,0,88,0.2,0,0 +2019,1,4,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,10,100,98478,0,0,297,0,0,0,0,0,0,0,240,2.1,0,0,250,77777,0,999999999,26,0,0,88,0.2,0,0 +2019,1,4,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,9.4,100,99313,0,0,339,0,0,0,0,0,0,0,250,2.6,10,10,50,77777,0,999999999,25,0,0,88,0.2,0,0 +2019,1,4,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,9,9,100,98468,0,0,337,0,0,0,0,0,0,0,250,2.1,10,10,0,77777,0,999999999,24,0,0,88,0.2,0,0 +2019,1,4,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,8.6,8.6,100,98705,0,0,334,0,0,0,0,0,0,0,310,1.8,10,10,100,77777,9,999999999,23,0,0,88,0.2,0,0 +2019,1,4,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,8.4,8.4,100,99283,0,0,333,0,0,0,0,0,0,0,270,2.6,10,10,49,77777,0,999999999,22,0,0,88,0.2,0,0 +2019,1,4,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,8,8,100,98458,0,0,331,0,0,0,0,0,0,0,280,3.1,10,10,50,77777,0,999999999,21,0,0,88,0.2,0,0 +2019,1,4,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,8,8,100,98458,52,248,331,5,0,5,485,0,488,193,260,2.6,10,10,100,77777,0,999999999,21,0,0,88,0.2,0,0 +2019,1,4,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,8.8,8.8,100,99423,326,1415,335,53,0,53,5195,0,5234,2056,270,2.6,10,10,50,30,0,999999999,23,0,0,88,0.2,0,0 +2019,1,4,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,8,8,100,98458,560,1415,331,112,0,112,11268,0,11360,4616,270,2.1,10,10,200,30,0,999999999,21,0,0,88,0.2,0,0 +2019,1,4,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,9,93,98478,737,1415,309,504,623,179,57714,44559,20582,7517,250,1.5,3,3,500,77777,0,999999999,24,0,0,88,0.2,0,0 +2019,1,4,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,9.6,85,99475,847,1415,323,566,693,150,66882,45896,17807,7008,250,2.1,5,5,500,77777,0,999999999,25,0,0,88,0.2,0,0 +2019,1,4,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13,10,82,98507,881,1415,328,594,712,149,70608,46826,17820,7098,260,2.1,5,5,1100,77777,0,999999999,26,0,0,88,0.2,0,0 +2019,1,4,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15,10,72,98527,838,1415,337,557,701,142,66095,45455,16849,6648,320,2.1,5,5,1100,77777,0,999999999,26,0,0,88,0.2,0,0 +2019,1,4,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16.4,10.8,69,99206,719,1415,345,459,650,128,53722,40322,15010,5719,320,2.1,5,5,1000,77777,0,999999999,28,0,0,88,0.2,0,0 +2019,1,4,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17,9,59,98546,534,1415,346,311,508,119,35321,29661,13573,4716,20,1.5,5,5,1300,77777,0,999999999,23,0,0,88,0.2,0,0 +2019,1,4,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,17,9,59,98546,294,1415,346,134,307,71,14933,8815,7869,2457,264,0,5,5,1500,77777,0,999999999,23,0,0,88,0.2,0,0 +2019,1,4,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,10.7,73,99150,16,1415,341,5,0,5,445,0,448,169,270,1.5,5,5,1000,77777,0,999999999,28,0,0,88,0.2,0,0 +2019,1,4,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,10,77,98517,0,77,333,0,0,0,0,0,0,0,99,0,5,5,1500,3048,0,999999999,26,0,0,88,0.2,0,0 +2019,1,4,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,10,77,98517,0,0,333,0,0,0,0,0,0,0,5,0,5,5,1500,3048,0,999999999,26,0,0,88,0.2,0,0 +2019,1,4,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,12.6,10.3,86,99228,0,0,327,0,0,0,0,0,0,0,249,0,5,5,1000,3048,0,999999999,27,0,0,88,0.2,0,0 +2019,1,4,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,11,88,98507,0,0,329,0,0,0,0,0,0,0,335,0,5,5,1500,3048,0,999999999,29,0,0,88,0.2,0,0 +2019,1,4,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,10,88,98498,0,0,323,0,0,0,0,0,0,0,350,2.1,5,5,1000,3048,0,999999999,26,0,0,88,0.2,0,0 +2019,1,4,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.8,9.2,90,99259,0,0,312,0,0,0,0,0,0,0,140,2.1,3,3,500,77777,0,999999999,24,0,0,88,0.2,0,0 +2019,1,5,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10,9,93,98478,0,0,309,0,0,0,0,0,0,0,110,2.6,3,3,500,77777,0,999999999,24,0,0,88,0.2,0,0 +2019,1,5,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10,9,93,98478,0,0,309,0,0,0,0,0,0,0,110,2.6,3,3,500,77777,0,999999999,24,0,0,88,0.2,0,0 +2019,1,5,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.8,8.6,92,99152,0,0,307,0,0,0,0,0,0,0,90,2.6,3,3,2000,77777,0,999999999,23,0,0,88,0.2,0,0 +2019,1,5,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10,9,93,98478,0,0,309,0,0,0,0,0,0,0,90,2.6,3,3,500,77777,0,999999999,24,0,0,88,0.2,0,0 +2019,1,5,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9,8,93,98468,0,0,303,0,0,0,0,0,0,0,100,2.6,3,3,400,77777,0,999999999,21,0,0,88,0.2,0,0 +2019,1,5,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.4,9,97,99080,0,0,306,0,0,0,0,0,0,0,90,2.6,3,3,200,77777,0,999999999,24,0,0,88,0.2,0,0 +2019,1,5,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9,9,100,98468,0,0,304,0,0,0,0,0,0,0,90,2.1,3,3,400,77777,0,999999999,24,0,0,88,0.2,0,0 +2019,1,5,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,9.5,9.1,97,98879,51,244,339,5,0,5,476,0,480,190,221,2.1,10,10,300,77777,9,999999999,24,0,0,88,0.2,0,0 +2019,1,5,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,9.2,95,99290,325,1415,311,162,374,76,18054,12645,8465,2697,90,2.1,4,4,200,77777,0,999999999,24,0,0,88,0.2,0,0 +2019,1,5,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,12.3,9,81,99292,560,1415,336,262,219,175,28990,15556,19491,6280,165,2.8,8,8,466,77777,9,999999999,24,0,0,88,0.2,0,0 +2019,1,5,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14.5,8.9,69,99295,738,1415,337,463,552,175,53115,39105,20128,7388,202,3.4,6,6,733,77777,9,999999999,23,0,0,88,0.2,0,0 +2019,1,5,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16.8,8.7,59,99297,849,1415,342,593,750,142,70416,49191,16935,6701,140,4.1,4,4,1000,77777,0,999999999,23,0,0,88,0.2,0,0 +2019,1,5,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,17.9,8.7,55,99211,883,1415,344,632,844,104,77272,50843,12757,5200,253,4.4,3,3,1333,77777,9,999999999,23,0,0,88,0.2,0,0 +2019,1,5,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,19.1,8.8,51,99124,840,1415,350,598,845,96,73174,49783,11737,4747,198,4.8,3,3,1666,77777,9,999999999,23,0,0,88,0.2,0,0 +2019,1,5,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20.2,8.8,48,99038,722,1415,352,496,793,90,59721,45175,10919,4276,140,5.1,2,2,2000,77777,0,999999999,23,0,0,88,0.2,0,0 +2019,1,5,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,19.2,9.4,53,99002,537,1415,351,333,630,94,38595,33126,10894,3932,76,4.3,3,3,2000,77777,9,999999999,24,0,0,88,0.2,0,0 +2019,1,5,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,18.2,9.9,58,98967,297,1415,350,143,347,70,15918,9849,7820,2457,347,3.4,4,4,2000,77777,9,999999999,26,0,0,88,0.2,0,0 +2019,1,5,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17.2,10.5,65,98932,20,1415,346,6,0,6,563,0,567,208,90,2.6,4,4,2000,77777,0,999999999,27,0,0,88,0.2,0,0 +2019,1,5,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,16.1,10.6,70,98960,0,94,346,0,0,0,0,0,0,0,33,2.4,6,6,1666,77777,9,999999999,28,0,0,88,0.2,0,0 +2019,1,5,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14.9,10.7,76,98988,0,0,345,0,0,0,0,0,0,0,277,2.3,7,7,1333,77777,9,999999999,28,0,0,88,0.2,0,0 +2019,1,5,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13.8,10.8,82,99016,0,0,327,0,0,0,0,0,0,0,90,2.1,3,3,1000,77777,0,999999999,28,0,0,88,0.2,0,0 +2019,1,5,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,13.7,10.8,83,98995,0,0,344,0,0,0,0,0,0,0,243,2.3,8,8,1000,77777,9,999999999,28,0,0,88,0.2,0,0 +2019,1,5,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,13.5,10.7,83,98974,0,0,343,0,0,0,0,0,0,0,252,2.4,8,8,1000,77777,9,999999999,28,0,0,88,0.2,0,0 +2019,1,5,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.4,10.7,84,98954,0,0,331,0,0,0,0,0,0,0,110,2.6,5,5,1000,77777,0,999999999,28,0,0,88,0.2,0,0 +2019,1,6,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,13.1,10.6,84,98932,0,0,341,0,0,0,0,0,0,0,299,2.4,8,8,1000,77777,9,999999999,28,0,0,88,0.2,0,0 +2019,1,6,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,12.9,10.4,85,98910,0,0,340,0,0,0,0,0,0,0,313,2.3,8,8,1000,77777,9,999999999,27,0,0,88,0.2,0,0 +2019,1,6,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.6,10.3,86,98888,0,0,327,0,0,0,0,0,0,0,90,2.1,5,5,1000,77777,0,999999999,27,0,0,88,0.2,0,0 +2019,1,6,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,12.7,10.6,87,98944,0,0,347,0,0,0,0,0,0,0,67,2.6,9,9,1000,77777,9,999999999,28,0,0,88,0.2,0,0 +2019,1,6,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,12.9,10.8,87,99000,0,0,348,0,0,0,0,0,0,0,146,3.1,9,9,1000,77777,9,999999999,28,0,0,88,0.2,0,0 +2019,1,6,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,11.1,88,99057,0,0,329,0,0,0,0,0,0,0,320,3.6,5,5,1000,3000,9,999999999,29,0,0,88,0.2,2,0 +2019,1,6,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13,11,88,98507,0,0,329,0,0,0,0,0,0,0,330,2.6,5,5,1300,3000,9,999999999,29,0,0,88,0.2,0,0 +2019,1,6,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12,11,94,98498,50,240,344,8,0,8,768,0,773,291,70,6.2,9,9,1300,3000,0,919999999,29,0,0,88,0.2,0,0 +2019,1,6,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11.8,11.4,97,99269,325,1415,353,52,0,52,5150,0,5189,2043,270,3.6,10,10,1000,1050,0,19999999,30,0,0,88,0.2,0,0 +2019,1,6,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,11,100,98488,560,1415,339,183,35,169,20333,2389,18896,6161,40,2.1,9,9,1300,2438,0,19999999,29,0,0,88,0.2,0,0 +2019,1,6,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,13,100,98507,739,1415,351,263,45,239,29307,3552,26821,9139,20,3.1,9,9,1100,3048,0,19999999,35,0,0,88,0.2,0,0 +2019,1,6,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15.2,11.9,81,99107,850,1415,340,566,552,233,64572,42322,26782,9846,50,3.6,5,5,1000,3000,0,19999999,31,0,0,88,0.2,0,0 +2019,1,6,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,11,68,98546,886,1415,348,596,711,150,70878,46408,17959,7162,50,3.1,5,5,1500,3048,0,19999999,29,0,0,88,0.2,0,0 +2019,1,6,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,10,59,98555,843,1415,352,562,703,142,66656,45638,16945,6695,60,3.1,5,5,1700,3048,0,19999999,26,0,0,88,0.2,0,0 +2019,1,6,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.8,12.4,66,98937,725,1415,358,462,653,127,54193,39769,14945,5718,70,3.1,5,5,1000,3048,0,19999999,33,0,0,88,0.2,0,0 +2019,1,6,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,9,52,98564,540,1415,355,316,512,120,35955,30155,13722,4781,70,2.1,5,5,2200,3048,0,19999999,23,0,0,88,0.2,0,0 +2019,1,6,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,10,56,98564,301,1415,356,139,314,72,15439,9265,8036,2519,10,2.1,5,5,1800,3048,0,19999999,26,0,0,88,0.2,0,0 +2019,1,6,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16.2,13.7,85,99000,23,1415,347,7,0,7,637,0,641,233,320,2.1,5,5,1000,3000,0,19999999,38,0,0,88,0.2,0,0 +2019,1,6,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,10,68,98536,0,111,342,0,0,0,0,0,0,0,320,2.1,5,5,2200,3048,0,19999999,26,0,0,88,0.2,0,0 +2019,1,6,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15,10,72,98527,0,0,337,0,0,0,0,0,0,0,320,2.6,5,5,2200,3048,0,19999999,26,0,0,88,0.2,0,0 +2019,1,6,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14.6,10.8,78,99169,0,0,336,0,0,0,0,0,0,0,290,3.1,5,5,2000,77777,0,19999999,28,0,0,88,0.2,0,0 +2019,1,6,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14,11,82,98517,0,0,334,0,0,0,0,0,0,0,290,2.1,5,5,2000,77777,0,19999999,29,0,0,88,0.2,0,0 +2019,1,6,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14,11,82,98517,0,0,329,0,0,0,0,0,0,0,270,2.1,3,3,1800,77777,0,19999999,29,0,0,88,0.2,0,0 +2019,1,6,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12.4,9.7,84,99216,0,0,320,0,0,0,0,0,0,0,319,0,3,3,1000,77777,0,19999999,25,0,0,88,0.2,0,0 +2019,1,7,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,12,11,94,98498,0,0,320,0,0,0,0,0,0,0,105,0,3,3,1300,77777,0,19999999,29,0,0,88,0.2,0,0 +2019,1,7,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11,11,100,98488,0,0,315,0,0,0,0,0,0,0,280,2.1,3,3,1000,77777,0,19999999,29,0,0,88,0.2,0,0 +2019,1,7,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11.2,10.4,95,99195,0,0,315,0,0,0,0,0,0,0,290,1.5,3,3,500,77777,0,19999999,27,0,0,88,0.2,0,0 +2019,1,7,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10,10,100,98478,0,0,310,0,0,0,0,0,0,0,240,1.5,3,3,500,77777,0,19999999,26,0,0,88,0.2,0,0 +2019,1,7,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10,10,100,98478,0,0,310,0,0,0,0,0,0,0,220,1.5,3,3,300,77777,0,19999999,26,0,0,88,0.2,0,0 +2019,1,7,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,9.2,8.8,97,99194,0,0,337,0,0,0,0,0,0,0,236,0,10,10,0,0,0,999999999,23,0,0,88,0.2,0,0 +2019,1,7,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,8,8,100,98458,0,0,331,0,0,0,0,0,0,0,44,0,10,10,0,0,0,999999999,21,0,0,88,0.2,0,0 +2019,1,7,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,8,8,100,98458,50,238,331,5,0,5,466,0,470,186,42,0,10,10,0,0,0,999999999,21,0,0,88,0.2,0,0 +2019,1,7,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,8.8,8.8,100,99375,325,1415,335,53,0,53,5181,0,5220,2050,250,2.1,10,10,50,30,0,999999999,23,0,0,88,0.2,0,0 +2019,1,7,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,10,10,100,98478,561,1415,343,112,0,112,11244,0,11337,4616,260,2.1,10,10,100,30,0,999999999,26,0,0,88,0.2,0,0 +2019,1,7,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10,10,100,98478,740,1415,297,512,632,181,58597,45058,20780,7590,270,2.1,0,0,250,30,0,999999999,26,0,0,88,0.2,0,0 +2019,1,7,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,10.9,88,99414,852,1415,310,611,857,94,74843,49227,11509,4677,250,3.1,0,0,500,30,0,999999999,29,0,0,88,0.2,0,0 +2019,1,7,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,13,88,98527,888,1415,322,641,864,97,78619,48947,11988,4914,290,2.6,0,0,1100,77777,0,999999999,35,0,0,88,0.2,0,0 +2019,1,7,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,12,72,98546,846,1415,329,604,854,93,73968,48304,11428,4641,300,3.1,0,0,1300,77777,0,999999999,32,0,0,88,0.2,0,0 +2019,1,7,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.6,12.1,66,99207,728,1415,337,500,804,86,60452,43585,10374,4088,320,3.1,0,0,1000,77777,0,999999999,32,0,0,88,0.2,0,0 +2019,1,7,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,10,56,98564,544,1415,336,342,655,90,39822,33852,10506,3825,300,2.6,0,0,1800,77777,0,999999999,26,0,0,88,0.2,0,0 +2019,1,7,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,9,52,98564,305,1415,335,152,400,66,17067,11245,7424,2381,310,2.1,0,0,2100,77777,0,999999999,23,0,0,88,0.2,0,0 +2019,1,7,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17,12.3,74,99163,27,1415,330,8,0,8,794,0,799,282,290,2.1,0,0,2000,77777,0,999999999,33,0,0,88,0.2,0,0 +2019,1,7,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,10,68,98536,0,128,323,0,0,0,0,0,0,0,290,2.1,0,0,2200,77777,0,999999999,26,0,0,88,0.2,0,0 +2019,1,7,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,10,72,98527,0,0,318,0,0,0,0,0,0,0,280,2.1,0,0,2200,77777,0,999999999,26,0,0,88,0.2,0,0 +2019,1,7,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,11.7,93,99249,0,0,310,0,0,0,0,0,0,0,250,1.5,0,0,2000,77777,0,999999999,31,0,0,88,0.2,0,0 +2019,1,7,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,11,88,98507,0,0,311,0,0,0,0,0,0,0,270,2.1,0,0,1800,77777,0,999999999,29,0,0,88,0.2,0,0 +2019,1,7,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,11,88,98507,0,0,311,0,0,0,0,0,0,0,240,2.1,0,0,1500,77777,0,999999999,29,0,0,88,0.2,0,0 +2019,1,7,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12,10.9,93,99280,0,0,306,0,0,0,0,0,0,0,250,2.1,0,0,1000,77777,0,999999999,29,0,0,88,0.2,0,0 +2019,1,8,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,11,100,98488,0,0,302,0,0,0,0,0,0,0,250,2.6,0,0,1500,77777,0,999999999,29,0,0,88,0.2,0,0 +2019,1,8,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10,10,100,98478,0,0,310,0,0,0,0,0,0,0,220,1.5,3,3,1200,77777,0,999999999,26,0,0,88,0.2,0,0 +2019,1,8,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,10.2,10.2,100,99272,0,0,311,0,0,0,0,0,0,0,215,0,3,3,1000,77777,0,999999999,27,0,0,88,0.2,0,0 +2019,1,8,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,9,9,100,98468,0,0,309,0,0,0,0,0,0,0,122,0,5,5,400,77777,0,999999999,24,0,0,88,0.2,0,0 +2019,1,8,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,9,9,100,98468,0,0,309,0,0,0,0,0,0,0,78,0,5,5,300,77777,0,999999999,24,0,0,88,0.2,0,0 +2019,1,8,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,9,100,99105,0,0,309,0,0,0,0,0,0,0,270,1.5,5,5,200,6000,0,999999999,24,0,0,88,0.2,0,0 +2019,1,8,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8,8,100,98458,0,0,304,0,0,0,0,0,0,0,250,1.5,5,5,200,6000,0,999999999,21,0,0,88,0.2,0,0 +2019,1,8,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9,8,93,98468,49,235,308,14,0,14,1368,0,1377,458,250,1.5,5,5,200,6000,0,999999999,21,0,0,88,0.2,0,0 +2019,1,8,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.6,9.2,97,99218,325,1415,310,161,300,93,17736,11991,10199,3078,270,2.1,4,4,200,77777,0,999999999,24,0,0,88,0.2,0,0 +2019,1,8,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,11.3,9.4,88,99222,561,1415,339,205,85,171,22706,5981,19027,6192,168,2.4,9,9,300,77777,9,999999999,25,0,0,88,0.2,0,0 +2019,1,8,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,13.1,9.6,79,99226,741,1415,335,397,274,253,44176,22783,28325,9469,291,2.8,7,7,400,77777,9,999999999,25,0,0,88,0.2,0,0 +2019,1,8,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14.8,9.8,72,99230,854,1415,331,606,730,164,71182,49726,19371,7565,290,3.1,3,3,500,77777,0,999999999,26,0,0,88,0.2,0,0 +2019,1,8,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,16.1,10.6,70,99122,890,1415,346,578,592,204,67110,43116,23847,9162,287,3.6,6,6,1000,77777,9,999999999,28,0,0,88,0.2,0,0 +2019,1,8,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,17.3,11.3,68,99014,849,1415,350,555,651,164,65162,43739,19353,7550,188,4.1,5,5,1500,77777,9,999999999,30,0,0,88,0.2,0,0 +2019,1,8,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18.6,12.1,66,98906,732,1415,351,497,744,111,58872,43513,13223,5135,290,4.6,3,3,2000,77777,0,999999999,32,0,0,88,0.2,0,0 +2019,1,8,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,17.8,12,69,98889,547,1415,356,311,447,138,34990,27300,15591,5316,196,4.1,6,6,2000,77777,9,999999999,32,0,0,88,0.2,0,0 +2019,1,8,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,17,11.9,72,98871,308,1415,352,135,238,83,14808,7892,9125,2790,216,3.6,6,6,2000,77777,9,999999999,31,0,0,88,0.2,0,0 +2019,1,8,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16.2,11.8,75,98854,31,1415,352,8,0,8,755,0,760,274,290,3.1,7,7,2000,77777,0,999999999,31,0,0,88,0.2,0,0 +2019,1,8,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,15.3,11.6,79,98887,0,146,348,0,0,0,0,0,0,0,136,2.9,7,7,1500,77777,9,999999999,30,0,0,88,0.2,0,0 +2019,1,8,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14.3,11.3,82,98920,0,0,348,0,0,0,0,0,0,0,115,2.8,8,8,1000,77777,9,999999999,30,0,0,88,0.2,0,0 +2019,1,8,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13.4,11.1,86,98954,0,0,343,0,0,0,0,0,0,0,270,2.6,8,8,500,77777,0,999999999,29,0,0,88,0.2,0,0 +2019,1,8,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,12.6,11.1,90,98959,0,0,347,0,0,0,0,0,0,0,128,2.4,9,9,500,77777,9,999999999,29,0,0,88,0.2,0,0 +2019,1,8,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,11.8,11,95,98964,0,0,352,0,0,0,0,0,0,0,27,2.3,10,10,500,77777,9,999999999,29,0,0,88,0.2,0,0 +2019,1,8,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,11,11,100,98969,0,0,349,0,0,0,0,0,0,0,270,2.1,10,10,500,77777,0,999999999,29,0,0,88,0.2,0,0 +2019,1,9,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,10.7,10.7,100,98963,0,0,347,0,0,0,0,0,0,0,184,2.1,10,10,500,77777,9,999999999,28,0,0,88,0.2,0,0 +2019,1,9,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,10.5,10.5,100,98957,0,0,346,0,0,0,0,0,0,0,100,2.1,10,10,500,77777,9,999999999,28,0,0,88,0.2,0,0 +2019,1,9,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,10.2,10.2,100,98951,0,0,344,0,0,0,0,0,0,0,250,2.1,10,10,500,77777,0,999999999,27,0,0,88,0.2,0,0 +2019,1,9,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,9.5,9.5,100,98948,0,0,340,0,0,0,0,0,0,0,6,1.9,10,10,400,77777,9,999999999,25,0,0,88,0.2,0,0 +2019,1,9,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,8.9,8.9,100,98945,0,0,336,0,0,0,0,0,0,0,226,1.7,10,10,300,77777,9,999999999,24,0,0,88,0.2,0,0 +2019,1,9,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.2,8.2,100,98941,0,0,288,0,0,0,0,0,0,0,270,1.5,0,0,200,77777,0,999999999,22,0,0,88,0.2,0,0 +2019,1,9,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,7,100,98448,0,0,282,0,0,0,0,0,0,0,260,2.1,0,0,200,77777,0,999999999,19,0,0,88,0.2,0,0 +2019,1,9,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,7,100,98448,49,234,282,15,0,15,1465,0,1475,479,260,3.1,0,0,400,77777,0,999999999,19,0,0,88,0.2,0,0 +2019,1,9,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.6,7.8,95,99110,325,1415,289,168,431,68,18886,13767,7725,2511,270,3.1,0,0,500,77777,0,999999999,21,0,0,88,0.2,0,0 +2019,1,9,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,9,87,98488,562,1415,300,358,670,91,41797,35658,10678,3917,280,3.6,0,0,800,77777,0,999999999,24,0,0,88,0.2,0,0 +2019,1,9,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,8,67,98517,743,1415,312,516,808,91,62383,46734,11088,4367,280,4.6,0,0,1300,77777,0,999999999,21,0,0,88,0.2,0,0 +2019,1,9,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.2,9.7,65,99126,856,1415,323,615,861,94,75524,50101,11518,4682,290,5.7,0,0,1000,77777,0,999999999,25,0,0,88,0.2,0,0 +2019,1,9,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,7,49,98555,893,1415,329,652,788,153,77588,53479,18343,7304,300,6.2,0,0,2500,77777,0,999999999,19,0,0,88,0.2,0,0 +2019,1,9,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,7,46,98564,852,1415,333,615,784,142,73140,52097,16994,6725,300,5.1,0,0,3000,77777,0,999999999,19,0,0,88,0.2,0,0 +2019,1,9,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.2,4,34,98960,735,1415,335,513,806,94,61922,48295,11324,4437,290,4.1,0,0,1000,77777,0,999999999,14,0,0,88,0.2,0,0 +2019,1,9,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,5,37,98574,551,1415,335,351,665,92,40989,36510,10762,3916,300,3.1,0,0,5000,77777,0,999999999,16,0,0,88,0.2,0,0 +2019,1,9,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,5,40,98564,312,1415,331,159,419,66,17882,12989,7473,2410,310,3.1,0,0,5000,77777,0,999999999,16,0,0,88,0.2,0,0 +2019,1,9,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,9,56,98928,34,1415,330,11,0,11,1022,0,1029,351,320,4.1,0,0,4000,77777,0,999999999,23,0,0,88,0.2,0,0 +2019,1,9,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,7,55,98536,0,164,320,0,0,0,0,0,0,0,280,2.6,0,0,4000,77777,0,999999999,19,0,0,88,0.2,0,0 +2019,1,9,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,7,59,98527,0,0,315,0,0,0,0,0,0,0,250,2.6,0,0,3000,77777,0,999999999,19,0,0,88,0.2,0,0 +2019,1,9,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.6,10.5,82,99024,0,0,313,0,0,0,0,0,0,0,270,2.6,0,0,2000,77777,0,999999999,27,0,0,88,0.2,0,0 +2019,1,9,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,8,76,98498,0,0,303,0,0,0,0,0,0,0,270,2.1,0,0,2200,77777,0,999999999,21,0,0,88,0.2,0,0 +2019,1,9,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,8,76,98498,0,0,303,0,0,0,0,0,0,0,230,1.5,0,0,2200,77777,0,999999999,21,0,0,88,0.2,0,0 +2019,1,9,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.6,87,99014,0,0,298,0,0,0,0,0,0,0,230,1.5,0,0,1000,77777,0,999999999,23,0,0,88,0.2,0,0 +2019,1,10,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,8,87,98478,0,0,295,0,0,0,0,0,0,0,260,1.5,0,0,1600,77777,0,999999999,21,0,0,88,0.2,0,0 +2019,1,10,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,8,87,98478,0,0,295,0,0,0,0,0,0,0,240,1.5,0,0,1500,77777,0,999999999,21,0,0,88,0.2,0,0 +2019,1,10,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.2,92,98953,0,0,293,0,0,0,0,0,0,0,230,1.5,0,0,1000,77777,0,999999999,22,0,0,88,0.2,0,0 +2019,1,10,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,8,93,98468,0,0,291,0,0,0,0,0,0,0,250,2.1,0,0,1000,77777,0,999999999,21,0,0,88,0.2,0,0 +2019,1,10,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,7,93,98458,0,0,286,0,0,0,0,0,0,0,230,2.1,0,0,800,77777,0,999999999,19,0,0,88,0.2,0,0 +2019,1,10,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.4,97,98918,0,0,285,0,0,0,0,0,0,0,250,2.1,0,0,500,77777,9,999999999,20,0,0,88,0.2,0,0 +2019,1,10,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,7,93,98458,0,0,286,0,0,0,0,0,0,0,240,1.5,0,0,600,77777,9,999999999,19,0,0,88,0.2,0,0 +2019,1,10,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,7,93,98458,49,233,286,15,0,15,1461,0,1471,478,250,2.1,0,0,700,77777,9,999999999,19,0,0,88,0.2,0,0 +2019,1,10,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7.6,6.3,91,99110,326,1414,283,168,435,68,18985,14173,7701,2504,230,1.5,0,0,500,77777,9,999999999,18,0,0,88,0.2,0,0 +2019,1,10,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,8,82,98488,563,1414,299,359,673,91,41996,36167,10663,3912,240,3.1,0,0,1200,77777,9,999999999,21,0,0,88,0.2,0,0 +2019,1,10,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,8,67,98517,744,1414,312,518,808,92,62552,46800,11104,4375,260,3.1,0,0,1500,77777,9,999999999,21,0,0,88,0.2,0,0 +2019,1,10,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,10.7,73,99121,858,1414,322,616,860,94,75582,49549,11561,4704,270,2.1,0,0,1000,77777,9,999999999,28,0,0,88,0.2,0,0 +2019,1,10,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,7,49,98555,895,1414,329,654,789,154,77877,53560,18431,7342,310,2.1,0,0,2500,77777,9,999999999,19,0,0,88,0.2,0,0 +2019,1,10,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,7,46,98564,855,1414,333,618,784,143,73479,52205,17098,6770,290,3.1,0,0,2500,77777,9,999999999,19,0,0,88,0.2,0,0 +2019,1,10,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20,11.7,59,98831,739,1414,343,510,807,87,61632,44342,10577,4177,270,3.1,0,0,2000,77777,9,999999999,31,0,0,88,0.2,0,0 +2019,1,10,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,5,37,98574,555,1414,335,355,667,92,41384,36804,10818,3942,300,3.1,0,0,2500,77777,9,999999999,16,0,0,88,0.2,0,0 +2019,1,10,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19,2,32,98564,316,1414,347,151,335,76,16874,12180,8530,2677,320,3.1,5,5,2500,77777,9,999999999,12,0,0,88,0.2,0,0 +2019,1,10,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16.8,10,64,98821,38,1414,346,11,0,11,1055,0,1062,364,320,3.1,5,5,2000,77777,9,999999999,26,0,0,88,0.2,0,0 +2019,1,10,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16,5,48,98536,0,182,336,0,0,0,0,0,0,0,280,1.5,5,5,2500,77777,9,999999999,16,0,0,88,0.2,0,0 +2019,1,10,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15,7,59,98527,0,0,329,0,0,0,0,0,0,0,270,1.5,3,3,2100,77777,9,999999999,19,0,0,88,0.2,0,0 +2019,1,10,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12.4,10.9,91,98886,0,0,308,0,0,0,0,0,0,0,282,0,0,0,1000,77777,9,999999999,29,0,0,88,0.2,0,0 +2019,1,10,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,7,63,98517,0,0,311,0,0,0,0,0,0,0,169,0,0,0,2100,77777,9,999999999,19,0,0,88,0.2,0,0 +2019,1,10,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,13,8,72,98507,0,0,321,0,0,0,0,0,0,0,212,0,3,3,2100,77777,9,999999999,21,0,0,88,0.2,0,0 +2019,1,10,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,9,100,98940,0,0,304,0,0,0,0,0,0,0,24,0,3,3,1000,77777,9,999999999,24,0,0,88,0.2,0,0 +2019,1,11,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,11,8,82,98488,0,0,299,0,0,0,0,0,0,0,230,0,0,0,1200,77777,9,999999999,21,0,0,88,0.2,0,0 +2019,1,11,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,8,87,98478,0,0,295,0,0,0,0,0,0,0,117,0,0,0,1200,77777,9,999999999,21,0,0,88,0.2,0,0 +2019,1,11,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,9,8.2,95,99037,0,0,291,0,0,0,0,0,0,0,228,0,0,0,1000,77777,9,999999999,22,0,0,88,0.2,0,0 +2019,1,11,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,7,87,98468,0,0,290,0,0,0,0,0,0,0,3,0,0,0,900,77777,9,999999999,19,0,0,88,0.2,0,0 +2019,1,11,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,7,87,98468,0,0,290,0,0,0,0,0,0,0,358,0,0,0,800,77777,9,999999999,19,0,0,88,0.2,0,0 +2019,1,11,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,7.8,7.4,97,99073,0,0,285,0,0,0,0,0,0,0,21,0,0,0,500,77777,9,999999999,20,0,0,88,0.2,0,0 +2019,1,11,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,8,100,98458,0,0,287,0,0,0,0,0,0,0,355,0,0,0,600,77777,9,999999999,21,0,0,88,0.2,0,0 +2019,1,11,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,8,93,98468,49,233,291,15,0,15,1465,0,1475,479,16,0,0,0,500,77777,9,999999999,21,0,0,88,0.2,0,0 +2019,1,11,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.4,8.4,100,99215,326,1414,289,168,433,68,18974,13741,7721,2512,110,1.5,0,0,500,77777,9,999999999,22,0,0,88,0.2,0,0 +2019,1,11,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15,10,72,98527,564,1414,332,355,647,97,41236,34809,11264,4112,70,1.5,3,3,1000,77777,9,999999999,26,0,0,88,0.2,0,0 +2019,1,11,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17,9,59,98546,746,1414,340,512,787,96,61613,45750,11641,4579,70,1.5,3,3,1200,77777,9,999999999,23,0,0,88,0.2,0,0 +2019,1,11,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18.2,9,55,99291,860,1414,346,612,841,100,74849,50059,12286,4987,140,2.1,3,3,1000,77777,9,999999999,23,0,0,88,0.2,0,0 +2019,1,11,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21,5,35,98583,898,1414,355,651,789,149,77772,53731,17888,7149,310,2.6,3,3,2200,77777,9,999999999,16,0,0,88,0.2,0,0 +2019,1,11,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21,4,33,98583,858,1414,353,616,858,95,75740,52404,11686,4741,310,2.6,3,3,2200,77777,9,999999999,14,0,0,88,0.2,0,0 +2019,1,11,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,8.5,45,99016,742,1414,359,509,786,96,61284,45869,11637,4571,290,2.1,3,3,2000,77777,9,999999999,22,0,0,88,0.2,0,0 +2019,1,11,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20,5,37,98574,559,1414,350,354,647,98,41137,36509,11383,4131,50,2.1,3,3,2700,77777,9,999999999,16,0,0,88,0.2,0,0 +2019,1,11,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20,6,40,98574,320,1414,351,163,415,69,18292,13404,7737,2499,40,2.1,3,3,2500,77777,9,999999999,17,0,0,88,0.2,0,0 +2019,1,11,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17.6,10.5,63,98994,42,1414,345,13,0,13,1238,0,1246,415,50,2.1,3,3,2000,77777,9,999999999,27,0,0,88,0.2,0,0 +2019,1,11,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17,8,55,98546,0,200,339,0,0,0,0,0,0,0,150,2.1,3,3,2100,77777,9,999999999,21,0,0,88,0.2,0,0 +2019,1,11,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16,9,63,98536,0,0,336,0,0,0,0,0,0,0,160,1.5,3,3,2100,77777,9,999999999,23,0,0,88,0.2,0,0 +2019,1,11,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14.2,10.4,78,99156,0,0,329,0,0,0,0,0,0,0,111,0,3,3,2000,77777,9,999999999,27,0,0,88,0.2,0,0 +2019,1,11,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,15,8,63,98527,0,0,330,0,0,0,0,0,0,0,106,0,3,3,2000,77777,9,999999999,21,0,0,88,0.2,0,0 +2019,1,11,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,13,9,77,98507,0,0,322,0,0,0,0,0,0,0,303,0,3,3,1600,77777,9,999999999,24,0,0,88,0.2,0,0 +2019,1,11,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11.2,9.2,87,99127,0,0,314,0,0,0,0,0,0,0,151,0,3,3,1000,77777,9,999999999,24,0,0,88,0.2,0,0 +2019,1,12,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,12,9,82,98498,0,0,322,0,0,0,0,0,0,0,348,0,5,5,1500,77777,9,999999999,24,0,0,88,0.2,0,0 +2019,1,12,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,12,9,82,98498,0,0,322,0,0,0,0,0,0,0,144,0,5,5,1200,77777,9,999999999,24,0,0,88,0.2,0,0 +2019,1,12,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11.2,9.6,90,99059,0,0,319,0,0,0,0,0,0,0,184,0,5,5,1000,77777,9,999999999,25,0,0,88,0.2,0,0 +2019,1,12,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,12,10,88,98498,0,0,323,0,0,0,0,0,0,0,57,0,5,5,1000,77777,9,999999999,26,0,0,88,0.2,0,0 +2019,1,12,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,11,10,94,98488,0,0,319,0,0,0,0,0,0,0,2,0,5,5,900,77777,9,999999999,26,0,0,88,0.2,0,0 +2019,1,12,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10.2,9.8,97,98932,0,0,315,0,0,0,0,0,0,0,347,0,5,5,500,77777,9,999999999,26,0,0,88,0.2,0,0 +2019,1,12,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,10,10,100,98478,0,0,314,0,0,0,0,0,0,0,321,0,5,5,500,77777,0,999999999,26,0,0,88,0.2,0,0 +2019,1,12,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,9,9,100,98468,49,233,309,14,0,14,1364,0,1373,457,263,0,5,5,400,77777,0,999999999,24,0,0,88,0.2,0,0 +2019,1,12,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9.2,8.8,97,99136,327,1414,310,157,348,76,17531,12019,8566,2726,97,0,5,5,200,77777,0,999999999,23,0,0,88,0.2,0,0 +2019,1,12,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,12,11,94,98498,565,1414,325,335,558,111,38455,31480,12842,4609,97,0,5,5,500,77777,0,999999999,29,0,0,88,0.2,0,0 +2019,1,12,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,15,11,77,98527,748,1414,333,512,750,114,60727,44925,13628,5309,76,0,3,3,700,77777,0,999999999,29,0,0,88,0.2,0,0 +2019,1,12,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18.8,10.3,58,99161,862,1414,350,613,826,109,74464,49523,13235,5360,140,2.1,3,3,1000,77777,0,999999999,27,0,0,88,0.2,0,0 +2019,1,12,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20,8,46,98574,901,1414,359,613,707,162,72713,48345,19301,7668,130,2.1,5,5,1500,77777,0,999999999,21,0,0,88,0.2,0,0 +2019,1,12,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21,7,40,98583,861,1414,363,581,717,143,69158,47744,17106,6789,140,2.6,5,5,2000,77777,0,999999999,19,0,0,88,0.2,0,0 +2019,1,12,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22.6,9.3,43,98992,746,1414,373,483,665,131,56718,42312,15484,5946,110,3.1,5,5,1000,77777,0,999999999,24,0,0,88,0.2,0,0 +2019,1,12,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22,6,35,98592,563,1414,366,336,536,122,38403,32922,14031,4942,120,2.6,5,5,1600,77777,0,999999999,17,0,0,88,0.2,0,0 +2019,1,12,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21,6,38,98583,324,1414,361,156,351,75,17443,12385,8463,2690,150,3.1,5,5,1600,77777,0,999999999,17,0,0,88,0.2,0,0 +2019,1,12,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,12.2,65,98881,46,1414,359,13,0,13,1271,0,1280,430,140,2.1,5,5,1000,77777,0,999999999,32,0,0,88,0.2,0,0 +2019,1,12,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,7,49,98555,0,218,369,0,0,0,0,0,0,0,160,2.1,9,9,2200,3048,0,999999999,19,0,0,88,0.2,0,0 +2019,1,12,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,7,49,98555,0,0,348,0,0,0,0,0,0,0,58,0,5,5,2100,3048,0,999999999,19,0,0,88,0.2,0,0 +2019,1,12,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,11,82,99018,0,0,329,0,0,0,0,0,0,0,180,1.5,3,3,2000,3000,0,999999999,29,0,0,88,0.2,0,0 +2019,1,12,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15,7,59,98527,0,0,329,0,0,0,0,0,0,0,100,2.6,3,3,2100,3000,0,999999999,19,0,0,88,0.2,0,0 +2019,1,12,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,15,7,59,98527,0,0,329,0,0,0,0,0,0,0,162,0,3,3,1800,3000,0,999999999,19,0,0,88,0.2,0,0 +2019,1,12,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12.2,10.7,91,99020,0,0,320,0,0,0,0,0,0,0,90,1.5,3,3,1000,77777,0,999999999,28,0,0,88,0.2,0,0 +2019,1,13,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,8,82,98488,0,0,317,0,0,0,0,0,0,0,67,1,5,5,1500,3048,0,999999999,21,0,0,88,0.2,0,0 +2019,1,13,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,8,82,98488,0,0,317,0,0,0,0,0,0,0,157,0,5,5,1500,3048,0,999999999,21,0,0,88,0.2,0,0 +2019,1,13,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,10.8,10,95,99113,0,0,318,0,0,0,0,0,0,0,254,0,5,5,1000,3048,0,999999999,26,0,0,88,0.2,0,0 +2019,1,13,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,10,94,98488,0,0,319,0,0,0,0,0,0,0,199,0,5,5,1200,3048,0,999999999,26,0,0,88,0.2,0,0 +2019,1,13,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,10,94,98488,0,0,319,0,0,0,0,0,0,0,340,2.6,5,5,1200,3048,0,999999999,26,0,0,88,0.2,0,0 +2019,1,13,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.4,11.7,95,99070,0,0,327,0,0,0,0,0,0,0,90,4.1,5,5,1000,3048,9,999999999,31,0,0,88,0.2,0,0 +2019,1,13,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,10,88,98498,0,0,323,0,0,0,0,0,0,0,350,2.1,5,5,1000,3048,9,999999999,26,0,0,88,0.2,0,0 +2019,1,13,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,11,88,98507,49,234,329,14,0,14,1366,0,1375,458,360,2.1,5,5,800,3048,9,999999999,29,0,0,88,0.2,0,0 +2019,1,13,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.4,10.9,91,99284,327,1414,326,157,334,80,17452,11508,8882,2806,90,1.5,5,5,500,3048,9,999999999,29,0,0,88,0.2,0,0 +2019,1,13,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15,11,77,98527,566,1414,333,356,646,97,41386,34499,11310,4135,80,1.5,3,3,800,3048,9,999999999,29,0,0,88,0.2,0,0 +2019,1,13,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18,10,59,98555,749,1414,346,514,795,92,62099,45277,11196,4421,110,1.5,3,3,1000,3048,9,999999999,26,0,0,88,0.2,0,0 +2019,1,13,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,13.8,72,99377,865,1414,355,611,833,101,74523,47085,12408,5053,110,2.1,3,3,1000,77777,9,999999999,38,0,0,88,0.2,0,0 +2019,1,13,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21,9,46,98583,904,1414,359,652,855,104,79971,51423,12794,5241,150,2.1,3,3,1200,77777,9,999999999,23,0,0,88,0.2,0,0 +2019,1,13,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,22,9,43,98592,865,1414,364,617,843,100,75451,50224,12326,5009,218,0,3,3,1500,77777,9,999999999,23,0,0,88,0.2,0,0 +2019,1,13,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21.6,14.1,62,99206,750,1414,369,511,791,91,61633,42625,10973,4348,290,2.1,3,3,1000,77777,9,999999999,39,0,0,88,0.2,0,0 +2019,1,13,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22,9,43,98592,567,1414,364,358,652,96,41669,35497,11252,4113,290,4.1,3,3,1200,77777,9,999999999,23,0,0,88,0.2,0,0 +2019,1,13,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21,11,53,98583,328,1414,362,167,438,65,18871,12823,7394,2433,280,3.6,3,3,1200,77777,9,999999999,28,0,0,88,0.2,0,0 +2019,1,13,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19.2,14,72,99135,50,1414,357,15,0,15,1459,0,1469,482,290,2.6,3,3,1000,77777,9,999999999,39,0,0,88,0.2,0,0 +2019,1,13,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18,11,64,98555,0,237,347,0,0,0,0,0,0,0,280,2.1,3,3,1200,77777,9,999999999,28,0,0,88,0.2,0,0 +2019,1,13,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17,12,72,98546,0,0,344,0,0,0,0,0,0,0,270,2.1,3,3,1200,77777,9,999999999,32,0,0,88,0.2,0,0 +2019,1,13,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16.4,12,75,99313,0,0,327,0,0,0,0,0,0,0,320,2.6,0,0,1000,77777,9,999999999,32,0,0,88,0.2,0,0 +2019,1,13,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,11,72,98536,0,0,324,0,0,0,0,0,0,0,320,2.1,0,0,1300,77777,9,999999999,29,0,0,88,0.2,0,0 +2019,1,13,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,11,72,98536,0,0,324,0,0,0,0,0,0,0,300,2.1,0,0,1200,77777,9,999999999,29,0,0,88,0.2,0,0 +2019,1,13,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.2,11.2,82,99311,0,0,316,0,0,0,0,0,0,0,290,2.1,0,0,1000,77777,9,999999999,29,0,0,88,0.2,0,0 +2019,1,14,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,10,77,98517,0,0,314,0,0,0,0,0,0,0,320,3.1,0,0,1600,77777,9,999999999,26,0,0,88,0.2,0,0 +2019,1,14,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,9,77,98507,0,0,309,0,0,0,0,0,0,0,300,2.6,0,0,1800,77777,9,999999999,24,0,0,88,0.2,0,0 +2019,1,14,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.4,10.5,88,99226,0,0,308,0,0,0,0,0,0,0,290,2.1,0,0,1000,77777,9,999999999,28,0,0,88,0.2,0,0 +2019,1,14,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,9,82,98498,0,0,304,0,0,0,0,0,0,0,290,2.6,0,0,1800,77777,9,999999999,24,0,0,88,0.2,0,0 +2019,1,14,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,9,87,98488,0,0,300,0,0,0,0,0,0,0,270,2.6,0,0,1800,77777,9,999999999,24,0,0,88,0.2,0,0 +2019,1,14,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.2,8,92,99165,0,0,292,0,0,0,0,0,0,0,250,2.1,0,0,1000,77777,9,999999999,22,0,0,88,0.2,0,0 +2019,1,14,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,8,93,98468,0,0,291,0,0,0,0,0,0,0,240,2.1,0,0,1400,77777,9,999999999,21,0,0,88,0.2,0,0 +2019,1,14,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,7,87,98468,50,235,290,15,0,15,1491,0,1501,487,230,2.6,0,0,1000,77777,9,999999999,19,0,0,88,0.2,0,0 +2019,1,14,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.6,6.7,94,99343,328,1414,284,171,440,68,19252,14420,7718,2516,250,2.6,0,0,500,77777,9,999999999,19,0,0,88,0.2,0,0 +2019,1,14,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,6,76,98478,568,1414,293,365,679,92,42714,37410,10825,3972,260,3.6,0,0,1000,77777,9,999999999,18,0,0,88,0.2,0,0 +2019,1,14,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,3,51,98507,751,1414,302,529,813,96,63880,49500,11642,4579,280,4.6,0,0,1400,77777,9,999999999,13,0,0,88,0.2,0,0 +2019,1,14,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,7.6,59,99364,867,1414,318,628,785,146,74775,52336,17453,6928,270,4.1,0,0,2000,77777,9,999999999,20,0,0,88,0.2,0,0 +2019,1,14,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,2,36,98546,907,1414,318,671,790,163,79769,56117,19495,7738,280,5.1,0,0,2800,77777,9,999999999,12,0,0,88,0.2,0,0 +2019,1,14,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,1,30,98564,868,1414,326,636,785,153,75637,55230,18309,7220,270,4.1,0,0,3000,77777,9,999999999,10,0,0,88,0.2,0,0 +2019,1,14,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.8,5.9,43,99132,754,1414,331,528,815,94,63916,48327,11348,4477,290,5.1,0,0,2000,77777,9,999999999,17,0,0,88,0.2,0,0 +2019,1,14,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,2,34,98555,571,1414,323,370,673,98,43217,39098,11497,4192,280,6.2,0,0,4000,77777,9,999999999,12,0,0,88,0.2,0,0 +2019,1,14,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,2,34,98555,332,1414,323,175,457,67,19820,15891,7663,2508,280,5.1,0,0,4000,77777,9,999999999,12,0,0,88,0.2,0,0 +2019,1,14,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.8,5.9,52,99074,54,1414,317,17,0,17,1625,0,1635,524,250,4.6,0,0,4000,77777,9,999999999,17,0,0,88,0.2,0,0 +2019,1,14,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,3,47,98517,0,256,307,0,0,0,0,0,0,0,260,3.6,0,0,3200,77777,9,999999999,13,0,0,88,0.2,0,0 +2019,1,14,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,3,51,98507,0,0,302,0,0,0,0,0,0,0,260,3.1,0,0,3000,77777,9,999999999,13,0,0,88,0.2,0,0 +2019,1,14,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,7.7,74,99175,0,0,304,0,0,0,0,0,0,0,270,2.1,0,0,2000,77777,9,999999999,21,0,0,88,0.2,0,0 +2019,1,14,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,4,62,98488,0,0,295,0,0,0,0,0,0,0,260,2.6,0,0,3000,77777,9,999999999,14,0,0,88,0.2,0,0 +2019,1,14,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,4,62,98488,0,0,295,0,0,0,0,0,0,0,270,3.6,0,0,3000,77777,9,999999999,14,0,0,88,0.2,0,0 +2019,1,14,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.8,7,77,99181,0,0,297,0,0,0,0,0,0,0,270,3.1,0,0,2000,77777,9,999999999,19,0,0,88,0.2,0,0 +2019,1,15,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,3,66,98468,0,0,286,0,0,0,0,0,0,0,260,3.1,0,0,2500,77777,9,999999999,13,0,0,88,0.2,0,0 +2019,1,15,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,4,71,98468,0,0,287,0,0,0,0,0,0,0,270,3.6,0,0,2200,77777,9,999999999,14,0,0,88,0.2,0,0 +2019,1,15,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9,6.4,84,99105,0,0,289,0,0,0,0,0,0,0,270,3.6,0,0,2000,77777,9,999999999,18,0,0,88,0.2,0,0 +2019,1,15,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,4,81,98448,0,0,279,0,0,0,0,0,0,0,270,3.1,0,0,2100,77777,9,999999999,14,0,0,88,0.2,0,0 +2019,1,15,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,4,87,98438,0,0,275,0,0,0,0,0,0,0,260,2.1,0,0,1400,77777,9,999999999,14,0,0,88,0.2,0,0 +2019,1,15,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.4,5,91,99020,0,0,277,0,0,0,0,0,0,0,230,2.1,0,0,1000,77777,9,999999999,16,0,0,88,0.2,0,0 +2019,1,15,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,4,87,98438,0,0,275,0,0,0,0,0,0,0,270,2.6,0,0,1400,77777,9,999999999,14,0,0,88,0.2,0,0 +2019,1,15,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6,4,87,98438,50,238,308,8,0,8,783,0,788,294,250,2.6,9,9,1400,77777,9,999999999,14,0,0,88,0.2,0,0 +2019,1,15,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6.8,5.5,91,99150,329,1414,296,160,358,76,17882,12999,8574,2734,250,3.1,5,5,1000,77777,9,999999999,17,0,0,88,0.2,0,0 +2019,1,15,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9,4,71,98468,569,1414,304,342,544,123,39179,33991,14114,4985,270,3.1,5,5,1400,77777,9,999999999,14,0,0,88,0.2,0,0 +2019,1,15,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11,4,62,98488,754,1414,301,530,754,127,62629,49383,15065,5811,270,4.1,1,1,2000,77777,9,999999999,14,0,0,88,0.2,0,0 +2019,1,15,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13,4,54,98507,870,1414,321,591,650,190,68983,48320,22285,8568,280,4.6,5,5,2200,77777,9,999999999,14,0,0,88,0.2,0,0 +2019,1,15,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16,3,42,98536,910,1414,329,664,780,161,79065,54882,19235,7657,300,5.1,3,3,2500,77777,9,999999999,13,0,0,88,0.2,0,0 +2019,1,15,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16,2,39,98536,872,1414,333,594,700,162,70365,49812,19236,7554,280,5.1,5,5,2800,77777,9,999999999,12,0,0,88,0.2,0,0 +2019,1,15,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.6,7.8,53,99033,758,1414,347,493,542,203,56183,41081,23181,8342,270,4.6,5,5,2000,77777,9,999999999,21,0,0,88,0.2,0,0 +2019,1,15,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,5,45,98546,575,1414,361,192,85,157,21577,5906,17768,5978,270,4.6,9,9,3500,3048,9,999999999,16,0,0,88,0.2,0,0 +2019,1,15,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,6,51,98536,336,1414,357,91,5,90,10101,227,9995,3084,270,4.6,9,9,3500,3048,9,999999999,17,0,0,88,0.2,0,0 +2019,1,15,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15.4,9.2,67,98963,58,1414,338,17,0,17,1615,0,1626,531,270,3.6,5,5,2000,3000,9,999999999,24,0,0,88,0.2,0,0 +2019,1,15,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,8,67,98517,0,275,330,0,0,0,0,0,0,0,260,2.6,5,5,2800,3048,9,999999999,21,0,0,88,0.2,0,0 +2019,1,15,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13,8,72,98507,0,0,313,0,0,0,0,0,0,0,260,2.1,1,1,2800,3048,9,999999999,21,0,0,88,0.2,0,0 +2019,1,15,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12,6,67,98498,0,0,319,0,0,0,0,0,0,0,240,1.5,5,5,2500,3048,9,999999999,17,0,0,88,0.2,0,0 +2019,1,15,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,11,6,71,98488,0,0,315,0,0,0,0,0,0,0,104,0,5,5,2500,3048,9,999999999,17,0,0,88,0.2,0,0 +2019,1,15,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,10,6,76,98478,0,0,310,0,0,0,0,0,0,0,289,0,5,5,2200,3048,9,999999999,18,0,0,88,0.2,0,0 +2019,1,15,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8.8,8,95,99122,0,0,307,0,0,0,0,0,0,0,245,0,5,5,2000,77777,9,999999999,22,0,0,88,0.2,0,0 +2019,1,16,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,9,6,81,98468,0,0,306,0,0,0,0,0,0,0,113,0,5,5,1500,77777,9,999999999,18,0,0,88,0.2,0,0 +2019,1,16,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,9,6,81,98468,0,0,306,0,0,0,0,0,0,0,43,0,5,5,1500,77777,9,999999999,18,0,0,88,0.2,0,0 +2019,1,16,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7.4,7,97,99098,0,0,300,0,0,0,0,0,0,0,210,0,5,5,1000,77777,9,999999999,20,0,0,88,0.2,0,0 +2019,1,16,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,7,6,93,98448,0,0,297,0,0,0,0,0,0,0,158,0,5,5,1000,77777,9,999999999,18,0,0,88,0.2,0,0 +2019,1,16,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,7,6,93,98448,0,0,297,0,0,0,0,0,0,0,46,0,5,5,900,77777,9,999999999,18,0,0,88,0.2,0,0 +2019,1,16,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7.2,7.2,100,98999,0,0,299,0,0,0,0,0,0,0,31,0,5,5,500,77777,9,999999999,20,0,0,88,0.2,0,0 +2019,1,16,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,7,6,93,98448,0,0,297,0,0,0,0,0,0,0,81,0,5,5,600,77777,0,999999999,18,0,0,88,0.2,0,0 +2019,1,16,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,7,6,93,98448,51,240,297,15,0,15,1424,0,1433,473,135,0,5,5,500,77777,0,999999999,18,0,0,88,0.2,0,0 +2019,1,16,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.6,99,99219,330,1414,302,160,275,96,17568,11665,10535,3169,250,2.1,5,5,1000,77777,0,999999999,21,0,0,88,0.2,0,0 +2019,1,16,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,8,82,98488,571,1414,336,189,39,173,21045,2789,19381,6330,110,1.5,9,9,900,3048,0,999999999,21,0,0,88,0.2,0,0 +2019,1,16,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,8,67,98517,756,1414,350,273,50,246,30562,4149,27702,9449,90,2.6,9,9,1200,3048,0,999999999,21,0,0,88,0.2,0,0 +2019,1,16,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16.8,7.7,55,99229,873,1414,363,327,73,282,36969,6213,32066,11342,90,3.1,9,9,1000,3000,0,999999999,21,0,0,88,0.2,0,0 +2019,1,16,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,7,49,98555,914,1414,369,346,78,296,39293,6771,33743,12047,90,2.1,9,9,1500,3048,0,999999999,19,0,0,88,0.2,0,0 +2019,1,16,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,7,46,98564,876,1414,374,329,73,283,37192,6288,32236,11402,100,2.6,9,9,1500,3048,0,999999999,19,0,0,88,0.2,0,0 +2019,1,16,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20.4,11.4,56,98991,762,1414,387,274,17,265,30480,1450,29607,9915,110,3.1,9,9,1000,3000,0,999999999,30,0,0,88,0.2,0,0 +2019,1,16,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,6,40,98574,579,1414,378,194,41,177,21557,2965,19801,6469,100,2.6,9,9,1600,3048,0,999999999,17,0,0,88,0.2,0,0 +2019,1,16,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,6,40,98574,340,1414,357,168,287,98,18431,12880,10858,3280,130,2.6,5,5,1800,3048,0,999999999,17,0,0,88,0.2,0,0 +2019,1,16,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18.4,10.2,59,98943,62,1414,354,18,0,18,1726,0,1738,565,110,1.5,5,5,2000,77777,0,999999999,26,0,0,88,0.2,0,0 +2019,1,16,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17,6,48,98546,0,294,342,0,0,0,0,0,0,0,110,1.5,5,5,2200,77777,0,999999999,17,0,0,88,0.2,0,0 +2019,1,16,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15,7,59,98527,0,0,334,0,0,0,0,0,0,0,120,2.6,5,5,2200,77777,0,999999999,19,0,0,88,0.2,0,0 +2019,1,16,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13.4,6.8,64,99051,0,0,326,0,0,0,0,0,0,0,140,2.1,5,5,1000,77777,0,999999999,19,0,0,88,0.2,0,0 +2019,1,16,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,14,8,67,98517,0,0,330,0,0,0,0,0,0,0,141,0,5,5,1200,77777,0,999999999,21,0,0,88,0.2,0,0 +2019,1,16,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,13,8,72,98507,0,0,326,0,0,0,0,0,0,0,131,0,5,5,1000,77777,0,999999999,21,0,0,88,0.2,0,0 +2019,1,16,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11.4,8.6,83,99041,0,0,319,0,0,0,0,0,0,0,351,0,5,5,1000,77777,0,999999999,23,0,0,88,0.2,0,0 +2019,1,17,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,10,8,87,98478,0,0,312,0,0,0,0,0,0,0,7,0,5,5,800,77777,0,999999999,21,0,0,88,0.2,0,0 +2019,1,17,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,10,8,87,98478,0,0,312,0,0,0,0,0,0,0,6,0,5,5,600,77777,0,999999999,21,0,0,88,0.2,0,0 +2019,1,17,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9.8,8.2,90,98967,0,0,307,0,0,0,0,0,0,0,352,0,3,3,500,77777,0,999999999,22,0,0,88,0.2,0,0 +2019,1,17,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,9,8,93,98468,0,0,291,0,0,0,0,0,0,0,148,0,0,0,400,77777,0,999999999,21,0,0,88,0.2,0,0 +2019,1,17,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,8,100,98458,0,0,287,0,0,0,0,0,0,0,350,0,0,0,350,77777,0,999999999,21,0,0,88,0.2,0,0 +2019,1,17,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,8.4,7.4,93,98904,0,0,288,0,0,0,0,0,0,0,100,0,0,0,200,77777,0,999999999,20,0,0,88,0.2,0,0 +2019,1,17,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,7,100,98448,0,0,282,0,0,0,0,0,0,0,37,0,0,0,350,77777,0,999999999,19,0,0,88,0.2,0,0 +2019,1,17,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,6,93,98448,52,244,281,16,0,16,1554,0,1564,504,339,0,0,0,250,77777,0,999999999,18,0,0,88,0.2,0,0 +2019,1,17,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,7.2,6.3,94,99057,332,1413,282,173,446,68,19575,14896,7757,2535,193,0,0,0,200,77777,0,999999999,18,0,0,88,0.2,0,0 +2019,1,17,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,10,88,98498,573,1413,305,367,678,92,42911,36017,10766,3970,225,0,0,0,500,77777,0,999999999,26,0,0,88,0.2,0,0 +2019,1,17,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,8,59,98536,758,1413,321,531,815,92,64227,47450,11224,4441,220,1.5,0,0,800,77777,0,999999999,21,0,0,88,0.2,0,0 +2019,1,17,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,9.9,69,99150,876,1413,321,634,786,146,75415,51344,17438,6950,180,1.5,0,0,1000,77777,0,999999999,26,0,0,88,0.2,0,0 +2019,1,17,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,6,43,98564,917,1413,332,675,790,162,80408,54706,19331,7715,270,2.1,0,0,1200,77777,0,999999999,17,0,0,88,0.2,0,0 +2019,1,17,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,6,40,98574,880,1413,336,641,786,151,76321,53535,18084,7180,280,3.1,0,0,1200,77777,0,999999999,17,0,0,88,0.2,0,0 +2019,1,17,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,8,43,98583,766,1413,343,537,819,93,65108,47796,11298,4479,290,2.6,0,0,1200,77777,0,999999999,21,0,0,88,0.2,0,0 +2019,1,17,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,6,38,98583,583,1413,341,379,689,94,44399,38593,11067,4085,320,2.6,0,0,1200,77777,0,999999999,17,0,0,88,0.2,0,0 +2019,1,17,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,7,43,98574,345,1413,338,183,463,70,20716,16157,7941,2617,320,4.1,0,0,1500,77777,0,999999999,19,0,0,88,0.2,0,0 +2019,1,17,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.2,12.1,68,98815,66,1413,335,20,17,20,2242,0,2158,611,290,3.1,0,0,1000,77777,0,999999999,32,0,0,88,0.2,0,0 +2019,1,17,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,8,55,98546,0,313,325,0,0,0,0,0,0,0,300,3.1,0,0,2000,77777,0,999999999,21,0,0,88,0.2,0,0 +2019,1,17,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,9,67,98527,0,0,317,0,0,0,0,0,0,0,300,2.6,0,0,1500,77777,0,999999999,23,0,0,88,0.2,0,0 +2019,1,17,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.8,11.9,88,98977,0,0,315,0,0,0,0,0,0,0,270,2.1,0,0,1000,77777,0,999999999,32,0,0,88,0.2,0,0 +2019,1,17,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,9,72,98517,0,0,313,0,0,0,0,0,0,0,292,0,0,0,1500,77777,0,999999999,23,0,0,88,0.2,0,0 +2019,1,17,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,9,77,98507,0,0,309,0,0,0,0,0,0,0,126,0,0,0,1300,77777,0,999999999,24,0,0,88,0.2,0,0 +2019,1,17,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,11,10.2,95,99047,0,0,301,0,0,0,0,0,0,0,272,0,0,0,1000,77777,0,999999999,27,0,0,88,0.2,0,0 +2019,1,18,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,8,82,98488,0,0,299,0,0,0,0,0,0,0,60,0,0,0,900,77777,0,999999999,21,0,0,88,0.2,0,0 +2019,1,18,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,8,87,98478,0,0,295,0,0,0,0,0,0,0,57,0,0,0,700,77777,0,999999999,21,0,0,88,0.2,0,0 +2019,1,18,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,8.8,8.4,97,99025,0,0,290,0,0,0,0,0,0,0,342,0,0,0,200,77777,0,999999999,22,0,0,88,0.2,0,0 +2019,1,18,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,8,100,98458,0,0,287,0,0,0,0,0,0,0,32,0,0,0,50,77777,0,999999999,21,0,0,88,0.2,0,0 +2019,1,18,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,8,8,100,98458,0,0,331,0,0,0,0,0,0,0,260,2.1,10,10,150,77777,0,999999999,21,0,0,88,0.2,0,0 +2019,1,18,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,7.6,7.6,100,98993,0,0,328,0,0,0,0,0,0,0,243,0,10,10,49,30,0,999999999,21,0,0,88,0.2,0,0 +2019,1,18,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,6,6,100,98438,0,0,319,0,0,0,0,0,0,0,210,2.1,10,10,0,30,0,999999999,18,0,0,88,0.2,0,0 +2019,1,18,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,6,6,100,98438,53,248,319,5,0,5,498,0,501,198,230,1.5,10,10,0,30,0,999999999,18,0,0,88,0.2,0,0 +2019,1,18,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,6.8,6.8,100,99170,333,1413,324,55,0,55,5409,0,5450,2139,230,2.1,10,10,49,30,0,999999999,19,0,0,88,0.2,0,0 +2019,1,18,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,8,100,98458,575,1413,287,370,535,152,41601,35776,17186,5841,183,0,0,0,50,77777,0,999999999,21,0,0,88,0.2,0,0 +2019,1,18,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,9,100,98468,761,1413,292,532,824,87,64643,46871,10636,4224,250,3.1,0,0,500,77777,0,999999999,24,0,0,88,0.2,0,0 +2019,1,18,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.6,10.7,88,99189,879,1413,309,635,786,146,75636,50948,17421,6954,270,2.1,0,0,500,77777,0,999999999,28,0,0,88,0.2,0,0 +2019,1,18,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,9,59,98546,921,1413,326,675,791,159,80410,53253,19038,7628,290,3.1,0,0,1200,77777,0,999999999,23,0,0,88,0.2,0,0 +2019,1,18,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,7,49,98555,883,1413,329,644,787,151,76627,53166,18081,7191,280,3.6,0,0,1400,77777,0,999999999,19,0,0,88,0.2,0,0 +2019,1,18,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.6,11.7,60,98925,770,1413,341,538,820,90,65204,45734,10974,4370,270,4.6,0,0,1000,77777,0,999999999,31,0,0,88,0.2,0,0 +2019,1,18,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,7,43,98574,588,1413,338,382,720,82,45252,38322,9768,3656,270,3.6,0,0,1700,77777,0,999999999,19,0,0,88,0.2,0,0 +2019,1,18,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,6,40,98574,349,1413,336,187,471,70,21158,16888,7973,2635,290,2.6,0,0,1700,77777,0,999999999,17,0,0,88,0.2,0,0 +2019,1,18,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.6,12.2,71,98887,70,1413,332,22,38,20,2388,0,2188,625,290,2.6,0,0,2000,77777,0,999999999,32,0,0,88,0.2,0,0 +2019,1,18,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,7,52,98546,0,332,324,0,0,0,0,0,0,0,290,1.5,0,0,2100,77777,0,999999999,19,0,0,88,0.2,0,0 +2019,1,18,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,8,59,98536,0,0,321,0,0,0,0,0,0,0,268,0,0,0,1800,77777,0,999999999,21,0,0,88,0.2,0,0 +2019,1,18,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,13,11.1,88,98998,0,0,311,0,0,0,0,0,0,0,89,0,0,0,1000,77777,0,999999999,29,0,0,88,0.2,0,0 +2019,1,18,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,9,72,98517,0,0,313,0,0,0,0,0,0,0,114,0,0,0,1700,77777,0,999999999,23,0,0,88,0.2,0,0 +2019,1,18,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,8,72,98507,0,0,308,0,0,0,0,0,0,0,15,0,0,0,1600,77777,0,999999999,21,0,0,88,0.2,0,0 +2019,1,18,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,10.6,10.2,97,99014,0,0,300,0,0,0,0,0,0,0,200,0,0,0,1000,77777,0,999999999,27,0,0,88,0.2,0,0 +2019,1,19,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,9,87,98488,0,0,300,0,0,0,0,0,0,0,60,0,0,0,1000,77777,0,999999999,24,0,0,88,0.2,0,0 +2019,1,19,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,9,87,98488,0,0,300,0,0,0,0,0,0,0,335,0,0,0,800,77777,0,999999999,24,0,0,88,0.2,0,0 +2019,1,19,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,9.6,9.2,97,98965,0,0,294,0,0,0,0,0,0,0,178,0,0,0,500,77777,0,999999999,24,0,0,88,0.2,0,0 +2019,1,19,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,9,93,98478,0,0,296,0,0,0,0,0,0,0,196,0,0,0,500,77777,0,999999999,24,0,0,88,0.2,0,0 +2019,1,19,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,9,93,98478,0,0,296,0,0,0,0,0,0,0,27,0,0,0,500,77777,0,999999999,24,0,0,88,0.2,0,0 +2019,1,19,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,8.2,8.2,100,98883,0,0,288,0,0,0,0,0,0,0,238,0,0,0,200,77777,0,999999999,22,0,0,88,0.2,0,0 +2019,1,19,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,9,100,98468,0,0,292,0,0,0,0,0,0,0,71,0,0,0,200,77777,0,999999999,24,0,0,88,0.2,0,0 +2019,1,19,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,9,100,98468,54,252,292,17,0,17,1597,0,1608,518,270,1.5,0,0,300,77777,0,999999999,24,0,0,88,0.2,0,0 +2019,1,19,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,9,8.2,95,99076,335,1413,291,175,443,69,19702,14687,7865,2573,5,0,0,0,200,77777,0,999999999,22,0,0,88,0.2,0,0 +2019,1,19,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,10,82,98507,577,1413,310,370,679,92,43286,36261,10855,4008,240,2.1,0,0,1000,77777,0,999999999,26,0,0,88,0.2,0,0 +2019,1,19,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,10,68,98536,763,1413,323,533,815,92,64554,46501,11140,4420,260,2.1,0,0,1000,77777,0,999999999,26,0,0,88,0.2,0,0 +2019,1,19,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.4,12,75,99235,882,1413,327,637,864,96,78174,49424,11877,4861,270,2.1,0,0,1000,77777,0,999999999,32,0,0,88,0.2,0,0 +2019,1,19,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,3,29,98592,924,1413,342,685,811,153,82072,56226,18447,7408,240,2.1,0,0,1200,77777,0,999999999,13,0,0,88,0.2,0,0 +2019,1,19,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,5,31,98601,887,1413,370,604,657,191,70753,48544,22449,8689,250,2.6,5,5,1600,77777,0,999999999,16,0,0,88,0.2,0,0 +2019,1,19,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23.6,8.2,37,98903,774,1413,377,507,675,136,59694,43929,16133,6239,250,2.6,5,5,2000,77777,0,999999999,21,0,0,88,0.2,0,0 +2019,1,19,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,6,31,98610,592,1413,376,359,576,118,41445,35161,13628,4918,260,2.6,5,5,3200,3048,0,999999999,17,0,0,88,0.2,0,0 +2019,1,19,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,6,33,98601,353,1413,371,176,382,81,19806,15233,9088,2936,260,2.6,5,5,3200,3048,0,999999999,17,0,0,88,0.2,0,0 +2019,1,19,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.2,12,63,98873,75,1413,360,21,28,20,2353,0,2197,635,230,1.5,5,5,2000,3048,0,999999999,32,0,0,88,0.2,0,0 +2019,1,19,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,8,49,98564,0,351,354,0,0,0,0,0,0,0,240,1.5,5,5,2800,3048,0,999999999,21,0,0,88,0.2,0,0 +2019,1,19,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,18,9,56,98555,0,0,345,0,0,0,0,0,0,0,75,0,3,3,2800,3048,0,999999999,23,0,0,88,0.2,0,0 +2019,1,19,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14.6,10.8,78,98523,0,0,331,0,0,0,0,0,0,0,23,0,3,3,4000,77777,0,999999999,28,0,0,88,0.2,0,0 +2019,1,19,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15,9,67,98527,0,0,331,0,0,0,0,0,0,0,60,1.5,3,3,2200,77777,0,999999999,23,0,0,88,0.2,0,0 +2019,1,19,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,13,9,77,98507,0,0,322,0,0,0,0,0,0,0,108,0,3,3,1800,77777,0,999999999,24,0,0,88,0.2,0,0 +2019,1,19,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13.4,10.7,84,99012,0,0,326,0,0,0,0,0,0,0,94,0,3,3,1000,77777,0,999999999,28,0,0,88,0.2,0,0 +2019,1,20,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,9,77,98507,0,0,327,0,0,0,0,0,0,0,160,1.5,5,5,1500,3048,0,999999999,24,0,0,88,0.2,0,0 +2019,1,20,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,8,76,98498,0,0,321,0,0,0,0,0,0,0,206,0,5,5,1500,3048,0,999999999,21,0,0,88,0.2,0,0 +2019,1,20,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,13,10.7,86,98960,0,0,329,0,0,0,0,0,0,0,76,0,5,5,1000,3048,0,999999999,28,0,0,88,0.2,0,0 +2019,1,20,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,8,76,98498,0,0,321,0,0,0,0,0,0,0,110,0,5,5,1500,3048,0,999999999,21,0,0,88,0.2,0,0 +2019,1,20,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,8,82,98488,0,0,317,0,0,0,0,0,0,0,252,0,5,5,1200,3048,0,999999999,21,0,0,88,0.2,0,0 +2019,1,20,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11.2,9.2,87,98903,0,0,319,0,0,0,0,0,0,0,193,0,5,5,1000,77777,9,999999999,24,0,0,88,0.2,0,0 +2019,1,20,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,11,9,87,98488,0,0,318,0,0,0,0,0,0,0,185,0,5,5,900,77777,9,999999999,24,0,0,88,0.2,0,0 +2019,1,20,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,11,9,87,98488,55,258,318,16,0,16,1520,0,1530,504,143,0,5,5,800,77777,9,999999999,24,0,0,88,0.2,0,0 +2019,1,20,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,11.1,88,99086,336,1413,329,163,372,74,18262,12381,8336,2702,117,0,5,5,500,77777,9,999999999,29,0,0,88,0.2,0,0 +2019,1,20,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,16,9,63,98536,579,1413,341,347,535,127,39593,32772,14604,5169,18,0,5,5,1000,77777,9,999999999,23,0,0,88,0.2,0,0 +2019,1,20,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,20,10,53,98574,766,1413,361,498,677,131,58770,42772,15496,6004,225,0,5,5,1200,77777,9,999999999,26,0,0,88,0.2,0,0 +2019,1,20,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,22.2,13.2,57,99105,885,1413,376,594,705,151,70484,45033,18044,7203,56,0,5,5,1000,77777,9,999999999,35,0,0,88,0.2,0,0 +2019,1,20,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26,7,30,98628,928,1413,388,637,732,155,76149,49625,18591,7478,240,2.6,5,5,1800,77777,9,999999999,19,0,0,88,0.2,0,0 +2019,1,20,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27,7,28,98637,892,1413,393,606,724,148,72331,48613,17761,7095,230,2.6,5,5,2500,77777,9,999999999,19,0,0,88,0.2,0,0 +2019,1,20,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27.6,12.1,38,98822,778,1413,403,507,678,133,59769,42160,15711,6115,230,3.1,5,5,2000,77777,9,999999999,31,0,0,88,0.2,0,0 +2019,1,20,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28,7,26,98646,596,1413,398,362,576,119,41783,35084,13756,4972,270,2.6,5,5,4000,77777,9,999999999,19,0,0,88,0.2,0,0 +2019,1,20,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27,7,28,98637,358,1413,393,179,385,82,20126,15433,9192,2977,290,2.6,5,5,4000,77777,9,999999999,19,0,0,88,0.2,0,0 +2019,1,20,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,23.8,14.8,57,98652,79,1413,386,22,29,21,2470,0,2298,665,350,0,5,5,2000,77777,9,999999999,41,0,0,88,0.2,0,0 +2019,1,20,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,23,9,41,98601,0,371,375,0,0,0,0,0,0,0,50,0,5,5,3500,77777,9,999999999,23,0,0,88,0.2,0,0 +2019,1,20,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22,10,46,98592,0,0,371,0,0,0,0,0,0,0,160,2.1,5,5,3200,77777,9,999999999,26,0,0,88,0.2,0,0 +2019,1,20,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19.6,11.2,58,98740,0,0,355,0,0,0,0,0,0,0,180,1.5,3,3,2000,77777,9,999999999,29,0,0,88,0.2,0,0 +2019,1,20,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20,11,56,98574,0,0,357,0,0,0,0,0,0,0,120,2.1,3,3,3000,77777,9,999999999,28,0,0,88,0.2,0,0 +2019,1,20,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18,11,64,98555,0,0,347,0,0,0,0,0,0,0,130,1.5,3,3,2200,77777,9,999999999,28,0,0,88,0.2,0,0 +2019,1,20,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17.6,13.4,76,98741,0,0,348,0,0,0,0,0,0,0,90,1.5,3,3,2000,77777,9,999999999,36,0,0,88,0.2,0,0 +2019,1,21,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17,12,72,98546,0,0,349,0,0,0,0,0,0,0,100,1.5,5,5,2100,77777,9,999999999,32,0,0,88,0.2,0,0 +2019,1,21,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16,13,82,98536,0,0,345,0,0,0,0,0,0,0,80,1.5,5,5,1800,77777,9,999999999,35,0,0,88,0.2,0,0 +2019,1,21,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16.6,13,79,98673,0,0,348,0,0,0,0,0,0,0,90,2.1,5,5,1000,77777,9,999999999,35,0,0,88,0.2,0,0 +2019,1,21,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15,13,88,98527,0,0,341,0,0,0,0,0,0,0,90,2.6,5,5,1500,77777,9,999999999,35,0,0,88,0.2,0,0 +2019,1,21,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15,13,88,98527,0,0,341,0,0,0,0,0,0,0,90,2.1,5,5,1500,77777,9,999999999,35,0,0,88,0.2,0,0 +2019,1,21,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.2,13.5,96,98611,0,0,337,0,0,0,0,0,0,0,90,2.1,5,5,1000,77777,9,999999999,37,0,0,88,0.2,3,0 +2019,1,21,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,13,94,98517,0,0,336,0,0,0,0,0,0,0,100,3.1,5,5,1500,3048,9,999999999,35,0,0,88,0.2,0,0 +2019,1,21,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,13,94,98517,56,263,356,9,0,9,856,0,862,323,90,3.6,9,9,1500,3048,9,999999999,35,0,0,88,0.2,0,0 +2019,1,21,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,13.6,91,98755,338,1412,341,163,369,75,18287,11798,8412,2730,90,4.1,5,5,1000,3000,9,999999999,37,0,0,88,0.2,0,0 +2019,1,21,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,11,64,98555,581,1412,353,347,566,114,40001,32510,13173,4758,110,4.6,5,5,1600,3048,9,999999999,28,0,0,88,0.2,0,0 +2019,1,21,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,11,60,98564,769,1412,358,500,675,132,58921,42359,15566,6039,100,5.1,5,5,1600,3048,9,999999999,28,0,0,88,0.2,0,0 +2019,1,21,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22.4,13.8,58,98737,888,1412,378,596,550,250,68025,42189,28647,10597,100,4.1,5,5,1000,3000,9,999999999,37,0,0,88,0.2,0,0 +2019,1,21,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,9,41,98601,932,1412,409,216,7,211,25179,493,24790,9624,110,4.1,10,10,1600,3048,0,919999999,23,0,0,88,0.2,0,0 +2019,1,21,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,11,53,98583,896,1412,400,205,3,203,23818,235,23696,9143,120,4.1,10,10,1600,2438,0,919999999,28,0,0,88,0.2,0,0 +2019,1,21,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,16,88,98502,783,1412,390,171,0,171,19771,10,19854,7516,140,7.2,10,10,1000,1200,0,919999999,47,0,0,88,0.2,0,0 +2019,1,21,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,13,73,98555,601,1412,387,122,0,122,12295,0,12399,5105,90,4.6,10,10,1500,2438,0,19999999,35,0,0,88,0.2,0,0 +2019,1,21,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,15,88,98546,362,1412,373,100,7,98,10988,300,10822,3385,100,7.2,9,9,1500,2438,0,19999999,43,0,0,88,0.2,0,0 +2019,1,21,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16.6,15.6,94,98663,83,1412,372,13,0,13,1260,0,1269,472,110,6.2,9,9,1000,1200,0,19999999,45,0,0,88,0.2,0,0 +2019,1,21,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,13,77,98546,0,390,371,0,0,0,0,0,0,0,90,4.1,9,9,2100,3048,0,19999999,35,0,0,88,0.2,0,0 +2019,1,21,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,13,82,98536,0,0,366,0,0,0,0,0,0,0,80,4.1,9,9,2100,3048,0,19999999,35,0,0,88,0.2,0,0 +2019,1,21,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,14.3,90,98463,0,0,367,0,0,0,0,0,0,0,90,4.1,9,9,2000,3000,0,19999999,40,0,0,88,0.2,0,0 +2019,1,21,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9*9,16,12,77,98536,0,0,365,0,0,0,0,0,0,0,270,2.6,9,9,2000,3000,0,19999999,32,0,0,88,0.2,0,0 +2019,1,21,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,13,88,98527,0,0,361,0,0,0,0,0,0,0,70,4.1,9,9,2100,3048,0,19999999,35,0,0,88,0.2,0,0 +2019,1,21,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14.6,14.6,100,98508,0,0,361,0,0,0,0,0,0,0,70,5.1,9,9,2000,1200,0,19999999,41,0,0,88,0.2,0,0 +2019,1,22,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,14,94,98527,0,0,362,0,0,0,0,0,0,0,90,6.2,9,9,2100,3048,0,19999999,39,0,0,88,0.2,0,0 +2019,1,22,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,14,94,98527,0,0,362,0,0,0,0,0,0,0,90,5.1,9,9,2100,3048,0,19999999,39,0,0,88,0.2,0,0 +2019,1,22,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,14,100,98298,0,0,357,0,0,0,0,0,0,0,110,6.2,9,9,1000,3000,0,19999999,39,0,0,88,0.2,0,0 +2019,1,22,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,14,100,98517,0,0,357,0,0,0,0,0,0,0,120,5.1,9,9,1400,3048,0,19999999,39,0,0,88,0.2,0,0 +2019,1,22,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,14,100,98517,0,0,357,0,0,0,0,0,0,0,120,4.1,9,9,2100,3048,0,19999999,39,0,0,88,0.2,0,0 +2019,1,22,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,14,100,98444,0,0,357,0,0,0,0,0,0,0,90,5.1,9,9,2000,3000,9,999999999,39,0,0,88,0.2,5,0 +2019,1,22,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,14,100,98517,0,0,357,0,0,0,0,0,0,0,120,2.6,9,9,2200,3048,9,999999999,39,0,0,88,0.2,5,0 +2019,1,22,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,14,100,98517,58,270,367,6,0,6,532,0,536,213,120,3.1,10,10,1800,3048,0,19999999,39,0,0,88,0.2,5,0 +2019,1,22,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13.2,13.2,100,98689,340,1412,362,56,0,56,5471,0,5513,2180,200,4.1,10,10,1000,1050,0,19999999,36,0,0,88,0.2,5,0 +2019,1,22,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,13,100,98507,584,1412,351,193,36,178,21403,2469,19864,6532,140,3.1,9,9,1500,2438,0,19999999,35,0,0,88,0.2,3,0 +2019,1,22,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,14,94,98527,772,1412,362,277,17,268,30800,1391,29939,10089,140,4.1,9,9,1600,3048,0,19999999,39,0,0,88,0.2,0,0 +2019,1,22,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15.8,15.5,98,98802,892,1412,368,331,35,309,37104,2936,34818,12173,140,5.7,9,9,1000,1050,0,19999999,45,0,0,88,0.2,0,0 +2019,1,22,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,15,83,98555,936,1412,378,352,36,328,39500,3043,37059,13039,140,4.1,9,9,1600,3048,0,19999999,43,0,0,88,0.2,0,0 +2019,1,22,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,15,83,98555,900,1412,378,335,36,312,37581,2981,35255,12334,150,4.1,9,9,1600,2438,0,19999999,43,0,0,88,0.2,0,0 +2019,1,22,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16.8,16.1,96,98626,787,1412,374,283,17,273,31438,1360,30570,10362,110,3.1,9,9,1000,2400,0,19999999,48,0,0,88,0.2,0,0 +2019,1,22,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,15,83,98555,605,1412,378,202,28,190,22339,1940,21131,6955,90,3.6,9,9,1600,3048,0,19999999,43,0,0,88,0.2,0,0 +2019,1,22,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,16,94,98546,367,1412,375,101,7,99,11133,299,10966,3437,50,2.1,9,9,1600,3048,0,19999999,47,0,0,88,0.2,0,0 +2019,1,22,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16.2,15.5,96,98708,87,1412,349,25,30,23,2716,0,2516,729,70,1.5,5,5,1000,3000,0,19999999,45,0,0,88,0.2,0,0 +2019,1,22,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,15,94,98536,0,410,348,0,0,0,0,0,0,0,30,2.1,5,5,2100,3048,0,19999999,43,0,0,88,0.2,0,0 +2019,1,22,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,15,94,98536,0,0,348,0,0,0,0,0,0,0,50,2.6,5,5,2100,3048,0,19999999,43,0,0,88,0.2,0,0 +2019,1,22,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.2,14.1,93,98864,0,0,343,0,0,0,0,0,0,0,50,2.1,5,5,2000,3048,0,19999999,39,0,0,88,0.2,0,0 +2019,1,22,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,14,100,98517,0,0,337,0,0,0,0,0,0,0,20,2.1,5,5,1500,3048,0,19999999,39,0,0,88,0.2,0,0 +2019,1,22,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,13,100,98507,0,0,331,0,0,0,0,0,0,0,50,2.6,5,5,1800,3048,0,19999999,35,0,0,88,0.2,0,0 +2019,1,22,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.4,11.7,95,98876,0,0,327,0,0,0,0,0,0,0,50,1.5,5,5,1000,3048,0,19999999,31,0,0,88,0.2,0,0 +2019,1,23,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11,11,100,98488,0,0,320,0,0,0,0,0,0,0,60,1.5,5,5,1800,3048,0,19999999,29,0,0,88,0.2,0,0 +2019,1,23,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,10,10,100,98478,0,0,314,0,0,0,0,0,0,0,234,0,5,5,1500,3048,0,19999999,26,0,0,88,0.2,0,0 +2019,1,23,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,9.6,97,98852,0,0,314,0,0,0,0,0,0,0,21,0,5,5,1000,77777,0,19999999,25,0,0,88,0.2,0,0 +2019,1,23,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,10,10,100,98478,0,0,314,0,0,0,0,0,0,0,208,0,5,5,1200,77777,0,19999999,26,0,0,88,0.2,0,0 +2019,1,23,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,11,100,98488,0,0,320,0,0,0,0,0,0,0,80,1.5,5,5,1200,3048,0,19999999,29,0,0,88,0.2,0,0 +2019,1,23,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,9.8,9.8,100,98831,0,0,313,0,0,0,0,0,0,0,351,0,5,5,1000,3048,9,999999999,26,0,0,88,0.2,6,0 +2019,1,23,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,10,100,98478,0,0,314,0,0,0,0,0,0,0,79,0,5,5,700,3048,9,999999999,26,0,0,88,0.2,0,0 +2019,1,23,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,10,100,98478,59,277,314,17,0,17,1631,0,1642,538,230,2.6,5,5,600,3048,0,999999999,26,0,0,88,0.2,0,0 +2019,1,23,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9.2,9.2,100,99048,342,1412,305,177,431,73,19976,14868,8202,2682,230,1.5,3,3,50,77777,0,999999999,24,0,0,88,0.2,0,0 +2019,1,23,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10,9,93,98478,586,1412,309,374,659,99,43581,36744,11634,4283,250,1.5,3,3,150,77777,0,999999999,24,0,0,88,0.2,0,0 +2019,1,23,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10,10,100,98478,775,1412,310,536,802,95,64893,46243,11502,4575,240,1.5,3,3,200,77777,0,999999999,26,0,0,88,0.2,0,0 +2019,1,23,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12.4,12,97,99226,896,1412,322,640,842,105,78269,49195,12921,5290,250,2.6,3,3,500,77777,0,999999999,32,0,0,88,0.2,0,0 +2019,1,23,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14,12,88,98517,940,1412,316,688,792,160,82038,51855,19179,7736,250,2.6,0,0,800,77777,0,999999999,32,0,0,88,0.2,0,0 +2019,1,23,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,13,82,98536,904,1412,326,655,867,99,80519,49342,12246,5037,290,3.1,0,0,900,77777,0,999999999,35,0,0,88,0.2,0,0 +2019,1,23,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.4,13.5,78,99011,792,1412,333,555,826,90,67424,45246,11035,4427,290,2.6,0,0,1000,77777,0,999999999,37,0,0,88,0.2,0,0 +2019,1,23,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,14,77,98555,610,1412,336,396,697,94,46412,36197,11056,4151,300,3.1,0,0,1200,77777,0,999999999,38,0,0,88,0.2,0,0 +2019,1,23,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,14,77,98555,371,1412,336,200,500,68,22773,16283,7801,2648,310,2.6,0,0,1200,77777,0,999999999,38,0,0,88,0.2,0,0 +2019,1,23,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16.6,13.8,84,99014,92,1412,344,28,59,24,3034,0,2622,760,270,2.6,3,3,1000,77777,0,999999999,38,0,0,88,0.2,0,0 +2019,1,23,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15,13,88,98527,0,429,335,0,0,0,0,0,0,0,250,1.5,3,3,1600,77777,0,999999999,35,0,0,88,0.2,0,0 +2019,1,23,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,14,12,88,98517,0,0,330,0,0,0,0,0,0,0,191,0,3,3,1600,77777,0,999999999,32,0,0,88,0.2,0,0 +2019,1,23,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14.2,13.8,97,99107,0,0,333,0,0,0,0,0,0,0,270,1.5,3,3,1000,77777,0,999999999,38,0,0,88,0.2,0,0 +2019,1,23,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,13,13,100,98507,0,0,313,0,0,0,0,0,0,0,121,0,0,0,500,77777,0,999999999,35,0,0,88,0.2,0,0 +2019,1,23,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,13,13,100,98507,0,0,313,0,0,0,0,0,0,0,131,0,0,0,300,77777,0,999999999,35,0,0,88,0.2,0,0 +2019,1,23,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,12.2,11.8,97,99204,0,0,308,0,0,0,0,0,0,0,70,0,0,0,200,77777,0,999999999,31,0,0,88,0.2,0,0 +2019,1,24,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,12,100,98498,0,0,326,0,0,0,0,0,0,0,162,0,5,5,300,77777,0,999999999,32,0,0,88,0.2,0,0 +2019,1,24,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,13,13,100,98507,0,0,331,0,0,0,0,0,0,0,348,0,5,5,300,77777,0,999999999,35,0,0,88,0.2,0,0 +2019,1,24,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11.6,11.2,97,99237,0,0,323,0,0,0,0,0,0,0,49,0,5,5,200,77777,0,999999999,30,0,0,88,0.2,0,0 +2019,1,24,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,12,100,98498,0,0,326,0,0,0,0,0,0,0,213,0,5,5,300,3048,0,999999999,32,0,0,88,0.2,0,0 +2019,1,24,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,12,100,98498,0,0,326,0,0,0,0,0,0,0,12,0,5,5,300,3048,0,999999999,32,0,0,88,0.2,0,0 +2019,1,24,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11.4,11,97,99245,0,0,322,0,0,0,0,0,0,0,340,0,5,5,500,3000,0,999999999,29,0,0,88,0.2,0,0 +2019,1,24,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,12,100,98498,0,0,326,0,0,0,0,0,0,0,40,2.1,5,5,500,3048,0,999999999,32,0,0,88,0.2,0,0 +2019,1,24,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,11,100,98488,61,285,320,17,0,17,1667,0,1679,550,40,1.5,5,5,500,3048,0,999999999,29,0,0,88,0.2,0,0 +2019,1,24,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12.4,11.3,93,99391,344,1411,322,178,451,68,20155,14318,7694,2555,50,1.5,3,3,500,77777,0,999999999,30,0,0,88,0.2,0,0 +2019,1,24,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14,13,94,98517,589,1411,331,373,654,100,43418,34855,11651,4303,110,2.1,3,3,700,77777,0,999999999,35,0,0,88,0.2,0,0 +2019,1,24,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17,14,82,98546,778,1411,351,504,670,134,59334,40884,15846,6170,70,2.6,5,5,1100,77777,0,999999999,39,0,0,88,0.2,0,0 +2019,1,24,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18.6,14.1,75,99490,899,1411,359,604,703,156,71661,44740,18550,7424,110,2.1,5,5,1000,77777,0,999999999,39,0,0,88,0.2,0,0 +2019,1,24,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,13,68,98564,944,1411,360,643,713,165,76446,46609,19694,7937,100,2.1,5,5,1600,3048,0,999999999,35,0,0,88,0.2,0,0 +2019,1,24,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,12,60,98574,909,1411,364,614,565,250,70404,43880,28801,10746,90,2.6,5,5,1800,3048,0,999999999,31,0,0,88,0.2,0,0 +2019,1,24,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20.4,13.8,66,99146,796,1411,401,176,17,166,20395,1095,19396,7411,50,3.1,10,10,1000,2400,0,999999999,38,0,0,88,0.2,0,0 +2019,1,24,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,12,68,98555,615,1411,385,126,0,126,12692,0,12799,5281,300,3.6,10,10,1000,2438,0,919999999,31,0,0,88,0.2,0,0 +2019,1,24,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,10,68,98536,376,1411,373,64,0,64,6366,0,6415,2540,60,5.7,10,10,2200,2438,0,19999999,26,0,0,88,0.2,0,0 +2019,1,24,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15.8,14.4,91,99055,96,1411,366,15,0,15,1448,0,1458,542,320,2.1,9,9,2000,1200,0,19999999,40,0,0,88,0.2,0,0 +2019,1,24,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,12,77,98536,0,449,365,0,0,0,0,0,0,0,290,2.6,9,9,2500,2438,0,19999999,32,0,0,88,0.2,0,0 +2019,1,24,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,13,82,98536,0,0,366,0,0,0,0,0,0,0,300,5.1,9,9,2500,2438,0,19999999,35,0,0,88,0.2,0,0 +2019,1,24,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14.8,14.5,98,99103,0,0,362,0,0,0,0,0,0,0,320,5.1,9,9,2000,2400,0,19999999,41,0,0,88,0.2,0,0 +2019,1,24,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,12,88,98517,0,0,335,0,0,0,0,0,0,0,300,3.1,5,5,2500,3048,0,19999999,32,0,0,88,0.2,0,0 +2019,1,24,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,12,88,98517,0,0,355,0,0,0,0,0,0,0,250,3.6,9,9,2500,3048,0,19999999,32,0,0,88,0.2,0,0 +2019,1,24,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12.8,11.3,91,99220,0,0,348,0,0,0,0,0,0,0,180,2.6,9,9,2000,3000,0,19999999,30,0,0,88,0.2,0,0 +2019,1,25,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,11,94,98498,0,0,353,0,0,0,0,0,0,0,220,2.6,10,10,2200,3048,0,19999999,29,0,0,88,0.2,0,0 +2019,1,25,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,12,100,98498,0,0,355,0,0,0,0,0,0,0,50,2.1,10,10,2200,2743,0,19999999,32,0,0,88,0.2,0,0 +2019,1,25,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11.8,11.4,97,99123,0,0,343,0,0,0,0,0,0,0,320,3.1,9,9,2000,3000,0,19999999,30,0,0,88,0.2,0,0 +2019,1,25,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,12,100,98498,0,0,345,0,0,0,0,0,0,0,340,3.1,9,9,2200,3048,0,19999999,32,0,0,88,0.2,0,0 +2019,1,25,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,11,94,98498,0,0,344,0,0,0,0,0,0,0,30,1,9,9,2200,3048,0,19999999,29,0,0,88,0.2,0,0 +2019,1,25,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.8,10.8,100,99064,0,0,338,0,0,0,0,0,0,0,290,1.5,9,9,2000,3000,9,999999999,28,0,0,88,0.2,3,0 +2019,1,25,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,11,94,98498,0,0,344,0,0,0,0,0,0,0,129,1,9,9,2200,3048,9,999999999,29,0,0,88,0.2,0,0 +2019,1,25,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,11,94,98498,63,293,344,10,0,10,953,0,960,358,300,2.1,9,9,1800,3048,9,999999999,29,0,0,88,0.2,0,0 +2019,1,25,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,11,100,99290,347,1411,339,94,6,93,10390,253,10260,3192,270,1.5,9,9,1000,2400,9,999999999,29,0,0,88,0.2,0,0 +2019,1,25,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,12,94,98507,592,1411,350,197,28,185,21808,1973,20625,6749,270,2.1,9,9,800,3048,9,999999999,32,0,0,88,0.2,0,0 +2019,1,25,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,11,77,98527,782,1411,358,283,47,257,31671,3852,28916,9938,10,2.1,9,9,1000,3048,9,999999999,29,0,0,88,0.2,0,0 +2019,1,25,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.7,12.3,80,99404,903,1411,343,609,561,250,69755,43487,28726,10697,20,2.1,5,5,1000,3048,9,999999999,33,0,0,88,0.2,0,0 +2019,1,25,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17,10,63,98546,948,1411,347,649,588,254,74871,46211,29427,11126,320,3.1,5,5,1300,3048,9,999999999,26,0,0,88,0.2,0,0 +2019,1,25,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,10,63,98546,913,1411,367,344,85,289,39043,7146,32977,11877,320,3.6,9,9,1300,3048,9,999999999,26,0,0,88,0.2,0,0 +2019,1,25,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.6,13,74,99159,801,1411,353,524,528,223,59468,39741,25508,9236,320,3.6,5,5,1000,3048,9,999999999,35,0,0,88,0.2,0,0 +2019,1,25,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,9,56,98555,619,1411,350,379,580,124,43678,35536,14331,5222,310,3.6,5,5,2000,3048,9,999999999,23,0,0,88,0.2,0,0 +2019,1,25,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,10,63,98546,380,1411,347,194,397,87,21743,16612,9764,3196,310,3.6,5,5,2000,3048,9,999999999,26,0,0,88,0.2,0,0 +2019,1,25,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,13.1,83,99154,100,1411,345,28,40,26,3122,0,2813,818,320,3.1,5,5,2000,77777,9,999999999,35,0,0,88,0.2,0,0 +2019,1,25,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15,10,72,98527,0,469,332,0,0,0,0,0,0,0,300,3.1,3,3,1800,77777,9,999999999,26,0,0,88,0.2,0,0 +2019,1,25,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14,10,77,98517,0,0,328,0,0,0,0,0,0,0,340,2.6,3,3,1800,77777,9,999999999,26,0,0,88,0.2,0,0 +2019,1,25,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12.2,11.4,95,99389,0,0,321,0,0,0,0,0,0,0,340,2.1,3,3,1000,77777,9,999999999,30,0,0,88,0.2,0,0 +2019,1,25,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12,9,82,98498,0,0,317,0,0,0,0,0,0,0,320,2.1,3,3,1800,77777,9,999999999,24,0,0,88,0.2,0,0 +2019,1,25,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13,9,77,98507,0,0,322,0,0,0,0,0,0,0,320,2.1,3,3,1800,77777,9,999999999,24,0,0,88,0.2,0,0 +2019,1,25,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11.6,10,90,99461,0,0,317,0,0,0,0,0,0,0,320,3.1,3,3,1000,77777,9,999999999,26,0,0,88,0.2,0,0 +2019,1,26,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11,8,82,98488,0,0,312,0,0,0,0,0,0,0,300,2.1,3,3,1800,77777,9,999999999,21,0,0,88,0.2,0,0 +2019,1,26,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11,8,82,98488,0,0,312,0,0,0,0,0,0,0,330,2.1,3,3,1800,77777,9,999999999,21,0,0,88,0.2,0,0 +2019,1,26,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.2,8.6,90,99379,0,0,309,0,0,0,0,0,0,0,290,1.5,3,3,1000,77777,9,999999999,23,0,0,88,0.2,0,0 +2019,1,26,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10,8,87,98478,0,0,308,0,0,0,0,0,0,0,290,2.1,3,3,1200,77777,9,999999999,21,0,0,88,0.2,0,0 +2019,1,26,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10,7,82,98478,0,0,307,0,0,0,0,0,0,0,320,2.1,3,3,1200,77777,9,999999999,19,0,0,88,0.2,0,0 +2019,1,26,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.2,7.4,95,99378,0,0,299,0,0,0,0,0,0,0,290,2.1,3,3,1000,77777,9,999999999,20,0,0,88,0.2,0,0 +2019,1,26,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8,7,93,98458,0,0,298,0,0,0,0,0,0,0,290,2.6,3,3,1000,77777,9,999999999,19,0,0,88,0.2,0,0 +2019,1,26,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8,7,93,98458,65,302,286,20,10,19,2185,0,2138,603,250,2.6,0,0,800,77777,9,999999999,19,0,0,88,0.2,0,0 +2019,1,26,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.4,97,99588,349,1411,285,185,459,71,20957,16389,8103,2673,230,2.1,0,0,500,77777,9,999999999,20,0,0,88,0.2,0,0 +2019,1,26,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,8,82,98488,595,1411,299,386,689,95,45297,38363,11224,4165,270,2.6,0,0,800,77777,9,999999999,21,0,0,88,0.2,0,0 +2019,1,26,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,8,72,98507,785,1411,308,554,822,96,67155,48457,11638,4637,290,3.1,0,0,1000,77777,9,999999999,21,0,0,88,0.2,0,0 +2019,1,26,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.2,10,76,99739,907,1411,315,661,788,153,78747,52101,18360,7358,270,3.1,0,0,1000,77777,9,999999999,26,0,0,88,0.2,0,0 +2019,1,26,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,6,48,98546,952,1411,323,706,793,171,84223,55526,20433,8199,290,4.1,0,0,2000,77777,9,999999999,17,0,0,88,0.2,0,0 +2019,1,26,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,2,34,98555,917,1411,323,679,789,165,80894,56243,19782,7871,310,4.1,0,0,2500,77777,9,999999999,12,0,0,88,0.2,0,0 +2019,1,26,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.8,6.9,46,99453,806,1411,332,573,831,98,69681,49871,11914,4769,290,4.1,0,0,2000,77777,9,999999999,19,0,0,88,0.2,0,0 +2019,1,26,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,3,37,98555,624,1411,324,415,748,84,49543,42186,10023,3799,320,4.1,0,0,2500,77777,9,999999999,13,0,0,88,0.2,0,0 +2019,1,26,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,3,39,98546,385,1411,320,214,516,73,24490,21366,8413,2840,310,3.6,0,0,2500,77777,9,999999999,13,0,0,88,0.2,0,0 +2019,1,26,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.8,6.9,55,99395,105,1411,319,32,55,28,3526,0,3091,883,290,4.1,0,0,2000,77777,9,999999999,19,0,0,88,0.2,0,0 +2019,1,26,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,4,48,98527,0,488,312,0,0,0,0,0,0,0,280,3.1,0,0,2500,77777,9,999999999,14,0,0,88,0.2,0,0 +2019,1,26,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,4,54,98507,0,0,303,0,0,0,0,0,0,0,280,3.1,0,0,2500,77777,9,999999999,14,0,0,88,0.2,0,0 +2019,1,26,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.6,9.2,85,99519,0,0,303,0,0,0,0,0,0,0,270,2.1,0,0,2000,77777,9,999999999,24,0,0,88,0.2,0,0 +2019,1,26,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,6,71,98488,0,0,297,0,0,0,0,0,0,0,270,3.1,0,0,2500,77777,9,999999999,17,0,0,88,0.2,0,0 +2019,1,26,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,6,71,98488,0,0,297,0,0,0,0,0,0,0,270,2.6,0,0,2200,77777,9,999999999,17,0,0,88,0.2,0,0 +2019,1,26,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.2,8.6,90,99603,0,0,296,0,0,0,0,0,0,0,270,2.1,0,0,2000,77777,9,999999999,23,0,0,88,0.2,0,0 +2019,1,27,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,6,81,98468,0,0,289,0,0,0,0,0,0,0,250,2.1,0,0,2200,77777,9,999999999,18,0,0,88,0.2,0,0 +2019,1,27,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,6,81,98468,0,0,289,0,0,0,0,0,0,0,240,2.6,0,0,1500,77777,9,999999999,18,0,0,88,0.2,0,0 +2019,1,27,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,8.2,6.9,92,99524,0,0,286,0,0,0,0,0,0,0,210,0,0,0,1000,77777,9,999999999,19,0,0,88,0.2,0,0 +2019,1,27,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,6,87,98458,0,0,285,0,0,0,0,0,0,0,250,2.1,0,0,1000,77777,9,999999999,18,0,0,88,0.2,0,0 +2019,1,27,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,6,93,98448,0,0,281,0,0,0,0,0,0,0,210,1.5,0,0,900,77777,9,999999999,18,0,0,88,0.2,0,0 +2019,1,27,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7,6.1,94,99454,0,0,281,0,0,0,0,0,0,0,200,2.1,0,0,500,77777,9,999999999,18,0,0,88,0.2,0,0 +2019,1,27,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,6,100,98438,0,0,277,0,0,0,0,0,0,0,230,1.5,0,0,400,77777,0,999999999,18,0,0,88,0.2,0,0 +2019,1,27,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5,5,100,98428,67,311,272,21,14,20,2254,0,2187,617,240,1.5,0,0,200,77777,0,999999999,16,0,0,88,0.2,0,0 +2019,1,27,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.6,6.6,100,99654,352,1410,292,185,445,74,20870,16492,8347,2744,270,2.6,3,3,500,77777,0,999999999,19,0,0,88,0.2,0,0 +2019,1,27,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9,8,93,98468,598,1410,303,384,664,102,44782,37872,11913,4399,270,3.1,3,3,700,77777,0,999999999,21,0,0,88,0.2,0,0 +2019,1,27,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11,7,76,98488,789,1410,311,550,798,104,66411,48424,12544,4982,280,4.1,3,3,1200,77777,0,999999999,19,0,0,88,0.2,0,0 +2019,1,27,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,7.5,63,99712,911,1410,332,621,703,166,73648,48584,19804,7876,270,5.1,5,5,1000,77777,0,999999999,20,0,0,88,0.2,0,0 +2019,1,27,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15,7,59,98527,956,1410,334,660,733,162,78985,50161,19476,7867,300,4.6,5,5,1700,77777,0,999999999,19,0,0,88,0.2,0,0 +2019,1,27,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,6,55,98527,922,1410,333,632,731,153,75602,49742,18427,7406,290,3.6,5,5,1700,3048,0,999999999,17,0,0,88,0.2,0,0 +2019,1,27,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16.6,9.8,64,99480,810,1410,345,534,689,138,63229,44401,16405,6431,290,4.1,5,5,2000,3000,0,999999999,26,0,0,88,0.2,0,0 +2019,1,27,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,7,52,98546,628,1410,343,387,515,157,43941,35467,17947,6296,320,4.6,5,5,4000,3048,0,999999999,19,0,0,88,0.2,0,0 +2019,1,27,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16,8,59,98536,389,1410,335,213,411,99,23723,19541,11096,3550,300,4.6,3,3,3500,3048,0,999999999,21,0,0,88,0.2,0,0 +2019,1,27,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15.6,8.1,61,99383,109,1410,319,33,54,29,3647,0,3200,916,320,3.6,0,0,2000,77777,0,999999999,22,0,0,88,0.2,0,0 +2019,1,27,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,7,63,98517,0,508,311,0,0,0,0,0,0,0,270,2.6,0,0,3500,77777,0,999999999,19,0,0,88,0.2,0,0 +2019,1,27,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,6,67,98498,0,0,301,0,0,0,0,0,0,0,280,4.1,0,0,3200,77777,0,999999999,17,0,0,88,0.2,0,0 +2019,1,27,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.8,9.4,85,99424,0,0,304,0,0,0,0,0,0,0,290,3.6,0,0,2000,77777,0,999999999,25,0,0,88,0.2,0,0 +2019,1,27,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,6,71,98488,0,0,297,0,0,0,0,0,0,0,270,3.1,0,0,3200,77777,0,999999999,17,0,0,88,0.2,0,0 +2019,1,27,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,5,76,98468,0,0,288,0,0,0,0,0,0,0,260,3.1,0,0,3000,77777,0,999999999,16,0,0,88,0.2,0,0 +2019,1,27,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,6.8,84,99497,0,0,291,0,0,0,0,0,0,0,250,2.6,0,0,2000,77777,0,999999999,19,0,0,88,0.2,0,0 +2019,1,28,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,4,76,98458,0,0,283,0,0,0,0,0,0,0,116,0,0,0,2500,77777,0,999999999,14,0,0,88,0.2,0,0 +2019,1,28,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,5,81,98458,0,0,284,0,0,0,0,0,0,0,250,2.1,0,0,2200,77777,0,999999999,16,0,0,88,0.2,0,0 +2019,1,28,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.4,5,91,99428,0,0,277,0,0,0,0,0,0,0,250,2.6,0,0,1000,77777,0,999999999,16,0,0,88,0.2,0,0 +2019,1,28,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,5,87,98448,0,0,280,0,0,0,0,0,0,0,240,2.1,0,0,800,77777,0,999999999,16,0,0,88,0.2,0,0 +2019,1,28,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,5,93,98438,0,0,276,0,0,0,0,0,0,0,240,2.1,0,0,600,77777,0,999999999,16,0,0,88,0.2,0,0 +2019,1,28,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.2,6.2,100,99387,0,0,278,0,0,0,0,0,0,0,250,2.1,0,0,1000,77777,0,999999999,18,0,0,88,0.2,0,0 +2019,1,28,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,6,100,98438,0,0,277,0,0,0,0,0,0,0,240,2.1,0,0,500,77777,0,999999999,18,0,0,88,0.2,0,0 +2019,1,28,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,6,100,98438,69,321,277,21,30,20,2332,0,2177,619,230,2.1,0,0,500,77777,0,999999999,18,0,0,88,0.2,0,0 +2019,1,28,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.1,93,99660,354,1410,282,189,467,72,21462,17262,8172,2704,250,2.6,0,0,500,77777,0,999999999,18,0,0,88,0.2,0,0 +2019,1,28,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,7,87,98468,601,1410,290,392,691,97,45995,39174,11403,4237,260,2.6,0,0,900,77777,0,999999999,19,0,0,88,0.2,0,0 +2019,1,28,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,8,76,98498,792,1410,303,560,823,97,67932,48706,11759,4693,270,3.1,0,0,1200,77777,0,999999999,21,0,0,88,0.2,0,0 +2019,1,28,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,9,65,99714,915,1410,320,669,789,157,79743,52869,18740,7512,290,4.1,0,0,1000,77777,0,999999999,24,0,0,88,0.2,0,0 +2019,1,28,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,8,55,98546,961,1410,325,712,793,170,84908,54707,20424,8224,300,5.1,0,0,2700,77777,0,999999999,21,0,0,88,0.2,0,0 +2019,1,28,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,7,49,98555,927,1410,329,682,790,162,81296,54281,19417,7777,300,4.1,0,0,3500,77777,0,999999999,19,0,0,88,0.2,0,0 +2019,1,28,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.8,5.9,43,99482,815,1410,331,582,851,90,71394,50490,11019,4435,290,6.2,0,0,4000,77777,0,999999999,17,0,0,88,0.2,0,0 +2019,1,28,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,4,39,98555,633,1410,325,422,750,85,50429,42376,10161,3864,270,4.1,0,0,4000,77777,0,999999999,14,0,0,88,0.2,0,0 +2019,1,28,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,4,39,98555,394,1410,325,221,522,75,25253,22044,8582,2910,280,6.7,0,0,4000,77777,0,999999999,14,0,0,88,0.2,0,0 +2019,1,28,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.4,6.7,53,99352,113,1410,321,35,91,27,3834,0,3032,890,290,5.1,0,0,4000,77777,0,999999999,19,0,0,88,0.2,0,0 +2019,1,28,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,5,55,98517,0,527,309,0,0,0,0,0,0,0,270,3.1,0,0,3500,77777,0,999999999,16,0,0,88,0.2,0,0 +2019,1,28,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,5,58,98507,0,0,304,0,0,0,0,0,0,0,290,2.6,0,0,3500,77777,0,999999999,16,0,0,88,0.2,0,0 +2019,1,28,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.2,7,66,99438,0,0,307,0,0,0,0,0,0,0,320,3.1,0,0,2000,77777,0,999999999,19,0,0,88,0.2,0,0 +2019,1,28,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,3,58,98488,0,0,294,0,0,0,0,0,0,0,280,2.6,0,0,3500,77777,0,999999999,13,0,0,88,0.2,0,0 +2019,1,28,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,4,66,98478,0,0,291,0,0,0,0,0,0,0,260,2.6,0,0,3000,77777,0,999999999,14,0,0,88,0.2,0,0 +2019,1,28,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10,7.1,82,99455,0,0,294,0,0,0,0,0,0,0,270,2.1,0,0,2000,77777,0,999999999,20,0,0,88,0.2,0,0 +2019,1,29,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,4,76,98458,0,0,283,0,0,0,0,0,0,0,270,2.6,0,0,2500,77777,0,999999999,14,0,0,88,0.2,0,0 +2019,1,29,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,4,76,98458,0,0,283,0,0,0,0,0,0,0,250,2.6,0,0,2200,77777,0,999999999,14,0,0,88,0.2,0,0 +2019,1,29,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.4,6.2,86,99293,0,0,286,0,0,0,0,0,0,0,230,2.1,0,0,2000,77777,0,999999999,18,0,0,88,0.2,0,0 +2019,1,29,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,4,81,98448,0,0,279,0,0,0,0,0,0,0,260,1.5,0,0,1600,77777,0,999999999,14,0,0,88,0.2,0,0 +2019,1,29,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,3,81,98438,0,0,274,0,0,0,0,0,0,0,230,2.1,0,0,1500,77777,0,999999999,13,0,0,88,0.2,0,0 +2019,1,29,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.2,5.3,94,99222,0,0,277,0,0,0,0,0,0,0,230,1.5,0,0,1000,77777,9,999999999,17,0,0,88,0.2,0,0 +2019,1,29,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,4,87,98438,0,0,275,0,0,0,0,0,0,0,240,1.5,0,0,1000,77777,9,999999999,14,0,0,88,0.2,0,0 +2019,1,29,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,5,3,87,98428,72,331,270,22,42,20,2419,0,2188,626,240,2.6,0,0,700,77777,9,999999999,13,0,0,88,0.2,0,0 +2019,1,29,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.2,5.3,94,99397,357,1410,277,191,470,72,21716,17721,8221,2724,250,3.1,0,0,500,77777,9,999999999,17,0,0,88,0.2,0,0 +2019,1,29,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,5,76,98468,604,1410,288,396,686,101,46358,40162,11900,4405,280,2.6,0,0,800,77777,9,999999999,16,0,0,88,0.2,0,0 +2019,1,29,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,5,58,98507,796,1410,304,566,845,88,69265,50099,10804,4328,290,3.1,0,0,1300,77777,9,999999999,16,0,0,88,0.2,0,0 +2019,1,29,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.8,9.8,72,99502,919,1410,317,672,789,156,80071,52494,18738,7524,270,3.1,0,0,1000,77777,9,999999999,26,0,0,88,0.2,0,0 +2019,1,29,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,5,45,98546,965,1410,322,719,793,175,85777,56249,20968,8421,300,4.6,0,0,2500,77777,9,999999999,16,0,0,88,0.2,0,0 +2019,1,29,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,5,42,98555,931,1410,326,688,790,165,82039,55319,19813,7926,300,4.1,0,0,3200,77777,9,999999999,16,0,0,88,0.2,0,0 +2019,1,29,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.6,7,44,99275,820,1410,336,585,848,91,71675,50121,11224,4522,290,4.1,0,0,2000,77777,9,999999999,19,0,0,88,0.2,0,0 +2019,1,29,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,2,32,98564,638,1410,327,428,755,85,51121,43359,10214,3888,300,5.1,0,0,4000,77777,9,999999999,12,0,0,88,0.2,0,0 +2019,1,29,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,2,32,98564,398,1410,327,225,523,77,25710,22983,8827,2989,290,5.1,0,0,4000,77777,9,999999999,12,0,0,88,0.2,0,0 +2019,1,29,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,8.9,59,99222,118,1410,340,35,82,28,3894,0,3145,925,270,3.6,3,3,4000,77777,9,999999999,23,0,0,88,0.2,0,0 +2019,1,29,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16,3,42,98536,0,546,329,0,0,0,0,0,0,0,290,2.1,3,3,4000,77777,9,999999999,13,0,0,88,0.2,0,0 +2019,1,29,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15,4,48,98527,0,0,325,0,0,0,0,0,0,0,280,2.1,3,3,3200,77777,9,999999999,14,0,0,88,0.2,0,0 +2019,1,29,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12.6,7.7,72,99315,0,0,319,0,0,0,0,0,0,0,270,2.1,3,3,2000,77777,9,999999999,21,0,0,88,0.2,0,0 +2019,1,29,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12,5,62,98498,0,0,313,0,0,0,0,0,0,0,240,2.1,3,3,3000,77777,9,999999999,16,0,0,88,0.2,0,0 +2019,1,29,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12,5,62,98498,0,0,313,0,0,0,0,0,0,0,260,1.5,3,3,3000,77777,9,999999999,16,0,0,88,0.2,0,0 +2019,1,29,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.2,7.7,84,99321,0,0,308,0,0,0,0,0,0,0,250,1.5,3,3,2000,77777,9,999999999,21,0,0,88,0.2,0,0 +2019,1,30,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,10,6,76,98478,0,0,306,0,0,0,0,0,0,0,179,0,3,3,2200,77777,9,999999999,18,0,0,88,0.2,0,0 +2019,1,30,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,10,6,76,98478,0,0,306,0,0,0,0,0,0,0,140,0,3,3,2200,77777,9,999999999,18,0,0,88,0.2,0,0 +2019,1,30,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8.4,7.1,92,99157,0,0,300,0,0,0,0,0,0,0,250,1.5,3,3,1000,77777,9,999999999,20,0,0,88,0.2,0,0 +2019,1,30,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9,7,87,98468,0,0,302,0,0,0,0,0,0,0,260,1.5,3,3,1200,77777,9,999999999,19,0,0,88,0.2,0,0 +2019,1,30,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7,5,87,98448,0,0,292,0,0,0,0,0,0,0,220,2.1,3,3,1200,77777,9,999999999,16,0,0,88,0.2,0,0 +2019,1,30,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6.6,6.2,97,99129,0,0,291,0,0,0,0,0,0,0,230,2.1,3,3,1000,77777,9,999999999,18,0,0,88,0.2,0,0 +2019,1,30,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7,5,87,98448,0,0,296,0,0,0,0,0,0,0,200,2.1,5,5,800,77777,9,999999999,16,0,0,88,0.2,0,0 +2019,1,30,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7,5,87,98448,74,343,296,21,18,20,2324,0,2224,639,260,2.1,5,5,700,77777,9,999999999,16,0,0,88,0.2,0,0 +2019,1,30,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,6.3,89,99289,360,1409,302,180,379,83,20201,15584,9337,3023,230,2.1,5,5,500,77777,9,999999999,18,0,0,88,0.2,0,0 +2019,1,30,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10,6,76,98478,608,1409,310,371,554,131,42533,35527,15114,5417,250,3.1,5,5,1000,77777,9,999999999,18,0,0,88,0.2,0,0 +2019,1,30,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13,5,58,98507,800,1409,323,530,556,214,60596,43503,24560,8950,240,2.6,5,5,1500,77777,9,999999999,16,0,0,88,0.2,0,0 +2019,1,30,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15.6,10.3,71,99383,923,1409,361,348,62,308,39397,5294,35040,12464,270,4.1,9,9,1000,3000,9,999999999,27,0,0,88,0.2,0,0 +2019,1,30,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,6,45,98555,970,1409,367,373,79,318,42439,6959,36471,13141,250,4.6,9,9,2000,3048,9,999999999,17,0,0,88,0.2,0,0 +2019,1,30,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,6,43,98564,936,1409,372,357,78,305,40570,6857,34850,12498,250,2.6,9,9,2000,3048,9,999999999,17,0,0,88,0.2,0,0 +2019,1,30,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20.2,9.3,49,99086,824,1409,383,303,70,262,34194,5774,29759,10458,270,3.1,9,9,2000,3000,9,999999999,24,0,0,88,0.2,0,0 +2019,1,30,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,2,32,98564,643,1409,367,223,24,212,24813,1914,23738,7745,270,2.1,9,9,2000,3048,9,999999999,12,0,0,88,0.2,0,0 +2019,1,30,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,2,32,98564,403,1409,367,118,10,115,13074,579,12796,3982,300,2.1,9,9,2000,3048,9,999999999,12,0,0,88,0.2,0,0 +2019,1,30,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17.6,9.2,58,99013,122,1409,349,34,34,31,3782,0,3467,1004,340,2.1,5,5,2000,3000,9,999999999,24,0,0,88,0.2,0,0 +2019,1,30,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,5,45,98546,0,566,341,0,0,0,0,0,0,0,320,1.5,5,5,2000,3048,9,999999999,16,0,0,88,0.2,0,0 +2019,1,30,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,6,55,98527,0,0,333,0,0,0,0,0,0,0,330,1.5,5,5,2100,3048,9,999999999,17,0,0,88,0.2,0,0 +2019,1,30,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14.2,9.6,74,99166,0,0,333,0,0,0,0,0,0,0,166,0,5,5,2000,3000,9,999999999,25,0,0,88,0.2,0,0 +2019,1,30,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,5,51,98527,0,0,332,0,0,0,0,0,0,0,154,0,5,5,2100,3048,9,999999999,16,0,0,88,0.2,0,0 +2019,1,30,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,6,59,98517,0,0,328,0,0,0,0,0,0,0,120,1.5,5,5,2100,3048,9,999999999,17,0,0,88,0.2,0,0 +2019,1,30,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12.2,8.2,77,99166,0,0,322,0,0,0,0,0,0,0,90,2.6,5,5,2000,3000,9,999999999,22,0,0,88,0.2,0,0 +2019,1,31,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,6,67,98498,0,0,319,0,0,0,0,0,0,0,80,1.5,5,5,1600,3048,9,999999999,17,0,0,88,0.2,0,0 +2019,1,31,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,7,76,98488,0,0,316,0,0,0,0,0,0,0,53,0,5,5,1500,3048,9,999999999,19,0,0,88,0.2,0,0 +2019,1,31,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11.6,9.6,88,99160,0,0,340,0,0,0,0,0,0,0,242,0,9,9,1000,3000,9,999999999,25,0,0,88,0.2,0,0 +2019,1,31,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,8,76,98498,0,0,340,0,0,0,0,0,0,0,50,2.1,9,9,1300,3048,9,999999999,21,0,0,88,0.2,0,0 +2019,1,31,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,7,76,98488,0,0,334,0,0,0,0,0,0,0,348,0,9,9,1200,3048,9,999999999,19,0,0,88,0.2,0,0 +2019,1,31,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10.8,9.6,92,99074,0,0,336,0,0,0,0,0,0,0,182,0,9,9,1000,3000,9,999999999,25,0,0,88,0.2,0,0 +2019,1,31,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,7,76,98488,0,0,334,0,0,0,0,0,0,0,100,2.6,9,9,800,3048,9,999999999,19,0,0,88,0.2,0,0 +2019,1,31,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,8,76,98498,77,354,340,12,0,12,1157,0,1165,433,100,2.6,9,9,700,914,9,999999999,21,0,0,88,0.2,0,0 +2019,1,31,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11.4,10.6,95,99158,363,1409,340,100,6,99,11068,274,10934,3411,110,2.6,9,9,1000,3000,9,999999999,28,0,0,88,0.2,0,0 +2019,1,31,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,5,51,98527,611,1409,351,207,22,198,23049,1695,22107,7185,110,2.1,9,9,1600,3048,9,999999999,16,0,0,88,0.2,0,0 +2019,1,31,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,5,48,98536,804,1409,356,296,52,266,33245,4472,30072,10362,110,2.6,9,9,2000,3048,9,999999999,16,0,0,88,0.2,0,0 +2019,1,31,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,10.6,62,99202,927,1409,373,350,71,303,39669,6074,34539,12379,120,5.1,9,9,2000,3000,9,999999999,28,0,0,88,0.2,0,0 +2019,1,31,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,5,45,98546,974,1409,361,375,85,317,42806,7486,36330,13138,120,4.1,9,9,2200,3048,9,999999999,16,0,0,88,0.2,0,0 +2019,1,31,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,6,43,98564,941,1409,352,647,404,377,72359,39005,42441,14155,130,2.6,5,5,3000,3048,9,999999999,17,0,0,88,0.2,0,0 +2019,1,31,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19.6,11.2,58,98906,829,1409,382,304,90,251,34427,7166,28613,10220,140,5.1,9,9,2000,3000,9,999999999,29,0,0,88,0.2,0,0 +2019,1,31,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,6,43,98564,647,1409,372,223,23,213,24849,1823,23803,7803,130,2.6,9,9,3500,3048,9,999999999,17,0,0,88,0.2,0,0 +2019,1,31,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,7,46,98564,408,1409,374,119,14,115,13145,728,12763,4003,120,2.6,9,9,3500,3048,9,999999999,19,0,0,88,0.2,0,0 +2019,1,31,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17.6,11.4,67,98877,126,1409,372,20,0,20,1931,0,1944,723,110,4.1,9,9,2000,3000,9,999999999,30,0,0,88,0.2,0,0 +2019,1,31,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14.8,8.9,68,98643,0,585,340,0,0,0,0,0,0,0,95,3.2,5,5,3000,3048,9,999999999,23,0,0,88,0.2,0,0 +2019,1,31,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14.3,8.9,70,98638,0,0,336,0,0,0,0,0,0,0,97,3.3,5,5,3000,3048,9,999999999,23,0,0,88,0.2,0,0 +2019,1,31,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14.1,9.8,75,98779,0,0,334,0,0,0,0,0,0,0,95,3.2,5,5,2000,3000,9,999999999,25,0,0,88,0.2,0,0 +2019,1,31,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14.4,9.9,75,98663,0,0,350,0,0,0,0,0,0,0,152,3.1,9,9,3000,3048,9,999999999,26,0,0,88,0.2,0,0 +2019,1,31,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14.4,10.6,78,98663,0,0,330,0,0,0,0,0,0,0,205,2.6,5,5,3000,3048,9,999999999,28,0,0,88,0.2,0,0 +2019,1,31,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14.1,11.4,84,98660,0,0,357,0,0,0,0,0,0,0,252,2.2,9,9,2000,3000,0,919999999,30,0,0,88,0.2,0,0 +2016,2,1,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13.5,10.8,83,98512,0,0,345,0,0,0,0,0,0,0,307,1.9,7,7,1600,3048,0,999999999,28,0,0,88,0.2,0,0 +2016,2,1,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.5,10.5,88,98503,0,0,315,0,0,0,0,0,0,0,310,1.5,0,0,1500,3048,0,999999999,27,0,0,88,0.2,0,0 +2016,2,1,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.5,10,90,98493,0,0,311,0,0,0,0,0,0,0,254,1.1,0,0,1200,3048,0,999999999,26,0,0,88,0.2,0,0 +2016,2,1,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10.5,9.5,94,98483,0,0,319,0,0,0,0,0,0,0,213,0.6,3,3,700,77777,0,999999999,25,0,0,88,0.2,0,0 +2016,2,1,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10,9.5,97,98478,0,0,301,0,0,0,0,0,0,0,154,0.2,0,0,400,77777,0,999999999,25,0,0,88,0.2,0,0 +2016,2,1,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9.9,9.6,98,98485,0,0,296,0,0,0,0,0,0,0,128,0,0,0,50,77777,0,999999999,25,0,0,88,0.2,0,0 +2016,2,1,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,9,9,100,98468,0,0,337,0,0,0,0,0,0,0,124,0,10,10,0,77777,0,999999999,24,0,0,88,0.2,0,0 +2016,2,1,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,10,10,100,98478,80,366,343,8,0,8,728,0,733,290,76,0,10,10,0,77777,0,999999999,26,0,0,88,0.2,0,0 +2016,2,1,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10.4,10.4,100,98516,367,1408,299,197,467,75,22236,17192,8501,2829,226,0,0,0,49,30,0,999999999,27,0,0,88,0.2,0,0 +2016,2,1,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,11,100,98488,615,1408,302,401,692,98,47011,38089,11525,4315,260,2.1,0,0,50,77777,0,999999999,29,0,0,88,0.2,0,0 +2016,2,1,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,10,77,98517,808,1408,314,571,825,97,69408,48101,11867,4762,280,3.1,0,0,1300,77777,0,999999999,26,0,0,88,0.2,0,0 +2016,2,1,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,8.7,50,99176,932,1408,337,684,790,161,81639,53443,19318,7762,320,2.6,0,0,2000,77777,0,999999999,23,0,0,88,0.2,0,0 +2016,2,1,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,8,46,98574,979,1408,339,728,794,175,86909,55084,21009,8479,300,5.1,0,0,2300,77777,0,999999999,21,0,0,88,0.2,0,0 +2016,2,1,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,6,38,98583,946,1408,341,700,791,168,83493,55207,20157,8088,310,5.1,0,0,2600,77777,0,999999999,17,0,0,88,0.2,0,0 +2016,2,1,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22,3.9,31,99005,834,1408,343,601,778,139,71560,52530,16670,6570,320,3.1,0,0,2000,77777,0,999999999,14,0,0,88,0.2,0,0 +2016,2,1,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,5,35,98583,652,1408,340,438,757,87,52357,43073,10412,3985,320,5.1,0,0,4500,77777,0,999999999,16,0,0,88,0.2,0,0 +2016,2,1,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,5,35,98583,412,1408,340,235,465,98,26352,23262,11091,3635,320,4.1,0,0,5000,77777,0,999999999,16,0,0,88,0.2,0,0 +2016,2,1,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,5.6,40,98884,131,1408,333,41,110,31,4568,0,3444,1018,320,1.5,0,0,4000,77777,0,999999999,17,0,0,88,0.2,0,0 +2016,2,1,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,5,42,98555,0,604,326,0,0,0,0,0,0,0,320,2.6,0,0,4500,77777,0,999999999,16,0,0,88,0.2,0,0 +2016,2,1,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,6,51,98536,0,0,318,0,0,0,0,0,0,0,300,2.6,0,0,3000,77777,0,999999999,17,0,0,88,0.2,0,0 +2016,2,1,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,8,65,99041,0,0,314,0,0,0,0,0,0,0,320,1.5,0,0,2000,77777,0,999999999,21,0,0,88,0.2,0,0 +2016,2,1,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,7,59,98527,0,0,315,0,0,0,0,0,0,0,320,2.6,0,0,2200,77777,0,999999999,19,0,0,88,0.2,0,0 +2016,2,1,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,7,59,98527,0,0,315,0,0,0,0,0,0,0,330,2.6,0,0,2200,77777,0,999999999,19,0,0,88,0.2,0,0 +2016,2,1,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.6,7.7,72,99121,0,0,306,0,0,0,0,0,0,0,320,3.1,0,0,2000,77777,0,999999999,21,0,0,88,0.2,0,0 +2016,2,2,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,8,72,98507,0,0,308,0,0,0,0,0,0,0,20,2.1,0,0,2200,77777,0,999999999,21,0,0,88,0.2,0,0 +2016,2,2,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,8,76,98498,0,0,303,0,0,0,0,0,0,0,360,1.5,0,0,2000,77777,0,999999999,21,0,0,88,0.2,0,0 +2016,2,2,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,9.8,7.3,84,98996,0,0,293,0,0,0,0,0,0,0,168,0,0,0,1000,77777,0,999999999,20,0,0,88,0.2,0,0 +2016,2,2,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,7,87,98468,0,0,290,0,0,0,0,0,0,0,260,1.5,0,0,1000,77777,0,999999999,19,0,0,88,0.2,0,0 +2016,2,2,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,6,87,98458,0,0,285,0,0,0,0,0,0,0,250,1.5,0,0,500,77777,0,999999999,18,0,0,88,0.2,0,0 +2016,2,2,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,8.4,6.7,89,98953,0,0,287,0,0,0,0,0,0,0,163,0,0,0,200,77777,0,999999999,19,0,0,88,0.2,0,0 +2016,2,2,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7,6,93,98448,0,0,297,0,0,0,0,0,0,0,240,1,5,5,300,77777,0,999999999,18,0,0,88,0.2,0,0 +2016,2,2,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,6,93,98448,83,379,297,23,21,22,2566,0,2438,700,250,1.5,5,5,300,3048,0,999999999,18,0,0,88,0.2,0,0 +2016,2,2,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.2,5.9,75,99136,370,1408,311,187,375,88,20924,16411,9899,3194,270,1.5,5,5,1000,3048,0,999999999,17,0,0,88,0.2,0,0 +2016,2,2,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14,7,63,98517,619,1408,324,402,673,106,46974,39573,12402,4607,250,3.1,3,3,1400,3048,0,999999999,19,0,0,88,0.2,0,0 +2016,2,2,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17,5,45,98546,812,1408,341,540,701,135,64149,46545,16113,6324,270,3.1,5,5,2800,3048,0,999999999,16,0,0,88,0.2,0,0 +2016,2,2,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,6.7,44,99283,936,1408,354,643,705,173,76376,49503,20700,8260,270,1.5,5,5,2000,3048,0,999999999,19,0,0,88,0.2,0,0 +2016,2,2,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20,3,32,98574,984,1408,347,729,842,139,88762,56544,17045,6999,320,4.6,3,3,4500,3048,0,999999999,13,0,0,88,0.2,0,0 +2016,2,2,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20,2,30,98574,950,1408,346,700,791,165,83778,56111,19845,7978,300,4.6,3,3,5000,3048,0,999999999,12,0,0,88,0.2,0,0 +2016,2,2,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.2,3.2,31,98959,839,1408,353,599,845,94,73477,51759,11584,4682,320,2.6,3,3,4000,3048,0,999999999,13,0,0,88,0.2,0,0 +2016,2,2,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20,2,30,98574,657,1408,346,439,741,92,52308,43835,11020,4205,300,5.1,3,3,4500,3048,0,999999999,12,0,0,88,0.2,0,0 +2016,2,2,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20,2,30,98574,417,1408,346,236,512,85,26950,24346,9674,3273,290,4.1,3,3,4500,3048,0,999999999,12,0,0,88,0.2,0,0 +2016,2,2,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.2,4.2,37,98980,135,1408,345,43,115,32,4767,0,3551,1050,290,2.1,3,3,4000,3048,0,999999999,14,0,0,88,0.2,0,0 +2016,2,2,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17,4,42,98546,0,624,335,0,0,0,0,0,0,0,310,3.1,3,3,3500,3048,0,999999999,14,0,0,88,0.2,0,0 +2016,2,2,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17,5,45,98546,0,0,336,0,0,0,0,0,0,0,320,2.6,3,3,3200,3048,0,999999999,16,0,0,88,0.2,0,0 +2016,2,2,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,8.5,68,99119,0,0,328,0,0,0,0,0,0,0,320,1,3,3,2000,3048,0,999999999,22,0,0,88,0.2,0,0 +2016,2,2,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,5,48,98536,0,0,317,0,0,0,0,0,0,0,310,2.1,0,0,2600,77777,0,999999999,16,0,0,88,0.2,0,0 +2016,2,2,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,5,55,98517,0,0,309,0,0,0,0,0,0,0,300,1.5,0,0,2200,77777,0,999999999,16,0,0,88,0.2,0,0 +2016,2,2,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,11.4,7.3,76,99158,0,0,300,0,0,0,0,0,0,0,131,0,0,0,1000,77777,0,999999999,20,0,0,88,0.2,0,0 +2016,2,3,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,12,6,67,98498,0,0,319,0,0,0,0,0,0,0,338,0,5,5,1200,77777,0,999999999,17,0,0,88,0.2,0,0 +2016,2,3,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,11,6,71,98488,0,0,317,0,0,0,0,0,0,0,270,1.5,6,6,1400,77777,0,999999999,17,0,0,88,0.2,0,0 +2016,2,3,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,10.4,6.6,77,99099,0,0,295,0,0,0,0,0,0,0,34,0,0,0,1000,77777,0,999999999,19,0,0,88,0.2,0,0 +2016,2,3,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,5,76,98468,0,0,288,0,0,0,0,0,0,0,260,2.1,0,0,1800,77777,0,999999999,16,0,0,88,0.2,0,0 +2016,2,3,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,5,81,98458,0,0,284,0,0,0,0,0,0,0,240,2.1,0,0,1800,77777,0,999999999,16,0,0,88,0.2,0,0 +2016,2,3,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.4,6.2,86,99002,0,0,286,0,0,0,0,0,0,0,230,1,0,0,500,77777,0,999999999,18,0,0,88,0.2,0,0 +2016,2,3,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,6,93,98448,0,0,281,0,0,0,0,0,0,0,240,2.1,0,0,300,77777,0,999999999,18,0,0,88,0.2,0,0 +2016,2,3,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,5,87,98448,86,392,280,26,55,23,2852,0,2490,717,230,1.5,0,0,300,77777,0,999999999,16,0,0,88,0.2,0,0 +2016,2,3,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.6,5,78,99110,373,1408,286,203,486,74,23127,19437,8475,2834,270,2.1,0,0,500,77777,0,999999999,16,0,0,88,0.2,0,0 +2016,2,3,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,6,62,98507,623,1408,305,411,694,103,48163,40883,12151,4532,260,3.1,0,0,2800,77777,0,999999999,17,0,0,88,0.2,0,0 +2016,2,3,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,5,48,98536,816,1408,317,583,828,103,70848,51051,12539,5021,290,5.1,0,0,3100,77777,0,999999999,16,0,0,88,0.2,0,0 +2016,2,3,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.4,7.9,50,99303,941,1408,331,693,790,164,82718,54066,19703,7920,290,3.1,0,0,2000,77777,0,999999999,21,0,0,88,0.2,0,0 +2016,2,3,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,4,35,98574,988,1408,334,741,795,182,88483,57167,21881,8804,300,6.2,0,0,3500,77777,0,999999999,14,0,0,88,0.2,0,0 +2016,2,3,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,4,33,98583,955,1408,339,711,792,173,84808,56312,20737,8315,290,4.1,0,0,3500,77777,0,999999999,14,0,0,88,0.2,0,0 +2016,2,3,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.8,5,36,98946,844,1408,339,609,779,141,72487,52363,16835,6655,290,4.1,0,0,2000,77777,0,999999999,16,0,0,88,0.2,0,0 +2016,2,3,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,3,30,98583,662,1408,338,447,764,88,53598,44376,10550,4047,300,4.1,0,0,3500,77777,0,999999999,13,0,0,88,0.2,0,0 +2016,2,3,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,3,30,98583,421,1408,338,242,469,102,27255,24572,11473,3762,310,4.1,0,0,3500,77777,0,999999999,13,0,0,88,0.2,0,0 +2016,2,3,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.2,4.2,37,98960,139,1408,331,46,131,33,5063,0,3634,1078,320,4.1,0,0,2000,77777,0,999999999,14,0,0,88,0.2,0,0 +2016,2,3,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,5,42,98555,0,643,326,0,0,0,0,0,0,0,290,4.1,0,0,3500,77777,0,999999999,16,0,0,88,0.2,0,0 +2016,2,3,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,6,51,98536,0,0,318,0,0,0,0,0,0,0,270,3.6,0,0,3500,77777,0,999999999,17,0,0,88,0.2,0,0 +2016,2,3,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,15,6,55,98527,0,0,328,0,0,0,0,0,0,0,93,3.4,3,3,3050,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,2,3,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14,6,59,98517,0,0,326,0,0,0,0,0,0,0,42,3.1,4,4,2600,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,2,3,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,13,6,62,98507,0,0,321,0,0,0,0,0,0,0,234,2.8,4,4,2150,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,2,3,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,12,6,67,98497,0,0,319,0,0,0,0,0,0,0,168,2.6,5,5,1700,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,2,4,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,11,6,71,98488,0,0,317,0,0,0,0,0,0,0,163,2.4,6,6,1250,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,2,4,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,6,76,98478,0,0,293,0,0,0,0,0,0,0,240,2.1,0,0,800,77777,0,999999999,18,0,0,88,0.2,0,0 +2016,2,4,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,11.2,5.6,68,98922,0,0,297,0,0,0,0,0,0,0,160,0,0,0,500,77777,0,999999999,17,0,0,88,0.2,0,0 +2016,2,4,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,6,81,98468,0,0,289,0,0,0,0,0,0,0,270,2.6,0,0,800,77777,0,999999999,18,0,0,88,0.2,0,0 +2016,2,4,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,6,87,98458,0,0,285,0,0,0,0,0,0,0,250,2.1,0,0,800,77777,0,999999999,18,0,0,88,0.2,0,0 +2016,2,4,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,8.2,5.1,81,98883,0,0,285,0,0,0,0,0,0,0,191,0,0,0,500,77777,9,999999999,16,0,0,88,0.2,0,0 +2016,2,4,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,6,87,98458,0,0,285,0,0,0,0,0,0,0,139,0,0,0,800,77777,0,999999999,18,0,0,88,0.2,0,0 +2016,2,4,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,7,6,93,98448,89,406,324,11,0,11,1091,0,1098,420,230,2.1,10,10,800,77777,0,999999999,18,0,0,88,0.2,0,0 +2016,2,4,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,9.2,4.5,72,99116,377,1407,288,206,492,74,23490,19949,8503,2850,290,0,0,0,1000,77777,0,999999999,15,0,0,88,0.2,0,0 +2016,2,4,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,5,58,98507,626,1407,304,415,693,106,48615,41531,12459,4642,270,3.6,0,0,2200,77777,0,999999999,16,0,0,88,0.2,0,0 +2016,2,4,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,4,48,98527,820,1407,312,588,776,135,70046,51870,16156,6358,260,3.1,0,0,3000,77777,0,999999999,14,0,0,88,0.2,0,0 +2016,2,4,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.8,7.3,44,99238,945,1407,337,698,790,166,83313,54494,19950,8019,270,2.6,0,0,2000,77777,0,999999999,20,0,0,88,0.2,0,0 +2016,2,4,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,5,37,98574,993,1407,335,744,795,183,88896,56833,21911,8830,300,4.6,0,0,3000,77777,0,999999999,16,0,0,88,0.2,0,0 +2016,2,4,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,3,29,98592,960,1407,342,717,792,176,85485,56846,21049,8437,300,4.1,0,0,3000,77777,0,999999999,13,0,0,88,0.2,0,0 +2016,2,4,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.6,4.2,28,98981,849,1407,351,614,783,141,73192,52885,16897,6688,320,4.1,0,0,2000,77777,0,999999999,14,0,0,88,0.2,0,0 +2016,2,4,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23,3,27,98601,667,1407,368,420,575,148,48402,39647,17095,6210,320,5.1,5,5,4000,77777,0,999999999,13,0,0,88,0.2,0,0 +2016,2,4,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23,2,25,98601,426,1407,366,230,436,97,25936,22557,11036,3667,330,4.6,5,5,4000,77777,0,999999999,11,0,0,88,0.2,0,0 +2016,2,4,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,20.8,4.4,34,98946,144,1407,358,45,62,38,4895,0,4217,1213,246,0,5,5,4000,77777,0,999999999,15,0,0,88,0.2,0,0 +2016,2,4,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19,4,37,98564,0,662,349,0,0,0,0,0,0,0,280,1.5,5,5,3500,77777,0,999999999,14,0,0,88,0.2,0,0 +2016,2,4,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18,5,42,98555,0,0,346,0,0,0,0,0,0,0,270,1.5,5,5,2800,77777,0,999999999,16,0,0,88,0.2,0,0 +2016,2,4,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,16,5,48,98536,0,0,331,0,0,0,0,0,0,0,40,0,3,3,2500,77777,0,999999999,16,0,0,88,0.2,0,0 +2016,2,4,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,15,6,55,98527,0,0,333,0,0,0,0,0,0,0,50,0,5,5,2100,77777,0,999999999,17,0,0,88,0.2,0,0 +2016,2,4,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,12,6,67,98498,0,0,319,0,0,0,0,0,0,0,84,0,5,5,1600,77777,0,999999999,17,0,0,88,0.2,0,0 +2016,2,4,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,12.4,7.5,72,98954,0,0,304,0,0,0,0,0,0,0,357,0,0,0,1000,77777,0,999999999,20,0,0,88,0.2,0,0 +2016,2,5,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,6,76,98478,0,0,293,0,0,0,0,0,0,0,153,0,0,0,700,77777,0,999999999,18,0,0,88,0.2,0,0 +2016,2,5,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,7,87,98468,0,0,290,0,0,0,0,0,0,0,12,0,0,0,600,77777,0,999999999,19,0,0,88,0.2,0,0 +2016,2,5,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,6,87,98458,0,0,285,0,0,0,0,0,0,0,54,0,0,0,600,77777,0,999999999,18,0,0,88,0.2,0,0 +2016,2,5,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,6,87,98458,0,0,285,0,0,0,0,0,0,0,268,0,0,0,600,77777,0,999999999,18,0,0,88,0.2,0,0 +2016,2,5,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,5,87,98448,0,0,280,0,0,0,0,0,0,0,230,1.5,0,0,500,77777,0,999999999,16,0,0,88,0.2,0,0 +2016,2,5,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,8.4,6.2,86,98924,0,0,286,0,0,0,0,0,0,0,86,0,0,0,500,77777,0,999999999,18,0,0,88,0.2,0,0 +2016,2,5,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,5,93,98438,0,0,276,0,0,0,0,0,0,0,309,0,0,0,500,77777,0,999999999,16,0,0,88,0.2,0,0 +2016,2,5,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,5,93,98438,92,421,276,28,43,25,3042,0,2740,783,47,0,0,0,500,77777,0,999999999,16,0,0,88,0.2,0,0 +2016,2,5,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,8.8,7.1,89,99083,381,1407,289,208,479,78,23579,19585,8887,2967,236,0,0,0,500,77777,0,999999999,20,0,0,88,0.2,0,0 +2016,2,5,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,7,63,98517,631,1407,329,396,602,126,45802,37887,14640,5353,260,2.6,5,5,1000,77777,0,999999999,19,0,0,88,0.2,0,0 +2016,2,5,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,7,49,98555,825,1407,329,589,832,101,71704,50333,12303,4948,280,2.6,0,0,2100,77777,0,999999999,19,0,0,88,0.2,0,0 +2016,2,5,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.2,8.3,46,99145,950,1407,340,701,791,166,83682,54061,19945,8032,320,1.5,0,0,2000,77777,0,999999999,22,0,0,88,0.2,0,0 +2016,2,5,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,21.6,6.2,37,98873,998,1407,344,747,795,182,89267,56357,21888,8837,51,2.3,0,0,2250,77777,9,999999999,18,0,0,88,0.2,0,0 +2016,2,5,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,4,29,98601,965,1407,348,720,792,176,85899,56525,21063,8457,310,3.1,0,0,2500,77777,0,999999999,14,0,0,88,0.2,0,0 +2016,2,5,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,4,29,98601,854,1407,348,618,780,144,73655,53095,17261,6829,310,3.6,0,0,2500,77777,0,999999999,14,0,0,88,0.2,0,0 +2016,2,5,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,3,27,98601,671,1407,347,456,767,89,54633,44898,10699,4116,320,4.1,0,0,2600,77777,0,999999999,13,0,0,88,0.2,0,0 +2016,2,5,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,3,27,98601,431,1407,347,250,477,104,28088,25426,11693,3852,320,3.6,0,0,3000,77777,0,999999999,13,0,0,88,0.2,0,0 +2016,2,5,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.4,5.3,35,98669,148,1407,342,50,148,34,5547,0,3822,1140,320,2.1,0,0,2000,77777,0,999999999,16,0,0,88,0.2,0,0 +2016,2,5,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,5,37,98574,0,680,335,0,0,0,0,0,0,0,310,2.6,0,0,3000,77777,0,999999999,16,0,0,88,0.2,0,0 +2016,2,5,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,6,45,98555,0,0,327,0,0,0,0,0,0,0,280,1.5,0,0,1800,77777,0,999999999,17,0,0,88,0.2,0,0 +2016,2,5,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,6,55,98527,0,0,314,0,0,0,0,0,0,0,68,0,0,0,1200,77777,0,999999999,17,0,0,88,0.2,0,0 +2016,2,5,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,6,59,98517,0,0,310,0,0,0,0,0,0,0,243,0,0,0,1200,77777,0,999999999,17,0,0,88,0.2,0,0 +2016,2,5,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,6,62,98507,0,0,305,0,0,0,0,0,0,0,295,0,0,0,1000,77777,0,999999999,17,0,0,88,0.2,0,0 +2016,2,5,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,12,7.9,76,98726,0,0,303,0,0,0,0,0,0,0,242,0,0,0,500,77777,0,999999999,21,0,0,88,0.2,0,0 +2016,2,6,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,7,71,98498,0,0,302,0,0,0,0,0,0,0,336,0,0,0,700,77777,0,999999999,19,0,0,88,0.2,0,0 +2016,2,6,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,6,71,98488,0,0,297,0,0,0,0,0,0,0,139,0,0,0,600,77777,0,999999999,17,0,0,88,0.2,0,0 +2016,2,6,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,7,82,98478,0,0,294,0,0,0,0,0,0,0,321,0,0,0,600,77777,0,999999999,19,0,0,88,0.2,0,0 +2016,2,6,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,7,82,98478,0,0,294,0,0,0,0,0,0,0,54,0,0,0,600,77777,0,999999999,19,0,0,88,0.2,0,0 +2016,2,6,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,9,7,87,98468,0,0,325,0,0,0,0,0,0,0,277,0,9,9,500,77777,0,999999999,19,0,0,88,0.2,0,0 +2016,2,6,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,8,5.3,83,98541,0,0,284,0,0,0,0,0,0,0,132,0,0,0,200,77777,0,999999999,16,0,0,88,0.2,0,0 +2016,2,6,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,6,87,98458,0,0,285,0,0,0,0,0,0,0,197,0,0,0,350,77777,0,999999999,18,0,0,88,0.2,0,0 +2016,2,6,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,6,87,98458,95,435,285,29,44,26,3149,0,2826,809,46,0,0,0,300,77777,0,999999999,18,0,0,88,0.2,0,0 +2016,2,6,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,10.6,9.4,92,98732,384,1406,299,210,486,77,23848,19267,8770,2948,217,0,0,0,200,77777,0,999999999,25,0,0,88,0.2,0,0 +2016,2,6,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,9,63,98536,635,1406,322,419,700,102,49216,40272,12075,4539,120,2.1,0,0,800,77777,0,999999999,23,0,0,88,0.2,0,0 +2016,2,6,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,8,46,98574,829,1406,339,592,832,101,72100,49971,12321,4963,140,4.6,0,0,1900,77777,0,999999999,21,0,0,88,0.2,0,0 +2016,2,6,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.6,8.3,40,98787,955,1406,351,706,791,168,84218,54183,20121,8107,140,2.6,0,0,2000,77777,0,999999999,22,0,0,88,0.2,0,0 +2016,2,6,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,6,35,98592,1003,1406,346,752,795,184,89849,56556,22094,8922,150,4.1,0,0,2500,77777,0,999999999,17,0,0,88,0.2,0,0 +2016,2,6,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,7,36,98601,970,1406,352,721,792,174,86073,55258,20824,8392,130,4.1,0,0,2500,77777,0,999999999,19,0,0,88,0.2,0,0 +2016,2,6,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24,7,34,98610,859,1406,356,620,780,143,73872,51906,17074,6781,120,4.1,0,0,2500,77777,0,999999999,19,0,0,88,0.2,0,0 +2016,2,6,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,6,31,98610,676,1406,355,458,765,89,54862,43955,10709,4132,120,5.1,0,0,2500,77777,0,999999999,17,0,0,88,0.2,0,0 +2016,2,6,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,6,33,98601,435,1406,350,252,484,102,28404,25164,11528,3830,150,4.1,0,0,2500,77777,0,999999999,17,0,0,88,0.2,0,0 +2016,2,6,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.2,10.2,53,98415,152,1406,342,52,154,35,5752,0,3914,1172,140,2.1,0,0,2000,77777,0,999999999,26,0,0,88,0.2,0,0 +2016,2,6,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,9,49,98574,0,699,340,0,0,0,0,0,0,0,110,2.6,0,0,2100,77777,0,999999999,23,0,0,88,0.2,0,0 +2016,2,6,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,10,59,98555,0,0,332,0,0,0,0,0,0,0,110,2.1,0,0,2100,77777,0,999999999,26,0,0,88,0.2,0,0 +2016,2,6,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,16.4,12.2,76,98525,0,0,344,0,0,0,0,0,0,0,203,0,4,4,2000,77777,0,999999999,32,0,0,88,0.2,0,0 +2016,2,6,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,16.4,11.9,75,98558,0,0,353,0,0,0,0,0,0,0,70,0.3,7,7,2000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,2,6,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,16.4,11.5,73,98590,0,0,349,0,0,0,0,0,0,0,299,0.7,6,6,2000,77777,9,999999999,30,0,0,88,0.2,0,0 +2016,2,6,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.4,11.2,71,98623,0,0,343,0,0,0,0,0,0,0,90,1,4,4,2000,77777,0,999999999,29,0,0,88,0.2,0,0 +2016,2,7,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,15.7,10.6,72,98575,0,0,344,0,0,0,0,0,0,0,135,1.5,6,6,1750,77777,9,999999999,27,0,0,88,0.2,0,0 +2016,2,7,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15,10,72,98527,0,0,337,0,0,0,0,0,0,0,80,2.1,5,5,1500,77777,0,999999999,26,0,0,88,0.2,0,0 +2016,2,7,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,11,80,98565,0,0,333,0,0,0,0,0,0,0,70,1.5,4,4,2000,77777,0,999999999,29,0,0,88,0.2,0,0 +2016,2,7,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,11,77,98527,0,0,345,0,0,0,0,0,0,0,80,2.6,7,7,1200,77777,0,999999999,29,0,0,88,0.2,0,0 +2016,2,7,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15,11,77,98527,0,0,338,0,0,0,0,0,0,0,100,3.1,5,5,1200,77777,0,999999999,29,0,0,88,0.2,0,0 +2016,2,7,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,14.4,8.7,69,98545,0,0,333,0,0,0,0,0,0,0,270,0,5,5,1000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,2,7,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15,11,77,98527,0,0,338,0,0,0,0,0,0,0,40,2.6,5,5,1200,77777,9,999999999,29,0,0,88,0.2,0,0 +2016,2,7,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,11,77,98527,99,451,358,15,0,15,1469,0,1479,551,30,2.6,9,9,1000,3048,9,999999999,29,0,0,88,0.2,0,0 +2016,2,7,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,10.9,76,98911,388,1406,358,110,13,106,12141,620,11793,3712,115,0,9,9,1000,3000,9,999999999,28,0,0,88,0.2,0,0 +2016,2,7,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,12,77,98536,639,1406,375,132,0,132,13346,0,13459,5592,20,3.1,10,10,1200,2438,9,999999999,32,0,0,88,0.2,0,0 +2016,2,7,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,13,77,98546,834,1406,381,186,5,183,21597,330,21368,8186,50,3.6,10,10,1200,2438,9,999999999,35,0,0,88,0.2,0,0 +2016,2,7,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.6,11.7,60,98954,960,1406,361,657,574,264,75580,45069,30599,11553,20,2.1,5,5,1000,2438,9,999999999,31,0,0,88,0.2,0,0 +2016,2,7,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19,11,60,98564,1008,1406,358,698,723,179,83456,48994,21499,8737,30,4.1,5,5,1500,2438,9,999999999,28,0,0,88,0.2,0,0 +2016,2,7,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,12,60,98574,975,1406,364,669,715,172,79824,47691,20655,8362,40,4.1,5,5,1800,3048,9,999999999,31,0,0,88,0.2,0,0 +2016,2,7,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,12,56,98583,864,1406,369,576,686,154,68122,44709,18309,7248,70,3.6,5,5,1800,3048,9,999999999,31,0,0,88,0.2,0,0 +2016,2,7,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21,11,53,98583,681,1406,362,452,742,92,53963,41072,11041,4268,20,4.1,3,3,1800,3048,9,999999999,28,0,0,88,0.2,0,0 +2016,2,7,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20,10,53,98574,440,1406,341,254,472,106,28502,24182,11965,3964,20,3.6,0,0,1700,3048,9,999999999,26,0,0,88,0.2,0,0 +2016,2,7,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.6,12.1,62,98769,156,1406,342,54,132,39,5947,0,4338,1277,20,2.6,0,0,2000,3048,9,999999999,32,0,0,88,0.2,0,0 +2016,2,7,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,11,64,98555,0,718,333,0,0,0,0,0,0,0,10,2.1,0,0,2200,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,2,7,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,11,64,98555,0,0,333,0,0,0,0,0,0,0,30,2.1,0,0,2500,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,2,7,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,15.4,12.1,81,98934,0,0,322,0,0,0,0,0,0,0,13,0,0,0,2000,77777,9,999999999,32,0,0,88,0.2,0,0 +2016,2,7,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,11,72,98536,0,0,324,0,0,0,0,0,0,0,350,2.1,0,0,2200,77777,9,999999999,29,0,0,88,0.2,0,0 +2016,2,7,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14.7,11.1,79,98769,0,0,344,0,0,0,0,0,0,0,180,1,7,7,2100,77777,9,999999999,29,0,0,88,0.2,0,0 +2016,2,7,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,13.4,11.1,86,99002,0,0,312,0,0,0,0,0,0,0,101,0,0,0,2000,77777,9,999999999,29,0,0,88,0.2,0,0 +2016,2,8,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,12.7,10.5,86,98963,0,0,339,0,0,0,0,0,0,0,202,0,8,8,1500,77777,9,999999999,27,0,0,88,0.2,0,0 +2016,2,8,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,12.1,10,87,98924,0,0,343,0,0,0,0,0,0,0,16,0,9,9,1000,77777,9,999999999,26,0,0,88,0.2,0,0 +2016,2,8,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,11.4,9.4,87,98886,0,0,302,0,0,0,0,0,0,0,230,0,0,0,500,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,2,8,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,10,100,98478,0,0,297,0,0,0,0,0,0,0,260,2.1,0,0,0,77777,0,999999999,26,0,0,88,0.2,0,0 +2016,2,8,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,9,100,98468,0,0,292,0,0,0,0,0,0,0,260,1.5,0,0,0,77777,0,999999999,24,0,0,88,0.2,0,0 +2016,2,8,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,9.4,8.6,95,98914,0,0,293,0,0,0,0,0,0,0,66,0,0,0,49,77777,0,999999999,23,0,0,88,0.2,0,0 +2016,2,8,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,9,9,100,98468,0,0,337,0,0,0,0,0,0,0,240,2.6,10,10,0,77777,0,999999999,24,0,0,88,0.2,0,0 +2016,2,8,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,9,9,100,98468,102,467,337,10,0,10,928,0,935,371,240,2.1,10,10,0,77777,0,999999999,24,0,0,88,0.2,0,0 +2016,2,8,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,9.6,9.2,97,99188,392,1405,340,68,0,68,6732,0,6785,2698,270,2.1,10,10,50,30,0,999999999,24,0,0,88,0.2,0,0 +2016,2,8,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,11,10,94,98488,643,1405,347,165,12,159,18713,804,18177,6442,280,2.1,10,10,500,30,0,999999999,26,0,0,88,0.2,0,0 +2016,2,8,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,8,59,98536,838,1405,337,583,638,202,67363,47540,23429,8829,300,2.6,4,4,1200,30,0,999999999,21,0,0,88,0.2,0,0 +2016,2,8,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.2,8.3,46,99213,964,1405,340,714,870,116,87768,53921,14316,5922,320,1.5,0,0,2000,30,0,999999999,22,0,0,88,0.2,0,0 +2016,2,8,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,7,38,98592,1013,1405,347,760,796,185,90812,56242,22272,9013,310,4.1,0,0,2800,77777,0,999999999,19,0,0,88,0.2,0,0 +2016,2,8,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,7,38,98592,980,1405,347,730,793,176,87172,55452,21142,8532,330,4.1,0,0,3500,77777,0,999999999,19,0,0,88,0.2,0,0 +2016,2,8,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.2,10.1,43,98948,868,1405,356,625,855,96,76791,49902,11844,4833,320,2.6,0,0,2000,77777,0,999999999,26,0,0,88,0.2,0,0 +2016,2,8,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,9,43,98592,686,1405,349,463,768,88,55624,42965,10612,4117,320,4.1,0,0,3500,77777,0,999999999,23,0,0,88,0.2,0,0 +2016,2,8,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,9,43,98592,444,1405,349,258,480,106,28991,24945,11944,3975,320,4.1,0,0,3500,77777,0,999999999,23,0,0,88,0.2,0,0 +2016,2,8,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.4,11.8,58,98884,161,1405,345,56,139,40,6188,0,4457,1313,320,2.1,0,0,2000,77777,0,999999999,31,0,0,88,0.2,0,0 +2016,2,8,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,11,56,98574,0,736,342,0,0,0,0,0,0,0,320,3.6,0,0,3000,77777,0,999999999,28,0,0,88,0.2,0,0 +2016,2,8,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,12,64,98564,0,0,339,0,0,0,0,0,0,0,320,2.6,0,0,2200,77777,0,999999999,31,0,0,88,0.2,0,0 +2016,2,8,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,16.8,10.6,67,98996,0,0,327,0,0,0,0,0,0,0,111,0,0,0,1000,77777,0,999999999,28,0,0,88,0.2,0,0 +2016,2,8,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,11,72,98536,0,0,324,0,0,0,0,0,0,0,290,1.5,0,0,1800,77777,0,999999999,29,0,0,88,0.2,0,0 +2016,2,8,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,11,82,98517,0,0,315,0,0,0,0,0,0,0,270,1.5,0,0,1400,77777,0,999999999,29,0,0,88,0.2,0,0 +2016,2,8,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,14.4,10.6,78,98963,0,0,316,0,0,0,0,0,0,0,285,0,0,0,1000,77777,0,999999999,28,0,0,88,0.2,0,0 +2016,2,9,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,11,88,98507,0,0,311,0,0,0,0,0,0,0,41,0,0,0,1000,77777,0,999999999,29,0,0,88,0.2,0,0 +2016,2,9,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,11,94,98498,0,0,306,0,0,0,0,0,0,0,202,0,0,0,800,77777,0,999999999,29,0,0,88,0.2,0,0 +2016,2,9,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,13,10.7,86,98794,0,0,310,0,0,0,0,0,0,0,49,0,0,0,500,77777,0,999999999,28,0,0,88,0.2,0,0 +2016,2,9,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,11,100,98488,0,0,302,0,0,0,0,0,0,0,250,2.1,0,0,400,77777,0,999999999,29,0,0,88,0.2,0,0 +2016,2,9,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,11,100,98488,0,0,302,0,0,0,0,0,0,0,240,1.5,0,0,50,77777,0,999999999,29,0,0,88,0.2,0,0 +2016,2,9,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10.2,10.2,100,98689,0,0,298,0,0,0,0,0,0,0,50,0,0,0,49,30,0,999999999,27,0,0,88,0.2,0,0 +2016,2,9,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,8,8,100,98458,0,0,331,0,0,0,0,0,0,0,270,1.5,10,10,50,77777,0,999999999,21,0,0,88,0.2,0,0 +2016,2,9,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,8,8,100,98458,106,483,331,10,0,10,964,0,971,386,260,1.5,10,10,0,77777,0,999999999,21,0,0,88,0.2,0,0 +2016,2,9,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,10.6,10.2,97,98985,396,1405,346,69,0,69,6820,0,6873,2737,270,1.5,10,10,200,77777,0,999999999,27,0,0,88,0.2,0,0 +2016,2,9,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,11,100,98488,648,1405,302,428,573,164,48561,38922,18659,6597,260,2.6,0,0,250,77777,0,999999999,29,0,0,88,0.2,0,0 +2016,2,9,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,11,82,98517,843,1405,315,601,832,101,73240,48618,12362,5006,280,3.1,0,0,700,77777,0,999999999,29,0,0,88,0.2,0,0 +2016,2,9,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.2,10.4,60,99029,969,1405,333,716,791,169,85512,53279,20274,8205,290,1.5,0,0,1000,77777,0,999999999,27,0,0,88,0.2,0,0 +2016,2,9,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,10,49,98583,1018,1405,346,760,796,183,90937,54696,21991,8934,300,3.6,0,0,2100,77777,0,999999999,26,0,0,88,0.2,0,0 +2016,2,9,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,9,43,98592,985,1405,349,732,793,175,87461,54504,21030,8510,300,3.6,0,0,2300,77777,0,999999999,23,0,0,88,0.2,0,0 +2016,2,9,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.6,11.1,45,98718,873,1405,359,629,854,97,77191,49425,11928,4875,290,2.6,0,0,2000,77777,0,999999999,29,0,0,88,0.2,0,0 +2016,2,9,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,10,44,98601,691,1405,355,467,771,87,56099,42660,10534,4097,300,4.1,0,0,2800,77777,0,999999999,26,0,0,88,0.2,0,0 +2016,2,9,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,10,44,98601,449,1405,355,261,478,108,29328,24967,12186,4055,280,4.1,0,0,3000,77777,0,999999999,26,0,0,88,0.2,0,0 +2016,2,9,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.6,10.3,49,98583,165,1405,349,59,147,41,6470,0,4582,1351,270,2.1,0,0,2000,77777,0,999999999,26,0,0,88,0.2,0,0 +2016,2,9,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,11,60,98564,0,754,338,0,0,0,0,0,0,0,270,2.1,0,0,2500,77777,0,999999999,28,0,0,88,0.2,0,0 +2016,2,9,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,11,64,98555,0,0,333,0,0,0,0,0,0,0,280,1.5,0,0,1800,77777,0,999999999,28,0,0,88,0.2,0,0 +2016,2,9,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,16.2,11.4,73,98718,0,0,325,0,0,0,0,0,0,0,117,0,0,0,1000,77777,0,999999999,30,0,0,88,0.2,0,0 +2016,2,9,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,11,72,98536,0,0,324,0,0,0,0,0,0,0,157,0,0,0,800,77777,0,999999999,29,0,0,88,0.2,0,0 +2016,2,9,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,11,77,98527,0,0,319,0,0,0,0,0,0,0,231,0,0,0,600,77777,0,999999999,29,0,0,88,0.2,0,0 +2016,2,9,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,13.2,10,81,98738,0,0,310,0,0,0,0,0,0,0,303,0,0,0,500,77777,0,999999999,26,0,0,88,0.2,0,0 +2016,2,10,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,10,82,98507,0,0,310,0,0,0,0,0,0,0,148,0,0,0,500,77777,0,999999999,26,0,0,88,0.2,0,0 +2016,2,10,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,10,82,98507,0,0,310,0,0,0,0,0,0,0,166,0,0,0,500,77777,0,999999999,26,0,0,88,0.2,0,0 +2016,2,10,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,11.6,10.8,95,98547,0,0,304,0,0,0,0,0,0,0,29,0,0,0,200,77777,0,999999999,28,0,0,88,0.2,0,0 +2016,2,10,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,10,94,98488,0,0,301,0,0,0,0,0,0,0,106,0,0,0,250,77777,0,999999999,26,0,0,88,0.2,0,0 +2016,2,10,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,11,9,87,98488,0,0,337,0,0,0,0,0,0,0,119,0,9,9,100,77777,0,999999999,24,0,0,88,0.2,0,0 +2016,2,10,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,10.6,9.8,95,98518,0,0,345,0,0,0,0,0,0,0,41,0,10,10,50,30,0,999999999,26,0,0,88,0.2,0,0 +2016,2,10,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,10,10,100,98478,0,0,343,0,0,0,0,0,0,0,73,0,10,10,50,30,0,999999999,26,0,0,88,0.2,0,0 +2016,2,10,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9,9,100,98468,110,500,292,33,74,27,3607,0,2969,872,250,1.5,0,0,50,30,0,999999999,24,0,0,88,0.2,0,0 +2016,2,10,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.2,9.4,95,98806,400,1404,297,222,500,79,25273,20812,9040,3065,270,2.1,0,0,50,30,0,999999999,25,0,0,88,0.2,0,0 +2016,2,10,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,9,72,98517,652,1404,313,433,705,106,50996,41222,12459,4708,260,2.1,0,0,1000,77777,0,999999999,23,0,0,88,0.2,0,0 +2016,2,10,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,9,59,98546,848,1404,326,607,848,95,74497,49802,11646,4729,280,2.1,0,0,1200,77777,0,999999999,23,0,0,88,0.2,0,0 +2016,2,10,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.6,11.6,53,98817,974,1404,350,719,792,169,85879,52626,20254,8215,250,2.1,0,0,1000,77777,0,999999999,30,0,0,88,0.2,0,0 +2016,2,10,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,9,41,98601,1023,1404,354,766,796,186,91642,55354,22304,9055,290,2.6,0,0,1500,77777,0,999999999,23,0,0,88,0.2,0,0 +2016,2,10,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,7,34,98610,990,1404,356,739,793,179,88291,55650,21478,8677,290,2.1,0,0,2200,77777,0,999999999,19,0,0,88,0.2,0,0 +2016,2,10,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23,9.6,43,98450,878,1404,355,635,858,97,78023,50469,11958,4889,290,1.5,0,0,2000,77777,0,999999999,25,0,0,88,0.2,0,0 +2016,2,10,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,6,30,98619,695,1404,360,474,773,91,56939,44908,10969,4257,290,2.6,0,0,2800,77777,0,999999999,17,0,0,88,0.2,0,0 +2016,2,10,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,5,28,98619,453,1404,359,267,496,106,30111,27034,12052,4031,280,2.1,0,0,3000,77777,0,999999999,15,0,0,88,0.2,0,0 +2016,2,10,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.4,8.5,41,98338,169,1404,351,61,154,43,6736,0,4700,1387,290,1,0,0,2000,77777,0,999999999,22,0,0,88,0.2,0,0 +2016,2,10,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,5,31,98601,0,773,349,0,0,0,0,0,0,0,280,1.5,0,0,3200,77777,0,999999999,16,0,0,88,0.2,0,0 +2016,2,10,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,10,53,98574,0,0,341,0,0,0,0,0,0,0,100,1,0,0,3000,77777,0,999999999,26,0,0,88,0.2,0,0 +2016,2,10,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,16.6,10.2,66,98381,0,0,326,0,0,0,0,0,0,0,304,0,0,0,2000,77777,0,999999999,26,0,0,88,0.2,0,0 +2016,2,10,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,8,49,98564,0,0,334,0,0,0,0,0,0,0,120,2.1,0,0,1800,77777,0,999999999,21,0,0,88,0.2,0,0 +2016,2,10,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,8,59,98536,0,0,321,0,0,0,0,0,0,0,120,1.5,0,0,1600,77777,0,999999999,21,0,0,88,0.2,0,0 +2016,2,10,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,14,9.3,73,98396,0,0,313,0,0,0,0,0,0,0,215,0,0,0,1000,77777,0,999999999,24,0,0,88,0.2,0,0 +2016,2,11,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,9,67,98527,0,0,317,0,0,0,0,0,0,0,100,2.1,0,0,1500,77777,0,999999999,23,0,0,88,0.2,0,0 +2016,2,11,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,9,77,98507,0,0,309,0,0,0,0,0,0,0,100,2.1,0,0,1500,77777,0,999999999,24,0,0,88,0.2,0,0 +2016,2,11,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.4,8,70,98511,0,0,309,0,0,0,0,0,0,0,110,1.5,0,0,1000,77777,0,999999999,21,0,0,88,0.2,0,0 +2016,2,11,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,9,77,98507,0,0,309,0,0,0,0,0,0,0,140,4.1,0,0,2500,77777,0,999999999,24,0,0,88,0.2,0,0 +2016,2,11,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,9,77,98507,0,0,309,0,0,0,0,0,0,0,140,4.1,0,0,2500,77777,0,999999999,24,0,0,88,0.2,0,0 +2016,2,11,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.4,9.3,76,98234,0,0,311,0,0,0,0,0,0,0,140,2.1,0,0,1000,77777,9,999999999,24,0,0,88,0.2,0,0 +2016,2,11,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,9,77,98507,0,0,322,0,0,0,0,0,0,0,140,4.1,3,3,1800,77777,9,999999999,24,0,0,88,0.2,0,0 +2016,2,11,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14,10,77,98517,114,517,333,31,44,28,3470,0,3083,905,130,4.1,5,5,1500,77777,9,999999999,26,0,0,88,0.2,0,0 +2016,2,11,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.1,80,98532,405,1404,342,209,423,87,23592,17958,9820,3295,180,2.1,5,5,1000,77777,9,999999999,32,0,0,88,0.2,0,0 +2016,2,11,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18,9,56,98555,657,1404,350,407,569,140,46888,36960,16243,5937,140,5.1,5,5,2200,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,2,11,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20,9,49,98574,853,1404,360,570,696,146,67622,45917,17452,6911,150,5.1,5,5,2500,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,2,11,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,10,44,98536,979,1404,375,675,702,184,80239,48706,22020,8857,140,3.1,5,5,2000,77777,9,999999999,26,0,0,88,0.2,0,0 +2016,2,11,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23,8,38,98601,1028,1404,368,762,854,136,93467,54845,16706,6942,170,2.6,3,3,3000,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,2,11,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25,3,24,98619,995,1404,356,748,793,185,89389,57554,22227,8948,270,3.1,0,0,3000,77777,9,999999999,13,0,0,88,0.2,0,0 +2016,2,11,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.8,2.3,22,98349,883,1404,359,647,782,154,77080,54650,18436,7320,270,2.1,0,0,2000,77777,9,999999999,12,0,0,88,0.2,0,0 +2016,2,11,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,-1,17,98628,700,1404,356,484,782,94,58172,47782,11282,4370,280,2.6,0,0,4000,77777,9,999999999,8,0,0,88,0.2,0,0 +2016,2,11,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,0,19,98619,458,1404,353,273,497,111,30780,28588,12528,4165,250,2.1,0,0,4000,77777,9,999999999,9,0,0,88,0.2,0,0 +2016,2,11,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.6,4.2,28,98378,173,1404,351,64,166,43,7065,4,4813,1420,270,1.5,0,0,4000,77777,9,999999999,14,0,0,88,0.2,0,0 +2016,2,11,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,3,30,98583,0,791,338,0,0,0,0,0,0,0,278,3.1,0,0,3500,77777,9,999999999,13,0,0,88,0.2,0,0 +2016,2,11,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,3,30,98583,0,0,338,0,0,0,0,0,0,0,30,2.1,0,0,3200,77777,9,999999999,13,0,0,88,0.2,0,0 +2016,2,11,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,18,10.6,62,98570,0,0,332,0,0,0,0,0,0,0,66,0,0,0,2000,77777,9,999999999,27,0,0,88,0.2,0,0 +2016,2,11,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,7,46,98564,0,0,333,0,0,0,0,0,0,0,43,0,0,0,1800,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,2,11,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,6,45,98555,0,0,327,0,0,0,0,0,0,0,173,0,0,0,1800,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,2,11,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,15.8,8.3,61,98675,0,0,320,0,0,0,0,0,0,0,231,0,0,0,2000,77777,9,999999999,22,0,0,88,0.2,0,0 +2016,2,12,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,6,51,98536,0,0,318,0,0,0,0,0,0,0,70,2.1,0,0,2200,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,2,12,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,6,55,98527,0,0,314,0,0,0,0,0,0,0,40,2.1,0,0,2200,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,2,12,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,14.4,8,65,98574,0,0,314,0,0,0,0,0,0,0,228,0,0,0,2000,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,2,12,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,6,59,98517,0,0,310,0,0,0,0,0,0,0,40,2.1,0,0,2200,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,2,12,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,6,59,98517,0,0,310,0,0,0,0,0,0,0,40,1.5,0,0,2200,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,2,12,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,10.8,9.2,90,98569,0,0,299,0,0,0,0,0,0,0,79,0,0,0,2000,77777,9,999999999,24,0,0,88,0.2,0,0 +2016,2,12,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,7,76,98488,0,0,298,0,0,0,0,0,0,0,324,0,0,0,2000,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,2,12,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,7,82,98478,118,534,294,35,76,29,3868,0,3168,932,250,2.1,0,0,1300,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,2,12,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,11.8,8.1,78,98676,409,1403,303,229,512,80,26144,22072,9134,3112,158,0,0,0,500,77777,9,999999999,22,0,0,88,0.2,0,0 +2016,2,12,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,8,63,98527,661,1403,316,442,709,108,52051,42190,12711,4813,322,0,0,0,1200,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,2,12,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,9,49,98574,857,1403,340,616,851,95,75627,50088,11757,4785,300,2.1,0,0,2000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,2,12,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,10.9,47,98740,984,1403,355,729,792,172,87086,53266,20682,8392,320,1.5,0,0,2000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,2,12,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,7,34,98610,1033,1403,356,778,796,191,93069,56585,22947,9304,290,2.1,0,0,2000,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,2,12,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,3,24,98619,1000,1403,356,753,867,134,92212,57522,16500,6816,260,3.1,0,0,2200,77777,9,999999999,13,0,0,88,0.2,0,0 +2016,2,12,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,26,5.9,28,98438,888,1403,386,602,650,190,70587,47663,22414,8704,156,0,5,5,2000,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,2,12,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26,3,23,98628,705,1403,383,451,637,130,52841,42200,15344,5791,250,3.6,5,5,2200,77777,9,999999999,13,0,0,88,0.2,0,0 +2016,2,12,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25,4,26,98619,462,1403,379,255,455,105,28916,25021,11973,4042,270,2.6,5,5,2500,77777,9,999999999,14,0,0,88,0.2,0,0 +2016,2,12,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.2,4.8,30,98355,177,1403,371,62,97,49,6738,416,5417,1555,290,1.5,5,5,2000,77777,9,999999999,15,0,0,88,0.2,0,0 +2016,2,12,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23,4,29,98601,0,809,369,0,0,0,0,0,0,0,320,2.6,5,5,2500,77777,9,999999999,14,0,0,88,0.2,0,0 +2016,2,12,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20,7,43,98574,0,0,358,0,0,0,0,0,0,0,40,1.5,5,5,2500,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,2,12,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,17.8,10.3,61,98500,0,0,331,0,0,0,0,0,0,0,141,0,0,0,2000,77777,9,999999999,27,0,0,88,0.2,0,0 +2016,2,12,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,7,46,98564,0,0,333,0,0,0,0,0,0,0,20,2.1,0,0,2500,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,2,12,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,7,46,98564,0,0,333,0,0,0,0,0,0,0,30,3.1,0,0,2500,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,2,12,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,17.6,8.7,56,98576,0,0,329,0,0,0,0,0,0,0,55,0,0,0,2000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,2,13,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,7,52,98546,0,0,324,0,0,0,0,0,0,0,50,2.6,0,0,2500,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,2,13,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,8,59,98536,0,0,321,0,0,0,0,0,0,0,40,1.5,0,0,2500,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,2,13,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.4,9.6,68,98487,0,0,320,0,0,0,0,0,0,0,90,2.1,0,0,2000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,2,13,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,7,55,98536,0,0,320,0,0,0,0,0,0,0,90,1.5,0,0,2500,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,2,13,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,7,59,98527,0,0,315,0,0,0,0,0,0,0,100,2.1,0,0,2500,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,2,13,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15.2,6.6,56,98553,0,0,334,0,0,0,0,0,0,0,270,2.6,5,5,2000,3000,9,999999999,18,0,0,88,0.2,0,0 +2016,2,13,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,6,59,98517,0,0,328,0,0,0,0,0,0,0,320,2.6,5,5,2500,3048,9,999999999,17,0,0,88,0.2,0,0 +2016,2,13,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,6,55,98527,122,552,333,34,47,30,3736,0,3294,968,50,2.1,5,5,2500,3048,9,999999999,17,0,0,88,0.2,0,0 +2016,2,13,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15.2,7.6,60,98679,414,1403,336,217,404,98,24373,19719,11020,3631,156,0,5,5,2000,3000,9,999999999,20,0,0,88,0.2,0,0 +2016,2,13,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,5,40,98564,666,1403,350,418,497,181,47274,36888,20613,7196,50,2.6,5,5,2200,3048,9,999999999,16,0,0,88,0.2,0,0 +2016,2,13,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,6,45,98555,862,1403,367,322,61,284,36388,5318,32302,11363,340,4.6,9,9,2200,1219,9,999999999,17,0,0,88,0.2,0,0 +2016,2,13,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18.6,7.7,49,98955,989,1403,373,380,83,322,43404,7195,36981,13445,50,2.1,9,9,2000,3000,9,999999999,21,0,0,88,0.2,0,0 +2016,2,13,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,5,37,98574,1038,1403,355,731,611,278,85033,50058,32495,12470,40,5.7,5,5,2200,3048,9,999999999,16,0,0,88,0.2,0,0 +2016,2,13,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,5,37,98574,1005,1403,355,703,740,172,84481,51799,20721,8431,50,5.1,5,5,2200,3048,9,999999999,16,0,0,88,0.2,0,0 +2016,2,13,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.4,8,40,98688,893,1403,371,604,708,153,72023,47600,18314,7315,50,2.6,5,5,2000,3048,9,999999999,21,0,0,88,0.2,0,0 +2016,2,13,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,6,38,98583,710,1403,361,453,634,132,52976,41329,15479,5855,40,4.1,5,5,3500,3048,9,999999999,17,0,0,88,0.2,0,0 +2016,2,13,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,7,43,98574,467,1403,358,257,466,102,29222,24752,11631,3969,30,4.6,5,5,3500,3048,9,999999999,19,0,0,88,0.2,0,0 +2016,2,13,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.6,9,50,98740,182,1403,338,68,174,46,7511,107,5036,1494,50,1.5,0,0,2000,3048,9,999999999,23,0,0,88,0.2,0,0 +2016,2,13,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,7,49,98555,0,826,329,0,0,0,0,0,0,0,30,3.6,0,0,3500,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,2,13,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,9,59,98546,0,0,326,0,0,0,0,0,0,0,30,2.6,0,0,3000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,2,13,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,9.4,67,98897,0,0,320,0,0,0,0,0,0,0,200,2.6,0,0,2000,77777,9,999999999,24,0,0,88,0.2,0,0 +2016,2,13,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,10,72,98527,0,0,318,0,0,0,0,0,0,0,40,1.5,0,0,3000,77777,9,999999999,26,0,0,88,0.2,0,0 +2016,2,13,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,10,72,98527,0,0,318,0,0,0,0,0,0,0,50,1.5,0,0,3000,77777,9,999999999,26,0,0,88,0.2,0,0 +2016,2,13,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,12.6,10.7,88,98917,0,0,309,0,0,0,0,0,0,0,7,0,0,0,2000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,2,14,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,10,82,98507,0,0,310,0,0,0,0,0,0,0,270,2.6,0,0,1600,77777,9,999999999,26,0,0,88,0.2,0,0 +2016,2,14,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,10,88,98498,0,0,305,0,0,0,0,0,0,0,280,2.1,0,0,500,77777,0,999999999,26,0,0,88,0.2,0,0 +2016,2,14,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,11.2,9.6,90,98884,0,0,301,0,0,0,0,0,0,0,144,0,0,0,500,77777,0,999999999,25,0,0,88,0.2,0,0 +2016,2,14,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,10,88,98498,0,0,305,0,0,0,0,0,0,0,290,1.5,0,0,600,77777,0,999999999,26,0,0,88,0.2,0,0 +2016,2,14,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,9,87,98488,0,0,300,0,0,0,0,0,0,0,330,1.5,0,0,700,77777,0,999999999,24,0,0,88,0.2,0,0 +2016,2,14,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,10.4,8.8,90,98885,0,0,297,0,0,0,0,0,0,0,249,0,0,0,500,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,2,14,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,9,87,98488,0,0,300,0,0,0,0,0,0,0,320,1.5,0,0,600,77777,9,999999999,24,0,0,88,0.2,0,0 +2016,2,14,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,8,82,98488,127,571,299,38,88,30,4235,0,3369,994,290,2.1,0,0,600,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,2,14,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,11.4,8.6,83,99061,418,1402,301,236,503,86,26849,22789,9802,3324,209,0,0,0,500,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,2,14,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,8,67,98517,671,1402,312,451,714,108,53114,42723,12824,4873,280,3.1,0,0,700,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,2,14,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,8,59,98536,867,1402,321,626,840,106,76433,51120,12934,5256,290,3.1,0,0,1200,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,2,14,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.8,7.7,43,99131,994,1402,342,742,792,179,88681,55288,21501,8701,320,1,0,0,2000,77777,9,999999999,20,0,0,88,0.2,0,0 +2016,2,14,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,7,40,98583,1043,1402,342,787,797,194,94225,56756,23302,9454,330,4.1,0,0,2800,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,2,14,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,7,36,98601,1010,1402,352,757,794,184,90555,56030,22165,8974,330,4.6,0,0,3500,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,2,14,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24,8.3,37,98887,898,1402,358,654,783,152,78005,52339,18160,7273,320,1.5,0,0,2000,77777,9,999999999,22,0,0,88,0.2,0,0 +2016,2,14,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,7,36,98601,714,1402,352,490,779,92,58952,45355,11145,4354,290,4.1,0,0,3500,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,2,14,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,7,36,98601,471,1402,352,280,512,108,31713,28064,12272,4157,300,4.6,0,0,3500,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,2,14,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,8.7,42,98842,186,1402,350,71,182,46,7790,382,5142,1528,320,3.1,0,0,2000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,2,14,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,9,46,98583,0,844,345,0,0,0,0,0,0,0,320,3.1,0,0,3500,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,2,14,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,9,52,98564,0,0,335,0,0,0,0,0,0,0,320,2.6,0,0,3200,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,2,14,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,17.2,9.1,59,98971,0,0,327,0,0,0,0,0,0,0,51,0,0,0,2000,77777,9,999999999,24,0,0,88,0.2,0,0 +2016,2,14,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18,10,59,98555,0,0,349,0,0,0,0,0,0,0,300,2.1,4,4,2000,77777,9,999999999,26,0,0,88,0.2,0,0 +2016,2,14,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,10,63,98546,0,0,347,0,0,0,0,0,0,0,330,1.5,5,5,1500,77777,9,999999999,26,0,0,88,0.2,0,0 +2016,2,14,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,14.4,9.8,74,99080,0,0,316,0,0,0,0,0,0,0,163,0,0,0,2000,77777,9,999999999,26,0,0,88,0.2,0,0 +2016,2,15,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,10,68,98536,0,0,342,0,0,0,0,0,0,0,320,2.1,5,5,1100,77777,9,999999999,26,0,0,88,0.2,0,0 +2016,2,15,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,10,68,98536,0,0,342,0,0,0,0,0,0,0,330,2.6,5,5,1500,77777,9,999999999,26,0,0,88,0.2,0,0 +2016,2,15,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14,9.3,73,99134,0,0,313,0,0,0,0,0,0,0,320,1.5,0,0,1000,77777,9,999999999,24,0,0,88,0.2,0,0 +2016,2,15,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,10,72,98527,0,0,318,0,0,0,0,0,0,0,350,1.5,0,0,2200,77777,9,999999999,26,0,0,88,0.2,0,0 +2016,2,15,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,10,72,98527,0,0,318,0,0,0,0,0,0,0,188,0,0,0,2200,77777,9,999999999,26,0,0,88,0.2,0,0 +2016,2,15,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,12.4,9.7,84,99002,0,0,307,0,0,0,0,0,0,0,227,0,0,0,2000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,2,15,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,10,82,98507,0,0,310,0,0,0,0,0,0,0,226,0,0,0,1800,77777,9,999999999,26,0,0,88,0.2,0,0 +2016,2,15,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,10,82,98507,131,590,328,37,62,32,4131,0,3504,1035,181,0,5,5,1200,3048,9,999999999,26,0,0,88,0.2,0,0 +2016,2,15,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.6,9,79,99082,423,1401,325,223,407,100,25045,20058,11286,3733,270,2.1,5,5,500,3048,9,999999999,24,0,0,88,0.2,0,0 +2016,2,15,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,10,72,98527,676,1401,337,422,598,133,48913,37744,15461,5762,280,1.5,5,5,900,3048,9,999999999,26,0,0,88,0.2,0,0 +2016,2,15,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,9,52,98564,872,1401,355,586,698,151,69634,46418,17971,7147,310,2.6,5,5,1200,3048,9,999999999,23,0,0,88,0.2,0,0 +2016,2,15,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.2,10.7,54,99281,999,1401,363,691,718,178,82578,48768,21406,8690,320,2.1,5,5,1000,3048,9,999999999,28,0,0,88,0.2,0,0 +2016,2,15,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,8,43,98583,1048,1401,364,736,731,188,88285,51196,22650,9232,340,2.6,5,5,2200,3048,9,999999999,21,0,0,88,0.2,0,0 +2016,2,15,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,7,40,98583,1015,1401,363,709,731,179,85034,51030,21520,8752,330,2.6,5,5,2500,3048,9,999999999,19,0,0,88,0.2,0,0 +2016,2,15,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23,6.7,35,99102,903,1401,372,614,713,154,73274,48432,18449,7385,320,2.1,5,5,2000,3048,9,999999999,18,0,0,88,0.2,0,0 +2016,2,15,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,5,33,98592,719,1401,365,461,638,133,54021,42098,15667,5943,310,3.6,5,5,3000,3048,9,999999999,16,0,0,88,0.2,0,0 +2016,2,15,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,6,35,98592,476,1401,366,264,458,109,29943,25495,12357,4195,320,2.6,5,5,3000,3048,9,999999999,17,0,0,88,0.2,0,0 +2016,2,15,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,7,40,98583,190,1401,363,68,108,53,7431,843,5855,1684,310,2.6,5,5,3000,3048,9,999999999,19,0,0,88,0.2,0,0 +2016,2,15,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,19.5,7,44,98569,0,861,342,0,0,0,0,0,0,0,143,2.6,1,1,2750,3048,9,999999999,19,0,0,88,0.2,0,0 +2016,2,15,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,7,49,98555,0,0,348,0,0,0,0,0,0,0,310,2.6,5,5,2500,3048,9,999999999,19,0,0,88,0.2,0,0 +2016,2,15,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,17,7.3,53,98546,0,0,338,0,0,0,0,0,0,0,20,2.4,3,3,2166,3048,9,999999999,20,0,0,88,0.2,0,0 +2016,2,15,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,16,7.7,58,98536,0,0,337,0,0,0,0,0,0,0,254,2.3,4,4,1833,3048,9,999999999,21,0,0,88,0.2,0,0 +2016,2,15,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,8,63,98527,0,0,335,0,0,0,0,0,0,0,300,2.1,5,5,1500,3048,9,999999999,21,0,0,88,0.2,0,0 +2016,2,15,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,14.6,9.1,70,99247,0,0,334,0,0,0,0,0,0,0,169,0,5,5,1000,3048,9,999999999,24,0,0,88,0.2,0,0 +2016,2,16,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15,8,63,98527,0,0,330,0,0,0,0,0,0,0,330,2.6,3,3,1500,3048,9,999999999,21,0,0,88,0.2,0,0 +2016,2,16,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14.2,8.1,67,98823,0,0,331,0,0,0,0,0,0,0,78,1.3,5,5,1250,3048,9,999999999,22,0,0,88,0.2,0,0 +2016,2,16,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,13.4,8.2,71,99119,0,0,309,0,0,0,0,0,0,0,352,0,0,0,1000,3048,9,999999999,22,0,0,88,0.2,0,0 +2016,2,16,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,13,8,72,98507,0,0,308,0,0,0,0,0,0,0,5,0,0,0,1200,3048,9,999999999,21,0,0,88,0.2,0,0 +2016,2,16,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,8,72,98507,0,0,308,0,0,0,0,0,0,0,54,0,0,0,1200,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,2,16,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,10.8,7.5,80,99181,0,0,298,0,0,0,0,0,0,0,271,0,0,0,1000,77777,9,999999999,20,0,0,88,0.2,0,0 +2016,2,16,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,8,82,98488,0,0,299,0,0,0,0,0,0,0,300,2.6,0,0,1200,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,2,16,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,8,87,98478,135,609,295,43,107,32,4713,0,3572,1059,310,2.6,0,0,900,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,2,16,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,12.8,7.5,70,99308,428,1401,306,244,514,87,27786,24026,9928,3384,209,0,0,0,1000,77777,9,999999999,20,0,0,88,0.2,0,0 +2016,2,16,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,9,72,98517,681,1401,313,458,719,108,54085,42730,12846,4905,310,3.1,0,0,1000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,2,16,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,6,45,98555,877,1401,327,637,842,109,77797,52462,13360,5432,320,3.1,0,0,1400,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,2,16,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.8,5,36,99481,1005,1401,339,754,793,185,90192,56770,22229,8980,320,3.1,0,0,1000,77777,9,999999999,16,0,0,88,0.2,0,0 +2016,2,16,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,3,29,98592,1053,1401,342,802,797,202,95946,58718,24255,9807,340,3.6,0,0,2200,77777,9,999999999,13,0,0,88,0.2,0,0 +2016,2,16,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,3,27,98601,1020,1401,347,771,794,192,92224,57996,23081,9316,320,3.6,0,0,2700,77777,9,999999999,13,0,0,88,0.2,0,0 +2016,2,16,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,3,25,99164,908,1401,353,668,845,120,81441,54884,14696,5987,320,1.5,0,0,2000,77777,9,999999999,13,0,0,88,0.2,0,0 +2016,2,16,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24,3,25,98610,724,1401,367,495,762,101,59332,46798,12147,4729,330,3.6,3,3,3000,77777,9,999999999,13,0,0,88,0.2,0,0 +2016,2,16,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,3,25,98610,480,1401,352,289,513,113,32728,29855,12847,4337,320,2.6,0,0,3000,77777,9,999999999,13,0,0,88,0.2,0,0 +2016,2,16,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,6,35,99144,194,1401,347,76,197,48,8359,1174,5354,1596,320,1.5,0,0,2000,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,2,16,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,7,40,98583,0,878,342,0,0,0,0,0,0,0,320,3.1,0,0,3000,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,2,16,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,8,46,98574,0,0,339,0,0,0,0,0,0,0,320,2.6,0,0,2500,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,2,16,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.4,8.1,58,99206,0,0,323,0,0,0,0,0,0,0,320,3.1,0,0,2000,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,2,16,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,7,52,98546,0,0,324,0,0,0,0,0,0,0,330,2.6,0,0,2200,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,2,16,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,7,52,98546,0,0,324,0,0,0,0,0,0,0,330,2.1,0,0,2200,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,2,16,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.2,9,66,99302,0,0,318,0,0,0,0,0,0,0,340,3.1,0,0,2000,77777,9,999999999,24,0,0,88,0.2,0,0 +2016,2,17,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,7,55,98536,0,0,320,0,0,0,0,0,0,0,360,2.1,0,0,2500,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,2,17,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,7,55,98536,0,0,320,0,0,0,0,0,0,0,340,2.6,0,0,2500,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,2,17,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,14.4,8.9,70,99129,0,0,315,0,0,0,0,0,0,0,172,0,0,0,2000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,2,17,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,6,59,98517,0,0,310,0,0,0,0,0,0,0,330,1.5,0,0,2500,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,2,17,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,7,63,98517,0,0,311,0,0,0,0,0,0,0,330,2.6,0,0,2500,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,2,17,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,13,8.2,73,99115,0,0,308,0,0,0,0,0,0,0,170,0,0,0,2000,77777,9,999999999,22,0,0,88,0.2,0,0 +2016,2,17,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,6,62,98507,0,0,305,0,0,0,0,0,0,0,202,0,0,0,1800,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,2,17,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,7,76,98488,140,629,298,45,117,33,4966,0,3679,1092,300,1.5,0,0,1400,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,2,17,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,7.7,74,99360,432,1400,304,247,516,88,28189,24371,10037,3428,320,2.1,0,0,1000,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,2,17,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,6,48,98546,686,1400,323,465,716,114,54777,44342,13473,5125,340,2.6,0,0,1700,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,2,17,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18,7,49,98555,883,1400,348,596,687,163,70625,47457,19369,7663,300,2.6,5,5,1800,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,2,17,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,21.4,6.5,38,99457,1010,1400,364,705,731,177,84556,51089,21305,8662,236,0,5,5,1000,77777,9,999999999,18,0,0,88,0.2,0,0 +2016,2,17,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,6,35,98592,1058,1400,366,747,738,188,89823,52294,22731,9275,270,2.1,5,5,1800,3048,9,999999999,17,0,0,88,0.2,0,0 +2016,2,17,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,5,29,98610,1025,1400,375,720,705,203,85697,51756,24286,9760,300,2.1,5,5,2100,3048,9,999999999,15,0,0,88,0.2,0,0 +2016,2,17,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.8,5,26,99166,913,1400,378,662,823,125,80424,53308,15232,6205,320,1.5,3,3,2000,3048,9,999999999,16,0,0,88,0.2,0,0 +2016,2,17,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25,3,24,98619,728,1400,372,499,762,102,59802,46982,12251,4776,340,3.1,3,3,2500,3048,9,999999999,13,0,0,88,0.2,0,0 +2016,2,17,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25,5,28,98619,484,1400,374,288,498,115,32529,28934,13073,4415,330,3.6,3,3,2500,3048,9,999999999,15,0,0,88,0.2,0,0 +2016,2,17,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.8,9,39,99032,198,1400,358,77,199,49,8553,1145,5465,1634,320,1,0,0,2000,3048,9,999999999,23,0,0,88,0.2,0,0 +2016,2,17,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,8,43,98583,0,895,343,0,0,0,0,0,0,0,320,3.1,0,0,2500,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,2,17,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,10,49,98583,0,0,366,0,0,0,0,0,0,0,330,2.6,5,5,2500,3048,9,999999999,26,0,0,88,0.2,0,0 +2016,2,17,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,20,10.4,54,99045,0,0,362,0,0,0,0,0,0,0,238,0,5,5,2000,3048,9,999999999,27,0,0,88,0.2,0,0 +2016,2,17,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20,10,53,98574,0,0,383,0,0,0,0,0,0,0,330,1.5,9,9,1600,3048,9,999999999,26,0,0,88,0.2,0,0 +2016,2,17,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,10,56,98564,0,0,378,0,0,0,0,0,0,0,290,4.6,9,9,1600,3048,9,999999999,26,0,0,88,0.2,0,0 +2016,2,17,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18.2,12.5,69,99068,0,0,376,0,0,0,0,0,0,0,90,2.1,9,9,1000,3000,9,999999999,33,0,0,88,0.2,0,0 +2016,2,18,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,10,59,98555,0,0,372,0,0,0,0,0,0,0,310,4.1,9,9,2000,3048,9,999999999,26,0,0,88,0.2,0,0 +2016,2,18,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,11,68,98546,0,0,368,0,0,0,0,0,0,0,310,4.6,9,9,2000,3048,9,999999999,29,0,0,88,0.2,0,0 +2016,2,18,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,12.3,74,99280,0,0,370,0,0,0,0,0,0,0,320,3.1,9,9,2000,3000,9,999999999,33,0,0,88,0.2,0,0 +2016,2,18,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,11,72,98536,0,0,363,0,0,0,0,0,0,0,300,2.1,9,9,2000,3048,9,999999999,29,0,0,88,0.2,0,0 +2016,2,18,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,11,77,98527,0,0,358,0,0,0,0,0,0,0,270,1.5,9,9,1600,3048,9,999999999,29,0,0,88,0.2,0,0 +2016,2,18,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15.6,13.1,85,98994,0,0,364,0,0,0,0,0,0,0,90,1.5,9,9,1000,3000,9,999999999,35,0,0,88,0.2,1,0 +2016,2,18,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,12,82,98527,0,0,360,0,0,0,0,0,0,0,20,4.1,9,9,1000,3048,0,919999999,32,0,0,88,0.2,0,0 +2016,2,18,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,12,82,98527,145,649,360,24,0,24,2336,0,2352,870,90,2.1,9,9,1000,3048,0,919999999,32,0,0,88,0.2,0,0 +2016,2,18,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15.6,13.8,89,99218,437,1400,365,128,16,123,14179,871,13672,4370,56,0,9,9,1000,3000,0,919999999,38,0,0,88,0.2,0,0 +2016,2,18,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,12,77,98536,691,1400,365,240,31,224,26693,2379,25145,8459,350,2.1,9,9,1000,3048,0,919999999,32,0,0,88,0.2,0,0 +2016,2,18,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,12,64,98564,888,1400,380,330,35,308,37128,3017,34826,12183,320,2.1,9,9,1200,3048,0,919999999,31,0,0,88,0.2,0,0 +2016,2,18,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19.2,14.4,74,99281,1015,1400,384,388,36,362,43850,3096,41191,14694,223,0,9,9,1000,3000,0,919999999,40,0,0,88,0.2,0,0 +2016,2,18,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,12,60,98574,1063,1400,385,412,36,385,46803,3268,43945,15682,310,2.1,9,9,1000,3048,0,919999999,31,0,0,88,0.2,0,0 +2016,2,18,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,12,50,98601,1030,1400,401,397,36,370,44957,3240,42194,15029,300,2.6,9,9,1200,2438,0,919999999,31,0,0,88,0.2,0,0 +2016,2,18,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21.6,16.3,72,99021,917,1400,399,341,34,319,38347,2854,36034,12729,270,1.5,9,9,1000,3000,0,919999999,48,0,0,88,0.2,0,0 +2016,2,18,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,16,73,98583,733,1400,396,257,31,241,28602,2370,26946,9189,280,3.1,9,9,1000,2438,0,919999999,47,0,0,88,0.2,0,0 +2016,2,18,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,16,73,98583,489,1400,396,149,18,143,16480,1031,15867,5128,330,1.5,9,9,1400,2438,0,919999999,47,0,0,88,0.2,0,0 +2016,2,18,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19.8,15.4,76,98791,202,1400,388,41,0,41,3950,0,3978,1437,324,0,9,9,1000,3000,0,919999999,44,0,0,88,0.2,0,0 +2016,2,18,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,15,78,98564,0,912,384,0,0,0,0,0,0,0,290,2.1,9,9,1200,2438,0,919999999,42,0,0,88,0.2,0,0 +2016,2,18,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,15,83,98555,0,0,378,0,0,0,0,0,0,0,260,2.6,9,9,1200,2438,0,919999999,43,0,0,88,0.2,0,0 +2016,2,18,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,17.8,15,84,98553,0,0,369,0,0,0,0,0,0,0,185,2.3,8,8,1150,2438,9,999999999,43,0,0,88,0.2,0,0 +2016,2,18,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,17.5,15,85,98550,0,0,368,0,0,0,0,0,0,0,92,2,8,8,1100,2438,9,999999999,43,0,0,88,0.2,0,0 +2016,2,18,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,17.2,15,87,98548,0,0,374,0,0,0,0,0,0,0,142,1.8,9,9,1050,2438,9,999999999,43,0,0,88,0.2,0,0 +2016,2,18,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,15,88,98546,0,0,373,0,0,0,0,0,0,0,220,1.5,9,9,1000,2438,0,919999999,43,0,0,88,0.2,0,0 +2016,2,19,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,15,88,98546,0,0,373,0,0,0,0,0,0,0,240,1.5,9,9,1000,3048,0,919999999,43,0,0,88,0.2,0,0 +2016,2,19,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,15,88,98546,0,0,373,0,0,0,0,0,0,0,240,1.5,9,9,1000,3048,0,919999999,43,0,0,88,0.2,0,0 +2016,2,19,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,15,94,98804,0,0,368,0,0,0,0,0,0,0,53,0,9,9,500,3000,0,919999999,43,0,0,88,0.2,0,0 +2016,2,19,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,15,94,98536,0,0,368,0,0,0,0,0,0,0,270,1.5,9,9,250,3048,0,919999999,43,0,0,88,0.2,0,0 +2016,2,19,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,15,100,98527,0,0,343,0,0,0,0,0,0,0,260,1.5,5,5,200,3048,0,919999999,43,0,0,88,0.2,0,0 +2016,2,19,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15.4,14.7,96,98837,0,0,344,0,0,0,0,0,0,0,225,0,5,5,200,3000,0,999999999,42,0,0,88,0.2,0,0 +2016,2,19,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,15,100,98527,0,0,363,0,0,0,0,0,0,0,230,1.5,9,9,200,3048,0,999999999,43,0,0,88,0.2,0,0 +2016,2,19,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,15,100,98527,149,669,363,25,0,25,2436,0,2453,909,250,2.1,9,9,200,3048,0,999999999,43,0,0,88,0.2,0,0 +2016,2,19,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.4,14.7,90,98963,442,1399,370,130,16,125,14359,875,13843,4436,230,2.1,9,9,50,3048,0,999999999,42,0,0,88,0.2,0,0 +2016,2,19,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,15,83,98555,696,1399,378,240,30,226,26754,2261,25235,8530,260,2.1,9,9,400,3048,0,999999999,43,0,0,88,0.2,0,0 +2016,2,19,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,14,60,98592,893,1399,398,331,35,309,37232,2924,34956,12270,320,1.5,9,9,700,3048,0,999999999,38,0,0,88,0.2,0,0 +2016,2,19,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25.6,14.6,51,99048,1020,1399,419,390,36,364,44125,3090,41454,14801,320,2.1,9,9,500,3000,0,999999999,40,0,0,88,0.2,0,0 +2016,2,19,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,14,45,98637,1069,1399,426,413,91,343,47328,7618,39574,14667,330,2.1,9,9,1200,3048,0,999999999,38,0,0,88,0.2,0,0 +2016,2,19,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,14,42,98646,1035,1399,408,717,491,353,81509,41951,40384,14658,320,3.1,5,5,1400,3048,0,999999999,38,0,0,88,0.2,0,0 +2016,2,19,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.4,15,44,98722,922,1399,436,345,89,286,39105,7044,32669,11941,320,2.1,9,9,2000,3048,0,999999999,42,0,0,88,0.2,0,0 +2016,2,19,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,13,37,98654,737,1399,436,260,32,244,29049,2528,27326,9297,320,3.1,9,9,3000,3048,0,999999999,34,0,0,88,0.2,0,0 +2016,2,19,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,15,48,98637,493,1399,428,151,18,145,16713,1081,16077,5196,310,3.1,9,9,2500,3048,0,999999999,42,0,0,88,0.2,0,0 +2016,2,19,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25.8,16.8,58,98670,206,1399,423,42,0,42,4047,0,4076,1474,320,2.1,9,9,2000,3000,0,999999999,50,0,0,88,0.2,0,0 +2016,2,19,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,16,57,98619,0,929,418,0,0,0,0,0,0,0,310,2.6,9,9,2200,3048,0,999999999,46,0,0,88,0.2,0,0 +2016,2,19,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,23,16,65,98601,0,0,406,0,0,0,0,0,0,0,122,0,9,9,2100,3048,0,999999999,47,0,0,88,0.2,0,0 +2016,2,19,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,22.4,17.6,74,98776,0,0,405,0,0,0,0,0,0,0,61,0,9,9,2000,3000,0,999999999,55,0,0,88,0.2,0,0 +2016,2,19,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,17,69,98601,0,0,408,0,0,0,0,0,0,0,10,2.1,9,9,1400,3048,0,999999999,52,0,0,88,0.2,0,0 +2016,2,19,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,17,73,98592,0,0,402,0,0,0,0,0,0,0,80,1.5,9,9,1200,3048,0,999999999,52,0,0,88,0.2,0,0 +2016,2,19,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21.8,17.3,76,98721,0,0,402,0,0,0,0,0,0,0,354,0,9,9,1000,3000,0,999999999,53,0,0,88,0.2,0,0 +2016,2,20,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,17,78,98583,0,0,397,0,0,0,0,0,0,0,280,2.1,9,9,1000,3048,0,999999999,52,0,0,88,0.2,0,0 +2016,2,20,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,17,78,98583,0,0,397,0,0,0,0,0,0,0,230,1.5,9,9,900,3048,0,999999999,52,0,0,88,0.2,0,0 +2016,2,20,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,17.1,78,98636,0,0,397,0,0,0,0,0,0,0,169,0,9,9,500,3000,0,999999999,52,0,0,88,0.2,0,0 +2016,2,20,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,17,78,98583,0,0,397,0,0,0,0,0,0,0,100,1.5,9,9,1200,3048,0,999999999,52,0,0,88,0.2,0,0 +2016,2,20,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,16,73,98583,0,0,396,0,0,0,0,0,0,0,39,0,9,9,1400,3048,0,999999999,47,0,0,88,0.2,0,0 +2016,2,20,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,17.1,78,98636,0,0,397,0,0,0,0,0,0,0,42,0,9,9,500,3000,9,999999999,52,0,0,88,0.2,0,0 +2016,2,20,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,17,78,98583,0,0,397,0,0,0,0,0,0,0,210,2.1,9,9,1200,3048,9,999999999,52,0,0,88,0.2,0,0 +2016,2,20,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,17,78,98583,154,690,397,26,0,26,2544,0,2563,949,200,2.6,9,9,900,3048,9,999999999,52,0,0,88,0.2,0,0 +2016,2,20,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21.4,17.2,77,98776,447,1398,399,131,29,122,14525,1479,13542,4400,270,2.1,9,9,500,3000,9,999999999,53,0,0,88,0.2,0,0 +2016,2,20,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,16,65,98601,701,1398,406,242,30,227,26946,2230,25424,8617,280,4.6,9,9,1500,3048,9,999999999,47,0,0,88,0.2,0,0 +2016,2,20,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,17,69,98601,898,1398,408,332,33,311,37227,2724,35038,12354,270,3.1,9,9,1500,3048,9,999999999,52,0,0,88,0.2,0,0 +2016,2,20,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24.2,17.1,65,98782,1025,1398,415,391,34,366,44127,2904,41552,14886,290,2.1,9,9,1000,3000,9,999999999,52,0,0,88,0.2,0,0 +2016,2,20,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,17,61,98619,1074,1398,419,414,77,354,47152,6321,40634,14996,260,3.1,9,9,2000,3048,9,999999999,51,0,0,88,0.2,0,0 +2016,2,20,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,17,58,98628,1040,1398,425,398,35,372,44964,2925,42343,15183,280,4.6,9,9,2000,3048,9,999999999,51,0,0,88,0.2,0,0 +2016,2,20,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26.8,18.3,60,98650,927,1398,431,345,33,322,38653,2705,36398,12913,290,2.1,9,9,2000,3000,9,999999999,58,0,0,88,0.2,0,0 +2016,2,20,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,17,54,98637,742,1398,430,260,31,244,28981,2341,27313,9350,290,5.1,9,9,2100,3048,9,999999999,51,0,0,88,0.2,0,0 +2016,2,20,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,17,54,98637,497,1398,430,152,45,136,16905,2495,15202,5027,280,5.1,9,9,2100,3048,9,999999999,51,0,0,88,0.2,0,0 +2016,2,20,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25.4,18.5,66,98569,210,1398,399,77,169,52,8461,268,5698,1728,290,2.1,5,5,2000,3000,9,999999999,60,0,0,88,0.2,0,0 +2016,2,20,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24,18,69,98610,0,945,385,0,0,0,0,0,0,0,290,3.6,3,3,2500,3000,9,999999999,57,0,0,88,0.2,0,0 +2016,2,20,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24,18,69,98610,0,0,385,0,0,0,0,0,0,0,310,3.6,3,3,2400,3000,9,999999999,57,0,0,88,0.2,0,0 +2016,2,20,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18,77,98793,0,0,376,0,0,0,0,0,0,0,290,2.1,3,3,2000,3000,9,999999999,57,0,0,88,0.2,0,0 +2016,2,20,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20,17,83,98574,0,0,364,0,0,0,0,0,0,0,310,4.1,3,3,2000,3000,9,999999999,52,0,0,88,0.2,0,0 +2016,2,20,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20,17,83,98574,0,0,364,0,0,0,0,0,0,0,260,2.1,3,3,1200,3000,9,999999999,52,0,0,88,0.2,0,0 +2016,2,20,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.2,17.3,83,98892,0,0,350,0,0,0,0,0,0,0,290,1.5,0,0,1000,3000,9,999999999,53,0,0,88,0.2,0,0 +2016,2,21,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,16,88,98555,0,0,338,0,0,0,0,0,0,0,260,2.1,0,0,1100,77777,9,999999999,47,0,0,88,0.2,0,0 +2016,2,21,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,16,94,98546,0,0,334,0,0,0,0,0,0,0,270,2.1,0,0,900,77777,9,999999999,47,0,0,88,0.2,0,0 +2016,2,21,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,16.2,94,98737,0,0,335,0,0,0,0,0,0,0,270,2.1,0,0,200,77777,0,999999999,48,0,0,88,0.2,0,0 +2016,2,21,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,16,100,98536,0,0,329,0,0,0,0,0,0,0,270,3.6,0,0,300,77777,0,999999999,47,0,0,88,0.2,0,0 +2016,2,21,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,16,100,98536,0,0,329,0,0,0,0,0,0,0,270,3.6,0,0,300,77777,0,999999999,47,0,0,88,0.2,0,0 +2016,2,21,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.2,14.8,91,98767,0,0,329,0,0,0,0,0,0,0,270,2.1,0,0,200,77777,0,999999999,42,0,0,88,0.2,0,0 +2016,2,21,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,16,100,98536,0,0,329,0,0,0,0,0,0,0,290,3.6,0,0,500,77777,0,999999999,47,0,0,88,0.2,0,0 +2016,2,21,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,14,88,98536,159,711,347,50,85,40,5493,0,4439,1309,300,3.6,5,5,700,77777,0,999999999,39,0,0,88,0.2,0,0 +2016,2,21,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16.2,14.5,90,98883,452,1398,369,134,26,125,14829,1410,13949,4511,290,2.6,9,9,1000,2400,0,999999999,41,0,0,88,0.2,0,0 +2016,2,21,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,15,88,98546,706,1398,352,441,478,200,49703,33943,22617,7977,280,5.1,5,5,1600,3048,0,999999999,43,0,0,88,0.2,0,0 +2016,2,21,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,14,73,98564,903,1398,361,606,664,176,71295,44039,20832,8260,280,4.6,5,5,2100,3048,0,999999999,38,0,0,88,0.2,0,0 +2016,2,21,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,14.5,68,99032,1031,1398,349,765,863,128,93972,50915,15800,6612,270,3.1,0,0,2000,3048,0,999999999,40,0,0,88,0.2,0,0 +2016,2,21,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,13,50,98610,1079,1398,364,811,797,195,97279,53640,23491,9620,300,6.2,0,0,2500,77777,0,999999999,34,0,0,88,0.2,0,0 +2016,2,21,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,10,39,98619,1045,1398,365,785,795,190,94001,54906,22817,9300,300,6.7,0,0,2800,77777,0,999999999,25,0,0,88,0.2,0,0 +2016,2,21,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.8,10.9,39,98748,932,1398,370,680,785,157,81300,51580,18804,7597,320,4.1,0,0,4000,77777,0,999999999,28,0,0,88,0.2,0,0 +2016,2,21,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,9,36,98619,746,1398,364,515,786,95,62169,45610,11484,4535,300,5.1,0,0,4500,77777,0,999999999,23,0,0,88,0.2,0,0 +2016,2,21,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,7,32,98619,501,1398,361,303,525,115,34419,30301,13076,4484,300,4.1,0,0,6000,77777,0,999999999,19,0,0,88,0.2,0,0 +2016,2,21,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.2,8.6,37,98588,214,1398,359,86,217,53,9546,2318,5888,1773,320,3.1,0,0,4000,77777,0,999999999,22,0,0,88,0.2,0,0 +2016,2,21,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,9,43,98592,0,962,349,0,0,0,0,0,0,0,300,4.6,0,0,6000,77777,0,999999999,23,0,0,88,0.2,0,0 +2016,2,21,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,9,52,98564,0,0,335,0,0,0,0,0,0,0,270,3.6,0,0,3500,77777,0,999999999,23,0,0,88,0.2,0,0 +2016,2,21,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,9.9,60,98743,0,0,331,0,0,0,0,0,0,0,290,1.5,0,0,2000,77777,0,999999999,26,0,0,88,0.2,0,0 +2016,2,21,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,10,63,98546,0,0,327,0,0,0,0,0,0,0,280,3.1,0,0,2500,77777,0,999999999,26,0,0,88,0.2,0,0 +2016,2,21,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,10,68,98536,0,0,323,0,0,0,0,0,0,0,280,3.6,0,0,2500,77777,0,999999999,26,0,0,88,0.2,0,0 +2016,2,21,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17,8.4,57,98823,0,0,326,0,0,0,0,0,0,0,270,3.6,0,0,1000,77777,0,999999999,22,0,0,88,0.2,0,0 +2016,2,22,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,9,67,98527,0,0,317,0,0,0,0,0,0,0,280,3.6,0,0,1500,77777,0,999999999,23,0,0,88,0.2,0,0 +2016,2,22,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,10,77,98517,0,0,314,0,0,0,0,0,0,0,270,3.1,0,0,800,77777,0,999999999,26,0,0,88,0.2,0,0 +2016,2,22,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.6,10.5,82,98751,0,0,313,0,0,0,0,0,0,0,270,3.1,0,0,500,77777,0,999999999,27,0,0,88,0.2,0,0 +2016,2,22,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,9,87,98488,0,0,300,0,0,0,0,0,0,0,260,2.6,0,0,700,77777,0,999999999,24,0,0,88,0.2,0,0 +2016,2,22,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,9,87,98488,0,0,300,0,0,0,0,0,0,0,270,3.1,0,0,700,77777,0,999999999,24,0,0,88,0.2,0,0 +2016,2,22,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.6,9.5,81,98645,0,0,307,0,0,0,0,0,0,0,270,2.6,0,0,500,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,2,22,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,9,87,98488,0,0,300,0,0,0,0,0,0,0,260,3.1,0,0,600,77777,9,999999999,24,0,0,88,0.2,0,0 +2016,2,22,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,9,87,98488,164,733,300,57,97,45,6202,0,4974,1429,260,3.1,0,0,500,77777,9,999999999,24,0,0,88,0.2,0,0 +2016,2,22,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,13.4,9.5,77,98827,457,1397,311,265,526,93,30273,25824,10627,3669,79,0,0,0,500,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,2,22,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,10,68,98536,711,1397,323,483,767,92,58043,43334,11083,4336,280,3.1,0,0,1400,77777,9,999999999,26,0,0,88,0.2,0,0 +2016,2,22,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,10,53,98574,909,1397,341,660,858,102,81270,50801,12545,5163,280,3.1,0,0,2000,77777,9,999999999,26,0,0,88,0.2,0,0 +2016,2,22,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,10.5,46,98945,1036,1397,355,775,794,186,92856,54352,22381,9126,270,3.1,0,0,2000,77777,9,999999999,27,0,0,88,0.2,0,0 +2016,2,22,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,10,39,98619,1084,1397,365,820,798,200,98359,55648,24157,9857,280,4.1,0,0,2800,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,2,22,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,10,39,98619,1050,1397,365,789,795,191,94548,54967,22970,9366,310,4.1,0,0,3200,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,2,22,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.8,6.7,28,98776,936,1397,370,689,785,163,82358,53962,19514,7854,320,4.1,0,0,2000,77777,9,999999999,18,0,0,88,0.2,0,0 +2016,2,22,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,7,28,98637,751,1397,371,521,787,97,62831,46809,11751,4637,280,4.1,0,0,3200,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,2,22,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,8,28,98646,505,1397,377,306,521,117,34684,30193,13338,4572,300,4.1,0,0,3500,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,2,22,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.6,10.6,41,98669,218,1397,364,88,219,54,9748,2336,5994,1809,270,4.1,0,0,2000,77777,9,999999999,27,0,0,88,0.2,0,0 +2016,2,22,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,9,38,98610,0,978,359,0,0,0,0,0,0,0,270,3.6,0,0,3500,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,2,22,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,11,53,98583,0,0,347,0,0,0,0,0,0,0,270,3.6,0,0,3100,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,2,22,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.2,11.1,52,98726,0,0,348,0,0,0,0,0,0,0,270,2.1,0,0,2000,77777,9,999999999,29,0,0,88,0.2,0,0 +2016,2,22,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,10,56,98564,0,0,336,0,0,0,0,0,0,0,260,2.1,0,0,2500,77777,9,999999999,26,0,0,88,0.2,0,0 +2016,2,22,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,10,59,98555,0,0,332,0,0,0,0,0,0,0,270,2.1,0,0,2100,77777,9,999999999,26,0,0,88,0.2,0,0 +2016,2,22,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.6,10.4,59,98789,0,0,335,0,0,0,0,0,0,0,270,1.5,0,0,2000,77777,9,999999999,27,0,0,88,0.2,0,0 +2016,2,23,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,10,59,98555,0,0,332,0,0,0,0,0,0,0,260,2.1,0,0,2100,77777,9,999999999,26,0,0,88,0.2,0,0 +2016,2,23,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,10,68,98536,0,0,323,0,0,0,0,0,0,0,230,2.1,0,0,2100,77777,9,999999999,26,0,0,88,0.2,0,0 +2016,2,23,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.8,10.5,71,98636,0,0,322,0,0,0,0,0,0,0,270,1.5,0,0,1000,77777,9,999999999,27,0,0,88,0.2,0,0 +2016,2,23,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,8,67,98517,0,0,330,0,0,0,0,0,0,0,260,2.1,5,5,1800,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,2,23,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14,8,67,98517,0,0,312,0,0,0,0,0,0,0,260,2.1,0,0,1800,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,2,23,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,13.4,8.6,73,98584,0,0,310,0,0,0,0,0,0,0,73,0,0,0,1000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,2,23,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,8,72,98507,0,0,308,0,0,0,0,0,0,0,270,1.5,0,0,2200,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,2,23,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,7,71,98498,169,755,302,60,103,47,6514,58,5160,1481,280,2.1,0,0,2500,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,2,23,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.8,6.3,61,98744,463,1396,309,271,487,109,30580,26891,12379,4160,270,2.1,0,0,1000,77777,9,999999999,18,0,0,88,0.2,0,0 +2016,2,23,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,7,46,98564,717,1396,333,490,768,95,58874,45121,11460,4477,280,4.1,0,0,4000,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,2,23,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,7,40,98583,914,1396,342,668,848,112,81808,52792,13821,5667,270,4.1,0,0,4000,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,2,23,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.8,6.5,31,98846,1041,1396,360,785,794,192,94039,56605,23169,9409,270,2.1,0,0,4000,77777,9,999999999,18,0,0,88,0.2,0,0 +2016,2,23,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,6,26,98637,1089,1396,370,830,798,207,99561,57838,24972,10146,290,3.6,0,0,4000,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,2,23,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,5,24,98637,1055,1396,369,800,795,198,95840,57612,23903,9697,300,5.1,0,0,4000,77777,9,999999999,15,0,0,88,0.2,0,0 +2016,2,23,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28,5.2,23,98495,941,1396,374,695,785,165,83052,54748,19856,7985,270,3.6,0,0,4000,77777,9,999999999,16,0,0,88,0.2,0,0 +2016,2,23,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,2,18,98654,755,1396,375,529,789,102,63738,49109,12294,4839,280,5.7,0,0,8000,77777,9,999999999,11,0,0,88,0.2,0,0 +2016,2,23,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,3,20,98646,510,1396,371,312,526,120,35384,31983,13633,4661,280,5.7,0,0,8000,77777,9,999999999,13,0,0,88,0.2,0,0 +2016,2,23,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,6.8,27,98332,221,1396,372,91,228,55,10076,3124,6088,1839,270,4.1,0,0,4000,77777,9,999999999,18,0,0,88,0.2,0,0 +2016,2,23,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,5,26,98628,0,994,364,0,0,0,0,0,0,0,320,3.6,0,0,6000,77777,9,999999999,15,0,0,88,0.2,0,0 +2016,2,23,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,7,40,98583,0,0,342,0,0,0,0,0,0,0,250,2.1,0,0,3500,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,2,23,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,19.8,11.1,57,98460,0,0,341,0,0,0,0,0,0,0,277,0,0,0,2000,77777,9,999999999,29,0,0,88,0.2,0,0 +2016,2,23,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,20,8,46,98574,0,0,339,0,0,0,0,0,0,0,153,0,0,0,3000,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,2,23,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,8,52,98555,0,0,330,0,0,0,0,0,0,0,354,0,0,0,2200,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,2,23,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,17,10.2,64,98541,0,0,328,0,0,0,0,0,0,0,169,0,0,0,2000,77777,9,999999999,26,0,0,88,0.2,0,0 +2016,2,24,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,9,72,98517,0,0,313,0,0,0,0,0,0,0,190,0,0,0,1800,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,2,24,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,9,72,98517,0,0,313,0,0,0,0,0,0,0,278,0,0,0,1500,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,2,24,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,14.4,9.4,72,98438,0,0,315,0,0,0,0,0,0,0,277,0,0,0,1000,77777,9,999999999,24,0,0,88,0.2,0,0 +2016,2,24,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,9,72,98517,0,0,313,0,0,0,0,0,0,0,160,0,0,0,1500,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,2,24,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,9,72,98517,0,0,313,0,0,0,0,0,0,0,72,0,0,0,1500,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,2,24,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,12.2,8.6,79,98485,0,0,305,0,0,0,0,0,0,0,45,0,0,0,1000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,2,24,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,9,82,98498,0,0,304,0,0,0,0,0,0,0,209,0,0,0,1500,77777,9,999999999,24,0,0,88,0.2,0,0 +2016,2,24,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,9,82,98498,174,777,304,62,107,49,6783,159,5333,1533,348,0,0,0,1500,77777,9,999999999,24,0,0,88,0.2,0,0 +2016,2,24,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,13,9.5,79,98687,468,1396,309,273,533,95,31215,26665,10845,3762,13,0,0,0,2000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,2,24,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,5,37,98574,722,1396,335,496,771,97,59641,46241,11664,4558,330,1.5,0,0,2500,77777,9,999999999,16,0,0,88,0.2,0,0 +2016,2,24,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,9,41,98601,919,1396,354,670,782,155,80157,52178,18562,7478,130,1.5,0,0,2500,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,2,24,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.6,8.6,32,98774,1046,1396,371,787,794,191,94322,55600,23023,9374,140,2.1,0,0,2000,77777,9,999999999,22,0,0,88,0.2,0,0 +2016,2,24,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,8,30,98637,1094,1396,372,832,798,206,99828,56888,24818,10106,140,2.1,0,0,3200,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,2,24,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,8,28,98646,1060,1396,377,800,795,196,95954,56213,23604,9609,296,1.5,0,0,3500,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,2,24,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.8,7.3,23,98460,946,1396,391,697,785,164,83301,53849,19723,7955,270,1.5,0,0,2000,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,2,24,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,1,15,98672,759,1396,383,533,790,103,64286,49633,12473,4911,250,2.6,0,0,3500,77777,9,999999999,10,0,0,88,0.2,0,0 +2016,2,24,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,3,17,98672,514,1396,386,315,528,120,35761,32275,13728,4702,250,2.6,0,0,3500,77777,9,999999999,13,0,0,88,0.2,0,0 +2016,2,24,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,28.2,10.1,32,98428,225,1396,381,93,228,56,10247,2979,6196,1877,134,0,0,0,2000,77777,9,999999999,26,0,0,88,0.2,0,0 +2016,2,24,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,6,26,98637,0,1010,370,0,0,0,0,0,0,0,40,1.5,0,0,3500,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,2,24,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,10,41,98610,0,0,360,0,0,0,0,0,0,0,160,2.1,0,0,3000,77777,9,999999999,26,0,0,88,0.2,0,0 +2016,2,24,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.6,11.6,53,98564,0,0,350,0,0,0,0,0,0,0,140,2.1,0,0,2000,77777,9,999999999,30,0,0,88,0.2,0,0 +2016,2,24,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,9,43,98592,0,0,349,0,0,0,0,0,0,0,120,2.1,0,0,2500,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,2,24,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,10,53,98574,0,0,341,0,0,0,0,0,0,0,110,2.6,0,0,2500,77777,9,999999999,26,0,0,88,0.2,0,0 +2016,2,24,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,18,11.8,67,98667,0,0,334,0,0,0,0,0,0,0,170,0,0,0,2000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,2,25,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,11,60,98564,0,0,338,0,0,0,0,0,0,0,120,2.1,0,0,2200,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,2,25,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,10,63,98546,0,0,327,0,0,0,0,0,0,0,130,2.1,0,0,2200,77777,9,999999999,26,0,0,88,0.2,0,0 +2016,2,25,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.6,10.6,68,98673,0,0,326,0,0,0,0,0,0,0,140,2.1,0,0,2000,77777,9,999999999,27,0,0,88,0.2,0,0 +2016,2,25,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,8,67,98517,0,0,312,0,0,0,0,0,0,0,120,2.1,0,0,2200,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,2,25,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,9,72,98517,0,0,313,0,0,0,0,0,0,0,264,0,0,0,2200,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,2,25,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,14.8,9.8,72,98695,0,0,317,0,0,0,0,0,0,0,275,0,0,0,2000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,2,25,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,9,82,98498,0,0,304,0,0,0,0,0,0,0,100,2.1,0,0,2100,77777,9,999999999,24,0,0,88,0.2,0,0 +2016,2,25,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,9,82,98498,180,799,304,65,114,50,7109,393,5521,1588,100,2.6,0,0,1800,77777,9,999999999,24,0,0,88,0.2,0,0 +2016,2,25,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,16.2,10.2,68,98922,473,1395,338,274,516,99,31205,26290,11289,3906,229,0,3,3,2000,77777,9,999999999,26,0,0,88,0.2,0,0 +2016,2,25,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23,9,41,98601,727,1395,369,491,709,121,58003,44033,14385,5546,150,2.1,3,3,2500,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,2,25,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,8,34,98619,925,1395,362,677,848,114,82891,52529,14001,5755,120,3.1,0,0,2100,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,2,25,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,8,30,98637,1051,1395,372,793,794,193,95016,56011,23309,9487,140,4.6,0,0,2500,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,2,25,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,7,26,98646,1099,1395,376,838,798,209,100576,57478,25172,10238,140,3.6,0,0,2800,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,2,25,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,6,23,98654,1065,1395,380,807,795,200,96812,57291,24097,9790,120,3.6,0,0,3000,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,2,25,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30,10.9,31,98775,950,1395,391,697,785,161,83336,51955,19385,7855,90,1.5,0,0,2000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,2,25,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,6,22,98663,764,1395,385,533,791,100,64358,47785,12062,4773,150,3.1,0,0,5000,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,2,25,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,6,22,98663,518,1395,385,317,534,119,36014,31813,13522,4666,180,2.1,0,0,5000,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,2,25,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.2,11,39,98703,229,1395,388,94,216,58,10340,3087,6447,1944,90,2.6,3,3,4000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,2,25,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25,9,36,98619,0,1025,364,0,0,0,0,0,0,0,110,2.6,0,0,3500,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,2,25,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,9,43,98592,0,0,364,0,0,0,0,0,0,0,120,2.6,3,3,3500,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,2,25,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,21.2,11.5,54,98862,0,0,348,0,0,0,0,0,0,0,357,0,0,0,2000,77777,9,999999999,30,0,0,88,0.2,0,0 +2016,2,25,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,10,53,98574,0,0,341,0,0,0,0,0,0,0,110,2.6,0,0,3500,77777,9,999999999,26,0,0,88,0.2,0,0 +2016,2,25,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20,10,53,98574,0,0,361,0,0,0,0,0,0,0,110,2.6,5,5,3000,77777,9,999999999,26,0,0,88,0.2,0,0 +2016,2,25,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,18.6,12.1,66,98955,0,0,357,0,0,0,0,0,0,0,35,0,5,5,2000,77777,9,999999999,32,0,0,88,0.2,0,0 +2016,2,26,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18,10,59,98555,0,0,352,0,0,0,0,0,0,0,100,2.6,5,5,2500,77777,9,999999999,26,0,0,88,0.2,0,0 +2016,2,26,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17,10,63,98546,0,0,347,0,0,0,0,0,0,0,110,2.6,5,5,2500,77777,9,999999999,26,0,0,88,0.2,0,0 +2016,2,26,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,12.5,74,98980,0,0,351,0,0,0,0,0,0,0,90,2.1,5,5,2000,77777,9,999999999,33,0,0,88,0.2,0,0 +2016,2,26,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17,10,63,98546,0,0,341,0,0,0,0,0,0,0,100,2.1,3,3,2500,77777,9,999999999,26,0,0,88,0.2,0,0 +2016,2,26,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17,10,63,98546,0,0,341,0,0,0,0,0,0,0,100,2.1,3,3,2500,77777,9,999999999,26,0,0,88,0.2,0,0 +2016,2,26,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,11.5,77,99004,0,0,337,0,0,0,0,0,0,0,110,1.5,3,3,2000,77777,9,999999999,30,0,0,88,0.2,0,0 +2016,2,26,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15,10,72,98527,0,0,337,0,0,0,0,0,0,0,100,2.1,5,5,2200,77777,9,999999999,26,0,0,88,0.2,0,0 +2016,2,26,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,10,72,98527,185,822,337,63,89,51,6900,386,5633,1629,110,2.1,5,5,2000,3048,9,999999999,26,0,0,88,0.2,0,0 +2016,2,26,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,18.4,12.3,68,99274,479,1394,356,261,408,121,29263,22573,13623,4553,162,0,5,5,2000,3048,9,999999999,33,0,0,88,0.2,0,0 +2016,2,26,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,10,46,98592,733,1394,371,467,593,155,54078,39723,17996,6761,110,2.1,5,5,2700,3048,9,999999999,26,0,0,88,0.2,0,0 +2016,2,26,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26,10,37,98628,930,1394,386,670,782,148,80491,50999,17893,7259,110,4.6,3,3,3000,3048,9,999999999,25,0,0,88,0.2,0,0 +2016,2,26,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.2,10.6,33,99324,1057,1394,398,784,863,129,96796,53263,16029,6715,90,1.5,3,3,2000,3048,9,999999999,27,0,0,88,0.2,0,0 +2016,2,26,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28,8,28,98646,1104,1394,394,830,876,136,102964,55718,16898,7086,100,2.6,3,3,4000,3048,9,999999999,21,0,0,88,0.2,0,0 +2016,2,26,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29,6,23,98654,1069,1394,396,801,795,191,96493,56422,23086,9431,140,2.6,3,3,4000,3048,9,999999999,17,0,0,88,0.2,0,0 +2016,2,26,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.2,10.7,30,99059,955,1394,409,692,841,115,84950,50904,14230,5891,90,1,3,3,4000,3048,9,999999999,27,0,0,88,0.2,0,0 +2016,2,26,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,29,4,20,98654,768,1394,393,531,766,109,63830,48081,13113,5166,247,1,3,3,4000,3048,9,999999999,14,0,0,88,0.2,0,0 +2016,2,26,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29,5,22,98654,522,1394,378,321,535,120,36429,32362,13716,4733,360,1.5,0,0,4000,3048,9,999999999,15,0,0,88,0.2,0,0 +2016,2,26,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,27,10.8,36,98943,233,1394,376,97,237,58,10745,3466,6386,1943,288,0,0,0,2000,3048,9,999999999,28,0,0,88,0.2,0,0 +2016,2,26,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,8,32,98628,0,1041,367,0,0,0,0,0,0,0,40,2.1,0,0,3000,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,2,26,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,9,36,98619,0,0,364,0,0,0,0,0,0,0,40,2.1,0,0,3000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,2,26,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,21.4,13.4,60,99000,0,0,351,0,0,0,0,0,0,0,231,0,0,0,2000,77777,9,999999999,36,0,0,88,0.2,0,0 +2016,2,26,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,12,50,98601,0,0,358,0,0,0,0,0,0,0,80,2.1,0,0,2200,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,2,26,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,11,50,98592,0,0,352,0,0,0,0,0,0,0,90,1.5,0,0,2200,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,2,26,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,19.2,12.8,66,99057,0,0,340,0,0,0,0,0,0,0,66,0,0,0,2000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,2,27,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,11,56,98574,0,0,342,0,0,0,0,0,0,0,80,1.5,0,0,2100,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,2,27,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,12,64,98564,0,0,339,0,0,0,0,0,0,0,315,0,0,0,2100,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,2,27,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,18,12.6,71,98978,0,0,335,0,0,0,0,0,0,0,141,0,0,0,1000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,2,27,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,12,68,98555,0,0,334,0,0,0,0,0,0,0,111,0,0,0,1800,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,2,27,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,12,72,98546,0,0,329,0,0,0,0,0,0,0,290,0,0,0,1500,77777,9,999999999,32,0,0,88,0.2,0,0 +2016,2,27,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,15.2,12.7,85,99059,0,0,322,0,0,0,0,0,0,0,108,0,0,0,1000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,2,27,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,12,72,98546,0,0,329,0,0,0,0,0,0,0,153,0,0,0,1000,77777,9,999999999,32,0,0,88,0.2,0,0 +2016,2,27,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,14,77,98555,190,845,336,70,157,49,7720,156,5381,1599,70,1.5,0,0,1000,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,2,27,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,16.2,12.6,79,99302,484,1394,326,285,509,108,32236,26503,12226,4208,28,0,0,0,1000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,2,27,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,11,50,98592,738,1394,352,505,775,94,60876,43878,11346,4478,60,2.1,0,0,2000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,2,27,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,11,41,98619,935,1394,366,682,859,106,84115,50782,13052,5400,130,2.1,0,0,2700,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,2,27,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.6,14.4,42,99318,1062,1394,388,793,794,188,95142,52063,22610,9281,160,3.1,0,0,2000,77777,9,999999999,40,0,0,88,0.2,0,0 +2016,2,27,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,10,32,98646,1109,1394,380,843,798,207,101232,55940,25007,10205,140,3.1,0,0,3500,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,2,27,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,10,32,98646,1074,1394,380,811,795,197,97275,55276,23769,9704,150,2.6,0,0,3500,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,2,27,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.8,15.6,42,99095,959,1394,396,699,863,104,75939,89673,14518,2371,180,2.1,0,0,2000,77777,9,999999999,44,0,0,88,0.2,0,0 +2016,2,27,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,8,28,98646,772,1394,377,538,791,99,65052,47085,12044,4784,160,3.1,0,0,3500,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,2,27,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,7,25,98654,526,1394,381,322,538,120,36671,32022,13643,4731,170,2.6,0,0,3500,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,2,27,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,27.4,9.9,33,98957,236,1394,377,99,242,58,11008,3898,6480,1975,312,0,0,0,2000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,2,27,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,9,32,98637,0,1056,374,0,0,0,0,0,0,0,180,2.1,0,0,2500,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,2,27,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,24,9,38,98610,0,0,359,0,0,0,0,0,0,0,16,0,0,0,1800,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,2,27,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,21.2,11.1,52,99095,0,0,348,0,0,0,0,0,0,0,325,0,0,0,2000,77777,9,999999999,29,0,0,88,0.2,0,0 +2016,2,27,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,10,53,98574,0,0,341,0,0,0,0,0,0,0,110,1.5,0,0,2200,77777,9,999999999,26,0,0,88,0.2,0,0 +2016,2,27,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,10,53,98574,0,0,341,0,0,0,0,0,0,0,110,1.5,0,0,2200,77777,9,999999999,26,0,0,88,0.2,0,0 +2016,2,27,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,17.8,12,69,99103,0,0,333,0,0,0,0,0,0,0,10,0,0,0,2000,77777,9,999999999,32,0,0,88,0.2,0,0 +2016,2,28,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,11,64,98555,0,0,333,0,0,0,0,0,0,0,28,0,0,0,2200,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,2,28,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,12,72,98546,0,0,329,0,0,0,0,0,0,0,241,0,0,0,2000,77777,9,999999999,32,0,0,88,0.2,0,0 +2016,2,28,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,16.6,12.3,76,99014,0,0,328,0,0,0,0,0,0,0,31,0,0,0,1000,77777,9,999999999,33,0,0,88,0.2,0,0 +2016,2,28,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,12,77,98536,0,0,325,0,0,0,0,0,0,0,251,0,0,0,1100,77777,9,999999999,32,0,0,88,0.2,0,0 +2016,2,28,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,12,77,98536,0,0,325,0,0,0,0,0,0,0,103,0,0,0,1100,77777,9,999999999,32,0,0,88,0.2,0,0 +2016,2,28,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,15.6,12.7,83,99023,0,0,324,0,0,0,0,0,0,0,197,0,0,0,1000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,2,28,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,12,82,98527,0,0,320,0,0,0,0,0,0,0,77,0,0,0,1000,77777,9,999999999,32,0,0,88,0.2,0,0 +2016,2,28,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,13,77,98546,196,868,331,73,165,50,8067,574,5539,1648,29,0,0,0,1000,77777,9,999999999,35,0,0,88,0.2,0,0 +2016,2,28,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,17.6,13,74,98439,490,1393,333,289,511,109,32696,26725,12372,4268,327,0,0,0,2000,77777,9,999999999,35,0,0,88,0.2,0,0 +2016,2,28,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,22,12,53,98592,744,1393,353,509,777,93,61372,43460,11303,4473,340,0,0,0,1600,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,2,28,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,13,47,98619,941,1393,369,685,853,108,84237,49549,13324,5522,150,2.1,0,0,2200,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,2,28,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.2,14.7,44,99353,1067,1393,387,797,794,188,95665,51892,22720,9332,140,2.6,0,0,2000,77777,9,999999999,41,0,0,88,0.2,0,0 +2016,2,28,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,13,42,98637,1114,1393,378,843,798,204,101270,54038,24650,10097,160,4.1,0,0,2800,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,2,28,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,13,40,98646,1079,1393,384,811,795,194,97303,53388,23423,9601,130,3.6,0,0,3000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,2,28,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,14.1,37,99131,964,1393,416,696,822,126,84788,48856,15428,6388,140,1.5,3,3,2000,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,2,28,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29,14,40,98654,776,1393,407,529,767,101,63709,42952,12252,4884,150,3.6,3,3,3000,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,2,28,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28,15,45,98646,529,1393,403,317,519,119,35894,28266,13567,4742,140,3.1,3,3,3000,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,2,28,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,14.6,46,99013,240,1393,398,100,222,61,10953,3268,6761,2053,140,1.5,3,3,2000,77777,9,999999999,40,0,0,88,0.2,0,0 +2016,2,28,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24,15.3,58,98733,0,1071,392,0,0,0,0,0,0,0,163,1.4,3,3,3000,77777,9,999999999,43,0,0,88,0.2,0,0 +2016,2,28,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,15.6,63,98724,0,0,372,0,0,0,0,0,0,0,158,1.3,0,0,2500,77777,9,999999999,45,0,0,88,0.2,0,0 +2016,2,28,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,21.7,14.9,65,98862,0,0,357,0,0,0,0,0,0,0,152,0.8,0,0,2000,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,2,28,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20.1,12.6,62,98724,0,0,361,0,0,0,0,0,0,0,88,1,0,0,2100,77777,9,999999999,33,0,0,88,0.2,0,0 +2016,2,28,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18.4,10.1,58,98708,0,0,357,0,0,0,0,0,0,0,72,0.6,0,0,2100,77777,9,999999999,26,0,0,88,0.2,0,0 +2016,2,28,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,16.6,7.1,53,98692,0,0,343,0,0,0,0,0,0,0,124,0.5,0,0,2000,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,1,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15.5,4.5,48,98532,0,0,318,0,0,0,0,0,0,0,138,0.9,0,0,2500,77777,9,999999999,15,0,0,88,0.2,0,0 +2001,3,1,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15.2,3.5,45,98529,0,0,317,0,0,0,0,0,0,0,198,1.1,0,0,2500,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,1,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14.8,2.5,44,98525,0,0,312,0,0,0,0,0,0,0,265,1.7,0,0,2500,77777,9,999999999,12,0,0,88,0.2,0,0 +2001,3,1,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14.5,2,43,98522,0,0,317,0,0,0,0,0,0,0,262,1.8,1,1,2500,77777,9,999999999,12,0,0,88,0.2,0,0 +2001,3,1,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14.8,1.8,41,98524,0,0,310,0,0,0,0,0,0,0,305,1.9,0,0,2500,77777,9,999999999,11,0,0,88,0.2,0,0 +2001,3,1,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15.8,1.8,39,98534,0,0,304,0,0,0,0,0,0,0,302,2.3,0,0,2200,77777,9,999999999,11,0,0,88,0.2,0,0 +2001,3,1,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,2,44,98517,0,0,306,0,0,0,0,0,0,0,300,1.5,0,0,2000,77777,9,999999999,12,0,0,88,0.2,0,0 +2001,3,1,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,2,39,98536,201,892,314,78,188,51,8607,1920,5612,1674,300,2.1,0,0,2000,77777,9,999999999,12,0,0,88,0.2,0,0 +2001,3,1,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,2,32,98564,495,1392,327,298,502,120,33772,30511,13591,4598,300,3.6,0,0,2200,77777,9,999999999,12,0,0,88,0.2,0,0 +2001,3,1,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,2,28,98583,749,1392,336,522,779,102,62855,48558,12371,4861,320,3.6,0,0,2500,77777,9,999999999,12,0,0,88,0.2,0,0 +2001,3,1,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,2,27,98592,946,1392,341,702,783,169,83936,55913,20312,8160,300,4.1,0,0,3000,77777,9,999999999,12,0,0,88,0.2,0,0 +2001,3,1,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,2,22,98619,1072,1392,355,819,794,206,98198,58947,24882,10077,300,6.2,0,0,3500,77777,9,999999999,11,0,0,88,0.2,0,0 +2001,3,1,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,3,24,98619,1119,1392,356,861,798,219,103436,59458,26455,10714,340,4.6,0,0,3500,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,1,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,2,21,98628,1084,1392,360,829,795,210,99507,59180,25305,10249,300,5.1,0,0,3500,77777,9,999999999,11,0,0,88,0.2,0,0 +2001,3,1,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,2,21,98628,968,1392,360,722,786,176,86416,56528,21114,8501,330,6.7,0,0,4000,77777,9,999999999,11,0,0,88,0.2,0,0 +2001,3,1,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,1,21,98619,780,1392,354,551,791,107,66509,50366,12984,5138,300,6.7,0,0,4500,77777,9,999999999,10,0,0,88,0.2,0,0 +2001,3,1,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,1,21,98619,533,1392,354,332,538,125,37723,34145,14297,4933,300,7.7,0,0,4000,77777,9,999999999,10,0,0,88,0.2,0,0 +2001,3,1,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,1,22,98610,244,1392,349,105,214,68,11572,5452,7482,2206,320,5.7,0,0,3500,77777,9,999999999,10,0,0,88,0.2,0,0 +2001,3,1,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,3,30,98583,0,1086,338,0,0,0,0,0,0,0,290,4.1,0,0,3000,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,1,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,4,37,98564,0,0,330,0,0,0,0,0,0,0,260,2.1,0,0,2600,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,1,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,5,42,98555,0,0,326,0,0,0,0,0,0,0,240,1,0,0,2600,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,1,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,6,51,98536,0,0,318,0,0,0,0,0,0,0,296,0.5,0,0,2200,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,1,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,5,48,98536,0,0,317,0,0,0,0,0,0,0,172,0,0,0,1800,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,1,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,4,48,98527,0,0,312,0,0,0,0,0,0,0,220,1,0,0,1300,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,2,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,5,55,98517,0,0,309,0,0,0,0,0,0,0,220,1,0,0,1200,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,2,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,5,55,98517,0,0,309,0,0,0,0,0,0,0,230,1,0,0,1200,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,2,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,5,58,98507,0,0,304,0,0,0,0,0,0,0,312,0,0,0,1000,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,2,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,3,51,98507,0,0,302,0,0,0,0,0,0,0,260,1.5,0,0,700,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,2,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,12,3,54,98498,0,0,311,0,0,0,0,0,0,0,102,1.5,3,3,700,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,2,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,3,58,98488,0,0,294,0,0,0,0,0,0,0,187,1.5,0,0,700,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,2,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,1,50,98488,0,0,292,0,0,0,0,0,0,0,220,1.5,0,0,500,77777,9,999999999,11,0,0,88,0.2,0,0 +2001,3,2,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,13,2,47,98507,207,915,311,81,194,52,8937,2302,5766,1724,317,2,2,2,850,77777,9,999999999,12,0,0,88,0.2,0,0 +2001,3,2,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,3,44,98527,501,1392,311,302,506,120,34224,30687,13667,4642,270,2.6,0,0,1200,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,2,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,2,32,98564,755,1392,327,527,780,103,63431,48764,12497,4917,280,4.6,0,0,1500,77777,9,999999999,12,0,0,88,0.2,0,0 +2001,3,2,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,2,27,98592,951,1392,341,707,784,170,84526,56014,20480,8234,300,5.1,0,0,2500,77777,9,999999999,12,0,0,88,0.2,0,0 +2001,3,2,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,3,25,98610,1077,1392,352,822,794,206,98646,58611,24901,10097,280,6.2,0,0,2800,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,2,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,3,24,98619,1124,1392,372,854,798,209,103070,58564,25377,10332,290,6.7,3,3,4000,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,2,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,2,22,98619,1088,1392,370,823,795,200,99140,58292,24257,9880,330,5.1,3,3,4500,77777,9,999999999,11,0,0,88,0.2,0,0 +2001,3,2,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,4,24,98628,972,1392,378,715,786,165,85903,54911,19946,8092,290,7.2,3,3,4500,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,2,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,2,21,98628,784,1392,375,547,767,114,65701,49363,13715,5417,320,5.7,3,3,4500,77777,9,999999999,11,0,0,88,0.2,0,0 +2001,3,2,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,2,22,98619,537,1392,370,330,518,130,37429,33243,14765,5075,310,5.1,3,3,4500,77777,9,999999999,11,0,0,88,0.2,0,0 +2001,3,2,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,4,27,98610,247,1392,368,105,243,62,11688,5428,6921,2103,330,4.1,3,3,4000,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,2,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,22,5.5,34,98592,0,1101,345,0,0,0,0,0,0,0,317,2.8,0,0,3400,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,2,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,20,7,43,98574,0,0,344,0,0,0,0,0,0,0,280,1.5,1,1,2800,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,2,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,7,49,98555,0,0,329,0,0,0,0,0,0,0,193,0,0,0,2500,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,2,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,6,45,98555,0,0,327,0,0,0,0,0,0,0,248,0,0,0,2200,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,2,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,6,48,98546,0,0,323,0,0,0,0,0,0,0,230,1,0,0,2000,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,2,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,7,55,98536,0,0,320,0,0,0,0,0,0,0,276,0,0,0,2000,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,3,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,5,51,98527,0,0,313,0,0,0,0,0,0,0,141,0,0,0,1500,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,3,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,4,51,98517,0,0,308,0,0,0,0,0,0,0,210,1,0,0,1100,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,3,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,5,58,98507,0,0,304,0,0,0,0,0,0,0,323,0,0,0,800,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,3,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,5,58,98507,0,0,304,0,0,0,0,0,0,0,248,0,0,0,700,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,3,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,2,50,98498,0,0,297,0,0,0,0,0,0,0,220,1.5,0,0,700,77777,9,999999999,12,0,0,88,0.2,0,0 +2001,3,3,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,2,54,98488,0,0,293,0,0,0,0,0,0,0,250,1.5,0,0,700,77777,9,999999999,12,0,0,88,0.2,0,0 +2001,3,3,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,1,50,98488,0,0,292,0,0,0,0,0,0,0,157,0,0,0,1000,77777,9,999999999,11,0,0,88,0.2,0,0 +2001,3,3,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,5,58,98507,212,939,304,84,200,53,9269,2473,5915,1775,280,1,0,0,1500,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,3,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,4,45,98536,506,1391,316,306,509,121,34692,30865,13726,4681,300,2.1,0,0,2000,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,3,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,5,40,98564,760,1391,331,529,780,102,63752,47779,12359,4880,300,2.6,0,0,2000,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,3,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,3,27,98601,957,1391,347,710,841,131,86714,55684,16087,6607,300,3.1,0,0,2500,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,3,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,3,24,98619,1083,1391,356,827,794,208,99234,58670,25077,10170,310,4.1,0,0,3000,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,3,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,2,22,98619,1129,1391,355,871,798,223,104705,59936,26943,10897,290,5.1,0,0,3500,77777,9,999999999,11,0,0,88,0.2,0,0 +2001,3,3,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,-1,16,98637,1093,1391,361,841,860,165,103049,60475,20268,8386,280,4.1,0,0,4500,77777,9,999999999,8,0,0,88,0.2,0,0 +2001,3,3,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,0,17,98637,977,1391,384,682,625,243,79670,50353,28503,11009,300,3.6,5,5,5000,77777,9,999999999,9,0,0,88,0.2,0,0 +2001,3,3,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,1,18,98637,788,1391,379,551,768,115,66210,49839,13904,5493,270,2.1,3,3,5000,77777,9,999999999,10,0,0,88,0.2,0,0 +2001,3,3,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,25.5,1,20,98623,541,1391,356,338,542,127,38426,34638,14469,5010,330,2.3,0,0,5000,77777,9,999999999,10,0,0,88,0.2,0,0 +2001,3,3,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,1,22,98610,251,1391,364,108,210,70,11886,5782,7740,2286,300,2.6,3,3,5000,77777,9,999999999,10,0,0,88,0.2,0,0 +2001,3,3,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,23,2,25,98601,0,1115,346,0,0,0,0,0,0,0,315,2.6,0,0,4000,77777,9,999999999,11,0,0,88,0.2,0,0 +2001,3,3,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,3,29,98592,0,0,363,0,0,0,0,0,0,0,350,2.6,5,5,3000,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,3,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,4,33,98583,0,0,359,0,0,0,0,0,0,0,360,2.1,5,5,2800,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,3,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,3,32,98574,0,0,374,0,0,0,0,0,0,0,10,2.1,9,9,2400,3000,9,999999999,13,0,0,88,0.2,0,0 +2001,3,3,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,4,35,98574,0,0,354,0,0,0,0,0,0,0,10,1.5,5,5,2500,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,3,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,5,42,98555,0,0,340,0,0,0,0,0,0,0,339,0,3,3,2500,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,4,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,4,42,98546,0,0,335,0,0,0,0,0,0,0,113,0,3,3,2500,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,4,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,5,51,98527,0,0,327,0,0,0,0,0,0,0,97,0,3,3,2200,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,4,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,5,55,98517,0,0,322,0,0,0,0,0,0,0,242,0,3,3,2000,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,4,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,4,54,98507,0,0,317,0,0,0,0,0,0,0,270,0,3,3,2000,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,4,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,3,51,98507,0,0,315,0,0,0,0,0,0,0,260,0,3,3,1600,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,4,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,4,58,98498,0,0,317,0,0,0,0,0,0,0,270,1,5,5,1200,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,4,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,4,58,98498,0,0,317,0,0,0,0,0,0,0,154,0,5,5,1000,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,4,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,15,4.5,49,98526,218,963,323,87,204,55,9603,2909,6075,1827,279,0.8,2,2,1200,77777,9,999999999,15,0,0,88,0.2,0,0 +2001,3,4,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,5,42,98555,512,1390,346,289,457,120,32741,27538,13704,4699,280,1.5,5,5,1400,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,4,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,3,30,98583,766,1390,358,498,638,146,58516,43994,17274,6622,270,1.5,5,5,2200,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,4,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,1,23,98601,962,1390,365,668,734,159,80417,51593,19288,7824,310,3.1,5,5,2600,77777,9,999999999,10,0,0,88,0.2,0,0 +2001,3,4,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,3,25,98610,1088,1390,372,774,738,196,93356,53461,23750,9698,340,3.6,5,5,2600,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,4,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,1,21,98619,1134,1390,375,816,747,206,98764,54988,25086,10230,310,5.1,5,5,4000,77777,9,999999999,10,0,0,88,0.2,0,0 +2001,3,4,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,2,22,98619,1097,1390,376,783,742,197,94645,54026,23895,9761,290,4.6,5,5,3500,77777,9,999999999,11,0,0,88,0.2,0,0 +2001,3,4,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,1,21,98619,981,1390,375,684,736,164,82446,52057,19826,8060,310,6.7,5,5,4500,77777,9,999999999,10,0,0,88,0.2,0,0 +2001,3,4,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,2,22,98619,792,1390,376,522,648,152,61394,45415,17970,6932,330,4.6,5,5,4500,77777,9,999999999,11,0,0,88,0.2,0,0 +2001,3,4,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,2,22,98619,545,1390,376,316,471,132,35912,30499,15016,5175,300,5.1,5,5,5000,77777,9,999999999,11,0,0,88,0.2,0,0 +2001,3,4,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,3,25,98610,254,1390,372,103,204,66,11450,5195,7337,2217,310,2.1,5,5,4500,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,4,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,4,29,98601,0,1130,363,0,0,0,0,0,0,0,300,2.6,3,3,3500,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,4,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,4,33,98583,0,0,339,0,0,0,0,0,0,0,310,2.1,0,0,2000,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,4,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,5,40,98564,0,0,331,0,0,0,0,0,0,0,327,0,0,0,1600,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,4,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,6,48,98546,0,0,323,0,0,0,0,0,0,0,356,0,0,0,1700,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,4,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,16.5,6,50,98541,0,0,331,0,0,0,0,0,0,0,184,0,2,2,1550,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,4,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,6,51,98536,0,0,318,0,0,0,0,0,0,0,246,0,0,0,1400,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,5,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,4,48,98527,0,0,312,0,0,0,0,0,0,0,242,0,0,0,1400,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,5,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,4,51,98517,0,0,308,0,0,0,0,0,0,0,230,1,0,0,1300,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,5,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,4,54,98507,0,0,303,0,0,0,0,0,0,0,270,1.5,0,0,1400,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,5,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,4,58,98498,0,0,299,0,0,0,0,0,0,0,188,0,0,0,1700,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,5,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,12,3.5,56,98498,0,0,312,0,0,0,0,0,0,0,215,0.8,3,3,1600,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,5,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,3,54,98498,0,0,298,0,0,0,0,0,0,0,210,1.5,0,0,1500,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,5,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,2,50,98498,0,0,297,0,0,0,0,0,0,0,103,0,0,0,1500,77777,9,999999999,12,0,0,88,0.2,0,0 +2001,3,5,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,1,41,98517,223,988,304,91,188,61,10019,3657,6706,1976,250,1.5,0,0,2500,77777,9,999999999,11,0,0,88,0.2,0,0 +2001,3,5,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,0,50,98478,517,1389,287,317,514,125,35953,32596,14281,4869,250,3.1,0,0,2500,77777,9,999999999,10,0,0,88,0.2,0,0 +2001,3,5,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,3,30,98583,771,1389,338,540,782,106,65120,49010,12773,5050,280,3.6,0,0,3000,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,5,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,3,27,98601,967,1389,347,720,784,173,86185,55922,20860,8415,270,4.1,0,0,3000,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,5,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,4,26,98619,1093,1389,358,835,794,209,100258,58366,25267,10259,270,3.1,0,0,3000,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,5,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,3,23,98628,1139,1389,361,879,798,224,105677,59625,27121,10972,270,6.7,0,0,3500,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,5,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,3,21,98637,1102,1389,366,845,795,213,101458,58961,25766,10448,270,5.1,0,0,4500,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,5,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,3,21,98637,985,1389,366,736,786,179,88190,56395,21512,8691,290,6.7,0,0,5000,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,5,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,2,20,98637,796,1389,365,564,792,110,68104,50502,13286,5281,310,6.2,0,0,5000,77777,9,999999999,11,0,0,88,0.2,0,0 +2001,3,5,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,3,23,98628,548,1389,361,342,546,127,38993,34610,14500,5051,280,6.2,0,0,4500,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,5,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,4,26,98619,258,1389,358,113,264,64,12558,6496,7147,2189,320,4.6,0,0,3500,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,5,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,5,33,98592,0,1144,345,0,0,0,0,0,0,0,300,2.6,0,0,3000,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,5,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9?9*9*9*9*9,21,7,40,98583,0,0,342,0,0,0,0,0,0,0,47,1.3,0,0,3000,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,5,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,19,6,43,98564,0,0,338,0,0,0,0,0,0,0,66,0,1,1,2200,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,5,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,7,49,98555,0,0,329,0,0,0,0,0,0,0,170,0,0,0,1800,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,5,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,7,52,98546,0,0,324,0,0,0,0,0,0,0,237,0,0,0,1600,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,5,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,7,52,98546,0,0,324,0,0,0,0,0,0,0,111,0,0,0,1400,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,6,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,15,5,51,98527,0,0,313,0,0,0,0,0,0,0,49,0,0,0,1400,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,6,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,5,51,98527,0,0,313,0,0,0,0,0,0,0,19,0,0,0,1400,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,6,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,4,51,98517,0,0,308,0,0,0,0,0,0,0,57,0,0,0,1400,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,6,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,3,51,98507,0,0,302,0,0,0,0,0,0,0,270,1.5,0,0,1600,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,6,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,3,51,98507,0,0,302,0,0,0,0,0,0,0,203,1,0,0,1800,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,6,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,12.5,3,52,98503,0,0,313,0,0,0,0,0,0,0,166,0.5,3,3,1500,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,6,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,3,54,98498,0,0,298,0,0,0,0,0,0,0,208,0,0,0,1200,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,6,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,3,51,98507,229,1012,320,88,212,53,9777,3285,5892,1817,205,0,5,5,1600,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,6,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,2,34,98555,523,1389,337,317,498,129,35845,31712,14658,4994,230,1.5,3,3,2200,77777,9,999999999,12,0,0,88,0.2,0,0 +2001,3,6,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,2,27,98592,777,1389,356,539,759,114,64664,48815,13729,5410,250,3.1,3,3,2800,77777,9,999999999,12,0,0,88,0.2,0,0 +2001,3,6,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,4,27,98610,973,1389,368,714,861,111,88487,54430,13776,5719,300,2.6,3,3,3000,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,6,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,5,24,98637,1098,1389,384,827,843,160,101432,57051,19740,8200,300,3.6,3,3,3500,77777,9,999999999,15,0,0,88,0.2,0,0 +2001,3,6,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,4,23,98637,1143,1389,389,820,695,248,97979,53319,29732,11890,240,3.1,5,5,4500,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,6,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,4,22,98646,1106,1389,394,789,733,204,95093,53288,24701,10073,270,4.1,5,5,5000,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,6,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,4,20,98654,989,1389,400,688,723,172,82622,51009,20792,8441,250,5.1,5,5,5000,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,6,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,3,19,98654,800,1389,398,527,647,154,62042,45294,18186,7032,270,4.1,5,5,5000,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,6,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,3,20,98646,552,1389,393,321,487,127,36605,31007,14582,5088,300,3.6,5,5,5000,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,6,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,3,21,98637,261,1389,388,107,210,68,11884,5687,7543,2287,300,3.1,5,5,4500,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,6,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,24,4,27,98610,0,1158,374,0,0,0,0,0,0,0,107,0,5,5,4000,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,6,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,23,6,33,98601,0,0,371,0,0,0,0,0,0,0,28,0,5,5,2500,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,6,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,6,38,98583,0,0,361,0,0,0,0,0,0,0,53,0,5,5,2000,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,6,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,6,38,98583,0,0,361,0,0,0,0,0,0,0,130,1,5,5,1600,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,6,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,6,38,98583,0,0,361,0,0,0,0,0,0,0,329,0,5,5,1800,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,6,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,20,5,37,98574,0,0,355,0,0,0,0,0,0,0,0,0,5,5,1700,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,7,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,6,43,98564,0,0,346,0,0,0,0,0,0,0,249,0,3,3,1600,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,7,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,3,37,98555,0,0,343,0,0,0,0,0,0,0,276,0,5,5,1500,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,7,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,5,45,98546,0,0,336,0,0,0,0,0,0,0,132,0,3,3,1500,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,7,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,5,48,98536,0,0,336,0,0,0,0,0,0,0,217,0,5,5,1500,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,7,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,5,45,98546,0,0,341,0,0,0,0,0,0,0,293,0,5,5,1500,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,7,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,4,48,98527,0,0,331,0,0,0,0,0,0,0,314,0,5,5,1500,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,7,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,1,36,98536,0,0,327,0,0,0,0,0,0,0,250,0,3,3,1800,77777,9,999999999,11,0,0,88,0.2,0,0 +2001,3,7,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,2,30,98574,235,1037,346,97,222,59,10705,4409,6547,1983,240,1,3,3,2000,77777,9,999999999,12,0,0,88,0.2,0,0 +2001,3,7,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,23,3,27,98601,529,1388,347,325,523,125,36894,32794,14310,4927,70,0,0,0,2000,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,7,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,25,2,22,98619,782,1388,355,551,784,108,66410,49794,13108,5193,83,1.5,0,0,2500,77777,9,999999999,11,0,0,88,0.2,0,0 +2001,3,7,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,1,18,98637,978,1388,363,732,784,179,87611,56863,21477,8659,220,3.1,0,0,3000,77777,9,999999999,10,0,0,88,0.2,0,0 +2001,3,7,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,2,18,98654,1103,1388,375,847,795,215,101704,59280,25929,10507,240,3.1,0,0,4500,77777,9,999999999,11,0,0,88,0.2,0,0 +2001,3,7,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,29.7,2.3,17,98660,1148,1388,378,888,798,228,106889,59984,27575,11138,284,2.8,0,0,5357,77777,9,999999999,12,0,0,88,0.2,0,0 +2001,3,7,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,30.3,2.7,17,98666,1111,1388,382,853,795,216,102525,59163,26123,10588,3,2.4,0,0,5714,77777,9,999999999,12,0,0,88,0.2,0,0 +2001,3,7,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31,3,17,98672,993,1388,386,744,786,181,89115,56518,21783,8809,260,2.1,0,0,5571,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,7,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,31,2.5,16,98672,804,1388,385,570,793,111,68886,50547,13413,5344,342,2.6,0,0,5428,77777,9,999999999,12,0,0,88,0.2,0,0 +2001,3,7,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31,2,16,98672,555,1388,385,348,549,129,39735,35323,14728,5142,260,3.1,0,0,5285,77777,9,999999999,11,0,0,88,0.2,0,0 +2001,3,7,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29,3,19,98654,264,1388,376,117,271,66,13051,7212,7322,2250,280,1.5,0,0,4642,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,7,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25,3,24,98619,0,1172,356,0,0,0,0,0,0,0,124,0.8,0,0,4000,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,7,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,24,3,25,98610,0,0,352,0,0,0,0,0,0,0,29,0,0,0,3200,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,7,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,23,3,27,98601,0,0,347,0,0,0,0,0,0,0,103,0,0,0,2500,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,7,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,2,27,98592,0,0,341,0,0,0,0,0,0,0,100,2.1,0,0,1600,77777,9,999999999,12,0,0,88,0.2,0,0 +2001,3,7,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,21.5,2.5,29,98587,0,0,339,0,0,0,0,0,0,0,317,2.1,0,0,1500,77777,9,999999999,12,0,0,88,0.2,0,0 +2001,3,7,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,3,30,98583,0,0,338,0,0,0,0,0,0,0,80,2.1,0,0,1400,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,8,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,5,40,98564,0,0,331,0,0,0,0,0,0,0,286,0,0,0,1700,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,8,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,20,5,37,98574,0,0,335,0,0,0,0,0,0,0,176,0,0,0,1700,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,8,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,6,45,98555,0,0,327,0,0,0,0,0,0,0,171,0,0,0,1300,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,8,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,5,45,98546,0,0,322,0,0,0,0,0,0,0,120,1.5,0,0,1200,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,8,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,5,48,98536,0,0,317,0,0,0,0,0,0,0,115,0,0,0,1300,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,8,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,5,45,98546,0,0,336,0,0,0,0,0,0,0,110,2.1,3,3,1400,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,8,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,3,39,98546,0,0,333,0,0,0,0,0,0,0,320,6.2,3,3,1600,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,8,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,7,49,98555,241,1062,329,101,236,60,11166,4503,6656,2028,261,0,0,0,1000,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,8,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,21.5,6.5,38,98587,534,1387,344,328,530,123,37286,32324,14086,4893,227,1.3,0,0,1100,77777,9,999999999,18,0,0,88,0.2,0,0 +2001,3,8,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,6,30,98619,788,1387,360,552,787,105,66737,48361,12718,5064,300,2.6,0,0,1200,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,8,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,2,20,98637,983,1387,380,726,814,149,88212,55759,18135,7436,300,1.5,3,3,2200,77777,9,999999999,11,0,0,88,0.2,0,0 +2001,3,8,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,3,19,98654,1108,1387,376,850,795,215,102156,58956,25971,10532,280,1.5,0,0,2500,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,8,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,29.8,2.3,17,98661,1153,1387,379,893,798,229,107448,60034,27759,11206,75,1.5,0,0,3545,77777,9,999999999,12,0,0,88,0.2,0,0 +2001,3,8,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,30.6,2.9,17,98668,1115,1387,384,857,795,217,103014,59136,26264,10645,184,1.5,0,0,4091,77777,9,999999999,12,0,0,88,0.2,0,0 +2001,3,8,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,31,2.4,16,98672,997,1387,385,748,786,183,89657,56825,22017,8902,326,1.5,0,0,4137,77777,9,999999999,12,0,0,88,0.2,0,0 +2001,3,8,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,31,2.1,16,98672,808,1387,385,574,794,112,69361,50837,13531,5394,295,2.4,0,0,4183,77777,9,999999999,11,0,0,88,0.2,0,0 +2001,3,8,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,30.7,1.9,16,98669,559,1387,383,352,552,129,40119,35633,14779,5170,238,3.2,0,0,4229,77777,9,999999999,11,0,0,88,0.2,0,0 +2001,3,8,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,29,2.6,18,98654,268,1387,375,120,277,66,13326,7596,7395,2278,352,2,0,0,3775,77777,9,999999999,12,0,0,88,0.2,0,0 +2001,3,8,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,25.7,2.9,23,98625,0,1186,360,0,0,0,0,0,0,0,189,1.6,0,0,3322,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,8,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,24.3,3.3,25,98613,0,0,353,0,0,0,0,0,0,0,39,1.2,0,0,2711,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,8,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,4,36,98601,0,0,348,0,0,0,0,0,0,0,330,1.5,0,0,2200,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,8,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,5,33,98592,0,0,345,0,0,0,0,0,0,0,350,2.1,0,0,1800,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,8,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,5,35,98583,0,0,340,0,0,0,0,0,0,0,310,1.5,0,0,1500,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,8,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,6,43,98564,0,0,332,0,0,0,0,0,0,0,310,0,0,0,1500,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,9,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,6,45,98555,0,0,327,0,0,0,0,0,0,0,305,0,0,0,2000,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,9,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,4,45,98536,0,0,316,0,0,0,0,0,0,0,220,1.5,0,0,1600,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,9,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,4,48,98527,0,0,312,0,0,0,0,0,0,0,260,1.5,0,0,1000,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,9,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,5,51,98527,0,0,313,0,0,0,0,0,0,0,240,1.5,0,0,1100,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,9,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,4,51,98517,0,0,308,0,0,0,0,0,0,0,260,1.5,0,0,1100,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,9,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,4,51,98517,0,0,308,0,0,0,0,0,0,0,250,1.5,0,0,1100,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,9,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,5,58,98507,0,0,304,0,0,0,0,0,0,0,128,0,0,0,900,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,9,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,16.2,5.8,50,98538,246,1087,330,104,233,62,11509,5059,6940,2109,64,0.5,2,2,1300,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,9,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,19.5,6.5,43,98568,540,1386,341,332,533,124,37803,32680,14224,4954,113,1,1,1,1700,77777,9,999999999,18,0,0,88,0.2,0,0 +2001,3,9,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,22.8,7.2,37,98598,793,1386,351,556,788,104,67227,47965,12677,5060,159,1.6,0,0,2100,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,9,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,8,32,98628,989,1386,367,733,785,173,87927,54047,20889,8490,250,2.1,0,0,2500,77777,9,999999999,21,0,0,88,0.2,0,0 +2001,3,9,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,6,25,98646,1113,1386,375,850,794,212,102283,57696,25666,10439,200,1.5,0,0,3000,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,9,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,28.5,5,22,98650,1157,1386,376,893,798,227,107573,58936,27476,11116,212,2.8,0,0,3750,77777,9,999999999,15,0,0,88,0.2,0,0 +2001,3,9,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,4,20,98654,1119,1386,377,859,795,217,103344,58712,26230,10642,270,4.1,0,0,4500,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,9,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,4,19,98663,1001,1386,382,750,786,182,89898,56232,21920,8881,250,3.6,0,0,5000,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,9,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,3,18,98663,811,1386,381,576,794,111,69676,50588,13510,5395,290,4.1,0,0,5000,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,9,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,4,20,98654,562,1386,377,353,554,128,40310,35279,14701,5165,320,3.1,0,0,4000,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,9,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,28,4.8,23,98645,271,1386,373,121,277,67,13493,7585,7498,2313,37,2.6,0,0,3425,77777,9,999999999,15,0,0,88,0.2,0,0 +2001,3,9,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,27,5.5,25,98637,0,1199,369,0,0,0,0,0,0,0,143,2,0,0,2850,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,9,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,26,6.2,28,98628,0,0,365,0,0,0,0,0,0,0,223,1.5,0,0,2275,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,9,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,7,32,98619,0,0,361,0,0,0,0,0,0,0,310,1,0,0,1700,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,9,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,23,6,33,98601,0,0,350,0,0,0,0,0,0,0,30,1.5,0,0,1500,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,9,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,7,36,98601,0,0,352,0,0,0,0,0,0,0,10,1,0,0,1500,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,9,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,20,8,46,98574,0,0,339,0,0,0,0,0,0,0,193,0,0,0,1200,77777,9,999999999,21,0,0,88,0.2,0,0 +2001,3,10,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,20,9,49,98574,0,0,340,0,0,0,0,0,0,0,90,0,0,0,1100,77777,9,999999999,23,0,0,88,0.2,0,0 +2001,3,10,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,10,56,98564,0,0,336,0,0,0,0,0,0,0,65,0,0,0,1000,77777,9,999999999,26,0,0,88,0.2,0,0 +2001,3,10,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,18,9,56,98555,0,0,345,0,0,0,0,0,0,0,156,0,3,3,900,77777,9,999999999,23,0,0,88,0.2,0,0 +2001,3,10,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,17,8,55,98546,0,0,339,0,0,0,0,0,0,0,213,0,3,3,800,77777,9,999999999,21,0,0,88,0.2,0,0 +2001,3,10,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,7,55,98536,0,0,320,0,0,0,0,0,0,0,284,0,0,0,700,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,10,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,5,51,98527,0,0,313,0,0,0,0,0,0,0,108,0,0,0,700,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,10,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,6,59,98517,0,0,310,0,0,0,0,0,0,0,7,0,0,0,700,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,10,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,5,48,98536,252,1112,317,108,246,64,12004,5729,7068,2156,230,1.5,0,0,1200,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,10,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,2,34,98555,546,1386,323,339,535,129,38644,34328,14692,5099,240,3.1,0,0,1500,77777,9,999999999,12,0,0,88,0.2,0,0 +2001,3,10,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,6,33,98601,799,1386,350,562,789,107,67931,48722,12934,5164,250,2.1,0,0,2000,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,10,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,9,32,98637,994,1386,374,737,785,174,88373,53600,20915,8515,260,1.5,0,0,2580,77777,9,999999999,23,0,0,88,0.2,0,0 +2001,3,10,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,6,23,98654,1118,1386,380,855,794,214,102850,57743,25837,10506,300,3.1,0,0,3000,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,10,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,3,18,98663,1162,1386,381,900,797,231,108414,59818,27967,11286,270,4.1,0,0,4000,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,10,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,4,18,98672,1124,1386,387,863,795,218,103837,58748,26382,10701,300,4.1,0,0,5000,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,10,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,2,16,98672,1005,1386,385,756,786,185,90585,57070,22318,9030,290,2.1,0,0,5000,77777,9,999999999,11,0,0,88,0.2,0,0 +2001,3,10,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31,2,16,98672,815,1386,385,580,793,113,70138,51075,13741,5486,270,4.1,0,0,5000,77777,9,999999999,11,0,0,88,0.2,0,0 +2001,3,10,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,2,17,98663,566,1386,380,357,555,130,40756,36011,14934,5241,330,3.6,0,0,5000,77777,9,999999999,11,0,0,88,0.2,0,0 +2001,3,10,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,2,18,98654,274,1386,375,124,284,68,13798,8248,7566,2338,194,3.1,0,0,4500,77777,9,999999999,11,0,0,88,0.2,0,0 +2001,3,10,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,3,21,98637,0,1213,366,0,0,0,0,0,0,0,310,2.6,0,0,3500,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,10,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25,4,26,98619,0,0,358,0,0,0,0,0,0,0,94,0,0,0,2500,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,10,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,23,6,33,98601,0,0,350,0,0,0,0,0,0,0,60,0,0,0,2500,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,10,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,22,6.5,37,98592,0,0,346,0,0,0,0,0,0,0,36,0,0,0,2250,77777,9,999999999,18,0,0,88,0.2,0,0 +2001,3,10,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,7,40,98583,0,0,342,0,0,0,0,0,0,0,293,0,0,0,2000,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,10,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,7,40,98583,0,0,342,0,0,0,0,0,0,0,17,0,0,0,2000,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,11,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,20,8,46,98574,0,0,339,0,0,0,0,0,0,0,126,0,0,0,2000,77777,9,999999999,21,0,0,88,0.2,0,0 +2001,3,11,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,4,42,98546,0,0,321,0,0,0,0,0,0,0,146,0,0,0,1600,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,11,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,6,51,98536,0,0,318,0,0,0,0,0,0,0,247,0,0,0,1500,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,11,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,15,7,59,98527,0,0,315,0,0,0,0,0,0,0,108,0,0,0,1750,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,11,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,5,51,98527,0,0,313,0,0,0,0,0,0,0,191,0,0,0,2000,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,11,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,4,48,98527,0,0,312,0,0,0,0,0,0,0,271,0,0,0,2000,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,11,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,3,44,98527,0,0,311,0,0,0,0,0,0,0,168,0,0,0,2000,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,11,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,4,42,98546,258,1138,321,112,254,65,12445,6364,7215,2208,234,0,0,0,2000,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,11,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,21,5.5,36,98582,552,1385,341,342,540,127,38998,33810,14518,5078,214,1.3,0,0,2250,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,11,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,7,32,98619,804,1385,361,566,791,106,68467,48425,12881,5155,320,2.6,0,0,2500,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,11,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,7,26,98646,999,1385,376,744,785,177,89228,54719,21371,8687,260,2.6,0,0,3000,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,11,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,5,21,98663,1123,1385,383,861,794,216,103564,58246,26166,10627,280,2.6,0,0,4000,77777,9,999999999,15,0,0,88,0.2,0,0 +2001,3,11,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,4,18,98672,1167,1385,387,903,797,231,108793,59437,27966,11292,320,3.1,0,0,4500,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,11,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,5,19,98672,1128,1385,389,866,795,218,104169,58343,26364,10702,270,3.6,0,0,5000,77777,9,999999999,15,0,0,88,0.2,0,0 +2001,3,11,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,32,5.5,19,98680,1009,1385,394,755,786,182,90576,55679,21960,8918,136,0.6,0,0,4972,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,11,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,31.5,4.5,18,98676,819,1385,390,581,795,111,70337,50163,13461,5392,119,3.2,0,0,5194,77777,9,999999999,15,0,0,88,0.2,0,0 +2001,3,11,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,30.5,4.5,19,98667,569,1385,385,358,557,129,40917,35536,14812,5224,201,3,0,0,5166,77777,9,999999999,15,0,0,88,0.2,0,0 +2001,3,11,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,29.5,4.5,20,98659,278,1385,380,125,283,69,13953,8189,7669,2374,47,2.8,0,0,3788,77777,9,999999999,15,0,0,88,0.2,0,0 +2001,3,11,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,27,5.5,25,98637,0,1226,369,0,0,0,0,0,0,0,12,2.1,0,0,3261,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,11,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,25,6,30,98619,0,0,360,0,0,0,0,0,0,0,235,1.1,0,0,2583,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,11,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,24,7.5,35,98610,0,0,357,0,0,0,0,0,0,0,222,1.4,0,0,2405,77777,9,999999999,20,0,0,88,0.2,0,0 +2001,3,11,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,23.5,7.2,35,98605,0,0,354,0,0,0,0,0,0,0,247,1.7,0,0,2402,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,11,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,6,33,98592,0,0,346,0,0,0,0,0,0,0,100,2,0,0,2250,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,11,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,22.2,6,35,98594,0,0,347,0,0,0,0,0,0,0,144,2.3,0,0,1925,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,12,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,21.5,6,36,98587,0,0,343,0,0,0,0,0,0,0,10,2,0,0,1850,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,12,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,20.8,6,38,98581,0,0,340,0,0,0,0,0,0,0,192,1.8,0,0,1775,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,12,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,6,40,98574,0,0,336,0,0,0,0,0,0,0,80,1.5,0,0,1700,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,12,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,0,28,98564,0,0,325,0,0,0,0,0,0,0,100,1.5,0,0,1700,77777,9,999999999,9,0,0,88,0.2,0,0 +2001,3,12,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,5,40,98564,0,0,331,0,0,0,0,0,0,0,90,1.5,0,0,1800,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,12,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,6,43,98564,0,0,332,0,0,0,0,0,0,0,111,0,0,0,1800,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,12,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,5,40,98564,0,0,331,0,0,0,0,0,0,0,180,2.6,0,0,1800,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,12,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,4,58,98498,264,1163,299,116,260,66,12862,6880,7368,2261,150,3.1,0,0,2000,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,12,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,4,26,98619,557,1384,358,348,543,129,39657,34636,14750,5163,170,3.1,0,0,2800,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,12,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,5,23,98646,810,1384,373,572,790,110,69227,49540,13294,5317,130,3.6,0,0,3500,77777,9,999999999,15,0,0,88,0.2,0,0 +2001,3,12,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,5,22,98654,1004,1384,378,751,785,181,90072,55725,21822,8858,130,3.1,0,0,3500,77777,9,999999999,15,0,0,88,0.2,0,0 +2001,3,12,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,6,22,98663,1127,1384,385,864,794,216,103969,57828,26171,10637,110,4.1,0,0,4000,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,12,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,30.5,6,21,98667,1171,1384,387,904,797,229,108997,58567,27787,11237,222,4.1,0,0,4250,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,12,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,6,21,98672,1132,1384,390,868,795,218,104491,57911,26342,10702,110,4.1,0,0,4500,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,12,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,33,9,23,98689,1013,1384,404,754,786,179,90521,53982,21578,8799,50,0,0,0,4500,77777,9,999999999,23,0,0,88,0.2,0,0 +2001,3,12,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,7,21,98680,822,1384,396,582,798,108,70547,49091,13102,5267,130,3.1,0,0,5000,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,12,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,7,22,98672,572,1384,391,359,559,128,41066,34950,14676,5202,110,3.1,0,0,5000,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,12,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,7,24,98663,281,1384,403,125,270,70,13907,7820,7849,2428,130,3.1,3,3,2800,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,12,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,8,30,98637,0,1240,388,0,0,0,0,0,0,0,110,2.1,3,3,2800,77777,9,999999999,21,0,0,88,0.2,0,0 +2001,3,12,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,8,34,98619,0,0,362,0,0,0,0,0,0,0,120,2.6,0,0,2500,77777,9,999999999,21,0,0,88,0.2,0,0 +2001,3,12,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,9,36,98619,0,0,364,0,0,0,0,0,0,0,110,3.1,0,0,2200,77777,9,999999999,23,0,0,88,0.2,0,0 +2001,3,12,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,8,34,98619,0,0,378,0,0,0,0,0,0,0,110,3.6,3,3,2500,77777,9,999999999,21,0,0,88,0.2,0,0 +2001,3,12,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,5,31,98601,0,0,364,0,0,0,0,0,0,0,80,4.1,3,3,2500,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,12,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,5,31,98601,0,0,349,0,0,0,0,0,0,0,90,4.1,0,0,2200,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,13,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,5,33,98592,0,0,345,0,0,0,0,0,0,0,100,4.1,0,0,2500,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,13,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,5,33,98592,0,0,359,0,0,0,0,0,0,0,120,2.6,3,3,2500,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,13,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,22,5,33,98592,0,0,359,0,0,0,0,0,0,0,120,2.6,3,3,2500,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,13,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,4,31,98592,0,0,358,0,0,0,0,0,0,0,120,3.1,3,3,2800,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,13,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,4,31,98592,0,0,364,0,0,0,0,0,0,0,130,2.1,5,5,3000,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,13,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,4,33,98583,0,0,359,0,0,0,0,0,0,0,110,2.6,5,5,3000,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,13,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,2,27,98592,0,0,361,0,0,0,0,0,0,0,150,4.1,5,5,3000,77777,9,999999999,12,0,0,88,0.2,0,0 +2001,3,13,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25,1,21,98619,270,1189,375,112,178,77,12308,5871,8507,2521,254,4.1,5,5,3500,77777,9,999999999,10,0,0,88,0.2,0,0 +2001,3,13,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,2,19,98646,563,1383,392,329,487,131,37556,31654,14976,5246,140,4.1,5,5,3500,77777,9,999999999,11,0,0,88,0.2,0,0 +2001,3,13,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,2,18,98654,815,1383,397,539,644,160,63525,45796,18908,7327,120,6.2,5,5,3500,77777,9,999999999,11,0,0,88,0.2,0,0 +2001,3,13,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,6,21,98672,1009,1383,413,702,710,183,84167,50273,22096,8972,120,3.1,5,5,3500,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,13,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,5,18,98680,1132,1383,417,809,725,216,97532,52968,26126,10621,130,3.1,5,5,4000,77777,9,999999999,15,0,0,88,0.2,0,0 +2001,3,13,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,5,17,98689,1175,1383,423,847,727,228,102200,53613,27686,11200,170,3.6,5,5,4500,77777,9,999999999,15,0,0,88,0.2,0,0 +2001,3,13,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,7,19,98697,1136,1383,431,810,718,220,97461,52117,26591,10798,100,2.1,5,5,3500,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,13,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,6,19,98689,1017,1383,424,708,684,205,84283,50095,24559,9867,110,5.1,5,5,3500,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,13,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,7,20,98689,826,1383,419,577,771,117,69605,48468,14147,5668,80,3.1,3,3,3500,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,13,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,8,24,98672,576,1383,410,356,531,135,40583,33788,15472,5443,90,6.2,3,3,3500,77777,9,999999999,21,0,0,88,0.2,0,0 +2001,3,13,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,9,29,98654,284,1383,406,119,220,74,13211,6572,8246,2529,100,3.1,5,5,2500,77777,9,999999999,23,0,0,88,0.2,0,0 +2001,3,13,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,28,8.7,30,98645,0,1253,378,0,0,0,0,0,0,0,101,3.1,0,0,2500,77777,9,999999999,22,0,0,88,0.2,0,0 +2001,3,13,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,27,8.3,31,98637,0,0,373,0,0,0,0,0,0,0,95,3.1,0,0,2500,77777,9,999999999,21,0,0,88,0.2,0,0 +2001,3,13,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,8,32,98628,0,0,383,0,0,0,0,0,0,0,80,3.1,3,3,2500,77777,9,999999999,21,0,0,88,0.2,0,0 +2001,3,13,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,9,36,98619,0,0,379,0,0,0,0,0,0,0,110,3.6,3,3,2500,77777,9,999999999,23,0,0,88,0.2,0,0 +2001,3,13,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,24.5,8.5,36,98615,0,0,361,0,0,0,0,0,0,0,46,2.8,0,0,2350,77777,9,999999999,22,0,0,88,0.2,0,0 +2001,3,13,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,8,36,98610,0,0,379,0,0,0,0,0,0,0,20,2.1,5,5,2200,77777,9,999999999,21,0,0,88,0.2,0,0 +2001,3,14,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,7,34,98610,0,0,378,0,0,0,0,0,0,0,90,3.1,5,5,2200,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,14,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,6,33,98601,0,0,371,0,0,0,0,0,0,0,60,4.1,5,5,2400,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,14,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,7,36,98601,0,0,373,0,0,0,0,0,0,0,120,3.1,5,5,2600,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,14,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,6,33,98601,0,0,371,0,0,0,0,0,0,0,80,4.1,5,5,2800,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,14,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,6,33,98601,0,0,371,0,0,0,0,0,0,0,30,4.1,5,5,2400,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,14,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,5,35,98583,0,0,360,0,0,0,0,0,0,0,90,4.1,5,5,2200,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,14,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,4,33,98583,0,0,359,0,0,0,0,0,0,0,30,5.1,5,5,1800,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,14,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,22.3,3.7,29,98595,276,1214,344,124,275,69,13736,7994,7663,2367,204,5.1,0,0,2200,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,14,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,23.7,3.3,27,98607,569,1383,351,357,601,110,41394,36280,12787,4624,136,5.1,0,0,2600,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,14,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,3,24,98619,821,1383,378,543,673,144,64513,46000,17125,6732,50,5.1,5,5,3000,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,14,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,4,24,98628,1014,1383,384,708,718,181,85124,51179,21904,8908,60,5.1,5,5,3000,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,14,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,3,21,98637,1137,1383,388,816,730,214,98469,53807,26029,10584,80,5.1,5,5,3000,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,14,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,3,20,98646,1180,1383,393,853,734,226,103129,54451,27533,11141,80,5.1,5,5,3000,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,14,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,4,23,98637,1140,1383,389,817,688,249,97524,52876,29909,11951,90,6.7,5,5,3000,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,14,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,27.5,4.5,23,98641,1020,1383,370,766,811,167,92699,56276,20303,8327,209,6.4,0,0,4500,77777,9,999999999,15,0,0,88,0.2,0,0 +2001,3,14,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,5,23,98646,829,1383,390,582,637,200,67402,48135,23242,8778,110,6.2,3,3,6000,77777,9,999999999,15,0,0,88,0.2,0,0 +2001,3,14,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,4,23,98637,579,1383,412,189,72,159,21284,5073,17955,6106,70,4.1,9,9,3000,3000,9,999999999,14,0,0,88,0.2,0,0 +2001,3,14,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,5,26,98628,287,1383,408,68,0,68,6662,0,6711,2387,90,6.7,9,9,3000,3000,9,999999999,15,0,0,88,0.2,0,0 +2001,3,14,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,6,31,98610,0,1266,399,0,0,0,0,0,0,0,80,2.6,9,9,3000,3000,9,999999999,17,0,0,88,0.2,0,0 +2001,3,14,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,7,36,98601,0,0,367,0,0,0,0,0,0,0,70,2.6,3,3,3000,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,14,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,7,38,98592,0,0,368,0,0,0,0,0,0,0,150,2.1,5,5,2500,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,14,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,8,41,98592,0,0,363,0,0,0,0,0,0,0,120,1.5,3,3,2500,77777,9,999999999,21,0,0,88,0.2,0,0 +2001,3,14,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,9,46,98583,0,0,365,0,0,0,0,0,0,0,130,1.5,5,5,2500,77777,9,999999999,23,0,0,88,0.2,0,0 +2001,3,14,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,8,43,98583,0,0,364,0,0,0,0,0,0,0,60,2.1,5,5,2500,77777,9,999999999,21,0,0,88,0.2,0,0 +2001,3,15,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,8,46,98574,0,0,359,0,0,0,0,0,0,0,90,2.1,5,5,2500,77777,9,999999999,21,0,0,88,0.2,0,0 +2001,3,15,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,6,40,98574,0,0,357,0,0,0,0,0,0,0,60,2.6,5,5,2500,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,15,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,9,52,98564,0,0,355,0,0,0,0,0,0,0,201,0,5,5,2400,77777,9,999999999,23,0,0,88,0.2,0,0 +2001,3,15,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,8,49,98564,0,0,354,0,0,0,0,0,0,0,47,0,5,5,2400,77777,9,999999999,21,0,0,88,0.2,0,0 +2001,3,15,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,5,40,98564,0,0,371,0,0,0,0,0,0,0,130,4.1,9,9,2200,3000,0,919999999,16,0,0,88,0.2,0,0 +2001,3,15,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,6,40,98574,0,0,357,0,0,0,0,0,0,0,70,2.1,5,5,2200,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,15,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,8,49,98564,0,0,354,0,0,0,0,0,0,0,283,0,5,5,2000,77777,9,999999999,21,0,0,88,0.2,0,0 +2001,3,15,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,8,43,98583,282,1240,358,125,264,71,13852,7612,7915,2448,110,2.1,3,3,2000,77777,9,999999999,21,0,0,88,0.2,0,0 +2001,3,15,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,6,31,98610,574,1382,371,356,532,135,40565,34274,15426,5424,70,3.1,3,3,2200,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,15,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,6,30,98619,826,1382,376,578,767,119,69634,48835,14423,5771,40,3.6,3,3,2000,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,15,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,7,26,98646,1020,1382,376,762,856,130,93875,54790,16111,6712,170,2.1,0,0,2200,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,15,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,7,26,98646,1142,1382,376,875,794,219,105444,57448,26485,10764,130,2.6,0,0,2200,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,15,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,8,27,98654,1184,1382,399,901,873,153,112150,56427,19072,7954,200,2.6,3,3,2500,77777,9,999999999,21,0,0,88,0.2,0,0 +2001,3,15,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,8,25,98663,1144,1382,404,865,866,147,107314,55803,18335,7669,140,1,3,3,2800,77777,9,999999999,21,0,0,88,0.2,0,0 +2001,3,15,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,6,21,98672,1024,1382,407,758,855,124,93776,54464,15373,6419,180,2.1,3,3,3500,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,15,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,8,23,98680,832,1382,415,582,770,118,70183,48138,14258,5725,260,3.6,3,3,3500,77777,9,999999999,21,0,0,88,0.2,0,0 +2001,3,15,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,7,22,98672,582,1382,408,362,591,113,41885,35274,13131,4774,10,1.5,3,3,3500,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,15,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,29,6,23,98654,290,1382,380,133,291,72,14784,9031,8018,2498,350,4.1,0,0,3200,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,15,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,8,30,98637,0,1279,372,0,0,0,0,0,0,0,20,1.5,0,0,2400,77777,9,999999999,21,0,0,88,0.2,0,0 +2001,3,15,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,26,8,32,98628,0,0,367,0,0,0,0,0,0,0,244,1.8,0,0,2300,77777,9,999999999,21,0,0,88,0.2,0,0 +2001,3,15,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,8,34,98619,0,0,362,0,0,0,0,0,0,0,30,2.1,0,0,2200,77777,9,999999999,21,0,0,88,0.2,0,0 +2001,3,15,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,9,36,98619,0,0,364,0,0,0,0,0,0,0,10,1.5,0,0,2000,77777,9,999999999,23,0,0,88,0.2,0,0 +2001,3,15,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,7,32,98619,0,0,361,0,0,0,0,0,0,0,340,4.1,0,0,2500,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,15,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,9,38,98610,0,0,359,0,0,0,0,0,0,0,310,1.5,0,0,2500,77777,9,999999999,23,0,0,88,0.2,0,0 +2001,3,16,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,5,31,98601,0,0,349,0,0,0,0,0,0,0,320,3.1,0,0,2500,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,16,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,8,43,98583,0,0,343,0,0,0,0,0,0,0,320,1.5,0,0,2500,77777,9,999999999,21,0,0,88,0.2,0,0 +2001,3,16,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,20.5,7.5,43,98578,0,0,347,0,0,0,0,0,0,0,274,1.5,1,1,2350,77777,9,999999999,20,0,0,88,0.2,0,0 +2001,3,16,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,7,43,98574,0,0,338,0,0,0,0,0,0,0,350,1.5,0,0,2200,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,16,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,18,6,45,98555,0,0,338,0,0,0,0,0,0,0,123,2,2,2,1900,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,16,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,5,48,98536,0,0,317,0,0,0,0,0,0,0,230,2.6,0,0,1600,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,16,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,16.5,5,46,98541,0,0,330,0,0,0,0,0,0,0,133,2,2,2,1150,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,16,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,5,45,98546,288,1266,322,131,286,71,14571,8883,7970,2478,260,1.5,0,0,700,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,16,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,4,33,98583,580,1381,339,366,557,132,41900,36140,15192,5377,300,3.6,0,0,1100,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,16,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,4,29,98601,831,1381,348,592,792,115,71649,50616,13948,5600,310,5.1,0,0,2200,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,16,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,25.5,3,23,98623,1025,1381,359,771,785,189,92603,56828,22752,9237,106,5.6,0,0,2850,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,16,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,2,19,98646,1146,1381,370,886,794,227,106734,59651,27448,11094,320,6.2,0,0,3500,77777,9,999999999,11,0,0,88,0.2,0,0 +2001,3,16,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,1,17,98646,1188,1381,368,927,797,241,111779,60713,29205,11732,320,6.7,0,0,4500,77777,9,999999999,10,0,0,88,0.2,0,0 +2001,3,16,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,28.5,0.5,16,98650,1148,1381,370,890,794,229,107122,60224,27740,11194,75,7.2,0,0,4750,77777,9,999999999,10,0,0,88,0.2,0,0 +2001,3,16,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,0,15,98654,1027,1381,388,768,774,191,92177,57024,23092,9358,310,7.7,3,3,5000,77777,9,999999999,9,0,0,88,0.2,0,0 +2001,3,16,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,2,18,98654,835,1381,397,556,592,198,64640,45205,23123,8766,320,4.1,5,5,5000,77777,9,999999999,11,0,0,88,0.2,0,0 +2001,3,16,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,2,19,98646,585,1381,392,346,497,136,39588,32974,15577,5503,290,6.2,5,5,5000,77777,9,999999999,11,0,0,88,0.2,0,0 +2001,3,16,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,2,20,98637,293,1381,386,126,235,76,14006,8165,8501,2615,300,4.6,5,5,4500,77777,9,999999999,11,0,0,88,0.2,0,0 +2001,3,16,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,3,24,98619,0,1291,378,0,0,0,0,0,0,0,300,3.6,5,5,4000,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,16,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,4,29,98601,0,0,363,0,0,0,0,0,0,0,290,3.1,3,3,3000,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,16,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,5,35,98583,0,0,355,0,0,0,0,0,0,0,270,2.6,3,3,2800,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,16,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,5,35,98583,0,0,355,0,0,0,0,0,0,0,290,2.6,3,3,2500,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,16,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,5,37,98574,0,0,335,0,0,0,0,0,0,0,230,1,0,0,2200,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,16,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,4,37,98564,0,0,330,0,0,0,0,0,0,0,260,2.1,0,0,2000,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,17,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,18.5,4,38,98560,0,0,327,0,0,0,0,0,0,0,107,1.7,0,0,2500,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,17,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,4,39,98555,0,0,325,0,0,0,0,0,0,0,186,1.4,0,0,3000,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,17,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,4,42,98546,0,0,321,0,0,0,0,0,0,0,200,1,0,0,1500,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,17,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,16,3.5,43,98536,0,0,322,0,0,0,0,0,0,0,302,1,1,1,1500,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,17,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,3,44,98527,0,0,311,0,0,0,0,0,0,0,240,1,0,0,1500,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,17,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13.4,7.6,68,98127,0,0,309,0,0,0,0,0,0,0,50,2,0,0,4000,77777,9,999999999,20,0,0,88,0.2,0,0 +2001,3,17,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,2,41,98527,0,0,310,0,0,0,0,0,0,0,240,2.1,0,0,2000,77777,9,999999999,12,0,0,88,0.2,0,0 +2001,3,17,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,1,34,98546,293,1292,317,136,251,82,14974,9410,9124,2748,260,3.1,0,0,2400,77777,9,999999999,11,0,0,88,0.2,0,0 +2001,3,17,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,3,30,98583,586,1380,338,372,560,134,42530,36777,15384,5453,260,2.6,0,0,2800,77777,9,999999999,13,0,0,88,0.2,0,0 +2001,3,17,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,4,27,98610,837,1380,353,597,793,116,72242,50774,14067,5655,260,3.6,0,0,3000,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,17,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,5,24,98637,1029,1380,369,773,785,188,92910,56068,22642,9213,250,3.6,0,0,3000,77777,9,999999999,15,0,0,88,0.2,0,0 +2001,3,17,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,4,22,98646,1151,1380,372,888,794,225,106973,58883,27291,11046,310,4.1,0,0,3000,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,17,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,4,20,98654,1192,1380,377,927,797,238,111819,59563,28866,11624,280,4.1,0,0,4000,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,17,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,4,18,98672,1152,1380,387,888,794,226,107067,58906,27332,11061,280,6.2,0,0,4000,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,17,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,4,18,98672,1031,1380,387,776,785,189,93212,56539,22851,9289,290,2.6,0,0,4500,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,17,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,4,18,98672,839,1380,387,599,794,116,72506,50868,14076,5661,280,2.6,0,0,4500,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,17,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,4,19,98663,588,1380,382,373,563,133,42746,36720,15317,5444,310,6.2,0,0,4000,77777,9,999999999,14,0,0,88,0.2,0,0 +2001,3,17,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,5,22,98654,296,1380,378,137,297,73,15243,9711,8173,2554,320,4.1,0,0,3500,77777,9,999999999,15,0,0,88,0.2,0,0 +2001,3,17,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,6,26,98637,0,1304,370,0,0,0,0,0,0,0,350,2.1,0,0,2800,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,17,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,8,32,98628,0,0,367,0,0,0,0,0,0,0,287,0,0,0,2600,77777,9,999999999,21,0,0,88,0.2,0,0 +2001,3,17,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,24,9,38,98610,0,0,359,0,0,0,0,0,0,0,93,0,0,0,2400,77777,9,999999999,23,0,0,88,0.2,0,0 +2001,3,17,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,24,7,34,98610,0,0,356,0,0,0,0,0,0,0,268,0,0,0,1900,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,17,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,23,7,36,98601,0,0,352,0,0,0,0,0,0,0,160,0,0,0,1700,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,17,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,7,40,98583,0,0,342,0,0,0,0,0,0,0,345,0,0,0,1700,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,18,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,7,40,98583,0,0,342,0,0,0,0,0,0,0,277,0,0,0,1500,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,18,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,20,7,43,98574,0,0,338,0,0,0,0,0,0,0,322,0,0,0,1400,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,18,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,6,43,98564,0,0,332,0,0,0,0,0,0,0,233,0,0,0,1400,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,18,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,5,40,98564,0,0,331,0,0,0,0,0,0,0,163,0,0,0,1400,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,18,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,6,45,98555,0,0,327,0,0,0,0,0,0,0,331,0.3,0,0,1600,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,18,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,6,48,98546,0,0,323,0,0,0,0,0,0,0,73,0.6,0,0,1400,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,18,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,5,45,98546,0,0,322,0,0,0,0,0,0,0,184,0.9,0,0,1400,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,18,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,20,6,40,98573,299,1318,343,139,297,74,15432,9810,8272,2589,91,1.2,1,1,1450,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,18,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,7,36,98601,591,1379,352,374,565,132,42834,35942,15147,5413,270,1.5,0,0,1500,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,18,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,25.7,6.3,29,98625,842,1379,364,599,797,113,72704,49896,13715,5535,108,2.5,0,0,1666,77777,9,999999999,18,0,0,88,0.2,0,0 +2001,3,18,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,28.3,5.7,24,98648,1034,1379,376,777,785,188,93377,55823,22710,9250,137,3.6,0,0,1833,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,18,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,5,19,98672,1155,1379,389,891,794,225,107357,58491,27301,11055,280,4.6,0,0,2000,77777,9,999999999,15,0,0,88,0.2,0,0 +2001,3,18,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,6,20,98680,1197,1379,395,928,797,236,111991,58697,28686,11570,290,4.1,0,0,2500,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,18,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,5,18,98680,1155,1379,394,891,794,225,107353,58493,27303,11056,300,3.6,0,0,3500,77777,9,999999999,15,0,0,88,0.2,0,0 +2001,3,18,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,5,18,98680,1034,1379,394,778,785,189,93467,56144,22821,9288,290,5.7,0,0,3500,77777,9,999999999,15,0,0,88,0.2,0,0 +2001,3,18,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,5,18,98680,842,1379,394,600,795,115,72785,50509,13966,5627,280,5.7,0,0,3500,77777,9,999999999,15,0,0,88,0.2,0,0 +2001,3,18,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,5,18,98680,591,1379,394,375,565,133,42971,36594,15296,5452,300,4.1,0,0,3500,77777,9,999999999,15,0,0,88,0.2,0,0 +2001,3,18,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,6,22,98663,299,1379,385,138,298,74,15422,9799,8262,2586,320,4.1,0,0,3500,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,18,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,6,23,98654,0,1317,380,0,0,0,0,0,0,0,310,3.1,0,0,2500,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,18,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,7,28,98637,0,0,371,0,0,0,0,0,0,0,320,2.1,0,0,2000,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,18,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,6,26,98637,0,0,370,0,0,0,0,0,0,0,320,1.5,0,0,2000,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,18,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,5,26,98628,0,0,364,0,0,0,0,0,0,0,360,2.1,0,0,1500,77777,9,999999999,15,0,0,88,0.2,0,0 +2001,3,18,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,24.5,7,33,98615,0,0,359,0,0,0,0,0,0,0,40,1.8,0,0,1450,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,18,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,9,41,98601,0,0,354,0,0,0,0,0,0,0,200,1.5,0,0,1400,77777,9,999999999,23,0,0,88,0.2,0,0 +2001,3,19,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,6,38,98583,0,0,341,0,0,0,0,0,0,0,43,0,0,0,1400,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,19,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,20,8,46,98574,0,0,339,0,0,0,0,0,0,0,181,0,0,0,1400,77777,9,999999999,21,0,0,88,0.2,0,0 +2001,3,19,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,20,7,43,98574,0,0,338,0,0,0,0,0,0,0,13,0,0,0,1500,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,19,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,19.5,7,44,98569,0,0,342,0,0,0,0,0,0,0,212,0,1,1,1500,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,19,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,7,46,98564,0,0,333,0,0,0,0,0,0,0,241,0,0,0,1500,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,19,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,5,40,98564,0,0,350,0,0,0,0,0,0,0,71,0,5,5,1500,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,19,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,21,5.5,36,98582,0,0,341,0,0,0,0,0,0,0,249,0.6,0,0,1450,77777,9,999999999,16,0,0,88,0.2,0,0 +2001,3,19,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,23,6,33,98601,305,1344,350,143,304,75,15888,10361,8416,2643,153,1.3,0,0,1400,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,19,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,25,6.5,31,98619,597,1379,361,379,619,111,44064,37043,12944,4758,159,1.9,0,0,1350,77777,9,999999999,18,0,0,88,0.2,0,0 +2001,3,19,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,7,28,98637,847,1379,393,561,646,164,66215,44871,19455,7629,330,2.6,5,5,1300,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,19,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,7,22,98672,1039,1379,415,726,588,282,84543,47710,33082,12732,250,2.6,5,5,2000,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,19,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,6,19,98689,1160,1379,449,461,88,387,53329,7906,45041,16519,350,2.6,9,9,2500,6000,9,999999999,17,0,0,88,0.2,0,0 +2001,3,19,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,4,16,98689,1201,1379,446,482,52,437,55589,4898,50718,18043,300,4.1,9,9,2500,6000,9,999999999,14,0,0,88,0.2,0,0 +2001,3,19,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,7,19,98697,1159,1379,457,460,51,417,52856,4712,48250,17302,250,2.1,9,9,2800,6000,9,999999999,19,0,0,88,0.2,0,0 +2001,3,19,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,7,20,98689,1038,1379,451,402,74,346,46053,6575,39887,14609,270,3.6,9,9,3500,6000,9,999999999,19,0,0,88,0.2,0,0 +2001,3,19,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,6,19,98689,845,1379,449,311,66,270,35252,5605,30828,10982,270,3.1,9,9,3200,6000,9,999999999,17,0,0,88,0.2,0,0 +2001,3,19,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,7,21,98680,594,1379,445,194,34,179,21712,2492,20167,6735,270,2.1,9,9,3200,6000,9,999999999,19,0,0,88,0.2,0,0 +2001,3,19,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,30.7,7.3,23,98669,302,1379,390,140,239,88,15383,9055,9669,2901,247,1.4,0,0,2800,6000,9,999999999,19,0,0,88,0.2,0,0 +2001,3,19,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,29.3,7.7,26,98657,0,1329,383,0,0,0,0,0,0,0,308,0.7,0,0,2400,6000,9,999999999,20,0,0,88,0.2,0,0 +2001,3,19,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,8,28,98646,0,0,400,0,0,0,0,0,0,0,64,0,5,5,2000,77777,9,999999999,21,0,0,88,0.2,0,0 +2001,3,19,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,27.5,7,27,98641,0,0,374,0,0,0,0,0,0,0,52,0.8,0,0,1400,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,19,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,6,26,98637,0,0,392,0,0,0,0,0,0,0,140,1.5,5,5,800,6000,9,999999999,17,0,0,88,0.2,0,0 +2001,3,19,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,26.5,6.8,28,98632,0,0,368,0,0,0,0,0,0,0,172,1.6,0,0,850,6000,9,999999999,18,0,0,88,0.2,0,0 +2001,3,19,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,26,7.5,31,98628,0,0,367,0,0,0,0,0,0,0,272,1.8,0,0,900,6000,9,999999999,20,0,0,88,0.2,0,0 +2001,3,20,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,25.5,8.2,33,98623,0,0,365,0,0,0,0,0,0,0,271,1.9,0,0,950,6000,9,999999999,21,0,0,88,0.2,0,0 +2001,3,20,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,9,36,98619,0,0,385,0,0,0,0,0,0,0,90,2.1,5,5,1000,77777,9,999999999,23,0,0,88,0.2,0,0 +2001,3,20,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,9,38,98610,0,0,374,0,0,0,0,0,0,0,100,1,3,3,1300,3000,9,999999999,23,0,0,88,0.2,0,0 +2001,3,20,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,23.5,8.5,38,98606,0,0,356,0,0,0,0,0,0,0,160,1,0,0,1400,3000,9,999999999,22,0,0,88,0.2,0,0 +2001,3,20,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,8,38,98601,0,0,374,0,0,0,0,0,0,0,140,1,5,5,1500,77777,9,999999999,21,0,0,88,0.2,0,0 +2001,3,20,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,7,36,98601,0,0,373,0,0,0,0,0,0,0,160,1,5,5,1700,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,20,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,24,7.5,35,98610,0,0,357,0,0,0,0,0,0,0,55,1.2,0,0,1600,77777,9,999999999,20,0,0,88,0.2,0,0 +2001,3,20,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,8,34,98619,311,1370,384,136,241,81,15069,8697,9064,2814,170,1.5,5,5,1500,77777,9,999999999,21,0,0,88,0.2,0,0 +2001,3,20,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,7,28,98637,603,1378,393,357,489,143,40694,32255,16358,5805,150,3.1,5,5,2100,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,20,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,6,22,98663,853,1378,408,567,608,190,66163,44685,22311,8595,130,4.1,5,5,2600,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,20,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,5,19,98672,1044,1378,405,777,822,154,94933,55375,18866,7818,170,5.1,3,3,2800,77777,9,999999999,15,0,0,88,0.2,0,0 +2001,3,20,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,6,19,98689,1164,1378,418,886,843,173,109013,57164,21444,8881,140,5.1,3,3,3000,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,20,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,7,19,98697,1205,1378,431,869,703,254,104401,52581,30704,12285,120,4.1,5,5,3500,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,20,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,7,19,98697,1162,1378,431,832,693,248,99654,51889,29829,11955,140,5.1,5,5,3500,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,20,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,34.5,8,20,98701,1041,1378,411,780,815,164,94728,54780,20056,8280,2,5.1,0,0,6250,77777,9,999999999,21,0,0,88,0.2,0,0 +2001,3,20,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,35,9,20,98705,848,1378,440,560,614,182,65496,43541,21387,8287,1,5.1,5,5,9000,77777,9,999999999,23,0,0,88,0.2,0,0 +2001,3,20,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,8,21,98689,597,1378,427,352,483,142,40074,31562,16260,5757,120,5.1,5,5,3500,77777,9,999999999,21,0,0,88,0.2,0,0 +2001,3,20,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,9,24,98680,305,1378,423,132,233,80,14575,8017,8896,2754,70,4.6,5,5,3000,77777,9,999999999,23,0,0,88,0.2,0,0 +2001,3,20,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,8,25,98663,0,1342,410,0,0,0,0,0,0,0,70,5.1,5,5,2500,77777,9,999999999,21,0,0,88,0.2,0,0 +2001,3,20,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,9,30,98646,0,0,395,0,0,0,0,0,0,0,90,5.1,3,3,2000,77777,9,999999999,23,0,0,88,0.2,0,0 +2001,3,20,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,11,37,98637,0,0,392,0,0,0,0,0,0,0,90,3.6,3,3,2000,77777,9,999999999,28,0,0,88,0.2,0,0 +2001,3,20,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,11,39,98628,0,0,393,0,0,0,0,0,0,0,100,3.6,5,5,2000,77777,9,999999999,28,0,0,88,0.2,0,0 +2001,3,20,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,9,36,98619,0,0,385,0,0,0,0,0,0,0,30,4.6,5,5,1500,77777,9,999999999,23,0,0,88,0.2,0,0 +2001,3,20,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,7,32,98619,0,0,383,0,0,0,0,0,0,0,30,3.1,5,5,2200,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,21,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,5,29,98610,0,0,375,0,0,0,0,0,0,0,70,4.1,5,5,2400,77777,9,999999999,15,0,0,88,0.2,0,0 +2001,3,21,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,5,29,98610,0,0,369,0,0,0,0,0,0,0,70,5.1,3,3,2500,77777,9,999999999,15,0,0,88,0.2,0,0 +2001,3,21,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,7,36,98601,0,0,367,0,0,0,0,0,0,0,110,2.6,3,3,2500,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,21,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,8,41,98592,0,0,369,0,0,0,0,0,0,0,300,1.5,5,5,2500,77777,9,999999999,21,0,0,88,0.2,0,0 +2001,3,21,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,7,40,98583,0,0,363,0,0,0,0,0,0,0,170,1,5,5,2500,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,21,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,7,43,98574,0,0,358,0,0,0,0,0,0,0,230,1,5,5,2200,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,21,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,9,49,98574,3,19,381,1,0,1,55,0,55,23,320,2.1,9,9,1400,3000,9,999999999,23,0,0,88,0.2,0,0 +2001,3,21,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,22,7.5,39,98592,317,1377,354,150,250,92,16478,10211,10186,3075,356,2.8,1,1,1850,3000,9,999999999,20,0,0,88,0.2,0,0 +2001,3,21,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,6,31,98610,608,1377,399,200,73,168,22600,5230,19036,6546,90,3.6,9,9,2300,3000,9,999999999,17,0,0,88,0.2,0,0 +2001,3,21,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,6,28,98628,858,1377,387,570,390,327,63842,36003,36842,12435,210,3.1,5,5,2500,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,21,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,7,32,98619,1049,1377,405,407,83,344,46734,7275,39731,14646,240,4.1,9,9,1600,3000,9,999999999,19,0,0,88,0.2,0,0 +2001,3,21,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,8,30,98637,1168,1377,394,836,597,329,97925,49231,38832,14850,210,2.1,5,5,2000,77777,9,999999999,21,0,0,88,0.2,0,0 +2001,3,21,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,10,32,98646,1208,1377,402,868,710,244,104492,51239,29578,11909,230,2.1,5,5,2000,77777,9,999999999,25,0,0,88,0.2,0,0 +2001,3,21,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,6,23,98654,1166,1377,402,836,715,231,100756,52602,27978,11306,260,5.1,5,5,2500,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,21,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,5,21,98663,1044,1377,406,732,586,287,85266,48326,33654,12921,260,4.6,5,5,2800,77777,9,999999999,15,0,0,88,0.2,0,0 +2001,3,21,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,3,18,98663,851,1377,427,315,58,279,35688,5030,31818,11266,230,5.1,9,9,3500,3000,9,999999999,13,0,0,88,0.2,0,0 +2001,3,21,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,4,20,98654,600,1377,423,197,10,193,21983,756,21614,7092,250,5.1,9,9,4000,3000,9,999999999,14,0,0,88,0.2,0,0 +2001,3,21,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,5,24,98637,308,1377,414,74,0,74,7321,0,7375,2630,270,3.1,9,9,3500,6000,9,999999999,15,0,0,88,0.2,0,0 +2001,3,21,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,9,34,98628,0,1354,414,0,0,0,0,0,0,0,260,1,9,9,2500,6000,9,999999999,23,0,0,88,0.2,0,0 +2001,3,21,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,10,39,98619,0,0,387,0,0,0,0,0,0,0,290,2.1,5,5,2200,77777,9,999999999,25,0,0,88,0.2,0,0 +2001,3,21,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,24,9.5,40,98610,0,0,366,0,0,0,0,0,0,0,137,1.8,1,1,1850,77777,9,999999999,24,0,0,88,0.2,0,0 +2001,3,21,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,9,41,98601,0,0,369,0,0,0,0,0,0,0,310,1.5,3,3,1500,77777,9,999999999,23,0,0,88,0.2,0,0 +2001,3,21,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,23,9,41,98601,0,0,369,0,0,0,0,0,0,0,303,0,3,3,1500,77777,9,999999999,23,0,0,88,0.2,0,0 +2001,3,21,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,22,8,41,98592,0,0,363,0,0,0,0,0,0,0,269,0,3,3,1500,77777,9,999999999,21,0,0,88,0.2,0,0 +2001,3,22,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,8,43,98583,0,0,358,0,0,0,0,0,0,0,236,0,3,3,1300,77777,9,999999999,21,0,0,88,0.2,0,0 +2001,3,22,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,9,49,98574,0,0,360,0,0,0,0,0,0,0,360,4.1,5,5,1000,77777,9,999999999,23,0,0,88,0.2,0,0 +2001,3,22,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,7,43,98574,0,0,358,0,0,0,0,0,0,0,180,2.1,5,5,1000,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,22,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,6,40,98574,0,0,357,0,0,0,0,0,0,0,200,2.1,5,5,1000,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,22,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,8,52,98555,0,0,349,0,0,0,0,0,0,0,284,0,5,5,500,77777,9,999999999,21,0,0,88,0.2,0,0 +2001,3,22,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,19,7.5,47,98564,0,0,345,0,0,0,0,0,0,0,172,0.9,2,2,775,77777,9,999999999,20,0,0,88,0.2,0,0 +2001,3,22,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,20,7,43,98574,10,46,344,3,0,3,257,0,258,101,214,1.8,1,1,1050,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,22,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,21,6.5,39,98583,323,1376,348,154,319,79,17202,11848,8869,2812,250,2.7,1,1,1325,77777,9,999999999,18,0,0,88,0.2,0,0 +2001,3,22,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,6,35,98592,614,1376,361,388,596,122,44925,37284,14142,5185,250,3.6,3,3,1600,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,22,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,6,30,98619,863,1376,376,610,770,127,73588,49809,15332,6185,240,4.1,3,3,2200,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,22,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,8,30,98637,1054,1376,388,781,846,133,96529,53803,16518,6911,260,2.1,3,3,2500,77777,9,999999999,21,0,0,88,0.2,0,0 +2001,3,22,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,8,27,98654,1173,1376,399,890,865,153,110650,55974,19115,7973,280,4.1,3,3,3000,77777,9,999999999,21,0,0,88,0.2,0,0 +2001,3,22,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,6,23,98654,1212,1376,396,930,796,228,112801,57792,27847,11277,250,4.1,3,3,4000,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,22,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,14,38,98663,1169,1376,412,879,853,154,108800,51991,19091,7987,250,4.1,3,3,4000,77777,9,999999999,38,0,0,88,0.2,0,0 +2001,3,22,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,14,40,98654,1047,1376,407,768,833,133,94480,49845,16489,6915,310,4.1,3,3,4500,77777,9,999999999,38,0,0,88,0.2,0,0 +2001,3,22,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,14,38,98663,854,1376,412,594,766,118,71655,44985,14296,5800,270,4.6,3,3,4500,77777,9,999999999,38,0,0,88,0.2,0,0 +2001,3,22,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,14,40,98654,603,1376,407,373,608,107,43417,33220,12446,4630,280,4.6,3,3,5000,77777,9,999999999,38,0,0,88,0.2,0,0 +2001,3,22,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,14,40,98654,311,1376,390,144,278,81,15863,8877,8960,2797,310,4.6,0,0,4500,77777,9,999999999,38,0,0,88,0.2,0,0 +2001,3,22,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,15,45,98646,0,1366,386,0,0,0,0,0,0,0,300,4.1,0,0,3500,77777,9,999999999,42,0,0,88,0.2,0,0 +2001,3,22,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,16,51,98637,0,0,382,0,0,0,0,0,0,0,280,3.1,0,0,2500,77777,9,999999999,46,0,0,88,0.2,0,0 +2001,3,22,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,26,17,58,98628,0,0,378,0,0,0,0,0,0,0,195,2,0,0,2350,77777,9,999999999,51,0,0,88,0.2,0,0 +2001,3,22,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,18,65,98619,0,0,374,0,0,0,0,0,0,0,20,1,0,0,2200,77777,9,999999999,57,0,0,88,0.2,0,0 +2001,3,22,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,24,18,69,98610,0,0,369,0,0,0,0,0,0,0,337,0,0,0,2000,77777,9,999999999,57,0,0,88,0.2,0,0 +2001,3,22,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,23,19,78,98601,0,0,366,0,0,0,0,0,0,0,273,0,0,0,1800,77777,9,999999999,63,0,0,88,0.2,0,0 +2001,3,23,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,22,18,78,98592,0,0,360,0,0,0,0,0,0,0,78,0,0,0,1800,77777,9,999999999,57,0,0,88,0.2,0,0 +2001,3,23,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,19,88,98583,0,0,356,0,0,0,0,0,0,0,135,0,0,0,1500,77777,9,999999999,63,0,0,88,0.2,0,0 +2001,3,23,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,20,18,88,98574,0,0,350,0,0,0,0,0,0,0,41,0,0,0,1000,77777,9,999999999,57,0,0,88,0.2,0,0 +2001,3,23,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,18,94,98564,0,0,345,0,0,0,0,0,0,0,27,0,0,0,800,77777,9,999999999,57,0,0,88,0.2,0,0 +2001,3,23,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,18,17.5,97,98555,0,0,392,0,0,0,0,0,0,0,111,0,10,10,650,77777,9,999999999,55,0,0,88,0.2,0,0 +2001,3,23,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,17,100,98546,0,0,335,0,0,0,0,0,0,0,19,0,0,0,500,77777,9,999999999,52,0,0,88,0.2,0,0 +2001,3,23,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,18.3,15.7,84,98558,17,73,373,3,0,3,269,0,270,107,324,1.2,8,8,533,77777,9,999999999,46,0,0,88,0.2,0,0 +2001,3,23,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,19.7,14.3,71,98570,329,1375,368,138,239,81,15346,7996,9035,2881,95,2.4,6,6,566,77777,9,999999999,40,0,0,88,0.2,0,0 +2001,3,23,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,13,60,98583,619,1375,349,393,542,148,44671,34498,16968,6065,240,3.6,0,0,600,77777,9,999999999,35,0,0,88,0.2,0,0 +2001,3,23,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,16,57,98619,868,1375,372,612,810,100,74818,44232,12284,5045,310,4.1,0,0,1000,77777,9,999999999,46,0,0,88,0.2,0,0 +2001,3,23,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,15,48,98637,1058,1375,381,786,863,122,84885,89795,16534,3073,280,4.1,0,0,1500,77777,9,999999999,42,0,0,88,0.2,0,0 +2001,3,23,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,13,35,98663,1177,1375,394,899,793,220,108487,54118,26648,10865,290,3.6,0,0,2500,77777,9,999999999,34,0,0,88,0.2,0,0 +2001,3,23,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,10,27,98672,1216,1375,395,939,796,236,113575,56638,28642,11581,280,4.1,0,0,3000,77777,9,999999999,25,0,0,88,0.2,0,0 +2001,3,23,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,9,26,98672,1173,1375,411,889,862,154,110406,55380,19203,8010,340,1.5,3,3,4000,77777,9,999999999,23,0,0,88,0.2,0,0 +2001,3,23,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,8,23,98680,1050,1375,415,778,845,133,96156,53708,16459,6886,320,4.1,3,3,4500,77777,9,999999999,21,0,0,88,0.2,0,0 +2001,3,23,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,32.8,8.9,23,98687,857,1375,403,609,795,114,73971,48877,13854,5621,261,4.2,0,0,4520,77777,9,999999999,23,0,0,88,0.2,0,0 +2001,3,23,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,31.5,9.5,26,98676,605,1375,397,383,553,139,43784,35454,15998,5723,162,4.2,0,0,4541,77777,9,999999999,24,0,0,88,0.2,0,0 +2001,3,23,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,30.9,10.4,28,98671,313,1375,395,146,299,78,16254,10077,8707,2746,102,4.3,0,0,4062,77777,9,999999999,26,0,0,88,0.2,0,0 +2001,3,23,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,29.3,11.3,33,98657,0,1378,388,0,0,0,0,0,0,0,29,3.6,0,0,3416,77777,9,999999999,29,0,0,88,0.2,0,0 +2001,3,23,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,28.4,12.9,38,98649,0,0,385,0,0,0,0,0,0,0,57,2.8,0,0,2670,77777,9,999999999,34,0,0,88,0.2,0,0 +2001,3,23,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,27.2,15.2,48,98638,0,0,395,0,0,0,0,0,0,0,320,1.5,2,2,2591,77777,9,999999999,43,0,0,88,0.2,0,0 +2001,3,23,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,25.6,15.8,55,98624,0,0,391,0,0,0,0,0,0,0,82,1.3,3,3,2445,77777,9,999999999,45,0,0,88,0.2,0,0 +2001,3,23,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24.7,16.3,53,98616,0,0,371,0,0,0,0,0,0,0,290,0.9,0,0,2333,77777,9,999999999,48,0,0,88,0.2,0,0 +2001,3,23,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,22,13,57,98592,0,0,372,0,0,0,0,0,0,0,42,1.8,4,4,2200,77777,9,999999999,35,0,0,88,0.2,0,0 +2001,3,24,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,13,60,98583,0,0,349,0,0,0,0,0,0,0,280,1.5,0,0,2400,77777,9,999999999,35,0,0,88,0.2,0,0 +2001,3,24,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,13,60,98583,0,0,349,0,0,0,0,0,0,0,300,1.5,0,0,2400,77777,9,999999999,35,0,0,88,0.2,0,0 +2001,3,24,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,11,53,98583,0,0,347,0,0,0,0,0,0,0,340,2.1,0,0,2500,77777,9,999999999,28,0,0,88,0.2,0,0 +2001,3,24,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,10,59,98555,0,0,332,0,0,0,0,0,0,0,230,2.6,0,0,2500,77777,9,999999999,26,0,0,88,0.2,0,0 +2001,3,24,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,9,63,98536,0,0,322,0,0,0,0,0,0,0,260,1,0,0,2500,77777,9,999999999,23,0,0,88,0.2,0,0 +2001,3,24,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,11,77,98527,0,0,333,0,0,0,0,0,0,0,19,0,3,3,2000,77777,9,999999999,29,0,0,88,0.2,0,0 +2001,3,24,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,10,68,98536,23,99,337,6,0,6,544,0,548,204,240,1,3,3,1400,77777,9,999999999,26,0,0,88,0.2,0,0 +2001,3,24,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,10,59,98555,335,1375,346,159,312,83,17730,11783,9311,2962,250,2.1,3,3,1400,77777,9,999999999,26,0,0,88,0.2,0,0 +2001,3,24,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,12,53,98592,625,1375,368,393,601,120,45543,35431,13927,5164,290,2.1,3,3,2200,77777,9,999999999,31,0,0,88,0.2,0,0 +2001,3,24,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,13,47,98619,873,1375,384,611,770,122,73860,46207,14855,6042,230,2.1,3,3,2400,77777,9,999999999,34,0,0,88,0.2,0,0 +2001,3,24,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,13,40,98646,1063,1375,406,738,673,217,87797,46958,26003,10525,330,2.6,5,5,2800,77777,9,999999999,34,0,0,88,0.2,0,0 +2001,3,24,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,12,35,98654,1181,1375,410,841,682,255,100507,49357,30680,12288,300,5.1,5,5,4000,77777,9,999999999,31,0,0,88,0.2,0,0 +2001,3,24,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,29,12,35,98654,1220,1375,387,940,673,343,110323,53909,40493,15472,160,4.8,0,0,4500,77777,9,999999999,31,0,0,88,0.2,0,0 +2001,3,24,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,12,35,98654,1176,1375,435,464,101,378,53770,8547,44069,16365,290,4.6,9,9,5000,3000,9,999999999,31,0,0,88,0.2,0,0 +2001,3,24,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,12,35,98654,1053,1375,435,406,49,368,46255,4247,42288,15350,290,6.2,9,9,5000,77777,9,999999999,31,0,0,88,0.2,0,0 +2001,3,24,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,13,40,98646,860,1375,430,313,32,293,35282,2680,33219,11712,290,4.1,9,9,5000,77777,9,999999999,34,0,0,88,0.2,0,0 +2001,3,24,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,11,35,98646,608,1375,428,198,31,185,22154,2238,20718,6970,310,4.1,9,9,5000,6000,9,999999999,28,0,0,88,0.2,0,0 +2001,3,24,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,12,35,98654,316,1375,410,137,216,87,15121,7882,9671,2973,300,3.1,5,5,5000,77777,9,999999999,31,0,0,88,0.2,0,0 +2001,3,24,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,13,47,98619,5,1375,369,1,0,1,87,0,87,36,250,1,0,0,4500,77777,9,999999999,34,0,0,88,0.2,0,0 +2001,3,24,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,23.5,13.5,53,98606,0,16,377,0,0,0,0,0,0,0,43,1,3,3,3350,77777,9,999999999,36,0,0,88,0.2,0,0 +2001,3,24,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,14,60,98592,0,0,355,0,0,0,0,0,0,0,250,1,0,0,2200,77777,9,999999999,38,0,0,88,0.2,0,0 +2001,3,24,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,14,64,98583,0,0,350,0,0,0,0,0,0,0,220,1.5,0,0,1500,77777,9,999999999,38,0,0,88,0.2,0,0 +2001,3,24,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,15,69,98583,0,0,351,0,0,0,0,0,0,0,124,0,0,0,1500,77777,9,999999999,42,0,0,88,0.2,0,0 +2001,3,24,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,15,78,98564,0,0,342,0,0,0,0,0,0,0,232,0,0,0,1200,77777,9,999999999,42,0,0,88,0.2,0,0 +2001,3,25,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,13,68,98564,0,0,340,0,0,0,0,0,0,0,220,1.5,0,0,1100,77777,9,999999999,35,0,0,88,0.2,0,0 +2001,3,25,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,18,14,77,98555,0,0,364,0,0,0,0,0,0,0,251,0,7,7,1000,77777,9,999999999,38,0,0,88,0.2,0,0 +2001,3,25,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,13,73,98555,0,0,335,0,0,0,0,0,0,0,313,0,0,0,1200,77777,9,999999999,35,0,0,88,0.2,0,0 +2001,3,25,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,13,73,98555,0,0,335,0,0,0,0,0,0,0,257,0,0,0,1200,77777,9,999999999,35,0,0,88,0.2,0,0 +2001,3,25,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,12,64,98564,0,0,339,0,0,0,0,0,0,0,270,1.5,0,0,1500,77777,9,999999999,31,0,0,88,0.2,0,0 +2001,3,25,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,12,72,98546,0,0,349,0,0,0,0,0,0,0,156,0,5,5,800,77777,9,999999999,32,0,0,88,0.2,0,0 +2001,3,25,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,10,63,98546,29,126,347,7,0,7,649,0,654,240,230,2.1,5,5,8800,77777,9,999999999,26,0,0,88,0.2,0,0 +2001,3,25,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,9,52,98564,340,1374,355,154,262,89,17106,10712,9935,3127,250,2.1,5,5,1700,77777,9,999999999,23,0,0,88,0.2,0,0 +2001,3,25,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,22,8,41,98592,630,1374,369,377,493,151,43061,33159,17276,6187,177,3.1,5,5,3000,77777,9,999999999,21,0,0,88,0.2,0,0 +2001,3,25,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,13,47,98619,878,1374,390,580,633,176,68262,42512,20764,8200,260,4.1,5,5,3000,77777,9,999999999,34,0,0,88,0.2,0,0 +2001,3,25,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,14,42,98646,1067,1374,408,741,685,208,88406,46519,24965,10171,300,4.1,5,5,3000,77777,9,999999999,38,0,0,88,0.2,0,0 +2001,3,25,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,13,35,98663,1185,1374,417,843,679,258,100693,48761,30931,12384,280,5.7,5,5,3500,77777,9,999999999,34,0,0,88,0.2,0,0 +2001,3,25,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,14,34,98680,1223,1374,423,928,825,193,113759,52968,23758,9800,290,4.1,3,3,5000,77777,9,999999999,38,0,0,88,0.2,0,0 +2001,3,25,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,13,31,98680,1179,1374,422,889,854,156,110181,52798,19453,8124,330,3.6,3,3,5000,77777,9,999999999,34,0,0,88,0.2,0,0 +2001,3,25,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,10,26,98680,1056,1374,400,791,784,188,95224,53755,22747,9324,310,6.2,0,0,5000,77777,9,999999999,25,0,0,88,0.2,0,0 +2001,3,25,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,11,26,98689,862,1374,407,612,794,113,74310,47771,13802,5616,330,5.1,0,0,5000,77777,9,999999999,28,0,0,88,0.2,0,0 +2001,3,25,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,11,28,98680,611,1374,402,386,615,113,44922,35746,13175,4883,350,5.1,0,0,4000,77777,9,999999999,28,0,0,88,0.2,0,0 +2001,3,25,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,12,31,98672,319,1374,398,149,286,83,16532,10010,9198,2882,320,5.1,0,0,3500,77777,9,999999999,31,0,0,88,0.2,0,0 +2001,3,25,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,11,33,98654,6,1374,386,2,0,2,157,0,158,64,350,3.6,0,0,3500,77777,9,999999999,28,0,0,88,0.2,0,0 +2001,3,25,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,12,35,98654,0,29,387,0,0,0,0,0,0,0,360,3.1,0,0,3200,77777,9,999999999,31,0,0,88,0.2,0,0 +2001,3,25,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,15,45,98646,0,0,386,0,0,0,0,0,0,0,350,1,0,0,3200,77777,9,999999999,42,0,0,88,0.2,0,0 +2001,3,25,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,13,45,98628,0,0,373,0,0,0,0,0,0,0,320,2.1,0,0,3000,77777,9,999999999,34,0,0,88,0.2,0,0 +2001,3,25,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,13,45,98628,0,0,373,0,0,0,0,0,0,0,340,2.6,0,0,3000,77777,9,999999999,34,0,0,88,0.2,0,0 +2001,3,25,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,24.5,14,52,98615,0,0,383,0,0,0,0,0,0,0,214,2,3,3,3250,77777,9,999999999,38,0,0,88,0.2,0,0 +2001,3,26,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,15,61,98601,0,0,361,0,0,0,0,0,0,0,300,1.5,0,0,3500,77777,9,999999999,42,0,0,88,0.2,0,0 +2001,3,26,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,13,60,98583,0,0,349,0,0,0,0,0,0,0,230,1.5,0,0,3200,77777,9,999999999,35,0,0,88,0.2,0,0 +2001,3,26,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,14,68,98574,0,0,346,0,0,0,0,0,0,0,260,1.5,0,0,2200,77777,9,999999999,38,0,0,88,0.2,0,0 +2001,3,26,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,13,68,98564,0,0,340,0,0,0,0,0,0,0,270,2.1,0,0,1400,77777,9,999999999,35,0,0,88,0.2,0,0 +2001,3,26,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,12,64,98564,0,0,339,0,0,0,0,0,0,0,220,1.5,0,0,1400,77777,9,999999999,31,0,0,88,0.2,0,0 +2001,3,26,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,13,73,98555,0,0,335,0,0,0,0,0,0,0,230,1.5,0,0,1400,77777,9,999999999,35,0,0,88,0.2,0,0 +2001,3,26,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,11,64,98555,35,153,333,9,0,9,841,0,847,303,230,1.5,0,0,1300,77777,9,999999999,28,0,0,88,0.2,0,0 +2001,3,26,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,11,56,98574,346,1373,342,169,319,89,18793,12761,9879,3140,230,3.1,0,0,1600,77777,9,999999999,28,0,0,88,0.2,0,0 +2001,3,26,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,12,47,98610,635,1373,362,407,632,114,47461,36756,13377,5016,260,3.1,0,0,2200,77777,9,999999999,31,0,0,88,0.2,0,0 +2001,3,26,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,12,39,98637,883,1373,377,629,799,115,76535,47751,14067,5753,260,3.6,0,0,2200,77777,9,999999999,31,0,0,88,0.2,0,0 +2001,3,26,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,12,35,98654,1072,1373,387,803,863,129,99505,52281,16050,6749,250,3.6,0,0,3000,77777,9,999999999,31,0,0,88,0.2,0,0 +2001,3,26,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,10,27,98672,1189,1373,395,914,793,227,110466,56100,27615,11204,300,5.1,0,0,4500,77777,9,999999999,25,0,0,88,0.2,0,0 +2001,3,26,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,10,26,98680,1227,1373,400,949,795,239,114863,56664,29032,11725,290,6.2,0,0,4500,77777,9,999999999,25,0,0,88,0.2,0,0 +2001,3,26,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,12,28,98689,1183,1373,408,905,792,223,109349,54764,27024,10999,290,2.6,0,0,5000,77777,9,999999999,31,0,0,88,0.2,0,0 +2001,3,26,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,32.5,11,27,98684,1059,1373,404,792,784,188,95397,53177,22684,9310,248,4.4,0,0,5500,77777,9,999999999,28,0,0,88,0.2,0,0 +2001,3,26,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,10,26,98680,865,1373,400,615,794,115,74708,48415,13988,5690,320,6.2,0,0,6000,77777,9,999999999,25,0,0,88,0.2,0,0 +2001,3,26,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,11,26,98689,613,1373,407,388,615,113,45174,35870,13240,4912,320,5.1,0,0,5000,77777,9,999999999,28,0,0,88,0.2,0,0 +2001,3,26,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,2,16,98672,322,1373,385,153,318,79,17149,12317,8855,2803,330,5.1,0,0,4000,77777,9,999999999,11,0,0,88,0.2,0,0 +2001,3,26,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,11,31,98663,9,1373,391,2,0,2,227,0,228,91,320,4.1,0,0,3500,77777,9,999999999,28,0,0,88,0.2,0,0 +2001,3,26,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,14,42,98646,0,41,385,0,0,0,0,0,0,0,330,2.6,0,0,3000,77777,9,999999999,38,0,0,88,0.2,0,0 +2001,3,26,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,13,40,98646,0,0,384,0,0,0,0,0,0,0,10,1.5,0,0,3000,77777,9,999999999,34,0,0,88,0.2,0,0 +2001,3,26,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,26,16,54,98628,0,0,393,0,0,0,0,0,0,0,340,1.5,3,3,3000,77777,9,999999999,46,0,0,88,0.2,0,0 +2001,3,26,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,15,51,98628,0,0,376,0,0,0,0,0,0,0,290,2.1,0,0,2500,77777,9,999999999,42,0,0,88,0.2,0,0 +2001,3,26,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,16,65,98601,0,0,362,0,0,0,0,0,0,0,280,1.5,0,0,2000,77777,9,999999999,47,0,0,88,0.2,0,0 +2001,3,27,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,15,64,98592,0,0,356,0,0,0,0,0,0,0,360,4.1,0,0,1500,77777,9,999999999,42,0,0,88,0.2,0,0 +2001,3,27,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,13,60,98583,0,0,349,0,0,0,0,0,0,0,230,2.6,0,0,1300,77777,9,999999999,35,0,0,88,0.2,0,0 +2001,3,27,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,12,60,98574,0,0,343,0,0,0,0,0,0,0,230,1,0,0,1300,77777,9,999999999,31,0,0,88,0.2,0,0 +2001,3,27,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,20,15,73,98574,0,0,347,0,0,0,0,0,0,0,22,0,0,0,1800,77777,9,999999999,42,0,0,88,0.2,0,0 +2001,3,27,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,13,68,98564,0,0,340,0,0,0,0,0,0,0,153,0,0,0,2000,77777,9,999999999,35,0,0,88,0.2,0,0 +2001,3,27,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,19,13.5,70,98564,0,0,364,0,0,0,0,0,0,0,166,0,6,6,2000,77777,9,999999999,37,0,0,88,0.2,0,0 +2001,3,27,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,14,73,98564,41,179,356,10,0,10,967,0,974,345,233,0,3,3,2000,77777,9,999999999,38,0,0,88,0.2,0,0 +2001,3,27,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,11,50,98592,352,1372,367,171,311,91,18987,12845,10150,3226,250,2.1,3,3,2000,77777,9,999999999,28,0,0,88,0.2,0,0 +2001,3,27,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,11,41,98619,641,1372,382,407,609,122,47274,36764,14270,5319,250,2.1,3,3,2200,77777,9,999999999,28,0,0,88,0.2,0,0 +2001,3,27,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,11,35,98646,888,1372,404,590,643,174,69690,43874,20681,8196,240,4.1,5,5,2800,77777,9,999999999,28,0,0,88,0.2,0,0 +2001,3,27,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,13,35,98663,1076,1372,411,795,817,154,97283,51135,18899,7893,270,4.1,3,3,3500,77777,9,999999999,34,0,0,88,0.2,0,0 +2001,3,27,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,15,36,98680,1193,1372,425,899,827,180,110267,51620,22151,9190,240,3.6,3,3,4000,77777,9,999999999,42,0,0,88,0.2,0,0 +2001,3,27,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,10,24,98689,1230,1372,430,886,689,268,106362,51025,32387,12896,310,4.1,5,5,5000,77777,9,999999999,25,0,0,88,0.2,0,0 +2001,3,27,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34,9,22,98697,1186,1372,434,849,706,239,102223,51203,28960,11677,280,4.6,5,5,6500,77777,9,999999999,23,0,0,88,0.2,0,0 +2001,3,27,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,10,22,98705,1062,1372,441,741,673,220,88228,48466,26291,10613,280,4.1,5,5,8000,77777,9,999999999,25,0,0,88,0.2,0,0 +2001,3,27,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,34.5,11,24,98701,868,1372,415,616,761,135,73960,48025,16226,6545,57,3.6,0,0,6875,77777,9,999999999,28,0,0,88,0.2,0,0 +2001,3,27,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34,12,26,98697,616,1372,438,363,454,159,41071,30112,18068,6358,320,3.1,5,5,5750,77777,9,999999999,31,0,0,88,0.2,0,0 +2001,3,27,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33,11,26,98689,324,1372,431,142,228,88,15717,8707,9788,3034,330,2.6,5,5,4625,77777,9,999999999,28,0,0,88,0.2,0,0 +2001,3,27,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,11,28,98680,12,1372,426,3,0,3,275,0,277,109,20,1.5,5,5,3500,77777,9,999999999,28,0,0,88,0.2,0,0 +2001,3,27,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,30,12.5,34,98663,0,54,393,0,0,0,0,0,0,0,280,0.8,0,0,2850,77777,9,999999999,32,0,0,88,0.2,0,0 +2001,3,27,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,14,42,98646,0,0,408,0,0,0,0,0,0,0,211,0,5,5,2200,77777,9,999999999,38,0,0,88,0.2,0,0 +2001,3,27,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,11,33,98654,0,0,409,0,0,0,0,0,0,0,13,0,5,5,2200,77777,9,999999999,28,0,0,88,0.2,0,0 +2001,3,27,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,13,42,98637,0,0,401,0,0,0,0,0,0,0,139,0,5,5,2200,77777,9,999999999,34,0,0,88,0.2,0,0 +2001,3,27,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,13,45,98628,0,0,396,0,0,0,0,0,0,0,61,0,5,5,2200,77777,9,999999999,34,0,0,88,0.2,0,0 +2001,3,28,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,11,39,98628,0,0,393,0,0,0,0,0,0,0,160,1,5,5,2500,77777,9,999999999,28,0,0,88,0.2,0,0 +2001,3,28,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,10,37,98628,0,0,392,0,0,0,0,0,0,0,140,2.6,5,5,2800,77777,9,999999999,25,0,0,88,0.2,0,0 +2001,3,28,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,25.5,11.5,42,98624,0,0,376,0,0,0,0,0,0,0,56,1.3,1,1,2650,77777,9,999999999,30,0,0,88,0.2,0,0 +2001,3,28,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25,13,47,98619,0,0,384,0,0,0,0,0,0,0,117,0,3,3,2500,77777,9,999999999,34,0,0,88,0.2,0,0 +2001,3,28,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,24,13,50,98610,0,0,376,0,0,0,0,0,0,0,46,1,2,2,2100,77777,9,999999999,34,0,0,88,0.2,0,0 +2001,3,28,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,13,53,98601,0,0,380,0,0,0,0,0,0,0,110,2.1,5,5,1700,77777,9,999999999,35,0,0,88,0.2,0,0 +2001,3,28,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,13,50,98610,47,206,408,6,0,6,578,0,582,226,80,1.5,9,9,1600,3000,9,999999999,34,0,0,88,0.2,0,0 +2001,3,28,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,10,34,98637,358,1371,421,91,2,91,10187,75,10173,3252,140,2.6,9,9,1400,3000,9,999999999,25,0,0,88,0.2,0,0 +2001,3,28,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,12,35,98654,646,1371,435,214,25,203,23952,1855,22756,7699,170,1.5,9,9,2800,3000,9,999999999,31,0,0,88,0.2,0,0 +2001,3,28,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,10,29,98663,893,1371,438,330,64,288,37506,5401,32931,11895,220,3.1,9,9,3500,3000,9,999999999,25,0,0,88,0.2,0,0 +2001,3,28,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,12,31,98672,1080,1371,446,418,48,380,47792,4253,43723,15886,240,3.1,9,9,3500,3000,9,999999999,31,0,0,88,0.2,0,0 +2001,3,28,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,14,34,98680,1197,1371,455,472,48,430,54266,4231,49786,17895,250,3.1,9,9,4500,3000,9,999999999,38,0,0,88,0.2,0,0 +2001,3,28,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,17,41,98680,1234,1371,460,488,74,421,56263,6168,48904,17854,270,1.5,9,9,4500,3000,9,999999999,51,0,0,88,0.2,0,0 +2001,3,28,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,17,41,98680,1189,1371,460,466,74,402,53653,6131,46570,17105,350,1.5,9,9,5000,3000,9,999999999,51,0,0,88,0.2,0,0 +2001,3,28,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,18,39,98697,1065,1371,473,407,99,330,46673,7701,38081,14386,170,2.1,9,9,5000,3000,9,999999999,56,0,0,88,0.2,0,0 +2001,3,28,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,17,36,98697,870,1371,445,569,586,198,66096,39123,23067,8969,120,1,5,5,5000,77777,9,999999999,51,0,0,88,0.2,0,0 +2001,3,28,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,32.5,16.5,38,98684,619,1371,412,388,538,146,44166,32400,16634,5986,157,2.8,0,0,4250,77777,9,999999999,48,0,0,88,0.2,0,0 +2001,3,28,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,16,40,98672,327,1371,427,142,222,90,15669,7752,9891,3075,100,4.6,5,5,3500,77777,9,999999999,46,0,0,88,0.2,0,0 +2001,3,28,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,16,45,98654,15,1371,416,4,0,4,334,0,336,131,100,3.1,5,5,3000,77777,9,999999999,46,0,0,88,0.2,0,0 +2001,3,28,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,15,45,98646,0,67,403,0,0,0,0,0,0,0,110,1.5,3,3,3000,77777,9,999999999,42,0,0,88,0.2,0,0 +2001,3,28,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,17,54,98637,0,0,400,0,0,0,0,0,0,0,231,0,3,3,3000,77777,9,999999999,51,0,0,88,0.2,0,0 +2001,3,28,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,16,54,98628,0,0,393,0,0,0,0,0,0,0,240,1,3,3,3000,77777,9,999999999,46,0,0,88,0.2,0,0 +2001,3,28,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,12,50,98601,0,0,373,0,0,0,0,0,0,0,300,10.3,3,3,1400,900,0,19999999,31,0,0,88,0.2,0,0 +2001,3,28,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,22.5,12.5,53,98597,0,0,371,0,0,0,0,0,0,0,358,6.9,3,3,1950,900,9,999999999,33,0,0,88,0.2,0,0 +2001,3,29,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,13,57,98592,0,0,369,0,0,0,0,0,0,0,20,3.6,3,3,2500,77777,0,19999999,35,0,0,88,0.2,0,0 +2001,3,29,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,12,53,98592,0,0,374,0,0,0,0,0,0,0,30,4.1,5,5,2500,77777,0,19999999,31,0,0,88,0.2,0,0 +2001,3,29,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,13,57,98592,0,0,369,0,0,0,0,0,0,0,50,3.6,3,3,2500,77777,0,19999999,35,0,0,88,0.2,0,0 +2001,3,29,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,11,53,98583,0,0,362,0,0,0,0,0,0,0,40,4.1,3,3,3500,77777,0,19999999,28,0,0,88,0.2,0,0 +2001,3,29,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,12,60,98574,0,0,358,0,0,0,0,0,0,0,30,3.1,3,3,3500,77777,0,19999999,31,0,0,88,0.2,0,0 +2001,3,29,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,17,78,98583,0,0,369,0,0,0,0,0,0,0,40,3.6,3,3,3000,77777,9,999999999,52,0,0,88,0.2,0,0 +2001,3,29,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,13,60,98583,53,233,370,12,0,12,1172,0,1180,416,80,3.6,5,5,3000,77777,9,999999999,35,0,0,88,0.2,0,0 +2001,3,29,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,23,15,61,98601,363,1371,383,167,257,99,18462,10728,10986,3470,135,2.8,5,5,2000,77777,9,999999999,42,0,0,88,0.2,0,0 +2001,3,29,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,14,50,98619,651,1371,392,389,463,169,44110,30941,19261,6860,170,2.1,5,5,2500,77777,9,999999999,38,0,0,88,0.2,0,0 +2001,3,29,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,28,13,40,98645,897,1371,391,641,775,133,77223,47551,16096,6562,245,2.3,1,1,2750,77777,9,999999999,34,0,0,88,0.2,0,0 +2001,3,29,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,12,31,98672,1085,1371,421,758,671,226,90220,47674,27103,10953,190,2.6,5,5,3000,77777,9,999999999,31,0,0,88,0.2,0,0 +2001,3,29,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,9,26,98672,1201,1371,417,862,590,345,101081,48733,40711,15485,180,4.1,5,5,3000,77777,9,999999999,23,0,0,88,0.2,0,0 +2001,3,29,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,8,23,98680,1237,1371,446,496,109,398,57887,9510,46734,17242,220,3.6,9,9,3000,6000,9,999999999,21,0,0,88,0.2,0,0 +2001,3,29,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,7,20,98689,1192,1371,426,857,598,336,100646,49677,39777,15182,190,6.2,5,5,3000,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,29,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,8,23,98680,1067,1371,421,748,693,208,89567,49664,24991,10155,200,4.1,5,5,3000,77777,9,999999999,21,0,0,88,0.2,0,0 +2001,3,29,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,6,19,98689,873,1371,424,582,661,161,69121,45785,19183,7617,170,5.1,5,5,2800,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,29,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,6,20,98680,621,1371,412,392,589,125,45441,37316,14590,5355,180,4.6,3,3,2800,77777,9,999999999,17,0,0,88,0.2,0,0 +2001,3,29,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,9,26,98672,330,1371,411,154,297,83,17197,11266,9274,2938,130,4.6,3,3,2500,77777,9,999999999,23,0,0,88,0.2,0,0 +2001,3,29,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,11,31,98663,18,1371,408,4,0,4,424,0,427,162,110,2.1,3,3,2500,77777,9,999999999,28,0,0,88,0.2,0,0 +2001,3,29,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,13,40,98646,0,80,400,0,0,0,0,0,0,0,110,1.5,3,3,2500,77777,9,999999999,34,0,0,88,0.2,0,0 +2001,3,29,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,13,45,98628,0,0,373,0,0,0,0,0,0,0,80,2.1,0,0,2200,77777,9,999999999,34,0,0,88,0.2,0,0 +2001,3,29,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,11,39,98628,0,0,387,0,0,0,0,0,0,0,90,3.1,3,3,1800,77777,9,999999999,28,0,0,88,0.2,0,0 +2001,3,29,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,13,47,98619,0,0,384,0,0,0,0,0,0,0,90,1.5,3,3,2000,77777,9,999999999,34,0,0,88,0.2,0,0 +2001,3,29,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,12,47,98610,0,0,378,0,0,0,0,0,0,0,10,1,3,3,2200,77777,9,999999999,31,0,0,88,0.2,0,0 +2001,3,30,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,11,47,98601,0,0,372,0,0,0,0,0,0,0,30,2.1,3,3,2400,77777,9,999999999,28,0,0,88,0.2,0,0 +2001,3,30,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,10,46,98592,0,0,366,0,0,0,0,0,0,0,10,2.1,3,3,2800,77777,9,999999999,26,0,0,88,0.2,0,0 +2001,3,30,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,10,46,98592,0,0,366,0,0,0,0,0,0,0,10,2.1,3,3,2800,77777,9,999999999,26,0,0,88,0.2,0,0 +2001,3,30,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,7,40,98583,0,0,363,0,0,0,0,0,0,0,350,5.1,5,5,3500,77777,9,999999999,19,0,0,88,0.2,0,0 +2001,3,30,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,19.5,6.5,43,98569,0,0,341,0,0,0,0,0,0,0,136,5.6,1,1,2850,77777,9,999999999,18,0,0,88,0.2,0,0 +2001,3,30,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,6,45,98555,0,0,367,0,0,0,0,0,0,0,260,6.2,9,9,2200,3000,0,99999999,17,0,0,88,0.2,0,0 +2001,3,30,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,12,64,98564,59,259,380,8,0,8,723,0,728,281,100,1.5,9,9,2800,2700,0,19999999,31,0,0,88,0.2,0,0 +2001,3,30,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,18.7,10.3,58,98561,369,1370,353,180,327,92,20140,14204,10335,3335,128,3.4,4,4,2700,2700,9,999999999,27,0,0,88,0.2,0,0 +2001,3,30,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,18.3,8.7,53,98558,657,1370,346,422,618,125,49150,38638,14666,5489,212,5.3,3,3,2600,2700,9,999999999,23,0,0,88,0.2,0,0 +2001,3,30,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,7,49,98555,902,1370,348,606,548,244,69917,43534,28368,10704,30,7.2,5,5,2500,77777,0,19999999,19,0,0,88,0.2,0,0 +2001,3,30,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,7,49,98555,1089,1370,369,425,85,357,49033,7518,41464,15344,40,6.7,9,9,2500,3000,0,19999999,19,0,0,88,0.2,0,0 +2001,3,30,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,8,43,98583,1204,1370,385,480,86,405,55693,7606,47290,17280,30,6.2,9,9,2800,3000,0,19999999,21,0,0,88,0.2,0,0 +2001,3,30,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,15,57,98610,1240,1370,388,887,563,377,103535,45367,44294,16642,10,3.6,5,5,2800,77777,0,19999999,42,0,0,88,0.2,0,0 +2001,3,30,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,16,57,98619,1194,1370,388,898,829,175,110371,50606,21577,8973,310,2.1,3,3,5000,77777,0,19999999,46,0,0,88,0.2,0,0 +2001,3,30,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26,15,51,98628,1070,1370,376,796,859,125,85889,89423,16845,3213,300,4.1,0,0,4750,77777,0,19999999,42,0,0,88,0.2,0,0 +2001,3,30,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27,13,42,98637,875,1370,395,612,762,125,73900,46026,15168,6171,310,2.1,3,3,4500,77777,0,19999999,34,0,0,88,0.2,0,0 +2001,3,30,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26,15,51,98628,624,1370,392,388,609,111,45205,33537,12970,4864,310,5.7,3,3,4250,77777,0,19999999,42,0,0,88,0.2,0,0 +2001,3,30,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,16,61,98610,332,1370,383,154,274,88,17031,9544,9727,3062,330,5.1,3,3,4000,77777,0,19999999,47,0,0,88,0.2,0,0 +2001,3,30,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,17,73,98592,21,1370,358,5,0,5,490,0,493,186,10,1.5,0,0,3000,77777,0,19999999,52,0,0,88,0.2,0,0 +2001,3,30,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,9,46,98583,0,92,345,0,0,0,0,0,0,0,119,0,0,0,2500,77777,0,19999999,23,0,0,88,0.2,0,0 +2001,3,30,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,20.3,12.3,60,98577,0,0,363,0,0,0,0,0,0,0,275,0.5,4,4,2400,77777,9,999999999,32,0,0,88,0.2,0,0 +2001,3,30,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,19.7,15.7,78,98571,0,0,374,0,0,0,0,0,0,0,157,1,7,7,2300,77777,9,999999999,45,0,0,88,0.2,0,0 +2001,3,30,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,19,100,98564,0,0,346,0,0,0,0,0,0,0,50,1.5,0,0,2200,77777,0,19999999,63,0,0,88,0.2,0,0 +2001,3,30,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,17,88,98564,0,0,344,0,0,0,0,0,0,0,40,1.5,0,0,2200,77777,0,19999999,52,0,0,88,0.2,0,0 +2001,3,31,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,16,88,98555,0,0,338,0,0,0,0,0,0,0,40,2.6,0,0,2200,77777,0,19999999,47,0,0,88,0.2,0,0 +2001,3,31,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,18,100,98555,0,0,340,0,0,0,0,0,0,0,40,1,0,0,2200,77777,0,19999999,57,0,0,88,0.2,0,0 +2001,3,31,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,17,94,98555,0,0,339,0,0,0,0,0,0,0,30,1,0,0,2200,77777,0,19999999,52,0,0,88,0.2,0,0 +2001,3,31,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,17,94,98555,0,0,339,0,0,0,0,0,0,0,317,0,0,0,2200,77777,0,19999999,52,0,0,88,0.2,0,0 +2001,3,31,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,17.5,17,97,98550,0,0,389,0,0,0,0,0,0,0,320,0.5,10,10,2100,77777,9,999999999,52,0,0,88,0.2,0,0 +2001,3,31,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,17,100,98546,0,0,335,0,0,0,0,0,0,0,300,1,0,0,2000,77777,9,999999999,52,0,0,88,0.2,0,0 +2001,3,31,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,16,100,98536,65,285,329,16,0,16,1526,0,1536,528,238,0,0,0,1200,77777,9,999999999,47,0,0,88,0.2,0,0 +2001,3,31,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,19,16.3,85,98564,374,1369,377,121,68,103,13407,2911,11385,3613,286,0.5,8,8,1366,77777,9,999999999,48,0,0,88,0.2,0,0 +2001,3,31,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,22,16.7,72,98591,662,1369,383,371,327,213,41264,23614,23805,8072,75,1,6,6,1533,77777,9,999999999,50,0,0,88,0.2,0,0 +2001,3,31,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,17,61,98619,907,1369,373,644,740,154,76698,44882,18464,7486,310,1.5,0,0,1700,77777,9,999999999,51,0,0,88,0.2,0,0 +2001,3,31,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,16,51,98637,1093,1369,382,816,784,190,98361,50031,22978,9492,300,3.1,0,0,2800,77777,9,999999999,46,0,0,88,0.2,0,0 +2001,3,31,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,14,42,98646,1208,1369,401,913,820,190,111925,52491,23392,9660,310,4.1,3,3,4000,77777,9,999999999,38,0,0,88,0.2,0,0 +2001,3,31,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,15,43,98654,1243,1369,414,890,665,286,106176,47777,34352,13605,40,1.5,5,5,5000,77777,9,999999999,42,0,0,88,0.2,0,0 +2001,3,31,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,12,33,98663,1197,1369,416,855,695,246,102685,49485,29779,11988,270,5.1,5,5,5000,77777,9,999999999,31,0,0,88,0.2,0,0 +2001,3,31,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,12,33,98663,1072,1369,416,747,684,211,89272,47555,25387,10326,270,5.1,5,5,5000,77777,9,999999999,31,0,0,88,0.2,0,0 +2001,3,31,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,12,35,98654,878,1369,410,580,607,191,67855,42403,22428,8765,20,4.1,5,5,5000,77777,9,999999999,31,0,0,88,0.2,0,0 +2001,3,31,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,14,42,98646,626,1369,401,391,613,110,45587,34233,12906,4846,20,5.1,3,3,3500,77777,9,999999999,38,0,0,88,0.2,0,0 +2001,3,31,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,15,48,98637,335,1369,381,158,289,87,17499,10357,9709,3067,30,3.1,0,0,3000,77777,9,999999999,42,0,0,88,0.2,0,0 +2001,3,31,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24.5,17.5,65,98615,24,1369,377,6,0,6,556,0,560,209,30,1.9,0,0,3000,77777,9,999999999,54,0,0,88,0.2,0,0 +2001,3,31,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23.6,17.9,70,98607,0,105,374,0,0,0,0,0,0,0,77,1.8,0,0,3000,77777,9,999999999,56,0,0,88,0.2,0,0 +2001,3,31,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22.9,17.6,72,98600,0,0,369,0,0,0,0,0,0,0,84,1.5,0,0,3000,77777,9,999999999,55,0,0,88,0.2,0,0 +2001,3,31,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23.6,14.9,58,98607,0,0,364,0,0,0,0,0,0,0,117,1.7,0,0,3000,77777,9,999999999,42,0,0,88,0.2,0,0 +2001,3,31,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,24.1,12.6,49,98611,0,0,386,0,0,0,0,0,0,0,179,1.3,6,6,2900,77777,9,999999999,33,0,0,88,0.2,0,0 +2001,3,31,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24.8,10.5,41,98617,0,0,358,0,0,0,0,0,0,0,179,1,0,0,2800,77777,9,999999999,27,0,0,88,0.2,0,0 +2008,4,1,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25.5,8,33,98624,0,0,387,0,0,0,0,0,0,0,207,1.5,3,3,2800,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,4,1,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25,8,34,98619,0,0,379,0,0,0,0,0,0,0,212,1.7,3,3,3500,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,4,1,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25,7.8,33,98619,0,0,379,0,0,0,0,0,0,0,192,2.3,3,3,3200,77777,9,999999999,20,0,0,88,0.2,0,0 +2008,4,1,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25.2,7.2,32,98621,0,0,377,0,0,0,0,0,0,0,195,3.1,3,3,2800,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,4,1,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25.5,7.5,32,98624,0,0,383,0,0,0,0,0,0,0,205,3.1,5,5,2800,77777,9,999999999,20,0,0,88,0.2,0,0 +2008,4,1,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,7.8,31,98628,0,0,384,0,0,0,0,0,0,0,210,2.8,5,5,2800,77777,9,999999999,20,0,0,88,0.2,0,0 +2008,4,1,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,7,30,98628,65,285,388,15,0,15,1443,0,1453,504,220,3.1,5,5,2800,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,4,1,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,8,32,98628,374,1369,389,177,288,98,19682,13497,10930,3496,220,3.1,5,5,2600,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,4,1,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,8,30,98637,662,1369,394,401,504,158,45993,34588,18165,6583,200,2.6,5,5,2800,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,4,1,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,8,25,98663,907,1369,410,609,644,182,71960,45572,21608,8567,200,3.6,5,5,3000,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,4,1,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,9,26,98672,1093,1369,417,768,673,231,91620,49271,27685,11157,210,3.1,5,5,3000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,1,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,9,23,98689,1208,1369,422,921,841,179,113684,55731,22162,9164,260,3.6,3,3,3200,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,1,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,9,22,98697,1243,1369,427,954,794,232,115976,56313,28402,11500,250,5.1,3,3,3500,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,1,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,10,22,98705,1197,1369,416,921,791,229,111449,56004,27883,11304,310,4.1,0,0,3500,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,4,1,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,10,22,98705,1072,1369,434,795,816,156,97351,52853,19155,7980,230,3.1,3,3,4000,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,4,1,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,11,23,98705,878,1369,436,616,763,127,74449,47333,15422,6266,230,1.5,3,3,4000,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,4,1,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,10,22,98705,626,1369,434,394,481,174,44386,33843,19672,6831,210,1.5,3,3,3500,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,4,1,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,11,26,98689,335,1369,457,82,0,82,8099,0,8161,2942,340,4.1,9,9,2600,1200,9,999999999,28,0,0,88,0.2,0,0 +2008,4,1,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,30,10.5,30,98663,24,1369,391,6,0,6,562,0,566,210,206,5.1,0,0,2600,1200,9,999999999,27,0,0,88,0.2,0,0 +2008,4,1,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,10,34,98637,0,105,421,0,0,0,0,0,0,0,160,6.2,9,9,2600,1200,9,999999999,25,0,0,88,0.2,0,0 +2008,4,1,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,9,34,98628,0,0,414,0,0,0,0,0,0,0,120,5.1,9,9,3500,1200,9,999999999,23,0,0,88,0.2,0,0 +2008,4,1,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,8,32,98628,0,0,412,0,0,0,0,0,0,0,140,7.2,9,9,3500,1200,9,999999999,21,0,0,88,0.2,0,0 +2008,4,1,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,7,30,98628,0,0,411,0,0,0,0,0,0,0,140,6.2,9,9,3500,1200,9,999999999,19,0,0,88,0.2,0,0 +2008,4,1,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,8,32,98628,0,0,389,0,0,0,0,0,0,0,150,3.1,5,5,3500,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,4,2,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,8,34,98619,0,0,384,0,0,0,0,0,0,0,130,4.1,5,5,3500,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,4,2,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,10,41,98610,0,0,381,0,0,0,0,0,0,0,170,3.1,5,5,3000,77777,9,999999999,26,0,0,88,0.2,0,0 +2008,4,2,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,11,41,98619,0,0,411,0,0,0,0,0,0,0,100,2.1,9,9,2500,1200,0,19999999,28,0,0,88,0.2,0,0 +2008,4,2,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,12,50,98601,0,0,401,0,0,0,0,0,0,0,90,2.6,9,9,2800,3000,0,19999999,31,0,0,88,0.2,0,0 +2008,4,2,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,12,64,98564,0,0,380,0,0,0,0,0,0,0,110,6.2,9,9,3000,1200,0,19999999,31,0,0,88,0.2,0,0 +2008,4,2,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,13,68,98564,0,0,381,0,0,0,0,0,0,0,110,7.2,9,9,3000,1200,0,19999999,35,0,0,88,0.2,0,0 +2008,4,2,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,12,60,98574,71,311,385,9,0,9,864,0,870,335,110,5.1,9,9,3000,1200,0,19999999,31,0,0,88,0.2,0,0 +2008,4,2,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,12,53,98592,380,1368,407,61,0,61,5989,0,6036,2453,130,3.1,10,10,3000,1200,0,19999999,31,0,0,88,0.2,0,0 +2008,4,2,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,12,53,98592,667,1368,407,136,0,136,13789,0,13908,5907,70,4.1,10,10,3000,1200,0,19999999,31,0,0,88,0.2,0,0 +2008,4,2,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,11,44,98610,911,1368,417,206,3,204,24135,201,24037,9415,170,4.6,10,10,3000,1200,0,19999999,28,0,0,88,0.2,0,0 +2008,4,2,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,10,39,98619,1097,1368,421,261,5,257,30829,377,30525,12137,210,7.2,10,10,2000,1200,0,19999999,25,0,0,88,0.2,0,0 +2008,4,2,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,10,39,98619,1211,1368,409,482,75,415,55820,6681,48420,17606,210,6.2,9,9,2500,1200,0,19999999,25,0,0,88,0.2,0,0 +2008,4,2,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,10,34,98637,1247,1368,421,499,81,426,57947,7147,49748,18064,130,2.6,9,9,3000,3000,0,19999999,25,0,0,88,0.2,0,0 +2008,4,2,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,9,29,98654,1200,1368,406,861,588,346,100996,48555,40798,15513,300,1.5,5,5,3000,3000,0,19999999,23,0,0,88,0.2,0,0 +2008,4,2,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,9,26,98672,1075,1368,411,798,817,157,97802,53424,19276,8026,320,2.6,3,3,4000,77777,0,19999999,23,0,0,88,0.2,0,0 +2008,4,2,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,11,29,98672,880,1368,414,618,762,128,74672,47357,15520,6308,106,0,3,3,4500,77777,0,19999999,28,0,0,88,0.2,0,0 +2008,4,2,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,11,29,98672,628,1368,414,395,526,153,44963,34674,17530,6270,80,2.1,3,3,4500,77777,0,19999999,28,0,0,88,0.2,0,0 +2008,4,2,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,11,33,98654,337,1368,409,150,233,92,16548,9467,10235,3190,70,4.1,5,5,4000,77777,0,19999999,28,0,0,88,0.2,0,0 +2008,4,2,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,13,42,98637,27,1368,401,6,0,6,581,0,585,218,100,3.1,5,5,3500,77777,0,19999999,34,0,0,88,0.2,0,0 +2008,4,2,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,13,45,98628,0,117,396,0,0,0,0,0,0,0,100,2.6,5,5,3000,77777,0,19999999,34,0,0,88,0.2,0,0 +2008,4,2,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,14,50,98619,0,0,386,0,0,0,0,0,0,0,90,2.6,3,3,2700,77777,0,19999999,38,0,0,88,0.2,0,0 +2008,4,2,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,14,50,98619,0,0,386,0,0,0,0,0,0,0,90,2.6,3,3,2800,77777,0,19999999,38,0,0,88,0.2,0,0 +2008,4,2,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,14,54,98610,0,0,381,0,0,0,0,0,0,0,90,2.6,3,3,2600,77777,0,19999999,38,0,0,88,0.2,0,0 +2008,4,2,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,14,57,98601,0,0,381,0,0,0,0,0,0,0,110,2.6,5,5,2600,77777,0,19999999,38,0,0,88,0.2,0,0 +2008,4,3,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,14,57,98601,0,0,381,0,0,0,0,0,0,0,90,2.6,5,5,2800,77777,0,19999999,38,0,0,88,0.2,0,0 +2008,4,3,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,14,57,98601,0,0,381,0,0,0,0,0,0,0,200,1.5,5,5,2600,77777,0,19999999,38,0,0,88,0.2,0,0 +2008,4,3,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,14,57,98601,0,0,381,0,0,0,0,0,0,0,200,2.1,5,5,2600,77777,0,19999999,38,0,0,88,0.2,0,0 +2008,4,3,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,13,50,98610,0,0,385,0,0,0,0,0,0,0,220,2.1,5,5,2800,77777,0,19999999,34,0,0,88,0.2,0,0 +2008,4,3,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,22,11,50,98592,0,0,373,0,0,0,0,0,0,0,285,0,5,5,3500,77777,0,19999999,28,0,0,88,0.2,0,0 +2008,4,3,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,22,10,46,98592,0,0,366,0,0,0,0,0,0,0,290,0,3,3,3500,77777,9,999999999,26,0,0,88,0.2,0,0 +2008,4,3,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,22,12,53,98592,77,338,374,17,0,17,1682,0,1694,586,115,0,5,5,5000,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,4,3,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,23,12,50,98601,386,1367,379,183,277,105,20280,13083,11674,3721,150,0,5,5,3500,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,4,3,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,13,47,98619,672,1367,390,406,471,174,46110,32256,19895,7137,90,2.1,5,5,2600,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,4,3,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,13,40,98646,916,1367,400,648,751,145,77894,47194,17517,7136,150,2.1,3,3,2700,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,4,3,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,10,29,98663,1101,1367,407,821,818,162,100612,53309,19988,8324,200,2.6,3,3,2800,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,4,3,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,8,24,98672,1215,1367,416,875,690,262,105169,51588,31635,12622,210,3.1,5,5,2800,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,4,3,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,9,23,98689,1250,1367,428,904,692,272,108779,51558,32857,13068,280,3.1,5,5,4000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,3,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,10,23,98697,1203,1367,429,914,834,181,112697,55003,22375,9250,240,2.6,3,3,5000,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,4,3,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,9,22,98697,1077,1367,427,801,838,140,98932,53304,17399,7287,280,2.6,3,3,4000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,3,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,10,22,98705,882,1367,434,621,731,150,74232,47958,17936,7210,250,1.5,3,3,4000,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,4,3,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,9,22,98697,631,1367,434,375,406,188,42099,29861,21181,7234,20,2.6,5,5,4000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,3,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,9,26,98672,340,1367,442,84,0,84,8304,0,8367,3013,60,2.6,9,9,3200,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,3,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,13,35,98663,29,1367,442,4,0,4,355,0,358,141,80,3.1,9,9,2800,1200,9,999999999,34,0,0,88,0.2,0,0 +2008,4,3,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,14,40,98654,0,130,438,0,0,0,0,0,0,0,90,2.6,9,9,2700,1200,9,999999999,38,0,0,88,0.2,0,0 +2008,4,3,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,13,40,98646,0,0,430,0,0,0,0,0,0,0,90,3.1,9,9,2700,1200,9,999999999,34,0,0,88,0.2,0,0 +2008,4,3,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,13,40,98646,0,0,430,0,0,0,0,0,0,0,100,3.6,9,9,2600,1200,9,999999999,34,0,0,88,0.2,0,0 +2008,4,3,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,25.5,12,43,98623,0,0,377,0,0,0,0,0,0,0,196,5.4,1,1,2800,1200,9,999999999,31,0,0,88,0.2,0,0 +2008,4,3,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,11,47,98601,0,0,400,0,0,0,0,0,0,0,290,7.2,9,9,3000,1200,9,999999999,28,0,0,88,0.2,0,0 +2008,4,4,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,11,50,98592,0,0,395,0,0,0,0,0,0,0,270,7.2,9,9,3000,1200,9,999999999,28,0,0,88,0.2,0,0 +2008,4,4,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,11,50,98592,0,0,395,0,0,0,0,0,0,0,260,7.2,9,9,3000,1200,0,99999999,28,0,0,88,0.2,0,0 +2008,4,4,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,20,12.5,62,98574,0,0,362,0,0,0,0,0,0,0,18,7.2,4,4,3000,1200,9,999999999,33,0,0,88,0.2,0,0 +2008,4,4,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,14,77,98555,0,0,388,0,0,0,0,0,0,0,150,7.2,10,10,3000,1200,0,19999999,38,0,0,88,0.2,0,0 +2008,4,4,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,13,73,98555,0,0,387,0,0,0,0,0,0,0,150,7.2,10,10,3000,1200,0,19999999,35,0,0,88,0.2,0,0 +2008,4,4,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,12,60,98574,0,0,385,0,0,0,0,0,0,0,220,2.1,9,9,3000,1200,9,999999999,31,0,0,88,0.2,0,0 +2008,4,4,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,12,60,98574,82,363,385,10,0,10,998,0,1005,387,270,6.2,9,9,3000,1200,9,999999999,31,0,0,88,0.2,0,0 +2008,4,4,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,13,64,98574,391,1367,386,103,5,102,11478,225,11366,3675,270,3.1,9,9,3000,1200,9,999999999,35,0,0,88,0.2,0,0 +2008,4,4,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,14,64,98583,677,1367,393,227,25,214,25338,1884,24066,8235,260,3.6,9,9,2800,1200,9,999999999,38,0,0,88,0.2,0,0 +2008,4,4,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,12,53,98592,920,1367,396,341,33,319,38609,2791,36351,12972,350,3.1,9,9,2800,1200,9,999999999,31,0,0,88,0.2,0,0 +2008,4,4,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,13,53,98601,1105,1367,403,429,48,390,49056,4165,44944,16347,30,3.1,9,9,3000,1200,9,999999999,35,0,0,88,0.2,0,0 +2008,4,4,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,14,54,98610,1218,1367,409,482,70,420,55702,6001,48858,17773,340,2.6,9,9,3000,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,4,4,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,14,50,98619,1252,1367,415,499,85,421,57855,7204,49196,17981,340,1.5,9,9,3000,1200,9,999999999,38,0,0,88,0.2,0,0 +2008,4,4,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,12,44,98619,1205,1367,412,478,71,415,55186,6179,48315,17575,240,3.1,9,9,2400,3000,9,999999999,31,0,0,88,0.2,0,0 +2008,4,4,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,12,44,98619,1080,1367,412,418,48,380,47722,4198,43686,15895,270,2.6,9,9,2600,3000,9,999999999,31,0,0,88,0.2,0,0 +2008,4,4,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,12,42,98628,885,1367,418,325,26,308,36607,2221,34917,12347,270,3.1,9,9,2800,3000,9,999999999,31,0,0,88,0.2,0,0 +2008,4,4,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,13,50,98610,633,1367,408,207,31,193,23179,2216,21693,7385,270,5.1,9,9,3000,3000,9,999999999,34,0,0,88,0.2,0,0 +2008,4,4,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,13,50,98610,342,1367,420,51,0,51,5058,0,5097,2068,270,5.1,10,10,3000,3000,9,999999999,34,0,0,88,0.2,0,0 +2008,4,4,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,23,14,57,98601,32,1367,404,4,0,4,386,0,389,153,84,0,9,9,3000,1200,9,999999999,38,0,0,88,0.2,0,0 +2008,4,4,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,23,14,57,98601,0,142,404,0,0,0,0,0,0,0,109,0,9,9,3000,1200,9,999999999,38,0,0,88,0.2,0,0 +2008,4,4,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,15,64,98592,0,0,400,0,0,0,0,0,0,0,330,2.6,9,9,2400,1200,9,999999999,42,0,0,88,0.2,0,0 +2008,4,4,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,22,15,64,98592,0,0,400,0,0,0,0,0,0,0,336,0,9,9,2200,1200,9,999999999,42,0,0,88,0.2,0,0 +2008,4,4,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,14,60,98592,0,0,398,0,0,0,0,0,0,0,350,2.1,9,9,2200,1200,9,999999999,38,0,0,88,0.2,0,0 +2008,4,4,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,22,15,64,98592,0,0,400,0,0,0,0,0,0,0,31,0,9,9,2200,1200,9,999999999,42,0,0,88,0.2,0,0 +2008,4,5,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,14,64,98583,0,0,371,0,0,0,0,0,0,0,20,2.6,5,5,2200,3000,9,999999999,38,0,0,88,0.2,0,0 +2008,4,5,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,13,64,98574,0,0,365,0,0,0,0,0,0,0,70,2.1,5,5,2400,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,4,5,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,13,68,98564,0,0,354,0,0,0,0,0,0,0,187,0,3,3,2500,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,4,5,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,13,68,98564,0,0,354,0,0,0,0,0,0,0,50,2.6,3,3,2000,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,4,5,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,13,68,98564,0,0,354,0,0,0,0,0,0,0,50,2.6,3,3,1700,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,4,5,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,13,68,98564,0,0,354,0,0,0,0,0,0,0,150,2.6,3,3,1800,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,4,5,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,13,68,98564,88,389,360,20,0,20,1917,0,1930,668,120,2.1,5,5,1800,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,4,5,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,14,73,98564,396,1366,361,189,279,108,20971,13245,12043,3859,120,1.5,5,5,1700,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,4,5,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,15,73,98574,682,1366,367,412,521,152,47328,32796,17550,6506,120,1.5,5,5,1600,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,4,5,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,24,15,57,98610,925,1366,388,616,549,244,71083,40465,28359,10864,64,0,5,5,1600,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,4,5,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,12,42,98628,1109,1366,418,431,113,340,49961,9334,39573,14958,230,4.1,9,9,2600,1200,9,999999999,31,0,0,88,0.2,0,0 +2008,4,5,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,12,42,98628,1222,1366,418,485,71,422,56150,6184,49186,17854,277,0,9,9,3500,1200,9,999999999,31,0,0,88,0.2,0,0 +2008,4,5,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,12,39,98637,1255,1366,423,502,86,423,58290,7422,49485,18051,216,0,9,9,3500,1200,9,999999999,31,0,0,88,0.2,0,0 +2008,4,5,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,11,35,98646,1208,1366,428,480,71,417,55461,6265,48526,17632,70,2.6,9,9,3500,1050,9,999999999,28,0,0,88,0.2,0,0 +2008,4,5,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,13,37,98654,1082,1366,436,418,112,329,48311,9122,38289,14501,60,5.1,9,9,3500,3000,9,999999999,34,0,0,88,0.2,0,0 +2008,4,5,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,23.5,13,52,98605,887,1366,377,624,614,225,72146,45165,26188,10015,271,6.1,3,3,2450,3000,9,999999999,34,0,0,88,0.2,0,0 +2008,4,5,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,18,13,73,98555,635,1366,358,347,306,205,38657,22663,22951,7690,250,7.2,6,6,1400,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,4,5,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,13,68,98564,345,1366,381,85,0,85,8375,0,8439,3058,50,4.1,9,9,2700,1050,0,19999999,35,0,0,88,0.2,0,0 +2008,4,5,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,14,73,98564,35,1366,382,4,0,4,418,0,421,166,60,4.1,9,9,3200,1050,0,19999999,38,0,0,88,0.2,0,0 +2008,4,5,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,14,73,98564,0,155,361,0,0,0,0,0,0,0,70,3.1,5,5,4500,77777,0,19999999,38,0,0,88,0.2,0,0 +2008,4,5,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,15,78,98564,0,0,362,0,0,0,0,0,0,0,100,3.6,5,5,5000,77777,0,19999999,42,0,0,88,0.2,0,0 +2008,4,5,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,14,68,98574,0,0,388,0,0,0,0,0,0,0,110,6.2,9,9,5000,77777,0,19999999,38,0,0,88,0.2,0,0 +2008,4,5,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,13,64,98574,0,0,386,0,0,0,0,0,0,0,140,4.1,9,9,5000,1200,0,19999999,35,0,0,88,0.2,0,0 +2008,4,5,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,13,68,98564,0,0,381,0,0,0,0,0,0,0,120,3.1,9,9,4000,1200,0,19999999,35,0,0,88,0.2,0,0 +2008,4,6,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,13,68,98564,0,0,381,0,0,0,0,0,0,0,200,2.1,9,9,4000,1200,0,19999999,35,0,0,88,0.2,0,0 +2008,4,6,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,13,68,98564,0,0,381,0,0,0,0,0,0,0,50,3.1,9,9,4000,1200,0,19999999,35,0,0,88,0.2,0,0 +2008,4,6,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,12,64,98564,0,0,380,0,0,0,0,0,0,0,210,1.5,9,9,4000,3000,0,19999999,31,0,0,88,0.2,0,0 +2008,4,6,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,14,73,98564,0,0,382,0,0,0,0,0,0,0,330,0,9,9,4000,1200,0,19999999,38,0,0,88,0.2,0,0 +2008,4,6,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,13,73,98555,0,0,376,0,0,0,0,0,0,0,160,4.6,9,9,3000,1050,0,19999999,35,0,0,88,0.2,0,0 +2008,4,6,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,13,73,98555,0,0,387,0,0,0,0,0,0,0,170,2.6,10,10,3000,1050,0,919999999,35,0,0,88,0.2,0,0 +2008,4,6,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,14,77,98555,94,415,388,7,0,7,688,0,692,281,190,6.2,10,10,3000,1050,0,919999999,38,0,0,88,0.2,0,0 +2008,4,6,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,14,77,98555,402,1365,377,107,6,105,11901,270,11759,3817,30,2.1,9,9,3000,1200,0,919999999,38,0,0,88,0.2,0,0 +2008,4,6,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,15,83,98555,686,1365,378,231,25,218,25760,1877,24469,8406,40,3.6,9,9,3000,1200,0,919999999,43,0,0,88,0.2,0,0 +2008,4,6,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,15,73,98574,929,1365,389,344,32,322,38814,2660,36589,13123,60,2.6,9,9,3200,1200,0,919999999,42,0,0,88,0.2,0,0 +2008,4,6,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,13,53,98601,1112,1365,403,432,112,341,50059,9181,39721,15021,120,3.6,9,9,3500,1200,0,919999999,35,0,0,88,0.2,0,0 +2008,4,6,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,12,44,98619,1225,1365,389,878,567,369,102670,46694,43449,16353,90,5.1,5,5,4000,77777,0,919999999,31,0,0,88,0.2,0,0 +2008,4,6,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,13,45,98628,1258,1365,396,905,556,393,105769,46136,46240,17219,70,5.1,5,5,4000,77777,0,919999999,34,0,0,88,0.2,0,0 +2008,4,6,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,13,45,98628,1210,1365,419,479,128,366,55942,10459,42976,16192,50,5.1,9,9,4000,3000,0,919999999,34,0,0,88,0.2,0,0 +2008,4,6,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,14,48,98628,1084,1365,397,754,550,317,87384,43594,36959,14140,70,5.1,5,5,4000,3000,0,919999999,38,0,0,88,0.2,0,0 +2008,4,6,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,14,48,98628,889,1365,397,587,620,183,68920,41637,21621,8550,80,5.1,5,5,4000,77777,0,919999999,38,0,0,88,0.2,0,0 +2008,4,6,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,14,48,98628,638,1365,397,376,498,144,43114,30959,16544,6036,90,5.1,5,5,3500,77777,0,919999999,38,0,0,88,0.2,0,0 +2008,4,6,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,14,48,98628,347,1365,391,164,325,81,18342,11598,9135,2975,70,4.1,3,3,4000,77777,0,919999999,38,0,0,88,0.2,0,0 +2008,4,6,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,15,57,98610,38,1365,382,9,0,9,860,0,865,312,60,3.1,3,3,5000,77777,0,919999999,42,0,0,88,0.2,0,0 +2008,4,6,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,15,57,98610,0,168,382,0,0,0,0,0,0,0,70,2.6,3,3,5000,77777,0,919999999,42,0,0,88,0.2,0,0 +2008,4,6,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,15,61,98601,0,0,377,0,0,0,0,0,0,0,70,2.6,3,3,5000,77777,0,919999999,42,0,0,88,0.2,0,0 +2008,4,6,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,15,64,98592,0,0,372,0,0,0,0,0,0,0,70,3.6,3,3,4500,77777,0,919999999,42,0,0,88,0.2,0,0 +2008,4,6,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,15,69,98583,0,0,367,0,0,0,0,0,0,0,50,4.1,3,3,4000,77777,0,919999999,42,0,0,88,0.2,0,0 +2008,4,6,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,15,69,98583,0,0,367,0,0,0,0,0,0,0,90,2.6,3,3,4000,77777,0,919999999,42,0,0,88,0.2,0,0 +2008,4,7,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,14,68,98574,0,0,388,0,0,0,0,0,0,0,30,5.1,9,9,4000,77777,0,919999999,38,0,0,88,0.2,0,0 +2008,4,7,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,13,64,98574,0,0,397,0,0,0,0,0,0,0,320,4.1,10,10,3500,1050,0,19999999,35,0,0,88,0.2,0,0 +2008,4,7,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,12,82,98527,0,0,360,0,0,0,0,0,0,0,270,3.1,9,9,5000,1050,0,19999999,32,0,0,88,0.2,0,0 +2008,4,7,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,12,82,98527,0,0,340,0,0,0,0,0,0,0,270,3.1,5,5,5000,1050,0,19999999,32,0,0,88,0.2,0,0 +2008,4,7,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,12,82,98527,0,0,340,0,0,0,0,0,0,0,100,2.1,5,5,5000,77777,0,19999999,32,0,0,88,0.2,0,0 +2008,4,7,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,12,77,98536,0,0,344,0,0,0,0,0,0,0,230,2.1,5,5,5000,77777,9,999999999,32,0,0,88,0.2,0,0 +2008,4,7,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,16,12,77,98536,100,440,351,19,0,19,1867,0,1880,673,176,2.8,7,7,3400,77777,9,999999999,32,0,0,88,0.2,0,0 +2008,4,7,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,12,77,98536,407,1364,344,197,289,111,21893,14523,12368,3979,90,3.6,5,5,1800,77777,9,999999999,32,0,0,88,0.2,0,0 +2008,4,7,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,11,60,98564,691,1364,358,422,540,149,48825,35299,17265,6441,107,0,5,5,2500,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,4,7,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,12,56,98583,933,1364,369,626,639,189,73963,44007,22452,8962,230,1.5,5,5,3000,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,4,7,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,12,50,98601,1116,1364,379,784,665,239,93391,47757,28682,11556,90,2.1,5,5,4000,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,4,7,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25,12,44,98619,1228,1364,383,934,826,191,114939,53917,23609,9731,204,0,3,3,4500,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,4,7,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,11,39,98628,1261,1364,387,966,837,192,119371,54988,23850,9815,300,2.6,3,3,5000,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,4,7,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,10,34,98637,1213,1364,397,870,678,268,104277,50263,32263,12847,300,3.1,5,5,5000,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,4,7,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,10,32,98646,1086,1364,402,761,665,231,90619,48339,27686,11158,250,3.1,5,5,5000,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,4,7,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,10,32,98646,891,1364,396,628,759,132,75888,48033,16041,6527,260,2.6,3,3,5000,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,4,7,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,9,32,98637,640,1364,390,404,589,128,46907,36906,14909,5527,260,5.1,3,3,6000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,7,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,10,34,98637,350,1364,391,167,305,88,18571,12510,9891,3163,250,4.6,3,3,6000,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,4,7,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,11,39,98628,41,1364,387,10,0,10,927,0,933,333,250,3.6,3,3,6000,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,4,7,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,11,41,98619,0,180,382,0,0,0,0,0,0,0,270,4.1,3,3,5000,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,4,7,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,12,44,98619,0,0,383,0,0,0,0,0,0,0,270,4.1,3,3,5000,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,4,7,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,13,53,98601,0,0,374,0,0,0,0,0,0,0,250,2.1,3,3,5000,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,4,7,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,13,57,98592,0,0,369,0,0,0,0,0,0,0,270,2.6,3,3,4500,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,4,7,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,13,57,98592,0,0,369,0,0,0,0,0,0,0,250,4.1,3,3,4500,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,4,8,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,12,53,98592,0,0,368,0,0,0,0,0,0,0,290,4.1,3,3,4500,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,4,8,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,12,56,98583,0,0,363,0,0,0,0,0,0,0,270,2.6,3,3,4000,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,4,8,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,12,60,98574,0,0,358,0,0,0,0,0,0,0,270,2.6,3,3,4000,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,4,8,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,12,60,98574,0,0,364,0,0,0,0,0,0,0,260,2.6,5,5,3500,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,4,8,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,13,68,98564,0,0,360,0,0,0,0,0,0,0,260,2.6,5,5,3500,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,4,8,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,13,73,98555,0,0,355,0,0,0,0,0,0,0,14,0,5,5,3500,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,4,8,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,17,13,77,98546,105,466,357,20,0,20,1964,0,1978,710,220,2.6,7,7,1500,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,4,8,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,18,13,73,98555,412,1363,358,185,272,103,20738,12969,11583,3816,220,2.6,6,6,1000,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,4,8,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,12,56,98583,696,1363,363,449,557,165,51485,37510,18964,6983,210,2.6,3,3,600,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,4,8,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,12,47,98610,937,1363,362,676,801,126,82494,48834,15431,6372,240,3.1,0,0,2200,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,4,8,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,10,39,98619,1120,1363,365,848,783,205,102460,54355,24852,10179,210,3.1,0,0,2400,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,4,8,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,8,28,98646,1231,1363,377,955,790,241,115768,57258,29424,11859,290,3.6,0,0,3500,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,4,8,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,7,25,98654,1263,1363,381,987,792,253,119781,58218,30862,12377,290,3.1,0,0,4000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,4,8,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,8,25,98663,1215,1363,387,940,789,237,113885,57029,28816,11637,340,4.1,0,0,5000,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,4,8,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,7,22,98672,1089,1363,391,823,781,199,99361,55367,24185,9896,300,5.1,0,0,6000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,4,8,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,7,22,98672,893,1363,391,641,791,123,78016,50361,15055,6146,180,5.1,0,0,6000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,4,8,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,9,27,98663,642,1363,389,411,562,147,47228,37121,16929,6155,170,5.7,0,0,6000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,8,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,9,27,98663,352,1363,406,168,308,89,18793,12923,9951,3186,300,5.1,3,3,6000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,8,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,11,33,98654,43,1363,386,10,0,10,1000,0,1007,357,300,4.1,0,0,6000,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,4,8,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,12,39,98637,0,193,377,0,0,0,0,0,0,0,260,3.1,0,0,6000,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,4,8,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,12,39,98637,0,0,377,0,0,0,0,0,0,0,270,4.1,0,0,5000,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,4,8,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,13,42,98637,0,0,378,0,0,0,0,0,0,0,270,3.1,0,0,5000,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,4,8,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,11,39,98628,0,0,371,0,0,0,0,0,0,0,320,4.1,0,0,4000,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,4,8,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,13,47,98619,0,0,369,0,0,0,0,0,0,0,320,4.6,0,0,4000,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,4,9,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,13,50,98610,0,0,364,0,0,0,0,0,0,0,340,3.1,0,0,4000,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,4,9,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,13,50,98610,0,0,364,0,0,0,0,0,0,0,310,4.1,0,0,4000,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,4,9,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,13,53,98601,0,0,359,0,0,0,0,0,0,0,310,3.6,0,0,4000,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,4,9,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,13,53,98601,0,0,359,0,0,0,0,0,0,0,310,2.6,0,0,4000,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,4,9,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,14,60,98592,0,0,355,0,0,0,0,0,0,0,290,2.1,0,0,4000,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,4,9,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,14,64,98583,0,0,350,0,0,0,0,0,0,0,290,2.6,0,0,3500,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,4,9,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,20.5,13.5,64,98578,111,491,368,25,0,25,2419,0,2436,842,53,2.3,5,5,2200,77777,9,999999999,36,0,0,88,0.2,0,0 +2008,4,9,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,13,64,98574,417,1362,365,207,309,112,23025,15609,12547,4071,240,2.1,5,5,900,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,4,9,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,22,14,60,98592,700,1362,373,444,553,160,51069,36020,18429,6849,230,2.6,4,4,1200,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,4,9,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,13,42,98637,941,1362,378,679,775,143,82015,48393,17388,7140,270,3.6,0,0,2800,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,4,9,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,14,42,98646,1123,1362,385,846,856,140,104964,51264,17440,7333,270,5.1,0,0,4000,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,4,9,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,13,37,98654,1234,1362,389,950,790,235,115194,54253,28617,11599,270,5.1,0,0,4500,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,4,9,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,13,33,98672,1266,1362,399,980,792,245,118952,54695,29836,12046,270,7.2,0,0,5000,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,4,9,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,12,29,98680,1217,1362,403,936,789,231,113437,54696,28186,11432,290,9.3,0,0,6000,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,4,9,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,12,28,98689,1091,1362,408,819,855,135,101557,52145,16758,7046,270,4.1,0,0,6000,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,4,9,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,12,26,98697,895,1362,414,638,787,121,77572,47606,14751,6047,290,6.2,0,0,6000,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,4,9,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,12,28,98689,644,1362,408,411,617,119,47919,36582,13967,5245,290,6.7,0,0,5000,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,4,9,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,12,28,98689,355,1362,408,171,303,92,19042,12577,10311,3284,270,8.2,0,0,5000,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,4,9,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,13,33,98672,46,1362,416,11,0,11,1044,0,1051,373,270,7.7,3,3,5000,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,4,9,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,13,35,98663,0,205,394,0,0,0,0,0,0,0,280,6.7,0,0,5000,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,4,9,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,13,37,98654,0,0,389,0,0,0,0,0,0,0,280,4.6,0,0,5000,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,4,9,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,13,37,98654,0,0,389,0,0,0,0,0,0,0,300,6.2,0,0,5000,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,4,9,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,13,40,98646,0,0,384,0,0,0,0,0,0,0,310,4.1,0,0,5000,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,4,9,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,13,42,98637,0,0,378,0,0,0,0,0,0,0,290,4.6,0,0,5000,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,4,10,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,14,48,98628,0,0,375,0,0,0,0,0,0,0,300,3.1,0,0,5000,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,4,10,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,14,50,98619,0,0,370,0,0,0,0,0,0,0,280,3.1,0,0,4000,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,4,10,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,15,61,98601,0,0,361,0,0,0,0,0,0,0,260,1.5,0,0,3200,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,4,10,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,15,64,98592,0,0,356,0,0,0,0,0,0,0,240,2.1,0,0,2500,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,4,10,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,21,14,64,98583,0,0,371,0,0,0,0,0,0,0,210,2.1,5,5,1500,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,4,10,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,20,15,73,98574,0,0,371,0,0,0,0,0,0,0,210,1,6,6,1400,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,4,10,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,20,15,73,98574,117,516,371,24,0,24,2295,0,2312,821,220,1,6,6,1200,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,4,10,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,22,15,64,98592,422,1362,377,210,308,114,23283,15284,12737,4144,230,1.5,5,5,1000,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,4,10,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,15,54,98619,705,1362,387,456,637,126,53449,37455,14871,5717,260,2.1,3,3,1200,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,4,10,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,15,48,98637,945,1362,397,671,777,132,81528,46159,16128,6670,260,2.1,3,3,2000,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,4,10,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,14,34,98680,1127,1362,423,838,833,149,103560,50614,18518,7765,290,6.2,3,3,3200,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,4,10,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,14,34,98680,1237,1362,423,939,846,171,116543,52308,21360,8868,290,4.1,3,3,3500,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,4,10,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,13,28,98697,1268,1362,433,970,854,174,120752,53444,21817,9036,290,4.1,3,3,3500,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,4,10,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,12,26,98697,1219,1362,432,926,850,165,115126,53489,20600,8563,270,4.1,3,3,3500,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,4,10,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,12,25,98705,1093,1362,437,810,829,145,99944,51458,17962,7531,270,4.1,3,3,3500,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,4,10,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,11,23,98705,897,1362,436,632,730,152,75635,47515,18217,7357,290,8.2,3,3,3000,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,4,10,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,12,25,98705,646,1362,444,384,503,145,44075,32160,16754,6130,290,4.1,5,5,3500,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,4,10,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,12,26,98697,357,1362,432,170,332,83,19113,12866,9377,3067,280,7.2,3,3,3500,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,4,10,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,12,28,98689,49,1362,433,11,0,11,1039,0,1046,374,300,7.7,5,5,4000,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,4,10,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,12,31,98672,0,218,421,0,0,0,0,0,0,0,300,6.2,5,5,3500,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,4,10,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,12,33,98663,0,0,410,0,0,0,0,0,0,0,280,6.2,3,3,3500,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,4,10,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,12,35,98654,0,0,404,0,0,0,0,0,0,0,280,6.2,3,3,3500,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,4,10,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,13,40,98646,0,0,400,0,0,0,0,0,0,0,300,6.2,3,3,3500,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,4,10,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,14,45,98637,0,0,396,0,0,0,0,0,0,0,300,5.7,3,3,3500,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,4,11,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,14,48,98628,0,0,391,0,0,0,0,0,0,0,320,5.7,3,3,3500,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,4,11,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,13,47,98619,0,0,384,0,0,0,0,0,0,0,320,3.6,3,3,3500,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,4,11,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,13,50,98610,0,0,379,0,0,0,0,0,0,0,320,3.1,3,3,4000,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,4,11,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,12,47,98610,0,0,378,0,0,0,0,0,0,0,290,3.6,3,3,4000,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,4,11,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,12,50,98601,0,0,373,0,0,0,0,0,0,0,240,2.1,3,3,4000,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,4,11,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,14,68,98574,0,0,360,0,0,0,0,0,0,0,240,2.6,3,3,3200,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,4,11,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,14,68,98574,122,541,346,30,1,29,3265,0,3267,972,240,2.6,0,0,2500,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,4,11,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,13,57,98592,427,1361,354,226,366,111,25267,18579,12475,4100,230,4.1,0,0,2800,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,4,11,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,26,13,45,98627,709,1361,386,467,661,122,54969,39484,14451,5578,134,4.1,2,2,2900,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,4,11,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,13,35,98663,949,1361,394,686,801,127,83706,48359,15582,6454,260,4.1,0,0,3000,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,4,11,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,13,33,98672,1130,1361,399,854,857,142,105964,52063,17690,7428,270,4.6,0,0,4000,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,4,11,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,12,26,98697,1240,1361,414,957,790,238,116088,54929,29023,11741,280,6.2,0,0,5000,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,4,11,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,11,23,98705,1271,1361,418,988,791,249,119958,55990,30408,12240,300,5.1,0,0,5000,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,4,11,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,10,22,98705,1221,1361,416,943,789,236,114328,55902,28700,11608,270,7.7,0,0,5000,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,4,11,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,10,21,98714,1095,1361,422,825,835,153,101518,53632,18919,7904,280,6.2,0,0,5000,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,4,11,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,9,20,98705,899,1361,433,636,758,135,76846,48643,16407,6681,290,7.7,3,3,4000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,11,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,9,20,98705,648,1361,433,411,539,154,47054,36339,17700,6411,290,5.1,3,3,4000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,11,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,12,25,98705,359,1361,444,162,239,99,17936,10496,11007,3463,290,6.2,5,5,4000,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,4,11,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,12,26,98697,52,1361,438,11,0,11,1094,0,1102,393,290,5.1,5,5,3200,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,4,11,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,13,30,98689,0,230,434,0,0,0,0,0,0,0,280,8.2,5,5,4000,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,4,11,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,14,34,98680,0,0,423,0,0,0,0,0,0,0,290,7.7,3,3,4000,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,4,11,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,14,36,98672,0,0,418,0,0,0,0,0,0,0,290,4.1,3,3,4000,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,4,11,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,14,38,98663,0,0,412,0,0,0,0,0,0,0,320,5.1,3,3,4000,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,4,11,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,14,40,98654,0,0,407,0,0,0,0,0,0,0,320,7.7,3,3,4000,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,4,12,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,15,45,98646,0,0,403,0,0,0,0,0,0,0,320,6.2,3,3,4000,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,4,12,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,15,48,98637,0,0,397,0,0,0,0,0,0,0,290,5.1,3,3,4000,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,4,12,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,16,54,98628,0,0,393,0,0,0,0,0,0,0,320,5.1,3,3,4000,77777,9,999999999,46,0,0,88,0.2,0,0 +2008,4,12,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,15,51,98628,0,0,392,0,0,0,0,0,0,0,310,3.6,3,3,3500,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,4,12,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,17,61,98619,0,0,389,0,0,0,0,0,0,0,270,3.1,3,3,3500,77777,9,999999999,51,0,0,88,0.2,0,0 +2008,4,12,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,16,57,98619,0,0,388,0,0,0,0,0,0,0,280,3.6,3,3,3500,77777,9,999999999,46,0,0,88,0.2,0,0 +2008,4,12,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,17,69,98601,128,565,379,31,5,31,3449,0,3405,1017,210,2.1,3,3,2500,77777,9,999999999,52,0,0,88,0.2,0,0 +2008,4,12,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,16,65,98601,432,1360,378,226,349,115,25137,17287,12832,4215,250,3.6,3,3,2800,77777,9,999999999,47,0,0,88,0.2,0,0 +2008,4,12,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,17,58,98628,714,1360,378,468,663,120,55060,37139,14208,5519,260,3.6,0,0,3000,77777,9,999999999,51,0,0,88,0.2,0,0 +2008,4,12,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,16,45,98654,953,1360,392,686,815,115,84229,45951,14137,5897,270,4.1,0,0,2800,77777,9,999999999,46,0,0,88,0.2,0,0 +2008,4,12,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,16,38,98680,1133,1360,408,852,783,200,102968,50291,24307,10015,240,2.6,0,0,2800,77777,9,999999999,46,0,0,88,0.2,0,0 +2008,4,12,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,15,32,98697,1242,1360,418,955,789,234,115806,52780,28547,11590,250,5.1,0,0,3500,77777,9,999999999,41,0,0,88,0.2,0,0 +2008,4,12,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,16,32,98705,1273,1360,425,982,791,242,119187,52385,29507,11952,280,5.1,0,0,4000,77777,9,999999999,46,0,0,88,0.2,0,0 +2008,4,12,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,15,29,98714,1223,1360,429,938,788,229,113604,52522,27848,11331,280,6.7,0,0,4000,77777,9,999999999,41,0,0,88,0.2,0,0 +2008,4,12,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,14,27,98714,1097,1360,427,821,850,136,101776,50686,16905,7116,280,6.2,0,0,3000,77777,9,999999999,37,0,0,88,0.2,0,0 +2008,4,12,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,14,27,98714,901,1360,427,641,785,121,77894,46287,14726,6055,290,6.7,0,0,3000,77777,9,999999999,37,0,0,88,0.2,0,0 +2008,4,12,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,14,27,98714,650,1360,427,414,535,159,47226,34716,18156,6568,290,6.2,0,0,3000,77777,9,999999999,37,0,0,88,0.2,0,0 +2008,4,12,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,14,28,98705,362,1360,440,173,290,96,19171,12067,10672,3402,300,6.2,3,3,3000,77777,9,999999999,37,0,0,88,0.2,0,0 +2008,4,12,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,13,28,98697,54,1360,440,12,0,12,1147,0,1155,411,300,5.1,5,5,2700,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,4,12,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,13,30,98689,0,243,434,0,0,0,0,0,0,0,310,4.6,5,5,2600,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,4,12,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,13,31,98680,0,0,428,0,0,0,0,0,0,0,310,3.1,5,5,2800,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,4,12,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,15,36,98680,0,0,407,0,0,0,0,0,0,0,330,3.1,0,0,3000,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,4,12,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,15,36,98680,0,0,407,0,0,0,0,0,0,0,320,3.1,0,0,3000,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,4,12,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,16,40,98672,0,0,403,0,0,0,0,0,0,0,300,2.1,0,0,3000,77777,9,999999999,46,0,0,88,0.2,0,0 +2008,4,13,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,17,46,98663,0,0,399,0,0,0,0,0,0,0,310,1,0,0,3000,77777,9,999999999,51,0,0,88,0.2,0,0 +2008,4,13,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,17,48,98654,0,0,394,0,0,0,0,0,0,0,300,3.1,0,0,2700,77777,9,999999999,51,0,0,88,0.2,0,0 +2008,4,13,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,16,48,98646,0,0,387,0,0,0,0,0,0,0,310,5.1,0,0,2700,77777,9,999999999,46,0,0,88,0.2,0,0 +2008,4,13,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,16,54,98628,0,0,377,0,0,0,0,0,0,0,310,5.1,0,0,2800,77777,9,999999999,46,0,0,88,0.2,0,0 +2008,4,13,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,15,51,98628,0,0,376,0,0,0,0,0,0,0,320,5.1,0,0,2800,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,4,13,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,14,50,98619,0,0,415,0,0,0,0,0,0,0,310,4.1,9,9,3000,1200,9,999999999,38,0,0,88,0.2,0,0 +2008,4,13,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,13,47,98619,133,590,414,18,0,18,1703,0,1715,662,340,7.7,9,9,3000,1200,9,999999999,34,0,0,88,0.2,0,0 +2008,4,13,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,13,47,98619,437,1359,414,121,7,119,13437,349,13257,4333,340,3.1,9,9,3500,1200,9,999999999,34,0,0,88,0.2,0,0 +2008,4,13,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,13,45,98628,718,1359,419,245,26,231,27484,2046,26060,9016,40,2.1,9,9,3500,1200,9,999999999,34,0,0,88,0.2,0,0 +2008,4,13,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,14,38,98663,957,1359,443,357,32,334,40432,2724,38111,13729,40,2.6,9,9,3500,1200,9,999999999,38,0,0,88,0.2,0,0 +2008,4,13,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,14,34,98680,1136,1359,455,443,47,404,50772,4079,46585,16920,310,4.1,9,9,3500,1200,9,999999999,38,0,0,88,0.2,0,0 +2008,4,13,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,13,31,98680,1245,1359,454,496,84,419,57595,7228,48959,17910,310,4.6,9,9,3500,1200,9,999999999,34,0,0,88,0.2,0,0 +2008,4,13,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,13,30,98689,1275,1359,460,511,84,431,59401,7249,50551,18418,290,2.1,9,9,3500,1200,9,999999999,34,0,0,88,0.2,0,0 +2008,4,13,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,13,28,98697,1225,1359,466,487,70,424,56296,6032,49385,17946,40,2.1,9,9,3500,3000,9,999999999,34,0,0,88,0.2,0,0 +2008,4,13,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,13,27,98705,1098,1359,472,426,47,387,48697,4102,44637,16268,200,2.1,9,9,3500,3000,9,999999999,34,0,0,88,0.2,0,0 +2008,4,13,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,13,25,98714,903,1359,478,332,26,315,37499,2178,35792,12744,150,1.5,9,9,3500,3000,9,999999999,34,0,0,88,0.2,0,0 +2008,4,13,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,13,25,98714,652,1359,478,215,31,200,24084,2268,22530,7729,270,2.6,9,9,3500,3000,9,999999999,34,0,0,88,0.2,0,0 +2008,4,13,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,13,25,98714,364,1359,451,165,232,102,18186,10381,11360,3565,240,1.5,5,5,3500,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,4,13,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,13,25,98714,57,1359,451,13,0,13,1202,0,1210,430,250,1.5,5,5,3500,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,4,13,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,33,13,30,98689,0,255,434,0,0,0,0,0,0,0,228,0,5,5,3500,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,4,13,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,32,14,34,98680,0,0,423,0,0,0,0,0,0,0,158,0,3,3,3200,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,4,13,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,15,38,98672,0,0,419,0,0,0,0,0,0,0,204,0,3,3,2500,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,4,13,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,16,45,98654,0,0,392,0,0,0,0,0,0,0,110,2.1,0,0,2000,77777,9,999999999,46,0,0,88,0.2,0,0 +2008,4,13,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,16,45,98654,0,0,409,0,0,0,0,0,0,0,120,2.1,3,3,2200,77777,9,999999999,46,0,0,88,0.2,0,0 +2008,4,14,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,15,43,98654,0,0,408,0,0,0,0,0,0,0,140,3.1,3,3,2800,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,4,14,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,16,48,98646,0,0,404,0,0,0,0,0,0,0,160,2.1,3,3,2500,77777,9,999999999,46,0,0,88,0.2,0,0 +2008,4,14,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,16,51,98637,0,0,405,0,0,0,0,0,0,0,186,0,5,5,2500,77777,9,999999999,46,0,0,88,0.2,0,0 +2008,4,14,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,17,54,98637,0,0,400,0,0,0,0,0,0,0,162,0,3,3,2500,77777,9,999999999,51,0,0,88,0.2,0,0 +2008,4,14,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,18,58,98637,0,0,401,0,0,0,0,0,0,0,226,0,3,3,2400,77777,9,999999999,57,0,0,88,0.2,0,0 +2008,4,14,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,18,61,98628,0,0,402,0,0,0,0,0,0,0,215,0,5,5,2500,77777,9,999999999,57,0,0,88,0.2,0,0 +2008,4,14,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,17,54,98637,138,614,430,19,0,19,1804,0,1817,703,45,0,9,9,2000,77777,0,919999999,51,0,0,88,0.2,0,0 +2008,4,14,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,19,69,98619,442,1359,398,219,280,128,24112,14055,14128,4574,70,2.6,5,5,1600,1200,0,919999999,63,0,0,88,0.2,0,0 +2008,4,14,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28,21,66,98646,722,1359,417,439,556,144,50847,30791,16704,6417,90,3.1,5,5,1600,1200,0,919999999,76,0,0,88,0.2,0,0 +2008,4,14,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,21,55,98672,960,1359,434,639,654,177,75682,38205,21019,8588,110,3.1,5,5,2000,77777,0,919999999,76,0,0,88,0.2,0,0 +2008,4,14,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,16,36,98689,1139,1359,438,799,685,224,95747,45607,26996,11003,130,2.6,5,5,2700,77777,0,919999999,46,0,0,88,0.2,0,0 +2008,4,14,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,15,29,98714,1248,1359,454,894,653,294,106555,47224,35294,13930,180,1.5,5,5,3000,77777,0,919999999,41,0,0,88,0.2,0,0 +2008,4,14,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,15,29,98714,1278,1359,429,988,804,232,120427,53154,28481,11573,210,2.6,0,0,3000,77777,0,919999999,41,0,0,88,0.2,0,0 +2008,4,14,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,10,20,98722,1227,1359,453,883,675,273,105932,50174,32976,13103,230,4.1,5,5,3500,77777,0,919999999,25,0,0,88,0.2,0,0 +2008,4,14,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,11,20,98730,1100,1359,460,771,677,223,92284,47997,26845,10892,230,3.1,5,5,3500,77777,0,919999999,28,0,0,88,0.2,0,0 +2008,4,14,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,12,21,98730,905,1359,462,601,600,202,70399,42484,23745,9322,270,5.1,5,5,3200,77777,0,919999999,31,0,0,88,0.2,0,0 +2008,4,14,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,9,17,98730,654,1359,450,416,591,131,48275,37420,15285,5698,280,6.2,3,3,3000,77777,0,919999999,23,0,0,88,0.2,0,0 +2008,4,14,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,7,16,98722,366,1359,448,168,260,98,18668,12197,10900,3465,300,6.2,5,5,4000,77777,0,919999999,19,0,0,88,0.2,0,0 +2008,4,14,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,9,19,98714,60,1359,445,13,0,13,1264,0,1273,450,280,5.1,5,5,4000,77777,0,919999999,23,0,0,88,0.2,0,0 +2008,4,14,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,33,10,24,98689,0,268,423,0,0,0,0,0,0,0,112,0,3,3,3500,77777,0,919999999,25,0,0,88,0.2,0,0 +2008,4,14,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,12,31,98672,0,0,415,0,0,0,0,0,0,0,208,0,3,3,3000,77777,0,919999999,31,0,0,88,0.2,0,0 +2008,4,14,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,12,31,98672,0,0,415,0,0,0,0,0,0,0,320,2.1,3,3,2500,77777,0,919999999,31,0,0,88,0.2,0,0 +2008,4,14,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,11,29,98672,0,0,414,0,0,0,0,0,0,0,320,2.6,3,3,2300,77777,0,919999999,28,0,0,88,0.2,0,0 +2008,4,14,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,12,31,98672,0,0,398,0,0,0,0,0,0,0,320,3.1,0,0,2700,77777,0,919999999,31,0,0,88,0.2,0,0 +2008,4,15,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,13,35,98663,0,0,394,0,0,0,0,0,0,0,320,2.1,0,0,2500,77777,0,919999999,34,0,0,88,0.2,0,0 +2008,4,15,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,13,40,98646,0,0,384,0,0,0,0,0,0,0,20,2.6,0,0,2700,77777,0,919999999,34,0,0,88,0.2,0,0 +2008,4,15,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,14,45,98637,0,0,380,0,0,0,0,0,0,0,309,0,0,0,2700,77777,0,919999999,38,0,0,88,0.2,0,0 +2008,4,15,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,14,45,98637,0,0,380,0,0,0,0,0,0,0,175,0,0,0,2700,77777,0,919999999,38,0,0,88,0.2,0,0 +2008,4,15,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,14,48,98628,0,0,375,0,0,0,0,0,0,0,193,0,0,0,3200,77777,0,919999999,38,0,0,88,0.2,0,0 +2008,4,15,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,24,15,57,98610,0,0,366,0,0,0,0,0,0,0,78,0,0,0,3200,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,4,15,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,13,50,98610,144,638,379,38,24,36,4216,0,3943,1172,220,2.6,3,3,2200,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,4,15,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25,16,57,98619,447,1358,372,240,385,113,26807,19109,12694,4245,20,0,0,0,1800,77777,9,999999999,46,0,0,88,0.2,0,0 +2008,4,15,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,16,48,98646,727,1358,387,480,669,122,56570,38333,14385,5609,240,1.5,0,0,1800,77777,9,999999999,46,0,0,88,0.2,0,0 +2008,4,15,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,15,36,98680,964,1358,407,697,808,123,85325,47050,15175,6322,240,2.6,0,0,2000,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,4,15,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,13,27,98705,1142,1358,420,865,856,145,107453,52144,18059,7572,270,2.6,0,0,2600,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,4,15,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,10,20,98722,1250,1358,427,970,789,244,117756,56146,29795,12010,260,2.1,0,0,4000,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,4,15,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,9,18,98722,1280,1358,426,1000,790,255,121447,57107,31128,12488,300,3.1,0,0,4000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,15,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,9,17,98730,1229,1358,450,940,860,161,117403,55274,20190,8386,280,2.6,3,3,3500,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,15,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,9,16,98739,1102,1358,456,822,809,165,100770,53403,20374,8474,290,4.1,3,3,4000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,15,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,9,16,98739,907,1358,463,606,601,204,70972,43849,24085,9430,260,4.1,5,5,5000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,15,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,9,16,98739,656,1358,463,393,404,198,44212,30359,22381,7711,270,2.1,5,5,6000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,15,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,7,15,98730,369,1358,481,94,5,93,10496,208,10395,3356,290,2.6,9,9,6000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,4,15,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,7,16,98722,63,1358,475,8,0,8,733,0,738,286,320,5.1,9,9,5000,1200,9,999999999,19,0,0,88,0.2,0,0 +2008,4,15,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,7,16,98722,0,281,475,0,0,0,0,0,0,0,340,8.2,9,9,5000,1200,9,999999999,19,0,0,88,0.2,0,0 +2008,4,15,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,9,20,98705,0,0,466,0,0,0,0,0,0,0,290,4.1,9,9,5000,1200,9,999999999,23,0,0,88,0.2,0,0 +2008,4,15,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,10,24,98689,0,0,455,0,0,0,0,0,0,0,340,4.1,9,9,4500,1200,9,999999999,25,0,0,88,0.2,0,0 +2008,4,15,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,10,26,98680,0,0,449,0,0,0,0,0,0,0,340,4.1,9,9,4500,1200,9,999999999,25,0,0,88,0.2,0,0 +2008,4,15,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,11,29,98672,0,0,420,0,0,0,0,0,0,0,350,5.7,5,5,4000,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,4,16,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,12,35,98654,0,0,410,0,0,0,0,0,0,0,20,4.1,5,5,4000,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,4,16,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,13,37,98654,0,0,412,0,0,0,0,0,0,0,30,3.1,5,5,4000,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,4,16,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,12,37,98646,0,0,405,0,0,0,0,0,0,0,20,2.6,5,5,4000,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,4,16,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,12,37,98646,0,0,405,0,0,0,0,0,0,0,20,4.1,5,5,4000,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,4,16,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,12,37,98646,0,0,405,0,0,0,0,0,0,0,340,3.6,5,5,4000,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,4,16,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,12,39,98637,0,0,400,0,0,0,0,0,0,0,340,2.6,5,5,4000,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,4,16,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,12,39,98637,149,661,400,38,15,37,4213,0,4047,1208,340,2.6,5,5,4000,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,4,16,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,12,39,98637,451,1357,400,228,313,123,25374,17426,13820,4533,300,3.1,5,5,3500,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,4,16,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,12,35,98654,731,1357,404,480,581,167,55389,39316,19390,7266,320,3.1,3,3,2800,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,4,16,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,13,33,98672,967,1357,416,693,773,142,84113,47947,17340,7170,20,2.6,3,3,2800,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,4,16,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,13,33,98672,1145,1357,416,856,831,155,105882,51443,19232,8040,40,4.1,3,3,3000,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,4,16,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,14,28,98705,1253,1357,440,954,843,176,118405,52307,21922,9085,50,3.1,3,3,3500,77777,9,999999999,37,0,0,88,0.2,0,0 +2008,4,16,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,11,21,98722,1282,1357,447,985,837,195,122061,54910,24287,9980,140,2.6,3,3,3500,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,4,16,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,10,19,98730,1231,1357,459,886,674,275,106314,50121,33193,13180,180,3.1,5,5,4000,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,4,16,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,9,17,98730,1104,1357,457,776,678,225,92998,48968,27067,10966,230,4.1,5,5,5000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,16,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,10,18,98739,908,1357,465,606,626,187,71487,43896,22139,8786,180,4.1,5,5,5000,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,4,16,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,9,16,98739,658,1357,463,394,403,199,44342,30339,22490,7752,230,3.1,5,5,5000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,16,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,10,19,98730,371,1357,486,94,4,93,10505,160,10433,3379,250,4.6,9,9,4500,3000,9,999999999,25,0,0,88,0.2,0,0 +2008,4,16,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,10,21,98714,65,1357,473,8,0,8,758,0,763,296,250,3.6,9,9,3500,3000,9,999999999,25,0,0,88,0.2,0,0 +2008,4,16,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,11,23,98705,0,293,443,0,0,0,0,0,0,0,270,2.1,5,5,3500,3000,9,999999999,28,0,0,88,0.2,0,0 +2008,4,16,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,12,26,98697,0,0,438,0,0,0,0,0,0,0,270,2.1,5,5,3200,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,4,16,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,13,28,98697,0,0,440,0,0,0,0,0,0,0,320,2.1,5,5,2500,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,4,16,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,13,30,98689,0,0,434,0,0,0,0,0,0,0,320,2.1,5,5,2200,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,4,16,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,32,14,34,98680,0,0,430,0,0,0,0,0,0,0,127,0,5,5,2500,6000,9,999999999,38,0,0,88,0.2,0,0 +2008,4,17,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,13,31,98680,0,0,428,0,0,0,0,0,0,0,320,2.6,5,5,2500,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,4,17,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,14,36,98672,0,0,449,0,0,0,0,0,0,0,70,0,9,9,2500,6000,9,999999999,38,0,0,88,0.2,0,0 +2008,4,17,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,15,43,98654,0,0,439,0,0,0,0,0,0,0,89,0,9,9,2500,6000,9,999999999,42,0,0,88,0.2,0,0 +2008,4,17,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,15,43,98654,0,0,439,0,0,0,0,0,0,0,165,0,9,9,2500,6000,9,999999999,42,0,0,88,0.2,0,0 +2008,4,17,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,16,48,98646,0,0,435,0,0,0,0,0,0,0,40,2.6,9,9,1800,6000,9,999999999,46,0,0,88,0.2,0,0 +2008,4,17,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,15,48,98637,0,0,428,0,0,0,0,0,0,0,90,6.2,9,9,1600,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,4,17,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,15,48,98637,154,685,428,22,0,22,2155,0,2170,833,290,2.6,9,9,1600,3000,9,999999999,42,0,0,88,0.2,0,0 +2008,4,17,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,16,54,98628,456,1356,423,127,15,122,14170,791,13662,4527,240,2.6,9,9,1600,1200,9,999999999,46,0,0,88,0.2,0,0 +2008,4,17,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,15,43,98654,735,1356,414,453,428,221,51093,31667,25076,8907,280,4.6,5,5,1800,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,4,17,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,16,43,98663,971,1356,421,653,617,212,76749,41842,24999,9991,320,2.6,5,5,2200,77777,9,999999999,46,0,0,88,0.2,0,0 +2008,4,17,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,15,32,98697,1148,1356,443,807,678,233,96701,46248,28063,11382,340,2.6,5,5,2400,77777,9,999999999,41,0,0,88,0.2,0,0 +2008,4,17,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,16,32,98705,1255,1356,450,898,685,264,108039,46948,31987,12825,290,3.1,5,5,2600,77777,9,999999999,46,0,0,88,0.2,0,0 +2008,4,17,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,15,29,98714,1284,1356,454,925,679,282,111193,47883,34080,13553,290,6.2,5,5,2900,77777,9,999999999,41,0,0,88,0.2,0,0 +2008,4,17,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,11,22,98714,1233,1356,448,886,688,261,106715,49808,31634,12654,270,4.6,5,5,3500,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,4,17,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,11,21,98722,1105,1356,454,775,674,226,92764,47923,27177,11017,300,4.1,5,5,4000,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,4,17,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,11,21,98722,910,1356,454,606,622,188,71459,43377,22330,8862,300,4.1,5,5,4000,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,4,17,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,9,19,98714,660,1356,445,396,476,164,45217,32935,18814,6792,300,4.1,5,5,4000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,17,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,9,19,98714,373,1356,445,171,259,100,19033,12181,11155,3558,300,4.1,5,5,4000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,17,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,10,23,98697,68,1356,435,15,0,15,1419,0,1428,503,320,4.1,5,5,2500,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,4,17,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,9,24,98680,0,306,423,0,0,0,0,0,0,0,350,5.1,5,5,3200,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,17,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,8,27,98654,0,0,399,0,0,0,0,0,0,0,350,9.3,3,3,3200,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,4,17,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,10,32,98646,0,0,396,0,0,0,0,0,0,0,330,6.2,3,3,3200,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,4,17,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,11,37,98637,0,0,392,0,0,0,0,0,0,0,350,4.1,3,3,3200,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,4,17,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,10,37,98628,0,0,386,0,0,0,0,0,0,0,330,4.1,3,3,3200,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,4,18,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,10,37,98628,0,0,386,0,0,0,0,0,0,0,340,5.1,3,3,3200,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,4,18,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,11,41,98619,0,0,366,0,0,0,0,0,0,0,320,4.1,0,0,3500,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,4,18,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,10,41,98610,0,0,360,0,0,0,0,0,0,0,310,3.1,0,0,4000,77777,9,999999999,26,0,0,88,0.2,0,0 +2008,4,18,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,11,47,98601,0,0,356,0,0,0,0,0,0,0,300,4.1,0,0,4000,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,4,18,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,11,50,98592,0,0,352,0,0,0,0,0,0,0,310,4.1,0,0,4000,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,4,18,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,11,50,98592,0,0,352,0,0,0,0,0,0,0,320,3.1,0,0,4000,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,4,18,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,10,46,98592,159,708,350,46,60,39,5064,0,4302,1289,290,5.1,0,0,4000,77777,9,999999999,26,0,0,88,0.2,0,0 +2008,4,18,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,10,44,98601,461,1355,355,252,424,108,28525,22663,12284,4181,300,2.6,0,0,4000,77777,9,999999999,26,0,0,88,0.2,0,0 +2008,4,18,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,10,39,98619,738,1355,365,494,667,131,58322,42188,15509,6014,270,3.1,0,0,4000,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,4,18,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,10,34,98637,974,1355,375,711,802,135,86932,50617,16516,6849,300,4.1,0,0,4000,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,4,18,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,8,27,98654,1151,1355,382,879,782,216,106434,55537,26245,10691,270,5.1,0,0,4500,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,4,18,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,9,27,98663,1257,1355,389,978,788,247,118765,56645,30188,12148,250,4.1,0,0,4500,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,18,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,7,22,98672,1286,1355,391,1008,789,259,122517,58061,31675,12674,270,5.1,0,0,4500,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,4,18,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,8,23,98680,1234,1355,398,958,787,242,116253,56861,29490,11887,290,5.1,0,0,4500,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,4,18,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,7,20,98689,1107,1355,402,839,779,204,101474,55246,24731,10118,270,5.1,0,0,4500,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,4,18,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,7,20,98689,912,1355,402,657,785,129,79885,50469,15738,6447,270,5.1,0,0,4500,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,4,18,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,6,19,98689,662,1355,400,429,611,130,49974,39580,15231,5703,270,6.2,0,0,4500,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,18,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,6,19,98689,375,1355,400,186,335,93,20871,15666,10496,3407,270,5.1,0,0,5000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,18,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,6,20,98680,71,1355,395,16,0,16,1590,0,1601,553,270,5.1,0,0,5000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,18,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,7,22,98672,0,319,391,0,0,0,0,0,0,0,290,4.1,0,0,4000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,4,18,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,7,24,98663,0,0,386,0,0,0,0,0,0,0,290,4.1,0,0,4000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,4,18,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,7,24,98663,0,0,386,0,0,0,0,0,0,0,290,4.1,0,0,4000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,4,18,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,7,25,98654,0,0,381,0,0,0,0,0,0,0,290,4.1,0,0,4000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,4,18,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,8,28,98646,0,0,377,0,0,0,0,0,0,0,300,6.7,0,0,4000,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,4,19,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,9,32,98637,0,0,374,0,0,0,0,0,0,0,300,5.7,0,0,4000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,19,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,9,34,98628,0,0,369,0,0,0,0,0,0,0,300,5.1,0,0,4000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,19,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,9,36,98619,0,0,364,0,0,0,0,0,0,0,320,5.1,0,0,4000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,19,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,9,38,98610,0,0,359,0,0,0,0,0,0,0,280,5.1,0,0,4000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,19,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,10,44,98601,0,0,355,0,0,0,0,0,0,0,250,2.1,0,0,5000,77777,9,999999999,26,0,0,88,0.2,0,0 +2008,4,19,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,11,47,98601,0,0,372,0,0,0,0,0,0,0,240,1.5,3,3,5000,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,4,19,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,12,56,98583,164,731,363,47,45,42,5217,0,4625,1374,230,2.1,3,3,2000,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,4,19,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,12,50,98601,465,1355,373,252,386,119,28224,21256,13410,4496,250,2.6,3,3,2400,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,4,19,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,10,37,98628,742,1355,386,491,643,139,57739,41479,16376,6323,290,5.1,3,3,2800,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,4,19,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,11,33,98654,977,1355,403,704,773,146,85515,49335,17808,7360,300,6.2,3,3,4000,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,4,19,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,8,24,98672,1154,1355,410,870,838,157,107957,54557,19539,8141,320,8.2,3,3,5000,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,4,19,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,8,23,98680,1259,1355,415,969,787,237,118154,56256,29033,11730,280,7.2,3,3,6000,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,4,19,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,6,18,98697,1288,1355,406,1011,789,261,122936,58526,31942,12765,300,8.2,0,0,7000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,19,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,5,16,98705,1236,1355,409,964,786,247,116969,58268,30082,12086,300,8.7,0,0,7000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,19,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,5,15,98714,1108,1355,415,843,778,207,101954,56147,25095,10246,300,4.1,0,0,7000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,19,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,5,15,98714,913,1355,415,660,779,135,80132,51397,16404,6701,290,7.2,0,0,7000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,19,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,4,14,98714,664,1355,413,431,606,134,50236,40227,15718,5862,270,7.2,0,0,7000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,4,19,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,4,14,98714,378,1355,413,188,340,93,21133,16245,10532,3423,290,6.7,0,0,7000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,4,19,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,4,14,98705,74,1355,408,17,0,17,1651,0,1662,573,290,5.1,0,0,6000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,4,19,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,6,19,98689,0,331,400,0,0,0,0,0,0,0,270,3.6,0,0,6000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,19,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,6,21,98672,0,0,390,0,0,0,0,0,0,0,270,3.1,0,0,5000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,19,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,6,20,98680,0,0,395,0,0,0,0,0,0,0,290,3.6,0,0,5000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,19,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,8,24,98672,0,0,393,0,0,0,0,0,0,0,290,3.6,0,0,5000,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,4,19,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,7,22,98672,0,0,391,0,0,0,0,0,0,0,320,4.1,0,0,5000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,4,20,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,8,27,98654,0,0,382,0,0,0,0,0,0,0,300,4.1,0,0,5000,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,4,20,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,9,30,98646,0,0,379,0,0,0,0,0,0,0,320,2.1,0,0,4500,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,20,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,8,28,98646,0,0,377,0,0,0,0,0,0,0,340,3.1,0,0,4000,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,4,20,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,8,30,98637,0,0,372,0,0,0,0,0,0,0,320,2.6,0,0,4000,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,4,20,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,9,32,98637,0,0,374,0,0,0,0,0,0,0,340,2.6,0,0,4000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,20,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25,9,36,98619,0,0,364,0,0,0,0,0,0,0,227,0,0,0,3500,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,20,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,10,44,98601,169,753,362,50,73,41,5578,0,4582,1377,200,2.1,1,1,1600,77777,9,999999999,26,0,0,88,0.2,0,0 +2008,4,20,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,25,10,39,98619,469,1354,372,259,412,116,29180,22981,13154,4445,220,2.1,1,1,1600,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,4,20,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,13,37,98654,746,1354,389,499,675,127,58945,40906,15037,5879,270,3.6,0,0,2000,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,4,20,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,12,31,98672,980,1354,398,715,801,134,87370,49479,16507,6861,280,2.6,0,0,2200,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,4,20,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,11,25,98697,1156,1354,412,880,858,147,109564,53543,18403,7698,280,2.6,0,0,2500,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,4,20,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,7,17,98714,1262,1354,418,985,787,252,119677,57668,30740,12336,300,6.2,0,0,3000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,4,20,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,5,15,98714,1289,1354,415,1014,789,263,123339,58960,32199,12851,290,6.2,0,0,4000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,20,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,4,13,98722,1238,1354,419,967,786,248,117330,58675,30317,12166,300,7.2,0,0,5000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,4,20,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,3,12,98722,1110,1354,417,847,778,209,102411,56944,25442,10368,270,4.1,0,0,6000,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,4,20,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,4,12,98730,915,1354,424,662,777,138,80342,51821,16756,6837,270,6.2,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,4,20,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,4,12,98730,666,1354,424,433,606,135,50418,40290,15773,5887,300,6.2,0,0,8000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,4,20,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,3,12,98722,380,1354,417,190,343,94,21348,16606,10582,3444,300,7.7,0,0,8000,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,4,20,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,3,13,98714,76,1354,412,18,0,18,1710,0,1721,592,280,4.1,0,0,4500,77777,9,999999999,12,0,0,88,0.2,0,0 +2008,4,20,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,4,14,98705,0,344,408,0,0,0,0,0,0,0,280,3.1,0,0,4500,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,4,20,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,4,15,98697,0,0,403,0,0,0,0,0,0,0,280,3.1,0,0,4500,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,4,20,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,5,18,98680,0,0,394,0,0,0,0,0,0,0,260,1.5,0,0,4000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,20,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,7,24,98663,0,0,386,0,0,0,0,0,0,0,72,0,0,0,2200,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,4,20,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,7,24,98663,0,0,386,0,0,0,0,0,0,0,277,0,0,0,2200,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,4,21,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,7,24,98663,0,0,386,0,0,0,0,0,0,0,209,0,0,0,2200,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,4,21,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,10,34,98637,0,0,375,0,0,0,0,0,0,0,303,0,0,0,1800,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,4,21,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25,8,34,98619,0,0,362,0,0,0,0,0,0,0,354,0,0,0,1600,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,4,21,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,24,8,36,98610,0,0,358,0,0,0,0,0,0,0,289,0,0,0,1500,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,4,21,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,24,7,34,98610,0,0,356,0,0,0,0,0,0,0,288,0,0,0,1500,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,4,21,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,24,8,36,98610,0,0,358,0,0,0,0,0,0,0,76,0,0,0,1600,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,4,21,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,23,7,36,98601,174,775,352,53,81,42,5856,0,4724,1419,187,0,0,0,1600,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,4,21,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25,8,34,98619,473,1353,362,263,417,117,29659,23867,13240,4482,278,0,0,0,2500,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,4,21,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,8,30,98637,750,1353,372,505,667,136,59626,43441,16108,6248,240,3.1,0,0,2600,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,4,21,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,9,24,98680,983,1353,399,721,803,137,88163,51294,16810,6975,240,3.6,0,0,3500,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,21,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,34.5,7.5,19,98701,1159,1353,410,887,781,219,107439,55795,26605,10823,159,3.8,0,0,4250,77777,9,999999999,20,0,0,88,0.2,0,0 +2008,4,21,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,6,15,98722,1264,1353,422,988,787,254,120094,58119,30983,12419,260,4.1,0,0,5000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,21,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,6,14,98730,1291,1353,427,1014,788,262,123376,58488,32078,12814,290,4.1,0,0,5000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,21,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,5,12,98739,1239,1353,431,967,786,247,117350,58226,30194,12127,290,5.1,0,0,4000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,21,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,5,12,98739,1111,1353,431,846,778,207,102298,56108,25179,10279,300,5.1,0,0,3000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,21,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,5,12,98747,916,1353,437,663,778,136,80440,51394,16544,6762,300,5.1,0,0,2700,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,21,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,5,12,98739,668,1353,431,433,607,134,50512,40020,15650,5856,270,4.1,0,0,2600,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,21,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,5,13,98730,382,1353,426,191,339,95,21399,16324,10694,3482,290,3.1,0,0,2700,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,21,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,5,13,98730,79,1353,426,18,0,18,1756,0,1768,609,300,6.2,0,0,2800,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,21,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,6,16,98714,0,357,416,0,0,0,0,0,0,0,310,4.1,0,0,2800,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,21,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,6,19,98689,0,0,400,0,0,0,0,0,0,0,250,2.1,0,0,2800,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,21,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,7,20,98689,0,0,402,0,0,0,0,0,0,0,290,2.6,0,0,4000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,4,21,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,7,21,98680,0,0,396,0,0,0,0,0,0,0,320,3.1,0,0,4500,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,4,21,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,8,23,98680,0,0,398,0,0,0,0,0,0,0,310,2.6,0,0,5000,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,4,22,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,8,24,98672,0,0,393,0,0,0,0,0,0,0,320,3.1,0,0,5000,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,4,22,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,9,26,98672,0,0,394,0,0,0,0,0,0,0,330,2.6,0,0,5000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,22,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,9,27,98663,0,0,389,0,0,0,0,0,0,0,320,3.1,0,0,5000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,22,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,10,31,98654,0,0,385,0,0,0,0,0,0,0,300,3.1,0,0,5000,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,4,22,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,11,37,98637,0,0,376,0,0,0,0,0,0,0,280,1.5,0,0,4000,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,4,22,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,11,41,98619,0,0,366,0,0,0,0,0,0,0,220,2.1,0,0,2200,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,4,22,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,11,41,98619,178,797,366,55,64,46,6043,34,5130,1524,220,2.6,0,0,1700,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,4,22,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,11,39,98628,478,1352,371,265,411,120,29807,23142,13525,4579,240,3.1,0,0,2200,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,4,22,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,12,35,98654,753,1352,387,505,674,130,59733,41672,15442,6037,250,4.1,0,0,3000,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,4,22,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,12,29,98680,986,1352,403,720,801,136,88020,49538,16693,6944,270,4.1,0,0,3500,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,4,22,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,11,25,98697,1161,1352,412,884,858,148,110146,53535,18517,7743,270,5.1,0,0,3500,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,4,22,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,10,20,98722,1266,1352,427,984,787,248,119619,56044,30333,12208,270,6.2,0,0,4000,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,4,22,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,9,17,98730,1293,1352,431,1011,788,258,123035,56964,31587,12657,360,4.1,0,0,4000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,22,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,7,14,98739,1241,1352,434,965,785,245,117197,57288,29902,12032,290,4.1,0,0,4000,77777,9,999999999,18,0,0,88,0.2,0,0 +2008,4,22,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,5,12,98747,1113,1352,437,847,777,208,102469,56094,25227,10298,290,4.1,0,0,4000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,22,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,5,12,98747,918,1352,437,664,778,136,80602,51397,16599,6786,300,6.2,0,0,4000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,22,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,5,12,98747,670,1352,437,435,607,134,50687,40078,15704,5880,290,7.2,0,0,3500,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,22,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,4,12,98739,384,1352,430,192,342,95,21615,16690,10744,3502,270,7.2,0,0,3500,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,4,22,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,4,12,98730,82,1352,424,19,0,19,1814,0,1826,629,280,4.6,0,0,3500,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,4,22,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,4,14,98714,0,370,413,0,0,0,0,0,0,0,260,2.6,0,0,3000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,4,22,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,5,16,98697,0,0,404,0,0,0,0,0,0,0,270,2.6,0,0,3500,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,22,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,6,19,98689,0,0,400,0,0,0,0,0,0,0,240,1.5,0,0,3200,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,22,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,7,22,98672,0,0,391,0,0,0,0,0,0,0,220,1.5,0,0,2500,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,4,22,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,7,22,98672,0,0,391,0,0,0,0,0,0,0,240,1.5,0,0,2200,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,4,23,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,8,27,98654,0,0,382,0,0,0,0,0,0,0,161,0,0,0,2000,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,4,23,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,7,24,98663,0,0,386,0,0,0,0,0,0,0,290,2.1,0,0,2500,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,4,23,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,7,24,98663,0,0,386,0,0,0,0,0,0,0,300,1.5,0,0,2500,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,4,23,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,8,25,98663,0,0,387,0,0,0,0,0,0,0,340,2.6,0,0,2800,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,4,23,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,9,29,98654,0,0,384,0,0,0,0,0,0,0,284,0,0,0,3500,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,23,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,10,37,98628,0,0,370,0,0,0,0,0,0,0,69,0,0,0,3200,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,4,23,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,11,39,98628,183,819,371,57,69,48,6296,155,5289,1572,220,2.1,0,0,2000,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,4,23,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,11,35,98646,482,1352,381,268,413,121,30175,23438,13635,4625,220,1.5,0,0,2000,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,4,23,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,31,11.5,30,98671,757,1352,397,509,674,132,60144,42056,15616,6106,230,0.8,0,0,2400,77777,9,999999999,29,0,0,88,0.2,0,0 +2008,4,23,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,34,12,26,98697,989,1352,414,723,801,137,88357,49576,16765,6976,350,0,0,0,2800,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,4,23,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,11,21,98722,1163,1352,429,887,858,148,110457,53542,18553,7756,320,2.1,0,0,2800,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,4,23,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,9,16,98739,1267,1352,437,988,786,250,120047,56594,30598,12298,300,4.6,0,0,2500,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,23,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,7,14,98747,1294,1352,440,1016,788,262,123610,57979,32027,12803,310,5.1,0,0,2500,77777,9,999999999,18,0,0,88,0.2,0,0 +2008,4,23,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,6,12,98755,1242,1352,470,901,644,309,107541,51122,37094,14459,310,5.7,5,5,2500,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,23,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,6,13,98747,1114,1352,457,836,804,173,102525,54805,21332,8839,320,6.2,3,3,2500,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,23,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,6,12,98755,919,1352,463,656,750,145,79207,50125,17632,7184,320,6.2,3,3,2800,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,23,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,5,12,98747,671,1352,437,436,607,135,50858,40131,15760,5904,280,7.7,0,0,4000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,23,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,6,13,98747,387,1352,438,193,340,96,21698,16445,10838,3537,320,7.2,0,0,4500,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,23,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,5,12,98739,84,1352,431,19,0,19,1867,0,1879,648,320,4.6,0,0,4000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,23,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,6,15,98722,0,382,422,0,0,0,0,0,0,0,320,2.6,0,0,2500,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,23,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,6,15,98722,0,0,422,0,0,0,0,0,0,0,320,4.1,0,0,2500,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,23,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,6,16,98714,0,0,416,0,0,0,0,0,0,0,320,4.1,0,0,2500,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,23,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,8,21,98689,0,0,403,0,0,0,0,0,0,0,270,2.1,0,0,2500,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,4,23,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,7,19,98697,0,0,407,0,0,0,0,0,0,0,290,3.1,0,0,2500,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,4,24,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,10,27,98672,0,0,395,0,0,0,0,0,0,0,250,1.5,0,0,2500,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,4,24,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,9,27,98663,0,0,389,0,0,0,0,0,0,0,230,1.5,0,0,2500,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,24,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,9,29,98654,0,0,384,0,0,0,0,0,0,0,230,1.5,0,0,2500,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,24,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,9,30,98646,0,0,379,0,0,0,0,0,0,0,240,2.1,0,0,2500,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,24,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,9,32,98637,0,0,374,0,0,0,0,0,0,0,226,0,0,0,2200,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,24,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,8,32,98628,0,0,383,0,0,0,0,0,0,0,196,0,3,3,2000,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,4,24,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,8,32,98628,188,841,383,59,92,46,6534,347,5125,1548,210,1.5,3,3,2000,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,4,24,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,8,28,98646,486,1351,394,269,408,122,30321,24036,13829,4688,230,2.6,3,3,2600,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,4,24,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,9,26,98672,760,1351,394,514,671,136,60677,43368,16174,6304,230,2.6,0,0,3000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,24,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,10,23,98697,992,1351,411,727,802,138,88989,50835,17002,7066,250,3.1,0,0,3000,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,4,24,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,10,20,98722,1166,1351,427,890,780,217,107874,54467,26451,10780,260,2.1,0,0,3000,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,4,24,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,6,13,98739,1269,1351,433,994,786,255,120806,58075,31206,12500,280,3.1,0,0,3500,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,24,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,5,12,98747,1296,1351,437,1020,787,265,124153,58875,32447,12942,270,6.2,0,0,4000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,24,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,5,12,98747,1243,1351,456,958,785,236,116815,57251,28936,11680,300,6.2,3,3,4000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,24,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,5,11,98755,1115,1351,442,850,777,208,102794,56061,25316,10332,280,4.1,0,0,3500,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,24,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,5,11,98755,921,1351,442,666,777,137,80922,51404,16705,6833,290,5.1,0,0,4500,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,24,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,5,11,98755,673,1351,442,438,607,135,51030,40186,15814,5928,290,4.6,0,0,7000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,24,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,5,12,98747,389,1351,437,195,343,97,21913,16817,10888,3557,300,3.6,0,0,7000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,24,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,4,12,98739,87,1351,430,20,0,20,1924,0,1937,667,290,3.1,0,0,6000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,4,24,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,4,13,98722,0,395,419,0,0,0,0,0,0,0,270,3.1,0,0,3500,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,4,24,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,33,6,19,98689,0,0,400,0,0,0,0,0,0,0,193,0,0,0,2500,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,24,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,33,6,19,98689,0,0,400,0,0,0,0,0,0,0,263,0,0,0,2500,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,24,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,32,6,20,98680,0,0,395,0,0,0,0,0,0,0,79,0,0,0,2500,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,24,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,7,22,98672,0,0,391,0,0,0,0,0,0,0,205,0,0,0,2000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,4,25,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,30,8,25,98663,0,0,387,0,0,0,0,0,0,0,154,0,0,0,1600,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,4,25,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,28,8,28,98646,0,0,377,0,0,0,0,0,0,0,260,2.1,0,0,1200,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,4,25,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,28,8,28,98646,0,0,377,0,0,0,0,0,0,0,121,0,0,0,1200,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,4,25,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,28,6,25,98646,0,0,375,0,0,0,0,0,0,0,240,1,0,0,1300,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,25,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,6,28,98628,0,0,365,0,0,0,0,0,0,0,331,0,0,0,1600,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,25,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25,8,34,98619,0,0,362,0,0,0,0,0,0,0,294,0,0,0,1600,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,4,25,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,25,9,36,98619,192,862,364,62,104,47,6862,480,5234,1585,250,2.1,0,0,1300,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,25,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,27,9,32,98637,490,1350,374,275,425,121,31047,24728,13696,4672,250,2.1,0,0,1400,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,25,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,10,31,98654,763,1350,385,515,672,135,60948,43007,16074,6281,220,2.1,0,0,1800,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,4,25,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,11,25,98697,995,1350,412,729,801,139,89132,50267,17017,7079,240,2.1,0,0,2300,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,4,25,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,11,20,98730,1168,1350,434,891,780,216,107965,53878,26362,10753,240,1.5,0,0,2600,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,4,25,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,6,13,98739,1271,1350,433,995,786,256,121024,58056,31271,12524,320,5.7,0,0,4500,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,25,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,5,12,98747,1297,1350,437,1022,787,266,124337,58851,32502,12962,290,9.3,0,0,5000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,25,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,5,12,98747,1245,1350,437,972,784,249,118038,58136,30395,12201,290,8.2,0,0,5000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,25,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,5,11,98755,1117,1350,442,851,777,208,102947,56042,25355,10347,290,6.2,0,0,4000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,25,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,5,12,98747,922,1350,437,668,776,138,81068,51402,16763,6859,290,6.2,0,0,4000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,25,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,5,12,98747,675,1350,437,439,607,136,51194,40233,15872,5954,290,6.2,0,0,4000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,25,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,5,12,98747,391,1350,437,197,344,97,22082,16978,10952,3582,290,6.2,0,0,4000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,25,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,5,12,98747,90,1350,437,20,0,20,1976,0,1990,686,270,6.2,0,0,4000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,25,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,5,13,98730,0,408,426,0,0,0,0,0,0,0,320,3.6,0,0,4000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,25,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,5,15,98714,0,0,415,0,0,0,0,0,0,0,320,3.1,0,0,3500,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,25,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,6,16,98714,0,0,416,0,0,0,0,0,0,0,320,3.1,0,0,4000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,25,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,34,7,19,98697,0,0,407,0,0,0,0,0,0,0,241,0,0,0,3200,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,4,25,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,6,20,98680,0,0,395,0,0,0,0,0,0,0,340,2.1,0,0,3000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,26,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,7,21,98680,0,0,396,0,0,0,0,0,0,0,340,2.1,0,0,4000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,4,26,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,6,21,98672,0,0,390,0,0,0,0,0,0,0,20,2.1,0,0,5000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,26,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,6,21,98672,0,0,390,0,0,0,0,0,0,0,360,1.5,0,0,5000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,26,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,6,21,98672,0,0,390,0,0,0,0,0,0,0,320,2.6,0,0,5000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,26,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,7,24,98663,0,0,386,0,0,0,0,0,0,0,36,0,0,0,5000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,4,26,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,8,25,98663,0,0,387,0,0,0,0,0,0,0,103,1,0,0,5000,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,4,26,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,8,28,98646,196,882,377,64,109,48,7110,717,5358,1625,159,0,0,0,3500,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,4,26,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,10,31,98654,493,1349,385,277,424,122,31284,24605,13848,4730,210,2.1,0,0,2200,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,4,26,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,9,26,98672,766,1349,394,519,671,138,61324,43536,16362,6388,220,2.6,0,0,2200,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,26,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,10,23,98697,997,1349,411,732,801,140,89553,50871,17184,7146,270,2.6,0,0,2300,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,4,26,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,10,20,98722,1170,1349,427,894,780,218,108370,54444,26581,10829,290,2.6,0,0,3000,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,4,26,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,6,14,98730,1273,1349,427,997,785,256,121218,58025,31314,12540,290,2.6,0,0,3500,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,26,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,7,14,98747,1299,1349,440,1020,787,263,124149,57901,32177,12858,310,3.6,0,0,3500,77777,9,999999999,18,0,0,88,0.2,0,0 +2008,4,26,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,7,14,98747,1246,1349,440,970,784,246,117847,57188,30078,12098,270,3.6,0,0,4000,77777,9,999999999,18,0,0,88,0.2,0,0 +2008,4,26,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,7,13,98755,1118,1349,465,838,805,171,102900,54261,21103,8753,270,4.1,3,3,4000,77777,9,999999999,18,0,0,88,0.2,0,0 +2008,4,26,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,6,12,98755,924,1349,463,659,748,147,79613,50099,17840,7273,300,4.1,3,3,4000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,26,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,6,12,98755,677,1349,463,434,585,141,50443,39009,16407,6134,270,4.1,3,3,4000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,26,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,5,12,98747,393,1349,456,195,329,99,21903,16525,11196,3651,310,6.2,3,3,4000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,26,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,5,12,98739,93,1349,450,21,0,21,1998,0,2012,696,290,3.6,3,3,3500,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,26,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,5,13,98730,0,421,444,0,0,0,0,0,0,0,350,2.1,3,3,3200,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,26,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,5,15,98714,0,0,433,0,0,0,0,0,0,0,350,2.1,3,3,3000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,26,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,5,16,98705,0,0,409,0,0,0,0,0,0,0,350,2.1,0,0,3000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,26,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,6,17,98705,0,0,411,0,0,0,0,0,0,0,20,1.5,0,0,3000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,26,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,6,18,98697,0,0,406,0,0,0,0,0,0,0,30,1.5,0,0,3000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,27,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,5,17,98689,0,0,399,0,0,0,0,0,0,0,30,1,0,0,3000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,27,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,32,6,20,98680,0,0,395,0,0,0,0,0,0,0,256,0,0,0,3500,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,27,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,6,21,98672,0,0,390,0,0,0,0,0,0,0,20,1.5,0,0,3500,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,27,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,8,27,98654,0,0,382,0,0,0,0,0,0,0,340,2.1,0,0,2700,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,4,27,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,6,23,98654,0,0,380,0,0,0,0,0,0,0,10,2.1,0,0,3200,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,27,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,7,25,98654,0,0,398,0,0,0,0,0,0,0,30,1.5,3,3,3200,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,4,27,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,8,27,98654,201,903,399,65,108,49,7263,865,5495,1668,250,2.1,3,3,3200,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,4,27,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,10,29,98663,497,1349,407,276,409,126,31162,24125,14224,4845,343,0,3,3,3200,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,4,27,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,9,24,98680,770,1349,399,521,671,138,61658,43633,16434,6422,20,2.6,0,0,3500,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,27,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,10,21,98714,1000,1349,422,734,801,140,89851,50899,17250,7175,330,2.1,0,0,4500,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,4,27,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,9,16,98739,1172,1349,437,897,779,220,108785,54995,26828,10915,30,2.6,0,0,5000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,27,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,10,17,98747,1274,1349,463,980,860,167,122791,54790,21047,8715,20,1.5,3,3,5000,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,4,27,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,9,15,98755,1300,1349,468,1005,842,193,125102,55886,24169,9921,250,2.1,3,3,5000,77777,9,999999999,22,0,0,88,0.2,0,0 +2008,4,27,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,7,13,98755,1247,1349,472,904,687,269,109096,51509,32646,12995,230,2.6,5,5,4500,77777,9,999999999,18,0,0,88,0.2,0,0 +2008,4,27,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,7,13,98755,1119,1349,472,791,673,233,94916,49611,28095,11339,340,2.6,5,5,4000,77777,9,999999999,18,0,0,88,0.2,0,0 +2008,4,27,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,6,12,98755,925,1349,470,622,645,180,74046,45834,21546,8630,300,5.1,5,5,4000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,27,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,6,12,98755,678,1349,463,435,585,141,50605,39056,16461,6158,300,3.6,3,3,4500,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,27,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,6,13,98747,395,1349,457,196,328,100,22024,16471,11277,3681,310,4.1,3,3,4000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,27,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,6,13,98747,95,1349,492,11,0,11,1071,0,1079,420,320,4.1,9,9,3200,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,27,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,7,15,98730,0,434,481,0,0,0,0,0,0,0,10,5.1,9,9,2500,1200,9,999999999,19,0,0,88,0.2,0,0 +2008,4,27,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,36,9,19,98714,0,0,472,0,0,0,0,0,0,0,61,0,9,9,2500,1200,9,999999999,23,0,0,88,0.2,0,0 +2008,4,27,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,9,20,98705,0,0,466,0,0,0,0,0,0,0,60,2.6,9,9,3000,1200,9,999999999,23,0,0,88,0.2,0,0 +2008,4,27,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,34,10,23,98697,0,0,429,0,0,0,0,0,0,0,208,0,3,3,3000,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,4,27,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,9,22,98697,0,0,427,0,0,0,0,0,0,0,60,1,3,3,3000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,28,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,33,10,24,98689,0,0,430,0,0,0,0,0,0,0,39,0,5,5,3000,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,4,28,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,12,33,98663,0,0,416,0,0,0,0,0,0,0,232,0,5,5,2200,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,4,28,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,11,33,98654,0,0,409,0,0,0,0,0,0,0,160,1,5,5,2100,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,4,28,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,11,35,98646,0,0,404,0,0,0,0,0,0,0,240,1.5,5,5,2000,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,4,28,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,28,10,32,98646,0,0,380,0,0,0,0,0,0,0,240,1.5,0,0,1800,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,4,28,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,27,10,34,98637,0,0,375,0,0,0,0,0,0,0,140,2.1,0,0,1400,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,4,28,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,26,10,37,98628,205,923,370,68,119,50,7578,963,5587,1702,240,2.6,0,0,1400,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,4,28,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,28,11,35,98646,501,1348,381,282,423,125,31848,24688,14187,4853,240,2.1,0,0,1600,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,4,28,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,11,29,98672,773,1348,396,522,675,136,61837,42773,16113,6324,280,2.6,0,0,1800,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,4,28,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,10,24,98689,1002,1348,406,736,801,141,90109,50912,17337,7213,290,4.1,0,0,2400,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,4,28,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,9,19,98714,1174,1348,420,899,779,220,109007,54977,26882,10935,300,4.6,0,0,3000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,28,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,9,18,98722,1276,1348,426,995,785,252,121072,56488,30885,12404,270,4.1,0,0,3000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,28,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,5,12,98739,1301,1348,431,1025,786,266,124829,58766,32633,13010,330,7.2,0,0,3000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,28,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,5,12,98747,1248,1348,437,975,783,250,118475,58051,30506,12242,280,4.1,0,0,3500,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,28,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,5,12,98747,1120,1348,437,854,776,209,103364,55964,25442,10380,240,5.1,0,0,4500,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,28,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,5,12,98747,927,1348,437,671,774,139,81463,51376,16961,6944,290,5.1,0,0,4500,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,28,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,5,12,98747,680,1348,437,443,606,137,51642,40328,16074,6038,280,5.1,0,0,5000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,28,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,4,12,98739,397,1348,430,201,347,99,22598,17593,11148,3656,290,7.7,0,0,5000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,4,28,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,4,12,98730,98,1348,424,22,0,22,2134,0,2148,742,290,6.2,0,0,5000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,4,28,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,4,13,98722,0,447,419,0,0,0,0,0,0,0,300,4.1,0,0,4500,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,4,28,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,4,14,98714,0,0,413,0,0,0,0,0,0,0,320,3.1,0,0,4000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,4,28,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,5,16,98705,0,0,409,0,0,0,0,0,0,0,330,2.1,0,0,3200,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,28,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,5,16,98697,0,0,404,0,0,0,0,0,0,0,340,1.5,0,0,2800,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,28,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,5,17,98689,0,0,399,0,0,0,0,0,0,0,310,4.1,0,0,2500,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,29,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,6,19,98689,0,0,400,0,0,0,0,0,0,0,320,2.6,0,0,2500,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,29,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,9,29,98654,0,0,384,0,0,0,0,0,0,0,110,0,0,0,2000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,29,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,27,10,34,98637,0,0,375,0,0,0,0,0,0,0,93,0,0,0,1400,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,4,29,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,27,9,32,98637,0,0,374,0,0,0,0,0,0,0,339,0,0,0,1400,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,29,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,8,32,98628,0,0,367,0,0,0,0,0,0,0,68,0,0,0,1600,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,4,29,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,8,32,98628,0,0,367,0,0,0,0,0,0,0,243,0,0,0,1800,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,4,29,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25,7,32,98619,209,943,361,71,127,51,7862,1378,5698,1738,177,0,0,0,2200,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,4,29,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,6,28,98628,504,1347,365,287,438,123,32552,26602,14035,4819,240,2.1,0,0,2000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,29,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,8,24,98672,776,1347,393,527,671,141,62358,44235,16760,6551,240,2.1,0,0,2000,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,4,29,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,35,9,20,98705,1005,1347,415,739,802,142,90559,51495,17435,7251,209,0,0,0,2500,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,29,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,7,15,98730,1176,1347,429,903,779,224,109560,55986,27284,11074,220,1.5,0,0,3500,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,4,29,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,6,13,98739,1277,1347,433,1001,785,257,121798,57966,31490,12605,270,4.1,0,0,4000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,29,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,5,12,98747,1302,1347,437,1026,786,267,124987,58743,32683,13029,280,4.1,0,0,5000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,29,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,5,12,98747,1249,1347,437,976,783,250,118613,58025,30545,12257,270,4.1,0,0,5000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,29,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,5,11,98755,1121,1347,442,855,775,209,103504,55947,25481,10395,280,4.1,0,0,5000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,29,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,5,11,98755,928,1347,442,672,773,140,81608,51377,17010,6966,280,4.1,0,0,5000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,29,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,5,11,98755,682,1347,442,444,606,138,51805,40376,16127,6062,290,4.1,0,0,5000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,29,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,5,12,98747,400,1347,437,202,346,100,22723,17546,11227,3686,290,4.1,0,0,5000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,29,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,5,12,98747,101,1347,437,23,0,23,2184,0,2199,760,300,4.1,0,0,4500,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,29,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,4,12,98730,0,460,424,0,0,0,0,0,0,0,300,4.1,0,0,4500,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,4,29,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,4,13,98722,0,0,419,0,0,0,0,0,0,0,340,1.5,0,0,3500,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,4,29,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,36,6,16,98714,0,0,416,0,0,0,0,0,0,0,10,1.5,0,0,3200,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,29,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,33,6,19,98689,0,0,400,0,0,0,0,0,0,0,151,0,0,0,2600,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,29,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,6,19,98689,0,0,400,0,0,0,0,0,0,0,50,2.1,0,0,2800,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,30,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,32,7,21,98680,0,0,396,0,0,0,0,0,0,0,336,0,0,0,2600,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,4,30,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,8,24,98672,0,0,393,0,0,0,0,0,0,0,345,0,0,0,2600,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,4,30,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,8,27,98654,0,0,382,0,0,0,0,0,0,0,104,0,0,0,2000,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,4,30,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,10,34,98637,0,0,375,0,0,0,0,0,0,0,220,1.5,0,0,1800,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,4,30,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,10,34,98637,0,0,375,0,0,0,0,0,0,0,205,0,0,0,2000,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,4,30,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,8,32,98628,0,0,367,0,0,0,0,0,0,0,106,0,0,0,2200,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,4,30,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,6,26,98637,213,962,370,73,132,52,8117,1658,5804,1773,250,2.6,0,0,2000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,30,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,6,25,98646,508,1347,375,290,440,124,32869,26840,14127,4859,220,1.5,0,0,2100,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,30,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,6,21,98672,778,1347,390,531,666,147,62735,45064,17394,6774,290,1.5,0,0,2100,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,30,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,7,19,98697,1007,1347,407,744,805,142,91175,52534,17499,7274,250,2.6,0,0,2100,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,4,30,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,6,16,98714,1177,1347,416,906,779,225,109924,56433,27499,11148,250,2.6,0,0,2800,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,30,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,6,13,98739,1279,1347,433,1002,784,258,121974,57945,31543,12624,250,2.6,0,0,3000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,30,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,6,13,98747,1303,1347,438,1026,629,417,120719,55088,49435,18209,230,2.6,0,0,3500,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,30,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,6,12,98755,1250,1347,498,504,80,429,58705,7219,50393,18286,270,4.1,9,9,4000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,30,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,6,12,98755,1123,1347,498,441,83,372,51086,7318,43379,16052,270,3.6,9,9,3200,6000,9,999999999,17,0,0,88,0.2,0,0 +2008,4,30,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,6,12,98755,929,1347,470,626,528,261,72360,42812,30374,11509,270,4.1,5,5,3000,6000,9,999999999,17,0,0,88,0.2,0,0 +2008,4,30,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,6,12,98755,683,1347,444,445,609,136,51935,40135,15929,6006,300,4.1,0,0,3000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,30,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,6,12,98755,402,1347,463,201,331,102,22523,16921,11474,3757,300,4.1,3,3,3000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,4,30,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38.5,4.8,13,98735,103,1347,461,23,0,23,2208,0,2223,772,230,3.2,3,3,3000,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,30,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36.8,5,14,98720,0,473,430,0,0,0,0,0,0,0,195,2.2,0,0,2800,77777,9,999999999,15,0,0,88,0.2,0,0 +2008,4,30,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35.5,5.5,16,98710,0,0,424,0,0,0,0,0,0,0,181,1.1,0,0,2500,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,4,30,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33.8,7.5,20,98695,0,0,416,0,0,0,0,0,0,0,140,0.4,0,0,2100,77777,9,999999999,20,0,0,88,0.2,0,0 +2008,4,30,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,32.2,9,24,98682,0,0,406,0,0,0,0,0,0,0,171,0,0,0,1900,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,4,30,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30.8,10.5,29,98670,0,0,406,0,0,0,0,0,0,0,150,0,0,0,1900,77777,9,999999999,27,0,0,88,0.2,0,0 +2011,5,1,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29.5,11.8,33,98659,0,0,398,0,0,0,0,0,0,0,108,0,0,0,2200,77777,9,999999999,30,0,0,88,0.2,0,0 +2011,5,1,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28.8,11.2,34,98652,0,0,393,0,0,0,0,0,0,0,138,0,0,0,2200,77777,9,999999999,29,0,0,88,0.2,0,0 +2011,5,1,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,10.8,34,98646,0,0,382,0,0,0,0,0,0,0,160,0.4,0,0,2100,77777,9,999999999,27,0,0,88,0.2,0,0 +2011,5,1,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27.8,10.2,34,98644,0,0,386,0,0,0,0,0,0,0,201,0.9,0,0,2200,77777,9,999999999,26,0,0,88,0.2,0,0 +2011,5,1,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27.8,10,33,98644,0,0,380,0,0,0,0,0,0,0,244,1.5,0,0,2500,77777,9,999999999,25,0,0,88,0.2,0,0 +2011,5,1,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28.2,10,32,98648,0,0,375,0,0,0,0,0,0,0,247,2.2,0,0,3000,77777,9,999999999,25,0,0,88,0.2,0,0 +2011,5,1,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,10,34,98637,221,1000,375,77,138,54,8507,1753,6015,1847,240,2.1,0,0,3000,77777,9,999999999,25,0,0,88,0.2,0,0 +2011,5,1,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,10,31,98654,514,1345,385,293,433,127,33134,25933,14454,4982,250,2.6,0,0,3000,77777,9,999999999,25,0,0,88,0.2,0,0 +2011,5,1,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,10,29,98663,784,1345,390,532,674,140,63037,43533,16637,6538,270,2.6,0,0,2400,77777,9,999999999,25,0,0,88,0.2,0,0 +2011,5,1,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,12,26,98697,1011,1345,414,742,797,142,90758,49738,17480,7289,250,2.6,0,0,2200,77777,9,999999999,31,0,0,88,0.2,0,0 +2011,5,1,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,12,24,98714,1181,1345,425,901,853,152,112265,52816,19075,7963,250,2.6,0,0,2200,77777,9,999999999,31,0,0,88,0.2,0,0 +2011,5,1,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,8,16,98730,1281,1345,449,989,784,242,120837,56018,29798,12013,280,5.1,3,3,2800,77777,9,999999999,20,0,0,88,0.2,0,0 +2011,5,1,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,6,13,98739,1306,1345,451,1014,785,253,124087,57296,31106,12479,280,4.6,3,3,4000,77777,9,999999999,17,0,0,88,0.2,0,0 +2011,5,1,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,7,14,98747,1252,1345,459,963,844,178,120057,56098,22260,9184,280,4.1,3,3,4000,77777,9,999999999,18,0,0,88,0.2,0,0 +2011,5,1,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,8,15,98747,1125,1345,467,794,616,279,94045,47955,33262,13098,280,5.1,5,5,4500,77777,9,999999999,20,0,0,88,0.2,0,0 +2011,5,1,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,7,14,98747,932,1345,466,626,617,199,74029,44953,23611,9377,270,7.7,5,5,5000,77777,9,999999999,18,0,0,88,0.2,0,0 +2011,5,1,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,7,14,98747,687,1345,466,415,476,172,47620,34095,19834,7224,270,6.2,5,5,5000,77777,9,999999999,18,0,0,88,0.2,0,0 +2011,5,1,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,6,13,98739,406,1345,451,203,343,100,22879,17407,11267,3723,270,5.1,3,3,5000,77777,9,999999999,17,0,0,88,0.2,0,0 +2011,5,1,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,6,14,98730,109,1345,446,24,0,24,2302,0,2318,807,260,5.1,3,3,4500,77777,9,999999999,17,0,0,88,0.2,0,0 +2011,5,1,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,7,18,98705,0,499,430,0,0,0,0,0,0,0,260,4.1,3,3,3500,77777,9,999999999,19,0,0,88,0.2,0,0 +2011,5,1,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,8,21,98689,0,0,420,0,0,0,0,0,0,0,260,3.1,3,3,3500,77777,9,999999999,21,0,0,88,0.2,0,0 +2011,5,1,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,8,21,98689,0,0,420,0,0,0,0,0,0,0,280,3.6,3,3,3200,77777,9,999999999,21,0,0,88,0.2,0,0 +2011,5,1,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,7,20,98689,0,0,419,0,0,0,0,0,0,0,280,3.6,3,3,3000,77777,9,999999999,19,0,0,88,0.2,0,0 +2011,5,1,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,11,26,98689,0,0,407,0,0,0,0,0,0,0,350,2.1,0,0,3000,77777,9,999999999,28,0,0,88,0.2,0,0 +2011,5,2,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,12,31,98672,0,0,398,0,0,0,0,0,0,0,50,2.1,0,0,3000,77777,9,999999999,31,0,0,88,0.2,0,0 +2011,5,2,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,11,31,98663,0,0,391,0,0,0,0,0,0,0,70,1,0,0,3200,77777,9,999999999,28,0,0,88,0.2,0,0 +2011,5,2,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,12,33,98663,0,0,393,0,0,0,0,0,0,0,0,0,0,0,3200,77777,9,999999999,31,0,0,88,0.2,0,0 +2011,5,2,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,12,37,98646,0,0,382,0,0,0,0,0,0,0,15,0,0,0,2800,77777,9,999999999,31,0,0,88,0.2,0,0 +2011,5,2,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,11,37,98637,0,0,376,0,0,0,0,0,0,0,305,0,0,0,2800,77777,9,999999999,28,0,0,88,0.2,0,0 +2011,5,2,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,9,30,98646,0,0,379,0,0,0,0,0,0,0,165,0,0,0,2800,77777,9,999999999,23,0,0,88,0.2,0,0 +2011,5,2,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,7,26,98646,225,1018,376,79,145,55,8782,2217,6111,1878,250,3.6,0,0,3500,77777,9,999999999,19,0,0,88,0.2,0,0 +2011,5,2,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,8,28,98646,517,1344,377,296,439,127,33570,26803,14485,5000,240,4.1,0,0,4000,77777,9,999999999,21,0,0,88,0.2,0,0 +2011,5,2,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,11,29,98672,786,1344,396,534,676,139,63244,43116,16483,6494,250,5.1,0,0,4000,77777,9,999999999,28,0,0,88,0.2,0,0 +2011,5,2,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,11,28,98680,1013,1344,402,744,797,144,91126,50374,17653,7355,250,2.6,0,0,4000,77777,9,999999999,28,0,0,88,0.2,0,0 +2011,5,2,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,11,22,98714,1182,1344,423,904,855,152,112753,53454,18992,7925,270,4.1,0,0,4000,77777,9,999999999,28,0,0,88,0.2,0,0 +2011,5,2,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,12,22,98722,1282,1344,449,984,844,179,122772,53477,22410,9256,270,2.6,3,3,4000,77777,9,999999999,31,0,0,88,0.2,0,0 +2011,5,2,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,10,19,98730,1307,1344,452,1009,856,178,126511,55022,22430,9248,270,3.6,3,3,4000,77777,9,999999999,25,0,0,88,0.2,0,0 +2011,5,2,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,10,18,98739,1253,1344,457,960,826,190,118887,54490,23680,9744,280,4.6,3,3,4000,77777,9,999999999,25,0,0,88,0.2,0,0 +2011,5,2,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,10,17,98747,1126,1344,470,793,613,279,93787,47037,33247,13105,270,4.1,5,5,3500,77777,9,999999999,25,0,0,88,0.2,0,0 +2011,5,2,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,10,18,98739,933,1344,465,624,591,214,73292,43207,25274,9955,270,4.1,5,5,2500,77777,9,999999999,25,0,0,88,0.2,0,0 +2011,5,2,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,10,18,98739,688,1344,465,415,467,176,47410,32929,20168,7337,300,4.6,5,5,2500,77777,9,999999999,25,0,0,88,0.2,0,0 +2011,5,2,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,9,16,98739,408,1344,456,204,339,101,22898,16846,11377,3764,280,5.7,3,3,2500,77777,9,999999999,23,0,0,88,0.2,0,0 +2011,5,2,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,9,16,98739,111,1344,463,23,0,23,2209,0,2225,788,290,3.6,5,5,2500,77777,9,999999999,23,0,0,88,0.2,0,0 +2011,5,2,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,8,17,98722,0,512,450,0,0,0,0,0,0,0,360,2.6,5,5,2500,77777,9,999999999,20,0,0,88,0.2,0,0 +2011,5,2,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,13,27,98705,0,0,446,0,0,0,0,0,0,0,80,2.1,5,5,2500,77777,9,999999999,34,0,0,88,0.2,0,0 +2011,5,2,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,13,28,98697,0,0,440,0,0,0,0,0,0,0,90,1.5,5,5,2500,77777,9,999999999,34,0,0,88,0.2,0,0 +2011,5,2,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,33,13,30,98689,0,0,427,0,0,0,0,0,0,0,154,0,3,3,2500,77777,9,999999999,34,0,0,88,0.2,0,0 +2011,5,2,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,14,34,98680,0,0,423,0,0,0,0,0,0,0,180,1.5,3,3,2500,77777,9,999999999,38,0,0,88,0.2,0,0 +2011,5,3,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,15,38,98672,0,0,419,0,0,0,0,0,0,0,19,0,3,3,2500,77777,9,999999999,42,0,0,88,0.2,0,0 +2011,5,3,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,15,40,98663,0,0,414,0,0,0,0,0,0,0,199,0,3,3,2500,77777,9,999999999,42,0,0,88,0.2,0,0 +2011,5,3,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,15,40,98663,0,0,414,0,0,0,0,0,0,0,279,0,3,3,2500,77777,9,999999999,42,0,0,88,0.2,0,0 +2011,5,3,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,15,43,98654,0,0,408,0,0,0,0,0,0,0,326,0,3,3,2200,77777,9,999999999,42,0,0,88,0.2,0,0 +2011,5,3,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,15,43,98654,0,0,408,0,0,0,0,0,0,0,0,0,3,3,2000,77777,9,999999999,42,0,0,88,0.2,0,0 +2011,5,3,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,28,14,42,98646,0,0,392,0,0,0,0,0,0,0,172,0,1,1,2000,77777,9,999999999,38,0,0,88,0.2,0,0 +2011,5,3,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,14,40,98654,228,1036,390,80,108,62,8811,1622,6816,2051,111,0,0,0,1600,77777,9,999999999,38,0,0,88,0.2,0,0 +2011,5,3,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,12,28,98689,520,1344,408,297,429,130,33518,25528,14801,5107,220,2.6,0,0,1900,77777,9,999999999,31,0,0,88,0.2,0,0 +2011,5,3,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,13,30,98689,789,1344,410,534,681,135,63391,42108,16038,6349,230,4.1,0,0,2500,77777,9,999999999,34,0,0,88,0.2,0,0 +2011,5,3,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,12,26,98697,1015,1344,414,745,797,143,91195,49759,17612,7346,250,4.1,0,0,2500,77777,9,999999999,31,0,0,88,0.2,0,0 +2011,5,3,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,12,24,98714,1184,1344,425,904,852,153,112634,52794,19156,7994,260,4.1,0,0,2500,77777,9,999999999,31,0,0,88,0.2,0,0 +2011,5,3,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,11,19,98739,1283,1344,440,999,783,251,121669,55212,30795,12386,250,4.1,0,0,2500,77777,9,999999999,28,0,0,88,0.2,0,0 +2011,5,3,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,11,18,98747,1307,1344,446,1022,784,259,124535,55522,31748,12732,280,4.6,0,0,2500,77777,9,999999999,28,0,0,88,0.2,0,0 +2011,5,3,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,9,15,98755,1254,1344,468,962,855,164,120537,54867,20700,8578,260,4.6,3,3,2500,77777,9,999999999,22,0,0,88,0.2,0,0 +2011,5,3,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,9,15,98755,1127,1344,468,843,818,157,104249,52996,19538,8147,280,5.1,3,3,2500,77777,9,999999999,22,0,0,88,0.2,0,0 +2011,5,3,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,8,14,98755,934,1344,466,665,744,148,80459,49147,17974,7356,280,4.1,3,3,3200,77777,9,999999999,20,0,0,88,0.2,0,0 +2011,5,3,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,9,16,98747,690,1344,462,442,587,141,51461,38287,16437,6202,280,4.1,3,3,3200,77777,9,999999999,23,0,0,88,0.2,0,0 +2011,5,3,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,9,17,98730,410,1344,450,205,329,105,22998,16739,11798,3878,270,5.1,3,3,3500,77777,9,999999999,23,0,0,88,0.2,0,0 +2011,5,3,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,7,16,98722,114,1344,441,25,0,25,2400,0,2417,843,260,9.3,3,3,2500,77777,9,999999999,19,0,0,88,0.2,0,0 +2011,5,3,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,8,19,98705,0,525,438,0,0,0,0,0,0,0,260,5.1,5,5,2500,77777,9,999999999,21,0,0,88,0.2,0,0 +2011,5,3,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,9,22,98697,0,0,434,0,0,0,0,0,0,0,230,5.7,5,5,2500,77777,9,999999999,23,0,0,88,0.2,0,0 +2011,5,3,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,10,24,98689,0,0,430,0,0,0,0,0,0,0,240,4.6,5,5,3000,77777,9,999999999,25,0,0,88,0.2,0,0 +2011,5,3,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,10,24,98689,0,0,406,0,0,0,0,0,0,0,250,5.7,0,0,3500,77777,9,999999999,25,0,0,88,0.2,0,0 +2011,5,3,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,11,28,98680,0,0,419,0,0,0,0,0,0,0,250,4.6,3,3,3500,77777,9,999999999,28,0,0,88,0.2,0,0 +2011,5,4,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,11,29,98672,0,0,420,0,0,0,0,0,0,0,230,2.6,5,5,3500,77777,9,999999999,28,0,0,88,0.2,0,0 +2011,5,4,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,11,31,98663,0,0,415,0,0,0,0,0,0,0,230,2.1,5,5,4500,77777,9,999999999,28,0,0,88,0.2,0,0 +2011,5,4,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,12,35,98654,0,0,410,0,0,0,0,0,0,0,220,2.1,5,5,4500,77777,9,999999999,31,0,0,88,0.2,0,0 +2011,5,4,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,12,37,98646,0,0,405,0,0,0,0,0,0,0,250,2.6,5,5,4500,77777,9,999999999,31,0,0,88,0.2,0,0 +2011,5,4,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,12,37,98646,0,0,405,0,0,0,0,0,0,0,250,1.5,5,5,5000,77777,9,999999999,31,0,0,88,0.2,0,0 +2011,5,4,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,12,37,98646,0,0,429,0,0,0,0,0,0,0,250,1.5,9,9,6000,3000,9,999999999,31,0,0,88,0.2,0,0 +2011,5,4,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,13,40,98646,232,1053,406,77,87,62,8429,1399,6805,2060,79,0,5,5,4000,77777,9,999999999,34,0,0,88,0.2,0,0 +2011,5,4,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,13,33,98672,523,1343,448,154,17,147,17237,1091,16551,5572,20,2.1,9,9,2000,3000,9,999999999,34,0,0,88,0.2,0,0 +2011,5,4,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,13,33,98672,791,1343,448,277,22,264,31155,1788,29856,10527,200,1,9,9,2000,3000,0,919999999,34,0,0,88,0.2,0,0 +2011,5,4,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,15,38,98672,1017,1343,451,384,31,360,43642,2659,41206,15019,150,2.1,9,9,2200,1050,0,919999999,42,0,0,88,0.2,0,0 +2011,5,4,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,15,36,98680,1185,1343,457,465,107,370,54089,8668,43354,16298,80,2.6,9,9,2200,1050,0,919999999,42,0,0,88,0.2,0,0 +2011,5,4,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,15,36,98680,1285,1343,431,925,529,419,108022,43658,49284,18187,120,3.1,5,5,2200,1050,0,919999999,42,0,0,88,0.2,0,0 +2011,5,4,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,13,27,98705,1308,1343,446,949,664,302,114169,48595,36536,14392,140,1,5,5,2500,77777,0,919999999,34,0,0,88,0.2,0,0 +2011,5,4,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,14,25,98722,1255,1343,459,900,662,282,108095,47423,34067,13529,290,3.1,5,5,3500,77777,0,919999999,37,0,0,88,0.2,0,0 +2011,5,4,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,14,24,98730,1128,1343,465,789,657,237,94377,45771,28547,11542,300,1.5,5,5,3500,77777,0,919999999,37,0,0,88,0.2,0,0 +2011,5,4,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,14,23,98739,936,1343,471,622,601,204,73192,41470,24127,9600,270,3.1,5,5,4000,77777,0,919999999,37,0,0,88,0.2,0,0 +2011,5,4,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,14,23,98739,692,1343,471,414,490,162,47593,32086,18729,6944,160,2.1,5,5,5000,77777,0,919999999,37,0,0,88,0.2,0,0 +2011,5,4,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,14,23,98739,412,1343,471,193,251,116,21429,12773,12936,4167,240,4.6,5,5,5000,77777,0,919999999,37,0,0,88,0.2,0,0 +2011,5,4,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,13,23,98730,117,1343,463,24,0,24,2290,0,2306,822,250,4.6,5,5,5000,77777,0,919999999,34,0,0,88,0.2,0,0 +2011,5,4,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,12,22,98722,0,538,456,0,0,0,0,0,0,0,240,3.6,5,5,5000,77777,0,919999999,31,0,0,88,0.2,0,0 +2011,5,4,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,13,27,98705,0,0,446,0,0,0,0,0,0,0,220,1.5,5,5,3200,77777,0,919999999,34,0,0,88,0.2,0,0 +2011,5,4,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,13,28,98697,0,0,433,0,0,0,0,0,0,0,200,1.5,3,3,2800,77777,0,919999999,34,0,0,88,0.2,0,0 +2011,5,4,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,13,28,98697,0,0,433,0,0,0,0,0,0,0,200,2.1,3,3,2500,77777,0,919999999,34,0,0,88,0.2,0,0 +2011,5,4,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,14,32,98689,0,0,429,0,0,0,0,0,0,0,220,2.1,3,3,2200,77777,0,919999999,38,0,0,88,0.2,0,0 +2011,5,5,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,14,32,98689,0,0,435,0,0,0,0,0,0,0,50,5.7,5,5,2200,77777,0,19999999,38,0,0,88,0.2,0,0 +2011,5,5,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,15,34,98689,0,0,463,0,0,0,0,0,0,0,100,4.1,9,9,2200,77777,0,19999999,42,0,0,88,0.2,0,0 +2011,5,5,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,18,46,98672,0,0,455,0,0,0,0,0,0,0,120,4.1,9,9,2200,1200,0,19999999,56,0,0,88,0.2,0,0 +2011,5,5,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,18,46,98672,0,0,455,0,0,0,0,0,0,0,110,4.1,9,9,2500,1200,0,19999999,56,0,0,88,0.2,0,0 +2011,5,5,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,17,46,98663,0,0,448,0,0,0,0,0,0,0,110,5.1,9,9,2500,1200,0,19999999,51,0,0,88,0.2,0,0 +2011,5,5,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,29.5,17.5,48,98659,0,0,410,0,0,0,0,0,0,0,265,4.1,2,2,2750,1200,9,999999999,54,0,0,88,0.2,0,0 +2011,5,5,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,18,52,98654,235,1070,443,43,0,43,4190,0,4221,1601,60,3.1,9,9,3000,1200,0,99999999,56,0,0,88,0.2,0,0 +2011,5,5,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,19,58,98646,526,1342,439,154,27,143,17157,1505,16058,5485,100,5.7,9,9,3000,1200,0,19999999,62,0,0,88,0.2,0,0 +2011,5,5,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,19,58,98646,793,1342,439,275,29,258,30871,2141,29126,10404,140,3.1,9,9,3000,1200,0,19999999,62,0,0,88,0.2,0,0 +2011,5,5,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,20,62,98646,1019,1342,440,381,30,359,43197,2369,40904,15005,140,3.6,9,9,3500,1200,0,19999999,69,0,0,88,0.2,0,0 +2011,5,5,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,20,55,98663,1186,1342,452,462,69,400,53158,5440,46436,17183,140,3.6,9,9,3500,3000,0,19999999,69,0,0,88,0.2,0,0 +2011,5,5,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,20,55,98663,1286,1342,452,509,91,422,59201,7056,49457,18294,70,5.1,9,9,3500,3000,0,19999999,69,0,0,88,0.2,0,0 +2011,5,5,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,20,46,98689,1309,1342,444,939,581,372,110550,42236,44122,16855,90,5.7,5,5,3500,3000,0,19999999,68,0,0,88,0.2,0,0 +2011,5,5,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,21,44,98705,1256,1342,457,891,679,255,107126,42172,30896,12497,90,5.7,5,5,3500,77777,0,19999999,75,0,0,88,0.2,0,0 +2011,5,5,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,20,39,98714,1129,1342,461,782,678,212,93900,41483,25591,10526,90,3.6,5,5,3500,77777,0,19999999,68,0,0,88,0.2,0,0 +2011,5,5,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,19,35,98722,937,1342,466,618,635,175,73292,38587,20841,8479,100,4.1,5,5,3600,77777,0,19999999,62,0,0,88,0.2,0,0 +2011,5,5,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,18,31,98730,693,1342,471,413,516,146,47669,30586,16966,6418,80,2.6,5,5,3600,77777,0,19999999,56,0,0,88,0.2,0,0 +2011,5,5,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,18,31,98730,414,1342,463,205,345,99,22989,14666,11085,3731,100,3.1,3,3,3600,77777,0,19999999,56,0,0,88,0.2,0,0 +2011,5,5,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,18,35,98714,120,1342,452,26,0,26,2498,0,2515,885,90,3.1,3,3,3600,77777,0,19999999,56,0,0,88,0.2,0,0 +2011,5,5,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,18,37,98705,0,551,453,0,0,0,0,0,0,0,100,2.6,5,5,3200,77777,0,19999999,56,0,0,88,0.2,0,0 +2011,5,5,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,19,44,98689,0,0,442,0,0,0,0,0,0,0,110,3.6,5,5,3000,77777,0,19999999,62,0,0,88,0.2,0,0 +2011,5,5,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,19,44,98689,0,0,442,0,0,0,0,0,0,0,100,3.6,5,5,3000,77777,0,19999999,62,0,0,88,0.2,0,0 +2011,5,5,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,19,44,98689,0,0,442,0,0,0,0,0,0,0,130,3.1,5,5,2800,77777,0,19999999,62,0,0,88,0.2,0,0 +2011,5,5,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,19,46,98680,0,0,463,0,0,0,0,0,0,0,30,3.1,9,9,2500,1050,0,19999999,62,0,0,88,0.2,0,0 +2011,5,6,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,19,52,98663,0,0,451,0,0,0,0,0,0,0,50,3.6,9,9,2800,1050,0,19999999,62,0,0,88,0.2,0,0 +2011,5,6,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,19,55,98654,0,0,420,0,0,0,0,0,0,0,50,2.1,5,5,2800,77777,0,19999999,62,0,0,88,0.2,0,0 +2011,5,6,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,20,62,98646,0,0,416,0,0,0,0,0,0,0,90,4.1,5,5,3500,77777,0,19999999,69,0,0,88,0.2,0,0 +2011,5,6,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,19,58,98646,0,0,414,0,0,0,0,0,0,0,80,5.7,5,5,3500,77777,0,19999999,62,0,0,88,0.2,0,0 +2011,5,6,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,18,55,98646,0,0,413,0,0,0,0,0,0,0,80,4.6,5,5,3500,77777,0,19999999,56,0,0,88,0.2,0,0 +2011,5,6,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,18,61,98628,0,0,396,0,0,0,0,0,0,0,60,4.1,3,3,3500,77777,9,999999999,57,0,0,88,0.2,0,0 +2011,5,6,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,18,61,98628,238,1087,379,85,129,62,9361,1681,6876,2106,70,5.1,0,0,3500,77777,9,999999999,57,0,0,88,0.2,0,0 +2011,5,6,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,18,55,98646,529,1342,390,300,460,119,34063,23927,13526,4805,80,5.7,0,0,3500,77777,9,999999999,56,0,0,88,0.2,0,0 +2011,5,6,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,18,49,98663,795,1342,400,535,681,132,63470,38812,15659,6252,60,5.1,0,0,3500,77777,9,999999999,56,0,0,88,0.2,0,0 +2011,5,6,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,18,49,98663,1020,1342,400,742,824,116,91972,44656,14434,6099,90,7.2,0,0,3500,77777,9,999999999,56,0,0,88,0.2,0,0 +2011,5,6,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,19,46,98680,1188,1342,412,897,777,209,108719,47510,25525,10503,90,6.7,0,0,3800,77777,9,999999999,62,0,0,88,0.2,0,0 +2011,5,6,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,19,39,98705,1286,1342,429,989,782,239,120265,48893,29278,11902,130,4.1,0,0,3800,77777,9,999999999,62,0,0,88,0.2,0,0 +2011,5,6,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,19,39,98705,1310,1342,429,1011,783,247,123027,49182,30173,12232,140,3.6,0,0,3800,77777,9,999999999,62,0,0,88,0.2,0,0 +2011,5,6,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,19,35,98722,1256,1342,440,961,780,230,116740,48510,28143,11482,140,2.6,0,0,4000,77777,9,999999999,62,0,0,88,0.2,0,0 +2011,5,6,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,17,29,98730,1129,1342,462,835,759,196,101080,47602,23867,9858,160,2.6,3,3,3500,77777,9,999999999,50,0,0,88,0.2,0,0 +2011,5,6,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,16,27,98730,938,1342,468,622,521,258,71746,38499,29902,11481,260,2.1,5,5,3500,77777,9,999999999,46,0,0,88,0.2,0,0 +2011,5,6,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,15,26,98730,695,1342,494,231,31,214,25901,2294,24210,8479,350,2.1,9,9,3500,1200,0,99999999,41,0,0,88,0.2,0,0 +2011,5,6,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,11,22,98714,417,1342,475,109,3,108,12201,154,12144,3994,30,4.6,9,9,2800,1200,0,99999999,28,0,0,88,0.2,0,0 +2011,5,6,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,18,55,98646,122,1342,437,14,0,14,1351,0,1361,538,30,6.7,9,9,1800,1200,0,99999999,56,0,0,88,0.2,0,0 +2011,5,6,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,17,51,98646,0,565,436,0,0,0,0,0,0,0,20,6.2,9,9,2200,1200,0,99999999,51,0,0,88,0.2,0,0 +2011,5,6,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,15,48,98637,0,0,428,0,0,0,0,0,0,0,20,4.1,9,9,2500,1200,0,99999999,42,0,0,88,0.2,0,0 +2011,5,6,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,16,51,98637,0,0,429,0,0,0,0,0,0,0,80,4.6,9,9,3500,1200,0,99999999,46,0,0,88,0.2,0,0 +2011,5,6,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,15,48,98637,0,0,428,0,0,0,0,0,0,0,290,5.1,9,9,3500,1200,0,99999999,42,0,0,88,0.2,0,0 +2011,5,6,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,17,58,98628,0,0,425,0,0,0,0,0,0,0,280,4.1,9,9,3500,1200,0,99999999,51,0,0,88,0.2,0,0 +2011,5,7,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,15,51,98628,0,0,422,0,0,0,0,0,0,0,290,4.1,9,9,4000,1200,0,99999999,42,0,0,88,0.2,0,0 +2011,5,7,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,14,45,98637,0,0,426,0,0,0,0,0,0,0,260,2.6,9,9,4000,1200,0,99999999,38,0,0,88,0.2,0,0 +2011,5,7,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,14,48,98628,0,0,420,0,0,0,0,0,0,0,200,3.1,9,9,4000,1200,0,99999999,38,0,0,88,0.2,0,0 +2011,5,7,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,13,45,98628,0,0,419,0,0,0,0,0,0,0,210,2.1,9,9,4000,3000,0,99999999,34,0,0,88,0.2,0,0 +2011,5,7,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,17,58,98628,0,0,425,0,0,0,0,0,0,0,50,4.6,9,9,3500,3000,0,99999999,51,0,0,88,0.2,0,0 +2011,5,7,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,17,61,98619,0,0,419,0,0,0,0,0,0,0,100,1.5,9,9,3000,3000,9,999999999,51,0,0,88,0.2,0,0 +2011,5,7,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,17,61,98619,242,1103,395,81,91,65,8899,1423,7114,2168,100,1.5,5,5,2800,77777,9,999999999,51,0,0,88,0.2,0,0 +2011,5,7,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,16,48,98646,531,1341,410,282,336,149,31507,20321,16719,5669,125,0,5,5,3000,77777,9,999999999,46,0,0,88,0.2,0,0 +2011,5,7,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,16,45,98654,798,1341,416,501,517,194,57788,35096,22486,8557,200,2.1,5,5,3000,77777,9,999999999,46,0,0,88,0.2,0,0 +2011,5,7,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,14,36,98672,1022,1341,424,696,625,220,82509,43479,26220,10572,280,4.6,5,5,3200,77777,9,999999999,38,0,0,88,0.2,0,0 +2011,5,7,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,14,34,98680,1189,1341,430,842,657,260,100889,46485,31269,12529,290,5.1,5,5,3200,77777,9,999999999,38,0,0,88,0.2,0,0 +2011,5,7,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,13,31,98680,1287,1341,428,930,663,294,111875,48268,35560,14051,300,4.6,5,5,3200,77777,9,999999999,34,0,0,88,0.2,0,0 +2011,5,7,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,13,28,98697,1311,1341,440,951,632,333,113612,47928,40001,15522,290,4.6,5,5,3200,77777,9,999999999,34,0,0,88,0.2,0,0 +2011,5,7,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,14,28,98705,1257,1341,440,957,793,214,117381,51803,26357,10780,280,4.6,3,3,3200,77777,9,999999999,37,0,0,88,0.2,0,0 +2011,5,7,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,13,25,98714,1130,1341,444,841,811,157,103834,50411,19475,8137,290,4.1,3,3,3200,77777,9,999999999,34,0,0,88,0.2,0,0 +2011,5,7,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,14,27,98714,939,1341,427,671,768,134,81624,46368,16313,6749,290,4.1,0,0,3200,77777,9,999999999,37,0,0,88,0.2,0,0 +2011,5,7,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,15,29,98714,696,1341,429,448,615,129,52415,36388,15131,5811,290,3.6,0,0,4000,77777,9,999999999,41,0,0,88,0.2,0,0 +2011,5,7,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,15,30,98705,419,1341,423,211,310,114,23485,15482,12771,4163,280,5.1,0,0,4000,77777,9,999999999,41,0,0,88,0.2,0,0 +2011,5,7,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,14,30,98697,125,1341,416,28,0,28,2733,0,2752,955,280,5.1,0,0,4000,77777,9,999999999,37,0,0,88,0.2,0,0 +2011,5,7,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,13,30,98689,0,578,427,0,0,0,0,0,0,0,280,3.6,3,3,4000,77777,9,999999999,34,0,0,88,0.2,0,0 +2011,5,7,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,14,34,98680,0,0,430,0,0,0,0,0,0,0,270,3.1,5,5,4000,77777,9,999999999,38,0,0,88,0.2,0,0 +2011,5,7,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,14,34,98680,0,0,430,0,0,0,0,0,0,0,240,1.5,5,5,3500,77777,9,999999999,38,0,0,88,0.2,0,0 +2011,5,7,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,15,40,98663,0,0,414,0,0,0,0,0,0,0,250,2.6,3,3,2500,77777,9,999999999,42,0,0,88,0.2,0,0 +2011,5,7,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,16,45,98654,0,0,392,0,0,0,0,0,0,0,270,2.1,0,0,2100,77777,9,999999999,46,0,0,88,0.2,0,0 +2011,5,8,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,14,40,98654,0,0,390,0,0,0,0,0,0,0,290,3.1,0,0,2000,77777,9,999999999,38,0,0,88,0.2,0,0 +2011,5,8,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,14,38,98663,0,0,395,0,0,0,0,0,0,0,290,2.6,0,0,2500,77777,9,999999999,38,0,0,88,0.2,0,0 +2011,5,8,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,14,38,98663,0,0,395,0,0,0,0,0,0,0,360,2.1,0,0,2100,77777,9,999999999,38,0,0,88,0.2,0,0 +2011,5,8,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,15,43,98654,0,0,391,0,0,0,0,0,0,0,160,1,0,0,2100,77777,9,999999999,42,0,0,88,0.2,0,0 +2011,5,8,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,16,51,98637,0,0,382,0,0,0,0,0,0,0,75,0,0,0,2100,77777,9,999999999,46,0,0,88,0.2,0,0 +2011,5,8,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,16,57,98619,0,0,372,0,0,0,0,0,0,0,260,2.1,0,0,2000,77777,9,999999999,46,0,0,88,0.2,0,0 +2011,5,8,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,15,51,98628,245,1119,376,89,123,67,9782,2304,7339,2226,240,2.6,0,0,1700,77777,9,999999999,42,0,0,88,0.2,0,0 +2011,5,8,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,16,51,98637,534,1341,382,305,425,136,34352,24524,15360,5332,230,1.5,0,0,1700,77777,9,999999999,46,0,0,88,0.2,0,0 +2011,5,8,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,15,40,98663,800,1341,396,541,683,134,64305,41081,15977,6365,230,2.1,0,0,2000,77777,9,999999999,42,0,0,88,0.2,0,0 +2011,5,8,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,16,38,98680,1023,1341,408,747,806,132,91937,46704,16297,6850,250,2.1,0,0,2500,77777,9,999999999,46,0,0,88,0.2,0,0 +2011,5,8,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,13,27,98705,1190,1341,420,908,847,156,113053,52030,19494,8131,240,2.1,0,0,2800,77777,9,999999999,34,0,0,88,0.2,0,0 +2011,5,8,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,14,28,98705,1288,1341,422,999,857,175,124817,52674,21988,9098,270,2.1,0,0,3200,77777,9,999999999,37,0,0,88,0.2,0,0 +2011,5,8,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,13,24,98722,1311,1341,432,1022,783,257,124620,54089,31474,12650,270,2.6,0,0,4000,77777,9,999999999,34,0,0,88,0.2,0,0 +2011,5,8,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,12,21,98730,1258,1341,436,973,780,242,118448,54052,29559,11944,300,2.6,0,0,4000,77777,9,999999999,31,0,0,88,0.2,0,0 +2011,5,8,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,10,19,98730,1131,1341,433,856,840,148,106445,53053,18437,7711,300,5.1,0,0,4200,77777,9,999999999,25,0,0,88,0.2,0,0 +2011,5,8,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,11,20,98730,940,1341,434,676,768,137,82162,48302,16691,6888,300,6.2,0,0,4500,77777,9,999999999,28,0,0,88,0.2,0,0 +2011,5,8,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,12,21,98730,698,1341,436,451,613,132,52830,38038,15547,5946,300,6.2,0,0,4500,77777,9,999999999,31,0,0,88,0.2,0,0 +2011,5,8,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,11,20,98730,421,1341,434,214,318,114,23873,16813,12806,4174,300,5.7,0,0,4500,77777,9,999999999,28,0,0,88,0.2,0,0 +2011,5,8,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,11,21,98722,127,1341,429,29,0,29,2844,0,2864,988,300,4.1,0,0,4500,77777,9,999999999,28,0,0,88,0.2,0,0 +2011,5,8,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,13,25,98714,0,591,426,0,0,0,0,0,0,0,10,2.6,0,0,3500,77777,9,999999999,34,0,0,88,0.2,0,0 +2011,5,8,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,13,27,98705,0,0,420,0,0,0,0,0,0,0,30,1.5,0,0,3200,77777,9,999999999,34,0,0,88,0.2,0,0 +2011,5,8,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,33.3,14,31,98691,0,0,413,0,0,0,0,0,0,0,218,1,0,0,2866,77777,9,999999999,38,0,0,88,0.2,0,0 +2011,5,8,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,31.7,15,37,98677,0,0,405,0,0,0,0,0,0,0,180,0.5,0,0,2533,77777,9,999999999,42,0,0,88,0.2,0,0 +2011,5,8,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,16,43,98663,0,0,398,0,0,0,0,0,0,0,43,0,0,0,2200,77777,9,999999999,46,0,0,88,0.2,0,0 +2011,5,9,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,17,48,98654,0,0,394,0,0,0,0,0,0,0,104,0,0,0,1800,77777,9,999999999,51,0,0,88,0.2,0,0 +2011,5,9,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,17,51,98646,0,0,389,0,0,0,0,0,0,0,130,1.5,0,0,2200,77777,9,999999999,51,0,0,88,0.2,0,0 +2011,5,9,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,15,45,98646,0,0,386,0,0,0,0,0,0,0,150,2.1,0,0,2200,77777,9,999999999,42,0,0,88,0.2,0,0 +2011,5,9,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,14,40,98654,0,0,390,0,0,0,0,0,0,0,210,2.6,0,0,2500,77777,9,999999999,38,0,0,88,0.2,0,0 +2011,5,9,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,13,37,98654,0,0,389,0,0,0,0,0,0,0,133,0,0,0,2500,77777,9,999999999,34,0,0,88,0.2,0,0 +2011,5,9,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,14,40,98654,0,0,390,0,0,0,0,0,0,0,72,0,0,0,2500,77777,9,999999999,38,0,0,88,0.2,0,0 +2011,5,9,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,14,40,98654,248,1135,390,91,126,67,9989,2572,7445,2259,177,0,0,0,2500,77777,9,999999999,38,0,0,88,0.2,0,0 +2011,5,9,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,14,38,98663,536,1340,395,308,430,136,34755,25572,15379,5343,148,0,0,0,2200,77777,9,999999999,38,0,0,88,0.2,0,0 +2011,5,9,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,9,22,98697,801,1340,410,548,672,146,64942,44375,17373,6848,240,4.6,0,0,3000,77777,9,999999999,23,0,0,88,0.2,0,0 +2011,5,9,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,10,23,98697,1025,1340,411,756,795,148,92559,50976,18160,7567,250,4.1,0,0,3500,77777,9,999999999,25,0,0,88,0.2,0,0 +2011,5,9,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,11,22,98714,1191,1340,423,911,853,153,113811,53343,19226,8015,340,2.6,0,0,3500,77777,9,999999999,28,0,0,88,0.2,0,0 +2011,5,9,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,10,19,98730,1289,1340,433,1006,781,254,122557,55644,31163,12515,340,2.1,0,0,4000,77777,9,999999999,25,0,0,88,0.2,0,0 +2011,5,9,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,11,19,98739,1312,1340,440,1026,782,260,125127,55355,31899,12788,300,3.1,0,0,4000,77777,9,999999999,28,0,0,88,0.2,0,0 +2011,5,9,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,10,17,98747,1258,1340,444,977,780,245,118922,55239,29957,12076,290,4.6,0,0,4000,77777,9,999999999,25,0,0,88,0.2,0,0 +2011,5,9,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,9,16,98747,1132,1340,443,858,842,148,106784,53616,18428,7704,320,3.6,0,0,4000,77777,9,999999999,23,0,0,88,0.2,0,0 +2011,5,9,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,9,15,98755,941,1340,448,679,769,138,82572,49414,16891,6961,280,4.1,0,0,4000,77777,9,999999999,22,0,0,88,0.2,0,0 +2011,5,9,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,9,15,98755,699,1340,448,455,610,136,53206,39396,16023,6102,280,6.2,0,0,4000,77777,9,999999999,22,0,0,88,0.2,0,0 +2011,5,9,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,8,14,98755,423,1340,447,217,280,128,23971,16366,14254,4505,280,5.1,0,0,4500,77777,9,999999999,20,0,0,88,0.2,0,0 +2011,5,9,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,8,15,98739,130,1340,436,30,0,30,2955,0,2975,1020,310,3.1,0,0,4500,77777,9,999999999,20,0,0,88,0.2,0,0 +2011,5,9,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,10,20,98722,0,604,427,0,0,0,0,0,0,0,290,2.6,0,0,3500,77777,9,999999999,25,0,0,88,0.2,0,0 +2011,5,9,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,10,21,98714,0,0,422,0,0,0,0,0,0,0,280,1.5,0,0,2100,77777,9,999999999,25,0,0,88,0.2,0,0 +2011,5,9,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,10,22,98705,0,0,416,0,0,0,0,0,0,0,250,1,0,0,2100,77777,9,999999999,25,0,0,88,0.2,0,0 +2011,5,9,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,34,11,25,98697,0,0,412,0,0,0,0,0,0,0,360,1,0,0,1800,77777,9,999999999,28,0,0,88,0.2,0,0 +2011,5,9,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,32,11,28,98680,0,0,402,0,0,0,0,0,0,0,156,0,0,0,1500,77777,9,999999999,28,0,0,88,0.2,0,0 +2011,5,10,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,32,10,26,98680,0,0,400,0,0,0,0,0,0,0,64,0,0,0,1500,77777,9,999999999,25,0,0,88,0.2,0,0 +2011,5,10,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,13,37,98654,0,0,389,0,0,0,0,0,0,0,12,0,0,0,1500,77777,9,999999999,34,0,0,88,0.2,0,0 +2011,5,10,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,11,33,98654,0,0,386,0,0,0,0,0,0,0,230,1.5,0,0,1500,77777,9,999999999,28,0,0,88,0.2,0,0 +2011,5,10,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,10,31,98654,0,0,385,0,0,0,0,0,0,0,220,3.1,0,0,2000,77777,9,999999999,25,0,0,88,0.2,0,0 +2011,5,10,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,8,27,98654,0,0,382,0,0,0,0,0,0,0,250,3.6,0,0,2500,77777,9,999999999,21,0,0,88,0.2,0,0 +2011,5,10,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,7,25,98654,0,0,381,0,0,0,0,0,0,0,230,2.6,0,0,2800,77777,9,999999999,19,0,0,88,0.2,0,0 +2011,5,10,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,8,27,98654,251,1150,382,93,110,73,10236,2965,7995,2378,240,3.6,0,0,2800,77777,9,999999999,21,0,0,88,0.2,0,0 +2011,5,10,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,9,24,98680,539,1339,399,312,445,133,35414,27705,15178,5287,240,5.1,0,0,3200,77777,9,999999999,23,0,0,88,0.2,0,0 +2011,5,10,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,10,26,98680,803,1339,400,549,674,145,65051,43947,17227,6805,270,4.1,0,0,3500,77777,9,999999999,25,0,0,88,0.2,0,0 +2011,5,10,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,12,25,98705,1026,1339,419,755,793,147,92387,49761,18044,7531,280,5.1,0,0,3200,77777,9,999999999,31,0,0,88,0.2,0,0 +2011,5,10,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,11,22,98714,1192,1339,423,912,826,177,112742,53541,21969,9096,270,4.1,0,0,3500,77777,9,999999999,28,0,0,88,0.2,0,0 +2011,5,10,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,10,19,98730,1290,1339,459,936,659,302,112667,49719,36577,14373,280,4.6,5,5,4000,77777,9,999999999,25,0,0,88,0.2,0,0 +2011,5,10,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,9,16,98747,1313,1339,469,958,681,291,116006,50812,35465,14012,280,4.1,5,5,3500,77777,9,999999999,23,0,0,88,0.2,0,0 +2011,5,10,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,9,15,98755,1259,1339,475,911,682,270,110155,50264,32846,13086,290,4.1,5,5,3500,77777,9,999999999,22,0,0,88,0.2,0,0 +2011,5,10,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,43,10,14,98771,1133,1339,489,798,658,242,95662,47814,29188,11748,290,4.1,5,5,3000,77777,9,999999999,25,0,0,88,0.2,0,0 +2011,5,10,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,43,10,14,98771,943,1339,489,632,586,219,74154,43064,25869,10198,300,4.1,5,5,3000,77777,9,999999999,25,0,0,88,0.2,0,0 +2011,5,10,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,43,10,14,98771,701,1339,489,424,394,217,47758,30447,24634,8616,310,4.1,5,5,3000,77777,9,999999999,25,0,0,88,0.2,0,0 +2011,5,10,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,10,17,98747,425,1339,498,112,7,110,12570,347,12384,4090,250,5.1,9,9,1800,3000,9,999999999,25,0,0,88,0.2,0,0 +2011,5,10,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,9,16,98739,133,1339,490,16,0,16,1575,0,1586,619,250,4.1,9,9,2500,1200,9,999999999,23,0,0,88,0.2,0,0 +2011,5,10,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,8,16,98730,0,617,482,0,0,0,0,0,0,0,20,1.5,9,9,2800,1200,9,999999999,20,0,0,88,0.2,0,0 +2011,5,10,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,36,10,21,98714,0,0,447,0,0,0,0,0,0,0,312,0,5,5,3000,1200,9,999999999,25,0,0,88,0.2,0,0 +2011,5,10,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,13,27,98705,0,0,446,0,0,0,0,0,0,0,70,2.1,5,5,2400,77777,9,999999999,34,0,0,88,0.2,0,0 +2011,5,10,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,14,28,98705,0,0,447,0,0,0,0,0,0,0,100,2.6,5,5,2400,77777,9,999999999,37,0,0,88,0.2,0,0 +2011,5,10,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,34,15,32,98697,0,0,436,0,0,0,0,0,0,0,119,0,3,3,2300,77777,9,999999999,41,0,0,88,0.2,0,0 +2011,5,11,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,33,13,30,98689,0,0,427,0,0,0,0,0,0,0,129,0,3,3,2400,77777,9,999999999,34,0,0,88,0.2,0,0 +2011,5,11,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,33,10,24,98689,0,0,423,0,0,0,0,0,0,0,238,0,3,3,2400,77777,9,999999999,25,0,0,88,0.2,0,0 +2011,5,11,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,32,9,24,98680,0,0,416,0,0,0,0,0,0,0,248,0,3,3,2800,77777,9,999999999,23,0,0,88,0.2,0,0 +2011,5,11,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,11,29,98672,0,0,420,0,0,0,0,0,0,0,245,0,5,5,2800,77777,9,999999999,28,0,0,88,0.2,0,0 +2011,5,11,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,11,33,98654,0,0,409,0,0,0,0,0,0,0,300,2.1,5,5,3000,77777,9,999999999,28,0,0,88,0.2,0,0 +2011,5,11,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,12,37,98646,0,0,399,0,0,0,0,0,0,0,220,2.1,3,3,2200,77777,9,999999999,31,0,0,88,0.2,0,0 +2011,5,11,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,13,33,98672,254,1164,399,94,131,69,10344,2961,7644,2322,270,1.5,0,0,1400,77777,9,999999999,34,0,0,88,0.2,0,0 +2011,5,11,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,14,30,98697,541,1339,416,311,431,137,35134,25771,15546,5410,240,3.1,0,0,2200,77777,9,999999999,37,0,0,88,0.2,0,0 +2011,5,11,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,15,30,98705,805,1339,423,546,682,135,64846,41172,16143,6440,250,3.6,0,0,2300,77777,9,999999999,41,0,0,88,0.2,0,0 +2011,5,11,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,16,31,98714,1027,1339,430,751,805,133,92362,46702,16459,6919,260,5.1,0,0,2800,77777,9,999999999,46,0,0,88,0.2,0,0 +2011,5,11,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,17,28,98739,1193,1339,448,904,775,214,109797,49277,26085,10696,270,4.1,0,0,3000,77777,9,999999999,50,0,0,88,0.2,0,0 +2011,5,11,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,16,25,98747,1290,1339,453,998,781,245,121491,51487,30047,12156,280,4.1,0,0,3000,77777,9,999999999,45,0,0,88,0.2,0,0 +2011,5,11,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,14,21,98755,1313,1339,456,1022,856,183,127777,52941,23008,9491,270,4.6,0,0,3500,77777,9,999999999,37,0,0,88,0.2,0,0 +2011,5,11,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,42,14,19,98763,1260,1339,481,959,826,183,119146,51540,22794,9420,270,4.6,3,3,3500,77777,9,999999999,37,0,0,88,0.2,0,0 +2011,5,11,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,42,11,16,98763,1134,1339,477,846,810,160,104566,51662,19844,8273,300,4.1,3,3,4000,77777,9,999999999,27,0,0,88,0.2,0,0 +2011,5,11,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,42,9,14,98763,944,1339,474,672,738,152,81180,48568,18414,7549,300,3.6,3,3,4500,77777,9,999999999,22,0,0,88,0.2,0,0 +2011,5,11,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,42,8,13,98763,703,1339,472,452,584,145,52654,38885,17009,6434,290,5.1,3,3,4000,77777,9,999999999,20,0,0,88,0.2,0,0 +2011,5,11,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,42,8,13,98763,427,1339,452,219,280,130,24263,16547,14425,4567,290,4.1,0,0,4000,77777,9,999999999,20,0,0,88,0.2,0,0 +2011,5,11,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,7,13,98755,135,1339,445,32,0,32,3606,0,3615,1081,300,3.6,0,0,4000,77777,9,999999999,18,0,0,88,0.2,0,0 +2011,5,11,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,9,16,98739,0,630,437,0,0,0,0,0,0,0,310,2.6,0,0,3500,77777,9,999999999,23,0,0,88,0.2,0,0 +2011,5,11,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,9,17,98730,0,0,431,0,0,0,0,0,0,0,260,2.1,0,0,3200,77777,9,999999999,23,0,0,88,0.2,0,0 +2011,5,11,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,10,21,98714,0,0,422,0,0,0,0,0,0,0,260,1.5,0,0,2800,77777,9,999999999,25,0,0,88,0.2,0,0 +2011,5,11,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,35,10,22,98705,0,0,416,0,0,0,0,0,0,0,156,0,0,0,2500,77777,9,999999999,25,0,0,88,0.2,0,0 +2011,5,11,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,11,25,98697,0,0,412,0,0,0,0,0,0,0,20,2.1,0,0,2000,77777,9,999999999,28,0,0,88,0.2,0,0 +2011,5,12,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,11,26,98689,0,0,407,0,0,0,0,0,0,0,230,2.1,0,0,1500,77777,9,999999999,28,0,0,88,0.2,0,0 +2011,5,12,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,12,28,98689,0,0,408,0,0,0,0,0,0,0,210,3.1,0,0,1500,77777,9,999999999,31,0,0,88,0.2,0,0 +2011,5,12,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,10,26,98680,0,0,424,0,0,0,0,0,0,0,240,4.1,5,5,2200,77777,9,999999999,25,0,0,88,0.2,0,0 +2011,5,12,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,11,29,98672,0,0,420,0,0,0,0,0,0,0,310,2.6,5,5,2000,77777,9,999999999,28,0,0,88,0.2,0,0 +2011,5,12,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,11,29,98672,0,0,420,0,0,0,0,0,0,0,240,1.5,5,5,2800,77777,9,999999999,28,0,0,88,0.2,0,0 +2011,5,12,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,11,29,98672,0,0,420,0,0,0,0,0,0,0,270,2.1,5,5,2600,77777,9,999999999,28,0,0,88,0.2,0,0 +2011,5,12,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,12,29,98680,256,1178,420,94,153,65,10461,3352,7237,2241,260,2.1,3,3,2600,77777,9,999999999,31,0,0,88,0.2,0,0 +2011,5,12,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,13,31,98680,543,1338,404,313,433,137,35408,26298,15590,5429,250,1.5,0,0,2400,77777,9,999999999,34,0,0,88,0.2,0,0 +2011,5,12,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,14,28,98705,807,1338,440,541,656,145,63988,41050,17259,6841,270,3.6,3,3,2800,77777,9,999999999,37,0,0,88,0.2,0,0 +2011,5,12,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,13,24,98722,1028,1338,450,746,764,158,90770,48347,19356,8051,270,6.2,3,3,3500,77777,9,999999999,34,0,0,88,0.2,0,0 +2011,5,12,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,16,27,98730,1194,1338,468,844,601,307,99712,44171,36566,14309,270,4.1,5,5,3500,77777,9,999999999,46,0,0,88,0.2,0,0 +2011,5,12,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,16,25,98747,1291,1338,453,998,825,202,123359,51250,25083,10310,260,5.1,0,0,4000,77777,9,999999999,45,0,0,88,0.2,0,0 +2011,5,12,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,12,18,98755,1314,1338,453,1026,839,202,127489,54538,25216,10333,260,5.1,0,0,4000,77777,9,999999999,30,0,0,88,0.2,0,0 +2011,5,12,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,14,21,98755,1260,1338,483,905,624,317,107814,46583,38043,14849,260,5.1,5,5,4000,77777,9,999999999,37,0,0,88,0.2,0,0 +2011,5,12,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,42,10,15,98763,1134,1338,483,800,656,244,95786,47740,29342,11803,260,5.7,5,5,4500,77777,9,999999999,25,0,0,88,0.2,0,0 +2011,5,12,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,42,7,12,98763,945,1338,478,636,610,205,75182,44740,24404,9704,270,5.7,5,5,5000,77777,9,999999999,18,0,0,88,0.2,0,0 +2011,5,12,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,42,7,12,98763,704,1338,478,428,474,178,49089,34351,20524,7521,260,5.7,5,5,5000,77777,9,999999999,18,0,0,88,0.2,0,0 +2011,5,12,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,8,14,98755,429,1338,466,218,336,110,24448,18099,12403,4110,270,4.6,3,3,5000,77777,9,999999999,20,0,0,88,0.2,0,0 +2011,5,12,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,10,17,98747,138,1338,463,33,0,33,3196,0,3219,1100,270,3.6,3,3,5000,77777,9,999999999,25,0,0,88,0.2,0,0 +2011,5,12,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,10,18,98739,0,643,492,0,0,0,0,0,0,0,270,2.6,9,9,4000,77777,9,999999999,25,0,0,88,0.2,0,0 +2011,5,12,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,15,27,98722,0,0,487,0,0,0,0,0,0,0,50,3.1,9,9,3500,3000,9,999999999,41,0,0,88,0.2,0,0 +2011,5,12,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,17,33,98714,0,0,484,0,0,0,0,0,0,0,110,3.6,9,9,2500,3000,9,999999999,50,0,0,88,0.2,0,0 +2011,5,12,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,16,32,98705,0,0,450,0,0,0,0,0,0,0,110,3.6,5,5,2500,3000,9,999999999,46,0,0,88,0.2,0,0 +2011,5,12,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,15,34,98689,0,0,437,0,0,0,0,0,0,0,110,2.1,5,5,2500,77777,9,999999999,42,0,0,88,0.2,0,0 +2011,5,13,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,15,34,98689,0,0,437,0,0,0,0,0,0,0,120,2.1,5,5,2500,77777,9,999999999,42,0,0,88,0.2,0,0 +2011,5,13,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,15,38,98672,0,0,426,0,0,0,0,0,0,0,260,2.1,5,5,2500,77777,9,999999999,42,0,0,88,0.2,0,0 +2011,5,13,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,15,38,98672,0,0,451,0,0,0,0,0,0,0,220,2.6,9,9,2500,3000,9,999999999,42,0,0,88,0.2,0,0 +2011,5,13,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,16,40,98672,0,0,452,0,0,0,0,0,0,0,60,2.6,9,9,2500,3000,9,999999999,46,0,0,88,0.2,0,0 +2011,5,13,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,16,40,98672,0,0,452,0,0,0,0,0,0,0,40,5.1,9,9,2500,3000,9,999999999,46,0,0,88,0.2,0,0 +2011,5,13,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,17,48,98654,0,0,442,0,0,0,0,0,0,0,60,5.1,9,9,3000,1200,9,999999999,51,0,0,88,0.2,0,0 +2011,5,13,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,17,48,98654,259,1192,442,50,0,50,4850,0,4887,1851,70,6.7,9,9,3000,1200,9,999999999,51,0,0,88,0.2,0,0 +2011,5,13,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,16,43,98663,545,1337,421,291,297,170,32323,19383,18968,6288,90,5.1,5,5,3000,1200,9,999999999,46,0,0,88,0.2,0,0 +2011,5,13,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,15,40,98663,808,1337,420,510,519,197,58914,35797,22816,8710,100,7.2,5,5,3500,77777,9,999999999,42,0,0,88,0.2,0,0 +2011,5,13,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,14,34,98680,1030,1337,423,745,735,179,89826,47659,21732,8966,120,5.7,3,3,3500,77777,9,999999999,38,0,0,88,0.2,0,0 +2011,5,13,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,13,28,98697,1194,1337,415,911,815,183,112276,52178,22698,9387,120,5.1,0,0,3500,77777,9,999999999,34,0,0,88,0.2,0,0 +2011,5,13,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,13,25,98714,1291,1337,426,1003,780,250,122281,53661,30659,12354,100,4.1,0,0,3500,77777,9,999999999,34,0,0,88,0.2,0,0 +2011,5,13,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,13,24,98722,1314,1337,432,1025,781,257,124995,53952,31563,12683,110,4.6,0,0,3800,77777,9,999999999,34,0,0,88,0.2,0,0 +2011,5,13,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,13,24,98722,1261,1337,432,974,778,241,118635,53256,29453,11913,120,2.6,0,0,3800,77777,9,999999999,34,0,0,88,0.2,0,0 +2011,5,13,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,13,23,98730,1135,1337,437,856,833,149,106231,50999,18533,7760,170,2.6,0,0,4000,77777,9,999999999,34,0,0,88,0.2,0,0 +2011,5,13,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,13,21,98739,946,1337,443,678,742,153,81739,47071,18540,7617,120,2.1,0,0,4500,77777,9,999999999,34,0,0,88,0.2,0,0 +2011,5,13,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,13,21,98739,706,1337,469,425,437,194,48276,31203,22193,8022,30,3.1,5,5,5000,77777,9,999999999,34,0,0,88,0.2,0,0 +2011,5,13,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,13,23,98730,431,1337,463,205,257,122,22767,13889,13637,4425,60,3.1,5,5,4000,77777,9,999999999,34,0,0,88,0.2,0,0 +2011,5,13,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,14,25,98722,141,1337,459,32,0,32,3087,0,3109,1082,80,3.6,5,5,3500,77777,9,999999999,37,0,0,88,0.2,0,0 +2011,5,13,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,14,27,98714,0,656,453,0,0,0,0,0,0,0,50,2.6,5,5,3500,77777,9,999999999,37,0,0,88,0.2,0,0 +2011,5,13,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,14,28,98705,0,0,447,0,0,0,0,0,0,0,100,2.1,5,5,3500,77777,0,99999999,37,0,0,88,0.2,0,0 +2011,5,13,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,13,27,98705,0,0,446,0,0,0,0,0,0,0,120,1.5,5,5,3200,77777,0,99999999,34,0,0,88,0.2,0,0 +2011,5,13,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,15,32,98697,0,0,443,0,0,0,0,0,0,0,30,2.1,5,5,3200,77777,0,99999999,41,0,0,88,0.2,0,0 +2011,5,13,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,34,14.5,31,98697,0,0,417,0,0,0,0,0,0,0,241,1.8,0,0,2700,77777,9,999999999,39,0,0,88,0.2,0,0 +2011,5,14,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,14,30,98697,0,0,441,0,0,0,0,0,0,0,170,1.5,5,5,2200,77777,0,99999999,37,0,0,88,0.2,0,0 +2011,5,14,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,32,16,38,98680,0,0,433,0,0,0,0,0,0,0,185,0,5,5,2200,77777,0,99999999,46,0,0,88,0.2,0,0 +2011,5,14,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,16,43,98663,0,0,421,0,0,0,0,0,0,0,260,2.6,5,5,2800,77777,0,99999999,46,0,0,88,0.2,0,0 +2011,5,14,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,16,43,98663,0,0,421,0,0,0,0,0,0,0,220,2.1,5,5,3200,77777,0,99999999,46,0,0,88,0.2,0,0 +2011,5,14,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,16,45,98654,0,0,416,0,0,0,0,0,0,0,290,2.1,5,5,3200,77777,0,99999999,46,0,0,88,0.2,0,0 +2011,5,14,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,16,45,98654,0,0,416,0,0,0,0,0,0,0,190,3.1,5,5,2100,77777,0,99999999,46,0,0,88,0.2,0,0 +2011,5,14,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,17,46,98663,261,1205,423,91,105,71,10002,2179,7784,2388,240,1.5,5,5,1000,77777,0,99999999,51,0,0,88,0.2,0,0 +2011,5,14,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,32,16,38,98680,547,1337,433,293,339,154,32757,20946,17332,5913,19,0,5,5,1000,77777,0,99999999,46,0,0,88,0.2,0,0 +2011,5,14,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,15,34,98689,810,1337,430,542,656,145,64157,40469,17267,6858,220,1.5,3,3,1000,77777,0,99999999,42,0,0,88,0.2,0,0 +2011,5,14,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,14,28,98705,1031,1337,440,746,763,158,90827,47645,19331,8050,220,2.6,3,3,2000,77777,0,99999999,37,0,0,88,0.2,0,0 +2011,5,14,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,14,25,98722,1195,1337,452,899,785,197,110114,50680,24241,9983,270,2.1,3,3,4000,77777,0,99999999,37,0,0,88,0.2,0,0 +2011,5,14,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,14,24,98730,1292,1337,439,1002,853,178,125244,52562,22296,9217,220,2.1,0,0,4000,77777,0,99999999,37,0,0,88,0.2,0,0 +2011,5,14,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,11,18,98747,1315,1337,446,1028,781,261,125481,55216,31984,12821,10,2.6,0,0,3500,77777,0,99999999,28,0,0,88,0.2,0,0 +2011,5,14,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,10,17,98747,1261,1337,463,967,821,192,119914,54185,23974,9855,300,2.1,3,3,3000,77777,0,99999999,25,0,0,88,0.2,0,0 +2011,5,14,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,10,16,98755,1136,1337,477,801,604,287,94752,46627,34180,13428,30,2.6,5,5,2500,77777,0,99999999,25,0,0,88,0.2,0,0 +2011,5,14,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,10,16,98755,947,1337,477,635,583,222,74520,42961,26179,10323,70,3.6,5,5,2500,77777,0,99999999,25,0,0,88,0.2,0,0 +2011,5,14,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,11,17,98755,707,1337,478,427,494,166,49249,33684,19232,7163,70,4.1,5,5,2200,77777,0,99999999,27,0,0,88,0.2,0,0 +2011,5,14,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,12,19,98747,433,1337,474,207,259,123,22970,14245,13707,4450,80,3.6,5,5,2200,77777,0,99999999,30,0,0,88,0.2,0,0 +2011,5,14,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,9,17,98730,143,1337,457,33,0,33,3205,0,3228,1116,70,3.6,5,5,2200,77777,0,99999999,23,0,0,88,0.2,0,0 +2011,5,14,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,9,19,98714,0,669,445,0,0,0,0,0,0,0,60,3.1,5,5,2200,77777,0,99999999,23,0,0,88,0.2,0,0 +2011,5,14,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,10,22,98705,0,0,441,0,0,0,0,0,0,0,80,2.1,5,5,2500,77777,0,99999999,25,0,0,88,0.2,0,0 +2011,5,14,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,35,11,23,98705,0,0,443,0,0,0,0,0,0,0,282,0,5,5,2500,77777,0,99999999,28,0,0,88,0.2,0,0 +2011,5,14,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,34,12,26,98697,0,0,438,0,0,0,0,0,0,0,212,0,5,5,2500,77777,0,99999999,31,0,0,88,0.2,0,0 +2011,5,14,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,13,30,98689,0,0,434,0,0,0,0,0,0,0,140,2.6,5,5,2300,77777,0,99999999,34,0,0,88,0.2,0,0 +2011,5,15,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,13,31,98680,0,0,428,0,0,0,0,0,0,0,220,1.5,5,5,2300,77777,0,99999999,34,0,0,88,0.2,0,0 +2011,5,15,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,14,38,98663,0,0,419,0,0,0,0,0,0,0,220,1,5,5,2500,77777,0,99999999,38,0,0,88,0.2,0,0 +2011,5,15,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,14,38,98663,0,0,419,0,0,0,0,0,0,0,260,3.1,5,5,2500,77777,0,99999999,38,0,0,88,0.2,0,0 +2011,5,15,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,14,40,98654,0,0,413,0,0,0,0,0,0,0,250,2.6,5,5,2500,77777,0,99999999,38,0,0,88,0.2,0,0 +2011,5,15,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,13,37,98654,0,0,412,0,0,0,0,0,0,0,270,2.6,5,5,2500,77777,0,99999999,34,0,0,88,0.2,0,0 +2011,5,15,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,13,37,98654,0,0,405,0,0,0,0,0,0,0,260,1.5,3,3,2200,77777,9,999999999,34,0,0,88,0.2,0,0 +2011,5,15,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,13,37,98654,264,1218,405,98,132,72,10833,3330,8003,2440,270,2.1,3,3,2000,77777,9,999999999,34,0,0,88,0.2,0,0 +2011,5,15,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,11,29,98672,549,1336,414,314,421,141,35566,26549,16057,5579,250,2.6,3,3,2100,77777,9,999999999,28,0,0,88,0.2,0,0 +2011,5,15,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,12,28,98689,811,1336,408,553,676,143,65666,43033,17033,6767,260,3.1,0,0,2200,77777,9,999999999,31,0,0,88,0.2,0,0 +2011,5,15,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,12,24,98714,1032,1336,425,759,791,149,92948,49711,18307,7642,290,3.1,0,0,2800,77777,9,999999999,31,0,0,88,0.2,0,0 +2011,5,15,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,11,20,98730,1196,1336,434,916,851,154,114388,53225,19386,8077,280,3.1,0,0,3000,77777,9,999999999,28,0,0,88,0.2,0,0 +2011,5,15,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,11,19,98739,1292,1336,440,1007,779,253,122827,54897,31088,12496,300,3.1,0,0,3000,77777,9,999999999,28,0,0,88,0.2,0,0 +2011,5,15,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,10,16,98755,1315,1336,450,1030,780,262,125740,55777,32194,12889,300,2.1,0,0,3000,77777,9,999999999,25,0,0,88,0.2,0,0 +2011,5,15,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,42,8,13,98763,1262,1336,472,970,855,163,121953,55088,20531,8503,270,2.1,3,3,4000,77777,9,999999999,20,0,0,88,0.2,0,0 +2011,5,15,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,42,6,11,98763,1137,1336,469,855,818,159,105994,54251,19836,8252,270,2.6,3,3,3500,77777,9,999999999,17,0,0,88,0.2,0,0 +2011,5,15,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,42,6,11,98763,948,1336,449,687,765,144,83529,50797,17627,7250,260,3.1,0,0,3500,77777,9,999999999,17,0,0,88,0.2,0,0 +2011,5,15,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,42,6,11,98763,709,1336,449,464,604,144,54225,40625,16869,6408,270,4.1,0,0,4000,77777,9,999999999,17,0,0,88,0.2,0,0 +2011,5,15,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,5,11,98755,435,1336,442,226,287,132,25048,17633,14734,4679,270,2.1,0,0,4000,77777,9,999999999,15,0,0,88,0.2,0,0 +2011,5,15,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,7,14,98747,146,1336,440,37,13,35,4065,0,3916,1173,290,2.6,0,0,4000,77777,9,999999999,18,0,0,88,0.2,0,0 +2011,5,15,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,6,13,98739,0,682,433,0,0,0,0,0,0,0,260,1.5,0,0,3500,77777,9,999999999,17,0,0,88,0.2,0,0 +2011,5,15,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,10,20,98722,0,0,427,0,0,0,0,0,0,0,60,2.1,0,0,3200,77777,9,999999999,25,0,0,88,0.2,0,0 +2011,5,15,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,11,22,98714,0,0,423,0,0,0,0,0,0,0,70,2.1,0,0,2300,77777,9,999999999,28,0,0,88,0.2,0,0 +2011,5,15,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,11,23,98705,0,0,418,0,0,0,0,0,0,0,90,3.1,0,0,2400,77777,9,999999999,28,0,0,88,0.2,0,0 +2011,5,15,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,12,26,98697,0,0,414,0,0,0,0,0,0,0,110,3.6,0,0,2500,77777,9,999999999,31,0,0,88,0.2,0,0 +2011,5,16,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,12,28,98689,0,0,408,0,0,0,0,0,0,0,110,2.1,0,0,2800,77777,9,999999999,31,0,0,88,0.2,0,0 +2011,5,16,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,12,28,98689,0,0,408,0,0,0,0,0,0,0,110,2.1,0,0,2500,77777,9,999999999,31,0,0,88,0.2,0,0 +2011,5,16,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,12,29,98680,0,0,403,0,0,0,0,0,0,0,140,1.5,0,0,2800,77777,9,999999999,31,0,0,88,0.2,0,0 +2011,5,16,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,11,29,98672,0,0,396,0,0,0,0,0,0,0,100,2.1,0,0,2800,77777,9,999999999,28,0,0,88,0.2,0,0 +2011,5,16,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,12,31,98672,0,0,398,0,0,0,0,0,0,0,100,1.5,0,0,2600,77777,9,999999999,31,0,0,88,0.2,0,0 +2011,5,16,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,13,33,98672,0,0,399,0,0,0,0,0,0,0,150,1.5,0,0,2600,77777,9,999999999,34,0,0,88,0.2,0,0 +2011,5,16,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,14,38,98663,266,1231,395,101,140,73,11095,3502,8062,2463,210,2.1,0,0,2000,77777,9,999999999,38,0,0,88,0.2,0,0 +2011,5,16,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,10,27,98672,551,1336,395,320,444,137,36356,27894,15634,5470,300,1.5,0,0,1200,77777,9,999999999,25,0,0,88,0.2,0,0 +2011,5,16,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,10,26,98680,812,1336,400,556,671,148,65911,44034,17583,6960,320,1.5,0,0,1100,77777,9,999999999,25,0,0,88,0.2,0,0 +2011,5,16,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,9,22,98697,1032,1336,410,763,792,151,93521,51454,18573,7736,320,2.1,0,0,1200,77777,9,999999999,23,0,0,88,0.2,0,0 +2011,5,16,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,10,21,98714,1196,1336,422,917,774,224,111557,54057,27413,11142,340,4.6,0,0,1400,77777,9,999999999,25,0,0,88,0.2,0,0 +2011,5,16,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,10,19,98730,1293,1336,433,1009,779,255,123074,55451,31284,12560,270,2.1,0,0,1600,77777,9,999999999,25,0,0,88,0.2,0,0 +2011,5,16,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,11,19,98739,1315,1336,440,1029,780,261,125589,55159,32006,12829,200,1.5,0,0,1700,77777,9,999999999,28,0,0,88,0.2,0,0 +2011,5,16,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,11,18,98747,1262,1336,446,979,778,244,119237,54464,29885,12057,230,1,0,0,1800,77777,9,999999999,28,0,0,88,0.2,0,0 +2011,5,16,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,9,15,98755,1137,1336,448,863,839,149,107391,53472,18607,7773,240,1.5,0,0,2100,77777,9,999999999,22,0,0,88,0.2,0,0 +2011,5,16,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,9,15,98755,949,1336,448,685,765,141,83312,49360,17250,7116,300,2.1,0,0,2100,77777,9,999999999,22,0,0,88,0.2,0,0 +2011,5,16,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,42,9,14,98763,710,1336,454,463,608,139,54193,39617,16392,6263,150,1.5,0,0,2500,77777,9,999999999,22,0,0,88,0.2,0,0 +2011,5,16,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,12,18,98755,437,1336,453,225,322,120,25077,17492,13388,4396,70,3.6,0,0,2500,77777,9,999999999,30,0,0,88,0.2,0,0 +2011,5,16,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,15,24,98739,148,1336,446,37,11,36,4127,0,4009,1205,50,2.1,0,0,2500,77777,9,999999999,41,0,0,88,0.2,0,0 +2011,5,16,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,15,26,98730,0,695,440,0,0,0,0,0,0,0,40,2.6,0,0,2500,77777,9,999999999,41,0,0,88,0.2,0,0 +2011,5,16,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,17,31,98722,0,0,437,0,0,0,0,0,0,0,100,2.1,0,0,2200,77777,9,999999999,50,0,0,88,0.2,0,0 +2011,5,16,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,18,37,98705,0,0,427,0,0,0,0,0,0,0,110,1.5,0,0,2200,77777,9,999999999,56,0,0,88,0.2,0,0 +2011,5,16,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,19,41,98697,0,0,423,0,0,0,0,0,0,0,80,1.5,0,0,2200,77777,9,999999999,62,0,0,88,0.2,0,0 +2011,5,16,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,19,44,98689,0,0,418,0,0,0,0,0,0,0,100,1.5,0,0,2200,77777,9,999999999,62,0,0,88,0.2,0,0 +2011,5,17,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,19,44,98689,0,0,418,0,0,0,0,0,0,0,90,1.5,0,0,2200,77777,9,999999999,62,0,0,88,0.2,0,0 +2011,5,17,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,32,19,46,98680,0,0,430,0,0,0,0,0,0,0,196,0,3,3,2200,77777,9,999999999,62,0,0,88,0.2,0,0 +2011,5,17,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,19,46,98680,0,0,430,0,0,0,0,0,0,0,50,2.6,3,3,2200,77777,9,999999999,62,0,0,88,0.2,0,0 +2011,5,17,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,19,49,98672,0,0,424,0,0,0,0,0,0,0,170,1.5,3,3,2500,77777,9,999999999,62,0,0,88,0.2,0,0 +2011,5,17,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,20,52,98672,0,0,432,0,0,0,0,0,0,0,104,0,5,5,2500,77777,9,999999999,69,0,0,88,0.2,0,0 +2011,5,17,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,19,52,98663,0,0,419,0,0,0,0,0,0,0,40,3.6,3,3,2200,77777,9,999999999,62,0,0,88,0.2,0,0 +2011,5,17,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,20,55,98663,268,1242,420,100,138,72,10955,2643,7933,2453,110,2.1,3,3,2200,77777,9,999999999,69,0,0,88,0.2,0,0 +2011,5,17,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,19,46,98680,553,1335,430,313,445,129,35478,23883,14643,5227,240,2.6,3,3,2100,77777,9,999999999,62,0,0,88,0.2,0,0 +2011,5,17,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,13,30,98689,813,1335,410,554,678,141,65852,42507,16846,6711,270,4.1,0,0,2100,77777,9,999999999,34,0,0,88,0.2,0,0 +2011,5,17,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,13,28,98697,1033,1335,415,759,789,148,92965,49019,18254,7627,260,5.1,0,0,2100,77777,9,999999999,34,0,0,88,0.2,0,0 +2011,5,17,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,13,25,98714,1197,1335,426,914,843,158,113855,51864,19798,8249,270,3.6,0,0,2500,77777,9,999999999,34,0,0,88,0.2,0,0 +2011,5,17,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,13,23,98730,1293,1335,437,1005,779,251,122531,53564,30727,12380,270,3.1,0,0,2500,77777,9,999999999,34,0,0,88,0.2,0,0 +2011,5,17,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,12,19,98747,1316,1335,447,1028,780,259,125440,54514,31829,12772,270,2.1,0,0,2500,77777,9,999999999,30,0,0,88,0.2,0,0 +2011,5,17,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,42,10,15,98763,1263,1335,456,981,777,246,119492,55026,30089,12125,300,3.6,0,0,2800,77777,9,999999999,25,0,0,88,0.2,0,0 +2011,5,17,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,44,4,9,98779,1138,1335,458,870,770,213,105612,55894,26052,10608,290,4.6,0,0,2500,77777,9,999999999,14,0,0,88,0.2,0,0 +2011,5,17,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,44,3,8,98779,950,1335,456,692,756,154,83843,51967,18685,7652,310,4.1,0,0,2700,77777,9,999999999,12,0,0,88,0.2,0,0 +2011,5,17,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,44,2,8,98779,712,1335,455,469,591,154,54639,41669,18014,6782,310,4.1,0,0,2700,77777,9,999999999,11,0,0,88,0.2,0,0 +2011,5,17,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,42,5,11,98763,439,1335,448,229,289,134,25367,17865,14893,4737,280,4.6,0,0,2700,77777,9,999999999,15,0,0,88,0.2,0,0 +2011,5,17,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,6,13,98747,151,1335,438,39,19,37,4301,0,4069,1220,260,4.1,0,0,2700,77777,9,999999999,17,0,0,88,0.2,0,0 +2011,5,17,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,6,14,98730,0,708,427,0,0,0,0,0,0,0,270,3.1,0,0,2700,77777,9,999999999,17,0,0,88,0.2,0,0 +2011,5,17,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,6,13,98739,0,0,433,0,0,0,0,0,0,0,320,1,0,0,2700,77777,9,999999999,17,0,0,88,0.2,0,0 +2011,5,17,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,15,29,98714,0,0,429,0,0,0,0,0,0,0,80,2.6,0,0,2500,77777,9,999999999,41,0,0,88,0.2,0,0 +2011,5,17,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,20,42,98705,0,0,430,0,0,0,0,0,0,0,100,3.1,0,0,2100,77777,9,999999999,68,0,0,88,0.2,0,0 +2011,5,17,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,21,47,98697,0,0,444,0,0,0,0,0,0,0,110,2.6,3,3,2100,77777,9,999999999,76,0,0,88,0.2,0,0 +2011,5,18,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,21,47,98697,0,0,444,0,0,0,0,0,0,0,110,3.1,3,3,2100,77777,9,999999999,76,0,0,88,0.2,0,0 +2011,5,18,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,22,53,98689,0,0,440,0,0,0,0,0,0,0,100,3.1,3,3,2100,77777,9,999999999,84,0,0,88,0.2,0,0 +2011,5,18,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,23,59,98680,0,0,435,0,0,0,0,0,0,0,110,4.1,3,3,2500,77777,9,999999999,93,0,0,88,0.2,0,0 +2011,5,18,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,23,59,98680,0,0,435,0,0,0,0,0,0,0,120,2.6,3,3,2500,77777,9,999999999,93,0,0,88,0.2,0,0 +2011,5,18,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,23,59,98680,0,0,442,0,0,0,0,0,0,0,170,3.1,5,5,2500,77777,9,999999999,93,0,0,88,0.2,0,0 +2011,5,18,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,23,59,98680,0,0,442,0,0,0,0,0,0,0,180,2.6,5,5,2500,77777,9,999999999,93,0,0,88,0.2,0,0 +2011,5,18,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,23,63,98672,270,1254,436,95,106,73,10355,1684,8041,2491,70,2.6,5,5,2500,77777,9,999999999,93,0,0,88,0.2,0,0 +2011,5,18,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,23,59,98680,554,1335,442,294,359,145,32878,18627,16285,5712,40,3.1,5,5,2100,77777,9,999999999,93,0,0,88,0.2,0,0 +2011,5,18,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,24,63,98680,815,1335,443,507,543,176,58640,30083,20430,8032,60,4.1,5,5,1700,77777,9,999999999,102,0,0,88,0.2,0,0 +2011,5,18,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,25,60,98697,1034,1335,457,693,625,209,81749,34377,24818,10211,80,4.1,5,5,2200,77777,9,999999999,113,0,0,88,0.2,0,0 +2011,5,18,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,24,53,98705,1197,1335,461,836,625,275,98864,37818,32734,13147,120,2.6,5,5,2200,77777,9,999999999,102,0,0,88,0.2,0,0 +2011,5,18,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,24,48,98722,1294,1335,466,975,792,207,119367,41794,25482,10538,120,2.6,3,3,2200,77777,9,999999999,101,0,0,88,0.2,0,0 +2011,5,18,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,22,38,98739,1316,1335,475,999,845,166,125013,43808,20821,8682,180,2.1,3,3,2500,77777,9,999999999,83,0,0,88,0.2,0,0 +2011,5,18,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,19,30,98747,1263,1335,477,955,811,188,117998,47086,23292,9646,140,3.1,3,3,2500,77777,9,999999999,61,0,0,88,0.2,0,0 +2011,5,18,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,42,19,27,98763,1139,1335,497,792,608,273,93506,41437,32473,12943,40,2.6,5,5,2500,77777,9,999999999,61,0,0,88,0.2,0,0 +2011,5,18,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,43,19,25,98771,951,1335,503,629,627,182,74568,38483,21709,8842,20,2.1,5,5,2500,77777,9,999999999,61,0,0,88,0.2,0,0 +2011,5,18,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,43,18,24,98771,713,1335,502,427,512,153,49337,30922,17781,6763,300,2.1,5,5,2500,77777,9,999999999,55,0,0,88,0.2,0,0 +2011,5,18,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,44,15,19,98779,441,1335,503,211,257,126,23397,13864,14015,4571,290,4.1,5,5,2800,77777,9,999999999,41,0,0,88,0.2,0,0 +2011,5,18,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,42,12,17,98763,153,1335,486,37,0,37,4080,0,4090,1234,300,2.6,5,5,2800,77777,9,999999999,30,0,0,88,0.2,0,0 +2011,5,18,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,12,19,98747,0,721,474,0,0,0,0,0,0,0,300,1.5,5,5,3000,77777,9,999999999,30,0,0,88,0.2,0,0 +2011,5,18,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,14,25,98722,0,0,486,0,0,0,0,0,0,0,220,4.6,9,9,3000,1200,0,99999999,37,0,0,88,0.2,0,0 +2011,5,18,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,12,22,98722,0,0,483,0,0,0,0,0,0,0,280,5.1,9,9,3000,1200,0,99999999,31,0,0,88,0.2,0,0 +2011,5,18,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,13,30,98689,0,0,460,0,0,0,0,0,0,0,300,7.2,9,9,3000,1200,0,99999999,34,0,0,88,0.2,0,0 +2011,5,18,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,32.1,14.6,35,98681,0,0,407,0,0,0,0,0,0,0,81,6.6,0,0,2971,1200,9,999999999,40,0,0,88,0.2,0,0 +2011,5,19,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,31.1,15.6,39,98673,0,0,411,0,0,0,0,0,0,0,103,6.5,1,1,3192,1200,9,999999999,44,0,0,88,0.2,0,0 +2011,5,19,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,30.2,17.2,46,98665,0,0,413,0,0,0,0,0,0,0,60,6.2,2,2,3164,1200,9,999999999,52,0,0,88,0.2,0,0 +2011,5,19,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,29.8,18.8,52,98661,0,0,417,0,0,0,0,0,0,0,77,5.9,3,3,3585,1200,9,999999999,61,0,0,88,0.2,0,0 +2011,5,19,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,29.4,19.9,57,98657,0,0,420,0,0,0,0,0,0,0,356,4.8,4,4,3557,1200,9,999999999,68,0,0,88,0.2,0,0 +2011,5,19,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,29.4,20.9,60,98658,0,0,421,0,0,0,0,0,0,0,231,4.4,4,4,3278,1200,9,999999999,75,0,0,88,0.2,0,0 +2011,5,19,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,17,48,98654,0,0,417,0,0,0,0,0,0,0,240,3.1,5,5,3500,77777,9,999999999,51,0,0,88,0.2,0,0 +2011,5,19,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,17,48,98654,272,1265,411,103,149,72,11295,3406,7966,2471,220,2.1,3,3,3500,77777,9,999999999,51,0,0,88,0.2,0,0 +2011,5,19,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,14,34,98680,556,1334,406,322,433,141,36383,26425,16057,5620,180,1.5,0,0,3500,77777,9,999999999,38,0,0,88,0.2,0,0 +2011,5,19,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,16,34,98697,816,1334,419,553,680,138,65759,40616,16430,6579,230,3.6,0,0,3500,77777,9,999999999,46,0,0,88,0.2,0,0 +2011,5,19,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,16,32,98705,1035,1334,425,757,800,136,93116,46639,16804,7066,250,2.6,0,0,4000,77777,9,999999999,46,0,0,88,0.2,0,0 +2011,5,19,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,15,26,98730,1198,1334,440,912,844,154,113689,50255,19333,8073,280,4.6,0,0,4000,77777,9,999999999,41,0,0,88,0.2,0,0 +2011,5,19,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,15,23,98747,1294,1334,451,1002,853,175,125404,51616,21964,9091,270,5.1,0,0,4000,77777,9,999999999,41,0,0,88,0.2,0,0 +2011,5,19,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,15,22,98755,1316,1334,457,1024,853,182,128055,51930,22844,9431,290,5.1,0,0,4000,77777,9,999999999,41,0,0,88,0.2,0,0 +2011,5,19,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,42,15,21,98763,1264,1334,463,974,853,166,121862,51187,20821,8648,300,4.1,0,0,4000,77777,9,999999999,41,0,0,88,0.2,0,0 +2011,5,19,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,15,22,98755,1139,1334,457,857,807,168,105379,49604,20717,8634,300,4.1,0,0,4500,77777,9,999999999,41,0,0,88,0.2,0,0 +2011,5,19,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,15,22,98755,952,1334,477,672,713,164,80647,44924,19730,8091,300,3.6,3,3,4500,77777,9,999999999,41,0,0,88,0.2,0,0 +2011,5,19,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,42,16,22,98763,715,1334,485,455,542,165,52425,34792,19112,7182,300,3.1,3,3,4500,77777,9,999999999,45,0,0,88,0.2,0,0 +2011,5,19,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,42,15,21,98763,443,1334,491,212,251,129,23502,13713,14343,4657,310,3.1,5,5,4500,77777,9,999999999,41,0,0,88,0.2,0,0 +2011,5,19,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,18,28,98747,156,1334,483,38,2,37,4144,0,4136,1255,60,2.6,5,5,4000,77777,9,999999999,55,0,0,88,0.2,0,0 +2011,5,19,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,18,31,98730,0,733,471,0,0,0,0,0,0,0,100,6.2,5,5,4000,77777,9,999999999,56,0,0,88,0.2,0,0 +2011,5,19,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,20,37,98722,0,0,467,0,0,0,0,0,0,0,80,6.7,5,5,3500,77777,9,999999999,68,0,0,88,0.2,0,0 +2011,5,19,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,22,50,98697,0,0,452,0,0,0,0,0,0,0,90,6.2,5,5,3500,77777,9,999999999,83,0,0,88,0.2,0,0 +2011,5,19,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,21,52,98680,0,0,439,0,0,0,0,0,0,0,90,6.7,5,5,3500,77777,9,999999999,76,0,0,88,0.2,0,0 +2011,5,19,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,21,55,98672,0,0,434,0,0,0,0,0,0,0,90,6.7,5,5,3500,77777,9,999999999,76,0,0,88,0.2,0,0 +2011,5,20,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,21,62,98654,0,0,422,0,0,0,0,0,0,0,100,6.7,5,5,4000,77777,9,999999999,76,0,0,88,0.2,0,0 +2011,5,20,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,21,66,98646,0,0,417,0,0,0,0,0,0,0,100,6.7,5,5,4000,77777,9,999999999,76,0,0,88,0.2,0,0 +2011,5,20,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,21,66,98646,0,0,417,0,0,0,0,0,0,0,100,5.7,5,5,4500,77777,9,999999999,76,0,0,88,0.2,0,0 +2011,5,20,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,21,70,98637,0,0,405,0,0,0,0,0,0,0,120,5.7,3,3,4500,77777,9,999999999,76,0,0,88,0.2,0,0 +2011,5,20,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,21,70,98637,0,0,405,0,0,0,0,0,0,0,110,5.1,3,3,4000,77777,9,999999999,76,0,0,88,0.2,0,0 +2011,5,20,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,20,66,98637,0,0,404,0,0,0,0,0,0,0,110,5.1,3,3,4000,77777,9,999999999,69,0,0,88,0.2,0,0 +2011,5,20,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,20,66,98637,274,1275,404,103,142,74,11309,2922,8129,2520,120,5.1,3,3,4000,77777,9,999999999,69,0,0,88,0.2,0,0 +2011,5,20,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,20,62,98646,557,1334,409,316,443,130,35728,23450,14837,5307,110,6.2,3,3,4000,77777,9,999999999,69,0,0,88,0.2,0,0 +2011,5,20,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,20,58,98654,817,1334,397,550,675,137,65207,37437,16287,6551,100,5.1,0,0,4000,77777,9,999999999,69,0,0,88,0.2,0,0 +2011,5,20,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,21,59,98663,1035,1334,404,751,812,120,92837,41517,14931,6333,110,6.2,0,0,4000,77777,9,999999999,76,0,0,88,0.2,0,0 +2011,5,20,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,21,52,98680,1198,1334,415,903,773,209,109539,45169,25442,10492,110,6.2,0,0,3500,77777,9,999999999,76,0,0,88,0.2,0,0 +2011,5,20,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,21,47,98697,1294,1334,426,993,778,238,120761,46481,29101,11861,120,6.2,0,0,3500,77777,9,999999999,76,0,0,88,0.2,0,0 +2011,5,20,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,20,39,98714,1317,1334,436,1016,779,246,123690,47840,30192,12252,120,3.6,0,0,3500,77777,9,999999999,68,0,0,88,0.2,0,0 +2011,5,20,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,19,35,98722,1264,1334,440,968,776,232,117746,48191,28380,11571,140,3.1,0,0,3500,77777,9,999999999,62,0,0,88,0.2,0,0 +2011,5,20,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,20,35,98730,1140,1334,447,850,830,141,105524,44590,17552,7402,170,2.6,0,0,3500,77777,9,999999999,68,0,0,88,0.2,0,0 +2011,5,20,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,20,33,98739,953,1334,453,676,792,110,83251,40846,13611,5723,240,1.5,0,0,3200,77777,9,999999999,68,0,0,88,0.2,0,0 +2011,5,20,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,19,31,98739,716,1334,451,460,668,102,54898,34106,12161,4822,170,2.1,0,0,3100,77777,9,999999999,61,0,0,88,0.2,0,0 +2011,5,20,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,18,29,98739,445,1334,450,228,372,104,25677,16980,11755,4027,180,2.6,0,0,3100,77777,9,999999999,56,0,0,88,0.2,0,0 +2011,5,20,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,18,29,98739,158,1334,450,41,22,39,4559,0,4288,1296,120,3.1,0,0,3500,77777,9,999999999,56,0,0,88,0.2,0,0 +2011,5,20,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,20,37,98722,0,746,441,0,0,0,0,0,0,0,80,2.6,0,0,3500,77777,9,999999999,68,0,0,88,0.2,0,0 +2011,5,20,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,20,42,98705,0,0,430,0,0,0,0,0,0,0,80,4.1,0,0,3200,77777,9,999999999,68,0,0,88,0.2,0,0 +2011,5,20,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,20,44,98697,0,0,450,0,0,0,0,0,0,0,80,4.1,5,5,3200,77777,9,999999999,68,0,0,88,0.2,0,0 +2011,5,20,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,20,44,98697,0,0,450,0,0,0,0,0,0,0,90,6.2,5,5,3200,77777,9,999999999,68,0,0,88,0.2,0,0 +2011,5,20,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,20,49,98680,0,0,464,0,0,0,0,0,0,0,90,5.7,9,9,3200,3000,9,999999999,69,0,0,88,0.2,0,0 +2011,5,21,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,20,49,98680,0,0,438,0,0,0,0,0,0,0,110,4.1,5,5,3200,77777,9,999999999,69,0,0,88,0.2,0,0 +2011,5,21,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,20,52,98672,0,0,458,0,0,0,0,0,0,0,100,4.1,9,9,3200,77777,9,999999999,69,0,0,88,0.2,0,0 +2011,5,21,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,16,54,98628,0,0,423,0,0,0,0,0,0,0,50,4.1,9,9,2200,1200,0,99999999,46,0,0,88,0.2,0,0 +2011,5,21,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,16,51,98637,0,0,429,0,0,0,0,0,0,0,120,5.1,9,9,2500,1200,0,99999999,46,0,0,88,0.2,0,0 +2011,5,21,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,16,51,98637,0,0,429,0,0,0,0,0,0,0,140,4.1,9,9,2500,1200,0,99999999,46,0,0,88,0.2,0,0 +2011,5,21,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,16,51,98637,0,0,429,0,0,0,0,0,0,0,150,4.1,9,9,3000,1200,9,999999999,46,0,0,88,0.2,0,0 +2011,5,21,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,16,48,98646,276,1285,404,105,137,76,11499,3551,8409,2581,150,4.1,3,3,3000,77777,9,999999999,46,0,0,88,0.2,0,0 +2011,5,21,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,16,45,98654,558,1333,409,318,411,146,35879,24816,16547,5772,140,4.1,3,3,3000,77777,9,999999999,46,0,0,88,0.2,0,0 +2011,5,21,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,15,36,98680,817,1333,425,548,531,223,62835,38484,25644,9622,160,5.7,3,3,3200,77777,9,999999999,42,0,0,88,0.2,0,0 +2011,5,21,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,21,94,98592,1036,1333,407,388,89,319,44478,6464,36819,14067,50,5.1,9,9,1500,1200,0,19999999,77,0,0,88,0.2,0,0 +2011,5,21,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,20,88,98592,1198,1333,406,467,68,406,53853,5338,47128,17432,70,7.2,9,9,1900,1200,0,19999999,70,0,0,88,0.2,0,0 +2011,5,21,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,20,78,98610,1294,1333,417,513,68,447,59534,5423,52228,19069,80,6.2,9,9,2500,1200,0,19999999,69,0,0,88,0.2,0,0 +2011,5,21,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,19,69,98619,1317,1333,422,525,69,457,61037,5554,53540,19465,80,6.2,9,9,3500,1200,0,19999999,63,0,0,88,0.2,0,0 +2011,5,21,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,18,58,98637,1264,1333,432,500,69,435,58059,5631,50818,18582,100,6.2,9,9,3500,1200,0,19999999,57,0,0,88,0.2,0,0 +2011,5,21,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,18,49,98663,1141,1333,449,441,68,382,50752,5482,44305,16478,120,7.2,9,9,3800,1200,0,19999999,56,0,0,88,0.2,0,0 +2011,5,21,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,17,41,98680,954,1333,460,351,32,328,39845,2625,37445,13709,100,4.1,9,9,4000,1200,0,19999999,51,0,0,88,0.2,0,0 +2011,5,21,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,18,46,98672,718,1333,455,238,18,229,26709,1301,25766,9066,200,5.1,9,9,3000,1200,0,19999999,56,0,0,88,0.2,0,0 +2011,5,21,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,19,52,98663,447,1333,451,118,9,115,13192,439,12899,4341,110,4.1,9,9,3500,1200,0,19999999,62,0,0,88,0.2,0,0 +2011,5,21,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,19,52,98663,161,1333,451,22,0,22,2108,0,2123,831,130,2.6,9,9,3500,1200,0,19999999,62,0,0,88,0.2,0,0 +2011,5,21,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,19,58,98646,0,759,439,0,0,0,0,0,0,0,120,5.1,9,9,3000,1200,0,19999999,62,0,0,88,0.2,0,0 +2011,5,21,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,19,62,98637,0,0,445,0,0,0,0,0,0,0,100,3.6,10,10,3000,1200,0,19999999,63,0,0,88,0.2,0,0 +2011,5,21,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,20,66,98637,0,0,447,0,0,0,0,0,0,0,320,9.3,10,10,3000,1200,0,19999999,69,0,0,88,0.2,0,0 +2011,5,21,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,22,89,98610,0,0,432,0,0,0,0,0,0,0,350,6.2,10,10,3000,1200,0,19999999,85,0,0,88,0.2,0,0 +2011,5,21,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,21,78,98619,0,0,436,0,0,0,0,0,0,0,360,6.2,10,10,3000,1200,0,19999999,77,0,0,88,0.2,0,0 +2011,5,22,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,23.5,21,86,98606,0,0,407,0,0,0,0,0,0,0,238,6.2,8,8,2750,1200,9,999999999,77,0,0,88,0.2,0,0 +2011,5,22,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,21,94,98592,0,0,419,0,0,0,0,0,0,0,300,6.2,10,10,2500,1200,0,19999999,77,0,0,88,0.2,0,0 +2011,5,22,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,19,88,98583,0,0,411,0,0,0,0,0,0,0,80,6.2,10,10,2100,1200,0,19999999,63,0,0,88,0.2,0,0 +2011,5,22,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,21,94,98592,0,0,407,0,0,0,0,0,0,0,40,2.1,9,9,2100,1200,0,19999999,77,0,0,88,0.2,0,0 +2011,5,22,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,21,100,98583,0,0,379,0,0,0,0,0,0,0,40,2.6,5,5,2100,77777,0,19999999,77,0,0,88,0.2,0,0 +2011,5,22,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,21,94,98592,0,0,385,0,0,0,0,0,0,0,350,3.1,5,5,2100,77777,9,999999999,77,0,0,88,0.2,0,0 +2011,5,22,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,20,88,98592,278,1295,383,99,112,76,10841,2420,8321,2576,150,2.1,5,5,2100,77777,9,999999999,70,0,0,88,0.2,0,0 +2011,5,22,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,19,74,98610,560,1332,393,299,366,146,33668,20965,16442,5763,150,2.1,5,5,2500,77777,9,999999999,63,0,0,88,0.2,0,0 +2011,5,22,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,19,69,98619,818,1332,398,514,559,171,59943,34267,20032,7875,160,2.6,5,5,2500,77777,9,999999999,63,0,0,88,0.2,0,0 +2011,5,22,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,20,70,98628,1036,1332,405,701,638,205,83311,39294,24466,10036,170,2.1,5,5,2800,77777,9,999999999,69,0,0,88,0.2,0,0 +2011,5,22,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,18,52,98654,1199,1332,418,845,667,245,101566,43580,29574,11976,160,2.1,5,5,3000,77777,9,999999999,56,0,0,88,0.2,0,0 +2011,5,22,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,16,40,98672,1294,1332,427,931,655,295,112004,45983,35721,14141,120,2.1,5,5,3500,77777,9,999999999,46,0,0,88,0.2,0,0 +2011,5,22,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,18,43,98680,1317,1332,435,948,559,396,111617,42789,46964,17693,240,2.6,5,5,3500,77777,9,999999999,56,0,0,88,0.2,0,0 +2011,5,22,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,18,43,98680,1265,1332,461,501,90,415,58315,7200,48663,18025,300,4.1,9,9,3500,3000,9,999999999,56,0,0,88,0.2,0,0 +2011,5,22,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,20,66,98637,1141,1332,434,439,67,382,50523,5248,44179,16472,300,10.3,9,9,3200,1200,9,999999999,69,0,0,88,0.2,0,0 +2011,5,22,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,18,78,98592,955,1332,404,351,46,318,39883,3624,36353,13448,190,6.7,9,9,3000,1200,0,19999999,57,0,0,88,0.2,0,0 +2011,5,22,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,23.5,17.5,69,98606,719,1332,392,419,385,211,47292,26981,23983,8619,152,4.9,6,6,4000,1200,9,999999999,54,0,0,88,0.2,0,0 +2011,5,22,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,17,61,98619,449,1332,419,119,18,113,13357,864,12746,4304,190,3.1,9,9,5000,3000,0,19999999,51,0,0,88,0.2,0,0 +2011,5,22,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,17,58,98628,163,1332,425,22,0,22,2168,0,2184,852,40,2.6,9,9,5000,3000,0,19999999,51,0,0,88,0.2,0,0 +2011,5,22,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,17,61,98619,0,771,419,0,0,0,0,0,0,0,50,2.1,9,9,4000,3000,0,19999999,51,0,0,88,0.2,0,0 +2011,5,22,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,19,69,98619,0,0,398,0,0,0,0,0,0,0,80,1.5,5,5,3500,77777,0,19999999,63,0,0,88,0.2,0,0 +2011,5,22,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,24,19,74,98610,0,0,393,0,0,0,0,0,0,0,189,0,5,5,3200,77777,0,19999999,63,0,0,88,0.2,0,0 +2011,5,22,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,19,74,98610,0,0,393,0,0,0,0,0,0,0,110,2.1,5,5,2300,77777,0,19999999,63,0,0,88,0.2,0,0 +2011,5,22,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,19,74,98610,0,0,416,0,0,0,0,0,0,0,120,2.1,9,9,2300,77777,0,19999999,63,0,0,88,0.2,0,0 +2011,5,23,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,19,78,98601,0,0,410,0,0,0,0,0,0,0,100,2.1,9,9,2300,3000,0,19999999,63,0,0,88,0.2,0,0 +2011,5,23,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,23,20,83,98601,0,0,389,0,0,0,0,0,0,0,148,0,5,5,2300,77777,0,19999999,70,0,0,88,0.2,0,0 +2011,5,23,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,24,19,74,98610,0,0,393,0,0,0,0,0,0,0,357,0,5,5,2500,77777,0,19999999,63,0,0,88,0.2,0,0 +2011,5,23,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,23,19,78,98601,0,0,410,0,0,0,0,0,0,0,19,0,9,9,2500,1200,0,19999999,63,0,0,88,0.2,0,0 +2011,5,23,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,23,19,78,98601,0,0,410,0,0,0,0,0,0,0,220,0,9,9,2500,1200,0,19999999,63,0,0,88,0.2,0,0 +2011,5,23,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,23,20,83,98601,0,0,423,0,0,0,0,0,0,0,163,0,10,10,2100,77777,9,999999999,70,0,0,88,0.2,0,0 +2011,5,23,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,20,78,98610,279,1304,394,100,113,76,10947,2497,8374,2594,80,2.1,5,5,1900,3000,9,999999999,69,0,0,88,0.2,0,0 +2011,5,23,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,19,65,98628,561,1332,403,300,367,146,33783,21040,16469,5776,80,2.1,5,5,2200,77777,9,999999999,63,0,0,88,0.2,0,0 +2011,5,23,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,18,52,98654,819,1332,395,554,678,137,65804,39133,16366,6576,170,0,0,0,2500,77777,9,999999999,56,0,0,88,0.2,0,0 +2011,5,23,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,18,49,98663,1037,1332,400,756,813,123,93585,44617,15315,6474,190,1.5,0,0,2800,77777,9,999999999,56,0,0,88,0.2,0,0 +2011,5,23,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,18,43,98680,1199,1332,411,908,772,213,110340,48120,26041,10689,230,2.1,0,0,2800,77777,9,999999999,56,0,0,88,0.2,0,0 +2011,5,23,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,17,38,98689,1295,1332,415,1000,777,244,121847,50339,29955,12133,280,4.1,0,0,3000,77777,9,999999999,51,0,0,88,0.2,0,0 +2011,5,23,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,18,39,98697,1317,1332,422,1019,778,250,124297,49732,30638,12393,270,4.1,0,0,3000,77777,9,999999999,56,0,0,88,0.2,0,0 +2011,5,23,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,18,37,98705,1265,1332,427,970,776,234,118133,49073,28615,11648,290,4.6,0,0,3000,77777,9,999999999,56,0,0,88,0.2,0,0 +2011,5,23,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,17,33,98714,1142,1332,431,856,769,197,103937,48090,24058,9932,300,5.1,0,0,3500,77777,9,999999999,50,0,0,88,0.2,0,0 +2011,5,23,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,16,31,98714,956,1332,430,683,772,129,83462,44766,15831,6601,290,5.1,0,0,3500,77777,9,999999999,46,0,0,88,0.2,0,0 +2011,5,23,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,17,33,98714,721,1332,431,465,612,134,54473,35719,15758,6111,280,6.2,0,0,3500,77777,9,999999999,50,0,0,88,0.2,0,0 +2011,5,23,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,16,31,98714,451,1332,430,233,331,121,26001,17270,13559,4515,280,6.2,0,0,3500,77777,9,999999999,46,0,0,88,0.2,0,0 +2011,5,23,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,16,32,98705,166,1332,425,45,25,42,4918,0,4590,1381,310,5.1,0,0,3500,77777,9,999999999,46,0,0,88,0.2,0,0 +2011,5,23,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,18,46,98672,0,783,406,0,0,0,0,0,0,0,260,3.1,0,0,3000,77777,9,999999999,56,0,0,88,0.2,0,0 +2011,5,23,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,18,46,98672,0,0,406,0,0,0,0,0,0,0,270,2.6,0,0,3000,77777,9,999999999,56,0,0,88,0.2,0,0 +2011,5,23,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,18,46,98672,0,0,406,0,0,0,0,0,0,0,280,2.6,0,0,3000,77777,9,999999999,56,0,0,88,0.2,0,0 +2011,5,23,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,18,46,98672,0,0,406,0,0,0,0,0,0,0,280,1.5,0,0,2500,77777,9,999999999,56,0,0,88,0.2,0,0 +2011,5,23,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,19,55,98654,0,0,396,0,0,0,0,0,0,0,250,1.5,0,0,2200,77777,9,999999999,62,0,0,88,0.2,0,0 +2011,5,24,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,19,55,98654,0,0,396,0,0,0,0,0,0,0,23,0,0,0,2500,77777,9,999999999,62,0,0,88,0.2,0,0 +2011,5,24,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,19,58,98646,0,0,391,0,0,0,0,0,0,0,260,1,0,0,1800,77777,9,999999999,62,0,0,88,0.2,0,0 +2011,5,24,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,19,58,98646,0,0,391,0,0,0,0,0,0,0,62,0,0,0,1500,77777,9,999999999,62,0,0,88,0.2,0,0 +2011,5,24,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,19,58,98646,0,0,391,0,0,0,0,0,0,0,280,0,0,0,1200,77777,9,999999999,62,0,0,88,0.2,0,0 +2011,5,24,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,20,70,98628,0,0,382,0,0,0,0,0,0,0,264,0,0,0,2000,77777,9,999999999,69,0,0,88,0.2,0,0 +2011,5,24,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,20,70,98628,0,0,382,0,0,0,0,0,0,0,20,0,0,0,2500,77777,9,999999999,69,0,0,88,0.2,0,0 +2011,5,24,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,20,66,98637,281,1312,387,108,155,75,11865,3398,8313,2587,277,0,0,0,2200,77777,9,999999999,69,0,0,88,0.2,0,0 +2011,5,24,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,20,62,98646,562,1331,392,323,462,128,36676,24282,14601,5258,270,1.5,0,0,2200,77777,9,999999999,69,0,0,88,0.2,0,0 +2011,5,24,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,21,55,98672,820,1331,409,552,671,139,65290,36543,16503,6646,240,2.1,0,0,2500,77777,9,999999999,76,0,0,88,0.2,0,0 +2011,5,24,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,19,44,98689,1037,1331,418,755,819,117,82802,86413,15869,3126,260,2.6,0,0,2800,77777,9,999999999,62,0,0,88,0.2,0,0 +2011,5,24,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,17,31,98722,1199,1331,437,910,772,215,110594,48994,26250,10759,250,3.1,0,0,3800,77777,9,999999999,50,0,0,88,0.2,0,0 +2011,5,24,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,15,27,98722,1295,1331,434,1003,851,176,125468,51510,22129,9155,260,3.6,0,0,4000,77777,9,999999999,41,0,0,88,0.2,0,0 +2011,5,24,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,13,23,98730,1317,1331,437,1028,854,183,128714,53363,23030,9491,290,3.6,0,0,4500,77777,9,999999999,34,0,0,88,0.2,0,0 +2011,5,24,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,12,20,98739,1265,1331,441,980,775,243,119471,53654,29796,12033,280,5.7,0,0,4200,77777,9,999999999,30,0,0,88,0.2,0,0 +2011,5,24,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,12,18,98755,1143,1331,453,864,830,151,107311,51520,18877,7891,280,6.7,0,0,4200,77777,9,999999999,30,0,0,88,0.2,0,0 +2011,5,24,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,10,16,98755,957,1331,450,691,761,143,84033,48807,17501,7233,300,6.2,0,0,4200,77777,9,999999999,25,0,0,88,0.2,0,0 +2011,5,24,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,11,17,98755,722,1331,451,471,611,140,55206,39087,16433,6323,300,5.1,0,0,4500,77777,9,999999999,27,0,0,88,0.2,0,0 +2011,5,24,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,13,20,98747,453,1331,448,236,337,121,26349,18423,13587,4524,310,5.1,0,0,4500,77777,9,999999999,34,0,0,88,0.2,0,0 +2011,5,24,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,15,24,98739,168,1331,446,46,27,42,5040,0,4677,1406,300,4.1,0,0,4000,77777,9,999999999,41,0,0,88,0.2,0,0 +2011,5,24,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,16,27,98730,0,796,441,0,0,0,0,0,0,0,320,2.1,0,0,3500,77777,9,999999999,46,0,0,88,0.2,0,0 +2011,5,24,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,16,31,98714,0,0,430,0,0,0,0,0,0,0,260,2.6,0,0,2500,77777,9,999999999,46,0,0,88,0.2,0,0 +2011,5,24,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,17,34,98705,0,0,426,0,0,0,0,0,0,0,250,2.1,0,0,2500,77777,9,999999999,51,0,0,88,0.2,0,0 +2011,5,24,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,17,34,98705,0,0,426,0,0,0,0,0,0,0,240,1.5,0,0,2500,77777,9,999999999,51,0,0,88,0.2,0,0 +2011,5,24,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,18,39,98697,0,0,422,0,0,0,0,0,0,0,230,2.1,0,0,2500,77777,9,999999999,56,0,0,88,0.2,0,0 +2011,5,25,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,18,41,98689,0,0,416,0,0,0,0,0,0,0,240,2.1,0,0,2200,77777,9,999999999,56,0,0,88,0.2,0,0 +2011,5,25,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,19,44,98689,0,0,418,0,0,0,0,0,0,0,230,2.6,0,0,2800,77777,9,999999999,62,0,0,88,0.2,0,0 +2011,5,25,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,19,46,98680,0,0,412,0,0,0,0,0,0,0,230,1.5,0,0,2800,77777,9,999999999,62,0,0,88,0.2,0,0 +2011,5,25,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,18,43,98680,0,0,411,0,0,0,0,0,0,0,260,2.6,0,0,2800,77777,9,999999999,56,0,0,88,0.2,0,0 +2011,5,25,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,18,43,98680,0,0,411,0,0,0,0,0,0,0,230,2.1,0,0,3000,77777,9,999999999,56,0,0,88,0.2,0,0 +2011,5,25,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,18,43,98680,0,0,411,0,0,0,0,0,0,0,230,3.1,0,0,3000,77777,9,999999999,56,0,0,88,0.2,0,0 +2011,5,25,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,18,46,98672,282,1320,406,109,157,76,12004,3850,8369,2601,230,3.1,0,0,3000,77777,9,999999999,56,0,0,88,0.2,0,0 +2011,5,25,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,18,43,98680,563,1331,411,325,467,127,36969,25518,14563,5243,260,4.1,0,0,3000,77777,9,999999999,56,0,0,88,0.2,0,0 +2011,5,25,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,18,39,98697,820,1331,422,555,677,138,65918,39129,16419,6600,250,4.6,0,0,3000,77777,9,999999999,56,0,0,88,0.2,0,0 +2011,5,25,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,18,35,98714,1037,1331,433,757,812,124,93661,44599,15356,6492,250,6.2,0,0,3000,77777,9,999999999,56,0,0,88,0.2,0,0 +2011,5,25,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,16,27,98730,1199,1331,441,911,848,148,98067,88644,19111,5849,270,4.1,0,0,2800,77777,9,999999999,46,0,0,88,0.2,0,0 +2011,5,25,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,17,28,98739,1295,1331,448,1000,777,245,121902,50308,29986,12144,280,4.1,0,0,2800,77777,9,999999999,50,0,0,88,0.2,0,0 +2011,5,25,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,16,25,98747,1317,1331,453,1023,855,177,128230,50882,22240,9198,270,5.1,0,0,2800,77777,9,999999999,45,0,0,88,0.2,0,0 +2011,5,25,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,16,23,98755,1266,1331,459,974,775,237,118696,50770,29056,11793,290,5.1,0,0,3000,77777,9,999999999,45,0,0,88,0.2,0,0 +2011,5,25,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,16,23,98755,1143,1331,478,848,788,171,104135,47955,21090,8785,280,5.7,3,3,3000,77777,9,999999999,45,0,0,88,0.2,0,0 +2011,5,25,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,18,27,98755,958,1331,481,674,753,132,82115,42447,16107,6724,260,4.6,3,3,3500,77777,9,999999999,55,0,0,88,0.2,0,0 +2011,5,25,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,17,25,98755,723,1331,480,462,593,139,53917,35088,16327,6315,250,5.1,3,3,3500,77777,9,999999999,50,0,0,88,0.2,0,0 +2011,5,25,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,17,25,98755,455,1331,487,219,298,117,24503,15025,13185,4442,260,5.7,5,5,4000,77777,9,999999999,50,0,0,88,0.2,0,0 +2011,5,25,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,16,25,98747,170,1331,480,43,11,42,4794,0,4659,1409,240,4.1,5,5,4000,77777,9,999999999,45,0,0,88,0.2,0,0 +2011,5,25,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,16,27,98730,0,808,460,0,0,0,0,0,0,0,280,3.1,3,3,3500,77777,9,999999999,46,0,0,88,0.2,0,0 +2011,5,25,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,17,31,98722,0,0,463,0,0,0,0,0,0,0,270,2.6,5,5,3500,77777,9,999999999,50,0,0,88,0.2,0,0 +2011,5,25,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,17,31,98722,0,0,463,0,0,0,0,0,0,0,290,2.1,5,5,3000,77777,9,999999999,50,0,0,88,0.2,0,0 +2011,5,25,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,22,53,98689,0,0,447,0,0,0,0,0,0,0,40,10.3,5,5,2100,77777,0,99999999,84,0,0,88,0.2,0,0 +2011,5,25,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,19,52,98663,0,0,425,0,0,0,0,0,0,0,90,5.1,5,5,2500,77777,0,99999999,62,0,0,88,0.2,0,0 +2011,5,26,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,19,55,98654,0,0,420,0,0,0,0,0,0,0,90,5.7,5,5,2500,77777,0,99999999,62,0,0,88,0.2,0,0 +2011,5,26,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,17,48,98654,0,0,417,0,0,0,0,0,0,0,80,3.1,5,5,2500,77777,0,99999999,51,0,0,88,0.2,0,0 +2011,5,26,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,17,48,98654,0,0,417,0,0,0,0,0,0,0,350,4.1,5,5,2800,77777,0,99999999,51,0,0,88,0.2,0,0 +2011,5,26,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,17,48,98654,0,0,417,0,0,0,0,0,0,0,210,2.1,5,5,3500,77777,0,99999999,51,0,0,88,0.2,0,0 +2011,5,26,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,17,48,98654,0,0,411,0,0,0,0,0,0,0,220,2.6,3,3,3500,77777,0,99999999,51,0,0,88,0.2,0,0 +2011,5,26,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,17,51,98646,0,0,405,0,0,0,0,0,0,0,70,1.5,3,3,3500,77777,9,999999999,51,0,0,88,0.2,0,0 +2011,5,26,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,17,51,98646,283,1328,405,108,150,76,11944,3897,8447,2622,70,2.6,3,3,3500,77777,9,999999999,51,0,0,88,0.2,0,0 +2011,5,26,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,18,49,98663,563,1331,400,325,466,128,37023,25528,14605,5259,110,3.1,0,0,3500,77777,9,999999999,56,0,0,88,0.2,0,0 +2011,5,26,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,18,43,98680,821,1331,411,555,676,138,65941,39111,16462,6617,120,3.1,0,0,3500,77777,9,999999999,56,0,0,88,0.2,0,0 +2011,5,26,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,18,39,98697,1038,1331,422,757,811,124,93648,44582,15412,6515,150,3.1,0,0,3500,77777,9,999999999,56,0,0,88,0.2,0,0 +2011,5,26,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,18,35,98714,1199,1331,433,908,771,213,110405,48059,26053,10694,270,2.1,0,0,3500,77777,9,999999999,56,0,0,88,0.2,0,0 +2011,5,26,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,19,35,98722,1295,1331,459,984,852,155,106876,90113,19574,10805,310,3.1,3,3,3500,77777,9,999999999,62,0,0,88,0.2,0,0 +2011,5,26,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,19,33,98730,1318,1331,465,1005,804,210,124105,47660,26011,10683,260,2.1,3,3,3500,77777,9,999999999,61,0,0,88,0.2,0,0 +2011,5,26,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,19,31,98739,1266,1331,478,903,618,315,107342,42897,37694,14800,350,2.1,5,5,4000,77777,9,999999999,61,0,0,88,0.2,0,0 +2011,5,26,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,34.5,20,43,98701,1144,1331,435,853,722,233,102024,45329,27970,11400,269,3.9,1,1,3250,77777,9,999999999,68,0,0,88,0.2,0,0 +2011,5,26,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,21,59,98663,959,1331,453,351,88,288,40128,6249,33118,12623,240,5.7,9,9,2500,1200,0,99999999,76,0,0,88,0.2,0,0 +2011,5,26,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,20,66,98637,725,1331,447,147,0,147,14839,0,14974,6597,230,7.7,10,10,2500,1200,0,19999999,69,0,0,88,0.2,0,0 +2011,5,26,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,16,40,98672,456,1331,465,75,0,75,7404,0,7464,3138,220,7.7,10,10,2500,1200,0,19999999,46,0,0,88,0.2,0,0 +2011,5,26,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,12,25,98705,173,1331,470,25,0,25,2401,0,2418,937,210,4.1,9,9,3000,1200,0,19999999,31,0,0,88,0.2,0,0 +2011,5,26,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,14,36,98672,0,820,449,0,0,0,0,0,0,0,170,6.2,9,9,3000,1200,0,19999999,38,0,0,88,0.2,0,0 +2011,5,26,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,14,38,98663,0,0,443,0,0,0,0,0,0,0,150,5.1,9,9,3500,1200,0,19999999,38,0,0,88,0.2,0,0 +2011,5,26,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,13,31,98680,0,0,454,0,0,0,0,0,0,0,220,4.1,9,9,3500,1200,0,19999999,34,0,0,88,0.2,0,0 +2011,5,26,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,14,36,98672,0,0,449,0,0,0,0,0,0,0,189,0,9,9,3500,1200,0,19999999,38,0,0,88,0.2,0,0 +2011,5,26,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,15,38,98672,0,0,451,0,0,0,0,0,0,0,40,2.1,9,9,3500,1200,0,19999999,42,0,0,88,0.2,0,0 +2011,5,27,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,17,48,98654,0,0,442,0,0,0,0,0,0,0,80,1.5,9,9,3500,1200,0,19999999,51,0,0,88,0.2,0,0 +2011,5,27,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,18,55,98646,0,0,413,0,0,0,0,0,0,0,130,3.1,5,5,3500,77777,0,19999999,56,0,0,88,0.2,0,0 +2011,5,27,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,18,58,98637,0,0,407,0,0,0,0,0,0,0,90,2.6,5,5,3500,77777,0,19999999,57,0,0,88,0.2,0,0 +2011,5,27,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,18,58,98637,0,0,407,0,0,0,0,0,0,0,120,3.6,5,5,3500,77777,0,19999999,57,0,0,88,0.2,0,0 +2011,5,27,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,17,51,98646,0,0,436,0,0,0,0,0,0,0,330,3.6,9,9,3500,1200,0,19999999,51,0,0,88,0.2,0,0 +2011,5,27,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,18,58,98637,0,0,432,0,0,0,0,0,0,0,330,9.3,9,9,2200,1200,0,19999999,57,0,0,88,0.2,0,0 +2011,5,27,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,20,66,98637,285,1335,434,57,0,57,5528,0,5571,2123,300,4.1,9,9,2200,1200,0,19999999,69,0,0,88,0.2,0,0 +2011,5,27,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,20,74,98619,564,1330,423,168,29,155,18739,1676,17452,6062,140,4.1,9,9,2200,1200,0,19999999,69,0,0,88,0.2,0,0 +2011,5,27,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,21,74,98628,821,1330,430,285,28,268,32048,2026,30285,10969,250,2.6,9,9,2500,1200,0,19999999,76,0,0,88,0.2,0,0 +2011,5,27,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,20,58,98654,1038,1330,446,389,65,338,44518,4977,38945,14668,200,2.6,9,9,3000,1200,0,19999999,69,0,0,88,0.2,0,0 +2011,5,27,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,19,49,98672,1199,1330,456,468,68,407,54075,5433,47297,17476,20,6.2,9,9,3000,1200,0,19999999,62,0,0,88,0.2,0,0 +2011,5,27,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,20,52,98672,1295,1330,458,514,68,447,59604,5402,52299,19098,310,6.2,9,9,3000,1200,0,19999999,69,0,0,88,0.2,0,0 +2011,5,27,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,20,49,98680,1318,1330,464,525,89,436,61200,6927,51284,18911,70,5.1,9,9,3000,1200,0,19999999,69,0,0,88,0.2,0,0 +2011,5,27,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,20,46,98689,1266,1330,444,901,572,357,106042,41194,42260,16242,110,6.2,5,5,3000,1200,0,19999999,68,0,0,88,0.2,0,0 +2011,5,27,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,18,37,98705,1144,1330,453,797,636,250,95035,42468,29958,12084,340,2.6,5,5,3500,77777,0,19999999,56,0,0,88,0.2,0,0 +2011,5,27,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,17,34,98705,960,1330,444,677,744,139,82172,43334,16977,7065,340,2.6,3,3,3500,77777,0,19999999,51,0,0,88,0.2,0,0 +2011,5,27,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,15,29,98714,726,1330,447,465,607,134,54615,36482,15775,6127,300,2.1,3,3,3500,77777,0,19999999,41,0,0,88,0.2,0,0 +2011,5,27,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,15,30,98705,458,1330,442,236,320,125,26283,17415,14024,4664,310,2.6,3,3,3500,77777,0,19999999,41,0,0,88,0.2,0,0 +2011,5,27,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,16,34,98697,175,1330,444,45,13,44,4998,0,4820,1458,290,2.6,5,5,3500,77777,0,19999999,46,0,0,88,0.2,0,0 +2011,5,27,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,15,32,98697,0,832,443,0,0,0,0,0,0,0,300,3.1,5,5,3500,77777,0,19999999,41,0,0,88,0.2,0,0 +2011,5,27,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,17,43,98672,0,0,428,0,0,0,0,0,0,0,270,3.6,5,5,3200,77777,0,19999999,51,0,0,88,0.2,0,0 +2011,5,27,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,20,55,98663,0,0,427,0,0,0,0,0,0,0,280,3.6,5,5,2700,77777,0,19999999,69,0,0,88,0.2,0,0 +2011,5,27,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,16,40,98672,0,0,427,0,0,0,0,0,0,0,310,4.6,5,5,2800,77777,0,19999999,46,0,0,88,0.2,0,0 +2011,5,27,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,15,38,98672,0,0,426,0,0,0,0,0,0,0,300,1.5,5,5,3000,77777,0,19999999,42,0,0,88,0.2,0,0 +2011,5,28,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,17,46,98663,0,0,423,0,0,0,0,0,0,0,280,2.1,5,5,3500,77777,0,19999999,51,0,0,88,0.2,0,0 +2011,5,28,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,16,43,98663,0,0,421,0,0,0,0,0,0,0,330,1.5,5,5,3200,77777,0,19999999,46,0,0,88,0.2,0,0 +2011,5,28,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,16,43,98663,0,0,421,0,0,0,0,0,0,0,350,2.1,5,5,3200,77777,0,19999999,46,0,0,88,0.2,0,0 +2011,5,28,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,17,51,98646,0,0,412,0,0,0,0,0,0,0,116,0,5,5,3200,77777,0,19999999,51,0,0,88,0.2,0,0 +2011,5,28,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,18,55,98646,0,0,413,0,0,0,0,0,0,0,168,0,5,5,3000,77777,0,19999999,56,0,0,88,0.2,0,0 +2011,5,28,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,18,58,98637,3,13,401,1,0,1,49,0,50,21,230,4.1,3,3,3000,77777,9,999999999,57,0,0,88,0.2,0,0 +2011,5,28,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,18,58,98637,286,1330,401,109,150,77,12037,3820,8520,2649,240,2.1,3,3,3000,77777,9,999999999,57,0,0,88,0.2,0,0 +2011,5,28,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,17,46,98663,565,1330,399,327,467,128,37219,26096,14642,5273,220,2.1,0,0,3000,77777,9,999999999,51,0,0,88,0.2,0,0 +2011,5,28,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,16,38,98680,821,1330,408,557,675,140,66239,40558,16747,6714,270,1.5,0,0,4000,77777,9,999999999,46,0,0,88,0.2,0,0 +2011,5,28,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,14,30,98697,1038,1330,434,752,754,163,91456,47405,19910,8288,290,2.6,3,3,4000,77777,9,999999999,37,0,0,88,0.2,0,0 +2011,5,28,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,15,32,98697,1199,1330,436,901,812,168,111708,49420,20970,8722,230,2.6,3,3,4000,77777,9,999999999,41,0,0,88,0.2,0,0 +2011,5,28,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,15,30,98705,1295,1330,442,990,819,192,123080,50767,24002,9885,230,3.1,3,3,4000,77777,9,999999999,41,0,0,88,0.2,0,0 +2011,5,28,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,15,27,98722,1318,1330,453,1012,819,200,125769,51078,24949,10246,250,4.1,3,3,4000,77777,9,999999999,41,0,0,88,0.2,0,0 +2011,5,28,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,15,27,98722,1267,1330,453,964,820,183,119829,50385,22872,9453,260,4.1,3,3,4000,77777,9,999999999,41,0,0,88,0.2,0,0 +2011,5,28,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,16,27,98730,1145,1330,460,849,786,172,104280,47908,21252,8848,300,5.7,3,3,4500,77777,9,999999999,46,0,0,88,0.2,0,0 +2011,5,28,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,16,29,98722,961,1330,455,678,737,145,82216,44155,17689,7339,280,5.1,3,3,5000,77777,9,999999999,46,0,0,88,0.2,0,0 +2011,5,28,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,16,29,98722,728,1330,455,465,604,135,54588,35890,15912,6183,280,5.1,3,3,5000,77777,9,999999999,46,0,0,88,0.2,0,0 +2011,5,28,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,17,31,98722,460,1330,456,236,350,115,26493,17528,12972,4412,280,5.1,3,3,5000,77777,9,999999999,50,0,0,88,0.2,0,0 +2011,5,28,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,18,35,98714,177,1330,452,49,35,44,5389,0,4888,1482,270,5.1,3,3,4000,77777,9,999999999,56,0,0,88,0.2,0,0 +2011,5,28,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,16,32,98705,0,843,443,0,0,0,0,0,0,0,280,4.1,3,3,3500,77777,9,999999999,46,0,0,88,0.2,0,0 +2011,5,28,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,17,36,98697,0,0,439,0,0,0,0,0,0,0,270,2.1,3,3,3500,77777,9,999999999,51,0,0,88,0.2,0,0 +2011,5,28,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,34,17,36,98697,0,0,439,0,0,0,0,0,0,0,0,0,3,3,3200,77777,9,999999999,51,0,0,88,0.2,0,0 +2011,5,28,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,33,17,38,98689,0,0,433,0,0,0,0,0,0,0,67,0,3,3,3200,77777,9,999999999,51,0,0,88,0.2,0,0 +2011,5,28,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,18,43,98680,0,0,429,0,0,0,0,0,0,0,240,2.1,3,3,3200,77777,9,999999999,56,0,0,88,0.2,0,0 +2011,5,29,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,19,46,98680,0,0,430,0,0,0,0,0,0,0,250,1.5,3,3,3500,77777,9,999999999,62,0,0,88,0.2,0,0 +2011,5,29,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,20,52,98672,0,0,426,0,0,0,0,0,0,0,250,2.1,3,3,3500,77777,9,999999999,69,0,0,88,0.2,0,0 +2011,5,29,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,20,55,98663,0,0,420,0,0,0,0,0,0,0,230,1.5,3,3,3500,77777,9,999999999,69,0,0,88,0.2,0,0 +2011,5,29,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,20,58,98654,0,0,415,0,0,0,0,0,0,0,250,1.5,3,3,3500,77777,9,999999999,69,0,0,88,0.2,0,0 +2011,5,29,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,19,55,98654,0,0,413,0,0,0,0,0,0,0,240,1.5,3,3,3500,77777,9,999999999,62,0,0,88,0.2,0,0 +2011,5,29,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,19,55,98654,5,20,396,1,0,1,77,0,77,32,240,2.6,0,0,3500,77777,9,999999999,62,0,0,88,0.2,0,0 +2011,5,29,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,19,55,98654,287,1329,396,111,158,77,12220,3857,8518,2654,260,2.6,0,0,3500,77777,9,999999999,62,0,0,88,0.2,0,0 +2011,5,29,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,19,52,98663,565,1329,401,326,462,129,37040,24955,14753,5316,300,2.1,0,0,3500,77777,9,999999999,62,0,0,88,0.2,0,0 +2011,5,29,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,19,46,98680,822,1329,412,555,674,138,65853,38249,16442,6620,270,2.6,0,0,3500,77777,9,999999999,62,0,0,88,0.2,0,0 +2011,5,29,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,19,41,98697,1038,1329,423,755,816,119,82805,86001,16079,3161,260,2.1,0,0,3500,77777,9,999999999,62,0,0,88,0.2,0,0 +2011,5,29,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,17,33,98714,1199,1329,431,910,771,214,110621,48864,26215,10746,250,1.5,0,0,3500,77777,9,999999999,50,0,0,88,0.2,0,0 +2011,5,29,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,16,27,98730,1295,1329,441,1001,776,246,122144,51040,30165,12201,140,2.6,0,0,3500,77777,9,999999999,46,0,0,88,0.2,0,0 +2011,5,29,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,16,26,98739,1318,1329,466,1010,825,192,125863,50178,24057,9908,170,2.6,3,3,3600,77777,9,999999999,45,0,0,88,0.2,0,0 +2011,5,29,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,16,25,98747,1267,1329,472,963,826,175,119995,49478,21950,9098,270,2.1,3,3,4500,77777,9,999999999,45,0,0,88,0.2,0,0 +2011,5,29,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,15,23,98747,1146,1329,471,851,805,157,105327,48553,19506,8154,280,3.6,3,3,4500,77777,9,999999999,41,0,0,88,0.2,0,0 +2011,5,29,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,16,25,98747,962,1329,472,679,737,146,82323,44161,17722,7354,290,2.6,3,3,4500,77777,9,999999999,45,0,0,88,0.2,0,0 +2011,5,29,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,15,22,98755,729,1329,477,467,607,134,54889,36556,15847,6160,280,4.1,3,3,4500,77777,9,999999999,41,0,0,88,0.2,0,0 +2011,5,29,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,15,23,98747,462,1329,471,238,322,126,26574,17621,14150,4714,270,4.6,3,3,4500,77777,9,999999999,41,0,0,88,0.2,0,0 +2011,5,29,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,13,21,98739,179,1329,462,50,33,46,5538,0,5067,1524,300,3.1,3,3,4500,77777,9,999999999,34,0,0,88,0.2,0,0 +2011,5,29,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,13,23,98730,0,855,437,0,0,0,0,0,0,0,260,1.5,0,0,4500,77777,9,999999999,34,0,0,88,0.2,0,0 +2011,5,29,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,37,14,25,98722,0,0,452,0,0,0,0,0,0,0,92,0,3,3,3500,77777,9,999999999,37,0,0,88,0.2,0,0 +2011,5,29,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,32,16,38,98679,0,0,408,0,0,0,0,0,0,0,57,2.5,0,0,3500,77777,9,999999999,46,0,0,88,0.2,0,0 +2011,5,29,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,18,58,98637,0,0,432,0,0,0,0,0,0,0,50,5.1,9,9,3500,1200,9,999999999,57,0,0,88,0.2,0,0 +2011,5,29,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,18,61,98628,0,0,426,0,0,0,0,0,0,0,60,5.1,9,9,4000,1200,0,99999999,57,0,0,88,0.2,0,0 +2011,5,30,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,18,61,98628,0,0,402,0,0,0,0,0,0,0,130,4.1,5,5,4000,77777,0,99999999,57,0,0,88,0.2,0,0 +2011,5,30,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,17,54,98637,0,0,406,0,0,0,0,0,0,0,140,4.1,5,5,4000,77777,0,99999999,51,0,0,88,0.2,0,0 +2011,5,30,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,17,54,98637,0,0,430,0,0,0,0,0,0,0,150,4.1,9,9,4000,77777,0,99999999,51,0,0,88,0.2,0,0 +2011,5,30,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,18,58,98637,0,0,432,0,0,0,0,0,0,0,130,3.1,9,9,4000,3000,0,99999999,57,0,0,88,0.2,0,0 +2011,5,30,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,18,58,98637,0,0,432,0,0,0,0,0,0,0,120,3.1,9,9,4000,3000,0,99999999,57,0,0,88,0.2,0,0 +2011,5,30,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,18,58,98637,5,26,407,1,0,1,95,0,95,39,150,2.1,5,5,4500,3000,9,999999999,57,0,0,88,0.2,0,0 +2011,5,30,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,18,58,98637,287,1329,401,110,150,78,12131,3890,8585,2671,180,1.5,3,3,4500,77777,9,999999999,57,0,0,88,0.2,0,0 +2011,5,30,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,18,55,98646,566,1329,407,322,445,133,36603,24830,15155,5432,110,2.1,3,3,4500,77777,9,999999999,56,0,0,88,0.2,0,0 +2011,5,30,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,18,49,98663,822,1329,418,548,647,148,64811,38326,17602,7037,150,2.1,3,3,4500,77777,9,999999999,56,0,0,88,0.2,0,0 +2011,5,30,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,20,46,98689,1038,1329,437,744,775,139,91196,42125,17135,7227,170,4.1,3,3,4000,77777,9,999999999,68,0,0,88,0.2,0,0 +2011,5,30,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,20,44,98697,1199,1329,443,893,843,133,97962,89430,17363,5576,170,4.1,3,3,3200,77777,9,999999999,68,0,0,88,0.2,0,0 +2011,5,30,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,19,37,98714,1295,1329,453,984,850,155,106826,89875,19669,11010,160,2.1,3,3,3200,77777,9,999999999,62,0,0,88,0.2,0,0 +2011,5,30,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,19,35,98722,1318,1329,459,1005,849,164,126426,46955,20689,8602,150,2.6,3,3,3200,77777,9,999999999,62,0,0,88,0.2,0,0 +2011,5,30,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,18,31,98730,1267,1329,444,972,774,234,118425,48937,28679,11673,260,2.1,0,0,3200,77777,9,999999999,56,0,0,88,0.2,0,0 +2011,5,30,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,18,27,98755,1146,1329,462,858,767,197,104223,47119,24061,9942,60,4.1,0,0,3500,77777,9,999999999,55,0,0,88,0.2,0,0 +2011,5,30,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,18,27,98755,963,1329,489,639,606,200,75493,38998,23691,9586,70,1.5,5,5,3500,77777,9,999999999,55,0,0,88,0.2,0,0 +2011,5,30,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,18,27,98755,730,1329,489,439,508,160,50796,31202,18592,7097,80,3.6,5,5,3500,77777,9,999999999,55,0,0,88,0.2,0,0 +2011,5,30,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,18,28,98747,464,1329,483,225,286,125,25035,14760,13975,4688,60,5.1,5,5,3500,77777,9,999999999,55,0,0,88,0.2,0,0 +2011,5,30,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,19,31,98739,182,1329,478,48,21,45,5275,0,4974,1515,80,4.1,5,5,3500,77777,9,999999999,61,0,0,88,0.2,0,0 +2011,5,30,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,21,40,98722,0,866,469,0,0,0,0,0,0,0,80,4.1,5,5,3500,77777,9,999999999,75,0,0,88,0.2,0,0 +2011,5,30,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,22,47,98705,0,0,451,0,0,0,0,0,0,0,80,5.7,3,3,3500,77777,9,999999999,83,0,0,88,0.2,0,0 +2011,5,30,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,23,56,98689,0,0,448,0,0,0,0,0,0,0,90,6.2,5,5,3000,77777,9,999999999,92,0,0,88,0.2,0,0 +2011,5,30,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,23,59,98680,0,0,442,0,0,0,0,0,0,0,100,5.7,5,5,3000,77777,9,999999999,93,0,0,88,0.2,0,0 +2011,5,30,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,22,56,98680,0,0,441,0,0,0,0,0,0,0,120,4.1,5,5,3000,77777,9,999999999,84,0,0,88,0.2,0,0 +2011,5,31,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,22,59,98672,0,0,435,0,0,0,0,0,0,0,100,4.1,5,5,3000,77777,0,99999999,84,0,0,88,0.2,0,0 +2011,5,31,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,22,62,98663,0,0,429,0,0,0,0,0,0,0,110,3.6,5,5,3000,77777,0,99999999,84,0,0,88,0.2,0,0 +2011,5,31,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,23,66,98663,0,0,431,0,0,0,0,0,0,0,130,4.6,5,5,3000,77777,0,99999999,93,0,0,88,0.2,0,0 +2011,5,31,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,22,66,98654,0,0,424,0,0,0,0,0,0,0,110,4.1,5,5,3000,77777,0,99999999,84,0,0,88,0.2,0,0 +2011,5,31,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,22,70,98646,0,0,418,0,0,0,0,0,0,0,120,5.1,5,5,3000,77777,0,99999999,84,0,0,88,0.2,0,0 +2011,5,31,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,21,66,98646,6,32,410,1,0,1,122,0,123,51,130,4.1,3,3,3000,77777,9,999999999,76,0,0,88,0.2,0,0 +2011,5,31,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,21,66,98646,288,1328,410,110,148,78,12078,3342,8595,2683,120,5.1,3,3,3000,77777,9,999999999,76,0,0,88,0.2,0,0 +2011,5,31,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,21,62,98654,566,1328,399,325,456,131,36855,23672,14890,5371,120,4.1,0,0,3000,77777,9,999999999,76,0,0,88,0.2,0,0 +2011,5,31,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,20,52,98672,822,1328,408,554,669,140,65621,37348,16624,6694,130,5.1,0,0,3000,77777,9,999999999,69,0,0,88,0.2,0,0 +2011,5,31,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,21,49,98689,1038,1328,420,753,805,124,92933,41404,15345,6506,130,5.1,0,0,3000,77777,9,999999999,76,0,0,88,0.2,0,0 +2011,5,31,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,20,42,98705,1199,1328,430,905,770,210,109934,45995,25625,10552,140,5.1,0,0,3000,77777,9,999999999,68,0,0,88,0.2,0,0 +2011,5,31,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,20,37,98722,1294,1328,441,995,823,192,123162,46860,23932,9896,140,4.1,0,0,3000,77777,9,999999999,68,0,0,88,0.2,0,0 +2011,5,31,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,20,35,98730,1318,1328,474,946,625,326,112925,42626,39151,15343,170,4.1,5,5,3000,77777,9,999999999,68,0,0,88,0.2,0,0 +2011,5,31,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,21,34,98747,1267,1328,487,901,663,268,108284,41631,32418,13046,190,4.1,5,5,3000,77777,9,999999999,75,0,0,88,0.2,0,0 +2011,5,31,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,19,30,98747,1147,1328,484,798,666,223,95916,41918,26925,11014,250,4.1,5,5,3000,77777,9,999999999,61,0,0,88,0.2,0,0 +2011,5,31,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,18,27,98755,964,1328,489,640,547,243,74433,37947,28440,11196,270,4.1,5,5,3000,77777,9,999999999,55,0,0,88,0.2,0,0 +2011,5,31,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,17,25,98755,732,1328,516,245,53,216,27652,3745,24499,8844,290,4.1,9,9,2200,3000,9,999999999,50,0,0,88,0.2,0,0 +2011,5,31,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,16,23,98755,466,1328,486,226,231,145,24983,13568,16106,5187,300,5.1,5,5,2200,77777,9,999999999,45,0,0,88,0.2,0,0 +2011,5,31,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34.2,22,49,98699,184,1328,475,49,22,46,5349,0,5032,1536,72,6.7,5,5,2200,77777,9,999999999,83,0,0,88,0.2,0,0 +2011,5,31,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32.5,22.2,55,98685,0,878,452,0,0,0,0,0,0,0,82,6.9,5,5,2500,77777,9,999999999,85,0,0,88,0.2,0,0 +2011,5,31,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31.8,22,56,98678,0,0,447,0,0,0,0,0,0,0,87,6.8,5,5,2500,77777,9,999999999,84,0,0,88,0.2,0,0 +2011,5,31,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31.8,20,50,98678,0,0,442,0,0,0,0,0,0,0,139,4.9,5,5,2500,77777,9,999999999,69,0,0,88,0.2,0,0 +2011,5,31,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31.8,17.2,42,98678,0,0,435,0,0,0,0,0,0,0,174,3.6,5,5,2500,77777,9,999999999,52,0,0,88,0.2,0,0 +2011,5,31,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,14.5,35,98680,0,0,434,0,0,0,0,0,0,0,224,2.6,5,5,3500,77777,9,999999999,40,0,0,88,0.2,0,0 +1998,6,1,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,32.2,12,29,98682,0,0,411,0,0,0,0,0,0,0,205,0.9,0,0,1700,77777,9,999999999,31,0,0,88,0.2,0,0 +1998,6,1,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,11.2,28,98680,0,0,403,0,0,0,0,0,0,0,198,1.7,0,0,2500,77777,9,999999999,28,0,0,88,0.2,0,0 +1998,6,1,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31.8,11.2,28,98678,0,0,402,0,0,0,0,0,0,0,216,1.9,0,0,2700,77777,9,999999999,28,0,0,88,0.2,0,0 +1998,6,1,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,32,12,29,98680,0,0,402,0,0,0,0,0,0,0,216,2.3,0,0,2700,77777,9,999999999,31,0,0,88,0.2,0,0 +1998,6,1,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32.5,12.5,30,98685,0,0,402,0,0,0,0,0,0,0,290,3.6,0,0,2700,77777,9,999999999,32,0,0,88,0.2,0,0 +1998,6,1,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33.5,13,29,98693,7,37,398,2,0,2,146,0,147,60,310,4.2,0,0,2500,77777,9,999999999,34,0,0,88,0.2,0,0 +1998,6,1,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,14,32,98689,289,1328,411,113,152,80,12467,4651,8852,2730,300,3.6,0,0,2500,77777,9,999999999,38,0,0,88,0.2,0,0 +1998,6,1,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,13,28,98697,567,1328,415,330,432,145,37327,27096,16521,5804,320,5.1,0,0,2500,77777,9,999999999,34,0,0,88,0.2,0,0 +1998,6,1,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,13,25,98714,822,1328,426,560,670,145,66564,42368,17360,6928,330,5.7,0,0,3000,77777,9,999999999,34,0,0,88,0.2,0,0 +1998,6,1,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,13,23,98730,1038,1328,437,762,782,152,93341,48737,18646,7790,340,4.1,0,0,3000,77777,9,999999999,34,0,0,88,0.2,0,0 +1998,6,1,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,13,21,98739,1199,1328,443,915,836,160,114043,51542,20064,8353,320,5.1,0,0,3500,77777,9,999999999,34,0,0,88,0.2,0,0 +1998,6,1,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,13,19,98755,1294,1328,454,1006,850,177,125960,52885,22333,9223,330,5.7,0,0,4000,77777,9,999999999,34,0,0,88,0.2,0,0 +1998,6,1,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,43,13,17,98771,1318,1328,466,1028,850,184,128784,53214,23211,9561,300,5.1,0,0,4500,77777,9,999999999,33,0,0,88,0.2,0,0 +1998,6,1,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,44,13,16,98779,1268,1328,472,981,849,170,122792,52512,21355,8846,300,7.7,0,0,5000,77777,9,999999999,33,0,0,88,0.2,0,0 +1998,6,1,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,44,14,18,98779,1147,1328,473,865,824,153,107392,50016,19051,7967,300,7.7,0,0,6000,77777,9,999999999,37,0,0,88,0.2,0,0 +1998,6,1,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,44,13,16,98779,965,1328,472,694,758,143,84424,47013,17499,7259,270,7.2,0,0,6000,77777,9,999999999,33,0,0,88,0.2,0,0 +1998,6,1,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,43,14,18,98771,733,1328,488,471,548,169,54477,36386,19583,7405,270,4.1,3,3,6000,77777,9,999999999,37,0,0,88,0.2,0,0 +1998,6,1,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,43,14,18,98771,467,1328,495,229,268,134,25428,15436,15019,4948,280,3.6,5,5,5000,77777,9,999999999,37,0,0,88,0.2,0,0 +1998,6,1,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,14,21,98755,186,1328,483,50,22,47,5527,16,5204,1574,350,2.1,5,5,5000,77777,9,999999999,37,0,0,88,0.2,0,0 +1998,6,1,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,39,14,23,98739,0,889,444,0,0,0,0,0,0,0,55,0,0,0,5000,77777,9,999999999,37,0,0,88,0.2,0,0 +1998,6,1,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,38,14,24,98730,0,0,439,0,0,0,0,0,0,0,284,0,0,0,4000,77777,9,999999999,37,0,0,88,0.2,0,0 +1998,6,1,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,14,25,98722,0,0,433,0,0,0,0,0,0,0,350,1.5,0,0,4000,77777,9,999999999,37,0,0,88,0.2,0,0 +1998,6,1,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,15,29,98714,0,0,429,0,0,0,0,0,0,0,290,2.1,0,0,4000,77777,9,999999999,41,0,0,88,0.2,0,0 +1998,6,1,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,15,30,98705,0,0,423,0,0,0,0,0,0,0,290,2.1,0,0,4000,77777,9,999999999,41,0,0,88,0.2,0,0 +1998,6,2,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,15,32,98697,0,0,418,0,0,0,0,0,0,0,280,1.5,0,0,4000,77777,9,999999999,41,0,0,88,0.2,0,0 +1998,6,2,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,15,34,98689,0,0,412,0,0,0,0,0,0,0,280,2.1,0,0,4500,77777,9,999999999,42,0,0,88,0.2,0,0 +1998,6,2,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,15,36,98680,0,0,407,0,0,0,0,0,0,0,250,2.6,0,0,3500,77777,9,999999999,42,0,0,88,0.2,0,0 +1998,6,2,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,16,43,98663,0,0,398,0,0,0,0,0,0,0,230,1,0,0,2200,77777,9,999999999,46,0,0,88,0.2,0,0 +1998,6,2,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,16,43,98663,0,0,398,0,0,0,0,0,0,0,310,0,0,0,1800,77777,9,999999999,46,0,0,88,0.2,0,0 +1998,6,2,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,16,43,98663,8,42,415,2,0,2,162,0,163,66,230,1.5,3,3,2000,77777,9,999999999,46,0,0,88,0.2,0,0 +1998,6,2,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,31.5,16.5,41,98676,289,1328,414,113,150,80,12419,4279,8863,2739,308,2,1,1,2250,77777,9,999999999,48,0,0,88,0.2,0,0 +1998,6,2,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,17,38,98689,567,1328,415,328,465,129,37337,26076,14775,5323,270,2.6,0,0,2500,77777,9,999999999,51,0,0,88,0.2,0,0 +1998,6,2,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,17,34,98705,822,1328,426,557,672,141,66110,39748,16767,6732,290,3.1,0,0,3000,77777,9,999999999,51,0,0,88,0.2,0,0 +1998,6,2,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,16,26,98739,1038,1328,447,759,793,138,93322,46392,17108,7193,300,4.6,0,0,4000,77777,9,999999999,45,0,0,88,0.2,0,0 +1998,6,2,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,15,23,98747,1199,1328,451,912,837,156,113728,49966,19585,8172,290,5.1,0,0,4500,77777,9,999999999,41,0,0,88,0.2,0,0 +1998,6,2,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,42,13,18,98763,1294,1328,460,1006,849,178,125941,52865,22346,9229,290,7.2,0,0,5000,77777,9,999999999,34,0,0,88,0.2,0,0 +1998,6,2,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,42,14,19,98763,1318,1328,462,1027,844,189,128271,52496,23742,9773,310,4.6,0,0,5000,77777,9,999999999,37,0,0,88,0.2,0,0 +1998,6,2,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,43,13,17,98771,1268,1328,466,981,849,170,122802,52494,21394,8861,290,5.7,0,0,6000,77777,9,999999999,33,0,0,88,0.2,0,0 +1998,6,2,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,43,13,17,98771,1148,1328,486,856,775,185,104794,50114,22802,9430,300,5.1,3,3,6000,77777,9,999999999,33,0,0,88,0.2,0,0 +1998,6,2,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,43,11,15,98771,966,1328,483,688,698,180,82358,47265,21629,8813,300,5.1,3,3,6000,77777,9,999999999,27,0,0,88,0.2,0,0 +1998,6,2,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,43,11,15,98771,734,1328,490,447,497,173,51721,34314,20046,7545,310,5.1,5,5,6000,77777,9,999999999,27,0,0,88,0.2,0,0 +1998,6,2,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,42,11,16,98763,469,1328,477,245,332,127,27409,19314,14338,4786,320,3.6,3,3,6000,6000,9,999999999,27,0,0,88,0.2,0,0 +1998,6,2,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,38,14,24,98730,188,1328,439,55,43,49,6031,89,5383,1620,240,10.1,0,0,3175,6000,9,999999999,37,0,0,88,0.2,0,0 +1998,6,2,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,34,17,36,98697,0,899,420,0,0,0,0,0,0,0,280,16.5,0,0,350,15,9,999999999,51,0,0,88,0.2,0,0 +1998,6,2,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,17,38,98689,0,0,466,0,0,0,0,0,0,0,270,10.3,9,9,2000,3000,9,999999999,51,0,0,88,0.2,0,0 +1998,6,2,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,15,32,98697,0,0,469,0,0,0,0,0,0,0,280,6.2,9,9,2000,3000,9,999999999,41,0,0,88,0.2,0,0 +1998,6,2,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,14,28,98705,0,0,473,0,0,0,0,0,0,0,210,4.1,9,9,2000,3000,9,999999999,37,0,0,88,0.2,0,0 +1998,6,2,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,15,34,98689,0,0,463,0,0,0,0,0,0,0,270,6.2,9,9,2000,3000,9,999999999,42,0,0,88,0.2,0,0 +1998,6,3,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,16,38,98680,0,0,458,0,0,0,0,0,0,0,290,5.1,9,9,2500,3000,9,999999999,46,0,0,88,0.2,0,0 +1998,6,3,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,17,46,98663,0,0,423,0,0,0,0,0,0,0,300,5.1,5,5,2500,77777,9,999999999,51,0,0,88,0.2,0,0 +1998,6,3,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,17,46,98663,0,0,423,0,0,0,0,0,0,0,280,6.7,5,5,2500,77777,9,999999999,51,0,0,88,0.2,0,0 +1998,6,3,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,18,49,98663,0,0,424,0,0,0,0,0,0,0,310,2.6,5,5,2500,77777,9,999999999,56,0,0,88,0.2,0,0 +1998,6,3,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,17,46,98663,0,0,423,0,0,0,0,0,0,0,321,0,5,5,2500,77777,9,999999999,51,0,0,88,0.2,0,0 +1998,6,3,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,17,43,98672,9,47,428,2,0,2,167,0,168,68,327,0,5,5,2500,77777,9,999999999,51,0,0,88,0.2,0,0 +1998,6,3,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,18,46,98672,290,1327,430,105,117,79,11548,3141,8770,2723,350,3.1,5,5,2500,77777,9,999999999,56,0,0,88,0.2,0,0 +1998,6,3,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,18,43,98680,567,1327,435,304,364,149,34264,21497,16805,5902,340,2.6,5,5,2500,77777,9,999999999,56,0,0,88,0.2,0,0 +1998,6,3,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,18,41,98689,822,1327,434,548,605,173,64024,37947,20320,7990,350,4.6,3,3,2500,77777,9,999999999,56,0,0,88,0.2,0,0 +1998,6,3,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,17,34,98705,1037,1327,426,757,799,133,93357,45439,16409,6917,320,3.1,0,0,3500,77777,9,999999999,51,0,0,88,0.2,0,0 +1998,6,3,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,16,29,98722,1198,1327,436,910,843,149,113828,49000,18703,7824,320,5.1,0,0,3500,77777,9,999999999,46,0,0,88,0.2,0,0 +1998,6,3,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,16,27,98730,1294,1327,441,1001,851,171,125426,50377,21508,8915,290,5.7,0,0,4500,77777,9,999999999,46,0,0,88,0.2,0,0 +1998,6,3,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,16,26,98739,1318,1327,447,1023,851,178,128229,50717,22464,9285,270,3.6,0,0,6000,77777,9,999999999,45,0,0,88,0.2,0,0 +1998,6,3,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,15,23,98747,1268,1327,451,978,846,170,122297,50938,21343,8851,280,3.1,0,0,8000,77777,9,999999999,41,0,0,88,0.2,0,0 +1998,6,3,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,14,21,98755,1148,1327,456,866,823,153,107481,49985,19127,7997,310,6.2,0,0,8000,77777,9,999999999,37,0,0,88,0.2,0,0 +1998,6,3,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,14,21,98755,967,1327,456,694,757,143,84446,46330,17468,7254,320,4.6,0,0,8000,77777,9,999999999,37,0,0,88,0.2,0,0 +1998,6,3,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,14,21,98755,736,1327,456,479,617,138,56338,37958,16234,6311,300,6.2,0,0,8000,77777,9,999999999,37,0,0,88,0.2,0,0 +1998,6,3,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,14,22,98747,471,1327,450,248,341,127,27739,19112,14247,4779,280,6.2,0,0,6000,77777,9,999999999,37,0,0,88,0.2,0,0 +1998,6,3,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,14,23,98739,190,1327,444,56,44,49,6133,125,5455,1642,280,6.2,0,0,6000,77777,9,999999999,37,0,0,88,0.2,0,0 +1998,6,3,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,15,26,98730,0,910,440,0,0,0,0,0,0,0,300,2.6,0,0,5000,77777,9,999999999,41,0,0,88,0.2,0,0 +1998,6,3,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,15,29,98714,0,0,429,0,0,0,0,0,0,0,280,3.1,0,0,4000,77777,9,999999999,41,0,0,88,0.2,0,0 +1998,6,3,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,15,30,98705,0,0,423,0,0,0,0,0,0,0,280,2.1,0,0,4000,77777,9,999999999,41,0,0,88,0.2,0,0 +1998,6,3,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,16,32,98705,0,0,425,0,0,0,0,0,0,0,300,1.5,0,0,3500,77777,9,999999999,46,0,0,88,0.2,0,0 +1998,6,3,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,34,17,36,98697,0,0,420,0,0,0,0,0,0,0,217,0,0,0,2500,77777,9,999999999,51,0,0,88,0.2,0,0 +1998,6,4,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,33,18,41,98689,0,0,416,0,0,0,0,0,0,0,13,0,0,0,2500,77777,9,999999999,56,0,0,88,0.2,0,0 +1998,6,4,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,18,46,98672,0,0,406,0,0,0,0,0,0,0,196,0,0,0,2800,77777,9,999999999,56,0,0,88,0.2,0,0 +1998,6,4,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,17,46,98663,0,0,399,0,0,0,0,0,0,0,136,0,0,0,2800,77777,9,999999999,51,0,0,88,0.2,0,0 +1998,6,4,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,17,46,98663,0,0,399,0,0,0,0,0,0,0,253,0,0,0,2800,77777,9,999999999,51,0,0,88,0.2,0,0 +1998,6,4,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,18,52,98654,0,0,395,0,0,0,0,0,0,0,329,0,0,0,2800,77777,9,999999999,56,0,0,88,0.2,0,0 +1998,6,4,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,18,52,98654,10,50,395,2,0,2,194,0,195,79,168,0,0,0,2800,77777,9,999999999,56,0,0,88,0.2,0,0 +1998,6,4,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,18,46,98672,290,1327,406,113,158,78,12435,4183,8662,2701,240,1.5,0,0,2800,77777,9,999999999,56,0,0,88,0.2,0,0 +1998,6,4,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,18,39,98697,567,1327,422,327,460,130,37208,25461,14867,5356,270,2.6,0,0,4000,77777,9,999999999,56,0,0,88,0.2,0,0 +1998,6,4,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,18,37,98705,822,1327,427,555,670,140,65906,38928,16712,6717,240,3.1,0,0,4500,77777,9,999999999,56,0,0,88,0.2,0,0 +1998,6,4,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,18,31,98730,1037,1327,444,756,805,126,93433,44428,15688,6629,230,3.1,0,0,5000,77777,9,999999999,56,0,0,88,0.2,0,0 +1998,6,4,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,17,28,98739,1198,1327,448,909,769,214,110522,48724,26154,10723,260,4.1,0,0,6000,77777,9,999999999,50,0,0,88,0.2,0,0 +1998,6,4,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,16,25,98747,1294,1327,453,1001,851,171,125411,50362,21513,8917,270,4.1,0,0,6000,77777,9,999999999,45,0,0,88,0.2,0,0 +1998,6,4,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,15,22,98755,1318,1327,457,1025,845,185,128177,51624,23278,9598,300,4.1,0,0,6000,77777,9,999999999,41,0,0,88,0.2,0,0 +1998,6,4,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,41.5,14,20,98759,1268,1327,459,980,842,175,122353,51765,21921,9074,165,3.8,0,0,6000,77777,9,999999999,37,0,0,88,0.2,0,0 +1998,6,4,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,42,13,18,98763,1149,1327,480,856,774,186,104889,50083,22890,9464,330,3.6,3,3,6000,77777,9,999999999,34,0,0,88,0.2,0,0 +1998,6,4,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,43,11,15,98771,968,1327,483,689,726,160,83301,47412,19405,7989,290,3.6,3,3,6000,77777,9,999999999,27,0,0,88,0.2,0,0 +1998,6,4,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,15,23,98747,737,1327,471,474,545,171,54676,35881,19817,7501,240,7.7,3,3,4000,77777,9,999999999,41,0,0,88,0.2,0,0 +1998,6,4,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,14,22,98747,472,1327,477,232,269,136,25794,15647,15218,5023,190,2.6,5,5,4000,77777,9,999999999,37,0,0,88,0.2,0,0 +1998,6,4,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,15,29,98714,192,1327,454,53,25,49,5799,54,5414,1640,350,2.6,5,5,2500,77777,9,999999999,41,0,0,88,0.2,0,0 +1998,6,4,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,36,15,29,98714,0,920,454,0,0,0,0,0,0,0,275,0,5,5,2800,77777,9,999999999,41,0,0,88,0.2,0,0 +1998,6,4,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,36,15,29,98714,0,0,454,0,0,0,0,0,0,0,202,0,5,5,2000,77777,9,999999999,41,0,0,88,0.2,0,0 +1998,6,4,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,16,32,98705,0,0,476,0,0,0,0,0,0,0,290,5.1,9,9,2500,3000,9,999999999,46,0,0,88,0.2,0,0 +1998,6,4,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,16,36,98689,0,0,464,0,0,0,0,0,0,0,320,5.1,9,9,2500,3000,9,999999999,46,0,0,88,0.2,0,0 +1998,6,4,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,15,32,98697,0,0,469,0,0,0,0,0,0,0,50,2.6,9,9,2500,3000,9,999999999,41,0,0,88,0.2,0,0 +1998,6,5,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,33,15,34,98689,0,0,463,0,0,0,0,0,0,0,134,0,9,9,2500,3000,9,999999999,42,0,0,88,0.2,0,0 +1998,6,5,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,14,30,98697,0,0,467,0,0,0,0,0,0,0,270,2.6,9,9,2500,3000,9,999999999,37,0,0,88,0.2,0,0 +1998,6,5,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,15,34,98689,0,0,463,0,0,0,0,0,0,0,250,3.1,9,9,2500,3000,9,999999999,42,0,0,88,0.2,0,0 +1998,6,5,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,17,41,98680,0,0,473,0,0,0,0,0,0,0,270,15.4,10,10,1500,3000,0,19999999,51,0,0,88,0.2,0,0 +1998,6,5,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,21,62,98654,0,0,422,0,0,0,0,0,0,0,321,0,5,5,3000,77777,0,19999999,76,0,0,88,0.2,0,0 +1998,6,5,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,22,66,98654,11,54,424,2,0,2,190,0,191,78,270,2.1,5,5,3000,77777,0,919999999,84,0,0,88,0.2,0,0 +1998,6,5,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,22,66,98654,291,1326,424,105,118,79,11457,2573,8665,2712,120,3.6,5,5,2500,77777,0,919999999,84,0,0,88,0.2,0,0 +1998,6,5,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,22,59,98672,567,1326,428,320,431,136,36182,22286,15420,5537,270,2.6,3,3,2000,77777,0,919999999,84,0,0,88,0.2,0,0 +1998,6,5,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,21,49,98689,822,1326,445,514,559,168,59973,32644,19649,7782,280,2.1,5,5,1800,77777,0,919999999,76,0,0,88,0.2,0,0 +1998,6,5,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,36,19,37,98714,1037,1326,460,702,612,224,83017,39602,26590,10797,165,0,5,5,1800,77777,0,919999999,62,0,0,88,0.2,0,0 +1998,6,5,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,37,20,37,98722,1198,1326,441,904,774,205,109998,45852,25069,10342,222,0,0,0,2000,77777,0,919999999,68,0,0,88,0.2,0,0 +1998,6,5,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,19,31,98739,1294,1326,451,996,774,241,121353,48221,29500,11986,260,1.5,0,0,2000,77777,0,919999999,61,0,0,88,0.2,0,0 +1998,6,5,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,19,31,98739,1318,1326,451,1018,775,248,124227,48523,30449,12336,250,3.1,0,0,3000,77777,0,919999999,61,0,0,88,0.2,0,0 +1998,6,5,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,21,32,98755,1269,1326,466,969,820,185,119830,45321,22976,9538,270,2.6,0,0,4000,77777,0,919999999,75,0,0,88,0.2,0,0 +1998,6,5,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,18,37,98705,1150,1326,453,801,595,285,94644,41734,33901,13425,180,7.2,5,5,3000,77777,0,919999999,56,0,0,88,0.2,0,0 +1998,6,5,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38,16,27,98730,969,1326,468,645,577,224,75762,39818,26414,10534,180,5.1,5,5,3500,77777,0,919999999,46,0,0,88,0.2,0,0 +1998,6,5,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,14,25,98722,738,1326,459,448,486,178,51615,32880,20554,7732,160,6.7,5,5,4000,77777,0,919999999,37,0,0,88,0.2,0,0 +1998,6,5,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,14,27,98714,474,1326,446,247,328,130,27602,18620,14560,4873,180,7.2,3,3,4500,77777,0,919999999,37,0,0,88,0.2,0,0 +1998,6,5,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,35,15,30,98705,194,1326,423,57,46,51,6318,160,5590,1685,107,5.1,0,0,4000,77777,9,999999999,41,0,0,88,0.2,0,0 +1998,6,5,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,16,34,98697,0,930,444,0,0,0,0,0,0,0,240,3.1,5,5,3500,77777,0,919999999,46,0,0,88,0.2,0,0 +1998,6,5,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,16,34,98697,0,0,444,0,0,0,0,0,0,0,220,1.5,5,5,3500,77777,0,919999999,46,0,0,88,0.2,0,0 +1998,6,5,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,17,41,98680,0,0,434,0,0,0,0,0,0,0,190,1.5,5,5,3500,77777,0,919999999,51,0,0,88,0.2,0,0 +1998,6,5,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,17,43,98672,0,0,422,0,0,0,0,0,0,0,210,1.5,3,3,3500,77777,0,919999999,51,0,0,88,0.2,0,0 +1998,6,5,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,17,43,98672,0,0,422,0,0,0,0,0,0,0,250,1.5,3,3,3500,77777,0,919999999,51,0,0,88,0.2,0,0 +1998,6,6,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,17,46,98663,0,0,423,0,0,0,0,0,0,0,260,3.1,5,5,3500,77777,0,919999999,51,0,0,88,0.2,0,0 +1998,6,6,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,17,48,98654,0,0,417,0,0,0,0,0,0,0,260,2.6,5,5,4000,77777,0,919999999,51,0,0,88,0.2,0,0 +1998,6,6,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,18,55,98646,0,0,413,0,0,0,0,0,0,0,143,0,5,5,3500,77777,0,919999999,56,0,0,88,0.2,0,0 +1998,6,6,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,18,55,98646,0,0,407,0,0,0,0,0,0,0,280,2.1,3,3,3200,77777,0,919999999,56,0,0,88,0.2,0,0 +1998,6,6,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,17,48,98654,0,0,411,0,0,0,0,0,0,0,300,2.1,3,3,2500,77777,0,919999999,51,0,0,88,0.2,0,0 +1998,6,6,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,17,48,98654,11,57,417,2,0,2,201,0,202,81,290,4.1,5,5,2500,77777,9,999999999,51,0,0,88,0.2,0,0 +1998,6,6,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,19,52,98663,291,1326,425,105,115,80,11531,2985,8800,2737,300,2.6,5,5,3000,77777,9,999999999,62,0,0,88,0.2,0,0 +1998,6,6,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,18,39,98697,567,1326,447,304,362,149,34202,21374,16861,5920,280,5.1,5,5,3000,77777,9,999999999,56,0,0,88,0.2,0,0 +1998,6,6,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,17,34,98705,822,1326,451,517,556,172,60432,35338,20236,7956,300,4.6,5,5,3500,77777,9,999999999,51,0,0,88,0.2,0,0 +1998,6,6,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,17,29,98730,1037,1326,462,746,722,182,89881,44967,21975,9097,300,5.1,3,3,3500,77777,9,999999999,50,0,0,88,0.2,0,0 +1998,6,6,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,16,27,98730,1198,1326,460,898,781,192,110152,48597,23693,9786,340,3.1,3,3,3500,77777,9,999999999,46,0,0,88,0.2,0,0 +1998,6,6,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,16,25,98747,1293,1326,453,1000,850,171,125341,50322,21539,8927,310,3.6,0,0,4000,77777,9,999999999,45,0,0,88,0.2,0,0 +1998,6,6,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,15,22,98755,1318,1326,457,1025,845,186,128151,51588,23320,9614,340,3.1,0,0,4500,77777,9,999999999,41,0,0,88,0.2,0,0 +1998,6,6,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,41.5,14.5,21,98759,1269,1326,459,979,842,174,122323,51334,21811,9033,123,4.1,0,0,5250,77777,9,999999999,39,0,0,88,0.2,0,0 +1998,6,6,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,42,14,19,98763,1150,1326,462,867,755,213,105090,50211,25897,10600,290,5.1,0,0,6000,77777,9,999999999,37,0,0,88,0.2,0,0 +1998,6,6,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,43,13,17,98771,970,1326,494,649,557,242,75923,40955,28442,11189,350,2.1,5,5,6000,77777,9,999999999,33,0,0,88,0.2,0,0 +1998,6,6,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,43,13,17,98771,740,1326,486,477,613,135,56209,37963,15969,6228,260,2.6,3,3,6000,77777,9,999999999,33,0,0,88,0.2,0,0 +1998,6,6,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,42,13,18,98763,476,1326,480,248,330,130,27799,19040,14603,4890,290,3.6,3,3,5000,77777,9,999999999,34,0,0,88,0.2,0,0 +1998,6,6,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,14,22,98747,196,1326,469,58,44,51,6346,214,5647,1702,290,2.1,3,3,5000,77777,9,999999999,37,0,0,88,0.2,0,0 +1998,6,6,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,14,23,98739,0,940,444,0,0,0,0,0,0,0,290,1.5,0,0,4000,77777,9,999999999,37,0,0,88,0.2,0,0 +1998,6,6,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,16,29,98722,0,0,436,0,0,0,0,0,0,0,290,1.5,0,0,3000,77777,9,999999999,46,0,0,88,0.2,0,0 +1998,6,6,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,37,16,29,98722,0,0,455,0,0,0,0,0,0,0,289,0,3,3,2500,77777,9,999999999,46,0,0,88,0.2,0,0 +1998,6,6,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,36,16,31,98714,0,0,449,0,0,0,0,0,0,0,310,0,3,3,2000,77777,9,999999999,46,0,0,88,0.2,0,0 +1998,6,6,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,16,31,98714,0,0,430,0,0,0,0,0,0,0,320,1.5,0,0,1800,77777,9,999999999,46,0,0,88,0.2,0,0 +1998,6,7,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,16,32,98705,0,0,425,0,0,0,0,0,0,0,270,7.2,0,0,1800,77777,9,999999999,46,0,0,88,0.2,0,0 +1998,6,7,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,15,32,98697,0,0,418,0,0,0,0,0,0,0,290,8.2,0,0,800,77777,9,999999999,41,0,0,88,0.2,0,0 +1998,6,7,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,16,36,98689,0,0,414,0,0,0,0,0,0,0,280,5.1,0,0,500,77777,9,999999999,46,0,0,88,0.2,0,0 +1998,6,7,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,32.5,16.5,38,98684,0,0,412,0,0,0,0,0,0,0,169,3.8,0,0,650,77777,9,999999999,48,0,0,88,0.2,0,0 +1998,6,7,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,17,41,98680,0,0,427,0,0,0,0,0,0,0,260,2.6,3,3,800,77777,9,999999999,51,0,0,88,0.2,0,0 +1998,6,7,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,17,43,98672,12,59,422,2,0,2,221,0,222,89,300,1.5,3,3,1000,77777,9,999999999,51,0,0,88,0.2,0,0 +1998,6,7,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,17,41,98680,291,1326,427,112,149,79,12293,4132,8731,2719,260,3.6,3,3,1200,77777,9,999999999,51,0,0,88,0.2,0,0 +1998,6,7,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,12,28,98689,567,1326,426,325,410,149,36747,26371,16967,5928,340,1.5,3,3,1200,77777,9,999999999,31,0,0,88,0.2,0,0 +1998,6,7,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,16,32,98705,821,1326,425,556,667,143,65997,40276,17024,6821,300,3.6,0,0,700,77777,9,999999999,46,0,0,88,0.2,0,0 +1998,6,7,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,15,27,98722,1036,1326,434,758,783,145,92954,47092,17919,7512,270,2.6,0,0,700,77777,9,999999999,41,0,0,88,0.2,0,0 +1998,6,7,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,15,24,98739,1197,1326,446,910,834,157,113480,49846,19650,8198,320,2.6,0,0,1300,77777,9,999999999,41,0,0,88,0.2,0,0 +1998,6,7,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,15,23,98747,1293,1326,451,1001,844,178,125221,51226,22376,9251,290,2.6,0,0,1800,77777,9,999999999,41,0,0,88,0.2,0,0 +1998,6,7,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,41,14.5,21,98755,1318,1326,456,1025,842,189,128125,52002,23705,9761,228,4.4,0,0,2150,77777,9,999999999,39,0,0,88,0.2,0,0 +1998,6,7,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,42,14,19,98763,1269,1326,462,980,841,175,122401,51721,22012,9109,280,6.2,0,0,2500,77777,9,999999999,37,0,0,88,0.2,0,0 +1998,6,7,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,42,14.5,20,98763,1151,1326,462,867,795,176,106513,49763,21790,9047,93,5.6,0,0,3000,77777,9,999999999,39,0,0,88,0.2,0,0 +1998,6,7,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,42,15,21,98763,970,1326,463,696,760,140,84804,45593,17107,7124,290,5.1,0,0,3500,77777,9,999999999,41,0,0,88,0.2,0,0 +1998,6,7,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,15,22,98755,741,1326,457,483,616,139,56688,37480,16346,6370,310,6.2,0,0,3500,77777,9,999999999,41,0,0,88,0.2,0,0 +1998,6,7,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,15,22,98755,477,1326,477,249,327,131,27787,18442,14685,4923,300,4.6,3,3,3500,77777,9,999999999,41,0,0,88,0.2,0,0 +1998,6,7,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,15,23,98747,198,1326,471,58,45,52,6427,211,5707,1723,300,3.6,3,3,3500,77777,9,999999999,41,0,0,88,0.2,0,0 +1998,6,7,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,16,29,98722,0,950,455,0,0,0,0,0,0,0,290,9.3,3,3,3000,77777,9,999999999,46,0,0,88,0.2,0,0 +1998,6,7,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,14,25,98722,0,0,452,0,0,0,0,0,0,0,290,3.1,3,3,3000,77777,9,999999999,37,0,0,88,0.2,0,0 +1998,6,7,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,15,30,98705,0,0,442,0,0,0,0,0,0,0,270,2.6,3,3,3000,77777,9,999999999,41,0,0,88,0.2,0,0 +1998,6,7,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,15,30,98705,0,0,442,0,0,0,0,0,0,0,280,3.1,3,3,3000,77777,9,999999999,41,0,0,88,0.2,0,0 +1998,6,7,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,15,34,98689,0,0,430,0,0,0,0,0,0,0,290,2.1,3,3,3000,77777,9,999999999,42,0,0,88,0.2,0,0 +1998,6,8,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,15,36,98680,0,0,425,0,0,0,0,0,0,0,270,5.1,3,3,3000,77777,9,999999999,42,0,0,88,0.2,0,0 +1998,6,8,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,17,41,98680,0,0,427,0,0,0,0,0,0,0,270,5.1,3,3,2500,77777,9,999999999,51,0,0,88,0.2,0,0 +1998,6,8,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,18,46,98672,0,0,430,0,0,0,0,0,0,0,260,3.6,5,5,2000,77777,9,999999999,56,0,0,88,0.2,0,0 +1998,6,8,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,18,43,98680,0,0,429,0,0,0,0,0,0,0,290,2.1,3,3,2000,77777,9,999999999,56,0,0,88,0.2,0,0 +1998,6,8,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,17,43,98672,0,0,454,0,0,0,0,0,0,0,280,2.6,9,9,2000,3000,9,999999999,51,0,0,88,0.2,0,0 +1998,6,8,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,17,43,98672,12,61,428,2,0,2,214,0,215,86,310,1,5,5,2000,77777,9,999999999,51,0,0,88,0.2,0,0 +1998,6,8,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,31.5,17.5,43,98676,291,1325,415,113,155,79,12420,4219,8706,2714,158,2.8,1,1,2250,77777,9,999999999,53,0,0,88,0.2,0,0 +1998,6,8,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,18,43,98680,567,1325,429,322,437,135,36497,24560,15360,5501,320,4.6,3,3,2500,77777,9,999999999,56,0,0,88,0.2,0,0 +1998,6,8,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,18,41,98689,821,1325,416,553,665,141,65663,38774,16839,6763,310,5.1,0,0,3000,77777,9,999999999,56,0,0,88,0.2,0,0 +1998,6,8,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,17,34,98705,1036,1325,426,755,795,134,93022,45318,16575,6984,320,5.1,0,0,4500,77777,9,999999999,51,0,0,88,0.2,0,0 +1998,6,8,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,36.5,17,32,98718,1197,1325,434,907,768,213,110354,48610,26054,10686,233,5.6,0,0,4750,77777,9,999999999,50,0,0,88,0.2,0,0 +1998,6,8,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,17,29,98730,1293,1325,443,998,774,243,121748,49976,29856,12098,320,6.2,0,0,5000,77777,9,999999999,50,0,0,88,0.2,0,0 +1998,6,8,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,16,26,98739,1318,1325,447,1023,849,179,128164,50632,22564,9324,320,6.2,0,0,6000,77777,9,999999999,45,0,0,88,0.2,0,0 +1998,6,8,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,16,26,98739,1269,1325,447,977,849,164,122466,49936,20658,8585,270,6.2,0,0,6000,77777,9,999999999,45,0,0,88,0.2,0,0 +1998,6,8,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,39,16.5,27,98739,1151,1325,448,864,806,164,106641,48048,20367,8502,34,5.9,0,0,5500,77777,9,999999999,48,0,0,88,0.2,0,0 +1998,6,8,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,17,28,98739,971,1325,448,694,772,129,85022,43913,15820,6625,280,5.7,0,0,5000,77777,9,999999999,50,0,0,88,0.2,0,0 +1998,6,8,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,15,23,98747,742,1325,451,483,615,139,56795,37501,16389,6389,290,4.1,0,0,5000,77777,9,999999999,41,0,0,88,0.2,0,0 +1998,6,8,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,14,23,98739,479,1325,444,253,343,129,28367,19517,14537,4892,300,3.6,0,0,5000,77777,9,999999999,37,0,0,88,0.2,0,0 +1998,6,8,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,15,26,98730,200,1325,459,59,46,52,6517,246,5772,1743,300,4.6,3,3,5000,77777,9,999999999,41,0,0,88,0.2,0,0 +1998,6,8,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,16,29,98722,0,959,455,0,0,0,0,0,0,0,290,2.1,3,3,4000,77777,9,999999999,46,0,0,88,0.2,0,0 +1998,6,8,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,16,29,98722,0,0,462,0,0,0,0,0,0,0,280,2.1,5,5,3000,77777,9,999999999,46,0,0,88,0.2,0,0 +1998,6,8,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,16,32,98705,0,0,476,0,0,0,0,0,0,0,230,4.1,9,9,3000,3000,9,999999999,46,0,0,88,0.2,0,0 +1998,6,8,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,19,44,98689,0,0,469,0,0,0,0,0,0,0,250,5.1,9,9,3000,3000,9,999999999,62,0,0,88,0.2,0,0 +1998,6,8,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,20,49,98680,0,0,464,0,0,0,0,0,0,0,260,5.1,9,9,3000,3000,9,999999999,69,0,0,88,0.2,0,0 +1998,6,9,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,21,52,98680,0,0,465,0,0,0,0,0,0,0,280,3.6,9,9,3000,3000,9,999999999,76,0,0,88,0.2,0,0 +1998,6,9,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,20,49,98680,0,0,464,0,0,0,0,0,0,0,270,5.1,9,9,3000,3000,9,999999999,69,0,0,88,0.2,0,0 +1998,6,9,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,20,52,98672,0,0,432,0,0,0,0,0,0,0,270,5.1,5,5,3000,77777,9,999999999,69,0,0,88,0.2,0,0 +1998,6,9,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,20,52,98672,0,0,432,0,0,0,0,0,0,0,290,5.1,5,5,3000,77777,9,999999999,69,0,0,88,0.2,0,0 +1998,6,9,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,21,55,98672,0,0,434,0,0,0,0,0,0,0,290,4.1,5,5,2500,77777,9,999999999,76,0,0,88,0.2,0,0 +1998,6,9,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,21,59,98663,12,62,428,2,0,2,217,0,218,88,280,4.1,5,5,2000,77777,9,999999999,76,0,0,88,0.2,0,0 +1998,6,9,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,21,59,98663,291,1325,453,58,0,58,5639,0,5683,2178,290,6.2,9,9,2000,3000,9,999999999,76,0,0,88,0.2,0,0 +1998,6,9,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,21,55,98672,567,1325,459,167,28,155,18705,1565,17472,6096,270,5.1,9,9,2000,3000,9,999999999,76,0,0,88,0.2,0,0 +1998,6,9,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,21,49,98689,821,1325,472,284,27,267,31956,1982,30223,10972,290,4.1,9,9,1200,3000,9,999999999,76,0,0,88,0.2,0,0 +1998,6,9,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,21,49,98689,1035,1325,472,387,64,337,44239,4789,38774,14641,290,5.1,9,9,1200,3000,9,999999999,76,0,0,88,0.2,0,0 +1998,6,9,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,20,39,98714,1196,1325,489,466,91,383,54017,6962,44754,16813,300,5.1,9,9,1200,3000,9,999999999,68,0,0,88,0.2,0,0 +1998,6,9,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,37.5,19.5,35,98726,1293,1325,443,994,660,350,117665,47064,41710,16119,153,4.6,0,0,1350,3000,9,999999999,65,0,0,88,0.2,0,0 +1998,6,9,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,19,31,98739,1318,1325,506,526,89,437,61401,7018,51437,18953,320,4.1,9,9,1500,3000,9,999999999,61,0,0,88,0.2,0,0 +1998,6,9,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,19,30,98747,1269,1325,513,502,89,417,58502,6970,48930,18143,290,7.7,9,9,2000,3000,9,999999999,61,0,0,88,0.2,0,0 +1998,6,9,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,40,19,30,98747,1152,1325,457,862,596,343,100263,44528,40208,15399,60,6.9,0,0,2400,3000,9,999999999,61,0,0,88,0.2,0,0 +1998,6,9,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,19,30,98747,972,1325,513,358,88,293,41042,6516,33836,12901,290,6.2,9,9,2800,3000,9,999999999,61,0,0,88,0.2,0,0 +1998,6,9,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,19,31,98739,743,1325,506,249,18,238,27881,1300,26899,9563,300,7.7,9,9,2800,3000,9,999999999,61,0,0,88,0.2,0,0 +1998,6,9,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,17,29,98730,480,1325,497,131,14,126,14656,769,14131,4804,290,6.7,9,9,2800,3000,9,999999999,50,0,0,88,0.2,0,0 +1998,6,9,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,17,31,98722,202,1325,490,31,0,31,3042,0,3065,1189,300,6.7,9,9,2800,3000,9,999999999,50,0,0,88,0.2,0,0 +1998,6,9,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,20,44,98697,0,969,476,0,0,0,0,0,0,0,300,6.2,9,9,2800,3000,9,999999999,68,0,0,88,0.2,0,0 +1998,6,9,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,21,49,98689,0,0,472,0,0,0,0,0,0,0,290,5.1,9,9,3000,3000,9,999999999,76,0,0,88,0.2,0,0 +1998,6,9,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,22,56,98680,0,0,467,0,0,0,0,0,0,0,290,5.1,9,9,3000,3000,9,999999999,84,0,0,88,0.2,0,0 +1998,6,9,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,22,56,98680,0,0,441,0,0,0,0,0,0,0,290,3.1,5,5,3500,77777,9,999999999,84,0,0,88,0.2,0,0 +1998,6,9,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,22,59,98672,0,0,435,0,0,0,0,0,0,0,310,2.6,5,5,3500,77777,9,999999999,84,0,0,88,0.2,0,0 +1998,6,10,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,22,59,98672,0,0,435,0,0,0,0,0,0,0,310,1.5,5,5,3500,77777,9,999999999,84,0,0,88,0.2,0,0 +1998,6,10,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,22,59,98672,0,0,435,0,0,0,0,0,0,0,196,0,5,5,3500,77777,9,999999999,84,0,0,88,0.2,0,0 +1998,6,10,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,23,66,98663,0,0,431,0,0,0,0,0,0,0,225,0,5,5,3200,77777,9,999999999,93,0,0,88,0.2,0,0 +1998,6,10,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,23,66,98663,0,0,431,0,0,0,0,0,0,0,60,1,5,5,2500,77777,9,999999999,93,0,0,88,0.2,0,0 +1998,6,10,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,23,66,98663,0,0,431,0,0,0,0,0,0,0,130,0,5,5,2000,77777,9,999999999,93,0,0,88,0.2,0,0 +1998,6,10,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,24,66,98672,12,63,477,1,0,1,73,0,74,31,101,0,10,10,2000,3000,9,999999999,102,0,0,88,0.2,0,0 +1998,6,10,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,24,66,98672,291,1325,431,110,58,97,11823,1518,10498,3085,100,1.5,3,3,2000,3000,0,919999999,102,0,0,88,0.2,0,0 +1998,6,10,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,29,25,79,98654,566,1325,436,248,166,177,27301,9193,19575,6641,210,1.8,7,7,2500,3000,9,999999999,114,0,0,88,0.2,0,0 +1998,6,10,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,26,94,98637,820,1325,455,172,8,166,19909,428,19396,7737,160,2.1,10,10,3000,3000,0,919999999,126,0,0,88,0.2,0,0 +1998,6,10,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,25,75,98663,1035,1325,472,234,5,230,27452,298,27129,11052,80,1.5,10,10,2500,3000,0,919999999,113,0,0,88,0.2,0,0 +1998,6,10,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,24,63,98680,1196,1325,483,282,19,265,33501,1148,31619,12769,100,2.1,10,10,2500,3000,0,919999999,102,0,0,88,0.2,0,0 +1998,6,10,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,24,63,98680,1292,1325,437,973,703,287,116387,41978,34576,13852,90,3.6,3,3,3000,3000,0,919999999,102,0,0,88,0.2,0,0 +1998,6,10,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,32,23,59,98680,1318,1325,439,982,668,318,117061,42348,38139,15057,83,4.3,4,4,3000,3000,9,999999999,93,0,0,88,0.2,0,0 +1998,6,10,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,22,56,98680,1270,1325,480,305,22,284,36460,1388,34136,13658,160,5.1,10,10,3000,3000,0,919999999,84,0,0,88,0.2,0,0 +1998,6,10,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,24,70,98663,1152,1325,470,269,7,263,31783,402,31284,12622,250,2.6,10,10,3500,3000,0,919999999,103,0,0,88,0.2,0,0 +1998,6,10,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,23,79,98637,973,1325,451,217,5,214,25394,269,25141,10176,330,4.1,10,10,3000,3000,0,919999999,93,0,0,88,0.2,0,0 +1998,6,10,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,24,84,98637,744,1325,452,151,0,151,15169,0,15311,6831,330,4.1,10,10,2000,3000,0,919999999,103,0,0,88,0.2,0,0 +1998,6,10,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,24,94,98619,482,1325,440,79,0,79,7798,0,7865,3370,330,2.6,10,10,3000,3000,0,919999999,103,0,0,88,0.2,0,0 +1998,6,10,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,25,100,98619,203,1325,441,19,0,19,1842,0,1856,778,290,2.6,10,10,2000,3000,0,919999999,114,0,0,88,0.2,0,0 +1998,6,10,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,25,100,98619,0,977,441,0,0,0,0,0,0,0,330,2.6,10,10,1800,3000,0,919999999,114,0,0,88,0.2,0,0 +1998,6,10,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,24,24,100,98610,0,0,434,0,0,0,0,0,0,0,183,0,10,10,1700,3000,0,919999999,104,0,0,88,0.2,0,0 +1998,6,10,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,24,100,98610,0,0,422,0,0,0,0,0,0,0,310,1.5,9,9,800,3000,0,919999999,104,0,0,88,0.2,0,0 +1998,6,10,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,24,24,100,98610,0,0,422,0,0,0,0,0,0,0,346,0,9,9,800,3000,0,919999999,104,0,0,88,0.2,0,0 +1998,6,10,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,24,24,100,98610,0,0,422,0,0,0,0,0,0,0,180,0,9,9,800,3000,0,919999999,104,0,0,88,0.2,0,0 +1998,6,11,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,24,24,100,98610,0,0,422,0,0,0,0,0,0,0,102,0,9,9,800,3000,0,919999999,104,0,0,88,0.2,0,0 +1998,6,11,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,24.5,24,97,98615,0,0,437,0,0,0,0,0,0,0,246,1,10,10,1650,3000,9,999999999,103,0,0,88,0.2,0,0 +1998,6,11,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,24,94,98619,0,0,428,0,0,0,0,0,0,0,160,2.1,9,9,2500,3000,0,919999999,103,0,0,88,0.2,0,0 +1998,6,11,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,24,100,98610,0,0,422,0,0,0,0,0,0,0,190,2.6,9,9,3500,3000,0,919999999,104,0,0,88,0.2,0,0 +1998,6,11,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,23,100,98601,0,0,415,0,0,0,0,0,0,0,200,1.5,9,9,1600,3000,0,919999999,94,0,0,88,0.2,0,0 +1998,6,11,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,23,100,98601,12,63,415,1,0,1,121,0,122,51,250,3.6,9,9,800,3000,9,999999999,94,0,0,88,0.2,0,0 +1998,6,11,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,23,100,98601,291,1325,415,58,0,58,5578,0,5622,2164,280,5.1,9,9,1600,3000,9,999999999,94,0,0,88,0.2,0,0 +1998,6,11,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,23,100,98601,566,1325,415,166,26,155,18535,1430,17355,6075,230,4.1,9,9,3500,3000,9,999999999,94,0,0,88,0.2,0,0 +1998,6,11,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,23,94,98610,820,1325,421,283,39,259,31768,2631,29259,10736,260,4.1,9,9,4000,3000,9,999999999,94,0,0,88,0.2,0,0 +1998,6,11,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,22,89,98610,1034,1325,432,235,14,224,27727,869,26564,10816,270,5.1,10,10,4500,3000,9,999999999,85,0,0,88,0.2,0,0 +1998,6,11,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,24.5,22,86,98615,1196,1325,414,561,162,414,64511,12439,47990,17699,59,5.4,8,8,4500,3000,9,999999999,85,0,0,88,0.2,0,0 +1998,6,11,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,22,83,98619,1292,1325,437,311,23,289,37294,1421,34868,13923,270,5.7,10,10,4500,3000,9,999999999,85,0,0,88,0.2,0,0 +1998,6,11,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,24,89,98628,1317,1325,434,521,55,466,60190,4092,54307,19767,330,2.6,9,9,4500,3000,9,999999999,103,0,0,88,0.2,0,0 +1998,6,11,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,23,79,98637,1270,1325,438,499,66,436,57651,4944,50707,18671,270,5.1,9,9,4500,3000,9,999999999,93,0,0,88,0.2,0,0 +1998,6,11,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,23,74,98646,1153,1325,444,442,65,385,50754,4803,44546,16669,300,3.1,9,9,4500,3000,9,999999999,93,0,0,88,0.2,0,0 +1998,6,11,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,23,70,98654,974,1325,450,356,44,324,40333,3188,36900,13806,290,4.1,9,9,4500,3000,9,999999999,93,0,0,88,0.2,0,0 +1998,6,11,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,24,70,98663,746,1325,432,446,407,217,50118,25309,24487,8988,310,3.6,5,5,4500,77777,9,999999999,103,0,0,88,0.2,0,0 +1998,6,11,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,23,66,98663,483,1325,424,250,347,123,27850,15843,13777,4749,300,5.1,3,3,4500,77777,9,999999999,93,0,0,88,0.2,0,0 +1998,6,11,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,29.2,23.4,71,98656,205,1325,430,55,35,49,6014,0,5436,1693,257,4.1,6,6,3900,77777,9,999999999,97,0,0,88,0.2,0,0 +1998,6,11,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,28.4,23.8,76,98649,0,986,431,0,0,0,0,0,0,0,22,3.1,7,7,3300,77777,9,999999999,101,0,0,88,0.2,0,0 +1998,6,11,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,27.6,24.2,82,98642,0,0,434,0,0,0,0,0,0,0,203,2,8,8,2700,77777,9,999999999,105,0,0,88,0.2,0,0 +1998,6,11,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,26.8,24.6,88,98635,0,0,439,0,0,0,0,0,0,0,13,1,9,9,2100,77777,9,999999999,109,0,0,88,0.2,0,0 +1998,6,11,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,25,94,98628,0,0,405,0,0,0,0,0,0,0,278,0,3,3,1500,77777,9,999999999,114,0,0,88,0.2,0,0 +1998,6,11,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,25,94,98628,0,0,405,0,0,0,0,0,0,0,183,0,3,3,1500,77777,9,999999999,114,0,0,88,0.2,0,0 +1998,6,12,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,25,94,98628,0,0,405,0,0,0,0,0,0,0,333,0,3,3,1600,77777,9,999999999,114,0,0,88,0.2,0,0 +1998,6,12,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,25.9,25.1,95,98627,0,0,447,0,0,0,0,0,0,0,113,0.7,10,10,2137,77777,9,999999999,115,0,0,88,0.2,0,0 +1998,6,12,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,26.2,24.9,93,98630,0,0,449,0,0,0,0,0,0,0,10,1.4,10,10,2441,77777,9,999999999,113,0,0,88,0.2,0,0 +1998,6,12,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,25.4,24.7,96,98623,0,0,443,0,0,0,0,0,0,0,34,1.7,10,10,3012,77777,9,999999999,111,0,0,88,0.2,0,0 +1998,6,12,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,24.7,23.8,95,98616,0,0,438,0,0,0,0,0,0,0,37,1,10,10,1583,77777,9,999999999,101,0,0,88,0.2,0,0 +1998,6,12,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,25.8,24.1,91,98626,12,63,433,1,0,1,113,0,114,47,269,1.4,9,9,1812,77777,9,999999999,104,0,0,88,0.2,0,0 +1998,6,12,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,26.8,24.4,87,98635,290,1324,439,67,0,67,6442,0,6493,2414,185,1.8,9,9,2041,77777,9,999999999,107,0,0,88,0.2,0,0 +1998,6,12,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,27.9,24.7,83,98645,566,1324,436,223,122,171,24573,6629,18933,6483,162,2.2,8,8,2270,77777,9,999999999,110,0,0,88,0.2,0,0 +1998,6,12,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,25,79,98654,819,1324,428,507,490,204,57978,28210,23435,9065,310,2.6,5,5,2500,77777,9,999999999,114,0,0,88,0.2,0,0 +1998,6,12,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,25,75,98663,1034,1324,433,692,611,214,81471,33881,25405,10438,330,2.6,5,5,2500,77777,9,999999999,113,0,0,88,0.2,0,0 +1998,6,12,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,30.5,24.8,72,98667,1195,1324,440,780,513,318,91281,32358,37422,14712,100,3.6,6,6,2761,77777,9,999999999,111,0,0,88,0.2,0,0 +1998,6,12,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,30.9,24.2,68,98671,1292,1324,437,900,610,306,107136,37187,36596,14541,345,3.6,5,5,3023,77777,9,999999999,104,0,0,88,0.2,0,0 +1998,6,12,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,31.7,25.3,69,98678,1317,1324,447,911,580,334,107893,35468,39814,15644,202,1.1,6,6,3452,77777,9,999999999,116,0,0,88,0.2,0,0 +1998,6,12,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,32.5,24.4,62,98684,1270,1324,444,923,682,268,110540,39409,32352,13073,129,3.5,4,4,3714,77777,9,999999999,106,0,0,88,0.2,0,0 +1998,6,12,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,32.9,23.8,59,98688,1153,1324,445,831,757,172,101457,38913,21156,8873,263,2.4,4,4,4142,77777,9,999999999,100,0,0,88,0.2,0,0 +1998,6,12,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,33.7,23.2,54,98695,975,1324,445,681,735,141,82395,37258,17091,7176,65,2.3,3,3,4571,77777,9,999999999,94,0,0,88,0.2,0,0 +1998,6,12,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,33.8,23.7,55,98696,747,1324,447,473,619,124,55633,30067,14648,5832,2,2,3,3,4333,77777,9,999999999,99,0,0,88,0.2,0,0 +1998,6,12,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,33.6,22.8,53,98694,485,1324,444,252,352,123,28077,16153,13763,4750,165,3.1,3,3,4428,77777,9,999999999,90,0,0,88,0.2,0,0 +1998,6,12,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,32.5,23.1,58,98685,207,1324,442,61,53,53,6693,0,5809,1783,34,2.4,4,4,3623,77777,9,999999999,93,0,0,88,0.2,0,0 +1998,6,12,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,31.1,23.5,64,98673,0,994,438,0,0,0,0,0,0,0,239,1.8,5,5,3152,77777,9,999999999,97,0,0,88,0.2,0,0 +1998,6,12,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,30,23.8,69,98663,0,0,435,0,0,0,0,0,0,0,32,1.2,6,6,2514,77777,9,999999999,101,0,0,88,0.2,0,0 +1998,6,12,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,29,24.2,76,98654,0,0,435,0,0,0,0,0,0,0,353,0.6,7,7,2209,77777,9,999999999,105,0,0,88,0.2,0,0 +1998,6,12,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,27.9,24.2,81,98644,0,0,436,0,0,0,0,0,0,0,229,0,8,8,1904,77777,9,999999999,105,0,0,88,0.2,0,0 +1998,6,12,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27.7,24,66,98642,0,0,395,0,0,0,0,0,0,0,222,0,0,0,1833,77777,9,999999999,103,0,0,88,0.2,0,0 +1998,6,13,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,24,74,98654,0,0,402,0,0,0,0,0,0,0,350,2.6,0,0,4000,77777,9,999999999,103,0,0,88,0.2,0,0 +1998,6,13,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,23,74,98646,0,0,396,0,0,0,0,0,0,0,350,3.1,0,0,4000,77777,9,999999999,93,0,0,88,0.2,0,0 +1998,6,13,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,23,74,98646,0,0,396,0,0,0,0,0,0,0,350,2.1,0,0,4000,77777,9,999999999,93,0,0,88,0.2,0,0 +1998,6,13,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,27.7,23,76,98643,0,0,426,0,0,0,0,0,0,0,212,1.4,7,7,3833,77777,9,999999999,93,0,0,88,0.2,0,0 +1998,6,13,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,27.3,23,77,98640,0,0,424,0,0,0,0,0,0,0,207,0.7,7,7,3666,77777,9,999999999,93,0,0,88,0.2,0,0 +1998,6,13,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,23,79,98637,12,62,407,2,0,2,227,0,228,92,142,0,3,3,3500,77777,9,999999999,93,0,0,88,0.2,0,0 +1998,6,13,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,28.7,22.3,69,98651,290,1324,426,100,98,79,10996,2110,8674,2715,62,0,6,6,3666,77777,9,999999999,87,0,0,88,0.2,0,0 +1998,6,13,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,30.3,21.7,60,98666,565,1324,427,311,395,142,34984,21074,16066,5714,259,0,4,4,3833,77777,9,999999999,81,0,0,88,0.2,0,0 +1998,6,13,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,32,21,52,98680,819,1324,439,510,483,211,58437,31159,24332,9304,178,0,5,5,4000,77777,9,999999999,76,0,0,88,0.2,0,0 +1998,6,13,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,21,52,98680,1033,1324,465,386,153,266,44927,10277,31185,12367,280,3.6,9,9,4500,3000,9,999999999,76,0,0,88,0.2,0,0 +1998,6,13,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,33,21,49,98689,1195,1324,434,895,716,248,107204,44524,29928,12135,218,3.3,2,2,4750,3000,9,999999999,76,0,0,88,0.2,0,0 +1998,6,13,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,21,47,98697,1291,1324,451,921,617,319,109693,41227,38226,15032,320,3.1,5,5,5000,77777,9,999999999,76,0,0,88,0.2,0,0 +1998,6,13,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,22,47,98705,1317,1324,458,942,611,335,112045,40484,40062,15669,350,2.1,5,5,5000,77777,9,999999999,83,0,0,88,0.2,0,0 +1998,6,13,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,32,22,56,98680,1270,1324,434,951,752,229,115630,43513,28035,11477,328,2.3,3,3,4000,77777,9,999999999,84,0,0,88,0.2,0,0 +1998,6,13,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,29,22,66,98654,1154,1324,424,799,556,315,93354,37823,37026,14480,100,2.4,5,5,3000,77777,9,999999999,84,0,0,88,0.2,0,0 +1998,6,13,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,22,79,98628,975,1324,431,357,86,294,40857,6034,33826,12952,50,2.6,9,9,2000,3000,9,999999999,85,0,0,88,0.2,0,0 +1998,6,13,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,22,59,98672,748,1324,435,449,409,218,50610,26692,24733,9053,153,0,5,5,2500,77777,9,999999999,84,0,0,88,0.2,0,0 +1998,6,13,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,21,55,98672,486,1324,459,132,15,127,14745,745,14187,4860,330,0,9,9,3500,3000,9,999999999,76,0,0,88,0.2,0,0 +1998,6,13,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,22,59,98672,208,1324,435,59,33,54,6471,2,5928,1813,172,0,5,5,3000,77777,9,999999999,84,0,0,88,0.2,0,0 +1998,6,13,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,25,75,98663,0,1002,433,0,0,0,0,0,0,0,182,0,5,5,3000,77777,9,999999999,113,0,0,88,0.2,0,0 +1998,6,13,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,26,84,98654,0,0,429,0,0,0,0,0,0,0,189,0,5,5,2000,77777,9,999999999,125,0,0,88,0.2,0,0 +1998,6,13,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,24,74,98654,0,0,426,0,0,0,0,0,0,0,340,1.5,5,5,2000,77777,9,999999999,103,0,0,88,0.2,0,0 +1998,6,13,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,23,70,98654,0,0,418,0,0,0,0,0,0,0,178,0,3,3,2000,77777,9,999999999,93,0,0,88,0.2,0,0 +1998,6,13,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,23,70,98654,0,0,418,0,0,0,0,0,0,0,340,2.1,3,3,2500,77777,9,999999999,93,0,0,88,0.2,0,0 +1998,6,14,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,22,70,98646,0,0,412,0,0,0,0,0,0,0,121,0,3,3,2500,77777,9,999999999,84,0,0,88,0.2,0,0 +1998,6,14,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,23,79,98637,0,0,407,0,0,0,0,0,0,0,219,0,3,3,2500,77777,9,999999999,93,0,0,88,0.2,0,0 +1998,6,14,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,23,79,98637,0,0,407,0,0,0,0,0,0,0,91,0,3,3,1800,77777,9,999999999,93,0,0,88,0.2,0,0 +1998,6,14,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,23,79,98637,0,0,414,0,0,0,0,0,0,0,120,0,5,5,1600,77777,9,999999999,93,0,0,88,0.2,0,0 +1998,6,14,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,23,79,98637,0,0,438,0,0,0,0,0,0,0,176,0,9,9,1200,3000,9,999999999,93,0,0,88,0.2,0,0 +1998,6,14,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,25,94,98628,12,61,435,1,0,1,116,0,116,49,230,1,9,9,1000,3000,9,999999999,114,0,0,88,0.2,0,0 +1998,6,14,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,23,79,98637,290,1324,438,57,0,57,5537,0,5581,2150,290,2.1,9,9,1000,3000,9,999999999,93,0,0,88,0.2,0,0 +1998,6,14,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,22,66,98654,565,1324,449,166,26,154,18509,1465,17330,6056,176,0,9,9,1000,3000,9,999999999,84,0,0,88,0.2,0,0 +1998,6,14,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,22,59,98672,818,1324,461,282,75,236,32006,4994,26898,10070,340,2.1,9,9,1500,3000,9,999999999,84,0,0,88,0.2,0,0 +1998,6,14,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,33,21,49,98689,1033,1324,445,695,574,247,81401,37305,29123,11685,334,0,5,5,2500,77777,9,999999999,76,0,0,88,0.2,0,0 +1998,6,14,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,21,47,98697,1194,1324,444,887,791,173,109170,43525,21432,8947,70,2.1,3,3,3000,77777,9,999999999,76,0,0,88,0.2,0,0 +1998,6,14,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,20,42,98705,1291,1324,449,979,841,158,106681,89221,20032,11326,10,1.5,3,3,3500,77777,9,999999999,68,0,0,88,0.2,0,0 +1998,6,14,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,36,20,39,98714,1317,1324,454,1003,839,168,125851,45727,21156,8795,352,0,3,3,4500,77777,9,999999999,68,0,0,88,0.2,0,0 +1998,6,14,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,20,37,98722,1270,1324,460,959,795,197,118298,45716,24367,10068,50,2.1,3,3,5000,77777,9,999999999,68,0,0,88,0.2,0,0 +1998,6,14,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,19,35,98722,1154,1324,466,804,597,283,94990,40991,33698,13376,20,2.6,5,5,6000,77777,9,999999999,62,0,0,88,0.2,0,0 +1998,6,14,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,38,18,31,98730,976,1324,463,689,745,139,83830,42512,17020,7114,277,0,3,3,7000,77777,9,999999999,56,0,0,88,0.2,0,0 +1998,6,14,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,37,18,33,98722,749,1324,457,481,645,116,57210,35223,13812,5499,204,0,3,3,6000,77777,9,999999999,56,0,0,88,0.2,0,0 +1998,6,14,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,37,18,33,98722,487,1324,457,255,360,122,28635,18658,13812,4756,325,0,3,3,6000,77777,9,999999999,56,0,0,88,0.2,0,0 +1998,6,14,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,36,19,37,98714,210,1324,453,64,62,54,7005,248,5948,1818,346,0,3,3,4500,77777,9,999999999,62,0,0,88,0.2,0,0 +1998,6,14,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,34,20,44,98697,0,1010,443,0,0,0,0,0,0,0,256,0,3,3,4000,77777,9,999999999,68,0,0,88,0.2,0,0 +1998,6,14,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,33,21,49,98689,0,0,438,0,0,0,0,0,0,0,230,0,3,3,3000,77777,9,999999999,76,0,0,88,0.2,0,0 +1998,6,14,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,32,22,56,98680,0,0,416,0,0,0,0,0,0,0,15,0,0,0,3000,77777,9,999999999,84,0,0,88,0.2,0,0 +1998,6,14,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,22,59,98672,0,0,411,0,0,0,0,0,0,0,311,0,0,0,3000,77777,9,999999999,84,0,0,88,0.2,0,0 +1998,6,14,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,22,59,98672,0,0,411,0,0,0,0,0,0,0,25,0,0,0,2500,77777,9,999999999,84,0,0,88,0.2,0,0 +1998,6,15,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,22,62,98663,0,0,429,0,0,0,0,0,0,0,4,0,5,5,2500,77777,9,999999999,84,0,0,88,0.2,0,0 +1998,6,15,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,22,62,98663,0,0,429,0,0,0,0,0,0,0,17,0,5,5,2500,77777,9,999999999,84,0,0,88,0.2,0,0 +1998,6,15,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,22,62,98663,0,0,455,0,0,0,0,0,0,0,90,2.1,9,9,2500,3000,9,999999999,84,0,0,88,0.2,0,0 +1998,6,15,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,22,66,98654,0,0,424,0,0,0,0,0,0,0,100,3.6,5,5,2500,77777,9,999999999,84,0,0,88,0.2,0,0 +1998,6,15,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,22,66,98654,0,0,424,0,0,0,0,0,0,0,280,0,5,5,2300,77777,9,999999999,84,0,0,88,0.2,0,0 +1998,6,15,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,22,66,98654,12,59,417,2,0,2,216,0,218,88,90,2.6,3,3,2300,77777,9,999999999,84,0,0,88,0.2,0,0 +1998,6,15,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,23,66,98663,289,1324,424,109,138,79,11908,2804,8645,2707,110,5.7,3,3,2300,77777,9,999999999,93,0,0,88,0.2,0,0 +1998,6,15,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,23,59,98680,564,1324,435,316,420,137,35578,21163,15510,5560,110,4.1,3,3,2500,77777,9,999999999,93,0,0,88,0.2,0,0 +1998,6,15,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,23,56,98689,817,1324,423,545,647,145,64161,34066,17198,6921,120,4.6,0,0,3000,77777,9,999999999,92,0,0,88,0.2,0,0 +1998,6,15,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,23,56,98689,1032,1324,441,734,751,149,89194,38628,18180,7668,140,3.6,3,3,4000,77777,9,999999999,92,0,0,88,0.2,0,0 +1998,6,15,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,23,53,98697,1194,1324,447,884,781,179,108231,41260,22068,9216,100,4.1,3,3,4000,77777,9,999999999,92,0,0,88,0.2,0,0 +1998,6,15,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,35,22,47,98705,1291,1324,447,985,772,232,120058,44652,28440,11629,323,4.1,2,2,4500,77777,9,999999999,83,0,0,88,0.2,0,0 +1998,6,15,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,21,42,98714,1317,1324,456,1001,789,216,123197,45286,26733,10977,90,4.1,3,3,5000,77777,9,999999999,75,0,0,88,0.2,0,0 +1998,6,15,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,22,42,98722,1271,1324,470,902,615,311,107158,40081,37232,14700,80,4.6,5,5,6000,77777,9,999999999,83,0,0,88,0.2,0,0 +1998,6,15,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,22,40,98730,1155,1324,476,800,649,234,95689,39012,28170,11501,90,4.1,5,5,6000,77777,9,999999999,83,0,0,88,0.2,0,0 +1998,6,15,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,21,40,98722,977,1324,469,647,609,197,76450,36722,23423,9560,100,3.6,5,5,6000,77777,9,999999999,75,0,0,88,0.2,0,0 +1998,6,15,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,21,40,98722,750,1324,469,452,414,217,51022,27509,24667,9041,80,2.6,5,5,6000,77777,9,999999999,75,0,0,88,0.2,0,0 +1998,6,15,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,21,40,98722,489,1324,497,133,16,127,14876,778,14292,4900,110,3.6,9,9,6000,3000,9,999999999,75,0,0,88,0.2,0,0 +1998,6,15,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,21,42,98714,211,1324,463,61,35,55,6647,86,6049,1848,90,3.1,5,5,5000,77777,9,999999999,75,0,0,88,0.2,0,0 +1998,6,15,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,23,50,98705,0,1017,460,0,0,0,0,0,0,0,90,2.6,5,5,4500,77777,9,999999999,92,0,0,88,0.2,0,0 +1998,6,15,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,24,53,98705,0,0,488,0,0,0,0,0,0,0,80,2.1,9,9,3500,3000,9,999999999,102,0,0,88,0.2,0,0 +1998,6,15,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,24,56,98697,0,0,455,0,0,0,0,0,0,0,90,1.5,5,5,3000,77777,9,999999999,102,0,0,88,0.2,0,0 +1998,6,15,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,34,24,56,98697,0,0,455,0,0,0,0,0,0,0,97,0,5,5,3000,77777,9,999999999,102,0,0,88,0.2,0,0 +1998,6,15,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,23,59,98680,0,0,442,0,0,0,0,0,0,0,70,2.1,5,5,3000,77777,9,999999999,93,0,0,88,0.2,0,0 +1998,6,16,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,24,63,98680,0,0,470,0,0,0,0,0,0,0,60,1.5,9,9,3000,3000,9,999999999,102,0,0,88,0.2,0,0 +1998,6,16,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,24,66,98672,0,0,464,0,0,0,0,0,0,0,90,2.1,9,9,3000,3000,9,999999999,102,0,0,88,0.2,0,0 +1998,6,16,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,24,70,98663,0,0,457,0,0,0,0,0,0,0,80,1.5,9,9,3000,3000,9,999999999,103,0,0,88,0.2,0,0 +1998,6,16,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,24,66,98672,0,0,464,0,0,0,0,0,0,0,140,0,9,9,3000,3000,9,999999999,102,0,0,88,0.2,0,0 +1998,6,16,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,25,75,98663,0,0,459,0,0,0,0,0,0,0,15,0,9,9,3000,3000,9,999999999,113,0,0,88,0.2,0,0 +1998,6,16,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,23,66,98663,11,57,456,1,0,1,109,0,109,46,110,7.7,9,9,3000,3000,9,999999999,93,0,0,88,0.2,0,0 +1998,6,16,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,26,94,98637,289,1323,442,57,0,57,5451,0,5495,2130,120,6.2,9,9,3500,3000,0,919999999,126,0,0,88,0.2,0,0 +1998,6,16,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,25,100,98619,563,1323,429,164,25,153,18280,1284,17160,6025,160,4.1,9,9,3000,2700,0,919999999,114,0,0,88,0.2,0,0 +1998,6,16,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,25,100,98619,817,1323,429,280,26,264,31341,1734,29702,10858,160,2.6,9,9,3000,2700,0,919999999,114,0,0,88,0.2,0,0 +1998,6,16,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,26,100,98628,1031,1323,436,382,55,339,43292,3715,38678,14674,20,2.1,9,9,2500,2700,0,919999999,126,0,0,88,0.2,0,0 +1998,6,16,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,25,25,100,98619,1193,1323,441,281,10,272,33207,559,32387,13049,329,3.3,10,10,2250,2700,9,999999999,114,0,0,88,0.2,0,0 +1998,6,16,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,24,100,98610,1290,1323,434,310,7,303,36891,443,36284,14433,50,4.6,10,10,2000,750,0,919999999,104,0,0,88,0.2,0,0 +1998,6,16,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,24,100,98610,1317,1323,434,318,15,303,37953,892,36439,14506,90,4.6,10,10,2000,750,0,919999999,104,0,0,88,0.2,0,0 +1998,6,16,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,26,100,98628,1271,1323,436,497,54,445,57086,3814,51525,18943,50,4.6,9,9,2500,750,0,919999999,126,0,0,88,0.2,0,0 +1998,6,16,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,26,94,98637,1155,1323,442,441,64,385,50439,4381,44377,16687,70,2.6,9,9,3000,900,0,919999999,126,0,0,88,0.2,0,0 +1998,6,16,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,25,89,98637,978,1323,441,357,27,337,40195,1901,38206,14208,80,2.1,9,9,3500,900,0,919999999,114,0,0,88,0.2,0,0 +1998,6,16,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,25,89,98637,751,1323,441,249,17,240,27791,1102,26856,9664,70,3.6,9,9,3500,900,0,919999999,114,0,0,88,0.2,0,0 +1998,6,16,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,25,89,98637,490,1323,441,133,14,128,14755,600,14256,4916,70,3.6,9,9,3500,900,0,919999999,114,0,0,88,0.2,0,0 +1998,6,16,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,26,94,98637,213,1323,442,34,0,34,3243,0,3268,1284,90,2.6,9,9,4000,1050,0,919999999,126,0,0,88,0.2,0,0 +1998,6,16,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,25,89,98637,0,1024,441,0,0,0,0,0,0,0,90,1.5,9,9,4000,3000,0,919999999,114,0,0,88,0.2,0,0 +1998,6,16,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,25,94,98628,0,0,411,0,0,0,0,0,0,0,145,0,5,5,3000,77777,0,919999999,114,0,0,88,0.2,0,0 +1998,6,16,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,25,94,98628,0,0,435,0,0,0,0,0,0,0,110,2.1,9,9,3000,3000,0,919999999,114,0,0,88,0.2,0,0 +1998,6,16,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,25,94,98628,0,0,435,0,0,0,0,0,0,0,80,1.5,9,9,3000,3000,0,919999999,114,0,0,88,0.2,0,0 +1998,6,16,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,25,94,98628,0,0,435,0,0,0,0,0,0,0,43,0,9,9,3000,3000,0,919999999,114,0,0,88,0.2,0,0 +1998,6,17,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,25,94,98628,0,0,435,0,0,0,0,0,0,0,263,0,9,9,3000,3000,0,919999999,114,0,0,88,0.2,0,0 +1998,6,17,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,25,94,98628,0,0,435,0,0,0,0,0,0,0,90,5.1,9,9,3000,3000,0,919999999,114,0,0,88,0.2,0,0 +1998,6,17,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,26,100,98628,0,0,406,0,0,0,0,0,0,0,90,2.1,3,3,2500,3000,0,919999999,126,0,0,88,0.2,0,0 +1998,6,17,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,26,26,100,98628,0,0,449,0,0,0,0,0,0,0,330,1,10,10,2350,3000,9,999999999,126,0,0,88,0.2,0,0 +1998,6,17,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,26,100,98628,0,0,436,0,0,0,0,0,0,0,135,0,9,9,2200,3000,0,919999999,126,0,0,88,0.2,0,0 +1998,6,17,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,25.5,25.5,100,98624,11,54,445,1,0,1,63,0,63,27,336,0,10,10,1600,3000,9,999999999,120,0,0,88,0.2,0,0 +1998,6,17,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25,25,100,98619,288,1323,441,34,0,34,3322,0,3349,1409,13,0,10,10,1000,3000,9,999999999,114,0,0,88,0.2,0,0 +1998,6,17,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,25,25,100,98619,562,1323,441,100,0,100,9901,0,9989,4342,27,0,10,10,1500,3000,9,999999999,114,0,0,88,0.2,0,0 +1998,6,17,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25,25,100,98619,816,1323,441,171,1,170,19776,61,19791,7853,336,0,10,10,2000,3000,9,999999999,114,0,0,88,0.2,0,0 +1998,6,17,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,26,100,98628,1031,1323,449,233,5,229,27216,283,26903,10981,8,0,10,10,1500,3000,0,919999999,126,0,0,88,0.2,0,0 +1998,6,17,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,27,100,98637,1193,1323,456,280,7,273,32963,388,32416,13093,65,0,10,10,1300,3000,0,919999999,139,0,0,88,0.2,0,0 +1998,6,17,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,27,100,98637,1290,1323,456,308,7,301,36547,401,35951,14375,293,0,10,10,1500,3000,0,919999999,139,0,0,88,0.2,0,0 +1998,6,17,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,28,94,98654,1317,1323,470,316,3,313,37374,136,37330,14883,40,1.5,10,10,1200,3000,0,919999999,153,0,0,88,0.2,0,0 +1998,6,17,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,29.3,28,93,98657,1271,1323,472,405,29,376,46944,1777,43998,16924,166,1.5,10,10,1200,3000,9,999999999,153,0,0,88,0.2,0,0 +1998,6,17,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,29.7,28,91,98660,1156,1323,461,414,68,355,47507,4184,40994,15785,32,1.5,9,9,1200,3000,9,999999999,153,0,0,88,0.2,0,0 +1998,6,17,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,28,89,98663,979,1323,430,679,539,281,77311,31437,32139,12559,10,1.5,3,3,1200,3000,0,919999999,153,0,0,88,0.2,0,0 +1998,6,17,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,29.5,27.5,89,98659,752,1323,459,263,63,227,29298,3621,25441,9330,52,2.3,9,9,2000,3000,9,999999999,146,0,0,88,0.2,0,0 +1998,6,17,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,27,89,98654,491,1323,456,133,15,127,14724,598,14175,4913,10,3.1,9,9,2800,3000,0,919999999,139,0,0,88,0.2,0,0 +1998,6,17,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,28,89,98663,214,1323,463,34,0,34,3257,0,3283,1296,154,0,9,9,3000,3000,0,919999999,153,0,0,88,0.2,0,0 +1998,6,17,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,28,100,98646,0,1031,451,0,0,0,0,0,0,0,73,0,9,9,3000,3000,0,919999999,153,0,0,88,0.2,0,0 +1998,6,17,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,27,94,98646,0,0,450,0,0,0,0,0,0,0,161,0,9,9,2500,3000,0,919999999,139,0,0,88,0.2,0,0 +1998,6,17,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,27.5,27,97,98641,0,0,459,0,0,0,0,0,0,0,11,0,10,10,2250,3000,9,999999999,139,0,0,88,0.2,0,0 +1998,6,17,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,27,100,98637,0,0,419,0,0,0,0,0,0,0,221,0,5,5,2000,77777,0,919999999,139,0,0,88,0.2,0,0 +1998,6,17,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,27,100,98637,0,0,419,0,0,0,0,0,0,0,96,0,5,5,2000,77777,0,919999999,139,0,0,88,0.2,0,0 +1998,6,18,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,27,100,98637,0,0,419,0,0,0,0,0,0,0,300,0,5,5,2000,77777,0,919999999,139,0,0,88,0.2,0,0 +1998,6,18,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,27,100,98637,0,0,419,0,0,0,0,0,0,0,325,0,5,5,1800,77777,0,919999999,139,0,0,88,0.2,0,0 +1998,6,18,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,27,100,98637,0,0,419,0,0,0,0,0,0,0,239,0,5,5,1200,77777,0,919999999,139,0,0,88,0.2,0,0 +1998,6,18,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,27,100,98637,0,0,444,0,0,0,0,0,0,0,316,0,9,9,1400,3000,0,919999999,139,0,0,88,0.2,0,0 +1998,6,18,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,27,27,100,98637,0,0,456,0,0,0,0,0,0,0,8,0.5,10,10,1433,3000,9,999999999,139,0,0,88,0.2,0,0 +1998,6,18,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,27,27,100,98637,10,51,456,1,0,1,59,0,59,25,94,1,10,10,1466,3000,9,999999999,139,0,0,88,0.2,0,0 +1998,6,18,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,27,100,98637,287,1323,444,56,0,56,5389,0,5433,2111,290,1.5,9,9,1500,3000,9,999999999,139,0,0,88,0.2,0,0 +1998,6,18,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,27,94,98646,562,1323,450,163,27,152,18103,1272,16896,5963,300,1.5,9,9,1100,3000,9,999999999,139,0,0,88,0.2,0,0 +1998,6,18,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,29.5,27,86,98659,815,1323,449,337,104,273,37484,6632,30516,11082,272,1.5,8,8,1300,3000,9,999999999,139,0,0,88,0.2,0,0 +1998,6,18,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,27,79,98672,1030,1323,468,381,45,346,43008,2978,39321,14860,350,1.5,9,9,1500,3000,9,999999999,138,0,0,88,0.2,0,0 +1998,6,18,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,27,75,98680,1192,1323,474,458,64,401,52425,4288,46170,17306,10,2.1,9,9,2800,3000,9,999999999,138,0,0,88,0.2,0,0 +1998,6,18,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,27,71,98689,1290,1323,480,505,64,443,58145,4381,51313,18978,350,2.1,9,9,3500,3000,9,999999999,138,0,0,88,0.2,0,0 +1998,6,18,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,27,71,98689,1317,1323,480,518,84,434,59949,5612,50631,18883,330,3.1,9,9,4500,3000,9,999999999,138,0,0,88,0.2,0,0 +1998,6,18,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,27,67,98697,1271,1323,452,949,694,282,112846,37689,33780,13618,10,2.1,3,3,5000,77777,9,999999999,138,0,0,88,0.2,0,0 +1998,6,18,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,28,67,98705,1156,1323,459,842,785,156,102917,33075,19162,8126,60,2.1,3,3,5000,77777,9,999999999,152,0,0,88,0.2,0,0 +1998,6,18,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,27,63,98705,979,1323,458,681,719,149,81641,32440,17947,7560,10,1.5,3,3,5000,77777,9,999999999,137,0,0,88,0.2,0,0 +1998,6,18,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,27,63,98705,753,1323,458,477,616,126,55822,26612,14845,5946,60,2.6,3,3,5000,77777,9,999999999,137,0,0,88,0.2,0,0 +1998,6,18,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,27,63,98705,492,1323,458,255,348,126,28303,13819,14023,4878,20,2.6,3,3,5000,77777,9,999999999,137,0,0,88,0.2,0,0 +1998,6,18,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,27,67,98697,215,1323,452,66,64,56,7176,0,6060,1876,50,1.5,3,3,5000,77777,9,999999999,138,0,0,88,0.2,0,0 +1998,6,18,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,33,28,75,98689,0,1037,455,0,0,0,0,0,0,0,234,0,5,5,5000,77777,9,999999999,152,0,0,88,0.2,0,0 +1998,6,18,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,32,28,79,98680,0,0,449,0,0,0,0,0,0,0,195,0,5,5,3500,77777,9,999999999,153,0,0,88,0.2,0,0 +1998,6,18,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,28,84,98672,0,0,436,0,0,0,0,0,0,0,182,0,3,3,3200,77777,9,999999999,153,0,0,88,0.2,0,0 +1998,6,18,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,29,89,98672,0,0,437,0,0,0,0,0,0,0,280,0,3,3,2000,77777,9,999999999,169,0,0,88,0.2,0,0 +1998,6,18,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,29,89,98672,0,0,437,0,0,0,0,0,0,0,318,0,3,3,2000,77777,9,999999999,169,0,0,88,0.2,0,0 +1998,6,19,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,29,94,98663,0,0,414,0,0,0,0,0,0,0,8,0,0,0,2000,77777,9,999999999,169,0,0,88,0.2,0,0 +1998,6,19,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,29,94,98663,0,0,414,0,0,0,0,0,0,0,250,2.1,0,0,2000,77777,9,999999999,169,0,0,88,0.2,0,0 +1998,6,19,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,29.5,29,97,98659,0,0,474,0,0,0,0,0,0,0,217,1,10,10,2000,77777,9,999999999,169,0,0,88,0.2,0,0 +1998,6,19,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,29,100,98654,0,0,408,0,0,0,0,0,0,0,121,0,0,0,2000,77777,9,999999999,169,0,0,88,0.2,0,0 +1998,6,19,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,29,29,100,98654,0,0,471,0,0,0,0,0,0,0,322,0.8,10,10,2000,77777,9,999999999,169,0,0,88,0.2,0,0 +1998,6,19,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,29,100,98654,9,48,433,2,0,2,161,0,162,67,250,1.5,5,5,2000,77777,9,999999999,169,0,0,88,0.2,0,0 +1998,6,19,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,28,89,98663,286,1323,430,106,130,78,11522,1424,8500,2679,280,2.6,3,3,1600,77777,9,999999999,153,0,0,88,0.2,0,0 +1998,6,19,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,27,75,98680,561,1323,441,311,407,138,34769,17852,15549,5587,290,3.1,3,3,1300,77777,9,999999999,138,0,0,88,0.2,0,0 +1998,6,19,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,26,67,98689,814,1323,445,533,634,142,62502,29969,16745,6775,280,3.6,3,3,2800,77777,9,999999999,125,0,0,88,0.2,0,0 +1998,6,19,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,23,50,98705,1029,1323,453,732,749,149,88867,38553,18155,7656,310,3.6,3,3,4500,77777,9,999999999,92,0,0,88,0.2,0,0 +1998,6,19,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,36,21.5,43,98714,1191,1323,446,895,767,204,108709,43948,24935,10306,176,3.1,1,1,5750,77777,9,999999999,79,0,0,88,0.2,0,0 +1998,6,19,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,20,37,98722,1289,1323,460,977,840,158,106531,89144,20001,11237,330,2.6,3,3,7000,77777,9,999999999,68,0,0,88,0.2,0,0 +1998,6,19,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,19,31,98739,1317,1323,471,1004,842,166,126240,46722,20985,8719,340,2.6,3,3,7000,77777,9,999999999,61,0,0,88,0.2,0,0 +1998,6,19,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,19,31,98739,1271,1323,451,974,771,233,118763,47745,28608,11657,340,4.6,0,0,8000,77777,9,999999999,61,0,0,88,0.2,0,0 +1998,6,19,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,18,28,98747,1157,1323,456,867,765,199,105470,46961,24303,10034,330,4.1,0,0,8000,77777,9,999999999,55,0,0,88,0.2,0,0 +1998,6,19,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,17,26,98747,980,1323,454,702,772,131,86024,44008,16063,6733,340,4.1,0,0,8000,77777,9,999999999,50,0,0,88,0.2,0,0 +1998,6,19,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,17,26,98747,754,1323,474,486,596,146,56900,35882,17168,6704,330,4.1,3,3,8000,77777,9,999999999,50,0,0,88,0.2,0,0 +1998,6,19,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,18,28,98747,493,1323,483,245,299,133,27350,16293,14965,5084,350,3.1,5,5,6000,77777,9,999999999,55,0,0,88,0.2,0,0 +1998,6,19,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,19,33,98730,216,1323,472,63,47,56,6962,281,6141,1883,40,1.5,5,5,6000,77777,9,999999999,61,0,0,88,0.2,0,0 +1998,6,19,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,36,21,42,98714,0,1043,463,0,0,0,0,0,0,0,69,0,5,5,4500,77777,9,999999999,75,0,0,88,0.2,0,0 +1998,6,19,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,35,23,50,98705,0,0,487,0,0,0,0,0,0,0,232,0,9,9,3000,6000,9,999999999,92,0,0,88,0.2,0,0 +1998,6,19,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,20,39,98714,0,0,489,0,0,0,0,0,0,0,340,1.5,9,9,2500,6000,9,999999999,68,0,0,88,0.2,0,0 +1998,6,19,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,21,47,98697,0,0,478,0,0,0,0,0,0,0,280,1.5,9,9,2200,6000,9,999999999,76,0,0,88,0.2,0,0 +1998,6,19,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,32,23,59,98680,0,0,468,0,0,0,0,0,0,0,324,0,9,9,2000,6000,9,999999999,93,0,0,88,0.2,0,0 +1998,6,20,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,23,63,98672,0,0,462,0,0,0,0,0,0,0,213,0,9,9,2000,6000,9,999999999,93,0,0,88,0.2,0,0 +1998,6,20,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,23,63,98672,0,0,462,0,0,0,0,0,0,0,49,0,9,9,1800,6000,9,999999999,93,0,0,88,0.2,0,0 +1998,6,20,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,23,63,98672,0,0,436,0,0,0,0,0,0,0,249,0,5,5,2000,77777,9,999999999,93,0,0,88,0.2,0,0 +1998,6,20,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,21,59,98663,0,0,453,0,0,0,0,0,0,0,315,0,9,9,2000,6000,9,999999999,76,0,0,88,0.2,0,0 +1998,6,20,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,20,55,98663,0,0,427,0,0,0,0,0,0,0,81,0,5,5,2000,77777,9,999999999,69,0,0,88,0.2,0,0 +1998,6,20,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,21,62,98654,9,44,422,2,0,2,150,0,151,62,242,0,5,5,2000,77777,9,999999999,76,0,0,88,0.2,0,0 +1998,6,20,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,20,52,98672,285,1322,432,101,104,78,11053,2479,8616,2679,307,0,5,5,2500,77777,9,999999999,69,0,0,88,0.2,0,0 +1998,6,20,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,21,49,98689,560,1322,445,295,311,164,32854,18206,18288,6273,270,3.1,5,5,2500,77777,9,999999999,76,0,0,88,0.2,0,0 +1998,6,20,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,22,47,98705,813,1322,485,280,38,256,31525,2672,29033,10632,290,3.1,9,9,3000,6000,9,999999999,83,0,0,88,0.2,0,0 +1998,6,20,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,21,42,98714,1029,1322,490,384,64,334,43848,4742,38450,14528,300,3.1,9,9,4500,6000,9,999999999,75,0,0,88,0.2,0,0 +1998,6,20,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,21,40,98722,1191,1322,497,462,66,402,53323,5108,46749,17353,300,3.1,9,9,5000,6000,9,999999999,75,0,0,88,0.2,0,0 +1998,6,20,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,20,33,98739,1289,1322,508,511,67,445,59329,5328,52091,19052,300,2.6,9,9,6000,6000,9,999999999,68,0,0,88,0.2,0,0 +1998,6,20,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,18,28,98747,1317,1322,511,526,68,458,61293,5573,53776,19548,300,3.6,9,9,6000,6000,9,999999999,55,0,0,88,0.2,0,0 +1998,6,20,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,18,27,98755,1272,1322,518,504,68,439,58574,5538,51332,18773,90,2.6,9,9,7000,6000,9,999999999,55,0,0,88,0.2,0,0 +1998,6,20,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,18,27,98755,1157,1322,518,448,67,389,51729,5394,45233,16806,60,2.6,9,9,7000,6000,9,999999999,55,0,0,88,0.2,0,0 +1998,6,20,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,18,27,98755,981,1322,518,362,32,339,41190,2551,38753,14290,110,1.5,9,9,7000,6000,9,999999999,55,0,0,88,0.2,0,0 +1998,6,20,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,18.8,29,98747,755,1322,513,254,54,223,28696,3788,25332,9239,90,3.6,9,9,7000,6000,9,999999999,60,0,0,88,0.2,0,0 +1998,6,20,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,38.8,19.6,33,98736,494,1322,451,263,342,136,29334,18210,15168,5147,337,2.7,0,0,6125,6000,9,999999999,65,0,0,88,0.2,0,0 +1998,6,20,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,37.5,20.4,37,98726,218,1322,445,69,75,56,7523,362,6199,1901,249,1.8,0,0,5250,6000,9,999999999,71,0,0,88,0.2,0,0 +1998,6,20,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,36.2,21.2,42,98716,0,1048,447,0,0,0,0,0,0,0,95,0.9,1,1,4375,6000,9,999999999,77,0,0,88,0.2,0,0 +1998,6,20,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,35,22,47,98705,0,0,485,0,0,0,0,0,0,0,218,0,9,9,3500,6000,9,999999999,83,0,0,88,0.2,0,0 +1998,6,20,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,21,44,98705,0,0,457,0,0,0,0,0,0,0,140,2.6,5,5,2500,77777,9,999999999,75,0,0,88,0.2,0,0 +1998,6,20,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,21,47,98697,0,0,451,0,0,0,0,0,0,0,160,2.1,5,5,2500,77777,9,999999999,76,0,0,88,0.2,0,0 +1998,6,20,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,19,41,98697,0,0,423,0,0,0,0,0,0,0,180,2.1,0,0,3500,77777,9,999999999,62,0,0,88,0.2,0,0 +1998,6,21,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,18,39,98697,0,0,422,0,0,0,0,0,0,0,180,1.5,0,0,3500,77777,9,999999999,56,0,0,88,0.2,0,0 +1998,6,21,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,17,36,98697,0,0,439,0,0,0,0,0,0,0,170,2.1,3,3,3500,77777,9,999999999,51,0,0,88,0.2,0,0 +1998,6,21,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,15,32,98697,0,0,443,0,0,0,0,0,0,0,110,5.1,5,5,3500,77777,9,999999999,41,0,0,88,0.2,0,0 +1998,6,21,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,24,74,98654,0,0,426,0,0,0,0,0,0,0,110,5.1,5,5,2500,77777,9,999999999,103,0,0,88,0.2,0,0 +1998,6,21,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,28,100,98646,0,0,426,0,0,0,0,0,0,0,110,4.1,5,5,2000,77777,9,999999999,153,0,0,88,0.2,0,0 +1998,6,21,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,28,100,98646,8,39,426,1,0,1,133,0,134,56,90,4.1,5,5,1800,77777,9,999999999,153,0,0,88,0.2,0,0 +1998,6,21,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,28,94,98654,284,1322,431,99,98,78,10742,1053,8485,2669,110,3.6,5,5,1500,77777,9,999999999,153,0,0,88,0.2,0,0 +1998,6,21,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,28,94,98654,559,1322,431,291,331,151,32245,14694,16853,5947,90,4.6,5,5,1500,77777,9,999999999,153,0,0,88,0.2,0,0 +1998,6,21,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,29,84,98680,812,1322,443,528,623,145,61544,25941,17009,6901,70,2.6,3,3,3000,77777,9,999999999,169,0,0,88,0.2,0,0 +1998,6,21,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,35,27,63,98705,1028,1322,458,726,731,158,87209,33335,19024,8042,268,0,3,3,5000,77777,9,999999999,137,0,0,88,0.2,0,0 +1998,6,21,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,26,57,98714,1190,1322,463,876,765,188,106468,37282,22970,9605,290,1.5,3,3,5000,77777,9,999999999,124,0,0,88,0.2,0,0 +1998,6,21,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,26,51,98730,1289,1322,482,912,596,331,107502,35843,39290,15458,20,2.6,5,5,5000,77777,9,999999999,124,0,0,88,0.2,0,0 +1998,6,21,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,24,43,98739,1316,1322,486,939,637,304,112181,38690,36610,14564,250,3.6,5,5,5000,77777,9,999999999,101,0,0,88,0.2,0,0 +1998,6,21,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,23,36,98755,1272,1322,497,902,647,279,107911,39366,33659,13510,180,4.1,5,5,5000,77777,9,999999999,91,0,0,88,0.2,0,0 +1998,6,21,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,25,43,98747,1157,1322,493,799,611,264,94311,35672,31352,12666,70,2.6,5,5,4000,77777,9,999999999,112,0,0,88,0.2,0,0 +1998,6,21,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,26,46,98747,981,1322,495,645,594,204,75612,31700,24046,9852,80,2.1,5,5,3500,77777,9,999999999,123,0,0,88,0.2,0,0 +1998,6,21,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,27,51,98739,756,1322,490,452,488,173,51607,24493,19853,7683,80,3.1,5,5,3500,77777,9,999999999,137,0,0,88,0.2,0,0 +1998,6,21,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,27,54,98730,495,1322,484,243,286,136,26785,12031,15046,5161,90,3.1,5,5,3500,77777,9,999999999,137,0,0,88,0.2,0,0 +1998,6,21,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,27,57,98722,219,1322,477,64,46,56,6943,0,6142,1906,100,3.6,5,5,3500,77777,9,999999999,137,0,0,88,0.2,0,0 +1998,6,21,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,27,60,98714,0,1054,464,0,0,0,0,0,0,0,90,4.1,3,3,3500,77777,9,999999999,137,0,0,88,0.2,0,0 +1998,6,21,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,27,63,98705,0,0,458,0,0,0,0,0,0,0,80,3.6,3,3,3500,77777,9,999999999,137,0,0,88,0.2,0,0 +1998,6,21,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,28,71,98697,0,0,454,0,0,0,0,0,0,0,100,3.1,3,3,3500,77777,9,999999999,152,0,0,88,0.2,0,0 +1998,6,21,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,28,75,98689,0,0,448,0,0,0,0,0,0,0,110,4.1,3,3,3200,77777,9,999999999,152,0,0,88,0.2,0,0 +1998,6,21,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,28,75,98689,0,0,448,0,0,0,0,0,0,0,100,2.6,3,3,3200,77777,9,999999999,152,0,0,88,0.2,0,0 +1998,6,22,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,27,71,98689,0,0,446,0,0,0,0,0,0,0,100,3.1,3,3,3200,77777,9,999999999,138,0,0,88,0.2,0,0 +1998,6,22,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,27,79,98672,0,0,435,0,0,0,0,0,0,0,110,2.6,3,3,3200,77777,9,999999999,138,0,0,88,0.2,0,0 +1998,6,22,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,27,79,98672,0,0,435,0,0,0,0,0,0,0,130,2.1,3,3,3200,77777,9,999999999,138,0,0,88,0.2,0,0 +1998,6,22,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,27,79,98672,0,0,435,0,0,0,0,0,0,0,110,3.1,3,3,2500,77777,9,999999999,138,0,0,88,0.2,0,0 +1998,6,22,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,27,84,98663,0,0,436,0,0,0,0,0,0,0,120,3.6,5,5,2200,77777,9,999999999,138,0,0,88,0.2,0,0 +1998,6,22,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,29,100,98654,7,34,433,1,0,1,116,0,117,49,100,3.6,5,5,2000,77777,9,999999999,169,0,0,88,0.2,0,0 +1998,6,22,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,29,94,98663,283,1322,432,104,127,77,11295,1032,8394,2649,120,5.1,3,3,2800,77777,9,999999999,169,0,0,88,0.2,0,0 +1998,6,22,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,31,29,89,98672,558,1322,470,170,36,155,18739,1562,17130,6025,120,3.1,9,9,3000,77777,9,999999999,169,0,0,88,0.2,0,0 +1998,6,22,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,29,80,98689,812,1322,449,528,562,183,60339,26308,21000,8298,180,1.5,3,3,3500,77777,9,999999999,168,0,0,88,0.2,0,0 +1998,6,22,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,35,28,67,98705,1027,1322,459,724,726,160,86729,31822,19224,8134,172,0,3,3,4000,77777,9,999999999,152,0,0,88,0.2,0,0 +1998,6,22,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,27,60,98714,1190,1322,464,874,797,157,107499,35012,19385,8194,300,2.6,3,3,4000,77777,9,999999999,137,0,0,88,0.2,0,0 +1998,6,22,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,24,45,98730,1288,1322,472,970,826,165,120885,40466,20694,8657,300,3.6,3,3,4000,77777,9,999999999,101,0,0,88,0.2,0,0 +1998,6,22,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,39,24.5,44,98739,1316,1322,468,1007,848,163,112297,91865,20507,16714,136,2.8,1,1,4000,77777,9,999999999,106,0,0,88,0.2,0,0 +1998,6,22,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,25,43,98747,1272,1322,486,953,823,161,118602,38830,20158,8457,130,2.1,3,3,4000,77777,9,999999999,112,0,0,88,0.2,0,0 +1998,6,22,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,25,43,98747,1158,1322,486,848,801,147,104665,37544,18181,7692,80,1.5,3,3,4000,77777,9,999999999,112,0,0,88,0.2,0,0 +1998,6,22,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,26,46,98747,982,1322,487,685,724,148,82320,33874,17822,7504,40,1.5,3,3,4000,77777,9,999999999,123,0,0,88,0.2,0,0 +1998,6,22,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,27,51,98739,756,1322,482,480,618,127,56217,26713,14869,5964,70,3.6,3,3,3000,77777,9,999999999,137,0,0,88,0.2,0,0 +1998,6,22,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,28,57,98730,496,1322,478,258,349,127,28562,13291,14136,4934,70,2.6,3,3,3000,77777,9,999999999,151,0,0,88,0.2,0,0 +1998,6,22,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,28,60,98722,220,1322,472,68,68,57,7397,0,6195,1923,90,2.6,3,3,3000,77777,9,999999999,151,0,0,88,0.2,0,0 +1998,6,22,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,24,56,98697,0,1058,455,0,0,0,0,0,0,0,100,2.6,5,5,3000,77777,9,999999999,102,0,0,88,0.2,0,0 +1998,6,22,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,24,56,98697,0,0,448,0,0,0,0,0,0,0,110,1,3,3,2800,77777,9,999999999,102,0,0,88,0.2,0,0 +1998,6,22,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,25,60,98697,0,0,450,0,0,0,0,0,0,0,90,1,3,3,2300,77777,9,999999999,113,0,0,88,0.2,0,0 +1998,6,22,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,25,60,98697,0,0,450,0,0,0,0,0,0,0,100,1,3,3,2300,77777,9,999999999,113,0,0,88,0.2,0,0 +1998,6,22,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,33,26,67,98689,0,0,445,0,0,0,0,0,0,0,348,0,3,3,2200,77777,9,999999999,125,0,0,88,0.2,0,0 +1998,6,23,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,26,67,98689,0,0,445,0,0,0,0,0,0,0,110,2.6,3,3,2000,77777,9,999999999,125,0,0,88,0.2,0,0 +1998,6,23,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,25,63,98689,0,0,444,0,0,0,0,0,0,0,90,2.1,3,3,2000,77777,9,999999999,113,0,0,88,0.2,0,0 +1998,6,23,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,25,67,98680,0,0,438,0,0,0,0,0,0,0,160,1,3,3,2000,77777,9,999999999,113,0,0,88,0.2,0,0 +1998,6,23,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,25,70,98672,0,0,432,0,0,0,0,0,0,0,170,1,3,3,2000,77777,9,999999999,113,0,0,88,0.2,0,0 +1998,6,23,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,31,25.5,73,98672,0,0,444,0,0,0,0,0,0,0,44,1,6,6,2200,77777,9,999999999,119,0,0,88,0.2,0,0 +1998,6,23,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26,75,98672,6,29,434,1,0,1,105,0,106,44,320,1,3,3,2400,77777,9,999999999,125,0,0,88,0.2,0,0 +1998,6,23,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,25,67,98680,282,1322,438,104,128,77,11371,2022,8414,2635,250,3.6,3,3,2500,77777,9,999999999,113,0,0,88,0.2,0,0 +1998,6,23,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,22,53,98689,557,1322,421,314,432,132,35515,21966,15005,5383,280,4.6,0,0,2800,77777,9,999999999,84,0,0,88,0.2,0,0 +1998,6,23,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,22,47,98705,811,1322,433,540,645,144,63602,34795,17065,6851,290,7.2,0,0,3200,77777,9,999999999,83,0,0,88,0.2,0,0 +1998,6,23,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,24,48,98722,1026,1322,466,728,744,151,88167,37298,18315,7727,310,5.1,3,3,3500,77777,9,999999999,101,0,0,88,0.2,0,0 +1998,6,23,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,25,48,98730,1189,1322,473,877,808,150,108489,37906,18642,7870,330,4.1,3,3,3500,77777,9,999999999,112,0,0,88,0.2,0,0 +1998,6,23,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,26,48,98739,1288,1322,481,967,819,169,119903,37598,21085,8837,330,3.1,3,3,4000,77777,9,999999999,124,0,0,88,0.2,0,0 +1998,6,23,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,24,40,98747,1316,1322,484,996,778,222,121885,41668,27266,11214,290,5.1,3,3,4500,77777,9,999999999,101,0,0,88,0.2,0,0 +1998,6,23,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,24,38,98755,1272,1322,498,900,606,317,106588,37986,37819,14926,300,5.1,5,5,5000,77777,9,999999999,101,0,0,88,0.2,0,0 +1998,6,23,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,25,43,98747,1158,1322,493,800,611,264,94401,35674,31404,12685,80,5.1,5,5,6000,77777,9,999999999,112,0,0,88,0.2,0,0 +1998,6,23,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,25,43,98747,983,1322,493,647,597,203,76025,32852,24015,9832,130,2.6,5,5,5000,77777,9,999999999,112,0,0,88,0.2,0,0 +1998,6,23,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,24,53,98705,757,1322,461,456,494,173,52290,27362,19908,7678,350,3.1,5,5,3500,77777,9,999999999,102,0,0,88,0.2,0,0 +1998,6,23,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,24,53,98705,497,1322,461,245,292,136,27219,13838,15108,5167,60,5.1,5,5,4000,77777,9,999999999,102,0,0,88,0.2,0,0 +1998,6,23,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,24,53,98705,221,1322,461,65,49,57,7109,30,6242,1928,60,2.1,5,5,4000,77777,9,999999999,102,0,0,88,0.2,0,0 +1998,6,23,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,25,56,98705,0,1063,463,0,0,0,0,0,0,0,340,1,5,5,3000,77777,9,999999999,112,0,0,88,0.2,0,0 +1998,6,23,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,25,60,98697,0,0,457,0,0,0,0,0,0,0,90,1,5,5,3000,77777,9,999999999,113,0,0,88,0.2,0,0 +1998,6,23,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,33.5,25.5,63,98693,0,0,454,0,0,0,0,0,0,0,175,1,5,5,2750,77777,9,999999999,119,0,0,88,0.2,0,0 +1998,6,23,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,26,67,98689,0,0,445,0,0,0,0,0,0,0,90,1,3,3,2500,77777,9,999999999,125,0,0,88,0.2,0,0 +1998,6,23,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,26,71,98680,0,0,439,0,0,0,0,0,0,0,100,1,3,3,2000,77777,9,999999999,125,0,0,88,0.2,0,0 +1998,6,24,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,26,71,98680,0,0,446,0,0,0,0,0,0,0,100,1,5,5,2000,77777,9,999999999,125,0,0,88,0.2,0,0 +1998,6,24,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,27,79,98672,0,0,442,0,0,0,0,0,0,0,240,2.1,5,5,2000,77777,9,999999999,138,0,0,88,0.2,0,0 +1998,6,24,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,27,79,98672,0,0,442,0,0,0,0,0,0,0,250,1.5,5,5,2000,77777,9,999999999,138,0,0,88,0.2,0,0 +1998,6,24,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26,75,98672,0,0,440,0,0,0,0,0,0,0,250,2.6,5,5,2000,77777,9,999999999,125,0,0,88,0.2,0,0 +1998,6,24,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,31,25.5,73,98672,0,0,444,0,0,0,0,0,0,0,1,1.3,6,6,2000,77777,9,999999999,119,0,0,88,0.2,0,0 +1998,6,24,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,25,70,98672,5,23,439,1,0,1,80,0,81,34,117,0,5,5,2000,77777,9,999999999,113,0,0,88,0.2,0,0 +1998,6,24,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,27,75,98680,281,1322,447,97,96,77,10577,1154,8391,2632,270,1,5,5,2000,77777,9,999999999,138,0,0,88,0.2,0,0 +1998,6,24,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,26,63,98697,556,1322,458,290,332,150,32209,15970,16757,5891,340,1,5,5,1600,77777,9,999999999,124,0,0,88,0.2,0,0 +1998,6,24,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,26,63,98697,810,1322,458,498,510,186,57208,27229,21435,8398,110,2.6,5,5,2000,77777,9,999999999,124,0,0,88,0.2,0,0 +1998,6,24,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,26,60,98705,1025,1322,457,725,689,191,85944,35230,22720,9453,60,2.1,3,3,2500,77777,9,999999999,124,0,0,88,0.2,0,0 +1998,6,24,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,26,51,98730,1188,1322,455,886,801,166,108636,37398,20496,8629,100,1.5,0,0,3000,77777,9,999999999,124,0,0,88,0.2,0,0 +1998,6,24,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,26,51,98730,1288,1322,455,979,846,154,110344,92434,19672,10927,90,3.1,0,0,3000,77777,9,999999999,124,0,0,88,0.2,0,0 +1998,6,24,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,26,51,98730,1316,1322,475,993,770,226,120947,38909,27651,11389,70,3.1,3,3,3000,77777,9,999999999,124,0,0,88,0.2,0,0 +1998,6,24,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,24,43,98739,1272,1322,486,900,587,335,106143,37746,39805,15565,360,2.1,5,5,3000,77777,9,999999999,101,0,0,88,0.2,0,0 +1998,6,24,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,22,36,98747,1159,1322,481,853,738,206,103047,42269,24998,10333,40,3.1,3,3,3500,77777,9,999999999,83,0,0,88,0.2,0,0 +1998,6,24,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,21,36,98739,983,1322,481,652,592,212,76752,36640,25053,10158,40,1.5,5,5,4000,77777,9,999999999,75,0,0,88,0.2,0,0 +1998,6,24,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,22,40,98730,758,1322,476,458,503,170,52768,29099,19628,7574,50,1,5,5,4000,77777,9,999999999,83,0,0,88,0.2,0,0 +1998,6,24,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,21,38,98730,498,1322,475,247,298,135,27548,15359,15121,5160,70,1,5,5,4000,77777,9,999999999,75,0,0,88,0.2,0,0 +1998,6,24,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,24,48,98722,222,1322,473,66,50,57,7157,44,6272,1937,50,1,5,5,4000,77777,9,999999999,101,0,0,88,0.2,0,0 +1998,6,24,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,24,50,98714,0,1067,460,0,0,0,0,0,0,0,80,1,3,3,3500,77777,9,999999999,102,0,0,88,0.2,0,0 +1998,6,24,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,35,25,56,98705,0,0,455,0,0,0,0,0,0,0,274,0,3,3,3000,77777,9,999999999,112,0,0,88,0.2,0,0 +1998,6,24,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,23,47,98714,0,0,459,0,0,0,0,0,0,0,130,3.1,3,3,2400,77777,9,999999999,92,0,0,88,0.2,0,0 +1998,6,24,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,23,47,98714,0,0,459,0,0,0,0,0,0,0,110,1,3,3,2400,77777,9,999999999,92,0,0,88,0.2,0,0 +1998,6,24,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,25,60,98697,0,0,457,0,0,0,0,0,0,0,100,2.1,5,5,2200,77777,9,999999999,113,0,0,88,0.2,0,0 +1998,6,25,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,34,26,63,98697,0,0,458,0,0,0,0,0,0,0,181,0,5,5,2000,77777,9,999999999,124,0,0,88,0.2,0,0 +1998,6,25,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,33,26,67,98689,0,0,452,0,0,0,0,0,0,0,168,0,5,5,2000,77777,9,999999999,125,0,0,88,0.2,0,0 +1998,6,25,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,26,67,98689,0,0,479,0,0,0,0,0,0,0,80,1,9,9,2000,3000,9,999999999,125,0,0,88,0.2,0,0 +1998,6,25,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,27,71,98689,0,0,480,0,0,0,0,0,0,0,110,1,9,9,2000,3000,9,999999999,138,0,0,88,0.2,0,0 +1998,6,25,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,25,67,98680,0,0,471,0,0,0,0,0,0,0,70,3.6,9,9,2500,3000,9,999999999,113,0,0,88,0.2,0,0 +1998,6,25,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,26,71,98680,2,17,472,0,0,0,33,0,33,14,90,1,9,9,2500,3000,9,999999999,125,0,0,88,0.2,0,0 +1998,6,25,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,25,63,98689,280,1322,477,54,0,54,5188,0,5229,2027,210,1,9,9,2500,3000,9,999999999,113,0,0,88,0.2,0,0 +1998,6,25,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,26,63,98697,555,1322,458,289,299,163,31851,15151,18120,6235,240,2.6,5,5,2800,77777,9,999999999,124,0,0,88,0.2,0,0 +1998,6,25,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,25,56,98705,809,1322,463,498,513,185,57295,28170,21338,8351,270,2.6,5,5,3500,77777,9,999999999,112,0,0,88,0.2,0,0 +1998,6,25,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,25,50,98722,1025,1322,467,725,692,189,86179,36485,22530,9368,300,4.1,3,3,3500,77777,9,999999999,112,0,0,88,0.2,0,0 +1998,6,25,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,23,42,98730,1188,1322,471,878,818,144,109317,40464,17948,7568,270,3.6,3,3,4000,77777,9,999999999,92,0,0,88,0.2,0,0 +1998,6,25,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,23,40,98739,1287,1322,477,971,829,163,121212,41746,20469,8556,280,4.1,3,3,4000,77777,9,999999999,92,0,0,88,0.2,0,0 +1998,6,25,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,23,38,98747,1316,1322,483,997,827,174,124440,42176,21765,9065,320,3.1,3,3,4000,77777,9,999999999,91,0,0,88,0.2,0,0 +1998,6,25,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,22,34,98755,1272,1322,487,958,834,156,105543,89199,19836,9669,270,2.6,3,3,4000,77777,9,999999999,83,0,0,88,0.2,0,0 +1998,6,25,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,42,21,30,98763,1159,1322,492,855,785,166,105048,42952,20527,8596,300,3.6,3,3,4500,77777,9,999999999,75,0,0,88,0.2,0,0 +1998,6,25,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,42,21,30,98763,984,1322,500,653,592,212,76802,36641,25085,10171,290,4.1,5,5,4500,77777,9,999999999,75,0,0,88,0.2,0,0 +1998,6,25,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,26,46,98747,759,1322,495,455,470,186,51797,25316,21247,8130,30,5.1,5,5,4500,77777,9,999999999,123,0,0,88,0.2,0,0 +1998,6,25,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,25,43,98747,499,1322,486,261,356,127,29082,15583,14192,4940,40,2.6,3,3,4500,77777,9,999999999,112,0,0,88,0.2,0,0 +1998,6,25,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,25,48,98730,222,1322,481,66,49,57,7169,0,6287,1945,100,2.1,5,5,3500,77777,9,999999999,112,0,0,88,0.2,0,0 +1998,6,25,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,26,54,98722,0,1070,469,0,0,0,0,0,0,0,100,1.5,3,3,3500,77777,9,999999999,124,0,0,88,0.2,0,0 +1998,6,25,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,26,57,98714,0,0,463,0,0,0,0,0,0,0,100,2.1,3,3,2500,77777,9,999999999,124,0,0,88,0.2,0,0 +1998,6,25,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,26,60,98705,0,0,457,0,0,0,0,0,0,0,110,2.6,3,3,2500,77777,9,999999999,124,0,0,88,0.2,0,0 +1998,6,25,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,26,60,98705,0,0,457,0,0,0,0,0,0,0,110,1.5,3,3,2500,77777,9,999999999,124,0,0,88,0.2,0,0 +1998,6,25,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,27,63,98705,0,0,458,0,0,0,0,0,0,0,100,1,3,3,2500,77777,9,999999999,137,0,0,88,0.2,0,0 +1998,6,26,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,27,63,98705,0,0,465,0,0,0,0,0,0,0,80,1.5,5,5,2500,77777,9,999999999,137,0,0,88,0.2,0,0 +1998,6,26,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,34,26,63,98697,0,0,458,0,0,0,0,0,0,0,221,0,5,5,2500,77777,9,999999999,124,0,0,88,0.2,0,0 +1998,6,26,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,26,67,98689,0,0,452,0,0,0,0,0,0,0,120,4.1,5,5,2500,77777,9,999999999,125,0,0,88,0.2,0,0 +1998,6,26,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,27,75,98680,0,0,447,0,0,0,0,0,0,0,120,3.6,5,5,2500,77777,9,999999999,138,0,0,88,0.2,0,0 +1998,6,26,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,27,75,98680,0,0,447,0,0,0,0,0,0,0,100,3.6,5,5,2800,77777,9,999999999,138,0,0,88,0.2,0,0 +1998,6,26,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,27,79,98672,2,11,442,0,0,0,37,0,38,16,110,5.1,5,5,2800,77777,9,999999999,138,0,0,88,0.2,0,0 +1998,6,26,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,28,84,98672,279,1322,443,96,93,76,10373,871,8291,2604,100,4.1,5,5,2800,77777,9,999999999,153,0,0,88,0.2,0,0 +1998,6,26,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,27,75,98680,553,1322,447,287,328,150,31856,15120,16712,5876,90,4.6,5,5,3000,77777,9,999999999,138,0,0,88,0.2,0,0 +1998,6,26,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,28,71,98697,808,1322,461,495,500,189,56494,24974,21710,8505,150,5.1,5,5,3500,77777,9,999999999,152,0,0,88,0.2,0,0 +1998,6,26,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,35.5,27.5,63,98710,1024,1322,469,695,642,198,81936,31505,23445,9742,122,4.6,5,5,3500,77777,9,999999999,144,0,0,88,0.2,0,0 +1998,6,26,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,27,57,98722,1187,1322,477,822,602,281,96648,33586,33293,13389,80,4.1,5,5,3500,77777,9,999999999,137,0,0,88,0.2,0,0 +1998,6,26,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,28,54,98739,1287,1322,491,907,623,301,107364,33384,35845,14359,110,1.5,5,5,4000,77777,9,999999999,151,0,0,88,0.2,0,0 +1998,6,26,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,26,48,98739,1316,1322,488,935,628,311,111256,36292,37175,14790,100,3.1,5,5,4000,77777,9,999999999,124,0,0,88,0.2,0,0 +1998,6,26,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,22,36,98747,1272,1322,489,904,650,278,108366,40379,33492,13439,40,2.6,5,5,4000,77777,9,999999999,83,0,0,88,0.2,0,0 +1998,6,26,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,24,40,98747,1159,1322,492,802,614,263,94847,36778,31342,12649,60,3.6,5,5,5000,77777,9,999999999,101,0,0,88,0.2,0,0 +1998,6,26,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,41,24,38,98755,984,1322,498,650,600,203,76457,33938,24014,9824,40,2.6,5,5,5000,77777,9,999999999,101,0,0,88,0.2,0,0 +1998,6,26,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,23,38,98747,759,1322,490,458,481,182,52456,28024,20893,7993,100,2.1,5,5,5000,77777,9,999999999,91,0,0,88,0.2,0,0 +1998,6,26,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,22,38,98739,500,1322,483,248,296,136,27576,14953,15182,5187,70,3.1,5,5,5000,77777,9,999999999,83,0,0,88,0.2,0,0 +1998,6,26,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,22,40,98730,223,1322,476,66,51,58,7265,221,6341,1954,80,1,5,5,3000,77777,9,999999999,83,0,0,88,0.2,0,0 +1998,6,26,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,24,48,98722,0,1073,473,0,0,0,0,0,0,0,100,1,5,5,3000,77777,9,999999999,101,0,0,88,0.2,0,0 +1998,6,26,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,24,50,98714,0,0,460,0,0,0,0,0,0,0,110,1,3,3,2500,77777,9,999999999,102,0,0,88,0.2,0,0 +1998,6,26,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,24,53,98705,0,0,454,0,0,0,0,0,0,0,110,1,3,3,2500,77777,9,999999999,102,0,0,88,0.2,0,0 +1998,6,26,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,26,63,98697,0,0,451,0,0,0,0,0,0,0,120,4.6,3,3,2500,77777,9,999999999,124,0,0,88,0.2,0,0 +1998,6,26,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,28,75,98689,0,0,448,0,0,0,0,0,0,0,120,5.1,3,3,2500,77777,9,999999999,152,0,0,88,0.2,0,0 +1998,6,27,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,29,84,98680,0,0,443,0,0,0,0,0,0,0,140,7.2,3,3,2800,77777,9,999999999,169,0,0,88,0.2,0,0 +1998,6,27,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,29,84,98680,0,0,443,0,0,0,0,0,0,0,120,6.2,3,3,3000,77777,9,999999999,169,0,0,88,0.2,0,0 +1998,6,27,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,31.5,29,87,98676,0,0,474,0,0,0,0,0,0,0,312,6.2,9,9,3000,77777,9,999999999,169,0,0,88,0.2,0,0 +1998,6,27,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,29,89,98672,0,0,444,0,0,0,0,0,0,0,120,6.2,5,5,3000,77777,9,999999999,169,0,0,88,0.2,0,0 +1998,6,27,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,28,89,98663,0,0,437,0,0,0,0,0,0,0,120,5.1,5,5,3000,77777,9,999999999,153,0,0,88,0.2,0,0 +1998,6,27,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,28,89,98663,0,0,437,0,0,0,0,0,0,0,120,6.2,5,5,3000,77777,9,999999999,153,0,0,88,0.2,0,0 +1998,6,27,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,30.5,28.5,89,98667,277,1326,467,56,0,56,5330,0,5373,2075,62,5.1,9,9,3000,77777,9,999999999,161,0,0,88,0.2,0,0 +1998,6,27,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,29,89,98672,552,1322,444,285,292,163,31288,13030,18010,6219,130,4.1,5,5,3000,77777,9,999999999,169,0,0,88,0.2,0,0 +1998,6,27,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,29,80,98689,806,1322,456,493,447,220,55483,23297,24938,9525,110,4.1,5,5,3000,77777,9,999999999,168,0,0,88,0.2,0,0 +1998,6,27,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,28,75,98689,1023,1322,482,376,54,335,42529,3419,38057,14501,100,4.6,9,9,3000,3000,9,999999999,152,0,0,88,0.2,0,0 +1998,6,27,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,28,75,98689,1186,1322,482,455,63,398,51935,4111,45777,17208,120,5.1,9,9,3500,3000,9,999999999,152,0,0,88,0.2,0,0 +1998,6,27,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,29,71,98705,1286,1322,496,502,63,440,57559,4042,50872,18905,90,3.1,9,9,3500,3000,9,999999999,168,0,0,88,0.2,0,0 +1998,6,27,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,28,67,98705,1316,1322,494,517,64,453,59491,4231,52576,19420,110,4.1,9,9,3500,3000,9,999999999,152,0,0,88,0.2,0,0 +1998,6,27,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,28,60,98722,1273,1322,507,496,83,416,57157,5353,48260,18140,120,6.2,9,9,5000,3000,9,999999999,151,0,0,88,0.2,0,0 +1998,6,27,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,27,57,98722,1160,1322,477,798,557,309,92791,32913,36198,14314,90,4.1,5,5,6000,77777,9,999999999,137,0,0,88,0.2,0,0 +1998,6,27,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,26,51,98730,985,1322,475,688,723,149,82611,33914,17934,7552,100,4.1,3,3,6000,77777,9,999999999,124,0,0,88,0.2,0,0 +1998,6,27,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,26,51,98730,760,1322,475,484,601,138,56390,28170,16201,6445,90,5.1,3,3,6000,77777,9,999999999,124,0,0,88,0.2,0,0 +1998,6,27,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,27,57,98722,500,1322,470,261,353,128,29006,14261,14241,4972,90,5.7,3,3,6000,77777,9,999999999,137,0,0,88,0.2,0,0 +1998,6,27,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,27,60,98714,224,1322,464,70,72,58,7637,0,6336,1966,110,4.6,3,3,6000,77777,9,999999999,137,0,0,88,0.2,0,0 +1998,6,27,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,27,63,98705,0,1076,458,0,0,0,0,0,0,0,110,3.1,3,3,4000,77777,9,999999999,137,0,0,88,0.2,0,0 +1998,6,27,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,27,63,98705,0,0,465,0,0,0,0,0,0,0,110,4.6,5,5,3500,77777,9,999999999,137,0,0,88,0.2,0,0 +1998,6,27,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,26,60,98705,0,0,464,0,0,0,0,0,0,0,110,7.2,5,5,3500,77777,9,999999999,124,0,0,88,0.2,0,0 +1998,6,27,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,25,60,98697,0,0,457,0,0,0,0,0,0,0,110,6.2,5,5,3500,77777,9,999999999,113,0,0,88,0.2,0,0 +1998,6,27,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,26,67,98689,0,0,445,0,0,0,0,0,0,0,110,6.2,3,3,3500,77777,9,999999999,125,0,0,88,0.2,0,0 +1998,6,28,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,26,71,98680,0,0,439,0,0,0,0,0,0,0,110,7.7,3,3,3500,77777,9,999999999,125,0,0,88,0.2,0,0 +1998,6,28,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,26,71,98680,0,0,472,0,0,0,0,0,0,0,110,7.7,9,9,3500,3000,9,999999999,125,0,0,88,0.2,0,0 +1998,6,28,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,27,79,98672,0,0,468,0,0,0,0,0,0,0,110,5.1,9,9,3000,3000,9,999999999,138,0,0,88,0.2,0,0 +1998,6,28,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,27,79,98672,0,0,468,0,0,0,0,0,0,0,180,2.6,9,9,3000,3000,9,999999999,138,0,0,88,0.2,0,0 +1998,6,28,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,23,70,98654,0,0,450,0,0,0,0,0,0,0,270,6.2,9,9,3000,3000,9,999999999,93,0,0,88,0.2,0,0 +1998,6,28,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,25,89,98637,0,0,441,0,0,0,0,0,0,0,120,4.1,9,9,3000,3000,9,999999999,114,0,0,88,0.2,0,0 +1998,6,28,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,25,79,98654,276,1319,453,52,0,52,5064,0,5104,1980,100,3.6,9,9,3500,3000,9,999999999,114,0,0,88,0.2,0,0 +1998,6,28,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,30.5,26,77,98667,551,1322,446,247,210,160,27311,10486,17743,6122,48,5.1,7,7,3750,3000,9,999999999,125,0,0,88,0.2,0,0 +1998,6,28,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,27,75,98680,805,1322,474,274,71,231,30821,4096,26114,9836,100,6.7,9,9,4000,3000,9,999999999,138,0,0,88,0.2,0,0 +1998,6,28,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,32.7,27,72,98686,1022,1322,456,637,454,286,73012,27173,33028,13004,113,5.8,6,6,4333,3000,9,999999999,138,0,0,88,0.2,0,0 +1998,6,28,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,33.3,27,70,98691,1186,1322,459,789,537,307,92169,31324,36097,14318,97,5,6,6,4666,3000,9,999999999,138,0,0,88,0.2,0,0 +1998,6,28,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,27,67,98697,1286,1322,459,908,535,387,105530,33837,45315,17322,80,4.1,5,5,5000,77777,9,999999999,138,0,0,88,0.2,0,0 +1998,6,28,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,27,60,98714,1316,1322,499,518,84,434,59902,5602,50595,18874,100,4.1,9,9,5000,3000,9,999999999,137,0,0,88,0.2,0,0 +1998,6,28,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,26,57,98714,1273,1322,498,498,85,417,57549,5758,48497,18161,110,4.1,9,9,5000,3000,9,999999999,124,0,0,88,0.2,0,0 +1998,6,28,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,27,57,98722,1160,1322,477,798,557,309,92826,32915,36219,14321,120,3.6,5,5,6000,77777,9,999999999,137,0,0,88,0.2,0,0 +1998,6,28,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,26,54,98722,985,1322,476,649,594,206,76000,31742,24234,9931,110,4.1,5,5,6000,77777,9,999999999,124,0,0,88,0.2,0,0 +1998,6,28,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,26,54,98722,760,1322,476,457,471,186,51986,25379,21270,8146,80,2.1,5,5,6000,77777,9,999999999,124,0,0,88,0.2,0,0 +1998,6,28,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,26,57,98714,501,1322,470,247,291,137,27332,12907,15224,5227,100,3.6,5,5,5000,77777,9,999999999,124,0,0,88,0.2,0,0 +1998,6,28,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,26,57,98714,224,1322,470,67,51,58,7254,0,6342,1966,110,4.1,5,5,5000,77777,9,999999999,124,0,0,88,0.2,0,0 +1998,6,28,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,25,56,98705,0,1078,455,0,0,0,0,0,0,0,100,4.1,3,3,3500,77777,9,999999999,112,0,0,88,0.2,0,0 +1998,6,28,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,26,63,98697,0,0,451,0,0,0,0,0,0,0,100,4.6,3,3,3500,77777,9,999999999,124,0,0,88,0.2,0,0 +1998,6,28,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,26,63,98697,0,0,451,0,0,0,0,0,0,0,120,5.1,3,3,3500,77777,9,999999999,124,0,0,88,0.2,0,0 +1998,6,28,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,27,75,98680,0,0,441,0,0,0,0,0,0,0,160,4.6,3,3,3500,77777,9,999999999,138,0,0,88,0.2,0,0 +1998,6,28,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,27,79,98672,0,0,435,0,0,0,0,0,0,0,160,3.1,3,3,3500,77777,9,999999999,138,0,0,88,0.2,0,0 +1998,6,29,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,27,79,98672,0,0,435,0,0,0,0,0,0,0,160,3.1,3,3,3500,77777,9,999999999,138,0,0,88,0.2,0,0 +1998,6,29,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,27,79,98672,0,0,442,0,0,0,0,0,0,0,160,2.6,5,5,3500,77777,9,999999999,138,0,0,88,0.2,0,0 +1998,6,29,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,27,84,98663,0,0,436,0,0,0,0,0,0,0,140,1.5,5,5,4000,77777,9,999999999,138,0,0,88,0.2,0,0 +1998,6,29,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,28,89,98663,0,0,437,0,0,0,0,0,0,0,150,1,5,5,4000,77777,9,999999999,153,0,0,88,0.2,0,0 +1998,6,29,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,27,84,98663,0,0,462,0,0,0,0,0,0,0,120,2.1,9,9,4000,3000,9,999999999,138,0,0,88,0.2,0,0 +1998,6,29,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,30,27,84,98663,0,0,452,0,0,0,0,0,0,0,351,3.1,8,8,4000,3000,9,999999999,138,0,0,88,0.2,0,0 +1998,6,29,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,27,84,98663,275,1312,462,52,0,52,4987,0,5028,1959,100,4.1,9,9,4000,3000,9,999999999,138,0,0,88,0.2,0,0 +1998,6,29,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,27,100,98637,550,1321,444,158,23,148,17488,1035,16524,5808,100,5.1,9,9,1500,3000,0,919999999,139,0,0,88,0.2,0,0 +1998,6,29,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,28.5,27.5,94,98650,804,1321,466,205,9,200,23309,453,22835,8847,219,4.6,10,10,3000,3000,9,999999999,146,0,0,88,0.2,0,0 +1998,6,29,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,28,89,98663,1021,1321,463,375,32,351,42249,2053,39782,14956,80,4.1,9,9,4500,3000,0,919999999,153,0,0,88,0.2,0,0 +1998,6,29,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,27,84,98663,1185,1321,462,455,64,398,52033,4265,45831,17197,100,6.2,9,9,4500,900,0,919999999,138,0,0,88,0.2,0,0 +1998,6,29,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,27,79,98672,1286,1321,468,503,64,441,57909,4365,51110,18916,100,5.1,9,9,4500,900,0,919999999,138,0,0,88,0.2,0,0 +1998,6,29,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,27,79,98672,1316,1321,468,518,64,454,59671,4387,52701,19427,110,7.7,9,9,4000,900,0,919999999,138,0,0,88,0.2,0,0 +1998,6,29,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,27,100,98637,1273,1321,444,497,64,435,57138,4351,50420,18693,100,4.6,9,9,3000,2700,0,919999999,139,0,0,88,0.2,0,0 +1998,6,29,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,27,100,98637,1160,1321,444,443,63,387,50580,4225,44545,16773,100,4.1,9,9,2800,750,0,919999999,139,0,0,88,0.2,0,0 +1998,6,29,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,28,100,98646,986,1321,451,359,26,339,40243,1713,38291,14343,90,5.7,9,9,3000,750,0,919999999,153,0,0,88,0.2,0,0 +1998,6,29,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,27,100,98637,761,1321,444,253,24,239,28172,1428,26805,9750,100,5.1,9,9,3000,750,0,919999999,139,0,0,88,0.2,0,0 +1998,6,29,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,28,100,98646,501,1321,451,137,16,131,15139,639,14521,5060,110,3.6,9,9,3000,750,0,919999999,153,0,0,88,0.2,0,0 +1998,6,29,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,27,94,98646,225,1321,424,67,43,59,7244,0,6476,2001,100,5.7,5,5,3000,77777,0,919999999,139,0,0,88,0.2,0,0 +1998,6,29,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,28,100,98646,0,1080,451,0,0,0,0,0,0,0,100,4.1,9,9,3000,750,0,919999999,153,0,0,88,0.2,0,0 +1998,6,29,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,28,100,98646,0,0,451,0,0,0,0,0,0,0,100,4.1,9,9,3000,900,0,919999999,153,0,0,88,0.2,0,0 +1998,6,29,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,28,100,98646,0,0,426,0,0,0,0,0,0,0,110,4.1,5,5,3000,77777,0,919999999,153,0,0,88,0.2,0,0 +1998,6,29,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,28,100,98646,0,0,426,0,0,0,0,0,0,0,100,4.6,5,5,3000,77777,0,919999999,153,0,0,88,0.2,0,0 +1998,6,29,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,28,100,98646,0,0,426,0,0,0,0,0,0,0,100,5.1,5,5,3000,77777,0,919999999,153,0,0,88,0.2,0,0 +1998,6,30,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9,28,28,100,98646,0,0,426,0,0,0,0,0,0,0,100,4.1,5,5,3000,77777,0,919999999,153,0,0,88,0.2,0,0 +1998,6,30,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,28,100,98646,0,0,426,0,0,0,0,0,0,0,100,4.1,5,5,2500,77777,0,919999999,153,0,0,88,0.2,0,0 +1998,6,30,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,27,100,98637,0,0,444,0,0,0,0,0,0,0,140,4.1,9,9,1500,3000,0,919999999,139,0,0,88,0.2,0,0 +1998,6,30,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,26,100,98628,0,0,449,0,0,0,0,0,0,0,120,5.1,10,10,800,900,0,919999999,126,0,0,88,0.2,0,0 +1998,6,30,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,26.2,26.2,100,98630,0,0,450,0,0,0,0,0,0,0,98,4.6,10,10,975,900,9,999999999,129,0,0,88,0.2,0,0 +1998,6,30,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,26.5,26.5,100,98632,0,0,452,0,0,0,0,0,0,0,142,4.1,10,10,1150,900,9,999999999,132,0,0,88,0.2,0,0 +1998,6,30,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,26.8,26.8,100,98635,273,1304,455,31,0,31,3016,0,3040,1284,205,3.6,10,10,1325,900,9,999999999,136,0,0,88,0.2,0,0 +1998,6,30,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,27,100,98637,548,1321,456,96,0,96,9440,0,9525,4151,110,3.1,10,10,1500,600,0,919999999,139,0,0,88,0.2,0,0 +1998,6,30,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,28,100,98646,803,1321,464,166,1,166,19150,32,19197,7643,70,1,10,10,1700,600,0,919999999,153,0,0,88,0.2,0,0 +1998,6,30,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,28,28,100,98646,1020,1321,464,229,5,225,26663,252,26372,10804,34,2,10,10,1600,600,9,999999999,153,0,0,88,0.2,0,0 +1998,6,30,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,28,100,98646,1185,1321,464,277,7,271,32571,368,32038,12977,100,3.1,10,10,1500,600,0,919999999,153,0,0,88,0.2,0,0 +1998,6,30,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,28.5,28.5,100,98650,1285,1321,467,306,13,293,36251,674,34986,14076,180,2.6,10,10,1150,600,9,999999999,161,0,0,88,0.2,0,0 +1998,6,30,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,29,100,98654,1315,1321,458,516,83,433,59449,5167,50321,18849,90,2.1,9,9,800,77777,0,919999999,169,0,0,88,0.2,0,0 +1998,6,30,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,31,30.5,97,98671,1273,1321,486,301,13,289,35538,600,34318,13884,181,1,10,10,1250,77777,9,999999999,196,0,0,88,0.2,0,0 +1998,6,30,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,33,32,95,98689,1161,1321,501,268,7,262,31237,283,30757,12604,292,0,10,10,1700,600,0,919999999,227,0,0,88,0.2,0,0 +1998,6,30,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,32,31.5,97,98680,986,1321,494,218,5,214,25143,191,24897,10263,150,0,10,10,1400,600,9,999999999,216,0,0,88,0.2,0,0 +1998,6,30,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,31,100,98672,761,1321,487,153,0,153,15264,0,15414,7018,110,0,10,10,1100,600,0,919999999,206,0,0,88,0.2,0,0 +1998,6,30,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,30,100,98663,502,1321,479,83,0,83,8121,0,8194,3574,170,0,10,10,1000,600,0,919999999,187,0,0,88,0.2,0,0 +1998,6,30,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,29,100,98654,225,1321,458,37,0,37,3532,0,3560,1406,182,0.8,9,9,1100,600,0,919999999,169,0,0,88,0.2,0,0 +1998,6,30,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28.8,28.8,100,98652,0,1081,458,0,0,0,0,0,0,0,184,0.2,9,9,1200,600,0,919999999,166,0,0,88,0.2,0,0 +1998,6,30,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28.5,28.5,100,98650,0,0,458,0,0,0,0,0,0,0,194,0.5,9,9,1000,750,0,919999999,161,0,0,88,0.2,0,0 +1998,6,30,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28.8,28,96,98652,0,0,458,0,0,0,0,0,0,0,153,0.5,9,9,1000,750,0,919999999,153,0,0,88,0.2,0,0 +1998,6,30,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,27.5,92,98655,0,0,451,0,0,0,0,0,0,0,140,0.5,9,9,1000,3000,0,919999999,146,0,0,88,0.2,0,0 +1998,6,30,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29.6,27.1,87,98310,0,0,451,0,0,0,0,0,0,0,195,0.5,9,9,1000,3000,0,919999999,140,0,0,88,0.2,0,0 +2018,7,1,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30.1,26.9,83,98315,0,0,436,0,0,0,0,0,0,0,233,0.5,5,5,3500,3048,0,19999999,137,0,0,88,0.2,0,0 +2018,7,1,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30.1,26.9,83,98315,0,0,436,0,0,0,0,0,0,0,279,1.5,5,5,3500,3048,0,19999999,137,0,0,88,0.2,0,0 +2018,7,1,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,26.5,81,97977,0,0,437,0,0,0,0,0,0,0,277,2.3,5,5,2000,3000,0,19999999,131,0,0,88,0.2,0,0 +2018,7,1,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29.7,26.6,83,98323,0,0,436,0,0,0,0,0,0,0,267,3,5,5,3500,3048,0,19999999,133,0,0,88,0.2,0,0 +2018,7,1,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29.7,26.6,83,98323,0,0,436,0,0,0,0,0,0,0,272,3.2,5,5,3500,3048,0,19999999,133,0,0,88,0.2,0,0 +2018,7,1,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26.5,82,98020,0,0,458,0,0,0,0,0,0,0,265,3,9,9,2000,2400,9,999999999,131,0,0,88,0.2,0,0 +2018,7,1,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,27,89,98654,272,1296,430,92,86,74,9950,839,8061,2522,280,2.6,5,5,2500,3048,9,999999999,139,0,0,88,0.2,0,0 +2018,7,1,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,27,84,98663,547,1321,462,156,24,147,17353,1082,16336,5745,260,3.1,9,9,2200,3048,9,999999999,138,0,0,88,0.2,0,0 +2018,7,1,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26.6,78,97449,802,1321,441,491,451,217,55526,25598,24697,9397,250,3.1,5,5,2000,3000,9,999999999,132,0,0,88,0.2,0,0 +2018,7,1,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,27,71,98689,1019,1321,453,676,601,213,79329,31146,25092,10330,280,5.1,5,5,2800,3048,9,999999999,138,0,0,88,0.2,0,0 +2018,7,1,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,26,67,98689,1184,1321,452,820,605,279,96646,34758,33023,13277,280,4.6,5,5,3500,3048,9,999999999,125,0,0,88,0.2,0,0 +2018,7,1,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,25.8,61,97390,1285,1321,460,909,632,295,108099,36230,35270,14118,290,5.7,5,5,2000,3048,9,999999999,121,0,0,88,0.2,0,0 +2018,7,1,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,26,60,98705,1315,1321,464,935,627,311,111149,36260,37211,14801,260,6.2,5,5,3500,3048,9,999999999,124,0,0,88,0.2,0,0 +2018,7,1,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,26,57,98714,1273,1321,470,898,540,378,104572,34894,44310,16979,260,5.1,5,5,3500,3048,9,999999999,124,0,0,88,0.2,0,0 +2018,7,1,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35.2,25.7,58,97212,1161,1321,492,444,154,309,51775,9459,36253,14309,270,4.6,9,9,2000,3000,9,999999999,119,0,0,88,0.2,0,0 +2018,7,1,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36,27,60,98714,986,1321,471,648,518,262,74439,30014,30210,11979,260,4.6,5,5,4000,3000,9,999999999,137,0,0,88,0.2,0,0 +2018,7,1,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37,27,57,98722,762,1321,477,457,426,212,51400,23764,23919,8962,260,4.1,5,5,4000,3000,9,999999999,137,0,0,88,0.2,0,0 +2018,7,1,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35.8,26.1,58,97041,502,1321,497,138,16,131,15268,708,14641,5082,270,3.6,9,9,4000,3000,9,999999999,124,0,0,88,0.2,0,0 +2018,7,1,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,27,71,98689,225,1321,480,37,0,37,3559,0,3587,1410,260,5.1,9,9,3200,3048,9,999999999,138,0,0,88,0.2,0,0 +2018,7,1,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32,27,75,98680,0,1082,447,0,0,0,0,0,0,0,260,3.1,5,5,3200,3048,9,999999999,138,0,0,88,0.2,0,0 +2018,7,1,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31.6,26,72,97123,0,0,444,0,0,0,0,0,0,0,230,1.5,5,5,2000,3000,9,999999999,123,0,0,88,0.2,0,0 +2018,7,1,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,26,71,98680,0,0,446,0,0,0,0,0,0,0,240,3.1,5,5,3200,3048,9,999999999,125,0,0,88,0.2,0,0 +2018,7,1,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,27,84,98663,0,0,436,0,0,0,0,0,0,0,230,5.1,5,5,3200,3048,0,919999999,138,0,0,88,0.2,0,0 +2018,7,1,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30,26.9,84,97159,0,0,436,0,0,0,0,0,0,0,230,3.1,5,5,2000,3048,0,919999999,136,0,0,88,0.2,0,0 +2018,7,2,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,27,84,98663,0,0,436,0,0,0,0,0,0,0,230,2.6,5,5,3000,3048,0,919999999,138,0,0,88,0.2,0,0 +2018,7,2,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,27,79,98672,0,0,442,0,0,0,0,0,0,0,240,2.6,5,5,3000,3048,0,919999999,138,0,0,88,0.2,0,0 +2018,7,2,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30.2,25.4,76,96965,0,0,461,0,0,0,0,0,0,0,230,3.1,9,9,2000,3000,0,919999999,116,0,0,88,0.2,0,0 +2018,7,2,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,0,0,460,0,0,0,0,0,0,0,250,3.1,9,9,3000,3048,0,919999999,125,0,0,88,0.2,0,0 +2018,7,2,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,0,0,460,0,0,0,0,0,0,0,270,4.1,9,9,3500,3048,0,919999999,125,0,0,88,0.2,0,0 +2018,7,2,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29.8,25.6,78,96962,0,0,458,0,0,0,0,0,0,0,270,4.1,9,9,4000,1050,9,999999999,119,0,0,88,0.2,0,0 +2018,7,2,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,24,70,98663,270,1288,470,31,0,31,2980,0,3003,1261,270,2.6,10,10,4000,3048,9,999999999,103,0,0,88,0.2,0,0 +2018,7,2,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,24,70,98663,546,1321,470,95,0,95,9458,0,9540,4131,260,2.6,10,10,4000,2438,9,999999999,103,0,0,88,0.2,0,0 +2018,7,2,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,21.7,55,97107,801,1321,440,494,467,211,56388,29784,24206,9193,270,4.1,5,5,2000,3000,9,999999999,80,0,0,88,0.2,0,0 +2018,7,2,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,24,63,98680,1018,1321,443,679,610,209,80098,34581,24796,10180,270,4.1,5,5,4000,3048,9,999999999,102,0,0,88,0.2,0,0 +2018,7,2,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,24,56,98697,1183,1321,455,823,640,249,98019,37192,29891,12156,290,4.1,5,5,4000,3048,9,999999999,102,0,0,88,0.2,0,0 +2018,7,2,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.8,24.3,55,97121,1284,1321,460,911,638,290,108690,38007,34865,13954,270,4.1,5,5,2000,3048,9,999999999,104,0,0,88,0.2,0,0 +2018,7,2,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,24,53,98705,1315,1321,461,938,636,305,111995,38622,36661,14581,270,4.1,5,5,4500,3048,9,999999999,102,0,0,88,0.2,0,0 +2018,7,2,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,24,48,98722,1273,1321,473,901,641,284,107607,38231,34122,13686,250,4.1,5,5,4500,3048,9,999999999,101,0,0,88,0.2,0,0 +2018,7,2,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.6,24.8,51,96989,1161,1321,472,802,610,266,94740,35899,31591,12749,250,5.7,5,5,2000,3048,9,999999999,109,0,0,88,0.2,0,0 +2018,7,2,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,24,48,98722,987,1321,473,652,599,204,76688,33959,24151,9880,250,4.1,5,5,4500,3048,9,999999999,101,0,0,88,0.2,0,0 +2018,7,2,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37,24,48,98722,762,1321,473,460,479,184,52545,27257,21085,8076,260,4.1,5,5,4500,3048,9,999999999,101,0,0,88,0.2,0,0 +2018,7,2,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,26.2,54,96876,503,1321,476,248,291,138,27439,12853,15289,5253,270,3.6,5,5,4000,3000,9,999999999,125,0,0,88,0.2,0,0 +2018,7,2,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36,24,50,98714,226,1321,467,67,44,60,7347,124,6547,2013,170,3.1,5,5,4000,3000,9,999999999,102,0,0,88,0.2,0,0 +2018,7,2,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,24,50,98714,0,1083,509,0,0,0,0,0,0,0,160,3.1,10,10,3500,3048,0,19999999,102,0,0,88,0.2,0,0 +2018,7,2,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25.2,24,93,97029,0,0,441,0,0,0,0,0,0,0,230,6.2,10,10,1000,900,0,19999999,102,0,0,88,0.2,0,0 +2018,7,2,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,23,84,98628,0,0,445,0,0,0,0,0,0,0,170,3.1,10,10,2500,914,0,19999999,93,0,0,88,0.2,0,0 +2018,7,2,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,24,89,98628,0,0,446,0,0,0,0,0,0,0,150,5.1,10,10,3500,914,0,19999999,103,0,0,88,0.2,0,0 +2018,7,2,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25.6,24.1,91,97101,0,0,432,0,0,0,0,0,0,0,140,4.1,9,9,2000,900,0,19999999,103,0,0,88,0.2,0,0 +2018,7,3,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,23,79,98637,0,0,438,0,0,0,0,0,0,0,120,2.6,9,9,3500,3048,0,19999999,93,0,0,88,0.2,0,0 +2018,7,3,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,23,79,98637,0,0,438,0,0,0,0,0,0,0,130,3.1,9,9,3500,3048,0,19999999,93,0,0,88,0.2,0,0 +2018,7,3,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27,24,84,98637,0,0,415,0,0,0,0,0,0,0,100,2.1,5,5,3500,3048,0,19999999,103,0,0,88,0.2,0,0 +2018,7,3,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,27.3,24.9,86,100263,0,0,433,0,0,0,0,0,0,0,59,2.4,8,8,4642,3048,9,999999999,114,0,0,88,0.2,0,0 +2018,7,3,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,27.1,24.5,86,100136,0,0,432,0,0,0,0,0,0,0,207,2.9,8,8,4785,3048,9,999999999,110,0,0,88,0.2,0,0 +2018,7,3,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,26.7,24.2,86,98319,0,0,429,0,0,0,0,0,0,0,102,2.9,8,8,4177,3048,9,999999999,105,0,0,88,0.2,0,0 +2018,7,3,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,27.1,23.8,82,99886,268,1280,431,69,7,68,7615,88,7486,2369,78,2.7,8,8,4570,3048,9,999999999,102,0,0,88,0.2,0,0 +2018,7,3,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,25.8,23.4,86,99750,544,1321,423,189,78,157,20946,4167,17487,6003,72,3.7,8,8,3963,3048,9,999999999,98,0,0,88,0.2,0,0 +2018,7,3,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,27.4,23,77,98159,799,1321,425,426,283,255,47752,19247,28733,10472,332,3.2,7,7,2856,3048,9,999999999,93,0,0,88,0.2,0,0 +2018,7,3,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,28.8,24.1,76,99526,1017,1321,434,598,368,314,68256,25122,36138,13867,86,3.7,7,7,4149,3048,9,999999999,104,0,0,88,0.2,0,0 +2018,7,3,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,31,23.8,65,99421,1183,1321,437,829,598,293,97518,37458,34755,13820,219,3.8,5,5,4392,3048,9,999999999,101,0,0,88,0.2,0,0 +2018,7,3,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,32.4,23.9,61,97846,1284,1321,442,941,699,263,113287,40351,31795,12874,169,3.5,4,4,2535,3048,9,999999999,101,0,0,88,0.2,0,0 +2018,7,3,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,33,24,59,99188,1315,1321,446,978,772,210,120168,40599,25982,10726,37,3.5,4,4,4428,3048,9,999999999,102,0,0,88,0.2,0,0 +2018,7,3,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,34.8,23.6,53,99078,1273,1321,452,958,832,157,119713,40794,19745,8275,131,3.1,3,3,4571,3048,9,999999999,98,0,0,88,0.2,0,0 +2018,7,3,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,35.1,24,53,97280,1161,1321,455,854,812,141,105972,38894,17523,7412,98,4.4,3,3,3214,3048,9,999999999,101,0,0,88,0.2,0,0 +2018,7,3,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,36.3,23.9,49,98841,987,1321,457,698,707,170,83280,37362,20373,8480,312,2,2,2,4857,3048,9,999999999,101,0,0,88,0.2,0,0 +2018,7,3,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36.5,24,60,98718,763,1321,470,460,450,200,52207,26727,22874,8626,100,4.1,5,5,4250,3048,9,999999999,102,0,0,88,0.2,0,0 +2018,7,3,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.8,26.5,62,96887,503,1321,463,248,290,138,27431,12685,15297,5259,90,4.1,5,5,2000,3048,9,999999999,129,0,0,88,0.2,0,0 +2018,7,3,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,25,60,98697,226,1321,457,67,44,60,7335,53,6540,2014,60,4.1,5,5,3500,3048,9,999999999,113,0,0,88,0.2,0,0 +2018,7,3,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,25,60,98697,0,1083,457,0,0,0,0,0,0,0,90,3.1,5,5,3500,3048,9,999999999,113,0,0,88,0.2,0,0 +2018,7,3,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32,25.8,70,96951,0,0,446,0,0,0,0,0,0,0,90,3.1,5,5,2000,3048,9,999999999,121,0,0,88,0.2,0,0 +2018,7,3,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,26,71,98680,0,0,446,0,0,0,0,0,0,0,50,3.1,5,5,3500,3048,9,999999999,125,0,0,88,0.2,0,0 +2018,7,3,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,27,75,98680,0,0,447,0,0,0,0,0,0,0,90,3.1,5,5,3500,3048,9,999999999,138,0,0,88,0.2,0,0 +2018,7,3,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.2,26.5,76,97023,0,0,442,0,0,0,0,0,0,0,90,2.6,5,5,2000,3048,9,999999999,130,0,0,88,0.2,0,0 +2018,7,4,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,27,75,98680,0,0,447,0,0,0,0,0,0,0,140,3.6,5,5,3500,3048,9,999999999,138,0,0,88,0.2,0,0 +2018,7,4,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,27,79,98672,0,0,442,0,0,0,0,0,0,0,130,2.6,5,5,3500,3048,9,999999999,138,0,0,88,0.2,0,0 +2018,7,4,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,26.1,77,96872,0,0,438,0,0,0,0,0,0,0,10,1.5,5,5,2000,3048,9,999999999,125,0,0,88,0.2,0,0 +2018,7,4,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,27,79,98672,0,0,442,0,0,0,0,0,0,0,190,2.1,5,5,3500,3048,9,999999999,138,0,0,88,0.2,0,0 +2018,7,4,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,0,0,435,0,0,0,0,0,0,0,110,2.1,5,5,3500,3048,9,999999999,125,0,0,88,0.2,0,0 +2018,7,4,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29,25.6,82,96975,0,0,454,0,0,0,0,0,0,0,90,2.1,9,9,2000,3048,9,999999999,119,0,0,88,0.2,1,0 +2018,7,4,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,267,1271,467,30,0,30,2900,0,2923,1232,80,3.1,10,10,3000,3048,0,19999999,125,0,0,88,0.2,0,0 +2018,7,4,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,25,94,98628,543,1321,447,95,0,95,9346,0,9428,4089,60,5.1,10,10,2000,914,0,19999999,114,0,0,88,0.2,0,0 +2018,7,4,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26.6,26.3,98,97246,798,1321,440,271,70,228,30492,4144,25856,9714,70,2.6,9,9,2000,3000,0,19999999,128,0,0,88,0.2,0,0 +2018,7,4,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,1016,1321,429,675,556,247,78330,32022,28859,11621,90,3.6,5,5,2800,3048,0,19999999,125,0,0,88,0.2,0,0 +2018,7,4,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,25,70,98672,1182,1321,439,820,545,333,95382,35112,38961,15178,120,3.6,5,5,3500,3048,0,19999999,113,0,0,88,0.2,0,0 +2018,7,4,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32.4,24.7,64,97344,1284,1321,487,308,47,262,36977,2643,31701,12853,110,3.1,10,10,2000,3000,0,19999999,108,0,0,88,0.2,0,0 +2018,7,4,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,25,63,98689,1315,1321,451,936,520,419,108890,35808,49079,18417,270,3.1,5,5,3500,3048,0,19999999,113,0,0,88,0.2,0,0 +2018,7,4,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,24,56,98697,1273,1321,482,500,86,417,57929,6122,48730,18187,40,2.1,9,9,4000,3048,0,19999999,102,0,0,88,0.2,0,0 +2018,7,4,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34.6,23.8,54,97080,1161,1321,486,446,58,395,51124,4242,45590,16996,280,3.1,9,9,4000,3000,0,19999999,99,0,0,88,0.2,0,0 +2018,7,4,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,36,24,50,98714,987,1321,467,652,526,259,75320,33108,30133,11914,41,0,5,5,5000,3048,0,19999999,102,0,0,88,0.2,0,0 +2018,7,4,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,24,50,98714,763,1321,467,460,479,184,52605,27279,21094,8081,270,4.1,5,5,4000,3048,0,19999999,102,0,0,88,0.2,0,0 +2018,7,4,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35.4,24.4,53,96902,503,1321,464,249,294,137,27644,13900,15307,5249,270,5.1,5,5,4000,3000,0,19999999,104,0,0,88,0.2,0,0 +2018,7,4,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,24,53,98705,226,1321,461,67,52,59,7373,116,6419,1985,300,3.6,5,5,4000,3048,0,19999999,102,0,0,88,0.2,0,0 +2018,7,4,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,24,59,98689,0,1082,449,0,0,0,0,0,0,0,30,2.6,5,5,4000,3048,0,19999999,102,0,0,88,0.2,0,0 +2018,7,4,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32.6,24.3,62,97073,0,0,447,0,0,0,0,0,0,0,50,2.6,5,5,4000,3000,0,19999999,104,0,0,88,0.2,0,0 +2018,7,4,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,25,67,98680,0,0,445,0,0,0,0,0,0,0,60,3.6,5,5,4000,3048,0,19999999,113,0,0,88,0.2,0,0 +2018,7,4,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,25,67,98680,0,0,445,0,0,0,0,0,0,0,60,3.1,5,5,4000,3048,0,19999999,113,0,0,88,0.2,0,0 +2018,7,4,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,25.4,72,97216,0,0,439,0,0,0,0,0,0,0,50,3.1,5,5,4000,3000,0,19999999,116,0,0,88,0.2,0,0 +2018,7,5,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,25,70,98672,0,0,439,0,0,0,0,0,0,0,60,2.1,5,5,4000,3048,0,19999999,113,0,0,88,0.2,0,0 +2018,7,5,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30,25,75,98663,0,0,433,0,0,0,0,0,0,0,80,2.1,5,5,4000,3048,0,19999999,113,0,0,88,0.2,0,0 +2018,7,5,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30.4,25.6,76,97162,0,0,436,0,0,0,0,0,0,0,70,2.1,5,5,4000,3000,0,19999999,119,0,0,88,0.2,0,0 +2018,7,5,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30,26,79,98663,0,0,460,0,0,0,0,0,0,0,70,2.1,9,9,3200,3000,0,19999999,125,0,0,88,0.2,0,0 +2018,7,5,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,0,0,454,0,0,0,0,0,0,0,50,2.6,9,9,3200,3048,0,19999999,125,0,0,88,0.2,0,0 +2018,7,5,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28.8,25.1,80,97139,0,0,427,0,0,0,0,0,0,0,90,2.6,5,5,2000,3000,9,999999999,113,0,0,88,0.2,0,0 +2018,7,5,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,265,1263,454,49,0,49,4704,0,4741,1846,140,2.1,9,9,2500,3048,9,999999999,125,0,0,88,0.2,0,0 +2018,7,5,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,541,1321,460,154,21,145,17121,1008,16221,5679,120,2.1,9,9,2500,3048,9,999999999,125,0,0,88,0.2,0,0 +2018,7,5,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31.6,26,72,97250,797,1321,470,270,25,255,30183,1605,28649,10466,140,2.6,9,9,2000,3000,9,999999999,124,0,0,88,0.2,0,0 +2018,7,5,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,26,67,98689,1015,1321,479,374,61,327,42441,4049,37382,14239,260,2.6,9,9,3000,3048,9,999999999,125,0,0,88,0.2,0,0 +2018,7,5,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,28,67,98705,1181,1321,494,452,63,396,51630,4102,45508,17120,290,5.1,9,9,3500,3048,9,999999999,152,0,0,88,0.2,0,0 +2018,7,5,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35.2,24.5,54,97377,1283,1321,490,504,65,441,58247,4737,51309,18908,270,4.1,9,9,2000,3000,9,999999999,106,0,0,88,0.2,0,0 +2018,7,5,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,26,57,98714,1315,1321,498,518,65,454,59827,4542,52798,19427,290,3.1,9,9,4000,3048,9,999999999,124,0,0,88,0.2,0,0 +2018,7,5,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,24,50,98714,1273,1321,495,500,65,437,57728,4796,50824,18739,290,3.1,9,9,4000,3048,9,999999999,102,0,0,88,0.2,0,0 +2018,7,5,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37.4,25.2,50,97171,1162,1321,506,445,64,389,50982,4502,44830,16819,290,3.1,9,9,4000,3000,9,999999999,113,0,0,88,0.2,0,0 +2018,7,5,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,27,79,98672,988,1321,468,360,43,328,40608,2816,37235,14057,260,10.3,9,9,1500,1219,0,19999999,138,0,0,88,0.2,0,0 +2018,7,5,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,24,74,98654,763,1321,426,460,432,211,52024,26322,23978,8953,10,4.6,5,5,2500,3048,0,19999999,103,0,0,88,0.2,0,0 +2018,7,5,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.6,25.7,71,97055,503,1321,443,249,292,138,27531,13172,15312,5259,290,4.1,5,5,2000,3048,0,19999999,120,0,0,88,0.2,0,0 +2018,7,5,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,25,60,98697,226,1321,457,67,44,60,7337,53,6542,2014,270,2.6,5,5,3500,3048,0,19999999,113,0,0,88,0.2,0,0 +2018,7,5,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,26,67,98689,0,1081,452,0,0,0,0,0,0,0,290,2.1,5,5,3500,3048,0,19999999,125,0,0,88,0.2,0,0 +2018,7,5,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,30.8,25.1,72,97233,0,0,438,0,0,0,0,0,0,0,215,1.5,5,5,2000,3048,0,19999999,113,0,0,88,0.2,0,0 +2018,7,5,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,24,63,98680,0,0,443,0,0,0,0,0,0,0,210,1.5,5,5,3500,3048,0,19999999,102,0,0,88,0.2,0,0 +2018,7,5,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,24,63,98680,0,0,443,0,0,0,0,0,0,0,300,1.5,5,5,3200,3048,0,19999999,102,0,0,88,0.2,0,0 +2018,7,5,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.8,24.1,72,97352,0,0,431,0,0,0,0,0,0,0,270,2.6,5,5,2000,3048,0,19999999,103,0,0,88,0.2,0,0 +2018,7,6,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,24,66,98672,0,0,438,0,0,0,0,0,0,0,145,0,5,5,3200,3048,0,19999999,102,0,0,88,0.2,0,0 +2018,7,6,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,24,66,98672,0,0,438,0,0,0,0,0,0,0,280,1.5,5,5,3200,3048,0,19999999,102,0,0,88,0.2,0,0 +2018,7,6,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,24,70,97285,0,0,457,0,0,0,0,0,0,0,289,0,9,9,2000,3000,0,19999999,101,0,0,88,0.2,0,0 +2018,7,6,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,24,70,98663,0,0,432,0,0,0,0,0,0,0,82,0,5,5,3000,3048,0,19999999,103,0,0,88,0.2,0,0 +2018,7,6,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,24,70,98663,0,0,432,0,0,0,0,0,0,0,141,0,5,5,2500,3048,0,19999999,103,0,0,88,0.2,0,0 +2018,7,6,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28.4,25,82,97291,0,0,424,0,0,0,0,0,0,0,166,0,5,5,2000,77777,9,999999999,112,0,0,88,0.2,5,0 +2018,7,6,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,28,25,84,98646,263,1253,415,93,106,71,10077,1206,7798,2426,149,0,3,3,2500,77777,9,999999999,114,0,0,88,0.2,0,0 +2018,7,6,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30,26,79,98663,540,1321,428,294,389,135,32789,17364,15130,5375,250,2.1,3,3,1500,77777,9,999999999,125,0,0,88,0.2,0,0 +2018,7,6,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31.2,25.3,71,97334,796,1321,434,516,625,140,60537,30164,16514,6642,290,3.1,3,3,2000,77777,9,999999999,115,0,0,88,0.2,0,0 +2018,7,6,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33,26,67,98689,1014,1321,445,714,730,154,85970,34476,18629,7861,250,3.1,3,3,2500,77777,9,999999999,125,0,0,88,0.2,0,0 +2018,7,6,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34,24,56,98697,1181,1321,448,870,772,181,106203,39794,22176,9271,270,3.1,3,3,3000,77777,9,999999999,102,0,0,88,0.2,0,0 +2018,7,6,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35.2,25.1,56,97368,1283,1321,464,908,599,327,107252,36808,38832,15287,270,3.1,5,5,2000,77777,9,999999999,112,0,0,88,0.2,0,0 +2018,7,6,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,24,48,98722,1314,1321,473,937,636,305,111943,38625,36613,14564,280,4.6,5,5,3500,3048,9,999999999,101,0,0,88,0.2,0,0 +2018,7,6,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,24,48,98722,1273,1321,473,901,640,284,107621,38235,34140,13692,260,4.6,5,5,4000,3048,9,999999999,101,0,0,88,0.2,0,0 +2018,7,6,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.6,22.5,44,97233,1162,1321,469,806,645,239,96271,38522,28680,11694,270,4.6,5,5,4000,3048,9,999999999,86,0,0,88,0.2,0,0 +2018,7,6,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,23,45,98722,988,1321,472,654,602,203,77052,34992,24104,9853,270,5.1,5,5,4000,3048,9,999999999,92,0,0,88,0.2,0,0 +2018,7,6,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,23,45,98722,763,1321,472,461,483,182,52839,28151,20971,8035,270,4.6,5,5,4000,3048,9,999999999,92,0,0,88,0.2,0,0 +2018,7,6,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.8,23.9,50,97032,503,1321,466,250,295,137,27705,14179,15312,5248,270,4.1,5,5,2000,3048,9,999999999,99,0,0,88,0.2,0,0 +2018,7,6,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,23,47,98714,226,1321,466,68,53,59,7384,195,6424,1983,290,3.6,5,5,4000,3048,9,999999999,92,0,0,88,0.2,0,0 +2018,7,6,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,22,50,98697,0,1080,452,0,0,0,0,0,0,0,280,3.6,5,5,3500,3048,9,999999999,83,0,0,88,0.2,0,0 +2018,7,6,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33.6,21.9,50,97150,0,0,443,0,0,0,0,0,0,0,290,3.1,3,3,2000,77777,9,999999999,82,0,0,88,0.2,0,0 +2018,7,6,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34,23,53,98697,0,0,447,0,0,0,0,0,0,0,290,3.1,3,3,3500,77777,9,999999999,92,0,0,88,0.2,0,0 +2018,7,6,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33,23,56,98689,0,0,441,0,0,0,0,0,0,0,330,3.1,3,3,3500,77777,9,999999999,92,0,0,88,0.2,0,0 +2018,7,6,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31.6,23.9,64,97269,0,0,434,0,0,0,0,0,0,0,320,2.6,3,3,2000,77777,9,999999999,100,0,0,88,0.2,0,0 +2018,7,7,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32,23,59,98680,0,0,435,0,0,0,0,0,0,0,340,2.6,3,3,3500,77777,9,999999999,93,0,0,88,0.2,0,0 +2018,7,7,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,32,24,63,98680,0,0,419,0,0,0,0,0,0,0,178,1,0,0,3500,77777,9,999999999,102,0,0,88,0.2,0,0 +2018,7,7,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,24,70,97217,0,0,408,0,0,0,0,0,0,0,267,0,0,0,2000,77777,9,999999999,101,0,0,88,0.2,0,0 +2018,7,7,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,24,66,98672,0,0,413,0,0,0,0,0,0,0,280,2.1,0,0,3500,77777,9,999999999,102,0,0,88,0.2,0,0 +2018,7,7,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,24,66,98672,0,0,413,0,0,0,0,0,0,0,330,2.1,0,0,3500,77777,9,999999999,102,0,0,88,0.2,0,0 +2018,7,7,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,24.7,78,97277,0,0,403,0,0,0,0,0,0,0,290,1.5,0,0,2000,77777,9,999999999,109,0,0,88,0.2,0,0 +2018,7,7,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,25,75,98663,262,1244,409,93,110,71,10076,1196,7732,2405,260,1.5,0,0,2100,77777,9,999999999,113,0,0,88,0.2,0,0 +2018,7,7,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,25,70,98672,538,1321,414,296,405,131,33210,18507,14787,5265,260,2.1,0,0,2100,77777,9,999999999,113,0,0,88,0.2,0,0 +2018,7,7,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.6,24.8,67,97357,794,1321,417,522,623,147,61005,31271,17308,6920,270,2.1,0,0,2000,77777,9,999999999,110,0,0,88,0.2,0,0 +2018,7,7,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,24,56,98697,1013,1321,430,725,772,133,88478,37280,16279,6899,310,2.1,0,0,2800,77777,9,999999999,102,0,0,88,0.2,0,0 +2018,7,7,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,24,53,98705,1180,1321,454,869,771,181,106105,39784,22178,9272,290,2.1,3,3,3500,77777,9,999999999,102,0,0,88,0.2,0,0 +2018,7,7,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36.2,24.7,52,97278,1282,1321,469,908,601,325,107362,37257,38727,15245,270,2.1,5,5,2000,3000,9,999999999,108,0,0,88,0.2,0,0 +2018,7,7,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,24,50,98714,1314,1321,467,937,543,397,109638,37300,46755,17740,270,3.1,5,5,3500,3048,9,999999999,102,0,0,88,0.2,0,0 +2018,7,7,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,24,50,98714,1273,1321,495,500,65,437,57723,4794,50822,18739,310,4.1,9,9,3500,3048,9,999999999,102,0,0,88,0.2,0,0 +2018,7,7,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36.6,24.8,51,97106,1162,1321,472,803,564,307,93752,35409,36131,14256,290,6.2,5,5,2000,3000,9,999999999,109,0,0,88,0.2,0,0 +2018,7,7,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,24,45,98730,988,1321,479,653,599,205,76784,33973,24213,9904,300,4.6,5,5,4000,3048,9,999999999,101,0,0,88,0.2,0,0 +2018,7,7,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,23,42,98730,763,1321,478,461,482,183,52817,28125,21012,8048,320,4.1,5,5,3500,3048,9,999999999,92,0,0,88,0.2,0,0 +2018,7,7,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.6,23,43,96871,503,1321,475,250,295,137,27755,14606,15322,5246,320,4.6,5,5,2000,3048,9,999999999,90,0,0,88,0.2,0,0 +2018,7,7,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38,23,42,98730,226,1321,451,72,68,61,7883,321,6644,2031,310,3.6,0,0,3500,3048,9,999999999,92,0,0,88,0.2,0,0 +2018,7,7,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,22,42,98722,0,1078,444,0,0,0,0,0,0,0,10,2.6,0,0,3500,77777,9,999999999,83,0,0,88,0.2,0,0 +2018,7,7,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33,22.9,55,97067,0,0,423,0,0,0,0,0,0,0,30,2.1,0,0,2000,77777,9,999999999,90,0,0,88,0.2,0,0 +2018,7,7,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,22,47,98705,0,0,451,0,0,0,0,0,0,0,40,2.1,3,3,3500,77777,9,999999999,83,0,0,88,0.2,0,0 +2018,7,7,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,22,50,98697,0,0,427,0,0,0,0,0,0,0,40,1.5,0,0,3500,77777,9,999999999,83,0,0,88,0.2,0,0 +2018,7,7,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.6,23.9,64,97153,0,0,416,0,0,0,0,0,0,0,70,1.5,0,0,2000,77777,9,999999999,100,0,0,88,0.2,0,0 +2018,7,8,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,23,59,98680,0,0,417,0,0,0,0,0,0,0,80,1.5,0,0,3500,77777,9,999999999,93,0,0,88,0.2,0,0 +2018,7,8,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,32,24,63,98680,0,0,419,0,0,0,0,0,0,0,199,0,0,0,3500,77777,9,999999999,102,0,0,88,0.2,0,0 +2018,7,8,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,24,66,98672,0,0,413,0,0,0,0,0,0,0,80,1,0,0,3500,77777,9,999999999,102,0,0,88,0.2,0,0 +2018,7,8,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,24,66,98672,0,0,413,0,0,0,0,0,0,0,223,0,0,0,3500,77777,9,999999999,102,0,0,88,0.2,0,0 +2018,7,8,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,24,66,98672,0,0,413,0,0,0,0,0,0,0,96,0,0,0,3500,77777,9,999999999,102,0,0,88,0.2,0,0 +2018,7,8,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29.4,24.8,76,97144,0,0,423,0,0,0,0,0,0,0,191,0,3,3,2000,77777,9,999999999,110,0,0,88,0.2,0,0 +2018,7,8,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,24,70,98663,260,1235,425,90,102,70,9856,1237,7689,2386,148,0,3,3,3200,77777,9,999999999,103,0,0,88,0.2,0,0 +2018,7,8,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,33,25,63,98689,536,1321,444,291,387,134,32574,17893,15066,5337,197,0,3,3,2800,77777,9,999999999,113,0,0,88,0.2,0,0 +2018,7,8,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,32.8,24.6,62,97250,793,1321,442,515,625,140,60376,30851,16444,6604,272,0,3,3,2000,77777,9,999999999,107,0,0,88,0.2,0,0 +2018,7,8,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,36,24,50,98714,1012,1321,460,715,738,150,86447,37010,18178,7660,279,0,3,3,3000,77777,9,999999999,102,0,0,88,0.2,0,0 +2018,7,8,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36,24,50,98714,1179,1321,460,869,809,147,107664,39115,18311,7728,270,2.1,3,3,3000,77777,9,999999999,102,0,0,88,0.2,0,0 +2018,7,8,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37.2,22.3,42,97209,1282,1321,465,967,831,160,120918,42532,20159,8427,270,2.1,3,3,2000,77777,9,999999999,85,0,0,88,0.2,0,0 +2018,7,8,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38,23,42,98730,1314,1321,471,995,827,173,124178,42140,21747,9058,300,3.1,3,3,3500,77777,9,999999999,92,0,0,88,0.2,0,0 +2018,7,8,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38,23,42,98730,1273,1321,471,957,829,159,119594,41527,19921,8340,280,3.1,3,3,3500,77777,9,999999999,92,0,0,88,0.2,0,0 +2018,7,8,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38.8,21.3,37,97017,1162,1321,473,857,819,137,94452,87325,17928,4989,290,3.6,3,3,2000,77777,9,999999999,76,0,0,88,0.2,0,0 +2018,7,8,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40,22,36,98747,988,1321,481,695,740,142,84286,38795,17274,7258,270,2.1,3,3,4000,77777,9,999999999,83,0,0,88,0.2,0,0 +2018,7,8,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,21,34,98747,763,1321,460,497,644,125,58816,33867,14839,5925,310,3.1,0,0,4000,77777,9,999999999,75,0,0,88,0.2,0,0 +2018,7,8,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,21.1,34,96783,503,1321,480,266,365,127,29786,18135,14284,4963,340,2.6,3,3,4000,77777,9,999999999,74,0,0,88,0.2,0,0 +2018,7,8,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39,21,36,98739,225,1321,481,67,52,58,7379,330,6423,1978,340,3.6,5,5,4000,77777,9,999999999,75,0,0,88,0.2,0,0 +2018,7,8,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38,21,38,98730,0,1076,475,0,0,0,0,0,0,0,340,2.6,5,5,4000,77777,9,999999999,75,0,0,88,0.2,0,0 +2018,7,8,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,37,21.8,41,98722,0,0,452,0,0,0,0,0,0,0,79,2.5,1,1,3750,77777,9,999999999,81,0,0,88,0.2,0,0 +2018,7,8,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,36,22.5,46,98714,0,0,453,0,0,0,0,0,0,0,146,2.3,2,2,3500,77777,9,999999999,87,0,0,88,0.2,0,0 +2018,7,8,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,35,23.2,51,98705,0,0,453,0,0,0,0,0,0,0,346,2.2,3,3,3250,77777,9,999999999,94,0,0,88,0.2,0,0 +2018,7,8,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34,24,56,98697,0,0,455,0,0,0,0,0,0,0,110,2.1,5,5,3000,77777,9,999999999,102,0,0,88,0.2,0,0 +2018,7,9,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34,24,56,98697,0,0,455,0,0,0,0,0,0,0,110,2.1,5,5,3000,77777,9,999999999,102,0,0,88,0.2,0,0 +2018,7,9,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34,25,60,98697,0,0,457,0,0,0,0,0,0,0,110,2.1,5,5,3000,77777,9,999999999,113,0,0,88,0.2,0,0 +2018,7,9,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33,25,63,98689,0,0,451,0,0,0,0,0,0,0,110,2.1,5,5,3000,77777,9,999999999,113,0,0,88,0.2,0,0 +2018,7,9,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33,25,63,98689,0,0,451,0,0,0,0,0,0,0,110,3.6,5,5,2500,77777,9,999999999,113,0,0,88,0.2,0,0 +2018,7,9,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32,25,67,98680,0,0,445,0,0,0,0,0,0,0,110,3.6,5,5,2500,77777,9,999999999,113,0,0,88,0.2,0,0 +2018,7,9,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31.6,25.1,69,97094,0,0,436,0,0,0,0,0,0,0,140,3.1,3,3,2000,77777,9,999999999,113,0,0,88,0.2,0,0 +2018,7,9,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31,27,79,98672,258,1225,417,90,105,70,9778,660,7586,2364,120,3.1,0,0,2500,77777,9,999999999,138,0,0,88,0.2,0,0 +2018,7,9,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,27,75,98680,535,1322,441,289,382,135,32189,16267,15058,5342,130,3.1,3,3,2500,77777,9,999999999,138,0,0,88,0.2,0,0 +2018,7,9,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33.4,27.1,70,97168,792,1322,430,518,642,133,60724,28230,15721,6359,140,4.1,0,0,2000,77777,9,999999999,137,0,0,88,0.2,0,0 +2018,7,9,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34,25,60,98697,1011,1322,431,722,719,171,86268,36664,20595,8614,130,3.1,0,0,3000,77777,9,999999999,113,0,0,88,0.2,0,0 +2018,7,9,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36,26,57,98714,1179,1322,470,816,606,275,96114,34710,32608,13131,140,3.1,5,5,3500,77777,9,999999999,124,0,0,88,0.2,0,0 +2018,7,9,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37.6,21.9,41,97153,1282,1322,474,912,649,282,109348,40556,34062,13640,150,3.1,5,5,2000,3000,9,999999999,81,0,0,88,0.2,0,0 +2018,7,9,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,24,45,98730,1314,1322,479,937,636,304,111875,38624,36588,14555,130,2.1,5,5,4000,3048,9,999999999,101,0,0,88,0.2,0,0 +2018,7,9,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,39,24,43,98739,1273,1322,486,901,547,374,105345,37043,44014,16854,250,2.1,5,5,4500,3048,9,999999999,101,0,0,88,0.2,0,0 +2018,7,9,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38.6,23.6,43,97015,1162,1322,511,446,88,369,51469,6245,42815,16240,250,2.1,9,9,2000,3000,9,999999999,96,0,0,88,0.2,0,0 +2018,7,9,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,40,28,51,98747,988,1322,527,360,30,338,40405,1924,38164,14325,90,2.1,9,9,3000,3048,9,999999999,151,0,0,88,0.2,0,0 +2018,7,9,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,26,51,98730,763,1322,511,255,24,241,28381,1490,26991,9802,70,5.1,9,9,3000,3048,9,999999999,124,0,0,88,0.2,0,0 +2018,7,9,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34.8,24.3,55,96858,503,1322,488,138,17,132,15374,801,14705,5091,50,4.1,9,9,2000,3000,9,999999999,103,0,0,88,0.2,0,0 +2018,7,9,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,24,53,98705,225,1322,461,67,43,60,7287,108,6513,2002,90,3.6,5,5,3000,3048,9,999999999,102,0,0,88,0.2,0,0 +2018,7,9,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,24,53,98705,0,1073,488,0,0,0,0,0,0,0,90,3.6,9,9,3000,3048,9,999999999,102,0,0,88,0.2,0,0 +2018,7,9,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.2,26.8,65,96941,0,0,460,0,0,0,0,0,0,0,90,5.1,5,5,2000,3048,9,999999999,133,0,0,88,0.2,0,0 +2018,7,9,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,26,63,98697,0,0,458,0,0,0,0,0,0,0,80,4.1,5,5,3000,3048,9,999999999,124,0,0,88,0.2,0,0 +2018,7,9,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,28,75,98689,0,0,455,0,0,0,0,0,0,0,110,6.2,5,5,3000,3048,9,999999999,152,0,0,88,0.2,0,0 +2018,7,9,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.8,26.5,74,97184,0,0,446,0,0,0,0,0,0,0,110,5.1,5,5,2000,3048,9,999999999,130,0,0,88,0.2,0,0 +2018,7,10,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26,75,98672,0,0,440,0,0,0,0,0,0,0,100,3.6,5,5,3000,3048,9,999999999,125,0,0,88,0.2,0,0 +2018,7,10,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26,75,98672,0,0,440,0,0,0,0,0,0,0,110,3.1,5,5,3000,3048,9,999999999,125,0,0,88,0.2,0,0 +2018,7,10,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31,26.3,76,97138,0,0,441,0,0,0,0,0,0,0,140,3.1,5,5,2000,3048,9,999999999,127,0,0,88,0.2,0,0 +2018,7,10,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,0,0,435,0,0,0,0,0,0,0,140,3.1,5,5,3000,3048,9,999999999,125,0,0,88,0.2,0,0 +2018,7,10,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,27,84,98663,0,0,436,0,0,0,0,0,0,0,120,3.1,5,5,3000,3048,9,999999999,138,0,0,88,0.2,0,0 +2018,7,10,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29.8,26.5,83,97215,0,0,427,0,0,0,0,0,0,0,140,3.1,3,3,2000,77777,9,999999999,130,0,0,88,0.2,0,0 +2018,7,10,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30,27,84,98663,256,1215,429,88,97,69,9531,564,7527,2344,90,3.1,3,3,3000,77777,9,999999999,138,0,0,88,0.2,0,0 +2018,7,10,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,27,84,98663,533,1322,436,271,311,146,29996,13984,16178,5637,140,3.6,5,5,2500,3048,9,999999999,138,0,0,88,0.2,0,0 +2018,7,10,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31.2,26.8,78,97237,791,1322,442,481,489,188,54904,25656,21600,8386,150,2.1,5,5,2000,77777,9,999999999,134,0,0,88,0.2,0,0 +2018,7,10,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,26,67,98689,1010,1322,452,670,596,214,78541,32186,25265,10358,110,3.1,5,5,2700,3048,9,999999999,125,0,0,88,0.2,0,0 +2018,7,10,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,26,63,98697,1178,1322,458,815,605,276,95997,34691,32711,13165,120,3.1,5,5,3000,3048,9,999999999,124,0,0,88,0.2,0,0 +2018,7,10,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,22.6,47,97205,1281,1322,463,910,646,284,109013,39833,34249,13714,110,3.1,5,5,2000,3048,9,999999999,87,0,0,88,0.2,0,0 +2018,7,10,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,26,54,98722,1314,1322,476,933,627,310,110986,36258,37125,14771,120,2.1,5,5,3000,3048,9,999999999,124,0,0,88,0.2,0,0 +2018,7,10,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,26,51,98730,1273,1322,482,898,632,289,106775,35874,34631,13895,110,2.6,5,5,3000,3048,9,999999999,124,0,0,88,0.2,0,0 +2018,7,10,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38.6,24.9,46,97025,1162,1322,484,803,610,267,94793,35805,31670,12778,90,2.1,5,5,2000,3000,9,999999999,109,0,0,88,0.2,0,0 +2018,7,10,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,24,45,98730,988,1322,479,653,599,205,76797,33982,24220,9907,80,2.1,5,5,3000,3048,9,999999999,101,0,0,88,0.2,0,0 +2018,7,10,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,25,48,98730,763,1322,481,460,475,185,52415,26376,21262,8145,60,2.1,5,5,3500,3048,9,999999999,112,0,0,88,0.2,0,0 +2018,7,10,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37.8,25.9,51,96824,503,1322,481,248,290,138,27446,13002,15308,5256,90,4.1,5,5,2000,3000,9,999999999,121,0,0,88,0.2,0,0 +2018,7,10,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,25,50,98722,224,1322,475,67,50,58,7255,5,6355,1967,80,5.1,5,5,3500,3048,9,999999999,112,0,0,88,0.2,0,0 +2018,7,10,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,25,53,98714,0,1069,469,0,0,0,0,0,0,0,110,4.1,5,5,3500,3048,9,999999999,112,0,0,88,0.2,0,0 +2018,7,10,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35.2,26.3,60,96929,0,0,466,0,0,0,0,0,0,0,90,4.6,5,5,2000,3000,9,999999999,126,0,0,88,0.2,0,0 +2018,7,10,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,27,71,98689,0,0,453,0,0,0,0,0,0,0,110,5.7,5,5,3500,3048,9,999999999,138,0,0,88,0.2,0,0 +2018,7,10,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,25,67,98680,0,0,471,0,0,0,0,0,0,0,110,5.7,9,9,3500,3048,9,999999999,113,0,0,88,0.2,0,0 +2018,7,10,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32.2,27.6,77,97167,0,0,476,0,0,0,0,0,0,0,110,6.2,9,9,2000,3000,9,999999999,145,0,0,88,0.2,0,0 +2018,7,11,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,26,71,98680,0,0,472,0,0,0,0,0,0,0,140,4.1,9,9,3500,3048,9,999999999,125,0,0,88,0.2,0,0 +2018,7,11,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,26,71,98680,0,0,472,0,0,0,0,0,0,0,120,3.6,9,9,3200,3048,9,999999999,125,0,0,88,0.2,0,0 +2018,7,11,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31.2,25.3,71,97149,0,0,467,0,0,0,0,0,0,0,140,3.1,9,9,2000,3000,9,999999999,115,0,0,88,0.2,0,0 +2018,7,11,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26,75,98672,0,0,466,0,0,0,0,0,0,0,110,4.1,9,9,3000,3048,9,999999999,125,0,0,88,0.2,0,0 +2018,7,11,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,0,0,435,0,0,0,0,0,0,0,100,3.1,5,5,3000,3048,9,999999999,125,0,0,88,0.2,0,0 +2018,7,11,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30.2,26,78,97082,0,0,436,0,0,0,0,0,0,0,110,3.6,5,5,2000,77777,9,999999999,124,0,0,88,0.2,0,0 +2018,7,11,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30,27,84,98663,254,1205,429,87,95,69,9410,505,7463,2323,120,2.6,3,3,3000,77777,9,999999999,138,0,0,88,0.2,0,0 +2018,7,11,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,27,79,98672,532,1322,442,270,310,145,29851,13898,16131,5616,120,2.6,5,5,3000,3048,9,999999999,138,0,0,88,0.2,0,0 +2018,7,11,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32.6,26.5,70,97239,789,1322,450,480,490,188,54834,25923,21554,8362,110,3.1,5,5,2000,3000,9,999999999,130,0,0,88,0.2,0,0 +2018,7,11,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,27,71,98689,1009,1322,453,668,593,215,78143,30967,25302,10384,130,2.6,5,5,3000,3048,9,999999999,138,0,0,88,0.2,0,0 +2018,7,11,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,27,67,98697,1177,1322,459,813,601,277,95557,33450,32813,13217,260,2.6,5,5,3500,3048,9,999999999,138,0,0,88,0.2,0,0 +2018,7,11,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35.2,22.8,49,97202,1281,1322,461,910,645,285,108884,39622,34281,13727,290,3.1,5,5,2000,3000,9,999999999,89,0,0,88,0.2,0,0 +2018,7,11,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36,26,57,98714,1314,1322,470,933,536,401,108762,35165,47054,17863,290,2.1,5,5,3500,3000,9,999999999,124,0,0,88,0.2,0,0 +2018,7,11,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37,26,54,98722,1273,1322,504,498,85,417,57560,5754,48515,18166,330,2.6,9,9,3500,3000,9,999999999,124,0,0,88,0.2,0,0 +2018,7,11,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36.2,26.9,59,96889,1162,1322,500,444,64,388,50711,4249,44654,16805,70,5.1,9,9,2000,1050,9,999999999,134,0,0,88,0.2,0,0 +2018,7,11,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,26,60,98705,988,1322,491,361,27,341,40641,1847,38644,14414,60,5.1,9,9,3000,3048,9,999999999,124,0,0,88,0.2,0,0 +2018,7,11,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,26,67,98689,763,1322,479,254,24,241,28360,1487,26974,9795,80,5.1,9,9,3000,3048,9,999999999,125,0,0,88,0.2,0,0 +2018,7,11,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,24.8,62,96814,502,1322,477,138,15,132,15314,699,14730,5098,90,5.1,9,9,2000,3000,9,999999999,109,0,0,88,0.2,0,0 +2018,7,11,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,25,67,98680,224,1322,471,37,0,37,3528,0,3556,1393,140,4.1,9,9,3000,3048,9,999999999,113,0,0,88,0.2,0,0 +2018,7,11,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,25,67,98680,0,1065,471,0,0,0,0,0,0,0,140,2.6,9,9,3000,3048,9,999999999,113,0,0,88,0.2,0,0 +2018,7,11,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31.2,25.3,71,96935,0,0,467,0,0,0,0,0,0,0,140,2.6,9,9,2000,3000,9,999999999,115,0,0,88,0.2,0,0 +2018,7,11,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,25,70,98672,0,0,465,0,0,0,0,0,0,0,150,1.5,9,9,3000,3048,9,999999999,113,0,0,88,0.2,0,0 +2018,7,11,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,25,75,98663,0,0,459,0,0,0,0,0,0,0,230,3.6,9,9,3000,3048,9,999999999,113,0,0,88,0.2,0,0 +2018,7,11,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29.8,25,76,97069,0,0,458,0,0,0,0,0,0,0,230,3.1,9,9,2000,3000,9,999999999,112,0,0,88,0.2,0,0 +2018,7,12,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,25,75,98663,0,0,459,0,0,0,0,0,0,0,87,0,9,9,3000,3048,9,999999999,113,0,0,88,0.2,0,0 +2018,7,12,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,25,75,98663,0,0,433,0,0,0,0,0,0,0,92,0,5,5,3000,3048,9,999999999,113,0,0,88,0.2,0,0 +2018,7,12,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,29.6,24.8,75,96931,0,0,431,0,0,0,0,0,0,0,224,0,5,5,2000,3048,9,999999999,110,0,0,88,0.2,0,0 +2018,7,12,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,25,75,98663,0,0,433,0,0,0,0,0,0,0,40,0,5,5,3000,3048,9,999999999,113,0,0,88,0.2,0,0 +2018,7,12,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,25,75,98663,0,0,433,0,0,0,0,0,0,0,230,2.1,5,5,3000,3048,9,999999999,113,0,0,88,0.2,0,0 +2018,7,12,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,29.4,24.5,75,96988,0,0,429,0,0,0,0,0,0,0,326,0,5,5,2000,3048,9,999999999,107,0,0,88,0.2,0,0 +2018,7,12,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,25,79,98654,252,1194,428,81,68,68,8794,573,7400,2296,160,2.1,5,5,3000,3048,9,999999999,114,0,0,88,0.2,0,0 +2018,7,12,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,25,79,98654,530,1322,428,269,311,144,29879,15030,16100,5586,150,1.5,5,5,3000,3048,9,999999999,114,0,0,88,0.2,0,0 +2018,7,12,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30.8,25.1,72,97107,788,1322,438,480,493,186,54952,27223,21426,8300,210,2.1,5,5,2000,3000,9,999999999,113,0,0,88,0.2,0,0 +2018,7,12,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,26,67,98689,1008,1322,452,668,595,214,78307,32143,25202,10331,290,1.5,5,5,3000,3048,9,999999999,125,0,0,88,0.2,0,0 +2018,7,12,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,25,60,98697,1176,1322,457,815,608,274,96188,35842,32503,13076,250,2.6,5,5,3000,3048,9,999999999,113,0,0,88,0.2,0,0 +2018,7,12,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35.2,24.8,55,97085,1280,1322,463,906,544,380,105781,36264,44632,17065,270,2.6,5,5,2000,3000,9,999999999,109,0,0,88,0.2,0,0 +2018,7,12,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,24,50,98714,1313,1322,495,519,86,434,60317,6164,50804,18860,290,1.5,9,9,3500,3048,9,999999999,102,0,0,88,0.2,0,0 +2018,7,12,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,27,60,98714,1273,1322,499,497,64,435,57152,4355,50431,18696,200,1.5,9,9,3500,3048,9,999999999,137,0,0,88,0.2,0,0 +2018,7,12,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,25.3,51,96934,1162,1322,503,445,64,389,50966,4484,44826,16820,140,2.1,9,9,2000,3000,9,999999999,114,0,0,88,0.2,0,0 +2018,7,12,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,26,51,98730,988,1322,511,361,27,341,40631,1846,38635,14410,120,2.1,9,9,3500,3048,9,999999999,124,0,0,88,0.2,0,0 +2018,7,12,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,26,54,98722,763,1322,504,254,24,240,28341,1484,26957,9789,110,4.1,9,9,4000,3048,9,999999999,124,0,0,88,0.2,0,0 +2018,7,12,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36.4,26.5,57,96754,502,1322,501,137,15,132,15200,624,14645,5084,110,2.6,9,9,4000,3000,9,999999999,128,0,0,88,0.2,0,0 +2018,7,12,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,25,56,98705,223,1322,490,36,0,36,3504,0,3531,1384,100,3.1,9,9,3500,3048,9,999999999,112,0,0,88,0.2,0,0 +2018,7,12,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,27,71,98689,0,1061,480,0,0,0,0,0,0,0,120,4.1,9,9,3500,3048,9,999999999,138,0,0,88,0.2,0,0 +2018,7,12,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32.2,25.1,66,97002,0,0,486,0,0,0,0,0,0,0,250,3.6,10,10,2000,900,0,19999999,113,0,0,88,0.2,0,0 +2018,7,12,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,27,84,98663,0,0,462,0,0,0,0,0,0,0,130,4.1,9,9,2800,3048,0,19999999,138,0,0,88,0.2,0,0 +2018,7,12,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,27,84,98663,0,0,462,0,0,0,0,0,0,0,160,4.6,9,9,3000,3048,0,19999999,138,0,0,88,0.2,0,0 +2018,7,12,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28.4,25.6,85,97164,0,0,450,0,0,0,0,0,0,0,200,1.5,9,9,2000,3000,0,19999999,119,0,0,88,0.2,0,0 +2018,7,13,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,27,89,98654,0,0,456,0,0,0,0,0,0,0,180,1.5,9,9,3000,3048,0,19999999,139,0,0,88,0.2,0,0 +2018,7,13,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,27,89,98654,0,0,456,0,0,0,0,0,0,0,110,3.6,9,9,3000,3048,0,19999999,139,0,0,88,0.2,0,0 +2018,7,13,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28.4,24.7,80,97057,0,0,449,0,0,0,0,0,0,0,90,4.6,9,9,2000,3000,0,19999999,109,0,0,88,0.2,0,0 +2018,7,13,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,27,89,98654,0,0,456,0,0,0,0,0,0,0,90,3.6,9,9,3000,3048,0,19999999,139,0,0,88,0.2,0,0 +2018,7,13,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,25,84,98646,0,0,447,0,0,0,0,0,0,0,110,4.1,9,9,3000,3048,0,19999999,114,0,0,88,0.2,0,0 +2018,7,13,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28.2,25.1,83,97124,0,0,461,0,0,0,0,0,0,0,110,3.6,10,10,2000,900,9,999999999,113,0,0,88,0.2,1,0 +2018,7,13,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,25,84,98646,250,1184,447,44,0,44,4256,0,4290,1672,90,3.1,9,9,3000,3048,9,999999999,114,0,0,88,0.2,0,0 +2018,7,13,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,25,79,98654,528,1322,453,149,21,140,16528,993,15668,5464,100,4.1,9,9,3000,3048,9,999999999,114,0,0,88,0.2,0,0 +2018,7,13,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30.2,25.4,76,97189,787,1322,435,479,442,215,54117,26068,24479,9237,90,4.1,5,5,2000,3000,9,999999999,117,0,0,88,0.2,0,0 +2018,7,13,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,26,71,98680,1007,1322,446,667,522,269,76780,31445,31175,12349,200,1.5,5,5,3500,3048,9,999999999,125,0,0,88,0.2,0,0 +2018,7,13,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,26,67,98689,1176,1322,479,451,87,374,51855,5810,43266,16446,50,1.5,9,9,3500,3048,9,999999999,125,0,0,88,0.2,0,0 +2018,7,13,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31.6,26.6,75,97260,1280,1322,484,305,15,291,36298,830,34809,13972,250,2.1,10,10,2000,1050,0,919999999,131,0,0,88,0.2,0,0 +2018,7,13,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,31.6,27.1,77,97188,1313,1322,454,805,333,475,92445,23278,54957,19984,198,2.3,7,7,2000,1050,9,999999999,138,0,0,88,0.2,0,0 +2018,7,13,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,31.6,27.6,79,97117,1273,1322,455,743,272,481,84599,19226,55220,19889,232,2.4,7,7,2000,1050,9,999999999,145,0,0,88,0.2,0,0 +2018,7,13,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31.6,28.1,82,97045,1162,1322,486,270,18,254,31825,933,30131,12297,290,2.6,10,10,2000,1050,0,919999999,152,0,0,88,0.2,0,0 +2018,7,13,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,988,1322,473,220,5,216,25678,256,25409,10354,120,4.6,10,10,2500,2438,0,19999999,125,0,0,88,0.2,0,0 +2018,7,13,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,26,100,98628,763,1322,449,155,0,155,15575,0,15723,7071,10,4.1,10,10,2000,2438,0,19999999,126,0,0,88,0.2,0,0 +2018,7,13,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26.6,25.7,95,97012,502,1322,452,84,0,84,8219,0,8290,3580,120,4.1,10,10,2000,900,0,19999999,121,0,0,88,0.2,0,0 +2018,7,13,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,26,94,98637,222,1322,442,36,0,36,3471,0,3498,1374,150,1.5,9,9,2500,3048,0,19999999,126,0,0,88,0.2,0,0 +2018,7,13,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,26,94,98637,0,1056,442,0,0,0,0,0,0,0,150,1,9,9,3000,3048,0,19999999,126,0,0,88,0.2,0,0 +2018,7,13,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,27,25.6,92,97094,0,0,417,0,0,0,0,0,0,0,148,0,5,5,2000,3048,0,19999999,120,0,0,88,0.2,0,0 +2018,7,13,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,27,94,98646,0,0,424,0,0,0,0,0,0,0,20,1.5,5,5,3500,3048,0,19999999,139,0,0,88,0.2,0,0 +2018,7,13,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,27,94,98646,0,0,424,0,0,0,0,0,0,0,80,1.5,5,5,3500,3048,0,19999999,139,0,0,88,0.2,0,0 +2018,7,13,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,27.2,26.1,94,97164,0,0,419,0,0,0,0,0,0,0,339,0,5,5,2000,3048,0,19999999,126,0,0,88,0.2,0,0 +2018,7,14,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,27.6,26.5,94,97905,0,0,459,0,0,0,0,0,0,0,136,0,10,10,2500,3048,9,999999999,131,0,0,88,0.2,0,0 +2018,7,14,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,28,27,94,98646,0,0,424,0,0,0,0,0,0,0,153,0,5,5,3000,3048,0,19999999,139,0,0,88,0.2,0,0 +2018,7,14,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27.2,26.4,95,97144,0,0,419,0,0,0,0,0,0,0,50,0,5,5,2000,77777,0,19999999,129,0,0,88,0.2,0,0 +2018,7,14,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,27,94,98646,0,0,424,0,0,0,0,0,0,0,40,1.5,5,5,2500,3048,0,19999999,139,0,0,88,0.2,0,0 +2018,7,14,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,28,100,98646,0,0,426,0,0,0,0,0,0,0,29,0,5,5,2500,3048,0,19999999,153,0,0,88,0.2,0,0 +2018,7,14,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27.2,26.4,95,97096,0,0,444,0,0,0,0,0,0,0,102,0,9,9,2000,3000,9,999999999,129,0,0,88,0.2,6,0 +2018,7,14,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,27,94,98646,248,1173,462,27,0,27,2543,0,2564,1082,6,0,10,10,2200,3048,9,999999999,139,0,0,88,0.2,6,0 +2018,7,14,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,27,94,98646,527,1322,462,90,0,90,8837,0,8915,3874,301,0,10,10,2200,3048,9,999999999,139,0,0,88,0.2,6,0 +2018,7,14,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27.8,26.7,94,97198,785,1322,461,161,0,161,18607,12,18681,7392,50,2.1,10,10,2000,2400,9,999999999,133,0,0,88,0.2,4,0 +2018,7,14,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,27,89,98654,1007,1322,468,225,5,221,26250,263,25956,10608,190,2.6,10,10,2000,2438,0,19999999,139,0,0,88,0.2,0,0 +2018,7,14,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,27,89,98654,1175,1322,468,274,7,268,32316,377,31794,12866,270,1,10,10,2000,2438,0,19999999,139,0,0,88,0.2,0,0 +2018,7,14,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29.6,27.7,90,97223,1280,1322,473,305,7,298,36076,385,35495,14227,180,1.5,10,10,2000,1050,0,19999999,147,0,0,88,0.2,0,0 +2018,7,14,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26,75,98672,1313,1322,480,315,13,302,37570,767,36221,14465,120,4.6,10,10,2000,2438,0,19999999,125,0,0,88,0.2,0,0 +2018,7,14,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,1273,1322,460,498,54,446,57199,3804,51640,18983,70,6.2,9,9,2500,2438,0,19999999,125,0,0,88,0.2,0,0 +2018,7,14,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,27.7,83,97001,1162,1322,469,443,63,388,50534,4117,44532,16787,90,3.1,9,9,2000,1050,0,19999999,146,0,0,88,0.2,0,0 +2018,7,14,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,27,75,98680,988,1322,474,360,27,340,40464,1779,38493,14387,70,3.6,9,9,2500,3048,0,19999999,138,0,0,88,0.2,0,0 +2018,7,14,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,26,71,98680,762,1322,472,254,24,240,28298,1480,26919,9774,90,4.1,9,9,2800,3048,0,19999999,125,0,0,88,0.2,0,0 +2018,7,14,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30.8,25.4,73,96863,501,1322,464,137,15,131,15197,654,14641,5070,90,4.1,9,9,2000,3000,0,19999999,116,0,0,88,0.2,0,0 +2018,7,14,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,27,84,98663,221,1322,462,36,0,36,3437,0,3464,1364,90,4.6,9,9,3000,3048,0,19999999,138,0,0,88,0.2,0,0 +2018,7,14,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,0,1051,454,0,0,0,0,0,0,0,100,3.1,9,9,3000,3048,0,19999999,125,0,0,88,0.2,0,0 +2018,7,14,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29.6,25.1,77,97019,0,0,431,0,0,0,0,0,0,0,110,2.1,5,5,2000,3000,0,19999999,113,0,0,88,0.2,0,0 +2018,7,14,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29,26,84,98654,0,0,422,0,0,0,0,0,0,0,110,3.1,3,3,3000,3000,0,19999999,125,0,0,88,0.2,0,0 +2018,7,14,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29,27,89,98654,0,0,423,0,0,0,0,0,0,0,100,3.6,3,3,3000,3000,0,19999999,139,0,0,88,0.2,0,0 +2018,7,14,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28.6,25.5,83,97147,0,0,426,0,0,0,0,0,0,0,110,3.1,5,5,2000,77777,0,19999999,118,0,0,88,0.2,0,0 +2018,7,15,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,0,0,423,0,0,0,0,0,0,0,100,2.6,5,5,3000,3048,0,19999999,126,0,0,88,0.2,0,0 +2018,7,15,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,0,0,423,0,0,0,0,0,0,0,90,2.6,5,5,3000,3048,0,19999999,126,0,0,88,0.2,0,0 +2018,7,15,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.4,25.4,89,97097,0,0,419,0,0,0,0,0,0,0,90,1.5,5,5,2000,3048,0,19999999,117,0,0,88,0.2,0,0 +2018,7,15,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,0,0,423,0,0,0,0,0,0,0,100,1.5,5,5,3000,3048,0,19999999,126,0,0,88,0.2,0,0 +2018,7,15,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,0,0,423,0,0,0,0,0,0,0,80,1.5,5,5,3000,3048,0,19999999,126,0,0,88,0.2,0,0 +2018,7,15,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.6,25.9,90,97128,0,0,421,0,0,0,0,0,0,0,90,2.6,5,5,2000,3048,9,999999999,123,0,0,88,0.2,7,0 +2018,7,15,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,246,1162,423,77,63,66,8414,310,7173,2226,100,2.1,5,5,3000,3048,9,999999999,126,0,0,88,0.2,0,0 +2018,7,15,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,525,1322,423,265,306,143,29322,14134,15959,5530,90,2.6,5,5,3000,3048,9,999999999,126,0,0,88,0.2,0,0 +2018,7,15,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29.2,25.8,82,97210,784,1322,430,476,487,187,54358,26391,21520,8320,90,2.1,5,5,2000,3000,9,999999999,122,0,0,88,0.2,0,0 +2018,7,15,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32,26,71,98680,1006,1322,446,665,595,213,77981,32095,25084,10281,120,5.1,5,5,3000,3000,9,999999999,125,0,0,88,0.2,0,0 +2018,7,15,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,26,67,98689,1174,1322,452,812,559,316,94566,34220,37007,14573,120,5.1,5,5,3500,3048,9,999999999,125,0,0,88,0.2,0,0 +2018,7,15,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,27.1,67,97173,1279,1322,487,500,84,419,57697,5543,48694,18254,140,5.7,9,9,2000,3000,9,999999999,137,0,0,88,0.2,0,0 +2018,7,15,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,27,63,98705,1313,1322,493,516,64,452,59483,4387,52535,19372,150,3.6,9,9,3500,3048,9,999999999,137,0,0,88,0.2,0,0 +2018,7,15,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,27,63,98705,1273,1322,493,497,64,435,57119,4355,50403,18686,130,3.6,9,9,3500,3048,9,999999999,137,0,0,88,0.2,0,0 +2018,7,15,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35.6,27.1,62,96962,1162,1322,497,443,63,388,50638,4216,44600,16792,140,3.1,9,9,2000,3000,9,999999999,137,0,0,88,0.2,0,0 +2018,7,15,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,26,60,98705,987,1322,491,360,27,340,40588,1844,38596,14394,120,3.6,9,9,4000,3048,9,999999999,124,0,0,88,0.2,0,0 +2018,7,15,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,26,60,98705,762,1322,491,254,24,240,28278,1480,26900,9766,120,3.6,9,9,4000,3048,9,999999999,124,0,0,88,0.2,0,0 +2018,7,15,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33.8,26.6,66,96820,500,1322,485,136,14,131,15108,603,14571,5056,110,4.1,9,9,2000,1050,9,999999999,130,0,0,88,0.2,0,0 +2018,7,15,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,27,71,98689,220,1322,480,36,0,36,3411,0,3438,1354,110,3.6,9,9,4000,3048,9,999999999,138,0,0,88,0.2,0,0 +2018,7,15,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,26,71,98680,0,1045,446,0,0,0,0,0,0,0,120,3.1,5,5,4000,3048,9,999999999,125,0,0,88,0.2,0,0 +2018,7,15,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30.8,26.6,78,96961,0,0,440,0,0,0,0,0,0,0,110,2.6,5,5,4000,3000,9,999999999,131,0,0,88,0.2,0,0 +2018,7,15,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,27,84,98663,0,0,436,0,0,0,0,0,0,0,110,2.6,5,5,4000,3048,9,999999999,138,0,0,88,0.2,0,0 +2018,7,15,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,27,84,98663,0,0,436,0,0,0,0,0,0,0,120,2.6,5,5,4000,3048,9,999999999,138,0,0,88,0.2,0,0 +2018,7,15,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30,26.9,84,97120,0,0,436,0,0,0,0,0,0,0,110,2.6,5,5,4000,3048,9,999999999,135,0,0,88,0.2,0,0 +2018,7,16,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,27,84,98663,0,0,462,0,0,0,0,0,0,0,90,4.1,9,9,3500,3048,9,999999999,138,0,0,88,0.2,0,0 +2018,7,16,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,28,89,98663,0,0,463,0,0,0,0,0,0,0,90,3.6,9,9,3500,3048,9,999999999,153,0,0,88,0.2,0,0 +2018,7,16,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29.8,27,85,97118,0,0,460,0,0,0,0,0,0,0,90,3.1,9,9,2000,3000,9,999999999,137,0,0,88,0.2,0,0 +2018,7,16,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,28,89,98663,0,0,463,0,0,0,0,0,0,0,110,3.1,9,9,3500,3048,9,999999999,153,0,0,88,0.2,0,0 +2018,7,16,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,28,89,98663,0,0,463,0,0,0,0,0,0,0,90,3.6,9,9,3500,3048,9,999999999,153,0,0,88,0.2,0,0 +2018,7,16,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29.4,27.2,88,97134,0,0,458,0,0,0,0,0,0,0,110,3.1,9,9,2000,3000,9,999999999,140,0,0,88,0.2,0,0 +2018,7,16,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,28,89,98663,244,1151,463,42,0,42,4039,0,4071,1599,110,3.6,9,9,3500,3048,9,999999999,153,0,0,88,0.2,0,0 +2018,7,16,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,28,84,98672,523,1322,469,146,18,139,16113,735,15407,5392,120,4.1,9,9,3500,3048,9,999999999,153,0,0,88,0.2,0,0 +2018,7,16,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32.4,27.8,77,97228,783,1322,478,263,24,248,29199,1442,27763,10154,110,3.6,9,9,2000,3000,9,999999999,148,0,0,88,0.2,0,0 +2018,7,16,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,28,79,98680,1005,1322,475,367,27,347,41255,1737,39253,14710,120,3.6,9,9,3500,3048,9,999999999,153,0,0,88,0.2,0,0 +2018,7,16,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,27,71,98689,1174,1322,480,449,57,399,51277,3840,45839,17159,140,4.1,9,9,3500,3048,9,999999999,138,0,0,88,0.2,0,0 +2018,7,16,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,25.1,63,97164,1279,1322,491,306,13,293,36398,761,35130,14053,140,3.1,10,10,2000,1050,9,999999999,113,0,0,88,0.2,0,0 +2018,7,16,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,28,71,98697,1312,1322,502,314,7,307,37253,394,36633,14645,150,4.1,10,10,3500,3048,9,999999999,152,0,0,88,0.2,0,0 +2018,7,16,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,27,84,98663,1272,1322,475,303,7,296,35885,392,35311,14145,350,4.6,10,10,1500,2438,0,19999999,138,0,0,88,0.2,0,0 +2018,7,16,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28.2,27.4,95,97075,1161,1322,464,270,7,264,31778,362,31277,12684,200,6.2,10,10,1000,1050,0,19999999,143,0,0,88,0.2,0,0 +2018,7,16,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,27,94,98646,987,1322,462,219,5,216,25563,245,25300,10327,330,3.6,10,10,1800,2438,0,19999999,139,0,0,88,0.2,0,0 +2018,7,16,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,27,94,98646,761,1322,462,154,0,154,15480,0,15628,7042,200,2.1,10,10,1800,2438,0,19999999,139,0,0,88,0.2,0,0 +2018,7,16,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28.4,25.6,85,96921,500,1322,463,83,0,83,8168,0,8239,3556,91,0,10,10,2000,1200,0,19999999,119,0,0,88,0.2,0,0 +2018,7,16,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,27,89,98654,219,1322,456,35,0,35,3382,0,3408,1342,80,1,9,9,2000,3048,0,19999999,139,0,0,88,0.2,0,0 +2018,7,16,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,27,89,98654,0,1039,456,0,0,0,0,0,0,0,330,1.5,9,9,2000,3048,0,19999999,139,0,0,88,0.2,0,0 +2018,7,16,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28.6,27.2,92,97078,0,0,453,0,0,0,0,0,0,0,360,2.1,9,9,2000,3000,0,19999999,140,0,0,88,0.2,0,0 +2018,7,16,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,28,94,98654,0,0,457,0,0,0,0,0,0,0,10,2.6,9,9,2500,3048,0,19999999,153,0,0,88,0.2,0,0 +2018,7,16,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,28,94,98654,0,0,457,0,0,0,0,0,0,0,10,2.6,9,9,2500,3048,0,19999999,153,0,0,88,0.2,0,0 +2018,7,16,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28.6,27.2,92,97273,0,0,453,0,0,0,0,0,0,0,90,2.1,9,9,2000,3000,0,19999999,140,0,0,88,0.2,0,0 +2018,7,17,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,28,94,98654,0,0,457,0,0,0,0,0,0,0,70,2.1,9,9,2500,3048,0,19999999,153,0,0,88,0.2,0,0 +2018,7,17,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,0,0,454,0,0,0,0,0,0,0,100,2.6,9,9,2500,3048,0,19999999,125,0,0,88,0.2,0,0 +2018,7,17,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28.4,27,92,97106,0,0,452,0,0,0,0,0,0,0,90,2.6,9,9,2000,3000,0,19999999,137,0,0,88,0.2,0,0 +2018,7,17,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,27,89,98654,0,0,456,0,0,0,0,0,0,0,90,2.6,9,9,2500,3048,0,19999999,139,0,0,88,0.2,0,0 +2018,7,17,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,28,94,98654,0,0,457,0,0,0,0,0,0,0,90,2.6,9,9,2500,3048,0,19999999,153,0,0,88,0.2,0,0 +2018,7,17,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28.2,26.8,92,97172,0,0,450,0,0,0,0,0,0,0,90,2.6,9,9,2000,900,9,999999999,135,0,0,88,0.2,5,0 +2018,7,17,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,28,89,98663,242,1140,476,25,0,25,2427,0,2446,1035,100,2.6,10,10,2500,914,9,999999999,153,0,0,88,0.2,5,0 +2018,7,17,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,28,89,98663,521,1322,476,88,0,88,8668,0,8745,3806,90,3.6,10,10,2500,914,9,999999999,153,0,0,88,0.2,5,0 +2018,7,17,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31.2,26.5,76,97217,781,1322,468,262,35,242,29314,2142,27151,9966,110,3.1,9,9,2000,3000,9,999999999,130,0,0,88,0.2,0,0 +2018,7,17,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,28,75,98689,1004,1322,482,367,27,347,41199,1736,39199,14689,100,3.1,9,9,3500,2438,9,999999999,152,0,0,88,0.2,0,0 +2018,7,17,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,27,71,98689,1173,1322,480,449,64,393,51294,4245,45183,16981,120,3.1,9,9,3500,2438,9,999999999,138,0,0,88,0.2,0,0 +2018,7,17,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33.8,26.6,66,97288,1278,1322,485,500,64,438,57530,4424,50755,18786,110,3.1,9,9,2000,3000,9,999999999,131,0,0,88,0.2,0,0 +2018,7,17,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,27,67,98697,1312,1322,486,516,64,452,59442,4387,52500,19360,180,2.6,9,9,3500,2743,9,999999999,138,0,0,88,0.2,0,0 +2018,7,17,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,26,60,98705,1272,1322,491,498,65,435,57279,4509,50507,18688,100,3.1,9,9,3500,2743,9,999999999,124,0,0,88,0.2,0,0 +2018,7,17,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35.4,26.3,59,97116,1161,1322,494,444,64,388,50742,4337,44665,16791,110,2.6,9,9,2000,3000,9,999999999,126,0,0,88,0.2,0,0 +2018,7,17,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,27,57,98722,987,1322,506,360,27,340,40417,1780,38447,14366,90,2.6,9,9,3500,3048,0,99999999,137,0,0,88,0.2,0,0 +2018,7,17,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,25,56,98705,761,1322,490,254,24,240,28308,1531,26921,9751,80,4.1,9,9,4000,3048,0,99999999,112,0,0,88,0.2,0,0 +2018,7,17,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33.8,26,64,96898,499,1322,484,136,14,130,15059,611,14530,5034,110,2.6,9,9,4000,3000,0,99999999,123,0,0,88,0.2,0,0 +2018,7,17,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,26,60,98705,218,1322,491,35,0,35,3362,0,3388,1332,120,2.6,9,9,5000,3048,0,99999999,124,0,0,88,0.2,0,0 +2018,7,17,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,26,63,98697,0,1032,485,0,0,0,0,0,0,0,120,2.1,9,9,4000,3048,0,99999999,124,0,0,88,0.2,0,0 +2018,7,17,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,31.8,27.1,76,97096,0,0,446,0,0,0,0,0,0,0,31,0,5,5,4000,3048,0,99999999,138,0,0,88,0.2,0,0 +2018,7,17,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,27,71,98689,0,0,453,0,0,0,0,0,0,0,20,2.6,5,5,3500,3048,0,99999999,138,0,0,88,0.2,0,0 +2018,7,17,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,27,75,98680,0,0,447,0,0,0,0,0,0,0,60,2.1,5,5,3500,3048,0,99999999,138,0,0,88,0.2,0,0 +2018,7,17,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.2,27.3,80,97198,0,0,443,0,0,0,0,0,0,0,70,2.1,5,5,2000,3048,0,99999999,141,0,0,88,0.2,5,0 +2018,7,18,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,27,79,98672,0,0,442,0,0,0,0,0,0,0,40,2.1,5,5,3000,3048,0,99999999,138,0,0,88,0.2,0,0 +2018,7,18,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,27,84,98663,0,0,436,0,0,0,0,0,0,0,30,2.1,5,5,3000,3048,0,99999999,138,0,0,88,0.2,5,0 +2018,7,18,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30,27,84,98663,0,0,436,0,0,0,0,0,0,0,50,2.1,5,5,3000,3048,0,99999999,138,0,0,88,0.2,0,0 +2018,7,18,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30,28,89,98663,0,0,437,0,0,0,0,0,0,0,60,2.6,5,5,3000,3048,0,99999999,153,0,0,88,0.2,0,0 +2018,7,18,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30,28,89,98663,0,0,437,0,0,0,0,0,0,0,70,2.1,5,5,3000,3048,0,99999999,153,0,0,88,0.2,0,0 +2018,7,18,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29.2,26.7,86,97200,0,0,431,0,0,0,0,0,0,0,110,2.1,5,5,2000,77777,9,999999999,133,0,0,88,0.2,0,0 +2018,7,18,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,27,84,98663,240,1129,436,74,57,64,8030,72,6937,2154,110,2.6,5,5,3000,3048,9,999999999,138,0,0,88,0.2,0,0 +2018,7,18,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,28,79,98680,520,1323,449,260,299,143,28657,12557,15802,5478,100,3.6,5,5,3500,3048,9,999999999,153,0,0,88,0.2,0,0 +2018,7,18,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31.8,25.6,70,97300,780,1323,444,473,484,187,53964,26440,21481,8287,90,4.6,5,5,4000,77777,9,999999999,119,0,0,88,0.2,0,0 +2018,7,18,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,27,71,98689,1003,1323,453,661,592,213,77371,30851,25036,10270,110,5.1,5,5,4000,3048,9,999999999,138,0,0,88,0.2,0,0 +2018,7,18,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,27,67,98697,1172,1323,459,809,602,275,95014,33415,32548,13122,120,5.1,5,5,4000,3048,9,999999999,138,0,0,88,0.2,0,0 +2018,7,18,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35.4,27.5,64,97360,1278,1323,468,900,625,296,106571,34001,35244,14136,140,4.1,5,5,4000,3000,9,999999999,143,0,0,88,0.2,0,0 +2018,7,18,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36,27,60,98714,1312,1323,471,930,623,312,110284,34989,37250,14830,130,3.1,5,5,4000,3000,9,999999999,137,0,0,88,0.2,0,0 +2018,7,18,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36,27,60,98714,1272,1323,471,895,628,291,106167,34605,34796,13969,130,4.1,5,5,4000,3000,0,919999999,137,0,0,88,0.2,0,0 +2018,7,18,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34.6,26.9,64,97119,1161,1323,463,799,557,310,92877,33056,36299,14344,90,3.6,5,5,2000,3000,0,919999999,134,0,0,88,0.2,0,0 +2018,7,18,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36,27,60,98714,986,1323,499,359,83,297,40826,5161,34000,13135,100,4.1,9,9,3100,3000,0,919999999,137,0,0,88,0.2,0,0 +2018,7,18,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35,27,63,98705,760,1323,465,455,424,212,51140,23657,23913,8947,60,3.1,5,5,3100,3000,0,919999999,137,0,0,88,0.2,0,0 +2018,7,18,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34.4,26.1,62,97079,498,1323,460,244,285,137,26944,12553,15180,5198,90,3.1,5,5,2000,3000,0,919999999,124,0,0,88,0.2,0,0 +2018,7,18,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30,26,79,98663,217,1323,435,63,42,56,6816,0,6089,1885,320,4.1,5,5,3000,3000,0,19999999,125,0,0,88,0.2,0,0 +2018,7,18,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30,26,79,98663,0,1025,460,0,0,0,0,0,0,0,350,1.5,9,9,3000,3000,0,19999999,125,0,0,88,0.2,0,0 +2018,7,18,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30.2,25.7,77,97209,0,0,461,0,0,0,0,0,0,0,20,4.1,9,9,2000,3000,0,19999999,120,0,0,88,0.2,0,0 +2018,7,18,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26,75,98672,0,0,466,0,0,0,0,0,0,0,40,3.6,9,9,3000,3048,0,19999999,125,0,0,88,0.2,0,0 +2018,7,18,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26,75,98672,0,0,466,0,0,0,0,0,0,0,20,4.1,9,9,3000,3048,0,19999999,125,0,0,88,0.2,0,0 +2018,7,18,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29.6,25.7,80,97291,0,0,457,0,0,0,0,0,0,0,50,3.1,9,9,2000,3000,0,19999999,120,0,0,88,0.2,0,0 +2018,7,19,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,0,0,454,0,0,0,0,0,0,0,20,3.1,9,9,3000,3048,0,19999999,125,0,0,88,0.2,0,0 +2018,7,19,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,27,89,98654,0,0,456,0,0,0,0,0,0,0,50,2.1,9,9,3000,3048,0,19999999,139,0,0,88,0.2,0,0 +2018,7,19,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28.6,25.5,83,97205,0,0,451,0,0,0,0,0,0,0,340,1.5,9,9,2000,3000,0,19999999,118,0,0,88,0.2,0,0 +2018,7,19,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,27,89,98654,0,0,456,0,0,0,0,0,0,0,40,1,9,9,3000,3048,0,19999999,139,0,0,88,0.2,0,0 +2018,7,19,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,27,89,98654,0,0,456,0,0,0,0,0,0,0,250,1,9,9,3000,3048,0,19999999,139,0,0,88,0.2,0,0 +2018,7,19,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28.4,26.4,89,97223,0,0,426,0,0,0,0,0,0,0,156,0,5,5,2000,3000,9,999999999,129,0,0,88,0.2,1,0 +2018,7,19,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,26,84,98654,238,1118,429,73,56,63,7946,143,6876,2130,296,0,5,5,2200,3048,9,999999999,125,0,0,88,0.2,0,0 +2018,7,19,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,27,89,98654,518,1323,430,259,300,142,28629,13151,15746,5447,50,2.1,5,5,2500,3048,9,999999999,139,0,0,88,0.2,0,0 +2018,7,19,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31.4,27.3,79,97336,779,1323,444,470,477,189,53479,24703,21649,8353,90,3.1,5,5,2000,3000,9,999999999,141,0,0,88,0.2,0,0 +2018,7,19,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,32.9,27.4,73,97329,1001,1323,457,611,433,283,69818,25682,32583,12786,75,3.1,6,6,2000,3000,9,999999999,142,0,0,88,0.2,0,0 +2018,7,19,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,34.3,27.5,68,97321,1172,1323,462,793,537,318,92064,31488,37147,14641,258,3.1,5,5,2000,3000,9,999999999,143,0,0,88,0.2,0,0 +2018,7,19,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35.8,27.6,63,97314,1277,1323,488,649,257,401,75101,16348,46718,17713,90,3.1,8,8,2000,3000,9,999999999,144,0,0,88,0.2,0,0 +2018,7,19,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,36.2,27.4,61,97243,1312,1323,470,960,638,328,113397,36214,38954,15402,176,3.3,4,4,2000,3000,9,999999999,141,0,0,88,0.2,0,0 +2018,7,19,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,36.6,27.1,59,97171,1272,1323,472,934,668,292,110733,36719,34830,13982,252,3.4,4,4,2000,3000,9,999999999,137,0,0,88,0.2,0,0 +2018,7,19,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,26.9,56,97100,1161,1323,495,577,209,393,65816,14121,45209,16945,90,3.6,8,8,2000,3000,9,999999999,134,0,0,88,0.2,0,0 +2018,7,19,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,36.5,26.3,56,97044,986,1323,466,684,630,215,79835,33962,25212,10281,217,3.3,3,3,2666,3000,9,999999999,126,0,0,88,0.2,0,0 +2018,7,19,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,36.1,25.8,56,96988,760,1323,463,481,530,176,54927,28024,20236,7808,352,2.9,3,3,3333,3000,9,999999999,120,0,0,88,0.2,0,0 +2018,7,19,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35.6,25.2,55,96933,497,1323,484,176,73,149,19335,3528,16407,5487,90,2.6,8,8,4000,1200,9,999999999,113,0,0,88,0.2,0,0 +2018,7,19,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,33.9,25.4,62,96980,216,1323,453,64,22,60,6902,0,6537,1977,342,2.4,4,4,3333,1200,9,999999999,116,0,0,88,0.2,0,0 +2018,7,19,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,32.1,25.7,69,97027,0,1017,450,0,0,0,0,0,0,0,129,2.3,6,6,2666,1200,9,999999999,120,0,0,88,0.2,0,0 +2018,7,19,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30.4,25.9,77,97074,0,0,453,0,0,0,0,0,0,0,180,2.1,8,8,2000,1050,9,999999999,122,0,0,88,0.2,0,0 +2018,7,19,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,30.3,26,78,97125,0,0,445,0,0,0,0,0,0,0,235,1.9,7,7,2000,1050,9,999999999,124,0,0,88,0.2,0,0 +2018,7,19,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,30.1,26,79,97176,0,0,444,0,0,0,0,0,0,0,202,1.7,7,7,2000,1050,9,999999999,124,0,0,88,0.2,0,0 +2018,7,19,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26.1,80,97227,0,0,451,0,0,0,0,0,0,0,230,1.5,8,8,2000,3000,9,999999999,125,0,0,88,0.2,0,0 +2018,7,20,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,29.7,26.1,81,97208,0,0,449,0,0,0,0,0,0,0,139,1.7,8,8,2000,3000,9,999999999,125,0,0,88,0.2,0,0 +2018,7,20,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,29.3,26.2,83,97189,0,0,447,0,0,0,0,0,0,0,320,1.9,8,8,2000,3000,9,999999999,127,0,0,88,0.2,0,0 +2018,7,20,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26.2,85,97169,0,0,429,0,0,0,0,0,0,0,270,2.1,5,5,2000,77777,9,999999999,127,0,0,88,0.2,0,0 +2018,7,20,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,28.6,26,86,97166,0,0,442,0,0,0,0,0,0,0,121,1.9,8,8,2000,77777,9,999999999,124,0,0,88,0.2,0,0 +2018,7,20,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,28.2,25.7,87,97163,0,0,449,0,0,0,0,0,0,0,258,1.7,9,9,2000,77777,9,999999999,121,0,0,88,0.2,0,0 +2018,7,20,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27.8,25.5,87,97159,0,0,446,0,0,0,0,0,0,0,180,1.5,9,9,2000,1200,0,99999999,118,0,0,88,0.2,1,0 +2018,7,20,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,235,1106,448,40,0,40,3831,0,3861,1512,240,1.5,9,9,2500,3048,0,99999999,126,0,0,88,0.2,0,0 +2018,7,20,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,516,1323,448,143,19,136,15901,852,15141,5273,280,2.6,9,9,2500,3048,0,99999999,126,0,0,88,0.2,0,0 +2018,7,20,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28.2,25.9,87,97279,777,1323,462,159,0,159,18380,2,18465,7282,270,4.1,10,10,2000,1200,0,99999999,123,0,0,88,0.2,0,0 +2018,7,20,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,27,94,98646,1000,1323,462,223,5,220,26032,257,25748,10518,260,3.6,10,10,2800,3048,0,99999999,139,0,0,88,0.2,0,0 +2018,7,20,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,27,94,98646,1171,1323,462,273,7,267,32156,374,31641,12809,280,2.6,10,10,2800,2438,0,99999999,139,0,0,88,0.2,0,0 +2018,7,20,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,26.2,85,97277,1277,1323,467,305,7,298,36142,406,35559,14216,82,0,10,10,2000,1050,0,99999999,127,0,0,88,0.2,0,0 +2018,7,20,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,27,84,98663,1311,1323,475,314,7,307,37318,410,36697,14644,270,1.5,10,10,2800,2438,0,99999999,138,0,0,88,0.2,0,0 +2018,7,20,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,27,79,98672,1271,1323,481,303,7,296,35844,392,35272,14130,70,1,10,10,2800,2438,0,99999999,138,0,0,88,0.2,0,0 +2018,7,20,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32.2,26.4,72,97128,1160,1323,488,270,7,264,31840,376,31338,12686,90,1.5,10,10,2000,2400,0,99999999,128,0,0,88,0.2,0,0 +2018,7,20,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,32,27,75,98680,985,1323,487,219,5,215,25504,243,25245,10301,20,0,10,10,3000,2438,0,99999999,138,0,0,88,0.2,0,0 +2018,7,20,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,27,75,98680,759,1323,487,154,0,154,15406,0,15553,7003,50,1.5,10,10,3000,2438,0,99999999,138,0,0,88,0.2,0,0 +2018,7,20,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32.6,27.1,73,96947,496,1323,491,82,0,82,8030,0,8101,3504,20,2.1,10,10,2000,2400,0,99999999,137,0,0,88,0.2,0,0 +2018,7,20,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,27,75,98680,214,1323,487,21,0,21,1980,0,1996,841,50,2.1,10,10,2500,2438,0,99999999,138,0,0,88,0.2,0,0 +2018,7,20,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,26,71,98680,0,1009,446,0,0,0,0,0,0,0,30,3.1,5,5,2500,2438,0,99999999,125,0,0,88,0.2,0,0 +2018,7,20,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31.4,25.5,71,97073,0,0,442,0,0,0,0,0,0,0,50,2.6,5,5,2000,3000,0,99999999,117,0,0,88,0.2,0,0 +2018,7,20,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26,75,98672,0,0,440,0,0,0,0,0,0,0,50,2.1,5,5,2800,3048,0,99999999,125,0,0,88,0.2,0,0 +2018,7,20,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,0,0,460,0,0,0,0,0,0,0,50,2.1,9,9,3000,3048,0,99999999,125,0,0,88,0.2,0,0 +2018,7,20,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29.6,25.1,77,97155,0,0,457,0,0,0,0,0,0,0,50,2.1,9,9,2000,3000,0,99999999,113,0,0,88,0.2,0,0 +2018,7,21,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,0,0,435,0,0,0,0,0,0,0,90,1.5,5,5,3000,3048,0,99999999,125,0,0,88,0.2,0,0 +2018,7,21,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,27,84,98663,0,0,436,0,0,0,0,0,0,0,161,0,5,5,3000,3048,0,99999999,138,0,0,88,0.2,0,0 +2018,7,21,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29.4,25.4,79,97085,0,0,456,0,0,0,0,0,0,0,6,0,9,9,2000,3000,0,99999999,117,0,0,88,0.2,0,0 +2018,7,21,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,27,89,98654,0,0,456,0,0,0,0,0,0,0,129,0,9,9,2500,3048,0,99999999,139,0,0,88,0.2,0,0 +2018,7,21,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,27,89,98654,0,0,456,0,0,0,0,0,0,0,100,0,9,9,2200,3048,0,99999999,139,0,0,88,0.2,0,0 +2018,7,21,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28.8,26.3,86,97022,0,0,453,0,0,0,0,0,0,0,270,2.1,9,9,2000,3000,9,999999999,128,0,0,88,0.2,0,0 +2018,7,21,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,27,89,98654,233,1095,468,24,0,24,2292,0,2310,974,290,1.5,10,10,2200,3048,9,999999999,139,0,0,88,0.2,0,0 +2018,7,21,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,27,84,98663,514,1323,475,87,0,87,8520,0,8595,3727,194,1,10,10,2200,1067,9,999999999,138,0,0,88,0.2,0,0 +2018,7,21,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29.8,26.5,83,97274,776,1323,473,158,0,158,15942,0,16095,7257,50,1.5,10,10,2000,1050,9,999999999,130,0,0,88,0.2,0,0 +2018,7,21,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,27,79,98672,999,1323,481,223,33,198,26210,1687,23365,9657,149,0,10,10,2200,1067,9,999999999,138,0,0,88,0.2,0,0 +2018,7,21,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,27,79,98672,1170,1323,468,447,57,397,51061,3838,45644,17092,300,1,9,9,2500,2438,9,999999999,138,0,0,88,0.2,0,0 +2018,7,21,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33.2,27.4,72,97293,1276,1323,482,498,53,447,57149,3636,51635,19021,270,2.6,9,9,2000,3000,9,999999999,142,0,0,88,0.2,0,0 +2018,7,21,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,27,71,98689,1311,1323,494,314,13,301,37364,738,36029,14416,300,1.5,10,10,3000,2743,9,999999999,138,0,0,88,0.2,0,0 +2018,7,21,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,27,71,98689,1271,1323,494,303,7,296,35833,392,35261,14126,130,4.1,10,10,2200,2438,0,99999999,138,0,0,88,0.2,0,0 +2018,7,21,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30.4,27.1,83,97104,1160,1323,477,270,7,264,31748,366,31250,12667,180,3.1,10,10,2000,1050,0,99999999,138,0,0,88,0.2,0,0 +2018,7,21,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,27,94,98646,985,1323,462,219,5,215,25477,242,25219,10290,290,2.1,10,10,2200,2438,0,99999999,139,0,0,88,0.2,0,0 +2018,7,21,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,27,89,98654,758,1323,468,153,0,153,15377,0,15523,6989,230,1.5,10,10,2200,2438,0,19999999,139,0,0,88,0.2,0,0 +2018,7,21,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28.4,26.4,89,97125,494,1323,464,82,0,82,8017,0,8087,3492,110,2.6,10,10,2000,1050,0,19999999,129,0,0,88,0.2,0,0 +2018,7,21,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,26,94,98637,213,1323,455,20,0,20,1961,0,1976,831,90,2.1,10,10,2200,2438,0,19999999,126,0,0,88,0.2,0,0 +2018,7,21,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,27,94,98646,0,1000,462,0,0,0,0,0,0,0,80,2.1,10,10,2200,2438,0,19999999,139,0,0,88,0.2,0,0 +2018,7,21,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27.2,26.1,94,97203,0,0,456,0,0,0,0,0,0,0,90,2.1,10,10,2000,1050,0,19999999,126,0,0,88,0.2,0,0 +2018,7,21,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,27,100,98637,0,0,456,0,0,0,0,0,0,0,90,3.1,10,10,2500,2438,0,19999999,139,0,0,88,0.2,0,0 +2018,7,21,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,27,94,98646,0,0,450,0,0,0,0,0,0,0,110,3.6,9,9,2800,2438,0,19999999,139,0,0,88,0.2,0,0 +2018,7,21,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27.2,26.4,95,97310,0,0,435,0,0,0,0,0,0,0,110,3.1,8,8,2000,3000,0,19999999,130,0,0,88,0.2,0,0 +2018,7,22,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,27,26.1,95,97266,0,0,455,0,0,0,0,0,0,0,123,2.1,10,10,2000,3000,9,999999999,126,0,0,88,0.2,0,0 +2018,7,22,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,26.8,25.8,94,97222,0,0,453,0,0,0,0,0,0,0,254,1,10,10,2000,3000,9,999999999,122,0,0,88,0.2,0,0 +2018,7,22,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26.6,25.5,94,97178,0,0,430,0,0,0,0,0,0,0,142,0,8,8,2000,3000,0,19999999,118,0,0,88,0.2,0,0 +2018,7,22,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,26.6,25.6,94,97181,0,0,452,0,0,0,0,0,0,0,95,0.9,10,10,2000,3000,9,999999999,120,0,0,88,0.2,0,0 +2018,7,22,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,26.6,25.6,94,97184,0,0,452,0,0,0,0,0,0,0,280,1.7,10,10,2000,3000,9,999999999,120,0,0,88,0.2,0,0 +2018,7,22,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26.6,25.7,95,97188,0,0,440,0,0,0,0,0,0,0,140,2.6,9,9,2000,1050,9,999999999,121,0,0,88,0.2,5,0 +2018,7,22,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,27.3,25.8,92,97249,231,1083,444,34,0,34,3272,0,3298,1321,207,2.4,9,9,2000,1050,9,999999999,122,0,0,88,0.2,0,0 +2018,7,22,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,27.9,26,89,97310,513,1323,448,150,29,138,16586,1316,15402,5324,200,2.3,9,9,2000,1050,9,999999999,124,0,0,88,0.2,0,0 +2018,7,22,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28.6,26.1,86,97370,774,1323,452,260,24,245,28935,1522,27503,10003,70,2.1,9,9,2000,1050,9,999999999,126,0,0,88,0.2,5,0 +2018,7,22,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,27,89,98654,998,1323,456,365,27,345,41055,1799,39049,14594,70,3.6,9,9,3500,3048,9,999999999,139,0,0,88,0.2,5,0 +2018,7,22,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,27,84,98663,1170,1323,462,447,64,391,51080,4246,44992,16916,80,3.1,9,9,3500,3048,9,999999999,138,0,0,88,0.2,5,0 +2018,7,22,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30.8,26.9,80,97321,1276,1323,466,499,64,437,57317,4381,50576,18735,90,3.1,9,9,2000,1050,9,999999999,135,0,0,88,0.2,5,0 +2018,7,22,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,27,75,98680,1310,1323,474,515,64,451,59329,4391,52395,19324,80,2.6,9,9,3500,3048,9,999999999,138,0,0,88,0.2,0,0 +2018,7,22,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,27,71,98689,1271,1323,480,496,64,434,56990,4360,50285,18644,130,3.1,9,9,4000,3048,9,999999999,138,0,0,88,0.2,0,0 +2018,7,22,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33.6,27.3,70,98694,1159,1323,484,442,57,392,50393,3786,45049,16905,90,3.1,9,9,4000,1050,9,999999999,142,0,0,88,0.2,0,0 +2018,7,22,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,28,94,98654,984,1323,470,218,32,195,25569,1522,22946,9486,120,4.1,10,10,600,914,0,19999999,153,0,0,88,0.2,5,0 +2018,7,22,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,27,100,98637,757,1323,456,153,0,153,15353,0,15499,6976,320,3.1,10,10,1200,610,0,19999999,139,0,0,88,0.2,5,0 +2018,7,22,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26.8,26.2,97,97082,493,1323,441,134,15,128,14808,622,14257,4937,270,3.1,9,9,2000,600,0,19999999,127,0,0,88,0.2,5,0 +2018,7,22,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,26,94,98637,211,1323,442,33,0,33,3176,0,3201,1260,280,1.5,9,9,2500,2438,0,19999999,126,0,0,88,0.2,5,0 +2018,7,22,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,27,94,98646,0,991,450,0,0,0,0,0,0,0,90,2.1,9,9,2500,3048,0,19999999,139,0,0,88,0.2,5,0 +2018,7,22,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26.8,26.2,97,97248,0,0,441,0,0,0,0,0,0,0,90,2.1,9,9,2000,3000,0,19999999,127,0,0,88,0.2,5,0 +2018,7,22,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,27,94,98646,0,0,450,0,0,0,0,0,0,0,70,1,9,9,2500,3048,0,19999999,139,0,0,88,0.2,5,0 +2018,7,22,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,27,94,98646,0,0,450,0,0,0,0,0,0,0,10,1.5,9,9,2500,3048,0,19999999,139,0,0,88,0.2,5,0 +2018,7,22,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26.6,26,97,97285,0,0,440,0,0,0,0,0,0,0,243,0,9,9,2000,3000,0,19999999,125,0,0,88,0.2,0,0 +2018,7,23,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,26,94,98637,0,0,442,0,0,0,0,0,0,0,171,0,9,9,2500,3048,0,19999999,126,0,0,88,0.2,0,0 +2018,7,23,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,26,94,98637,0,0,418,0,0,0,0,0,0,0,253,0,5,5,2000,3048,0,19999999,126,0,0,88,0.2,0,0 +2018,7,23,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,25.7,98,97173,0,0,412,0,0,0,0,0,0,0,42,0,5,5,1000,3000,0,19999999,121,0,0,88,0.2,0,0 +2018,7,23,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,26,94,98637,0,0,418,0,0,0,0,0,0,0,38,0,5,5,1600,3048,0,19999999,126,0,0,88,0.2,0,0 +2018,7,23,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,26,94,98637,0,0,418,0,0,0,0,0,0,0,225,0,5,5,1800,3048,0,19999999,126,0,0,88,0.2,0,0 +2018,7,23,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26.6,26.3,98,97158,0,0,453,0,0,0,0,0,0,0,90,1.5,10,10,1000,2400,0,919999999,128,0,0,88,0.2,5,0 +2018,7,23,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,26,100,98628,229,1071,412,69,46,61,7462,12,6632,2045,103,0,5,5,1800,2438,0,919999999,126,0,0,88,0.2,5,0 +2018,7,23,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,28,94,98654,511,1324,457,141,18,134,15551,709,14863,5188,350,1,9,9,2100,3048,0,919999999,153,0,0,88,0.2,5,0 +2018,7,23,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28.2,27.9,98,97289,773,1324,452,258,24,244,28683,1409,27286,9959,15,0,9,9,2000,3000,0,919999999,150,0,0,88,0.2,5,0 +2018,7,23,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,28,84,98672,997,1324,469,364,27,344,40858,1731,38876,14559,50,3.1,9,9,2500,3048,0,919999999,153,0,0,88,0.2,5,0 +2018,7,23,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,28,79,98680,1169,1324,475,446,63,390,50864,4089,44834,16892,110,3.1,9,9,2800,3048,0,919999999,153,0,0,88,0.2,5,0 +2018,7,23,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32.4,26.9,73,97266,1275,1324,476,498,84,417,57492,5590,48504,18183,140,4.1,9,9,2000,1200,0,919999999,135,0,0,88,0.2,5,0 +2018,7,23,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,28,75,98689,1310,1324,455,927,529,403,107493,32847,47066,17899,110,6.2,5,5,3500,3048,0,919999999,152,0,0,88,0.2,5,0 +2018,7,23,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34,27,67,98697,1270,1324,459,894,629,290,105979,34627,34653,13918,110,3.1,5,5,4500,3048,0,919999999,138,0,0,88,0.2,5,0 +2018,7,23,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35.6,25.2,55,97127,1159,1324,466,799,563,306,93252,35026,35958,14200,110,5.1,5,5,4000,3000,0,919999999,113,0,0,88,0.2,0,0 +2018,7,23,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,25,60,98697,983,1324,484,359,84,297,40926,5542,34004,13084,120,5.1,9,9,6000,3048,0,919999999,113,0,0,88,0.2,5,0 +2018,7,23,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,25,63,98689,756,1324,477,251,17,241,28016,1107,27074,9751,120,5.1,9,9,6000,3048,0,919999999,113,0,0,88,0.2,0,0 +2018,7,23,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32.4,26.3,70,96994,492,1324,475,133,13,128,14735,548,14257,4931,110,2.6,9,9,4000,3000,0,919999999,127,0,0,88,0.2,0,0 +2018,7,23,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,25,67,98680,209,1324,471,33,0,33,3140,0,3164,1243,100,3.1,9,9,5000,3048,0,919999999,113,0,0,88,0.2,0,0 +2018,7,23,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,25,67,98680,0,981,471,0,0,0,0,0,0,0,90,3.6,9,9,4500,3048,0,919999999,113,0,0,88,0.2,0,0 +2018,7,23,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30.8,25.1,72,97224,0,0,464,0,0,0,0,0,0,0,90,3.1,9,9,4000,3000,0,919999999,113,0,0,88,0.2,0,0 +2018,7,23,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,25,70,98672,0,0,465,0,0,0,0,0,0,0,90,2.6,9,9,4000,3048,0,919999999,113,0,0,88,0.2,0,0 +2018,7,23,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,0,0,460,0,0,0,0,0,0,0,80,1.5,9,9,4000,3048,0,919999999,125,0,0,88,0.2,0,0 +2018,7,23,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29.8,24.4,73,97303,0,0,431,0,0,0,0,0,0,0,140,3.1,5,5,4000,3000,0,919999999,106,0,0,88,0.2,0,0 +2018,7,24,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,0,0,435,0,0,0,0,0,0,0,80,1.5,5,5,4000,3048,0,919999999,125,0,0,88,0.2,0,0 +2018,7,24,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,0,0,429,0,0,0,0,0,0,0,70,1,5,5,4000,3048,0,919999999,125,0,0,88,0.2,5,0 +2018,7,24,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.8,26,85,97294,0,0,428,0,0,0,0,0,0,0,90,2.6,5,5,4000,3048,0,919999999,124,0,0,88,0.2,5,0 +2018,7,24,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,0,0,429,0,0,0,0,0,0,0,60,2.1,5,5,3500,3048,0,919999999,125,0,0,88,0.2,5,0 +2018,7,24,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,27,89,98654,0,0,430,0,0,0,0,0,0,0,20,1.5,5,5,3500,3048,0,919999999,139,0,0,88,0.2,5,0 +2018,7,24,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28.2,27.1,94,97250,0,0,426,0,0,0,0,0,0,0,50,1.5,5,5,2000,3000,9,999999999,139,0,0,88,0.2,0,0 +2018,7,24,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,27,84,98663,227,1059,462,38,0,38,3589,0,3618,1421,212,0,9,9,2500,3048,9,999999999,138,0,0,88,0.2,0,0 +2018,7,24,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,27,84,98663,509,1324,462,140,16,134,15525,675,14910,5185,180,0,9,9,2500,3048,9,999999999,138,0,0,88,0.2,0,0 +2018,7,24,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29.6,27.4,88,97360,772,1324,460,258,67,219,28927,3752,24680,9230,301,0,9,9,2000,3000,9,999999999,143,0,0,88,0.2,0,0 +2018,7,24,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,26,71,98680,996,1324,446,658,519,267,75593,31287,30899,12212,30,1.5,5,5,2800,3048,9,999999999,125,0,0,88,0.2,0,0 +2018,7,24,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,26,67,98689,1168,1324,479,447,57,397,51112,3980,45653,17065,90,2.1,9,9,3500,3048,9,999999999,125,0,0,88,0.2,0,0 +2018,7,24,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,25.2,57,97386,1275,1324,490,500,85,418,57787,5927,48665,18188,110,2.6,9,9,2000,3000,9,999999999,114,0,0,88,0.2,0,0 +2018,7,24,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,35.6,25.3,55,97319,1310,1324,459,985,696,296,117522,40378,35590,14233,161,2.6,3,3,2666,3000,9,999999999,115,0,0,88,0.2,0,0 +2018,7,24,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,36.2,25.3,54,97252,1270,1324,463,950,702,277,113423,40053,33287,13414,32,2.6,3,3,3333,3000,9,999999999,114,0,0,88,0.2,0,0 +2018,7,24,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36.8,25.4,52,97186,1158,1324,502,443,87,367,50937,5919,42450,16152,110,2.6,9,9,4000,3000,9,999999999,115,0,0,88,0.2,0,0 +2018,7,24,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,26,54,98722,983,1324,504,358,27,338,40323,1846,38342,14286,120,2.6,9,9,4500,3048,9,999999999,124,0,0,88,0.2,0,0 +2018,7,24,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,26,54,98722,755,1324,504,251,17,241,27883,1068,26952,9722,110,2.6,9,9,4500,3048,9,999999999,124,0,0,88,0.2,0,0 +2018,7,24,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35.4,26,58,97019,490,1324,494,133,13,128,14693,552,14218,4912,140,2.1,9,9,4000,3000,9,999999999,123,0,0,88,0.2,0,0 +2018,7,24,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,25,53,98714,207,1324,496,32,0,32,3096,0,3120,1226,130,1.5,9,9,3500,3048,9,999999999,112,0,0,88,0.2,0,0 +2018,7,24,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,35,25,56,98705,0,971,490,0,0,0,0,0,0,0,233,0,9,9,3500,3048,9,999999999,112,0,0,88,0.2,0,0 +2018,7,24,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,26,67,98689,0,0,479,0,0,0,0,0,0,0,230,2.1,9,9,3500,3048,9,999999999,125,0,0,88,0.2,0,0 +2018,7,24,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,26,71,98680,0,0,472,0,0,0,0,0,0,0,230,2.1,9,9,3500,3048,9,999999999,125,0,0,88,0.2,0,0 +2018,7,24,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,27,75,98680,0,0,474,0,0,0,0,0,0,0,250,2.1,9,9,3500,3048,9,999999999,138,0,0,88,0.2,0,0 +2018,7,24,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31.2,25.9,74,97276,0,0,467,0,0,0,0,0,0,0,230,1.5,9,9,2000,3000,9,999999999,122,0,0,88,0.2,0,0 +2018,7,25,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,27,79,98672,0,0,468,0,0,0,0,0,0,0,250,2.6,9,9,3500,3048,9,999999999,138,0,0,88,0.2,0,0 +2018,7,25,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,27,84,98663,0,0,462,0,0,0,0,0,0,0,240,2.6,9,9,3500,3048,9,999999999,138,0,0,88,0.2,0,0 +2018,7,25,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30.8,26.3,77,97185,0,0,466,0,0,0,0,0,0,0,230,2.1,9,9,2000,3000,9,999999999,127,0,0,88,0.2,0,0 +2018,7,25,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,27,89,98654,0,0,456,0,0,0,0,0,0,0,250,3.6,9,9,3500,3048,9,999999999,139,0,0,88,0.2,0,0 +2018,7,25,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,27,94,98646,0,0,450,0,0,0,0,0,0,0,270,3.1,9,9,3500,3048,9,999999999,139,0,0,88,0.2,0,0 +2018,7,25,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28.6,26.4,88,97098,0,0,465,0,0,0,0,0,0,0,230,2.6,10,10,2000,3000,9,999999999,129,0,0,88,0.2,0,0 +2018,7,25,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,27,94,98646,224,1048,462,22,0,22,2152,0,2169,914,260,2.1,10,10,3500,914,9,999999999,139,0,0,88,0.2,0,0 +2018,7,25,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,27,94,98646,507,1324,462,85,0,85,8344,0,8418,3644,230,2.6,10,10,3500,914,9,999999999,139,0,0,88,0.2,0,0 +2018,7,25,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28.2,26.5,91,97318,770,1324,463,157,0,157,15784,0,15935,7176,250,2.6,10,10,2000,600,9,999999999,131,0,0,88,0.2,0,0 +2018,7,25,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,27,94,98646,995,1324,462,222,5,218,25854,252,25579,10443,250,5.1,10,10,2800,914,9,999999999,139,0,0,88,0.2,0,0 +2018,7,25,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,27,89,98654,1167,1324,468,272,7,266,32024,372,31515,12762,260,2.6,10,10,2500,914,9,999999999,139,0,0,88,0.2,0,0 +2018,7,25,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29.4,26.3,83,97329,1274,1324,470,304,7,297,36030,404,35452,14179,230,1.5,10,10,2000,900,9,999999999,128,0,0,88,0.2,0,0 +2018,7,25,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,1309,1324,467,314,7,307,37354,424,36732,14633,200,2.1,10,10,3000,914,9,999999999,125,0,0,88,0.2,0,0 +2018,7,25,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,1269,1324,473,303,7,296,35877,406,35303,14119,170,2.1,10,10,3000,2438,9,999999999,125,0,0,88,0.2,0,0 +2018,7,25,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31.2,26.8,78,97110,1158,1324,482,269,18,254,31796,978,30114,12263,200,2.1,10,10,2000,1050,9,999999999,134,0,0,88,0.2,0,0 +2018,7,25,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,31.1,26.9,78,97891,982,1324,451,546,276,342,61301,18627,38610,14363,136,2.3,7,7,2750,1050,9,999999999,136,0,0,88,0.2,0,0 +2018,7,25,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,27,79,98672,754,1324,481,152,0,152,15260,0,15406,6928,190,2.6,10,10,3500,2438,9,999999999,138,0,0,88,0.2,0,0 +2018,7,25,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30.8,26.9,80,98670,489,1324,480,80,0,80,7868,0,7937,3426,180,2.6,10,10,2000,2400,9,999999999,137,0,0,88,0.2,0,0 +2018,7,25,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,27,84,98663,205,1324,475,19,0,19,1845,0,1859,783,200,2.1,10,10,3000,2438,0,99999999,138,0,0,88,0.2,0,0 +2018,7,25,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,27,84,98663,0,960,475,0,0,0,0,0,0,0,240,3.6,10,10,3000,2438,0,19999999,138,0,0,88,0.2,0,0 +2018,7,25,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29.2,27.5,91,97230,0,0,470,0,0,0,0,0,0,0,230,2.6,10,10,2000,1050,0,19999999,144,0,0,88,0.2,0,0 +2018,7,25,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,28,94,98654,0,0,457,0,0,0,0,0,0,0,240,1.5,9,9,3000,2438,0,19999999,153,0,0,88,0.2,0,0 +2018,7,25,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,28,94,98654,0,0,470,0,0,0,0,0,0,0,240,2.1,10,10,3000,2438,0,19999999,153,0,0,88,0.2,0,0 +2018,7,25,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28.2,27.1,94,97231,0,0,451,0,0,0,0,0,0,0,114,0,9,9,2000,1050,0,19999999,139,0,0,88,0.2,0,0 +2018,7,26,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,28,94,98654,0,0,457,0,0,0,0,0,0,0,140,1.5,9,9,3000,2438,0,19999999,153,0,0,88,0.2,0,0 +2018,7,26,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,28,94,98654,0,0,457,0,0,0,0,0,0,0,170,1.5,9,9,3000,2438,0,19999999,153,0,0,88,0.2,0,0 +2018,7,26,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28.2,26.8,92,97114,0,0,450,0,0,0,0,0,0,0,41,0,9,9,2000,2400,0,19999999,135,0,0,88,0.2,0,0 +2018,7,26,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,28,94,98654,0,0,457,0,0,0,0,0,0,0,180,0,9,9,3000,2438,0,19999999,153,0,0,88,0.2,0,0 +2018,7,26,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,27,89,98654,0,0,468,0,0,0,0,0,0,0,300,2.1,10,10,3000,2438,0,19999999,139,0,0,88,0.2,0,0 +2018,7,26,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26.6,25.7,95,97168,0,0,452,0,0,0,0,0,0,0,270,2.6,10,10,2000,1050,0,19999999,121,0,0,88,0.2,5,0 +2018,7,26,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,26,94,98637,222,1036,455,22,0,22,2125,0,2142,901,260,2.6,10,10,2500,2438,0,19999999,126,0,0,88,0.2,4,0 +2018,7,26,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,27,100,98637,506,1324,456,85,0,85,8304,0,8377,3625,270,3.6,10,10,2500,2438,0,19999999,139,0,0,88,0.2,0,0 +2018,7,26,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,25.7,98,97406,769,1324,448,157,0,157,15792,0,15942,7164,270,3.1,10,10,2000,1050,0,19999999,121,0,0,88,0.2,0,0 +2018,7,26,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,26,100,98628,994,1324,449,222,5,218,25902,262,25626,10441,270,3.1,10,10,2000,2438,0,19999999,126,0,0,88,0.2,0,0 +2018,7,26,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,26,100,98628,1167,1324,449,272,7,266,32097,386,31586,12768,260,3.6,10,10,2000,2438,0,19999999,126,0,0,88,0.2,0,0 +2018,7,26,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26.2,25.6,97,97350,1274,1324,449,304,7,297,36084,413,35504,14183,270,3.1,10,10,2000,1050,0,19999999,120,0,0,88,0.2,0,0 +2018,7,26,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,26,94,98637,1309,1324,455,314,7,307,37332,424,36712,14626,280,4.1,10,10,3500,2438,0,19999999,126,0,0,88,0.2,0,0 +2018,7,26,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,26,94,98637,1269,1324,455,302,13,290,35905,730,34671,13903,290,4.1,10,10,3500,2438,0,19999999,126,0,0,88,0.2,0,0 +2018,7,26,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27.2,25.5,90,97222,1157,1324,443,442,58,392,50544,4031,45128,16879,290,4.1,9,9,2000,900,0,19999999,118,0,0,88,0.2,0,0 +2018,7,26,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,27,94,98646,981,1324,450,357,30,335,40100,1991,37866,14164,280,4.6,9,9,2500,2438,0,19999999,139,0,0,88,0.2,0,0 +2018,7,26,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,27,94,98646,752,1324,450,249,51,220,27845,2894,24779,9139,290,4.1,9,9,2500,2743,0,19999999,139,0,0,88,0.2,0,0 +2018,7,26,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27.4,26.3,94,97068,487,1324,458,80,0,80,7846,0,7915,3411,320,3.1,10,10,2000,600,0,19999999,128,0,0,88,0.2,0,0 +2018,7,26,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,27,100,98637,203,1324,444,31,0,31,2977,0,3000,1184,10,2.1,9,9,2100,914,0,19999999,139,0,0,88,0.2,0,0 +2018,7,26,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,27,100,98637,0,949,444,0,0,0,0,0,0,0,300,2.1,9,9,2500,3048,0,19999999,139,0,0,88,0.2,0,0 +2018,7,26,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,26.2,95,97172,0,0,455,0,0,0,0,0,0,0,290,2.6,10,10,2000,1050,0,19999999,127,0,0,88,0.2,0,0 +2018,7,26,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,27,100,98637,0,0,456,0,0,0,0,0,0,0,300,3.1,10,10,2500,2438,0,19999999,139,0,0,88,0.2,0,0 +2018,7,26,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,27,100,98637,0,0,456,0,0,0,0,0,0,0,300,2.6,10,10,2500,2438,0,19999999,139,0,0,88,0.2,0,0 +2018,7,26,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26.6,25.7,95,97275,0,0,452,0,0,0,0,0,0,0,320,2.6,10,10,2000,1050,0,19999999,121,0,0,88,0.2,0,0 +2018,7,27,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,27,100,98637,0,0,456,0,0,0,0,0,0,0,290,2.6,10,10,2500,2438,0,19999999,139,0,0,88,0.2,0,0 +2018,7,27,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,27,100,98637,0,0,456,0,0,0,0,0,0,0,300,2.6,10,10,2500,2438,0,19999999,139,0,0,88,0.2,0,0 +2018,7,27,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,25.7,98,97075,0,0,448,0,0,0,0,0,0,0,340,2.6,10,10,2000,1050,0,19999999,121,0,0,88,0.2,0,0 +2018,7,27,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,26,100,98628,0,0,449,0,0,0,0,0,0,0,300,4.1,10,10,2500,2438,0,19999999,126,0,0,88,0.2,0,0 +2018,7,27,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,26,100,98628,0,0,449,0,0,0,0,0,0,0,310,2.6,10,10,2500,2438,0,19999999,126,0,0,88,0.2,0,0 +2018,7,27,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25.6,25.3,98,97082,0,0,445,0,0,0,0,0,0,0,290,2.6,10,10,2000,1050,0,919999999,116,0,0,88,0.2,5,0 +2018,7,27,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,26,100,98628,220,1024,449,22,0,22,2088,0,2104,885,280,3.1,10,10,2200,2438,0,919999999,126,0,0,88,0.2,5,0 +2018,7,27,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,26,100,98628,504,1325,449,84,0,84,8285,0,8357,3607,290,3.1,10,10,2200,2438,0,919999999,126,0,0,88,0.2,5,0 +2018,7,27,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,26,100,97182,768,1325,449,156,0,156,15732,0,15882,7140,290,3.1,10,10,2000,1050,0,919999999,125,0,0,88,0.2,5,0 +2018,7,27,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,27,100,98637,993,1325,456,221,5,218,25782,250,25511,10412,350,2.1,10,10,1800,2438,0,919999999,139,0,0,88,0.2,5,0 +2018,7,27,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,27,100,98637,1166,1325,456,272,7,266,31966,371,31460,12741,320,2.1,10,10,2200,2438,0,919999999,139,0,0,88,0.2,5,0 +2018,7,27,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26.8,26.5,98,97160,1273,1325,454,303,7,297,35960,400,35384,14159,290,2.6,10,10,2000,2400,0,919999999,131,0,0,88,0.2,5,0 +2018,7,27,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,27,100,98637,1308,1325,456,313,7,306,37192,409,36576,14599,200,2.6,10,10,2200,2438,0,919999999,139,0,0,88,0.2,2,0 +2018,7,27,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,27,94,98646,1268,1325,462,302,7,295,35717,390,35149,14085,300,1.5,10,10,2200,2438,0,919999999,139,0,0,88,0.2,0,0 +2018,7,27,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27.8,26.4,92,97062,1156,1325,460,269,7,263,31685,373,31190,12630,320,2.6,10,10,2000,2400,0,919999999,129,0,0,88,0.2,0,0 +2018,7,27,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,27,94,98646,980,1325,462,217,5,214,25306,237,25057,10216,310,3.6,10,10,2800,2438,0,919999999,139,0,0,88,0.2,0,0 +2018,7,27,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,27,94,98646,751,1325,462,151,0,151,15184,0,15329,6889,320,3.6,10,10,3500,2438,0,919999999,139,0,0,88,0.2,0,0 +2018,7,27,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27.4,26,92,97019,485,1325,457,80,0,80,7808,0,7876,3391,290,2.6,10,10,2000,2400,0,919999999,124,0,0,88,0.2,0,0 +2018,7,27,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,27,94,98646,201,1325,462,19,0,19,1781,0,1795,756,260,1.5,10,10,3500,2438,0,919999999,139,0,0,88,0.2,0,0 +2018,7,27,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,27,94,98646,0,937,462,0,0,0,0,0,0,0,260,2.1,10,10,3200,2438,0,919999999,139,0,0,88,0.2,0,0 +2018,7,27,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26.8,26.2,97,97121,0,0,454,0,0,0,0,0,0,0,250,2.6,10,10,2000,2400,0,919999999,127,0,0,88,0.2,0,0 +2018,7,27,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,27,100,98637,0,0,456,0,0,0,0,0,0,0,290,3.1,10,10,3200,2438,0,919999999,139,0,0,88,0.2,0,0 +2018,7,27,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,26,94,98637,0,0,455,0,0,0,0,0,0,0,310,3.1,10,10,3200,2438,0,919999999,126,0,0,88,0.2,0,0 +2018,7,27,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26.2,25.3,95,97204,0,0,449,0,0,0,0,0,0,0,320,3.1,10,10,2000,2400,0,919999999,116,0,0,88,0.2,0,0 +2018,7,28,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,26,100,98628,0,0,449,0,0,0,0,0,0,0,280,3.6,10,10,2500,2438,0,919999999,126,0,0,88,0.2,0,0 +2018,7,28,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,26,100,98628,0,0,449,0,0,0,0,0,0,0,270,4.1,10,10,2500,2438,0,919999999,126,0,0,88,0.2,0,0 +2018,7,28,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,24.9,94,97095,0,0,447,0,0,0,0,0,0,0,270,4.1,10,10,2000,2400,0,919999999,112,0,0,88,0.2,0,0 +2018,7,28,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,26,100,98628,0,0,449,0,0,0,0,0,0,0,270,4.1,10,10,2500,2438,0,919999999,126,0,0,88,0.2,0,0 +2018,7,28,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,26,100,98628,0,0,449,0,0,0,0,0,0,0,280,4.1,10,10,2500,2438,0,919999999,126,0,0,88,0.2,0,0 +2018,7,28,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25.6,25.3,98,97062,0,0,445,0,0,0,0,0,0,0,270,4.1,10,10,2000,2400,9,999999999,116,0,0,88,0.2,2,0 +2018,7,28,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,26,100,98628,218,1012,449,21,0,21,2055,0,2071,870,280,4.1,10,10,2500,2438,9,999999999,126,0,0,88,0.2,0,0 +2018,7,28,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,27,100,98637,502,1325,456,84,0,84,8215,0,8287,3583,280,5.1,10,10,2200,2438,0,919999999,139,0,0,88,0.2,0,0 +2018,7,28,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26.6,25.5,94,97197,766,1325,452,156,0,156,15724,0,15873,7126,270,3.6,10,10,2000,1050,0,919999999,119,0,0,88,0.2,0,0 +2018,7,28,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,27,94,98646,992,1325,462,221,5,217,25750,250,25481,10398,270,3.6,10,10,2500,2438,0,919999999,139,0,0,88,0.2,0,0 +2018,7,28,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,27,94,98646,1165,1325,462,271,7,265,31942,370,31436,12733,260,4.6,10,10,2800,2743,0,919999999,139,0,0,88,0.2,0,0 +2018,7,28,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29.2,25.8,82,97239,1273,1325,468,304,7,297,36022,410,35444,14165,270,4.1,10,10,2000,2400,0,919999999,122,0,0,88,0.2,0,0 +2018,7,28,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,27,84,98663,1308,1325,475,313,7,306,37177,409,36562,14594,270,5.1,10,10,3000,2743,0,919999999,138,0,0,88,0.2,0,0 +2018,7,28,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,27,79,98672,1268,1325,481,302,7,295,35700,390,35133,14078,280,5.1,10,10,3200,2743,0,919999999,138,0,0,88,0.2,0,0 +2018,7,28,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29.6,27.4,88,97165,1156,1325,473,268,9,261,31576,480,30849,12529,320,3.6,10,10,2000,1200,0,919999999,143,0,0,88,0.2,0,0 +2018,7,28,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,28,89,98663,979,1325,463,355,43,324,39947,2700,36653,13844,330,2.6,9,9,2500,2438,0,919999999,153,0,0,88,0.2,0,0 +2018,7,28,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,28,89,98663,750,1325,476,151,0,151,15092,0,15236,6861,310,3.1,10,10,2500,2438,0,919999999,153,0,0,88,0.2,0,0 +2018,7,28,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30.2,27.7,87,97160,483,1325,477,79,0,79,7720,0,7787,3364,20,1.5,10,10,2000,1200,0,19999999,147,0,0,88,0.2,0,0 +2018,7,28,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,27,100,98637,198,1325,456,18,0,18,1749,0,1762,742,30,4.1,10,10,1500,914,0,19999999,139,0,0,88,0.2,0,0 +2018,7,28,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,26,100,98628,0,925,436,0,0,0,0,0,0,0,160,1.5,9,9,2000,2438,0,19999999,126,0,0,88,0.2,0,0 +2018,7,28,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25.8,24.9,95,97298,0,0,434,0,0,0,0,0,0,0,160,1.5,9,9,2000,3000,0,19999999,112,0,0,88,0.2,0,0 +2018,7,28,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9*9*9*9*9*9*9,26,26,100,98628,0,0,436,0,0,0,0,0,0,0,120,0,9,9,2000,3000,0,19999999,126,0,0,88,0.2,0,0 +2018,7,28,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,26,100,98628,0,0,436,0,0,0,0,0,0,0,240,2.1,9,9,2500,3048,0,19999999,126,0,0,88,0.2,0,0 +2018,7,28,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,25.1,95,97367,0,0,411,0,0,0,0,0,0,0,230,2.1,5,5,2000,3000,0,19999999,114,0,0,88,0.2,0,0 +2018,7,29,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,26,100,98628,0,0,412,0,0,0,0,0,0,0,122,0,5,5,2500,3048,0,19999999,126,0,0,88,0.2,0,0 +2018,7,29,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,26,100,98628,0,0,412,0,0,0,0,0,0,0,274,0,5,5,2500,3048,0,19999999,126,0,0,88,0.2,0,0 +2018,7,29,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25.8,25.2,96,97259,0,0,434,0,0,0,0,0,0,0,244,0,9,9,2000,3000,0,19999999,115,0,0,88,0.2,0,0 +2018,7,29,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,26,100,98628,0,0,436,0,0,0,0,0,0,0,220,2.6,9,9,2500,2438,0,19999999,126,0,0,88,0.2,0,0 +2018,7,29,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,26,100,98628,0,0,436,0,0,0,0,0,0,0,250,1.5,9,9,2500,2438,0,19999999,126,0,0,88,0.2,0,0 +2018,7,29,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25.8,25.2,96,97229,0,0,447,0,0,0,0,0,0,0,230,1.5,10,10,2000,2400,9,999999999,115,0,0,88,0.2,5,0 +2018,7,29,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,26,100,98628,215,1000,436,35,0,35,3308,0,3334,1309,230,1.5,9,9,2500,914,9,999999999,126,0,0,88,0.2,0,0 +2018,7,29,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,500,1325,448,137,16,131,15169,695,14558,5042,240,2.1,9,9,2500,3048,9,999999999,126,0,0,88,0.2,0,0 +2018,7,29,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27.2,25.2,89,97358,765,1325,418,461,431,212,51948,25502,24072,8987,180,1.5,5,5,2000,3000,9,999999999,115,0,0,88,0.2,0,0 +2018,7,29,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,991,1325,429,653,596,207,76529,31955,24436,10009,280,3.1,5,5,3000,3048,9,999999999,125,0,0,88,0.2,0,0 +2018,7,29,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,1164,1325,435,803,608,269,94544,34667,31872,12864,300,4.1,5,5,3500,3048,9,999999999,125,0,0,88,0.2,0,0 +2018,7,29,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.8,26.5,74,97408,1272,1325,446,896,540,377,104191,34479,44204,16948,290,3.6,5,5,2000,3048,9,999999999,130,0,0,88,0.2,0,0 +2018,7,29,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,26,71,98680,1307,1325,472,514,65,450,59308,4556,52329,19266,290,4.6,9,9,3500,3048,9,999999999,125,0,0,88,0.2,0,0 +2018,7,29,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,26,71,98680,1267,1325,446,892,542,374,103854,35005,43821,16814,290,5.1,5,5,3500,3048,9,999999999,125,0,0,88,0.2,0,0 +2018,7,29,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34.4,26.4,63,97215,1155,1325,461,794,608,265,93445,34078,31379,12694,320,4.1,5,5,4000,3000,9,999999999,128,0,0,88,0.2,0,0 +2018,7,29,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,27,63,98705,978,1325,465,641,592,204,74857,30502,23993,9831,280,3.1,5,5,4000,3048,9,999999999,137,0,0,88,0.2,0,0 +2018,7,29,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,27,63,98705,748,1325,465,445,485,172,50785,24268,19702,7598,270,3.1,5,5,4000,3048,9,999999999,137,0,0,88,0.2,0,0 +2018,7,29,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33.6,26.7,67,97052,481,1325,456,232,275,132,25583,11420,14645,4983,270,2.6,5,5,4000,3000,9,999999999,132,0,0,88,0.2,0,0 +2018,7,29,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,27,71,98689,196,1325,453,53,26,49,5767,0,5373,1660,260,2.6,5,5,4000,3048,9,999999999,138,0,0,88,0.2,0,0 +2018,7,29,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,27,79,98672,0,912,442,0,0,0,0,0,0,0,250,2.6,5,5,4000,3048,9,999999999,138,0,0,88,0.2,0,0 +2018,7,29,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31.6,26.9,76,97143,0,0,445,0,0,0,0,0,0,0,250,2.1,5,5,4000,77777,9,999999999,135,0,0,88,0.2,0,0 +2018,7,29,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,27,84,98663,0,0,436,0,0,0,0,0,0,0,136,0,5,5,3500,3048,9,999999999,138,0,0,88,0.2,0,0 +2018,7,29,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,27,84,98663,0,0,436,0,0,0,0,0,0,0,280,2.1,5,5,3500,3048,9,999999999,138,0,0,88,0.2,0,0 +2018,7,29,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30.8,26.9,80,97195,0,0,466,0,0,0,0,0,0,0,230,2.1,9,9,2000,3000,0,19999999,135,0,0,88,0.2,0,0 +2018,7,30,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,23,89,98619,0,0,427,0,0,0,0,0,0,0,90,4.6,9,9,3200,2438,0,19999999,94,0,0,88,0.2,0,0 +2018,7,30,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,25,94,98628,0,0,435,0,0,0,0,0,0,0,240,1.5,9,9,3500,2438,0,19999999,114,0,0,88,0.2,0,0 +2018,7,30,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26.2,25.1,94,97165,0,0,436,0,0,0,0,0,0,0,159,0,9,9,2000,3000,0,19999999,114,0,0,88,0.2,0,0 +2018,7,30,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,25,89,98637,0,0,441,0,0,0,0,0,0,0,260,2.6,9,9,3500,3048,0,19999999,114,0,0,88,0.2,0,0 +2018,7,30,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,25,89,98637,0,0,441,0,0,0,0,0,0,0,250,2.6,9,9,3500,3048,0,19999999,114,0,0,88,0.2,0,0 +2018,7,30,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26.8,24.2,86,97258,0,0,439,0,0,0,0,0,0,0,250,2.6,9,9,2000,3000,9,999999999,104,0,0,88,0.2,5,0 +2018,7,30,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,25,89,98637,213,988,441,34,0,34,3264,0,3289,1289,250,3.6,9,9,3500,3048,9,999999999,114,0,0,88,0.2,4,0 +2018,7,30,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,25,84,98646,498,1326,447,136,15,131,15139,673,14576,5032,260,4.1,9,9,3500,3048,9,999999999,114,0,0,88,0.2,0,0 +2018,7,30,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28.8,25.1,80,97382,763,1326,452,255,24,241,28463,1553,27054,9790,270,4.1,9,9,2000,3000,9,999999999,114,0,0,88,0.2,0,0 +2018,7,30,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,25,75,98663,990,1326,459,363,27,342,40872,1925,38845,14442,260,4.6,9,9,4000,3048,9,999999999,113,0,0,88,0.2,0,0 +2018,7,30,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26,75,98672,1164,1326,466,445,64,389,50902,4408,44788,16816,250,4.6,9,9,4000,3048,9,999999999,125,0,0,88,0.2,0,0 +2018,7,30,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26.6,78,97352,1272,1326,467,497,65,435,57095,4441,50355,18648,230,4.6,9,9,4000,3000,9,999999999,131,0,0,88,0.2,0,0 +2018,7,30,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,26,71,98680,1307,1326,472,514,65,450,59272,4559,52295,19254,240,3.6,9,9,4000,3048,9,999999999,125,0,0,88,0.2,0,0 +2018,7,30,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,26,67,98689,1266,1326,479,495,85,414,57112,5776,48120,18027,250,4.1,9,9,4000,3048,9,999999999,125,0,0,88,0.2,0,0 +2018,7,30,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33.2,26.9,70,97185,1154,1326,454,793,469,385,90476,31389,44239,16655,270,3.1,5,5,4000,3000,9,999999999,135,0,0,88,0.2,0,0 +2018,7,30,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,27,71,98689,977,1326,480,355,83,294,40274,5155,33533,12934,290,1,9,9,4000,3048,9,999999999,138,0,0,88,0.2,0,0 +2018,7,30,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,27,71,98689,746,1326,480,246,17,237,27362,1011,26464,9544,290,1,9,9,4000,3048,9,999999999,138,0,0,88,0.2,0,0 +2018,7,30,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33.2,26.3,67,97000,479,1326,480,128,11,124,14197,461,13800,4754,270,3.1,9,9,4000,3000,9,999999999,127,0,0,88,0.2,0,0 +2018,7,30,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,27,71,98689,193,1326,480,29,0,29,2750,0,2771,1096,270,3.1,9,9,4000,3048,9,999999999,138,0,0,88,0.2,0,0 +2018,7,30,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33,27,71,98689,0,899,453,0,0,0,0,0,0,0,280,1.5,5,5,3500,3048,9,999999999,138,0,0,88,0.2,0,0 +2018,7,30,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31.4,26.4,75,97092,0,0,443,0,0,0,0,0,0,0,86,0,5,5,2000,77777,9,999999999,129,0,0,88,0.2,0,0 +2018,7,30,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32,26,71,98680,0,0,446,0,0,0,0,0,0,0,270,1.5,5,5,3500,77777,9,999999999,125,0,0,88,0.2,0,0 +2018,7,30,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32,27,75,98680,0,0,447,0,0,0,0,0,0,0,230,1.5,5,5,3500,77777,9,999999999,138,0,0,88,0.2,0,0 +2018,7,30,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30.6,25.5,74,97115,0,0,437,0,0,0,0,0,0,0,250,2.1,5,5,2000,77777,9,999999999,118,0,0,88,0.2,0,0 +2018,7,31,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,27,75,98680,0,0,447,0,0,0,0,0,0,0,240,3.1,5,5,3500,3048,9,999999999,138,0,0,88,0.2,0,0 +2018,7,31,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,27,75,98680,0,0,447,0,0,0,0,0,0,0,240,3.1,5,5,3500,3048,9,999999999,138,0,0,88,0.2,0,0 +2018,7,31,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,25.4,79,97037,0,0,430,0,0,0,0,0,0,0,270,3.1,5,5,2000,3048,9,999999999,117,0,0,88,0.2,0,0 +2018,7,31,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,0,0,435,0,0,0,0,0,0,0,270,3.1,5,5,3500,3048,9,999999999,125,0,0,88,0.2,0,0 +2018,7,31,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,0,0,435,0,0,0,0,0,0,0,270,3.1,5,5,3500,3048,9,999999999,125,0,0,88,0.2,0,0 +2018,7,31,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27.8,24,80,97101,0,0,444,0,0,0,0,0,0,0,270,3.1,9,9,2000,3000,9,999999999,102,0,0,88,0.2,0,0 +2018,7,31,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,211,976,454,33,0,33,3194,0,3219,1265,260,2.6,9,9,3500,3048,9,999999999,125,0,0,88,0.2,0,0 +2018,7,31,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,496,1326,429,244,261,146,26781,12099,16138,5419,270,4.1,5,5,3000,3048,9,999999999,125,0,0,88,0.2,0,0 +2018,7,31,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29.2,24,74,97181,762,1326,453,255,35,235,28542,2273,26430,9606,250,3.1,9,9,2000,3000,9,999999999,102,0,0,88,0.2,0,0 +2018,7,31,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,25,70,98672,989,1326,465,362,27,342,40811,1924,38788,14419,270,4.1,9,9,3000,3048,9,999999999,113,0,0,88,0.2,0,0 +2018,7,31,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,25,70,98672,1163,1326,465,445,65,389,51014,4553,44852,16811,270,3.1,9,9,3000,3048,9,999999999,113,0,0,88,0.2,0,0 +2018,7,31,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30.6,24.3,69,97232,1271,1326,462,498,66,435,57469,4779,50599,18662,270,3.1,9,9,2000,3000,9,999999999,104,0,0,88,0.2,0,0 +2018,7,31,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,25,70,98672,1306,1326,465,515,65,450,59415,4706,52382,19253,270,1.5,9,9,3000,3048,9,999999999,113,0,0,88,0.2,0,0 +2018,7,31,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26,75,98672,1266,1326,466,494,65,432,56854,4526,50117,18553,260,2.1,9,9,3000,3048,9,999999999,125,0,0,88,0.2,0,0 +2018,7,31,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,26,71,98680,1153,1326,472,440,64,384,50276,4392,44233,16632,290,2.6,9,9,3500,3048,9,999999999,125,0,0,88,0.2,0,0 +2018,7,31,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,26,63,98697,975,1326,485,355,30,333,39924,2063,37682,14053,290,3.1,9,9,3500,3048,9,999999999,124,0,0,88,0.2,0,0 +2018,7,31,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,26,63,98697,745,1326,485,246,17,237,27361,1048,26457,9517,300,3.1,9,9,3500,3048,9,999999999,124,0,0,88,0.2,0,0 +2018,7,31,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33.8,27.2,69,96976,477,1326,485,127,11,123,14052,414,13684,4719,340,1.5,9,9,2000,3000,9,999999999,139,0,0,88,0.2,0,0 +2018,7,31,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31.9,27.2,76,98271,191,1326,480,28,0,28,2685,0,2706,1070,192,2.7,9,9,3500,3048,9,999999999,140,0,0,88,0.2,0,0 +2018,7,31,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30.1,26.2,80,98256,0,885,475,0,0,0,0,0,0,0,197,3.9,9,9,3500,3048,9,999999999,127,0,0,88,0.2,0,0 +2018,7,31,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,24.4,81,97886,0,0,470,0,0,0,0,0,0,0,227,3.8,9,9,2000,1050,9,999999999,106,0,0,88,0.2,0,0 +2018,7,31,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28.1,24,78,98295,0,0,481,0,0,0,0,0,0,0,200,3.8,10,10,2200,3048,0,19999999,103,0,0,88,0.2,0,0 +2018,7,31,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28.1,23.5,76,98295,0,0,445,0,0,0,0,0,0,0,165,4,10,10,2000,914,0,19999999,98,0,0,88,0.2,0,0 +2018,7,31,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29.4,24,73,98306,0,0,428,0,0,0,0,0,0,0,110,3.5,10,10,2000,900,0,19999999,102,0,0,88,0.2,0,0 +2004,8,1,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,25,70,98672,0,0,471,0,0,0,0,0,0,0,57,3.7,9,9,4000,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,1,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30.5,25,73,98668,0,0,465,0,0,0,0,0,0,0,60,3.7,9,9,4000,3000,9,999999999,113,0,0,88,0.2,0,0 +2004,8,1,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,25,75,98663,0,0,465,0,0,0,0,0,0,0,62,3.2,9,9,4000,3000,9,999999999,113,0,0,88,0.2,0,0 +2004,8,1,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29.8,25,76,98661,0,0,433,0,0,0,0,0,0,0,65,3.5,5,5,4000,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,1,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,25,75,98663,0,0,433,0,0,0,0,0,0,0,67,3.7,5,5,4000,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,1,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30.2,25,74,98665,0,0,453,0,0,0,0,0,0,0,65,4.3,9,9,4000,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,1,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,25,75,98663,211,976,459,33,0,33,3204,0,3229,1266,70,5.1,9,9,4000,3000,9,999999999,113,0,0,88,0.2,0,0 +2004,8,1,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,25,70,98672,496,1326,439,244,263,146,26874,12624,16147,5415,70,4.1,5,5,4000,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,1,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,25,70,98672,762,1326,465,254,35,234,28456,2197,26364,9599,50,5.1,9,9,4000,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,1,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,989,1326,460,361,27,341,40680,1862,38677,14406,100,4.1,9,9,4500,1200,9,999999999,125,0,0,88,0.2,0,0 +2004,8,1,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,25,63,98689,1163,1326,477,446,65,389,51018,4555,44854,16811,100,5.7,9,9,4500,3000,9,999999999,113,0,0,88,0.2,0,0 +2004,8,1,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,25,60,98697,1271,1326,484,498,65,435,57347,4681,50517,18654,60,6.2,9,9,5000,1200,9,999999999,113,0,0,88,0.2,0,0 +2004,8,1,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,25,56,98705,1306,1326,490,515,65,450,59426,4710,52388,19254,50,2.6,9,9,5000,1200,9,999999999,112,0,0,88,0.2,0,0 +2004,8,1,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,25,56,98705,1266,1326,490,495,85,414,57251,5970,48185,18022,30,4.1,9,9,5000,1200,9,999999999,112,0,0,88,0.2,0,0 +2004,8,1,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,23,50,98705,1153,1326,460,797,573,299,93323,37331,35278,13936,70,6.2,5,5,5000,77777,9,999999999,92,0,0,88,0.2,0,0 +2004,8,1,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,25,56,98705,975,1326,463,641,598,201,75161,32813,23720,9699,60,1.5,5,5,4000,77777,9,999999999,112,0,0,88,0.2,0,0 +2004,8,1,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,24,53,98705,745,1326,461,445,492,169,51022,27015,19443,7471,50,3.6,5,5,4000,77777,9,999999999,102,0,0,88,0.2,0,0 +2004,8,1,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,23,50,98705,477,1326,460,231,279,130,25557,13142,14519,4910,60,4.1,5,5,4000,77777,9,999999999,92,0,0,88,0.2,0,0 +2004,8,1,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,23,50,98705,191,1326,460,51,38,45,5599,0,5015,1554,50,2.1,5,5,4000,77777,9,999999999,92,0,0,88,0.2,0,0 +2004,8,1,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,24,56,98697,0,885,455,0,0,0,0,0,0,0,60,2.6,5,5,4000,77777,9,999999999,102,0,0,88,0.2,0,0 +2004,8,1,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,25,63,98689,0,0,444,0,0,0,0,0,0,0,50,4.1,3,3,4500,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,1,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,24,59,98689,0,0,442,0,0,0,0,0,0,0,70,4.1,3,3,4500,77777,9,999999999,102,0,0,88,0.2,0,0 +2004,8,1,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,25,67,98680,0,0,438,0,0,0,0,0,0,0,60,5.1,3,3,4000,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,1,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,25,67,98680,0,0,438,0,0,0,0,0,0,0,60,3.1,3,3,4000,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,2,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,25,70,98672,0,0,432,0,0,0,0,0,0,0,60,3.6,3,3,4000,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,2,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,25,70,98672,0,0,432,0,0,0,0,0,0,0,50,4.6,3,3,4000,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,2,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,25,70,98672,0,0,432,0,0,0,0,0,0,0,70,4.1,3,3,4000,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,2,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,25,75,98663,0,0,433,0,0,0,0,0,0,0,70,4.6,5,5,4000,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,2,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,25,75,98663,0,0,427,0,0,0,0,0,0,0,70,2.6,3,3,4500,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,2,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,25,75,98663,0,0,433,0,0,0,0,0,0,0,60,2.6,5,5,5000,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,2,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,208,964,435,59,38,53,6437,0,5808,1793,50,3.6,5,5,4000,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,2,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,25,75,98663,495,1326,433,243,290,135,26906,13207,15007,5125,70,5.1,5,5,4000,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,2,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26,75,98672,761,1326,440,457,491,176,52209,25721,20165,7782,60,4.6,5,5,4000,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,2,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,26,71,98680,988,1326,446,651,597,206,76245,31950,24265,9939,60,4.1,5,5,4000,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,2,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,25,60,98697,1162,1326,457,803,613,266,94690,35872,31529,12727,60,2.6,5,5,4000,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,2,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,24,56,98697,1270,1326,455,898,644,281,107216,38403,33779,13563,60,6.2,5,5,4000,77777,9,999999999,102,0,0,88,0.2,0,0 +2004,8,2,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,24,53,98705,1305,1326,461,929,641,298,110883,38745,35845,14293,60,5.1,5,5,4000,77777,9,999999999,102,0,0,88,0.2,0,0 +2004,8,2,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,25,56,98705,1265,1326,463,892,641,281,106268,37195,33710,13552,50,4.6,5,5,4000,77777,9,999999999,112,0,0,88,0.2,0,0 +2004,8,2,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,22,47,98705,1152,1326,458,798,650,234,95297,39084,28057,11458,100,7.2,5,5,4000,77777,9,999999999,83,0,0,88,0.2,0,0 +2004,8,2,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,24,53,98705,974,1326,461,641,601,199,75300,33878,23565,9627,50,4.1,5,5,4000,77777,9,999999999,102,0,0,88,0.2,0,0 +2004,8,2,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,24,50,98714,743,1326,467,444,492,168,50867,26978,19378,7442,50,4.1,5,5,4000,77777,9,999999999,102,0,0,88,0.2,0,0 +2004,8,2,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,24,53,98705,475,1326,461,229,249,140,25158,11903,15419,5120,70,2.6,5,5,4000,77777,9,999999999,102,0,0,88,0.2,0,0 +2004,8,2,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,25,79,98654,188,1326,453,28,0,28,2638,0,2658,1048,70,8.7,9,9,4000,1200,9,999999999,114,0,0,88,0.2,0,0 +2004,8,2,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,25,79,98654,0,871,466,0,0,0,0,0,0,0,70,5.7,10,10,3000,900,0,19999999,114,0,0,88,0.2,0,0 +2004,8,2,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,27,94,98646,0,0,450,0,0,0,0,0,0,0,240,2.6,9,9,3000,1200,0,19999999,139,0,0,88,0.2,0,0 +2004,8,2,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,27,94,98646,0,0,450,0,0,0,0,0,0,0,260,2.1,9,9,3000,1200,0,19999999,139,0,0,88,0.2,0,0 +2004,8,2,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,27,89,98654,0,0,456,0,0,0,0,0,0,0,250,3.1,9,9,3000,900,0,19999999,139,0,0,88,0.2,0,0 +2004,8,2,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,28,94,98654,0,0,470,0,0,0,0,0,0,0,227,0,10,10,3000,900,0,19999999,153,0,0,88,0.2,0,0 +2004,8,3,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,25,84,98646,0,0,460,0,0,0,0,0,0,0,160,3.6,10,10,3000,900,0,19999999,114,0,0,88,0.2,0,0 +2004,8,3,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,25,89,98637,0,0,453,0,0,0,0,0,0,0,160,3.1,10,10,3000,900,0,19999999,114,0,0,88,0.2,0,0 +2004,8,3,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,26,94,98637,0,0,455,0,0,0,0,0,0,0,258,1.5,10,10,3000,900,0,19999999,126,0,0,88,0.2,0,0 +2004,8,3,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,26,94,98637,0,0,455,0,0,0,0,0,0,0,58,0,10,10,3000,2400,0,19999999,126,0,0,88,0.2,0,0 +2004,8,3,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,26,94,98637,0,0,455,0,0,0,0,0,0,0,150,2.1,10,10,3000,600,0,19999999,126,0,0,88,0.2,0,0 +2004,8,3,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,26,94,98637,0,0,442,0,0,0,0,0,0,0,250,2.1,9,9,3000,77777,0,919999999,126,0,0,88,0.2,0,0 +2004,8,3,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,27,100,98637,206,952,444,32,0,32,3070,0,3094,1219,250,1,9,9,3000,600,0,919999999,139,0,0,88,0.2,0,0 +2004,8,3,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,27.5,26,92,98641,493,1327,445,118,0,118,11577,0,11677,4646,296,1.8,9,9,3000,600,9,999999999,126,0,0,88,0.2,0,0 +2004,8,3,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,25,84,98646,759,1327,460,154,0,154,15550,0,15696,7027,320,2.6,10,10,3000,600,0,919999999,114,0,0,88,0.2,0,0 +2004,8,3,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,27,89,98654,987,1327,468,219,32,196,25765,1611,23099,9528,330,1,10,10,2300,600,0,919999999,139,0,0,88,0.2,0,0 +2004,8,3,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,27,79,98672,1161,1327,468,443,57,393,50528,3852,45151,16921,142,0,9,9,2700,600,0,919999999,138,0,0,88,0.2,0,0 +2004,8,3,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,1270,1327,454,496,65,434,57067,4533,50308,18613,50,4.1,9,9,2200,600,0,919999999,125,0,0,88,0.2,0,0 +2004,8,3,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,27,89,98654,1305,1327,456,512,65,449,58940,4407,52038,19200,20,1.5,9,9,2800,600,0,919999999,139,0,0,88,0.2,0,0 +2004,8,3,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26,75,98672,1264,1327,466,493,54,442,56647,3827,51120,18802,320,3.1,9,9,3000,600,0,919999999,125,0,0,88,0.2,0,0 +2004,8,3,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,27,94,98646,1151,1327,462,267,9,259,31430,484,30713,12470,220,4.1,10,10,2000,600,0,19999999,139,0,0,88,0.2,0,0 +2004,8,3,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,25,84,98646,972,1327,460,216,4,213,25203,249,24960,10129,250,4.6,10,10,2800,600,0,19999999,114,0,0,88,0.2,0,0 +2004,8,3,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,25,89,98637,741,1327,453,149,0,149,15007,0,15147,6763,320,4.6,10,10,2800,600,0,19999999,114,0,0,88,0.2,0,0 +2004,8,3,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,25,89,98637,473,1327,453,77,0,77,7527,0,7591,3253,320,4.1,10,10,2200,600,0,19999999,114,0,0,88,0.2,0,0 +2004,8,3,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,25,89,98637,185,1327,453,16,0,16,1567,0,1579,662,350,1.5,10,10,3000,600,0,19999999,114,0,0,88,0.2,0,0 +2004,8,3,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,25,89,98637,0,857,441,0,0,0,0,0,0,0,20,3.1,9,9,3000,600,0,19999999,114,0,0,88,0.2,0,0 +2004,8,3,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,25,89,98637,0,0,441,0,0,0,0,0,0,0,30,3.1,9,9,3000,600,0,19999999,114,0,0,88,0.2,0,0 +2004,8,3,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,26,94,98637,0,0,442,0,0,0,0,0,0,0,20,3.1,9,9,3000,600,0,19999999,126,0,0,88,0.2,0,0 +2004,8,3,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,26,94,98637,0,0,442,0,0,0,0,0,0,0,50,4.1,9,9,2800,2400,0,19999999,126,0,0,88,0.2,0,0 +2004,8,3,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,25,89,98637,0,0,441,0,0,0,0,0,0,0,50,3.6,9,9,2800,2400,0,19999999,114,0,0,88,0.2,0,0 +2004,8,4,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,0,0,448,0,0,0,0,0,0,0,60,4.1,9,9,2500,3000,0,19999999,126,0,0,88,0.2,0,0 +2004,8,4,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,0,0,448,0,0,0,0,0,0,0,70,4.6,9,9,2800,3000,0,19999999,126,0,0,88,0.2,0,0 +2004,8,4,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,28,26.3,91,98646,0,0,449,0,0,0,0,0,0,0,238,4.3,9,9,2866,3000,9,999999999,130,0,0,88,0.2,0,0 +2004,8,4,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,28,26.7,92,98646,0,0,449,0,0,0,0,0,0,0,93,3.9,9,9,2933,3000,9,999999999,135,0,0,88,0.2,0,0 +2004,8,4,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,27,94,98646,0,0,450,0,0,0,0,0,0,0,60,3.6,9,9,3000,1200,0,19999999,139,0,0,88,0.2,0,0 +2004,8,4,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,0,0,448,0,0,0,0,0,0,0,100,5.1,9,9,3000,1200,9,999999999,126,0,0,88,0.2,0,0 +2004,8,4,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,27,89,98654,204,940,456,32,0,32,3011,0,3035,1196,100,3.6,9,9,2800,1200,9,999999999,139,0,0,88,0.2,0,0 +2004,8,4,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,29,27,89,98654,491,1327,456,140,23,132,15491,931,14634,5024,69,3.8,9,9,2650,1200,9,999999999,139,0,0,88,0.2,0,0 +2004,8,4,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,27,89,98654,758,1327,456,252,17,242,27953,1042,27021,9759,100,4.1,9,9,2500,900,9,999999999,139,0,0,88,0.2,0,0 +2004,8,4,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26,75,98672,986,1327,466,360,27,340,40502,1860,38507,14336,110,4.6,9,9,3000,900,9,999999999,125,0,0,88,0.2,0,0 +2004,8,4,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,27,79,98672,1161,1327,468,443,64,387,50535,4259,44495,16743,60,4.6,9,9,3000,1200,9,999999999,138,0,0,88,0.2,0,0 +2004,8,4,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,27,75,98680,1269,1327,474,495,64,433,56840,4383,50141,18588,70,7.7,9,9,3200,900,9,999999999,138,0,0,88,0.2,0,0 +2004,8,4,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,27,79,98672,1304,1327,468,512,65,448,58897,4410,51996,19186,120,5.1,9,9,2500,900,0,919999999,138,0,0,88,0.2,0,0 +2004,8,4,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,27,89,98654,1263,1327,456,492,64,431,56504,4375,49842,18491,110,2.6,9,9,2500,900,0,919999999,139,0,0,88,0.2,0,0 +2004,8,4,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,1150,1327,448,438,64,383,50069,4390,44051,16569,60,4.1,9,9,2500,900,0,919999999,126,0,0,88,0.2,0,0 +2004,8,4,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,26,84,98654,971,1327,454,353,30,331,39669,2056,37444,13957,76,0,9,9,3000,1200,0,919999999,125,0,0,88,0.2,0,0 +2004,8,4,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,27,84,98663,739,1327,462,243,17,234,26972,993,26095,9393,205,0,9,9,3000,1200,0,919999999,138,0,0,88,0.2,0,0 +2004,8,4,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,27,84,98663,470,1327,462,124,10,121,13741,365,13424,4618,109,0,9,9,3000,1200,0,919999999,138,0,0,88,0.2,0,0 +2004,8,4,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,27,84,98663,182,1327,462,26,0,26,2483,0,2502,992,23,0,9,9,2000,1200,0,919999999,138,0,0,88,0.2,0,0 +2004,8,4,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,27,89,98654,0,842,456,0,0,0,0,0,0,0,60,1.5,9,9,1400,1200,0,919999999,139,0,0,88,0.2,0,0 +2004,8,4,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,27,89,98654,0,0,430,0,0,0,0,0,0,0,60,3.1,5,5,1400,77777,0,919999999,139,0,0,88,0.2,0,0 +2004,8,4,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,0,0,429,0,0,0,0,0,0,0,60,2.1,5,5,2500,77777,0,919999999,125,0,0,88,0.2,0,0 +2004,8,4,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,27,89,98654,0,0,430,0,0,0,0,0,0,0,219,0,5,5,2400,77777,0,919999999,139,0,0,88,0.2,0,0 +2004,8,4,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,27,89,98654,0,0,423,0,0,0,0,0,0,0,126,0,3,3,2000,77777,0,919999999,139,0,0,88,0.2,0,0 +2004,8,5,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,27,94,98646,0,0,418,0,0,0,0,0,0,0,155,0,3,3,2000,77777,0,919999999,139,0,0,88,0.2,0,0 +2004,8,5,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,0,0,417,0,0,0,0,0,0,0,10,2.1,3,3,2100,77777,0,919999999,126,0,0,88,0.2,0,0 +2004,8,5,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,0,0,417,0,0,0,0,0,0,0,20,2.1,3,3,2400,77777,0,919999999,126,0,0,88,0.2,0,0 +2004,8,5,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,0,0,423,0,0,0,0,0,0,0,40,3.1,5,5,1800,77777,0,919999999,126,0,0,88,0.2,0,0 +2004,8,5,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,27,94,98646,0,0,424,0,0,0,0,0,0,0,50,2.6,5,5,2000,77777,0,919999999,139,0,0,88,0.2,0,0 +2004,8,5,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,27,94,98646,0,0,424,0,0,0,0,0,0,0,70,1.5,5,5,2400,77777,9,999999999,139,0,0,88,0.2,0,0 +2004,8,5,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,27,89,98654,202,928,430,56,32,51,6071,0,5564,1719,70,2.6,5,5,2000,77777,9,999999999,139,0,0,88,0.2,0,0 +2004,8,5,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,27,84,98663,489,1327,436,238,284,134,26266,11761,14832,5066,70,2.6,5,5,2500,77777,9,999999999,138,0,0,88,0.2,0,0 +2004,8,5,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,27,79,98672,756,1327,442,453,406,221,50634,23325,24905,9188,50,3.1,5,5,2800,77777,9,999999999,138,0,0,88,0.2,0,0 +2004,8,5,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,26,71,98680,985,1327,472,360,44,327,40571,2942,37171,13976,50,4.1,9,9,3500,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,5,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,27,71,98689,1160,1327,480,442,64,387,50493,4263,44453,16728,100,4.1,9,9,3500,900,9,999999999,138,0,0,88,0.2,0,0 +2004,8,5,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,26,63,98697,1268,1327,485,495,65,433,56990,4542,50231,18586,110,2.6,9,9,4000,77777,9,999999999,124,0,0,88,0.2,0,0 +2004,8,5,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,26,60,98705,1303,1327,491,512,65,449,59056,4571,52091,19184,120,3.1,9,9,4000,77777,9,999999999,124,0,0,88,0.2,0,0 +2004,8,5,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,25,53,98714,1262,1327,496,494,86,412,57039,5981,47995,17956,120,3.1,9,9,4500,77777,9,999999999,112,0,0,88,0.2,0,0 +2004,8,5,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,26,57,98714,1148,1327,470,789,564,301,91892,34185,35301,13983,60,4.1,5,5,5000,77777,9,999999999,124,0,0,88,0.2,0,0 +2004,8,5,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,25,53,98714,969,1327,469,636,598,199,74562,32753,23461,9588,50,4.1,5,5,5000,77777,9,999999999,112,0,0,88,0.2,0,0 +2004,8,5,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,26,57,98714,737,1327,470,437,484,169,49918,24954,19336,7422,60,2.6,5,5,5000,77777,9,999999999,124,0,0,88,0.2,0,0 +2004,8,5,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,26,60,98705,468,1327,464,223,268,128,24530,11104,14210,4801,50,2.1,5,5,4000,77777,9,999999999,124,0,0,88,0.2,0,0 +2004,8,5,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,25,56,98705,179,1327,463,46,21,43,5013,0,4715,1457,60,1.5,5,5,4000,77777,9,999999999,112,0,0,88,0.2,0,0 +2004,8,5,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,26,63,98697,0,827,458,0,0,0,0,0,0,0,60,1.5,5,5,4000,77777,9,999999999,124,0,0,88,0.2,0,0 +2004,8,5,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,26,67,98689,0,0,452,0,0,0,0,0,0,0,70,2.1,5,5,3200,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,5,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,26,67,98689,0,0,452,0,0,0,0,0,0,0,60,3.1,5,5,3000,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,5,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,27,75,98680,0,0,447,0,0,0,0,0,0,0,50,2.1,5,5,3000,77777,9,999999999,138,0,0,88,0.2,0,0 +2004,8,5,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,26,71,98680,0,0,446,0,0,0,0,0,0,0,60,4.1,5,5,2800,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,6,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,27,79,98672,0,0,442,0,0,0,0,0,0,0,60,2.1,5,5,2800,77777,9,999999999,138,0,0,88,0.2,0,0 +2004,8,6,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26,75,98672,0,0,440,0,0,0,0,0,0,0,60,2.6,5,5,2800,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,6,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26,75,98672,0,0,440,0,0,0,0,0,0,0,60,4.1,5,5,3000,3000,9,999999999,125,0,0,88,0.2,0,0 +2004,8,6,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,25,75,98663,0,0,427,0,0,0,0,0,0,0,70,3.6,3,3,4000,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,6,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,25,79,98654,0,0,421,0,0,0,0,0,0,0,60,4.1,3,3,4000,77777,9,999999999,114,0,0,88,0.2,0,0 +2004,8,6,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,0,0,429,0,0,0,0,0,0,0,60,3.1,5,5,3500,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,6,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,27,84,98663,199,916,436,55,30,50,5953,0,5486,1694,60,2.1,5,5,3000,77777,9,999999999,138,0,0,88,0.2,0,0 +2004,8,6,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,487,1328,435,237,284,133,26198,12245,14784,5038,60,4.1,5,5,3000,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,6,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,26,71,98680,755,1328,439,480,624,125,56244,28000,14732,5894,60,4.1,3,3,3500,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,6,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,26,67,98689,984,1328,452,647,583,215,75496,31865,25244,10272,60,4.1,5,5,4000,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,6,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,26,63,98697,1159,1328,458,798,611,265,93979,34708,31449,12713,50,4.6,5,5,4000,77777,9,999999999,124,0,0,88,0.2,0,0 +2004,8,6,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,25,56,98705,1267,1328,463,894,548,371,104248,36235,43558,16712,50,4.1,5,5,5000,77777,9,999999999,112,0,0,88,0.2,0,0 +2004,8,6,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,25,56,98705,1302,1328,490,513,86,429,59401,6025,50042,18623,110,3.1,9,9,5000,1200,9,999999999,112,0,0,88,0.2,0,0 +2004,8,6,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,24,53,98705,1261,1328,488,494,86,412,57147,6163,48038,17945,60,5.1,9,9,5000,1200,9,999999999,102,0,0,88,0.2,0,0 +2004,8,6,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,26,57,98714,1147,1328,470,788,565,301,91750,34182,35222,13956,60,3.6,5,5,5000,77777,9,999999999,124,0,0,88,0.2,0,0 +2004,8,6,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,25,56,98705,968,1328,463,634,598,199,74373,32724,23404,9563,60,4.1,5,5,5000,77777,9,999999999,112,0,0,88,0.2,0,0 +2004,8,6,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,25,56,98705,735,1328,463,436,486,167,49872,25812,19240,7373,50,3.1,5,5,5000,77777,9,999999999,112,0,0,88,0.2,0,0 +2004,8,6,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,26,60,98705,465,1328,464,221,266,128,24302,10946,14133,4768,60,2.6,5,5,5000,77777,9,999999999,124,0,0,88,0.2,0,0 +2004,8,6,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,25,60,98697,176,1328,457,44,16,42,4860,0,4637,1431,50,4.1,5,5,5000,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,6,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,25,63,98689,0,811,451,0,0,0,0,0,0,0,70,3.1,5,5,5000,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,6,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,32.5,24.5,63,98684,0,0,447,0,0,0,0,0,0,0,214,3.6,5,5,4500,77777,9,999999999,107,0,0,88,0.2,0,0 +2004,8,6,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,24,63,98680,0,0,443,0,0,0,0,0,0,0,60,4.1,5,5,4000,77777,9,999999999,102,0,0,88,0.2,0,0 +2004,8,6,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,24,63,98680,0,0,443,0,0,0,0,0,0,0,60,4.1,5,5,4000,77777,9,999999999,102,0,0,88,0.2,0,0 +2004,8,6,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,25,70,98672,0,0,439,0,0,0,0,0,0,0,60,4.1,5,5,4000,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,7,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,25,75,98663,0,0,433,0,0,0,0,0,0,0,70,4.1,5,5,4000,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,7,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,25,75,98663,0,0,427,0,0,0,0,0,0,0,60,4.1,3,3,4000,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,7,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,25,79,98654,0,0,421,0,0,0,0,0,0,0,70,3.1,3,3,4000,77777,9,999999999,114,0,0,88,0.2,0,0 +2004,8,7,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,0,0,422,0,0,0,0,0,0,0,60,3.1,3,3,4000,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,7,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,25,79,98654,0,0,428,0,0,0,0,0,0,0,60,3.6,5,5,4000,77777,9,999999999,114,0,0,88,0.2,0,0 +2004,8,7,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,0,0,454,0,0,0,0,0,0,0,70,4.1,9,9,4000,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,7,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,197,904,454,30,0,30,2856,0,2878,1133,60,4.1,9,9,4000,3000,9,999999999,125,0,0,88,0.2,0,0 +2004,8,7,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,25,75,98663,486,1328,459,131,13,126,14565,570,14095,4846,70,4.1,9,9,4000,3000,9,999999999,113,0,0,88,0.2,0,0 +2004,8,7,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,754,1328,460,250,17,241,27839,1078,26905,9684,60,3.6,9,9,4000,3000,9,999999999,125,0,0,88,0.2,0,0 +2004,8,7,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26,75,98672,983,1328,466,359,27,339,40328,1861,38340,14265,70,5.1,9,9,4000,3000,9,999999999,125,0,0,88,0.2,0,0 +2004,8,7,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26,75,98672,1158,1328,466,442,64,386,50553,4417,44471,16705,70,4.1,9,9,4000,3000,9,999999999,125,0,0,88,0.2,0,0 +2004,8,7,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,26,71,98680,1267,1328,472,495,65,433,56886,4544,50138,18554,70,5.1,9,9,4500,3000,9,999999999,125,0,0,88,0.2,0,0 +2004,8,7,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,25,67,98680,1302,1328,471,512,66,448,59130,4720,52117,19162,70,6.7,9,9,4500,3000,9,999999999,113,0,0,88,0.2,0,0 +2004,8,7,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,25,67,98680,1260,1328,471,492,65,430,56698,4685,49928,18458,60,6.2,9,9,4500,3000,9,999999999,113,0,0,88,0.2,0,0 +2004,8,7,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,25,67,98680,1146,1328,471,437,65,382,50014,4543,43959,16511,50,4.6,9,9,4500,3000,9,999999999,113,0,0,88,0.2,0,0 +2004,8,7,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,25,67,98680,966,1328,471,351,43,319,39619,2996,36292,13599,60,4.6,9,9,4000,1200,9,999999999,113,0,0,88,0.2,0,0 +2004,8,7,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,25,63,98689,733,1328,451,435,401,213,48688,24171,24032,8782,60,2.6,5,5,4000,1200,9,999999999,113,0,0,88,0.2,0,0 +2004,8,7,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,26,67,98689,462,1328,452,219,239,136,23955,10282,14947,4949,50,1.5,5,5,4000,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,7,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,26,67,98689,173,1328,479,24,0,24,2278,0,2295,910,70,2.1,9,9,4000,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,7,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,26,67,98689,0,795,479,0,0,0,0,0,0,0,60,2.1,9,9,4000,1200,9,999999999,125,0,0,88,0.2,0,0 +2004,8,7,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26,75,98672,0,0,434,0,0,0,0,0,0,0,50,1,3,3,3500,1200,9,999999999,125,0,0,88,0.2,0,0 +2004,8,7,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26,75,98672,0,0,440,0,0,0,0,0,0,0,60,1.5,5,5,3500,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,7,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,0,0,428,0,0,0,0,0,0,0,70,2.1,3,3,3000,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,7,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,0,0,428,0,0,0,0,0,0,0,70,1.5,3,3,3000,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,8,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,25,75,98663,0,0,433,0,0,0,0,0,0,0,70,3.1,5,5,3000,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,8,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,0,0,435,0,0,0,0,0,0,0,70,2.1,5,5,3000,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,8,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,0,0,435,0,0,0,0,0,0,0,60,4.1,5,5,2800,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,8,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,0,0,435,0,0,0,0,0,0,0,60,4.1,5,5,3000,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,8,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,0,0,429,0,0,0,0,0,0,0,70,3.6,5,5,3000,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,8,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,0,0,429,0,0,0,0,0,0,0,40,2.1,5,5,3000,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,8,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,195,892,429,53,27,49,5746,0,5342,1645,90,3.6,5,5,3000,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,8,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,25,70,98672,484,1329,439,235,283,132,25993,12619,14670,4984,50,5.1,5,5,3000,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,8,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,26,71,98680,752,1329,446,450,493,171,51439,25539,19660,7582,70,4.1,5,5,3500,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,8,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,25,67,98680,982,1329,445,646,601,203,75854,33041,23892,9772,100,2.6,5,5,3500,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,8,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,26,67,98689,1157,1329,452,797,611,264,93792,34715,31330,12669,70,3.1,5,5,4500,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,8,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,25,60,98697,1266,1329,457,892,642,281,106319,37289,33663,13535,50,4.1,5,5,4500,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,8,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,25,56,98705,1301,1329,463,923,639,298,109942,37635,35720,14263,70,3.1,5,5,5000,77777,9,999999999,112,0,0,88,0.2,0,0 +2004,8,8,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,24,53,98705,1259,1329,461,888,647,275,106047,38383,33039,13298,70,5.1,5,5,5000,77777,9,999999999,102,0,0,88,0.2,0,0 +2004,8,8,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,25,53,98714,1144,1329,469,787,569,298,91794,35298,34937,13842,40,2.1,5,5,5000,77777,9,999999999,112,0,0,88,0.2,0,0 +2004,8,8,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,24,50,98714,964,1329,495,351,85,289,39954,5688,33160,12701,50,4.1,9,9,5000,77777,9,999999999,102,0,0,88,0.2,0,0 +2004,8,8,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,26,57,98714,730,1329,498,240,17,230,26618,1016,25753,9228,60,3.1,9,9,5000,3000,9,999999999,124,0,0,88,0.2,0,0 +2004,8,8,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,25,56,98705,459,1329,490,120,9,117,13355,372,13057,4462,60,3.6,9,9,4500,3000,9,999999999,112,0,0,88,0.2,0,0 +2004,8,8,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,25,56,98705,169,1329,490,23,0,23,2207,0,2224,881,70,4.1,9,9,4000,3000,0,919999999,112,0,0,88,0.2,0,0 +2004,8,8,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,28,94,98654,0,778,457,0,0,0,0,0,0,0,27,0,9,9,3500,1200,0,919999999,153,0,0,88,0.2,0,0 +2004,8,8,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,28,84,98672,0,0,436,0,0,0,0,0,0,0,247,0,3,3,5000,77777,0,919999999,153,0,0,88,0.2,0,0 +2004,8,8,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,28,79,98680,0,0,442,0,0,0,0,0,0,0,60,1.5,3,3,5000,77777,0,919999999,153,0,0,88,0.2,0,0 +2004,8,8,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26,75,98672,0,0,434,0,0,0,0,0,0,0,100,2.6,3,3,5000,77777,0,919999999,125,0,0,88,0.2,0,0 +2004,8,8,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26,75,98672,0,0,434,0,0,0,0,0,0,0,60,4.1,3,3,5000,77777,0,919999999,125,0,0,88,0.2,0,0 +2004,8,9,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,0,0,428,0,0,0,0,0,0,0,60,3.1,3,3,5000,77777,0,919999999,125,0,0,88,0.2,0,0 +2004,8,9,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,25,75,98663,0,0,427,0,0,0,0,0,0,0,50,2.6,3,3,4500,77777,0,919999999,113,0,0,88,0.2,0,0 +2004,8,9,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,0,0,422,0,0,0,0,0,0,0,70,3.1,3,3,3500,77777,0,919999999,125,0,0,88,0.2,0,0 +2004,8,9,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,0,0,422,0,0,0,0,0,0,0,50,3.1,3,3,4000,77777,0,919999999,125,0,0,88,0.2,0,0 +2004,8,9,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,27,89,98654,0,0,423,0,0,0,0,0,0,0,70,2.1,3,3,4000,77777,0,919999999,139,0,0,88,0.2,0,0 +2004,8,9,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,0,0,417,0,0,0,0,0,0,0,70,3.1,3,3,4000,77777,9,999999999,126,0,0,88,0.2,0,0 +2004,8,9,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,192,880,417,55,37,50,5968,0,5412,1654,50,2.6,3,3,4000,77777,9,999999999,126,0,0,88,0.2,0,0 +2004,8,9,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,27,89,98654,482,1329,456,129,13,125,14314,525,13838,4773,50,2.1,9,9,3500,3000,9,999999999,139,0,0,88,0.2,0,0 +2004,8,9,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,751,1329,460,249,17,239,27695,1073,26768,9626,60,5.1,9,9,3000,3000,9,999999999,125,0,0,88,0.2,0,0 +2004,8,9,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26,75,98672,981,1329,466,358,27,338,40205,1861,38223,14215,70,4.1,9,9,3500,3000,9,999999999,125,0,0,88,0.2,0,0 +2004,8,9,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,25,79,98654,1156,1329,453,442,65,386,50601,4564,44478,16680,100,5.1,9,9,3500,1200,9,999999999,114,0,0,88,0.2,0,0 +2004,8,9,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,26,71,98680,1265,1329,472,494,65,432,56781,4548,50041,18520,130,5.1,9,9,4000,1200,9,999999999,125,0,0,88,0.2,0,0 +2004,8,9,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,26,71,98680,1300,1329,472,511,85,427,59036,5840,49777,18561,100,4.1,9,9,4500,1200,9,999999999,125,0,0,88,0.2,0,0 +2004,8,9,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,26,67,98689,1258,1329,452,884,546,367,102889,35114,43057,16562,130,2.1,5,5,4500,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,9,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,25,56,98705,1143,1329,463,786,616,256,92696,35738,30429,12331,130,3.1,5,5,5000,77777,9,999999999,112,0,0,88,0.2,0,0 +2004,8,9,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,25,60,98697,962,1329,457,630,598,197,73814,32660,23174,9464,100,4.1,5,5,5000,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,9,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,25,63,98689,728,1329,451,431,484,166,49200,25597,19046,7281,50,5.1,5,5,5000,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,9,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,26,71,98680,456,1329,446,215,248,130,23558,10266,14279,4760,30,4.6,5,5,5000,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,9,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,25,70,98672,166,1329,439,40,2,40,4400,0,4381,1345,40,4.1,5,5,4500,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,9,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26,75,98672,0,761,440,0,0,0,0,0,0,0,50,2.6,5,5,3000,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,9,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,25,70,98672,0,0,439,0,0,0,0,0,0,0,40,3.1,5,5,3000,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,9,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,25,75,98663,0,0,433,0,0,0,0,0,0,0,50,3.6,5,5,3000,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,9,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,0,0,429,0,0,0,0,0,0,0,50,2.6,5,5,3000,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,9,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,26,84,98654,0,0,429,0,0,0,0,0,0,0,184,0,5,5,3000,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,10,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,0,0,429,0,0,0,0,0,0,0,100,1,5,5,3000,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,10,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,0,0,454,0,0,0,0,0,0,0,50,4.1,9,9,3000,1200,9,999999999,125,0,0,88,0.2,0,0 +2004,8,10,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,0,0,422,0,0,0,0,0,0,0,50,2.1,3,3,3000,1200,9,999999999,125,0,0,88,0.2,0,0 +2004,8,10,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,28.7,25.7,84,98651,0,0,442,0,0,0,0,0,0,0,211,2.3,8,8,3333,1200,9,999999999,122,0,0,88,0.2,0,0 +2004,8,10,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,28.3,25.3,84,98648,0,0,440,0,0,0,0,0,0,0,228,2.4,8,8,3666,1200,9,999999999,117,0,0,88,0.2,0,0 +2004,8,10,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,25,84,98646,0,0,447,0,0,0,0,0,0,0,40,2.6,9,9,4000,1200,9,999999999,114,0,0,88,0.2,0,0 +2004,8,10,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,25,84,98646,190,868,460,17,0,17,1644,0,1657,694,50,5.1,10,10,3000,900,9,999999999,114,0,0,88,0.2,0,0 +2004,8,10,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,25,84,98646,480,1330,460,79,0,79,7733,0,7799,3342,60,5.7,10,10,3000,900,9,999999999,114,0,0,88,0.2,0,0 +2004,8,10,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,25,89,98637,749,1330,453,152,0,152,15264,0,15407,6881,70,4.1,10,10,3000,900,9,999999999,114,0,0,88,0.2,0,0 +2004,8,10,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,24,84,98637,980,1330,452,218,5,215,25532,265,25277,10242,120,1,10,10,3000,600,0,919999999,103,0,0,88,0.2,0,0 +2004,8,10,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,25,84,98646,1155,1330,460,269,9,262,31779,524,31045,12553,87,0,10,10,3000,600,0,919999999,114,0,0,88,0.2,0,0 +2004,8,10,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,25,84,98646,1264,1330,447,494,55,442,56786,3964,51210,18795,70,1.5,9,9,3500,600,0,919999999,114,0,0,88,0.2,0,0 +2004,8,10,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,1299,1330,454,510,54,457,58644,3866,52951,19379,60,1.5,9,9,3500,900,0,919999999,125,0,0,88,0.2,0,0 +2004,8,10,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,27,89,98654,1257,1330,468,298,14,285,35332,795,33929,13656,50,1,10,10,3500,900,0,919999999,139,0,0,88,0.2,0,0 +2004,8,10,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,26,79,98663,1141,1330,460,434,58,385,49522,3975,44211,16578,94,0,9,9,3500,1200,0,919999999,125,0,0,88,0.2,0,0 +2004,8,10,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,27,79,98672,960,1330,468,347,43,316,39032,2784,35799,13454,152,0,9,9,3500,1200,0,919999999,138,0,0,88,0.2,0,0 +2004,8,10,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,27,79,98672,725,1330,442,427,394,212,47638,22278,23795,8691,261,0,5,5,4000,77777,0,919999999,138,0,0,88,0.2,0,0 +2004,8,10,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26,75,98672,453,1330,440,212,255,125,23349,10271,13854,4641,230,2.1,5,5,4000,77777,0,919999999,125,0,0,88,0.2,0,0 +2004,8,10,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26,75,98672,162,1330,440,39,0,39,3689,0,3718,1305,140,1.5,5,5,3500,77777,0,919999999,125,0,0,88,0.2,0,0 +2004,8,10,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,26,75,98672,0,743,466,0,0,0,0,0,0,0,132,0,9,9,3500,1200,0,919999999,125,0,0,88,0.2,0,0 +2004,8,10,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,27,84,98663,0,0,436,0,0,0,0,0,0,0,128,0,5,5,3500,77777,0,919999999,138,0,0,88,0.2,0,0 +2004,8,10,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,27,84,98663,0,0,436,0,0,0,0,0,0,0,218,0,5,5,3500,77777,0,919999999,138,0,0,88,0.2,0,0 +2004,8,10,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,26,84,98654,0,0,429,0,0,0,0,0,0,0,23,0,5,5,3500,77777,0,919999999,125,0,0,88,0.2,0,0 +2004,8,10,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,26,84,98654,0,0,429,0,0,0,0,0,0,0,117,0,5,5,3500,77777,0,919999999,125,0,0,88,0.2,0,0 +2004,8,11,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,0,0,423,0,0,0,0,0,0,0,240,1.5,5,5,3500,77777,0,919999999,126,0,0,88,0.2,0,0 +2004,8,11,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,0,0,423,0,0,0,0,0,0,0,230,1.5,5,5,3500,77777,0,19999999,126,0,0,88,0.2,0,0 +2004,8,11,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,27,25,89,98637,0,0,441,0,0,0,0,0,0,0,285,2.5,9,9,3500,77777,9,999999999,114,0,0,88,0.2,0,0 +2004,8,11,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,24,89,98628,0,0,446,0,0,0,0,0,0,0,240,3.6,10,10,3500,750,0,19999999,103,0,0,88,0.2,0,0 +2004,8,11,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,25,94,98628,0,0,447,0,0,0,0,0,0,0,260,2.1,10,10,3500,600,0,19999999,114,0,0,88,0.2,0,0 +2004,8,11,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,25,94,98628,0,0,447,0,0,0,0,0,0,0,260,2.1,10,10,3500,600,0,919999999,114,0,0,88,0.2,0,0 +2004,8,11,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,25,94,98628,188,856,435,28,0,28,2645,0,2665,1049,320,2.1,9,9,3500,900,0,919999999,114,0,0,88,0.2,0,0 +2004,8,11,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,25,89,98637,478,1330,441,128,12,124,14239,511,13821,4740,360,2.1,9,9,3500,1200,0,919999999,114,0,0,88,0.2,0,0 +2004,8,11,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,25,84,98646,748,1330,447,248,17,238,27636,1108,26706,9576,10,2.6,9,9,2500,1200,0,919999999,114,0,0,88,0.2,0,0 +2004,8,11,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,25,79,98654,979,1330,453,357,27,337,40205,1922,38210,14177,360,3.6,9,9,2500,900,0,919999999,114,0,0,88,0.2,0,0 +2004,8,11,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,25,79,98654,1154,1330,453,441,65,385,50488,4567,44375,16644,30,4.1,9,9,3000,900,0,919999999,114,0,0,88,0.2,0,0 +2004,8,11,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,25,75,98663,1263,1330,459,494,66,432,56843,4698,50056,18495,360,5.1,9,9,3000,900,0,919999999,113,0,0,88,0.2,0,0 +2004,8,11,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,24,70,98663,1298,1330,457,511,66,447,59061,4869,52011,19097,20,5.1,9,9,4000,1200,0,919999999,103,0,0,88,0.2,0,0 +2004,8,11,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,24,66,98672,1256,1330,464,491,66,429,56575,4834,49774,18379,20,6.2,9,9,4000,1200,0,919999999,102,0,0,88,0.2,0,0 +2004,8,11,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,25,70,98672,1140,1330,465,434,65,379,49649,4544,43632,16399,30,4.6,9,9,4000,1050,0,919999999,113,0,0,88,0.2,0,0 +2004,8,11,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26,75,98672,958,1330,466,347,30,325,38958,2045,36774,13679,40,4.6,9,9,4500,3000,0,919999999,125,0,0,88,0.2,0,0 +2004,8,11,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,25,70,98672,723,1330,465,237,17,228,26314,1037,25459,9087,30,6.2,9,9,4000,1200,0,919999999,113,0,0,88,0.2,0,0 +2004,8,11,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26,75,98672,450,1330,466,117,6,115,12910,232,12733,4344,30,4.1,9,9,4000,900,0,919999999,125,0,0,88,0.2,0,0 +2004,8,11,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,158,1330,460,21,0,21,1970,0,1985,790,60,4.1,9,9,4000,1200,0,919999999,125,0,0,88,0.2,0,0 +2004,8,11,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,25,79,98654,0,725,428,0,0,0,0,0,0,0,90,3.1,5,5,4000,3000,0,919999999,114,0,0,88,0.2,0,0 +2004,8,11,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,25,79,98654,0,0,428,0,0,0,0,0,0,0,50,3.6,5,5,3500,77777,0,919999999,114,0,0,88,0.2,0,0 +2004,8,11,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,25,84,98646,0,0,422,0,0,0,0,0,0,0,50,1.5,5,5,3500,77777,0,919999999,114,0,0,88,0.2,0,0 +2004,8,11,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,25,84,98646,0,0,422,0,0,0,0,0,0,0,60,1,5,5,3500,77777,0,919999999,114,0,0,88,0.2,0,0 +2004,8,11,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,25,84,98646,0,0,422,0,0,0,0,0,0,0,35,0,5,5,3500,77777,0,919999999,114,0,0,88,0.2,0,0 +2004,8,12,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,23,74,98646,0,0,419,0,0,0,0,0,0,0,50,5.1,5,5,3500,77777,0,919999999,93,0,0,88,0.2,0,0 +2004,8,12,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,28,24.5,81,98646,0,0,437,0,0,0,0,0,0,0,38,3,8,8,3250,77777,9,999999999,108,0,0,88,0.2,0,0 +2004,8,12,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,0,0,423,0,0,0,0,0,0,0,40,1,5,5,3000,77777,0,919999999,126,0,0,88,0.2,0,0 +2004,8,12,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,26,89,98646,0,0,423,0,0,0,0,0,0,0,56,0,5,5,3000,77777,0,919999999,126,0,0,88,0.2,0,0 +2004,8,12,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,26,89,98646,0,0,423,0,0,0,0,0,0,0,25,0,5,5,3000,77777,0,919999999,126,0,0,88,0.2,0,0 +2004,8,12,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,26,89,98646,0,0,448,0,0,0,0,0,0,0,302,0,9,9,3000,3000,9,999999999,126,0,0,88,0.2,0,0 +2004,8,12,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,26,94,98637,185,844,455,16,0,16,1574,0,1586,666,50,2.6,10,10,3000,600,9,999999999,126,0,0,88,0.2,0,0 +2004,8,12,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,27,26,94,98637,476,1330,455,96,0,96,9374,0,9455,3897,298,2,10,10,3000,600,9,999999999,126,0,0,88,0.2,0,0 +2004,8,12,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,26,94,98637,747,1330,455,151,0,151,15129,0,15272,6830,60,1.5,10,10,3000,600,0,919999999,126,0,0,88,0.2,0,0 +2004,8,12,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,27,100,98637,978,1330,456,217,31,194,25402,1546,22886,9421,250,1.7,10,10,3000,600,0,919999999,139,0,0,88,0.2,0,0 +2004,8,12,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,29,27,89,98654,1153,1330,456,464,82,393,52814,5568,45022,16849,199,1.9,9,9,2750,600,9,999999999,139,0,0,88,0.2,0,0 +2004,8,12,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,27,79,98672,1262,1330,468,492,85,411,56618,5608,47732,17917,50,2.1,9,9,2500,900,0,919999999,138,0,0,88,0.2,0,0 +2004,8,12,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,26,71,98680,1297,1330,446,918,543,388,106843,35439,45538,17368,40,3.1,5,5,2800,1200,0,919999999,125,0,0,88,0.2,0,0 +2004,8,12,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,26,67,98689,1254,1330,452,881,640,278,104685,36007,33204,13385,50,2.1,5,5,3000,77777,0,919999999,125,0,0,88,0.2,0,0 +2004,8,12,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,25,60,98697,1138,1330,457,782,617,254,92171,35719,30144,12227,30,3.6,5,5,3000,77777,0,919999999,113,0,0,88,0.2,0,0 +2004,8,12,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,24,70,98663,956,1330,432,625,601,194,73397,33630,22865,9323,130,5.1,5,5,3500,77777,0,919999999,103,0,0,88,0.2,0,0 +2004,8,12,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,27,79,98672,720,1330,442,423,393,210,47137,22114,23595,8603,100,0,5,5,3500,77777,0,919999999,138,0,0,88,0.2,0,0 +2004,8,12,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,26,71,98680,447,1330,472,115,10,112,12775,363,12459,4258,20,2.1,9,9,3500,1200,0,919999999,125,0,0,88,0.2,0,0 +2004,8,12,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26,75,98672,155,1330,466,20,0,20,1888,0,1903,758,20,2.6,9,9,3500,1200,0,919999999,125,0,0,88,0.2,0,0 +2004,8,12,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,25,75,98663,0,707,459,0,0,0,0,0,0,0,30,2.1,9,9,3500,1200,0,919999999,113,0,0,88,0.2,0,0 +2004,8,12,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,25,75,98663,0,0,433,0,0,0,0,0,0,0,350,2.1,5,5,3500,77777,0,919999999,113,0,0,88,0.2,0,0 +2004,8,12,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,0,0,429,0,0,0,0,0,0,0,70,3.1,5,5,3500,77777,0,919999999,125,0,0,88,0.2,0,0 +2004,8,12,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,0,0,429,0,0,0,0,0,0,0,30,2.1,5,5,3500,77777,0,919999999,125,0,0,88,0.2,0,0 +2004,8,12,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,0,0,429,0,0,0,0,0,0,0,40,3.1,5,5,3500,77777,0,919999999,125,0,0,88,0.2,0,0 +2004,8,13,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,0,0,429,0,0,0,0,0,0,0,60,3.1,5,5,3000,77777,0,919999999,125,0,0,88,0.2,0,0 +2004,8,13,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,0,0,429,0,0,0,0,0,0,0,70,3.1,5,5,3500,77777,0,919999999,125,0,0,88,0.2,0,0 +2004,8,13,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,0,0,423,0,0,0,0,0,0,0,60,3.1,5,5,4000,77777,0,919999999,126,0,0,88,0.2,0,0 +2004,8,13,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,28,25.5,86,98646,0,0,438,0,0,0,0,0,0,0,234,2.6,8,8,4000,77777,9,999999999,120,0,0,88,0.2,0,0 +2004,8,13,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,25,84,98646,0,0,422,0,0,0,0,0,0,0,70,2.1,5,5,4000,77777,0,919999999,114,0,0,88,0.2,0,0 +2004,8,13,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,25,84,98646,0,0,422,0,0,0,0,0,0,0,60,3.1,5,5,4000,77777,9,999999999,114,0,0,88,0.2,0,0 +2004,8,13,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,25,84,98646,183,832,422,48,30,44,5234,0,4801,1486,40,3.1,5,5,4000,77777,9,999999999,114,0,0,88,0.2,0,0 +2004,8,13,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,475,1331,429,228,277,130,25183,11620,14371,4868,50,2.1,5,5,4000,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,13,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,745,1331,435,445,492,169,50768,25370,19439,7479,60,3.6,5,5,4000,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,13,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,27,75,98680,976,1331,447,640,523,256,73361,30179,29555,11699,70,4.1,5,5,4000,77777,9,999999999,138,0,0,88,0.2,0,0 +2004,8,13,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,27,75,98680,1153,1331,474,439,57,389,49989,3866,44655,16748,70,3.1,9,9,4000,3000,9,999999999,138,0,0,88,0.2,0,0 +2004,8,13,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,26,67,98689,1261,1331,479,492,85,411,56753,5815,47791,17908,60,3.1,9,9,4000,3000,9,999999999,125,0,0,88,0.2,0,0 +2004,8,13,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,26,67,98689,1296,1331,452,917,544,387,106735,35460,45429,17333,60,4.1,5,5,4500,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,13,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,26,71,98680,1253,1331,446,880,548,365,102321,35142,42699,16442,150,4.6,5,5,3500,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,13,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26,75,98672,1136,1331,466,432,87,357,49497,5809,41247,15748,110,1,9,9,3500,1200,9,999999999,125,0,0,88,0.2,0,0 +2004,8,13,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,25,70,98672,954,1331,465,345,30,324,38835,2109,36644,13594,50,4.1,9,9,3500,1200,9,999999999,113,0,0,88,0.2,0,0 +2004,8,13,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,717,1331,460,234,16,225,25947,986,25117,8970,50,2.1,9,9,3500,1200,9,999999999,125,0,0,88,0.2,0,0 +2004,8,13,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,25,75,98663,443,1331,459,114,5,112,12660,203,12518,4254,50,2.6,9,9,3500,1200,9,999999999,113,0,0,88,0.2,0,0 +2004,8,13,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,151,1331,460,19,0,19,1810,0,1824,727,40,1,9,9,3500,1200,9,999999999,125,0,0,88,0.2,0,0 +2004,8,13,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,0,688,454,0,0,0,0,0,0,0,60,2.1,9,9,3500,1200,9,999999999,125,0,0,88,0.2,0,0 +2004,8,13,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,0,0,454,0,0,0,0,0,0,0,60,2.1,9,9,3500,1200,9,999999999,125,0,0,88,0.2,0,0 +2004,8,13,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,25,79,98654,0,0,428,0,0,0,0,0,0,0,70,1.5,5,5,3000,77777,9,999999999,114,0,0,88,0.2,0,0 +2004,8,13,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,25,79,98654,0,0,428,0,0,0,0,0,0,0,65,0,5,5,3000,1200,9,999999999,114,0,0,88,0.2,0,0 +2004,8,13,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,25,84,98646,0,0,422,0,0,0,0,0,0,0,40,1.5,5,5,3500,77777,9,999999999,114,0,0,88,0.2,0,0 +2004,8,14,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,24,79,98646,0,0,421,0,0,0,0,0,0,0,40,2.1,5,5,3500,77777,9,999999999,103,0,0,88,0.2,0,0 +2004,8,14,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,25,84,98646,0,0,422,0,0,0,0,0,0,0,20,2.1,5,5,4000,77777,9,999999999,114,0,0,88,0.2,0,0 +2004,8,14,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,24,79,98646,0,0,421,0,0,0,0,0,0,0,10,1.5,5,5,4000,77777,9,999999999,103,0,0,88,0.2,0,0 +2004,8,14,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,0,0,423,0,0,0,0,0,0,0,50,1.5,5,5,4000,77777,9,999999999,126,0,0,88,0.2,0,0 +2004,8,14,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,26,94,98637,0,0,418,0,0,0,0,0,0,0,40,1.5,5,5,4000,77777,9,999999999,126,0,0,88,0.2,0,0 +2004,8,14,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,26,94,98637,0,0,418,0,0,0,0,0,0,0,50,1,5,5,4000,77777,9,999999999,126,0,0,88,0.2,0,0 +2004,8,14,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,181,821,423,47,26,43,5105,0,4739,1467,40,2.6,5,5,4000,77777,9,999999999,126,0,0,88,0.2,0,0 +2004,8,14,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,473,1331,429,227,275,129,25023,11511,14318,4845,60,2.6,5,5,4000,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,14,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,25,70,98672,744,1331,439,444,494,168,50803,26277,19351,7434,60,2.6,5,5,4500,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,14,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,32,26,71,98680,975,1331,446,640,526,255,73501,31261,29461,11647,22,0,5,5,4500,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,14,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,25,63,98689,1152,1331,477,440,58,390,50253,4136,44828,16750,160,2.1,9,9,4500,1200,9,999999999,113,0,0,88,0.2,0,0 +2004,8,14,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,25,63,98689,1260,1331,477,492,66,430,56663,4707,49888,18437,110,2.1,9,9,4500,1200,9,999999999,113,0,0,88,0.2,0,0 +2004,8,14,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,26,71,98680,1295,1331,472,508,54,455,58377,3876,52698,19292,40,4.1,9,9,4000,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,14,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,31,26.5,77,98672,1252,1331,450,759,325,454,86706,23234,52222,19019,69,2,7,7,4000,77777,9,999999999,131,0,0,88,0.2,0,0 +2004,8,14,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,27,84,98663,1135,1331,462,430,57,382,48947,3838,43722,16439,44,0,9,9,4000,750,9,999999999,138,0,0,88,0.2,0,0 +2004,8,14,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,27,79,98672,951,1331,468,343,30,322,38447,1964,36309,13519,303,0,9,9,4000,900,9,999999999,138,0,0,88,0.2,0,0 +2004,8,14,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,33,26,67,98689,714,1331,479,232,16,224,25795,978,24975,8913,183,0,9,9,4000,1200,9,999999999,125,0,0,88,0.2,0,0 +2004,8,14,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,24,59,98689,440,1331,476,113,5,111,12542,192,12417,4209,20,2.6,9,9,5000,1200,9,999999999,102,0,0,88,0.2,0,0 +2004,8,14,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,27,79,98672,147,1331,468,18,0,18,1722,0,1735,694,162,0,9,9,2500,1200,9,999999999,138,0,0,88,0.2,0,0 +2004,8,14,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,27,79,98672,0,669,468,0,0,0,0,0,0,0,328,0,9,9,2500,1200,9,999999999,138,0,0,88,0.2,0,0 +2004,8,14,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,27,79,98672,0,0,468,0,0,0,0,0,0,0,244,0,9,9,2500,1200,9,999999999,138,0,0,88,0.2,0,0 +2004,8,14,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,27,79,98672,0,0,468,0,0,0,0,0,0,0,205,0,9,9,2500,3000,9,999999999,138,0,0,88,0.2,0,0 +2004,8,14,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,30.4,27,82,98666,0,0,454,0,0,0,0,0,0,0,239,0,8,8,2600,3000,9,999999999,138,0,0,88,0.2,0,0 +2004,8,14,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,29.8,27,85,98661,0,0,451,0,0,0,0,0,0,0,55,0,8,8,2700,3000,9,999999999,138,0,0,88,0.2,0,0 +2004,8,15,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,29.2,27,88,98656,0,0,457,0,0,0,0,0,0,0,119,0,9,9,2800,3000,9,999999999,139,0,0,88,0.2,0,0 +2004,8,15,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,28.6,27,91,98651,0,0,453,0,0,0,0,0,0,0,174,0,9,9,2900,3000,9,999999999,139,0,0,88,0.2,0,0 +2004,8,15,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,27,94,98646,0,0,450,0,0,0,0,0,0,0,182,0,9,9,3000,1200,9,999999999,139,0,0,88,0.2,0,0 +2004,8,15,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,27,94,98646,0,0,450,0,0,0,0,0,0,0,161,0,9,9,3000,1200,9,999999999,139,0,0,88,0.2,0,0 +2004,8,15,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,26,89,98646,0,0,423,0,0,0,0,0,0,0,14,0,5,5,3500,77777,9,999999999,126,0,0,88,0.2,0,0 +2004,8,15,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,26,89,98646,0,0,448,0,0,0,0,0,0,0,240,0,9,9,3500,77777,9,999999999,126,0,0,88,0.2,0,0 +2004,8,15,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,27,89,98654,178,809,456,25,0,25,2417,0,2436,965,205,0,9,9,3500,3000,9,999999999,139,0,0,88,0.2,0,0 +2004,8,15,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,26,79,98663,471,1332,435,226,248,138,24745,10890,15210,5050,183,0,5,5,3500,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,15,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,27,79,98672,742,1332,442,441,488,169,50304,24294,19403,7465,50,2.1,5,5,3500,77777,9,999999999,138,0,0,88,0.2,0,0 +2004,8,15,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,26,71,98680,974,1332,446,639,600,200,74786,31864,23595,9653,50,1.5,5,5,3500,3000,9,999999999,125,0,0,88,0.2,0,0 +2004,8,15,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,25,70,98672,1150,1332,439,792,618,259,93432,35934,30716,12434,50,4.1,5,5,4000,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,15,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,26,67,98689,1259,1332,452,885,642,279,105199,36116,33369,13444,70,2.1,5,5,5000,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,15,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,26,67,98689,1293,1332,452,915,638,296,108705,36460,35369,14153,120,3.6,5,5,5000,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,15,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,25,60,98697,1250,1332,457,879,552,361,102386,36271,42345,16310,140,2.6,5,5,5000,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,15,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,25,56,98705,1133,1332,490,431,88,356,49441,6009,41146,15689,140,3.1,9,9,5000,3000,9,999999999,112,0,0,88,0.2,0,0 +2004,8,15,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,26,67,98689,949,1332,479,342,30,321,38449,2035,36295,13480,20,4.1,9,9,4000,3000,9,999999999,125,0,0,88,0.2,0,0 +2004,8,15,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,25,70,98672,711,1332,465,231,16,223,25729,1009,24906,8864,360,3.6,9,9,3000,3000,9,999999999,113,0,0,88,0.2,0,0 +2004,8,15,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,25,70,98672,437,1332,465,111,4,110,12354,153,12259,4158,10,3.1,9,9,3000,3000,9,999999999,113,0,0,88,0.2,0,0 +2004,8,15,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26,75,98672,143,1332,466,17,0,17,1647,0,1659,663,10,2.6,9,9,3200,3000,9,999999999,125,0,0,88,0.2,0,0 +2004,8,15,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26,75,98672,0,650,466,0,0,0,0,0,0,0,40,1.5,9,9,3200,3000,9,999999999,125,0,0,88,0.2,0,0 +2004,8,15,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,27,79,98672,0,0,468,0,0,0,0,0,0,0,33,0,9,9,3200,3000,9,999999999,138,0,0,88,0.2,0,0 +2004,8,15,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,0,0,460,0,0,0,0,0,0,0,60,2.1,9,9,3200,3000,9,999999999,125,0,0,88,0.2,0,0 +2004,8,15,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,0,0,460,0,0,0,0,0,0,0,50,1,9,9,3000,3000,9,999999999,125,0,0,88,0.2,0,0 +2004,8,15,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,0,0,454,0,0,0,0,0,0,0,50,1,9,9,2800,3000,9,999999999,125,0,0,88,0.2,0,0 +2004,8,16,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,0,0,429,0,0,0,0,0,0,0,40,1,5,5,2800,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,16,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,0,0,429,0,0,0,0,0,0,0,70,1.5,5,5,2800,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,16,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,26,84,98654,0,0,429,0,0,0,0,0,0,0,16,0,5,5,2800,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,16,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,27,89,98654,0,0,430,0,0,0,0,0,0,0,70,1,5,5,2800,77777,9,999999999,139,0,0,88,0.2,0,0 +2004,8,16,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,27,89,98654,0,0,430,0,0,0,0,0,0,0,145,0,5,5,3000,77777,9,999999999,139,0,0,88,0.2,0,0 +2004,8,16,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,27,89,98654,0,0,430,0,0,0,0,0,0,0,194,0,5,5,3000,77777,9,999999999,139,0,0,88,0.2,0,0 +2004,8,16,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,176,797,429,45,19,42,4890,0,4624,1428,60,2.1,5,5,3000,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,16,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26,75,98672,469,1332,440,225,273,128,24733,11328,14200,4797,70,1,5,5,3000,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,16,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,25,75,98663,741,1332,433,442,493,168,50521,26200,19267,7394,70,2.1,5,5,3500,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,16,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,26,67,98689,973,1332,452,638,600,200,74656,31853,23547,9631,60,2.1,5,5,3500,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,16,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,33,27,71,98689,1149,1332,453,789,611,262,92618,33506,30909,12533,352,0,5,5,3500,77777,9,999999999,138,0,0,88,0.2,0,0 +2004,8,16,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,34,26,63,98697,1258,1332,458,884,642,278,105077,36123,33301,13420,278,0,5,5,3500,77777,9,999999999,124,0,0,88,0.2,0,0 +2004,8,16,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,35,26,60,98705,1292,1332,464,914,639,295,108578,36470,35258,14115,167,0,5,5,3500,77777,9,999999999,124,0,0,88,0.2,0,0 +2004,8,16,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,25,60,98697,1249,1332,457,877,552,360,102208,36274,42246,16276,300,3.6,5,5,3500,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,16,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,35,26,60,98705,1131,1332,505,262,44,224,31080,2346,26802,11045,20,0,10,10,3500,1200,9,999999999,124,0,0,88,0.2,0,0 +2004,8,16,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,26,67,98689,946,1332,479,341,43,311,38395,2865,35200,13173,160,2.6,9,9,3500,1200,9,999999999,125,0,0,88,0.2,0,0 +2004,8,16,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,27,67,98697,708,1332,486,229,16,221,25402,924,24608,8787,240,1.5,9,9,3500,1200,9,999999999,138,0,0,88,0.2,0,0 +2004,8,16,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,26,63,98697,433,1332,485,110,3,109,12152,111,12091,4104,20,2.1,9,9,3500,1200,9,999999999,124,0,0,88,0.2,0,0 +2004,8,16,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,26,71,98680,139,1332,472,16,0,16,1563,0,1575,631,130,2.1,9,9,3500,1200,9,999999999,125,0,0,88,0.2,0,0 +2004,8,16,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,26,75,98672,0,630,466,0,0,0,0,0,0,0,194,0,9,9,3500,1200,9,999999999,125,0,0,88,0.2,0,0 +2004,8,16,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,32,27,75,98680,0,0,474,0,0,0,0,0,0,0,19,0,9,9,3500,1200,9,999999999,138,0,0,88,0.2,0,0 +2004,8,16,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,28,84,98672,0,0,469,0,0,0,0,0,0,0,324,0,9,9,4000,1200,9,999999999,153,0,0,88,0.2,0,0 +2004,8,16,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,27,79,98672,0,0,468,0,0,0,0,0,0,0,251,0,9,9,3500,1200,9,999999999,138,0,0,88,0.2,0,0 +2004,8,16,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,27,79,98672,0,0,442,0,0,0,0,0,0,0,156,0,5,5,3500,77777,9,999999999,138,0,0,88,0.2,0,0 +2004,8,17,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,28,84,98672,0,0,443,0,0,0,0,0,0,0,166,0,5,5,3500,77777,9,999999999,153,0,0,88,0.2,0,0 +2004,8,17,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,27,84,98663,0,0,429,0,0,0,0,0,0,0,70,1.5,3,3,3500,77777,9,999999999,138,0,0,88,0.2,0,0 +2004,8,17,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,27,84,98663,0,0,429,0,0,0,0,0,0,0,27,0,3,3,3500,77777,9,999999999,138,0,0,88,0.2,0,0 +2004,8,17,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,27,89,98654,0,0,423,0,0,0,0,0,0,0,60,1.5,3,3,3500,77777,9,999999999,139,0,0,88,0.2,0,0 +2004,8,17,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,27,89,98654,0,0,423,0,0,0,0,0,0,0,60,2.6,3,3,3500,77777,9,999999999,139,0,0,88,0.2,0,0 +2004,8,17,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,27,89,98654,0,0,430,0,0,0,0,0,0,0,155,0,5,5,3500,77777,9,999999999,139,0,0,88,0.2,0,0 +2004,8,17,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,27,89,98654,174,786,430,44,15,42,4766,0,4561,1409,60,2.6,5,5,3500,77777,9,999999999,139,0,0,88,0.2,0,0 +2004,8,17,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,467,1333,435,223,272,128,24572,11217,14149,4775,50,4.1,5,5,3500,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,17,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26,75,98672,740,1333,440,440,490,168,50184,25201,19289,7404,60,5.7,5,5,3500,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,17,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,26,71,98680,972,1333,446,637,526,253,73128,31242,29281,11571,60,4.1,5,5,3500,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,17,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,26,67,98689,1148,1333,479,438,58,388,49896,4008,44536,16677,60,5.1,9,9,3500,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,17,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,26,67,98689,1257,1333,479,490,65,428,56274,4565,49576,18360,70,5.1,9,9,4000,900,9,999999999,125,0,0,88,0.2,0,0 +2004,8,17,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,26,63,98697,1291,1333,485,506,65,443,58249,4595,51352,18933,70,5.1,9,9,4000,900,9,999999999,124,0,0,88,0.2,0,0 +2004,8,17,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,27,67,98697,1247,1333,486,484,65,424,55493,4401,48914,18175,60,3.6,9,9,4000,900,9,999999999,138,0,0,88,0.2,0,0 +2004,8,17,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,25,63,98689,1129,1333,477,429,65,374,48973,4542,43028,16192,110,6.7,9,9,4000,900,9,999999999,113,0,0,88,0.2,0,0 +2004,8,17,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,25,70,98672,944,1333,465,340,30,319,38273,2094,36119,13379,20,7.7,9,9,4000,1200,9,999999999,113,0,0,88,0.2,0,0 +2004,8,17,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,25,70,98672,705,1333,465,229,43,206,25535,2555,23124,8359,40,3.6,9,9,3500,1200,9,999999999,113,0,0,88,0.2,0,0 +2004,8,17,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,27,79,98672,429,1333,468,108,2,107,11943,72,11917,4049,80,1,9,9,3500,1200,9,999999999,138,0,0,88,0.2,0,0 +2004,8,17,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,25,79,98654,134,1333,453,16,0,16,1483,0,1494,598,200,5.1,9,9,2800,1200,9,999999999,114,0,0,88,0.2,0,0 +2004,8,17,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,25,84,98646,0,610,447,0,0,0,0,0,0,0,160,3.1,9,9,2800,1200,0,19999999,114,0,0,88,0.2,0,0 +2004,8,17,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,26,100,98628,0,0,449,0,0,0,0,0,0,0,250,2.1,10,10,2500,600,0,19999999,126,0,0,88,0.2,0,0 +2004,8,17,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,26,94,98637,0,0,442,0,0,0,0,0,0,0,360,2.6,9,9,3000,1050,0,19999999,126,0,0,88,0.2,0,0 +2004,8,17,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,26,94,98637,0,0,442,0,0,0,0,0,0,0,50,2.6,9,9,3000,1200,0,19999999,126,0,0,88,0.2,0,0 +2004,8,17,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,0,0,448,0,0,0,0,0,0,0,120,2.1,9,9,3000,1200,0,19999999,126,0,0,88,0.2,0,0 +2004,8,18,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,27,94,98646,0,0,450,0,0,0,0,0,0,0,50,1,9,9,3000,1200,0,19999999,139,0,0,88,0.2,0,0 +2004,8,18,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,0,0,448,0,0,0,0,0,0,0,60,1.5,9,9,3000,1200,0,19999999,126,0,0,88,0.2,0,0 +2004,8,18,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,27,94,98646,0,0,450,0,0,0,0,0,0,0,238,0,9,9,3000,1200,0,19999999,139,0,0,88,0.2,0,0 +2004,8,18,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,27,94,98646,0,0,450,0,0,0,0,0,0,0,150,0,9,9,3000,1200,0,19999999,139,0,0,88,0.2,0,0 +2004,8,18,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,27,94,98646,0,0,424,0,0,0,0,0,0,0,40,1.5,5,5,3000,77777,0,19999999,139,0,0,88,0.2,0,0 +2004,8,18,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,27,94,98646,0,0,424,0,0,0,0,0,0,0,70,1.5,5,5,3000,77777,9,999999999,139,0,0,88,0.2,0,0 +2004,8,18,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,27,94,98646,172,774,450,24,0,24,2261,0,2278,903,40,1.5,9,9,3500,77777,9,999999999,139,0,0,88,0.2,0,0 +2004,8,18,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,27,89,98654,466,1333,456,123,11,119,13585,392,13239,4540,60,2.6,9,9,3500,3000,9,999999999,139,0,0,88,0.2,0,0 +2004,8,18,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,27,84,98663,738,1333,462,243,17,234,26937,1007,26054,9350,60,3.6,9,9,2500,1200,9,999999999,138,0,0,88,0.2,0,0 +2004,8,18,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,28,84,98672,971,1333,469,351,43,320,39462,2722,36196,13627,150,2.6,9,9,3000,3000,9,999999999,153,0,0,88,0.2,0,0 +2004,8,18,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,28,79,98680,1147,1333,489,266,9,258,31165,461,30468,12396,50,1,10,10,3000,1200,0,919999999,153,0,0,88,0.2,0,0 +2004,8,18,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,28,75,98689,1256,1333,482,488,84,408,56024,5416,47257,17784,160,2.1,9,9,4000,900,0,919999999,152,0,0,88,0.2,0,0 +2004,8,18,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,27,71,98689,1289,1333,494,308,13,295,36491,722,35224,14120,160,2.1,10,10,3500,900,0,919999999,138,0,0,88,0.2,0,0 +2004,8,18,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,1245,1333,473,295,7,289,34919,394,34384,13780,310,4.1,10,10,3000,600,0,919999999,125,0,0,88,0.2,0,0 +2004,8,18,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,25,79,98654,1126,1333,466,261,6,256,30691,370,30242,12250,340,3.6,10,10,3000,600,0,919999999,114,0,0,88,0.2,0,0 +2004,8,18,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,27,89,98654,941,1333,468,206,4,204,23935,183,23777,9635,20,1.5,10,10,3000,600,0,919999999,139,0,0,88,0.2,0,0 +2004,8,18,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,26,84,98654,702,1333,454,227,47,202,25314,2688,22674,8227,136,0,9,9,3000,600,0,919999999,125,0,0,88,0.2,0,0 +2004,8,18,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,425,1333,454,107,2,106,11823,60,11811,4001,50,1.5,9,9,3000,900,0,919999999,125,0,0,88,0.2,0,0 +2004,8,18,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,27,89,98654,130,1333,456,15,0,15,1394,0,1404,565,360,2.1,9,9,3000,900,0,919999999,139,0,0,88,0.2,0,0 +2004,8,18,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,0,589,454,0,0,0,0,0,0,0,360,1,9,9,3000,900,0,919999999,125,0,0,88,0.2,0,0 +2004,8,18,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,27,89,98654,0,0,456,0,0,0,0,0,0,0,340,2.1,9,9,3000,900,0,919999999,139,0,0,88,0.2,0,0 +2004,8,18,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,0,0,448,0,0,0,0,0,0,0,70,3.1,9,9,3000,900,0,919999999,126,0,0,88,0.2,0,0 +2004,8,18,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,27,94,98646,0,0,450,0,0,0,0,0,0,0,70,1.5,9,9,3000,900,0,919999999,139,0,0,88,0.2,0,0 +2004,8,18,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,27,94,98646,0,0,450,0,0,0,0,0,0,0,140,0,9,9,3000,900,0,919999999,139,0,0,88,0.2,0,0 +2004,8,19,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,27,94,98646,0,0,450,0,0,0,0,0,0,0,50,2.6,9,9,3000,900,0,919999999,139,0,0,88,0.2,0,0 +2004,8,19,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,27,94,98646,0,0,450,0,0,0,0,0,0,0,250,0,9,9,2800,900,0,919999999,139,0,0,88,0.2,0,0 +2004,8,19,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,27,94,98646,0,0,450,0,0,0,0,0,0,0,145,0,9,9,2400,3000,0,919999999,139,0,0,88,0.2,0,0 +2004,8,19,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,27,94,98646,0,0,450,0,0,0,0,0,0,0,240,1.5,9,9,2100,3000,0,919999999,139,0,0,88,0.2,0,0 +2004,8,19,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,26,94,98637,0,0,442,0,0,0,0,0,0,0,240,1.5,9,9,1500,3000,0,919999999,126,0,0,88,0.2,0,0 +2004,8,19,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,27,100,98637,0,0,456,0,0,0,0,0,0,0,260,1.5,10,10,1700,3000,9,999999999,139,0,0,88,0.2,0,0 +2004,8,19,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,26,94,98637,169,763,455,14,0,14,1353,0,1364,572,260,2.6,10,10,2000,600,9,999999999,126,0,0,88,0.2,0,0 +2004,8,19,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,27,94,98646,464,1334,462,75,0,75,7287,0,7350,3151,200,2.6,10,10,2000,600,9,999999999,139,0,0,88,0.2,0,0 +2004,8,19,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,27,94,98646,737,1334,462,148,0,148,14790,0,14930,6673,135,0,10,10,2500,900,9,999999999,139,0,0,88,0.2,0,0 +2004,8,19,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,22,62,98663,969,1334,455,354,87,291,40473,6104,33481,12776,270,2.1,9,9,3500,900,9,999999999,84,0,0,88,0.2,0,0 +2004,8,19,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,27,79,98672,1146,1334,442,786,566,300,91229,33224,35039,13906,250,1.5,5,5,3500,77777,9,999999999,138,0,0,88,0.2,0,0 +2004,8,19,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,27,75,98680,1255,1334,447,880,546,366,102072,34116,42821,16496,270,3.1,5,5,3500,77777,9,999999999,138,0,0,88,0.2,0,0 +2004,8,19,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,27,75,98680,1288,1334,474,504,85,422,58088,5667,48990,18322,250,1.5,9,9,3500,1200,9,999999999,138,0,0,88,0.2,0,0 +2004,8,19,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,30.5,27,82,98667,1243,1334,455,668,333,358,77586,20661,41841,16182,2,1.3,8,8,3250,1200,9,999999999,138,0,0,88,0.2,0,0 +2004,8,19,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,27,89,98654,1124,1334,456,425,57,377,48337,3836,43169,16250,30,1.2,9,9,3000,900,9,999999999,139,0,0,88,0.2,0,0 +2004,8,19,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,28,89,98663,938,1334,463,336,29,316,37599,1873,35526,13229,50,1,9,9,3000,900,9,999999999,153,0,0,88,0.2,0,0 +2004,8,19,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,27,84,98663,699,1334,462,225,42,203,25040,2319,22729,8231,40,1.5,9,9,3000,1200,9,999999999,138,0,0,88,0.2,0,0 +2004,8,19,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,421,1334,460,105,1,105,11661,38,11672,3949,60,2.1,9,9,3000,1200,9,999999999,125,0,0,88,0.2,0,0 +2004,8,19,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,125,1334,460,14,0,14,1317,0,1327,534,60,1,9,9,3000,1200,9,999999999,125,0,0,88,0.2,0,0 +2004,8,19,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,0,568,454,0,0,0,0,0,0,0,140,1.5,9,9,3000,1200,9,999999999,125,0,0,88,0.2,0,0 +2004,8,19,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,27,89,98654,0,0,456,0,0,0,0,0,0,0,160,2.1,9,9,2500,1200,9,999999999,139,0,0,88,0.2,0,0 +2004,8,19,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,0,0,454,0,0,0,0,0,0,0,160,2.1,9,9,3000,1200,9,999999999,125,0,0,88,0.2,0,0 +2004,8,19,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,0,0,454,0,0,0,0,0,0,0,170,2.6,9,9,3000,1200,9,999999999,125,0,0,88,0.2,0,0 +2004,8,19,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,27,89,98654,0,0,456,0,0,0,0,0,0,0,199,0,9,9,2500,3000,9,999999999,139,0,0,88,0.2,0,0 +2004,8,20,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,28.7,26.7,89,98651,0,0,453,0,0,0,0,0,0,0,18,0.3,9,9,2666,3000,9,999999999,135,0,0,88,0.2,0,0 +2004,8,20,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,28.3,26.3,89,98648,0,0,450,0,0,0,0,0,0,0,216,0.7,9,9,2833,3000,9,999999999,129,0,0,88,0.2,0,0 +2004,8,20,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,0,0,423,0,0,0,0,0,0,0,220,1,5,5,3000,77777,9,999999999,126,0,0,88,0.2,0,0 +2004,8,20,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,0,0,423,0,0,0,0,0,0,0,200,2.1,5,5,3000,77777,9,999999999,126,0,0,88,0.2,0,0 +2004,8,20,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,0,0,423,0,0,0,0,0,0,0,250,2.1,5,5,3000,77777,9,999999999,126,0,0,88,0.2,0,0 +2004,8,20,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,0,0,423,0,0,0,0,0,0,0,220,3.1,5,5,3000,77777,9,999999999,126,0,0,88,0.2,0,0 +2004,8,20,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,167,751,423,41,7,40,4480,0,4392,1351,240,3.1,5,5,3000,77777,9,999999999,126,0,0,88,0.2,0,0 +2004,8,20,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,25,79,98654,462,1334,428,220,272,126,24256,11512,13960,4694,250,5.1,5,5,3000,77777,9,999999999,114,0,0,88,0.2,0,0 +2004,8,20,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,25,79,98654,735,1334,428,437,493,166,49982,26070,19070,7304,260,5.1,5,5,3000,77777,9,999999999,114,0,0,88,0.2,0,0 +2004,8,20,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,25,70,98672,968,1334,439,635,604,197,74441,32975,23225,9487,250,5.1,5,5,3500,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,20,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,25,70,98672,1145,1334,439,787,620,256,92851,35965,30325,12292,250,7.7,5,5,3500,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,20,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,27,75,98680,1254,1334,447,878,639,278,104131,34847,33221,13406,240,3.1,5,5,3500,77777,9,999999999,138,0,0,88,0.2,0,0 +2004,8,20,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,26,67,98689,1287,1334,452,909,641,291,107980,36493,34821,13960,260,5.7,5,5,3500,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,20,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,26,67,98689,1242,1334,452,870,644,271,103297,36019,32445,13111,260,4.1,5,5,3500,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,20,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,26,63,98697,1122,1334,458,766,617,248,90153,34474,29297,11933,260,5.1,5,5,3500,77777,9,999999999,124,0,0,88,0.2,0,0 +2004,8,20,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,26,63,98697,936,1334,458,606,594,190,70797,31141,22276,9073,250,5.1,5,5,3500,77777,9,999999999,124,0,0,88,0.2,0,0 +2004,8,20,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,26,60,98705,695,1334,464,404,468,160,45860,23557,18243,6899,250,5.1,5,5,3500,77777,9,999999999,124,0,0,88,0.2,0,0 +2004,8,20,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,25,63,98689,417,1334,451,188,240,113,20653,8933,12442,4120,250,3.6,5,5,3500,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,20,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,26,71,98680,121,1334,446,23,0,23,2227,0,2244,823,320,1.5,5,5,3000,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,20,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,0,547,448,0,0,0,0,0,0,0,260,2.6,9,9,3000,3000,9,999999999,126,0,0,88,0.2,0,0 +2004,8,20,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,24,84,98637,0,0,452,0,0,0,0,0,0,0,250,2.1,10,10,3000,1200,0,919999999,103,0,0,88,0.2,0,0 +2004,8,20,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,24,79,98646,0,0,458,0,0,0,0,0,0,0,240,2.1,10,10,4000,1200,0,919999999,103,0,0,88,0.2,0,0 +2004,8,20,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,24,84,98637,0,0,452,0,0,0,0,0,0,0,193,0,10,10,4000,1200,0,919999999,103,0,0,88,0.2,0,0 +2004,8,20,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,23,79,98637,0,0,451,0,0,0,0,0,0,0,200,2.6,10,10,4000,1200,0,919999999,93,0,0,88,0.2,0,0 +2004,8,21,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,24,84,98637,0,0,452,0,0,0,0,0,0,0,103,0,10,10,4000,1200,0,919999999,103,0,0,88,0.2,0,0 +2004,8,21,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,24,84,98637,0,0,452,0,0,0,0,0,0,0,200,2.6,10,10,4000,1200,0,919999999,103,0,0,88,0.2,0,0 +2004,8,21,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,24,79,98646,0,0,421,0,0,0,0,0,0,0,210,2.6,5,5,4000,1200,0,919999999,103,0,0,88,0.2,0,0 +2004,8,21,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,25,89,98637,0,0,416,0,0,0,0,0,0,0,240,2.1,5,5,4000,77777,0,919999999,114,0,0,88,0.2,0,0 +2004,8,21,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,24,84,98637,0,0,415,0,0,0,0,0,0,0,220,2.1,5,5,4000,77777,0,919999999,103,0,0,88,0.2,0,0 +2004,8,21,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,24,84,98637,0,0,415,0,0,0,0,0,0,0,220,2.1,5,5,4000,77777,9,999999999,103,0,0,88,0.2,0,0 +2004,8,21,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,25,89,98637,165,740,416,40,5,40,4393,0,4341,1331,270,2.6,5,5,4000,77777,9,999999999,114,0,0,88,0.2,0,0 +2004,8,21,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,25,84,98646,460,1335,422,219,271,125,24122,11431,13896,4669,260,2.6,5,5,3500,77777,9,999999999,114,0,0,88,0.2,0,0 +2004,8,21,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,25,79,98654,734,1335,428,436,493,166,49854,26043,19013,7279,250,2.6,5,5,3500,77777,9,999999999,114,0,0,88,0.2,0,0 +2004,8,21,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,25,70,98672,967,1335,439,634,604,196,74322,32975,23157,9458,260,3.6,5,5,3500,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,21,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,26,71,98680,1144,1335,446,785,618,256,92393,34790,30366,12321,250,5.1,5,5,3500,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,21,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,26,71,98680,1252,1335,446,879,644,275,104415,36157,32916,13281,250,4.1,5,5,4000,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,21,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,27,71,98689,1285,1335,453,906,545,382,105182,34403,44671,17101,250,2.6,5,5,4000,77777,9,999999999,138,0,0,88,0.2,0,0 +2004,8,21,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,25,60,98697,1240,1335,484,482,86,402,55625,6018,46748,17530,260,5.1,9,9,4000,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,21,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,26,63,98697,1120,1335,485,424,64,370,48299,4400,42455,16021,260,2.1,9,9,3500,1200,9,999999999,124,0,0,88,0.2,0,0 +2004,8,21,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,26,63,98697,933,1335,485,335,30,314,37552,2016,35452,13130,250,5.7,9,9,4000,3000,9,999999999,124,0,0,88,0.2,0,0 +2004,8,21,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,26,60,98705,692,1335,491,222,46,198,24809,2628,22250,8048,250,4.1,9,9,4500,1200,9,999999999,124,0,0,88,0.2,0,0 +2004,8,21,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,25,60,98697,413,1335,457,185,238,111,20346,8711,12315,4071,330,3.1,5,5,4500,1200,9,999999999,113,0,0,88,0.2,0,0 +2004,8,21,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,25,60,98697,116,1335,457,22,0,22,2091,0,2107,775,300,2.6,5,5,4500,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,21,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,27,75,98680,0,525,447,0,0,0,0,0,0,0,250,2.6,5,5,3000,77777,9,999999999,138,0,0,88,0.2,0,0 +2004,8,21,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,24,74,98654,0,0,426,0,0,0,0,0,0,0,278,0,5,5,3000,77777,9,999999999,103,0,0,88,0.2,0,0 +2004,8,21,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,23,70,98654,0,0,425,0,0,0,0,0,0,0,246,0,5,5,3000,77777,9,999999999,93,0,0,88,0.2,0,0 +2004,8,21,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,23,70,98654,0,0,425,0,0,0,0,0,0,0,160,1.5,5,5,3000,77777,9,999999999,93,0,0,88,0.2,0,0 +2004,8,21,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,24,74,98654,0,0,426,0,0,0,0,0,0,0,120,1,5,5,3000,77777,9,999999999,103,0,0,88,0.2,0,0 +2004,8,22,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,23,70,98654,0,0,450,0,0,0,0,0,0,0,40,0,9,9,3000,77777,9,999999999,93,0,0,88,0.2,0,0 +2004,8,22,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,22,89,98610,0,0,432,0,0,0,0,0,0,0,60,3.1,10,10,2500,1200,0,19999999,85,0,0,88,0.2,0,0 +2004,8,22,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,23,89,98619,0,0,439,0,0,0,0,0,0,0,250,4.1,10,10,2000,600,0,19999999,94,0,0,88,0.2,0,0 +2004,8,22,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,24,94,98619,0,0,440,0,0,0,0,0,0,0,150,3.6,10,10,2500,600,0,19999999,103,0,0,88,0.2,0,0 +2004,8,22,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,23,84,98628,0,0,445,0,0,0,0,0,0,0,350,5.1,10,10,2500,600,0,19999999,93,0,0,88,0.2,0,0 +2004,8,22,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,24,89,98628,0,0,446,0,0,0,0,0,0,0,10,2.6,10,10,3000,600,0,919999999,103,0,0,88,0.2,0,0 +2004,8,22,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,24,89,98628,162,728,446,13,0,13,1273,0,1283,536,340,5.1,10,10,2000,600,0,919999999,103,0,0,88,0.2,0,0 +2004,8,22,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,24,94,98619,458,1336,440,74,0,74,7242,0,7303,3106,310,8.7,10,10,800,600,0,919999999,103,0,0,88,0.2,0,0 +2004,8,22,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,24,84,98637,732,1336,452,147,0,147,14828,0,14966,6638,310,2.6,10,10,3000,600,0,919999999,103,0,0,88,0.2,0,0 +2004,8,22,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,25,84,98646,966,1336,447,351,44,319,39586,3038,36243,13547,250,5.1,9,9,3000,600,0,919999999,114,0,0,88,0.2,0,0 +2004,8,22,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,23,70,98654,1143,1336,450,437,59,386,50007,4398,44532,16597,260,5.1,9,9,3000,1200,0,919999999,93,0,0,88,0.2,0,0 +2004,8,22,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,23,66,98663,1251,1336,469,298,15,285,35504,900,34100,13638,320,1,10,10,4000,1200,0,919999999,93,0,0,88,0.2,0,0 +2004,8,22,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,25,75,98663,1283,1336,459,503,86,420,58180,6071,48956,18253,340,1.5,9,9,3500,1200,0,919999999,113,0,0,88,0.2,0,0 +2004,8,22,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,26,75,98672,1238,1336,440,866,551,356,100674,35205,41653,16091,291,0,5,5,4000,77777,0,919999999,125,0,0,88,0.2,0,0 +2004,8,22,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,24,59,98689,1117,1336,449,765,625,242,90325,36760,28751,11707,315,2.1,5,5,4000,77777,0,919999999,102,0,0,88,0.2,0,0 +2004,8,22,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,23,56,98689,930,1336,441,641,732,132,77256,36819,15945,6648,310,3.1,3,3,4500,77777,0,919999999,92,0,0,88,0.2,0,0 +2004,8,22,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,24,59,98689,688,1336,442,424,533,149,48475,27696,17166,6513,310,3.1,3,3,4500,77777,0,919999999,102,0,0,88,0.2,0,0 +2004,8,22,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,24,59,98689,409,1336,449,182,227,113,20055,8744,12471,4084,320,3.1,5,5,4500,77777,0,919999999,102,0,0,88,0.2,0,0 +2004,8,22,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,25,67,98680,111,1336,445,21,0,21,2009,0,2024,743,360,1.5,5,5,4000,77777,0,919999999,113,0,0,88,0.2,0,0 +2004,8,22,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,25,70,98672,0,503,439,0,0,0,0,0,0,0,265,0,5,5,4000,77777,0,919999999,113,0,0,88,0.2,0,0 +2004,8,22,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,27,79,98672,0,0,442,0,0,0,0,0,0,0,20,1,5,5,4000,77777,0,919999999,138,0,0,88,0.2,0,0 +2004,8,22,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26,75,98672,0,0,440,0,0,0,0,0,0,0,50,1,5,5,4000,77777,0,919999999,125,0,0,88,0.2,0,0 +2004,8,22,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,0,0,435,0,0,0,0,0,0,0,30,1,5,5,4000,77777,0,919999999,125,0,0,88,0.2,0,0 +2004,8,22,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,27,84,98663,0,0,436,0,0,0,0,0,0,0,240,0,5,5,4000,77777,0,919999999,138,0,0,88,0.2,0,0 +2004,8,23,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,27,84,98663,0,0,436,0,0,0,0,0,0,0,265,0,5,5,3000,77777,0,919999999,138,0,0,88,0.2,0,0 +2004,8,23,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,25,79,98654,0,0,428,0,0,0,0,0,0,0,70,1,5,5,2500,77777,0,919999999,114,0,0,88,0.2,0,0 +2004,8,23,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,0,0,429,0,0,0,0,0,0,0,70,2.1,5,5,2800,77777,0,919999999,125,0,0,88,0.2,0,0 +2004,8,23,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,0,0,429,0,0,0,0,0,0,0,60,1,5,5,3000,77777,0,919999999,125,0,0,88,0.2,0,0 +2004,8,23,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,0,0,423,0,0,0,0,0,0,0,60,1,5,5,3000,77777,0,919999999,126,0,0,88,0.2,0,0 +2004,8,23,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,27,94,98646,0,0,450,0,0,0,0,0,0,0,70,1,9,9,3000,77777,9,999999999,139,0,0,88,0.2,0,0 +2004,8,23,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,27,94,98646,160,717,450,21,0,21,2023,0,2039,810,100,1,9,9,3000,3000,9,999999999,139,0,0,88,0.2,0,0 +2004,8,23,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,27,89,98654,456,1336,456,120,8,117,13214,288,12972,4428,50,2.1,9,9,3000,3000,9,999999999,139,0,0,88,0.2,0,0 +2004,8,23,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,731,1336,460,240,17,231,26675,1041,25795,9212,60,2.6,9,9,3000,3000,9,999999999,125,0,0,88,0.2,0,0 +2004,8,23,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,964,1336,460,350,27,330,39274,1860,37332,13833,60,4.1,9,9,3000,3000,9,999999999,125,0,0,88,0.2,0,0 +2004,8,23,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26,75,98672,1141,1336,466,434,88,359,49751,5873,41431,15800,70,3.1,9,9,3000,3000,9,999999999,125,0,0,88,0.2,0,0 +2004,8,23,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,25,75,98663,1250,1336,433,878,555,359,102267,36450,42156,16244,60,5.1,5,5,3500,3000,9,999999999,113,0,0,88,0.2,0,0 +2004,8,23,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,25,70,98672,1282,1336,439,906,553,376,105620,36715,44103,16885,50,6.2,5,5,4000,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,23,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,1236,1336,460,480,86,400,55195,5827,46428,17448,60,4.1,9,9,4500,1200,9,999999999,125,0,0,88,0.2,0,0 +2004,8,23,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26,75,98672,1115,1336,466,422,64,368,48006,4399,42193,15932,70,3.6,9,9,4500,1200,9,999999999,125,0,0,88,0.2,0,0 +2004,8,23,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26,75,98672,927,1336,466,332,43,302,37306,2833,34207,12757,30,2.6,9,9,4500,1200,9,999999999,125,0,0,88,0.2,0,0 +2004,8,23,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26,75,98672,684,1336,480,134,0,134,13342,0,13465,5950,50,3.6,10,10,4500,1200,0,19999999,125,0,0,88,0.2,0,0 +2004,8,23,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,26,94,98637,405,1336,455,61,0,61,5901,0,5950,2524,30,4.1,10,10,3000,600,0,19999999,126,0,0,88,0.2,0,0 +2004,8,23,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,26,94,98637,107,1336,455,7,0,7,650,0,654,275,30,2.1,10,10,3000,600,0,19999999,126,0,0,88,0.2,0,0 +2004,8,23,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,25,94,98628,0,481,435,0,0,0,0,0,0,0,40,3.6,9,9,3000,600,0,19999999,114,0,0,88,0.2,0,0 +2004,8,23,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,26,94,98637,0,0,442,0,0,0,0,0,0,0,30,2.1,9,9,3000,1200,0,19999999,126,0,0,88,0.2,0,0 +2004,8,23,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,26,94,98637,0,0,442,0,0,0,0,0,0,0,27,0,9,9,3000,1200,0,19999999,126,0,0,88,0.2,0,0 +2004,8,23,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,26,94,98637,0,0,442,0,0,0,0,0,0,0,40,2.1,9,9,3000,1200,0,19999999,126,0,0,88,0.2,0,0 +2004,8,23,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,26,94,98637,0,0,442,0,0,0,0,0,0,0,50,2.1,9,9,3500,1200,0,19999999,126,0,0,88,0.2,0,0 +2004,8,24,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,26,94,98637,0,0,442,0,0,0,0,0,0,0,63,0,9,9,3500,1200,0,19999999,126,0,0,88,0.2,0,0 +2004,8,24,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,26,94,98637,0,0,442,0,0,0,0,0,0,0,218,0,9,9,3500,1200,0,19999999,126,0,0,88,0.2,0,0 +2004,8,24,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,26,94,98637,0,0,442,0,0,0,0,0,0,0,40,1.5,9,9,3500,1200,0,19999999,126,0,0,88,0.2,0,0 +2004,8,24,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,26,94,98637,0,0,442,0,0,0,0,0,0,0,360,1.5,9,9,4000,1200,0,19999999,126,0,0,88,0.2,0,0 +2004,8,24,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,26,94,98637,0,0,442,0,0,0,0,0,0,0,20,1.5,9,9,4000,1200,0,19999999,126,0,0,88,0.2,0,0 +2004,8,24,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,26,94,98637,0,0,455,0,0,0,0,0,0,0,20,2.1,10,10,4000,1200,0,919999999,126,0,0,88,0.2,0,0 +2004,8,24,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,26,94,98637,158,706,455,13,0,13,1209,0,1218,511,360,2.1,10,10,3500,600,0,919999999,126,0,0,88,0.2,0,0 +2004,8,24,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,25,94,98628,455,1337,447,73,0,73,7138,0,7198,3064,360,1.5,10,10,3500,600,0,919999999,114,0,0,88,0.2,0,0 +2004,8,24,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,25,89,98637,729,1337,453,146,0,146,14698,0,14835,6587,30,2.1,10,10,3500,600,0,919999999,114,0,0,88,0.2,0,0 +2004,8,24,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,25,89,98637,963,1337,453,213,4,210,24863,237,24644,9969,360,2.6,10,10,3500,600,0,919999999,114,0,0,88,0.2,0,0 +2004,8,24,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,1140,1337,461,264,6,259,31079,367,30616,12404,10,3.1,10,10,3500,600,0,919999999,126,0,0,88,0.2,0,0 +2004,8,24,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,1248,1337,461,296,7,290,35010,396,34473,13810,340,3.1,10,10,3500,600,0,919999999,126,0,0,88,0.2,0,0 +2004,8,24,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,25,84,98646,1280,1337,460,306,13,294,36349,767,35099,14030,360,4.1,10,10,3500,1200,0,919999999,114,0,0,88,0.2,0,0 +2004,8,24,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,27,89,98654,1234,1337,456,478,54,428,54581,3731,49235,18199,360,3.1,9,9,3000,900,0,919999999,139,0,0,88,0.2,0,0 +2004,8,24,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,1112,1337,454,420,58,372,47794,3976,42639,16041,350,3.1,9,9,3500,900,0,919999999,125,0,0,88,0.2,0,0 +2004,8,24,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,27,89,98654,923,1337,468,201,24,185,23464,1179,21683,8835,360,2.1,10,10,3500,900,0,19999999,139,0,0,88,0.2,0,0 +2004,8,24,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,25,94,98628,681,1337,447,133,0,133,13281,0,13403,5905,30,2.6,10,10,3000,900,0,19999999,114,0,0,88,0.2,0,0 +2004,8,24,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,25,94,98628,400,1337,447,60,0,60,5823,0,5872,2483,30,4.1,10,10,3000,900,0,19999999,114,0,0,88,0.2,0,0 +2004,8,24,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,25,94,98628,102,1337,435,11,0,11,1020,0,1028,413,50,2.6,9,9,3000,900,0,19999999,114,0,0,88,0.2,0,0 +2004,8,24,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,25,94,98628,0,458,435,0,0,0,0,0,0,0,50,2.1,9,9,3000,1200,0,19999999,114,0,0,88,0.2,0,0 +2004,8,24,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,25,94,98628,0,0,411,0,0,0,0,0,0,0,30,1,5,5,3000,1200,0,19999999,114,0,0,88,0.2,0,0 +2004,8,24,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,25,94,98628,0,0,435,0,0,0,0,0,0,0,20,1,9,9,3000,1050,0,19999999,114,0,0,88,0.2,0,0 +2004,8,24,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,25,94,98628,0,0,411,0,0,0,0,0,0,0,281,0,5,5,2300,1050,0,19999999,114,0,0,88,0.2,0,0 +2004,8,24,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,25,94,98628,0,0,411,0,0,0,0,0,0,0,20,3.1,5,5,3000,77777,0,19999999,114,0,0,88,0.2,0,0 +2004,8,25,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,25,94,98628,0,0,411,0,0,0,0,0,0,0,20,3.1,5,5,3000,77777,0,19999999,114,0,0,88,0.2,0,0 +2004,8,25,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,25,94,98628,0,0,411,0,0,0,0,0,0,0,30,2.6,5,5,3000,77777,0,19999999,114,0,0,88,0.2,0,0 +2004,8,25,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,25,94,98628,0,0,447,0,0,0,0,0,0,0,50,4.1,10,10,3000,1050,0,19999999,114,0,0,88,0.2,0,0 +2004,8,25,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,25,94,98628,0,0,447,0,0,0,0,0,0,0,50,3.1,10,10,3000,900,0,19999999,114,0,0,88,0.2,0,0 +2004,8,25,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,26,100,98628,0,0,449,0,0,0,0,0,0,0,50,2.6,10,10,3000,900,0,19999999,126,0,0,88,0.2,0,0 +2004,8,25,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,25,94,98628,0,0,447,0,0,0,0,0,0,0,40,3.1,10,10,3000,900,9,999999999,114,0,0,88,0.2,0,0 +2004,8,25,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,24,89,98628,155,695,446,12,0,12,1187,0,1196,500,20,3.6,10,10,3000,900,9,999999999,103,0,0,88,0.2,0,0 +2004,8,25,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,25,94,98628,453,1337,447,72,0,72,7097,0,7157,3045,20,2.1,10,10,3000,900,9,999999999,114,0,0,88,0.2,0,0 +2004,8,25,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,25,94,98628,728,1337,447,146,0,146,14657,0,14794,6565,20,2.6,10,10,1400,600,9,999999999,114,0,0,88,0.2,0,0 +2004,8,25,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,25,94,98628,962,1337,447,213,4,210,24816,236,24599,9948,30,2.6,10,10,2500,600,0,919999999,114,0,0,88,0.2,0,0 +2004,8,25,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,25,94,98628,1139,1337,447,264,9,257,31141,508,30451,12329,60,1,10,10,2500,600,0,919999999,114,0,0,88,0.2,0,0 +2004,8,25,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,1247,1337,448,485,55,434,55514,3876,50054,18431,40,3.1,9,9,2800,600,0,919999999,126,0,0,88,0.2,0,0 +2004,8,25,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,1278,1337,460,500,66,437,57473,4618,50637,18691,50,3.1,9,9,2800,600,0,919999999,125,0,0,88,0.2,0,0 +2004,8,25,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,1231,1337,460,478,66,417,54739,4573,48182,17897,20,4.1,9,9,2800,600,0,919999999,125,0,0,88,0.2,0,0 +2004,8,25,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,27,94,98646,1109,1337,450,418,64,365,47535,4243,41809,15827,20,3.6,9,9,2800,600,0,919999999,139,0,0,88,0.2,0,0 +2004,8,25,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,920,1337,454,329,43,300,36954,2822,33887,12622,20,4.1,9,9,3000,600,0,919999999,125,0,0,88,0.2,0,0 +2004,8,25,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,677,1337,461,132,0,132,13129,0,13250,5845,50,4.1,10,10,3000,600,0,919999999,126,0,0,88,0.2,0,0 +2004,8,25,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,396,1337,461,59,0,59,5705,0,5753,2436,20,4.6,10,10,3000,600,0,919999999,126,0,0,88,0.2,0,0 +2004,8,25,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,97,1337,461,6,0,6,591,0,596,249,30,3.6,10,10,3000,600,0,919999999,126,0,0,88,0.2,0,0 +2004,8,25,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,0,435,461,0,0,0,0,0,0,0,50,3.6,10,10,3000,600,0,919999999,126,0,0,88,0.2,0,0 +2004,8,25,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,0,0,461,0,0,0,0,0,0,0,40,2.6,10,10,3000,600,0,919999999,126,0,0,88,0.2,0,0 +2004,8,25,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,26,94,98637,0,0,455,0,0,0,0,0,0,0,40,2.1,10,10,3500,600,0,919999999,126,0,0,88,0.2,0,0 +2004,8,25,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,25,89,98637,0,0,453,0,0,0,0,0,0,0,60,2.6,10,10,3500,600,0,919999999,114,0,0,88,0.2,0,0 +2004,8,25,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,26,94,98637,0,0,455,0,0,0,0,0,0,0,50,1,10,10,3500,600,0,919999999,126,0,0,88,0.2,0,0 +2004,8,26,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,25,89,98637,0,0,453,0,0,0,0,0,0,0,60,2.6,10,10,3500,600,0,919999999,114,0,0,88,0.2,0,0 +2004,8,26,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,25,89,98637,0,0,441,0,0,0,0,0,0,0,40,2.6,9,9,3500,600,0,919999999,114,0,0,88,0.2,0,0 +2004,8,26,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,25,89,98637,0,0,441,0,0,0,0,0,0,0,50,1.5,9,9,3500,600,0,919999999,114,0,0,88,0.2,0,0 +2004,8,26,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,25,94,98628,0,0,435,0,0,0,0,0,0,0,30,1.5,9,9,3500,600,0,919999999,114,0,0,88,0.2,0,0 +2004,8,26,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,25,89,98637,0,0,441,0,0,0,0,0,0,0,20,1.5,9,9,3500,600,0,919999999,114,0,0,88,0.2,0,0 +2004,8,26,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,25,94,98628,0,0,435,0,0,0,0,0,0,0,20,1.5,9,9,3500,600,9,999999999,114,0,0,88,0.2,0,0 +2004,8,26,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,25,94,98628,153,683,435,20,0,20,1896,0,1910,757,40,2.1,9,9,2800,600,9,999999999,114,0,0,88,0.2,0,0 +2004,8,26,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,25,94,98628,451,1338,435,118,8,115,13076,304,12843,4358,20,2.1,9,9,2800,600,9,999999999,114,0,0,88,0.2,0,0 +2004,8,26,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,25,94,98628,726,1338,447,146,0,146,14616,0,14752,6543,50,1,10,10,2600,750,0,919999999,114,0,0,88,0.2,0,0 +2004,8,26,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,26,100,98628,960,1338,449,212,4,209,24691,225,24480,9914,20,2.1,10,10,1600,600,0,919999999,126,0,0,88,0.2,0,0 +2004,8,26,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,26,94,98637,1137,1338,455,264,6,258,30977,365,30519,12367,20,2.1,10,10,2000,750,0,919999999,126,0,0,88,0.2,0,0 +2004,8,26,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,26,94,98637,1245,1338,455,295,7,289,34893,394,34360,13769,20,1.5,10,10,2500,750,0,919999999,126,0,0,88,0.2,0,0 +2004,8,26,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,26,94,98637,1276,1338,455,304,5,300,36024,281,35709,14250,10,2.6,10,10,2500,750,0,919999999,126,0,0,88,0.2,0,0 +2004,8,26,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,27,26,94,98637,1229,1338,455,358,23,336,41672,1436,39475,15408,220,1.3,10,10,2500,750,9,999999999,126,0,0,88,0.2,0,0 +2004,8,26,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,26,94,98637,1106,1338,455,255,4,252,29852,205,29679,12052,72,0,10,10,2500,2400,0,919999999,126,0,0,88,0.2,0,0 +2004,8,26,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,26,94,98637,917,1338,455,200,3,197,23179,177,23039,9278,360,2.1,10,10,2000,2400,0,919999999,126,0,0,88,0.2,0,0 +2004,8,26,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,26,94,98637,673,1338,455,131,0,131,13020,0,13140,5791,360,1,10,10,2000,600,0,919999999,126,0,0,88,0.2,0,0 +2004,8,26,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,27,100,98637,391,1338,456,58,0,58,5584,0,5631,2388,260,2.6,10,10,2500,600,0,919999999,139,0,0,88,0.2,0,0 +2004,8,26,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,26,94,98637,92,1338,442,10,0,10,920,0,927,372,350,3.1,9,9,2500,600,0,919999999,126,0,0,88,0.2,0,0 +2004,8,26,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,26,94,98637,0,412,418,0,0,0,0,0,0,0,340,1.5,5,5,2500,600,0,919999999,126,0,0,88,0.2,0,0 +2004,8,26,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,26,100,98628,0,0,436,0,0,0,0,0,0,0,330,1.5,9,9,3500,77777,0,919999999,126,0,0,88,0.2,0,0 +2004,8,26,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,26,94,98637,0,0,418,0,0,0,0,0,0,0,270,2.6,5,5,3500,77777,0,919999999,126,0,0,88,0.2,0,0 +2004,8,26,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,26,94,98637,0,0,418,0,0,0,0,0,0,0,340,2.1,5,5,3500,77777,0,919999999,126,0,0,88,0.2,0,0 +2004,8,26,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,27,25.5,92,98637,0,0,442,0,0,0,0,0,0,0,197,2.6,9,9,2750,77777,9,999999999,120,0,0,88,0.2,0,0 +2004,8,27,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,25,89,98637,0,0,441,0,0,0,0,0,0,0,320,3.1,9,9,2000,1200,0,919999999,114,0,0,88,0.2,0,0 +2004,8,27,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,25,94,98628,0,0,411,0,0,0,0,0,0,0,88,0,5,5,2000,77777,0,919999999,114,0,0,88,0.2,0,0 +2004,8,27,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,26,100,98628,0,0,412,0,0,0,0,0,0,0,67,0,5,5,2800,77777,0,919999999,126,0,0,88,0.2,0,0 +2004,8,27,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,25,94,98628,0,0,411,0,0,0,0,0,0,0,339,0,5,5,2500,77777,0,919999999,114,0,0,88,0.2,0,0 +2004,8,27,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,26,100,98628,0,0,412,0,0,0,0,0,0,0,0,0,5,5,1500,77777,0,919999999,126,0,0,88,0.2,0,0 +2004,8,27,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,25,94,98628,0,0,411,0,0,0,0,0,0,0,260,3.6,5,5,1800,77777,9,999999999,114,0,0,88,0.2,0,0 +2004,8,27,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,25,94,98628,151,672,411,35,0,35,3335,0,3360,1182,250,2.6,5,5,2500,900,9,999999999,114,0,0,88,0.2,0,0 +2004,8,27,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,25,89,98637,449,1338,416,212,280,118,23387,11151,13087,4412,250,3.1,5,5,2500,77777,9,999999999,114,0,0,88,0.2,0,0 +2004,8,27,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,724,1338,429,429,491,163,48874,24922,18718,7152,260,3.6,5,5,3000,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,27,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,25,79,98654,959,1338,428,627,607,193,73544,32955,22745,9283,270,3.6,5,5,3000,77777,9,999999999,114,0,0,88,0.2,0,0 +2004,8,27,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,25,79,98654,1136,1338,428,780,625,250,91933,36019,29664,12053,250,6.2,5,5,3500,77777,9,999999999,114,0,0,88,0.2,0,0 +2004,8,27,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,25,70,98672,1244,1338,439,873,651,268,103893,37436,32117,12978,270,6.2,5,5,4000,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,27,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26,75,98672,1275,1338,440,898,646,283,106740,36532,33875,13624,260,5.1,5,5,4000,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,27,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,26,71,98680,1227,1338,446,857,647,264,101741,36013,31566,12792,270,6.2,5,5,4500,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,27,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,25,63,98689,1104,1338,451,752,625,237,88643,35573,28095,11479,260,5.7,5,5,5000,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,27,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,26,67,98689,913,1338,452,588,593,183,68563,30803,21501,8726,270,4.1,5,5,5000,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,27,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,26,63,98697,669,1338,458,383,459,154,43411,22638,17508,6560,260,4.6,5,5,5000,77777,9,999999999,124,0,0,88,0.2,0,0 +2004,8,27,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,25,63,98689,387,1338,444,178,292,94,19682,8746,10399,3482,270,3.1,3,3,5000,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,27,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,26,71,98680,86,1338,439,18,0,18,1664,0,1676,607,270,2.1,3,3,4000,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,27,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,26,71,98680,0,388,439,0,0,0,0,0,0,0,250,2.6,3,3,4000,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,27,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26,75,98672,0,0,434,0,0,0,0,0,0,0,320,1.5,3,3,4000,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,27,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,27,79,98672,0,0,435,0,0,0,0,0,0,0,12,0,3,3,4000,77777,9,999999999,138,0,0,88,0.2,0,0 +2004,8,27,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,27,84,98663,0,0,436,0,0,0,0,0,0,0,37,0,5,5,4000,77777,0,919999999,138,0,0,88,0.2,0,0 +2004,8,27,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,28,89,98663,0,0,437,0,0,0,0,0,0,0,150,1.5,5,5,3500,77777,0,919999999,153,0,0,88,0.2,0,0 +2004,8,28,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,28,94,98654,0,0,431,0,0,0,0,0,0,0,210,0,5,5,3000,77777,0,919999999,153,0,0,88,0.2,0,0 +2004,8,28,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,27,89,98654,0,0,430,0,0,0,0,0,0,0,230,2.6,5,5,3000,77777,0,919999999,139,0,0,88,0.2,0,0 +2004,8,28,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,0,0,423,0,0,0,0,0,0,0,210,2.1,5,5,3000,77777,0,919999999,126,0,0,88,0.2,0,0 +2004,8,28,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,0,0,423,0,0,0,0,0,0,0,220,1.5,5,5,3000,77777,0,919999999,126,0,0,88,0.2,0,0 +2004,8,28,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,0,0,423,0,0,0,0,0,0,0,220,1.5,5,5,3000,77777,0,919999999,126,0,0,88,0.2,0,0 +2004,8,28,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,25,84,98646,0,0,422,0,0,0,0,0,0,0,240,2.6,5,5,3000,77777,9,999999999,114,0,0,88,0.2,0,0 +2004,8,28,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,24,84,98637,149,661,415,34,0,34,3262,0,3287,1156,240,2.6,5,5,3000,77777,9,999999999,103,0,0,88,0.2,0,0 +2004,8,28,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,24,79,98646,447,1339,414,224,283,129,24545,12534,14261,4680,240,3.1,3,3,3000,77777,9,999999999,103,0,0,88,0.2,0,0 +2004,8,28,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,24,74,98654,723,1339,420,455,623,119,53339,29398,14013,5532,240,4.6,3,3,3000,77777,9,999999999,103,0,0,88,0.2,0,0 +2004,8,28,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,24,70,98663,957,1339,408,674,775,121,82017,36647,14729,6203,250,5.1,0,0,3000,77777,9,999999999,103,0,0,88,0.2,0,0 +2004,8,28,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,24,66,98672,1134,1339,431,827,815,138,102175,39087,17083,7245,230,6.2,3,3,4000,77777,9,999999999,102,0,0,88,0.2,0,0 +2004,8,28,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,25,67,98680,1242,1339,438,924,789,193,112786,39913,23674,9861,250,7.2,3,3,4000,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,28,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,26,67,98689,1273,1339,452,897,611,317,105600,36391,37534,14850,240,5.1,5,5,5000,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,28,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,25,63,98689,1224,1339,451,856,652,261,101895,37249,31207,12648,260,6.2,5,5,4000,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,28,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,26,63,98697,1101,1339,458,748,624,236,88055,34370,27923,11430,260,4.1,5,5,4000,77777,9,999999999,124,0,0,88,0.2,0,0 +2004,8,28,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,25,60,98697,910,1339,457,586,596,181,68473,31875,21284,8626,240,5.1,5,5,4000,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,28,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,26,63,98697,665,1339,458,380,419,172,42620,21971,19395,7102,250,5.1,5,5,4000,77777,9,999999999,124,0,0,88,0.2,0,0 +2004,8,28,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,26,67,98689,382,1339,452,164,206,106,17950,6479,11586,3759,260,4.1,5,5,3500,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,28,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,26,71,98680,81,1339,446,16,0,16,1476,0,1487,546,250,2.6,5,5,3500,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,28,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,27,75,98680,0,364,441,0,0,0,0,0,0,0,200,2.1,3,3,3500,77777,9,999999999,138,0,0,88,0.2,0,0 +2004,8,28,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,32,28,79,98680,0,0,442,0,0,0,0,0,0,0,5,0,3,3,3500,77777,9,999999999,153,0,0,88,0.2,0,0 +2004,8,28,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,28,84,98672,0,0,443,0,0,0,0,0,0,0,184,0,5,5,3500,77777,9,999999999,153,0,0,88,0.2,0,0 +2004,8,28,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,27,79,98672,0,0,442,0,0,0,0,0,0,0,220,2.6,5,5,3500,77777,9,999999999,138,0,0,88,0.2,0,0 +2004,8,28,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,0,0,435,0,0,0,0,0,0,0,240,3.6,5,5,3500,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,29,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,24,74,98654,0,0,426,0,0,0,0,0,0,0,220,3.1,5,5,3500,77777,9,999999999,103,0,0,88,0.2,0,0 +2004,8,29,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,24,79,98646,0,0,421,0,0,0,0,0,0,0,220,3.1,5,5,3500,77777,9,999999999,103,0,0,88,0.2,0,0 +2004,8,29,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,24,79,98646,0,0,421,0,0,0,0,0,0,0,220,3.6,5,5,3500,77777,9,999999999,103,0,0,88,0.2,0,0 +2004,8,29,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,24,84,98637,0,0,415,0,0,0,0,0,0,0,210,2.1,5,5,3500,77777,9,999999999,103,0,0,88,0.2,0,0 +2004,8,29,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,24,84,98637,0,0,415,0,0,0,0,0,0,0,210,3.1,5,5,3500,77777,9,999999999,103,0,0,88,0.2,0,0 +2004,8,29,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,24,89,98628,0,0,434,0,0,0,0,0,0,0,220,1.5,9,9,3500,77777,9,999999999,103,0,0,88,0.2,0,0 +2004,8,29,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,24,84,98637,146,650,415,33,0,33,3181,0,3205,1129,240,1.5,5,5,3500,3000,9,999999999,103,0,0,88,0.2,0,0 +2004,8,29,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,25,89,98637,445,1340,416,209,279,117,23116,10977,12962,4362,220,1.5,5,5,3500,77777,9,999999999,114,0,0,88,0.2,0,0 +2004,8,29,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,25,79,98654,721,1340,428,427,494,162,48776,25810,18544,7073,240,3.6,5,5,3500,77777,9,999999999,114,0,0,88,0.2,0,0 +2004,8,29,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,25,75,98663,956,1340,433,625,608,192,73270,32949,22595,9219,260,4.1,5,5,3500,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,29,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26,75,98672,1133,1340,440,776,624,249,91338,34846,29455,11992,260,4.1,5,5,3500,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,29,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,32,26,71,98680,1240,1340,450,825,571,297,97277,33404,35246,14061,216,3.6,6,6,3750,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,29,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,26,67,98689,1271,1340,452,895,593,333,104944,36237,39309,15417,250,3.1,5,5,4000,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,29,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,27,67,98697,1222,1340,452,903,778,194,109520,36775,23641,9878,260,3.6,3,3,4000,77777,9,999999999,138,0,0,88,0.2,0,0 +2004,8,29,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,27,63,98705,1098,1340,458,790,763,165,95323,34986,20000,8461,250,4.1,3,3,4000,77777,9,999999999,137,0,0,88,0.2,0,0 +2004,8,29,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,27,63,98705,906,1340,458,616,715,133,73482,31299,15944,6642,250,3.6,3,3,4000,77777,9,999999999,137,0,0,88,0.2,0,0 +2004,8,29,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,25,56,98705,660,1340,455,400,511,149,45467,25610,16962,6348,260,3.6,3,3,4500,77777,9,999999999,112,0,0,88,0.2,0,0 +2004,8,29,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,27,67,98697,377,1340,452,171,264,97,18732,7003,10640,3516,260,4.1,3,3,4500,77777,9,999999999,138,0,0,88,0.2,0,0 +2004,8,29,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,27,71,98689,76,1340,446,15,0,15,1462,0,1473,536,250,2.1,3,3,4500,77777,9,999999999,138,0,0,88,0.2,0,0 +2004,8,29,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,33,27,71,98689,0,340,446,0,0,0,0,0,0,0,29,0,3,3,4000,77777,9,999999999,138,0,0,88,0.2,0,0 +2004,8,29,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,32,27,75,98680,0,0,422,0,0,0,0,0,0,0,124,0,0,0,4000,77777,9,999999999,138,0,0,88,0.2,0,0 +2004,8,29,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,26,71,98680,0,0,421,0,0,0,0,0,0,0,150,1,0,0,4000,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,29,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,27,79,98672,0,0,417,0,0,0,0,0,0,0,133,0,0,0,3500,77777,9,999999999,138,0,0,88,0.2,0,0 +2004,8,29,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26,75,98672,0,0,416,0,0,0,0,0,0,0,210,2.1,0,0,3200,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,30,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,0,0,428,0,0,0,0,0,0,0,210,2.6,3,3,3500,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,30,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,25,79,98654,0,0,421,0,0,0,0,0,0,0,210,2.6,3,3,4000,77777,9,999999999,114,0,0,88,0.2,0,0 +2004,8,30,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,0,0,422,0,0,0,0,0,0,0,230,2.1,3,3,4000,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,30,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,0,0,417,0,0,0,0,0,0,0,220,1,3,3,4000,77777,9,999999999,126,0,0,88,0.2,0,0 +2004,8,30,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,25,84,98646,0,0,398,0,0,0,0,0,0,0,220,3.1,0,0,4000,77777,9,999999999,114,0,0,88,0.2,0,0 +2004,8,30,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,24,84,98637,0,0,392,0,0,0,0,0,0,0,210,3.1,0,0,4000,77777,9,999999999,103,0,0,88,0.2,0,0 +2004,8,30,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,24,84,98637,144,639,392,35,4,34,3818,0,3784,1151,200,2.6,0,0,4000,77777,9,999999999,103,0,0,88,0.2,0,0 +2004,8,30,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,24,79,98646,443,1340,397,224,358,106,24966,13639,11848,4059,210,2.6,0,0,4000,77777,9,999999999,103,0,0,88,0.2,0,0 +2004,8,30,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,24,74,98654,720,1340,402,458,652,109,54069,29679,12897,5118,230,5.7,0,0,4000,77777,9,999999999,103,0,0,88,0.2,0,0 +2004,8,30,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,24,70,98663,954,1340,425,663,743,134,79957,36382,16266,6813,220,5.1,3,3,4000,77777,9,999999999,103,0,0,88,0.2,0,0 +2004,8,30,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,25,70,98672,1131,1340,432,823,810,140,101354,37747,17296,7343,250,3.6,3,3,4000,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,30,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,26,67,98689,1238,1340,445,920,828,155,113823,37559,19289,8134,270,5.1,3,3,4000,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,30,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,26,63,98697,1269,1340,451,947,834,159,117496,37852,19767,8318,240,5.1,3,3,4500,77777,9,999999999,124,0,0,88,0.2,0,0 +2004,8,30,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,25,56,98705,1219,1340,455,904,831,149,112093,38799,18568,7836,250,4.1,3,3,5000,77777,9,999999999,112,0,0,88,0.2,0,0 +2004,8,30,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,26,60,98705,1095,1340,457,788,769,161,95417,36416,19618,8296,260,3.1,3,3,5000,77777,9,999999999,124,0,0,88,0.2,0,0 +2004,8,30,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,25,53,98714,902,1340,461,615,722,129,73705,33921,15552,6463,260,4.1,3,3,5000,77777,9,999999999,112,0,0,88,0.2,0,0 +2004,8,30,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,26,60,98705,656,1340,457,396,504,149,44859,24452,16993,6349,260,5.7,3,3,5000,77777,9,999999999,124,0,0,88,0.2,0,0 +2004,8,30,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,25,56,98705,372,1340,455,168,262,95,18486,7723,10518,3458,260,4.1,3,3,4500,77777,9,999999999,112,0,0,88,0.2,0,0 +2004,8,30,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,26,63,98697,71,1340,451,14,0,14,1365,0,1375,500,270,2.1,3,3,4000,77777,9,999999999,124,0,0,88,0.2,0,0 +2004,8,30,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,33,26,67,98689,0,316,445,0,0,0,0,0,0,0,98,0,3,3,4000,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,30,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,26,67,98689,0,0,445,0,0,0,0,0,0,0,250,2.1,3,3,4000,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,30,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,32,27,75,98680,0,0,441,0,0,0,0,0,0,0,263,0,3,3,4000,77777,9,999999999,138,0,0,88,0.2,0,0 +2004,8,30,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,32,28,79,98680,0,0,449,0,0,0,0,0,0,0,27,0,5,5,4000,77777,9,999999999,153,0,0,88,0.2,0,0 +2004,8,30,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,28,79,98680,0,0,449,0,0,0,0,0,0,0,200,2.1,5,5,3000,77777,9,999999999,153,0,0,88,0.2,0,0 +2004,8,31,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26,75,98672,0,0,440,0,0,0,0,0,0,0,210,2.1,5,5,3500,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,31,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26,75,98672,0,0,434,0,0,0,0,0,0,0,220,2.1,3,3,3500,77777,9,999999999,125,0,0,88,0.2,0,0 +2004,8,31,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,25,79,98654,0,0,421,0,0,0,0,0,0,0,220,2.1,3,3,3500,77777,9,999999999,114,0,0,88,0.2,0,0 +2004,8,31,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,25,79,98654,0,0,421,0,0,0,0,0,0,0,220,2.6,3,3,3200,77777,9,999999999,114,0,0,88,0.2,0,0 +2004,8,31,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,23,74,98646,0,0,413,0,0,0,0,0,0,0,220,2.6,3,3,3000,77777,9,999999999,93,0,0,88,0.2,0,0 +2004,8,31,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,24,84,98637,0,0,415,0,0,0,0,0,0,0,210,3.1,5,5,3000,77777,9,999999999,103,0,0,88,0.2,0,0 +2004,8,31,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,23,79,98637,142,628,414,32,0,32,3028,0,3051,1077,220,2.6,5,5,3000,77777,9,999999999,93,0,0,88,0.2,0,0 +2004,8,31,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,23,74,98646,441,1341,419,208,281,115,22994,11789,12833,4302,220,2.6,5,5,3000,77777,9,999999999,93,0,0,88,0.2,0,0 +2004,8,31,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,23,70,98654,718,1341,425,426,499,159,48832,27496,18308,6967,230,3.1,5,5,3000,77777,9,999999999,93,0,0,88,0.2,0,0 +2004,8,31,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,24,70,98663,953,1341,432,624,595,201,72891,33947,23656,9573,240,3.6,5,5,3000,77777,9,999999999,103,0,0,88,0.2,0,0 +2004,8,31,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,25,70,98672,1130,1341,432,822,730,207,98196,39025,24880,10318,230,5.1,3,3,3000,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,31,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,25,63,98689,1237,1341,425,932,780,213,112707,40960,25952,10733,260,4.1,0,0,3500,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,31,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,25,63,98689,1266,1341,425,959,781,222,116142,41354,27053,11149,250,4.1,0,0,4000,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,31,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,25,60,98697,1217,1341,431,913,779,207,110430,40688,25226,10458,260,4.6,0,0,4000,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,31,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,24,53,98705,1091,1341,435,798,816,135,98155,39217,16703,7098,260,3.6,0,0,4000,77777,9,999999999,102,0,0,88,0.2,0,0 +2004,8,31,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,24,53,98705,899,1341,454,613,680,158,72376,35522,18697,7644,260,4.1,3,3,4000,77777,9,999999999,102,0,0,88,0.2,0,0 +2004,8,31,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,25,56,98705,652,1341,437,398,532,140,45374,25834,16011,6017,260,4.6,0,0,4000,77777,9,999999999,112,0,0,88,0.2,0,0 +2004,8,31,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,25,60,98697,367,1341,431,167,270,93,18359,7658,10272,3377,270,3.1,0,0,4000,77777,9,999999999,113,0,0,88,0.2,0,0 +2004,8,31,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32.8,25.8,67,98687,65,1341,432,14,0,14,1278,0,1288,468,235,1.7,0,0,3500,77777,9,999999999,122,0,0,88,0.2,0,0 +2004,8,31,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,25.2,68,98680,0,291,427,0,0,0,0,0,0,0,222,1.7,0,0,3000,77777,9,999999999,115,0,0,88,0.2,0,0 +2004,8,31,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31.5,24.8,67,98676,0,0,421,0,0,0,0,0,0,0,217,1.7,0,0,3000,77777,9,999999999,111,0,0,88,0.2,0,0 +2004,8,31,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,24.8,74,98663,0,0,420,0,0,0,0,0,0,0,205,2.1,0,0,3000,77777,9,999999999,111,0,0,88,0.2,0,0 +2004,8,31,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28.5,25,81,98650,0,0,413,0,0,0,0,0,0,0,175,1.8,0,0,3000,77777,9,999999999,114,0,0,88,0.2,0,0 +2004,8,31,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27.2,25.5,90,98402,0,0,431,0,0,0,0,0,0,0,157,1.8,3,3,3500,77777,9,999999999,119,0,0,88,0.2,0,0 +2017,9,1,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,26,100,98391,0,0,449,0,0,0,0,0,0,0,150,1.4,10,10,1500,914,0,19994999,126,0,0,88,0.2,0,0 +2017,9,1,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,26,100,98391,0,0,449,0,0,0,0,0,0,0,157,1.3,10,10,1500,914,0,19994999,126,0,0,88,0.2,0,0 +2017,9,1,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25.9,25.8,99,98131,0,0,449,0,0,0,0,0,0,0,180,1.8,10,10,2000,1050,0,19994999,123,0,0,88,0.2,0,0 +2017,9,1,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25.9,25.8,99,98368,0,0,449,0,0,0,0,0,0,0,202,1.9,10,10,1500,914,0,19994999,123,0,0,88,0.2,0,0 +2017,9,1,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25.9,25.8,99,98368,0,0,436,0,0,0,0,0,0,0,210,2.7,9,9,1300,2438,0,19994999,123,0,0,88,0.2,0,0 +2017,9,1,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,25.6,98,98156,0,0,433,0,0,0,0,0,0,0,222,3,9,9,2000,1050,0,919999999,121,0,0,88,0.2,0,0 +2017,9,1,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,26,100,98628,137,607,449,10,0,10,963,0,970,407,230,2.6,10,10,1300,2438,0,919999999,126,0,0,88,0.2,0,0 +2017,9,1,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,26,100,98628,438,1342,449,69,0,69,6746,0,6803,2888,200,3.1,10,10,2500,2438,0,919999999,126,0,0,88,0.2,0,0 +2017,9,1,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26.2,25.3,95,97778,715,1342,449,143,0,143,14300,0,14433,6382,230,3.1,10,10,2000,1050,0,919999999,117,0,0,88,0.2,0,0 +2017,9,1,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,950,1342,467,209,4,207,24335,213,24144,9755,260,4.1,10,10,2800,2438,0,919999999,125,0,0,88,0.2,0,0 +2017,9,1,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,1126,1342,467,261,6,255,30581,358,30142,12225,260,4.1,10,10,3200,2438,0,919999999,125,0,0,88,0.2,0,0 +2017,9,1,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28.4,26.3,88,97836,1233,1342,464,292,12,280,34446,692,33330,13410,270,4.6,10,10,4000,1050,0,919999999,129,0,0,88,0.2,0,0 +2017,9,1,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,1262,1342,460,492,55,440,56369,3924,50818,18661,270,4.1,9,9,4000,2438,0,919999999,125,0,0,88,0.2,0,0 +2017,9,1,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26,75,98672,1211,1342,466,468,66,408,53552,4604,47079,17526,290,4.1,9,9,4000,2438,0,919999999,125,0,0,88,0.2,0,0 +2017,9,1,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31.4,26.8,77,97628,1085,1342,470,407,64,355,46189,4273,40588,15385,250,4.6,9,9,4000,1050,0,919999999,134,0,0,88,0.2,0,0 +2017,9,1,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,25,70,98672,891,1342,465,316,30,297,35420,2031,33435,12259,230,4.1,9,9,4000,914,0,19999999,113,0,0,88,0.2,0,0 +2017,9,1,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,643,1342,448,201,38,183,22360,2066,20451,7271,240,1.5,9,9,4000,914,0,19999999,126,0,0,88,0.2,0,0 +2017,9,1,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28.4,26.2,88,97534,357,1342,451,82,0,82,7979,0,8045,3058,230,1.5,9,9,4000,1050,0,19999999,127,0,0,88,0.2,0,0 +2017,9,1,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,26,84,98654,54,1342,467,4,0,4,335,0,337,140,230,2.1,10,10,4000,3048,0,19999999,125,0,0,88,0.2,0,0 +2017,9,1,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,24,79,98646,0,241,458,0,0,0,0,0,0,0,250,4.1,10,10,3500,762,0,19999999,103,0,0,88,0.2,0,0 +2017,9,1,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27.6,23.8,80,97693,0,0,455,0,0,0,0,0,0,0,230,2.6,10,10,2000,1050,0,19999999,100,0,0,88,0.2,0,0 +2017,9,1,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,24,79,98646,0,0,446,0,0,0,0,0,0,0,273,0,9,9,3500,3048,0,19999999,103,0,0,88,0.2,0,0 +2017,9,1,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,24,79,98646,0,0,446,0,0,0,0,0,0,0,270,5.1,9,9,3500,3048,0,19999999,103,0,0,88,0.2,0,0 +2017,9,1,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27.2,24.9,87,97767,0,0,442,0,0,0,0,0,0,0,290,1.5,9,9,2000,1050,0,19999999,112,0,0,88,0.2,0,0 +2017,9,2,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,25,89,98637,0,0,441,0,0,0,0,0,0,0,128,0,9,9,3500,3048,0,19999999,114,0,0,88,0.2,0,0 +2017,9,2,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,25,89,98637,0,0,441,0,0,0,0,0,0,0,177,0,9,9,3500,3048,0,19999999,114,0,0,88,0.2,0,0 +2017,9,2,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,25,89,97620,0,0,441,0,0,0,0,0,0,0,270,1.5,9,9,2000,1050,0,19999999,113,0,0,88,0.2,0,0 +2017,9,2,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,25,89,98637,0,0,441,0,0,0,0,0,0,0,250,1.5,9,9,3500,3048,0,19999999,114,0,0,88,0.2,0,0 +2017,9,2,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,25,89,98637,0,0,441,0,0,0,0,0,0,0,250,2.6,9,9,3500,3048,0,19999999,114,0,0,88,0.2,0,0 +2017,9,2,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26.6,23.1,81,97713,0,0,436,0,0,0,0,0,0,0,250,3.6,9,9,2000,3000,9,999999999,94,0,0,88,0.2,5,0 +2017,9,2,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,24,79,98646,135,596,446,16,0,16,1544,0,1556,618,250,3.6,9,9,3500,3048,9,999999999,103,0,0,88,0.2,0,0 +2017,9,2,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,24,84,98637,436,1343,440,113,6,111,12511,240,12343,4156,260,3.6,9,9,3500,3048,9,999999999,103,0,0,88,0.2,0,0 +2017,9,2,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27.2,24.3,84,97826,713,1343,441,234,17,225,25970,1087,25105,8875,270,2.6,9,9,2000,3000,9,999999999,106,0,0,88,0.2,0,0 +2017,9,2,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,24,79,98646,948,1343,446,344,31,322,38664,2229,36439,13424,250,4.6,9,9,4000,3048,9,999999999,103,0,0,88,0.2,0,0 +2017,9,2,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,24,74,98654,1125,1343,451,428,66,373,48873,4769,42854,16088,250,5.1,9,9,4000,3048,9,999999999,103,0,0,88,0.2,0,0 +2017,9,2,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,24.7,78,97870,1231,1343,452,478,67,417,54901,4814,48249,17870,270,4.1,9,9,4000,3000,0,919999999,110,0,0,88,0.2,0,0 +2017,9,2,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,25,75,98663,1260,1343,459,492,67,429,56515,4798,49709,18350,290,5.1,9,9,4000,3048,0,919999999,113,0,0,88,0.2,0,0 +2017,9,2,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,25,75,98663,1209,1343,459,467,67,408,53553,4756,47039,17486,290,5.1,9,9,4000,3048,0,919999999,113,0,0,88,0.2,0,0 +2017,9,2,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30.6,24,68,97689,1081,1343,461,407,65,355,46411,4682,40690,15348,320,5.1,9,9,2000,1050,0,919999999,102,0,0,88,0.2,0,0 +2017,9,2,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,25,84,98646,887,1343,447,314,30,295,35201,2023,33230,12174,340,4.1,9,9,3000,2438,0,19999999,114,0,0,88,0.2,0,0 +2017,9,2,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,24,84,98637,638,1343,440,200,38,182,22276,2205,20358,7203,330,2.1,9,9,3000,2438,0,19999999,103,0,0,88,0.2,0,0 +2017,9,2,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27.6,25.3,87,97566,352,1343,445,81,0,81,7825,0,7889,2993,250,2.6,9,9,2000,1050,0,19999999,116,0,0,88,0.2,0,0 +2017,9,2,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,25,84,98646,48,1343,422,9,0,9,891,0,897,334,250,2.6,5,5,3500,3048,0,19999999,114,0,0,88,0.2,0,0 +2017,9,2,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,25,89,98637,0,216,416,0,0,0,0,0,0,0,250,7.2,5,5,3500,3048,0,19999999,114,0,0,88,0.2,0,0 +2017,9,2,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27.2,24.3,84,97680,0,0,417,0,0,0,0,0,0,0,270,1.5,5,5,2000,3000,0,19999999,105,0,0,88,0.2,0,0 +2017,9,2,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27,25,89,98637,0,0,410,0,0,0,0,0,0,0,270,1.5,3,3,3500,3000,0,19999999,114,0,0,88,0.2,0,0 +2017,9,2,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,27,25,89,98637,0,0,410,0,0,0,0,0,0,0,352,0,3,3,3500,3000,0,19999999,114,0,0,88,0.2,0,0 +2017,9,2,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26.6,24.6,89,97743,0,0,407,0,0,0,0,0,0,0,325,0,3,3,2000,77777,0,19999999,109,0,0,88,0.2,0,0 +2017,9,3,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,27,25,89,98637,0,0,410,0,0,0,0,0,0,0,263,0,3,3,3500,77777,0,19999999,114,0,0,88,0.2,0,0 +2017,9,3,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,27,26,94,98637,0,0,418,0,0,0,0,0,0,0,220,0,5,5,3500,77777,0,19999999,126,0,0,88,0.2,0,0 +2017,9,3,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26.4,24.7,90,97682,0,0,413,0,0,0,0,0,0,0,236,0,5,5,2000,77777,0,19999999,110,0,0,88,0.2,0,0 +2017,9,3,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,24,89,98628,0,0,410,0,0,0,0,0,0,0,250,2.1,5,5,3500,3048,0,19999999,103,0,0,88,0.2,0,0 +2017,9,3,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26,24,89,98628,0,0,403,0,0,0,0,0,0,0,270,3.1,3,3,3500,3048,0,19999999,103,0,0,88,0.2,0,0 +2017,9,3,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25.6,23.6,89,97666,0,0,401,0,0,0,0,0,0,0,270,2.6,3,3,2000,77777,9,999999999,99,0,0,88,0.2,0,0 +2017,9,3,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25,24,94,98619,132,585,404,28,0,28,2706,0,2726,973,270,2.6,5,5,3500,77777,9,999999999,103,0,0,88,0.2,0,0 +2017,9,3,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,24,89,98628,434,1344,410,202,276,113,22362,10933,12581,4207,270,2.6,5,5,3500,3048,9,999999999,103,0,0,88,0.2,0,0 +2017,9,3,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27.8,24,80,97880,711,1344,420,420,497,158,48060,26495,18120,6884,270,2.6,5,5,4000,3000,9,999999999,102,0,0,88,0.2,0,0 +2017,9,3,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,25,79,98654,946,1344,428,617,610,188,72344,32903,22138,9022,270,3.1,5,5,4000,3048,9,999999999,114,0,0,88,0.2,0,0 +2017,9,3,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,25,75,98663,1123,1344,433,769,630,243,90646,36064,28769,11727,270,3.1,5,5,4000,3048,9,999999999,113,0,0,88,0.2,0,0 +2017,9,3,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.4,25.2,70,97881,1229,1344,442,860,656,261,102281,37240,31223,12657,250,3.1,5,5,4000,3048,9,999999999,115,0,0,88,0.2,0,0 +2017,9,3,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,25,70,98672,1257,1344,439,885,656,271,105323,37795,32479,13110,260,3.1,5,5,4000,3048,9,999999999,113,0,0,88,0.2,0,0 +2017,9,3,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,26,71,98680,1206,1344,446,839,652,254,99521,35964,30350,12350,270,3.1,5,5,4000,3048,9,999999999,125,0,0,88,0.2,0,0 +2017,9,3,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.8,25.1,61,97736,1078,1344,455,730,632,224,86070,35291,26560,10900,270,3.1,5,5,4000,3048,9,999999999,113,0,0,88,0.2,0,0 +2017,9,3,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,26,63,98697,883,1344,458,563,589,176,65498,30270,20595,8307,290,3.1,5,5,4000,3048,9,999999999,124,0,0,88,0.2,0,0 +2017,9,3,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,25,60,98697,633,1344,457,356,410,163,39949,21595,18387,6650,310,3.6,5,5,4000,3048,9,999999999,113,0,0,88,0.2,0,0 +2017,9,3,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.6,24.3,62,97629,347,1344,447,142,182,95,15552,5237,10477,3338,270,3.1,5,5,4000,3048,9,999999999,104,0,0,88,0.2,0,0 +2017,9,3,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,26,67,98689,43,1344,452,8,0,8,785,0,791,297,270,2.6,5,5,5000,3048,9,999999999,125,0,0,88,0.2,0,0 +2017,9,3,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,25,63,98689,0,190,451,0,0,0,0,0,0,0,330,3.1,5,5,4500,3048,9,999999999,113,0,0,88,0.2,0,0 +2017,9,3,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.2,25.4,76,97822,0,0,435,0,0,0,0,0,0,0,320,1.5,5,5,4000,3048,9,999999999,117,0,0,88,0.2,0,0 +2017,9,3,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31,25,70,98672,0,0,432,0,0,0,0,0,0,0,30,1.5,3,3,4500,3048,9,999999999,113,0,0,88,0.2,0,0 +2017,9,3,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,30,25,75,98663,0,0,427,0,0,0,0,0,0,0,66,0,3,3,4000,3048,9,999999999,113,0,0,88,0.2,0,0 +2017,9,3,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28.8,25.4,82,97888,0,0,420,0,0,0,0,0,0,0,158,0,3,3,4000,77777,9,999999999,118,0,0,88,0.2,0,0 +2017,9,4,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,30,26,79,98663,0,0,428,0,0,0,0,0,0,0,91,0,3,3,3000,77777,9,999999999,125,0,0,88,0.2,0,0 +2017,9,4,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,29,26,84,98654,0,0,422,0,0,0,0,0,0,0,45,0,3,3,3000,77777,9,999999999,125,0,0,88,0.2,0,0 +2017,9,4,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28.2,25.4,85,97815,0,0,417,0,0,0,0,0,0,0,217,0,3,3,2000,77777,9,999999999,118,0,0,88,0.2,0,0 +2017,9,4,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,28,26,89,98646,0,0,417,0,0,0,0,0,0,0,218,0,3,3,3000,77777,9,999999999,126,0,0,88,0.2,0,0 +2017,9,4,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28,26,89,98646,0,0,423,0,0,0,0,0,0,0,260,2.1,5,5,3000,77777,9,999999999,126,0,0,88,0.2,0,0 +2017,9,4,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27.6,25.9,90,97888,0,0,421,0,0,0,0,0,0,0,270,2.1,5,5,2000,77777,9,999999999,124,0,0,88,0.2,0,0 +2017,9,4,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27,26,94,98637,130,574,418,28,0,28,2615,0,2635,946,250,2.6,5,5,3000,77777,9,999999999,126,0,0,88,0.2,0,0 +2017,9,4,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,432,1344,423,200,224,129,21838,8988,14085,4560,270,2.6,5,5,3500,3048,9,999999999,126,0,0,88,0.2,0,0 +2017,9,4,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29.2,24.6,76,97999,709,1344,422,444,619,118,51891,28415,13836,5436,270,3.1,3,3,2000,77777,9,999999999,109,0,0,88,0.2,0,0 +2017,9,4,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,25,70,98672,945,1344,439,616,596,198,71881,32856,23183,9387,280,4.1,5,5,4000,3048,9,999999999,113,0,0,88,0.2,0,0 +2017,9,4,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,27,75,98680,1121,1344,447,765,577,284,88729,33385,33206,13265,290,4.1,5,5,4000,3048,9,999999999,138,0,0,88,0.2,0,0 +2017,9,4,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.4,26.2,66,98025,1227,1344,482,475,87,396,54600,5865,45871,17252,270,4.1,9,9,4000,3048,9,999999999,126,0,0,88,0.2,0,0 +2017,9,4,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,27,71,98689,1255,1344,480,488,66,426,55858,4498,49193,18236,280,4.6,9,9,4000,3048,9,999999999,138,0,0,88,0.2,0,0 +2017,9,4,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,27,67,98697,1203,1344,486,463,66,404,52865,4455,46493,17358,280,4.6,9,9,4000,3048,9,999999999,138,0,0,88,0.2,0,0 +2017,9,4,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33.2,25.6,65,97858,1074,1344,479,403,58,357,45727,4026,40744,15351,290,4.6,9,9,4000,3000,9,999999999,119,0,0,88,0.2,0,0 +2017,9,4,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35,26,60,98705,879,1344,464,559,516,222,63859,29673,25527,9940,290,4.1,5,5,4000,3000,9,999999999,124,0,0,88,0.2,0,0 +2017,9,4,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35,26,60,98705,629,1344,464,352,406,162,39382,20602,18259,6599,300,4.1,5,5,4500,3000,9,999999999,124,0,0,88,0.2,0,0 +2017,9,4,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33.4,24.6,60,97713,342,1344,452,139,177,94,15172,4863,10304,3277,320,4.6,5,5,4000,3000,9,999999999,108,0,0,88,0.2,0,0 +2017,9,4,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33,26,67,98689,37,1344,452,7,0,7,681,0,686,260,320,3.6,5,5,4500,3000,9,999999999,125,0,0,88,0.2,0,0 +2017,9,4,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,25,70,98672,0,165,439,0,0,0,0,0,0,0,280,4.1,5,5,4000,3048,9,999999999,113,0,0,88,0.2,0,0 +2017,9,4,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.2,23.7,72,97814,0,0,427,0,0,0,0,0,0,0,270,3.6,5,5,2000,3048,9,999999999,99,0,0,88,0.2,0,0 +2017,9,4,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,23,74,98646,0,0,419,0,0,0,0,0,0,0,270,4.1,5,5,3500,3048,9,999999999,93,0,0,88,0.2,0,0 +2017,9,4,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,24,84,98637,0,0,415,0,0,0,0,0,0,0,270,2.6,5,5,3500,3048,9,999999999,103,0,0,88,0.2,0,0 +2017,9,4,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.4,23.6,80,97944,0,0,417,0,0,0,0,0,0,0,270,2.6,5,5,2000,3048,9,999999999,98,0,0,88,0.2,0,0 +2017,9,5,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27,24,84,98637,0,0,409,0,0,0,0,0,0,0,290,2.6,3,3,3500,3048,9,999999999,103,0,0,88,0.2,0,0 +2017,9,5,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26,24,89,98628,0,0,403,0,0,0,0,0,0,0,290,2.6,3,3,3500,3048,9,999999999,103,0,0,88,0.2,0,0 +2017,9,5,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26.4,22.9,81,97819,0,0,404,0,0,0,0,0,0,0,270,2.6,3,3,2000,77777,9,999999999,92,0,0,88,0.2,0,0 +2017,9,5,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25,24,94,98619,0,0,398,0,0,0,0,0,0,0,270,2.1,3,3,3500,77777,9,999999999,103,0,0,88,0.2,0,0 +2017,9,5,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25,24,94,98619,0,0,398,0,0,0,0,0,0,0,260,2.6,3,3,3500,77777,9,999999999,103,0,0,88,0.2,0,0 +2017,9,5,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25.2,23.4,90,97896,0,0,398,0,0,0,0,0,0,0,270,2.1,3,3,2000,77777,9,999999999,97,0,0,88,0.2,0,0 +2017,9,5,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25,24,94,98619,128,563,398,28,0,28,2707,0,2727,963,240,2.6,3,3,3500,77777,9,999999999,103,0,0,88,0.2,0,0 +2017,9,5,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26,24,89,98628,430,1345,403,212,277,124,23232,11666,13617,4434,280,2.6,3,3,4000,77777,9,999999999,103,0,0,88,0.2,0,0 +2017,9,5,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28.4,23.5,75,98089,708,1345,416,443,623,116,51938,29507,13672,5366,270,3.1,3,3,4000,77777,9,999999999,97,0,0,88,0.2,0,0 +2017,9,5,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30,25,75,98663,943,1345,427,652,742,132,78438,35003,15991,6692,270,3.1,3,3,4500,77777,9,999999999,113,0,0,88,0.2,0,0 +2017,9,5,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31,25,70,98672,1119,1345,432,812,783,162,98724,38325,19733,8331,260,3.6,3,3,4500,77777,9,999999999,113,0,0,88,0.2,0,0 +2017,9,5,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32.8,24.3,61,98068,1225,1345,448,858,628,286,101337,38187,34033,13606,290,4.1,5,5,4000,77777,9,999999999,105,0,0,88,0.2,0,0 +2017,9,5,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,25,60,98697,1252,1345,457,880,658,268,104810,37803,32155,12993,280,4.6,5,5,5000,3048,9,999999999,113,0,0,88,0.2,0,0 +2017,9,5,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,25,60,98697,1200,1345,457,835,658,249,99293,37191,29801,12135,300,4.6,5,5,5000,3048,9,999999999,113,0,0,88,0.2,0,0 +2017,9,5,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33.6,25.2,62,97841,1071,1345,454,724,632,221,85311,35113,26195,10758,320,4.1,5,5,4000,3000,9,999999999,114,0,0,88,0.2,0,0 +2017,9,5,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34,25,60,98697,874,1345,457,557,591,173,64899,31226,20266,8152,310,4.1,5,5,5000,3000,9,999999999,113,0,0,88,0.2,0,0 +2017,9,5,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34,25,60,98697,624,1345,457,349,406,161,39087,21200,18090,6519,320,4.1,5,5,4000,3000,9,999999999,113,0,0,88,0.2,0,0 +2017,9,5,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32.6,24.7,63,97687,336,1345,448,136,173,92,14798,4553,10130,3215,320,3.6,5,5,4000,3000,9,999999999,109,0,0,88,0.2,0,0 +2017,9,5,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33,25,63,98689,31,1345,451,6,0,6,576,0,580,222,320,3.1,5,5,4000,3000,9,999999999,113,0,0,88,0.2,0,0 +2017,9,5,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32,25,67,98680,0,139,445,0,0,0,0,0,0,0,290,2.6,5,5,4000,3000,9,999999999,113,0,0,88,0.2,0,0 +2017,9,5,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29.2,24,74,97785,0,0,453,0,0,0,0,0,0,0,270,2.6,9,9,4000,3000,9,999999999,102,0,0,88,0.2,0,0 +2017,9,5,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,24,84,98637,0,0,440,0,0,0,0,0,0,0,280,5.7,9,9,2200,3048,0,19999999,103,0,0,88,0.2,0,0 +2017,9,5,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,25,84,98646,0,0,447,0,0,0,0,0,0,0,260,2.1,9,9,4000,3048,0,19999999,114,0,0,88,0.2,0,0 +2017,9,5,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26.8,25.1,90,97900,0,0,440,0,0,0,0,0,0,0,270,2.1,9,9,4000,3000,0,19999999,114,0,0,88,0.2,0,0 +2017,9,6,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,25,89,98637,0,0,441,0,0,0,0,0,0,0,250,1.5,9,9,4000,3048,0,19999999,114,0,0,88,0.2,0,0 +2017,9,6,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,24,84,98637,0,0,415,0,0,0,0,0,0,0,227,0,5,5,4000,3048,0,19999999,103,0,0,88,0.2,0,0 +2017,9,6,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26.4,25,92,97828,0,0,407,0,0,0,0,0,0,0,278,0,3,3,4000,77777,0,19999999,113,0,0,88,0.2,0,0 +2017,9,6,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,26,24,89,98628,0,0,403,0,0,0,0,0,0,0,118,0,3,3,4000,77777,0,19999999,103,0,0,88,0.2,0,0 +2017,9,6,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,24,89,98628,0,0,410,0,0,0,0,0,0,0,290,2.1,5,5,3500,3048,0,19999999,103,0,0,88,0.2,0,0 +2017,9,6,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,24.3,90,97903,0,0,410,0,0,0,0,0,0,0,29,0,5,5,2000,3000,9,999999999,106,0,0,88,0.2,0,0 +2017,9,6,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,24,84,98637,125,553,440,14,0,14,1370,0,1380,550,250,1.5,9,9,3000,3048,9,999999999,103,0,0,88,0.2,0,0 +2017,9,6,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,24,84,98637,428,1346,440,110,5,108,12184,188,12061,4049,260,2.1,9,9,3000,3048,9,999999999,103,0,0,88,0.2,0,0 +2017,9,6,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28.8,24.8,79,98044,706,1346,451,231,17,222,25576,1056,24733,8729,270,3.1,9,9,2000,3000,9,999999999,111,0,0,88,0.2,0,0 +2017,9,6,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,25,75,98663,941,1346,459,340,86,280,38561,5599,31966,12173,320,4.1,9,9,4000,3048,9,999999999,113,0,0,88,0.2,0,0 +2017,9,6,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,25,70,98672,1117,1346,439,764,584,280,88983,35721,32773,13082,310,4.1,5,5,4000,3048,9,999999999,113,0,0,88,0.2,0,0 +2017,9,6,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32.4,23.5,60,98046,1222,1346,445,857,665,254,102250,39231,30464,12360,270,3.1,5,5,4000,3000,9,999999999,97,0,0,88,0.2,0,0 +2017,9,6,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,25,63,98689,1249,1346,451,878,658,267,104507,37792,32029,12947,280,2.6,5,5,4000,3048,9,999999999,113,0,0,88,0.2,0,0 +2017,9,6,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,25,60,98697,1196,1346,457,832,658,248,98945,37172,29650,12080,280,3.6,5,5,4000,3048,9,999999999,113,0,0,88,0.2,0,0 +2017,9,6,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33.6,25.8,64,97822,1067,1346,455,720,631,220,84722,34350,26091,10722,270,3.1,5,5,4000,1050,9,999999999,121,0,0,88,0.2,0,0 +2017,9,6,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34,25,60,98697,870,1346,457,553,589,172,64429,31121,20189,8111,280,2.6,5,5,4000,1050,9,999999999,113,0,0,88,0.2,0,0 +2017,9,6,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34,24,56,98697,619,1346,455,345,405,159,38750,21709,17937,6445,310,2.6,5,5,4000,1050,9,999999999,102,0,0,88,0.2,0,0 +2017,9,6,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33.2,24.7,61,97653,331,1346,451,132,167,91,14406,4251,9960,3153,270,2.6,5,5,4000,1050,9,999999999,109,0,0,88,0.2,0,0 +2017,9,6,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30,24,70,98663,25,1346,432,5,0,5,468,0,472,183,160,4.1,5,5,3500,1050,9,999999999,103,0,0,88,0.2,0,0 +2017,9,6,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29,23,70,98654,0,112,425,0,0,0,0,0,0,0,230,3.1,5,5,3500,1050,9,999999999,93,0,0,88,0.2,0,0 +2017,9,6,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29.4,23.3,70,97884,0,0,428,0,0,0,0,0,0,0,104,0,5,5,2000,1050,9,999999999,95,0,0,88,0.2,0,0 +2017,9,6,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29,23,70,98654,0,0,425,0,0,0,0,0,0,0,240,2.6,5,5,3500,1050,9,999999999,93,0,0,88,0.2,0,0 +2017,9,6,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29,23,70,98654,0,0,425,0,0,0,0,0,0,0,260,2.1,5,5,3500,1050,9,999999999,93,0,0,88,0.2,0,0 +2017,9,6,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28.6,24,76,97945,0,0,424,0,0,0,0,0,0,0,230,1.5,5,5,2000,1050,9,999999999,102,0,0,88,0.2,0,0 +2017,9,7,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28,23,74,98646,0,0,419,0,0,0,0,0,0,0,210,1.5,5,5,3500,1050,9,999999999,93,0,0,88,0.2,0,0 +2017,9,7,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26,24,89,98628,0,0,410,0,0,0,0,0,0,0,180,1.5,5,5,3500,1050,9,999999999,103,0,0,88,0.2,0,0 +2017,9,7,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25.4,22.4,83,97927,0,0,404,0,0,0,0,0,0,0,206,0,5,5,2000,1050,9,999999999,88,0,0,88,0.2,0,0 +2017,9,7,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,23,84,98628,0,0,432,0,0,0,0,0,0,0,120,3.1,9,9,3500,3048,9,999999999,93,0,0,88,0.2,0,0 +2017,9,7,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,23,89,98619,0,0,439,0,0,0,0,0,0,0,160,2.6,10,10,3500,3048,0,919999999,94,0,0,88,0.2,0,0 +2017,9,7,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24.6,23.7,95,97355,0,0,425,0,0,0,0,0,0,0,180,3.6,9,9,2000,3000,0,919999999,99,0,0,88,0.2,5,0 +2017,9,7,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,23,94,98610,123,542,421,14,0,14,1332,0,1341,534,170,3.1,9,9,2500,3048,0,919999999,94,0,0,88,0.2,0,0 +2017,9,7,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,23,94,98610,426,1346,421,109,5,108,12139,193,12017,4025,180,2.1,9,9,3000,3048,0,919999999,94,0,0,88,0.2,0,0 +2017,9,7,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25.6,24.7,95,98162,704,1346,432,230,17,221,25491,1056,24652,8693,270,2.1,9,9,2000,3000,0,919999999,110,0,0,88,0.2,0,0 +2017,9,7,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,24,84,98637,939,1346,440,340,28,321,38152,1987,36227,13287,270,3.1,9,9,3500,3048,0,919999999,103,0,0,88,0.2,0,0 +2017,9,7,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,25,89,98637,1115,1346,441,423,66,368,48160,4634,42248,15903,280,2.1,9,9,3500,3048,0,919999999,114,0,0,88,0.2,0,0 +2017,9,7,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28.6,26.1,86,98169,1220,1346,452,472,90,390,54234,6108,45164,17032,270,2.1,9,9,2000,1050,0,919999999,126,0,0,88,0.2,0,0 +2017,9,7,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,25,79,98654,1247,1346,428,875,563,354,101902,36907,41545,16037,270,2.6,5,5,4000,3048,0,919999999,114,0,0,88,0.2,0,0 +2017,9,7,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,24,70,98663,1193,1346,432,831,567,328,96716,37445,38486,14993,270,2.1,5,5,4000,3048,0,919999999,103,0,0,88,0.2,0,0 +2017,9,7,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.8,25.3,69,97963,1063,1346,470,398,88,328,45381,5920,37697,14448,320,2.6,9,9,4000,3048,0,919999999,116,0,0,88,0.2,0,0 +2017,9,7,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,26,71,98680,866,1346,472,304,29,286,33955,1919,32077,11721,300,2.6,9,9,4000,3048,0,919999999,125,0,0,88,0.2,0,0 +2017,9,7,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,26,67,98689,614,1346,479,189,35,173,20953,1854,19273,6794,340,4.1,9,9,4000,3048,0,919999999,125,0,0,88,0.2,0,0 +2017,9,7,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31.4,25.2,70,97764,325,1346,468,71,0,71,6909,0,6965,2642,320,2.1,9,9,4000,3000,0,919999999,115,0,0,88,0.2,0,0 +2017,9,7,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26,75,98672,19,1346,466,2,0,2,198,0,200,82,330,3.1,9,9,4000,3048,0,919999999,125,0,0,88,0.2,0,0 +2017,9,7,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,25,70,98672,0,86,465,0,0,0,0,0,0,0,360,2.1,9,9,4000,3048,0,919999999,113,0,0,88,0.2,0,0 +2017,9,7,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28.8,25.4,82,97937,0,0,452,0,0,0,0,0,0,0,360,2.1,9,9,4000,3000,0,919999999,118,0,0,88,0.2,0,0 +2017,9,7,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,0,0,460,0,0,0,0,0,0,0,30,2.1,9,9,3500,3048,0,919999999,125,0,0,88,0.2,0,0 +2017,9,7,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,0,0,435,0,0,0,0,0,0,0,10,1.5,5,5,3500,3048,0,919999999,125,0,0,88,0.2,0,0 +2017,9,7,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28.2,25.4,85,97980,0,0,424,0,0,0,0,0,0,0,106,0,5,5,2000,3000,0,919999999,118,0,0,88,0.2,0,0 +2017,9,8,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,26,84,98654,0,0,429,0,0,0,0,0,0,0,162,0,5,5,3000,3048,0,919999999,125,0,0,88,0.2,0,0 +2017,9,8,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,26,89,98646,0,0,423,0,0,0,0,0,0,0,339,0,5,5,3000,3048,0,919999999,126,0,0,88,0.2,0,0 +2017,9,8,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,26.8,24.8,89,97920,0,0,415,0,0,0,0,0,0,0,198,0,5,5,2000,3048,0,919999999,111,0,0,88,0.2,0,0 +2017,9,8,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,26,89,98646,0,0,423,0,0,0,0,0,0,0,250,1.5,5,5,3000,3048,0,919999999,126,0,0,88,0.2,0,0 +2017,9,8,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,26,94,98637,0,0,418,0,0,0,0,0,0,0,260,1.5,5,5,3000,3048,0,919999999,126,0,0,88,0.2,0,0 +2017,9,8,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,26.8,25.7,94,97997,0,0,416,0,0,0,0,0,0,0,214,0,5,5,2000,3048,9,999999999,122,0,0,88,0.2,0,0 +2017,9,8,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,26,94,98637,121,531,418,24,0,24,2308,0,2325,843,40,0,5,5,1800,3048,9,999999999,126,0,0,88,0.2,0,0 +2017,9,8,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27,26,94,98637,424,1347,411,207,270,122,22597,10291,13390,4358,250,2.1,3,3,1200,3048,9,999999999,126,0,0,88,0.2,0,0 +2017,9,8,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.6,26.1,86,98188,702,1347,403,443,639,110,51804,26788,12887,5087,290,2.6,0,0,4000,3048,9,999999999,126,0,0,88,0.2,0,0 +2017,9,8,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,937,1347,435,609,594,196,70873,31656,22959,9294,320,3.1,5,5,2500,77777,9,999999999,125,0,0,88,0.2,0,0 +2017,9,8,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,26,71,98680,1113,1347,446,759,630,239,89326,34858,28282,11562,320,3.1,5,5,3000,3048,9,999999999,125,0,0,88,0.2,0,0 +2017,9,8,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,26.1,68,98234,1218,1347,451,849,655,258,100741,36109,30758,12500,320,3.1,5,5,2000,3048,9,999999999,126,0,0,88,0.2,0,0 +2017,9,8,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,25,63,98689,1244,1347,451,873,660,265,103928,37787,31711,12832,320,3.1,5,5,3500,3048,9,999999999,113,0,0,88,0.2,0,0 +2017,9,8,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,26,63,98697,1190,1347,458,825,655,247,97882,35900,29494,12036,320,3.1,5,5,3500,3048,9,999999999,124,0,0,88,0.2,0,0 +2017,9,8,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34,24,56,98001,1059,1347,455,716,637,216,84482,36367,25607,10509,340,4.1,5,5,4000,3048,9,999999999,101,0,0,88,0.2,0,0 +2017,9,8,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,23,50,98705,861,1347,460,548,594,168,64011,32987,19740,7906,340,4.1,5,5,4500,3048,9,999999999,92,0,0,88,0.2,0,0 +2017,9,8,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35,24,53,98705,609,1347,454,358,531,118,41076,24335,13620,5103,320,3.1,3,3,5000,3048,9,999999999,102,0,0,88,0.2,0,0 +2017,9,8,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32.6,24.3,62,97833,320,1347,440,133,200,86,14543,4646,9395,2978,320,4.1,3,3,2000,77777,9,999999999,105,0,0,88,0.2,0,0 +2017,9,8,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33,24,59,98689,13,1347,442,3,0,3,264,0,266,106,340,3.1,3,3,5000,77777,9,999999999,102,0,0,88,0.2,0,0 +2017,9,8,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32,24,63,98680,0,60,437,0,0,0,0,0,0,0,340,3.1,3,3,4500,77777,9,999999999,102,0,0,88,0.2,0,0 +2017,9,8,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30.2,23.6,68,97900,0,0,426,0,0,0,0,0,0,0,340,3.6,3,3,4000,77777,9,999999999,98,0,0,88,0.2,0,0 +2017,9,8,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31,25,70,98672,0,0,432,0,0,0,0,0,0,0,330,2.6,3,3,3500,77777,9,999999999,113,0,0,88,0.2,0,0 +2017,9,8,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30,24,70,98663,0,0,425,0,0,0,0,0,0,0,340,2.1,3,3,3500,77777,9,999999999,103,0,0,88,0.2,0,0 +2017,9,8,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28.4,25.3,83,97943,0,0,418,0,0,0,0,0,0,0,340,2.1,3,3,2000,77777,9,999999999,116,0,0,88,0.2,0,0 +2017,9,9,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29,25,79,98654,0,0,421,0,0,0,0,0,0,0,270,1,3,3,3500,77777,9,999999999,114,0,0,88,0.2,0,0 +2017,9,9,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,27,25,89,98637,0,0,410,0,0,0,0,0,0,0,297,0,3,3,3200,77777,9,999999999,114,0,0,88,0.2,0,0 +2017,9,9,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27.4,24.5,84,97866,0,0,412,0,0,0,0,0,0,0,6,0,3,3,2000,77777,9,999999999,108,0,0,88,0.2,0,0 +2017,9,9,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,27,25,89,98637,0,0,410,0,0,0,0,0,0,0,218,0,3,3,3200,77777,9,999999999,114,0,0,88,0.2,0,0 +2017,9,9,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,27,25,89,98637,0,0,410,0,0,0,0,0,0,0,218,0,3,3,3200,77777,9,999999999,114,0,0,88,0.2,0,0 +2017,9,9,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27.2,25.5,90,97952,0,0,412,0,0,0,0,0,0,0,237,0,3,3,2000,77777,9,999999999,119,0,0,88,0.2,0,0 +2017,9,9,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27,25,89,98637,118,520,410,25,0,25,2375,0,2393,856,270,1.5,3,3,3200,77777,9,999999999,114,0,0,88,0.2,0,0 +2017,9,9,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27,25,89,98637,422,1348,410,206,271,121,22521,10712,13323,4326,270,1.5,3,3,3000,77777,9,999999999,114,0,0,88,0.2,0,0 +2017,9,9,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29.8,25.9,80,98082,700,1348,427,436,610,119,50652,26702,13897,5442,280,2.1,3,3,2000,77777,9,999999999,124,0,0,88,0.2,0,0 +2017,9,9,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31,26,75,98672,935,1348,434,644,739,132,77296,33569,15920,6659,280,3.1,3,3,3200,77777,9,999999999,125,0,0,88,0.2,0,0 +2017,9,9,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32,26,71,98680,1111,1348,439,803,780,162,97379,36877,19673,8319,300,3.1,3,3,3500,77777,9,999999999,125,0,0,88,0.2,0,0 +2017,9,9,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.4,24,58,98025,1215,1348,452,850,633,280,100485,38542,33320,13350,320,3.1,5,5,2000,77777,9,999999999,102,0,0,88,0.2,0,0 +2017,9,9,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,25,63,98689,1241,1348,451,871,660,263,103628,37783,31547,12773,320,3.1,5,5,4000,3048,9,999999999,113,0,0,88,0.2,0,0 +2017,9,9,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,25,60,98697,1187,1348,457,824,660,244,97917,37130,29121,11886,340,3.1,5,5,4000,3048,9,999999999,113,0,0,88,0.2,0,0 +2017,9,9,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34.4,25.1,59,97770,1055,1348,459,711,635,215,83783,35082,25419,10448,320,3.1,5,5,4000,3000,9,999999999,113,0,0,88,0.2,0,0 +2017,9,9,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,25,56,98705,857,1348,463,542,570,180,62782,30778,20981,8341,310,4.1,5,5,4000,3048,9,999999999,112,0,0,88,0.2,0,0 +2017,9,9,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,25,56,98705,604,1348,463,333,397,156,37273,20309,17496,6255,320,3.6,5,5,4000,3048,9,999999999,112,0,0,88,0.2,0,0 +2017,9,9,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33,23.8,59,97622,314,1348,449,122,155,86,13331,3668,9431,2961,320,4.1,5,5,4000,3048,9,999999999,99,0,0,88,0.2,0,0 +2017,9,9,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,24,59,98689,7,1348,449,1,0,1,138,0,139,57,320,3.6,5,5,4000,3048,9,999999999,102,0,0,88,0.2,0,0 +2017,9,9,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,25,67,98680,0,33,445,0,0,0,0,0,0,0,330,2.6,5,5,4000,3048,9,999999999,113,0,0,88,0.2,0,0 +2017,9,9,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.4,25.6,76,97707,0,0,436,0,0,0,0,0,0,0,320,2.1,5,5,2000,3048,9,999999999,119,0,0,88,0.2,0,0 +2017,9,9,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,25,70,98672,0,0,439,0,0,0,0,0,0,0,310,2.1,5,5,3000,3048,9,999999999,113,0,0,88,0.2,0,0 +2017,9,9,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,30,25,75,98663,0,0,427,0,0,0,0,0,0,0,252,0,3,3,3000,3048,9,999999999,113,0,0,88,0.2,0,0 +2017,9,9,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28.8,25.4,82,97810,0,0,420,0,0,0,0,0,0,0,195,0,3,3,2000,77777,9,999999999,117,0,0,88,0.2,0,0 +2017,9,10,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,29,25,79,98654,0,0,421,0,0,0,0,0,0,0,207,0,3,3,3000,77777,9,999999999,114,0,0,88,0.2,0,0 +2017,9,10,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,29,25,79,98654,0,0,421,0,0,0,0,0,0,0,187,0,3,3,3000,77777,9,999999999,114,0,0,88,0.2,0,0 +2017,9,10,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28.4,25.3,83,97856,0,0,418,0,0,0,0,0,0,0,283,0,3,3,2000,77777,9,999999999,116,0,0,88,0.2,0,0 +2017,9,10,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,25,79,98654,0,0,404,0,0,0,0,0,0,0,190,2.1,0,0,3000,77777,9,999999999,114,0,0,88,0.2,0,0 +2017,9,10,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,25,79,98654,0,0,404,0,0,0,0,0,0,0,35,0,0,0,3000,77777,9,999999999,114,0,0,88,0.2,0,0 +2017,9,10,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27.2,24.6,86,97894,0,0,394,0,0,0,0,0,0,0,119,0,0,0,2000,77777,9,999999999,109,0,0,88,0.2,0,0 +2017,9,10,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,25,84,98646,116,510,398,25,0,25,2351,0,2368,845,90,1.5,0,0,2100,77777,9,999999999,114,0,0,88,0.2,0,0 +2017,9,10,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,25,84,98646,419,1348,398,207,343,101,23003,11595,11208,3798,104,0,0,0,1500,77777,9,999999999,114,0,0,88,0.2,0,0 +2017,9,10,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31.4,24.6,67,98047,698,1348,416,441,645,107,51750,28407,12637,4977,326,0,0,0,2000,77777,9,999999999,108,0,0,88,0.2,0,0 +2017,9,10,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,33,24,59,98689,933,1348,424,653,780,114,79459,36355,13916,5839,67,0,0,0,2500,77777,9,999999999,102,0,0,88,0.2,0,0 +2017,9,10,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,35,25,56,98705,1109,1348,455,803,811,137,98673,37724,16853,7169,251,0,3,3,3000,77777,9,999999999,112,0,0,88,0.2,0,0 +2017,9,10,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35.6,19.7,39,98072,1213,1348,452,906,821,168,111831,46154,20885,8721,270,2.6,3,3,2000,77777,9,999999999,66,0,0,88,0.2,0,0 +2017,9,10,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37,24,48,98722,1238,1348,473,870,632,290,102853,38825,34538,13780,290,2.1,5,5,3500,77777,9,999999999,101,0,0,88,0.2,0,0 +2017,9,10,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37,24,48,98722,1183,1348,473,822,665,240,97954,38302,28719,11726,300,2.6,5,5,3500,77777,9,999999999,101,0,0,88,0.2,0,0 +2017,9,10,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37,22.6,44,97860,1051,1348,471,711,644,209,84148,37793,24903,10223,320,3.1,5,5,4000,77777,9,999999999,88,0,0,88,0.2,0,0 +2017,9,10,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,21,42,98714,852,1348,463,542,583,174,63224,34485,20421,8096,320,3.1,5,5,4000,3048,9,999999999,75,0,0,88,0.2,0,0 +2017,9,10,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,22,44,98714,599,1348,464,331,438,137,37533,22834,15560,5658,340,4.1,5,5,4000,3048,9,999999999,83,0,0,88,0.2,0,0 +2017,9,10,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.2,22.5,48,97728,309,1348,453,126,191,83,13826,4552,9073,2854,320,4.1,3,3,4000,3048,9,999999999,87,0,0,88,0.2,0,0 +2017,9,10,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34,22,50,98697,0,1354,445,0,0,0,0,0,0,0,320,3.1,3,3,4000,3048,9,999999999,83,0,0,88,0.2,0,0 +2017,9,10,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33,23,56,98689,0,0,441,0,0,0,0,0,0,0,30,2.1,3,3,4000,3048,9,999999999,92,0,0,88,0.2,0,0 +2017,9,10,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.2,24.3,67,97880,0,0,432,0,0,0,0,0,0,0,70,1.5,3,3,2000,3048,9,999999999,105,0,0,88,0.2,0,0 +2017,9,10,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31,25,70,98672,0,0,432,0,0,0,0,0,0,0,90,2.1,3,3,3500,3048,9,999999999,113,0,0,88,0.2,0,0 +2017,9,10,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31,25,70,98672,0,0,414,0,0,0,0,0,0,0,110,1.5,0,0,3500,3048,9,999999999,113,0,0,88,0.2,0,0 +2017,9,10,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30,24.9,74,98064,0,0,409,0,0,0,0,0,0,0,140,2.1,0,0,2000,3048,9,999999999,112,0,0,88,0.2,0,0 +2017,9,11,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,25,75,98663,0,0,409,0,0,0,0,0,0,0,100,1.5,0,0,3500,77777,9,999999999,113,0,0,88,0.2,0,0 +2017,9,11,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,25,75,98663,0,0,409,0,0,0,0,0,0,0,80,1.5,0,0,3500,77777,9,999999999,113,0,0,88,0.2,0,0 +2017,9,11,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,29.2,25.2,79,98077,0,0,405,0,0,0,0,0,0,0,76,0,0,0,2000,77777,9,999999999,115,0,0,88,0.2,0,0 +2017,9,11,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,25,79,98654,0,0,428,0,0,0,0,0,0,0,80,1.5,5,5,3500,3048,0,99999999,114,0,0,88,0.2,0,0 +2017,9,11,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,25,79,98654,0,0,428,0,0,0,0,0,0,0,120,1.5,5,5,3500,1219,0,99999999,114,0,0,88,0.2,0,0 +2017,9,11,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28.2,25.1,83,98068,0,0,423,0,0,0,0,0,0,0,110,2.1,5,5,2000,77777,9,999999999,114,0,0,88,0.2,0,0 +2017,9,11,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,25,79,98654,114,499,428,23,0,23,2148,0,2164,785,140,2.1,5,5,3000,3048,9,999999999,114,0,0,88,0.2,0,0 +2017,9,11,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,25,79,98654,417,1349,453,106,5,105,11749,189,11613,3895,359,0,9,9,3000,3048,9,999999999,114,0,0,88,0.2,0,0 +2017,9,11,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31.2,25.6,72,98182,696,1349,441,408,406,199,45506,23334,22275,8033,90,2.1,5,5,2000,3000,9,999999999,120,0,0,88,0.2,0,0 +2017,9,11,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,33,25,63,98689,931,1349,451,605,613,183,70878,32789,21481,8736,86,0,5,5,4000,3048,9,999999999,113,0,0,88,0.2,0,0 +2017,9,11,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,34,23,53,98697,1107,1349,454,758,643,231,89680,38290,27448,11218,218,0,5,5,4000,3048,9,999999999,92,0,0,88,0.2,0,0 +2017,9,11,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35.6,24.9,54,98219,1210,1349,466,844,662,251,100462,37610,30049,12226,340,2.1,5,5,4000,77777,9,999999999,111,0,0,88,0.2,0,0 +2017,9,11,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35,22,47,98705,1235,1349,458,870,675,253,104199,41153,30464,12345,320,2.6,5,5,3500,77777,9,999999999,83,0,0,88,0.2,0,0 +2017,9,11,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,21,44,98705,1180,1349,457,823,678,232,98648,41458,27911,11396,320,4.1,5,5,4000,3048,9,999999999,75,0,0,88,0.2,0,0 +2017,9,11,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,24.4,51,98095,1047,1349,468,705,588,249,82097,35524,29156,11720,320,5.1,5,5,4000,3000,9,999999999,105,0,0,88,0.2,0,0 +2017,9,11,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35,24,53,98705,847,1349,488,297,81,246,33545,5249,27962,10464,350,5.7,9,9,4000,3000,9,999999999,102,0,0,88,0.2,0,0 +2017,9,11,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,26,63,98697,594,1349,485,180,33,166,19968,1699,18449,6463,330,4.1,9,9,4000,3048,9,999999999,124,0,0,88,0.2,0,0 +2017,9,11,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32.6,25,64,97930,303,1349,475,64,0,64,6179,0,6229,2363,320,3.1,9,9,4000,3000,9,999999999,112,0,0,88,0.2,0,0 +2017,9,11,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,25,63,98689,0,1328,477,0,0,0,0,0,0,0,330,3.1,9,9,4000,3048,9,999999999,113,0,0,88,0.2,0,0 +2017,9,11,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,24,59,98689,0,0,449,0,0,0,0,0,0,0,340,3.6,5,5,4000,3048,9,999999999,102,0,0,88,0.2,0,0 +2017,9,11,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29.4,23.3,70,98030,0,0,428,0,0,0,0,0,0,0,270,1.5,5,5,2000,3000,9,999999999,95,0,0,88,0.2,0,0 +2017,9,11,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,23,70,98654,0,0,425,0,0,0,0,0,0,0,230,2.1,5,5,3500,3048,9,999999999,93,0,0,88,0.2,0,0 +2017,9,11,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,23,74,98646,0,0,419,0,0,0,0,0,0,0,270,2.1,5,5,3500,3048,9,999999999,93,0,0,88,0.2,0,0 +2017,9,11,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,25.2,86,98133,0,0,421,0,0,0,0,0,0,0,270,1.5,5,5,2000,3048,9,999999999,116,0,0,88,0.2,0,0 +2017,9,12,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,24,84,98637,0,0,415,0,0,0,0,0,0,0,240,2.1,5,5,3500,3048,9,999999999,103,0,0,88,0.2,0,0 +2017,9,12,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,25,89,98637,0,0,416,0,0,0,0,0,0,0,270,2.1,5,5,3500,3048,9,999999999,114,0,0,88,0.2,0,0 +2017,9,12,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27,25.6,92,98135,0,0,417,0,0,0,0,0,0,0,290,2.1,5,5,2000,3048,9,999999999,120,0,0,88,0.2,0,0 +2017,9,12,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27,25,89,98637,0,0,416,0,0,0,0,0,0,0,270,1.5,5,5,3000,3048,9,999999999,114,0,0,88,0.2,0,0 +2017,9,12,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27,25,89,98637,0,0,416,0,0,0,0,0,0,0,310,2.1,5,5,3000,3048,9,999999999,114,0,0,88,0.2,0,0 +2017,9,12,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26.6,24.3,87,98200,0,0,407,0,0,0,0,0,0,0,290,1.5,3,3,2000,77777,9,999999999,106,0,0,88,0.2,0,0 +2017,9,12,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26,24,89,98628,111,488,403,24,0,24,2241,0,2258,805,250,2.1,3,3,2500,77777,9,999999999,103,0,0,88,0.2,0,0 +2017,9,12,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27,24,84,98637,415,1350,409,202,329,101,22427,11604,11273,3794,270,2.1,3,3,2200,77777,9,999999999,103,0,0,88,0.2,0,0 +2017,9,12,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28.8,24.8,79,98297,694,1350,420,432,613,117,50286,27748,13679,5341,290,2.1,3,3,2000,77777,9,999999999,111,0,0,88,0.2,0,0 +2017,9,12,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31,24,66,98672,929,1350,431,641,748,127,77317,36081,15350,6405,310,3.1,3,3,2500,77777,9,999999999,102,0,0,88,0.2,0,0 +2017,9,12,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33,23,56,98689,1104,1350,441,802,706,225,95035,41619,26787,10978,340,3.1,3,3,2800,77777,9,999999999,92,0,0,88,0.2,0,0 +2017,9,12,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32.4,24.4,63,98231,1208,1350,473,468,162,323,54565,10471,37891,14834,320,3.1,9,9,2000,77777,9,999999999,106,0,0,88,0.2,0,0 +2017,9,12,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,25,60,98697,1232,1350,457,863,567,346,100407,36959,40548,15703,320,3.1,5,5,3500,3048,9,999999999,113,0,0,88,0.2,0,0 +2017,9,12,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,26,60,98705,1176,1350,464,813,658,241,96450,35833,28749,11762,320,3.1,5,5,3500,3048,9,999999999,124,0,0,88,0.2,0,0 +2017,9,12,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,24,53,98705,1043,1350,461,702,640,208,82882,36212,24693,10146,330,4.1,5,5,4500,3048,9,999999999,102,0,0,88,0.2,0,0 +2017,9,12,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,25,53,98714,843,1350,469,531,566,178,61370,30466,20659,8180,320,4.1,5,5,5000,3048,9,999999999,112,0,0,88,0.2,0,0 +2017,9,12,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,25,56,98705,588,1350,463,321,390,152,35889,19607,17022,6049,320,4.1,5,5,5000,3048,9,999999999,112,0,0,88,0.2,0,0 +2017,9,12,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33.8,23.1,54,97863,297,1350,453,112,142,81,12241,3004,8881,2766,320,4.6,5,5,4000,900,9,999999999,93,0,0,88,0.2,0,0 +2017,9,12,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,24,59,98689,0,1302,449,0,0,0,0,0,0,0,320,4.1,5,5,4500,3048,9,999999999,102,0,0,88,0.2,0,0 +2017,9,12,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32,24,63,98680,0,0,437,0,0,0,0,0,0,0,320,3.6,3,3,4000,3048,9,999999999,102,0,0,88,0.2,0,0 +2017,9,12,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31.2,24.3,67,97977,0,0,432,0,0,0,0,0,0,0,320,2.1,3,3,4000,77777,9,999999999,105,0,0,88,0.2,0,0 +2017,9,12,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31,24,66,98672,0,0,431,0,0,0,0,0,0,0,280,2.1,3,3,4000,77777,9,999999999,102,0,0,88,0.2,0,0 +2017,9,12,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31,24,66,98672,0,0,431,0,0,0,0,0,0,0,330,1.5,3,3,4000,77777,9,999999999,102,0,0,88,0.2,0,0 +2017,9,12,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29.2,24.9,78,98096,0,0,422,0,0,0,0,0,0,0,33,0,3,3,4000,77777,9,999999999,112,0,0,88,0.2,0,0 +2017,9,13,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,30,24,70,98663,0,0,425,0,0,0,0,0,0,0,251,0,3,3,3500,77777,9,999999999,103,0,0,88,0.2,0,0 +2017,9,13,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,29,24,74,98654,0,0,420,0,0,0,0,0,0,0,69,0,3,3,3500,77777,9,999999999,103,0,0,88,0.2,0,0 +2017,9,13,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28.6,24.9,80,98101,0,0,419,0,0,0,0,0,0,0,314,0,3,3,2000,77777,9,999999999,112,0,0,88,0.2,0,0 +2017,9,13,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,29,25,79,98654,0,0,421,0,0,0,0,0,0,0,212,0,3,3,3500,77777,9,999999999,114,0,0,88,0.2,0,0 +2017,9,13,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,28,24,79,98646,0,0,414,0,0,0,0,0,0,0,5,0,3,3,3500,77777,9,999999999,103,0,0,88,0.2,0,0 +2017,9,13,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27.6,25.3,87,98121,0,0,414,0,0,0,0,0,0,0,324,0,3,3,2000,77777,9,999999999,117,0,0,88,0.2,0,0 +2017,9,13,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,28,25,84,98646,109,478,415,23,0,23,2193,0,2209,789,61,0,3,3,3500,77777,9,999999999,114,0,0,88,0.2,0,0 +2017,9,13,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,28,25,84,98646,413,1351,415,200,326,101,22190,10898,11217,3775,354,0,3,3,2500,77777,9,999999999,114,0,0,88,0.2,0,0 +2017,9,13,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.4,24.9,68,98261,692,1351,416,436,642,107,51070,27888,12590,4948,270,1.5,0,0,2000,77777,9,999999999,112,0,0,88,0.2,0,0 +2017,9,13,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,25,67,98680,927,1351,420,647,777,114,78440,34967,13924,5840,280,2.1,0,0,3000,77777,9,999999999,113,0,0,88,0.2,0,0 +2017,9,13,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,25,60,98697,1102,1351,450,797,787,155,96855,38209,18987,8033,300,2.1,3,3,3500,77777,9,999999999,113,0,0,88,0.2,0,0 +2017,9,13,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36,24.4,51,98222,1205,1351,468,841,635,275,99298,38108,32663,13123,320,3.6,5,5,4000,77777,9,999999999,105,0,0,88,0.2,0,0 +2017,9,13,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,24,53,98705,1229,1351,461,862,668,255,102772,38951,30614,12421,330,3.6,5,5,4000,3048,9,999999999,102,0,0,88,0.2,0,0 +2017,9,13,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,25,53,98714,1172,1351,469,812,663,237,96457,37065,28366,11607,330,3.6,5,5,4000,3048,9,999999999,112,0,0,88,0.2,0,0 +2017,9,13,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36.6,22.8,45,97993,1039,1351,469,700,645,205,82825,37459,24332,9992,320,3.1,5,5,4000,3000,9,999999999,90,0,0,88,0.2,0,0 +2017,9,13,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,23,45,98722,838,1351,472,528,572,174,61347,32351,20318,8027,330,3.6,5,5,4000,3048,9,999999999,92,0,0,88,0.2,0,0 +2017,9,13,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,24,50,98714,583,1351,467,318,390,150,35545,20083,16843,5967,340,3.6,5,5,4000,3048,9,999999999,102,0,0,88,0.2,0,0 +2017,9,13,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.2,25.2,60,97749,291,1351,458,108,135,79,11794,2243,8669,2702,340,3.1,5,5,4000,3048,9,999999999,114,0,0,88,0.2,0,0 +2017,9,13,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34,25,60,98697,0,1276,450,0,0,0,0,0,0,0,330,3.1,3,3,4000,3048,9,999999999,113,0,0,88,0.2,0,0 +2017,9,13,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33,25,63,98689,0,0,444,0,0,0,0,0,0,0,340,2.6,3,3,4000,3048,9,999999999,113,0,0,88,0.2,0,0 +2017,9,13,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31.2,25.6,72,97948,0,0,434,0,0,0,0,0,0,0,360,2.1,3,3,4000,77777,9,999999999,119,0,0,88,0.2,0,0 +2017,9,13,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32,25,67,98680,0,0,438,0,0,0,0,0,0,0,10,1.5,3,3,3500,77777,9,999999999,113,0,0,88,0.2,0,0 +2017,9,13,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,32,25,67,98680,0,0,438,0,0,0,0,0,0,0,56,0,3,3,3500,77777,9,999999999,113,0,0,88,0.2,0,0 +2017,9,13,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29.2,25.8,82,98077,0,0,423,0,0,0,0,0,0,0,216,0,3,3,2000,77777,9,999999999,122,0,0,88,0.2,0,0 +2017,9,14,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,30,24,70,98663,0,0,425,0,0,0,0,0,0,0,153,0,3,3,3500,77777,9,999999999,103,0,0,88,0.2,0,0 +2017,9,14,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,30,24,70,98663,0,0,425,0,0,0,0,0,0,0,74,0,3,3,3500,77777,9,999999999,103,0,0,88,0.2,0,0 +2017,9,14,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28.8,25.7,83,98054,0,0,421,0,0,0,0,0,0,0,90,0,3,3,2000,77777,9,999999999,121,0,0,88,0.2,0,0 +2017,9,14,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,30,26,79,98663,0,0,428,0,0,0,0,0,0,0,102,0,3,3,3500,77777,9,999999999,125,0,0,88,0.2,0,0 +2017,9,14,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,29,25,79,98654,0,0,421,0,0,0,0,0,0,0,2,0,3,3,3000,77777,9,999999999,114,0,0,88,0.2,0,0 +2017,9,14,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,25.2,85,98027,0,0,422,0,0,0,0,0,0,0,18,0,5,5,2000,77777,9,999999999,115,0,0,88,0.2,0,0 +2017,9,14,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,25,79,98654,107,467,428,21,0,21,2027,0,2042,739,226,0,5,5,2500,3048,9,999999999,114,0,0,88,0.2,0,0 +2017,9,14,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,26,79,98663,411,1351,435,187,249,112,20516,8610,12277,4033,209,0,5,5,1500,3048,9,999999999,125,0,0,88,0.2,0,0 +2017,9,14,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30.6,25.8,76,98478,690,1351,438,403,405,196,44936,23029,22015,7924,94,0,5,5,2000,3000,9,999999999,123,0,0,88,0.2,0,0 +2017,9,14,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,32,26,71,98680,925,1351,472,332,85,274,37570,5399,31166,11843,210,0,9,9,2200,3048,9,999999999,125,0,0,88,0.2,0,0 +2017,9,14,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,33,25,63,98689,1100,1351,451,749,494,348,85492,33989,39976,15214,247,0,5,5,2500,3048,9,999999999,113,0,0,88,0.2,0,0 +2017,9,14,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,33.6,25.2,62,98173,1202,1351,481,464,91,383,53347,6327,44323,16720,46,0,9,9,2000,3000,9,999999999,115,0,0,88,0.2,0,0 +2017,9,14,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,26,60,98705,1226,1351,491,475,67,414,54332,4696,47734,17717,270,2.1,9,9,2500,3048,9,999999999,124,0,0,88,0.2,0,0 +2017,9,14,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,26,60,98705,1169,1351,491,448,67,390,51052,4625,44810,16762,280,2.1,9,9,2500,3048,9,999999999,124,0,0,88,0.2,0,0 +2017,9,14,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34.8,24.6,56,97959,1035,1351,488,385,29,363,43399,2130,41171,15185,270,2.1,9,9,2000,3000,9,999999999,107,0,0,88,0.2,0,0 +2017,9,14,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,22,47,98705,833,1351,485,291,42,266,32718,2979,29985,10885,350,2.1,9,9,2800,3048,9,999999999,83,0,0,88,0.2,0,0 +2017,9,14,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,23,53,98697,578,1351,454,314,351,164,34888,19641,18328,6320,50,3.1,5,5,2800,3048,9,999999999,92,0,0,88,0.2,0,0 +2017,9,14,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.2,24.7,61,97741,285,1351,451,105,130,78,11443,2109,8484,2636,50,2.6,5,5,2000,3048,9,999999999,109,0,0,88,0.2,0,0 +2017,9,14,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,23,56,98689,0,1250,448,0,0,0,0,0,0,0,350,2.6,5,5,2500,3048,9,999999999,92,0,0,88,0.2,0,0 +2017,9,14,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,24,59,98689,0,0,449,0,0,0,0,0,0,0,350,2.6,5,5,2500,3048,9,999999999,102,0,0,88,0.2,0,0 +2017,9,14,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30.6,25.2,73,97933,0,0,437,0,0,0,0,0,0,0,320,2.1,5,5,2000,77777,9,999999999,115,0,0,88,0.2,0,0 +2017,9,14,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,24,66,98672,0,0,438,0,0,0,0,0,0,0,60,1.5,5,5,2500,3048,9,999999999,102,0,0,88,0.2,0,0 +2017,9,14,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,25,70,98672,0,0,439,0,0,0,0,0,0,0,177,0,5,5,2500,3048,9,999999999,113,0,0,88,0.2,0,0 +2017,9,14,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29.6,25.7,80,98002,0,0,432,0,0,0,0,0,0,0,298,0,5,5,2000,77777,9,999999999,121,0,0,88,0.2,0,0 +2017,9,15,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,25,75,98663,0,0,433,0,0,0,0,0,0,0,66,0,5,5,2500,3048,9,999999999,113,0,0,88,0.2,0,0 +2017,9,15,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,25,75,98663,0,0,433,0,0,0,0,0,0,0,310,0,5,5,2500,3048,9,999999999,113,0,0,88,0.2,0,0 +2017,9,15,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,25.3,80,97958,0,0,428,0,0,0,0,0,0,0,270,0,5,5,2000,77777,9,999999999,116,0,0,88,0.2,0,0 +2017,9,15,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,26,79,98663,0,0,435,0,0,0,0,0,0,0,300,1.5,5,5,2500,3048,9,999999999,125,0,0,88,0.2,0,0 +2017,9,15,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,25,79,98654,0,0,428,0,0,0,0,0,0,0,290,1.5,5,5,2500,3048,9,999999999,114,0,0,88,0.2,0,0 +2017,9,15,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27.8,25.8,89,97938,0,0,422,0,0,0,0,0,0,0,179,0,5,5,2000,77777,9,999999999,123,0,0,88,0.2,0,0 +2017,9,15,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,29,25,79,98654,104,456,421,22,0,22,2106,0,2122,756,34,0,3,3,2500,77777,9,999999999,114,0,0,88,0.2,0,0 +2017,9,15,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30,24,70,98663,409,1352,425,198,325,100,21936,11216,11086,3719,30,2.1,3,3,3000,77777,9,999999999,103,0,0,88,0.2,0,0 +2017,9,15,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,30.6,25.8,76,98069,688,1352,413,431,637,108,50444,26722,12649,4965,269,0,0,0,2000,77777,9,999999999,122,0,0,88,0.2,0,0 +2017,9,15,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,25,67,98680,923,1352,420,643,777,113,77968,34899,13793,5781,300,2.1,0,0,1800,77777,9,999999999,113,0,0,88,0.2,0,0 +2017,9,15,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,25,63,98689,1097,1352,425,803,825,134,98586,38241,16534,7038,310,2.1,0,0,2200,77777,9,999999999,113,0,0,88,0.2,0,0 +2017,9,15,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.6,22.1,48,98702,1199,1352,430,902,784,207,109048,44737,25219,10419,320,2.1,0,0,2000,77777,9,999999999,84,0,0,88,0.2,0,0 +2017,9,15,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,25,56,98705,1223,1352,455,907,843,145,101828,91556,18905,5868,320,3.1,3,3,4000,77777,9,999999999,112,0,0,88,0.2,0,0 +2017,9,15,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35,25,56,98705,1165,1352,455,854,832,138,105607,38470,17175,7286,310,3.1,3,3,4000,77777,9,999999999,112,0,0,88,0.2,0,0 +2017,9,15,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35.8,19.2,38,97850,1030,1352,452,739,814,120,91312,43419,14873,6286,320,4.1,3,3,4000,77777,9,999999999,62,0,0,88,0.2,0,0 +2017,9,15,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36,19.1,37,98714,828,1352,453,556,676,142,65714,38705,16903,6768,310,5.1,3,3,5000,77777,9,999999999,62,0,0,88,0.2,0,0 +2017,9,15,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35,19,39,98705,572,1352,447,331,479,129,37639,25802,14708,5289,50,4.6,3,3,5000,77777,9,999999999,62,0,0,88,0.2,0,0 +2017,9,15,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33.6,22.2,51,97705,280,1352,443,108,163,75,11851,2963,8204,2545,320,4.1,3,3,4000,77777,9,999999999,85,0,0,88,0.2,0,0 +2017,9,15,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33,20,46,98689,0,1223,444,0,0,0,0,0,0,0,330,3.6,5,5,5000,77777,9,999999999,68,0,0,88,0.2,0,0 +2017,9,15,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32,23,59,98680,0,0,442,0,0,0,0,0,0,0,330,3.6,5,5,4000,77777,9,999999999,93,0,0,88,0.2,0,0 +2017,9,15,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,23.8,66,97868,0,0,437,0,0,0,0,0,0,0,340,2.1,5,5,4000,77777,9,999999999,100,0,0,88,0.2,0,0 +2017,9,15,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31,23,63,98672,0,0,436,0,0,0,0,0,0,0,330,2.6,5,5,4000,77777,9,999999999,93,0,0,88,0.2,0,0 +2017,9,15,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30,23,66,98663,0,0,424,0,0,0,0,0,0,0,350,2.6,3,3,4000,77777,9,999999999,93,0,0,88,0.2,0,0 +2017,9,15,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29.2,24.3,75,97892,0,0,428,0,0,0,0,0,0,0,360,2.6,5,5,4000,77777,9,999999999,105,0,0,88,0.2,0,0 +2017,9,16,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30,23,66,98663,0,0,431,0,0,0,0,0,0,0,30,1.5,5,5,4000,77777,9,999999999,93,0,0,88,0.2,0,0 +2017,9,16,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29,22,66,98654,0,0,424,0,0,0,0,0,0,0,360,2.6,5,5,4000,77777,9,999999999,84,0,0,88,0.2,0,0 +2017,9,16,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28.4,24.4,79,97865,0,0,423,0,0,0,0,0,0,0,219,0,5,5,4000,77777,9,999999999,106,0,0,88,0.2,0,0 +2017,9,16,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29,22,66,98654,0,0,424,0,0,0,0,0,0,0,360,2.1,5,5,4000,77777,9,999999999,84,0,0,88,0.2,0,0 +2017,9,16,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29,22,66,98654,0,0,424,0,0,0,0,0,0,0,20,1.5,5,5,4000,77777,9,999999999,84,0,0,88,0.2,0,0 +2017,9,16,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,24.1,84,97892,0,0,440,0,0,0,0,0,0,0,340,1.5,9,9,2000,3000,9,999999999,104,0,0,88,0.2,0,0 +2017,9,16,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,24,79,98646,102,445,446,11,0,11,1081,0,1089,433,78,0,9,9,2000,3048,9,999999999,103,0,0,88,0.2,0,0 +2017,9,16,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,24,79,98646,406,1353,446,103,2,102,11354,72,11333,3773,50,0,9,9,1200,3048,9,999999999,103,0,0,88,0.2,0,0 +2017,9,16,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,24.9,83,98086,686,1353,447,222,17,214,24604,1021,23805,8340,260,2.1,9,9,1000,3000,9,999999999,112,0,0,88,0.2,0,0 +2017,9,16,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,25,79,98654,920,1353,453,331,27,312,37033,1923,35170,12861,270,3.1,9,9,1800,3048,9,999999999,114,0,0,88,0.2,0,0 +2017,9,16,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,25,75,98663,1095,1353,459,413,66,360,46986,4655,41181,15518,320,2.1,9,9,2500,3048,9,999999999,113,0,0,88,0.2,0,0 +2017,9,16,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30.8,25.1,72,98051,1197,1353,464,462,67,402,52789,4810,46317,17229,290,2.1,9,9,2000,3000,9,999999999,114,0,0,88,0.2,0,0 +2017,9,16,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,24,66,98672,1219,1353,464,473,68,412,54276,4997,47602,17619,290,2.1,9,9,3000,3048,9,999999999,102,0,0,88,0.2,0,0 +2017,9,16,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,24,63,98680,1161,1353,470,446,68,388,50926,4922,44619,16646,320,3.1,9,9,3500,3048,9,999999999,102,0,0,88,0.2,0,0 +2017,9,16,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,23.5,64,97888,1026,1353,463,382,29,359,43048,2193,40819,15016,290,2.6,9,9,2000,3000,9,999999999,97,0,0,88,0.2,0,0 +2017,9,16,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,24,66,98672,823,1353,464,286,29,268,31921,1966,30155,10870,310,3.6,9,9,3500,3048,9,999999999,102,0,0,88,0.2,0,0 +2017,9,16,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,24,66,98672,567,1353,464,169,31,157,18811,1625,17465,6048,310,3.6,9,9,4000,3048,9,999999999,102,0,0,88,0.2,0,0 +2017,9,16,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30.8,24.2,68,97720,274,1353,463,55,0,55,5280,0,5322,2019,320,4.1,9,9,4000,3000,9,999999999,104,0,0,88,0.2,0,0 +2017,9,16,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,24,70,98663,0,1197,457,0,0,0,0,0,0,0,320,3.1,9,9,4000,3048,9,999999999,103,0,0,88,0.2,0,0 +2017,9,16,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,24,70,98663,0,0,457,0,0,0,0,0,0,0,320,2.6,9,9,3500,3048,9,999999999,103,0,0,88,0.2,0,0 +2017,9,16,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29.2,25.4,80,97882,0,0,455,0,0,0,0,0,0,0,340,2.1,9,9,2000,3000,9,999999999,117,0,0,88,0.2,0,0 +2017,9,16,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,24,70,98663,0,0,457,0,0,0,0,0,0,0,320,1.5,9,9,3500,3048,9,999999999,103,0,0,88,0.2,0,0 +2017,9,16,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,25,84,98646,0,0,447,0,0,0,0,0,0,0,280,2.6,9,9,3200,3048,9,999999999,114,0,0,88,0.2,0,0 +2017,9,16,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28.2,25.1,83,97873,0,0,448,0,0,0,0,0,0,0,270,2.1,9,9,2000,3000,9,999999999,114,0,0,88,0.2,0,0 +2017,9,17,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,24,84,98637,0,0,440,0,0,0,0,0,0,0,67,0,9,9,3500,3048,9,999999999,103,0,0,88,0.2,0,0 +2017,9,17,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,24,84,98637,0,0,440,0,0,0,0,0,0,0,54,0,9,9,3500,3048,9,999999999,103,0,0,88,0.2,0,0 +2017,9,17,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27.6,23.8,80,97888,0,0,443,0,0,0,0,0,0,0,277,0,9,9,2000,3000,9,999999999,100,0,0,88,0.2,0,0 +2017,9,17,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,24,84,98637,0,0,440,0,0,0,0,0,0,0,260,2.1,9,9,3500,3048,9,999999999,103,0,0,88,0.2,0,0 +2017,9,17,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,24,89,98628,0,0,434,0,0,0,0,0,0,0,39,0,9,9,3500,3048,9,999999999,103,0,0,88,0.2,0,0 +2017,9,17,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26.4,24.4,89,97897,0,0,437,0,0,0,0,0,0,0,270,3.1,9,9,2000,3000,9,999999999,107,0,0,88,0.2,0,0 +2017,9,17,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,24,94,98619,99,434,428,11,0,11,1061,0,1068,424,270,2.1,9,9,2500,3048,9,999999999,103,0,0,88,0.2,0,0 +2017,9,17,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,25,89,98637,404,1354,441,102,2,101,11245,55,11237,3743,260,2.1,9,9,2200,3048,9,999999999,114,0,0,88,0.2,0,0 +2017,9,17,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28.6,24.3,78,98003,683,1354,449,222,17,213,24560,1043,23756,8306,270,2.6,9,9,2000,3000,9,999999999,105,0,0,88,0.2,0,0 +2017,9,17,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,24,74,98654,918,1354,451,330,31,309,37060,2226,34913,12763,290,2.6,9,9,3000,3048,9,999999999,103,0,0,88,0.2,0,0 +2017,9,17,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,23,66,98663,1092,1354,456,414,91,340,47350,6534,39169,14923,320,2.6,9,9,3500,3048,9,999999999,93,0,0,88,0.2,0,0 +2017,9,17,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31.6,24.2,65,98010,1194,1354,441,831,574,326,96715,37615,38189,14895,290,3.6,5,5,2000,3000,9,999999999,104,0,0,88,0.2,0,0 +2017,9,17,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,23,59,98680,1216,1354,442,852,675,247,101769,40041,29658,12060,320,4.1,5,5,3500,3048,9,999999999,93,0,0,88,0.2,0,0 +2017,9,17,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,24,56,98697,1157,1354,455,800,669,229,95246,38162,27392,11235,320,5.1,5,5,4000,3048,9,999999999,102,0,0,88,0.2,0,0 +2017,9,17,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.8,23,50,97744,1021,1354,459,685,639,204,80836,37043,24146,9887,320,4.1,5,5,4000,3048,9,999999999,91,0,0,88,0.2,0,0 +2017,9,17,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,22,50,98697,818,1354,452,513,569,170,59577,32775,19776,7764,330,4.6,5,5,4000,3048,9,999999999,83,0,0,88,0.2,0,0 +2017,9,17,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,22,53,98689,561,1354,447,303,384,143,33886,20352,16140,5660,320,4.6,5,5,4000,3048,9,999999999,84,0,0,88,0.2,0,0 +2017,9,17,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31.6,24.2,65,97630,268,1354,441,95,117,72,10383,1497,7904,2439,320,4.1,5,5,4000,3000,9,999999999,104,0,0,88,0.2,0,0 +2017,9,17,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,23,63,98672,0,1171,436,0,0,0,0,0,0,0,330,4.1,5,5,3500,3048,9,999999999,93,0,0,88,0.2,0,0 +2017,9,17,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,23,66,98663,0,0,431,0,0,0,0,0,0,0,300,3.1,5,5,3500,3048,9,999999999,93,0,0,88,0.2,0,0 +2017,9,17,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29.2,24,74,97755,0,0,427,0,0,0,0,0,0,0,320,2.6,5,5,2000,3000,9,999999999,102,0,0,88,0.2,0,0 +2017,9,17,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,23,70,98654,0,0,425,0,0,0,0,0,0,0,280,2.1,5,5,3200,3048,9,999999999,93,0,0,88,0.2,0,0 +2017,9,17,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,23,74,98646,0,0,419,0,0,0,0,0,0,0,280,2.1,5,5,3000,3048,9,999999999,93,0,0,88,0.2,0,0 +2017,9,17,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27.8,22.8,74,97792,0,0,418,0,0,0,0,0,0,0,270,2.1,5,5,2000,3000,9,999999999,91,0,0,88,0.2,0,0 +2017,9,18,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,23,79,98637,0,0,414,0,0,0,0,0,0,0,270,2.1,5,5,3000,3048,9,999999999,93,0,0,88,0.2,0,0 +2017,9,18,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,23,84,98628,0,0,408,0,0,0,0,0,0,0,270,2.1,5,5,3000,3048,9,999999999,93,0,0,88,0.2,0,0 +2017,9,18,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26.4,22.6,80,97721,0,0,410,0,0,0,0,0,0,0,270,2.1,5,5,2000,3000,9,999999999,89,0,0,88,0.2,0,0 +2017,9,18,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,23,84,98628,0,0,408,0,0,0,0,0,0,0,280,2.1,5,5,2500,3048,9,999999999,93,0,0,88,0.2,0,0 +2017,9,18,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25,23,89,98619,0,0,403,0,0,0,0,0,0,0,185,0,5,5,2500,3048,9,999999999,94,0,0,88,0.2,0,0 +2017,9,18,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25.2,24.6,96,97789,0,0,406,0,0,0,0,0,0,0,270,2.6,5,5,2000,77777,9,999999999,109,0,0,88,0.2,0,0 +2017,9,18,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,22,89,98610,97,424,396,20,0,20,1878,0,1892,678,270,2.1,5,5,2200,3048,9,999999999,85,0,0,88,0.2,0,0 +2017,9,18,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,22,83,98619,402,1354,402,183,252,108,20174,9963,11981,3903,260,2.1,5,5,1500,3048,9,999999999,85,0,0,88,0.2,0,0 +2017,9,18,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26.6,23.4,83,97966,681,1354,412,398,497,149,45499,26236,17062,6416,290,2.1,5,5,2000,77777,9,999999999,97,0,0,88,0.2,0,0 +2017,9,18,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,23,74,98646,916,1354,419,595,622,175,69873,34767,20636,8361,270,2.1,5,5,2500,3048,9,999999999,93,0,0,88,0.2,0,0 +2017,9,18,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,23,63,98672,1089,1354,436,743,628,239,87457,38142,28299,11490,270,3.6,5,5,2800,3048,9,999999999,93,0,0,88,0.2,0,0 +2017,9,18,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,19.1,42,97913,1191,1354,423,898,852,150,111478,47213,18719,7859,320,4.6,0,0,2000,77777,9,999999999,62,0,0,88,0.2,0,0 +2017,9,18,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,20,42,98705,1212,1354,430,917,786,215,111030,47412,26141,10743,320,6.2,0,0,6000,77777,9,999999999,68,0,0,88,0.2,0,0 +2017,9,18,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,20,42,98705,1153,1354,430,862,782,197,104215,46478,23950,9915,340,6.2,0,0,6000,77777,9,999999999,68,0,0,88,0.2,0,0 +2017,9,18,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.6,22.5,44,97681,1017,1354,442,733,823,116,90251,40113,14288,6056,320,3.1,0,0,4000,77777,9,999999999,87,0,0,88,0.2,0,0 +2017,9,18,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,21,42,98714,813,1354,437,548,691,134,64829,37198,15869,6366,310,4.6,0,0,6000,77777,9,999999999,75,0,0,88,0.2,0,0 +2017,9,18,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,23,53,98697,556,1354,428,320,479,124,36187,22692,14054,5055,340,4.1,0,0,6000,77777,9,999999999,92,0,0,88,0.2,0,0 +2017,9,18,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.8,24.8,59,97619,262,1354,430,99,152,70,10762,1509,7607,2353,320,3.1,0,0,4000,77777,9,999999999,110,0,0,88,0.2,0,0 +2017,9,18,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,24,59,98689,0,1144,424,0,0,0,0,0,0,0,330,3.6,0,0,4000,77777,9,999999999,102,0,0,88,0.2,0,0 +2017,9,18,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,22,56,98680,0,0,416,0,0,0,0,0,0,0,290,4.1,0,0,4000,77777,9,999999999,84,0,0,88,0.2,0,0 +2017,9,18,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31,22.9,62,97703,0,0,412,0,0,0,0,0,0,0,320,3.1,0,0,4000,77777,9,999999999,91,0,0,88,0.2,0,0 +2017,9,18,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,21,55,98672,0,0,409,0,0,0,0,0,0,0,320,3.6,0,0,4000,77777,9,999999999,76,0,0,88,0.2,0,0 +2017,9,18,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,21,59,98663,0,0,404,0,0,0,0,0,0,0,320,2.6,0,0,4000,77777,9,999999999,76,0,0,88,0.2,0,0 +2017,9,18,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,22.7,67,97835,0,0,403,0,0,0,0,0,0,0,320,2.6,0,0,4000,77777,9,999999999,90,0,0,88,0.2,0,0 +2017,9,19,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,22,62,98663,0,0,405,0,0,0,0,0,0,0,320,2.6,0,0,4000,77777,9,999999999,84,0,0,88,0.2,0,0 +2017,9,19,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,21,62,98654,0,0,399,0,0,0,0,0,0,0,320,2.1,0,0,4000,77777,9,999999999,76,0,0,88,0.2,0,0 +2017,9,19,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,28.2,22.6,72,97786,0,0,396,0,0,0,0,0,0,0,156,0,0,0,4000,77777,9,999999999,89,0,0,88,0.2,0,0 +2017,9,19,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,21,66,98646,0,0,393,0,0,0,0,0,0,0,341,0,0,0,4000,77777,9,999999999,76,0,0,88,0.2,0,0 +2017,9,19,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,21,66,98646,0,0,393,0,0,0,0,0,0,0,306,0,0,0,4000,77777,9,999999999,76,0,0,88,0.2,0,0 +2017,9,19,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.2,23,83,97729,0,0,386,0,0,0,0,0,0,0,270,1.5,0,0,2000,77777,9,999999999,93,0,0,88,0.2,0,0 +2017,9,19,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,27,22,74,98637,94,413,413,19,0,19,1835,0,1848,662,27,0,5,5,3500,77777,9,999999999,84,0,0,88,0.2,0,0 +2017,9,19,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27,21,70,98637,400,1355,388,196,342,95,21793,12581,10614,3551,310,1.5,0,0,3500,77777,9,999999999,76,0,0,88,0.2,0,0 +2017,9,19,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,29.2,23.7,72,97921,679,1355,403,426,644,104,50014,28765,12246,4786,108,0,0,0,2000,77777,9,999999999,99,0,0,88,0.2,0,0 +2017,9,19,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,24,66,98672,913,1355,413,636,783,109,77326,36051,13317,5568,131,0,0,0,3200,77777,9,999999999,102,0,0,88,0.2,0,0 +2017,9,19,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,33,25,63,98689,1087,1355,425,794,828,131,97459,38141,16131,6870,198,0,0,0,3200,77777,9,999999999,113,0,0,88,0.2,0,0 +2017,9,19,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35.2,25.1,56,97874,1188,1355,464,825,638,266,97281,37283,31607,12755,90,2.1,5,5,2000,77777,9,999999999,113,0,0,88,0.2,0,0 +2017,9,19,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35,23,50,98705,1209,1355,460,846,676,244,101056,40027,29259,11914,140,2.1,5,5,3500,77777,9,999999999,92,0,0,88,0.2,0,0 +2017,9,19,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36,23,47,98714,1149,1355,466,795,675,223,94779,39237,26790,11000,50,2.1,5,5,3500,77777,9,999999999,92,0,0,88,0.2,0,0 +2017,9,19,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.4,22.9,46,97621,1012,1355,468,678,640,200,79951,37044,23713,9707,320,3.1,5,5,4000,77777,9,999999999,90,0,0,88,0.2,0,0 +2017,9,19,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,23,47,98714,808,1355,466,504,562,170,58332,31591,19710,7713,50,3.1,5,5,4500,3048,9,999999999,92,0,0,88,0.2,0,0 +2017,9,19,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,20,39,98714,550,1355,461,295,383,140,33122,20928,15769,5498,330,3.1,5,5,5000,3048,9,999999999,68,0,0,88,0.2,0,0 +2017,9,19,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34.4,23.8,54,97536,256,1355,450,94,139,68,10271,1411,7454,2294,360,3.6,3,3,4000,77777,9,999999999,99,0,0,88,0.2,0,0 +2017,9,19,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34,22,50,98697,0,1117,445,0,0,0,0,0,0,0,330,4.1,3,3,4500,77777,9,999999999,83,0,0,88,0.2,0,0 +2017,9,19,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33,19,44,98689,0,0,436,0,0,0,0,0,0,0,330,4.1,3,3,4000,77777,9,999999999,62,0,0,88,0.2,0,0 +2017,9,19,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,21,59,97704,0,0,421,0,0,0,0,0,0,0,340,2.1,3,3,2000,77777,9,999999999,75,0,0,88,0.2,0,0 +2017,9,19,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31,19,49,98672,0,0,424,0,0,0,0,0,0,0,350,2.1,3,3,3500,77777,9,999999999,62,0,0,88,0.2,0,0 +2017,9,19,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,30,19,52,98663,0,0,419,0,0,0,0,0,0,0,340,0,3,3,3500,77777,9,999999999,62,0,0,88,0.2,0,0 +2017,9,19,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27.8,21.9,70,97743,0,0,410,0,0,0,0,0,0,0,277,0,3,3,2000,77777,9,999999999,83,0,0,88,0.2,0,0 +2017,9,20,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,29,20,58,98654,0,0,415,0,0,0,0,0,0,0,0,0,3,3,3500,77777,9,999999999,69,0,0,88,0.2,0,0 +2017,9,20,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,28,20,62,98646,0,0,409,0,0,0,0,0,0,0,346,0,3,3,3500,77777,9,999999999,69,0,0,88,0.2,0,0 +2017,9,20,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,27,21.3,71,97697,0,0,389,0,0,0,0,0,0,0,138,0,0,0,2000,77777,9,999999999,78,0,0,88,0.2,0,0 +2017,9,20,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,20,66,98637,0,0,387,0,0,0,0,0,0,0,241,0,0,0,3000,77777,9,999999999,69,0,0,88,0.2,0,0 +2017,9,20,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,21,74,98628,0,0,383,0,0,0,0,0,0,0,44,0,0,0,3000,77777,9,999999999,76,0,0,88,0.2,0,0 +2017,9,20,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,25.6,22,81,97714,0,0,382,0,0,0,0,0,0,0,172,0,0,0,2000,77777,9,999999999,84,0,0,88,0.2,0,0 +2017,9,20,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,21,70,98637,92,402,388,20,0,20,1934,0,1948,684,237,0,0,0,2500,77777,9,999999999,76,0,0,88,0.2,0,0 +2017,9,20,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,22,74,98637,397,1356,389,194,340,94,21580,11963,10543,3527,347,0,0,0,2500,77777,9,999999999,84,0,0,88,0.2,0,0 +2017,9,20,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,28.6,23.7,75,97838,677,1356,400,424,644,103,49822,28699,12172,4754,213,0,0,0,2000,77777,9,999999999,99,0,0,88,0.2,0,0 +2017,9,20,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,24,63,98680,911,1356,419,634,784,108,77104,36016,13216,5524,290,1.5,0,0,2800,77777,9,999999999,102,0,0,88,0.2,0,0 +2017,9,20,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,24,56,98697,1084,1356,430,793,834,127,97647,39479,15718,6691,260,2.1,0,0,3500,77777,9,999999999,102,0,0,88,0.2,0,0 +2017,9,20,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.2,19.8,38,97814,1184,1356,436,892,785,207,107859,47289,25183,10380,140,2.1,0,0,4000,77777,9,999999999,66,0,0,88,0.2,0,0 +2017,9,20,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,22,42,98722,1205,1356,444,908,786,210,109712,45141,25509,10527,130,2.1,0,0,4000,77777,9,999999999,83,0,0,88,0.2,0,0 +2017,9,20,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,21,40,98722,1145,1356,443,853,782,194,103057,45345,23503,9754,150,1.5,0,0,4000,77777,9,999999999,75,0,0,88,0.2,0,0 +2017,9,20,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.4,22,41,97551,1008,1356,446,725,826,112,80746,88037,15475,2770,320,1.5,0,0,4000,77777,9,999999999,82,0,0,88,0.2,0,0 +2017,9,20,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,38,19,33,98730,803,1356,446,541,696,130,64165,38736,15470,6184,10,2.1,0,0,4500,77777,9,999999999,61,0,0,88,0.2,0,0 +2017,9,20,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,19,35,98722,544,1356,440,314,484,120,35616,24842,13636,4872,340,4.6,0,0,4500,77777,9,999999999,62,0,0,88,0.2,0,0 +2017,9,20,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.8,19,39,97433,250,1356,427,93,145,66,10174,2158,7275,2224,340,4.1,0,0,4000,77777,9,999999999,61,0,0,88,0.2,0,0 +2017,9,20,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,19,39,98705,0,1091,429,0,0,0,0,0,0,0,320,3.6,0,0,4000,77777,9,999999999,62,0,0,88,0.2,0,0 +2017,9,20,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,21,52,98680,0,0,415,0,0,0,0,0,0,0,10,2.1,0,0,4000,77777,9,999999999,76,0,0,88,0.2,0,0 +2017,9,20,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.2,23.1,70,97483,0,0,402,0,0,0,0,0,0,0,320,2.1,0,0,4000,77777,9,999999999,93,0,0,88,0.2,0,0 +2017,9,20,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,20,52,98672,0,0,408,0,0,0,0,0,0,0,136,0,0,0,3500,77777,9,999999999,69,0,0,88,0.2,0,0 +2017,9,20,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,21,59,98663,0,0,404,0,0,0,0,0,0,0,137,0,0,0,3500,77777,9,999999999,76,0,0,88,0.2,0,0 +2017,9,20,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,21,66,98646,0,0,393,0,0,0,0,0,0,0,100,2.1,0,0,3000,77777,9,999999999,76,0,0,88,0.2,0,0 +2017,9,21,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,21,66,98646,0,0,393,0,0,0,0,0,0,0,80,2.1,0,0,2600,77777,9,999999999,76,0,0,88,0.2,0,0 +2017,9,21,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,22,74,98637,0,0,389,0,0,0,0,0,0,0,70,2.1,0,0,2400,77777,9,999999999,84,0,0,88,0.2,0,0 +2017,9,21,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,26.6,22.5,78,97626,0,0,388,0,0,0,0,0,0,0,206,0,0,0,2000,77777,9,999999999,88,0,0,88,0.2,0,0 +2017,9,21,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27,22,74,98637,0,0,406,0,0,0,0,0,0,0,110,2.1,3,3,2200,77777,9,999999999,84,0,0,88,0.2,0,0 +2017,9,21,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26,22,79,98628,0,0,407,0,0,0,0,0,0,0,100,2.1,5,5,2200,77777,9,999999999,85,0,0,88,0.2,0,0 +2017,9,21,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.6,23.7,84,97645,0,0,412,0,0,0,0,0,0,0,90,2.1,5,5,2000,77777,9,999999999,99,0,0,88,0.2,0,0 +2017,9,21,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,21,74,98628,89,391,406,18,0,18,1756,0,1768,632,80,2.1,5,5,2200,3048,9,999999999,76,0,0,88,0.2,0,0 +2017,9,21,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27,22,74,98637,395,1357,406,190,324,96,21092,11467,10654,3546,110,2.6,3,3,2000,3048,9,999999999,84,0,0,88,0.2,0,0 +2017,9,21,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30.4,26.2,78,97775,674,1357,430,415,603,116,48100,25596,13496,5233,140,4.1,3,3,2000,77777,9,999999999,127,0,0,88,0.2,0,0 +2017,9,21,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,25,70,98672,908,1357,439,587,602,185,68375,32545,21615,8703,150,4.1,5,5,3500,3048,9,999999999,113,0,0,88,0.2,0,0 +2017,9,21,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,25,70,98672,1081,1357,439,734,644,221,86516,35986,26219,10765,160,3.1,5,5,4000,3048,9,999999999,113,0,0,88,0.2,0,0 +2017,9,21,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33.6,26.9,68,97832,1181,1357,457,817,661,242,96691,34967,28790,11791,160,3.6,5,5,4000,3000,9,999999999,135,0,0,88,0.2,0,0 +2017,9,21,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,25,60,98697,1202,1357,457,837,574,330,97264,36990,38563,15032,160,3.6,5,5,4000,3048,9,999999999,113,0,0,88,0.2,0,0 +2017,9,21,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,25,60,98697,1141,1357,484,435,92,358,49836,6318,41307,15697,160,3.6,9,9,4500,3048,9,999999999,113,0,0,88,0.2,0,0 +2017,9,21,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34.8,25.6,59,97569,1003,1357,489,370,29,349,41523,2050,39393,14512,140,3.1,9,9,4000,3000,9,999999999,118,0,0,88,0.2,0,0 +2017,9,21,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,24,56,98697,798,1357,482,275,28,258,30612,1917,28930,10362,140,2.6,9,9,4000,3048,9,999999999,102,0,0,88,0.2,0,0 +2017,9,21,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,23,53,98697,539,1357,481,158,28,147,17583,1463,16422,5627,100,1.5,9,9,4000,3048,9,999999999,92,0,0,88,0.2,0,0 +2017,9,21,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32.4,26.3,70,97510,244,1357,475,46,0,46,4379,0,4414,1686,140,2.1,9,9,4000,3000,9,999999999,127,0,0,88,0.2,0,0 +2017,9,21,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,25,70,98672,0,1064,465,0,0,0,0,0,0,0,130,3.6,9,9,4000,3048,9,999999999,113,0,0,88,0.2,0,0 +2017,9,21,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,24,70,98663,0,0,457,0,0,0,0,0,0,0,130,3.6,9,9,4000,3048,9,999999999,103,0,0,88,0.2,0,0 +2017,9,21,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29.8,25.6,78,97673,0,0,458,0,0,0,0,0,0,0,110,2.6,9,9,4000,3000,9,999999999,119,0,0,88,0.2,0,0 +2017,9,21,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,24,74,98654,0,0,451,0,0,0,0,0,0,0,120,5.1,9,9,4000,3048,9,999999999,103,0,0,88,0.2,0,0 +2017,9,21,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,25,79,98654,0,0,453,0,0,0,0,0,0,0,120,4.6,9,9,4000,3048,9,999999999,114,0,0,88,0.2,0,0 +2017,9,21,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28.2,25.7,86,97776,0,0,449,0,0,0,0,0,0,0,110,4.1,9,9,4000,3000,9,999999999,121,0,0,88,0.2,0,0 +2017,9,22,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,24,79,98646,0,0,446,0,0,0,0,0,0,0,130,2.6,9,9,4000,3048,9,999999999,103,0,0,88,0.2,0,0 +2017,9,22,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,24,84,98637,0,0,440,0,0,0,0,0,0,0,110,2.1,9,9,4000,3048,9,999999999,103,0,0,88,0.2,0,0 +2017,9,22,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27.4,26,92,97662,0,0,420,0,0,0,0,0,0,0,110,2.1,5,5,4000,3000,9,999999999,125,0,0,88,0.2,0,0 +2017,9,22,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,24,84,98637,0,0,415,0,0,0,0,0,0,0,80,2.1,5,5,4000,3048,9,999999999,103,0,0,88,0.2,0,0 +2017,9,22,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,24,89,98628,0,0,410,0,0,0,0,0,0,0,110,2.1,5,5,4000,3048,9,999999999,103,0,0,88,0.2,0,0 +2017,9,22,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.6,23.7,84,97674,0,0,412,0,0,0,0,0,0,0,110,2.1,5,5,4000,3048,9,999999999,99,0,0,88,0.2,5,0 +2017,9,22,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27,23,79,98637,87,380,414,18,0,18,1703,0,1715,615,100,4.1,5,5,4000,3048,9,999999999,93,0,0,88,0.2,0,0 +2017,9,22,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,24,84,98637,392,1357,440,98,0,98,10841,13,10872,3599,100,3.6,9,9,3500,3048,9,999999999,103,0,0,88,0.2,5,0 +2017,9,22,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27.6,24.1,81,97839,672,1357,456,132,0,132,13226,0,13346,5810,110,3.1,10,10,2000,3000,9,999999999,103,0,0,88,0.2,5,0 +2017,9,22,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,23,74,98646,906,1357,457,199,3,196,23067,183,22945,9132,90,6.2,10,10,3500,762,9,999999999,93,0,0,88,0.2,0,0 +2017,9,22,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,23,84,98628,1078,1357,445,248,6,244,29113,354,28744,11620,70,4.1,10,10,3500,762,0,919999999,93,0,0,88,0.2,5,0 +2017,9,22,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25.4,24.8,96,97878,1178,1357,444,276,7,270,32515,411,32008,12878,90,4.1,10,10,2000,1050,0,919999999,111,0,0,88,0.2,5,0 +2017,9,22,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,24,94,98619,1198,1357,440,282,7,276,33308,435,32770,13141,40,3.1,10,10,2000,762,0,919999999,103,0,0,88,0.2,5,0 +2017,9,22,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,21,78,98619,1136,1357,436,266,7,261,31366,424,30905,12415,40,2.6,10,10,2000,762,0,919999999,77,0,0,88,0.2,0,0 +2017,9,22,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25.8,25.5,98,97677,998,1357,447,224,5,221,26085,268,25823,10443,50,5.1,10,10,2000,750,0,919999999,119,0,0,88,0.2,2,0 +2017,9,22,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,25,100,98619,792,1357,441,166,1,165,19095,29,19151,7487,10,2.6,10,10,1800,2438,0,919999999,114,0,0,88,0.2,0,0 +2017,9,22,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,25,100,98619,533,1357,390,301,179,231,32025,11965,24711,7129,10,2.6,1,1,2200,762,0,919999999,114,0,0,88,0.2,0,0 +2017,9,22,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,25,100,98619,238,1357,441,27,0,27,2577,0,2597,1075,10,2.6,10,10,2500,762,0,919999999,114,0,0,88,0.2,0,0 +2017,9,22,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,25,100,98619,0,1037,441,0,0,0,0,0,0,0,80,5.1,10,10,1500,762,0,919999999,114,0,0,88,0.2,0,0 +2017,9,22,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,25,100,98619,0,0,441,0,0,0,0,0,0,0,50,3.1,10,10,2500,762,0,919999999,114,0,0,88,0.2,0,0 +2017,9,22,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24.6,23.7,95,97774,0,0,437,0,0,0,0,0,0,0,50,2.6,10,10,2000,750,0,919999999,100,0,0,88,0.2,0,0 +2017,9,22,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,23,89,98619,0,0,439,0,0,0,0,0,0,0,40,3.1,10,10,2500,762,0,919999999,94,0,0,88,0.2,0,0 +2017,9,22,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,24,94,98619,0,0,440,0,0,0,0,0,0,0,30,2.6,10,10,2500,762,0,919999999,103,0,0,88,0.2,0,0 +2017,9,22,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24.6,24.3,98,97793,0,0,438,0,0,0,0,0,0,0,50,2.6,10,10,2000,750,0,919999999,106,0,0,88,0.2,0,0 +2017,9,23,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,23,94,98610,0,0,433,0,0,0,0,0,0,0,20,2.1,10,10,2200,762,0,919999999,94,0,0,88,0.2,0,0 +2017,9,23,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,23,94,98610,0,0,433,0,0,0,0,0,0,0,30,2.1,10,10,2200,762,0,919999999,94,0,0,88,0.2,0,0 +2017,9,23,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24.2,23.9,98,97721,0,0,435,0,0,0,0,0,0,0,50,1.5,10,10,2000,750,0,919999999,102,0,0,88,0.2,0,0 +2017,9,23,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,22,89,98610,0,0,432,0,0,0,0,0,0,0,20,2.6,10,10,2200,762,0,919999999,85,0,0,88,0.2,0,0 +2017,9,23,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,22,89,98610,0,0,432,0,0,0,0,0,0,0,40,2.6,10,10,2500,762,0,919999999,85,0,0,88,0.2,0,0 +2017,9,23,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24.4,24.4,100,97733,0,0,437,0,0,0,0,0,0,0,50,2.6,10,10,2000,750,9,999999999,107,0,0,88,0.2,3,0 +2017,9,23,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,23,94,98610,84,368,433,6,0,6,561,0,565,233,20,3.1,10,10,2200,762,0,919999999,94,0,0,88,0.2,0,0 +2017,9,23,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,23,94,98610,390,1358,433,59,0,59,5808,0,5856,2439,40,2.6,10,10,2500,762,0,919999999,94,0,0,88,0.2,0,0 +2017,9,23,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23.8,23.5,98,97922,669,1358,432,132,0,132,13184,0,13303,5781,50,2.1,10,10,2000,750,0,919999999,98,0,0,88,0.2,0,0 +2017,9,23,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,24,94,98619,903,1358,440,197,3,195,22906,173,22792,9079,340,2.1,10,10,3000,762,0,919999999,103,0,0,88,0.2,0,0 +2017,9,23,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,23,89,98619,1075,1358,439,247,6,243,29007,351,28642,11577,340,2.1,10,10,2500,762,0,919999999,94,0,0,88,0.2,0,0 +2017,9,23,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24.6,24.3,98,97968,1175,1358,438,276,7,270,32440,415,31937,12843,340,3.1,10,10,2000,900,0,919999999,106,0,0,88,0.2,0,0 +2017,9,23,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,25,100,98619,1194,1358,441,281,7,275,33067,419,32539,13075,340,2.1,10,10,2000,610,0,919999999,114,0,0,88,0.2,0,0 +2017,9,23,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,25,100,98619,1132,1358,441,263,6,258,30850,375,30410,12295,350,3.1,10,10,2200,610,0,919999999,114,0,0,88,0.2,0,0 +2017,9,23,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,25,100,97884,993,1358,441,223,5,220,25957,268,25702,10378,320,4.1,10,10,2000,600,0,919999999,114,0,0,88,0.2,0,0 +2017,9,23,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,24,94,98619,787,1358,440,165,0,164,18979,11,19057,7427,300,3.6,10,10,2500,2438,0,919999999,103,0,0,88,0.2,0,0 +2017,9,23,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,24,89,98628,527,1358,434,153,29,142,17003,1432,15825,5423,310,2.6,9,9,3000,2438,0,919999999,103,0,0,88,0.2,0,0 +2017,9,23,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25.6,24.7,95,97890,232,1358,432,42,0,42,4058,0,4089,1560,320,4.1,9,9,2000,3000,0,919999999,110,0,0,88,0.2,0,0 +2017,9,23,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,24,89,98628,0,1011,434,0,0,0,0,0,0,0,320,2.6,9,9,3000,3048,0,919999999,103,0,0,88,0.2,0,0 +2017,9,23,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,24,94,98619,0,0,428,0,0,0,0,0,0,0,320,4.1,9,9,5000,3048,0,919999999,103,0,0,88,0.2,0,0 +2017,9,23,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24.4,23.8,96,98025,0,0,401,0,0,0,0,0,0,0,340,3.1,5,5,4000,3000,0,919999999,101,0,0,88,0.2,0,0 +2017,9,23,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,24,94,98619,0,0,404,0,0,0,0,0,0,0,310,3.1,5,5,5000,3048,0,919999999,103,0,0,88,0.2,0,0 +2017,9,23,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,23,94,98610,0,0,421,0,0,0,0,0,0,0,300,3.1,9,9,5000,3048,0,919999999,94,0,0,88,0.2,0,0 +2017,9,23,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,23.4,96,98119,0,0,422,0,0,0,0,0,0,0,320,2.6,9,9,4000,3000,0,919999999,97,0,0,88,0.2,0,0 +2017,9,24,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,23,94,98610,0,0,421,0,0,0,0,0,0,0,340,3.1,9,9,4000,3048,0,919999999,94,0,0,88,0.2,0,0 +2017,9,24,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,23,94,98610,0,0,421,0,0,0,0,0,0,0,340,4.1,9,9,4000,914,0,919999999,94,0,0,88,0.2,0,0 +2017,9,24,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23.6,23,96,98018,0,0,419,0,0,0,0,0,0,0,320,3.6,9,9,2000,900,0,919999999,93,0,0,88,0.2,0,0 +2017,9,24,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,23,100,98601,0,0,415,0,0,0,0,0,0,0,320,3.6,9,9,2500,914,0,919999999,94,0,0,88,0.2,0,0 +2017,9,24,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,22,94,98601,0,0,426,0,0,0,0,0,0,0,330,3.1,10,10,2500,914,0,919999999,85,0,0,88,0.2,0,0 +2017,9,24,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23.2,22.9,98,98024,0,0,428,0,0,0,0,0,0,0,290,1.5,10,10,2000,2400,9,999999999,92,0,0,88,0.2,0,0 +2017,9,24,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,23,100,98601,82,357,427,6,0,6,546,0,550,227,300,2.6,10,10,1500,2438,9,999999999,94,0,0,88,0.2,0,0 +2017,9,24,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,23,100,98601,388,1359,427,59,0,59,5764,0,5811,2418,280,4.1,10,10,1800,2438,9,999999999,94,0,0,88,0.2,0,0 +2017,9,24,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23.8,23.2,96,98370,667,1359,432,131,0,131,13139,0,13257,5752,320,3.6,10,10,2000,3000,9,999999999,95,0,0,88,0.2,0,0 +2017,9,24,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,23,94,98610,900,1359,433,197,3,195,22890,176,22777,9053,310,4.1,10,10,1500,914,9,999999999,94,0,0,88,0.2,0,0 +2017,9,24,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,23,89,98619,1072,1359,439,247,6,242,28905,349,28545,11536,300,3.1,10,10,1800,914,9,999999999,94,0,0,88,0.2,0,0 +2017,9,24,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26.8,23,80,98299,1171,1359,450,275,9,267,32467,575,31721,12747,320,3.6,10,10,2000,900,9,999999999,93,0,0,88,0.2,0,0 +2017,9,24,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,24,79,98646,1190,1359,446,460,61,406,52516,4542,46711,17269,320,3.6,9,9,2500,3048,9,999999999,103,0,0,88,0.2,0,0 +2017,9,24,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,24,74,98654,1128,1359,451,430,92,353,49245,6513,40748,15484,310,3.1,9,9,2500,3048,9,999999999,103,0,0,88,0.2,0,0 +2017,9,24,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30.4,25.3,74,98087,988,1359,436,655,556,251,75357,33605,29032,11470,320,3.6,5,5,2000,3000,9,999999999,116,0,0,88,0.2,0,0 +2017,9,24,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,24,66,98672,782,1359,438,482,564,159,55748,30021,18417,7194,300,3.6,5,5,4500,3048,9,999999999,102,0,0,88,0.2,0,0 +2017,9,24,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31,23,63,98672,521,1359,430,290,441,121,32542,20196,13615,4800,300,3.6,3,3,4500,3048,9,999999999,93,0,0,88,0.2,0,0 +2017,9,24,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29.4,24.5,75,98020,226,1359,423,78,119,58,8453,4,6328,1943,290,3.6,3,3,4000,77777,9,999999999,107,0,0,88,0.2,0,0 +2017,9,24,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29,23,70,98654,0,984,418,0,0,0,0,0,0,0,310,3.1,3,3,4500,77777,9,999999999,93,0,0,88,0.2,0,0 +2017,9,24,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28,24,79,98646,0,0,414,0,0,0,0,0,0,0,300,2.1,3,3,3500,77777,9,999999999,103,0,0,88,0.2,0,0 +2017,9,24,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26.4,24.4,89,98013,0,0,406,0,0,0,0,0,0,0,290,2.1,3,3,2000,77777,9,999999999,107,0,0,88,0.2,0,0 +2017,9,24,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,25,89,98637,0,0,393,0,0,0,0,0,0,0,320,2.1,0,0,2000,77777,9,999999999,114,0,0,88,0.2,0,0 +2017,9,24,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,25,89,98637,0,0,393,0,0,0,0,0,0,0,30,1.5,0,0,2000,77777,9,999999999,114,0,0,88,0.2,0,0 +2017,9,24,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.2,24.6,96,97974,0,0,383,0,0,0,0,0,0,0,20,1.5,0,0,2000,77777,9,999999999,109,0,0,88,0.2,0,0 +2017,9,25,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,24,89,98628,0,0,387,0,0,0,0,0,0,0,321,0,0,0,1800,77777,9,999999999,103,0,0,88,0.2,0,0 +2017,9,25,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,24,89,98628,0,0,387,0,0,0,0,0,0,0,240,1.5,0,0,1800,77777,9,999999999,103,0,0,88,0.2,0,0 +2017,9,25,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,24,22.8,93,97885,0,0,375,0,0,0,0,0,0,0,75,0,0,0,1000,77777,9,999999999,91,0,0,88,0.2,0,0 +2017,9,25,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,24,23,94,98610,0,0,375,0,0,0,0,0,0,0,167,0,0,0,1400,77777,9,999999999,94,0,0,88,0.2,0,0 +2017,9,25,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,24,23,94,98610,0,0,375,0,0,0,0,0,0,0,273,0,0,0,1400,77777,9,999999999,94,0,0,88,0.2,0,0 +2017,9,25,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,23.8,23.5,98,97932,0,0,375,0,0,0,0,0,0,0,26,0,0,0,1000,77777,9,999999999,98,0,0,88,0.2,0,0 +2017,9,25,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,23,22,94,98601,79,346,369,18,0,18,1690,0,1702,598,18,0,0,0,1400,77777,9,999999999,85,0,0,88,0.2,0,0 +2017,9,25,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,23,94,98610,385,1360,375,186,332,92,20609,10660,10214,3399,290,2.1,0,0,1400,77777,9,999999999,94,0,0,88,0.2,0,0 +2017,9,25,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26.4,24.1,87,98081,664,1360,389,414,639,103,48513,27854,12058,4688,290,3.1,0,0,2000,77777,9,999999999,104,0,0,88,0.2,0,0 +2017,9,25,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,24,74,98654,897,1360,402,623,784,106,75668,35798,12912,5383,290,3.6,0,0,2500,77777,9,999999999,103,0,0,88,0.2,0,0 +2017,9,25,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,24,66,98672,1069,1360,413,780,854,109,87782,92074,14915,3110,290,3.6,0,0,2500,77777,9,999999999,102,0,0,88,0.2,0,0 +2017,9,25,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31.4,23.9,65,98066,1168,1360,415,870,786,196,104896,42312,23786,9894,290,3.6,0,0,2000,77777,9,999999999,101,0,0,88,0.2,0,0 +2017,9,25,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,24,59,98689,1186,1360,424,887,787,201,106964,42462,24427,10140,320,3.1,0,0,4000,77777,9,999999999,102,0,0,88,0.2,0,0 +2017,9,25,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,24,59,98689,1123,1360,424,829,783,183,99863,41444,22193,9283,340,3.1,0,0,4500,77777,9,999999999,102,0,0,88,0.2,0,0 +2017,9,25,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,24.5,57,97848,984,1360,432,701,813,113,85725,37053,13930,5892,290,2.6,0,0,4000,77777,9,999999999,106,0,0,88,0.2,0,0 +2017,9,25,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,23,53,98697,776,1360,428,515,671,132,60363,34119,15556,6174,280,4.6,0,0,4500,77777,9,999999999,92,0,0,88,0.2,0,0 +2017,9,25,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,24,56,98697,516,1360,430,288,453,117,32396,19587,13171,4657,290,3.1,0,0,4500,77777,9,999999999,102,0,0,88,0.2,0,0 +2017,9,25,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.4,25.1,66,97773,219,1360,422,75,119,56,8186,0,6128,1880,290,2.6,0,0,4000,77777,9,999999999,113,0,0,88,0.2,0,0 +2017,9,25,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,24,59,98689,0,958,442,0,0,0,0,0,0,0,340,1.5,3,3,4500,77777,9,999999999,102,0,0,88,0.2,0,0 +2017,9,25,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32,24,63,98680,0,0,437,0,0,0,0,0,0,0,320,2.1,3,3,4000,77777,9,999999999,102,0,0,88,0.2,0,0 +2017,9,25,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29,26.2,85,97822,0,0,405,0,0,0,0,0,0,0,320,2.1,0,0,2000,77777,9,999999999,127,0,0,88,0.2,0,0 +2017,9,25,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,25,75,98663,0,0,409,0,0,0,0,0,0,0,320,1,0,0,3000,77777,9,999999999,113,0,0,88,0.2,0,0 +2017,9,25,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,24,74,98654,0,0,402,0,0,0,0,0,0,0,310,2.1,0,0,3000,77777,9,999999999,103,0,0,88,0.2,0,0 +2017,9,25,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,27.6,25.3,87,97839,0,0,396,0,0,0,0,0,0,0,51,0,0,0,2000,77777,9,999999999,117,0,0,88,0.2,0,0 +2017,9,26,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,25,84,98646,0,0,398,0,0,0,0,0,0,0,95,0,0,0,3000,77777,9,999999999,114,0,0,88,0.2,0,0 +2017,9,26,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,25,89,98637,0,0,393,0,0,0,0,0,0,0,261,0,0,0,3000,77777,9,999999999,114,0,0,88,0.2,0,0 +2017,9,26,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,26.6,25.5,94,97879,0,0,391,0,0,0,0,0,0,0,128,0,0,0,2000,77777,9,999999999,119,0,0,88,0.2,0,0 +2017,9,26,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,25,89,98637,0,0,393,0,0,0,0,0,0,0,213,0,0,0,2500,77777,9,999999999,114,0,0,88,0.2,0,0 +2017,9,26,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,24,89,98628,0,0,387,0,0,0,0,0,0,0,88,0,0,0,2000,77777,9,999999999,103,0,0,88,0.2,0,0 +2017,9,26,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,26,24.6,92,97961,0,0,387,0,0,0,0,0,0,0,344,0,0,0,500,77777,9,999999999,109,0,0,88,0.2,0,0 +2017,9,26,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,24,89,98628,77,335,387,17,0,17,1630,0,1642,579,146,0,0,0,1500,77777,9,999999999,103,0,0,88,0.2,0,0 +2017,9,26,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,24,89,98628,382,1361,387,184,329,91,20352,9950,10153,3378,229,0,0,0,1500,77777,9,999999999,103,0,0,88,0.2,0,0 +2017,9,26,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,25.5,90,98147,661,1361,395,411,632,104,47964,26222,12203,4742,320,2.1,0,0,1000,77777,9,999999999,119,0,0,88,0.2,0,0 +2017,9,26,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,25,75,98663,895,1361,409,619,780,107,75032,34449,13030,5433,280,2.6,0,0,2500,77777,9,999999999,113,0,0,88,0.2,0,0 +2017,9,26,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,25,67,98680,1066,1361,420,775,848,111,87787,91968,15237,3110,300,3.1,0,0,3000,77777,9,999999999,113,0,0,88,0.2,0,0 +2017,9,26,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.6,22.1,54,98164,1164,1361,419,870,786,198,104946,44598,24026,9965,290,3.1,0,0,2000,77777,9,999999999,84,0,0,88,0.2,0,0 +2017,9,26,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34,24,56,98697,1182,1361,448,872,852,133,97614,91972,17557,4650,320,3.6,3,3,3000,77777,9,999999999,102,0,0,88,0.2,0,0 +2017,9,26,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35,23,50,98705,1119,1361,453,816,840,126,91005,90220,16873,3723,310,4.1,3,3,4000,77777,9,999999999,92,0,0,88,0.2,0,0 +2017,9,26,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34.6,23.8,54,97967,979,1361,451,688,782,127,83509,37752,15432,6491,320,3.1,3,3,4000,77777,9,999999999,99,0,0,88,0.2,0,0 +2017,9,26,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35,20,42,98705,771,1361,449,506,653,136,59354,36256,16069,6323,300,3.6,3,3,4500,77777,9,999999999,68,0,0,88,0.2,0,0 +2017,9,26,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34,22,50,98697,510,1361,445,281,436,118,31597,20175,13319,4668,340,3.6,3,3,4500,77777,9,999999999,83,0,0,88,0.2,0,0 +2017,9,26,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32.2,23.2,59,97908,213,1361,437,71,106,55,7767,0,5975,1823,320,2.1,3,3,2000,77777,9,999999999,94,0,0,88,0.2,0,0 +2017,9,26,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32,22,56,98680,0,931,434,0,0,0,0,0,0,0,320,2.1,3,3,4000,77777,9,999999999,84,0,0,88,0.2,0,0 +2017,9,26,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31,22,59,98672,0,0,428,0,0,0,0,0,0,0,320,1.5,3,3,3500,77777,9,999999999,84,0,0,88,0.2,0,0 +2017,9,26,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28.8,25.1,80,97966,0,0,403,0,0,0,0,0,0,0,130,0,0,0,2000,77777,9,999999999,114,0,0,88,0.2,0,0 +2017,9,26,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,23,63,98672,0,0,412,0,0,0,0,0,0,0,237,0,0,0,3200,77777,9,999999999,93,0,0,88,0.2,0,0 +2017,9,26,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,23,70,98654,0,0,401,0,0,0,0,0,0,0,124,0,0,0,3200,77777,9,999999999,93,0,0,88,0.2,0,0 +2017,9,26,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,24.4,86,97999,0,0,392,0,0,0,0,0,0,0,19,0,0,0,2000,77777,9,999999999,107,0,0,88,0.2,0,0 +2017,9,27,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,23,74,98646,0,0,396,0,0,0,0,0,0,0,68,0,0,0,3200,77777,9,999999999,93,0,0,88,0.2,0,0 +2017,9,27,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,23,79,98637,0,0,391,0,0,0,0,0,0,0,309,0,0,0,3200,77777,9,999999999,93,0,0,88,0.2,0,0 +2017,9,27,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,26.4,24.4,89,97994,0,0,389,0,0,0,0,0,0,0,85,0,0,0,2000,77777,9,999999999,107,0,0,88,0.2,0,0 +2017,9,27,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,24,84,98637,0,0,392,0,0,0,0,0,0,0,110,0,0,0,3000,77777,9,999999999,103,0,0,88,0.2,0,0 +2017,9,27,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,24,89,98628,0,0,387,0,0,0,0,0,0,0,144,0,0,0,3000,77777,9,999999999,103,0,0,88,0.2,0,0 +2017,9,27,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,25.2,23.4,90,98071,0,0,382,0,0,0,0,0,0,0,47,0,0,0,2000,77777,9,999999999,97,0,0,88,0.2,0,0 +2017,9,27,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,23,84,98628,74,323,385,17,0,17,1587,0,1599,563,195,0,0,0,1600,77777,9,999999999,93,0,0,88,0.2,0,0 +2017,9,27,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,24,89,98628,380,1361,387,182,329,91,20189,9810,10068,3346,142,0,0,0,1500,77777,9,999999999,103,0,0,88,0.2,0,0 +2017,9,27,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,28.2,24.2,79,98263,659,1361,398,410,638,102,48011,27571,11963,4643,286,0,0,0,2000,77777,9,999999999,105,0,0,88,0.2,0,0 +2017,9,27,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,32,22,56,98680,892,1361,416,620,794,101,75752,38083,12376,5146,188,0,0,0,1500,77777,9,999999999,84,0,0,88,0.2,0,0 +2017,9,27,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,33,21,49,98689,1063,1361,420,778,779,170,93769,44087,20635,8613,141,0,0,0,2500,77777,9,999999999,76,0,0,88,0.2,0,0 +2017,9,27,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.8,20.7,46,98252,1161,1361,424,869,786,199,104877,46210,24194,10014,270,2.1,0,0,2000,77777,9,999999999,73,0,0,88,0.2,0,0 +2017,9,27,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,21,44,98705,1178,1361,431,884,787,204,106809,46157,24773,10237,230,2.1,0,0,3500,77777,9,999999999,75,0,0,88,0.2,0,0 +2017,9,27,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,20,39,98714,1114,1361,436,827,783,187,99779,46172,22660,9420,320,2.1,0,0,4000,77777,9,999999999,68,0,0,88,0.2,0,0 +2017,9,27,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,37,19,35,98722,974,1361,459,690,804,115,84667,42895,14213,5962,340,2.1,3,3,4000,77777,9,999999999,62,0,0,88,0.2,0,0 +2017,9,27,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37,19,35,98722,765,1361,459,503,656,134,59010,36946,15854,6227,320,3.1,3,3,4000,77777,9,999999999,62,0,0,88,0.2,0,0 +2017,9,27,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36,19,37,98714,504,1361,453,278,441,115,31404,21695,13075,4565,300,3.1,3,3,4000,77777,9,999999999,62,0,0,88,0.2,0,0 +2017,9,27,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33.2,23.4,57,97867,207,1361,443,68,100,53,7430,0,5788,1763,320,2.6,3,3,4000,77777,9,999999999,96,0,0,88,0.2,0,0 +2017,9,27,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33,21,49,98689,0,904,420,0,0,0,0,0,0,0,40,2.6,0,0,3200,77777,9,999999999,76,0,0,88,0.2,0,0 +2017,9,27,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,21,52,98680,0,0,415,0,0,0,0,0,0,0,10,1.5,0,0,3000,77777,9,999999999,76,0,0,88,0.2,0,0 +2017,9,27,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.8,23.6,74,97976,0,0,401,0,0,0,0,0,0,0,50,1.5,0,0,2000,77777,9,999999999,98,0,0,88,0.2,0,0 +2017,9,27,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,21,62,98654,0,0,399,0,0,0,0,0,0,0,217,0,0,0,3000,77777,9,999999999,76,0,0,88,0.2,0,0 +2017,9,27,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,21,66,98646,0,0,393,0,0,0,0,0,0,0,353,0,0,0,3000,77777,9,999999999,76,0,0,88,0.2,0,0 +2017,9,27,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,27.2,24,83,98011,0,0,393,0,0,0,0,0,0,0,38,0,0,0,2000,77777,9,999999999,103,0,0,88,0.2,0,0 +2017,9,28,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,22,70,98646,0,0,395,0,0,0,0,0,0,0,141,0,0,0,2500,77777,9,999999999,84,0,0,88,0.2,0,0 +2017,9,28,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,22,74,98637,0,0,389,0,0,0,0,0,0,0,243,0,0,0,2500,77777,9,999999999,84,0,0,88,0.2,0,0 +2017,9,28,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,26.6,23.7,84,97957,0,0,389,0,0,0,0,0,0,0,143,0,0,0,2000,77777,9,999999999,100,0,0,88,0.2,0,0 +2017,9,28,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,22,79,98628,0,0,384,0,0,0,0,0,0,0,187,0,0,0,2500,77777,9,999999999,85,0,0,88,0.2,0,0 +2017,9,28,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,22,79,98628,0,0,384,0,0,0,0,0,0,0,83,0,0,0,2500,77777,9,999999999,85,0,0,88,0.2,0,0 +2017,9,28,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,25.2,23.4,90,97935,0,0,382,0,0,0,0,0,0,0,32,0,0,0,2000,77777,9,999999999,97,0,0,88,0.2,0,0 +2017,9,28,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,23,84,98628,71,312,385,16,0,16,1535,0,1546,545,242,0,0,0,2200,77777,9,999999999,93,0,0,88,0.2,0,0 +2017,9,28,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,23,79,98637,377,1362,391,181,329,90,20059,10174,9992,3314,329,0,0,0,2200,77777,9,999999999,93,0,0,88,0.2,0,0 +2017,9,28,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,28,26.2,90,98115,656,1362,400,407,629,104,47325,25226,12186,4728,226,0,0,0,2000,77777,9,999999999,128,0,0,88,0.2,0,0 +2017,9,28,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,23,63,98672,889,1362,412,617,789,102,75101,36874,12507,5201,310,1.5,0,0,3000,77777,9,999999999,93,0,0,88,0.2,0,0 +2017,9,28,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,23,56,98689,1060,1362,423,773,779,167,92971,41678,20183,8452,290,2.1,0,0,4000,77777,9,999999999,92,0,0,88,0.2,0,0 +2017,9,28,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34.2,24.6,57,98061,1157,1362,432,860,786,193,103488,41292,23309,9720,290,2.6,0,0,4000,77777,9,999999999,108,0,0,88,0.2,0,0 +2017,9,28,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,22,47,98705,1174,1362,433,879,787,201,106088,44963,24434,10119,280,1.5,0,0,4000,77777,9,999999999,83,0,0,88,0.2,0,0 +2017,9,28,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,19,37,98714,1110,1362,434,824,783,187,99464,47146,22680,9417,350,2.6,0,0,4000,77777,9,999999999,62,0,0,88,0.2,0,0 +2017,9,28,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36.4,22.2,44,97865,968,1362,460,681,789,121,83017,39490,14781,6204,320,3.1,3,3,4000,77777,9,999999999,84,0,0,88,0.2,0,0 +2017,9,28,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37,18,33,98722,760,1362,457,499,654,134,58563,37548,15826,6197,320,3.1,3,3,5000,77777,9,999999999,56,0,0,88,0.2,0,0 +2017,9,28,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36,18,35,98714,498,1362,452,274,439,114,30963,21847,12916,4496,320,3.1,3,3,5000,77777,9,999999999,56,0,0,88,0.2,0,0 +2017,9,28,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,22.7,52,97757,201,1362,446,65,94,51,7098,0,5609,1703,320,3.6,3,3,4000,77777,9,999999999,89,0,0,88,0.2,0,0 +2017,9,28,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,20,46,98689,0,878,419,0,0,0,0,0,0,0,330,3.1,0,0,4500,77777,9,999999999,68,0,0,88,0.2,0,0 +2017,9,28,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,20,49,98680,0,0,413,0,0,0,0,0,0,0,330,2.1,0,0,4000,77777,9,999999999,69,0,0,88,0.2,0,0 +2017,9,28,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,22,59,98672,0,0,411,0,0,0,0,0,0,0,30,1.5,0,0,3500,77777,9,999999999,84,0,0,88,0.2,0,0 +2017,9,28,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,22,62,98663,0,0,405,0,0,0,0,0,0,0,5,0,0,0,3500,77777,9,999999999,84,0,0,88,0.2,0,0 +2017,9,28,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,21,59,98663,0,0,404,0,0,0,0,0,0,0,240,0,0,0,3500,77777,9,999999999,76,0,0,88,0.2,0,0 +2017,9,28,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,27.4,24.5,84,97935,0,0,394,0,0,0,0,0,0,0,350,0,0,0,2000,77777,9,999999999,108,0,0,88,0.2,0,0 +2017,9,29,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,22,70,98646,0,0,395,0,0,0,0,0,0,0,336,0,0,0,3500,77777,9,999999999,84,0,0,88,0.2,0,0 +2017,9,29,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,22,74,98637,0,0,389,0,0,0,0,0,0,0,105,0,0,0,3500,77777,9,999999999,84,0,0,88,0.2,0,0 +2017,9,29,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,26.6,23.1,81,97889,0,0,389,0,0,0,0,0,0,0,318,0,0,0,2000,77777,9,999999999,94,0,0,88,0.2,0,0 +2017,9,29,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,23,84,98628,0,0,385,0,0,0,0,0,0,0,241,0,0,0,3500,77777,9,999999999,93,0,0,88,0.2,0,0 +2017,9,29,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,23,84,98628,0,0,385,0,0,0,0,0,0,0,260,0,0,0,3000,77777,9,999999999,93,0,0,88,0.2,0,0 +2017,9,29,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,25.4,23.3,88,97907,0,0,383,0,0,0,0,0,0,0,262,0,0,0,2000,77777,9,999999999,96,0,0,88,0.2,0,0 +2017,9,29,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,24,22,89,98610,69,300,374,16,0,16,1485,0,1496,527,86,0,0,0,2500,77777,9,999999999,85,0,0,88,0.2,0,0 +2017,9,29,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,23,84,98628,375,1363,385,179,328,89,19858,9993,9924,3287,310,0,0,0,2500,77777,9,999999999,93,0,0,88,0.2,0,0 +2017,9,29,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.6,22.5,78,98132,653,1363,388,407,643,100,47776,29077,11718,4534,250,1.5,0,0,2000,77777,9,999999999,88,0,0,88,0.2,0,0 +2017,9,29,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,22,62,98663,886,1363,405,615,793,100,75080,37972,12277,5098,280,2.1,0,0,3000,77777,9,999999999,84,0,0,88,0.2,0,0 +2017,9,29,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,22,56,98680,1056,1363,416,771,780,167,92812,42870,20247,8463,280,2.1,0,0,3500,77777,9,999999999,84,0,0,88,0.2,0,0 +2017,9,29,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,24.2,55,98033,1153,1363,432,857,786,192,103167,41827,23264,9698,290,3.1,0,0,2000,77777,9,999999999,103,0,0,88,0.2,0,0 +2017,9,29,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,21,44,98705,1170,1363,431,877,787,202,105846,46099,24485,10127,320,2.6,0,0,3500,77777,9,999999999,75,0,0,88,0.2,0,0 +2017,9,29,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,22,47,98705,1105,1363,433,816,783,182,98281,43828,21979,9173,310,3.1,0,0,3500,77777,9,999999999,83,0,0,88,0.2,0,0 +2017,9,29,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.4,24,52,97778,963,1363,437,684,815,108,83693,37364,13334,5623,320,3.1,0,0,4000,77777,9,999999999,101,0,0,88,0.2,0,0 +2017,9,29,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,21,42,98714,754,1363,437,498,670,128,58446,35421,15052,5926,310,3.6,0,0,4000,77777,9,999999999,75,0,0,88,0.2,0,0 +2017,9,29,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,20,39,98714,492,1363,436,272,448,111,30708,20860,12530,4374,330,3.6,0,0,4000,77777,9,999999999,68,0,0,88,0.2,0,0 +2017,9,29,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.4,22.7,54,97762,195,1363,425,63,93,49,6846,0,5419,1643,320,2.6,0,0,4000,77777,9,999999999,89,0,0,88,0.2,0,0 +2017,9,29,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,20,46,98689,0,851,419,0,0,0,0,0,0,0,330,2.6,0,0,3500,77777,9,999999999,68,0,0,88,0.2,0,0 +2017,9,29,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,21,52,98680,0,0,415,0,0,0,0,0,0,0,320,2.1,0,0,3200,77777,9,999999999,76,0,0,88,0.2,0,0 +2017,9,29,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.6,24.5,74,97895,0,0,406,0,0,0,0,0,0,0,320,1.5,0,0,2000,77777,9,999999999,107,0,0,88,0.2,0,0 +2017,9,29,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,22,62,98663,0,0,405,0,0,0,0,0,0,0,330,1.5,0,0,3000,77777,9,999999999,84,0,0,88,0.2,0,0 +2017,9,29,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,22,62,98663,0,0,405,0,0,0,0,0,0,0,164,0,0,0,3000,77777,9,999999999,84,0,0,88,0.2,0,0 +2017,9,29,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,27.4,23.9,81,98012,0,0,394,0,0,0,0,0,0,0,14,0,0,0,2000,77777,9,999999999,101,0,0,88,0.2,0,0 +2017,9,30,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,22,70,98646,0,0,395,0,0,0,0,0,0,0,17,0,0,0,3000,77777,9,999999999,84,0,0,88,0.2,0,0 +2017,9,30,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,22,74,98637,0,0,389,0,0,0,0,0,0,0,109,0,0,0,3000,77777,9,999999999,84,0,0,88,0.2,0,0 +2017,9,30,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,26.8,23.9,84,97997,0,0,391,0,0,0,0,0,0,0,5,0,0,0,2000,77777,9,999999999,102,0,0,88,0.2,0,0 +2017,9,30,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,22,79,98628,0,0,384,0,0,0,0,0,0,0,54,0,0,0,3000,77777,9,999999999,85,0,0,88,0.2,0,0 +2017,9,30,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25,22,83,98619,0,0,379,0,0,0,0,0,0,0,176,0,0,0,3000,77777,9,999999999,85,0,0,88,0.2,0,0 +2017,9,30,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,24.2,22.1,88,98101,0,0,375,0,0,0,0,0,0,0,21,0,0,0,2000,77777,9,999999999,85,0,0,88,0.2,0,0 +2017,9,30,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,23,21,89,98601,66,288,368,15,0,15,1438,0,1449,509,60,0,0,0,2200,77777,9,999999999,77,0,0,88,0.2,0,0 +2017,9,30,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,21,83,98610,372,1364,373,178,331,88,19810,10820,9821,3244,270,1.5,0,0,2200,77777,9,999999999,77,0,0,88,0.2,0,0 +2017,9,30,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,26,21.5,76,98302,651,1364,384,406,647,98,47726,29915,11521,4453,81,0,0,0,4000,77777,9,999999999,80,0,0,88,0.2,0,0 +2017,9,30,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,21,62,98654,883,1364,399,614,798,98,75096,39006,12004,4979,290,2.1,0,0,3000,77777,9,999999999,76,0,0,88,0.2,0,0 +2017,9,30,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,21,52,98680,1053,1364,415,769,780,168,92656,44005,20330,8482,280,2.6,0,0,3000,77777,9,999999999,76,0,0,88,0.2,0,0 +2017,9,30,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.4,22,51,98259,1149,1364,424,857,787,195,103290,44647,23577,9792,270,2.6,0,0,4000,77777,9,999999999,83,0,0,88,0.2,0,0 +2017,9,30,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,21,44,98705,1166,1364,431,873,788,201,105369,46080,24355,10078,300,3.1,0,0,4000,77777,9,999999999,75,0,0,88,0.2,0,0 +2017,9,30,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,20,39,98714,1100,1364,436,814,783,183,98202,46042,22204,9238,310,4.6,0,0,4000,77777,9,999999999,68,0,0,88,0.2,0,0 +2017,9,30,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.8,21.3,46,98066,958,1364,431,682,827,102,75912,87768,14244,2432,320,5.1,0,0,4000,77777,9,999999999,77,0,0,88,0.2,0,0 +2017,9,30,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,18,35,98714,749,1364,433,496,676,125,58432,37833,14788,5802,310,4.1,0,0,4000,77777,9,999999999,56,0,0,88,0.2,0,0 +2017,9,30,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,18,35,98714,486,1364,433,269,450,109,30395,21639,12321,4288,300,4.1,0,0,4000,77777,9,999999999,56,0,0,88,0.2,0,0 +2017,9,30,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.4,19.1,43,97996,189,1364,420,60,89,48,6583,0,5255,1584,320,4.1,0,0,4000,77777,9,999999999,62,0,0,88,0.2,0,0 +2017,9,30,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31.1,17.5,44,98543,0,825,418,0,0,0,0,0,0,0,237,2.1,0,0,4000,77777,9,999999999,53,0,0,88,0.2,0,0 +2017,9,30,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29.9,18.5,51,98532,0,0,408,0,0,0,0,0,0,0,248,1.2,0,0,3500,77777,9,999999999,59,0,0,88,0.2,0,0 +2017,9,30,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20,61,98407,0,0,397,0,0,0,0,0,0,0,247,0.5,0,0,2000,77777,9,999999999,69,0,0,88,0.2,0,0 +2017,9,30,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28.4,20.7,63,98538,0,0,400,0,0,0,0,0,0,0,237,0.5,0,0,3200,77777,9,999999999,74,0,0,88,0.2,0,0 +2017,9,30,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28.1,22.2,70,98536,0,0,396,0,0,0,0,0,0,0,230,0.9,0,0,3200,77777,9,999999999,86,0,0,88,0.2,0,0 +2017,9,30,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,27.9,23.2,76,98360,0,0,382,0,0,0,0,0,0,0,222,0.9,0,0,2000,77777,9,999999999,95,0,0,88,0.2,0,0 +2016,10,1,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.5,23.8,76,98476,0,0,420,0,0,0,0,0,0,0,165,1.3,3,3,3500,3048,9,999999999,101,0,0,88,0.2,0,0 +2016,10,1,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.2,23.8,77,98474,0,0,420,0,0,0,0,0,0,0,163,1.1,3,3,3500,3048,9,999999999,101,0,0,88,0.2,0,0 +2016,10,1,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,27.4,23.8,81,98300,0,0,413,0,0,0,0,0,0,0,137,0.8,3,3,2000,3048,9,999999999,101,0,0,88,0.2,0,0 +2016,10,1,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.1,24,83,98472,0,0,414,0,0,0,0,0,0,0,96,1.3,3,3,3500,3048,9,999999999,103,0,0,88,0.2,0,0 +2016,10,1,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.1,24,83,98472,0,0,414,0,0,0,0,0,0,0,111,1.4,3,3,3500,3048,9,999999999,103,0,0,88,0.2,0,0 +2016,10,1,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,27.2,24,82,98323,0,0,401,0,0,0,0,0,0,0,172,1,3,3,2000,3048,9,999999999,103,0,0,88,0.2,0,0 +2016,10,1,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27,24,84,98637,66,288,409,15,0,15,1410,0,1420,503,160,2.1,3,3,3500,3048,9,999999999,103,0,0,88,0.2,0,0 +2016,10,1,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28,24,79,98646,372,1364,397,177,326,89,19625,9309,9842,3259,170,2.1,0,0,3500,3048,9,999999999,103,0,0,88,0.2,0,0 +2016,10,1,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,28.4,24.1,78,98050,651,1364,399,404,637,101,47237,27378,11829,4576,351,0,0,0,2000,3048,9,999999999,103,0,0,88,0.2,0,0 +2016,10,1,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,24,66,98672,883,1364,413,611,785,103,74160,35540,12529,5208,217,0,0,0,3500,77777,9,999999999,102,0,0,88,0.2,0,0 +2016,10,1,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,32,24,63,98680,1053,1364,437,756,816,126,92650,38760,15511,6589,287,0,3,3,3500,77777,9,999999999,102,0,0,88,0.2,0,0 +2016,10,1,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.4,23,55,98025,1149,1364,443,844,855,124,94168,91865,16603,4020,120,1.5,3,3,2000,77777,9,999999999,92,0,0,88,0.2,0,0 +2016,10,1,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34,23,53,98697,1166,1364,447,859,824,156,105417,42196,19180,8084,140,1.5,3,3,3500,77777,9,999999999,92,0,0,88,0.2,0,0 +2016,10,1,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34,22,50,98697,1100,1364,452,755,663,221,89579,39926,26322,10784,120,2.1,5,5,3500,77777,9,999999999,83,0,0,88,0.2,0,0 +2016,10,1,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.2,22.5,48,97787,958,1364,460,634,646,180,74737,36760,21333,8700,50,1.5,5,5,2000,77777,9,999999999,87,0,0,88,0.2,0,0 +2016,10,1,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,22,47,98705,749,1364,458,458,563,149,53023,30939,17374,6716,80,2.6,5,5,3500,3048,9,999999999,83,0,0,88,0.2,0,0 +2016,10,1,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,23,50,98705,486,1364,460,248,347,125,27570,15832,13909,4734,10,1.5,5,5,3000,3048,9,999999999,92,0,0,88,0.2,0,0 +2016,10,1,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33,23.2,57,97778,189,1364,448,56,57,48,6063,0,5228,1584,70,2.1,5,5,2000,3048,9,999999999,94,0,0,88,0.2,0,0 +2016,10,1,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,23,56,98689,0,825,448,0,0,0,0,0,0,0,50,1.5,5,5,2500,3048,9,999999999,92,0,0,88,0.2,0,0 +2016,10,1,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,23,59,98680,0,0,442,0,0,0,0,0,0,0,30,2.1,5,5,2500,3048,9,999999999,93,0,0,88,0.2,0,0 +2016,10,1,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,30.4,24.1,69,97883,0,0,428,0,0,0,0,0,0,0,327,0,3,3,2000,3048,9,999999999,103,0,0,88,0.2,0,0 +2016,10,1,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31,24,66,98672,0,0,431,0,0,0,0,0,0,0,60,1.5,3,3,2500,3048,9,999999999,102,0,0,88,0.2,0,0 +2016,10,1,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31,24,66,98672,0,0,431,0,0,0,0,0,0,0,100,1.5,3,3,2500,3048,9,999999999,102,0,0,88,0.2,0,0 +2016,10,1,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,29,24.7,78,97978,0,0,421,0,0,0,0,0,0,0,119,0,3,3,2000,3048,9,999999999,110,0,0,88,0.2,0,0 +2016,10,2,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,30,24,70,98663,0,0,408,0,0,0,0,0,0,0,303,0,0,0,2200,3048,9,999999999,103,0,0,88,0.2,0,0 +2016,10,2,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,24,70,98663,0,0,408,0,0,0,0,0,0,0,45,0,0,0,1800,77777,9,999999999,103,0,0,88,0.2,0,0 +2016,10,2,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,28.2,24.2,79,97951,0,0,398,0,0,0,0,0,0,0,59,0,0,0,1000,77777,9,999999999,104,0,0,88,0.2,0,0 +2016,10,2,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,24,74,98654,0,0,402,0,0,0,0,0,0,0,263,0,0,0,1800,77777,9,999999999,103,0,0,88,0.2,0,0 +2016,10,2,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,24,79,98646,0,0,397,0,0,0,0,0,0,0,217,0,0,0,1800,77777,9,999999999,103,0,0,88,0.2,0,0 +2016,10,2,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,26.8,24.2,86,98066,0,0,391,0,0,0,0,0,0,0,216,0,0,0,2000,77777,9,999999999,105,0,0,88,0.2,0,0 +2016,10,2,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,24,79,98646,63,277,421,13,0,13,1278,0,1287,463,65,0,5,5,1800,77777,9,999999999,103,0,0,88,0.2,0,0 +2016,10,2,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,24,79,98646,369,1365,421,163,239,99,17901,7540,10861,3496,275,0,5,5,1800,3048,9,999999999,103,0,0,88,0.2,0,0 +2016,10,2,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,28.8,24.8,79,98219,648,1365,426,374,451,160,42016,23637,18035,6568,249,0,5,5,2000,3048,9,999999999,111,0,0,88,0.2,0,0 +2016,10,2,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32,24,63,98680,880,1365,437,600,704,147,70899,35969,17396,7084,120,2.6,3,3,2800,3048,9,999999999,102,0,0,88,0.2,0,0 +2016,10,2,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33,25,63,98689,1050,1365,444,751,811,128,91828,37390,15718,6680,110,3.1,3,3,3500,3048,9,999999999,113,0,0,88,0.2,0,0 +2016,10,2,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.6,22.2,51,98231,1146,1365,443,842,859,122,93579,91945,16266,3927,110,2.1,3,3,2000,3048,9,999999999,85,0,0,88,0.2,0,0 +2016,10,2,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34,24,56,98697,1161,1365,448,854,819,157,104473,40877,19336,8157,110,3.1,3,3,3200,3048,9,999999999,102,0,0,88,0.2,0,0 +2016,10,2,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,23,50,98705,1096,1365,460,750,660,220,88789,38842,26231,10756,100,2.6,5,5,3000,3048,9,999999999,92,0,0,88,0.2,0,0 +2016,10,2,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35.2,24.5,54,98001,953,1365,463,627,640,181,73677,34530,21362,8717,70,1.5,5,5,2000,3000,9,999999999,106,0,0,88,0.2,0,0 +2016,10,2,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,23,50,98705,743,1365,460,453,556,151,52261,29854,17464,6735,120,2.1,5,5,3000,3048,9,999999999,92,0,0,88,0.2,0,0 +2016,10,2,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,22,47,98705,481,1365,458,244,345,123,27176,16050,13730,4658,70,2.1,5,5,3000,3048,9,999999999,83,0,0,88,0.2,0,0 +2016,10,2,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,33.8,24.1,57,97872,183,1365,447,56,62,48,6072,0,5189,1558,339,0,3,3,2000,3048,9,999999999,102,0,0,88,0.2,0,0 +2016,10,2,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,24,59,98689,0,799,424,0,0,0,0,0,0,0,100,1.5,0,0,3500,77777,9,999999999,102,0,0,88,0.2,0,0 +2016,10,2,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,24,59,98689,0,0,424,0,0,0,0,0,0,0,80,2.1,0,0,3000,77777,9,999999999,102,0,0,88,0.2,0,0 +2016,10,2,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31,24.4,68,98102,0,0,414,0,0,0,0,0,0,0,90,2.1,0,0,2000,77777,9,999999999,106,0,0,88,0.2,0,0 +2016,10,2,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,24,63,98680,0,0,419,0,0,0,0,0,0,0,120,2.1,0,0,3000,77777,9,999999999,102,0,0,88,0.2,0,0 +2016,10,2,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,32,24,63,98680,0,0,419,0,0,0,0,0,0,0,318,0,0,0,3000,77777,9,999999999,102,0,0,88,0.2,0,0 +2016,10,2,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,24.8,76,98205,0,0,405,0,0,0,0,0,0,0,140,2.1,0,0,2000,77777,9,999999999,111,0,0,88,0.2,0,0 +2016,10,3,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,25,70,98672,0,0,414,0,0,0,0,0,0,0,120,2.1,0,0,3000,77777,9,999999999,113,0,0,88,0.2,0,0 +2016,10,3,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,25,75,98663,0,0,409,0,0,0,0,0,0,0,100,1.5,0,0,3000,77777,9,999999999,113,0,0,88,0.2,0,0 +2016,10,3,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,28.6,24.3,78,98188,0,0,401,0,0,0,0,0,0,0,54,0,0,0,2000,77777,9,999999999,106,0,0,88,0.2,0,0 +2016,10,3,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,25,79,98654,0,0,404,0,0,0,0,0,0,0,100,1.5,0,0,3000,77777,9,999999999,114,0,0,88,0.2,0,0 +2016,10,3,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,25,79,98654,0,0,404,0,0,0,0,0,0,0,20,0,0,0,2800,77777,9,999999999,114,0,0,88,0.2,0,0 +2016,10,3,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.2,25.1,83,98292,0,0,399,0,0,0,0,0,0,0,110,2.1,0,0,2000,77777,9,999999999,115,0,0,88,0.2,0,0 +2016,10,3,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,25,79,98654,61,265,421,14,0,14,1297,0,1306,465,110,2.1,3,3,2600,77777,9,999999999,114,0,0,88,0.2,0,0 +2016,10,3,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29,25,79,98654,366,1365,404,173,263,103,18894,8159,11252,3575,100,2.6,0,0,2600,77777,9,999999999,114,0,0,88,0.2,0,0 +2016,10,3,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30.4,25.3,74,98467,645,1365,462,206,47,184,22854,2612,20515,7230,110,1.5,9,9,2000,3000,9,999999999,117,0,0,88,0.2,0,0 +2016,10,3,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,26,75,98672,877,1365,440,561,540,215,64097,30672,24673,9601,120,4.1,5,5,3000,3048,9,999999999,125,0,0,88,0.2,0,0 +2016,10,3,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,25,60,98697,1046,1365,457,705,632,222,82624,35766,26108,10646,140,4.1,5,5,5000,3048,9,999999999,113,0,0,88,0.2,0,0 +2016,10,3,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36.2,23,47,98457,1142,1365,467,789,685,217,94161,39585,26019,10712,140,2.1,5,5,4000,3000,9,999999999,92,0,0,88,0.2,0,0 +2016,10,3,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,24,56,98697,1157,1365,455,801,682,223,95399,38653,26753,10999,150,3.1,5,5,6000,3048,9,999999999,102,0,0,88,0.2,0,0 +2016,10,3,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,24,56,98697,1091,1365,455,745,659,219,88011,37691,26025,10687,150,2.6,5,5,7000,3048,9,999999999,102,0,0,88,0.2,0,0 +2016,10,3,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34.2,24.6,57,98158,948,1365,457,623,639,179,73126,34329,21183,8639,140,1.5,5,5,4000,3000,9,999999999,108,0,0,88,0.2,0,0 +2016,10,3,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,24,53,98705,738,1365,461,448,548,152,51499,28726,17549,6751,130,2.1,5,5,6000,3048,9,999999999,102,0,0,88,0.2,0,0 +2016,10,3,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,24,53,98705,475,1365,461,239,338,122,26518,14562,13582,4603,130,2.1,5,5,6000,3048,9,999999999,102,0,0,88,0.2,0,0 +2016,10,3,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,33.2,24.4,60,98004,177,1365,451,50,44,44,5435,0,4833,1463,243,0,5,5,4000,3000,9,999999999,106,0,0,88,0.2,0,0 +2016,10,3,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,33,24,59,98689,0,772,442,0,0,0,0,0,0,0,188,0,3,3,3500,3000,9,999999999,102,0,0,88,0.2,0,0 +2016,10,3,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,33,25,63,98689,0,0,444,0,0,0,0,0,0,0,48,0,3,3,3500,3000,9,999999999,113,0,0,88,0.2,0,0 +2016,10,3,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,30.6,24.3,69,98157,0,0,429,0,0,0,0,0,0,0,176,0,3,3,2000,3000,9,999999999,105,0,0,88,0.2,0,0 +2016,10,3,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,32,25,67,98680,0,0,438,0,0,0,0,0,0,0,232,0,3,3,3000,3000,9,999999999,113,0,0,88,0.2,0,0 +2016,10,3,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,31,25,70,98672,0,0,432,0,0,0,0,0,0,0,349,0,3,3,2500,3000,9,999999999,113,0,0,88,0.2,0,0 +2016,10,3,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,30.4,26.2,78,98204,0,0,430,0,0,0,0,0,0,0,161,0,3,3,2000,3000,9,999999999,127,0,0,88,0.2,0,0 +2016,10,4,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,31,25,70,98672,0,0,432,0,0,0,0,0,0,0,0,0,3,3,2500,3000,9,999999999,113,0,0,88,0.2,0,0 +2016,10,4,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,30,25,75,98663,0,0,427,0,0,0,0,0,0,0,168,0,3,3,2500,3000,9,999999999,113,0,0,88,0.2,0,0 +2016,10,4,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,29.4,25.1,78,98127,0,0,423,0,0,0,0,0,0,0,279,0,3,3,2000,3000,9,999999999,114,0,0,88,0.2,0,0 +2016,10,4,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,30,25,75,98663,0,0,427,0,0,0,0,0,0,0,66,0,3,3,2500,3000,9,999999999,113,0,0,88,0.2,0,0 +2016,10,4,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30,25,75,98663,0,0,427,0,0,0,0,0,0,0,110,2.1,3,3,2200,3000,9,999999999,113,0,0,88,0.2,0,0 +2016,10,4,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.6,25.5,83,98315,0,0,419,0,0,0,0,0,0,0,110,1.5,3,3,2000,3000,9,999999999,119,0,0,88,0.2,0,0 +2016,10,4,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29,25,79,98654,58,253,428,12,0,12,1170,0,1178,426,100,1.5,5,5,2200,3000,9,999999999,114,0,0,88,0.2,0,0 +2016,10,4,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30,26,79,98663,364,1366,435,159,233,97,17403,6371,10671,3435,120,2.1,5,5,2200,3000,9,999999999,125,0,0,88,0.2,0,0 +2016,10,4,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.8,24.4,73,98374,642,1366,431,369,493,138,42016,24217,15774,5863,140,2.1,5,5,2000,3000,9,999999999,107,0,0,88,0.2,0,0 +2016,10,4,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32,25,67,98680,873,1366,445,560,619,164,65364,32097,19262,7755,160,2.6,5,5,2500,3000,9,999999999,113,0,0,88,0.2,0,0 +2016,10,4,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34,25,60,98697,1042,1366,457,702,633,220,82273,35738,25925,10572,150,2.1,5,5,3500,3000,9,999999999,113,0,0,88,0.2,0,0 +2016,10,4,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,20.4,44,98247,1138,1366,453,790,696,210,94631,42236,25333,10431,160,2.1,5,5,2000,3000,9,999999999,71,0,0,88,0.2,0,0 +2016,10,4,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35,23,50,98705,1153,1366,460,799,687,219,95319,39766,26334,10831,200,2.1,5,5,3500,3000,9,999999999,92,0,0,88,0.2,0,0 +2016,10,4,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35,23,50,98705,1086,1366,460,742,663,215,87861,38760,25618,10520,110,1.5,5,5,3500,3000,9,999999999,92,0,0,88,0.2,0,0 +2016,10,4,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36,23,47,98714,943,1366,466,620,645,176,73043,35992,20808,8472,90,1.5,5,5,3500,3000,9,999999999,92,0,0,88,0.2,0,0 +2016,10,4,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36,23,47,98714,732,1366,466,444,550,150,51150,29473,17346,6657,340,2.1,5,5,3500,3000,9,999999999,92,0,0,88,0.2,0,0 +2016,10,4,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,23,50,98705,469,1366,460,236,336,120,26130,14797,13406,4527,360,4.1,5,5,3500,3048,9,999999999,92,0,0,88,0.2,0,0 +2016,10,4,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33.6,24.2,58,97802,171,1366,453,47,38,42,5143,0,4643,1404,360,2.1,5,5,2000,3000,9,999999999,103,0,0,88,0.2,0,0 +2016,10,4,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,24,59,98689,0,746,449,0,0,0,0,0,0,0,10,2.6,5,5,3500,3048,9,999999999,102,0,0,88,0.2,0,0 +2016,10,4,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33,25,63,98689,0,0,444,0,0,0,0,0,0,0,10,2.1,3,3,3000,3048,9,999999999,113,0,0,88,0.2,0,0 +2016,10,4,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,31.2,24.4,67,97909,0,0,433,0,0,0,0,0,0,0,235,0,3,3,2000,3048,9,999999999,106,0,0,88,0.2,0,0 +2016,10,4,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32,25,67,98680,0,0,438,0,0,0,0,0,0,0,60,1.5,3,3,2600,3048,9,999999999,113,0,0,88,0.2,0,0 +2016,10,4,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32,26,71,98680,0,0,439,0,0,0,0,0,0,0,80,1.5,3,3,1800,3048,9,999999999,125,0,0,88,0.2,0,0 +2016,10,4,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,29.6,25.1,77,98002,0,0,424,0,0,0,0,0,0,0,134,0,3,3,2000,3048,9,999999999,114,0,0,88,0.2,0,0 +2016,10,5,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,31,25,70,98672,0,0,432,0,0,0,0,0,0,0,207,0,3,3,1500,3048,9,999999999,113,0,0,88,0.2,0,0 +2016,10,5,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,31,25,70,98672,0,0,432,0,0,0,0,0,0,0,286,0,3,3,1500,3048,9,999999999,113,0,0,88,0.2,0,0 +2016,10,5,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,29,24.1,75,97929,0,0,420,0,0,0,0,0,0,0,133,0,3,3,2000,3048,9,999999999,103,0,0,88,0.2,0,0 +2016,10,5,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,30,26,79,98663,0,0,428,0,0,0,0,0,0,0,47,0,3,3,1200,3048,9,999999999,125,0,0,88,0.2,0,0 +2016,10,5,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,30,26,79,98663,0,0,428,0,0,0,0,0,0,0,165,0,3,3,1200,3048,9,999999999,125,0,0,88,0.2,0,0 +2016,10,5,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,28.6,25.2,82,97896,0,0,419,0,0,0,0,0,0,0,196,0,3,3,1000,3048,9,999999999,115,0,0,88,0.2,4,0 +2016,10,5,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,30,26,79,98663,55,241,428,13,0,13,1185,0,1193,428,316,0,3,3,1000,3048,9,999999999,125,0,0,88,0.2,0,0 +2016,10,5,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,30,26,79,98663,361,1367,428,167,303,88,18432,7263,9686,3187,46,0,3,3,1000,3048,9,999999999,125,0,0,88,0.2,0,0 +2016,10,5,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,30.6,25.8,76,98157,639,1367,431,389,595,111,44874,24844,12858,4915,20,0,3,3,1000,3048,9,999999999,122,0,0,88,0.2,0,0 +2016,10,5,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,32,26,71,98680,870,1367,439,590,746,116,70659,32506,13899,5746,143,0,3,3,1500,3048,9,999999999,125,0,0,88,0.2,0,0 +2016,10,5,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,33,24,59,98689,1039,1367,442,743,805,132,90612,38874,16191,6855,314,0,3,3,2000,3048,9,999999999,102,0,0,88,0.2,0,0 +2016,10,5,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,34.6,20.6,44,98054,1134,1367,454,786,673,229,93521,41964,27382,11176,79,0,5,5,2000,3048,9,999999999,72,0,0,88,0.2,0,0 +2016,10,5,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,25,60,98697,1148,1367,457,792,680,222,94135,37396,26548,10934,50,2.1,5,5,2800,3048,9,999999999,113,0,0,88,0.2,0,0 +2016,10,5,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,25,56,98705,1081,1367,463,735,657,216,86745,36442,25652,10549,320,2.1,5,5,1800,3048,9,999999999,112,0,0,88,0.2,0,0 +2016,10,5,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,24.3,52,97722,937,1367,465,615,641,176,72206,34516,20734,8443,20,3.1,5,5,2000,3048,9,999999999,104,0,0,88,0.2,0,0 +2016,10,5,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,23,66,98663,727,1367,431,440,452,200,49443,27879,22564,8206,130,4.1,5,5,2500,3048,9,999999999,93,0,0,88,0.2,0,0 +2016,10,5,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,23,70,98654,463,1367,463,78,0,78,7706,0,7771,3251,320,2.6,10,10,2500,2438,0,919999999,93,0,0,88,0.2,0,0 +2016,10,5,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26.6,24,86,97674,165,1367,437,25,0,25,2370,0,2388,922,180,2.1,9,9,2000,2400,0,919999999,102,0,0,88,0.2,0,0 +2016,10,5,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,24,84,98637,0,720,440,0,0,0,0,0,0,0,260,2.6,9,9,2500,3048,0,19999999,103,0,0,88,0.2,0,0 +2016,10,5,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,24,89,98628,0,0,434,0,0,0,0,0,0,0,270,3.6,9,9,2500,3048,0,19999999,103,0,0,88,0.2,0,0 +2016,10,5,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24.6,22.8,90,97988,0,0,424,0,0,0,0,0,0,0,180,1.5,9,9,2000,3000,0,19999999,91,0,0,88,0.2,0,0 +2016,10,5,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,24,94,98619,0,0,428,0,0,0,0,0,0,0,230,2.6,9,9,2500,3048,0,19999999,103,0,0,88,0.2,0,0 +2016,10,5,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,24,94,98619,0,0,428,0,0,0,0,0,0,0,270,2.1,9,9,2800,3048,0,19999999,103,0,0,88,0.2,0,0 +2016,10,5,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25.2,22.5,85,97964,0,0,427,0,0,0,0,0,0,0,230,1.5,9,9,2000,3000,0,19999999,89,0,0,88,0.2,0,0 +2016,10,6,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,23,89,98619,0,0,427,0,0,0,0,0,0,0,260,2.1,9,9,4000,3048,0,19999999,94,0,0,88,0.2,0,0 +2016,10,6,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,23,89,98619,0,0,427,0,0,0,0,0,0,0,290,1.5,9,9,4000,3048,0,19999999,94,0,0,88,0.2,0,0 +2016,10,6,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25,22.3,85,97874,0,0,402,0,0,0,0,0,0,0,197,0,5,5,2000,3000,0,19999999,87,0,0,88,0.2,0,0 +2016,10,6,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25,23,89,98619,0,0,403,0,0,0,0,0,0,0,255,0,5,5,4000,3048,0,19999999,94,0,0,88,0.2,0,0 +2016,10,6,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25,23,89,98619,0,0,403,0,0,0,0,0,0,0,53,0,5,5,4000,3048,0,19999999,94,0,0,88,0.2,0,0 +2016,10,6,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,24.8,23,90,97863,0,0,402,0,0,0,0,0,0,0,47,0,5,5,4000,3000,9,999999999,93,0,0,88,0.2,0,0 +2016,10,6,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,24,89,98628,52,228,434,6,0,6,593,0,597,236,105,0,9,9,3200,3048,9,999999999,103,0,0,88,0.2,0,0 +2016,10,6,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,24,89,98628,358,1368,434,87,0,87,8455,0,8523,3154,120,2.1,9,9,2500,3048,9,999999999,103,0,0,88,0.2,0,0 +2016,10,6,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26.2,24.2,89,97992,636,1368,435,203,16,195,22378,968,21666,7444,20,0,9,9,2000,3000,9,999999999,105,0,0,88,0.2,0,0 +2016,10,6,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,24,84,98637,867,1368,440,308,31,288,34405,2203,32393,11680,140,1.5,9,9,2200,3048,9,999999999,103,0,0,88,0.2,0,0 +2016,10,6,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,23,74,98646,1035,1368,444,388,31,365,43685,2322,41368,15130,259,0,9,9,2200,3048,9,999999999,93,0,0,88,0.2,0,0 +2016,10,6,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29.2,23.1,70,98057,1130,1368,451,432,70,375,49278,5160,43032,16069,260,0,9,9,2000,3000,9,999999999,93,0,0,88,0.2,0,0 +2016,10,6,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,23,70,98654,1144,1368,450,439,70,381,50085,5195,43744,16301,250,1.5,9,9,2200,3048,9,999999999,93,0,0,88,0.2,0,0 +2016,10,6,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,23,66,98663,1076,1368,456,407,69,353,46281,5074,40391,15134,280,1.5,9,9,2200,3048,9,999999999,93,0,0,88,0.2,0,0 +2016,10,6,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30.2,23.2,66,97783,932,1368,458,339,29,319,38007,2154,36010,13058,340,1.5,9,9,2000,3000,9,999999999,94,0,0,88,0.2,0,0 +2016,10,6,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,24,66,98672,721,1368,464,241,19,231,26714,1257,25738,8989,310,2.6,9,9,2200,3048,9,999999999,102,0,0,88,0.2,0,0 +2016,10,6,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,24,66,98672,457,1368,464,126,16,121,13909,667,13386,4474,300,2.6,9,9,2200,3048,9,999999999,102,0,0,88,0.2,0,0 +2016,10,6,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29.6,23.5,70,97632,159,1368,454,23,0,23,2234,0,2251,870,270,1,9,9,2000,3000,9,999999999,97,0,0,88,0.2,0,0 +2016,10,6,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,25,79,98654,0,694,428,0,0,0,0,0,0,0,260,2.1,5,5,2200,3048,9,999999999,114,0,0,88,0.2,0,0 +2016,10,6,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,25,79,98654,0,0,428,0,0,0,0,0,0,0,270,2.1,5,5,2200,3048,9,999999999,114,0,0,88,0.2,0,0 +2016,10,6,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,24,74,98654,0,0,426,0,0,0,0,0,0,0,270,2.1,5,5,2200,3048,9,999999999,103,0,0,88,0.2,0,0 +2016,10,6,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,24,79,98646,0,0,421,0,0,0,0,0,0,0,286,0,5,5,2200,3048,9,999999999,103,0,0,88,0.2,0,0 +2016,10,6,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,24,79,98646,0,0,421,0,0,0,0,0,0,0,161,0,5,5,2200,3048,9,999999999,103,0,0,88,0.2,0,0 +2016,10,6,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26.8,23.6,83,97861,0,0,413,0,0,0,0,0,0,0,2,0,5,5,2000,3000,9,999999999,98,0,0,88,0.2,0,0 +2016,10,7,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,24,79,98646,0,0,421,0,0,0,0,0,0,0,283,0,5,5,2000,3048,9,999999999,103,0,0,88,0.2,0,0 +2016,10,7,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,25,84,98646,0,0,422,0,0,0,0,0,0,0,268,0,5,5,2000,3048,9,999999999,114,0,0,88,0.2,0,0 +2016,10,7,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26.4,22.9,81,97965,0,0,410,0,0,0,0,0,0,0,58,0,5,5,2000,3000,9,999999999,92,0,0,88,0.2,0,0 +2016,10,7,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,25,89,98637,0,0,416,0,0,0,0,0,0,0,300,1.5,5,5,2200,3048,9,999999999,114,0,0,88,0.2,0,0 +2016,10,7,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,24,84,98637,0,0,415,0,0,0,0,0,0,0,322,0,5,5,1900,3048,9,999999999,103,0,0,88,0.2,0,0 +2016,10,7,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,23.7,87,97922,0,0,409,0,0,0,0,0,0,0,57,0,5,5,4000,3000,9,999999999,100,0,0,88,0.2,0,0 +2016,10,7,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,24,84,98637,49,216,415,11,0,11,1013,0,1020,371,290,1.5,5,5,1600,3048,9,999999999,103,0,0,88,0.2,0,0 +2016,10,7,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,24,84,98637,355,1369,415,155,233,95,16958,6787,10397,3326,280,1.5,5,5,1500,3048,9,999999999,103,0,0,88,0.2,0,0 +2016,10,7,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27.2,23.2,79,98205,633,1369,415,364,410,174,40561,23610,19556,6891,220,0,5,5,2000,3000,9,999999999,95,0,0,88,0.2,0,0 +2016,10,7,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,24,79,98646,863,1369,446,307,45,278,34316,3102,31341,11390,290,2.1,9,9,2400,3048,9,999999999,103,0,0,88,0.2,0,0 +2016,10,7,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,24,70,98663,1031,1369,457,385,30,362,43351,2258,41064,15040,270,2.1,9,9,3000,3048,9,999999999,103,0,0,88,0.2,0,0 +2016,10,7,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31.6,24.5,66,98204,1126,1369,468,429,94,352,49057,6544,40529,15401,270,1.5,9,9,2000,3000,9,999999999,107,0,0,88,0.2,0,0 +2016,10,7,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,25,63,98689,1139,1369,451,785,584,299,90959,36857,34900,13771,270,1.5,5,5,2500,3048,9,999999999,113,0,0,88,0.2,0,0 +2016,10,7,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,25,56,98705,1071,1369,463,727,608,251,84637,36188,29440,11848,300,2.1,5,5,2500,3048,9,999999999,112,0,0,88,0.2,0,0 +2016,10,7,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33.6,22.9,54,97978,927,1369,478,337,92,275,38203,6293,31368,11803,50,2.6,9,9,2000,3000,9,999999999,91,0,0,88,0.2,0,0 +2016,10,7,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,23,53,98697,715,1369,454,431,448,197,48396,27481,22264,8059,30,2.6,5,5,2800,3048,9,999999999,92,0,0,88,0.2,0,0 +2016,10,7,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,23,53,98697,451,1369,454,223,342,111,24839,13980,12381,4191,50,2.6,5,5,2800,3048,9,999999999,92,0,0,88,0.2,0,0 +2016,10,7,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,31.8,23.4,61,97885,153,1369,441,40,20,37,4318,0,4089,1233,132,0,5,5,2000,3048,9,999999999,96,0,0,88,0.2,0,0 +2016,10,7,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32,23,59,98680,0,669,435,0,0,0,0,0,0,0,70,2.1,3,3,2800,3048,9,999999999,93,0,0,88,0.2,0,0 +2016,10,7,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31,24,66,98672,0,0,431,0,0,0,0,0,0,0,140,1.5,3,3,2200,3048,9,999999999,102,0,0,88,0.2,0,0 +2016,10,7,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,29.6,24.5,74,98031,0,0,424,0,0,0,0,0,0,0,251,0,3,3,2000,3048,9,999999999,107,0,0,88,0.2,0,0 +2016,10,7,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30,25,75,98663,0,0,427,0,0,0,0,0,0,0,160,2.1,3,3,2200,3048,9,999999999,113,0,0,88,0.2,0,0 +2016,10,7,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29,25,79,98654,0,0,421,0,0,0,0,0,0,0,190,1.5,3,3,2200,3048,9,999999999,114,0,0,88,0.2,0,0 +2016,10,7,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,27.6,24.7,84,98111,0,0,413,0,0,0,0,0,0,0,5,0,3,3,2000,3048,9,999999999,110,0,0,88,0.2,0,0 +2016,10,8,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29,25,79,98654,0,0,421,0,0,0,0,0,0,0,190,1.5,3,3,2100,3048,9,999999999,114,0,0,88,0.2,0,0 +2016,10,8,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,28,25,84,98646,0,0,415,0,0,0,0,0,0,0,241,0,3,3,2100,3048,9,999999999,114,0,0,88,0.2,0,0 +2016,10,8,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,26.4,24.4,89,98111,0,0,406,0,0,0,0,0,0,0,82,0,3,3,2000,3048,9,999999999,107,0,0,88,0.2,0,0 +2016,10,8,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,27,25,89,98637,0,0,410,0,0,0,0,0,0,0,336,0,3,3,2000,3048,9,999999999,114,0,0,88,0.2,0,0 +2016,10,8,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,27,25,89,98637,0,0,410,0,0,0,0,0,0,0,128,0,3,3,2000,3048,9,999999999,114,0,0,88,0.2,0,0 +2016,10,8,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,25.8,24.1,90,98232,0,0,402,0,0,0,0,0,0,0,213,0,3,3,2000,3048,9,999999999,104,0,0,88,0.2,0,0 +2016,10,8,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26,25,94,98628,46,204,405,11,0,11,1015,0,1022,369,270,1.5,3,3,1500,3048,9,999999999,114,0,0,88,0.2,0,0 +2016,10,8,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26,25,94,98628,352,1369,405,162,300,85,17885,7273,9438,3089,270,1.5,3,3,1500,3048,9,999999999,114,0,0,88,0.2,0,0 +2016,10,8,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.4,24.4,89,98247,629,1369,406,383,598,108,44255,25969,12563,4781,270,2.1,3,3,1000,3048,9,999999999,107,0,0,88,0.2,0,0 +2016,10,8,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29,25,79,98654,860,1369,421,583,750,112,69917,33643,13500,5565,260,2.1,3,3,1600,3048,9,999999999,114,0,0,88,0.2,0,0 +2016,10,8,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31,24,66,98672,1028,1369,431,734,815,123,89769,38537,15076,6390,280,3.6,3,3,2000,3048,9,999999999,102,0,0,88,0.2,0,0 +2016,10,8,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33,22.5,54,98245,1121,1369,440,820,856,120,91343,91680,16165,3610,270,1.5,3,3,2000,3048,9,999999999,88,0,0,88,0.2,0,0 +2016,10,8,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34,21,47,98697,1135,1369,444,834,788,182,100960,44963,22106,9219,300,4.1,3,3,3000,3048,9,999999999,76,0,0,88,0.2,0,0 +2016,10,8,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34,20,44,98697,1066,1369,443,774,850,113,85321,89956,15397,3082,330,4.1,3,3,3000,3048,9,999999999,68,0,0,88,0.2,0,0 +2016,10,8,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35,21.2,45,97951,922,1369,450,642,792,109,78278,39706,13396,5580,320,3.1,3,3,2000,3048,9,999999999,76,0,0,88,0.2,0,0 +2016,10,8,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35,21,44,98705,710,1369,450,455,625,131,52796,33277,15298,5890,320,3.1,3,3,4000,3048,9,999999999,75,0,0,88,0.2,0,0 +2016,10,8,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34,20,44,98697,446,1369,443,234,419,98,26355,17303,11084,3810,290,4.1,3,3,4000,3048,9,999999999,68,0,0,88,0.2,0,0 +2016,10,8,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,20.2,48,97825,147,1369,436,40,33,36,4337,0,3965,1187,290,4.1,3,3,4000,3048,9,999999999,69,0,0,88,0.2,0,0 +2016,10,8,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32,20,49,98680,0,643,431,0,0,0,0,0,0,0,310,2.6,3,3,3500,3048,9,999999999,69,0,0,88,0.2,0,0 +2016,10,8,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32,21,52,98680,0,0,433,0,0,0,0,0,0,0,330,3.1,3,3,3200,3048,9,999999999,76,0,0,88,0.2,0,0 +2016,10,8,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,28.6,22.4,69,98003,0,0,415,0,0,0,0,0,0,0,161,0,3,3,2000,3048,9,999999999,87,0,0,88,0.2,0,0 +2016,10,8,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30,21,59,98663,0,0,421,0,0,0,0,0,0,0,300,1.5,3,3,3000,3048,9,999999999,76,0,0,88,0.2,0,0 +2016,10,8,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,29,22,66,98654,0,0,417,0,0,0,0,0,0,0,174,0,3,3,3000,3048,9,999999999,84,0,0,88,0.2,0,0 +2016,10,8,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,26.8,22.7,78,98114,0,0,406,0,0,0,0,0,0,0,81,0,3,3,2000,3048,9,999999999,90,0,0,88,0.2,0,0 +2016,10,9,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,28,22,70,98646,0,0,412,0,0,0,0,0,0,0,145,0,3,3,2600,3048,9,999999999,84,0,0,88,0.2,0,0 +2016,10,9,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,27,22,74,98637,0,0,406,0,0,0,0,0,0,0,207,0,3,3,2600,3048,9,999999999,84,0,0,88,0.2,0,0 +2016,10,9,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,26,22.8,83,98136,0,0,385,0,0,0,0,0,0,0,187,0,0,0,2000,3048,9,999999999,91,0,0,88,0.2,0,0 +2016,10,9,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,25,22,83,98619,0,0,396,0,0,0,0,0,0,0,128,0,3,3,2200,3048,9,999999999,85,0,0,88,0.2,0,0 +2016,10,9,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,24,22,89,98610,0,0,374,0,0,0,0,0,0,0,357,0,0,0,1800,3048,9,999999999,85,0,0,88,0.2,0,0 +2016,10,9,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,24.4,21.7,85,98151,0,0,376,0,0,0,0,0,0,0,49,0,0,0,2000,3048,9,999999999,82,0,0,88,0.2,0,0 +2016,10,9,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25,22,83,98619,44,191,379,10,0,10,974,0,981,353,171,0,0,0,1600,77777,9,999999999,85,0,0,88,0.2,0,0 +2016,10,9,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,22,83,98619,349,1370,379,163,316,83,18097,8781,9212,3012,290,1.5,0,0,1500,77777,9,999999999,85,0,0,88,0.2,0,0 +2016,10,9,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.6,22.8,80,98249,626,1370,388,386,633,97,45108,27721,11399,4365,290,2.1,0,0,1000,77777,9,999999999,91,0,0,88,0.2,0,0 +2016,10,9,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,23,70,98654,856,1370,401,589,789,97,71657,36231,11814,4879,310,2.1,0,0,2200,77777,9,999999999,93,0,0,88,0.2,0,0 +2016,10,9,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,22,59,98672,1024,1370,411,742,781,160,89219,42553,19279,8041,290,2.6,0,0,2800,77777,9,999999999,84,0,0,88,0.2,0,0 +2016,10,9,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35,19.7,41,98282,1117,1370,430,831,788,190,100143,46997,22964,9530,290,2.1,0,0,2000,77777,9,999999999,66,0,0,88,0.2,0,0 +2016,10,9,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,21,47,98697,1130,1370,426,841,789,191,101297,45805,23170,9625,320,4.1,0,0,3500,77777,9,999999999,76,0,0,88,0.2,0,0 +2016,10,9,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,20,42,98705,1061,1370,430,780,784,173,93817,45612,20940,8713,320,3.6,0,0,3500,77777,9,999999999,68,0,0,88,0.2,0,0 +2016,10,9,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.2,19.2,39,97865,916,1370,430,648,833,92,71608,87500,12962,2190,320,4.1,0,0,4000,77777,9,999999999,63,0,0,88,0.2,0,0 +2016,10,9,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,20,42,98705,704,1370,430,456,651,122,53321,34512,14324,5536,320,5.7,0,0,4000,77777,9,999999999,68,0,0,88,0.2,0,0 +2016,10,9,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,18,37,98705,440,1370,427,234,436,94,26407,18372,10645,3664,340,2.6,0,0,4000,77777,9,999999999,56,0,0,88,0.2,0,0 +2016,10,9,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.4,19.7,47,97968,141,1370,415,37,29,35,4113,0,3798,1135,270,4.1,0,0,4000,77777,9,999999999,66,0,0,88,0.2,0,0 +2016,10,9,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,20,49,98680,0,618,413,0,0,0,0,0,0,0,330,2.6,0,0,3500,77777,9,999999999,69,0,0,88,0.2,0,0 +2016,10,9,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,20,49,98680,0,0,413,0,0,0,0,0,0,0,340,2.1,0,0,3500,77777,9,999999999,69,0,0,88,0.2,0,0 +2016,10,9,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,28.8,21,63,97995,0,0,398,0,0,0,0,0,0,0,269,0,0,0,2000,77777,9,999999999,76,0,0,88,0.2,0,0 +2016,10,9,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,21,55,98672,0,0,409,0,0,0,0,0,0,0,20,1.5,0,0,3200,77777,9,999999999,76,0,0,88,0.2,0,0 +2016,10,9,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,21,55,98672,0,0,409,0,0,0,0,0,0,0,177,0,0,0,3200,77777,9,999999999,76,0,0,88,0.2,0,0 +2016,10,9,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,26.6,21.2,72,98054,0,0,386,0,0,0,0,0,0,0,307,0,0,0,2000,77777,9,999999999,78,0,0,88,0.2,0,0 +2016,10,10,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,21,62,98654,0,0,399,0,0,0,0,0,0,0,245,0,0,0,3000,77777,9,999999999,76,0,0,88,0.2,0,0 +2016,10,10,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,21,66,98646,0,0,393,0,0,0,0,0,0,0,8,0,0,0,3000,77777,9,999999999,76,0,0,88,0.2,0,0 +2016,10,10,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,25.6,20.4,73,97938,0,0,380,0,0,0,0,0,0,0,302,0,0,0,2000,77777,9,999999999,72,0,0,88,0.2,0,0 +2016,10,10,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,21,74,98628,0,0,383,0,0,0,0,0,0,0,253,0,0,0,2500,77777,9,999999999,76,0,0,88,0.2,0,0 +2016,10,10,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,22,79,98628,0,0,384,0,0,0,0,0,0,0,44,0,0,0,2200,77777,9,999999999,85,0,0,88,0.2,0,0 +2016,10,10,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,23.8,21.4,86,97981,0,0,372,0,0,0,0,0,0,0,263,0,0,0,2000,77777,9,999999999,79,0,0,88,0.2,0,0 +2016,10,10,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25,22,83,98619,41,178,379,10,0,10,911,0,918,331,270,0,0,0,2000,77777,9,999999999,85,0,0,88,0.2,0,0 +2016,10,10,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25,22,83,98619,346,1371,379,161,314,82,17871,8562,9135,2982,47,0,0,0,1800,77777,9,999999999,85,0,0,88,0.2,0,0 +2016,10,10,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,26.4,21.9,76,98189,623,1371,386,384,635,96,44939,28419,11273,4309,79,0,0,0,2000,77777,9,999999999,83,0,0,88,0.2,0,0 +2016,10,10,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,21,59,98663,853,1371,404,588,797,93,71876,38391,11415,4704,283,0,0,0,2200,77777,9,999999999,76,0,0,88,0.2,0,0 +2016,10,10,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,21,52,98680,1020,1371,415,740,781,160,88992,43663,19329,8046,150,1.5,0,0,2500,77777,9,999999999,76,0,0,88,0.2,0,0 +2016,10,10,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.8,20.7,46,98184,1113,1371,424,826,788,187,99435,45879,22634,9411,140,2.1,0,0,2000,77777,9,999999999,73,0,0,88,0.2,0,0 +2016,10,10,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,20,42,98705,1125,1371,430,838,789,192,100993,46863,23204,9628,300,2.1,0,0,2800,77777,9,999999999,68,0,0,88,0.2,0,0 +2016,10,10,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,20,39,98714,1056,1371,436,775,784,172,93256,45550,20780,8644,300,2.6,0,0,3500,77777,9,999999999,68,0,0,88,0.2,0,0 +2016,10,10,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,35.8,20,40,97821,911,1371,434,642,828,92,71213,87263,13105,2179,49,0,0,0,2000,77777,9,999999999,68,0,0,88,0.2,0,0 +2016,10,10,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,36,21,42,98714,699,1371,437,451,645,123,52539,33407,14364,5540,280,2.6,0,0,4000,77777,9,999999999,75,0,0,88,0.2,0,0 +2016,10,10,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,21,44,98705,434,1371,431,228,424,94,25658,16271,10612,3645,60,3.1,0,0,4000,77777,9,999999999,75,0,0,88,0.2,0,0 +2016,10,10,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,22,50,98697,135,1371,427,35,20,33,3817,0,3613,1082,50,2.6,0,0,3000,77777,9,999999999,83,0,0,88,0.2,0,0 +2016,10,10,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,22,56,98680,0,592,416,0,0,0,0,0,0,0,60,2.1,0,0,3000,77777,9,999999999,84,0,0,88,0.2,0,0 +2016,10,10,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,22,59,98672,0,0,411,0,0,0,0,0,0,0,50,2.1,0,0,3000,77777,9,999999999,84,0,0,88,0.2,0,0 +2016,10,10,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,29,20.6,61,97900,0,0,398,0,0,0,0,0,0,0,0,0,0,0,2000,77777,9,999999999,73,0,0,88,0.2,0,0 +2016,10,10,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,20,58,98654,0,0,397,0,0,0,0,0,0,0,110,1.5,0,0,3000,77777,9,999999999,69,0,0,88,0.2,0,0 +2016,10,10,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,21,62,98654,0,0,399,0,0,0,0,0,0,0,193,0,0,0,2800,77777,9,999999999,76,0,0,88,0.2,0,0 +2016,10,10,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,26.2,21.4,75,97428,0,0,385,0,0,0,0,0,0,0,14,0,0,0,2000,77777,9,999999999,79,0,0,88,0.2,0,0 +2016,10,11,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,21,66,98646,0,0,393,0,0,0,0,0,0,0,81,0,0,0,2800,77777,9,999999999,76,0,0,88,0.2,0,0 +2016,10,11,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,22,70,98646,0,0,395,0,0,0,0,0,0,0,80,0,0,0,2800,77777,9,999999999,84,0,0,88,0.2,0,0 +2016,10,11,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,25.8,21.3,76,97843,0,0,382,0,0,0,0,0,0,0,187,0,0,0,2000,77777,9,999999999,78,0,0,88,0.2,0,0 +2016,10,11,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,20,66,98637,0,0,387,0,0,0,0,0,0,0,280,3.1,0,0,2500,77777,9,999999999,69,0,0,88,0.2,0,0 +2016,10,11,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26,19,65,98628,0,0,397,0,0,0,0,0,0,0,270,3.1,3,3,3000,77777,9,999999999,63,0,0,88,0.2,0,0 +2016,10,11,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,17.7,62,97919,0,0,400,0,0,0,0,0,0,0,340,1.5,5,5,2000,77777,9,999999999,55,0,0,88,0.2,0,0 +2016,10,11,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,16,54,98628,38,165,423,5,0,5,445,0,448,176,260,2.6,9,9,3500,3048,9,999999999,46,0,0,88,0.2,0,0 +2016,10,11,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,16,54,98628,343,1372,423,83,0,83,8170,0,8234,2995,44,0,9,9,3500,3048,9,999999999,46,0,0,88,0.2,0,0 +2016,10,11,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26.2,16.1,54,98031,620,1372,424,199,22,189,22172,1482,21199,7174,320,2.1,9,9,4000,3000,9,999999999,47,0,0,88,0.2,0,0 +2016,10,11,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,17,51,98646,849,1372,436,304,29,286,34168,2333,32321,11447,350,2.6,9,9,4000,3048,9,999999999,51,0,0,88,0.2,0,0 +2016,10,11,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,17,48,98654,1016,1372,442,383,32,359,43356,2670,40949,14806,350,2.6,9,9,4000,3048,9,999999999,51,0,0,88,0.2,0,0 +2016,10,11,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31.2,18.6,47,98143,1109,1372,457,426,98,347,48947,7624,40104,15136,320,3.1,9,9,4000,3000,9,999999999,59,0,0,88,0.2,0,0 +2016,10,11,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,13,30,98689,1121,1372,434,785,562,327,91250,45122,38208,14594,340,3.1,5,5,4000,3048,9,999999999,34,0,0,88,0.2,0,0 +2016,10,11,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,13,30,98689,1051,1372,434,726,674,210,86417,46530,25087,10179,350,3.1,5,5,4000,3048,9,999999999,34,0,0,88,0.2,0,0 +2016,10,11,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34,17.2,37,97913,905,1372,439,633,785,115,76937,43494,14043,5795,320,2.1,3,3,4000,3048,9,999999999,51,0,0,88,0.2,0,0 +2016,10,11,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,33,18,41,98689,693,1372,416,449,652,120,52490,35689,14080,5414,20,2.1,0,0,4000,3048,9,999999999,56,0,0,88,0.2,0,0 +2016,10,11,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,17,38,98689,428,1372,415,226,430,92,25503,17995,10379,3551,330,2.1,0,0,4000,77777,9,999999999,51,0,0,88,0.2,0,0 +2016,10,11,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.4,19.2,48,97842,129,1372,409,33,13,31,3581,0,3458,1032,320,1.5,0,0,4000,77777,9,999999999,63,0,0,88,0.2,0,0 +2016,10,11,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,19,52,98663,0,567,401,0,0,0,0,0,0,0,280,2.1,0,0,3200,77777,9,999999999,62,0,0,88,0.2,0,0 +2016,10,11,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,19,55,98654,0,0,396,0,0,0,0,0,0,0,270,2.1,0,0,3200,77777,9,999999999,62,0,0,88,0.2,0,0 +2016,10,11,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,19.6,56,97952,0,0,399,0,0,0,0,0,0,0,270,2.1,0,0,2000,77777,9,999999999,66,0,0,88,0.2,0,0 +2016,10,11,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,20,62,98646,0,0,392,0,0,0,0,0,0,0,280,1.5,0,0,2800,77777,9,999999999,69,0,0,88,0.2,0,0 +2016,10,11,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,21,70,98637,0,0,388,0,0,0,0,0,0,0,280,2.1,0,0,2500,77777,9,999999999,76,0,0,88,0.2,0,0 +2016,10,11,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,26.2,19.7,67,98041,0,0,383,0,0,0,0,0,0,0,105,0,0,0,2000,77777,9,999999999,67,0,0,88,0.2,0,0 +2016,10,12,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,21,74,98628,0,0,383,0,0,0,0,0,0,0,290,1.5,0,0,2500,77777,9,999999999,76,0,0,88,0.2,0,0 +2016,10,12,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,21,74,98628,0,0,383,0,0,0,0,0,0,0,12,0,0,0,2500,77777,9,999999999,76,0,0,88,0.2,0,0 +2016,10,12,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,24.4,19.4,74,98083,0,0,373,0,0,0,0,0,0,0,259,0,0,0,2000,77777,9,999999999,65,0,0,88,0.2,0,0 +2016,10,12,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25,21,78,98619,0,0,378,0,0,0,0,0,0,0,155,0,0,0,2200,77777,9,999999999,77,0,0,88,0.2,0,0 +2016,10,12,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,24,20,78,98610,0,0,372,0,0,0,0,0,0,0,149,0,0,0,2200,77777,9,999999999,69,0,0,88,0.2,0,0 +2016,10,12,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,23.6,19.6,78,97969,0,0,369,0,0,0,0,0,0,0,15,0,0,0,2000,77777,9,999999999,66,0,0,88,0.2,0,0 +2016,10,12,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,23,19,78,98601,35,152,366,8,0,8,790,0,795,289,111,0,0,0,2200,77777,9,999999999,63,0,0,88,0.2,0,0 +2016,10,12,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,23,19,78,98601,340,1373,366,158,316,80,17601,9402,8942,2904,139,0,0,0,2000,77777,9,999999999,63,0,0,88,0.2,0,0 +2016,10,12,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,24.8,19.9,74,98223,616,1373,376,381,641,93,44656,29852,10946,4173,260,0,0,0,2000,77777,9,999999999,68,0,0,88,0.2,0,0 +2016,10,12,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,20,66,98637,846,1373,387,583,801,90,71398,39251,11109,4567,280,3.1,0,0,2500,77777,9,999999999,69,0,0,88,0.2,0,0 +2016,10,12,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,19,52,98663,1012,1373,401,736,781,161,88503,45674,19420,8052,320,3.6,0,0,2500,77777,9,999999999,62,0,0,88,0.2,0,0 +2016,10,12,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32,19.2,47,98169,1104,1373,412,820,788,187,98779,47395,22629,9390,320,3.6,0,0,2000,77777,9,999999999,63,0,0,88,0.2,0,0 +2016,10,12,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,14,32,98689,1116,1373,411,838,861,139,103832,51555,17255,7258,340,5.1,0,0,3000,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,12,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,14,30,98697,1046,1373,416,774,848,128,95503,50214,15909,6683,300,5.1,0,0,3000,77777,9,999999999,37,0,0,88,0.2,0,0 +2016,10,12,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,16.1,34,97916,900,1373,421,637,807,109,77839,44891,13321,5497,320,5.1,0,0,2000,77777,9,999999999,46,0,0,88,0.2,0,0 +2016,10,12,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,15,32,98697,687,1373,418,446,655,119,52328,37545,13953,5344,310,5.1,0,0,3500,77777,9,999999999,41,0,0,88,0.2,0,0 +2016,10,12,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,14,30,98697,422,1373,416,223,377,107,24860,18199,11958,3938,310,4.6,0,0,4000,77777,9,999999999,37,0,0,88,0.2,0,0 +2016,10,12,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.4,14.5,34,97948,124,1373,408,30,4,30,3349,0,3316,984,320,4.1,0,0,4000,77777,9,999999999,39,0,0,88,0.2,0,0 +2016,10,12,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,13,31,98680,0,542,404,0,0,0,0,0,0,0,330,2.6,0,0,3200,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,12,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,15,40,98663,0,0,396,0,0,0,0,0,0,0,270,1.5,0,0,3200,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,12,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,27.2,16.6,52,97942,0,0,384,0,0,0,0,0,0,0,179,0,0,0,2000,77777,9,999999999,49,0,0,88,0.2,0,0 +2016,10,12,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,16,48,98646,0,0,387,0,0,0,0,0,0,0,322,0,0,0,2800,77777,9,999999999,46,0,0,88,0.2,0,0 +2016,10,12,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,16,48,98646,0,0,387,0,0,0,0,0,0,0,196,0,0,0,2500,77777,9,999999999,46,0,0,88,0.2,0,0 +2016,10,12,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,24.6,17.2,63,97988,0,0,371,0,0,0,0,0,0,0,317,0,0,0,2000,77777,9,999999999,52,0,0,88,0.2,0,0 +2016,10,13,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,16,54,98628,0,0,377,0,0,0,0,0,0,0,254,0,0,0,2300,77777,9,999999999,46,0,0,88,0.2,0,0 +2016,10,13,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,24,17,65,98610,0,0,368,0,0,0,0,0,0,0,271,0,0,0,2300,77777,9,999999999,51,0,0,88,0.2,0,0 +2016,10,13,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,22.8,17.3,71,97913,0,0,363,0,0,0,0,0,0,0,194,0,0,0,2000,77777,9,999999999,53,0,0,88,0.2,0,0 +2016,10,13,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,22,17,73,98592,0,0,358,0,0,0,0,0,0,0,270,0,0,0,2300,77777,9,999999999,52,0,0,88,0.2,0,0 +2016,10,13,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,22,17,73,98592,0,0,358,0,0,0,0,0,0,0,310,0,0,0,2200,77777,9,999999999,52,0,0,88,0.2,0,0 +2016,10,13,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,21.8,16.6,72,97992,0,0,357,0,0,0,0,0,0,0,356,0,0,0,2000,77777,9,999999999,49,0,0,88,0.2,0,0 +2016,10,13,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,16,73,98583,32,139,353,8,0,8,728,0,733,267,270,1.5,0,0,2500,77777,9,999999999,47,0,0,88,0.2,0,0 +2016,10,13,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,16,69,98592,336,1373,357,157,278,89,17338,9872,9858,3103,270,1,0,0,2800,77777,9,999999999,47,0,0,88,0.2,0,0 +2016,10,13,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.2,15.6,59,98072,613,1373,368,381,609,109,44252,32876,12727,4753,270,2.1,0,0,2000,77777,9,999999999,45,0,0,88,0.2,0,0 +2016,10,13,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,16,51,98637,842,1373,382,584,783,105,70922,43190,12761,5198,270,3.1,0,0,3500,77777,9,999999999,46,0,0,88,0.2,0,0 +2016,10,13,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,16,45,98654,1008,1373,392,736,848,114,90997,47600,14162,5951,270,3.6,0,0,3500,77777,9,999999999,46,0,0,88,0.2,0,0 +2016,10,13,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.8,16.2,39,98118,1100,1373,407,820,788,190,98873,50119,23008,9506,320,3.1,0,0,4000,77777,9,999999999,47,0,0,88,0.2,0,0 +2016,10,13,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,14,34,98680,1111,1373,406,834,861,138,103267,51502,17135,7209,290,3.1,0,0,4000,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,13,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,15,38,98672,1041,1373,402,768,851,123,94924,49260,15272,6424,280,3.1,0,0,4000,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,13,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.2,14.9,31,97856,895,1373,419,634,797,115,77101,45846,14007,5755,320,4.1,0,0,4000,77777,9,999999999,41,0,0,88,0.2,0,0 +2016,10,13,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,12,26,98697,682,1373,414,444,651,121,52001,39026,14232,5415,310,5.7,0,0,4000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,13,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,11,25,98697,417,1373,412,220,379,105,24556,18754,11760,3860,300,5.7,0,0,4000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,10,13,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.6,13.3,33,97912,118,1373,403,28,0,28,2743,0,2763,934,290,4.1,0,0,4000,77777,9,999999999,35,0,0,88,0.2,0,0 +2016,10,13,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,12,31,98672,0,518,398,0,0,0,0,0,0,0,330,2.1,0,0,3500,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,13,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,13,37,98654,0,0,389,0,0,0,0,0,0,0,340,2.1,0,0,3200,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,13,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,26.2,16.1,54,98021,0,0,378,0,0,0,0,0,0,0,84,0,0,0,2000,77777,9,999999999,47,0,0,88,0.2,0,0 +2016,10,13,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,14,42,98646,0,0,385,0,0,0,0,0,0,0,210,2.1,0,0,3200,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,13,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,14,45,98637,0,0,380,0,0,0,0,0,0,0,191,0,0,0,3200,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,13,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,24.2,14.5,55,98062,0,0,366,0,0,0,0,0,0,0,2,0,0,0,2000,77777,9,999999999,40,0,0,88,0.2,0,0 +2016,10,14,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,24,14,54,98610,0,0,365,0,0,0,0,0,0,0,110,0,0,0,3200,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,14,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,23,14,57,98601,0,0,360,0,0,0,0,0,0,0,322,0,0,0,3000,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,14,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,22.8,13.9,57,98020,0,0,359,0,0,0,0,0,0,0,94,0,0,0,2000,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,14,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,23,14,57,98601,0,0,360,0,0,0,0,0,0,0,47,0,0,0,3000,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,14,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,23,14,57,98601,0,0,360,0,0,0,0,0,0,0,185,0,0,0,3000,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,14,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,21.8,13.5,59,98099,0,0,354,0,0,0,0,0,0,0,252,0,0,0,2000,77777,9,999999999,36,0,0,88,0.2,0,0 +2016,10,14,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,14,57,98601,29,126,360,7,0,7,662,0,666,245,250,3.1,0,0,3000,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,14,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,12,50,98601,333,1374,358,156,282,88,17273,10691,9743,3057,250,2.1,0,0,3000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,14,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,23.8,14,54,98350,609,1374,364,379,613,107,44127,33647,12532,4675,20,0,0,0,2000,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,14,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,13,42,98637,838,1374,378,584,771,114,70540,45425,13807,5584,260,3.1,0,0,3500,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,14,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,13,35,98663,1004,1374,394,736,840,123,90621,50093,15210,6358,280,5.7,0,0,4000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,14,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.6,14.4,33,98301,1095,1374,409,819,861,134,101391,50908,16604,6992,270,5.1,0,0,4000,77777,9,999999999,39,0,0,88,0.2,0,0 +2016,10,14,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,14,34,98680,1106,1374,406,830,861,137,102706,51451,17013,7159,290,5.7,0,0,4500,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,14,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,14,30,98697,1036,1374,416,765,847,127,94309,50073,15695,6587,300,5.1,0,0,4500,77777,9,999999999,37,0,0,88,0.2,0,0 +2016,10,14,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.2,15.1,30,98108,889,1374,424,629,798,113,76524,45547,13764,5652,320,3.1,0,0,4000,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,14,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,12,25,98705,676,1374,419,439,648,120,51415,38765,14152,5373,310,6.2,0,0,4500,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,14,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,11,23,98705,411,1374,418,215,374,103,24073,18284,11611,3801,300,5.7,0,0,5000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,10,14,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,11.9,29,98682,112,1374,404,27,0,27,2627,0,2645,891,340,3.1,0,0,4000,77777,9,999999999,30,0,0,88,0.2,0,0 +2016,10,14,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,12,31,98672,0,493,398,0,0,0,0,0,0,0,330,2.1,0,0,4000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,14,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,13,35,98663,0,0,394,0,0,0,0,0,0,0,340,2.1,0,0,3500,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,14,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,25.8,16.4,56,98212,0,0,377,0,0,0,0,0,0,0,132,0,0,0,2000,77777,9,999999999,48,0,0,88,0.2,0,0 +2016,10,14,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,14,40,98654,0,0,390,0,0,0,0,0,0,0,23,0,0,0,3000,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,14,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,14,45,98637,0,0,380,0,0,0,0,0,0,0,297,0,0,0,3000,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,14,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,23.4,15.8,62,98172,0,0,364,0,0,0,0,0,0,0,319,0,0,0,2000,77777,9,999999999,46,0,0,88,0.2,0,0 +2016,10,15,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,24,15,57,98610,0,0,366,0,0,0,0,0,0,0,81,0,0,0,3000,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,15,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,23,15,61,98601,0,0,361,0,0,0,0,0,0,0,249,0,0,0,3000,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,15,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,21.6,16.7,74,98146,0,0,356,0,0,0,0,0,0,0,103,0,0,0,2000,77777,9,999999999,50,0,0,88,0.2,0,0 +2016,10,15,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,15,69,98583,0,0,351,0,0,0,0,0,0,0,109,0,0,0,3000,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,15,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,15,69,98583,0,0,351,0,0,0,0,0,0,0,94,0,0,0,3500,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,15,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,21,14.1,65,98199,0,0,350,0,0,0,0,0,0,0,24,0,0,0,2000,77777,9,999999999,39,0,0,88,0.2,0,0 +2016,10,15,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,14,64,98583,25,112,350,6,0,6,594,0,598,222,105,0,0,0,3500,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,15,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,14,64,98583,330,1375,350,154,278,87,16981,9985,9643,3024,270,2.1,0,0,3500,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,15,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,23.2,14.4,58,98413,606,1375,361,376,612,107,43770,33273,12483,4651,138,0,0,0,2000,77777,9,999999999,40,0,0,88,0.2,0,0 +2016,10,15,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,14,45,98637,834,1375,380,580,773,112,70073,44652,13531,5475,280,3.6,0,0,3500,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,15,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,14,38,98663,1000,1375,395,731,838,122,89964,49315,15112,6318,300,4.1,0,0,3500,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,15,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.6,15.7,36,98378,1091,1375,411,813,788,188,97966,50461,22818,9422,290,2.1,0,0,4000,77777,9,999999999,44,0,0,88,0.2,0,0 +2016,10,15,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,14,32,98689,1102,1375,411,825,862,136,102180,51412,16873,7101,290,3.6,0,0,4000,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,15,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,13,27,98705,1031,1375,420,762,849,126,93971,50759,15567,6527,320,3.6,0,0,4500,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,15,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.2,13.2,27,98147,884,1375,422,626,792,117,76014,46909,14308,5849,320,2.6,0,0,4000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,15,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,13,27,98705,671,1375,420,434,648,118,50806,38001,13883,5270,320,4.1,0,0,6000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,15,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,13,28,98697,405,1375,415,211,368,102,23515,17230,11476,3748,320,4.6,0,0,6000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,15,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,31.8,12.7,31,98148,107,1375,403,26,0,26,2507,0,2524,850,150,0,0,0,4000,77777,9,999999999,33,0,0,88,0.2,0,0 +2016,10,15,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,12,29,98680,0,469,403,0,0,0,0,0,0,0,330,2.1,0,0,4500,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,15,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,13,33,98672,0,0,399,0,0,0,0,0,0,0,340,1.5,0,0,4000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,15,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.4,15,44,98352,0,0,388,0,0,0,0,0,0,0,320,3.1,0,0,2000,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,15,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,14,40,98654,0,0,390,0,0,0,0,0,0,0,360,2.6,0,0,3500,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,15,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,14,42,98646,0,0,385,0,0,0,0,0,0,0,350,2.1,0,0,3500,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,15,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,24.6,14.1,52,98377,0,0,368,0,0,0,0,0,0,0,116,0,0,0,2000,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,16,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,13,45,98628,0,0,373,0,0,0,0,0,0,0,319,0,0,0,3000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,16,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25,13,47,98619,0,0,369,0,0,0,0,0,0,0,99,0,0,0,3000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,16,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,21.8,13.5,59,98313,0,0,354,0,0,0,0,0,0,0,243,0,0,0,2000,77777,9,999999999,36,0,0,88,0.2,0,0 +2016,10,16,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,22,15,64,98592,0,0,356,0,0,0,0,0,0,0,112,0,0,0,2500,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,16,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,14,64,98583,0,0,350,0,0,0,0,0,0,0,350,0,0,0,2500,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,16,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,20,14.5,71,98287,0,0,346,0,0,0,0,0,0,0,246,0,0,0,2000,77777,9,999999999,40,0,0,88,0.2,0,0 +2016,10,16,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,20,14,68,98574,22,98,346,5,0,5,523,0,526,197,22,0,0,0,2500,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,16,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,15,78,98564,327,1376,342,151,274,86,16696,9463,9549,2991,237,0,0,0,2500,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,16,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,13.6,58,98501,602,1376,356,374,588,117,43188,33421,13528,4975,270,1.5,0,0,2000,77777,9,999999999,37,0,0,88,0.2,0,0 +2016,10,16,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,14,50,98619,830,1376,370,577,772,111,69646,44545,13450,5437,260,2.6,0,0,2500,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,16,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,14,42,98646,996,1376,385,728,838,122,89467,49250,15036,6283,260,2.1,0,0,3000,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,16,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,15.8,41,98556,1086,1376,401,809,788,187,97427,50325,22640,9351,270,1.5,0,0,2000,77777,9,999999999,45,0,0,88,0.2,0,0 +2016,10,16,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,14,34,98680,1097,1376,406,821,862,135,101608,51355,16756,7052,280,3.1,0,0,3000,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,16,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,13,30,98689,1026,1376,410,757,848,125,93361,50680,15467,6481,290,3.1,0,0,3000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,16,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.6,14.9,33,98348,879,1376,415,620,796,112,75350,45469,13629,5582,290,3.1,0,0,2000,77777,9,999999999,41,0,0,88,0.2,0,0 +2016,10,16,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,12,26,98697,665,1376,414,430,644,119,50293,38265,13966,5281,300,4.1,0,0,3200,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,16,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,12,28,98689,400,1376,408,207,365,101,23102,17092,11315,3685,310,4.1,0,0,3200,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,16,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31,14.3,36,98287,101,1376,401,25,0,25,2376,0,2392,807,320,3.1,0,0,2000,77777,9,999999999,39,0,0,88,0.2,0,0 +2016,10,16,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,12,33,98663,0,445,393,0,0,0,0,0,0,0,270,2.1,0,0,3000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,16,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,13,37,98654,0,0,389,0,0,0,0,0,0,0,250,2.1,0,0,3000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,16,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.4,13.4,47,98326,0,0,371,0,0,0,0,0,0,0,250,1.5,0,0,2000,77777,9,999999999,36,0,0,88,0.2,0,0 +2016,10,16,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,14,45,98637,0,0,380,0,0,0,0,0,0,0,225,0,0,0,2800,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,16,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,13,42,98637,0,0,378,0,0,0,0,0,0,0,328,0,0,0,2800,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,16,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,22.6,14.9,62,98447,0,0,359,0,0,0,0,0,0,0,167,0,0,0,2000,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,17,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,24,14,54,98610,0,0,365,0,0,0,0,0,0,0,48,0,0,0,2500,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,17,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,24,14,54,98610,0,0,365,0,0,0,0,0,0,0,118,0,0,0,2500,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,17,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,20.2,18.3,89,98279,0,0,351,0,0,0,0,0,0,0,216,0,0,0,2000,77777,9,999999999,59,0,0,88,0.2,0,0 +2016,10,17,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,23,13,53,98601,0,0,359,0,0,0,0,0,0,0,141,0,0,0,2500,77777,9,999999999,35,0,0,88,0.2,0,0 +2016,10,17,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,23,13,53,98601,0,0,359,0,0,0,0,0,0,0,163,0,0,0,2500,77777,9,999999999,35,0,0,88,0.2,0,0 +2016,10,17,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,20.2,14.8,71,98454,0,0,347,0,0,0,0,0,0,0,263,0,0,0,2000,77777,9,999999999,41,0,0,88,0.2,0,0 +2016,10,17,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,14,73,98564,19,85,341,5,0,5,450,0,453,172,250,1.5,0,0,2500,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,17,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,14,64,98583,323,1377,350,149,273,85,16496,9475,9445,2952,270,1,0,0,2000,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,17,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.6,14.5,60,98524,599,1377,359,370,607,106,43038,32831,12417,4611,240,2.1,0,0,2000,77777,9,999999999,40,0,0,88,0.2,0,0 +2016,10,17,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,15,48,98637,827,1377,381,572,777,106,69252,43664,12923,5232,240,1.5,0,0,2800,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,17,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,14,40,98654,991,1377,390,724,838,121,88984,49190,14950,6243,240,3.1,0,0,3000,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,17,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.8,15.4,37,98644,1082,1377,406,805,867,125,86983,90318,16819,3255,270,2.1,0,0,2000,77777,9,999999999,43,0,0,88,0.2,0,0 +2016,10,17,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,11,28,98680,1092,1377,402,821,867,134,101730,53443,16637,6990,300,2.6,0,0,3000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,10,17,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,11,26,98689,1021,1377,407,755,852,123,93213,51956,15294,6400,320,2.6,0,0,3500,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,10,17,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.2,12.6,27,98421,873,1377,416,617,791,116,74888,47050,14156,5770,320,2.6,0,0,2000,77777,9,999999999,33,0,0,88,0.2,0,0 +2016,10,17,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,10,23,98697,660,1377,411,427,640,121,49867,38964,14146,5320,330,4.1,0,0,4000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,10,17,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,9,23,98689,394,1377,404,204,384,94,22898,17768,10608,3484,330,4.6,0,0,4000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,10,17,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.2,12.3,31,98396,95,1377,399,23,0,23,2262,0,2277,766,340,4.6,0,0,4000,77777,9,999999999,32,0,0,88,0.2,0,0 +2016,10,17,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,10,27,98672,0,421,395,0,0,0,0,0,0,0,30,1.5,0,0,3500,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,10,17,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,12,33,98663,0,0,393,0,0,0,0,0,0,0,20,1.5,0,0,3200,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,17,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,25.8,15.3,52,98514,0,0,375,0,0,0,0,0,0,0,90,0,0,0,2000,77777,9,999999999,43,0,0,88,0.2,0,0 +2016,10,17,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,14,42,98646,0,0,385,0,0,0,0,0,0,0,121,0,0,0,3000,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,17,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,14,48,98628,0,0,375,0,0,0,0,0,0,0,96,0,0,0,2800,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,17,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,23.6,16,62,98514,0,0,365,0,0,0,0,0,0,0,131,0,0,0,2000,77777,9,999999999,47,0,0,88,0.2,0,0 +2016,10,18,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,24,15,57,98610,0,0,366,0,0,0,0,0,0,0,42,0,0,0,2500,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,18,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,23,15,61,98601,0,0,361,0,0,0,0,0,0,0,257,0,0,0,2500,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,18,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,22,14.9,64,98344,0,0,356,0,0,0,0,0,0,0,48,0,0,0,2000,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,18,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,14,64,98583,0,0,350,0,0,0,0,0,0,0,112,0,0,0,2200,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,18,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,14,64,98583,0,0,350,0,0,0,0,0,0,0,35,0,0,0,2200,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,18,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,20.4,15.6,74,98368,0,0,349,0,0,0,0,0,0,0,26,0,0,0,2000,77777,9,999999999,45,0,0,88,0.2,0,0 +2016,10,18,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,14,64,98583,16,71,350,4,0,4,377,0,379,146,280,1.5,0,0,2200,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,18,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,14,64,98583,320,1377,350,147,271,84,16250,9214,9344,2916,270,1.5,0,0,2200,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,18,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,22.4,15.9,67,98503,595,1377,359,367,600,108,42482,31792,12511,4635,155,0,0,0,2000,77777,9,999999999,46,0,0,88,0.2,0,0 +2016,10,18,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,15,51,98628,823,1377,376,569,776,106,68820,43554,12842,5194,210,1.5,0,0,2200,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,18,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,14,40,98654,987,1377,390,720,837,121,88491,49126,14867,6205,290,3.6,0,0,2800,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,18,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.2,13.2,33,98454,1077,1377,400,804,861,132,99483,51664,16345,6873,290,1.5,0,0,2000,77777,9,999999999,35,0,0,88,0.2,0,0 +2016,10,18,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,11,26,98689,1087,1377,407,816,867,133,101167,53387,16506,6935,280,2.6,0,0,3000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,10,18,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,11,26,98689,1016,1377,407,750,852,122,92616,51877,15183,6350,270,3.1,0,0,3000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,10,18,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.2,12.1,26,98314,868,1377,415,613,790,116,74355,47244,14103,5739,320,2.1,0,0,2000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,18,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,8,20,98697,654,1377,408,424,636,122,49451,39546,14267,5340,350,5.1,0,0,3500,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,10,18,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,7,19,98697,389,1377,407,201,383,93,22539,17810,10442,3420,300,4.1,0,0,4000,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,10,18,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.8,12.6,33,98246,90,1377,398,22,0,22,2138,0,2153,725,340,1.5,0,0,4000,77777,9,999999999,33,0,0,88,0.2,0,0 +2016,10,18,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,9,26,98672,0,397,394,0,0,0,0,0,0,0,260,1.5,0,0,4000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,10,18,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,11,33,98654,0,0,386,0,0,0,0,0,0,0,141,0,0,0,3000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,10,18,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,24.8,14.8,54,98350,0,0,370,0,0,0,0,0,0,0,252,0,0,0,2000,77777,9,999999999,41,0,0,88,0.2,0,0 +2016,10,18,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25,13,47,98619,0,0,369,0,0,0,0,0,0,0,68,0,0,0,2500,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,18,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,24,14,54,98610,0,0,365,0,0,0,0,0,0,0,84,0,0,0,2200,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,18,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,22.8,15.5,63,98312,0,0,361,0,0,0,0,0,0,0,213,0,0,0,2000,77777,9,999999999,44,0,0,88,0.2,0,0 +2016,10,19,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,23,14,57,98601,0,0,360,0,0,0,0,0,0,0,52,0,0,0,2200,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,19,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,23,14,57,98601,0,0,360,0,0,0,0,0,0,0,130,0,0,0,1800,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,19,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,22,15.7,67,98363,0,0,357,0,0,0,0,0,0,0,190,0,0,0,1000,77777,9,999999999,45,0,0,88,0.2,0,0 +2016,10,19,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,14,64,98583,0,0,350,0,0,0,0,0,0,0,79,0,0,0,2000,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,19,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,20,14,68,98574,0,0,346,0,0,0,0,0,0,0,65,0,0,0,2200,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,19,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,19.8,14.3,71,98275,0,0,345,0,0,0,0,0,0,0,112,0,0,0,2000,77777,9,999999999,39,0,0,88,0.2,0,0 +2016,10,19,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,13,68,98564,13,56,340,3,0,3,302,0,304,119,78,0,0,0,2500,77777,9,999999999,35,0,0,88,0.2,0,0 +2016,10,19,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,13,60,98583,317,1378,349,145,270,83,16041,9195,9238,2877,345,0,0,0,2500,77777,9,999999999,35,0,0,88,0.2,0,0 +2016,10,19,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,22.8,12.7,53,98468,591,1378,357,366,506,149,41353,32207,16891,5915,35,0,0,0,2000,77777,9,999999999,33,0,0,88,0.2,0,0 +2016,10,19,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,12,42,98628,819,1378,372,568,770,111,68581,45573,13456,5412,280,2.1,0,0,2800,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,19,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,13,37,98654,983,1378,389,717,839,120,88212,49791,14760,6153,280,2.1,0,0,2800,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,19,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.4,15.3,38,98456,1073,1378,404,797,866,124,86094,90167,16740,3167,270,1,0,0,2000,77777,9,999999999,43,0,0,88,0.2,0,0 +2016,10,19,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,13,31,98680,1082,1378,404,809,863,132,100123,51944,16419,6904,310,2.6,0,0,3000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,19,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,11,26,98689,1010,1378,407,745,852,122,92019,51796,15073,6300,330,4.6,0,0,3500,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,10,19,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.6,11.6,26,98202,863,1378,411,609,789,116,73821,47425,14052,5709,270,2.1,0,0,4000,77777,9,999999999,29,0,0,88,0.2,0,0 +2016,10,19,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,11,25,98697,649,1378,412,417,635,119,48654,37936,13879,5204,310,4.1,0,0,4000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,10,19,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,11,26,98689,383,1378,407,195,354,97,21787,16007,10867,3509,310,3.6,0,0,4000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,10,19,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31,13.8,35,98141,85,1378,400,21,0,21,2012,0,2026,683,320,1.5,0,0,4000,77777,9,999999999,37,0,0,88,0.2,0,0 +2016,10,19,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,11,29,98672,0,374,396,0,0,0,0,0,0,0,320,1.5,0,0,3200,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,10,19,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,12,33,98663,0,0,393,0,0,0,0,0,0,0,340,2.1,0,0,3200,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,19,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,24.8,15.6,57,98272,0,0,371,0,0,0,0,0,0,0,137,0,0,0,2000,77777,9,999999999,45,0,0,88,0.2,0,0 +2016,10,19,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,13,42,98637,0,0,378,0,0,0,0,0,0,0,217,0,0,0,2500,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,19,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25,14,50,98619,0,0,370,0,0,0,0,0,0,0,174,0,0,0,2500,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,19,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,23.2,14.8,59,98228,0,0,362,0,0,0,0,0,0,0,279,0,0,0,2000,77777,9,999999999,41,0,0,88,0.2,0,0 +2016,10,20,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,24,15,57,98610,0,0,366,0,0,0,0,0,0,0,90,0,0,0,2500,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,20,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,24,15,57,98610,0,0,366,0,0,0,0,0,0,0,22,0,0,0,2500,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,20,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,21.8,13.5,59,98011,0,0,354,0,0,0,0,0,0,0,56,0,0,0,2000,77777,9,999999999,36,0,0,88,0.2,0,0 +2016,10,20,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,14,64,98583,0,0,350,0,0,0,0,0,0,0,174,0,0,0,2500,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,20,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,20,14,68,98574,0,0,346,0,0,0,0,0,0,0,220,0,0,0,2200,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,20,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,19.6,14.5,72,98147,0,0,344,0,0,0,0,0,0,0,278,0,0,0,2000,77777,9,999999999,40,0,0,88,0.2,0,0 +2016,10,20,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,14,77,98555,10,42,336,2,0,2,226,0,227,90,242,0,0,0,2000,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,20,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,14,64,98583,313,1379,350,143,266,82,15752,8684,9139,2842,126,0,0,0,2200,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,20,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,22.2,14.4,61,98385,588,1379,356,362,540,132,41211,31803,15083,5397,313,0,0,0,2000,77777,9,999999999,40,0,0,88,0.2,0,0 +2016,10,20,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,12,39,98637,815,1379,377,565,770,110,68151,45460,13363,5369,260,3.1,0,0,2800,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,20,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,11,31,98663,978,1379,391,716,844,118,88164,51058,14571,6066,270,2.1,0,0,3000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,10,20,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,12.8,31,98375,1068,1379,405,796,861,130,98504,51848,16117,6773,290,2.6,0,0,2000,77777,9,999999999,33,0,0,88,0.2,0,0 +2016,10,20,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,10,24,98689,1077,1379,406,809,789,193,97363,54338,23311,9555,290,2.6,0,0,3000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,10,20,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,10,23,98697,1005,1379,411,742,854,120,91659,52333,14897,6221,300,3.1,0,0,4500,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,10,20,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35,11.4,24,98087,857,1379,418,605,789,115,73265,47413,13956,5663,330,3.1,0,0,4000,77777,9,999999999,29,0,0,88,0.2,0,0 +2016,10,20,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,9,20,98705,644,1379,415,414,631,120,48251,38562,14010,5227,300,4.1,0,0,4500,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,10,20,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,9,22,98697,378,1379,410,192,370,91,21533,16333,10222,3329,310,4.1,0,0,4500,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,10,20,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.8,13.2,32,97972,79,1379,404,20,0,20,1894,0,1907,644,320,3.1,0,0,4000,77777,9,999999999,35,0,0,88,0.2,0,0 +2016,10,20,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,10,29,98663,0,351,390,0,0,0,0,0,0,0,157,0,0,0,3500,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,10,20,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,11,33,98654,0,0,386,0,0,0,0,0,0,0,269,0,0,0,3500,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,10,20,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,25.4,15.5,54,98141,0,0,373,0,0,0,0,0,0,0,8,0,0,0,2000,77777,9,999999999,44,0,0,88,0.2,0,0 +2016,10,20,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,12,37,98646,0,0,382,0,0,0,0,0,0,0,143,0,0,0,2500,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,20,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,13,42,98637,0,0,378,0,0,0,0,0,0,0,16,0,0,0,2200,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,20,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,23,15.7,63,98090,0,0,362,0,0,0,0,0,0,0,77,0,0,0,2000,77777,9,999999999,45,0,0,88,0.2,0,0 +2016,10,21,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,24,13,50,98610,0,0,364,0,0,0,0,0,0,0,70,0,0,0,2000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,21,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,23,13,53,98601,0,0,359,0,0,0,0,0,0,0,0,0,0,0,2000,77777,9,999999999,35,0,0,88,0.2,0,0 +2016,10,21,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,22.8,16.2,66,98059,0,0,361,0,0,0,0,0,0,0,301,0,0,0,2000,77777,9,999999999,47,0,0,88,0.2,0,0 +2016,10,21,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,23,12,50,98601,0,0,358,0,0,0,0,0,0,0,286,0,0,0,2000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,21,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,14,64,98583,0,0,350,0,0,0,0,0,0,0,274,0,0,0,2200,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,21,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,20.4,14.6,69,97998,0,0,348,0,0,0,0,0,0,0,315,0,0,0,2000,77777,9,999999999,41,0,0,88,0.2,0,0 +2016,10,21,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,20,14,68,98574,6,28,346,2,0,2,149,0,150,61,49,0,0,0,2200,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,21,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,13,68,98564,310,1380,340,141,266,81,15568,8694,9021,2801,248,0,0,0,2500,77777,9,999999999,35,0,0,88,0.2,0,0 +2016,10,21,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.2,12.4,51,98248,584,1380,359,360,506,146,40724,32014,16618,5804,270,3.1,0,0,2000,77777,9,999999999,32,0,0,88,0.2,0,0 +2016,10,21,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,12,42,98628,810,1380,372,562,771,109,67757,45364,13237,5314,270,2.1,0,0,2500,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,21,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,12,37,98646,974,1380,382,711,841,118,87465,50351,14522,6043,290,3.1,0,0,2800,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,21,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32,11.6,29,98266,1063,1380,403,794,864,128,98276,52639,15960,6702,290,3.1,0,0,2000,77777,9,999999999,29,0,0,88,0.2,0,0 +2016,10,21,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,11,26,98689,1072,1380,407,803,867,130,99489,53218,16111,6767,320,4.1,0,0,4500,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,10,21,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,11,25,98697,1000,1380,412,737,852,120,90876,51649,14827,6190,320,4.1,0,0,5000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,10,21,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.8,10.5,23,98085,852,1380,416,601,789,114,72833,47840,13909,5633,290,5.1,0,0,4000,77777,9,999999999,26,0,0,88,0.2,0,0 +2016,10,21,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,8,20,98697,638,1380,408,411,630,120,47822,38737,13979,5200,300,3.6,0,0,5000,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,10,21,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,7,20,98689,373,1380,402,189,371,89,21228,16418,10043,3263,320,3.1,0,0,5000,77777,9,999999999,19,0,0,88,0.2,0,0 +2016,10,21,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.4,13.5,34,97930,74,1380,402,19,0,19,1781,0,1793,606,320,2.1,0,0,4000,77777,9,999999999,36,0,0,88,0.2,0,0 +2016,10,21,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,9,29,98654,0,328,384,0,0,0,0,0,0,0,273,0,0,0,3500,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,10,21,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,10,37,98628,0,0,370,0,0,0,0,0,0,0,184,0,0,0,3000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,10,21,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,25.8,12.3,43,98057,0,0,372,0,0,0,0,0,0,0,200,0,0,0,2000,77777,9,999999999,32,0,0,88,0.2,0,0 +2016,10,21,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,11,39,98628,0,0,371,0,0,0,0,0,0,0,90,0,0,0,2500,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,10,21,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25,12,44,98619,0,0,367,0,0,0,0,0,0,0,70,0,0,0,2500,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,21,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,23.6,14.1,55,98105,0,0,363,0,0,0,0,0,0,0,59,0,0,0,2000,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,22,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,24,12,47,98610,0,0,362,0,0,0,0,0,0,0,195,0,0,0,2200,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,22,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,23,12,50,98601,0,0,358,0,0,0,0,0,0,0,310,0,0,0,2500,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,22,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,22.6,13.7,57,98038,0,0,358,0,0,0,0,0,0,0,112,0,0,0,2000,77777,9,999999999,37,0,0,88,0.2,0,0 +2016,10,22,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,22,12,53,98592,0,0,353,0,0,0,0,0,0,0,238,0,0,0,2500,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,22,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,22,12,53,98592,0,0,353,0,0,0,0,0,0,0,164,0,0,0,2500,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,22,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,21,12.6,59,98101,0,0,349,0,0,0,0,0,0,0,328,0,0,0,2000,77777,9,999999999,33,0,0,88,0.2,0,0 +2016,10,22,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,12,56,98583,4,13,348,1,0,1,70,0,71,29,50,0,0,0,2000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,22,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,12,53,98592,306,1381,353,139,265,80,15353,8645,8911,2761,260,2.1,0,0,2200,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,22,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.8,11.8,47,98321,580,1381,361,357,508,144,40446,32121,16403,5727,270,3.1,0,0,2000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,22,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,12,42,98628,806,1381,372,558,770,109,67313,45243,13148,5273,270,4.1,0,0,3000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,22,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,12,33,98663,970,1381,393,707,841,117,86971,50282,14426,6000,310,4.1,0,0,4000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,22,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.6,13,30,98320,1059,1381,408,788,861,128,97410,51600,15875,6669,320,4.1,0,0,4000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,22,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,12,28,98689,1067,1381,408,797,865,129,98679,52487,16024,6732,310,4.1,0,0,5000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,22,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,12,28,98689,995,1381,408,731,849,119,90049,50910,14779,6169,310,4.1,0,0,5000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,22,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35,13.4,27,98155,847,1381,421,594,788,110,71933,45815,13430,5449,320,3.1,0,0,4000,77777,9,999999999,35,0,0,88,0.2,0,0 +2016,10,22,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,11,25,98697,633,1381,412,404,628,116,47050,37136,13598,5068,290,4.6,0,0,6000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,10,22,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,11,25,98697,368,1381,412,184,342,93,20523,14703,10424,3340,300,4.6,0,0,6000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,10,22,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.8,13.6,33,98050,69,1381,404,17,0,17,1662,0,1674,567,320,2.1,0,0,4000,77777,9,999999999,36,0,0,88,0.2,0,0 +2016,10,22,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,11,29,98672,0,306,396,0,0,0,0,0,0,0,290,1.5,0,0,5000,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,10,22,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,12,35,98654,0,0,387,0,0,0,0,0,0,0,280,1.5,0,0,4000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,22,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,25.6,15.8,55,98230,0,0,375,0,0,0,0,0,0,0,345,0,0,0,2000,77777,9,999999999,45,0,0,88,0.2,0,0 +2016,10,22,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,13,40,98646,0,0,384,0,0,0,0,0,0,0,3,0,0,0,3500,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,22,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,12,39,98637,0,0,377,0,0,0,0,0,0,0,254,0,0,0,3200,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,22,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,23.6,15.3,60,98203,0,0,364,0,0,0,0,0,0,0,186,0,0,0,2000,77777,9,999999999,43,0,0,88,0.2,0,0 +2016,10,23,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25,13,47,98619,0,0,369,0,0,0,0,0,0,0,333,0,0,0,2500,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,23,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,22,15,64,98592,0,0,356,0,0,0,0,0,0,0,80,0,0,0,2500,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,23,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,22.2,15.5,66,98141,0,0,358,0,0,0,0,0,0,0,152,0,0,0,2000,77777,9,999999999,44,0,0,88,0.2,0,0 +2016,10,23,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,22,15,64,98592,0,0,356,0,0,0,0,0,0,0,339,0,0,0,2500,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,23,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,12,53,98592,0,0,353,0,0,0,0,0,0,0,260,1.5,0,0,2800,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,23,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22,13,57,98149,0,0,354,0,0,0,0,0,0,0,250,1.5,0,0,2000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,23,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,12,56,98583,0,0,348,0,0,0,0,0,0,0,260,2.1,0,0,2500,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,23,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,13,57,98592,302,1380,354,136,260,80,15060,8141,8809,2726,250,2.1,0,0,3000,77777,9,999999999,35,0,0,88,0.2,0,0 +2016,10,23,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,24.8,13.6,50,98496,576,1381,368,353,600,103,40978,32114,12022,4421,218,0,0,0,2000,77777,9,999999999,37,0,0,88,0.2,0,0 +2016,10,23,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,14,42,98646,802,1381,385,553,771,105,66682,43771,12762,5126,270,5.1,0,0,4000,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,23,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,15,40,98663,965,1381,396,700,840,113,86017,47938,13994,5832,280,5.1,0,0,4000,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,23,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.4,13.4,35,98379,1054,1381,396,783,860,127,96758,51238,15775,6627,290,3.1,0,0,4000,77777,9,999999999,35,0,0,88,0.2,0,0 +2016,10,23,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,15,34,98689,1062,1381,412,789,866,124,97691,50055,15358,6470,300,5.1,0,0,5000,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,23,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,14,30,98697,990,1381,416,724,844,119,89015,49399,14743,6155,300,5.1,0,0,5000,77777,9,999999999,37,0,0,88,0.2,0,0 +2016,10,23,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34,14.6,31,98166,842,1381,417,588,790,107,71299,44760,12985,5273,270,2.6,0,0,4000,77777,9,999999999,40,0,0,88,0.2,0,0 +2016,10,23,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,35,12,25,98705,628,1381,419,399,626,115,46441,36366,13403,4993,310,5.1,0,0,5000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,23,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,12,26,98697,362,1381,414,180,336,92,20056,13978,10296,3291,310,5.1,0,0,5000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,23,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,31.6,15.5,38,98156,64,1381,405,16,0,16,1540,0,1550,529,46,0,0,0,4000,77777,9,999999999,44,0,0,88,0.2,0,0 +2016,10,23,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,12,31,98672,0,284,398,0,0,0,0,0,0,0,320,2.6,0,0,4000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,23,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,12,33,98663,0,0,393,0,0,0,0,0,0,0,330,2.1,0,0,3200,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,23,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,26,16.3,55,98282,0,0,377,0,0,0,0,0,0,0,11,0,0,0,2000,77777,9,999999999,48,0,0,88,0.2,0,0 +2016,10,23,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,13,42,98637,0,0,378,0,0,0,0,0,0,0,258,0,0,0,3000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,23,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,14,48,98628,0,0,375,0,0,0,0,0,0,0,238,0,0,0,3000,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,23,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,23.2,16,64,98287,0,0,363,0,0,0,0,0,0,0,315,0,0,0,2000,77777,9,999999999,46,0,0,88,0.2,0,0 +2016,10,24,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,23,15,61,98601,0,0,361,0,0,0,0,0,0,0,103,0,0,0,2200,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,24,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,23,14,57,98601,0,0,360,0,0,0,0,0,0,0,115,0,0,0,2200,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,24,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,21.2,15.9,72,98191,0,0,353,0,0,0,0,0,0,0,66,0,0,0,2000,77777,9,999999999,46,0,0,88,0.2,0,0 +2016,10,24,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,22,15,64,98592,0,0,356,0,0,0,0,0,0,0,260,0,0,0,2200,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,24,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,15,73,98574,0,0,347,0,0,0,0,0,0,0,260,1.5,0,0,2200,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,24,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,20.2,15.1,72,98259,0,0,348,0,0,0,0,0,0,0,189,0,0,0,2000,77777,9,999999999,43,0,0,88,0.2,0,0 +2016,10,24,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,14,73,98564,0,0,341,0,0,0,0,0,0,0,270,1.5,0,0,2000,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,24,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,14,68,98574,299,1365,346,134,256,79,14765,7627,8705,2690,280,2.1,0,0,2000,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,24,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.4,13,55,98455,572,1382,356,351,538,128,39949,31714,14639,5205,270,1.5,0,0,2000,77777,9,999999999,35,0,0,88,0.2,0,0 +2016,10,24,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,14,50,98619,798,1382,370,549,770,105,66218,43637,12684,5089,270,3.6,0,0,2800,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,24,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,14,45,98637,961,1382,380,697,835,117,85482,48711,14359,5968,270,3.1,0,0,3000,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,24,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,13.7,36,98391,1049,1382,398,778,860,126,96144,50950,15667,6580,270,4.1,0,0,2000,77777,9,999999999,37,0,0,88,0.2,0,0 +2016,10,24,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,14,34,98680,1057,1382,406,786,861,127,97067,50889,15810,6645,310,4.6,0,0,1600,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,24,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,14,34,98680,985,1382,406,719,843,119,88414,49310,14655,6114,300,5.1,0,0,1800,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,24,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33,13.1,30,98129,837,1382,410,585,787,109,70815,45729,13264,5367,320,5.1,0,0,2000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,24,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,10,24,98689,622,1382,406,396,624,115,46074,37033,13478,4997,310,5.1,0,0,2200,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,10,24,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,9,24,98680,357,1382,399,178,353,86,19862,14528,9700,3125,300,4.6,0,0,2500,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,10,24,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.6,12.7,35,98100,59,1382,391,15,0,15,1432,0,1442,492,290,5.1,0,0,2000,77777,9,999999999,33,0,0,88,0.2,0,0 +2016,10,24,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,10,31,98654,0,262,385,0,0,0,0,0,0,0,320,3.1,0,0,2500,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,10,24,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,10,31,98654,0,0,385,0,0,0,0,0,0,0,320,3.6,0,0,3000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,10,24,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.8,12.8,42,98212,0,0,377,0,0,0,0,0,0,0,320,1.5,0,0,2000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,24,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,11,35,98646,0,0,381,0,0,0,0,0,0,0,300,3.1,0,0,2800,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,10,24,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,11,35,98646,0,0,381,0,0,0,0,0,0,0,290,3.1,0,0,2800,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,10,24,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.6,16.5,61,98212,0,0,371,0,0,0,0,0,0,0,290,1.5,0,0,2000,77777,9,999999999,49,0,0,88,0.2,0,0 +2016,10,25,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,13,57,98592,0,0,354,0,0,0,0,0,0,0,260,1.5,0,0,2100,77777,9,999999999,35,0,0,88,0.2,0,0 +2016,10,25,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,13,60,98583,0,0,349,0,0,0,0,0,0,0,126,0,0,0,2100,77777,9,999999999,35,0,0,88,0.2,0,0 +2016,10,25,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,20.8,12.3,58,98129,0,0,347,0,0,0,0,0,0,0,58,0,0,0,2000,77777,9,999999999,32,0,0,88,0.2,0,0 +2016,10,25,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,14,64,98583,0,0,350,0,0,0,0,0,0,0,260,2.1,0,0,2100,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,25,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,13,64,98574,0,0,344,0,0,0,0,0,0,0,250,2.1,0,0,2100,77777,9,999999999,35,0,0,88,0.2,0,0 +2016,10,25,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,20.6,13.3,63,98146,0,0,348,0,0,0,0,0,0,0,4,0,0,0,2000,77777,9,999999999,36,0,0,88,0.2,0,0 +2016,10,25,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,12,60,98574,0,0,343,0,0,0,0,0,0,0,270,1.5,0,0,2100,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,25,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,12,60,98574,295,1350,343,132,256,78,14577,7785,8592,2648,240,2.1,0,0,1500,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,25,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,12.7,53,98351,568,1383,357,348,537,127,39608,31630,14538,5160,270,2.1,0,0,1000,77777,9,999999999,33,0,0,88,0.2,0,0 +2016,10,25,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,12,42,98628,794,1383,372,547,768,107,65961,44860,12881,5150,250,2.1,0,0,2500,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,25,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,12,37,98646,956,1383,382,695,840,115,85420,50045,14172,5881,260,3.1,0,0,2600,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,25,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.2,12.1,33,98338,1044,1383,394,776,863,125,95962,52046,15533,6516,270,3.1,0,0,2000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,25,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,12,29,98680,1052,1383,403,784,865,126,96957,52288,15673,6578,290,3.1,0,0,4000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,25,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,12,28,98689,980,1383,408,717,847,117,88285,50652,14475,6029,300,5.1,0,0,4500,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,25,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,10.9,26,98088,831,1383,406,583,785,111,70485,47008,13444,5420,320,5.1,0,0,4000,77777,9,999999999,27,0,0,88,0.2,0,0 +2016,10,25,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,34,9,22,98697,617,1383,410,393,622,115,45646,37190,13428,4965,300,5.1,0,0,5000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,10,25,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,9,23,98689,352,1383,404,174,349,85,19458,14078,9577,3077,310,5.1,0,0,5000,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,10,25,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,15,39,98021,54,1383,400,14,0,14,1312,0,1321,455,290,3.1,0,0,4000,77777,9,999999999,41,0,0,88,0.2,0,0 +2016,10,25,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,9,27,98663,0,241,389,0,0,0,0,0,0,0,310,3.1,0,0,3500,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,10,25,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,10,31,98654,0,0,385,0,0,0,0,0,0,0,310,1.5,0,0,3000,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,10,25,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,25,13,47,98166,0,0,369,0,0,0,0,0,0,0,58,0,0,0,2000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,25,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,12,42,98628,0,0,372,0,0,0,0,0,0,0,153,0,0,0,3000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,25,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25,12,44,98619,0,0,367,0,0,0,0,0,0,0,271,0,0,0,3000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,25,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,23,13.1,54,98090,0,0,359,0,0,0,0,0,0,0,106,0,0,0,2000,77777,9,999999999,35,0,0,88,0.2,0,0 +2016,10,26,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25,13,47,98619,0,0,369,0,0,0,0,0,0,0,126,0,0,0,2200,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,26,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,24,13,50,98610,0,0,364,0,0,0,0,0,0,0,318,0,0,0,2200,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,26,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,21,12.9,60,98101,0,0,349,0,0,0,0,0,0,0,122,0,0,0,2000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,26,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,22,12,53,98592,0,0,353,0,0,0,0,0,0,0,108,0,0,0,2200,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,26,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,12,53,98592,0,0,353,0,0,0,0,0,0,0,260,1.5,0,0,2200,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,26,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.4,14.2,64,98163,0,0,352,0,0,0,0,0,0,0,270,1.5,0,0,2000,77777,9,999999999,39,0,0,88,0.2,0,0 +2016,10,26,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,12,53,98592,0,0,368,0,0,0,0,0,0,0,240,1.5,3,3,2200,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,26,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23,13,53,98601,291,1335,374,128,240,77,14092,7032,8546,2625,260,3.1,3,3,2500,77777,9,999999999,35,0,0,88,0.2,0,0 +2016,10,26,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,14.3,59,98341,564,1384,359,343,530,128,39050,30573,14558,5155,270,2.1,0,0,2000,77777,9,999999999,39,0,0,88,0.2,0,0 +2016,10,26,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,14,48,98628,789,1384,375,542,769,103,65317,43375,12501,5005,270,3.6,0,0,3500,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,26,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,13,40,98646,952,1384,384,690,837,115,84677,49280,14146,5868,310,5.1,0,0,4000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,26,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.2,13.1,35,98348,1040,1384,395,771,860,125,95181,51270,15450,6482,320,3.1,0,0,2000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,26,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,12,29,98680,1048,1384,403,779,865,125,96386,52221,15557,6527,310,5.1,0,0,5000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,26,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,13,31,98680,975,1384,422,702,781,152,84643,49495,18452,7576,300,5.1,3,3,5000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,26,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,16.4,37,98078,826,1384,438,533,581,186,61662,38589,21641,8305,320,2.1,5,5,4000,77777,9,999999999,48,0,0,88,0.2,0,0 +2016,10,26,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32,13,31,98680,612,1384,428,359,507,135,41077,30886,15498,5596,320,5.1,5,5,5000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,26,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,13,33,98672,347,1384,399,170,351,81,18944,12668,9135,2957,310,4.1,0,0,5000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,26,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.8,14.3,39,98062,49,1384,394,13,0,13,1201,0,1209,419,320,1.5,0,0,4000,77777,9,999999999,39,0,0,88,0.2,0,0 +2016,10,26,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,13,37,98654,0,220,389,0,0,0,0,0,0,0,290,1.5,0,0,4000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,26,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,14,42,98646,0,0,385,0,0,0,0,0,0,0,229,0,0,0,3000,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,26,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,24.4,15,56,98190,0,0,368,0,0,0,0,0,0,0,263,0,0,0,2000,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,26,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,24,14,54,98610,0,0,365,0,0,0,0,0,0,0,132,0,0,0,2500,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,26,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,23,15,61,98601,0,0,361,0,0,0,0,0,0,0,128,0,0,0,2200,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,26,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,22,16,69,98276,0,0,357,0,0,0,0,0,0,0,241,0,0,0,2000,77777,9,999999999,47,0,0,88,0.2,0,0 +2016,10,27,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,20,15,73,98574,0,0,347,0,0,0,0,0,0,0,158,0,0,0,2000,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,27,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,20,15,73,98574,0,0,347,0,0,0,0,0,0,0,50,0,0,0,1900,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,27,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,19.8,14.3,71,98236,0,0,345,0,0,0,0,0,0,0,222,0,0,0,1000,77777,9,999999999,39,0,0,88,0.2,0,0 +2016,10,27,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,15,78,98564,0,0,342,0,0,0,0,0,0,0,263,0,0,0,1700,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,27,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,15,78,98564,0,0,342,0,0,0,0,0,0,0,228,0,0,0,1700,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,27,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,20.4,14.6,69,98319,0,0,348,0,0,0,0,0,0,0,203,0,0,0,1000,77777,9,999999999,41,0,0,88,0.2,0,0 +2016,10,27,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,15,78,98564,0,0,342,0,0,0,0,0,0,0,252,0,0,0,1500,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,27,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,20,14,68,98574,288,1320,346,127,247,76,13986,6775,8377,2574,146,0,0,0,1400,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,27,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,22.4,15,63,98571,560,1385,358,340,526,127,38593,29956,14512,5128,305,0,0,0,2000,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,27,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,14,50,98619,785,1385,370,538,768,103,64854,43236,12415,4965,280,2.6,0,0,1800,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,27,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,15,45,98646,947,1385,386,684,837,111,83928,47623,13702,5692,270,2.6,0,0,2200,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,27,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.2,15.3,40,98562,1035,1385,398,764,864,118,82588,89915,16101,2841,270,1,0,0,2000,77777,9,999999999,43,0,0,88,0.2,0,0 +2016,10,27,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,15,36,98680,1043,1385,407,771,865,120,95388,49794,14952,6289,280,2.6,0,0,2800,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,27,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,15,34,98689,970,1385,412,705,845,113,86677,48190,13938,5812,320,3.1,0,0,4500,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,27,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34,12.8,28,98332,821,1385,415,572,784,107,69181,45490,12987,5234,320,3.6,0,0,4000,77777,9,999999999,33,0,0,88,0.2,0,0 +2016,10,27,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,10,24,98689,607,1385,406,384,617,113,44549,36181,13176,4858,320,3.6,0,0,4500,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,10,27,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,9,23,98689,342,1385,404,167,340,83,18675,13196,9334,2984,330,3.6,0,0,4500,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,10,27,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.8,14.7,40,98364,45,1385,395,11,0,11,1089,0,1097,383,320,3.6,0,0,4000,77777,9,999999999,40,0,0,88,0.2,0,0 +2016,10,27,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,12,35,98654,0,199,387,0,0,0,0,0,0,0,40,2.1,0,0,3200,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,27,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,13,40,98646,0,0,384,0,0,0,0,0,0,0,50,2.1,0,0,2800,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,27,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.2,16.4,58,98596,0,0,374,0,0,0,0,0,0,0,50,1.5,0,0,2000,77777,9,999999999,48,0,0,88,0.2,0,0 +2016,10,27,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,15,51,98628,0,0,376,0,0,0,0,0,0,0,140,0,0,0,1500,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,27,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25,15,54,98619,0,0,371,0,0,0,0,0,0,0,283,0,0,0,1500,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,27,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,23,16.5,67,98839,0,0,363,0,0,0,0,0,0,0,305,0,0,0,1000,77777,9,999999999,49,0,0,88,0.2,0,0 +2016,10,28,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,23,15,61,98601,0,0,361,0,0,0,0,0,0,0,167,0,0,0,1500,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,28,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,22,15,64,98592,0,0,356,0,0,0,0,0,0,0,150,0,0,0,1400,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,28,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,20.6,15.6,73,98701,0,0,350,0,0,0,0,0,0,0,298,0,0,0,1000,77777,9,999999999,45,0,0,88,0.2,0,0 +2016,10,28,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,22,15,64,98592,0,0,356,0,0,0,0,0,0,0,268,0,0,0,1200,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,28,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,15,73,98574,0,0,347,0,0,0,0,0,0,0,230,1.5,0,0,1200,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,28,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,19.4,15,76,98806,0,0,344,0,0,0,0,0,0,0,7,0,0,0,1000,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,28,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,15,78,98564,0,0,342,0,0,0,0,0,0,0,178,0,0,0,1000,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,28,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,14,73,98564,284,1304,341,125,243,75,13723,6487,8266,2536,260,1.5,0,0,1000,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,28,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.8,14.3,66,98956,556,1385,350,337,526,126,38288,30085,14381,5073,270,2.1,0,0,1000,77777,9,999999999,40,0,0,88,0.2,0,0 +2016,10,28,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,14,54,98610,781,1385,365,534,767,102,64389,43093,12330,4926,280,1.5,0,0,800,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,28,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,14,45,98637,942,1385,380,681,833,114,83405,48388,14037,5816,270,2.1,0,0,1000,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,28,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.2,14.3,40,98934,1030,1385,391,761,858,123,93835,50205,15176,6367,290,2.1,0,0,1000,77777,9,999999999,39,0,0,88,0.2,0,0 +2016,10,28,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,13,35,98663,1038,1385,394,769,862,124,95003,51370,15369,6446,300,4.1,0,0,1300,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,28,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,13,33,98672,965,1385,399,702,843,116,86312,49691,14248,5923,340,3.1,0,0,1500,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,28,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.6,12,28,98612,816,1385,406,568,783,107,68709,45866,13001,5229,320,3.1,0,0,1000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,28,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,9,24,98680,602,1385,399,380,616,113,44143,36331,13115,4822,330,5.1,0,0,2200,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,10,28,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,9,26,98672,338,1385,394,164,335,82,18296,12762,9216,2938,330,3.6,0,0,2500,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,10,28,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29,15.3,43,98659,40,1385,392,10,0,10,979,0,986,348,320,3.6,0,0,2000,77777,9,999999999,43,0,0,88,0.2,0,0 +2016,10,28,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,13,42,98637,0,179,378,0,0,0,0,0,0,0,280,1.5,0,0,2200,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,28,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25,14,50,98619,0,0,370,0,0,0,0,0,0,0,58,0,0,0,2200,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,28,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,23.8,14.9,57,98759,0,0,365,0,0,0,0,0,0,0,42,0,0,0,2000,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,28,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,24,12,47,98610,0,0,362,0,0,0,0,0,0,0,341,0,0,0,2100,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,28,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,23,12,50,98601,0,0,358,0,0,0,0,0,0,0,41,0,0,0,2000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,28,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,21.6,14.5,64,98749,0,0,354,0,0,0,0,0,0,0,218,0,0,0,2000,77777,9,999999999,40,0,0,88,0.2,0,0 +2016,10,29,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,23,13,53,98601,0,0,359,0,0,0,0,0,0,0,113,0,0,0,2000,77777,9,999999999,35,0,0,88,0.2,0,0 +2016,10,29,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,13,60,98583,0,0,349,0,0,0,0,0,0,0,84,0,0,0,2000,77777,9,999999999,35,0,0,88,0.2,0,0 +2016,10,29,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,20.8,14.7,68,98644,0,0,350,0,0,0,0,0,0,0,231,0,0,0,1000,77777,9,999999999,41,0,0,88,0.2,0,0 +2016,10,29,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,20,13,64,98574,0,0,344,0,0,0,0,0,0,0,130,0,0,0,1800,77777,9,999999999,35,0,0,88,0.2,0,0 +2016,10,29,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,20,13,64,98574,0,0,344,0,0,0,0,0,0,0,28,0,0,0,1800,77777,9,999999999,35,0,0,88,0.2,0,0 +2016,10,29,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,18.6,13.7,73,98575,0,0,339,0,0,0,0,0,0,0,151,0,0,0,2000,77777,9,999999999,37,0,0,88,0.2,0,0 +2016,10,29,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,13,82,98536,0,0,326,0,0,0,0,0,0,0,270,1.5,0,0,1000,77777,9,999999999,35,0,0,88,0.2,0,0 +2016,10,29,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,13,82,98536,280,1289,326,122,241,74,13491,6406,8153,2495,260,1.5,0,0,800,77777,9,999999999,35,0,0,88,0.2,0,0 +2016,10,29,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,19.8,12.7,64,98732,552,1386,343,335,529,124,38076,30640,14199,5001,113,0,0,0,1000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,29,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,12,50,98601,776,1386,358,532,766,104,64102,44296,12540,4991,250,2.1,0,0,1000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,29,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,13,47,98619,938,1386,369,678,835,113,83095,49019,13909,5756,260,2.6,0,0,1200,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,29,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.6,15.6,45,98695,1025,1386,390,755,865,115,81762,90077,15743,2762,290,2.6,0,0,1000,77777,9,999999999,44,0,0,88,0.2,0,0 +2016,10,29,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,11,29,98672,1033,1386,396,767,866,122,94916,52675,15170,6355,340,3.6,0,0,1500,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,10,29,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,10,27,98672,960,1386,395,701,851,113,86429,51546,13944,5786,300,3.6,0,0,1600,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,10,29,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.6,15.6,45,98412,811,1386,390,561,791,98,68001,43009,11920,4818,300,3.6,0,0,1000,77777,9,999999999,44,0,0,88,0.2,0,0 +2016,10,29,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,8,23,98680,597,1386,398,377,615,112,43750,36461,13032,4780,320,4.6,0,0,1800,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,10,29,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,8,24,98672,333,1386,393,161,333,81,17969,12565,9087,2890,320,3.6,0,0,1800,77777,9,999999999,21,0,0,88,0.2,0,0 +2016,10,29,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.4,14.1,42,98430,35,1386,387,9,0,9,873,0,879,313,320,2.6,0,0,1000,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,29,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,9,30,98646,0,159,379,0,0,0,0,0,0,0,245,0,0,0,1500,77777,9,999999999,23,0,0,88,0.2,0,0 +2016,10,29,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,10,37,98628,0,0,370,0,0,0,0,0,0,0,4,0,0,0,1500,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,10,29,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,24.8,13.2,48,98525,0,0,368,0,0,0,0,0,0,0,275,0,0,0,1000,77777,9,999999999,35,0,0,88,0.2,0,0 +2016,10,29,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,23,12,50,98601,0,0,358,0,0,0,0,0,0,0,108,0,0,0,1000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,29,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,22,12,53,98592,0,0,353,0,0,0,0,0,0,0,103,0,0,0,1000,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,29,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,19.6,13.3,67,98507,0,0,343,0,0,0,0,0,0,0,21,0,0,0,1000,77777,9,999999999,36,0,0,88,0.2,0,0 +2016,10,30,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,12,56,98583,0,0,348,0,0,0,0,0,0,0,283,0,0,0,800,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,30,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,12,56,98583,0,0,348,0,0,0,0,0,0,0,133,0,0,0,800,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,30,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,18.4,12.7,69,98457,0,0,337,0,0,0,0,0,0,0,179,0,0,0,500,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,30,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,13,68,98564,0,0,340,0,0,0,0,0,0,0,193,0,0,0,800,77777,9,999999999,35,0,0,88,0.2,0,0 +2016,10,30,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,13,68,98564,0,0,340,0,0,0,0,0,0,0,175,0,0,0,800,77777,9,999999999,35,0,0,88,0.2,0,0 +2016,10,30,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,17.6,13.4,76,98527,0,0,334,0,0,0,0,0,0,0,298,0,0,0,500,77777,9,999999999,36,0,0,88,0.2,0,0 +2016,10,30,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,13,77,98546,0,0,331,0,0,0,0,0,0,0,268,0,0,0,600,77777,9,999999999,35,0,0,88,0.2,0,0 +2016,10,30,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,13,77,98546,276,1273,331,120,238,73,13227,6113,8039,2456,150,0,0,0,600,77777,9,999999999,35,0,0,88,0.2,0,0 +2016,10,30,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,19.4,13.5,69,98651,548,1387,342,331,524,124,37607,29991,14146,4973,57,0,0,0,500,77777,9,999999999,37,0,0,88,0.2,0,0 +2016,10,30,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25,13,47,98619,772,1387,369,528,766,102,63554,43501,12305,4898,157,0,0,0,1000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,30,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,13,40,98646,933,1387,384,674,835,112,82596,48936,13802,5707,357,0,0,0,1200,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,30,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,10.8,29,98839,1020,1387,394,756,865,120,93523,52565,14920,6242,230,2.1,0,0,1000,77777,9,999999999,27,0,0,88,0.2,0,0 +2016,10,30,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,10,26,98680,1028,1387,400,764,789,180,91806,53729,21701,8871,220,1.5,0,0,1800,77777,9,999999999,25,0,0,88,0.2,0,0 +2016,10,30,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,11,26,98689,955,1387,407,696,848,113,85647,50848,13922,5774,250,1.5,0,0,1800,77777,9,999999999,28,0,0,88,0.2,0,0 +2016,10,30,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,32.2,13.8,33,98502,806,1387,406,558,782,103,67464,44330,12538,5042,33,0,0,0,2000,77777,9,999999999,37,0,0,88,0.2,0,0 +2016,10,30,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,33,6,19,98689,593,1387,400,374,613,112,43418,36922,13081,4779,306,0,0,0,1700,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,10,30,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,33,6,19,98689,328,1387,400,158,332,80,17690,12562,8948,2839,92,0,0,0,1700,77777,9,999999999,17,0,0,88,0.2,0,0 +2016,10,30,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,28.2,15.5,46,98516,31,1387,388,8,0,8,765,0,770,278,105,0,0,0,2000,77777,9,999999999,44,0,0,88,0.2,0,0 +2016,10,30,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,13,42,98637,0,139,378,0,0,0,0,0,0,0,100,2.1,0,0,1000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,30,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,13,45,98628,0,0,373,0,0,0,0,0,0,0,110,2.1,0,0,1000,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,30,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,24,15.8,60,98605,0,0,367,0,0,0,0,0,0,0,188,0,0,0,1000,77777,9,999999999,46,0,0,88,0.2,0,0 +2016,10,30,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,14,54,98610,0,0,365,0,0,0,0,0,0,0,110,2.6,0,0,1000,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,30,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,14,57,98601,0,0,360,0,0,0,0,0,0,0,110,1.5,0,0,1000,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,30,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,21.8,16.9,74,98702,0,0,357,0,0,0,0,0,0,0,166,0,0,0,1000,77777,9,999999999,51,0,0,88,0.2,0,0 +2016,10,31,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,14,64,98583,0,0,350,0,0,0,0,0,0,0,123,0,0,0,1000,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,31,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,20,15,73,98574,0,0,347,0,0,0,0,0,0,0,110,0,0,0,1000,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,31,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,19,15.6,81,98676,0,0,343,0,0,0,0,0,0,0,207,0,0,0,1000,77777,9,999999999,45,0,0,88,0.2,0,0 +2016,10,31,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,20,15,73,98574,0,0,347,0,0,0,0,0,0,0,57,0,0,0,1000,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,31,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,15,78,98564,0,0,342,0,0,0,0,0,0,0,205,0,0,0,1000,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,31,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,17.6,15.6,88,98653,0,0,336,0,0,0,0,0,0,0,347,0,0,0,1000,77777,9,999999999,45,0,0,88,0.2,0,0 +2016,10,31,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,15,78,98564,0,0,342,0,0,0,0,0,0,0,212,0,0,0,1000,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,31,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,20,16,78,98574,272,1257,363,116,221,72,12696,4996,7974,2431,31,0,3,3,500,77777,9,999999999,47,0,0,88,0.2,0,0 +2016,10,31,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,19.8,16.8,83,98878,544,1388,348,326,565,105,37399,28282,12051,4351,78,0,0,0,1000,77777,9,999999999,51,0,0,88,0.2,0,0 +2016,10,31,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,15,51,98628,768,1388,376,522,770,97,63000,41883,11709,4672,38,0,0,0,400,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,31,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,15,48,98637,929,1388,381,668,835,109,81844,47269,13365,5534,250,1.5,0,0,700,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,31,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,29.2,14.3,40,98904,1016,1388,391,748,858,120,92185,49998,14879,6233,216,0,0,0,1000,77777,9,999999999,39,0,0,88,0.2,0,0 +2016,10,31,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,12,31,98672,1023,1388,398,757,864,121,93556,51866,15003,6281,40,0,0,0,1500,77777,9,999999999,31,0,0,88,0.2,0,0 +2016,10,31,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,13,35,98663,950,1388,394,689,799,143,83161,49827,17300,7091,312,0,0,0,1500,77777,9,999999999,34,0,0,88,0.2,0,0 +2016,10,31,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,31.2,15,38,98673,802,1388,427,514,582,178,59510,38858,20718,7901,256,0,5,5,1000,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,31,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31,15,38,98672,588,1388,426,339,493,131,38670,28664,14954,5351,80,2.6,5,5,1200,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,31,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30,14,38,98663,324,1388,419,143,236,88,15712,8342,9698,3000,90,2.6,5,5,1200,77777,9,999999999,38,0,0,88,0.2,0,0 +2016,10,31,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,26.4,16,53,98675,27,1388,396,7,0,7,652,0,656,241,92,0,3,3,1000,77777,9,999999999,46,0,0,88,0.2,0,0 +2016,10,31,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24,14.4,55,98643,0,120,375,0,0,0,0,0,0,0,94,0.8,0,0,1200,77777,9,999999999,40,0,0,88,0.2,0,0 +2016,10,31,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.7,14.9,62,98631,0,0,381,0,0,0,0,0,0,0,87,0.4,3,3,1000,77777,9,999999999,42,0,0,88,0.2,0,0 +2016,10,31,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,21.8,15.3,67,98712,0,0,381,0,0,0,0,0,0,0,119,0,3,3,500,77777,9,999999999,44,0,0,88,0.2,0,0 +2016,10,31,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,21.5,15.1,67,98677,0,0,372,0,0,0,0,0,0,0,121,0.2,3,3,800,77777,9,999999999,43,0,0,88,0.2,0,0 +2016,10,31,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21.3,14.4,65,98675,0,0,353,0,0,0,0,0,0,0,179,0.8,0,0,800,77777,9,999999999,40,0,0,88,0.2,0,0 +2016,10,31,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,21.3,13.9,63,98675,0,0,348,0,0,0,0,0,0,0,235,1.1,0,0,500,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,1,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21.2,13.2,60,98585,0,0,360,0,0,0,0,0,0,0,247,1.5,0,0,1300,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,1,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,20.2,12.8,62,98576,0,0,363,0,0,0,0,0,0,0,247,1.8,3,3,1200,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,11,1,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,19.8,13,65,98571,0,0,371,0,0,0,0,0,0,0,245,1.8,5,5,1200,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,1,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,19,13,68,98564,0,0,365,0,0,0,0,0,0,0,242,1.8,5,5,1100,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,1,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,18.8,13.5,72,98562,0,0,359,0,0,0,0,0,0,0,242,2.1,5,5,900,77777,9,999999999,37,0,0,88,0.2,0,0 +2008,11,1,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,19,13.8,72,98564,0,0,360,0,0,0,0,0,0,0,245,2.3,5,5,900,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,1,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,18,14,77,98555,0,0,364,0,0,0,0,0,0,0,240,1.5,7,7,700,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,1,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,19,15,78,98564,268,1241,370,91,108,70,10002,2380,7738,2364,240,2.6,7,7,600,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,1,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,20,13,64,98574,540,1388,365,307,440,136,34579,26427,15399,5276,260,3.1,5,5,600,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,1,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,22,15,64,98592,763,1388,377,490,637,140,57406,38930,16478,6381,270,2.6,5,5,600,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,1,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,26,15,51,98628,924,1388,392,659,815,117,80318,46970,14254,5880,290,3.6,3,3,800,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,1,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,27,14,45,98637,1011,1388,392,743,855,121,91529,50123,14933,6248,290,4.1,2,2,1100,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,1,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,14,38,98663,1018,1388,395,751,859,121,92564,50350,14946,6260,300,4.1,0,0,2000,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,1,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,14,36,98672,945,1388,400,684,839,113,83880,48618,13920,5770,300,4.1,0,0,2300,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,1,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,13,33,98672,797,1388,399,551,782,103,66548,44611,12431,4983,320,6.2,0,0,2500,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,11,1,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,12,31,98672,583,1388,398,363,605,109,42030,33879,12659,4631,300,6.7,0,0,2800,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,1,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,12,31,98672,319,1388,398,151,301,82,16741,10351,9103,2848,300,5.1,0,0,2800,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,1,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,13,37,98654,23,1388,389,6,0,6,564,0,568,210,290,3.6,0,0,2800,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,11,1,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,13,42,98637,0,101,378,0,0,0,0,0,0,0,280,3.1,0,0,2800,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,11,1,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,13,42,98637,0,0,378,0,0,0,0,0,0,0,290,2.6,0,0,2000,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,11,1,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,13,45,98628,0,0,373,0,0,0,0,0,0,0,310,3.1,0,0,1800,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,11,1,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,13,45,98628,0,0,373,0,0,0,0,0,0,0,320,3.1,0,0,1900,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,11,1,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,12,42,98628,0,0,372,0,0,0,0,0,0,0,310,3.6,0,0,2100,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,1,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,13,53,98601,0,0,359,0,0,0,0,0,0,0,270,2.6,0,0,2100,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,2,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,14,60,98592,0,0,355,0,0,0,0,0,0,0,270,2.6,0,0,2100,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,2,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,13,64,98574,0,0,344,0,0,0,0,0,0,0,240,1,0,0,2100,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,2,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,12,64,98564,0,0,339,0,0,0,0,0,0,0,240,1,0,0,2000,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,2,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,14,77,98555,0,0,336,0,0,0,0,0,0,0,220,2.1,0,0,1700,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,2,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,17,12,72,98546,0,0,352,0,0,0,0,0,0,0,200,1.5,6,6,1100,77777,9,999999999,32,0,0,88,0.2,0,0 +2008,11,2,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,17,12,72,98546,0,0,352,0,0,0,0,0,0,0,240,1.5,6,6,1400,77777,9,999999999,32,0,0,88,0.2,0,0 +2008,11,2,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,16,12,77,98536,0,0,351,0,0,0,0,0,0,0,260,1,7,7,1700,77777,9,999999999,32,0,0,88,0.2,0,0 +2008,11,2,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,13,77,98546,265,1224,331,113,229,70,12460,5261,7685,2336,260,1.5,0,0,2100,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,2,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,12,64,98564,535,1389,339,323,525,120,36649,29984,13723,4802,260,2.6,0,0,2100,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,2,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,13,53,98601,759,1389,359,517,764,99,62192,43062,12009,4765,270,3.1,0,0,2200,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,2,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,12,39,98637,919,1389,377,663,837,109,81300,49348,13433,5539,350,5.1,0,0,3000,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,2,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,11,35,98646,1006,1389,381,744,864,118,91861,52226,14599,6098,280,4.1,0,0,3000,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,2,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,12,35,98654,1013,1389,387,749,864,119,92474,51729,14774,6179,300,5.7,0,0,3200,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,2,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,11,29,98672,940,1389,396,683,847,110,84021,50580,13623,5636,300,5.7,0,0,3200,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,2,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,11,29,98672,792,1389,396,549,780,104,66232,45753,12607,5036,300,5.1,0,0,3200,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,2,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,11,29,98672,579,1389,396,360,604,108,41678,34088,12592,4595,300,6.2,0,0,4000,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,2,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,11,29,98672,315,1389,396,149,299,81,16456,10222,8975,2801,290,4.6,0,0,4000,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,2,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,12,33,98663,18,1389,393,5,0,5,464,0,467,176,300,3.6,0,0,4500,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,2,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,12,35,98654,0,83,387,0,0,0,0,0,0,0,310,2.1,0,0,4000,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,2,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25,15,54,98619,0,0,371,0,0,0,0,0,0,0,58,0,0,0,2200,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,2,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25,14,50,98619,0,0,370,0,0,0,0,0,0,0,197,0,0,0,1800,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,2,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,23,15,61,98601,0,0,380,0,0,0,0,0,0,0,211,0,4,4,1300,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,2,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,22,14,60,98592,0,0,355,0,0,0,0,0,0,0,87,0,0,0,1100,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,2,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,22,14,60,98592,0,0,373,0,0,0,0,0,0,0,87,0,4,4,1100,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,3,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,22,13,57,98592,0,0,372,0,0,0,0,0,0,0,36,0,4,4,1100,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,3,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,20,13,64,98574,0,0,365,0,0,0,0,0,0,0,230,1.5,5,5,1000,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,3,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,19,12,64,98564,0,0,359,0,0,0,0,0,0,0,13,0,5,5,1300,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,3,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,19,11,60,98564,0,0,355,0,0,0,0,0,0,0,33,0,4,4,1400,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,3,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,11,64,98555,0,0,333,0,0,0,0,0,0,0,230,1.5,0,0,1700,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,3,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,10,59,98555,0,0,332,0,0,0,0,0,0,0,240,1.5,0,0,2000,77777,9,999999999,26,0,0,88,0.2,0,0 +2008,11,3,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,12,68,98555,0,0,334,0,0,0,0,0,0,0,172,0,0,0,2400,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,3,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,11,60,98564,261,1208,338,111,228,68,12251,5322,7566,2294,240,1,0,0,2400,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,3,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,12,60,98574,531,1390,343,319,523,119,36264,29717,13608,4754,240,1.5,0,0,2400,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,3,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,10,46,98592,754,1390,350,516,762,102,61985,44741,12311,4862,270,2.6,0,0,2500,77777,9,999999999,26,0,0,88,0.2,0,0 +2008,11,3,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,12,42,98628,915,1390,372,659,837,108,80775,49247,13345,5497,260,2.6,0,0,2200,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,3,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,12,37,98646,1001,1390,382,738,862,118,91080,51489,14559,6080,260,3.1,0,0,2200,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,3,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,12,31,98672,1008,1390,398,745,864,118,91938,51659,14662,6129,290,2.6,0,0,2500,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,3,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,12,29,98680,935,1390,403,678,844,110,83259,49844,13606,5626,310,4.1,0,0,2500,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,3,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,12,29,98680,787,1390,403,544,780,102,65641,44976,12381,4946,310,4.1,0,0,3000,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,3,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,12,28,98689,574,1390,408,356,601,108,41148,33341,12508,4558,300,4.1,0,0,3000,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,3,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,12,29,98680,311,1390,403,146,294,80,16102,9626,8862,2760,290,3.1,0,0,3500,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,3,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,13,33,98672,14,1390,399,4,0,4,364,0,366,141,310,3.1,0,0,3500,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,11,3,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,13,37,98654,0,65,389,0,0,0,0,0,0,0,300,1.5,0,0,3200,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,11,3,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25,15,54,98619,0,0,371,0,0,0,0,0,0,0,91,0,0,0,2500,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,3,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,24,15,57,98610,0,0,366,0,0,0,0,0,0,0,235,0,0,0,1800,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,3,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,22,14,60,98592,0,0,355,0,0,0,0,0,0,0,39,0,0,0,1300,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,3,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,23,14,57,98601,0,0,378,0,0,0,0,0,0,0,162,0,4,4,1200,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,3,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,22,15,64,98592,0,0,377,0,0,0,0,0,0,0,54,0,5,5,1200,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,4,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,21,14,64,98583,0,0,371,0,0,0,0,0,0,0,320,2.1,5,5,800,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,4,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,21,15,69,98583,0,0,376,0,0,0,0,0,0,0,260,1.5,6,6,1000,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,4,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,21,13,60,98583,0,0,367,0,0,0,0,0,0,0,55,0,4,4,1200,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,4,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,20,12,60,98574,0,0,361,0,0,0,0,0,0,0,88,0,4,4,1200,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,4,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,19,14,73,98564,0,0,364,0,0,0,0,0,0,0,260,1.5,6,6,1200,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,4,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,13,68,98564,0,0,340,0,0,0,0,0,0,0,75,0,0,0,1800,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,4,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,13,68,98564,0,0,340,0,0,0,0,0,0,0,219,0,0,0,1800,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,4,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,11,56,98574,257,1191,342,109,224,67,11984,5019,7449,2254,230,1.5,0,0,2000,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,4,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,11,47,98601,527,1391,356,317,524,118,35979,29896,13446,4691,250,1.5,0,0,2700,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,4,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,12,39,98637,750,1391,377,510,763,99,61354,43402,11965,4730,250,2.1,0,0,3000,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,4,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,12,37,98646,910,1391,382,655,836,108,80268,49152,13246,5452,260,3.1,0,0,3000,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,4,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,13,35,98663,997,1391,394,733,859,117,90315,50717,14504,6056,260,2.6,0,0,3500,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,11,4,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,11,28,98680,1004,1391,402,742,866,117,91640,52249,14490,6051,290,2.6,0,0,3500,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,4,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,11,26,98689,931,1391,407,675,846,109,82961,50396,13433,5548,310,4.1,0,0,3500,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,4,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,9,23,98689,783,1391,404,543,779,104,65446,46596,12638,5027,300,4.1,0,0,4000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,11,4,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,9,23,98689,570,1391,404,354,604,107,41013,34442,12404,4507,280,3.1,0,0,4000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,11,4,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,33,10,24,98689,306,1391,406,143,308,75,15926,9832,8417,2642,290,3.1,0,0,3500,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,11,4,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,11,28,98680,11,1391,402,3,0,3,268,0,270,106,300,2.1,0,0,3000,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,4,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,13,40,98646,0,48,384,0,0,0,0,0,0,0,40,2.1,0,0,1700,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,11,4,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,27,16,51,98637,0,0,399,0,0,0,0,0,0,0,30,1,3,3,1200,77777,9,999999999,46,0,0,88,0.2,0,0 +2008,11,4,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,25,17,61,98619,0,0,392,0,0,0,0,0,0,0,22,0,4,4,800,77777,9,999999999,51,0,0,88,0.2,0,0 +2008,11,4,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,24,16,61,98610,0,0,386,0,0,0,0,0,0,0,66,0,4,4,900,77777,9,999999999,47,0,0,88,0.2,0,0 +2008,11,4,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,23,16,65,98601,0,0,384,0,0,0,0,0,0,0,128,0,5,5,900,77777,9,999999999,47,0,0,88,0.2,0,0 +2008,11,4,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,22,16,69,98592,0,0,382,0,0,0,0,0,0,0,108,0,6,6,700,77777,9,999999999,47,0,0,88,0.2,0,0 +2008,11,5,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,22,15,64,98592,0,0,377,0,0,0,0,0,0,0,225,0,5,5,700,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,5,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,22,15,64,98592,0,0,377,0,0,0,0,0,0,0,40,0,5,5,600,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,5,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,21,15,69,98583,0,0,376,0,0,0,0,0,0,0,85,0,6,6,500,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,5,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,20,14,68,98574,0,0,366,0,0,0,0,0,0,0,250,1,5,5,500,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,5,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,19,13,68,98564,0,0,360,0,0,0,0,0,0,0,279,0,5,5,900,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,5,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,18,14,77,98555,0,0,364,0,0,0,0,0,0,0,232,0,7,7,900,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,5,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,18,14,77,98555,0,0,364,0,0,0,0,0,0,0,83,0,7,7,700,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,5,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,18,12,68,98555,253,1174,354,97,160,68,10663,3440,7497,2250,347,0,5,5,700,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,5,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,19,13,68,98564,523,1391,360,285,391,138,31933,23531,15547,5232,75,0,5,5,700,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,5,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,23,13,53,98601,745,1391,374,500,708,121,59135,42217,14372,5596,260,2.1,3,3,700,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,5,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,26,15,51,98628,905,1391,392,643,815,113,78319,46568,13778,5665,250,2.1,3,3,900,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,5,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,28,15,45,98646,992,1391,399,725,858,114,89378,48947,14090,5892,300,2.6,2,2,1300,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,5,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,13,35,98663,999,1391,394,735,861,117,90612,50804,14514,6062,320,3.1,0,0,2000,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,11,5,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,13,33,98672,926,1391,399,669,840,110,81981,48967,13479,5566,250,2.1,0,0,2200,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,11,5,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,11,28,98680,778,1391,402,537,778,102,64763,45300,12330,4908,310,3.6,0,0,2600,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,5,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,32,9,24,98680,565,1391,399,351,602,106,40596,34172,12318,4468,290,4.1,0,0,2600,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,11,5,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,11,31,98663,302,1391,391,140,289,78,15538,9164,8627,2675,320,2.1,0,0,3200,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,5,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,11,31,98663,7,1391,391,2,0,2,173,0,174,70,310,2.1,0,0,3100,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,5,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,12,39,98637,0,31,377,0,0,0,0,0,0,0,136,0,0,0,2100,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,5,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,13,45,98628,0,0,373,0,0,0,0,0,0,0,33,0,0,0,2000,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,11,5,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,24,13,50,98610,0,0,364,0,0,0,0,0,0,0,233,0,0,0,1500,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,11,5,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,22,12,53,98592,0,0,368,0,0,0,0,0,0,0,70,0,3,3,1400,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,5,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,22,13,57,98592,0,0,372,0,0,0,0,0,0,0,33,0,4,4,1400,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,5,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,22,13,57,98592,0,0,372,0,0,0,0,0,0,0,94,0,4,4,1300,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,6,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,22,12,53,98592,0,0,368,0,0,0,0,0,0,0,103,0,3,3,1200,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,6,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,20,11,56,98574,0,0,357,0,0,0,0,0,0,0,231,0,3,3,900,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,6,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,19,12,64,98564,0,0,359,0,0,0,0,0,0,0,155,0,5,5,800,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,6,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,18,12,68,98555,0,0,354,0,0,0,0,0,0,0,240,1.5,5,5,800,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,6,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,17,12,72,98546,0,0,352,0,0,0,0,0,0,0,304,0,6,6,900,77777,9,999999999,32,0,0,88,0.2,0,0 +2008,11,6,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,17,11,68,98546,0,0,348,0,0,0,0,0,0,0,47,0,5,5,1200,77777,9,999999999,29,0,0,88,0.2,0,0 +2008,11,6,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,11,68,98546,0,0,343,0,0,0,0,0,0,0,230,1.5,3,3,1500,77777,9,999999999,29,0,0,88,0.2,0,0 +2008,11,6,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,11,72,98536,249,1157,338,103,207,66,11293,4252,7251,2182,280,1,3,3,1600,77777,9,999999999,29,0,0,88,0.2,0,0 +2008,11,6,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,9,52,98564,518,1392,350,307,509,117,34866,29440,13366,4633,250,2.1,3,3,2000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,11,6,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,10,46,98592,741,1392,366,498,733,108,59446,43597,12912,5056,250,2.1,3,3,2300,77777,9,999999999,26,0,0,88,0.2,0,0 +2008,11,6,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,11,44,98610,901,1392,377,640,796,124,77452,49075,15132,6169,260,3.1,3,3,1800,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,6,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,28,11,35,98646,987,1392,381,727,864,115,89705,51917,14188,5912,280,3.1,0,0,1400,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,6,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,10,29,98663,994,1392,407,725,842,124,89106,52061,15294,6359,280,3.1,3,3,2300,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,11,6,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,9,27,98663,921,1392,389,669,850,106,82337,51381,13114,5404,300,2.6,0,0,2600,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,11,6,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,8,24,98672,774,1392,393,536,777,104,64577,46811,12563,4981,320,3.1,0,0,3000,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,11,6,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,8,24,98672,561,1392,393,348,603,105,40286,34316,12206,4420,310,3.1,0,0,3000,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,11,6,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,8,25,98663,298,1392,387,139,304,73,15408,9540,8194,2560,320,3.1,0,0,3500,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,11,6,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,8,27,98654,5,1392,399,1,0,1,79,0,80,33,330,1.5,3,3,3500,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,11,6,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25,10,39,98619,0,14,365,0,0,0,0,0,0,0,37,0,0,0,2500,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,11,6,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,24,10,41,98610,0,0,360,0,0,0,0,0,0,0,312,0,0,0,2200,77777,9,999999999,26,0,0,88,0.2,0,0 +2008,11,6,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,23,10,44,98601,0,0,355,0,0,0,0,0,0,0,163,0,0,0,1600,77777,9,999999999,26,0,0,88,0.2,0,0 +2008,11,6,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,21,12,56,98583,0,0,363,0,0,0,0,0,0,0,180,0,3,3,1300,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,6,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,21,10,49,98583,0,0,357,0,0,0,0,0,0,0,58,0,2,2,1400,77777,9,999999999,26,0,0,88,0.2,0,0 +2008,11,6,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,22,12,53,98592,0,0,368,0,0,0,0,0,0,0,232,0,3,3,1100,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,7,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,20,12,60,98574,0,0,361,0,0,0,0,0,0,0,162,0,4,4,1200,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,7,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,20,10,53,98574,0,0,356,0,0,0,0,0,0,0,31,0,3,3,1200,77777,9,999999999,26,0,0,88,0.2,0,0 +2008,11,7,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,19,13,68,98564,0,0,360,0,0,0,0,0,0,0,310,0,5,5,1000,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,7,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,17,12,72,98546,0,0,352,0,0,0,0,0,0,0,256,0,6,6,900,77777,9,999999999,32,0,0,88,0.2,0,0 +2008,11,7,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,17,12,72,98546,0,0,352,0,0,0,0,0,0,0,188,0,6,6,1000,77777,9,999999999,32,0,0,88,0.2,0,0 +2008,11,7,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,16,12,77,98536,0,0,351,0,0,0,0,0,0,0,165,0,7,7,1000,77777,9,999999999,32,0,0,88,0.2,0,0 +2008,11,7,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,17,11,68,98546,0,0,348,0,0,0,0,0,0,0,109,0,5,5,900,77777,9,999999999,29,0,0,88,0.2,0,0 +2008,11,7,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,17,11,68,98546,244,1140,348,93,155,66,10200,3098,7237,2164,316,0,5,5,1000,77777,9,999999999,29,0,0,88,0.2,0,0 +2008,11,7,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,21,12,56,98583,514,1393,363,300,489,120,33971,27589,13634,4696,278,0,3,3,1000,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,7,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,23,11,47,98601,736,1393,368,499,718,119,58991,43517,14112,5477,240,2.1,2,2,1300,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,7,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,9,34,98628,896,1393,369,646,825,115,78718,50839,14083,5751,296,0,0,0,1800,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,11,7,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,9,30,98646,982,1393,379,725,788,169,86913,53558,20401,8291,148,0,0,0,1600,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,11,7,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,11,31,98663,990,1393,391,729,865,115,90027,52014,14191,5915,281,0,0,0,1900,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,7,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,10,27,98672,917,1393,395,664,847,106,81612,50715,13107,5398,26,0,0,0,2100,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,11,7,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,31,11,29,98672,769,1393,396,529,777,101,63823,44998,12158,4829,211,1.5,0,0,2100,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,7,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,31,9,26,98672,557,1393,394,344,599,105,39797,33648,12145,4391,320,2.1,0,0,2100,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,11,7,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,10,29,98663,295,1393,390,136,297,73,15060,8801,8108,2529,191,0,0,0,1700,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,11,7,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,27,13,42,98637,0,1391,386,0,0,0,0,0,0,0,60,1.5,1,1,1300,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,11,7,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,25,12,44,98619,0,0,374,0,0,0,0,0,0,0,100,1.5,1,1,1100,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,7,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,23,13,53,98601,0,0,374,0,0,0,0,0,0,0,90,2.1,3,3,1000,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,7,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,23,13,53,98601,0,0,374,0,0,0,0,0,0,0,100,1.5,3,3,1000,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,7,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,20,13,64,98574,0,0,365,0,0,0,0,0,0,0,100,2.1,5,5,800,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,7,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,21,12,56,98583,0,0,363,0,0,0,0,0,0,0,90,1.5,3,3,800,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,7,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,12,56,98583,0,0,348,0,0,0,0,0,0,0,100,1.5,0,0,900,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,8,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,20,11,56,98574,0,0,357,0,0,0,0,0,0,0,90,2.1,3,3,900,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,8,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,20,12,60,98574,0,0,361,0,0,0,0,0,0,0,71,0,4,4,1000,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,8,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,19,10,56,98564,0,0,351,0,0,0,0,0,0,0,118,0,3,3,1000,77777,9,999999999,26,0,0,88,0.2,0,0 +2008,11,8,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,20,11,56,98574,0,0,342,0,0,0,0,0,0,0,226,0,0,0,1000,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,8,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,20,13,64,98574,0,0,365,0,0,0,0,0,0,0,115,0,5,5,1000,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,8,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,18,13,73,98555,0,0,358,0,0,0,0,0,0,0,128,0,6,6,900,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,8,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,18,12,68,98555,0,0,354,0,0,0,0,0,0,0,41,0,5,5,800,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,8,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,18,12,68,98555,240,1123,354,91,148,65,9930,2736,7149,2132,142,0,5,5,700,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,8,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,22,12,53,98592,510,1393,368,299,498,117,33895,27732,13315,4592,170,1.5,3,3,800,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,8,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,12,50,98601,732,1393,369,492,713,118,58209,42603,14009,5433,200,1.5,2,2,1000,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,8,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,9,36,98619,891,1393,364,642,841,104,78784,50554,12761,5227,200,1.5,0,0,1000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,11,8,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,28,13,40,98646,978,1393,391,716,858,114,88159,50397,14135,5886,52,0,1,1,1000,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,11,8,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,30,13,35,98663,985,1393,394,723,860,115,89027,50577,14226,5931,327,0,0,0,1200,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,11,8,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,30,10,29,98663,912,1393,390,660,791,142,79305,51057,17161,6951,128,0,0,0,1500,15,9,999999999,25,0,0,88,0.2,0,0 +2008,11,8,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,11,31,98663,765,1393,415,489,631,143,57366,40703,16815,6479,295,0,5,5,1500,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,8,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,30,10,29,98663,553,1393,390,340,525,132,38584,32223,15012,5214,20,1.5,0,0,1400,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,11,8,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,29,12,35,98654,291,1393,410,124,217,78,13608,6545,8644,2635,240,0,5,5,1500,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,8,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,27,14,45,98637,0,1375,392,0,0,0,0,0,0,0,240,0,2,2,1200,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,8,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,24,13,50,98610,0,0,376,0,0,0,0,0,0,0,94,0,2,2,1100,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,11,8,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,23,13,53,98601,0,0,374,0,0,0,0,0,0,0,37,0,3,3,1000,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,8,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,23,13,53,98601,0,0,374,0,0,0,0,0,0,0,43,0,3,3,900,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,8,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,23,12,50,98601,0,0,369,0,0,0,0,0,0,0,91,0,2,2,900,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,8,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,22,14,60,98592,0,0,373,0,0,0,0,0,0,0,154,0,4,4,800,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,8,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,22,12,53,98592,0,0,368,0,0,0,0,0,0,0,327,0,3,3,700,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,9,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,22,14,60,98592,0,0,373,0,0,0,0,0,0,0,129,0,4,4,600,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,9,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,20,14,68,98574,0,0,366,0,0,0,0,0,0,0,55,0,5,5,500,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,9,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,19,15,78,98564,0,0,370,0,0,0,0,0,0,0,178,0,7,7,500,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,9,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,18,13,73,98555,0,0,358,0,0,0,0,0,0,0,126,0,6,6,500,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,9,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,17,13,77,98546,0,0,357,0,0,0,0,0,0,0,219,0,7,7,600,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,9,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,17,14,82,98546,0,0,364,0,0,0,0,0,0,0,46,0,8,8,700,77777,9,999999999,39,0,0,88,0.2,0,0 +2008,11,9,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,17,12,72,98546,0,0,352,0,0,0,0,0,0,0,280,0,6,6,700,77777,9,999999999,32,0,0,88,0.2,0,0 +2008,11,9,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,17,11,68,98546,236,1105,348,88,158,62,9737,2684,6808,2045,217,0,5,5,700,77777,9,999999999,29,0,0,88,0.2,0,0 +2008,11,9,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,20,12,60,98574,505,1394,361,289,463,122,32621,26168,13767,4696,45,0,4,4,700,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,9,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,22,13,57,98592,727,1394,372,480,681,124,56432,40945,14692,5662,144,0,4,4,650,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,9,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,24,13,50,98610,887,1394,376,630,811,114,76556,47787,13888,5673,315,0,2,2,700,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,11,9,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,26,13,45,98628,973,1394,386,711,855,114,87474,50256,14136,5881,324,0,2,2,700,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,11,9,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,29,13,37,98654,980,1394,389,719,859,114,88504,50498,14137,5889,300,2.1,0,0,700,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,11,9,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,29,13,37,98654,908,1394,389,653,839,107,79972,48580,13107,5395,320,1.5,0,0,1100,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,11,9,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,29,13,37,98654,761,1394,389,520,776,97,62744,43409,11718,4655,320,2.1,0,0,1100,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,11,9,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,29,13,37,98654,549,1394,389,336,586,105,38642,31288,12098,4362,320,1.5,0,0,1100,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,11,9,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,28,15,45,98646,287,1394,399,130,269,74,14293,6951,8219,2533,40,2.1,2,2,900,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,9,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,24,16,61,98610,0,1360,386,0,0,0,0,0,0,0,157,0,4,4,800,77777,9,999999999,47,0,0,88,0.2,0,0 +2008,11,9,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,24,14,54,98610,0,0,381,0,0,0,0,0,0,0,106,0,3,3,800,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,9,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,23,15,61,98601,0,0,380,0,0,0,0,0,0,0,218,0,4,4,700,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,9,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,23,15,61,98601,0,0,380,0,0,0,0,0,0,0,11,0,4,4,700,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,9,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,22,14,60,98592,0,0,373,0,0,0,0,0,0,0,241,0,4,4,700,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,9,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,20,14,68,98574,0,0,366,0,0,0,0,0,0,0,173,0,5,5,700,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,9,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,20,14,68,98574,0,0,366,0,0,0,0,0,0,0,146,0,5,5,600,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,10,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,20,15,73,98574,0,0,371,0,0,0,0,0,0,0,278,0,6,6,600,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,10,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,19,15,78,98564,0,0,370,0,0,0,0,0,0,0,221,0,7,7,500,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,10,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,19,15,78,98564,0,0,370,0,0,0,0,0,0,0,134,0,7,7,450,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,10,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,18,14,77,98555,0,0,364,0,0,0,0,0,0,0,238,0,7,7,500,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,10,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,17,13,77,98546,0,0,357,0,0,0,0,0,0,0,220,1.5,7,7,500,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,10,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,17,13,77,98546,0,0,357,0,0,0,0,0,0,0,67,0,7,7,500,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,10,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,17,14,82,98546,0,0,364,0,0,0,0,0,0,0,258,0,8,8,500,77777,9,999999999,39,0,0,88,0.2,0,0 +2008,11,10,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,17,13,77,98546,232,1088,357,76,86,61,8316,1284,6767,2024,197,0,7,7,500,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,10,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,18,14,77,98555,501,1395,364,237,249,148,26278,15231,16463,5329,220,0,7,7,600,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,10,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,22,13,57,98592,723,1395,372,476,604,163,54766,40137,18866,7000,270,2.1,4,4,800,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,10,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,23,12,50,98601,882,1395,369,627,811,114,76172,48370,13926,5677,270,2.1,2,2,800,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,10,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,13,47,98619,969,1395,381,706,852,115,86800,50116,14136,5876,290,1.5,2,2,800,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,11,10,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,28,14,42,98646,976,1395,392,713,856,114,87710,49662,14125,5883,310,2.1,1,1,800,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,10,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,29,14,40,98654,904,1395,397,648,836,106,79279,47753,13050,5370,300,2.1,1,1,900,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,10,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,30,12,33,98663,757,1395,393,518,775,97,62404,43933,11776,4667,290,2.6,0,0,1400,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,10,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,11,31,98663,545,1395,391,334,590,103,38489,32023,11961,4305,290,3.1,0,0,1700,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,10,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,12,35,98654,284,1395,387,128,272,73,14177,7403,8100,2490,300,2.1,0,0,1600,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,10,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,14,48,98628,0,1346,375,0,0,0,0,0,0,0,120,0,0,0,1500,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,10,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25,14,50,98619,0,0,370,0,0,0,0,0,0,0,308,0,0,0,1500,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,10,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,23,14,57,98601,0,0,378,0,0,0,0,0,0,0,283,0,4,4,1100,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,10,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,22,15,64,98592,0,0,377,0,0,0,0,0,0,0,219,0,5,5,1100,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,10,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,21,15,69,98583,0,0,376,0,0,0,0,0,0,0,149,0,6,6,900,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,10,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,21,15,69,98583,0,0,376,0,0,0,0,0,0,0,40,0,6,6,750,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,10,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,20,15,73,98574,0,0,371,0,0,0,0,0,0,0,232,0,6,6,700,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,11,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,20,14,68,98574,0,0,366,0,0,0,0,0,0,0,277,0,5,5,500,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,11,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,19,15,78,98564,0,0,370,0,0,0,0,0,0,0,83,0,7,7,500,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,11,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,19,15,78,98564,0,0,370,0,0,0,0,0,0,0,130,0,7,7,500,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,11,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,18,14,77,98555,0,0,364,0,0,0,0,0,0,0,262,0,7,7,500,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,11,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,17,12,72,98546,0,0,352,0,0,0,0,0,0,0,142,0,6,6,700,77777,9,999999999,32,0,0,88,0.2,0,0 +2008,11,11,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,16,12,77,98536,0,0,351,0,0,0,0,0,0,0,73,0,7,7,650,77777,9,999999999,32,0,0,88,0.2,0,0 +2008,11,11,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,16,13,82,98536,0,0,358,0,0,0,0,0,0,0,73,0,8,8,700,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,11,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,16,12,77,98536,228,1070,351,74,78,61,8112,1163,6741,2002,254,0,7,7,700,77777,9,999999999,32,0,0,88,0.2,0,0 +2008,11,11,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,18,10,59,98555,497,1395,349,285,474,117,32228,26687,13231,4515,250,2.1,4,4,700,77777,9,999999999,26,0,0,88,0.2,0,0 +2008,11,11,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,12,60,98574,718,1395,361,468,686,115,55272,40535,13618,5265,250,2.1,4,4,700,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,11,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,22,13,57,98592,878,1395,372,612,775,125,73763,46795,15101,6121,250,1.5,4,4,800,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,11,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,25,14,50,98619,964,1395,382,699,843,116,85680,49158,14324,5949,240,1.5,2,2,1100,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,11,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,27,15,48,98637,971,1395,394,706,853,112,86832,48569,13825,5761,310,1.5,2,2,1400,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,11,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,29,14,40,98654,899,1395,397,644,836,106,78813,47658,12958,5327,300,2.1,1,1,1200,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,11,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,12,33,98663,753,1395,410,508,748,105,60821,43207,12586,4961,310,2.6,3,3,1500,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,11,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,29,13,37,98654,542,1395,389,330,583,104,37939,30816,11950,4295,320,1.5,0,0,1100,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,11,11,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,28,14,42,98646,280,1395,392,126,266,72,13868,6672,8011,2460,310,2.1,1,1,1300,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,11,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,27,15,48,98637,0,1332,394,0,0,0,0,0,0,0,56,0,2,2,1400,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,11,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,23,15,61,98601,0,0,380,0,0,0,0,0,0,0,227,0,4,4,1300,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,11,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,24,15,57,98610,0,0,385,0,0,0,0,0,0,0,338,0,4,4,1000,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,11,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,23,15,61,98601,0,0,380,0,0,0,0,0,0,0,49,0,4,4,900,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,11,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,21,15,69,98583,0,0,376,0,0,0,0,0,0,0,210,0,6,6,800,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,11,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,21,15,69,98583,0,0,376,0,0,0,0,0,0,0,100,1.5,6,6,700,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,11,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,20,15,73,98574,0,0,371,0,0,0,0,0,0,0,67,0,6,6,700,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,12,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,20,15,73,98574,0,0,371,0,0,0,0,0,0,0,137,0,6,6,600,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,12,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,19,15,78,98564,0,0,370,0,0,0,0,0,0,0,342,0,7,7,500,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,12,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,18,15,83,98555,0,0,371,0,0,0,0,0,0,0,205,0,8,8,500,77777,9,999999999,43,0,0,88,0.2,0,0 +2008,11,12,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18,15,83,98555,0,0,371,0,0,0,0,0,0,0,250,1.5,8,8,500,77777,9,999999999,43,0,0,88,0.2,0,0 +2008,11,12,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,13,77,98546,0,0,357,0,0,0,0,0,0,0,240,1,7,7,500,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,12,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,13,77,98546,0,0,357,0,0,0,0,0,0,0,250,1,7,7,500,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,12,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,13,77,98546,0,0,357,0,0,0,0,0,0,0,250,2.1,7,7,700,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,12,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,17,14,82,98546,224,1052,364,64,35,58,7022,401,6424,1924,230,1.5,8,8,700,77777,9,999999999,39,0,0,88,0.2,0,0 +2008,11,12,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,19,13,68,98564,492,1396,360,264,337,145,29251,20617,16171,5211,240,1.5,5,5,700,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,12,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,22,12,53,98592,714,1396,368,475,699,118,56014,41660,13920,5359,240,1.5,3,3,1200,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,12,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,24,14,54,98610,873,1396,381,613,796,115,74203,46413,13986,5691,260,1.5,3,3,1200,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,12,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,26,13,45,98628,959,1396,386,699,854,112,85979,50032,13839,5746,260,1.5,2,2,1300,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,11,12,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,28,14,42,98646,967,1396,392,706,856,113,86755,49527,13928,5793,260,1.5,1,1,1400,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,12,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,30,13,35,98663,895,1396,411,634,812,113,77143,47741,13800,5648,226,0,3,3,2000,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,11,12,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,30,13,35,98663,749,1396,411,504,749,103,60385,42460,12320,4858,280,1.5,3,3,2000,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,11,12,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,14,40,98654,538,1396,407,323,581,99,37190,29577,11440,4130,350,1.5,3,3,2000,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,12,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,14,40,98654,277,1396,407,123,255,72,13500,6254,7964,2438,320,2.1,3,3,2000,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,12,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,16,51,98637,0,1318,399,0,0,0,0,0,0,0,179,0,3,3,1800,77777,9,999999999,46,0,0,88,0.2,0,0 +2008,11,12,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,24,16,61,98610,0,0,383,0,0,0,0,0,0,0,218,0,3,3,1600,77777,9,999999999,47,0,0,88,0.2,0,0 +2008,11,12,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,23,15,61,98601,0,0,380,0,0,0,0,0,0,0,120,0,4,4,1200,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,12,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,22,16,69,98592,0,0,382,0,0,0,0,0,0,0,160,0,6,6,900,77777,9,999999999,47,0,0,88,0.2,0,0 +2008,11,12,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,22,15,64,98592,0,0,377,0,0,0,0,0,0,0,163,0,5,5,800,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,12,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,21,15,69,98583,0,0,376,0,0,0,0,0,0,0,268,0,6,6,800,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,12,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,20,15,73,98574,0,0,371,0,0,0,0,0,0,0,356,0,6,6,800,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,13,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,20,14,68,98574,0,0,366,0,0,0,0,0,0,0,62,0,5,5,700,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,13,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,19,16,83,98564,0,0,377,0,0,0,0,0,0,0,57,0,8,8,600,77777,9,999999999,47,0,0,88,0.2,0,0 +2008,11,13,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,18,15,83,98555,0,0,371,0,0,0,0,0,0,0,156,0,8,8,500,77777,9,999999999,43,0,0,88,0.2,0,0 +2008,11,13,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,18,15,83,98555,0,0,371,0,0,0,0,0,0,0,163,0,8,8,600,77777,9,999999999,43,0,0,88,0.2,0,0 +2008,11,13,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,15,88,98546,0,0,373,0,0,0,0,0,0,0,270,1,9,9,600,77777,9,999999999,43,0,0,88,0.2,0,0 +2008,11,13,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,17,14,82,98546,0,0,364,0,0,0,0,0,0,0,266,0,8,8,600,77777,9,999999999,39,0,0,88,0.2,0,0 +2008,11,13,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,16,13,82,98536,0,0,358,0,0,0,0,0,0,0,299,0,8,8,600,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,13,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,16,15,94,98536,220,1034,379,34,0,34,3274,0,3298,1272,195,0,10,10,500,77777,9,999999999,43,0,0,88,0.2,0,0 +2008,11,13,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,18,15,83,98555,488,1397,371,198,134,151,21759,8166,16673,5295,14,0,8,8,700,77777,9,999999999,43,0,0,88,0.2,0,0 +2008,11,13,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,20,14,68,98574,709,1397,366,434,499,181,49347,34248,20666,7466,54,0,5,5,800,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,13,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,24,15,57,98610,869,1397,385,603,754,134,72035,45295,16057,6469,327,0,4,4,900,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,13,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,26,15,51,98628,955,1397,392,689,844,112,84541,48090,13816,5738,127,0,3,3,900,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,13,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,28,15,45,98646,963,1397,399,700,857,109,86148,48528,13496,5618,76,0,2,2,1100,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,13,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,29,15,43,98654,891,1397,399,636,839,101,77890,46615,12419,5106,280,1.5,1,1,1200,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,13,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,30,14,38,98663,745,1397,395,507,777,92,61077,42160,11185,4432,100,2.1,0,0,1300,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,13,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,28,13,40,98646,534,1397,391,325,582,102,37334,30414,11757,4216,320,3.1,1,1,1000,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,11,13,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,27,15,48,98637,274,1397,394,122,259,71,13389,5922,7829,2398,88,1.5,2,2,1000,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,13,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,25,15,54,98619,0,1306,387,0,0,0,0,0,0,0,130,1,3,3,1000,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,13,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,16,65,98601,0,0,362,0,0,0,0,0,0,0,100,1.5,0,0,700,77777,9,999999999,47,0,0,88,0.2,0,0 +2008,11,13,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,14,54,98610,0,0,365,0,0,0,0,0,0,0,90,1.5,0,0,700,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,13,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,23,16,65,98601,0,0,362,0,0,0,0,0,0,0,89,0,0,0,700,77777,9,999999999,47,0,0,88,0.2,0,0 +2008,11,13,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,15,69,98583,0,0,351,0,0,0,0,0,0,0,162,0,0,0,600,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,13,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,15,73,98574,0,0,347,0,0,0,0,0,0,0,110,2.6,0,0,600,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,13,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,15,78,98564,0,0,342,0,0,0,0,0,0,0,100,2.6,0,0,600,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,14,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,14,77,98555,0,0,336,0,0,0,0,0,0,0,100,2.1,0,0,600,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,14,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,14,77,98555,0,0,336,0,0,0,0,0,0,0,130,1.5,0,0,700,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,14,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,14,73,98564,0,0,341,0,0,0,0,0,0,0,140,2.1,0,0,900,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,14,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,13,68,98564,0,0,360,0,0,0,0,0,0,0,110,1.5,5,5,1300,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,14,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,13,77,98546,0,0,350,0,0,0,0,0,0,0,100,2.1,5,5,1100,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,14,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,13,77,98546,0,0,350,0,0,0,0,0,0,0,110,2.1,5,5,1200,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,14,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,14,82,98546,0,0,351,0,0,0,0,0,0,0,110,3.1,5,5,1300,77777,9,999999999,39,0,0,88,0.2,0,0 +2008,11,14,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,14,82,98546,216,1016,351,79,150,56,8659,1319,6141,1836,120,3.1,5,5,1000,77777,9,999999999,39,0,0,88,0.2,0,0 +2008,11,14,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,15,78,98564,484,1397,357,278,478,113,31295,24520,12735,4344,110,2.1,3,3,1000,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,14,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,12,53,98592,705,1397,368,467,728,100,55635,41083,11934,4638,150,4.1,3,3,1300,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,14,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,11,44,98610,864,1397,377,609,808,109,73988,48129,13290,5399,150,4.1,3,3,1400,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,14,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,11,41,98619,950,1397,382,686,836,117,84023,50651,14421,5959,150,4.6,3,3,1400,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,14,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,12,42,98628,958,1397,388,692,836,119,84710,50208,14598,6042,150,4.1,3,3,1600,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,14,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,12,39,98637,887,1397,394,628,814,111,76459,48223,13578,5546,160,4.1,3,3,1700,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,14,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,12,37,98646,741,1397,399,499,748,102,59703,42828,12289,4830,130,4.1,3,3,1700,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,14,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,13,42,98637,531,1397,395,318,582,97,36679,29665,11224,4043,120,3.1,3,3,1900,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,11,14,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,14,48,98628,271,1397,391,119,250,70,13089,5786,7780,2375,110,2.6,3,3,1800,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,14,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,15,57,98610,0,1293,382,0,0,0,0,0,0,0,100,1.5,3,3,1400,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,14,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,14,57,98601,0,0,375,0,0,0,0,0,0,0,100,2.1,3,3,1400,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,14,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,14,60,98592,0,0,355,0,0,0,0,0,0,0,90,2.6,0,0,1200,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,14,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,13,64,98574,0,0,344,0,0,0,0,0,0,0,100,2.6,0,0,1200,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,14,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,13,68,98564,0,0,340,0,0,0,0,0,0,0,100,2.6,0,0,1000,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,14,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,13,68,98564,0,0,340,0,0,0,0,0,0,0,100,2.6,0,0,1000,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,14,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,13,73,98555,0,0,335,0,0,0,0,0,0,0,100,1.5,0,0,800,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,15,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,13,73,98555,0,0,335,0,0,0,0,0,0,0,100,2.6,0,0,800,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,15,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,12,72,98546,0,0,329,0,0,0,0,0,0,0,100,2.1,0,0,1000,77777,9,999999999,32,0,0,88,0.2,0,0 +2008,11,15,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,11,68,98546,0,0,328,0,0,0,0,0,0,0,100,2.1,0,0,1200,77777,9,999999999,29,0,0,88,0.2,0,0 +2008,11,15,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,12,77,98536,0,0,325,0,0,0,0,0,0,0,90,2.6,0,0,1100,77777,9,999999999,32,0,0,88,0.2,0,0 +2008,11,15,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,12,77,98536,0,0,325,0,0,0,0,0,0,0,100,3.1,0,0,1200,77777,9,999999999,32,0,0,88,0.2,0,0 +2008,11,15,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,12,77,98536,0,0,325,0,0,0,0,0,0,0,100,2.6,0,0,1200,77777,9,999999999,32,0,0,88,0.2,0,0 +2008,11,15,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,13,82,98536,0,0,326,0,0,0,0,0,0,0,110,2.6,0,0,1000,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,15,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,13,77,98546,211,998,331,83,187,54,9074,1520,5986,1789,120,3.1,0,0,800,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,15,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,14,73,98564,479,1398,341,279,497,108,31479,25314,12283,4204,110,3.1,0,0,900,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,15,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,14,60,98592,700,1398,355,468,755,89,56079,40119,10746,4202,120,3.1,0,0,1200,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,15,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,15,51,98628,860,1398,376,608,831,97,74368,45717,11923,4871,130,2.6,0,0,2200,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,15,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,14,48,98628,946,1398,375,688,853,110,84408,49112,13560,5621,130,3.1,0,0,2300,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,15,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,14,45,98637,954,1398,380,695,856,111,85354,49317,13660,5670,120,2.6,0,0,2500,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,15,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,14,42,98646,883,1398,385,631,836,102,77098,47310,12574,5153,100,2.6,0,0,2800,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,15,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,14,42,98646,737,1398,385,501,776,91,60317,41889,11036,4364,110,1.5,0,0,2800,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,15,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,14,42,98646,528,1398,385,319,578,101,36635,29479,11636,4163,80,2.6,0,0,2800,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,15,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,13,42,98637,268,1398,378,119,261,69,13110,5972,7633,2331,70,2.1,0,0,2600,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,11,15,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25,13,47,98619,0,1282,369,0,0,0,0,0,0,0,209,0,0,0,2000,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,11,15,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,13,50,98610,0,0,364,0,0,0,0,0,0,0,50,1.5,0,0,2000,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,11,15,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,13,53,98601,0,0,359,0,0,0,0,0,0,0,60,2.1,0,0,1600,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,15,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,12,56,98583,0,0,348,0,0,0,0,0,0,0,200,2.1,0,0,1300,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,15,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,12,60,98574,0,0,343,0,0,0,0,0,0,0,120,2.1,0,0,1000,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,15,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,13,68,98564,0,0,340,0,0,0,0,0,0,0,90,2.1,0,0,1000,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,15,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,13,68,98564,0,0,340,0,0,0,0,0,0,0,100,1.5,0,0,1000,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,16,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,13,73,98555,0,0,335,0,0,0,0,0,0,0,90,1.5,0,0,1100,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,16,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,13,73,98555,0,0,335,0,0,0,0,0,0,0,50,1.5,0,0,1100,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,16,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,13,73,98555,0,0,335,0,0,0,0,0,0,0,59,0,0,0,1100,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,16,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,13,73,98555,0,0,335,0,0,0,0,0,0,0,90,1.5,0,0,1000,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,16,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,12,68,98555,0,0,334,0,0,0,0,0,0,0,70,2.1,0,0,1000,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,16,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,11,60,98564,0,0,338,0,0,0,0,0,0,0,40,1.5,0,0,900,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,16,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,12,77,98536,0,0,325,0,0,0,0,0,0,0,80,1.5,0,0,900,77777,9,999999999,32,0,0,88,0.2,0,0 +2008,11,16,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,13,82,98536,207,979,326,80,182,53,8817,1256,5867,1751,110,2.1,0,0,800,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,16,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,15,78,98564,475,1399,342,275,494,107,31024,24529,12144,4153,110,2.1,0,0,800,77777,9,999999999,42,0,0,88,0.2,0,0 +2008,11,16,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,13,53,98601,696,1399,359,465,753,90,55700,40622,10822,4221,120,1.5,0,0,1000,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,16,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,14,50,98619,855,1399,370,606,828,100,73899,46447,12182,4964,180,1.5,0,0,1400,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,16,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,14,45,98637,942,1399,380,684,853,109,83938,49031,13461,5576,86,0,0,0,1600,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,16,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,13,40,98646,950,1399,384,692,858,109,85140,49983,13506,5600,198,0,0,0,1600,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,11,16,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,11,35,98646,879,1399,381,631,842,101,77259,49291,12434,5084,100,1.5,0,0,2000,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,16,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,10,31,98654,734,1399,385,501,773,95,60287,44354,11524,4531,50,3.1,0,0,2700,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,11,16,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,7,26,98646,524,1399,376,321,597,97,37055,32410,11222,4014,350,2.6,0,0,3000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,11,16,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,8,28,98646,265,1399,377,118,279,66,13119,6721,7288,2240,320,2.6,0,0,3200,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,11,16,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,10,37,98628,0,1270,386,0,0,0,0,0,0,0,20,1.5,3,3,3200,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,11,16,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,24,11,44,98610,0,0,377,0,0,0,0,0,0,0,244,0,3,3,2500,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,16,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,22,11,50,98592,0,0,367,0,0,0,0,0,0,0,31,0,3,3,2100,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,16,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,10,49,98583,0,0,361,0,0,0,0,0,0,0,149,0,3,3,1500,77777,9,999999999,26,0,0,88,0.2,0,0 +2008,11,16,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,11,53,98583,0,0,362,0,0,0,0,0,0,0,219,0,3,3,1300,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,16,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,12,64,98564,0,0,353,0,0,0,0,0,0,0,31,0,3,3,1000,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,16,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,12,64,98564,0,0,353,0,0,0,0,0,0,0,351,0,3,3,1000,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,17,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,13,68,98564,0,0,354,0,0,0,0,0,0,0,88,0,3,3,900,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,17,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,13,68,98564,0,0,354,0,0,0,0,0,0,0,253,0,3,3,900,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,17,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,12,68,98555,0,0,348,0,0,0,0,0,0,0,246,0,3,3,900,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,17,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,12,72,98546,0,0,329,0,0,0,0,0,0,0,84,0,0,0,1000,77777,9,999999999,32,0,0,88,0.2,0,0 +2008,11,17,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,13,77,98546,0,0,331,0,0,0,0,0,0,0,154,0,0,0,900,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,17,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,13,77,98546,0,0,331,0,0,0,0,0,0,0,224,0,0,0,800,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,17,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,13,77,98546,0,0,331,0,0,0,0,0,0,0,159,0,0,0,800,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,17,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,14,82,98546,203,961,332,78,175,52,8517,857,5751,1714,62,0,0,0,700,77777,9,999999999,39,0,0,88,0.2,0,0 +2008,11,17,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,12,68,98555,471,1399,334,273,498,105,30857,25533,11962,4081,280,1.5,0,0,600,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,17,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,12,60,98574,691,1399,343,462,750,91,55250,41041,10940,4254,230,2.1,0,0,700,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,17,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25,12,44,98619,851,1399,367,604,830,99,73723,47724,12140,4935,282,0,0,0,1200,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,17,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,26,13,45,98628,937,1399,386,680,852,109,83502,49604,13415,5549,220,1.5,2,2,1400,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,11,17,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,10,32,98646,946,1399,380,692,787,160,82792,52446,19209,7769,280,1.5,0,0,1800,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,11,17,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,9,30,98646,875,1399,379,629,846,100,77179,50373,12316,5028,270,2.6,0,0,2200,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,11,17,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,11,35,98646,730,1399,381,497,772,94,59792,43609,11374,4472,320,2.1,0,0,2500,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,17,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,11,35,98646,521,1399,381,316,583,99,36342,30515,11388,4064,290,3.1,0,0,2600,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,17,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,10,32,98646,262,1399,380,116,272,65,12852,6114,7237,2222,290,3.1,0,0,2500,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,11,17,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,10,34,98637,0,1260,375,0,0,0,0,0,0,0,300,1,0,0,2000,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,11,17,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,11,44,98610,0,0,361,0,0,0,0,0,0,0,280,1,0,0,1600,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,17,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,22,12,53,98592,0,0,353,0,0,0,0,0,0,0,180,0,0,0,1000,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,17,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,13,60,98583,0,0,349,0,0,0,0,0,0,0,300,0,0,0,900,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,17,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,22,13,57,98592,0,0,354,0,0,0,0,0,0,0,267,0,0,0,700,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,17,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,20,12,60,98574,0,0,343,0,0,0,0,0,0,0,106,0,0,0,650,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,17,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,20,13,64,98574,0,0,344,0,0,0,0,0,0,0,176,0,0,0,600,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,18,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,13,68,98564,0,0,340,0,0,0,0,0,0,0,113,0,0,0,600,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,18,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,12,64,98564,0,0,339,0,0,0,0,0,0,0,117,0,0,0,600,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,18,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9?9*9*9*9*9,17,12,72,98546,0,0,352,0,0,0,0,0,0,0,2,1.5,6,6,600,77777,9,999999999,32,0,0,88,0.2,0,0 +2008,11,18,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,17,11,68,98546,0,0,348,0,0,0,0,0,0,0,240,1,5,5,600,77777,9,999999999,29,0,0,88,0.2,0,0 +2008,11,18,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,12,72,98546,0,0,329,0,0,0,0,0,0,0,78,0,0,0,600,77777,9,999999999,32,0,0,88,0.2,0,0 +2008,11,18,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,11,72,98536,0,0,324,0,0,0,0,0,0,0,197,0,0,0,600,77777,9,999999999,29,0,0,88,0.2,0,0 +2008,11,18,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,11,72,98536,0,0,324,0,0,0,0,0,0,0,313,0,0,0,600,77777,9,999999999,29,0,0,88,0.2,0,0 +2008,11,18,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15,12,82,98527,199,943,320,76,172,51,8303,869,5634,1674,260,1.5,0,0,600,77777,9,999999999,32,0,0,88,0.2,0,0 +2008,11,18,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,12,60,98574,466,1400,361,261,448,111,29318,23583,12576,4228,260,2.1,4,4,1100,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,18,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,12,56,98583,687,1400,348,458,712,109,54038,41077,12861,4930,270,2.1,0,0,1200,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,18,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,11,44,98610,846,1400,361,601,831,98,73417,48252,12058,4895,300,1.5,0,0,1600,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,18,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,11,39,98628,933,1400,371,680,860,106,83657,50927,13085,5406,300,2.1,0,0,1600,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,18,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,10,34,98637,942,1400,375,689,787,159,82356,52373,19092,7717,300,3.1,0,0,1700,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,11,18,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,11,35,98646,871,1400,381,624,841,100,76400,49099,12318,5028,320,3.6,0,0,2500,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,18,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,28.5,10.5,33,98650,727,1400,383,495,771,94,59502,43786,11362,4461,350,3.3,0,0,2750,77777,9,999999999,27,0,0,88,0.2,0,0 +2008,11,18,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,10,31,98654,518,1400,385,314,585,97,36189,30774,11253,4013,290,3.1,0,0,3000,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,11,18,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,11,35,98646,260,1400,381,114,256,67,12623,5723,7401,2250,300,2.1,0,0,3000,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,18,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,13,42,98637,0,1250,378,0,0,0,0,0,0,0,310,1.5,0,0,3000,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,11,18,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25,13,47,98619,0,0,369,0,0,0,0,0,0,0,41,0,0,0,2200,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,11,18,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,22,13,57,98592,0,0,354,0,0,0,0,0,0,0,274,0,0,0,2000,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,18,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,23,13,53,98601,0,0,359,0,0,0,0,0,0,0,345,0,0,0,1600,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,18,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,13,60,98583,0,0,349,0,0,0,0,0,0,0,5,0,0,0,1000,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,18,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,13,68,98564,0,0,340,0,0,0,0,0,0,0,313,0,0,0,800,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,18,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,13,68,98564,0,0,340,0,0,0,0,0,0,0,256,0,0,0,800,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,19,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,12,64,98564,0,0,339,0,0,0,0,0,0,0,286,0,0,0,700,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,19,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,11,68,98546,0,0,328,0,0,0,0,0,0,0,32,0,0,0,700,77777,9,999999999,29,0,0,88,0.2,0,0 +2008,11,19,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,13,77,98546,0,0,331,0,0,0,0,0,0,0,200,2.1,0,0,800,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,19,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,13,77,98546,0,0,331,0,0,0,0,0,0,0,280,1.5,0,0,800,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,19,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,12,77,98536,0,0,325,0,0,0,0,0,0,0,240,1.5,0,0,800,77777,9,999999999,32,0,0,88,0.2,0,0 +2008,11,19,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,11,77,98527,0,0,319,0,0,0,0,0,0,0,240,1.5,0,0,900,77777,9,999999999,29,0,0,88,0.2,0,0 +2008,11,19,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,11,77,98527,0,0,319,0,0,0,0,0,0,0,312,0,0,0,650,77777,9,999999999,29,0,0,88,0.2,0,0 +2008,11,19,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,11,77,98527,195,924,319,73,168,50,8071,738,5515,1636,250,1.5,0,0,600,77777,9,999999999,29,0,0,88,0.2,0,0 +2008,11,19,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,11,72,98536,462,1400,324,267,496,103,30183,25292,11710,3981,250,1.5,0,0,600,77777,9,999999999,29,0,0,88,0.2,0,0 +2008,11,19,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,11,60,98564,683,1400,338,455,747,91,54425,41252,10920,4230,270,2.6,0,0,1000,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,19,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,11,53,98583,842,1400,347,597,830,98,72932,48129,11992,4863,260,1.5,0,0,1400,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,19,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,13,50,98610,929,1400,364,674,855,107,82727,49491,13146,5431,260,2.1,0,0,2200,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,11,19,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,13,45,98628,938,1400,373,682,857,108,83769,49737,13277,5493,280,2.6,0,0,2500,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,11,19,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,13,42,98637,868,1400,378,619,837,100,75636,47675,12281,5014,290,2.6,0,0,2500,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,11,19,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,12,37,98646,724,1400,382,491,772,92,59056,42743,11097,4360,300,3.1,0,0,2500,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,19,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,13,42,98637,516,1400,378,310,576,98,35644,29198,11318,4031,300,2.6,0,0,2200,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,11,19,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,13,42,98637,257,1400,378,113,252,66,12410,5147,7333,2228,290,2.6,0,0,2200,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,11,19,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25,13,47,98619,0,1240,369,0,0,0,0,0,0,0,183,0,0,0,2000,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,11,19,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,24,13,50,98610,0,0,364,0,0,0,0,0,0,0,201,0,0,0,1600,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,11,19,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,13,50,98610,0,0,364,0,0,0,0,0,0,0,340,1.5,0,0,1100,77777,9,999999999,34,0,0,88,0.2,0,0 +2008,11,19,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,12,53,98592,0,0,353,0,0,0,0,0,0,0,70,1.5,0,0,1100,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,19,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,20,12,60,98574,0,0,343,0,0,0,0,0,0,0,291,0,0,0,1100,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,19,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,20,12,60,98574,0,0,343,0,0,0,0,0,0,0,123,0,0,0,900,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,19,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,12,68,98555,0,0,334,0,0,0,0,0,0,0,120,1.5,0,0,900,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,20,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,11,60,98564,0,0,338,0,0,0,0,0,0,0,221,0,0,0,900,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,20,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,11,64,98555,0,0,333,0,0,0,0,0,0,0,189,0,0,0,900,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,20,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,17,11,68,98546,0,0,348,0,0,0,0,0,0,0,292,0,5,5,900,77777,9,999999999,29,0,0,88,0.2,0,0 +2008,11,20,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,19,9,52,98564,0,0,335,0,0,0,0,0,0,0,198,0,0,0,900,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,11,20,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,11,64,98555,0,0,333,0,0,0,0,0,0,0,321,0,0,0,900,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,20,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,10,63,98546,0,0,327,0,0,0,0,0,0,0,200,1.5,0,0,900,77777,9,999999999,26,0,0,88,0.2,0,0 +2008,11,20,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,12,82,98527,0,0,320,0,0,0,0,0,0,0,178,0,0,0,700,77777,9,999999999,32,0,0,88,0.2,0,0 +2008,11,20,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,12,77,98536,191,906,325,71,162,49,7806,390,5394,1598,247,0,0,0,600,77777,9,999999999,32,0,0,88,0.2,0,0 +2008,11,20,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,11,64,98555,458,1401,333,264,494,102,29815,24969,11598,3936,227,0,0,0,700,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,20,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,22,11,50,98592,678,1401,352,452,746,90,53996,41063,10837,4193,126,1.5,0,0,1000,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,20,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,8,32,98628,838,1401,367,597,836,97,73003,49749,11855,4797,120,1.5,0,0,2000,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,11,20,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,9,34,98628,925,1401,369,675,786,156,80649,52536,18698,7530,110,2.1,0,0,2100,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,11,20,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,10,32,98646,934,1401,380,682,787,157,81523,52240,18879,7620,150,1.5,0,0,2500,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,11,20,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,29,10,31,98654,864,1401,385,619,843,99,75827,49550,12149,4950,140,1.5,0,0,2200,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,11,20,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,10,32,98646,721,1401,380,490,771,94,58911,43841,11283,4420,114,0,0,0,1800,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,11,20,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,28,11,35,98646,513,1401,381,310,582,96,35621,29985,11140,3965,90,1.5,0,0,1800,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,20,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,12,42,98628,255,1401,372,112,252,66,12299,5176,7262,2204,100,1.5,0,0,1800,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,20,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,12,47,98610,0,1231,362,0,0,0,0,0,0,0,100,1.5,0,0,1700,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,20,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,13,53,98601,0,0,359,0,0,0,0,0,0,0,100,1.5,0,0,1100,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,20,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,12,56,98583,0,0,348,0,0,0,0,0,0,0,100,2.6,0,0,1100,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,20,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,14,64,98583,0,0,350,0,0,0,0,0,0,0,100,2.1,0,0,1000,77777,9,999999999,38,0,0,88,0.2,0,0 +2008,11,20,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,13,60,98583,0,0,349,0,0,0,0,0,0,0,120,2.1,0,0,1200,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,20,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,12,56,98583,0,0,363,0,0,0,0,0,0,0,140,4.1,3,3,1400,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,20,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,12,56,98583,0,0,369,0,0,0,0,0,0,0,160,2.6,5,5,2600,77777,9,999999999,31,0,0,88,0.2,0,0 +2008,11,21,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,13,64,98574,0,0,365,0,0,0,0,0,0,0,160,2.6,5,5,2800,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,21,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,13,64,98574,0,0,365,0,0,0,0,0,0,0,150,2.1,5,5,3000,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,21,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,13,64,98574,0,0,365,0,0,0,0,0,0,0,130,2.1,5,5,3000,77777,9,999999999,35,0,0,88,0.2,0,0 +2008,11,21,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,10,59,98555,0,0,372,0,0,0,0,0,0,0,330,7.2,9,9,1800,1200,9,999999999,26,0,0,88,0.2,0,0 +2008,11,21,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,11,68,98546,0,0,368,0,0,0,0,0,0,0,360,6.2,9,9,2200,1200,9,999999999,29,0,0,88,0.2,0,0 +2008,11,21,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,10,68,98536,0,0,362,0,0,0,0,0,0,0,10,6.7,9,9,2500,1200,9,999999999,26,0,0,88,0.2,0,0 +2008,11,21,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,10,72,98527,0,0,357,0,0,0,0,0,0,0,20,5.1,9,9,3200,1200,9,999999999,26,0,0,88,0.2,0,0 +2008,11,21,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,13,82,98536,187,887,366,35,0,35,3433,0,3458,1258,60,6.2,9,9,2200,1200,9,999999999,35,0,0,88,0.2,0,0 +2008,11,21,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,14,82,98546,453,1402,372,134,17,128,14781,916,14246,4573,70,6.7,9,9,2200,1200,9,999999999,39,0,0,88,0.2,0,0 +2008,11,21,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,12,68,98555,674,1402,375,231,29,217,25696,2243,24259,8131,70,4.1,9,9,3000,1200,9,999999999,31,0,0,88,0.2,0,0 +2008,11,21,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,12,68,98555,833,1402,375,304,34,284,34072,2842,32003,11083,90,4.1,9,9,3000,3000,9,999999999,31,0,0,88,0.2,0,0 +2008,11,21,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,13,64,98574,921,1402,386,344,35,321,38714,2999,36354,12793,50,4.1,9,9,3500,3000,9,999999999,35,0,0,88,0.2,0,0 +2008,11,21,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,13,57,98592,930,1402,397,348,35,325,39229,3018,36837,12980,130,3.1,9,9,3500,3000,9,999999999,35,0,0,88,0.2,0,0 +2008,11,21,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,13,57,98592,861,1402,397,316,34,295,35477,2870,33325,11610,40,2.6,9,9,3500,3000,9,999999999,35,0,0,88,0.2,0,0 +2008,11,21,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,16,65,98601,718,1402,406,249,15,241,27627,1161,26921,9054,290,2.1,9,9,3200,3000,9,999999999,47,0,0,88,0.2,0,0 +2008,11,21,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,13,53,98601,510,1402,403,158,20,151,17508,1251,16781,5436,280,3.6,9,9,2700,3000,9,999999999,35,0,0,88,0.2,0,0 +2008,11,21,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,14,60,98592,253,1402,398,57,0,57,5528,0,5569,1985,310,3.1,9,9,2700,3000,9,999999999,38,0,0,88,0.2,0,0 +2008,11,21,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,13,60,98583,0,1223,392,0,0,0,0,0,0,0,330,3.6,9,9,2700,3000,9,999999999,35,0,0,88,0.2,0,0 +2008,11,21,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,13,60,98583,0,0,392,0,0,0,0,0,0,0,300,3.6,9,9,2200,3000,9,999999999,35,0,0,88,0.2,0,0 +2008,11,21,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,14,68,98574,0,0,388,0,0,0,0,0,0,0,300,2.6,9,9,1700,3000,9,999999999,38,0,0,88,0.2,0,0 +2008,11,21,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,19.5,14.5,73,98569,0,0,367,0,0,0,0,0,0,0,110,2.6,6,6,1450,3000,9,999999999,40,0,0,88,0.2,0,0 +2008,11,21,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,15,78,98564,0,0,362,0,0,0,0,0,0,0,280,2.6,5,5,1200,3000,9,999999999,42,0,0,88,0.2,0,0 +2008,11,21,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,15,88,98546,0,0,352,0,0,0,0,0,0,0,260,2.1,5,5,1000,77777,9,999999999,43,0,0,88,0.2,0,0 +2008,11,21,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,15,88,98546,0,0,352,0,0,0,0,0,0,0,290,2.1,5,5,900,77777,9,999999999,43,0,0,88,0.2,0,0 +2008,11,22,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,15,88,98546,0,0,352,0,0,0,0,0,0,0,270,2.1,5,5,800,77777,9,999999999,43,0,0,88,0.2,0,0 +2008,11,22,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,14,88,98536,0,0,341,0,0,0,0,0,0,0,280,1.5,3,3,650,77777,9,999999999,39,0,0,88,0.2,0,0 +2008,11,22,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14,14,100,98517,0,0,318,0,0,0,0,0,0,0,260,2.1,0,0,50,77777,0,999999999,39,0,0,88,0.2,0,0 +2008,11,22,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,10,77,98517,0,0,314,0,0,0,0,0,0,0,230,2.1,0,0,50,77777,0,999999999,26,0,0,88,0.2,0,0 +2008,11,22,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,13,94,98517,0,0,317,0,0,0,0,0,0,0,260,2.1,0,0,350,77777,0,999999999,35,0,0,88,0.2,0,0 +2008,11,22,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,10,82,98507,0,0,310,0,0,0,0,0,0,0,250,2.6,0,0,100,77777,0,999999999,26,0,0,88,0.2,0,0 +2008,11,22,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,10,82,98507,0,0,310,0,0,0,0,0,0,0,240,2.1,0,0,100,77777,0,999999999,26,0,0,88,0.2,0,0 +2008,11,22,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,12,94,98507,182,868,325,66,148,46,7208,0,5101,1511,260,2.6,3,3,600,77777,0,999999999,32,0,0,88,0.2,0,0 +2008,11,22,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,12,88,98517,449,1402,330,253,467,104,28518,23255,11713,3939,260,2.6,3,3,700,77777,0,999999999,32,0,0,88,0.2,0,0 +2008,11,22,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,12,77,98536,670,1402,339,438,716,96,51984,39484,11397,4381,250,3.1,3,3,1000,77777,0,999999999,32,0,0,88,0.2,0,0 +2008,11,22,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,12,68,98555,829,1402,348,578,792,109,69763,46610,13235,5324,260,3.1,3,3,1300,77777,0,999999999,31,0,0,88,0.2,0,0 +2008,11,22,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,11,56,98574,917,1402,342,665,858,104,81785,50565,12804,5274,270,3.1,0,0,1500,77777,0,999999999,28,0,0,88,0.2,0,0 +2008,11,22,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,11,50,98592,926,1402,352,674,861,105,82938,50844,12924,5333,290,4.1,0,0,2000,77777,0,999999999,28,0,0,88,0.2,0,0 +2008,11,22,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,11,50,98592,858,1402,352,612,839,99,74841,48743,12093,4921,300,3.6,0,0,2500,77777,0,999999999,28,0,0,88,0.2,0,0 +2008,11,22,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,11,47,98601,715,1402,356,484,769,92,58173,42997,11084,4339,290,5.1,0,0,2800,77777,0,999999999,28,0,0,88,0.2,0,0 +2008,11,22,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,10,44,98601,508,1402,355,306,583,95,35241,30049,10972,3899,330,4.6,0,0,3500,77777,0,999999999,26,0,0,88,0.2,0,0 +2008,11,22,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,8,41,98592,251,1402,348,110,266,62,12158,5514,6914,2110,310,5.7,0,0,3500,77777,0,999999999,21,0,0,88,0.2,0,0 +2008,11,22,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,8,41,98592,0,1216,348,0,0,0,0,0,0,0,300,2.6,0,0,3500,77777,0,999999999,21,0,0,88,0.2,0,0 +2008,11,22,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,9,52,98564,0,0,335,0,0,0,0,0,0,0,270,2.6,0,0,2500,77777,0,999999999,23,0,0,88,0.2,0,0 +2008,11,22,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,10,59,98555,0,0,332,0,0,0,0,0,0,0,270,2.6,0,0,1800,77777,0,999999999,26,0,0,88,0.2,0,0 +2008,11,22,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,11,72,98536,0,0,324,0,0,0,0,0,0,0,250,2.1,0,0,1000,77777,0,999999999,29,0,0,88,0.2,0,0 +2008,11,22,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,11,72,98536,0,0,324,0,0,0,0,0,0,0,250,1.5,0,0,900,77777,0,999999999,29,0,0,88,0.2,0,0 +2008,11,22,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,10,68,98536,0,0,323,0,0,0,0,0,0,0,260,2.1,0,0,1000,77777,0,999999999,26,0,0,88,0.2,0,0 +2008,11,22,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,11,77,98527,0,0,319,0,0,0,0,0,0,0,280,1.5,0,0,1300,77777,0,999999999,29,0,0,88,0.2,0,0 +2008,11,23,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,9,72,98517,0,0,313,0,0,0,0,0,0,0,270,2.1,0,0,1300,77777,0,999999999,23,0,0,88,0.2,0,0 +2008,11,23,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,9,72,98517,0,0,313,0,0,0,0,0,0,0,240,1,0,0,1000,77777,0,999999999,23,0,0,88,0.2,0,0 +2008,11,23,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,8,67,98517,0,0,312,0,0,0,0,0,0,0,250,1.5,0,0,1200,77777,0,999999999,21,0,0,88,0.2,0,0 +2008,11,23,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,10,88,98498,0,0,305,0,0,0,0,0,0,0,250,2.1,0,0,1000,77777,0,999999999,26,0,0,88,0.2,0,0 +2008,11,23,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,8,76,98498,0,0,303,0,0,0,0,0,0,0,220,2.1,0,0,1200,77777,0,999999999,21,0,0,88,0.2,0,0 +2008,11,23,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,7,76,98488,0,0,298,0,0,0,0,0,0,0,220,2.1,0,0,1000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,11,23,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,8,87,98478,0,0,295,0,0,0,0,0,0,0,240,1.5,0,0,900,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,11,23,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,7,82,98478,178,850,294,65,155,45,7138,113,4984,1472,220,1.5,0,0,800,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,11,23,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,8,76,98498,445,1403,303,255,517,91,29066,25147,10432,3571,250,1.5,0,0,900,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,11,23,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,8,59,98536,665,1403,321,443,740,92,52850,42012,10988,4219,270,3.1,0,0,1100,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,11,23,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,8,49,98564,825,1403,334,586,819,104,71099,49511,12654,5086,290,4.1,0,0,2500,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,11,23,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,6,35,98592,913,1403,346,667,786,156,79708,53785,18713,7498,300,5.1,0,0,4200,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,11,23,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,5,33,98592,923,1403,345,678,787,160,80927,54542,19185,7689,300,5.7,0,0,4500,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,11,23,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,6,33,98601,854,1403,350,614,852,95,75459,51391,11757,4775,300,5.1,0,0,5000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,11,23,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,6,33,98601,712,1403,350,486,770,95,58350,45499,11484,4471,300,5.1,0,0,5000,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,11,23,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,4,29,98601,506,1403,348,308,588,96,35467,32066,11080,3916,290,5.7,0,0,5000,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,11,23,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,6,33,98601,249,1403,350,109,268,62,12100,5666,6848,2088,280,4.6,0,0,4500,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,11,23,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,8,46,98574,0,1209,339,0,0,0,0,0,0,0,270,2.6,0,0,3600,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,11,23,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,9,52,98564,0,0,335,0,0,0,0,0,0,0,260,2.1,0,0,3200,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,11,23,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,8,52,98555,0,0,330,0,0,0,0,0,0,0,250,2.1,0,0,2200,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,11,23,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,9,63,98536,0,0,322,0,0,0,0,0,0,0,250,1.5,0,0,1500,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,11,23,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,8,59,98536,0,0,321,0,0,0,0,0,0,0,270,3.1,0,0,1500,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,11,23,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,8,59,98536,0,0,321,0,0,0,0,0,0,0,240,1,0,0,1500,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,11,23,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,8,63,98527,0,0,316,0,0,0,0,0,0,0,200,1,0,0,1300,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,11,24,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,8,72,98507,0,0,308,0,0,0,0,0,0,0,100,1.5,0,0,1300,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,11,24,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,7,67,98507,0,0,307,0,0,0,0,0,0,0,240,1.5,0,0,1400,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,11,24,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,6,71,98488,0,0,297,0,0,0,0,0,0,0,230,1.5,0,0,1700,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,11,24,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,6,67,98498,0,0,301,0,0,0,0,0,0,0,210,2.1,0,0,1800,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,11,24,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,6,71,98488,0,0,297,0,0,0,0,0,0,0,220,1,0,0,1800,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,11,24,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,7,82,98478,0,0,294,0,0,0,0,0,0,0,230,1,0,0,1800,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,11,24,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,5,71,98478,0,0,292,0,0,0,0,0,0,0,200,1.5,0,0,1600,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,11,24,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11,7,76,98488,174,831,298,63,150,44,6900,0,4868,1435,210,2.1,0,0,1400,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,11,24,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,4,51,98517,441,1403,308,254,525,89,28993,26040,10188,3485,230,2.1,0,0,1800,77777,9,999999999,14,0,0,88,0.2,0,0 +2008,11,24,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,5,48,98536,661,1403,317,442,743,92,52736,43128,10984,4206,230,2.6,0,0,1600,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,11,24,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,7,46,98564,821,1403,333,583,834,95,71268,49756,11628,4684,260,3.1,0,0,1800,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,11,24,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,9,46,98583,909,1403,345,661,863,101,81381,51611,12515,5144,300,2.6,0,0,2200,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,11,24,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,6,35,98592,919,1403,346,674,786,158,80435,54026,18962,7602,300,3.1,0,0,2200,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,11,24,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,5,31,98601,851,1403,349,613,855,94,75367,51760,11538,4683,300,4.1,0,0,2500,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,11,24,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,7,34,98610,709,1403,356,483,769,94,57995,44949,11372,4427,290,4.6,0,0,3000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,11,24,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,7,34,98610,503,1403,356,305,593,92,35170,30963,10642,3781,300,4.1,0,0,2800,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,11,24,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,8,38,98601,247,1403,353,108,264,61,11945,5235,6805,2074,290,4.1,0,0,2800,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,11,24,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,8,43,98583,0,1202,343,0,0,0,0,0,0,0,270,3.6,0,0,2600,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,11,24,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,8,46,98574,0,0,339,0,0,0,0,0,0,0,270,1.5,0,0,2400,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,11,24,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,9,56,98555,0,0,331,0,0,0,0,0,0,0,260,2.6,0,0,1600,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,11,24,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,10,63,98546,0,0,327,0,0,0,0,0,0,0,270,2.6,0,0,1300,77777,9,999999999,26,0,0,88,0.2,0,0 +2008,11,24,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,9,59,98546,0,0,326,0,0,0,0,0,0,0,230,2.1,0,0,1300,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,11,24,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,7,55,98536,0,0,320,0,0,0,0,0,0,0,250,2.1,0,0,1400,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,11,24,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,8,63,98527,0,0,316,0,0,0,0,0,0,0,240,1.5,0,0,1400,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,11,25,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,7,63,98517,0,0,311,0,0,0,0,0,0,0,250,2.1,0,0,2100,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,11,25,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,7,63,98517,0,0,311,0,0,0,0,0,0,0,230,2.1,0,0,2400,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,11,25,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,6,59,98517,0,0,310,0,0,0,0,0,0,0,280,3.1,0,0,2200,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,11,25,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,6,62,98507,0,0,305,0,0,0,0,0,0,0,270,3.1,0,0,2200,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,11,25,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,6,62,98507,0,0,305,0,0,0,0,0,0,0,240,2.1,0,0,2200,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,11,25,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,6,71,98488,0,0,297,0,0,0,0,0,0,0,240,2.1,0,0,1800,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,11,25,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,6,71,98488,0,0,297,0,0,0,0,0,0,0,250,2.1,0,0,1400,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,11,25,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,6,71,98488,170,813,297,60,107,47,6601,134,5198,1488,260,3.1,0,0,1400,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,11,25,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,5,58,98507,436,1404,304,250,518,89,28509,25338,10169,3469,250,3.6,0,0,1800,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,11,25,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,5,51,98527,657,1404,313,438,740,92,52256,42882,10951,4187,250,3.1,0,0,2500,77777,9,999999999,16,0,0,88,0.2,0,0 +2008,11,25,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,8,49,98564,817,1404,334,579,831,95,70622,49105,11613,4675,270,3.6,0,0,2500,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,11,25,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21,7,40,98583,905,1404,342,660,785,153,78755,53126,18344,7348,260,4.1,0,0,1800,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,11,25,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,7,36,98601,916,1404,352,669,786,156,79931,53461,18714,7506,280,4.1,0,0,2400,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,11,25,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,7,36,98601,848,1404,352,608,846,96,74525,50760,11831,4797,280,5.1,0,0,2800,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,11,25,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,7,32,98619,707,1404,361,481,768,94,57701,44827,11347,4414,290,6.2,0,0,3500,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,11,25,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,6,30,98619,501,1404,360,303,590,93,35003,31133,10715,3797,280,6.2,0,0,3500,77777,9,999999999,17,0,0,88,0.2,0,0 +2008,11,25,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,7,34,98610,246,1404,356,107,263,61,11848,5234,6762,2058,280,4.1,0,0,3200,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,11,25,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,9,46,98583,0,1196,345,0,0,0,0,0,0,0,280,2.6,0,0,3200,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,11,25,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,10,53,98574,0,0,341,0,0,0,0,0,0,0,260,1.5,0,0,1800,77777,9,999999999,26,0,0,88,0.2,0,0 +2008,11,25,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,10,53,98574,0,0,341,0,0,0,0,0,0,0,260,1.5,0,0,1800,77777,9,999999999,26,0,0,88,0.2,0,0 +2008,11,25,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,10,59,98555,0,0,332,0,0,0,0,0,0,0,260,1,0,0,1600,77777,9,999999999,26,0,0,88,0.2,0,0 +2008,11,25,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,9,59,98546,0,0,326,0,0,0,0,0,0,0,131,0,0,0,1000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,11,25,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,10,68,98536,0,0,323,0,0,0,0,0,0,0,278,0,0,0,900,77777,9,999999999,26,0,0,88,0.2,0,0 +2008,11,25,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,10,72,98527,0,0,318,0,0,0,0,0,0,0,240,1.5,0,0,1100,77777,9,999999999,26,0,0,88,0.2,0,0 +2008,11,26,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,9,67,98527,0,0,317,0,0,0,0,0,0,0,266,0,0,0,1200,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,11,26,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,9,72,98517,0,0,313,0,0,0,0,0,0,0,330,0,0,0,1200,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,11,26,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,9,72,98517,0,0,313,0,0,0,0,0,0,0,41,0,0,0,1300,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,11,26,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,8,72,98507,0,0,308,0,0,0,0,0,0,0,22,0,0,0,1300,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,11,26,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,8,72,98507,0,0,308,0,0,0,0,0,0,0,245,0,0,0,1400,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,11,26,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,8,76,98498,0,0,303,0,0,0,0,0,0,0,180,0,0,0,1400,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,11,26,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,8,76,98498,0,0,303,0,0,0,0,0,0,0,47,0,0,0,1300,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,11,26,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,7,71,98498,166,794,320,54,75,45,5930,0,4972,1431,220,2.1,5,5,1200,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,11,26,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,9,56,98555,432,1404,350,228,407,103,25652,20591,11618,3847,230,1.5,5,5,1500,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,11,26,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,8,49,98564,653,1404,349,427,672,115,49961,40766,13461,5042,240,1.5,3,3,1500,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,11,26,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,8,43,98583,813,1404,358,568,805,101,68929,48365,12352,4952,290,2.1,3,3,1800,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,11,26,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,8,36,98610,902,1404,373,647,840,108,79253,51355,13251,5423,10,2.1,3,3,1800,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,11,26,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,7,32,98619,913,1404,377,658,825,122,80043,52381,14848,6056,90,2.1,3,3,2200,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,11,26,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,8,30,98637,845,1404,394,563,676,156,66444,45887,18448,7235,60,2.1,5,5,2400,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,11,26,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,10,37,98628,704,1404,392,444,610,137,51592,39102,16039,6027,110,2.6,5,5,1700,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,11,26,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,8,32,98628,499,1404,389,280,460,117,31691,26416,13232,4511,90,2.1,5,5,2100,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,11,26,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,9,36,98619,244,1404,385,99,203,63,10865,4013,6987,2103,60,2.1,5,5,2100,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,11,26,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,23,10,44,98601,0,1191,376,0,0,0,0,0,0,0,187,0,5,5,1600,77777,9,999999999,26,0,0,88,0.2,0,0 +2008,11,26,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,10,53,98574,0,0,341,0,0,0,0,0,0,0,150,1.5,0,0,1100,77777,9,999999999,26,0,0,88,0.2,0,0 +2008,11,26,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,20,10,53,98574,0,0,341,0,0,0,0,0,0,0,187,0,0,0,900,77777,9,999999999,26,0,0,88,0.2,0,0 +2008,11,26,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,20,9,49,98574,0,0,340,0,0,0,0,0,0,0,105,0,0,0,1000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,11,26,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,9,52,98564,0,0,335,0,0,0,0,0,0,0,238,0,0,0,1000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,11,26,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,9,59,98546,0,0,326,0,0,0,0,0,0,0,133,0,0,0,1000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,11,26,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,8,59,98536,0,0,321,0,0,0,0,0,0,0,32,0,0,0,900,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,11,27,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,8,59,98536,0,0,321,0,0,0,0,0,0,0,100,1.5,0,0,700,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,11,27,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,11,72,98536,0,0,324,0,0,0,0,0,0,0,215,0,0,0,700,77777,9,999999999,29,0,0,88,0.2,0,0 +2008,11,27,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,10,68,98536,0,0,323,0,0,0,0,0,0,0,185,0,0,0,600,77777,9,999999999,26,0,0,88,0.2,0,0 +2008,11,27,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,8,59,98536,0,0,321,0,0,0,0,0,0,0,232,0,0,0,600,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,11,27,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,10,77,98517,0,0,314,0,0,0,0,0,0,0,236,0,0,0,800,77777,9,999999999,26,0,0,88,0.2,0,0 +2008,11,27,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,10,68,98536,0,0,323,0,0,0,0,0,0,0,257,0,0,0,900,77777,9,999999999,26,0,0,88,0.2,0,0 +2008,11,27,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,10,77,98517,0,0,314,0,0,0,0,0,0,0,138,0,0,0,900,77777,9,999999999,26,0,0,88,0.2,0,0 +2008,11,27,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,9,77,98507,162,776,309,56,97,45,6116,0,4904,1406,118,0,0,0,600,77777,9,999999999,24,0,0,88,0.2,0,0 +2008,11,27,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,12,82,98527,428,1405,320,241,473,97,27143,22139,10937,3662,81,0,0,0,700,77777,9,999999999,32,0,0,88,0.2,0,0 +2008,11,27,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,10,53,98574,649,1405,341,428,696,106,50264,40349,12532,4726,180,1.5,0,0,800,77777,9,999999999,26,0,0,88,0.2,0,0 +2008,11,27,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,9,41,98601,809,1405,354,571,828,94,69650,48347,11481,4615,160,2.6,0,0,1000,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,11,27,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,10,39,98619,898,1405,365,650,860,100,79950,50786,12383,5080,110,2.1,0,0,1400,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,11,27,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,9,32,98637,909,1405,374,662,786,153,79004,52318,18299,7345,177,0,0,0,2100,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,11,27,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,10,34,98637,843,1405,375,600,840,96,73439,49001,11784,4777,200,2.6,0,0,2400,77777,9,999999999,25,0,0,88,0.2,0,0 +2008,11,27,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,28,9,30,98646,702,1405,379,476,768,92,57106,43662,11027,4292,191,0,0,0,2500,77777,9,999999999,23,0,0,88,0.2,0,0 +2008,11,27,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,7,28,98637,498,1405,371,300,593,90,34686,30578,10448,3707,300,1.5,0,0,3000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,11,27,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,7,28,98637,243,1405,371,106,271,59,11719,5003,6544,2000,10,1.5,0,0,3000,77777,9,999999999,19,0,0,88,0.2,0,0 +2008,11,27,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25,8,34,98619,0,1187,362,0,0,0,0,0,0,0,209,0,0,0,2200,77777,9,999999999,21,0,0,88,0.2,0,0 +2008,11,27,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,10,49,98583,0,0,346,0,0,0,0,0,0,0,298,0,0,0,1700,77777,9,999999999,26,0,0,88,0.2,0,0 +2008,11,27,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,11,60,98564,0,0,338,0,0,0,0,0,0,0,244,0,0,0,1300,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,27,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,11,64,98555,0,0,333,0,0,0,0,0,0,0,109,0,0,0,1200,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,27,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,11,64,98555,0,0,333,0,0,0,0,0,0,0,239,0,0,0,700,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,27,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,11,64,98555,0,0,333,0,0,0,0,0,0,0,253,0,0,0,700,77777,9,999999999,28,0,0,88,0.2,0,0 +2008,11,27,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,10,63,98546,0,0,327,0,0,0,0,0,0,0,185,0,0,0,700,77777,9,999999999,26,0,0,88,0.2,0,0 +2008,11,28,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,10,63,98546,0,0,327,0,0,0,0,0,0,0,37,0,0,0,700,77777,9,999999999,26,0,0,88,0.2,0,0 +2008,11,28,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,11,68,98546,0,0,328,0,0,0,0,0,0,0,194,0,0,0,600,77777,9,999999999,29,0,0,88,0.2,0,0 +2008,11,28,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,10,72,98527,0,0,318,0,0,0,0,0,0,0,254,0,0,0,500,77777,9,999999999,26,0,0,88,0.2,0,0 +2008,11,28,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,10,72,98527,0,0,318,0,0,0,0,0,0,0,253,0,0,0,550,77777,9,999999999,26,0,0,88,0.2,0,0 +2008,11,28,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,10,72,98527,0,0,318,0,0,0,0,0,0,0,279,0,0,0,550,77777,0,999999999,26,0,0,88,0.2,0,0 +2008,11,28,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,10,77,98517,0,0,314,0,0,0,0,0,0,0,98,0,0,0,500,77777,0,999999999,26,0,0,88,0.2,0,0 +2008,11,28,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,14,11,82,98517,0,0,315,0,0,0,0,0,0,0,105,0,0,0,400,77777,0,999999999,29,0,0,88,0.2,0,0 +2008,11,28,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,11,88,98507,158,757,311,54,124,40,5916,0,4399,1293,264,0,0,0,400,77777,0,999999999,29,0,0,88,0.2,0,0 +2008,11,28,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,9,63,98536,424,1405,322,239,502,88,27184,23039,10026,3399,320,0,0,0,400,77777,0,999999999,23,0,0,88,0.2,0,0 +2008,11,28,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,12,64,98564,645,1405,339,423,735,86,50440,38814,10273,3937,135,0,0,0,600,77777,0,999999999,31,0,0,88,0.2,0,0 +2008,11,28,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,10,41,98610,805,1405,360,567,826,93,69098,47664,11412,4585,30,1.5,0,0,1000,77777,0,999999999,26,0,0,88,0.2,0,0 +2008,11,28,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,11,41,98619,894,1405,366,646,857,100,79369,50092,12362,5070,50,1.5,0,0,1000,77777,0,999999999,28,0,0,88,0.2,0,0 +2008,11,28,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,10,37,98628,906,1405,370,658,864,101,80976,51067,12448,5115,20,2.1,0,0,1000,77777,0,999999999,25,0,0,88,0.2,0,0 +2008,11,28,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,10,37,98628,840,1405,370,598,840,96,73163,48939,11730,4753,310,2.6,0,0,1000,77777,0,999999999,25,0,0,88,0.2,0,0 +2008,11,28,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,10,37,98628,700,1405,370,473,769,90,56821,43031,10862,4230,330,2.6,0,0,1200,77777,0,999999999,25,0,0,88,0.2,0,0 +2008,11,28,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,27,9,32,98637,496,1405,374,298,588,91,34379,29722,10495,3720,274,0,0,0,1700,77777,0,999999999,23,0,0,88,0.2,0,0 +2008,11,28,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,9,34,98628,242,1405,369,105,268,59,11606,4603,6514,1991,22,0,0,0,1700,77777,0,999999999,23,0,0,88,0.2,0,0 +2008,11,28,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,23,11,47,98601,0,1183,356,0,0,0,0,0,0,0,133,0,0,0,1600,77777,0,999999999,28,0,0,88,0.2,0,0 +2008,11,28,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,12,56,98583,0,0,348,0,0,0,0,0,0,0,51,0,0,0,900,77777,0,999999999,31,0,0,88,0.2,0,0 +2008,11,28,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,20,12,60,98574,0,0,343,0,0,0,0,0,0,0,257,0,0,0,750,77777,0,999999999,31,0,0,88,0.2,0,0 +2008,11,28,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,11,60,98564,0,0,338,0,0,0,0,0,0,0,310,0,0,0,750,77777,0,999999999,28,0,0,88,0.2,0,0 +2008,11,28,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,11,60,98564,0,0,338,0,0,0,0,0,0,0,35,0,0,0,800,77777,0,999999999,28,0,0,88,0.2,0,0 +2008,11,28,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,10,63,98546,0,0,327,0,0,0,0,0,0,0,294,0,0,0,700,77777,0,999999999,26,0,0,88,0.2,0,0 +2008,11,28,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,11,68,98546,0,0,328,0,0,0,0,0,0,0,102,0,0,0,600,77777,0,999999999,29,0,0,88,0.2,0,0 +2008,11,29,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,11,77,98527,0,0,319,0,0,0,0,0,0,0,272,0,0,0,400,77777,0,999999999,29,0,0,88,0.2,0,0 +2008,11,29,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,11,77,98527,0,0,319,0,0,0,0,0,0,0,78,0,0,0,400,77777,0,999999999,29,0,0,88,0.2,0,0 +2008,11,29,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,11,82,98517,0,0,315,0,0,0,0,0,0,0,143,0,0,0,350,77777,0,999999999,29,0,0,88,0.2,0,0 +2008,11,29,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,10,82,98507,0,0,310,0,0,0,0,0,0,0,245,0,0,0,350,77777,0,999999999,26,0,0,88,0.2,0,0 +2008,11,29,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,10,88,98498,0,0,305,0,0,0,0,0,0,0,288,0,0,0,400,77777,0,999999999,26,0,0,88,0.2,0,0 +2008,11,29,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,9,82,98498,0,0,304,0,0,0,0,0,0,0,69,0,0,0,400,77777,0,999999999,24,0,0,88,0.2,0,0 +2008,11,29,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,11,9,87,98488,0,0,300,0,0,0,0,0,0,0,122,0,0,0,400,77777,0,999999999,24,0,0,88,0.2,0,0 +2008,11,29,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,10,94,98488,154,739,301,52,89,42,5671,0,4624,1326,230,2.1,0,0,350,77777,0,999999999,26,0,0,88,0.2,0,0 +2008,11,29,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,10,82,98507,420,1406,310,236,497,88,26770,22341,9970,3373,240,1.5,0,0,400,77777,0,999999999,26,0,0,88,0.2,0,0 +2008,11,29,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,12,77,98536,641,1406,325,420,733,86,50032,38616,10237,3918,230,1.5,0,0,600,77777,0,999999999,32,0,0,88,0.2,0,0 +2008,11,29,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,11,53,98583,802,1406,347,563,824,93,68538,46939,11344,4556,230,1.5,0,0,1100,77777,0,999999999,28,0,0,88,0.2,0,0 +2008,11,29,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,11,50,98592,891,1406,352,643,857,100,78990,50012,12302,5041,250,2.1,0,0,1200,77777,0,999999999,28,0,0,88,0.2,0,0 +2008,11,29,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,11,41,98619,903,1406,366,654,861,101,80441,50386,12444,5112,230,1.5,0,0,1800,77777,0,999999999,28,0,0,88,0.2,0,0 +2008,11,29,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,11,41,98619,837,1406,366,595,839,95,72733,48266,11685,4734,250,2.6,0,0,2200,77777,0,999999999,28,0,0,88,0.2,0,0 +2008,11,29,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,9,34,98628,698,1406,369,473,769,91,56722,43515,10915,4244,250,3.1,0,0,2800,77777,0,999999999,23,0,0,88,0.2,0,0 +2008,11,29,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,8,34,98619,494,1406,362,298,592,90,34364,30029,10372,3677,270,3.6,0,0,2800,77777,0,999999999,21,0,0,88,0.2,0,0 +2008,11,29,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,9,41,98601,241,1406,354,104,269,58,11554,4526,6478,1979,260,2.6,0,0,2600,77777,0,999999999,23,0,0,88,0.2,0,0 +2008,11,29,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,10,46,98592,0,1179,350,0,0,0,0,0,0,0,270,1.5,0,0,2300,77777,0,999999999,26,0,0,88,0.2,0,0 +2008,11,29,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,10,49,98583,0,0,346,0,0,0,0,0,0,0,260,1.5,0,0,1600,77777,0,999999999,26,0,0,88,0.2,0,0 +2008,11,29,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,10,53,98574,0,0,341,0,0,0,0,0,0,0,250,1.5,0,0,1000,77777,0,999999999,26,0,0,88,0.2,0,0 +2008,11,29,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,10,53,98574,0,0,341,0,0,0,0,0,0,0,270,2.1,0,0,1000,77777,0,999999999,26,0,0,88,0.2,0,0 +2008,11,29,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,10,59,98555,0,0,332,0,0,0,0,0,0,0,280,0,0,0,1000,77777,0,999999999,26,0,0,88,0.2,0,0 +2008,11,29,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,10,63,98546,0,0,327,0,0,0,0,0,0,0,182,0,0,0,800,77777,0,999999999,26,0,0,88,0.2,0,0 +2008,11,29,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,10,68,98536,0,0,323,0,0,0,0,0,0,0,222,0,0,0,800,77777,0,999999999,26,0,0,88,0.2,0,0 +2008,11,30,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,8,63,98527,0,0,316,0,0,0,0,0,0,0,253,0,0,0,800,77777,0,999999999,21,0,0,88,0.2,0,0 +2008,11,30,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,9,72,98517,0,0,313,0,0,0,0,0,0,0,212,0,0,0,800,77777,0,999999999,23,0,0,88,0.2,0,0 +2008,11,30,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,9,72,98517,0,0,313,0,0,0,0,0,0,0,252,0,0,0,800,77777,0,999999999,23,0,0,88,0.2,0,0 +2008,11,30,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,10,82,98507,0,0,310,0,0,0,0,0,0,0,69,1.5,0,0,700,77777,0,999999999,26,0,0,88,0.2,0,0 +2008,11,30,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,9,82,98498,0,0,304,0,0,0,0,0,0,0,240,2.1,0,0,600,77777,0,999999999,24,0,0,88,0.2,0,0 +2008,11,30,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,9,87,98488,0,0,300,0,0,0,0,0,0,0,240,1.5,0,0,600,77777,0,999999999,24,0,0,88,0.2,0,0 +2008,11,30,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,8,87,98478,0,0,295,0,0,0,0,0,0,0,230,2.1,0,0,500,77777,0,999999999,21,0,0,88,0.2,0,0 +2008,11,30,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,7,82,98478,150,721,294,50,139,35,5542,0,3905,1164,240,1.5,0,0,500,77777,0,999999999,19,0,0,88,0.2,0,0 +2008,11,30,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,7,67,98507,416,1406,307,234,500,86,26595,22949,9815,3315,240,3.1,0,0,700,77777,0,999999999,19,0,0,88,0.2,0,0 +2008,11,30,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,7,59,98527,637,1406,315,420,730,89,49982,41003,10665,4053,240,3.1,0,0,1200,77777,0,999999999,19,0,0,88,0.2,0,0 +2008,11,30,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,8,46,98574,798,1406,339,562,827,93,68549,48522,11334,4541,260,3.1,0,0,1600,77777,0,999999999,21,0,0,88,0.2,0,0 +2008,11,30,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,8,41,98592,888,1406,348,643,784,148,76768,52248,17733,7086,260,4.1,0,0,1600,77777,0,999999999,21,0,0,88,0.2,0,0 +2008,11,30,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,7,34,98610,900,1406,356,656,786,153,78274,53167,18293,7315,290,4.6,0,0,2200,77777,0,999999999,19,0,0,88,0.2,0,0 +2008,11,30,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,7,32,98619,835,1406,361,597,846,94,73114,50448,11599,4689,300,5.1,0,0,2600,77777,0,999999999,19,0,0,88,0.2,0,0 +2008,11,30,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,7,30,98628,696,1406,366,473,768,92,56665,44430,11091,4302,280,6.2,0,0,3500,77777,0,999999999,19,0,0,88,0.2,0,0 +2008,11,30,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,7,30,98628,493,1406,366,297,594,89,34315,30280,10281,3644,280,6.2,0,0,3500,77777,0,999999999,19,0,0,88,0.2,0,0 +2008,11,30,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,7,32,98619,240,1406,361,104,270,58,11535,4747,6447,1968,270,4.1,0,0,3500,77777,0,999999999,19,0,0,88,0.2,0,0 +2008,11,30,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,8,38,98601,0,1177,368,0,0,0,0,0,0,0,260,3.1,3,3,3500,77777,0,999999999,21,0,0,88,0.2,0,0 +2008,11,30,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19.5,8.5,49,98569,0,0,358,0,0,0,0,0,0,0,229,0.4,3,3,3200,77777,0,999999999,22,0,0,88,0.2,0,0 +2008,11,30,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18.8,8.8,52,98562,0,0,355,0,0,0,0,0,0,0,232,0,3,3,2500,77777,0,999999999,23,0,0,88,0.2,0,0 +2008,11,30,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,8.2,53,98555,0,0,334,0,0,0,0,0,0,0,255,0.2,0,0,2000,77777,0,999999999,22,0,0,88,0.2,0,0 +2008,11,30,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16.8,8.2,57,98543,0,0,331,0,0,0,0,0,0,0,270,0.2,0,0,1600,77777,0,999999999,22,0,0,88,0.2,0,0 +2008,11,30,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15.5,7.8,60,98531,0,0,331,0,0,0,0,0,0,0,246,0.2,0,0,1500,77777,0,999999999,21,0,0,88,0.2,0,0 +2008,11,30,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,7.5,65,98517,0,0,324,0,0,0,0,0,0,0,188,0.2,0,0,1500,77777,0,999999999,20,0,0,88,0.2,0,0 +2013,12,1,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12.8,7.8,72,98505,0,0,312,0,0,0,0,0,0,0,201,0,0,0,2200,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,1,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,7.8,75,98498,0,0,307,0,0,0,0,0,0,0,194,0,0,0,2200,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,1,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11.5,7.8,78,98493,0,0,303,0,0,0,0,0,0,0,194,0,0,0,2200,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,1,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,7.5,79,98488,0,0,303,0,0,0,0,0,0,0,191,0,0,0,2200,77777,9,999999999,20,0,0,88,0.2,0,0 +2013,12,1,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10.5,7.2,80,98483,0,0,299,0,0,0,0,0,0,0,128,0,0,0,2000,77777,9,999999999,20,0,0,88,0.2,0,0 +2013,12,1,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,11.5,7,74,98493,0,0,322,0,0,0,0,0,0,0,115,0,7,7,1700,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,12,1,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,10,7,82,98478,0,0,323,0,0,0,0,0,0,0,26,0,8,8,1700,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,12,1,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,7,82,98478,142,684,294,46,76,38,5064,0,4229,1212,58,0,0,0,1500,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,12,1,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,15,7,59,98526,408,1407,331,222,455,90,25076,21143,10192,3393,216,0,4,4,1800,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,12,1,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,20,7,43,98574,629,1407,338,414,693,104,48630,40747,12263,4585,79,0,0,0,2100,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,12,1,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,6,33,98601,791,1407,350,559,832,91,68170,49291,11090,4434,290,1.5,0,0,2500,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,12,1,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,6,31,98610,881,1407,355,640,784,149,76344,53116,17835,7102,290,1.5,0,0,2800,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,12,1,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,6,28,98628,895,1407,365,653,786,153,77828,53565,18299,7300,290,2.1,0,0,3000,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,12,1,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,6,28,98628,830,1407,365,594,850,92,72899,50826,11363,4589,260,2.6,0,0,3000,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,12,1,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,5,24,98637,693,1407,369,472,772,92,56593,45219,11042,4275,300,2.6,0,0,4000,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,12,1,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,4,23,98637,491,1407,367,297,592,91,34294,31171,10516,3706,330,2.6,0,0,4000,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,12,1,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,4,24,98628,238,1407,362,104,277,57,11562,5060,6373,1945,310,2.6,0,0,4000,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,12,1,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,24,6,31,98610,0,1173,355,0,0,0,0,0,0,0,164,0,0,0,3500,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,12,1,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,7,40,98583,0,0,342,0,0,0,0,0,0,0,244,0,0,0,3200,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,12,1,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,9,56,98555,0,0,331,0,0,0,0,0,0,0,154,0,0,0,1800,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,12,1,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,10,59,98555,0,0,332,0,0,0,0,0,0,0,120,2.1,0,0,1600,77777,9,999999999,26,0,0,88,0.2,0,0 +2013,12,1,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,9,56,98555,0,0,331,0,0,0,0,0,0,0,113,0,0,0,1500,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,12,1,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,8,55,98546,0,0,325,0,0,0,0,0,0,0,110,1.5,0,0,1400,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,1,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,8,55,98546,0,0,325,0,0,0,0,0,0,0,120,2.1,0,0,1700,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,2,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,8,59,98536,0,0,321,0,0,0,0,0,0,0,120,1.5,0,0,1800,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,2,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,9,63,98536,0,0,322,0,0,0,0,0,0,0,130,2.1,0,0,1800,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,12,2,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,8,59,98536,0,0,321,0,0,0,0,0,0,0,150,2.1,0,0,2000,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,2,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,7,55,98536,0,0,320,0,0,0,0,0,0,0,100,2.1,0,0,2200,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,12,2,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,7,59,98527,0,0,315,0,0,0,0,0,0,0,110,2.1,0,0,2500,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,12,2,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,7,63,98517,0,0,311,0,0,0,0,0,0,0,110,1.5,0,0,2500,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,12,2,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,9,72,98517,0,0,313,0,0,0,0,0,0,0,169,0,0,0,2200,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,12,2,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15,7,59,98527,138,666,315,44,119,33,4920,0,3636,1078,90,2.1,0,0,1600,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,12,2,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,8,55,98546,404,1408,325,226,492,84,25572,21641,9574,3217,120,4.1,0,0,1400,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,2,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,8,49,98564,626,1408,334,411,728,87,48815,39973,10395,3940,120,3.6,0,0,1600,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,2,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,9,46,98583,787,1408,345,553,825,91,67313,47668,11150,4457,110,3.1,0,0,2200,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,12,2,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,9,38,98610,878,1408,359,635,861,97,78012,50932,11979,4893,120,2.1,0,0,2200,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,12,2,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,7,30,98628,892,1408,366,650,786,151,77444,53045,18114,7230,190,3.1,0,0,2800,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,12,2,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,5,24,98637,828,1408,369,594,854,91,72932,51229,11165,4507,210,2.6,0,0,3500,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,12,2,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,27,4,23,98637,691,1408,367,472,773,92,56576,45589,11018,4262,200,2.1,0,0,3500,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,12,2,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,26,4,24,98628,489,1408,362,297,593,90,34242,31138,10459,3686,162,1,0,0,4000,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,12,2,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,6,30,98619,238,1408,360,104,275,57,11503,4769,6359,1941,140,1.5,0,0,5000,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,12,2,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,8,41,98592,0,1173,348,0,0,0,0,0,0,0,130,2.1,0,0,3200,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,2,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,8,46,98574,0,0,339,0,0,0,0,0,0,0,130,2.1,0,0,2200,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,2,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,17,8,55,98546,0,0,339,0,0,0,0,0,0,0,162,0,3,3,1500,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,2,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,16,8,59,98536,0,0,337,0,0,0,0,0,0,0,118,0,4,4,1200,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,2,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,7,55,98536,0,0,333,0,0,0,0,0,0,0,90,2.1,3,3,1300,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,12,2,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,8,63,98527,0,0,335,0,0,0,0,0,0,0,130,1.5,5,5,1200,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,2,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,7,59,98527,0,0,331,0,0,0,0,0,0,0,90,2.1,4,4,1400,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,12,3,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,6,59,98517,0,0,326,0,0,0,0,0,0,0,100,2.1,4,4,1800,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,12,3,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,6,59,98517,0,0,310,0,0,0,0,0,0,0,100,1.5,0,0,2100,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,12,3,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,7,63,98517,0,0,311,0,0,0,0,0,0,0,100,1.5,0,0,2100,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,12,3,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,6,59,98517,0,0,310,0,0,0,0,0,0,0,120,2.1,0,0,2800,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,12,3,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,6,62,98507,0,0,305,0,0,0,0,0,0,0,100,2.1,0,0,3000,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,12,3,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,6,71,98488,0,0,297,0,0,0,0,0,0,0,90,2.1,0,0,2700,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,12,3,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,6,67,98498,0,0,301,0,0,0,0,0,0,0,90,2.1,0,0,2200,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,12,3,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,7,71,98498,135,649,302,42,109,32,4701,0,3552,1051,100,2.1,0,0,1900,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,12,3,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,7,55,98536,401,1408,333,219,468,86,24823,20990,9779,3261,80,1,3,3,1600,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,12,3,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,8,43,98583,622,1408,343,408,691,102,47820,39891,12009,4485,160,2.6,0,0,2300,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,3,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,7,36,98601,784,1408,352,552,814,98,66840,48731,11915,4740,150,3.6,0,0,2700,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,12,3,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,7,34,98610,875,1408,356,634,784,147,75587,52491,17537,6982,150,4.1,0,0,2900,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,12,3,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,6,30,98619,890,1408,360,648,785,152,77283,53453,18150,7234,150,4.1,0,0,3000,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,12,3,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,6,28,98628,826,1408,365,591,850,92,72460,50724,11305,4561,150,3.1,0,0,3000,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,12,3,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,5,26,98628,690,1408,364,469,772,91,56306,45105,10977,4246,150,1.5,0,0,3200,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,12,3,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,26,5,26,98628,489,1408,364,296,594,89,34112,30749,10325,3644,130,1.5,0,0,3200,77777,9,999999999,15,0,0,88,0.2,0,0 +2013,12,3,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,4,26,98619,237,1408,358,104,278,57,11521,4991,6339,1934,130,1.5,0,0,3200,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,12,3,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,8,43,98583,0,1173,343,0,0,0,0,0,0,0,136,0,0,0,2000,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,3,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,20,8,46,98574,0,0,339,0,0,0,0,0,0,0,153,0,0,0,1800,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,3,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,8,49,98564,0,0,334,0,0,0,0,0,0,0,129,0,0,0,1800,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,3,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,8,55,98546,0,0,325,0,0,0,0,0,0,0,90,1.5,0,0,1500,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,3,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,8,55,98546,0,0,325,0,0,0,0,0,0,0,80,1.5,0,0,1500,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,3,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,8,59,98536,0,0,321,0,0,0,0,0,0,0,249,0,0,0,1500,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,3,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,7,55,98536,0,0,320,0,0,0,0,0,0,0,249,0,0,0,1200,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,12,4,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,8,63,98527,0,0,316,0,0,0,0,0,0,0,108,0,0,0,1100,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,4,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14.5,8.5,67,98522,0,0,333,0,0,0,0,0,0,0,43,0,5,5,1100,77777,9,999999999,22,0,0,88,0.2,0,0 +2013,12,4,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,9,72,98517,0,0,313,0,0,0,0,0,0,0,153,0,0,0,1100,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,12,4,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,9,77,98507,0,0,309,0,0,0,0,0,0,0,0,0,0,0,1200,77777,9,999999999,24,0,0,88,0.2,0,0 +2013,12,4,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,10,82,98507,0,0,310,0,0,0,0,0,0,0,100,0,0,0,1000,77777,9,999999999,26,0,0,88,0.2,0,0 +2013,12,4,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,10,88,98498,0,0,305,0,0,0,0,0,0,0,209,0,0,0,900,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,4,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,10,88,98498,0,0,305,0,0,0,0,0,0,0,240,0,0,0,700,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,4,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,10,88,98498,131,631,305,41,100,31,4482,0,3463,1024,141,0,0,0,600,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,4,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,11,82,98517,397,1409,315,219,456,90,24572,19847,10158,3353,251,0,0,0,700,77777,0,999999999,29,0,0,88,0.2,0,0 +2013,12,4,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,11,60,98564,619,1409,338,403,690,100,47226,38227,11715,4385,290,2.6,0,0,1000,77777,0,999999999,28,0,0,88,0.2,0,0 +2013,12,4,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,10,53,98574,781,1409,341,546,812,96,66171,46976,11613,4626,290,3.6,0,0,1200,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,4,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,9,43,98592,872,1409,349,630,860,97,77353,50784,11897,4853,280,2.6,0,0,2000,77777,0,999999999,23,0,0,88,0.2,0,0 +2013,12,4,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,8,36,98610,887,1409,358,644,785,149,76805,52428,17844,7123,300,3.6,0,0,2600,77777,0,999999999,21,0,0,88,0.2,0,0 +2013,12,4,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,7,34,98610,825,1409,356,589,846,93,72061,50218,11402,4598,320,4.6,0,0,3200,77777,0,999999999,19,0,0,88,0.2,0,0 +2013,12,4,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,7,34,98610,688,1409,356,467,770,90,55995,44184,10873,4209,320,4.6,0,0,3200,77777,0,999999999,19,0,0,88,0.2,0,0 +2013,12,4,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,6,30,98619,488,1409,360,295,598,88,34052,30405,10144,3588,310,4.6,0,0,3500,77777,0,999999999,17,0,0,88,0.2,0,0 +2013,12,4,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,5,29,98610,237,1409,354,104,278,57,11508,4861,6326,1931,320,4.1,0,0,3500,77777,0,999999999,15,0,0,88,0.2,0,0 +2013,12,4,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,8,41,98592,0,1173,348,0,0,0,0,0,0,0,290,2.6,0,0,3500,77777,0,999999999,21,0,0,88,0.2,0,0 +2013,12,4,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,8,52,98555,0,0,330,0,0,0,0,0,0,0,260,1.5,0,0,2500,77777,0,999999999,21,0,0,88,0.2,0,0 +2013,12,4,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,8,55,98546,0,0,325,0,0,0,0,0,0,0,260,1.5,0,0,2300,77777,0,999999999,21,0,0,88,0.2,0,0 +2013,12,4,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,8,59,98536,0,0,321,0,0,0,0,0,0,0,250,1.5,0,0,2100,77777,0,999999999,21,0,0,88,0.2,0,0 +2013,12,4,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,9,67,98527,0,0,317,0,0,0,0,0,0,0,250,1.5,0,0,2100,77777,0,999999999,23,0,0,88,0.2,0,0 +2013,12,4,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,9,67,98527,0,0,317,0,0,0,0,0,0,0,240,1.5,0,0,2100,77777,0,999999999,23,0,0,88,0.2,0,0 +2013,12,4,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,9,72,98517,0,0,313,0,0,0,0,0,0,0,240,2.1,0,0,2200,77777,0,999999999,23,0,0,88,0.2,0,0 +2013,12,5,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,8,72,98507,0,0,308,0,0,0,0,0,0,0,230,1.5,0,0,2200,77777,0,999999999,21,0,0,88,0.2,0,0 +2013,12,5,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,9,82,98498,0,0,304,0,0,0,0,0,0,0,230,1.5,0,0,2100,77777,0,999999999,24,0,0,88,0.2,0,0 +2013,12,5,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,8,76,98498,0,0,303,0,0,0,0,0,0,0,230,2.1,0,0,2100,77777,0,999999999,21,0,0,88,0.2,0,0 +2013,12,5,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,8,76,98498,0,0,303,0,0,0,0,0,0,0,277,0,0,0,2000,77777,0,999999999,21,0,0,88,0.2,0,0 +2013,12,5,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,11,8,82,98488,0,0,329,0,0,0,0,0,0,0,250,2.6,8,8,1800,77777,0,999999999,21,0,0,88,0.2,0,0 +2013,12,5,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,10,8,87,98478,0,0,331,0,0,0,0,0,0,0,260,2.1,9,9,1800,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,5,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,10,8,87,98478,0,0,331,0,0,0,0,0,0,0,250,2.6,9,9,1800,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,5,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10,8,87,98478,127,614,295,39,94,30,4312,0,3379,996,250,2.6,0,0,1700,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,5,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,8,76,98498,393,1409,303,217,483,82,24611,20605,9351,3125,260,2.6,0,0,1700,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,5,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,9,67,98527,615,1409,317,401,722,86,47632,38888,10215,3861,250,3.1,0,0,1600,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,12,5,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,10,53,98574,778,1409,341,544,821,90,66120,46769,10995,4386,300,4.6,0,0,1800,77777,9,999999999,26,0,0,88,0.2,0,0 +2013,12,5,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,10,49,98583,870,1409,346,626,858,96,76878,50138,11879,4845,300,4.6,0,0,1900,77777,9,999999999,26,0,0,88,0.2,0,0 +2013,12,5,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,10,46,98592,885,1409,350,640,863,98,78702,50628,12048,4930,310,5.1,0,0,2400,77777,9,999999999,26,0,0,88,0.2,0,0 +2013,12,5,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,9,38,98610,823,1409,359,585,843,93,71583,49123,11386,4593,310,4.6,0,0,2800,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,12,5,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,7,32,98619,687,1409,361,466,771,90,55925,44166,10824,4189,300,5.1,0,0,3000,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,12,5,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,7,32,98619,487,1409,361,294,601,86,34001,30051,9981,3538,300,4.1,0,0,3500,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,12,5,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,7,34,98610,237,1409,356,103,278,57,11480,4591,6321,1930,290,3.6,0,0,3500,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,12,5,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,7,38,98592,0,1174,347,0,0,0,0,0,0,0,270,3.1,0,0,3200,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,12,5,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,10,59,98555,0,0,332,0,0,0,0,0,0,0,260,2.6,0,0,2500,77777,9,999999999,26,0,0,88,0.2,0,0 +2013,12,5,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,10,63,98546,0,0,327,0,0,0,0,0,0,0,270,2.1,0,0,2200,77777,9,999999999,26,0,0,88,0.2,0,0 +2013,12,5,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,9,63,98536,0,0,322,0,0,0,0,0,0,0,250,2.1,0,0,2000,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,12,5,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,9,63,98536,0,0,322,0,0,0,0,0,0,0,270,2.1,0,0,2000,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,12,5,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,8,59,98536,0,0,321,0,0,0,0,0,0,0,280,2.1,0,0,2000,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,5,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,8,63,98527,0,0,316,0,0,0,0,0,0,0,280,2.1,0,0,1800,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,6,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,8,67,98517,0,0,312,0,0,0,0,0,0,0,220,1.5,0,0,1600,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,6,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,8,72,98507,0,0,308,0,0,0,0,0,0,0,220,2.1,0,0,1600,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,6,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,8,76,98498,0,0,303,0,0,0,0,0,0,0,220,2.1,0,0,1500,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,6,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,8,76,98498,0,0,303,0,0,0,0,0,0,0,290,0,0,0,1400,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,6,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,8,76,98498,0,0,303,0,0,0,0,0,0,0,222,0,0,0,1400,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,6,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,8,82,98488,0,0,299,0,0,0,0,0,0,0,183,0,0,0,1400,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,6,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,7,82,98478,0,0,294,0,0,0,0,0,0,0,273,0,0,0,1700,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,12,6,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,8,82,98488,124,596,299,37,87,30,4130,0,3294,970,164,0,0,0,1700,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,6,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,8,72,98507,390,1409,308,215,482,82,24325,20294,9265,3092,260,2.1,0,0,2000,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,6,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,8,63,98527,612,1409,316,400,722,86,47400,39191,10204,3850,240,3.1,0,0,2500,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,6,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,8,52,98555,775,1409,330,543,824,90,66086,47784,10972,4370,290,3.1,0,0,2500,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,6,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,9,49,98574,867,1409,340,625,860,96,76798,50669,11792,4805,290,2.6,0,0,2500,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,12,6,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,9,43,98592,883,1409,349,640,785,147,76241,51825,17623,7035,300,3.6,0,0,2500,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,12,6,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,8,38,98601,821,1409,353,585,845,92,71605,49646,11336,4569,280,3.1,0,0,3000,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,6,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,8,36,98610,686,1409,358,465,772,89,55781,43656,10683,4138,270,4.1,0,0,3000,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,6,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,8,36,98610,487,1409,358,294,600,86,33909,29690,10002,3544,260,3.6,0,0,3000,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,6,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,8,38,98601,237,1409,353,104,278,57,11486,4459,6313,1929,280,2.6,0,0,3000,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,6,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,8,46,98574,0,1176,339,0,0,0,0,0,0,0,280,1,0,0,2600,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,6,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,9,59,98546,0,0,326,0,0,0,0,0,0,0,14,0,0,0,2000,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,12,6,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,10,72,98527,0,0,318,0,0,0,0,0,0,0,81,0,0,0,1200,77777,9,999999999,26,0,0,88,0.2,0,0 +2013,12,6,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,9,67,98527,0,0,317,0,0,0,0,0,0,0,51,0,0,0,1000,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,12,6,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,9,72,98517,0,0,313,0,0,0,0,0,0,0,264,0,0,0,800,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,12,6,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,9,77,98507,0,0,309,0,0,0,0,0,0,0,13,0,0,0,700,77777,9,999999999,24,0,0,88,0.2,0,0 +2013,12,6,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,9,77,98507,0,0,309,0,0,0,0,0,0,0,247,0,0,0,700,77777,9,999999999,24,0,0,88,0.2,0,0 +2013,12,7,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,9,82,98498,0,0,304,0,0,0,0,0,0,0,70,0,0,0,700,77777,9,999999999,24,0,0,88,0.2,0,0 +2013,12,7,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,9,82,98498,0,0,304,0,0,0,0,0,0,0,231,0,0,0,700,77777,9,999999999,24,0,0,88,0.2,0,0 +2013,12,7,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,9,87,98488,0,0,300,0,0,0,0,0,0,0,269,0,0,0,700,77777,9,999999999,24,0,0,88,0.2,0,0 +2013,12,7,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,9,93,98478,0,0,296,0,0,0,0,0,0,0,263,0,0,0,700,77777,9,999999999,24,0,0,88,0.2,0,0 +2013,12,7,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,8,87,98478,0,0,295,0,0,0,0,0,0,0,181,0,0,0,700,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,7,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,9,93,98478,0,0,296,0,0,0,0,0,0,0,247,0,0,0,800,77777,9,999999999,24,0,0,88,0.2,0,0 +2013,12,7,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,8,87,98478,0,0,295,0,0,0,0,0,0,0,145,0,0,0,700,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,7,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,8,87,98478,120,579,295,36,84,29,3992,0,3206,943,108,0,0,0,700,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,7,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,10,88,98498,386,1410,305,211,489,77,23980,19274,8801,2959,284,0,0,0,1000,77777,9,999999999,26,0,0,88,0.2,0,0 +2013,12,7,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,9,63,98536,608,1410,322,396,688,99,46415,38659,11602,4321,240,2.1,0,0,1400,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,12,7,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,9,49,98574,772,1410,340,540,821,90,65605,47130,10932,4352,230,3.1,0,0,1700,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,12,7,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,9,46,98583,865,1410,345,623,859,95,76501,50597,11763,4791,260,2.6,0,0,1900,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,12,7,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,9,43,98592,881,1410,349,638,785,147,76020,51769,17554,7005,290,1.5,0,0,2000,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,12,7,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,9,38,98610,820,1410,359,583,843,92,71275,49053,11329,4567,320,2.1,0,0,2400,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,12,7,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,8,36,98610,685,1410,358,464,771,89,55680,43614,10676,4134,320,1.5,0,0,2600,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,7,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,8,34,98619,487,1410,362,293,599,86,33876,29663,9993,3541,310,1.5,0,0,2400,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,7,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,24,8,36,98610,237,1410,358,104,279,57,11495,4469,6315,1930,43,0,0,0,2200,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,7,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,22,8,41,98592,0,1179,348,0,0,0,0,0,0,0,18,0,0,0,2000,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,7,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,20,9,49,98574,0,0,351,0,0,0,0,0,0,0,143,0,2,2,1700,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,12,7,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,18,9,56,98555,0,0,345,0,0,0,0,0,0,0,252,0,3,3,1300,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,12,7,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,16,10,68,98536,0,0,323,0,0,0,0,0,0,0,152,0,0,0,1000,77777,9,999999999,26,0,0,88,0.2,0,0 +2013,12,7,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,11,77,98527,0,0,319,0,0,0,0,0,0,0,110,0,0,0,900,77777,9,999999999,29,0,0,88,0.2,0,0 +2013,12,7,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,11,77,98527,0,0,319,0,0,0,0,0,0,0,281,0,0,0,700,77777,9,999999999,29,0,0,88,0.2,0,0 +2013,12,7,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,11,88,98507,0,0,311,0,0,0,0,0,0,0,303,0,0,0,700,77777,9,999999999,29,0,0,88,0.2,0,0 +2013,12,8,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,11,88,98507,0,0,311,0,0,0,0,0,0,0,25,0,0,0,600,77777,9,999999999,29,0,0,88,0.2,0,0 +2013,12,8,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,10,88,98498,0,0,305,0,0,0,0,0,0,0,23,0,0,0,500,77777,9,999999999,26,0,0,88,0.2,0,0 +2013,12,8,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,10,88,98498,0,0,305,0,0,0,0,0,0,0,90,1.5,0,0,400,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,8,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,10,88,98498,0,0,305,0,0,0,0,0,0,0,251,0,0,0,400,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,8,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,10,88,98498,0,0,305,0,0,0,0,0,0,0,86,0,0,0,500,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,8,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,10,88,98498,0,0,305,0,0,0,0,0,0,0,251,0,0,0,400,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,8,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,12,10,88,98498,0,0,343,0,0,0,0,0,0,0,28,0,9,9,400,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,8,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,12,10,88,98498,116,563,343,20,0,20,1945,0,1958,713,121,0,9,9,400,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,8,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,13,88,98527,383,1410,322,208,506,70,23705,17715,8040,2740,13,0,0,0,450,77777,0,999999999,35,0,0,88,0.2,0,0 +2013,12,8,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,13,77,98546,605,1410,331,391,686,96,45758,36362,11301,4222,200,0,0,0,700,77777,0,999999999,35,0,0,88,0.2,0,0 +2013,12,8,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,10,46,98592,769,1410,350,536,812,94,64951,46580,11361,4513,130,2.1,0,0,1000,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,8,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,10,44,98601,862,1410,355,620,857,95,76089,49966,11734,4778,150,2.1,0,0,1200,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,8,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25,8,34,98619,879,1410,362,638,785,148,75966,52297,17662,7036,79,0,0,0,1700,77777,0,999999999,21,0,0,88,0.2,0,0 +2013,12,8,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,25,8,34,98619,819,1410,362,583,845,92,71338,49591,11278,4543,128,0,0,0,1700,77777,0,999999999,21,0,0,88,0.2,0,0 +2013,12,8,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,8,34,98619,685,1410,362,464,773,88,55658,43616,10627,4115,280,2.6,0,0,2000,77777,0,999999999,21,0,0,88,0.2,0,0 +2013,12,8,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,25,8,34,98619,486,1410,362,294,602,86,33909,29699,9952,3528,300,2.6,0,0,1700,77777,0,999999999,21,0,0,88,0.2,0,0 +2013,12,8,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,10,44,98601,237,1410,355,104,279,57,11493,4177,6318,1932,280,2.1,0,0,1500,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,8,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,10,46,98592,0,1182,350,0,0,0,0,0,0,0,260,1.5,0,0,1500,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,8,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,11,60,98564,0,0,338,0,0,0,0,0,0,0,73,0,0,0,1200,77777,0,999999999,28,0,0,88,0.2,0,0 +2013,12,8,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,13,77,98546,0,0,331,0,0,0,0,0,0,0,224,0,0,0,700,77777,0,999999999,35,0,0,88,0.2,0,0 +2013,12,8,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,11,77,98527,0,0,319,0,0,0,0,0,0,0,37,0,0,0,700,77777,0,999999999,29,0,0,88,0.2,0,0 +2013,12,8,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,12,82,98527,0,0,320,0,0,0,0,0,0,0,210,0,0,0,700,77777,0,999999999,32,0,0,88,0.2,0,0 +2013,12,8,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,11,77,98527,0,0,319,0,0,0,0,0,0,0,213,0,0,0,700,77777,0,999999999,29,0,0,88,0.2,0,0 +2013,12,8,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,11,82,98517,0,0,315,0,0,0,0,0,0,0,58,0,0,0,700,77777,0,999999999,29,0,0,88,0.2,0,0 +2013,12,9,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,11,88,98507,0,0,311,0,0,0,0,0,0,0,162,0,0,0,700,77777,0,999999999,29,0,0,88,0.2,0,0 +2013,12,9,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,11,94,98498,0,0,306,0,0,0,0,0,0,0,146,0,0,0,400,77777,0,999999999,29,0,0,88,0.2,0,0 +2013,12,9,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,11,94,98498,0,0,306,0,0,0,0,0,0,0,256,0,0,0,350,77777,0,999999999,29,0,0,88,0.2,0,0 +2013,12,9,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,11,94,98498,0,0,306,0,0,0,0,0,0,0,207,0,0,0,350,77777,0,999999999,29,0,0,88,0.2,0,0 +2013,12,9,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,10,94,98488,0,0,301,0,0,0,0,0,0,0,87,0,0,0,400,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,9,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,10,94,98488,0,0,301,0,0,0,0,0,0,0,135,0,0,0,400,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,9,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,10,94,98488,0,0,301,0,0,0,0,0,0,0,32,0,0,0,400,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,9,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,10,100,98478,113,546,297,34,86,27,3780,0,3029,890,249,0,0,0,350,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,9,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,12,100,98498,379,1411,307,206,507,69,23503,17808,7943,2703,334,0,0,0,500,77777,0,999999999,32,0,0,88,0.2,0,0 +2013,12,9,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,13,88,98527,602,1411,322,388,685,96,45469,36196,11235,4193,136,0,0,0,700,77777,0,999999999,35,0,0,88,0.2,0,0 +2013,12,9,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,12,60,98574,766,1411,343,532,813,91,64508,45199,11015,4382,290,1.5,0,0,900,77777,0,999999999,31,0,0,88,0.2,0,0 +2013,12,9,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,12,56,98583,860,1411,348,616,853,95,75486,48630,11720,4775,320,2.1,0,0,1000,77777,0,999999999,31,0,0,88,0.2,0,0 +2013,12,9,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,12,50,98601,878,1411,358,632,859,97,77537,49199,11934,4880,310,2.6,0,0,1300,77777,0,999999999,31,0,0,88,0.2,0,0 +2013,12,9,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,11,50,98592,818,1411,352,579,840,92,70753,47821,11248,4536,320,2.6,0,0,1700,77777,0,999999999,28,0,0,88,0.2,0,0 +2013,12,9,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,11,44,98610,684,1411,361,461,775,85,55413,41939,10239,3977,310,3.1,0,0,1600,77777,0,999999999,28,0,0,88,0.2,0,0 +2013,12,9,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,24,10,41,98610,486,1411,367,293,596,87,33748,28931,10056,3562,300,3.6,1,1,1800,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,9,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,9,43,98592,238,1411,349,104,283,57,11583,4405,6308,1930,310,3.6,0,0,2100,77777,0,999999999,23,0,0,88,0.2,0,0 +2013,12,9,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,9,46,98583,0,1185,345,0,0,0,0,0,0,0,280,2.1,0,0,2100,77777,0,999999999,23,0,0,88,0.2,0,0 +2013,12,9,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,18.5,9.5,56,98560,0,0,348,0,0,0,0,0,0,0,253,1,3,3,1650,77777,9,999999999,25,0,0,88,0.2,0,0 +2013,12,9,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,10,68,98536,0,0,323,0,0,0,0,0,0,0,305,0,0,0,1200,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,9,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,10,68,98536,0,0,323,0,0,0,0,0,0,0,47,0,0,0,1200,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,9,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,10,68,98536,0,0,323,0,0,0,0,0,0,0,36,0,0,0,1000,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,9,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,15,10,72,98527,0,0,340,0,0,0,0,0,0,0,8,0,6,6,850,77777,9,999999999,26,0,0,88,0.2,0,0 +2013,12,9,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,10,77,98517,0,0,314,0,0,0,0,0,0,0,212,0,0,0,700,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,10,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,10,82,98507,0,0,310,0,0,0,0,0,0,0,16,0,0,0,600,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,10,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,10,88,98498,0,0,305,0,0,0,0,0,0,0,28,0,0,0,600,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,10,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,9,87,98488,0,0,300,0,0,0,0,0,0,0,222,0,0,0,500,77777,0,999999999,24,0,0,88,0.2,0,0 +2013,12,10,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,9,87,98488,0,0,300,0,0,0,0,0,0,0,97,0,0,0,500,77777,0,999999999,24,0,0,88,0.2,0,0 +2013,12,10,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,9,87,98488,0,0,300,0,0,0,0,0,0,0,276,0,0,0,400,77777,0,999999999,24,0,0,88,0.2,0,0 +2013,12,10,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,9,87,98488,0,0,300,0,0,0,0,0,0,0,79,0,0,0,400,77777,0,999999999,24,0,0,88,0.2,0,0 +2013,12,10,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,9,93,98478,0,0,296,0,0,0,0,0,0,0,117,0,0,0,500,77777,0,999999999,24,0,0,88,0.2,0,0 +2013,12,10,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,9,93,98478,110,530,296,33,53,29,3661,0,3216,921,89,0,0,0,500,77777,0,999999999,24,0,0,88,0.2,0,0 +2013,12,10,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,10,94,98488,376,1411,301,204,484,75,23186,18379,8573,2870,173,0,0,0,600,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,10,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,11,82,98517,599,1411,315,387,716,83,45881,36961,9899,3727,167,0,0,0,900,77777,0,999999999,29,0,0,88,0.2,0,0 +2013,12,10,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,11,68,98546,763,1411,328,531,818,88,64509,45692,10728,4267,270,2.6,0,0,1200,77777,0,999999999,29,0,0,88,0.2,0,0 +2013,12,10,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,12,64,98564,858,1411,339,614,853,95,75270,48582,11672,4753,270,2.6,0,0,1300,77777,0,999999999,31,0,0,88,0.2,0,0 +2013,12,10,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,12,56,98583,876,1411,348,631,859,97,77384,49172,11892,4861,320,3.6,0,0,1500,77777,0,999999999,31,0,0,88,0.2,0,0 +2013,12,10,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,22,12,53,98592,817,1411,353,578,839,91,70523,47156,11194,4516,258,3.6,0,0,1500,77777,0,999999999,31,0,0,88,0.2,0,0 +2013,12,10,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23,9,41,98601,684,1411,354,463,775,87,55565,43104,10439,4046,300,3.6,0,0,1800,77777,0,999999999,23,0,0,88,0.2,0,0 +2013,12,10,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,8,36,98610,486,1411,358,294,606,85,34014,29805,9878,3504,310,4.1,0,0,2400,77777,0,999999999,21,0,0,88,0.2,0,0 +2013,12,10,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,8,38,98601,238,1411,353,105,288,57,11684,4640,6300,1929,300,3.6,0,0,2400,77777,0,999999999,21,0,0,88,0.2,0,0 +2013,12,10,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,10,49,98583,0,1190,346,0,0,0,0,0,0,0,300,1.5,0,0,2000,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,10,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,17,10,63,98546,0,0,347,0,0,0,0,0,0,0,89,0,5,5,1400,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,10,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,10,68,98536,0,0,323,0,0,0,0,0,0,0,134,0,0,0,1000,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,10,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,10,82,98507,0,0,310,0,0,0,0,0,0,0,35,0,0,0,700,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,10,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,11,82,98517,0,0,315,0,0,0,0,0,0,0,0,0,0,0,700,77777,0,999999999,29,0,0,88,0.2,0,0 +2013,12,10,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,11,88,98507,0,0,311,0,0,0,0,0,0,0,76,0,0,0,600,77777,0,999999999,29,0,0,88,0.2,0,0 +2013,12,10,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,11,94,98498,0,0,306,0,0,0,0,0,0,0,80,0,0,0,500,77777,0,999999999,29,0,0,88,0.2,0,0 +2013,12,11,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,10,88,98498,0,0,305,0,0,0,0,0,0,0,54,0,0,0,700,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,11,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,10,88,98498,0,0,305,0,0,0,0,0,0,0,60,0,0,0,700,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,11,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,9,87,98488,0,0,300,0,0,0,0,0,0,0,276,0,0,0,700,77777,0,999999999,24,0,0,88,0.2,0,0 +2013,12,11,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,10,100,98478,0,0,297,0,0,0,0,0,0,0,319,0,0,0,700,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,11,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,9,100,98468,0,0,292,0,0,0,0,0,0,0,250,2.6,0,0,700,77777,0,999999999,24,0,0,88,0.2,0,0 +2013,12,11,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,9,100,98468,0,0,292,0,0,0,0,0,0,0,240,1.5,0,0,600,77777,9,999999999,24,0,0,88,0.2,0,0 +2013,12,11,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,9,100,98468,0,0,292,0,0,0,0,0,0,0,250,1.5,0,0,700,77777,9,999999999,24,0,0,88,0.2,0,0 +2013,12,11,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,10,100,98478,106,514,297,32,52,28,3543,0,3123,895,240,2.1,0,0,700,77777,9,999999999,26,0,0,88,0.2,0,0 +2013,12,11,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,11,88,98507,373,1411,311,202,504,68,23013,17557,7813,2650,250,3.6,0,0,1000,77777,9,999999999,29,0,0,88,0.2,0,0 +2013,12,11,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,11,72,98536,596,1411,324,385,685,95,45077,36971,11219,4171,260,3.1,0,0,1300,77777,9,999999999,29,0,0,88,0.2,0,0 +2013,12,11,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,11,68,98546,761,1411,328,529,817,88,64212,45588,10706,4255,260,3.6,0,0,1400,77777,9,999999999,29,0,0,88,0.2,0,0 +2013,12,11,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,11,53,98583,856,1411,347,614,855,95,75222,49189,11630,4731,290,3.6,0,0,1600,77777,9,999999999,28,0,0,88,0.2,0,0 +2013,12,11,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,11,50,98592,874,1411,352,630,861,96,77407,49798,11845,4838,290,4.6,0,0,2000,77777,9,999999999,28,0,0,88,0.2,0,0 +2013,12,11,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,9,41,98601,816,1411,354,580,844,91,70899,48992,11204,4512,290,5.1,0,0,2500,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,12,11,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,9,41,98601,683,1411,354,463,775,87,55526,43092,10436,4044,280,4.1,0,0,2500,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,12,11,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,7,34,98610,487,1411,356,295,610,85,34131,30199,9810,3483,290,4.6,0,0,3000,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,12,11,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,8,38,98601,239,1411,353,106,289,57,11733,4700,6314,1934,270,2.6,0,0,3200,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,11,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,9,49,98574,0,1195,340,0,0,0,0,0,0,0,270,3.1,0,0,3200,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,12,11,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,9,56,98555,0,0,331,0,0,0,0,0,0,0,280,2.1,0,0,2500,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,12,11,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,9,59,98546,0,0,326,0,0,0,0,0,0,0,270,2.1,0,0,2500,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,12,11,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,8,55,98546,0,0,325,0,0,0,0,0,0,0,240,2.1,0,0,2200,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,11,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,8,55,98546,0,0,325,0,0,0,0,0,0,0,250,2.1,0,0,2200,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,11,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,8,59,98536,0,0,321,0,0,0,0,0,0,0,240,1.5,0,0,2200,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,11,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,8,63,98527,0,0,316,0,0,0,0,0,0,0,240,1.5,0,0,1700,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,12,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,8,67,98517,0,0,312,0,0,0,0,0,0,0,250,1.5,0,0,1600,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,12,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,13.7,8,69,98514,0,0,332,0,0,0,0,0,0,0,150,1.5,6,6,1566,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,12,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,13.3,8,70,98511,0,0,330,0,0,0,0,0,0,0,344,1.5,6,6,1533,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,12,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,8,72,98507,0,0,308,0,0,0,0,0,0,0,220,1.5,0,0,1500,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,12,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,9,82,98498,0,0,304,0,0,0,0,0,0,0,240,1.5,0,0,1500,77777,9,999999999,24,0,0,88,0.2,0,0 +2013,12,12,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,11.7,9,84,98494,0,0,333,0,0,0,0,0,0,0,153,1.7,8,8,1333,77777,9,999999999,24,0,0,88,0.2,0,0 +2013,12,12,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,11.3,9,86,98491,0,0,331,0,0,0,0,0,0,0,261,1.9,8,8,1166,77777,9,999999999,24,0,0,88,0.2,0,0 +2013,12,12,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11,9,87,98488,103,498,300,31,51,28,3441,0,3038,869,260,2.1,0,0,1000,77777,9,999999999,24,0,0,88,0.2,0,0 +2013,12,12,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,9,82,98498,370,1412,304,200,479,74,22663,18043,8461,2822,270,3.1,0,0,1000,77777,9,999999999,24,0,0,88,0.2,0,0 +2013,12,12,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,10,72,98527,593,1412,318,383,684,95,44866,37289,11215,4161,270,4.6,0,0,1400,77777,9,999999999,26,0,0,88,0.2,0,0 +2013,12,12,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,9,59,98546,758,1412,326,529,810,93,63936,46776,11288,4468,280,4.6,0,0,1900,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,12,12,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,8,46,98574,854,1412,339,615,861,94,75530,50897,11545,4689,280,5.7,0,0,2100,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,12,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,8,41,98592,873,1412,348,632,785,146,75317,52178,17503,6963,300,6.2,0,0,2400,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,12,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,9,41,98601,815,1412,354,579,844,91,70807,48970,11197,4508,290,7.2,0,0,3000,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,12,12,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,9,41,98601,683,1412,354,462,775,87,55503,43086,10435,4043,290,7.2,0,0,3200,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,12,12,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,8,38,98601,487,1412,353,295,606,85,34064,29855,9889,3509,290,6.7,0,0,3200,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,12,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,8,38,98601,240,1412,353,106,291,57,11791,4773,6330,1940,280,5.7,0,0,3500,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,12,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,8,43,98583,0,1200,343,0,0,0,0,0,0,0,280,4.1,0,0,3500,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,12,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,8,52,98555,0,0,330,0,0,0,0,0,0,0,270,3.6,0,0,3300,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,12,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,7,59,98527,0,0,315,0,0,0,0,0,0,0,270,4.1,0,0,3000,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,12,12,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,7,59,98527,0,0,315,0,0,0,0,0,0,0,300,4.6,0,0,3000,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,12,12,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,8,67,98517,0,0,312,0,0,0,0,0,0,0,290,4.1,0,0,3000,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,12,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,8,67,98517,0,0,312,0,0,0,0,0,0,0,280,3.6,0,0,3000,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,12,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,7,71,98498,0,0,302,0,0,0,0,0,0,0,280,3.6,0,0,3000,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,12,13,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,8,76,98498,0,0,303,0,0,0,0,0,0,0,270,4.1,0,0,3000,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,13,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,7,71,98498,0,0,302,0,0,0,0,0,0,0,260,4.1,0,0,2800,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,12,13,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,7,71,98498,0,0,302,0,0,0,0,0,0,0,260,4.1,0,0,2800,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,12,13,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,8,76,98498,0,0,303,0,0,0,0,0,0,0,270,3.1,0,0,2600,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,13,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,8,82,98488,0,0,299,0,0,0,0,0,0,0,270,3.1,0,0,2600,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,13,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,8,87,98478,0,0,295,0,0,0,0,0,0,0,250,2.6,0,0,2600,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,13,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,8,87,98478,0,0,295,0,0,0,0,0,0,0,260,2.1,0,0,2800,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,13,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,8,87,98478,100,483,295,30,51,27,3340,0,2955,845,250,1.5,0,0,2500,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,13,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,8,82,98488,367,1412,299,198,477,74,22440,18024,8395,2795,260,2.6,0,0,1700,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,13,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,9,67,98527,590,1412,317,381,683,95,44670,37584,11196,4148,270,3.6,0,0,2200,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,12,13,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,9,63,98536,756,1412,322,526,818,88,63917,46567,10726,4252,270,4.6,0,0,2200,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,12,13,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,18.5,9.5,56,98560,852,1412,348,601,822,104,73101,49121,12737,5153,15,5.1,3,3,2600,77777,9,999999999,25,0,0,88,0.2,0,0 +2013,12,13,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,10,49,98583,872,1412,346,629,863,96,77286,50353,11787,4809,280,5.7,0,0,3000,77777,9,999999999,26,0,0,88,0.2,0,0 +2013,12,13,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,10,44,98601,814,1412,355,578,842,91,70572,48368,11189,4506,290,5.7,0,0,3200,77777,9,999999999,26,0,0,88,0.2,0,0 +2013,12,13,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,7,34,98610,683,1412,356,464,775,88,55654,44117,10645,4116,290,6.2,0,0,3200,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,12,13,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,8,36,98610,487,1412,358,295,607,85,34113,29901,9895,3511,290,6.2,0,0,3200,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,13,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,7,36,98601,240,1412,352,107,294,57,11887,5019,6343,1945,280,4.1,0,0,3200,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,12,13,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,8,43,98583,0,1206,343,0,0,0,0,0,0,0,260,2.6,0,0,2500,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,13,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,9,59,98546,0,0,326,0,0,0,0,0,0,0,220,1,0,0,2100,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,12,13,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,9,63,98536,0,0,322,0,0,0,0,0,0,0,230,1,0,0,2100,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,12,13,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,15,8,63,98527,0,0,335,0,0,0,0,0,0,0,57,0,5,5,1800,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,13,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14.3,8.3,67,98520,0,0,332,0,0,0,0,0,0,0,144,0,5,5,1600,77777,9,999999999,22,0,0,88,0.2,0,0 +2013,12,13,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,13.7,8.7,72,98514,0,0,333,0,0,0,0,0,0,0,253,0,6,6,1400,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,12,13,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,9,77,98507,0,0,309,0,0,0,0,0,0,0,8,0,0,0,1200,77777,9,999999999,24,0,0,88,0.2,0,0 +2013,12,14,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,9,82,98498,0,0,304,0,0,0,0,0,0,0,290,0,0,0,1000,77777,9,999999999,24,0,0,88,0.2,0,0 +2013,12,14,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,9,82,98498,0,0,304,0,0,0,0,0,0,0,39,0,0,0,1000,77777,9,999999999,24,0,0,88,0.2,0,0 +2013,12,14,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,9,87,98488,0,0,300,0,0,0,0,0,0,0,242,0,0,0,1000,77777,9,999999999,24,0,0,88,0.2,0,0 +2013,12,14,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,9,87,98488,0,0,300,0,0,0,0,0,0,0,31,0,0,0,900,77777,9,999999999,24,0,0,88,0.2,0,0 +2013,12,14,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,9,87,98488,0,0,300,0,0,0,0,0,0,0,265,0,0,0,700,77777,9,999999999,24,0,0,88,0.2,0,0 +2013,12,14,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,9,93,98478,0,0,296,0,0,0,0,0,0,0,54,0,0,0,700,77777,9,999999999,24,0,0,88,0.2,0,0 +2013,12,14,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,8,87,98478,0,0,295,0,0,0,0,0,0,0,43,0,0,0,1000,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,14,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,8,82,98488,97,468,299,29,49,26,3236,0,2873,821,120,0,0,0,1200,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,14,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,9,77,98507,364,1412,309,195,471,74,22114,17412,8380,2784,240,1.5,0,0,2000,77777,9,999999999,24,0,0,88,0.2,0,0 +2013,12,14,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,9,67,98527,588,1412,317,379,682,95,44388,37401,11158,4129,230,2.6,0,0,2200,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,12,14,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,9,52,98564,754,1412,335,525,808,93,63424,46587,11227,4438,220,2.1,0,0,2400,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,12,14,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,9,49,98574,850,1412,340,611,858,94,74932,50236,11537,4683,240,1.5,0,0,2400,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,12,14,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,10,46,98592,871,1412,350,628,863,96,77160,50327,11771,4802,240,1.5,0,0,2400,77777,9,999999999,26,0,0,88,0.2,0,0 +2013,12,14,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,9,41,98601,814,1412,354,578,844,91,70670,48940,11186,4502,320,1.5,0,0,2400,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,12,14,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,10,44,98601,683,1412,355,462,776,86,55428,42536,10319,4003,310,2.1,0,0,2400,77777,9,999999999,26,0,0,88,0.2,0,0 +2013,12,14,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,10,44,98601,488,1412,355,295,600,87,33970,29145,10048,3563,300,2.1,0,0,2400,77777,9,999999999,26,0,0,88,0.2,0,0 +2013,12,14,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,10,44,98601,242,1412,355,107,291,57,11882,4605,6383,1959,270,2.1,0,0,2500,77777,9,999999999,26,0,0,88,0.2,0,0 +2013,12,14,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,10,49,98583,0,1213,346,0,0,0,0,0,0,0,270,1.5,0,0,2500,77777,9,999999999,26,0,0,88,0.2,0,0 +2013,12,14,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,12,72,98546,0,0,329,0,0,0,0,0,0,0,77,0,0,0,1600,77777,9,999999999,32,0,0,88,0.2,0,0 +2013,12,14,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,10,77,98517,0,0,314,0,0,0,0,0,0,0,90,2.6,0,0,1100,77777,9,999999999,26,0,0,88,0.2,0,0 +2013,12,14,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,10,82,98507,0,0,310,0,0,0,0,0,0,0,90,2.6,0,0,1100,77777,9,999999999,26,0,0,88,0.2,0,0 +2013,12,14,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,10,77,98517,0,0,314,0,0,0,0,0,0,0,110,2.1,0,0,1000,77777,9,999999999,26,0,0,88,0.2,0,0 +2013,12,14,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,10,77,98517,0,0,314,0,0,0,0,0,0,0,100,3.1,0,0,1000,77777,9,999999999,26,0,0,88,0.2,0,0 +2013,12,14,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,10,77,98517,0,0,314,0,0,0,0,0,0,0,110,3.1,0,0,900,77777,9,999999999,26,0,0,88,0.2,0,0 +2013,12,15,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,9,67,98527,0,0,317,0,0,0,0,0,0,0,120,3.1,0,0,1100,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,12,15,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,10,77,98517,0,0,314,0,0,0,0,0,0,0,110,3.1,0,0,1200,77777,9,999999999,26,0,0,88,0.2,0,0 +2013,12,15,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,9,82,98498,0,0,304,0,0,0,0,0,0,0,90,3.1,0,0,1000,77777,9,999999999,24,0,0,88,0.2,0,0 +2013,12,15,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,9,82,98498,0,0,304,0,0,0,0,0,0,0,100,2.6,0,0,900,77777,9,999999999,24,0,0,88,0.2,0,0 +2013,12,15,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,10,88,98498,0,0,305,0,0,0,0,0,0,0,120,2.1,0,0,800,77777,9,999999999,26,0,0,88,0.2,0,0 +2013,12,15,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,11,88,98507,0,0,311,0,0,0,0,0,0,0,120,2.1,0,0,900,77777,9,999999999,29,0,0,88,0.2,0,0 +2013,12,15,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,11,94,98498,0,0,306,0,0,0,0,0,0,0,80,2.6,0,0,900,77777,9,999999999,29,0,0,88,0.2,0,0 +2013,12,15,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,11,94,98498,94,453,306,28,61,24,3126,0,2692,777,100,2.6,0,0,600,77777,9,999999999,29,0,0,88,0.2,0,0 +2013,12,15,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,12,94,98507,361,1412,312,192,486,68,21841,15959,7725,2600,100,2.6,0,0,600,77777,9,999999999,32,0,0,88,0.2,0,0 +2013,12,15,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,11,68,98546,585,1412,328,376,678,95,43924,36243,11093,4106,130,3.1,0,0,1100,77777,9,999999999,29,0,0,88,0.2,0,0 +2013,12,15,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,11,64,98555,752,1412,333,521,808,90,63002,45289,10956,4337,140,3.1,0,0,1200,77777,9,999999999,28,0,0,88,0.2,0,0 +2013,12,15,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,21,9,46,98583,849,1412,345,609,857,94,74751,50191,11519,4674,203,3.3,0,0,2100,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,12,15,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,22,10,46,98592,870,1412,350,627,863,95,77044,50302,11760,4796,296,3.4,0,0,1800,77777,9,999999999,26,0,0,88,0.2,0,0 +2013,12,15,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,11,47,98601,814,1412,356,576,840,91,70310,47729,11172,4500,140,3.6,0,0,1900,77777,9,999999999,28,0,0,88,0.2,0,0 +2013,12,15,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,9,38,98610,684,1412,359,463,776,87,55532,43115,10434,4043,170,3.1,0,0,2400,77777,9,999999999,23,0,0,88,0.2,0,0 +2013,12,15,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,10,44,98601,489,1412,355,295,601,87,34043,29211,10061,3568,110,2.6,0,0,2400,77777,9,999999999,26,0,0,88,0.2,0,0 +2013,12,15,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,10,44,98601,243,1412,355,108,293,58,11970,4712,6407,1968,130,2.1,0,0,2600,77777,9,999999999,26,0,0,88,0.2,0,0 +2013,12,15,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,10,49,98583,0,1221,346,0,0,0,0,0,0,0,110,1.5,0,0,1600,77777,9,999999999,26,0,0,88,0.2,0,0 +2013,12,15,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18,11,64,98555,0,0,353,0,0,0,0,0,0,0,110,1.5,5,5,1200,77777,9,999999999,28,0,0,88,0.2,0,0 +2013,12,15,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,17,11,68,98546,0,0,328,0,0,0,0,0,0,0,245,0,0,0,1000,77777,9,999999999,29,0,0,88,0.2,0,0 +2013,12,15,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,10,72,98527,0,0,318,0,0,0,0,0,0,0,310,0,0,0,900,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,15,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14.7,10.7,77,98523,0,0,344,0,0,0,0,0,0,0,150,0.5,7,7,733,77777,9,999999999,28,0,0,88,0.2,0,0 +2013,12,15,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14.3,11.3,82,98520,0,0,348,0,0,0,0,0,0,0,8,1,8,8,566,77777,9,999999999,30,0,0,88,0.2,0,0 +2013,12,15,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,12,88,98517,0,0,316,0,0,0,0,0,0,0,90,1.5,0,0,400,77777,0,999999999,32,0,0,88,0.2,0,0 +2013,12,16,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,12,94,98507,0,0,312,0,0,0,0,0,0,0,90,2.1,0,0,250,77777,0,999999999,32,0,0,88,0.2,0,0 +2013,12,16,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,11,94,98498,0,0,306,0,0,0,0,0,0,0,163,0,0,0,100,77777,0,999999999,29,0,0,88,0.2,0,0 +2013,12,16,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,11,94,98498,0,0,306,0,0,0,0,0,0,0,55,0,0,0,0,77777,0,999999999,29,0,0,88,0.2,0,0 +2013,12,16,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,11,94,98498,0,0,306,0,0,0,0,0,0,0,338,0,0,0,0,77777,0,999999999,29,0,0,88,0.2,0,0 +2013,12,16,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,10,88,98498,0,0,305,0,0,0,0,0,0,0,210,0,0,0,0,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,16,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,10,88,98498,0,0,305,0,0,0,0,0,0,0,21,0,0,0,0,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,16,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,10,88,98498,0,0,305,0,0,0,0,0,0,0,80,0,0,0,0,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,16,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,10,94,98488,91,439,301,28,61,24,3034,0,2610,753,183,0,0,0,0,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,16,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,10,94,98488,358,1413,301,191,462,73,21541,16501,8330,2758,168,0,0,0,0,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,16,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,10,88,98498,583,1413,305,374,527,157,42020,35197,17657,6003,141,0,0,0,0,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,16,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14,12,88,98517,750,1413,355,297,93,248,33129,7468,27792,9437,139,0,9,9,150,77777,0,999999999,32,0,0,88,0.2,0,0 +2013,12,16,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18,12,68,98555,847,1413,354,553,566,213,63541,41712,24572,9206,250,2.1,5,5,400,77777,0,999999999,31,0,0,88,0.2,0,0 +2013,12,16,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,21,11,53,98583,869,1413,362,619,828,109,75201,49309,13278,5389,80,0,3,3,900,77777,0,999999999,28,0,0,88,0.2,0,0 +2013,12,16,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,22,11,50,98592,813,1413,363,572,830,94,69727,47474,11487,4622,250,2.1,2,2,1100,77777,0,999999999,28,0,0,88,0.2,0,0 +2013,12,16,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,9,38,98610,684,1413,359,463,776,87,55572,43139,10437,4044,300,2.1,0,0,1800,77777,0,999999999,23,0,0,88,0.2,0,0 +2013,12,16,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,24,9,38,98610,490,1413,359,296,605,86,34233,29709,10004,3551,330,1.5,0,0,2100,77777,0,999999999,23,0,0,88,0.2,0,0 +2013,12,16,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,8,38,98601,244,1413,353,109,298,58,12125,5189,6422,1973,330,2.1,0,0,2400,77777,0,999999999,21,0,0,88,0.2,0,0 +2013,12,16,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,14,68,98574,0,1229,346,0,0,0,0,0,0,0,70,1.5,0,0,600,77777,0,999999999,38,0,0,88,0.2,0,0 +2013,12,16,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,18,15,83,98555,0,0,337,0,0,0,0,0,0,0,281,0,0,0,500,77777,0,999999999,43,0,0,88,0.2,0,0 +2013,12,16,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,17,100,98546,0,0,335,0,0,0,0,0,0,0,215,0,0,0,400,77777,0,999999999,52,0,0,88,0.2,0,0 +2013,12,16,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,15,94,98536,0,0,328,0,0,0,0,0,0,0,40,1.5,0,0,400,77777,0,999999999,43,0,0,88,0.2,0,0 +2013,12,16,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,15,100,98527,0,0,324,0,0,0,0,0,0,0,40,0,0,0,400,77777,0,999999999,43,0,0,88,0.2,0,0 +2013,12,16,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,14,100,98517,0,0,367,0,0,0,0,0,0,0,120,2.1,10,10,200,77777,0,999999999,39,0,0,88,0.2,0,0 +2013,12,16,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14,14,100,98517,0,0,367,0,0,0,0,0,0,0,258,0,10,10,50,77777,0,999999999,39,0,0,88,0.2,0,0 +2013,12,17,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,13,100,98507,0,0,361,0,0,0,0,0,0,0,110,2.1,10,10,50,77777,0,999999999,35,0,0,88,0.2,0,0 +2013,12,17,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,13,100,98507,0,0,361,0,0,0,0,0,0,0,120,2.1,10,10,50,77777,0,999999999,35,0,0,88,0.2,0,0 +2013,12,17,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,12,12,100,98498,0,0,355,0,0,0,0,0,0,0,239,0,10,10,50,77777,0,999999999,32,0,0,88,0.2,0,0 +2013,12,17,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,12,12,100,98498,0,0,355,0,0,0,0,0,0,0,27,0,10,10,50,77777,0,999999999,32,0,0,88,0.2,0,0 +2013,12,17,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,10,10,100,98478,0,0,343,0,0,0,0,0,0,0,123,0,10,10,50,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,17,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,10,10,100,98478,0,0,343,0,0,0,0,0,0,0,55,0,10,10,0,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,17,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,10,10,100,98478,0,0,343,0,0,0,0,0,0,0,277,0,10,10,0,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,17,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,11,11,100,98488,88,425,349,8,0,8,813,0,818,324,78,0,10,10,0,77777,0,999999999,29,0,0,88,0.2,0,0 +2013,12,17,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,12,12,100,98498,355,1413,355,59,0,59,5838,0,5883,2327,260,0,10,10,0,77777,0,999999999,32,0,0,88,0.2,0,0 +2013,12,17,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,13,13,100,98507,581,1413,361,117,0,117,11698,0,11795,4840,118,0,10,10,0,77777,0,999999999,35,0,0,88,0.2,0,0 +2013,12,17,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14,14,100,98517,748,1413,367,162,0,162,16462,0,16608,7039,65,0,10,10,100,77777,0,999999999,39,0,0,88,0.2,0,0 +2013,12,17,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,20,16,78,98574,846,1413,376,473,322,280,53029,25816,31560,11057,206,0,7,7,800,77777,0,999999999,47,0,0,88,0.2,0,0 +2013,12,17,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,21,16,73,98583,868,1413,377,534,476,240,60757,35262,27527,10181,280,2.6,6,6,1100,77777,0,999999999,47,0,0,88,0.2,0,0 +2013,12,17,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,23,13,53,98601,813,1413,374,568,783,116,67970,46326,13978,5569,270,2.6,3,3,1600,77777,0,999999999,35,0,0,88,0.2,0,0 +2013,12,17,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,10,44,98601,684,1413,355,463,778,85,55607,42637,10287,3992,300,2.6,0,0,2100,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,17,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,23,9,41,98601,491,1413,354,298,608,86,34386,29848,9982,3546,310,2.1,0,0,2200,77777,0,999999999,23,0,0,88,0.2,0,0 +2013,12,17,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,11,50,98592,245,1413,352,110,277,62,12118,4934,6830,2071,310,2.1,0,0,1600,77777,0,999999999,28,0,0,88,0.2,0,0 +2013,12,17,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,19,12,64,98564,0,1237,339,0,0,0,0,0,0,0,189,0,0,0,700,77777,0,999999999,31,0,0,88,0.2,0,0 +2013,12,17,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,17,13,77,98546,0,0,331,0,0,0,0,0,0,0,47,0,0,0,400,77777,0,999999999,35,0,0,88,0.2,0,0 +2013,12,17,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,13,82,98536,0,0,326,0,0,0,0,0,0,0,128,0,0,0,350,77777,0,999999999,35,0,0,88,0.2,0,0 +2013,12,17,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,15,100,98527,0,0,324,0,0,0,0,0,0,0,186,0,0,0,300,77777,0,999999999,43,0,0,88,0.2,0,0 +2013,12,17,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,14,94,98527,0,0,323,0,0,0,0,0,0,0,54,0,0,0,350,77777,0,999999999,39,0,0,88,0.2,0,0 +2013,12,17,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,14,94,98527,0,0,323,0,0,0,0,0,0,0,7,0,0,0,350,77777,0,999999999,39,0,0,88,0.2,0,0 +2013,12,17,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,13,94,98517,0,0,317,0,0,0,0,0,0,0,150,0,0,0,200,77777,0,999999999,35,0,0,88,0.2,0,0 +2013,12,18,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,13,94,98517,0,0,317,0,0,0,0,0,0,0,80,1.5,0,0,150,77777,0,999999999,35,0,0,88,0.2,0,0 +2013,12,18,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,13,12,94,98507,0,0,360,0,0,0,0,0,0,0,238,0,10,10,50,77777,0,999999999,32,0,0,88,0.2,0,0 +2013,12,18,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,13,12,94,98507,0,0,360,0,0,0,0,0,0,0,176,0,10,10,50,77777,0,999999999,32,0,0,88,0.2,0,0 +2013,12,18,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,13,12,94,98507,0,0,360,0,0,0,0,0,0,0,227,0,10,10,50,77777,0,999999999,32,0,0,88,0.2,0,0 +2013,12,18,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,11,11,100,98488,0,0,349,0,0,0,0,0,0,0,148,0,10,10,50,77777,0,999999999,29,0,0,88,0.2,0,0 +2013,12,18,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,11,11,100,98488,0,0,349,0,0,0,0,0,0,0,198,0,10,10,0,77777,0,999999999,29,0,0,88,0.2,0,0 +2013,12,18,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,11,11,100,98488,0,0,349,0,0,0,0,0,0,0,45,0,10,10,0,77777,0,999999999,29,0,0,88,0.2,0,0 +2013,12,18,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,11,11,100,98488,85,411,349,8,0,8,787,0,792,313,140,0,10,10,0,77777,0,999999999,29,0,0,88,0.2,0,0 +2013,12,18,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,11,11,100,98488,353,1413,349,59,0,59,5790,0,5835,2305,100,1.5,10,10,0,77777,0,999999999,29,0,0,88,0.2,0,0 +2013,12,18,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,13,100,98507,578,1413,361,116,0,116,11636,0,11733,4812,60,2.1,10,10,200,77777,0,999999999,35,0,0,88,0.2,0,0 +2013,12,18,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,15,100,98527,746,1413,373,161,0,161,16368,0,16513,7005,40,2.6,10,10,400,77777,0,999999999,43,0,0,88,0.2,0,0 +2013,12,18,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,18,15,83,98555,845,1413,371,416,197,299,46430,16441,33514,11471,40,2.1,8,8,500,77777,0,999999999,43,0,0,88,0.2,0,0 +2013,12,18,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,20,16,78,98574,868,1413,376,488,344,277,54977,27192,31382,11179,90,2.6,7,7,500,77777,0,999999999,47,0,0,88,0.2,0,0 +2013,12,18,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,14,60,98592,813,1413,355,573,711,163,66768,46442,19066,7357,80,3.1,0,0,800,77777,0,999999999,38,0,0,88,0.2,0,0 +2013,12,18,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,14,60,98592,685,1413,355,460,782,80,55401,40023,9705,3787,80,3.6,0,0,900,77777,0,999999999,38,0,0,88,0.2,0,0 +2013,12,18,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,22,14,60,98592,492,1413,355,296,591,90,33971,27612,10357,3672,100,3.6,0,0,1000,77777,0,999999999,38,0,0,88,0.2,0,0 +2013,12,18,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,14,64,98583,247,1413,350,110,274,62,12140,4435,6877,2089,90,3.1,0,0,1100,77777,0,999999999,38,0,0,88,0.2,0,0 +2013,12,18,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,14,88,98536,0,1246,327,0,0,0,0,0,0,0,101,0,0,0,800,77777,0,999999999,39,0,0,88,0.2,0,0 +2013,12,18,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,16,14,88,98536,0,0,327,0,0,0,0,0,0,0,84,0,0,0,700,77777,0,999999999,39,0,0,88,0.2,0,0 +2013,12,18,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,16,100,98536,0,0,329,0,0,0,0,0,0,0,80,1.5,0,0,600,77777,0,999999999,47,0,0,88,0.2,0,0 +2013,12,18,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,15,100,98527,0,0,324,0,0,0,0,0,0,0,60,1.5,0,0,600,77777,0,999999999,43,0,0,88,0.2,0,0 +2013,12,18,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,15,100,98527,0,0,324,0,0,0,0,0,0,0,70,1.5,0,0,400,77777,0,999999999,43,0,0,88,0.2,0,0 +2013,12,18,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,14,100,98517,0,0,318,0,0,0,0,0,0,0,110,1.5,0,0,350,77777,0,999999999,39,0,0,88,0.2,0,0 +2013,12,18,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,14,100,98517,0,0,318,0,0,0,0,0,0,0,90,1.5,0,0,300,77777,0,999999999,39,0,0,88,0.2,0,0 +2013,12,19,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,13,100,98507,0,0,313,0,0,0,0,0,0,0,100,2.6,0,0,300,77777,0,999999999,35,0,0,88,0.2,0,0 +2013,12,19,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,13,100,98507,0,0,313,0,0,0,0,0,0,0,90,2.1,0,0,400,77777,0,999999999,35,0,0,88,0.2,0,0 +2013,12,19,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,13,100,98507,0,0,313,0,0,0,0,0,0,0,80,2.1,0,0,400,77777,0,999999999,35,0,0,88,0.2,0,0 +2013,12,19,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,11,100,98488,0,0,302,0,0,0,0,0,0,0,90,2.1,0,0,400,77777,0,999999999,29,0,0,88,0.2,0,0 +2013,12,19,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,13,100,98507,0,0,313,0,0,0,0,0,0,0,90,1.5,0,0,400,77777,0,999999999,35,0,0,88,0.2,0,0 +2013,12,19,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,13,100,98507,0,0,313,0,0,0,0,0,0,0,50,1.5,0,0,400,77777,0,999999999,35,0,0,88,0.2,0,0 +2013,12,19,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,12,100,98498,0,0,307,0,0,0,0,0,0,0,90,1.5,0,0,400,77777,0,999999999,32,0,0,88,0.2,0,0 +2013,12,19,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,13,100,98507,82,398,313,25,53,22,2748,0,2412,696,80,2.1,0,0,300,77777,0,999999999,35,0,0,88,0.2,0,0 +2013,12,19,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13,13,100,98507,350,1413,326,182,454,69,20557,14313,7823,2605,90,2.1,3,3,400,77777,0,999999999,35,0,0,88,0.2,0,0 +2013,12,19,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15,15,100,98527,576,1413,338,361,637,101,41788,32839,11702,4293,90,2.1,3,3,600,77777,0,999999999,43,0,0,88,0.2,0,0 +2013,12,19,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17,15,88,98546,745,1413,347,504,787,89,60854,41593,10781,4271,70,3.6,3,3,700,77777,0,999999999,43,0,0,88,0.2,0,0 +2013,12,19,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19,14,73,98564,844,1413,356,592,823,100,71999,46200,12237,4960,70,3.6,3,3,1000,77777,0,999999999,38,0,0,88,0.2,0,0 +2013,12,19,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20,14,68,98574,867,1413,360,613,830,103,74654,46966,12555,5115,100,2.6,3,3,1000,77777,0,999999999,38,0,0,88,0.2,0,0 +2013,12,19,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20,14,68,98574,814,1413,360,566,812,98,68568,45155,11892,4785,100,3.6,3,3,1000,77777,0,999999999,38,0,0,88,0.2,0,0 +2013,12,19,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,14,64,98583,686,1413,350,461,783,80,55482,40064,9714,3791,80,3.1,0,0,1000,77777,0,999999999,38,0,0,88,0.2,0,0 +2013,12,19,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,14,64,98583,493,1413,350,297,592,90,34093,27718,10379,3682,70,4.1,0,0,900,77777,0,999999999,38,0,0,88,0.2,0,0 +2013,12,19,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,21,14,64,98583,249,1413,350,111,277,63,12264,4581,6918,2103,80,3.1,0,0,1200,77777,0,999999999,38,0,0,88,0.2,0,0 +2013,12,19,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,14,68,98574,0,1256,346,0,0,0,0,0,0,0,70,2.1,0,0,1300,77777,0,999999999,38,0,0,88,0.2,0,0 +2013,12,19,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,15,78,98564,0,0,342,0,0,0,0,0,0,0,90,3.1,0,0,1300,77777,0,999999999,42,0,0,88,0.2,0,0 +2013,12,19,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19,15,78,98564,0,0,357,0,0,0,0,0,0,0,70,2.1,3,3,1300,77777,0,999999999,42,0,0,88,0.2,0,0 +2013,12,19,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17,15,88,98546,0,0,347,0,0,0,0,0,0,0,50,1.5,3,3,800,77777,0,999999999,43,0,0,88,0.2,0,0 +2013,12,19,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,17,15,88,98546,0,0,347,0,0,0,0,0,0,0,312,0,3,3,800,77777,0,999999999,43,0,0,88,0.2,0,0 +2013,12,19,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,16,15,94,98536,0,0,342,0,0,0,0,0,0,0,35,0,3,3,700,77777,0,999999999,43,0,0,88,0.2,0,0 +2013,12,19,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,15,14,94,98527,0,0,336,0,0,0,0,0,0,0,103,0,3,3,600,77777,0,999999999,39,0,0,88,0.2,0,0 +2013,12,20,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,15,14,94,98527,0,0,342,0,0,0,0,0,0,0,221,0,5,5,500,77777,0,999999999,39,0,0,88,0.2,0,0 +2013,12,20,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14,14,100,98517,0,0,337,0,0,0,0,0,0,0,330,2.1,5,5,300,77777,0,999999999,39,0,0,88,0.2,0,0 +2013,12,20,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,13,94,98517,0,0,336,0,0,0,0,0,0,0,305,0,5,5,300,3048,0,999999999,35,0,0,88,0.2,0,0 +2013,12,20,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,13,94,98517,0,0,336,0,0,0,0,0,0,0,40,2.1,5,5,400,3048,0,999999999,35,0,0,88,0.2,0,0 +2013,12,20,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,13,94,98517,0,0,336,0,0,0,0,0,0,0,60,2.1,5,5,500,3048,0,999999999,35,0,0,88,0.2,0,0 +2013,12,20,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,13,94,98517,0,0,336,0,0,0,0,0,0,0,90,2.6,5,5,500,3048,0,999999999,35,0,0,88,0.2,0,0 +2013,12,20,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,13,100,98507,0,0,331,0,0,0,0,0,0,0,100,2.1,5,5,500,3048,0,999999999,35,0,0,88,0.2,0,0 +2013,12,20,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,14,13,94,98517,80,385,336,23,27,21,2479,0,2316,670,179,0,5,5,400,3048,0,999999999,35,0,0,88,0.2,0,0 +2013,12,20,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,13,13,100,98507,348,1414,361,57,0,57,5645,0,5689,2251,185,0,10,10,0,3048,0,999999999,35,0,0,88,0.2,0,0 +2013,12,20,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,13,100,98507,574,1414,361,115,0,115,11521,0,11617,4760,300,3.1,10,10,0,3048,0,999999999,35,0,0,88,0.2,0,0 +2013,12,20,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15,14,94,98527,743,1414,336,504,597,190,57336,41758,21699,7881,310,3.1,3,3,800,3048,0,999999999,39,0,0,88,0.2,0,0 +2013,12,20,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16,14,88,98536,843,1414,341,591,822,100,71876,46168,12239,4959,320,2.6,3,3,1000,3048,0,999999999,39,0,0,88,0.2,0,0 +2013,12,20,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17,14,82,98546,867,1414,346,613,830,103,74603,46954,12560,5117,300,3.6,3,3,1000,3048,0,999999999,39,0,0,88,0.2,0,0 +2013,12,20,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,14,82,98546,814,1414,332,573,837,91,69885,45673,11083,4473,310,3.1,0,0,1000,77777,0,999999999,39,0,0,88,0.2,0,0 +2013,12,20,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,15,88,98546,687,1414,333,461,786,78,55547,39300,9467,3702,300,3.1,0,0,1100,77777,0,999999999,43,0,0,88,0.2,0,0 +2013,12,20,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,15,83,98555,495,1414,337,297,587,92,34092,27288,10550,3739,310,3.1,0,0,1100,77777,0,999999999,43,0,0,88,0.2,0,0 +2013,12,20,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,15,88,98546,250,1414,333,112,278,63,12362,4494,6965,2120,310,3.1,0,0,1000,77777,0,999999999,43,0,0,88,0.2,0,0 +2013,12,20,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,15,88,98546,0,1266,333,0,0,0,0,0,0,0,310,3.1,0,0,900,77777,0,999999999,43,0,0,88,0.2,0,0 +2013,12,20,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,14,100,98517,0,0,318,0,0,0,0,0,0,0,290,2.6,0,0,600,77777,0,999999999,39,0,0,88,0.2,0,0 +2013,12,20,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,14,100,98517,0,0,318,0,0,0,0,0,0,0,300,3.1,0,0,600,77777,0,999999999,39,0,0,88,0.2,0,0 +2013,12,20,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,14,100,98517,0,0,318,0,0,0,0,0,0,0,320,3.1,0,0,800,77777,0,999999999,39,0,0,88,0.2,0,0 +2013,12,20,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,14,100,98517,0,0,318,0,0,0,0,0,0,0,320,3.6,0,0,800,77777,0,999999999,39,0,0,88,0.2,0,0 +2013,12,20,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,14,100,98517,0,0,318,0,0,0,0,0,0,0,310,2.6,0,0,800,77777,0,999999999,39,0,0,88,0.2,0,0 +2013,12,20,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,13,100,98507,0,0,313,0,0,0,0,0,0,0,310,3.1,0,0,800,77777,0,999999999,35,0,0,88,0.2,0,0 +2013,12,21,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,13,100,98507,0,0,313,0,0,0,0,0,0,0,300,2.1,0,0,600,77777,0,999999999,35,0,0,88,0.2,0,0 +2013,12,21,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,13,100,98507,0,0,313,0,0,0,0,0,0,0,300,2.1,0,0,600,77777,0,999999999,35,0,0,88,0.2,0,0 +2013,12,21,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,13,100,98507,0,0,313,0,0,0,0,0,0,0,320,2.6,0,0,600,77777,0,999999999,35,0,0,88,0.2,0,0 +2013,12,21,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,13,100,98507,0,0,313,0,0,0,0,0,0,0,310,3.1,0,0,600,77777,0,999999999,35,0,0,88,0.2,0,0 +2013,12,21,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,13,100,98507,0,0,313,0,0,0,0,0,0,0,350,2.6,0,0,600,77777,0,999999999,35,0,0,88,0.2,0,0 +2013,12,21,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,13,100,98507,0,0,361,0,0,0,0,0,0,0,40,1.5,10,10,800,77777,0,999999999,35,0,0,88,0.2,0,0 +2013,12,21,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,13,100,98507,0,0,313,0,0,0,0,0,0,0,40,1.5,0,0,800,77777,0,999999999,35,0,0,88,0.2,0,0 +2013,12,21,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,13,100,98507,77,373,313,23,50,21,2577,0,2283,658,40,2.1,0,0,500,77777,0,999999999,35,0,0,88,0.2,0,0 +2013,12,21,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,13,100,98507,346,1414,313,181,466,66,20459,14069,7558,2521,70,2.1,0,0,500,77777,0,999999999,35,0,0,88,0.2,0,0 +2013,12,21,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,13,100,98507,572,1414,313,364,666,93,42375,34291,10927,4028,50,2.1,0,0,600,77777,0,999999999,35,0,0,88,0.2,0,0 +2013,12,21,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,14,100,98517,742,1414,318,509,809,84,61725,42726,10220,4052,80,2.1,0,0,700,77777,0,999999999,39,0,0,88,0.2,0,0 +2013,12,21,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,14,100,98517,842,1414,318,598,846,93,73106,46672,11439,4646,90,3.1,0,0,800,77777,0,999999999,39,0,0,88,0.2,0,0 +2013,12,21,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,15,100,98527,867,1414,324,619,857,93,75924,46613,11439,4679,130,2.6,0,0,800,77777,0,999999999,43,0,0,88,0.2,0,0 +2013,12,21,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,14,94,98527,814,1414,323,573,633,208,65561,45591,23929,8865,130,3.1,0,0,800,77777,0,999999999,39,0,0,88,0.2,0,0 +2013,12,21,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9?9*9*9*9*9,15,14,94,98527,688,1414,372,179,7,176,20294,484,19996,7141,100,2.1,10,10,800,77777,0,999999999,39,0,0,88,0.2,0,0 +2013,12,21,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,14,94,98527,496,1414,372,116,0,116,11535,0,11629,4467,50,1.5,10,10,800,77777,0,999999999,39,0,0,88,0.2,0,0 +2013,12,21,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,14,94,98527,252,1414,372,44,0,44,4300,0,4332,1639,40,2.1,10,10,800,77777,0,999999999,39,0,0,88,0.2,0,0 +2013,12,21,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,14,88,98536,0,1277,367,0,0,0,0,0,0,0,110,2.1,9,9,800,77777,0,999999999,39,0,0,88,0.2,0,0 +2013,12,21,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,14,94,98527,0,0,372,0,0,0,0,0,0,0,130,2,10,10,800,77777,0,999999999,39,0,0,88,0.2,0,0 +2013,12,21,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,14,88,98536,0,0,367,0,0,0,0,0,0,0,150,2.6,9,9,700,77777,0,999999999,39,0,0,88,0.2,0,0 +2013,12,21,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,14,94,98527,0,0,372,0,0,0,0,0,0,0,150,2.6,10,10,700,77777,0,999999999,39,0,0,88,0.2,0,0 +2013,12,21,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,14,94,98527,0,0,372,0,0,0,0,0,0,0,110,1.5,10,10,650,77777,0,999999999,39,0,0,88,0.2,0,0 +2013,12,21,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,15,14,94,98527,0,0,372,0,0,0,0,0,0,0,64,0,10,10,600,77777,0,999999999,39,0,0,88,0.2,0,0 +2013,12,21,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,14,94,98527,0,0,372,0,0,0,0,0,0,0,70,2.6,10,10,700,77777,0,999999999,39,0,0,88,0.2,0,0 +2013,12,22,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14,13,94,98517,0,0,366,0,0,0,0,0,0,0,299,0,10,10,700,77777,0,999999999,35,0,0,88,0.2,0,0 +2013,12,22,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,13,12,94,98507,0,0,360,0,0,0,0,0,0,0,181,0,10,10,400,77777,0,999999999,32,0,0,88,0.2,0,0 +2013,12,22,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14,13,94,98517,0,0,366,0,0,0,0,0,0,0,172,0,10,10,350,77777,0,999999999,35,0,0,88,0.2,0,0 +2013,12,22,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14,13,94,98517,0,0,366,0,0,0,0,0,0,0,43,0,10,10,350,77777,0,999999999,35,0,0,88,0.2,0,0 +2013,12,22,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14,13,94,98517,0,0,366,0,0,0,0,0,0,0,275,0,10,10,350,77777,0,999999999,35,0,0,88,0.2,0,0 +2013,12,22,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14,13,94,98517,0,0,366,0,0,0,0,0,0,0,50,0,10,10,350,77777,0,999999999,35,0,0,88,0.2,0,0 +2013,12,22,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14,13,94,98517,0,0,366,0,0,0,0,0,0,0,284,0,10,10,500,77777,0,999999999,35,0,0,88,0.2,0,0 +2013,12,22,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,14,13,94,98517,75,361,317,23,49,20,2496,0,2220,640,279,0,0,0,700,77777,0,999999999,35,0,0,88,0.2,0,0 +2013,12,22,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,13,94,98517,344,1414,317,179,463,66,20267,13849,7533,2509,350,1.5,0,0,700,77777,0,999999999,35,0,0,88,0.2,0,0 +2013,12,22,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,14,94,98527,571,1414,323,361,663,93,42086,33585,10909,4021,350,2.6,0,0,700,77777,0,999999999,39,0,0,88,0.2,0,0 +2013,12,22,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,14,88,98536,741,1414,327,508,616,185,57915,42658,21181,7722,20,3.1,0,0,700,77777,0,999999999,39,0,0,88,0.2,0,0 +2013,12,22,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,15,88,98546,842,1414,373,342,92,287,38225,7533,32306,11179,50,3.1,9,9,1000,77777,0,999999999,43,0,0,88,0.2,0,0 +2013,12,22,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,15,88,98546,867,1414,373,355,94,297,39729,7761,33490,11653,30,2.6,9,9,1000,77777,0,999999999,43,0,0,88,0.2,0,0 +2013,12,22,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,15,88,98546,815,1414,373,328,86,279,36636,7032,31271,10731,350,2.1,9,9,900,77777,0,999999999,43,0,0,88,0.2,0,0 +2013,12,22,15,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,14,82,98546,689,1414,364,331,221,223,36826,16872,24962,8363,10,2.6,8,8,1000,77777,0,999999999,39,0,0,88,0.2,0,0 +2013,12,22,16,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,15,88,98546,498,1414,373,172,68,148,18967,4103,16390,5262,10,3.1,9,9,900,77777,0,999999999,43,0,0,88,0.2,0,0 +2013,12,22,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,17,14,82,98546,254,1414,364,82,71,70,9010,1452,7643,2274,30,2.1,8,8,1200,77777,0,999999999,39,0,0,88,0.2,0,0 +2013,12,22,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,14,88,98536,0,1289,367,0,0,0,0,0,0,0,310,1.5,9,9,1100,77777,0,999999999,39,0,0,88,0.2,0,0 +2013,12,22,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,15,100,98527,0,0,373,0,0,0,0,0,0,0,270,1.5,10,10,1000,77777,0,999999999,43,0,0,88,0.2,0,0 +2013,12,22,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,14.5,14,97,98522,0,0,370,0,0,0,0,0,0,0,113,1.8,10,10,750,77777,9,999999999,39,0,0,88,0.2,0,0 +2013,12,22,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,13,94,98517,0,0,366,0,0,0,0,0,0,0,250,2.1,10,10,500,77777,0,999999999,35,0,0,88,0.2,0,0 +2013,12,22,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,14,100,98517,0,0,367,0,0,0,0,0,0,0,250,2.1,10,10,400,77777,0,999999999,39,0,0,88,0.2,0,0 +2013,12,22,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,14,100,98517,0,0,367,0,0,0,0,0,0,0,260,2.1,10,10,250,77777,0,999999999,39,0,0,88,0.2,0,0 +2013,12,22,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,14,100,98517,0,0,367,0,0,0,0,0,0,0,260,2.6,10,10,200,77777,0,999999999,39,0,0,88,0.2,0,0 +2013,12,23,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,13,100,98507,0,0,361,0,0,0,0,0,0,0,280,3.1,10,10,200,77777,0,999999999,35,0,0,88,0.2,0,0 +2013,12,23,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,13,100,98507,0,0,361,0,0,0,0,0,0,0,270,2.1,10,10,200,77777,0,999999999,35,0,0,88,0.2,0,0 +2013,12,23,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,13,100,98507,0,0,361,0,0,0,0,0,0,0,270,2.6,10,10,250,77777,0,999999999,35,0,0,88,0.2,0,0 +2013,12,23,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,13,100,98507,0,0,361,0,0,0,0,0,0,0,270,2.1,10,10,300,77777,0,999999999,35,0,0,88,0.2,0,0 +2013,12,23,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,13,100,98507,0,0,361,0,0,0,0,0,0,0,290,2.1,10,10,400,77777,0,999999999,35,0,0,88,0.2,0,0 +2013,12,23,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,13,100,98507,0,0,313,0,0,0,0,0,0,0,290,3.1,0,0,700,77777,9,999999999,35,0,0,88,0.2,0,0 +2013,12,23,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,13,100,98507,0,0,313,0,0,0,0,0,0,0,270,3.1,0,0,900,77777,9,999999999,35,0,0,88,0.2,0,0 +2013,12,23,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,13,100,98507,72,350,361,7,0,7,666,0,670,266,280,3.6,10,10,1100,77777,9,999999999,35,0,0,88,0.2,0,0 +2013,12,23,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,13,100,98507,341,1414,361,56,0,56,5491,0,5533,2188,280,3.6,10,10,1000,77777,9,999999999,35,0,0,88,0.2,0,0 +2013,12,23,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13,13,100,98507,569,1414,326,356,480,162,39665,31678,18187,6061,270,3.1,3,3,1000,77777,9,999999999,35,0,0,88,0.2,0,0 +2013,12,23,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,14,100,98517,739,1414,318,507,809,84,61459,42626,10196,4039,300,4.1,0,0,1400,77777,9,999999999,39,0,0,88,0.2,0,0 +2013,12,23,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14,13,94,98517,841,1414,331,591,823,100,71822,46834,12222,4947,280,4.6,3,3,1500,77777,9,999999999,35,0,0,88,0.2,0,0 +2013,12,23,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15,13,88,98527,867,1414,335,614,832,103,74768,47692,12570,5117,280,4.6,3,3,1500,77777,9,999999999,35,0,0,88,0.2,0,0 +2013,12,23,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16,13,82,98536,816,1414,340,568,814,98,68957,45953,11930,4800,270,4.6,3,3,1300,77777,9,999999999,35,0,0,88,0.2,0,0 +2013,12,23,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17,13,77,98546,690,1414,345,459,757,89,54964,40557,10697,4156,290,4.6,3,3,1500,77777,9,999999999,35,0,0,88,0.2,0,0 +2013,12,23,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17,13,77,98546,500,1414,345,299,579,94,34265,28254,10810,3825,280,4.6,3,3,1500,77777,9,999999999,35,0,0,88,0.2,0,0 +2013,12,23,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17,13,77,98546,257,1414,345,115,278,65,12709,5374,7166,2182,270,4.1,3,3,1700,77777,9,999999999,35,0,0,88,0.2,0,0 +2013,12,23,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15,13,88,98527,0,1300,335,0,0,0,0,0,0,0,250,3.1,3,3,1200,77777,9,999999999,35,0,0,88,0.2,0,0 +2013,12,23,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14,13,94,98517,0,0,331,0,0,0,0,0,0,0,250,3.1,3,3,1200,77777,9,999999999,35,0,0,88,0.2,0,0 +2013,12,23,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,12,94,98507,0,0,312,0,0,0,0,0,0,0,240,2.6,0,0,1100,77777,9,999999999,32,0,0,88,0.2,0,0 +2013,12,23,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,11,94,98498,0,0,306,0,0,0,0,0,0,0,260,2.6,0,0,1000,77777,9,999999999,29,0,0,88,0.2,0,0 +2013,12,23,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,11,100,98488,0,0,302,0,0,0,0,0,0,0,250,2.6,0,0,700,77777,9,999999999,29,0,0,88,0.2,0,0 +2013,12,23,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,11,100,98488,0,0,302,0,0,0,0,0,0,0,260,1.5,0,0,400,77777,0,999999999,29,0,0,88,0.2,0,0 +2013,12,23,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,10,100,98478,0,0,297,0,0,0,0,0,0,0,270,2.1,0,0,300,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,24,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,10,94,98488,0,0,301,0,0,0,0,0,0,0,280,2.6,0,0,500,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,24,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,10,94,98488,0,0,301,0,0,0,0,0,0,0,280,2.6,0,0,500,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,24,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,10,100,98478,0,0,297,0,0,0,0,0,0,0,260,1.5,0,0,500,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,24,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,9,100,98468,0,0,292,0,0,0,0,0,0,0,240,2.1,0,0,500,77777,0,999999999,24,0,0,88,0.2,0,0 +2013,12,24,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,9,100,98468,0,0,292,0,0,0,0,0,0,0,250,2.1,0,0,150,77777,0,999999999,24,0,0,88,0.2,0,0 +2013,12,24,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,8,8,100,98458,0,0,331,0,0,0,0,0,0,0,260,2.1,10,10,50,77777,0,999999999,21,0,0,88,0.2,0,0 +2013,12,24,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,8.5,8,97,98463,0,0,333,0,0,0,0,0,0,0,146,2.6,10,10,25,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,24,8,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,9,8,93,98468,70,339,335,9,0,9,873,0,879,336,270,3.1,10,10,0,77777,0,999999999,21,0,0,88,0.2,0,0 +2013,12,24,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,9,8,93,98468,340,1414,335,75,0,75,7381,0,7437,2732,270,2.6,10,10,0,77777,0,999999999,21,0,0,88,0.2,0,0 +2013,12,24,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,10,9,93,98478,568,1414,341,153,9,149,17157,584,16830,5716,270,2.6,10,10,100,77777,0,999999999,24,0,0,88,0.2,0,0 +2013,12,24,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,11,9,87,98488,738,1414,337,306,113,247,34177,9380,27708,9314,270,3.1,9,9,400,77777,0,999999999,24,0,0,88,0.2,0,0 +2013,12,24,12,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,11,82,98517,841,1414,346,429,241,285,48131,20480,32206,11130,280,3.6,8,8,1200,77777,0,999999999,29,0,0,88,0.2,0,0 +2013,12,24,13,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,15,11,77,98527,867,1414,345,502,381,269,56883,31135,30587,10951,310,3.6,7,7,1300,77777,0,999999999,29,0,0,88,0.2,0,0 +2013,12,24,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,16.5,10.5,68,98541,817,1414,345,529,616,173,61563,42643,20255,7740,158,4.3,5,5,1700,77777,9,999999999,27,0,0,88,0.2,0,0 +2013,12,24,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,10,59,98555,692,1414,332,469,742,106,55513,43366,12544,4812,300,5.1,0,0,2100,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,24,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,9,52,98564,502,1414,335,306,617,87,35450,30773,10138,3617,310,5.1,0,0,2500,77777,0,999999999,23,0,0,88,0.2,0,0 +2013,12,24,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,10,59,98555,259,1414,332,119,312,62,13199,6311,6878,2122,300,4.1,0,0,2200,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,24,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,10,68,98536,0,1313,323,0,0,0,0,0,0,0,280,2.6,0,0,2200,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,24,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,11,82,98517,0,0,315,0,0,0,0,0,0,0,260,2.1,0,0,1800,77777,0,999999999,29,0,0,88,0.2,0,0 +2013,12,24,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,13,11,88,98507,0,0,349,0,0,0,0,0,0,0,87,2.3,9,9,1250,77777,9,999999999,29,0,0,88,0.2,0,0 +2013,12,24,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,11,94,98498,0,0,306,0,0,0,0,0,0,0,280,2.6,0,0,700,77777,0,999999999,29,0,0,88,0.2,0,0 +2013,12,24,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,11,100,98488,0,0,302,0,0,0,0,0,0,0,270,2.1,0,0,600,77777,0,999999999,29,0,0,88,0.2,0,0 +2013,12,24,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,11,100,98488,0,0,302,0,0,0,0,0,0,0,260,2.1,0,0,600,77777,0,999999999,29,0,0,88,0.2,0,0 +2013,12,24,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,10,100,98478,0,0,297,0,0,0,0,0,0,0,260,1.5,0,0,600,77777,0,999999999,26,0,0,88,0.2,0,0 +2013,12,25,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,9,100,98468,0,0,292,0,0,0,0,0,0,0,250,1.5,0,0,400,77777,0,999999999,24,0,0,88,0.2,0,0 +2013,12,25,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,8,100,98458,0,0,287,0,0,0,0,0,0,0,260,1.5,0,0,400,77777,0,999999999,21,0,0,88,0.2,0,0 +2013,12,25,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,8,100,98458,0,0,287,0,0,0,0,0,0,0,260,1.5,0,0,400,77777,0,999999999,21,0,0,88,0.2,0,0 +2013,12,25,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,7,100,98448,0,0,282,0,0,0,0,0,0,0,260,2.1,0,0,400,77777,0,999999999,19,0,0,88,0.2,0,0 +2013,12,25,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,6,100,98438,0,0,289,0,0,0,0,0,0,0,270,2.6,3,3,400,77777,0,999999999,18,0,0,88,0.2,0,0 +2013,12,25,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7,7,100,98448,0,0,282,0,0,0,0,0,0,0,260,2.6,0,0,400,77777,0,999999999,19,0,0,88,0.2,0,0 +2013,12,25,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,6,100,98438,0,0,277,0,0,0,0,0,0,0,250,2.1,0,0,400,77777,0,999999999,18,0,0,88,0.2,0,0 +2013,12,25,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,6,6,100,98438,68,328,277,21,19,20,2301,0,2209,623,250,2.6,0,0,400,77777,0,999999999,18,0,0,88,0.2,0,0 +2013,12,25,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,7,100,98448,338,1414,282,177,347,94,19487,14772,10392,3173,250,2.6,0,0,500,77777,0,999999999,19,0,0,88,0.2,0,0 +2013,12,25,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,9.7,6.7,82,98474,566,1414,321,259,218,172,28839,15638,19203,6257,69,3.1,8,8,900,77777,9,999999999,19,0,0,88,0.2,0,0 +2013,12,25,11,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,12.3,6.3,67,98500,738,1414,321,473,571,175,54356,41263,20213,7405,204,3.6,5,5,1300,77777,9,999999999,18,0,0,88,0.2,0,0 +2013,12,25,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,6,55,98527,841,1414,314,605,793,133,72284,52114,15974,6332,280,4.1,0,0,1700,77777,0,999999999,17,0,0,88,0.2,0,0 +2013,12,25,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,5,45,98546,868,1414,322,631,786,148,75086,53562,17730,7021,300,4.1,0,0,2000,77777,0,999999999,16,0,0,88,0.2,0,0 +2013,12,25,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,4,37,98564,818,1414,330,587,779,136,69772,52147,16198,6357,310,6.2,0,0,2600,77777,0,999999999,14,0,0,88,0.2,0,0 +2013,12,25,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,20,2,30,98574,693,1414,332,477,788,90,57377,46870,10880,4209,310,6.2,0,0,2800,77777,0,999999999,12,0,0,88,0.2,0,0 +2013,12,25,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,1,30,98564,504,1414,326,313,621,91,36185,33748,10614,3759,320,5.1,0,0,2800,77777,0,999999999,10,0,0,88,0.2,0,0 +2013,12,25,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,2,32,98564,261,1414,327,123,332,61,13668,7936,6846,2116,320,4.6,0,0,3000,77777,0,999999999,12,0,0,88,0.2,0,0 +2013,12,25,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,2,34,98555,0,1326,323,0,0,0,0,0,0,0,310,2.6,0,0,3000,77777,0,999999999,12,0,0,88,0.2,0,0 +2013,12,25,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,3,42,98536,0,0,315,0,0,0,0,0,0,0,300,2.6,0,0,2500,77777,0,999999999,13,0,0,88,0.2,0,0 +2013,12,25,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,4,51,98517,0,0,308,0,0,0,0,0,0,0,290,1.5,0,0,1800,77777,0,999999999,14,0,0,88,0.2,0,0 +2013,12,25,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,6,62,98507,0,0,305,0,0,0,0,0,0,0,260,2.1,0,0,1500,77777,0,999999999,17,0,0,88,0.2,0,0 +2013,12,25,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,5,62,98498,0,0,300,0,0,0,0,0,0,0,220,1.5,0,0,1500,77777,0,999999999,16,0,0,88,0.2,0,0 +2013,12,25,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,5,66,98488,0,0,296,0,0,0,0,0,0,0,259,0,0,0,1600,77777,0,999999999,16,0,0,88,0.2,0,0 +2013,12,25,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,5,76,98468,0,0,288,0,0,0,0,0,0,0,270,1.5,0,0,1000,77777,0,999999999,16,0,0,88,0.2,0,0 +2013,12,26,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,5,76,98468,0,0,288,0,0,0,0,0,0,0,240,0,0,0,900,77777,0,999999999,16,0,0,88,0.2,0,0 +2013,12,26,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,5,81,98458,0,0,284,0,0,0,0,0,0,0,260,2.1,0,0,900,77777,0,999999999,16,0,0,88,0.2,0,0 +2013,12,26,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,5,81,98458,0,0,284,0,0,0,0,0,0,0,250,2.1,0,0,700,77777,0,999999999,16,0,0,88,0.2,0,0 +2013,12,26,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,5,81,98458,0,0,284,0,0,0,0,0,0,0,240,1.5,0,0,700,77777,0,999999999,16,0,0,88,0.2,0,0 +2013,12,26,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,7,4,81,98448,0,0,279,0,0,0,0,0,0,0,240,1.5,0,0,700,77777,0,999999999,14,0,0,88,0.2,0,0 +2013,12,26,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,4,87,98438,0,0,275,0,0,0,0,0,0,0,22,0,0,0,600,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,12,26,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,6,4,87,98438,0,0,287,0,0,0,0,0,0,0,178,0,3,3,700,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,12,26,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,5,3,87,98428,66,318,282,20,6,20,2213,0,2188,614,71,0,3,3,600,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,12,26,9,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,8.5,5.5,81,98463,336,1415,314,129,148,94,14258,6400,10421,3170,102,1.5,8,8,800,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,12,26,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12,8,76,98498,565,1415,316,356,581,124,40641,35308,14164,4990,270,3.1,3,3,1000,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,26,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13,8,72,98507,737,1415,321,504,780,97,60575,45809,11740,4600,260,2.1,3,3,1200,77777,9,999999999,21,0,0,88,0.2,0,0 +2013,12,26,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18,3,37,98555,841,1415,324,608,782,143,72331,53428,17060,6713,310,4.1,0,0,2200,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,12,26,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,3,37,98555,868,1415,324,634,786,151,75366,54429,17993,7111,320,5.1,0,0,2500,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,12,26,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,18.5,1.5,32,98560,819,1415,325,590,779,138,70141,53170,16512,6466,273,4.3,0,0,3000,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,12,26,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,0,28,98564,695,1415,325,480,791,91,57753,47666,10984,4247,320,3.6,0,0,3500,77777,9,999999999,9,0,0,88,0.2,0,0 +2013,12,26,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,0,28,98564,506,1415,325,315,622,92,36454,34208,10725,3797,300,4.1,0,0,3500,77777,9,999999999,9,0,0,88,0.2,0,0 +2013,12,26,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,19,1,30,98564,264,1415,326,125,284,72,13721,8278,7916,2355,310,3.6,0,0,3500,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,12,26,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,17,1,34,98546,0,1339,317,0,0,0,0,0,0,0,310,2.6,0,0,3100,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,12,26,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,2,41,98527,0,0,310,0,0,0,0,0,0,0,320,1.5,0,0,2500,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,12,26,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,3,47,98517,0,0,307,0,0,0,0,0,0,0,290,1.5,0,0,2200,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,12,26,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,12,4,58,98498,0,0,315,0,0,0,0,0,0,0,83,0,4,4,1600,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,12,26,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,3,54,98498,0,0,311,0,0,0,0,0,0,0,340,2.1,3,3,1200,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,12,26,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,2,50,98498,0,0,307,0,0,0,0,0,0,0,40,2.1,2,2,1000,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,12,26,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,4,66,98478,0,0,291,0,0,0,0,0,0,0,344,0,0,0,1000,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,12,27,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,4,71,98468,0,0,287,0,0,0,0,0,0,0,228,0,0,0,900,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,12,27,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,4,66,98478,0,0,291,0,0,0,0,0,0,0,321,0,0,0,1200,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,12,27,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,3,62,98478,0,0,307,0,0,0,0,0,0,0,208,0,5,5,1200,3048,9,999999999,13,0,0,88,0.2,0,0 +2013,12,27,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,2,57,98478,0,0,306,0,0,0,0,0,0,0,271,0,5,5,1700,3048,9,999999999,12,0,0,88,0.2,0,0 +2013,12,27,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,3,66,98468,0,0,321,0,0,0,0,0,0,0,291,0,9,9,1800,3048,9,999999999,13,0,0,88,0.2,0,0 +2013,12,27,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,3,62,98478,0,0,325,0,0,0,0,0,0,0,50,1.5,9,9,2200,3048,9,999999999,13,0,0,88,0.2,0,0 +2013,12,27,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,2,57,98478,0,0,324,0,0,0,0,0,0,0,330,2.6,9,9,2800,3048,9,999999999,12,0,0,88,0.2,0,0 +2013,12,27,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,11,4,62,98488,64,309,331,10,0,10,988,0,994,368,90,2.1,9,9,2000,3048,0,919999999,14,0,0,88,0.2,0,0 +2013,12,27,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,6,67,98498,334,1415,338,90,5,89,9978,203,9885,3051,292,0,9,9,900,3048,0,919999999,17,0,0,88,0.2,0,0 +2013,12,27,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,6,67,98498,564,1415,338,186,20,178,20660,1480,19864,6378,250,2.1,9,9,1000,3048,0,919999999,17,0,0,88,0.2,0,0 +2013,12,27,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,5,58,98507,736,1415,342,265,49,239,29667,4103,26938,9120,310,2.1,9,9,1200,3048,0,919999999,16,0,0,88,0.2,0,0 +2013,12,27,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,5,55,98517,841,1415,356,191,4,189,22195,291,22027,8374,250,4.6,10,10,1500,1067,0,919999999,16,0,0,88,0.2,0,0 +2013,12,27,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,5,51,98527,869,1415,351,326,28,309,36639,2505,34939,11941,330,2.6,9,9,1800,3048,0,919999999,16,0,0,88,0.2,0,0 +2013,12,27,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,5,48,98536,820,1415,356,304,72,262,34267,6152,29691,10374,330,2.6,9,9,2200,3048,0,919999999,16,0,0,88,0.2,0,0 +2013,12,27,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,5,48,98536,697,1415,356,247,49,223,27608,3955,25054,8414,190,1.5,9,9,2400,3048,0,919999999,16,0,0,88,0.2,0,0 +2013,12,27,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16,6,51,98536,508,1415,357,162,34,150,17993,2246,16719,5372,220,1.5,9,9,1700,3048,0,919999999,17,0,0,88,0.2,0,0 +2013,12,27,17,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,16,6,51,98536,266,1415,332,124,261,75,13636,7615,8267,2437,250,1.5,3,3,1900,3048,0,919999999,17,0,0,88,0.2,0,0 +2013,12,27,18,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,14,8,67,98517,0,1353,330,0,0,0,0,0,0,0,250,2.1,5,5,1300,3048,0,919999999,21,0,0,88,0.2,0,0 +2013,12,27,19,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,13,8,72,98507,0,0,329,0,0,0,0,0,0,0,43,0,6,6,1200,3048,0,919999999,21,0,0,88,0.2,0,0 +2013,12,27,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,12,8.5,79,98498,0,0,328,0,0,0,0,0,0,0,49,0,7,7,950,3048,9,999999999,22,0,0,88,0.2,0,0 +2013,12,27,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,11,9,87,98488,0,0,337,0,0,0,0,0,0,0,3,0,9,9,700,3048,0,919999999,24,0,0,88,0.2,0,0 +2013,12,27,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,11,9,87,98488,0,0,337,0,0,0,0,0,0,0,333,0,9,9,700,3048,0,919999999,24,0,0,88,0.2,0,0 +2013,12,27,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,11,9,87,98488,0,0,337,0,0,0,0,0,0,0,45,0,9,9,700,3048,0,919999999,24,0,0,88,0.2,0,0 +2013,12,27,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,9,93,98478,0,0,313,0,0,0,0,0,0,0,320,0,5,5,700,3048,0,919999999,24,0,0,88,0.2,0,0 +2013,12,28,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,8,93,98468,0,0,291,0,0,0,0,0,0,0,317,0,0,0,800,77777,0,919999999,21,0,0,88,0.2,0,0 +2013,12,28,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,4,66,98478,0,0,291,0,0,0,0,0,0,0,276,0,0,0,1700,77777,0,919999999,14,0,0,88,0.2,0,0 +2013,12,28,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,4,66,98478,0,0,291,0,0,0,0,0,0,0,125,0,0,0,1800,77777,0,919999999,14,0,0,88,0.2,0,0 +2013,12,28,4,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,10,3,62,98478,0,0,290,0,0,0,0,0,0,0,56,0,0,0,2000,77777,0,919999999,13,0,0,88,0.2,0,0 +2013,12,28,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,4,71,98468,0,0,287,0,0,0,0,0,0,0,284,0,0,0,2200,77777,0,919999999,14,0,0,88,0.2,0,0 +2013,12,28,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,4,76,98458,0,0,283,0,0,0,0,0,0,0,11,0,0,0,2200,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,12,28,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,7.5,3.5,76,98453,0,0,303,0,0,0,0,0,0,0,177,0,7,7,1550,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,12,28,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,3,76,98448,62,300,278,19,0,19,1861,0,1874,592,359,0,0,0,900,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,12,28,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,3,76,98448,333,1415,278,174,449,68,19731,15663,7768,2538,201,0,0,0,900,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,12,28,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,10,4,66,98478,563,1415,291,361,667,95,42147,37697,11171,4071,270,2.6,0,0,1400,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,12,28,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,3,47,98517,736,1415,307,514,805,95,62014,48703,11465,4489,290,2.1,0,0,1500,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,12,28,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,3,42,98536,841,1415,315,609,782,143,72350,53434,17060,6714,320,3.6,0,0,2000,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,12,28,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,2,34,98555,870,1415,323,636,786,152,75635,54875,18162,7172,280,3.6,0,0,2400,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,12,28,14,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,18,1.5,33,98555,822,1415,322,593,780,139,70433,53280,16600,6503,14,3.8,0,0,2800,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,12,28,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,1,32,98555,699,1415,322,483,792,91,58077,47535,11006,4262,310,4.1,0,0,3200,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,12,28,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,1,32,98555,510,1415,322,319,626,92,36881,34351,10711,3804,310,4.1,0,0,3200,77777,9,999999999,10,0,0,88,0.2,0,0 +2013,12,28,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,0,30,98555,269,1415,321,128,292,73,14161,8945,8060,2404,310,3.6,0,0,3100,77777,9,999999999,9,0,0,88,0.2,0,0 +2013,12,28,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,1,39,98527,0,1367,309,0,0,0,0,0,0,0,290,2.1,0,0,2500,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,12,28,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,2,47,98507,0,0,301,0,0,0,0,0,0,0,290,1.5,0,0,2100,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,12,28,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,4,62,98488,0,0,295,0,0,0,0,0,0,0,224,0,0,0,1600,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,12,28,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,9,4,71,98468,0,0,287,0,0,0,0,0,0,0,240,1,0,0,1200,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,12,28,22,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,9,3,66,98468,0,0,303,0,0,0,0,0,0,0,260,1.5,5,5,1200,77777,9,999999999,13,0,0,88,0.2,0,0 +2013,12,28,23,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,9,2,61,98468,0,0,299,0,0,0,0,0,0,0,320,1.5,4,4,1400,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,12,28,24,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,9,1,57,98468,0,0,298,0,0,0,0,0,0,0,300,2.1,4,4,1400,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,12,29,1,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,9,1,57,98468,0,0,298,0,0,0,0,0,0,0,320,1.5,4,4,1800,77777,9,999999999,11,0,0,88,0.2,0,0 +2013,12,29,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,7,2,70,98448,0,0,296,0,0,0,0,0,0,0,310,2.1,6,6,1600,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,12,29,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,7,2,70,98448,0,0,296,0,0,0,0,0,0,0,270,1.5,6,6,1200,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,12,29,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,5.5,2,78,98433,0,0,293,0,0,0,0,0,0,0,352,1.5,7,7,900,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,12,29,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4,2,87,98418,0,0,265,0,0,0,0,0,0,0,240,1.5,0,0,600,77777,9,999999999,12,0,0,88,0.2,0,0 +2013,12,29,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4,2,87,98418,0,0,265,0,0,0,0,0,0,0,240,1.5,0,0,500,77777,0,999999999,12,0,0,88,0.2,0,0 +2013,12,29,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,4,2,87,98418,0,0,265,0,0,0,0,0,0,0,240,1.5,0,0,400,77777,0,999999999,12,0,0,88,0.2,0,0 +2013,12,29,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4,3,93,98418,60,291,266,19,0,19,1809,0,1821,577,32,0,0,0,500,77777,0,999999999,13,0,0,88,0.2,0,0 +2013,12,29,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,3,71,98458,332,1415,282,173,448,68,19611,15512,7749,2529,260,3.1,0,0,900,77777,0,999999999,13,0,0,88,0.2,0,0 +2013,12,29,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,8,2,66,98458,562,1415,281,362,664,98,42136,38284,11436,4151,260,3.1,0,0,1400,77777,0,999999999,12,0,0,88,0.2,0,0 +2013,12,29,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,3,51,98507,736,1415,302,514,805,95,61976,48687,11462,4487,300,3.6,0,0,1500,77777,0,999999999,13,0,0,88,0.2,0,0 +2013,12,29,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,4,51,98517,841,1415,308,608,782,142,72276,53033,16948,6677,300,3.6,0,0,1500,77777,0,999999999,14,0,0,88,0.2,0,0 +2013,12,29,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,4,45,98536,871,1415,316,635,786,150,75519,54104,17947,7103,290,4.1,0,0,1300,77777,0,999999999,14,0,0,88,0.2,0,0 +2013,12,29,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,1,32,98555,823,1415,322,595,780,140,70650,53524,16707,6543,310,4.6,0,0,2200,77777,0,999999999,10,0,0,88,0.2,0,0 +2013,12,29,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,1,32,98555,701,1415,322,485,793,92,58309,47651,11038,4277,320,4.1,0,0,2500,77777,0,999999999,10,0,0,88,0.2,0,0 +2013,12,29,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,1,32,98555,513,1415,322,321,629,92,37139,34570,10746,3821,310,4.6,0,0,3000,77777,0,999999999,10,0,0,88,0.2,0,0 +2013,12,29,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,1,32,98555,272,1415,322,130,294,74,14352,9109,8143,2432,310,4.1,0,0,3000,77777,0,999999999,10,0,0,88,0.2,0,0 +2013,12,29,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,1,36,98536,0,1382,313,0,0,0,0,0,0,0,320,3.6,0,0,3200,77777,0,999999999,11,0,0,88,0.2,0,0 +2013,12,29,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,2,44,98517,0,0,306,0,0,0,0,0,0,0,42,0,0,0,2500,77777,0,999999999,12,0,0,88,0.2,0,0 +2013,12,29,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,12,3,54,98498,0,0,298,0,0,0,0,0,0,0,123,0,0,0,2000,77777,0,999999999,13,0,0,88,0.2,0,0 +2013,12,29,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,11,4,62,98488,0,0,295,0,0,0,0,0,0,0,163,0,0,0,1000,77777,0,999999999,14,0,0,88,0.2,0,0 +2013,12,29,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,4,71,98468,0,0,287,0,0,0,0,0,0,0,222,0,0,0,900,77777,0,999999999,14,0,0,88,0.2,0,0 +2013,12,29,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,9,6,81,98468,0,0,289,0,0,0,0,0,0,0,163,0,0,0,800,77777,0,999999999,18,0,0,88,0.2,0,0 +2013,12,29,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,6,87,98458,0,0,285,0,0,0,0,0,0,0,125,0,0,0,800,77777,0,999999999,18,0,0,88,0.2,0,0 +2013,12,30,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,8,6,87,98458,0,0,285,0,0,0,0,0,0,0,88,0,0,0,800,77777,0,999999999,18,0,0,88,0.2,0,0 +2013,12,30,2,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,6,93,98448,0,0,281,0,0,0,0,0,0,0,184,0,0,0,600,77777,0,999999999,18,0,0,88,0.2,0,0 +2013,12,30,3,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,7,6,93,98448,0,0,281,0,0,0,0,0,0,0,208,0,0,0,600,77777,0,999999999,18,0,0,88,0.2,0,0 +2013,12,30,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,6,5.5,97,98438,0,0,319,0,0,0,0,0,0,0,82,0,10,10,500,77777,9,999999999,17,0,0,88,0.2,0,0 +2013,12,30,5,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,5,100,98428,0,0,272,0,0,0,0,0,0,0,109,0,0,0,400,77777,0,999999999,16,0,0,88,0.2,0,0 +2013,12,30,6,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4,4,100,98418,0,0,267,0,0,0,0,0,0,0,358,0,0,0,400,77777,0,999999999,14,0,0,88,0.2,0,0 +2013,12,30,7,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4,4,100,98418,0,0,267,0,0,0,0,0,0,0,260,0,0,0,350,77777,0,999999999,14,0,0,88,0.2,0,0 +2013,12,30,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,4,4,100,98418,59,283,267,18,0,18,1758,0,1770,563,159,0,0,0,350,77777,0,999999999,14,0,0,88,0.2,0,0 +2013,12,30,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,5,4,93,98428,330,1415,271,172,374,85,19118,14976,9429,2934,95,0,0,0,400,77777,0,999999999,14,0,0,88,0.2,0,0 +2013,12,30,10,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,10,4,66,98477,561,1415,308,335,537,122,38310,33313,13991,4921,144,1.3,5,5,1200,77777,9,999999999,14,0,0,88,0.2,0,0 +2013,12,30,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,4,48,98527,736,1415,312,513,746,125,60555,48490,14756,5660,100,2.6,0,0,2000,77777,0,999999999,14,0,0,88,0.2,0,0 +2013,12,30,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,3,42,98536,842,1415,315,609,783,143,72435,53467,17086,6724,100,3.1,0,0,2200,77777,0,999999999,13,0,0,88,0.2,0,0 +2013,12,30,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,-1,27,98555,872,1415,319,641,786,156,76165,56004,18582,7320,130,4.1,0,0,3400,77777,0,999999999,9,0,0,88,0.2,0,0 +2013,12,30,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,-2,25,98555,825,1415,318,599,771,149,70899,54545,17715,6893,130,4.1,0,0,3100,77777,0,999999999,8,0,0,88,0.2,0,0 +2013,12,30,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,2,34,98555,703,1415,342,452,599,154,52238,42264,17885,6567,100,4.1,5,5,3100,77777,0,999999999,12,0,0,88,0.2,0,0 +2013,12,30,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,18,2,34,98555,516,1415,342,300,513,113,34208,30536,12903,4459,120,4.1,5,5,3100,3048,0,999999999,12,0,0,88,0.2,0,0 +2013,12,30,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15,9,67,98527,275,1415,336,121,271,69,13425,6982,7631,2340,150,3.6,5,5,1800,3048,0,919999999,23,0,0,88,0.2,0,0 +2013,12,30,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15,8,63,98527,0,1398,335,0,0,0,0,0,0,0,140,3.1,5,5,1700,3048,0,919999999,21,0,0,88,0.2,0,0 +2013,12,30,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,8,67,98517,0,0,330,0,0,0,0,0,0,0,120,2.1,5,5,2100,3048,0,919999999,21,0,0,88,0.2,0,0 +2013,12,30,20,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,10,82,98507,0,0,340,0,0,0,0,0,0,0,140,3.1,8,8,1600,3048,0,19999999,26,0,0,88,0.2,0,0 +2013,12,30,21,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,13,11,88,98507,0,0,349,0,0,0,0,0,0,0,120,4.6,9,9,1400,3048,0,19999999,29,0,0,88,0.2,0,0 +2013,12,30,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,11,88,98507,0,0,349,0,0,0,0,0,0,0,140,3.6,9,9,900,2438,0,19999999,29,0,0,88,0.2,0,0 +2013,12,30,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,12,100,98498,0,0,355,0,0,0,0,0,0,0,130,3.1,10,10,1000,762,0,19999999,32,0,0,88,0.2,0,0 +2013,12,30,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,12,100,98498,0,0,355,0,0,0,0,0,0,0,110,3.6,10,10,1000,914,0,19999999,32,0,0,88,0.2,0,0 +2013,12,31,1,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,12,100,98498,0,0,355,0,0,0,0,0,0,0,130,3.6,10,10,800,914,0,19999999,32,0,0,88,0.2,0,0 +2013,12,31,2,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,12,100,98498,0,0,355,0,0,0,0,0,0,0,140,2.6,10,10,1400,914,0,19999999,32,0,0,88,0.2,0,0 +2013,12,31,3,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,12,12,100,98498,0,0,355,0,0,0,0,0,0,0,160,2.6,10,10,1500,914,0,19999999,32,0,0,88,0.2,0,0 +2013,12,31,4,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9?9?9?9*9*9*9*9*9,11,11,100,98488,0,0,349,0,0,0,0,0,0,0,120,3.6,10,10,2400,914,0,19999999,29,0,0,88,0.2,0,0 +2013,12,31,5,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,12,12,100,98498,0,0,355,0,0,0,0,0,0,0,312,2.5,10,10,1400,914,9,999999999,32,0,0,88,0.2,0,0 +2013,12,31,6,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,12,12,100,98498,0,0,355,0,0,0,0,0,0,0,53,3.1,10,10,1833,914,9,999999999,32,0,0,88,0.2,0,0 +2013,12,31,7,60,?9?9?9?9E0?9?9?9*9*9?9?9?9?9*9?9?9*9*9*9*9*9,12,12,100,98498,0,0,355,0,0,0,0,0,0,0,315,3.6,10,10,2266,914,9,999999999,32,0,0,88,0.2,0,0 +2013,12,31,8,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,12,100,98498,57,276,345,9,0,9,871,0,877,328,120,4.1,9,9,2700,3048,9,999999999,32,0,0,88,0.2,0,0 +2013,12,31,9,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,12,12,100,98498,329,1415,355,53,0,53,5228,0,5268,2077,130,3.6,10,10,2300,2438,9,999999999,32,0,0,88,0.2,0,0 +2013,12,31,10,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,13,12,94,98507,561,1415,350,183,35,169,20296,2402,18831,6152,130,4.1,9,9,2300,2438,9,999999999,32,0,0,88,0.2,0,0 +2013,12,31,11,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,11,82,98517,735,1415,364,160,0,160,16223,0,16365,6893,160,2.6,10,10,2300,2438,9,999999999,29,0,0,88,0.2,0,0 +2013,12,31,12,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,11,82,98517,842,1415,364,189,2,188,21967,152,21924,8366,150,3.6,10,10,2400,2438,9,999999999,29,0,0,88,0.2,0,0 +2013,12,31,13,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,14,11,82,98517,873,1415,364,198,3,196,23021,199,22934,8806,140,2.6,10,10,2200,2438,9,999999999,29,0,0,88,0.2,0,0 +2013,12,31,14,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,11,77,98527,827,1415,369,185,1,184,21446,102,21450,8157,130,4.1,10,10,2000,2438,9,999999999,29,0,0,88,0.2,0,0 +2013,12,31,15,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,10,68,98536,706,1415,373,152,0,152,15385,0,15518,6493,130,4.6,10,10,3200,2438,9,999999999,26,0,0,88,0.2,0,0 +2013,12,31,16,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,16,10,68,98536,518,1415,373,101,0,101,10077,0,10159,4106,120,5.1,10,10,3200,2438,9,999999999,26,0,0,88,0.2,0,0 +2013,12,31,17,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,10,72,98527,278,1415,367,42,0,42,4080,0,4110,1612,130,3.6,10,10,3400,2438,9,999999999,26,0,0,88,0.2,0,0 +2013,12,31,18,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9,15,10,72,98527,0,1413,367,0,0,0,0,0,0,0,120,2.1,10,10,3400,2438,9,999999999,26,0,0,88,0.2,0,0 +2013,12,31,19,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9*9*9*9*9*9,15,11,77,98527,0,0,369,0,0,0,0,0,0,0,14,0,10,10,3200,2438,9,999999999,29,0,0,88,0.2,0,0 +2013,12,31,20,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,11,77,98527,0,0,369,0,0,0,0,0,0,0,319,0,10,10,3000,2438,9,999999999,29,0,0,88,0.2,0,0 +2013,12,31,21,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,15,11,77,98527,0,0,369,0,0,0,0,0,0,0,8,0,10,10,2300,2438,9,999999999,29,0,0,88,0.2,0,0 +2013,12,31,22,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,11,82,98517,0,0,353,0,0,0,0,0,0,0,279,0,9,9,2200,2438,9,999999999,29,0,0,88,0.2,0,0 +2013,12,31,23,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,14,11,82,98517,0,0,353,0,0,0,0,0,0,0,15,0,9,9,1800,2743,9,999999999,29,0,0,88,0.2,0,0 +2013,12,31,24,60,?9?9?9?9E0?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9,13,12,94,98507,0,0,350,0,0,0,0,0,0,0,70,0,9,9,1700,2743,9,999999999,32,0,0,88,0.2,0,0 diff --git a/AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD500.mos b/AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD500.mos new file mode 100644 index 0000000000..78fb8123d2 --- /dev/null +++ b/AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD500.mos @@ -0,0 +1,8800 @@ +#1 +double tab1(8760,30) +#LOCATION,New Delhi Gandhi Intl AP,DL,IND,ISD-TMYx,421810,28.56700,77.10300,5.5,236.8 +#DESIGN CONDITIONS,1,2017 ASHRAE Handbook -- Fundamentals - Chapter 14 Climatic Design Information,,Heating,1,5.8,6.9,-0.9,3.6,19,1.1,4.2,21,7.7,18.5,6.8,18.2,1.5,250,Cooling,5,12.5,43.2,22.4,42,22.3,40.8,22.4,29.4,33.2,28.7,32.5,28.2,31.8,4.7,300,28.9,26.2,30.9,28,24.8,30.6,27.2,23.6,30,98.4,32.6,95.1,32.9,92.4,31.5,32.2,Extremes,7.9,6.7,5.9,3.1,45.5,1.8,1.5,1.8,46.5,0.8,47.4,-0.2,48.3,-1.5,49.4,2.6 +#TYPICAL/EXTREME PERIODS,8,Wet Season - Week Near Average For Period,Typical,8/10,8/16,Dry Season - Week Near Average For Period,Typical,11/ 8,11/14,Summer - Week Nearest Max Temperature For Period,Extreme,5/13,5/19,Summer - Week Nearest Average Temperature For Period,Typical,4/15,4/21,Winter - Week Nearest Min Temperature For Period,Extreme,12/24,12/30,Winter - Week Nearest Average Temperature For Period,Typical,11/12,11/18,Autumn - Week Nearest Average Temperature For Period,Typical,7/29,8/ 4,Spring - Week Nearest Average Temperature For Period,Typical,2/12,2/18 +#GROUND TEMPERATURES,3,.5,,,,16.62,18.30,21.56,24.66,30.51,33.59,34.44,32.88,29.27,24.77,20.34,17.42,2,,,,18.93,19.34,21.20,23.28,27.78,30.66,32.09,31.76,29.71,26.60,23.10,20.35,4,,,,21.33,21.03,21.85,23.03,26.00,28.23,29.67,30.03,29.12,27.30,24.93,22.78 +#HOLIDAYS/DAYLIGHT SAVINGS,No,0,0,0 +#COMMENTS 1,"NCEI ISD - #years=[23] Period of Record=1997-2019; Jan=2019; Feb=2016; Mar=2001; Apr=2008; May=2011; Jun=1998; Jul=2018; Aug=2004; Sep=2017; Oct=2016; Nov=2008; Dec=2013" +#COMMENTS 2,"Downloaded from Climate.Onebuilding.org -- Ground temps represent undisturbed earth temperatures - calculated from this weather data." +#DATA PERIODS,1,1,Data,Sunday,1/ 1,12/31 +#C1 Time in seconds. Beginning of a year is 0s. +#C2 Dry bulb temperature in Celsius at indicated time +#C3 Dew point temperature in Celsius at indicated time +#C4 Relative humidity in percent at indicated time +#C5 Atmospheric station pressure in Pa at indicated time +#C6 Extraterrestrial horizontal radiation in Wh/m2 +#C7 Extraterrestrial direct normal radiation in Wh/m2 +#C8 Horizontal infrared radiation intensity in Wh/m2 +#C9 Global horizontal radiation in Wh/m2 +#C10 Direct normal radiation in Wh/m2 +#C11 Diffuse horizontal radiation in Wh/m2 +#C12 Averaged global horizontal illuminance in lux during minutes preceding the indicated time +#C13 Direct normal illuminance in lux during minutes preceding the indicated time +#C14 Diffuse horizontal illuminance in lux during minutes preceding the indicated time +#C15 Zenith luminance in Cd/m2 during minutes preceding the indicated time +#C16 Wind direction at indicated time. N=0, E=90, S=180, W=270 +#C17 Wind speed in m/s at indicated time +#C18 Total sky cover at indicated time +#C19 Opaque sky cover at indicated time +#C20 Visibility in km at indicated time +#C21 Ceiling height in m +#C22 Present weather observation +#C23 Present weather codes +#C24 Precipitable water in mm +#C25 Aerosol optical depth +#C26 Snow depth in cm +#C27 Days since last snowfall +#C28 Albedo +#C29 Liquid precipitation depth in mm at indicated time +#C30 Liquid precipitation quantity +0.0 9 6 81 98468 0 0 289 0 0 0 0 0 0 0 156 0 0 0 1000 2000 0 999999999 18 0 0 88 0.2 0 0 +3600.0 9 6 81 98468 0 0 289 0 0 0 0 0 0 0 156 0 0 0 1000 2000 0 999999999 18 0 0 88 0.2 0 0 +7200.0 8.8 6.4 85 98901 0 0 317 0 0 0 0 0 0 0 119 0 8 8 750 2000 9 999999999 18 0 0 88 0.2 0 0 +10800.0 8.6 6.9 89 99334 0 0 323 0 0 0 0 0 0 0 60 0 9 9 500 2000 0 999999999 19 0 0 88 0.2 0 0 +14400.0 8.5 7.1 91 99219 0 0 323 0 0 0 0 0 0 0 53 0 9 9 666 2000 9 999999999 20 0 0 88 0.2 0 0 +18000.0 8.3 7.2 93 99104 0 0 331 0 0 0 0 0 0 0 313 0 10 10 833 2000 9 999999999 20 0 0 88 0.2 0 0 +21600.0 7 5.7 91 99172 0 0 280 0 0 0 0 0 0 0 161 0 0 0 500 2000 0 999999999 17 0 0 88 0.2 0 0 +25200.0 6 4 87 98438 0 0 275 0 0 0 0 0 0 0 330 0 0 0 500 2000 0 999999999 14 0 0 88 0.2 0 0 +28800.0 7 5 87 98448 55 263 280 17 0 17 1632 0 1643 527 46 0 0 0 400 2000 0 999999999 16 0 0 88 0.2 0 0 +32400.0 7.8 6.5 91 99413 327 1415 284 169 434 69 19085 14275 7760 2524 225 0 0 0 500 2000 0 999999999 19 0 0 88 0.2 0 0 +36000.0 12 8 76 98498 560 1415 303 356 669 91 41615 35899 10673 3909 240 1.5 0 0 900 2000 0 999999999 21 0 0 88 0.2 0 0 +39600.0 15 8 63 98527 736 1415 316 510 804 91 61540 46388 11043 4340 260 1.5 0 0 1000 2000 0 999999999 21 0 0 88 0.2 0 0 +43200.0 16.6 9.8 64 99471 844 1415 325 604 856 93 74059 49627 11428 4633 270 2.1 0 0 1000 2000 0 999999999 26 0 0 88 0.2 0 0 +46800.0 20 7 43 98574 876 1415 338 636 787 149 75753 52925 17763 7057 260 2.1 0 0 1800 2000 0 999999999 19 0 0 88 0.2 0 0 +50400.0 21 6 38 98583 831 1415 341 597 781 137 70964 51789 16398 6461 270 2.6 0 0 2200 2000 0 999999999 17 0 0 88 0.2 0 0 +54000.0 21.2 7.2 40 99154 711 1415 358 482 768 96 57758 44951 11485 4463 270 2.6 3 3 2000 2000 0 999999999 19 0 0 88 0.2 0 0 +57600.0 21 5 35 98583 524 1415 355 324 618 95 37466 33657 10988 3926 300 2.6 3 3 3000 2000 0 999999999 16 0 0 88 0.2 0 0 +61200.0 21 5 35 98583 284 1415 355 136 360 64 15228 9627 7165 2257 280 2.1 3 3 3000 2000 0 999999999 16 0 0 88 0.2 0 0 +64800.0 17.6 10.5 63 99130 6 1415 331 2 0 2 178 0 179 72 101 0 0 0 2000 2000 0 999999999 27 0 0 88 0.2 0 0 +68400.0 17 6 48 98546 0 29 323 0 0 0 0 0 0 0 318 0 0 0 2500 2000 0 999999999 17 0 0 88 0.2 0 0 +72000.0 15 6 55 98527 0 0 314 0 0 0 0 0 0 0 147 0 0 0 2500 2000 0 999999999 17 0 0 88 0.2 0 0 +75600.0 14 7 63 98517 0 0 324 0 0 0 0 0 0 0 90 1.5 3 3 2500 2000 0 999999999 19 0 0 88 0.2 0 0 +79200.0 13 7 67 98507 0 0 320 0 0 0 0 0 0 0 110 2.1 3 3 2200 2000 0 999999999 19 0 0 88 0.2 0 0 +82800.0 13 9 77 98507 0 0 322 0 0 0 0 0 0 0 140 2.1 3 3 2000 2000 0 999999999 24 0 0 88 0.2 0 0 +86400.0 13.6 9.7 77 99218 0 0 330 0 0 0 0 0 0 0 140 2.6 5 5 1000 2000 0 999999999 25 0 0 88 0.2 0 0 +90000.0 13 9 77 98507 0 0 327 0 0 0 0 0 0 0 59 0 5 5 1500 2000 0 999999999 24 0 0 88 0.2 0 0 +93600.0 12 9 82 98498 0 0 322 0 0 0 0 0 0 0 84 0 5 5 1500 2000 0 999999999 24 0 0 88 0.2 0 0 +97200.0 11.6 9.2 85 99199 0 0 321 0 0 0 0 0 0 0 284 0 5 5 1000 2000 0 999999999 24 0 0 88 0.2 0 0 +100800.0 11 9 87 98488 0 0 318 0 0 0 0 0 0 0 212 0 5 5 1200 2000 0 999999999 24 0 0 88 0.2 0 0 +104400.0 10 8 87 98478 0 0 308 0 0 0 0 0 0 0 154 0 3 3 1000 2000 0 999999999 21 0 0 88 0.2 0 0 +108000.0 9.4 7.7 89 99216 0 0 305 0 0 0 0 0 0 0 248 0 3 3 500 2000 9 999999999 21 0 0 88 0.2 0 0 +111600.0 9 7 87 98468 0 0 302 0 0 0 0 0 0 0 104 0 3 3 600 2000 9 999999999 19 0 0 88 0.2 0 0 +115200.0 11 9 87 98488 54 257 313 16 0 16 1573 0 1583 513 120 1.5 3 3 600 2000 9 999999999 24 0 0 88 0.2 0 0 +118800.0 9.8 8.6 92 99395 327 1415 307 166 415 70 18692 13432 7925 2567 90 2.1 3 3 500 2000 9 999999999 23 0 0 88 0.2 0 0 +122400.0 14 10 77 98517 560 1415 328 351 641 97 40726 34453 11277 4106 110 2.6 3 3 800 2000 9 999999999 26 0 0 88 0.2 0 0 +126000.0 17 9 59 98546 736 1415 340 503 781 96 60474 45291 11573 4539 110 3.1 3 3 1200 2000 9 999999999 23 0 0 88 0.2 0 0 +129600.0 18.6 10.4 59 99431 845 1415 335 605 856 93 74136 49324 11411 4629 110 3.6 0 0 1000 2000 9 999999999 27 0 0 88 0.2 0 0 +133200.0 21 7 40 98583 878 1415 342 638 787 149 75957 53015 17854 7093 140 3.1 0 0 1600 2000 9 999999999 19 0 0 88 0.2 0 0 +136800.0 22 7 38 98592 833 1415 347 598 859 91 73353 50839 11235 4539 140 2.6 0 0 1700 2000 9 999999999 19 0 0 88 0.2 0 0 +140400.0 21.6 10.3 49 99177 713 1415 349 488 796 87 58897 44033 10482 4104 160 2.6 0 0 1000 2000 9 999999999 27 0 0 88 0.2 0 0 +144000.0 22 7 38 98592 527 1415 347 330 651 87 38413 33819 10168 3678 200 2.1 0 0 1800 2000 9 999999999 19 0 0 88 0.2 0 0 +147600.0 22 7 38 98592 287 1415 347 140 378 63 15686 9834 7109 2254 210 2.1 0 0 1800 2000 9 999999999 19 0 0 88 0.2 0 0 +151200.0 18.4 11.5 64 99215 9 1415 335 3 0 3 276 0 278 108 200 1.5 0 0 1000 2000 9 999999999 30 0 0 88 0.2 0 0 +154800.0 18 8 52 98555 0 45 330 0 0 0 0 0 0 0 224 0 0 0 1800 2000 9 999999999 21 0 0 88 0.2 0 0 +158400.0 16 9 63 98536 0 0 322 0 0 0 0 0 0 0 87 0 0 0 1500 2000 9 999999999 23 0 0 88 0.2 0 0 +162000.0 14.6 8.7 68 99354 0 0 315 0 0 0 0 0 0 0 19 0 0 0 1000 2000 9 999999999 23 0 0 88 0.2 0 0 +165600.0 14 9 72 98517 0 0 313 0 0 0 0 0 0 0 281 0 0 0 1500 2000 9 999999999 23 0 0 88 0.2 0 0 +169200.0 13 10 82 98507 0 0 310 0 0 0 0 0 0 0 298 0 0 0 1200 2000 9 999999999 26 0 0 88 0.2 0 0 +172800.0 11.8 10.6 92 99346 0 0 305 0 0 0 0 0 0 0 10 0 0 0 1000 2000 9 999999999 28 0 0 88 0.2 0 0 +176400.0 12 10 88 98498 0 0 305 0 0 0 0 0 0 0 151 0 0 0 1000 2000 9 999999999 26 0 0 88 0.2 0 0 +180000.0 11 9 87 98488 0 0 300 0 0 0 0 0 0 0 238 0 0 0 1000 2000 9 999999999 24 0 0 88 0.2 0 0 +183600.0 11 9 87 98488 0 0 300 0 0 0 0 0 0 0 186 0 0 0 600 2000 9 999999999 24 0 0 88 0.2 0 0 +187200.0 11 9 87 98488 0 0 300 0 0 0 0 0 0 0 280 0 0 0 600 2000 0 999999999 24 0 0 88 0.2 0 0 +190800.0 10 9 93 98478 0 0 296 0 0 0 0 0 0 0 206 0 0 0 300 2000 0 999999999 24 0 0 88 0.2 0 0 +194400.0 9.4 8.6 95 99361 0 0 293 0 0 0 0 0 0 0 193 0 0 0 200 2000 0 999999999 23 0 0 88 0.2 0 0 +198000.0 8 8 100 98458 0 0 287 0 0 0 0 0 0 0 97 0 0 0 200 2000 0 999999999 21 0 0 88 0.2 0 0 +201600.0 7 7 100 98448 53 252 282 16 0 16 1569 0 1579 509 260 1.5 0 0 50 2000 0 999999999 19 0 0 88 0.2 0 0 +205200.0 8.4 8.4 100 99546 326 1415 289 168 305 98 18384 12929 10718 3182 230 2.1 0 0 49 2000 0 999999999 23 0 0 88 0.2 0 0 +208800.0 9 8 93 98468 559 1415 335 150 22 141 16945 1444 16013 5469 260 2.6 10 10 75 2000 0 999999999 21 0 0 88 0.2 0 0 +212400.0 9 9 100 98468 737 1415 292 510 635 179 58390 45422 20562 7508 250 3.1 0 0 300 2000 0 999999999 24 0 0 88 0.2 0 0 +216000.0 12.8 11.2 90 99541 846 1415 310 605 855 93 74095 48837 11446 4646 270 2.6 0 0 500 2000 0 999999999 30 0 0 88 0.2 0 0 +219600.0 15 11 77 98527 880 1415 319 635 787 145 75637 50824 17370 6936 260 3.1 0 0 1100 2000 0 999999999 29 0 0 88 0.2 0 0 +223200.0 16 11 72 98536 835 1415 324 596 852 92 72916 48608 11317 4582 280 3.1 0 0 1100 2000 0 999999999 29 0 0 88 0.2 0 0 +226800.0 18.6 10.9 61 99353 716 1415 336 490 797 86 59155 43791 10430 4090 290 4.1 0 0 1000 2000 0 999999999 28 0 0 88 0.2 0 0 +230400.0 19 10 56 98564 530 1415 336 331 643 89 38407 32797 10389 3759 290 4.6 0 0 1300 2000 0 999999999 26 0 0 88 0.2 0 0 +234000.0 18 10 59 98555 290 1415 332 142 377 64 15841 9497 7206 2289 290 4.1 0 0 1500 2000 0 999999999 26 0 0 88 0.2 0 0 +237600.0 16.6 9.8 64 99315 13 1415 325 4 0 4 377 0 379 145 290 2.6 0 0 1000 2000 0 999999999 25 0 0 88 0.2 0 0 +241200.0 15 9 67 98527 0 61 317 0 0 0 0 0 0 0 280 2.6 0 0 1600 2000 0 999999999 23 0 0 88 0.2 0 0 +244800.0 13 8 72 98507 0 0 308 0 0 0 0 0 0 0 280 2.6 0 0 1600 2000 0 999999999 21 0 0 88 0.2 0 0 +248400.0 13.2 10.9 86 99389 0 0 311 0 0 0 0 0 0 0 320 3.1 0 0 1000 2000 0 999999999 29 0 0 88 0.2 0 0 +252000.0 12 10 88 98498 0 0 305 0 0 0 0 0 0 0 250 2.6 0 0 700 2000 0 999999999 26 0 0 88 0.2 0 0 +255600.0 11 10 94 98488 0 0 301 0 0 0 0 0 0 0 250 2.1 0 0 600 2000 0 999999999 26 0 0 88 0.2 0 0 +259200.0 11.2 10.4 95 99360 0 0 302 0 0 0 0 0 0 0 250 2.1 0 0 1000 2000 0 999999999 27 0 0 88 0.2 0 0 +262800.0 10 10 100 98478 0 0 297 0 0 0 0 0 0 0 225 0 0 0 350 2000 0 999999999 26 0 0 88 0.2 0 0 +266400.0 10 10 100 98478 0 0 297 0 0 0 0 0 0 0 240 2.1 0 0 250 2000 0 999999999 26 0 0 88 0.2 0 0 +270000.0 9.4 9.4 100 99313 0 0 339 0 0 0 0 0 0 0 250 2.6 10 10 50 2000 0 999999999 25 0 0 88 0.2 0 0 +273600.0 9 9 100 98468 0 0 337 0 0 0 0 0 0 0 250 2.1 10 10 0 2000 0 999999999 24 0 0 88 0.2 0 0 +277200.0 8.6 8.6 100 98705 0 0 334 0 0 0 0 0 0 0 310 1.8 10 10 100 2000 9 999999999 23 0 0 88 0.2 0 0 +280800.0 8.4 8.4 100 99283 0 0 333 0 0 0 0 0 0 0 270 2.6 10 10 49 2000 0 999999999 22 0 0 88 0.2 0 0 +284400.0 8 8 100 98458 0 0 331 0 0 0 0 0 0 0 280 3.1 10 10 50 2000 0 999999999 21 0 0 88 0.2 0 0 +288000.0 8 8 100 98458 52 248 331 5 0 5 485 0 488 193 260 2.6 10 10 100 2000 0 999999999 21 0 0 88 0.2 0 0 +291600.0 8.8 8.8 100 99423 326 1415 335 53 0 53 5195 0 5234 2056 270 2.6 10 10 50 30 0 999999999 23 0 0 88 0.2 0 0 +295200.0 8 8 100 98458 560 1415 331 112 0 112 11268 0 11360 4616 270 2.1 10 10 200 30 0 999999999 21 0 0 88 0.2 0 0 +298800.0 10 9 93 98478 737 1415 309 504 623 179 57714 44559 20582 7517 250 1.5 3 3 500 2000 0 999999999 24 0 0 88 0.2 0 0 +302400.0 12 9.6 85 99475 847 1415 323 566 693 150 66882 45896 17807 7008 250 2.1 5 5 500 2000 0 999999999 25 0 0 88 0.2 0 0 +306000.0 13 10 82 98507 881 1415 328 594 712 149 70608 46826 17820 7098 260 2.1 5 5 1100 2000 0 999999999 26 0 0 88 0.2 0 0 +309600.0 15 10 72 98527 838 1415 337 557 701 142 66095 45455 16849 6648 320 2.1 5 5 1100 2000 0 999999999 26 0 0 88 0.2 0 0 +313200.0 16.4 10.8 69 99206 719 1415 345 459 650 128 53722 40322 15010 5719 320 2.1 5 5 1000 2000 0 999999999 28 0 0 88 0.2 0 0 +316800.0 17 9 59 98546 534 1415 346 311 508 119 35321 29661 13573 4716 20 1.5 5 5 1300 2000 0 999999999 23 0 0 88 0.2 0 0 +320400.0 17 9 59 98546 294 1415 346 134 307 71 14933 8815 7869 2457 264 0 5 5 1500 2000 0 999999999 23 0 0 88 0.2 0 0 +324000.0 15.6 10.7 73 99150 16 1415 341 5 0 5 445 0 448 169 270 1.5 5 5 1000 2000 0 999999999 28 0 0 88 0.2 0 0 +327600.0 14 10 77 98517 0 77 333 0 0 0 0 0 0 0 99 0 5 5 1500 3048 0 999999999 26 0 0 88 0.2 0 0 +331200.0 14 10 77 98517 0 0 333 0 0 0 0 0 0 0 5 0 5 5 1500 3048 0 999999999 26 0 0 88 0.2 0 0 +334800.0 12.6 10.3 86 99228 0 0 327 0 0 0 0 0 0 0 249 0 5 5 1000 3048 0 999999999 27 0 0 88 0.2 0 0 +338400.0 13 11 88 98507 0 0 329 0 0 0 0 0 0 0 335 0 5 5 1500 3048 0 999999999 29 0 0 88 0.2 0 0 +342000.0 12 10 88 98498 0 0 323 0 0 0 0 0 0 0 350 2.1 5 5 1000 3048 0 999999999 26 0 0 88 0.2 0 0 +345600.0 10.8 9.2 90 99259 0 0 312 0 0 0 0 0 0 0 140 2.1 3 3 500 2000 0 999999999 24 0 0 88 0.2 0 0 +349200.0 10 9 93 98478 0 0 309 0 0 0 0 0 0 0 110 2.6 3 3 500 2000 0 999999999 24 0 0 88 0.2 0 0 +352800.0 10 9 93 98478 0 0 309 0 0 0 0 0 0 0 110 2.6 3 3 500 2000 0 999999999 24 0 0 88 0.2 0 0 +356400.0 9.8 8.6 92 99152 0 0 307 0 0 0 0 0 0 0 90 2.6 3 3 2000 2000 0 999999999 23 0 0 88 0.2 0 0 +360000.0 10 9 93 98478 0 0 309 0 0 0 0 0 0 0 90 2.6 3 3 500 2000 0 999999999 24 0 0 88 0.2 0 0 +363600.0 9 8 93 98468 0 0 303 0 0 0 0 0 0 0 100 2.6 3 3 400 2000 0 999999999 21 0 0 88 0.2 0 0 +367200.0 9.4 9 97 99080 0 0 306 0 0 0 0 0 0 0 90 2.6 3 3 200 2000 0 999999999 24 0 0 88 0.2 0 0 +370800.0 9 9 100 98468 0 0 304 0 0 0 0 0 0 0 90 2.1 3 3 400 2000 0 999999999 24 0 0 88 0.2 0 0 +374400.0 9.5 9.1 97 98879 51 244 339 5 0 5 476 0 480 190 221 2.1 10 10 300 2000 9 999999999 24 0 0 88 0.2 0 0 +378000.0 10 9.2 95 99290 325 1415 311 162 374 76 18054 12645 8465 2697 90 2.1 4 4 200 2000 0 999999999 24 0 0 88 0.2 0 0 +381600.0 12.3 9 81 99292 560 1415 336 262 219 175 28990 15556 19491 6280 165 2.8 8 8 466 2000 9 999999999 24 0 0 88 0.2 0 0 +385200.0 14.5 8.9 69 99295 738 1415 337 463 552 175 53115 39105 20128 7388 202 3.4 6 6 733 2000 9 999999999 23 0 0 88 0.2 0 0 +388800.0 16.8 8.7 59 99297 849 1415 342 593 750 142 70416 49191 16935 6701 140 4.1 4 4 1000 2000 0 999999999 23 0 0 88 0.2 0 0 +392400.0 17.9 8.7 55 99211 883 1415 344 632 844 104 77272 50843 12757 5200 253 4.4 3 3 1333 2000 9 999999999 23 0 0 88 0.2 0 0 +396000.0 19.1 8.8 51 99124 840 1415 350 598 845 96 73174 49783 11737 4747 198 4.8 3 3 1666 2000 9 999999999 23 0 0 88 0.2 0 0 +399600.0 20.2 8.8 48 99038 722 1415 352 496 793 90 59721 45175 10919 4276 140 5.1 2 2 2000 2000 0 999999999 23 0 0 88 0.2 0 0 +403200.0 19.2 9.4 53 99002 537 1415 351 333 630 94 38595 33126 10894 3932 76 4.3 3 3 2000 2000 9 999999999 24 0 0 88 0.2 0 0 +406800.0 18.2 9.9 58 98967 297 1415 350 143 347 70 15918 9849 7820 2457 347 3.4 4 4 2000 2000 9 999999999 26 0 0 88 0.2 0 0 +410400.0 17.2 10.5 65 98932 20 1415 346 6 0 6 563 0 567 208 90 2.6 4 4 2000 2000 0 999999999 27 0 0 88 0.2 0 0 +414000.0 16.1 10.6 70 98960 0 94 346 0 0 0 0 0 0 0 33 2.4 6 6 1666 2000 9 999999999 28 0 0 88 0.2 0 0 +417600.0 14.9 10.7 76 98988 0 0 345 0 0 0 0 0 0 0 277 2.3 7 7 1333 2000 9 999999999 28 0 0 88 0.2 0 0 +421200.0 13.8 10.8 82 99016 0 0 327 0 0 0 0 0 0 0 90 2.1 3 3 1000 2000 0 999999999 28 0 0 88 0.2 0 0 +424800.0 13.7 10.8 83 98995 0 0 344 0 0 0 0 0 0 0 243 2.3 8 8 1000 2000 9 999999999 28 0 0 88 0.2 0 0 +428400.0 13.5 10.7 83 98974 0 0 343 0 0 0 0 0 0 0 252 2.4 8 8 1000 2000 9 999999999 28 0 0 88 0.2 0 0 +432000.0 13.4 10.7 84 98954 0 0 331 0 0 0 0 0 0 0 110 2.6 5 5 1000 2000 0 999999999 28 0 0 88 0.2 0 0 +435600.0 13.1 10.6 84 98932 0 0 341 0 0 0 0 0 0 0 299 2.4 8 8 1000 2000 9 999999999 28 0 0 88 0.2 0 0 +439200.0 12.9 10.4 85 98910 0 0 340 0 0 0 0 0 0 0 313 2.3 8 8 1000 2000 9 999999999 27 0 0 88 0.2 0 0 +442800.0 12.6 10.3 86 98888 0 0 327 0 0 0 0 0 0 0 90 2.1 5 5 1000 2000 0 999999999 27 0 0 88 0.2 0 0 +446400.0 12.7 10.6 87 98944 0 0 347 0 0 0 0 0 0 0 67 2.6 9 9 1000 2000 9 999999999 28 0 0 88 0.2 0 0 +450000.0 12.9 10.8 87 99000 0 0 348 0 0 0 0 0 0 0 146 3.1 9 9 1000 2000 9 999999999 28 0 0 88 0.2 0 0 +453600.0 13 11.1 88 99057 0 0 329 0 0 0 0 0 0 0 320 3.6 5 5 1000 3000 9 999999999 29 0 0 88 0.2 2 0 +457200.0 13 11 88 98507 0 0 329 0 0 0 0 0 0 0 330 2.6 5 5 1300 3000 9 999999999 29 0 0 88 0.2 0 0 +460800.0 12 11 94 98498 50 240 344 8 0 8 768 0 773 291 70 6.2 9 9 1300 3000 0 919999999 29 0 0 88 0.2 0 0 +464400.0 11.8 11.4 97 99269 325 1415 353 52 0 52 5150 0 5189 2043 270 3.6 10 10 1000 1050 0 19999999 30 0 0 88 0.2 0 0 +468000.0 11 11 100 98488 560 1415 339 183 35 169 20333 2389 18896 6161 40 2.1 9 9 1300 2438 0 19999999 29 0 0 88 0.2 0 0 +471600.0 13 13 100 98507 739 1415 351 263 45 239 29307 3552 26821 9139 20 3.1 9 9 1100 3048 0 19999999 35 0 0 88 0.2 0 0 +475200.0 15.2 11.9 81 99107 850 1415 340 566 552 233 64572 42322 26782 9846 50 3.6 5 5 1000 3000 0 19999999 31 0 0 88 0.2 0 0 +478800.0 17 11 68 98546 886 1415 348 596 711 150 70878 46408 17959 7162 50 3.1 5 5 1500 3048 0 19999999 29 0 0 88 0.2 0 0 +482400.0 18 10 59 98555 843 1415 352 562 703 142 66656 45638 16945 6695 60 3.1 5 5 1700 3048 0 19999999 26 0 0 88 0.2 0 0 +486000.0 18.8 12.4 66 98937 725 1415 358 462 653 127 54193 39769 14945 5718 70 3.1 5 5 1000 3048 0 19999999 33 0 0 88 0.2 0 0 +489600.0 19 9 52 98564 540 1415 355 316 512 120 35955 30155 13722 4781 70 2.1 5 5 2200 3048 0 19999999 23 0 0 88 0.2 0 0 +493200.0 19 10 56 98564 301 1415 356 139 314 72 15439 9265 8036 2519 10 2.1 5 5 1800 3048 0 19999999 26 0 0 88 0.2 0 0 +496800.0 16.2 13.7 85 99000 23 1415 347 7 0 7 637 0 641 233 320 2.1 5 5 1000 3000 0 19999999 38 0 0 88 0.2 0 0 +500400.0 16 10 68 98536 0 111 342 0 0 0 0 0 0 0 320 2.1 5 5 2200 3048 0 19999999 26 0 0 88 0.2 0 0 +504000.0 15 10 72 98527 0 0 337 0 0 0 0 0 0 0 320 2.6 5 5 2200 3048 0 19999999 26 0 0 88 0.2 0 0 +507600.0 14.6 10.8 78 99169 0 0 336 0 0 0 0 0 0 0 290 3.1 5 5 2000 2000 0 19999999 28 0 0 88 0.2 0 0 +511200.0 14 11 82 98517 0 0 334 0 0 0 0 0 0 0 290 2.1 5 5 2000 2000 0 19999999 29 0 0 88 0.2 0 0 +514800.0 14 11 82 98517 0 0 329 0 0 0 0 0 0 0 270 2.1 3 3 1800 2000 0 19999999 29 0 0 88 0.2 0 0 +518400.0 12.4 9.7 84 99216 0 0 320 0 0 0 0 0 0 0 319 0 3 3 1000 2000 0 19999999 25 0 0 88 0.2 0 0 +522000.0 12 11 94 98498 0 0 320 0 0 0 0 0 0 0 105 0 3 3 1300 2000 0 19999999 29 0 0 88 0.2 0 0 +525600.0 11 11 100 98488 0 0 315 0 0 0 0 0 0 0 280 2.1 3 3 1000 2000 0 19999999 29 0 0 88 0.2 0 0 +529200.0 11.2 10.4 95 99195 0 0 315 0 0 0 0 0 0 0 290 1.5 3 3 500 2000 0 19999999 27 0 0 88 0.2 0 0 +532800.0 10 10 100 98478 0 0 310 0 0 0 0 0 0 0 240 1.5 3 3 500 2000 0 19999999 26 0 0 88 0.2 0 0 +536400.0 10 10 100 98478 0 0 310 0 0 0 0 0 0 0 220 1.5 3 3 300 2000 0 19999999 26 0 0 88 0.2 0 0 +540000.0 9.2 8.8 97 99194 0 0 337 0 0 0 0 0 0 0 236 0 10 10 0 0 0 999999999 23 0 0 88 0.2 0 0 +543600.0 8 8 100 98458 0 0 331 0 0 0 0 0 0 0 44 0 10 10 0 0 0 999999999 21 0 0 88 0.2 0 0 +547200.0 8 8 100 98458 50 238 331 5 0 5 466 0 470 186 42 0 10 10 0 0 0 999999999 21 0 0 88 0.2 0 0 +550800.0 8.8 8.8 100 99375 325 1415 335 53 0 53 5181 0 5220 2050 250 2.1 10 10 50 30 0 999999999 23 0 0 88 0.2 0 0 +554400.0 10 10 100 98478 561 1415 343 112 0 112 11244 0 11337 4616 260 2.1 10 10 100 30 0 999999999 26 0 0 88 0.2 0 0 +558000.0 10 10 100 98478 740 1415 297 512 632 181 58597 45058 20780 7590 270 2.1 0 0 250 30 0 999999999 26 0 0 88 0.2 0 0 +561600.0 12.8 10.9 88 99414 852 1415 310 611 857 94 74843 49227 11509 4677 250 3.1 0 0 500 30 0 999999999 29 0 0 88 0.2 0 0 +565200.0 15 13 88 98527 888 1415 322 641 864 97 78619 48947 11988 4914 290 2.6 0 0 1100 2000 0 999999999 35 0 0 88 0.2 0 0 +568800.0 17 12 72 98546 846 1415 329 604 854 93 73968 48304 11428 4641 300 3.1 0 0 1300 2000 0 999999999 32 0 0 88 0.2 0 0 +572400.0 18.6 12.1 66 99207 728 1415 337 500 804 86 60452 43585 10374 4088 320 3.1 0 0 1000 2000 0 999999999 32 0 0 88 0.2 0 0 +576000.0 19 10 56 98564 544 1415 336 342 655 90 39822 33852 10506 3825 300 2.6 0 0 1800 2000 0 999999999 26 0 0 88 0.2 0 0 +579600.0 19 9 52 98564 305 1415 335 152 400 66 17067 11245 7424 2381 310 2.1 0 0 2100 2000 0 999999999 23 0 0 88 0.2 0 0 +583200.0 17 12.3 74 99163 27 1415 330 8 0 8 794 0 799 282 290 2.1 0 0 2000 2000 0 999999999 33 0 0 88 0.2 0 0 +586800.0 16 10 68 98536 0 128 323 0 0 0 0 0 0 0 290 2.1 0 0 2200 2000 0 999999999 26 0 0 88 0.2 0 0 +590400.0 15 10 72 98527 0 0 318 0 0 0 0 0 0 0 280 2.1 0 0 2200 2000 0 999999999 26 0 0 88 0.2 0 0 +594000.0 12.8 11.7 93 99249 0 0 310 0 0 0 0 0 0 0 250 1.5 0 0 2000 2000 0 999999999 31 0 0 88 0.2 0 0 +597600.0 13 11 88 98507 0 0 311 0 0 0 0 0 0 0 270 2.1 0 0 1800 2000 0 999999999 29 0 0 88 0.2 0 0 +601200.0 13 11 88 98507 0 0 311 0 0 0 0 0 0 0 240 2.1 0 0 1500 2000 0 999999999 29 0 0 88 0.2 0 0 +604800.0 12 10.9 93 99280 0 0 306 0 0 0 0 0 0 0 250 2.1 0 0 1000 2000 0 999999999 29 0 0 88 0.2 0 0 +608400.0 11 11 100 98488 0 0 302 0 0 0 0 0 0 0 250 2.6 0 0 1500 2000 0 999999999 29 0 0 88 0.2 0 0 +612000.0 10 10 100 98478 0 0 310 0 0 0 0 0 0 0 220 1.5 3 3 1200 2000 0 999999999 26 0 0 88 0.2 0 0 +615600.0 10.2 10.2 100 99272 0 0 311 0 0 0 0 0 0 0 215 0 3 3 1000 2000 0 999999999 27 0 0 88 0.2 0 0 +619200.0 9 9 100 98468 0 0 309 0 0 0 0 0 0 0 122 0 5 5 400 2000 0 999999999 24 0 0 88 0.2 0 0 +622800.0 9 9 100 98468 0 0 309 0 0 0 0 0 0 0 78 0 5 5 300 2000 0 999999999 24 0 0 88 0.2 0 0 +626400.0 9 9 100 99105 0 0 309 0 0 0 0 0 0 0 270 1.5 5 5 200 6000 0 999999999 24 0 0 88 0.2 0 0 +630000.0 8 8 100 98458 0 0 304 0 0 0 0 0 0 0 250 1.5 5 5 200 6000 0 999999999 21 0 0 88 0.2 0 0 +633600.0 9 8 93 98468 49 235 308 14 0 14 1368 0 1377 458 250 1.5 5 5 200 6000 0 999999999 21 0 0 88 0.2 0 0 +637200.0 9.6 9.2 97 99218 325 1415 310 161 300 93 17736 11991 10199 3078 270 2.1 4 4 200 2000 0 999999999 24 0 0 88 0.2 0 0 +640800.0 11.3 9.4 88 99222 561 1415 339 205 85 171 22706 5981 19027 6192 168 2.4 9 9 300 2000 9 999999999 25 0 0 88 0.2 0 0 +644400.0 13.1 9.6 79 99226 741 1415 335 397 274 253 44176 22783 28325 9469 291 2.8 7 7 400 2000 9 999999999 25 0 0 88 0.2 0 0 +648000.0 14.8 9.8 72 99230 854 1415 331 606 730 164 71182 49726 19371 7565 290 3.1 3 3 500 2000 0 999999999 26 0 0 88 0.2 0 0 +651600.0 16.1 10.6 70 99122 890 1415 346 578 592 204 67110 43116 23847 9162 287 3.6 6 6 1000 2000 9 999999999 28 0 0 88 0.2 0 0 +655200.0 17.3 11.3 68 99014 849 1415 350 555 651 164 65162 43739 19353 7550 188 4.1 5 5 1500 2000 9 999999999 30 0 0 88 0.2 0 0 +658800.0 18.6 12.1 66 98906 732 1415 351 497 744 111 58872 43513 13223 5135 290 4.6 3 3 2000 2000 0 999999999 32 0 0 88 0.2 0 0 +662400.0 17.8 12 69 98889 547 1415 356 311 447 138 34990 27300 15591 5316 196 4.1 6 6 2000 2000 9 999999999 32 0 0 88 0.2 0 0 +666000.0 17 11.9 72 98871 308 1415 352 135 238 83 14808 7892 9125 2790 216 3.6 6 6 2000 2000 9 999999999 31 0 0 88 0.2 0 0 +669600.0 16.2 11.8 75 98854 31 1415 352 8 0 8 755 0 760 274 290 3.1 7 7 2000 2000 0 999999999 31 0 0 88 0.2 0 0 +673200.0 15.3 11.6 79 98887 0 146 348 0 0 0 0 0 0 0 136 2.9 7 7 1500 2000 9 999999999 30 0 0 88 0.2 0 0 +676800.0 14.3 11.3 82 98920 0 0 348 0 0 0 0 0 0 0 115 2.8 8 8 1000 2000 9 999999999 30 0 0 88 0.2 0 0 +680400.0 13.4 11.1 86 98954 0 0 343 0 0 0 0 0 0 0 270 2.6 8 8 500 2000 0 999999999 29 0 0 88 0.2 0 0 +684000.0 12.6 11.1 90 98959 0 0 347 0 0 0 0 0 0 0 128 2.4 9 9 500 2000 9 999999999 29 0 0 88 0.2 0 0 +687600.0 11.8 11 95 98964 0 0 352 0 0 0 0 0 0 0 27 2.3 10 10 500 2000 9 999999999 29 0 0 88 0.2 0 0 +691200.0 11 11 100 98969 0 0 349 0 0 0 0 0 0 0 270 2.1 10 10 500 2000 0 999999999 29 0 0 88 0.2 0 0 +694800.0 10.7 10.7 100 98963 0 0 347 0 0 0 0 0 0 0 184 2.1 10 10 500 2000 9 999999999 28 0 0 88 0.2 0 0 +698400.0 10.5 10.5 100 98957 0 0 346 0 0 0 0 0 0 0 100 2.1 10 10 500 2000 9 999999999 28 0 0 88 0.2 0 0 +702000.0 10.2 10.2 100 98951 0 0 344 0 0 0 0 0 0 0 250 2.1 10 10 500 2000 0 999999999 27 0 0 88 0.2 0 0 +705600.0 9.5 9.5 100 98948 0 0 340 0 0 0 0 0 0 0 6 1.9 10 10 400 2000 9 999999999 25 0 0 88 0.2 0 0 +709200.0 8.9 8.9 100 98945 0 0 336 0 0 0 0 0 0 0 226 1.7 10 10 300 2000 9 999999999 24 0 0 88 0.2 0 0 +712800.0 8.2 8.2 100 98941 0 0 288 0 0 0 0 0 0 0 270 1.5 0 0 200 2000 0 999999999 22 0 0 88 0.2 0 0 +716400.0 7 7 100 98448 0 0 282 0 0 0 0 0 0 0 260 2.1 0 0 200 2000 0 999999999 19 0 0 88 0.2 0 0 +720000.0 7 7 100 98448 49 234 282 15 0 15 1465 0 1475 479 260 3.1 0 0 400 2000 0 999999999 19 0 0 88 0.2 0 0 +723600.0 8.6 7.8 95 99110 325 1415 289 168 431 68 18886 13767 7725 2511 270 3.1 0 0 500 2000 0 999999999 21 0 0 88 0.2 0 0 +727200.0 11 9 87 98488 562 1415 300 358 670 91 41797 35658 10678 3917 280 3.6 0 0 800 2000 0 999999999 24 0 0 88 0.2 0 0 +730800.0 14 8 67 98517 743 1415 312 516 808 91 62383 46734 11088 4367 280 4.6 0 0 1300 2000 0 999999999 21 0 0 88 0.2 0 0 +734400.0 16.2 9.7 65 99126 856 1415 323 615 861 94 75524 50101 11518 4682 290 5.7 0 0 1000 2000 0 999999999 25 0 0 88 0.2 0 0 +738000.0 18 7 49 98555 893 1415 329 652 788 153 77588 53479 18343 7304 300 6.2 0 0 2500 2000 0 999999999 19 0 0 88 0.2 0 0 +741600.0 19 7 46 98564 852 1415 333 615 784 142 73140 52097 16994 6725 300 5.1 0 0 3000 2000 0 999999999 19 0 0 88 0.2 0 0 +745200.0 20.2 4 34 98960 735 1415 335 513 806 94 61922 48295 11324 4437 290 4.1 0 0 1000 2000 0 999999999 14 0 0 88 0.2 0 0 +748800.0 20 5 37 98574 551 1415 335 351 665 92 40989 36510 10762 3916 300 3.1 0 0 5000 2000 0 999999999 16 0 0 88 0.2 0 0 +752400.0 19 5 40 98564 312 1415 331 159 419 66 17882 12989 7473 2410 310 3.1 0 0 5000 2000 0 999999999 16 0 0 88 0.2 0 0 +756000.0 17.8 9 56 98928 34 1415 330 11 0 11 1022 0 1029 351 320 4.1 0 0 4000 2000 0 999999999 23 0 0 88 0.2 0 0 +759600.0 16 7 55 98536 0 164 320 0 0 0 0 0 0 0 280 2.6 0 0 4000 2000 0 999999999 19 0 0 88 0.2 0 0 +763200.0 15 7 59 98527 0 0 315 0 0 0 0 0 0 0 250 2.6 0 0 3000 2000 0 999999999 19 0 0 88 0.2 0 0 +766800.0 13.6 10.5 82 99024 0 0 313 0 0 0 0 0 0 0 270 2.6 0 0 2000 2000 0 999999999 27 0 0 88 0.2 0 0 +770400.0 12 8 76 98498 0 0 303 0 0 0 0 0 0 0 270 2.1 0 0 2200 2000 0 999999999 21 0 0 88 0.2 0 0 +774000.0 12 8 76 98498 0 0 303 0 0 0 0 0 0 0 230 1.5 0 0 2200 2000 0 999999999 21 0 0 88 0.2 0 0 +777600.0 10.6 8.6 87 99014 0 0 298 0 0 0 0 0 0 0 230 1.5 0 0 1000 2000 0 999999999 23 0 0 88 0.2 0 0 +781200.0 10 8 87 98478 0 0 295 0 0 0 0 0 0 0 260 1.5 0 0 1600 2000 0 999999999 21 0 0 88 0.2 0 0 +784800.0 10 8 87 98478 0 0 295 0 0 0 0 0 0 0 240 1.5 0 0 1500 2000 0 999999999 21 0 0 88 0.2 0 0 +788400.0 9.4 8.2 92 98953 0 0 293 0 0 0 0 0 0 0 230 1.5 0 0 1000 2000 0 999999999 22 0 0 88 0.2 0 0 +792000.0 9 8 93 98468 0 0 291 0 0 0 0 0 0 0 250 2.1 0 0 1000 2000 0 999999999 21 0 0 88 0.2 0 0 +795600.0 8 7 93 98458 0 0 286 0 0 0 0 0 0 0 230 2.1 0 0 800 2000 0 999999999 19 0 0 88 0.2 0 0 +799200.0 7.8 7.4 97 98918 0 0 285 0 0 0 0 0 0 0 250 2.1 0 0 500 2000 9 999999999 20 0 0 88 0.2 0 0 +802800.0 8 7 93 98458 0 0 286 0 0 0 0 0 0 0 240 1.5 0 0 600 2000 9 999999999 19 0 0 88 0.2 0 0 +806400.0 8 7 93 98458 49 233 286 15 0 15 1461 0 1471 478 250 2.1 0 0 700 2000 9 999999999 19 0 0 88 0.2 0 0 +810000.0 7.6 6.3 91 99110 326 1414 283 168 435 68 18985 14173 7701 2504 230 1.5 0 0 500 2000 9 999999999 18 0 0 88 0.2 0 0 +813600.0 11 8 82 98488 563 1414 299 359 673 91 41996 36167 10663 3912 240 3.1 0 0 1200 2000 9 999999999 21 0 0 88 0.2 0 0 +817200.0 14 8 67 98517 744 1414 312 518 808 92 62552 46800 11104 4375 260 3.1 0 0 1500 2000 9 999999999 21 0 0 88 0.2 0 0 +820800.0 15.6 10.7 73 99121 858 1414 322 616 860 94 75582 49549 11561 4704 270 2.1 0 0 1000 2000 9 999999999 28 0 0 88 0.2 0 0 +824400.0 18 7 49 98555 895 1414 329 654 789 154 77877 53560 18431 7342 310 2.1 0 0 2500 2000 9 999999999 19 0 0 88 0.2 0 0 +828000.0 19 7 46 98564 855 1414 333 618 784 143 73479 52205 17098 6770 290 3.1 0 0 2500 2000 9 999999999 19 0 0 88 0.2 0 0 +831600.0 20 11.7 59 98831 739 1414 343 510 807 87 61632 44342 10577 4177 270 3.1 0 0 2000 2000 9 999999999 31 0 0 88 0.2 0 0 +835200.0 20 5 37 98574 555 1414 335 355 667 92 41384 36804 10818 3942 300 3.1 0 0 2500 2000 9 999999999 16 0 0 88 0.2 0 0 +838800.0 19 2 32 98564 316 1414 347 151 335 76 16874 12180 8530 2677 320 3.1 5 5 2500 2000 9 999999999 12 0 0 88 0.2 0 0 +842400.0 16.8 10 64 98821 38 1414 346 11 0 11 1055 0 1062 364 320 3.1 5 5 2000 2000 9 999999999 26 0 0 88 0.2 0 0 +846000.0 16 5 48 98536 0 182 336 0 0 0 0 0 0 0 280 1.5 5 5 2500 2000 9 999999999 16 0 0 88 0.2 0 0 +849600.0 15 7 59 98527 0 0 329 0 0 0 0 0 0 0 270 1.5 3 3 2100 2000 9 999999999 19 0 0 88 0.2 0 0 +853200.0 12.4 10.9 91 98886 0 0 308 0 0 0 0 0 0 0 282 0 0 0 1000 2000 9 999999999 29 0 0 88 0.2 0 0 +856800.0 14 7 63 98517 0 0 311 0 0 0 0 0 0 0 169 0 0 0 2100 2000 9 999999999 19 0 0 88 0.2 0 0 +860400.0 13 8 72 98507 0 0 321 0 0 0 0 0 0 0 212 0 3 3 2100 2000 9 999999999 21 0 0 88 0.2 0 0 +864000.0 9 9 100 98940 0 0 304 0 0 0 0 0 0 0 24 0 3 3 1000 2000 9 999999999 24 0 0 88 0.2 0 0 +867600.0 11 8 82 98488 0 0 299 0 0 0 0 0 0 0 230 0 0 0 1200 2000 9 999999999 21 0 0 88 0.2 0 0 +871200.0 10 8 87 98478 0 0 295 0 0 0 0 0 0 0 117 0 0 0 1200 2000 9 999999999 21 0 0 88 0.2 0 0 +874800.0 9 8.2 95 99037 0 0 291 0 0 0 0 0 0 0 228 0 0 0 1000 2000 9 999999999 22 0 0 88 0.2 0 0 +878400.0 9 7 87 98468 0 0 290 0 0 0 0 0 0 0 3 0 0 0 900 2000 9 999999999 19 0 0 88 0.2 0 0 +882000.0 9 7 87 98468 0 0 290 0 0 0 0 0 0 0 358 0 0 0 800 2000 9 999999999 19 0 0 88 0.2 0 0 +885600.0 7.8 7.4 97 99073 0 0 285 0 0 0 0 0 0 0 21 0 0 0 500 2000 9 999999999 20 0 0 88 0.2 0 0 +889200.0 8 8 100 98458 0 0 287 0 0 0 0 0 0 0 355 0 0 0 600 2000 9 999999999 21 0 0 88 0.2 0 0 +892800.0 9 8 93 98468 49 233 291 15 0 15 1465 0 1475 479 16 0 0 0 500 2000 9 999999999 21 0 0 88 0.2 0 0 +896400.0 8.4 8.4 100 99215 326 1414 289 168 433 68 18974 13741 7721 2512 110 1.5 0 0 500 2000 9 999999999 22 0 0 88 0.2 0 0 +900000.0 15 10 72 98527 564 1414 332 355 647 97 41236 34809 11264 4112 70 1.5 3 3 1000 2000 9 999999999 26 0 0 88 0.2 0 0 +903600.0 17 9 59 98546 746 1414 340 512 787 96 61613 45750 11641 4579 70 1.5 3 3 1200 2000 9 999999999 23 0 0 88 0.2 0 0 +907200.0 18.2 9 55 99291 860 1414 346 612 841 100 74849 50059 12286 4987 140 2.1 3 3 1000 2000 9 999999999 23 0 0 88 0.2 0 0 +910800.0 21 5 35 98583 898 1414 355 651 789 149 77772 53731 17888 7149 310 2.6 3 3 2200 2000 9 999999999 16 0 0 88 0.2 0 0 +914400.0 21 4 33 98583 858 1414 353 616 858 95 75740 52404 11686 4741 310 2.6 3 3 2200 2000 9 999999999 14 0 0 88 0.2 0 0 +918000.0 21 8.5 45 99016 742 1414 359 509 786 96 61284 45869 11637 4571 290 2.1 3 3 2000 2000 9 999999999 22 0 0 88 0.2 0 0 +921600.0 20 5 37 98574 559 1414 350 354 647 98 41137 36509 11383 4131 50 2.1 3 3 2700 2000 9 999999999 16 0 0 88 0.2 0 0 +925200.0 20 6 40 98574 320 1414 351 163 415 69 18292 13404 7737 2499 40 2.1 3 3 2500 2000 9 999999999 17 0 0 88 0.2 0 0 +928800.0 17.6 10.5 63 98994 42 1414 345 13 0 13 1238 0 1246 415 50 2.1 3 3 2000 2000 9 999999999 27 0 0 88 0.2 0 0 +932400.0 17 8 55 98546 0 200 339 0 0 0 0 0 0 0 150 2.1 3 3 2100 2000 9 999999999 21 0 0 88 0.2 0 0 +936000.0 16 9 63 98536 0 0 336 0 0 0 0 0 0 0 160 1.5 3 3 2100 2000 9 999999999 23 0 0 88 0.2 0 0 +939600.0 14.2 10.4 78 99156 0 0 329 0 0 0 0 0 0 0 111 0 3 3 2000 2000 9 999999999 27 0 0 88 0.2 0 0 +943200.0 15 8 63 98527 0 0 330 0 0 0 0 0 0 0 106 0 3 3 2000 2000 9 999999999 21 0 0 88 0.2 0 0 +946800.0 13 9 77 98507 0 0 322 0 0 0 0 0 0 0 303 0 3 3 1600 2000 9 999999999 24 0 0 88 0.2 0 0 +950400.0 11.2 9.2 87 99127 0 0 314 0 0 0 0 0 0 0 151 0 3 3 1000 2000 9 999999999 24 0 0 88 0.2 0 0 +954000.0 12 9 82 98498 0 0 322 0 0 0 0 0 0 0 348 0 5 5 1500 2000 9 999999999 24 0 0 88 0.2 0 0 +957600.0 12 9 82 98498 0 0 322 0 0 0 0 0 0 0 144 0 5 5 1200 2000 9 999999999 24 0 0 88 0.2 0 0 +961200.0 11.2 9.6 90 99059 0 0 319 0 0 0 0 0 0 0 184 0 5 5 1000 2000 9 999999999 25 0 0 88 0.2 0 0 +964800.0 12 10 88 98498 0 0 323 0 0 0 0 0 0 0 57 0 5 5 1000 2000 9 999999999 26 0 0 88 0.2 0 0 +968400.0 11 10 94 98488 0 0 319 0 0 0 0 0 0 0 2 0 5 5 900 2000 9 999999999 26 0 0 88 0.2 0 0 +972000.0 10.2 9.8 97 98932 0 0 315 0 0 0 0 0 0 0 347 0 5 5 500 2000 9 999999999 26 0 0 88 0.2 0 0 +975600.0 10 10 100 98478 0 0 314 0 0 0 0 0 0 0 321 0 5 5 500 2000 0 999999999 26 0 0 88 0.2 0 0 +979200.0 9 9 100 98468 49 233 309 14 0 14 1364 0 1373 457 263 0 5 5 400 2000 0 999999999 24 0 0 88 0.2 0 0 +982800.0 9.2 8.8 97 99136 327 1414 310 157 348 76 17531 12019 8566 2726 97 0 5 5 200 2000 0 999999999 23 0 0 88 0.2 0 0 +986400.0 12 11 94 98498 565 1414 325 335 558 111 38455 31480 12842 4609 97 0 5 5 500 2000 0 999999999 29 0 0 88 0.2 0 0 +990000.0 15 11 77 98527 748 1414 333 512 750 114 60727 44925 13628 5309 76 0 3 3 700 2000 0 999999999 29 0 0 88 0.2 0 0 +993600.0 18.8 10.3 58 99161 862 1414 350 613 826 109 74464 49523 13235 5360 140 2.1 3 3 1000 2000 0 999999999 27 0 0 88 0.2 0 0 +997200.0 20 8 46 98574 901 1414 359 613 707 162 72713 48345 19301 7668 130 2.1 5 5 1500 2000 0 999999999 21 0 0 88 0.2 0 0 +1000800.0 21 7 40 98583 861 1414 363 581 717 143 69158 47744 17106 6789 140 2.6 5 5 2000 2000 0 999999999 19 0 0 88 0.2 0 0 +1004400.0 22.6 9.3 43 98992 746 1414 373 483 665 131 56718 42312 15484 5946 110 3.1 5 5 1000 2000 0 999999999 24 0 0 88 0.2 0 0 +1008000.0 22 6 35 98592 563 1414 366 336 536 122 38403 32922 14031 4942 120 2.6 5 5 1600 2000 0 999999999 17 0 0 88 0.2 0 0 +1011600.0 21 6 38 98583 324 1414 361 156 351 75 17443 12385 8463 2690 150 3.1 5 5 1600 2000 0 999999999 17 0 0 88 0.2 0 0 +1015200.0 19 12.2 65 98881 46 1414 359 13 0 13 1271 0 1280 430 140 2.1 5 5 1000 2000 0 999999999 32 0 0 88 0.2 0 0 +1018800.0 18 7 49 98555 0 218 369 0 0 0 0 0 0 0 160 2.1 9 9 2200 3048 0 999999999 19 0 0 88 0.2 0 0 +1022400.0 18 7 49 98555 0 0 348 0 0 0 0 0 0 0 58 0 5 5 2100 3048 0 999999999 19 0 0 88 0.2 0 0 +1026000.0 14 11 82 99018 0 0 329 0 0 0 0 0 0 0 180 1.5 3 3 2000 3000 0 999999999 29 0 0 88 0.2 0 0 +1029600.0 15 7 59 98527 0 0 329 0 0 0 0 0 0 0 100 2.6 3 3 2100 3000 0 999999999 19 0 0 88 0.2 0 0 +1033200.0 15 7 59 98527 0 0 329 0 0 0 0 0 0 0 162 0 3 3 1800 3000 0 999999999 19 0 0 88 0.2 0 0 +1036800.0 12.2 10.7 91 99020 0 0 320 0 0 0 0 0 0 0 90 1.5 3 3 1000 2000 0 999999999 28 0 0 88 0.2 0 0 +1040400.0 11 8 82 98488 0 0 317 0 0 0 0 0 0 0 67 1 5 5 1500 3048 0 999999999 21 0 0 88 0.2 0 0 +1044000.0 11 8 82 98488 0 0 317 0 0 0 0 0 0 0 157 0 5 5 1500 3048 0 999999999 21 0 0 88 0.2 0 0 +1047600.0 10.8 10 95 99113 0 0 318 0 0 0 0 0 0 0 254 0 5 5 1000 3048 0 999999999 26 0 0 88 0.2 0 0 +1051200.0 11 10 94 98488 0 0 319 0 0 0 0 0 0 0 199 0 5 5 1200 3048 0 999999999 26 0 0 88 0.2 0 0 +1054800.0 11 10 94 98488 0 0 319 0 0 0 0 0 0 0 340 2.6 5 5 1200 3048 0 999999999 26 0 0 88 0.2 0 0 +1058400.0 12.4 11.7 95 99070 0 0 327 0 0 0 0 0 0 0 90 4.1 5 5 1000 3048 9 999999999 31 0 0 88 0.2 0 0 +1062000.0 12 10 88 98498 0 0 323 0 0 0 0 0 0 0 350 2.1 5 5 1000 3048 9 999999999 26 0 0 88 0.2 0 0 +1065600.0 13 11 88 98507 49 234 329 14 0 14 1366 0 1375 458 360 2.1 5 5 800 3048 9 999999999 29 0 0 88 0.2 0 0 +1069200.0 12.4 10.9 91 99284 327 1414 326 157 334 80 17452 11508 8882 2806 90 1.5 5 5 500 3048 9 999999999 29 0 0 88 0.2 0 0 +1072800.0 15 11 77 98527 566 1414 333 356 646 97 41386 34499 11310 4135 80 1.5 3 3 800 3048 9 999999999 29 0 0 88 0.2 0 0 +1076400.0 18 10 59 98555 749 1414 346 514 795 92 62099 45277 11196 4421 110 1.5 3 3 1000 3048 9 999999999 26 0 0 88 0.2 0 0 +1080000.0 19 13.8 72 99377 865 1414 355 611 833 101 74523 47085 12408 5053 110 2.1 3 3 1000 2000 9 999999999 38 0 0 88 0.2 0 0 +1083600.0 21 9 46 98583 904 1414 359 652 855 104 79971 51423 12794 5241 150 2.1 3 3 1200 2000 9 999999999 23 0 0 88 0.2 0 0 +1087200.0 22 9 43 98592 865 1414 364 617 843 100 75451 50224 12326 5009 218 0 3 3 1500 2000 9 999999999 23 0 0 88 0.2 0 0 +1090800.0 21.6 14.1 62 99206 750 1414 369 511 791 91 61633 42625 10973 4348 290 2.1 3 3 1000 2000 9 999999999 39 0 0 88 0.2 0 0 +1094400.0 22 9 43 98592 567 1414 364 358 652 96 41669 35497 11252 4113 290 4.1 3 3 1200 2000 9 999999999 23 0 0 88 0.2 0 0 +1098000.0 21 11 53 98583 328 1414 362 167 438 65 18871 12823 7394 2433 280 3.6 3 3 1200 2000 9 999999999 28 0 0 88 0.2 0 0 +1101600.0 19.2 14 72 99135 50 1414 357 15 0 15 1459 0 1469 482 290 2.6 3 3 1000 2000 9 999999999 39 0 0 88 0.2 0 0 +1105200.0 18 11 64 98555 0 237 347 0 0 0 0 0 0 0 280 2.1 3 3 1200 2000 9 999999999 28 0 0 88 0.2 0 0 +1108800.0 17 12 72 98546 0 0 344 0 0 0 0 0 0 0 270 2.1 3 3 1200 2000 9 999999999 32 0 0 88 0.2 0 0 +1112400.0 16.4 12 75 99313 0 0 327 0 0 0 0 0 0 0 320 2.6 0 0 1000 2000 9 999999999 32 0 0 88 0.2 0 0 +1116000.0 16 11 72 98536 0 0 324 0 0 0 0 0 0 0 320 2.1 0 0 1300 2000 9 999999999 29 0 0 88 0.2 0 0 +1119600.0 16 11 72 98536 0 0 324 0 0 0 0 0 0 0 300 2.1 0 0 1200 2000 9 999999999 29 0 0 88 0.2 0 0 +1123200.0 14.2 11.2 82 99311 0 0 316 0 0 0 0 0 0 0 290 2.1 0 0 1000 2000 9 999999999 29 0 0 88 0.2 0 0 +1126800.0 14 10 77 98517 0 0 314 0 0 0 0 0 0 0 320 3.1 0 0 1600 2000 9 999999999 26 0 0 88 0.2 0 0 +1130400.0 13 9 77 98507 0 0 309 0 0 0 0 0 0 0 300 2.6 0 0 1800 2000 9 999999999 24 0 0 88 0.2 0 0 +1134000.0 12.4 10.5 88 99226 0 0 308 0 0 0 0 0 0 0 290 2.1 0 0 1000 2000 9 999999999 28 0 0 88 0.2 0 0 +1137600.0 12 9 82 98498 0 0 304 0 0 0 0 0 0 0 290 2.6 0 0 1800 2000 9 999999999 24 0 0 88 0.2 0 0 +1141200.0 11 9 87 98488 0 0 300 0 0 0 0 0 0 0 270 2.6 0 0 1800 2000 9 999999999 24 0 0 88 0.2 0 0 +1144800.0 9.2 8 92 99165 0 0 292 0 0 0 0 0 0 0 250 2.1 0 0 1000 2000 9 999999999 22 0 0 88 0.2 0 0 +1148400.0 9 8 93 98468 0 0 291 0 0 0 0 0 0 0 240 2.1 0 0 1400 2000 9 999999999 21 0 0 88 0.2 0 0 +1152000.0 9 7 87 98468 50 235 290 15 0 15 1491 0 1501 487 230 2.6 0 0 1000 2000 9 999999999 19 0 0 88 0.2 0 0 +1155600.0 7.6 6.7 94 99343 328 1414 284 171 440 68 19252 14420 7718 2516 250 2.6 0 0 500 2000 9 999999999 19 0 0 88 0.2 0 0 +1159200.0 10 6 76 98478 568 1414 293 365 679 92 42714 37410 10825 3972 260 3.6 0 0 1000 2000 9 999999999 18 0 0 88 0.2 0 0 +1162800.0 13 3 51 98507 751 1414 302 529 813 96 63880 49500 11642 4579 280 4.6 0 0 1400 2000 9 999999999 13 0 0 88 0.2 0 0 +1166400.0 15.6 7.6 59 99364 867 1414 318 628 785 146 74775 52336 17453 6928 270 4.1 0 0 2000 2000 9 999999999 20 0 0 88 0.2 0 0 +1170000.0 17 2 36 98546 907 1414 318 671 790 163 79769 56117 19495 7738 280 5.1 0 0 2800 2000 9 999999999 12 0 0 88 0.2 0 0 +1173600.0 19 1 30 98564 868 1414 326 636 785 153 75637 55230 18309 7220 270 4.1 0 0 3000 2000 9 999999999 10 0 0 88 0.2 0 0 +1177200.0 18.8 5.9 43 99132 754 1414 331 528 815 94 63916 48327 11348 4477 290 5.1 0 0 2000 2000 9 999999999 17 0 0 88 0.2 0 0 +1180800.0 18 2 34 98555 571 1414 323 370 673 98 43217 39098 11497 4192 280 6.2 0 0 4000 2000 9 999999999 12 0 0 88 0.2 0 0 +1184400.0 18 2 34 98555 332 1414 323 175 457 67 19820 15891 7663 2508 280 5.1 0 0 4000 2000 9 999999999 12 0 0 88 0.2 0 0 +1188000.0 15.8 5.9 52 99074 54 1414 317 17 0 17 1625 0 1635 524 250 4.6 0 0 4000 2000 9 999999999 17 0 0 88 0.2 0 0 +1191600.0 14 3 47 98517 0 256 307 0 0 0 0 0 0 0 260 3.6 0 0 3200 2000 9 999999999 13 0 0 88 0.2 0 0 +1195200.0 13 3 51 98507 0 0 302 0 0 0 0 0 0 0 260 3.1 0 0 3000 2000 9 999999999 13 0 0 88 0.2 0 0 +1198800.0 12.2 7.7 74 99175 0 0 304 0 0 0 0 0 0 0 270 2.1 0 0 2000 2000 9 999999999 21 0 0 88 0.2 0 0 +1202400.0 11 4 62 98488 0 0 295 0 0 0 0 0 0 0 260 2.6 0 0 3000 2000 9 999999999 14 0 0 88 0.2 0 0 +1206000.0 11 4 62 98488 0 0 295 0 0 0 0 0 0 0 270 3.6 0 0 3000 2000 9 999999999 14 0 0 88 0.2 0 0 +1209600.0 10.8 7 77 99181 0 0 297 0 0 0 0 0 0 0 270 3.1 0 0 2000 2000 9 999999999 19 0 0 88 0.2 0 0 +1213200.0 9 3 66 98468 0 0 286 0 0 0 0 0 0 0 260 3.1 0 0 2500 2000 9 999999999 13 0 0 88 0.2 0 0 +1216800.0 9 4 71 98468 0 0 287 0 0 0 0 0 0 0 270 3.6 0 0 2200 2000 9 999999999 14 0 0 88 0.2 0 0 +1220400.0 9 6.4 84 99105 0 0 289 0 0 0 0 0 0 0 270 3.6 0 0 2000 2000 9 999999999 18 0 0 88 0.2 0 0 +1224000.0 7 4 81 98448 0 0 279 0 0 0 0 0 0 0 270 3.1 0 0 2100 2000 9 999999999 14 0 0 88 0.2 0 0 +1227600.0 6 4 87 98438 0 0 275 0 0 0 0 0 0 0 260 2.1 0 0 1400 2000 9 999999999 14 0 0 88 0.2 0 0 +1231200.0 6.4 5 91 99020 0 0 277 0 0 0 0 0 0 0 230 2.1 0 0 1000 2000 9 999999999 16 0 0 88 0.2 0 0 +1234800.0 6 4 87 98438 0 0 275 0 0 0 0 0 0 0 270 2.6 0 0 1400 2000 9 999999999 14 0 0 88 0.2 0 0 +1238400.0 6 4 87 98438 50 238 308 8 0 8 783 0 788 294 250 2.6 9 9 1400 2000 9 999999999 14 0 0 88 0.2 0 0 +1242000.0 6.8 5.5 91 99150 329 1414 296 160 358 76 17882 12999 8574 2734 250 3.1 5 5 1000 2000 9 999999999 17 0 0 88 0.2 0 0 +1245600.0 9 4 71 98468 569 1414 304 342 544 123 39179 33991 14114 4985 270 3.1 5 5 1400 2000 9 999999999 14 0 0 88 0.2 0 0 +1249200.0 11 4 62 98488 754 1414 301 530 754 127 62629 49383 15065 5811 270 4.1 1 1 2000 2000 9 999999999 14 0 0 88 0.2 0 0 +1252800.0 13 4 54 98507 870 1414 321 591 650 190 68983 48320 22285 8568 280 4.6 5 5 2200 2000 9 999999999 14 0 0 88 0.2 0 0 +1256400.0 16 3 42 98536 910 1414 329 664 780 161 79065 54882 19235 7657 300 5.1 3 3 2500 2000 9 999999999 13 0 0 88 0.2 0 0 +1260000.0 16 2 39 98536 872 1414 333 594 700 162 70365 49812 19236 7554 280 5.1 5 5 2800 2000 9 999999999 12 0 0 88 0.2 0 0 +1263600.0 17.6 7.8 53 99033 758 1414 347 493 542 203 56183 41081 23181 8342 270 4.6 5 5 2000 2000 9 999999999 21 0 0 88 0.2 0 0 +1267200.0 17 5 45 98546 575 1414 361 192 85 157 21577 5906 17768 5978 270 4.6 9 9 3500 3048 9 999999999 16 0 0 88 0.2 0 0 +1270800.0 16 6 51 98536 336 1414 357 91 5 90 10101 227 9995 3084 270 4.6 9 9 3500 3048 9 999999999 17 0 0 88 0.2 0 0 +1274400.0 15.4 9.2 67 98963 58 1414 338 17 0 17 1615 0 1626 531 270 3.6 5 5 2000 3000 9 999999999 24 0 0 88 0.2 0 0 +1278000.0 14 8 67 98517 0 275 330 0 0 0 0 0 0 0 260 2.6 5 5 2800 3048 9 999999999 21 0 0 88 0.2 0 0 +1281600.0 13 8 72 98507 0 0 313 0 0 0 0 0 0 0 260 2.1 1 1 2800 3048 9 999999999 21 0 0 88 0.2 0 0 +1285200.0 12 6 67 98498 0 0 319 0 0 0 0 0 0 0 240 1.5 5 5 2500 3048 9 999999999 17 0 0 88 0.2 0 0 +1288800.0 11 6 71 98488 0 0 315 0 0 0 0 0 0 0 104 0 5 5 2500 3048 9 999999999 17 0 0 88 0.2 0 0 +1292400.0 10 6 76 98478 0 0 310 0 0 0 0 0 0 0 289 0 5 5 2200 3048 9 999999999 18 0 0 88 0.2 0 0 +1296000.0 8.8 8 95 99122 0 0 307 0 0 0 0 0 0 0 245 0 5 5 2000 2000 9 999999999 22 0 0 88 0.2 0 0 +1299600.0 9 6 81 98468 0 0 306 0 0 0 0 0 0 0 113 0 5 5 1500 2000 9 999999999 18 0 0 88 0.2 0 0 +1303200.0 9 6 81 98468 0 0 306 0 0 0 0 0 0 0 43 0 5 5 1500 2000 9 999999999 18 0 0 88 0.2 0 0 +1306800.0 7.4 7 97 99098 0 0 300 0 0 0 0 0 0 0 210 0 5 5 1000 2000 9 999999999 20 0 0 88 0.2 0 0 +1310400.0 7 6 93 98448 0 0 297 0 0 0 0 0 0 0 158 0 5 5 1000 2000 9 999999999 18 0 0 88 0.2 0 0 +1314000.0 7 6 93 98448 0 0 297 0 0 0 0 0 0 0 46 0 5 5 900 2000 9 999999999 18 0 0 88 0.2 0 0 +1317600.0 7.2 7.2 100 98999 0 0 299 0 0 0 0 0 0 0 31 0 5 5 500 2000 9 999999999 20 0 0 88 0.2 0 0 +1321200.0 7 6 93 98448 0 0 297 0 0 0 0 0 0 0 81 0 5 5 600 2000 0 999999999 18 0 0 88 0.2 0 0 +1324800.0 7 6 93 98448 51 240 297 15 0 15 1424 0 1433 473 135 0 5 5 500 2000 0 999999999 18 0 0 88 0.2 0 0 +1328400.0 7.8 7.6 99 99219 330 1414 302 160 275 96 17568 11665 10535 3169 250 2.1 5 5 1000 2000 0 999999999 21 0 0 88 0.2 0 0 +1332000.0 11 8 82 98488 571 1414 336 189 39 173 21045 2789 19381 6330 110 1.5 9 9 900 3048 0 999999999 21 0 0 88 0.2 0 0 +1335600.0 14 8 67 98517 756 1414 350 273 50 246 30562 4149 27702 9449 90 2.6 9 9 1200 3048 0 999999999 21 0 0 88 0.2 0 0 +1339200.0 16.8 7.7 55 99229 873 1414 363 327 73 282 36969 6213 32066 11342 90 3.1 9 9 1000 3000 0 999999999 21 0 0 88 0.2 0 0 +1342800.0 18 7 49 98555 914 1414 369 346 78 296 39293 6771 33743 12047 90 2.1 9 9 1500 3048 0 999999999 19 0 0 88 0.2 0 0 +1346400.0 19 7 46 98564 876 1414 374 329 73 283 37192 6288 32236 11402 100 2.6 9 9 1500 3048 0 999999999 19 0 0 88 0.2 0 0 +1350000.0 20.4 11.4 56 98991 762 1414 387 274 17 265 30480 1450 29607 9915 110 3.1 9 9 1000 3000 0 999999999 30 0 0 88 0.2 0 0 +1353600.0 20 6 40 98574 579 1414 378 194 41 177 21557 2965 19801 6469 100 2.6 9 9 1600 3048 0 999999999 17 0 0 88 0.2 0 0 +1357200.0 20 6 40 98574 340 1414 357 168 287 98 18431 12880 10858 3280 130 2.6 5 5 1800 3048 0 999999999 17 0 0 88 0.2 0 0 +1360800.0 18.4 10.2 59 98943 62 1414 354 18 0 18 1726 0 1738 565 110 1.5 5 5 2000 2000 0 999999999 26 0 0 88 0.2 0 0 +1364400.0 17 6 48 98546 0 294 342 0 0 0 0 0 0 0 110 1.5 5 5 2200 2000 0 999999999 17 0 0 88 0.2 0 0 +1368000.0 15 7 59 98527 0 0 334 0 0 0 0 0 0 0 120 2.6 5 5 2200 2000 0 999999999 19 0 0 88 0.2 0 0 +1371600.0 13.4 6.8 64 99051 0 0 326 0 0 0 0 0 0 0 140 2.1 5 5 1000 2000 0 999999999 19 0 0 88 0.2 0 0 +1375200.0 14 8 67 98517 0 0 330 0 0 0 0 0 0 0 141 0 5 5 1200 2000 0 999999999 21 0 0 88 0.2 0 0 +1378800.0 13 8 72 98507 0 0 326 0 0 0 0 0 0 0 131 0 5 5 1000 2000 0 999999999 21 0 0 88 0.2 0 0 +1382400.0 11.4 8.6 83 99041 0 0 319 0 0 0 0 0 0 0 351 0 5 5 1000 2000 0 999999999 23 0 0 88 0.2 0 0 +1386000.0 10 8 87 98478 0 0 312 0 0 0 0 0 0 0 7 0 5 5 800 2000 0 999999999 21 0 0 88 0.2 0 0 +1389600.0 10 8 87 98478 0 0 312 0 0 0 0 0 0 0 6 0 5 5 600 2000 0 999999999 21 0 0 88 0.2 0 0 +1393200.0 9.8 8.2 90 98967 0 0 307 0 0 0 0 0 0 0 352 0 3 3 500 2000 0 999999999 22 0 0 88 0.2 0 0 +1396800.0 9 8 93 98468 0 0 291 0 0 0 0 0 0 0 148 0 0 0 400 2000 0 999999999 21 0 0 88 0.2 0 0 +1400400.0 8 8 100 98458 0 0 287 0 0 0 0 0 0 0 350 0 0 0 350 2000 0 999999999 21 0 0 88 0.2 0 0 +1404000.0 8.4 7.4 93 98904 0 0 288 0 0 0 0 0 0 0 100 0 0 0 200 2000 0 999999999 20 0 0 88 0.2 0 0 +1407600.0 7 7 100 98448 0 0 282 0 0 0 0 0 0 0 37 0 0 0 350 2000 0 999999999 19 0 0 88 0.2 0 0 +1411200.0 7 6 93 98448 52 244 281 16 0 16 1554 0 1564 504 339 0 0 0 250 2000 0 999999999 18 0 0 88 0.2 0 0 +1414800.0 7.2 6.3 94 99057 332 1413 282 173 446 68 19575 14896 7757 2535 193 0 0 0 200 2000 0 999999999 18 0 0 88 0.2 0 0 +1418400.0 12 10 88 98498 573 1413 305 367 678 92 42911 36017 10766 3970 225 0 0 0 500 2000 0 999999999 26 0 0 88 0.2 0 0 +1422000.0 16 8 59 98536 758 1413 321 531 815 92 64227 47450 11224 4441 220 1.5 0 0 800 2000 0 999999999 21 0 0 88 0.2 0 0 +1425600.0 15.6 9.9 69 99150 876 1413 321 634 786 146 75415 51344 17438 6950 180 1.5 0 0 1000 2000 0 999999999 26 0 0 88 0.2 0 0 +1429200.0 19 6 43 98564 917 1413 332 675 790 162 80408 54706 19331 7715 270 2.1 0 0 1200 2000 0 999999999 17 0 0 88 0.2 0 0 +1432800.0 20 6 40 98574 880 1413 336 641 786 151 76321 53535 18084 7180 280 3.1 0 0 1200 2000 0 999999999 17 0 0 88 0.2 0 0 +1436400.0 21 8 43 98583 766 1413 343 537 819 93 65108 47796 11298 4479 290 2.6 0 0 1200 2000 0 999999999 21 0 0 88 0.2 0 0 +1440000.0 21 6 38 98583 583 1413 341 379 689 94 44399 38593 11067 4085 320 2.6 0 0 1200 2000 0 999999999 17 0 0 88 0.2 0 0 +1443600.0 20 7 43 98574 345 1413 338 183 463 70 20716 16157 7941 2617 320 4.1 0 0 1500 2000 0 999999999 19 0 0 88 0.2 0 0 +1447200.0 18.2 12.1 68 98815 66 1413 335 20 17 20 2242 0 2158 611 290 3.1 0 0 1000 2000 0 999999999 32 0 0 88 0.2 0 0 +1450800.0 17 8 55 98546 0 313 325 0 0 0 0 0 0 0 300 3.1 0 0 2000 2000 0 999999999 21 0 0 88 0.2 0 0 +1454400.0 15 9 67 98527 0 0 317 0 0 0 0 0 0 0 300 2.6 0 0 1500 2000 0 999999999 23 0 0 88 0.2 0 0 +1458000.0 13.8 11.9 88 98977 0 0 315 0 0 0 0 0 0 0 270 2.1 0 0 1000 2000 0 999999999 32 0 0 88 0.2 0 0 +1461600.0 14 9 72 98517 0 0 313 0 0 0 0 0 0 0 292 0 0 0 1500 2000 0 999999999 23 0 0 88 0.2 0 0 +1465200.0 13 9 77 98507 0 0 309 0 0 0 0 0 0 0 126 0 0 0 1300 2000 0 999999999 24 0 0 88 0.2 0 0 +1468800.0 11 10.2 95 99047 0 0 301 0 0 0 0 0 0 0 272 0 0 0 1000 2000 0 999999999 27 0 0 88 0.2 0 0 +1472400.0 11 8 82 98488 0 0 299 0 0 0 0 0 0 0 60 0 0 0 900 2000 0 999999999 21 0 0 88 0.2 0 0 +1476000.0 10 8 87 98478 0 0 295 0 0 0 0 0 0 0 57 0 0 0 700 2000 0 999999999 21 0 0 88 0.2 0 0 +1479600.0 8.8 8.4 97 99025 0 0 290 0 0 0 0 0 0 0 342 0 0 0 200 2000 0 999999999 22 0 0 88 0.2 0 0 +1483200.0 8 8 100 98458 0 0 287 0 0 0 0 0 0 0 32 0 0 0 50 2000 0 999999999 21 0 0 88 0.2 0 0 +1486800.0 8 8 100 98458 0 0 331 0 0 0 0 0 0 0 260 2.1 10 10 150 2000 0 999999999 21 0 0 88 0.2 0 0 +1490400.0 7.6 7.6 100 98993 0 0 328 0 0 0 0 0 0 0 243 0 10 10 49 30 0 999999999 21 0 0 88 0.2 0 0 +1494000.0 6 6 100 98438 0 0 319 0 0 0 0 0 0 0 210 2.1 10 10 0 30 0 999999999 18 0 0 88 0.2 0 0 +1497600.0 6 6 100 98438 53 248 319 5 0 5 498 0 501 198 230 1.5 10 10 0 30 0 999999999 18 0 0 88 0.2 0 0 +1501200.0 6.8 6.8 100 99170 333 1413 324 55 0 55 5409 0 5450 2139 230 2.1 10 10 49 30 0 999999999 19 0 0 88 0.2 0 0 +1504800.0 8 8 100 98458 575 1413 287 370 535 152 41601 35776 17186 5841 183 0 0 0 50 2000 0 999999999 21 0 0 88 0.2 0 0 +1508400.0 9 9 100 98468 761 1413 292 532 824 87 64643 46871 10636 4224 250 3.1 0 0 500 2000 0 999999999 24 0 0 88 0.2 0 0 +1512000.0 12.6 10.7 88 99189 879 1413 309 635 786 146 75636 50948 17421 6954 270 2.1 0 0 500 2000 0 999999999 28 0 0 88 0.2 0 0 +1515600.0 17 9 59 98546 921 1413 326 675 791 159 80410 53253 19038 7628 290 3.1 0 0 1200 2000 0 999999999 23 0 0 88 0.2 0 0 +1519200.0 18 7 49 98555 883 1413 329 644 787 151 76627 53166 18081 7191 280 3.6 0 0 1400 2000 0 999999999 19 0 0 88 0.2 0 0 +1522800.0 19.6 11.7 60 98925 770 1413 341 538 820 90 65204 45734 10974 4370 270 4.6 0 0 1000 2000 0 999999999 31 0 0 88 0.2 0 0 +1526400.0 20 7 43 98574 588 1413 338 382 720 82 45252 38322 9768 3656 270 3.6 0 0 1700 2000 0 999999999 19 0 0 88 0.2 0 0 +1530000.0 20 6 40 98574 349 1413 336 187 471 70 21158 16888 7973 2635 290 2.6 0 0 1700 2000 0 999999999 17 0 0 88 0.2 0 0 +1533600.0 17.6 12.2 71 98887 70 1413 332 22 38 20 2388 0 2188 625 290 2.6 0 0 2000 2000 0 999999999 32 0 0 88 0.2 0 0 +1537200.0 17 7 52 98546 0 332 324 0 0 0 0 0 0 0 290 1.5 0 0 2100 2000 0 999999999 19 0 0 88 0.2 0 0 +1540800.0 16 8 59 98536 0 0 321 0 0 0 0 0 0 0 268 0 0 0 1800 2000 0 999999999 21 0 0 88 0.2 0 0 +1544400.0 13 11.1 88 98998 0 0 311 0 0 0 0 0 0 0 89 0 0 0 1000 2000 0 999999999 29 0 0 88 0.2 0 0 +1548000.0 14 9 72 98517 0 0 313 0 0 0 0 0 0 0 114 0 0 0 1700 2000 0 999999999 23 0 0 88 0.2 0 0 +1551600.0 13 8 72 98507 0 0 308 0 0 0 0 0 0 0 15 0 0 0 1600 2000 0 999999999 21 0 0 88 0.2 0 0 +1555200.0 10.6 10.2 97 99014 0 0 300 0 0 0 0 0 0 0 200 0 0 0 1000 2000 0 999999999 27 0 0 88 0.2 0 0 +1558800.0 11 9 87 98488 0 0 300 0 0 0 0 0 0 0 60 0 0 0 1000 2000 0 999999999 24 0 0 88 0.2 0 0 +1562400.0 11 9 87 98488 0 0 300 0 0 0 0 0 0 0 335 0 0 0 800 2000 0 999999999 24 0 0 88 0.2 0 0 +1566000.0 9.6 9.2 97 98965 0 0 294 0 0 0 0 0 0 0 178 0 0 0 500 2000 0 999999999 24 0 0 88 0.2 0 0 +1569600.0 10 9 93 98478 0 0 296 0 0 0 0 0 0 0 196 0 0 0 500 2000 0 999999999 24 0 0 88 0.2 0 0 +1573200.0 10 9 93 98478 0 0 296 0 0 0 0 0 0 0 27 0 0 0 500 2000 0 999999999 24 0 0 88 0.2 0 0 +1576800.0 8.2 8.2 100 98883 0 0 288 0 0 0 0 0 0 0 238 0 0 0 200 2000 0 999999999 22 0 0 88 0.2 0 0 +1580400.0 9 9 100 98468 0 0 292 0 0 0 0 0 0 0 71 0 0 0 200 2000 0 999999999 24 0 0 88 0.2 0 0 +1584000.0 9 9 100 98468 54 252 292 17 0 17 1597 0 1608 518 270 1.5 0 0 300 2000 0 999999999 24 0 0 88 0.2 0 0 +1587600.0 9 8.2 95 99076 335 1413 291 175 443 69 19702 14687 7865 2573 5 0 0 0 200 2000 0 999999999 22 0 0 88 0.2 0 0 +1591200.0 13 10 82 98507 577 1413 310 370 679 92 43286 36261 10855 4008 240 2.1 0 0 1000 2000 0 999999999 26 0 0 88 0.2 0 0 +1594800.0 16 10 68 98536 763 1413 323 533 815 92 64554 46501 11140 4420 260 2.1 0 0 1000 2000 0 999999999 26 0 0 88 0.2 0 0 +1598400.0 16.4 12 75 99235 882 1413 327 637 864 96 78174 49424 11877 4861 270 2.1 0 0 1000 2000 0 999999999 32 0 0 88 0.2 0 0 +1602000.0 22 3 29 98592 924 1413 342 685 811 153 82072 56226 18447 7408 240 2.1 0 0 1200 2000 0 999999999 13 0 0 88 0.2 0 0 +1605600.0 23 5 31 98601 887 1413 370 604 657 191 70753 48544 22449 8689 250 2.6 5 5 1600 2000 0 999999999 16 0 0 88 0.2 0 0 +1609200.0 23.6 8.2 37 98903 774 1413 377 507 675 136 59694 43929 16133 6239 250 2.6 5 5 2000 2000 0 999999999 21 0 0 88 0.2 0 0 +1612800.0 24 6 31 98610 592 1413 376 359 576 118 41445 35161 13628 4918 260 2.6 5 5 3200 3048 0 999999999 17 0 0 88 0.2 0 0 +1616400.0 23 6 33 98601 353 1413 371 176 382 81 19806 15233 9088 2936 260 2.6 5 5 3200 3048 0 999999999 17 0 0 88 0.2 0 0 +1620000.0 19.2 12 63 98873 75 1413 360 21 28 20 2353 0 2197 635 230 1.5 5 5 2000 3048 0 999999999 32 0 0 88 0.2 0 0 +1623600.0 19 8 49 98564 0 351 354 0 0 0 0 0 0 0 240 1.5 5 5 2800 3048 0 999999999 21 0 0 88 0.2 0 0 +1627200.0 18 9 56 98555 0 0 345 0 0 0 0 0 0 0 75 0 3 3 2800 3048 0 999999999 23 0 0 88 0.2 0 0 +1630800.0 14.6 10.8 78 98523 0 0 331 0 0 0 0 0 0 0 23 0 3 3 4000 2000 0 999999999 28 0 0 88 0.2 0 0 +1634400.0 15 9 67 98527 0 0 331 0 0 0 0 0 0 0 60 1.5 3 3 2200 2000 0 999999999 23 0 0 88 0.2 0 0 +1638000.0 13 9 77 98507 0 0 322 0 0 0 0 0 0 0 108 0 3 3 1800 2000 0 999999999 24 0 0 88 0.2 0 0 +1641600.0 13.4 10.7 84 99012 0 0 326 0 0 0 0 0 0 0 94 0 3 3 1000 2000 0 999999999 28 0 0 88 0.2 0 0 +1645200.0 13 9 77 98507 0 0 327 0 0 0 0 0 0 0 160 1.5 5 5 1500 3048 0 999999999 24 0 0 88 0.2 0 0 +1648800.0 12 8 76 98498 0 0 321 0 0 0 0 0 0 0 206 0 5 5 1500 3048 0 999999999 21 0 0 88 0.2 0 0 +1652400.0 13 10.7 86 98960 0 0 329 0 0 0 0 0 0 0 76 0 5 5 1000 3048 0 999999999 28 0 0 88 0.2 0 0 +1656000.0 12 8 76 98498 0 0 321 0 0 0 0 0 0 0 110 0 5 5 1500 3048 0 999999999 21 0 0 88 0.2 0 0 +1659600.0 11 8 82 98488 0 0 317 0 0 0 0 0 0 0 252 0 5 5 1200 3048 0 999999999 21 0 0 88 0.2 0 0 +1663200.0 11.2 9.2 87 98903 0 0 319 0 0 0 0 0 0 0 193 0 5 5 1000 2000 9 999999999 24 0 0 88 0.2 0 0 +1666800.0 11 9 87 98488 0 0 318 0 0 0 0 0 0 0 185 0 5 5 900 2000 9 999999999 24 0 0 88 0.2 0 0 +1670400.0 11 9 87 98488 55 258 318 16 0 16 1520 0 1530 504 143 0 5 5 800 2000 9 999999999 24 0 0 88 0.2 0 0 +1674000.0 13 11.1 88 99086 336 1413 329 163 372 74 18262 12381 8336 2702 117 0 5 5 500 2000 9 999999999 29 0 0 88 0.2 0 0 +1677600.0 16 9 63 98536 579 1413 341 347 535 127 39593 32772 14604 5169 18 0 5 5 1000 2000 9 999999999 23 0 0 88 0.2 0 0 +1681200.0 20 10 53 98574 766 1413 361 498 677 131 58770 42772 15496 6004 225 0 5 5 1200 2000 9 999999999 26 0 0 88 0.2 0 0 +1684800.0 22.2 13.2 57 99105 885 1413 376 594 705 151 70484 45033 18044 7203 56 0 5 5 1000 2000 9 999999999 35 0 0 88 0.2 0 0 +1688400.0 26 7 30 98628 928 1413 388 637 732 155 76149 49625 18591 7478 240 2.6 5 5 1800 2000 9 999999999 19 0 0 88 0.2 0 0 +1692000.0 27 7 28 98637 892 1413 393 606 724 148 72331 48613 17761 7095 230 2.6 5 5 2500 2000 9 999999999 19 0 0 88 0.2 0 0 +1695600.0 27.6 12.1 38 98822 778 1413 403 507 678 133 59769 42160 15711 6115 230 3.1 5 5 2000 2000 9 999999999 31 0 0 88 0.2 0 0 +1699200.0 28 7 26 98646 596 1413 398 362 576 119 41783 35084 13756 4972 270 2.6 5 5 4000 2000 9 999999999 19 0 0 88 0.2 0 0 +1702800.0 27 7 28 98637 358 1413 393 179 385 82 20126 15433 9192 2977 290 2.6 5 5 4000 2000 9 999999999 19 0 0 88 0.2 0 0 +1706400.0 23.8 14.8 57 98652 79 1413 386 22 29 21 2470 0 2298 665 350 0 5 5 2000 2000 9 999999999 41 0 0 88 0.2 0 0 +1710000.0 23 9 41 98601 0 371 375 0 0 0 0 0 0 0 50 0 5 5 3500 2000 9 999999999 23 0 0 88 0.2 0 0 +1713600.0 22 10 46 98592 0 0 371 0 0 0 0 0 0 0 160 2.1 5 5 3200 2000 9 999999999 26 0 0 88 0.2 0 0 +1717200.0 19.6 11.2 58 98740 0 0 355 0 0 0 0 0 0 0 180 1.5 3 3 2000 2000 9 999999999 29 0 0 88 0.2 0 0 +1720800.0 20 11 56 98574 0 0 357 0 0 0 0 0 0 0 120 2.1 3 3 3000 2000 9 999999999 28 0 0 88 0.2 0 0 +1724400.0 18 11 64 98555 0 0 347 0 0 0 0 0 0 0 130 1.5 3 3 2200 2000 9 999999999 28 0 0 88 0.2 0 0 +1728000.0 17.6 13.4 76 98741 0 0 348 0 0 0 0 0 0 0 90 1.5 3 3 2000 2000 9 999999999 36 0 0 88 0.2 0 0 +1731600.0 17 12 72 98546 0 0 349 0 0 0 0 0 0 0 100 1.5 5 5 2100 2000 9 999999999 32 0 0 88 0.2 0 0 +1735200.0 16 13 82 98536 0 0 345 0 0 0 0 0 0 0 80 1.5 5 5 1800 2000 9 999999999 35 0 0 88 0.2 0 0 +1738800.0 16.6 13 79 98673 0 0 348 0 0 0 0 0 0 0 90 2.1 5 5 1000 2000 9 999999999 35 0 0 88 0.2 0 0 +1742400.0 15 13 88 98527 0 0 341 0 0 0 0 0 0 0 90 2.6 5 5 1500 2000 9 999999999 35 0 0 88 0.2 0 0 +1746000.0 15 13 88 98527 0 0 341 0 0 0 0 0 0 0 90 2.1 5 5 1500 2000 9 999999999 35 0 0 88 0.2 0 0 +1749600.0 14.2 13.5 96 98611 0 0 337 0 0 0 0 0 0 0 90 2.1 5 5 1000 2000 9 999999999 37 0 0 88 0.2 3 0 +1753200.0 14 13 94 98517 0 0 336 0 0 0 0 0 0 0 100 3.1 5 5 1500 3048 9 999999999 35 0 0 88 0.2 0 0 +1756800.0 14 13 94 98517 56 263 356 9 0 9 856 0 862 323 90 3.6 9 9 1500 3048 9 999999999 35 0 0 88 0.2 0 0 +1760400.0 15 13.6 91 98755 338 1412 341 163 369 75 18287 11798 8412 2730 90 4.1 5 5 1000 3000 9 999999999 37 0 0 88 0.2 0 0 +1764000.0 18 11 64 98555 581 1412 353 347 566 114 40001 32510 13173 4758 110 4.6 5 5 1600 3048 9 999999999 28 0 0 88 0.2 0 0 +1767600.0 19 11 60 98564 769 1412 358 500 675 132 58921 42359 15566 6039 100 5.1 5 5 1600 3048 9 999999999 28 0 0 88 0.2 0 0 +1771200.0 22.4 13.8 58 98737 888 1412 378 596 550 250 68025 42189 28647 10597 100 4.1 5 5 1000 3000 9 999999999 37 0 0 88 0.2 0 0 +1774800.0 23 9 41 98601 932 1412 409 216 7 211 25179 493 24790 9624 110 4.1 10 10 1600 3048 0 919999999 23 0 0 88 0.2 0 0 +1778400.0 21 11 53 98583 896 1412 400 205 3 203 23818 235 23696 9143 120 4.1 10 10 1600 2438 0 919999999 28 0 0 88 0.2 0 0 +1782000.0 18 16 88 98502 783 1412 390 171 0 171 19771 10 19854 7516 140 7.2 10 10 1000 1200 0 919999999 47 0 0 88 0.2 0 0 +1785600.0 18 13 73 98555 601 1412 387 122 0 122 12295 0 12399 5105 90 4.6 10 10 1500 2438 0 19999999 35 0 0 88 0.2 0 0 +1789200.0 17 15 88 98546 362 1412 373 100 7 98 10988 300 10822 3385 100 7.2 9 9 1500 2438 0 19999999 43 0 0 88 0.2 0 0 +1792800.0 16.6 15.6 94 98663 83 1412 372 13 0 13 1260 0 1269 472 110 6.2 9 9 1000 1200 0 19999999 45 0 0 88 0.2 0 0 +1796400.0 17 13 77 98546 0 390 371 0 0 0 0 0 0 0 90 4.1 9 9 2100 3048 0 19999999 35 0 0 88 0.2 0 0 +1800000.0 16 13 82 98536 0 0 366 0 0 0 0 0 0 0 80 4.1 9 9 2100 3048 0 19999999 35 0 0 88 0.2 0 0 +1803600.0 16 14.3 90 98463 0 0 367 0 0 0 0 0 0 0 90 4.1 9 9 2000 3000 0 19999999 40 0 0 88 0.2 0 0 +1807200.0 16 12 77 98536 0 0 365 0 0 0 0 0 0 0 270 2.6 9 9 2000 3000 0 19999999 32 0 0 88 0.2 0 0 +1810800.0 15 13 88 98527 0 0 361 0 0 0 0 0 0 0 70 4.1 9 9 2100 3048 0 19999999 35 0 0 88 0.2 0 0 +1814400.0 14.6 14.6 100 98508 0 0 361 0 0 0 0 0 0 0 70 5.1 9 9 2000 1200 0 19999999 41 0 0 88 0.2 0 0 +1818000.0 15 14 94 98527 0 0 362 0 0 0 0 0 0 0 90 6.2 9 9 2100 3048 0 19999999 39 0 0 88 0.2 0 0 +1821600.0 15 14 94 98527 0 0 362 0 0 0 0 0 0 0 90 5.1 9 9 2100 3048 0 19999999 39 0 0 88 0.2 0 0 +1825200.0 14 14 100 98298 0 0 357 0 0 0 0 0 0 0 110 6.2 9 9 1000 3000 0 19999999 39 0 0 88 0.2 0 0 +1828800.0 14 14 100 98517 0 0 357 0 0 0 0 0 0 0 120 5.1 9 9 1400 3048 0 19999999 39 0 0 88 0.2 0 0 +1832400.0 14 14 100 98517 0 0 357 0 0 0 0 0 0 0 120 4.1 9 9 2100 3048 0 19999999 39 0 0 88 0.2 0 0 +1836000.0 14 14 100 98444 0 0 357 0 0 0 0 0 0 0 90 5.1 9 9 2000 3000 9 999999999 39 0 0 88 0.2 5 0 +1839600.0 14 14 100 98517 0 0 357 0 0 0 0 0 0 0 120 2.6 9 9 2200 3048 9 999999999 39 0 0 88 0.2 5 0 +1843200.0 14 14 100 98517 58 270 367 6 0 6 532 0 536 213 120 3.1 10 10 1800 3048 0 19999999 39 0 0 88 0.2 5 0 +1846800.0 13.2 13.2 100 98689 340 1412 362 56 0 56 5471 0 5513 2180 200 4.1 10 10 1000 1050 0 19999999 36 0 0 88 0.2 5 0 +1850400.0 13 13 100 98507 584 1412 351 193 36 178 21403 2469 19864 6532 140 3.1 9 9 1500 2438 0 19999999 35 0 0 88 0.2 3 0 +1854000.0 15 14 94 98527 772 1412 362 277 17 268 30800 1391 29939 10089 140 4.1 9 9 1600 3048 0 19999999 39 0 0 88 0.2 0 0 +1857600.0 15.8 15.5 98 98802 892 1412 368 331 35 309 37104 2936 34818 12173 140 5.7 9 9 1000 1050 0 19999999 45 0 0 88 0.2 0 0 +1861200.0 18 15 83 98555 936 1412 378 352 36 328 39500 3043 37059 13039 140 4.1 9 9 1600 3048 0 19999999 43 0 0 88 0.2 0 0 +1864800.0 18 15 83 98555 900 1412 378 335 36 312 37581 2981 35255 12334 150 4.1 9 9 1600 2438 0 19999999 43 0 0 88 0.2 0 0 +1868400.0 16.8 16.1 96 98626 787 1412 374 283 17 273 31438 1360 30570 10362 110 3.1 9 9 1000 2400 0 19999999 48 0 0 88 0.2 0 0 +1872000.0 18 15 83 98555 605 1412 378 202 28 190 22339 1940 21131 6955 90 3.6 9 9 1600 3048 0 19999999 43 0 0 88 0.2 0 0 +1875600.0 17 16 94 98546 367 1412 375 101 7 99 11133 299 10966 3437 50 2.1 9 9 1600 3048 0 19999999 47 0 0 88 0.2 0 0 +1879200.0 16.2 15.5 96 98708 87 1412 349 25 30 23 2716 0 2516 729 70 1.5 5 5 1000 3000 0 19999999 45 0 0 88 0.2 0 0 +1882800.0 16 15 94 98536 0 410 348 0 0 0 0 0 0 0 30 2.1 5 5 2100 3048 0 19999999 43 0 0 88 0.2 0 0 +1886400.0 16 15 94 98536 0 0 348 0 0 0 0 0 0 0 50 2.6 5 5 2100 3048 0 19999999 43 0 0 88 0.2 0 0 +1890000.0 15.2 14.1 93 98864 0 0 343 0 0 0 0 0 0 0 50 2.1 5 5 2000 3048 0 19999999 39 0 0 88 0.2 0 0 +1893600.0 14 14 100 98517 0 0 337 0 0 0 0 0 0 0 20 2.1 5 5 1500 3048 0 19999999 39 0 0 88 0.2 0 0 +1897200.0 13 13 100 98507 0 0 331 0 0 0 0 0 0 0 50 2.6 5 5 1800 3048 0 19999999 35 0 0 88 0.2 0 0 +1900800.0 12.4 11.7 95 98876 0 0 327 0 0 0 0 0 0 0 50 1.5 5 5 1000 3048 0 19999999 31 0 0 88 0.2 0 0 +1904400.0 11 11 100 98488 0 0 320 0 0 0 0 0 0 0 60 1.5 5 5 1800 3048 0 19999999 29 0 0 88 0.2 0 0 +1908000.0 10 10 100 98478 0 0 314 0 0 0 0 0 0 0 234 0 5 5 1500 3048 0 19999999 26 0 0 88 0.2 0 0 +1911600.0 10 9.6 97 98852 0 0 314 0 0 0 0 0 0 0 21 0 5 5 1000 2000 0 19999999 25 0 0 88 0.2 0 0 +1915200.0 10 10 100 98478 0 0 314 0 0 0 0 0 0 0 208 0 5 5 1200 2000 0 19999999 26 0 0 88 0.2 0 0 +1918800.0 11 11 100 98488 0 0 320 0 0 0 0 0 0 0 80 1.5 5 5 1200 3048 0 19999999 29 0 0 88 0.2 0 0 +1922400.0 9.8 9.8 100 98831 0 0 313 0 0 0 0 0 0 0 351 0 5 5 1000 3048 9 999999999 26 0 0 88 0.2 6 0 +1926000.0 10 10 100 98478 0 0 314 0 0 0 0 0 0 0 79 0 5 5 700 3048 9 999999999 26 0 0 88 0.2 0 0 +1929600.0 10 10 100 98478 59 277 314 17 0 17 1631 0 1642 538 230 2.6 5 5 600 3048 0 999999999 26 0 0 88 0.2 0 0 +1933200.0 9.2 9.2 100 99048 342 1412 305 177 431 73 19976 14868 8202 2682 230 1.5 3 3 50 2000 0 999999999 24 0 0 88 0.2 0 0 +1936800.0 10 9 93 98478 586 1412 309 374 659 99 43581 36744 11634 4283 250 1.5 3 3 150 2000 0 999999999 24 0 0 88 0.2 0 0 +1940400.0 10 10 100 98478 775 1412 310 536 802 95 64893 46243 11502 4575 240 1.5 3 3 200 2000 0 999999999 26 0 0 88 0.2 0 0 +1944000.0 12.4 12 97 99226 896 1412 322 640 842 105 78269 49195 12921 5290 250 2.6 3 3 500 2000 0 999999999 32 0 0 88 0.2 0 0 +1947600.0 14 12 88 98517 940 1412 316 688 792 160 82038 51855 19179 7736 250 2.6 0 0 800 2000 0 999999999 32 0 0 88 0.2 0 0 +1951200.0 16 13 82 98536 904 1412 326 655 867 99 80519 49342 12246 5037 290 3.1 0 0 900 2000 0 999999999 35 0 0 88 0.2 0 0 +1954800.0 17.4 13.5 78 99011 792 1412 333 555 826 90 67424 45246 11035 4427 290 2.6 0 0 1000 2000 0 999999999 37 0 0 88 0.2 0 0 +1958400.0 18 14 77 98555 610 1412 336 396 697 94 46412 36197 11056 4151 300 3.1 0 0 1200 2000 0 999999999 38 0 0 88 0.2 0 0 +1962000.0 18 14 77 98555 371 1412 336 200 500 68 22773 16283 7801 2648 310 2.6 0 0 1200 2000 0 999999999 38 0 0 88 0.2 0 0 +1965600.0 16.6 13.8 84 99014 92 1412 344 28 59 24 3034 0 2622 760 270 2.6 3 3 1000 2000 0 999999999 38 0 0 88 0.2 0 0 +1969200.0 15 13 88 98527 0 429 335 0 0 0 0 0 0 0 250 1.5 3 3 1600 2000 0 999999999 35 0 0 88 0.2 0 0 +1972800.0 14 12 88 98517 0 0 330 0 0 0 0 0 0 0 191 0 3 3 1600 2000 0 999999999 32 0 0 88 0.2 0 0 +1976400.0 14.2 13.8 97 99107 0 0 333 0 0 0 0 0 0 0 270 1.5 3 3 1000 2000 0 999999999 38 0 0 88 0.2 0 0 +1980000.0 13 13 100 98507 0 0 313 0 0 0 0 0 0 0 121 0 0 0 500 2000 0 999999999 35 0 0 88 0.2 0 0 +1983600.0 13 13 100 98507 0 0 313 0 0 0 0 0 0 0 131 0 0 0 300 2000 0 999999999 35 0 0 88 0.2 0 0 +1987200.0 12.2 11.8 97 99204 0 0 308 0 0 0 0 0 0 0 70 0 0 0 200 2000 0 999999999 31 0 0 88 0.2 0 0 +1990800.0 12 12 100 98498 0 0 326 0 0 0 0 0 0 0 162 0 5 5 300 2000 0 999999999 32 0 0 88 0.2 0 0 +1994400.0 13 13 100 98507 0 0 331 0 0 0 0 0 0 0 348 0 5 5 300 2000 0 999999999 35 0 0 88 0.2 0 0 +1998000.0 11.6 11.2 97 99237 0 0 323 0 0 0 0 0 0 0 49 0 5 5 200 2000 0 999999999 30 0 0 88 0.2 0 0 +2001600.0 12 12 100 98498 0 0 326 0 0 0 0 0 0 0 213 0 5 5 300 3048 0 999999999 32 0 0 88 0.2 0 0 +2005200.0 12 12 100 98498 0 0 326 0 0 0 0 0 0 0 12 0 5 5 300 3048 0 999999999 32 0 0 88 0.2 0 0 +2008800.0 11.4 11 97 99245 0 0 322 0 0 0 0 0 0 0 340 0 5 5 500 3000 0 999999999 29 0 0 88 0.2 0 0 +2012400.0 12 12 100 98498 0 0 326 0 0 0 0 0 0 0 40 2.1 5 5 500 3048 0 999999999 32 0 0 88 0.2 0 0 +2016000.0 11 11 100 98488 61 285 320 17 0 17 1667 0 1679 550 40 1.5 5 5 500 3048 0 999999999 29 0 0 88 0.2 0 0 +2019600.0 12.4 11.3 93 99391 344 1411 322 178 451 68 20155 14318 7694 2555 50 1.5 3 3 500 2000 0 999999999 30 0 0 88 0.2 0 0 +2023200.0 14 13 94 98517 589 1411 331 373 654 100 43418 34855 11651 4303 110 2.1 3 3 700 2000 0 999999999 35 0 0 88 0.2 0 0 +2026800.0 17 14 82 98546 778 1411 351 504 670 134 59334 40884 15846 6170 70 2.6 5 5 1100 2000 0 999999999 39 0 0 88 0.2 0 0 +2030400.0 18.6 14.1 75 99490 899 1411 359 604 703 156 71661 44740 18550 7424 110 2.1 5 5 1000 2000 0 999999999 39 0 0 88 0.2 0 0 +2034000.0 19 13 68 98564 944 1411 360 643 713 165 76446 46609 19694 7937 100 2.1 5 5 1600 3048 0 999999999 35 0 0 88 0.2 0 0 +2037600.0 20 12 60 98574 909 1411 364 614 565 250 70404 43880 28801 10746 90 2.6 5 5 1800 3048 0 999999999 31 0 0 88 0.2 0 0 +2041200.0 20.4 13.8 66 99146 796 1411 401 176 17 166 20395 1095 19396 7411 50 3.1 10 10 1000 2400 0 999999999 38 0 0 88 0.2 0 0 +2044800.0 18 12 68 98555 615 1411 385 126 0 126 12692 0 12799 5281 300 3.6 10 10 1000 2438 0 919999999 31 0 0 88 0.2 0 0 +2048400.0 16 10 68 98536 376 1411 373 64 0 64 6366 0 6415 2540 60 5.7 10 10 2200 2438 0 19999999 26 0 0 88 0.2 0 0 +2052000.0 15.8 14.4 91 99055 96 1411 366 15 0 15 1448 0 1458 542 320 2.1 9 9 2000 1200 0 19999999 40 0 0 88 0.2 0 0 +2055600.0 16 12 77 98536 0 449 365 0 0 0 0 0 0 0 290 2.6 9 9 2500 2438 0 19999999 32 0 0 88 0.2 0 0 +2059200.0 16 13 82 98536 0 0 366 0 0 0 0 0 0 0 300 5.1 9 9 2500 2438 0 19999999 35 0 0 88 0.2 0 0 +2062800.0 14.8 14.5 98 99103 0 0 362 0 0 0 0 0 0 0 320 5.1 9 9 2000 2400 0 19999999 41 0 0 88 0.2 0 0 +2066400.0 14 12 88 98517 0 0 335 0 0 0 0 0 0 0 300 3.1 5 5 2500 3048 0 19999999 32 0 0 88 0.2 0 0 +2070000.0 14 12 88 98517 0 0 355 0 0 0 0 0 0 0 250 3.6 9 9 2500 3048 0 19999999 32 0 0 88 0.2 0 0 +2073600.0 12.8 11.3 91 99220 0 0 348 0 0 0 0 0 0 0 180 2.6 9 9 2000 3000 0 19999999 30 0 0 88 0.2 0 0 +2077200.0 12 11 94 98498 0 0 353 0 0 0 0 0 0 0 220 2.6 10 10 2200 3048 0 19999999 29 0 0 88 0.2 0 0 +2080800.0 12 12 100 98498 0 0 355 0 0 0 0 0 0 0 50 2.1 10 10 2200 2743 0 19999999 32 0 0 88 0.2 0 0 +2084400.0 11.8 11.4 97 99123 0 0 343 0 0 0 0 0 0 0 320 3.1 9 9 2000 3000 0 19999999 30 0 0 88 0.2 0 0 +2088000.0 12 12 100 98498 0 0 345 0 0 0 0 0 0 0 340 3.1 9 9 2200 3048 0 19999999 32 0 0 88 0.2 0 0 +2091600.0 12 11 94 98498 0 0 344 0 0 0 0 0 0 0 30 1 9 9 2200 3048 0 19999999 29 0 0 88 0.2 0 0 +2095200.0 10.8 10.8 100 99064 0 0 338 0 0 0 0 0 0 0 290 1.5 9 9 2000 3000 9 999999999 28 0 0 88 0.2 3 0 +2098800.0 12 11 94 98498 0 0 344 0 0 0 0 0 0 0 129 1 9 9 2200 3048 9 999999999 29 0 0 88 0.2 0 0 +2102400.0 12 11 94 98498 63 293 344 10 0 10 953 0 960 358 300 2.1 9 9 1800 3048 9 999999999 29 0 0 88 0.2 0 0 +2106000.0 11 11 100 99290 347 1411 339 94 6 93 10390 253 10260 3192 270 1.5 9 9 1000 2400 9 999999999 29 0 0 88 0.2 0 0 +2109600.0 13 12 94 98507 592 1411 350 197 28 185 21808 1973 20625 6749 270 2.1 9 9 800 3048 9 999999999 32 0 0 88 0.2 0 0 +2113200.0 15 11 77 98527 782 1411 358 283 47 257 31671 3852 28916 9938 10 2.1 9 9 1000 3048 9 999999999 29 0 0 88 0.2 0 0 +2116800.0 15.7 12.3 80 99404 903 1411 343 609 561 250 69755 43487 28726 10697 20 2.1 5 5 1000 3048 9 999999999 33 0 0 88 0.2 0 0 +2120400.0 17 10 63 98546 948 1411 347 649 588 254 74871 46211 29427 11126 320 3.1 5 5 1300 3048 9 999999999 26 0 0 88 0.2 0 0 +2124000.0 17 10 63 98546 913 1411 367 344 85 289 39043 7146 32977 11877 320 3.6 9 9 1300 3048 9 999999999 26 0 0 88 0.2 0 0 +2127600.0 17.6 13 74 99159 801 1411 353 524 528 223 59468 39741 25508 9236 320 3.6 5 5 1000 3048 9 999999999 35 0 0 88 0.2 0 0 +2131200.0 18 9 56 98555 619 1411 350 379 580 124 43678 35536 14331 5222 310 3.6 5 5 2000 3048 9 999999999 23 0 0 88 0.2 0 0 +2134800.0 17 10 63 98546 380 1411 347 194 397 87 21743 16612 9764 3196 310 3.6 5 5 2000 3048 9 999999999 26 0 0 88 0.2 0 0 +2138400.0 16 13.1 83 99154 100 1411 345 28 40 26 3122 0 2813 818 320 3.1 5 5 2000 2000 9 999999999 35 0 0 88 0.2 0 0 +2142000.0 15 10 72 98527 0 469 332 0 0 0 0 0 0 0 300 3.1 3 3 1800 2000 9 999999999 26 0 0 88 0.2 0 0 +2145600.0 14 10 77 98517 0 0 328 0 0 0 0 0 0 0 340 2.6 3 3 1800 2000 9 999999999 26 0 0 88 0.2 0 0 +2149200.0 12.2 11.4 95 99389 0 0 321 0 0 0 0 0 0 0 340 2.1 3 3 1000 2000 9 999999999 30 0 0 88 0.2 0 0 +2152800.0 12 9 82 98498 0 0 317 0 0 0 0 0 0 0 320 2.1 3 3 1800 2000 9 999999999 24 0 0 88 0.2 0 0 +2156400.0 13 9 77 98507 0 0 322 0 0 0 0 0 0 0 320 2.1 3 3 1800 2000 9 999999999 24 0 0 88 0.2 0 0 +2160000.0 11.6 10 90 99461 0 0 317 0 0 0 0 0 0 0 320 3.1 3 3 1000 2000 9 999999999 26 0 0 88 0.2 0 0 +2163600.0 11 8 82 98488 0 0 312 0 0 0 0 0 0 0 300 2.1 3 3 1800 2000 9 999999999 21 0 0 88 0.2 0 0 +2167200.0 11 8 82 98488 0 0 312 0 0 0 0 0 0 0 330 2.1 3 3 1800 2000 9 999999999 21 0 0 88 0.2 0 0 +2170800.0 10.2 8.6 90 99379 0 0 309 0 0 0 0 0 0 0 290 1.5 3 3 1000 2000 9 999999999 23 0 0 88 0.2 0 0 +2174400.0 10 8 87 98478 0 0 308 0 0 0 0 0 0 0 290 2.1 3 3 1200 2000 9 999999999 21 0 0 88 0.2 0 0 +2178000.0 10 7 82 98478 0 0 307 0 0 0 0 0 0 0 320 2.1 3 3 1200 2000 9 999999999 19 0 0 88 0.2 0 0 +2181600.0 8.2 7.4 95 99378 0 0 299 0 0 0 0 0 0 0 290 2.1 3 3 1000 2000 9 999999999 20 0 0 88 0.2 0 0 +2185200.0 8 7 93 98458 0 0 298 0 0 0 0 0 0 0 290 2.6 3 3 1000 2000 9 999999999 19 0 0 88 0.2 0 0 +2188800.0 8 7 93 98458 65 302 286 20 10 19 2185 0 2138 603 250 2.6 0 0 800 2000 9 999999999 19 0 0 88 0.2 0 0 +2192400.0 7.8 7.4 97 99588 349 1411 285 185 459 71 20957 16389 8103 2673 230 2.1 0 0 500 2000 9 999999999 20 0 0 88 0.2 0 0 +2196000.0 11 8 82 98488 595 1411 299 386 689 95 45297 38363 11224 4165 270 2.6 0 0 800 2000 9 999999999 21 0 0 88 0.2 0 0 +2199600.0 13 8 72 98507 785 1411 308 554 822 96 67155 48457 11638 4637 290 3.1 0 0 1000 2000 9 999999999 21 0 0 88 0.2 0 0 +2203200.0 14.2 10 76 99739 907 1411 315 661 788 153 78747 52101 18360 7358 270 3.1 0 0 1000 2000 9 999999999 26 0 0 88 0.2 0 0 +2206800.0 17 6 48 98546 952 1411 323 706 793 171 84223 55526 20433 8199 290 4.1 0 0 2000 2000 9 999999999 17 0 0 88 0.2 0 0 +2210400.0 18 2 34 98555 917 1411 323 679 789 165 80894 56243 19782 7871 310 4.1 0 0 2500 2000 9 999999999 12 0 0 88 0.2 0 0 +2214000.0 18.8 6.9 46 99453 806 1411 332 573 831 98 69681 49871 11914 4769 290 4.1 0 0 2000 2000 9 999999999 19 0 0 88 0.2 0 0 +2217600.0 18 3 37 98555 624 1411 324 415 748 84 49543 42186 10023 3799 320 4.1 0 0 2500 2000 9 999999999 13 0 0 88 0.2 0 0 +2221200.0 17 3 39 98546 385 1411 320 214 516 73 24490 21366 8413 2840 310 3.6 0 0 2500 2000 9 999999999 13 0 0 88 0.2 0 0 +2224800.0 15.8 6.9 55 99395 105 1411 319 32 55 28 3526 0 3091 883 290 4.1 0 0 2000 2000 9 999999999 19 0 0 88 0.2 0 0 +2228400.0 15 4 48 98527 0 488 312 0 0 0 0 0 0 0 280 3.1 0 0 2500 2000 9 999999999 14 0 0 88 0.2 0 0 +2232000.0 13 4 54 98507 0 0 303 0 0 0 0 0 0 0 280 3.1 0 0 2500 2000 9 999999999 14 0 0 88 0.2 0 0 +2235600.0 11.6 9.2 85 99519 0 0 303 0 0 0 0 0 0 0 270 2.1 0 0 2000 2000 9 999999999 24 0 0 88 0.2 0 0 +2239200.0 11 6 71 98488 0 0 297 0 0 0 0 0 0 0 270 3.1 0 0 2500 2000 9 999999999 17 0 0 88 0.2 0 0 +2242800.0 11 6 71 98488 0 0 297 0 0 0 0 0 0 0 270 2.6 0 0 2200 2000 9 999999999 17 0 0 88 0.2 0 0 +2246400.0 10.2 8.6 90 99603 0 0 296 0 0 0 0 0 0 0 270 2.1 0 0 2000 2000 9 999999999 23 0 0 88 0.2 0 0 +2250000.0 9 6 81 98468 0 0 289 0 0 0 0 0 0 0 250 2.1 0 0 2200 2000 9 999999999 18 0 0 88 0.2 0 0 +2253600.0 9 6 81 98468 0 0 289 0 0 0 0 0 0 0 240 2.6 0 0 1500 2000 9 999999999 18 0 0 88 0.2 0 0 +2257200.0 8.2 6.9 92 99524 0 0 286 0 0 0 0 0 0 0 210 0 0 0 1000 2000 9 999999999 19 0 0 88 0.2 0 0 +2260800.0 8 6 87 98458 0 0 285 0 0 0 0 0 0 0 250 2.1 0 0 1000 2000 9 999999999 18 0 0 88 0.2 0 0 +2264400.0 7 6 93 98448 0 0 281 0 0 0 0 0 0 0 210 1.5 0 0 900 2000 9 999999999 18 0 0 88 0.2 0 0 +2268000.0 7 6.1 94 99454 0 0 281 0 0 0 0 0 0 0 200 2.1 0 0 500 2000 9 999999999 18 0 0 88 0.2 0 0 +2271600.0 6 6 100 98438 0 0 277 0 0 0 0 0 0 0 230 1.5 0 0 400 2000 0 999999999 18 0 0 88 0.2 0 0 +2275200.0 5 5 100 98428 67 311 272 21 14 20 2254 0 2187 617 240 1.5 0 0 200 2000 0 999999999 16 0 0 88 0.2 0 0 +2278800.0 6.6 6.6 100 99654 352 1410 292 185 445 74 20870 16492 8347 2744 270 2.6 3 3 500 2000 0 999999999 19 0 0 88 0.2 0 0 +2282400.0 9 8 93 98468 598 1410 303 384 664 102 44782 37872 11913 4399 270 3.1 3 3 700 2000 0 999999999 21 0 0 88 0.2 0 0 +2286000.0 11 7 76 98488 789 1410 311 550 798 104 66411 48424 12544 4982 280 4.1 3 3 1200 2000 0 999999999 19 0 0 88 0.2 0 0 +2289600.0 14.4 7.5 63 99712 911 1410 332 621 703 166 73648 48584 19804 7876 270 5.1 5 5 1000 2000 0 999999999 20 0 0 88 0.2 0 0 +2293200.0 15 7 59 98527 956 1410 334 660 733 162 78985 50161 19476 7867 300 4.6 5 5 1700 2000 0 999999999 19 0 0 88 0.2 0 0 +2296800.0 15 6 55 98527 922 1410 333 632 731 153 75602 49742 18427 7406 290 3.6 5 5 1700 3048 0 999999999 17 0 0 88 0.2 0 0 +2300400.0 16.6 9.8 64 99480 810 1410 345 534 689 138 63229 44401 16405 6431 290 4.1 5 5 2000 3000 0 999999999 26 0 0 88 0.2 0 0 +2304000.0 17 7 52 98546 628 1410 343 387 515 157 43941 35467 17947 6296 320 4.6 5 5 4000 3048 0 999999999 19 0 0 88 0.2 0 0 +2307600.0 16 8 59 98536 389 1410 335 213 411 99 23723 19541 11096 3550 300 4.6 3 3 3500 3048 0 999999999 21 0 0 88 0.2 0 0 +2311200.0 15.6 8.1 61 99383 109 1410 319 33 54 29 3647 0 3200 916 320 3.6 0 0 2000 2000 0 999999999 22 0 0 88 0.2 0 0 +2314800.0 14 7 63 98517 0 508 311 0 0 0 0 0 0 0 270 2.6 0 0 3500 2000 0 999999999 19 0 0 88 0.2 0 0 +2318400.0 12 6 67 98498 0 0 301 0 0 0 0 0 0 0 280 4.1 0 0 3200 2000 0 999999999 17 0 0 88 0.2 0 0 +2322000.0 11.8 9.4 85 99424 0 0 304 0 0 0 0 0 0 0 290 3.6 0 0 2000 2000 0 999999999 25 0 0 88 0.2 0 0 +2325600.0 11 6 71 98488 0 0 297 0 0 0 0 0 0 0 270 3.1 0 0 3200 2000 0 999999999 17 0 0 88 0.2 0 0 +2329200.0 9 5 76 98468 0 0 288 0 0 0 0 0 0 0 260 3.1 0 0 3000 2000 0 999999999 16 0 0 88 0.2 0 0 +2332800.0 9.4 6.8 84 99497 0 0 291 0 0 0 0 0 0 0 250 2.6 0 0 2000 2000 0 999999999 19 0 0 88 0.2 0 0 +2336400.0 8 4 76 98458 0 0 283 0 0 0 0 0 0 0 116 0 0 0 2500 2000 0 999999999 14 0 0 88 0.2 0 0 +2340000.0 8 5 81 98458 0 0 284 0 0 0 0 0 0 0 250 2.1 0 0 2200 2000 0 999999999 16 0 0 88 0.2 0 0 +2343600.0 6.4 5 91 99428 0 0 277 0 0 0 0 0 0 0 250 2.6 0 0 1000 2000 0 999999999 16 0 0 88 0.2 0 0 +2347200.0 7 5 87 98448 0 0 280 0 0 0 0 0 0 0 240 2.1 0 0 800 2000 0 999999999 16 0 0 88 0.2 0 0 +2350800.0 6 5 93 98438 0 0 276 0 0 0 0 0 0 0 240 2.1 0 0 600 2000 0 999999999 16 0 0 88 0.2 0 0 +2354400.0 6.2 6.2 100 99387 0 0 278 0 0 0 0 0 0 0 250 2.1 0 0 1000 2000 0 999999999 18 0 0 88 0.2 0 0 +2358000.0 6 6 100 98438 0 0 277 0 0 0 0 0 0 0 240 2.1 0 0 500 2000 0 999999999 18 0 0 88 0.2 0 0 +2361600.0 6 6 100 98438 69 321 277 21 30 20 2332 0 2177 619 230 2.1 0 0 500 2000 0 999999999 18 0 0 88 0.2 0 0 +2365200.0 7.2 6.1 93 99660 354 1410 282 189 467 72 21462 17262 8172 2704 250 2.6 0 0 500 2000 0 999999999 18 0 0 88 0.2 0 0 +2368800.0 9 7 87 98468 601 1410 290 392 691 97 45995 39174 11403 4237 260 2.6 0 0 900 2000 0 999999999 19 0 0 88 0.2 0 0 +2372400.0 12 8 76 98498 792 1410 303 560 823 97 67932 48706 11759 4693 270 3.1 0 0 1200 2000 0 999999999 21 0 0 88 0.2 0 0 +2376000.0 15.6 9 65 99714 915 1410 320 669 789 157 79743 52869 18740 7512 290 4.1 0 0 1000 2000 0 999999999 24 0 0 88 0.2 0 0 +2379600.0 17 8 55 98546 961 1410 325 712 793 170 84908 54707 20424 8224 300 5.1 0 0 2700 2000 0 999999999 21 0 0 88 0.2 0 0 +2383200.0 18 7 49 98555 927 1410 329 682 790 162 81296 54281 19417 7777 300 4.1 0 0 3500 2000 0 999999999 19 0 0 88 0.2 0 0 +2386800.0 18.8 5.9 43 99482 815 1410 331 582 851 90 71394 50490 11019 4435 290 6.2 0 0 4000 2000 0 999999999 17 0 0 88 0.2 0 0 +2390400.0 18 4 39 98555 633 1410 325 422 750 85 50429 42376 10161 3864 270 4.1 0 0 4000 2000 0 999999999 14 0 0 88 0.2 0 0 +2394000.0 18 4 39 98555 394 1410 325 221 522 75 25253 22044 8582 2910 280 6.7 0 0 4000 2000 0 999999999 14 0 0 88 0.2 0 0 +2397600.0 16.4 6.7 53 99352 113 1410 321 35 91 27 3834 0 3032 890 290 5.1 0 0 4000 2000 0 999999999 19 0 0 88 0.2 0 0 +2401200.0 14 5 55 98517 0 527 309 0 0 0 0 0 0 0 270 3.1 0 0 3500 2000 0 999999999 16 0 0 88 0.2 0 0 +2404800.0 13 5 58 98507 0 0 304 0 0 0 0 0 0 0 290 2.6 0 0 3500 2000 0 999999999 16 0 0 88 0.2 0 0 +2408400.0 13.2 7 66 99438 0 0 307 0 0 0 0 0 0 0 320 3.1 0 0 2000 2000 0 999999999 19 0 0 88 0.2 0 0 +2412000.0 11 3 58 98488 0 0 294 0 0 0 0 0 0 0 280 2.6 0 0 3500 2000 0 999999999 13 0 0 88 0.2 0 0 +2415600.0 10 4 66 98478 0 0 291 0 0 0 0 0 0 0 260 2.6 0 0 3000 2000 0 999999999 14 0 0 88 0.2 0 0 +2419200.0 10 7.1 82 99455 0 0 294 0 0 0 0 0 0 0 270 2.1 0 0 2000 2000 0 999999999 20 0 0 88 0.2 0 0 +2422800.0 8 4 76 98458 0 0 283 0 0 0 0 0 0 0 270 2.6 0 0 2500 2000 0 999999999 14 0 0 88 0.2 0 0 +2426400.0 8 4 76 98458 0 0 283 0 0 0 0 0 0 0 250 2.6 0 0 2200 2000 0 999999999 14 0 0 88 0.2 0 0 +2430000.0 8.4 6.2 86 99293 0 0 286 0 0 0 0 0 0 0 230 2.1 0 0 2000 2000 0 999999999 18 0 0 88 0.2 0 0 +2433600.0 7 4 81 98448 0 0 279 0 0 0 0 0 0 0 260 1.5 0 0 1600 2000 0 999999999 14 0 0 88 0.2 0 0 +2437200.0 6 3 81 98438 0 0 274 0 0 0 0 0 0 0 230 2.1 0 0 1500 2000 0 999999999 13 0 0 88 0.2 0 0 +2440800.0 6.2 5.3 94 99222 0 0 277 0 0 0 0 0 0 0 230 1.5 0 0 1000 2000 9 999999999 17 0 0 88 0.2 0 0 +2444400.0 6 4 87 98438 0 0 275 0 0 0 0 0 0 0 240 1.5 0 0 1000 2000 9 999999999 14 0 0 88 0.2 0 0 +2448000.0 5 3 87 98428 72 331 270 22 42 20 2419 0 2188 626 240 2.6 0 0 700 2000 9 999999999 13 0 0 88 0.2 0 0 +2451600.0 6.2 5.3 94 99397 357 1410 277 191 470 72 21716 17721 8221 2724 250 3.1 0 0 500 2000 9 999999999 17 0 0 88 0.2 0 0 +2455200.0 9 5 76 98468 604 1410 288 396 686 101 46358 40162 11900 4405 280 2.6 0 0 800 2000 9 999999999 16 0 0 88 0.2 0 0 +2458800.0 13 5 58 98507 796 1410 304 566 845 88 69265 50099 10804 4328 290 3.1 0 0 1300 2000 9 999999999 16 0 0 88 0.2 0 0 +2462400.0 14.8 9.8 72 99502 919 1410 317 672 789 156 80071 52494 18738 7524 270 3.1 0 0 1000 2000 9 999999999 26 0 0 88 0.2 0 0 +2466000.0 17 5 45 98546 965 1410 322 719 793 175 85777 56249 20968 8421 300 4.6 0 0 2500 2000 9 999999999 16 0 0 88 0.2 0 0 +2469600.0 18 5 42 98555 931 1410 326 688 790 165 82039 55319 19813 7926 300 4.1 0 0 3200 2000 9 999999999 16 0 0 88 0.2 0 0 +2473200.0 19.6 7 44 99275 820 1410 336 585 848 91 71675 50121 11224 4522 290 4.1 0 0 2000 2000 9 999999999 19 0 0 88 0.2 0 0 +2476800.0 19 2 32 98564 638 1410 327 428 755 85 51121 43359 10214 3888 300 5.1 0 0 4000 2000 9 999999999 12 0 0 88 0.2 0 0 +2480400.0 19 2 32 98564 398 1410 327 225 523 77 25710 22983 8827 2989 290 5.1 0 0 4000 2000 9 999999999 12 0 0 88 0.2 0 0 +2484000.0 17 8.9 59 99222 118 1410 340 35 82 28 3894 0 3145 925 270 3.6 3 3 4000 2000 9 999999999 23 0 0 88 0.2 0 0 +2487600.0 16 3 42 98536 0 546 329 0 0 0 0 0 0 0 290 2.1 3 3 4000 2000 9 999999999 13 0 0 88 0.2 0 0 +2491200.0 15 4 48 98527 0 0 325 0 0 0 0 0 0 0 280 2.1 3 3 3200 2000 9 999999999 14 0 0 88 0.2 0 0 +2494800.0 12.6 7.7 72 99315 0 0 319 0 0 0 0 0 0 0 270 2.1 3 3 2000 2000 9 999999999 21 0 0 88 0.2 0 0 +2498400.0 12 5 62 98498 0 0 313 0 0 0 0 0 0 0 240 2.1 3 3 3000 2000 9 999999999 16 0 0 88 0.2 0 0 +2502000.0 12 5 62 98498 0 0 313 0 0 0 0 0 0 0 260 1.5 3 3 3000 2000 9 999999999 16 0 0 88 0.2 0 0 +2505600.0 10.2 7.7 84 99321 0 0 308 0 0 0 0 0 0 0 250 1.5 3 3 2000 2000 9 999999999 21 0 0 88 0.2 0 0 +2509200.0 10 6 76 98478 0 0 306 0 0 0 0 0 0 0 179 0 3 3 2200 2000 9 999999999 18 0 0 88 0.2 0 0 +2512800.0 10 6 76 98478 0 0 306 0 0 0 0 0 0 0 140 0 3 3 2200 2000 9 999999999 18 0 0 88 0.2 0 0 +2516400.0 8.4 7.1 92 99157 0 0 300 0 0 0 0 0 0 0 250 1.5 3 3 1000 2000 9 999999999 20 0 0 88 0.2 0 0 +2520000.0 9 7 87 98468 0 0 302 0 0 0 0 0 0 0 260 1.5 3 3 1200 2000 9 999999999 19 0 0 88 0.2 0 0 +2523600.0 7 5 87 98448 0 0 292 0 0 0 0 0 0 0 220 2.1 3 3 1200 2000 9 999999999 16 0 0 88 0.2 0 0 +2527200.0 6.6 6.2 97 99129 0 0 291 0 0 0 0 0 0 0 230 2.1 3 3 1000 2000 9 999999999 18 0 0 88 0.2 0 0 +2530800.0 7 5 87 98448 0 0 296 0 0 0 0 0 0 0 200 2.1 5 5 800 2000 9 999999999 16 0 0 88 0.2 0 0 +2534400.0 7 5 87 98448 74 343 296 21 18 20 2324 0 2224 639 260 2.1 5 5 700 2000 9 999999999 16 0 0 88 0.2 0 0 +2538000.0 8 6.3 89 99289 360 1409 302 180 379 83 20201 15584 9337 3023 230 2.1 5 5 500 2000 9 999999999 18 0 0 88 0.2 0 0 +2541600.0 10 6 76 98478 608 1409 310 371 554 131 42533 35527 15114 5417 250 3.1 5 5 1000 2000 9 999999999 18 0 0 88 0.2 0 0 +2545200.0 13 5 58 98507 800 1409 323 530 556 214 60596 43503 24560 8950 240 2.6 5 5 1500 2000 9 999999999 16 0 0 88 0.2 0 0 +2548800.0 15.6 10.3 71 99383 923 1409 361 348 62 308 39397 5294 35040 12464 270 4.1 9 9 1000 3000 9 999999999 27 0 0 88 0.2 0 0 +2552400.0 18 6 45 98555 970 1409 367 373 79 318 42439 6959 36471 13141 250 4.6 9 9 2000 3048 9 999999999 17 0 0 88 0.2 0 0 +2556000.0 19 6 43 98564 936 1409 372 357 78 305 40570 6857 34850 12498 250 2.6 9 9 2000 3048 9 999999999 17 0 0 88 0.2 0 0 +2559600.0 20.2 9.3 49 99086 824 1409 383 303 70 262 34194 5774 29759 10458 270 3.1 9 9 2000 3000 9 999999999 24 0 0 88 0.2 0 0 +2563200.0 19 2 32 98564 643 1409 367 223 24 212 24813 1914 23738 7745 270 2.1 9 9 2000 3048 9 999999999 12 0 0 88 0.2 0 0 +2566800.0 19 2 32 98564 403 1409 367 118 10 115 13074 579 12796 3982 300 2.1 9 9 2000 3048 9 999999999 12 0 0 88 0.2 0 0 +2570400.0 17.6 9.2 58 99013 122 1409 349 34 34 31 3782 0 3467 1004 340 2.1 5 5 2000 3000 9 999999999 24 0 0 88 0.2 0 0 +2574000.0 17 5 45 98546 0 566 341 0 0 0 0 0 0 0 320 1.5 5 5 2000 3048 9 999999999 16 0 0 88 0.2 0 0 +2577600.0 15 6 55 98527 0 0 333 0 0 0 0 0 0 0 330 1.5 5 5 2100 3048 9 999999999 17 0 0 88 0.2 0 0 +2581200.0 14.2 9.6 74 99166 0 0 333 0 0 0 0 0 0 0 166 0 5 5 2000 3000 9 999999999 25 0 0 88 0.2 0 0 +2584800.0 15 5 51 98527 0 0 332 0 0 0 0 0 0 0 154 0 5 5 2100 3048 9 999999999 16 0 0 88 0.2 0 0 +2588400.0 14 6 59 98517 0 0 328 0 0 0 0 0 0 0 120 1.5 5 5 2100 3048 9 999999999 17 0 0 88 0.2 0 0 +2592000.0 12.2 8.2 77 99166 0 0 322 0 0 0 0 0 0 0 90 2.6 5 5 2000 3000 9 999999999 22 0 0 88 0.2 0 0 +2595600.0 12 6 67 98498 0 0 319 0 0 0 0 0 0 0 80 1.5 5 5 1600 3048 9 999999999 17 0 0 88 0.2 0 0 +2599200.0 11 7 76 98488 0 0 316 0 0 0 0 0 0 0 53 0 5 5 1500 3048 9 999999999 19 0 0 88 0.2 0 0 +2602800.0 11.6 9.6 88 99160 0 0 340 0 0 0 0 0 0 0 242 0 9 9 1000 3000 9 999999999 25 0 0 88 0.2 0 0 +2606400.0 12 8 76 98498 0 0 340 0 0 0 0 0 0 0 50 2.1 9 9 1300 3048 9 999999999 21 0 0 88 0.2 0 0 +2610000.0 11 7 76 98488 0 0 334 0 0 0 0 0 0 0 348 0 9 9 1200 3048 9 999999999 19 0 0 88 0.2 0 0 +2613600.0 10.8 9.6 92 99074 0 0 336 0 0 0 0 0 0 0 182 0 9 9 1000 3000 9 999999999 25 0 0 88 0.2 0 0 +2617200.0 11 7 76 98488 0 0 334 0 0 0 0 0 0 0 100 2.6 9 9 800 3048 9 999999999 19 0 0 88 0.2 0 0 +2620800.0 12 8 76 98498 77 354 340 12 0 12 1157 0 1165 433 100 2.6 9 9 700 914 9 999999999 21 0 0 88 0.2 0 0 +2624400.0 11.4 10.6 95 99158 363 1409 340 100 6 99 11068 274 10934 3411 110 2.6 9 9 1000 3000 9 999999999 28 0 0 88 0.2 0 0 +2628000.0 15 5 51 98527 611 1409 351 207 22 198 23049 1695 22107 7185 110 2.1 9 9 1600 3048 9 999999999 16 0 0 88 0.2 0 0 +2631600.0 16 5 48 98536 804 1409 356 296 52 266 33245 4472 30072 10362 110 2.6 9 9 2000 3048 9 999999999 16 0 0 88 0.2 0 0 +2635200.0 18 10.6 62 99202 927 1409 373 350 71 303 39669 6074 34539 12379 120 5.1 9 9 2000 3000 9 999999999 28 0 0 88 0.2 0 0 +2638800.0 17 5 45 98546 974 1409 361 375 85 317 42806 7486 36330 13138 120 4.1 9 9 2200 3048 9 999999999 16 0 0 88 0.2 0 0 +2642400.0 19 6 43 98564 941 1409 352 647 404 377 72359 39005 42441 14155 130 2.6 5 5 3000 3048 9 999999999 17 0 0 88 0.2 0 0 +2646000.0 19.6 11.2 58 98906 829 1409 382 304 90 251 34427 7166 28613 10220 140 5.1 9 9 2000 3000 9 999999999 29 0 0 88 0.2 0 0 +2649600.0 19 6 43 98564 647 1409 372 223 23 213 24849 1823 23803 7803 130 2.6 9 9 3500 3048 9 999999999 17 0 0 88 0.2 0 0 +2653200.0 19 7 46 98564 408 1409 374 119 14 115 13145 728 12763 4003 120 2.6 9 9 3500 3048 9 999999999 19 0 0 88 0.2 0 0 +2656800.0 17.6 11.4 67 98877 126 1409 372 20 0 20 1931 0 1944 723 110 4.1 9 9 2000 3000 9 999999999 30 0 0 88 0.2 0 0 +2660400.0 14.8 8.9 68 98643 0 585 340 0 0 0 0 0 0 0 95 3.2 5 5 3000 3048 9 999999999 23 0 0 88 0.2 0 0 +2664000.0 14.3 8.9 70 98638 0 0 336 0 0 0 0 0 0 0 97 3.3 5 5 3000 3048 9 999999999 23 0 0 88 0.2 0 0 +2667600.0 14.1 9.8 75 98779 0 0 334 0 0 0 0 0 0 0 95 3.2 5 5 2000 3000 9 999999999 25 0 0 88 0.2 0 0 +2671200.0 14.4 9.9 75 98663 0 0 350 0 0 0 0 0 0 0 152 3.1 9 9 3000 3048 9 999999999 26 0 0 88 0.2 0 0 +2674800.0 14.4 10.6 78 98663 0 0 330 0 0 0 0 0 0 0 205 2.6 5 5 3000 3048 9 999999999 28 0 0 88 0.2 0 0 +2678400.0 14.1 11.4 84 98660 0 0 357 0 0 0 0 0 0 0 252 2.2 9 9 2000 3000 0 919999999 30 0 0 88 0.2 0 0 +2682000.0 13.5 10.8 83 98512 0 0 345 0 0 0 0 0 0 0 307 1.9 7 7 1600 3048 0 999999999 28 0 0 88 0.2 0 0 +2685600.0 12.5 10.5 88 98503 0 0 315 0 0 0 0 0 0 0 310 1.5 0 0 1500 3048 0 999999999 27 0 0 88 0.2 0 0 +2689200.0 11.5 10 90 98493 0 0 311 0 0 0 0 0 0 0 254 1.1 0 0 1200 3048 0 999999999 26 0 0 88 0.2 0 0 +2692800.0 10.5 9.5 94 98483 0 0 319 0 0 0 0 0 0 0 213 0.6 3 3 700 2000 0 999999999 25 0 0 88 0.2 0 0 +2696400.0 10 9.5 97 98478 0 0 301 0 0 0 0 0 0 0 154 0.2 0 0 400 2000 0 999999999 25 0 0 88 0.2 0 0 +2700000.0 9.9 9.6 98 98485 0 0 296 0 0 0 0 0 0 0 128 0 0 0 50 2000 0 999999999 25 0 0 88 0.2 0 0 +2703600.0 9 9 100 98468 0 0 337 0 0 0 0 0 0 0 124 0 10 10 0 2000 0 999999999 24 0 0 88 0.2 0 0 +2707200.0 10 10 100 98478 80 366 343 8 0 8 728 0 733 290 76 0 10 10 0 2000 0 999999999 26 0 0 88 0.2 0 0 +2710800.0 10.4 10.4 100 98516 367 1408 299 197 467 75 22236 17192 8501 2829 226 0 0 0 49 30 0 999999999 27 0 0 88 0.2 0 0 +2714400.0 11 11 100 98488 615 1408 302 401 692 98 47011 38089 11525 4315 260 2.1 0 0 50 2000 0 999999999 29 0 0 88 0.2 0 0 +2718000.0 14 10 77 98517 808 1408 314 571 825 97 69408 48101 11867 4762 280 3.1 0 0 1300 2000 0 999999999 26 0 0 88 0.2 0 0 +2721600.0 19.4 8.7 50 99176 932 1408 337 684 790 161 81639 53443 19318 7762 320 2.6 0 0 2000 2000 0 999999999 23 0 0 88 0.2 0 0 +2725200.0 20 8 46 98574 979 1408 339 728 794 175 86909 55084 21009 8479 300 5.1 0 0 2300 2000 0 999999999 21 0 0 88 0.2 0 0 +2728800.0 21 6 38 98583 946 1408 341 700 791 168 83493 55207 20157 8088 310 5.1 0 0 2600 2000 0 999999999 17 0 0 88 0.2 0 0 +2732400.0 22 3.9 31 99005 834 1408 343 601 778 139 71560 52530 16670 6570 320 3.1 0 0 2000 2000 0 999999999 14 0 0 88 0.2 0 0 +2736000.0 21 5 35 98583 652 1408 340 438 757 87 52357 43073 10412 3985 320 5.1 0 0 4500 2000 0 999999999 16 0 0 88 0.2 0 0 +2739600.0 21 5 35 98583 412 1408 340 235 465 98 26352 23262 11091 3635 320 4.1 0 0 5000 2000 0 999999999 16 0 0 88 0.2 0 0 +2743200.0 19.4 5.6 40 98884 131 1408 333 41 110 31 4568 0 3444 1018 320 1.5 0 0 4000 2000 0 999999999 17 0 0 88 0.2 0 0 +2746800.0 18 5 42 98555 0 604 326 0 0 0 0 0 0 0 320 2.6 0 0 4500 2000 0 999999999 16 0 0 88 0.2 0 0 +2750400.0 16 6 51 98536 0 0 318 0 0 0 0 0 0 0 300 2.6 0 0 3000 2000 0 999999999 17 0 0 88 0.2 0 0 +2754000.0 14.4 8 65 99041 0 0 314 0 0 0 0 0 0 0 320 1.5 0 0 2000 2000 0 999999999 21 0 0 88 0.2 0 0 +2757600.0 15 7 59 98527 0 0 315 0 0 0 0 0 0 0 320 2.6 0 0 2200 2000 0 999999999 19 0 0 88 0.2 0 0 +2761200.0 15 7 59 98527 0 0 315 0 0 0 0 0 0 0 330 2.6 0 0 2200 2000 0 999999999 19 0 0 88 0.2 0 0 +2764800.0 12.6 7.7 72 99121 0 0 306 0 0 0 0 0 0 0 320 3.1 0 0 2000 2000 0 999999999 21 0 0 88 0.2 0 0 +2768400.0 13 8 72 98507 0 0 308 0 0 0 0 0 0 0 20 2.1 0 0 2200 2000 0 999999999 21 0 0 88 0.2 0 0 +2772000.0 12 8 76 98498 0 0 303 0 0 0 0 0 0 0 360 1.5 0 0 2000 2000 0 999999999 21 0 0 88 0.2 0 0 +2775600.0 9.8 7.3 84 98996 0 0 293 0 0 0 0 0 0 0 168 0 0 0 1000 2000 0 999999999 20 0 0 88 0.2 0 0 +2779200.0 9 7 87 98468 0 0 290 0 0 0 0 0 0 0 260 1.5 0 0 1000 2000 0 999999999 19 0 0 88 0.2 0 0 +2782800.0 8 6 87 98458 0 0 285 0 0 0 0 0 0 0 250 1.5 0 0 500 2000 0 999999999 18 0 0 88 0.2 0 0 +2786400.0 8.4 6.7 89 98953 0 0 287 0 0 0 0 0 0 0 163 0 0 0 200 2000 0 999999999 19 0 0 88 0.2 0 0 +2790000.0 7 6 93 98448 0 0 297 0 0 0 0 0 0 0 240 1 5 5 300 2000 0 999999999 18 0 0 88 0.2 0 0 +2793600.0 7 6 93 98448 83 379 297 23 21 22 2566 0 2438 700 250 1.5 5 5 300 3048 0 999999999 18 0 0 88 0.2 0 0 +2797200.0 10.2 5.9 75 99136 370 1408 311 187 375 88 20924 16411 9899 3194 270 1.5 5 5 1000 3048 0 999999999 17 0 0 88 0.2 0 0 +2800800.0 14 7 63 98517 619 1408 324 402 673 106 46974 39573 12402 4607 250 3.1 3 3 1400 3048 0 999999999 19 0 0 88 0.2 0 0 +2804400.0 17 5 45 98546 812 1408 341 540 701 135 64149 46545 16113 6324 270 3.1 5 5 2800 3048 0 999999999 16 0 0 88 0.2 0 0 +2808000.0 19.4 6.7 44 99283 936 1408 354 643 705 173 76376 49503 20700 8260 270 1.5 5 5 2000 3048 0 999999999 19 0 0 88 0.2 0 0 +2811600.0 20 3 32 98574 984 1408 347 729 842 139 88762 56544 17045 6999 320 4.6 3 3 4500 3048 0 999999999 13 0 0 88 0.2 0 0 +2815200.0 20 2 30 98574 950 1408 346 700 791 165 83778 56111 19845 7978 300 4.6 3 3 5000 3048 0 999999999 12 0 0 88 0.2 0 0 +2818800.0 21.2 3.2 31 98959 839 1408 353 599 845 94 73477 51759 11584 4682 320 2.6 3 3 4000 3048 0 999999999 13 0 0 88 0.2 0 0 +2822400.0 20 2 30 98574 657 1408 346 439 741 92 52308 43835 11020 4205 300 5.1 3 3 4500 3048 0 999999999 12 0 0 88 0.2 0 0 +2826000.0 20 2 30 98574 417 1408 346 236 512 85 26950 24346 9674 3273 290 4.1 3 3 4500 3048 0 999999999 12 0 0 88 0.2 0 0 +2829600.0 19.2 4.2 37 98980 135 1408 345 43 115 32 4767 0 3551 1050 290 2.1 3 3 4000 3048 0 999999999 14 0 0 88 0.2 0 0 +2833200.0 17 4 42 98546 0 624 335 0 0 0 0 0 0 0 310 3.1 3 3 3500 3048 0 999999999 14 0 0 88 0.2 0 0 +2836800.0 17 5 45 98546 0 0 336 0 0 0 0 0 0 0 320 2.6 3 3 3200 3048 0 999999999 16 0 0 88 0.2 0 0 +2840400.0 14.4 8.5 68 99119 0 0 328 0 0 0 0 0 0 0 320 1 3 3 2000 3048 0 999999999 22 0 0 88 0.2 0 0 +2844000.0 16 5 48 98536 0 0 317 0 0 0 0 0 0 0 310 2.1 0 0 2600 2000 0 999999999 16 0 0 88 0.2 0 0 +2847600.0 14 5 55 98517 0 0 309 0 0 0 0 0 0 0 300 1.5 0 0 2200 2000 0 999999999 16 0 0 88 0.2 0 0 +2851200.0 11.4 7.3 76 99158 0 0 300 0 0 0 0 0 0 0 131 0 0 0 1000 2000 0 999999999 20 0 0 88 0.2 0 0 +2854800.0 12 6 67 98498 0 0 319 0 0 0 0 0 0 0 338 0 5 5 1200 2000 0 999999999 17 0 0 88 0.2 0 0 +2858400.0 11 6 71 98488 0 0 317 0 0 0 0 0 0 0 270 1.5 6 6 1400 2000 0 999999999 17 0 0 88 0.2 0 0 +2862000.0 10.4 6.6 77 99099 0 0 295 0 0 0 0 0 0 0 34 0 0 0 1000 2000 0 999999999 19 0 0 88 0.2 0 0 +2865600.0 9 5 76 98468 0 0 288 0 0 0 0 0 0 0 260 2.1 0 0 1800 2000 0 999999999 16 0 0 88 0.2 0 0 +2869200.0 8 5 81 98458 0 0 284 0 0 0 0 0 0 0 240 2.1 0 0 1800 2000 0 999999999 16 0 0 88 0.2 0 0 +2872800.0 8.4 6.2 86 99002 0 0 286 0 0 0 0 0 0 0 230 1 0 0 500 2000 0 999999999 18 0 0 88 0.2 0 0 +2876400.0 7 6 93 98448 0 0 281 0 0 0 0 0 0 0 240 2.1 0 0 300 2000 0 999999999 18 0 0 88 0.2 0 0 +2880000.0 7 5 87 98448 86 392 280 26 55 23 2852 0 2490 717 230 1.5 0 0 300 2000 0 999999999 16 0 0 88 0.2 0 0 +2883600.0 8.6 5 78 99110 373 1408 286 203 486 74 23127 19437 8475 2834 270 2.1 0 0 500 2000 0 999999999 16 0 0 88 0.2 0 0 +2887200.0 13 6 62 98507 623 1408 305 411 694 103 48163 40883 12151 4532 260 3.1 0 0 2800 2000 0 999999999 17 0 0 88 0.2 0 0 +2890800.0 16 5 48 98536 816 1408 317 583 828 103 70848 51051 12539 5021 290 5.1 0 0 3100 2000 0 999999999 16 0 0 88 0.2 0 0 +2894400.0 18.4 7.9 50 99303 941 1408 331 693 790 164 82718 54066 19703 7920 290 3.1 0 0 2000 2000 0 999999999 21 0 0 88 0.2 0 0 +2898000.0 20 4 35 98574 988 1408 334 741 795 182 88483 57167 21881 8804 300 6.2 0 0 3500 2000 0 999999999 14 0 0 88 0.2 0 0 +2901600.0 21 4 33 98583 955 1408 339 711 792 173 84808 56312 20737 8315 290 4.1 0 0 3500 2000 0 999999999 14 0 0 88 0.2 0 0 +2905200.0 20.8 5 36 98946 844 1408 339 609 779 141 72487 52363 16835 6655 290 4.1 0 0 2000 2000 0 999999999 16 0 0 88 0.2 0 0 +2908800.0 21 3 30 98583 662 1408 338 447 764 88 53598 44376 10550 4047 300 4.1 0 0 3500 2000 0 999999999 13 0 0 88 0.2 0 0 +2912400.0 21 3 30 98583 421 1408 338 242 469 102 27255 24572 11473 3762 310 4.1 0 0 3500 2000 0 999999999 13 0 0 88 0.2 0 0 +2916000.0 19.2 4.2 37 98960 139 1408 331 46 131 33 5063 0 3634 1078 320 4.1 0 0 2000 2000 0 999999999 14 0 0 88 0.2 0 0 +2919600.0 18 5 42 98555 0 643 326 0 0 0 0 0 0 0 290 4.1 0 0 3500 2000 0 999999999 16 0 0 88 0.2 0 0 +2923200.0 16 6 51 98536 0 0 318 0 0 0 0 0 0 0 270 3.6 0 0 3500 2000 0 999999999 17 0 0 88 0.2 0 0 +2926800.0 15 6 55 98527 0 0 328 0 0 0 0 0 0 0 93 3.4 3 3 3050 2000 9 999999999 17 0 0 88 0.2 0 0 +2930400.0 14 6 59 98517 0 0 326 0 0 0 0 0 0 0 42 3.1 4 4 2600 2000 9 999999999 17 0 0 88 0.2 0 0 +2934000.0 13 6 62 98507 0 0 321 0 0 0 0 0 0 0 234 2.8 4 4 2150 2000 9 999999999 17 0 0 88 0.2 0 0 +2937600.0 12 6 67 98497 0 0 319 0 0 0 0 0 0 0 168 2.6 5 5 1700 2000 9 999999999 17 0 0 88 0.2 0 0 +2941200.0 11 6 71 98488 0 0 317 0 0 0 0 0 0 0 163 2.4 6 6 1250 2000 9 999999999 17 0 0 88 0.2 0 0 +2944800.0 10 6 76 98478 0 0 293 0 0 0 0 0 0 0 240 2.1 0 0 800 2000 0 999999999 18 0 0 88 0.2 0 0 +2948400.0 11.2 5.6 68 98922 0 0 297 0 0 0 0 0 0 0 160 0 0 0 500 2000 0 999999999 17 0 0 88 0.2 0 0 +2952000.0 9 6 81 98468 0 0 289 0 0 0 0 0 0 0 270 2.6 0 0 800 2000 0 999999999 18 0 0 88 0.2 0 0 +2955600.0 8 6 87 98458 0 0 285 0 0 0 0 0 0 0 250 2.1 0 0 800 2000 0 999999999 18 0 0 88 0.2 0 0 +2959200.0 8.2 5.1 81 98883 0 0 285 0 0 0 0 0 0 0 191 0 0 0 500 2000 9 999999999 16 0 0 88 0.2 0 0 +2962800.0 8 6 87 98458 0 0 285 0 0 0 0 0 0 0 139 0 0 0 800 2000 0 999999999 18 0 0 88 0.2 0 0 +2966400.0 7 6 93 98448 89 406 324 11 0 11 1091 0 1098 420 230 2.1 10 10 800 2000 0 999999999 18 0 0 88 0.2 0 0 +2970000.0 9.2 4.5 72 99116 377 1407 288 206 492 74 23490 19949 8503 2850 290 0 0 0 1000 2000 0 999999999 15 0 0 88 0.2 0 0 +2973600.0 13 5 58 98507 626 1407 304 415 693 106 48615 41531 12459 4642 270 3.6 0 0 2200 2000 0 999999999 16 0 0 88 0.2 0 0 +2977200.0 15 4 48 98527 820 1407 312 588 776 135 70046 51870 16156 6358 260 3.1 0 0 3000 2000 0 999999999 14 0 0 88 0.2 0 0 +2980800.0 19.8 7.3 44 99238 945 1407 337 698 790 166 83313 54494 19950 8019 270 2.6 0 0 2000 2000 0 999999999 20 0 0 88 0.2 0 0 +2984400.0 20 5 37 98574 993 1407 335 744 795 183 88896 56833 21911 8830 300 4.6 0 0 3000 2000 0 999999999 16 0 0 88 0.2 0 0 +2988000.0 22 3 29 98592 960 1407 342 717 792 176 85485 56846 21049 8437 300 4.1 0 0 3000 2000 0 999999999 13 0 0 88 0.2 0 0 +2991600.0 23.6 4.2 28 98981 849 1407 351 614 783 141 73192 52885 16897 6688 320 4.1 0 0 2000 2000 0 999999999 14 0 0 88 0.2 0 0 +2995200.0 23 3 27 98601 667 1407 368 420 575 148 48402 39647 17095 6210 320 5.1 5 5 4000 2000 0 999999999 13 0 0 88 0.2 0 0 +2998800.0 23 2 25 98601 426 1407 366 230 436 97 25936 22557 11036 3667 330 4.6 5 5 4000 2000 0 999999999 11 0 0 88 0.2 0 0 +3002400.0 20.8 4.4 34 98946 144 1407 358 45 62 38 4895 0 4217 1213 246 0 5 5 4000 2000 0 999999999 15 0 0 88 0.2 0 0 +3006000.0 19 4 37 98564 0 662 349 0 0 0 0 0 0 0 280 1.5 5 5 3500 2000 0 999999999 14 0 0 88 0.2 0 0 +3009600.0 18 5 42 98555 0 0 346 0 0 0 0 0 0 0 270 1.5 5 5 2800 2000 0 999999999 16 0 0 88 0.2 0 0 +3013200.0 16 5 48 98536 0 0 331 0 0 0 0 0 0 0 40 0 3 3 2500 2000 0 999999999 16 0 0 88 0.2 0 0 +3016800.0 15 6 55 98527 0 0 333 0 0 0 0 0 0 0 50 0 5 5 2100 2000 0 999999999 17 0 0 88 0.2 0 0 +3020400.0 12 6 67 98498 0 0 319 0 0 0 0 0 0 0 84 0 5 5 1600 2000 0 999999999 17 0 0 88 0.2 0 0 +3024000.0 12.4 7.5 72 98954 0 0 304 0 0 0 0 0 0 0 357 0 0 0 1000 2000 0 999999999 20 0 0 88 0.2 0 0 +3027600.0 10 6 76 98478 0 0 293 0 0 0 0 0 0 0 153 0 0 0 700 2000 0 999999999 18 0 0 88 0.2 0 0 +3031200.0 9 7 87 98468 0 0 290 0 0 0 0 0 0 0 12 0 0 0 600 2000 0 999999999 19 0 0 88 0.2 0 0 +3034800.0 8 6 87 98458 0 0 285 0 0 0 0 0 0 0 54 0 0 0 600 2000 0 999999999 18 0 0 88 0.2 0 0 +3038400.0 8 6 87 98458 0 0 285 0 0 0 0 0 0 0 268 0 0 0 600 2000 0 999999999 18 0 0 88 0.2 0 0 +3042000.0 7 5 87 98448 0 0 280 0 0 0 0 0 0 0 230 1.5 0 0 500 2000 0 999999999 16 0 0 88 0.2 0 0 +3045600.0 8.4 6.2 86 98924 0 0 286 0 0 0 0 0 0 0 86 0 0 0 500 2000 0 999999999 18 0 0 88 0.2 0 0 +3049200.0 6 5 93 98438 0 0 276 0 0 0 0 0 0 0 309 0 0 0 500 2000 0 999999999 16 0 0 88 0.2 0 0 +3052800.0 6 5 93 98438 92 421 276 28 43 25 3042 0 2740 783 47 0 0 0 500 2000 0 999999999 16 0 0 88 0.2 0 0 +3056400.0 8.8 7.1 89 99083 381 1407 289 208 479 78 23579 19585 8887 2967 236 0 0 0 500 2000 0 999999999 20 0 0 88 0.2 0 0 +3060000.0 14 7 63 98517 631 1407 329 396 602 126 45802 37887 14640 5353 260 2.6 5 5 1000 2000 0 999999999 19 0 0 88 0.2 0 0 +3063600.0 18 7 49 98555 825 1407 329 589 832 101 71704 50333 12303 4948 280 2.6 0 0 2100 2000 0 999999999 19 0 0 88 0.2 0 0 +3067200.0 20.2 8.3 46 99145 950 1407 340 701 791 166 83682 54061 19945 8032 320 1.5 0 0 2000 2000 0 999999999 22 0 0 88 0.2 0 0 +3070800.0 21.6 6.2 37 98873 998 1407 344 747 795 182 89267 56357 21888 8837 51 2.3 0 0 2250 2000 9 999999999 18 0 0 88 0.2 0 0 +3074400.0 23 4 29 98601 965 1407 348 720 792 176 85899 56525 21063 8457 310 3.1 0 0 2500 2000 0 999999999 14 0 0 88 0.2 0 0 +3078000.0 23 4 29 98601 854 1407 348 618 780 144 73655 53095 17261 6829 310 3.6 0 0 2500 2000 0 999999999 14 0 0 88 0.2 0 0 +3081600.0 23 3 27 98601 671 1407 347 456 767 89 54633 44898 10699 4116 320 4.1 0 0 2600 2000 0 999999999 13 0 0 88 0.2 0 0 +3085200.0 23 3 27 98601 431 1407 347 250 477 104 28088 25426 11693 3852 320 3.6 0 0 3000 2000 0 999999999 13 0 0 88 0.2 0 0 +3088800.0 21.4 5.3 35 98669 148 1407 342 50 148 34 5547 0 3822 1140 320 2.1 0 0 2000 2000 0 999999999 16 0 0 88 0.2 0 0 +3092400.0 20 5 37 98574 0 680 335 0 0 0 0 0 0 0 310 2.6 0 0 3000 2000 0 999999999 16 0 0 88 0.2 0 0 +3096000.0 18 6 45 98555 0 0 327 0 0 0 0 0 0 0 280 1.5 0 0 1800 2000 0 999999999 17 0 0 88 0.2 0 0 +3099600.0 15 6 55 98527 0 0 314 0 0 0 0 0 0 0 68 0 0 0 1200 2000 0 999999999 17 0 0 88 0.2 0 0 +3103200.0 14 6 59 98517 0 0 310 0 0 0 0 0 0 0 243 0 0 0 1200 2000 0 999999999 17 0 0 88 0.2 0 0 +3106800.0 13 6 62 98507 0 0 305 0 0 0 0 0 0 0 295 0 0 0 1000 2000 0 999999999 17 0 0 88 0.2 0 0 +3110400.0 12 7.9 76 98726 0 0 303 0 0 0 0 0 0 0 242 0 0 0 500 2000 0 999999999 21 0 0 88 0.2 0 0 +3114000.0 12 7 71 98498 0 0 302 0 0 0 0 0 0 0 336 0 0 0 700 2000 0 999999999 19 0 0 88 0.2 0 0 +3117600.0 11 6 71 98488 0 0 297 0 0 0 0 0 0 0 139 0 0 0 600 2000 0 999999999 17 0 0 88 0.2 0 0 +3121200.0 10 7 82 98478 0 0 294 0 0 0 0 0 0 0 321 0 0 0 600 2000 0 999999999 19 0 0 88 0.2 0 0 +3124800.0 10 7 82 98478 0 0 294 0 0 0 0 0 0 0 54 0 0 0 600 2000 0 999999999 19 0 0 88 0.2 0 0 +3128400.0 9 7 87 98468 0 0 325 0 0 0 0 0 0 0 277 0 9 9 500 2000 0 999999999 19 0 0 88 0.2 0 0 +3132000.0 8 5.3 83 98541 0 0 284 0 0 0 0 0 0 0 132 0 0 0 200 2000 0 999999999 16 0 0 88 0.2 0 0 +3135600.0 8 6 87 98458 0 0 285 0 0 0 0 0 0 0 197 0 0 0 350 2000 0 999999999 18 0 0 88 0.2 0 0 +3139200.0 8 6 87 98458 95 435 285 29 44 26 3149 0 2826 809 46 0 0 0 300 2000 0 999999999 18 0 0 88 0.2 0 0 +3142800.0 10.6 9.4 92 98732 384 1406 299 210 486 77 23848 19267 8770 2948 217 0 0 0 200 2000 0 999999999 25 0 0 88 0.2 0 0 +3146400.0 16 9 63 98536 635 1406 322 419 700 102 49216 40272 12075 4539 120 2.1 0 0 800 2000 0 999999999 23 0 0 88 0.2 0 0 +3150000.0 20 8 46 98574 829 1406 339 592 832 101 72100 49971 12321 4963 140 4.6 0 0 1900 2000 0 999999999 21 0 0 88 0.2 0 0 +3153600.0 22.6 8.3 40 98787 955 1406 351 706 791 168 84218 54183 20121 8107 140 2.6 0 0 2000 2000 0 999999999 22 0 0 88 0.2 0 0 +3157200.0 22 6 35 98592 1003 1406 346 752 795 184 89849 56556 22094 8922 150 4.1 0 0 2500 2000 0 999999999 17 0 0 88 0.2 0 0 +3160800.0 23 7 36 98601 970 1406 352 721 792 174 86073 55258 20824 8392 130 4.1 0 0 2500 2000 0 999999999 19 0 0 88 0.2 0 0 +3164400.0 24 7 34 98610 859 1406 356 620 780 143 73872 51906 17074 6781 120 4.1 0 0 2500 2000 0 999999999 19 0 0 88 0.2 0 0 +3168000.0 24 6 31 98610 676 1406 355 458 765 89 54862 43955 10709 4132 120 5.1 0 0 2500 2000 0 999999999 17 0 0 88 0.2 0 0 +3171600.0 23 6 33 98601 435 1406 350 252 484 102 28404 25164 11528 3830 150 4.1 0 0 2500 2000 0 999999999 17 0 0 88 0.2 0 0 +3175200.0 20.2 10.2 53 98415 152 1406 342 52 154 35 5752 0 3914 1172 140 2.1 0 0 2000 2000 0 999999999 26 0 0 88 0.2 0 0 +3178800.0 20 9 49 98574 0 699 340 0 0 0 0 0 0 0 110 2.6 0 0 2100 2000 0 999999999 23 0 0 88 0.2 0 0 +3182400.0 18 10 59 98555 0 0 332 0 0 0 0 0 0 0 110 2.1 0 0 2100 2000 0 999999999 26 0 0 88 0.2 0 0 +3186000.0 16.4 12.2 76 98525 0 0 344 0 0 0 0 0 0 0 203 0 4 4 2000 2000 0 999999999 32 0 0 88 0.2 0 0 +3189600.0 16.4 11.9 75 98558 0 0 353 0 0 0 0 0 0 0 70 0.3 7 7 2000 2000 9 999999999 31 0 0 88 0.2 0 0 +3193200.0 16.4 11.5 73 98590 0 0 349 0 0 0 0 0 0 0 299 0.7 6 6 2000 2000 9 999999999 30 0 0 88 0.2 0 0 +3196800.0 16.4 11.2 71 98623 0 0 343 0 0 0 0 0 0 0 90 1 4 4 2000 2000 0 999999999 29 0 0 88 0.2 0 0 +3200400.0 15.7 10.6 72 98575 0 0 344 0 0 0 0 0 0 0 135 1.5 6 6 1750 2000 9 999999999 27 0 0 88 0.2 0 0 +3204000.0 15 10 72 98527 0 0 337 0 0 0 0 0 0 0 80 2.1 5 5 1500 2000 0 999999999 26 0 0 88 0.2 0 0 +3207600.0 14.4 11 80 98565 0 0 333 0 0 0 0 0 0 0 70 1.5 4 4 2000 2000 0 999999999 29 0 0 88 0.2 0 0 +3211200.0 15 11 77 98527 0 0 345 0 0 0 0 0 0 0 80 2.6 7 7 1200 2000 0 999999999 29 0 0 88 0.2 0 0 +3214800.0 15 11 77 98527 0 0 338 0 0 0 0 0 0 0 100 3.1 5 5 1200 2000 0 999999999 29 0 0 88 0.2 0 0 +3218400.0 14.4 8.7 69 98545 0 0 333 0 0 0 0 0 0 0 270 0 5 5 1000 2000 9 999999999 23 0 0 88 0.2 0 0 +3222000.0 15 11 77 98527 0 0 338 0 0 0 0 0 0 0 40 2.6 5 5 1200 2000 9 999999999 29 0 0 88 0.2 0 0 +3225600.0 15 11 77 98527 99 451 358 15 0 15 1469 0 1479 551 30 2.6 9 9 1000 3048 9 999999999 29 0 0 88 0.2 0 0 +3229200.0 15 10.9 76 98911 388 1406 358 110 13 106 12141 620 11793 3712 115 0 9 9 1000 3000 9 999999999 28 0 0 88 0.2 0 0 +3232800.0 16 12 77 98536 639 1406 375 132 0 132 13346 0 13459 5592 20 3.1 10 10 1200 2438 9 999999999 32 0 0 88 0.2 0 0 +3236400.0 17 13 77 98546 834 1406 381 186 5 183 21597 330 21368 8186 50 3.6 10 10 1200 2438 9 999999999 35 0 0 88 0.2 0 0 +3240000.0 19.6 11.7 60 98954 960 1406 361 657 574 264 75580 45069 30599 11553 20 2.1 5 5 1000 2438 9 999999999 31 0 0 88 0.2 0 0 +3243600.0 19 11 60 98564 1008 1406 358 698 723 179 83456 48994 21499 8737 30 4.1 5 5 1500 2438 9 999999999 28 0 0 88 0.2 0 0 +3247200.0 20 12 60 98574 975 1406 364 669 715 172 79824 47691 20655 8362 40 4.1 5 5 1800 3048 9 999999999 31 0 0 88 0.2 0 0 +3250800.0 21 12 56 98583 864 1406 369 576 686 154 68122 44709 18309 7248 70 3.6 5 5 1800 3048 9 999999999 31 0 0 88 0.2 0 0 +3254400.0 21 11 53 98583 681 1406 362 452 742 92 53963 41072 11041 4268 20 4.1 3 3 1800 3048 9 999999999 28 0 0 88 0.2 0 0 +3258000.0 20 10 53 98574 440 1406 341 254 472 106 28502 24182 11965 3964 20 3.6 0 0 1700 3048 9 999999999 26 0 0 88 0.2 0 0 +3261600.0 19.6 12.1 62 98769 156 1406 342 54 132 39 5947 0 4338 1277 20 2.6 0 0 2000 3048 9 999999999 32 0 0 88 0.2 0 0 +3265200.0 18 11 64 98555 0 718 333 0 0 0 0 0 0 0 10 2.1 0 0 2200 2000 9 999999999 28 0 0 88 0.2 0 0 +3268800.0 18 11 64 98555 0 0 333 0 0 0 0 0 0 0 30 2.1 0 0 2500 2000 9 999999999 28 0 0 88 0.2 0 0 +3272400.0 15.4 12.1 81 98934 0 0 322 0 0 0 0 0 0 0 13 0 0 0 2000 2000 9 999999999 32 0 0 88 0.2 0 0 +3276000.0 16 11 72 98536 0 0 324 0 0 0 0 0 0 0 350 2.1 0 0 2200 2000 9 999999999 29 0 0 88 0.2 0 0 +3279600.0 14.7 11.1 79 98769 0 0 344 0 0 0 0 0 0 0 180 1 7 7 2100 2000 9 999999999 29 0 0 88 0.2 0 0 +3283200.0 13.4 11.1 86 99002 0 0 312 0 0 0 0 0 0 0 101 0 0 0 2000 2000 9 999999999 29 0 0 88 0.2 0 0 +3286800.0 12.7 10.5 86 98963 0 0 339 0 0 0 0 0 0 0 202 0 8 8 1500 2000 9 999999999 27 0 0 88 0.2 0 0 +3290400.0 12.1 10 87 98924 0 0 343 0 0 0 0 0 0 0 16 0 9 9 1000 2000 9 999999999 26 0 0 88 0.2 0 0 +3294000.0 11.4 9.4 87 98886 0 0 302 0 0 0 0 0 0 0 230 0 0 0 500 2000 9 999999999 25 0 0 88 0.2 0 0 +3297600.0 10 10 100 98478 0 0 297 0 0 0 0 0 0 0 260 2.1 0 0 0 2000 0 999999999 26 0 0 88 0.2 0 0 +3301200.0 9 9 100 98468 0 0 292 0 0 0 0 0 0 0 260 1.5 0 0 0 2000 0 999999999 24 0 0 88 0.2 0 0 +3304800.0 9.4 8.6 95 98914 0 0 293 0 0 0 0 0 0 0 66 0 0 0 49 2000 0 999999999 23 0 0 88 0.2 0 0 +3308400.0 9 9 100 98468 0 0 337 0 0 0 0 0 0 0 240 2.6 10 10 0 2000 0 999999999 24 0 0 88 0.2 0 0 +3312000.0 9 9 100 98468 102 467 337 10 0 10 928 0 935 371 240 2.1 10 10 0 2000 0 999999999 24 0 0 88 0.2 0 0 +3315600.0 9.6 9.2 97 99188 392 1405 340 68 0 68 6732 0 6785 2698 270 2.1 10 10 50 30 0 999999999 24 0 0 88 0.2 0 0 +3319200.0 11 10 94 98488 643 1405 347 165 12 159 18713 804 18177 6442 280 2.1 10 10 500 30 0 999999999 26 0 0 88 0.2 0 0 +3322800.0 16 8 59 98536 838 1405 337 583 638 202 67363 47540 23429 8829 300 2.6 4 4 1200 30 0 999999999 21 0 0 88 0.2 0 0 +3326400.0 20.2 8.3 46 99213 964 1405 340 714 870 116 87768 53921 14316 5922 320 1.5 0 0 2000 30 0 999999999 22 0 0 88 0.2 0 0 +3330000.0 22 7 38 98592 1013 1405 347 760 796 185 90812 56242 22272 9013 310 4.1 0 0 2800 2000 0 999999999 19 0 0 88 0.2 0 0 +3333600.0 22 7 38 98592 980 1405 347 730 793 176 87172 55452 21142 8532 330 4.1 0 0 3500 2000 0 999999999 19 0 0 88 0.2 0 0 +3337200.0 23.2 10.1 43 98948 868 1405 356 625 855 96 76791 49902 11844 4833 320 2.6 0 0 2000 2000 0 999999999 26 0 0 88 0.2 0 0 +3340800.0 22 9 43 98592 686 1405 349 463 768 88 55624 42965 10612 4117 320 4.1 0 0 3500 2000 0 999999999 23 0 0 88 0.2 0 0 +3344400.0 22 9 43 98592 444 1405 349 258 480 106 28991 24945 11944 3975 320 4.1 0 0 3500 2000 0 999999999 23 0 0 88 0.2 0 0 +3348000.0 20.4 11.8 58 98884 161 1405 345 56 139 40 6188 0 4457 1313 320 2.1 0 0 2000 2000 0 999999999 31 0 0 88 0.2 0 0 +3351600.0 20 11 56 98574 0 736 342 0 0 0 0 0 0 0 320 3.6 0 0 3000 2000 0 999999999 28 0 0 88 0.2 0 0 +3355200.0 19 12 64 98564 0 0 339 0 0 0 0 0 0 0 320 2.6 0 0 2200 2000 0 999999999 31 0 0 88 0.2 0 0 +3358800.0 16.8 10.6 67 98996 0 0 327 0 0 0 0 0 0 0 111 0 0 0 1000 2000 0 999999999 28 0 0 88 0.2 0 0 +3362400.0 16 11 72 98536 0 0 324 0 0 0 0 0 0 0 290 1.5 0 0 1800 2000 0 999999999 29 0 0 88 0.2 0 0 +3366000.0 14 11 82 98517 0 0 315 0 0 0 0 0 0 0 270 1.5 0 0 1400 2000 0 999999999 29 0 0 88 0.2 0 0 +3369600.0 14.4 10.6 78 98963 0 0 316 0 0 0 0 0 0 0 285 0 0 0 1000 2000 0 999999999 28 0 0 88 0.2 0 0 +3373200.0 13 11 88 98507 0 0 311 0 0 0 0 0 0 0 41 0 0 0 1000 2000 0 999999999 29 0 0 88 0.2 0 0 +3376800.0 12 11 94 98498 0 0 306 0 0 0 0 0 0 0 202 0 0 0 800 2000 0 999999999 29 0 0 88 0.2 0 0 +3380400.0 13 10.7 86 98794 0 0 310 0 0 0 0 0 0 0 49 0 0 0 500 2000 0 999999999 28 0 0 88 0.2 0 0 +3384000.0 11 11 100 98488 0 0 302 0 0 0 0 0 0 0 250 2.1 0 0 400 2000 0 999999999 29 0 0 88 0.2 0 0 +3387600.0 11 11 100 98488 0 0 302 0 0 0 0 0 0 0 240 1.5 0 0 50 2000 0 999999999 29 0 0 88 0.2 0 0 +3391200.0 10.2 10.2 100 98689 0 0 298 0 0 0 0 0 0 0 50 0 0 0 49 30 0 999999999 27 0 0 88 0.2 0 0 +3394800.0 8 8 100 98458 0 0 331 0 0 0 0 0 0 0 270 1.5 10 10 50 2000 0 999999999 21 0 0 88 0.2 0 0 +3398400.0 8 8 100 98458 106 483 331 10 0 10 964 0 971 386 260 1.5 10 10 0 2000 0 999999999 21 0 0 88 0.2 0 0 +3402000.0 10.6 10.2 97 98985 396 1405 346 69 0 69 6820 0 6873 2737 270 1.5 10 10 200 2000 0 999999999 27 0 0 88 0.2 0 0 +3405600.0 11 11 100 98488 648 1405 302 428 573 164 48561 38922 18659 6597 260 2.6 0 0 250 2000 0 999999999 29 0 0 88 0.2 0 0 +3409200.0 14 11 82 98517 843 1405 315 601 832 101 73240 48618 12362 5006 280 3.1 0 0 700 2000 0 999999999 29 0 0 88 0.2 0 0 +3412800.0 18.2 10.4 60 99029 969 1405 333 716 791 169 85512 53279 20274 8205 290 1.5 0 0 1000 2000 0 999999999 27 0 0 88 0.2 0 0 +3416400.0 21 10 49 98583 1018 1405 346 760 796 183 90937 54696 21991 8934 300 3.6 0 0 2100 2000 0 999999999 26 0 0 88 0.2 0 0 +3420000.0 22 9 43 98592 985 1405 349 732 793 175 87461 54504 21030 8510 300 3.6 0 0 2300 2000 0 999999999 23 0 0 88 0.2 0 0 +3423600.0 23.6 11.1 45 98718 873 1405 359 629 854 97 77191 49425 11928 4875 290 2.6 0 0 2000 2000 0 999999999 29 0 0 88 0.2 0 0 +3427200.0 23 10 44 98601 691 1405 355 467 771 87 56099 42660 10534 4097 300 4.1 0 0 2800 2000 0 999999999 26 0 0 88 0.2 0 0 +3430800.0 23 10 44 98601 449 1405 355 261 478 108 29328 24967 12186 4055 280 4.1 0 0 3000 2000 0 999999999 26 0 0 88 0.2 0 0 +3434400.0 21.6 10.3 49 98583 165 1405 349 59 147 41 6470 0 4582 1351 270 2.1 0 0 2000 2000 0 999999999 26 0 0 88 0.2 0 0 +3438000.0 19 11 60 98564 0 754 338 0 0 0 0 0 0 0 270 2.1 0 0 2500 2000 0 999999999 28 0 0 88 0.2 0 0 +3441600.0 18 11 64 98555 0 0 333 0 0 0 0 0 0 0 280 1.5 0 0 1800 2000 0 999999999 28 0 0 88 0.2 0 0 +3445200.0 16.2 11.4 73 98718 0 0 325 0 0 0 0 0 0 0 117 0 0 0 1000 2000 0 999999999 30 0 0 88 0.2 0 0 +3448800.0 16 11 72 98536 0 0 324 0 0 0 0 0 0 0 157 0 0 0 800 2000 0 999999999 29 0 0 88 0.2 0 0 +3452400.0 15 11 77 98527 0 0 319 0 0 0 0 0 0 0 231 0 0 0 600 2000 0 999999999 29 0 0 88 0.2 0 0 +3456000.0 13.2 10 81 98738 0 0 310 0 0 0 0 0 0 0 303 0 0 0 500 2000 0 999999999 26 0 0 88 0.2 0 0 +3459600.0 13 10 82 98507 0 0 310 0 0 0 0 0 0 0 148 0 0 0 500 2000 0 999999999 26 0 0 88 0.2 0 0 +3463200.0 13 10 82 98507 0 0 310 0 0 0 0 0 0 0 166 0 0 0 500 2000 0 999999999 26 0 0 88 0.2 0 0 +3466800.0 11.6 10.8 95 98547 0 0 304 0 0 0 0 0 0 0 29 0 0 0 200 2000 0 999999999 28 0 0 88 0.2 0 0 +3470400.0 11 10 94 98488 0 0 301 0 0 0 0 0 0 0 106 0 0 0 250 2000 0 999999999 26 0 0 88 0.2 0 0 +3474000.0 11 9 87 98488 0 0 337 0 0 0 0 0 0 0 119 0 9 9 100 2000 0 999999999 24 0 0 88 0.2 0 0 +3477600.0 10.6 9.8 95 98518 0 0 345 0 0 0 0 0 0 0 41 0 10 10 50 30 0 999999999 26 0 0 88 0.2 0 0 +3481200.0 10 10 100 98478 0 0 343 0 0 0 0 0 0 0 73 0 10 10 50 30 0 999999999 26 0 0 88 0.2 0 0 +3484800.0 9 9 100 98468 110 500 292 33 74 27 3607 0 2969 872 250 1.5 0 0 50 30 0 999999999 24 0 0 88 0.2 0 0 +3488400.0 10.2 9.4 95 98806 400 1404 297 222 500 79 25273 20812 9040 3065 270 2.1 0 0 50 30 0 999999999 25 0 0 88 0.2 0 0 +3492000.0 14 9 72 98517 652 1404 313 433 705 106 50996 41222 12459 4708 260 2.1 0 0 1000 2000 0 999999999 23 0 0 88 0.2 0 0 +3495600.0 17 9 59 98546 848 1404 326 607 848 95 74497 49802 11646 4729 280 2.1 0 0 1200 2000 0 999999999 23 0 0 88 0.2 0 0 +3499200.0 21.6 11.6 53 98817 974 1404 350 719 792 169 85879 52626 20254 8215 250 2.1 0 0 1000 2000 0 999999999 30 0 0 88 0.2 0 0 +3502800.0 23 9 41 98601 1023 1404 354 766 796 186 91642 55354 22304 9055 290 2.6 0 0 1500 2000 0 999999999 23 0 0 88 0.2 0 0 +3506400.0 24 7 34 98610 990 1404 356 739 793 179 88291 55650 21478 8677 290 2.1 0 0 2200 2000 0 999999999 19 0 0 88 0.2 0 0 +3510000.0 23 9.6 43 98450 878 1404 355 635 858 97 78023 50469 11958 4889 290 1.5 0 0 2000 2000 0 999999999 25 0 0 88 0.2 0 0 +3513600.0 25 6 30 98619 695 1404 360 474 773 91 56939 44908 10969 4257 290 2.6 0 0 2800 2000 0 999999999 17 0 0 88 0.2 0 0 +3517200.0 25 5 28 98619 453 1404 359 267 496 106 30111 27034 12052 4031 280 2.1 0 0 3000 2000 0 999999999 15 0 0 88 0.2 0 0 +3520800.0 22.4 8.5 41 98338 169 1404 351 61 154 43 6736 0 4700 1387 290 1 0 0 2000 2000 0 999999999 22 0 0 88 0.2 0 0 +3524400.0 23 5 31 98601 0 773 349 0 0 0 0 0 0 0 280 1.5 0 0 3200 2000 0 999999999 16 0 0 88 0.2 0 0 +3528000.0 20 10 53 98574 0 0 341 0 0 0 0 0 0 0 100 1 0 0 3000 2000 0 999999999 26 0 0 88 0.2 0 0 +3531600.0 16.6 10.2 66 98381 0 0 326 0 0 0 0 0 0 0 304 0 0 0 2000 2000 0 999999999 26 0 0 88 0.2 0 0 +3535200.0 19 8 49 98564 0 0 334 0 0 0 0 0 0 0 120 2.1 0 0 1800 2000 0 999999999 21 0 0 88 0.2 0 0 +3538800.0 16 8 59 98536 0 0 321 0 0 0 0 0 0 0 120 1.5 0 0 1600 2000 0 999999999 21 0 0 88 0.2 0 0 +3542400.0 14 9.3 73 98396 0 0 313 0 0 0 0 0 0 0 215 0 0 0 1000 2000 0 999999999 24 0 0 88 0.2 0 0 +3546000.0 15 9 67 98527 0 0 317 0 0 0 0 0 0 0 100 2.1 0 0 1500 2000 0 999999999 23 0 0 88 0.2 0 0 +3549600.0 13 9 77 98507 0 0 309 0 0 0 0 0 0 0 100 2.1 0 0 1500 2000 0 999999999 24 0 0 88 0.2 0 0 +3553200.0 13.4 8 70 98511 0 0 309 0 0 0 0 0 0 0 110 1.5 0 0 1000 2000 0 999999999 21 0 0 88 0.2 0 0 +3556800.0 13 9 77 98507 0 0 309 0 0 0 0 0 0 0 140 4.1 0 0 2500 2000 0 999999999 24 0 0 88 0.2 0 0 +3560400.0 13 9 77 98507 0 0 309 0 0 0 0 0 0 0 140 4.1 0 0 2500 2000 0 999999999 24 0 0 88 0.2 0 0 +3564000.0 13.4 9.3 76 98234 0 0 311 0 0 0 0 0 0 0 140 2.1 0 0 1000 2000 9 999999999 24 0 0 88 0.2 0 0 +3567600.0 13 9 77 98507 0 0 322 0 0 0 0 0 0 0 140 4.1 3 3 1800 2000 9 999999999 24 0 0 88 0.2 0 0 +3571200.0 14 10 77 98517 114 517 333 31 44 28 3470 0 3083 905 130 4.1 5 5 1500 2000 9 999999999 26 0 0 88 0.2 0 0 +3574800.0 15.6 12.1 80 98532 405 1404 342 209 423 87 23592 17958 9820 3295 180 2.1 5 5 1000 2000 9 999999999 32 0 0 88 0.2 0 0 +3578400.0 18 9 56 98555 657 1404 350 407 569 140 46888 36960 16243 5937 140 5.1 5 5 2200 2000 9 999999999 23 0 0 88 0.2 0 0 +3582000.0 20 9 49 98574 853 1404 360 570 696 146 67622 45917 17452 6911 150 5.1 5 5 2500 2000 9 999999999 23 0 0 88 0.2 0 0 +3585600.0 22.8 10 44 98536 979 1404 375 675 702 184 80239 48706 22020 8857 140 3.1 5 5 2000 2000 9 999999999 26 0 0 88 0.2 0 0 +3589200.0 23 8 38 98601 1028 1404 368 762 854 136 93467 54845 16706 6942 170 2.6 3 3 3000 2000 9 999999999 21 0 0 88 0.2 0 0 +3592800.0 25 3 24 98619 995 1404 356 748 793 185 89389 57554 22227 8948 270 3.1 0 0 3000 2000 9 999999999 13 0 0 88 0.2 0 0 +3596400.0 25.8 2.3 22 98349 883 1404 359 647 782 154 77080 54650 18436 7320 270 2.1 0 0 2000 2000 9 999999999 12 0 0 88 0.2 0 0 +3600000.0 26 -1 17 98628 700 1404 356 484 782 94 58172 47782 11282 4370 280 2.6 0 0 4000 2000 9 999999999 8 0 0 88 0.2 0 0 +3603600.0 25 0 19 98619 458 1404 353 273 497 111 30780 28588 12528 4165 250 2.1 0 0 4000 2000 9 999999999 9 0 0 88 0.2 0 0 +3607200.0 23.6 4.2 28 98378 173 1404 351 64 166 43 7065 4 4813 1420 270 1.5 0 0 4000 2000 9 999999999 14 0 0 88 0.2 0 0 +3610800.0 21 3 30 98583 0 791 338 0 0 0 0 0 0 0 278 3.1 0 0 3500 2000 9 999999999 13 0 0 88 0.2 0 0 +3614400.0 21 3 30 98583 0 0 338 0 0 0 0 0 0 0 30 2.1 0 0 3200 2000 9 999999999 13 0 0 88 0.2 0 0 +3618000.0 18 10.6 62 98570 0 0 332 0 0 0 0 0 0 0 66 0 0 0 2000 2000 9 999999999 27 0 0 88 0.2 0 0 +3621600.0 19 7 46 98564 0 0 333 0 0 0 0 0 0 0 43 0 0 0 1800 2000 9 999999999 19 0 0 88 0.2 0 0 +3625200.0 18 6 45 98555 0 0 327 0 0 0 0 0 0 0 173 0 0 0 1800 2000 9 999999999 17 0 0 88 0.2 0 0 +3628800.0 15.8 8.3 61 98675 0 0 320 0 0 0 0 0 0 0 231 0 0 0 2000 2000 9 999999999 22 0 0 88 0.2 0 0 +3632400.0 16 6 51 98536 0 0 318 0 0 0 0 0 0 0 70 2.1 0 0 2200 2000 9 999999999 17 0 0 88 0.2 0 0 +3636000.0 15 6 55 98527 0 0 314 0 0 0 0 0 0 0 40 2.1 0 0 2200 2000 9 999999999 17 0 0 88 0.2 0 0 +3639600.0 14.4 8 65 98574 0 0 314 0 0 0 0 0 0 0 228 0 0 0 2000 2000 9 999999999 21 0 0 88 0.2 0 0 +3643200.0 14 6 59 98517 0 0 310 0 0 0 0 0 0 0 40 2.1 0 0 2200 2000 9 999999999 17 0 0 88 0.2 0 0 +3646800.0 14 6 59 98517 0 0 310 0 0 0 0 0 0 0 40 1.5 0 0 2200 2000 9 999999999 17 0 0 88 0.2 0 0 +3650400.0 10.8 9.2 90 98569 0 0 299 0 0 0 0 0 0 0 79 0 0 0 2000 2000 9 999999999 24 0 0 88 0.2 0 0 +3654000.0 11 7 76 98488 0 0 298 0 0 0 0 0 0 0 324 0 0 0 2000 2000 9 999999999 19 0 0 88 0.2 0 0 +3657600.0 10 7 82 98478 118 534 294 35 76 29 3868 0 3168 932 250 2.1 0 0 1300 2000 9 999999999 19 0 0 88 0.2 0 0 +3661200.0 11.8 8.1 78 98676 409 1403 303 229 512 80 26144 22072 9134 3112 158 0 0 0 500 2000 9 999999999 22 0 0 88 0.2 0 0 +3664800.0 15 8 63 98527 661 1403 316 442 709 108 52051 42190 12711 4813 322 0 0 0 1200 2000 9 999999999 21 0 0 88 0.2 0 0 +3668400.0 20 9 49 98574 857 1403 340 616 851 95 75627 50088 11757 4785 300 2.1 0 0 2000 2000 9 999999999 23 0 0 88 0.2 0 0 +3672000.0 22.8 10.9 47 98740 984 1403 355 729 792 172 87086 53266 20682 8392 320 1.5 0 0 2000 2000 9 999999999 28 0 0 88 0.2 0 0 +3675600.0 24 7 34 98610 1033 1403 356 778 796 191 93069 56585 22947 9304 290 2.1 0 0 2000 2000 9 999999999 19 0 0 88 0.2 0 0 +3679200.0 25 3 24 98619 1000 1403 356 753 867 134 92212 57522 16500 6816 260 3.1 0 0 2200 2000 9 999999999 13 0 0 88 0.2 0 0 +3682800.0 26 5.9 28 98438 888 1403 386 602 650 190 70587 47663 22414 8704 156 0 5 5 2000 2000 9 999999999 17 0 0 88 0.2 0 0 +3686400.0 26 3 23 98628 705 1403 383 451 637 130 52841 42200 15344 5791 250 3.6 5 5 2200 2000 9 999999999 13 0 0 88 0.2 0 0 +3690000.0 25 4 26 98619 462 1403 379 255 455 105 28916 25021 11973 4042 270 2.6 5 5 2500 2000 9 999999999 14 0 0 88 0.2 0 0 +3693600.0 23.2 4.8 30 98355 177 1403 371 62 97 49 6738 416 5417 1555 290 1.5 5 5 2000 2000 9 999999999 15 0 0 88 0.2 0 0 +3697200.0 23 4 29 98601 0 809 369 0 0 0 0 0 0 0 320 2.6 5 5 2500 2000 9 999999999 14 0 0 88 0.2 0 0 +3700800.0 20 7 43 98574 0 0 358 0 0 0 0 0 0 0 40 1.5 5 5 2500 2000 9 999999999 19 0 0 88 0.2 0 0 +3704400.0 17.8 10.3 61 98500 0 0 331 0 0 0 0 0 0 0 141 0 0 0 2000 2000 9 999999999 27 0 0 88 0.2 0 0 +3708000.0 19 7 46 98564 0 0 333 0 0 0 0 0 0 0 20 2.1 0 0 2500 2000 9 999999999 19 0 0 88 0.2 0 0 +3711600.0 19 7 46 98564 0 0 333 0 0 0 0 0 0 0 30 3.1 0 0 2500 2000 9 999999999 19 0 0 88 0.2 0 0 +3715200.0 17.6 8.7 56 98576 0 0 329 0 0 0 0 0 0 0 55 0 0 0 2000 2000 9 999999999 23 0 0 88 0.2 0 0 +3718800.0 17 7 52 98546 0 0 324 0 0 0 0 0 0 0 50 2.6 0 0 2500 2000 9 999999999 19 0 0 88 0.2 0 0 +3722400.0 16 8 59 98536 0 0 321 0 0 0 0 0 0 0 40 1.5 0 0 2500 2000 9 999999999 21 0 0 88 0.2 0 0 +3726000.0 15.4 9.6 68 98487 0 0 320 0 0 0 0 0 0 0 90 2.1 0 0 2000 2000 9 999999999 25 0 0 88 0.2 0 0 +3729600.0 16 7 55 98536 0 0 320 0 0 0 0 0 0 0 90 1.5 0 0 2500 2000 9 999999999 19 0 0 88 0.2 0 0 +3733200.0 15 7 59 98527 0 0 315 0 0 0 0 0 0 0 100 2.1 0 0 2500 2000 9 999999999 19 0 0 88 0.2 0 0 +3736800.0 15.2 6.6 56 98553 0 0 334 0 0 0 0 0 0 0 270 2.6 5 5 2000 3000 9 999999999 18 0 0 88 0.2 0 0 +3740400.0 14 6 59 98517 0 0 328 0 0 0 0 0 0 0 320 2.6 5 5 2500 3048 9 999999999 17 0 0 88 0.2 0 0 +3744000.0 15 6 55 98527 122 552 333 34 47 30 3736 0 3294 968 50 2.1 5 5 2500 3048 9 999999999 17 0 0 88 0.2 0 0 +3747600.0 15.2 7.6 60 98679 414 1403 336 217 404 98 24373 19719 11020 3631 156 0 5 5 2000 3000 9 999999999 20 0 0 88 0.2 0 0 +3751200.0 19 5 40 98564 666 1403 350 418 497 181 47274 36888 20613 7196 50 2.6 5 5 2200 3048 9 999999999 16 0 0 88 0.2 0 0 +3754800.0 18 6 45 98555 862 1403 367 322 61 284 36388 5318 32302 11363 340 4.6 9 9 2200 1219 9 999999999 17 0 0 88 0.2 0 0 +3758400.0 18.6 7.7 49 98955 989 1403 373 380 83 322 43404 7195 36981 13445 50 2.1 9 9 2000 3000 9 999999999 21 0 0 88 0.2 0 0 +3762000.0 20 5 37 98574 1038 1403 355 731 611 278 85033 50058 32495 12470 40 5.7 5 5 2200 3048 9 999999999 16 0 0 88 0.2 0 0 +3765600.0 20 5 37 98574 1005 1403 355 703 740 172 84481 51799 20721 8431 50 5.1 5 5 2200 3048 9 999999999 16 0 0 88 0.2 0 0 +3769200.0 22.4 8 40 98688 893 1403 371 604 708 153 72023 47600 18314 7315 50 2.6 5 5 2000 3048 9 999999999 21 0 0 88 0.2 0 0 +3772800.0 21 6 38 98583 710 1403 361 453 634 132 52976 41329 15479 5855 40 4.1 5 5 3500 3048 9 999999999 17 0 0 88 0.2 0 0 +3776400.0 20 7 43 98574 467 1403 358 257 466 102 29222 24752 11631 3969 30 4.6 5 5 3500 3048 9 999999999 19 0 0 88 0.2 0 0 +3780000.0 19.6 9 50 98740 182 1403 338 68 174 46 7511 107 5036 1494 50 1.5 0 0 2000 3048 9 999999999 23 0 0 88 0.2 0 0 +3783600.0 18 7 49 98555 0 826 329 0 0 0 0 0 0 0 30 3.6 0 0 3500 2000 9 999999999 19 0 0 88 0.2 0 0 +3787200.0 17 9 59 98546 0 0 326 0 0 0 0 0 0 0 30 2.6 0 0 3000 2000 9 999999999 23 0 0 88 0.2 0 0 +3790800.0 15.6 9.4 67 98897 0 0 320 0 0 0 0 0 0 0 200 2.6 0 0 2000 2000 9 999999999 24 0 0 88 0.2 0 0 +3794400.0 15 10 72 98527 0 0 318 0 0 0 0 0 0 0 40 1.5 0 0 3000 2000 9 999999999 26 0 0 88 0.2 0 0 +3798000.0 15 10 72 98527 0 0 318 0 0 0 0 0 0 0 50 1.5 0 0 3000 2000 9 999999999 26 0 0 88 0.2 0 0 +3801600.0 12.6 10.7 88 98917 0 0 309 0 0 0 0 0 0 0 7 0 0 0 2000 2000 9 999999999 28 0 0 88 0.2 0 0 +3805200.0 13 10 82 98507 0 0 310 0 0 0 0 0 0 0 270 2.6 0 0 1600 2000 9 999999999 26 0 0 88 0.2 0 0 +3808800.0 12 10 88 98498 0 0 305 0 0 0 0 0 0 0 280 2.1 0 0 500 2000 0 999999999 26 0 0 88 0.2 0 0 +3812400.0 11.2 9.6 90 98884 0 0 301 0 0 0 0 0 0 0 144 0 0 0 500 2000 0 999999999 25 0 0 88 0.2 0 0 +3816000.0 12 10 88 98498 0 0 305 0 0 0 0 0 0 0 290 1.5 0 0 600 2000 0 999999999 26 0 0 88 0.2 0 0 +3819600.0 11 9 87 98488 0 0 300 0 0 0 0 0 0 0 330 1.5 0 0 700 2000 0 999999999 24 0 0 88 0.2 0 0 +3823200.0 10.4 8.8 90 98885 0 0 297 0 0 0 0 0 0 0 249 0 0 0 500 2000 9 999999999 23 0 0 88 0.2 0 0 +3826800.0 11 9 87 98488 0 0 300 0 0 0 0 0 0 0 320 1.5 0 0 600 2000 9 999999999 24 0 0 88 0.2 0 0 +3830400.0 11 8 82 98488 127 571 299 38 88 30 4235 0 3369 994 290 2.1 0 0 600 2000 9 999999999 21 0 0 88 0.2 0 0 +3834000.0 11.4 8.6 83 99061 418 1402 301 236 503 86 26849 22789 9802 3324 209 0 0 0 500 2000 9 999999999 23 0 0 88 0.2 0 0 +3837600.0 14 8 67 98517 671 1402 312 451 714 108 53114 42723 12824 4873 280 3.1 0 0 700 2000 9 999999999 21 0 0 88 0.2 0 0 +3841200.0 16 8 59 98536 867 1402 321 626 840 106 76433 51120 12934 5256 290 3.1 0 0 1200 2000 9 999999999 21 0 0 88 0.2 0 0 +3844800.0 20.8 7.7 43 99131 994 1402 342 742 792 179 88681 55288 21501 8701 320 1 0 0 2000 2000 9 999999999 20 0 0 88 0.2 0 0 +3848400.0 21 7 40 98583 1043 1402 342 787 797 194 94225 56756 23302 9454 330 4.1 0 0 2800 2000 9 999999999 19 0 0 88 0.2 0 0 +3852000.0 23 7 36 98601 1010 1402 352 757 794 184 90555 56030 22165 8974 330 4.6 0 0 3500 2000 9 999999999 19 0 0 88 0.2 0 0 +3855600.0 24 8.3 37 98887 898 1402 358 654 783 152 78005 52339 18160 7273 320 1.5 0 0 2000 2000 9 999999999 22 0 0 88 0.2 0 0 +3859200.0 23 7 36 98601 714 1402 352 490 779 92 58952 45355 11145 4354 290 4.1 0 0 3500 2000 9 999999999 19 0 0 88 0.2 0 0 +3862800.0 23 7 36 98601 471 1402 352 280 512 108 31713 28064 12272 4157 300 4.6 0 0 3500 2000 9 999999999 19 0 0 88 0.2 0 0 +3866400.0 22.2 8.7 42 98842 186 1402 350 71 182 46 7790 382 5142 1528 320 3.1 0 0 2000 2000 9 999999999 23 0 0 88 0.2 0 0 +3870000.0 21 9 46 98583 0 844 345 0 0 0 0 0 0 0 320 3.1 0 0 3500 2000 9 999999999 23 0 0 88 0.2 0 0 +3873600.0 19 9 52 98564 0 0 335 0 0 0 0 0 0 0 320 2.6 0 0 3200 2000 9 999999999 23 0 0 88 0.2 0 0 +3877200.0 17.2 9.1 59 98971 0 0 327 0 0 0 0 0 0 0 51 0 0 0 2000 2000 9 999999999 24 0 0 88 0.2 0 0 +3880800.0 18 10 59 98555 0 0 349 0 0 0 0 0 0 0 300 2.1 4 4 2000 2000 9 999999999 26 0 0 88 0.2 0 0 +3884400.0 17 10 63 98546 0 0 347 0 0 0 0 0 0 0 330 1.5 5 5 1500 2000 9 999999999 26 0 0 88 0.2 0 0 +3888000.0 14.4 9.8 74 99080 0 0 316 0 0 0 0 0 0 0 163 0 0 0 2000 2000 9 999999999 26 0 0 88 0.2 0 0 +3891600.0 16 10 68 98536 0 0 342 0 0 0 0 0 0 0 320 2.1 5 5 1100 2000 9 999999999 26 0 0 88 0.2 0 0 +3895200.0 16 10 68 98536 0 0 342 0 0 0 0 0 0 0 330 2.6 5 5 1500 2000 9 999999999 26 0 0 88 0.2 0 0 +3898800.0 14 9.3 73 99134 0 0 313 0 0 0 0 0 0 0 320 1.5 0 0 1000 2000 9 999999999 24 0 0 88 0.2 0 0 +3902400.0 15 10 72 98527 0 0 318 0 0 0 0 0 0 0 350 1.5 0 0 2200 2000 9 999999999 26 0 0 88 0.2 0 0 +3906000.0 15 10 72 98527 0 0 318 0 0 0 0 0 0 0 188 0 0 0 2200 2000 9 999999999 26 0 0 88 0.2 0 0 +3909600.0 12.4 9.7 84 99002 0 0 307 0 0 0 0 0 0 0 227 0 0 0 2000 2000 9 999999999 25 0 0 88 0.2 0 0 +3913200.0 13 10 82 98507 0 0 310 0 0 0 0 0 0 0 226 0 0 0 1800 2000 9 999999999 26 0 0 88 0.2 0 0 +3916800.0 13 10 82 98507 131 590 328 37 62 32 4131 0 3504 1035 181 0 5 5 1200 3048 9 999999999 26 0 0 88 0.2 0 0 +3920400.0 12.6 9 79 99082 423 1401 325 223 407 100 25045 20058 11286 3733 270 2.1 5 5 500 3048 9 999999999 24 0 0 88 0.2 0 0 +3924000.0 15 10 72 98527 676 1401 337 422 598 133 48913 37744 15461 5762 280 1.5 5 5 900 3048 9 999999999 26 0 0 88 0.2 0 0 +3927600.0 19 9 52 98564 872 1401 355 586 698 151 69634 46418 17971 7147 310 2.6 5 5 1200 3048 9 999999999 23 0 0 88 0.2 0 0 +3931200.0 20.2 10.7 54 99281 999 1401 363 691 718 178 82578 48768 21406 8690 320 2.1 5 5 1000 3048 9 999999999 28 0 0 88 0.2 0 0 +3934800.0 21 8 43 98583 1048 1401 364 736 731 188 88285 51196 22650 9232 340 2.6 5 5 2200 3048 9 999999999 21 0 0 88 0.2 0 0 +3938400.0 21 7 40 98583 1015 1401 363 709 731 179 85034 51030 21520 8752 330 2.6 5 5 2500 3048 9 999999999 19 0 0 88 0.2 0 0 +3942000.0 23 6.7 35 99102 903 1401 372 614 713 154 73274 48432 18449 7385 320 2.1 5 5 2000 3048 9 999999999 18 0 0 88 0.2 0 0 +3945600.0 22 5 33 98592 719 1401 365 461 638 133 54021 42098 15667 5943 310 3.6 5 5 3000 3048 9 999999999 16 0 0 88 0.2 0 0 +3949200.0 22 6 35 98592 476 1401 366 264 458 109 29943 25495 12357 4195 320 2.6 5 5 3000 3048 9 999999999 17 0 0 88 0.2 0 0 +3952800.0 21 7 40 98583 190 1401 363 68 108 53 7431 843 5855 1684 310 2.6 5 5 3000 3048 9 999999999 19 0 0 88 0.2 0 0 +3956400.0 19.5 7 44 98569 0 861 342 0 0 0 0 0 0 0 143 2.6 1 1 2750 3048 9 999999999 19 0 0 88 0.2 0 0 +3960000.0 18 7 49 98555 0 0 348 0 0 0 0 0 0 0 310 2.6 5 5 2500 3048 9 999999999 19 0 0 88 0.2 0 0 +3963600.0 17 7.3 53 98546 0 0 338 0 0 0 0 0 0 0 20 2.4 3 3 2166 3048 9 999999999 20 0 0 88 0.2 0 0 +3967200.0 16 7.7 58 98536 0 0 337 0 0 0 0 0 0 0 254 2.3 4 4 1833 3048 9 999999999 21 0 0 88 0.2 0 0 +3970800.0 15 8 63 98527 0 0 335 0 0 0 0 0 0 0 300 2.1 5 5 1500 3048 9 999999999 21 0 0 88 0.2 0 0 +3974400.0 14.6 9.1 70 99247 0 0 334 0 0 0 0 0 0 0 169 0 5 5 1000 3048 9 999999999 24 0 0 88 0.2 0 0 +3978000.0 15 8 63 98527 0 0 330 0 0 0 0 0 0 0 330 2.6 3 3 1500 3048 9 999999999 21 0 0 88 0.2 0 0 +3981600.0 14.2 8.1 67 98823 0 0 331 0 0 0 0 0 0 0 78 1.3 5 5 1250 3048 9 999999999 22 0 0 88 0.2 0 0 +3985200.0 13.4 8.2 71 99119 0 0 309 0 0 0 0 0 0 0 352 0 0 0 1000 3048 9 999999999 22 0 0 88 0.2 0 0 +3988800.0 13 8 72 98507 0 0 308 0 0 0 0 0 0 0 5 0 0 0 1200 3048 9 999999999 21 0 0 88 0.2 0 0 +3992400.0 13 8 72 98507 0 0 308 0 0 0 0 0 0 0 54 0 0 0 1200 2000 9 999999999 21 0 0 88 0.2 0 0 +3996000.0 10.8 7.5 80 99181 0 0 298 0 0 0 0 0 0 0 271 0 0 0 1000 2000 9 999999999 20 0 0 88 0.2 0 0 +3999600.0 11 8 82 98488 0 0 299 0 0 0 0 0 0 0 300 2.6 0 0 1200 2000 9 999999999 21 0 0 88 0.2 0 0 +4003200.0 10 8 87 98478 135 609 295 43 107 32 4713 0 3572 1059 310 2.6 0 0 900 2000 9 999999999 21 0 0 88 0.2 0 0 +4006800.0 12.8 7.5 70 99308 428 1401 306 244 514 87 27786 24026 9928 3384 209 0 0 0 1000 2000 9 999999999 20 0 0 88 0.2 0 0 +4010400.0 14 9 72 98517 681 1401 313 458 719 108 54085 42730 12846 4905 310 3.1 0 0 1000 2000 9 999999999 23 0 0 88 0.2 0 0 +4014000.0 18 6 45 98555 877 1401 327 637 842 109 77797 52462 13360 5432 320 3.1 0 0 1400 2000 9 999999999 17 0 0 88 0.2 0 0 +4017600.0 20.8 5 36 99481 1005 1401 339 754 793 185 90192 56770 22229 8980 320 3.1 0 0 1000 2000 9 999999999 16 0 0 88 0.2 0 0 +4021200.0 22 3 29 98592 1053 1401 342 802 797 202 95946 58718 24255 9807 340 3.6 0 0 2200 2000 9 999999999 13 0 0 88 0.2 0 0 +4024800.0 23 3 27 98601 1020 1401 347 771 794 192 92224 57996 23081 9316 320 3.6 0 0 2700 2000 9 999999999 13 0 0 88 0.2 0 0 +4028400.0 24.4 3 25 99164 908 1401 353 668 845 120 81441 54884 14696 5987 320 1.5 0 0 2000 2000 9 999999999 13 0 0 88 0.2 0 0 +4032000.0 24 3 25 98610 724 1401 367 495 762 101 59332 46798 12147 4729 330 3.6 3 3 3000 2000 9 999999999 13 0 0 88 0.2 0 0 +4035600.0 24 3 25 98610 480 1401 352 289 513 113 32728 29855 12847 4337 320 2.6 0 0 3000 2000 9 999999999 13 0 0 88 0.2 0 0 +4039200.0 22.2 6 35 99144 194 1401 347 76 197 48 8359 1174 5354 1596 320 1.5 0 0 2000 2000 9 999999999 17 0 0 88 0.2 0 0 +4042800.0 21 7 40 98583 0 878 342 0 0 0 0 0 0 0 320 3.1 0 0 3000 2000 9 999999999 19 0 0 88 0.2 0 0 +4046400.0 20 8 46 98574 0 0 339 0 0 0 0 0 0 0 320 2.6 0 0 2500 2000 9 999999999 21 0 0 88 0.2 0 0 +4050000.0 16.4 8.1 58 99206 0 0 323 0 0 0 0 0 0 0 320 3.1 0 0 2000 2000 9 999999999 21 0 0 88 0.2 0 0 +4053600.0 17 7 52 98546 0 0 324 0 0 0 0 0 0 0 330 2.6 0 0 2200 2000 9 999999999 19 0 0 88 0.2 0 0 +4057200.0 17 7 52 98546 0 0 324 0 0 0 0 0 0 0 330 2.1 0 0 2200 2000 9 999999999 19 0 0 88 0.2 0 0 +4060800.0 15.2 9 66 99302 0 0 318 0 0 0 0 0 0 0 340 3.1 0 0 2000 2000 9 999999999 24 0 0 88 0.2 0 0 +4064400.0 16 7 55 98536 0 0 320 0 0 0 0 0 0 0 360 2.1 0 0 2500 2000 9 999999999 19 0 0 88 0.2 0 0 +4068000.0 16 7 55 98536 0 0 320 0 0 0 0 0 0 0 340 2.6 0 0 2500 2000 9 999999999 19 0 0 88 0.2 0 0 +4071600.0 14.4 8.9 70 99129 0 0 315 0 0 0 0 0 0 0 172 0 0 0 2000 2000 9 999999999 23 0 0 88 0.2 0 0 +4075200.0 14 6 59 98517 0 0 310 0 0 0 0 0 0 0 330 1.5 0 0 2500 2000 9 999999999 17 0 0 88 0.2 0 0 +4078800.0 14 7 63 98517 0 0 311 0 0 0 0 0 0 0 330 2.6 0 0 2500 2000 9 999999999 19 0 0 88 0.2 0 0 +4082400.0 13 8.2 73 99115 0 0 308 0 0 0 0 0 0 0 170 0 0 0 2000 2000 9 999999999 22 0 0 88 0.2 0 0 +4086000.0 13 6 62 98507 0 0 305 0 0 0 0 0 0 0 202 0 0 0 1800 2000 9 999999999 17 0 0 88 0.2 0 0 +4089600.0 11 7 76 98488 140 629 298 45 117 33 4966 0 3679 1092 300 1.5 0 0 1400 2000 9 999999999 19 0 0 88 0.2 0 0 +4093200.0 12.2 7.7 74 99360 432 1400 304 247 516 88 28189 24371 10037 3428 320 2.1 0 0 1000 2000 9 999999999 21 0 0 88 0.2 0 0 +4096800.0 17 6 48 98546 686 1400 323 465 716 114 54777 44342 13473 5125 340 2.6 0 0 1700 2000 9 999999999 17 0 0 88 0.2 0 0 +4100400.0 18 7 49 98555 883 1400 348 596 687 163 70625 47457 19369 7663 300 2.6 5 5 1800 2000 9 999999999 19 0 0 88 0.2 0 0 +4104000.0 21.4 6.5 38 99457 1010 1400 364 705 731 177 84556 51089 21305 8662 236 0 5 5 1000 2000 9 999999999 18 0 0 88 0.2 0 0 +4107600.0 22 6 35 98592 1058 1400 366 747 738 188 89823 52294 22731 9275 270 2.1 5 5 1800 3048 9 999999999 17 0 0 88 0.2 0 0 +4111200.0 24 5 29 98610 1025 1400 375 720 705 203 85697 51756 24286 9760 300 2.1 5 5 2100 3048 9 999999999 15 0 0 88 0.2 0 0 +4114800.0 25.8 5 26 99166 913 1400 378 662 823 125 80424 53308 15232 6205 320 1.5 3 3 2000 3048 9 999999999 16 0 0 88 0.2 0 0 +4118400.0 25 3 24 98619 728 1400 372 499 762 102 59802 46982 12251 4776 340 3.1 3 3 2500 3048 9 999999999 13 0 0 88 0.2 0 0 +4122000.0 25 5 28 98619 484 1400 374 288 498 115 32529 28934 13073 4415 330 3.6 3 3 2500 3048 9 999999999 15 0 0 88 0.2 0 0 +4125600.0 23.8 9 39 99032 198 1400 358 77 199 49 8553 1145 5465 1634 320 1 0 0 2000 3048 9 999999999 23 0 0 88 0.2 0 0 +4129200.0 21 8 43 98583 0 895 343 0 0 0 0 0 0 0 320 3.1 0 0 2500 2000 9 999999999 21 0 0 88 0.2 0 0 +4132800.0 21 10 49 98583 0 0 366 0 0 0 0 0 0 0 330 2.6 5 5 2500 3048 9 999999999 26 0 0 88 0.2 0 0 +4136400.0 20 10.4 54 99045 0 0 362 0 0 0 0 0 0 0 238 0 5 5 2000 3048 9 999999999 27 0 0 88 0.2 0 0 +4140000.0 20 10 53 98574 0 0 383 0 0 0 0 0 0 0 330 1.5 9 9 1600 3048 9 999999999 26 0 0 88 0.2 0 0 +4143600.0 19 10 56 98564 0 0 378 0 0 0 0 0 0 0 290 4.6 9 9 1600 3048 9 999999999 26 0 0 88 0.2 0 0 +4147200.0 18.2 12.5 69 99068 0 0 376 0 0 0 0 0 0 0 90 2.1 9 9 1000 3000 9 999999999 33 0 0 88 0.2 0 0 +4150800.0 18 10 59 98555 0 0 372 0 0 0 0 0 0 0 310 4.1 9 9 2000 3048 9 999999999 26 0 0 88 0.2 0 0 +4154400.0 17 11 68 98546 0 0 368 0 0 0 0 0 0 0 310 4.6 9 9 2000 3048 9 999999999 29 0 0 88 0.2 0 0 +4158000.0 17 12.3 74 99280 0 0 370 0 0 0 0 0 0 0 320 3.1 9 9 2000 3000 9 999999999 33 0 0 88 0.2 0 0 +4161600.0 16 11 72 98536 0 0 363 0 0 0 0 0 0 0 300 2.1 9 9 2000 3048 9 999999999 29 0 0 88 0.2 0 0 +4165200.0 15 11 77 98527 0 0 358 0 0 0 0 0 0 0 270 1.5 9 9 1600 3048 9 999999999 29 0 0 88 0.2 0 0 +4168800.0 15.6 13.1 85 98994 0 0 364 0 0 0 0 0 0 0 90 1.5 9 9 1000 3000 9 999999999 35 0 0 88 0.2 1 0 +4172400.0 15 12 82 98527 0 0 360 0 0 0 0 0 0 0 20 4.1 9 9 1000 3048 0 919999999 32 0 0 88 0.2 0 0 +4176000.0 15 12 82 98527 145 649 360 24 0 24 2336 0 2352 870 90 2.1 9 9 1000 3048 0 919999999 32 0 0 88 0.2 0 0 +4179600.0 15.6 13.8 89 99218 437 1400 365 128 16 123 14179 871 13672 4370 56 0 9 9 1000 3000 0 919999999 38 0 0 88 0.2 0 0 +4183200.0 16 12 77 98536 691 1400 365 240 31 224 26693 2379 25145 8459 350 2.1 9 9 1000 3048 0 919999999 32 0 0 88 0.2 0 0 +4186800.0 19 12 64 98564 888 1400 380 330 35 308 37128 3017 34826 12183 320 2.1 9 9 1200 3048 0 919999999 31 0 0 88 0.2 0 0 +4190400.0 19.2 14.4 74 99281 1015 1400 384 388 36 362 43850 3096 41191 14694 223 0 9 9 1000 3000 0 919999999 40 0 0 88 0.2 0 0 +4194000.0 20 12 60 98574 1063 1400 385 412 36 385 46803 3268 43945 15682 310 2.1 9 9 1000 3048 0 919999999 31 0 0 88 0.2 0 0 +4197600.0 23 12 50 98601 1030 1400 401 397 36 370 44957 3240 42194 15029 300 2.6 9 9 1200 2438 0 919999999 31 0 0 88 0.2 0 0 +4201200.0 21.6 16.3 72 99021 917 1400 399 341 34 319 38347 2854 36034 12729 270 1.5 9 9 1000 3000 0 919999999 48 0 0 88 0.2 0 0 +4204800.0 21 16 73 98583 733 1400 396 257 31 241 28602 2370 26946 9189 280 3.1 9 9 1000 2438 0 919999999 47 0 0 88 0.2 0 0 +4208400.0 21 16 73 98583 489 1400 396 149 18 143 16480 1031 15867 5128 330 1.5 9 9 1400 2438 0 919999999 47 0 0 88 0.2 0 0 +4212000.0 19.8 15.4 76 98791 202 1400 388 41 0 41 3950 0 3978 1437 324 0 9 9 1000 3000 0 919999999 44 0 0 88 0.2 0 0 +4215600.0 19 15 78 98564 0 912 384 0 0 0 0 0 0 0 290 2.1 9 9 1200 2438 0 919999999 42 0 0 88 0.2 0 0 +4219200.0 18 15 83 98555 0 0 378 0 0 0 0 0 0 0 260 2.6 9 9 1200 2438 0 919999999 43 0 0 88 0.2 0 0 +4222800.0 17.8 15 84 98553 0 0 369 0 0 0 0 0 0 0 185 2.3 8 8 1150 2438 9 999999999 43 0 0 88 0.2 0 0 +4226400.0 17.5 15 85 98550 0 0 368 0 0 0 0 0 0 0 92 2 8 8 1100 2438 9 999999999 43 0 0 88 0.2 0 0 +4230000.0 17.2 15 87 98548 0 0 374 0 0 0 0 0 0 0 142 1.8 9 9 1050 2438 9 999999999 43 0 0 88 0.2 0 0 +4233600.0 17 15 88 98546 0 0 373 0 0 0 0 0 0 0 220 1.5 9 9 1000 2438 0 919999999 43 0 0 88 0.2 0 0 +4237200.0 17 15 88 98546 0 0 373 0 0 0 0 0 0 0 240 1.5 9 9 1000 3048 0 919999999 43 0 0 88 0.2 0 0 +4240800.0 17 15 88 98546 0 0 373 0 0 0 0 0 0 0 240 1.5 9 9 1000 3048 0 919999999 43 0 0 88 0.2 0 0 +4244400.0 16 15 94 98804 0 0 368 0 0 0 0 0 0 0 53 0 9 9 500 3000 0 919999999 43 0 0 88 0.2 0 0 +4248000.0 16 15 94 98536 0 0 368 0 0 0 0 0 0 0 270 1.5 9 9 250 3048 0 919999999 43 0 0 88 0.2 0 0 +4251600.0 15 15 100 98527 0 0 343 0 0 0 0 0 0 0 260 1.5 5 5 200 3048 0 919999999 43 0 0 88 0.2 0 0 +4255200.0 15.4 14.7 96 98837 0 0 344 0 0 0 0 0 0 0 225 0 5 5 200 3000 0 999999999 42 0 0 88 0.2 0 0 +4258800.0 15 15 100 98527 0 0 363 0 0 0 0 0 0 0 230 1.5 9 9 200 3048 0 999999999 43 0 0 88 0.2 0 0 +4262400.0 15 15 100 98527 149 669 363 25 0 25 2436 0 2453 909 250 2.1 9 9 200 3048 0 999999999 43 0 0 88 0.2 0 0 +4266000.0 16.4 14.7 90 98963 442 1399 370 130 16 125 14359 875 13843 4436 230 2.1 9 9 50 3048 0 999999999 42 0 0 88 0.2 0 0 +4269600.0 18 15 83 98555 696 1399 378 240 30 226 26754 2261 25235 8530 260 2.1 9 9 400 3048 0 999999999 43 0 0 88 0.2 0 0 +4273200.0 22 14 60 98592 893 1399 398 331 35 309 37232 2924 34956 12270 320 1.5 9 9 700 3048 0 999999999 38 0 0 88 0.2 0 0 +4276800.0 25.6 14.6 51 99048 1020 1399 419 390 36 364 44125 3090 41454 14801 320 2.1 9 9 500 3000 0 999999999 40 0 0 88 0.2 0 0 +4280400.0 27 14 45 98637 1069 1399 426 413 91 343 47328 7618 39574 14667 330 2.1 9 9 1200 3048 0 999999999 38 0 0 88 0.2 0 0 +4284000.0 28 14 42 98646 1035 1399 408 717 491 353 81509 41951 40384 14658 320 3.1 5 5 1400 3048 0 999999999 38 0 0 88 0.2 0 0 +4287600.0 28.4 15 44 98722 922 1399 436 345 89 286 39105 7044 32669 11941 320 2.1 9 9 2000 3048 0 999999999 42 0 0 88 0.2 0 0 +4291200.0 29 13 37 98654 737 1399 436 260 32 244 29049 2528 27326 9297 320 3.1 9 9 3000 3048 0 999999999 34 0 0 88 0.2 0 0 +4294800.0 27 15 48 98637 493 1399 428 151 18 145 16713 1081 16077 5196 310 3.1 9 9 2500 3048 0 999999999 42 0 0 88 0.2 0 0 +4298400.0 25.8 16.8 58 98670 206 1399 423 42 0 42 4047 0 4076 1474 320 2.1 9 9 2000 3000 0 999999999 50 0 0 88 0.2 0 0 +4302000.0 25 16 57 98619 0 929 418 0 0 0 0 0 0 0 310 2.6 9 9 2200 3048 0 999999999 46 0 0 88 0.2 0 0 +4305600.0 23 16 65 98601 0 0 406 0 0 0 0 0 0 0 122 0 9 9 2100 3048 0 999999999 47 0 0 88 0.2 0 0 +4309200.0 22.4 17.6 74 98776 0 0 405 0 0 0 0 0 0 0 61 0 9 9 2000 3000 0 999999999 55 0 0 88 0.2 0 0 +4312800.0 23 17 69 98601 0 0 408 0 0 0 0 0 0 0 10 2.1 9 9 1400 3048 0 999999999 52 0 0 88 0.2 0 0 +4316400.0 22 17 73 98592 0 0 402 0 0 0 0 0 0 0 80 1.5 9 9 1200 3048 0 999999999 52 0 0 88 0.2 0 0 +4320000.0 21.8 17.3 76 98721 0 0 402 0 0 0 0 0 0 0 354 0 9 9 1000 3000 0 999999999 53 0 0 88 0.2 0 0 +4323600.0 21 17 78 98583 0 0 397 0 0 0 0 0 0 0 280 2.1 9 9 1000 3048 0 999999999 52 0 0 88 0.2 0 0 +4327200.0 21 17 78 98583 0 0 397 0 0 0 0 0 0 0 230 1.5 9 9 900 3048 0 999999999 52 0 0 88 0.2 0 0 +4330800.0 21 17.1 78 98636 0 0 397 0 0 0 0 0 0 0 169 0 9 9 500 3000 0 999999999 52 0 0 88 0.2 0 0 +4334400.0 21 17 78 98583 0 0 397 0 0 0 0 0 0 0 100 1.5 9 9 1200 3048 0 999999999 52 0 0 88 0.2 0 0 +4338000.0 21 16 73 98583 0 0 396 0 0 0 0 0 0 0 39 0 9 9 1400 3048 0 999999999 47 0 0 88 0.2 0 0 +4341600.0 21 17.1 78 98636 0 0 397 0 0 0 0 0 0 0 42 0 9 9 500 3000 9 999999999 52 0 0 88 0.2 0 0 +4345200.0 21 17 78 98583 0 0 397 0 0 0 0 0 0 0 210 2.1 9 9 1200 3048 9 999999999 52 0 0 88 0.2 0 0 +4348800.0 21 17 78 98583 154 690 397 26 0 26 2544 0 2563 949 200 2.6 9 9 900 3048 9 999999999 52 0 0 88 0.2 0 0 +4352400.0 21.4 17.2 77 98776 447 1398 399 131 29 122 14525 1479 13542 4400 270 2.1 9 9 500 3000 9 999999999 53 0 0 88 0.2 0 0 +4356000.0 23 16 65 98601 701 1398 406 242 30 227 26946 2230 25424 8617 280 4.6 9 9 1500 3048 9 999999999 47 0 0 88 0.2 0 0 +4359600.0 23 17 69 98601 898 1398 408 332 33 311 37227 2724 35038 12354 270 3.1 9 9 1500 3048 9 999999999 52 0 0 88 0.2 0 0 +4363200.0 24.2 17.1 65 98782 1025 1398 415 391 34 366 44127 2904 41552 14886 290 2.1 9 9 1000 3000 9 999999999 52 0 0 88 0.2 0 0 +4366800.0 25 17 61 98619 1074 1398 419 414 77 354 47152 6321 40634 14996 260 3.1 9 9 2000 3048 9 999999999 51 0 0 88 0.2 0 0 +4370400.0 26 17 58 98628 1040 1398 425 398 35 372 44964 2925 42343 15183 280 4.6 9 9 2000 3048 9 999999999 51 0 0 88 0.2 0 0 +4374000.0 26.8 18.3 60 98650 927 1398 431 345 33 322 38653 2705 36398 12913 290 2.1 9 9 2000 3000 9 999999999 58 0 0 88 0.2 0 0 +4377600.0 27 17 54 98637 742 1398 430 260 31 244 28981 2341 27313 9350 290 5.1 9 9 2100 3048 9 999999999 51 0 0 88 0.2 0 0 +4381200.0 27 17 54 98637 497 1398 430 152 45 136 16905 2495 15202 5027 280 5.1 9 9 2100 3048 9 999999999 51 0 0 88 0.2 0 0 +4384800.0 25.4 18.5 66 98569 210 1398 399 77 169 52 8461 268 5698 1728 290 2.1 5 5 2000 3000 9 999999999 60 0 0 88 0.2 0 0 +4388400.0 24 18 69 98610 0 945 385 0 0 0 0 0 0 0 290 3.6 3 3 2500 3000 9 999999999 57 0 0 88 0.2 0 0 +4392000.0 24 18 69 98610 0 0 385 0 0 0 0 0 0 0 310 3.6 3 3 2400 3000 9 999999999 57 0 0 88 0.2 0 0 +4395600.0 22.2 18 77 98793 0 0 376 0 0 0 0 0 0 0 290 2.1 3 3 2000 3000 9 999999999 57 0 0 88 0.2 0 0 +4399200.0 20 17 83 98574 0 0 364 0 0 0 0 0 0 0 310 4.1 3 3 2000 3000 9 999999999 52 0 0 88 0.2 0 0 +4402800.0 20 17 83 98574 0 0 364 0 0 0 0 0 0 0 260 2.1 3 3 1200 3000 9 999999999 52 0 0 88 0.2 0 0 +4406400.0 20.2 17.3 83 98892 0 0 350 0 0 0 0 0 0 0 290 1.5 0 0 1000 3000 9 999999999 53 0 0 88 0.2 0 0 +4410000.0 18 16 88 98555 0 0 338 0 0 0 0 0 0 0 260 2.1 0 0 1100 2000 9 999999999 47 0 0 88 0.2 0 0 +4413600.0 17 16 94 98546 0 0 334 0 0 0 0 0 0 0 270 2.1 0 0 900 2000 9 999999999 47 0 0 88 0.2 0 0 +4417200.0 17.2 16.2 94 98737 0 0 335 0 0 0 0 0 0 0 270 2.1 0 0 200 2000 0 999999999 48 0 0 88 0.2 0 0 +4420800.0 16 16 100 98536 0 0 329 0 0 0 0 0 0 0 270 3.6 0 0 300 2000 0 999999999 47 0 0 88 0.2 0 0 +4424400.0 16 16 100 98536 0 0 329 0 0 0 0 0 0 0 270 3.6 0 0 300 2000 0 999999999 47 0 0 88 0.2 0 0 +4428000.0 16.2 14.8 91 98767 0 0 329 0 0 0 0 0 0 0 270 2.1 0 0 200 2000 0 999999999 42 0 0 88 0.2 0 0 +4431600.0 16 16 100 98536 0 0 329 0 0 0 0 0 0 0 290 3.6 0 0 500 2000 0 999999999 47 0 0 88 0.2 0 0 +4435200.0 16 14 88 98536 159 711 347 50 85 40 5493 0 4439 1309 300 3.6 5 5 700 2000 0 999999999 39 0 0 88 0.2 0 0 +4438800.0 16.2 14.5 90 98883 452 1398 369 134 26 125 14829 1410 13949 4511 290 2.6 9 9 1000 2400 0 999999999 41 0 0 88 0.2 0 0 +4442400.0 17 15 88 98546 706 1398 352 441 478 200 49703 33943 22617 7977 280 5.1 5 5 1600 3048 0 999999999 43 0 0 88 0.2 0 0 +4446000.0 19 14 73 98564 903 1398 361 606 664 176 71295 44039 20832 8260 280 4.6 5 5 2100 3048 0 999999999 38 0 0 88 0.2 0 0 +4449600.0 20.6 14.5 68 99032 1031 1398 349 765 863 128 93972 50915 15800 6612 270 3.1 0 0 2000 3048 0 999999999 40 0 0 88 0.2 0 0 +4453200.0 24 13 50 98610 1079 1398 364 811 797 195 97279 53640 23491 9620 300 6.2 0 0 2500 2000 0 999999999 34 0 0 88 0.2 0 0 +4456800.0 25 10 39 98619 1045 1398 365 785 795 190 94001 54906 22817 9300 300 6.7 0 0 2800 2000 0 999999999 25 0 0 88 0.2 0 0 +4460400.0 25.8 10.9 39 98748 932 1398 370 680 785 157 81300 51580 18804 7597 320 4.1 0 0 4000 2000 0 999999999 28 0 0 88 0.2 0 0 +4464000.0 25 9 36 98619 746 1398 364 515 786 95 62169 45610 11484 4535 300 5.1 0 0 4500 2000 0 999999999 23 0 0 88 0.2 0 0 +4467600.0 25 7 32 98619 501 1398 361 303 525 115 34419 30301 13076 4484 300 4.1 0 0 6000 2000 0 999999999 19 0 0 88 0.2 0 0 +4471200.0 24.2 8.6 37 98588 214 1398 359 86 217 53 9546 2318 5888 1773 320 3.1 0 0 4000 2000 0 999999999 22 0 0 88 0.2 0 0 +4474800.0 22 9 43 98592 0 962 349 0 0 0 0 0 0 0 300 4.6 0 0 6000 2000 0 999999999 23 0 0 88 0.2 0 0 +4478400.0 19 9 52 98564 0 0 335 0 0 0 0 0 0 0 270 3.6 0 0 3500 2000 0 999999999 23 0 0 88 0.2 0 0 +4482000.0 17.8 9.9 60 98743 0 0 331 0 0 0 0 0 0 0 290 1.5 0 0 2000 2000 0 999999999 26 0 0 88 0.2 0 0 +4485600.0 17 10 63 98546 0 0 327 0 0 0 0 0 0 0 280 3.1 0 0 2500 2000 0 999999999 26 0 0 88 0.2 0 0 +4489200.0 16 10 68 98536 0 0 323 0 0 0 0 0 0 0 280 3.6 0 0 2500 2000 0 999999999 26 0 0 88 0.2 0 0 +4492800.0 17 8.4 57 98823 0 0 326 0 0 0 0 0 0 0 270 3.6 0 0 1000 2000 0 999999999 22 0 0 88 0.2 0 0 +4496400.0 15 9 67 98527 0 0 317 0 0 0 0 0 0 0 280 3.6 0 0 1500 2000 0 999999999 23 0 0 88 0.2 0 0 +4500000.0 14 10 77 98517 0 0 314 0 0 0 0 0 0 0 270 3.1 0 0 800 2000 0 999999999 26 0 0 88 0.2 0 0 +4503600.0 13.6 10.5 82 98751 0 0 313 0 0 0 0 0 0 0 270 3.1 0 0 500 2000 0 999999999 27 0 0 88 0.2 0 0 +4507200.0 11 9 87 98488 0 0 300 0 0 0 0 0 0 0 260 2.6 0 0 700 2000 0 999999999 24 0 0 88 0.2 0 0 +4510800.0 11 9 87 98488 0 0 300 0 0 0 0 0 0 0 270 3.1 0 0 700 2000 0 999999999 24 0 0 88 0.2 0 0 +4514400.0 12.6 9.5 81 98645 0 0 307 0 0 0 0 0 0 0 270 2.6 0 0 500 2000 9 999999999 25 0 0 88 0.2 0 0 +4518000.0 11 9 87 98488 0 0 300 0 0 0 0 0 0 0 260 3.1 0 0 600 2000 9 999999999 24 0 0 88 0.2 0 0 +4521600.0 11 9 87 98488 164 733 300 57 97 45 6202 0 4974 1429 260 3.1 0 0 500 2000 9 999999999 24 0 0 88 0.2 0 0 +4525200.0 13.4 9.5 77 98827 457 1397 311 265 526 93 30273 25824 10627 3669 79 0 0 0 500 2000 9 999999999 25 0 0 88 0.2 0 0 +4528800.0 16 10 68 98536 711 1397 323 483 767 92 58043 43334 11083 4336 280 3.1 0 0 1400 2000 9 999999999 26 0 0 88 0.2 0 0 +4532400.0 20 10 53 98574 909 1397 341 660 858 102 81270 50801 12545 5163 280 3.1 0 0 2000 2000 9 999999999 26 0 0 88 0.2 0 0 +4536000.0 22.8 10.5 46 98945 1036 1397 355 775 794 186 92856 54352 22381 9126 270 3.1 0 0 2000 2000 9 999999999 27 0 0 88 0.2 0 0 +4539600.0 25 10 39 98619 1084 1397 365 820 798 200 98359 55648 24157 9857 280 4.1 0 0 2800 2000 9 999999999 25 0 0 88 0.2 0 0 +4543200.0 25 10 39 98619 1050 1397 365 789 795 191 94548 54967 22970 9366 310 4.1 0 0 3200 2000 9 999999999 25 0 0 88 0.2 0 0 +4546800.0 26.8 6.7 28 98776 936 1397 370 689 785 163 82358 53962 19514 7854 320 4.1 0 0 2000 2000 9 999999999 18 0 0 88 0.2 0 0 +4550400.0 27 7 28 98637 751 1397 371 521 787 97 62831 46809 11751 4637 280 4.1 0 0 3200 2000 9 999999999 19 0 0 88 0.2 0 0 +4554000.0 28 8 28 98646 505 1397 377 306 521 117 34684 30193 13338 4572 300 4.1 0 0 3500 2000 9 999999999 21 0 0 88 0.2 0 0 +4557600.0 24.6 10.6 41 98669 218 1397 364 88 219 54 9748 2336 5994 1809 270 4.1 0 0 2000 2000 9 999999999 27 0 0 88 0.2 0 0 +4561200.0 24 9 38 98610 0 978 359 0 0 0 0 0 0 0 270 3.6 0 0 3500 2000 9 999999999 23 0 0 88 0.2 0 0 +4564800.0 21 11 53 98583 0 0 347 0 0 0 0 0 0 0 270 3.6 0 0 3100 2000 9 999999999 28 0 0 88 0.2 0 0 +4568400.0 21.2 11.1 52 98726 0 0 348 0 0 0 0 0 0 0 270 2.1 0 0 2000 2000 9 999999999 29 0 0 88 0.2 0 0 +4572000.0 19 10 56 98564 0 0 336 0 0 0 0 0 0 0 260 2.1 0 0 2500 2000 9 999999999 26 0 0 88 0.2 0 0 +4575600.0 18 10 59 98555 0 0 332 0 0 0 0 0 0 0 270 2.1 0 0 2100 2000 9 999999999 26 0 0 88 0.2 0 0 +4579200.0 18.6 10.4 59 98789 0 0 335 0 0 0 0 0 0 0 270 1.5 0 0 2000 2000 9 999999999 27 0 0 88 0.2 0 0 +4582800.0 18 10 59 98555 0 0 332 0 0 0 0 0 0 0 260 2.1 0 0 2100 2000 9 999999999 26 0 0 88 0.2 0 0 +4586400.0 16 10 68 98536 0 0 323 0 0 0 0 0 0 0 230 2.1 0 0 2100 2000 9 999999999 26 0 0 88 0.2 0 0 +4590000.0 15.8 10.5 71 98636 0 0 322 0 0 0 0 0 0 0 270 1.5 0 0 1000 2000 9 999999999 27 0 0 88 0.2 0 0 +4593600.0 14 8 67 98517 0 0 330 0 0 0 0 0 0 0 260 2.1 5 5 1800 2000 9 999999999 21 0 0 88 0.2 0 0 +4597200.0 14 8 67 98517 0 0 312 0 0 0 0 0 0 0 260 2.1 0 0 1800 2000 9 999999999 21 0 0 88 0.2 0 0 +4600800.0 13.4 8.6 73 98584 0 0 310 0 0 0 0 0 0 0 73 0 0 0 1000 2000 9 999999999 23 0 0 88 0.2 0 0 +4604400.0 13 8 72 98507 0 0 308 0 0 0 0 0 0 0 270 1.5 0 0 2200 2000 9 999999999 21 0 0 88 0.2 0 0 +4608000.0 12 7 71 98498 169 755 302 60 103 47 6514 58 5160 1481 280 2.1 0 0 2500 2000 9 999999999 19 0 0 88 0.2 0 0 +4611600.0 13.8 6.3 61 98744 463 1396 309 271 487 109 30580 26891 12379 4160 270 2.1 0 0 1000 2000 9 999999999 18 0 0 88 0.2 0 0 +4615200.0 19 7 46 98564 717 1396 333 490 768 95 58874 45121 11460 4477 280 4.1 0 0 4000 2000 9 999999999 19 0 0 88 0.2 0 0 +4618800.0 21 7 40 98583 914 1396 342 668 848 112 81808 52792 13821 5667 270 4.1 0 0 4000 2000 9 999999999 19 0 0 88 0.2 0 0 +4622400.0 24.8 6.5 31 98846 1041 1396 360 785 794 192 94039 56605 23169 9409 270 2.1 0 0 4000 2000 9 999999999 18 0 0 88 0.2 0 0 +4626000.0 27 6 26 98637 1089 1396 370 830 798 207 99561 57838 24972 10146 290 3.6 0 0 4000 2000 9 999999999 17 0 0 88 0.2 0 0 +4629600.0 27 5 24 98637 1055 1396 369 800 795 198 95840 57612 23903 9697 300 5.1 0 0 4000 2000 9 999999999 15 0 0 88 0.2 0 0 +4633200.0 28 5.2 23 98495 941 1396 374 695 785 165 83052 54748 19856 7985 270 3.6 0 0 4000 2000 9 999999999 16 0 0 88 0.2 0 0 +4636800.0 29 2 18 98654 755 1396 375 529 789 102 63738 49109 12294 4839 280 5.7 0 0 8000 2000 9 999999999 11 0 0 88 0.2 0 0 +4640400.0 28 3 20 98646 510 1396 371 312 526 120 35384 31983 13633 4661 280 5.7 0 0 8000 2000 9 999999999 13 0 0 88 0.2 0 0 +4644000.0 27.2 6.8 27 98332 221 1396 372 91 228 55 10076 3124 6088 1839 270 4.1 0 0 4000 2000 9 999999999 18 0 0 88 0.2 0 0 +4647600.0 26 5 26 98628 0 994 364 0 0 0 0 0 0 0 320 3.6 0 0 6000 2000 9 999999999 15 0 0 88 0.2 0 0 +4651200.0 21 7 40 98583 0 0 342 0 0 0 0 0 0 0 250 2.1 0 0 3500 2000 9 999999999 19 0 0 88 0.2 0 0 +4654800.0 19.8 11.1 57 98460 0 0 341 0 0 0 0 0 0 0 277 0 0 0 2000 2000 9 999999999 29 0 0 88 0.2 0 0 +4658400.0 20 8 46 98574 0 0 339 0 0 0 0 0 0 0 153 0 0 0 3000 2000 9 999999999 21 0 0 88 0.2 0 0 +4662000.0 18 8 52 98555 0 0 330 0 0 0 0 0 0 0 354 0 0 0 2200 2000 9 999999999 21 0 0 88 0.2 0 0 +4665600.0 17 10.2 64 98541 0 0 328 0 0 0 0 0 0 0 169 0 0 0 2000 2000 9 999999999 26 0 0 88 0.2 0 0 +4669200.0 14 9 72 98517 0 0 313 0 0 0 0 0 0 0 190 0 0 0 1800 2000 9 999999999 23 0 0 88 0.2 0 0 +4672800.0 14 9 72 98517 0 0 313 0 0 0 0 0 0 0 278 0 0 0 1500 2000 9 999999999 23 0 0 88 0.2 0 0 +4676400.0 14.4 9.4 72 98438 0 0 315 0 0 0 0 0 0 0 277 0 0 0 1000 2000 9 999999999 24 0 0 88 0.2 0 0 +4680000.0 14 9 72 98517 0 0 313 0 0 0 0 0 0 0 160 0 0 0 1500 2000 9 999999999 23 0 0 88 0.2 0 0 +4683600.0 14 9 72 98517 0 0 313 0 0 0 0 0 0 0 72 0 0 0 1500 2000 9 999999999 23 0 0 88 0.2 0 0 +4687200.0 12.2 8.6 79 98485 0 0 305 0 0 0 0 0 0 0 45 0 0 0 1000 2000 9 999999999 23 0 0 88 0.2 0 0 +4690800.0 12 9 82 98498 0 0 304 0 0 0 0 0 0 0 209 0 0 0 1500 2000 9 999999999 24 0 0 88 0.2 0 0 +4694400.0 12 9 82 98498 174 777 304 62 107 49 6783 159 5333 1533 348 0 0 0 1500 2000 9 999999999 24 0 0 88 0.2 0 0 +4698000.0 13 9.5 79 98687 468 1396 309 273 533 95 31215 26665 10845 3762 13 0 0 0 2000 2000 9 999999999 25 0 0 88 0.2 0 0 +4701600.0 20 5 37 98574 722 1396 335 496 771 97 59641 46241 11664 4558 330 1.5 0 0 2500 2000 9 999999999 16 0 0 88 0.2 0 0 +4705200.0 23 9 41 98601 919 1396 354 670 782 155 80157 52178 18562 7478 130 1.5 0 0 2500 2000 9 999999999 23 0 0 88 0.2 0 0 +4708800.0 26.6 8.6 32 98774 1046 1396 371 787 794 191 94322 55600 23023 9374 140 2.1 0 0 2000 2000 9 999999999 22 0 0 88 0.2 0 0 +4712400.0 27 8 30 98637 1094 1396 372 832 798 206 99828 56888 24818 10106 140 2.1 0 0 3200 2000 9 999999999 21 0 0 88 0.2 0 0 +4716000.0 28 8 28 98646 1060 1396 377 800 795 196 95954 56213 23604 9609 296 1.5 0 0 3500 2000 9 999999999 21 0 0 88 0.2 0 0 +4719600.0 30.8 7.3 23 98460 946 1396 391 697 785 164 83301 53849 19723 7955 270 1.5 0 0 2000 2000 9 999999999 19 0 0 88 0.2 0 0 +4723200.0 31 1 15 98672 759 1396 383 533 790 103 64286 49633 12473 4911 250 2.6 0 0 3500 2000 9 999999999 10 0 0 88 0.2 0 0 +4726800.0 31 3 17 98672 514 1396 386 315 528 120 35761 32275 13728 4702 250 2.6 0 0 3500 2000 9 999999999 13 0 0 88 0.2 0 0 +4730400.0 28.2 10.1 32 98428 225 1396 381 93 228 56 10247 2979 6196 1877 134 0 0 0 2000 2000 9 999999999 26 0 0 88 0.2 0 0 +4734000.0 27 6 26 98637 0 1010 370 0 0 0 0 0 0 0 40 1.5 0 0 3500 2000 9 999999999 17 0 0 88 0.2 0 0 +4737600.0 24 10 41 98610 0 0 360 0 0 0 0 0 0 0 160 2.1 0 0 3000 2000 9 999999999 26 0 0 88 0.2 0 0 +4741200.0 21.6 11.6 53 98564 0 0 350 0 0 0 0 0 0 0 140 2.1 0 0 2000 2000 9 999999999 30 0 0 88 0.2 0 0 +4744800.0 22 9 43 98592 0 0 349 0 0 0 0 0 0 0 120 2.1 0 0 2500 2000 9 999999999 23 0 0 88 0.2 0 0 +4748400.0 20 10 53 98574 0 0 341 0 0 0 0 0 0 0 110 2.6 0 0 2500 2000 9 999999999 26 0 0 88 0.2 0 0 +4752000.0 18 11.8 67 98667 0 0 334 0 0 0 0 0 0 0 170 0 0 0 2000 2000 9 999999999 31 0 0 88 0.2 0 0 +4755600.0 19 11 60 98564 0 0 338 0 0 0 0 0 0 0 120 2.1 0 0 2200 2000 9 999999999 28 0 0 88 0.2 0 0 +4759200.0 17 10 63 98546 0 0 327 0 0 0 0 0 0 0 130 2.1 0 0 2200 2000 9 999999999 26 0 0 88 0.2 0 0 +4762800.0 16.6 10.6 68 98673 0 0 326 0 0 0 0 0 0 0 140 2.1 0 0 2000 2000 9 999999999 27 0 0 88 0.2 0 0 +4766400.0 14 8 67 98517 0 0 312 0 0 0 0 0 0 0 120 2.1 0 0 2200 2000 9 999999999 21 0 0 88 0.2 0 0 +4770000.0 14 9 72 98517 0 0 313 0 0 0 0 0 0 0 264 0 0 0 2200 2000 9 999999999 23 0 0 88 0.2 0 0 +4773600.0 14.8 9.8 72 98695 0 0 317 0 0 0 0 0 0 0 275 0 0 0 2000 2000 9 999999999 25 0 0 88 0.2 0 0 +4777200.0 12 9 82 98498 0 0 304 0 0 0 0 0 0 0 100 2.1 0 0 2100 2000 9 999999999 24 0 0 88 0.2 0 0 +4780800.0 12 9 82 98498 180 799 304 65 114 50 7109 393 5521 1588 100 2.6 0 0 1800 2000 9 999999999 24 0 0 88 0.2 0 0 +4784400.0 16.2 10.2 68 98922 473 1395 338 274 516 99 31205 26290 11289 3906 229 0 3 3 2000 2000 9 999999999 26 0 0 88 0.2 0 0 +4788000.0 23 9 41 98601 727 1395 369 491 709 121 58003 44033 14385 5546 150 2.1 3 3 2500 2000 9 999999999 23 0 0 88 0.2 0 0 +4791600.0 25 8 34 98619 925 1395 362 677 848 114 82891 52529 14001 5755 120 3.1 0 0 2100 2000 9 999999999 21 0 0 88 0.2 0 0 +4795200.0 27 8 30 98637 1051 1395 372 793 794 193 95016 56011 23309 9487 140 4.6 0 0 2500 2000 9 999999999 21 0 0 88 0.2 0 0 +4798800.0 28 7 26 98646 1099 1395 376 838 798 209 100576 57478 25172 10238 140 3.6 0 0 2800 2000 9 999999999 19 0 0 88 0.2 0 0 +4802400.0 29 6 23 98654 1065 1395 380 807 795 200 96812 57291 24097 9790 120 3.6 0 0 3000 2000 9 999999999 17 0 0 88 0.2 0 0 +4806000.0 30 10.9 31 98775 950 1395 391 697 785 161 83336 51955 19385 7855 90 1.5 0 0 2000 2000 9 999999999 28 0 0 88 0.2 0 0 +4809600.0 30 6 22 98663 764 1395 385 533 791 100 64358 47785 12062 4773 150 3.1 0 0 5000 2000 9 999999999 17 0 0 88 0.2 0 0 +4813200.0 30 6 22 98663 518 1395 385 317 534 119 36014 31813 13522 4666 180 2.1 0 0 5000 2000 9 999999999 17 0 0 88 0.2 0 0 +4816800.0 26.2 11 39 98703 229 1395 388 94 216 58 10340 3087 6447 1944 90 2.6 3 3 4000 2000 9 999999999 28 0 0 88 0.2 0 0 +4820400.0 25 9 36 98619 0 1025 364 0 0 0 0 0 0 0 110 2.6 0 0 3500 2000 9 999999999 23 0 0 88 0.2 0 0 +4824000.0 22 9 43 98592 0 0 364 0 0 0 0 0 0 0 120 2.6 3 3 3500 2000 9 999999999 23 0 0 88 0.2 0 0 +4827600.0 21.2 11.5 54 98862 0 0 348 0 0 0 0 0 0 0 357 0 0 0 2000 2000 9 999999999 30 0 0 88 0.2 0 0 +4831200.0 20 10 53 98574 0 0 341 0 0 0 0 0 0 0 110 2.6 0 0 3500 2000 9 999999999 26 0 0 88 0.2 0 0 +4834800.0 20 10 53 98574 0 0 361 0 0 0 0 0 0 0 110 2.6 5 5 3000 2000 9 999999999 26 0 0 88 0.2 0 0 +4838400.0 18.6 12.1 66 98955 0 0 357 0 0 0 0 0 0 0 35 0 5 5 2000 2000 9 999999999 32 0 0 88 0.2 0 0 +4842000.0 18 10 59 98555 0 0 352 0 0 0 0 0 0 0 100 2.6 5 5 2500 2000 9 999999999 26 0 0 88 0.2 0 0 +4845600.0 17 10 63 98546 0 0 347 0 0 0 0 0 0 0 110 2.6 5 5 2500 2000 9 999999999 26 0 0 88 0.2 0 0 +4849200.0 17.2 12.5 74 98980 0 0 351 0 0 0 0 0 0 0 90 2.1 5 5 2000 2000 9 999999999 33 0 0 88 0.2 0 0 +4852800.0 17 10 63 98546 0 0 341 0 0 0 0 0 0 0 100 2.1 3 3 2500 2000 9 999999999 26 0 0 88 0.2 0 0 +4856400.0 17 10 63 98546 0 0 341 0 0 0 0 0 0 0 100 2.1 3 3 2500 2000 9 999999999 26 0 0 88 0.2 0 0 +4860000.0 15.6 11.5 77 99004 0 0 337 0 0 0 0 0 0 0 110 1.5 3 3 2000 2000 9 999999999 30 0 0 88 0.2 0 0 +4863600.0 15 10 72 98527 0 0 337 0 0 0 0 0 0 0 100 2.1 5 5 2200 2000 9 999999999 26 0 0 88 0.2 0 0 +4867200.0 15 10 72 98527 185 822 337 63 89 51 6900 386 5633 1629 110 2.1 5 5 2000 3048 9 999999999 26 0 0 88 0.2 0 0 +4870800.0 18.4 12.3 68 99274 479 1394 356 261 408 121 29263 22573 13623 4553 162 0 5 5 2000 3048 9 999999999 33 0 0 88 0.2 0 0 +4874400.0 22 10 46 98592 733 1394 371 467 593 155 54078 39723 17996 6761 110 2.1 5 5 2700 3048 9 999999999 26 0 0 88 0.2 0 0 +4878000.0 26 10 37 98628 930 1394 386 670 782 148 80491 50999 17893 7259 110 4.6 3 3 3000 3048 9 999999999 25 0 0 88 0.2 0 0 +4881600.0 28.2 10.6 33 99324 1057 1394 398 784 863 129 96796 53263 16029 6715 90 1.5 3 3 2000 3048 9 999999999 27 0 0 88 0.2 0 0 +4885200.0 28 8 28 98646 1104 1394 394 830 876 136 102964 55718 16898 7086 100 2.6 3 3 4000 3048 9 999999999 21 0 0 88 0.2 0 0 +4888800.0 29 6 23 98654 1069 1394 396 801 795 191 96493 56422 23086 9431 140 2.6 3 3 4000 3048 9 999999999 17 0 0 88 0.2 0 0 +4892400.0 30.2 10.7 30 99059 955 1394 409 692 841 115 84950 50904 14230 5891 90 1 3 3 4000 3048 9 999999999 27 0 0 88 0.2 0 0 +4896000.0 29 4 20 98654 768 1394 393 531 766 109 63830 48081 13113 5166 247 1 3 3 4000 3048 9 999999999 14 0 0 88 0.2 0 0 +4899600.0 29 5 22 98654 522 1394 378 321 535 120 36429 32362 13716 4733 360 1.5 0 0 4000 3048 9 999999999 15 0 0 88 0.2 0 0 +4903200.0 27 10.8 36 98943 233 1394 376 97 237 58 10745 3466 6386 1943 288 0 0 0 2000 3048 9 999999999 28 0 0 88 0.2 0 0 +4906800.0 26 8 32 98628 0 1041 367 0 0 0 0 0 0 0 40 2.1 0 0 3000 2000 9 999999999 21 0 0 88 0.2 0 0 +4910400.0 25 9 36 98619 0 0 364 0 0 0 0 0 0 0 40 2.1 0 0 3000 2000 9 999999999 23 0 0 88 0.2 0 0 +4914000.0 21.4 13.4 60 99000 0 0 351 0 0 0 0 0 0 0 231 0 0 0 2000 2000 9 999999999 36 0 0 88 0.2 0 0 +4917600.0 23 12 50 98601 0 0 358 0 0 0 0 0 0 0 80 2.1 0 0 2200 2000 9 999999999 31 0 0 88 0.2 0 0 +4921200.0 22 11 50 98592 0 0 352 0 0 0 0 0 0 0 90 1.5 0 0 2200 2000 9 999999999 28 0 0 88 0.2 0 0 +4924800.0 19.2 12.8 66 99057 0 0 340 0 0 0 0 0 0 0 66 0 0 0 2000 2000 9 999999999 34 0 0 88 0.2 0 0 +4928400.0 20 11 56 98574 0 0 342 0 0 0 0 0 0 0 80 1.5 0 0 2100 2000 9 999999999 28 0 0 88 0.2 0 0 +4932000.0 19 12 64 98564 0 0 339 0 0 0 0 0 0 0 315 0 0 0 2100 2000 9 999999999 31 0 0 88 0.2 0 0 +4935600.0 18 12.6 71 98978 0 0 335 0 0 0 0 0 0 0 141 0 0 0 1000 2000 9 999999999 34 0 0 88 0.2 0 0 +4939200.0 18 12 68 98555 0 0 334 0 0 0 0 0 0 0 111 0 0 0 1800 2000 9 999999999 31 0 0 88 0.2 0 0 +4942800.0 17 12 72 98546 0 0 329 0 0 0 0 0 0 0 290 0 0 0 1500 2000 9 999999999 32 0 0 88 0.2 0 0 +4946400.0 15.2 12.7 85 99059 0 0 322 0 0 0 0 0 0 0 108 0 0 0 1000 2000 9 999999999 34 0 0 88 0.2 0 0 +4950000.0 17 12 72 98546 0 0 329 0 0 0 0 0 0 0 153 0 0 0 1000 2000 9 999999999 32 0 0 88 0.2 0 0 +4953600.0 18 14 77 98555 190 845 336 70 157 49 7720 156 5381 1599 70 1.5 0 0 1000 2000 9 999999999 38 0 0 88 0.2 0 0 +4957200.0 16.2 12.6 79 99302 484 1394 326 285 509 108 32236 26503 12226 4208 28 0 0 0 1000 2000 9 999999999 34 0 0 88 0.2 0 0 +4960800.0 22 11 50 98592 738 1394 352 505 775 94 60876 43878 11346 4478 60 2.1 0 0 2000 2000 9 999999999 28 0 0 88 0.2 0 0 +4964400.0 25 11 41 98619 935 1394 366 682 859 106 84115 50782 13052 5400 130 2.1 0 0 2700 2000 9 999999999 28 0 0 88 0.2 0 0 +4968000.0 28.6 14.4 42 99318 1062 1394 388 793 794 188 95142 52063 22610 9281 160 3.1 0 0 2000 2000 9 999999999 40 0 0 88 0.2 0 0 +4971600.0 28 10 32 98646 1109 1394 380 843 798 207 101232 55940 25007 10205 140 3.1 0 0 3500 2000 9 999999999 25 0 0 88 0.2 0 0 +4975200.0 28 10 32 98646 1074 1394 380 811 795 197 97275 55276 23769 9704 150 2.6 0 0 3500 2000 9 999999999 25 0 0 88 0.2 0 0 +4978800.0 29.8 15.6 42 99095 959 1394 396 699 863 104 75939 89673 14518 2371 180 2.1 0 0 2000 2000 9 999999999 44 0 0 88 0.2 0 0 +4982400.0 28 8 28 98646 772 1394 377 538 791 99 65052 47085 12044 4784 160 3.1 0 0 3500 2000 9 999999999 21 0 0 88 0.2 0 0 +4986000.0 29 7 25 98654 526 1394 381 322 538 120 36671 32022 13643 4731 170 2.6 0 0 3500 2000 9 999999999 19 0 0 88 0.2 0 0 +4989600.0 27.4 9.9 33 98957 236 1394 377 99 242 58 11008 3898 6480 1975 312 0 0 0 2000 2000 9 999999999 25 0 0 88 0.2 0 0 +4993200.0 27 9 32 98637 0 1056 374 0 0 0 0 0 0 0 180 2.1 0 0 2500 2000 9 999999999 23 0 0 88 0.2 0 0 +4996800.0 24 9 38 98610 0 0 359 0 0 0 0 0 0 0 16 0 0 0 1800 2000 9 999999999 23 0 0 88 0.2 0 0 +5000400.0 21.2 11.1 52 99095 0 0 348 0 0 0 0 0 0 0 325 0 0 0 2000 2000 9 999999999 29 0 0 88 0.2 0 0 +5004000.0 20 10 53 98574 0 0 341 0 0 0 0 0 0 0 110 1.5 0 0 2200 2000 9 999999999 26 0 0 88 0.2 0 0 +5007600.0 20 10 53 98574 0 0 341 0 0 0 0 0 0 0 110 1.5 0 0 2200 2000 9 999999999 26 0 0 88 0.2 0 0 +5011200.0 17.8 12 69 99103 0 0 333 0 0 0 0 0 0 0 10 0 0 0 2000 2000 9 999999999 32 0 0 88 0.2 0 0 +5014800.0 18 11 64 98555 0 0 333 0 0 0 0 0 0 0 28 0 0 0 2200 2000 9 999999999 28 0 0 88 0.2 0 0 +5018400.0 17 12 72 98546 0 0 329 0 0 0 0 0 0 0 241 0 0 0 2000 2000 9 999999999 32 0 0 88 0.2 0 0 +5022000.0 16.6 12.3 76 99014 0 0 328 0 0 0 0 0 0 0 31 0 0 0 1000 2000 9 999999999 33 0 0 88 0.2 0 0 +5025600.0 16 12 77 98536 0 0 325 0 0 0 0 0 0 0 251 0 0 0 1100 2000 9 999999999 32 0 0 88 0.2 0 0 +5029200.0 16 12 77 98536 0 0 325 0 0 0 0 0 0 0 103 0 0 0 1100 2000 9 999999999 32 0 0 88 0.2 0 0 +5032800.0 15.6 12.7 83 99023 0 0 324 0 0 0 0 0 0 0 197 0 0 0 1000 2000 9 999999999 34 0 0 88 0.2 0 0 +5036400.0 15 12 82 98527 0 0 320 0 0 0 0 0 0 0 77 0 0 0 1000 2000 9 999999999 32 0 0 88 0.2 0 0 +5040000.0 17 13 77 98546 196 868 331 73 165 50 8067 574 5539 1648 29 0 0 0 1000 2000 9 999999999 35 0 0 88 0.2 0 0 +5043600.0 17.6 13 74 98439 490 1393 333 289 511 109 32696 26725 12372 4268 327 0 0 0 2000 2000 9 999999999 35 0 0 88 0.2 0 0 +5047200.0 22 12 53 98592 744 1393 353 509 777 93 61372 43460 11303 4473 340 0 0 0 1600 2000 9 999999999 31 0 0 88 0.2 0 0 +5050800.0 25 13 47 98619 941 1393 369 685 853 108 84237 49549 13324 5522 150 2.1 0 0 2200 2000 9 999999999 34 0 0 88 0.2 0 0 +5054400.0 28.2 14.7 44 99353 1067 1393 387 797 794 188 95665 51892 22720 9332 140 2.6 0 0 2000 2000 9 999999999 41 0 0 88 0.2 0 0 +5058000.0 27 13 42 98637 1114 1393 378 843 798 204 101270 54038 24650 10097 160 4.1 0 0 2800 2000 9 999999999 34 0 0 88 0.2 0 0 +5061600.0 28 13 40 98646 1079 1393 384 811 795 194 97303 53388 23423 9601 130 3.6 0 0 3000 2000 9 999999999 34 0 0 88 0.2 0 0 +5065200.0 30.6 14.1 37 99131 964 1393 416 696 822 126 84788 48856 15428 6388 140 1.5 3 3 2000 2000 9 999999999 38 0 0 88 0.2 0 0 +5068800.0 29 14 40 98654 776 1393 407 529 767 101 63709 42952 12252 4884 150 3.6 3 3 3000 2000 9 999999999 38 0 0 88 0.2 0 0 +5072400.0 28 15 45 98646 529 1393 403 317 519 119 35894 28266 13567 4742 140 3.1 3 3 3000 2000 9 999999999 42 0 0 88 0.2 0 0 +5076000.0 27.2 14.6 46 99013 240 1393 398 100 222 61 10953 3268 6761 2053 140 1.5 3 3 2000 2000 9 999999999 40 0 0 88 0.2 0 0 +5079600.0 24 15.3 58 98733 0 1071 392 0 0 0 0 0 0 0 163 1.4 3 3 3000 2000 9 999999999 43 0 0 88 0.2 0 0 +5083200.0 23 15.6 63 98724 0 0 372 0 0 0 0 0 0 0 158 1.3 0 0 2500 2000 9 999999999 45 0 0 88 0.2 0 0 +5086800.0 21.7 14.9 65 98862 0 0 357 0 0 0 0 0 0 0 152 0.8 0 0 2000 2000 9 999999999 42 0 0 88 0.2 0 0 +5090400.0 20.1 12.6 62 98724 0 0 361 0 0 0 0 0 0 0 88 1 0 0 2100 2000 9 999999999 33 0 0 88 0.2 0 0 +5094000.0 18.4 10.1 58 98708 0 0 357 0 0 0 0 0 0 0 72 0.6 0 0 2100 2000 9 999999999 26 0 0 88 0.2 0 0 +5097600.0 16.6 7.1 53 98692 0 0 343 0 0 0 0 0 0 0 124 0.5 0 0 2000 2000 9 999999999 19 0 0 88 0.2 0 0 +5101200.0 15.5 4.5 48 98532 0 0 318 0 0 0 0 0 0 0 138 0.9 0 0 2500 2000 9 999999999 15 0 0 88 0.2 0 0 +5104800.0 15.2 3.5 45 98529 0 0 317 0 0 0 0 0 0 0 198 1.1 0 0 2500 2000 9 999999999 14 0 0 88 0.2 0 0 +5108400.0 14.8 2.5 44 98525 0 0 312 0 0 0 0 0 0 0 265 1.7 0 0 2500 2000 9 999999999 12 0 0 88 0.2 0 0 +5112000.0 14.5 2 43 98522 0 0 317 0 0 0 0 0 0 0 262 1.8 1 1 2500 2000 9 999999999 12 0 0 88 0.2 0 0 +5115600.0 14.8 1.8 41 98524 0 0 310 0 0 0 0 0 0 0 305 1.9 0 0 2500 2000 9 999999999 11 0 0 88 0.2 0 0 +5119200.0 15.8 1.8 39 98534 0 0 304 0 0 0 0 0 0 0 302 2.3 0 0 2200 2000 9 999999999 11 0 0 88 0.2 0 0 +5122800.0 14 2 44 98517 0 0 306 0 0 0 0 0 0 0 300 1.5 0 0 2000 2000 9 999999999 12 0 0 88 0.2 0 0 +5126400.0 16 2 39 98536 201 892 314 78 188 51 8607 1920 5612 1674 300 2.1 0 0 2000 2000 9 999999999 12 0 0 88 0.2 0 0 +5130000.0 19 2 32 98564 495 1392 327 298 502 120 33772 30511 13591 4598 300 3.6 0 0 2200 2000 9 999999999 12 0 0 88 0.2 0 0 +5133600.0 21 2 28 98583 749 1392 336 522 779 102 62855 48558 12371 4861 320 3.6 0 0 2500 2000 9 999999999 12 0 0 88 0.2 0 0 +5137200.0 22 2 27 98592 946 1392 341 702 783 169 83936 55913 20312 8160 300 4.1 0 0 3000 2000 9 999999999 12 0 0 88 0.2 0 0 +5140800.0 25 2 22 98619 1072 1392 355 819 794 206 98198 58947 24882 10077 300 6.2 0 0 3500 2000 9 999999999 11 0 0 88 0.2 0 0 +5144400.0 25 3 24 98619 1119 1392 356 861 798 219 103436 59458 26455 10714 340 4.6 0 0 3500 2000 9 999999999 13 0 0 88 0.2 0 0 +5148000.0 26 2 21 98628 1084 1392 360 829 795 210 99507 59180 25305 10249 300 5.1 0 0 3500 2000 9 999999999 11 0 0 88 0.2 0 0 +5151600.0 26 2 21 98628 968 1392 360 722 786 176 86416 56528 21114 8501 330 6.7 0 0 4000 2000 9 999999999 11 0 0 88 0.2 0 0 +5155200.0 25 1 21 98619 780 1392 354 551 791 107 66509 50366 12984 5138 300 6.7 0 0 4500 2000 9 999999999 10 0 0 88 0.2 0 0 +5158800.0 25 1 21 98619 533 1392 354 332 538 125 37723 34145 14297 4933 300 7.7 0 0 4000 2000 9 999999999 10 0 0 88 0.2 0 0 +5162400.0 24 1 22 98610 244 1392 349 105 214 68 11572 5452 7482 2206 320 5.7 0 0 3500 2000 9 999999999 10 0 0 88 0.2 0 0 +5166000.0 21 3 30 98583 0 1086 338 0 0 0 0 0 0 0 290 4.1 0 0 3000 2000 9 999999999 13 0 0 88 0.2 0 0 +5169600.0 19 4 37 98564 0 0 330 0 0 0 0 0 0 0 260 2.1 0 0 2600 2000 9 999999999 14 0 0 88 0.2 0 0 +5173200.0 18 5 42 98555 0 0 326 0 0 0 0 0 0 0 240 1 0 0 2600 2000 9 999999999 16 0 0 88 0.2 0 0 +5176800.0 16 6 51 98536 0 0 318 0 0 0 0 0 0 0 296 0.5 0 0 2200 2000 9 999999999 17 0 0 88 0.2 0 0 +5180400.0 16 5 48 98536 0 0 317 0 0 0 0 0 0 0 172 0 0 0 1800 2000 9 999999999 16 0 0 88 0.2 0 0 +5184000.0 15 4 48 98527 0 0 312 0 0 0 0 0 0 0 220 1 0 0 1300 2000 9 999999999 14 0 0 88 0.2 0 0 +5187600.0 14 5 55 98517 0 0 309 0 0 0 0 0 0 0 220 1 0 0 1200 2000 9 999999999 16 0 0 88 0.2 0 0 +5191200.0 14 5 55 98517 0 0 309 0 0 0 0 0 0 0 230 1 0 0 1200 2000 9 999999999 16 0 0 88 0.2 0 0 +5194800.0 13 5 58 98507 0 0 304 0 0 0 0 0 0 0 312 0 0 0 1000 2000 9 999999999 16 0 0 88 0.2 0 0 +5198400.0 13 3 51 98507 0 0 302 0 0 0 0 0 0 0 260 1.5 0 0 700 2000 9 999999999 13 0 0 88 0.2 0 0 +5202000.0 12 3 54 98498 0 0 311 0 0 0 0 0 0 0 102 1.5 3 3 700 2000 9 999999999 13 0 0 88 0.2 0 0 +5205600.0 11 3 58 98488 0 0 294 0 0 0 0 0 0 0 187 1.5 0 0 700 2000 9 999999999 13 0 0 88 0.2 0 0 +5209200.0 11 1 50 98488 0 0 292 0 0 0 0 0 0 0 220 1.5 0 0 500 2000 9 999999999 11 0 0 88 0.2 0 0 +5212800.0 13 2 47 98507 207 915 311 81 194 52 8937 2302 5766 1724 317 2 2 2 850 2000 9 999999999 12 0 0 88 0.2 0 0 +5216400.0 15 3 44 98527 501 1392 311 302 506 120 34224 30687 13667 4642 270 2.6 0 0 1200 2000 9 999999999 13 0 0 88 0.2 0 0 +5220000.0 19 2 32 98564 755 1392 327 527 780 103 63431 48764 12497 4917 280 4.6 0 0 1500 2000 9 999999999 12 0 0 88 0.2 0 0 +5223600.0 22 2 27 98592 951 1392 341 707 784 170 84526 56014 20480 8234 300 5.1 0 0 2500 2000 9 999999999 12 0 0 88 0.2 0 0 +5227200.0 24 3 25 98610 1077 1392 352 822 794 206 98646 58611 24901 10097 280 6.2 0 0 2800 2000 9 999999999 13 0 0 88 0.2 0 0 +5230800.0 25 3 24 98619 1124 1392 372 854 798 209 103070 58564 25377 10332 290 6.7 3 3 4000 2000 9 999999999 13 0 0 88 0.2 0 0 +5234400.0 25 2 22 98619 1088 1392 370 823 795 200 99140 58292 24257 9880 330 5.1 3 3 4500 2000 9 999999999 11 0 0 88 0.2 0 0 +5238000.0 26 4 24 98628 972 1392 378 715 786 165 85903 54911 19946 8092 290 7.2 3 3 4500 2000 9 999999999 14 0 0 88 0.2 0 0 +5241600.0 26 2 21 98628 784 1392 375 547 767 114 65701 49363 13715 5417 320 5.7 3 3 4500 2000 9 999999999 11 0 0 88 0.2 0 0 +5245200.0 25 2 22 98619 537 1392 370 330 518 130 37429 33243 14765 5075 310 5.1 3 3 4500 2000 9 999999999 11 0 0 88 0.2 0 0 +5248800.0 24 4 27 98610 247 1392 368 105 243 62 11688 5428 6921 2103 330 4.1 3 3 4000 2000 9 999999999 14 0 0 88 0.2 0 0 +5252400.0 22 5.5 34 98592 0 1101 345 0 0 0 0 0 0 0 317 2.8 0 0 3400 2000 9 999999999 16 0 0 88 0.2 0 0 +5256000.0 20 7 43 98574 0 0 344 0 0 0 0 0 0 0 280 1.5 1 1 2800 2000 9 999999999 19 0 0 88 0.2 0 0 +5259600.0 18 7 49 98555 0 0 329 0 0 0 0 0 0 0 193 0 0 0 2500 2000 9 999999999 19 0 0 88 0.2 0 0 +5263200.0 18 6 45 98555 0 0 327 0 0 0 0 0 0 0 248 0 0 0 2200 2000 9 999999999 17 0 0 88 0.2 0 0 +5266800.0 17 6 48 98546 0 0 323 0 0 0 0 0 0 0 230 1 0 0 2000 2000 9 999999999 17 0 0 88 0.2 0 0 +5270400.0 16 7 55 98536 0 0 320 0 0 0 0 0 0 0 276 0 0 0 2000 2000 9 999999999 19 0 0 88 0.2 0 0 +5274000.0 15 5 51 98527 0 0 313 0 0 0 0 0 0 0 141 0 0 0 1500 2000 9 999999999 16 0 0 88 0.2 0 0 +5277600.0 14 4 51 98517 0 0 308 0 0 0 0 0 0 0 210 1 0 0 1100 2000 9 999999999 14 0 0 88 0.2 0 0 +5281200.0 13 5 58 98507 0 0 304 0 0 0 0 0 0 0 323 0 0 0 800 2000 9 999999999 16 0 0 88 0.2 0 0 +5284800.0 13 5 58 98507 0 0 304 0 0 0 0 0 0 0 248 0 0 0 700 2000 9 999999999 16 0 0 88 0.2 0 0 +5288400.0 12 2 50 98498 0 0 297 0 0 0 0 0 0 0 220 1.5 0 0 700 2000 9 999999999 12 0 0 88 0.2 0 0 +5292000.0 11 2 54 98488 0 0 293 0 0 0 0 0 0 0 250 1.5 0 0 700 2000 9 999999999 12 0 0 88 0.2 0 0 +5295600.0 11 1 50 98488 0 0 292 0 0 0 0 0 0 0 157 0 0 0 1000 2000 9 999999999 11 0 0 88 0.2 0 0 +5299200.0 13 5 58 98507 212 939 304 84 200 53 9269 2473 5915 1775 280 1 0 0 1500 2000 9 999999999 16 0 0 88 0.2 0 0 +5302800.0 16 4 45 98536 506 1391 316 306 509 121 34692 30865 13726 4681 300 2.1 0 0 2000 2000 9 999999999 14 0 0 88 0.2 0 0 +5306400.0 19 5 40 98564 760 1391 331 529 780 102 63752 47779 12359 4880 300 2.6 0 0 2000 2000 9 999999999 16 0 0 88 0.2 0 0 +5310000.0 23 3 27 98601 957 1391 347 710 841 131 86714 55684 16087 6607 300 3.1 0 0 2500 2000 9 999999999 13 0 0 88 0.2 0 0 +5313600.0 25 3 24 98619 1083 1391 356 827 794 208 99234 58670 25077 10170 310 4.1 0 0 3000 2000 9 999999999 13 0 0 88 0.2 0 0 +5317200.0 25 2 22 98619 1129 1391 355 871 798 223 104705 59936 26943 10897 290 5.1 0 0 3500 2000 9 999999999 11 0 0 88 0.2 0 0 +5320800.0 27 -1 16 98637 1093 1391 361 841 860 165 103049 60475 20268 8386 280 4.1 0 0 4500 2000 9 999999999 8 0 0 88 0.2 0 0 +5324400.0 27 0 17 98637 977 1391 384 682 625 243 79670 50353 28503 11009 300 3.6 5 5 5000 2000 9 999999999 9 0 0 88 0.2 0 0 +5328000.0 27 1 18 98637 788 1391 379 551 768 115 66210 49839 13904 5493 270 2.1 3 3 5000 2000 9 999999999 10 0 0 88 0.2 0 0 +5331600.0 25.5 1 20 98623 541 1391 356 338 542 127 38426 34638 14469 5010 330 2.3 0 0 5000 2000 9 999999999 10 0 0 88 0.2 0 0 +5335200.0 24 1 22 98610 251 1391 364 108 210 70 11886 5782 7740 2286 300 2.6 3 3 5000 2000 9 999999999 10 0 0 88 0.2 0 0 +5338800.0 23 2 25 98601 0 1115 346 0 0 0 0 0 0 0 315 2.6 0 0 4000 2000 9 999999999 11 0 0 88 0.2 0 0 +5342400.0 22 3 29 98592 0 0 363 0 0 0 0 0 0 0 350 2.6 5 5 3000 2000 9 999999999 13 0 0 88 0.2 0 0 +5346000.0 21 4 33 98583 0 0 359 0 0 0 0 0 0 0 360 2.1 5 5 2800 2000 9 999999999 14 0 0 88 0.2 0 0 +5349600.0 20 3 32 98574 0 0 374 0 0 0 0 0 0 0 10 2.1 9 9 2400 3000 9 999999999 13 0 0 88 0.2 0 0 +5353200.0 20 4 35 98574 0 0 354 0 0 0 0 0 0 0 10 1.5 5 5 2500 2000 9 999999999 14 0 0 88 0.2 0 0 +5356800.0 18 5 42 98555 0 0 340 0 0 0 0 0 0 0 339 0 3 3 2500 2000 9 999999999 16 0 0 88 0.2 0 0 +5360400.0 17 4 42 98546 0 0 335 0 0 0 0 0 0 0 113 0 3 3 2500 2000 9 999999999 14 0 0 88 0.2 0 0 +5364000.0 15 5 51 98527 0 0 327 0 0 0 0 0 0 0 97 0 3 3 2200 2000 9 999999999 16 0 0 88 0.2 0 0 +5367600.0 14 5 55 98517 0 0 322 0 0 0 0 0 0 0 242 0 3 3 2000 2000 9 999999999 16 0 0 88 0.2 0 0 +5371200.0 13 4 54 98507 0 0 317 0 0 0 0 0 0 0 270 0 3 3 2000 2000 9 999999999 14 0 0 88 0.2 0 0 +5374800.0 13 3 51 98507 0 0 315 0 0 0 0 0 0 0 260 0 3 3 1600 2000 9 999999999 13 0 0 88 0.2 0 0 +5378400.0 12 4 58 98498 0 0 317 0 0 0 0 0 0 0 270 1 5 5 1200 2000 9 999999999 14 0 0 88 0.2 0 0 +5382000.0 12 4 58 98498 0 0 317 0 0 0 0 0 0 0 154 0 5 5 1000 2000 9 999999999 14 0 0 88 0.2 0 0 +5385600.0 15 4.5 49 98526 218 963 323 87 204 55 9603 2909 6075 1827 279 0.8 2 2 1200 2000 9 999999999 15 0 0 88 0.2 0 0 +5389200.0 18 5 42 98555 512 1390 346 289 457 120 32741 27538 13704 4699 280 1.5 5 5 1400 2000 9 999999999 16 0 0 88 0.2 0 0 +5392800.0 21 3 30 98583 766 1390 358 498 638 146 58516 43994 17274 6622 270 1.5 5 5 2200 2000 9 999999999 13 0 0 88 0.2 0 0 +5396400.0 23 1 23 98601 962 1390 365 668 734 159 80417 51593 19288 7824 310 3.1 5 5 2600 2000 9 999999999 10 0 0 88 0.2 0 0 +5400000.0 24 3 25 98610 1088 1390 372 774 738 196 93356 53461 23750 9698 340 3.6 5 5 2600 2000 9 999999999 13 0 0 88 0.2 0 0 +5403600.0 25 1 21 98619 1134 1390 375 816 747 206 98764 54988 25086 10230 310 5.1 5 5 4000 2000 9 999999999 10 0 0 88 0.2 0 0 +5407200.0 25 2 22 98619 1097 1390 376 783 742 197 94645 54026 23895 9761 290 4.6 5 5 3500 2000 9 999999999 11 0 0 88 0.2 0 0 +5410800.0 25 1 21 98619 981 1390 375 684 736 164 82446 52057 19826 8060 310 6.7 5 5 4500 2000 9 999999999 10 0 0 88 0.2 0 0 +5414400.0 25 2 22 98619 792 1390 376 522 648 152 61394 45415 17970 6932 330 4.6 5 5 4500 2000 9 999999999 11 0 0 88 0.2 0 0 +5418000.0 25 2 22 98619 545 1390 376 316 471 132 35912 30499 15016 5175 300 5.1 5 5 5000 2000 9 999999999 11 0 0 88 0.2 0 0 +5421600.0 24 3 25 98610 254 1390 372 103 204 66 11450 5195 7337 2217 310 2.1 5 5 4500 2000 9 999999999 13 0 0 88 0.2 0 0 +5425200.0 23 4 29 98601 0 1130 363 0 0 0 0 0 0 0 300 2.6 3 3 3500 2000 9 999999999 14 0 0 88 0.2 0 0 +5428800.0 21 4 33 98583 0 0 339 0 0 0 0 0 0 0 310 2.1 0 0 2000 2000 9 999999999 14 0 0 88 0.2 0 0 +5432400.0 19 5 40 98564 0 0 331 0 0 0 0 0 0 0 327 0 0 0 1600 2000 9 999999999 16 0 0 88 0.2 0 0 +5436000.0 17 6 48 98546 0 0 323 0 0 0 0 0 0 0 356 0 0 0 1700 2000 9 999999999 17 0 0 88 0.2 0 0 +5439600.0 16.5 6 50 98541 0 0 331 0 0 0 0 0 0 0 184 0 2 2 1550 2000 9 999999999 17 0 0 88 0.2 0 0 +5443200.0 16 6 51 98536 0 0 318 0 0 0 0 0 0 0 246 0 0 0 1400 2000 9 999999999 17 0 0 88 0.2 0 0 +5446800.0 15 4 48 98527 0 0 312 0 0 0 0 0 0 0 242 0 0 0 1400 2000 9 999999999 14 0 0 88 0.2 0 0 +5450400.0 14 4 51 98517 0 0 308 0 0 0 0 0 0 0 230 1 0 0 1300 2000 9 999999999 14 0 0 88 0.2 0 0 +5454000.0 13 4 54 98507 0 0 303 0 0 0 0 0 0 0 270 1.5 0 0 1400 2000 9 999999999 14 0 0 88 0.2 0 0 +5457600.0 12 4 58 98498 0 0 299 0 0 0 0 0 0 0 188 0 0 0 1700 2000 9 999999999 14 0 0 88 0.2 0 0 +5461200.0 12 3.5 56 98498 0 0 312 0 0 0 0 0 0 0 215 0.8 3 3 1600 2000 9 999999999 14 0 0 88 0.2 0 0 +5464800.0 12 3 54 98498 0 0 298 0 0 0 0 0 0 0 210 1.5 0 0 1500 2000 9 999999999 13 0 0 88 0.2 0 0 +5468400.0 12 2 50 98498 0 0 297 0 0 0 0 0 0 0 103 0 0 0 1500 2000 9 999999999 12 0 0 88 0.2 0 0 +5472000.0 14 1 41 98517 223 988 304 91 188 61 10019 3657 6706 1976 250 1.5 0 0 2500 2000 9 999999999 11 0 0 88 0.2 0 0 +5475600.0 10 0 50 98478 517 1389 287 317 514 125 35953 32596 14281 4869 250 3.1 0 0 2500 2000 9 999999999 10 0 0 88 0.2 0 0 +5479200.0 21 3 30 98583 771 1389 338 540 782 106 65120 49010 12773 5050 280 3.6 0 0 3000 2000 9 999999999 13 0 0 88 0.2 0 0 +5482800.0 23 3 27 98601 967 1389 347 720 784 173 86185 55922 20860 8415 270 4.1 0 0 3000 2000 9 999999999 13 0 0 88 0.2 0 0 +5486400.0 25 4 26 98619 1093 1389 358 835 794 209 100258 58366 25267 10259 270 3.1 0 0 3000 2000 9 999999999 14 0 0 88 0.2 0 0 +5490000.0 26 3 23 98628 1139 1389 361 879 798 224 105677 59625 27121 10972 270 6.7 0 0 3500 2000 9 999999999 13 0 0 88 0.2 0 0 +5493600.0 27 3 21 98637 1102 1389 366 845 795 213 101458 58961 25766 10448 270 5.1 0 0 4500 2000 9 999999999 13 0 0 88 0.2 0 0 +5497200.0 27 3 21 98637 985 1389 366 736 786 179 88190 56395 21512 8691 290 6.7 0 0 5000 2000 9 999999999 13 0 0 88 0.2 0 0 +5500800.0 27 2 20 98637 796 1389 365 564 792 110 68104 50502 13286 5281 310 6.2 0 0 5000 2000 9 999999999 11 0 0 88 0.2 0 0 +5504400.0 26 3 23 98628 548 1389 361 342 546 127 38993 34610 14500 5051 280 6.2 0 0 4500 2000 9 999999999 13 0 0 88 0.2 0 0 +5508000.0 25 4 26 98619 258 1389 358 113 264 64 12558 6496 7147 2189 320 4.6 0 0 3500 2000 9 999999999 14 0 0 88 0.2 0 0 +5511600.0 22 5 33 98592 0 1144 345 0 0 0 0 0 0 0 300 2.6 0 0 3000 2000 9 999999999 16 0 0 88 0.2 0 0 +5515200.0 21 7 40 98583 0 0 342 0 0 0 0 0 0 0 47 1.3 0 0 3000 2000 9 999999999 19 0 0 88 0.2 0 0 +5518800.0 19 6 43 98564 0 0 338 0 0 0 0 0 0 0 66 0 1 1 2200 2000 9 999999999 17 0 0 88 0.2 0 0 +5522400.0 18 7 49 98555 0 0 329 0 0 0 0 0 0 0 170 0 0 0 1800 2000 9 999999999 19 0 0 88 0.2 0 0 +5526000.0 17 7 52 98546 0 0 324 0 0 0 0 0 0 0 237 0 0 0 1600 2000 9 999999999 19 0 0 88 0.2 0 0 +5529600.0 17 7 52 98546 0 0 324 0 0 0 0 0 0 0 111 0 0 0 1400 2000 9 999999999 19 0 0 88 0.2 0 0 +5533200.0 15 5 51 98527 0 0 313 0 0 0 0 0 0 0 49 0 0 0 1400 2000 9 999999999 16 0 0 88 0.2 0 0 +5536800.0 15 5 51 98527 0 0 313 0 0 0 0 0 0 0 19 0 0 0 1400 2000 9 999999999 16 0 0 88 0.2 0 0 +5540400.0 14 4 51 98517 0 0 308 0 0 0 0 0 0 0 57 0 0 0 1400 2000 9 999999999 14 0 0 88 0.2 0 0 +5544000.0 13 3 51 98507 0 0 302 0 0 0 0 0 0 0 270 1.5 0 0 1600 2000 9 999999999 13 0 0 88 0.2 0 0 +5547600.0 13 3 51 98507 0 0 302 0 0 0 0 0 0 0 203 1 0 0 1800 2000 9 999999999 13 0 0 88 0.2 0 0 +5551200.0 12.5 3 52 98503 0 0 313 0 0 0 0 0 0 0 166 0.5 3 3 1500 2000 9 999999999 13 0 0 88 0.2 0 0 +5554800.0 12 3 54 98498 0 0 298 0 0 0 0 0 0 0 208 0 0 0 1200 2000 9 999999999 13 0 0 88 0.2 0 0 +5558400.0 13 3 51 98507 229 1012 320 88 212 53 9777 3285 5892 1817 205 0 5 5 1600 2000 9 999999999 13 0 0 88 0.2 0 0 +5562000.0 18 2 34 98555 523 1389 337 317 498 129 35845 31712 14658 4994 230 1.5 3 3 2200 2000 9 999999999 12 0 0 88 0.2 0 0 +5565600.0 22 2 27 98592 777 1389 356 539 759 114 64664 48815 13729 5410 250 3.1 3 3 2800 2000 9 999999999 12 0 0 88 0.2 0 0 +5569200.0 24 4 27 98610 973 1389 368 714 861 111 88487 54430 13776 5719 300 2.6 3 3 3000 2000 9 999999999 14 0 0 88 0.2 0 0 +5572800.0 27 5 24 98637 1098 1389 384 827 843 160 101432 57051 19740 8200 300 3.6 3 3 3500 2000 9 999999999 15 0 0 88 0.2 0 0 +5576400.0 27 4 23 98637 1143 1389 389 820 695 248 97979 53319 29732 11890 240 3.1 5 5 4500 2000 9 999999999 14 0 0 88 0.2 0 0 +5580000.0 28 4 22 98646 1106 1389 394 789 733 204 95093 53288 24701 10073 270 4.1 5 5 5000 2000 9 999999999 14 0 0 88 0.2 0 0 +5583600.0 29 4 20 98654 989 1389 400 688 723 172 82622 51009 20792 8441 250 5.1 5 5 5000 2000 9 999999999 14 0 0 88 0.2 0 0 +5587200.0 29 3 19 98654 800 1389 398 527 647 154 62042 45294 18186 7032 270 4.1 5 5 5000 2000 9 999999999 13 0 0 88 0.2 0 0 +5590800.0 28 3 20 98646 552 1389 393 321 487 127 36605 31007 14582 5088 300 3.6 5 5 5000 2000 9 999999999 13 0 0 88 0.2 0 0 +5594400.0 27 3 21 98637 261 1389 388 107 210 68 11884 5687 7543 2287 300 3.1 5 5 4500 2000 9 999999999 13 0 0 88 0.2 0 0 +5598000.0 24 4 27 98610 0 1158 374 0 0 0 0 0 0 0 107 0 5 5 4000 2000 9 999999999 14 0 0 88 0.2 0 0 +5601600.0 23 6 33 98601 0 0 371 0 0 0 0 0 0 0 28 0 5 5 2500 2000 9 999999999 17 0 0 88 0.2 0 0 +5605200.0 21 6 38 98583 0 0 361 0 0 0 0 0 0 0 53 0 5 5 2000 2000 9 999999999 17 0 0 88 0.2 0 0 +5608800.0 21 6 38 98583 0 0 361 0 0 0 0 0 0 0 130 1 5 5 1600 2000 9 999999999 17 0 0 88 0.2 0 0 +5612400.0 21 6 38 98583 0 0 361 0 0 0 0 0 0 0 329 0 5 5 1800 2000 9 999999999 17 0 0 88 0.2 0 0 +5616000.0 20 5 37 98574 0 0 355 0 0 0 0 0 0 0 0 0 5 5 1700 2000 9 999999999 16 0 0 88 0.2 0 0 +5619600.0 19 6 43 98564 0 0 346 0 0 0 0 0 0 0 249 0 3 3 1600 2000 9 999999999 17 0 0 88 0.2 0 0 +5623200.0 18 3 37 98555 0 0 343 0 0 0 0 0 0 0 276 0 5 5 1500 2000 9 999999999 13 0 0 88 0.2 0 0 +5626800.0 17 5 45 98546 0 0 336 0 0 0 0 0 0 0 132 0 3 3 1500 2000 9 999999999 16 0 0 88 0.2 0 0 +5630400.0 16 5 48 98536 0 0 336 0 0 0 0 0 0 0 217 0 5 5 1500 2000 9 999999999 16 0 0 88 0.2 0 0 +5634000.0 17 5 45 98546 0 0 341 0 0 0 0 0 0 0 293 0 5 5 1500 2000 9 999999999 16 0 0 88 0.2 0 0 +5637600.0 15 4 48 98527 0 0 331 0 0 0 0 0 0 0 314 0 5 5 1500 2000 9 999999999 14 0 0 88 0.2 0 0 +5641200.0 16 1 36 98536 0 0 327 0 0 0 0 0 0 0 250 0 3 3 1800 2000 9 999999999 11 0 0 88 0.2 0 0 +5644800.0 20 2 30 98574 235 1037 346 97 222 59 10705 4409 6547 1983 240 1 3 3 2000 2000 9 999999999 12 0 0 88 0.2 0 0 +5648400.0 23 3 27 98601 529 1388 347 325 523 125 36894 32794 14310 4927 70 0 0 0 2000 2000 9 999999999 13 0 0 88 0.2 0 0 +5652000.0 25 2 22 98619 782 1388 355 551 784 108 66410 49794 13108 5193 83 1.5 0 0 2500 2000 9 999999999 11 0 0 88 0.2 0 0 +5655600.0 27 1 18 98637 978 1388 363 732 784 179 87611 56863 21477 8659 220 3.1 0 0 3000 2000 9 999999999 10 0 0 88 0.2 0 0 +5659200.0 29 2 18 98654 1103 1388 375 847 795 215 101704 59280 25929 10507 240 3.1 0 0 4500 2000 9 999999999 11 0 0 88 0.2 0 0 +5662800.0 29.7 2.3 17 98660 1148 1388 378 888 798 228 106889 59984 27575 11138 284 2.8 0 0 5357 2000 9 999999999 12 0 0 88 0.2 0 0 +5666400.0 30.3 2.7 17 98666 1111 1388 382 853 795 216 102525 59163 26123 10588 3 2.4 0 0 5714 2000 9 999999999 12 0 0 88 0.2 0 0 +5670000.0 31 3 17 98672 993 1388 386 744 786 181 89115 56518 21783 8809 260 2.1 0 0 5571 2000 9 999999999 13 0 0 88 0.2 0 0 +5673600.0 31 2.5 16 98672 804 1388 385 570 793 111 68886 50547 13413 5344 342 2.6 0 0 5428 2000 9 999999999 12 0 0 88 0.2 0 0 +5677200.0 31 2 16 98672 555 1388 385 348 549 129 39735 35323 14728 5142 260 3.1 0 0 5285 2000 9 999999999 11 0 0 88 0.2 0 0 +5680800.0 29 3 19 98654 264 1388 376 117 271 66 13051 7212 7322 2250 280 1.5 0 0 4642 2000 9 999999999 13 0 0 88 0.2 0 0 +5684400.0 25 3 24 98619 0 1172 356 0 0 0 0 0 0 0 124 0.8 0 0 4000 2000 9 999999999 13 0 0 88 0.2 0 0 +5688000.0 24 3 25 98610 0 0 352 0 0 0 0 0 0 0 29 0 0 0 3200 2000 9 999999999 13 0 0 88 0.2 0 0 +5691600.0 23 3 27 98601 0 0 347 0 0 0 0 0 0 0 103 0 0 0 2500 2000 9 999999999 13 0 0 88 0.2 0 0 +5695200.0 22 2 27 98592 0 0 341 0 0 0 0 0 0 0 100 2.1 0 0 1600 2000 9 999999999 12 0 0 88 0.2 0 0 +5698800.0 21.5 2.5 29 98587 0 0 339 0 0 0 0 0 0 0 317 2.1 0 0 1500 2000 9 999999999 12 0 0 88 0.2 0 0 +5702400.0 21 3 30 98583 0 0 338 0 0 0 0 0 0 0 80 2.1 0 0 1400 2000 9 999999999 13 0 0 88 0.2 0 0 +5706000.0 19 5 40 98564 0 0 331 0 0 0 0 0 0 0 286 0 0 0 1700 2000 9 999999999 16 0 0 88 0.2 0 0 +5709600.0 20 5 37 98574 0 0 335 0 0 0 0 0 0 0 176 0 0 0 1700 2000 9 999999999 16 0 0 88 0.2 0 0 +5713200.0 18 6 45 98555 0 0 327 0 0 0 0 0 0 0 171 0 0 0 1300 2000 9 999999999 17 0 0 88 0.2 0 0 +5716800.0 17 5 45 98546 0 0 322 0 0 0 0 0 0 0 120 1.5 0 0 1200 2000 9 999999999 16 0 0 88 0.2 0 0 +5720400.0 16 5 48 98536 0 0 317 0 0 0 0 0 0 0 115 0 0 0 1300 2000 9 999999999 16 0 0 88 0.2 0 0 +5724000.0 17 5 45 98546 0 0 336 0 0 0 0 0 0 0 110 2.1 3 3 1400 2000 9 999999999 16 0 0 88 0.2 0 0 +5727600.0 17 3 39 98546 0 0 333 0 0 0 0 0 0 0 320 6.2 3 3 1600 2000 9 999999999 13 0 0 88 0.2 0 0 +5731200.0 18 7 49 98555 241 1062 329 101 236 60 11166 4503 6656 2028 261 0 0 0 1000 2000 9 999999999 19 0 0 88 0.2 0 0 +5734800.0 21.5 6.5 38 98587 534 1387 344 328 530 123 37286 32324 14086 4893 227 1.3 0 0 1100 2000 9 999999999 18 0 0 88 0.2 0 0 +5738400.0 25 6 30 98619 788 1387 360 552 787 105 66737 48361 12718 5064 300 2.6 0 0 1200 2000 9 999999999 17 0 0 88 0.2 0 0 +5742000.0 27 2 20 98637 983 1387 380 726 814 149 88212 55759 18135 7436 300 1.5 3 3 2200 2000 9 999999999 11 0 0 88 0.2 0 0 +5745600.0 29 3 19 98654 1108 1387 376 850 795 215 102156 58956 25971 10532 280 1.5 0 0 2500 2000 9 999999999 13 0 0 88 0.2 0 0 +5749200.0 29.8 2.3 17 98661 1153 1387 379 893 798 229 107448 60034 27759 11206 75 1.5 0 0 3545 2000 9 999999999 12 0 0 88 0.2 0 0 +5752800.0 30.6 2.9 17 98668 1115 1387 384 857 795 217 103014 59136 26264 10645 184 1.5 0 0 4091 2000 9 999999999 12 0 0 88 0.2 0 0 +5756400.0 31 2.4 16 98672 997 1387 385 748 786 183 89657 56825 22017 8902 326 1.5 0 0 4137 2000 9 999999999 12 0 0 88 0.2 0 0 +5760000.0 31 2.1 16 98672 808 1387 385 574 794 112 69361 50837 13531 5394 295 2.4 0 0 4183 2000 9 999999999 11 0 0 88 0.2 0 0 +5763600.0 30.7 1.9 16 98669 559 1387 383 352 552 129 40119 35633 14779 5170 238 3.2 0 0 4229 2000 9 999999999 11 0 0 88 0.2 0 0 +5767200.0 29 2.6 18 98654 268 1387 375 120 277 66 13326 7596 7395 2278 352 2 0 0 3775 2000 9 999999999 12 0 0 88 0.2 0 0 +5770800.0 25.7 2.9 23 98625 0 1186 360 0 0 0 0 0 0 0 189 1.6 0 0 3322 2000 9 999999999 13 0 0 88 0.2 0 0 +5774400.0 24.3 3.3 25 98613 0 0 353 0 0 0 0 0 0 0 39 1.2 0 0 2711 2000 9 999999999 13 0 0 88 0.2 0 0 +5778000.0 23 4 36 98601 0 0 348 0 0 0 0 0 0 0 330 1.5 0 0 2200 2000 9 999999999 14 0 0 88 0.2 0 0 +5781600.0 22 5 33 98592 0 0 345 0 0 0 0 0 0 0 350 2.1 0 0 1800 2000 9 999999999 16 0 0 88 0.2 0 0 +5785200.0 21 5 35 98583 0 0 340 0 0 0 0 0 0 0 310 1.5 0 0 1500 2000 9 999999999 16 0 0 88 0.2 0 0 +5788800.0 19 6 43 98564 0 0 332 0 0 0 0 0 0 0 310 0 0 0 1500 2000 9 999999999 17 0 0 88 0.2 0 0 +5792400.0 18 6 45 98555 0 0 327 0 0 0 0 0 0 0 305 0 0 0 2000 2000 9 999999999 17 0 0 88 0.2 0 0 +5796000.0 16 4 45 98536 0 0 316 0 0 0 0 0 0 0 220 1.5 0 0 1600 2000 9 999999999 14 0 0 88 0.2 0 0 +5799600.0 15 4 48 98527 0 0 312 0 0 0 0 0 0 0 260 1.5 0 0 1000 2000 9 999999999 14 0 0 88 0.2 0 0 +5803200.0 15 5 51 98527 0 0 313 0 0 0 0 0 0 0 240 1.5 0 0 1100 2000 9 999999999 16 0 0 88 0.2 0 0 +5806800.0 14 4 51 98517 0 0 308 0 0 0 0 0 0 0 260 1.5 0 0 1100 2000 9 999999999 14 0 0 88 0.2 0 0 +5810400.0 14 4 51 98517 0 0 308 0 0 0 0 0 0 0 250 1.5 0 0 1100 2000 9 999999999 14 0 0 88 0.2 0 0 +5814000.0 13 5 58 98507 0 0 304 0 0 0 0 0 0 0 128 0 0 0 900 2000 9 999999999 16 0 0 88 0.2 0 0 +5817600.0 16.2 5.8 50 98538 246 1087 330 104 233 62 11509 5059 6940 2109 64 0.5 2 2 1300 2000 9 999999999 17 0 0 88 0.2 0 0 +5821200.0 19.5 6.5 43 98568 540 1386 341 332 533 124 37803 32680 14224 4954 113 1 1 1 1700 2000 9 999999999 18 0 0 88 0.2 0 0 +5824800.0 22.8 7.2 37 98598 793 1386 351 556 788 104 67227 47965 12677 5060 159 1.6 0 0 2100 2000 9 999999999 19 0 0 88 0.2 0 0 +5828400.0 26 8 32 98628 989 1386 367 733 785 173 87927 54047 20889 8490 250 2.1 0 0 2500 2000 9 999999999 21 0 0 88 0.2 0 0 +5832000.0 28 6 25 98646 1113 1386 375 850 794 212 102283 57696 25666 10439 200 1.5 0 0 3000 2000 9 999999999 17 0 0 88 0.2 0 0 +5835600.0 28.5 5 22 98650 1157 1386 376 893 798 227 107573 58936 27476 11116 212 2.8 0 0 3750 2000 9 999999999 15 0 0 88 0.2 0 0 +5839200.0 29 4 20 98654 1119 1386 377 859 795 217 103344 58712 26230 10642 270 4.1 0 0 4500 2000 9 999999999 14 0 0 88 0.2 0 0 +5842800.0 30 4 19 98663 1001 1386 382 750 786 182 89898 56232 21920 8881 250 3.6 0 0 5000 2000 9 999999999 14 0 0 88 0.2 0 0 +5846400.0 30 3 18 98663 811 1386 381 576 794 111 69676 50588 13510 5395 290 4.1 0 0 5000 2000 9 999999999 13 0 0 88 0.2 0 0 +5850000.0 29 4 20 98654 562 1386 377 353 554 128 40310 35279 14701 5165 320 3.1 0 0 4000 2000 9 999999999 14 0 0 88 0.2 0 0 +5853600.0 28 4.8 23 98645 271 1386 373 121 277 67 13493 7585 7498 2313 37 2.6 0 0 3425 2000 9 999999999 15 0 0 88 0.2 0 0 +5857200.0 27 5.5 25 98637 0 1199 369 0 0 0 0 0 0 0 143 2 0 0 2850 2000 9 999999999 16 0 0 88 0.2 0 0 +5860800.0 26 6.2 28 98628 0 0 365 0 0 0 0 0 0 0 223 1.5 0 0 2275 2000 9 999999999 17 0 0 88 0.2 0 0 +5864400.0 25 7 32 98619 0 0 361 0 0 0 0 0 0 0 310 1 0 0 1700 2000 9 999999999 19 0 0 88 0.2 0 0 +5868000.0 23 6 33 98601 0 0 350 0 0 0 0 0 0 0 30 1.5 0 0 1500 2000 9 999999999 17 0 0 88 0.2 0 0 +5871600.0 23 7 36 98601 0 0 352 0 0 0 0 0 0 0 10 1 0 0 1500 2000 9 999999999 19 0 0 88 0.2 0 0 +5875200.0 20 8 46 98574 0 0 339 0 0 0 0 0 0 0 193 0 0 0 1200 2000 9 999999999 21 0 0 88 0.2 0 0 +5878800.0 20 9 49 98574 0 0 340 0 0 0 0 0 0 0 90 0 0 0 1100 2000 9 999999999 23 0 0 88 0.2 0 0 +5882400.0 19 10 56 98564 0 0 336 0 0 0 0 0 0 0 65 0 0 0 1000 2000 9 999999999 26 0 0 88 0.2 0 0 +5886000.0 18 9 56 98555 0 0 345 0 0 0 0 0 0 0 156 0 3 3 900 2000 9 999999999 23 0 0 88 0.2 0 0 +5889600.0 17 8 55 98546 0 0 339 0 0 0 0 0 0 0 213 0 3 3 800 2000 9 999999999 21 0 0 88 0.2 0 0 +5893200.0 16 7 55 98536 0 0 320 0 0 0 0 0 0 0 284 0 0 0 700 2000 9 999999999 19 0 0 88 0.2 0 0 +5896800.0 15 5 51 98527 0 0 313 0 0 0 0 0 0 0 108 0 0 0 700 2000 9 999999999 16 0 0 88 0.2 0 0 +5900400.0 14 6 59 98517 0 0 310 0 0 0 0 0 0 0 7 0 0 0 700 2000 9 999999999 17 0 0 88 0.2 0 0 +5904000.0 16 5 48 98536 252 1112 317 108 246 64 12004 5729 7068 2156 230 1.5 0 0 1200 2000 9 999999999 16 0 0 88 0.2 0 0 +5907600.0 18 2 34 98555 546 1386 323 339 535 129 38644 34328 14692 5099 240 3.1 0 0 1500 2000 9 999999999 12 0 0 88 0.2 0 0 +5911200.0 23 6 33 98601 799 1386 350 562 789 107 67931 48722 12934 5164 250 2.1 0 0 2000 2000 9 999999999 17 0 0 88 0.2 0 0 +5914800.0 27 9 32 98637 994 1386 374 737 785 174 88373 53600 20915 8515 260 1.5 0 0 2580 2000 9 999999999 23 0 0 88 0.2 0 0 +5918400.0 29 6 23 98654 1118 1386 380 855 794 214 102850 57743 25837 10506 300 3.1 0 0 3000 2000 9 999999999 17 0 0 88 0.2 0 0 +5922000.0 30 3 18 98663 1162 1386 381 900 797 231 108414 59818 27967 11286 270 4.1 0 0 4000 2000 9 999999999 13 0 0 88 0.2 0 0 +5925600.0 31 4 18 98672 1124 1386 387 863 795 218 103837 58748 26382 10701 300 4.1 0 0 5000 2000 9 999999999 14 0 0 88 0.2 0 0 +5929200.0 31 2 16 98672 1005 1386 385 756 786 185 90585 57070 22318 9030 290 2.1 0 0 5000 2000 9 999999999 11 0 0 88 0.2 0 0 +5932800.0 31 2 16 98672 815 1386 385 580 793 113 70138 51075 13741 5486 270 4.1 0 0 5000 2000 9 999999999 11 0 0 88 0.2 0 0 +5936400.0 30 2 17 98663 566 1386 380 357 555 130 40756 36011 14934 5241 330 3.6 0 0 5000 2000 9 999999999 11 0 0 88 0.2 0 0 +5940000.0 29 2 18 98654 274 1386 375 124 284 68 13798 8248 7566 2338 194 3.1 0 0 4500 2000 9 999999999 11 0 0 88 0.2 0 0 +5943600.0 27 3 21 98637 0 1213 366 0 0 0 0 0 0 0 310 2.6 0 0 3500 2000 9 999999999 13 0 0 88 0.2 0 0 +5947200.0 25 4 26 98619 0 0 358 0 0 0 0 0 0 0 94 0 0 0 2500 2000 9 999999999 14 0 0 88 0.2 0 0 +5950800.0 23 6 33 98601 0 0 350 0 0 0 0 0 0 0 60 0 0 0 2500 2000 9 999999999 17 0 0 88 0.2 0 0 +5954400.0 22 6.5 37 98592 0 0 346 0 0 0 0 0 0 0 36 0 0 0 2250 2000 9 999999999 18 0 0 88 0.2 0 0 +5958000.0 21 7 40 98583 0 0 342 0 0 0 0 0 0 0 293 0 0 0 2000 2000 9 999999999 19 0 0 88 0.2 0 0 +5961600.0 21 7 40 98583 0 0 342 0 0 0 0 0 0 0 17 0 0 0 2000 2000 9 999999999 19 0 0 88 0.2 0 0 +5965200.0 20 8 46 98574 0 0 339 0 0 0 0 0 0 0 126 0 0 0 2000 2000 9 999999999 21 0 0 88 0.2 0 0 +5968800.0 17 4 42 98546 0 0 321 0 0 0 0 0 0 0 146 0 0 0 1600 2000 9 999999999 14 0 0 88 0.2 0 0 +5972400.0 16 6 51 98536 0 0 318 0 0 0 0 0 0 0 247 0 0 0 1500 2000 9 999999999 17 0 0 88 0.2 0 0 +5976000.0 15 7 59 98527 0 0 315 0 0 0 0 0 0 0 108 0 0 0 1750 2000 9 999999999 19 0 0 88 0.2 0 0 +5979600.0 15 5 51 98527 0 0 313 0 0 0 0 0 0 0 191 0 0 0 2000 2000 9 999999999 16 0 0 88 0.2 0 0 +5983200.0 15 4 48 98527 0 0 312 0 0 0 0 0 0 0 271 0 0 0 2000 2000 9 999999999 14 0 0 88 0.2 0 0 +5986800.0 15 3 44 98527 0 0 311 0 0 0 0 0 0 0 168 0 0 0 2000 2000 9 999999999 13 0 0 88 0.2 0 0 +5990400.0 17 4 42 98546 258 1138 321 112 254 65 12445 6364 7215 2208 234 0 0 0 2000 2000 9 999999999 14 0 0 88 0.2 0 0 +5994000.0 21 5.5 36 98582 552 1385 341 342 540 127 38998 33810 14518 5078 214 1.3 0 0 2250 2000 9 999999999 16 0 0 88 0.2 0 0 +5997600.0 25 7 32 98619 804 1385 361 566 791 106 68467 48425 12881 5155 320 2.6 0 0 2500 2000 9 999999999 19 0 0 88 0.2 0 0 +6001200.0 28 7 26 98646 999 1385 376 744 785 177 89228 54719 21371 8687 260 2.6 0 0 3000 2000 9 999999999 19 0 0 88 0.2 0 0 +6004800.0 30 5 21 98663 1123 1385 383 861 794 216 103564 58246 26166 10627 280 2.6 0 0 4000 2000 9 999999999 15 0 0 88 0.2 0 0 +6008400.0 31 4 18 98672 1167 1385 387 903 797 231 108793 59437 27966 11292 320 3.1 0 0 4500 2000 9 999999999 14 0 0 88 0.2 0 0 +6012000.0 31 5 19 98672 1128 1385 389 866 795 218 104169 58343 26364 10702 270 3.6 0 0 5000 2000 9 999999999 15 0 0 88 0.2 0 0 +6015600.0 32 5.5 19 98680 1009 1385 394 755 786 182 90576 55679 21960 8918 136 0.6 0 0 4972 2000 9 999999999 16 0 0 88 0.2 0 0 +6019200.0 31.5 4.5 18 98676 819 1385 390 581 795 111 70337 50163 13461 5392 119 3.2 0 0 5194 2000 9 999999999 15 0 0 88 0.2 0 0 +6022800.0 30.5 4.5 19 98667 569 1385 385 358 557 129 40917 35536 14812 5224 201 3 0 0 5166 2000 9 999999999 15 0 0 88 0.2 0 0 +6026400.0 29.5 4.5 20 98659 278 1385 380 125 283 69 13953 8189 7669 2374 47 2.8 0 0 3788 2000 9 999999999 15 0 0 88 0.2 0 0 +6030000.0 27 5.5 25 98637 0 1226 369 0 0 0 0 0 0 0 12 2.1 0 0 3261 2000 9 999999999 16 0 0 88 0.2 0 0 +6033600.0 25 6 30 98619 0 0 360 0 0 0 0 0 0 0 235 1.1 0 0 2583 2000 9 999999999 17 0 0 88 0.2 0 0 +6037200.0 24 7.5 35 98610 0 0 357 0 0 0 0 0 0 0 222 1.4 0 0 2405 2000 9 999999999 20 0 0 88 0.2 0 0 +6040800.0 23.5 7.2 35 98605 0 0 354 0 0 0 0 0 0 0 247 1.7 0 0 2402 2000 9 999999999 19 0 0 88 0.2 0 0 +6044400.0 22 6 33 98592 0 0 346 0 0 0 0 0 0 0 100 2 0 0 2250 2000 9 999999999 17 0 0 88 0.2 0 0 +6048000.0 22.2 6 35 98594 0 0 347 0 0 0 0 0 0 0 144 2.3 0 0 1925 2000 9 999999999 17 0 0 88 0.2 0 0 +6051600.0 21.5 6 36 98587 0 0 343 0 0 0 0 0 0 0 10 2 0 0 1850 2000 9 999999999 17 0 0 88 0.2 0 0 +6055200.0 20.8 6 38 98581 0 0 340 0 0 0 0 0 0 0 192 1.8 0 0 1775 2000 9 999999999 17 0 0 88 0.2 0 0 +6058800.0 20 6 40 98574 0 0 336 0 0 0 0 0 0 0 80 1.5 0 0 1700 2000 9 999999999 17 0 0 88 0.2 0 0 +6062400.0 19 0 28 98564 0 0 325 0 0 0 0 0 0 0 100 1.5 0 0 1700 2000 9 999999999 9 0 0 88 0.2 0 0 +6066000.0 19 5 40 98564 0 0 331 0 0 0 0 0 0 0 90 1.5 0 0 1800 2000 9 999999999 16 0 0 88 0.2 0 0 +6069600.0 19 6 43 98564 0 0 332 0 0 0 0 0 0 0 111 0 0 0 1800 2000 9 999999999 17 0 0 88 0.2 0 0 +6073200.0 19 5 40 98564 0 0 331 0 0 0 0 0 0 0 180 2.6 0 0 1800 2000 9 999999999 16 0 0 88 0.2 0 0 +6076800.0 12 4 58 98498 264 1163 299 116 260 66 12862 6880 7368 2261 150 3.1 0 0 2000 2000 9 999999999 14 0 0 88 0.2 0 0 +6080400.0 25 4 26 98619 557 1384 358 348 543 129 39657 34636 14750 5163 170 3.1 0 0 2800 2000 9 999999999 14 0 0 88 0.2 0 0 +6084000.0 28 5 23 98646 810 1384 373 572 790 110 69227 49540 13294 5317 130 3.6 0 0 3500 2000 9 999999999 15 0 0 88 0.2 0 0 +6087600.0 29 5 22 98654 1004 1384 378 751 785 181 90072 55725 21822 8858 130 3.1 0 0 3500 2000 9 999999999 15 0 0 88 0.2 0 0 +6091200.0 30 6 22 98663 1127 1384 385 864 794 216 103969 57828 26171 10637 110 4.1 0 0 4000 2000 9 999999999 17 0 0 88 0.2 0 0 +6094800.0 30.5 6 21 98667 1171 1384 387 904 797 229 108997 58567 27787 11237 222 4.1 0 0 4250 2000 9 999999999 17 0 0 88 0.2 0 0 +6098400.0 31 6 21 98672 1132 1384 390 868 795 218 104491 57911 26342 10702 110 4.1 0 0 4500 2000 9 999999999 17 0 0 88 0.2 0 0 +6102000.0 33 9 23 98689 1013 1384 404 754 786 179 90521 53982 21578 8799 50 0 0 0 4500 2000 9 999999999 23 0 0 88 0.2 0 0 +6105600.0 32 7 21 98680 822 1384 396 582 798 108 70547 49091 13102 5267 130 3.1 0 0 5000 2000 9 999999999 19 0 0 88 0.2 0 0 +6109200.0 31 7 22 98672 572 1384 391 359 559 128 41066 34950 14676 5202 110 3.1 0 0 5000 2000 9 999999999 19 0 0 88 0.2 0 0 +6112800.0 30 7 24 98663 281 1384 403 125 270 70 13907 7820 7849 2428 130 3.1 3 3 2800 2000 9 999999999 19 0 0 88 0.2 0 0 +6116400.0 27 8 30 98637 0 1240 388 0 0 0 0 0 0 0 110 2.1 3 3 2800 2000 9 999999999 21 0 0 88 0.2 0 0 +6120000.0 25 8 34 98619 0 0 362 0 0 0 0 0 0 0 120 2.6 0 0 2500 2000 9 999999999 21 0 0 88 0.2 0 0 +6123600.0 25 9 36 98619 0 0 364 0 0 0 0 0 0 0 110 3.1 0 0 2200 2000 9 999999999 23 0 0 88 0.2 0 0 +6127200.0 25 8 34 98619 0 0 378 0 0 0 0 0 0 0 110 3.6 3 3 2500 2000 9 999999999 21 0 0 88 0.2 0 0 +6130800.0 23 5 31 98601 0 0 364 0 0 0 0 0 0 0 80 4.1 3 3 2500 2000 9 999999999 16 0 0 88 0.2 0 0 +6134400.0 23 5 31 98601 0 0 349 0 0 0 0 0 0 0 90 4.1 0 0 2200 2000 9 999999999 16 0 0 88 0.2 0 0 +6138000.0 22 5 33 98592 0 0 345 0 0 0 0 0 0 0 100 4.1 0 0 2500 2000 9 999999999 16 0 0 88 0.2 0 0 +6141600.0 22 5 33 98592 0 0 359 0 0 0 0 0 0 0 120 2.6 3 3 2500 2000 9 999999999 16 0 0 88 0.2 0 0 +6145200.0 22 5 33 98592 0 0 359 0 0 0 0 0 0 0 120 2.6 3 3 2500 2000 9 999999999 16 0 0 88 0.2 0 0 +6148800.0 22 4 31 98592 0 0 358 0 0 0 0 0 0 0 120 3.1 3 3 2800 2000 9 999999999 14 0 0 88 0.2 0 0 +6152400.0 22 4 31 98592 0 0 364 0 0 0 0 0 0 0 130 2.1 5 5 3000 2000 9 999999999 14 0 0 88 0.2 0 0 +6156000.0 21 4 33 98583 0 0 359 0 0 0 0 0 0 0 110 2.6 5 5 3000 2000 9 999999999 14 0 0 88 0.2 0 0 +6159600.0 22 2 27 98592 0 0 361 0 0 0 0 0 0 0 150 4.1 5 5 3000 2000 9 999999999 12 0 0 88 0.2 0 0 +6163200.0 25 1 21 98619 270 1189 375 112 178 77 12308 5871 8507 2521 254 4.1 5 5 3500 2000 9 999999999 10 0 0 88 0.2 0 0 +6166800.0 28 2 19 98646 563 1383 392 329 487 131 37556 31654 14976 5246 140 4.1 5 5 3500 2000 9 999999999 11 0 0 88 0.2 0 0 +6170400.0 29 2 18 98654 815 1383 397 539 644 160 63525 45796 18908 7327 120 6.2 5 5 3500 2000 9 999999999 11 0 0 88 0.2 0 0 +6174000.0 31 6 21 98672 1009 1383 413 702 710 183 84167 50273 22096 8972 120 3.1 5 5 3500 2000 9 999999999 17 0 0 88 0.2 0 0 +6177600.0 32 5 18 98680 1132 1383 417 809 725 216 97532 52968 26126 10621 130 3.1 5 5 4000 2000 9 999999999 15 0 0 88 0.2 0 0 +6181200.0 33 5 17 98689 1175 1383 423 847 727 228 102200 53613 27686 11200 170 3.6 5 5 4500 2000 9 999999999 15 0 0 88 0.2 0 0 +6184800.0 34 7 19 98697 1136 1383 431 810 718 220 97461 52117 26591 10798 100 2.1 5 5 3500 2000 9 999999999 19 0 0 88 0.2 0 0 +6188400.0 33 6 19 98689 1017 1383 424 708 684 205 84283 50095 24559 9867 110 5.1 5 5 3500 2000 9 999999999 17 0 0 88 0.2 0 0 +6192000.0 33 7 20 98689 826 1383 419 577 771 117 69605 48468 14147 5668 80 3.1 3 3 3500 2000 9 999999999 19 0 0 88 0.2 0 0 +6195600.0 31 8 24 98672 576 1383 410 356 531 135 40583 33788 15472 5443 90 6.2 3 3 3500 2000 9 999999999 21 0 0 88 0.2 0 0 +6199200.0 29 9 29 98654 284 1383 406 119 220 74 13211 6572 8246 2529 100 3.1 5 5 2500 2000 9 999999999 23 0 0 88 0.2 0 0 +6202800.0 28 8.7 30 98645 0 1253 378 0 0 0 0 0 0 0 101 3.1 0 0 2500 2000 9 999999999 22 0 0 88 0.2 0 0 +6206400.0 27 8.3 31 98637 0 0 373 0 0 0 0 0 0 0 95 3.1 0 0 2500 2000 9 999999999 21 0 0 88 0.2 0 0 +6210000.0 26 8 32 98628 0 0 383 0 0 0 0 0 0 0 80 3.1 3 3 2500 2000 9 999999999 21 0 0 88 0.2 0 0 +6213600.0 25 9 36 98619 0 0 379 0 0 0 0 0 0 0 110 3.6 3 3 2500 2000 9 999999999 23 0 0 88 0.2 0 0 +6217200.0 24.5 8.5 36 98615 0 0 361 0 0 0 0 0 0 0 46 2.8 0 0 2350 2000 9 999999999 22 0 0 88 0.2 0 0 +6220800.0 24 8 36 98610 0 0 379 0 0 0 0 0 0 0 20 2.1 5 5 2200 2000 9 999999999 21 0 0 88 0.2 0 0 +6224400.0 24 7 34 98610 0 0 378 0 0 0 0 0 0 0 90 3.1 5 5 2200 2000 9 999999999 19 0 0 88 0.2 0 0 +6228000.0 23 6 33 98601 0 0 371 0 0 0 0 0 0 0 60 4.1 5 5 2400 2000 9 999999999 17 0 0 88 0.2 0 0 +6231600.0 23 7 36 98601 0 0 373 0 0 0 0 0 0 0 120 3.1 5 5 2600 2000 9 999999999 19 0 0 88 0.2 0 0 +6235200.0 23 6 33 98601 0 0 371 0 0 0 0 0 0 0 80 4.1 5 5 2800 2000 9 999999999 17 0 0 88 0.2 0 0 +6238800.0 23 6 33 98601 0 0 371 0 0 0 0 0 0 0 30 4.1 5 5 2400 2000 9 999999999 17 0 0 88 0.2 0 0 +6242400.0 21 5 35 98583 0 0 360 0 0 0 0 0 0 0 90 4.1 5 5 2200 2000 9 999999999 16 0 0 88 0.2 0 0 +6246000.0 21 4 33 98583 0 0 359 0 0 0 0 0 0 0 30 5.1 5 5 1800 2000 9 999999999 14 0 0 88 0.2 0 0 +6249600.0 22.3 3.7 29 98595 276 1214 344 124 275 69 13736 7994 7663 2367 204 5.1 0 0 2200 2000 9 999999999 14 0 0 88 0.2 0 0 +6253200.0 23.7 3.3 27 98607 569 1383 351 357 601 110 41394 36280 12787 4624 136 5.1 0 0 2600 2000 9 999999999 13 0 0 88 0.2 0 0 +6256800.0 25 3 24 98619 821 1383 378 543 673 144 64513 46000 17125 6732 50 5.1 5 5 3000 2000 9 999999999 13 0 0 88 0.2 0 0 +6260400.0 26 4 24 98628 1014 1383 384 708 718 181 85124 51179 21904 8908 60 5.1 5 5 3000 2000 9 999999999 14 0 0 88 0.2 0 0 +6264000.0 27 3 21 98637 1137 1383 388 816 730 214 98469 53807 26029 10584 80 5.1 5 5 3000 2000 9 999999999 13 0 0 88 0.2 0 0 +6267600.0 28 3 20 98646 1180 1383 393 853 734 226 103129 54451 27533 11141 80 5.1 5 5 3000 2000 9 999999999 13 0 0 88 0.2 0 0 +6271200.0 27 4 23 98637 1140 1383 389 817 688 249 97524 52876 29909 11951 90 6.7 5 5 3000 2000 9 999999999 14 0 0 88 0.2 0 0 +6274800.0 27.5 4.5 23 98641 1020 1383 370 766 811 167 92699 56276 20303 8327 209 6.4 0 0 4500 2000 9 999999999 15 0 0 88 0.2 0 0 +6278400.0 28 5 23 98646 829 1383 390 582 637 200 67402 48135 23242 8778 110 6.2 3 3 6000 2000 9 999999999 15 0 0 88 0.2 0 0 +6282000.0 27 4 23 98637 579 1383 412 189 72 159 21284 5073 17955 6106 70 4.1 9 9 3000 3000 9 999999999 14 0 0 88 0.2 0 0 +6285600.0 26 5 26 98628 287 1383 408 68 0 68 6662 0 6711 2387 90 6.7 9 9 3000 3000 9 999999999 15 0 0 88 0.2 0 0 +6289200.0 24 6 31 98610 0 1266 399 0 0 0 0 0 0 0 80 2.6 9 9 3000 3000 9 999999999 17 0 0 88 0.2 0 0 +6292800.0 23 7 36 98601 0 0 367 0 0 0 0 0 0 0 70 2.6 3 3 3000 2000 9 999999999 19 0 0 88 0.2 0 0 +6296400.0 22 7 38 98592 0 0 368 0 0 0 0 0 0 0 150 2.1 5 5 2500 2000 9 999999999 19 0 0 88 0.2 0 0 +6300000.0 22 8 41 98592 0 0 363 0 0 0 0 0 0 0 120 1.5 3 3 2500 2000 9 999999999 21 0 0 88 0.2 0 0 +6303600.0 21 9 46 98583 0 0 365 0 0 0 0 0 0 0 130 1.5 5 5 2500 2000 9 999999999 23 0 0 88 0.2 0 0 +6307200.0 21 8 43 98583 0 0 364 0 0 0 0 0 0 0 60 2.1 5 5 2500 2000 9 999999999 21 0 0 88 0.2 0 0 +6310800.0 20 8 46 98574 0 0 359 0 0 0 0 0 0 0 90 2.1 5 5 2500 2000 9 999999999 21 0 0 88 0.2 0 0 +6314400.0 20 6 40 98574 0 0 357 0 0 0 0 0 0 0 60 2.6 5 5 2500 2000 9 999999999 17 0 0 88 0.2 0 0 +6318000.0 19 9 52 98564 0 0 355 0 0 0 0 0 0 0 201 0 5 5 2400 2000 9 999999999 23 0 0 88 0.2 0 0 +6321600.0 19 8 49 98564 0 0 354 0 0 0 0 0 0 0 47 0 5 5 2400 2000 9 999999999 21 0 0 88 0.2 0 0 +6325200.0 19 5 40 98564 0 0 371 0 0 0 0 0 0 0 130 4.1 9 9 2200 3000 0 919999999 16 0 0 88 0.2 0 0 +6328800.0 20 6 40 98574 0 0 357 0 0 0 0 0 0 0 70 2.1 5 5 2200 2000 9 999999999 17 0 0 88 0.2 0 0 +6332400.0 19 8 49 98564 0 0 354 0 0 0 0 0 0 0 283 0 5 5 2000 2000 9 999999999 21 0 0 88 0.2 0 0 +6336000.0 21 8 43 98583 282 1240 358 125 264 71 13852 7612 7915 2448 110 2.1 3 3 2000 2000 9 999999999 21 0 0 88 0.2 0 0 +6339600.0 24 6 31 98610 574 1382 371 356 532 135 40565 34274 15426 5424 70 3.1 3 3 2200 2000 9 999999999 17 0 0 88 0.2 0 0 +6343200.0 25 6 30 98619 826 1382 376 578 767 119 69634 48835 14423 5771 40 3.6 3 3 2000 2000 9 999999999 17 0 0 88 0.2 0 0 +6346800.0 28 7 26 98646 1020 1382 376 762 856 130 93875 54790 16111 6712 170 2.1 0 0 2200 2000 9 999999999 19 0 0 88 0.2 0 0 +6350400.0 28 7 26 98646 1142 1382 376 875 794 219 105444 57448 26485 10764 130 2.6 0 0 2200 2000 9 999999999 19 0 0 88 0.2 0 0 +6354000.0 29 8 27 98654 1184 1382 399 901 873 153 112150 56427 19072 7954 200 2.6 3 3 2500 2000 9 999999999 21 0 0 88 0.2 0 0 +6357600.0 30 8 25 98663 1144 1382 404 865 866 147 107314 55803 18335 7669 140 1 3 3 2800 2000 9 999999999 21 0 0 88 0.2 0 0 +6361200.0 31 6 21 98672 1024 1382 407 758 855 124 93776 54464 15373 6419 180 2.1 3 3 3500 2000 9 999999999 17 0 0 88 0.2 0 0 +6364800.0 32 8 23 98680 832 1382 415 582 770 118 70183 48138 14258 5725 260 3.6 3 3 3500 2000 9 999999999 21 0 0 88 0.2 0 0 +6368400.0 31 7 22 98672 582 1382 408 362 591 113 41885 35274 13131 4774 10 1.5 3 3 3500 2000 9 999999999 19 0 0 88 0.2 0 0 +6372000.0 29 6 23 98654 290 1382 380 133 291 72 14784 9031 8018 2498 350 4.1 0 0 3200 2000 9 999999999 17 0 0 88 0.2 0 0 +6375600.0 27 8 30 98637 0 1279 372 0 0 0 0 0 0 0 20 1.5 0 0 2400 2000 9 999999999 21 0 0 88 0.2 0 0 +6379200.0 26 8 32 98628 0 0 367 0 0 0 0 0 0 0 244 1.8 0 0 2300 2000 9 999999999 21 0 0 88 0.2 0 0 +6382800.0 25 8 34 98619 0 0 362 0 0 0 0 0 0 0 30 2.1 0 0 2200 2000 9 999999999 21 0 0 88 0.2 0 0 +6386400.0 25 9 36 98619 0 0 364 0 0 0 0 0 0 0 10 1.5 0 0 2000 2000 9 999999999 23 0 0 88 0.2 0 0 +6390000.0 25 7 32 98619 0 0 361 0 0 0 0 0 0 0 340 4.1 0 0 2500 2000 9 999999999 19 0 0 88 0.2 0 0 +6393600.0 24 9 38 98610 0 0 359 0 0 0 0 0 0 0 310 1.5 0 0 2500 2000 9 999999999 23 0 0 88 0.2 0 0 +6397200.0 23 5 31 98601 0 0 349 0 0 0 0 0 0 0 320 3.1 0 0 2500 2000 9 999999999 16 0 0 88 0.2 0 0 +6400800.0 21 8 43 98583 0 0 343 0 0 0 0 0 0 0 320 1.5 0 0 2500 2000 9 999999999 21 0 0 88 0.2 0 0 +6404400.0 20.5 7.5 43 98578 0 0 347 0 0 0 0 0 0 0 274 1.5 1 1 2350 2000 9 999999999 20 0 0 88 0.2 0 0 +6408000.0 20 7 43 98574 0 0 338 0 0 0 0 0 0 0 350 1.5 0 0 2200 2000 9 999999999 19 0 0 88 0.2 0 0 +6411600.0 18 6 45 98555 0 0 338 0 0 0 0 0 0 0 123 2 2 2 1900 2000 9 999999999 17 0 0 88 0.2 0 0 +6415200.0 16 5 48 98536 0 0 317 0 0 0 0 0 0 0 230 2.6 0 0 1600 2000 9 999999999 16 0 0 88 0.2 0 0 +6418800.0 16.5 5 46 98541 0 0 330 0 0 0 0 0 0 0 133 2 2 2 1150 2000 9 999999999 16 0 0 88 0.2 0 0 +6422400.0 17 5 45 98546 288 1266 322 131 286 71 14571 8883 7970 2478 260 1.5 0 0 700 2000 9 999999999 16 0 0 88 0.2 0 0 +6426000.0 21 4 33 98583 580 1381 339 366 557 132 41900 36140 15192 5377 300 3.6 0 0 1100 2000 9 999999999 14 0 0 88 0.2 0 0 +6429600.0 23 4 29 98601 831 1381 348 592 792 115 71649 50616 13948 5600 310 5.1 0 0 2200 2000 9 999999999 14 0 0 88 0.2 0 0 +6433200.0 25.5 3 23 98623 1025 1381 359 771 785 189 92603 56828 22752 9237 106 5.6 0 0 2850 2000 9 999999999 13 0 0 88 0.2 0 0 +6436800.0 28 2 19 98646 1146 1381 370 886 794 227 106734 59651 27448 11094 320 6.2 0 0 3500 2000 9 999999999 11 0 0 88 0.2 0 0 +6440400.0 28 1 17 98646 1188 1381 368 927 797 241 111779 60713 29205 11732 320 6.7 0 0 4500 2000 9 999999999 10 0 0 88 0.2 0 0 +6444000.0 28.5 0.5 16 98650 1148 1381 370 890 794 229 107122 60224 27740 11194 75 7.2 0 0 4750 2000 9 999999999 10 0 0 88 0.2 0 0 +6447600.0 29 0 15 98654 1027 1381 388 768 774 191 92177 57024 23092 9358 310 7.7 3 3 5000 2000 9 999999999 9 0 0 88 0.2 0 0 +6451200.0 29 2 18 98654 835 1381 397 556 592 198 64640 45205 23123 8766 320 4.1 5 5 5000 2000 9 999999999 11 0 0 88 0.2 0 0 +6454800.0 28 2 19 98646 585 1381 392 346 497 136 39588 32974 15577 5503 290 6.2 5 5 5000 2000 9 999999999 11 0 0 88 0.2 0 0 +6458400.0 27 2 20 98637 293 1381 386 126 235 76 14006 8165 8501 2615 300 4.6 5 5 4500 2000 9 999999999 11 0 0 88 0.2 0 0 +6462000.0 25 3 24 98619 0 1291 378 0 0 0 0 0 0 0 300 3.6 5 5 4000 2000 9 999999999 13 0 0 88 0.2 0 0 +6465600.0 23 4 29 98601 0 0 363 0 0 0 0 0 0 0 290 3.1 3 3 3000 2000 9 999999999 14 0 0 88 0.2 0 0 +6469200.0 21 5 35 98583 0 0 355 0 0 0 0 0 0 0 270 2.6 3 3 2800 2000 9 999999999 16 0 0 88 0.2 0 0 +6472800.0 21 5 35 98583 0 0 355 0 0 0 0 0 0 0 290 2.6 3 3 2500 2000 9 999999999 16 0 0 88 0.2 0 0 +6476400.0 20 5 37 98574 0 0 335 0 0 0 0 0 0 0 230 1 0 0 2200 2000 9 999999999 16 0 0 88 0.2 0 0 +6480000.0 19 4 37 98564 0 0 330 0 0 0 0 0 0 0 260 2.1 0 0 2000 2000 9 999999999 14 0 0 88 0.2 0 0 +6483600.0 18.5 4 38 98560 0 0 327 0 0 0 0 0 0 0 107 1.7 0 0 2500 2000 9 999999999 14 0 0 88 0.2 0 0 +6487200.0 18 4 39 98555 0 0 325 0 0 0 0 0 0 0 186 1.4 0 0 3000 2000 9 999999999 14 0 0 88 0.2 0 0 +6490800.0 17 4 42 98546 0 0 321 0 0 0 0 0 0 0 200 1 0 0 1500 2000 9 999999999 14 0 0 88 0.2 0 0 +6494400.0 16 3.5 43 98536 0 0 322 0 0 0 0 0 0 0 302 1 1 1 1500 2000 9 999999999 14 0 0 88 0.2 0 0 +6498000.0 15 3 44 98527 0 0 311 0 0 0 0 0 0 0 240 1 0 0 1500 2000 9 999999999 13 0 0 88 0.2 0 0 +6501600.0 13.4 7.6 68 98127 0 0 309 0 0 0 0 0 0 0 50 2 0 0 4000 2000 9 999999999 20 0 0 88 0.2 0 0 +6505200.0 15 2 41 98527 0 0 310 0 0 0 0 0 0 0 240 2.1 0 0 2000 2000 9 999999999 12 0 0 88 0.2 0 0 +6508800.0 17 1 34 98546 293 1292 317 136 251 82 14974 9410 9124 2748 260 3.1 0 0 2400 2000 9 999999999 11 0 0 88 0.2 0 0 +6512400.0 21 3 30 98583 586 1380 338 372 560 134 42530 36777 15384 5453 260 2.6 0 0 2800 2000 9 999999999 13 0 0 88 0.2 0 0 +6516000.0 24 4 27 98610 837 1380 353 597 793 116 72242 50774 14067 5655 260 3.6 0 0 3000 2000 9 999999999 14 0 0 88 0.2 0 0 +6519600.0 27 5 24 98637 1029 1380 369 773 785 188 92910 56068 22642 9213 250 3.6 0 0 3000 2000 9 999999999 15 0 0 88 0.2 0 0 +6523200.0 28 4 22 98646 1151 1380 372 888 794 225 106973 58883 27291 11046 310 4.1 0 0 3000 2000 9 999999999 14 0 0 88 0.2 0 0 +6526800.0 29 4 20 98654 1192 1380 377 927 797 238 111819 59563 28866 11624 280 4.1 0 0 4000 2000 9 999999999 14 0 0 88 0.2 0 0 +6530400.0 31 4 18 98672 1152 1380 387 888 794 226 107067 58906 27332 11061 280 6.2 0 0 4000 2000 9 999999999 14 0 0 88 0.2 0 0 +6534000.0 31 4 18 98672 1031 1380 387 776 785 189 93212 56539 22851 9289 290 2.6 0 0 4500 2000 9 999999999 14 0 0 88 0.2 0 0 +6537600.0 31 4 18 98672 839 1380 387 599 794 116 72506 50868 14076 5661 280 2.6 0 0 4500 2000 9 999999999 14 0 0 88 0.2 0 0 +6541200.0 30 4 19 98663 588 1380 382 373 563 133 42746 36720 15317 5444 310 6.2 0 0 4000 2000 9 999999999 14 0 0 88 0.2 0 0 +6544800.0 29 5 22 98654 296 1380 378 137 297 73 15243 9711 8173 2554 320 4.1 0 0 3500 2000 9 999999999 15 0 0 88 0.2 0 0 +6548400.0 27 6 26 98637 0 1304 370 0 0 0 0 0 0 0 350 2.1 0 0 2800 2000 9 999999999 17 0 0 88 0.2 0 0 +6552000.0 26 8 32 98628 0 0 367 0 0 0 0 0 0 0 287 0 0 0 2600 2000 9 999999999 21 0 0 88 0.2 0 0 +6555600.0 24 9 38 98610 0 0 359 0 0 0 0 0 0 0 93 0 0 0 2400 2000 9 999999999 23 0 0 88 0.2 0 0 +6559200.0 24 7 34 98610 0 0 356 0 0 0 0 0 0 0 268 0 0 0 1900 2000 9 999999999 19 0 0 88 0.2 0 0 +6562800.0 23 7 36 98601 0 0 352 0 0 0 0 0 0 0 160 0 0 0 1700 2000 9 999999999 19 0 0 88 0.2 0 0 +6566400.0 21 7 40 98583 0 0 342 0 0 0 0 0 0 0 345 0 0 0 1700 2000 9 999999999 19 0 0 88 0.2 0 0 +6570000.0 21 7 40 98583 0 0 342 0 0 0 0 0 0 0 277 0 0 0 1500 2000 9 999999999 19 0 0 88 0.2 0 0 +6573600.0 20 7 43 98574 0 0 338 0 0 0 0 0 0 0 322 0 0 0 1400 2000 9 999999999 19 0 0 88 0.2 0 0 +6577200.0 19 6 43 98564 0 0 332 0 0 0 0 0 0 0 233 0 0 0 1400 2000 9 999999999 17 0 0 88 0.2 0 0 +6580800.0 19 5 40 98564 0 0 331 0 0 0 0 0 0 0 163 0 0 0 1400 2000 9 999999999 16 0 0 88 0.2 0 0 +6584400.0 18 6 45 98555 0 0 327 0 0 0 0 0 0 0 331 0.3 0 0 1600 2000 9 999999999 17 0 0 88 0.2 0 0 +6588000.0 17 6 48 98546 0 0 323 0 0 0 0 0 0 0 73 0.6 0 0 1400 2000 9 999999999 17 0 0 88 0.2 0 0 +6591600.0 17 5 45 98546 0 0 322 0 0 0 0 0 0 0 184 0.9 0 0 1400 2000 9 999999999 16 0 0 88 0.2 0 0 +6595200.0 20 6 40 98573 299 1318 343 139 297 74 15432 9810 8272 2589 91 1.2 1 1 1450 2000 9 999999999 17 0 0 88 0.2 0 0 +6598800.0 23 7 36 98601 591 1379 352 374 565 132 42834 35942 15147 5413 270 1.5 0 0 1500 2000 9 999999999 19 0 0 88 0.2 0 0 +6602400.0 25.7 6.3 29 98625 842 1379 364 599 797 113 72704 49896 13715 5535 108 2.5 0 0 1666 2000 9 999999999 18 0 0 88 0.2 0 0 +6606000.0 28.3 5.7 24 98648 1034 1379 376 777 785 188 93377 55823 22710 9250 137 3.6 0 0 1833 2000 9 999999999 16 0 0 88 0.2 0 0 +6609600.0 31 5 19 98672 1155 1379 389 891 794 225 107357 58491 27301 11055 280 4.6 0 0 2000 2000 9 999999999 15 0 0 88 0.2 0 0 +6613200.0 32 6 20 98680 1197 1379 395 928 797 236 111991 58697 28686 11570 290 4.1 0 0 2500 2000 9 999999999 17 0 0 88 0.2 0 0 +6616800.0 32 5 18 98680 1155 1379 394 891 794 225 107353 58493 27303 11056 300 3.6 0 0 3500 2000 9 999999999 15 0 0 88 0.2 0 0 +6620400.0 32 5 18 98680 1034 1379 394 778 785 189 93467 56144 22821 9288 290 5.7 0 0 3500 2000 9 999999999 15 0 0 88 0.2 0 0 +6624000.0 32 5 18 98680 842 1379 394 600 795 115 72785 50509 13966 5627 280 5.7 0 0 3500 2000 9 999999999 15 0 0 88 0.2 0 0 +6627600.0 32 5 18 98680 591 1379 394 375 565 133 42971 36594 15296 5452 300 4.1 0 0 3500 2000 9 999999999 15 0 0 88 0.2 0 0 +6631200.0 30 6 22 98663 299 1379 385 138 298 74 15422 9799 8262 2586 320 4.1 0 0 3500 2000 9 999999999 17 0 0 88 0.2 0 0 +6634800.0 29 6 23 98654 0 1317 380 0 0 0 0 0 0 0 310 3.1 0 0 2500 2000 9 999999999 17 0 0 88 0.2 0 0 +6638400.0 27 7 28 98637 0 0 371 0 0 0 0 0 0 0 320 2.1 0 0 2000 2000 9 999999999 19 0 0 88 0.2 0 0 +6642000.0 27 6 26 98637 0 0 370 0 0 0 0 0 0 0 320 1.5 0 0 2000 2000 9 999999999 17 0 0 88 0.2 0 0 +6645600.0 26 5 26 98628 0 0 364 0 0 0 0 0 0 0 360 2.1 0 0 1500 2000 9 999999999 15 0 0 88 0.2 0 0 +6649200.0 24.5 7 33 98615 0 0 359 0 0 0 0 0 0 0 40 1.8 0 0 1450 2000 9 999999999 19 0 0 88 0.2 0 0 +6652800.0 23 9 41 98601 0 0 354 0 0 0 0 0 0 0 200 1.5 0 0 1400 2000 9 999999999 23 0 0 88 0.2 0 0 +6656400.0 21 6 38 98583 0 0 341 0 0 0 0 0 0 0 43 0 0 0 1400 2000 9 999999999 17 0 0 88 0.2 0 0 +6660000.0 20 8 46 98574 0 0 339 0 0 0 0 0 0 0 181 0 0 0 1400 2000 9 999999999 21 0 0 88 0.2 0 0 +6663600.0 20 7 43 98574 0 0 338 0 0 0 0 0 0 0 13 0 0 0 1500 2000 9 999999999 19 0 0 88 0.2 0 0 +6667200.0 19.5 7 44 98569 0 0 342 0 0 0 0 0 0 0 212 0 1 1 1500 2000 9 999999999 19 0 0 88 0.2 0 0 +6670800.0 19 7 46 98564 0 0 333 0 0 0 0 0 0 0 241 0 0 0 1500 2000 9 999999999 19 0 0 88 0.2 0 0 +6674400.0 19 5 40 98564 0 0 350 0 0 0 0 0 0 0 71 0 5 5 1500 2000 9 999999999 16 0 0 88 0.2 0 0 +6678000.0 21 5.5 36 98582 0 0 341 0 0 0 0 0 0 0 249 0.6 0 0 1450 2000 9 999999999 16 0 0 88 0.2 0 0 +6681600.0 23 6 33 98601 305 1344 350 143 304 75 15888 10361 8416 2643 153 1.3 0 0 1400 2000 9 999999999 17 0 0 88 0.2 0 0 +6685200.0 25 6.5 31 98619 597 1379 361 379 619 111 44064 37043 12944 4758 159 1.9 0 0 1350 2000 9 999999999 18 0 0 88 0.2 0 0 +6688800.0 27 7 28 98637 847 1379 393 561 646 164 66215 44871 19455 7629 330 2.6 5 5 1300 2000 9 999999999 19 0 0 88 0.2 0 0 +6692400.0 31 7 22 98672 1039 1379 415 726 588 282 84543 47710 33082 12732 250 2.6 5 5 2000 2000 9 999999999 19 0 0 88 0.2 0 0 +6696000.0 33 6 19 98689 1160 1379 449 461 88 387 53329 7906 45041 16519 350 2.6 9 9 2500 6000 9 999999999 17 0 0 88 0.2 0 0 +6699600.0 33 4 16 98689 1201 1379 446 482 52 437 55589 4898 50718 18043 300 4.1 9 9 2500 6000 9 999999999 14 0 0 88 0.2 0 0 +6703200.0 34 7 19 98697 1159 1379 457 460 51 417 52856 4712 48250 17302 250 2.1 9 9 2800 6000 9 999999999 19 0 0 88 0.2 0 0 +6706800.0 33 7 20 98689 1038 1379 451 402 74 346 46053 6575 39887 14609 270 3.6 9 9 3500 6000 9 999999999 19 0 0 88 0.2 0 0 +6710400.0 33 6 19 98689 845 1379 449 311 66 270 35252 5605 30828 10982 270 3.1 9 9 3200 6000 9 999999999 17 0 0 88 0.2 0 0 +6714000.0 32 7 21 98680 594 1379 445 194 34 179 21712 2492 20167 6735 270 2.1 9 9 3200 6000 9 999999999 19 0 0 88 0.2 0 0 +6717600.0 30.7 7.3 23 98669 302 1379 390 140 239 88 15383 9055 9669 2901 247 1.4 0 0 2800 6000 9 999999999 19 0 0 88 0.2 0 0 +6721200.0 29.3 7.7 26 98657 0 1329 383 0 0 0 0 0 0 0 308 0.7 0 0 2400 6000 9 999999999 20 0 0 88 0.2 0 0 +6724800.0 28 8 28 98646 0 0 400 0 0 0 0 0 0 0 64 0 5 5 2000 2000 9 999999999 21 0 0 88 0.2 0 0 +6728400.0 27.5 7 27 98641 0 0 374 0 0 0 0 0 0 0 52 0.8 0 0 1400 2000 9 999999999 19 0 0 88 0.2 0 0 +6732000.0 27 6 26 98637 0 0 392 0 0 0 0 0 0 0 140 1.5 5 5 800 6000 9 999999999 17 0 0 88 0.2 0 0 +6735600.0 26.5 6.8 28 98632 0 0 368 0 0 0 0 0 0 0 172 1.6 0 0 850 6000 9 999999999 18 0 0 88 0.2 0 0 +6739200.0 26 7.5 31 98628 0 0 367 0 0 0 0 0 0 0 272 1.8 0 0 900 6000 9 999999999 20 0 0 88 0.2 0 0 +6742800.0 25.5 8.2 33 98623 0 0 365 0 0 0 0 0 0 0 271 1.9 0 0 950 6000 9 999999999 21 0 0 88 0.2 0 0 +6746400.0 25 9 36 98619 0 0 385 0 0 0 0 0 0 0 90 2.1 5 5 1000 2000 9 999999999 23 0 0 88 0.2 0 0 +6750000.0 24 9 38 98610 0 0 374 0 0 0 0 0 0 0 100 1 3 3 1300 3000 9 999999999 23 0 0 88 0.2 0 0 +6753600.0 23.5 8.5 38 98606 0 0 356 0 0 0 0 0 0 0 160 1 0 0 1400 3000 9 999999999 22 0 0 88 0.2 0 0 +6757200.0 23 8 38 98601 0 0 374 0 0 0 0 0 0 0 140 1 5 5 1500 2000 9 999999999 21 0 0 88 0.2 0 0 +6760800.0 23 7 36 98601 0 0 373 0 0 0 0 0 0 0 160 1 5 5 1700 2000 9 999999999 19 0 0 88 0.2 0 0 +6764400.0 24 7.5 35 98610 0 0 357 0 0 0 0 0 0 0 55 1.2 0 0 1600 2000 9 999999999 20 0 0 88 0.2 0 0 +6768000.0 25 8 34 98619 311 1370 384 136 241 81 15069 8697 9064 2814 170 1.5 5 5 1500 2000 9 999999999 21 0 0 88 0.2 0 0 +6771600.0 27 7 28 98637 603 1378 393 357 489 143 40694 32255 16358 5805 150 3.1 5 5 2100 2000 9 999999999 19 0 0 88 0.2 0 0 +6775200.0 30 6 22 98663 853 1378 408 567 608 190 66163 44685 22311 8595 130 4.1 5 5 2600 2000 9 999999999 17 0 0 88 0.2 0 0 +6778800.0 31 5 19 98672 1044 1378 405 777 822 154 94933 55375 18866 7818 170 5.1 3 3 2800 2000 9 999999999 15 0 0 88 0.2 0 0 +6782400.0 33 6 19 98689 1164 1378 418 886 843 173 109013 57164 21444 8881 140 5.1 3 3 3000 2000 9 999999999 17 0 0 88 0.2 0 0 +6786000.0 34 7 19 98697 1205 1378 431 869 703 254 104401 52581 30704 12285 120 4.1 5 5 3500 2000 9 999999999 19 0 0 88 0.2 0 0 +6789600.0 34 7 19 98697 1162 1378 431 832 693 248 99654 51889 29829 11955 140 5.1 5 5 3500 2000 9 999999999 19 0 0 88 0.2 0 0 +6793200.0 34.5 8 20 98701 1041 1378 411 780 815 164 94728 54780 20056 8280 2 5.1 0 0 6250 2000 9 999999999 21 0 0 88 0.2 0 0 +6796800.0 35 9 20 98705 848 1378 440 560 614 182 65496 43541 21387 8287 1 5.1 5 5 9000 2000 9 999999999 23 0 0 88 0.2 0 0 +6800400.0 33 8 21 98689 597 1378 427 352 483 142 40074 31562 16260 5757 120 5.1 5 5 3500 2000 9 999999999 21 0 0 88 0.2 0 0 +6804000.0 32 9 24 98680 305 1378 423 132 233 80 14575 8017 8896 2754 70 4.6 5 5 3000 2000 9 999999999 23 0 0 88 0.2 0 0 +6807600.0 30 8 25 98663 0 1342 410 0 0 0 0 0 0 0 70 5.1 5 5 2500 2000 9 999999999 21 0 0 88 0.2 0 0 +6811200.0 28 9 30 98646 0 0 395 0 0 0 0 0 0 0 90 5.1 3 3 2000 2000 9 999999999 23 0 0 88 0.2 0 0 +6814800.0 27 11 37 98637 0 0 392 0 0 0 0 0 0 0 90 3.6 3 3 2000 2000 9 999999999 28 0 0 88 0.2 0 0 +6818400.0 26 11 39 98628 0 0 393 0 0 0 0 0 0 0 100 3.6 5 5 2000 2000 9 999999999 28 0 0 88 0.2 0 0 +6822000.0 25 9 36 98619 0 0 385 0 0 0 0 0 0 0 30 4.6 5 5 1500 2000 9 999999999 23 0 0 88 0.2 0 0 +6825600.0 25 7 32 98619 0 0 383 0 0 0 0 0 0 0 30 3.1 5 5 2200 2000 9 999999999 19 0 0 88 0.2 0 0 +6829200.0 24 5 29 98610 0 0 375 0 0 0 0 0 0 0 70 4.1 5 5 2400 2000 9 999999999 15 0 0 88 0.2 0 0 +6832800.0 24 5 29 98610 0 0 369 0 0 0 0 0 0 0 70 5.1 3 3 2500 2000 9 999999999 15 0 0 88 0.2 0 0 +6836400.0 23 7 36 98601 0 0 367 0 0 0 0 0 0 0 110 2.6 3 3 2500 2000 9 999999999 19 0 0 88 0.2 0 0 +6840000.0 22 8 41 98592 0 0 369 0 0 0 0 0 0 0 300 1.5 5 5 2500 2000 9 999999999 21 0 0 88 0.2 0 0 +6843600.0 21 7 40 98583 0 0 363 0 0 0 0 0 0 0 170 1 5 5 2500 2000 9 999999999 19 0 0 88 0.2 0 0 +6847200.0 20 7 43 98574 0 0 358 0 0 0 0 0 0 0 230 1 5 5 2200 2000 9 999999999 19 0 0 88 0.2 0 0 +6850800.0 20 9 49 98574 3 19 381 1 0 1 55 0 55 23 320 2.1 9 9 1400 3000 9 999999999 23 0 0 88 0.2 0 0 +6854400.0 22 7.5 39 98592 317 1377 354 150 250 92 16478 10211 10186 3075 356 2.8 1 1 1850 3000 9 999999999 20 0 0 88 0.2 0 0 +6858000.0 24 6 31 98610 608 1377 399 200 73 168 22600 5230 19036 6546 90 3.6 9 9 2300 3000 9 999999999 17 0 0 88 0.2 0 0 +6861600.0 26 6 28 98628 858 1377 387 570 390 327 63842 36003 36842 12435 210 3.1 5 5 2500 2000 9 999999999 17 0 0 88 0.2 0 0 +6865200.0 25 7 32 98619 1049 1377 405 407 83 344 46734 7275 39731 14646 240 4.1 9 9 1600 3000 9 999999999 19 0 0 88 0.2 0 0 +6868800.0 27 8 30 98637 1168 1377 394 836 597 329 97925 49231 38832 14850 210 2.1 5 5 2000 2000 9 999999999 21 0 0 88 0.2 0 0 +6872400.0 28 10 32 98646 1208 1377 402 868 710 244 104492 51239 29578 11909 230 2.1 5 5 2000 2000 9 999999999 25 0 0 88 0.2 0 0 +6876000.0 29 6 23 98654 1166 1377 402 836 715 231 100756 52602 27978 11306 260 5.1 5 5 2500 2000 9 999999999 17 0 0 88 0.2 0 0 +6879600.0 30 5 21 98663 1044 1377 406 732 586 287 85266 48326 33654 12921 260 4.6 5 5 2800 2000 9 999999999 15 0 0 88 0.2 0 0 +6883200.0 30 3 18 98663 851 1377 427 315 58 279 35688 5030 31818 11266 230 5.1 9 9 3500 3000 9 999999999 13 0 0 88 0.2 0 0 +6886800.0 29 4 20 98654 600 1377 423 197 10 193 21983 756 21614 7092 250 5.1 9 9 4000 3000 9 999999999 14 0 0 88 0.2 0 0 +6890400.0 27 5 24 98637 308 1377 414 74 0 74 7321 0 7375 2630 270 3.1 9 9 3500 6000 9 999999999 15 0 0 88 0.2 0 0 +6894000.0 26 9 34 98628 0 1354 414 0 0 0 0 0 0 0 260 1 9 9 2500 6000 9 999999999 23 0 0 88 0.2 0 0 +6897600.0 25 10 39 98619 0 0 387 0 0 0 0 0 0 0 290 2.1 5 5 2200 2000 9 999999999 25 0 0 88 0.2 0 0 +6901200.0 24 9.5 40 98610 0 0 366 0 0 0 0 0 0 0 137 1.8 1 1 1850 2000 9 999999999 24 0 0 88 0.2 0 0 +6904800.0 23 9 41 98601 0 0 369 0 0 0 0 0 0 0 310 1.5 3 3 1500 2000 9 999999999 23 0 0 88 0.2 0 0 +6908400.0 23 9 41 98601 0 0 369 0 0 0 0 0 0 0 303 0 3 3 1500 2000 9 999999999 23 0 0 88 0.2 0 0 +6912000.0 22 8 41 98592 0 0 363 0 0 0 0 0 0 0 269 0 3 3 1500 2000 9 999999999 21 0 0 88 0.2 0 0 +6915600.0 21 8 43 98583 0 0 358 0 0 0 0 0 0 0 236 0 3 3 1300 2000 9 999999999 21 0 0 88 0.2 0 0 +6919200.0 20 9 49 98574 0 0 360 0 0 0 0 0 0 0 360 4.1 5 5 1000 2000 9 999999999 23 0 0 88 0.2 0 0 +6922800.0 20 7 43 98574 0 0 358 0 0 0 0 0 0 0 180 2.1 5 5 1000 2000 9 999999999 19 0 0 88 0.2 0 0 +6926400.0 20 6 40 98574 0 0 357 0 0 0 0 0 0 0 200 2.1 5 5 1000 2000 9 999999999 17 0 0 88 0.2 0 0 +6930000.0 18 8 52 98555 0 0 349 0 0 0 0 0 0 0 284 0 5 5 500 2000 9 999999999 21 0 0 88 0.2 0 0 +6933600.0 19 7.5 47 98564 0 0 345 0 0 0 0 0 0 0 172 0.9 2 2 775 2000 9 999999999 20 0 0 88 0.2 0 0 +6937200.0 20 7 43 98574 10 46 344 3 0 3 257 0 258 101 214 1.8 1 1 1050 2000 9 999999999 19 0 0 88 0.2 0 0 +6940800.0 21 6.5 39 98583 323 1376 348 154 319 79 17202 11848 8869 2812 250 2.7 1 1 1325 2000 9 999999999 18 0 0 88 0.2 0 0 +6944400.0 22 6 35 98592 614 1376 361 388 596 122 44925 37284 14142 5185 250 3.6 3 3 1600 2000 9 999999999 17 0 0 88 0.2 0 0 +6948000.0 25 6 30 98619 863 1376 376 610 770 127 73588 49809 15332 6185 240 4.1 3 3 2200 2000 9 999999999 17 0 0 88 0.2 0 0 +6951600.0 27 8 30 98637 1054 1376 388 781 846 133 96529 53803 16518 6911 260 2.1 3 3 2500 2000 9 999999999 21 0 0 88 0.2 0 0 +6955200.0 29 8 27 98654 1173 1376 399 890 865 153 110650 55974 19115 7973 280 4.1 3 3 3000 2000 9 999999999 21 0 0 88 0.2 0 0 +6958800.0 29 6 23 98654 1212 1376 396 930 796 228 112801 57792 27847 11277 250 4.1 3 3 4000 2000 9 999999999 17 0 0 88 0.2 0 0 +6962400.0 30 14 38 98663 1169 1376 412 879 853 154 108800 51991 19091 7987 250 4.1 3 3 4000 2000 9 999999999 38 0 0 88 0.2 0 0 +6966000.0 29 14 40 98654 1047 1376 407 768 833 133 94480 49845 16489 6915 310 4.1 3 3 4500 2000 9 999999999 38 0 0 88 0.2 0 0 +6969600.0 30 14 38 98663 854 1376 412 594 766 118 71655 44985 14296 5800 270 4.6 3 3 4500 2000 9 999999999 38 0 0 88 0.2 0 0 +6973200.0 29 14 40 98654 603 1376 407 373 608 107 43417 33220 12446 4630 280 4.6 3 3 5000 2000 9 999999999 38 0 0 88 0.2 0 0 +6976800.0 29 14 40 98654 311 1376 390 144 278 81 15863 8877 8960 2797 310 4.6 0 0 4500 2000 9 999999999 38 0 0 88 0.2 0 0 +6980400.0 28 15 45 98646 0 1366 386 0 0 0 0 0 0 0 300 4.1 0 0 3500 2000 9 999999999 42 0 0 88 0.2 0 0 +6984000.0 27 16 51 98637 0 0 382 0 0 0 0 0 0 0 280 3.1 0 0 2500 2000 9 999999999 46 0 0 88 0.2 0 0 +6987600.0 26 17 58 98628 0 0 378 0 0 0 0 0 0 0 195 2 0 0 2350 2000 9 999999999 51 0 0 88 0.2 0 0 +6991200.0 25 18 65 98619 0 0 374 0 0 0 0 0 0 0 20 1 0 0 2200 2000 9 999999999 57 0 0 88 0.2 0 0 +6994800.0 24 18 69 98610 0 0 369 0 0 0 0 0 0 0 337 0 0 0 2000 2000 9 999999999 57 0 0 88 0.2 0 0 +6998400.0 23 19 78 98601 0 0 366 0 0 0 0 0 0 0 273 0 0 0 1800 2000 9 999999999 63 0 0 88 0.2 0 0 +7002000.0 22 18 78 98592 0 0 360 0 0 0 0 0 0 0 78 0 0 0 1800 2000 9 999999999 57 0 0 88 0.2 0 0 +7005600.0 21 19 88 98583 0 0 356 0 0 0 0 0 0 0 135 0 0 0 1500 2000 9 999999999 63 0 0 88 0.2 0 0 +7009200.0 20 18 88 98574 0 0 350 0 0 0 0 0 0 0 41 0 0 0 1000 2000 9 999999999 57 0 0 88 0.2 0 0 +7012800.0 19 18 94 98564 0 0 345 0 0 0 0 0 0 0 27 0 0 0 800 2000 9 999999999 57 0 0 88 0.2 0 0 +7016400.0 18 17.5 97 98555 0 0 392 0 0 0 0 0 0 0 111 0 10 10 650 2000 9 999999999 55 0 0 88 0.2 0 0 +7020000.0 17 17 100 98546 0 0 335 0 0 0 0 0 0 0 19 0 0 0 500 2000 9 999999999 52 0 0 88 0.2 0 0 +7023600.0 18.3 15.7 84 98558 17 73 373 3 0 3 269 0 270 107 324 1.2 8 8 533 2000 9 999999999 46 0 0 88 0.2 0 0 +7027200.0 19.7 14.3 71 98570 329 1375 368 138 239 81 15346 7996 9035 2881 95 2.4 6 6 566 2000 9 999999999 40 0 0 88 0.2 0 0 +7030800.0 21 13 60 98583 619 1375 349 393 542 148 44671 34498 16968 6065 240 3.6 0 0 600 2000 9 999999999 35 0 0 88 0.2 0 0 +7034400.0 25 16 57 98619 868 1375 372 612 810 100 74818 44232 12284 5045 310 4.1 0 0 1000 2000 9 999999999 46 0 0 88 0.2 0 0 +7038000.0 27 15 48 98637 1058 1375 381 786 863 122 84885 89795 16534 3073 280 4.1 0 0 1500 2000 9 999999999 42 0 0 88 0.2 0 0 +7041600.0 30 13 35 98663 1177 1375 394 899 793 220 108487 54118 26648 10865 290 3.6 0 0 2500 2000 9 999999999 34 0 0 88 0.2 0 0 +7045200.0 31 10 27 98672 1216 1375 395 939 796 236 113575 56638 28642 11581 280 4.1 0 0 3000 2000 9 999999999 25 0 0 88 0.2 0 0 +7048800.0 31 9 26 98672 1173 1375 411 889 862 154 110406 55380 19203 8010 340 1.5 3 3 4000 2000 9 999999999 23 0 0 88 0.2 0 0 +7052400.0 32 8 23 98680 1050 1375 415 778 845 133 96156 53708 16459 6886 320 4.1 3 3 4500 2000 9 999999999 21 0 0 88 0.2 0 0 +7056000.0 32.8 8.9 23 98687 857 1375 403 609 795 114 73971 48877 13854 5621 261 4.2 0 0 4520 2000 9 999999999 23 0 0 88 0.2 0 0 +7059600.0 31.5 9.5 26 98676 605 1375 397 383 553 139 43784 35454 15998 5723 162 4.2 0 0 4541 2000 9 999999999 24 0 0 88 0.2 0 0 +7063200.0 30.9 10.4 28 98671 313 1375 395 146 299 78 16254 10077 8707 2746 102 4.3 0 0 4062 2000 9 999999999 26 0 0 88 0.2 0 0 +7066800.0 29.3 11.3 33 98657 0 1378 388 0 0 0 0 0 0 0 29 3.6 0 0 3416 2000 9 999999999 29 0 0 88 0.2 0 0 +7070400.0 28.4 12.9 38 98649 0 0 385 0 0 0 0 0 0 0 57 2.8 0 0 2670 2000 9 999999999 34 0 0 88 0.2 0 0 +7074000.0 27.2 15.2 48 98638 0 0 395 0 0 0 0 0 0 0 320 1.5 2 2 2591 2000 9 999999999 43 0 0 88 0.2 0 0 +7077600.0 25.6 15.8 55 98624 0 0 391 0 0 0 0 0 0 0 82 1.3 3 3 2445 2000 9 999999999 45 0 0 88 0.2 0 0 +7081200.0 24.7 16.3 53 98616 0 0 371 0 0 0 0 0 0 0 290 0.9 0 0 2333 2000 9 999999999 48 0 0 88 0.2 0 0 +7084800.0 22 13 57 98592 0 0 372 0 0 0 0 0 0 0 42 1.8 4 4 2200 2000 9 999999999 35 0 0 88 0.2 0 0 +7088400.0 21 13 60 98583 0 0 349 0 0 0 0 0 0 0 280 1.5 0 0 2400 2000 9 999999999 35 0 0 88 0.2 0 0 +7092000.0 21 13 60 98583 0 0 349 0 0 0 0 0 0 0 300 1.5 0 0 2400 2000 9 999999999 35 0 0 88 0.2 0 0 +7095600.0 21 11 53 98583 0 0 347 0 0 0 0 0 0 0 340 2.1 0 0 2500 2000 9 999999999 28 0 0 88 0.2 0 0 +7099200.0 18 10 59 98555 0 0 332 0 0 0 0 0 0 0 230 2.6 0 0 2500 2000 9 999999999 26 0 0 88 0.2 0 0 +7102800.0 16 9 63 98536 0 0 322 0 0 0 0 0 0 0 260 1 0 0 2500 2000 9 999999999 23 0 0 88 0.2 0 0 +7106400.0 15 11 77 98527 0 0 333 0 0 0 0 0 0 0 19 0 3 3 2000 2000 9 999999999 29 0 0 88 0.2 0 0 +7110000.0 16 10 68 98536 23 99 337 6 0 6 544 0 548 204 240 1 3 3 1400 2000 9 999999999 26 0 0 88 0.2 0 0 +7113600.0 18 10 59 98555 335 1375 346 159 312 83 17730 11783 9311 2962 250 2.1 3 3 1400 2000 9 999999999 26 0 0 88 0.2 0 0 +7117200.0 22 12 53 98592 625 1375 368 393 601 120 45543 35431 13927 5164 290 2.1 3 3 2200 2000 9 999999999 31 0 0 88 0.2 0 0 +7120800.0 25 13 47 98619 873 1375 384 611 770 122 73860 46207 14855 6042 230 2.1 3 3 2400 2000 9 999999999 34 0 0 88 0.2 0 0 +7124400.0 28 13 40 98646 1063 1375 406 738 673 217 87797 46958 26003 10525 330 2.6 5 5 2800 2000 9 999999999 34 0 0 88 0.2 0 0 +7128000.0 29 12 35 98654 1181 1375 410 841 682 255 100507 49357 30680 12288 300 5.1 5 5 4000 2000 9 999999999 31 0 0 88 0.2 0 0 +7131600.0 29 12 35 98654 1220 1375 387 940 673 343 110323 53909 40493 15472 160 4.8 0 0 4500 2000 9 999999999 31 0 0 88 0.2 0 0 +7135200.0 29 12 35 98654 1176 1375 435 464 101 378 53770 8547 44069 16365 290 4.6 9 9 5000 3000 9 999999999 31 0 0 88 0.2 0 0 +7138800.0 29 12 35 98654 1053 1375 435 406 49 368 46255 4247 42288 15350 290 6.2 9 9 5000 2000 9 999999999 31 0 0 88 0.2 0 0 +7142400.0 28 13 40 98646 860 1375 430 313 32 293 35282 2680 33219 11712 290 4.1 9 9 5000 2000 9 999999999 34 0 0 88 0.2 0 0 +7146000.0 28 11 35 98646 608 1375 428 198 31 185 22154 2238 20718 6970 310 4.1 9 9 5000 6000 9 999999999 28 0 0 88 0.2 0 0 +7149600.0 29 12 35 98654 316 1375 410 137 216 87 15121 7882 9671 2973 300 3.1 5 5 5000 2000 9 999999999 31 0 0 88 0.2 0 0 +7153200.0 25 13 47 98619 5 1375 369 1 0 1 87 0 87 36 250 1 0 0 4500 2000 9 999999999 34 0 0 88 0.2 0 0 +7156800.0 23.5 13.5 53 98606 0 16 377 0 0 0 0 0 0 0 43 1 3 3 3350 2000 9 999999999 36 0 0 88 0.2 0 0 +7160400.0 22 14 60 98592 0 0 355 0 0 0 0 0 0 0 250 1 0 0 2200 2000 9 999999999 38 0 0 88 0.2 0 0 +7164000.0 21 14 64 98583 0 0 350 0 0 0 0 0 0 0 220 1.5 0 0 1500 2000 9 999999999 38 0 0 88 0.2 0 0 +7167600.0 21 15 69 98583 0 0 351 0 0 0 0 0 0 0 124 0 0 0 1500 2000 9 999999999 42 0 0 88 0.2 0 0 +7171200.0 19 15 78 98564 0 0 342 0 0 0 0 0 0 0 232 0 0 0 1200 2000 9 999999999 42 0 0 88 0.2 0 0 +7174800.0 19 13 68 98564 0 0 340 0 0 0 0 0 0 0 220 1.5 0 0 1100 2000 9 999999999 35 0 0 88 0.2 0 0 +7178400.0 18 14 77 98555 0 0 364 0 0 0 0 0 0 0 251 0 7 7 1000 2000 9 999999999 38 0 0 88 0.2 0 0 +7182000.0 18 13 73 98555 0 0 335 0 0 0 0 0 0 0 313 0 0 0 1200 2000 9 999999999 35 0 0 88 0.2 0 0 +7185600.0 18 13 73 98555 0 0 335 0 0 0 0 0 0 0 257 0 0 0 1200 2000 9 999999999 35 0 0 88 0.2 0 0 +7189200.0 19 12 64 98564 0 0 339 0 0 0 0 0 0 0 270 1.5 0 0 1500 2000 9 999999999 31 0 0 88 0.2 0 0 +7192800.0 17 12 72 98546 0 0 349 0 0 0 0 0 0 0 156 0 5 5 800 2000 9 999999999 32 0 0 88 0.2 0 0 +7196400.0 17 10 63 98546 29 126 347 7 0 7 649 0 654 240 230 2.1 5 5 8800 2000 9 999999999 26 0 0 88 0.2 0 0 +7200000.0 19 9 52 98564 340 1374 355 154 262 89 17106 10712 9935 3127 250 2.1 5 5 1700 2000 9 999999999 23 0 0 88 0.2 0 0 +7203600.0 22 8 41 98592 630 1374 369 377 493 151 43061 33159 17276 6187 177 3.1 5 5 3000 2000 9 999999999 21 0 0 88 0.2 0 0 +7207200.0 25 13 47 98619 878 1374 390 580 633 176 68262 42512 20764 8200 260 4.1 5 5 3000 2000 9 999999999 34 0 0 88 0.2 0 0 +7210800.0 28 14 42 98646 1067 1374 408 741 685 208 88406 46519 24965 10171 300 4.1 5 5 3000 2000 9 999999999 38 0 0 88 0.2 0 0 +7214400.0 30 13 35 98663 1185 1374 417 843 679 258 100693 48761 30931 12384 280 5.7 5 5 3500 2000 9 999999999 34 0 0 88 0.2 0 0 +7218000.0 32 14 34 98680 1223 1374 423 928 825 193 113759 52968 23758 9800 290 4.1 3 3 5000 2000 9 999999999 38 0 0 88 0.2 0 0 +7221600.0 32 13 31 98680 1179 1374 422 889 854 156 110181 52798 19453 8124 330 3.6 3 3 5000 2000 9 999999999 34 0 0 88 0.2 0 0 +7225200.0 32 10 26 98680 1056 1374 400 791 784 188 95224 53755 22747 9324 310 6.2 0 0 5000 2000 9 999999999 25 0 0 88 0.2 0 0 +7228800.0 33 11 26 98689 862 1374 407 612 794 113 74310 47771 13802 5616 330 5.1 0 0 5000 2000 9 999999999 28 0 0 88 0.2 0 0 +7232400.0 32 11 28 98680 611 1374 402 386 615 113 44922 35746 13175 4883 350 5.1 0 0 4000 2000 9 999999999 28 0 0 88 0.2 0 0 +7236000.0 31 12 31 98672 319 1374 398 149 286 83 16532 10010 9198 2882 320 5.1 0 0 3500 2000 9 999999999 31 0 0 88 0.2 0 0 +7239600.0 29 11 33 98654 6 1374 386 2 0 2 157 0 158 64 350 3.6 0 0 3500 2000 9 999999999 28 0 0 88 0.2 0 0 +7243200.0 29 12 35 98654 0 29 387 0 0 0 0 0 0 0 360 3.1 0 0 3200 2000 9 999999999 31 0 0 88 0.2 0 0 +7246800.0 28 15 45 98646 0 0 386 0 0 0 0 0 0 0 350 1 0 0 3200 2000 9 999999999 42 0 0 88 0.2 0 0 +7250400.0 26 13 45 98628 0 0 373 0 0 0 0 0 0 0 320 2.1 0 0 3000 2000 9 999999999 34 0 0 88 0.2 0 0 +7254000.0 26 13 45 98628 0 0 373 0 0 0 0 0 0 0 340 2.6 0 0 3000 2000 9 999999999 34 0 0 88 0.2 0 0 +7257600.0 24.5 14 52 98615 0 0 383 0 0 0 0 0 0 0 214 2 3 3 3250 2000 9 999999999 38 0 0 88 0.2 0 0 +7261200.0 23 15 61 98601 0 0 361 0 0 0 0 0 0 0 300 1.5 0 0 3500 2000 9 999999999 42 0 0 88 0.2 0 0 +7264800.0 21 13 60 98583 0 0 349 0 0 0 0 0 0 0 230 1.5 0 0 3200 2000 9 999999999 35 0 0 88 0.2 0 0 +7268400.0 20 14 68 98574 0 0 346 0 0 0 0 0 0 0 260 1.5 0 0 2200 2000 9 999999999 38 0 0 88 0.2 0 0 +7272000.0 19 13 68 98564 0 0 340 0 0 0 0 0 0 0 270 2.1 0 0 1400 2000 9 999999999 35 0 0 88 0.2 0 0 +7275600.0 19 12 64 98564 0 0 339 0 0 0 0 0 0 0 220 1.5 0 0 1400 2000 9 999999999 31 0 0 88 0.2 0 0 +7279200.0 18 13 73 98555 0 0 335 0 0 0 0 0 0 0 230 1.5 0 0 1400 2000 9 999999999 35 0 0 88 0.2 0 0 +7282800.0 18 11 64 98555 35 153 333 9 0 9 841 0 847 303 230 1.5 0 0 1300 2000 9 999999999 28 0 0 88 0.2 0 0 +7286400.0 20 11 56 98574 346 1373 342 169 319 89 18793 12761 9879 3140 230 3.1 0 0 1600 2000 9 999999999 28 0 0 88 0.2 0 0 +7290000.0 24 12 47 98610 635 1373 362 407 632 114 47461 36756 13377 5016 260 3.1 0 0 2200 2000 9 999999999 31 0 0 88 0.2 0 0 +7293600.0 27 12 39 98637 883 1373 377 629 799 115 76535 47751 14067 5753 260 3.6 0 0 2200 2000 9 999999999 31 0 0 88 0.2 0 0 +7297200.0 29 12 35 98654 1072 1373 387 803 863 129 99505 52281 16050 6749 250 3.6 0 0 3000 2000 9 999999999 31 0 0 88 0.2 0 0 +7300800.0 31 10 27 98672 1189 1373 395 914 793 227 110466 56100 27615 11204 300 5.1 0 0 4500 2000 9 999999999 25 0 0 88 0.2 0 0 +7304400.0 32 10 26 98680 1227 1373 400 949 795 239 114863 56664 29032 11725 290 6.2 0 0 4500 2000 9 999999999 25 0 0 88 0.2 0 0 +7308000.0 33 12 28 98689 1183 1373 408 905 792 223 109349 54764 27024 10999 290 2.6 0 0 5000 2000 9 999999999 31 0 0 88 0.2 0 0 +7311600.0 32.5 11 27 98684 1059 1373 404 792 784 188 95397 53177 22684 9310 248 4.4 0 0 5500 2000 9 999999999 28 0 0 88 0.2 0 0 +7315200.0 32 10 26 98680 865 1373 400 615 794 115 74708 48415 13988 5690 320 6.2 0 0 6000 2000 9 999999999 25 0 0 88 0.2 0 0 +7318800.0 33 11 26 98689 613 1373 407 388 615 113 45174 35870 13240 4912 320 5.1 0 0 5000 2000 9 999999999 28 0 0 88 0.2 0 0 +7322400.0 31 2 16 98672 322 1373 385 153 318 79 17149 12317 8855 2803 330 5.1 0 0 4000 2000 9 999999999 11 0 0 88 0.2 0 0 +7326000.0 30 11 31 98663 9 1373 391 2 0 2 227 0 228 91 320 4.1 0 0 3500 2000 9 999999999 28 0 0 88 0.2 0 0 +7329600.0 28 14 42 98646 0 41 385 0 0 0 0 0 0 0 330 2.6 0 0 3000 2000 9 999999999 38 0 0 88 0.2 0 0 +7333200.0 28 13 40 98646 0 0 384 0 0 0 0 0 0 0 10 1.5 0 0 3000 2000 9 999999999 34 0 0 88 0.2 0 0 +7336800.0 26 16 54 98628 0 0 393 0 0 0 0 0 0 0 340 1.5 3 3 3000 2000 9 999999999 46 0 0 88 0.2 0 0 +7340400.0 26 15 51 98628 0 0 376 0 0 0 0 0 0 0 290 2.1 0 0 2500 2000 9 999999999 42 0 0 88 0.2 0 0 +7344000.0 23 16 65 98601 0 0 362 0 0 0 0 0 0 0 280 1.5 0 0 2000 2000 9 999999999 47 0 0 88 0.2 0 0 +7347600.0 22 15 64 98592 0 0 356 0 0 0 0 0 0 0 360 4.1 0 0 1500 2000 9 999999999 42 0 0 88 0.2 0 0 +7351200.0 21 13 60 98583 0 0 349 0 0 0 0 0 0 0 230 2.6 0 0 1300 2000 9 999999999 35 0 0 88 0.2 0 0 +7354800.0 20 12 60 98574 0 0 343 0 0 0 0 0 0 0 230 1 0 0 1300 2000 9 999999999 31 0 0 88 0.2 0 0 +7358400.0 20 15 73 98574 0 0 347 0 0 0 0 0 0 0 22 0 0 0 1800 2000 9 999999999 42 0 0 88 0.2 0 0 +7362000.0 19 13 68 98564 0 0 340 0 0 0 0 0 0 0 153 0 0 0 2000 2000 9 999999999 35 0 0 88 0.2 0 0 +7365600.0 19 13.5 70 98564 0 0 364 0 0 0 0 0 0 0 166 0 6 6 2000 2000 9 999999999 37 0 0 88 0.2 0 0 +7369200.0 19 14 73 98564 41 179 356 10 0 10 967 0 974 345 233 0 3 3 2000 2000 9 999999999 38 0 0 88 0.2 0 0 +7372800.0 22 11 50 98592 352 1372 367 171 311 91 18987 12845 10150 3226 250 2.1 3 3 2000 2000 9 999999999 28 0 0 88 0.2 0 0 +7376400.0 25 11 41 98619 641 1372 382 407 609 122 47274 36764 14270 5319 250 2.1 3 3 2200 2000 9 999999999 28 0 0 88 0.2 0 0 +7380000.0 28 11 35 98646 888 1372 404 590 643 174 69690 43874 20681 8196 240 4.1 5 5 2800 2000 9 999999999 28 0 0 88 0.2 0 0 +7383600.0 30 13 35 98663 1076 1372 411 795 817 154 97283 51135 18899 7893 270 4.1 3 3 3500 2000 9 999999999 34 0 0 88 0.2 0 0 +7387200.0 32 15 36 98680 1193 1372 425 899 827 180 110267 51620 22151 9190 240 3.6 3 3 4000 2000 9 999999999 42 0 0 88 0.2 0 0 +7390800.0 33 10 24 98689 1230 1372 430 886 689 268 106362 51025 32387 12896 310 4.1 5 5 5000 2000 9 999999999 25 0 0 88 0.2 0 0 +7394400.0 34 9 22 98697 1186 1372 434 849 706 239 102223 51203 28960 11677 280 4.6 5 5 6500 2000 9 999999999 23 0 0 88 0.2 0 0 +7398000.0 35 10 22 98705 1062 1372 441 741 673 220 88228 48466 26291 10613 280 4.1 5 5 8000 2000 9 999999999 25 0 0 88 0.2 0 0 +7401600.0 34.5 11 24 98701 868 1372 415 616 761 135 73960 48025 16226 6545 57 3.6 0 0 6875 2000 9 999999999 28 0 0 88 0.2 0 0 +7405200.0 34 12 26 98697 616 1372 438 363 454 159 41071 30112 18068 6358 320 3.1 5 5 5750 2000 9 999999999 31 0 0 88 0.2 0 0 +7408800.0 33 11 26 98689 324 1372 431 142 228 88 15717 8707 9788 3034 330 2.6 5 5 4625 2000 9 999999999 28 0 0 88 0.2 0 0 +7412400.0 32 11 28 98680 12 1372 426 3 0 3 275 0 277 109 20 1.5 5 5 3500 2000 9 999999999 28 0 0 88 0.2 0 0 +7416000.0 30 12.5 34 98663 0 54 393 0 0 0 0 0 0 0 280 0.8 0 0 2850 2000 9 999999999 32 0 0 88 0.2 0 0 +7419600.0 28 14 42 98646 0 0 408 0 0 0 0 0 0 0 211 0 5 5 2200 2000 9 999999999 38 0 0 88 0.2 0 0 +7423200.0 29 11 33 98654 0 0 409 0 0 0 0 0 0 0 13 0 5 5 2200 2000 9 999999999 28 0 0 88 0.2 0 0 +7426800.0 27 13 42 98637 0 0 401 0 0 0 0 0 0 0 139 0 5 5 2200 2000 9 999999999 34 0 0 88 0.2 0 0 +7430400.0 26 13 45 98628 0 0 396 0 0 0 0 0 0 0 61 0 5 5 2200 2000 9 999999999 34 0 0 88 0.2 0 0 +7434000.0 26 11 39 98628 0 0 393 0 0 0 0 0 0 0 160 1 5 5 2500 2000 9 999999999 28 0 0 88 0.2 0 0 +7437600.0 26 10 37 98628 0 0 392 0 0 0 0 0 0 0 140 2.6 5 5 2800 2000 9 999999999 25 0 0 88 0.2 0 0 +7441200.0 25.5 11.5 42 98624 0 0 376 0 0 0 0 0 0 0 56 1.3 1 1 2650 2000 9 999999999 30 0 0 88 0.2 0 0 +7444800.0 25 13 47 98619 0 0 384 0 0 0 0 0 0 0 117 0 3 3 2500 2000 9 999999999 34 0 0 88 0.2 0 0 +7448400.0 24 13 50 98610 0 0 376 0 0 0 0 0 0 0 46 1 2 2 2100 2000 9 999999999 34 0 0 88 0.2 0 0 +7452000.0 23 13 53 98601 0 0 380 0 0 0 0 0 0 0 110 2.1 5 5 1700 2000 9 999999999 35 0 0 88 0.2 0 0 +7455600.0 24 13 50 98610 47 206 408 6 0 6 578 0 582 226 80 1.5 9 9 1600 3000 9 999999999 34 0 0 88 0.2 0 0 +7459200.0 27 10 34 98637 358 1371 421 91 2 91 10187 75 10173 3252 140 2.6 9 9 1400 3000 9 999999999 25 0 0 88 0.2 0 0 +7462800.0 29 12 35 98654 646 1371 435 214 25 203 23952 1855 22756 7699 170 1.5 9 9 2800 3000 9 999999999 31 0 0 88 0.2 0 0 +7466400.0 30 10 29 98663 893 1371 438 330 64 288 37506 5401 32931 11895 220 3.1 9 9 3500 3000 9 999999999 25 0 0 88 0.2 0 0 +7470000.0 31 12 31 98672 1080 1371 446 418 48 380 47792 4253 43723 15886 240 3.1 9 9 3500 3000 9 999999999 31 0 0 88 0.2 0 0 +7473600.0 32 14 34 98680 1197 1371 455 472 48 430 54266 4231 49786 17895 250 3.1 9 9 4500 3000 9 999999999 38 0 0 88 0.2 0 0 +7477200.0 32 17 41 98680 1234 1371 460 488 74 421 56263 6168 48904 17854 270 1.5 9 9 4500 3000 9 999999999 51 0 0 88 0.2 0 0 +7480800.0 32 17 41 98680 1189 1371 460 466 74 402 53653 6131 46570 17105 350 1.5 9 9 5000 3000 9 999999999 51 0 0 88 0.2 0 0 +7484400.0 34 18 39 98697 1065 1371 473 407 99 330 46673 7701 38081 14386 170 2.1 9 9 5000 3000 9 999999999 56 0 0 88 0.2 0 0 +7488000.0 34 17 36 98697 870 1371 445 569 586 198 66096 39123 23067 8969 120 1 5 5 5000 2000 9 999999999 51 0 0 88 0.2 0 0 +7491600.0 32.5 16.5 38 98684 619 1371 412 388 538 146 44166 32400 16634 5986 157 2.8 0 0 4250 2000 9 999999999 48 0 0 88 0.2 0 0 +7495200.0 31 16 40 98672 327 1371 427 142 222 90 15669 7752 9891 3075 100 4.6 5 5 3500 2000 9 999999999 46 0 0 88 0.2 0 0 +7498800.0 29 16 45 98654 15 1371 416 4 0 4 334 0 336 131 100 3.1 5 5 3000 2000 9 999999999 46 0 0 88 0.2 0 0 +7502400.0 28 15 45 98646 0 67 403 0 0 0 0 0 0 0 110 1.5 3 3 3000 2000 9 999999999 42 0 0 88 0.2 0 0 +7506000.0 27 17 54 98637 0 0 400 0 0 0 0 0 0 0 231 0 3 3 3000 2000 9 999999999 51 0 0 88 0.2 0 0 +7509600.0 26 16 54 98628 0 0 393 0 0 0 0 0 0 0 240 1 3 3 3000 2000 9 999999999 46 0 0 88 0.2 0 0 +7513200.0 23 12 50 98601 0 0 373 0 0 0 0 0 0 0 300 10.3 3 3 1400 900 0 19999999 31 0 0 88 0.2 0 0 +7516800.0 22.5 12.5 53 98597 0 0 371 0 0 0 0 0 0 0 358 6.9 3 3 1950 900 9 999999999 33 0 0 88 0.2 0 0 +7520400.0 22 13 57 98592 0 0 369 0 0 0 0 0 0 0 20 3.6 3 3 2500 2000 0 19999999 35 0 0 88 0.2 0 0 +7524000.0 22 12 53 98592 0 0 374 0 0 0 0 0 0 0 30 4.1 5 5 2500 2000 0 19999999 31 0 0 88 0.2 0 0 +7527600.0 22 13 57 98592 0 0 369 0 0 0 0 0 0 0 50 3.6 3 3 2500 2000 0 19999999 35 0 0 88 0.2 0 0 +7531200.0 21 11 53 98583 0 0 362 0 0 0 0 0 0 0 40 4.1 3 3 3500 2000 0 19999999 28 0 0 88 0.2 0 0 +7534800.0 20 12 60 98574 0 0 358 0 0 0 0 0 0 0 30 3.1 3 3 3500 2000 0 19999999 31 0 0 88 0.2 0 0 +7538400.0 21 17 78 98583 0 0 369 0 0 0 0 0 0 0 40 3.6 3 3 3000 2000 9 999999999 52 0 0 88 0.2 0 0 +7542000.0 21 13 60 98583 53 233 370 12 0 12 1172 0 1180 416 80 3.6 5 5 3000 2000 9 999999999 35 0 0 88 0.2 0 0 +7545600.0 23 15 61 98601 363 1371 383 167 257 99 18462 10728 10986 3470 135 2.8 5 5 2000 2000 9 999999999 42 0 0 88 0.2 0 0 +7549200.0 25 14 50 98619 651 1371 392 389 463 169 44110 30941 19261 6860 170 2.1 5 5 2500 2000 9 999999999 38 0 0 88 0.2 0 0 +7552800.0 28 13 40 98645 897 1371 391 641 775 133 77223 47551 16096 6562 245 2.3 1 1 2750 2000 9 999999999 34 0 0 88 0.2 0 0 +7556400.0 31 12 31 98672 1085 1371 421 758 671 226 90220 47674 27103 10953 190 2.6 5 5 3000 2000 9 999999999 31 0 0 88 0.2 0 0 +7560000.0 31 9 26 98672 1201 1371 417 862 590 345 101081 48733 40711 15485 180 4.1 5 5 3000 2000 9 999999999 23 0 0 88 0.2 0 0 +7563600.0 32 8 23 98680 1237 1371 446 496 109 398 57887 9510 46734 17242 220 3.6 9 9 3000 6000 9 999999999 21 0 0 88 0.2 0 0 +7567200.0 33 7 20 98689 1192 1371 426 857 598 336 100646 49677 39777 15182 190 6.2 5 5 3000 2000 9 999999999 19 0 0 88 0.2 0 0 +7570800.0 32 8 23 98680 1067 1371 421 748 693 208 89567 49664 24991 10155 200 4.1 5 5 3000 2000 9 999999999 21 0 0 88 0.2 0 0 +7574400.0 33 6 19 98689 873 1371 424 582 661 161 69121 45785 19183 7617 170 5.1 5 5 2800 2000 9 999999999 17 0 0 88 0.2 0 0 +7578000.0 32 6 20 98680 621 1371 412 392 589 125 45441 37316 14590 5355 180 4.6 3 3 2800 2000 9 999999999 17 0 0 88 0.2 0 0 +7581600.0 31 9 26 98672 330 1371 411 154 297 83 17197 11266 9274 2938 130 4.6 3 3 2500 2000 9 999999999 23 0 0 88 0.2 0 0 +7585200.0 30 11 31 98663 18 1371 408 4 0 4 424 0 427 162 110 2.1 3 3 2500 2000 9 999999999 28 0 0 88 0.2 0 0 +7588800.0 28 13 40 98646 0 80 400 0 0 0 0 0 0 0 110 1.5 3 3 2500 2000 9 999999999 34 0 0 88 0.2 0 0 +7592400.0 26 13 45 98628 0 0 373 0 0 0 0 0 0 0 80 2.1 0 0 2200 2000 9 999999999 34 0 0 88 0.2 0 0 +7596000.0 26 11 39 98628 0 0 387 0 0 0 0 0 0 0 90 3.1 3 3 1800 2000 9 999999999 28 0 0 88 0.2 0 0 +7599600.0 25 13 47 98619 0 0 384 0 0 0 0 0 0 0 90 1.5 3 3 2000 2000 9 999999999 34 0 0 88 0.2 0 0 +7603200.0 24 12 47 98610 0 0 378 0 0 0 0 0 0 0 10 1 3 3 2200 2000 9 999999999 31 0 0 88 0.2 0 0 +7606800.0 23 11 47 98601 0 0 372 0 0 0 0 0 0 0 30 2.1 3 3 2400 2000 9 999999999 28 0 0 88 0.2 0 0 +7610400.0 22 10 46 98592 0 0 366 0 0 0 0 0 0 0 10 2.1 3 3 2800 2000 9 999999999 26 0 0 88 0.2 0 0 +7614000.0 22 10 46 98592 0 0 366 0 0 0 0 0 0 0 10 2.1 3 3 2800 2000 9 999999999 26 0 0 88 0.2 0 0 +7617600.0 21 7 40 98583 0 0 363 0 0 0 0 0 0 0 350 5.1 5 5 3500 2000 9 999999999 19 0 0 88 0.2 0 0 +7621200.0 19.5 6.5 43 98569 0 0 341 0 0 0 0 0 0 0 136 5.6 1 1 2850 2000 9 999999999 18 0 0 88 0.2 0 0 +7624800.0 18 6 45 98555 0 0 367 0 0 0 0 0 0 0 260 6.2 9 9 2200 3000 0 99999999 17 0 0 88 0.2 0 0 +7628400.0 19 12 64 98564 59 259 380 8 0 8 723 0 728 281 100 1.5 9 9 2800 2700 0 19999999 31 0 0 88 0.2 0 0 +7632000.0 18.7 10.3 58 98561 369 1370 353 180 327 92 20140 14204 10335 3335 128 3.4 4 4 2700 2700 9 999999999 27 0 0 88 0.2 0 0 +7635600.0 18.3 8.7 53 98558 657 1370 346 422 618 125 49150 38638 14666 5489 212 5.3 3 3 2600 2700 9 999999999 23 0 0 88 0.2 0 0 +7639200.0 18 7 49 98555 902 1370 348 606 548 244 69917 43534 28368 10704 30 7.2 5 5 2500 2000 0 19999999 19 0 0 88 0.2 0 0 +7642800.0 18 7 49 98555 1089 1370 369 425 85 357 49033 7518 41464 15344 40 6.7 9 9 2500 3000 0 19999999 19 0 0 88 0.2 0 0 +7646400.0 21 8 43 98583 1204 1370 385 480 86 405 55693 7606 47290 17280 30 6.2 9 9 2800 3000 0 19999999 21 0 0 88 0.2 0 0 +7650000.0 24 15 57 98610 1240 1370 388 887 563 377 103535 45367 44294 16642 10 3.6 5 5 2800 2000 0 19999999 42 0 0 88 0.2 0 0 +7653600.0 25 16 57 98619 1194 1370 388 898 829 175 110371 50606 21577 8973 310 2.1 3 3 5000 2000 0 19999999 46 0 0 88 0.2 0 0 +7657200.0 26 15 51 98628 1070 1370 376 796 859 125 85889 89423 16845 3213 300 4.1 0 0 4750 2000 0 19999999 42 0 0 88 0.2 0 0 +7660800.0 27 13 42 98637 875 1370 395 612 762 125 73900 46026 15168 6171 310 2.1 3 3 4500 2000 0 19999999 34 0 0 88 0.2 0 0 +7664400.0 26 15 51 98628 624 1370 392 388 609 111 45205 33537 12970 4864 310 5.7 3 3 4250 2000 0 19999999 42 0 0 88 0.2 0 0 +7668000.0 24 16 61 98610 332 1370 383 154 274 88 17031 9544 9727 3062 330 5.1 3 3 4000 2000 0 19999999 47 0 0 88 0.2 0 0 +7671600.0 22 17 73 98592 21 1370 358 5 0 5 490 0 493 186 10 1.5 0 0 3000 2000 0 19999999 52 0 0 88 0.2 0 0 +7675200.0 21 9 46 98583 0 92 345 0 0 0 0 0 0 0 119 0 0 0 2500 2000 0 19999999 23 0 0 88 0.2 0 0 +7678800.0 20.3 12.3 60 98577 0 0 363 0 0 0 0 0 0 0 275 0.5 4 4 2400 2000 9 999999999 32 0 0 88 0.2 0 0 +7682400.0 19.7 15.7 78 98571 0 0 374 0 0 0 0 0 0 0 157 1 7 7 2300 2000 9 999999999 45 0 0 88 0.2 0 0 +7686000.0 19 19 100 98564 0 0 346 0 0 0 0 0 0 0 50 1.5 0 0 2200 2000 0 19999999 63 0 0 88 0.2 0 0 +7689600.0 19 17 88 98564 0 0 344 0 0 0 0 0 0 0 40 1.5 0 0 2200 2000 0 19999999 52 0 0 88 0.2 0 0 +7693200.0 18 16 88 98555 0 0 338 0 0 0 0 0 0 0 40 2.6 0 0 2200 2000 0 19999999 47 0 0 88 0.2 0 0 +7696800.0 18 18 100 98555 0 0 340 0 0 0 0 0 0 0 40 1 0 0 2200 2000 0 19999999 57 0 0 88 0.2 0 0 +7700400.0 18 17 94 98555 0 0 339 0 0 0 0 0 0 0 30 1 0 0 2200 2000 0 19999999 52 0 0 88 0.2 0 0 +7704000.0 18 17 94 98555 0 0 339 0 0 0 0 0 0 0 317 0 0 0 2200 2000 0 19999999 52 0 0 88 0.2 0 0 +7707600.0 17.5 17 97 98550 0 0 389 0 0 0 0 0 0 0 320 0.5 10 10 2100 2000 9 999999999 52 0 0 88 0.2 0 0 +7711200.0 17 17 100 98546 0 0 335 0 0 0 0 0 0 0 300 1 0 0 2000 2000 9 999999999 52 0 0 88 0.2 0 0 +7714800.0 16 16 100 98536 65 285 329 16 0 16 1526 0 1536 528 238 0 0 0 1200 2000 9 999999999 47 0 0 88 0.2 0 0 +7718400.0 19 16.3 85 98564 374 1369 377 121 68 103 13407 2911 11385 3613 286 0.5 8 8 1366 2000 9 999999999 48 0 0 88 0.2 0 0 +7722000.0 22 16.7 72 98591 662 1369 383 371 327 213 41264 23614 23805 8072 75 1 6 6 1533 2000 9 999999999 50 0 0 88 0.2 0 0 +7725600.0 25 17 61 98619 907 1369 373 644 740 154 76698 44882 18464 7486 310 1.5 0 0 1700 2000 9 999999999 51 0 0 88 0.2 0 0 +7729200.0 27 16 51 98637 1093 1369 382 816 784 190 98361 50031 22978 9492 300 3.1 0 0 2800 2000 9 999999999 46 0 0 88 0.2 0 0 +7732800.0 28 14 42 98646 1208 1369 401 913 820 190 111925 52491 23392 9660 310 4.1 3 3 4000 2000 9 999999999 38 0 0 88 0.2 0 0 +7736400.0 29 15 43 98654 1243 1369 414 890 665 286 106176 47777 34352 13605 40 1.5 5 5 5000 2000 9 999999999 42 0 0 88 0.2 0 0 +7740000.0 30 12 33 98663 1197 1369 416 855 695 246 102685 49485 29779 11988 270 5.1 5 5 5000 2000 9 999999999 31 0 0 88 0.2 0 0 +7743600.0 30 12 33 98663 1072 1369 416 747 684 211 89272 47555 25387 10326 270 5.1 5 5 5000 2000 9 999999999 31 0 0 88 0.2 0 0 +7747200.0 29 12 35 98654 878 1369 410 580 607 191 67855 42403 22428 8765 20 4.1 5 5 5000 2000 9 999999999 31 0 0 88 0.2 0 0 +7750800.0 28 14 42 98646 626 1369 401 391 613 110 45587 34233 12906 4846 20 5.1 3 3 3500 2000 9 999999999 38 0 0 88 0.2 0 0 +7754400.0 27 15 48 98637 335 1369 381 158 289 87 17499 10357 9709 3067 30 3.1 0 0 3000 2000 9 999999999 42 0 0 88 0.2 0 0 +7758000.0 24.5 17.5 65 98615 24 1369 377 6 0 6 556 0 560 209 30 1.9 0 0 3000 2000 9 999999999 54 0 0 88 0.2 0 0 +7761600.0 23.6 17.9 70 98607 0 105 374 0 0 0 0 0 0 0 77 1.8 0 0 3000 2000 9 999999999 56 0 0 88 0.2 0 0 +7765200.0 22.9 17.6 72 98600 0 0 369 0 0 0 0 0 0 0 84 1.5 0 0 3000 2000 9 999999999 55 0 0 88 0.2 0 0 +7768800.0 23.6 14.9 58 98607 0 0 364 0 0 0 0 0 0 0 117 1.7 0 0 3000 2000 9 999999999 42 0 0 88 0.2 0 0 +7772400.0 24.1 12.6 49 98611 0 0 386 0 0 0 0 0 0 0 179 1.3 6 6 2900 2000 9 999999999 33 0 0 88 0.2 0 0 +7776000.0 24.8 10.5 41 98617 0 0 358 0 0 0 0 0 0 0 179 1 0 0 2800 2000 9 999999999 27 0 0 88 0.2 0 0 +7779600.0 25.5 8 33 98624 0 0 387 0 0 0 0 0 0 0 207 1.5 3 3 2800 2000 9 999999999 21 0 0 88 0.2 0 0 +7783200.0 25 8 34 98619 0 0 379 0 0 0 0 0 0 0 212 1.7 3 3 3500 2000 9 999999999 21 0 0 88 0.2 0 0 +7786800.0 25 7.8 33 98619 0 0 379 0 0 0 0 0 0 0 192 2.3 3 3 3200 2000 9 999999999 20 0 0 88 0.2 0 0 +7790400.0 25.2 7.2 32 98621 0 0 377 0 0 0 0 0 0 0 195 3.1 3 3 2800 2000 9 999999999 19 0 0 88 0.2 0 0 +7794000.0 25.5 7.5 32 98624 0 0 383 0 0 0 0 0 0 0 205 3.1 5 5 2800 2000 9 999999999 20 0 0 88 0.2 0 0 +7797600.0 26 7.8 31 98628 0 0 384 0 0 0 0 0 0 0 210 2.8 5 5 2800 2000 9 999999999 20 0 0 88 0.2 0 0 +7801200.0 26 7 30 98628 65 285 388 15 0 15 1443 0 1453 504 220 3.1 5 5 2800 2000 9 999999999 19 0 0 88 0.2 0 0 +7804800.0 26 8 32 98628 374 1369 389 177 288 98 19682 13497 10930 3496 220 3.1 5 5 2600 2000 9 999999999 21 0 0 88 0.2 0 0 +7808400.0 27 8 30 98637 662 1369 394 401 504 158 45993 34588 18165 6583 200 2.6 5 5 2800 2000 9 999999999 21 0 0 88 0.2 0 0 +7812000.0 30 8 25 98663 907 1369 410 609 644 182 71960 45572 21608 8567 200 3.6 5 5 3000 2000 9 999999999 21 0 0 88 0.2 0 0 +7815600.0 31 9 26 98672 1093 1369 417 768 673 231 91620 49271 27685 11157 210 3.1 5 5 3000 2000 9 999999999 23 0 0 88 0.2 0 0 +7819200.0 33 9 23 98689 1208 1369 422 921 841 179 113684 55731 22162 9164 260 3.6 3 3 3200 2000 9 999999999 23 0 0 88 0.2 0 0 +7822800.0 34 9 22 98697 1243 1369 427 954 794 232 115976 56313 28402 11500 250 5.1 3 3 3500 2000 9 999999999 23 0 0 88 0.2 0 0 +7826400.0 35 10 22 98705 1197 1369 416 921 791 229 111449 56004 27883 11304 310 4.1 0 0 3500 2000 9 999999999 25 0 0 88 0.2 0 0 +7830000.0 35 10 22 98705 1072 1369 434 795 816 156 97351 52853 19155 7980 230 3.1 3 3 4000 2000 9 999999999 25 0 0 88 0.2 0 0 +7833600.0 35 11 23 98705 878 1369 436 616 763 127 74449 47333 15422 6266 230 1.5 3 3 4000 2000 9 999999999 28 0 0 88 0.2 0 0 +7837200.0 35 10 22 98705 626 1369 434 394 481 174 44386 33843 19672 6831 210 1.5 3 3 3500 2000 9 999999999 25 0 0 88 0.2 0 0 +7840800.0 33 11 26 98689 335 1369 457 82 0 82 8099 0 8161 2942 340 4.1 9 9 2600 1200 9 999999999 28 0 0 88 0.2 0 0 +7844400.0 30 10.5 30 98663 24 1369 391 6 0 6 562 0 566 210 206 5.1 0 0 2600 1200 9 999999999 27 0 0 88 0.2 0 0 +7848000.0 27 10 34 98637 0 105 421 0 0 0 0 0 0 0 160 6.2 9 9 2600 1200 9 999999999 25 0 0 88 0.2 0 0 +7851600.0 26 9 34 98628 0 0 414 0 0 0 0 0 0 0 120 5.1 9 9 3500 1200 9 999999999 23 0 0 88 0.2 0 0 +7855200.0 26 8 32 98628 0 0 412 0 0 0 0 0 0 0 140 7.2 9 9 3500 1200 9 999999999 21 0 0 88 0.2 0 0 +7858800.0 26 7 30 98628 0 0 411 0 0 0 0 0 0 0 140 6.2 9 9 3500 1200 9 999999999 19 0 0 88 0.2 0 0 +7862400.0 26 8 32 98628 0 0 389 0 0 0 0 0 0 0 150 3.1 5 5 3500 2000 9 999999999 21 0 0 88 0.2 0 0 +7866000.0 25 8 34 98619 0 0 384 0 0 0 0 0 0 0 130 4.1 5 5 3500 2000 9 999999999 21 0 0 88 0.2 0 0 +7869600.0 24 10 41 98610 0 0 381 0 0 0 0 0 0 0 170 3.1 5 5 3000 2000 9 999999999 26 0 0 88 0.2 0 0 +7873200.0 25 11 41 98619 0 0 411 0 0 0 0 0 0 0 100 2.1 9 9 2500 1200 0 19999999 28 0 0 88 0.2 0 0 +7876800.0 23 12 50 98601 0 0 401 0 0 0 0 0 0 0 90 2.6 9 9 2800 3000 0 19999999 31 0 0 88 0.2 0 0 +7880400.0 19 12 64 98564 0 0 380 0 0 0 0 0 0 0 110 6.2 9 9 3000 1200 0 19999999 31 0 0 88 0.2 0 0 +7884000.0 19 13 68 98564 0 0 381 0 0 0 0 0 0 0 110 7.2 9 9 3000 1200 0 19999999 35 0 0 88 0.2 0 0 +7887600.0 20 12 60 98574 71 311 385 9 0 9 864 0 870 335 110 5.1 9 9 3000 1200 0 19999999 31 0 0 88 0.2 0 0 +7891200.0 22 12 53 98592 380 1368 407 61 0 61 5989 0 6036 2453 130 3.1 10 10 3000 1200 0 19999999 31 0 0 88 0.2 0 0 +7894800.0 22 12 53 98592 667 1368 407 136 0 136 13789 0 13908 5907 70 4.1 10 10 3000 1200 0 19999999 31 0 0 88 0.2 0 0 +7898400.0 24 11 44 98610 911 1368 417 206 3 204 24135 201 24037 9415 170 4.6 10 10 3000 1200 0 19999999 28 0 0 88 0.2 0 0 +7902000.0 25 10 39 98619 1097 1368 421 261 5 257 30829 377 30525 12137 210 7.2 10 10 2000 1200 0 19999999 25 0 0 88 0.2 0 0 +7905600.0 25 10 39 98619 1211 1368 409 482 75 415 55820 6681 48420 17606 210 6.2 9 9 2500 1200 0 19999999 25 0 0 88 0.2 0 0 +7909200.0 27 10 34 98637 1247 1368 421 499 81 426 57947 7147 49748 18064 130 2.6 9 9 3000 3000 0 19999999 25 0 0 88 0.2 0 0 +7912800.0 29 9 29 98654 1200 1368 406 861 588 346 100996 48555 40798 15513 300 1.5 5 5 3000 3000 0 19999999 23 0 0 88 0.2 0 0 +7916400.0 31 9 26 98672 1075 1368 411 798 817 157 97802 53424 19276 8026 320 2.6 3 3 4000 2000 0 19999999 23 0 0 88 0.2 0 0 +7920000.0 31 11 29 98672 880 1368 414 618 762 128 74672 47357 15520 6308 106 0 3 3 4500 2000 0 19999999 28 0 0 88 0.2 0 0 +7923600.0 31 11 29 98672 628 1368 414 395 526 153 44963 34674 17530 6270 80 2.1 3 3 4500 2000 0 19999999 28 0 0 88 0.2 0 0 +7927200.0 29 11 33 98654 337 1368 409 150 233 92 16548 9467 10235 3190 70 4.1 5 5 4000 2000 0 19999999 28 0 0 88 0.2 0 0 +7930800.0 27 13 42 98637 27 1368 401 6 0 6 581 0 585 218 100 3.1 5 5 3500 2000 0 19999999 34 0 0 88 0.2 0 0 +7934400.0 26 13 45 98628 0 117 396 0 0 0 0 0 0 0 100 2.6 5 5 3000 2000 0 19999999 34 0 0 88 0.2 0 0 +7938000.0 25 14 50 98619 0 0 386 0 0 0 0 0 0 0 90 2.6 3 3 2700 2000 0 19999999 38 0 0 88 0.2 0 0 +7941600.0 25 14 50 98619 0 0 386 0 0 0 0 0 0 0 90 2.6 3 3 2800 2000 0 19999999 38 0 0 88 0.2 0 0 +7945200.0 24 14 54 98610 0 0 381 0 0 0 0 0 0 0 90 2.6 3 3 2600 2000 0 19999999 38 0 0 88 0.2 0 0 +7948800.0 23 14 57 98601 0 0 381 0 0 0 0 0 0 0 110 2.6 5 5 2600 2000 0 19999999 38 0 0 88 0.2 0 0 +7952400.0 23 14 57 98601 0 0 381 0 0 0 0 0 0 0 90 2.6 5 5 2800 2000 0 19999999 38 0 0 88 0.2 0 0 +7956000.0 23 14 57 98601 0 0 381 0 0 0 0 0 0 0 200 1.5 5 5 2600 2000 0 19999999 38 0 0 88 0.2 0 0 +7959600.0 23 14 57 98601 0 0 381 0 0 0 0 0 0 0 200 2.1 5 5 2600 2000 0 19999999 38 0 0 88 0.2 0 0 +7963200.0 24 13 50 98610 0 0 385 0 0 0 0 0 0 0 220 2.1 5 5 2800 2000 0 19999999 34 0 0 88 0.2 0 0 +7966800.0 22 11 50 98592 0 0 373 0 0 0 0 0 0 0 285 0 5 5 3500 2000 0 19999999 28 0 0 88 0.2 0 0 +7970400.0 22 10 46 98592 0 0 366 0 0 0 0 0 0 0 290 0 3 3 3500 2000 9 999999999 26 0 0 88 0.2 0 0 +7974000.0 22 12 53 98592 77 338 374 17 0 17 1682 0 1694 586 115 0 5 5 5000 2000 9 999999999 31 0 0 88 0.2 0 0 +7977600.0 23 12 50 98601 386 1367 379 183 277 105 20280 13083 11674 3721 150 0 5 5 3500 2000 9 999999999 31 0 0 88 0.2 0 0 +7981200.0 25 13 47 98619 672 1367 390 406 471 174 46110 32256 19895 7137 90 2.1 5 5 2600 2000 9 999999999 34 0 0 88 0.2 0 0 +7984800.0 28 13 40 98646 916 1367 400 648 751 145 77894 47194 17517 7136 150 2.1 3 3 2700 2000 9 999999999 34 0 0 88 0.2 0 0 +7988400.0 30 10 29 98663 1101 1367 407 821 818 162 100612 53309 19988 8324 200 2.6 3 3 2800 2000 9 999999999 25 0 0 88 0.2 0 0 +7992000.0 31 8 24 98672 1215 1367 416 875 690 262 105169 51588 31635 12622 210 3.1 5 5 2800 2000 9 999999999 21 0 0 88 0.2 0 0 +7995600.0 33 9 23 98689 1250 1367 428 904 692 272 108779 51558 32857 13068 280 3.1 5 5 4000 2000 9 999999999 23 0 0 88 0.2 0 0 +7999200.0 34 10 23 98697 1203 1367 429 914 834 181 112697 55003 22375 9250 240 2.6 3 3 5000 2000 9 999999999 25 0 0 88 0.2 0 0 +8002800.0 34 9 22 98697 1077 1367 427 801 838 140 98932 53304 17399 7287 280 2.6 3 3 4000 2000 9 999999999 23 0 0 88 0.2 0 0 +8006400.0 35 10 22 98705 882 1367 434 621 731 150 74232 47958 17936 7210 250 1.5 3 3 4000 2000 9 999999999 25 0 0 88 0.2 0 0 +8010000.0 34 9 22 98697 631 1367 434 375 406 188 42099 29861 21181 7234 20 2.6 5 5 4000 2000 9 999999999 23 0 0 88 0.2 0 0 +8013600.0 31 9 26 98672 340 1367 442 84 0 84 8304 0 8367 3013 60 2.6 9 9 3200 2000 9 999999999 23 0 0 88 0.2 0 0 +8017200.0 30 13 35 98663 29 1367 442 4 0 4 355 0 358 141 80 3.1 9 9 2800 1200 9 999999999 34 0 0 88 0.2 0 0 +8020800.0 29 14 40 98654 0 130 438 0 0 0 0 0 0 0 90 2.6 9 9 2700 1200 9 999999999 38 0 0 88 0.2 0 0 +8024400.0 28 13 40 98646 0 0 430 0 0 0 0 0 0 0 90 3.1 9 9 2700 1200 9 999999999 34 0 0 88 0.2 0 0 +8028000.0 28 13 40 98646 0 0 430 0 0 0 0 0 0 0 100 3.6 9 9 2600 1200 9 999999999 34 0 0 88 0.2 0 0 +8031600.0 25.5 12 43 98623 0 0 377 0 0 0 0 0 0 0 196 5.4 1 1 2800 1200 9 999999999 31 0 0 88 0.2 0 0 +8035200.0 23 11 47 98601 0 0 400 0 0 0 0 0 0 0 290 7.2 9 9 3000 1200 9 999999999 28 0 0 88 0.2 0 0 +8038800.0 22 11 50 98592 0 0 395 0 0 0 0 0 0 0 270 7.2 9 9 3000 1200 9 999999999 28 0 0 88 0.2 0 0 +8042400.0 22 11 50 98592 0 0 395 0 0 0 0 0 0 0 260 7.2 9 9 3000 1200 0 99999999 28 0 0 88 0.2 0 0 +8046000.0 20 12.5 62 98574 0 0 362 0 0 0 0 0 0 0 18 7.2 4 4 3000 1200 9 999999999 33 0 0 88 0.2 0 0 +8049600.0 18 14 77 98555 0 0 388 0 0 0 0 0 0 0 150 7.2 10 10 3000 1200 0 19999999 38 0 0 88 0.2 0 0 +8053200.0 18 13 73 98555 0 0 387 0 0 0 0 0 0 0 150 7.2 10 10 3000 1200 0 19999999 35 0 0 88 0.2 0 0 +8056800.0 20 12 60 98574 0 0 385 0 0 0 0 0 0 0 220 2.1 9 9 3000 1200 9 999999999 31 0 0 88 0.2 0 0 +8060400.0 20 12 60 98574 82 363 385 10 0 10 998 0 1005 387 270 6.2 9 9 3000 1200 9 999999999 31 0 0 88 0.2 0 0 +8064000.0 20 13 64 98574 391 1367 386 103 5 102 11478 225 11366 3675 270 3.1 9 9 3000 1200 9 999999999 35 0 0 88 0.2 0 0 +8067600.0 21 14 64 98583 677 1367 393 227 25 214 25338 1884 24066 8235 260 3.6 9 9 2800 1200 9 999999999 38 0 0 88 0.2 0 0 +8071200.0 22 12 53 98592 920 1367 396 341 33 319 38609 2791 36351 12972 350 3.1 9 9 2800 1200 9 999999999 31 0 0 88 0.2 0 0 +8074800.0 23 13 53 98601 1105 1367 403 429 48 390 49056 4165 44944 16347 30 3.1 9 9 3000 1200 9 999999999 35 0 0 88 0.2 0 0 +8078400.0 24 14 54 98610 1218 1367 409 482 70 420 55702 6001 48858 17773 340 2.6 9 9 3000 2000 9 999999999 38 0 0 88 0.2 0 0 +8082000.0 25 14 50 98619 1252 1367 415 499 85 421 57855 7204 49196 17981 340 1.5 9 9 3000 1200 9 999999999 38 0 0 88 0.2 0 0 +8085600.0 25 12 44 98619 1205 1367 412 478 71 415 55186 6179 48315 17575 240 3.1 9 9 2400 3000 9 999999999 31 0 0 88 0.2 0 0 +8089200.0 25 12 44 98619 1080 1367 412 418 48 380 47722 4198 43686 15895 270 2.6 9 9 2600 3000 9 999999999 31 0 0 88 0.2 0 0 +8092800.0 26 12 42 98628 885 1367 418 325 26 308 36607 2221 34917 12347 270 3.1 9 9 2800 3000 9 999999999 31 0 0 88 0.2 0 0 +8096400.0 24 13 50 98610 633 1367 408 207 31 193 23179 2216 21693 7385 270 5.1 9 9 3000 3000 9 999999999 34 0 0 88 0.2 0 0 +8100000.0 24 13 50 98610 342 1367 420 51 0 51 5058 0 5097 2068 270 5.1 10 10 3000 3000 9 999999999 34 0 0 88 0.2 0 0 +8103600.0 23 14 57 98601 32 1367 404 4 0 4 386 0 389 153 84 0 9 9 3000 1200 9 999999999 38 0 0 88 0.2 0 0 +8107200.0 23 14 57 98601 0 142 404 0 0 0 0 0 0 0 109 0 9 9 3000 1200 9 999999999 38 0 0 88 0.2 0 0 +8110800.0 22 15 64 98592 0 0 400 0 0 0 0 0 0 0 330 2.6 9 9 2400 1200 9 999999999 42 0 0 88 0.2 0 0 +8114400.0 22 15 64 98592 0 0 400 0 0 0 0 0 0 0 336 0 9 9 2200 1200 9 999999999 42 0 0 88 0.2 0 0 +8118000.0 22 14 60 98592 0 0 398 0 0 0 0 0 0 0 350 2.1 9 9 2200 1200 9 999999999 38 0 0 88 0.2 0 0 +8121600.0 22 15 64 98592 0 0 400 0 0 0 0 0 0 0 31 0 9 9 2200 1200 9 999999999 42 0 0 88 0.2 0 0 +8125200.0 21 14 64 98583 0 0 371 0 0 0 0 0 0 0 20 2.6 5 5 2200 3000 9 999999999 38 0 0 88 0.2 0 0 +8128800.0 20 13 64 98574 0 0 365 0 0 0 0 0 0 0 70 2.1 5 5 2400 2000 9 999999999 35 0 0 88 0.2 0 0 +8132400.0 19 13 68 98564 0 0 354 0 0 0 0 0 0 0 187 0 3 3 2500 2000 9 999999999 35 0 0 88 0.2 0 0 +8136000.0 19 13 68 98564 0 0 354 0 0 0 0 0 0 0 50 2.6 3 3 2000 2000 9 999999999 35 0 0 88 0.2 0 0 +8139600.0 19 13 68 98564 0 0 354 0 0 0 0 0 0 0 50 2.6 3 3 1700 2000 9 999999999 35 0 0 88 0.2 0 0 +8143200.0 19 13 68 98564 0 0 354 0 0 0 0 0 0 0 150 2.6 3 3 1800 2000 9 999999999 35 0 0 88 0.2 0 0 +8146800.0 19 13 68 98564 88 389 360 20 0 20 1917 0 1930 668 120 2.1 5 5 1800 2000 9 999999999 35 0 0 88 0.2 0 0 +8150400.0 19 14 73 98564 396 1366 361 189 279 108 20971 13245 12043 3859 120 1.5 5 5 1700 2000 9 999999999 38 0 0 88 0.2 0 0 +8154000.0 20 15 73 98574 682 1366 367 412 521 152 47328 32796 17550 6506 120 1.5 5 5 1600 2000 9 999999999 42 0 0 88 0.2 0 0 +8157600.0 24 15 57 98610 925 1366 388 616 549 244 71083 40465 28359 10864 64 0 5 5 1600 2000 9 999999999 42 0 0 88 0.2 0 0 +8161200.0 26 12 42 98628 1109 1366 418 431 113 340 49961 9334 39573 14958 230 4.1 9 9 2600 1200 9 999999999 31 0 0 88 0.2 0 0 +8164800.0 26 12 42 98628 1222 1366 418 485 71 422 56150 6184 49186 17854 277 0 9 9 3500 1200 9 999999999 31 0 0 88 0.2 0 0 +8168400.0 27 12 39 98637 1255 1366 423 502 86 423 58290 7422 49485 18051 216 0 9 9 3500 1200 9 999999999 31 0 0 88 0.2 0 0 +8172000.0 28 11 35 98646 1208 1366 428 480 71 417 55461 6265 48526 17632 70 2.6 9 9 3500 1050 9 999999999 28 0 0 88 0.2 0 0 +8175600.0 29 13 37 98654 1082 1366 436 418 112 329 48311 9122 38289 14501 60 5.1 9 9 3500 3000 9 999999999 34 0 0 88 0.2 0 0 +8179200.0 23.5 13 52 98605 887 1366 377 624 614 225 72146 45165 26188 10015 271 6.1 3 3 2450 3000 9 999999999 34 0 0 88 0.2 0 0 +8182800.0 18 13 73 98555 635 1366 358 347 306 205 38657 22663 22951 7690 250 7.2 6 6 1400 2000 9 999999999 35 0 0 88 0.2 0 0 +8186400.0 19 13 68 98564 345 1366 381 85 0 85 8375 0 8439 3058 50 4.1 9 9 2700 1050 0 19999999 35 0 0 88 0.2 0 0 +8190000.0 19 14 73 98564 35 1366 382 4 0 4 418 0 421 166 60 4.1 9 9 3200 1050 0 19999999 38 0 0 88 0.2 0 0 +8193600.0 19 14 73 98564 0 155 361 0 0 0 0 0 0 0 70 3.1 5 5 4500 2000 0 19999999 38 0 0 88 0.2 0 0 +8197200.0 19 15 78 98564 0 0 362 0 0 0 0 0 0 0 100 3.6 5 5 5000 2000 0 19999999 42 0 0 88 0.2 0 0 +8200800.0 20 14 68 98574 0 0 388 0 0 0 0 0 0 0 110 6.2 9 9 5000 2000 0 19999999 38 0 0 88 0.2 0 0 +8204400.0 20 13 64 98574 0 0 386 0 0 0 0 0 0 0 140 4.1 9 9 5000 1200 0 19999999 35 0 0 88 0.2 0 0 +8208000.0 19 13 68 98564 0 0 381 0 0 0 0 0 0 0 120 3.1 9 9 4000 1200 0 19999999 35 0 0 88 0.2 0 0 +8211600.0 19 13 68 98564 0 0 381 0 0 0 0 0 0 0 200 2.1 9 9 4000 1200 0 19999999 35 0 0 88 0.2 0 0 +8215200.0 19 13 68 98564 0 0 381 0 0 0 0 0 0 0 50 3.1 9 9 4000 1200 0 19999999 35 0 0 88 0.2 0 0 +8218800.0 19 12 64 98564 0 0 380 0 0 0 0 0 0 0 210 1.5 9 9 4000 3000 0 19999999 31 0 0 88 0.2 0 0 +8222400.0 19 14 73 98564 0 0 382 0 0 0 0 0 0 0 330 0 9 9 4000 1200 0 19999999 38 0 0 88 0.2 0 0 +8226000.0 18 13 73 98555 0 0 376 0 0 0 0 0 0 0 160 4.6 9 9 3000 1050 0 19999999 35 0 0 88 0.2 0 0 +8229600.0 18 13 73 98555 0 0 387 0 0 0 0 0 0 0 170 2.6 10 10 3000 1050 0 919999999 35 0 0 88 0.2 0 0 +8233200.0 18 14 77 98555 94 415 388 7 0 7 688 0 692 281 190 6.2 10 10 3000 1050 0 919999999 38 0 0 88 0.2 0 0 +8236800.0 18 14 77 98555 402 1365 377 107 6 105 11901 270 11759 3817 30 2.1 9 9 3000 1200 0 919999999 38 0 0 88 0.2 0 0 +8240400.0 18 15 83 98555 686 1365 378 231 25 218 25760 1877 24469 8406 40 3.6 9 9 3000 1200 0 919999999 43 0 0 88 0.2 0 0 +8244000.0 20 15 73 98574 929 1365 389 344 32 322 38814 2660 36589 13123 60 2.6 9 9 3200 1200 0 919999999 42 0 0 88 0.2 0 0 +8247600.0 23 13 53 98601 1112 1365 403 432 112 341 50059 9181 39721 15021 120 3.6 9 9 3500 1200 0 919999999 35 0 0 88 0.2 0 0 +8251200.0 25 12 44 98619 1225 1365 389 878 567 369 102670 46694 43449 16353 90 5.1 5 5 4000 2000 0 919999999 31 0 0 88 0.2 0 0 +8254800.0 26 13 45 98628 1258 1365 396 905 556 393 105769 46136 46240 17219 70 5.1 5 5 4000 2000 0 919999999 34 0 0 88 0.2 0 0 +8258400.0 26 13 45 98628 1210 1365 419 479 128 366 55942 10459 42976 16192 50 5.1 9 9 4000 3000 0 919999999 34 0 0 88 0.2 0 0 +8262000.0 26 14 48 98628 1084 1365 397 754 550 317 87384 43594 36959 14140 70 5.1 5 5 4000 3000 0 919999999 38 0 0 88 0.2 0 0 +8265600.0 26 14 48 98628 889 1365 397 587 620 183 68920 41637 21621 8550 80 5.1 5 5 4000 2000 0 919999999 38 0 0 88 0.2 0 0 +8269200.0 26 14 48 98628 638 1365 397 376 498 144 43114 30959 16544 6036 90 5.1 5 5 3500 2000 0 919999999 38 0 0 88 0.2 0 0 +8272800.0 26 14 48 98628 347 1365 391 164 325 81 18342 11598 9135 2975 70 4.1 3 3 4000 2000 0 919999999 38 0 0 88 0.2 0 0 +8276400.0 24 15 57 98610 38 1365 382 9 0 9 860 0 865 312 60 3.1 3 3 5000 2000 0 919999999 42 0 0 88 0.2 0 0 +8280000.0 24 15 57 98610 0 168 382 0 0 0 0 0 0 0 70 2.6 3 3 5000 2000 0 919999999 42 0 0 88 0.2 0 0 +8283600.0 23 15 61 98601 0 0 377 0 0 0 0 0 0 0 70 2.6 3 3 5000 2000 0 919999999 42 0 0 88 0.2 0 0 +8287200.0 22 15 64 98592 0 0 372 0 0 0 0 0 0 0 70 3.6 3 3 4500 2000 0 919999999 42 0 0 88 0.2 0 0 +8290800.0 21 15 69 98583 0 0 367 0 0 0 0 0 0 0 50 4.1 3 3 4000 2000 0 919999999 42 0 0 88 0.2 0 0 +8294400.0 21 15 69 98583 0 0 367 0 0 0 0 0 0 0 90 2.6 3 3 4000 2000 0 919999999 42 0 0 88 0.2 0 0 +8298000.0 20 14 68 98574 0 0 388 0 0 0 0 0 0 0 30 5.1 9 9 4000 2000 0 919999999 38 0 0 88 0.2 0 0 +8301600.0 20 13 64 98574 0 0 397 0 0 0 0 0 0 0 320 4.1 10 10 3500 1050 0 19999999 35 0 0 88 0.2 0 0 +8305200.0 15 12 82 98527 0 0 360 0 0 0 0 0 0 0 270 3.1 9 9 5000 1050 0 19999999 32 0 0 88 0.2 0 0 +8308800.0 15 12 82 98527 0 0 340 0 0 0 0 0 0 0 270 3.1 5 5 5000 1050 0 19999999 32 0 0 88 0.2 0 0 +8312400.0 15 12 82 98527 0 0 340 0 0 0 0 0 0 0 100 2.1 5 5 5000 2000 0 19999999 32 0 0 88 0.2 0 0 +8316000.0 16 12 77 98536 0 0 344 0 0 0 0 0 0 0 230 2.1 5 5 5000 2000 9 999999999 32 0 0 88 0.2 0 0 +8319600.0 16 12 77 98536 100 440 351 19 0 19 1867 0 1880 673 176 2.8 7 7 3400 2000 9 999999999 32 0 0 88 0.2 0 0 +8323200.0 16 12 77 98536 407 1364 344 197 289 111 21893 14523 12368 3979 90 3.6 5 5 1800 2000 9 999999999 32 0 0 88 0.2 0 0 +8326800.0 19 11 60 98564 691 1364 358 422 540 149 48825 35299 17265 6441 107 0 5 5 2500 2000 9 999999999 28 0 0 88 0.2 0 0 +8330400.0 21 12 56 98583 933 1364 369 626 639 189 73963 44007 22452 8962 230 1.5 5 5 3000 2000 9 999999999 31 0 0 88 0.2 0 0 +8334000.0 23 12 50 98601 1116 1364 379 784 665 239 93391 47757 28682 11556 90 2.1 5 5 4000 2000 9 999999999 31 0 0 88 0.2 0 0 +8337600.0 25 12 44 98619 1228 1364 383 934 826 191 114939 53917 23609 9731 204 0 3 3 4500 2000 9 999999999 31 0 0 88 0.2 0 0 +8341200.0 26 11 39 98628 1261 1364 387 966 837 192 119371 54988 23850 9815 300 2.6 3 3 5000 2000 9 999999999 28 0 0 88 0.2 0 0 +8344800.0 27 10 34 98637 1213 1364 397 870 678 268 104277 50263 32263 12847 300 3.1 5 5 5000 2000 9 999999999 25 0 0 88 0.2 0 0 +8348400.0 28 10 32 98646 1086 1364 402 761 665 231 90619 48339 27686 11158 250 3.1 5 5 5000 2000 9 999999999 25 0 0 88 0.2 0 0 +8352000.0 28 10 32 98646 891 1364 396 628 759 132 75888 48033 16041 6527 260 2.6 3 3 5000 2000 9 999999999 25 0 0 88 0.2 0 0 +8355600.0 27 9 32 98637 640 1364 390 404 589 128 46907 36906 14909 5527 260 5.1 3 3 6000 2000 9 999999999 23 0 0 88 0.2 0 0 +8359200.0 27 10 34 98637 350 1364 391 167 305 88 18571 12510 9891 3163 250 4.6 3 3 6000 2000 9 999999999 25 0 0 88 0.2 0 0 +8362800.0 26 11 39 98628 41 1364 387 10 0 10 927 0 933 333 250 3.6 3 3 6000 2000 9 999999999 28 0 0 88 0.2 0 0 +8366400.0 25 11 41 98619 0 180 382 0 0 0 0 0 0 0 270 4.1 3 3 5000 2000 9 999999999 28 0 0 88 0.2 0 0 +8370000.0 25 12 44 98619 0 0 383 0 0 0 0 0 0 0 270 4.1 3 3 5000 2000 9 999999999 31 0 0 88 0.2 0 0 +8373600.0 23 13 53 98601 0 0 374 0 0 0 0 0 0 0 250 2.1 3 3 5000 2000 9 999999999 35 0 0 88 0.2 0 0 +8377200.0 22 13 57 98592 0 0 369 0 0 0 0 0 0 0 270 2.6 3 3 4500 2000 9 999999999 35 0 0 88 0.2 0 0 +8380800.0 22 13 57 98592 0 0 369 0 0 0 0 0 0 0 250 4.1 3 3 4500 2000 9 999999999 35 0 0 88 0.2 0 0 +8384400.0 22 12 53 98592 0 0 368 0 0 0 0 0 0 0 290 4.1 3 3 4500 2000 9 999999999 31 0 0 88 0.2 0 0 +8388000.0 21 12 56 98583 0 0 363 0 0 0 0 0 0 0 270 2.6 3 3 4000 2000 9 999999999 31 0 0 88 0.2 0 0 +8391600.0 20 12 60 98574 0 0 358 0 0 0 0 0 0 0 270 2.6 3 3 4000 2000 9 999999999 31 0 0 88 0.2 0 0 +8395200.0 20 12 60 98574 0 0 364 0 0 0 0 0 0 0 260 2.6 5 5 3500 2000 9 999999999 31 0 0 88 0.2 0 0 +8398800.0 19 13 68 98564 0 0 360 0 0 0 0 0 0 0 260 2.6 5 5 3500 2000 9 999999999 35 0 0 88 0.2 0 0 +8402400.0 18 13 73 98555 0 0 355 0 0 0 0 0 0 0 14 0 5 5 3500 2000 9 999999999 35 0 0 88 0.2 0 0 +8406000.0 17 13 77 98546 105 466 357 20 0 20 1964 0 1978 710 220 2.6 7 7 1500 2000 9 999999999 35 0 0 88 0.2 0 0 +8409600.0 18 13 73 98555 412 1363 358 185 272 103 20738 12969 11583 3816 220 2.6 6 6 1000 2000 9 999999999 35 0 0 88 0.2 0 0 +8413200.0 21 12 56 98583 696 1363 363 449 557 165 51485 37510 18964 6983 210 2.6 3 3 600 2000 9 999999999 31 0 0 88 0.2 0 0 +8416800.0 24 12 47 98610 937 1363 362 676 801 126 82494 48834 15431 6372 240 3.1 0 0 2200 2000 9 999999999 31 0 0 88 0.2 0 0 +8420400.0 25 10 39 98619 1120 1363 365 848 783 205 102460 54355 24852 10179 210 3.1 0 0 2400 2000 9 999999999 25 0 0 88 0.2 0 0 +8424000.0 28 8 28 98646 1231 1363 377 955 790 241 115768 57258 29424 11859 290 3.6 0 0 3500 2000 9 999999999 21 0 0 88 0.2 0 0 +8427600.0 29 7 25 98654 1263 1363 381 987 792 253 119781 58218 30862 12377 290 3.1 0 0 4000 2000 9 999999999 19 0 0 88 0.2 0 0 +8431200.0 30 8 25 98663 1215 1363 387 940 789 237 113885 57029 28816 11637 340 4.1 0 0 5000 2000 9 999999999 21 0 0 88 0.2 0 0 +8434800.0 31 7 22 98672 1089 1363 391 823 781 199 99361 55367 24185 9896 300 5.1 0 0 6000 2000 9 999999999 19 0 0 88 0.2 0 0 +8438400.0 31 7 22 98672 893 1363 391 641 791 123 78016 50361 15055 6146 180 5.1 0 0 6000 2000 9 999999999 19 0 0 88 0.2 0 0 +8442000.0 30 9 27 98663 642 1363 389 411 562 147 47228 37121 16929 6155 170 5.7 0 0 6000 2000 9 999999999 23 0 0 88 0.2 0 0 +8445600.0 30 9 27 98663 352 1363 406 168 308 89 18793 12923 9951 3186 300 5.1 3 3 6000 2000 9 999999999 23 0 0 88 0.2 0 0 +8449200.0 29 11 33 98654 43 1363 386 10 0 10 1000 0 1007 357 300 4.1 0 0 6000 2000 9 999999999 28 0 0 88 0.2 0 0 +8452800.0 27 12 39 98637 0 193 377 0 0 0 0 0 0 0 260 3.1 0 0 6000 2000 9 999999999 31 0 0 88 0.2 0 0 +8456400.0 27 12 39 98637 0 0 377 0 0 0 0 0 0 0 270 4.1 0 0 5000 2000 9 999999999 31 0 0 88 0.2 0 0 +8460000.0 27 13 42 98637 0 0 378 0 0 0 0 0 0 0 270 3.1 0 0 5000 2000 9 999999999 34 0 0 88 0.2 0 0 +8463600.0 26 11 39 98628 0 0 371 0 0 0 0 0 0 0 320 4.1 0 0 4000 2000 9 999999999 28 0 0 88 0.2 0 0 +8467200.0 25 13 47 98619 0 0 369 0 0 0 0 0 0 0 320 4.6 0 0 4000 2000 9 999999999 34 0 0 88 0.2 0 0 +8470800.0 24 13 50 98610 0 0 364 0 0 0 0 0 0 0 340 3.1 0 0 4000 2000 9 999999999 34 0 0 88 0.2 0 0 +8474400.0 24 13 50 98610 0 0 364 0 0 0 0 0 0 0 310 4.1 0 0 4000 2000 9 999999999 34 0 0 88 0.2 0 0 +8478000.0 23 13 53 98601 0 0 359 0 0 0 0 0 0 0 310 3.6 0 0 4000 2000 9 999999999 35 0 0 88 0.2 0 0 +8481600.0 23 13 53 98601 0 0 359 0 0 0 0 0 0 0 310 2.6 0 0 4000 2000 9 999999999 35 0 0 88 0.2 0 0 +8485200.0 22 14 60 98592 0 0 355 0 0 0 0 0 0 0 290 2.1 0 0 4000 2000 9 999999999 38 0 0 88 0.2 0 0 +8488800.0 21 14 64 98583 0 0 350 0 0 0 0 0 0 0 290 2.6 0 0 3500 2000 9 999999999 38 0 0 88 0.2 0 0 +8492400.0 20.5 13.5 64 98578 111 491 368 25 0 25 2419 0 2436 842 53 2.3 5 5 2200 2000 9 999999999 36 0 0 88 0.2 0 0 +8496000.0 20 13 64 98574 417 1362 365 207 309 112 23025 15609 12547 4071 240 2.1 5 5 900 2000 9 999999999 35 0 0 88 0.2 0 0 +8499600.0 22 14 60 98592 700 1362 373 444 553 160 51069 36020 18429 6849 230 2.6 4 4 1200 2000 9 999999999 38 0 0 88 0.2 0 0 +8503200.0 27 13 42 98637 941 1362 378 679 775 143 82015 48393 17388 7140 270 3.6 0 0 2800 2000 9 999999999 34 0 0 88 0.2 0 0 +8506800.0 28 14 42 98646 1123 1362 385 846 856 140 104964 51264 17440 7333 270 5.1 0 0 4000 2000 9 999999999 38 0 0 88 0.2 0 0 +8510400.0 29 13 37 98654 1234 1362 389 950 790 235 115194 54253 28617 11599 270 5.1 0 0 4500 2000 9 999999999 34 0 0 88 0.2 0 0 +8514000.0 31 13 33 98672 1266 1362 399 980 792 245 118952 54695 29836 12046 270 7.2 0 0 5000 2000 9 999999999 34 0 0 88 0.2 0 0 +8517600.0 32 12 29 98680 1217 1362 403 936 789 231 113437 54696 28186 11432 290 9.3 0 0 6000 2000 9 999999999 31 0 0 88 0.2 0 0 +8521200.0 33 12 28 98689 1091 1362 408 819 855 135 101557 52145 16758 7046 270 4.1 0 0 6000 2000 9 999999999 31 0 0 88 0.2 0 0 +8524800.0 34 12 26 98697 895 1362 414 638 787 121 77572 47606 14751 6047 290 6.2 0 0 6000 2000 9 999999999 31 0 0 88 0.2 0 0 +8528400.0 33 12 28 98689 644 1362 408 411 617 119 47919 36582 13967 5245 290 6.7 0 0 5000 2000 9 999999999 31 0 0 88 0.2 0 0 +8532000.0 33 12 28 98689 355 1362 408 171 303 92 19042 12577 10311 3284 270 8.2 0 0 5000 2000 9 999999999 31 0 0 88 0.2 0 0 +8535600.0 31 13 33 98672 46 1362 416 11 0 11 1044 0 1051 373 270 7.7 3 3 5000 2000 9 999999999 34 0 0 88 0.2 0 0 +8539200.0 30 13 35 98663 0 205 394 0 0 0 0 0 0 0 280 6.7 0 0 5000 2000 9 999999999 34 0 0 88 0.2 0 0 +8542800.0 29 13 37 98654 0 0 389 0 0 0 0 0 0 0 280 4.6 0 0 5000 2000 9 999999999 34 0 0 88 0.2 0 0 +8546400.0 29 13 37 98654 0 0 389 0 0 0 0 0 0 0 300 6.2 0 0 5000 2000 9 999999999 34 0 0 88 0.2 0 0 +8550000.0 28 13 40 98646 0 0 384 0 0 0 0 0 0 0 310 4.1 0 0 5000 2000 9 999999999 34 0 0 88 0.2 0 0 +8553600.0 27 13 42 98637 0 0 378 0 0 0 0 0 0 0 290 4.6 0 0 5000 2000 9 999999999 34 0 0 88 0.2 0 0 +8557200.0 26 14 48 98628 0 0 375 0 0 0 0 0 0 0 300 3.1 0 0 5000 2000 9 999999999 38 0 0 88 0.2 0 0 +8560800.0 25 14 50 98619 0 0 370 0 0 0 0 0 0 0 280 3.1 0 0 4000 2000 9 999999999 38 0 0 88 0.2 0 0 +8564400.0 23 15 61 98601 0 0 361 0 0 0 0 0 0 0 260 1.5 0 0 3200 2000 9 999999999 42 0 0 88 0.2 0 0 +8568000.0 22 15 64 98592 0 0 356 0 0 0 0 0 0 0 240 2.1 0 0 2500 2000 9 999999999 42 0 0 88 0.2 0 0 +8571600.0 21 14 64 98583 0 0 371 0 0 0 0 0 0 0 210 2.1 5 5 1500 2000 9 999999999 38 0 0 88 0.2 0 0 +8575200.0 20 15 73 98574 0 0 371 0 0 0 0 0 0 0 210 1 6 6 1400 2000 9 999999999 42 0 0 88 0.2 0 0 +8578800.0 20 15 73 98574 117 516 371 24 0 24 2295 0 2312 821 220 1 6 6 1200 2000 9 999999999 42 0 0 88 0.2 0 0 +8582400.0 22 15 64 98592 422 1362 377 210 308 114 23283 15284 12737 4144 230 1.5 5 5 1000 2000 9 999999999 42 0 0 88 0.2 0 0 +8586000.0 25 15 54 98619 705 1362 387 456 637 126 53449 37455 14871 5717 260 2.1 3 3 1200 2000 9 999999999 42 0 0 88 0.2 0 0 +8589600.0 27 15 48 98637 945 1362 397 671 777 132 81528 46159 16128 6670 260 2.1 3 3 2000 2000 9 999999999 42 0 0 88 0.2 0 0 +8593200.0 32 14 34 98680 1127 1362 423 838 833 149 103560 50614 18518 7765 290 6.2 3 3 3200 2000 9 999999999 38 0 0 88 0.2 0 0 +8596800.0 32 14 34 98680 1237 1362 423 939 846 171 116543 52308 21360 8868 290 4.1 3 3 3500 2000 9 999999999 38 0 0 88 0.2 0 0 +8600400.0 34 13 28 98697 1268 1362 433 970 854 174 120752 53444 21817 9036 290 4.1 3 3 3500 2000 9 999999999 34 0 0 88 0.2 0 0 +8604000.0 34 12 26 98697 1219 1362 432 926 850 165 115126 53489 20600 8563 270 4.1 3 3 3500 2000 9 999999999 31 0 0 88 0.2 0 0 +8607600.0 35 12 25 98705 1093 1362 437 810 829 145 99944 51458 17962 7531 270 4.1 3 3 3500 2000 9 999999999 31 0 0 88 0.2 0 0 +8611200.0 35 11 23 98705 897 1362 436 632 730 152 75635 47515 18217 7357 290 8.2 3 3 3000 2000 9 999999999 28 0 0 88 0.2 0 0 +8614800.0 35 12 25 98705 646 1362 444 384 503 145 44075 32160 16754 6130 290 4.1 5 5 3500 2000 9 999999999 31 0 0 88 0.2 0 0 +8618400.0 34 12 26 98697 357 1362 432 170 332 83 19113 12866 9377 3067 280 7.2 3 3 3500 2000 9 999999999 31 0 0 88 0.2 0 0 +8622000.0 33 12 28 98689 49 1362 433 11 0 11 1039 0 1046 374 300 7.7 5 5 4000 2000 9 999999999 31 0 0 88 0.2 0 0 +8625600.0 31 12 31 98672 0 218 421 0 0 0 0 0 0 0 300 6.2 5 5 3500 2000 9 999999999 31 0 0 88 0.2 0 0 +8629200.0 30 12 33 98663 0 0 410 0 0 0 0 0 0 0 280 6.2 3 3 3500 2000 9 999999999 31 0 0 88 0.2 0 0 +8632800.0 29 12 35 98654 0 0 404 0 0 0 0 0 0 0 280 6.2 3 3 3500 2000 9 999999999 31 0 0 88 0.2 0 0 +8636400.0 28 13 40 98646 0 0 400 0 0 0 0 0 0 0 300 6.2 3 3 3500 2000 9 999999999 34 0 0 88 0.2 0 0 +8640000.0 27 14 45 98637 0 0 396 0 0 0 0 0 0 0 300 5.7 3 3 3500 2000 9 999999999 38 0 0 88 0.2 0 0 +8643600.0 26 14 48 98628 0 0 391 0 0 0 0 0 0 0 320 5.7 3 3 3500 2000 9 999999999 38 0 0 88 0.2 0 0 +8647200.0 25 13 47 98619 0 0 384 0 0 0 0 0 0 0 320 3.6 3 3 3500 2000 9 999999999 34 0 0 88 0.2 0 0 +8650800.0 24 13 50 98610 0 0 379 0 0 0 0 0 0 0 320 3.1 3 3 4000 2000 9 999999999 34 0 0 88 0.2 0 0 +8654400.0 24 12 47 98610 0 0 378 0 0 0 0 0 0 0 290 3.6 3 3 4000 2000 9 999999999 31 0 0 88 0.2 0 0 +8658000.0 23 12 50 98601 0 0 373 0 0 0 0 0 0 0 240 2.1 3 3 4000 2000 9 999999999 31 0 0 88 0.2 0 0 +8661600.0 20 14 68 98574 0 0 360 0 0 0 0 0 0 0 240 2.6 3 3 3200 2000 9 999999999 38 0 0 88 0.2 0 0 +8665200.0 20 14 68 98574 122 541 346 30 1 29 3265 0 3267 972 240 2.6 0 0 2500 2000 9 999999999 38 0 0 88 0.2 0 0 +8668800.0 22 13 57 98592 427 1361 354 226 366 111 25267 18579 12475 4100 230 4.1 0 0 2800 2000 9 999999999 35 0 0 88 0.2 0 0 +8672400.0 26 13 45 98627 709 1361 386 467 661 122 54969 39484 14451 5578 134 4.1 2 2 2900 2000 9 999999999 34 0 0 88 0.2 0 0 +8676000.0 30 13 35 98663 949 1361 394 686 801 127 83706 48359 15582 6454 260 4.1 0 0 3000 2000 9 999999999 34 0 0 88 0.2 0 0 +8679600.0 31 13 33 98672 1130 1361 399 854 857 142 105964 52063 17690 7428 270 4.6 0 0 4000 2000 9 999999999 34 0 0 88 0.2 0 0 +8683200.0 34 12 26 98697 1240 1361 414 957 790 238 116088 54929 29023 11741 280 6.2 0 0 5000 2000 9 999999999 31 0 0 88 0.2 0 0 +8686800.0 35 11 23 98705 1271 1361 418 988 791 249 119958 55990 30408 12240 300 5.1 0 0 5000 2000 9 999999999 28 0 0 88 0.2 0 0 +8690400.0 35 10 22 98705 1221 1361 416 943 789 236 114328 55902 28700 11608 270 7.7 0 0 5000 2000 9 999999999 25 0 0 88 0.2 0 0 +8694000.0 36 10 21 98714 1095 1361 422 825 835 153 101518 53632 18919 7904 280 6.2 0 0 5000 2000 9 999999999 25 0 0 88 0.2 0 0 +8697600.0 35 9 20 98705 899 1361 433 636 758 135 76846 48643 16407 6681 290 7.7 3 3 4000 2000 9 999999999 23 0 0 88 0.2 0 0 +8701200.0 35 9 20 98705 648 1361 433 411 539 154 47054 36339 17700 6411 290 5.1 3 3 4000 2000 9 999999999 23 0 0 88 0.2 0 0 +8704800.0 35 12 25 98705 359 1361 444 162 239 99 17936 10496 11007 3463 290 6.2 5 5 4000 2000 9 999999999 31 0 0 88 0.2 0 0 +8708400.0 34 12 26 98697 52 1361 438 11 0 11 1094 0 1102 393 290 5.1 5 5 3200 2000 9 999999999 31 0 0 88 0.2 0 0 +8712000.0 33 13 30 98689 0 230 434 0 0 0 0 0 0 0 280 8.2 5 5 4000 2000 9 999999999 34 0 0 88 0.2 0 0 +8715600.0 32 14 34 98680 0 0 423 0 0 0 0 0 0 0 290 7.7 3 3 4000 2000 9 999999999 38 0 0 88 0.2 0 0 +8719200.0 31 14 36 98672 0 0 418 0 0 0 0 0 0 0 290 4.1 3 3 4000 2000 9 999999999 38 0 0 88 0.2 0 0 +8722800.0 30 14 38 98663 0 0 412 0 0 0 0 0 0 0 320 5.1 3 3 4000 2000 9 999999999 38 0 0 88 0.2 0 0 +8726400.0 29 14 40 98654 0 0 407 0 0 0 0 0 0 0 320 7.7 3 3 4000 2000 9 999999999 38 0 0 88 0.2 0 0 +8730000.0 28 15 45 98646 0 0 403 0 0 0 0 0 0 0 320 6.2 3 3 4000 2000 9 999999999 42 0 0 88 0.2 0 0 +8733600.0 27 15 48 98637 0 0 397 0 0 0 0 0 0 0 290 5.1 3 3 4000 2000 9 999999999 42 0 0 88 0.2 0 0 +8737200.0 26 16 54 98628 0 0 393 0 0 0 0 0 0 0 320 5.1 3 3 4000 2000 9 999999999 46 0 0 88 0.2 0 0 +8740800.0 26 15 51 98628 0 0 392 0 0 0 0 0 0 0 310 3.6 3 3 3500 2000 9 999999999 42 0 0 88 0.2 0 0 +8744400.0 25 17 61 98619 0 0 389 0 0 0 0 0 0 0 270 3.1 3 3 3500 2000 9 999999999 51 0 0 88 0.2 0 0 +8748000.0 25 16 57 98619 0 0 388 0 0 0 0 0 0 0 280 3.6 3 3 3500 2000 9 999999999 46 0 0 88 0.2 0 0 +8751600.0 23 17 69 98601 128 565 379 31 5 31 3449 0 3405 1017 210 2.1 3 3 2500 2000 9 999999999 52 0 0 88 0.2 0 0 +8755200.0 23 16 65 98601 432 1360 378 226 349 115 25137 17287 12832 4215 250 3.6 3 3 2800 2000 9 999999999 47 0 0 88 0.2 0 0 +8758800.0 26 17 58 98628 714 1360 378 468 663 120 55060 37139 14208 5519 260 3.6 0 0 3000 2000 9 999999999 51 0 0 88 0.2 0 0 +8762400.0 29 16 45 98654 953 1360 392 686 815 115 84229 45951 14137 5897 270 4.1 0 0 2800 2000 9 999999999 46 0 0 88 0.2 0 0 +8766000.0 32 16 38 98680 1133 1360 408 852 783 200 102968 50291 24307 10015 240 2.6 0 0 2800 2000 9 999999999 46 0 0 88 0.2 0 0 +8769600.0 34 15 32 98697 1242 1360 418 955 789 234 115806 52780 28547 11590 250 5.1 0 0 3500 2000 9 999999999 41 0 0 88 0.2 0 0 +8773200.0 35 16 32 98705 1273 1360 425 982 791 242 119187 52385 29507 11952 280 5.1 0 0 4000 2000 9 999999999 46 0 0 88 0.2 0 0 +8776800.0 36 15 29 98714 1223 1360 429 938 788 229 113604 52522 27848 11331 280 6.7 0 0 4000 2000 9 999999999 41 0 0 88 0.2 0 0 +8780400.0 36 14 27 98714 1097 1360 427 821 850 136 101776 50686 16905 7116 280 6.2 0 0 3000 2000 9 999999999 37 0 0 88 0.2 0 0 +8784000.0 36 14 27 98714 901 1360 427 641 785 121 77894 46287 14726 6055 290 6.7 0 0 3000 2000 9 999999999 37 0 0 88 0.2 0 0 +8787600.0 36 14 27 98714 650 1360 427 414 535 159 47226 34716 18156 6568 290 6.2 0 0 3000 2000 9 999999999 37 0 0 88 0.2 0 0 +8791200.0 35 14 28 98705 362 1360 440 173 290 96 19171 12067 10672 3402 300 6.2 3 3 3000 2000 9 999999999 37 0 0 88 0.2 0 0 +8794800.0 34 13 28 98697 54 1360 440 12 0 12 1147 0 1155 411 300 5.1 5 5 2700 2000 9 999999999 34 0 0 88 0.2 0 0 +8798400.0 33 13 30 98689 0 243 434 0 0 0 0 0 0 0 310 4.6 5 5 2600 2000 9 999999999 34 0 0 88 0.2 0 0 +8802000.0 32 13 31 98680 0 0 428 0 0 0 0 0 0 0 310 3.1 5 5 2800 2000 9 999999999 34 0 0 88 0.2 0 0 +8805600.0 32 15 36 98680 0 0 407 0 0 0 0 0 0 0 330 3.1 0 0 3000 2000 9 999999999 42 0 0 88 0.2 0 0 +8809200.0 32 15 36 98680 0 0 407 0 0 0 0 0 0 0 320 3.1 0 0 3000 2000 9 999999999 42 0 0 88 0.2 0 0 +8812800.0 31 16 40 98672 0 0 403 0 0 0 0 0 0 0 300 2.1 0 0 3000 2000 9 999999999 46 0 0 88 0.2 0 0 +8816400.0 30 17 46 98663 0 0 399 0 0 0 0 0 0 0 310 1 0 0 3000 2000 9 999999999 51 0 0 88 0.2 0 0 +8820000.0 29 17 48 98654 0 0 394 0 0 0 0 0 0 0 300 3.1 0 0 2700 2000 9 999999999 51 0 0 88 0.2 0 0 +8823600.0 28 16 48 98646 0 0 387 0 0 0 0 0 0 0 310 5.1 0 0 2700 2000 9 999999999 46 0 0 88 0.2 0 0 +8827200.0 26 16 54 98628 0 0 377 0 0 0 0 0 0 0 310 5.1 0 0 2800 2000 9 999999999 46 0 0 88 0.2 0 0 +8830800.0 26 15 51 98628 0 0 376 0 0 0 0 0 0 0 320 5.1 0 0 2800 2000 9 999999999 42 0 0 88 0.2 0 0 +8834400.0 25 14 50 98619 0 0 415 0 0 0 0 0 0 0 310 4.1 9 9 3000 1200 9 999999999 38 0 0 88 0.2 0 0 +8838000.0 25 13 47 98619 133 590 414 18 0 18 1703 0 1715 662 340 7.7 9 9 3000 1200 9 999999999 34 0 0 88 0.2 0 0 +8841600.0 25 13 47 98619 437 1359 414 121 7 119 13437 349 13257 4333 340 3.1 9 9 3500 1200 9 999999999 34 0 0 88 0.2 0 0 +8845200.0 26 13 45 98628 718 1359 419 245 26 231 27484 2046 26060 9016 40 2.1 9 9 3500 1200 9 999999999 34 0 0 88 0.2 0 0 +8848800.0 30 14 38 98663 957 1359 443 357 32 334 40432 2724 38111 13729 40 2.6 9 9 3500 1200 9 999999999 38 0 0 88 0.2 0 0 +8852400.0 32 14 34 98680 1136 1359 455 443 47 404 50772 4079 46585 16920 310 4.1 9 9 3500 1200 9 999999999 38 0 0 88 0.2 0 0 +8856000.0 32 13 31 98680 1245 1359 454 496 84 419 57595 7228 48959 17910 310 4.6 9 9 3500 1200 9 999999999 34 0 0 88 0.2 0 0 +8859600.0 33 13 30 98689 1275 1359 460 511 84 431 59401 7249 50551 18418 290 2.1 9 9 3500 1200 9 999999999 34 0 0 88 0.2 0 0 +8863200.0 34 13 28 98697 1225 1359 466 487 70 424 56296 6032 49385 17946 40 2.1 9 9 3500 3000 9 999999999 34 0 0 88 0.2 0 0 +8866800.0 35 13 27 98705 1098 1359 472 426 47 387 48697 4102 44637 16268 200 2.1 9 9 3500 3000 9 999999999 34 0 0 88 0.2 0 0 +8870400.0 36 13 25 98714 903 1359 478 332 26 315 37499 2178 35792 12744 150 1.5 9 9 3500 3000 9 999999999 34 0 0 88 0.2 0 0 +8874000.0 36 13 25 98714 652 1359 478 215 31 200 24084 2268 22530 7729 270 2.6 9 9 3500 3000 9 999999999 34 0 0 88 0.2 0 0 +8877600.0 36 13 25 98714 364 1359 451 165 232 102 18186 10381 11360 3565 240 1.5 5 5 3500 2000 9 999999999 34 0 0 88 0.2 0 0 +8881200.0 36 13 25 98714 57 1359 451 13 0 13 1202 0 1210 430 250 1.5 5 5 3500 2000 9 999999999 34 0 0 88 0.2 0 0 +8884800.0 33 13 30 98689 0 255 434 0 0 0 0 0 0 0 228 0 5 5 3500 2000 9 999999999 34 0 0 88 0.2 0 0 +8888400.0 32 14 34 98680 0 0 423 0 0 0 0 0 0 0 158 0 3 3 3200 2000 9 999999999 38 0 0 88 0.2 0 0 +8892000.0 31 15 38 98672 0 0 419 0 0 0 0 0 0 0 204 0 3 3 2500 2000 9 999999999 42 0 0 88 0.2 0 0 +8895600.0 29 16 45 98654 0 0 392 0 0 0 0 0 0 0 110 2.1 0 0 2000 2000 9 999999999 46 0 0 88 0.2 0 0 +8899200.0 29 16 45 98654 0 0 409 0 0 0 0 0 0 0 120 2.1 3 3 2200 2000 9 999999999 46 0 0 88 0.2 0 0 +8902800.0 29 15 43 98654 0 0 408 0 0 0 0 0 0 0 140 3.1 3 3 2800 2000 9 999999999 42 0 0 88 0.2 0 0 +8906400.0 28 16 48 98646 0 0 404 0 0 0 0 0 0 0 160 2.1 3 3 2500 2000 9 999999999 46 0 0 88 0.2 0 0 +8910000.0 27 16 51 98637 0 0 405 0 0 0 0 0 0 0 186 0 5 5 2500 2000 9 999999999 46 0 0 88 0.2 0 0 +8913600.0 27 17 54 98637 0 0 400 0 0 0 0 0 0 0 162 0 3 3 2500 2000 9 999999999 51 0 0 88 0.2 0 0 +8917200.0 27 18 58 98637 0 0 401 0 0 0 0 0 0 0 226 0 3 3 2400 2000 9 999999999 57 0 0 88 0.2 0 0 +8920800.0 26 18 61 98628 0 0 402 0 0 0 0 0 0 0 215 0 5 5 2500 2000 9 999999999 57 0 0 88 0.2 0 0 +8924400.0 27 17 54 98637 138 614 430 19 0 19 1804 0 1817 703 45 0 9 9 2000 2000 0 919999999 51 0 0 88 0.2 0 0 +8928000.0 25 19 69 98619 442 1359 398 219 280 128 24112 14055 14128 4574 70 2.6 5 5 1600 1200 0 919999999 63 0 0 88 0.2 0 0 +8931600.0 28 21 66 98646 722 1359 417 439 556 144 50847 30791 16704 6417 90 3.1 5 5 1600 1200 0 919999999 76 0 0 88 0.2 0 0 +8935200.0 31 21 55 98672 960 1359 434 639 654 177 75682 38205 21019 8588 110 3.1 5 5 2000 2000 0 919999999 76 0 0 88 0.2 0 0 +8938800.0 33 16 36 98689 1139 1359 438 799 685 224 95747 45607 26996 11003 130 2.6 5 5 2700 2000 0 919999999 46 0 0 88 0.2 0 0 +8942400.0 36 15 29 98714 1248 1359 454 894 653 294 106555 47224 35294 13930 180 1.5 5 5 3000 2000 0 919999999 41 0 0 88 0.2 0 0 +8946000.0 36 15 29 98714 1278 1359 429 988 804 232 120427 53154 28481 11573 210 2.6 0 0 3000 2000 0 919999999 41 0 0 88 0.2 0 0 +8949600.0 37 10 20 98722 1227 1359 453 883 675 273 105932 50174 32976 13103 230 4.1 5 5 3500 2000 0 919999999 25 0 0 88 0.2 0 0 +8953200.0 38 11 20 98730 1100 1359 460 771 677 223 92284 47997 26845 10892 230 3.1 5 5 3500 2000 0 919999999 28 0 0 88 0.2 0 0 +8956800.0 38 12 21 98730 905 1359 462 601 600 202 70399 42484 23745 9322 270 5.1 5 5 3200 2000 0 919999999 31 0 0 88 0.2 0 0 +8960400.0 38 9 17 98730 654 1359 450 416 591 131 48275 37420 15285 5698 280 6.2 3 3 3000 2000 0 919999999 23 0 0 88 0.2 0 0 +8964000.0 37 7 16 98722 366 1359 448 168 260 98 18668 12197 10900 3465 300 6.2 5 5 4000 2000 0 919999999 19 0 0 88 0.2 0 0 +8967600.0 36 9 19 98714 60 1359 445 13 0 13 1264 0 1273 450 280 5.1 5 5 4000 2000 0 919999999 23 0 0 88 0.2 0 0 +8971200.0 33 10 24 98689 0 268 423 0 0 0 0 0 0 0 112 0 3 3 3500 2000 0 919999999 25 0 0 88 0.2 0 0 +8974800.0 31 12 31 98672 0 0 415 0 0 0 0 0 0 0 208 0 3 3 3000 2000 0 919999999 31 0 0 88 0.2 0 0 +8978400.0 31 12 31 98672 0 0 415 0 0 0 0 0 0 0 320 2.1 3 3 2500 2000 0 919999999 31 0 0 88 0.2 0 0 +8982000.0 31 11 29 98672 0 0 414 0 0 0 0 0 0 0 320 2.6 3 3 2300 2000 0 919999999 28 0 0 88 0.2 0 0 +8985600.0 31 12 31 98672 0 0 398 0 0 0 0 0 0 0 320 3.1 0 0 2700 2000 0 919999999 31 0 0 88 0.2 0 0 +8989200.0 30 13 35 98663 0 0 394 0 0 0 0 0 0 0 320 2.1 0 0 2500 2000 0 919999999 34 0 0 88 0.2 0 0 +8992800.0 28 13 40 98646 0 0 384 0 0 0 0 0 0 0 20 2.6 0 0 2700 2000 0 919999999 34 0 0 88 0.2 0 0 +8996400.0 27 14 45 98637 0 0 380 0 0 0 0 0 0 0 309 0 0 0 2700 2000 0 919999999 38 0 0 88 0.2 0 0 +9000000.0 27 14 45 98637 0 0 380 0 0 0 0 0 0 0 175 0 0 0 2700 2000 0 919999999 38 0 0 88 0.2 0 0 +9003600.0 26 14 48 98628 0 0 375 0 0 0 0 0 0 0 193 0 0 0 3200 2000 0 919999999 38 0 0 88 0.2 0 0 +9007200.0 24 15 57 98610 0 0 366 0 0 0 0 0 0 0 78 0 0 0 3200 2000 9 999999999 42 0 0 88 0.2 0 0 +9010800.0 24 13 50 98610 144 638 379 38 24 36 4216 0 3943 1172 220 2.6 3 3 2200 2000 9 999999999 34 0 0 88 0.2 0 0 +9014400.0 25 16 57 98619 447 1358 372 240 385 113 26807 19109 12694 4245 20 0 0 0 1800 2000 9 999999999 46 0 0 88 0.2 0 0 +9018000.0 28 16 48 98646 727 1358 387 480 669 122 56570 38333 14385 5609 240 1.5 0 0 1800 2000 9 999999999 46 0 0 88 0.2 0 0 +9021600.0 32 15 36 98680 964 1358 407 697 808 123 85325 47050 15175 6322 240 2.6 0 0 2000 2000 9 999999999 42 0 0 88 0.2 0 0 +9025200.0 35 13 27 98705 1142 1358 420 865 856 145 107453 52144 18059 7572 270 2.6 0 0 2600 2000 9 999999999 34 0 0 88 0.2 0 0 +9028800.0 37 10 20 98722 1250 1358 427 970 789 244 117756 56146 29795 12010 260 2.1 0 0 4000 2000 9 999999999 25 0 0 88 0.2 0 0 +9032400.0 37 9 18 98722 1280 1358 426 1000 790 255 121447 57107 31128 12488 300 3.1 0 0 4000 2000 9 999999999 23 0 0 88 0.2 0 0 +9036000.0 38 9 17 98730 1229 1358 450 940 860 161 117403 55274 20190 8386 280 2.6 3 3 3500 2000 9 999999999 23 0 0 88 0.2 0 0 +9039600.0 39 9 16 98739 1102 1358 456 822 809 165 100770 53403 20374 8474 290 4.1 3 3 4000 2000 9 999999999 23 0 0 88 0.2 0 0 +9043200.0 39 9 16 98739 907 1358 463 606 601 204 70972 43849 24085 9430 260 4.1 5 5 5000 2000 9 999999999 23 0 0 88 0.2 0 0 +9046800.0 39 9 16 98739 656 1358 463 393 404 198 44212 30359 22381 7711 270 2.1 5 5 6000 2000 9 999999999 23 0 0 88 0.2 0 0 +9050400.0 38 7 15 98730 369 1358 481 94 5 93 10496 208 10395 3356 290 2.6 9 9 6000 2000 9 999999999 19 0 0 88 0.2 0 0 +9054000.0 37 7 16 98722 63 1358 475 8 0 8 733 0 738 286 320 5.1 9 9 5000 1200 9 999999999 19 0 0 88 0.2 0 0 +9057600.0 37 7 16 98722 0 281 475 0 0 0 0 0 0 0 340 8.2 9 9 5000 1200 9 999999999 19 0 0 88 0.2 0 0 +9061200.0 35 9 20 98705 0 0 466 0 0 0 0 0 0 0 290 4.1 9 9 5000 1200 9 999999999 23 0 0 88 0.2 0 0 +9064800.0 33 10 24 98689 0 0 455 0 0 0 0 0 0 0 340 4.1 9 9 4500 1200 9 999999999 25 0 0 88 0.2 0 0 +9068400.0 32 10 26 98680 0 0 449 0 0 0 0 0 0 0 340 4.1 9 9 4500 1200 9 999999999 25 0 0 88 0.2 0 0 +9072000.0 31 11 29 98672 0 0 420 0 0 0 0 0 0 0 350 5.7 5 5 4000 2000 9 999999999 28 0 0 88 0.2 0 0 +9075600.0 29 12 35 98654 0 0 410 0 0 0 0 0 0 0 20 4.1 5 5 4000 2000 9 999999999 31 0 0 88 0.2 0 0 +9079200.0 29 13 37 98654 0 0 412 0 0 0 0 0 0 0 30 3.1 5 5 4000 2000 9 999999999 34 0 0 88 0.2 0 0 +9082800.0 28 12 37 98646 0 0 405 0 0 0 0 0 0 0 20 2.6 5 5 4000 2000 9 999999999 31 0 0 88 0.2 0 0 +9086400.0 28 12 37 98646 0 0 405 0 0 0 0 0 0 0 20 4.1 5 5 4000 2000 9 999999999 31 0 0 88 0.2 0 0 +9090000.0 28 12 37 98646 0 0 405 0 0 0 0 0 0 0 340 3.6 5 5 4000 2000 9 999999999 31 0 0 88 0.2 0 0 +9093600.0 27 12 39 98637 0 0 400 0 0 0 0 0 0 0 340 2.6 5 5 4000 2000 9 999999999 31 0 0 88 0.2 0 0 +9097200.0 27 12 39 98637 149 661 400 38 15 37 4213 0 4047 1208 340 2.6 5 5 4000 2000 9 999999999 31 0 0 88 0.2 0 0 +9100800.0 27 12 39 98637 451 1357 400 228 313 123 25374 17426 13820 4533 300 3.1 5 5 3500 2000 9 999999999 31 0 0 88 0.2 0 0 +9104400.0 29 12 35 98654 731 1357 404 480 581 167 55389 39316 19390 7266 320 3.1 3 3 2800 2000 9 999999999 31 0 0 88 0.2 0 0 +9108000.0 31 13 33 98672 967 1357 416 693 773 142 84113 47947 17340 7170 20 2.6 3 3 2800 2000 9 999999999 34 0 0 88 0.2 0 0 +9111600.0 31 13 33 98672 1145 1357 416 856 831 155 105882 51443 19232 8040 40 4.1 3 3 3000 2000 9 999999999 34 0 0 88 0.2 0 0 +9115200.0 35 14 28 98705 1253 1357 440 954 843 176 118405 52307 21922 9085 50 3.1 3 3 3500 2000 9 999999999 37 0 0 88 0.2 0 0 +9118800.0 37 11 21 98722 1282 1357 447 985 837 195 122061 54910 24287 9980 140 2.6 3 3 3500 2000 9 999999999 28 0 0 88 0.2 0 0 +9122400.0 38 10 19 98730 1231 1357 459 886 674 275 106314 50121 33193 13180 180 3.1 5 5 4000 2000 9 999999999 25 0 0 88 0.2 0 0 +9126000.0 38 9 17 98730 1104 1357 457 776 678 225 92998 48968 27067 10966 230 4.1 5 5 5000 2000 9 999999999 23 0 0 88 0.2 0 0 +9129600.0 39 10 18 98739 908 1357 465 606 626 187 71487 43896 22139 8786 180 4.1 5 5 5000 2000 9 999999999 25 0 0 88 0.2 0 0 +9133200.0 39 9 16 98739 658 1357 463 394 403 199 44342 30339 22490 7752 230 3.1 5 5 5000 2000 9 999999999 23 0 0 88 0.2 0 0 +9136800.0 38 10 19 98730 371 1357 486 94 4 93 10505 160 10433 3379 250 4.6 9 9 4500 3000 9 999999999 25 0 0 88 0.2 0 0 +9140400.0 36 10 21 98714 65 1357 473 8 0 8 758 0 763 296 250 3.6 9 9 3500 3000 9 999999999 25 0 0 88 0.2 0 0 +9144000.0 35 11 23 98705 0 293 443 0 0 0 0 0 0 0 270 2.1 5 5 3500 3000 9 999999999 28 0 0 88 0.2 0 0 +9147600.0 34 12 26 98697 0 0 438 0 0 0 0 0 0 0 270 2.1 5 5 3200 2000 9 999999999 31 0 0 88 0.2 0 0 +9151200.0 34 13 28 98697 0 0 440 0 0 0 0 0 0 0 320 2.1 5 5 2500 2000 9 999999999 34 0 0 88 0.2 0 0 +9154800.0 33 13 30 98689 0 0 434 0 0 0 0 0 0 0 320 2.1 5 5 2200 2000 9 999999999 34 0 0 88 0.2 0 0 +9158400.0 32 14 34 98680 0 0 430 0 0 0 0 0 0 0 127 0 5 5 2500 6000 9 999999999 38 0 0 88 0.2 0 0 +9162000.0 32 13 31 98680 0 0 428 0 0 0 0 0 0 0 320 2.6 5 5 2500 2000 9 999999999 34 0 0 88 0.2 0 0 +9165600.0 31 14 36 98672 0 0 449 0 0 0 0 0 0 0 70 0 9 9 2500 6000 9 999999999 38 0 0 88 0.2 0 0 +9169200.0 29 15 43 98654 0 0 439 0 0 0 0 0 0 0 89 0 9 9 2500 6000 9 999999999 42 0 0 88 0.2 0 0 +9172800.0 29 15 43 98654 0 0 439 0 0 0 0 0 0 0 165 0 9 9 2500 6000 9 999999999 42 0 0 88 0.2 0 0 +9176400.0 28 16 48 98646 0 0 435 0 0 0 0 0 0 0 40 2.6 9 9 1800 6000 9 999999999 46 0 0 88 0.2 0 0 +9180000.0 27 15 48 98637 0 0 428 0 0 0 0 0 0 0 90 6.2 9 9 1600 2000 9 999999999 42 0 0 88 0.2 0 0 +9183600.0 27 15 48 98637 154 685 428 22 0 22 2155 0 2170 833 290 2.6 9 9 1600 3000 9 999999999 42 0 0 88 0.2 0 0 +9187200.0 26 16 54 98628 456 1356 423 127 15 122 14170 791 13662 4527 240 2.6 9 9 1600 1200 9 999999999 46 0 0 88 0.2 0 0 +9190800.0 29 15 43 98654 735 1356 414 453 428 221 51093 31667 25076 8907 280 4.6 5 5 1800 2000 9 999999999 42 0 0 88 0.2 0 0 +9194400.0 30 16 43 98663 971 1356 421 653 617 212 76749 41842 24999 9991 320 2.6 5 5 2200 2000 9 999999999 46 0 0 88 0.2 0 0 +9198000.0 34 15 32 98697 1148 1356 443 807 678 233 96701 46248 28063 11382 340 2.6 5 5 2400 2000 9 999999999 41 0 0 88 0.2 0 0 +9201600.0 35 16 32 98705 1255 1356 450 898 685 264 108039 46948 31987 12825 290 3.1 5 5 2600 2000 9 999999999 46 0 0 88 0.2 0 0 +9205200.0 36 15 29 98714 1284 1356 454 925 679 282 111193 47883 34080 13553 290 6.2 5 5 2900 2000 9 999999999 41 0 0 88 0.2 0 0 +9208800.0 36 11 22 98714 1233 1356 448 886 688 261 106715 49808 31634 12654 270 4.6 5 5 3500 2000 9 999999999 28 0 0 88 0.2 0 0 +9212400.0 37 11 21 98722 1105 1356 454 775 674 226 92764 47923 27177 11017 300 4.1 5 5 4000 2000 9 999999999 28 0 0 88 0.2 0 0 +9216000.0 37 11 21 98722 910 1356 454 606 622 188 71459 43377 22330 8862 300 4.1 5 5 4000 2000 9 999999999 28 0 0 88 0.2 0 0 +9219600.0 36 9 19 98714 660 1356 445 396 476 164 45217 32935 18814 6792 300 4.1 5 5 4000 2000 9 999999999 23 0 0 88 0.2 0 0 +9223200.0 36 9 19 98714 373 1356 445 171 259 100 19033 12181 11155 3558 300 4.1 5 5 4000 2000 9 999999999 23 0 0 88 0.2 0 0 +9226800.0 34 10 23 98697 68 1356 435 15 0 15 1419 0 1428 503 320 4.1 5 5 2500 2000 9 999999999 25 0 0 88 0.2 0 0 +9230400.0 32 9 24 98680 0 306 423 0 0 0 0 0 0 0 350 5.1 5 5 3200 2000 9 999999999 23 0 0 88 0.2 0 0 +9234000.0 29 8 27 98654 0 0 399 0 0 0 0 0 0 0 350 9.3 3 3 3200 2000 9 999999999 21 0 0 88 0.2 0 0 +9237600.0 28 10 32 98646 0 0 396 0 0 0 0 0 0 0 330 6.2 3 3 3200 2000 9 999999999 25 0 0 88 0.2 0 0 +9241200.0 27 11 37 98637 0 0 392 0 0 0 0 0 0 0 350 4.1 3 3 3200 2000 9 999999999 28 0 0 88 0.2 0 0 +9244800.0 26 10 37 98628 0 0 386 0 0 0 0 0 0 0 330 4.1 3 3 3200 2000 9 999999999 25 0 0 88 0.2 0 0 +9248400.0 26 10 37 98628 0 0 386 0 0 0 0 0 0 0 340 5.1 3 3 3200 2000 9 999999999 25 0 0 88 0.2 0 0 +9252000.0 25 11 41 98619 0 0 366 0 0 0 0 0 0 0 320 4.1 0 0 3500 2000 9 999999999 28 0 0 88 0.2 0 0 +9255600.0 24 10 41 98610 0 0 360 0 0 0 0 0 0 0 310 3.1 0 0 4000 2000 9 999999999 26 0 0 88 0.2 0 0 +9259200.0 23 11 47 98601 0 0 356 0 0 0 0 0 0 0 300 4.1 0 0 4000 2000 9 999999999 28 0 0 88 0.2 0 0 +9262800.0 22 11 50 98592 0 0 352 0 0 0 0 0 0 0 310 4.1 0 0 4000 2000 9 999999999 28 0 0 88 0.2 0 0 +9266400.0 22 11 50 98592 0 0 352 0 0 0 0 0 0 0 320 3.1 0 0 4000 2000 9 999999999 28 0 0 88 0.2 0 0 +9270000.0 22 10 46 98592 159 708 350 46 60 39 5064 0 4302 1289 290 5.1 0 0 4000 2000 9 999999999 26 0 0 88 0.2 0 0 +9273600.0 23 10 44 98601 461 1355 355 252 424 108 28525 22663 12284 4181 300 2.6 0 0 4000 2000 9 999999999 26 0 0 88 0.2 0 0 +9277200.0 25 10 39 98619 738 1355 365 494 667 131 58322 42188 15509 6014 270 3.1 0 0 4000 2000 9 999999999 25 0 0 88 0.2 0 0 +9280800.0 27 10 34 98637 974 1355 375 711 802 135 86932 50617 16516 6849 300 4.1 0 0 4000 2000 9 999999999 25 0 0 88 0.2 0 0 +9284400.0 29 8 27 98654 1151 1355 382 879 782 216 106434 55537 26245 10691 270 5.1 0 0 4500 2000 9 999999999 21 0 0 88 0.2 0 0 +9288000.0 30 9 27 98663 1257 1355 389 978 788 247 118765 56645 30188 12148 250 4.1 0 0 4500 2000 9 999999999 23 0 0 88 0.2 0 0 +9291600.0 31 7 22 98672 1286 1355 391 1008 789 259 122517 58061 31675 12674 270 5.1 0 0 4500 2000 9 999999999 19 0 0 88 0.2 0 0 +9295200.0 32 8 23 98680 1234 1355 398 958 787 242 116253 56861 29490 11887 290 5.1 0 0 4500 2000 9 999999999 21 0 0 88 0.2 0 0 +9298800.0 33 7 20 98689 1107 1355 402 839 779 204 101474 55246 24731 10118 270 5.1 0 0 4500 2000 9 999999999 19 0 0 88 0.2 0 0 +9302400.0 33 7 20 98689 912 1355 402 657 785 129 79885 50469 15738 6447 270 5.1 0 0 4500 2000 9 999999999 19 0 0 88 0.2 0 0 +9306000.0 33 6 19 98689 662 1355 400 429 611 130 49974 39580 15231 5703 270 6.2 0 0 4500 2000 9 999999999 17 0 0 88 0.2 0 0 +9309600.0 33 6 19 98689 375 1355 400 186 335 93 20871 15666 10496 3407 270 5.1 0 0 5000 2000 9 999999999 17 0 0 88 0.2 0 0 +9313200.0 32 6 20 98680 71 1355 395 16 0 16 1590 0 1601 553 270 5.1 0 0 5000 2000 9 999999999 17 0 0 88 0.2 0 0 +9316800.0 31 7 22 98672 0 319 391 0 0 0 0 0 0 0 290 4.1 0 0 4000 2000 9 999999999 19 0 0 88 0.2 0 0 +9320400.0 30 7 24 98663 0 0 386 0 0 0 0 0 0 0 290 4.1 0 0 4000 2000 9 999999999 19 0 0 88 0.2 0 0 +9324000.0 30 7 24 98663 0 0 386 0 0 0 0 0 0 0 290 4.1 0 0 4000 2000 9 999999999 19 0 0 88 0.2 0 0 +9327600.0 29 7 25 98654 0 0 381 0 0 0 0 0 0 0 290 4.1 0 0 4000 2000 9 999999999 19 0 0 88 0.2 0 0 +9331200.0 28 8 28 98646 0 0 377 0 0 0 0 0 0 0 300 6.7 0 0 4000 2000 9 999999999 21 0 0 88 0.2 0 0 +9334800.0 27 9 32 98637 0 0 374 0 0 0 0 0 0 0 300 5.7 0 0 4000 2000 9 999999999 23 0 0 88 0.2 0 0 +9338400.0 26 9 34 98628 0 0 369 0 0 0 0 0 0 0 300 5.1 0 0 4000 2000 9 999999999 23 0 0 88 0.2 0 0 +9342000.0 25 9 36 98619 0 0 364 0 0 0 0 0 0 0 320 5.1 0 0 4000 2000 9 999999999 23 0 0 88 0.2 0 0 +9345600.0 24 9 38 98610 0 0 359 0 0 0 0 0 0 0 280 5.1 0 0 4000 2000 9 999999999 23 0 0 88 0.2 0 0 +9349200.0 23 10 44 98601 0 0 355 0 0 0 0 0 0 0 250 2.1 0 0 5000 2000 9 999999999 26 0 0 88 0.2 0 0 +9352800.0 23 11 47 98601 0 0 372 0 0 0 0 0 0 0 240 1.5 3 3 5000 2000 9 999999999 28 0 0 88 0.2 0 0 +9356400.0 21 12 56 98583 164 731 363 47 45 42 5217 0 4625 1374 230 2.1 3 3 2000 2000 9 999999999 31 0 0 88 0.2 0 0 +9360000.0 23 12 50 98601 465 1355 373 252 386 119 28224 21256 13410 4496 250 2.6 3 3 2400 2000 9 999999999 31 0 0 88 0.2 0 0 +9363600.0 26 10 37 98628 742 1355 386 491 643 139 57739 41479 16376 6323 290 5.1 3 3 2800 2000 9 999999999 25 0 0 88 0.2 0 0 +9367200.0 29 11 33 98654 977 1355 403 704 773 146 85515 49335 17808 7360 300 6.2 3 3 4000 2000 9 999999999 28 0 0 88 0.2 0 0 +9370800.0 31 8 24 98672 1154 1355 410 870 838 157 107957 54557 19539 8141 320 8.2 3 3 5000 2000 9 999999999 21 0 0 88 0.2 0 0 +9374400.0 32 8 23 98680 1259 1355 415 969 787 237 118154 56256 29033 11730 280 7.2 3 3 6000 2000 9 999999999 21 0 0 88 0.2 0 0 +9378000.0 34 6 18 98697 1288 1355 406 1011 789 261 122936 58526 31942 12765 300 8.2 0 0 7000 2000 9 999999999 17 0 0 88 0.2 0 0 +9381600.0 35 5 16 98705 1236 1355 409 964 786 247 116969 58268 30082 12086 300 8.7 0 0 7000 2000 9 999999999 15 0 0 88 0.2 0 0 +9385200.0 36 5 15 98714 1108 1355 415 843 778 207 101954 56147 25095 10246 300 4.1 0 0 7000 2000 9 999999999 15 0 0 88 0.2 0 0 +9388800.0 36 5 15 98714 913 1355 415 660 779 135 80132 51397 16404 6701 290 7.2 0 0 7000 2000 9 999999999 15 0 0 88 0.2 0 0 +9392400.0 36 4 14 98714 664 1355 413 431 606 134 50236 40227 15718 5862 270 7.2 0 0 7000 2000 9 999999999 14 0 0 88 0.2 0 0 +9396000.0 36 4 14 98714 378 1355 413 188 340 93 21133 16245 10532 3423 290 6.7 0 0 7000 2000 9 999999999 14 0 0 88 0.2 0 0 +9399600.0 35 4 14 98705 74 1355 408 17 0 17 1651 0 1662 573 290 5.1 0 0 6000 2000 9 999999999 14 0 0 88 0.2 0 0 +9403200.0 33 6 19 98689 0 331 400 0 0 0 0 0 0 0 270 3.6 0 0 6000 2000 9 999999999 17 0 0 88 0.2 0 0 +9406800.0 31 6 21 98672 0 0 390 0 0 0 0 0 0 0 270 3.1 0 0 5000 2000 9 999999999 17 0 0 88 0.2 0 0 +9410400.0 32 6 20 98680 0 0 395 0 0 0 0 0 0 0 290 3.6 0 0 5000 2000 9 999999999 17 0 0 88 0.2 0 0 +9414000.0 31 8 24 98672 0 0 393 0 0 0 0 0 0 0 290 3.6 0 0 5000 2000 9 999999999 21 0 0 88 0.2 0 0 +9417600.0 31 7 22 98672 0 0 391 0 0 0 0 0 0 0 320 4.1 0 0 5000 2000 9 999999999 19 0 0 88 0.2 0 0 +9421200.0 29 8 27 98654 0 0 382 0 0 0 0 0 0 0 300 4.1 0 0 5000 2000 9 999999999 21 0 0 88 0.2 0 0 +9424800.0 28 9 30 98646 0 0 379 0 0 0 0 0 0 0 320 2.1 0 0 4500 2000 9 999999999 23 0 0 88 0.2 0 0 +9428400.0 28 8 28 98646 0 0 377 0 0 0 0 0 0 0 340 3.1 0 0 4000 2000 9 999999999 21 0 0 88 0.2 0 0 +9432000.0 27 8 30 98637 0 0 372 0 0 0 0 0 0 0 320 2.6 0 0 4000 2000 9 999999999 21 0 0 88 0.2 0 0 +9435600.0 27 9 32 98637 0 0 374 0 0 0 0 0 0 0 340 2.6 0 0 4000 2000 9 999999999 23 0 0 88 0.2 0 0 +9439200.0 25 9 36 98619 0 0 364 0 0 0 0 0 0 0 227 0 0 0 3500 2000 9 999999999 23 0 0 88 0.2 0 0 +9442800.0 23 10 44 98601 169 753 362 50 73 41 5578 0 4582 1377 200 2.1 1 1 1600 2000 9 999999999 26 0 0 88 0.2 0 0 +9446400.0 25 10 39 98619 469 1354 372 259 412 116 29180 22981 13154 4445 220 2.1 1 1 1600 2000 9 999999999 25 0 0 88 0.2 0 0 +9450000.0 29 13 37 98654 746 1354 389 499 675 127 58945 40906 15037 5879 270 3.6 0 0 2000 2000 9 999999999 34 0 0 88 0.2 0 0 +9453600.0 31 12 31 98672 980 1354 398 715 801 134 87370 49479 16507 6861 280 2.6 0 0 2200 2000 9 999999999 31 0 0 88 0.2 0 0 +9457200.0 34 11 25 98697 1156 1354 412 880 858 147 109564 53543 18403 7698 280 2.6 0 0 2500 2000 9 999999999 28 0 0 88 0.2 0 0 +9460800.0 36 7 17 98714 1262 1354 418 985 787 252 119677 57668 30740 12336 300 6.2 0 0 3000 2000 9 999999999 19 0 0 88 0.2 0 0 +9464400.0 36 5 15 98714 1289 1354 415 1014 789 263 123339 58960 32199 12851 290 6.2 0 0 4000 2000 9 999999999 15 0 0 88 0.2 0 0 +9468000.0 37 4 13 98722 1238 1354 419 967 786 248 117330 58675 30317 12166 300 7.2 0 0 5000 2000 9 999999999 14 0 0 88 0.2 0 0 +9471600.0 37 3 12 98722 1110 1354 417 847 778 209 102411 56944 25442 10368 270 4.1 0 0 6000 2000 9 999999999 12 0 0 88 0.2 0 0 +9475200.0 38 4 12 98730 915 1354 424 662 777 138 80342 51821 16756 6837 270 6.2 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +9478800.0 38 4 12 98730 666 1354 424 433 606 135 50418 40290 15773 5887 300 6.2 0 0 8000 2000 9 999999999 14 0 0 88 0.2 0 0 +9482400.0 37 3 12 98722 380 1354 417 190 343 94 21348 16606 10582 3444 300 7.7 0 0 8000 2000 9 999999999 12 0 0 88 0.2 0 0 +9486000.0 36 3 13 98714 76 1354 412 18 0 18 1710 0 1721 592 280 4.1 0 0 4500 2000 9 999999999 12 0 0 88 0.2 0 0 +9489600.0 35 4 14 98705 0 344 408 0 0 0 0 0 0 0 280 3.1 0 0 4500 2000 9 999999999 14 0 0 88 0.2 0 0 +9493200.0 34 4 15 98697 0 0 403 0 0 0 0 0 0 0 280 3.1 0 0 4500 2000 9 999999999 14 0 0 88 0.2 0 0 +9496800.0 32 5 18 98680 0 0 394 0 0 0 0 0 0 0 260 1.5 0 0 4000 2000 9 999999999 15 0 0 88 0.2 0 0 +9500400.0 30 7 24 98663 0 0 386 0 0 0 0 0 0 0 72 0 0 0 2200 2000 9 999999999 19 0 0 88 0.2 0 0 +9504000.0 30 7 24 98663 0 0 386 0 0 0 0 0 0 0 277 0 0 0 2200 2000 9 999999999 19 0 0 88 0.2 0 0 +9507600.0 30 7 24 98663 0 0 386 0 0 0 0 0 0 0 209 0 0 0 2200 2000 9 999999999 19 0 0 88 0.2 0 0 +9511200.0 27 10 34 98637 0 0 375 0 0 0 0 0 0 0 303 0 0 0 1800 2000 9 999999999 25 0 0 88 0.2 0 0 +9514800.0 25 8 34 98619 0 0 362 0 0 0 0 0 0 0 354 0 0 0 1600 2000 9 999999999 21 0 0 88 0.2 0 0 +9518400.0 24 8 36 98610 0 0 358 0 0 0 0 0 0 0 289 0 0 0 1500 2000 9 999999999 21 0 0 88 0.2 0 0 +9522000.0 24 7 34 98610 0 0 356 0 0 0 0 0 0 0 288 0 0 0 1500 2000 9 999999999 19 0 0 88 0.2 0 0 +9525600.0 24 8 36 98610 0 0 358 0 0 0 0 0 0 0 76 0 0 0 1600 2000 9 999999999 21 0 0 88 0.2 0 0 +9529200.0 23 7 36 98601 174 775 352 53 81 42 5856 0 4724 1419 187 0 0 0 1600 2000 9 999999999 19 0 0 88 0.2 0 0 +9532800.0 25 8 34 98619 473 1353 362 263 417 117 29659 23867 13240 4482 278 0 0 0 2500 2000 9 999999999 21 0 0 88 0.2 0 0 +9536400.0 27 8 30 98637 750 1353 372 505 667 136 59626 43441 16108 6248 240 3.1 0 0 2600 2000 9 999999999 21 0 0 88 0.2 0 0 +9540000.0 32 9 24 98680 983 1353 399 721 803 137 88163 51294 16810 6975 240 3.6 0 0 3500 2000 9 999999999 23 0 0 88 0.2 0 0 +9543600.0 34.5 7.5 19 98701 1159 1353 410 887 781 219 107439 55795 26605 10823 159 3.8 0 0 4250 2000 9 999999999 20 0 0 88 0.2 0 0 +9547200.0 37 6 15 98722 1264 1353 422 988 787 254 120094 58119 30983 12419 260 4.1 0 0 5000 2000 9 999999999 17 0 0 88 0.2 0 0 +9550800.0 38 6 14 98730 1291 1353 427 1014 788 262 123376 58488 32078 12814 290 4.1 0 0 5000 2000 9 999999999 17 0 0 88 0.2 0 0 +9554400.0 39 5 12 98739 1239 1353 431 967 786 247 117350 58226 30194 12127 290 5.1 0 0 4000 2000 9 999999999 15 0 0 88 0.2 0 0 +9558000.0 39 5 12 98739 1111 1353 431 846 778 207 102298 56108 25179 10279 300 5.1 0 0 3000 2000 9 999999999 15 0 0 88 0.2 0 0 +9561600.0 40 5 12 98747 916 1353 437 663 778 136 80440 51394 16544 6762 300 5.1 0 0 2700 2000 9 999999999 15 0 0 88 0.2 0 0 +9565200.0 39 5 12 98739 668 1353 431 433 607 134 50512 40020 15650 5856 270 4.1 0 0 2600 2000 9 999999999 15 0 0 88 0.2 0 0 +9568800.0 38 5 13 98730 382 1353 426 191 339 95 21399 16324 10694 3482 290 3.1 0 0 2700 2000 9 999999999 15 0 0 88 0.2 0 0 +9572400.0 38 5 13 98730 79 1353 426 18 0 18 1756 0 1768 609 300 6.2 0 0 2800 2000 9 999999999 15 0 0 88 0.2 0 0 +9576000.0 36 6 16 98714 0 357 416 0 0 0 0 0 0 0 310 4.1 0 0 2800 2000 9 999999999 17 0 0 88 0.2 0 0 +9579600.0 33 6 19 98689 0 0 400 0 0 0 0 0 0 0 250 2.1 0 0 2800 2000 9 999999999 17 0 0 88 0.2 0 0 +9583200.0 33 7 20 98689 0 0 402 0 0 0 0 0 0 0 290 2.6 0 0 4000 2000 9 999999999 19 0 0 88 0.2 0 0 +9586800.0 32 7 21 98680 0 0 396 0 0 0 0 0 0 0 320 3.1 0 0 4500 2000 9 999999999 19 0 0 88 0.2 0 0 +9590400.0 32 8 23 98680 0 0 398 0 0 0 0 0 0 0 310 2.6 0 0 5000 2000 9 999999999 21 0 0 88 0.2 0 0 +9594000.0 31 8 24 98672 0 0 393 0 0 0 0 0 0 0 320 3.1 0 0 5000 2000 9 999999999 21 0 0 88 0.2 0 0 +9597600.0 31 9 26 98672 0 0 394 0 0 0 0 0 0 0 330 2.6 0 0 5000 2000 9 999999999 23 0 0 88 0.2 0 0 +9601200.0 30 9 27 98663 0 0 389 0 0 0 0 0 0 0 320 3.1 0 0 5000 2000 9 999999999 23 0 0 88 0.2 0 0 +9604800.0 29 10 31 98654 0 0 385 0 0 0 0 0 0 0 300 3.1 0 0 5000 2000 9 999999999 25 0 0 88 0.2 0 0 +9608400.0 27 11 37 98637 0 0 376 0 0 0 0 0 0 0 280 1.5 0 0 4000 2000 9 999999999 28 0 0 88 0.2 0 0 +9612000.0 25 11 41 98619 0 0 366 0 0 0 0 0 0 0 220 2.1 0 0 2200 2000 9 999999999 28 0 0 88 0.2 0 0 +9615600.0 25 11 41 98619 178 797 366 55 64 46 6043 34 5130 1524 220 2.6 0 0 1700 2000 9 999999999 28 0 0 88 0.2 0 0 +9619200.0 26 11 39 98628 478 1352 371 265 411 120 29807 23142 13525 4579 240 3.1 0 0 2200 2000 9 999999999 28 0 0 88 0.2 0 0 +9622800.0 29 12 35 98654 753 1352 387 505 674 130 59733 41672 15442 6037 250 4.1 0 0 3000 2000 9 999999999 31 0 0 88 0.2 0 0 +9626400.0 32 12 29 98680 986 1352 403 720 801 136 88020 49538 16693 6944 270 4.1 0 0 3500 2000 9 999999999 31 0 0 88 0.2 0 0 +9630000.0 34 11 25 98697 1161 1352 412 884 858 148 110146 53535 18517 7743 270 5.1 0 0 3500 2000 9 999999999 28 0 0 88 0.2 0 0 +9633600.0 37 10 20 98722 1266 1352 427 984 787 248 119619 56044 30333 12208 270 6.2 0 0 4000 2000 9 999999999 25 0 0 88 0.2 0 0 +9637200.0 38 9 17 98730 1293 1352 431 1011 788 258 123035 56964 31587 12657 360 4.1 0 0 4000 2000 9 999999999 23 0 0 88 0.2 0 0 +9640800.0 39 7 14 98739 1241 1352 434 965 785 245 117197 57288 29902 12032 290 4.1 0 0 4000 2000 9 999999999 18 0 0 88 0.2 0 0 +9644400.0 40 5 12 98747 1113 1352 437 847 777 208 102469 56094 25227 10298 290 4.1 0 0 4000 2000 9 999999999 15 0 0 88 0.2 0 0 +9648000.0 40 5 12 98747 918 1352 437 664 778 136 80602 51397 16599 6786 300 6.2 0 0 4000 2000 9 999999999 15 0 0 88 0.2 0 0 +9651600.0 40 5 12 98747 670 1352 437 435 607 134 50687 40078 15704 5880 290 7.2 0 0 3500 2000 9 999999999 15 0 0 88 0.2 0 0 +9655200.0 39 4 12 98739 384 1352 430 192 342 95 21615 16690 10744 3502 270 7.2 0 0 3500 2000 9 999999999 14 0 0 88 0.2 0 0 +9658800.0 38 4 12 98730 82 1352 424 19 0 19 1814 0 1826 629 280 4.6 0 0 3500 2000 9 999999999 14 0 0 88 0.2 0 0 +9662400.0 36 4 14 98714 0 370 413 0 0 0 0 0 0 0 260 2.6 0 0 3000 2000 9 999999999 14 0 0 88 0.2 0 0 +9666000.0 34 5 16 98697 0 0 404 0 0 0 0 0 0 0 270 2.6 0 0 3500 2000 9 999999999 15 0 0 88 0.2 0 0 +9669600.0 33 6 19 98689 0 0 400 0 0 0 0 0 0 0 240 1.5 0 0 3200 2000 9 999999999 17 0 0 88 0.2 0 0 +9673200.0 31 7 22 98672 0 0 391 0 0 0 0 0 0 0 220 1.5 0 0 2500 2000 9 999999999 19 0 0 88 0.2 0 0 +9676800.0 31 7 22 98672 0 0 391 0 0 0 0 0 0 0 240 1.5 0 0 2200 2000 9 999999999 19 0 0 88 0.2 0 0 +9680400.0 29 8 27 98654 0 0 382 0 0 0 0 0 0 0 161 0 0 0 2000 2000 9 999999999 21 0 0 88 0.2 0 0 +9684000.0 30 7 24 98663 0 0 386 0 0 0 0 0 0 0 290 2.1 0 0 2500 2000 9 999999999 19 0 0 88 0.2 0 0 +9687600.0 30 7 24 98663 0 0 386 0 0 0 0 0 0 0 300 1.5 0 0 2500 2000 9 999999999 19 0 0 88 0.2 0 0 +9691200.0 30 8 25 98663 0 0 387 0 0 0 0 0 0 0 340 2.6 0 0 2800 2000 9 999999999 21 0 0 88 0.2 0 0 +9694800.0 29 9 29 98654 0 0 384 0 0 0 0 0 0 0 284 0 0 0 3500 2000 9 999999999 23 0 0 88 0.2 0 0 +9698400.0 26 10 37 98628 0 0 370 0 0 0 0 0 0 0 69 0 0 0 3200 2000 9 999999999 25 0 0 88 0.2 0 0 +9702000.0 26 11 39 98628 183 819 371 57 69 48 6296 155 5289 1572 220 2.1 0 0 2000 2000 9 999999999 28 0 0 88 0.2 0 0 +9705600.0 28 11 35 98646 482 1352 381 268 413 121 30175 23438 13635 4625 220 1.5 0 0 2000 2000 9 999999999 28 0 0 88 0.2 0 0 +9709200.0 31 11.5 30 98671 757 1352 397 509 674 132 60144 42056 15616 6106 230 0.8 0 0 2400 2000 9 999999999 29 0 0 88 0.2 0 0 +9712800.0 34 12 26 98697 989 1352 414 723 801 137 88357 49576 16765 6976 350 0 0 0 2800 2000 9 999999999 31 0 0 88 0.2 0 0 +9716400.0 37 11 21 98722 1163 1352 429 887 858 148 110457 53542 18553 7756 320 2.1 0 0 2800 2000 9 999999999 28 0 0 88 0.2 0 0 +9720000.0 39 9 16 98739 1267 1352 437 988 786 250 120047 56594 30598 12298 300 4.6 0 0 2500 2000 9 999999999 23 0 0 88 0.2 0 0 +9723600.0 40 7 14 98747 1294 1352 440 1016 788 262 123610 57979 32027 12803 310 5.1 0 0 2500 2000 9 999999999 18 0 0 88 0.2 0 0 +9727200.0 41 6 12 98755 1242 1352 470 901 644 309 107541 51122 37094 14459 310 5.7 5 5 2500 2000 9 999999999 17 0 0 88 0.2 0 0 +9730800.0 40 6 13 98747 1114 1352 457 836 804 173 102525 54805 21332 8839 320 6.2 3 3 2500 2000 9 999999999 17 0 0 88 0.2 0 0 +9734400.0 41 6 12 98755 919 1352 463 656 750 145 79207 50125 17632 7184 320 6.2 3 3 2800 2000 9 999999999 17 0 0 88 0.2 0 0 +9738000.0 40 5 12 98747 671 1352 437 436 607 135 50858 40131 15760 5904 280 7.7 0 0 4000 2000 9 999999999 15 0 0 88 0.2 0 0 +9741600.0 40 6 13 98747 387 1352 438 193 340 96 21698 16445 10838 3537 320 7.2 0 0 4500 2000 9 999999999 17 0 0 88 0.2 0 0 +9745200.0 39 5 12 98739 84 1352 431 19 0 19 1867 0 1879 648 320 4.6 0 0 4000 2000 9 999999999 15 0 0 88 0.2 0 0 +9748800.0 37 6 15 98722 0 382 422 0 0 0 0 0 0 0 320 2.6 0 0 2500 2000 9 999999999 17 0 0 88 0.2 0 0 +9752400.0 37 6 15 98722 0 0 422 0 0 0 0 0 0 0 320 4.1 0 0 2500 2000 9 999999999 17 0 0 88 0.2 0 0 +9756000.0 36 6 16 98714 0 0 416 0 0 0 0 0 0 0 320 4.1 0 0 2500 2000 9 999999999 17 0 0 88 0.2 0 0 +9759600.0 33 8 21 98689 0 0 403 0 0 0 0 0 0 0 270 2.1 0 0 2500 2000 9 999999999 21 0 0 88 0.2 0 0 +9763200.0 34 7 19 98697 0 0 407 0 0 0 0 0 0 0 290 3.1 0 0 2500 2000 9 999999999 19 0 0 88 0.2 0 0 +9766800.0 31 10 27 98672 0 0 395 0 0 0 0 0 0 0 250 1.5 0 0 2500 2000 9 999999999 25 0 0 88 0.2 0 0 +9770400.0 30 9 27 98663 0 0 389 0 0 0 0 0 0 0 230 1.5 0 0 2500 2000 9 999999999 23 0 0 88 0.2 0 0 +9774000.0 29 9 29 98654 0 0 384 0 0 0 0 0 0 0 230 1.5 0 0 2500 2000 9 999999999 23 0 0 88 0.2 0 0 +9777600.0 28 9 30 98646 0 0 379 0 0 0 0 0 0 0 240 2.1 0 0 2500 2000 9 999999999 23 0 0 88 0.2 0 0 +9781200.0 27 9 32 98637 0 0 374 0 0 0 0 0 0 0 226 0 0 0 2200 2000 9 999999999 23 0 0 88 0.2 0 0 +9784800.0 26 8 32 98628 0 0 383 0 0 0 0 0 0 0 196 0 3 3 2000 2000 9 999999999 21 0 0 88 0.2 0 0 +9788400.0 26 8 32 98628 188 841 383 59 92 46 6534 347 5125 1548 210 1.5 3 3 2000 2000 9 999999999 21 0 0 88 0.2 0 0 +9792000.0 28 8 28 98646 486 1351 394 269 408 122 30321 24036 13829 4688 230 2.6 3 3 2600 2000 9 999999999 21 0 0 88 0.2 0 0 +9795600.0 31 9 26 98672 760 1351 394 514 671 136 60677 43368 16174 6304 230 2.6 0 0 3000 2000 9 999999999 23 0 0 88 0.2 0 0 +9799200.0 34 10 23 98697 992 1351 411 727 802 138 88989 50835 17002 7066 250 3.1 0 0 3000 2000 9 999999999 25 0 0 88 0.2 0 0 +9802800.0 37 10 20 98722 1166 1351 427 890 780 217 107874 54467 26451 10780 260 2.1 0 0 3000 2000 9 999999999 25 0 0 88 0.2 0 0 +9806400.0 39 6 13 98739 1269 1351 433 994 786 255 120806 58075 31206 12500 280 3.1 0 0 3500 2000 9 999999999 17 0 0 88 0.2 0 0 +9810000.0 40 5 12 98747 1296 1351 437 1020 787 265 124153 58875 32447 12942 270 6.2 0 0 4000 2000 9 999999999 15 0 0 88 0.2 0 0 +9813600.0 40 5 12 98747 1243 1351 456 958 785 236 116815 57251 28936 11680 300 6.2 3 3 4000 2000 9 999999999 15 0 0 88 0.2 0 0 +9817200.0 41 5 11 98755 1115 1351 442 850 777 208 102794 56061 25316 10332 280 4.1 0 0 3500 2000 9 999999999 15 0 0 88 0.2 0 0 +9820800.0 41 5 11 98755 921 1351 442 666 777 137 80922 51404 16705 6833 290 5.1 0 0 4500 2000 9 999999999 15 0 0 88 0.2 0 0 +9824400.0 41 5 11 98755 673 1351 442 438 607 135 51030 40186 15814 5928 290 4.6 0 0 7000 2000 9 999999999 15 0 0 88 0.2 0 0 +9828000.0 40 5 12 98747 389 1351 437 195 343 97 21913 16817 10888 3557 300 3.6 0 0 7000 2000 9 999999999 15 0 0 88 0.2 0 0 +9831600.0 39 4 12 98739 87 1351 430 20 0 20 1924 0 1937 667 290 3.1 0 0 6000 2000 9 999999999 14 0 0 88 0.2 0 0 +9835200.0 37 4 13 98722 0 395 419 0 0 0 0 0 0 0 270 3.1 0 0 3500 2000 9 999999999 14 0 0 88 0.2 0 0 +9838800.0 33 6 19 98689 0 0 400 0 0 0 0 0 0 0 193 0 0 0 2500 2000 9 999999999 17 0 0 88 0.2 0 0 +9842400.0 33 6 19 98689 0 0 400 0 0 0 0 0 0 0 263 0 0 0 2500 2000 9 999999999 17 0 0 88 0.2 0 0 +9846000.0 32 6 20 98680 0 0 395 0 0 0 0 0 0 0 79 0 0 0 2500 2000 9 999999999 17 0 0 88 0.2 0 0 +9849600.0 31 7 22 98672 0 0 391 0 0 0 0 0 0 0 205 0 0 0 2000 2000 9 999999999 19 0 0 88 0.2 0 0 +9853200.0 30 8 25 98663 0 0 387 0 0 0 0 0 0 0 154 0 0 0 1600 2000 9 999999999 21 0 0 88 0.2 0 0 +9856800.0 28 8 28 98646 0 0 377 0 0 0 0 0 0 0 260 2.1 0 0 1200 2000 9 999999999 21 0 0 88 0.2 0 0 +9860400.0 28 8 28 98646 0 0 377 0 0 0 0 0 0 0 121 0 0 0 1200 2000 9 999999999 21 0 0 88 0.2 0 0 +9864000.0 28 6 25 98646 0 0 375 0 0 0 0 0 0 0 240 1 0 0 1300 2000 9 999999999 17 0 0 88 0.2 0 0 +9867600.0 26 6 28 98628 0 0 365 0 0 0 0 0 0 0 331 0 0 0 1600 2000 9 999999999 17 0 0 88 0.2 0 0 +9871200.0 25 8 34 98619 0 0 362 0 0 0 0 0 0 0 294 0 0 0 1600 2000 9 999999999 21 0 0 88 0.2 0 0 +9874800.0 25 9 36 98619 192 862 364 62 104 47 6862 480 5234 1585 250 2.1 0 0 1300 2000 9 999999999 23 0 0 88 0.2 0 0 +9878400.0 27 9 32 98637 490 1350 374 275 425 121 31047 24728 13696 4672 250 2.1 0 0 1400 2000 9 999999999 23 0 0 88 0.2 0 0 +9882000.0 29 10 31 98654 763 1350 385 515 672 135 60948 43007 16074 6281 220 2.1 0 0 1800 2000 9 999999999 25 0 0 88 0.2 0 0 +9885600.0 34 11 25 98697 995 1350 412 729 801 139 89132 50267 17017 7079 240 2.1 0 0 2300 2000 9 999999999 28 0 0 88 0.2 0 0 +9889200.0 38 11 20 98730 1168 1350 434 891 780 216 107965 53878 26362 10753 240 1.5 0 0 2600 2000 9 999999999 28 0 0 88 0.2 0 0 +9892800.0 39 6 13 98739 1271 1350 433 995 786 256 121024 58056 31271 12524 320 5.7 0 0 4500 2000 9 999999999 17 0 0 88 0.2 0 0 +9896400.0 40 5 12 98747 1297 1350 437 1022 787 266 124337 58851 32502 12962 290 9.3 0 0 5000 2000 9 999999999 15 0 0 88 0.2 0 0 +9900000.0 40 5 12 98747 1245 1350 437 972 784 249 118038 58136 30395 12201 290 8.2 0 0 5000 2000 9 999999999 15 0 0 88 0.2 0 0 +9903600.0 41 5 11 98755 1117 1350 442 851 777 208 102947 56042 25355 10347 290 6.2 0 0 4000 2000 9 999999999 15 0 0 88 0.2 0 0 +9907200.0 40 5 12 98747 922 1350 437 668 776 138 81068 51402 16763 6859 290 6.2 0 0 4000 2000 9 999999999 15 0 0 88 0.2 0 0 +9910800.0 40 5 12 98747 675 1350 437 439 607 136 51194 40233 15872 5954 290 6.2 0 0 4000 2000 9 999999999 15 0 0 88 0.2 0 0 +9914400.0 40 5 12 98747 391 1350 437 197 344 97 22082 16978 10952 3582 290 6.2 0 0 4000 2000 9 999999999 15 0 0 88 0.2 0 0 +9918000.0 40 5 12 98747 90 1350 437 20 0 20 1976 0 1990 686 270 6.2 0 0 4000 2000 9 999999999 15 0 0 88 0.2 0 0 +9921600.0 38 5 13 98730 0 408 426 0 0 0 0 0 0 0 320 3.6 0 0 4000 2000 9 999999999 15 0 0 88 0.2 0 0 +9925200.0 36 5 15 98714 0 0 415 0 0 0 0 0 0 0 320 3.1 0 0 3500 2000 9 999999999 15 0 0 88 0.2 0 0 +9928800.0 36 6 16 98714 0 0 416 0 0 0 0 0 0 0 320 3.1 0 0 4000 2000 9 999999999 17 0 0 88 0.2 0 0 +9932400.0 34 7 19 98697 0 0 407 0 0 0 0 0 0 0 241 0 0 0 3200 2000 9 999999999 19 0 0 88 0.2 0 0 +9936000.0 32 6 20 98680 0 0 395 0 0 0 0 0 0 0 340 2.1 0 0 3000 2000 9 999999999 17 0 0 88 0.2 0 0 +9939600.0 32 7 21 98680 0 0 396 0 0 0 0 0 0 0 340 2.1 0 0 4000 2000 9 999999999 19 0 0 88 0.2 0 0 +9943200.0 31 6 21 98672 0 0 390 0 0 0 0 0 0 0 20 2.1 0 0 5000 2000 9 999999999 17 0 0 88 0.2 0 0 +9946800.0 31 6 21 98672 0 0 390 0 0 0 0 0 0 0 360 1.5 0 0 5000 2000 9 999999999 17 0 0 88 0.2 0 0 +9950400.0 31 6 21 98672 0 0 390 0 0 0 0 0 0 0 320 2.6 0 0 5000 2000 9 999999999 17 0 0 88 0.2 0 0 +9954000.0 30 7 24 98663 0 0 386 0 0 0 0 0 0 0 36 0 0 0 5000 2000 9 999999999 19 0 0 88 0.2 0 0 +9957600.0 30 8 25 98663 0 0 387 0 0 0 0 0 0 0 103 1 0 0 5000 2000 9 999999999 21 0 0 88 0.2 0 0 +9961200.0 28 8 28 98646 196 882 377 64 109 48 7110 717 5358 1625 159 0 0 0 3500 2000 9 999999999 21 0 0 88 0.2 0 0 +9964800.0 29 10 31 98654 493 1349 385 277 424 122 31284 24605 13848 4730 210 2.1 0 0 2200 2000 9 999999999 25 0 0 88 0.2 0 0 +9968400.0 31 9 26 98672 766 1349 394 519 671 138 61324 43536 16362 6388 220 2.6 0 0 2200 2000 9 999999999 23 0 0 88 0.2 0 0 +9972000.0 34 10 23 98697 997 1349 411 732 801 140 89553 50871 17184 7146 270 2.6 0 0 2300 2000 9 999999999 25 0 0 88 0.2 0 0 +9975600.0 37 10 20 98722 1170 1349 427 894 780 218 108370 54444 26581 10829 290 2.6 0 0 3000 2000 9 999999999 25 0 0 88 0.2 0 0 +9979200.0 38 6 14 98730 1273 1349 427 997 785 256 121218 58025 31314 12540 290 2.6 0 0 3500 2000 9 999999999 17 0 0 88 0.2 0 0 +9982800.0 40 7 14 98747 1299 1349 440 1020 787 263 124149 57901 32177 12858 310 3.6 0 0 3500 2000 9 999999999 18 0 0 88 0.2 0 0 +9986400.0 40 7 14 98747 1246 1349 440 970 784 246 117847 57188 30078 12098 270 3.6 0 0 4000 2000 9 999999999 18 0 0 88 0.2 0 0 +9990000.0 41 7 13 98755 1118 1349 465 838 805 171 102900 54261 21103 8753 270 4.1 3 3 4000 2000 9 999999999 18 0 0 88 0.2 0 0 +9993600.0 41 6 12 98755 924 1349 463 659 748 147 79613 50099 17840 7273 300 4.1 3 3 4000 2000 9 999999999 17 0 0 88 0.2 0 0 +9997200.0 41 6 12 98755 677 1349 463 434 585 141 50443 39009 16407 6134 270 4.1 3 3 4000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.00008E7 40 5 12 98747 393 1349 456 195 329 99 21903 16525 11196 3651 310 6.2 3 3 4000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.00044E7 39 5 12 98739 93 1349 450 21 0 21 1998 0 2012 696 290 3.6 3 3 3500 2000 9 999999999 15 0 0 88 0.2 0 0 +1.0008E7 38 5 13 98730 0 421 444 0 0 0 0 0 0 0 350 2.1 3 3 3200 2000 9 999999999 15 0 0 88 0.2 0 0 +1.00116E7 36 5 15 98714 0 0 433 0 0 0 0 0 0 0 350 2.1 3 3 3000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.00152E7 35 5 16 98705 0 0 409 0 0 0 0 0 0 0 350 2.1 0 0 3000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.00188E7 35 6 17 98705 0 0 411 0 0 0 0 0 0 0 20 1.5 0 0 3000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.00224E7 34 6 18 98697 0 0 406 0 0 0 0 0 0 0 30 1.5 0 0 3000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.0026E7 33 5 17 98689 0 0 399 0 0 0 0 0 0 0 30 1 0 0 3000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.00296E7 32 6 20 98680 0 0 395 0 0 0 0 0 0 0 256 0 0 0 3500 2000 9 999999999 17 0 0 88 0.2 0 0 +1.00332E7 31 6 21 98672 0 0 390 0 0 0 0 0 0 0 20 1.5 0 0 3500 2000 9 999999999 17 0 0 88 0.2 0 0 +1.00368E7 29 8 27 98654 0 0 382 0 0 0 0 0 0 0 340 2.1 0 0 2700 2000 9 999999999 21 0 0 88 0.2 0 0 +1.00404E7 29 6 23 98654 0 0 380 0 0 0 0 0 0 0 10 2.1 0 0 3200 2000 9 999999999 17 0 0 88 0.2 0 0 +1.0044E7 29 7 25 98654 0 0 398 0 0 0 0 0 0 0 30 1.5 3 3 3200 2000 9 999999999 19 0 0 88 0.2 0 0 +1.00476E7 29 8 27 98654 201 903 399 65 108 49 7263 865 5495 1668 250 2.1 3 3 3200 2000 9 999999999 21 0 0 88 0.2 0 0 +1.00512E7 30 10 29 98663 497 1349 407 276 409 126 31162 24125 14224 4845 343 0 3 3 3200 2000 9 999999999 25 0 0 88 0.2 0 0 +1.00548E7 32 9 24 98680 770 1349 399 521 671 138 61658 43633 16434 6422 20 2.6 0 0 3500 2000 9 999999999 23 0 0 88 0.2 0 0 +1.00584E7 36 10 21 98714 1000 1349 422 734 801 140 89851 50899 17250 7175 330 2.1 0 0 4500 2000 9 999999999 25 0 0 88 0.2 0 0 +1.0062E7 39 9 16 98739 1172 1349 437 897 779 220 108785 54995 26828 10915 30 2.6 0 0 5000 2000 9 999999999 23 0 0 88 0.2 0 0 +1.00656E7 40 10 17 98747 1274 1349 463 980 860 167 122791 54790 21047 8715 20 1.5 3 3 5000 2000 9 999999999 25 0 0 88 0.2 0 0 +1.00692E7 41 9 15 98755 1300 1349 468 1005 842 193 125102 55886 24169 9921 250 2.1 3 3 5000 2000 9 999999999 22 0 0 88 0.2 0 0 +1.00728E7 41 7 13 98755 1247 1349 472 904 687 269 109096 51509 32646 12995 230 2.6 5 5 4500 2000 9 999999999 18 0 0 88 0.2 0 0 +1.00764E7 41 7 13 98755 1119 1349 472 791 673 233 94916 49611 28095 11339 340 2.6 5 5 4000 2000 9 999999999 18 0 0 88 0.2 0 0 +1.008E7 41 6 12 98755 925 1349 470 622 645 180 74046 45834 21546 8630 300 5.1 5 5 4000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.00836E7 41 6 12 98755 678 1349 463 435 585 141 50605 39056 16461 6158 300 3.6 3 3 4500 2000 9 999999999 17 0 0 88 0.2 0 0 +1.00872E7 40 6 13 98747 395 1349 457 196 328 100 22024 16471 11277 3681 310 4.1 3 3 4000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.00908E7 40 6 13 98747 95 1349 492 11 0 11 1071 0 1079 420 320 4.1 9 9 3200 2000 9 999999999 17 0 0 88 0.2 0 0 +1.00944E7 38 7 15 98730 0 434 481 0 0 0 0 0 0 0 10 5.1 9 9 2500 1200 9 999999999 19 0 0 88 0.2 0 0 +1.0098E7 36 9 19 98714 0 0 472 0 0 0 0 0 0 0 61 0 9 9 2500 1200 9 999999999 23 0 0 88 0.2 0 0 +1.01016E7 35 9 20 98705 0 0 466 0 0 0 0 0 0 0 60 2.6 9 9 3000 1200 9 999999999 23 0 0 88 0.2 0 0 +1.01052E7 34 10 23 98697 0 0 429 0 0 0 0 0 0 0 208 0 3 3 3000 2000 9 999999999 25 0 0 88 0.2 0 0 +1.01088E7 34 9 22 98697 0 0 427 0 0 0 0 0 0 0 60 1 3 3 3000 2000 9 999999999 23 0 0 88 0.2 0 0 +1.01124E7 33 10 24 98689 0 0 430 0 0 0 0 0 0 0 39 0 5 5 3000 2000 9 999999999 25 0 0 88 0.2 0 0 +1.0116E7 30 12 33 98663 0 0 416 0 0 0 0 0 0 0 232 0 5 5 2200 2000 9 999999999 31 0 0 88 0.2 0 0 +1.01196E7 29 11 33 98654 0 0 409 0 0 0 0 0 0 0 160 1 5 5 2100 2000 9 999999999 28 0 0 88 0.2 0 0 +1.01232E7 28 11 35 98646 0 0 404 0 0 0 0 0 0 0 240 1.5 5 5 2000 2000 9 999999999 28 0 0 88 0.2 0 0 +1.01268E7 28 10 32 98646 0 0 380 0 0 0 0 0 0 0 240 1.5 0 0 1800 2000 9 999999999 25 0 0 88 0.2 0 0 +1.01304E7 27 10 34 98637 0 0 375 0 0 0 0 0 0 0 140 2.1 0 0 1400 2000 9 999999999 25 0 0 88 0.2 0 0 +1.0134E7 26 10 37 98628 205 923 370 68 119 50 7578 963 5587 1702 240 2.6 0 0 1400 2000 9 999999999 25 0 0 88 0.2 0 0 +1.01376E7 28 11 35 98646 501 1348 381 282 423 125 31848 24688 14187 4853 240 2.1 0 0 1600 2000 9 999999999 28 0 0 88 0.2 0 0 +1.01412E7 31 11 29 98672 773 1348 396 522 675 136 61837 42773 16113 6324 280 2.6 0 0 1800 2000 9 999999999 28 0 0 88 0.2 0 0 +1.01448E7 33 10 24 98689 1002 1348 406 736 801 141 90109 50912 17337 7213 290 4.1 0 0 2400 2000 9 999999999 25 0 0 88 0.2 0 0 +1.01484E7 36 9 19 98714 1174 1348 420 899 779 220 109007 54977 26882 10935 300 4.6 0 0 3000 2000 9 999999999 23 0 0 88 0.2 0 0 +1.0152E7 37 9 18 98722 1276 1348 426 995 785 252 121072 56488 30885 12404 270 4.1 0 0 3000 2000 9 999999999 23 0 0 88 0.2 0 0 +1.01556E7 39 5 12 98739 1301 1348 431 1025 786 266 124829 58766 32633 13010 330 7.2 0 0 3000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.01592E7 40 5 12 98747 1248 1348 437 975 783 250 118475 58051 30506 12242 280 4.1 0 0 3500 2000 9 999999999 15 0 0 88 0.2 0 0 +1.01628E7 40 5 12 98747 1120 1348 437 854 776 209 103364 55964 25442 10380 240 5.1 0 0 4500 2000 9 999999999 15 0 0 88 0.2 0 0 +1.01664E7 40 5 12 98747 927 1348 437 671 774 139 81463 51376 16961 6944 290 5.1 0 0 4500 2000 9 999999999 15 0 0 88 0.2 0 0 +1.017E7 40 5 12 98747 680 1348 437 443 606 137 51642 40328 16074 6038 280 5.1 0 0 5000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.01736E7 39 4 12 98739 397 1348 430 201 347 99 22598 17593 11148 3656 290 7.7 0 0 5000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.01772E7 38 4 12 98730 98 1348 424 22 0 22 2134 0 2148 742 290 6.2 0 0 5000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.01808E7 37 4 13 98722 0 447 419 0 0 0 0 0 0 0 300 4.1 0 0 4500 2000 9 999999999 14 0 0 88 0.2 0 0 +1.01844E7 36 4 14 98714 0 0 413 0 0 0 0 0 0 0 320 3.1 0 0 4000 2000 9 999999999 14 0 0 88 0.2 0 0 +1.0188E7 35 5 16 98705 0 0 409 0 0 0 0 0 0 0 330 2.1 0 0 3200 2000 9 999999999 15 0 0 88 0.2 0 0 +1.01916E7 34 5 16 98697 0 0 404 0 0 0 0 0 0 0 340 1.5 0 0 2800 2000 9 999999999 15 0 0 88 0.2 0 0 +1.01952E7 33 5 17 98689 0 0 399 0 0 0 0 0 0 0 310 4.1 0 0 2500 2000 9 999999999 15 0 0 88 0.2 0 0 +1.01988E7 33 6 19 98689 0 0 400 0 0 0 0 0 0 0 320 2.6 0 0 2500 2000 9 999999999 17 0 0 88 0.2 0 0 +1.02024E7 29 9 29 98654 0 0 384 0 0 0 0 0 0 0 110 0 0 0 2000 2000 9 999999999 23 0 0 88 0.2 0 0 +1.0206E7 27 10 34 98637 0 0 375 0 0 0 0 0 0 0 93 0 0 0 1400 2000 9 999999999 25 0 0 88 0.2 0 0 +1.02096E7 27 9 32 98637 0 0 374 0 0 0 0 0 0 0 339 0 0 0 1400 2000 9 999999999 23 0 0 88 0.2 0 0 +1.02132E7 26 8 32 98628 0 0 367 0 0 0 0 0 0 0 68 0 0 0 1600 2000 9 999999999 21 0 0 88 0.2 0 0 +1.02168E7 26 8 32 98628 0 0 367 0 0 0 0 0 0 0 243 0 0 0 1800 2000 9 999999999 21 0 0 88 0.2 0 0 +1.02204E7 25 7 32 98619 209 943 361 71 127 51 7862 1378 5698 1738 177 0 0 0 2200 2000 9 999999999 19 0 0 88 0.2 0 0 +1.0224E7 26 6 28 98628 504 1347 365 287 438 123 32552 26602 14035 4819 240 2.1 0 0 2000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.02276E7 31 8 24 98672 776 1347 393 527 671 141 62358 44235 16760 6551 240 2.1 0 0 2000 2000 9 999999999 21 0 0 88 0.2 0 0 +1.02312E7 35 9 20 98705 1005 1347 415 739 802 142 90559 51495 17435 7251 209 0 0 0 2500 2000 9 999999999 23 0 0 88 0.2 0 0 +1.02348E7 38 7 15 98730 1176 1347 429 903 779 224 109560 55986 27284 11074 220 1.5 0 0 3500 2000 9 999999999 19 0 0 88 0.2 0 0 +1.02384E7 39 6 13 98739 1277 1347 433 1001 785 257 121798 57966 31490 12605 270 4.1 0 0 4000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.0242E7 40 5 12 98747 1302 1347 437 1026 786 267 124987 58743 32683 13029 280 4.1 0 0 5000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.02456E7 40 5 12 98747 1249 1347 437 976 783 250 118613 58025 30545 12257 270 4.1 0 0 5000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.02492E7 41 5 11 98755 1121 1347 442 855 775 209 103504 55947 25481 10395 280 4.1 0 0 5000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.02528E7 41 5 11 98755 928 1347 442 672 773 140 81608 51377 17010 6966 280 4.1 0 0 5000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.02564E7 41 5 11 98755 682 1347 442 444 606 138 51805 40376 16127 6062 290 4.1 0 0 5000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.026E7 40 5 12 98747 400 1347 437 202 346 100 22723 17546 11227 3686 290 4.1 0 0 5000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.02636E7 40 5 12 98747 101 1347 437 23 0 23 2184 0 2199 760 300 4.1 0 0 4500 2000 9 999999999 15 0 0 88 0.2 0 0 +1.02672E7 38 4 12 98730 0 460 424 0 0 0 0 0 0 0 300 4.1 0 0 4500 2000 9 999999999 14 0 0 88 0.2 0 0 +1.02708E7 37 4 13 98722 0 0 419 0 0 0 0 0 0 0 340 1.5 0 0 3500 2000 9 999999999 14 0 0 88 0.2 0 0 +1.02744E7 36 6 16 98714 0 0 416 0 0 0 0 0 0 0 10 1.5 0 0 3200 2000 9 999999999 17 0 0 88 0.2 0 0 +1.0278E7 33 6 19 98689 0 0 400 0 0 0 0 0 0 0 151 0 0 0 2600 2000 9 999999999 17 0 0 88 0.2 0 0 +1.02816E7 33 6 19 98689 0 0 400 0 0 0 0 0 0 0 50 2.1 0 0 2800 2000 9 999999999 17 0 0 88 0.2 0 0 +1.02852E7 32 7 21 98680 0 0 396 0 0 0 0 0 0 0 336 0 0 0 2600 2000 9 999999999 19 0 0 88 0.2 0 0 +1.02888E7 31 8 24 98672 0 0 393 0 0 0 0 0 0 0 345 0 0 0 2600 2000 9 999999999 21 0 0 88 0.2 0 0 +1.02924E7 29 8 27 98654 0 0 382 0 0 0 0 0 0 0 104 0 0 0 2000 2000 9 999999999 21 0 0 88 0.2 0 0 +1.0296E7 27 10 34 98637 0 0 375 0 0 0 0 0 0 0 220 1.5 0 0 1800 2000 9 999999999 25 0 0 88 0.2 0 0 +1.02996E7 27 10 34 98637 0 0 375 0 0 0 0 0 0 0 205 0 0 0 2000 2000 9 999999999 25 0 0 88 0.2 0 0 +1.03032E7 26 8 32 98628 0 0 367 0 0 0 0 0 0 0 106 0 0 0 2200 2000 9 999999999 21 0 0 88 0.2 0 0 +1.03068E7 27 6 26 98637 213 962 370 73 132 52 8117 1658 5804 1773 250 2.6 0 0 2000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.03104E7 28 6 25 98646 508 1347 375 290 440 124 32869 26840 14127 4859 220 1.5 0 0 2100 2000 9 999999999 17 0 0 88 0.2 0 0 +1.0314E7 31 6 21 98672 778 1347 390 531 666 147 62735 45064 17394 6774 290 1.5 0 0 2100 2000 9 999999999 17 0 0 88 0.2 0 0 +1.03176E7 34 7 19 98697 1007 1347 407 744 805 142 91175 52534 17499 7274 250 2.6 0 0 2100 2000 9 999999999 19 0 0 88 0.2 0 0 +1.03212E7 36 6 16 98714 1177 1347 416 906 779 225 109924 56433 27499 11148 250 2.6 0 0 2800 2000 9 999999999 17 0 0 88 0.2 0 0 +1.03248E7 39 6 13 98739 1279 1347 433 1002 784 258 121974 57945 31543 12624 250 2.6 0 0 3000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.03284E7 40 6 13 98747 1303 1347 438 1026 629 417 120719 55088 49435 18209 230 2.6 0 0 3500 2000 9 999999999 17 0 0 88 0.2 0 0 +1.0332E7 41 6 12 98755 1250 1347 498 504 80 429 58705 7219 50393 18286 270 4.1 9 9 4000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.03356E7 41 6 12 98755 1123 1347 498 441 83 372 51086 7318 43379 16052 270 3.6 9 9 3200 6000 9 999999999 17 0 0 88 0.2 0 0 +1.03392E7 41 6 12 98755 929 1347 470 626 528 261 72360 42812 30374 11509 270 4.1 5 5 3000 6000 9 999999999 17 0 0 88 0.2 0 0 +1.03428E7 41 6 12 98755 683 1347 444 445 609 136 51935 40135 15929 6006 300 4.1 0 0 3000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.03464E7 41 6 12 98755 402 1347 463 201 331 102 22523 16921 11474 3757 300 4.1 3 3 3000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.035E7 38.5 4.8 13 98735 103 1347 461 23 0 23 2208 0 2223 772 230 3.2 3 3 3000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.03536E7 36.8 5 14 98720 0 473 430 0 0 0 0 0 0 0 195 2.2 0 0 2800 2000 9 999999999 15 0 0 88 0.2 0 0 +1.03572E7 35.5 5.5 16 98710 0 0 424 0 0 0 0 0 0 0 181 1.1 0 0 2500 2000 9 999999999 16 0 0 88 0.2 0 0 +1.03608E7 33.8 7.5 20 98695 0 0 416 0 0 0 0 0 0 0 140 0.4 0 0 2100 2000 9 999999999 20 0 0 88 0.2 0 0 +1.03644E7 32.2 9 24 98682 0 0 406 0 0 0 0 0 0 0 171 0 0 0 1900 2000 9 999999999 23 0 0 88 0.2 0 0 +1.0368E7 30.8 10.5 29 98670 0 0 406 0 0 0 0 0 0 0 150 0 0 0 1900 2000 9 999999999 27 0 0 88 0.2 0 0 +1.03716E7 29.5 11.8 33 98659 0 0 398 0 0 0 0 0 0 0 108 0 0 0 2200 2000 9 999999999 30 0 0 88 0.2 0 0 +1.03752E7 28.8 11.2 34 98652 0 0 393 0 0 0 0 0 0 0 138 0 0 0 2200 2000 9 999999999 29 0 0 88 0.2 0 0 +1.03788E7 28 10.8 34 98646 0 0 382 0 0 0 0 0 0 0 160 0.4 0 0 2100 2000 9 999999999 27 0 0 88 0.2 0 0 +1.03824E7 27.8 10.2 34 98644 0 0 386 0 0 0 0 0 0 0 201 0.9 0 0 2200 2000 9 999999999 26 0 0 88 0.2 0 0 +1.0386E7 27.8 10 33 98644 0 0 380 0 0 0 0 0 0 0 244 1.5 0 0 2500 2000 9 999999999 25 0 0 88 0.2 0 0 +1.03896E7 28.2 10 32 98648 0 0 375 0 0 0 0 0 0 0 247 2.2 0 0 3000 2000 9 999999999 25 0 0 88 0.2 0 0 +1.03932E7 27 10 34 98637 221 1000 375 77 138 54 8507 1753 6015 1847 240 2.1 0 0 3000 2000 9 999999999 25 0 0 88 0.2 0 0 +1.03968E7 29 10 31 98654 514 1345 385 293 433 127 33134 25933 14454 4982 250 2.6 0 0 3000 2000 9 999999999 25 0 0 88 0.2 0 0 +1.04004E7 30 10 29 98663 784 1345 390 532 674 140 63037 43533 16637 6538 270 2.6 0 0 2400 2000 9 999999999 25 0 0 88 0.2 0 0 +1.0404E7 34 12 26 98697 1011 1345 414 742 797 142 90758 49738 17480 7289 250 2.6 0 0 2200 2000 9 999999999 31 0 0 88 0.2 0 0 +1.04076E7 36 12 24 98714 1181 1345 425 901 853 152 112265 52816 19075 7963 250 2.6 0 0 2200 2000 9 999999999 31 0 0 88 0.2 0 0 +1.04112E7 38 8 16 98730 1281 1345 449 989 784 242 120837 56018 29798 12013 280 5.1 3 3 2800 2000 9 999999999 20 0 0 88 0.2 0 0 +1.04148E7 39 6 13 98739 1306 1345 451 1014 785 253 124087 57296 31106 12479 280 4.6 3 3 4000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.04184E7 40 7 14 98747 1252 1345 459 963 844 178 120057 56098 22260 9184 280 4.1 3 3 4000 2000 9 999999999 18 0 0 88 0.2 0 0 +1.0422E7 40 8 15 98747 1125 1345 467 794 616 279 94045 47955 33262 13098 280 5.1 5 5 4500 2000 9 999999999 20 0 0 88 0.2 0 0 +1.04256E7 40 7 14 98747 932 1345 466 626 617 199 74029 44953 23611 9377 270 7.7 5 5 5000 2000 9 999999999 18 0 0 88 0.2 0 0 +1.04292E7 40 7 14 98747 687 1345 466 415 476 172 47620 34095 19834 7224 270 6.2 5 5 5000 2000 9 999999999 18 0 0 88 0.2 0 0 +1.04328E7 39 6 13 98739 406 1345 451 203 343 100 22879 17407 11267 3723 270 5.1 3 3 5000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.04364E7 38 6 14 98730 109 1345 446 24 0 24 2302 0 2318 807 260 5.1 3 3 4500 2000 9 999999999 17 0 0 88 0.2 0 0 +1.044E7 35 7 18 98705 0 499 430 0 0 0 0 0 0 0 260 4.1 3 3 3500 2000 9 999999999 19 0 0 88 0.2 0 0 +1.04436E7 33 8 21 98689 0 0 420 0 0 0 0 0 0 0 260 3.1 3 3 3500 2000 9 999999999 21 0 0 88 0.2 0 0 +1.04472E7 33 8 21 98689 0 0 420 0 0 0 0 0 0 0 280 3.6 3 3 3200 2000 9 999999999 21 0 0 88 0.2 0 0 +1.04508E7 33 7 20 98689 0 0 419 0 0 0 0 0 0 0 280 3.6 3 3 3000 2000 9 999999999 19 0 0 88 0.2 0 0 +1.04544E7 33 11 26 98689 0 0 407 0 0 0 0 0 0 0 350 2.1 0 0 3000 2000 9 999999999 28 0 0 88 0.2 0 0 +1.0458E7 31 12 31 98672 0 0 398 0 0 0 0 0 0 0 50 2.1 0 0 3000 2000 9 999999999 31 0 0 88 0.2 0 0 +1.04616E7 30 11 31 98663 0 0 391 0 0 0 0 0 0 0 70 1 0 0 3200 2000 9 999999999 28 0 0 88 0.2 0 0 +1.04652E7 30 12 33 98663 0 0 393 0 0 0 0 0 0 0 0 0 0 0 3200 2000 9 999999999 31 0 0 88 0.2 0 0 +1.04688E7 28 12 37 98646 0 0 382 0 0 0 0 0 0 0 15 0 0 0 2800 2000 9 999999999 31 0 0 88 0.2 0 0 +1.04724E7 27 11 37 98637 0 0 376 0 0 0 0 0 0 0 305 0 0 0 2800 2000 9 999999999 28 0 0 88 0.2 0 0 +1.0476E7 28 9 30 98646 0 0 379 0 0 0 0 0 0 0 165 0 0 0 2800 2000 9 999999999 23 0 0 88 0.2 0 0 +1.04796E7 28 7 26 98646 225 1018 376 79 145 55 8782 2217 6111 1878 250 3.6 0 0 3500 2000 9 999999999 19 0 0 88 0.2 0 0 +1.04832E7 28 8 28 98646 517 1344 377 296 439 127 33570 26803 14485 5000 240 4.1 0 0 4000 2000 9 999999999 21 0 0 88 0.2 0 0 +1.04868E7 31 11 29 98672 786 1344 396 534 676 139 63244 43116 16483 6494 250 5.1 0 0 4000 2000 9 999999999 28 0 0 88 0.2 0 0 +1.04904E7 32 11 28 98680 1013 1344 402 744 797 144 91126 50374 17653 7355 250 2.6 0 0 4000 2000 9 999999999 28 0 0 88 0.2 0 0 +1.0494E7 36 11 22 98714 1182 1344 423 904 855 152 112753 53454 18992 7925 270 4.1 0 0 4000 2000 9 999999999 28 0 0 88 0.2 0 0 +1.04976E7 37 12 22 98722 1282 1344 449 984 844 179 122772 53477 22410 9256 270 2.6 3 3 4000 2000 9 999999999 31 0 0 88 0.2 0 0 +1.05012E7 38 10 19 98730 1307 1344 452 1009 856 178 126511 55022 22430 9248 270 3.6 3 3 4000 2000 9 999999999 25 0 0 88 0.2 0 0 +1.05048E7 39 10 18 98739 1253 1344 457 960 826 190 118887 54490 23680 9744 280 4.6 3 3 4000 2000 9 999999999 25 0 0 88 0.2 0 0 +1.05084E7 40 10 17 98747 1126 1344 470 793 613 279 93787 47037 33247 13105 270 4.1 5 5 3500 2000 9 999999999 25 0 0 88 0.2 0 0 +1.0512E7 39 10 18 98739 933 1344 465 624 591 214 73292 43207 25274 9955 270 4.1 5 5 2500 2000 9 999999999 25 0 0 88 0.2 0 0 +1.05156E7 39 10 18 98739 688 1344 465 415 467 176 47410 32929 20168 7337 300 4.6 5 5 2500 2000 9 999999999 25 0 0 88 0.2 0 0 +1.05192E7 39 9 16 98739 408 1344 456 204 339 101 22898 16846 11377 3764 280 5.7 3 3 2500 2000 9 999999999 23 0 0 88 0.2 0 0 +1.05228E7 39 9 16 98739 111 1344 463 23 0 23 2209 0 2225 788 290 3.6 5 5 2500 2000 9 999999999 23 0 0 88 0.2 0 0 +1.05264E7 37 8 17 98722 0 512 450 0 0 0 0 0 0 0 360 2.6 5 5 2500 2000 9 999999999 20 0 0 88 0.2 0 0 +1.053E7 35 13 27 98705 0 0 446 0 0 0 0 0 0 0 80 2.1 5 5 2500 2000 9 999999999 34 0 0 88 0.2 0 0 +1.05336E7 34 13 28 98697 0 0 440 0 0 0 0 0 0 0 90 1.5 5 5 2500 2000 9 999999999 34 0 0 88 0.2 0 0 +1.05372E7 33 13 30 98689 0 0 427 0 0 0 0 0 0 0 154 0 3 3 2500 2000 9 999999999 34 0 0 88 0.2 0 0 +1.05408E7 32 14 34 98680 0 0 423 0 0 0 0 0 0 0 180 1.5 3 3 2500 2000 9 999999999 38 0 0 88 0.2 0 0 +1.05444E7 31 15 38 98672 0 0 419 0 0 0 0 0 0 0 19 0 3 3 2500 2000 9 999999999 42 0 0 88 0.2 0 0 +1.0548E7 30 15 40 98663 0 0 414 0 0 0 0 0 0 0 199 0 3 3 2500 2000 9 999999999 42 0 0 88 0.2 0 0 +1.05516E7 30 15 40 98663 0 0 414 0 0 0 0 0 0 0 279 0 3 3 2500 2000 9 999999999 42 0 0 88 0.2 0 0 +1.05552E7 29 15 43 98654 0 0 408 0 0 0 0 0 0 0 326 0 3 3 2200 2000 9 999999999 42 0 0 88 0.2 0 0 +1.05588E7 29 15 43 98654 0 0 408 0 0 0 0 0 0 0 0 0 3 3 2000 2000 9 999999999 42 0 0 88 0.2 0 0 +1.05624E7 28 14 42 98646 0 0 392 0 0 0 0 0 0 0 172 0 1 1 2000 2000 9 999999999 38 0 0 88 0.2 0 0 +1.0566E7 29 14 40 98654 228 1036 390 80 108 62 8811 1622 6816 2051 111 0 0 0 1600 2000 9 999999999 38 0 0 88 0.2 0 0 +1.05696E7 33 12 28 98689 520 1344 408 297 429 130 33518 25528 14801 5107 220 2.6 0 0 1900 2000 9 999999999 31 0 0 88 0.2 0 0 +1.05732E7 33 13 30 98689 789 1344 410 534 681 135 63391 42108 16038 6349 230 4.1 0 0 2500 2000 9 999999999 34 0 0 88 0.2 0 0 +1.05768E7 34 12 26 98697 1015 1344 414 745 797 143 91195 49759 17612 7346 250 4.1 0 0 2500 2000 9 999999999 31 0 0 88 0.2 0 0 +1.05804E7 36 12 24 98714 1184 1344 425 904 852 153 112634 52794 19156 7994 260 4.1 0 0 2500 2000 9 999999999 31 0 0 88 0.2 0 0 +1.0584E7 39 11 19 98739 1283 1344 440 999 783 251 121669 55212 30795 12386 250 4.1 0 0 2500 2000 9 999999999 28 0 0 88 0.2 0 0 +1.05876E7 40 11 18 98747 1307 1344 446 1022 784 259 124535 55522 31748 12732 280 4.6 0 0 2500 2000 9 999999999 28 0 0 88 0.2 0 0 +1.05912E7 41 9 15 98755 1254 1344 468 962 855 164 120537 54867 20700 8578 260 4.6 3 3 2500 2000 9 999999999 22 0 0 88 0.2 0 0 +1.05948E7 41 9 15 98755 1127 1344 468 843 818 157 104249 52996 19538 8147 280 5.1 3 3 2500 2000 9 999999999 22 0 0 88 0.2 0 0 +1.05984E7 41 8 14 98755 934 1344 466 665 744 148 80459 49147 17974 7356 280 4.1 3 3 3200 2000 9 999999999 20 0 0 88 0.2 0 0 +1.0602E7 40 9 16 98747 690 1344 462 442 587 141 51461 38287 16437 6202 280 4.1 3 3 3200 2000 9 999999999 23 0 0 88 0.2 0 0 +1.06056E7 38 9 17 98730 410 1344 450 205 329 105 22998 16739 11798 3878 270 5.1 3 3 3500 2000 9 999999999 23 0 0 88 0.2 0 0 +1.06092E7 37 7 16 98722 114 1344 441 25 0 25 2400 0 2417 843 260 9.3 3 3 2500 2000 9 999999999 19 0 0 88 0.2 0 0 +1.06128E7 35 8 19 98705 0 525 438 0 0 0 0 0 0 0 260 5.1 5 5 2500 2000 9 999999999 21 0 0 88 0.2 0 0 +1.06164E7 34 9 22 98697 0 0 434 0 0 0 0 0 0 0 230 5.7 5 5 2500 2000 9 999999999 23 0 0 88 0.2 0 0 +1.062E7 33 10 24 98689 0 0 430 0 0 0 0 0 0 0 240 4.6 5 5 3000 2000 9 999999999 25 0 0 88 0.2 0 0 +1.06236E7 33 10 24 98689 0 0 406 0 0 0 0 0 0 0 250 5.7 0 0 3500 2000 9 999999999 25 0 0 88 0.2 0 0 +1.06272E7 32 11 28 98680 0 0 419 0 0 0 0 0 0 0 250 4.6 3 3 3500 2000 9 999999999 28 0 0 88 0.2 0 0 +1.06308E7 31 11 29 98672 0 0 420 0 0 0 0 0 0 0 230 2.6 5 5 3500 2000 9 999999999 28 0 0 88 0.2 0 0 +1.06344E7 30 11 31 98663 0 0 415 0 0 0 0 0 0 0 230 2.1 5 5 4500 2000 9 999999999 28 0 0 88 0.2 0 0 +1.0638E7 29 12 35 98654 0 0 410 0 0 0 0 0 0 0 220 2.1 5 5 4500 2000 9 999999999 31 0 0 88 0.2 0 0 +1.06416E7 28 12 37 98646 0 0 405 0 0 0 0 0 0 0 250 2.6 5 5 4500 2000 9 999999999 31 0 0 88 0.2 0 0 +1.06452E7 28 12 37 98646 0 0 405 0 0 0 0 0 0 0 250 1.5 5 5 5000 2000 9 999999999 31 0 0 88 0.2 0 0 +1.06488E7 28 12 37 98646 0 0 429 0 0 0 0 0 0 0 250 1.5 9 9 6000 3000 9 999999999 31 0 0 88 0.2 0 0 +1.06524E7 28 13 40 98646 232 1053 406 77 87 62 8429 1399 6805 2060 79 0 5 5 4000 2000 9 999999999 34 0 0 88 0.2 0 0 +1.0656E7 31 13 33 98672 523 1343 448 154 17 147 17237 1091 16551 5572 20 2.1 9 9 2000 3000 9 999999999 34 0 0 88 0.2 0 0 +1.06596E7 31 13 33 98672 791 1343 448 277 22 264 31155 1788 29856 10527 200 1 9 9 2000 3000 0 919999999 34 0 0 88 0.2 0 0 +1.06632E7 31 15 38 98672 1017 1343 451 384 31 360 43642 2659 41206 15019 150 2.1 9 9 2200 1050 0 919999999 42 0 0 88 0.2 0 0 +1.06668E7 32 15 36 98680 1185 1343 457 465 107 370 54089 8668 43354 16298 80 2.6 9 9 2200 1050 0 919999999 42 0 0 88 0.2 0 0 +1.06704E7 32 15 36 98680 1285 1343 431 925 529 419 108022 43658 49284 18187 120 3.1 5 5 2200 1050 0 919999999 42 0 0 88 0.2 0 0 +1.0674E7 35 13 27 98705 1308 1343 446 949 664 302 114169 48595 36536 14392 140 1 5 5 2500 2000 0 919999999 34 0 0 88 0.2 0 0 +1.06776E7 37 14 25 98722 1255 1343 459 900 662 282 108095 47423 34067 13529 290 3.1 5 5 3500 2000 0 919999999 37 0 0 88 0.2 0 0 +1.06812E7 38 14 24 98730 1128 1343 465 789 657 237 94377 45771 28547 11542 300 1.5 5 5 3500 2000 0 919999999 37 0 0 88 0.2 0 0 +1.06848E7 39 14 23 98739 936 1343 471 622 601 204 73192 41470 24127 9600 270 3.1 5 5 4000 2000 0 919999999 37 0 0 88 0.2 0 0 +1.06884E7 39 14 23 98739 692 1343 471 414 490 162 47593 32086 18729 6944 160 2.1 5 5 5000 2000 0 919999999 37 0 0 88 0.2 0 0 +1.0692E7 39 14 23 98739 412 1343 471 193 251 116 21429 12773 12936 4167 240 4.6 5 5 5000 2000 0 919999999 37 0 0 88 0.2 0 0 +1.06956E7 38 13 23 98730 117 1343 463 24 0 24 2290 0 2306 822 250 4.6 5 5 5000 2000 0 919999999 34 0 0 88 0.2 0 0 +1.06992E7 37 12 22 98722 0 538 456 0 0 0 0 0 0 0 240 3.6 5 5 5000 2000 0 919999999 31 0 0 88 0.2 0 0 +1.07028E7 35 13 27 98705 0 0 446 0 0 0 0 0 0 0 220 1.5 5 5 3200 2000 0 919999999 34 0 0 88 0.2 0 0 +1.07064E7 34 13 28 98697 0 0 433 0 0 0 0 0 0 0 200 1.5 3 3 2800 2000 0 919999999 34 0 0 88 0.2 0 0 +1.071E7 34 13 28 98697 0 0 433 0 0 0 0 0 0 0 200 2.1 3 3 2500 2000 0 919999999 34 0 0 88 0.2 0 0 +1.07136E7 33 14 32 98689 0 0 429 0 0 0 0 0 0 0 220 2.1 3 3 2200 2000 0 919999999 38 0 0 88 0.2 0 0 +1.07172E7 33 14 32 98689 0 0 435 0 0 0 0 0 0 0 50 5.7 5 5 2200 2000 0 19999999 38 0 0 88 0.2 0 0 +1.07208E7 33 15 34 98689 0 0 463 0 0 0 0 0 0 0 100 4.1 9 9 2200 2000 0 19999999 42 0 0 88 0.2 0 0 +1.07244E7 31 18 46 98672 0 0 455 0 0 0 0 0 0 0 120 4.1 9 9 2200 1200 0 19999999 56 0 0 88 0.2 0 0 +1.0728E7 31 18 46 98672 0 0 455 0 0 0 0 0 0 0 110 4.1 9 9 2500 1200 0 19999999 56 0 0 88 0.2 0 0 +1.07316E7 30 17 46 98663 0 0 448 0 0 0 0 0 0 0 110 5.1 9 9 2500 1200 0 19999999 51 0 0 88 0.2 0 0 +1.07352E7 29.5 17.5 48 98659 0 0 410 0 0 0 0 0 0 0 265 4.1 2 2 2750 1200 9 999999999 54 0 0 88 0.2 0 0 +1.07388E7 29 18 52 98654 235 1070 443 43 0 43 4190 0 4221 1601 60 3.1 9 9 3000 1200 0 99999999 56 0 0 88 0.2 0 0 +1.07424E7 28 19 58 98646 526 1342 439 154 27 143 17157 1505 16058 5485 100 5.7 9 9 3000 1200 0 19999999 62 0 0 88 0.2 0 0 +1.0746E7 28 19 58 98646 793 1342 439 275 29 258 30871 2141 29126 10404 140 3.1 9 9 3000 1200 0 19999999 62 0 0 88 0.2 0 0 +1.07496E7 28 20 62 98646 1019 1342 440 381 30 359 43197 2369 40904 15005 140 3.6 9 9 3500 1200 0 19999999 69 0 0 88 0.2 0 0 +1.07532E7 30 20 55 98663 1186 1342 452 462 69 400 53158 5440 46436 17183 140 3.6 9 9 3500 3000 0 19999999 69 0 0 88 0.2 0 0 +1.07568E7 30 20 55 98663 1286 1342 452 509 91 422 59201 7056 49457 18294 70 5.1 9 9 3500 3000 0 19999999 69 0 0 88 0.2 0 0 +1.07604E7 33 20 46 98689 1309 1342 444 939 581 372 110550 42236 44122 16855 90 5.7 5 5 3500 3000 0 19999999 68 0 0 88 0.2 0 0 +1.0764E7 35 21 44 98705 1256 1342 457 891 679 255 107126 42172 30896 12497 90 5.7 5 5 3500 2000 0 19999999 75 0 0 88 0.2 0 0 +1.07676E7 36 20 39 98714 1129 1342 461 782 678 212 93900 41483 25591 10526 90 3.6 5 5 3500 2000 0 19999999 68 0 0 88 0.2 0 0 +1.07712E7 37 19 35 98722 937 1342 466 618 635 175 73292 38587 20841 8479 100 4.1 5 5 3600 2000 0 19999999 62 0 0 88 0.2 0 0 +1.07748E7 38 18 31 98730 693 1342 471 413 516 146 47669 30586 16966 6418 80 2.6 5 5 3600 2000 0 19999999 56 0 0 88 0.2 0 0 +1.07784E7 38 18 31 98730 414 1342 463 205 345 99 22989 14666 11085 3731 100 3.1 3 3 3600 2000 0 19999999 56 0 0 88 0.2 0 0 +1.0782E7 36 18 35 98714 120 1342 452 26 0 26 2498 0 2515 885 90 3.1 3 3 3600 2000 0 19999999 56 0 0 88 0.2 0 0 +1.07856E7 35 18 37 98705 0 551 453 0 0 0 0 0 0 0 100 2.6 5 5 3200 2000 0 19999999 56 0 0 88 0.2 0 0 +1.07892E7 33 19 44 98689 0 0 442 0 0 0 0 0 0 0 110 3.6 5 5 3000 2000 0 19999999 62 0 0 88 0.2 0 0 +1.07928E7 33 19 44 98689 0 0 442 0 0 0 0 0 0 0 100 3.6 5 5 3000 2000 0 19999999 62 0 0 88 0.2 0 0 +1.07964E7 33 19 44 98689 0 0 442 0 0 0 0 0 0 0 130 3.1 5 5 2800 2000 0 19999999 62 0 0 88 0.2 0 0 +1.08E7 32 19 46 98680 0 0 463 0 0 0 0 0 0 0 30 3.1 9 9 2500 1050 0 19999999 62 0 0 88 0.2 0 0 +1.08036E7 30 19 52 98663 0 0 451 0 0 0 0 0 0 0 50 3.6 9 9 2800 1050 0 19999999 62 0 0 88 0.2 0 0 +1.08072E7 29 19 55 98654 0 0 420 0 0 0 0 0 0 0 50 2.1 5 5 2800 2000 0 19999999 62 0 0 88 0.2 0 0 +1.08108E7 28 20 62 98646 0 0 416 0 0 0 0 0 0 0 90 4.1 5 5 3500 2000 0 19999999 69 0 0 88 0.2 0 0 +1.08144E7 28 19 58 98646 0 0 414 0 0 0 0 0 0 0 80 5.7 5 5 3500 2000 0 19999999 62 0 0 88 0.2 0 0 +1.0818E7 28 18 55 98646 0 0 413 0 0 0 0 0 0 0 80 4.6 5 5 3500 2000 0 19999999 56 0 0 88 0.2 0 0 +1.08216E7 26 18 61 98628 0 0 396 0 0 0 0 0 0 0 60 4.1 3 3 3500 2000 9 999999999 57 0 0 88 0.2 0 0 +1.08252E7 26 18 61 98628 238 1087 379 85 129 62 9361 1681 6876 2106 70 5.1 0 0 3500 2000 9 999999999 57 0 0 88 0.2 0 0 +1.08288E7 28 18 55 98646 529 1342 390 300 460 119 34063 23927 13526 4805 80 5.7 0 0 3500 2000 9 999999999 56 0 0 88 0.2 0 0 +1.08324E7 30 18 49 98663 795 1342 400 535 681 132 63470 38812 15659 6252 60 5.1 0 0 3500 2000 9 999999999 56 0 0 88 0.2 0 0 +1.0836E7 30 18 49 98663 1020 1342 400 742 824 116 91972 44656 14434 6099 90 7.2 0 0 3500 2000 9 999999999 56 0 0 88 0.2 0 0 +1.08396E7 32 19 46 98680 1188 1342 412 897 777 209 108719 47510 25525 10503 90 6.7 0 0 3800 2000 9 999999999 62 0 0 88 0.2 0 0 +1.08432E7 35 19 39 98705 1286 1342 429 989 782 239 120265 48893 29278 11902 130 4.1 0 0 3800 2000 9 999999999 62 0 0 88 0.2 0 0 +1.08468E7 35 19 39 98705 1310 1342 429 1011 783 247 123027 49182 30173 12232 140 3.6 0 0 3800 2000 9 999999999 62 0 0 88 0.2 0 0 +1.08504E7 37 19 35 98722 1256 1342 440 961 780 230 116740 48510 28143 11482 140 2.6 0 0 4000 2000 9 999999999 62 0 0 88 0.2 0 0 +1.0854E7 38 17 29 98730 1129 1342 462 835 759 196 101080 47602 23867 9858 160 2.6 3 3 3500 2000 9 999999999 50 0 0 88 0.2 0 0 +1.08576E7 38 16 27 98730 938 1342 468 622 521 258 71746 38499 29902 11481 260 2.1 5 5 3500 2000 9 999999999 46 0 0 88 0.2 0 0 +1.08612E7 38 15 26 98730 695 1342 494 231 31 214 25901 2294 24210 8479 350 2.1 9 9 3500 1200 0 99999999 41 0 0 88 0.2 0 0 +1.08648E7 36 11 22 98714 417 1342 475 109 3 108 12201 154 12144 3994 30 4.6 9 9 2800 1200 0 99999999 28 0 0 88 0.2 0 0 +1.08684E7 28 18 55 98646 122 1342 437 14 0 14 1351 0 1361 538 30 6.7 9 9 1800 1200 0 99999999 56 0 0 88 0.2 0 0 +1.0872E7 28 17 51 98646 0 565 436 0 0 0 0 0 0 0 20 6.2 9 9 2200 1200 0 99999999 51 0 0 88 0.2 0 0 +1.08756E7 27 15 48 98637 0 0 428 0 0 0 0 0 0 0 20 4.1 9 9 2500 1200 0 99999999 42 0 0 88 0.2 0 0 +1.08792E7 27 16 51 98637 0 0 429 0 0 0 0 0 0 0 80 4.6 9 9 3500 1200 0 99999999 46 0 0 88 0.2 0 0 +1.08828E7 27 15 48 98637 0 0 428 0 0 0 0 0 0 0 290 5.1 9 9 3500 1200 0 99999999 42 0 0 88 0.2 0 0 +1.08864E7 26 17 58 98628 0 0 425 0 0 0 0 0 0 0 280 4.1 9 9 3500 1200 0 99999999 51 0 0 88 0.2 0 0 +1.089E7 26 15 51 98628 0 0 422 0 0 0 0 0 0 0 290 4.1 9 9 4000 1200 0 99999999 42 0 0 88 0.2 0 0 +1.08936E7 27 14 45 98637 0 0 426 0 0 0 0 0 0 0 260 2.6 9 9 4000 1200 0 99999999 38 0 0 88 0.2 0 0 +1.08972E7 26 14 48 98628 0 0 420 0 0 0 0 0 0 0 200 3.1 9 9 4000 1200 0 99999999 38 0 0 88 0.2 0 0 +1.09008E7 26 13 45 98628 0 0 419 0 0 0 0 0 0 0 210 2.1 9 9 4000 3000 0 99999999 34 0 0 88 0.2 0 0 +1.09044E7 26 17 58 98628 0 0 425 0 0 0 0 0 0 0 50 4.6 9 9 3500 3000 0 99999999 51 0 0 88 0.2 0 0 +1.0908E7 25 17 61 98619 0 0 419 0 0 0 0 0 0 0 100 1.5 9 9 3000 3000 9 999999999 51 0 0 88 0.2 0 0 +1.09116E7 25 17 61 98619 242 1103 395 81 91 65 8899 1423 7114 2168 100 1.5 5 5 2800 2000 9 999999999 51 0 0 88 0.2 0 0 +1.09152E7 28 16 48 98646 531 1341 410 282 336 149 31507 20321 16719 5669 125 0 5 5 3000 2000 9 999999999 46 0 0 88 0.2 0 0 +1.09188E7 29 16 45 98654 798 1341 416 501 517 194 57788 35096 22486 8557 200 2.1 5 5 3000 2000 9 999999999 46 0 0 88 0.2 0 0 +1.09224E7 31 14 36 98672 1022 1341 424 696 625 220 82509 43479 26220 10572 280 4.6 5 5 3200 2000 9 999999999 38 0 0 88 0.2 0 0 +1.0926E7 32 14 34 98680 1189 1341 430 842 657 260 100889 46485 31269 12529 290 5.1 5 5 3200 2000 9 999999999 38 0 0 88 0.2 0 0 +1.09296E7 32 13 31 98680 1287 1341 428 930 663 294 111875 48268 35560 14051 300 4.6 5 5 3200 2000 9 999999999 34 0 0 88 0.2 0 0 +1.09332E7 34 13 28 98697 1311 1341 440 951 632 333 113612 47928 40001 15522 290 4.6 5 5 3200 2000 9 999999999 34 0 0 88 0.2 0 0 +1.09368E7 35 14 28 98705 1257 1341 440 957 793 214 117381 51803 26357 10780 280 4.6 3 3 3200 2000 9 999999999 37 0 0 88 0.2 0 0 +1.09404E7 36 13 25 98714 1130 1341 444 841 811 157 103834 50411 19475 8137 290 4.1 3 3 3200 2000 9 999999999 34 0 0 88 0.2 0 0 +1.0944E7 36 14 27 98714 939 1341 427 671 768 134 81624 46368 16313 6749 290 4.1 0 0 3200 2000 9 999999999 37 0 0 88 0.2 0 0 +1.09476E7 36 15 29 98714 696 1341 429 448 615 129 52415 36388 15131 5811 290 3.6 0 0 4000 2000 9 999999999 41 0 0 88 0.2 0 0 +1.09512E7 35 15 30 98705 419 1341 423 211 310 114 23485 15482 12771 4163 280 5.1 0 0 4000 2000 9 999999999 41 0 0 88 0.2 0 0 +1.09548E7 34 14 30 98697 125 1341 416 28 0 28 2733 0 2752 955 280 5.1 0 0 4000 2000 9 999999999 37 0 0 88 0.2 0 0 +1.09584E7 33 13 30 98689 0 578 427 0 0 0 0 0 0 0 280 3.6 3 3 4000 2000 9 999999999 34 0 0 88 0.2 0 0 +1.0962E7 32 14 34 98680 0 0 430 0 0 0 0 0 0 0 270 3.1 5 5 4000 2000 9 999999999 38 0 0 88 0.2 0 0 +1.09656E7 32 14 34 98680 0 0 430 0 0 0 0 0 0 0 240 1.5 5 5 3500 2000 9 999999999 38 0 0 88 0.2 0 0 +1.09692E7 30 15 40 98663 0 0 414 0 0 0 0 0 0 0 250 2.6 3 3 2500 2000 9 999999999 42 0 0 88 0.2 0 0 +1.09728E7 29 16 45 98654 0 0 392 0 0 0 0 0 0 0 270 2.1 0 0 2100 2000 9 999999999 46 0 0 88 0.2 0 0 +1.09764E7 29 14 40 98654 0 0 390 0 0 0 0 0 0 0 290 3.1 0 0 2000 2000 9 999999999 38 0 0 88 0.2 0 0 +1.098E7 30 14 38 98663 0 0 395 0 0 0 0 0 0 0 290 2.6 0 0 2500 2000 9 999999999 38 0 0 88 0.2 0 0 +1.09836E7 30 14 38 98663 0 0 395 0 0 0 0 0 0 0 360 2.1 0 0 2100 2000 9 999999999 38 0 0 88 0.2 0 0 +1.09872E7 29 15 43 98654 0 0 391 0 0 0 0 0 0 0 160 1 0 0 2100 2000 9 999999999 42 0 0 88 0.2 0 0 +1.09908E7 27 16 51 98637 0 0 382 0 0 0 0 0 0 0 75 0 0 0 2100 2000 9 999999999 46 0 0 88 0.2 0 0 +1.09944E7 25 16 57 98619 0 0 372 0 0 0 0 0 0 0 260 2.1 0 0 2000 2000 9 999999999 46 0 0 88 0.2 0 0 +1.0998E7 26 15 51 98628 245 1119 376 89 123 67 9782 2304 7339 2226 240 2.6 0 0 1700 2000 9 999999999 42 0 0 88 0.2 0 0 +1.10016E7 27 16 51 98637 534 1341 382 305 425 136 34352 24524 15360 5332 230 1.5 0 0 1700 2000 9 999999999 46 0 0 88 0.2 0 0 +1.10052E7 30 15 40 98663 800 1341 396 541 683 134 64305 41081 15977 6365 230 2.1 0 0 2000 2000 9 999999999 42 0 0 88 0.2 0 0 +1.10088E7 32 16 38 98680 1023 1341 408 747 806 132 91937 46704 16297 6850 250 2.1 0 0 2500 2000 9 999999999 46 0 0 88 0.2 0 0 +1.10124E7 35 13 27 98705 1190 1341 420 908 847 156 113053 52030 19494 8131 240 2.1 0 0 2800 2000 9 999999999 34 0 0 88 0.2 0 0 +1.1016E7 35 14 28 98705 1288 1341 422 999 857 175 124817 52674 21988 9098 270 2.1 0 0 3200 2000 9 999999999 37 0 0 88 0.2 0 0 +1.10196E7 37 13 24 98722 1311 1341 432 1022 783 257 124620 54089 31474 12650 270 2.6 0 0 4000 2000 9 999999999 34 0 0 88 0.2 0 0 +1.10232E7 38 12 21 98730 1258 1341 436 973 780 242 118448 54052 29559 11944 300 2.6 0 0 4000 2000 9 999999999 31 0 0 88 0.2 0 0 +1.10268E7 38 10 19 98730 1131 1341 433 856 840 148 106445 53053 18437 7711 300 5.1 0 0 4200 2000 9 999999999 25 0 0 88 0.2 0 0 +1.10304E7 38 11 20 98730 940 1341 434 676 768 137 82162 48302 16691 6888 300 6.2 0 0 4500 2000 9 999999999 28 0 0 88 0.2 0 0 +1.1034E7 38 12 21 98730 698 1341 436 451 613 132 52830 38038 15547 5946 300 6.2 0 0 4500 2000 9 999999999 31 0 0 88 0.2 0 0 +1.10376E7 38 11 20 98730 421 1341 434 214 318 114 23873 16813 12806 4174 300 5.7 0 0 4500 2000 9 999999999 28 0 0 88 0.2 0 0 +1.10412E7 37 11 21 98722 127 1341 429 29 0 29 2844 0 2864 988 300 4.1 0 0 4500 2000 9 999999999 28 0 0 88 0.2 0 0 +1.10448E7 36 13 25 98714 0 591 426 0 0 0 0 0 0 0 10 2.6 0 0 3500 2000 9 999999999 34 0 0 88 0.2 0 0 +1.10484E7 35 13 27 98705 0 0 420 0 0 0 0 0 0 0 30 1.5 0 0 3200 2000 9 999999999 34 0 0 88 0.2 0 0 +1.1052E7 33.3 14 31 98691 0 0 413 0 0 0 0 0 0 0 218 1 0 0 2866 2000 9 999999999 38 0 0 88 0.2 0 0 +1.10556E7 31.7 15 37 98677 0 0 405 0 0 0 0 0 0 0 180 0.5 0 0 2533 2000 9 999999999 42 0 0 88 0.2 0 0 +1.10592E7 30 16 43 98663 0 0 398 0 0 0 0 0 0 0 43 0 0 0 2200 2000 9 999999999 46 0 0 88 0.2 0 0 +1.10628E7 29 17 48 98654 0 0 394 0 0 0 0 0 0 0 104 0 0 0 1800 2000 9 999999999 51 0 0 88 0.2 0 0 +1.10664E7 28 17 51 98646 0 0 389 0 0 0 0 0 0 0 130 1.5 0 0 2200 2000 9 999999999 51 0 0 88 0.2 0 0 +1.107E7 28 15 45 98646 0 0 386 0 0 0 0 0 0 0 150 2.1 0 0 2200 2000 9 999999999 42 0 0 88 0.2 0 0 +1.10736E7 29 14 40 98654 0 0 390 0 0 0 0 0 0 0 210 2.6 0 0 2500 2000 9 999999999 38 0 0 88 0.2 0 0 +1.10772E7 29 13 37 98654 0 0 389 0 0 0 0 0 0 0 133 0 0 0 2500 2000 9 999999999 34 0 0 88 0.2 0 0 +1.10808E7 29 14 40 98654 0 0 390 0 0 0 0 0 0 0 72 0 0 0 2500 2000 9 999999999 38 0 0 88 0.2 0 0 +1.10844E7 29 14 40 98654 248 1135 390 91 126 67 9989 2572 7445 2259 177 0 0 0 2500 2000 9 999999999 38 0 0 88 0.2 0 0 +1.1088E7 30 14 38 98663 536 1340 395 308 430 136 34755 25572 15379 5343 148 0 0 0 2200 2000 9 999999999 38 0 0 88 0.2 0 0 +1.10916E7 34 9 22 98697 801 1340 410 548 672 146 64942 44375 17373 6848 240 4.6 0 0 3000 2000 9 999999999 23 0 0 88 0.2 0 0 +1.10952E7 34 10 23 98697 1025 1340 411 756 795 148 92559 50976 18160 7567 250 4.1 0 0 3500 2000 9 999999999 25 0 0 88 0.2 0 0 +1.10988E7 36 11 22 98714 1191 1340 423 911 853 153 113811 53343 19226 8015 340 2.6 0 0 3500 2000 9 999999999 28 0 0 88 0.2 0 0 +1.11024E7 38 10 19 98730 1289 1340 433 1006 781 254 122557 55644 31163 12515 340 2.1 0 0 4000 2000 9 999999999 25 0 0 88 0.2 0 0 +1.1106E7 39 11 19 98739 1312 1340 440 1026 782 260 125127 55355 31899 12788 300 3.1 0 0 4000 2000 9 999999999 28 0 0 88 0.2 0 0 +1.11096E7 40 10 17 98747 1258 1340 444 977 780 245 118922 55239 29957 12076 290 4.6 0 0 4000 2000 9 999999999 25 0 0 88 0.2 0 0 +1.11132E7 40 9 16 98747 1132 1340 443 858 842 148 106784 53616 18428 7704 320 3.6 0 0 4000 2000 9 999999999 23 0 0 88 0.2 0 0 +1.11168E7 41 9 15 98755 941 1340 448 679 769 138 82572 49414 16891 6961 280 4.1 0 0 4000 2000 9 999999999 22 0 0 88 0.2 0 0 +1.11204E7 41 9 15 98755 699 1340 448 455 610 136 53206 39396 16023 6102 280 6.2 0 0 4000 2000 9 999999999 22 0 0 88 0.2 0 0 +1.1124E7 41 8 14 98755 423 1340 447 217 280 128 23971 16366 14254 4505 280 5.1 0 0 4500 2000 9 999999999 20 0 0 88 0.2 0 0 +1.11276E7 39 8 15 98739 130 1340 436 30 0 30 2955 0 2975 1020 310 3.1 0 0 4500 2000 9 999999999 20 0 0 88 0.2 0 0 +1.11312E7 37 10 20 98722 0 604 427 0 0 0 0 0 0 0 290 2.6 0 0 3500 2000 9 999999999 25 0 0 88 0.2 0 0 +1.11348E7 36 10 21 98714 0 0 422 0 0 0 0 0 0 0 280 1.5 0 0 2100 2000 9 999999999 25 0 0 88 0.2 0 0 +1.11384E7 35 10 22 98705 0 0 416 0 0 0 0 0 0 0 250 1 0 0 2100 2000 9 999999999 25 0 0 88 0.2 0 0 +1.1142E7 34 11 25 98697 0 0 412 0 0 0 0 0 0 0 360 1 0 0 1800 2000 9 999999999 28 0 0 88 0.2 0 0 +1.11456E7 32 11 28 98680 0 0 402 0 0 0 0 0 0 0 156 0 0 0 1500 2000 9 999999999 28 0 0 88 0.2 0 0 +1.11492E7 32 10 26 98680 0 0 400 0 0 0 0 0 0 0 64 0 0 0 1500 2000 9 999999999 25 0 0 88 0.2 0 0 +1.11528E7 29 13 37 98654 0 0 389 0 0 0 0 0 0 0 12 0 0 0 1500 2000 9 999999999 34 0 0 88 0.2 0 0 +1.11564E7 29 11 33 98654 0 0 386 0 0 0 0 0 0 0 230 1.5 0 0 1500 2000 9 999999999 28 0 0 88 0.2 0 0 +1.116E7 29 10 31 98654 0 0 385 0 0 0 0 0 0 0 220 3.1 0 0 2000 2000 9 999999999 25 0 0 88 0.2 0 0 +1.11636E7 29 8 27 98654 0 0 382 0 0 0 0 0 0 0 250 3.6 0 0 2500 2000 9 999999999 21 0 0 88 0.2 0 0 +1.11672E7 29 7 25 98654 0 0 381 0 0 0 0 0 0 0 230 2.6 0 0 2800 2000 9 999999999 19 0 0 88 0.2 0 0 +1.11708E7 29 8 27 98654 251 1150 382 93 110 73 10236 2965 7995 2378 240 3.6 0 0 2800 2000 9 999999999 21 0 0 88 0.2 0 0 +1.11744E7 32 9 24 98680 539 1339 399 312 445 133 35414 27705 15178 5287 240 5.1 0 0 3200 2000 9 999999999 23 0 0 88 0.2 0 0 +1.1178E7 32 10 26 98680 803 1339 400 549 674 145 65051 43947 17227 6805 270 4.1 0 0 3500 2000 9 999999999 25 0 0 88 0.2 0 0 +1.11816E7 35 12 25 98705 1026 1339 419 755 793 147 92387 49761 18044 7531 280 5.1 0 0 3200 2000 9 999999999 31 0 0 88 0.2 0 0 +1.11852E7 36 11 22 98714 1192 1339 423 912 826 177 112742 53541 21969 9096 270 4.1 0 0 3500 2000 9 999999999 28 0 0 88 0.2 0 0 +1.11888E7 38 10 19 98730 1290 1339 459 936 659 302 112667 49719 36577 14373 280 4.6 5 5 4000 2000 9 999999999 25 0 0 88 0.2 0 0 +1.11924E7 40 9 16 98747 1313 1339 469 958 681 291 116006 50812 35465 14012 280 4.1 5 5 3500 2000 9 999999999 23 0 0 88 0.2 0 0 +1.1196E7 41 9 15 98755 1259 1339 475 911 682 270 110155 50264 32846 13086 290 4.1 5 5 3500 2000 9 999999999 22 0 0 88 0.2 0 0 +1.11996E7 43 10 14 98771 1133 1339 489 798 658 242 95662 47814 29188 11748 290 4.1 5 5 3000 2000 9 999999999 25 0 0 88 0.2 0 0 +1.12032E7 43 10 14 98771 943 1339 489 632 586 219 74154 43064 25869 10198 300 4.1 5 5 3000 2000 9 999999999 25 0 0 88 0.2 0 0 +1.12068E7 43 10 14 98771 701 1339 489 424 394 217 47758 30447 24634 8616 310 4.1 5 5 3000 2000 9 999999999 25 0 0 88 0.2 0 0 +1.12104E7 40 10 17 98747 425 1339 498 112 7 110 12570 347 12384 4090 250 5.1 9 9 1800 3000 9 999999999 25 0 0 88 0.2 0 0 +1.1214E7 39 9 16 98739 133 1339 490 16 0 16 1575 0 1586 619 250 4.1 9 9 2500 1200 9 999999999 23 0 0 88 0.2 0 0 +1.12176E7 38 8 16 98730 0 617 482 0 0 0 0 0 0 0 20 1.5 9 9 2800 1200 9 999999999 20 0 0 88 0.2 0 0 +1.12212E7 36 10 21 98714 0 0 447 0 0 0 0 0 0 0 312 0 5 5 3000 1200 9 999999999 25 0 0 88 0.2 0 0 +1.12248E7 35 13 27 98705 0 0 446 0 0 0 0 0 0 0 70 2.1 5 5 2400 2000 9 999999999 34 0 0 88 0.2 0 0 +1.12284E7 35 14 28 98705 0 0 447 0 0 0 0 0 0 0 100 2.6 5 5 2400 2000 9 999999999 37 0 0 88 0.2 0 0 +1.1232E7 34 15 32 98697 0 0 436 0 0 0 0 0 0 0 119 0 3 3 2300 2000 9 999999999 41 0 0 88 0.2 0 0 +1.12356E7 33 13 30 98689 0 0 427 0 0 0 0 0 0 0 129 0 3 3 2400 2000 9 999999999 34 0 0 88 0.2 0 0 +1.12392E7 33 10 24 98689 0 0 423 0 0 0 0 0 0 0 238 0 3 3 2400 2000 9 999999999 25 0 0 88 0.2 0 0 +1.12428E7 32 9 24 98680 0 0 416 0 0 0 0 0 0 0 248 0 3 3 2800 2000 9 999999999 23 0 0 88 0.2 0 0 +1.12464E7 31 11 29 98672 0 0 420 0 0 0 0 0 0 0 245 0 5 5 2800 2000 9 999999999 28 0 0 88 0.2 0 0 +1.125E7 29 11 33 98654 0 0 409 0 0 0 0 0 0 0 300 2.1 5 5 3000 2000 9 999999999 28 0 0 88 0.2 0 0 +1.12536E7 28 12 37 98646 0 0 399 0 0 0 0 0 0 0 220 2.1 3 3 2200 2000 9 999999999 31 0 0 88 0.2 0 0 +1.12572E7 31 13 33 98672 254 1164 399 94 131 69 10344 2961 7644 2322 270 1.5 0 0 1400 2000 9 999999999 34 0 0 88 0.2 0 0 +1.12608E7 34 14 30 98697 541 1339 416 311 431 137 35134 25771 15546 5410 240 3.1 0 0 2200 2000 9 999999999 37 0 0 88 0.2 0 0 +1.12644E7 35 15 30 98705 805 1339 423 546 682 135 64846 41172 16143 6440 250 3.6 0 0 2300 2000 9 999999999 41 0 0 88 0.2 0 0 +1.1268E7 36 16 31 98714 1027 1339 430 751 805 133 92362 46702 16459 6919 260 5.1 0 0 2800 2000 9 999999999 46 0 0 88 0.2 0 0 +1.12716E7 39 17 28 98739 1193 1339 448 904 775 214 109797 49277 26085 10696 270 4.1 0 0 3000 2000 9 999999999 50 0 0 88 0.2 0 0 +1.12752E7 40 16 25 98747 1290 1339 453 998 781 245 121491 51487 30047 12156 280 4.1 0 0 3000 2000 9 999999999 45 0 0 88 0.2 0 0 +1.12788E7 41 14 21 98755 1313 1339 456 1022 856 183 127777 52941 23008 9491 270 4.6 0 0 3500 2000 9 999999999 37 0 0 88 0.2 0 0 +1.12824E7 42 14 19 98763 1260 1339 481 959 826 183 119146 51540 22794 9420 270 4.6 3 3 3500 2000 9 999999999 37 0 0 88 0.2 0 0 +1.1286E7 42 11 16 98763 1134 1339 477 846 810 160 104566 51662 19844 8273 300 4.1 3 3 4000 2000 9 999999999 27 0 0 88 0.2 0 0 +1.12896E7 42 9 14 98763 944 1339 474 672 738 152 81180 48568 18414 7549 300 3.6 3 3 4500 2000 9 999999999 22 0 0 88 0.2 0 0 +1.12932E7 42 8 13 98763 703 1339 472 452 584 145 52654 38885 17009 6434 290 5.1 3 3 4000 2000 9 999999999 20 0 0 88 0.2 0 0 +1.12968E7 42 8 13 98763 427 1339 452 219 280 130 24263 16547 14425 4567 290 4.1 0 0 4000 2000 9 999999999 20 0 0 88 0.2 0 0 +1.13004E7 41 7 13 98755 135 1339 445 32 0 32 3606 0 3615 1081 300 3.6 0 0 4000 2000 9 999999999 18 0 0 88 0.2 0 0 +1.1304E7 39 9 16 98739 0 630 437 0 0 0 0 0 0 0 310 2.6 0 0 3500 2000 9 999999999 23 0 0 88 0.2 0 0 +1.13076E7 38 9 17 98730 0 0 431 0 0 0 0 0 0 0 260 2.1 0 0 3200 2000 9 999999999 23 0 0 88 0.2 0 0 +1.13112E7 36 10 21 98714 0 0 422 0 0 0 0 0 0 0 260 1.5 0 0 2800 2000 9 999999999 25 0 0 88 0.2 0 0 +1.13148E7 35 10 22 98705 0 0 416 0 0 0 0 0 0 0 156 0 0 0 2500 2000 9 999999999 25 0 0 88 0.2 0 0 +1.13184E7 34 11 25 98697 0 0 412 0 0 0 0 0 0 0 20 2.1 0 0 2000 2000 9 999999999 28 0 0 88 0.2 0 0 +1.1322E7 33 11 26 98689 0 0 407 0 0 0 0 0 0 0 230 2.1 0 0 1500 2000 9 999999999 28 0 0 88 0.2 0 0 +1.13256E7 33 12 28 98689 0 0 408 0 0 0 0 0 0 0 210 3.1 0 0 1500 2000 9 999999999 31 0 0 88 0.2 0 0 +1.13292E7 32 10 26 98680 0 0 424 0 0 0 0 0 0 0 240 4.1 5 5 2200 2000 9 999999999 25 0 0 88 0.2 0 0 +1.13328E7 31 11 29 98672 0 0 420 0 0 0 0 0 0 0 310 2.6 5 5 2000 2000 9 999999999 28 0 0 88 0.2 0 0 +1.13364E7 31 11 29 98672 0 0 420 0 0 0 0 0 0 0 240 1.5 5 5 2800 2000 9 999999999 28 0 0 88 0.2 0 0 +1.134E7 31 11 29 98672 0 0 420 0 0 0 0 0 0 0 270 2.1 5 5 2600 2000 9 999999999 28 0 0 88 0.2 0 0 +1.13436E7 32 12 29 98680 256 1178 420 94 153 65 10461 3352 7237 2241 260 2.1 3 3 2600 2000 9 999999999 31 0 0 88 0.2 0 0 +1.13472E7 32 13 31 98680 543 1338 404 313 433 137 35408 26298 15590 5429 250 1.5 0 0 2400 2000 9 999999999 34 0 0 88 0.2 0 0 +1.13508E7 35 14 28 98705 807 1338 440 541 656 145 63988 41050 17259 6841 270 3.6 3 3 2800 2000 9 999999999 37 0 0 88 0.2 0 0 +1.13544E7 37 13 24 98722 1028 1338 450 746 764 158 90770 48347 19356 8051 270 6.2 3 3 3500 2000 9 999999999 34 0 0 88 0.2 0 0 +1.1358E7 38 16 27 98730 1194 1338 468 844 601 307 99712 44171 36566 14309 270 4.1 5 5 3500 2000 9 999999999 46 0 0 88 0.2 0 0 +1.13616E7 40 16 25 98747 1291 1338 453 998 825 202 123359 51250 25083 10310 260 5.1 0 0 4000 2000 9 999999999 45 0 0 88 0.2 0 0 +1.13652E7 41 12 18 98755 1314 1338 453 1026 839 202 127489 54538 25216 10333 260 5.1 0 0 4000 2000 9 999999999 30 0 0 88 0.2 0 0 +1.13688E7 41 14 21 98755 1260 1338 483 905 624 317 107814 46583 38043 14849 260 5.1 5 5 4000 2000 9 999999999 37 0 0 88 0.2 0 0 +1.13724E7 42 10 15 98763 1134 1338 483 800 656 244 95786 47740 29342 11803 260 5.7 5 5 4500 2000 9 999999999 25 0 0 88 0.2 0 0 +1.1376E7 42 7 12 98763 945 1338 478 636 610 205 75182 44740 24404 9704 270 5.7 5 5 5000 2000 9 999999999 18 0 0 88 0.2 0 0 +1.13796E7 42 7 12 98763 704 1338 478 428 474 178 49089 34351 20524 7521 260 5.7 5 5 5000 2000 9 999999999 18 0 0 88 0.2 0 0 +1.13832E7 41 8 14 98755 429 1338 466 218 336 110 24448 18099 12403 4110 270 4.6 3 3 5000 2000 9 999999999 20 0 0 88 0.2 0 0 +1.13868E7 40 10 17 98747 138 1338 463 33 0 33 3196 0 3219 1100 270 3.6 3 3 5000 2000 9 999999999 25 0 0 88 0.2 0 0 +1.13904E7 39 10 18 98739 0 643 492 0 0 0 0 0 0 0 270 2.6 9 9 4000 2000 9 999999999 25 0 0 88 0.2 0 0 +1.1394E7 37 15 27 98722 0 0 487 0 0 0 0 0 0 0 50 3.1 9 9 3500 3000 9 999999999 41 0 0 88 0.2 0 0 +1.13976E7 36 17 33 98714 0 0 484 0 0 0 0 0 0 0 110 3.6 9 9 2500 3000 9 999999999 50 0 0 88 0.2 0 0 +1.14012E7 35 16 32 98705 0 0 450 0 0 0 0 0 0 0 110 3.6 5 5 2500 3000 9 999999999 46 0 0 88 0.2 0 0 +1.14048E7 33 15 34 98689 0 0 437 0 0 0 0 0 0 0 110 2.1 5 5 2500 2000 9 999999999 42 0 0 88 0.2 0 0 +1.14084E7 33 15 34 98689 0 0 437 0 0 0 0 0 0 0 120 2.1 5 5 2500 2000 9 999999999 42 0 0 88 0.2 0 0 +1.1412E7 31 15 38 98672 0 0 426 0 0 0 0 0 0 0 260 2.1 5 5 2500 2000 9 999999999 42 0 0 88 0.2 0 0 +1.14156E7 31 15 38 98672 0 0 451 0 0 0 0 0 0 0 220 2.6 9 9 2500 3000 9 999999999 42 0 0 88 0.2 0 0 +1.14192E7 31 16 40 98672 0 0 452 0 0 0 0 0 0 0 60 2.6 9 9 2500 3000 9 999999999 46 0 0 88 0.2 0 0 +1.14228E7 31 16 40 98672 0 0 452 0 0 0 0 0 0 0 40 5.1 9 9 2500 3000 9 999999999 46 0 0 88 0.2 0 0 +1.14264E7 29 17 48 98654 0 0 442 0 0 0 0 0 0 0 60 5.1 9 9 3000 1200 9 999999999 51 0 0 88 0.2 0 0 +1.143E7 29 17 48 98654 259 1192 442 50 0 50 4850 0 4887 1851 70 6.7 9 9 3000 1200 9 999999999 51 0 0 88 0.2 0 0 +1.14336E7 30 16 43 98663 545 1337 421 291 297 170 32323 19383 18968 6288 90 5.1 5 5 3000 1200 9 999999999 46 0 0 88 0.2 0 0 +1.14372E7 30 15 40 98663 808 1337 420 510 519 197 58914 35797 22816 8710 100 7.2 5 5 3500 2000 9 999999999 42 0 0 88 0.2 0 0 +1.14408E7 32 14 34 98680 1030 1337 423 745 735 179 89826 47659 21732 8966 120 5.7 3 3 3500 2000 9 999999999 38 0 0 88 0.2 0 0 +1.14444E7 34 13 28 98697 1194 1337 415 911 815 183 112276 52178 22698 9387 120 5.1 0 0 3500 2000 9 999999999 34 0 0 88 0.2 0 0 +1.1448E7 36 13 25 98714 1291 1337 426 1003 780 250 122281 53661 30659 12354 100 4.1 0 0 3500 2000 9 999999999 34 0 0 88 0.2 0 0 +1.14516E7 37 13 24 98722 1314 1337 432 1025 781 257 124995 53952 31563 12683 110 4.6 0 0 3800 2000 9 999999999 34 0 0 88 0.2 0 0 +1.14552E7 37 13 24 98722 1261 1337 432 974 778 241 118635 53256 29453 11913 120 2.6 0 0 3800 2000 9 999999999 34 0 0 88 0.2 0 0 +1.14588E7 38 13 23 98730 1135 1337 437 856 833 149 106231 50999 18533 7760 170 2.6 0 0 4000 2000 9 999999999 34 0 0 88 0.2 0 0 +1.14624E7 39 13 21 98739 946 1337 443 678 742 153 81739 47071 18540 7617 120 2.1 0 0 4500 2000 9 999999999 34 0 0 88 0.2 0 0 +1.1466E7 39 13 21 98739 706 1337 469 425 437 194 48276 31203 22193 8022 30 3.1 5 5 5000 2000 9 999999999 34 0 0 88 0.2 0 0 +1.14696E7 38 13 23 98730 431 1337 463 205 257 122 22767 13889 13637 4425 60 3.1 5 5 4000 2000 9 999999999 34 0 0 88 0.2 0 0 +1.14732E7 37 14 25 98722 141 1337 459 32 0 32 3087 0 3109 1082 80 3.6 5 5 3500 2000 9 999999999 37 0 0 88 0.2 0 0 +1.14768E7 36 14 27 98714 0 656 453 0 0 0 0 0 0 0 50 2.6 5 5 3500 2000 9 999999999 37 0 0 88 0.2 0 0 +1.14804E7 35 14 28 98705 0 0 447 0 0 0 0 0 0 0 100 2.1 5 5 3500 2000 0 99999999 37 0 0 88 0.2 0 0 +1.1484E7 35 13 27 98705 0 0 446 0 0 0 0 0 0 0 120 1.5 5 5 3200 2000 0 99999999 34 0 0 88 0.2 0 0 +1.14876E7 34 15 32 98697 0 0 443 0 0 0 0 0 0 0 30 2.1 5 5 3200 2000 0 99999999 41 0 0 88 0.2 0 0 +1.14912E7 34 14.5 31 98697 0 0 417 0 0 0 0 0 0 0 241 1.8 0 0 2700 2000 9 999999999 39 0 0 88 0.2 0 0 +1.14948E7 34 14 30 98697 0 0 441 0 0 0 0 0 0 0 170 1.5 5 5 2200 2000 0 99999999 37 0 0 88 0.2 0 0 +1.14984E7 32 16 38 98680 0 0 433 0 0 0 0 0 0 0 185 0 5 5 2200 2000 0 99999999 46 0 0 88 0.2 0 0 +1.1502E7 30 16 43 98663 0 0 421 0 0 0 0 0 0 0 260 2.6 5 5 2800 2000 0 99999999 46 0 0 88 0.2 0 0 +1.15056E7 30 16 43 98663 0 0 421 0 0 0 0 0 0 0 220 2.1 5 5 3200 2000 0 99999999 46 0 0 88 0.2 0 0 +1.15092E7 29 16 45 98654 0 0 416 0 0 0 0 0 0 0 290 2.1 5 5 3200 2000 0 99999999 46 0 0 88 0.2 0 0 +1.15128E7 29 16 45 98654 0 0 416 0 0 0 0 0 0 0 190 3.1 5 5 2100 2000 0 99999999 46 0 0 88 0.2 0 0 +1.15164E7 30 17 46 98663 261 1205 423 91 105 71 10002 2179 7784 2388 240 1.5 5 5 1000 2000 0 99999999 51 0 0 88 0.2 0 0 +1.152E7 32 16 38 98680 547 1337 433 293 339 154 32757 20946 17332 5913 19 0 5 5 1000 2000 0 99999999 46 0 0 88 0.2 0 0 +1.15236E7 33 15 34 98689 810 1337 430 542 656 145 64157 40469 17267 6858 220 1.5 3 3 1000 2000 0 99999999 42 0 0 88 0.2 0 0 +1.15272E7 35 14 28 98705 1031 1337 440 746 763 158 90827 47645 19331 8050 220 2.6 3 3 2000 2000 0 99999999 37 0 0 88 0.2 0 0 +1.15308E7 37 14 25 98722 1195 1337 452 899 785 197 110114 50680 24241 9983 270 2.1 3 3 4000 2000 0 99999999 37 0 0 88 0.2 0 0 +1.15344E7 38 14 24 98730 1292 1337 439 1002 853 178 125244 52562 22296 9217 220 2.1 0 0 4000 2000 0 99999999 37 0 0 88 0.2 0 0 +1.1538E7 40 11 18 98747 1315 1337 446 1028 781 261 125481 55216 31984 12821 10 2.6 0 0 3500 2000 0 99999999 28 0 0 88 0.2 0 0 +1.15416E7 40 10 17 98747 1261 1337 463 967 821 192 119914 54185 23974 9855 300 2.1 3 3 3000 2000 0 99999999 25 0 0 88 0.2 0 0 +1.15452E7 41 10 16 98755 1136 1337 477 801 604 287 94752 46627 34180 13428 30 2.6 5 5 2500 2000 0 99999999 25 0 0 88 0.2 0 0 +1.15488E7 41 10 16 98755 947 1337 477 635 583 222 74520 42961 26179 10323 70 3.6 5 5 2500 2000 0 99999999 25 0 0 88 0.2 0 0 +1.15524E7 41 11 17 98755 707 1337 478 427 494 166 49249 33684 19232 7163 70 4.1 5 5 2200 2000 0 99999999 27 0 0 88 0.2 0 0 +1.1556E7 40 12 19 98747 433 1337 474 207 259 123 22970 14245 13707 4450 80 3.6 5 5 2200 2000 0 99999999 30 0 0 88 0.2 0 0 +1.15596E7 38 9 17 98730 143 1337 457 33 0 33 3205 0 3228 1116 70 3.6 5 5 2200 2000 0 99999999 23 0 0 88 0.2 0 0 +1.15632E7 36 9 19 98714 0 669 445 0 0 0 0 0 0 0 60 3.1 5 5 2200 2000 0 99999999 23 0 0 88 0.2 0 0 +1.15668E7 35 10 22 98705 0 0 441 0 0 0 0 0 0 0 80 2.1 5 5 2500 2000 0 99999999 25 0 0 88 0.2 0 0 +1.15704E7 35 11 23 98705 0 0 443 0 0 0 0 0 0 0 282 0 5 5 2500 2000 0 99999999 28 0 0 88 0.2 0 0 +1.1574E7 34 12 26 98697 0 0 438 0 0 0 0 0 0 0 212 0 5 5 2500 2000 0 99999999 31 0 0 88 0.2 0 0 +1.15776E7 33 13 30 98689 0 0 434 0 0 0 0 0 0 0 140 2.6 5 5 2300 2000 0 99999999 34 0 0 88 0.2 0 0 +1.15812E7 32 13 31 98680 0 0 428 0 0 0 0 0 0 0 220 1.5 5 5 2300 2000 0 99999999 34 0 0 88 0.2 0 0 +1.15848E7 30 14 38 98663 0 0 419 0 0 0 0 0 0 0 220 1 5 5 2500 2000 0 99999999 38 0 0 88 0.2 0 0 +1.15884E7 30 14 38 98663 0 0 419 0 0 0 0 0 0 0 260 3.1 5 5 2500 2000 0 99999999 38 0 0 88 0.2 0 0 +1.1592E7 29 14 40 98654 0 0 413 0 0 0 0 0 0 0 250 2.6 5 5 2500 2000 0 99999999 38 0 0 88 0.2 0 0 +1.15956E7 29 13 37 98654 0 0 412 0 0 0 0 0 0 0 270 2.6 5 5 2500 2000 0 99999999 34 0 0 88 0.2 0 0 +1.15992E7 29 13 37 98654 0 0 405 0 0 0 0 0 0 0 260 1.5 3 3 2200 2000 9 999999999 34 0 0 88 0.2 0 0 +1.16028E7 29 13 37 98654 264 1218 405 98 132 72 10833 3330 8003 2440 270 2.1 3 3 2000 2000 9 999999999 34 0 0 88 0.2 0 0 +1.16064E7 31 11 29 98672 549 1336 414 314 421 141 35566 26549 16057 5579 250 2.6 3 3 2100 2000 9 999999999 28 0 0 88 0.2 0 0 +1.161E7 33 12 28 98689 811 1336 408 553 676 143 65666 43033 17033 6767 260 3.1 0 0 2200 2000 9 999999999 31 0 0 88 0.2 0 0 +1.16136E7 36 12 24 98714 1032 1336 425 759 791 149 92948 49711 18307 7642 290 3.1 0 0 2800 2000 9 999999999 31 0 0 88 0.2 0 0 +1.16172E7 38 11 20 98730 1196 1336 434 916 851 154 114388 53225 19386 8077 280 3.1 0 0 3000 2000 9 999999999 28 0 0 88 0.2 0 0 +1.16208E7 39 11 19 98739 1292 1336 440 1007 779 253 122827 54897 31088 12496 300 3.1 0 0 3000 2000 9 999999999 28 0 0 88 0.2 0 0 +1.16244E7 41 10 16 98755 1315 1336 450 1030 780 262 125740 55777 32194 12889 300 2.1 0 0 3000 2000 9 999999999 25 0 0 88 0.2 0 0 +1.1628E7 42 8 13 98763 1262 1336 472 970 855 163 121953 55088 20531 8503 270 2.1 3 3 4000 2000 9 999999999 20 0 0 88 0.2 0 0 +1.16316E7 42 6 11 98763 1137 1336 469 855 818 159 105994 54251 19836 8252 270 2.6 3 3 3500 2000 9 999999999 17 0 0 88 0.2 0 0 +1.16352E7 42 6 11 98763 948 1336 449 687 765 144 83529 50797 17627 7250 260 3.1 0 0 3500 2000 9 999999999 17 0 0 88 0.2 0 0 +1.16388E7 42 6 11 98763 709 1336 449 464 604 144 54225 40625 16869 6408 270 4.1 0 0 4000 2000 9 999999999 17 0 0 88 0.2 0 0 +1.16424E7 41 5 11 98755 435 1336 442 226 287 132 25048 17633 14734 4679 270 2.1 0 0 4000 2000 9 999999999 15 0 0 88 0.2 0 0 +1.1646E7 40 7 14 98747 146 1336 440 37 13 35 4065 0 3916 1173 290 2.6 0 0 4000 2000 9 999999999 18 0 0 88 0.2 0 0 +1.16496E7 39 6 13 98739 0 682 433 0 0 0 0 0 0 0 260 1.5 0 0 3500 2000 9 999999999 17 0 0 88 0.2 0 0 +1.16532E7 37 10 20 98722 0 0 427 0 0 0 0 0 0 0 60 2.1 0 0 3200 2000 9 999999999 25 0 0 88 0.2 0 0 +1.16568E7 36 11 22 98714 0 0 423 0 0 0 0 0 0 0 70 2.1 0 0 2300 2000 9 999999999 28 0 0 88 0.2 0 0 +1.16604E7 35 11 23 98705 0 0 418 0 0 0 0 0 0 0 90 3.1 0 0 2400 2000 9 999999999 28 0 0 88 0.2 0 0 +1.1664E7 34 12 26 98697 0 0 414 0 0 0 0 0 0 0 110 3.6 0 0 2500 2000 9 999999999 31 0 0 88 0.2 0 0 +1.16676E7 33 12 28 98689 0 0 408 0 0 0 0 0 0 0 110 2.1 0 0 2800 2000 9 999999999 31 0 0 88 0.2 0 0 +1.16712E7 33 12 28 98689 0 0 408 0 0 0 0 0 0 0 110 2.1 0 0 2500 2000 9 999999999 31 0 0 88 0.2 0 0 +1.16748E7 32 12 29 98680 0 0 403 0 0 0 0 0 0 0 140 1.5 0 0 2800 2000 9 999999999 31 0 0 88 0.2 0 0 +1.16784E7 31 11 29 98672 0 0 396 0 0 0 0 0 0 0 100 2.1 0 0 2800 2000 9 999999999 28 0 0 88 0.2 0 0 +1.1682E7 31 12 31 98672 0 0 398 0 0 0 0 0 0 0 100 1.5 0 0 2600 2000 9 999999999 31 0 0 88 0.2 0 0 +1.16856E7 31 13 33 98672 0 0 399 0 0 0 0 0 0 0 150 1.5 0 0 2600 2000 9 999999999 34 0 0 88 0.2 0 0 +1.16892E7 30 14 38 98663 266 1231 395 101 140 73 11095 3502 8062 2463 210 2.1 0 0 2000 2000 9 999999999 38 0 0 88 0.2 0 0 +1.16928E7 31 10 27 98672 551 1336 395 320 444 137 36356 27894 15634 5470 300 1.5 0 0 1200 2000 9 999999999 25 0 0 88 0.2 0 0 +1.16964E7 32 10 26 98680 812 1336 400 556 671 148 65911 44034 17583 6960 320 1.5 0 0 1100 2000 9 999999999 25 0 0 88 0.2 0 0 +1.17E7 34 9 22 98697 1032 1336 410 763 792 151 93521 51454 18573 7736 320 2.1 0 0 1200 2000 9 999999999 23 0 0 88 0.2 0 0 +1.17036E7 36 10 21 98714 1196 1336 422 917 774 224 111557 54057 27413 11142 340 4.6 0 0 1400 2000 9 999999999 25 0 0 88 0.2 0 0 +1.17072E7 38 10 19 98730 1293 1336 433 1009 779 255 123074 55451 31284 12560 270 2.1 0 0 1600 2000 9 999999999 25 0 0 88 0.2 0 0 +1.17108E7 39 11 19 98739 1315 1336 440 1029 780 261 125589 55159 32006 12829 200 1.5 0 0 1700 2000 9 999999999 28 0 0 88 0.2 0 0 +1.17144E7 40 11 18 98747 1262 1336 446 979 778 244 119237 54464 29885 12057 230 1 0 0 1800 2000 9 999999999 28 0 0 88 0.2 0 0 +1.1718E7 41 9 15 98755 1137 1336 448 863 839 149 107391 53472 18607 7773 240 1.5 0 0 2100 2000 9 999999999 22 0 0 88 0.2 0 0 +1.17216E7 41 9 15 98755 949 1336 448 685 765 141 83312 49360 17250 7116 300 2.1 0 0 2100 2000 9 999999999 22 0 0 88 0.2 0 0 +1.17252E7 42 9 14 98763 710 1336 454 463 608 139 54193 39617 16392 6263 150 1.5 0 0 2500 2000 9 999999999 22 0 0 88 0.2 0 0 +1.17288E7 41 12 18 98755 437 1336 453 225 322 120 25077 17492 13388 4396 70 3.6 0 0 2500 2000 9 999999999 30 0 0 88 0.2 0 0 +1.17324E7 39 15 24 98739 148 1336 446 37 11 36 4127 0 4009 1205 50 2.1 0 0 2500 2000 9 999999999 41 0 0 88 0.2 0 0 +1.1736E7 38 15 26 98730 0 695 440 0 0 0 0 0 0 0 40 2.6 0 0 2500 2000 9 999999999 41 0 0 88 0.2 0 0 +1.17396E7 37 17 31 98722 0 0 437 0 0 0 0 0 0 0 100 2.1 0 0 2200 2000 9 999999999 50 0 0 88 0.2 0 0 +1.17432E7 35 18 37 98705 0 0 427 0 0 0 0 0 0 0 110 1.5 0 0 2200 2000 9 999999999 56 0 0 88 0.2 0 0 +1.17468E7 34 19 41 98697 0 0 423 0 0 0 0 0 0 0 80 1.5 0 0 2200 2000 9 999999999 62 0 0 88 0.2 0 0 +1.17504E7 33 19 44 98689 0 0 418 0 0 0 0 0 0 0 100 1.5 0 0 2200 2000 9 999999999 62 0 0 88 0.2 0 0 +1.1754E7 33 19 44 98689 0 0 418 0 0 0 0 0 0 0 90 1.5 0 0 2200 2000 9 999999999 62 0 0 88 0.2 0 0 +1.17576E7 32 19 46 98680 0 0 430 0 0 0 0 0 0 0 196 0 3 3 2200 2000 9 999999999 62 0 0 88 0.2 0 0 +1.17612E7 32 19 46 98680 0 0 430 0 0 0 0 0 0 0 50 2.6 3 3 2200 2000 9 999999999 62 0 0 88 0.2 0 0 +1.17648E7 31 19 49 98672 0 0 424 0 0 0 0 0 0 0 170 1.5 3 3 2500 2000 9 999999999 62 0 0 88 0.2 0 0 +1.17684E7 31 20 52 98672 0 0 432 0 0 0 0 0 0 0 104 0 5 5 2500 2000 9 999999999 69 0 0 88 0.2 0 0 +1.1772E7 30 19 52 98663 0 0 419 0 0 0 0 0 0 0 40 3.6 3 3 2200 2000 9 999999999 62 0 0 88 0.2 0 0 +1.17756E7 30 20 55 98663 268 1242 420 100 138 72 10955 2643 7933 2453 110 2.1 3 3 2200 2000 9 999999999 69 0 0 88 0.2 0 0 +1.17792E7 32 19 46 98680 553 1335 430 313 445 129 35478 23883 14643 5227 240 2.6 3 3 2100 2000 9 999999999 62 0 0 88 0.2 0 0 +1.17828E7 33 13 30 98689 813 1335 410 554 678 141 65852 42507 16846 6711 270 4.1 0 0 2100 2000 9 999999999 34 0 0 88 0.2 0 0 +1.17864E7 34 13 28 98697 1033 1335 415 759 789 148 92965 49019 18254 7627 260 5.1 0 0 2100 2000 9 999999999 34 0 0 88 0.2 0 0 +1.179E7 36 13 25 98714 1197 1335 426 914 843 158 113855 51864 19798 8249 270 3.6 0 0 2500 2000 9 999999999 34 0 0 88 0.2 0 0 +1.17936E7 38 13 23 98730 1293 1335 437 1005 779 251 122531 53564 30727 12380 270 3.1 0 0 2500 2000 9 999999999 34 0 0 88 0.2 0 0 +1.17972E7 40 12 19 98747 1316 1335 447 1028 780 259 125440 54514 31829 12772 270 2.1 0 0 2500 2000 9 999999999 30 0 0 88 0.2 0 0 +1.18008E7 42 10 15 98763 1263 1335 456 981 777 246 119492 55026 30089 12125 300 3.6 0 0 2800 2000 9 999999999 25 0 0 88 0.2 0 0 +1.18044E7 44 4 9 98779 1138 1335 458 870 770 213 105612 55894 26052 10608 290 4.6 0 0 2500 2000 9 999999999 14 0 0 88 0.2 0 0 +1.1808E7 44 3 8 98779 950 1335 456 692 756 154 83843 51967 18685 7652 310 4.1 0 0 2700 2000 9 999999999 12 0 0 88 0.2 0 0 +1.18116E7 44 2 8 98779 712 1335 455 469 591 154 54639 41669 18014 6782 310 4.1 0 0 2700 2000 9 999999999 11 0 0 88 0.2 0 0 +1.18152E7 42 5 11 98763 439 1335 448 229 289 134 25367 17865 14893 4737 280 4.6 0 0 2700 2000 9 999999999 15 0 0 88 0.2 0 0 +1.18188E7 40 6 13 98747 151 1335 438 39 19 37 4301 0 4069 1220 260 4.1 0 0 2700 2000 9 999999999 17 0 0 88 0.2 0 0 +1.18224E7 38 6 14 98730 0 708 427 0 0 0 0 0 0 0 270 3.1 0 0 2700 2000 9 999999999 17 0 0 88 0.2 0 0 +1.1826E7 39 6 13 98739 0 0 433 0 0 0 0 0 0 0 320 1 0 0 2700 2000 9 999999999 17 0 0 88 0.2 0 0 +1.18296E7 36 15 29 98714 0 0 429 0 0 0 0 0 0 0 80 2.6 0 0 2500 2000 9 999999999 41 0 0 88 0.2 0 0 +1.18332E7 35 20 42 98705 0 0 430 0 0 0 0 0 0 0 100 3.1 0 0 2100 2000 9 999999999 68 0 0 88 0.2 0 0 +1.18368E7 34 21 47 98697 0 0 444 0 0 0 0 0 0 0 110 2.6 3 3 2100 2000 9 999999999 76 0 0 88 0.2 0 0 +1.18404E7 34 21 47 98697 0 0 444 0 0 0 0 0 0 0 110 3.1 3 3 2100 2000 9 999999999 76 0 0 88 0.2 0 0 +1.1844E7 33 22 53 98689 0 0 440 0 0 0 0 0 0 0 100 3.1 3 3 2100 2000 9 999999999 84 0 0 88 0.2 0 0 +1.18476E7 32 23 59 98680 0 0 435 0 0 0 0 0 0 0 110 4.1 3 3 2500 2000 9 999999999 93 0 0 88 0.2 0 0 +1.18512E7 32 23 59 98680 0 0 435 0 0 0 0 0 0 0 120 2.6 3 3 2500 2000 9 999999999 93 0 0 88 0.2 0 0 +1.18548E7 32 23 59 98680 0 0 442 0 0 0 0 0 0 0 170 3.1 5 5 2500 2000 9 999999999 93 0 0 88 0.2 0 0 +1.18584E7 32 23 59 98680 0 0 442 0 0 0 0 0 0 0 180 2.6 5 5 2500 2000 9 999999999 93 0 0 88 0.2 0 0 +1.1862E7 31 23 63 98672 270 1254 436 95 106 73 10355 1684 8041 2491 70 2.6 5 5 2500 2000 9 999999999 93 0 0 88 0.2 0 0 +1.18656E7 32 23 59 98680 554 1335 442 294 359 145 32878 18627 16285 5712 40 3.1 5 5 2100 2000 9 999999999 93 0 0 88 0.2 0 0 +1.18692E7 32 24 63 98680 815 1335 443 507 543 176 58640 30083 20430 8032 60 4.1 5 5 1700 2000 9 999999999 102 0 0 88 0.2 0 0 +1.18728E7 34 25 60 98697 1034 1335 457 693 625 209 81749 34377 24818 10211 80 4.1 5 5 2200 2000 9 999999999 113 0 0 88 0.2 0 0 +1.18764E7 35 24 53 98705 1197 1335 461 836 625 275 98864 37818 32734 13147 120 2.6 5 5 2200 2000 9 999999999 102 0 0 88 0.2 0 0 +1.188E7 37 24 48 98722 1294 1335 466 975 792 207 119367 41794 25482 10538 120 2.6 3 3 2200 2000 9 999999999 101 0 0 88 0.2 0 0 +1.18836E7 39 22 38 98739 1316 1335 475 999 845 166 125013 43808 20821 8682 180 2.1 3 3 2500 2000 9 999999999 83 0 0 88 0.2 0 0 +1.18872E7 40 19 30 98747 1263 1335 477 955 811 188 117998 47086 23292 9646 140 3.1 3 3 2500 2000 9 999999999 61 0 0 88 0.2 0 0 +1.18908E7 42 19 27 98763 1139 1335 497 792 608 273 93506 41437 32473 12943 40 2.6 5 5 2500 2000 9 999999999 61 0 0 88 0.2 0 0 +1.18944E7 43 19 25 98771 951 1335 503 629 627 182 74568 38483 21709 8842 20 2.1 5 5 2500 2000 9 999999999 61 0 0 88 0.2 0 0 +1.1898E7 43 18 24 98771 713 1335 502 427 512 153 49337 30922 17781 6763 300 2.1 5 5 2500 2000 9 999999999 55 0 0 88 0.2 0 0 +1.19016E7 44 15 19 98779 441 1335 503 211 257 126 23397 13864 14015 4571 290 4.1 5 5 2800 2000 9 999999999 41 0 0 88 0.2 0 0 +1.19052E7 42 12 17 98763 153 1335 486 37 0 37 4080 0 4090 1234 300 2.6 5 5 2800 2000 9 999999999 30 0 0 88 0.2 0 0 +1.19088E7 40 12 19 98747 0 721 474 0 0 0 0 0 0 0 300 1.5 5 5 3000 2000 9 999999999 30 0 0 88 0.2 0 0 +1.19124E7 37 14 25 98722 0 0 486 0 0 0 0 0 0 0 220 4.6 9 9 3000 1200 0 99999999 37 0 0 88 0.2 0 0 +1.1916E7 37 12 22 98722 0 0 483 0 0 0 0 0 0 0 280 5.1 9 9 3000 1200 0 99999999 31 0 0 88 0.2 0 0 +1.19196E7 33 13 30 98689 0 0 460 0 0 0 0 0 0 0 300 7.2 9 9 3000 1200 0 99999999 34 0 0 88 0.2 0 0 +1.19232E7 32.1 14.6 35 98681 0 0 407 0 0 0 0 0 0 0 81 6.6 0 0 2971 1200 9 999999999 40 0 0 88 0.2 0 0 +1.19268E7 31.1 15.6 39 98673 0 0 411 0 0 0 0 0 0 0 103 6.5 1 1 3192 1200 9 999999999 44 0 0 88 0.2 0 0 +1.19304E7 30.2 17.2 46 98665 0 0 413 0 0 0 0 0 0 0 60 6.2 2 2 3164 1200 9 999999999 52 0 0 88 0.2 0 0 +1.1934E7 29.8 18.8 52 98661 0 0 417 0 0 0 0 0 0 0 77 5.9 3 3 3585 1200 9 999999999 61 0 0 88 0.2 0 0 +1.19376E7 29.4 19.9 57 98657 0 0 420 0 0 0 0 0 0 0 356 4.8 4 4 3557 1200 9 999999999 68 0 0 88 0.2 0 0 +1.19412E7 29.4 20.9 60 98658 0 0 421 0 0 0 0 0 0 0 231 4.4 4 4 3278 1200 9 999999999 75 0 0 88 0.2 0 0 +1.19448E7 29 17 48 98654 0 0 417 0 0 0 0 0 0 0 240 3.1 5 5 3500 2000 9 999999999 51 0 0 88 0.2 0 0 +1.19484E7 29 17 48 98654 272 1265 411 103 149 72 11295 3406 7966 2471 220 2.1 3 3 3500 2000 9 999999999 51 0 0 88 0.2 0 0 +1.1952E7 32 14 34 98680 556 1334 406 322 433 141 36383 26425 16057 5620 180 1.5 0 0 3500 2000 9 999999999 38 0 0 88 0.2 0 0 +1.19556E7 34 16 34 98697 816 1334 419 553 680 138 65759 40616 16430 6579 230 3.6 0 0 3500 2000 9 999999999 46 0 0 88 0.2 0 0 +1.19592E7 35 16 32 98705 1035 1334 425 757 800 136 93116 46639 16804 7066 250 2.6 0 0 4000 2000 9 999999999 46 0 0 88 0.2 0 0 +1.19628E7 38 15 26 98730 1198 1334 440 912 844 154 113689 50255 19333 8073 280 4.6 0 0 4000 2000 9 999999999 41 0 0 88 0.2 0 0 +1.19664E7 40 15 23 98747 1294 1334 451 1002 853 175 125404 51616 21964 9091 270 5.1 0 0 4000 2000 9 999999999 41 0 0 88 0.2 0 0 +1.197E7 41 15 22 98755 1316 1334 457 1024 853 182 128055 51930 22844 9431 290 5.1 0 0 4000 2000 9 999999999 41 0 0 88 0.2 0 0 +1.19736E7 42 15 21 98763 1264 1334 463 974 853 166 121862 51187 20821 8648 300 4.1 0 0 4000 2000 9 999999999 41 0 0 88 0.2 0 0 +1.19772E7 41 15 22 98755 1139 1334 457 857 807 168 105379 49604 20717 8634 300 4.1 0 0 4500 2000 9 999999999 41 0 0 88 0.2 0 0 +1.19808E7 41 15 22 98755 952 1334 477 672 713 164 80647 44924 19730 8091 300 3.6 3 3 4500 2000 9 999999999 41 0 0 88 0.2 0 0 +1.19844E7 42 16 22 98763 715 1334 485 455 542 165 52425 34792 19112 7182 300 3.1 3 3 4500 2000 9 999999999 45 0 0 88 0.2 0 0 +1.1988E7 42 15 21 98763 443 1334 491 212 251 129 23502 13713 14343 4657 310 3.1 5 5 4500 2000 9 999999999 41 0 0 88 0.2 0 0 +1.19916E7 40 18 28 98747 156 1334 483 38 2 37 4144 0 4136 1255 60 2.6 5 5 4000 2000 9 999999999 55 0 0 88 0.2 0 0 +1.19952E7 38 18 31 98730 0 733 471 0 0 0 0 0 0 0 100 6.2 5 5 4000 2000 9 999999999 56 0 0 88 0.2 0 0 +1.19988E7 37 20 37 98722 0 0 467 0 0 0 0 0 0 0 80 6.7 5 5 3500 2000 9 999999999 68 0 0 88 0.2 0 0 +1.20024E7 34 22 50 98697 0 0 452 0 0 0 0 0 0 0 90 6.2 5 5 3500 2000 9 999999999 83 0 0 88 0.2 0 0 +1.2006E7 32 21 52 98680 0 0 439 0 0 0 0 0 0 0 90 6.7 5 5 3500 2000 9 999999999 76 0 0 88 0.2 0 0 +1.20096E7 31 21 55 98672 0 0 434 0 0 0 0 0 0 0 90 6.7 5 5 3500 2000 9 999999999 76 0 0 88 0.2 0 0 +1.20132E7 29 21 62 98654 0 0 422 0 0 0 0 0 0 0 100 6.7 5 5 4000 2000 9 999999999 76 0 0 88 0.2 0 0 +1.20168E7 28 21 66 98646 0 0 417 0 0 0 0 0 0 0 100 6.7 5 5 4000 2000 9 999999999 76 0 0 88 0.2 0 0 +1.20204E7 28 21 66 98646 0 0 417 0 0 0 0 0 0 0 100 5.7 5 5 4500 2000 9 999999999 76 0 0 88 0.2 0 0 +1.2024E7 27 21 70 98637 0 0 405 0 0 0 0 0 0 0 120 5.7 3 3 4500 2000 9 999999999 76 0 0 88 0.2 0 0 +1.20276E7 27 21 70 98637 0 0 405 0 0 0 0 0 0 0 110 5.1 3 3 4000 2000 9 999999999 76 0 0 88 0.2 0 0 +1.20312E7 27 20 66 98637 0 0 404 0 0 0 0 0 0 0 110 5.1 3 3 4000 2000 9 999999999 69 0 0 88 0.2 0 0 +1.20348E7 27 20 66 98637 274 1275 404 103 142 74 11309 2922 8129 2520 120 5.1 3 3 4000 2000 9 999999999 69 0 0 88 0.2 0 0 +1.20384E7 28 20 62 98646 557 1334 409 316 443 130 35728 23450 14837 5307 110 6.2 3 3 4000 2000 9 999999999 69 0 0 88 0.2 0 0 +1.2042E7 29 20 58 98654 817 1334 397 550 675 137 65207 37437 16287 6551 100 5.1 0 0 4000 2000 9 999999999 69 0 0 88 0.2 0 0 +1.20456E7 30 21 59 98663 1035 1334 404 751 812 120 92837 41517 14931 6333 110 6.2 0 0 4000 2000 9 999999999 76 0 0 88 0.2 0 0 +1.20492E7 32 21 52 98680 1198 1334 415 903 773 209 109539 45169 25442 10492 110 6.2 0 0 3500 2000 9 999999999 76 0 0 88 0.2 0 0 +1.20528E7 34 21 47 98697 1294 1334 426 993 778 238 120761 46481 29101 11861 120 6.2 0 0 3500 2000 9 999999999 76 0 0 88 0.2 0 0 +1.20564E7 36 20 39 98714 1317 1334 436 1016 779 246 123690 47840 30192 12252 120 3.6 0 0 3500 2000 9 999999999 68 0 0 88 0.2 0 0 +1.206E7 37 19 35 98722 1264 1334 440 968 776 232 117746 48191 28380 11571 140 3.1 0 0 3500 2000 9 999999999 62 0 0 88 0.2 0 0 +1.20636E7 38 20 35 98730 1140 1334 447 850 830 141 105524 44590 17552 7402 170 2.6 0 0 3500 2000 9 999999999 68 0 0 88 0.2 0 0 +1.20672E7 39 20 33 98739 953 1334 453 676 792 110 83251 40846 13611 5723 240 1.5 0 0 3200 2000 9 999999999 68 0 0 88 0.2 0 0 +1.20708E7 39 19 31 98739 716 1334 451 460 668 102 54898 34106 12161 4822 170 2.1 0 0 3100 2000 9 999999999 61 0 0 88 0.2 0 0 +1.20744E7 39 18 29 98739 445 1334 450 228 372 104 25677 16980 11755 4027 180 2.6 0 0 3100 2000 9 999999999 56 0 0 88 0.2 0 0 +1.2078E7 39 18 29 98739 158 1334 450 41 22 39 4559 0 4288 1296 120 3.1 0 0 3500 2000 9 999999999 56 0 0 88 0.2 0 0 +1.20816E7 37 20 37 98722 0 746 441 0 0 0 0 0 0 0 80 2.6 0 0 3500 2000 9 999999999 68 0 0 88 0.2 0 0 +1.20852E7 35 20 42 98705 0 0 430 0 0 0 0 0 0 0 80 4.1 0 0 3200 2000 9 999999999 68 0 0 88 0.2 0 0 +1.20888E7 34 20 44 98697 0 0 450 0 0 0 0 0 0 0 80 4.1 5 5 3200 2000 9 999999999 68 0 0 88 0.2 0 0 +1.20924E7 34 20 44 98697 0 0 450 0 0 0 0 0 0 0 90 6.2 5 5 3200 2000 9 999999999 68 0 0 88 0.2 0 0 +1.2096E7 32 20 49 98680 0 0 464 0 0 0 0 0 0 0 90 5.7 9 9 3200 3000 9 999999999 69 0 0 88 0.2 0 0 +1.20996E7 32 20 49 98680 0 0 438 0 0 0 0 0 0 0 110 4.1 5 5 3200 2000 9 999999999 69 0 0 88 0.2 0 0 +1.21032E7 31 20 52 98672 0 0 458 0 0 0 0 0 0 0 100 4.1 9 9 3200 2000 9 999999999 69 0 0 88 0.2 0 0 +1.21068E7 26 16 54 98628 0 0 423 0 0 0 0 0 0 0 50 4.1 9 9 2200 1200 0 99999999 46 0 0 88 0.2 0 0 +1.21104E7 27 16 51 98637 0 0 429 0 0 0 0 0 0 0 120 5.1 9 9 2500 1200 0 99999999 46 0 0 88 0.2 0 0 +1.2114E7 27 16 51 98637 0 0 429 0 0 0 0 0 0 0 140 4.1 9 9 2500 1200 0 99999999 46 0 0 88 0.2 0 0 +1.21176E7 27 16 51 98637 0 0 429 0 0 0 0 0 0 0 150 4.1 9 9 3000 1200 9 999999999 46 0 0 88 0.2 0 0 +1.21212E7 28 16 48 98646 276 1285 404 105 137 76 11499 3551 8409 2581 150 4.1 3 3 3000 2000 9 999999999 46 0 0 88 0.2 0 0 +1.21248E7 29 16 45 98654 558 1333 409 318 411 146 35879 24816 16547 5772 140 4.1 3 3 3000 2000 9 999999999 46 0 0 88 0.2 0 0 +1.21284E7 32 15 36 98680 817 1333 425 548 531 223 62835 38484 25644 9622 160 5.7 3 3 3200 2000 9 999999999 42 0 0 88 0.2 0 0 +1.2132E7 22 21 94 98592 1036 1333 407 388 89 319 44478 6464 36819 14067 50 5.1 9 9 1500 1200 0 19999999 77 0 0 88 0.2 0 0 +1.21356E7 22 20 88 98592 1198 1333 406 467 68 406 53853 5338 47128 17432 70 7.2 9 9 1900 1200 0 19999999 70 0 0 88 0.2 0 0 +1.21392E7 24 20 78 98610 1294 1333 417 513 68 447 59534 5423 52228 19069 80 6.2 9 9 2500 1200 0 19999999 69 0 0 88 0.2 0 0 +1.21428E7 25 19 69 98619 1317 1333 422 525 69 457 61037 5554 53540 19465 80 6.2 9 9 3500 1200 0 19999999 63 0 0 88 0.2 0 0 +1.21464E7 27 18 58 98637 1264 1333 432 500 69 435 58059 5631 50818 18582 100 6.2 9 9 3500 1200 0 19999999 57 0 0 88 0.2 0 0 +1.215E7 30 18 49 98663 1141 1333 449 441 68 382 50752 5482 44305 16478 120 7.2 9 9 3800 1200 0 19999999 56 0 0 88 0.2 0 0 +1.21536E7 32 17 41 98680 954 1333 460 351 32 328 39845 2625 37445 13709 100 4.1 9 9 4000 1200 0 19999999 51 0 0 88 0.2 0 0 +1.21572E7 31 18 46 98672 718 1333 455 238 18 229 26709 1301 25766 9066 200 5.1 9 9 3000 1200 0 19999999 56 0 0 88 0.2 0 0 +1.21608E7 30 19 52 98663 447 1333 451 118 9 115 13192 439 12899 4341 110 4.1 9 9 3500 1200 0 19999999 62 0 0 88 0.2 0 0 +1.21644E7 30 19 52 98663 161 1333 451 22 0 22 2108 0 2123 831 130 2.6 9 9 3500 1200 0 19999999 62 0 0 88 0.2 0 0 +1.2168E7 28 19 58 98646 0 759 439 0 0 0 0 0 0 0 120 5.1 9 9 3000 1200 0 19999999 62 0 0 88 0.2 0 0 +1.21716E7 27 19 62 98637 0 0 445 0 0 0 0 0 0 0 100 3.6 10 10 3000 1200 0 19999999 63 0 0 88 0.2 0 0 +1.21752E7 27 20 66 98637 0 0 447 0 0 0 0 0 0 0 320 9.3 10 10 3000 1200 0 19999999 69 0 0 88 0.2 0 0 +1.21788E7 24 22 89 98610 0 0 432 0 0 0 0 0 0 0 350 6.2 10 10 3000 1200 0 19999999 85 0 0 88 0.2 0 0 +1.21824E7 25 21 78 98619 0 0 436 0 0 0 0 0 0 0 360 6.2 10 10 3000 1200 0 19999999 77 0 0 88 0.2 0 0 +1.2186E7 23.5 21 86 98606 0 0 407 0 0 0 0 0 0 0 238 6.2 8 8 2750 1200 9 999999999 77 0 0 88 0.2 0 0 +1.21896E7 22 21 94 98592 0 0 419 0 0 0 0 0 0 0 300 6.2 10 10 2500 1200 0 19999999 77 0 0 88 0.2 0 0 +1.21932E7 21 19 88 98583 0 0 411 0 0 0 0 0 0 0 80 6.2 10 10 2100 1200 0 19999999 63 0 0 88 0.2 0 0 +1.21968E7 22 21 94 98592 0 0 407 0 0 0 0 0 0 0 40 2.1 9 9 2100 1200 0 19999999 77 0 0 88 0.2 0 0 +1.22004E7 21 21 100 98583 0 0 379 0 0 0 0 0 0 0 40 2.6 5 5 2100 2000 0 19999999 77 0 0 88 0.2 0 0 +1.2204E7 22 21 94 98592 0 0 385 0 0 0 0 0 0 0 350 3.1 5 5 2100 2000 9 999999999 77 0 0 88 0.2 0 0 +1.22076E7 22 20 88 98592 278 1295 383 99 112 76 10841 2420 8321 2576 150 2.1 5 5 2100 2000 9 999999999 70 0 0 88 0.2 0 0 +1.22112E7 24 19 74 98610 560 1332 393 299 366 146 33668 20965 16442 5763 150 2.1 5 5 2500 2000 9 999999999 63 0 0 88 0.2 0 0 +1.22148E7 25 19 69 98619 818 1332 398 514 559 171 59943 34267 20032 7875 160 2.6 5 5 2500 2000 9 999999999 63 0 0 88 0.2 0 0 +1.22184E7 26 20 70 98628 1036 1332 405 701 638 205 83311 39294 24466 10036 170 2.1 5 5 2800 2000 9 999999999 69 0 0 88 0.2 0 0 +1.2222E7 29 18 52 98654 1199 1332 418 845 667 245 101566 43580 29574 11976 160 2.1 5 5 3000 2000 9 999999999 56 0 0 88 0.2 0 0 +1.22256E7 31 16 40 98672 1294 1332 427 931 655 295 112004 45983 35721 14141 120 2.1 5 5 3500 2000 9 999999999 46 0 0 88 0.2 0 0 +1.22292E7 32 18 43 98680 1317 1332 435 948 559 396 111617 42789 46964 17693 240 2.6 5 5 3500 2000 9 999999999 56 0 0 88 0.2 0 0 +1.22328E7 32 18 43 98680 1265 1332 461 501 90 415 58315 7200 48663 18025 300 4.1 9 9 3500 3000 9 999999999 56 0 0 88 0.2 0 0 +1.22364E7 27 20 66 98637 1141 1332 434 439 67 382 50523 5248 44179 16472 300 10.3 9 9 3200 1200 9 999999999 69 0 0 88 0.2 0 0 +1.224E7 22 18 78 98592 955 1332 404 351 46 318 39883 3624 36353 13448 190 6.7 9 9 3000 1200 0 19999999 57 0 0 88 0.2 0 0 +1.22436E7 23.5 17.5 69 98606 719 1332 392 419 385 211 47292 26981 23983 8619 152 4.9 6 6 4000 1200 9 999999999 54 0 0 88 0.2 0 0 +1.22472E7 25 17 61 98619 449 1332 419 119 18 113 13357 864 12746 4304 190 3.1 9 9 5000 3000 0 19999999 51 0 0 88 0.2 0 0 +1.22508E7 26 17 58 98628 163 1332 425 22 0 22 2168 0 2184 852 40 2.6 9 9 5000 3000 0 19999999 51 0 0 88 0.2 0 0 +1.22544E7 25 17 61 98619 0 771 419 0 0 0 0 0 0 0 50 2.1 9 9 4000 3000 0 19999999 51 0 0 88 0.2 0 0 +1.2258E7 25 19 69 98619 0 0 398 0 0 0 0 0 0 0 80 1.5 5 5 3500 2000 0 19999999 63 0 0 88 0.2 0 0 +1.22616E7 24 19 74 98610 0 0 393 0 0 0 0 0 0 0 189 0 5 5 3200 2000 0 19999999 63 0 0 88 0.2 0 0 +1.22652E7 24 19 74 98610 0 0 393 0 0 0 0 0 0 0 110 2.1 5 5 2300 2000 0 19999999 63 0 0 88 0.2 0 0 +1.22688E7 24 19 74 98610 0 0 416 0 0 0 0 0 0 0 120 2.1 9 9 2300 2000 0 19999999 63 0 0 88 0.2 0 0 +1.22724E7 23 19 78 98601 0 0 410 0 0 0 0 0 0 0 100 2.1 9 9 2300 3000 0 19999999 63 0 0 88 0.2 0 0 +1.2276E7 23 20 83 98601 0 0 389 0 0 0 0 0 0 0 148 0 5 5 2300 2000 0 19999999 70 0 0 88 0.2 0 0 +1.22796E7 24 19 74 98610 0 0 393 0 0 0 0 0 0 0 357 0 5 5 2500 2000 0 19999999 63 0 0 88 0.2 0 0 +1.22832E7 23 19 78 98601 0 0 410 0 0 0 0 0 0 0 19 0 9 9 2500 1200 0 19999999 63 0 0 88 0.2 0 0 +1.22868E7 23 19 78 98601 0 0 410 0 0 0 0 0 0 0 220 0 9 9 2500 1200 0 19999999 63 0 0 88 0.2 0 0 +1.22904E7 23 20 83 98601 0 0 423 0 0 0 0 0 0 0 163 0 10 10 2100 2000 9 999999999 70 0 0 88 0.2 0 0 +1.2294E7 24 20 78 98610 279 1304 394 100 113 76 10947 2497 8374 2594 80 2.1 5 5 1900 3000 9 999999999 69 0 0 88 0.2 0 0 +1.22976E7 26 19 65 98628 561 1332 403 300 367 146 33783 21040 16469 5776 80 2.1 5 5 2200 2000 9 999999999 63 0 0 88 0.2 0 0 +1.23012E7 29 18 52 98654 819 1332 395 554 678 137 65804 39133 16366 6576 170 0 0 0 2500 2000 9 999999999 56 0 0 88 0.2 0 0 +1.23048E7 30 18 49 98663 1037 1332 400 756 813 123 93585 44617 15315 6474 190 1.5 0 0 2800 2000 9 999999999 56 0 0 88 0.2 0 0 +1.23084E7 32 18 43 98680 1199 1332 411 908 772 213 110340 48120 26041 10689 230 2.1 0 0 2800 2000 9 999999999 56 0 0 88 0.2 0 0 +1.2312E7 33 17 38 98689 1295 1332 415 1000 777 244 121847 50339 29955 12133 280 4.1 0 0 3000 2000 9 999999999 51 0 0 88 0.2 0 0 +1.23156E7 34 18 39 98697 1317 1332 422 1019 778 250 124297 49732 30638 12393 270 4.1 0 0 3000 2000 9 999999999 56 0 0 88 0.2 0 0 +1.23192E7 35 18 37 98705 1265 1332 427 970 776 234 118133 49073 28615 11648 290 4.6 0 0 3000 2000 9 999999999 56 0 0 88 0.2 0 0 +1.23228E7 36 17 33 98714 1142 1332 431 856 769 197 103937 48090 24058 9932 300 5.1 0 0 3500 2000 9 999999999 50 0 0 88 0.2 0 0 +1.23264E7 36 16 31 98714 956 1332 430 683 772 129 83462 44766 15831 6601 290 5.1 0 0 3500 2000 9 999999999 46 0 0 88 0.2 0 0 +1.233E7 36 17 33 98714 721 1332 431 465 612 134 54473 35719 15758 6111 280 6.2 0 0 3500 2000 9 999999999 50 0 0 88 0.2 0 0 +1.23336E7 36 16 31 98714 451 1332 430 233 331 121 26001 17270 13559 4515 280 6.2 0 0 3500 2000 9 999999999 46 0 0 88 0.2 0 0 +1.23372E7 35 16 32 98705 166 1332 425 45 25 42 4918 0 4590 1381 310 5.1 0 0 3500 2000 9 999999999 46 0 0 88 0.2 0 0 +1.23408E7 31 18 46 98672 0 783 406 0 0 0 0 0 0 0 260 3.1 0 0 3000 2000 9 999999999 56 0 0 88 0.2 0 0 +1.23444E7 31 18 46 98672 0 0 406 0 0 0 0 0 0 0 270 2.6 0 0 3000 2000 9 999999999 56 0 0 88 0.2 0 0 +1.2348E7 31 18 46 98672 0 0 406 0 0 0 0 0 0 0 280 2.6 0 0 3000 2000 9 999999999 56 0 0 88 0.2 0 0 +1.23516E7 31 18 46 98672 0 0 406 0 0 0 0 0 0 0 280 1.5 0 0 2500 2000 9 999999999 56 0 0 88 0.2 0 0 +1.23552E7 29 19 55 98654 0 0 396 0 0 0 0 0 0 0 250 1.5 0 0 2200 2000 9 999999999 62 0 0 88 0.2 0 0 +1.23588E7 29 19 55 98654 0 0 396 0 0 0 0 0 0 0 23 0 0 0 2500 2000 9 999999999 62 0 0 88 0.2 0 0 +1.23624E7 28 19 58 98646 0 0 391 0 0 0 0 0 0 0 260 1 0 0 1800 2000 9 999999999 62 0 0 88 0.2 0 0 +1.2366E7 28 19 58 98646 0 0 391 0 0 0 0 0 0 0 62 0 0 0 1500 2000 9 999999999 62 0 0 88 0.2 0 0 +1.23696E7 28 19 58 98646 0 0 391 0 0 0 0 0 0 0 280 0 0 0 1200 2000 9 999999999 62 0 0 88 0.2 0 0 +1.23732E7 26 20 70 98628 0 0 382 0 0 0 0 0 0 0 264 0 0 0 2000 2000 9 999999999 69 0 0 88 0.2 0 0 +1.23768E7 26 20 70 98628 0 0 382 0 0 0 0 0 0 0 20 0 0 0 2500 2000 9 999999999 69 0 0 88 0.2 0 0 +1.23804E7 27 20 66 98637 281 1312 387 108 155 75 11865 3398 8313 2587 277 0 0 0 2200 2000 9 999999999 69 0 0 88 0.2 0 0 +1.2384E7 28 20 62 98646 562 1331 392 323 462 128 36676 24282 14601 5258 270 1.5 0 0 2200 2000 9 999999999 69 0 0 88 0.2 0 0 +1.23876E7 31 21 55 98672 820 1331 409 552 671 139 65290 36543 16503 6646 240 2.1 0 0 2500 2000 9 999999999 76 0 0 88 0.2 0 0 +1.23912E7 33 19 44 98689 1037 1331 418 755 819 117 82802 86413 15869 3126 260 2.6 0 0 2800 2000 9 999999999 62 0 0 88 0.2 0 0 +1.23948E7 37 17 31 98722 1199 1331 437 910 772 215 110594 48994 26250 10759 250 3.1 0 0 3800 2000 9 999999999 50 0 0 88 0.2 0 0 +1.23984E7 37 15 27 98722 1295 1331 434 1003 851 176 125468 51510 22129 9155 260 3.6 0 0 4000 2000 9 999999999 41 0 0 88 0.2 0 0 +1.2402E7 38 13 23 98730 1317 1331 437 1028 854 183 128714 53363 23030 9491 290 3.6 0 0 4500 2000 9 999999999 34 0 0 88 0.2 0 0 +1.24056E7 39 12 20 98739 1265 1331 441 980 775 243 119471 53654 29796 12033 280 5.7 0 0 4200 2000 9 999999999 30 0 0 88 0.2 0 0 +1.24092E7 41 12 18 98755 1143 1331 453 864 830 151 107311 51520 18877 7891 280 6.7 0 0 4200 2000 9 999999999 30 0 0 88 0.2 0 0 +1.24128E7 41 10 16 98755 957 1331 450 691 761 143 84033 48807 17501 7233 300 6.2 0 0 4200 2000 9 999999999 25 0 0 88 0.2 0 0 +1.24164E7 41 11 17 98755 722 1331 451 471 611 140 55206 39087 16433 6323 300 5.1 0 0 4500 2000 9 999999999 27 0 0 88 0.2 0 0 +1.242E7 40 13 20 98747 453 1331 448 236 337 121 26349 18423 13587 4524 310 5.1 0 0 4500 2000 9 999999999 34 0 0 88 0.2 0 0 +1.24236E7 39 15 24 98739 168 1331 446 46 27 42 5040 0 4677 1406 300 4.1 0 0 4000 2000 9 999999999 41 0 0 88 0.2 0 0 +1.24272E7 38 16 27 98730 0 796 441 0 0 0 0 0 0 0 320 2.1 0 0 3500 2000 9 999999999 46 0 0 88 0.2 0 0 +1.24308E7 36 16 31 98714 0 0 430 0 0 0 0 0 0 0 260 2.6 0 0 2500 2000 9 999999999 46 0 0 88 0.2 0 0 +1.24344E7 35 17 34 98705 0 0 426 0 0 0 0 0 0 0 250 2.1 0 0 2500 2000 9 999999999 51 0 0 88 0.2 0 0 +1.2438E7 35 17 34 98705 0 0 426 0 0 0 0 0 0 0 240 1.5 0 0 2500 2000 9 999999999 51 0 0 88 0.2 0 0 +1.24416E7 34 18 39 98697 0 0 422 0 0 0 0 0 0 0 230 2.1 0 0 2500 2000 9 999999999 56 0 0 88 0.2 0 0 +1.24452E7 33 18 41 98689 0 0 416 0 0 0 0 0 0 0 240 2.1 0 0 2200 2000 9 999999999 56 0 0 88 0.2 0 0 +1.24488E7 33 19 44 98689 0 0 418 0 0 0 0 0 0 0 230 2.6 0 0 2800 2000 9 999999999 62 0 0 88 0.2 0 0 +1.24524E7 32 19 46 98680 0 0 412 0 0 0 0 0 0 0 230 1.5 0 0 2800 2000 9 999999999 62 0 0 88 0.2 0 0 +1.2456E7 32 18 43 98680 0 0 411 0 0 0 0 0 0 0 260 2.6 0 0 2800 2000 9 999999999 56 0 0 88 0.2 0 0 +1.24596E7 32 18 43 98680 0 0 411 0 0 0 0 0 0 0 230 2.1 0 0 3000 2000 9 999999999 56 0 0 88 0.2 0 0 +1.24632E7 32 18 43 98680 0 0 411 0 0 0 0 0 0 0 230 3.1 0 0 3000 2000 9 999999999 56 0 0 88 0.2 0 0 +1.24668E7 31 18 46 98672 282 1320 406 109 157 76 12004 3850 8369 2601 230 3.1 0 0 3000 2000 9 999999999 56 0 0 88 0.2 0 0 +1.24704E7 32 18 43 98680 563 1331 411 325 467 127 36969 25518 14563 5243 260 4.1 0 0 3000 2000 9 999999999 56 0 0 88 0.2 0 0 +1.2474E7 34 18 39 98697 820 1331 422 555 677 138 65918 39129 16419 6600 250 4.6 0 0 3000 2000 9 999999999 56 0 0 88 0.2 0 0 +1.24776E7 36 18 35 98714 1037 1331 433 757 812 124 93661 44599 15356 6492 250 6.2 0 0 3000 2000 9 999999999 56 0 0 88 0.2 0 0 +1.24812E7 38 16 27 98730 1199 1331 441 911 848 148 98067 88644 19111 5849 270 4.1 0 0 2800 2000 9 999999999 46 0 0 88 0.2 0 0 +1.24848E7 39 17 28 98739 1295 1331 448 1000 777 245 121902 50308 29986 12144 280 4.1 0 0 2800 2000 9 999999999 50 0 0 88 0.2 0 0 +1.24884E7 40 16 25 98747 1317 1331 453 1023 855 177 128230 50882 22240 9198 270 5.1 0 0 2800 2000 9 999999999 45 0 0 88 0.2 0 0 +1.2492E7 41 16 23 98755 1266 1331 459 974 775 237 118696 50770 29056 11793 290 5.1 0 0 3000 2000 9 999999999 45 0 0 88 0.2 0 0 +1.24956E7 41 16 23 98755 1143 1331 478 848 788 171 104135 47955 21090 8785 280 5.7 3 3 3000 2000 9 999999999 45 0 0 88 0.2 0 0 +1.24992E7 41 18 27 98755 958 1331 481 674 753 132 82115 42447 16107 6724 260 4.6 3 3 3500 2000 9 999999999 55 0 0 88 0.2 0 0 +1.25028E7 41 17 25 98755 723 1331 480 462 593 139 53917 35088 16327 6315 250 5.1 3 3 3500 2000 9 999999999 50 0 0 88 0.2 0 0 +1.25064E7 41 17 25 98755 455 1331 487 219 298 117 24503 15025 13185 4442 260 5.7 5 5 4000 2000 9 999999999 50 0 0 88 0.2 0 0 +1.251E7 40 16 25 98747 170 1331 480 43 11 42 4794 0 4659 1409 240 4.1 5 5 4000 2000 9 999999999 45 0 0 88 0.2 0 0 +1.25136E7 38 16 27 98730 0 808 460 0 0 0 0 0 0 0 280 3.1 3 3 3500 2000 9 999999999 46 0 0 88 0.2 0 0 +1.25172E7 37 17 31 98722 0 0 463 0 0 0 0 0 0 0 270 2.6 5 5 3500 2000 9 999999999 50 0 0 88 0.2 0 0 +1.25208E7 37 17 31 98722 0 0 463 0 0 0 0 0 0 0 290 2.1 5 5 3000 2000 9 999999999 50 0 0 88 0.2 0 0 +1.25244E7 33 22 53 98689 0 0 447 0 0 0 0 0 0 0 40 10.3 5 5 2100 2000 0 99999999 84 0 0 88 0.2 0 0 +1.2528E7 30 19 52 98663 0 0 425 0 0 0 0 0 0 0 90 5.1 5 5 2500 2000 0 99999999 62 0 0 88 0.2 0 0 +1.25316E7 29 19 55 98654 0 0 420 0 0 0 0 0 0 0 90 5.7 5 5 2500 2000 0 99999999 62 0 0 88 0.2 0 0 +1.25352E7 29 17 48 98654 0 0 417 0 0 0 0 0 0 0 80 3.1 5 5 2500 2000 0 99999999 51 0 0 88 0.2 0 0 +1.25388E7 29 17 48 98654 0 0 417 0 0 0 0 0 0 0 350 4.1 5 5 2800 2000 0 99999999 51 0 0 88 0.2 0 0 +1.25424E7 29 17 48 98654 0 0 417 0 0 0 0 0 0 0 210 2.1 5 5 3500 2000 0 99999999 51 0 0 88 0.2 0 0 +1.2546E7 29 17 48 98654 0 0 411 0 0 0 0 0 0 0 220 2.6 3 3 3500 2000 0 99999999 51 0 0 88 0.2 0 0 +1.25496E7 28 17 51 98646 0 0 405 0 0 0 0 0 0 0 70 1.5 3 3 3500 2000 9 999999999 51 0 0 88 0.2 0 0 +1.25532E7 28 17 51 98646 283 1328 405 108 150 76 11944 3897 8447 2622 70 2.6 3 3 3500 2000 9 999999999 51 0 0 88 0.2 0 0 +1.25568E7 30 18 49 98663 563 1331 400 325 466 128 37023 25528 14605 5259 110 3.1 0 0 3500 2000 9 999999999 56 0 0 88 0.2 0 0 +1.25604E7 32 18 43 98680 821 1331 411 555 676 138 65941 39111 16462 6617 120 3.1 0 0 3500 2000 9 999999999 56 0 0 88 0.2 0 0 +1.2564E7 34 18 39 98697 1038 1331 422 757 811 124 93648 44582 15412 6515 150 3.1 0 0 3500 2000 9 999999999 56 0 0 88 0.2 0 0 +1.25676E7 36 18 35 98714 1199 1331 433 908 771 213 110405 48059 26053 10694 270 2.1 0 0 3500 2000 9 999999999 56 0 0 88 0.2 0 0 +1.25712E7 37 19 35 98722 1295 1331 459 984 852 155 106876 90113 19574 10805 310 3.1 3 3 3500 2000 9 999999999 62 0 0 88 0.2 0 0 +1.25748E7 38 19 33 98730 1318 1331 465 1005 804 210 124105 47660 26011 10683 260 2.1 3 3 3500 2000 9 999999999 61 0 0 88 0.2 0 0 +1.25784E7 39 19 31 98739 1266 1331 478 903 618 315 107342 42897 37694 14800 350 2.1 5 5 4000 2000 9 999999999 61 0 0 88 0.2 0 0 +1.2582E7 34.5 20 43 98701 1144 1331 435 853 722 233 102024 45329 27970 11400 269 3.9 1 1 3250 2000 9 999999999 68 0 0 88 0.2 0 0 +1.25856E7 30 21 59 98663 959 1331 453 351 88 288 40128 6249 33118 12623 240 5.7 9 9 2500 1200 0 99999999 76 0 0 88 0.2 0 0 +1.25892E7 27 20 66 98637 725 1331 447 147 0 147 14839 0 14974 6597 230 7.7 10 10 2500 1200 0 19999999 69 0 0 88 0.2 0 0 +1.25928E7 31 16 40 98672 456 1331 465 75 0 75 7404 0 7464 3138 220 7.7 10 10 2500 1200 0 19999999 46 0 0 88 0.2 0 0 +1.25964E7 35 12 25 98705 173 1331 470 25 0 25 2401 0 2418 937 210 4.1 9 9 3000 1200 0 19999999 31 0 0 88 0.2 0 0 +1.26E7 31 14 36 98672 0 820 449 0 0 0 0 0 0 0 170 6.2 9 9 3000 1200 0 19999999 38 0 0 88 0.2 0 0 +1.26036E7 30 14 38 98663 0 0 443 0 0 0 0 0 0 0 150 5.1 9 9 3500 1200 0 19999999 38 0 0 88 0.2 0 0 +1.26072E7 32 13 31 98680 0 0 454 0 0 0 0 0 0 0 220 4.1 9 9 3500 1200 0 19999999 34 0 0 88 0.2 0 0 +1.26108E7 31 14 36 98672 0 0 449 0 0 0 0 0 0 0 189 0 9 9 3500 1200 0 19999999 38 0 0 88 0.2 0 0 +1.26144E7 31 15 38 98672 0 0 451 0 0 0 0 0 0 0 40 2.1 9 9 3500 1200 0 19999999 42 0 0 88 0.2 0 0 +1.2618E7 29 17 48 98654 0 0 442 0 0 0 0 0 0 0 80 1.5 9 9 3500 1200 0 19999999 51 0 0 88 0.2 0 0 +1.26216E7 28 18 55 98646 0 0 413 0 0 0 0 0 0 0 130 3.1 5 5 3500 2000 0 19999999 56 0 0 88 0.2 0 0 +1.26252E7 27 18 58 98637 0 0 407 0 0 0 0 0 0 0 90 2.6 5 5 3500 2000 0 19999999 57 0 0 88 0.2 0 0 +1.26288E7 27 18 58 98637 0 0 407 0 0 0 0 0 0 0 120 3.6 5 5 3500 2000 0 19999999 57 0 0 88 0.2 0 0 +1.26324E7 28 17 51 98646 0 0 436 0 0 0 0 0 0 0 330 3.6 9 9 3500 1200 0 19999999 51 0 0 88 0.2 0 0 +1.2636E7 27 18 58 98637 0 0 432 0 0 0 0 0 0 0 330 9.3 9 9 2200 1200 0 19999999 57 0 0 88 0.2 0 0 +1.26396E7 27 20 66 98637 285 1335 434 57 0 57 5528 0 5571 2123 300 4.1 9 9 2200 1200 0 19999999 69 0 0 88 0.2 0 0 +1.26432E7 25 20 74 98619 564 1330 423 168 29 155 18739 1676 17452 6062 140 4.1 9 9 2200 1200 0 19999999 69 0 0 88 0.2 0 0 +1.26468E7 26 21 74 98628 821 1330 430 285 28 268 32048 2026 30285 10969 250 2.6 9 9 2500 1200 0 19999999 76 0 0 88 0.2 0 0 +1.26504E7 29 20 58 98654 1038 1330 446 389 65 338 44518 4977 38945 14668 200 2.6 9 9 3000 1200 0 19999999 69 0 0 88 0.2 0 0 +1.2654E7 31 19 49 98672 1199 1330 456 468 68 407 54075 5433 47297 17476 20 6.2 9 9 3000 1200 0 19999999 62 0 0 88 0.2 0 0 +1.26576E7 31 20 52 98672 1295 1330 458 514 68 447 59604 5402 52299 19098 310 6.2 9 9 3000 1200 0 19999999 69 0 0 88 0.2 0 0 +1.26612E7 32 20 49 98680 1318 1330 464 525 89 436 61200 6927 51284 18911 70 5.1 9 9 3000 1200 0 19999999 69 0 0 88 0.2 0 0 +1.26648E7 33 20 46 98689 1266 1330 444 901 572 357 106042 41194 42260 16242 110 6.2 5 5 3000 1200 0 19999999 68 0 0 88 0.2 0 0 +1.26684E7 35 18 37 98705 1144 1330 453 797 636 250 95035 42468 29958 12084 340 2.6 5 5 3500 2000 0 19999999 56 0 0 88 0.2 0 0 +1.2672E7 35 17 34 98705 960 1330 444 677 744 139 82172 43334 16977 7065 340 2.6 3 3 3500 2000 0 19999999 51 0 0 88 0.2 0 0 +1.26756E7 36 15 29 98714 726 1330 447 465 607 134 54615 36482 15775 6127 300 2.1 3 3 3500 2000 0 19999999 41 0 0 88 0.2 0 0 +1.26792E7 35 15 30 98705 458 1330 442 236 320 125 26283 17415 14024 4664 310 2.6 3 3 3500 2000 0 19999999 41 0 0 88 0.2 0 0 +1.26828E7 34 16 34 98697 175 1330 444 45 13 44 4998 0 4820 1458 290 2.6 5 5 3500 2000 0 19999999 46 0 0 88 0.2 0 0 +1.26864E7 34 15 32 98697 0 832 443 0 0 0 0 0 0 0 300 3.1 5 5 3500 2000 0 19999999 41 0 0 88 0.2 0 0 +1.269E7 31 17 43 98672 0 0 428 0 0 0 0 0 0 0 270 3.6 5 5 3200 2000 0 19999999 51 0 0 88 0.2 0 0 +1.26936E7 30 20 55 98663 0 0 427 0 0 0 0 0 0 0 280 3.6 5 5 2700 2000 0 19999999 69 0 0 88 0.2 0 0 +1.26972E7 31 16 40 98672 0 0 427 0 0 0 0 0 0 0 310 4.6 5 5 2800 2000 0 19999999 46 0 0 88 0.2 0 0 +1.27008E7 31 15 38 98672 0 0 426 0 0 0 0 0 0 0 300 1.5 5 5 3000 2000 0 19999999 42 0 0 88 0.2 0 0 +1.27044E7 30 17 46 98663 0 0 423 0 0 0 0 0 0 0 280 2.1 5 5 3500 2000 0 19999999 51 0 0 88 0.2 0 0 +1.2708E7 30 16 43 98663 0 0 421 0 0 0 0 0 0 0 330 1.5 5 5 3200 2000 0 19999999 46 0 0 88 0.2 0 0 +1.27116E7 30 16 43 98663 0 0 421 0 0 0 0 0 0 0 350 2.1 5 5 3200 2000 0 19999999 46 0 0 88 0.2 0 0 +1.27152E7 28 17 51 98646 0 0 412 0 0 0 0 0 0 0 116 0 5 5 3200 2000 0 19999999 51 0 0 88 0.2 0 0 +1.27188E7 28 18 55 98646 0 0 413 0 0 0 0 0 0 0 168 0 5 5 3000 2000 0 19999999 56 0 0 88 0.2 0 0 +1.27224E7 27 18 58 98637 3 13 401 1 0 1 49 0 50 21 230 4.1 3 3 3000 2000 9 999999999 57 0 0 88 0.2 0 0 +1.2726E7 27 18 58 98637 286 1330 401 109 150 77 12037 3820 8520 2649 240 2.1 3 3 3000 2000 9 999999999 57 0 0 88 0.2 0 0 +1.27296E7 30 17 46 98663 565 1330 399 327 467 128 37219 26096 14642 5273 220 2.1 0 0 3000 2000 9 999999999 51 0 0 88 0.2 0 0 +1.27332E7 32 16 38 98680 821 1330 408 557 675 140 66239 40558 16747 6714 270 1.5 0 0 4000 2000 9 999999999 46 0 0 88 0.2 0 0 +1.27368E7 34 14 30 98697 1038 1330 434 752 754 163 91456 47405 19910 8288 290 2.6 3 3 4000 2000 9 999999999 37 0 0 88 0.2 0 0 +1.27404E7 34 15 32 98697 1199 1330 436 901 812 168 111708 49420 20970 8722 230 2.6 3 3 4000 2000 9 999999999 41 0 0 88 0.2 0 0 +1.2744E7 35 15 30 98705 1295 1330 442 990 819 192 123080 50767 24002 9885 230 3.1 3 3 4000 2000 9 999999999 41 0 0 88 0.2 0 0 +1.27476E7 37 15 27 98722 1318 1330 453 1012 819 200 125769 51078 24949 10246 250 4.1 3 3 4000 2000 9 999999999 41 0 0 88 0.2 0 0 +1.27512E7 37 15 27 98722 1267 1330 453 964 820 183 119829 50385 22872 9453 260 4.1 3 3 4000 2000 9 999999999 41 0 0 88 0.2 0 0 +1.27548E7 38 16 27 98730 1145 1330 460 849 786 172 104280 47908 21252 8848 300 5.7 3 3 4500 2000 9 999999999 46 0 0 88 0.2 0 0 +1.27584E7 37 16 29 98722 961 1330 455 678 737 145 82216 44155 17689 7339 280 5.1 3 3 5000 2000 9 999999999 46 0 0 88 0.2 0 0 +1.2762E7 37 16 29 98722 728 1330 455 465 604 135 54588 35890 15912 6183 280 5.1 3 3 5000 2000 9 999999999 46 0 0 88 0.2 0 0 +1.27656E7 37 17 31 98722 460 1330 456 236 350 115 26493 17528 12972 4412 280 5.1 3 3 5000 2000 9 999999999 50 0 0 88 0.2 0 0 +1.27692E7 36 18 35 98714 177 1330 452 49 35 44 5389 0 4888 1482 270 5.1 3 3 4000 2000 9 999999999 56 0 0 88 0.2 0 0 +1.27728E7 35 16 32 98705 0 843 443 0 0 0 0 0 0 0 280 4.1 3 3 3500 2000 9 999999999 46 0 0 88 0.2 0 0 +1.27764E7 34 17 36 98697 0 0 439 0 0 0 0 0 0 0 270 2.1 3 3 3500 2000 9 999999999 51 0 0 88 0.2 0 0 +1.278E7 34 17 36 98697 0 0 439 0 0 0 0 0 0 0 0 0 3 3 3200 2000 9 999999999 51 0 0 88 0.2 0 0 +1.27836E7 33 17 38 98689 0 0 433 0 0 0 0 0 0 0 67 0 3 3 3200 2000 9 999999999 51 0 0 88 0.2 0 0 +1.27872E7 32 18 43 98680 0 0 429 0 0 0 0 0 0 0 240 2.1 3 3 3200 2000 9 999999999 56 0 0 88 0.2 0 0 +1.27908E7 32 19 46 98680 0 0 430 0 0 0 0 0 0 0 250 1.5 3 3 3500 2000 9 999999999 62 0 0 88 0.2 0 0 +1.27944E7 31 20 52 98672 0 0 426 0 0 0 0 0 0 0 250 2.1 3 3 3500 2000 9 999999999 69 0 0 88 0.2 0 0 +1.2798E7 30 20 55 98663 0 0 420 0 0 0 0 0 0 0 230 1.5 3 3 3500 2000 9 999999999 69 0 0 88 0.2 0 0 +1.28016E7 29 20 58 98654 0 0 415 0 0 0 0 0 0 0 250 1.5 3 3 3500 2000 9 999999999 69 0 0 88 0.2 0 0 +1.28052E7 29 19 55 98654 0 0 413 0 0 0 0 0 0 0 240 1.5 3 3 3500 2000 9 999999999 62 0 0 88 0.2 0 0 +1.28088E7 29 19 55 98654 5 20 396 1 0 1 77 0 77 32 240 2.6 0 0 3500 2000 9 999999999 62 0 0 88 0.2 0 0 +1.28124E7 29 19 55 98654 287 1329 396 111 158 77 12220 3857 8518 2654 260 2.6 0 0 3500 2000 9 999999999 62 0 0 88 0.2 0 0 +1.2816E7 30 19 52 98663 565 1329 401 326 462 129 37040 24955 14753 5316 300 2.1 0 0 3500 2000 9 999999999 62 0 0 88 0.2 0 0 +1.28196E7 32 19 46 98680 822 1329 412 555 674 138 65853 38249 16442 6620 270 2.6 0 0 3500 2000 9 999999999 62 0 0 88 0.2 0 0 +1.28232E7 34 19 41 98697 1038 1329 423 755 816 119 82805 86001 16079 3161 260 2.1 0 0 3500 2000 9 999999999 62 0 0 88 0.2 0 0 +1.28268E7 36 17 33 98714 1199 1329 431 910 771 214 110621 48864 26215 10746 250 1.5 0 0 3500 2000 9 999999999 50 0 0 88 0.2 0 0 +1.28304E7 38 16 27 98730 1295 1329 441 1001 776 246 122144 51040 30165 12201 140 2.6 0 0 3500 2000 9 999999999 46 0 0 88 0.2 0 0 +1.2834E7 39 16 26 98739 1318 1329 466 1010 825 192 125863 50178 24057 9908 170 2.6 3 3 3600 2000 9 999999999 45 0 0 88 0.2 0 0 +1.28376E7 40 16 25 98747 1267 1329 472 963 826 175 119995 49478 21950 9098 270 2.1 3 3 4500 2000 9 999999999 45 0 0 88 0.2 0 0 +1.28412E7 40 15 23 98747 1146 1329 471 851 805 157 105327 48553 19506 8154 280 3.6 3 3 4500 2000 9 999999999 41 0 0 88 0.2 0 0 +1.28448E7 40 16 25 98747 962 1329 472 679 737 146 82323 44161 17722 7354 290 2.6 3 3 4500 2000 9 999999999 45 0 0 88 0.2 0 0 +1.28484E7 41 15 22 98755 729 1329 477 467 607 134 54889 36556 15847 6160 280 4.1 3 3 4500 2000 9 999999999 41 0 0 88 0.2 0 0 +1.2852E7 40 15 23 98747 462 1329 471 238 322 126 26574 17621 14150 4714 270 4.6 3 3 4500 2000 9 999999999 41 0 0 88 0.2 0 0 +1.28556E7 39 13 21 98739 179 1329 462 50 33 46 5538 0 5067 1524 300 3.1 3 3 4500 2000 9 999999999 34 0 0 88 0.2 0 0 +1.28592E7 38 13 23 98730 0 855 437 0 0 0 0 0 0 0 260 1.5 0 0 4500 2000 9 999999999 34 0 0 88 0.2 0 0 +1.28628E7 37 14 25 98722 0 0 452 0 0 0 0 0 0 0 92 0 3 3 3500 2000 9 999999999 37 0 0 88 0.2 0 0 +1.28664E7 32 16 38 98679 0 0 408 0 0 0 0 0 0 0 57 2.5 0 0 3500 2000 9 999999999 46 0 0 88 0.2 0 0 +1.287E7 27 18 58 98637 0 0 432 0 0 0 0 0 0 0 50 5.1 9 9 3500 1200 9 999999999 57 0 0 88 0.2 0 0 +1.28736E7 26 18 61 98628 0 0 426 0 0 0 0 0 0 0 60 5.1 9 9 4000 1200 0 99999999 57 0 0 88 0.2 0 0 +1.28772E7 26 18 61 98628 0 0 402 0 0 0 0 0 0 0 130 4.1 5 5 4000 2000 0 99999999 57 0 0 88 0.2 0 0 +1.28808E7 27 17 54 98637 0 0 406 0 0 0 0 0 0 0 140 4.1 5 5 4000 2000 0 99999999 51 0 0 88 0.2 0 0 +1.28844E7 27 17 54 98637 0 0 430 0 0 0 0 0 0 0 150 4.1 9 9 4000 2000 0 99999999 51 0 0 88 0.2 0 0 +1.2888E7 27 18 58 98637 0 0 432 0 0 0 0 0 0 0 130 3.1 9 9 4000 3000 0 99999999 57 0 0 88 0.2 0 0 +1.28916E7 27 18 58 98637 0 0 432 0 0 0 0 0 0 0 120 3.1 9 9 4000 3000 0 99999999 57 0 0 88 0.2 0 0 +1.28952E7 27 18 58 98637 5 26 407 1 0 1 95 0 95 39 150 2.1 5 5 4500 3000 9 999999999 57 0 0 88 0.2 0 0 +1.28988E7 27 18 58 98637 287 1329 401 110 150 78 12131 3890 8585 2671 180 1.5 3 3 4500 2000 9 999999999 57 0 0 88 0.2 0 0 +1.29024E7 28 18 55 98646 566 1329 407 322 445 133 36603 24830 15155 5432 110 2.1 3 3 4500 2000 9 999999999 56 0 0 88 0.2 0 0 +1.2906E7 30 18 49 98663 822 1329 418 548 647 148 64811 38326 17602 7037 150 2.1 3 3 4500 2000 9 999999999 56 0 0 88 0.2 0 0 +1.29096E7 33 20 46 98689 1038 1329 437 744 775 139 91196 42125 17135 7227 170 4.1 3 3 4000 2000 9 999999999 68 0 0 88 0.2 0 0 +1.29132E7 34 20 44 98697 1199 1329 443 893 843 133 97962 89430 17363 5576 170 4.1 3 3 3200 2000 9 999999999 68 0 0 88 0.2 0 0 +1.29168E7 36 19 37 98714 1295 1329 453 984 850 155 106826 89875 19669 11010 160 2.1 3 3 3200 2000 9 999999999 62 0 0 88 0.2 0 0 +1.29204E7 37 19 35 98722 1318 1329 459 1005 849 164 126426 46955 20689 8602 150 2.6 3 3 3200 2000 9 999999999 62 0 0 88 0.2 0 0 +1.2924E7 38 18 31 98730 1267 1329 444 972 774 234 118425 48937 28679 11673 260 2.1 0 0 3200 2000 9 999999999 56 0 0 88 0.2 0 0 +1.29276E7 41 18 27 98755 1146 1329 462 858 767 197 104223 47119 24061 9942 60 4.1 0 0 3500 2000 9 999999999 55 0 0 88 0.2 0 0 +1.29312E7 41 18 27 98755 963 1329 489 639 606 200 75493 38998 23691 9586 70 1.5 5 5 3500 2000 9 999999999 55 0 0 88 0.2 0 0 +1.29348E7 41 18 27 98755 730 1329 489 439 508 160 50796 31202 18592 7097 80 3.6 5 5 3500 2000 9 999999999 55 0 0 88 0.2 0 0 +1.29384E7 40 18 28 98747 464 1329 483 225 286 125 25035 14760 13975 4688 60 5.1 5 5 3500 2000 9 999999999 55 0 0 88 0.2 0 0 +1.2942E7 39 19 31 98739 182 1329 478 48 21 45 5275 0 4974 1515 80 4.1 5 5 3500 2000 9 999999999 61 0 0 88 0.2 0 0 +1.29456E7 37 21 40 98722 0 866 469 0 0 0 0 0 0 0 80 4.1 5 5 3500 2000 9 999999999 75 0 0 88 0.2 0 0 +1.29492E7 35 22 47 98705 0 0 451 0 0 0 0 0 0 0 80 5.7 3 3 3500 2000 9 999999999 83 0 0 88 0.2 0 0 +1.29528E7 33 23 56 98689 0 0 448 0 0 0 0 0 0 0 90 6.2 5 5 3000 2000 9 999999999 92 0 0 88 0.2 0 0 +1.29564E7 32 23 59 98680 0 0 442 0 0 0 0 0 0 0 100 5.7 5 5 3000 2000 9 999999999 93 0 0 88 0.2 0 0 +1.296E7 32 22 56 98680 0 0 441 0 0 0 0 0 0 0 120 4.1 5 5 3000 2000 9 999999999 84 0 0 88 0.2 0 0 +1.29636E7 31 22 59 98672 0 0 435 0 0 0 0 0 0 0 100 4.1 5 5 3000 2000 0 99999999 84 0 0 88 0.2 0 0 +1.29672E7 30 22 62 98663 0 0 429 0 0 0 0 0 0 0 110 3.6 5 5 3000 2000 0 99999999 84 0 0 88 0.2 0 0 +1.29708E7 30 23 66 98663 0 0 431 0 0 0 0 0 0 0 130 4.6 5 5 3000 2000 0 99999999 93 0 0 88 0.2 0 0 +1.29744E7 29 22 66 98654 0 0 424 0 0 0 0 0 0 0 110 4.1 5 5 3000 2000 0 99999999 84 0 0 88 0.2 0 0 +1.2978E7 28 22 70 98646 0 0 418 0 0 0 0 0 0 0 120 5.1 5 5 3000 2000 0 99999999 84 0 0 88 0.2 0 0 +1.29816E7 28 21 66 98646 6 32 410 1 0 1 122 0 123 51 130 4.1 3 3 3000 2000 9 999999999 76 0 0 88 0.2 0 0 +1.29852E7 28 21 66 98646 288 1328 410 110 148 78 12078 3342 8595 2683 120 5.1 3 3 3000 2000 9 999999999 76 0 0 88 0.2 0 0 +1.29888E7 29 21 62 98654 566 1328 399 325 456 131 36855 23672 14890 5371 120 4.1 0 0 3000 2000 9 999999999 76 0 0 88 0.2 0 0 +1.29924E7 31 20 52 98672 822 1328 408 554 669 140 65621 37348 16624 6694 130 5.1 0 0 3000 2000 9 999999999 69 0 0 88 0.2 0 0 +1.2996E7 33 21 49 98689 1038 1328 420 753 805 124 92933 41404 15345 6506 130 5.1 0 0 3000 2000 9 999999999 76 0 0 88 0.2 0 0 +1.29996E7 35 20 42 98705 1199 1328 430 905 770 210 109934 45995 25625 10552 140 5.1 0 0 3000 2000 9 999999999 68 0 0 88 0.2 0 0 +1.30032E7 37 20 37 98722 1294 1328 441 995 823 192 123162 46860 23932 9896 140 4.1 0 0 3000 2000 9 999999999 68 0 0 88 0.2 0 0 +1.30068E7 38 20 35 98730 1318 1328 474 946 625 326 112925 42626 39151 15343 170 4.1 5 5 3000 2000 9 999999999 68 0 0 88 0.2 0 0 +1.30104E7 40 21 34 98747 1267 1328 487 901 663 268 108284 41631 32418 13046 190 4.1 5 5 3000 2000 9 999999999 75 0 0 88 0.2 0 0 +1.3014E7 40 19 30 98747 1147 1328 484 798 666 223 95916 41918 26925 11014 250 4.1 5 5 3000 2000 9 999999999 61 0 0 88 0.2 0 0 +1.30176E7 41 18 27 98755 964 1328 489 640 547 243 74433 37947 28440 11196 270 4.1 5 5 3000 2000 9 999999999 55 0 0 88 0.2 0 0 +1.30212E7 41 17 25 98755 732 1328 516 245 53 216 27652 3745 24499 8844 290 4.1 9 9 2200 3000 9 999999999 50 0 0 88 0.2 0 0 +1.30248E7 41 16 23 98755 466 1328 486 226 231 145 24983 13568 16106 5187 300 5.1 5 5 2200 2000 9 999999999 45 0 0 88 0.2 0 0 +1.30284E7 34.2 22 49 98699 184 1328 475 49 22 46 5349 0 5032 1536 72 6.7 5 5 2200 2000 9 999999999 83 0 0 88 0.2 0 0 +1.3032E7 32.5 22.2 55 98685 0 878 452 0 0 0 0 0 0 0 82 6.9 5 5 2500 2000 9 999999999 85 0 0 88 0.2 0 0 +1.30356E7 31.8 22 56 98678 0 0 447 0 0 0 0 0 0 0 87 6.8 5 5 2500 2000 9 999999999 84 0 0 88 0.2 0 0 +1.30392E7 31.8 20 50 98678 0 0 442 0 0 0 0 0 0 0 139 4.9 5 5 2500 2000 9 999999999 69 0 0 88 0.2 0 0 +1.30428E7 31.8 17.2 42 98678 0 0 435 0 0 0 0 0 0 0 174 3.6 5 5 2500 2000 9 999999999 52 0 0 88 0.2 0 0 +1.30464E7 32 14.5 35 98680 0 0 434 0 0 0 0 0 0 0 224 2.6 5 5 3500 2000 9 999999999 40 0 0 88 0.2 0 0 +1.305E7 32.2 12 29 98682 0 0 411 0 0 0 0 0 0 0 205 0.9 0 0 1700 2000 9 999999999 31 0 0 88 0.2 0 0 +1.30536E7 32 11.2 28 98680 0 0 403 0 0 0 0 0 0 0 198 1.7 0 0 2500 2000 9 999999999 28 0 0 88 0.2 0 0 +1.30572E7 31.8 11.2 28 98678 0 0 402 0 0 0 0 0 0 0 216 1.9 0 0 2700 2000 9 999999999 28 0 0 88 0.2 0 0 +1.30608E7 32 12 29 98680 0 0 402 0 0 0 0 0 0 0 216 2.3 0 0 2700 2000 9 999999999 31 0 0 88 0.2 0 0 +1.30644E7 32.5 12.5 30 98685 0 0 402 0 0 0 0 0 0 0 290 3.6 0 0 2700 2000 9 999999999 32 0 0 88 0.2 0 0 +1.3068E7 33.5 13 29 98693 7 37 398 2 0 2 146 0 147 60 310 4.2 0 0 2500 2000 9 999999999 34 0 0 88 0.2 0 0 +1.30716E7 33 14 32 98689 289 1328 411 113 152 80 12467 4651 8852 2730 300 3.6 0 0 2500 2000 9 999999999 38 0 0 88 0.2 0 0 +1.30752E7 34 13 28 98697 567 1328 415 330 432 145 37327 27096 16521 5804 320 5.1 0 0 2500 2000 9 999999999 34 0 0 88 0.2 0 0 +1.30788E7 36 13 25 98714 822 1328 426 560 670 145 66564 42368 17360 6928 330 5.7 0 0 3000 2000 9 999999999 34 0 0 88 0.2 0 0 +1.30824E7 38 13 23 98730 1038 1328 437 762 782 152 93341 48737 18646 7790 340 4.1 0 0 3000 2000 9 999999999 34 0 0 88 0.2 0 0 +1.3086E7 39 13 21 98739 1199 1328 443 915 836 160 114043 51542 20064 8353 320 5.1 0 0 3500 2000 9 999999999 34 0 0 88 0.2 0 0 +1.30896E7 41 13 19 98755 1294 1328 454 1006 850 177 125960 52885 22333 9223 330 5.7 0 0 4000 2000 9 999999999 34 0 0 88 0.2 0 0 +1.30932E7 43 13 17 98771 1318 1328 466 1028 850 184 128784 53214 23211 9561 300 5.1 0 0 4500 2000 9 999999999 33 0 0 88 0.2 0 0 +1.30968E7 44 13 16 98779 1268 1328 472 981 849 170 122792 52512 21355 8846 300 7.7 0 0 5000 2000 9 999999999 33 0 0 88 0.2 0 0 +1.31004E7 44 14 18 98779 1147 1328 473 865 824 153 107392 50016 19051 7967 300 7.7 0 0 6000 2000 9 999999999 37 0 0 88 0.2 0 0 +1.3104E7 44 13 16 98779 965 1328 472 694 758 143 84424 47013 17499 7259 270 7.2 0 0 6000 2000 9 999999999 33 0 0 88 0.2 0 0 +1.31076E7 43 14 18 98771 733 1328 488 471 548 169 54477 36386 19583 7405 270 4.1 3 3 6000 2000 9 999999999 37 0 0 88 0.2 0 0 +1.31112E7 43 14 18 98771 467 1328 495 229 268 134 25428 15436 15019 4948 280 3.6 5 5 5000 2000 9 999999999 37 0 0 88 0.2 0 0 +1.31148E7 41 14 21 98755 186 1328 483 50 22 47 5527 16 5204 1574 350 2.1 5 5 5000 2000 9 999999999 37 0 0 88 0.2 0 0 +1.31184E7 39 14 23 98739 0 889 444 0 0 0 0 0 0 0 55 0 0 0 5000 2000 9 999999999 37 0 0 88 0.2 0 0 +1.3122E7 38 14 24 98730 0 0 439 0 0 0 0 0 0 0 284 0 0 0 4000 2000 9 999999999 37 0 0 88 0.2 0 0 +1.31256E7 37 14 25 98722 0 0 433 0 0 0 0 0 0 0 350 1.5 0 0 4000 2000 9 999999999 37 0 0 88 0.2 0 0 +1.31292E7 36 15 29 98714 0 0 429 0 0 0 0 0 0 0 290 2.1 0 0 4000 2000 9 999999999 41 0 0 88 0.2 0 0 +1.31328E7 35 15 30 98705 0 0 423 0 0 0 0 0 0 0 290 2.1 0 0 4000 2000 9 999999999 41 0 0 88 0.2 0 0 +1.31364E7 34 15 32 98697 0 0 418 0 0 0 0 0 0 0 280 1.5 0 0 4000 2000 9 999999999 41 0 0 88 0.2 0 0 +1.314E7 33 15 34 98689 0 0 412 0 0 0 0 0 0 0 280 2.1 0 0 4500 2000 9 999999999 42 0 0 88 0.2 0 0 +1.31436E7 32 15 36 98680 0 0 407 0 0 0 0 0 0 0 250 2.6 0 0 3500 2000 9 999999999 42 0 0 88 0.2 0 0 +1.31472E7 30 16 43 98663 0 0 398 0 0 0 0 0 0 0 230 1 0 0 2200 2000 9 999999999 46 0 0 88 0.2 0 0 +1.31508E7 30 16 43 98663 0 0 398 0 0 0 0 0 0 0 310 0 0 0 1800 2000 9 999999999 46 0 0 88 0.2 0 0 +1.31544E7 30 16 43 98663 8 42 415 2 0 2 162 0 163 66 230 1.5 3 3 2000 2000 9 999999999 46 0 0 88 0.2 0 0 +1.3158E7 31.5 16.5 41 98676 289 1328 414 113 150 80 12419 4279 8863 2739 308 2 1 1 2250 2000 9 999999999 48 0 0 88 0.2 0 0 +1.31616E7 33 17 38 98689 567 1328 415 328 465 129 37337 26076 14775 5323 270 2.6 0 0 2500 2000 9 999999999 51 0 0 88 0.2 0 0 +1.31652E7 35 17 34 98705 822 1328 426 557 672 141 66110 39748 16767 6732 290 3.1 0 0 3000 2000 9 999999999 51 0 0 88 0.2 0 0 +1.31688E7 39 16 26 98739 1038 1328 447 759 793 138 93322 46392 17108 7193 300 4.6 0 0 4000 2000 9 999999999 45 0 0 88 0.2 0 0 +1.31724E7 40 15 23 98747 1199 1328 451 912 837 156 113728 49966 19585 8172 290 5.1 0 0 4500 2000 9 999999999 41 0 0 88 0.2 0 0 +1.3176E7 42 13 18 98763 1294 1328 460 1006 849 178 125941 52865 22346 9229 290 7.2 0 0 5000 2000 9 999999999 34 0 0 88 0.2 0 0 +1.31796E7 42 14 19 98763 1318 1328 462 1027 844 189 128271 52496 23742 9773 310 4.6 0 0 5000 2000 9 999999999 37 0 0 88 0.2 0 0 +1.31832E7 43 13 17 98771 1268 1328 466 981 849 170 122802 52494 21394 8861 290 5.7 0 0 6000 2000 9 999999999 33 0 0 88 0.2 0 0 +1.31868E7 43 13 17 98771 1148 1328 486 856 775 185 104794 50114 22802 9430 300 5.1 3 3 6000 2000 9 999999999 33 0 0 88 0.2 0 0 +1.31904E7 43 11 15 98771 966 1328 483 688 698 180 82358 47265 21629 8813 300 5.1 3 3 6000 2000 9 999999999 27 0 0 88 0.2 0 0 +1.3194E7 43 11 15 98771 734 1328 490 447 497 173 51721 34314 20046 7545 310 5.1 5 5 6000 2000 9 999999999 27 0 0 88 0.2 0 0 +1.31976E7 42 11 16 98763 469 1328 477 245 332 127 27409 19314 14338 4786 320 3.6 3 3 6000 6000 9 999999999 27 0 0 88 0.2 0 0 +1.32012E7 38 14 24 98730 188 1328 439 55 43 49 6031 89 5383 1620 240 10.1 0 0 3175 6000 9 999999999 37 0 0 88 0.2 0 0 +1.32048E7 34 17 36 98697 0 899 420 0 0 0 0 0 0 0 280 16.5 0 0 350 15 9 999999999 51 0 0 88 0.2 0 0 +1.32084E7 33 17 38 98689 0 0 466 0 0 0 0 0 0 0 270 10.3 9 9 2000 3000 9 999999999 51 0 0 88 0.2 0 0 +1.3212E7 34 15 32 98697 0 0 469 0 0 0 0 0 0 0 280 6.2 9 9 2000 3000 9 999999999 41 0 0 88 0.2 0 0 +1.32156E7 35 14 28 98705 0 0 473 0 0 0 0 0 0 0 210 4.1 9 9 2000 3000 9 999999999 37 0 0 88 0.2 0 0 +1.32192E7 33 15 34 98689 0 0 463 0 0 0 0 0 0 0 270 6.2 9 9 2000 3000 9 999999999 42 0 0 88 0.2 0 0 +1.32228E7 32 16 38 98680 0 0 458 0 0 0 0 0 0 0 290 5.1 9 9 2500 3000 9 999999999 46 0 0 88 0.2 0 0 +1.32264E7 30 17 46 98663 0 0 423 0 0 0 0 0 0 0 300 5.1 5 5 2500 2000 9 999999999 51 0 0 88 0.2 0 0 +1.323E7 30 17 46 98663 0 0 423 0 0 0 0 0 0 0 280 6.7 5 5 2500 2000 9 999999999 51 0 0 88 0.2 0 0 +1.32336E7 30 18 49 98663 0 0 424 0 0 0 0 0 0 0 310 2.6 5 5 2500 2000 9 999999999 56 0 0 88 0.2 0 0 +1.32372E7 30 17 46 98663 0 0 423 0 0 0 0 0 0 0 321 0 5 5 2500 2000 9 999999999 51 0 0 88 0.2 0 0 +1.32408E7 31 17 43 98672 9 47 428 2 0 2 167 0 168 68 327 0 5 5 2500 2000 9 999999999 51 0 0 88 0.2 0 0 +1.32444E7 31 18 46 98672 290 1327 430 105 117 79 11548 3141 8770 2723 350 3.1 5 5 2500 2000 9 999999999 56 0 0 88 0.2 0 0 +1.3248E7 32 18 43 98680 567 1327 435 304 364 149 34264 21497 16805 5902 340 2.6 5 5 2500 2000 9 999999999 56 0 0 88 0.2 0 0 +1.32516E7 33 18 41 98689 822 1327 434 548 605 173 64024 37947 20320 7990 350 4.6 3 3 2500 2000 9 999999999 56 0 0 88 0.2 0 0 +1.32552E7 35 17 34 98705 1037 1327 426 757 799 133 93357 45439 16409 6917 320 3.1 0 0 3500 2000 9 999999999 51 0 0 88 0.2 0 0 +1.32588E7 37 16 29 98722 1198 1327 436 910 843 149 113828 49000 18703 7824 320 5.1 0 0 3500 2000 9 999999999 46 0 0 88 0.2 0 0 +1.32624E7 38 16 27 98730 1294 1327 441 1001 851 171 125426 50377 21508 8915 290 5.7 0 0 4500 2000 9 999999999 46 0 0 88 0.2 0 0 +1.3266E7 39 16 26 98739 1318 1327 447 1023 851 178 128229 50717 22464 9285 270 3.6 0 0 6000 2000 9 999999999 45 0 0 88 0.2 0 0 +1.32696E7 40 15 23 98747 1268 1327 451 978 846 170 122297 50938 21343 8851 280 3.1 0 0 8000 2000 9 999999999 41 0 0 88 0.2 0 0 +1.32732E7 41 14 21 98755 1148 1327 456 866 823 153 107481 49985 19127 7997 310 6.2 0 0 8000 2000 9 999999999 37 0 0 88 0.2 0 0 +1.32768E7 41 14 21 98755 967 1327 456 694 757 143 84446 46330 17468 7254 320 4.6 0 0 8000 2000 9 999999999 37 0 0 88 0.2 0 0 +1.32804E7 41 14 21 98755 736 1327 456 479 617 138 56338 37958 16234 6311 300 6.2 0 0 8000 2000 9 999999999 37 0 0 88 0.2 0 0 +1.3284E7 40 14 22 98747 471 1327 450 248 341 127 27739 19112 14247 4779 280 6.2 0 0 6000 2000 9 999999999 37 0 0 88 0.2 0 0 +1.32876E7 39 14 23 98739 190 1327 444 56 44 49 6133 125 5455 1642 280 6.2 0 0 6000 2000 9 999999999 37 0 0 88 0.2 0 0 +1.32912E7 38 15 26 98730 0 910 440 0 0 0 0 0 0 0 300 2.6 0 0 5000 2000 9 999999999 41 0 0 88 0.2 0 0 +1.32948E7 36 15 29 98714 0 0 429 0 0 0 0 0 0 0 280 3.1 0 0 4000 2000 9 999999999 41 0 0 88 0.2 0 0 +1.32984E7 35 15 30 98705 0 0 423 0 0 0 0 0 0 0 280 2.1 0 0 4000 2000 9 999999999 41 0 0 88 0.2 0 0 +1.3302E7 35 16 32 98705 0 0 425 0 0 0 0 0 0 0 300 1.5 0 0 3500 2000 9 999999999 46 0 0 88 0.2 0 0 +1.33056E7 34 17 36 98697 0 0 420 0 0 0 0 0 0 0 217 0 0 0 2500 2000 9 999999999 51 0 0 88 0.2 0 0 +1.33092E7 33 18 41 98689 0 0 416 0 0 0 0 0 0 0 13 0 0 0 2500 2000 9 999999999 56 0 0 88 0.2 0 0 +1.33128E7 31 18 46 98672 0 0 406 0 0 0 0 0 0 0 196 0 0 0 2800 2000 9 999999999 56 0 0 88 0.2 0 0 +1.33164E7 30 17 46 98663 0 0 399 0 0 0 0 0 0 0 136 0 0 0 2800 2000 9 999999999 51 0 0 88 0.2 0 0 +1.332E7 30 17 46 98663 0 0 399 0 0 0 0 0 0 0 253 0 0 0 2800 2000 9 999999999 51 0 0 88 0.2 0 0 +1.33236E7 29 18 52 98654 0 0 395 0 0 0 0 0 0 0 329 0 0 0 2800 2000 9 999999999 56 0 0 88 0.2 0 0 +1.33272E7 29 18 52 98654 10 50 395 2 0 2 194 0 195 79 168 0 0 0 2800 2000 9 999999999 56 0 0 88 0.2 0 0 +1.33308E7 31 18 46 98672 290 1327 406 113 158 78 12435 4183 8662 2701 240 1.5 0 0 2800 2000 9 999999999 56 0 0 88 0.2 0 0 +1.33344E7 34 18 39 98697 567 1327 422 327 460 130 37208 25461 14867 5356 270 2.6 0 0 4000 2000 9 999999999 56 0 0 88 0.2 0 0 +1.3338E7 35 18 37 98705 822 1327 427 555 670 140 65906 38928 16712 6717 240 3.1 0 0 4500 2000 9 999999999 56 0 0 88 0.2 0 0 +1.33416E7 38 18 31 98730 1037 1327 444 756 805 126 93433 44428 15688 6629 230 3.1 0 0 5000 2000 9 999999999 56 0 0 88 0.2 0 0 +1.33452E7 39 17 28 98739 1198 1327 448 909 769 214 110522 48724 26154 10723 260 4.1 0 0 6000 2000 9 999999999 50 0 0 88 0.2 0 0 +1.33488E7 40 16 25 98747 1294 1327 453 1001 851 171 125411 50362 21513 8917 270 4.1 0 0 6000 2000 9 999999999 45 0 0 88 0.2 0 0 +1.33524E7 41 15 22 98755 1318 1327 457 1025 845 185 128177 51624 23278 9598 300 4.1 0 0 6000 2000 9 999999999 41 0 0 88 0.2 0 0 +1.3356E7 41.5 14 20 98759 1268 1327 459 980 842 175 122353 51765 21921 9074 165 3.8 0 0 6000 2000 9 999999999 37 0 0 88 0.2 0 0 +1.33596E7 42 13 18 98763 1149 1327 480 856 774 186 104889 50083 22890 9464 330 3.6 3 3 6000 2000 9 999999999 34 0 0 88 0.2 0 0 +1.33632E7 43 11 15 98771 968 1327 483 689 726 160 83301 47412 19405 7989 290 3.6 3 3 6000 2000 9 999999999 27 0 0 88 0.2 0 0 +1.33668E7 40 15 23 98747 737 1327 471 474 545 171 54676 35881 19817 7501 240 7.7 3 3 4000 2000 9 999999999 41 0 0 88 0.2 0 0 +1.33704E7 40 14 22 98747 472 1327 477 232 269 136 25794 15647 15218 5023 190 2.6 5 5 4000 2000 9 999999999 37 0 0 88 0.2 0 0 +1.3374E7 36 15 29 98714 192 1327 454 53 25 49 5799 54 5414 1640 350 2.6 5 5 2500 2000 9 999999999 41 0 0 88 0.2 0 0 +1.33776E7 36 15 29 98714 0 920 454 0 0 0 0 0 0 0 275 0 5 5 2800 2000 9 999999999 41 0 0 88 0.2 0 0 +1.33812E7 36 15 29 98714 0 0 454 0 0 0 0 0 0 0 202 0 5 5 2000 2000 9 999999999 41 0 0 88 0.2 0 0 +1.33848E7 35 16 32 98705 0 0 476 0 0 0 0 0 0 0 290 5.1 9 9 2500 3000 9 999999999 46 0 0 88 0.2 0 0 +1.33884E7 33 16 36 98689 0 0 464 0 0 0 0 0 0 0 320 5.1 9 9 2500 3000 9 999999999 46 0 0 88 0.2 0 0 +1.3392E7 34 15 32 98697 0 0 469 0 0 0 0 0 0 0 50 2.6 9 9 2500 3000 9 999999999 41 0 0 88 0.2 0 0 +1.33956E7 33 15 34 98689 0 0 463 0 0 0 0 0 0 0 134 0 9 9 2500 3000 9 999999999 42 0 0 88 0.2 0 0 +1.33992E7 34 14 30 98697 0 0 467 0 0 0 0 0 0 0 270 2.6 9 9 2500 3000 9 999999999 37 0 0 88 0.2 0 0 +1.34028E7 33 15 34 98689 0 0 463 0 0 0 0 0 0 0 250 3.1 9 9 2500 3000 9 999999999 42 0 0 88 0.2 0 0 +1.34064E7 32 17 41 98680 0 0 473 0 0 0 0 0 0 0 270 15.4 10 10 1500 3000 0 19999999 51 0 0 88 0.2 0 0 +1.341E7 29 21 62 98654 0 0 422 0 0 0 0 0 0 0 321 0 5 5 3000 2000 0 19999999 76 0 0 88 0.2 0 0 +1.34136E7 29 22 66 98654 11 54 424 2 0 2 190 0 191 78 270 2.1 5 5 3000 2000 0 919999999 84 0 0 88 0.2 0 0 +1.34172E7 29 22 66 98654 291 1326 424 105 118 79 11457 2573 8665 2712 120 3.6 5 5 2500 2000 0 919999999 84 0 0 88 0.2 0 0 +1.34208E7 31 22 59 98672 567 1326 428 320 431 136 36182 22286 15420 5537 270 2.6 3 3 2000 2000 0 919999999 84 0 0 88 0.2 0 0 +1.34244E7 33 21 49 98689 822 1326 445 514 559 168 59973 32644 19649 7782 280 2.1 5 5 1800 2000 0 919999999 76 0 0 88 0.2 0 0 +1.3428E7 36 19 37 98714 1037 1326 460 702 612 224 83017 39602 26590 10797 165 0 5 5 1800 2000 0 919999999 62 0 0 88 0.2 0 0 +1.34316E7 37 20 37 98722 1198 1326 441 904 774 205 109998 45852 25069 10342 222 0 0 0 2000 2000 0 919999999 68 0 0 88 0.2 0 0 +1.34352E7 39 19 31 98739 1294 1326 451 996 774 241 121353 48221 29500 11986 260 1.5 0 0 2000 2000 0 919999999 61 0 0 88 0.2 0 0 +1.34388E7 39 19 31 98739 1318 1326 451 1018 775 248 124227 48523 30449 12336 250 3.1 0 0 3000 2000 0 919999999 61 0 0 88 0.2 0 0 +1.34424E7 41 21 32 98755 1269 1326 466 969 820 185 119830 45321 22976 9538 270 2.6 0 0 4000 2000 0 919999999 75 0 0 88 0.2 0 0 +1.3446E7 35 18 37 98705 1150 1326 453 801 595 285 94644 41734 33901 13425 180 7.2 5 5 3000 2000 0 919999999 56 0 0 88 0.2 0 0 +1.34496E7 38 16 27 98730 969 1326 468 645 577 224 75762 39818 26414 10534 180 5.1 5 5 3500 2000 0 919999999 46 0 0 88 0.2 0 0 +1.34532E7 37 14 25 98722 738 1326 459 448 486 178 51615 32880 20554 7732 160 6.7 5 5 4000 2000 0 919999999 37 0 0 88 0.2 0 0 +1.34568E7 36 14 27 98714 474 1326 446 247 328 130 27602 18620 14560 4873 180 7.2 3 3 4500 2000 0 919999999 37 0 0 88 0.2 0 0 +1.34604E7 35 15 30 98705 194 1326 423 57 46 51 6318 160 5590 1685 107 5.1 0 0 4000 2000 9 999999999 41 0 0 88 0.2 0 0 +1.3464E7 34 16 34 98697 0 930 444 0 0 0 0 0 0 0 240 3.1 5 5 3500 2000 0 919999999 46 0 0 88 0.2 0 0 +1.34676E7 34 16 34 98697 0 0 444 0 0 0 0 0 0 0 220 1.5 5 5 3500 2000 0 919999999 46 0 0 88 0.2 0 0 +1.34712E7 32 17 41 98680 0 0 434 0 0 0 0 0 0 0 190 1.5 5 5 3500 2000 0 919999999 51 0 0 88 0.2 0 0 +1.34748E7 31 17 43 98672 0 0 422 0 0 0 0 0 0 0 210 1.5 3 3 3500 2000 0 919999999 51 0 0 88 0.2 0 0 +1.34784E7 31 17 43 98672 0 0 422 0 0 0 0 0 0 0 250 1.5 3 3 3500 2000 0 919999999 51 0 0 88 0.2 0 0 +1.3482E7 30 17 46 98663 0 0 423 0 0 0 0 0 0 0 260 3.1 5 5 3500 2000 0 919999999 51 0 0 88 0.2 0 0 +1.34856E7 29 17 48 98654 0 0 417 0 0 0 0 0 0 0 260 2.6 5 5 4000 2000 0 919999999 51 0 0 88 0.2 0 0 +1.34892E7 28 18 55 98646 0 0 413 0 0 0 0 0 0 0 143 0 5 5 3500 2000 0 919999999 56 0 0 88 0.2 0 0 +1.34928E7 28 18 55 98646 0 0 407 0 0 0 0 0 0 0 280 2.1 3 3 3200 2000 0 919999999 56 0 0 88 0.2 0 0 +1.34964E7 29 17 48 98654 0 0 411 0 0 0 0 0 0 0 300 2.1 3 3 2500 2000 0 919999999 51 0 0 88 0.2 0 0 +1.35E7 29 17 48 98654 11 57 417 2 0 2 201 0 202 81 290 4.1 5 5 2500 2000 9 999999999 51 0 0 88 0.2 0 0 +1.35036E7 30 19 52 98663 291 1326 425 105 115 80 11531 2985 8800 2737 300 2.6 5 5 3000 2000 9 999999999 62 0 0 88 0.2 0 0 +1.35072E7 34 18 39 98697 567 1326 447 304 362 149 34202 21374 16861 5920 280 5.1 5 5 3000 2000 9 999999999 56 0 0 88 0.2 0 0 +1.35108E7 35 17 34 98705 822 1326 451 517 556 172 60432 35338 20236 7956 300 4.6 5 5 3500 2000 9 999999999 51 0 0 88 0.2 0 0 +1.35144E7 38 17 29 98730 1037 1326 462 746 722 182 89881 44967 21975 9097 300 5.1 3 3 3500 2000 9 999999999 50 0 0 88 0.2 0 0 +1.3518E7 38 16 27 98730 1198 1326 460 898 781 192 110152 48597 23693 9786 340 3.1 3 3 3500 2000 9 999999999 46 0 0 88 0.2 0 0 +1.35216E7 40 16 25 98747 1293 1326 453 1000 850 171 125341 50322 21539 8927 310 3.6 0 0 4000 2000 9 999999999 45 0 0 88 0.2 0 0 +1.35252E7 41 15 22 98755 1318 1326 457 1025 845 186 128151 51588 23320 9614 340 3.1 0 0 4500 2000 9 999999999 41 0 0 88 0.2 0 0 +1.35288E7 41.5 14.5 21 98759 1269 1326 459 979 842 174 122323 51334 21811 9033 123 4.1 0 0 5250 2000 9 999999999 39 0 0 88 0.2 0 0 +1.35324E7 42 14 19 98763 1150 1326 462 867 755 213 105090 50211 25897 10600 290 5.1 0 0 6000 2000 9 999999999 37 0 0 88 0.2 0 0 +1.3536E7 43 13 17 98771 970 1326 494 649 557 242 75923 40955 28442 11189 350 2.1 5 5 6000 2000 9 999999999 33 0 0 88 0.2 0 0 +1.35396E7 43 13 17 98771 740 1326 486 477 613 135 56209 37963 15969 6228 260 2.6 3 3 6000 2000 9 999999999 33 0 0 88 0.2 0 0 +1.35432E7 42 13 18 98763 476 1326 480 248 330 130 27799 19040 14603 4890 290 3.6 3 3 5000 2000 9 999999999 34 0 0 88 0.2 0 0 +1.35468E7 40 14 22 98747 196 1326 469 58 44 51 6346 214 5647 1702 290 2.1 3 3 5000 2000 9 999999999 37 0 0 88 0.2 0 0 +1.35504E7 39 14 23 98739 0 940 444 0 0 0 0 0 0 0 290 1.5 0 0 4000 2000 9 999999999 37 0 0 88 0.2 0 0 +1.3554E7 37 16 29 98722 0 0 436 0 0 0 0 0 0 0 290 1.5 0 0 3000 2000 9 999999999 46 0 0 88 0.2 0 0 +1.35576E7 37 16 29 98722 0 0 455 0 0 0 0 0 0 0 289 0 3 3 2500 2000 9 999999999 46 0 0 88 0.2 0 0 +1.35612E7 36 16 31 98714 0 0 449 0 0 0 0 0 0 0 310 0 3 3 2000 2000 9 999999999 46 0 0 88 0.2 0 0 +1.35648E7 36 16 31 98714 0 0 430 0 0 0 0 0 0 0 320 1.5 0 0 1800 2000 9 999999999 46 0 0 88 0.2 0 0 +1.35684E7 35 16 32 98705 0 0 425 0 0 0 0 0 0 0 270 7.2 0 0 1800 2000 9 999999999 46 0 0 88 0.2 0 0 +1.3572E7 34 15 32 98697 0 0 418 0 0 0 0 0 0 0 290 8.2 0 0 800 2000 9 999999999 41 0 0 88 0.2 0 0 +1.35756E7 33 16 36 98689 0 0 414 0 0 0 0 0 0 0 280 5.1 0 0 500 2000 9 999999999 46 0 0 88 0.2 0 0 +1.35792E7 32.5 16.5 38 98684 0 0 412 0 0 0 0 0 0 0 169 3.8 0 0 650 2000 9 999999999 48 0 0 88 0.2 0 0 +1.35828E7 32 17 41 98680 0 0 427 0 0 0 0 0 0 0 260 2.6 3 3 800 2000 9 999999999 51 0 0 88 0.2 0 0 +1.35864E7 31 17 43 98672 12 59 422 2 0 2 221 0 222 89 300 1.5 3 3 1000 2000 9 999999999 51 0 0 88 0.2 0 0 +1.359E7 32 17 41 98680 291 1326 427 112 149 79 12293 4132 8731 2719 260 3.6 3 3 1200 2000 9 999999999 51 0 0 88 0.2 0 0 +1.35936E7 33 12 28 98689 567 1326 426 325 410 149 36747 26371 16967 5928 340 1.5 3 3 1200 2000 9 999999999 31 0 0 88 0.2 0 0 +1.35972E7 35 16 32 98705 821 1326 425 556 667 143 65997 40276 17024 6821 300 3.6 0 0 700 2000 9 999999999 46 0 0 88 0.2 0 0 +1.36008E7 37 15 27 98722 1036 1326 434 758 783 145 92954 47092 17919 7512 270 2.6 0 0 700 2000 9 999999999 41 0 0 88 0.2 0 0 +1.36044E7 39 15 24 98739 1197 1326 446 910 834 157 113480 49846 19650 8198 320 2.6 0 0 1300 2000 9 999999999 41 0 0 88 0.2 0 0 +1.3608E7 40 15 23 98747 1293 1326 451 1001 844 178 125221 51226 22376 9251 290 2.6 0 0 1800 2000 9 999999999 41 0 0 88 0.2 0 0 +1.36116E7 41 14.5 21 98755 1318 1326 456 1025 842 189 128125 52002 23705 9761 228 4.4 0 0 2150 2000 9 999999999 39 0 0 88 0.2 0 0 +1.36152E7 42 14 19 98763 1269 1326 462 980 841 175 122401 51721 22012 9109 280 6.2 0 0 2500 2000 9 999999999 37 0 0 88 0.2 0 0 +1.36188E7 42 14.5 20 98763 1151 1326 462 867 795 176 106513 49763 21790 9047 93 5.6 0 0 3000 2000 9 999999999 39 0 0 88 0.2 0 0 +1.36224E7 42 15 21 98763 970 1326 463 696 760 140 84804 45593 17107 7124 290 5.1 0 0 3500 2000 9 999999999 41 0 0 88 0.2 0 0 +1.3626E7 41 15 22 98755 741 1326 457 483 616 139 56688 37480 16346 6370 310 6.2 0 0 3500 2000 9 999999999 41 0 0 88 0.2 0 0 +1.36296E7 41 15 22 98755 477 1326 477 249 327 131 27787 18442 14685 4923 300 4.6 3 3 3500 2000 9 999999999 41 0 0 88 0.2 0 0 +1.36332E7 40 15 23 98747 198 1326 471 58 45 52 6427 211 5707 1723 300 3.6 3 3 3500 2000 9 999999999 41 0 0 88 0.2 0 0 +1.36368E7 37 16 29 98722 0 950 455 0 0 0 0 0 0 0 290 9.3 3 3 3000 2000 9 999999999 46 0 0 88 0.2 0 0 +1.36404E7 37 14 25 98722 0 0 452 0 0 0 0 0 0 0 290 3.1 3 3 3000 2000 9 999999999 37 0 0 88 0.2 0 0 +1.3644E7 35 15 30 98705 0 0 442 0 0 0 0 0 0 0 270 2.6 3 3 3000 2000 9 999999999 41 0 0 88 0.2 0 0 +1.36476E7 35 15 30 98705 0 0 442 0 0 0 0 0 0 0 280 3.1 3 3 3000 2000 9 999999999 41 0 0 88 0.2 0 0 +1.36512E7 33 15 34 98689 0 0 430 0 0 0 0 0 0 0 290 2.1 3 3 3000 2000 9 999999999 42 0 0 88 0.2 0 0 +1.36548E7 32 15 36 98680 0 0 425 0 0 0 0 0 0 0 270 5.1 3 3 3000 2000 9 999999999 42 0 0 88 0.2 0 0 +1.36584E7 32 17 41 98680 0 0 427 0 0 0 0 0 0 0 270 5.1 3 3 2500 2000 9 999999999 51 0 0 88 0.2 0 0 +1.3662E7 31 18 46 98672 0 0 430 0 0 0 0 0 0 0 260 3.6 5 5 2000 2000 9 999999999 56 0 0 88 0.2 0 0 +1.36656E7 32 18 43 98680 0 0 429 0 0 0 0 0 0 0 290 2.1 3 3 2000 2000 9 999999999 56 0 0 88 0.2 0 0 +1.36692E7 31 17 43 98672 0 0 454 0 0 0 0 0 0 0 280 2.6 9 9 2000 3000 9 999999999 51 0 0 88 0.2 0 0 +1.36728E7 31 17 43 98672 12 61 428 2 0 2 214 0 215 86 310 1 5 5 2000 2000 9 999999999 51 0 0 88 0.2 0 0 +1.36764E7 31.5 17.5 43 98676 291 1325 415 113 155 79 12420 4219 8706 2714 158 2.8 1 1 2250 2000 9 999999999 53 0 0 88 0.2 0 0 +1.368E7 32 18 43 98680 567 1325 429 322 437 135 36497 24560 15360 5501 320 4.6 3 3 2500 2000 9 999999999 56 0 0 88 0.2 0 0 +1.36836E7 33 18 41 98689 821 1325 416 553 665 141 65663 38774 16839 6763 310 5.1 0 0 3000 2000 9 999999999 56 0 0 88 0.2 0 0 +1.36872E7 35 17 34 98705 1036 1325 426 755 795 134 93022 45318 16575 6984 320 5.1 0 0 4500 2000 9 999999999 51 0 0 88 0.2 0 0 +1.36908E7 36.5 17 32 98718 1197 1325 434 907 768 213 110354 48610 26054 10686 233 5.6 0 0 4750 2000 9 999999999 50 0 0 88 0.2 0 0 +1.36944E7 38 17 29 98730 1293 1325 443 998 774 243 121748 49976 29856 12098 320 6.2 0 0 5000 2000 9 999999999 50 0 0 88 0.2 0 0 +1.3698E7 39 16 26 98739 1318 1325 447 1023 849 179 128164 50632 22564 9324 320 6.2 0 0 6000 2000 9 999999999 45 0 0 88 0.2 0 0 +1.37016E7 39 16 26 98739 1269 1325 447 977 849 164 122466 49936 20658 8585 270 6.2 0 0 6000 2000 9 999999999 45 0 0 88 0.2 0 0 +1.37052E7 39 16.5 27 98739 1151 1325 448 864 806 164 106641 48048 20367 8502 34 5.9 0 0 5500 2000 9 999999999 48 0 0 88 0.2 0 0 +1.37088E7 39 17 28 98739 971 1325 448 694 772 129 85022 43913 15820 6625 280 5.7 0 0 5000 2000 9 999999999 50 0 0 88 0.2 0 0 +1.37124E7 40 15 23 98747 742 1325 451 483 615 139 56795 37501 16389 6389 290 4.1 0 0 5000 2000 9 999999999 41 0 0 88 0.2 0 0 +1.3716E7 39 14 23 98739 479 1325 444 253 343 129 28367 19517 14537 4892 300 3.6 0 0 5000 2000 9 999999999 37 0 0 88 0.2 0 0 +1.37196E7 38 15 26 98730 200 1325 459 59 46 52 6517 246 5772 1743 300 4.6 3 3 5000 2000 9 999999999 41 0 0 88 0.2 0 0 +1.37232E7 37 16 29 98722 0 959 455 0 0 0 0 0 0 0 290 2.1 3 3 4000 2000 9 999999999 46 0 0 88 0.2 0 0 +1.37268E7 37 16 29 98722 0 0 462 0 0 0 0 0 0 0 280 2.1 5 5 3000 2000 9 999999999 46 0 0 88 0.2 0 0 +1.37304E7 35 16 32 98705 0 0 476 0 0 0 0 0 0 0 230 4.1 9 9 3000 3000 9 999999999 46 0 0 88 0.2 0 0 +1.3734E7 33 19 44 98689 0 0 469 0 0 0 0 0 0 0 250 5.1 9 9 3000 3000 9 999999999 62 0 0 88 0.2 0 0 +1.37376E7 32 20 49 98680 0 0 464 0 0 0 0 0 0 0 260 5.1 9 9 3000 3000 9 999999999 69 0 0 88 0.2 0 0 +1.37412E7 32 21 52 98680 0 0 465 0 0 0 0 0 0 0 280 3.6 9 9 3000 3000 9 999999999 76 0 0 88 0.2 0 0 +1.37448E7 32 20 49 98680 0 0 464 0 0 0 0 0 0 0 270 5.1 9 9 3000 3000 9 999999999 69 0 0 88 0.2 0 0 +1.37484E7 31 20 52 98672 0 0 432 0 0 0 0 0 0 0 270 5.1 5 5 3000 2000 9 999999999 69 0 0 88 0.2 0 0 +1.3752E7 31 20 52 98672 0 0 432 0 0 0 0 0 0 0 290 5.1 5 5 3000 2000 9 999999999 69 0 0 88 0.2 0 0 +1.37556E7 31 21 55 98672 0 0 434 0 0 0 0 0 0 0 290 4.1 5 5 2500 2000 9 999999999 76 0 0 88 0.2 0 0 +1.37592E7 30 21 59 98663 12 62 428 2 0 2 217 0 218 88 280 4.1 5 5 2000 2000 9 999999999 76 0 0 88 0.2 0 0 +1.37628E7 30 21 59 98663 291 1325 453 58 0 58 5639 0 5683 2178 290 6.2 9 9 2000 3000 9 999999999 76 0 0 88 0.2 0 0 +1.37664E7 31 21 55 98672 567 1325 459 167 28 155 18705 1565 17472 6096 270 5.1 9 9 2000 3000 9 999999999 76 0 0 88 0.2 0 0 +1.377E7 33 21 49 98689 821 1325 472 284 27 267 31956 1982 30223 10972 290 4.1 9 9 1200 3000 9 999999999 76 0 0 88 0.2 0 0 +1.37736E7 33 21 49 98689 1035 1325 472 387 64 337 44239 4789 38774 14641 290 5.1 9 9 1200 3000 9 999999999 76 0 0 88 0.2 0 0 +1.37772E7 36 20 39 98714 1196 1325 489 466 91 383 54017 6962 44754 16813 300 5.1 9 9 1200 3000 9 999999999 68 0 0 88 0.2 0 0 +1.37808E7 37.5 19.5 35 98726 1293 1325 443 994 660 350 117665 47064 41710 16119 153 4.6 0 0 1350 3000 9 999999999 65 0 0 88 0.2 0 0 +1.37844E7 39 19 31 98739 1318 1325 506 526 89 437 61401 7018 51437 18953 320 4.1 9 9 1500 3000 9 999999999 61 0 0 88 0.2 0 0 +1.3788E7 40 19 30 98747 1269 1325 513 502 89 417 58502 6970 48930 18143 290 7.7 9 9 2000 3000 9 999999999 61 0 0 88 0.2 0 0 +1.37916E7 40 19 30 98747 1152 1325 457 862 596 343 100263 44528 40208 15399 60 6.9 0 0 2400 3000 9 999999999 61 0 0 88 0.2 0 0 +1.37952E7 40 19 30 98747 972 1325 513 358 88 293 41042 6516 33836 12901 290 6.2 9 9 2800 3000 9 999999999 61 0 0 88 0.2 0 0 +1.37988E7 39 19 31 98739 743 1325 506 249 18 238 27881 1300 26899 9563 300 7.7 9 9 2800 3000 9 999999999 61 0 0 88 0.2 0 0 +1.38024E7 38 17 29 98730 480 1325 497 131 14 126 14656 769 14131 4804 290 6.7 9 9 2800 3000 9 999999999 50 0 0 88 0.2 0 0 +1.3806E7 37 17 31 98722 202 1325 490 31 0 31 3042 0 3065 1189 300 6.7 9 9 2800 3000 9 999999999 50 0 0 88 0.2 0 0 +1.38096E7 34 20 44 98697 0 969 476 0 0 0 0 0 0 0 300 6.2 9 9 2800 3000 9 999999999 68 0 0 88 0.2 0 0 +1.38132E7 33 21 49 98689 0 0 472 0 0 0 0 0 0 0 290 5.1 9 9 3000 3000 9 999999999 76 0 0 88 0.2 0 0 +1.38168E7 32 22 56 98680 0 0 467 0 0 0 0 0 0 0 290 5.1 9 9 3000 3000 9 999999999 84 0 0 88 0.2 0 0 +1.38204E7 32 22 56 98680 0 0 441 0 0 0 0 0 0 0 290 3.1 5 5 3500 2000 9 999999999 84 0 0 88 0.2 0 0 +1.3824E7 31 22 59 98672 0 0 435 0 0 0 0 0 0 0 310 2.6 5 5 3500 2000 9 999999999 84 0 0 88 0.2 0 0 +1.38276E7 31 22 59 98672 0 0 435 0 0 0 0 0 0 0 310 1.5 5 5 3500 2000 9 999999999 84 0 0 88 0.2 0 0 +1.38312E7 31 22 59 98672 0 0 435 0 0 0 0 0 0 0 196 0 5 5 3500 2000 9 999999999 84 0 0 88 0.2 0 0 +1.38348E7 30 23 66 98663 0 0 431 0 0 0 0 0 0 0 225 0 5 5 3200 2000 9 999999999 93 0 0 88 0.2 0 0 +1.38384E7 30 23 66 98663 0 0 431 0 0 0 0 0 0 0 60 1 5 5 2500 2000 9 999999999 93 0 0 88 0.2 0 0 +1.3842E7 30 23 66 98663 0 0 431 0 0 0 0 0 0 0 130 0 5 5 2000 2000 9 999999999 93 0 0 88 0.2 0 0 +1.38456E7 31 24 66 98672 12 63 477 1 0 1 73 0 74 31 101 0 10 10 2000 3000 9 999999999 102 0 0 88 0.2 0 0 +1.38492E7 31 24 66 98672 291 1325 431 110 58 97 11823 1518 10498 3085 100 1.5 3 3 2000 3000 0 919999999 102 0 0 88 0.2 0 0 +1.38528E7 29 25 79 98654 566 1325 436 248 166 177 27301 9193 19575 6641 210 1.8 7 7 2500 3000 9 999999999 114 0 0 88 0.2 0 0 +1.38564E7 27 26 94 98637 820 1325 455 172 8 166 19909 428 19396 7737 160 2.1 10 10 3000 3000 0 919999999 126 0 0 88 0.2 0 0 +1.386E7 30 25 75 98663 1035 1325 472 234 5 230 27452 298 27129 11052 80 1.5 10 10 2500 3000 0 919999999 113 0 0 88 0.2 0 0 +1.38636E7 32 24 63 98680 1196 1325 483 282 19 265 33501 1148 31619 12769 100 2.1 10 10 2500 3000 0 919999999 102 0 0 88 0.2 0 0 +1.38672E7 32 24 63 98680 1292 1325 437 973 703 287 116387 41978 34576 13852 90 3.6 3 3 3000 3000 0 919999999 102 0 0 88 0.2 0 0 +1.38708E7 32 23 59 98680 1318 1325 439 982 668 318 117061 42348 38139 15057 83 4.3 4 4 3000 3000 9 999999999 93 0 0 88 0.2 0 0 +1.38744E7 32 22 56 98680 1270 1325 480 305 22 284 36460 1388 34136 13658 160 5.1 10 10 3000 3000 0 919999999 84 0 0 88 0.2 0 0 +1.3878E7 30 24 70 98663 1152 1325 470 269 7 263 31783 402 31284 12622 250 2.6 10 10 3500 3000 0 919999999 103 0 0 88 0.2 0 0 +1.38816E7 27 23 79 98637 973 1325 451 217 5 214 25394 269 25141 10176 330 4.1 10 10 3000 3000 0 919999999 93 0 0 88 0.2 0 0 +1.38852E7 27 24 84 98637 744 1325 452 151 0 151 15169 0 15311 6831 330 4.1 10 10 2000 3000 0 919999999 103 0 0 88 0.2 0 0 +1.38888E7 25 24 94 98619 482 1325 440 79 0 79 7798 0 7865 3370 330 2.6 10 10 3000 3000 0 919999999 103 0 0 88 0.2 0 0 +1.38924E7 25 25 100 98619 203 1325 441 19 0 19 1842 0 1856 778 290 2.6 10 10 2000 3000 0 919999999 114 0 0 88 0.2 0 0 +1.3896E7 25 25 100 98619 0 977 441 0 0 0 0 0 0 0 330 2.6 10 10 1800 3000 0 919999999 114 0 0 88 0.2 0 0 +1.38996E7 24 24 100 98610 0 0 434 0 0 0 0 0 0 0 183 0 10 10 1700 3000 0 919999999 104 0 0 88 0.2 0 0 +1.39032E7 24 24 100 98610 0 0 422 0 0 0 0 0 0 0 310 1.5 9 9 800 3000 0 919999999 104 0 0 88 0.2 0 0 +1.39068E7 24 24 100 98610 0 0 422 0 0 0 0 0 0 0 346 0 9 9 800 3000 0 919999999 104 0 0 88 0.2 0 0 +1.39104E7 24 24 100 98610 0 0 422 0 0 0 0 0 0 0 180 0 9 9 800 3000 0 919999999 104 0 0 88 0.2 0 0 +1.3914E7 24 24 100 98610 0 0 422 0 0 0 0 0 0 0 102 0 9 9 800 3000 0 919999999 104 0 0 88 0.2 0 0 +1.39176E7 24.5 24 97 98615 0 0 437 0 0 0 0 0 0 0 246 1 10 10 1650 3000 9 999999999 103 0 0 88 0.2 0 0 +1.39212E7 25 24 94 98619 0 0 428 0 0 0 0 0 0 0 160 2.1 9 9 2500 3000 0 919999999 103 0 0 88 0.2 0 0 +1.39248E7 24 24 100 98610 0 0 422 0 0 0 0 0 0 0 190 2.6 9 9 3500 3000 0 919999999 104 0 0 88 0.2 0 0 +1.39284E7 23 23 100 98601 0 0 415 0 0 0 0 0 0 0 200 1.5 9 9 1600 3000 0 919999999 94 0 0 88 0.2 0 0 +1.3932E7 23 23 100 98601 12 63 415 1 0 1 121 0 122 51 250 3.6 9 9 800 3000 9 999999999 94 0 0 88 0.2 0 0 +1.39356E7 23 23 100 98601 291 1325 415 58 0 58 5578 0 5622 2164 280 5.1 9 9 1600 3000 9 999999999 94 0 0 88 0.2 0 0 +1.39392E7 23 23 100 98601 566 1325 415 166 26 155 18535 1430 17355 6075 230 4.1 9 9 3500 3000 9 999999999 94 0 0 88 0.2 0 0 +1.39428E7 24 23 94 98610 820 1325 421 283 39 259 31768 2631 29259 10736 260 4.1 9 9 4000 3000 9 999999999 94 0 0 88 0.2 0 0 +1.39464E7 24 22 89 98610 1034 1325 432 235 14 224 27727 869 26564 10816 270 5.1 10 10 4500 3000 9 999999999 85 0 0 88 0.2 0 0 +1.395E7 24.5 22 86 98615 1196 1325 414 561 162 414 64511 12439 47990 17699 59 5.4 8 8 4500 3000 9 999999999 85 0 0 88 0.2 0 0 +1.39536E7 25 22 83 98619 1292 1325 437 311 23 289 37294 1421 34868 13923 270 5.7 10 10 4500 3000 9 999999999 85 0 0 88 0.2 0 0 +1.39572E7 26 24 89 98628 1317 1325 434 521 55 466 60190 4092 54307 19767 330 2.6 9 9 4500 3000 9 999999999 103 0 0 88 0.2 0 0 +1.39608E7 27 23 79 98637 1270 1325 438 499 66 436 57651 4944 50707 18671 270 5.1 9 9 4500 3000 9 999999999 93 0 0 88 0.2 0 0 +1.39644E7 28 23 74 98646 1153 1325 444 442 65 385 50754 4803 44546 16669 300 3.1 9 9 4500 3000 9 999999999 93 0 0 88 0.2 0 0 +1.3968E7 29 23 70 98654 974 1325 450 356 44 324 40333 3188 36900 13806 290 4.1 9 9 4500 3000 9 999999999 93 0 0 88 0.2 0 0 +1.39716E7 30 24 70 98663 746 1325 432 446 407 217 50118 25309 24487 8988 310 3.6 5 5 4500 2000 9 999999999 103 0 0 88 0.2 0 0 +1.39752E7 30 23 66 98663 483 1325 424 250 347 123 27850 15843 13777 4749 300 5.1 3 3 4500 2000 9 999999999 93 0 0 88 0.2 0 0 +1.39788E7 29.2 23.4 71 98656 205 1325 430 55 35 49 6014 0 5436 1693 257 4.1 6 6 3900 2000 9 999999999 97 0 0 88 0.2 0 0 +1.39824E7 28.4 23.8 76 98649 0 986 431 0 0 0 0 0 0 0 22 3.1 7 7 3300 2000 9 999999999 101 0 0 88 0.2 0 0 +1.3986E7 27.6 24.2 82 98642 0 0 434 0 0 0 0 0 0 0 203 2 8 8 2700 2000 9 999999999 105 0 0 88 0.2 0 0 +1.39896E7 26.8 24.6 88 98635 0 0 439 0 0 0 0 0 0 0 13 1 9 9 2100 2000 9 999999999 109 0 0 88 0.2 0 0 +1.39932E7 26 25 94 98628 0 0 405 0 0 0 0 0 0 0 278 0 3 3 1500 2000 9 999999999 114 0 0 88 0.2 0 0 +1.39968E7 26 25 94 98628 0 0 405 0 0 0 0 0 0 0 183 0 3 3 1500 2000 9 999999999 114 0 0 88 0.2 0 0 +1.40004E7 26 25 94 98628 0 0 405 0 0 0 0 0 0 0 333 0 3 3 1600 2000 9 999999999 114 0 0 88 0.2 0 0 +1.4004E7 25.9 25.1 95 98627 0 0 447 0 0 0 0 0 0 0 113 0.7 10 10 2137 2000 9 999999999 115 0 0 88 0.2 0 0 +1.40076E7 26.2 24.9 93 98630 0 0 449 0 0 0 0 0 0 0 10 1.4 10 10 2441 2000 9 999999999 113 0 0 88 0.2 0 0 +1.40112E7 25.4 24.7 96 98623 0 0 443 0 0 0 0 0 0 0 34 1.7 10 10 3012 2000 9 999999999 111 0 0 88 0.2 0 0 +1.40148E7 24.7 23.8 95 98616 0 0 438 0 0 0 0 0 0 0 37 1 10 10 1583 2000 9 999999999 101 0 0 88 0.2 0 0 +1.40184E7 25.8 24.1 91 98626 12 63 433 1 0 1 113 0 114 47 269 1.4 9 9 1812 2000 9 999999999 104 0 0 88 0.2 0 0 +1.4022E7 26.8 24.4 87 98635 290 1324 439 67 0 67 6442 0 6493 2414 185 1.8 9 9 2041 2000 9 999999999 107 0 0 88 0.2 0 0 +1.40256E7 27.9 24.7 83 98645 566 1324 436 223 122 171 24573 6629 18933 6483 162 2.2 8 8 2270 2000 9 999999999 110 0 0 88 0.2 0 0 +1.40292E7 29 25 79 98654 819 1324 428 507 490 204 57978 28210 23435 9065 310 2.6 5 5 2500 2000 9 999999999 114 0 0 88 0.2 0 0 +1.40328E7 30 25 75 98663 1034 1324 433 692 611 214 81471 33881 25405 10438 330 2.6 5 5 2500 2000 9 999999999 113 0 0 88 0.2 0 0 +1.40364E7 30.5 24.8 72 98667 1195 1324 440 780 513 318 91281 32358 37422 14712 100 3.6 6 6 2761 2000 9 999999999 111 0 0 88 0.2 0 0 +1.404E7 30.9 24.2 68 98671 1292 1324 437 900 610 306 107136 37187 36596 14541 345 3.6 5 5 3023 2000 9 999999999 104 0 0 88 0.2 0 0 +1.40436E7 31.7 25.3 69 98678 1317 1324 447 911 580 334 107893 35468 39814 15644 202 1.1 6 6 3452 2000 9 999999999 116 0 0 88 0.2 0 0 +1.40472E7 32.5 24.4 62 98684 1270 1324 444 923 682 268 110540 39409 32352 13073 129 3.5 4 4 3714 2000 9 999999999 106 0 0 88 0.2 0 0 +1.40508E7 32.9 23.8 59 98688 1153 1324 445 831 757 172 101457 38913 21156 8873 263 2.4 4 4 4142 2000 9 999999999 100 0 0 88 0.2 0 0 +1.40544E7 33.7 23.2 54 98695 975 1324 445 681 735 141 82395 37258 17091 7176 65 2.3 3 3 4571 2000 9 999999999 94 0 0 88 0.2 0 0 +1.4058E7 33.8 23.7 55 98696 747 1324 447 473 619 124 55633 30067 14648 5832 2 2 3 3 4333 2000 9 999999999 99 0 0 88 0.2 0 0 +1.40616E7 33.6 22.8 53 98694 485 1324 444 252 352 123 28077 16153 13763 4750 165 3.1 3 3 4428 2000 9 999999999 90 0 0 88 0.2 0 0 +1.40652E7 32.5 23.1 58 98685 207 1324 442 61 53 53 6693 0 5809 1783 34 2.4 4 4 3623 2000 9 999999999 93 0 0 88 0.2 0 0 +1.40688E7 31.1 23.5 64 98673 0 994 438 0 0 0 0 0 0 0 239 1.8 5 5 3152 2000 9 999999999 97 0 0 88 0.2 0 0 +1.40724E7 30 23.8 69 98663 0 0 435 0 0 0 0 0 0 0 32 1.2 6 6 2514 2000 9 999999999 101 0 0 88 0.2 0 0 +1.4076E7 29 24.2 76 98654 0 0 435 0 0 0 0 0 0 0 353 0.6 7 7 2209 2000 9 999999999 105 0 0 88 0.2 0 0 +1.40796E7 27.9 24.2 81 98644 0 0 436 0 0 0 0 0 0 0 229 0 8 8 1904 2000 9 999999999 105 0 0 88 0.2 0 0 +1.40832E7 27.7 24 66 98642 0 0 395 0 0 0 0 0 0 0 222 0 0 0 1833 2000 9 999999999 103 0 0 88 0.2 0 0 +1.40868E7 29 24 74 98654 0 0 402 0 0 0 0 0 0 0 350 2.6 0 0 4000 2000 9 999999999 103 0 0 88 0.2 0 0 +1.40904E7 28 23 74 98646 0 0 396 0 0 0 0 0 0 0 350 3.1 0 0 4000 2000 9 999999999 93 0 0 88 0.2 0 0 +1.4094E7 28 23 74 98646 0 0 396 0 0 0 0 0 0 0 350 2.1 0 0 4000 2000 9 999999999 93 0 0 88 0.2 0 0 +1.40976E7 27.7 23 76 98643 0 0 426 0 0 0 0 0 0 0 212 1.4 7 7 3833 2000 9 999999999 93 0 0 88 0.2 0 0 +1.41012E7 27.3 23 77 98640 0 0 424 0 0 0 0 0 0 0 207 0.7 7 7 3666 2000 9 999999999 93 0 0 88 0.2 0 0 +1.41048E7 27 23 79 98637 12 62 407 2 0 2 227 0 228 92 142 0 3 3 3500 2000 9 999999999 93 0 0 88 0.2 0 0 +1.41084E7 28.7 22.3 69 98651 290 1324 426 100 98 79 10996 2110 8674 2715 62 0 6 6 3666 2000 9 999999999 87 0 0 88 0.2 0 0 +1.4112E7 30.3 21.7 60 98666 565 1324 427 311 395 142 34984 21074 16066 5714 259 0 4 4 3833 2000 9 999999999 81 0 0 88 0.2 0 0 +1.41156E7 32 21 52 98680 819 1324 439 510 483 211 58437 31159 24332 9304 178 0 5 5 4000 2000 9 999999999 76 0 0 88 0.2 0 0 +1.41192E7 32 21 52 98680 1033 1324 465 386 153 266 44927 10277 31185 12367 280 3.6 9 9 4500 3000 9 999999999 76 0 0 88 0.2 0 0 +1.41228E7 33 21 49 98689 1195 1324 434 895 716 248 107204 44524 29928 12135 218 3.3 2 2 4750 3000 9 999999999 76 0 0 88 0.2 0 0 +1.41264E7 34 21 47 98697 1291 1324 451 921 617 319 109693 41227 38226 15032 320 3.1 5 5 5000 2000 9 999999999 76 0 0 88 0.2 0 0 +1.413E7 35 22 47 98705 1317 1324 458 942 611 335 112045 40484 40062 15669 350 2.1 5 5 5000 2000 9 999999999 83 0 0 88 0.2 0 0 +1.41336E7 32 22 56 98680 1270 1324 434 951 752 229 115630 43513 28035 11477 328 2.3 3 3 4000 2000 9 999999999 84 0 0 88 0.2 0 0 +1.41372E7 29 22 66 98654 1154 1324 424 799 556 315 93354 37823 37026 14480 100 2.4 5 5 3000 2000 9 999999999 84 0 0 88 0.2 0 0 +1.41408E7 26 22 79 98628 975 1324 431 357 86 294 40857 6034 33826 12952 50 2.6 9 9 2000 3000 9 999999999 85 0 0 88 0.2 0 0 +1.41444E7 31 22 59 98672 748 1324 435 449 409 218 50610 26692 24733 9053 153 0 5 5 2500 2000 9 999999999 84 0 0 88 0.2 0 0 +1.4148E7 31 21 55 98672 486 1324 459 132 15 127 14745 745 14187 4860 330 0 9 9 3500 3000 9 999999999 76 0 0 88 0.2 0 0 +1.41516E7 31 22 59 98672 208 1324 435 59 33 54 6471 2 5928 1813 172 0 5 5 3000 2000 9 999999999 84 0 0 88 0.2 0 0 +1.41552E7 30 25 75 98663 0 1002 433 0 0 0 0 0 0 0 182 0 5 5 3000 2000 9 999999999 113 0 0 88 0.2 0 0 +1.41588E7 29 26 84 98654 0 0 429 0 0 0 0 0 0 0 189 0 5 5 2000 2000 9 999999999 125 0 0 88 0.2 0 0 +1.41624E7 29 24 74 98654 0 0 426 0 0 0 0 0 0 0 340 1.5 5 5 2000 2000 9 999999999 103 0 0 88 0.2 0 0 +1.4166E7 29 23 70 98654 0 0 418 0 0 0 0 0 0 0 178 0 3 3 2000 2000 9 999999999 93 0 0 88 0.2 0 0 +1.41696E7 29 23 70 98654 0 0 418 0 0 0 0 0 0 0 340 2.1 3 3 2500 2000 9 999999999 93 0 0 88 0.2 0 0 +1.41732E7 28 22 70 98646 0 0 412 0 0 0 0 0 0 0 121 0 3 3 2500 2000 9 999999999 84 0 0 88 0.2 0 0 +1.41768E7 27 23 79 98637 0 0 407 0 0 0 0 0 0 0 219 0 3 3 2500 2000 9 999999999 93 0 0 88 0.2 0 0 +1.41804E7 27 23 79 98637 0 0 407 0 0 0 0 0 0 0 91 0 3 3 1800 2000 9 999999999 93 0 0 88 0.2 0 0 +1.4184E7 27 23 79 98637 0 0 414 0 0 0 0 0 0 0 120 0 5 5 1600 2000 9 999999999 93 0 0 88 0.2 0 0 +1.41876E7 27 23 79 98637 0 0 438 0 0 0 0 0 0 0 176 0 9 9 1200 3000 9 999999999 93 0 0 88 0.2 0 0 +1.41912E7 26 25 94 98628 12 61 435 1 0 1 116 0 116 49 230 1 9 9 1000 3000 9 999999999 114 0 0 88 0.2 0 0 +1.41948E7 27 23 79 98637 290 1324 438 57 0 57 5537 0 5581 2150 290 2.1 9 9 1000 3000 9 999999999 93 0 0 88 0.2 0 0 +1.41984E7 29 22 66 98654 565 1324 449 166 26 154 18509 1465 17330 6056 176 0 9 9 1000 3000 9 999999999 84 0 0 88 0.2 0 0 +1.4202E7 31 22 59 98672 818 1324 461 282 75 236 32006 4994 26898 10070 340 2.1 9 9 1500 3000 9 999999999 84 0 0 88 0.2 0 0 +1.42056E7 33 21 49 98689 1033 1324 445 695 574 247 81401 37305 29123 11685 334 0 5 5 2500 2000 9 999999999 76 0 0 88 0.2 0 0 +1.42092E7 34 21 47 98697 1194 1324 444 887 791 173 109170 43525 21432 8947 70 2.1 3 3 3000 2000 9 999999999 76 0 0 88 0.2 0 0 +1.42128E7 35 20 42 98705 1291 1324 449 979 841 158 106681 89221 20032 11326 10 1.5 3 3 3500 2000 9 999999999 68 0 0 88 0.2 0 0 +1.42164E7 36 20 39 98714 1317 1324 454 1003 839 168 125851 45727 21156 8795 352 0 3 3 4500 2000 9 999999999 68 0 0 88 0.2 0 0 +1.422E7 37 20 37 98722 1270 1324 460 959 795 197 118298 45716 24367 10068 50 2.1 3 3 5000 2000 9 999999999 68 0 0 88 0.2 0 0 +1.42236E7 37 19 35 98722 1154 1324 466 804 597 283 94990 40991 33698 13376 20 2.6 5 5 6000 2000 9 999999999 62 0 0 88 0.2 0 0 +1.42272E7 38 18 31 98730 976 1324 463 689 745 139 83830 42512 17020 7114 277 0 3 3 7000 2000 9 999999999 56 0 0 88 0.2 0 0 +1.42308E7 37 18 33 98722 749 1324 457 481 645 116 57210 35223 13812 5499 204 0 3 3 6000 2000 9 999999999 56 0 0 88 0.2 0 0 +1.42344E7 37 18 33 98722 487 1324 457 255 360 122 28635 18658 13812 4756 325 0 3 3 6000 2000 9 999999999 56 0 0 88 0.2 0 0 +1.4238E7 36 19 37 98714 210 1324 453 64 62 54 7005 248 5948 1818 346 0 3 3 4500 2000 9 999999999 62 0 0 88 0.2 0 0 +1.42416E7 34 20 44 98697 0 1010 443 0 0 0 0 0 0 0 256 0 3 3 4000 2000 9 999999999 68 0 0 88 0.2 0 0 +1.42452E7 33 21 49 98689 0 0 438 0 0 0 0 0 0 0 230 0 3 3 3000 2000 9 999999999 76 0 0 88 0.2 0 0 +1.42488E7 32 22 56 98680 0 0 416 0 0 0 0 0 0 0 15 0 0 0 3000 2000 9 999999999 84 0 0 88 0.2 0 0 +1.42524E7 31 22 59 98672 0 0 411 0 0 0 0 0 0 0 311 0 0 0 3000 2000 9 999999999 84 0 0 88 0.2 0 0 +1.4256E7 31 22 59 98672 0 0 411 0 0 0 0 0 0 0 25 0 0 0 2500 2000 9 999999999 84 0 0 88 0.2 0 0 +1.42596E7 30 22 62 98663 0 0 429 0 0 0 0 0 0 0 4 0 5 5 2500 2000 9 999999999 84 0 0 88 0.2 0 0 +1.42632E7 30 22 62 98663 0 0 429 0 0 0 0 0 0 0 17 0 5 5 2500 2000 9 999999999 84 0 0 88 0.2 0 0 +1.42668E7 30 22 62 98663 0 0 455 0 0 0 0 0 0 0 90 2.1 9 9 2500 3000 9 999999999 84 0 0 88 0.2 0 0 +1.42704E7 29 22 66 98654 0 0 424 0 0 0 0 0 0 0 100 3.6 5 5 2500 2000 9 999999999 84 0 0 88 0.2 0 0 +1.4274E7 29 22 66 98654 0 0 424 0 0 0 0 0 0 0 280 0 5 5 2300 2000 9 999999999 84 0 0 88 0.2 0 0 +1.42776E7 29 22 66 98654 12 59 417 2 0 2 216 0 218 88 90 2.6 3 3 2300 2000 9 999999999 84 0 0 88 0.2 0 0 +1.42812E7 30 23 66 98663 289 1324 424 109 138 79 11908 2804 8645 2707 110 5.7 3 3 2300 2000 9 999999999 93 0 0 88 0.2 0 0 +1.42848E7 32 23 59 98680 564 1324 435 316 420 137 35578 21163 15510 5560 110 4.1 3 3 2500 2000 9 999999999 93 0 0 88 0.2 0 0 +1.42884E7 33 23 56 98689 817 1324 423 545 647 145 64161 34066 17198 6921 120 4.6 0 0 3000 2000 9 999999999 92 0 0 88 0.2 0 0 +1.4292E7 33 23 56 98689 1032 1324 441 734 751 149 89194 38628 18180 7668 140 3.6 3 3 4000 2000 9 999999999 92 0 0 88 0.2 0 0 +1.42956E7 34 23 53 98697 1194 1324 447 884 781 179 108231 41260 22068 9216 100 4.1 3 3 4000 2000 9 999999999 92 0 0 88 0.2 0 0 +1.42992E7 35 22 47 98705 1291 1324 447 985 772 232 120058 44652 28440 11629 323 4.1 2 2 4500 2000 9 999999999 83 0 0 88 0.2 0 0 +1.43028E7 36 21 42 98714 1317 1324 456 1001 789 216 123197 45286 26733 10977 90 4.1 3 3 5000 2000 9 999999999 75 0 0 88 0.2 0 0 +1.43064E7 37 22 42 98722 1271 1324 470 902 615 311 107158 40081 37232 14700 80 4.6 5 5 6000 2000 9 999999999 83 0 0 88 0.2 0 0 +1.431E7 38 22 40 98730 1155 1324 476 800 649 234 95689 39012 28170 11501 90 4.1 5 5 6000 2000 9 999999999 83 0 0 88 0.2 0 0 +1.43136E7 37 21 40 98722 977 1324 469 647 609 197 76450 36722 23423 9560 100 3.6 5 5 6000 2000 9 999999999 75 0 0 88 0.2 0 0 +1.43172E7 37 21 40 98722 750 1324 469 452 414 217 51022 27509 24667 9041 80 2.6 5 5 6000 2000 9 999999999 75 0 0 88 0.2 0 0 +1.43208E7 37 21 40 98722 489 1324 497 133 16 127 14876 778 14292 4900 110 3.6 9 9 6000 3000 9 999999999 75 0 0 88 0.2 0 0 +1.43244E7 36 21 42 98714 211 1324 463 61 35 55 6647 86 6049 1848 90 3.1 5 5 5000 2000 9 999999999 75 0 0 88 0.2 0 0 +1.4328E7 35 23 50 98705 0 1017 460 0 0 0 0 0 0 0 90 2.6 5 5 4500 2000 9 999999999 92 0 0 88 0.2 0 0 +1.43316E7 35 24 53 98705 0 0 488 0 0 0 0 0 0 0 80 2.1 9 9 3500 3000 9 999999999 102 0 0 88 0.2 0 0 +1.43352E7 34 24 56 98697 0 0 455 0 0 0 0 0 0 0 90 1.5 5 5 3000 2000 9 999999999 102 0 0 88 0.2 0 0 +1.43388E7 34 24 56 98697 0 0 455 0 0 0 0 0 0 0 97 0 5 5 3000 2000 9 999999999 102 0 0 88 0.2 0 0 +1.43424E7 32 23 59 98680 0 0 442 0 0 0 0 0 0 0 70 2.1 5 5 3000 2000 9 999999999 93 0 0 88 0.2 0 0 +1.4346E7 32 24 63 98680 0 0 470 0 0 0 0 0 0 0 60 1.5 9 9 3000 3000 9 999999999 102 0 0 88 0.2 0 0 +1.43496E7 31 24 66 98672 0 0 464 0 0 0 0 0 0 0 90 2.1 9 9 3000 3000 9 999999999 102 0 0 88 0.2 0 0 +1.43532E7 30 24 70 98663 0 0 457 0 0 0 0 0 0 0 80 1.5 9 9 3000 3000 9 999999999 103 0 0 88 0.2 0 0 +1.43568E7 31 24 66 98672 0 0 464 0 0 0 0 0 0 0 140 0 9 9 3000 3000 9 999999999 102 0 0 88 0.2 0 0 +1.43604E7 30 25 75 98663 0 0 459 0 0 0 0 0 0 0 15 0 9 9 3000 3000 9 999999999 113 0 0 88 0.2 0 0 +1.4364E7 30 23 66 98663 11 57 456 1 0 1 109 0 109 46 110 7.7 9 9 3000 3000 9 999999999 93 0 0 88 0.2 0 0 +1.43676E7 27 26 94 98637 289 1323 442 57 0 57 5451 0 5495 2130 120 6.2 9 9 3500 3000 0 919999999 126 0 0 88 0.2 0 0 +1.43712E7 25 25 100 98619 563 1323 429 164 25 153 18280 1284 17160 6025 160 4.1 9 9 3000 2700 0 919999999 114 0 0 88 0.2 0 0 +1.43748E7 25 25 100 98619 817 1323 429 280 26 264 31341 1734 29702 10858 160 2.6 9 9 3000 2700 0 919999999 114 0 0 88 0.2 0 0 +1.43784E7 26 26 100 98628 1031 1323 436 382 55 339 43292 3715 38678 14674 20 2.1 9 9 2500 2700 0 919999999 126 0 0 88 0.2 0 0 +1.4382E7 25 25 100 98619 1193 1323 441 281 10 272 33207 559 32387 13049 329 3.3 10 10 2250 2700 9 999999999 114 0 0 88 0.2 0 0 +1.43856E7 24 24 100 98610 1290 1323 434 310 7 303 36891 443 36284 14433 50 4.6 10 10 2000 750 0 919999999 104 0 0 88 0.2 0 0 +1.43892E7 24 24 100 98610 1317 1323 434 318 15 303 37953 892 36439 14506 90 4.6 10 10 2000 750 0 919999999 104 0 0 88 0.2 0 0 +1.43928E7 26 26 100 98628 1271 1323 436 497 54 445 57086 3814 51525 18943 50 4.6 9 9 2500 750 0 919999999 126 0 0 88 0.2 0 0 +1.43964E7 27 26 94 98637 1155 1323 442 441 64 385 50439 4381 44377 16687 70 2.6 9 9 3000 900 0 919999999 126 0 0 88 0.2 0 0 +1.44E7 27 25 89 98637 978 1323 441 357 27 337 40195 1901 38206 14208 80 2.1 9 9 3500 900 0 919999999 114 0 0 88 0.2 0 0 +1.44036E7 27 25 89 98637 751 1323 441 249 17 240 27791 1102 26856 9664 70 3.6 9 9 3500 900 0 919999999 114 0 0 88 0.2 0 0 +1.44072E7 27 25 89 98637 490 1323 441 133 14 128 14755 600 14256 4916 70 3.6 9 9 3500 900 0 919999999 114 0 0 88 0.2 0 0 +1.44108E7 27 26 94 98637 213 1323 442 34 0 34 3243 0 3268 1284 90 2.6 9 9 4000 1050 0 919999999 126 0 0 88 0.2 0 0 +1.44144E7 27 25 89 98637 0 1024 441 0 0 0 0 0 0 0 90 1.5 9 9 4000 3000 0 919999999 114 0 0 88 0.2 0 0 +1.4418E7 26 25 94 98628 0 0 411 0 0 0 0 0 0 0 145 0 5 5 3000 2000 0 919999999 114 0 0 88 0.2 0 0 +1.44216E7 26 25 94 98628 0 0 435 0 0 0 0 0 0 0 110 2.1 9 9 3000 3000 0 919999999 114 0 0 88 0.2 0 0 +1.44252E7 26 25 94 98628 0 0 435 0 0 0 0 0 0 0 80 1.5 9 9 3000 3000 0 919999999 114 0 0 88 0.2 0 0 +1.44288E7 26 25 94 98628 0 0 435 0 0 0 0 0 0 0 43 0 9 9 3000 3000 0 919999999 114 0 0 88 0.2 0 0 +1.44324E7 26 25 94 98628 0 0 435 0 0 0 0 0 0 0 263 0 9 9 3000 3000 0 919999999 114 0 0 88 0.2 0 0 +1.4436E7 26 25 94 98628 0 0 435 0 0 0 0 0 0 0 90 5.1 9 9 3000 3000 0 919999999 114 0 0 88 0.2 0 0 +1.44396E7 26 26 100 98628 0 0 406 0 0 0 0 0 0 0 90 2.1 3 3 2500 3000 0 919999999 126 0 0 88 0.2 0 0 +1.44432E7 26 26 100 98628 0 0 449 0 0 0 0 0 0 0 330 1 10 10 2350 3000 9 999999999 126 0 0 88 0.2 0 0 +1.44468E7 26 26 100 98628 0 0 436 0 0 0 0 0 0 0 135 0 9 9 2200 3000 0 919999999 126 0 0 88 0.2 0 0 +1.44504E7 25.5 25.5 100 98624 11 54 445 1 0 1 63 0 63 27 336 0 10 10 1600 3000 9 999999999 120 0 0 88 0.2 0 0 +1.4454E7 25 25 100 98619 288 1323 441 34 0 34 3322 0 3349 1409 13 0 10 10 1000 3000 9 999999999 114 0 0 88 0.2 0 0 +1.44576E7 25 25 100 98619 562 1323 441 100 0 100 9901 0 9989 4342 27 0 10 10 1500 3000 9 999999999 114 0 0 88 0.2 0 0 +1.44612E7 25 25 100 98619 816 1323 441 171 1 170 19776 61 19791 7853 336 0 10 10 2000 3000 9 999999999 114 0 0 88 0.2 0 0 +1.44648E7 26 26 100 98628 1031 1323 449 233 5 229 27216 283 26903 10981 8 0 10 10 1500 3000 0 919999999 126 0 0 88 0.2 0 0 +1.44684E7 27 27 100 98637 1193 1323 456 280 7 273 32963 388 32416 13093 65 0 10 10 1300 3000 0 919999999 139 0 0 88 0.2 0 0 +1.4472E7 27 27 100 98637 1290 1323 456 308 7 301 36547 401 35951 14375 293 0 10 10 1500 3000 0 919999999 139 0 0 88 0.2 0 0 +1.44756E7 29 28 94 98654 1317 1323 470 316 3 313 37374 136 37330 14883 40 1.5 10 10 1200 3000 0 919999999 153 0 0 88 0.2 0 0 +1.44792E7 29.3 28 93 98657 1271 1323 472 405 29 376 46944 1777 43998 16924 166 1.5 10 10 1200 3000 9 999999999 153 0 0 88 0.2 0 0 +1.44828E7 29.7 28 91 98660 1156 1323 461 414 68 355 47507 4184 40994 15785 32 1.5 9 9 1200 3000 9 999999999 153 0 0 88 0.2 0 0 +1.44864E7 30 28 89 98663 979 1323 430 679 539 281 77311 31437 32139 12559 10 1.5 3 3 1200 3000 0 919999999 153 0 0 88 0.2 0 0 +1.449E7 29.5 27.5 89 98659 752 1323 459 263 63 227 29298 3621 25441 9330 52 2.3 9 9 2000 3000 9 999999999 146 0 0 88 0.2 0 0 +1.44936E7 29 27 89 98654 491 1323 456 133 15 127 14724 598 14175 4913 10 3.1 9 9 2800 3000 0 919999999 139 0 0 88 0.2 0 0 +1.44972E7 30 28 89 98663 214 1323 463 34 0 34 3257 0 3283 1296 154 0 9 9 3000 3000 0 919999999 153 0 0 88 0.2 0 0 +1.45008E7 28 28 100 98646 0 1031 451 0 0 0 0 0 0 0 73 0 9 9 3000 3000 0 919999999 153 0 0 88 0.2 0 0 +1.45044E7 28 27 94 98646 0 0 450 0 0 0 0 0 0 0 161 0 9 9 2500 3000 0 919999999 139 0 0 88 0.2 0 0 +1.4508E7 27.5 27 97 98641 0 0 459 0 0 0 0 0 0 0 11 0 10 10 2250 3000 9 999999999 139 0 0 88 0.2 0 0 +1.45116E7 27 27 100 98637 0 0 419 0 0 0 0 0 0 0 221 0 5 5 2000 2000 0 919999999 139 0 0 88 0.2 0 0 +1.45152E7 27 27 100 98637 0 0 419 0 0 0 0 0 0 0 96 0 5 5 2000 2000 0 919999999 139 0 0 88 0.2 0 0 +1.45188E7 27 27 100 98637 0 0 419 0 0 0 0 0 0 0 300 0 5 5 2000 2000 0 919999999 139 0 0 88 0.2 0 0 +1.45224E7 27 27 100 98637 0 0 419 0 0 0 0 0 0 0 325 0 5 5 1800 2000 0 919999999 139 0 0 88 0.2 0 0 +1.4526E7 27 27 100 98637 0 0 419 0 0 0 0 0 0 0 239 0 5 5 1200 2000 0 919999999 139 0 0 88 0.2 0 0 +1.45296E7 27 27 100 98637 0 0 444 0 0 0 0 0 0 0 316 0 9 9 1400 3000 0 919999999 139 0 0 88 0.2 0 0 +1.45332E7 27 27 100 98637 0 0 456 0 0 0 0 0 0 0 8 0.5 10 10 1433 3000 9 999999999 139 0 0 88 0.2 0 0 +1.45368E7 27 27 100 98637 10 51 456 1 0 1 59 0 59 25 94 1 10 10 1466 3000 9 999999999 139 0 0 88 0.2 0 0 +1.45404E7 27 27 100 98637 287 1323 444 56 0 56 5389 0 5433 2111 290 1.5 9 9 1500 3000 9 999999999 139 0 0 88 0.2 0 0 +1.4544E7 28 27 94 98646 562 1323 450 163 27 152 18103 1272 16896 5963 300 1.5 9 9 1100 3000 9 999999999 139 0 0 88 0.2 0 0 +1.45476E7 29.5 27 86 98659 815 1323 449 337 104 273 37484 6632 30516 11082 272 1.5 8 8 1300 3000 9 999999999 139 0 0 88 0.2 0 0 +1.45512E7 31 27 79 98672 1030 1323 468 381 45 346 43008 2978 39321 14860 350 1.5 9 9 1500 3000 9 999999999 138 0 0 88 0.2 0 0 +1.45548E7 32 27 75 98680 1192 1323 474 458 64 401 52425 4288 46170 17306 10 2.1 9 9 2800 3000 9 999999999 138 0 0 88 0.2 0 0 +1.45584E7 33 27 71 98689 1290 1323 480 505 64 443 58145 4381 51313 18978 350 2.1 9 9 3500 3000 9 999999999 138 0 0 88 0.2 0 0 +1.4562E7 33 27 71 98689 1317 1323 480 518 84 434 59949 5612 50631 18883 330 3.1 9 9 4500 3000 9 999999999 138 0 0 88 0.2 0 0 +1.45656E7 34 27 67 98697 1271 1323 452 949 694 282 112846 37689 33780 13618 10 2.1 3 3 5000 2000 9 999999999 138 0 0 88 0.2 0 0 +1.45692E7 35 28 67 98705 1156 1323 459 842 785 156 102917 33075 19162 8126 60 2.1 3 3 5000 2000 9 999999999 152 0 0 88 0.2 0 0 +1.45728E7 35 27 63 98705 979 1323 458 681 719 149 81641 32440 17947 7560 10 1.5 3 3 5000 2000 9 999999999 137 0 0 88 0.2 0 0 +1.45764E7 35 27 63 98705 753 1323 458 477 616 126 55822 26612 14845 5946 60 2.6 3 3 5000 2000 9 999999999 137 0 0 88 0.2 0 0 +1.458E7 35 27 63 98705 492 1323 458 255 348 126 28303 13819 14023 4878 20 2.6 3 3 5000 2000 9 999999999 137 0 0 88 0.2 0 0 +1.45836E7 34 27 67 98697 215 1323 452 66 64 56 7176 0 6060 1876 50 1.5 3 3 5000 2000 9 999999999 138 0 0 88 0.2 0 0 +1.45872E7 33 28 75 98689 0 1037 455 0 0 0 0 0 0 0 234 0 5 5 5000 2000 9 999999999 152 0 0 88 0.2 0 0 +1.45908E7 32 28 79 98680 0 0 449 0 0 0 0 0 0 0 195 0 5 5 3500 2000 9 999999999 153 0 0 88 0.2 0 0 +1.45944E7 31 28 84 98672 0 0 436 0 0 0 0 0 0 0 182 0 3 3 3200 2000 9 999999999 153 0 0 88 0.2 0 0 +1.4598E7 31 29 89 98672 0 0 437 0 0 0 0 0 0 0 280 0 3 3 2000 2000 9 999999999 169 0 0 88 0.2 0 0 +1.46016E7 31 29 89 98672 0 0 437 0 0 0 0 0 0 0 318 0 3 3 2000 2000 9 999999999 169 0 0 88 0.2 0 0 +1.46052E7 30 29 94 98663 0 0 414 0 0 0 0 0 0 0 8 0 0 0 2000 2000 9 999999999 169 0 0 88 0.2 0 0 +1.46088E7 30 29 94 98663 0 0 414 0 0 0 0 0 0 0 250 2.1 0 0 2000 2000 9 999999999 169 0 0 88 0.2 0 0 +1.46124E7 29.5 29 97 98659 0 0 474 0 0 0 0 0 0 0 217 1 10 10 2000 2000 9 999999999 169 0 0 88 0.2 0 0 +1.4616E7 29 29 100 98654 0 0 408 0 0 0 0 0 0 0 121 0 0 0 2000 2000 9 999999999 169 0 0 88 0.2 0 0 +1.46196E7 29 29 100 98654 0 0 471 0 0 0 0 0 0 0 322 0.8 10 10 2000 2000 9 999999999 169 0 0 88 0.2 0 0 +1.46232E7 29 29 100 98654 9 48 433 2 0 2 161 0 162 67 250 1.5 5 5 2000 2000 9 999999999 169 0 0 88 0.2 0 0 +1.46268E7 30 28 89 98663 286 1323 430 106 130 78 11522 1424 8500 2679 280 2.6 3 3 1600 2000 9 999999999 153 0 0 88 0.2 0 0 +1.46304E7 32 27 75 98680 561 1323 441 311 407 138 34769 17852 15549 5587 290 3.1 3 3 1300 2000 9 999999999 138 0 0 88 0.2 0 0 +1.4634E7 33 26 67 98689 814 1323 445 533 634 142 62502 29969 16745 6775 280 3.6 3 3 2800 2000 9 999999999 125 0 0 88 0.2 0 0 +1.46376E7 35 23 50 98705 1029 1323 453 732 749 149 88867 38553 18155 7656 310 3.6 3 3 4500 2000 9 999999999 92 0 0 88 0.2 0 0 +1.46412E7 36 21.5 43 98714 1191 1323 446 895 767 204 108709 43948 24935 10306 176 3.1 1 1 5750 2000 9 999999999 79 0 0 88 0.2 0 0 +1.46448E7 37 20 37 98722 1289 1323 460 977 840 158 106531 89144 20001 11237 330 2.6 3 3 7000 2000 9 999999999 68 0 0 88 0.2 0 0 +1.46484E7 39 19 31 98739 1317 1323 471 1004 842 166 126240 46722 20985 8719 340 2.6 3 3 7000 2000 9 999999999 61 0 0 88 0.2 0 0 +1.4652E7 39 19 31 98739 1271 1323 451 974 771 233 118763 47745 28608 11657 340 4.6 0 0 8000 2000 9 999999999 61 0 0 88 0.2 0 0 +1.46556E7 40 18 28 98747 1157 1323 456 867 765 199 105470 46961 24303 10034 330 4.1 0 0 8000 2000 9 999999999 55 0 0 88 0.2 0 0 +1.46592E7 40 17 26 98747 980 1323 454 702 772 131 86024 44008 16063 6733 340 4.1 0 0 8000 2000 9 999999999 50 0 0 88 0.2 0 0 +1.46628E7 40 17 26 98747 754 1323 474 486 596 146 56900 35882 17168 6704 330 4.1 3 3 8000 2000 9 999999999 50 0 0 88 0.2 0 0 +1.46664E7 40 18 28 98747 493 1323 483 245 299 133 27350 16293 14965 5084 350 3.1 5 5 6000 2000 9 999999999 55 0 0 88 0.2 0 0 +1.467E7 38 19 33 98730 216 1323 472 63 47 56 6962 281 6141 1883 40 1.5 5 5 6000 2000 9 999999999 61 0 0 88 0.2 0 0 +1.46736E7 36 21 42 98714 0 1043 463 0 0 0 0 0 0 0 69 0 5 5 4500 2000 9 999999999 75 0 0 88 0.2 0 0 +1.46772E7 35 23 50 98705 0 0 487 0 0 0 0 0 0 0 232 0 9 9 3000 6000 9 999999999 92 0 0 88 0.2 0 0 +1.46808E7 36 20 39 98714 0 0 489 0 0 0 0 0 0 0 340 1.5 9 9 2500 6000 9 999999999 68 0 0 88 0.2 0 0 +1.46844E7 34 21 47 98697 0 0 478 0 0 0 0 0 0 0 280 1.5 9 9 2200 6000 9 999999999 76 0 0 88 0.2 0 0 +1.4688E7 32 23 59 98680 0 0 468 0 0 0 0 0 0 0 324 0 9 9 2000 6000 9 999999999 93 0 0 88 0.2 0 0 +1.46916E7 31 23 63 98672 0 0 462 0 0 0 0 0 0 0 213 0 9 9 2000 6000 9 999999999 93 0 0 88 0.2 0 0 +1.46952E7 31 23 63 98672 0 0 462 0 0 0 0 0 0 0 49 0 9 9 1800 6000 9 999999999 93 0 0 88 0.2 0 0 +1.46988E7 31 23 63 98672 0 0 436 0 0 0 0 0 0 0 249 0 5 5 2000 2000 9 999999999 93 0 0 88 0.2 0 0 +1.47024E7 30 21 59 98663 0 0 453 0 0 0 0 0 0 0 315 0 9 9 2000 6000 9 999999999 76 0 0 88 0.2 0 0 +1.4706E7 30 20 55 98663 0 0 427 0 0 0 0 0 0 0 81 0 5 5 2000 2000 9 999999999 69 0 0 88 0.2 0 0 +1.47096E7 29 21 62 98654 9 44 422 2 0 2 150 0 151 62 242 0 5 5 2000 2000 9 999999999 76 0 0 88 0.2 0 0 +1.47132E7 31 20 52 98672 285 1322 432 101 104 78 11053 2479 8616 2679 307 0 5 5 2500 2000 9 999999999 69 0 0 88 0.2 0 0 +1.47168E7 33 21 49 98689 560 1322 445 295 311 164 32854 18206 18288 6273 270 3.1 5 5 2500 2000 9 999999999 76 0 0 88 0.2 0 0 +1.47204E7 35 22 47 98705 813 1322 485 280 38 256 31525 2672 29033 10632 290 3.1 9 9 3000 6000 9 999999999 83 0 0 88 0.2 0 0 +1.4724E7 36 21 42 98714 1029 1322 490 384 64 334 43848 4742 38450 14528 300 3.1 9 9 4500 6000 9 999999999 75 0 0 88 0.2 0 0 +1.47276E7 37 21 40 98722 1191 1322 497 462 66 402 53323 5108 46749 17353 300 3.1 9 9 5000 6000 9 999999999 75 0 0 88 0.2 0 0 +1.47312E7 39 20 33 98739 1289 1322 508 511 67 445 59329 5328 52091 19052 300 2.6 9 9 6000 6000 9 999999999 68 0 0 88 0.2 0 0 +1.47348E7 40 18 28 98747 1317 1322 511 526 68 458 61293 5573 53776 19548 300 3.6 9 9 6000 6000 9 999999999 55 0 0 88 0.2 0 0 +1.47384E7 41 18 27 98755 1272 1322 518 504 68 439 58574 5538 51332 18773 90 2.6 9 9 7000 6000 9 999999999 55 0 0 88 0.2 0 0 +1.4742E7 41 18 27 98755 1157 1322 518 448 67 389 51729 5394 45233 16806 60 2.6 9 9 7000 6000 9 999999999 55 0 0 88 0.2 0 0 +1.47456E7 41 18 27 98755 981 1322 518 362 32 339 41190 2551 38753 14290 110 1.5 9 9 7000 6000 9 999999999 55 0 0 88 0.2 0 0 +1.47492E7 40 18.8 29 98747 755 1322 513 254 54 223 28696 3788 25332 9239 90 3.6 9 9 7000 6000 9 999999999 60 0 0 88 0.2 0 0 +1.47528E7 38.8 19.6 33 98736 494 1322 451 263 342 136 29334 18210 15168 5147 337 2.7 0 0 6125 6000 9 999999999 65 0 0 88 0.2 0 0 +1.47564E7 37.5 20.4 37 98726 218 1322 445 69 75 56 7523 362 6199 1901 249 1.8 0 0 5250 6000 9 999999999 71 0 0 88 0.2 0 0 +1.476E7 36.2 21.2 42 98716 0 1048 447 0 0 0 0 0 0 0 95 0.9 1 1 4375 6000 9 999999999 77 0 0 88 0.2 0 0 +1.47636E7 35 22 47 98705 0 0 485 0 0 0 0 0 0 0 218 0 9 9 3500 6000 9 999999999 83 0 0 88 0.2 0 0 +1.47672E7 35 21 44 98705 0 0 457 0 0 0 0 0 0 0 140 2.6 5 5 2500 2000 9 999999999 75 0 0 88 0.2 0 0 +1.47708E7 34 21 47 98697 0 0 451 0 0 0 0 0 0 0 160 2.1 5 5 2500 2000 9 999999999 76 0 0 88 0.2 0 0 +1.47744E7 34 19 41 98697 0 0 423 0 0 0 0 0 0 0 180 2.1 0 0 3500 2000 9 999999999 62 0 0 88 0.2 0 0 +1.4778E7 34 18 39 98697 0 0 422 0 0 0 0 0 0 0 180 1.5 0 0 3500 2000 9 999999999 56 0 0 88 0.2 0 0 +1.47816E7 34 17 36 98697 0 0 439 0 0 0 0 0 0 0 170 2.1 3 3 3500 2000 9 999999999 51 0 0 88 0.2 0 0 +1.47852E7 34 15 32 98697 0 0 443 0 0 0 0 0 0 0 110 5.1 5 5 3500 2000 9 999999999 41 0 0 88 0.2 0 0 +1.47888E7 29 24 74 98654 0 0 426 0 0 0 0 0 0 0 110 5.1 5 5 2500 2000 9 999999999 103 0 0 88 0.2 0 0 +1.47924E7 28 28 100 98646 0 0 426 0 0 0 0 0 0 0 110 4.1 5 5 2000 2000 9 999999999 153 0 0 88 0.2 0 0 +1.4796E7 28 28 100 98646 8 39 426 1 0 1 133 0 134 56 90 4.1 5 5 1800 2000 9 999999999 153 0 0 88 0.2 0 0 +1.47996E7 29 28 94 98654 284 1322 431 99 98 78 10742 1053 8485 2669 110 3.6 5 5 1500 2000 9 999999999 153 0 0 88 0.2 0 0 +1.48032E7 29 28 94 98654 559 1322 431 291 331 151 32245 14694 16853 5947 90 4.6 5 5 1500 2000 9 999999999 153 0 0 88 0.2 0 0 +1.48068E7 32 29 84 98680 812 1322 443 528 623 145 61544 25941 17009 6901 70 2.6 3 3 3000 2000 9 999999999 169 0 0 88 0.2 0 0 +1.48104E7 35 27 63 98705 1028 1322 458 726 731 158 87209 33335 19024 8042 268 0 3 3 5000 2000 9 999999999 137 0 0 88 0.2 0 0 +1.4814E7 36 26 57 98714 1190 1322 463 876 765 188 106468 37282 22970 9605 290 1.5 3 3 5000 2000 9 999999999 124 0 0 88 0.2 0 0 +1.48176E7 38 26 51 98730 1289 1322 482 912 596 331 107502 35843 39290 15458 20 2.6 5 5 5000 2000 9 999999999 124 0 0 88 0.2 0 0 +1.48212E7 39 24 43 98739 1316 1322 486 939 637 304 112181 38690 36610 14564 250 3.6 5 5 5000 2000 9 999999999 101 0 0 88 0.2 0 0 +1.48248E7 41 23 36 98755 1272 1322 497 902 647 279 107911 39366 33659 13510 180 4.1 5 5 5000 2000 9 999999999 91 0 0 88 0.2 0 0 +1.48284E7 40 25 43 98747 1157 1322 493 799 611 264 94311 35672 31352 12666 70 2.6 5 5 4000 2000 9 999999999 112 0 0 88 0.2 0 0 +1.4832E7 40 26 46 98747 981 1322 495 645 594 204 75612 31700 24046 9852 80 2.1 5 5 3500 2000 9 999999999 123 0 0 88 0.2 0 0 +1.48356E7 39 27 51 98739 756 1322 490 452 488 173 51607 24493 19853 7683 80 3.1 5 5 3500 2000 9 999999999 137 0 0 88 0.2 0 0 +1.48392E7 38 27 54 98730 495 1322 484 243 286 136 26785 12031 15046 5161 90 3.1 5 5 3500 2000 9 999999999 137 0 0 88 0.2 0 0 +1.48428E7 37 27 57 98722 219 1322 477 64 46 56 6943 0 6142 1906 100 3.6 5 5 3500 2000 9 999999999 137 0 0 88 0.2 0 0 +1.48464E7 36 27 60 98714 0 1054 464 0 0 0 0 0 0 0 90 4.1 3 3 3500 2000 9 999999999 137 0 0 88 0.2 0 0 +1.485E7 35 27 63 98705 0 0 458 0 0 0 0 0 0 0 80 3.6 3 3 3500 2000 9 999999999 137 0 0 88 0.2 0 0 +1.48536E7 34 28 71 98697 0 0 454 0 0 0 0 0 0 0 100 3.1 3 3 3500 2000 9 999999999 152 0 0 88 0.2 0 0 +1.48572E7 33 28 75 98689 0 0 448 0 0 0 0 0 0 0 110 4.1 3 3 3200 2000 9 999999999 152 0 0 88 0.2 0 0 +1.48608E7 33 28 75 98689 0 0 448 0 0 0 0 0 0 0 100 2.6 3 3 3200 2000 9 999999999 152 0 0 88 0.2 0 0 +1.48644E7 33 27 71 98689 0 0 446 0 0 0 0 0 0 0 100 3.1 3 3 3200 2000 9 999999999 138 0 0 88 0.2 0 0 +1.4868E7 31 27 79 98672 0 0 435 0 0 0 0 0 0 0 110 2.6 3 3 3200 2000 9 999999999 138 0 0 88 0.2 0 0 +1.48716E7 31 27 79 98672 0 0 435 0 0 0 0 0 0 0 130 2.1 3 3 3200 2000 9 999999999 138 0 0 88 0.2 0 0 +1.48752E7 31 27 79 98672 0 0 435 0 0 0 0 0 0 0 110 3.1 3 3 2500 2000 9 999999999 138 0 0 88 0.2 0 0 +1.48788E7 30 27 84 98663 0 0 436 0 0 0 0 0 0 0 120 3.6 5 5 2200 2000 9 999999999 138 0 0 88 0.2 0 0 +1.48824E7 29 29 100 98654 7 34 433 1 0 1 116 0 117 49 100 3.6 5 5 2000 2000 9 999999999 169 0 0 88 0.2 0 0 +1.4886E7 30 29 94 98663 283 1322 432 104 127 77 11295 1032 8394 2649 120 5.1 3 3 2800 2000 9 999999999 169 0 0 88 0.2 0 0 +1.48896E7 31 29 89 98672 558 1322 470 170 36 155 18739 1562 17130 6025 120 3.1 9 9 3000 2000 9 999999999 169 0 0 88 0.2 0 0 +1.48932E7 33 29 80 98689 812 1322 449 528 562 183 60339 26308 21000 8298 180 1.5 3 3 3500 2000 9 999999999 168 0 0 88 0.2 0 0 +1.48968E7 35 28 67 98705 1027 1322 459 724 726 160 86729 31822 19224 8134 172 0 3 3 4000 2000 9 999999999 152 0 0 88 0.2 0 0 +1.49004E7 36 27 60 98714 1190 1322 464 874 797 157 107499 35012 19385 8194 300 2.6 3 3 4000 2000 9 999999999 137 0 0 88 0.2 0 0 +1.4904E7 38 24 45 98730 1288 1322 472 970 826 165 120885 40466 20694 8657 300 3.6 3 3 4000 2000 9 999999999 101 0 0 88 0.2 0 0 +1.49076E7 39 24.5 44 98739 1316 1322 468 1007 848 163 112297 91865 20507 16714 136 2.8 1 1 4000 2000 9 999999999 106 0 0 88 0.2 0 0 +1.49112E7 40 25 43 98747 1272 1322 486 953 823 161 118602 38830 20158 8457 130 2.1 3 3 4000 2000 9 999999999 112 0 0 88 0.2 0 0 +1.49148E7 40 25 43 98747 1158 1322 486 848 801 147 104665 37544 18181 7692 80 1.5 3 3 4000 2000 9 999999999 112 0 0 88 0.2 0 0 +1.49184E7 40 26 46 98747 982 1322 487 685 724 148 82320 33874 17822 7504 40 1.5 3 3 4000 2000 9 999999999 123 0 0 88 0.2 0 0 +1.4922E7 39 27 51 98739 756 1322 482 480 618 127 56217 26713 14869 5964 70 3.6 3 3 3000 2000 9 999999999 137 0 0 88 0.2 0 0 +1.49256E7 38 28 57 98730 496 1322 478 258 349 127 28562 13291 14136 4934 70 2.6 3 3 3000 2000 9 999999999 151 0 0 88 0.2 0 0 +1.49292E7 37 28 60 98722 220 1322 472 68 68 57 7397 0 6195 1923 90 2.6 3 3 3000 2000 9 999999999 151 0 0 88 0.2 0 0 +1.49328E7 34 24 56 98697 0 1058 455 0 0 0 0 0 0 0 100 2.6 5 5 3000 2000 9 999999999 102 0 0 88 0.2 0 0 +1.49364E7 34 24 56 98697 0 0 448 0 0 0 0 0 0 0 110 1 3 3 2800 2000 9 999999999 102 0 0 88 0.2 0 0 +1.494E7 34 25 60 98697 0 0 450 0 0 0 0 0 0 0 90 1 3 3 2300 2000 9 999999999 113 0 0 88 0.2 0 0 +1.49436E7 34 25 60 98697 0 0 450 0 0 0 0 0 0 0 100 1 3 3 2300 2000 9 999999999 113 0 0 88 0.2 0 0 +1.49472E7 33 26 67 98689 0 0 445 0 0 0 0 0 0 0 348 0 3 3 2200 2000 9 999999999 125 0 0 88 0.2 0 0 +1.49508E7 33 26 67 98689 0 0 445 0 0 0 0 0 0 0 110 2.6 3 3 2000 2000 9 999999999 125 0 0 88 0.2 0 0 +1.49544E7 33 25 63 98689 0 0 444 0 0 0 0 0 0 0 90 2.1 3 3 2000 2000 9 999999999 113 0 0 88 0.2 0 0 +1.4958E7 32 25 67 98680 0 0 438 0 0 0 0 0 0 0 160 1 3 3 2000 2000 9 999999999 113 0 0 88 0.2 0 0 +1.49616E7 31 25 70 98672 0 0 432 0 0 0 0 0 0 0 170 1 3 3 2000 2000 9 999999999 113 0 0 88 0.2 0 0 +1.49652E7 31 25.5 73 98672 0 0 444 0 0 0 0 0 0 0 44 1 6 6 2200 2000 9 999999999 119 0 0 88 0.2 0 0 +1.49688E7 31 26 75 98672 6 29 434 1 0 1 105 0 106 44 320 1 3 3 2400 2000 9 999999999 125 0 0 88 0.2 0 0 +1.49724E7 32 25 67 98680 282 1322 438 104 128 77 11371 2022 8414 2635 250 3.6 3 3 2500 2000 9 999999999 113 0 0 88 0.2 0 0 +1.4976E7 33 22 53 98689 557 1322 421 314 432 132 35515 21966 15005 5383 280 4.6 0 0 2800 2000 9 999999999 84 0 0 88 0.2 0 0 +1.49796E7 35 22 47 98705 811 1322 433 540 645 144 63602 34795 17065 6851 290 7.2 0 0 3200 2000 9 999999999 83 0 0 88 0.2 0 0 +1.49832E7 37 24 48 98722 1026 1322 466 728 744 151 88167 37298 18315 7727 310 5.1 3 3 3500 2000 9 999999999 101 0 0 88 0.2 0 0 +1.49868E7 38 25 48 98730 1189 1322 473 877 808 150 108489 37906 18642 7870 330 4.1 3 3 3500 2000 9 999999999 112 0 0 88 0.2 0 0 +1.49904E7 39 26 48 98739 1288 1322 481 967 819 169 119903 37598 21085 8837 330 3.1 3 3 4000 2000 9 999999999 124 0 0 88 0.2 0 0 +1.4994E7 40 24 40 98747 1316 1322 484 996 778 222 121885 41668 27266 11214 290 5.1 3 3 4500 2000 9 999999999 101 0 0 88 0.2 0 0 +1.49976E7 41 24 38 98755 1272 1322 498 900 606 317 106588 37986 37819 14926 300 5.1 5 5 5000 2000 9 999999999 101 0 0 88 0.2 0 0 +1.50012E7 40 25 43 98747 1158 1322 493 800 611 264 94401 35674 31404 12685 80 5.1 5 5 6000 2000 9 999999999 112 0 0 88 0.2 0 0 +1.50048E7 40 25 43 98747 983 1322 493 647 597 203 76025 32852 24015 9832 130 2.6 5 5 5000 2000 9 999999999 112 0 0 88 0.2 0 0 +1.50084E7 35 24 53 98705 757 1322 461 456 494 173 52290 27362 19908 7678 350 3.1 5 5 3500 2000 9 999999999 102 0 0 88 0.2 0 0 +1.5012E7 35 24 53 98705 497 1322 461 245 292 136 27219 13838 15108 5167 60 5.1 5 5 4000 2000 9 999999999 102 0 0 88 0.2 0 0 +1.50156E7 35 24 53 98705 221 1322 461 65 49 57 7109 30 6242 1928 60 2.1 5 5 4000 2000 9 999999999 102 0 0 88 0.2 0 0 +1.50192E7 35 25 56 98705 0 1063 463 0 0 0 0 0 0 0 340 1 5 5 3000 2000 9 999999999 112 0 0 88 0.2 0 0 +1.50228E7 34 25 60 98697 0 0 457 0 0 0 0 0 0 0 90 1 5 5 3000 2000 9 999999999 113 0 0 88 0.2 0 0 +1.50264E7 33.5 25.5 63 98693 0 0 454 0 0 0 0 0 0 0 175 1 5 5 2750 2000 9 999999999 119 0 0 88 0.2 0 0 +1.503E7 33 26 67 98689 0 0 445 0 0 0 0 0 0 0 90 1 3 3 2500 2000 9 999999999 125 0 0 88 0.2 0 0 +1.50336E7 32 26 71 98680 0 0 439 0 0 0 0 0 0 0 100 1 3 3 2000 2000 9 999999999 125 0 0 88 0.2 0 0 +1.50372E7 32 26 71 98680 0 0 446 0 0 0 0 0 0 0 100 1 5 5 2000 2000 9 999999999 125 0 0 88 0.2 0 0 +1.50408E7 31 27 79 98672 0 0 442 0 0 0 0 0 0 0 240 2.1 5 5 2000 2000 9 999999999 138 0 0 88 0.2 0 0 +1.50444E7 31 27 79 98672 0 0 442 0 0 0 0 0 0 0 250 1.5 5 5 2000 2000 9 999999999 138 0 0 88 0.2 0 0 +1.5048E7 31 26 75 98672 0 0 440 0 0 0 0 0 0 0 250 2.6 5 5 2000 2000 9 999999999 125 0 0 88 0.2 0 0 +1.50516E7 31 25.5 73 98672 0 0 444 0 0 0 0 0 0 0 1 1.3 6 6 2000 2000 9 999999999 119 0 0 88 0.2 0 0 +1.50552E7 31 25 70 98672 5 23 439 1 0 1 80 0 81 34 117 0 5 5 2000 2000 9 999999999 113 0 0 88 0.2 0 0 +1.50588E7 32 27 75 98680 281 1322 447 97 96 77 10577 1154 8391 2632 270 1 5 5 2000 2000 9 999999999 138 0 0 88 0.2 0 0 +1.50624E7 34 26 63 98697 556 1322 458 290 332 150 32209 15970 16757 5891 340 1 5 5 1600 2000 9 999999999 124 0 0 88 0.2 0 0 +1.5066E7 34 26 63 98697 810 1322 458 498 510 186 57208 27229 21435 8398 110 2.6 5 5 2000 2000 9 999999999 124 0 0 88 0.2 0 0 +1.50696E7 35 26 60 98705 1025 1322 457 725 689 191 85944 35230 22720 9453 60 2.1 3 3 2500 2000 9 999999999 124 0 0 88 0.2 0 0 +1.50732E7 38 26 51 98730 1188 1322 455 886 801 166 108636 37398 20496 8629 100 1.5 0 0 3000 2000 9 999999999 124 0 0 88 0.2 0 0 +1.50768E7 38 26 51 98730 1288 1322 455 979 846 154 110344 92434 19672 10927 90 3.1 0 0 3000 2000 9 999999999 124 0 0 88 0.2 0 0 +1.50804E7 38 26 51 98730 1316 1322 475 993 770 226 120947 38909 27651 11389 70 3.1 3 3 3000 2000 9 999999999 124 0 0 88 0.2 0 0 +1.5084E7 39 24 43 98739 1272 1322 486 900 587 335 106143 37746 39805 15565 360 2.1 5 5 3000 2000 9 999999999 101 0 0 88 0.2 0 0 +1.50876E7 40 22 36 98747 1159 1322 481 853 738 206 103047 42269 24998 10333 40 3.1 3 3 3500 2000 9 999999999 83 0 0 88 0.2 0 0 +1.50912E7 39 21 36 98739 983 1322 481 652 592 212 76752 36640 25053 10158 40 1.5 5 5 4000 2000 9 999999999 75 0 0 88 0.2 0 0 +1.50948E7 38 22 40 98730 758 1322 476 458 503 170 52768 29099 19628 7574 50 1 5 5 4000 2000 9 999999999 83 0 0 88 0.2 0 0 +1.50984E7 38 21 38 98730 498 1322 475 247 298 135 27548 15359 15121 5160 70 1 5 5 4000 2000 9 999999999 75 0 0 88 0.2 0 0 +1.5102E7 37 24 48 98722 222 1322 473 66 50 57 7157 44 6272 1937 50 1 5 5 4000 2000 9 999999999 101 0 0 88 0.2 0 0 +1.51056E7 36 24 50 98714 0 1067 460 0 0 0 0 0 0 0 80 1 3 3 3500 2000 9 999999999 102 0 0 88 0.2 0 0 +1.51092E7 35 25 56 98705 0 0 455 0 0 0 0 0 0 0 274 0 3 3 3000 2000 9 999999999 112 0 0 88 0.2 0 0 +1.51128E7 36 23 47 98714 0 0 459 0 0 0 0 0 0 0 130 3.1 3 3 2400 2000 9 999999999 92 0 0 88 0.2 0 0 +1.51164E7 36 23 47 98714 0 0 459 0 0 0 0 0 0 0 110 1 3 3 2400 2000 9 999999999 92 0 0 88 0.2 0 0 +1.512E7 34 25 60 98697 0 0 457 0 0 0 0 0 0 0 100 2.1 5 5 2200 2000 9 999999999 113 0 0 88 0.2 0 0 +1.51236E7 34 26 63 98697 0 0 458 0 0 0 0 0 0 0 181 0 5 5 2000 2000 9 999999999 124 0 0 88 0.2 0 0 +1.51272E7 33 26 67 98689 0 0 452 0 0 0 0 0 0 0 168 0 5 5 2000 2000 9 999999999 125 0 0 88 0.2 0 0 +1.51308E7 33 26 67 98689 0 0 479 0 0 0 0 0 0 0 80 1 9 9 2000 3000 9 999999999 125 0 0 88 0.2 0 0 +1.51344E7 33 27 71 98689 0 0 480 0 0 0 0 0 0 0 110 1 9 9 2000 3000 9 999999999 138 0 0 88 0.2 0 0 +1.5138E7 32 25 67 98680 0 0 471 0 0 0 0 0 0 0 70 3.6 9 9 2500 3000 9 999999999 113 0 0 88 0.2 0 0 +1.51416E7 32 26 71 98680 2 17 472 0 0 0 33 0 33 14 90 1 9 9 2500 3000 9 999999999 125 0 0 88 0.2 0 0 +1.51452E7 33 25 63 98689 280 1322 477 54 0 54 5188 0 5229 2027 210 1 9 9 2500 3000 9 999999999 113 0 0 88 0.2 0 0 +1.51488E7 34 26 63 98697 555 1322 458 289 299 163 31851 15151 18120 6235 240 2.6 5 5 2800 2000 9 999999999 124 0 0 88 0.2 0 0 +1.51524E7 35 25 56 98705 809 1322 463 498 513 185 57295 28170 21338 8351 270 2.6 5 5 3500 2000 9 999999999 112 0 0 88 0.2 0 0 +1.5156E7 37 25 50 98722 1025 1322 467 725 692 189 86179 36485 22530 9368 300 4.1 3 3 3500 2000 9 999999999 112 0 0 88 0.2 0 0 +1.51596E7 38 23 42 98730 1188 1322 471 878 818 144 109317 40464 17948 7568 270 3.6 3 3 4000 2000 9 999999999 92 0 0 88 0.2 0 0 +1.51632E7 39 23 40 98739 1287 1322 477 971 829 163 121212 41746 20469 8556 280 4.1 3 3 4000 2000 9 999999999 92 0 0 88 0.2 0 0 +1.51668E7 40 23 38 98747 1316 1322 483 997 827 174 124440 42176 21765 9065 320 3.1 3 3 4000 2000 9 999999999 91 0 0 88 0.2 0 0 +1.51704E7 41 22 34 98755 1272 1322 487 958 834 156 105543 89199 19836 9669 270 2.6 3 3 4000 2000 9 999999999 83 0 0 88 0.2 0 0 +1.5174E7 42 21 30 98763 1159 1322 492 855 785 166 105048 42952 20527 8596 300 3.6 3 3 4500 2000 9 999999999 75 0 0 88 0.2 0 0 +1.51776E7 42 21 30 98763 984 1322 500 653 592 212 76802 36641 25085 10171 290 4.1 5 5 4500 2000 9 999999999 75 0 0 88 0.2 0 0 +1.51812E7 40 26 46 98747 759 1322 495 455 470 186 51797 25316 21247 8130 30 5.1 5 5 4500 2000 9 999999999 123 0 0 88 0.2 0 0 +1.51848E7 40 25 43 98747 499 1322 486 261 356 127 29082 15583 14192 4940 40 2.6 3 3 4500 2000 9 999999999 112 0 0 88 0.2 0 0 +1.51884E7 38 25 48 98730 222 1322 481 66 49 57 7169 0 6287 1945 100 2.1 5 5 3500 2000 9 999999999 112 0 0 88 0.2 0 0 +1.5192E7 37 26 54 98722 0 1070 469 0 0 0 0 0 0 0 100 1.5 3 3 3500 2000 9 999999999 124 0 0 88 0.2 0 0 +1.51956E7 36 26 57 98714 0 0 463 0 0 0 0 0 0 0 100 2.1 3 3 2500 2000 9 999999999 124 0 0 88 0.2 0 0 +1.51992E7 35 26 60 98705 0 0 457 0 0 0 0 0 0 0 110 2.6 3 3 2500 2000 9 999999999 124 0 0 88 0.2 0 0 +1.52028E7 35 26 60 98705 0 0 457 0 0 0 0 0 0 0 110 1.5 3 3 2500 2000 9 999999999 124 0 0 88 0.2 0 0 +1.52064E7 35 27 63 98705 0 0 458 0 0 0 0 0 0 0 100 1 3 3 2500 2000 9 999999999 137 0 0 88 0.2 0 0 +1.521E7 35 27 63 98705 0 0 465 0 0 0 0 0 0 0 80 1.5 5 5 2500 2000 9 999999999 137 0 0 88 0.2 0 0 +1.52136E7 34 26 63 98697 0 0 458 0 0 0 0 0 0 0 221 0 5 5 2500 2000 9 999999999 124 0 0 88 0.2 0 0 +1.52172E7 33 26 67 98689 0 0 452 0 0 0 0 0 0 0 120 4.1 5 5 2500 2000 9 999999999 125 0 0 88 0.2 0 0 +1.52208E7 32 27 75 98680 0 0 447 0 0 0 0 0 0 0 120 3.6 5 5 2500 2000 9 999999999 138 0 0 88 0.2 0 0 +1.52244E7 32 27 75 98680 0 0 447 0 0 0 0 0 0 0 100 3.6 5 5 2800 2000 9 999999999 138 0 0 88 0.2 0 0 +1.5228E7 31 27 79 98672 2 11 442 0 0 0 37 0 38 16 110 5.1 5 5 2800 2000 9 999999999 138 0 0 88 0.2 0 0 +1.52316E7 31 28 84 98672 279 1322 443 96 93 76 10373 871 8291 2604 100 4.1 5 5 2800 2000 9 999999999 153 0 0 88 0.2 0 0 +1.52352E7 32 27 75 98680 553 1322 447 287 328 150 31856 15120 16712 5876 90 4.6 5 5 3000 2000 9 999999999 138 0 0 88 0.2 0 0 +1.52388E7 34 28 71 98697 808 1322 461 495 500 189 56494 24974 21710 8505 150 5.1 5 5 3500 2000 9 999999999 152 0 0 88 0.2 0 0 +1.52424E7 35.5 27.5 63 98710 1024 1322 469 695 642 198 81936 31505 23445 9742 122 4.6 5 5 3500 2000 9 999999999 144 0 0 88 0.2 0 0 +1.5246E7 37 27 57 98722 1187 1322 477 822 602 281 96648 33586 33293 13389 80 4.1 5 5 3500 2000 9 999999999 137 0 0 88 0.2 0 0 +1.52496E7 39 28 54 98739 1287 1322 491 907 623 301 107364 33384 35845 14359 110 1.5 5 5 4000 2000 9 999999999 151 0 0 88 0.2 0 0 +1.52532E7 39 26 48 98739 1316 1322 488 935 628 311 111256 36292 37175 14790 100 3.1 5 5 4000 2000 9 999999999 124 0 0 88 0.2 0 0 +1.52568E7 40 22 36 98747 1272 1322 489 904 650 278 108366 40379 33492 13439 40 2.6 5 5 4000 2000 9 999999999 83 0 0 88 0.2 0 0 +1.52604E7 40 24 40 98747 1159 1322 492 802 614 263 94847 36778 31342 12649 60 3.6 5 5 5000 2000 9 999999999 101 0 0 88 0.2 0 0 +1.5264E7 41 24 38 98755 984 1322 498 650 600 203 76457 33938 24014 9824 40 2.6 5 5 5000 2000 9 999999999 101 0 0 88 0.2 0 0 +1.52676E7 40 23 38 98747 759 1322 490 458 481 182 52456 28024 20893 7993 100 2.1 5 5 5000 2000 9 999999999 91 0 0 88 0.2 0 0 +1.52712E7 39 22 38 98739 500 1322 483 248 296 136 27576 14953 15182 5187 70 3.1 5 5 5000 2000 9 999999999 83 0 0 88 0.2 0 0 +1.52748E7 38 22 40 98730 223 1322 476 66 51 58 7265 221 6341 1954 80 1 5 5 3000 2000 9 999999999 83 0 0 88 0.2 0 0 +1.52784E7 37 24 48 98722 0 1073 473 0 0 0 0 0 0 0 100 1 5 5 3000 2000 9 999999999 101 0 0 88 0.2 0 0 +1.5282E7 36 24 50 98714 0 0 460 0 0 0 0 0 0 0 110 1 3 3 2500 2000 9 999999999 102 0 0 88 0.2 0 0 +1.52856E7 35 24 53 98705 0 0 454 0 0 0 0 0 0 0 110 1 3 3 2500 2000 9 999999999 102 0 0 88 0.2 0 0 +1.52892E7 34 26 63 98697 0 0 451 0 0 0 0 0 0 0 120 4.6 3 3 2500 2000 9 999999999 124 0 0 88 0.2 0 0 +1.52928E7 33 28 75 98689 0 0 448 0 0 0 0 0 0 0 120 5.1 3 3 2500 2000 9 999999999 152 0 0 88 0.2 0 0 +1.52964E7 32 29 84 98680 0 0 443 0 0 0 0 0 0 0 140 7.2 3 3 2800 2000 9 999999999 169 0 0 88 0.2 0 0 +1.53E7 32 29 84 98680 0 0 443 0 0 0 0 0 0 0 120 6.2 3 3 3000 2000 9 999999999 169 0 0 88 0.2 0 0 +1.53036E7 31.5 29 87 98676 0 0 474 0 0 0 0 0 0 0 312 6.2 9 9 3000 2000 9 999999999 169 0 0 88 0.2 0 0 +1.53072E7 31 29 89 98672 0 0 444 0 0 0 0 0 0 0 120 6.2 5 5 3000 2000 9 999999999 169 0 0 88 0.2 0 0 +1.53108E7 30 28 89 98663 0 0 437 0 0 0 0 0 0 0 120 5.1 5 5 3000 2000 9 999999999 153 0 0 88 0.2 0 0 +1.53144E7 30 28 89 98663 0 0 437 0 0 0 0 0 0 0 120 6.2 5 5 3000 2000 9 999999999 153 0 0 88 0.2 0 0 +1.5318E7 30.5 28.5 89 98667 277 1326 467 56 0 56 5330 0 5373 2075 62 5.1 9 9 3000 2000 9 999999999 161 0 0 88 0.2 0 0 +1.53216E7 31 29 89 98672 552 1322 444 285 292 163 31288 13030 18010 6219 130 4.1 5 5 3000 2000 9 999999999 169 0 0 88 0.2 0 0 +1.53252E7 33 29 80 98689 806 1322 456 493 447 220 55483 23297 24938 9525 110 4.1 5 5 3000 2000 9 999999999 168 0 0 88 0.2 0 0 +1.53288E7 33 28 75 98689 1023 1322 482 376 54 335 42529 3419 38057 14501 100 4.6 9 9 3000 3000 9 999999999 152 0 0 88 0.2 0 0 +1.53324E7 33 28 75 98689 1186 1322 482 455 63 398 51935 4111 45777 17208 120 5.1 9 9 3500 3000 9 999999999 152 0 0 88 0.2 0 0 +1.5336E7 35 29 71 98705 1286 1322 496 502 63 440 57559 4042 50872 18905 90 3.1 9 9 3500 3000 9 999999999 168 0 0 88 0.2 0 0 +1.53396E7 35 28 67 98705 1316 1322 494 517 64 453 59491 4231 52576 19420 110 4.1 9 9 3500 3000 9 999999999 152 0 0 88 0.2 0 0 +1.53432E7 37 28 60 98722 1273 1322 507 496 83 416 57157 5353 48260 18140 120 6.2 9 9 5000 3000 9 999999999 151 0 0 88 0.2 0 0 +1.53468E7 37 27 57 98722 1160 1322 477 798 557 309 92791 32913 36198 14314 90 4.1 5 5 6000 2000 9 999999999 137 0 0 88 0.2 0 0 +1.53504E7 38 26 51 98730 985 1322 475 688 723 149 82611 33914 17934 7552 100 4.1 3 3 6000 2000 9 999999999 124 0 0 88 0.2 0 0 +1.5354E7 38 26 51 98730 760 1322 475 484 601 138 56390 28170 16201 6445 90 5.1 3 3 6000 2000 9 999999999 124 0 0 88 0.2 0 0 +1.53576E7 37 27 57 98722 500 1322 470 261 353 128 29006 14261 14241 4972 90 5.7 3 3 6000 2000 9 999999999 137 0 0 88 0.2 0 0 +1.53612E7 36 27 60 98714 224 1322 464 70 72 58 7637 0 6336 1966 110 4.6 3 3 6000 2000 9 999999999 137 0 0 88 0.2 0 0 +1.53648E7 35 27 63 98705 0 1076 458 0 0 0 0 0 0 0 110 3.1 3 3 4000 2000 9 999999999 137 0 0 88 0.2 0 0 +1.53684E7 35 27 63 98705 0 0 465 0 0 0 0 0 0 0 110 4.6 5 5 3500 2000 9 999999999 137 0 0 88 0.2 0 0 +1.5372E7 35 26 60 98705 0 0 464 0 0 0 0 0 0 0 110 7.2 5 5 3500 2000 9 999999999 124 0 0 88 0.2 0 0 +1.53756E7 34 25 60 98697 0 0 457 0 0 0 0 0 0 0 110 6.2 5 5 3500 2000 9 999999999 113 0 0 88 0.2 0 0 +1.53792E7 33 26 67 98689 0 0 445 0 0 0 0 0 0 0 110 6.2 3 3 3500 2000 9 999999999 125 0 0 88 0.2 0 0 +1.53828E7 32 26 71 98680 0 0 439 0 0 0 0 0 0 0 110 7.7 3 3 3500 2000 9 999999999 125 0 0 88 0.2 0 0 +1.53864E7 32 26 71 98680 0 0 472 0 0 0 0 0 0 0 110 7.7 9 9 3500 3000 9 999999999 125 0 0 88 0.2 0 0 +1.539E7 31 27 79 98672 0 0 468 0 0 0 0 0 0 0 110 5.1 9 9 3000 3000 9 999999999 138 0 0 88 0.2 0 0 +1.53936E7 31 27 79 98672 0 0 468 0 0 0 0 0 0 0 180 2.6 9 9 3000 3000 9 999999999 138 0 0 88 0.2 0 0 +1.53972E7 29 23 70 98654 0 0 450 0 0 0 0 0 0 0 270 6.2 9 9 3000 3000 9 999999999 93 0 0 88 0.2 0 0 +1.54008E7 27 25 89 98637 0 0 441 0 0 0 0 0 0 0 120 4.1 9 9 3000 3000 9 999999999 114 0 0 88 0.2 0 0 +1.54044E7 29 25 79 98654 276 1319 453 52 0 52 5064 0 5104 1980 100 3.6 9 9 3500 3000 9 999999999 114 0 0 88 0.2 0 0 +1.5408E7 30.5 26 77 98667 551 1322 446 247 210 160 27311 10486 17743 6122 48 5.1 7 7 3750 3000 9 999999999 125 0 0 88 0.2 0 0 +1.54116E7 32 27 75 98680 805 1322 474 274 71 231 30821 4096 26114 9836 100 6.7 9 9 4000 3000 9 999999999 138 0 0 88 0.2 0 0 +1.54152E7 32.7 27 72 98686 1022 1322 456 637 454 286 73012 27173 33028 13004 113 5.8 6 6 4333 3000 9 999999999 138 0 0 88 0.2 0 0 +1.54188E7 33.3 27 70 98691 1186 1322 459 789 537 307 92169 31324 36097 14318 97 5 6 6 4666 3000 9 999999999 138 0 0 88 0.2 0 0 +1.54224E7 34 27 67 98697 1286 1322 459 908 535 387 105530 33837 45315 17322 80 4.1 5 5 5000 2000 9 999999999 138 0 0 88 0.2 0 0 +1.5426E7 36 27 60 98714 1316 1322 499 518 84 434 59902 5602 50595 18874 100 4.1 9 9 5000 3000 9 999999999 137 0 0 88 0.2 0 0 +1.54296E7 36 26 57 98714 1273 1322 498 498 85 417 57549 5758 48497 18161 110 4.1 9 9 5000 3000 9 999999999 124 0 0 88 0.2 0 0 +1.54332E7 37 27 57 98722 1160 1322 477 798 557 309 92826 32915 36219 14321 120 3.6 5 5 6000 2000 9 999999999 137 0 0 88 0.2 0 0 +1.54368E7 37 26 54 98722 985 1322 476 649 594 206 76000 31742 24234 9931 110 4.1 5 5 6000 2000 9 999999999 124 0 0 88 0.2 0 0 +1.54404E7 37 26 54 98722 760 1322 476 457 471 186 51986 25379 21270 8146 80 2.1 5 5 6000 2000 9 999999999 124 0 0 88 0.2 0 0 +1.5444E7 36 26 57 98714 501 1322 470 247 291 137 27332 12907 15224 5227 100 3.6 5 5 5000 2000 9 999999999 124 0 0 88 0.2 0 0 +1.54476E7 36 26 57 98714 224 1322 470 67 51 58 7254 0 6342 1966 110 4.1 5 5 5000 2000 9 999999999 124 0 0 88 0.2 0 0 +1.54512E7 35 25 56 98705 0 1078 455 0 0 0 0 0 0 0 100 4.1 3 3 3500 2000 9 999999999 112 0 0 88 0.2 0 0 +1.54548E7 34 26 63 98697 0 0 451 0 0 0 0 0 0 0 100 4.6 3 3 3500 2000 9 999999999 124 0 0 88 0.2 0 0 +1.54584E7 34 26 63 98697 0 0 451 0 0 0 0 0 0 0 120 5.1 3 3 3500 2000 9 999999999 124 0 0 88 0.2 0 0 +1.5462E7 32 27 75 98680 0 0 441 0 0 0 0 0 0 0 160 4.6 3 3 3500 2000 9 999999999 138 0 0 88 0.2 0 0 +1.54656E7 31 27 79 98672 0 0 435 0 0 0 0 0 0 0 160 3.1 3 3 3500 2000 9 999999999 138 0 0 88 0.2 0 0 +1.54692E7 31 27 79 98672 0 0 435 0 0 0 0 0 0 0 160 3.1 3 3 3500 2000 9 999999999 138 0 0 88 0.2 0 0 +1.54728E7 31 27 79 98672 0 0 442 0 0 0 0 0 0 0 160 2.6 5 5 3500 2000 9 999999999 138 0 0 88 0.2 0 0 +1.54764E7 30 27 84 98663 0 0 436 0 0 0 0 0 0 0 140 1.5 5 5 4000 2000 9 999999999 138 0 0 88 0.2 0 0 +1.548E7 30 28 89 98663 0 0 437 0 0 0 0 0 0 0 150 1 5 5 4000 2000 9 999999999 153 0 0 88 0.2 0 0 +1.54836E7 30 27 84 98663 0 0 462 0 0 0 0 0 0 0 120 2.1 9 9 4000 3000 9 999999999 138 0 0 88 0.2 0 0 +1.54872E7 30 27 84 98663 0 0 452 0 0 0 0 0 0 0 351 3.1 8 8 4000 3000 9 999999999 138 0 0 88 0.2 0 0 +1.54908E7 30 27 84 98663 275 1312 462 52 0 52 4987 0 5028 1959 100 4.1 9 9 4000 3000 9 999999999 138 0 0 88 0.2 0 0 +1.54944E7 27 27 100 98637 550 1321 444 158 23 148 17488 1035 16524 5808 100 5.1 9 9 1500 3000 0 919999999 139 0 0 88 0.2 0 0 +1.5498E7 28.5 27.5 94 98650 804 1321 466 205 9 200 23309 453 22835 8847 219 4.6 10 10 3000 3000 9 999999999 146 0 0 88 0.2 0 0 +1.55016E7 30 28 89 98663 1021 1321 463 375 32 351 42249 2053 39782 14956 80 4.1 9 9 4500 3000 0 919999999 153 0 0 88 0.2 0 0 +1.55052E7 30 27 84 98663 1185 1321 462 455 64 398 52033 4265 45831 17197 100 6.2 9 9 4500 900 0 919999999 138 0 0 88 0.2 0 0 +1.55088E7 31 27 79 98672 1286 1321 468 503 64 441 57909 4365 51110 18916 100 5.1 9 9 4500 900 0 919999999 138 0 0 88 0.2 0 0 +1.55124E7 31 27 79 98672 1316 1321 468 518 64 454 59671 4387 52701 19427 110 7.7 9 9 4000 900 0 919999999 138 0 0 88 0.2 0 0 +1.5516E7 27 27 100 98637 1273 1321 444 497 64 435 57138 4351 50420 18693 100 4.6 9 9 3000 2700 0 919999999 139 0 0 88 0.2 0 0 +1.55196E7 27 27 100 98637 1160 1321 444 443 63 387 50580 4225 44545 16773 100 4.1 9 9 2800 750 0 919999999 139 0 0 88 0.2 0 0 +1.55232E7 28 28 100 98646 986 1321 451 359 26 339 40243 1713 38291 14343 90 5.7 9 9 3000 750 0 919999999 153 0 0 88 0.2 0 0 +1.55268E7 27 27 100 98637 761 1321 444 253 24 239 28172 1428 26805 9750 100 5.1 9 9 3000 750 0 919999999 139 0 0 88 0.2 0 0 +1.55304E7 28 28 100 98646 501 1321 451 137 16 131 15139 639 14521 5060 110 3.6 9 9 3000 750 0 919999999 153 0 0 88 0.2 0 0 +1.5534E7 28 27 94 98646 225 1321 424 67 43 59 7244 0 6476 2001 100 5.7 5 5 3000 2000 0 919999999 139 0 0 88 0.2 0 0 +1.55376E7 28 28 100 98646 0 1080 451 0 0 0 0 0 0 0 100 4.1 9 9 3000 750 0 919999999 153 0 0 88 0.2 0 0 +1.55412E7 28 28 100 98646 0 0 451 0 0 0 0 0 0 0 100 4.1 9 9 3000 900 0 919999999 153 0 0 88 0.2 0 0 +1.55448E7 28 28 100 98646 0 0 426 0 0 0 0 0 0 0 110 4.1 5 5 3000 2000 0 919999999 153 0 0 88 0.2 0 0 +1.55484E7 28 28 100 98646 0 0 426 0 0 0 0 0 0 0 100 4.6 5 5 3000 2000 0 919999999 153 0 0 88 0.2 0 0 +1.5552E7 28 28 100 98646 0 0 426 0 0 0 0 0 0 0 100 5.1 5 5 3000 2000 0 919999999 153 0 0 88 0.2 0 0 +1.55556E7 28 28 100 98646 0 0 426 0 0 0 0 0 0 0 100 4.1 5 5 3000 2000 0 919999999 153 0 0 88 0.2 0 0 +1.55592E7 28 28 100 98646 0 0 426 0 0 0 0 0 0 0 100 4.1 5 5 2500 2000 0 919999999 153 0 0 88 0.2 0 0 +1.55628E7 27 27 100 98637 0 0 444 0 0 0 0 0 0 0 140 4.1 9 9 1500 3000 0 919999999 139 0 0 88 0.2 0 0 +1.55664E7 26 26 100 98628 0 0 449 0 0 0 0 0 0 0 120 5.1 10 10 800 900 0 919999999 126 0 0 88 0.2 0 0 +1.557E7 26.2 26.2 100 98630 0 0 450 0 0 0 0 0 0 0 98 4.6 10 10 975 900 9 999999999 129 0 0 88 0.2 0 0 +1.55736E7 26.5 26.5 100 98632 0 0 452 0 0 0 0 0 0 0 142 4.1 10 10 1150 900 9 999999999 132 0 0 88 0.2 0 0 +1.55772E7 26.8 26.8 100 98635 273 1304 455 31 0 31 3016 0 3040 1284 205 3.6 10 10 1325 900 9 999999999 136 0 0 88 0.2 0 0 +1.55808E7 27 27 100 98637 548 1321 456 96 0 96 9440 0 9525 4151 110 3.1 10 10 1500 600 0 919999999 139 0 0 88 0.2 0 0 +1.55844E7 28 28 100 98646 803 1321 464 166 1 166 19150 32 19197 7643 70 1 10 10 1700 600 0 919999999 153 0 0 88 0.2 0 0 +1.5588E7 28 28 100 98646 1020 1321 464 229 5 225 26663 252 26372 10804 34 2 10 10 1600 600 9 999999999 153 0 0 88 0.2 0 0 +1.55916E7 28 28 100 98646 1185 1321 464 277 7 271 32571 368 32038 12977 100 3.1 10 10 1500 600 0 919999999 153 0 0 88 0.2 0 0 +1.55952E7 28.5 28.5 100 98650 1285 1321 467 306 13 293 36251 674 34986 14076 180 2.6 10 10 1150 600 9 999999999 161 0 0 88 0.2 0 0 +1.55988E7 29 29 100 98654 1315 1321 458 516 83 433 59449 5167 50321 18849 90 2.1 9 9 800 2000 0 919999999 169 0 0 88 0.2 0 0 +1.56024E7 31 30.5 97 98671 1273 1321 486 301 13 289 35538 600 34318 13884 181 1 10 10 1250 2000 9 999999999 196 0 0 88 0.2 0 0 +1.5606E7 33 32 95 98689 1161 1321 501 268 7 262 31237 283 30757 12604 292 0 10 10 1700 600 0 919999999 227 0 0 88 0.2 0 0 +1.56096E7 32 31.5 97 98680 986 1321 494 218 5 214 25143 191 24897 10263 150 0 10 10 1400 600 9 999999999 216 0 0 88 0.2 0 0 +1.56132E7 31 31 100 98672 761 1321 487 153 0 153 15264 0 15414 7018 110 0 10 10 1100 600 0 919999999 206 0 0 88 0.2 0 0 +1.56168E7 30 30 100 98663 502 1321 479 83 0 83 8121 0 8194 3574 170 0 10 10 1000 600 0 919999999 187 0 0 88 0.2 0 0 +1.56204E7 29 29 100 98654 225 1321 458 37 0 37 3532 0 3560 1406 182 0.8 9 9 1100 600 0 919999999 169 0 0 88 0.2 0 0 +1.5624E7 28.8 28.8 100 98652 0 1081 458 0 0 0 0 0 0 0 184 0.2 9 9 1200 600 0 919999999 166 0 0 88 0.2 0 0 +1.56276E7 28.5 28.5 100 98650 0 0 458 0 0 0 0 0 0 0 194 0.5 9 9 1000 750 0 919999999 161 0 0 88 0.2 0 0 +1.56312E7 28.8 28 96 98652 0 0 458 0 0 0 0 0 0 0 153 0.5 9 9 1000 750 0 919999999 153 0 0 88 0.2 0 0 +1.56348E7 29 27.5 92 98655 0 0 451 0 0 0 0 0 0 0 140 0.5 9 9 1000 3000 0 919999999 146 0 0 88 0.2 0 0 +1.56384E7 29.6 27.1 87 98310 0 0 451 0 0 0 0 0 0 0 195 0.5 9 9 1000 3000 0 919999999 140 0 0 88 0.2 0 0 +1.5642E7 30.1 26.9 83 98315 0 0 436 0 0 0 0 0 0 0 233 0.5 5 5 3500 3048 0 19999999 137 0 0 88 0.2 0 0 +1.56456E7 30.1 26.9 83 98315 0 0 436 0 0 0 0 0 0 0 279 1.5 5 5 3500 3048 0 19999999 137 0 0 88 0.2 0 0 +1.56492E7 30 26.5 81 97977 0 0 437 0 0 0 0 0 0 0 277 2.3 5 5 2000 3000 0 19999999 131 0 0 88 0.2 0 0 +1.56528E7 29.7 26.6 83 98323 0 0 436 0 0 0 0 0 0 0 267 3 5 5 3500 3048 0 19999999 133 0 0 88 0.2 0 0 +1.56564E7 29.7 26.6 83 98323 0 0 436 0 0 0 0 0 0 0 272 3.2 5 5 3500 3048 0 19999999 133 0 0 88 0.2 0 0 +1.566E7 30 26.5 82 98020 0 0 458 0 0 0 0 0 0 0 265 3 9 9 2000 2400 9 999999999 131 0 0 88 0.2 0 0 +1.56636E7 29 27 89 98654 272 1296 430 92 86 74 9950 839 8061 2522 280 2.6 5 5 2500 3048 9 999999999 139 0 0 88 0.2 0 0 +1.56672E7 30 27 84 98663 547 1321 462 156 24 147 17353 1082 16336 5745 260 3.1 9 9 2200 3048 9 999999999 138 0 0 88 0.2 0 0 +1.56708E7 31 26.6 78 97449 802 1321 441 491 451 217 55526 25598 24697 9397 250 3.1 5 5 2000 3000 9 999999999 132 0 0 88 0.2 0 0 +1.56744E7 33 27 71 98689 1019 1321 453 676 601 213 79329 31146 25092 10330 280 5.1 5 5 2800 3048 9 999999999 138 0 0 88 0.2 0 0 +1.5678E7 33 26 67 98689 1184 1321 452 820 605 279 96646 34758 33023 13277 280 4.6 5 5 3500 3048 9 999999999 125 0 0 88 0.2 0 0 +1.56816E7 34.4 25.8 61 97390 1285 1321 460 909 632 295 108099 36230 35270 14118 290 5.7 5 5 2000 3048 9 999999999 121 0 0 88 0.2 0 0 +1.56852E7 35 26 60 98705 1315 1321 464 935 627 311 111149 36260 37211 14801 260 6.2 5 5 3500 3048 9 999999999 124 0 0 88 0.2 0 0 +1.56888E7 36 26 57 98714 1273 1321 470 898 540 378 104572 34894 44310 16979 260 5.1 5 5 3500 3048 9 999999999 124 0 0 88 0.2 0 0 +1.56924E7 35.2 25.7 58 97212 1161 1321 492 444 154 309 51775 9459 36253 14309 270 4.6 9 9 2000 3000 9 999999999 119 0 0 88 0.2 0 0 +1.5696E7 36 27 60 98714 986 1321 471 648 518 262 74439 30014 30210 11979 260 4.6 5 5 4000 3000 9 999999999 137 0 0 88 0.2 0 0 +1.56996E7 37 27 57 98722 762 1321 477 457 426 212 51400 23764 23919 8962 260 4.1 5 5 4000 3000 9 999999999 137 0 0 88 0.2 0 0 +1.57032E7 35.8 26.1 58 97041 502 1321 497 138 16 131 15268 708 14641 5082 270 3.6 9 9 4000 3000 9 999999999 124 0 0 88 0.2 0 0 +1.57068E7 33 27 71 98689 225 1321 480 37 0 37 3559 0 3587 1410 260 5.1 9 9 3200 3048 9 999999999 138 0 0 88 0.2 0 0 +1.57104E7 32 27 75 98680 0 1082 447 0 0 0 0 0 0 0 260 3.1 5 5 3200 3048 9 999999999 138 0 0 88 0.2 0 0 +1.5714E7 31.6 26 72 97123 0 0 444 0 0 0 0 0 0 0 230 1.5 5 5 2000 3000 9 999999999 123 0 0 88 0.2 0 0 +1.57176E7 32 26 71 98680 0 0 446 0 0 0 0 0 0 0 240 3.1 5 5 3200 3048 9 999999999 125 0 0 88 0.2 0 0 +1.57212E7 30 27 84 98663 0 0 436 0 0 0 0 0 0 0 230 5.1 5 5 3200 3048 0 919999999 138 0 0 88 0.2 0 0 +1.57248E7 30 26.9 84 97159 0 0 436 0 0 0 0 0 0 0 230 3.1 5 5 2000 3048 0 919999999 136 0 0 88 0.2 0 0 +1.57284E7 30 27 84 98663 0 0 436 0 0 0 0 0 0 0 230 2.6 5 5 3000 3048 0 919999999 138 0 0 88 0.2 0 0 +1.5732E7 31 27 79 98672 0 0 442 0 0 0 0 0 0 0 240 2.6 5 5 3000 3048 0 919999999 138 0 0 88 0.2 0 0 +1.57356E7 30.2 25.4 76 96965 0 0 461 0 0 0 0 0 0 0 230 3.1 9 9 2000 3000 0 919999999 116 0 0 88 0.2 0 0 +1.57392E7 30 26 79 98663 0 0 460 0 0 0 0 0 0 0 250 3.1 9 9 3000 3048 0 919999999 125 0 0 88 0.2 0 0 +1.57428E7 30 26 79 98663 0 0 460 0 0 0 0 0 0 0 270 4.1 9 9 3500 3048 0 919999999 125 0 0 88 0.2 0 0 +1.57464E7 29.8 25.6 78 96962 0 0 458 0 0 0 0 0 0 0 270 4.1 9 9 4000 1050 9 999999999 119 0 0 88 0.2 0 0 +1.575E7 30 24 70 98663 270 1288 470 31 0 31 2980 0 3003 1261 270 2.6 10 10 4000 3048 9 999999999 103 0 0 88 0.2 0 0 +1.57536E7 30 24 70 98663 546 1321 470 95 0 95 9458 0 9540 4131 260 2.6 10 10 4000 2438 9 999999999 103 0 0 88 0.2 0 0 +1.57572E7 32 21.7 55 97107 801 1321 440 494 467 211 56388 29784 24206 9193 270 4.1 5 5 2000 3000 9 999999999 80 0 0 88 0.2 0 0 +1.57608E7 32 24 63 98680 1018 1321 443 679 610 209 80098 34581 24796 10180 270 4.1 5 5 4000 3048 9 999999999 102 0 0 88 0.2 0 0 +1.57644E7 34 24 56 98697 1183 1321 455 823 640 249 98019 37192 29891 12156 290 4.1 5 5 4000 3048 9 999999999 102 0 0 88 0.2 0 0 +1.5768E7 34.8 24.3 55 97121 1284 1321 460 911 638 290 108690 38007 34865 13954 270 4.1 5 5 2000 3048 9 999999999 104 0 0 88 0.2 0 0 +1.57716E7 35 24 53 98705 1315 1321 461 938 636 305 111995 38622 36661 14581 270 4.1 5 5 4500 3048 9 999999999 102 0 0 88 0.2 0 0 +1.57752E7 37 24 48 98722 1273 1321 473 901 641 284 107607 38231 34122 13686 250 4.1 5 5 4500 3048 9 999999999 101 0 0 88 0.2 0 0 +1.57788E7 36.6 24.8 51 96989 1161 1321 472 802 610 266 94740 35899 31591 12749 250 5.7 5 5 2000 3048 9 999999999 109 0 0 88 0.2 0 0 +1.57824E7 37 24 48 98722 987 1321 473 652 599 204 76688 33959 24151 9880 250 4.1 5 5 4500 3048 9 999999999 101 0 0 88 0.2 0 0 +1.5786E7 37 24 48 98722 762 1321 473 460 479 184 52545 27257 21085 8076 260 4.1 5 5 4500 3048 9 999999999 101 0 0 88 0.2 0 0 +1.57896E7 37 26.2 54 96876 503 1321 476 248 291 138 27439 12853 15289 5253 270 3.6 5 5 4000 3000 9 999999999 125 0 0 88 0.2 0 0 +1.57932E7 36 24 50 98714 226 1321 467 67 44 60 7347 124 6547 2013 170 3.1 5 5 4000 3000 9 999999999 102 0 0 88 0.2 0 0 +1.57968E7 36 24 50 98714 0 1083 509 0 0 0 0 0 0 0 160 3.1 10 10 3500 3048 0 19999999 102 0 0 88 0.2 0 0 +1.58004E7 25.2 24 93 97029 0 0 441 0 0 0 0 0 0 0 230 6.2 10 10 1000 900 0 19999999 102 0 0 88 0.2 0 0 +1.5804E7 26 23 84 98628 0 0 445 0 0 0 0 0 0 0 170 3.1 10 10 2500 914 0 19999999 93 0 0 88 0.2 0 0 +1.58076E7 26 24 89 98628 0 0 446 0 0 0 0 0 0 0 150 5.1 10 10 3500 914 0 19999999 103 0 0 88 0.2 0 0 +1.58112E7 25.6 24.1 91 97101 0 0 432 0 0 0 0 0 0 0 140 4.1 9 9 2000 900 0 19999999 103 0 0 88 0.2 0 0 +1.58148E7 27 23 79 98637 0 0 438 0 0 0 0 0 0 0 120 2.6 9 9 3500 3048 0 19999999 93 0 0 88 0.2 0 0 +1.58184E7 27 23 79 98637 0 0 438 0 0 0 0 0 0 0 130 3.1 9 9 3500 3048 0 19999999 93 0 0 88 0.2 0 0 +1.5822E7 27 24 84 98637 0 0 415 0 0 0 0 0 0 0 100 2.1 5 5 3500 3048 0 19999999 103 0 0 88 0.2 0 0 +1.58256E7 27.3 24.9 86 100263 0 0 433 0 0 0 0 0 0 0 59 2.4 8 8 4642 3048 9 999999999 114 0 0 88 0.2 0 0 +1.58292E7 27.1 24.5 86 100136 0 0 432 0 0 0 0 0 0 0 207 2.9 8 8 4785 3048 9 999999999 110 0 0 88 0.2 0 0 +1.58328E7 26.7 24.2 86 98319 0 0 429 0 0 0 0 0 0 0 102 2.9 8 8 4177 3048 9 999999999 105 0 0 88 0.2 0 0 +1.58364E7 27.1 23.8 82 99886 268 1280 431 69 7 68 7615 88 7486 2369 78 2.7 8 8 4570 3048 9 999999999 102 0 0 88 0.2 0 0 +1.584E7 25.8 23.4 86 99750 544 1321 423 189 78 157 20946 4167 17487 6003 72 3.7 8 8 3963 3048 9 999999999 98 0 0 88 0.2 0 0 +1.58436E7 27.4 23 77 98159 799 1321 425 426 283 255 47752 19247 28733 10472 332 3.2 7 7 2856 3048 9 999999999 93 0 0 88 0.2 0 0 +1.58472E7 28.8 24.1 76 99526 1017 1321 434 598 368 314 68256 25122 36138 13867 86 3.7 7 7 4149 3048 9 999999999 104 0 0 88 0.2 0 0 +1.58508E7 31 23.8 65 99421 1183 1321 437 829 598 293 97518 37458 34755 13820 219 3.8 5 5 4392 3048 9 999999999 101 0 0 88 0.2 0 0 +1.58544E7 32.4 23.9 61 97846 1284 1321 442 941 699 263 113287 40351 31795 12874 169 3.5 4 4 2535 3048 9 999999999 101 0 0 88 0.2 0 0 +1.5858E7 33 24 59 99188 1315 1321 446 978 772 210 120168 40599 25982 10726 37 3.5 4 4 4428 3048 9 999999999 102 0 0 88 0.2 0 0 +1.58616E7 34.8 23.6 53 99078 1273 1321 452 958 832 157 119713 40794 19745 8275 131 3.1 3 3 4571 3048 9 999999999 98 0 0 88 0.2 0 0 +1.58652E7 35.1 24 53 97280 1161 1321 455 854 812 141 105972 38894 17523 7412 98 4.4 3 3 3214 3048 9 999999999 101 0 0 88 0.2 0 0 +1.58688E7 36.3 23.9 49 98841 987 1321 457 698 707 170 83280 37362 20373 8480 312 2 2 2 4857 3048 9 999999999 101 0 0 88 0.2 0 0 +1.58724E7 36.5 24 60 98718 763 1321 470 460 450 200 52207 26727 22874 8626 100 4.1 5 5 4250 3048 9 999999999 102 0 0 88 0.2 0 0 +1.5876E7 34.8 26.5 62 96887 503 1321 463 248 290 138 27431 12685 15297 5259 90 4.1 5 5 2000 3048 9 999999999 129 0 0 88 0.2 0 0 +1.58796E7 34 25 60 98697 226 1321 457 67 44 60 7335 53 6540 2014 60 4.1 5 5 3500 3048 9 999999999 113 0 0 88 0.2 0 0 +1.58832E7 34 25 60 98697 0 1083 457 0 0 0 0 0 0 0 90 3.1 5 5 3500 3048 9 999999999 113 0 0 88 0.2 0 0 +1.58868E7 32 25.8 70 96951 0 0 446 0 0 0 0 0 0 0 90 3.1 5 5 2000 3048 9 999999999 121 0 0 88 0.2 0 0 +1.58904E7 32 26 71 98680 0 0 446 0 0 0 0 0 0 0 50 3.1 5 5 3500 3048 9 999999999 125 0 0 88 0.2 0 0 +1.5894E7 32 27 75 98680 0 0 447 0 0 0 0 0 0 0 90 3.1 5 5 3500 3048 9 999999999 138 0 0 88 0.2 0 0 +1.58976E7 31.2 26.5 76 97023 0 0 442 0 0 0 0 0 0 0 90 2.6 5 5 2000 3048 9 999999999 130 0 0 88 0.2 0 0 +1.59012E7 32 27 75 98680 0 0 447 0 0 0 0 0 0 0 140 3.6 5 5 3500 3048 9 999999999 138 0 0 88 0.2 0 0 +1.59048E7 31 27 79 98672 0 0 442 0 0 0 0 0 0 0 130 2.6 5 5 3500 3048 9 999999999 138 0 0 88 0.2 0 0 +1.59084E7 30.6 26.1 77 96872 0 0 438 0 0 0 0 0 0 0 10 1.5 5 5 2000 3048 9 999999999 125 0 0 88 0.2 0 0 +1.5912E7 31 27 79 98672 0 0 442 0 0 0 0 0 0 0 190 2.1 5 5 3500 3048 9 999999999 138 0 0 88 0.2 0 0 +1.59156E7 30 26 79 98663 0 0 435 0 0 0 0 0 0 0 110 2.1 5 5 3500 3048 9 999999999 125 0 0 88 0.2 0 0 +1.59192E7 29 25.6 82 96975 0 0 454 0 0 0 0 0 0 0 90 2.1 9 9 2000 3048 9 999999999 119 0 0 88 0.2 1 0 +1.59228E7 29 26 84 98654 267 1271 467 30 0 30 2900 0 2923 1232 80 3.1 10 10 3000 3048 0 19999999 125 0 0 88 0.2 0 0 +1.59264E7 26 25 94 98628 543 1321 447 95 0 95 9346 0 9428 4089 60 5.1 10 10 2000 914 0 19999999 114 0 0 88 0.2 0 0 +1.593E7 26.6 26.3 98 97246 798 1321 440 271 70 228 30492 4144 25856 9714 70 2.6 9 9 2000 3000 0 19999999 128 0 0 88 0.2 0 0 +1.59336E7 29 26 84 98654 1016 1321 429 675 556 247 78330 32022 28859 11621 90 3.6 5 5 2800 3048 0 19999999 125 0 0 88 0.2 0 0 +1.59372E7 31 25 70 98672 1182 1321 439 820 545 333 95382 35112 38961 15178 120 3.6 5 5 3500 3048 0 19999999 113 0 0 88 0.2 0 0 +1.59408E7 32.4 24.7 64 97344 1284 1321 487 308 47 262 36977 2643 31701 12853 110 3.1 10 10 2000 3000 0 19999999 108 0 0 88 0.2 0 0 +1.59444E7 33 25 63 98689 1315 1321 451 936 520 419 108890 35808 49079 18417 270 3.1 5 5 3500 3048 0 19999999 113 0 0 88 0.2 0 0 +1.5948E7 34 24 56 98697 1273 1321 482 500 86 417 57929 6122 48730 18187 40 2.1 9 9 4000 3048 0 19999999 102 0 0 88 0.2 0 0 +1.59516E7 34.6 23.8 54 97080 1161 1321 486 446 58 395 51124 4242 45590 16996 280 3.1 9 9 4000 3000 0 19999999 99 0 0 88 0.2 0 0 +1.59552E7 36 24 50 98714 987 1321 467 652 526 259 75320 33108 30133 11914 41 0 5 5 5000 3048 0 19999999 102 0 0 88 0.2 0 0 +1.59588E7 36 24 50 98714 763 1321 467 460 479 184 52605 27279 21094 8081 270 4.1 5 5 4000 3048 0 19999999 102 0 0 88 0.2 0 0 +1.59624E7 35.4 24.4 53 96902 503 1321 464 249 294 137 27644 13900 15307 5249 270 5.1 5 5 4000 3000 0 19999999 104 0 0 88 0.2 0 0 +1.5966E7 35 24 53 98705 226 1321 461 67 52 59 7373 116 6419 1985 300 3.6 5 5 4000 3048 0 19999999 102 0 0 88 0.2 0 0 +1.59696E7 33 24 59 98689 0 1082 449 0 0 0 0 0 0 0 30 2.6 5 5 4000 3048 0 19999999 102 0 0 88 0.2 0 0 +1.59732E7 32.6 24.3 62 97073 0 0 447 0 0 0 0 0 0 0 50 2.6 5 5 4000 3000 0 19999999 104 0 0 88 0.2 0 0 +1.59768E7 32 25 67 98680 0 0 445 0 0 0 0 0 0 0 60 3.6 5 5 4000 3048 0 19999999 113 0 0 88 0.2 0 0 +1.59804E7 32 25 67 98680 0 0 445 0 0 0 0 0 0 0 60 3.1 5 5 4000 3048 0 19999999 113 0 0 88 0.2 0 0 +1.5984E7 31 25.4 72 97216 0 0 439 0 0 0 0 0 0 0 50 3.1 5 5 4000 3000 0 19999999 116 0 0 88 0.2 0 0 +1.59876E7 31 25 70 98672 0 0 439 0 0 0 0 0 0 0 60 2.1 5 5 4000 3048 0 19999999 113 0 0 88 0.2 0 0 +1.59912E7 30 25 75 98663 0 0 433 0 0 0 0 0 0 0 80 2.1 5 5 4000 3048 0 19999999 113 0 0 88 0.2 0 0 +1.59948E7 30.4 25.6 76 97162 0 0 436 0 0 0 0 0 0 0 70 2.1 5 5 4000 3000 0 19999999 119 0 0 88 0.2 0 0 +1.59984E7 30 26 79 98663 0 0 460 0 0 0 0 0 0 0 70 2.1 9 9 3200 3000 0 19999999 125 0 0 88 0.2 0 0 +1.6002E7 29 26 84 98654 0 0 454 0 0 0 0 0 0 0 50 2.6 9 9 3200 3048 0 19999999 125 0 0 88 0.2 0 0 +1.60056E7 28.8 25.1 80 97139 0 0 427 0 0 0 0 0 0 0 90 2.6 5 5 2000 3000 9 999999999 113 0 0 88 0.2 0 0 +1.60092E7 29 26 84 98654 265 1263 454 49 0 49 4704 0 4741 1846 140 2.1 9 9 2500 3048 9 999999999 125 0 0 88 0.2 0 0 +1.60128E7 30 26 79 98663 541 1321 460 154 21 145 17121 1008 16221 5679 120 2.1 9 9 2500 3048 9 999999999 125 0 0 88 0.2 0 0 +1.60164E7 31.6 26 72 97250 797 1321 470 270 25 255 30183 1605 28649 10466 140 2.6 9 9 2000 3000 9 999999999 124 0 0 88 0.2 0 0 +1.602E7 33 26 67 98689 1015 1321 479 374 61 327 42441 4049 37382 14239 260 2.6 9 9 3000 3048 9 999999999 125 0 0 88 0.2 0 0 +1.60236E7 35 28 67 98705 1181 1321 494 452 63 396 51630 4102 45508 17120 290 5.1 9 9 3500 3048 9 999999999 152 0 0 88 0.2 0 0 +1.60272E7 35.2 24.5 54 97377 1283 1321 490 504 65 441 58247 4737 51309 18908 270 4.1 9 9 2000 3000 9 999999999 106 0 0 88 0.2 0 0 +1.60308E7 36 26 57 98714 1315 1321 498 518 65 454 59827 4542 52798 19427 290 3.1 9 9 4000 3048 9 999999999 124 0 0 88 0.2 0 0 +1.60344E7 36 24 50 98714 1273 1321 495 500 65 437 57728 4796 50824 18739 290 3.1 9 9 4000 3048 9 999999999 102 0 0 88 0.2 0 0 +1.6038E7 37.4 25.2 50 97171 1162 1321 506 445 64 389 50982 4502 44830 16819 290 3.1 9 9 4000 3000 9 999999999 113 0 0 88 0.2 0 0 +1.60416E7 31 27 79 98672 988 1321 468 360 43 328 40608 2816 37235 14057 260 10.3 9 9 1500 1219 0 19999999 138 0 0 88 0.2 0 0 +1.60452E7 29 24 74 98654 763 1321 426 460 432 211 52024 26322 23978 8953 10 4.6 5 5 2500 3048 0 19999999 103 0 0 88 0.2 0 0 +1.60488E7 31.6 25.7 71 97055 503 1321 443 249 292 138 27531 13172 15312 5259 290 4.1 5 5 2000 3048 0 19999999 120 0 0 88 0.2 0 0 +1.60524E7 34 25 60 98697 226 1321 457 67 44 60 7337 53 6542 2014 270 2.6 5 5 3500 3048 0 19999999 113 0 0 88 0.2 0 0 +1.6056E7 33 26 67 98689 0 1081 452 0 0 0 0 0 0 0 290 2.1 5 5 3500 3048 0 19999999 125 0 0 88 0.2 0 0 +1.60596E7 30.8 25.1 72 97233 0 0 438 0 0 0 0 0 0 0 215 1.5 5 5 2000 3048 0 19999999 113 0 0 88 0.2 0 0 +1.60632E7 32 24 63 98680 0 0 443 0 0 0 0 0 0 0 210 1.5 5 5 3500 3048 0 19999999 102 0 0 88 0.2 0 0 +1.60668E7 32 24 63 98680 0 0 443 0 0 0 0 0 0 0 300 1.5 5 5 3200 3048 0 19999999 102 0 0 88 0.2 0 0 +1.60704E7 29.8 24.1 72 97352 0 0 431 0 0 0 0 0 0 0 270 2.6 5 5 2000 3048 0 19999999 103 0 0 88 0.2 0 0 +1.6074E7 31 24 66 98672 0 0 438 0 0 0 0 0 0 0 145 0 5 5 3200 3048 0 19999999 102 0 0 88 0.2 0 0 +1.60776E7 31 24 66 98672 0 0 438 0 0 0 0 0 0 0 280 1.5 5 5 3200 3048 0 19999999 102 0 0 88 0.2 0 0 +1.60812E7 30 24 70 97285 0 0 457 0 0 0 0 0 0 0 289 0 9 9 2000 3000 0 19999999 101 0 0 88 0.2 0 0 +1.60848E7 30 24 70 98663 0 0 432 0 0 0 0 0 0 0 82 0 5 5 3000 3048 0 19999999 103 0 0 88 0.2 0 0 +1.60884E7 30 24 70 98663 0 0 432 0 0 0 0 0 0 0 141 0 5 5 2500 3048 0 19999999 103 0 0 88 0.2 0 0 +1.6092E7 28.4 25 82 97291 0 0 424 0 0 0 0 0 0 0 166 0 5 5 2000 2000 9 999999999 112 0 0 88 0.2 5 0 +1.60956E7 28 25 84 98646 263 1253 415 93 106 71 10077 1206 7798 2426 149 0 3 3 2500 2000 9 999999999 114 0 0 88 0.2 0 0 +1.60992E7 30 26 79 98663 540 1321 428 294 389 135 32789 17364 15130 5375 250 2.1 3 3 1500 2000 9 999999999 125 0 0 88 0.2 0 0 +1.61028E7 31.2 25.3 71 97334 796 1321 434 516 625 140 60537 30164 16514 6642 290 3.1 3 3 2000 2000 9 999999999 115 0 0 88 0.2 0 0 +1.61064E7 33 26 67 98689 1014 1321 445 714 730 154 85970 34476 18629 7861 250 3.1 3 3 2500 2000 9 999999999 125 0 0 88 0.2 0 0 +1.611E7 34 24 56 98697 1181 1321 448 870 772 181 106203 39794 22176 9271 270 3.1 3 3 3000 2000 9 999999999 102 0 0 88 0.2 0 0 +1.61136E7 35.2 25.1 56 97368 1283 1321 464 908 599 327 107252 36808 38832 15287 270 3.1 5 5 2000 2000 9 999999999 112 0 0 88 0.2 0 0 +1.61172E7 37 24 48 98722 1314 1321 473 937 636 305 111943 38625 36613 14564 280 4.6 5 5 3500 3048 9 999999999 101 0 0 88 0.2 0 0 +1.61208E7 37 24 48 98722 1273 1321 473 901 640 284 107621 38235 34140 13692 260 4.6 5 5 4000 3048 9 999999999 101 0 0 88 0.2 0 0 +1.61244E7 36.6 22.5 44 97233 1162 1321 469 806 645 239 96271 38522 28680 11694 270 4.6 5 5 4000 3048 9 999999999 86 0 0 88 0.2 0 0 +1.6128E7 37 23 45 98722 988 1321 472 654 602 203 77052 34992 24104 9853 270 5.1 5 5 4000 3048 9 999999999 92 0 0 88 0.2 0 0 +1.61316E7 37 23 45 98722 763 1321 472 461 483 182 52839 28151 20971 8035 270 4.6 5 5 4000 3048 9 999999999 92 0 0 88 0.2 0 0 +1.61352E7 35.8 23.9 50 97032 503 1321 466 250 295 137 27705 14179 15312 5248 270 4.1 5 5 2000 3048 9 999999999 99 0 0 88 0.2 0 0 +1.61388E7 36 23 47 98714 226 1321 466 68 53 59 7384 195 6424 1983 290 3.6 5 5 4000 3048 9 999999999 92 0 0 88 0.2 0 0 +1.61424E7 34 22 50 98697 0 1080 452 0 0 0 0 0 0 0 280 3.6 5 5 3500 3048 9 999999999 83 0 0 88 0.2 0 0 +1.6146E7 33.6 21.9 50 97150 0 0 443 0 0 0 0 0 0 0 290 3.1 3 3 2000 2000 9 999999999 82 0 0 88 0.2 0 0 +1.61496E7 34 23 53 98697 0 0 447 0 0 0 0 0 0 0 290 3.1 3 3 3500 2000 9 999999999 92 0 0 88 0.2 0 0 +1.61532E7 33 23 56 98689 0 0 441 0 0 0 0 0 0 0 330 3.1 3 3 3500 2000 9 999999999 92 0 0 88 0.2 0 0 +1.61568E7 31.6 23.9 64 97269 0 0 434 0 0 0 0 0 0 0 320 2.6 3 3 2000 2000 9 999999999 100 0 0 88 0.2 0 0 +1.61604E7 32 23 59 98680 0 0 435 0 0 0 0 0 0 0 340 2.6 3 3 3500 2000 9 999999999 93 0 0 88 0.2 0 0 +1.6164E7 32 24 63 98680 0 0 419 0 0 0 0 0 0 0 178 1 0 0 3500 2000 9 999999999 102 0 0 88 0.2 0 0 +1.61676E7 30 24 70 97217 0 0 408 0 0 0 0 0 0 0 267 0 0 0 2000 2000 9 999999999 101 0 0 88 0.2 0 0 +1.61712E7 31 24 66 98672 0 0 413 0 0 0 0 0 0 0 280 2.1 0 0 3500 2000 9 999999999 102 0 0 88 0.2 0 0 +1.61748E7 31 24 66 98672 0 0 413 0 0 0 0 0 0 0 330 2.1 0 0 3500 2000 9 999999999 102 0 0 88 0.2 0 0 +1.61784E7 29 24.7 78 97277 0 0 403 0 0 0 0 0 0 0 290 1.5 0 0 2000 2000 9 999999999 109 0 0 88 0.2 0 0 +1.6182E7 30 25 75 98663 262 1244 409 93 110 71 10076 1196 7732 2405 260 1.5 0 0 2100 2000 9 999999999 113 0 0 88 0.2 0 0 +1.61856E7 31 25 70 98672 538 1321 414 296 405 131 33210 18507 14787 5265 260 2.1 0 0 2100 2000 9 999999999 113 0 0 88 0.2 0 0 +1.61892E7 31.6 24.8 67 97357 794 1321 417 522 623 147 61005 31271 17308 6920 270 2.1 0 0 2000 2000 9 999999999 110 0 0 88 0.2 0 0 +1.61928E7 34 24 56 98697 1013 1321 430 725 772 133 88478 37280 16279 6899 310 2.1 0 0 2800 2000 9 999999999 102 0 0 88 0.2 0 0 +1.61964E7 35 24 53 98705 1180 1321 454 869 771 181 106105 39784 22178 9272 290 2.1 3 3 3500 2000 9 999999999 102 0 0 88 0.2 0 0 +1.62E7 36.2 24.7 52 97278 1282 1321 469 908 601 325 107362 37257 38727 15245 270 2.1 5 5 2000 3000 9 999999999 108 0 0 88 0.2 0 0 +1.62036E7 36 24 50 98714 1314 1321 467 937 543 397 109638 37300 46755 17740 270 3.1 5 5 3500 3048 9 999999999 102 0 0 88 0.2 0 0 +1.62072E7 36 24 50 98714 1273 1321 495 500 65 437 57723 4794 50822 18739 310 4.1 9 9 3500 3048 9 999999999 102 0 0 88 0.2 0 0 +1.62108E7 36.6 24.8 51 97106 1162 1321 472 803 564 307 93752 35409 36131 14256 290 6.2 5 5 2000 3000 9 999999999 109 0 0 88 0.2 0 0 +1.62144E7 38 24 45 98730 988 1321 479 653 599 205 76784 33973 24213 9904 300 4.6 5 5 4000 3048 9 999999999 101 0 0 88 0.2 0 0 +1.6218E7 38 23 42 98730 763 1321 478 461 482 183 52817 28125 21012 8048 320 4.1 5 5 3500 3048 9 999999999 92 0 0 88 0.2 0 0 +1.62216E7 37.6 23 43 96871 503 1321 475 250 295 137 27755 14606 15322 5246 320 4.6 5 5 2000 3048 9 999999999 90 0 0 88 0.2 0 0 +1.62252E7 38 23 42 98730 226 1321 451 72 68 61 7883 321 6644 2031 310 3.6 0 0 3500 3048 9 999999999 92 0 0 88 0.2 0 0 +1.62288E7 37 22 42 98722 0 1078 444 0 0 0 0 0 0 0 10 2.6 0 0 3500 2000 9 999999999 83 0 0 88 0.2 0 0 +1.62324E7 33 22.9 55 97067 0 0 423 0 0 0 0 0 0 0 30 2.1 0 0 2000 2000 9 999999999 90 0 0 88 0.2 0 0 +1.6236E7 35 22 47 98705 0 0 451 0 0 0 0 0 0 0 40 2.1 3 3 3500 2000 9 999999999 83 0 0 88 0.2 0 0 +1.62396E7 34 22 50 98697 0 0 427 0 0 0 0 0 0 0 40 1.5 0 0 3500 2000 9 999999999 83 0 0 88 0.2 0 0 +1.62432E7 31.6 23.9 64 97153 0 0 416 0 0 0 0 0 0 0 70 1.5 0 0 2000 2000 9 999999999 100 0 0 88 0.2 0 0 +1.62468E7 32 23 59 98680 0 0 417 0 0 0 0 0 0 0 80 1.5 0 0 3500 2000 9 999999999 93 0 0 88 0.2 0 0 +1.62504E7 32 24 63 98680 0 0 419 0 0 0 0 0 0 0 199 0 0 0 3500 2000 9 999999999 102 0 0 88 0.2 0 0 +1.6254E7 31 24 66 98672 0 0 413 0 0 0 0 0 0 0 80 1 0 0 3500 2000 9 999999999 102 0 0 88 0.2 0 0 +1.62576E7 31 24 66 98672 0 0 413 0 0 0 0 0 0 0 223 0 0 0 3500 2000 9 999999999 102 0 0 88 0.2 0 0 +1.62612E7 31 24 66 98672 0 0 413 0 0 0 0 0 0 0 96 0 0 0 3500 2000 9 999999999 102 0 0 88 0.2 0 0 +1.62648E7 29.4 24.8 76 97144 0 0 423 0 0 0 0 0 0 0 191 0 3 3 2000 2000 9 999999999 110 0 0 88 0.2 0 0 +1.62684E7 30 24 70 98663 260 1235 425 90 102 70 9856 1237 7689 2386 148 0 3 3 3200 2000 9 999999999 103 0 0 88 0.2 0 0 +1.6272E7 33 25 63 98689 536 1321 444 291 387 134 32574 17893 15066 5337 197 0 3 3 2800 2000 9 999999999 113 0 0 88 0.2 0 0 +1.62756E7 32.8 24.6 62 97250 793 1321 442 515 625 140 60376 30851 16444 6604 272 0 3 3 2000 2000 9 999999999 107 0 0 88 0.2 0 0 +1.62792E7 36 24 50 98714 1012 1321 460 715 738 150 86447 37010 18178 7660 279 0 3 3 3000 2000 9 999999999 102 0 0 88 0.2 0 0 +1.62828E7 36 24 50 98714 1179 1321 460 869 809 147 107664 39115 18311 7728 270 2.1 3 3 3000 2000 9 999999999 102 0 0 88 0.2 0 0 +1.62864E7 37.2 22.3 42 97209 1282 1321 465 967 831 160 120918 42532 20159 8427 270 2.1 3 3 2000 2000 9 999999999 85 0 0 88 0.2 0 0 +1.629E7 38 23 42 98730 1314 1321 471 995 827 173 124178 42140 21747 9058 300 3.1 3 3 3500 2000 9 999999999 92 0 0 88 0.2 0 0 +1.62936E7 38 23 42 98730 1273 1321 471 957 829 159 119594 41527 19921 8340 280 3.1 3 3 3500 2000 9 999999999 92 0 0 88 0.2 0 0 +1.62972E7 38.8 21.3 37 97017 1162 1321 473 857 819 137 94452 87325 17928 4989 290 3.6 3 3 2000 2000 9 999999999 76 0 0 88 0.2 0 0 +1.63008E7 40 22 36 98747 988 1321 481 695 740 142 84286 38795 17274 7258 270 2.1 3 3 4000 2000 9 999999999 83 0 0 88 0.2 0 0 +1.63044E7 40 21 34 98747 763 1321 460 497 644 125 58816 33867 14839 5925 310 3.1 0 0 4000 2000 9 999999999 75 0 0 88 0.2 0 0 +1.6308E7 40 21.1 34 96783 503 1321 480 266 365 127 29786 18135 14284 4963 340 2.6 3 3 4000 2000 9 999999999 74 0 0 88 0.2 0 0 +1.63116E7 39 21 36 98739 225 1321 481 67 52 58 7379 330 6423 1978 340 3.6 5 5 4000 2000 9 999999999 75 0 0 88 0.2 0 0 +1.63152E7 38 21 38 98730 0 1076 475 0 0 0 0 0 0 0 340 2.6 5 5 4000 2000 9 999999999 75 0 0 88 0.2 0 0 +1.63188E7 37 21.8 41 98722 0 0 452 0 0 0 0 0 0 0 79 2.5 1 1 3750 2000 9 999999999 81 0 0 88 0.2 0 0 +1.63224E7 36 22.5 46 98714 0 0 453 0 0 0 0 0 0 0 146 2.3 2 2 3500 2000 9 999999999 87 0 0 88 0.2 0 0 +1.6326E7 35 23.2 51 98705 0 0 453 0 0 0 0 0 0 0 346 2.2 3 3 3250 2000 9 999999999 94 0 0 88 0.2 0 0 +1.63296E7 34 24 56 98697 0 0 455 0 0 0 0 0 0 0 110 2.1 5 5 3000 2000 9 999999999 102 0 0 88 0.2 0 0 +1.63332E7 34 24 56 98697 0 0 455 0 0 0 0 0 0 0 110 2.1 5 5 3000 2000 9 999999999 102 0 0 88 0.2 0 0 +1.63368E7 34 25 60 98697 0 0 457 0 0 0 0 0 0 0 110 2.1 5 5 3000 2000 9 999999999 113 0 0 88 0.2 0 0 +1.63404E7 33 25 63 98689 0 0 451 0 0 0 0 0 0 0 110 2.1 5 5 3000 2000 9 999999999 113 0 0 88 0.2 0 0 +1.6344E7 33 25 63 98689 0 0 451 0 0 0 0 0 0 0 110 3.6 5 5 2500 2000 9 999999999 113 0 0 88 0.2 0 0 +1.63476E7 32 25 67 98680 0 0 445 0 0 0 0 0 0 0 110 3.6 5 5 2500 2000 9 999999999 113 0 0 88 0.2 0 0 +1.63512E7 31.6 25.1 69 97094 0 0 436 0 0 0 0 0 0 0 140 3.1 3 3 2000 2000 9 999999999 113 0 0 88 0.2 0 0 +1.63548E7 31 27 79 98672 258 1225 417 90 105 70 9778 660 7586 2364 120 3.1 0 0 2500 2000 9 999999999 138 0 0 88 0.2 0 0 +1.63584E7 32 27 75 98680 535 1322 441 289 382 135 32189 16267 15058 5342 130 3.1 3 3 2500 2000 9 999999999 138 0 0 88 0.2 0 0 +1.6362E7 33.4 27.1 70 97168 792 1322 430 518 642 133 60724 28230 15721 6359 140 4.1 0 0 2000 2000 9 999999999 137 0 0 88 0.2 0 0 +1.63656E7 34 25 60 98697 1011 1322 431 722 719 171 86268 36664 20595 8614 130 3.1 0 0 3000 2000 9 999999999 113 0 0 88 0.2 0 0 +1.63692E7 36 26 57 98714 1179 1322 470 816 606 275 96114 34710 32608 13131 140 3.1 5 5 3500 2000 9 999999999 124 0 0 88 0.2 0 0 +1.63728E7 37.6 21.9 41 97153 1282 1322 474 912 649 282 109348 40556 34062 13640 150 3.1 5 5 2000 3000 9 999999999 81 0 0 88 0.2 0 0 +1.63764E7 38 24 45 98730 1314 1322 479 937 636 304 111875 38624 36588 14555 130 2.1 5 5 4000 3048 9 999999999 101 0 0 88 0.2 0 0 +1.638E7 39 24 43 98739 1273 1322 486 901 547 374 105345 37043 44014 16854 250 2.1 5 5 4500 3048 9 999999999 101 0 0 88 0.2 0 0 +1.63836E7 38.6 23.6 43 97015 1162 1322 511 446 88 369 51469 6245 42815 16240 250 2.1 9 9 2000 3000 9 999999999 96 0 0 88 0.2 0 0 +1.63872E7 40 28 51 98747 988 1322 527 360 30 338 40405 1924 38164 14325 90 2.1 9 9 3000 3048 9 999999999 151 0 0 88 0.2 0 0 +1.63908E7 38 26 51 98730 763 1322 511 255 24 241 28381 1490 26991 9802 70 5.1 9 9 3000 3048 9 999999999 124 0 0 88 0.2 0 0 +1.63944E7 34.8 24.3 55 96858 503 1322 488 138 17 132 15374 801 14705 5091 50 4.1 9 9 2000 3000 9 999999999 103 0 0 88 0.2 0 0 +1.6398E7 35 24 53 98705 225 1322 461 67 43 60 7287 108 6513 2002 90 3.6 5 5 3000 3048 9 999999999 102 0 0 88 0.2 0 0 +1.64016E7 35 24 53 98705 0 1073 488 0 0 0 0 0 0 0 90 3.6 9 9 3000 3048 9 999999999 102 0 0 88 0.2 0 0 +1.64052E7 34.2 26.8 65 96941 0 0 460 0 0 0 0 0 0 0 90 5.1 5 5 2000 3048 9 999999999 133 0 0 88 0.2 0 0 +1.64088E7 34 26 63 98697 0 0 458 0 0 0 0 0 0 0 80 4.1 5 5 3000 3048 9 999999999 124 0 0 88 0.2 0 0 +1.64124E7 33 28 75 98689 0 0 455 0 0 0 0 0 0 0 110 6.2 5 5 3000 3048 9 999999999 152 0 0 88 0.2 0 0 +1.6416E7 31.8 26.5 74 97184 0 0 446 0 0 0 0 0 0 0 110 5.1 5 5 2000 3048 9 999999999 130 0 0 88 0.2 0 0 +1.64196E7 31 26 75 98672 0 0 440 0 0 0 0 0 0 0 100 3.6 5 5 3000 3048 9 999999999 125 0 0 88 0.2 0 0 +1.64232E7 31 26 75 98672 0 0 440 0 0 0 0 0 0 0 110 3.1 5 5 3000 3048 9 999999999 125 0 0 88 0.2 0 0 +1.64268E7 31 26.3 76 97138 0 0 441 0 0 0 0 0 0 0 140 3.1 5 5 2000 3048 9 999999999 127 0 0 88 0.2 0 0 +1.64304E7 30 26 79 98663 0 0 435 0 0 0 0 0 0 0 140 3.1 5 5 3000 3048 9 999999999 125 0 0 88 0.2 0 0 +1.6434E7 30 27 84 98663 0 0 436 0 0 0 0 0 0 0 120 3.1 5 5 3000 3048 9 999999999 138 0 0 88 0.2 0 0 +1.64376E7 29.8 26.5 83 97215 0 0 427 0 0 0 0 0 0 0 140 3.1 3 3 2000 2000 9 999999999 130 0 0 88 0.2 0 0 +1.64412E7 30 27 84 98663 256 1215 429 88 97 69 9531 564 7527 2344 90 3.1 3 3 3000 2000 9 999999999 138 0 0 88 0.2 0 0 +1.64448E7 30 27 84 98663 533 1322 436 271 311 146 29996 13984 16178 5637 140 3.6 5 5 2500 3048 9 999999999 138 0 0 88 0.2 0 0 +1.64484E7 31.2 26.8 78 97237 791 1322 442 481 489 188 54904 25656 21600 8386 150 2.1 5 5 2000 2000 9 999999999 134 0 0 88 0.2 0 0 +1.6452E7 33 26 67 98689 1010 1322 452 670 596 214 78541 32186 25265 10358 110 3.1 5 5 2700 3048 9 999999999 125 0 0 88 0.2 0 0 +1.64556E7 34 26 63 98697 1178 1322 458 815 605 276 95997 34691 32711 13165 120 3.1 5 5 3000 3048 9 999999999 124 0 0 88 0.2 0 0 +1.64592E7 35.6 22.6 47 97205 1281 1322 463 910 646 284 109013 39833 34249 13714 110 3.1 5 5 2000 3048 9 999999999 87 0 0 88 0.2 0 0 +1.64628E7 37 26 54 98722 1314 1322 476 933 627 310 110986 36258 37125 14771 120 2.1 5 5 3000 3048 9 999999999 124 0 0 88 0.2 0 0 +1.64664E7 38 26 51 98730 1273 1322 482 898 632 289 106775 35874 34631 13895 110 2.6 5 5 3000 3048 9 999999999 124 0 0 88 0.2 0 0 +1.647E7 38.6 24.9 46 97025 1162 1322 484 803 610 267 94793 35805 31670 12778 90 2.1 5 5 2000 3000 9 999999999 109 0 0 88 0.2 0 0 +1.64736E7 38 24 45 98730 988 1322 479 653 599 205 76797 33982 24220 9907 80 2.1 5 5 3000 3048 9 999999999 101 0 0 88 0.2 0 0 +1.64772E7 38 25 48 98730 763 1322 481 460 475 185 52415 26376 21262 8145 60 2.1 5 5 3500 3048 9 999999999 112 0 0 88 0.2 0 0 +1.64808E7 37.8 25.9 51 96824 503 1322 481 248 290 138 27446 13002 15308 5256 90 4.1 5 5 2000 3000 9 999999999 121 0 0 88 0.2 0 0 +1.64844E7 37 25 50 98722 224 1322 475 67 50 58 7255 5 6355 1967 80 5.1 5 5 3500 3048 9 999999999 112 0 0 88 0.2 0 0 +1.6488E7 36 25 53 98714 0 1069 469 0 0 0 0 0 0 0 110 4.1 5 5 3500 3048 9 999999999 112 0 0 88 0.2 0 0 +1.64916E7 35.2 26.3 60 96929 0 0 466 0 0 0 0 0 0 0 90 4.6 5 5 2000 3000 9 999999999 126 0 0 88 0.2 0 0 +1.64952E7 33 27 71 98689 0 0 453 0 0 0 0 0 0 0 110 5.7 5 5 3500 3048 9 999999999 138 0 0 88 0.2 0 0 +1.64988E7 32 25 67 98680 0 0 471 0 0 0 0 0 0 0 110 5.7 9 9 3500 3048 9 999999999 113 0 0 88 0.2 0 0 +1.65024E7 32.2 27.6 77 97167 0 0 476 0 0 0 0 0 0 0 110 6.2 9 9 2000 3000 9 999999999 145 0 0 88 0.2 0 0 +1.6506E7 32 26 71 98680 0 0 472 0 0 0 0 0 0 0 140 4.1 9 9 3500 3048 9 999999999 125 0 0 88 0.2 0 0 +1.65096E7 32 26 71 98680 0 0 472 0 0 0 0 0 0 0 120 3.6 9 9 3200 3048 9 999999999 125 0 0 88 0.2 0 0 +1.65132E7 31.2 25.3 71 97149 0 0 467 0 0 0 0 0 0 0 140 3.1 9 9 2000 3000 9 999999999 115 0 0 88 0.2 0 0 +1.65168E7 31 26 75 98672 0 0 466 0 0 0 0 0 0 0 110 4.1 9 9 3000 3048 9 999999999 125 0 0 88 0.2 0 0 +1.65204E7 30 26 79 98663 0 0 435 0 0 0 0 0 0 0 100 3.1 5 5 3000 3048 9 999999999 125 0 0 88 0.2 0 0 +1.6524E7 30.2 26 78 97082 0 0 436 0 0 0 0 0 0 0 110 3.6 5 5 2000 2000 9 999999999 124 0 0 88 0.2 0 0 +1.65276E7 30 27 84 98663 254 1205 429 87 95 69 9410 505 7463 2323 120 2.6 3 3 3000 2000 9 999999999 138 0 0 88 0.2 0 0 +1.65312E7 31 27 79 98672 532 1322 442 270 310 145 29851 13898 16131 5616 120 2.6 5 5 3000 3048 9 999999999 138 0 0 88 0.2 0 0 +1.65348E7 32.6 26.5 70 97239 789 1322 450 480 490 188 54834 25923 21554 8362 110 3.1 5 5 2000 3000 9 999999999 130 0 0 88 0.2 0 0 +1.65384E7 33 27 71 98689 1009 1322 453 668 593 215 78143 30967 25302 10384 130 2.6 5 5 3000 3048 9 999999999 138 0 0 88 0.2 0 0 +1.6542E7 34 27 67 98697 1177 1322 459 813 601 277 95557 33450 32813 13217 260 2.6 5 5 3500 3048 9 999999999 138 0 0 88 0.2 0 0 +1.65456E7 35.2 22.8 49 97202 1281 1322 461 910 645 285 108884 39622 34281 13727 290 3.1 5 5 2000 3000 9 999999999 89 0 0 88 0.2 0 0 +1.65492E7 36 26 57 98714 1314 1322 470 933 536 401 108762 35165 47054 17863 290 2.1 5 5 3500 3000 9 999999999 124 0 0 88 0.2 0 0 +1.65528E7 37 26 54 98722 1273 1322 504 498 85 417 57560 5754 48515 18166 330 2.6 9 9 3500 3000 9 999999999 124 0 0 88 0.2 0 0 +1.65564E7 36.2 26.9 59 96889 1162 1322 500 444 64 388 50711 4249 44654 16805 70 5.1 9 9 2000 1050 9 999999999 134 0 0 88 0.2 0 0 +1.656E7 35 26 60 98705 988 1322 491 361 27 341 40641 1847 38644 14414 60 5.1 9 9 3000 3048 9 999999999 124 0 0 88 0.2 0 0 +1.65636E7 33 26 67 98689 763 1322 479 254 24 241 28360 1487 26974 9795 80 5.1 9 9 3000 3048 9 999999999 125 0 0 88 0.2 0 0 +1.65672E7 33 24.8 62 96814 502 1322 477 138 15 132 15314 699 14730 5098 90 5.1 9 9 2000 3000 9 999999999 109 0 0 88 0.2 0 0 +1.65708E7 32 25 67 98680 224 1322 471 37 0 37 3528 0 3556 1393 140 4.1 9 9 3000 3048 9 999999999 113 0 0 88 0.2 0 0 +1.65744E7 32 25 67 98680 0 1065 471 0 0 0 0 0 0 0 140 2.6 9 9 3000 3048 9 999999999 113 0 0 88 0.2 0 0 +1.6578E7 31.2 25.3 71 96935 0 0 467 0 0 0 0 0 0 0 140 2.6 9 9 2000 3000 9 999999999 115 0 0 88 0.2 0 0 +1.65816E7 31 25 70 98672 0 0 465 0 0 0 0 0 0 0 150 1.5 9 9 3000 3048 9 999999999 113 0 0 88 0.2 0 0 +1.65852E7 30 25 75 98663 0 0 459 0 0 0 0 0 0 0 230 3.6 9 9 3000 3048 9 999999999 113 0 0 88 0.2 0 0 +1.65888E7 29.8 25 76 97069 0 0 458 0 0 0 0 0 0 0 230 3.1 9 9 2000 3000 9 999999999 112 0 0 88 0.2 0 0 +1.65924E7 30 25 75 98663 0 0 459 0 0 0 0 0 0 0 87 0 9 9 3000 3048 9 999999999 113 0 0 88 0.2 0 0 +1.6596E7 30 25 75 98663 0 0 433 0 0 0 0 0 0 0 92 0 5 5 3000 3048 9 999999999 113 0 0 88 0.2 0 0 +1.65996E7 29.6 24.8 75 96931 0 0 431 0 0 0 0 0 0 0 224 0 5 5 2000 3048 9 999999999 110 0 0 88 0.2 0 0 +1.66032E7 30 25 75 98663 0 0 433 0 0 0 0 0 0 0 40 0 5 5 3000 3048 9 999999999 113 0 0 88 0.2 0 0 +1.66068E7 30 25 75 98663 0 0 433 0 0 0 0 0 0 0 230 2.1 5 5 3000 3048 9 999999999 113 0 0 88 0.2 0 0 +1.66104E7 29.4 24.5 75 96988 0 0 429 0 0 0 0 0 0 0 326 0 5 5 2000 3048 9 999999999 107 0 0 88 0.2 0 0 +1.6614E7 29 25 79 98654 252 1194 428 81 68 68 8794 573 7400 2296 160 2.1 5 5 3000 3048 9 999999999 114 0 0 88 0.2 0 0 +1.66176E7 29 25 79 98654 530 1322 428 269 311 144 29879 15030 16100 5586 150 1.5 5 5 3000 3048 9 999999999 114 0 0 88 0.2 0 0 +1.66212E7 30.8 25.1 72 97107 788 1322 438 480 493 186 54952 27223 21426 8300 210 2.1 5 5 2000 3000 9 999999999 113 0 0 88 0.2 0 0 +1.66248E7 33 26 67 98689 1008 1322 452 668 595 214 78307 32143 25202 10331 290 1.5 5 5 3000 3048 9 999999999 125 0 0 88 0.2 0 0 +1.66284E7 34 25 60 98697 1176 1322 457 815 608 274 96188 35842 32503 13076 250 2.6 5 5 3000 3048 9 999999999 113 0 0 88 0.2 0 0 +1.6632E7 35.2 24.8 55 97085 1280 1322 463 906 544 380 105781 36264 44632 17065 270 2.6 5 5 2000 3000 9 999999999 109 0 0 88 0.2 0 0 +1.66356E7 36 24 50 98714 1313 1322 495 519 86 434 60317 6164 50804 18860 290 1.5 9 9 3500 3048 9 999999999 102 0 0 88 0.2 0 0 +1.66392E7 36 27 60 98714 1273 1322 499 497 64 435 57152 4355 50431 18696 200 1.5 9 9 3500 3048 9 999999999 137 0 0 88 0.2 0 0 +1.66428E7 37 25.3 51 96934 1162 1322 503 445 64 389 50966 4484 44826 16820 140 2.1 9 9 2000 3000 9 999999999 114 0 0 88 0.2 0 0 +1.66464E7 38 26 51 98730 988 1322 511 361 27 341 40631 1846 38635 14410 120 2.1 9 9 3500 3048 9 999999999 124 0 0 88 0.2 0 0 +1.665E7 37 26 54 98722 763 1322 504 254 24 240 28341 1484 26957 9789 110 4.1 9 9 4000 3048 9 999999999 124 0 0 88 0.2 0 0 +1.66536E7 36.4 26.5 57 96754 502 1322 501 137 15 132 15200 624 14645 5084 110 2.6 9 9 4000 3000 9 999999999 128 0 0 88 0.2 0 0 +1.66572E7 35 25 56 98705 223 1322 490 36 0 36 3504 0 3531 1384 100 3.1 9 9 3500 3048 9 999999999 112 0 0 88 0.2 0 0 +1.66608E7 33 27 71 98689 0 1061 480 0 0 0 0 0 0 0 120 4.1 9 9 3500 3048 9 999999999 138 0 0 88 0.2 0 0 +1.66644E7 32.2 25.1 66 97002 0 0 486 0 0 0 0 0 0 0 250 3.6 10 10 2000 900 0 19999999 113 0 0 88 0.2 0 0 +1.6668E7 30 27 84 98663 0 0 462 0 0 0 0 0 0 0 130 4.1 9 9 2800 3048 0 19999999 138 0 0 88 0.2 0 0 +1.66716E7 30 27 84 98663 0 0 462 0 0 0 0 0 0 0 160 4.6 9 9 3000 3048 0 19999999 138 0 0 88 0.2 0 0 +1.66752E7 28.4 25.6 85 97164 0 0 450 0 0 0 0 0 0 0 200 1.5 9 9 2000 3000 0 19999999 119 0 0 88 0.2 0 0 +1.66788E7 29 27 89 98654 0 0 456 0 0 0 0 0 0 0 180 1.5 9 9 3000 3048 0 19999999 139 0 0 88 0.2 0 0 +1.66824E7 29 27 89 98654 0 0 456 0 0 0 0 0 0 0 110 3.6 9 9 3000 3048 0 19999999 139 0 0 88 0.2 0 0 +1.6686E7 28.4 24.7 80 97057 0 0 449 0 0 0 0 0 0 0 90 4.6 9 9 2000 3000 0 19999999 109 0 0 88 0.2 0 0 +1.66896E7 29 27 89 98654 0 0 456 0 0 0 0 0 0 0 90 3.6 9 9 3000 3048 0 19999999 139 0 0 88 0.2 0 0 +1.66932E7 28 25 84 98646 0 0 447 0 0 0 0 0 0 0 110 4.1 9 9 3000 3048 0 19999999 114 0 0 88 0.2 0 0 +1.66968E7 28.2 25.1 83 97124 0 0 461 0 0 0 0 0 0 0 110 3.6 10 10 2000 900 9 999999999 113 0 0 88 0.2 1 0 +1.67004E7 28 25 84 98646 250 1184 447 44 0 44 4256 0 4290 1672 90 3.1 9 9 3000 3048 9 999999999 114 0 0 88 0.2 0 0 +1.6704E7 29 25 79 98654 528 1322 453 149 21 140 16528 993 15668 5464 100 4.1 9 9 3000 3048 9 999999999 114 0 0 88 0.2 0 0 +1.67076E7 30.2 25.4 76 97189 787 1322 435 479 442 215 54117 26068 24479 9237 90 4.1 5 5 2000 3000 9 999999999 117 0 0 88 0.2 0 0 +1.67112E7 32 26 71 98680 1007 1322 446 667 522 269 76780 31445 31175 12349 200 1.5 5 5 3500 3048 9 999999999 125 0 0 88 0.2 0 0 +1.67148E7 33 26 67 98689 1176 1322 479 451 87 374 51855 5810 43266 16446 50 1.5 9 9 3500 3048 9 999999999 125 0 0 88 0.2 0 0 +1.67184E7 31.6 26.6 75 97260 1280 1322 484 305 15 291 36298 830 34809 13972 250 2.1 10 10 2000 1050 0 919999999 131 0 0 88 0.2 0 0 +1.6722E7 31.6 27.1 77 97188 1313 1322 454 805 333 475 92445 23278 54957 19984 198 2.3 7 7 2000 1050 9 999999999 138 0 0 88 0.2 0 0 +1.67256E7 31.6 27.6 79 97117 1273 1322 455 743 272 481 84599 19226 55220 19889 232 2.4 7 7 2000 1050 9 999999999 145 0 0 88 0.2 0 0 +1.67292E7 31.6 28.1 82 97045 1162 1322 486 270 18 254 31825 933 30131 12297 290 2.6 10 10 2000 1050 0 919999999 152 0 0 88 0.2 0 0 +1.67328E7 30 26 79 98663 988 1322 473 220 5 216 25678 256 25409 10354 120 4.6 10 10 2500 2438 0 19999999 125 0 0 88 0.2 0 0 +1.67364E7 26 26 100 98628 763 1322 449 155 0 155 15575 0 15723 7071 10 4.1 10 10 2000 2438 0 19999999 126 0 0 88 0.2 0 0 +1.674E7 26.6 25.7 95 97012 502 1322 452 84 0 84 8219 0 8290 3580 120 4.1 10 10 2000 900 0 19999999 121 0 0 88 0.2 0 0 +1.67436E7 27 26 94 98637 222 1322 442 36 0 36 3471 0 3498 1374 150 1.5 9 9 2500 3048 0 19999999 126 0 0 88 0.2 0 0 +1.67472E7 27 26 94 98637 0 1056 442 0 0 0 0 0 0 0 150 1 9 9 3000 3048 0 19999999 126 0 0 88 0.2 0 0 +1.67508E7 27 25.6 92 97094 0 0 417 0 0 0 0 0 0 0 148 0 5 5 2000 3048 0 19999999 120 0 0 88 0.2 0 0 +1.67544E7 28 27 94 98646 0 0 424 0 0 0 0 0 0 0 20 1.5 5 5 3500 3048 0 19999999 139 0 0 88 0.2 0 0 +1.6758E7 28 27 94 98646 0 0 424 0 0 0 0 0 0 0 80 1.5 5 5 3500 3048 0 19999999 139 0 0 88 0.2 0 0 +1.67616E7 27.2 26.1 94 97164 0 0 419 0 0 0 0 0 0 0 339 0 5 5 2000 3048 0 19999999 126 0 0 88 0.2 0 0 +1.67652E7 27.6 26.5 94 97905 0 0 459 0 0 0 0 0 0 0 136 0 10 10 2500 3048 9 999999999 131 0 0 88 0.2 0 0 +1.67688E7 28 27 94 98646 0 0 424 0 0 0 0 0 0 0 153 0 5 5 3000 3048 0 19999999 139 0 0 88 0.2 0 0 +1.67724E7 27.2 26.4 95 97144 0 0 419 0 0 0 0 0 0 0 50 0 5 5 2000 2000 0 19999999 129 0 0 88 0.2 0 0 +1.6776E7 28 27 94 98646 0 0 424 0 0 0 0 0 0 0 40 1.5 5 5 2500 3048 0 19999999 139 0 0 88 0.2 0 0 +1.67796E7 28 28 100 98646 0 0 426 0 0 0 0 0 0 0 29 0 5 5 2500 3048 0 19999999 153 0 0 88 0.2 0 0 +1.67832E7 27.2 26.4 95 97096 0 0 444 0 0 0 0 0 0 0 102 0 9 9 2000 3000 9 999999999 129 0 0 88 0.2 6 0 +1.67868E7 28 27 94 98646 248 1173 462 27 0 27 2543 0 2564 1082 6 0 10 10 2200 3048 9 999999999 139 0 0 88 0.2 6 0 +1.67904E7 28 27 94 98646 527 1322 462 90 0 90 8837 0 8915 3874 301 0 10 10 2200 3048 9 999999999 139 0 0 88 0.2 6 0 +1.6794E7 27.8 26.7 94 97198 785 1322 461 161 0 161 18607 12 18681 7392 50 2.1 10 10 2000 2400 9 999999999 133 0 0 88 0.2 4 0 +1.67976E7 29 27 89 98654 1007 1322 468 225 5 221 26250 263 25956 10608 190 2.6 10 10 2000 2438 0 19999999 139 0 0 88 0.2 0 0 +1.68012E7 29 27 89 98654 1175 1322 468 274 7 268 32316 377 31794 12866 270 1 10 10 2000 2438 0 19999999 139 0 0 88 0.2 0 0 +1.68048E7 29.6 27.7 90 97223 1280 1322 473 305 7 298 36076 385 35495 14227 180 1.5 10 10 2000 1050 0 19999999 147 0 0 88 0.2 0 0 +1.68084E7 31 26 75 98672 1313 1322 480 315 13 302 37570 767 36221 14465 120 4.6 10 10 2000 2438 0 19999999 125 0 0 88 0.2 0 0 +1.6812E7 30 26 79 98663 1273 1322 460 498 54 446 57199 3804 51640 18983 70 6.2 9 9 2500 2438 0 19999999 125 0 0 88 0.2 0 0 +1.68156E7 31 27.7 83 97001 1162 1322 469 443 63 388 50534 4117 44532 16787 90 3.1 9 9 2000 1050 0 19999999 146 0 0 88 0.2 0 0 +1.68192E7 32 27 75 98680 988 1322 474 360 27 340 40464 1779 38493 14387 70 3.6 9 9 2500 3048 0 19999999 138 0 0 88 0.2 0 0 +1.68228E7 32 26 71 98680 762 1322 472 254 24 240 28298 1480 26919 9774 90 4.1 9 9 2800 3048 0 19999999 125 0 0 88 0.2 0 0 +1.68264E7 30.8 25.4 73 96863 501 1322 464 137 15 131 15197 654 14641 5070 90 4.1 9 9 2000 3000 0 19999999 116 0 0 88 0.2 0 0 +1.683E7 30 27 84 98663 221 1322 462 36 0 36 3437 0 3464 1364 90 4.6 9 9 3000 3048 0 19999999 138 0 0 88 0.2 0 0 +1.68336E7 29 26 84 98654 0 1051 454 0 0 0 0 0 0 0 100 3.1 9 9 3000 3048 0 19999999 125 0 0 88 0.2 0 0 +1.68372E7 29.6 25.1 77 97019 0 0 431 0 0 0 0 0 0 0 110 2.1 5 5 2000 3000 0 19999999 113 0 0 88 0.2 0 0 +1.68408E7 29 26 84 98654 0 0 422 0 0 0 0 0 0 0 110 3.1 3 3 3000 3000 0 19999999 125 0 0 88 0.2 0 0 +1.68444E7 29 27 89 98654 0 0 423 0 0 0 0 0 0 0 100 3.6 3 3 3000 3000 0 19999999 139 0 0 88 0.2 0 0 +1.6848E7 28.6 25.5 83 97147 0 0 426 0 0 0 0 0 0 0 110 3.1 5 5 2000 2000 0 19999999 118 0 0 88 0.2 0 0 +1.68516E7 28 26 89 98646 0 0 423 0 0 0 0 0 0 0 100 2.6 5 5 3000 3048 0 19999999 126 0 0 88 0.2 0 0 +1.68552E7 28 26 89 98646 0 0 423 0 0 0 0 0 0 0 90 2.6 5 5 3000 3048 0 19999999 126 0 0 88 0.2 0 0 +1.68588E7 27.4 25.4 89 97097 0 0 419 0 0 0 0 0 0 0 90 1.5 5 5 2000 3048 0 19999999 117 0 0 88 0.2 0 0 +1.68624E7 28 26 89 98646 0 0 423 0 0 0 0 0 0 0 100 1.5 5 5 3000 3048 0 19999999 126 0 0 88 0.2 0 0 +1.6866E7 28 26 89 98646 0 0 423 0 0 0 0 0 0 0 80 1.5 5 5 3000 3048 0 19999999 126 0 0 88 0.2 0 0 +1.68696E7 27.6 25.9 90 97128 0 0 421 0 0 0 0 0 0 0 90 2.6 5 5 2000 3048 9 999999999 123 0 0 88 0.2 7 0 +1.68732E7 28 26 89 98646 246 1162 423 77 63 66 8414 310 7173 2226 100 2.1 5 5 3000 3048 9 999999999 126 0 0 88 0.2 0 0 +1.68768E7 28 26 89 98646 525 1322 423 265 306 143 29322 14134 15959 5530 90 2.6 5 5 3000 3048 9 999999999 126 0 0 88 0.2 0 0 +1.68804E7 29.2 25.8 82 97210 784 1322 430 476 487 187 54358 26391 21520 8320 90 2.1 5 5 2000 3000 9 999999999 122 0 0 88 0.2 0 0 +1.6884E7 32 26 71 98680 1006 1322 446 665 595 213 77981 32095 25084 10281 120 5.1 5 5 3000 3000 9 999999999 125 0 0 88 0.2 0 0 +1.68876E7 33 26 67 98689 1174 1322 452 812 559 316 94566 34220 37007 14573 120 5.1 5 5 3500 3048 9 999999999 125 0 0 88 0.2 0 0 +1.68912E7 34 27.1 67 97173 1279 1322 487 500 84 419 57697 5543 48694 18254 140 5.7 9 9 2000 3000 9 999999999 137 0 0 88 0.2 0 0 +1.68948E7 35 27 63 98705 1313 1322 493 516 64 452 59483 4387 52535 19372 150 3.6 9 9 3500 3048 9 999999999 137 0 0 88 0.2 0 0 +1.68984E7 35 27 63 98705 1273 1322 493 497 64 435 57119 4355 50403 18686 130 3.6 9 9 3500 3048 9 999999999 137 0 0 88 0.2 0 0 +1.6902E7 35.6 27.1 62 96962 1162 1322 497 443 63 388 50638 4216 44600 16792 140 3.1 9 9 2000 3000 9 999999999 137 0 0 88 0.2 0 0 +1.69056E7 35 26 60 98705 987 1322 491 360 27 340 40588 1844 38596 14394 120 3.6 9 9 4000 3048 9 999999999 124 0 0 88 0.2 0 0 +1.69092E7 35 26 60 98705 762 1322 491 254 24 240 28278 1480 26900 9766 120 3.6 9 9 4000 3048 9 999999999 124 0 0 88 0.2 0 0 +1.69128E7 33.8 26.6 66 96820 500 1322 485 136 14 131 15108 603 14571 5056 110 4.1 9 9 2000 1050 9 999999999 130 0 0 88 0.2 0 0 +1.69164E7 33 27 71 98689 220 1322 480 36 0 36 3411 0 3438 1354 110 3.6 9 9 4000 3048 9 999999999 138 0 0 88 0.2 0 0 +1.692E7 32 26 71 98680 0 1045 446 0 0 0 0 0 0 0 120 3.1 5 5 4000 3048 9 999999999 125 0 0 88 0.2 0 0 +1.69236E7 30.8 26.6 78 96961 0 0 440 0 0 0 0 0 0 0 110 2.6 5 5 4000 3000 9 999999999 131 0 0 88 0.2 0 0 +1.69272E7 30 27 84 98663 0 0 436 0 0 0 0 0 0 0 110 2.6 5 5 4000 3048 9 999999999 138 0 0 88 0.2 0 0 +1.69308E7 30 27 84 98663 0 0 436 0 0 0 0 0 0 0 120 2.6 5 5 4000 3048 9 999999999 138 0 0 88 0.2 0 0 +1.69344E7 30 26.9 84 97120 0 0 436 0 0 0 0 0 0 0 110 2.6 5 5 4000 3048 9 999999999 135 0 0 88 0.2 0 0 +1.6938E7 30 27 84 98663 0 0 462 0 0 0 0 0 0 0 90 4.1 9 9 3500 3048 9 999999999 138 0 0 88 0.2 0 0 +1.69416E7 30 28 89 98663 0 0 463 0 0 0 0 0 0 0 90 3.6 9 9 3500 3048 9 999999999 153 0 0 88 0.2 0 0 +1.69452E7 29.8 27 85 97118 0 0 460 0 0 0 0 0 0 0 90 3.1 9 9 2000 3000 9 999999999 137 0 0 88 0.2 0 0 +1.69488E7 30 28 89 98663 0 0 463 0 0 0 0 0 0 0 110 3.1 9 9 3500 3048 9 999999999 153 0 0 88 0.2 0 0 +1.69524E7 30 28 89 98663 0 0 463 0 0 0 0 0 0 0 90 3.6 9 9 3500 3048 9 999999999 153 0 0 88 0.2 0 0 +1.6956E7 29.4 27.2 88 97134 0 0 458 0 0 0 0 0 0 0 110 3.1 9 9 2000 3000 9 999999999 140 0 0 88 0.2 0 0 +1.69596E7 30 28 89 98663 244 1151 463 42 0 42 4039 0 4071 1599 110 3.6 9 9 3500 3048 9 999999999 153 0 0 88 0.2 0 0 +1.69632E7 31 28 84 98672 523 1322 469 146 18 139 16113 735 15407 5392 120 4.1 9 9 3500 3048 9 999999999 153 0 0 88 0.2 0 0 +1.69668E7 32.4 27.8 77 97228 783 1322 478 263 24 248 29199 1442 27763 10154 110 3.6 9 9 2000 3000 9 999999999 148 0 0 88 0.2 0 0 +1.69704E7 32 28 79 98680 1005 1322 475 367 27 347 41255 1737 39253 14710 120 3.6 9 9 3500 3048 9 999999999 153 0 0 88 0.2 0 0 +1.6974E7 33 27 71 98689 1174 1322 480 449 57 399 51277 3840 45839 17159 140 4.1 9 9 3500 3048 9 999999999 138 0 0 88 0.2 0 0 +1.69776E7 33 25.1 63 97164 1279 1322 491 306 13 293 36398 761 35130 14053 140 3.1 10 10 2000 1050 9 999999999 113 0 0 88 0.2 0 0 +1.69812E7 34 28 71 98697 1312 1322 502 314 7 307 37253 394 36633 14645 150 4.1 10 10 3500 3048 9 999999999 152 0 0 88 0.2 0 0 +1.69848E7 30 27 84 98663 1272 1322 475 303 7 296 35885 392 35311 14145 350 4.6 10 10 1500 2438 0 19999999 138 0 0 88 0.2 0 0 +1.69884E7 28.2 27.4 95 97075 1161 1322 464 270 7 264 31778 362 31277 12684 200 6.2 10 10 1000 1050 0 19999999 143 0 0 88 0.2 0 0 +1.6992E7 28 27 94 98646 987 1322 462 219 5 216 25563 245 25300 10327 330 3.6 10 10 1800 2438 0 19999999 139 0 0 88 0.2 0 0 +1.69956E7 28 27 94 98646 761 1322 462 154 0 154 15480 0 15628 7042 200 2.1 10 10 1800 2438 0 19999999 139 0 0 88 0.2 0 0 +1.69992E7 28.4 25.6 85 96921 500 1322 463 83 0 83 8168 0 8239 3556 91 0 10 10 2000 1200 0 19999999 119 0 0 88 0.2 0 0 +1.70028E7 29 27 89 98654 219 1322 456 35 0 35 3382 0 3408 1342 80 1 9 9 2000 3048 0 19999999 139 0 0 88 0.2 0 0 +1.70064E7 29 27 89 98654 0 1039 456 0 0 0 0 0 0 0 330 1.5 9 9 2000 3048 0 19999999 139 0 0 88 0.2 0 0 +1.701E7 28.6 27.2 92 97078 0 0 453 0 0 0 0 0 0 0 360 2.1 9 9 2000 3000 0 19999999 140 0 0 88 0.2 0 0 +1.70136E7 29 28 94 98654 0 0 457 0 0 0 0 0 0 0 10 2.6 9 9 2500 3048 0 19999999 153 0 0 88 0.2 0 0 +1.70172E7 29 28 94 98654 0 0 457 0 0 0 0 0 0 0 10 2.6 9 9 2500 3048 0 19999999 153 0 0 88 0.2 0 0 +1.70208E7 28.6 27.2 92 97273 0 0 453 0 0 0 0 0 0 0 90 2.1 9 9 2000 3000 0 19999999 140 0 0 88 0.2 0 0 +1.70244E7 29 28 94 98654 0 0 457 0 0 0 0 0 0 0 70 2.1 9 9 2500 3048 0 19999999 153 0 0 88 0.2 0 0 +1.7028E7 29 26 84 98654 0 0 454 0 0 0 0 0 0 0 100 2.6 9 9 2500 3048 0 19999999 125 0 0 88 0.2 0 0 +1.70316E7 28.4 27 92 97106 0 0 452 0 0 0 0 0 0 0 90 2.6 9 9 2000 3000 0 19999999 137 0 0 88 0.2 0 0 +1.70352E7 29 27 89 98654 0 0 456 0 0 0 0 0 0 0 90 2.6 9 9 2500 3048 0 19999999 139 0 0 88 0.2 0 0 +1.70388E7 29 28 94 98654 0 0 457 0 0 0 0 0 0 0 90 2.6 9 9 2500 3048 0 19999999 153 0 0 88 0.2 0 0 +1.70424E7 28.2 26.8 92 97172 0 0 450 0 0 0 0 0 0 0 90 2.6 9 9 2000 900 9 999999999 135 0 0 88 0.2 5 0 +1.7046E7 30 28 89 98663 242 1140 476 25 0 25 2427 0 2446 1035 100 2.6 10 10 2500 914 9 999999999 153 0 0 88 0.2 5 0 +1.70496E7 30 28 89 98663 521 1322 476 88 0 88 8668 0 8745 3806 90 3.6 10 10 2500 914 9 999999999 153 0 0 88 0.2 5 0 +1.70532E7 31.2 26.5 76 97217 781 1322 468 262 35 242 29314 2142 27151 9966 110 3.1 9 9 2000 3000 9 999999999 130 0 0 88 0.2 0 0 +1.70568E7 33 28 75 98689 1004 1322 482 367 27 347 41199 1736 39199 14689 100 3.1 9 9 3500 2438 9 999999999 152 0 0 88 0.2 0 0 +1.70604E7 33 27 71 98689 1173 1322 480 449 64 393 51294 4245 45183 16981 120 3.1 9 9 3500 2438 9 999999999 138 0 0 88 0.2 0 0 +1.7064E7 33.8 26.6 66 97288 1278 1322 485 500 64 438 57530 4424 50755 18786 110 3.1 9 9 2000 3000 9 999999999 131 0 0 88 0.2 0 0 +1.70676E7 34 27 67 98697 1312 1322 486 516 64 452 59442 4387 52500 19360 180 2.6 9 9 3500 2743 9 999999999 138 0 0 88 0.2 0 0 +1.70712E7 35 26 60 98705 1272 1322 491 498 65 435 57279 4509 50507 18688 100 3.1 9 9 3500 2743 9 999999999 124 0 0 88 0.2 0 0 +1.70748E7 35.4 26.3 59 97116 1161 1322 494 444 64 388 50742 4337 44665 16791 110 2.6 9 9 2000 3000 9 999999999 126 0 0 88 0.2 0 0 +1.70784E7 37 27 57 98722 987 1322 506 360 27 340 40417 1780 38447 14366 90 2.6 9 9 3500 3048 0 99999999 137 0 0 88 0.2 0 0 +1.7082E7 35 25 56 98705 761 1322 490 254 24 240 28308 1531 26921 9751 80 4.1 9 9 4000 3048 0 99999999 112 0 0 88 0.2 0 0 +1.70856E7 33.8 26 64 96898 499 1322 484 136 14 130 15059 611 14530 5034 110 2.6 9 9 4000 3000 0 99999999 123 0 0 88 0.2 0 0 +1.70892E7 35 26 60 98705 218 1322 491 35 0 35 3362 0 3388 1332 120 2.6 9 9 5000 3048 0 99999999 124 0 0 88 0.2 0 0 +1.70928E7 34 26 63 98697 0 1032 485 0 0 0 0 0 0 0 120 2.1 9 9 4000 3048 0 99999999 124 0 0 88 0.2 0 0 +1.70964E7 31.8 27.1 76 97096 0 0 446 0 0 0 0 0 0 0 31 0 5 5 4000 3048 0 99999999 138 0 0 88 0.2 0 0 +1.71E7 33 27 71 98689 0 0 453 0 0 0 0 0 0 0 20 2.6 5 5 3500 3048 0 99999999 138 0 0 88 0.2 0 0 +1.71036E7 32 27 75 98680 0 0 447 0 0 0 0 0 0 0 60 2.1 5 5 3500 3048 0 99999999 138 0 0 88 0.2 0 0 +1.71072E7 31.2 27.3 80 97198 0 0 443 0 0 0 0 0 0 0 70 2.1 5 5 2000 3048 0 99999999 141 0 0 88 0.2 5 0 +1.71108E7 31 27 79 98672 0 0 442 0 0 0 0 0 0 0 40 2.1 5 5 3000 3048 0 99999999 138 0 0 88 0.2 0 0 +1.71144E7 30 27 84 98663 0 0 436 0 0 0 0 0 0 0 30 2.1 5 5 3000 3048 0 99999999 138 0 0 88 0.2 5 0 +1.7118E7 30 27 84 98663 0 0 436 0 0 0 0 0 0 0 50 2.1 5 5 3000 3048 0 99999999 138 0 0 88 0.2 0 0 +1.71216E7 30 28 89 98663 0 0 437 0 0 0 0 0 0 0 60 2.6 5 5 3000 3048 0 99999999 153 0 0 88 0.2 0 0 +1.71252E7 30 28 89 98663 0 0 437 0 0 0 0 0 0 0 70 2.1 5 5 3000 3048 0 99999999 153 0 0 88 0.2 0 0 +1.71288E7 29.2 26.7 86 97200 0 0 431 0 0 0 0 0 0 0 110 2.1 5 5 2000 2000 9 999999999 133 0 0 88 0.2 0 0 +1.71324E7 30 27 84 98663 240 1129 436 74 57 64 8030 72 6937 2154 110 2.6 5 5 3000 3048 9 999999999 138 0 0 88 0.2 0 0 +1.7136E7 32 28 79 98680 520 1323 449 260 299 143 28657 12557 15802 5478 100 3.6 5 5 3500 3048 9 999999999 153 0 0 88 0.2 0 0 +1.71396E7 31.8 25.6 70 97300 780 1323 444 473 484 187 53964 26440 21481 8287 90 4.6 5 5 4000 2000 9 999999999 119 0 0 88 0.2 0 0 +1.71432E7 33 27 71 98689 1003 1323 453 661 592 213 77371 30851 25036 10270 110 5.1 5 5 4000 3048 9 999999999 138 0 0 88 0.2 0 0 +1.71468E7 34 27 67 98697 1172 1323 459 809 602 275 95014 33415 32548 13122 120 5.1 5 5 4000 3048 9 999999999 138 0 0 88 0.2 0 0 +1.71504E7 35.4 27.5 64 97360 1278 1323 468 900 625 296 106571 34001 35244 14136 140 4.1 5 5 4000 3000 9 999999999 143 0 0 88 0.2 0 0 +1.7154E7 36 27 60 98714 1312 1323 471 930 623 312 110284 34989 37250 14830 130 3.1 5 5 4000 3000 9 999999999 137 0 0 88 0.2 0 0 +1.71576E7 36 27 60 98714 1272 1323 471 895 628 291 106167 34605 34796 13969 130 4.1 5 5 4000 3000 0 919999999 137 0 0 88 0.2 0 0 +1.71612E7 34.6 26.9 64 97119 1161 1323 463 799 557 310 92877 33056 36299 14344 90 3.6 5 5 2000 3000 0 919999999 134 0 0 88 0.2 0 0 +1.71648E7 36 27 60 98714 986 1323 499 359 83 297 40826 5161 34000 13135 100 4.1 9 9 3100 3000 0 919999999 137 0 0 88 0.2 0 0 +1.71684E7 35 27 63 98705 760 1323 465 455 424 212 51140 23657 23913 8947 60 3.1 5 5 3100 3000 0 919999999 137 0 0 88 0.2 0 0 +1.7172E7 34.4 26.1 62 97079 498 1323 460 244 285 137 26944 12553 15180 5198 90 3.1 5 5 2000 3000 0 919999999 124 0 0 88 0.2 0 0 +1.71756E7 30 26 79 98663 217 1323 435 63 42 56 6816 0 6089 1885 320 4.1 5 5 3000 3000 0 19999999 125 0 0 88 0.2 0 0 +1.71792E7 30 26 79 98663 0 1025 460 0 0 0 0 0 0 0 350 1.5 9 9 3000 3000 0 19999999 125 0 0 88 0.2 0 0 +1.71828E7 30.2 25.7 77 97209 0 0 461 0 0 0 0 0 0 0 20 4.1 9 9 2000 3000 0 19999999 120 0 0 88 0.2 0 0 +1.71864E7 31 26 75 98672 0 0 466 0 0 0 0 0 0 0 40 3.6 9 9 3000 3048 0 19999999 125 0 0 88 0.2 0 0 +1.719E7 31 26 75 98672 0 0 466 0 0 0 0 0 0 0 20 4.1 9 9 3000 3048 0 19999999 125 0 0 88 0.2 0 0 +1.71936E7 29.6 25.7 80 97291 0 0 457 0 0 0 0 0 0 0 50 3.1 9 9 2000 3000 0 19999999 120 0 0 88 0.2 0 0 +1.71972E7 29 26 84 98654 0 0 454 0 0 0 0 0 0 0 20 3.1 9 9 3000 3048 0 19999999 125 0 0 88 0.2 0 0 +1.72008E7 29 27 89 98654 0 0 456 0 0 0 0 0 0 0 50 2.1 9 9 3000 3048 0 19999999 139 0 0 88 0.2 0 0 +1.72044E7 28.6 25.5 83 97205 0 0 451 0 0 0 0 0 0 0 340 1.5 9 9 2000 3000 0 19999999 118 0 0 88 0.2 0 0 +1.7208E7 29 27 89 98654 0 0 456 0 0 0 0 0 0 0 40 1 9 9 3000 3048 0 19999999 139 0 0 88 0.2 0 0 +1.72116E7 29 27 89 98654 0 0 456 0 0 0 0 0 0 0 250 1 9 9 3000 3048 0 19999999 139 0 0 88 0.2 0 0 +1.72152E7 28.4 26.4 89 97223 0 0 426 0 0 0 0 0 0 0 156 0 5 5 2000 3000 9 999999999 129 0 0 88 0.2 1 0 +1.72188E7 29 26 84 98654 238 1118 429 73 56 63 7946 143 6876 2130 296 0 5 5 2200 3048 9 999999999 125 0 0 88 0.2 0 0 +1.72224E7 29 27 89 98654 518 1323 430 259 300 142 28629 13151 15746 5447 50 2.1 5 5 2500 3048 9 999999999 139 0 0 88 0.2 0 0 +1.7226E7 31.4 27.3 79 97336 779 1323 444 470 477 189 53479 24703 21649 8353 90 3.1 5 5 2000 3000 9 999999999 141 0 0 88 0.2 0 0 +1.72296E7 32.9 27.4 73 97329 1001 1323 457 611 433 283 69818 25682 32583 12786 75 3.1 6 6 2000 3000 9 999999999 142 0 0 88 0.2 0 0 +1.72332E7 34.3 27.5 68 97321 1172 1323 462 793 537 318 92064 31488 37147 14641 258 3.1 5 5 2000 3000 9 999999999 143 0 0 88 0.2 0 0 +1.72368E7 35.8 27.6 63 97314 1277 1323 488 649 257 401 75101 16348 46718 17713 90 3.1 8 8 2000 3000 9 999999999 144 0 0 88 0.2 0 0 +1.72404E7 36.2 27.4 61 97243 1312 1323 470 960 638 328 113397 36214 38954 15402 176 3.3 4 4 2000 3000 9 999999999 141 0 0 88 0.2 0 0 +1.7244E7 36.6 27.1 59 97171 1272 1323 472 934 668 292 110733 36719 34830 13982 252 3.4 4 4 2000 3000 9 999999999 137 0 0 88 0.2 0 0 +1.72476E7 37 26.9 56 97100 1161 1323 495 577 209 393 65816 14121 45209 16945 90 3.6 8 8 2000 3000 9 999999999 134 0 0 88 0.2 0 0 +1.72512E7 36.5 26.3 56 97044 986 1323 466 684 630 215 79835 33962 25212 10281 217 3.3 3 3 2666 3000 9 999999999 126 0 0 88 0.2 0 0 +1.72548E7 36.1 25.8 56 96988 760 1323 463 481 530 176 54927 28024 20236 7808 352 2.9 3 3 3333 3000 9 999999999 120 0 0 88 0.2 0 0 +1.72584E7 35.6 25.2 55 96933 497 1323 484 176 73 149 19335 3528 16407 5487 90 2.6 8 8 4000 1200 9 999999999 113 0 0 88 0.2 0 0 +1.7262E7 33.9 25.4 62 96980 216 1323 453 64 22 60 6902 0 6537 1977 342 2.4 4 4 3333 1200 9 999999999 116 0 0 88 0.2 0 0 +1.72656E7 32.1 25.7 69 97027 0 1017 450 0 0 0 0 0 0 0 129 2.3 6 6 2666 1200 9 999999999 120 0 0 88 0.2 0 0 +1.72692E7 30.4 25.9 77 97074 0 0 453 0 0 0 0 0 0 0 180 2.1 8 8 2000 1050 9 999999999 122 0 0 88 0.2 0 0 +1.72728E7 30.3 26 78 97125 0 0 445 0 0 0 0 0 0 0 235 1.9 7 7 2000 1050 9 999999999 124 0 0 88 0.2 0 0 +1.72764E7 30.1 26 79 97176 0 0 444 0 0 0 0 0 0 0 202 1.7 7 7 2000 1050 9 999999999 124 0 0 88 0.2 0 0 +1.728E7 30 26.1 80 97227 0 0 451 0 0 0 0 0 0 0 230 1.5 8 8 2000 3000 9 999999999 125 0 0 88 0.2 0 0 +1.72836E7 29.7 26.1 81 97208 0 0 449 0 0 0 0 0 0 0 139 1.7 8 8 2000 3000 9 999999999 125 0 0 88 0.2 0 0 +1.72872E7 29.3 26.2 83 97189 0 0 447 0 0 0 0 0 0 0 320 1.9 8 8 2000 3000 9 999999999 127 0 0 88 0.2 0 0 +1.72908E7 29 26.2 85 97169 0 0 429 0 0 0 0 0 0 0 270 2.1 5 5 2000 2000 9 999999999 127 0 0 88 0.2 0 0 +1.72944E7 28.6 26 86 97166 0 0 442 0 0 0 0 0 0 0 121 1.9 8 8 2000 2000 9 999999999 124 0 0 88 0.2 0 0 +1.7298E7 28.2 25.7 87 97163 0 0 449 0 0 0 0 0 0 0 258 1.7 9 9 2000 2000 9 999999999 121 0 0 88 0.2 0 0 +1.73016E7 27.8 25.5 87 97159 0 0 446 0 0 0 0 0 0 0 180 1.5 9 9 2000 1200 0 99999999 118 0 0 88 0.2 1 0 +1.73052E7 28 26 89 98646 235 1106 448 40 0 40 3831 0 3861 1512 240 1.5 9 9 2500 3048 0 99999999 126 0 0 88 0.2 0 0 +1.73088E7 28 26 89 98646 516 1323 448 143 19 136 15901 852 15141 5273 280 2.6 9 9 2500 3048 0 99999999 126 0 0 88 0.2 0 0 +1.73124E7 28.2 25.9 87 97279 777 1323 462 159 0 159 18380 2 18465 7282 270 4.1 10 10 2000 1200 0 99999999 123 0 0 88 0.2 0 0 +1.7316E7 28 27 94 98646 1000 1323 462 223 5 220 26032 257 25748 10518 260 3.6 10 10 2800 3048 0 99999999 139 0 0 88 0.2 0 0 +1.73196E7 28 27 94 98646 1171 1323 462 273 7 267 32156 374 31641 12809 280 2.6 10 10 2800 2438 0 99999999 139 0 0 88 0.2 0 0 +1.73232E7 29 26.2 85 97277 1277 1323 467 305 7 298 36142 406 35559 14216 82 0 10 10 2000 1050 0 99999999 127 0 0 88 0.2 0 0 +1.73268E7 30 27 84 98663 1311 1323 475 314 7 307 37318 410 36697 14644 270 1.5 10 10 2800 2438 0 99999999 138 0 0 88 0.2 0 0 +1.73304E7 31 27 79 98672 1271 1323 481 303 7 296 35844 392 35272 14130 70 1 10 10 2800 2438 0 99999999 138 0 0 88 0.2 0 0 +1.7334E7 32.2 26.4 72 97128 1160 1323 488 270 7 264 31840 376 31338 12686 90 1.5 10 10 2000 2400 0 99999999 128 0 0 88 0.2 0 0 +1.73376E7 32 27 75 98680 985 1323 487 219 5 215 25504 243 25245 10301 20 0 10 10 3000 2438 0 99999999 138 0 0 88 0.2 0 0 +1.73412E7 32 27 75 98680 759 1323 487 154 0 154 15406 0 15553 7003 50 1.5 10 10 3000 2438 0 99999999 138 0 0 88 0.2 0 0 +1.73448E7 32.6 27.1 73 96947 496 1323 491 82 0 82 8030 0 8101 3504 20 2.1 10 10 2000 2400 0 99999999 137 0 0 88 0.2 0 0 +1.73484E7 32 27 75 98680 214 1323 487 21 0 21 1980 0 1996 841 50 2.1 10 10 2500 2438 0 99999999 138 0 0 88 0.2 0 0 +1.7352E7 32 26 71 98680 0 1009 446 0 0 0 0 0 0 0 30 3.1 5 5 2500 2438 0 99999999 125 0 0 88 0.2 0 0 +1.73556E7 31.4 25.5 71 97073 0 0 442 0 0 0 0 0 0 0 50 2.6 5 5 2000 3000 0 99999999 117 0 0 88 0.2 0 0 +1.73592E7 31 26 75 98672 0 0 440 0 0 0 0 0 0 0 50 2.1 5 5 2800 3048 0 99999999 125 0 0 88 0.2 0 0 +1.73628E7 30 26 79 98663 0 0 460 0 0 0 0 0 0 0 50 2.1 9 9 3000 3048 0 99999999 125 0 0 88 0.2 0 0 +1.73664E7 29.6 25.1 77 97155 0 0 457 0 0 0 0 0 0 0 50 2.1 9 9 2000 3000 0 99999999 113 0 0 88 0.2 0 0 +1.737E7 30 26 79 98663 0 0 435 0 0 0 0 0 0 0 90 1.5 5 5 3000 3048 0 99999999 125 0 0 88 0.2 0 0 +1.73736E7 30 27 84 98663 0 0 436 0 0 0 0 0 0 0 161 0 5 5 3000 3048 0 99999999 138 0 0 88 0.2 0 0 +1.73772E7 29.4 25.4 79 97085 0 0 456 0 0 0 0 0 0 0 6 0 9 9 2000 3000 0 99999999 117 0 0 88 0.2 0 0 +1.73808E7 29 27 89 98654 0 0 456 0 0 0 0 0 0 0 129 0 9 9 2500 3048 0 99999999 139 0 0 88 0.2 0 0 +1.73844E7 29 27 89 98654 0 0 456 0 0 0 0 0 0 0 100 0 9 9 2200 3048 0 99999999 139 0 0 88 0.2 0 0 +1.7388E7 28.8 26.3 86 97022 0 0 453 0 0 0 0 0 0 0 270 2.1 9 9 2000 3000 9 999999999 128 0 0 88 0.2 0 0 +1.73916E7 29 27 89 98654 233 1095 468 24 0 24 2292 0 2310 974 290 1.5 10 10 2200 3048 9 999999999 139 0 0 88 0.2 0 0 +1.73952E7 30 27 84 98663 514 1323 475 87 0 87 8520 0 8595 3727 194 1 10 10 2200 1067 9 999999999 138 0 0 88 0.2 0 0 +1.73988E7 29.8 26.5 83 97274 776 1323 473 158 0 158 15942 0 16095 7257 50 1.5 10 10 2000 1050 9 999999999 130 0 0 88 0.2 0 0 +1.74024E7 31 27 79 98672 999 1323 481 223 33 198 26210 1687 23365 9657 149 0 10 10 2200 1067 9 999999999 138 0 0 88 0.2 0 0 +1.7406E7 31 27 79 98672 1170 1323 468 447 57 397 51061 3838 45644 17092 300 1 9 9 2500 2438 9 999999999 138 0 0 88 0.2 0 0 +1.74096E7 33.2 27.4 72 97293 1276 1323 482 498 53 447 57149 3636 51635 19021 270 2.6 9 9 2000 3000 9 999999999 142 0 0 88 0.2 0 0 +1.74132E7 33 27 71 98689 1311 1323 494 314 13 301 37364 738 36029 14416 300 1.5 10 10 3000 2743 9 999999999 138 0 0 88 0.2 0 0 +1.74168E7 33 27 71 98689 1271 1323 494 303 7 296 35833 392 35261 14126 130 4.1 10 10 2200 2438 0 99999999 138 0 0 88 0.2 0 0 +1.74204E7 30.4 27.1 83 97104 1160 1323 477 270 7 264 31748 366 31250 12667 180 3.1 10 10 2000 1050 0 99999999 138 0 0 88 0.2 0 0 +1.7424E7 28 27 94 98646 985 1323 462 219 5 215 25477 242 25219 10290 290 2.1 10 10 2200 2438 0 99999999 139 0 0 88 0.2 0 0 +1.74276E7 29 27 89 98654 758 1323 468 153 0 153 15377 0 15523 6989 230 1.5 10 10 2200 2438 0 19999999 139 0 0 88 0.2 0 0 +1.74312E7 28.4 26.4 89 97125 494 1323 464 82 0 82 8017 0 8087 3492 110 2.6 10 10 2000 1050 0 19999999 129 0 0 88 0.2 0 0 +1.74348E7 27 26 94 98637 213 1323 455 20 0 20 1961 0 1976 831 90 2.1 10 10 2200 2438 0 19999999 126 0 0 88 0.2 0 0 +1.74384E7 28 27 94 98646 0 1000 462 0 0 0 0 0 0 0 80 2.1 10 10 2200 2438 0 19999999 139 0 0 88 0.2 0 0 +1.7442E7 27.2 26.1 94 97203 0 0 456 0 0 0 0 0 0 0 90 2.1 10 10 2000 1050 0 19999999 126 0 0 88 0.2 0 0 +1.74456E7 27 27 100 98637 0 0 456 0 0 0 0 0 0 0 90 3.1 10 10 2500 2438 0 19999999 139 0 0 88 0.2 0 0 +1.74492E7 28 27 94 98646 0 0 450 0 0 0 0 0 0 0 110 3.6 9 9 2800 2438 0 19999999 139 0 0 88 0.2 0 0 +1.74528E7 27.2 26.4 95 97310 0 0 435 0 0 0 0 0 0 0 110 3.1 8 8 2000 3000 0 19999999 130 0 0 88 0.2 0 0 +1.74564E7 27 26.1 95 97266 0 0 455 0 0 0 0 0 0 0 123 2.1 10 10 2000 3000 9 999999999 126 0 0 88 0.2 0 0 +1.746E7 26.8 25.8 94 97222 0 0 453 0 0 0 0 0 0 0 254 1 10 10 2000 3000 9 999999999 122 0 0 88 0.2 0 0 +1.74636E7 26.6 25.5 94 97178 0 0 430 0 0 0 0 0 0 0 142 0 8 8 2000 3000 0 19999999 118 0 0 88 0.2 0 0 +1.74672E7 26.6 25.6 94 97181 0 0 452 0 0 0 0 0 0 0 95 0.9 10 10 2000 3000 9 999999999 120 0 0 88 0.2 0 0 +1.74708E7 26.6 25.6 94 97184 0 0 452 0 0 0 0 0 0 0 280 1.7 10 10 2000 3000 9 999999999 120 0 0 88 0.2 0 0 +1.74744E7 26.6 25.7 95 97188 0 0 440 0 0 0 0 0 0 0 140 2.6 9 9 2000 1050 9 999999999 121 0 0 88 0.2 5 0 +1.7478E7 27.3 25.8 92 97249 231 1083 444 34 0 34 3272 0 3298 1321 207 2.4 9 9 2000 1050 9 999999999 122 0 0 88 0.2 0 0 +1.74816E7 27.9 26 89 97310 513 1323 448 150 29 138 16586 1316 15402 5324 200 2.3 9 9 2000 1050 9 999999999 124 0 0 88 0.2 0 0 +1.74852E7 28.6 26.1 86 97370 774 1323 452 260 24 245 28935 1522 27503 10003 70 2.1 9 9 2000 1050 9 999999999 126 0 0 88 0.2 5 0 +1.74888E7 29 27 89 98654 998 1323 456 365 27 345 41055 1799 39049 14594 70 3.6 9 9 3500 3048 9 999999999 139 0 0 88 0.2 5 0 +1.74924E7 30 27 84 98663 1170 1323 462 447 64 391 51080 4246 44992 16916 80 3.1 9 9 3500 3048 9 999999999 138 0 0 88 0.2 5 0 +1.7496E7 30.8 26.9 80 97321 1276 1323 466 499 64 437 57317 4381 50576 18735 90 3.1 9 9 2000 1050 9 999999999 135 0 0 88 0.2 5 0 +1.74996E7 32 27 75 98680 1310 1323 474 515 64 451 59329 4391 52395 19324 80 2.6 9 9 3500 3048 9 999999999 138 0 0 88 0.2 0 0 +1.75032E7 33 27 71 98689 1271 1323 480 496 64 434 56990 4360 50285 18644 130 3.1 9 9 4000 3048 9 999999999 138 0 0 88 0.2 0 0 +1.75068E7 33.6 27.3 70 98694 1159 1323 484 442 57 392 50393 3786 45049 16905 90 3.1 9 9 4000 1050 9 999999999 142 0 0 88 0.2 0 0 +1.75104E7 29 28 94 98654 984 1323 470 218 32 195 25569 1522 22946 9486 120 4.1 10 10 600 914 0 19999999 153 0 0 88 0.2 5 0 +1.7514E7 27 27 100 98637 757 1323 456 153 0 153 15353 0 15499 6976 320 3.1 10 10 1200 610 0 19999999 139 0 0 88 0.2 5 0 +1.75176E7 26.8 26.2 97 97082 493 1323 441 134 15 128 14808 622 14257 4937 270 3.1 9 9 2000 600 0 19999999 127 0 0 88 0.2 5 0 +1.75212E7 27 26 94 98637 211 1323 442 33 0 33 3176 0 3201 1260 280 1.5 9 9 2500 2438 0 19999999 126 0 0 88 0.2 5 0 +1.75248E7 28 27 94 98646 0 991 450 0 0 0 0 0 0 0 90 2.1 9 9 2500 3048 0 19999999 139 0 0 88 0.2 5 0 +1.75284E7 26.8 26.2 97 97248 0 0 441 0 0 0 0 0 0 0 90 2.1 9 9 2000 3000 0 19999999 127 0 0 88 0.2 5 0 +1.7532E7 28 27 94 98646 0 0 450 0 0 0 0 0 0 0 70 1 9 9 2500 3048 0 19999999 139 0 0 88 0.2 5 0 +1.75356E7 28 27 94 98646 0 0 450 0 0 0 0 0 0 0 10 1.5 9 9 2500 3048 0 19999999 139 0 0 88 0.2 5 0 +1.75392E7 26.6 26 97 97285 0 0 440 0 0 0 0 0 0 0 243 0 9 9 2000 3000 0 19999999 125 0 0 88 0.2 0 0 +1.75428E7 27 26 94 98637 0 0 442 0 0 0 0 0 0 0 171 0 9 9 2500 3048 0 19999999 126 0 0 88 0.2 0 0 +1.75464E7 27 26 94 98637 0 0 418 0 0 0 0 0 0 0 253 0 5 5 2000 3048 0 19999999 126 0 0 88 0.2 0 0 +1.755E7 26 25.7 98 97173 0 0 412 0 0 0 0 0 0 0 42 0 5 5 1000 3000 0 19999999 121 0 0 88 0.2 0 0 +1.75536E7 27 26 94 98637 0 0 418 0 0 0 0 0 0 0 38 0 5 5 1600 3048 0 19999999 126 0 0 88 0.2 0 0 +1.75572E7 27 26 94 98637 0 0 418 0 0 0 0 0 0 0 225 0 5 5 1800 3048 0 19999999 126 0 0 88 0.2 0 0 +1.75608E7 26.6 26.3 98 97158 0 0 453 0 0 0 0 0 0 0 90 1.5 10 10 1000 2400 0 919999999 128 0 0 88 0.2 5 0 +1.75644E7 26 26 100 98628 229 1071 412 69 46 61 7462 12 6632 2045 103 0 5 5 1800 2438 0 919999999 126 0 0 88 0.2 5 0 +1.7568E7 29 28 94 98654 511 1324 457 141 18 134 15551 709 14863 5188 350 1 9 9 2100 3048 0 919999999 153 0 0 88 0.2 5 0 +1.75716E7 28.2 27.9 98 97289 773 1324 452 258 24 244 28683 1409 27286 9959 15 0 9 9 2000 3000 0 919999999 150 0 0 88 0.2 5 0 +1.75752E7 31 28 84 98672 997 1324 469 364 27 344 40858 1731 38876 14559 50 3.1 9 9 2500 3048 0 919999999 153 0 0 88 0.2 5 0 +1.75788E7 32 28 79 98680 1169 1324 475 446 63 390 50864 4089 44834 16892 110 3.1 9 9 2800 3048 0 919999999 153 0 0 88 0.2 5 0 +1.75824E7 32.4 26.9 73 97266 1275 1324 476 498 84 417 57492 5590 48504 18183 140 4.1 9 9 2000 1200 0 919999999 135 0 0 88 0.2 5 0 +1.7586E7 33 28 75 98689 1310 1324 455 927 529 403 107493 32847 47066 17899 110 6.2 5 5 3500 3048 0 919999999 152 0 0 88 0.2 5 0 +1.75896E7 34 27 67 98697 1270 1324 459 894 629 290 105979 34627 34653 13918 110 3.1 5 5 4500 3048 0 919999999 138 0 0 88 0.2 5 0 +1.75932E7 35.6 25.2 55 97127 1159 1324 466 799 563 306 93252 35026 35958 14200 110 5.1 5 5 4000 3000 0 919999999 113 0 0 88 0.2 0 0 +1.75968E7 34 25 60 98697 983 1324 484 359 84 297 40926 5542 34004 13084 120 5.1 9 9 6000 3048 0 919999999 113 0 0 88 0.2 5 0 +1.76004E7 33 25 63 98689 756 1324 477 251 17 241 28016 1107 27074 9751 120 5.1 9 9 6000 3048 0 919999999 113 0 0 88 0.2 0 0 +1.7604E7 32.4 26.3 70 96994 492 1324 475 133 13 128 14735 548 14257 4931 110 2.6 9 9 4000 3000 0 919999999 127 0 0 88 0.2 0 0 +1.76076E7 32 25 67 98680 209 1324 471 33 0 33 3140 0 3164 1243 100 3.1 9 9 5000 3048 0 919999999 113 0 0 88 0.2 0 0 +1.76112E7 32 25 67 98680 0 981 471 0 0 0 0 0 0 0 90 3.6 9 9 4500 3048 0 919999999 113 0 0 88 0.2 0 0 +1.76148E7 30.8 25.1 72 97224 0 0 464 0 0 0 0 0 0 0 90 3.1 9 9 4000 3000 0 919999999 113 0 0 88 0.2 0 0 +1.76184E7 31 25 70 98672 0 0 465 0 0 0 0 0 0 0 90 2.6 9 9 4000 3048 0 919999999 113 0 0 88 0.2 0 0 +1.7622E7 30 26 79 98663 0 0 460 0 0 0 0 0 0 0 80 1.5 9 9 4000 3048 0 919999999 125 0 0 88 0.2 0 0 +1.76256E7 29.8 24.4 73 97303 0 0 431 0 0 0 0 0 0 0 140 3.1 5 5 4000 3000 0 919999999 106 0 0 88 0.2 0 0 +1.76292E7 30 26 79 98663 0 0 435 0 0 0 0 0 0 0 80 1.5 5 5 4000 3048 0 919999999 125 0 0 88 0.2 0 0 +1.76328E7 29 26 84 98654 0 0 429 0 0 0 0 0 0 0 70 1 5 5 4000 3048 0 919999999 125 0 0 88 0.2 5 0 +1.76364E7 28.8 26 85 97294 0 0 428 0 0 0 0 0 0 0 90 2.6 5 5 4000 3048 0 919999999 124 0 0 88 0.2 5 0 +1.764E7 29 26 84 98654 0 0 429 0 0 0 0 0 0 0 60 2.1 5 5 3500 3048 0 919999999 125 0 0 88 0.2 5 0 +1.76436E7 29 27 89 98654 0 0 430 0 0 0 0 0 0 0 20 1.5 5 5 3500 3048 0 919999999 139 0 0 88 0.2 5 0 +1.76472E7 28.2 27.1 94 97250 0 0 426 0 0 0 0 0 0 0 50 1.5 5 5 2000 3000 9 999999999 139 0 0 88 0.2 0 0 +1.76508E7 30 27 84 98663 227 1059 462 38 0 38 3589 0 3618 1421 212 0 9 9 2500 3048 9 999999999 138 0 0 88 0.2 0 0 +1.76544E7 30 27 84 98663 509 1324 462 140 16 134 15525 675 14910 5185 180 0 9 9 2500 3048 9 999999999 138 0 0 88 0.2 0 0 +1.7658E7 29.6 27.4 88 97360 772 1324 460 258 67 219 28927 3752 24680 9230 301 0 9 9 2000 3000 9 999999999 143 0 0 88 0.2 0 0 +1.76616E7 32 26 71 98680 996 1324 446 658 519 267 75593 31287 30899 12212 30 1.5 5 5 2800 3048 9 999999999 125 0 0 88 0.2 0 0 +1.76652E7 33 26 67 98689 1168 1324 479 447 57 397 51112 3980 45653 17065 90 2.1 9 9 3500 3048 9 999999999 125 0 0 88 0.2 0 0 +1.76688E7 35 25.2 57 97386 1275 1324 490 500 85 418 57787 5927 48665 18188 110 2.6 9 9 2000 3000 9 999999999 114 0 0 88 0.2 0 0 +1.76724E7 35.6 25.3 55 97319 1310 1324 459 985 696 296 117522 40378 35590 14233 161 2.6 3 3 2666 3000 9 999999999 115 0 0 88 0.2 0 0 +1.7676E7 36.2 25.3 54 97252 1270 1324 463 950 702 277 113423 40053 33287 13414 32 2.6 3 3 3333 3000 9 999999999 114 0 0 88 0.2 0 0 +1.76796E7 36.8 25.4 52 97186 1158 1324 502 443 87 367 50937 5919 42450 16152 110 2.6 9 9 4000 3000 9 999999999 115 0 0 88 0.2 0 0 +1.76832E7 37 26 54 98722 983 1324 504 358 27 338 40323 1846 38342 14286 120 2.6 9 9 4500 3048 9 999999999 124 0 0 88 0.2 0 0 +1.76868E7 37 26 54 98722 755 1324 504 251 17 241 27883 1068 26952 9722 110 2.6 9 9 4500 3048 9 999999999 124 0 0 88 0.2 0 0 +1.76904E7 35.4 26 58 97019 490 1324 494 133 13 128 14693 552 14218 4912 140 2.1 9 9 4000 3000 9 999999999 123 0 0 88 0.2 0 0 +1.7694E7 36 25 53 98714 207 1324 496 32 0 32 3096 0 3120 1226 130 1.5 9 9 3500 3048 9 999999999 112 0 0 88 0.2 0 0 +1.76976E7 35 25 56 98705 0 971 490 0 0 0 0 0 0 0 233 0 9 9 3500 3048 9 999999999 112 0 0 88 0.2 0 0 +1.77012E7 33 26 67 98689 0 0 479 0 0 0 0 0 0 0 230 2.1 9 9 3500 3048 9 999999999 125 0 0 88 0.2 0 0 +1.77048E7 32 26 71 98680 0 0 472 0 0 0 0 0 0 0 230 2.1 9 9 3500 3048 9 999999999 125 0 0 88 0.2 0 0 +1.77084E7 32 27 75 98680 0 0 474 0 0 0 0 0 0 0 250 2.1 9 9 3500 3048 9 999999999 138 0 0 88 0.2 0 0 +1.7712E7 31.2 25.9 74 97276 0 0 467 0 0 0 0 0 0 0 230 1.5 9 9 2000 3000 9 999999999 122 0 0 88 0.2 0 0 +1.77156E7 31 27 79 98672 0 0 468 0 0 0 0 0 0 0 250 2.6 9 9 3500 3048 9 999999999 138 0 0 88 0.2 0 0 +1.77192E7 30 27 84 98663 0 0 462 0 0 0 0 0 0 0 240 2.6 9 9 3500 3048 9 999999999 138 0 0 88 0.2 0 0 +1.77228E7 30.8 26.3 77 97185 0 0 466 0 0 0 0 0 0 0 230 2.1 9 9 2000 3000 9 999999999 127 0 0 88 0.2 0 0 +1.77264E7 29 27 89 98654 0 0 456 0 0 0 0 0 0 0 250 3.6 9 9 3500 3048 9 999999999 139 0 0 88 0.2 0 0 +1.773E7 28 27 94 98646 0 0 450 0 0 0 0 0 0 0 270 3.1 9 9 3500 3048 9 999999999 139 0 0 88 0.2 0 0 +1.77336E7 28.6 26.4 88 97098 0 0 465 0 0 0 0 0 0 0 230 2.6 10 10 2000 3000 9 999999999 129 0 0 88 0.2 0 0 +1.77372E7 28 27 94 98646 224 1048 462 22 0 22 2152 0 2169 914 260 2.1 10 10 3500 914 9 999999999 139 0 0 88 0.2 0 0 +1.77408E7 28 27 94 98646 507 1324 462 85 0 85 8344 0 8418 3644 230 2.6 10 10 3500 914 9 999999999 139 0 0 88 0.2 0 0 +1.77444E7 28.2 26.5 91 97318 770 1324 463 157 0 157 15784 0 15935 7176 250 2.6 10 10 2000 600 9 999999999 131 0 0 88 0.2 0 0 +1.7748E7 28 27 94 98646 995 1324 462 222 5 218 25854 252 25579 10443 250 5.1 10 10 2800 914 9 999999999 139 0 0 88 0.2 0 0 +1.77516E7 29 27 89 98654 1167 1324 468 272 7 266 32024 372 31515 12762 260 2.6 10 10 2500 914 9 999999999 139 0 0 88 0.2 0 0 +1.77552E7 29.4 26.3 83 97329 1274 1324 470 304 7 297 36030 404 35452 14179 230 1.5 10 10 2000 900 9 999999999 128 0 0 88 0.2 0 0 +1.77588E7 29 26 84 98654 1309 1324 467 314 7 307 37354 424 36732 14633 200 2.1 10 10 3000 914 9 999999999 125 0 0 88 0.2 0 0 +1.77624E7 30 26 79 98663 1269 1324 473 303 7 296 35877 406 35303 14119 170 2.1 10 10 3000 2438 9 999999999 125 0 0 88 0.2 0 0 +1.7766E7 31.2 26.8 78 97110 1158 1324 482 269 18 254 31796 978 30114 12263 200 2.1 10 10 2000 1050 9 999999999 134 0 0 88 0.2 0 0 +1.77696E7 31.1 26.9 78 97891 982 1324 451 546 276 342 61301 18627 38610 14363 136 2.3 7 7 2750 1050 9 999999999 136 0 0 88 0.2 0 0 +1.77732E7 31 27 79 98672 754 1324 481 152 0 152 15260 0 15406 6928 190 2.6 10 10 3500 2438 9 999999999 138 0 0 88 0.2 0 0 +1.77768E7 30.8 26.9 80 98670 489 1324 480 80 0 80 7868 0 7937 3426 180 2.6 10 10 2000 2400 9 999999999 137 0 0 88 0.2 0 0 +1.77804E7 30 27 84 98663 205 1324 475 19 0 19 1845 0 1859 783 200 2.1 10 10 3000 2438 0 99999999 138 0 0 88 0.2 0 0 +1.7784E7 30 27 84 98663 0 960 475 0 0 0 0 0 0 0 240 3.6 10 10 3000 2438 0 19999999 138 0 0 88 0.2 0 0 +1.77876E7 29.2 27.5 91 97230 0 0 470 0 0 0 0 0 0 0 230 2.6 10 10 2000 1050 0 19999999 144 0 0 88 0.2 0 0 +1.77912E7 29 28 94 98654 0 0 457 0 0 0 0 0 0 0 240 1.5 9 9 3000 2438 0 19999999 153 0 0 88 0.2 0 0 +1.77948E7 29 28 94 98654 0 0 470 0 0 0 0 0 0 0 240 2.1 10 10 3000 2438 0 19999999 153 0 0 88 0.2 0 0 +1.77984E7 28.2 27.1 94 97231 0 0 451 0 0 0 0 0 0 0 114 0 9 9 2000 1050 0 19999999 139 0 0 88 0.2 0 0 +1.7802E7 29 28 94 98654 0 0 457 0 0 0 0 0 0 0 140 1.5 9 9 3000 2438 0 19999999 153 0 0 88 0.2 0 0 +1.78056E7 29 28 94 98654 0 0 457 0 0 0 0 0 0 0 170 1.5 9 9 3000 2438 0 19999999 153 0 0 88 0.2 0 0 +1.78092E7 28.2 26.8 92 97114 0 0 450 0 0 0 0 0 0 0 41 0 9 9 2000 2400 0 19999999 135 0 0 88 0.2 0 0 +1.78128E7 29 28 94 98654 0 0 457 0 0 0 0 0 0 0 180 0 9 9 3000 2438 0 19999999 153 0 0 88 0.2 0 0 +1.78164E7 29 27 89 98654 0 0 468 0 0 0 0 0 0 0 300 2.1 10 10 3000 2438 0 19999999 139 0 0 88 0.2 0 0 +1.782E7 26.6 25.7 95 97168 0 0 452 0 0 0 0 0 0 0 270 2.6 10 10 2000 1050 0 19999999 121 0 0 88 0.2 5 0 +1.78236E7 27 26 94 98637 222 1036 455 22 0 22 2125 0 2142 901 260 2.6 10 10 2500 2438 0 19999999 126 0 0 88 0.2 4 0 +1.78272E7 27 27 100 98637 506 1324 456 85 0 85 8304 0 8377 3625 270 3.6 10 10 2500 2438 0 19999999 139 0 0 88 0.2 0 0 +1.78308E7 26 25.7 98 97406 769 1324 448 157 0 157 15792 0 15942 7164 270 3.1 10 10 2000 1050 0 19999999 121 0 0 88 0.2 0 0 +1.78344E7 26 26 100 98628 994 1324 449 222 5 218 25902 262 25626 10441 270 3.1 10 10 2000 2438 0 19999999 126 0 0 88 0.2 0 0 +1.7838E7 26 26 100 98628 1167 1324 449 272 7 266 32097 386 31586 12768 260 3.6 10 10 2000 2438 0 19999999 126 0 0 88 0.2 0 0 +1.78416E7 26.2 25.6 97 97350 1274 1324 449 304 7 297 36084 413 35504 14183 270 3.1 10 10 2000 1050 0 19999999 120 0 0 88 0.2 0 0 +1.78452E7 27 26 94 98637 1309 1324 455 314 7 307 37332 424 36712 14626 280 4.1 10 10 3500 2438 0 19999999 126 0 0 88 0.2 0 0 +1.78488E7 27 26 94 98637 1269 1324 455 302 13 290 35905 730 34671 13903 290 4.1 10 10 3500 2438 0 19999999 126 0 0 88 0.2 0 0 +1.78524E7 27.2 25.5 90 97222 1157 1324 443 442 58 392 50544 4031 45128 16879 290 4.1 9 9 2000 900 0 19999999 118 0 0 88 0.2 0 0 +1.7856E7 28 27 94 98646 981 1324 450 357 30 335 40100 1991 37866 14164 280 4.6 9 9 2500 2438 0 19999999 139 0 0 88 0.2 0 0 +1.78596E7 28 27 94 98646 752 1324 450 249 51 220 27845 2894 24779 9139 290 4.1 9 9 2500 2743 0 19999999 139 0 0 88 0.2 0 0 +1.78632E7 27.4 26.3 94 97068 487 1324 458 80 0 80 7846 0 7915 3411 320 3.1 10 10 2000 600 0 19999999 128 0 0 88 0.2 0 0 +1.78668E7 27 27 100 98637 203 1324 444 31 0 31 2977 0 3000 1184 10 2.1 9 9 2100 914 0 19999999 139 0 0 88 0.2 0 0 +1.78704E7 27 27 100 98637 0 949 444 0 0 0 0 0 0 0 300 2.1 9 9 2500 3048 0 19999999 139 0 0 88 0.2 0 0 +1.7874E7 27 26.2 95 97172 0 0 455 0 0 0 0 0 0 0 290 2.6 10 10 2000 1050 0 19999999 127 0 0 88 0.2 0 0 +1.78776E7 27 27 100 98637 0 0 456 0 0 0 0 0 0 0 300 3.1 10 10 2500 2438 0 19999999 139 0 0 88 0.2 0 0 +1.78812E7 27 27 100 98637 0 0 456 0 0 0 0 0 0 0 300 2.6 10 10 2500 2438 0 19999999 139 0 0 88 0.2 0 0 +1.78848E7 26.6 25.7 95 97275 0 0 452 0 0 0 0 0 0 0 320 2.6 10 10 2000 1050 0 19999999 121 0 0 88 0.2 0 0 +1.78884E7 27 27 100 98637 0 0 456 0 0 0 0 0 0 0 290 2.6 10 10 2500 2438 0 19999999 139 0 0 88 0.2 0 0 +1.7892E7 27 27 100 98637 0 0 456 0 0 0 0 0 0 0 300 2.6 10 10 2500 2438 0 19999999 139 0 0 88 0.2 0 0 +1.78956E7 26 25.7 98 97075 0 0 448 0 0 0 0 0 0 0 340 2.6 10 10 2000 1050 0 19999999 121 0 0 88 0.2 0 0 +1.78992E7 26 26 100 98628 0 0 449 0 0 0 0 0 0 0 300 4.1 10 10 2500 2438 0 19999999 126 0 0 88 0.2 0 0 +1.79028E7 26 26 100 98628 0 0 449 0 0 0 0 0 0 0 310 2.6 10 10 2500 2438 0 19999999 126 0 0 88 0.2 0 0 +1.79064E7 25.6 25.3 98 97082 0 0 445 0 0 0 0 0 0 0 290 2.6 10 10 2000 1050 0 919999999 116 0 0 88 0.2 5 0 +1.791E7 26 26 100 98628 220 1024 449 22 0 22 2088 0 2104 885 280 3.1 10 10 2200 2438 0 919999999 126 0 0 88 0.2 5 0 +1.79136E7 26 26 100 98628 504 1325 449 84 0 84 8285 0 8357 3607 290 3.1 10 10 2200 2438 0 919999999 126 0 0 88 0.2 5 0 +1.79172E7 26 26 100 97182 768 1325 449 156 0 156 15732 0 15882 7140 290 3.1 10 10 2000 1050 0 919999999 125 0 0 88 0.2 5 0 +1.79208E7 27 27 100 98637 993 1325 456 221 5 218 25782 250 25511 10412 350 2.1 10 10 1800 2438 0 919999999 139 0 0 88 0.2 5 0 +1.79244E7 27 27 100 98637 1166 1325 456 272 7 266 31966 371 31460 12741 320 2.1 10 10 2200 2438 0 919999999 139 0 0 88 0.2 5 0 +1.7928E7 26.8 26.5 98 97160 1273 1325 454 303 7 297 35960 400 35384 14159 290 2.6 10 10 2000 2400 0 919999999 131 0 0 88 0.2 5 0 +1.79316E7 27 27 100 98637 1308 1325 456 313 7 306 37192 409 36576 14599 200 2.6 10 10 2200 2438 0 919999999 139 0 0 88 0.2 2 0 +1.79352E7 28 27 94 98646 1268 1325 462 302 7 295 35717 390 35149 14085 300 1.5 10 10 2200 2438 0 919999999 139 0 0 88 0.2 0 0 +1.79388E7 27.8 26.4 92 97062 1156 1325 460 269 7 263 31685 373 31190 12630 320 2.6 10 10 2000 2400 0 919999999 129 0 0 88 0.2 0 0 +1.79424E7 28 27 94 98646 980 1325 462 217 5 214 25306 237 25057 10216 310 3.6 10 10 2800 2438 0 919999999 139 0 0 88 0.2 0 0 +1.7946E7 28 27 94 98646 751 1325 462 151 0 151 15184 0 15329 6889 320 3.6 10 10 3500 2438 0 919999999 139 0 0 88 0.2 0 0 +1.79496E7 27.4 26 92 97019 485 1325 457 80 0 80 7808 0 7876 3391 290 2.6 10 10 2000 2400 0 919999999 124 0 0 88 0.2 0 0 +1.79532E7 28 27 94 98646 201 1325 462 19 0 19 1781 0 1795 756 260 1.5 10 10 3500 2438 0 919999999 139 0 0 88 0.2 0 0 +1.79568E7 28 27 94 98646 0 937 462 0 0 0 0 0 0 0 260 2.1 10 10 3200 2438 0 919999999 139 0 0 88 0.2 0 0 +1.79604E7 26.8 26.2 97 97121 0 0 454 0 0 0 0 0 0 0 250 2.6 10 10 2000 2400 0 919999999 127 0 0 88 0.2 0 0 +1.7964E7 27 27 100 98637 0 0 456 0 0 0 0 0 0 0 290 3.1 10 10 3200 2438 0 919999999 139 0 0 88 0.2 0 0 +1.79676E7 27 26 94 98637 0 0 455 0 0 0 0 0 0 0 310 3.1 10 10 3200 2438 0 919999999 126 0 0 88 0.2 0 0 +1.79712E7 26.2 25.3 95 97204 0 0 449 0 0 0 0 0 0 0 320 3.1 10 10 2000 2400 0 919999999 116 0 0 88 0.2 0 0 +1.79748E7 26 26 100 98628 0 0 449 0 0 0 0 0 0 0 280 3.6 10 10 2500 2438 0 919999999 126 0 0 88 0.2 0 0 +1.79784E7 26 26 100 98628 0 0 449 0 0 0 0 0 0 0 270 4.1 10 10 2500 2438 0 919999999 126 0 0 88 0.2 0 0 +1.7982E7 26 24.9 94 97095 0 0 447 0 0 0 0 0 0 0 270 4.1 10 10 2000 2400 0 919999999 112 0 0 88 0.2 0 0 +1.79856E7 26 26 100 98628 0 0 449 0 0 0 0 0 0 0 270 4.1 10 10 2500 2438 0 919999999 126 0 0 88 0.2 0 0 +1.79892E7 26 26 100 98628 0 0 449 0 0 0 0 0 0 0 280 4.1 10 10 2500 2438 0 919999999 126 0 0 88 0.2 0 0 +1.79928E7 25.6 25.3 98 97062 0 0 445 0 0 0 0 0 0 0 270 4.1 10 10 2000 2400 9 999999999 116 0 0 88 0.2 2 0 +1.79964E7 26 26 100 98628 218 1012 449 21 0 21 2055 0 2071 870 280 4.1 10 10 2500 2438 9 999999999 126 0 0 88 0.2 0 0 +1.8E7 27 27 100 98637 502 1325 456 84 0 84 8215 0 8287 3583 280 5.1 10 10 2200 2438 0 919999999 139 0 0 88 0.2 0 0 +1.80036E7 26.6 25.5 94 97197 766 1325 452 156 0 156 15724 0 15873 7126 270 3.6 10 10 2000 1050 0 919999999 119 0 0 88 0.2 0 0 +1.80072E7 28 27 94 98646 992 1325 462 221 5 217 25750 250 25481 10398 270 3.6 10 10 2500 2438 0 919999999 139 0 0 88 0.2 0 0 +1.80108E7 28 27 94 98646 1165 1325 462 271 7 265 31942 370 31436 12733 260 4.6 10 10 2800 2743 0 919999999 139 0 0 88 0.2 0 0 +1.80144E7 29.2 25.8 82 97239 1273 1325 468 304 7 297 36022 410 35444 14165 270 4.1 10 10 2000 2400 0 919999999 122 0 0 88 0.2 0 0 +1.8018E7 30 27 84 98663 1308 1325 475 313 7 306 37177 409 36562 14594 270 5.1 10 10 3000 2743 0 919999999 138 0 0 88 0.2 0 0 +1.80216E7 31 27 79 98672 1268 1325 481 302 7 295 35700 390 35133 14078 280 5.1 10 10 3200 2743 0 919999999 138 0 0 88 0.2 0 0 +1.80252E7 29.6 27.4 88 97165 1156 1325 473 268 9 261 31576 480 30849 12529 320 3.6 10 10 2000 1200 0 919999999 143 0 0 88 0.2 0 0 +1.80288E7 30 28 89 98663 979 1325 463 355 43 324 39947 2700 36653 13844 330 2.6 9 9 2500 2438 0 919999999 153 0 0 88 0.2 0 0 +1.80324E7 30 28 89 98663 750 1325 476 151 0 151 15092 0 15236 6861 310 3.1 10 10 2500 2438 0 919999999 153 0 0 88 0.2 0 0 +1.8036E7 30.2 27.7 87 97160 483 1325 477 79 0 79 7720 0 7787 3364 20 1.5 10 10 2000 1200 0 19999999 147 0 0 88 0.2 0 0 +1.80396E7 27 27 100 98637 198 1325 456 18 0 18 1749 0 1762 742 30 4.1 10 10 1500 914 0 19999999 139 0 0 88 0.2 0 0 +1.80432E7 26 26 100 98628 0 925 436 0 0 0 0 0 0 0 160 1.5 9 9 2000 2438 0 19999999 126 0 0 88 0.2 0 0 +1.80468E7 25.8 24.9 95 97298 0 0 434 0 0 0 0 0 0 0 160 1.5 9 9 2000 3000 0 19999999 112 0 0 88 0.2 0 0 +1.80504E7 26 26 100 98628 0 0 436 0 0 0 0 0 0 0 120 0 9 9 2000 3000 0 19999999 126 0 0 88 0.2 0 0 +1.8054E7 26 26 100 98628 0 0 436 0 0 0 0 0 0 0 240 2.1 9 9 2500 3048 0 19999999 126 0 0 88 0.2 0 0 +1.80576E7 26 25.1 95 97367 0 0 411 0 0 0 0 0 0 0 230 2.1 5 5 2000 3000 0 19999999 114 0 0 88 0.2 0 0 +1.80612E7 26 26 100 98628 0 0 412 0 0 0 0 0 0 0 122 0 5 5 2500 3048 0 19999999 126 0 0 88 0.2 0 0 +1.80648E7 26 26 100 98628 0 0 412 0 0 0 0 0 0 0 274 0 5 5 2500 3048 0 19999999 126 0 0 88 0.2 0 0 +1.80684E7 25.8 25.2 96 97259 0 0 434 0 0 0 0 0 0 0 244 0 9 9 2000 3000 0 19999999 115 0 0 88 0.2 0 0 +1.8072E7 26 26 100 98628 0 0 436 0 0 0 0 0 0 0 220 2.6 9 9 2500 2438 0 19999999 126 0 0 88 0.2 0 0 +1.80756E7 26 26 100 98628 0 0 436 0 0 0 0 0 0 0 250 1.5 9 9 2500 2438 0 19999999 126 0 0 88 0.2 0 0 +1.80792E7 25.8 25.2 96 97229 0 0 447 0 0 0 0 0 0 0 230 1.5 10 10 2000 2400 9 999999999 115 0 0 88 0.2 5 0 +1.80828E7 26 26 100 98628 215 1000 436 35 0 35 3308 0 3334 1309 230 1.5 9 9 2500 914 9 999999999 126 0 0 88 0.2 0 0 +1.80864E7 28 26 89 98646 500 1325 448 137 16 131 15169 695 14558 5042 240 2.1 9 9 2500 3048 9 999999999 126 0 0 88 0.2 0 0 +1.809E7 27.2 25.2 89 97358 765 1325 418 461 431 212 51948 25502 24072 8987 180 1.5 5 5 2000 3000 9 999999999 115 0 0 88 0.2 0 0 +1.80936E7 29 26 84 98654 991 1325 429 653 596 207 76529 31955 24436 10009 280 3.1 5 5 3000 3048 9 999999999 125 0 0 88 0.2 0 0 +1.80972E7 30 26 79 98663 1164 1325 435 803 608 269 94544 34667 31872 12864 300 4.1 5 5 3500 3048 9 999999999 125 0 0 88 0.2 0 0 +1.81008E7 31.8 26.5 74 97408 1272 1325 446 896 540 377 104191 34479 44204 16948 290 3.6 5 5 2000 3048 9 999999999 130 0 0 88 0.2 0 0 +1.81044E7 32 26 71 98680 1307 1325 472 514 65 450 59308 4556 52329 19266 290 4.6 9 9 3500 3048 9 999999999 125 0 0 88 0.2 0 0 +1.8108E7 32 26 71 98680 1267 1325 446 892 542 374 103854 35005 43821 16814 290 5.1 5 5 3500 3048 9 999999999 125 0 0 88 0.2 0 0 +1.81116E7 34.4 26.4 63 97215 1155 1325 461 794 608 265 93445 34078 31379 12694 320 4.1 5 5 4000 3000 9 999999999 128 0 0 88 0.2 0 0 +1.81152E7 35 27 63 98705 978 1325 465 641 592 204 74857 30502 23993 9831 280 3.1 5 5 4000 3048 9 999999999 137 0 0 88 0.2 0 0 +1.81188E7 35 27 63 98705 748 1325 465 445 485 172 50785 24268 19702 7598 270 3.1 5 5 4000 3048 9 999999999 137 0 0 88 0.2 0 0 +1.81224E7 33.6 26.7 67 97052 481 1325 456 232 275 132 25583 11420 14645 4983 270 2.6 5 5 4000 3000 9 999999999 132 0 0 88 0.2 0 0 +1.8126E7 33 27 71 98689 196 1325 453 53 26 49 5767 0 5373 1660 260 2.6 5 5 4000 3048 9 999999999 138 0 0 88 0.2 0 0 +1.81296E7 31 27 79 98672 0 912 442 0 0 0 0 0 0 0 250 2.6 5 5 4000 3048 9 999999999 138 0 0 88 0.2 0 0 +1.81332E7 31.6 26.9 76 97143 0 0 445 0 0 0 0 0 0 0 250 2.1 5 5 4000 2000 9 999999999 135 0 0 88 0.2 0 0 +1.81368E7 30 27 84 98663 0 0 436 0 0 0 0 0 0 0 136 0 5 5 3500 3048 9 999999999 138 0 0 88 0.2 0 0 +1.81404E7 30 27 84 98663 0 0 436 0 0 0 0 0 0 0 280 2.1 5 5 3500 3048 9 999999999 138 0 0 88 0.2 0 0 +1.8144E7 30.8 26.9 80 97195 0 0 466 0 0 0 0 0 0 0 230 2.1 9 9 2000 3000 0 19999999 135 0 0 88 0.2 0 0 +1.81476E7 25 23 89 98619 0 0 427 0 0 0 0 0 0 0 90 4.6 9 9 3200 2438 0 19999999 94 0 0 88 0.2 0 0 +1.81512E7 26 25 94 98628 0 0 435 0 0 0 0 0 0 0 240 1.5 9 9 3500 2438 0 19999999 114 0 0 88 0.2 0 0 +1.81548E7 26.2 25.1 94 97165 0 0 436 0 0 0 0 0 0 0 159 0 9 9 2000 3000 0 19999999 114 0 0 88 0.2 0 0 +1.81584E7 27 25 89 98637 0 0 441 0 0 0 0 0 0 0 260 2.6 9 9 3500 3048 0 19999999 114 0 0 88 0.2 0 0 +1.8162E7 27 25 89 98637 0 0 441 0 0 0 0 0 0 0 250 2.6 9 9 3500 3048 0 19999999 114 0 0 88 0.2 0 0 +1.81656E7 26.8 24.2 86 97258 0 0 439 0 0 0 0 0 0 0 250 2.6 9 9 2000 3000 9 999999999 104 0 0 88 0.2 5 0 +1.81692E7 27 25 89 98637 213 988 441 34 0 34 3264 0 3289 1289 250 3.6 9 9 3500 3048 9 999999999 114 0 0 88 0.2 4 0 +1.81728E7 28 25 84 98646 498 1326 447 136 15 131 15139 673 14576 5032 260 4.1 9 9 3500 3048 9 999999999 114 0 0 88 0.2 0 0 +1.81764E7 28.8 25.1 80 97382 763 1326 452 255 24 241 28463 1553 27054 9790 270 4.1 9 9 2000 3000 9 999999999 114 0 0 88 0.2 0 0 +1.818E7 30 25 75 98663 990 1326 459 363 27 342 40872 1925 38845 14442 260 4.6 9 9 4000 3048 9 999999999 113 0 0 88 0.2 0 0 +1.81836E7 31 26 75 98672 1164 1326 466 445 64 389 50902 4408 44788 16816 250 4.6 9 9 4000 3048 9 999999999 125 0 0 88 0.2 0 0 +1.81872E7 31 26.6 78 97352 1272 1326 467 497 65 435 57095 4441 50355 18648 230 4.6 9 9 4000 3000 9 999999999 131 0 0 88 0.2 0 0 +1.81908E7 32 26 71 98680 1307 1326 472 514 65 450 59272 4559 52295 19254 240 3.6 9 9 4000 3048 9 999999999 125 0 0 88 0.2 0 0 +1.81944E7 33 26 67 98689 1266 1326 479 495 85 414 57112 5776 48120 18027 250 4.1 9 9 4000 3048 9 999999999 125 0 0 88 0.2 0 0 +1.8198E7 33.2 26.9 70 97185 1154 1326 454 793 469 385 90476 31389 44239 16655 270 3.1 5 5 4000 3000 9 999999999 135 0 0 88 0.2 0 0 +1.82016E7 33 27 71 98689 977 1326 480 355 83 294 40274 5155 33533 12934 290 1 9 9 4000 3048 9 999999999 138 0 0 88 0.2 0 0 +1.82052E7 33 27 71 98689 746 1326 480 246 17 237 27362 1011 26464 9544 290 1 9 9 4000 3048 9 999999999 138 0 0 88 0.2 0 0 +1.82088E7 33.2 26.3 67 97000 479 1326 480 128 11 124 14197 461 13800 4754 270 3.1 9 9 4000 3000 9 999999999 127 0 0 88 0.2 0 0 +1.82124E7 33 27 71 98689 193 1326 480 29 0 29 2750 0 2771 1096 270 3.1 9 9 4000 3048 9 999999999 138 0 0 88 0.2 0 0 +1.8216E7 33 27 71 98689 0 899 453 0 0 0 0 0 0 0 280 1.5 5 5 3500 3048 9 999999999 138 0 0 88 0.2 0 0 +1.82196E7 31.4 26.4 75 97092 0 0 443 0 0 0 0 0 0 0 86 0 5 5 2000 2000 9 999999999 129 0 0 88 0.2 0 0 +1.82232E7 32 26 71 98680 0 0 446 0 0 0 0 0 0 0 270 1.5 5 5 3500 2000 9 999999999 125 0 0 88 0.2 0 0 +1.82268E7 32 27 75 98680 0 0 447 0 0 0 0 0 0 0 230 1.5 5 5 3500 2000 9 999999999 138 0 0 88 0.2 0 0 +1.82304E7 30.6 25.5 74 97115 0 0 437 0 0 0 0 0 0 0 250 2.1 5 5 2000 2000 9 999999999 118 0 0 88 0.2 0 0 +1.8234E7 32 27 75 98680 0 0 447 0 0 0 0 0 0 0 240 3.1 5 5 3500 3048 9 999999999 138 0 0 88 0.2 0 0 +1.82376E7 32 27 75 98680 0 0 447 0 0 0 0 0 0 0 240 3.1 5 5 3500 3048 9 999999999 138 0 0 88 0.2 0 0 +1.82412E7 29.4 25.4 79 97037 0 0 430 0 0 0 0 0 0 0 270 3.1 5 5 2000 3048 9 999999999 117 0 0 88 0.2 0 0 +1.82448E7 30 26 79 98663 0 0 435 0 0 0 0 0 0 0 270 3.1 5 5 3500 3048 9 999999999 125 0 0 88 0.2 0 0 +1.82484E7 30 26 79 98663 0 0 435 0 0 0 0 0 0 0 270 3.1 5 5 3500 3048 9 999999999 125 0 0 88 0.2 0 0 +1.8252E7 27.8 24 80 97101 0 0 444 0 0 0 0 0 0 0 270 3.1 9 9 2000 3000 9 999999999 102 0 0 88 0.2 0 0 +1.82556E7 29 26 84 98654 211 976 454 33 0 33 3194 0 3219 1265 260 2.6 9 9 3500 3048 9 999999999 125 0 0 88 0.2 0 0 +1.82592E7 29 26 84 98654 496 1326 429 244 261 146 26781 12099 16138 5419 270 4.1 5 5 3000 3048 9 999999999 125 0 0 88 0.2 0 0 +1.82628E7 29.2 24 74 97181 762 1326 453 255 35 235 28542 2273 26430 9606 250 3.1 9 9 2000 3000 9 999999999 102 0 0 88 0.2 0 0 +1.82664E7 31 25 70 98672 989 1326 465 362 27 342 40811 1924 38788 14419 270 4.1 9 9 3000 3048 9 999999999 113 0 0 88 0.2 0 0 +1.827E7 31 25 70 98672 1163 1326 465 445 65 389 51014 4553 44852 16811 270 3.1 9 9 3000 3048 9 999999999 113 0 0 88 0.2 0 0 +1.82736E7 30.6 24.3 69 97232 1271 1326 462 498 66 435 57469 4779 50599 18662 270 3.1 9 9 2000 3000 9 999999999 104 0 0 88 0.2 0 0 +1.82772E7 31 25 70 98672 1306 1326 465 515 65 450 59415 4706 52382 19253 270 1.5 9 9 3000 3048 9 999999999 113 0 0 88 0.2 0 0 +1.82808E7 31 26 75 98672 1266 1326 466 494 65 432 56854 4526 50117 18553 260 2.1 9 9 3000 3048 9 999999999 125 0 0 88 0.2 0 0 +1.82844E7 32 26 71 98680 1153 1326 472 440 64 384 50276 4392 44233 16632 290 2.6 9 9 3500 3048 9 999999999 125 0 0 88 0.2 0 0 +1.8288E7 34 26 63 98697 975 1326 485 355 30 333 39924 2063 37682 14053 290 3.1 9 9 3500 3048 9 999999999 124 0 0 88 0.2 0 0 +1.82916E7 34 26 63 98697 745 1326 485 246 17 237 27361 1048 26457 9517 300 3.1 9 9 3500 3048 9 999999999 124 0 0 88 0.2 0 0 +1.82952E7 33.8 27.2 69 96976 477 1326 485 127 11 123 14052 414 13684 4719 340 1.5 9 9 2000 3000 9 999999999 139 0 0 88 0.2 0 0 +1.82988E7 31.9 27.2 76 98271 191 1326 480 28 0 28 2685 0 2706 1070 192 2.7 9 9 3500 3048 9 999999999 140 0 0 88 0.2 0 0 +1.83024E7 30.1 26.2 80 98256 0 885 475 0 0 0 0 0 0 0 197 3.9 9 9 3500 3048 9 999999999 127 0 0 88 0.2 0 0 +1.8306E7 28 24.4 81 97886 0 0 470 0 0 0 0 0 0 0 227 3.8 9 9 2000 1050 9 999999999 106 0 0 88 0.2 0 0 +1.83096E7 28.1 24 78 98295 0 0 481 0 0 0 0 0 0 0 200 3.8 10 10 2200 3048 0 19999999 103 0 0 88 0.2 0 0 +1.83132E7 28.1 23.5 76 98295 0 0 445 0 0 0 0 0 0 0 165 4 10 10 2000 914 0 19999999 98 0 0 88 0.2 0 0 +1.83168E7 29.4 24 73 98306 0 0 428 0 0 0 0 0 0 0 110 3.5 10 10 2000 900 0 19999999 102 0 0 88 0.2 0 0 +1.83204E7 31 25 70 98672 0 0 471 0 0 0 0 0 0 0 57 3.7 9 9 4000 2000 9 999999999 113 0 0 88 0.2 0 0 +1.8324E7 30.5 25 73 98668 0 0 465 0 0 0 0 0 0 0 60 3.7 9 9 4000 3000 9 999999999 113 0 0 88 0.2 0 0 +1.83276E7 30 25 75 98663 0 0 465 0 0 0 0 0 0 0 62 3.2 9 9 4000 3000 9 999999999 113 0 0 88 0.2 0 0 +1.83312E7 29.8 25 76 98661 0 0 433 0 0 0 0 0 0 0 65 3.5 5 5 4000 2000 9 999999999 113 0 0 88 0.2 0 0 +1.83348E7 30 25 75 98663 0 0 433 0 0 0 0 0 0 0 67 3.7 5 5 4000 2000 9 999999999 113 0 0 88 0.2 0 0 +1.83384E7 30.2 25 74 98665 0 0 453 0 0 0 0 0 0 0 65 4.3 9 9 4000 2000 9 999999999 113 0 0 88 0.2 0 0 +1.8342E7 30 25 75 98663 211 976 459 33 0 33 3204 0 3229 1266 70 5.1 9 9 4000 3000 9 999999999 113 0 0 88 0.2 0 0 +1.83456E7 31 25 70 98672 496 1326 439 244 263 146 26874 12624 16147 5415 70 4.1 5 5 4000 2000 9 999999999 113 0 0 88 0.2 0 0 +1.83492E7 31 25 70 98672 762 1326 465 254 35 234 28456 2197 26364 9599 50 5.1 9 9 4000 2000 9 999999999 113 0 0 88 0.2 0 0 +1.83528E7 30 26 79 98663 989 1326 460 361 27 341 40680 1862 38677 14406 100 4.1 9 9 4500 1200 9 999999999 125 0 0 88 0.2 0 0 +1.83564E7 33 25 63 98689 1163 1326 477 446 65 389 51018 4555 44854 16811 100 5.7 9 9 4500 3000 9 999999999 113 0 0 88 0.2 0 0 +1.836E7 34 25 60 98697 1271 1326 484 498 65 435 57347 4681 50517 18654 60 6.2 9 9 5000 1200 9 999999999 113 0 0 88 0.2 0 0 +1.83636E7 35 25 56 98705 1306 1326 490 515 65 450 59426 4710 52388 19254 50 2.6 9 9 5000 1200 9 999999999 112 0 0 88 0.2 0 0 +1.83672E7 35 25 56 98705 1266 1326 490 495 85 414 57251 5970 48185 18022 30 4.1 9 9 5000 1200 9 999999999 112 0 0 88 0.2 0 0 +1.83708E7 35 23 50 98705 1153 1326 460 797 573 299 93323 37331 35278 13936 70 6.2 5 5 5000 2000 9 999999999 92 0 0 88 0.2 0 0 +1.83744E7 35 25 56 98705 975 1326 463 641 598 201 75161 32813 23720 9699 60 1.5 5 5 4000 2000 9 999999999 112 0 0 88 0.2 0 0 +1.8378E7 35 24 53 98705 745 1326 461 445 492 169 51022 27015 19443 7471 50 3.6 5 5 4000 2000 9 999999999 102 0 0 88 0.2 0 0 +1.83816E7 35 23 50 98705 477 1326 460 231 279 130 25557 13142 14519 4910 60 4.1 5 5 4000 2000 9 999999999 92 0 0 88 0.2 0 0 +1.83852E7 35 23 50 98705 191 1326 460 51 38 45 5599 0 5015 1554 50 2.1 5 5 4000 2000 9 999999999 92 0 0 88 0.2 0 0 +1.83888E7 34 24 56 98697 0 885 455 0 0 0 0 0 0 0 60 2.6 5 5 4000 2000 9 999999999 102 0 0 88 0.2 0 0 +1.83924E7 33 25 63 98689 0 0 444 0 0 0 0 0 0 0 50 4.1 3 3 4500 2000 9 999999999 113 0 0 88 0.2 0 0 +1.8396E7 33 24 59 98689 0 0 442 0 0 0 0 0 0 0 70 4.1 3 3 4500 2000 9 999999999 102 0 0 88 0.2 0 0 +1.83996E7 32 25 67 98680 0 0 438 0 0 0 0 0 0 0 60 5.1 3 3 4000 2000 9 999999999 113 0 0 88 0.2 0 0 +1.84032E7 32 25 67 98680 0 0 438 0 0 0 0 0 0 0 60 3.1 3 3 4000 2000 9 999999999 113 0 0 88 0.2 0 0 +1.84068E7 31 25 70 98672 0 0 432 0 0 0 0 0 0 0 60 3.6 3 3 4000 2000 9 999999999 113 0 0 88 0.2 0 0 +1.84104E7 31 25 70 98672 0 0 432 0 0 0 0 0 0 0 50 4.6 3 3 4000 2000 9 999999999 113 0 0 88 0.2 0 0 +1.8414E7 31 25 70 98672 0 0 432 0 0 0 0 0 0 0 70 4.1 3 3 4000 2000 9 999999999 113 0 0 88 0.2 0 0 +1.84176E7 30 25 75 98663 0 0 433 0 0 0 0 0 0 0 70 4.6 5 5 4000 2000 9 999999999 113 0 0 88 0.2 0 0 +1.84212E7 30 25 75 98663 0 0 427 0 0 0 0 0 0 0 70 2.6 3 3 4500 2000 9 999999999 113 0 0 88 0.2 0 0 +1.84248E7 30 25 75 98663 0 0 433 0 0 0 0 0 0 0 60 2.6 5 5 5000 2000 9 999999999 113 0 0 88 0.2 0 0 +1.84284E7 30 26 79 98663 208 964 435 59 38 53 6437 0 5808 1793 50 3.6 5 5 4000 2000 9 999999999 125 0 0 88 0.2 0 0 +1.8432E7 30 25 75 98663 495 1326 433 243 290 135 26906 13207 15007 5125 70 5.1 5 5 4000 2000 9 999999999 113 0 0 88 0.2 0 0 +1.84356E7 31 26 75 98672 761 1326 440 457 491 176 52209 25721 20165 7782 60 4.6 5 5 4000 2000 9 999999999 125 0 0 88 0.2 0 0 +1.84392E7 32 26 71 98680 988 1326 446 651 597 206 76245 31950 24265 9939 60 4.1 5 5 4000 2000 9 999999999 125 0 0 88 0.2 0 0 +1.84428E7 34 25 60 98697 1162 1326 457 803 613 266 94690 35872 31529 12727 60 2.6 5 5 4000 2000 9 999999999 113 0 0 88 0.2 0 0 +1.84464E7 34 24 56 98697 1270 1326 455 898 644 281 107216 38403 33779 13563 60 6.2 5 5 4000 2000 9 999999999 102 0 0 88 0.2 0 0 +1.845E7 35 24 53 98705 1305 1326 461 929 641 298 110883 38745 35845 14293 60 5.1 5 5 4000 2000 9 999999999 102 0 0 88 0.2 0 0 +1.84536E7 35 25 56 98705 1265 1326 463 892 641 281 106268 37195 33710 13552 50 4.6 5 5 4000 2000 9 999999999 112 0 0 88 0.2 0 0 +1.84572E7 35 22 47 98705 1152 1326 458 798 650 234 95297 39084 28057 11458 100 7.2 5 5 4000 2000 9 999999999 83 0 0 88 0.2 0 0 +1.84608E7 35 24 53 98705 974 1326 461 641 601 199 75300 33878 23565 9627 50 4.1 5 5 4000 2000 9 999999999 102 0 0 88 0.2 0 0 +1.84644E7 36 24 50 98714 743 1326 467 444 492 168 50867 26978 19378 7442 50 4.1 5 5 4000 2000 9 999999999 102 0 0 88 0.2 0 0 +1.8468E7 35 24 53 98705 475 1326 461 229 249 140 25158 11903 15419 5120 70 2.6 5 5 4000 2000 9 999999999 102 0 0 88 0.2 0 0 +1.84716E7 29 25 79 98654 188 1326 453 28 0 28 2638 0 2658 1048 70 8.7 9 9 4000 1200 9 999999999 114 0 0 88 0.2 0 0 +1.84752E7 29 25 79 98654 0 871 466 0 0 0 0 0 0 0 70 5.7 10 10 3000 900 0 19999999 114 0 0 88 0.2 0 0 +1.84788E7 28 27 94 98646 0 0 450 0 0 0 0 0 0 0 240 2.6 9 9 3000 1200 0 19999999 139 0 0 88 0.2 0 0 +1.84824E7 28 27 94 98646 0 0 450 0 0 0 0 0 0 0 260 2.1 9 9 3000 1200 0 19999999 139 0 0 88 0.2 0 0 +1.8486E7 29 27 89 98654 0 0 456 0 0 0 0 0 0 0 250 3.1 9 9 3000 900 0 19999999 139 0 0 88 0.2 0 0 +1.84896E7 29 28 94 98654 0 0 470 0 0 0 0 0 0 0 227 0 10 10 3000 900 0 19999999 153 0 0 88 0.2 0 0 +1.84932E7 28 25 84 98646 0 0 460 0 0 0 0 0 0 0 160 3.6 10 10 3000 900 0 19999999 114 0 0 88 0.2 0 0 +1.84968E7 27 25 89 98637 0 0 453 0 0 0 0 0 0 0 160 3.1 10 10 3000 900 0 19999999 114 0 0 88 0.2 0 0 +1.85004E7 27 26 94 98637 0 0 455 0 0 0 0 0 0 0 258 1.5 10 10 3000 900 0 19999999 126 0 0 88 0.2 0 0 +1.8504E7 27 26 94 98637 0 0 455 0 0 0 0 0 0 0 58 0 10 10 3000 2400 0 19999999 126 0 0 88 0.2 0 0 +1.85076E7 27 26 94 98637 0 0 455 0 0 0 0 0 0 0 150 2.1 10 10 3000 600 0 19999999 126 0 0 88 0.2 0 0 +1.85112E7 27 26 94 98637 0 0 442 0 0 0 0 0 0 0 250 2.1 9 9 3000 2000 0 919999999 126 0 0 88 0.2 0 0 +1.85148E7 27 27 100 98637 206 952 444 32 0 32 3070 0 3094 1219 250 1 9 9 3000 600 0 919999999 139 0 0 88 0.2 0 0 +1.85184E7 27.5 26 92 98641 493 1327 445 118 0 118 11577 0 11677 4646 296 1.8 9 9 3000 600 9 999999999 126 0 0 88 0.2 0 0 +1.8522E7 28 25 84 98646 759 1327 460 154 0 154 15550 0 15696 7027 320 2.6 10 10 3000 600 0 919999999 114 0 0 88 0.2 0 0 +1.85256E7 29 27 89 98654 987 1327 468 219 32 196 25765 1611 23099 9528 330 1 10 10 2300 600 0 919999999 139 0 0 88 0.2 0 0 +1.85292E7 31 27 79 98672 1161 1327 468 443 57 393 50528 3852 45151 16921 142 0 9 9 2700 600 0 919999999 138 0 0 88 0.2 0 0 +1.85328E7 29 26 84 98654 1270 1327 454 496 65 434 57067 4533 50308 18613 50 4.1 9 9 2200 600 0 919999999 125 0 0 88 0.2 0 0 +1.85364E7 29 27 89 98654 1305 1327 456 512 65 449 58940 4407 52038 19200 20 1.5 9 9 2800 600 0 919999999 139 0 0 88 0.2 0 0 +1.854E7 31 26 75 98672 1264 1327 466 493 54 442 56647 3827 51120 18802 320 3.1 9 9 3000 600 0 919999999 125 0 0 88 0.2 0 0 +1.85436E7 28 27 94 98646 1151 1327 462 267 9 259 31430 484 30713 12470 220 4.1 10 10 2000 600 0 19999999 139 0 0 88 0.2 0 0 +1.85472E7 28 25 84 98646 972 1327 460 216 4 213 25203 249 24960 10129 250 4.6 10 10 2800 600 0 19999999 114 0 0 88 0.2 0 0 +1.85508E7 27 25 89 98637 741 1327 453 149 0 149 15007 0 15147 6763 320 4.6 10 10 2800 600 0 19999999 114 0 0 88 0.2 0 0 +1.85544E7 27 25 89 98637 473 1327 453 77 0 77 7527 0 7591 3253 320 4.1 10 10 2200 600 0 19999999 114 0 0 88 0.2 0 0 +1.8558E7 27 25 89 98637 185 1327 453 16 0 16 1567 0 1579 662 350 1.5 10 10 3000 600 0 19999999 114 0 0 88 0.2 0 0 +1.85616E7 27 25 89 98637 0 857 441 0 0 0 0 0 0 0 20 3.1 9 9 3000 600 0 19999999 114 0 0 88 0.2 0 0 +1.85652E7 27 25 89 98637 0 0 441 0 0 0 0 0 0 0 30 3.1 9 9 3000 600 0 19999999 114 0 0 88 0.2 0 0 +1.85688E7 27 26 94 98637 0 0 442 0 0 0 0 0 0 0 20 3.1 9 9 3000 600 0 19999999 126 0 0 88 0.2 0 0 +1.85724E7 27 26 94 98637 0 0 442 0 0 0 0 0 0 0 50 4.1 9 9 2800 2400 0 19999999 126 0 0 88 0.2 0 0 +1.8576E7 27 25 89 98637 0 0 441 0 0 0 0 0 0 0 50 3.6 9 9 2800 2400 0 19999999 114 0 0 88 0.2 0 0 +1.85796E7 28 26 89 98646 0 0 448 0 0 0 0 0 0 0 60 4.1 9 9 2500 3000 0 19999999 126 0 0 88 0.2 0 0 +1.85832E7 28 26 89 98646 0 0 448 0 0 0 0 0 0 0 70 4.6 9 9 2800 3000 0 19999999 126 0 0 88 0.2 0 0 +1.85868E7 28 26.3 91 98646 0 0 449 0 0 0 0 0 0 0 238 4.3 9 9 2866 3000 9 999999999 130 0 0 88 0.2 0 0 +1.85904E7 28 26.7 92 98646 0 0 449 0 0 0 0 0 0 0 93 3.9 9 9 2933 3000 9 999999999 135 0 0 88 0.2 0 0 +1.8594E7 28 27 94 98646 0 0 450 0 0 0 0 0 0 0 60 3.6 9 9 3000 1200 0 19999999 139 0 0 88 0.2 0 0 +1.85976E7 28 26 89 98646 0 0 448 0 0 0 0 0 0 0 100 5.1 9 9 3000 1200 9 999999999 126 0 0 88 0.2 0 0 +1.86012E7 29 27 89 98654 204 940 456 32 0 32 3011 0 3035 1196 100 3.6 9 9 2800 1200 9 999999999 139 0 0 88 0.2 0 0 +1.86048E7 29 27 89 98654 491 1327 456 140 23 132 15491 931 14634 5024 69 3.8 9 9 2650 1200 9 999999999 139 0 0 88 0.2 0 0 +1.86084E7 29 27 89 98654 758 1327 456 252 17 242 27953 1042 27021 9759 100 4.1 9 9 2500 900 9 999999999 139 0 0 88 0.2 0 0 +1.8612E7 31 26 75 98672 986 1327 466 360 27 340 40502 1860 38507 14336 110 4.6 9 9 3000 900 9 999999999 125 0 0 88 0.2 0 0 +1.86156E7 31 27 79 98672 1161 1327 468 443 64 387 50535 4259 44495 16743 60 4.6 9 9 3000 1200 9 999999999 138 0 0 88 0.2 0 0 +1.86192E7 32 27 75 98680 1269 1327 474 495 64 433 56840 4383 50141 18588 70 7.7 9 9 3200 900 9 999999999 138 0 0 88 0.2 0 0 +1.86228E7 31 27 79 98672 1304 1327 468 512 65 448 58897 4410 51996 19186 120 5.1 9 9 2500 900 0 919999999 138 0 0 88 0.2 0 0 +1.86264E7 29 27 89 98654 1263 1327 456 492 64 431 56504 4375 49842 18491 110 2.6 9 9 2500 900 0 919999999 139 0 0 88 0.2 0 0 +1.863E7 28 26 89 98646 1150 1327 448 438 64 383 50069 4390 44051 16569 60 4.1 9 9 2500 900 0 919999999 126 0 0 88 0.2 0 0 +1.86336E7 29 26 84 98654 971 1327 454 353 30 331 39669 2056 37444 13957 76 0 9 9 3000 1200 0 919999999 125 0 0 88 0.2 0 0 +1.86372E7 30 27 84 98663 739 1327 462 243 17 234 26972 993 26095 9393 205 0 9 9 3000 1200 0 919999999 138 0 0 88 0.2 0 0 +1.86408E7 30 27 84 98663 470 1327 462 124 10 121 13741 365 13424 4618 109 0 9 9 3000 1200 0 919999999 138 0 0 88 0.2 0 0 +1.86444E7 30 27 84 98663 182 1327 462 26 0 26 2483 0 2502 992 23 0 9 9 2000 1200 0 919999999 138 0 0 88 0.2 0 0 +1.8648E7 29 27 89 98654 0 842 456 0 0 0 0 0 0 0 60 1.5 9 9 1400 1200 0 919999999 139 0 0 88 0.2 0 0 +1.86516E7 29 27 89 98654 0 0 430 0 0 0 0 0 0 0 60 3.1 5 5 1400 2000 0 919999999 139 0 0 88 0.2 0 0 +1.86552E7 29 26 84 98654 0 0 429 0 0 0 0 0 0 0 60 2.1 5 5 2500 2000 0 919999999 125 0 0 88 0.2 0 0 +1.86588E7 29 27 89 98654 0 0 430 0 0 0 0 0 0 0 219 0 5 5 2400 2000 0 919999999 139 0 0 88 0.2 0 0 +1.86624E7 29 27 89 98654 0 0 423 0 0 0 0 0 0 0 126 0 3 3 2000 2000 0 919999999 139 0 0 88 0.2 0 0 +1.8666E7 28 27 94 98646 0 0 418 0 0 0 0 0 0 0 155 0 3 3 2000 2000 0 919999999 139 0 0 88 0.2 0 0 +1.86696E7 28 26 89 98646 0 0 417 0 0 0 0 0 0 0 10 2.1 3 3 2100 2000 0 919999999 126 0 0 88 0.2 0 0 +1.86732E7 28 26 89 98646 0 0 417 0 0 0 0 0 0 0 20 2.1 3 3 2400 2000 0 919999999 126 0 0 88 0.2 0 0 +1.86768E7 28 26 89 98646 0 0 423 0 0 0 0 0 0 0 40 3.1 5 5 1800 2000 0 919999999 126 0 0 88 0.2 0 0 +1.86804E7 28 27 94 98646 0 0 424 0 0 0 0 0 0 0 50 2.6 5 5 2000 2000 0 919999999 139 0 0 88 0.2 0 0 +1.8684E7 28 27 94 98646 0 0 424 0 0 0 0 0 0 0 70 1.5 5 5 2400 2000 9 999999999 139 0 0 88 0.2 0 0 +1.86876E7 29 27 89 98654 202 928 430 56 32 51 6071 0 5564 1719 70 2.6 5 5 2000 2000 9 999999999 139 0 0 88 0.2 0 0 +1.86912E7 30 27 84 98663 489 1327 436 238 284 134 26266 11761 14832 5066 70 2.6 5 5 2500 2000 9 999999999 138 0 0 88 0.2 0 0 +1.86948E7 31 27 79 98672 756 1327 442 453 406 221 50634 23325 24905 9188 50 3.1 5 5 2800 2000 9 999999999 138 0 0 88 0.2 0 0 +1.86984E7 32 26 71 98680 985 1327 472 360 44 327 40571 2942 37171 13976 50 4.1 9 9 3500 2000 9 999999999 125 0 0 88 0.2 0 0 +1.8702E7 33 27 71 98689 1160 1327 480 442 64 387 50493 4263 44453 16728 100 4.1 9 9 3500 900 9 999999999 138 0 0 88 0.2 0 0 +1.87056E7 34 26 63 98697 1268 1327 485 495 65 433 56990 4542 50231 18586 110 2.6 9 9 4000 2000 9 999999999 124 0 0 88 0.2 0 0 +1.87092E7 35 26 60 98705 1303 1327 491 512 65 449 59056 4571 52091 19184 120 3.1 9 9 4000 2000 9 999999999 124 0 0 88 0.2 0 0 +1.87128E7 36 25 53 98714 1262 1327 496 494 86 412 57039 5981 47995 17956 120 3.1 9 9 4500 2000 9 999999999 112 0 0 88 0.2 0 0 +1.87164E7 36 26 57 98714 1148 1327 470 789 564 301 91892 34185 35301 13983 60 4.1 5 5 5000 2000 9 999999999 124 0 0 88 0.2 0 0 +1.872E7 36 25 53 98714 969 1327 469 636 598 199 74562 32753 23461 9588 50 4.1 5 5 5000 2000 9 999999999 112 0 0 88 0.2 0 0 +1.87236E7 36 26 57 98714 737 1327 470 437 484 169 49918 24954 19336 7422 60 2.6 5 5 5000 2000 9 999999999 124 0 0 88 0.2 0 0 +1.87272E7 35 26 60 98705 468 1327 464 223 268 128 24530 11104 14210 4801 50 2.1 5 5 4000 2000 9 999999999 124 0 0 88 0.2 0 0 +1.87308E7 35 25 56 98705 179 1327 463 46 21 43 5013 0 4715 1457 60 1.5 5 5 4000 2000 9 999999999 112 0 0 88 0.2 0 0 +1.87344E7 34 26 63 98697 0 827 458 0 0 0 0 0 0 0 60 1.5 5 5 4000 2000 9 999999999 124 0 0 88 0.2 0 0 +1.8738E7 33 26 67 98689 0 0 452 0 0 0 0 0 0 0 70 2.1 5 5 3200 2000 9 999999999 125 0 0 88 0.2 0 0 +1.87416E7 33 26 67 98689 0 0 452 0 0 0 0 0 0 0 60 3.1 5 5 3000 2000 9 999999999 125 0 0 88 0.2 0 0 +1.87452E7 32 27 75 98680 0 0 447 0 0 0 0 0 0 0 50 2.1 5 5 3000 2000 9 999999999 138 0 0 88 0.2 0 0 +1.87488E7 32 26 71 98680 0 0 446 0 0 0 0 0 0 0 60 4.1 5 5 2800 2000 9 999999999 125 0 0 88 0.2 0 0 +1.87524E7 31 27 79 98672 0 0 442 0 0 0 0 0 0 0 60 2.1 5 5 2800 2000 9 999999999 138 0 0 88 0.2 0 0 +1.8756E7 31 26 75 98672 0 0 440 0 0 0 0 0 0 0 60 2.6 5 5 2800 2000 9 999999999 125 0 0 88 0.2 0 0 +1.87596E7 31 26 75 98672 0 0 440 0 0 0 0 0 0 0 60 4.1 5 5 3000 3000 9 999999999 125 0 0 88 0.2 0 0 +1.87632E7 30 25 75 98663 0 0 427 0 0 0 0 0 0 0 70 3.6 3 3 4000 2000 9 999999999 113 0 0 88 0.2 0 0 +1.87668E7 29 25 79 98654 0 0 421 0 0 0 0 0 0 0 60 4.1 3 3 4000 2000 9 999999999 114 0 0 88 0.2 0 0 +1.87704E7 29 26 84 98654 0 0 429 0 0 0 0 0 0 0 60 3.1 5 5 3500 2000 9 999999999 125 0 0 88 0.2 0 0 +1.8774E7 30 27 84 98663 199 916 436 55 30 50 5953 0 5486 1694 60 2.1 5 5 3000 2000 9 999999999 138 0 0 88 0.2 0 0 +1.87776E7 30 26 79 98663 487 1328 435 237 284 133 26198 12245 14784 5038 60 4.1 5 5 3000 2000 9 999999999 125 0 0 88 0.2 0 0 +1.87812E7 32 26 71 98680 755 1328 439 480 624 125 56244 28000 14732 5894 60 4.1 3 3 3500 2000 9 999999999 125 0 0 88 0.2 0 0 +1.87848E7 33 26 67 98689 984 1328 452 647 583 215 75496 31865 25244 10272 60 4.1 5 5 4000 2000 9 999999999 125 0 0 88 0.2 0 0 +1.87884E7 34 26 63 98697 1159 1328 458 798 611 265 93979 34708 31449 12713 50 4.6 5 5 4000 2000 9 999999999 124 0 0 88 0.2 0 0 +1.8792E7 35 25 56 98705 1267 1328 463 894 548 371 104248 36235 43558 16712 50 4.1 5 5 5000 2000 9 999999999 112 0 0 88 0.2 0 0 +1.87956E7 35 25 56 98705 1302 1328 490 513 86 429 59401 6025 50042 18623 110 3.1 9 9 5000 1200 9 999999999 112 0 0 88 0.2 0 0 +1.87992E7 35 24 53 98705 1261 1328 488 494 86 412 57147 6163 48038 17945 60 5.1 9 9 5000 1200 9 999999999 102 0 0 88 0.2 0 0 +1.88028E7 36 26 57 98714 1147 1328 470 788 565 301 91750 34182 35222 13956 60 3.6 5 5 5000 2000 9 999999999 124 0 0 88 0.2 0 0 +1.88064E7 35 25 56 98705 968 1328 463 634 598 199 74373 32724 23404 9563 60 4.1 5 5 5000 2000 9 999999999 112 0 0 88 0.2 0 0 +1.881E7 35 25 56 98705 735 1328 463 436 486 167 49872 25812 19240 7373 50 3.1 5 5 5000 2000 9 999999999 112 0 0 88 0.2 0 0 +1.88136E7 35 26 60 98705 465 1328 464 221 266 128 24302 10946 14133 4768 60 2.6 5 5 5000 2000 9 999999999 124 0 0 88 0.2 0 0 +1.88172E7 34 25 60 98697 176 1328 457 44 16 42 4860 0 4637 1431 50 4.1 5 5 5000 2000 9 999999999 113 0 0 88 0.2 0 0 +1.88208E7 33 25 63 98689 0 811 451 0 0 0 0 0 0 0 70 3.1 5 5 5000 2000 9 999999999 113 0 0 88 0.2 0 0 +1.88244E7 32.5 24.5 63 98684 0 0 447 0 0 0 0 0 0 0 214 3.6 5 5 4500 2000 9 999999999 107 0 0 88 0.2 0 0 +1.8828E7 32 24 63 98680 0 0 443 0 0 0 0 0 0 0 60 4.1 5 5 4000 2000 9 999999999 102 0 0 88 0.2 0 0 +1.88316E7 32 24 63 98680 0 0 443 0 0 0 0 0 0 0 60 4.1 5 5 4000 2000 9 999999999 102 0 0 88 0.2 0 0 +1.88352E7 31 25 70 98672 0 0 439 0 0 0 0 0 0 0 60 4.1 5 5 4000 2000 9 999999999 113 0 0 88 0.2 0 0 +1.88388E7 30 25 75 98663 0 0 433 0 0 0 0 0 0 0 70 4.1 5 5 4000 2000 9 999999999 113 0 0 88 0.2 0 0 +1.88424E7 30 25 75 98663 0 0 427 0 0 0 0 0 0 0 60 4.1 3 3 4000 2000 9 999999999 113 0 0 88 0.2 0 0 +1.8846E7 29 25 79 98654 0 0 421 0 0 0 0 0 0 0 70 3.1 3 3 4000 2000 9 999999999 114 0 0 88 0.2 0 0 +1.88496E7 29 26 84 98654 0 0 422 0 0 0 0 0 0 0 60 3.1 3 3 4000 2000 9 999999999 125 0 0 88 0.2 0 0 +1.88532E7 29 25 79 98654 0 0 428 0 0 0 0 0 0 0 60 3.6 5 5 4000 2000 9 999999999 114 0 0 88 0.2 0 0 +1.88568E7 29 26 84 98654 0 0 454 0 0 0 0 0 0 0 70 4.1 9 9 4000 2000 9 999999999 125 0 0 88 0.2 0 0 +1.88604E7 29 26 84 98654 197 904 454 30 0 30 2856 0 2878 1133 60 4.1 9 9 4000 3000 9 999999999 125 0 0 88 0.2 0 0 +1.8864E7 30 25 75 98663 486 1328 459 131 13 126 14565 570 14095 4846 70 4.1 9 9 4000 3000 9 999999999 113 0 0 88 0.2 0 0 +1.88676E7 30 26 79 98663 754 1328 460 250 17 241 27839 1078 26905 9684 60 3.6 9 9 4000 3000 9 999999999 125 0 0 88 0.2 0 0 +1.88712E7 31 26 75 98672 983 1328 466 359 27 339 40328 1861 38340 14265 70 5.1 9 9 4000 3000 9 999999999 125 0 0 88 0.2 0 0 +1.88748E7 31 26 75 98672 1158 1328 466 442 64 386 50553 4417 44471 16705 70 4.1 9 9 4000 3000 9 999999999 125 0 0 88 0.2 0 0 +1.88784E7 32 26 71 98680 1267 1328 472 495 65 433 56886 4544 50138 18554 70 5.1 9 9 4500 3000 9 999999999 125 0 0 88 0.2 0 0 +1.8882E7 32 25 67 98680 1302 1328 471 512 66 448 59130 4720 52117 19162 70 6.7 9 9 4500 3000 9 999999999 113 0 0 88 0.2 0 0 +1.88856E7 32 25 67 98680 1260 1328 471 492 65 430 56698 4685 49928 18458 60 6.2 9 9 4500 3000 9 999999999 113 0 0 88 0.2 0 0 +1.88892E7 32 25 67 98680 1146 1328 471 437 65 382 50014 4543 43959 16511 50 4.6 9 9 4500 3000 9 999999999 113 0 0 88 0.2 0 0 +1.88928E7 32 25 67 98680 966 1328 471 351 43 319 39619 2996 36292 13599 60 4.6 9 9 4000 1200 9 999999999 113 0 0 88 0.2 0 0 +1.88964E7 33 25 63 98689 733 1328 451 435 401 213 48688 24171 24032 8782 60 2.6 5 5 4000 1200 9 999999999 113 0 0 88 0.2 0 0 +1.89E7 33 26 67 98689 462 1328 452 219 239 136 23955 10282 14947 4949 50 1.5 5 5 4000 2000 9 999999999 125 0 0 88 0.2 0 0 +1.89036E7 33 26 67 98689 173 1328 479 24 0 24 2278 0 2295 910 70 2.1 9 9 4000 2000 9 999999999 125 0 0 88 0.2 0 0 +1.89072E7 33 26 67 98689 0 795 479 0 0 0 0 0 0 0 60 2.1 9 9 4000 1200 9 999999999 125 0 0 88 0.2 0 0 +1.89108E7 31 26 75 98672 0 0 434 0 0 0 0 0 0 0 50 1 3 3 3500 1200 9 999999999 125 0 0 88 0.2 0 0 +1.89144E7 31 26 75 98672 0 0 440 0 0 0 0 0 0 0 60 1.5 5 5 3500 2000 9 999999999 125 0 0 88 0.2 0 0 +1.8918E7 30 26 79 98663 0 0 428 0 0 0 0 0 0 0 70 2.1 3 3 3000 2000 9 999999999 125 0 0 88 0.2 0 0 +1.89216E7 30 26 79 98663 0 0 428 0 0 0 0 0 0 0 70 1.5 3 3 3000 2000 9 999999999 125 0 0 88 0.2 0 0 +1.89252E7 30 25 75 98663 0 0 433 0 0 0 0 0 0 0 70 3.1 5 5 3000 2000 9 999999999 113 0 0 88 0.2 0 0 +1.89288E7 30 26 79 98663 0 0 435 0 0 0 0 0 0 0 70 2.1 5 5 3000 2000 9 999999999 125 0 0 88 0.2 0 0 +1.89324E7 30 26 79 98663 0 0 435 0 0 0 0 0 0 0 60 4.1 5 5 2800 2000 9 999999999 125 0 0 88 0.2 0 0 +1.8936E7 30 26 79 98663 0 0 435 0 0 0 0 0 0 0 60 4.1 5 5 3000 2000 9 999999999 125 0 0 88 0.2 0 0 +1.89396E7 29 26 84 98654 0 0 429 0 0 0 0 0 0 0 70 3.6 5 5 3000 2000 9 999999999 125 0 0 88 0.2 0 0 +1.89432E7 29 26 84 98654 0 0 429 0 0 0 0 0 0 0 40 2.1 5 5 3000 2000 9 999999999 125 0 0 88 0.2 0 0 +1.89468E7 29 26 84 98654 195 892 429 53 27 49 5746 0 5342 1645 90 3.6 5 5 3000 2000 9 999999999 125 0 0 88 0.2 0 0 +1.89504E7 31 25 70 98672 484 1329 439 235 283 132 25993 12619 14670 4984 50 5.1 5 5 3000 2000 9 999999999 113 0 0 88 0.2 0 0 +1.8954E7 32 26 71 98680 752 1329 446 450 493 171 51439 25539 19660 7582 70 4.1 5 5 3500 2000 9 999999999 125 0 0 88 0.2 0 0 +1.89576E7 32 25 67 98680 982 1329 445 646 601 203 75854 33041 23892 9772 100 2.6 5 5 3500 2000 9 999999999 113 0 0 88 0.2 0 0 +1.89612E7 33 26 67 98689 1157 1329 452 797 611 264 93792 34715 31330 12669 70 3.1 5 5 4500 2000 9 999999999 125 0 0 88 0.2 0 0 +1.89648E7 34 25 60 98697 1266 1329 457 892 642 281 106319 37289 33663 13535 50 4.1 5 5 4500 2000 9 999999999 113 0 0 88 0.2 0 0 +1.89684E7 35 25 56 98705 1301 1329 463 923 639 298 109942 37635 35720 14263 70 3.1 5 5 5000 2000 9 999999999 112 0 0 88 0.2 0 0 +1.8972E7 35 24 53 98705 1259 1329 461 888 647 275 106047 38383 33039 13298 70 5.1 5 5 5000 2000 9 999999999 102 0 0 88 0.2 0 0 +1.89756E7 36 25 53 98714 1144 1329 469 787 569 298 91794 35298 34937 13842 40 2.1 5 5 5000 2000 9 999999999 112 0 0 88 0.2 0 0 +1.89792E7 36 24 50 98714 964 1329 495 351 85 289 39954 5688 33160 12701 50 4.1 9 9 5000 2000 9 999999999 102 0 0 88 0.2 0 0 +1.89828E7 36 26 57 98714 730 1329 498 240 17 230 26618 1016 25753 9228 60 3.1 9 9 5000 3000 9 999999999 124 0 0 88 0.2 0 0 +1.89864E7 35 25 56 98705 459 1329 490 120 9 117 13355 372 13057 4462 60 3.6 9 9 4500 3000 9 999999999 112 0 0 88 0.2 0 0 +1.899E7 35 25 56 98705 169 1329 490 23 0 23 2207 0 2224 881 70 4.1 9 9 4000 3000 0 919999999 112 0 0 88 0.2 0 0 +1.89936E7 29 28 94 98654 0 778 457 0 0 0 0 0 0 0 27 0 9 9 3500 1200 0 919999999 153 0 0 88 0.2 0 0 +1.89972E7 31 28 84 98672 0 0 436 0 0 0 0 0 0 0 247 0 3 3 5000 2000 0 919999999 153 0 0 88 0.2 0 0 +1.90008E7 32 28 79 98680 0 0 442 0 0 0 0 0 0 0 60 1.5 3 3 5000 2000 0 919999999 153 0 0 88 0.2 0 0 +1.90044E7 31 26 75 98672 0 0 434 0 0 0 0 0 0 0 100 2.6 3 3 5000 2000 0 919999999 125 0 0 88 0.2 0 0 +1.9008E7 31 26 75 98672 0 0 434 0 0 0 0 0 0 0 60 4.1 3 3 5000 2000 0 919999999 125 0 0 88 0.2 0 0 +1.90116E7 30 26 79 98663 0 0 428 0 0 0 0 0 0 0 60 3.1 3 3 5000 2000 0 919999999 125 0 0 88 0.2 0 0 +1.90152E7 30 25 75 98663 0 0 427 0 0 0 0 0 0 0 50 2.6 3 3 4500 2000 0 919999999 113 0 0 88 0.2 0 0 +1.90188E7 29 26 84 98654 0 0 422 0 0 0 0 0 0 0 70 3.1 3 3 3500 2000 0 919999999 125 0 0 88 0.2 0 0 +1.90224E7 29 26 84 98654 0 0 422 0 0 0 0 0 0 0 50 3.1 3 3 4000 2000 0 919999999 125 0 0 88 0.2 0 0 +1.9026E7 29 27 89 98654 0 0 423 0 0 0 0 0 0 0 70 2.1 3 3 4000 2000 0 919999999 139 0 0 88 0.2 0 0 +1.90296E7 28 26 89 98646 0 0 417 0 0 0 0 0 0 0 70 3.1 3 3 4000 2000 9 999999999 126 0 0 88 0.2 0 0 +1.90332E7 28 26 89 98646 192 880 417 55 37 50 5968 0 5412 1654 50 2.6 3 3 4000 2000 9 999999999 126 0 0 88 0.2 0 0 +1.90368E7 29 27 89 98654 482 1329 456 129 13 125 14314 525 13838 4773 50 2.1 9 9 3500 3000 9 999999999 139 0 0 88 0.2 0 0 +1.90404E7 30 26 79 98663 751 1329 460 249 17 239 27695 1073 26768 9626 60 5.1 9 9 3000 3000 9 999999999 125 0 0 88 0.2 0 0 +1.9044E7 31 26 75 98672 981 1329 466 358 27 338 40205 1861 38223 14215 70 4.1 9 9 3500 3000 9 999999999 125 0 0 88 0.2 0 0 +1.90476E7 29 25 79 98654 1156 1329 453 442 65 386 50601 4564 44478 16680 100 5.1 9 9 3500 1200 9 999999999 114 0 0 88 0.2 0 0 +1.90512E7 32 26 71 98680 1265 1329 472 494 65 432 56781 4548 50041 18520 130 5.1 9 9 4000 1200 9 999999999 125 0 0 88 0.2 0 0 +1.90548E7 32 26 71 98680 1300 1329 472 511 85 427 59036 5840 49777 18561 100 4.1 9 9 4500 1200 9 999999999 125 0 0 88 0.2 0 0 +1.90584E7 33 26 67 98689 1258 1329 452 884 546 367 102889 35114 43057 16562 130 2.1 5 5 4500 2000 9 999999999 125 0 0 88 0.2 0 0 +1.9062E7 35 25 56 98705 1143 1329 463 786 616 256 92696 35738 30429 12331 130 3.1 5 5 5000 2000 9 999999999 112 0 0 88 0.2 0 0 +1.90656E7 34 25 60 98697 962 1329 457 630 598 197 73814 32660 23174 9464 100 4.1 5 5 5000 2000 9 999999999 113 0 0 88 0.2 0 0 +1.90692E7 33 25 63 98689 728 1329 451 431 484 166 49200 25597 19046 7281 50 5.1 5 5 5000 2000 9 999999999 113 0 0 88 0.2 0 0 +1.90728E7 32 26 71 98680 456 1329 446 215 248 130 23558 10266 14279 4760 30 4.6 5 5 5000 2000 9 999999999 125 0 0 88 0.2 0 0 +1.90764E7 31 25 70 98672 166 1329 439 40 2 40 4400 0 4381 1345 40 4.1 5 5 4500 2000 9 999999999 113 0 0 88 0.2 0 0 +1.908E7 31 26 75 98672 0 761 440 0 0 0 0 0 0 0 50 2.6 5 5 3000 2000 9 999999999 125 0 0 88 0.2 0 0 +1.90836E7 31 25 70 98672 0 0 439 0 0 0 0 0 0 0 40 3.1 5 5 3000 2000 9 999999999 113 0 0 88 0.2 0 0 +1.90872E7 30 25 75 98663 0 0 433 0 0 0 0 0 0 0 50 3.6 5 5 3000 2000 9 999999999 113 0 0 88 0.2 0 0 +1.90908E7 29 26 84 98654 0 0 429 0 0 0 0 0 0 0 50 2.6 5 5 3000 2000 9 999999999 125 0 0 88 0.2 0 0 +1.90944E7 29 26 84 98654 0 0 429 0 0 0 0 0 0 0 184 0 5 5 3000 2000 9 999999999 125 0 0 88 0.2 0 0 +1.9098E7 29 26 84 98654 0 0 429 0 0 0 0 0 0 0 100 1 5 5 3000 2000 9 999999999 125 0 0 88 0.2 0 0 +1.91016E7 29 26 84 98654 0 0 454 0 0 0 0 0 0 0 50 4.1 9 9 3000 1200 9 999999999 125 0 0 88 0.2 0 0 +1.91052E7 29 26 84 98654 0 0 422 0 0 0 0 0 0 0 50 2.1 3 3 3000 1200 9 999999999 125 0 0 88 0.2 0 0 +1.91088E7 28.7 25.7 84 98651 0 0 442 0 0 0 0 0 0 0 211 2.3 8 8 3333 1200 9 999999999 122 0 0 88 0.2 0 0 +1.91124E7 28.3 25.3 84 98648 0 0 440 0 0 0 0 0 0 0 228 2.4 8 8 3666 1200 9 999999999 117 0 0 88 0.2 0 0 +1.9116E7 28 25 84 98646 0 0 447 0 0 0 0 0 0 0 40 2.6 9 9 4000 1200 9 999999999 114 0 0 88 0.2 0 0 +1.91196E7 28 25 84 98646 190 868 460 17 0 17 1644 0 1657 694 50 5.1 10 10 3000 900 9 999999999 114 0 0 88 0.2 0 0 +1.91232E7 28 25 84 98646 480 1330 460 79 0 79 7733 0 7799 3342 60 5.7 10 10 3000 900 9 999999999 114 0 0 88 0.2 0 0 +1.91268E7 27 25 89 98637 749 1330 453 152 0 152 15264 0 15407 6881 70 4.1 10 10 3000 900 9 999999999 114 0 0 88 0.2 0 0 +1.91304E7 27 24 84 98637 980 1330 452 218 5 215 25532 265 25277 10242 120 1 10 10 3000 600 0 919999999 103 0 0 88 0.2 0 0 +1.9134E7 28 25 84 98646 1155 1330 460 269 9 262 31779 524 31045 12553 87 0 10 10 3000 600 0 919999999 114 0 0 88 0.2 0 0 +1.91376E7 28 25 84 98646 1264 1330 447 494 55 442 56786 3964 51210 18795 70 1.5 9 9 3500 600 0 919999999 114 0 0 88 0.2 0 0 +1.91412E7 29 26 84 98654 1299 1330 454 510 54 457 58644 3866 52951 19379 60 1.5 9 9 3500 900 0 919999999 125 0 0 88 0.2 0 0 +1.91448E7 29 27 89 98654 1257 1330 468 298 14 285 35332 795 33929 13656 50 1 10 10 3500 900 0 919999999 139 0 0 88 0.2 0 0 +1.91484E7 30 26 79 98663 1141 1330 460 434 58 385 49522 3975 44211 16578 94 0 9 9 3500 1200 0 919999999 125 0 0 88 0.2 0 0 +1.9152E7 31 27 79 98672 960 1330 468 347 43 316 39032 2784 35799 13454 152 0 9 9 3500 1200 0 919999999 138 0 0 88 0.2 0 0 +1.91556E7 31 27 79 98672 725 1330 442 427 394 212 47638 22278 23795 8691 261 0 5 5 4000 2000 0 919999999 138 0 0 88 0.2 0 0 +1.91592E7 31 26 75 98672 453 1330 440 212 255 125 23349 10271 13854 4641 230 2.1 5 5 4000 2000 0 919999999 125 0 0 88 0.2 0 0 +1.91628E7 31 26 75 98672 162 1330 440 39 0 39 3689 0 3718 1305 140 1.5 5 5 3500 2000 0 919999999 125 0 0 88 0.2 0 0 +1.91664E7 31 26 75 98672 0 743 466 0 0 0 0 0 0 0 132 0 9 9 3500 1200 0 919999999 125 0 0 88 0.2 0 0 +1.917E7 30 27 84 98663 0 0 436 0 0 0 0 0 0 0 128 0 5 5 3500 2000 0 919999999 138 0 0 88 0.2 0 0 +1.91736E7 30 27 84 98663 0 0 436 0 0 0 0 0 0 0 218 0 5 5 3500 2000 0 919999999 138 0 0 88 0.2 0 0 +1.91772E7 29 26 84 98654 0 0 429 0 0 0 0 0 0 0 23 0 5 5 3500 2000 0 919999999 125 0 0 88 0.2 0 0 +1.91808E7 29 26 84 98654 0 0 429 0 0 0 0 0 0 0 117 0 5 5 3500 2000 0 919999999 125 0 0 88 0.2 0 0 +1.91844E7 28 26 89 98646 0 0 423 0 0 0 0 0 0 0 240 1.5 5 5 3500 2000 0 919999999 126 0 0 88 0.2 0 0 +1.9188E7 28 26 89 98646 0 0 423 0 0 0 0 0 0 0 230 1.5 5 5 3500 2000 0 19999999 126 0 0 88 0.2 0 0 +1.91916E7 27 25 89 98637 0 0 441 0 0 0 0 0 0 0 285 2.5 9 9 3500 2000 9 999999999 114 0 0 88 0.2 0 0 +1.91952E7 26 24 89 98628 0 0 446 0 0 0 0 0 0 0 240 3.6 10 10 3500 750 0 19999999 103 0 0 88 0.2 0 0 +1.91988E7 26 25 94 98628 0 0 447 0 0 0 0 0 0 0 260 2.1 10 10 3500 600 0 19999999 114 0 0 88 0.2 0 0 +1.92024E7 26 25 94 98628 0 0 447 0 0 0 0 0 0 0 260 2.1 10 10 3500 600 0 919999999 114 0 0 88 0.2 0 0 +1.9206E7 26 25 94 98628 188 856 435 28 0 28 2645 0 2665 1049 320 2.1 9 9 3500 900 0 919999999 114 0 0 88 0.2 0 0 +1.92096E7 27 25 89 98637 478 1330 441 128 12 124 14239 511 13821 4740 360 2.1 9 9 3500 1200 0 919999999 114 0 0 88 0.2 0 0 +1.92132E7 28 25 84 98646 748 1330 447 248 17 238 27636 1108 26706 9576 10 2.6 9 9 2500 1200 0 919999999 114 0 0 88 0.2 0 0 +1.92168E7 29 25 79 98654 979 1330 453 357 27 337 40205 1922 38210 14177 360 3.6 9 9 2500 900 0 919999999 114 0 0 88 0.2 0 0 +1.92204E7 29 25 79 98654 1154 1330 453 441 65 385 50488 4567 44375 16644 30 4.1 9 9 3000 900 0 919999999 114 0 0 88 0.2 0 0 +1.9224E7 30 25 75 98663 1263 1330 459 494 66 432 56843 4698 50056 18495 360 5.1 9 9 3000 900 0 919999999 113 0 0 88 0.2 0 0 +1.92276E7 30 24 70 98663 1298 1330 457 511 66 447 59061 4869 52011 19097 20 5.1 9 9 4000 1200 0 919999999 103 0 0 88 0.2 0 0 +1.92312E7 31 24 66 98672 1256 1330 464 491 66 429 56575 4834 49774 18379 20 6.2 9 9 4000 1200 0 919999999 102 0 0 88 0.2 0 0 +1.92348E7 31 25 70 98672 1140 1330 465 434 65 379 49649 4544 43632 16399 30 4.6 9 9 4000 1050 0 919999999 113 0 0 88 0.2 0 0 +1.92384E7 31 26 75 98672 958 1330 466 347 30 325 38958 2045 36774 13679 40 4.6 9 9 4500 3000 0 919999999 125 0 0 88 0.2 0 0 +1.9242E7 31 25 70 98672 723 1330 465 237 17 228 26314 1037 25459 9087 30 6.2 9 9 4000 1200 0 919999999 113 0 0 88 0.2 0 0 +1.92456E7 31 26 75 98672 450 1330 466 117 6 115 12910 232 12733 4344 30 4.1 9 9 4000 900 0 919999999 125 0 0 88 0.2 0 0 +1.92492E7 30 26 79 98663 158 1330 460 21 0 21 1970 0 1985 790 60 4.1 9 9 4000 1200 0 919999999 125 0 0 88 0.2 0 0 +1.92528E7 29 25 79 98654 0 725 428 0 0 0 0 0 0 0 90 3.1 5 5 4000 3000 0 919999999 114 0 0 88 0.2 0 0 +1.92564E7 29 25 79 98654 0 0 428 0 0 0 0 0 0 0 50 3.6 5 5 3500 2000 0 919999999 114 0 0 88 0.2 0 0 +1.926E7 28 25 84 98646 0 0 422 0 0 0 0 0 0 0 50 1.5 5 5 3500 2000 0 919999999 114 0 0 88 0.2 0 0 +1.92636E7 28 25 84 98646 0 0 422 0 0 0 0 0 0 0 60 1 5 5 3500 2000 0 919999999 114 0 0 88 0.2 0 0 +1.92672E7 28 25 84 98646 0 0 422 0 0 0 0 0 0 0 35 0 5 5 3500 2000 0 919999999 114 0 0 88 0.2 0 0 +1.92708E7 28 23 74 98646 0 0 419 0 0 0 0 0 0 0 50 5.1 5 5 3500 2000 0 919999999 93 0 0 88 0.2 0 0 +1.92744E7 28 24.5 81 98646 0 0 437 0 0 0 0 0 0 0 38 3 8 8 3250 2000 9 999999999 108 0 0 88 0.2 0 0 +1.9278E7 28 26 89 98646 0 0 423 0 0 0 0 0 0 0 40 1 5 5 3000 2000 0 919999999 126 0 0 88 0.2 0 0 +1.92816E7 28 26 89 98646 0 0 423 0 0 0 0 0 0 0 56 0 5 5 3000 2000 0 919999999 126 0 0 88 0.2 0 0 +1.92852E7 28 26 89 98646 0 0 423 0 0 0 0 0 0 0 25 0 5 5 3000 2000 0 919999999 126 0 0 88 0.2 0 0 +1.92888E7 28 26 89 98646 0 0 448 0 0 0 0 0 0 0 302 0 9 9 3000 3000 9 999999999 126 0 0 88 0.2 0 0 +1.92924E7 27 26 94 98637 185 844 455 16 0 16 1574 0 1586 666 50 2.6 10 10 3000 600 9 999999999 126 0 0 88 0.2 0 0 +1.9296E7 27 26 94 98637 476 1330 455 96 0 96 9374 0 9455 3897 298 2 10 10 3000 600 9 999999999 126 0 0 88 0.2 0 0 +1.92996E7 27 26 94 98637 747 1330 455 151 0 151 15129 0 15272 6830 60 1.5 10 10 3000 600 0 919999999 126 0 0 88 0.2 0 0 +1.93032E7 27 27 100 98637 978 1330 456 217 31 194 25402 1546 22886 9421 250 1.7 10 10 3000 600 0 919999999 139 0 0 88 0.2 0 0 +1.93068E7 29 27 89 98654 1153 1330 456 464 82 393 52814 5568 45022 16849 199 1.9 9 9 2750 600 9 999999999 139 0 0 88 0.2 0 0 +1.93104E7 31 27 79 98672 1262 1330 468 492 85 411 56618 5608 47732 17917 50 2.1 9 9 2500 900 0 919999999 138 0 0 88 0.2 0 0 +1.9314E7 32 26 71 98680 1297 1330 446 918 543 388 106843 35439 45538 17368 40 3.1 5 5 2800 1200 0 919999999 125 0 0 88 0.2 0 0 +1.93176E7 33 26 67 98689 1254 1330 452 881 640 278 104685 36007 33204 13385 50 2.1 5 5 3000 2000 0 919999999 125 0 0 88 0.2 0 0 +1.93212E7 34 25 60 98697 1138 1330 457 782 617 254 92171 35719 30144 12227 30 3.6 5 5 3000 2000 0 919999999 113 0 0 88 0.2 0 0 +1.93248E7 30 24 70 98663 956 1330 432 625 601 194 73397 33630 22865 9323 130 5.1 5 5 3500 2000 0 919999999 103 0 0 88 0.2 0 0 +1.93284E7 31 27 79 98672 720 1330 442 423 393 210 47137 22114 23595 8603 100 0 5 5 3500 2000 0 919999999 138 0 0 88 0.2 0 0 +1.9332E7 32 26 71 98680 447 1330 472 115 10 112 12775 363 12459 4258 20 2.1 9 9 3500 1200 0 919999999 125 0 0 88 0.2 0 0 +1.93356E7 31 26 75 98672 155 1330 466 20 0 20 1888 0 1903 758 20 2.6 9 9 3500 1200 0 919999999 125 0 0 88 0.2 0 0 +1.93392E7 30 25 75 98663 0 707 459 0 0 0 0 0 0 0 30 2.1 9 9 3500 1200 0 919999999 113 0 0 88 0.2 0 0 +1.93428E7 30 25 75 98663 0 0 433 0 0 0 0 0 0 0 350 2.1 5 5 3500 2000 0 919999999 113 0 0 88 0.2 0 0 +1.93464E7 29 26 84 98654 0 0 429 0 0 0 0 0 0 0 70 3.1 5 5 3500 2000 0 919999999 125 0 0 88 0.2 0 0 +1.935E7 29 26 84 98654 0 0 429 0 0 0 0 0 0 0 30 2.1 5 5 3500 2000 0 919999999 125 0 0 88 0.2 0 0 +1.93536E7 29 26 84 98654 0 0 429 0 0 0 0 0 0 0 40 3.1 5 5 3500 2000 0 919999999 125 0 0 88 0.2 0 0 +1.93572E7 29 26 84 98654 0 0 429 0 0 0 0 0 0 0 60 3.1 5 5 3000 2000 0 919999999 125 0 0 88 0.2 0 0 +1.93608E7 29 26 84 98654 0 0 429 0 0 0 0 0 0 0 70 3.1 5 5 3500 2000 0 919999999 125 0 0 88 0.2 0 0 +1.93644E7 28 26 89 98646 0 0 423 0 0 0 0 0 0 0 60 3.1 5 5 4000 2000 0 919999999 126 0 0 88 0.2 0 0 +1.9368E7 28 25.5 86 98646 0 0 438 0 0 0 0 0 0 0 234 2.6 8 8 4000 2000 9 999999999 120 0 0 88 0.2 0 0 +1.93716E7 28 25 84 98646 0 0 422 0 0 0 0 0 0 0 70 2.1 5 5 4000 2000 0 919999999 114 0 0 88 0.2 0 0 +1.93752E7 28 25 84 98646 0 0 422 0 0 0 0 0 0 0 60 3.1 5 5 4000 2000 9 999999999 114 0 0 88 0.2 0 0 +1.93788E7 28 25 84 98646 183 832 422 48 30 44 5234 0 4801 1486 40 3.1 5 5 4000 2000 9 999999999 114 0 0 88 0.2 0 0 +1.93824E7 29 26 84 98654 475 1331 429 228 277 130 25183 11620 14371 4868 50 2.1 5 5 4000 2000 9 999999999 125 0 0 88 0.2 0 0 +1.9386E7 30 26 79 98663 745 1331 435 445 492 169 50768 25370 19439 7479 60 3.6 5 5 4000 2000 9 999999999 125 0 0 88 0.2 0 0 +1.93896E7 32 27 75 98680 976 1331 447 640 523 256 73361 30179 29555 11699 70 4.1 5 5 4000 2000 9 999999999 138 0 0 88 0.2 0 0 +1.93932E7 32 27 75 98680 1153 1331 474 439 57 389 49989 3866 44655 16748 70 3.1 9 9 4000 3000 9 999999999 138 0 0 88 0.2 0 0 +1.93968E7 33 26 67 98689 1261 1331 479 492 85 411 56753 5815 47791 17908 60 3.1 9 9 4000 3000 9 999999999 125 0 0 88 0.2 0 0 +1.94004E7 33 26 67 98689 1296 1331 452 917 544 387 106735 35460 45429 17333 60 4.1 5 5 4500 2000 9 999999999 125 0 0 88 0.2 0 0 +1.9404E7 32 26 71 98680 1253 1331 446 880 548 365 102321 35142 42699 16442 150 4.6 5 5 3500 2000 9 999999999 125 0 0 88 0.2 0 0 +1.94076E7 31 26 75 98672 1136 1331 466 432 87 357 49497 5809 41247 15748 110 1 9 9 3500 1200 9 999999999 125 0 0 88 0.2 0 0 +1.94112E7 31 25 70 98672 954 1331 465 345 30 324 38835 2109 36644 13594 50 4.1 9 9 3500 1200 9 999999999 113 0 0 88 0.2 0 0 +1.94148E7 30 26 79 98663 717 1331 460 234 16 225 25947 986 25117 8970 50 2.1 9 9 3500 1200 9 999999999 125 0 0 88 0.2 0 0 +1.94184E7 30 25 75 98663 443 1331 459 114 5 112 12660 203 12518 4254 50 2.6 9 9 3500 1200 9 999999999 113 0 0 88 0.2 0 0 +1.9422E7 30 26 79 98663 151 1331 460 19 0 19 1810 0 1824 727 40 1 9 9 3500 1200 9 999999999 125 0 0 88 0.2 0 0 +1.94256E7 29 26 84 98654 0 688 454 0 0 0 0 0 0 0 60 2.1 9 9 3500 1200 9 999999999 125 0 0 88 0.2 0 0 +1.94292E7 29 26 84 98654 0 0 454 0 0 0 0 0 0 0 60 2.1 9 9 3500 1200 9 999999999 125 0 0 88 0.2 0 0 +1.94328E7 29 25 79 98654 0 0 428 0 0 0 0 0 0 0 70 1.5 5 5 3000 2000 9 999999999 114 0 0 88 0.2 0 0 +1.94364E7 29 25 79 98654 0 0 428 0 0 0 0 0 0 0 65 0 5 5 3000 1200 9 999999999 114 0 0 88 0.2 0 0 +1.944E7 28 25 84 98646 0 0 422 0 0 0 0 0 0 0 40 1.5 5 5 3500 2000 9 999999999 114 0 0 88 0.2 0 0 +1.94436E7 28 24 79 98646 0 0 421 0 0 0 0 0 0 0 40 2.1 5 5 3500 2000 9 999999999 103 0 0 88 0.2 0 0 +1.94472E7 28 25 84 98646 0 0 422 0 0 0 0 0 0 0 20 2.1 5 5 4000 2000 9 999999999 114 0 0 88 0.2 0 0 +1.94508E7 28 24 79 98646 0 0 421 0 0 0 0 0 0 0 10 1.5 5 5 4000 2000 9 999999999 103 0 0 88 0.2 0 0 +1.94544E7 28 26 89 98646 0 0 423 0 0 0 0 0 0 0 50 1.5 5 5 4000 2000 9 999999999 126 0 0 88 0.2 0 0 +1.9458E7 27 26 94 98637 0 0 418 0 0 0 0 0 0 0 40 1.5 5 5 4000 2000 9 999999999 126 0 0 88 0.2 0 0 +1.94616E7 27 26 94 98637 0 0 418 0 0 0 0 0 0 0 50 1 5 5 4000 2000 9 999999999 126 0 0 88 0.2 0 0 +1.94652E7 28 26 89 98646 181 821 423 47 26 43 5105 0 4739 1467 40 2.6 5 5 4000 2000 9 999999999 126 0 0 88 0.2 0 0 +1.94688E7 29 26 84 98654 473 1331 429 227 275 129 25023 11511 14318 4845 60 2.6 5 5 4000 2000 9 999999999 125 0 0 88 0.2 0 0 +1.94724E7 31 25 70 98672 744 1331 439 444 494 168 50803 26277 19351 7434 60 2.6 5 5 4500 2000 9 999999999 113 0 0 88 0.2 0 0 +1.9476E7 32 26 71 98680 975 1331 446 640 526 255 73501 31261 29461 11647 22 0 5 5 4500 2000 9 999999999 125 0 0 88 0.2 0 0 +1.94796E7 33 25 63 98689 1152 1331 477 440 58 390 50253 4136 44828 16750 160 2.1 9 9 4500 1200 9 999999999 113 0 0 88 0.2 0 0 +1.94832E7 33 25 63 98689 1260 1331 477 492 66 430 56663 4707 49888 18437 110 2.1 9 9 4500 1200 9 999999999 113 0 0 88 0.2 0 0 +1.94868E7 32 26 71 98680 1295 1331 472 508 54 455 58377 3876 52698 19292 40 4.1 9 9 4000 2000 9 999999999 125 0 0 88 0.2 0 0 +1.94904E7 31 26.5 77 98672 1252 1331 450 759 325 454 86706 23234 52222 19019 69 2 7 7 4000 2000 9 999999999 131 0 0 88 0.2 0 0 +1.9494E7 30 27 84 98663 1135 1331 462 430 57 382 48947 3838 43722 16439 44 0 9 9 4000 750 9 999999999 138 0 0 88 0.2 0 0 +1.94976E7 31 27 79 98672 951 1331 468 343 30 322 38447 1964 36309 13519 303 0 9 9 4000 900 9 999999999 138 0 0 88 0.2 0 0 +1.95012E7 33 26 67 98689 714 1331 479 232 16 224 25795 978 24975 8913 183 0 9 9 4000 1200 9 999999999 125 0 0 88 0.2 0 0 +1.95048E7 33 24 59 98689 440 1331 476 113 5 111 12542 192 12417 4209 20 2.6 9 9 5000 1200 9 999999999 102 0 0 88 0.2 0 0 +1.95084E7 31 27 79 98672 147 1331 468 18 0 18 1722 0 1735 694 162 0 9 9 2500 1200 9 999999999 138 0 0 88 0.2 0 0 +1.9512E7 31 27 79 98672 0 669 468 0 0 0 0 0 0 0 328 0 9 9 2500 1200 9 999999999 138 0 0 88 0.2 0 0 +1.95156E7 31 27 79 98672 0 0 468 0 0 0 0 0 0 0 244 0 9 9 2500 1200 9 999999999 138 0 0 88 0.2 0 0 +1.95192E7 31 27 79 98672 0 0 468 0 0 0 0 0 0 0 205 0 9 9 2500 3000 9 999999999 138 0 0 88 0.2 0 0 +1.95228E7 30.4 27 82 98666 0 0 454 0 0 0 0 0 0 0 239 0 8 8 2600 3000 9 999999999 138 0 0 88 0.2 0 0 +1.95264E7 29.8 27 85 98661 0 0 451 0 0 0 0 0 0 0 55 0 8 8 2700 3000 9 999999999 138 0 0 88 0.2 0 0 +1.953E7 29.2 27 88 98656 0 0 457 0 0 0 0 0 0 0 119 0 9 9 2800 3000 9 999999999 139 0 0 88 0.2 0 0 +1.95336E7 28.6 27 91 98651 0 0 453 0 0 0 0 0 0 0 174 0 9 9 2900 3000 9 999999999 139 0 0 88 0.2 0 0 +1.95372E7 28 27 94 98646 0 0 450 0 0 0 0 0 0 0 182 0 9 9 3000 1200 9 999999999 139 0 0 88 0.2 0 0 +1.95408E7 28 27 94 98646 0 0 450 0 0 0 0 0 0 0 161 0 9 9 3000 1200 9 999999999 139 0 0 88 0.2 0 0 +1.95444E7 28 26 89 98646 0 0 423 0 0 0 0 0 0 0 14 0 5 5 3500 2000 9 999999999 126 0 0 88 0.2 0 0 +1.9548E7 28 26 89 98646 0 0 448 0 0 0 0 0 0 0 240 0 9 9 3500 2000 9 999999999 126 0 0 88 0.2 0 0 +1.95516E7 29 27 89 98654 178 809 456 25 0 25 2417 0 2436 965 205 0 9 9 3500 3000 9 999999999 139 0 0 88 0.2 0 0 +1.95552E7 30 26 79 98663 471 1332 435 226 248 138 24745 10890 15210 5050 183 0 5 5 3500 2000 9 999999999 125 0 0 88 0.2 0 0 +1.95588E7 31 27 79 98672 742 1332 442 441 488 169 50304 24294 19403 7465 50 2.1 5 5 3500 2000 9 999999999 138 0 0 88 0.2 0 0 +1.95624E7 32 26 71 98680 974 1332 446 639 600 200 74786 31864 23595 9653 50 1.5 5 5 3500 3000 9 999999999 125 0 0 88 0.2 0 0 +1.9566E7 31 25 70 98672 1150 1332 439 792 618 259 93432 35934 30716 12434 50 4.1 5 5 4000 2000 9 999999999 113 0 0 88 0.2 0 0 +1.95696E7 33 26 67 98689 1259 1332 452 885 642 279 105199 36116 33369 13444 70 2.1 5 5 5000 2000 9 999999999 125 0 0 88 0.2 0 0 +1.95732E7 33 26 67 98689 1293 1332 452 915 638 296 108705 36460 35369 14153 120 3.6 5 5 5000 2000 9 999999999 125 0 0 88 0.2 0 0 +1.95768E7 34 25 60 98697 1250 1332 457 879 552 361 102386 36271 42345 16310 140 2.6 5 5 5000 2000 9 999999999 113 0 0 88 0.2 0 0 +1.95804E7 35 25 56 98705 1133 1332 490 431 88 356 49441 6009 41146 15689 140 3.1 9 9 5000 3000 9 999999999 112 0 0 88 0.2 0 0 +1.9584E7 33 26 67 98689 949 1332 479 342 30 321 38449 2035 36295 13480 20 4.1 9 9 4000 3000 9 999999999 125 0 0 88 0.2 0 0 +1.95876E7 31 25 70 98672 711 1332 465 231 16 223 25729 1009 24906 8864 360 3.6 9 9 3000 3000 9 999999999 113 0 0 88 0.2 0 0 +1.95912E7 31 25 70 98672 437 1332 465 111 4 110 12354 153 12259 4158 10 3.1 9 9 3000 3000 9 999999999 113 0 0 88 0.2 0 0 +1.95948E7 31 26 75 98672 143 1332 466 17 0 17 1647 0 1659 663 10 2.6 9 9 3200 3000 9 999999999 125 0 0 88 0.2 0 0 +1.95984E7 31 26 75 98672 0 650 466 0 0 0 0 0 0 0 40 1.5 9 9 3200 3000 9 999999999 125 0 0 88 0.2 0 0 +1.9602E7 31 27 79 98672 0 0 468 0 0 0 0 0 0 0 33 0 9 9 3200 3000 9 999999999 138 0 0 88 0.2 0 0 +1.96056E7 30 26 79 98663 0 0 460 0 0 0 0 0 0 0 60 2.1 9 9 3200 3000 9 999999999 125 0 0 88 0.2 0 0 +1.96092E7 30 26 79 98663 0 0 460 0 0 0 0 0 0 0 50 1 9 9 3000 3000 9 999999999 125 0 0 88 0.2 0 0 +1.96128E7 29 26 84 98654 0 0 454 0 0 0 0 0 0 0 50 1 9 9 2800 3000 9 999999999 125 0 0 88 0.2 0 0 +1.96164E7 29 26 84 98654 0 0 429 0 0 0 0 0 0 0 40 1 5 5 2800 2000 9 999999999 125 0 0 88 0.2 0 0 +1.962E7 29 26 84 98654 0 0 429 0 0 0 0 0 0 0 70 1.5 5 5 2800 2000 9 999999999 125 0 0 88 0.2 0 0 +1.96236E7 29 26 84 98654 0 0 429 0 0 0 0 0 0 0 16 0 5 5 2800 2000 9 999999999 125 0 0 88 0.2 0 0 +1.96272E7 29 27 89 98654 0 0 430 0 0 0 0 0 0 0 70 1 5 5 2800 2000 9 999999999 139 0 0 88 0.2 0 0 +1.96308E7 29 27 89 98654 0 0 430 0 0 0 0 0 0 0 145 0 5 5 3000 2000 9 999999999 139 0 0 88 0.2 0 0 +1.96344E7 29 27 89 98654 0 0 430 0 0 0 0 0 0 0 194 0 5 5 3000 2000 9 999999999 139 0 0 88 0.2 0 0 +1.9638E7 29 26 84 98654 176 797 429 45 19 42 4890 0 4624 1428 60 2.1 5 5 3000 2000 9 999999999 125 0 0 88 0.2 0 0 +1.96416E7 31 26 75 98672 469 1332 440 225 273 128 24733 11328 14200 4797 70 1 5 5 3000 2000 9 999999999 125 0 0 88 0.2 0 0 +1.96452E7 30 25 75 98663 741 1332 433 442 493 168 50521 26200 19267 7394 70 2.1 5 5 3500 2000 9 999999999 113 0 0 88 0.2 0 0 +1.96488E7 33 26 67 98689 973 1332 452 638 600 200 74656 31853 23547 9631 60 2.1 5 5 3500 2000 9 999999999 125 0 0 88 0.2 0 0 +1.96524E7 33 27 71 98689 1149 1332 453 789 611 262 92618 33506 30909 12533 352 0 5 5 3500 2000 9 999999999 138 0 0 88 0.2 0 0 +1.9656E7 34 26 63 98697 1258 1332 458 884 642 278 105077 36123 33301 13420 278 0 5 5 3500 2000 9 999999999 124 0 0 88 0.2 0 0 +1.96596E7 35 26 60 98705 1292 1332 464 914 639 295 108578 36470 35258 14115 167 0 5 5 3500 2000 9 999999999 124 0 0 88 0.2 0 0 +1.96632E7 34 25 60 98697 1249 1332 457 877 552 360 102208 36274 42246 16276 300 3.6 5 5 3500 2000 9 999999999 113 0 0 88 0.2 0 0 +1.96668E7 35 26 60 98705 1131 1332 505 262 44 224 31080 2346 26802 11045 20 0 10 10 3500 1200 9 999999999 124 0 0 88 0.2 0 0 +1.96704E7 33 26 67 98689 946 1332 479 341 43 311 38395 2865 35200 13173 160 2.6 9 9 3500 1200 9 999999999 125 0 0 88 0.2 0 0 +1.9674E7 34 27 67 98697 708 1332 486 229 16 221 25402 924 24608 8787 240 1.5 9 9 3500 1200 9 999999999 138 0 0 88 0.2 0 0 +1.96776E7 34 26 63 98697 433 1332 485 110 3 109 12152 111 12091 4104 20 2.1 9 9 3500 1200 9 999999999 124 0 0 88 0.2 0 0 +1.96812E7 32 26 71 98680 139 1332 472 16 0 16 1563 0 1575 631 130 2.1 9 9 3500 1200 9 999999999 125 0 0 88 0.2 0 0 +1.96848E7 31 26 75 98672 0 630 466 0 0 0 0 0 0 0 194 0 9 9 3500 1200 9 999999999 125 0 0 88 0.2 0 0 +1.96884E7 32 27 75 98680 0 0 474 0 0 0 0 0 0 0 19 0 9 9 3500 1200 9 999999999 138 0 0 88 0.2 0 0 +1.9692E7 31 28 84 98672 0 0 469 0 0 0 0 0 0 0 324 0 9 9 4000 1200 9 999999999 153 0 0 88 0.2 0 0 +1.96956E7 31 27 79 98672 0 0 468 0 0 0 0 0 0 0 251 0 9 9 3500 1200 9 999999999 138 0 0 88 0.2 0 0 +1.96992E7 31 27 79 98672 0 0 442 0 0 0 0 0 0 0 156 0 5 5 3500 2000 9 999999999 138 0 0 88 0.2 0 0 +1.97028E7 31 28 84 98672 0 0 443 0 0 0 0 0 0 0 166 0 5 5 3500 2000 9 999999999 153 0 0 88 0.2 0 0 +1.97064E7 30 27 84 98663 0 0 429 0 0 0 0 0 0 0 70 1.5 3 3 3500 2000 9 999999999 138 0 0 88 0.2 0 0 +1.971E7 30 27 84 98663 0 0 429 0 0 0 0 0 0 0 27 0 3 3 3500 2000 9 999999999 138 0 0 88 0.2 0 0 +1.97136E7 29 27 89 98654 0 0 423 0 0 0 0 0 0 0 60 1.5 3 3 3500 2000 9 999999999 139 0 0 88 0.2 0 0 +1.97172E7 29 27 89 98654 0 0 423 0 0 0 0 0 0 0 60 2.6 3 3 3500 2000 9 999999999 139 0 0 88 0.2 0 0 +1.97208E7 29 27 89 98654 0 0 430 0 0 0 0 0 0 0 155 0 5 5 3500 2000 9 999999999 139 0 0 88 0.2 0 0 +1.97244E7 29 27 89 98654 174 786 430 44 15 42 4766 0 4561 1409 60 2.6 5 5 3500 2000 9 999999999 139 0 0 88 0.2 0 0 +1.9728E7 30 26 79 98663 467 1333 435 223 272 128 24572 11217 14149 4775 50 4.1 5 5 3500 2000 9 999999999 125 0 0 88 0.2 0 0 +1.97316E7 31 26 75 98672 740 1333 440 440 490 168 50184 25201 19289 7404 60 5.7 5 5 3500 2000 9 999999999 125 0 0 88 0.2 0 0 +1.97352E7 32 26 71 98680 972 1333 446 637 526 253 73128 31242 29281 11571 60 4.1 5 5 3500 2000 9 999999999 125 0 0 88 0.2 0 0 +1.97388E7 33 26 67 98689 1148 1333 479 438 58 388 49896 4008 44536 16677 60 5.1 9 9 3500 2000 9 999999999 125 0 0 88 0.2 0 0 +1.97424E7 33 26 67 98689 1257 1333 479 490 65 428 56274 4565 49576 18360 70 5.1 9 9 4000 900 9 999999999 125 0 0 88 0.2 0 0 +1.9746E7 34 26 63 98697 1291 1333 485 506 65 443 58249 4595 51352 18933 70 5.1 9 9 4000 900 9 999999999 124 0 0 88 0.2 0 0 +1.97496E7 34 27 67 98697 1247 1333 486 484 65 424 55493 4401 48914 18175 60 3.6 9 9 4000 900 9 999999999 138 0 0 88 0.2 0 0 +1.97532E7 33 25 63 98689 1129 1333 477 429 65 374 48973 4542 43028 16192 110 6.7 9 9 4000 900 9 999999999 113 0 0 88 0.2 0 0 +1.97568E7 31 25 70 98672 944 1333 465 340 30 319 38273 2094 36119 13379 20 7.7 9 9 4000 1200 9 999999999 113 0 0 88 0.2 0 0 +1.97604E7 31 25 70 98672 705 1333 465 229 43 206 25535 2555 23124 8359 40 3.6 9 9 3500 1200 9 999999999 113 0 0 88 0.2 0 0 +1.9764E7 31 27 79 98672 429 1333 468 108 2 107 11943 72 11917 4049 80 1 9 9 3500 1200 9 999999999 138 0 0 88 0.2 0 0 +1.97676E7 29 25 79 98654 134 1333 453 16 0 16 1483 0 1494 598 200 5.1 9 9 2800 1200 9 999999999 114 0 0 88 0.2 0 0 +1.97712E7 28 25 84 98646 0 610 447 0 0 0 0 0 0 0 160 3.1 9 9 2800 1200 0 19999999 114 0 0 88 0.2 0 0 +1.97748E7 26 26 100 98628 0 0 449 0 0 0 0 0 0 0 250 2.1 10 10 2500 600 0 19999999 126 0 0 88 0.2 0 0 +1.97784E7 27 26 94 98637 0 0 442 0 0 0 0 0 0 0 360 2.6 9 9 3000 1050 0 19999999 126 0 0 88 0.2 0 0 +1.9782E7 27 26 94 98637 0 0 442 0 0 0 0 0 0 0 50 2.6 9 9 3000 1200 0 19999999 126 0 0 88 0.2 0 0 +1.97856E7 28 26 89 98646 0 0 448 0 0 0 0 0 0 0 120 2.1 9 9 3000 1200 0 19999999 126 0 0 88 0.2 0 0 +1.97892E7 28 27 94 98646 0 0 450 0 0 0 0 0 0 0 50 1 9 9 3000 1200 0 19999999 139 0 0 88 0.2 0 0 +1.97928E7 28 26 89 98646 0 0 448 0 0 0 0 0 0 0 60 1.5 9 9 3000 1200 0 19999999 126 0 0 88 0.2 0 0 +1.97964E7 28 27 94 98646 0 0 450 0 0 0 0 0 0 0 238 0 9 9 3000 1200 0 19999999 139 0 0 88 0.2 0 0 +1.98E7 28 27 94 98646 0 0 450 0 0 0 0 0 0 0 150 0 9 9 3000 1200 0 19999999 139 0 0 88 0.2 0 0 +1.98036E7 28 27 94 98646 0 0 424 0 0 0 0 0 0 0 40 1.5 5 5 3000 2000 0 19999999 139 0 0 88 0.2 0 0 +1.98072E7 28 27 94 98646 0 0 424 0 0 0 0 0 0 0 70 1.5 5 5 3000 2000 9 999999999 139 0 0 88 0.2 0 0 +1.98108E7 28 27 94 98646 172 774 450 24 0 24 2261 0 2278 903 40 1.5 9 9 3500 2000 9 999999999 139 0 0 88 0.2 0 0 +1.98144E7 29 27 89 98654 466 1333 456 123 11 119 13585 392 13239 4540 60 2.6 9 9 3500 3000 9 999999999 139 0 0 88 0.2 0 0 +1.9818E7 30 27 84 98663 738 1333 462 243 17 234 26937 1007 26054 9350 60 3.6 9 9 2500 1200 9 999999999 138 0 0 88 0.2 0 0 +1.98216E7 31 28 84 98672 971 1333 469 351 43 320 39462 2722 36196 13627 150 2.6 9 9 3000 3000 9 999999999 153 0 0 88 0.2 0 0 +1.98252E7 32 28 79 98680 1147 1333 489 266 9 258 31165 461 30468 12396 50 1 10 10 3000 1200 0 919999999 153 0 0 88 0.2 0 0 +1.98288E7 33 28 75 98689 1256 1333 482 488 84 408 56024 5416 47257 17784 160 2.1 9 9 4000 900 0 919999999 152 0 0 88 0.2 0 0 +1.98324E7 33 27 71 98689 1289 1333 494 308 13 295 36491 722 35224 14120 160 2.1 10 10 3500 900 0 919999999 138 0 0 88 0.2 0 0 +1.9836E7 30 26 79 98663 1245 1333 473 295 7 289 34919 394 34384 13780 310 4.1 10 10 3000 600 0 919999999 125 0 0 88 0.2 0 0 +1.98396E7 29 25 79 98654 1126 1333 466 261 6 256 30691 370 30242 12250 340 3.6 10 10 3000 600 0 919999999 114 0 0 88 0.2 0 0 +1.98432E7 29 27 89 98654 941 1333 468 206 4 204 23935 183 23777 9635 20 1.5 10 10 3000 600 0 919999999 139 0 0 88 0.2 0 0 +1.98468E7 29 26 84 98654 702 1333 454 227 47 202 25314 2688 22674 8227 136 0 9 9 3000 600 0 919999999 125 0 0 88 0.2 0 0 +1.98504E7 29 26 84 98654 425 1333 454 107 2 106 11823 60 11811 4001 50 1.5 9 9 3000 900 0 919999999 125 0 0 88 0.2 0 0 +1.9854E7 29 27 89 98654 130 1333 456 15 0 15 1394 0 1404 565 360 2.1 9 9 3000 900 0 919999999 139 0 0 88 0.2 0 0 +1.98576E7 29 26 84 98654 0 589 454 0 0 0 0 0 0 0 360 1 9 9 3000 900 0 919999999 125 0 0 88 0.2 0 0 +1.98612E7 29 27 89 98654 0 0 456 0 0 0 0 0 0 0 340 2.1 9 9 3000 900 0 919999999 139 0 0 88 0.2 0 0 +1.98648E7 28 26 89 98646 0 0 448 0 0 0 0 0 0 0 70 3.1 9 9 3000 900 0 919999999 126 0 0 88 0.2 0 0 +1.98684E7 28 27 94 98646 0 0 450 0 0 0 0 0 0 0 70 1.5 9 9 3000 900 0 919999999 139 0 0 88 0.2 0 0 +1.9872E7 28 27 94 98646 0 0 450 0 0 0 0 0 0 0 140 0 9 9 3000 900 0 919999999 139 0 0 88 0.2 0 0 +1.98756E7 28 27 94 98646 0 0 450 0 0 0 0 0 0 0 50 2.6 9 9 3000 900 0 919999999 139 0 0 88 0.2 0 0 +1.98792E7 28 27 94 98646 0 0 450 0 0 0 0 0 0 0 250 0 9 9 2800 900 0 919999999 139 0 0 88 0.2 0 0 +1.98828E7 28 27 94 98646 0 0 450 0 0 0 0 0 0 0 145 0 9 9 2400 3000 0 919999999 139 0 0 88 0.2 0 0 +1.98864E7 28 27 94 98646 0 0 450 0 0 0 0 0 0 0 240 1.5 9 9 2100 3000 0 919999999 139 0 0 88 0.2 0 0 +1.989E7 27 26 94 98637 0 0 442 0 0 0 0 0 0 0 240 1.5 9 9 1500 3000 0 919999999 126 0 0 88 0.2 0 0 +1.98936E7 27 27 100 98637 0 0 456 0 0 0 0 0 0 0 260 1.5 10 10 1700 3000 9 999999999 139 0 0 88 0.2 0 0 +1.98972E7 27 26 94 98637 169 763 455 14 0 14 1353 0 1364 572 260 2.6 10 10 2000 600 9 999999999 126 0 0 88 0.2 0 0 +1.99008E7 28 27 94 98646 464 1334 462 75 0 75 7287 0 7350 3151 200 2.6 10 10 2000 600 9 999999999 139 0 0 88 0.2 0 0 +1.99044E7 28 27 94 98646 737 1334 462 148 0 148 14790 0 14930 6673 135 0 10 10 2500 900 9 999999999 139 0 0 88 0.2 0 0 +1.9908E7 30 22 62 98663 969 1334 455 354 87 291 40473 6104 33481 12776 270 2.1 9 9 3500 900 9 999999999 84 0 0 88 0.2 0 0 +1.99116E7 31 27 79 98672 1146 1334 442 786 566 300 91229 33224 35039 13906 250 1.5 5 5 3500 2000 9 999999999 138 0 0 88 0.2 0 0 +1.99152E7 32 27 75 98680 1255 1334 447 880 546 366 102072 34116 42821 16496 270 3.1 5 5 3500 2000 9 999999999 138 0 0 88 0.2 0 0 +1.99188E7 32 27 75 98680 1288 1334 474 504 85 422 58088 5667 48990 18322 250 1.5 9 9 3500 1200 9 999999999 138 0 0 88 0.2 0 0 +1.99224E7 30.5 27 82 98667 1243 1334 455 668 333 358 77586 20661 41841 16182 2 1.3 8 8 3250 1200 9 999999999 138 0 0 88 0.2 0 0 +1.9926E7 29 27 89 98654 1124 1334 456 425 57 377 48337 3836 43169 16250 30 1.2 9 9 3000 900 9 999999999 139 0 0 88 0.2 0 0 +1.99296E7 30 28 89 98663 938 1334 463 336 29 316 37599 1873 35526 13229 50 1 9 9 3000 900 9 999999999 153 0 0 88 0.2 0 0 +1.99332E7 30 27 84 98663 699 1334 462 225 42 203 25040 2319 22729 8231 40 1.5 9 9 3000 1200 9 999999999 138 0 0 88 0.2 0 0 +1.99368E7 30 26 79 98663 421 1334 460 105 1 105 11661 38 11672 3949 60 2.1 9 9 3000 1200 9 999999999 125 0 0 88 0.2 0 0 +1.99404E7 30 26 79 98663 125 1334 460 14 0 14 1317 0 1327 534 60 1 9 9 3000 1200 9 999999999 125 0 0 88 0.2 0 0 +1.9944E7 29 26 84 98654 0 568 454 0 0 0 0 0 0 0 140 1.5 9 9 3000 1200 9 999999999 125 0 0 88 0.2 0 0 +1.99476E7 29 27 89 98654 0 0 456 0 0 0 0 0 0 0 160 2.1 9 9 2500 1200 9 999999999 139 0 0 88 0.2 0 0 +1.99512E7 29 26 84 98654 0 0 454 0 0 0 0 0 0 0 160 2.1 9 9 3000 1200 9 999999999 125 0 0 88 0.2 0 0 +1.99548E7 29 26 84 98654 0 0 454 0 0 0 0 0 0 0 170 2.6 9 9 3000 1200 9 999999999 125 0 0 88 0.2 0 0 +1.99584E7 29 27 89 98654 0 0 456 0 0 0 0 0 0 0 199 0 9 9 2500 3000 9 999999999 139 0 0 88 0.2 0 0 +1.9962E7 28.7 26.7 89 98651 0 0 453 0 0 0 0 0 0 0 18 0.3 9 9 2666 3000 9 999999999 135 0 0 88 0.2 0 0 +1.99656E7 28.3 26.3 89 98648 0 0 450 0 0 0 0 0 0 0 216 0.7 9 9 2833 3000 9 999999999 129 0 0 88 0.2 0 0 +1.99692E7 28 26 89 98646 0 0 423 0 0 0 0 0 0 0 220 1 5 5 3000 2000 9 999999999 126 0 0 88 0.2 0 0 +1.99728E7 28 26 89 98646 0 0 423 0 0 0 0 0 0 0 200 2.1 5 5 3000 2000 9 999999999 126 0 0 88 0.2 0 0 +1.99764E7 28 26 89 98646 0 0 423 0 0 0 0 0 0 0 250 2.1 5 5 3000 2000 9 999999999 126 0 0 88 0.2 0 0 +1.998E7 28 26 89 98646 0 0 423 0 0 0 0 0 0 0 220 3.1 5 5 3000 2000 9 999999999 126 0 0 88 0.2 0 0 +1.99836E7 28 26 89 98646 167 751 423 41 7 40 4480 0 4392 1351 240 3.1 5 5 3000 2000 9 999999999 126 0 0 88 0.2 0 0 +1.99872E7 29 25 79 98654 462 1334 428 220 272 126 24256 11512 13960 4694 250 5.1 5 5 3000 2000 9 999999999 114 0 0 88 0.2 0 0 +1.99908E7 29 25 79 98654 735 1334 428 437 493 166 49982 26070 19070 7304 260 5.1 5 5 3000 2000 9 999999999 114 0 0 88 0.2 0 0 +1.99944E7 31 25 70 98672 968 1334 439 635 604 197 74441 32975 23225 9487 250 5.1 5 5 3500 2000 9 999999999 113 0 0 88 0.2 0 0 +1.9998E7 31 25 70 98672 1145 1334 439 787 620 256 92851 35965 30325 12292 250 7.7 5 5 3500 2000 9 999999999 113 0 0 88 0.2 0 0 +2.00016E7 32 27 75 98680 1254 1334 447 878 639 278 104131 34847 33221 13406 240 3.1 5 5 3500 2000 9 999999999 138 0 0 88 0.2 0 0 +2.00052E7 33 26 67 98689 1287 1334 452 909 641 291 107980 36493 34821 13960 260 5.7 5 5 3500 2000 9 999999999 125 0 0 88 0.2 0 0 +2.00088E7 33 26 67 98689 1242 1334 452 870 644 271 103297 36019 32445 13111 260 4.1 5 5 3500 2000 9 999999999 125 0 0 88 0.2 0 0 +2.00124E7 34 26 63 98697 1122 1334 458 766 617 248 90153 34474 29297 11933 260 5.1 5 5 3500 2000 9 999999999 124 0 0 88 0.2 0 0 +2.0016E7 34 26 63 98697 936 1334 458 606 594 190 70797 31141 22276 9073 250 5.1 5 5 3500 2000 9 999999999 124 0 0 88 0.2 0 0 +2.00196E7 35 26 60 98705 695 1334 464 404 468 160 45860 23557 18243 6899 250 5.1 5 5 3500 2000 9 999999999 124 0 0 88 0.2 0 0 +2.00232E7 33 25 63 98689 417 1334 451 188 240 113 20653 8933 12442 4120 250 3.6 5 5 3500 2000 9 999999999 113 0 0 88 0.2 0 0 +2.00268E7 32 26 71 98680 121 1334 446 23 0 23 2227 0 2244 823 320 1.5 5 5 3000 2000 9 999999999 125 0 0 88 0.2 0 0 +2.00304E7 28 26 89 98646 0 547 448 0 0 0 0 0 0 0 260 2.6 9 9 3000 3000 9 999999999 126 0 0 88 0.2 0 0 +2.0034E7 27 24 84 98637 0 0 452 0 0 0 0 0 0 0 250 2.1 10 10 3000 1200 0 919999999 103 0 0 88 0.2 0 0 +2.00376E7 28 24 79 98646 0 0 458 0 0 0 0 0 0 0 240 2.1 10 10 4000 1200 0 919999999 103 0 0 88 0.2 0 0 +2.00412E7 27 24 84 98637 0 0 452 0 0 0 0 0 0 0 193 0 10 10 4000 1200 0 919999999 103 0 0 88 0.2 0 0 +2.00448E7 27 23 79 98637 0 0 451 0 0 0 0 0 0 0 200 2.6 10 10 4000 1200 0 919999999 93 0 0 88 0.2 0 0 +2.00484E7 27 24 84 98637 0 0 452 0 0 0 0 0 0 0 103 0 10 10 4000 1200 0 919999999 103 0 0 88 0.2 0 0 +2.0052E7 27 24 84 98637 0 0 452 0 0 0 0 0 0 0 200 2.6 10 10 4000 1200 0 919999999 103 0 0 88 0.2 0 0 +2.00556E7 28 24 79 98646 0 0 421 0 0 0 0 0 0 0 210 2.6 5 5 4000 1200 0 919999999 103 0 0 88 0.2 0 0 +2.00592E7 27 25 89 98637 0 0 416 0 0 0 0 0 0 0 240 2.1 5 5 4000 2000 0 919999999 114 0 0 88 0.2 0 0 +2.00628E7 27 24 84 98637 0 0 415 0 0 0 0 0 0 0 220 2.1 5 5 4000 2000 0 919999999 103 0 0 88 0.2 0 0 +2.00664E7 27 24 84 98637 0 0 415 0 0 0 0 0 0 0 220 2.1 5 5 4000 2000 9 999999999 103 0 0 88 0.2 0 0 +2.007E7 27 25 89 98637 165 740 416 40 5 40 4393 0 4341 1331 270 2.6 5 5 4000 2000 9 999999999 114 0 0 88 0.2 0 0 +2.00736E7 28 25 84 98646 460 1335 422 219 271 125 24122 11431 13896 4669 260 2.6 5 5 3500 2000 9 999999999 114 0 0 88 0.2 0 0 +2.00772E7 29 25 79 98654 734 1335 428 436 493 166 49854 26043 19013 7279 250 2.6 5 5 3500 2000 9 999999999 114 0 0 88 0.2 0 0 +2.00808E7 31 25 70 98672 967 1335 439 634 604 196 74322 32975 23157 9458 260 3.6 5 5 3500 2000 9 999999999 113 0 0 88 0.2 0 0 +2.00844E7 32 26 71 98680 1144 1335 446 785 618 256 92393 34790 30366 12321 250 5.1 5 5 3500 2000 9 999999999 125 0 0 88 0.2 0 0 +2.0088E7 32 26 71 98680 1252 1335 446 879 644 275 104415 36157 32916 13281 250 4.1 5 5 4000 2000 9 999999999 125 0 0 88 0.2 0 0 +2.00916E7 33 27 71 98689 1285 1335 453 906 545 382 105182 34403 44671 17101 250 2.6 5 5 4000 2000 9 999999999 138 0 0 88 0.2 0 0 +2.00952E7 34 25 60 98697 1240 1335 484 482 86 402 55625 6018 46748 17530 260 5.1 9 9 4000 2000 9 999999999 113 0 0 88 0.2 0 0 +2.00988E7 34 26 63 98697 1120 1335 485 424 64 370 48299 4400 42455 16021 260 2.1 9 9 3500 1200 9 999999999 124 0 0 88 0.2 0 0 +2.01024E7 34 26 63 98697 933 1335 485 335 30 314 37552 2016 35452 13130 250 5.7 9 9 4000 3000 9 999999999 124 0 0 88 0.2 0 0 +2.0106E7 35 26 60 98705 692 1335 491 222 46 198 24809 2628 22250 8048 250 4.1 9 9 4500 1200 9 999999999 124 0 0 88 0.2 0 0 +2.01096E7 34 25 60 98697 413 1335 457 185 238 111 20346 8711 12315 4071 330 3.1 5 5 4500 1200 9 999999999 113 0 0 88 0.2 0 0 +2.01132E7 34 25 60 98697 116 1335 457 22 0 22 2091 0 2107 775 300 2.6 5 5 4500 2000 9 999999999 113 0 0 88 0.2 0 0 +2.01168E7 32 27 75 98680 0 525 447 0 0 0 0 0 0 0 250 2.6 5 5 3000 2000 9 999999999 138 0 0 88 0.2 0 0 +2.01204E7 29 24 74 98654 0 0 426 0 0 0 0 0 0 0 278 0 5 5 3000 2000 9 999999999 103 0 0 88 0.2 0 0 +2.0124E7 29 23 70 98654 0 0 425 0 0 0 0 0 0 0 246 0 5 5 3000 2000 9 999999999 93 0 0 88 0.2 0 0 +2.01276E7 29 23 70 98654 0 0 425 0 0 0 0 0 0 0 160 1.5 5 5 3000 2000 9 999999999 93 0 0 88 0.2 0 0 +2.01312E7 29 24 74 98654 0 0 426 0 0 0 0 0 0 0 120 1 5 5 3000 2000 9 999999999 103 0 0 88 0.2 0 0 +2.01348E7 29 23 70 98654 0 0 450 0 0 0 0 0 0 0 40 0 9 9 3000 2000 9 999999999 93 0 0 88 0.2 0 0 +2.01384E7 24 22 89 98610 0 0 432 0 0 0 0 0 0 0 60 3.1 10 10 2500 1200 0 19999999 85 0 0 88 0.2 0 0 +2.0142E7 25 23 89 98619 0 0 439 0 0 0 0 0 0 0 250 4.1 10 10 2000 600 0 19999999 94 0 0 88 0.2 0 0 +2.01456E7 25 24 94 98619 0 0 440 0 0 0 0 0 0 0 150 3.6 10 10 2500 600 0 19999999 103 0 0 88 0.2 0 0 +2.01492E7 26 23 84 98628 0 0 445 0 0 0 0 0 0 0 350 5.1 10 10 2500 600 0 19999999 93 0 0 88 0.2 0 0 +2.01528E7 26 24 89 98628 0 0 446 0 0 0 0 0 0 0 10 2.6 10 10 3000 600 0 919999999 103 0 0 88 0.2 0 0 +2.01564E7 26 24 89 98628 162 728 446 13 0 13 1273 0 1283 536 340 5.1 10 10 2000 600 0 919999999 103 0 0 88 0.2 0 0 +2.016E7 25 24 94 98619 458 1336 440 74 0 74 7242 0 7303 3106 310 8.7 10 10 800 600 0 919999999 103 0 0 88 0.2 0 0 +2.01636E7 27 24 84 98637 732 1336 452 147 0 147 14828 0 14966 6638 310 2.6 10 10 3000 600 0 919999999 103 0 0 88 0.2 0 0 +2.01672E7 28 25 84 98646 966 1336 447 351 44 319 39586 3038 36243 13547 250 5.1 9 9 3000 600 0 919999999 114 0 0 88 0.2 0 0 +2.01708E7 29 23 70 98654 1143 1336 450 437 59 386 50007 4398 44532 16597 260 5.1 9 9 3000 1200 0 919999999 93 0 0 88 0.2 0 0 +2.01744E7 30 23 66 98663 1251 1336 469 298 15 285 35504 900 34100 13638 320 1 10 10 4000 1200 0 919999999 93 0 0 88 0.2 0 0 +2.0178E7 30 25 75 98663 1283 1336 459 503 86 420 58180 6071 48956 18253 340 1.5 9 9 3500 1200 0 919999999 113 0 0 88 0.2 0 0 +2.01816E7 31 26 75 98672 1238 1336 440 866 551 356 100674 35205 41653 16091 291 0 5 5 4000 2000 0 919999999 125 0 0 88 0.2 0 0 +2.01852E7 33 24 59 98689 1117 1336 449 765 625 242 90325 36760 28751 11707 315 2.1 5 5 4000 2000 0 919999999 102 0 0 88 0.2 0 0 +2.01888E7 33 23 56 98689 930 1336 441 641 732 132 77256 36819 15945 6648 310 3.1 3 3 4500 2000 0 919999999 92 0 0 88 0.2 0 0 +2.01924E7 33 24 59 98689 688 1336 442 424 533 149 48475 27696 17166 6513 310 3.1 3 3 4500 2000 0 919999999 102 0 0 88 0.2 0 0 +2.0196E7 33 24 59 98689 409 1336 449 182 227 113 20055 8744 12471 4084 320 3.1 5 5 4500 2000 0 919999999 102 0 0 88 0.2 0 0 +2.01996E7 32 25 67 98680 111 1336 445 21 0 21 2009 0 2024 743 360 1.5 5 5 4000 2000 0 919999999 113 0 0 88 0.2 0 0 +2.02032E7 31 25 70 98672 0 503 439 0 0 0 0 0 0 0 265 0 5 5 4000 2000 0 919999999 113 0 0 88 0.2 0 0 +2.02068E7 31 27 79 98672 0 0 442 0 0 0 0 0 0 0 20 1 5 5 4000 2000 0 919999999 138 0 0 88 0.2 0 0 +2.02104E7 31 26 75 98672 0 0 440 0 0 0 0 0 0 0 50 1 5 5 4000 2000 0 919999999 125 0 0 88 0.2 0 0 +2.0214E7 30 26 79 98663 0 0 435 0 0 0 0 0 0 0 30 1 5 5 4000 2000 0 919999999 125 0 0 88 0.2 0 0 +2.02176E7 30 27 84 98663 0 0 436 0 0 0 0 0 0 0 240 0 5 5 4000 2000 0 919999999 138 0 0 88 0.2 0 0 +2.02212E7 30 27 84 98663 0 0 436 0 0 0 0 0 0 0 265 0 5 5 3000 2000 0 919999999 138 0 0 88 0.2 0 0 +2.02248E7 29 25 79 98654 0 0 428 0 0 0 0 0 0 0 70 1 5 5 2500 2000 0 919999999 114 0 0 88 0.2 0 0 +2.02284E7 29 26 84 98654 0 0 429 0 0 0 0 0 0 0 70 2.1 5 5 2800 2000 0 919999999 125 0 0 88 0.2 0 0 +2.0232E7 29 26 84 98654 0 0 429 0 0 0 0 0 0 0 60 1 5 5 3000 2000 0 919999999 125 0 0 88 0.2 0 0 +2.02356E7 28 26 89 98646 0 0 423 0 0 0 0 0 0 0 60 1 5 5 3000 2000 0 919999999 126 0 0 88 0.2 0 0 +2.02392E7 28 27 94 98646 0 0 450 0 0 0 0 0 0 0 70 1 9 9 3000 2000 9 999999999 139 0 0 88 0.2 0 0 +2.02428E7 28 27 94 98646 160 717 450 21 0 21 2023 0 2039 810 100 1 9 9 3000 3000 9 999999999 139 0 0 88 0.2 0 0 +2.02464E7 29 27 89 98654 456 1336 456 120 8 117 13214 288 12972 4428 50 2.1 9 9 3000 3000 9 999999999 139 0 0 88 0.2 0 0 +2.025E7 30 26 79 98663 731 1336 460 240 17 231 26675 1041 25795 9212 60 2.6 9 9 3000 3000 9 999999999 125 0 0 88 0.2 0 0 +2.02536E7 30 26 79 98663 964 1336 460 350 27 330 39274 1860 37332 13833 60 4.1 9 9 3000 3000 9 999999999 125 0 0 88 0.2 0 0 +2.02572E7 31 26 75 98672 1141 1336 466 434 88 359 49751 5873 41431 15800 70 3.1 9 9 3000 3000 9 999999999 125 0 0 88 0.2 0 0 +2.02608E7 30 25 75 98663 1250 1336 433 878 555 359 102267 36450 42156 16244 60 5.1 5 5 3500 3000 9 999999999 113 0 0 88 0.2 0 0 +2.02644E7 31 25 70 98672 1282 1336 439 906 553 376 105620 36715 44103 16885 50 6.2 5 5 4000 2000 9 999999999 113 0 0 88 0.2 0 0 +2.0268E7 30 26 79 98663 1236 1336 460 480 86 400 55195 5827 46428 17448 60 4.1 9 9 4500 1200 9 999999999 125 0 0 88 0.2 0 0 +2.02716E7 31 26 75 98672 1115 1336 466 422 64 368 48006 4399 42193 15932 70 3.6 9 9 4500 1200 9 999999999 125 0 0 88 0.2 0 0 +2.02752E7 31 26 75 98672 927 1336 466 332 43 302 37306 2833 34207 12757 30 2.6 9 9 4500 1200 9 999999999 125 0 0 88 0.2 0 0 +2.02788E7 31 26 75 98672 684 1336 480 134 0 134 13342 0 13465 5950 50 3.6 10 10 4500 1200 0 19999999 125 0 0 88 0.2 0 0 +2.02824E7 27 26 94 98637 405 1336 455 61 0 61 5901 0 5950 2524 30 4.1 10 10 3000 600 0 19999999 126 0 0 88 0.2 0 0 +2.0286E7 27 26 94 98637 107 1336 455 7 0 7 650 0 654 275 30 2.1 10 10 3000 600 0 19999999 126 0 0 88 0.2 0 0 +2.02896E7 26 25 94 98628 0 481 435 0 0 0 0 0 0 0 40 3.6 9 9 3000 600 0 19999999 114 0 0 88 0.2 0 0 +2.02932E7 27 26 94 98637 0 0 442 0 0 0 0 0 0 0 30 2.1 9 9 3000 1200 0 19999999 126 0 0 88 0.2 0 0 +2.02968E7 27 26 94 98637 0 0 442 0 0 0 0 0 0 0 27 0 9 9 3000 1200 0 19999999 126 0 0 88 0.2 0 0 +2.03004E7 27 26 94 98637 0 0 442 0 0 0 0 0 0 0 40 2.1 9 9 3000 1200 0 19999999 126 0 0 88 0.2 0 0 +2.0304E7 27 26 94 98637 0 0 442 0 0 0 0 0 0 0 50 2.1 9 9 3500 1200 0 19999999 126 0 0 88 0.2 0 0 +2.03076E7 27 26 94 98637 0 0 442 0 0 0 0 0 0 0 63 0 9 9 3500 1200 0 19999999 126 0 0 88 0.2 0 0 +2.03112E7 27 26 94 98637 0 0 442 0 0 0 0 0 0 0 218 0 9 9 3500 1200 0 19999999 126 0 0 88 0.2 0 0 +2.03148E7 27 26 94 98637 0 0 442 0 0 0 0 0 0 0 40 1.5 9 9 3500 1200 0 19999999 126 0 0 88 0.2 0 0 +2.03184E7 27 26 94 98637 0 0 442 0 0 0 0 0 0 0 360 1.5 9 9 4000 1200 0 19999999 126 0 0 88 0.2 0 0 +2.0322E7 27 26 94 98637 0 0 442 0 0 0 0 0 0 0 20 1.5 9 9 4000 1200 0 19999999 126 0 0 88 0.2 0 0 +2.03256E7 27 26 94 98637 0 0 455 0 0 0 0 0 0 0 20 2.1 10 10 4000 1200 0 919999999 126 0 0 88 0.2 0 0 +2.03292E7 27 26 94 98637 158 706 455 13 0 13 1209 0 1218 511 360 2.1 10 10 3500 600 0 919999999 126 0 0 88 0.2 0 0 +2.03328E7 26 25 94 98628 455 1337 447 73 0 73 7138 0 7198 3064 360 1.5 10 10 3500 600 0 919999999 114 0 0 88 0.2 0 0 +2.03364E7 27 25 89 98637 729 1337 453 146 0 146 14698 0 14835 6587 30 2.1 10 10 3500 600 0 919999999 114 0 0 88 0.2 0 0 +2.034E7 27 25 89 98637 963 1337 453 213 4 210 24863 237 24644 9969 360 2.6 10 10 3500 600 0 919999999 114 0 0 88 0.2 0 0 +2.03436E7 28 26 89 98646 1140 1337 461 264 6 259 31079 367 30616 12404 10 3.1 10 10 3500 600 0 919999999 126 0 0 88 0.2 0 0 +2.03472E7 28 26 89 98646 1248 1337 461 296 7 290 35010 396 34473 13810 340 3.1 10 10 3500 600 0 919999999 126 0 0 88 0.2 0 0 +2.03508E7 28 25 84 98646 1280 1337 460 306 13 294 36349 767 35099 14030 360 4.1 10 10 3500 1200 0 919999999 114 0 0 88 0.2 0 0 +2.03544E7 29 27 89 98654 1234 1337 456 478 54 428 54581 3731 49235 18199 360 3.1 9 9 3000 900 0 919999999 139 0 0 88 0.2 0 0 +2.0358E7 29 26 84 98654 1112 1337 454 420 58 372 47794 3976 42639 16041 350 3.1 9 9 3500 900 0 919999999 125 0 0 88 0.2 0 0 +2.03616E7 29 27 89 98654 923 1337 468 201 24 185 23464 1179 21683 8835 360 2.1 10 10 3500 900 0 19999999 139 0 0 88 0.2 0 0 +2.03652E7 26 25 94 98628 681 1337 447 133 0 133 13281 0 13403 5905 30 2.6 10 10 3000 900 0 19999999 114 0 0 88 0.2 0 0 +2.03688E7 26 25 94 98628 400 1337 447 60 0 60 5823 0 5872 2483 30 4.1 10 10 3000 900 0 19999999 114 0 0 88 0.2 0 0 +2.03724E7 26 25 94 98628 102 1337 435 11 0 11 1020 0 1028 413 50 2.6 9 9 3000 900 0 19999999 114 0 0 88 0.2 0 0 +2.0376E7 26 25 94 98628 0 458 435 0 0 0 0 0 0 0 50 2.1 9 9 3000 1200 0 19999999 114 0 0 88 0.2 0 0 +2.03796E7 26 25 94 98628 0 0 411 0 0 0 0 0 0 0 30 1 5 5 3000 1200 0 19999999 114 0 0 88 0.2 0 0 +2.03832E7 26 25 94 98628 0 0 435 0 0 0 0 0 0 0 20 1 9 9 3000 1050 0 19999999 114 0 0 88 0.2 0 0 +2.03868E7 26 25 94 98628 0 0 411 0 0 0 0 0 0 0 281 0 5 5 2300 1050 0 19999999 114 0 0 88 0.2 0 0 +2.03904E7 26 25 94 98628 0 0 411 0 0 0 0 0 0 0 20 3.1 5 5 3000 2000 0 19999999 114 0 0 88 0.2 0 0 +2.0394E7 26 25 94 98628 0 0 411 0 0 0 0 0 0 0 20 3.1 5 5 3000 2000 0 19999999 114 0 0 88 0.2 0 0 +2.03976E7 26 25 94 98628 0 0 411 0 0 0 0 0 0 0 30 2.6 5 5 3000 2000 0 19999999 114 0 0 88 0.2 0 0 +2.04012E7 26 25 94 98628 0 0 447 0 0 0 0 0 0 0 50 4.1 10 10 3000 1050 0 19999999 114 0 0 88 0.2 0 0 +2.04048E7 26 25 94 98628 0 0 447 0 0 0 0 0 0 0 50 3.1 10 10 3000 900 0 19999999 114 0 0 88 0.2 0 0 +2.04084E7 26 26 100 98628 0 0 449 0 0 0 0 0 0 0 50 2.6 10 10 3000 900 0 19999999 126 0 0 88 0.2 0 0 +2.0412E7 26 25 94 98628 0 0 447 0 0 0 0 0 0 0 40 3.1 10 10 3000 900 9 999999999 114 0 0 88 0.2 0 0 +2.04156E7 26 24 89 98628 155 695 446 12 0 12 1187 0 1196 500 20 3.6 10 10 3000 900 9 999999999 103 0 0 88 0.2 0 0 +2.04192E7 26 25 94 98628 453 1337 447 72 0 72 7097 0 7157 3045 20 2.1 10 10 3000 900 9 999999999 114 0 0 88 0.2 0 0 +2.04228E7 26 25 94 98628 728 1337 447 146 0 146 14657 0 14794 6565 20 2.6 10 10 1400 600 9 999999999 114 0 0 88 0.2 0 0 +2.04264E7 26 25 94 98628 962 1337 447 213 4 210 24816 236 24599 9948 30 2.6 10 10 2500 600 0 919999999 114 0 0 88 0.2 0 0 +2.043E7 26 25 94 98628 1139 1337 447 264 9 257 31141 508 30451 12329 60 1 10 10 2500 600 0 919999999 114 0 0 88 0.2 0 0 +2.04336E7 28 26 89 98646 1247 1337 448 485 55 434 55514 3876 50054 18431 40 3.1 9 9 2800 600 0 919999999 126 0 0 88 0.2 0 0 +2.04372E7 30 26 79 98663 1278 1337 460 500 66 437 57473 4618 50637 18691 50 3.1 9 9 2800 600 0 919999999 125 0 0 88 0.2 0 0 +2.04408E7 30 26 79 98663 1231 1337 460 478 66 417 54739 4573 48182 17897 20 4.1 9 9 2800 600 0 919999999 125 0 0 88 0.2 0 0 +2.04444E7 28 27 94 98646 1109 1337 450 418 64 365 47535 4243 41809 15827 20 3.6 9 9 2800 600 0 919999999 139 0 0 88 0.2 0 0 +2.0448E7 29 26 84 98654 920 1337 454 329 43 300 36954 2822 33887 12622 20 4.1 9 9 3000 600 0 919999999 125 0 0 88 0.2 0 0 +2.04516E7 28 26 89 98646 677 1337 461 132 0 132 13129 0 13250 5845 50 4.1 10 10 3000 600 0 919999999 126 0 0 88 0.2 0 0 +2.04552E7 28 26 89 98646 396 1337 461 59 0 59 5705 0 5753 2436 20 4.6 10 10 3000 600 0 919999999 126 0 0 88 0.2 0 0 +2.04588E7 28 26 89 98646 97 1337 461 6 0 6 591 0 596 249 30 3.6 10 10 3000 600 0 919999999 126 0 0 88 0.2 0 0 +2.04624E7 28 26 89 98646 0 435 461 0 0 0 0 0 0 0 50 3.6 10 10 3000 600 0 919999999 126 0 0 88 0.2 0 0 +2.0466E7 28 26 89 98646 0 0 461 0 0 0 0 0 0 0 40 2.6 10 10 3000 600 0 919999999 126 0 0 88 0.2 0 0 +2.04696E7 27 26 94 98637 0 0 455 0 0 0 0 0 0 0 40 2.1 10 10 3500 600 0 919999999 126 0 0 88 0.2 0 0 +2.04732E7 27 25 89 98637 0 0 453 0 0 0 0 0 0 0 60 2.6 10 10 3500 600 0 919999999 114 0 0 88 0.2 0 0 +2.04768E7 27 26 94 98637 0 0 455 0 0 0 0 0 0 0 50 1 10 10 3500 600 0 919999999 126 0 0 88 0.2 0 0 +2.04804E7 27 25 89 98637 0 0 453 0 0 0 0 0 0 0 60 2.6 10 10 3500 600 0 919999999 114 0 0 88 0.2 0 0 +2.0484E7 27 25 89 98637 0 0 441 0 0 0 0 0 0 0 40 2.6 9 9 3500 600 0 919999999 114 0 0 88 0.2 0 0 +2.04876E7 27 25 89 98637 0 0 441 0 0 0 0 0 0 0 50 1.5 9 9 3500 600 0 919999999 114 0 0 88 0.2 0 0 +2.04912E7 26 25 94 98628 0 0 435 0 0 0 0 0 0 0 30 1.5 9 9 3500 600 0 919999999 114 0 0 88 0.2 0 0 +2.04948E7 27 25 89 98637 0 0 441 0 0 0 0 0 0 0 20 1.5 9 9 3500 600 0 919999999 114 0 0 88 0.2 0 0 +2.04984E7 26 25 94 98628 0 0 435 0 0 0 0 0 0 0 20 1.5 9 9 3500 600 9 999999999 114 0 0 88 0.2 0 0 +2.0502E7 26 25 94 98628 153 683 435 20 0 20 1896 0 1910 757 40 2.1 9 9 2800 600 9 999999999 114 0 0 88 0.2 0 0 +2.05056E7 26 25 94 98628 451 1338 435 118 8 115 13076 304 12843 4358 20 2.1 9 9 2800 600 9 999999999 114 0 0 88 0.2 0 0 +2.05092E7 26 25 94 98628 726 1338 447 146 0 146 14616 0 14752 6543 50 1 10 10 2600 750 0 919999999 114 0 0 88 0.2 0 0 +2.05128E7 26 26 100 98628 960 1338 449 212 4 209 24691 225 24480 9914 20 2.1 10 10 1600 600 0 919999999 126 0 0 88 0.2 0 0 +2.05164E7 27 26 94 98637 1137 1338 455 264 6 258 30977 365 30519 12367 20 2.1 10 10 2000 750 0 919999999 126 0 0 88 0.2 0 0 +2.052E7 27 26 94 98637 1245 1338 455 295 7 289 34893 394 34360 13769 20 1.5 10 10 2500 750 0 919999999 126 0 0 88 0.2 0 0 +2.05236E7 27 26 94 98637 1276 1338 455 304 5 300 36024 281 35709 14250 10 2.6 10 10 2500 750 0 919999999 126 0 0 88 0.2 0 0 +2.05272E7 27 26 94 98637 1229 1338 455 358 23 336 41672 1436 39475 15408 220 1.3 10 10 2500 750 9 999999999 126 0 0 88 0.2 0 0 +2.05308E7 27 26 94 98637 1106 1338 455 255 4 252 29852 205 29679 12052 72 0 10 10 2500 2400 0 919999999 126 0 0 88 0.2 0 0 +2.05344E7 27 26 94 98637 917 1338 455 200 3 197 23179 177 23039 9278 360 2.1 10 10 2000 2400 0 919999999 126 0 0 88 0.2 0 0 +2.0538E7 27 26 94 98637 673 1338 455 131 0 131 13020 0 13140 5791 360 1 10 10 2000 600 0 919999999 126 0 0 88 0.2 0 0 +2.05416E7 27 27 100 98637 391 1338 456 58 0 58 5584 0 5631 2388 260 2.6 10 10 2500 600 0 919999999 139 0 0 88 0.2 0 0 +2.05452E7 27 26 94 98637 92 1338 442 10 0 10 920 0 927 372 350 3.1 9 9 2500 600 0 919999999 126 0 0 88 0.2 0 0 +2.05488E7 27 26 94 98637 0 412 418 0 0 0 0 0 0 0 340 1.5 5 5 2500 600 0 919999999 126 0 0 88 0.2 0 0 +2.05524E7 26 26 100 98628 0 0 436 0 0 0 0 0 0 0 330 1.5 9 9 3500 2000 0 919999999 126 0 0 88 0.2 0 0 +2.0556E7 27 26 94 98637 0 0 418 0 0 0 0 0 0 0 270 2.6 5 5 3500 2000 0 919999999 126 0 0 88 0.2 0 0 +2.05596E7 27 26 94 98637 0 0 418 0 0 0 0 0 0 0 340 2.1 5 5 3500 2000 0 919999999 126 0 0 88 0.2 0 0 +2.05632E7 27 25.5 92 98637 0 0 442 0 0 0 0 0 0 0 197 2.6 9 9 2750 2000 9 999999999 120 0 0 88 0.2 0 0 +2.05668E7 27 25 89 98637 0 0 441 0 0 0 0 0 0 0 320 3.1 9 9 2000 1200 0 919999999 114 0 0 88 0.2 0 0 +2.05704E7 26 25 94 98628 0 0 411 0 0 0 0 0 0 0 88 0 5 5 2000 2000 0 919999999 114 0 0 88 0.2 0 0 +2.0574E7 26 26 100 98628 0 0 412 0 0 0 0 0 0 0 67 0 5 5 2800 2000 0 919999999 126 0 0 88 0.2 0 0 +2.05776E7 26 25 94 98628 0 0 411 0 0 0 0 0 0 0 339 0 5 5 2500 2000 0 919999999 114 0 0 88 0.2 0 0 +2.05812E7 26 26 100 98628 0 0 412 0 0 0 0 0 0 0 0 0 5 5 1500 2000 0 919999999 126 0 0 88 0.2 0 0 +2.05848E7 26 25 94 98628 0 0 411 0 0 0 0 0 0 0 260 3.6 5 5 1800 2000 9 999999999 114 0 0 88 0.2 0 0 +2.05884E7 26 25 94 98628 151 672 411 35 0 35 3335 0 3360 1182 250 2.6 5 5 2500 900 9 999999999 114 0 0 88 0.2 0 0 +2.0592E7 27 25 89 98637 449 1338 416 212 280 118 23387 11151 13087 4412 250 3.1 5 5 2500 2000 9 999999999 114 0 0 88 0.2 0 0 +2.05956E7 29 26 84 98654 724 1338 429 429 491 163 48874 24922 18718 7152 260 3.6 5 5 3000 2000 9 999999999 125 0 0 88 0.2 0 0 +2.05992E7 29 25 79 98654 959 1338 428 627 607 193 73544 32955 22745 9283 270 3.6 5 5 3000 2000 9 999999999 114 0 0 88 0.2 0 0 +2.06028E7 29 25 79 98654 1136 1338 428 780 625 250 91933 36019 29664 12053 250 6.2 5 5 3500 2000 9 999999999 114 0 0 88 0.2 0 0 +2.06064E7 31 25 70 98672 1244 1338 439 873 651 268 103893 37436 32117 12978 270 6.2 5 5 4000 2000 9 999999999 113 0 0 88 0.2 0 0 +2.061E7 31 26 75 98672 1275 1338 440 898 646 283 106740 36532 33875 13624 260 5.1 5 5 4000 2000 9 999999999 125 0 0 88 0.2 0 0 +2.06136E7 32 26 71 98680 1227 1338 446 857 647 264 101741 36013 31566 12792 270 6.2 5 5 4500 2000 9 999999999 125 0 0 88 0.2 0 0 +2.06172E7 33 25 63 98689 1104 1338 451 752 625 237 88643 35573 28095 11479 260 5.7 5 5 5000 2000 9 999999999 113 0 0 88 0.2 0 0 +2.06208E7 33 26 67 98689 913 1338 452 588 593 183 68563 30803 21501 8726 270 4.1 5 5 5000 2000 9 999999999 125 0 0 88 0.2 0 0 +2.06244E7 34 26 63 98697 669 1338 458 383 459 154 43411 22638 17508 6560 260 4.6 5 5 5000 2000 9 999999999 124 0 0 88 0.2 0 0 +2.0628E7 33 25 63 98689 387 1338 444 178 292 94 19682 8746 10399 3482 270 3.1 3 3 5000 2000 9 999999999 113 0 0 88 0.2 0 0 +2.06316E7 32 26 71 98680 86 1338 439 18 0 18 1664 0 1676 607 270 2.1 3 3 4000 2000 9 999999999 125 0 0 88 0.2 0 0 +2.06352E7 32 26 71 98680 0 388 439 0 0 0 0 0 0 0 250 2.6 3 3 4000 2000 9 999999999 125 0 0 88 0.2 0 0 +2.06388E7 31 26 75 98672 0 0 434 0 0 0 0 0 0 0 320 1.5 3 3 4000 2000 9 999999999 125 0 0 88 0.2 0 0 +2.06424E7 31 27 79 98672 0 0 435 0 0 0 0 0 0 0 12 0 3 3 4000 2000 9 999999999 138 0 0 88 0.2 0 0 +2.0646E7 30 27 84 98663 0 0 436 0 0 0 0 0 0 0 37 0 5 5 4000 2000 0 919999999 138 0 0 88 0.2 0 0 +2.06496E7 30 28 89 98663 0 0 437 0 0 0 0 0 0 0 150 1.5 5 5 3500 2000 0 919999999 153 0 0 88 0.2 0 0 +2.06532E7 29 28 94 98654 0 0 431 0 0 0 0 0 0 0 210 0 5 5 3000 2000 0 919999999 153 0 0 88 0.2 0 0 +2.06568E7 29 27 89 98654 0 0 430 0 0 0 0 0 0 0 230 2.6 5 5 3000 2000 0 919999999 139 0 0 88 0.2 0 0 +2.06604E7 28 26 89 98646 0 0 423 0 0 0 0 0 0 0 210 2.1 5 5 3000 2000 0 919999999 126 0 0 88 0.2 0 0 +2.0664E7 28 26 89 98646 0 0 423 0 0 0 0 0 0 0 220 1.5 5 5 3000 2000 0 919999999 126 0 0 88 0.2 0 0 +2.06676E7 28 26 89 98646 0 0 423 0 0 0 0 0 0 0 220 1.5 5 5 3000 2000 0 919999999 126 0 0 88 0.2 0 0 +2.06712E7 28 25 84 98646 0 0 422 0 0 0 0 0 0 0 240 2.6 5 5 3000 2000 9 999999999 114 0 0 88 0.2 0 0 +2.06748E7 27 24 84 98637 149 661 415 34 0 34 3262 0 3287 1156 240 2.6 5 5 3000 2000 9 999999999 103 0 0 88 0.2 0 0 +2.06784E7 28 24 79 98646 447 1339 414 224 283 129 24545 12534 14261 4680 240 3.1 3 3 3000 2000 9 999999999 103 0 0 88 0.2 0 0 +2.0682E7 29 24 74 98654 723 1339 420 455 623 119 53339 29398 14013 5532 240 4.6 3 3 3000 2000 9 999999999 103 0 0 88 0.2 0 0 +2.06856E7 30 24 70 98663 957 1339 408 674 775 121 82017 36647 14729 6203 250 5.1 0 0 3000 2000 9 999999999 103 0 0 88 0.2 0 0 +2.06892E7 31 24 66 98672 1134 1339 431 827 815 138 102175 39087 17083 7245 230 6.2 3 3 4000 2000 9 999999999 102 0 0 88 0.2 0 0 +2.06928E7 32 25 67 98680 1242 1339 438 924 789 193 112786 39913 23674 9861 250 7.2 3 3 4000 2000 9 999999999 113 0 0 88 0.2 0 0 +2.06964E7 33 26 67 98689 1273 1339 452 897 611 317 105600 36391 37534 14850 240 5.1 5 5 5000 2000 9 999999999 125 0 0 88 0.2 0 0 +2.07E7 33 25 63 98689 1224 1339 451 856 652 261 101895 37249 31207 12648 260 6.2 5 5 4000 2000 9 999999999 113 0 0 88 0.2 0 0 +2.07036E7 34 26 63 98697 1101 1339 458 748 624 236 88055 34370 27923 11430 260 4.1 5 5 4000 2000 9 999999999 124 0 0 88 0.2 0 0 +2.07072E7 34 25 60 98697 910 1339 457 586 596 181 68473 31875 21284 8626 240 5.1 5 5 4000 2000 9 999999999 113 0 0 88 0.2 0 0 +2.07108E7 34 26 63 98697 665 1339 458 380 419 172 42620 21971 19395 7102 250 5.1 5 5 4000 2000 9 999999999 124 0 0 88 0.2 0 0 +2.07144E7 33 26 67 98689 382 1339 452 164 206 106 17950 6479 11586 3759 260 4.1 5 5 3500 2000 9 999999999 125 0 0 88 0.2 0 0 +2.0718E7 32 26 71 98680 81 1339 446 16 0 16 1476 0 1487 546 250 2.6 5 5 3500 2000 9 999999999 125 0 0 88 0.2 0 0 +2.07216E7 32 27 75 98680 0 364 441 0 0 0 0 0 0 0 200 2.1 3 3 3500 2000 9 999999999 138 0 0 88 0.2 0 0 +2.07252E7 32 28 79 98680 0 0 442 0 0 0 0 0 0 0 5 0 3 3 3500 2000 9 999999999 153 0 0 88 0.2 0 0 +2.07288E7 31 28 84 98672 0 0 443 0 0 0 0 0 0 0 184 0 5 5 3500 2000 9 999999999 153 0 0 88 0.2 0 0 +2.07324E7 31 27 79 98672 0 0 442 0 0 0 0 0 0 0 220 2.6 5 5 3500 2000 9 999999999 138 0 0 88 0.2 0 0 +2.0736E7 30 26 79 98663 0 0 435 0 0 0 0 0 0 0 240 3.6 5 5 3500 2000 9 999999999 125 0 0 88 0.2 0 0 +2.07396E7 29 24 74 98654 0 0 426 0 0 0 0 0 0 0 220 3.1 5 5 3500 2000 9 999999999 103 0 0 88 0.2 0 0 +2.07432E7 28 24 79 98646 0 0 421 0 0 0 0 0 0 0 220 3.1 5 5 3500 2000 9 999999999 103 0 0 88 0.2 0 0 +2.07468E7 28 24 79 98646 0 0 421 0 0 0 0 0 0 0 220 3.6 5 5 3500 2000 9 999999999 103 0 0 88 0.2 0 0 +2.07504E7 27 24 84 98637 0 0 415 0 0 0 0 0 0 0 210 2.1 5 5 3500 2000 9 999999999 103 0 0 88 0.2 0 0 +2.0754E7 27 24 84 98637 0 0 415 0 0 0 0 0 0 0 210 3.1 5 5 3500 2000 9 999999999 103 0 0 88 0.2 0 0 +2.07576E7 26 24 89 98628 0 0 434 0 0 0 0 0 0 0 220 1.5 9 9 3500 2000 9 999999999 103 0 0 88 0.2 0 0 +2.07612E7 27 24 84 98637 146 650 415 33 0 33 3181 0 3205 1129 240 1.5 5 5 3500 3000 9 999999999 103 0 0 88 0.2 0 0 +2.07648E7 27 25 89 98637 445 1340 416 209 279 117 23116 10977 12962 4362 220 1.5 5 5 3500 2000 9 999999999 114 0 0 88 0.2 0 0 +2.07684E7 29 25 79 98654 721 1340 428 427 494 162 48776 25810 18544 7073 240 3.6 5 5 3500 2000 9 999999999 114 0 0 88 0.2 0 0 +2.0772E7 30 25 75 98663 956 1340 433 625 608 192 73270 32949 22595 9219 260 4.1 5 5 3500 2000 9 999999999 113 0 0 88 0.2 0 0 +2.07756E7 31 26 75 98672 1133 1340 440 776 624 249 91338 34846 29455 11992 260 4.1 5 5 3500 2000 9 999999999 125 0 0 88 0.2 0 0 +2.07792E7 32 26 71 98680 1240 1340 450 825 571 297 97277 33404 35246 14061 216 3.6 6 6 3750 2000 9 999999999 125 0 0 88 0.2 0 0 +2.07828E7 33 26 67 98689 1271 1340 452 895 593 333 104944 36237 39309 15417 250 3.1 5 5 4000 2000 9 999999999 125 0 0 88 0.2 0 0 +2.07864E7 34 27 67 98697 1222 1340 452 903 778 194 109520 36775 23641 9878 260 3.6 3 3 4000 2000 9 999999999 138 0 0 88 0.2 0 0 +2.079E7 35 27 63 98705 1098 1340 458 790 763 165 95323 34986 20000 8461 250 4.1 3 3 4000 2000 9 999999999 137 0 0 88 0.2 0 0 +2.07936E7 35 27 63 98705 906 1340 458 616 715 133 73482 31299 15944 6642 250 3.6 3 3 4000 2000 9 999999999 137 0 0 88 0.2 0 0 +2.07972E7 35 25 56 98705 660 1340 455 400 511 149 45467 25610 16962 6348 260 3.6 3 3 4500 2000 9 999999999 112 0 0 88 0.2 0 0 +2.08008E7 34 27 67 98697 377 1340 452 171 264 97 18732 7003 10640 3516 260 4.1 3 3 4500 2000 9 999999999 138 0 0 88 0.2 0 0 +2.08044E7 33 27 71 98689 76 1340 446 15 0 15 1462 0 1473 536 250 2.1 3 3 4500 2000 9 999999999 138 0 0 88 0.2 0 0 +2.0808E7 33 27 71 98689 0 340 446 0 0 0 0 0 0 0 29 0 3 3 4000 2000 9 999999999 138 0 0 88 0.2 0 0 +2.08116E7 32 27 75 98680 0 0 422 0 0 0 0 0 0 0 124 0 0 0 4000 2000 9 999999999 138 0 0 88 0.2 0 0 +2.08152E7 32 26 71 98680 0 0 421 0 0 0 0 0 0 0 150 1 0 0 4000 2000 9 999999999 125 0 0 88 0.2 0 0 +2.08188E7 31 27 79 98672 0 0 417 0 0 0 0 0 0 0 133 0 0 0 3500 2000 9 999999999 138 0 0 88 0.2 0 0 +2.08224E7 31 26 75 98672 0 0 416 0 0 0 0 0 0 0 210 2.1 0 0 3200 2000 9 999999999 125 0 0 88 0.2 0 0 +2.0826E7 30 26 79 98663 0 0 428 0 0 0 0 0 0 0 210 2.6 3 3 3500 2000 9 999999999 125 0 0 88 0.2 0 0 +2.08296E7 29 25 79 98654 0 0 421 0 0 0 0 0 0 0 210 2.6 3 3 4000 2000 9 999999999 114 0 0 88 0.2 0 0 +2.08332E7 29 26 84 98654 0 0 422 0 0 0 0 0 0 0 230 2.1 3 3 4000 2000 9 999999999 125 0 0 88 0.2 0 0 +2.08368E7 28 26 89 98646 0 0 417 0 0 0 0 0 0 0 220 1 3 3 4000 2000 9 999999999 126 0 0 88 0.2 0 0 +2.08404E7 28 25 84 98646 0 0 398 0 0 0 0 0 0 0 220 3.1 0 0 4000 2000 9 999999999 114 0 0 88 0.2 0 0 +2.0844E7 27 24 84 98637 0 0 392 0 0 0 0 0 0 0 210 3.1 0 0 4000 2000 9 999999999 103 0 0 88 0.2 0 0 +2.08476E7 27 24 84 98637 144 639 392 35 4 34 3818 0 3784 1151 200 2.6 0 0 4000 2000 9 999999999 103 0 0 88 0.2 0 0 +2.08512E7 28 24 79 98646 443 1340 397 224 358 106 24966 13639 11848 4059 210 2.6 0 0 4000 2000 9 999999999 103 0 0 88 0.2 0 0 +2.08548E7 29 24 74 98654 720 1340 402 458 652 109 54069 29679 12897 5118 230 5.7 0 0 4000 2000 9 999999999 103 0 0 88 0.2 0 0 +2.08584E7 30 24 70 98663 954 1340 425 663 743 134 79957 36382 16266 6813 220 5.1 3 3 4000 2000 9 999999999 103 0 0 88 0.2 0 0 +2.0862E7 31 25 70 98672 1131 1340 432 823 810 140 101354 37747 17296 7343 250 3.6 3 3 4000 2000 9 999999999 113 0 0 88 0.2 0 0 +2.08656E7 33 26 67 98689 1238 1340 445 920 828 155 113823 37559 19289 8134 270 5.1 3 3 4000 2000 9 999999999 125 0 0 88 0.2 0 0 +2.08692E7 34 26 63 98697 1269 1340 451 947 834 159 117496 37852 19767 8318 240 5.1 3 3 4500 2000 9 999999999 124 0 0 88 0.2 0 0 +2.08728E7 35 25 56 98705 1219 1340 455 904 831 149 112093 38799 18568 7836 250 4.1 3 3 5000 2000 9 999999999 112 0 0 88 0.2 0 0 +2.08764E7 35 26 60 98705 1095 1340 457 788 769 161 95417 36416 19618 8296 260 3.1 3 3 5000 2000 9 999999999 124 0 0 88 0.2 0 0 +2.088E7 36 25 53 98714 902 1340 461 615 722 129 73705 33921 15552 6463 260 4.1 3 3 5000 2000 9 999999999 112 0 0 88 0.2 0 0 +2.08836E7 35 26 60 98705 656 1340 457 396 504 149 44859 24452 16993 6349 260 5.7 3 3 5000 2000 9 999999999 124 0 0 88 0.2 0 0 +2.08872E7 35 25 56 98705 372 1340 455 168 262 95 18486 7723 10518 3458 260 4.1 3 3 4500 2000 9 999999999 112 0 0 88 0.2 0 0 +2.08908E7 34 26 63 98697 71 1340 451 14 0 14 1365 0 1375 500 270 2.1 3 3 4000 2000 9 999999999 124 0 0 88 0.2 0 0 +2.08944E7 33 26 67 98689 0 316 445 0 0 0 0 0 0 0 98 0 3 3 4000 2000 9 999999999 125 0 0 88 0.2 0 0 +2.0898E7 33 26 67 98689 0 0 445 0 0 0 0 0 0 0 250 2.1 3 3 4000 2000 9 999999999 125 0 0 88 0.2 0 0 +2.09016E7 32 27 75 98680 0 0 441 0 0 0 0 0 0 0 263 0 3 3 4000 2000 9 999999999 138 0 0 88 0.2 0 0 +2.09052E7 32 28 79 98680 0 0 449 0 0 0 0 0 0 0 27 0 5 5 4000 2000 9 999999999 153 0 0 88 0.2 0 0 +2.09088E7 32 28 79 98680 0 0 449 0 0 0 0 0 0 0 200 2.1 5 5 3000 2000 9 999999999 153 0 0 88 0.2 0 0 +2.09124E7 31 26 75 98672 0 0 440 0 0 0 0 0 0 0 210 2.1 5 5 3500 2000 9 999999999 125 0 0 88 0.2 0 0 +2.0916E7 31 26 75 98672 0 0 434 0 0 0 0 0 0 0 220 2.1 3 3 3500 2000 9 999999999 125 0 0 88 0.2 0 0 +2.09196E7 29 25 79 98654 0 0 421 0 0 0 0 0 0 0 220 2.1 3 3 3500 2000 9 999999999 114 0 0 88 0.2 0 0 +2.09232E7 29 25 79 98654 0 0 421 0 0 0 0 0 0 0 220 2.6 3 3 3200 2000 9 999999999 114 0 0 88 0.2 0 0 +2.09268E7 28 23 74 98646 0 0 413 0 0 0 0 0 0 0 220 2.6 3 3 3000 2000 9 999999999 93 0 0 88 0.2 0 0 +2.09304E7 27 24 84 98637 0 0 415 0 0 0 0 0 0 0 210 3.1 5 5 3000 2000 9 999999999 103 0 0 88 0.2 0 0 +2.0934E7 27 23 79 98637 142 628 414 32 0 32 3028 0 3051 1077 220 2.6 5 5 3000 2000 9 999999999 93 0 0 88 0.2 0 0 +2.09376E7 28 23 74 98646 441 1341 419 208 281 115 22994 11789 12833 4302 220 2.6 5 5 3000 2000 9 999999999 93 0 0 88 0.2 0 0 +2.09412E7 29 23 70 98654 718 1341 425 426 499 159 48832 27496 18308 6967 230 3.1 5 5 3000 2000 9 999999999 93 0 0 88 0.2 0 0 +2.09448E7 30 24 70 98663 953 1341 432 624 595 201 72891 33947 23656 9573 240 3.6 5 5 3000 2000 9 999999999 103 0 0 88 0.2 0 0 +2.09484E7 31 25 70 98672 1130 1341 432 822 730 207 98196 39025 24880 10318 230 5.1 3 3 3000 2000 9 999999999 113 0 0 88 0.2 0 0 +2.0952E7 33 25 63 98689 1237 1341 425 932 780 213 112707 40960 25952 10733 260 4.1 0 0 3500 2000 9 999999999 113 0 0 88 0.2 0 0 +2.09556E7 33 25 63 98689 1266 1341 425 959 781 222 116142 41354 27053 11149 250 4.1 0 0 4000 2000 9 999999999 113 0 0 88 0.2 0 0 +2.09592E7 34 25 60 98697 1217 1341 431 913 779 207 110430 40688 25226 10458 260 4.6 0 0 4000 2000 9 999999999 113 0 0 88 0.2 0 0 +2.09628E7 35 24 53 98705 1091 1341 435 798 816 135 98155 39217 16703 7098 260 3.6 0 0 4000 2000 9 999999999 102 0 0 88 0.2 0 0 +2.09664E7 35 24 53 98705 899 1341 454 613 680 158 72376 35522 18697 7644 260 4.1 3 3 4000 2000 9 999999999 102 0 0 88 0.2 0 0 +2.097E7 35 25 56 98705 652 1341 437 398 532 140 45374 25834 16011 6017 260 4.6 0 0 4000 2000 9 999999999 112 0 0 88 0.2 0 0 +2.09736E7 34 25 60 98697 367 1341 431 167 270 93 18359 7658 10272 3377 270 3.1 0 0 4000 2000 9 999999999 113 0 0 88 0.2 0 0 +2.09772E7 32.8 25.8 67 98687 65 1341 432 14 0 14 1278 0 1288 468 235 1.7 0 0 3500 2000 9 999999999 122 0 0 88 0.2 0 0 +2.09808E7 32 25.2 68 98680 0 291 427 0 0 0 0 0 0 0 222 1.7 0 0 3000 2000 9 999999999 115 0 0 88 0.2 0 0 +2.09844E7 31.5 24.8 67 98676 0 0 421 0 0 0 0 0 0 0 217 1.7 0 0 3000 2000 9 999999999 111 0 0 88 0.2 0 0 +2.0988E7 30 24.8 74 98663 0 0 420 0 0 0 0 0 0 0 205 2.1 0 0 3000 2000 9 999999999 111 0 0 88 0.2 0 0 +2.09916E7 28.5 25 81 98650 0 0 413 0 0 0 0 0 0 0 175 1.8 0 0 3000 2000 9 999999999 114 0 0 88 0.2 0 0 +2.09952E7 27.2 25.5 90 98402 0 0 431 0 0 0 0 0 0 0 157 1.8 3 3 3500 2000 9 999999999 119 0 0 88 0.2 0 0 +2.09988E7 26 26 100 98391 0 0 449 0 0 0 0 0 0 0 150 1.4 10 10 1500 914 0 19994999 126 0 0 88 0.2 0 0 +2.10024E7 26 26 100 98391 0 0 449 0 0 0 0 0 0 0 157 1.3 10 10 1500 914 0 19994999 126 0 0 88 0.2 0 0 +2.1006E7 25.9 25.8 99 98131 0 0 449 0 0 0 0 0 0 0 180 1.8 10 10 2000 1050 0 19994999 123 0 0 88 0.2 0 0 +2.10096E7 25.9 25.8 99 98368 0 0 449 0 0 0 0 0 0 0 202 1.9 10 10 1500 914 0 19994999 123 0 0 88 0.2 0 0 +2.10132E7 25.9 25.8 99 98368 0 0 436 0 0 0 0 0 0 0 210 2.7 9 9 1300 2438 0 19994999 123 0 0 88 0.2 0 0 +2.10168E7 26 25.6 98 98156 0 0 433 0 0 0 0 0 0 0 222 3 9 9 2000 1050 0 919999999 121 0 0 88 0.2 0 0 +2.10204E7 26 26 100 98628 137 607 449 10 0 10 963 0 970 407 230 2.6 10 10 1300 2438 0 919999999 126 0 0 88 0.2 0 0 +2.1024E7 26 26 100 98628 438 1342 449 69 0 69 6746 0 6803 2888 200 3.1 10 10 2500 2438 0 919999999 126 0 0 88 0.2 0 0 +2.10276E7 26.2 25.3 95 97778 715 1342 449 143 0 143 14300 0 14433 6382 230 3.1 10 10 2000 1050 0 919999999 117 0 0 88 0.2 0 0 +2.10312E7 29 26 84 98654 950 1342 467 209 4 207 24335 213 24144 9755 260 4.1 10 10 2800 2438 0 919999999 125 0 0 88 0.2 0 0 +2.10348E7 29 26 84 98654 1126 1342 467 261 6 255 30581 358 30142 12225 260 4.1 10 10 3200 2438 0 919999999 125 0 0 88 0.2 0 0 +2.10384E7 28.4 26.3 88 97836 1233 1342 464 292 12 280 34446 692 33330 13410 270 4.6 10 10 4000 1050 0 919999999 129 0 0 88 0.2 0 0 +2.1042E7 30 26 79 98663 1262 1342 460 492 55 440 56369 3924 50818 18661 270 4.1 9 9 4000 2438 0 919999999 125 0 0 88 0.2 0 0 +2.10456E7 31 26 75 98672 1211 1342 466 468 66 408 53552 4604 47079 17526 290 4.1 9 9 4000 2438 0 919999999 125 0 0 88 0.2 0 0 +2.10492E7 31.4 26.8 77 97628 1085 1342 470 407 64 355 46189 4273 40588 15385 250 4.6 9 9 4000 1050 0 919999999 134 0 0 88 0.2 0 0 +2.10528E7 31 25 70 98672 891 1342 465 316 30 297 35420 2031 33435 12259 230 4.1 9 9 4000 914 0 19999999 113 0 0 88 0.2 0 0 +2.10564E7 28 26 89 98646 643 1342 448 201 38 183 22360 2066 20451 7271 240 1.5 9 9 4000 914 0 19999999 126 0 0 88 0.2 0 0 +2.106E7 28.4 26.2 88 97534 357 1342 451 82 0 82 7979 0 8045 3058 230 1.5 9 9 4000 1050 0 19999999 127 0 0 88 0.2 0 0 +2.10636E7 29 26 84 98654 54 1342 467 4 0 4 335 0 337 140 230 2.1 10 10 4000 3048 0 19999999 125 0 0 88 0.2 0 0 +2.10672E7 28 24 79 98646 0 241 458 0 0 0 0 0 0 0 250 4.1 10 10 3500 762 0 19999999 103 0 0 88 0.2 0 0 +2.10708E7 27.6 23.8 80 97693 0 0 455 0 0 0 0 0 0 0 230 2.6 10 10 2000 1050 0 19999999 100 0 0 88 0.2 0 0 +2.10744E7 28 24 79 98646 0 0 446 0 0 0 0 0 0 0 273 0 9 9 3500 3048 0 19999999 103 0 0 88 0.2 0 0 +2.1078E7 28 24 79 98646 0 0 446 0 0 0 0 0 0 0 270 5.1 9 9 3500 3048 0 19999999 103 0 0 88 0.2 0 0 +2.10816E7 27.2 24.9 87 97767 0 0 442 0 0 0 0 0 0 0 290 1.5 9 9 2000 1050 0 19999999 112 0 0 88 0.2 0 0 +2.10852E7 27 25 89 98637 0 0 441 0 0 0 0 0 0 0 128 0 9 9 3500 3048 0 19999999 114 0 0 88 0.2 0 0 +2.10888E7 27 25 89 98637 0 0 441 0 0 0 0 0 0 0 177 0 9 9 3500 3048 0 19999999 114 0 0 88 0.2 0 0 +2.10924E7 27 25 89 97620 0 0 441 0 0 0 0 0 0 0 270 1.5 9 9 2000 1050 0 19999999 113 0 0 88 0.2 0 0 +2.1096E7 27 25 89 98637 0 0 441 0 0 0 0 0 0 0 250 1.5 9 9 3500 3048 0 19999999 114 0 0 88 0.2 0 0 +2.10996E7 27 25 89 98637 0 0 441 0 0 0 0 0 0 0 250 2.6 9 9 3500 3048 0 19999999 114 0 0 88 0.2 0 0 +2.11032E7 26.6 23.1 81 97713 0 0 436 0 0 0 0 0 0 0 250 3.6 9 9 2000 3000 9 999999999 94 0 0 88 0.2 5 0 +2.11068E7 28 24 79 98646 135 596 446 16 0 16 1544 0 1556 618 250 3.6 9 9 3500 3048 9 999999999 103 0 0 88 0.2 0 0 +2.11104E7 27 24 84 98637 436 1343 440 113 6 111 12511 240 12343 4156 260 3.6 9 9 3500 3048 9 999999999 103 0 0 88 0.2 0 0 +2.1114E7 27.2 24.3 84 97826 713 1343 441 234 17 225 25970 1087 25105 8875 270 2.6 9 9 2000 3000 9 999999999 106 0 0 88 0.2 0 0 +2.11176E7 28 24 79 98646 948 1343 446 344 31 322 38664 2229 36439 13424 250 4.6 9 9 4000 3048 9 999999999 103 0 0 88 0.2 0 0 +2.11212E7 29 24 74 98654 1125 1343 451 428 66 373 48873 4769 42854 16088 250 5.1 9 9 4000 3048 9 999999999 103 0 0 88 0.2 0 0 +2.11248E7 29 24.7 78 97870 1231 1343 452 478 67 417 54901 4814 48249 17870 270 4.1 9 9 4000 3000 0 919999999 110 0 0 88 0.2 0 0 +2.11284E7 30 25 75 98663 1260 1343 459 492 67 429 56515 4798 49709 18350 290 5.1 9 9 4000 3048 0 919999999 113 0 0 88 0.2 0 0 +2.1132E7 30 25 75 98663 1209 1343 459 467 67 408 53553 4756 47039 17486 290 5.1 9 9 4000 3048 0 919999999 113 0 0 88 0.2 0 0 +2.11356E7 30.6 24 68 97689 1081 1343 461 407 65 355 46411 4682 40690 15348 320 5.1 9 9 2000 1050 0 919999999 102 0 0 88 0.2 0 0 +2.11392E7 28 25 84 98646 887 1343 447 314 30 295 35201 2023 33230 12174 340 4.1 9 9 3000 2438 0 19999999 114 0 0 88 0.2 0 0 +2.11428E7 27 24 84 98637 638 1343 440 200 38 182 22276 2205 20358 7203 330 2.1 9 9 3000 2438 0 19999999 103 0 0 88 0.2 0 0 +2.11464E7 27.6 25.3 87 97566 352 1343 445 81 0 81 7825 0 7889 2993 250 2.6 9 9 2000 1050 0 19999999 116 0 0 88 0.2 0 0 +2.115E7 28 25 84 98646 48 1343 422 9 0 9 891 0 897 334 250 2.6 5 5 3500 3048 0 19999999 114 0 0 88 0.2 0 0 +2.11536E7 27 25 89 98637 0 216 416 0 0 0 0 0 0 0 250 7.2 5 5 3500 3048 0 19999999 114 0 0 88 0.2 0 0 +2.11572E7 27.2 24.3 84 97680 0 0 417 0 0 0 0 0 0 0 270 1.5 5 5 2000 3000 0 19999999 105 0 0 88 0.2 0 0 +2.11608E7 27 25 89 98637 0 0 410 0 0 0 0 0 0 0 270 1.5 3 3 3500 3000 0 19999999 114 0 0 88 0.2 0 0 +2.11644E7 27 25 89 98637 0 0 410 0 0 0 0 0 0 0 352 0 3 3 3500 3000 0 19999999 114 0 0 88 0.2 0 0 +2.1168E7 26.6 24.6 89 97743 0 0 407 0 0 0 0 0 0 0 325 0 3 3 2000 2000 0 19999999 109 0 0 88 0.2 0 0 +2.11716E7 27 25 89 98637 0 0 410 0 0 0 0 0 0 0 263 0 3 3 3500 2000 0 19999999 114 0 0 88 0.2 0 0 +2.11752E7 27 26 94 98637 0 0 418 0 0 0 0 0 0 0 220 0 5 5 3500 2000 0 19999999 126 0 0 88 0.2 0 0 +2.11788E7 26.4 24.7 90 97682 0 0 413 0 0 0 0 0 0 0 236 0 5 5 2000 2000 0 19999999 110 0 0 88 0.2 0 0 +2.11824E7 26 24 89 98628 0 0 410 0 0 0 0 0 0 0 250 2.1 5 5 3500 3048 0 19999999 103 0 0 88 0.2 0 0 +2.1186E7 26 24 89 98628 0 0 403 0 0 0 0 0 0 0 270 3.1 3 3 3500 3048 0 19999999 103 0 0 88 0.2 0 0 +2.11896E7 25.6 23.6 89 97666 0 0 401 0 0 0 0 0 0 0 270 2.6 3 3 2000 2000 9 999999999 99 0 0 88 0.2 0 0 +2.11932E7 25 24 94 98619 132 585 404 28 0 28 2706 0 2726 973 270 2.6 5 5 3500 2000 9 999999999 103 0 0 88 0.2 0 0 +2.11968E7 26 24 89 98628 434 1344 410 202 276 113 22362 10933 12581 4207 270 2.6 5 5 3500 3048 9 999999999 103 0 0 88 0.2 0 0 +2.12004E7 27.8 24 80 97880 711 1344 420 420 497 158 48060 26495 18120 6884 270 2.6 5 5 4000 3000 9 999999999 102 0 0 88 0.2 0 0 +2.1204E7 29 25 79 98654 946 1344 428 617 610 188 72344 32903 22138 9022 270 3.1 5 5 4000 3048 9 999999999 114 0 0 88 0.2 0 0 +2.12076E7 30 25 75 98663 1123 1344 433 769 630 243 90646 36064 28769 11727 270 3.1 5 5 4000 3048 9 999999999 113 0 0 88 0.2 0 0 +2.12112E7 31.4 25.2 70 97881 1229 1344 442 860 656 261 102281 37240 31223 12657 250 3.1 5 5 4000 3048 9 999999999 115 0 0 88 0.2 0 0 +2.12148E7 31 25 70 98672 1257 1344 439 885 656 271 105323 37795 32479 13110 260 3.1 5 5 4000 3048 9 999999999 113 0 0 88 0.2 0 0 +2.12184E7 32 26 71 98680 1206 1344 446 839 652 254 99521 35964 30350 12350 270 3.1 5 5 4000 3048 9 999999999 125 0 0 88 0.2 0 0 +2.1222E7 33.8 25.1 61 97736 1078 1344 455 730 632 224 86070 35291 26560 10900 270 3.1 5 5 4000 3048 9 999999999 113 0 0 88 0.2 0 0 +2.12256E7 34 26 63 98697 883 1344 458 563 589 176 65498 30270 20595 8307 290 3.1 5 5 4000 3048 9 999999999 124 0 0 88 0.2 0 0 +2.12292E7 34 25 60 98697 633 1344 457 356 410 163 39949 21595 18387 6650 310 3.6 5 5 4000 3048 9 999999999 113 0 0 88 0.2 0 0 +2.12328E7 32.6 24.3 62 97629 347 1344 447 142 182 95 15552 5237 10477 3338 270 3.1 5 5 4000 3048 9 999999999 104 0 0 88 0.2 0 0 +2.12364E7 33 26 67 98689 43 1344 452 8 0 8 785 0 791 297 270 2.6 5 5 5000 3048 9 999999999 125 0 0 88 0.2 0 0 +2.124E7 33 25 63 98689 0 190 451 0 0 0 0 0 0 0 330 3.1 5 5 4500 3048 9 999999999 113 0 0 88 0.2 0 0 +2.12436E7 30.2 25.4 76 97822 0 0 435 0 0 0 0 0 0 0 320 1.5 5 5 4000 3048 9 999999999 117 0 0 88 0.2 0 0 +2.12472E7 31 25 70 98672 0 0 432 0 0 0 0 0 0 0 30 1.5 3 3 4500 3048 9 999999999 113 0 0 88 0.2 0 0 +2.12508E7 30 25 75 98663 0 0 427 0 0 0 0 0 0 0 66 0 3 3 4000 3048 9 999999999 113 0 0 88 0.2 0 0 +2.12544E7 28.8 25.4 82 97888 0 0 420 0 0 0 0 0 0 0 158 0 3 3 4000 2000 9 999999999 118 0 0 88 0.2 0 0 +2.1258E7 30 26 79 98663 0 0 428 0 0 0 0 0 0 0 91 0 3 3 3000 2000 9 999999999 125 0 0 88 0.2 0 0 +2.12616E7 29 26 84 98654 0 0 422 0 0 0 0 0 0 0 45 0 3 3 3000 2000 9 999999999 125 0 0 88 0.2 0 0 +2.12652E7 28.2 25.4 85 97815 0 0 417 0 0 0 0 0 0 0 217 0 3 3 2000 2000 9 999999999 118 0 0 88 0.2 0 0 +2.12688E7 28 26 89 98646 0 0 417 0 0 0 0 0 0 0 218 0 3 3 3000 2000 9 999999999 126 0 0 88 0.2 0 0 +2.12724E7 28 26 89 98646 0 0 423 0 0 0 0 0 0 0 260 2.1 5 5 3000 2000 9 999999999 126 0 0 88 0.2 0 0 +2.1276E7 27.6 25.9 90 97888 0 0 421 0 0 0 0 0 0 0 270 2.1 5 5 2000 2000 9 999999999 124 0 0 88 0.2 0 0 +2.12796E7 27 26 94 98637 130 574 418 28 0 28 2615 0 2635 946 250 2.6 5 5 3000 2000 9 999999999 126 0 0 88 0.2 0 0 +2.12832E7 28 26 89 98646 432 1344 423 200 224 129 21838 8988 14085 4560 270 2.6 5 5 3500 3048 9 999999999 126 0 0 88 0.2 0 0 +2.12868E7 29.2 24.6 76 97999 709 1344 422 444 619 118 51891 28415 13836 5436 270 3.1 3 3 2000 2000 9 999999999 109 0 0 88 0.2 0 0 +2.12904E7 31 25 70 98672 945 1344 439 616 596 198 71881 32856 23183 9387 280 4.1 5 5 4000 3048 9 999999999 113 0 0 88 0.2 0 0 +2.1294E7 32 27 75 98680 1121 1344 447 765 577 284 88729 33385 33206 13265 290 4.1 5 5 4000 3048 9 999999999 138 0 0 88 0.2 0 0 +2.12976E7 33.4 26.2 66 98025 1227 1344 482 475 87 396 54600 5865 45871 17252 270 4.1 9 9 4000 3048 9 999999999 126 0 0 88 0.2 0 0 +2.13012E7 33 27 71 98689 1255 1344 480 488 66 426 55858 4498 49193 18236 280 4.6 9 9 4000 3048 9 999999999 138 0 0 88 0.2 0 0 +2.13048E7 34 27 67 98697 1203 1344 486 463 66 404 52865 4455 46493 17358 280 4.6 9 9 4000 3048 9 999999999 138 0 0 88 0.2 0 0 +2.13084E7 33.2 25.6 65 97858 1074 1344 479 403 58 357 45727 4026 40744 15351 290 4.6 9 9 4000 3000 9 999999999 119 0 0 88 0.2 0 0 +2.1312E7 35 26 60 98705 879 1344 464 559 516 222 63859 29673 25527 9940 290 4.1 5 5 4000 3000 9 999999999 124 0 0 88 0.2 0 0 +2.13156E7 35 26 60 98705 629 1344 464 352 406 162 39382 20602 18259 6599 300 4.1 5 5 4500 3000 9 999999999 124 0 0 88 0.2 0 0 +2.13192E7 33.4 24.6 60 97713 342 1344 452 139 177 94 15172 4863 10304 3277 320 4.6 5 5 4000 3000 9 999999999 108 0 0 88 0.2 0 0 +2.13228E7 33 26 67 98689 37 1344 452 7 0 7 681 0 686 260 320 3.6 5 5 4500 3000 9 999999999 125 0 0 88 0.2 0 0 +2.13264E7 31 25 70 98672 0 165 439 0 0 0 0 0 0 0 280 4.1 5 5 4000 3048 9 999999999 113 0 0 88 0.2 0 0 +2.133E7 29.2 23.7 72 97814 0 0 427 0 0 0 0 0 0 0 270 3.6 5 5 2000 3048 9 999999999 99 0 0 88 0.2 0 0 +2.13336E7 28 23 74 98646 0 0 419 0 0 0 0 0 0 0 270 4.1 5 5 3500 3048 9 999999999 93 0 0 88 0.2 0 0 +2.13372E7 27 24 84 98637 0 0 415 0 0 0 0 0 0 0 270 2.6 5 5 3500 3048 9 999999999 103 0 0 88 0.2 0 0 +2.13408E7 27.4 23.6 80 97944 0 0 417 0 0 0 0 0 0 0 270 2.6 5 5 2000 3048 9 999999999 98 0 0 88 0.2 0 0 +2.13444E7 27 24 84 98637 0 0 409 0 0 0 0 0 0 0 290 2.6 3 3 3500 3048 9 999999999 103 0 0 88 0.2 0 0 +2.1348E7 26 24 89 98628 0 0 403 0 0 0 0 0 0 0 290 2.6 3 3 3500 3048 9 999999999 103 0 0 88 0.2 0 0 +2.13516E7 26.4 22.9 81 97819 0 0 404 0 0 0 0 0 0 0 270 2.6 3 3 2000 2000 9 999999999 92 0 0 88 0.2 0 0 +2.13552E7 25 24 94 98619 0 0 398 0 0 0 0 0 0 0 270 2.1 3 3 3500 2000 9 999999999 103 0 0 88 0.2 0 0 +2.13588E7 25 24 94 98619 0 0 398 0 0 0 0 0 0 0 260 2.6 3 3 3500 2000 9 999999999 103 0 0 88 0.2 0 0 +2.13624E7 25.2 23.4 90 97896 0 0 398 0 0 0 0 0 0 0 270 2.1 3 3 2000 2000 9 999999999 97 0 0 88 0.2 0 0 +2.1366E7 25 24 94 98619 128 563 398 28 0 28 2707 0 2727 963 240 2.6 3 3 3500 2000 9 999999999 103 0 0 88 0.2 0 0 +2.13696E7 26 24 89 98628 430 1345 403 212 277 124 23232 11666 13617 4434 280 2.6 3 3 4000 2000 9 999999999 103 0 0 88 0.2 0 0 +2.13732E7 28.4 23.5 75 98089 708 1345 416 443 623 116 51938 29507 13672 5366 270 3.1 3 3 4000 2000 9 999999999 97 0 0 88 0.2 0 0 +2.13768E7 30 25 75 98663 943 1345 427 652 742 132 78438 35003 15991 6692 270 3.1 3 3 4500 2000 9 999999999 113 0 0 88 0.2 0 0 +2.13804E7 31 25 70 98672 1119 1345 432 812 783 162 98724 38325 19733 8331 260 3.6 3 3 4500 2000 9 999999999 113 0 0 88 0.2 0 0 +2.1384E7 32.8 24.3 61 98068 1225 1345 448 858 628 286 101337 38187 34033 13606 290 4.1 5 5 4000 2000 9 999999999 105 0 0 88 0.2 0 0 +2.13876E7 34 25 60 98697 1252 1345 457 880 658 268 104810 37803 32155 12993 280 4.6 5 5 5000 3048 9 999999999 113 0 0 88 0.2 0 0 +2.13912E7 34 25 60 98697 1200 1345 457 835 658 249 99293 37191 29801 12135 300 4.6 5 5 5000 3048 9 999999999 113 0 0 88 0.2 0 0 +2.13948E7 33.6 25.2 62 97841 1071 1345 454 724 632 221 85311 35113 26195 10758 320 4.1 5 5 4000 3000 9 999999999 114 0 0 88 0.2 0 0 +2.13984E7 34 25 60 98697 874 1345 457 557 591 173 64899 31226 20266 8152 310 4.1 5 5 5000 3000 9 999999999 113 0 0 88 0.2 0 0 +2.1402E7 34 25 60 98697 624 1345 457 349 406 161 39087 21200 18090 6519 320 4.1 5 5 4000 3000 9 999999999 113 0 0 88 0.2 0 0 +2.14056E7 32.6 24.7 63 97687 336 1345 448 136 173 92 14798 4553 10130 3215 320 3.6 5 5 4000 3000 9 999999999 109 0 0 88 0.2 0 0 +2.14092E7 33 25 63 98689 31 1345 451 6 0 6 576 0 580 222 320 3.1 5 5 4000 3000 9 999999999 113 0 0 88 0.2 0 0 +2.14128E7 32 25 67 98680 0 139 445 0 0 0 0 0 0 0 290 2.6 5 5 4000 3000 9 999999999 113 0 0 88 0.2 0 0 +2.14164E7 29.2 24 74 97785 0 0 453 0 0 0 0 0 0 0 270 2.6 9 9 4000 3000 9 999999999 102 0 0 88 0.2 0 0 +2.142E7 27 24 84 98637 0 0 440 0 0 0 0 0 0 0 280 5.7 9 9 2200 3048 0 19999999 103 0 0 88 0.2 0 0 +2.14236E7 28 25 84 98646 0 0 447 0 0 0 0 0 0 0 260 2.1 9 9 4000 3048 0 19999999 114 0 0 88 0.2 0 0 +2.14272E7 26.8 25.1 90 97900 0 0 440 0 0 0 0 0 0 0 270 2.1 9 9 4000 3000 0 19999999 114 0 0 88 0.2 0 0 +2.14308E7 27 25 89 98637 0 0 441 0 0 0 0 0 0 0 250 1.5 9 9 4000 3048 0 19999999 114 0 0 88 0.2 0 0 +2.14344E7 27 24 84 98637 0 0 415 0 0 0 0 0 0 0 227 0 5 5 4000 3048 0 19999999 103 0 0 88 0.2 0 0 +2.1438E7 26.4 25 92 97828 0 0 407 0 0 0 0 0 0 0 278 0 3 3 4000 2000 0 19999999 113 0 0 88 0.2 0 0 +2.14416E7 26 24 89 98628 0 0 403 0 0 0 0 0 0 0 118 0 3 3 4000 2000 0 19999999 103 0 0 88 0.2 0 0 +2.14452E7 26 24 89 98628 0 0 410 0 0 0 0 0 0 0 290 2.1 5 5 3500 3048 0 19999999 103 0 0 88 0.2 0 0 +2.14488E7 26 24.3 90 97903 0 0 410 0 0 0 0 0 0 0 29 0 5 5 2000 3000 9 999999999 106 0 0 88 0.2 0 0 +2.14524E7 27 24 84 98637 125 553 440 14 0 14 1370 0 1380 550 250 1.5 9 9 3000 3048 9 999999999 103 0 0 88 0.2 0 0 +2.1456E7 27 24 84 98637 428 1346 440 110 5 108 12184 188 12061 4049 260 2.1 9 9 3000 3048 9 999999999 103 0 0 88 0.2 0 0 +2.14596E7 28.8 24.8 79 98044 706 1346 451 231 17 222 25576 1056 24733 8729 270 3.1 9 9 2000 3000 9 999999999 111 0 0 88 0.2 0 0 +2.14632E7 30 25 75 98663 941 1346 459 340 86 280 38561 5599 31966 12173 320 4.1 9 9 4000 3048 9 999999999 113 0 0 88 0.2 0 0 +2.14668E7 31 25 70 98672 1117 1346 439 764 584 280 88983 35721 32773 13082 310 4.1 5 5 4000 3048 9 999999999 113 0 0 88 0.2 0 0 +2.14704E7 32.4 23.5 60 98046 1222 1346 445 857 665 254 102250 39231 30464 12360 270 3.1 5 5 4000 3000 9 999999999 97 0 0 88 0.2 0 0 +2.1474E7 33 25 63 98689 1249 1346 451 878 658 267 104507 37792 32029 12947 280 2.6 5 5 4000 3048 9 999999999 113 0 0 88 0.2 0 0 +2.14776E7 34 25 60 98697 1196 1346 457 832 658 248 98945 37172 29650 12080 280 3.6 5 5 4000 3048 9 999999999 113 0 0 88 0.2 0 0 +2.14812E7 33.6 25.8 64 97822 1067 1346 455 720 631 220 84722 34350 26091 10722 270 3.1 5 5 4000 1050 9 999999999 121 0 0 88 0.2 0 0 +2.14848E7 34 25 60 98697 870 1346 457 553 589 172 64429 31121 20189 8111 280 2.6 5 5 4000 1050 9 999999999 113 0 0 88 0.2 0 0 +2.14884E7 34 24 56 98697 619 1346 455 345 405 159 38750 21709 17937 6445 310 2.6 5 5 4000 1050 9 999999999 102 0 0 88 0.2 0 0 +2.1492E7 33.2 24.7 61 97653 331 1346 451 132 167 91 14406 4251 9960 3153 270 2.6 5 5 4000 1050 9 999999999 109 0 0 88 0.2 0 0 +2.14956E7 30 24 70 98663 25 1346 432 5 0 5 468 0 472 183 160 4.1 5 5 3500 1050 9 999999999 103 0 0 88 0.2 0 0 +2.14992E7 29 23 70 98654 0 112 425 0 0 0 0 0 0 0 230 3.1 5 5 3500 1050 9 999999999 93 0 0 88 0.2 0 0 +2.15028E7 29.4 23.3 70 97884 0 0 428 0 0 0 0 0 0 0 104 0 5 5 2000 1050 9 999999999 95 0 0 88 0.2 0 0 +2.15064E7 29 23 70 98654 0 0 425 0 0 0 0 0 0 0 240 2.6 5 5 3500 1050 9 999999999 93 0 0 88 0.2 0 0 +2.151E7 29 23 70 98654 0 0 425 0 0 0 0 0 0 0 260 2.1 5 5 3500 1050 9 999999999 93 0 0 88 0.2 0 0 +2.15136E7 28.6 24 76 97945 0 0 424 0 0 0 0 0 0 0 230 1.5 5 5 2000 1050 9 999999999 102 0 0 88 0.2 0 0 +2.15172E7 28 23 74 98646 0 0 419 0 0 0 0 0 0 0 210 1.5 5 5 3500 1050 9 999999999 93 0 0 88 0.2 0 0 +2.15208E7 26 24 89 98628 0 0 410 0 0 0 0 0 0 0 180 1.5 5 5 3500 1050 9 999999999 103 0 0 88 0.2 0 0 +2.15244E7 25.4 22.4 83 97927 0 0 404 0 0 0 0 0 0 0 206 0 5 5 2000 1050 9 999999999 88 0 0 88 0.2 0 0 +2.1528E7 26 23 84 98628 0 0 432 0 0 0 0 0 0 0 120 3.1 9 9 3500 3048 9 999999999 93 0 0 88 0.2 0 0 +2.15316E7 25 23 89 98619 0 0 439 0 0 0 0 0 0 0 160 2.6 10 10 3500 3048 0 919999999 94 0 0 88 0.2 0 0 +2.15352E7 24.6 23.7 95 97355 0 0 425 0 0 0 0 0 0 0 180 3.6 9 9 2000 3000 0 919999999 99 0 0 88 0.2 5 0 +2.15388E7 24 23 94 98610 123 542 421 14 0 14 1332 0 1341 534 170 3.1 9 9 2500 3048 0 919999999 94 0 0 88 0.2 0 0 +2.15424E7 24 23 94 98610 426 1346 421 109 5 108 12139 193 12017 4025 180 2.1 9 9 3000 3048 0 919999999 94 0 0 88 0.2 0 0 +2.1546E7 25.6 24.7 95 98162 704 1346 432 230 17 221 25491 1056 24652 8693 270 2.1 9 9 2000 3000 0 919999999 110 0 0 88 0.2 0 0 +2.15496E7 27 24 84 98637 939 1346 440 340 28 321 38152 1987 36227 13287 270 3.1 9 9 3500 3048 0 919999999 103 0 0 88 0.2 0 0 +2.15532E7 27 25 89 98637 1115 1346 441 423 66 368 48160 4634 42248 15903 280 2.1 9 9 3500 3048 0 919999999 114 0 0 88 0.2 0 0 +2.15568E7 28.6 26.1 86 98169 1220 1346 452 472 90 390 54234 6108 45164 17032 270 2.1 9 9 2000 1050 0 919999999 126 0 0 88 0.2 0 0 +2.15604E7 29 25 79 98654 1247 1346 428 875 563 354 101902 36907 41545 16037 270 2.6 5 5 4000 3048 0 919999999 114 0 0 88 0.2 0 0 +2.1564E7 30 24 70 98663 1193 1346 432 831 567 328 96716 37445 38486 14993 270 2.1 5 5 4000 3048 0 919999999 103 0 0 88 0.2 0 0 +2.15676E7 31.8 25.3 69 97963 1063 1346 470 398 88 328 45381 5920 37697 14448 320 2.6 9 9 4000 3048 0 919999999 116 0 0 88 0.2 0 0 +2.15712E7 32 26 71 98680 866 1346 472 304 29 286 33955 1919 32077 11721 300 2.6 9 9 4000 3048 0 919999999 125 0 0 88 0.2 0 0 +2.15748E7 33 26 67 98689 614 1346 479 189 35 173 20953 1854 19273 6794 340 4.1 9 9 4000 3048 0 919999999 125 0 0 88 0.2 0 0 +2.15784E7 31.4 25.2 70 97764 325 1346 468 71 0 71 6909 0 6965 2642 320 2.1 9 9 4000 3000 0 919999999 115 0 0 88 0.2 0 0 +2.1582E7 31 26 75 98672 19 1346 466 2 0 2 198 0 200 82 330 3.1 9 9 4000 3048 0 919999999 125 0 0 88 0.2 0 0 +2.15856E7 31 25 70 98672 0 86 465 0 0 0 0 0 0 0 360 2.1 9 9 4000 3048 0 919999999 113 0 0 88 0.2 0 0 +2.15892E7 28.8 25.4 82 97937 0 0 452 0 0 0 0 0 0 0 360 2.1 9 9 4000 3000 0 919999999 118 0 0 88 0.2 0 0 +2.15928E7 30 26 79 98663 0 0 460 0 0 0 0 0 0 0 30 2.1 9 9 3500 3048 0 919999999 125 0 0 88 0.2 0 0 +2.15964E7 30 26 79 98663 0 0 435 0 0 0 0 0 0 0 10 1.5 5 5 3500 3048 0 919999999 125 0 0 88 0.2 0 0 +2.16E7 28.2 25.4 85 97980 0 0 424 0 0 0 0 0 0 0 106 0 5 5 2000 3000 0 919999999 118 0 0 88 0.2 0 0 +2.16036E7 29 26 84 98654 0 0 429 0 0 0 0 0 0 0 162 0 5 5 3000 3048 0 919999999 125 0 0 88 0.2 0 0 +2.16072E7 28 26 89 98646 0 0 423 0 0 0 0 0 0 0 339 0 5 5 3000 3048 0 919999999 126 0 0 88 0.2 0 0 +2.16108E7 26.8 24.8 89 97920 0 0 415 0 0 0 0 0 0 0 198 0 5 5 2000 3048 0 919999999 111 0 0 88 0.2 0 0 +2.16144E7 28 26 89 98646 0 0 423 0 0 0 0 0 0 0 250 1.5 5 5 3000 3048 0 919999999 126 0 0 88 0.2 0 0 +2.1618E7 27 26 94 98637 0 0 418 0 0 0 0 0 0 0 260 1.5 5 5 3000 3048 0 919999999 126 0 0 88 0.2 0 0 +2.16216E7 26.8 25.7 94 97997 0 0 416 0 0 0 0 0 0 0 214 0 5 5 2000 3048 9 999999999 122 0 0 88 0.2 0 0 +2.16252E7 27 26 94 98637 121 531 418 24 0 24 2308 0 2325 843 40 0 5 5 1800 3048 9 999999999 126 0 0 88 0.2 0 0 +2.16288E7 27 26 94 98637 424 1347 411 207 270 122 22597 10291 13390 4358 250 2.1 3 3 1200 3048 9 999999999 126 0 0 88 0.2 0 0 +2.16324E7 28.6 26.1 86 98188 702 1347 403 443 639 110 51804 26788 12887 5087 290 2.6 0 0 4000 3048 9 999999999 126 0 0 88 0.2 0 0 +2.1636E7 30 26 79 98663 937 1347 435 609 594 196 70873 31656 22959 9294 320 3.1 5 5 2500 2000 9 999999999 125 0 0 88 0.2 0 0 +2.16396E7 32 26 71 98680 1113 1347 446 759 630 239 89326 34858 28282 11562 320 3.1 5 5 3000 3048 9 999999999 125 0 0 88 0.2 0 0 +2.16432E7 32.8 26.1 68 98234 1218 1347 451 849 655 258 100741 36109 30758 12500 320 3.1 5 5 2000 3048 9 999999999 126 0 0 88 0.2 0 0 +2.16468E7 33 25 63 98689 1244 1347 451 873 660 265 103928 37787 31711 12832 320 3.1 5 5 3500 3048 9 999999999 113 0 0 88 0.2 0 0 +2.16504E7 34 26 63 98697 1190 1347 458 825 655 247 97882 35900 29494 12036 320 3.1 5 5 3500 3048 9 999999999 124 0 0 88 0.2 0 0 +2.1654E7 34 24 56 98001 1059 1347 455 716 637 216 84482 36367 25607 10509 340 4.1 5 5 4000 3048 9 999999999 101 0 0 88 0.2 0 0 +2.16576E7 35 23 50 98705 861 1347 460 548 594 168 64011 32987 19740 7906 340 4.1 5 5 4500 3048 9 999999999 92 0 0 88 0.2 0 0 +2.16612E7 35 24 53 98705 609 1347 454 358 531 118 41076 24335 13620 5103 320 3.1 3 3 5000 3048 9 999999999 102 0 0 88 0.2 0 0 +2.16648E7 32.6 24.3 62 97833 320 1347 440 133 200 86 14543 4646 9395 2978 320 4.1 3 3 2000 2000 9 999999999 105 0 0 88 0.2 0 0 +2.16684E7 33 24 59 98689 13 1347 442 3 0 3 264 0 266 106 340 3.1 3 3 5000 2000 9 999999999 102 0 0 88 0.2 0 0 +2.1672E7 32 24 63 98680 0 60 437 0 0 0 0 0 0 0 340 3.1 3 3 4500 2000 9 999999999 102 0 0 88 0.2 0 0 +2.16756E7 30.2 23.6 68 97900 0 0 426 0 0 0 0 0 0 0 340 3.6 3 3 4000 2000 9 999999999 98 0 0 88 0.2 0 0 +2.16792E7 31 25 70 98672 0 0 432 0 0 0 0 0 0 0 330 2.6 3 3 3500 2000 9 999999999 113 0 0 88 0.2 0 0 +2.16828E7 30 24 70 98663 0 0 425 0 0 0 0 0 0 0 340 2.1 3 3 3500 2000 9 999999999 103 0 0 88 0.2 0 0 +2.16864E7 28.4 25.3 83 97943 0 0 418 0 0 0 0 0 0 0 340 2.1 3 3 2000 2000 9 999999999 116 0 0 88 0.2 0 0 +2.169E7 29 25 79 98654 0 0 421 0 0 0 0 0 0 0 270 1 3 3 3500 2000 9 999999999 114 0 0 88 0.2 0 0 +2.16936E7 27 25 89 98637 0 0 410 0 0 0 0 0 0 0 297 0 3 3 3200 2000 9 999999999 114 0 0 88 0.2 0 0 +2.16972E7 27.4 24.5 84 97866 0 0 412 0 0 0 0 0 0 0 6 0 3 3 2000 2000 9 999999999 108 0 0 88 0.2 0 0 +2.17008E7 27 25 89 98637 0 0 410 0 0 0 0 0 0 0 218 0 3 3 3200 2000 9 999999999 114 0 0 88 0.2 0 0 +2.17044E7 27 25 89 98637 0 0 410 0 0 0 0 0 0 0 218 0 3 3 3200 2000 9 999999999 114 0 0 88 0.2 0 0 +2.1708E7 27.2 25.5 90 97952 0 0 412 0 0 0 0 0 0 0 237 0 3 3 2000 2000 9 999999999 119 0 0 88 0.2 0 0 +2.17116E7 27 25 89 98637 118 520 410 25 0 25 2375 0 2393 856 270 1.5 3 3 3200 2000 9 999999999 114 0 0 88 0.2 0 0 +2.17152E7 27 25 89 98637 422 1348 410 206 271 121 22521 10712 13323 4326 270 1.5 3 3 3000 2000 9 999999999 114 0 0 88 0.2 0 0 +2.17188E7 29.8 25.9 80 98082 700 1348 427 436 610 119 50652 26702 13897 5442 280 2.1 3 3 2000 2000 9 999999999 124 0 0 88 0.2 0 0 +2.17224E7 31 26 75 98672 935 1348 434 644 739 132 77296 33569 15920 6659 280 3.1 3 3 3200 2000 9 999999999 125 0 0 88 0.2 0 0 +2.1726E7 32 26 71 98680 1111 1348 439 803 780 162 97379 36877 19673 8319 300 3.1 3 3 3500 2000 9 999999999 125 0 0 88 0.2 0 0 +2.17296E7 33.4 24 58 98025 1215 1348 452 850 633 280 100485 38542 33320 13350 320 3.1 5 5 2000 2000 9 999999999 102 0 0 88 0.2 0 0 +2.17332E7 33 25 63 98689 1241 1348 451 871 660 263 103628 37783 31547 12773 320 3.1 5 5 4000 3048 9 999999999 113 0 0 88 0.2 0 0 +2.17368E7 34 25 60 98697 1187 1348 457 824 660 244 97917 37130 29121 11886 340 3.1 5 5 4000 3048 9 999999999 113 0 0 88 0.2 0 0 +2.17404E7 34.4 25.1 59 97770 1055 1348 459 711 635 215 83783 35082 25419 10448 320 3.1 5 5 4000 3000 9 999999999 113 0 0 88 0.2 0 0 +2.1744E7 35 25 56 98705 857 1348 463 542 570 180 62782 30778 20981 8341 310 4.1 5 5 4000 3048 9 999999999 112 0 0 88 0.2 0 0 +2.17476E7 35 25 56 98705 604 1348 463 333 397 156 37273 20309 17496 6255 320 3.6 5 5 4000 3048 9 999999999 112 0 0 88 0.2 0 0 +2.17512E7 33 23.8 59 97622 314 1348 449 122 155 86 13331 3668 9431 2961 320 4.1 5 5 4000 3048 9 999999999 99 0 0 88 0.2 0 0 +2.17548E7 33 24 59 98689 7 1348 449 1 0 1 138 0 139 57 320 3.6 5 5 4000 3048 9 999999999 102 0 0 88 0.2 0 0 +2.17584E7 32 25 67 98680 0 33 445 0 0 0 0 0 0 0 330 2.6 5 5 4000 3048 9 999999999 113 0 0 88 0.2 0 0 +2.1762E7 30.4 25.6 76 97707 0 0 436 0 0 0 0 0 0 0 320 2.1 5 5 2000 3048 9 999999999 119 0 0 88 0.2 0 0 +2.17656E7 31 25 70 98672 0 0 439 0 0 0 0 0 0 0 310 2.1 5 5 3000 3048 9 999999999 113 0 0 88 0.2 0 0 +2.17692E7 30 25 75 98663 0 0 427 0 0 0 0 0 0 0 252 0 3 3 3000 3048 9 999999999 113 0 0 88 0.2 0 0 +2.17728E7 28.8 25.4 82 97810 0 0 420 0 0 0 0 0 0 0 195 0 3 3 2000 2000 9 999999999 117 0 0 88 0.2 0 0 +2.17764E7 29 25 79 98654 0 0 421 0 0 0 0 0 0 0 207 0 3 3 3000 2000 9 999999999 114 0 0 88 0.2 0 0 +2.178E7 29 25 79 98654 0 0 421 0 0 0 0 0 0 0 187 0 3 3 3000 2000 9 999999999 114 0 0 88 0.2 0 0 +2.17836E7 28.4 25.3 83 97856 0 0 418 0 0 0 0 0 0 0 283 0 3 3 2000 2000 9 999999999 116 0 0 88 0.2 0 0 +2.17872E7 29 25 79 98654 0 0 404 0 0 0 0 0 0 0 190 2.1 0 0 3000 2000 9 999999999 114 0 0 88 0.2 0 0 +2.17908E7 29 25 79 98654 0 0 404 0 0 0 0 0 0 0 35 0 0 0 3000 2000 9 999999999 114 0 0 88 0.2 0 0 +2.17944E7 27.2 24.6 86 97894 0 0 394 0 0 0 0 0 0 0 119 0 0 0 2000 2000 9 999999999 109 0 0 88 0.2 0 0 +2.1798E7 28 25 84 98646 116 510 398 25 0 25 2351 0 2368 845 90 1.5 0 0 2100 2000 9 999999999 114 0 0 88 0.2 0 0 +2.18016E7 28 25 84 98646 419 1348 398 207 343 101 23003 11595 11208 3798 104 0 0 0 1500 2000 9 999999999 114 0 0 88 0.2 0 0 +2.18052E7 31.4 24.6 67 98047 698 1348 416 441 645 107 51750 28407 12637 4977 326 0 0 0 2000 2000 9 999999999 108 0 0 88 0.2 0 0 +2.18088E7 33 24 59 98689 933 1348 424 653 780 114 79459 36355 13916 5839 67 0 0 0 2500 2000 9 999999999 102 0 0 88 0.2 0 0 +2.18124E7 35 25 56 98705 1109 1348 455 803 811 137 98673 37724 16853 7169 251 0 3 3 3000 2000 9 999999999 112 0 0 88 0.2 0 0 +2.1816E7 35.6 19.7 39 98072 1213 1348 452 906 821 168 111831 46154 20885 8721 270 2.6 3 3 2000 2000 9 999999999 66 0 0 88 0.2 0 0 +2.18196E7 37 24 48 98722 1238 1348 473 870 632 290 102853 38825 34538 13780 290 2.1 5 5 3500 2000 9 999999999 101 0 0 88 0.2 0 0 +2.18232E7 37 24 48 98722 1183 1348 473 822 665 240 97954 38302 28719 11726 300 2.6 5 5 3500 2000 9 999999999 101 0 0 88 0.2 0 0 +2.18268E7 37 22.6 44 97860 1051 1348 471 711 644 209 84148 37793 24903 10223 320 3.1 5 5 4000 2000 9 999999999 88 0 0 88 0.2 0 0 +2.18304E7 36 21 42 98714 852 1348 463 542 583 174 63224 34485 20421 8096 320 3.1 5 5 4000 3048 9 999999999 75 0 0 88 0.2 0 0 +2.1834E7 36 22 44 98714 599 1348 464 331 438 137 37533 22834 15560 5658 340 4.1 5 5 4000 3048 9 999999999 83 0 0 88 0.2 0 0 +2.18376E7 35.2 22.5 48 97728 309 1348 453 126 191 83 13826 4552 9073 2854 320 4.1 3 3 4000 3048 9 999999999 87 0 0 88 0.2 0 0 +2.18412E7 34 22 50 98697 0 1354 445 0 0 0 0 0 0 0 320 3.1 3 3 4000 3048 9 999999999 83 0 0 88 0.2 0 0 +2.18448E7 33 23 56 98689 0 0 441 0 0 0 0 0 0 0 30 2.1 3 3 4000 3048 9 999999999 92 0 0 88 0.2 0 0 +2.18484E7 31.2 24.3 67 97880 0 0 432 0 0 0 0 0 0 0 70 1.5 3 3 2000 3048 9 999999999 105 0 0 88 0.2 0 0 +2.1852E7 31 25 70 98672 0 0 432 0 0 0 0 0 0 0 90 2.1 3 3 3500 3048 9 999999999 113 0 0 88 0.2 0 0 +2.18556E7 31 25 70 98672 0 0 414 0 0 0 0 0 0 0 110 1.5 0 0 3500 3048 9 999999999 113 0 0 88 0.2 0 0 +2.18592E7 30 24.9 74 98064 0 0 409 0 0 0 0 0 0 0 140 2.1 0 0 2000 3048 9 999999999 112 0 0 88 0.2 0 0 +2.18628E7 30 25 75 98663 0 0 409 0 0 0 0 0 0 0 100 1.5 0 0 3500 2000 9 999999999 113 0 0 88 0.2 0 0 +2.18664E7 30 25 75 98663 0 0 409 0 0 0 0 0 0 0 80 1.5 0 0 3500 2000 9 999999999 113 0 0 88 0.2 0 0 +2.187E7 29.2 25.2 79 98077 0 0 405 0 0 0 0 0 0 0 76 0 0 0 2000 2000 9 999999999 115 0 0 88 0.2 0 0 +2.18736E7 29 25 79 98654 0 0 428 0 0 0 0 0 0 0 80 1.5 5 5 3500 3048 0 99999999 114 0 0 88 0.2 0 0 +2.18772E7 29 25 79 98654 0 0 428 0 0 0 0 0 0 0 120 1.5 5 5 3500 1219 0 99999999 114 0 0 88 0.2 0 0 +2.18808E7 28.2 25.1 83 98068 0 0 423 0 0 0 0 0 0 0 110 2.1 5 5 2000 2000 9 999999999 114 0 0 88 0.2 0 0 +2.18844E7 29 25 79 98654 114 499 428 23 0 23 2148 0 2164 785 140 2.1 5 5 3000 3048 9 999999999 114 0 0 88 0.2 0 0 +2.1888E7 29 25 79 98654 417 1349 453 106 5 105 11749 189 11613 3895 359 0 9 9 3000 3048 9 999999999 114 0 0 88 0.2 0 0 +2.18916E7 31.2 25.6 72 98182 696 1349 441 408 406 199 45506 23334 22275 8033 90 2.1 5 5 2000 3000 9 999999999 120 0 0 88 0.2 0 0 +2.18952E7 33 25 63 98689 931 1349 451 605 613 183 70878 32789 21481 8736 86 0 5 5 4000 3048 9 999999999 113 0 0 88 0.2 0 0 +2.18988E7 34 23 53 98697 1107 1349 454 758 643 231 89680 38290 27448 11218 218 0 5 5 4000 3048 9 999999999 92 0 0 88 0.2 0 0 +2.19024E7 35.6 24.9 54 98219 1210 1349 466 844 662 251 100462 37610 30049 12226 340 2.1 5 5 4000 2000 9 999999999 111 0 0 88 0.2 0 0 +2.1906E7 35 22 47 98705 1235 1349 458 870 675 253 104199 41153 30464 12345 320 2.6 5 5 3500 2000 9 999999999 83 0 0 88 0.2 0 0 +2.19096E7 35 21 44 98705 1180 1349 457 823 678 232 98648 41458 27911 11396 320 4.1 5 5 4000 3048 9 999999999 75 0 0 88 0.2 0 0 +2.19132E7 36 24.4 51 98095 1047 1349 468 705 588 249 82097 35524 29156 11720 320 5.1 5 5 4000 3000 9 999999999 105 0 0 88 0.2 0 0 +2.19168E7 35 24 53 98705 847 1349 488 297 81 246 33545 5249 27962 10464 350 5.7 9 9 4000 3000 9 999999999 102 0 0 88 0.2 0 0 +2.19204E7 34 26 63 98697 594 1349 485 180 33 166 19968 1699 18449 6463 330 4.1 9 9 4000 3048 9 999999999 124 0 0 88 0.2 0 0 +2.1924E7 32.6 25 64 97930 303 1349 475 64 0 64 6179 0 6229 2363 320 3.1 9 9 4000 3000 9 999999999 112 0 0 88 0.2 0 0 +2.19276E7 33 25 63 98689 0 1328 477 0 0 0 0 0 0 0 330 3.1 9 9 4000 3048 9 999999999 113 0 0 88 0.2 0 0 +2.19312E7 33 24 59 98689 0 0 449 0 0 0 0 0 0 0 340 3.6 5 5 4000 3048 9 999999999 102 0 0 88 0.2 0 0 +2.19348E7 29.4 23.3 70 98030 0 0 428 0 0 0 0 0 0 0 270 1.5 5 5 2000 3000 9 999999999 95 0 0 88 0.2 0 0 +2.19384E7 29 23 70 98654 0 0 425 0 0 0 0 0 0 0 230 2.1 5 5 3500 3048 9 999999999 93 0 0 88 0.2 0 0 +2.1942E7 28 23 74 98646 0 0 419 0 0 0 0 0 0 0 270 2.1 5 5 3500 3048 9 999999999 93 0 0 88 0.2 0 0 +2.19456E7 27.8 25.2 86 98133 0 0 421 0 0 0 0 0 0 0 270 1.5 5 5 2000 3048 9 999999999 116 0 0 88 0.2 0 0 +2.19492E7 27 24 84 98637 0 0 415 0 0 0 0 0 0 0 240 2.1 5 5 3500 3048 9 999999999 103 0 0 88 0.2 0 0 +2.19528E7 27 25 89 98637 0 0 416 0 0 0 0 0 0 0 270 2.1 5 5 3500 3048 9 999999999 114 0 0 88 0.2 0 0 +2.19564E7 27 25.6 92 98135 0 0 417 0 0 0 0 0 0 0 290 2.1 5 5 2000 3048 9 999999999 120 0 0 88 0.2 0 0 +2.196E7 27 25 89 98637 0 0 416 0 0 0 0 0 0 0 270 1.5 5 5 3000 3048 9 999999999 114 0 0 88 0.2 0 0 +2.19636E7 27 25 89 98637 0 0 416 0 0 0 0 0 0 0 310 2.1 5 5 3000 3048 9 999999999 114 0 0 88 0.2 0 0 +2.19672E7 26.6 24.3 87 98200 0 0 407 0 0 0 0 0 0 0 290 1.5 3 3 2000 2000 9 999999999 106 0 0 88 0.2 0 0 +2.19708E7 26 24 89 98628 111 488 403 24 0 24 2241 0 2258 805 250 2.1 3 3 2500 2000 9 999999999 103 0 0 88 0.2 0 0 +2.19744E7 27 24 84 98637 415 1350 409 202 329 101 22427 11604 11273 3794 270 2.1 3 3 2200 2000 9 999999999 103 0 0 88 0.2 0 0 +2.1978E7 28.8 24.8 79 98297 694 1350 420 432 613 117 50286 27748 13679 5341 290 2.1 3 3 2000 2000 9 999999999 111 0 0 88 0.2 0 0 +2.19816E7 31 24 66 98672 929 1350 431 641 748 127 77317 36081 15350 6405 310 3.1 3 3 2500 2000 9 999999999 102 0 0 88 0.2 0 0 +2.19852E7 33 23 56 98689 1104 1350 441 802 706 225 95035 41619 26787 10978 340 3.1 3 3 2800 2000 9 999999999 92 0 0 88 0.2 0 0 +2.19888E7 32.4 24.4 63 98231 1208 1350 473 468 162 323 54565 10471 37891 14834 320 3.1 9 9 2000 2000 9 999999999 106 0 0 88 0.2 0 0 +2.19924E7 34 25 60 98697 1232 1350 457 863 567 346 100407 36959 40548 15703 320 3.1 5 5 3500 3048 9 999999999 113 0 0 88 0.2 0 0 +2.1996E7 35 26 60 98705 1176 1350 464 813 658 241 96450 35833 28749 11762 320 3.1 5 5 3500 3048 9 999999999 124 0 0 88 0.2 0 0 +2.19996E7 35 24 53 98705 1043 1350 461 702 640 208 82882 36212 24693 10146 330 4.1 5 5 4500 3048 9 999999999 102 0 0 88 0.2 0 0 +2.20032E7 36 25 53 98714 843 1350 469 531 566 178 61370 30466 20659 8180 320 4.1 5 5 5000 3048 9 999999999 112 0 0 88 0.2 0 0 +2.20068E7 35 25 56 98705 588 1350 463 321 390 152 35889 19607 17022 6049 320 4.1 5 5 5000 3048 9 999999999 112 0 0 88 0.2 0 0 +2.20104E7 33.8 23.1 54 97863 297 1350 453 112 142 81 12241 3004 8881 2766 320 4.6 5 5 4000 900 9 999999999 93 0 0 88 0.2 0 0 +2.2014E7 33 24 59 98689 0 1302 449 0 0 0 0 0 0 0 320 4.1 5 5 4500 3048 9 999999999 102 0 0 88 0.2 0 0 +2.20176E7 32 24 63 98680 0 0 437 0 0 0 0 0 0 0 320 3.6 3 3 4000 3048 9 999999999 102 0 0 88 0.2 0 0 +2.20212E7 31.2 24.3 67 97977 0 0 432 0 0 0 0 0 0 0 320 2.1 3 3 4000 2000 9 999999999 105 0 0 88 0.2 0 0 +2.20248E7 31 24 66 98672 0 0 431 0 0 0 0 0 0 0 280 2.1 3 3 4000 2000 9 999999999 102 0 0 88 0.2 0 0 +2.20284E7 31 24 66 98672 0 0 431 0 0 0 0 0 0 0 330 1.5 3 3 4000 2000 9 999999999 102 0 0 88 0.2 0 0 +2.2032E7 29.2 24.9 78 98096 0 0 422 0 0 0 0 0 0 0 33 0 3 3 4000 2000 9 999999999 112 0 0 88 0.2 0 0 +2.20356E7 30 24 70 98663 0 0 425 0 0 0 0 0 0 0 251 0 3 3 3500 2000 9 999999999 103 0 0 88 0.2 0 0 +2.20392E7 29 24 74 98654 0 0 420 0 0 0 0 0 0 0 69 0 3 3 3500 2000 9 999999999 103 0 0 88 0.2 0 0 +2.20428E7 28.6 24.9 80 98101 0 0 419 0 0 0 0 0 0 0 314 0 3 3 2000 2000 9 999999999 112 0 0 88 0.2 0 0 +2.20464E7 29 25 79 98654 0 0 421 0 0 0 0 0 0 0 212 0 3 3 3500 2000 9 999999999 114 0 0 88 0.2 0 0 +2.205E7 28 24 79 98646 0 0 414 0 0 0 0 0 0 0 5 0 3 3 3500 2000 9 999999999 103 0 0 88 0.2 0 0 +2.20536E7 27.6 25.3 87 98121 0 0 414 0 0 0 0 0 0 0 324 0 3 3 2000 2000 9 999999999 117 0 0 88 0.2 0 0 +2.20572E7 28 25 84 98646 109 478 415 23 0 23 2193 0 2209 789 61 0 3 3 3500 2000 9 999999999 114 0 0 88 0.2 0 0 +2.20608E7 28 25 84 98646 413 1351 415 200 326 101 22190 10898 11217 3775 354 0 3 3 2500 2000 9 999999999 114 0 0 88 0.2 0 0 +2.20644E7 31.4 24.9 68 98261 692 1351 416 436 642 107 51070 27888 12590 4948 270 1.5 0 0 2000 2000 9 999999999 112 0 0 88 0.2 0 0 +2.2068E7 32 25 67 98680 927 1351 420 647 777 114 78440 34967 13924 5840 280 2.1 0 0 3000 2000 9 999999999 113 0 0 88 0.2 0 0 +2.20716E7 34 25 60 98697 1102 1351 450 797 787 155 96855 38209 18987 8033 300 2.1 3 3 3500 2000 9 999999999 113 0 0 88 0.2 0 0 +2.20752E7 36 24.4 51 98222 1205 1351 468 841 635 275 99298 38108 32663 13123 320 3.6 5 5 4000 2000 9 999999999 105 0 0 88 0.2 0 0 +2.20788E7 35 24 53 98705 1229 1351 461 862 668 255 102772 38951 30614 12421 330 3.6 5 5 4000 3048 9 999999999 102 0 0 88 0.2 0 0 +2.20824E7 36 25 53 98714 1172 1351 469 812 663 237 96457 37065 28366 11607 330 3.6 5 5 4000 3048 9 999999999 112 0 0 88 0.2 0 0 +2.2086E7 36.6 22.8 45 97993 1039 1351 469 700 645 205 82825 37459 24332 9992 320 3.1 5 5 4000 3000 9 999999999 90 0 0 88 0.2 0 0 +2.20896E7 37 23 45 98722 838 1351 472 528 572 174 61347 32351 20318 8027 330 3.6 5 5 4000 3048 9 999999999 92 0 0 88 0.2 0 0 +2.20932E7 36 24 50 98714 583 1351 467 318 390 150 35545 20083 16843 5967 340 3.6 5 5 4000 3048 9 999999999 102 0 0 88 0.2 0 0 +2.20968E7 34.2 25.2 60 97749 291 1351 458 108 135 79 11794 2243 8669 2702 340 3.1 5 5 4000 3048 9 999999999 114 0 0 88 0.2 0 0 +2.21004E7 34 25 60 98697 0 1276 450 0 0 0 0 0 0 0 330 3.1 3 3 4000 3048 9 999999999 113 0 0 88 0.2 0 0 +2.2104E7 33 25 63 98689 0 0 444 0 0 0 0 0 0 0 340 2.6 3 3 4000 3048 9 999999999 113 0 0 88 0.2 0 0 +2.21076E7 31.2 25.6 72 97948 0 0 434 0 0 0 0 0 0 0 360 2.1 3 3 4000 2000 9 999999999 119 0 0 88 0.2 0 0 +2.21112E7 32 25 67 98680 0 0 438 0 0 0 0 0 0 0 10 1.5 3 3 3500 2000 9 999999999 113 0 0 88 0.2 0 0 +2.21148E7 32 25 67 98680 0 0 438 0 0 0 0 0 0 0 56 0 3 3 3500 2000 9 999999999 113 0 0 88 0.2 0 0 +2.21184E7 29.2 25.8 82 98077 0 0 423 0 0 0 0 0 0 0 216 0 3 3 2000 2000 9 999999999 122 0 0 88 0.2 0 0 +2.2122E7 30 24 70 98663 0 0 425 0 0 0 0 0 0 0 153 0 3 3 3500 2000 9 999999999 103 0 0 88 0.2 0 0 +2.21256E7 30 24 70 98663 0 0 425 0 0 0 0 0 0 0 74 0 3 3 3500 2000 9 999999999 103 0 0 88 0.2 0 0 +2.21292E7 28.8 25.7 83 98054 0 0 421 0 0 0 0 0 0 0 90 0 3 3 2000 2000 9 999999999 121 0 0 88 0.2 0 0 +2.21328E7 30 26 79 98663 0 0 428 0 0 0 0 0 0 0 102 0 3 3 3500 2000 9 999999999 125 0 0 88 0.2 0 0 +2.21364E7 29 25 79 98654 0 0 421 0 0 0 0 0 0 0 2 0 3 3 3000 2000 9 999999999 114 0 0 88 0.2 0 0 +2.214E7 28 25.2 85 98027 0 0 422 0 0 0 0 0 0 0 18 0 5 5 2000 2000 9 999999999 115 0 0 88 0.2 0 0 +2.21436E7 29 25 79 98654 107 467 428 21 0 21 2027 0 2042 739 226 0 5 5 2500 3048 9 999999999 114 0 0 88 0.2 0 0 +2.21472E7 30 26 79 98663 411 1351 435 187 249 112 20516 8610 12277 4033 209 0 5 5 1500 3048 9 999999999 125 0 0 88 0.2 0 0 +2.21508E7 30.6 25.8 76 98478 690 1351 438 403 405 196 44936 23029 22015 7924 94 0 5 5 2000 3000 9 999999999 123 0 0 88 0.2 0 0 +2.21544E7 32 26 71 98680 925 1351 472 332 85 274 37570 5399 31166 11843 210 0 9 9 2200 3048 9 999999999 125 0 0 88 0.2 0 0 +2.2158E7 33 25 63 98689 1100 1351 451 749 494 348 85492 33989 39976 15214 247 0 5 5 2500 3048 9 999999999 113 0 0 88 0.2 0 0 +2.21616E7 33.6 25.2 62 98173 1202 1351 481 464 91 383 53347 6327 44323 16720 46 0 9 9 2000 3000 9 999999999 115 0 0 88 0.2 0 0 +2.21652E7 35 26 60 98705 1226 1351 491 475 67 414 54332 4696 47734 17717 270 2.1 9 9 2500 3048 9 999999999 124 0 0 88 0.2 0 0 +2.21688E7 35 26 60 98705 1169 1351 491 448 67 390 51052 4625 44810 16762 280 2.1 9 9 2500 3048 9 999999999 124 0 0 88 0.2 0 0 +2.21724E7 34.8 24.6 56 97959 1035 1351 488 385 29 363 43399 2130 41171 15185 270 2.1 9 9 2000 3000 9 999999999 107 0 0 88 0.2 0 0 +2.2176E7 35 22 47 98705 833 1351 485 291 42 266 32718 2979 29985 10885 350 2.1 9 9 2800 3048 9 999999999 83 0 0 88 0.2 0 0 +2.21796E7 34 23 53 98697 578 1351 454 314 351 164 34888 19641 18328 6320 50 3.1 5 5 2800 3048 9 999999999 92 0 0 88 0.2 0 0 +2.21832E7 33.2 24.7 61 97741 285 1351 451 105 130 78 11443 2109 8484 2636 50 2.6 5 5 2000 3048 9 999999999 109 0 0 88 0.2 0 0 +2.21868E7 33 23 56 98689 0 1250 448 0 0 0 0 0 0 0 350 2.6 5 5 2500 3048 9 999999999 92 0 0 88 0.2 0 0 +2.21904E7 33 24 59 98689 0 0 449 0 0 0 0 0 0 0 350 2.6 5 5 2500 3048 9 999999999 102 0 0 88 0.2 0 0 +2.2194E7 30.6 25.2 73 97933 0 0 437 0 0 0 0 0 0 0 320 2.1 5 5 2000 2000 9 999999999 115 0 0 88 0.2 0 0 +2.21976E7 31 24 66 98672 0 0 438 0 0 0 0 0 0 0 60 1.5 5 5 2500 3048 9 999999999 102 0 0 88 0.2 0 0 +2.22012E7 31 25 70 98672 0 0 439 0 0 0 0 0 0 0 177 0 5 5 2500 3048 9 999999999 113 0 0 88 0.2 0 0 +2.22048E7 29.6 25.7 80 98002 0 0 432 0 0 0 0 0 0 0 298 0 5 5 2000 2000 9 999999999 121 0 0 88 0.2 0 0 +2.22084E7 30 25 75 98663 0 0 433 0 0 0 0 0 0 0 66 0 5 5 2500 3048 9 999999999 113 0 0 88 0.2 0 0 +2.2212E7 30 25 75 98663 0 0 433 0 0 0 0 0 0 0 310 0 5 5 2500 3048 9 999999999 113 0 0 88 0.2 0 0 +2.22156E7 29 25.3 80 97958 0 0 428 0 0 0 0 0 0 0 270 0 5 5 2000 2000 9 999999999 116 0 0 88 0.2 0 0 +2.22192E7 30 26 79 98663 0 0 435 0 0 0 0 0 0 0 300 1.5 5 5 2500 3048 9 999999999 125 0 0 88 0.2 0 0 +2.22228E7 29 25 79 98654 0 0 428 0 0 0 0 0 0 0 290 1.5 5 5 2500 3048 9 999999999 114 0 0 88 0.2 0 0 +2.22264E7 27.8 25.8 89 97938 0 0 422 0 0 0 0 0 0 0 179 0 5 5 2000 2000 9 999999999 123 0 0 88 0.2 0 0 +2.223E7 29 25 79 98654 104 456 421 22 0 22 2106 0 2122 756 34 0 3 3 2500 2000 9 999999999 114 0 0 88 0.2 0 0 +2.22336E7 30 24 70 98663 409 1352 425 198 325 100 21936 11216 11086 3719 30 2.1 3 3 3000 2000 9 999999999 103 0 0 88 0.2 0 0 +2.22372E7 30.6 25.8 76 98069 688 1352 413 431 637 108 50444 26722 12649 4965 269 0 0 0 2000 2000 9 999999999 122 0 0 88 0.2 0 0 +2.22408E7 32 25 67 98680 923 1352 420 643 777 113 77968 34899 13793 5781 300 2.1 0 0 1800 2000 9 999999999 113 0 0 88 0.2 0 0 +2.22444E7 33 25 63 98689 1097 1352 425 803 825 134 98586 38241 16534 7038 310 2.1 0 0 2200 2000 9 999999999 113 0 0 88 0.2 0 0 +2.2248E7 34.6 22.1 48 98702 1199 1352 430 902 784 207 109048 44737 25219 10419 320 2.1 0 0 2000 2000 9 999999999 84 0 0 88 0.2 0 0 +2.22516E7 35 25 56 98705 1223 1352 455 907 843 145 101828 91556 18905 5868 320 3.1 3 3 4000 2000 9 999999999 112 0 0 88 0.2 0 0 +2.22552E7 35 25 56 98705 1165 1352 455 854 832 138 105607 38470 17175 7286 310 3.1 3 3 4000 2000 9 999999999 112 0 0 88 0.2 0 0 +2.22588E7 35.8 19.2 38 97850 1030 1352 452 739 814 120 91312 43419 14873 6286 320 4.1 3 3 4000 2000 9 999999999 62 0 0 88 0.2 0 0 +2.22624E7 36 19.1 37 98714 828 1352 453 556 676 142 65714 38705 16903 6768 310 5.1 3 3 5000 2000 9 999999999 62 0 0 88 0.2 0 0 +2.2266E7 35 19 39 98705 572 1352 447 331 479 129 37639 25802 14708 5289 50 4.6 3 3 5000 2000 9 999999999 62 0 0 88 0.2 0 0 +2.22696E7 33.6 22.2 51 97705 280 1352 443 108 163 75 11851 2963 8204 2545 320 4.1 3 3 4000 2000 9 999999999 85 0 0 88 0.2 0 0 +2.22732E7 33 20 46 98689 0 1223 444 0 0 0 0 0 0 0 330 3.6 5 5 5000 2000 9 999999999 68 0 0 88 0.2 0 0 +2.22768E7 32 23 59 98680 0 0 442 0 0 0 0 0 0 0 330 3.6 5 5 4000 2000 9 999999999 93 0 0 88 0.2 0 0 +2.22804E7 31 23.8 66 97868 0 0 437 0 0 0 0 0 0 0 340 2.1 5 5 4000 2000 9 999999999 100 0 0 88 0.2 0 0 +2.2284E7 31 23 63 98672 0 0 436 0 0 0 0 0 0 0 330 2.6 5 5 4000 2000 9 999999999 93 0 0 88 0.2 0 0 +2.22876E7 30 23 66 98663 0 0 424 0 0 0 0 0 0 0 350 2.6 3 3 4000 2000 9 999999999 93 0 0 88 0.2 0 0 +2.22912E7 29.2 24.3 75 97892 0 0 428 0 0 0 0 0 0 0 360 2.6 5 5 4000 2000 9 999999999 105 0 0 88 0.2 0 0 +2.22948E7 30 23 66 98663 0 0 431 0 0 0 0 0 0 0 30 1.5 5 5 4000 2000 9 999999999 93 0 0 88 0.2 0 0 +2.22984E7 29 22 66 98654 0 0 424 0 0 0 0 0 0 0 360 2.6 5 5 4000 2000 9 999999999 84 0 0 88 0.2 0 0 +2.2302E7 28.4 24.4 79 97865 0 0 423 0 0 0 0 0 0 0 219 0 5 5 4000 2000 9 999999999 106 0 0 88 0.2 0 0 +2.23056E7 29 22 66 98654 0 0 424 0 0 0 0 0 0 0 360 2.1 5 5 4000 2000 9 999999999 84 0 0 88 0.2 0 0 +2.23092E7 29 22 66 98654 0 0 424 0 0 0 0 0 0 0 20 1.5 5 5 4000 2000 9 999999999 84 0 0 88 0.2 0 0 +2.23128E7 27 24.1 84 97892 0 0 440 0 0 0 0 0 0 0 340 1.5 9 9 2000 3000 9 999999999 104 0 0 88 0.2 0 0 +2.23164E7 28 24 79 98646 102 445 446 11 0 11 1081 0 1089 433 78 0 9 9 2000 3048 9 999999999 103 0 0 88 0.2 0 0 +2.232E7 28 24 79 98646 406 1353 446 103 2 102 11354 72 11333 3773 50 0 9 9 1200 3048 9 999999999 103 0 0 88 0.2 0 0 +2.23236E7 28 24.9 83 98086 686 1353 447 222 17 214 24604 1021 23805 8340 260 2.1 9 9 1000 3000 9 999999999 112 0 0 88 0.2 0 0 +2.23272E7 29 25 79 98654 920 1353 453 331 27 312 37033 1923 35170 12861 270 3.1 9 9 1800 3048 9 999999999 114 0 0 88 0.2 0 0 +2.23308E7 30 25 75 98663 1095 1353 459 413 66 360 46986 4655 41181 15518 320 2.1 9 9 2500 3048 9 999999999 113 0 0 88 0.2 0 0 +2.23344E7 30.8 25.1 72 98051 1197 1353 464 462 67 402 52789 4810 46317 17229 290 2.1 9 9 2000 3000 9 999999999 114 0 0 88 0.2 0 0 +2.2338E7 31 24 66 98672 1219 1353 464 473 68 412 54276 4997 47602 17619 290 2.1 9 9 3000 3048 9 999999999 102 0 0 88 0.2 0 0 +2.23416E7 32 24 63 98680 1161 1353 470 446 68 388 50926 4922 44619 16646 320 3.1 9 9 3500 3048 9 999999999 102 0 0 88 0.2 0 0 +2.23452E7 31 23.5 64 97888 1026 1353 463 382 29 359 43048 2193 40819 15016 290 2.6 9 9 2000 3000 9 999999999 97 0 0 88 0.2 0 0 +2.23488E7 31 24 66 98672 823 1353 464 286 29 268 31921 1966 30155 10870 310 3.6 9 9 3500 3048 9 999999999 102 0 0 88 0.2 0 0 +2.23524E7 31 24 66 98672 567 1353 464 169 31 157 18811 1625 17465 6048 310 3.6 9 9 4000 3048 9 999999999 102 0 0 88 0.2 0 0 +2.2356E7 30.8 24.2 68 97720 274 1353 463 55 0 55 5280 0 5322 2019 320 4.1 9 9 4000 3000 9 999999999 104 0 0 88 0.2 0 0 +2.23596E7 30 24 70 98663 0 1197 457 0 0 0 0 0 0 0 320 3.1 9 9 4000 3048 9 999999999 103 0 0 88 0.2 0 0 +2.23632E7 30 24 70 98663 0 0 457 0 0 0 0 0 0 0 320 2.6 9 9 3500 3048 9 999999999 103 0 0 88 0.2 0 0 +2.23668E7 29.2 25.4 80 97882 0 0 455 0 0 0 0 0 0 0 340 2.1 9 9 2000 3000 9 999999999 117 0 0 88 0.2 0 0 +2.23704E7 30 24 70 98663 0 0 457 0 0 0 0 0 0 0 320 1.5 9 9 3500 3048 9 999999999 103 0 0 88 0.2 0 0 +2.2374E7 28 25 84 98646 0 0 447 0 0 0 0 0 0 0 280 2.6 9 9 3200 3048 9 999999999 114 0 0 88 0.2 0 0 +2.23776E7 28.2 25.1 83 97873 0 0 448 0 0 0 0 0 0 0 270 2.1 9 9 2000 3000 9 999999999 114 0 0 88 0.2 0 0 +2.23812E7 27 24 84 98637 0 0 440 0 0 0 0 0 0 0 67 0 9 9 3500 3048 9 999999999 103 0 0 88 0.2 0 0 +2.23848E7 27 24 84 98637 0 0 440 0 0 0 0 0 0 0 54 0 9 9 3500 3048 9 999999999 103 0 0 88 0.2 0 0 +2.23884E7 27.6 23.8 80 97888 0 0 443 0 0 0 0 0 0 0 277 0 9 9 2000 3000 9 999999999 100 0 0 88 0.2 0 0 +2.2392E7 27 24 84 98637 0 0 440 0 0 0 0 0 0 0 260 2.1 9 9 3500 3048 9 999999999 103 0 0 88 0.2 0 0 +2.23956E7 26 24 89 98628 0 0 434 0 0 0 0 0 0 0 39 0 9 9 3500 3048 9 999999999 103 0 0 88 0.2 0 0 +2.23992E7 26.4 24.4 89 97897 0 0 437 0 0 0 0 0 0 0 270 3.1 9 9 2000 3000 9 999999999 107 0 0 88 0.2 0 0 +2.24028E7 25 24 94 98619 99 434 428 11 0 11 1061 0 1068 424 270 2.1 9 9 2500 3048 9 999999999 103 0 0 88 0.2 0 0 +2.24064E7 27 25 89 98637 404 1354 441 102 2 101 11245 55 11237 3743 260 2.1 9 9 2200 3048 9 999999999 114 0 0 88 0.2 0 0 +2.241E7 28.6 24.3 78 98003 683 1354 449 222 17 213 24560 1043 23756 8306 270 2.6 9 9 2000 3000 9 999999999 105 0 0 88 0.2 0 0 +2.24136E7 29 24 74 98654 918 1354 451 330 31 309 37060 2226 34913 12763 290 2.6 9 9 3000 3048 9 999999999 103 0 0 88 0.2 0 0 +2.24172E7 30 23 66 98663 1092 1354 456 414 91 340 47350 6534 39169 14923 320 2.6 9 9 3500 3048 9 999999999 93 0 0 88 0.2 0 0 +2.24208E7 31.6 24.2 65 98010 1194 1354 441 831 574 326 96715 37615 38189 14895 290 3.6 5 5 2000 3000 9 999999999 104 0 0 88 0.2 0 0 +2.24244E7 32 23 59 98680 1216 1354 442 852 675 247 101769 40041 29658 12060 320 4.1 5 5 3500 3048 9 999999999 93 0 0 88 0.2 0 0 +2.2428E7 34 24 56 98697 1157 1354 455 800 669 229 95246 38162 27392 11235 320 5.1 5 5 4000 3048 9 999999999 102 0 0 88 0.2 0 0 +2.24316E7 34.8 23 50 97744 1021 1354 459 685 639 204 80836 37043 24146 9887 320 4.1 5 5 4000 3048 9 999999999 91 0 0 88 0.2 0 0 +2.24352E7 34 22 50 98697 818 1354 452 513 569 170 59577 32775 19776 7764 330 4.6 5 5 4000 3048 9 999999999 83 0 0 88 0.2 0 0 +2.24388E7 33 22 53 98689 561 1354 447 303 384 143 33886 20352 16140 5660 320 4.6 5 5 4000 3048 9 999999999 84 0 0 88 0.2 0 0 +2.24424E7 31.6 24.2 65 97630 268 1354 441 95 117 72 10383 1497 7904 2439 320 4.1 5 5 4000 3000 9 999999999 104 0 0 88 0.2 0 0 +2.2446E7 31 23 63 98672 0 1171 436 0 0 0 0 0 0 0 330 4.1 5 5 3500 3048 9 999999999 93 0 0 88 0.2 0 0 +2.24496E7 30 23 66 98663 0 0 431 0 0 0 0 0 0 0 300 3.1 5 5 3500 3048 9 999999999 93 0 0 88 0.2 0 0 +2.24532E7 29.2 24 74 97755 0 0 427 0 0 0 0 0 0 0 320 2.6 5 5 2000 3000 9 999999999 102 0 0 88 0.2 0 0 +2.24568E7 29 23 70 98654 0 0 425 0 0 0 0 0 0 0 280 2.1 5 5 3200 3048 9 999999999 93 0 0 88 0.2 0 0 +2.24604E7 28 23 74 98646 0 0 419 0 0 0 0 0 0 0 280 2.1 5 5 3000 3048 9 999999999 93 0 0 88 0.2 0 0 +2.2464E7 27.8 22.8 74 97792 0 0 418 0 0 0 0 0 0 0 270 2.1 5 5 2000 3000 9 999999999 91 0 0 88 0.2 0 0 +2.24676E7 27 23 79 98637 0 0 414 0 0 0 0 0 0 0 270 2.1 5 5 3000 3048 9 999999999 93 0 0 88 0.2 0 0 +2.24712E7 26 23 84 98628 0 0 408 0 0 0 0 0 0 0 270 2.1 5 5 3000 3048 9 999999999 93 0 0 88 0.2 0 0 +2.24748E7 26.4 22.6 80 97721 0 0 410 0 0 0 0 0 0 0 270 2.1 5 5 2000 3000 9 999999999 89 0 0 88 0.2 0 0 +2.24784E7 26 23 84 98628 0 0 408 0 0 0 0 0 0 0 280 2.1 5 5 2500 3048 9 999999999 93 0 0 88 0.2 0 0 +2.2482E7 25 23 89 98619 0 0 403 0 0 0 0 0 0 0 185 0 5 5 2500 3048 9 999999999 94 0 0 88 0.2 0 0 +2.24856E7 25.2 24.6 96 97789 0 0 406 0 0 0 0 0 0 0 270 2.6 5 5 2000 2000 9 999999999 109 0 0 88 0.2 0 0 +2.24892E7 24 22 89 98610 97 424 396 20 0 20 1878 0 1892 678 270 2.1 5 5 2200 3048 9 999999999 85 0 0 88 0.2 0 0 +2.24928E7 25 22 83 98619 402 1354 402 183 252 108 20174 9963 11981 3903 260 2.1 5 5 1500 3048 9 999999999 85 0 0 88 0.2 0 0 +2.24964E7 26.6 23.4 83 97966 681 1354 412 398 497 149 45499 26236 17062 6416 290 2.1 5 5 2000 2000 9 999999999 97 0 0 88 0.2 0 0 +2.25E7 28 23 74 98646 916 1354 419 595 622 175 69873 34767 20636 8361 270 2.1 5 5 2500 3048 9 999999999 93 0 0 88 0.2 0 0 +2.25036E7 31 23 63 98672 1089 1354 436 743 628 239 87457 38142 28299 11490 270 3.6 5 5 2800 3048 9 999999999 93 0 0 88 0.2 0 0 +2.25072E7 34 19.1 42 97913 1191 1354 423 898 852 150 111478 47213 18719 7859 320 4.6 0 0 2000 2000 9 999999999 62 0 0 88 0.2 0 0 +2.25108E7 35 20 42 98705 1212 1354 430 917 786 215 111030 47412 26141 10743 320 6.2 0 0 6000 2000 9 999999999 68 0 0 88 0.2 0 0 +2.25144E7 35 20 42 98705 1153 1354 430 862 782 197 104215 46478 23950 9915 340 6.2 0 0 6000 2000 9 999999999 68 0 0 88 0.2 0 0 +2.2518E7 36.6 22.5 44 97681 1017 1354 442 733 823 116 90251 40113 14288 6056 320 3.1 0 0 4000 2000 9 999999999 87 0 0 88 0.2 0 0 +2.25216E7 36 21 42 98714 813 1354 437 548 691 134 64829 37198 15869 6366 310 4.6 0 0 6000 2000 9 999999999 75 0 0 88 0.2 0 0 +2.25252E7 34 23 53 98697 556 1354 428 320 479 124 36187 22692 14054 5055 340 4.1 0 0 6000 2000 9 999999999 92 0 0 88 0.2 0 0 +2.25288E7 33.8 24.8 59 97619 262 1354 430 99 152 70 10762 1509 7607 2353 320 3.1 0 0 4000 2000 9 999999999 110 0 0 88 0.2 0 0 +2.25324E7 33 24 59 98689 0 1144 424 0 0 0 0 0 0 0 330 3.6 0 0 4000 2000 9 999999999 102 0 0 88 0.2 0 0 +2.2536E7 32 22 56 98680 0 0 416 0 0 0 0 0 0 0 290 4.1 0 0 4000 2000 9 999999999 84 0 0 88 0.2 0 0 +2.25396E7 31 22.9 62 97703 0 0 412 0 0 0 0 0 0 0 320 3.1 0 0 4000 2000 9 999999999 91 0 0 88 0.2 0 0 +2.25432E7 31 21 55 98672 0 0 409 0 0 0 0 0 0 0 320 3.6 0 0 4000 2000 9 999999999 76 0 0 88 0.2 0 0 +2.25468E7 30 21 59 98663 0 0 404 0 0 0 0 0 0 0 320 2.6 0 0 4000 2000 9 999999999 76 0 0 88 0.2 0 0 +2.25504E7 29.4 22.7 67 97835 0 0 403 0 0 0 0 0 0 0 320 2.6 0 0 4000 2000 9 999999999 90 0 0 88 0.2 0 0 +2.2554E7 30 22 62 98663 0 0 405 0 0 0 0 0 0 0 320 2.6 0 0 4000 2000 9 999999999 84 0 0 88 0.2 0 0 +2.25576E7 29 21 62 98654 0 0 399 0 0 0 0 0 0 0 320 2.1 0 0 4000 2000 9 999999999 76 0 0 88 0.2 0 0 +2.25612E7 28.2 22.6 72 97786 0 0 396 0 0 0 0 0 0 0 156 0 0 0 4000 2000 9 999999999 89 0 0 88 0.2 0 0 +2.25648E7 28 21 66 98646 0 0 393 0 0 0 0 0 0 0 341 0 0 0 4000 2000 9 999999999 76 0 0 88 0.2 0 0 +2.25684E7 28 21 66 98646 0 0 393 0 0 0 0 0 0 0 306 0 0 0 4000 2000 9 999999999 76 0 0 88 0.2 0 0 +2.2572E7 26.2 23 83 97729 0 0 386 0 0 0 0 0 0 0 270 1.5 0 0 2000 2000 9 999999999 93 0 0 88 0.2 0 0 +2.25756E7 27 22 74 98637 94 413 413 19 0 19 1835 0 1848 662 27 0 5 5 3500 2000 9 999999999 84 0 0 88 0.2 0 0 +2.25792E7 27 21 70 98637 400 1355 388 196 342 95 21793 12581 10614 3551 310 1.5 0 0 3500 2000 9 999999999 76 0 0 88 0.2 0 0 +2.25828E7 29.2 23.7 72 97921 679 1355 403 426 644 104 50014 28765 12246 4786 108 0 0 0 2000 2000 9 999999999 99 0 0 88 0.2 0 0 +2.25864E7 31 24 66 98672 913 1355 413 636 783 109 77326 36051 13317 5568 131 0 0 0 3200 2000 9 999999999 102 0 0 88 0.2 0 0 +2.259E7 33 25 63 98689 1087 1355 425 794 828 131 97459 38141 16131 6870 198 0 0 0 3200 2000 9 999999999 113 0 0 88 0.2 0 0 +2.25936E7 35.2 25.1 56 97874 1188 1355 464 825 638 266 97281 37283 31607 12755 90 2.1 5 5 2000 2000 9 999999999 113 0 0 88 0.2 0 0 +2.25972E7 35 23 50 98705 1209 1355 460 846 676 244 101056 40027 29259 11914 140 2.1 5 5 3500 2000 9 999999999 92 0 0 88 0.2 0 0 +2.26008E7 36 23 47 98714 1149 1355 466 795 675 223 94779 39237 26790 11000 50 2.1 5 5 3500 2000 9 999999999 92 0 0 88 0.2 0 0 +2.26044E7 36.4 22.9 46 97621 1012 1355 468 678 640 200 79951 37044 23713 9707 320 3.1 5 5 4000 2000 9 999999999 90 0 0 88 0.2 0 0 +2.2608E7 36 23 47 98714 808 1355 466 504 562 170 58332 31591 19710 7713 50 3.1 5 5 4500 3048 9 999999999 92 0 0 88 0.2 0 0 +2.26116E7 36 20 39 98714 550 1355 461 295 383 140 33122 20928 15769 5498 330 3.1 5 5 5000 3048 9 999999999 68 0 0 88 0.2 0 0 +2.26152E7 34.4 23.8 54 97536 256 1355 450 94 139 68 10271 1411 7454 2294 360 3.6 3 3 4000 2000 9 999999999 99 0 0 88 0.2 0 0 +2.26188E7 34 22 50 98697 0 1117 445 0 0 0 0 0 0 0 330 4.1 3 3 4500 2000 9 999999999 83 0 0 88 0.2 0 0 +2.26224E7 33 19 44 98689 0 0 436 0 0 0 0 0 0 0 330 4.1 3 3 4000 2000 9 999999999 62 0 0 88 0.2 0 0 +2.2626E7 30 21 59 97704 0 0 421 0 0 0 0 0 0 0 340 2.1 3 3 2000 2000 9 999999999 75 0 0 88 0.2 0 0 +2.26296E7 31 19 49 98672 0 0 424 0 0 0 0 0 0 0 350 2.1 3 3 3500 2000 9 999999999 62 0 0 88 0.2 0 0 +2.26332E7 30 19 52 98663 0 0 419 0 0 0 0 0 0 0 340 0 3 3 3500 2000 9 999999999 62 0 0 88 0.2 0 0 +2.26368E7 27.8 21.9 70 97743 0 0 410 0 0 0 0 0 0 0 277 0 3 3 2000 2000 9 999999999 83 0 0 88 0.2 0 0 +2.26404E7 29 20 58 98654 0 0 415 0 0 0 0 0 0 0 0 0 3 3 3500 2000 9 999999999 69 0 0 88 0.2 0 0 +2.2644E7 28 20 62 98646 0 0 409 0 0 0 0 0 0 0 346 0 3 3 3500 2000 9 999999999 69 0 0 88 0.2 0 0 +2.26476E7 27 21.3 71 97697 0 0 389 0 0 0 0 0 0 0 138 0 0 0 2000 2000 9 999999999 78 0 0 88 0.2 0 0 +2.26512E7 27 20 66 98637 0 0 387 0 0 0 0 0 0 0 241 0 0 0 3000 2000 9 999999999 69 0 0 88 0.2 0 0 +2.26548E7 26 21 74 98628 0 0 383 0 0 0 0 0 0 0 44 0 0 0 3000 2000 9 999999999 76 0 0 88 0.2 0 0 +2.26584E7 25.6 22 81 97714 0 0 382 0 0 0 0 0 0 0 172 0 0 0 2000 2000 9 999999999 84 0 0 88 0.2 0 0 +2.2662E7 27 21 70 98637 92 402 388 20 0 20 1934 0 1948 684 237 0 0 0 2500 2000 9 999999999 76 0 0 88 0.2 0 0 +2.26656E7 27 22 74 98637 397 1356 389 194 340 94 21580 11963 10543 3527 347 0 0 0 2500 2000 9 999999999 84 0 0 88 0.2 0 0 +2.26692E7 28.6 23.7 75 97838 677 1356 400 424 644 103 49822 28699 12172 4754 213 0 0 0 2000 2000 9 999999999 99 0 0 88 0.2 0 0 +2.26728E7 32 24 63 98680 911 1356 419 634 784 108 77104 36016 13216 5524 290 1.5 0 0 2800 2000 9 999999999 102 0 0 88 0.2 0 0 +2.26764E7 34 24 56 98697 1084 1356 430 793 834 127 97647 39479 15718 6691 260 2.1 0 0 3500 2000 9 999999999 102 0 0 88 0.2 0 0 +2.268E7 36.2 19.8 38 97814 1184 1356 436 892 785 207 107859 47289 25183 10380 140 2.1 0 0 4000 2000 9 999999999 66 0 0 88 0.2 0 0 +2.26836E7 37 22 42 98722 1205 1356 444 908 786 210 109712 45141 25509 10527 130 2.1 0 0 4000 2000 9 999999999 83 0 0 88 0.2 0 0 +2.26872E7 37 21 40 98722 1145 1356 443 853 782 194 103057 45345 23503 9754 150 1.5 0 0 4000 2000 9 999999999 75 0 0 88 0.2 0 0 +2.26908E7 37.4 22 41 97551 1008 1356 446 725 826 112 80746 88037 15475 2770 320 1.5 0 0 4000 2000 9 999999999 82 0 0 88 0.2 0 0 +2.26944E7 38 19 33 98730 803 1356 446 541 696 130 64165 38736 15470 6184 10 2.1 0 0 4500 2000 9 999999999 61 0 0 88 0.2 0 0 +2.2698E7 37 19 35 98722 544 1356 440 314 484 120 35616 24842 13636 4872 340 4.6 0 0 4500 2000 9 999999999 62 0 0 88 0.2 0 0 +2.27016E7 34.8 19 39 97433 250 1356 427 93 145 66 10174 2158 7275 2224 340 4.1 0 0 4000 2000 9 999999999 61 0 0 88 0.2 0 0 +2.27052E7 35 19 39 98705 0 1091 429 0 0 0 0 0 0 0 320 3.6 0 0 4000 2000 9 999999999 62 0 0 88 0.2 0 0 +2.27088E7 32 21 52 98680 0 0 415 0 0 0 0 0 0 0 10 2.1 0 0 4000 2000 9 999999999 76 0 0 88 0.2 0 0 +2.27124E7 29.2 23.1 70 97483 0 0 402 0 0 0 0 0 0 0 320 2.1 0 0 4000 2000 9 999999999 93 0 0 88 0.2 0 0 +2.2716E7 31 20 52 98672 0 0 408 0 0 0 0 0 0 0 136 0 0 0 3500 2000 9 999999999 69 0 0 88 0.2 0 0 +2.27196E7 30 21 59 98663 0 0 404 0 0 0 0 0 0 0 137 0 0 0 3500 2000 9 999999999 76 0 0 88 0.2 0 0 +2.27232E7 28 21 66 98646 0 0 393 0 0 0 0 0 0 0 100 2.1 0 0 3000 2000 9 999999999 76 0 0 88 0.2 0 0 +2.27268E7 28 21 66 98646 0 0 393 0 0 0 0 0 0 0 80 2.1 0 0 2600 2000 9 999999999 76 0 0 88 0.2 0 0 +2.27304E7 27 22 74 98637 0 0 389 0 0 0 0 0 0 0 70 2.1 0 0 2400 2000 9 999999999 84 0 0 88 0.2 0 0 +2.2734E7 26.6 22.5 78 97626 0 0 388 0 0 0 0 0 0 0 206 0 0 0 2000 2000 9 999999999 88 0 0 88 0.2 0 0 +2.27376E7 27 22 74 98637 0 0 406 0 0 0 0 0 0 0 110 2.1 3 3 2200 2000 9 999999999 84 0 0 88 0.2 0 0 +2.27412E7 26 22 79 98628 0 0 407 0 0 0 0 0 0 0 100 2.1 5 5 2200 2000 9 999999999 85 0 0 88 0.2 0 0 +2.27448E7 26.6 23.7 84 97645 0 0 412 0 0 0 0 0 0 0 90 2.1 5 5 2000 2000 9 999999999 99 0 0 88 0.2 0 0 +2.27484E7 26 21 74 98628 89 391 406 18 0 18 1756 0 1768 632 80 2.1 5 5 2200 3048 9 999999999 76 0 0 88 0.2 0 0 +2.2752E7 27 22 74 98637 395 1357 406 190 324 96 21092 11467 10654 3546 110 2.6 3 3 2000 3048 9 999999999 84 0 0 88 0.2 0 0 +2.27556E7 30.4 26.2 78 97775 674 1357 430 415 603 116 48100 25596 13496 5233 140 4.1 3 3 2000 2000 9 999999999 127 0 0 88 0.2 0 0 +2.27592E7 31 25 70 98672 908 1357 439 587 602 185 68375 32545 21615 8703 150 4.1 5 5 3500 3048 9 999999999 113 0 0 88 0.2 0 0 +2.27628E7 31 25 70 98672 1081 1357 439 734 644 221 86516 35986 26219 10765 160 3.1 5 5 4000 3048 9 999999999 113 0 0 88 0.2 0 0 +2.27664E7 33.6 26.9 68 97832 1181 1357 457 817 661 242 96691 34967 28790 11791 160 3.6 5 5 4000 3000 9 999999999 135 0 0 88 0.2 0 0 +2.277E7 34 25 60 98697 1202 1357 457 837 574 330 97264 36990 38563 15032 160 3.6 5 5 4000 3048 9 999999999 113 0 0 88 0.2 0 0 +2.27736E7 34 25 60 98697 1141 1357 484 435 92 358 49836 6318 41307 15697 160 3.6 9 9 4500 3048 9 999999999 113 0 0 88 0.2 0 0 +2.27772E7 34.8 25.6 59 97569 1003 1357 489 370 29 349 41523 2050 39393 14512 140 3.1 9 9 4000 3000 9 999999999 118 0 0 88 0.2 0 0 +2.27808E7 34 24 56 98697 798 1357 482 275 28 258 30612 1917 28930 10362 140 2.6 9 9 4000 3048 9 999999999 102 0 0 88 0.2 0 0 +2.27844E7 34 23 53 98697 539 1357 481 158 28 147 17583 1463 16422 5627 100 1.5 9 9 4000 3048 9 999999999 92 0 0 88 0.2 0 0 +2.2788E7 32.4 26.3 70 97510 244 1357 475 46 0 46 4379 0 4414 1686 140 2.1 9 9 4000 3000 9 999999999 127 0 0 88 0.2 0 0 +2.27916E7 31 25 70 98672 0 1064 465 0 0 0 0 0 0 0 130 3.6 9 9 4000 3048 9 999999999 113 0 0 88 0.2 0 0 +2.27952E7 30 24 70 98663 0 0 457 0 0 0 0 0 0 0 130 3.6 9 9 4000 3048 9 999999999 103 0 0 88 0.2 0 0 +2.27988E7 29.8 25.6 78 97673 0 0 458 0 0 0 0 0 0 0 110 2.6 9 9 4000 3000 9 999999999 119 0 0 88 0.2 0 0 +2.28024E7 29 24 74 98654 0 0 451 0 0 0 0 0 0 0 120 5.1 9 9 4000 3048 9 999999999 103 0 0 88 0.2 0 0 +2.2806E7 29 25 79 98654 0 0 453 0 0 0 0 0 0 0 120 4.6 9 9 4000 3048 9 999999999 114 0 0 88 0.2 0 0 +2.28096E7 28.2 25.7 86 97776 0 0 449 0 0 0 0 0 0 0 110 4.1 9 9 4000 3000 9 999999999 121 0 0 88 0.2 0 0 +2.28132E7 28 24 79 98646 0 0 446 0 0 0 0 0 0 0 130 2.6 9 9 4000 3048 9 999999999 103 0 0 88 0.2 0 0 +2.28168E7 27 24 84 98637 0 0 440 0 0 0 0 0 0 0 110 2.1 9 9 4000 3048 9 999999999 103 0 0 88 0.2 0 0 +2.28204E7 27.4 26 92 97662 0 0 420 0 0 0 0 0 0 0 110 2.1 5 5 4000 3000 9 999999999 125 0 0 88 0.2 0 0 +2.2824E7 27 24 84 98637 0 0 415 0 0 0 0 0 0 0 80 2.1 5 5 4000 3048 9 999999999 103 0 0 88 0.2 0 0 +2.28276E7 26 24 89 98628 0 0 410 0 0 0 0 0 0 0 110 2.1 5 5 4000 3048 9 999999999 103 0 0 88 0.2 0 0 +2.28312E7 26.6 23.7 84 97674 0 0 412 0 0 0 0 0 0 0 110 2.1 5 5 4000 3048 9 999999999 99 0 0 88 0.2 5 0 +2.28348E7 27 23 79 98637 87 380 414 18 0 18 1703 0 1715 615 100 4.1 5 5 4000 3048 9 999999999 93 0 0 88 0.2 0 0 +2.28384E7 27 24 84 98637 392 1357 440 98 0 98 10841 13 10872 3599 100 3.6 9 9 3500 3048 9 999999999 103 0 0 88 0.2 5 0 +2.2842E7 27.6 24.1 81 97839 672 1357 456 132 0 132 13226 0 13346 5810 110 3.1 10 10 2000 3000 9 999999999 103 0 0 88 0.2 5 0 +2.28456E7 28 23 74 98646 906 1357 457 199 3 196 23067 183 22945 9132 90 6.2 10 10 3500 762 9 999999999 93 0 0 88 0.2 0 0 +2.28492E7 26 23 84 98628 1078 1357 445 248 6 244 29113 354 28744 11620 70 4.1 10 10 3500 762 0 919999999 93 0 0 88 0.2 5 0 +2.28528E7 25.4 24.8 96 97878 1178 1357 444 276 7 270 32515 411 32008 12878 90 4.1 10 10 2000 1050 0 919999999 111 0 0 88 0.2 5 0 +2.28564E7 25 24 94 98619 1198 1357 440 282 7 276 33308 435 32770 13141 40 3.1 10 10 2000 762 0 919999999 103 0 0 88 0.2 5 0 +2.286E7 25 21 78 98619 1136 1357 436 266 7 261 31366 424 30905 12415 40 2.6 10 10 2000 762 0 919999999 77 0 0 88 0.2 0 0 +2.28636E7 25.8 25.5 98 97677 998 1357 447 224 5 221 26085 268 25823 10443 50 5.1 10 10 2000 750 0 919999999 119 0 0 88 0.2 2 0 +2.28672E7 25 25 100 98619 792 1357 441 166 1 165 19095 29 19151 7487 10 2.6 10 10 1800 2438 0 919999999 114 0 0 88 0.2 0 0 +2.28708E7 25 25 100 98619 533 1357 390 301 179 231 32025 11965 24711 7129 10 2.6 1 1 2200 762 0 919999999 114 0 0 88 0.2 0 0 +2.28744E7 25 25 100 98619 238 1357 441 27 0 27 2577 0 2597 1075 10 2.6 10 10 2500 762 0 919999999 114 0 0 88 0.2 0 0 +2.2878E7 25 25 100 98619 0 1037 441 0 0 0 0 0 0 0 80 5.1 10 10 1500 762 0 919999999 114 0 0 88 0.2 0 0 +2.28816E7 25 25 100 98619 0 0 441 0 0 0 0 0 0 0 50 3.1 10 10 2500 762 0 919999999 114 0 0 88 0.2 0 0 +2.28852E7 24.6 23.7 95 97774 0 0 437 0 0 0 0 0 0 0 50 2.6 10 10 2000 750 0 919999999 100 0 0 88 0.2 0 0 +2.28888E7 25 23 89 98619 0 0 439 0 0 0 0 0 0 0 40 3.1 10 10 2500 762 0 919999999 94 0 0 88 0.2 0 0 +2.28924E7 25 24 94 98619 0 0 440 0 0 0 0 0 0 0 30 2.6 10 10 2500 762 0 919999999 103 0 0 88 0.2 0 0 +2.2896E7 24.6 24.3 98 97793 0 0 438 0 0 0 0 0 0 0 50 2.6 10 10 2000 750 0 919999999 106 0 0 88 0.2 0 0 +2.28996E7 24 23 94 98610 0 0 433 0 0 0 0 0 0 0 20 2.1 10 10 2200 762 0 919999999 94 0 0 88 0.2 0 0 +2.29032E7 24 23 94 98610 0 0 433 0 0 0 0 0 0 0 30 2.1 10 10 2200 762 0 919999999 94 0 0 88 0.2 0 0 +2.29068E7 24.2 23.9 98 97721 0 0 435 0 0 0 0 0 0 0 50 1.5 10 10 2000 750 0 919999999 102 0 0 88 0.2 0 0 +2.29104E7 24 22 89 98610 0 0 432 0 0 0 0 0 0 0 20 2.6 10 10 2200 762 0 919999999 85 0 0 88 0.2 0 0 +2.2914E7 24 22 89 98610 0 0 432 0 0 0 0 0 0 0 40 2.6 10 10 2500 762 0 919999999 85 0 0 88 0.2 0 0 +2.29176E7 24.4 24.4 100 97733 0 0 437 0 0 0 0 0 0 0 50 2.6 10 10 2000 750 9 999999999 107 0 0 88 0.2 3 0 +2.29212E7 24 23 94 98610 84 368 433 6 0 6 561 0 565 233 20 3.1 10 10 2200 762 0 919999999 94 0 0 88 0.2 0 0 +2.29248E7 24 23 94 98610 390 1358 433 59 0 59 5808 0 5856 2439 40 2.6 10 10 2500 762 0 919999999 94 0 0 88 0.2 0 0 +2.29284E7 23.8 23.5 98 97922 669 1358 432 132 0 132 13184 0 13303 5781 50 2.1 10 10 2000 750 0 919999999 98 0 0 88 0.2 0 0 +2.2932E7 25 24 94 98619 903 1358 440 197 3 195 22906 173 22792 9079 340 2.1 10 10 3000 762 0 919999999 103 0 0 88 0.2 0 0 +2.29356E7 25 23 89 98619 1075 1358 439 247 6 243 29007 351 28642 11577 340 2.1 10 10 2500 762 0 919999999 94 0 0 88 0.2 0 0 +2.29392E7 24.6 24.3 98 97968 1175 1358 438 276 7 270 32440 415 31937 12843 340 3.1 10 10 2000 900 0 919999999 106 0 0 88 0.2 0 0 +2.29428E7 25 25 100 98619 1194 1358 441 281 7 275 33067 419 32539 13075 340 2.1 10 10 2000 610 0 919999999 114 0 0 88 0.2 0 0 +2.29464E7 25 25 100 98619 1132 1358 441 263 6 258 30850 375 30410 12295 350 3.1 10 10 2200 610 0 919999999 114 0 0 88 0.2 0 0 +2.295E7 25 25 100 97884 993 1358 441 223 5 220 25957 268 25702 10378 320 4.1 10 10 2000 600 0 919999999 114 0 0 88 0.2 0 0 +2.29536E7 25 24 94 98619 787 1358 440 165 0 164 18979 11 19057 7427 300 3.6 10 10 2500 2438 0 919999999 103 0 0 88 0.2 0 0 +2.29572E7 26 24 89 98628 527 1358 434 153 29 142 17003 1432 15825 5423 310 2.6 9 9 3000 2438 0 919999999 103 0 0 88 0.2 0 0 +2.29608E7 25.6 24.7 95 97890 232 1358 432 42 0 42 4058 0 4089 1560 320 4.1 9 9 2000 3000 0 919999999 110 0 0 88 0.2 0 0 +2.29644E7 26 24 89 98628 0 1011 434 0 0 0 0 0 0 0 320 2.6 9 9 3000 3048 0 919999999 103 0 0 88 0.2 0 0 +2.2968E7 25 24 94 98619 0 0 428 0 0 0 0 0 0 0 320 4.1 9 9 5000 3048 0 919999999 103 0 0 88 0.2 0 0 +2.29716E7 24.4 23.8 96 98025 0 0 401 0 0 0 0 0 0 0 340 3.1 5 5 4000 3000 0 919999999 101 0 0 88 0.2 0 0 +2.29752E7 25 24 94 98619 0 0 404 0 0 0 0 0 0 0 310 3.1 5 5 5000 3048 0 919999999 103 0 0 88 0.2 0 0 +2.29788E7 24 23 94 98610 0 0 421 0 0 0 0 0 0 0 300 3.1 9 9 5000 3048 0 919999999 94 0 0 88 0.2 0 0 +2.29824E7 24 23.4 96 98119 0 0 422 0 0 0 0 0 0 0 320 2.6 9 9 4000 3000 0 919999999 97 0 0 88 0.2 0 0 +2.2986E7 24 23 94 98610 0 0 421 0 0 0 0 0 0 0 340 3.1 9 9 4000 3048 0 919999999 94 0 0 88 0.2 0 0 +2.29896E7 24 23 94 98610 0 0 421 0 0 0 0 0 0 0 340 4.1 9 9 4000 914 0 919999999 94 0 0 88 0.2 0 0 +2.29932E7 23.6 23 96 98018 0 0 419 0 0 0 0 0 0 0 320 3.6 9 9 2000 900 0 919999999 93 0 0 88 0.2 0 0 +2.29968E7 23 23 100 98601 0 0 415 0 0 0 0 0 0 0 320 3.6 9 9 2500 914 0 919999999 94 0 0 88 0.2 0 0 +2.30004E7 23 22 94 98601 0 0 426 0 0 0 0 0 0 0 330 3.1 10 10 2500 914 0 919999999 85 0 0 88 0.2 0 0 +2.3004E7 23.2 22.9 98 98024 0 0 428 0 0 0 0 0 0 0 290 1.5 10 10 2000 2400 9 999999999 92 0 0 88 0.2 0 0 +2.30076E7 23 23 100 98601 82 357 427 6 0 6 546 0 550 227 300 2.6 10 10 1500 2438 9 999999999 94 0 0 88 0.2 0 0 +2.30112E7 23 23 100 98601 388 1359 427 59 0 59 5764 0 5811 2418 280 4.1 10 10 1800 2438 9 999999999 94 0 0 88 0.2 0 0 +2.30148E7 23.8 23.2 96 98370 667 1359 432 131 0 131 13139 0 13257 5752 320 3.6 10 10 2000 3000 9 999999999 95 0 0 88 0.2 0 0 +2.30184E7 24 23 94 98610 900 1359 433 197 3 195 22890 176 22777 9053 310 4.1 10 10 1500 914 9 999999999 94 0 0 88 0.2 0 0 +2.3022E7 25 23 89 98619 1072 1359 439 247 6 242 28905 349 28545 11536 300 3.1 10 10 1800 914 9 999999999 94 0 0 88 0.2 0 0 +2.30256E7 26.8 23 80 98299 1171 1359 450 275 9 267 32467 575 31721 12747 320 3.6 10 10 2000 900 9 999999999 93 0 0 88 0.2 0 0 +2.30292E7 28 24 79 98646 1190 1359 446 460 61 406 52516 4542 46711 17269 320 3.6 9 9 2500 3048 9 999999999 103 0 0 88 0.2 0 0 +2.30328E7 29 24 74 98654 1128 1359 451 430 92 353 49245 6513 40748 15484 310 3.1 9 9 2500 3048 9 999999999 103 0 0 88 0.2 0 0 +2.30364E7 30.4 25.3 74 98087 988 1359 436 655 556 251 75357 33605 29032 11470 320 3.6 5 5 2000 3000 9 999999999 116 0 0 88 0.2 0 0 +2.304E7 31 24 66 98672 782 1359 438 482 564 159 55748 30021 18417 7194 300 3.6 5 5 4500 3048 9 999999999 102 0 0 88 0.2 0 0 +2.30436E7 31 23 63 98672 521 1359 430 290 441 121 32542 20196 13615 4800 300 3.6 3 3 4500 3048 9 999999999 93 0 0 88 0.2 0 0 +2.30472E7 29.4 24.5 75 98020 226 1359 423 78 119 58 8453 4 6328 1943 290 3.6 3 3 4000 2000 9 999999999 107 0 0 88 0.2 0 0 +2.30508E7 29 23 70 98654 0 984 418 0 0 0 0 0 0 0 310 3.1 3 3 4500 2000 9 999999999 93 0 0 88 0.2 0 0 +2.30544E7 28 24 79 98646 0 0 414 0 0 0 0 0 0 0 300 2.1 3 3 3500 2000 9 999999999 103 0 0 88 0.2 0 0 +2.3058E7 26.4 24.4 89 98013 0 0 406 0 0 0 0 0 0 0 290 2.1 3 3 2000 2000 9 999999999 107 0 0 88 0.2 0 0 +2.30616E7 27 25 89 98637 0 0 393 0 0 0 0 0 0 0 320 2.1 0 0 2000 2000 9 999999999 114 0 0 88 0.2 0 0 +2.30652E7 27 25 89 98637 0 0 393 0 0 0 0 0 0 0 30 1.5 0 0 2000 2000 9 999999999 114 0 0 88 0.2 0 0 +2.30688E7 25.2 24.6 96 97974 0 0 383 0 0 0 0 0 0 0 20 1.5 0 0 2000 2000 9 999999999 109 0 0 88 0.2 0 0 +2.30724E7 26 24 89 98628 0 0 387 0 0 0 0 0 0 0 321 0 0 0 1800 2000 9 999999999 103 0 0 88 0.2 0 0 +2.3076E7 26 24 89 98628 0 0 387 0 0 0 0 0 0 0 240 1.5 0 0 1800 2000 9 999999999 103 0 0 88 0.2 0 0 +2.30796E7 24 22.8 93 97885 0 0 375 0 0 0 0 0 0 0 75 0 0 0 1000 2000 9 999999999 91 0 0 88 0.2 0 0 +2.30832E7 24 23 94 98610 0 0 375 0 0 0 0 0 0 0 167 0 0 0 1400 2000 9 999999999 94 0 0 88 0.2 0 0 +2.30868E7 24 23 94 98610 0 0 375 0 0 0 0 0 0 0 273 0 0 0 1400 2000 9 999999999 94 0 0 88 0.2 0 0 +2.30904E7 23.8 23.5 98 97932 0 0 375 0 0 0 0 0 0 0 26 0 0 0 1000 2000 9 999999999 98 0 0 88 0.2 0 0 +2.3094E7 23 22 94 98601 79 346 369 18 0 18 1690 0 1702 598 18 0 0 0 1400 2000 9 999999999 85 0 0 88 0.2 0 0 +2.30976E7 24 23 94 98610 385 1360 375 186 332 92 20609 10660 10214 3399 290 2.1 0 0 1400 2000 9 999999999 94 0 0 88 0.2 0 0 +2.31012E7 26.4 24.1 87 98081 664 1360 389 414 639 103 48513 27854 12058 4688 290 3.1 0 0 2000 2000 9 999999999 104 0 0 88 0.2 0 0 +2.31048E7 29 24 74 98654 897 1360 402 623 784 106 75668 35798 12912 5383 290 3.6 0 0 2500 2000 9 999999999 103 0 0 88 0.2 0 0 +2.31084E7 31 24 66 98672 1069 1360 413 780 854 109 87782 92074 14915 3110 290 3.6 0 0 2500 2000 9 999999999 102 0 0 88 0.2 0 0 +2.3112E7 31.4 23.9 65 98066 1168 1360 415 870 786 196 104896 42312 23786 9894 290 3.6 0 0 2000 2000 9 999999999 101 0 0 88 0.2 0 0 +2.31156E7 33 24 59 98689 1186 1360 424 887 787 201 106964 42462 24427 10140 320 3.1 0 0 4000 2000 9 999999999 102 0 0 88 0.2 0 0 +2.31192E7 33 24 59 98689 1123 1360 424 829 783 183 99863 41444 22193 9283 340 3.1 0 0 4500 2000 9 999999999 102 0 0 88 0.2 0 0 +2.31228E7 34.4 24.5 57 97848 984 1360 432 701 813 113 85725 37053 13930 5892 290 2.6 0 0 4000 2000 9 999999999 106 0 0 88 0.2 0 0 +2.31264E7 34 23 53 98697 776 1360 428 515 671 132 60363 34119 15556 6174 280 4.6 0 0 4500 2000 9 999999999 92 0 0 88 0.2 0 0 +2.313E7 34 24 56 98697 516 1360 430 288 453 117 32396 19587 13171 4657 290 3.1 0 0 4500 2000 9 999999999 102 0 0 88 0.2 0 0 +2.31336E7 32.4 25.1 66 97773 219 1360 422 75 119 56 8186 0 6128 1880 290 2.6 0 0 4000 2000 9 999999999 113 0 0 88 0.2 0 0 +2.31372E7 33 24 59 98689 0 958 442 0 0 0 0 0 0 0 340 1.5 3 3 4500 2000 9 999999999 102 0 0 88 0.2 0 0 +2.31408E7 32 24 63 98680 0 0 437 0 0 0 0 0 0 0 320 2.1 3 3 4000 2000 9 999999999 102 0 0 88 0.2 0 0 +2.31444E7 29 26.2 85 97822 0 0 405 0 0 0 0 0 0 0 320 2.1 0 0 2000 2000 9 999999999 127 0 0 88 0.2 0 0 +2.3148E7 30 25 75 98663 0 0 409 0 0 0 0 0 0 0 320 1 0 0 3000 2000 9 999999999 113 0 0 88 0.2 0 0 +2.31516E7 29 24 74 98654 0 0 402 0 0 0 0 0 0 0 310 2.1 0 0 3000 2000 9 999999999 103 0 0 88 0.2 0 0 +2.31552E7 27.6 25.3 87 97839 0 0 396 0 0 0 0 0 0 0 51 0 0 0 2000 2000 9 999999999 117 0 0 88 0.2 0 0 +2.31588E7 28 25 84 98646 0 0 398 0 0 0 0 0 0 0 95 0 0 0 3000 2000 9 999999999 114 0 0 88 0.2 0 0 +2.31624E7 27 25 89 98637 0 0 393 0 0 0 0 0 0 0 261 0 0 0 3000 2000 9 999999999 114 0 0 88 0.2 0 0 +2.3166E7 26.6 25.5 94 97879 0 0 391 0 0 0 0 0 0 0 128 0 0 0 2000 2000 9 999999999 119 0 0 88 0.2 0 0 +2.31696E7 27 25 89 98637 0 0 393 0 0 0 0 0 0 0 213 0 0 0 2500 2000 9 999999999 114 0 0 88 0.2 0 0 +2.31732E7 26 24 89 98628 0 0 387 0 0 0 0 0 0 0 88 0 0 0 2000 2000 9 999999999 103 0 0 88 0.2 0 0 +2.31768E7 26 24.6 92 97961 0 0 387 0 0 0 0 0 0 0 344 0 0 0 500 2000 9 999999999 109 0 0 88 0.2 0 0 +2.31804E7 26 24 89 98628 77 335 387 17 0 17 1630 0 1642 579 146 0 0 0 1500 2000 9 999999999 103 0 0 88 0.2 0 0 +2.3184E7 26 24 89 98628 382 1361 387 184 329 91 20352 9950 10153 3378 229 0 0 0 1500 2000 9 999999999 103 0 0 88 0.2 0 0 +2.31876E7 27.2 25.5 90 98147 661 1361 395 411 632 104 47964 26222 12203 4742 320 2.1 0 0 1000 2000 9 999999999 119 0 0 88 0.2 0 0 +2.31912E7 30 25 75 98663 895 1361 409 619 780 107 75032 34449 13030 5433 280 2.6 0 0 2500 2000 9 999999999 113 0 0 88 0.2 0 0 +2.31948E7 32 25 67 98680 1066 1361 420 775 848 111 87787 91968 15237 3110 300 3.1 0 0 3000 2000 9 999999999 113 0 0 88 0.2 0 0 +2.31984E7 32.6 22.1 54 98164 1164 1361 419 870 786 198 104946 44598 24026 9965 290 3.1 0 0 2000 2000 9 999999999 84 0 0 88 0.2 0 0 +2.3202E7 34 24 56 98697 1182 1361 448 872 852 133 97614 91972 17557 4650 320 3.6 3 3 3000 2000 9 999999999 102 0 0 88 0.2 0 0 +2.32056E7 35 23 50 98705 1119 1361 453 816 840 126 91005 90220 16873 3723 310 4.1 3 3 4000 2000 9 999999999 92 0 0 88 0.2 0 0 +2.32092E7 34.6 23.8 54 97967 979 1361 451 688 782 127 83509 37752 15432 6491 320 3.1 3 3 4000 2000 9 999999999 99 0 0 88 0.2 0 0 +2.32128E7 35 20 42 98705 771 1361 449 506 653 136 59354 36256 16069 6323 300 3.6 3 3 4500 2000 9 999999999 68 0 0 88 0.2 0 0 +2.32164E7 34 22 50 98697 510 1361 445 281 436 118 31597 20175 13319 4668 340 3.6 3 3 4500 2000 9 999999999 83 0 0 88 0.2 0 0 +2.322E7 32.2 23.2 59 97908 213 1361 437 71 106 55 7767 0 5975 1823 320 2.1 3 3 2000 2000 9 999999999 94 0 0 88 0.2 0 0 +2.32236E7 32 22 56 98680 0 931 434 0 0 0 0 0 0 0 320 2.1 3 3 4000 2000 9 999999999 84 0 0 88 0.2 0 0 +2.32272E7 31 22 59 98672 0 0 428 0 0 0 0 0 0 0 320 1.5 3 3 3500 2000 9 999999999 84 0 0 88 0.2 0 0 +2.32308E7 28.8 25.1 80 97966 0 0 403 0 0 0 0 0 0 0 130 0 0 0 2000 2000 9 999999999 114 0 0 88 0.2 0 0 +2.32344E7 31 23 63 98672 0 0 412 0 0 0 0 0 0 0 237 0 0 0 3200 2000 9 999999999 93 0 0 88 0.2 0 0 +2.3238E7 29 23 70 98654 0 0 401 0 0 0 0 0 0 0 124 0 0 0 3200 2000 9 999999999 93 0 0 88 0.2 0 0 +2.32416E7 27 24.4 86 97999 0 0 392 0 0 0 0 0 0 0 19 0 0 0 2000 2000 9 999999999 107 0 0 88 0.2 0 0 +2.32452E7 28 23 74 98646 0 0 396 0 0 0 0 0 0 0 68 0 0 0 3200 2000 9 999999999 93 0 0 88 0.2 0 0 +2.32488E7 27 23 79 98637 0 0 391 0 0 0 0 0 0 0 309 0 0 0 3200 2000 9 999999999 93 0 0 88 0.2 0 0 +2.32524E7 26.4 24.4 89 97994 0 0 389 0 0 0 0 0 0 0 85 0 0 0 2000 2000 9 999999999 107 0 0 88 0.2 0 0 +2.3256E7 27 24 84 98637 0 0 392 0 0 0 0 0 0 0 110 0 0 0 3000 2000 9 999999999 103 0 0 88 0.2 0 0 +2.32596E7 26 24 89 98628 0 0 387 0 0 0 0 0 0 0 144 0 0 0 3000 2000 9 999999999 103 0 0 88 0.2 0 0 +2.32632E7 25.2 23.4 90 98071 0 0 382 0 0 0 0 0 0 0 47 0 0 0 2000 2000 9 999999999 97 0 0 88 0.2 0 0 +2.32668E7 26 23 84 98628 74 323 385 17 0 17 1587 0 1599 563 195 0 0 0 1600 2000 9 999999999 93 0 0 88 0.2 0 0 +2.32704E7 26 24 89 98628 380 1361 387 182 329 91 20189 9810 10068 3346 142 0 0 0 1500 2000 9 999999999 103 0 0 88 0.2 0 0 +2.3274E7 28.2 24.2 79 98263 659 1361 398 410 638 102 48011 27571 11963 4643 286 0 0 0 2000 2000 9 999999999 105 0 0 88 0.2 0 0 +2.32776E7 32 22 56 98680 892 1361 416 620 794 101 75752 38083 12376 5146 188 0 0 0 1500 2000 9 999999999 84 0 0 88 0.2 0 0 +2.32812E7 33 21 49 98689 1063 1361 420 778 779 170 93769 44087 20635 8613 141 0 0 0 2500 2000 9 999999999 76 0 0 88 0.2 0 0 +2.32848E7 33.8 20.7 46 98252 1161 1361 424 869 786 199 104877 46210 24194 10014 270 2.1 0 0 2000 2000 9 999999999 73 0 0 88 0.2 0 0 +2.32884E7 35 21 44 98705 1178 1361 431 884 787 204 106809 46157 24773 10237 230 2.1 0 0 3500 2000 9 999999999 75 0 0 88 0.2 0 0 +2.3292E7 36 20 39 98714 1114 1361 436 827 783 187 99779 46172 22660 9420 320 2.1 0 0 4000 2000 9 999999999 68 0 0 88 0.2 0 0 +2.32956E7 37 19 35 98722 974 1361 459 690 804 115 84667 42895 14213 5962 340 2.1 3 3 4000 2000 9 999999999 62 0 0 88 0.2 0 0 +2.32992E7 37 19 35 98722 765 1361 459 503 656 134 59010 36946 15854 6227 320 3.1 3 3 4000 2000 9 999999999 62 0 0 88 0.2 0 0 +2.33028E7 36 19 37 98714 504 1361 453 278 441 115 31404 21695 13075 4565 300 3.1 3 3 4000 2000 9 999999999 62 0 0 88 0.2 0 0 +2.33064E7 33.2 23.4 57 97867 207 1361 443 68 100 53 7430 0 5788 1763 320 2.6 3 3 4000 2000 9 999999999 96 0 0 88 0.2 0 0 +2.331E7 33 21 49 98689 0 904 420 0 0 0 0 0 0 0 40 2.6 0 0 3200 2000 9 999999999 76 0 0 88 0.2 0 0 +2.33136E7 32 21 52 98680 0 0 415 0 0 0 0 0 0 0 10 1.5 0 0 3000 2000 9 999999999 76 0 0 88 0.2 0 0 +2.33172E7 28.8 23.6 74 97976 0 0 401 0 0 0 0 0 0 0 50 1.5 0 0 2000 2000 9 999999999 98 0 0 88 0.2 0 0 +2.33208E7 29 21 62 98654 0 0 399 0 0 0 0 0 0 0 217 0 0 0 3000 2000 9 999999999 76 0 0 88 0.2 0 0 +2.33244E7 28 21 66 98646 0 0 393 0 0 0 0 0 0 0 353 0 0 0 3000 2000 9 999999999 76 0 0 88 0.2 0 0 +2.3328E7 27.2 24 83 98011 0 0 393 0 0 0 0 0 0 0 38 0 0 0 2000 2000 9 999999999 103 0 0 88 0.2 0 0 +2.33316E7 28 22 70 98646 0 0 395 0 0 0 0 0 0 0 141 0 0 0 2500 2000 9 999999999 84 0 0 88 0.2 0 0 +2.33352E7 27 22 74 98637 0 0 389 0 0 0 0 0 0 0 243 0 0 0 2500 2000 9 999999999 84 0 0 88 0.2 0 0 +2.33388E7 26.6 23.7 84 97957 0 0 389 0 0 0 0 0 0 0 143 0 0 0 2000 2000 9 999999999 100 0 0 88 0.2 0 0 +2.33424E7 26 22 79 98628 0 0 384 0 0 0 0 0 0 0 187 0 0 0 2500 2000 9 999999999 85 0 0 88 0.2 0 0 +2.3346E7 26 22 79 98628 0 0 384 0 0 0 0 0 0 0 83 0 0 0 2500 2000 9 999999999 85 0 0 88 0.2 0 0 +2.33496E7 25.2 23.4 90 97935 0 0 382 0 0 0 0 0 0 0 32 0 0 0 2000 2000 9 999999999 97 0 0 88 0.2 0 0 +2.33532E7 26 23 84 98628 71 312 385 16 0 16 1535 0 1546 545 242 0 0 0 2200 2000 9 999999999 93 0 0 88 0.2 0 0 +2.33568E7 27 23 79 98637 377 1362 391 181 329 90 20059 10174 9992 3314 329 0 0 0 2200 2000 9 999999999 93 0 0 88 0.2 0 0 +2.33604E7 28 26.2 90 98115 656 1362 400 407 629 104 47325 25226 12186 4728 226 0 0 0 2000 2000 9 999999999 128 0 0 88 0.2 0 0 +2.3364E7 31 23 63 98672 889 1362 412 617 789 102 75101 36874 12507 5201 310 1.5 0 0 3000 2000 9 999999999 93 0 0 88 0.2 0 0 +2.33676E7 33 23 56 98689 1060 1362 423 773 779 167 92971 41678 20183 8452 290 2.1 0 0 4000 2000 9 999999999 92 0 0 88 0.2 0 0 +2.33712E7 34.2 24.6 57 98061 1157 1362 432 860 786 193 103488 41292 23309 9720 290 2.6 0 0 4000 2000 9 999999999 108 0 0 88 0.2 0 0 +2.33748E7 35 22 47 98705 1174 1362 433 879 787 201 106088 44963 24434 10119 280 1.5 0 0 4000 2000 9 999999999 83 0 0 88 0.2 0 0 +2.33784E7 36 19 37 98714 1110 1362 434 824 783 187 99464 47146 22680 9417 350 2.6 0 0 4000 2000 9 999999999 62 0 0 88 0.2 0 0 +2.3382E7 36.4 22.2 44 97865 968 1362 460 681 789 121 83017 39490 14781 6204 320 3.1 3 3 4000 2000 9 999999999 84 0 0 88 0.2 0 0 +2.33856E7 37 18 33 98722 760 1362 457 499 654 134 58563 37548 15826 6197 320 3.1 3 3 5000 2000 9 999999999 56 0 0 88 0.2 0 0 +2.33892E7 36 18 35 98714 498 1362 452 274 439 114 30963 21847 12916 4496 320 3.1 3 3 5000 2000 9 999999999 56 0 0 88 0.2 0 0 +2.33928E7 34 22.7 52 97757 201 1362 446 65 94 51 7098 0 5609 1703 320 3.6 3 3 4000 2000 9 999999999 89 0 0 88 0.2 0 0 +2.33964E7 33 20 46 98689 0 878 419 0 0 0 0 0 0 0 330 3.1 0 0 4500 2000 9 999999999 68 0 0 88 0.2 0 0 +2.34E7 32 20 49 98680 0 0 413 0 0 0 0 0 0 0 330 2.1 0 0 4000 2000 9 999999999 69 0 0 88 0.2 0 0 +2.34036E7 31 22 59 98672 0 0 411 0 0 0 0 0 0 0 30 1.5 0 0 3500 2000 9 999999999 84 0 0 88 0.2 0 0 +2.34072E7 30 22 62 98663 0 0 405 0 0 0 0 0 0 0 5 0 0 0 3500 2000 9 999999999 84 0 0 88 0.2 0 0 +2.34108E7 30 21 59 98663 0 0 404 0 0 0 0 0 0 0 240 0 0 0 3500 2000 9 999999999 76 0 0 88 0.2 0 0 +2.34144E7 27.4 24.5 84 97935 0 0 394 0 0 0 0 0 0 0 350 0 0 0 2000 2000 9 999999999 108 0 0 88 0.2 0 0 +2.3418E7 28 22 70 98646 0 0 395 0 0 0 0 0 0 0 336 0 0 0 3500 2000 9 999999999 84 0 0 88 0.2 0 0 +2.34216E7 27 22 74 98637 0 0 389 0 0 0 0 0 0 0 105 0 0 0 3500 2000 9 999999999 84 0 0 88 0.2 0 0 +2.34252E7 26.6 23.1 81 97889 0 0 389 0 0 0 0 0 0 0 318 0 0 0 2000 2000 9 999999999 94 0 0 88 0.2 0 0 +2.34288E7 26 23 84 98628 0 0 385 0 0 0 0 0 0 0 241 0 0 0 3500 2000 9 999999999 93 0 0 88 0.2 0 0 +2.34324E7 26 23 84 98628 0 0 385 0 0 0 0 0 0 0 260 0 0 0 3000 2000 9 999999999 93 0 0 88 0.2 0 0 +2.3436E7 25.4 23.3 88 97907 0 0 383 0 0 0 0 0 0 0 262 0 0 0 2000 2000 9 999999999 96 0 0 88 0.2 0 0 +2.34396E7 24 22 89 98610 69 300 374 16 0 16 1485 0 1496 527 86 0 0 0 2500 2000 9 999999999 85 0 0 88 0.2 0 0 +2.34432E7 26 23 84 98628 375 1363 385 179 328 89 19858 9993 9924 3287 310 0 0 0 2500 2000 9 999999999 93 0 0 88 0.2 0 0 +2.34468E7 26.6 22.5 78 98132 653 1363 388 407 643 100 47776 29077 11718 4534 250 1.5 0 0 2000 2000 9 999999999 88 0 0 88 0.2 0 0 +2.34504E7 30 22 62 98663 886 1363 405 615 793 100 75080 37972 12277 5098 280 2.1 0 0 3000 2000 9 999999999 84 0 0 88 0.2 0 0 +2.3454E7 32 22 56 98680 1056 1363 416 771 780 167 92812 42870 20247 8463 280 2.1 0 0 3500 2000 9 999999999 84 0 0 88 0.2 0 0 +2.34576E7 34.4 24.2 55 98033 1153 1363 432 857 786 192 103167 41827 23264 9698 290 3.1 0 0 2000 2000 9 999999999 103 0 0 88 0.2 0 0 +2.34612E7 35 21 44 98705 1170 1363 431 877 787 202 105846 46099 24485 10127 320 2.6 0 0 3500 2000 9 999999999 75 0 0 88 0.2 0 0 +2.34648E7 35 22 47 98705 1105 1363 433 816 783 182 98281 43828 21979 9173 310 3.1 0 0 3500 2000 9 999999999 83 0 0 88 0.2 0 0 +2.34684E7 35.4 24 52 97778 963 1363 437 684 815 108 83693 37364 13334 5623 320 3.1 0 0 4000 2000 9 999999999 101 0 0 88 0.2 0 0 +2.3472E7 36 21 42 98714 754 1363 437 498 670 128 58446 35421 15052 5926 310 3.6 0 0 4000 2000 9 999999999 75 0 0 88 0.2 0 0 +2.34756E7 36 20 39 98714 492 1363 436 272 448 111 30708 20860 12530 4374 330 3.6 0 0 4000 2000 9 999999999 68 0 0 88 0.2 0 0 +2.34792E7 33.4 22.7 54 97762 195 1363 425 63 93 49 6846 0 5419 1643 320 2.6 0 0 4000 2000 9 999999999 89 0 0 88 0.2 0 0 +2.34828E7 33 20 46 98689 0 851 419 0 0 0 0 0 0 0 330 2.6 0 0 3500 2000 9 999999999 68 0 0 88 0.2 0 0 +2.34864E7 32 21 52 98680 0 0 415 0 0 0 0 0 0 0 320 2.1 0 0 3200 2000 9 999999999 76 0 0 88 0.2 0 0 +2.349E7 29.6 24.5 74 97895 0 0 406 0 0 0 0 0 0 0 320 1.5 0 0 2000 2000 9 999999999 107 0 0 88 0.2 0 0 +2.34936E7 30 22 62 98663 0 0 405 0 0 0 0 0 0 0 330 1.5 0 0 3000 2000 9 999999999 84 0 0 88 0.2 0 0 +2.34972E7 30 22 62 98663 0 0 405 0 0 0 0 0 0 0 164 0 0 0 3000 2000 9 999999999 84 0 0 88 0.2 0 0 +2.35008E7 27.4 23.9 81 98012 0 0 394 0 0 0 0 0 0 0 14 0 0 0 2000 2000 9 999999999 101 0 0 88 0.2 0 0 +2.35044E7 28 22 70 98646 0 0 395 0 0 0 0 0 0 0 17 0 0 0 3000 2000 9 999999999 84 0 0 88 0.2 0 0 +2.3508E7 27 22 74 98637 0 0 389 0 0 0 0 0 0 0 109 0 0 0 3000 2000 9 999999999 84 0 0 88 0.2 0 0 +2.35116E7 26.8 23.9 84 97997 0 0 391 0 0 0 0 0 0 0 5 0 0 0 2000 2000 9 999999999 102 0 0 88 0.2 0 0 +2.35152E7 26 22 79 98628 0 0 384 0 0 0 0 0 0 0 54 0 0 0 3000 2000 9 999999999 85 0 0 88 0.2 0 0 +2.35188E7 25 22 83 98619 0 0 379 0 0 0 0 0 0 0 176 0 0 0 3000 2000 9 999999999 85 0 0 88 0.2 0 0 +2.35224E7 24.2 22.1 88 98101 0 0 375 0 0 0 0 0 0 0 21 0 0 0 2000 2000 9 999999999 85 0 0 88 0.2 0 0 +2.3526E7 23 21 89 98601 66 288 368 15 0 15 1438 0 1449 509 60 0 0 0 2200 2000 9 999999999 77 0 0 88 0.2 0 0 +2.35296E7 24 21 83 98610 372 1364 373 178 331 88 19810 10820 9821 3244 270 1.5 0 0 2200 2000 9 999999999 77 0 0 88 0.2 0 0 +2.35332E7 26 21.5 76 98302 651 1364 384 406 647 98 47726 29915 11521 4453 81 0 0 0 4000 2000 9 999999999 80 0 0 88 0.2 0 0 +2.35368E7 29 21 62 98654 883 1364 399 614 798 98 75096 39006 12004 4979 290 2.1 0 0 3000 2000 9 999999999 76 0 0 88 0.2 0 0 +2.35404E7 32 21 52 98680 1053 1364 415 769 780 168 92656 44005 20330 8482 280 2.6 0 0 3000 2000 9 999999999 76 0 0 88 0.2 0 0 +2.3544E7 33.4 22 51 98259 1149 1364 424 857 787 195 103290 44647 23577 9792 270 2.6 0 0 4000 2000 9 999999999 83 0 0 88 0.2 0 0 +2.35476E7 35 21 44 98705 1166 1364 431 873 788 201 105369 46080 24355 10078 300 3.1 0 0 4000 2000 9 999999999 75 0 0 88 0.2 0 0 +2.35512E7 36 20 39 98714 1100 1364 436 814 783 183 98202 46042 22204 9238 310 4.6 0 0 4000 2000 9 999999999 68 0 0 88 0.2 0 0 +2.35548E7 34.8 21.3 46 98066 958 1364 431 682 827 102 75912 87768 14244 2432 320 5.1 0 0 4000 2000 9 999999999 77 0 0 88 0.2 0 0 +2.35584E7 36 18 35 98714 749 1364 433 496 676 125 58432 37833 14788 5802 310 4.1 0 0 4000 2000 9 999999999 56 0 0 88 0.2 0 0 +2.3562E7 36 18 35 98714 486 1364 433 269 450 109 30395 21639 12321 4288 300 4.1 0 0 4000 2000 9 999999999 56 0 0 88 0.2 0 0 +2.35656E7 33.4 19.1 43 97996 189 1364 420 60 89 48 6583 0 5255 1584 320 4.1 0 0 4000 2000 9 999999999 62 0 0 88 0.2 0 0 +2.35692E7 31.1 17.5 44 98543 0 825 418 0 0 0 0 0 0 0 237 2.1 0 0 4000 2000 9 999999999 53 0 0 88 0.2 0 0 +2.35728E7 29.9 18.5 51 98532 0 0 408 0 0 0 0 0 0 0 248 1.2 0 0 3500 2000 9 999999999 59 0 0 88 0.2 0 0 +2.35764E7 28.3 20 61 98407 0 0 397 0 0 0 0 0 0 0 247 0.5 0 0 2000 2000 9 999999999 69 0 0 88 0.2 0 0 +2.358E7 28.4 20.7 63 98538 0 0 400 0 0 0 0 0 0 0 237 0.5 0 0 3200 2000 9 999999999 74 0 0 88 0.2 0 0 +2.35836E7 28.1 22.2 70 98536 0 0 396 0 0 0 0 0 0 0 230 0.9 0 0 3200 2000 9 999999999 86 0 0 88 0.2 0 0 +2.35872E7 27.9 23.2 76 98360 0 0 382 0 0 0 0 0 0 0 222 0.9 0 0 2000 2000 9 999999999 95 0 0 88 0.2 0 0 +2.35908E7 28.5 23.8 76 98476 0 0 420 0 0 0 0 0 0 0 165 1.3 3 3 3500 3048 9 999999999 101 0 0 88 0.2 0 0 +2.35944E7 28.2 23.8 77 98474 0 0 420 0 0 0 0 0 0 0 163 1.1 3 3 3500 3048 9 999999999 101 0 0 88 0.2 0 0 +2.3598E7 27.4 23.8 81 98300 0 0 413 0 0 0 0 0 0 0 137 0.8 3 3 2000 3048 9 999999999 101 0 0 88 0.2 0 0 +2.36016E7 27.1 24 83 98472 0 0 414 0 0 0 0 0 0 0 96 1.3 3 3 3500 3048 9 999999999 103 0 0 88 0.2 0 0 +2.36052E7 27.1 24 83 98472 0 0 414 0 0 0 0 0 0 0 111 1.4 3 3 3500 3048 9 999999999 103 0 0 88 0.2 0 0 +2.36088E7 27.2 24 82 98323 0 0 401 0 0 0 0 0 0 0 172 1 3 3 2000 3048 9 999999999 103 0 0 88 0.2 0 0 +2.36124E7 27 24 84 98637 66 288 409 15 0 15 1410 0 1420 503 160 2.1 3 3 3500 3048 9 999999999 103 0 0 88 0.2 0 0 +2.3616E7 28 24 79 98646 372 1364 397 177 326 89 19625 9309 9842 3259 170 2.1 0 0 3500 3048 9 999999999 103 0 0 88 0.2 0 0 +2.36196E7 28.4 24.1 78 98050 651 1364 399 404 637 101 47237 27378 11829 4576 351 0 0 0 2000 3048 9 999999999 103 0 0 88 0.2 0 0 +2.36232E7 31 24 66 98672 883 1364 413 611 785 103 74160 35540 12529 5208 217 0 0 0 3500 2000 9 999999999 102 0 0 88 0.2 0 0 +2.36268E7 32 24 63 98680 1053 1364 437 756 816 126 92650 38760 15511 6589 287 0 3 3 3500 2000 9 999999999 102 0 0 88 0.2 0 0 +2.36304E7 33.4 23 55 98025 1149 1364 443 844 855 124 94168 91865 16603 4020 120 1.5 3 3 2000 2000 9 999999999 92 0 0 88 0.2 0 0 +2.3634E7 34 23 53 98697 1166 1364 447 859 824 156 105417 42196 19180 8084 140 1.5 3 3 3500 2000 9 999999999 92 0 0 88 0.2 0 0 +2.36376E7 34 22 50 98697 1100 1364 452 755 663 221 89579 39926 26322 10784 120 2.1 5 5 3500 2000 9 999999999 83 0 0 88 0.2 0 0 +2.36412E7 35.2 22.5 48 97787 958 1364 460 634 646 180 74737 36760 21333 8700 50 1.5 5 5 2000 2000 9 999999999 87 0 0 88 0.2 0 0 +2.36448E7 35 22 47 98705 749 1364 458 458 563 149 53023 30939 17374 6716 80 2.6 5 5 3500 3048 9 999999999 83 0 0 88 0.2 0 0 +2.36484E7 35 23 50 98705 486 1364 460 248 347 125 27570 15832 13909 4734 10 1.5 5 5 3000 3048 9 999999999 92 0 0 88 0.2 0 0 +2.3652E7 33 23.2 57 97778 189 1364 448 56 57 48 6063 0 5228 1584 70 2.1 5 5 2000 3048 9 999999999 94 0 0 88 0.2 0 0 +2.36556E7 33 23 56 98689 0 825 448 0 0 0 0 0 0 0 50 1.5 5 5 2500 3048 9 999999999 92 0 0 88 0.2 0 0 +2.36592E7 32 23 59 98680 0 0 442 0 0 0 0 0 0 0 30 2.1 5 5 2500 3048 9 999999999 93 0 0 88 0.2 0 0 +2.36628E7 30.4 24.1 69 97883 0 0 428 0 0 0 0 0 0 0 327 0 3 3 2000 3048 9 999999999 103 0 0 88 0.2 0 0 +2.36664E7 31 24 66 98672 0 0 431 0 0 0 0 0 0 0 60 1.5 3 3 2500 3048 9 999999999 102 0 0 88 0.2 0 0 +2.367E7 31 24 66 98672 0 0 431 0 0 0 0 0 0 0 100 1.5 3 3 2500 3048 9 999999999 102 0 0 88 0.2 0 0 +2.36736E7 29 24.7 78 97978 0 0 421 0 0 0 0 0 0 0 119 0 3 3 2000 3048 9 999999999 110 0 0 88 0.2 0 0 +2.36772E7 30 24 70 98663 0 0 408 0 0 0 0 0 0 0 303 0 0 0 2200 3048 9 999999999 103 0 0 88 0.2 0 0 +2.36808E7 30 24 70 98663 0 0 408 0 0 0 0 0 0 0 45 0 0 0 1800 2000 9 999999999 103 0 0 88 0.2 0 0 +2.36844E7 28.2 24.2 79 97951 0 0 398 0 0 0 0 0 0 0 59 0 0 0 1000 2000 9 999999999 104 0 0 88 0.2 0 0 +2.3688E7 29 24 74 98654 0 0 402 0 0 0 0 0 0 0 263 0 0 0 1800 2000 9 999999999 103 0 0 88 0.2 0 0 +2.36916E7 28 24 79 98646 0 0 397 0 0 0 0 0 0 0 217 0 0 0 1800 2000 9 999999999 103 0 0 88 0.2 0 0 +2.36952E7 26.8 24.2 86 98066 0 0 391 0 0 0 0 0 0 0 216 0 0 0 2000 2000 9 999999999 105 0 0 88 0.2 0 0 +2.36988E7 28 24 79 98646 63 277 421 13 0 13 1278 0 1287 463 65 0 5 5 1800 2000 9 999999999 103 0 0 88 0.2 0 0 +2.37024E7 28 24 79 98646 369 1365 421 163 239 99 17901 7540 10861 3496 275 0 5 5 1800 3048 9 999999999 103 0 0 88 0.2 0 0 +2.3706E7 28.8 24.8 79 98219 648 1365 426 374 451 160 42016 23637 18035 6568 249 0 5 5 2000 3048 9 999999999 111 0 0 88 0.2 0 0 +2.37096E7 32 24 63 98680 880 1365 437 600 704 147 70899 35969 17396 7084 120 2.6 3 3 2800 3048 9 999999999 102 0 0 88 0.2 0 0 +2.37132E7 33 25 63 98689 1050 1365 444 751 811 128 91828 37390 15718 6680 110 3.1 3 3 3500 3048 9 999999999 113 0 0 88 0.2 0 0 +2.37168E7 33.6 22.2 51 98231 1146 1365 443 842 859 122 93579 91945 16266 3927 110 2.1 3 3 2000 3048 9 999999999 85 0 0 88 0.2 0 0 +2.37204E7 34 24 56 98697 1161 1365 448 854 819 157 104473 40877 19336 8157 110 3.1 3 3 3200 3048 9 999999999 102 0 0 88 0.2 0 0 +2.3724E7 35 23 50 98705 1096 1365 460 750 660 220 88789 38842 26231 10756 100 2.6 5 5 3000 3048 9 999999999 92 0 0 88 0.2 0 0 +2.37276E7 35.2 24.5 54 98001 953 1365 463 627 640 181 73677 34530 21362 8717 70 1.5 5 5 2000 3000 9 999999999 106 0 0 88 0.2 0 0 +2.37312E7 35 23 50 98705 743 1365 460 453 556 151 52261 29854 17464 6735 120 2.1 5 5 3000 3048 9 999999999 92 0 0 88 0.2 0 0 +2.37348E7 35 22 47 98705 481 1365 458 244 345 123 27176 16050 13730 4658 70 2.1 5 5 3000 3048 9 999999999 83 0 0 88 0.2 0 0 +2.37384E7 33.8 24.1 57 97872 183 1365 447 56 62 48 6072 0 5189 1558 339 0 3 3 2000 3048 9 999999999 102 0 0 88 0.2 0 0 +2.3742E7 33 24 59 98689 0 799 424 0 0 0 0 0 0 0 100 1.5 0 0 3500 2000 9 999999999 102 0 0 88 0.2 0 0 +2.37456E7 33 24 59 98689 0 0 424 0 0 0 0 0 0 0 80 2.1 0 0 3000 2000 9 999999999 102 0 0 88 0.2 0 0 +2.37492E7 31 24.4 68 98102 0 0 414 0 0 0 0 0 0 0 90 2.1 0 0 2000 2000 9 999999999 106 0 0 88 0.2 0 0 +2.37528E7 32 24 63 98680 0 0 419 0 0 0 0 0 0 0 120 2.1 0 0 3000 2000 9 999999999 102 0 0 88 0.2 0 0 +2.37564E7 32 24 63 98680 0 0 419 0 0 0 0 0 0 0 318 0 0 0 3000 2000 9 999999999 102 0 0 88 0.2 0 0 +2.376E7 29.4 24.8 76 98205 0 0 405 0 0 0 0 0 0 0 140 2.1 0 0 2000 2000 9 999999999 111 0 0 88 0.2 0 0 +2.37636E7 31 25 70 98672 0 0 414 0 0 0 0 0 0 0 120 2.1 0 0 3000 2000 9 999999999 113 0 0 88 0.2 0 0 +2.37672E7 30 25 75 98663 0 0 409 0 0 0 0 0 0 0 100 1.5 0 0 3000 2000 9 999999999 113 0 0 88 0.2 0 0 +2.37708E7 28.6 24.3 78 98188 0 0 401 0 0 0 0 0 0 0 54 0 0 0 2000 2000 9 999999999 106 0 0 88 0.2 0 0 +2.37744E7 29 25 79 98654 0 0 404 0 0 0 0 0 0 0 100 1.5 0 0 3000 2000 9 999999999 114 0 0 88 0.2 0 0 +2.3778E7 29 25 79 98654 0 0 404 0 0 0 0 0 0 0 20 0 0 0 2800 2000 9 999999999 114 0 0 88 0.2 0 0 +2.37816E7 28.2 25.1 83 98292 0 0 399 0 0 0 0 0 0 0 110 2.1 0 0 2000 2000 9 999999999 115 0 0 88 0.2 0 0 +2.37852E7 29 25 79 98654 61 265 421 14 0 14 1297 0 1306 465 110 2.1 3 3 2600 2000 9 999999999 114 0 0 88 0.2 0 0 +2.37888E7 29 25 79 98654 366 1365 404 173 263 103 18894 8159 11252 3575 100 2.6 0 0 2600 2000 9 999999999 114 0 0 88 0.2 0 0 +2.37924E7 30.4 25.3 74 98467 645 1365 462 206 47 184 22854 2612 20515 7230 110 1.5 9 9 2000 3000 9 999999999 117 0 0 88 0.2 0 0 +2.3796E7 31 26 75 98672 877 1365 440 561 540 215 64097 30672 24673 9601 120 4.1 5 5 3000 3048 9 999999999 125 0 0 88 0.2 0 0 +2.37996E7 34 25 60 98697 1046 1365 457 705 632 222 82624 35766 26108 10646 140 4.1 5 5 5000 3048 9 999999999 113 0 0 88 0.2 0 0 +2.38032E7 36.2 23 47 98457 1142 1365 467 789 685 217 94161 39585 26019 10712 140 2.1 5 5 4000 3000 9 999999999 92 0 0 88 0.2 0 0 +2.38068E7 34 24 56 98697 1157 1365 455 801 682 223 95399 38653 26753 10999 150 3.1 5 5 6000 3048 9 999999999 102 0 0 88 0.2 0 0 +2.38104E7 34 24 56 98697 1091 1365 455 745 659 219 88011 37691 26025 10687 150 2.6 5 5 7000 3048 9 999999999 102 0 0 88 0.2 0 0 +2.3814E7 34.2 24.6 57 98158 948 1365 457 623 639 179 73126 34329 21183 8639 140 1.5 5 5 4000 3000 9 999999999 108 0 0 88 0.2 0 0 +2.38176E7 35 24 53 98705 738 1365 461 448 548 152 51499 28726 17549 6751 130 2.1 5 5 6000 3048 9 999999999 102 0 0 88 0.2 0 0 +2.38212E7 35 24 53 98705 475 1365 461 239 338 122 26518 14562 13582 4603 130 2.1 5 5 6000 3048 9 999999999 102 0 0 88 0.2 0 0 +2.38248E7 33.2 24.4 60 98004 177 1365 451 50 44 44 5435 0 4833 1463 243 0 5 5 4000 3000 9 999999999 106 0 0 88 0.2 0 0 +2.38284E7 33 24 59 98689 0 772 442 0 0 0 0 0 0 0 188 0 3 3 3500 3000 9 999999999 102 0 0 88 0.2 0 0 +2.3832E7 33 25 63 98689 0 0 444 0 0 0 0 0 0 0 48 0 3 3 3500 3000 9 999999999 113 0 0 88 0.2 0 0 +2.38356E7 30.6 24.3 69 98157 0 0 429 0 0 0 0 0 0 0 176 0 3 3 2000 3000 9 999999999 105 0 0 88 0.2 0 0 +2.38392E7 32 25 67 98680 0 0 438 0 0 0 0 0 0 0 232 0 3 3 3000 3000 9 999999999 113 0 0 88 0.2 0 0 +2.38428E7 31 25 70 98672 0 0 432 0 0 0 0 0 0 0 349 0 3 3 2500 3000 9 999999999 113 0 0 88 0.2 0 0 +2.38464E7 30.4 26.2 78 98204 0 0 430 0 0 0 0 0 0 0 161 0 3 3 2000 3000 9 999999999 127 0 0 88 0.2 0 0 +2.385E7 31 25 70 98672 0 0 432 0 0 0 0 0 0 0 0 0 3 3 2500 3000 9 999999999 113 0 0 88 0.2 0 0 +2.38536E7 30 25 75 98663 0 0 427 0 0 0 0 0 0 0 168 0 3 3 2500 3000 9 999999999 113 0 0 88 0.2 0 0 +2.38572E7 29.4 25.1 78 98127 0 0 423 0 0 0 0 0 0 0 279 0 3 3 2000 3000 9 999999999 114 0 0 88 0.2 0 0 +2.38608E7 30 25 75 98663 0 0 427 0 0 0 0 0 0 0 66 0 3 3 2500 3000 9 999999999 113 0 0 88 0.2 0 0 +2.38644E7 30 25 75 98663 0 0 427 0 0 0 0 0 0 0 110 2.1 3 3 2200 3000 9 999999999 113 0 0 88 0.2 0 0 +2.3868E7 28.6 25.5 83 98315 0 0 419 0 0 0 0 0 0 0 110 1.5 3 3 2000 3000 9 999999999 119 0 0 88 0.2 0 0 +2.38716E7 29 25 79 98654 58 253 428 12 0 12 1170 0 1178 426 100 1.5 5 5 2200 3000 9 999999999 114 0 0 88 0.2 0 0 +2.38752E7 30 26 79 98663 364 1366 435 159 233 97 17403 6371 10671 3435 120 2.1 5 5 2200 3000 9 999999999 125 0 0 88 0.2 0 0 +2.38788E7 29.8 24.4 73 98374 642 1366 431 369 493 138 42016 24217 15774 5863 140 2.1 5 5 2000 3000 9 999999999 107 0 0 88 0.2 0 0 +2.38824E7 32 25 67 98680 873 1366 445 560 619 164 65364 32097 19262 7755 160 2.6 5 5 2500 3000 9 999999999 113 0 0 88 0.2 0 0 +2.3886E7 34 25 60 98697 1042 1366 457 702 633 220 82273 35738 25925 10572 150 2.1 5 5 3500 3000 9 999999999 113 0 0 88 0.2 0 0 +2.38896E7 34.4 20.4 44 98247 1138 1366 453 790 696 210 94631 42236 25333 10431 160 2.1 5 5 2000 3000 9 999999999 71 0 0 88 0.2 0 0 +2.38932E7 35 23 50 98705 1153 1366 460 799 687 219 95319 39766 26334 10831 200 2.1 5 5 3500 3000 9 999999999 92 0 0 88 0.2 0 0 +2.38968E7 35 23 50 98705 1086 1366 460 742 663 215 87861 38760 25618 10520 110 1.5 5 5 3500 3000 9 999999999 92 0 0 88 0.2 0 0 +2.39004E7 36 23 47 98714 943 1366 466 620 645 176 73043 35992 20808 8472 90 1.5 5 5 3500 3000 9 999999999 92 0 0 88 0.2 0 0 +2.3904E7 36 23 47 98714 732 1366 466 444 550 150 51150 29473 17346 6657 340 2.1 5 5 3500 3000 9 999999999 92 0 0 88 0.2 0 0 +2.39076E7 35 23 50 98705 469 1366 460 236 336 120 26130 14797 13406 4527 360 4.1 5 5 3500 3048 9 999999999 92 0 0 88 0.2 0 0 +2.39112E7 33.6 24.2 58 97802 171 1366 453 47 38 42 5143 0 4643 1404 360 2.1 5 5 2000 3000 9 999999999 103 0 0 88 0.2 0 0 +2.39148E7 33 24 59 98689 0 746 449 0 0 0 0 0 0 0 10 2.6 5 5 3500 3048 9 999999999 102 0 0 88 0.2 0 0 +2.39184E7 33 25 63 98689 0 0 444 0 0 0 0 0 0 0 10 2.1 3 3 3000 3048 9 999999999 113 0 0 88 0.2 0 0 +2.3922E7 31.2 24.4 67 97909 0 0 433 0 0 0 0 0 0 0 235 0 3 3 2000 3048 9 999999999 106 0 0 88 0.2 0 0 +2.39256E7 32 25 67 98680 0 0 438 0 0 0 0 0 0 0 60 1.5 3 3 2600 3048 9 999999999 113 0 0 88 0.2 0 0 +2.39292E7 32 26 71 98680 0 0 439 0 0 0 0 0 0 0 80 1.5 3 3 1800 3048 9 999999999 125 0 0 88 0.2 0 0 +2.39328E7 29.6 25.1 77 98002 0 0 424 0 0 0 0 0 0 0 134 0 3 3 2000 3048 9 999999999 114 0 0 88 0.2 0 0 +2.39364E7 31 25 70 98672 0 0 432 0 0 0 0 0 0 0 207 0 3 3 1500 3048 9 999999999 113 0 0 88 0.2 0 0 +2.394E7 31 25 70 98672 0 0 432 0 0 0 0 0 0 0 286 0 3 3 1500 3048 9 999999999 113 0 0 88 0.2 0 0 +2.39436E7 29 24.1 75 97929 0 0 420 0 0 0 0 0 0 0 133 0 3 3 2000 3048 9 999999999 103 0 0 88 0.2 0 0 +2.39472E7 30 26 79 98663 0 0 428 0 0 0 0 0 0 0 47 0 3 3 1200 3048 9 999999999 125 0 0 88 0.2 0 0 +2.39508E7 30 26 79 98663 0 0 428 0 0 0 0 0 0 0 165 0 3 3 1200 3048 9 999999999 125 0 0 88 0.2 0 0 +2.39544E7 28.6 25.2 82 97896 0 0 419 0 0 0 0 0 0 0 196 0 3 3 1000 3048 9 999999999 115 0 0 88 0.2 4 0 +2.3958E7 30 26 79 98663 55 241 428 13 0 13 1185 0 1193 428 316 0 3 3 1000 3048 9 999999999 125 0 0 88 0.2 0 0 +2.39616E7 30 26 79 98663 361 1367 428 167 303 88 18432 7263 9686 3187 46 0 3 3 1000 3048 9 999999999 125 0 0 88 0.2 0 0 +2.39652E7 30.6 25.8 76 98157 639 1367 431 389 595 111 44874 24844 12858 4915 20 0 3 3 1000 3048 9 999999999 122 0 0 88 0.2 0 0 +2.39688E7 32 26 71 98680 870 1367 439 590 746 116 70659 32506 13899 5746 143 0 3 3 1500 3048 9 999999999 125 0 0 88 0.2 0 0 +2.39724E7 33 24 59 98689 1039 1367 442 743 805 132 90612 38874 16191 6855 314 0 3 3 2000 3048 9 999999999 102 0 0 88 0.2 0 0 +2.3976E7 34.6 20.6 44 98054 1134 1367 454 786 673 229 93521 41964 27382 11176 79 0 5 5 2000 3048 9 999999999 72 0 0 88 0.2 0 0 +2.39796E7 34 25 60 98697 1148 1367 457 792 680 222 94135 37396 26548 10934 50 2.1 5 5 2800 3048 9 999999999 113 0 0 88 0.2 0 0 +2.39832E7 35 25 56 98705 1081 1367 463 735 657 216 86745 36442 25652 10549 320 2.1 5 5 1800 3048 9 999999999 112 0 0 88 0.2 0 0 +2.39868E7 35.6 24.3 52 97722 937 1367 465 615 641 176 72206 34516 20734 8443 20 3.1 5 5 2000 3048 9 999999999 104 0 0 88 0.2 0 0 +2.39904E7 30 23 66 98663 727 1367 431 440 452 200 49443 27879 22564 8206 130 4.1 5 5 2500 3048 9 999999999 93 0 0 88 0.2 0 0 +2.3994E7 29 23 70 98654 463 1367 463 78 0 78 7706 0 7771 3251 320 2.6 10 10 2500 2438 0 919999999 93 0 0 88 0.2 0 0 +2.39976E7 26.6 24 86 97674 165 1367 437 25 0 25 2370 0 2388 922 180 2.1 9 9 2000 2400 0 919999999 102 0 0 88 0.2 0 0 +2.40012E7 27 24 84 98637 0 720 440 0 0 0 0 0 0 0 260 2.6 9 9 2500 3048 0 19999999 103 0 0 88 0.2 0 0 +2.40048E7 26 24 89 98628 0 0 434 0 0 0 0 0 0 0 270 3.6 9 9 2500 3048 0 19999999 103 0 0 88 0.2 0 0 +2.40084E7 24.6 22.8 90 97988 0 0 424 0 0 0 0 0 0 0 180 1.5 9 9 2000 3000 0 19999999 91 0 0 88 0.2 0 0 +2.4012E7 25 24 94 98619 0 0 428 0 0 0 0 0 0 0 230 2.6 9 9 2500 3048 0 19999999 103 0 0 88 0.2 0 0 +2.40156E7 25 24 94 98619 0 0 428 0 0 0 0 0 0 0 270 2.1 9 9 2800 3048 0 19999999 103 0 0 88 0.2 0 0 +2.40192E7 25.2 22.5 85 97964 0 0 427 0 0 0 0 0 0 0 230 1.5 9 9 2000 3000 0 19999999 89 0 0 88 0.2 0 0 +2.40228E7 25 23 89 98619 0 0 427 0 0 0 0 0 0 0 260 2.1 9 9 4000 3048 0 19999999 94 0 0 88 0.2 0 0 +2.40264E7 25 23 89 98619 0 0 427 0 0 0 0 0 0 0 290 1.5 9 9 4000 3048 0 19999999 94 0 0 88 0.2 0 0 +2.403E7 25 22.3 85 97874 0 0 402 0 0 0 0 0 0 0 197 0 5 5 2000 3000 0 19999999 87 0 0 88 0.2 0 0 +2.40336E7 25 23 89 98619 0 0 403 0 0 0 0 0 0 0 255 0 5 5 4000 3048 0 19999999 94 0 0 88 0.2 0 0 +2.40372E7 25 23 89 98619 0 0 403 0 0 0 0 0 0 0 53 0 5 5 4000 3048 0 19999999 94 0 0 88 0.2 0 0 +2.40408E7 24.8 23 90 97863 0 0 402 0 0 0 0 0 0 0 47 0 5 5 4000 3000 9 999999999 93 0 0 88 0.2 0 0 +2.40444E7 26 24 89 98628 52 228 434 6 0 6 593 0 597 236 105 0 9 9 3200 3048 9 999999999 103 0 0 88 0.2 0 0 +2.4048E7 26 24 89 98628 358 1368 434 87 0 87 8455 0 8523 3154 120 2.1 9 9 2500 3048 9 999999999 103 0 0 88 0.2 0 0 +2.40516E7 26.2 24.2 89 97992 636 1368 435 203 16 195 22378 968 21666 7444 20 0 9 9 2000 3000 9 999999999 105 0 0 88 0.2 0 0 +2.40552E7 27 24 84 98637 867 1368 440 308 31 288 34405 2203 32393 11680 140 1.5 9 9 2200 3048 9 999999999 103 0 0 88 0.2 0 0 +2.40588E7 28 23 74 98646 1035 1368 444 388 31 365 43685 2322 41368 15130 259 0 9 9 2200 3048 9 999999999 93 0 0 88 0.2 0 0 +2.40624E7 29.2 23.1 70 98057 1130 1368 451 432 70 375 49278 5160 43032 16069 260 0 9 9 2000 3000 9 999999999 93 0 0 88 0.2 0 0 +2.4066E7 29 23 70 98654 1144 1368 450 439 70 381 50085 5195 43744 16301 250 1.5 9 9 2200 3048 9 999999999 93 0 0 88 0.2 0 0 +2.40696E7 30 23 66 98663 1076 1368 456 407 69 353 46281 5074 40391 15134 280 1.5 9 9 2200 3048 9 999999999 93 0 0 88 0.2 0 0 +2.40732E7 30.2 23.2 66 97783 932 1368 458 339 29 319 38007 2154 36010 13058 340 1.5 9 9 2000 3000 9 999999999 94 0 0 88 0.2 0 0 +2.40768E7 31 24 66 98672 721 1368 464 241 19 231 26714 1257 25738 8989 310 2.6 9 9 2200 3048 9 999999999 102 0 0 88 0.2 0 0 +2.40804E7 31 24 66 98672 457 1368 464 126 16 121 13909 667 13386 4474 300 2.6 9 9 2200 3048 9 999999999 102 0 0 88 0.2 0 0 +2.4084E7 29.6 23.5 70 97632 159 1368 454 23 0 23 2234 0 2251 870 270 1 9 9 2000 3000 9 999999999 97 0 0 88 0.2 0 0 +2.40876E7 29 25 79 98654 0 694 428 0 0 0 0 0 0 0 260 2.1 5 5 2200 3048 9 999999999 114 0 0 88 0.2 0 0 +2.40912E7 29 25 79 98654 0 0 428 0 0 0 0 0 0 0 270 2.1 5 5 2200 3048 9 999999999 114 0 0 88 0.2 0 0 +2.40948E7 29 24 74 98654 0 0 426 0 0 0 0 0 0 0 270 2.1 5 5 2200 3048 9 999999999 103 0 0 88 0.2 0 0 +2.40984E7 28 24 79 98646 0 0 421 0 0 0 0 0 0 0 286 0 5 5 2200 3048 9 999999999 103 0 0 88 0.2 0 0 +2.4102E7 28 24 79 98646 0 0 421 0 0 0 0 0 0 0 161 0 5 5 2200 3048 9 999999999 103 0 0 88 0.2 0 0 +2.41056E7 26.8 23.6 83 97861 0 0 413 0 0 0 0 0 0 0 2 0 5 5 2000 3000 9 999999999 98 0 0 88 0.2 0 0 +2.41092E7 28 24 79 98646 0 0 421 0 0 0 0 0 0 0 283 0 5 5 2000 3048 9 999999999 103 0 0 88 0.2 0 0 +2.41128E7 28 25 84 98646 0 0 422 0 0 0 0 0 0 0 268 0 5 5 2000 3048 9 999999999 114 0 0 88 0.2 0 0 +2.41164E7 26.4 22.9 81 97965 0 0 410 0 0 0 0 0 0 0 58 0 5 5 2000 3000 9 999999999 92 0 0 88 0.2 0 0 +2.412E7 27 25 89 98637 0 0 416 0 0 0 0 0 0 0 300 1.5 5 5 2200 3048 9 999999999 114 0 0 88 0.2 0 0 +2.41236E7 27 24 84 98637 0 0 415 0 0 0 0 0 0 0 322 0 5 5 1900 3048 9 999999999 103 0 0 88 0.2 0 0 +2.41272E7 26 23.7 87 97922 0 0 409 0 0 0 0 0 0 0 57 0 5 5 4000 3000 9 999999999 100 0 0 88 0.2 0 0 +2.41308E7 27 24 84 98637 49 216 415 11 0 11 1013 0 1020 371 290 1.5 5 5 1600 3048 9 999999999 103 0 0 88 0.2 0 0 +2.41344E7 27 24 84 98637 355 1369 415 155 233 95 16958 6787 10397 3326 280 1.5 5 5 1500 3048 9 999999999 103 0 0 88 0.2 0 0 +2.4138E7 27.2 23.2 79 98205 633 1369 415 364 410 174 40561 23610 19556 6891 220 0 5 5 2000 3000 9 999999999 95 0 0 88 0.2 0 0 +2.41416E7 28 24 79 98646 863 1369 446 307 45 278 34316 3102 31341 11390 290 2.1 9 9 2400 3048 9 999999999 103 0 0 88 0.2 0 0 +2.41452E7 30 24 70 98663 1031 1369 457 385 30 362 43351 2258 41064 15040 270 2.1 9 9 3000 3048 9 999999999 103 0 0 88 0.2 0 0 +2.41488E7 31.6 24.5 66 98204 1126 1369 468 429 94 352 49057 6544 40529 15401 270 1.5 9 9 2000 3000 9 999999999 107 0 0 88 0.2 0 0 +2.41524E7 33 25 63 98689 1139 1369 451 785 584 299 90959 36857 34900 13771 270 1.5 5 5 2500 3048 9 999999999 113 0 0 88 0.2 0 0 +2.4156E7 35 25 56 98705 1071 1369 463 727 608 251 84637 36188 29440 11848 300 2.1 5 5 2500 3048 9 999999999 112 0 0 88 0.2 0 0 +2.41596E7 33.6 22.9 54 97978 927 1369 478 337 92 275 38203 6293 31368 11803 50 2.6 9 9 2000 3000 9 999999999 91 0 0 88 0.2 0 0 +2.41632E7 34 23 53 98697 715 1369 454 431 448 197 48396 27481 22264 8059 30 2.6 5 5 2800 3048 9 999999999 92 0 0 88 0.2 0 0 +2.41668E7 34 23 53 98697 451 1369 454 223 342 111 24839 13980 12381 4191 50 2.6 5 5 2800 3048 9 999999999 92 0 0 88 0.2 0 0 +2.41704E7 31.8 23.4 61 97885 153 1369 441 40 20 37 4318 0 4089 1233 132 0 5 5 2000 3048 9 999999999 96 0 0 88 0.2 0 0 +2.4174E7 32 23 59 98680 0 669 435 0 0 0 0 0 0 0 70 2.1 3 3 2800 3048 9 999999999 93 0 0 88 0.2 0 0 +2.41776E7 31 24 66 98672 0 0 431 0 0 0 0 0 0 0 140 1.5 3 3 2200 3048 9 999999999 102 0 0 88 0.2 0 0 +2.41812E7 29.6 24.5 74 98031 0 0 424 0 0 0 0 0 0 0 251 0 3 3 2000 3048 9 999999999 107 0 0 88 0.2 0 0 +2.41848E7 30 25 75 98663 0 0 427 0 0 0 0 0 0 0 160 2.1 3 3 2200 3048 9 999999999 113 0 0 88 0.2 0 0 +2.41884E7 29 25 79 98654 0 0 421 0 0 0 0 0 0 0 190 1.5 3 3 2200 3048 9 999999999 114 0 0 88 0.2 0 0 +2.4192E7 27.6 24.7 84 98111 0 0 413 0 0 0 0 0 0 0 5 0 3 3 2000 3048 9 999999999 110 0 0 88 0.2 0 0 +2.41956E7 29 25 79 98654 0 0 421 0 0 0 0 0 0 0 190 1.5 3 3 2100 3048 9 999999999 114 0 0 88 0.2 0 0 +2.41992E7 28 25 84 98646 0 0 415 0 0 0 0 0 0 0 241 0 3 3 2100 3048 9 999999999 114 0 0 88 0.2 0 0 +2.42028E7 26.4 24.4 89 98111 0 0 406 0 0 0 0 0 0 0 82 0 3 3 2000 3048 9 999999999 107 0 0 88 0.2 0 0 +2.42064E7 27 25 89 98637 0 0 410 0 0 0 0 0 0 0 336 0 3 3 2000 3048 9 999999999 114 0 0 88 0.2 0 0 +2.421E7 27 25 89 98637 0 0 410 0 0 0 0 0 0 0 128 0 3 3 2000 3048 9 999999999 114 0 0 88 0.2 0 0 +2.42136E7 25.8 24.1 90 98232 0 0 402 0 0 0 0 0 0 0 213 0 3 3 2000 3048 9 999999999 104 0 0 88 0.2 0 0 +2.42172E7 26 25 94 98628 46 204 405 11 0 11 1015 0 1022 369 270 1.5 3 3 1500 3048 9 999999999 114 0 0 88 0.2 0 0 +2.42208E7 26 25 94 98628 352 1369 405 162 300 85 17885 7273 9438 3089 270 1.5 3 3 1500 3048 9 999999999 114 0 0 88 0.2 0 0 +2.42244E7 26.4 24.4 89 98247 629 1369 406 383 598 108 44255 25969 12563 4781 270 2.1 3 3 1000 3048 9 999999999 107 0 0 88 0.2 0 0 +2.4228E7 29 25 79 98654 860 1369 421 583 750 112 69917 33643 13500 5565 260 2.1 3 3 1600 3048 9 999999999 114 0 0 88 0.2 0 0 +2.42316E7 31 24 66 98672 1028 1369 431 734 815 123 89769 38537 15076 6390 280 3.6 3 3 2000 3048 9 999999999 102 0 0 88 0.2 0 0 +2.42352E7 33 22.5 54 98245 1121 1369 440 820 856 120 91343 91680 16165 3610 270 1.5 3 3 2000 3048 9 999999999 88 0 0 88 0.2 0 0 +2.42388E7 34 21 47 98697 1135 1369 444 834 788 182 100960 44963 22106 9219 300 4.1 3 3 3000 3048 9 999999999 76 0 0 88 0.2 0 0 +2.42424E7 34 20 44 98697 1066 1369 443 774 850 113 85321 89956 15397 3082 330 4.1 3 3 3000 3048 9 999999999 68 0 0 88 0.2 0 0 +2.4246E7 35 21.2 45 97951 922 1369 450 642 792 109 78278 39706 13396 5580 320 3.1 3 3 2000 3048 9 999999999 76 0 0 88 0.2 0 0 +2.42496E7 35 21 44 98705 710 1369 450 455 625 131 52796 33277 15298 5890 320 3.1 3 3 4000 3048 9 999999999 75 0 0 88 0.2 0 0 +2.42532E7 34 20 44 98697 446 1369 443 234 419 98 26355 17303 11084 3810 290 4.1 3 3 4000 3048 9 999999999 68 0 0 88 0.2 0 0 +2.42568E7 32.8 20.2 48 97825 147 1369 436 40 33 36 4337 0 3965 1187 290 4.1 3 3 4000 3048 9 999999999 69 0 0 88 0.2 0 0 +2.42604E7 32 20 49 98680 0 643 431 0 0 0 0 0 0 0 310 2.6 3 3 3500 3048 9 999999999 69 0 0 88 0.2 0 0 +2.4264E7 32 21 52 98680 0 0 433 0 0 0 0 0 0 0 330 3.1 3 3 3200 3048 9 999999999 76 0 0 88 0.2 0 0 +2.42676E7 28.6 22.4 69 98003 0 0 415 0 0 0 0 0 0 0 161 0 3 3 2000 3048 9 999999999 87 0 0 88 0.2 0 0 +2.42712E7 30 21 59 98663 0 0 421 0 0 0 0 0 0 0 300 1.5 3 3 3000 3048 9 999999999 76 0 0 88 0.2 0 0 +2.42748E7 29 22 66 98654 0 0 417 0 0 0 0 0 0 0 174 0 3 3 3000 3048 9 999999999 84 0 0 88 0.2 0 0 +2.42784E7 26.8 22.7 78 98114 0 0 406 0 0 0 0 0 0 0 81 0 3 3 2000 3048 9 999999999 90 0 0 88 0.2 0 0 +2.4282E7 28 22 70 98646 0 0 412 0 0 0 0 0 0 0 145 0 3 3 2600 3048 9 999999999 84 0 0 88 0.2 0 0 +2.42856E7 27 22 74 98637 0 0 406 0 0 0 0 0 0 0 207 0 3 3 2600 3048 9 999999999 84 0 0 88 0.2 0 0 +2.42892E7 26 22.8 83 98136 0 0 385 0 0 0 0 0 0 0 187 0 0 0 2000 3048 9 999999999 91 0 0 88 0.2 0 0 +2.42928E7 25 22 83 98619 0 0 396 0 0 0 0 0 0 0 128 0 3 3 2200 3048 9 999999999 85 0 0 88 0.2 0 0 +2.42964E7 24 22 89 98610 0 0 374 0 0 0 0 0 0 0 357 0 0 0 1800 3048 9 999999999 85 0 0 88 0.2 0 0 +2.43E7 24.4 21.7 85 98151 0 0 376 0 0 0 0 0 0 0 49 0 0 0 2000 3048 9 999999999 82 0 0 88 0.2 0 0 +2.43036E7 25 22 83 98619 44 191 379 10 0 10 974 0 981 353 171 0 0 0 1600 2000 9 999999999 85 0 0 88 0.2 0 0 +2.43072E7 25 22 83 98619 349 1370 379 163 316 83 18097 8781 9212 3012 290 1.5 0 0 1500 2000 9 999999999 85 0 0 88 0.2 0 0 +2.43108E7 26.6 22.8 80 98249 626 1370 388 386 633 97 45108 27721 11399 4365 290 2.1 0 0 1000 2000 9 999999999 91 0 0 88 0.2 0 0 +2.43144E7 29 23 70 98654 856 1370 401 589 789 97 71657 36231 11814 4879 310 2.1 0 0 2200 2000 9 999999999 93 0 0 88 0.2 0 0 +2.4318E7 31 22 59 98672 1024 1370 411 742 781 160 89219 42553 19279 8041 290 2.6 0 0 2800 2000 9 999999999 84 0 0 88 0.2 0 0 +2.43216E7 35 19.7 41 98282 1117 1370 430 831 788 190 100143 46997 22964 9530 290 2.1 0 0 2000 2000 9 999999999 66 0 0 88 0.2 0 0 +2.43252E7 34 21 47 98697 1130 1370 426 841 789 191 101297 45805 23170 9625 320 4.1 0 0 3500 2000 9 999999999 76 0 0 88 0.2 0 0 +2.43288E7 35 20 42 98705 1061 1370 430 780 784 173 93817 45612 20940 8713 320 3.6 0 0 3500 2000 9 999999999 68 0 0 88 0.2 0 0 +2.43324E7 35.2 19.2 39 97865 916 1370 430 648 833 92 71608 87500 12962 2190 320 4.1 0 0 4000 2000 9 999999999 63 0 0 88 0.2 0 0 +2.4336E7 35 20 42 98705 704 1370 430 456 651 122 53321 34512 14324 5536 320 5.7 0 0 4000 2000 9 999999999 68 0 0 88 0.2 0 0 +2.43396E7 35 18 37 98705 440 1370 427 234 436 94 26407 18372 10645 3664 340 2.6 0 0 4000 2000 9 999999999 56 0 0 88 0.2 0 0 +2.43432E7 32.4 19.7 47 97968 141 1370 415 37 29 35 4113 0 3798 1135 270 4.1 0 0 4000 2000 9 999999999 66 0 0 88 0.2 0 0 +2.43468E7 32 20 49 98680 0 618 413 0 0 0 0 0 0 0 330 2.6 0 0 3500 2000 9 999999999 69 0 0 88 0.2 0 0 +2.43504E7 32 20 49 98680 0 0 413 0 0 0 0 0 0 0 340 2.1 0 0 3500 2000 9 999999999 69 0 0 88 0.2 0 0 +2.4354E7 28.8 21 63 97995 0 0 398 0 0 0 0 0 0 0 269 0 0 0 2000 2000 9 999999999 76 0 0 88 0.2 0 0 +2.43576E7 31 21 55 98672 0 0 409 0 0 0 0 0 0 0 20 1.5 0 0 3200 2000 9 999999999 76 0 0 88 0.2 0 0 +2.43612E7 31 21 55 98672 0 0 409 0 0 0 0 0 0 0 177 0 0 0 3200 2000 9 999999999 76 0 0 88 0.2 0 0 +2.43648E7 26.6 21.2 72 98054 0 0 386 0 0 0 0 0 0 0 307 0 0 0 2000 2000 9 999999999 78 0 0 88 0.2 0 0 +2.43684E7 29 21 62 98654 0 0 399 0 0 0 0 0 0 0 245 0 0 0 3000 2000 9 999999999 76 0 0 88 0.2 0 0 +2.4372E7 28 21 66 98646 0 0 393 0 0 0 0 0 0 0 8 0 0 0 3000 2000 9 999999999 76 0 0 88 0.2 0 0 +2.43756E7 25.6 20.4 73 97938 0 0 380 0 0 0 0 0 0 0 302 0 0 0 2000 2000 9 999999999 72 0 0 88 0.2 0 0 +2.43792E7 26 21 74 98628 0 0 383 0 0 0 0 0 0 0 253 0 0 0 2500 2000 9 999999999 76 0 0 88 0.2 0 0 +2.43828E7 26 22 79 98628 0 0 384 0 0 0 0 0 0 0 44 0 0 0 2200 2000 9 999999999 85 0 0 88 0.2 0 0 +2.43864E7 23.8 21.4 86 97981 0 0 372 0 0 0 0 0 0 0 263 0 0 0 2000 2000 9 999999999 79 0 0 88 0.2 0 0 +2.439E7 25 22 83 98619 41 178 379 10 0 10 911 0 918 331 270 0 0 0 2000 2000 9 999999999 85 0 0 88 0.2 0 0 +2.43936E7 25 22 83 98619 346 1371 379 161 314 82 17871 8562 9135 2982 47 0 0 0 1800 2000 9 999999999 85 0 0 88 0.2 0 0 +2.43972E7 26.4 21.9 76 98189 623 1371 386 384 635 96 44939 28419 11273 4309 79 0 0 0 2000 2000 9 999999999 83 0 0 88 0.2 0 0 +2.44008E7 30 21 59 98663 853 1371 404 588 797 93 71876 38391 11415 4704 283 0 0 0 2200 2000 9 999999999 76 0 0 88 0.2 0 0 +2.44044E7 32 21 52 98680 1020 1371 415 740 781 160 88992 43663 19329 8046 150 1.5 0 0 2500 2000 9 999999999 76 0 0 88 0.2 0 0 +2.4408E7 33.8 20.7 46 98184 1113 1371 424 826 788 187 99435 45879 22634 9411 140 2.1 0 0 2000 2000 9 999999999 73 0 0 88 0.2 0 0 +2.44116E7 35 20 42 98705 1125 1371 430 838 789 192 100993 46863 23204 9628 300 2.1 0 0 2800 2000 9 999999999 68 0 0 88 0.2 0 0 +2.44152E7 36 20 39 98714 1056 1371 436 775 784 172 93256 45550 20780 8644 300 2.6 0 0 3500 2000 9 999999999 68 0 0 88 0.2 0 0 +2.44188E7 35.8 20 40 97821 911 1371 434 642 828 92 71213 87263 13105 2179 49 0 0 0 2000 2000 9 999999999 68 0 0 88 0.2 0 0 +2.44224E7 36 21 42 98714 699 1371 437 451 645 123 52539 33407 14364 5540 280 2.6 0 0 4000 2000 9 999999999 75 0 0 88 0.2 0 0 +2.4426E7 35 21 44 98705 434 1371 431 228 424 94 25658 16271 10612 3645 60 3.1 0 0 4000 2000 9 999999999 75 0 0 88 0.2 0 0 +2.44296E7 34 22 50 98697 135 1371 427 35 20 33 3817 0 3613 1082 50 2.6 0 0 3000 2000 9 999999999 83 0 0 88 0.2 0 0 +2.44332E7 32 22 56 98680 0 592 416 0 0 0 0 0 0 0 60 2.1 0 0 3000 2000 9 999999999 84 0 0 88 0.2 0 0 +2.44368E7 31 22 59 98672 0 0 411 0 0 0 0 0 0 0 50 2.1 0 0 3000 2000 9 999999999 84 0 0 88 0.2 0 0 +2.44404E7 29 20.6 61 97900 0 0 398 0 0 0 0 0 0 0 0 0 0 0 2000 2000 9 999999999 73 0 0 88 0.2 0 0 +2.4444E7 29 20 58 98654 0 0 397 0 0 0 0 0 0 0 110 1.5 0 0 3000 2000 9 999999999 69 0 0 88 0.2 0 0 +2.44476E7 29 21 62 98654 0 0 399 0 0 0 0 0 0 0 193 0 0 0 2800 2000 9 999999999 76 0 0 88 0.2 0 0 +2.44512E7 26.2 21.4 75 97428 0 0 385 0 0 0 0 0 0 0 14 0 0 0 2000 2000 9 999999999 79 0 0 88 0.2 0 0 +2.44548E7 28 21 66 98646 0 0 393 0 0 0 0 0 0 0 81 0 0 0 2800 2000 9 999999999 76 0 0 88 0.2 0 0 +2.44584E7 28 22 70 98646 0 0 395 0 0 0 0 0 0 0 80 0 0 0 2800 2000 9 999999999 84 0 0 88 0.2 0 0 +2.4462E7 25.8 21.3 76 97843 0 0 382 0 0 0 0 0 0 0 187 0 0 0 2000 2000 9 999999999 78 0 0 88 0.2 0 0 +2.44656E7 27 20 66 98637 0 0 387 0 0 0 0 0 0 0 280 3.1 0 0 2500 2000 9 999999999 69 0 0 88 0.2 0 0 +2.44692E7 26 19 65 98628 0 0 397 0 0 0 0 0 0 0 270 3.1 3 3 3000 2000 9 999999999 63 0 0 88 0.2 0 0 +2.44728E7 25.6 17.7 62 97919 0 0 400 0 0 0 0 0 0 0 340 1.5 5 5 2000 2000 9 999999999 55 0 0 88 0.2 0 0 +2.44764E7 26 16 54 98628 38 165 423 5 0 5 445 0 448 176 260 2.6 9 9 3500 3048 9 999999999 46 0 0 88 0.2 0 0 +2.448E7 26 16 54 98628 343 1372 423 83 0 83 8170 0 8234 2995 44 0 9 9 3500 3048 9 999999999 46 0 0 88 0.2 0 0 +2.44836E7 26.2 16.1 54 98031 620 1372 424 199 22 189 22172 1482 21199 7174 320 2.1 9 9 4000 3000 9 999999999 47 0 0 88 0.2 0 0 +2.44872E7 28 17 51 98646 849 1372 436 304 29 286 34168 2333 32321 11447 350 2.6 9 9 4000 3048 9 999999999 51 0 0 88 0.2 0 0 +2.44908E7 29 17 48 98654 1016 1372 442 383 32 359 43356 2670 40949 14806 350 2.6 9 9 4000 3048 9 999999999 51 0 0 88 0.2 0 0 +2.44944E7 31.2 18.6 47 98143 1109 1372 457 426 98 347 48947 7624 40104 15136 320 3.1 9 9 4000 3000 9 999999999 59 0 0 88 0.2 0 0 +2.4498E7 33 13 30 98689 1121 1372 434 785 562 327 91250 45122 38208 14594 340 3.1 5 5 4000 3048 9 999999999 34 0 0 88 0.2 0 0 +2.45016E7 33 13 30 98689 1051 1372 434 726 674 210 86417 46530 25087 10179 350 3.1 5 5 4000 3048 9 999999999 34 0 0 88 0.2 0 0 +2.45052E7 34 17.2 37 97913 905 1372 439 633 785 115 76937 43494 14043 5795 320 2.1 3 3 4000 3048 9 999999999 51 0 0 88 0.2 0 0 +2.45088E7 33 18 41 98689 693 1372 416 449 652 120 52490 35689 14080 5414 20 2.1 0 0 4000 3048 9 999999999 56 0 0 88 0.2 0 0 +2.45124E7 33 17 38 98689 428 1372 415 226 430 92 25503 17995 10379 3551 330 2.1 0 0 4000 2000 9 999999999 51 0 0 88 0.2 0 0 +2.4516E7 31.4 19.2 48 97842 129 1372 409 33 13 31 3581 0 3458 1032 320 1.5 0 0 4000 2000 9 999999999 63 0 0 88 0.2 0 0 +2.45196E7 30 19 52 98663 0 567 401 0 0 0 0 0 0 0 280 2.1 0 0 3200 2000 9 999999999 62 0 0 88 0.2 0 0 +2.45232E7 29 19 55 98654 0 0 396 0 0 0 0 0 0 0 270 2.1 0 0 3200 2000 9 999999999 62 0 0 88 0.2 0 0 +2.45268E7 29.4 19.6 56 97952 0 0 399 0 0 0 0 0 0 0 270 2.1 0 0 2000 2000 9 999999999 66 0 0 88 0.2 0 0 +2.45304E7 28 20 62 98646 0 0 392 0 0 0 0 0 0 0 280 1.5 0 0 2800 2000 9 999999999 69 0 0 88 0.2 0 0 +2.4534E7 27 21 70 98637 0 0 388 0 0 0 0 0 0 0 280 2.1 0 0 2500 2000 9 999999999 76 0 0 88 0.2 0 0 +2.45376E7 26.2 19.7 67 98041 0 0 383 0 0 0 0 0 0 0 105 0 0 0 2000 2000 9 999999999 67 0 0 88 0.2 0 0 +2.45412E7 26 21 74 98628 0 0 383 0 0 0 0 0 0 0 290 1.5 0 0 2500 2000 9 999999999 76 0 0 88 0.2 0 0 +2.45448E7 26 21 74 98628 0 0 383 0 0 0 0 0 0 0 12 0 0 0 2500 2000 9 999999999 76 0 0 88 0.2 0 0 +2.45484E7 24.4 19.4 74 98083 0 0 373 0 0 0 0 0 0 0 259 0 0 0 2000 2000 9 999999999 65 0 0 88 0.2 0 0 +2.4552E7 25 21 78 98619 0 0 378 0 0 0 0 0 0 0 155 0 0 0 2200 2000 9 999999999 77 0 0 88 0.2 0 0 +2.45556E7 24 20 78 98610 0 0 372 0 0 0 0 0 0 0 149 0 0 0 2200 2000 9 999999999 69 0 0 88 0.2 0 0 +2.45592E7 23.6 19.6 78 97969 0 0 369 0 0 0 0 0 0 0 15 0 0 0 2000 2000 9 999999999 66 0 0 88 0.2 0 0 +2.45628E7 23 19 78 98601 35 152 366 8 0 8 790 0 795 289 111 0 0 0 2200 2000 9 999999999 63 0 0 88 0.2 0 0 +2.45664E7 23 19 78 98601 340 1373 366 158 316 80 17601 9402 8942 2904 139 0 0 0 2000 2000 9 999999999 63 0 0 88 0.2 0 0 +2.457E7 24.8 19.9 74 98223 616 1373 376 381 641 93 44656 29852 10946 4173 260 0 0 0 2000 2000 9 999999999 68 0 0 88 0.2 0 0 +2.45736E7 27 20 66 98637 846 1373 387 583 801 90 71398 39251 11109 4567 280 3.1 0 0 2500 2000 9 999999999 69 0 0 88 0.2 0 0 +2.45772E7 30 19 52 98663 1012 1373 401 736 781 161 88503 45674 19420 8052 320 3.6 0 0 2500 2000 9 999999999 62 0 0 88 0.2 0 0 +2.45808E7 32 19.2 47 98169 1104 1373 412 820 788 187 98779 47395 22629 9390 320 3.6 0 0 2000 2000 9 999999999 63 0 0 88 0.2 0 0 +2.45844E7 33 14 32 98689 1116 1373 411 838 861 139 103832 51555 17255 7258 340 5.1 0 0 3000 2000 9 999999999 38 0 0 88 0.2 0 0 +2.4588E7 34 14 30 98697 1046 1373 416 774 848 128 95503 50214 15909 6683 300 5.1 0 0 3000 2000 9 999999999 37 0 0 88 0.2 0 0 +2.45916E7 34.4 16.1 34 97916 900 1373 421 637 807 109 77839 44891 13321 5497 320 5.1 0 0 2000 2000 9 999999999 46 0 0 88 0.2 0 0 +2.45952E7 34 15 32 98697 687 1373 418 446 655 119 52328 37545 13953 5344 310 5.1 0 0 3500 2000 9 999999999 41 0 0 88 0.2 0 0 +2.45988E7 34 14 30 98697 422 1373 416 223 377 107 24860 18199 11958 3938 310 4.6 0 0 4000 2000 9 999999999 37 0 0 88 0.2 0 0 +2.46024E7 32.4 14.5 34 97948 124 1373 408 30 4 30 3349 0 3316 984 320 4.1 0 0 4000 2000 9 999999999 39 0 0 88 0.2 0 0 +2.4606E7 32 13 31 98680 0 542 404 0 0 0 0 0 0 0 330 2.6 0 0 3200 2000 9 999999999 34 0 0 88 0.2 0 0 +2.46096E7 30 15 40 98663 0 0 396 0 0 0 0 0 0 0 270 1.5 0 0 3200 2000 9 999999999 42 0 0 88 0.2 0 0 +2.46132E7 27.2 16.6 52 97942 0 0 384 0 0 0 0 0 0 0 179 0 0 0 2000 2000 9 999999999 49 0 0 88 0.2 0 0 +2.46168E7 28 16 48 98646 0 0 387 0 0 0 0 0 0 0 322 0 0 0 2800 2000 9 999999999 46 0 0 88 0.2 0 0 +2.46204E7 28 16 48 98646 0 0 387 0 0 0 0 0 0 0 196 0 0 0 2500 2000 9 999999999 46 0 0 88 0.2 0 0 +2.4624E7 24.6 17.2 63 97988 0 0 371 0 0 0 0 0 0 0 317 0 0 0 2000 2000 9 999999999 52 0 0 88 0.2 0 0 +2.46276E7 26 16 54 98628 0 0 377 0 0 0 0 0 0 0 254 0 0 0 2300 2000 9 999999999 46 0 0 88 0.2 0 0 +2.46312E7 24 17 65 98610 0 0 368 0 0 0 0 0 0 0 271 0 0 0 2300 2000 9 999999999 51 0 0 88 0.2 0 0 +2.46348E7 22.8 17.3 71 97913 0 0 363 0 0 0 0 0 0 0 194 0 0 0 2000 2000 9 999999999 53 0 0 88 0.2 0 0 +2.46384E7 22 17 73 98592 0 0 358 0 0 0 0 0 0 0 270 0 0 0 2300 2000 9 999999999 52 0 0 88 0.2 0 0 +2.4642E7 22 17 73 98592 0 0 358 0 0 0 0 0 0 0 310 0 0 0 2200 2000 9 999999999 52 0 0 88 0.2 0 0 +2.46456E7 21.8 16.6 72 97992 0 0 357 0 0 0 0 0 0 0 356 0 0 0 2000 2000 9 999999999 49 0 0 88 0.2 0 0 +2.46492E7 21 16 73 98583 32 139 353 8 0 8 728 0 733 267 270 1.5 0 0 2500 2000 9 999999999 47 0 0 88 0.2 0 0 +2.46528E7 22 16 69 98592 336 1373 357 157 278 89 17338 9872 9858 3103 270 1 0 0 2800 2000 9 999999999 47 0 0 88 0.2 0 0 +2.46564E7 24.2 15.6 59 98072 613 1373 368 381 609 109 44252 32876 12727 4753 270 2.1 0 0 2000 2000 9 999999999 45 0 0 88 0.2 0 0 +2.466E7 27 16 51 98637 842 1373 382 584 783 105 70922 43190 12761 5198 270 3.1 0 0 3500 2000 9 999999999 46 0 0 88 0.2 0 0 +2.46636E7 29 16 45 98654 1008 1373 392 736 848 114 90997 47600 14162 5951 270 3.6 0 0 3500 2000 9 999999999 46 0 0 88 0.2 0 0 +2.46672E7 31.8 16.2 39 98118 1100 1373 407 820 788 190 98873 50119 23008 9506 320 3.1 0 0 4000 2000 9 999999999 47 0 0 88 0.2 0 0 +2.46708E7 32 14 34 98680 1111 1373 406 834 861 138 103267 51502 17135 7209 290 3.1 0 0 4000 2000 9 999999999 38 0 0 88 0.2 0 0 +2.46744E7 31 15 38 98672 1041 1373 402 768 851 123 94924 49260 15272 6424 280 3.1 0 0 4000 2000 9 999999999 42 0 0 88 0.2 0 0 +2.4678E7 34.2 14.9 31 97856 895 1373 419 634 797 115 77101 45846 14007 5755 320 4.1 0 0 4000 2000 9 999999999 41 0 0 88 0.2 0 0 +2.46816E7 34 12 26 98697 682 1373 414 444 651 121 52001 39026 14232 5415 310 5.7 0 0 4000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.46852E7 34 11 25 98697 417 1373 412 220 379 105 24556 18754 11760 3860 300 5.7 0 0 4000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.46888E7 31.6 13.3 33 97912 118 1373 403 28 0 28 2743 0 2763 934 290 4.1 0 0 4000 2000 9 999999999 35 0 0 88 0.2 0 0 +2.46924E7 31 12 31 98672 0 518 398 0 0 0 0 0 0 0 330 2.1 0 0 3500 2000 9 999999999 31 0 0 88 0.2 0 0 +2.4696E7 29 13 37 98654 0 0 389 0 0 0 0 0 0 0 340 2.1 0 0 3200 2000 9 999999999 34 0 0 88 0.2 0 0 +2.46996E7 26.2 16.1 54 98021 0 0 378 0 0 0 0 0 0 0 84 0 0 0 2000 2000 9 999999999 47 0 0 88 0.2 0 0 +2.47032E7 28 14 42 98646 0 0 385 0 0 0 0 0 0 0 210 2.1 0 0 3200 2000 9 999999999 38 0 0 88 0.2 0 0 +2.47068E7 27 14 45 98637 0 0 380 0 0 0 0 0 0 0 191 0 0 0 3200 2000 9 999999999 38 0 0 88 0.2 0 0 +2.47104E7 24.2 14.5 55 98062 0 0 366 0 0 0 0 0 0 0 2 0 0 0 2000 2000 9 999999999 40 0 0 88 0.2 0 0 +2.4714E7 24 14 54 98610 0 0 365 0 0 0 0 0 0 0 110 0 0 0 3200 2000 9 999999999 38 0 0 88 0.2 0 0 +2.47176E7 23 14 57 98601 0 0 360 0 0 0 0 0 0 0 322 0 0 0 3000 2000 9 999999999 38 0 0 88 0.2 0 0 +2.47212E7 22.8 13.9 57 98020 0 0 359 0 0 0 0 0 0 0 94 0 0 0 2000 2000 9 999999999 38 0 0 88 0.2 0 0 +2.47248E7 23 14 57 98601 0 0 360 0 0 0 0 0 0 0 47 0 0 0 3000 2000 9 999999999 38 0 0 88 0.2 0 0 +2.47284E7 23 14 57 98601 0 0 360 0 0 0 0 0 0 0 185 0 0 0 3000 2000 9 999999999 38 0 0 88 0.2 0 0 +2.4732E7 21.8 13.5 59 98099 0 0 354 0 0 0 0 0 0 0 252 0 0 0 2000 2000 9 999999999 36 0 0 88 0.2 0 0 +2.47356E7 23 14 57 98601 29 126 360 7 0 7 662 0 666 245 250 3.1 0 0 3000 2000 9 999999999 38 0 0 88 0.2 0 0 +2.47392E7 23 12 50 98601 333 1374 358 156 282 88 17273 10691 9743 3057 250 2.1 0 0 3000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.47428E7 23.8 14 54 98350 609 1374 364 379 613 107 44127 33647 12532 4675 20 0 0 0 2000 2000 9 999999999 38 0 0 88 0.2 0 0 +2.47464E7 27 13 42 98637 838 1374 378 584 771 114 70540 45425 13807 5584 260 3.1 0 0 3500 2000 9 999999999 34 0 0 88 0.2 0 0 +2.475E7 30 13 35 98663 1004 1374 394 736 840 123 90621 50093 15210 6358 280 5.7 0 0 4000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.47536E7 32.6 14.4 33 98301 1095 1374 409 819 861 134 101391 50908 16604 6992 270 5.1 0 0 4000 2000 9 999999999 39 0 0 88 0.2 0 0 +2.47572E7 32 14 34 98680 1106 1374 406 830 861 137 102706 51451 17013 7159 290 5.7 0 0 4500 2000 9 999999999 38 0 0 88 0.2 0 0 +2.47608E7 34 14 30 98697 1036 1374 416 765 847 127 94309 50073 15695 6587 300 5.1 0 0 4500 2000 9 999999999 37 0 0 88 0.2 0 0 +2.47644E7 35.2 15.1 30 98108 889 1374 424 629 798 113 76524 45547 13764 5652 320 3.1 0 0 4000 2000 9 999999999 42 0 0 88 0.2 0 0 +2.4768E7 35 12 25 98705 676 1374 419 439 648 120 51415 38765 14152 5373 310 6.2 0 0 4500 2000 9 999999999 31 0 0 88 0.2 0 0 +2.47716E7 35 11 23 98705 411 1374 418 215 374 103 24073 18284 11611 3801 300 5.7 0 0 5000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.47752E7 32.2 11.9 29 98682 112 1374 404 27 0 27 2627 0 2645 891 340 3.1 0 0 4000 2000 9 999999999 30 0 0 88 0.2 0 0 +2.47788E7 31 12 31 98672 0 493 398 0 0 0 0 0 0 0 330 2.1 0 0 4000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.47824E7 30 13 35 98663 0 0 394 0 0 0 0 0 0 0 340 2.1 0 0 3500 2000 9 999999999 34 0 0 88 0.2 0 0 +2.4786E7 25.8 16.4 56 98212 0 0 377 0 0 0 0 0 0 0 132 0 0 0 2000 2000 9 999999999 48 0 0 88 0.2 0 0 +2.47896E7 29 14 40 98654 0 0 390 0 0 0 0 0 0 0 23 0 0 0 3000 2000 9 999999999 38 0 0 88 0.2 0 0 +2.47932E7 27 14 45 98637 0 0 380 0 0 0 0 0 0 0 297 0 0 0 3000 2000 9 999999999 38 0 0 88 0.2 0 0 +2.47968E7 23.4 15.8 62 98172 0 0 364 0 0 0 0 0 0 0 319 0 0 0 2000 2000 9 999999999 46 0 0 88 0.2 0 0 +2.48004E7 24 15 57 98610 0 0 366 0 0 0 0 0 0 0 81 0 0 0 3000 2000 9 999999999 42 0 0 88 0.2 0 0 +2.4804E7 23 15 61 98601 0 0 361 0 0 0 0 0 0 0 249 0 0 0 3000 2000 9 999999999 42 0 0 88 0.2 0 0 +2.48076E7 21.6 16.7 74 98146 0 0 356 0 0 0 0 0 0 0 103 0 0 0 2000 2000 9 999999999 50 0 0 88 0.2 0 0 +2.48112E7 21 15 69 98583 0 0 351 0 0 0 0 0 0 0 109 0 0 0 3000 2000 9 999999999 42 0 0 88 0.2 0 0 +2.48148E7 21 15 69 98583 0 0 351 0 0 0 0 0 0 0 94 0 0 0 3500 2000 9 999999999 42 0 0 88 0.2 0 0 +2.48184E7 21 14.1 65 98199 0 0 350 0 0 0 0 0 0 0 24 0 0 0 2000 2000 9 999999999 39 0 0 88 0.2 0 0 +2.4822E7 21 14 64 98583 25 112 350 6 0 6 594 0 598 222 105 0 0 0 3500 2000 9 999999999 38 0 0 88 0.2 0 0 +2.48256E7 21 14 64 98583 330 1375 350 154 278 87 16981 9985 9643 3024 270 2.1 0 0 3500 2000 9 999999999 38 0 0 88 0.2 0 0 +2.48292E7 23.2 14.4 58 98413 606 1375 361 376 612 107 43770 33273 12483 4651 138 0 0 0 2000 2000 9 999999999 40 0 0 88 0.2 0 0 +2.48328E7 27 14 45 98637 834 1375 380 580 773 112 70073 44652 13531 5475 280 3.6 0 0 3500 2000 9 999999999 38 0 0 88 0.2 0 0 +2.48364E7 30 14 38 98663 1000 1375 395 731 838 122 89964 49315 15112 6318 300 4.1 0 0 3500 2000 9 999999999 38 0 0 88 0.2 0 0 +2.484E7 32.6 15.7 36 98378 1091 1375 411 813 788 188 97966 50461 22818 9422 290 2.1 0 0 4000 2000 9 999999999 44 0 0 88 0.2 0 0 +2.48436E7 33 14 32 98689 1102 1375 411 825 862 136 102180 51412 16873 7101 290 3.6 0 0 4000 2000 9 999999999 38 0 0 88 0.2 0 0 +2.48472E7 35 13 27 98705 1031 1375 420 762 849 126 93971 50759 15567 6527 320 3.6 0 0 4500 2000 9 999999999 34 0 0 88 0.2 0 0 +2.48508E7 35.2 13.2 27 98147 884 1375 422 626 792 117 76014 46909 14308 5849 320 2.6 0 0 4000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.48544E7 35 13 27 98705 671 1375 420 434 648 118 50806 38001 13883 5270 320 4.1 0 0 6000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.4858E7 34 13 28 98697 405 1375 415 211 368 102 23515 17230 11476 3748 320 4.6 0 0 6000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.48616E7 31.8 12.7 31 98148 107 1375 403 26 0 26 2507 0 2524 850 150 0 0 0 4000 2000 9 999999999 33 0 0 88 0.2 0 0 +2.48652E7 32 12 29 98680 0 469 403 0 0 0 0 0 0 0 330 2.1 0 0 4500 2000 9 999999999 31 0 0 88 0.2 0 0 +2.48688E7 31 13 33 98672 0 0 399 0 0 0 0 0 0 0 340 1.5 0 0 4000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.48724E7 28.4 15 44 98352 0 0 388 0 0 0 0 0 0 0 320 3.1 0 0 2000 2000 9 999999999 42 0 0 88 0.2 0 0 +2.4876E7 29 14 40 98654 0 0 390 0 0 0 0 0 0 0 360 2.6 0 0 3500 2000 9 999999999 38 0 0 88 0.2 0 0 +2.48796E7 28 14 42 98646 0 0 385 0 0 0 0 0 0 0 350 2.1 0 0 3500 2000 9 999999999 38 0 0 88 0.2 0 0 +2.48832E7 24.6 14.1 52 98377 0 0 368 0 0 0 0 0 0 0 116 0 0 0 2000 2000 9 999999999 38 0 0 88 0.2 0 0 +2.48868E7 26 13 45 98628 0 0 373 0 0 0 0 0 0 0 319 0 0 0 3000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.48904E7 25 13 47 98619 0 0 369 0 0 0 0 0 0 0 99 0 0 0 3000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.4894E7 21.8 13.5 59 98313 0 0 354 0 0 0 0 0 0 0 243 0 0 0 2000 2000 9 999999999 36 0 0 88 0.2 0 0 +2.48976E7 22 15 64 98592 0 0 356 0 0 0 0 0 0 0 112 0 0 0 2500 2000 9 999999999 42 0 0 88 0.2 0 0 +2.49012E7 21 14 64 98583 0 0 350 0 0 0 0 0 0 0 350 0 0 0 2500 2000 9 999999999 38 0 0 88 0.2 0 0 +2.49048E7 20 14.5 71 98287 0 0 346 0 0 0 0 0 0 0 246 0 0 0 2000 2000 9 999999999 40 0 0 88 0.2 0 0 +2.49084E7 20 14 68 98574 22 98 346 5 0 5 523 0 526 197 22 0 0 0 2500 2000 9 999999999 38 0 0 88 0.2 0 0 +2.4912E7 19 15 78 98564 327 1376 342 151 274 86 16696 9463 9549 2991 237 0 0 0 2500 2000 9 999999999 42 0 0 88 0.2 0 0 +2.49156E7 22.2 13.6 58 98501 602 1376 356 374 588 117 43188 33421 13528 4975 270 1.5 0 0 2000 2000 9 999999999 37 0 0 88 0.2 0 0 +2.49192E7 25 14 50 98619 830 1376 370 577 772 111 69646 44545 13450 5437 260 2.6 0 0 2500 2000 9 999999999 38 0 0 88 0.2 0 0 +2.49228E7 28 14 42 98646 996 1376 385 728 838 122 89467 49250 15036 6283 260 2.1 0 0 3000 2000 9 999999999 38 0 0 88 0.2 0 0 +2.49264E7 30.6 15.8 41 98556 1086 1376 401 809 788 187 97427 50325 22640 9351 270 1.5 0 0 2000 2000 9 999999999 45 0 0 88 0.2 0 0 +2.493E7 32 14 34 98680 1097 1376 406 821 862 135 101608 51355 16756 7052 280 3.1 0 0 3000 2000 9 999999999 38 0 0 88 0.2 0 0 +2.49336E7 33 13 30 98689 1026 1376 410 757 848 125 93361 50680 15467 6481 290 3.1 0 0 3000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.49372E7 33.6 14.9 33 98348 879 1376 415 620 796 112 75350 45469 13629 5582 290 3.1 0 0 2000 2000 9 999999999 41 0 0 88 0.2 0 0 +2.49408E7 34 12 26 98697 665 1376 414 430 644 119 50293 38265 13966 5281 300 4.1 0 0 3200 2000 9 999999999 31 0 0 88 0.2 0 0 +2.49444E7 33 12 28 98689 400 1376 408 207 365 101 23102 17092 11315 3685 310 4.1 0 0 3200 2000 9 999999999 31 0 0 88 0.2 0 0 +2.4948E7 31 14.3 36 98287 101 1376 401 25 0 25 2376 0 2392 807 320 3.1 0 0 2000 2000 9 999999999 39 0 0 88 0.2 0 0 +2.49516E7 30 12 33 98663 0 445 393 0 0 0 0 0 0 0 270 2.1 0 0 3000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.49552E7 29 13 37 98654 0 0 389 0 0 0 0 0 0 0 250 2.1 0 0 3000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.49588E7 25.4 13.4 47 98326 0 0 371 0 0 0 0 0 0 0 250 1.5 0 0 2000 2000 9 999999999 36 0 0 88 0.2 0 0 +2.49624E7 27 14 45 98637 0 0 380 0 0 0 0 0 0 0 225 0 0 0 2800 2000 9 999999999 38 0 0 88 0.2 0 0 +2.4966E7 27 13 42 98637 0 0 378 0 0 0 0 0 0 0 328 0 0 0 2800 2000 9 999999999 34 0 0 88 0.2 0 0 +2.49696E7 22.6 14.9 62 98447 0 0 359 0 0 0 0 0 0 0 167 0 0 0 2000 2000 9 999999999 42 0 0 88 0.2 0 0 +2.49732E7 24 14 54 98610 0 0 365 0 0 0 0 0 0 0 48 0 0 0 2500 2000 9 999999999 38 0 0 88 0.2 0 0 +2.49768E7 24 14 54 98610 0 0 365 0 0 0 0 0 0 0 118 0 0 0 2500 2000 9 999999999 38 0 0 88 0.2 0 0 +2.49804E7 20.2 18.3 89 98279 0 0 351 0 0 0 0 0 0 0 216 0 0 0 2000 2000 9 999999999 59 0 0 88 0.2 0 0 +2.4984E7 23 13 53 98601 0 0 359 0 0 0 0 0 0 0 141 0 0 0 2500 2000 9 999999999 35 0 0 88 0.2 0 0 +2.49876E7 23 13 53 98601 0 0 359 0 0 0 0 0 0 0 163 0 0 0 2500 2000 9 999999999 35 0 0 88 0.2 0 0 +2.49912E7 20.2 14.8 71 98454 0 0 347 0 0 0 0 0 0 0 263 0 0 0 2000 2000 9 999999999 41 0 0 88 0.2 0 0 +2.49948E7 19 14 73 98564 19 85 341 5 0 5 450 0 453 172 250 1.5 0 0 2500 2000 9 999999999 38 0 0 88 0.2 0 0 +2.49984E7 21 14 64 98583 323 1377 350 149 273 85 16496 9475 9445 2952 270 1 0 0 2000 2000 9 999999999 38 0 0 88 0.2 0 0 +2.5002E7 22.6 14.5 60 98524 599 1377 359 370 607 106 43038 32831 12417 4611 240 2.1 0 0 2000 2000 9 999999999 40 0 0 88 0.2 0 0 +2.50056E7 27 15 48 98637 827 1377 381 572 777 106 69252 43664 12923 5232 240 1.5 0 0 2800 2000 9 999999999 42 0 0 88 0.2 0 0 +2.50092E7 29 14 40 98654 991 1377 390 724 838 121 88984 49190 14950 6243 240 3.1 0 0 3000 2000 9 999999999 38 0 0 88 0.2 0 0 +2.50128E7 31.8 15.4 37 98644 1082 1377 406 805 867 125 86983 90318 16819 3255 270 2.1 0 0 2000 2000 9 999999999 43 0 0 88 0.2 0 0 +2.50164E7 32 11 28 98680 1092 1377 402 821 867 134 101730 53443 16637 6990 300 2.6 0 0 3000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.502E7 33 11 26 98689 1021 1377 407 755 852 123 93213 51956 15294 6400 320 2.6 0 0 3500 2000 9 999999999 28 0 0 88 0.2 0 0 +2.50236E7 34.2 12.6 27 98421 873 1377 416 617 791 116 74888 47050 14156 5770 320 2.6 0 0 2000 2000 9 999999999 33 0 0 88 0.2 0 0 +2.50272E7 34 10 23 98697 660 1377 411 427 640 121 49867 38964 14146 5320 330 4.1 0 0 4000 2000 9 999999999 25 0 0 88 0.2 0 0 +2.50308E7 33 9 23 98689 394 1377 404 204 384 94 22898 17768 10608 3484 330 4.6 0 0 4000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.50344E7 31.2 12.3 31 98396 95 1377 399 23 0 23 2262 0 2277 766 340 4.6 0 0 4000 2000 9 999999999 32 0 0 88 0.2 0 0 +2.5038E7 31 10 27 98672 0 421 395 0 0 0 0 0 0 0 30 1.5 0 0 3500 2000 9 999999999 25 0 0 88 0.2 0 0 +2.50416E7 30 12 33 98663 0 0 393 0 0 0 0 0 0 0 20 1.5 0 0 3200 2000 9 999999999 31 0 0 88 0.2 0 0 +2.50452E7 25.8 15.3 52 98514 0 0 375 0 0 0 0 0 0 0 90 0 0 0 2000 2000 9 999999999 43 0 0 88 0.2 0 0 +2.50488E7 28 14 42 98646 0 0 385 0 0 0 0 0 0 0 121 0 0 0 3000 2000 9 999999999 38 0 0 88 0.2 0 0 +2.50524E7 26 14 48 98628 0 0 375 0 0 0 0 0 0 0 96 0 0 0 2800 2000 9 999999999 38 0 0 88 0.2 0 0 +2.5056E7 23.6 16 62 98514 0 0 365 0 0 0 0 0 0 0 131 0 0 0 2000 2000 9 999999999 47 0 0 88 0.2 0 0 +2.50596E7 24 15 57 98610 0 0 366 0 0 0 0 0 0 0 42 0 0 0 2500 2000 9 999999999 42 0 0 88 0.2 0 0 +2.50632E7 23 15 61 98601 0 0 361 0 0 0 0 0 0 0 257 0 0 0 2500 2000 9 999999999 42 0 0 88 0.2 0 0 +2.50668E7 22 14.9 64 98344 0 0 356 0 0 0 0 0 0 0 48 0 0 0 2000 2000 9 999999999 42 0 0 88 0.2 0 0 +2.50704E7 21 14 64 98583 0 0 350 0 0 0 0 0 0 0 112 0 0 0 2200 2000 9 999999999 38 0 0 88 0.2 0 0 +2.5074E7 21 14 64 98583 0 0 350 0 0 0 0 0 0 0 35 0 0 0 2200 2000 9 999999999 38 0 0 88 0.2 0 0 +2.50776E7 20.4 15.6 74 98368 0 0 349 0 0 0 0 0 0 0 26 0 0 0 2000 2000 9 999999999 45 0 0 88 0.2 0 0 +2.50812E7 21 14 64 98583 16 71 350 4 0 4 377 0 379 146 280 1.5 0 0 2200 2000 9 999999999 38 0 0 88 0.2 0 0 +2.50848E7 21 14 64 98583 320 1377 350 147 271 84 16250 9214 9344 2916 270 1.5 0 0 2200 2000 9 999999999 38 0 0 88 0.2 0 0 +2.50884E7 22.4 15.9 67 98503 595 1377 359 367 600 108 42482 31792 12511 4635 155 0 0 0 2000 2000 9 999999999 46 0 0 88 0.2 0 0 +2.5092E7 26 15 51 98628 823 1377 376 569 776 106 68820 43554 12842 5194 210 1.5 0 0 2200 2000 9 999999999 42 0 0 88 0.2 0 0 +2.50956E7 29 14 40 98654 987 1377 390 720 837 121 88491 49126 14867 6205 290 3.6 0 0 2800 2000 9 999999999 38 0 0 88 0.2 0 0 +2.50992E7 31.2 13.2 33 98454 1077 1377 400 804 861 132 99483 51664 16345 6873 290 1.5 0 0 2000 2000 9 999999999 35 0 0 88 0.2 0 0 +2.51028E7 33 11 26 98689 1087 1377 407 816 867 133 101167 53387 16506 6935 280 2.6 0 0 3000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.51064E7 33 11 26 98689 1016 1377 407 750 852 122 92616 51877 15183 6350 270 3.1 0 0 3000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.511E7 34.2 12.1 26 98314 868 1377 415 613 790 116 74355 47244 14103 5739 320 2.1 0 0 2000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.51136E7 34 8 20 98697 654 1377 408 424 636 122 49451 39546 14267 5340 350 5.1 0 0 3500 2000 9 999999999 21 0 0 88 0.2 0 0 +2.51172E7 34 7 19 98697 389 1377 407 201 383 93 22539 17810 10442 3420 300 4.1 0 0 4000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.51208E7 30.8 12.6 33 98246 90 1377 398 22 0 22 2138 0 2153 725 340 1.5 0 0 4000 2000 9 999999999 33 0 0 88 0.2 0 0 +2.51244E7 31 9 26 98672 0 397 394 0 0 0 0 0 0 0 260 1.5 0 0 4000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.5128E7 29 11 33 98654 0 0 386 0 0 0 0 0 0 0 141 0 0 0 3000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.51316E7 24.8 14.8 54 98350 0 0 370 0 0 0 0 0 0 0 252 0 0 0 2000 2000 9 999999999 41 0 0 88 0.2 0 0 +2.51352E7 25 13 47 98619 0 0 369 0 0 0 0 0 0 0 68 0 0 0 2500 2000 9 999999999 34 0 0 88 0.2 0 0 +2.51388E7 24 14 54 98610 0 0 365 0 0 0 0 0 0 0 84 0 0 0 2200 2000 9 999999999 38 0 0 88 0.2 0 0 +2.51424E7 22.8 15.5 63 98312 0 0 361 0 0 0 0 0 0 0 213 0 0 0 2000 2000 9 999999999 44 0 0 88 0.2 0 0 +2.5146E7 23 14 57 98601 0 0 360 0 0 0 0 0 0 0 52 0 0 0 2200 2000 9 999999999 38 0 0 88 0.2 0 0 +2.51496E7 23 14 57 98601 0 0 360 0 0 0 0 0 0 0 130 0 0 0 1800 2000 9 999999999 38 0 0 88 0.2 0 0 +2.51532E7 22 15.7 67 98363 0 0 357 0 0 0 0 0 0 0 190 0 0 0 1000 2000 9 999999999 45 0 0 88 0.2 0 0 +2.51568E7 21 14 64 98583 0 0 350 0 0 0 0 0 0 0 79 0 0 0 2000 2000 9 999999999 38 0 0 88 0.2 0 0 +2.51604E7 20 14 68 98574 0 0 346 0 0 0 0 0 0 0 65 0 0 0 2200 2000 9 999999999 38 0 0 88 0.2 0 0 +2.5164E7 19.8 14.3 71 98275 0 0 345 0 0 0 0 0 0 0 112 0 0 0 2000 2000 9 999999999 39 0 0 88 0.2 0 0 +2.51676E7 19 13 68 98564 13 56 340 3 0 3 302 0 304 119 78 0 0 0 2500 2000 9 999999999 35 0 0 88 0.2 0 0 +2.51712E7 21 13 60 98583 317 1378 349 145 270 83 16041 9195 9238 2877 345 0 0 0 2500 2000 9 999999999 35 0 0 88 0.2 0 0 +2.51748E7 22.8 12.7 53 98468 591 1378 357 366 506 149 41353 32207 16891 5915 35 0 0 0 2000 2000 9 999999999 33 0 0 88 0.2 0 0 +2.51784E7 26 12 42 98628 819 1378 372 568 770 111 68581 45573 13456 5412 280 2.1 0 0 2800 2000 9 999999999 31 0 0 88 0.2 0 0 +2.5182E7 29 13 37 98654 983 1378 389 717 839 120 88212 49791 14760 6153 280 2.1 0 0 2800 2000 9 999999999 34 0 0 88 0.2 0 0 +2.51856E7 31.4 15.3 38 98456 1073 1378 404 797 866 124 86094 90167 16740 3167 270 1 0 0 2000 2000 9 999999999 43 0 0 88 0.2 0 0 +2.51892E7 32 13 31 98680 1082 1378 404 809 863 132 100123 51944 16419 6904 310 2.6 0 0 3000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.51928E7 33 11 26 98689 1010 1378 407 745 852 122 92019 51796 15073 6300 330 4.6 0 0 3500 2000 9 999999999 28 0 0 88 0.2 0 0 +2.51964E7 33.6 11.6 26 98202 863 1378 411 609 789 116 73821 47425 14052 5709 270 2.1 0 0 4000 2000 9 999999999 29 0 0 88 0.2 0 0 +2.52E7 34 11 25 98697 649 1378 412 417 635 119 48654 37936 13879 5204 310 4.1 0 0 4000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.52036E7 33 11 26 98689 383 1378 407 195 354 97 21787 16007 10867 3509 310 3.6 0 0 4000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.52072E7 31 13.8 35 98141 85 1378 400 21 0 21 2012 0 2026 683 320 1.5 0 0 4000 2000 9 999999999 37 0 0 88 0.2 0 0 +2.52108E7 31 11 29 98672 0 374 396 0 0 0 0 0 0 0 320 1.5 0 0 3200 2000 9 999999999 28 0 0 88 0.2 0 0 +2.52144E7 30 12 33 98663 0 0 393 0 0 0 0 0 0 0 340 2.1 0 0 3200 2000 9 999999999 31 0 0 88 0.2 0 0 +2.5218E7 24.8 15.6 57 98272 0 0 371 0 0 0 0 0 0 0 137 0 0 0 2000 2000 9 999999999 45 0 0 88 0.2 0 0 +2.52216E7 27 13 42 98637 0 0 378 0 0 0 0 0 0 0 217 0 0 0 2500 2000 9 999999999 34 0 0 88 0.2 0 0 +2.52252E7 25 14 50 98619 0 0 370 0 0 0 0 0 0 0 174 0 0 0 2500 2000 9 999999999 38 0 0 88 0.2 0 0 +2.52288E7 23.2 14.8 59 98228 0 0 362 0 0 0 0 0 0 0 279 0 0 0 2000 2000 9 999999999 41 0 0 88 0.2 0 0 +2.52324E7 24 15 57 98610 0 0 366 0 0 0 0 0 0 0 90 0 0 0 2500 2000 9 999999999 42 0 0 88 0.2 0 0 +2.5236E7 24 15 57 98610 0 0 366 0 0 0 0 0 0 0 22 0 0 0 2500 2000 9 999999999 42 0 0 88 0.2 0 0 +2.52396E7 21.8 13.5 59 98011 0 0 354 0 0 0 0 0 0 0 56 0 0 0 2000 2000 9 999999999 36 0 0 88 0.2 0 0 +2.52432E7 21 14 64 98583 0 0 350 0 0 0 0 0 0 0 174 0 0 0 2500 2000 9 999999999 38 0 0 88 0.2 0 0 +2.52468E7 20 14 68 98574 0 0 346 0 0 0 0 0 0 0 220 0 0 0 2200 2000 9 999999999 38 0 0 88 0.2 0 0 +2.52504E7 19.6 14.5 72 98147 0 0 344 0 0 0 0 0 0 0 278 0 0 0 2000 2000 9 999999999 40 0 0 88 0.2 0 0 +2.5254E7 18 14 77 98555 10 42 336 2 0 2 226 0 227 90 242 0 0 0 2000 2000 9 999999999 38 0 0 88 0.2 0 0 +2.52576E7 21 14 64 98583 313 1379 350 143 266 82 15752 8684 9139 2842 126 0 0 0 2200 2000 9 999999999 38 0 0 88 0.2 0 0 +2.52612E7 22.2 14.4 61 98385 588 1379 356 362 540 132 41211 31803 15083 5397 313 0 0 0 2000 2000 9 999999999 40 0 0 88 0.2 0 0 +2.52648E7 27 12 39 98637 815 1379 377 565 770 110 68151 45460 13363 5369 260 3.1 0 0 2800 2000 9 999999999 31 0 0 88 0.2 0 0 +2.52684E7 30 11 31 98663 978 1379 391 716 844 118 88164 51058 14571 6066 270 2.1 0 0 3000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.5272E7 32.2 12.8 31 98375 1068 1379 405 796 861 130 98504 51848 16117 6773 290 2.6 0 0 2000 2000 9 999999999 33 0 0 88 0.2 0 0 +2.52756E7 33 10 24 98689 1077 1379 406 809 789 193 97363 54338 23311 9555 290 2.6 0 0 3000 2000 9 999999999 25 0 0 88 0.2 0 0 +2.52792E7 34 10 23 98697 1005 1379 411 742 854 120 91659 52333 14897 6221 300 3.1 0 0 4500 2000 9 999999999 25 0 0 88 0.2 0 0 +2.52828E7 35 11.4 24 98087 857 1379 418 605 789 115 73265 47413 13956 5663 330 3.1 0 0 4000 2000 9 999999999 29 0 0 88 0.2 0 0 +2.52864E7 35 9 20 98705 644 1379 415 414 631 120 48251 38562 14010 5227 300 4.1 0 0 4500 2000 9 999999999 23 0 0 88 0.2 0 0 +2.529E7 34 9 22 98697 378 1379 410 192 370 91 21533 16333 10222 3329 310 4.1 0 0 4500 2000 9 999999999 23 0 0 88 0.2 0 0 +2.52936E7 31.8 13.2 32 97972 79 1379 404 20 0 20 1894 0 1907 644 320 3.1 0 0 4000 2000 9 999999999 35 0 0 88 0.2 0 0 +2.52972E7 30 10 29 98663 0 351 390 0 0 0 0 0 0 0 157 0 0 0 3500 2000 9 999999999 25 0 0 88 0.2 0 0 +2.53008E7 29 11 33 98654 0 0 386 0 0 0 0 0 0 0 269 0 0 0 3500 2000 9 999999999 28 0 0 88 0.2 0 0 +2.53044E7 25.4 15.5 54 98141 0 0 373 0 0 0 0 0 0 0 8 0 0 0 2000 2000 9 999999999 44 0 0 88 0.2 0 0 +2.5308E7 28 12 37 98646 0 0 382 0 0 0 0 0 0 0 143 0 0 0 2500 2000 9 999999999 31 0 0 88 0.2 0 0 +2.53116E7 27 13 42 98637 0 0 378 0 0 0 0 0 0 0 16 0 0 0 2200 2000 9 999999999 34 0 0 88 0.2 0 0 +2.53152E7 23 15.7 63 98090 0 0 362 0 0 0 0 0 0 0 77 0 0 0 2000 2000 9 999999999 45 0 0 88 0.2 0 0 +2.53188E7 24 13 50 98610 0 0 364 0 0 0 0 0 0 0 70 0 0 0 2000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.53224E7 23 13 53 98601 0 0 359 0 0 0 0 0 0 0 0 0 0 0 2000 2000 9 999999999 35 0 0 88 0.2 0 0 +2.5326E7 22.8 16.2 66 98059 0 0 361 0 0 0 0 0 0 0 301 0 0 0 2000 2000 9 999999999 47 0 0 88 0.2 0 0 +2.53296E7 23 12 50 98601 0 0 358 0 0 0 0 0 0 0 286 0 0 0 2000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.53332E7 21 14 64 98583 0 0 350 0 0 0 0 0 0 0 274 0 0 0 2200 2000 9 999999999 38 0 0 88 0.2 0 0 +2.53368E7 20.4 14.6 69 97998 0 0 348 0 0 0 0 0 0 0 315 0 0 0 2000 2000 9 999999999 41 0 0 88 0.2 0 0 +2.53404E7 20 14 68 98574 6 28 346 2 0 2 149 0 150 61 49 0 0 0 2200 2000 9 999999999 38 0 0 88 0.2 0 0 +2.5344E7 19 13 68 98564 310 1380 340 141 266 81 15568 8694 9021 2801 248 0 0 0 2500 2000 9 999999999 35 0 0 88 0.2 0 0 +2.53476E7 23.2 12.4 51 98248 584 1380 359 360 506 146 40724 32014 16618 5804 270 3.1 0 0 2000 2000 9 999999999 32 0 0 88 0.2 0 0 +2.53512E7 26 12 42 98628 810 1380 372 562 771 109 67757 45364 13237 5314 270 2.1 0 0 2500 2000 9 999999999 31 0 0 88 0.2 0 0 +2.53548E7 28 12 37 98646 974 1380 382 711 841 118 87465 50351 14522 6043 290 3.1 0 0 2800 2000 9 999999999 31 0 0 88 0.2 0 0 +2.53584E7 32 11.6 29 98266 1063 1380 403 794 864 128 98276 52639 15960 6702 290 3.1 0 0 2000 2000 9 999999999 29 0 0 88 0.2 0 0 +2.5362E7 33 11 26 98689 1072 1380 407 803 867 130 99489 53218 16111 6767 320 4.1 0 0 4500 2000 9 999999999 28 0 0 88 0.2 0 0 +2.53656E7 34 11 25 98697 1000 1380 412 737 852 120 90876 51649 14827 6190 320 4.1 0 0 5000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.53692E7 34.8 10.5 23 98085 852 1380 416 601 789 114 72833 47840 13909 5633 290 5.1 0 0 4000 2000 9 999999999 26 0 0 88 0.2 0 0 +2.53728E7 34 8 20 98697 638 1380 408 411 630 120 47822 38737 13979 5200 300 3.6 0 0 5000 2000 9 999999999 21 0 0 88 0.2 0 0 +2.53764E7 33 7 20 98689 373 1380 402 189 371 89 21228 16418 10043 3263 320 3.1 0 0 5000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.538E7 31.4 13.5 34 97930 74 1380 402 19 0 19 1781 0 1793 606 320 2.1 0 0 4000 2000 9 999999999 36 0 0 88 0.2 0 0 +2.53836E7 29 9 29 98654 0 328 384 0 0 0 0 0 0 0 273 0 0 0 3500 2000 9 999999999 23 0 0 88 0.2 0 0 +2.53872E7 26 10 37 98628 0 0 370 0 0 0 0 0 0 0 184 0 0 0 3000 2000 9 999999999 25 0 0 88 0.2 0 0 +2.53908E7 25.8 12.3 43 98057 0 0 372 0 0 0 0 0 0 0 200 0 0 0 2000 2000 9 999999999 32 0 0 88 0.2 0 0 +2.53944E7 26 11 39 98628 0 0 371 0 0 0 0 0 0 0 90 0 0 0 2500 2000 9 999999999 28 0 0 88 0.2 0 0 +2.5398E7 25 12 44 98619 0 0 367 0 0 0 0 0 0 0 70 0 0 0 2500 2000 9 999999999 31 0 0 88 0.2 0 0 +2.54016E7 23.6 14.1 55 98105 0 0 363 0 0 0 0 0 0 0 59 0 0 0 2000 2000 9 999999999 38 0 0 88 0.2 0 0 +2.54052E7 24 12 47 98610 0 0 362 0 0 0 0 0 0 0 195 0 0 0 2200 2000 9 999999999 31 0 0 88 0.2 0 0 +2.54088E7 23 12 50 98601 0 0 358 0 0 0 0 0 0 0 310 0 0 0 2500 2000 9 999999999 31 0 0 88 0.2 0 0 +2.54124E7 22.6 13.7 57 98038 0 0 358 0 0 0 0 0 0 0 112 0 0 0 2000 2000 9 999999999 37 0 0 88 0.2 0 0 +2.5416E7 22 12 53 98592 0 0 353 0 0 0 0 0 0 0 238 0 0 0 2500 2000 9 999999999 31 0 0 88 0.2 0 0 +2.54196E7 22 12 53 98592 0 0 353 0 0 0 0 0 0 0 164 0 0 0 2500 2000 9 999999999 31 0 0 88 0.2 0 0 +2.54232E7 21 12.6 59 98101 0 0 349 0 0 0 0 0 0 0 328 0 0 0 2000 2000 9 999999999 33 0 0 88 0.2 0 0 +2.54268E7 21 12 56 98583 4 13 348 1 0 1 70 0 71 29 50 0 0 0 2000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.54304E7 22 12 53 98592 306 1381 353 139 265 80 15353 8645 8911 2761 260 2.1 0 0 2200 2000 9 999999999 31 0 0 88 0.2 0 0 +2.5434E7 23.8 11.8 47 98321 580 1381 361 357 508 144 40446 32121 16403 5727 270 3.1 0 0 2000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.54376E7 26 12 42 98628 806 1381 372 558 770 109 67313 45243 13148 5273 270 4.1 0 0 3000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.54412E7 30 12 33 98663 970 1381 393 707 841 117 86971 50282 14426 6000 310 4.1 0 0 4000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.54448E7 32.6 13 30 98320 1059 1381 408 788 861 128 97410 51600 15875 6669 320 4.1 0 0 4000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.54484E7 33 12 28 98689 1067 1381 408 797 865 129 98679 52487 16024 6732 310 4.1 0 0 5000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.5452E7 33 12 28 98689 995 1381 408 731 849 119 90049 50910 14779 6169 310 4.1 0 0 5000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.54556E7 35 13.4 27 98155 847 1381 421 594 788 110 71933 45815 13430 5449 320 3.1 0 0 4000 2000 9 999999999 35 0 0 88 0.2 0 0 +2.54592E7 34 11 25 98697 633 1381 412 404 628 116 47050 37136 13598 5068 290 4.6 0 0 6000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.54628E7 34 11 25 98697 368 1381 412 184 342 93 20523 14703 10424 3340 300 4.6 0 0 6000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.54664E7 31.8 13.6 33 98050 69 1381 404 17 0 17 1662 0 1674 567 320 2.1 0 0 4000 2000 9 999999999 36 0 0 88 0.2 0 0 +2.547E7 31 11 29 98672 0 306 396 0 0 0 0 0 0 0 290 1.5 0 0 5000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.54736E7 29 12 35 98654 0 0 387 0 0 0 0 0 0 0 280 1.5 0 0 4000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.54772E7 25.6 15.8 55 98230 0 0 375 0 0 0 0 0 0 0 345 0 0 0 2000 2000 9 999999999 45 0 0 88 0.2 0 0 +2.54808E7 28 13 40 98646 0 0 384 0 0 0 0 0 0 0 3 0 0 0 3500 2000 9 999999999 34 0 0 88 0.2 0 0 +2.54844E7 27 12 39 98637 0 0 377 0 0 0 0 0 0 0 254 0 0 0 3200 2000 9 999999999 31 0 0 88 0.2 0 0 +2.5488E7 23.6 15.3 60 98203 0 0 364 0 0 0 0 0 0 0 186 0 0 0 2000 2000 9 999999999 43 0 0 88 0.2 0 0 +2.54916E7 25 13 47 98619 0 0 369 0 0 0 0 0 0 0 333 0 0 0 2500 2000 9 999999999 34 0 0 88 0.2 0 0 +2.54952E7 22 15 64 98592 0 0 356 0 0 0 0 0 0 0 80 0 0 0 2500 2000 9 999999999 42 0 0 88 0.2 0 0 +2.54988E7 22.2 15.5 66 98141 0 0 358 0 0 0 0 0 0 0 152 0 0 0 2000 2000 9 999999999 44 0 0 88 0.2 0 0 +2.55024E7 22 15 64 98592 0 0 356 0 0 0 0 0 0 0 339 0 0 0 2500 2000 9 999999999 42 0 0 88 0.2 0 0 +2.5506E7 22 12 53 98592 0 0 353 0 0 0 0 0 0 0 260 1.5 0 0 2800 2000 9 999999999 31 0 0 88 0.2 0 0 +2.55096E7 22 13 57 98149 0 0 354 0 0 0 0 0 0 0 250 1.5 0 0 2000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.55132E7 21 12 56 98583 0 0 348 0 0 0 0 0 0 0 260 2.1 0 0 2500 2000 9 999999999 31 0 0 88 0.2 0 0 +2.55168E7 22 13 57 98592 302 1380 354 136 260 80 15060 8141 8809 2726 250 2.1 0 0 3000 2000 9 999999999 35 0 0 88 0.2 0 0 +2.55204E7 24.8 13.6 50 98496 576 1381 368 353 600 103 40978 32114 12022 4421 218 0 0 0 2000 2000 9 999999999 37 0 0 88 0.2 0 0 +2.5524E7 28 14 42 98646 802 1381 385 553 771 105 66682 43771 12762 5126 270 5.1 0 0 4000 2000 9 999999999 38 0 0 88 0.2 0 0 +2.55276E7 30 15 40 98663 965 1381 396 700 840 113 86017 47938 13994 5832 280 5.1 0 0 4000 2000 9 999999999 42 0 0 88 0.2 0 0 +2.55312E7 30.4 13.4 35 98379 1054 1381 396 783 860 127 96758 51238 15775 6627 290 3.1 0 0 4000 2000 9 999999999 35 0 0 88 0.2 0 0 +2.55348E7 33 15 34 98689 1062 1381 412 789 866 124 97691 50055 15358 6470 300 5.1 0 0 5000 2000 9 999999999 42 0 0 88 0.2 0 0 +2.55384E7 34 14 30 98697 990 1381 416 724 844 119 89015 49399 14743 6155 300 5.1 0 0 5000 2000 9 999999999 37 0 0 88 0.2 0 0 +2.5542E7 34 14.6 31 98166 842 1381 417 588 790 107 71299 44760 12985 5273 270 2.6 0 0 4000 2000 9 999999999 40 0 0 88 0.2 0 0 +2.55456E7 35 12 25 98705 628 1381 419 399 626 115 46441 36366 13403 4993 310 5.1 0 0 5000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.55492E7 34 12 26 98697 362 1381 414 180 336 92 20056 13978 10296 3291 310 5.1 0 0 5000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.55528E7 31.6 15.5 38 98156 64 1381 405 16 0 16 1540 0 1550 529 46 0 0 0 4000 2000 9 999999999 44 0 0 88 0.2 0 0 +2.55564E7 31 12 31 98672 0 284 398 0 0 0 0 0 0 0 320 2.6 0 0 4000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.556E7 30 12 33 98663 0 0 393 0 0 0 0 0 0 0 330 2.1 0 0 3200 2000 9 999999999 31 0 0 88 0.2 0 0 +2.55636E7 26 16.3 55 98282 0 0 377 0 0 0 0 0 0 0 11 0 0 0 2000 2000 9 999999999 48 0 0 88 0.2 0 0 +2.55672E7 27 13 42 98637 0 0 378 0 0 0 0 0 0 0 258 0 0 0 3000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.55708E7 26 14 48 98628 0 0 375 0 0 0 0 0 0 0 238 0 0 0 3000 2000 9 999999999 38 0 0 88 0.2 0 0 +2.55744E7 23.2 16 64 98287 0 0 363 0 0 0 0 0 0 0 315 0 0 0 2000 2000 9 999999999 46 0 0 88 0.2 0 0 +2.5578E7 23 15 61 98601 0 0 361 0 0 0 0 0 0 0 103 0 0 0 2200 2000 9 999999999 42 0 0 88 0.2 0 0 +2.55816E7 23 14 57 98601 0 0 360 0 0 0 0 0 0 0 115 0 0 0 2200 2000 9 999999999 38 0 0 88 0.2 0 0 +2.55852E7 21.2 15.9 72 98191 0 0 353 0 0 0 0 0 0 0 66 0 0 0 2000 2000 9 999999999 46 0 0 88 0.2 0 0 +2.55888E7 22 15 64 98592 0 0 356 0 0 0 0 0 0 0 260 0 0 0 2200 2000 9 999999999 42 0 0 88 0.2 0 0 +2.55924E7 20 15 73 98574 0 0 347 0 0 0 0 0 0 0 260 1.5 0 0 2200 2000 9 999999999 42 0 0 88 0.2 0 0 +2.5596E7 20.2 15.1 72 98259 0 0 348 0 0 0 0 0 0 0 189 0 0 0 2000 2000 9 999999999 43 0 0 88 0.2 0 0 +2.55996E7 19 14 73 98564 0 0 341 0 0 0 0 0 0 0 270 1.5 0 0 2000 2000 9 999999999 38 0 0 88 0.2 0 0 +2.56032E7 20 14 68 98574 299 1365 346 134 256 79 14765 7627 8705 2690 280 2.1 0 0 2000 2000 9 999999999 38 0 0 88 0.2 0 0 +2.56068E7 22.4 13 55 98455 572 1382 356 351 538 128 39949 31714 14639 5205 270 1.5 0 0 2000 2000 9 999999999 35 0 0 88 0.2 0 0 +2.56104E7 25 14 50 98619 798 1382 370 549 770 105 66218 43637 12684 5089 270 3.6 0 0 2800 2000 9 999999999 38 0 0 88 0.2 0 0 +2.5614E7 27 14 45 98637 961 1382 380 697 835 117 85482 48711 14359 5968 270 3.1 0 0 3000 2000 9 999999999 38 0 0 88 0.2 0 0 +2.56176E7 30.6 13.7 36 98391 1049 1382 398 778 860 126 96144 50950 15667 6580 270 4.1 0 0 2000 2000 9 999999999 37 0 0 88 0.2 0 0 +2.56212E7 32 14 34 98680 1057 1382 406 786 861 127 97067 50889 15810 6645 310 4.6 0 0 1600 2000 9 999999999 38 0 0 88 0.2 0 0 +2.56248E7 32 14 34 98680 985 1382 406 719 843 119 88414 49310 14655 6114 300 5.1 0 0 1800 2000 9 999999999 38 0 0 88 0.2 0 0 +2.56284E7 33 13.1 30 98129 837 1382 410 585 787 109 70815 45729 13264 5367 320 5.1 0 0 2000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.5632E7 33 10 24 98689 622 1382 406 396 624 115 46074 37033 13478 4997 310 5.1 0 0 2200 2000 9 999999999 25 0 0 88 0.2 0 0 +2.56356E7 32 9 24 98680 357 1382 399 178 353 86 19862 14528 9700 3125 300 4.6 0 0 2500 2000 9 999999999 23 0 0 88 0.2 0 0 +2.56392E7 29.6 12.7 35 98100 59 1382 391 15 0 15 1432 0 1442 492 290 5.1 0 0 2000 2000 9 999999999 33 0 0 88 0.2 0 0 +2.56428E7 29 10 31 98654 0 262 385 0 0 0 0 0 0 0 320 3.1 0 0 2500 2000 9 999999999 25 0 0 88 0.2 0 0 +2.56464E7 29 10 31 98654 0 0 385 0 0 0 0 0 0 0 320 3.6 0 0 3000 2000 9 999999999 25 0 0 88 0.2 0 0 +2.565E7 26.8 12.8 42 98212 0 0 377 0 0 0 0 0 0 0 320 1.5 0 0 2000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.56536E7 28 11 35 98646 0 0 381 0 0 0 0 0 0 0 300 3.1 0 0 2800 2000 9 999999999 28 0 0 88 0.2 0 0 +2.56572E7 28 11 35 98646 0 0 381 0 0 0 0 0 0 0 290 3.1 0 0 2800 2000 9 999999999 28 0 0 88 0.2 0 0 +2.56608E7 24.6 16.5 61 98212 0 0 371 0 0 0 0 0 0 0 290 1.5 0 0 2000 2000 9 999999999 49 0 0 88 0.2 0 0 +2.56644E7 22 13 57 98592 0 0 354 0 0 0 0 0 0 0 260 1.5 0 0 2100 2000 9 999999999 35 0 0 88 0.2 0 0 +2.5668E7 21 13 60 98583 0 0 349 0 0 0 0 0 0 0 126 0 0 0 2100 2000 9 999999999 35 0 0 88 0.2 0 0 +2.56716E7 20.8 12.3 58 98129 0 0 347 0 0 0 0 0 0 0 58 0 0 0 2000 2000 9 999999999 32 0 0 88 0.2 0 0 +2.56752E7 21 14 64 98583 0 0 350 0 0 0 0 0 0 0 260 2.1 0 0 2100 2000 9 999999999 38 0 0 88 0.2 0 0 +2.56788E7 20 13 64 98574 0 0 344 0 0 0 0 0 0 0 250 2.1 0 0 2100 2000 9 999999999 35 0 0 88 0.2 0 0 +2.56824E7 20.6 13.3 63 98146 0 0 348 0 0 0 0 0 0 0 4 0 0 0 2000 2000 9 999999999 36 0 0 88 0.2 0 0 +2.5686E7 20 12 60 98574 0 0 343 0 0 0 0 0 0 0 270 1.5 0 0 2100 2000 9 999999999 31 0 0 88 0.2 0 0 +2.56896E7 20 12 60 98574 295 1350 343 132 256 78 14577 7785 8592 2648 240 2.1 0 0 1500 2000 9 999999999 31 0 0 88 0.2 0 0 +2.56932E7 22.8 12.7 53 98351 568 1383 357 348 537 127 39608 31630 14538 5160 270 2.1 0 0 1000 2000 9 999999999 33 0 0 88 0.2 0 0 +2.56968E7 26 12 42 98628 794 1383 372 547 768 107 65961 44860 12881 5150 250 2.1 0 0 2500 2000 9 999999999 31 0 0 88 0.2 0 0 +2.57004E7 28 12 37 98646 956 1383 382 695 840 115 85420 50045 14172 5881 260 3.1 0 0 2600 2000 9 999999999 31 0 0 88 0.2 0 0 +2.5704E7 30.2 12.1 33 98338 1044 1383 394 776 863 125 95962 52046 15533 6516 270 3.1 0 0 2000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.57076E7 32 12 29 98680 1052 1383 403 784 865 126 96957 52288 15673 6578 290 3.1 0 0 4000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.57112E7 33 12 28 98689 980 1383 408 717 847 117 88285 50652 14475 6029 300 5.1 0 0 4500 2000 9 999999999 31 0 0 88 0.2 0 0 +2.57148E7 32.8 10.9 26 98088 831 1383 406 583 785 111 70485 47008 13444 5420 320 5.1 0 0 4000 2000 9 999999999 27 0 0 88 0.2 0 0 +2.57184E7 34 9 22 98697 617 1383 410 393 622 115 45646 37190 13428 4965 300 5.1 0 0 5000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.5722E7 33 9 23 98689 352 1383 404 174 349 85 19458 14078 9577 3077 310 5.1 0 0 5000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.57256E7 30.6 15 39 98021 54 1383 400 14 0 14 1312 0 1321 455 290 3.1 0 0 4000 2000 9 999999999 41 0 0 88 0.2 0 0 +2.57292E7 30 9 27 98663 0 241 389 0 0 0 0 0 0 0 310 3.1 0 0 3500 2000 9 999999999 23 0 0 88 0.2 0 0 +2.57328E7 29 10 31 98654 0 0 385 0 0 0 0 0 0 0 310 1.5 0 0 3000 2000 9 999999999 25 0 0 88 0.2 0 0 +2.57364E7 25 13 47 98166 0 0 369 0 0 0 0 0 0 0 58 0 0 0 2000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.574E7 26 12 42 98628 0 0 372 0 0 0 0 0 0 0 153 0 0 0 3000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.57436E7 25 12 44 98619 0 0 367 0 0 0 0 0 0 0 271 0 0 0 3000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.57472E7 23 13.1 54 98090 0 0 359 0 0 0 0 0 0 0 106 0 0 0 2000 2000 9 999999999 35 0 0 88 0.2 0 0 +2.57508E7 25 13 47 98619 0 0 369 0 0 0 0 0 0 0 126 0 0 0 2200 2000 9 999999999 34 0 0 88 0.2 0 0 +2.57544E7 24 13 50 98610 0 0 364 0 0 0 0 0 0 0 318 0 0 0 2200 2000 9 999999999 34 0 0 88 0.2 0 0 +2.5758E7 21 12.9 60 98101 0 0 349 0 0 0 0 0 0 0 122 0 0 0 2000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.57616E7 22 12 53 98592 0 0 353 0 0 0 0 0 0 0 108 0 0 0 2200 2000 9 999999999 31 0 0 88 0.2 0 0 +2.57652E7 22 12 53 98592 0 0 353 0 0 0 0 0 0 0 260 1.5 0 0 2200 2000 9 999999999 31 0 0 88 0.2 0 0 +2.57688E7 21.4 14.2 64 98163 0 0 352 0 0 0 0 0 0 0 270 1.5 0 0 2000 2000 9 999999999 39 0 0 88 0.2 0 0 +2.57724E7 22 12 53 98592 0 0 368 0 0 0 0 0 0 0 240 1.5 3 3 2200 2000 9 999999999 31 0 0 88 0.2 0 0 +2.5776E7 23 13 53 98601 291 1335 374 128 240 77 14092 7032 8546 2625 260 3.1 3 3 2500 2000 9 999999999 35 0 0 88 0.2 0 0 +2.57796E7 22.8 14.3 59 98341 564 1384 359 343 530 128 39050 30573 14558 5155 270 2.1 0 0 2000 2000 9 999999999 39 0 0 88 0.2 0 0 +2.57832E7 26 14 48 98628 789 1384 375 542 769 103 65317 43375 12501 5005 270 3.6 0 0 3500 2000 9 999999999 38 0 0 88 0.2 0 0 +2.57868E7 28 13 40 98646 952 1384 384 690 837 115 84677 49280 14146 5868 310 5.1 0 0 4000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.57904E7 30.2 13.1 35 98348 1040 1384 395 771 860 125 95181 51270 15450 6482 320 3.1 0 0 2000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.5794E7 32 12 29 98680 1048 1384 403 779 865 125 96386 52221 15557 6527 310 5.1 0 0 5000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.57976E7 32 13 31 98680 975 1384 422 702 781 152 84643 49495 18452 7576 300 5.1 3 3 5000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.58012E7 32.8 16.4 37 98078 826 1384 438 533 581 186 61662 38589 21641 8305 320 2.1 5 5 4000 2000 9 999999999 48 0 0 88 0.2 0 0 +2.58048E7 32 13 31 98680 612 1384 428 359 507 135 41077 30886 15498 5596 320 5.1 5 5 5000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.58084E7 31 13 33 98672 347 1384 399 170 351 81 18944 12668 9135 2957 310 4.1 0 0 5000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.5812E7 29.8 14.3 39 98062 49 1384 394 13 0 13 1201 0 1209 419 320 1.5 0 0 4000 2000 9 999999999 39 0 0 88 0.2 0 0 +2.58156E7 29 13 37 98654 0 220 389 0 0 0 0 0 0 0 290 1.5 0 0 4000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.58192E7 28 14 42 98646 0 0 385 0 0 0 0 0 0 0 229 0 0 0 3000 2000 9 999999999 38 0 0 88 0.2 0 0 +2.58228E7 24.4 15 56 98190 0 0 368 0 0 0 0 0 0 0 263 0 0 0 2000 2000 9 999999999 42 0 0 88 0.2 0 0 +2.58264E7 24 14 54 98610 0 0 365 0 0 0 0 0 0 0 132 0 0 0 2500 2000 9 999999999 38 0 0 88 0.2 0 0 +2.583E7 23 15 61 98601 0 0 361 0 0 0 0 0 0 0 128 0 0 0 2200 2000 9 999999999 42 0 0 88 0.2 0 0 +2.58336E7 22 16 69 98276 0 0 357 0 0 0 0 0 0 0 241 0 0 0 2000 2000 9 999999999 47 0 0 88 0.2 0 0 +2.58372E7 20 15 73 98574 0 0 347 0 0 0 0 0 0 0 158 0 0 0 2000 2000 9 999999999 42 0 0 88 0.2 0 0 +2.58408E7 20 15 73 98574 0 0 347 0 0 0 0 0 0 0 50 0 0 0 1900 2000 9 999999999 42 0 0 88 0.2 0 0 +2.58444E7 19.8 14.3 71 98236 0 0 345 0 0 0 0 0 0 0 222 0 0 0 1000 2000 9 999999999 39 0 0 88 0.2 0 0 +2.5848E7 19 15 78 98564 0 0 342 0 0 0 0 0 0 0 263 0 0 0 1700 2000 9 999999999 42 0 0 88 0.2 0 0 +2.58516E7 19 15 78 98564 0 0 342 0 0 0 0 0 0 0 228 0 0 0 1700 2000 9 999999999 42 0 0 88 0.2 0 0 +2.58552E7 20.4 14.6 69 98319 0 0 348 0 0 0 0 0 0 0 203 0 0 0 1000 2000 9 999999999 41 0 0 88 0.2 0 0 +2.58588E7 19 15 78 98564 0 0 342 0 0 0 0 0 0 0 252 0 0 0 1500 2000 9 999999999 42 0 0 88 0.2 0 0 +2.58624E7 20 14 68 98574 288 1320 346 127 247 76 13986 6775 8377 2574 146 0 0 0 1400 2000 9 999999999 38 0 0 88 0.2 0 0 +2.5866E7 22.4 15 63 98571 560 1385 358 340 526 127 38593 29956 14512 5128 305 0 0 0 2000 2000 9 999999999 42 0 0 88 0.2 0 0 +2.58696E7 25 14 50 98619 785 1385 370 538 768 103 64854 43236 12415 4965 280 2.6 0 0 1800 2000 9 999999999 38 0 0 88 0.2 0 0 +2.58732E7 28 15 45 98646 947 1385 386 684 837 111 83928 47623 13702 5692 270 2.6 0 0 2200 2000 9 999999999 42 0 0 88 0.2 0 0 +2.58768E7 30.2 15.3 40 98562 1035 1385 398 764 864 118 82588 89915 16101 2841 270 1 0 0 2000 2000 9 999999999 43 0 0 88 0.2 0 0 +2.58804E7 32 15 36 98680 1043 1385 407 771 865 120 95388 49794 14952 6289 280 2.6 0 0 2800 2000 9 999999999 42 0 0 88 0.2 0 0 +2.5884E7 33 15 34 98689 970 1385 412 705 845 113 86677 48190 13938 5812 320 3.1 0 0 4500 2000 9 999999999 42 0 0 88 0.2 0 0 +2.58876E7 34 12.8 28 98332 821 1385 415 572 784 107 69181 45490 12987 5234 320 3.6 0 0 4000 2000 9 999999999 33 0 0 88 0.2 0 0 +2.58912E7 33 10 24 98689 607 1385 406 384 617 113 44549 36181 13176 4858 320 3.6 0 0 4500 2000 9 999999999 25 0 0 88 0.2 0 0 +2.58948E7 33 9 23 98689 342 1385 404 167 340 83 18675 13196 9334 2984 330 3.6 0 0 4500 2000 9 999999999 23 0 0 88 0.2 0 0 +2.58984E7 29.8 14.7 40 98364 45 1385 395 11 0 11 1089 0 1097 383 320 3.6 0 0 4000 2000 9 999999999 40 0 0 88 0.2 0 0 +2.5902E7 29 12 35 98654 0 199 387 0 0 0 0 0 0 0 40 2.1 0 0 3200 2000 9 999999999 31 0 0 88 0.2 0 0 +2.59056E7 28 13 40 98646 0 0 384 0 0 0 0 0 0 0 50 2.1 0 0 2800 2000 9 999999999 34 0 0 88 0.2 0 0 +2.59092E7 25.2 16.4 58 98596 0 0 374 0 0 0 0 0 0 0 50 1.5 0 0 2000 2000 9 999999999 48 0 0 88 0.2 0 0 +2.59128E7 26 15 51 98628 0 0 376 0 0 0 0 0 0 0 140 0 0 0 1500 2000 9 999999999 42 0 0 88 0.2 0 0 +2.59164E7 25 15 54 98619 0 0 371 0 0 0 0 0 0 0 283 0 0 0 1500 2000 9 999999999 42 0 0 88 0.2 0 0 +2.592E7 23 16.5 67 98839 0 0 363 0 0 0 0 0 0 0 305 0 0 0 1000 2000 9 999999999 49 0 0 88 0.2 0 0 +2.59236E7 23 15 61 98601 0 0 361 0 0 0 0 0 0 0 167 0 0 0 1500 2000 9 999999999 42 0 0 88 0.2 0 0 +2.59272E7 22 15 64 98592 0 0 356 0 0 0 0 0 0 0 150 0 0 0 1400 2000 9 999999999 42 0 0 88 0.2 0 0 +2.59308E7 20.6 15.6 73 98701 0 0 350 0 0 0 0 0 0 0 298 0 0 0 1000 2000 9 999999999 45 0 0 88 0.2 0 0 +2.59344E7 22 15 64 98592 0 0 356 0 0 0 0 0 0 0 268 0 0 0 1200 2000 9 999999999 42 0 0 88 0.2 0 0 +2.5938E7 20 15 73 98574 0 0 347 0 0 0 0 0 0 0 230 1.5 0 0 1200 2000 9 999999999 42 0 0 88 0.2 0 0 +2.59416E7 19.4 15 76 98806 0 0 344 0 0 0 0 0 0 0 7 0 0 0 1000 2000 9 999999999 42 0 0 88 0.2 0 0 +2.59452E7 19 15 78 98564 0 0 342 0 0 0 0 0 0 0 178 0 0 0 1000 2000 9 999999999 42 0 0 88 0.2 0 0 +2.59488E7 19 14 73 98564 284 1304 341 125 243 75 13723 6487 8266 2536 260 1.5 0 0 1000 2000 9 999999999 38 0 0 88 0.2 0 0 +2.59524E7 20.8 14.3 66 98956 556 1385 350 337 526 126 38288 30085 14381 5073 270 2.1 0 0 1000 2000 9 999999999 40 0 0 88 0.2 0 0 +2.5956E7 24 14 54 98610 781 1385 365 534 767 102 64389 43093 12330 4926 280 1.5 0 0 800 2000 9 999999999 38 0 0 88 0.2 0 0 +2.59596E7 27 14 45 98637 942 1385 380 681 833 114 83405 48388 14037 5816 270 2.1 0 0 1000 2000 9 999999999 38 0 0 88 0.2 0 0 +2.59632E7 29.2 14.3 40 98934 1030 1385 391 761 858 123 93835 50205 15176 6367 290 2.1 0 0 1000 2000 9 999999999 39 0 0 88 0.2 0 0 +2.59668E7 30 13 35 98663 1038 1385 394 769 862 124 95003 51370 15369 6446 300 4.1 0 0 1300 2000 9 999999999 34 0 0 88 0.2 0 0 +2.59704E7 31 13 33 98672 965 1385 399 702 843 116 86312 49691 14248 5923 340 3.1 0 0 1500 2000 9 999999999 34 0 0 88 0.2 0 0 +2.5974E7 32.6 12 28 98612 816 1385 406 568 783 107 68709 45866 13001 5229 320 3.1 0 0 1000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.59776E7 32 9 24 98680 602 1385 399 380 616 113 44143 36331 13115 4822 330 5.1 0 0 2200 2000 9 999999999 23 0 0 88 0.2 0 0 +2.59812E7 31 9 26 98672 338 1385 394 164 335 82 18296 12762 9216 2938 330 3.6 0 0 2500 2000 9 999999999 23 0 0 88 0.2 0 0 +2.59848E7 29 15.3 43 98659 40 1385 392 10 0 10 979 0 986 348 320 3.6 0 0 2000 2000 9 999999999 43 0 0 88 0.2 0 0 +2.59884E7 27 13 42 98637 0 179 378 0 0 0 0 0 0 0 280 1.5 0 0 2200 2000 9 999999999 34 0 0 88 0.2 0 0 +2.5992E7 25 14 50 98619 0 0 370 0 0 0 0 0 0 0 58 0 0 0 2200 2000 9 999999999 38 0 0 88 0.2 0 0 +2.59956E7 23.8 14.9 57 98759 0 0 365 0 0 0 0 0 0 0 42 0 0 0 2000 2000 9 999999999 42 0 0 88 0.2 0 0 +2.59992E7 24 12 47 98610 0 0 362 0 0 0 0 0 0 0 341 0 0 0 2100 2000 9 999999999 31 0 0 88 0.2 0 0 +2.60028E7 23 12 50 98601 0 0 358 0 0 0 0 0 0 0 41 0 0 0 2000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.60064E7 21.6 14.5 64 98749 0 0 354 0 0 0 0 0 0 0 218 0 0 0 2000 2000 9 999999999 40 0 0 88 0.2 0 0 +2.601E7 23 13 53 98601 0 0 359 0 0 0 0 0 0 0 113 0 0 0 2000 2000 9 999999999 35 0 0 88 0.2 0 0 +2.60136E7 21 13 60 98583 0 0 349 0 0 0 0 0 0 0 84 0 0 0 2000 2000 9 999999999 35 0 0 88 0.2 0 0 +2.60172E7 20.8 14.7 68 98644 0 0 350 0 0 0 0 0 0 0 231 0 0 0 1000 2000 9 999999999 41 0 0 88 0.2 0 0 +2.60208E7 20 13 64 98574 0 0 344 0 0 0 0 0 0 0 130 0 0 0 1800 2000 9 999999999 35 0 0 88 0.2 0 0 +2.60244E7 20 13 64 98574 0 0 344 0 0 0 0 0 0 0 28 0 0 0 1800 2000 9 999999999 35 0 0 88 0.2 0 0 +2.6028E7 18.6 13.7 73 98575 0 0 339 0 0 0 0 0 0 0 151 0 0 0 2000 2000 9 999999999 37 0 0 88 0.2 0 0 +2.60316E7 16 13 82 98536 0 0 326 0 0 0 0 0 0 0 270 1.5 0 0 1000 2000 9 999999999 35 0 0 88 0.2 0 0 +2.60352E7 16 13 82 98536 280 1289 326 122 241 74 13491 6406 8153 2495 260 1.5 0 0 800 2000 9 999999999 35 0 0 88 0.2 0 0 +2.60388E7 19.8 12.7 64 98732 552 1386 343 335 529 124 38076 30640 14199 5001 113 0 0 0 1000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.60424E7 23 12 50 98601 776 1386 358 532 766 104 64102 44296 12540 4991 250 2.1 0 0 1000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.6046E7 25 13 47 98619 938 1386 369 678 835 113 83095 49019 13909 5756 260 2.6 0 0 1200 2000 9 999999999 34 0 0 88 0.2 0 0 +2.60496E7 28.6 15.6 45 98695 1025 1386 390 755 865 115 81762 90077 15743 2762 290 2.6 0 0 1000 2000 9 999999999 44 0 0 88 0.2 0 0 +2.60532E7 31 11 29 98672 1033 1386 396 767 866 122 94916 52675 15170 6355 340 3.6 0 0 1500 2000 9 999999999 28 0 0 88 0.2 0 0 +2.60568E7 31 10 27 98672 960 1386 395 701 851 113 86429 51546 13944 5786 300 3.6 0 0 1600 2000 9 999999999 25 0 0 88 0.2 0 0 +2.60604E7 28.6 15.6 45 98412 811 1386 390 561 791 98 68001 43009 11920 4818 300 3.6 0 0 1000 2000 9 999999999 44 0 0 88 0.2 0 0 +2.6064E7 32 8 23 98680 597 1386 398 377 615 112 43750 36461 13032 4780 320 4.6 0 0 1800 2000 9 999999999 21 0 0 88 0.2 0 0 +2.60676E7 31 8 24 98672 333 1386 393 161 333 81 17969 12565 9087 2890 320 3.6 0 0 1800 2000 9 999999999 21 0 0 88 0.2 0 0 +2.60712E7 28.4 14.1 42 98430 35 1386 387 9 0 9 873 0 879 313 320 2.6 0 0 1000 2000 9 999999999 38 0 0 88 0.2 0 0 +2.60748E7 28 9 30 98646 0 159 379 0 0 0 0 0 0 0 245 0 0 0 1500 2000 9 999999999 23 0 0 88 0.2 0 0 +2.60784E7 26 10 37 98628 0 0 370 0 0 0 0 0 0 0 4 0 0 0 1500 2000 9 999999999 25 0 0 88 0.2 0 0 +2.6082E7 24.8 13.2 48 98525 0 0 368 0 0 0 0 0 0 0 275 0 0 0 1000 2000 9 999999999 35 0 0 88 0.2 0 0 +2.60856E7 23 12 50 98601 0 0 358 0 0 0 0 0 0 0 108 0 0 0 1000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.60892E7 22 12 53 98592 0 0 353 0 0 0 0 0 0 0 103 0 0 0 1000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.60928E7 19.6 13.3 67 98507 0 0 343 0 0 0 0 0 0 0 21 0 0 0 1000 2000 9 999999999 36 0 0 88 0.2 0 0 +2.60964E7 21 12 56 98583 0 0 348 0 0 0 0 0 0 0 283 0 0 0 800 2000 9 999999999 31 0 0 88 0.2 0 0 +2.61E7 21 12 56 98583 0 0 348 0 0 0 0 0 0 0 133 0 0 0 800 2000 9 999999999 31 0 0 88 0.2 0 0 +2.61036E7 18.4 12.7 69 98457 0 0 337 0 0 0 0 0 0 0 179 0 0 0 500 2000 9 999999999 34 0 0 88 0.2 0 0 +2.61072E7 19 13 68 98564 0 0 340 0 0 0 0 0 0 0 193 0 0 0 800 2000 9 999999999 35 0 0 88 0.2 0 0 +2.61108E7 19 13 68 98564 0 0 340 0 0 0 0 0 0 0 175 0 0 0 800 2000 9 999999999 35 0 0 88 0.2 0 0 +2.61144E7 17.6 13.4 76 98527 0 0 334 0 0 0 0 0 0 0 298 0 0 0 500 2000 9 999999999 36 0 0 88 0.2 0 0 +2.6118E7 17 13 77 98546 0 0 331 0 0 0 0 0 0 0 268 0 0 0 600 2000 9 999999999 35 0 0 88 0.2 0 0 +2.61216E7 17 13 77 98546 276 1273 331 120 238 73 13227 6113 8039 2456 150 0 0 0 600 2000 9 999999999 35 0 0 88 0.2 0 0 +2.61252E7 19.4 13.5 69 98651 548 1387 342 331 524 124 37607 29991 14146 4973 57 0 0 0 500 2000 9 999999999 37 0 0 88 0.2 0 0 +2.61288E7 25 13 47 98619 772 1387 369 528 766 102 63554 43501 12305 4898 157 0 0 0 1000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.61324E7 28 13 40 98646 933 1387 384 674 835 112 82596 48936 13802 5707 357 0 0 0 1200 2000 9 999999999 34 0 0 88 0.2 0 0 +2.6136E7 30.6 10.8 29 98839 1020 1387 394 756 865 120 93523 52565 14920 6242 230 2.1 0 0 1000 2000 9 999999999 27 0 0 88 0.2 0 0 +2.61396E7 32 10 26 98680 1028 1387 400 764 789 180 91806 53729 21701 8871 220 1.5 0 0 1800 2000 9 999999999 25 0 0 88 0.2 0 0 +2.61432E7 33 11 26 98689 955 1387 407 696 848 113 85647 50848 13922 5774 250 1.5 0 0 1800 2000 9 999999999 28 0 0 88 0.2 0 0 +2.61468E7 32.2 13.8 33 98502 806 1387 406 558 782 103 67464 44330 12538 5042 33 0 0 0 2000 2000 9 999999999 37 0 0 88 0.2 0 0 +2.61504E7 33 6 19 98689 593 1387 400 374 613 112 43418 36922 13081 4779 306 0 0 0 1700 2000 9 999999999 17 0 0 88 0.2 0 0 +2.6154E7 33 6 19 98689 328 1387 400 158 332 80 17690 12562 8948 2839 92 0 0 0 1700 2000 9 999999999 17 0 0 88 0.2 0 0 +2.61576E7 28.2 15.5 46 98516 31 1387 388 8 0 8 765 0 770 278 105 0 0 0 2000 2000 9 999999999 44 0 0 88 0.2 0 0 +2.61612E7 27 13 42 98637 0 139 378 0 0 0 0 0 0 0 100 2.1 0 0 1000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.61648E7 26 13 45 98628 0 0 373 0 0 0 0 0 0 0 110 2.1 0 0 1000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.61684E7 24 15.8 60 98605 0 0 367 0 0 0 0 0 0 0 188 0 0 0 1000 2000 9 999999999 46 0 0 88 0.2 0 0 +2.6172E7 24 14 54 98610 0 0 365 0 0 0 0 0 0 0 110 2.6 0 0 1000 2000 9 999999999 38 0 0 88 0.2 0 0 +2.61756E7 23 14 57 98601 0 0 360 0 0 0 0 0 0 0 110 1.5 0 0 1000 2000 9 999999999 38 0 0 88 0.2 0 0 +2.61792E7 21.8 16.9 74 98702 0 0 357 0 0 0 0 0 0 0 166 0 0 0 1000 2000 9 999999999 51 0 0 88 0.2 0 0 +2.61828E7 21 14 64 98583 0 0 350 0 0 0 0 0 0 0 123 0 0 0 1000 2000 9 999999999 38 0 0 88 0.2 0 0 +2.61864E7 20 15 73 98574 0 0 347 0 0 0 0 0 0 0 110 0 0 0 1000 2000 9 999999999 42 0 0 88 0.2 0 0 +2.619E7 19 15.6 81 98676 0 0 343 0 0 0 0 0 0 0 207 0 0 0 1000 2000 9 999999999 45 0 0 88 0.2 0 0 +2.61936E7 20 15 73 98574 0 0 347 0 0 0 0 0 0 0 57 0 0 0 1000 2000 9 999999999 42 0 0 88 0.2 0 0 +2.61972E7 19 15 78 98564 0 0 342 0 0 0 0 0 0 0 205 0 0 0 1000 2000 9 999999999 42 0 0 88 0.2 0 0 +2.62008E7 17.6 15.6 88 98653 0 0 336 0 0 0 0 0 0 0 347 0 0 0 1000 2000 9 999999999 45 0 0 88 0.2 0 0 +2.62044E7 19 15 78 98564 0 0 342 0 0 0 0 0 0 0 212 0 0 0 1000 2000 9 999999999 42 0 0 88 0.2 0 0 +2.6208E7 20 16 78 98574 272 1257 363 116 221 72 12696 4996 7974 2431 31 0 3 3 500 2000 9 999999999 47 0 0 88 0.2 0 0 +2.62116E7 19.8 16.8 83 98878 544 1388 348 326 565 105 37399 28282 12051 4351 78 0 0 0 1000 2000 9 999999999 51 0 0 88 0.2 0 0 +2.62152E7 26 15 51 98628 768 1388 376 522 770 97 63000 41883 11709 4672 38 0 0 0 400 2000 9 999999999 42 0 0 88 0.2 0 0 +2.62188E7 27 15 48 98637 929 1388 381 668 835 109 81844 47269 13365 5534 250 1.5 0 0 700 2000 9 999999999 42 0 0 88 0.2 0 0 +2.62224E7 29.2 14.3 40 98904 1016 1388 391 748 858 120 92185 49998 14879 6233 216 0 0 0 1000 2000 9 999999999 39 0 0 88 0.2 0 0 +2.6226E7 31 12 31 98672 1023 1388 398 757 864 121 93556 51866 15003 6281 40 0 0 0 1500 2000 9 999999999 31 0 0 88 0.2 0 0 +2.62296E7 30 13 35 98663 950 1388 394 689 799 143 83161 49827 17300 7091 312 0 0 0 1500 2000 9 999999999 34 0 0 88 0.2 0 0 +2.62332E7 31.2 15 38 98673 802 1388 427 514 582 178 59510 38858 20718 7901 256 0 5 5 1000 2000 9 999999999 42 0 0 88 0.2 0 0 +2.62368E7 31 15 38 98672 588 1388 426 339 493 131 38670 28664 14954 5351 80 2.6 5 5 1200 2000 9 999999999 42 0 0 88 0.2 0 0 +2.62404E7 30 14 38 98663 324 1388 419 143 236 88 15712 8342 9698 3000 90 2.6 5 5 1200 2000 9 999999999 38 0 0 88 0.2 0 0 +2.6244E7 26.4 16 53 98675 27 1388 396 7 0 7 652 0 656 241 92 0 3 3 1000 2000 9 999999999 46 0 0 88 0.2 0 0 +2.62476E7 24 14.4 55 98643 0 120 375 0 0 0 0 0 0 0 94 0.8 0 0 1200 2000 9 999999999 40 0 0 88 0.2 0 0 +2.62512E7 22.7 14.9 62 98631 0 0 381 0 0 0 0 0 0 0 87 0.4 3 3 1000 2000 9 999999999 42 0 0 88 0.2 0 0 +2.62548E7 21.8 15.3 67 98712 0 0 381 0 0 0 0 0 0 0 119 0 3 3 500 2000 9 999999999 44 0 0 88 0.2 0 0 +2.62584E7 21.5 15.1 67 98677 0 0 372 0 0 0 0 0 0 0 121 0.2 3 3 800 2000 9 999999999 43 0 0 88 0.2 0 0 +2.6262E7 21.3 14.4 65 98675 0 0 353 0 0 0 0 0 0 0 179 0.8 0 0 800 2000 9 999999999 40 0 0 88 0.2 0 0 +2.62656E7 21.3 13.9 63 98675 0 0 348 0 0 0 0 0 0 0 235 1.1 0 0 500 2000 9 999999999 38 0 0 88 0.2 0 0 +2.62692E7 21.2 13.2 60 98585 0 0 360 0 0 0 0 0 0 0 247 1.5 0 0 1300 2000 9 999999999 35 0 0 88 0.2 0 0 +2.62728E7 20.2 12.8 62 98576 0 0 363 0 0 0 0 0 0 0 247 1.8 3 3 1200 2000 9 999999999 34 0 0 88 0.2 0 0 +2.62764E7 19.8 13 65 98571 0 0 371 0 0 0 0 0 0 0 245 1.8 5 5 1200 2000 9 999999999 35 0 0 88 0.2 0 0 +2.628E7 19 13 68 98564 0 0 365 0 0 0 0 0 0 0 242 1.8 5 5 1100 2000 9 999999999 35 0 0 88 0.2 0 0 +2.62836E7 18.8 13.5 72 98562 0 0 359 0 0 0 0 0 0 0 242 2.1 5 5 900 2000 9 999999999 37 0 0 88 0.2 0 0 +2.62872E7 19 13.8 72 98564 0 0 360 0 0 0 0 0 0 0 245 2.3 5 5 900 2000 9 999999999 38 0 0 88 0.2 0 0 +2.62908E7 18 14 77 98555 0 0 364 0 0 0 0 0 0 0 240 1.5 7 7 700 2000 9 999999999 38 0 0 88 0.2 0 0 +2.62944E7 19 15 78 98564 268 1241 370 91 108 70 10002 2380 7738 2364 240 2.6 7 7 600 2000 9 999999999 42 0 0 88 0.2 0 0 +2.6298E7 20 13 64 98574 540 1388 365 307 440 136 34579 26427 15399 5276 260 3.1 5 5 600 2000 9 999999999 35 0 0 88 0.2 0 0 +2.63016E7 22 15 64 98592 763 1388 377 490 637 140 57406 38930 16478 6381 270 2.6 5 5 600 2000 9 999999999 42 0 0 88 0.2 0 0 +2.63052E7 26 15 51 98628 924 1388 392 659 815 117 80318 46970 14254 5880 290 3.6 3 3 800 2000 9 999999999 42 0 0 88 0.2 0 0 +2.63088E7 27 14 45 98637 1011 1388 392 743 855 121 91529 50123 14933 6248 290 4.1 2 2 1100 2000 9 999999999 38 0 0 88 0.2 0 0 +2.63124E7 30 14 38 98663 1018 1388 395 751 859 121 92564 50350 14946 6260 300 4.1 0 0 2000 2000 9 999999999 38 0 0 88 0.2 0 0 +2.6316E7 31 14 36 98672 945 1388 400 684 839 113 83880 48618 13920 5770 300 4.1 0 0 2300 2000 9 999999999 38 0 0 88 0.2 0 0 +2.63196E7 31 13 33 98672 797 1388 399 551 782 103 66548 44611 12431 4983 320 6.2 0 0 2500 2000 9 999999999 34 0 0 88 0.2 0 0 +2.63232E7 31 12 31 98672 583 1388 398 363 605 109 42030 33879 12659 4631 300 6.7 0 0 2800 2000 9 999999999 31 0 0 88 0.2 0 0 +2.63268E7 31 12 31 98672 319 1388 398 151 301 82 16741 10351 9103 2848 300 5.1 0 0 2800 2000 9 999999999 31 0 0 88 0.2 0 0 +2.63304E7 29 13 37 98654 23 1388 389 6 0 6 564 0 568 210 290 3.6 0 0 2800 2000 9 999999999 34 0 0 88 0.2 0 0 +2.6334E7 27 13 42 98637 0 101 378 0 0 0 0 0 0 0 280 3.1 0 0 2800 2000 9 999999999 34 0 0 88 0.2 0 0 +2.63376E7 27 13 42 98637 0 0 378 0 0 0 0 0 0 0 290 2.6 0 0 2000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.63412E7 26 13 45 98628 0 0 373 0 0 0 0 0 0 0 310 3.1 0 0 1800 2000 9 999999999 34 0 0 88 0.2 0 0 +2.63448E7 26 13 45 98628 0 0 373 0 0 0 0 0 0 0 320 3.1 0 0 1900 2000 9 999999999 34 0 0 88 0.2 0 0 +2.63484E7 26 12 42 98628 0 0 372 0 0 0 0 0 0 0 310 3.6 0 0 2100 2000 9 999999999 31 0 0 88 0.2 0 0 +2.6352E7 23 13 53 98601 0 0 359 0 0 0 0 0 0 0 270 2.6 0 0 2100 2000 9 999999999 35 0 0 88 0.2 0 0 +2.63556E7 22 14 60 98592 0 0 355 0 0 0 0 0 0 0 270 2.6 0 0 2100 2000 9 999999999 38 0 0 88 0.2 0 0 +2.63592E7 20 13 64 98574 0 0 344 0 0 0 0 0 0 0 240 1 0 0 2100 2000 9 999999999 35 0 0 88 0.2 0 0 +2.63628E7 19 12 64 98564 0 0 339 0 0 0 0 0 0 0 240 1 0 0 2000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.63664E7 18 14 77 98555 0 0 336 0 0 0 0 0 0 0 220 2.1 0 0 1700 2000 9 999999999 38 0 0 88 0.2 0 0 +2.637E7 17 12 72 98546 0 0 352 0 0 0 0 0 0 0 200 1.5 6 6 1100 2000 9 999999999 32 0 0 88 0.2 0 0 +2.63736E7 17 12 72 98546 0 0 352 0 0 0 0 0 0 0 240 1.5 6 6 1400 2000 9 999999999 32 0 0 88 0.2 0 0 +2.63772E7 16 12 77 98536 0 0 351 0 0 0 0 0 0 0 260 1 7 7 1700 2000 9 999999999 32 0 0 88 0.2 0 0 +2.63808E7 17 13 77 98546 265 1224 331 113 229 70 12460 5261 7685 2336 260 1.5 0 0 2100 2000 9 999999999 35 0 0 88 0.2 0 0 +2.63844E7 19 12 64 98564 535 1389 339 323 525 120 36649 29984 13723 4802 260 2.6 0 0 2100 2000 9 999999999 31 0 0 88 0.2 0 0 +2.6388E7 23 13 53 98601 759 1389 359 517 764 99 62192 43062 12009 4765 270 3.1 0 0 2200 2000 9 999999999 35 0 0 88 0.2 0 0 +2.63916E7 27 12 39 98637 919 1389 377 663 837 109 81300 49348 13433 5539 350 5.1 0 0 3000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.63952E7 28 11 35 98646 1006 1389 381 744 864 118 91861 52226 14599 6098 280 4.1 0 0 3000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.63988E7 29 12 35 98654 1013 1389 387 749 864 119 92474 51729 14774 6179 300 5.7 0 0 3200 2000 9 999999999 31 0 0 88 0.2 0 0 +2.64024E7 31 11 29 98672 940 1389 396 683 847 110 84021 50580 13623 5636 300 5.7 0 0 3200 2000 9 999999999 28 0 0 88 0.2 0 0 +2.6406E7 31 11 29 98672 792 1389 396 549 780 104 66232 45753 12607 5036 300 5.1 0 0 3200 2000 9 999999999 28 0 0 88 0.2 0 0 +2.64096E7 31 11 29 98672 579 1389 396 360 604 108 41678 34088 12592 4595 300 6.2 0 0 4000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.64132E7 31 11 29 98672 315 1389 396 149 299 81 16456 10222 8975 2801 290 4.6 0 0 4000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.64168E7 30 12 33 98663 18 1389 393 5 0 5 464 0 467 176 300 3.6 0 0 4500 2000 9 999999999 31 0 0 88 0.2 0 0 +2.64204E7 29 12 35 98654 0 83 387 0 0 0 0 0 0 0 310 2.1 0 0 4000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.6424E7 25 15 54 98619 0 0 371 0 0 0 0 0 0 0 58 0 0 0 2200 2000 9 999999999 42 0 0 88 0.2 0 0 +2.64276E7 25 14 50 98619 0 0 370 0 0 0 0 0 0 0 197 0 0 0 1800 2000 9 999999999 38 0 0 88 0.2 0 0 +2.64312E7 23 15 61 98601 0 0 380 0 0 0 0 0 0 0 211 0 4 4 1300 2000 9 999999999 42 0 0 88 0.2 0 0 +2.64348E7 22 14 60 98592 0 0 355 0 0 0 0 0 0 0 87 0 0 0 1100 2000 9 999999999 38 0 0 88 0.2 0 0 +2.64384E7 22 14 60 98592 0 0 373 0 0 0 0 0 0 0 87 0 4 4 1100 2000 9 999999999 38 0 0 88 0.2 0 0 +2.6442E7 22 13 57 98592 0 0 372 0 0 0 0 0 0 0 36 0 4 4 1100 2000 9 999999999 35 0 0 88 0.2 0 0 +2.64456E7 20 13 64 98574 0 0 365 0 0 0 0 0 0 0 230 1.5 5 5 1000 2000 9 999999999 35 0 0 88 0.2 0 0 +2.64492E7 19 12 64 98564 0 0 359 0 0 0 0 0 0 0 13 0 5 5 1300 2000 9 999999999 31 0 0 88 0.2 0 0 +2.64528E7 19 11 60 98564 0 0 355 0 0 0 0 0 0 0 33 0 4 4 1400 2000 9 999999999 28 0 0 88 0.2 0 0 +2.64564E7 18 11 64 98555 0 0 333 0 0 0 0 0 0 0 230 1.5 0 0 1700 2000 9 999999999 28 0 0 88 0.2 0 0 +2.646E7 18 10 59 98555 0 0 332 0 0 0 0 0 0 0 240 1.5 0 0 2000 2000 9 999999999 26 0 0 88 0.2 0 0 +2.64636E7 18 12 68 98555 0 0 334 0 0 0 0 0 0 0 172 0 0 0 2400 2000 9 999999999 31 0 0 88 0.2 0 0 +2.64672E7 19 11 60 98564 261 1208 338 111 228 68 12251 5322 7566 2294 240 1 0 0 2400 2000 9 999999999 28 0 0 88 0.2 0 0 +2.64708E7 20 12 60 98574 531 1390 343 319 523 119 36264 29717 13608 4754 240 1.5 0 0 2400 2000 9 999999999 31 0 0 88 0.2 0 0 +2.64744E7 22 10 46 98592 754 1390 350 516 762 102 61985 44741 12311 4862 270 2.6 0 0 2500 2000 9 999999999 26 0 0 88 0.2 0 0 +2.6478E7 26 12 42 98628 915 1390 372 659 837 108 80775 49247 13345 5497 260 2.6 0 0 2200 2000 9 999999999 31 0 0 88 0.2 0 0 +2.64816E7 28 12 37 98646 1001 1390 382 738 862 118 91080 51489 14559 6080 260 3.1 0 0 2200 2000 9 999999999 31 0 0 88 0.2 0 0 +2.64852E7 31 12 31 98672 1008 1390 398 745 864 118 91938 51659 14662 6129 290 2.6 0 0 2500 2000 9 999999999 31 0 0 88 0.2 0 0 +2.64888E7 32 12 29 98680 935 1390 403 678 844 110 83259 49844 13606 5626 310 4.1 0 0 2500 2000 9 999999999 31 0 0 88 0.2 0 0 +2.64924E7 32 12 29 98680 787 1390 403 544 780 102 65641 44976 12381 4946 310 4.1 0 0 3000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.6496E7 33 12 28 98689 574 1390 408 356 601 108 41148 33341 12508 4558 300 4.1 0 0 3000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.64996E7 32 12 29 98680 311 1390 403 146 294 80 16102 9626 8862 2760 290 3.1 0 0 3500 2000 9 999999999 31 0 0 88 0.2 0 0 +2.65032E7 31 13 33 98672 14 1390 399 4 0 4 364 0 366 141 310 3.1 0 0 3500 2000 9 999999999 34 0 0 88 0.2 0 0 +2.65068E7 29 13 37 98654 0 65 389 0 0 0 0 0 0 0 300 1.5 0 0 3200 2000 9 999999999 34 0 0 88 0.2 0 0 +2.65104E7 25 15 54 98619 0 0 371 0 0 0 0 0 0 0 91 0 0 0 2500 2000 9 999999999 42 0 0 88 0.2 0 0 +2.6514E7 24 15 57 98610 0 0 366 0 0 0 0 0 0 0 235 0 0 0 1800 2000 9 999999999 42 0 0 88 0.2 0 0 +2.65176E7 22 14 60 98592 0 0 355 0 0 0 0 0 0 0 39 0 0 0 1300 2000 9 999999999 38 0 0 88 0.2 0 0 +2.65212E7 23 14 57 98601 0 0 378 0 0 0 0 0 0 0 162 0 4 4 1200 2000 9 999999999 38 0 0 88 0.2 0 0 +2.65248E7 22 15 64 98592 0 0 377 0 0 0 0 0 0 0 54 0 5 5 1200 2000 9 999999999 42 0 0 88 0.2 0 0 +2.65284E7 21 14 64 98583 0 0 371 0 0 0 0 0 0 0 320 2.1 5 5 800 2000 9 999999999 38 0 0 88 0.2 0 0 +2.6532E7 21 15 69 98583 0 0 376 0 0 0 0 0 0 0 260 1.5 6 6 1000 2000 9 999999999 42 0 0 88 0.2 0 0 +2.65356E7 21 13 60 98583 0 0 367 0 0 0 0 0 0 0 55 0 4 4 1200 2000 9 999999999 35 0 0 88 0.2 0 0 +2.65392E7 20 12 60 98574 0 0 361 0 0 0 0 0 0 0 88 0 4 4 1200 2000 9 999999999 31 0 0 88 0.2 0 0 +2.65428E7 19 14 73 98564 0 0 364 0 0 0 0 0 0 0 260 1.5 6 6 1200 2000 9 999999999 38 0 0 88 0.2 0 0 +2.65464E7 19 13 68 98564 0 0 340 0 0 0 0 0 0 0 75 0 0 0 1800 2000 9 999999999 35 0 0 88 0.2 0 0 +2.655E7 19 13 68 98564 0 0 340 0 0 0 0 0 0 0 219 0 0 0 1800 2000 9 999999999 35 0 0 88 0.2 0 0 +2.65536E7 20 11 56 98574 257 1191 342 109 224 67 11984 5019 7449 2254 230 1.5 0 0 2000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.65572E7 23 11 47 98601 527 1391 356 317 524 118 35979 29896 13446 4691 250 1.5 0 0 2700 2000 9 999999999 28 0 0 88 0.2 0 0 +2.65608E7 27 12 39 98637 750 1391 377 510 763 99 61354 43402 11965 4730 250 2.1 0 0 3000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.65644E7 28 12 37 98646 910 1391 382 655 836 108 80268 49152 13246 5452 260 3.1 0 0 3000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.6568E7 30 13 35 98663 997 1391 394 733 859 117 90315 50717 14504 6056 260 2.6 0 0 3500 2000 9 999999999 34 0 0 88 0.2 0 0 +2.65716E7 32 11 28 98680 1004 1391 402 742 866 117 91640 52249 14490 6051 290 2.6 0 0 3500 2000 9 999999999 28 0 0 88 0.2 0 0 +2.65752E7 33 11 26 98689 931 1391 407 675 846 109 82961 50396 13433 5548 310 4.1 0 0 3500 2000 9 999999999 28 0 0 88 0.2 0 0 +2.65788E7 33 9 23 98689 783 1391 404 543 779 104 65446 46596 12638 5027 300 4.1 0 0 4000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.65824E7 33 9 23 98689 570 1391 404 354 604 107 41013 34442 12404 4507 280 3.1 0 0 4000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.6586E7 33 10 24 98689 306 1391 406 143 308 75 15926 9832 8417 2642 290 3.1 0 0 3500 2000 9 999999999 25 0 0 88 0.2 0 0 +2.65896E7 32 11 28 98680 11 1391 402 3 0 3 268 0 270 106 300 2.1 0 0 3000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.65932E7 28 13 40 98646 0 48 384 0 0 0 0 0 0 0 40 2.1 0 0 1700 2000 9 999999999 34 0 0 88 0.2 0 0 +2.65968E7 27 16 51 98637 0 0 399 0 0 0 0 0 0 0 30 1 3 3 1200 2000 9 999999999 46 0 0 88 0.2 0 0 +2.66004E7 25 17 61 98619 0 0 392 0 0 0 0 0 0 0 22 0 4 4 800 2000 9 999999999 51 0 0 88 0.2 0 0 +2.6604E7 24 16 61 98610 0 0 386 0 0 0 0 0 0 0 66 0 4 4 900 2000 9 999999999 47 0 0 88 0.2 0 0 +2.66076E7 23 16 65 98601 0 0 384 0 0 0 0 0 0 0 128 0 5 5 900 2000 9 999999999 47 0 0 88 0.2 0 0 +2.66112E7 22 16 69 98592 0 0 382 0 0 0 0 0 0 0 108 0 6 6 700 2000 9 999999999 47 0 0 88 0.2 0 0 +2.66148E7 22 15 64 98592 0 0 377 0 0 0 0 0 0 0 225 0 5 5 700 2000 9 999999999 42 0 0 88 0.2 0 0 +2.66184E7 22 15 64 98592 0 0 377 0 0 0 0 0 0 0 40 0 5 5 600 2000 9 999999999 42 0 0 88 0.2 0 0 +2.6622E7 21 15 69 98583 0 0 376 0 0 0 0 0 0 0 85 0 6 6 500 2000 9 999999999 42 0 0 88 0.2 0 0 +2.66256E7 20 14 68 98574 0 0 366 0 0 0 0 0 0 0 250 1 5 5 500 2000 9 999999999 38 0 0 88 0.2 0 0 +2.66292E7 19 13 68 98564 0 0 360 0 0 0 0 0 0 0 279 0 5 5 900 2000 9 999999999 35 0 0 88 0.2 0 0 +2.66328E7 18 14 77 98555 0 0 364 0 0 0 0 0 0 0 232 0 7 7 900 2000 9 999999999 38 0 0 88 0.2 0 0 +2.66364E7 18 14 77 98555 0 0 364 0 0 0 0 0 0 0 83 0 7 7 700 2000 9 999999999 38 0 0 88 0.2 0 0 +2.664E7 18 12 68 98555 253 1174 354 97 160 68 10663 3440 7497 2250 347 0 5 5 700 2000 9 999999999 31 0 0 88 0.2 0 0 +2.66436E7 19 13 68 98564 523 1391 360 285 391 138 31933 23531 15547 5232 75 0 5 5 700 2000 9 999999999 35 0 0 88 0.2 0 0 +2.66472E7 23 13 53 98601 745 1391 374 500 708 121 59135 42217 14372 5596 260 2.1 3 3 700 2000 9 999999999 35 0 0 88 0.2 0 0 +2.66508E7 26 15 51 98628 905 1391 392 643 815 113 78319 46568 13778 5665 250 2.1 3 3 900 2000 9 999999999 42 0 0 88 0.2 0 0 +2.66544E7 28 15 45 98646 992 1391 399 725 858 114 89378 48947 14090 5892 300 2.6 2 2 1300 2000 9 999999999 42 0 0 88 0.2 0 0 +2.6658E7 30 13 35 98663 999 1391 394 735 861 117 90612 50804 14514 6062 320 3.1 0 0 2000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.66616E7 31 13 33 98672 926 1391 399 669 840 110 81981 48967 13479 5566 250 2.1 0 0 2200 2000 9 999999999 34 0 0 88 0.2 0 0 +2.66652E7 32 11 28 98680 778 1391 402 537 778 102 64763 45300 12330 4908 310 3.6 0 0 2600 2000 9 999999999 28 0 0 88 0.2 0 0 +2.66688E7 32 9 24 98680 565 1391 399 351 602 106 40596 34172 12318 4468 290 4.1 0 0 2600 2000 9 999999999 23 0 0 88 0.2 0 0 +2.66724E7 30 11 31 98663 302 1391 391 140 289 78 15538 9164 8627 2675 320 2.1 0 0 3200 2000 9 999999999 28 0 0 88 0.2 0 0 +2.6676E7 30 11 31 98663 7 1391 391 2 0 2 173 0 174 70 310 2.1 0 0 3100 2000 9 999999999 28 0 0 88 0.2 0 0 +2.66796E7 27 12 39 98637 0 31 377 0 0 0 0 0 0 0 136 0 0 0 2100 2000 9 999999999 31 0 0 88 0.2 0 0 +2.66832E7 26 13 45 98628 0 0 373 0 0 0 0 0 0 0 33 0 0 0 2000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.66868E7 24 13 50 98610 0 0 364 0 0 0 0 0 0 0 233 0 0 0 1500 2000 9 999999999 34 0 0 88 0.2 0 0 +2.66904E7 22 12 53 98592 0 0 368 0 0 0 0 0 0 0 70 0 3 3 1400 2000 9 999999999 31 0 0 88 0.2 0 0 +2.6694E7 22 13 57 98592 0 0 372 0 0 0 0 0 0 0 33 0 4 4 1400 2000 9 999999999 35 0 0 88 0.2 0 0 +2.66976E7 22 13 57 98592 0 0 372 0 0 0 0 0 0 0 94 0 4 4 1300 2000 9 999999999 35 0 0 88 0.2 0 0 +2.67012E7 22 12 53 98592 0 0 368 0 0 0 0 0 0 0 103 0 3 3 1200 2000 9 999999999 31 0 0 88 0.2 0 0 +2.67048E7 20 11 56 98574 0 0 357 0 0 0 0 0 0 0 231 0 3 3 900 2000 9 999999999 28 0 0 88 0.2 0 0 +2.67084E7 19 12 64 98564 0 0 359 0 0 0 0 0 0 0 155 0 5 5 800 2000 9 999999999 31 0 0 88 0.2 0 0 +2.6712E7 18 12 68 98555 0 0 354 0 0 0 0 0 0 0 240 1.5 5 5 800 2000 9 999999999 31 0 0 88 0.2 0 0 +2.67156E7 17 12 72 98546 0 0 352 0 0 0 0 0 0 0 304 0 6 6 900 2000 9 999999999 32 0 0 88 0.2 0 0 +2.67192E7 17 11 68 98546 0 0 348 0 0 0 0 0 0 0 47 0 5 5 1200 2000 9 999999999 29 0 0 88 0.2 0 0 +2.67228E7 17 11 68 98546 0 0 343 0 0 0 0 0 0 0 230 1.5 3 3 1500 2000 9 999999999 29 0 0 88 0.2 0 0 +2.67264E7 16 11 72 98536 249 1157 338 103 207 66 11293 4252 7251 2182 280 1 3 3 1600 2000 9 999999999 29 0 0 88 0.2 0 0 +2.673E7 19 9 52 98564 518 1392 350 307 509 117 34866 29440 13366 4633 250 2.1 3 3 2000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.67336E7 22 10 46 98592 741 1392 366 498 733 108 59446 43597 12912 5056 250 2.1 3 3 2300 2000 9 999999999 26 0 0 88 0.2 0 0 +2.67372E7 24 11 44 98610 901 1392 377 640 796 124 77452 49075 15132 6169 260 3.1 3 3 1800 2000 9 999999999 28 0 0 88 0.2 0 0 +2.67408E7 28 11 35 98646 987 1392 381 727 864 115 89705 51917 14188 5912 280 3.1 0 0 1400 2000 9 999999999 28 0 0 88 0.2 0 0 +2.67444E7 30 10 29 98663 994 1392 407 725 842 124 89106 52061 15294 6359 280 3.1 3 3 2300 2000 9 999999999 25 0 0 88 0.2 0 0 +2.6748E7 30 9 27 98663 921 1392 389 669 850 106 82337 51381 13114 5404 300 2.6 0 0 2600 2000 9 999999999 23 0 0 88 0.2 0 0 +2.67516E7 31 8 24 98672 774 1392 393 536 777 104 64577 46811 12563 4981 320 3.1 0 0 3000 2000 9 999999999 21 0 0 88 0.2 0 0 +2.67552E7 31 8 24 98672 561 1392 393 348 603 105 40286 34316 12206 4420 310 3.1 0 0 3000 2000 9 999999999 21 0 0 88 0.2 0 0 +2.67588E7 30 8 25 98663 298 1392 387 139 304 73 15408 9540 8194 2560 320 3.1 0 0 3500 2000 9 999999999 21 0 0 88 0.2 0 0 +2.67624E7 29 8 27 98654 5 1392 399 1 0 1 79 0 80 33 330 1.5 3 3 3500 2000 9 999999999 21 0 0 88 0.2 0 0 +2.6766E7 25 10 39 98619 0 14 365 0 0 0 0 0 0 0 37 0 0 0 2500 2000 9 999999999 25 0 0 88 0.2 0 0 +2.67696E7 24 10 41 98610 0 0 360 0 0 0 0 0 0 0 312 0 0 0 2200 2000 9 999999999 26 0 0 88 0.2 0 0 +2.67732E7 23 10 44 98601 0 0 355 0 0 0 0 0 0 0 163 0 0 0 1600 2000 9 999999999 26 0 0 88 0.2 0 0 +2.67768E7 21 12 56 98583 0 0 363 0 0 0 0 0 0 0 180 0 3 3 1300 2000 9 999999999 31 0 0 88 0.2 0 0 +2.67804E7 21 10 49 98583 0 0 357 0 0 0 0 0 0 0 58 0 2 2 1400 2000 9 999999999 26 0 0 88 0.2 0 0 +2.6784E7 22 12 53 98592 0 0 368 0 0 0 0 0 0 0 232 0 3 3 1100 2000 9 999999999 31 0 0 88 0.2 0 0 +2.67876E7 20 12 60 98574 0 0 361 0 0 0 0 0 0 0 162 0 4 4 1200 2000 9 999999999 31 0 0 88 0.2 0 0 +2.67912E7 20 10 53 98574 0 0 356 0 0 0 0 0 0 0 31 0 3 3 1200 2000 9 999999999 26 0 0 88 0.2 0 0 +2.67948E7 19 13 68 98564 0 0 360 0 0 0 0 0 0 0 310 0 5 5 1000 2000 9 999999999 35 0 0 88 0.2 0 0 +2.67984E7 17 12 72 98546 0 0 352 0 0 0 0 0 0 0 256 0 6 6 900 2000 9 999999999 32 0 0 88 0.2 0 0 +2.6802E7 17 12 72 98546 0 0 352 0 0 0 0 0 0 0 188 0 6 6 1000 2000 9 999999999 32 0 0 88 0.2 0 0 +2.68056E7 16 12 77 98536 0 0 351 0 0 0 0 0 0 0 165 0 7 7 1000 2000 9 999999999 32 0 0 88 0.2 0 0 +2.68092E7 17 11 68 98546 0 0 348 0 0 0 0 0 0 0 109 0 5 5 900 2000 9 999999999 29 0 0 88 0.2 0 0 +2.68128E7 17 11 68 98546 244 1140 348 93 155 66 10200 3098 7237 2164 316 0 5 5 1000 2000 9 999999999 29 0 0 88 0.2 0 0 +2.68164E7 21 12 56 98583 514 1393 363 300 489 120 33971 27589 13634 4696 278 0 3 3 1000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.682E7 23 11 47 98601 736 1393 368 499 718 119 58991 43517 14112 5477 240 2.1 2 2 1300 2000 9 999999999 28 0 0 88 0.2 0 0 +2.68236E7 26 9 34 98628 896 1393 369 646 825 115 78718 50839 14083 5751 296 0 0 0 1800 2000 9 999999999 23 0 0 88 0.2 0 0 +2.68272E7 28 9 30 98646 982 1393 379 725 788 169 86913 53558 20401 8291 148 0 0 0 1600 2000 9 999999999 23 0 0 88 0.2 0 0 +2.68308E7 30 11 31 98663 990 1393 391 729 865 115 90027 52014 14191 5915 281 0 0 0 1900 2000 9 999999999 28 0 0 88 0.2 0 0 +2.68344E7 31 10 27 98672 917 1393 395 664 847 106 81612 50715 13107 5398 26 0 0 0 2100 2000 9 999999999 25 0 0 88 0.2 0 0 +2.6838E7 31 11 29 98672 769 1393 396 529 777 101 63823 44998 12158 4829 211 1.5 0 0 2100 2000 9 999999999 28 0 0 88 0.2 0 0 +2.68416E7 31 9 26 98672 557 1393 394 344 599 105 39797 33648 12145 4391 320 2.1 0 0 2100 2000 9 999999999 23 0 0 88 0.2 0 0 +2.68452E7 30 10 29 98663 295 1393 390 136 297 73 15060 8801 8108 2529 191 0 0 0 1700 2000 9 999999999 25 0 0 88 0.2 0 0 +2.68488E7 27 13 42 98637 0 1391 386 0 0 0 0 0 0 0 60 1.5 1 1 1300 2000 9 999999999 34 0 0 88 0.2 0 0 +2.68524E7 25 12 44 98619 0 0 374 0 0 0 0 0 0 0 100 1.5 1 1 1100 2000 9 999999999 31 0 0 88 0.2 0 0 +2.6856E7 23 13 53 98601 0 0 374 0 0 0 0 0 0 0 90 2.1 3 3 1000 2000 9 999999999 35 0 0 88 0.2 0 0 +2.68596E7 23 13 53 98601 0 0 374 0 0 0 0 0 0 0 100 1.5 3 3 1000 2000 9 999999999 35 0 0 88 0.2 0 0 +2.68632E7 20 13 64 98574 0 0 365 0 0 0 0 0 0 0 100 2.1 5 5 800 2000 9 999999999 35 0 0 88 0.2 0 0 +2.68668E7 21 12 56 98583 0 0 363 0 0 0 0 0 0 0 90 1.5 3 3 800 2000 9 999999999 31 0 0 88 0.2 0 0 +2.68704E7 21 12 56 98583 0 0 348 0 0 0 0 0 0 0 100 1.5 0 0 900 2000 9 999999999 31 0 0 88 0.2 0 0 +2.6874E7 20 11 56 98574 0 0 357 0 0 0 0 0 0 0 90 2.1 3 3 900 2000 9 999999999 28 0 0 88 0.2 0 0 +2.68776E7 20 12 60 98574 0 0 361 0 0 0 0 0 0 0 71 0 4 4 1000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.68812E7 19 10 56 98564 0 0 351 0 0 0 0 0 0 0 118 0 3 3 1000 2000 9 999999999 26 0 0 88 0.2 0 0 +2.68848E7 20 11 56 98574 0 0 342 0 0 0 0 0 0 0 226 0 0 0 1000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.68884E7 20 13 64 98574 0 0 365 0 0 0 0 0 0 0 115 0 5 5 1000 2000 9 999999999 35 0 0 88 0.2 0 0 +2.6892E7 18 13 73 98555 0 0 358 0 0 0 0 0 0 0 128 0 6 6 900 2000 9 999999999 35 0 0 88 0.2 0 0 +2.68956E7 18 12 68 98555 0 0 354 0 0 0 0 0 0 0 41 0 5 5 800 2000 9 999999999 31 0 0 88 0.2 0 0 +2.68992E7 18 12 68 98555 240 1123 354 91 148 65 9930 2736 7149 2132 142 0 5 5 700 2000 9 999999999 31 0 0 88 0.2 0 0 +2.69028E7 22 12 53 98592 510 1393 368 299 498 117 33895 27732 13315 4592 170 1.5 3 3 800 2000 9 999999999 31 0 0 88 0.2 0 0 +2.69064E7 23 12 50 98601 732 1393 369 492 713 118 58209 42603 14009 5433 200 1.5 2 2 1000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.691E7 25 9 36 98619 891 1393 364 642 841 104 78784 50554 12761 5227 200 1.5 0 0 1000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.69136E7 28 13 40 98646 978 1393 391 716 858 114 88159 50397 14135 5886 52 0 1 1 1000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.69172E7 30 13 35 98663 985 1393 394 723 860 115 89027 50577 14226 5931 327 0 0 0 1200 2000 9 999999999 34 0 0 88 0.2 0 0 +2.69208E7 30 10 29 98663 912 1393 390 660 791 142 79305 51057 17161 6951 128 0 0 0 1500 15 9 999999999 25 0 0 88 0.2 0 0 +2.69244E7 30 11 31 98663 765 1393 415 489 631 143 57366 40703 16815 6479 295 0 5 5 1500 2000 9 999999999 28 0 0 88 0.2 0 0 +2.6928E7 30 10 29 98663 553 1393 390 340 525 132 38584 32223 15012 5214 20 1.5 0 0 1400 2000 9 999999999 25 0 0 88 0.2 0 0 +2.69316E7 29 12 35 98654 291 1393 410 124 217 78 13608 6545 8644 2635 240 0 5 5 1500 2000 9 999999999 31 0 0 88 0.2 0 0 +2.69352E7 27 14 45 98637 0 1375 392 0 0 0 0 0 0 0 240 0 2 2 1200 2000 9 999999999 38 0 0 88 0.2 0 0 +2.69388E7 24 13 50 98610 0 0 376 0 0 0 0 0 0 0 94 0 2 2 1100 2000 9 999999999 34 0 0 88 0.2 0 0 +2.69424E7 23 13 53 98601 0 0 374 0 0 0 0 0 0 0 37 0 3 3 1000 2000 9 999999999 35 0 0 88 0.2 0 0 +2.6946E7 23 13 53 98601 0 0 374 0 0 0 0 0 0 0 43 0 3 3 900 2000 9 999999999 35 0 0 88 0.2 0 0 +2.69496E7 23 12 50 98601 0 0 369 0 0 0 0 0 0 0 91 0 2 2 900 2000 9 999999999 31 0 0 88 0.2 0 0 +2.69532E7 22 14 60 98592 0 0 373 0 0 0 0 0 0 0 154 0 4 4 800 2000 9 999999999 38 0 0 88 0.2 0 0 +2.69568E7 22 12 53 98592 0 0 368 0 0 0 0 0 0 0 327 0 3 3 700 2000 9 999999999 31 0 0 88 0.2 0 0 +2.69604E7 22 14 60 98592 0 0 373 0 0 0 0 0 0 0 129 0 4 4 600 2000 9 999999999 38 0 0 88 0.2 0 0 +2.6964E7 20 14 68 98574 0 0 366 0 0 0 0 0 0 0 55 0 5 5 500 2000 9 999999999 38 0 0 88 0.2 0 0 +2.69676E7 19 15 78 98564 0 0 370 0 0 0 0 0 0 0 178 0 7 7 500 2000 9 999999999 42 0 0 88 0.2 0 0 +2.69712E7 18 13 73 98555 0 0 358 0 0 0 0 0 0 0 126 0 6 6 500 2000 9 999999999 35 0 0 88 0.2 0 0 +2.69748E7 17 13 77 98546 0 0 357 0 0 0 0 0 0 0 219 0 7 7 600 2000 9 999999999 35 0 0 88 0.2 0 0 +2.69784E7 17 14 82 98546 0 0 364 0 0 0 0 0 0 0 46 0 8 8 700 2000 9 999999999 39 0 0 88 0.2 0 0 +2.6982E7 17 12 72 98546 0 0 352 0 0 0 0 0 0 0 280 0 6 6 700 2000 9 999999999 32 0 0 88 0.2 0 0 +2.69856E7 17 11 68 98546 236 1105 348 88 158 62 9737 2684 6808 2045 217 0 5 5 700 2000 9 999999999 29 0 0 88 0.2 0 0 +2.69892E7 20 12 60 98574 505 1394 361 289 463 122 32621 26168 13767 4696 45 0 4 4 700 2000 9 999999999 31 0 0 88 0.2 0 0 +2.69928E7 22 13 57 98592 727 1394 372 480 681 124 56432 40945 14692 5662 144 0 4 4 650 2000 9 999999999 35 0 0 88 0.2 0 0 +2.69964E7 24 13 50 98610 887 1394 376 630 811 114 76556 47787 13888 5673 315 0 2 2 700 2000 9 999999999 34 0 0 88 0.2 0 0 +2.7E7 26 13 45 98628 973 1394 386 711 855 114 87474 50256 14136 5881 324 0 2 2 700 2000 9 999999999 34 0 0 88 0.2 0 0 +2.70036E7 29 13 37 98654 980 1394 389 719 859 114 88504 50498 14137 5889 300 2.1 0 0 700 2000 9 999999999 34 0 0 88 0.2 0 0 +2.70072E7 29 13 37 98654 908 1394 389 653 839 107 79972 48580 13107 5395 320 1.5 0 0 1100 2000 9 999999999 34 0 0 88 0.2 0 0 +2.70108E7 29 13 37 98654 761 1394 389 520 776 97 62744 43409 11718 4655 320 2.1 0 0 1100 2000 9 999999999 34 0 0 88 0.2 0 0 +2.70144E7 29 13 37 98654 549 1394 389 336 586 105 38642 31288 12098 4362 320 1.5 0 0 1100 2000 9 999999999 34 0 0 88 0.2 0 0 +2.7018E7 28 15 45 98646 287 1394 399 130 269 74 14293 6951 8219 2533 40 2.1 2 2 900 2000 9 999999999 42 0 0 88 0.2 0 0 +2.70216E7 24 16 61 98610 0 1360 386 0 0 0 0 0 0 0 157 0 4 4 800 2000 9 999999999 47 0 0 88 0.2 0 0 +2.70252E7 24 14 54 98610 0 0 381 0 0 0 0 0 0 0 106 0 3 3 800 2000 9 999999999 38 0 0 88 0.2 0 0 +2.70288E7 23 15 61 98601 0 0 380 0 0 0 0 0 0 0 218 0 4 4 700 2000 9 999999999 42 0 0 88 0.2 0 0 +2.70324E7 23 15 61 98601 0 0 380 0 0 0 0 0 0 0 11 0 4 4 700 2000 9 999999999 42 0 0 88 0.2 0 0 +2.7036E7 22 14 60 98592 0 0 373 0 0 0 0 0 0 0 241 0 4 4 700 2000 9 999999999 38 0 0 88 0.2 0 0 +2.70396E7 20 14 68 98574 0 0 366 0 0 0 0 0 0 0 173 0 5 5 700 2000 9 999999999 38 0 0 88 0.2 0 0 +2.70432E7 20 14 68 98574 0 0 366 0 0 0 0 0 0 0 146 0 5 5 600 2000 9 999999999 38 0 0 88 0.2 0 0 +2.70468E7 20 15 73 98574 0 0 371 0 0 0 0 0 0 0 278 0 6 6 600 2000 9 999999999 42 0 0 88 0.2 0 0 +2.70504E7 19 15 78 98564 0 0 370 0 0 0 0 0 0 0 221 0 7 7 500 2000 9 999999999 42 0 0 88 0.2 0 0 +2.7054E7 19 15 78 98564 0 0 370 0 0 0 0 0 0 0 134 0 7 7 450 2000 9 999999999 42 0 0 88 0.2 0 0 +2.70576E7 18 14 77 98555 0 0 364 0 0 0 0 0 0 0 238 0 7 7 500 2000 9 999999999 38 0 0 88 0.2 0 0 +2.70612E7 17 13 77 98546 0 0 357 0 0 0 0 0 0 0 220 1.5 7 7 500 2000 9 999999999 35 0 0 88 0.2 0 0 +2.70648E7 17 13 77 98546 0 0 357 0 0 0 0 0 0 0 67 0 7 7 500 2000 9 999999999 35 0 0 88 0.2 0 0 +2.70684E7 17 14 82 98546 0 0 364 0 0 0 0 0 0 0 258 0 8 8 500 2000 9 999999999 39 0 0 88 0.2 0 0 +2.7072E7 17 13 77 98546 232 1088 357 76 86 61 8316 1284 6767 2024 197 0 7 7 500 2000 9 999999999 35 0 0 88 0.2 0 0 +2.70756E7 18 14 77 98555 501 1395 364 237 249 148 26278 15231 16463 5329 220 0 7 7 600 2000 9 999999999 38 0 0 88 0.2 0 0 +2.70792E7 22 13 57 98592 723 1395 372 476 604 163 54766 40137 18866 7000 270 2.1 4 4 800 2000 9 999999999 35 0 0 88 0.2 0 0 +2.70828E7 23 12 50 98601 882 1395 369 627 811 114 76172 48370 13926 5677 270 2.1 2 2 800 2000 9 999999999 31 0 0 88 0.2 0 0 +2.70864E7 25 13 47 98619 969 1395 381 706 852 115 86800 50116 14136 5876 290 1.5 2 2 800 2000 9 999999999 34 0 0 88 0.2 0 0 +2.709E7 28 14 42 98646 976 1395 392 713 856 114 87710 49662 14125 5883 310 2.1 1 1 800 2000 9 999999999 38 0 0 88 0.2 0 0 +2.70936E7 29 14 40 98654 904 1395 397 648 836 106 79279 47753 13050 5370 300 2.1 1 1 900 2000 9 999999999 38 0 0 88 0.2 0 0 +2.70972E7 30 12 33 98663 757 1395 393 518 775 97 62404 43933 11776 4667 290 2.6 0 0 1400 2000 9 999999999 31 0 0 88 0.2 0 0 +2.71008E7 30 11 31 98663 545 1395 391 334 590 103 38489 32023 11961 4305 290 3.1 0 0 1700 2000 9 999999999 28 0 0 88 0.2 0 0 +2.71044E7 29 12 35 98654 284 1395 387 128 272 73 14177 7403 8100 2490 300 2.1 0 0 1600 2000 9 999999999 31 0 0 88 0.2 0 0 +2.7108E7 26 14 48 98628 0 1346 375 0 0 0 0 0 0 0 120 0 0 0 1500 2000 9 999999999 38 0 0 88 0.2 0 0 +2.71116E7 25 14 50 98619 0 0 370 0 0 0 0 0 0 0 308 0 0 0 1500 2000 9 999999999 38 0 0 88 0.2 0 0 +2.71152E7 23 14 57 98601 0 0 378 0 0 0 0 0 0 0 283 0 4 4 1100 2000 9 999999999 38 0 0 88 0.2 0 0 +2.71188E7 22 15 64 98592 0 0 377 0 0 0 0 0 0 0 219 0 5 5 1100 2000 9 999999999 42 0 0 88 0.2 0 0 +2.71224E7 21 15 69 98583 0 0 376 0 0 0 0 0 0 0 149 0 6 6 900 2000 9 999999999 42 0 0 88 0.2 0 0 +2.7126E7 21 15 69 98583 0 0 376 0 0 0 0 0 0 0 40 0 6 6 750 2000 9 999999999 42 0 0 88 0.2 0 0 +2.71296E7 20 15 73 98574 0 0 371 0 0 0 0 0 0 0 232 0 6 6 700 2000 9 999999999 42 0 0 88 0.2 0 0 +2.71332E7 20 14 68 98574 0 0 366 0 0 0 0 0 0 0 277 0 5 5 500 2000 9 999999999 38 0 0 88 0.2 0 0 +2.71368E7 19 15 78 98564 0 0 370 0 0 0 0 0 0 0 83 0 7 7 500 2000 9 999999999 42 0 0 88 0.2 0 0 +2.71404E7 19 15 78 98564 0 0 370 0 0 0 0 0 0 0 130 0 7 7 500 2000 9 999999999 42 0 0 88 0.2 0 0 +2.7144E7 18 14 77 98555 0 0 364 0 0 0 0 0 0 0 262 0 7 7 500 2000 9 999999999 38 0 0 88 0.2 0 0 +2.71476E7 17 12 72 98546 0 0 352 0 0 0 0 0 0 0 142 0 6 6 700 2000 9 999999999 32 0 0 88 0.2 0 0 +2.71512E7 16 12 77 98536 0 0 351 0 0 0 0 0 0 0 73 0 7 7 650 2000 9 999999999 32 0 0 88 0.2 0 0 +2.71548E7 16 13 82 98536 0 0 358 0 0 0 0 0 0 0 73 0 8 8 700 2000 9 999999999 35 0 0 88 0.2 0 0 +2.71584E7 16 12 77 98536 228 1070 351 74 78 61 8112 1163 6741 2002 254 0 7 7 700 2000 9 999999999 32 0 0 88 0.2 0 0 +2.7162E7 18 10 59 98555 497 1395 349 285 474 117 32228 26687 13231 4515 250 2.1 4 4 700 2000 9 999999999 26 0 0 88 0.2 0 0 +2.71656E7 20 12 60 98574 718 1395 361 468 686 115 55272 40535 13618 5265 250 2.1 4 4 700 2000 9 999999999 31 0 0 88 0.2 0 0 +2.71692E7 22 13 57 98592 878 1395 372 612 775 125 73763 46795 15101 6121 250 1.5 4 4 800 2000 9 999999999 35 0 0 88 0.2 0 0 +2.71728E7 25 14 50 98619 964 1395 382 699 843 116 85680 49158 14324 5949 240 1.5 2 2 1100 2000 9 999999999 38 0 0 88 0.2 0 0 +2.71764E7 27 15 48 98637 971 1395 394 706 853 112 86832 48569 13825 5761 310 1.5 2 2 1400 2000 9 999999999 42 0 0 88 0.2 0 0 +2.718E7 29 14 40 98654 899 1395 397 644 836 106 78813 47658 12958 5327 300 2.1 1 1 1200 2000 9 999999999 38 0 0 88 0.2 0 0 +2.71836E7 30 12 33 98663 753 1395 410 508 748 105 60821 43207 12586 4961 310 2.6 3 3 1500 2000 9 999999999 31 0 0 88 0.2 0 0 +2.71872E7 29 13 37 98654 542 1395 389 330 583 104 37939 30816 11950 4295 320 1.5 0 0 1100 2000 9 999999999 34 0 0 88 0.2 0 0 +2.71908E7 28 14 42 98646 280 1395 392 126 266 72 13868 6672 8011 2460 310 2.1 1 1 1300 2000 9 999999999 38 0 0 88 0.2 0 0 +2.71944E7 27 15 48 98637 0 1332 394 0 0 0 0 0 0 0 56 0 2 2 1400 2000 9 999999999 42 0 0 88 0.2 0 0 +2.7198E7 23 15 61 98601 0 0 380 0 0 0 0 0 0 0 227 0 4 4 1300 2000 9 999999999 42 0 0 88 0.2 0 0 +2.72016E7 24 15 57 98610 0 0 385 0 0 0 0 0 0 0 338 0 4 4 1000 2000 9 999999999 42 0 0 88 0.2 0 0 +2.72052E7 23 15 61 98601 0 0 380 0 0 0 0 0 0 0 49 0 4 4 900 2000 9 999999999 42 0 0 88 0.2 0 0 +2.72088E7 21 15 69 98583 0 0 376 0 0 0 0 0 0 0 210 0 6 6 800 2000 9 999999999 42 0 0 88 0.2 0 0 +2.72124E7 21 15 69 98583 0 0 376 0 0 0 0 0 0 0 100 1.5 6 6 700 2000 9 999999999 42 0 0 88 0.2 0 0 +2.7216E7 20 15 73 98574 0 0 371 0 0 0 0 0 0 0 67 0 6 6 700 2000 9 999999999 42 0 0 88 0.2 0 0 +2.72196E7 20 15 73 98574 0 0 371 0 0 0 0 0 0 0 137 0 6 6 600 2000 9 999999999 42 0 0 88 0.2 0 0 +2.72232E7 19 15 78 98564 0 0 370 0 0 0 0 0 0 0 342 0 7 7 500 2000 9 999999999 42 0 0 88 0.2 0 0 +2.72268E7 18 15 83 98555 0 0 371 0 0 0 0 0 0 0 205 0 8 8 500 2000 9 999999999 43 0 0 88 0.2 0 0 +2.72304E7 18 15 83 98555 0 0 371 0 0 0 0 0 0 0 250 1.5 8 8 500 2000 9 999999999 43 0 0 88 0.2 0 0 +2.7234E7 17 13 77 98546 0 0 357 0 0 0 0 0 0 0 240 1 7 7 500 2000 9 999999999 35 0 0 88 0.2 0 0 +2.72376E7 17 13 77 98546 0 0 357 0 0 0 0 0 0 0 250 1 7 7 500 2000 9 999999999 35 0 0 88 0.2 0 0 +2.72412E7 17 13 77 98546 0 0 357 0 0 0 0 0 0 0 250 2.1 7 7 700 2000 9 999999999 35 0 0 88 0.2 0 0 +2.72448E7 17 14 82 98546 224 1052 364 64 35 58 7022 401 6424 1924 230 1.5 8 8 700 2000 9 999999999 39 0 0 88 0.2 0 0 +2.72484E7 19 13 68 98564 492 1396 360 264 337 145 29251 20617 16171 5211 240 1.5 5 5 700 2000 9 999999999 35 0 0 88 0.2 0 0 +2.7252E7 22 12 53 98592 714 1396 368 475 699 118 56014 41660 13920 5359 240 1.5 3 3 1200 2000 9 999999999 31 0 0 88 0.2 0 0 +2.72556E7 24 14 54 98610 873 1396 381 613 796 115 74203 46413 13986 5691 260 1.5 3 3 1200 2000 9 999999999 38 0 0 88 0.2 0 0 +2.72592E7 26 13 45 98628 959 1396 386 699 854 112 85979 50032 13839 5746 260 1.5 2 2 1300 2000 9 999999999 34 0 0 88 0.2 0 0 +2.72628E7 28 14 42 98646 967 1396 392 706 856 113 86755 49527 13928 5793 260 1.5 1 1 1400 2000 9 999999999 38 0 0 88 0.2 0 0 +2.72664E7 30 13 35 98663 895 1396 411 634 812 113 77143 47741 13800 5648 226 0 3 3 2000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.727E7 30 13 35 98663 749 1396 411 504 749 103 60385 42460 12320 4858 280 1.5 3 3 2000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.72736E7 29 14 40 98654 538 1396 407 323 581 99 37190 29577 11440 4130 350 1.5 3 3 2000 2000 9 999999999 38 0 0 88 0.2 0 0 +2.72772E7 29 14 40 98654 277 1396 407 123 255 72 13500 6254 7964 2438 320 2.1 3 3 2000 2000 9 999999999 38 0 0 88 0.2 0 0 +2.72808E7 27 16 51 98637 0 1318 399 0 0 0 0 0 0 0 179 0 3 3 1800 2000 9 999999999 46 0 0 88 0.2 0 0 +2.72844E7 24 16 61 98610 0 0 383 0 0 0 0 0 0 0 218 0 3 3 1600 2000 9 999999999 47 0 0 88 0.2 0 0 +2.7288E7 23 15 61 98601 0 0 380 0 0 0 0 0 0 0 120 0 4 4 1200 2000 9 999999999 42 0 0 88 0.2 0 0 +2.72916E7 22 16 69 98592 0 0 382 0 0 0 0 0 0 0 160 0 6 6 900 2000 9 999999999 47 0 0 88 0.2 0 0 +2.72952E7 22 15 64 98592 0 0 377 0 0 0 0 0 0 0 163 0 5 5 800 2000 9 999999999 42 0 0 88 0.2 0 0 +2.72988E7 21 15 69 98583 0 0 376 0 0 0 0 0 0 0 268 0 6 6 800 2000 9 999999999 42 0 0 88 0.2 0 0 +2.73024E7 20 15 73 98574 0 0 371 0 0 0 0 0 0 0 356 0 6 6 800 2000 9 999999999 42 0 0 88 0.2 0 0 +2.7306E7 20 14 68 98574 0 0 366 0 0 0 0 0 0 0 62 0 5 5 700 2000 9 999999999 38 0 0 88 0.2 0 0 +2.73096E7 19 16 83 98564 0 0 377 0 0 0 0 0 0 0 57 0 8 8 600 2000 9 999999999 47 0 0 88 0.2 0 0 +2.73132E7 18 15 83 98555 0 0 371 0 0 0 0 0 0 0 156 0 8 8 500 2000 9 999999999 43 0 0 88 0.2 0 0 +2.73168E7 18 15 83 98555 0 0 371 0 0 0 0 0 0 0 163 0 8 8 600 2000 9 999999999 43 0 0 88 0.2 0 0 +2.73204E7 17 15 88 98546 0 0 373 0 0 0 0 0 0 0 270 1 9 9 600 2000 9 999999999 43 0 0 88 0.2 0 0 +2.7324E7 17 14 82 98546 0 0 364 0 0 0 0 0 0 0 266 0 8 8 600 2000 9 999999999 39 0 0 88 0.2 0 0 +2.73276E7 16 13 82 98536 0 0 358 0 0 0 0 0 0 0 299 0 8 8 600 2000 9 999999999 35 0 0 88 0.2 0 0 +2.73312E7 16 15 94 98536 220 1034 379 34 0 34 3274 0 3298 1272 195 0 10 10 500 2000 9 999999999 43 0 0 88 0.2 0 0 +2.73348E7 18 15 83 98555 488 1397 371 198 134 151 21759 8166 16673 5295 14 0 8 8 700 2000 9 999999999 43 0 0 88 0.2 0 0 +2.73384E7 20 14 68 98574 709 1397 366 434 499 181 49347 34248 20666 7466 54 0 5 5 800 2000 9 999999999 38 0 0 88 0.2 0 0 +2.7342E7 24 15 57 98610 869 1397 385 603 754 134 72035 45295 16057 6469 327 0 4 4 900 2000 9 999999999 42 0 0 88 0.2 0 0 +2.73456E7 26 15 51 98628 955 1397 392 689 844 112 84541 48090 13816 5738 127 0 3 3 900 2000 9 999999999 42 0 0 88 0.2 0 0 +2.73492E7 28 15 45 98646 963 1397 399 700 857 109 86148 48528 13496 5618 76 0 2 2 1100 2000 9 999999999 42 0 0 88 0.2 0 0 +2.73528E7 29 15 43 98654 891 1397 399 636 839 101 77890 46615 12419 5106 280 1.5 1 1 1200 2000 9 999999999 42 0 0 88 0.2 0 0 +2.73564E7 30 14 38 98663 745 1397 395 507 777 92 61077 42160 11185 4432 100 2.1 0 0 1300 2000 9 999999999 38 0 0 88 0.2 0 0 +2.736E7 28 13 40 98646 534 1397 391 325 582 102 37334 30414 11757 4216 320 3.1 1 1 1000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.73636E7 27 15 48 98637 274 1397 394 122 259 71 13389 5922 7829 2398 88 1.5 2 2 1000 2000 9 999999999 42 0 0 88 0.2 0 0 +2.73672E7 25 15 54 98619 0 1306 387 0 0 0 0 0 0 0 130 1 3 3 1000 2000 9 999999999 42 0 0 88 0.2 0 0 +2.73708E7 23 16 65 98601 0 0 362 0 0 0 0 0 0 0 100 1.5 0 0 700 2000 9 999999999 47 0 0 88 0.2 0 0 +2.73744E7 24 14 54 98610 0 0 365 0 0 0 0 0 0 0 90 1.5 0 0 700 2000 9 999999999 38 0 0 88 0.2 0 0 +2.7378E7 23 16 65 98601 0 0 362 0 0 0 0 0 0 0 89 0 0 0 700 2000 9 999999999 47 0 0 88 0.2 0 0 +2.73816E7 21 15 69 98583 0 0 351 0 0 0 0 0 0 0 162 0 0 0 600 2000 9 999999999 42 0 0 88 0.2 0 0 +2.73852E7 20 15 73 98574 0 0 347 0 0 0 0 0 0 0 110 2.6 0 0 600 2000 9 999999999 42 0 0 88 0.2 0 0 +2.73888E7 19 15 78 98564 0 0 342 0 0 0 0 0 0 0 100 2.6 0 0 600 2000 9 999999999 42 0 0 88 0.2 0 0 +2.73924E7 18 14 77 98555 0 0 336 0 0 0 0 0 0 0 100 2.1 0 0 600 2000 9 999999999 38 0 0 88 0.2 0 0 +2.7396E7 18 14 77 98555 0 0 336 0 0 0 0 0 0 0 130 1.5 0 0 700 2000 9 999999999 38 0 0 88 0.2 0 0 +2.73996E7 19 14 73 98564 0 0 341 0 0 0 0 0 0 0 140 2.1 0 0 900 2000 9 999999999 38 0 0 88 0.2 0 0 +2.74032E7 19 13 68 98564 0 0 360 0 0 0 0 0 0 0 110 1.5 5 5 1300 2000 9 999999999 35 0 0 88 0.2 0 0 +2.74068E7 17 13 77 98546 0 0 350 0 0 0 0 0 0 0 100 2.1 5 5 1100 2000 9 999999999 35 0 0 88 0.2 0 0 +2.74104E7 17 13 77 98546 0 0 350 0 0 0 0 0 0 0 110 2.1 5 5 1200 2000 9 999999999 35 0 0 88 0.2 0 0 +2.7414E7 17 14 82 98546 0 0 351 0 0 0 0 0 0 0 110 3.1 5 5 1300 2000 9 999999999 39 0 0 88 0.2 0 0 +2.74176E7 17 14 82 98546 216 1016 351 79 150 56 8659 1319 6141 1836 120 3.1 5 5 1000 2000 9 999999999 39 0 0 88 0.2 0 0 +2.74212E7 19 15 78 98564 484 1397 357 278 478 113 31295 24520 12735 4344 110 2.1 3 3 1000 2000 9 999999999 42 0 0 88 0.2 0 0 +2.74248E7 22 12 53 98592 705 1397 368 467 728 100 55635 41083 11934 4638 150 4.1 3 3 1300 2000 9 999999999 31 0 0 88 0.2 0 0 +2.74284E7 24 11 44 98610 864 1397 377 609 808 109 73988 48129 13290 5399 150 4.1 3 3 1400 2000 9 999999999 28 0 0 88 0.2 0 0 +2.7432E7 25 11 41 98619 950 1397 382 686 836 117 84023 50651 14421 5959 150 4.6 3 3 1400 2000 9 999999999 28 0 0 88 0.2 0 0 +2.74356E7 26 12 42 98628 958 1397 388 692 836 119 84710 50208 14598 6042 150 4.1 3 3 1600 2000 9 999999999 31 0 0 88 0.2 0 0 +2.74392E7 27 12 39 98637 887 1397 394 628 814 111 76459 48223 13578 5546 160 4.1 3 3 1700 2000 9 999999999 31 0 0 88 0.2 0 0 +2.74428E7 28 12 37 98646 741 1397 399 499 748 102 59703 42828 12289 4830 130 4.1 3 3 1700 2000 9 999999999 31 0 0 88 0.2 0 0 +2.74464E7 27 13 42 98637 531 1397 395 318 582 97 36679 29665 11224 4043 120 3.1 3 3 1900 2000 9 999999999 34 0 0 88 0.2 0 0 +2.745E7 26 14 48 98628 271 1397 391 119 250 70 13089 5786 7780 2375 110 2.6 3 3 1800 2000 9 999999999 38 0 0 88 0.2 0 0 +2.74536E7 24 15 57 98610 0 1293 382 0 0 0 0 0 0 0 100 1.5 3 3 1400 2000 9 999999999 42 0 0 88 0.2 0 0 +2.74572E7 23 14 57 98601 0 0 375 0 0 0 0 0 0 0 100 2.1 3 3 1400 2000 9 999999999 38 0 0 88 0.2 0 0 +2.74608E7 22 14 60 98592 0 0 355 0 0 0 0 0 0 0 90 2.6 0 0 1200 2000 9 999999999 38 0 0 88 0.2 0 0 +2.74644E7 20 13 64 98574 0 0 344 0 0 0 0 0 0 0 100 2.6 0 0 1200 2000 9 999999999 35 0 0 88 0.2 0 0 +2.7468E7 19 13 68 98564 0 0 340 0 0 0 0 0 0 0 100 2.6 0 0 1000 2000 9 999999999 35 0 0 88 0.2 0 0 +2.74716E7 19 13 68 98564 0 0 340 0 0 0 0 0 0 0 100 2.6 0 0 1000 2000 9 999999999 35 0 0 88 0.2 0 0 +2.74752E7 18 13 73 98555 0 0 335 0 0 0 0 0 0 0 100 1.5 0 0 800 2000 9 999999999 35 0 0 88 0.2 0 0 +2.74788E7 18 13 73 98555 0 0 335 0 0 0 0 0 0 0 100 2.6 0 0 800 2000 9 999999999 35 0 0 88 0.2 0 0 +2.74824E7 17 12 72 98546 0 0 329 0 0 0 0 0 0 0 100 2.1 0 0 1000 2000 9 999999999 32 0 0 88 0.2 0 0 +2.7486E7 17 11 68 98546 0 0 328 0 0 0 0 0 0 0 100 2.1 0 0 1200 2000 9 999999999 29 0 0 88 0.2 0 0 +2.74896E7 16 12 77 98536 0 0 325 0 0 0 0 0 0 0 90 2.6 0 0 1100 2000 9 999999999 32 0 0 88 0.2 0 0 +2.74932E7 16 12 77 98536 0 0 325 0 0 0 0 0 0 0 100 3.1 0 0 1200 2000 9 999999999 32 0 0 88 0.2 0 0 +2.74968E7 16 12 77 98536 0 0 325 0 0 0 0 0 0 0 100 2.6 0 0 1200 2000 9 999999999 32 0 0 88 0.2 0 0 +2.75004E7 16 13 82 98536 0 0 326 0 0 0 0 0 0 0 110 2.6 0 0 1000 2000 9 999999999 35 0 0 88 0.2 0 0 +2.7504E7 17 13 77 98546 211 998 331 83 187 54 9074 1520 5986 1789 120 3.1 0 0 800 2000 9 999999999 35 0 0 88 0.2 0 0 +2.75076E7 19 14 73 98564 479 1398 341 279 497 108 31479 25314 12283 4204 110 3.1 0 0 900 2000 9 999999999 38 0 0 88 0.2 0 0 +2.75112E7 22 14 60 98592 700 1398 355 468 755 89 56079 40119 10746 4202 120 3.1 0 0 1200 2000 9 999999999 38 0 0 88 0.2 0 0 +2.75148E7 26 15 51 98628 860 1398 376 608 831 97 74368 45717 11923 4871 130 2.6 0 0 2200 2000 9 999999999 42 0 0 88 0.2 0 0 +2.75184E7 26 14 48 98628 946 1398 375 688 853 110 84408 49112 13560 5621 130 3.1 0 0 2300 2000 9 999999999 38 0 0 88 0.2 0 0 +2.7522E7 27 14 45 98637 954 1398 380 695 856 111 85354 49317 13660 5670 120 2.6 0 0 2500 2000 9 999999999 38 0 0 88 0.2 0 0 +2.75256E7 28 14 42 98646 883 1398 385 631 836 102 77098 47310 12574 5153 100 2.6 0 0 2800 2000 9 999999999 38 0 0 88 0.2 0 0 +2.75292E7 28 14 42 98646 737 1398 385 501 776 91 60317 41889 11036 4364 110 1.5 0 0 2800 2000 9 999999999 38 0 0 88 0.2 0 0 +2.75328E7 28 14 42 98646 528 1398 385 319 578 101 36635 29479 11636 4163 80 2.6 0 0 2800 2000 9 999999999 38 0 0 88 0.2 0 0 +2.75364E7 27 13 42 98637 268 1398 378 119 261 69 13110 5972 7633 2331 70 2.1 0 0 2600 2000 9 999999999 34 0 0 88 0.2 0 0 +2.754E7 25 13 47 98619 0 1282 369 0 0 0 0 0 0 0 209 0 0 0 2000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.75436E7 24 13 50 98610 0 0 364 0 0 0 0 0 0 0 50 1.5 0 0 2000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.75472E7 23 13 53 98601 0 0 359 0 0 0 0 0 0 0 60 2.1 0 0 1600 2000 9 999999999 35 0 0 88 0.2 0 0 +2.75508E7 21 12 56 98583 0 0 348 0 0 0 0 0 0 0 200 2.1 0 0 1300 2000 9 999999999 31 0 0 88 0.2 0 0 +2.75544E7 20 12 60 98574 0 0 343 0 0 0 0 0 0 0 120 2.1 0 0 1000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.7558E7 19 13 68 98564 0 0 340 0 0 0 0 0 0 0 90 2.1 0 0 1000 2000 9 999999999 35 0 0 88 0.2 0 0 +2.75616E7 19 13 68 98564 0 0 340 0 0 0 0 0 0 0 100 1.5 0 0 1000 2000 9 999999999 35 0 0 88 0.2 0 0 +2.75652E7 18 13 73 98555 0 0 335 0 0 0 0 0 0 0 90 1.5 0 0 1100 2000 9 999999999 35 0 0 88 0.2 0 0 +2.75688E7 18 13 73 98555 0 0 335 0 0 0 0 0 0 0 50 1.5 0 0 1100 2000 9 999999999 35 0 0 88 0.2 0 0 +2.75724E7 18 13 73 98555 0 0 335 0 0 0 0 0 0 0 59 0 0 0 1100 2000 9 999999999 35 0 0 88 0.2 0 0 +2.7576E7 18 13 73 98555 0 0 335 0 0 0 0 0 0 0 90 1.5 0 0 1000 2000 9 999999999 35 0 0 88 0.2 0 0 +2.75796E7 18 12 68 98555 0 0 334 0 0 0 0 0 0 0 70 2.1 0 0 1000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.75832E7 19 11 60 98564 0 0 338 0 0 0 0 0 0 0 40 1.5 0 0 900 2000 9 999999999 28 0 0 88 0.2 0 0 +2.75868E7 16 12 77 98536 0 0 325 0 0 0 0 0 0 0 80 1.5 0 0 900 2000 9 999999999 32 0 0 88 0.2 0 0 +2.75904E7 16 13 82 98536 207 979 326 80 182 53 8817 1256 5867 1751 110 2.1 0 0 800 2000 9 999999999 35 0 0 88 0.2 0 0 +2.7594E7 19 15 78 98564 475 1399 342 275 494 107 31024 24529 12144 4153 110 2.1 0 0 800 2000 9 999999999 42 0 0 88 0.2 0 0 +2.75976E7 23 13 53 98601 696 1399 359 465 753 90 55700 40622 10822 4221 120 1.5 0 0 1000 2000 9 999999999 35 0 0 88 0.2 0 0 +2.76012E7 25 14 50 98619 855 1399 370 606 828 100 73899 46447 12182 4964 180 1.5 0 0 1400 2000 9 999999999 38 0 0 88 0.2 0 0 +2.76048E7 27 14 45 98637 942 1399 380 684 853 109 83938 49031 13461 5576 86 0 0 0 1600 2000 9 999999999 38 0 0 88 0.2 0 0 +2.76084E7 28 13 40 98646 950 1399 384 692 858 109 85140 49983 13506 5600 198 0 0 0 1600 2000 9 999999999 34 0 0 88 0.2 0 0 +2.7612E7 28 11 35 98646 879 1399 381 631 842 101 77259 49291 12434 5084 100 1.5 0 0 2000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.76156E7 29 10 31 98654 734 1399 385 501 773 95 60287 44354 11524 4531 50 3.1 0 0 2700 2000 9 999999999 25 0 0 88 0.2 0 0 +2.76192E7 28 7 26 98646 524 1399 376 321 597 97 37055 32410 11222 4014 350 2.6 0 0 3000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.76228E7 28 8 28 98646 265 1399 377 118 279 66 13119 6721 7288 2240 320 2.6 0 0 3200 2000 9 999999999 21 0 0 88 0.2 0 0 +2.76264E7 26 10 37 98628 0 1270 386 0 0 0 0 0 0 0 20 1.5 3 3 3200 2000 9 999999999 25 0 0 88 0.2 0 0 +2.763E7 24 11 44 98610 0 0 377 0 0 0 0 0 0 0 244 0 3 3 2500 2000 9 999999999 28 0 0 88 0.2 0 0 +2.76336E7 22 11 50 98592 0 0 367 0 0 0 0 0 0 0 31 0 3 3 2100 2000 9 999999999 28 0 0 88 0.2 0 0 +2.76372E7 21 10 49 98583 0 0 361 0 0 0 0 0 0 0 149 0 3 3 1500 2000 9 999999999 26 0 0 88 0.2 0 0 +2.76408E7 21 11 53 98583 0 0 362 0 0 0 0 0 0 0 219 0 3 3 1300 2000 9 999999999 28 0 0 88 0.2 0 0 +2.76444E7 19 12 64 98564 0 0 353 0 0 0 0 0 0 0 31 0 3 3 1000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.7648E7 19 12 64 98564 0 0 353 0 0 0 0 0 0 0 351 0 3 3 1000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.76516E7 19 13 68 98564 0 0 354 0 0 0 0 0 0 0 88 0 3 3 900 2000 9 999999999 35 0 0 88 0.2 0 0 +2.76552E7 19 13 68 98564 0 0 354 0 0 0 0 0 0 0 253 0 3 3 900 2000 9 999999999 35 0 0 88 0.2 0 0 +2.76588E7 18 12 68 98555 0 0 348 0 0 0 0 0 0 0 246 0 3 3 900 2000 9 999999999 31 0 0 88 0.2 0 0 +2.76624E7 17 12 72 98546 0 0 329 0 0 0 0 0 0 0 84 0 0 0 1000 2000 9 999999999 32 0 0 88 0.2 0 0 +2.7666E7 17 13 77 98546 0 0 331 0 0 0 0 0 0 0 154 0 0 0 900 2000 9 999999999 35 0 0 88 0.2 0 0 +2.76696E7 17 13 77 98546 0 0 331 0 0 0 0 0 0 0 224 0 0 0 800 2000 9 999999999 35 0 0 88 0.2 0 0 +2.76732E7 17 13 77 98546 0 0 331 0 0 0 0 0 0 0 159 0 0 0 800 2000 9 999999999 35 0 0 88 0.2 0 0 +2.76768E7 17 14 82 98546 203 961 332 78 175 52 8517 857 5751 1714 62 0 0 0 700 2000 9 999999999 39 0 0 88 0.2 0 0 +2.76804E7 18 12 68 98555 471 1399 334 273 498 105 30857 25533 11962 4081 280 1.5 0 0 600 2000 9 999999999 31 0 0 88 0.2 0 0 +2.7684E7 20 12 60 98574 691 1399 343 462 750 91 55250 41041 10940 4254 230 2.1 0 0 700 2000 9 999999999 31 0 0 88 0.2 0 0 +2.76876E7 25 12 44 98619 851 1399 367 604 830 99 73723 47724 12140 4935 282 0 0 0 1200 2000 9 999999999 31 0 0 88 0.2 0 0 +2.76912E7 26 13 45 98628 937 1399 386 680 852 109 83502 49604 13415 5549 220 1.5 2 2 1400 2000 9 999999999 34 0 0 88 0.2 0 0 +2.76948E7 28 10 32 98646 946 1399 380 692 787 160 82792 52446 19209 7769 280 1.5 0 0 1800 2000 9 999999999 25 0 0 88 0.2 0 0 +2.76984E7 28 9 30 98646 875 1399 379 629 846 100 77179 50373 12316 5028 270 2.6 0 0 2200 2000 9 999999999 23 0 0 88 0.2 0 0 +2.7702E7 28 11 35 98646 730 1399 381 497 772 94 59792 43609 11374 4472 320 2.1 0 0 2500 2000 9 999999999 28 0 0 88 0.2 0 0 +2.77056E7 28 11 35 98646 521 1399 381 316 583 99 36342 30515 11388 4064 290 3.1 0 0 2600 2000 9 999999999 28 0 0 88 0.2 0 0 +2.77092E7 28 10 32 98646 262 1399 380 116 272 65 12852 6114 7237 2222 290 3.1 0 0 2500 2000 9 999999999 25 0 0 88 0.2 0 0 +2.77128E7 27 10 34 98637 0 1260 375 0 0 0 0 0 0 0 300 1 0 0 2000 2000 9 999999999 25 0 0 88 0.2 0 0 +2.77164E7 24 11 44 98610 0 0 361 0 0 0 0 0 0 0 280 1 0 0 1600 2000 9 999999999 28 0 0 88 0.2 0 0 +2.772E7 22 12 53 98592 0 0 353 0 0 0 0 0 0 0 180 0 0 0 1000 2000 9 999999999 31 0 0 88 0.2 0 0 +2.77236E7 21 13 60 98583 0 0 349 0 0 0 0 0 0 0 300 0 0 0 900 2000 9 999999999 35 0 0 88 0.2 0 0 +2.77272E7 22 13 57 98592 0 0 354 0 0 0 0 0 0 0 267 0 0 0 700 2000 9 999999999 35 0 0 88 0.2 0 0 +2.77308E7 20 12 60 98574 0 0 343 0 0 0 0 0 0 0 106 0 0 0 650 2000 9 999999999 31 0 0 88 0.2 0 0 +2.77344E7 20 13 64 98574 0 0 344 0 0 0 0 0 0 0 176 0 0 0 600 2000 9 999999999 35 0 0 88 0.2 0 0 +2.7738E7 19 13 68 98564 0 0 340 0 0 0 0 0 0 0 113 0 0 0 600 2000 9 999999999 35 0 0 88 0.2 0 0 +2.77416E7 19 12 64 98564 0 0 339 0 0 0 0 0 0 0 117 0 0 0 600 2000 9 999999999 31 0 0 88 0.2 0 0 +2.77452E7 17 12 72 98546 0 0 352 0 0 0 0 0 0 0 2 1.5 6 6 600 2000 9 999999999 32 0 0 88 0.2 0 0 +2.77488E7 17 11 68 98546 0 0 348 0 0 0 0 0 0 0 240 1 5 5 600 2000 9 999999999 29 0 0 88 0.2 0 0 +2.77524E7 17 12 72 98546 0 0 329 0 0 0 0 0 0 0 78 0 0 0 600 2000 9 999999999 32 0 0 88 0.2 0 0 +2.7756E7 16 11 72 98536 0 0 324 0 0 0 0 0 0 0 197 0 0 0 600 2000 9 999999999 29 0 0 88 0.2 0 0 +2.77596E7 16 11 72 98536 0 0 324 0 0 0 0 0 0 0 313 0 0 0 600 2000 9 999999999 29 0 0 88 0.2 0 0 +2.77632E7 15 12 82 98527 199 943 320 76 172 51 8303 869 5634 1674 260 1.5 0 0 600 2000 9 999999999 32 0 0 88 0.2 0 0 +2.77668E7 20 12 60 98574 466 1400 361 261 448 111 29318 23583 12576 4228 260 2.1 4 4 1100 2000 9 999999999 31 0 0 88 0.2 0 0 +2.77704E7 21 12 56 98583 687 1400 348 458 712 109 54038 41077 12861 4930 270 2.1 0 0 1200 2000 9 999999999 31 0 0 88 0.2 0 0 +2.7774E7 24 11 44 98610 846 1400 361 601 831 98 73417 48252 12058 4895 300 1.5 0 0 1600 2000 9 999999999 28 0 0 88 0.2 0 0 +2.77776E7 26 11 39 98628 933 1400 371 680 860 106 83657 50927 13085 5406 300 2.1 0 0 1600 2000 9 999999999 28 0 0 88 0.2 0 0 +2.77812E7 27 10 34 98637 942 1400 375 689 787 159 82356 52373 19092 7717 300 3.1 0 0 1700 2000 9 999999999 25 0 0 88 0.2 0 0 +2.77848E7 28 11 35 98646 871 1400 381 624 841 100 76400 49099 12318 5028 320 3.6 0 0 2500 2000 9 999999999 28 0 0 88 0.2 0 0 +2.77884E7 28.5 10.5 33 98650 727 1400 383 495 771 94 59502 43786 11362 4461 350 3.3 0 0 2750 2000 9 999999999 27 0 0 88 0.2 0 0 +2.7792E7 29 10 31 98654 518 1400 385 314 585 97 36189 30774 11253 4013 290 3.1 0 0 3000 2000 9 999999999 25 0 0 88 0.2 0 0 +2.77956E7 28 11 35 98646 260 1400 381 114 256 67 12623 5723 7401 2250 300 2.1 0 0 3000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.77992E7 27 13 42 98637 0 1250 378 0 0 0 0 0 0 0 310 1.5 0 0 3000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.78028E7 25 13 47 98619 0 0 369 0 0 0 0 0 0 0 41 0 0 0 2200 2000 9 999999999 34 0 0 88 0.2 0 0 +2.78064E7 22 13 57 98592 0 0 354 0 0 0 0 0 0 0 274 0 0 0 2000 2000 9 999999999 35 0 0 88 0.2 0 0 +2.781E7 23 13 53 98601 0 0 359 0 0 0 0 0 0 0 345 0 0 0 1600 2000 9 999999999 35 0 0 88 0.2 0 0 +2.78136E7 21 13 60 98583 0 0 349 0 0 0 0 0 0 0 5 0 0 0 1000 2000 9 999999999 35 0 0 88 0.2 0 0 +2.78172E7 19 13 68 98564 0 0 340 0 0 0 0 0 0 0 313 0 0 0 800 2000 9 999999999 35 0 0 88 0.2 0 0 +2.78208E7 19 13 68 98564 0 0 340 0 0 0 0 0 0 0 256 0 0 0 800 2000 9 999999999 35 0 0 88 0.2 0 0 +2.78244E7 19 12 64 98564 0 0 339 0 0 0 0 0 0 0 286 0 0 0 700 2000 9 999999999 31 0 0 88 0.2 0 0 +2.7828E7 17 11 68 98546 0 0 328 0 0 0 0 0 0 0 32 0 0 0 700 2000 9 999999999 29 0 0 88 0.2 0 0 +2.78316E7 17 13 77 98546 0 0 331 0 0 0 0 0 0 0 200 2.1 0 0 800 2000 9 999999999 35 0 0 88 0.2 0 0 +2.78352E7 17 13 77 98546 0 0 331 0 0 0 0 0 0 0 280 1.5 0 0 800 2000 9 999999999 35 0 0 88 0.2 0 0 +2.78388E7 16 12 77 98536 0 0 325 0 0 0 0 0 0 0 240 1.5 0 0 800 2000 9 999999999 32 0 0 88 0.2 0 0 +2.78424E7 15 11 77 98527 0 0 319 0 0 0 0 0 0 0 240 1.5 0 0 900 2000 9 999999999 29 0 0 88 0.2 0 0 +2.7846E7 15 11 77 98527 0 0 319 0 0 0 0 0 0 0 312 0 0 0 650 2000 9 999999999 29 0 0 88 0.2 0 0 +2.78496E7 15 11 77 98527 195 924 319 73 168 50 8071 738 5515 1636 250 1.5 0 0 600 2000 9 999999999 29 0 0 88 0.2 0 0 +2.78532E7 16 11 72 98536 462 1400 324 267 496 103 30183 25292 11710 3981 250 1.5 0 0 600 2000 9 999999999 29 0 0 88 0.2 0 0 +2.78568E7 19 11 60 98564 683 1400 338 455 747 91 54425 41252 10920 4230 270 2.6 0 0 1000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.78604E7 21 11 53 98583 842 1400 347 597 830 98 72932 48129 11992 4863 260 1.5 0 0 1400 2000 9 999999999 28 0 0 88 0.2 0 0 +2.7864E7 24 13 50 98610 929 1400 364 674 855 107 82727 49491 13146 5431 260 2.1 0 0 2200 2000 9 999999999 34 0 0 88 0.2 0 0 +2.78676E7 26 13 45 98628 938 1400 373 682 857 108 83769 49737 13277 5493 280 2.6 0 0 2500 2000 9 999999999 34 0 0 88 0.2 0 0 +2.78712E7 27 13 42 98637 868 1400 378 619 837 100 75636 47675 12281 5014 290 2.6 0 0 2500 2000 9 999999999 34 0 0 88 0.2 0 0 +2.78748E7 28 12 37 98646 724 1400 382 491 772 92 59056 42743 11097 4360 300 3.1 0 0 2500 2000 9 999999999 31 0 0 88 0.2 0 0 +2.78784E7 27 13 42 98637 516 1400 378 310 576 98 35644 29198 11318 4031 300 2.6 0 0 2200 2000 9 999999999 34 0 0 88 0.2 0 0 +2.7882E7 27 13 42 98637 257 1400 378 113 252 66 12410 5147 7333 2228 290 2.6 0 0 2200 2000 9 999999999 34 0 0 88 0.2 0 0 +2.78856E7 25 13 47 98619 0 1240 369 0 0 0 0 0 0 0 183 0 0 0 2000 2000 9 999999999 34 0 0 88 0.2 0 0 +2.78892E7 24 13 50 98610 0 0 364 0 0 0 0 0 0 0 201 0 0 0 1600 2000 9 999999999 34 0 0 88 0.2 0 0 +2.78928E7 24 13 50 98610 0 0 364 0 0 0 0 0 0 0 340 1.5 0 0 1100 2000 9 999999999 34 0 0 88 0.2 0 0 +2.78964E7 22 12 53 98592 0 0 353 0 0 0 0 0 0 0 70 1.5 0 0 1100 2000 9 999999999 31 0 0 88 0.2 0 0 +2.79E7 20 12 60 98574 0 0 343 0 0 0 0 0 0 0 291 0 0 0 1100 2000 9 999999999 31 0 0 88 0.2 0 0 +2.79036E7 20 12 60 98574 0 0 343 0 0 0 0 0 0 0 123 0 0 0 900 2000 9 999999999 31 0 0 88 0.2 0 0 +2.79072E7 18 12 68 98555 0 0 334 0 0 0 0 0 0 0 120 1.5 0 0 900 2000 9 999999999 31 0 0 88 0.2 0 0 +2.79108E7 19 11 60 98564 0 0 338 0 0 0 0 0 0 0 221 0 0 0 900 2000 9 999999999 28 0 0 88 0.2 0 0 +2.79144E7 18 11 64 98555 0 0 333 0 0 0 0 0 0 0 189 0 0 0 900 2000 9 999999999 28 0 0 88 0.2 0 0 +2.7918E7 17 11 68 98546 0 0 348 0 0 0 0 0 0 0 292 0 5 5 900 2000 9 999999999 29 0 0 88 0.2 0 0 +2.79216E7 19 9 52 98564 0 0 335 0 0 0 0 0 0 0 198 0 0 0 900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.79252E7 18 11 64 98555 0 0 333 0 0 0 0 0 0 0 321 0 0 0 900 2000 9 999999999 28 0 0 88 0.2 0 0 +2.79288E7 17 10 63 98546 0 0 327 0 0 0 0 0 0 0 200 1.5 0 0 900 2000 9 999999999 26 0 0 88 0.2 0 0 +2.79324E7 15 12 82 98527 0 0 320 0 0 0 0 0 0 0 178 0 0 0 700 2000 9 999999999 32 0 0 88 0.2 0 0 +2.7936E7 16 12 77 98536 191 906 325 71 162 49 7806 390 5394 1598 247 0 0 0 600 2000 9 999999999 32 0 0 88 0.2 0 0 +2.79396E7 18 11 64 98555 458 1401 333 264 494 102 29815 24969 11598 3936 227 0 0 0 700 2000 9 999999999 28 0 0 88 0.2 0 0 +2.79432E7 22 11 50 98592 678 1401 352 452 746 90 53996 41063 10837 4193 126 1.5 0 0 1000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.79468E7 26 8 32 98628 838 1401 367 597 836 97 73003 49749 11855 4797 120 1.5 0 0 2000 2000 9 999999999 21 0 0 88 0.2 0 0 +2.79504E7 26 9 34 98628 925 1401 369 675 786 156 80649 52536 18698 7530 110 2.1 0 0 2100 2000 9 999999999 23 0 0 88 0.2 0 0 +2.7954E7 28 10 32 98646 934 1401 380 682 787 157 81523 52240 18879 7620 150 1.5 0 0 2500 2000 9 999999999 25 0 0 88 0.2 0 0 +2.79576E7 29 10 31 98654 864 1401 385 619 843 99 75827 49550 12149 4950 140 1.5 0 0 2200 2000 9 999999999 25 0 0 88 0.2 0 0 +2.79612E7 28 10 32 98646 721 1401 380 490 771 94 58911 43841 11283 4420 114 0 0 0 1800 2000 9 999999999 25 0 0 88 0.2 0 0 +2.79648E7 28 11 35 98646 513 1401 381 310 582 96 35621 29985 11140 3965 90 1.5 0 0 1800 2000 9 999999999 28 0 0 88 0.2 0 0 +2.79684E7 26 12 42 98628 255 1401 372 112 252 66 12299 5176 7262 2204 100 1.5 0 0 1800 2000 9 999999999 31 0 0 88 0.2 0 0 +2.7972E7 24 12 47 98610 0 1231 362 0 0 0 0 0 0 0 100 1.5 0 0 1700 2000 9 999999999 31 0 0 88 0.2 0 0 +2.79756E7 23 13 53 98601 0 0 359 0 0 0 0 0 0 0 100 1.5 0 0 1100 2000 9 999999999 35 0 0 88 0.2 0 0 +2.79792E7 21 12 56 98583 0 0 348 0 0 0 0 0 0 0 100 2.6 0 0 1100 2000 9 999999999 31 0 0 88 0.2 0 0 +2.79828E7 21 14 64 98583 0 0 350 0 0 0 0 0 0 0 100 2.1 0 0 1000 2000 9 999999999 38 0 0 88 0.2 0 0 +2.79864E7 21 13 60 98583 0 0 349 0 0 0 0 0 0 0 120 2.1 0 0 1200 2000 9 999999999 35 0 0 88 0.2 0 0 +2.799E7 21 12 56 98583 0 0 363 0 0 0 0 0 0 0 140 4.1 3 3 1400 2000 9 999999999 31 0 0 88 0.2 0 0 +2.79936E7 21 12 56 98583 0 0 369 0 0 0 0 0 0 0 160 2.6 5 5 2600 2000 9 999999999 31 0 0 88 0.2 0 0 +2.79972E7 20 13 64 98574 0 0 365 0 0 0 0 0 0 0 160 2.6 5 5 2800 2000 9 999999999 35 0 0 88 0.2 0 0 +2.80008E7 20 13 64 98574 0 0 365 0 0 0 0 0 0 0 150 2.1 5 5 3000 2000 9 999999999 35 0 0 88 0.2 0 0 +2.80044E7 20 13 64 98574 0 0 365 0 0 0 0 0 0 0 130 2.1 5 5 3000 2000 9 999999999 35 0 0 88 0.2 0 0 +2.8008E7 18 10 59 98555 0 0 372 0 0 0 0 0 0 0 330 7.2 9 9 1800 1200 9 999999999 26 0 0 88 0.2 0 0 +2.80116E7 17 11 68 98546 0 0 368 0 0 0 0 0 0 0 360 6.2 9 9 2200 1200 9 999999999 29 0 0 88 0.2 0 0 +2.80152E7 16 10 68 98536 0 0 362 0 0 0 0 0 0 0 10 6.7 9 9 2500 1200 9 999999999 26 0 0 88 0.2 0 0 +2.80188E7 15 10 72 98527 0 0 357 0 0 0 0 0 0 0 20 5.1 9 9 3200 1200 9 999999999 26 0 0 88 0.2 0 0 +2.80224E7 16 13 82 98536 187 887 366 35 0 35 3433 0 3458 1258 60 6.2 9 9 2200 1200 9 999999999 35 0 0 88 0.2 0 0 +2.8026E7 17 14 82 98546 453 1402 372 134 17 128 14781 916 14246 4573 70 6.7 9 9 2200 1200 9 999999999 39 0 0 88 0.2 0 0 +2.80296E7 18 12 68 98555 674 1402 375 231 29 217 25696 2243 24259 8131 70 4.1 9 9 3000 1200 9 999999999 31 0 0 88 0.2 0 0 +2.80332E7 18 12 68 98555 833 1402 375 304 34 284 34072 2842 32003 11083 90 4.1 9 9 3000 3000 9 999999999 31 0 0 88 0.2 0 0 +2.80368E7 20 13 64 98574 921 1402 386 344 35 321 38714 2999 36354 12793 50 4.1 9 9 3500 3000 9 999999999 35 0 0 88 0.2 0 0 +2.80404E7 22 13 57 98592 930 1402 397 348 35 325 39229 3018 36837 12980 130 3.1 9 9 3500 3000 9 999999999 35 0 0 88 0.2 0 0 +2.8044E7 22 13 57 98592 861 1402 397 316 34 295 35477 2870 33325 11610 40 2.6 9 9 3500 3000 9 999999999 35 0 0 88 0.2 0 0 +2.80476E7 23 16 65 98601 718 1402 406 249 15 241 27627 1161 26921 9054 290 2.1 9 9 3200 3000 9 999999999 47 0 0 88 0.2 0 0 +2.80512E7 23 13 53 98601 510 1402 403 158 20 151 17508 1251 16781 5436 280 3.6 9 9 2700 3000 9 999999999 35 0 0 88 0.2 0 0 +2.80548E7 22 14 60 98592 253 1402 398 57 0 57 5528 0 5569 1985 310 3.1 9 9 2700 3000 9 999999999 38 0 0 88 0.2 0 0 +2.80584E7 21 13 60 98583 0 1223 392 0 0 0 0 0 0 0 330 3.6 9 9 2700 3000 9 999999999 35 0 0 88 0.2 0 0 +2.8062E7 21 13 60 98583 0 0 392 0 0 0 0 0 0 0 300 3.6 9 9 2200 3000 9 999999999 35 0 0 88 0.2 0 0 +2.80656E7 20 14 68 98574 0 0 388 0 0 0 0 0 0 0 300 2.6 9 9 1700 3000 9 999999999 38 0 0 88 0.2 0 0 +2.80692E7 19.5 14.5 73 98569 0 0 367 0 0 0 0 0 0 0 110 2.6 6 6 1450 3000 9 999999999 40 0 0 88 0.2 0 0 +2.80728E7 19 15 78 98564 0 0 362 0 0 0 0 0 0 0 280 2.6 5 5 1200 3000 9 999999999 42 0 0 88 0.2 0 0 +2.80764E7 17 15 88 98546 0 0 352 0 0 0 0 0 0 0 260 2.1 5 5 1000 2000 9 999999999 43 0 0 88 0.2 0 0 +2.808E7 17 15 88 98546 0 0 352 0 0 0 0 0 0 0 290 2.1 5 5 900 2000 9 999999999 43 0 0 88 0.2 0 0 +2.80836E7 17 15 88 98546 0 0 352 0 0 0 0 0 0 0 270 2.1 5 5 800 2000 9 999999999 43 0 0 88 0.2 0 0 +2.80872E7 16 14 88 98536 0 0 341 0 0 0 0 0 0 0 280 1.5 3 3 650 2000 9 999999999 39 0 0 88 0.2 0 0 +2.80908E7 14 14 100 98517 0 0 318 0 0 0 0 0 0 0 260 2.1 0 0 50 2000 0 999999999 39 0 0 88 0.2 0 0 +2.80944E7 14 10 77 98517 0 0 314 0 0 0 0 0 0 0 230 2.1 0 0 50 2000 0 999999999 26 0 0 88 0.2 0 0 +2.8098E7 14 13 94 98517 0 0 317 0 0 0 0 0 0 0 260 2.1 0 0 350 2000 0 999999999 35 0 0 88 0.2 0 0 +2.81016E7 13 10 82 98507 0 0 310 0 0 0 0 0 0 0 250 2.6 0 0 100 2000 0 999999999 26 0 0 88 0.2 0 0 +2.81052E7 13 10 82 98507 0 0 310 0 0 0 0 0 0 0 240 2.1 0 0 100 2000 0 999999999 26 0 0 88 0.2 0 0 +2.81088E7 13 12 94 98507 182 868 325 66 148 46 7208 0 5101 1511 260 2.6 3 3 600 2000 0 999999999 32 0 0 88 0.2 0 0 +2.81124E7 14 12 88 98517 449 1402 330 253 467 104 28518 23255 11713 3939 260 2.6 3 3 700 2000 0 999999999 32 0 0 88 0.2 0 0 +2.8116E7 16 12 77 98536 670 1402 339 438 716 96 51984 39484 11397 4381 250 3.1 3 3 1000 2000 0 999999999 32 0 0 88 0.2 0 0 +2.81196E7 18 12 68 98555 829 1402 348 578 792 109 69763 46610 13235 5324 260 3.1 3 3 1300 2000 0 999999999 31 0 0 88 0.2 0 0 +2.81232E7 20 11 56 98574 917 1402 342 665 858 104 81785 50565 12804 5274 270 3.1 0 0 1500 2000 0 999999999 28 0 0 88 0.2 0 0 +2.81268E7 22 11 50 98592 926 1402 352 674 861 105 82938 50844 12924 5333 290 4.1 0 0 2000 2000 0 999999999 28 0 0 88 0.2 0 0 +2.81304E7 22 11 50 98592 858 1402 352 612 839 99 74841 48743 12093 4921 300 3.6 0 0 2500 2000 0 999999999 28 0 0 88 0.2 0 0 +2.8134E7 23 11 47 98601 715 1402 356 484 769 92 58173 42997 11084 4339 290 5.1 0 0 2800 2000 0 999999999 28 0 0 88 0.2 0 0 +2.81376E7 23 10 44 98601 508 1402 355 306 583 95 35241 30049 10972 3899 330 4.6 0 0 3500 2000 0 999999999 26 0 0 88 0.2 0 0 +2.81412E7 22 8 41 98592 251 1402 348 110 266 62 12158 5514 6914 2110 310 5.7 0 0 3500 2000 0 999999999 21 0 0 88 0.2 0 0 +2.81448E7 22 8 41 98592 0 1216 348 0 0 0 0 0 0 0 300 2.6 0 0 3500 2000 0 999999999 21 0 0 88 0.2 0 0 +2.81484E7 19 9 52 98564 0 0 335 0 0 0 0 0 0 0 270 2.6 0 0 2500 2000 0 999999999 23 0 0 88 0.2 0 0 +2.8152E7 18 10 59 98555 0 0 332 0 0 0 0 0 0 0 270 2.6 0 0 1800 2000 0 999999999 26 0 0 88 0.2 0 0 +2.81556E7 16 11 72 98536 0 0 324 0 0 0 0 0 0 0 250 2.1 0 0 1000 2000 0 999999999 29 0 0 88 0.2 0 0 +2.81592E7 16 11 72 98536 0 0 324 0 0 0 0 0 0 0 250 1.5 0 0 900 2000 0 999999999 29 0 0 88 0.2 0 0 +2.81628E7 16 10 68 98536 0 0 323 0 0 0 0 0 0 0 260 2.1 0 0 1000 2000 0 999999999 26 0 0 88 0.2 0 0 +2.81664E7 15 11 77 98527 0 0 319 0 0 0 0 0 0 0 280 1.5 0 0 1300 2000 0 999999999 29 0 0 88 0.2 0 0 +2.817E7 14 9 72 98517 0 0 313 0 0 0 0 0 0 0 270 2.1 0 0 1300 2000 0 999999999 23 0 0 88 0.2 0 0 +2.81736E7 14 9 72 98517 0 0 313 0 0 0 0 0 0 0 240 1 0 0 1000 2000 0 999999999 23 0 0 88 0.2 0 0 +2.81772E7 14 8 67 98517 0 0 312 0 0 0 0 0 0 0 250 1.5 0 0 1200 2000 0 999999999 21 0 0 88 0.2 0 0 +2.81808E7 12 10 88 98498 0 0 305 0 0 0 0 0 0 0 250 2.1 0 0 1000 2000 0 999999999 26 0 0 88 0.2 0 0 +2.81844E7 12 8 76 98498 0 0 303 0 0 0 0 0 0 0 220 2.1 0 0 1200 2000 0 999999999 21 0 0 88 0.2 0 0 +2.8188E7 11 7 76 98488 0 0 298 0 0 0 0 0 0 0 220 2.1 0 0 1000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.81916E7 10 8 87 98478 0 0 295 0 0 0 0 0 0 0 240 1.5 0 0 900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.81952E7 10 7 82 98478 178 850 294 65 155 45 7138 113 4984 1472 220 1.5 0 0 800 2000 9 999999999 19 0 0 88 0.2 0 0 +2.81988E7 12 8 76 98498 445 1403 303 255 517 91 29066 25147 10432 3571 250 1.5 0 0 900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.82024E7 16 8 59 98536 665 1403 321 443 740 92 52850 42012 10988 4219 270 3.1 0 0 1100 2000 9 999999999 21 0 0 88 0.2 0 0 +2.8206E7 19 8 49 98564 825 1403 334 586 819 104 71099 49511 12654 5086 290 4.1 0 0 2500 2000 9 999999999 21 0 0 88 0.2 0 0 +2.82096E7 22 6 35 98592 913 1403 346 667 786 156 79708 53785 18713 7498 300 5.1 0 0 4200 2000 9 999999999 17 0 0 88 0.2 0 0 +2.82132E7 22 5 33 98592 923 1403 345 678 787 160 80927 54542 19185 7689 300 5.7 0 0 4500 2000 9 999999999 16 0 0 88 0.2 0 0 +2.82168E7 23 6 33 98601 854 1403 350 614 852 95 75459 51391 11757 4775 300 5.1 0 0 5000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.82204E7 23 6 33 98601 712 1403 350 486 770 95 58350 45499 11484 4471 300 5.1 0 0 5000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.8224E7 23 4 29 98601 506 1403 348 308 588 96 35467 32066 11080 3916 290 5.7 0 0 5000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.82276E7 23 6 33 98601 249 1403 350 109 268 62 12100 5666 6848 2088 280 4.6 0 0 4500 2000 9 999999999 17 0 0 88 0.2 0 0 +2.82312E7 20 8 46 98574 0 1209 339 0 0 0 0 0 0 0 270 2.6 0 0 3600 2000 9 999999999 21 0 0 88 0.2 0 0 +2.82348E7 19 9 52 98564 0 0 335 0 0 0 0 0 0 0 260 2.1 0 0 3200 2000 9 999999999 23 0 0 88 0.2 0 0 +2.82384E7 18 8 52 98555 0 0 330 0 0 0 0 0 0 0 250 2.1 0 0 2200 2000 9 999999999 21 0 0 88 0.2 0 0 +2.8242E7 16 9 63 98536 0 0 322 0 0 0 0 0 0 0 250 1.5 0 0 1500 2000 9 999999999 23 0 0 88 0.2 0 0 +2.82456E7 16 8 59 98536 0 0 321 0 0 0 0 0 0 0 270 3.1 0 0 1500 2000 9 999999999 21 0 0 88 0.2 0 0 +2.82492E7 16 8 59 98536 0 0 321 0 0 0 0 0 0 0 240 1 0 0 1500 2000 9 999999999 21 0 0 88 0.2 0 0 +2.82528E7 15 8 63 98527 0 0 316 0 0 0 0 0 0 0 200 1 0 0 1300 2000 9 999999999 21 0 0 88 0.2 0 0 +2.82564E7 13 8 72 98507 0 0 308 0 0 0 0 0 0 0 100 1.5 0 0 1300 2000 9 999999999 21 0 0 88 0.2 0 0 +2.826E7 13 7 67 98507 0 0 307 0 0 0 0 0 0 0 240 1.5 0 0 1400 2000 9 999999999 19 0 0 88 0.2 0 0 +2.82636E7 11 6 71 98488 0 0 297 0 0 0 0 0 0 0 230 1.5 0 0 1700 2000 9 999999999 17 0 0 88 0.2 0 0 +2.82672E7 12 6 67 98498 0 0 301 0 0 0 0 0 0 0 210 2.1 0 0 1800 2000 9 999999999 17 0 0 88 0.2 0 0 +2.82708E7 11 6 71 98488 0 0 297 0 0 0 0 0 0 0 220 1 0 0 1800 2000 9 999999999 17 0 0 88 0.2 0 0 +2.82744E7 10 7 82 98478 0 0 294 0 0 0 0 0 0 0 230 1 0 0 1800 2000 9 999999999 19 0 0 88 0.2 0 0 +2.8278E7 10 5 71 98478 0 0 292 0 0 0 0 0 0 0 200 1.5 0 0 1600 2000 9 999999999 16 0 0 88 0.2 0 0 +2.82816E7 11 7 76 98488 174 831 298 63 150 44 6900 0 4868 1435 210 2.1 0 0 1400 2000 9 999999999 19 0 0 88 0.2 0 0 +2.82852E7 14 4 51 98517 441 1403 308 254 525 89 28993 26040 10188 3485 230 2.1 0 0 1800 2000 9 999999999 14 0 0 88 0.2 0 0 +2.82888E7 16 5 48 98536 661 1403 317 442 743 92 52736 43128 10984 4206 230 2.6 0 0 1600 2000 9 999999999 16 0 0 88 0.2 0 0 +2.82924E7 19 7 46 98564 821 1403 333 583 834 95 71268 49756 11628 4684 260 3.1 0 0 1800 2000 9 999999999 19 0 0 88 0.2 0 0 +2.8296E7 21 9 46 98583 909 1403 345 661 863 101 81381 51611 12515 5144 300 2.6 0 0 2200 2000 9 999999999 23 0 0 88 0.2 0 0 +2.82996E7 22 6 35 98592 919 1403 346 674 786 158 80435 54026 18962 7602 300 3.1 0 0 2200 2000 9 999999999 17 0 0 88 0.2 0 0 +2.83032E7 23 5 31 98601 851 1403 349 613 855 94 75367 51760 11538 4683 300 4.1 0 0 2500 2000 9 999999999 16 0 0 88 0.2 0 0 +2.83068E7 24 7 34 98610 709 1403 356 483 769 94 57995 44949 11372 4427 290 4.6 0 0 3000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.83104E7 24 7 34 98610 503 1403 356 305 593 92 35170 30963 10642 3781 300 4.1 0 0 2800 2000 9 999999999 19 0 0 88 0.2 0 0 +2.8314E7 23 8 38 98601 247 1403 353 108 264 61 11945 5235 6805 2074 290 4.1 0 0 2800 2000 9 999999999 21 0 0 88 0.2 0 0 +2.83176E7 21 8 43 98583 0 1202 343 0 0 0 0 0 0 0 270 3.6 0 0 2600 2000 9 999999999 21 0 0 88 0.2 0 0 +2.83212E7 20 8 46 98574 0 0 339 0 0 0 0 0 0 0 270 1.5 0 0 2400 2000 9 999999999 21 0 0 88 0.2 0 0 +2.83248E7 18 9 56 98555 0 0 331 0 0 0 0 0 0 0 260 2.6 0 0 1600 2000 9 999999999 23 0 0 88 0.2 0 0 +2.83284E7 17 10 63 98546 0 0 327 0 0 0 0 0 0 0 270 2.6 0 0 1300 2000 9 999999999 26 0 0 88 0.2 0 0 +2.8332E7 17 9 59 98546 0 0 326 0 0 0 0 0 0 0 230 2.1 0 0 1300 2000 9 999999999 23 0 0 88 0.2 0 0 +2.83356E7 16 7 55 98536 0 0 320 0 0 0 0 0 0 0 250 2.1 0 0 1400 2000 9 999999999 19 0 0 88 0.2 0 0 +2.83392E7 15 8 63 98527 0 0 316 0 0 0 0 0 0 0 240 1.5 0 0 1400 2000 9 999999999 21 0 0 88 0.2 0 0 +2.83428E7 14 7 63 98517 0 0 311 0 0 0 0 0 0 0 250 2.1 0 0 2100 2000 9 999999999 19 0 0 88 0.2 0 0 +2.83464E7 14 7 63 98517 0 0 311 0 0 0 0 0 0 0 230 2.1 0 0 2400 2000 9 999999999 19 0 0 88 0.2 0 0 +2.835E7 14 6 59 98517 0 0 310 0 0 0 0 0 0 0 280 3.1 0 0 2200 2000 9 999999999 17 0 0 88 0.2 0 0 +2.83536E7 13 6 62 98507 0 0 305 0 0 0 0 0 0 0 270 3.1 0 0 2200 2000 9 999999999 17 0 0 88 0.2 0 0 +2.83572E7 13 6 62 98507 0 0 305 0 0 0 0 0 0 0 240 2.1 0 0 2200 2000 9 999999999 17 0 0 88 0.2 0 0 +2.83608E7 11 6 71 98488 0 0 297 0 0 0 0 0 0 0 240 2.1 0 0 1800 2000 9 999999999 17 0 0 88 0.2 0 0 +2.83644E7 11 6 71 98488 0 0 297 0 0 0 0 0 0 0 250 2.1 0 0 1400 2000 9 999999999 17 0 0 88 0.2 0 0 +2.8368E7 11 6 71 98488 170 813 297 60 107 47 6601 134 5198 1488 260 3.1 0 0 1400 2000 9 999999999 17 0 0 88 0.2 0 0 +2.83716E7 13 5 58 98507 436 1404 304 250 518 89 28509 25338 10169 3469 250 3.6 0 0 1800 2000 9 999999999 16 0 0 88 0.2 0 0 +2.83752E7 15 5 51 98527 657 1404 313 438 740 92 52256 42882 10951 4187 250 3.1 0 0 2500 2000 9 999999999 16 0 0 88 0.2 0 0 +2.83788E7 19 8 49 98564 817 1404 334 579 831 95 70622 49105 11613 4675 270 3.6 0 0 2500 2000 9 999999999 21 0 0 88 0.2 0 0 +2.83824E7 21 7 40 98583 905 1404 342 660 785 153 78755 53126 18344 7348 260 4.1 0 0 1800 2000 9 999999999 19 0 0 88 0.2 0 0 +2.8386E7 23 7 36 98601 916 1404 352 669 786 156 79931 53461 18714 7506 280 4.1 0 0 2400 2000 9 999999999 19 0 0 88 0.2 0 0 +2.83896E7 23 7 36 98601 848 1404 352 608 846 96 74525 50760 11831 4797 280 5.1 0 0 2800 2000 9 999999999 19 0 0 88 0.2 0 0 +2.83932E7 25 7 32 98619 707 1404 361 481 768 94 57701 44827 11347 4414 290 6.2 0 0 3500 2000 9 999999999 19 0 0 88 0.2 0 0 +2.83968E7 25 6 30 98619 501 1404 360 303 590 93 35003 31133 10715 3797 280 6.2 0 0 3500 2000 9 999999999 17 0 0 88 0.2 0 0 +2.84004E7 24 7 34 98610 246 1404 356 107 263 61 11848 5234 6762 2058 280 4.1 0 0 3200 2000 9 999999999 19 0 0 88 0.2 0 0 +2.8404E7 21 9 46 98583 0 1196 345 0 0 0 0 0 0 0 280 2.6 0 0 3200 2000 9 999999999 23 0 0 88 0.2 0 0 +2.84076E7 20 10 53 98574 0 0 341 0 0 0 0 0 0 0 260 1.5 0 0 1800 2000 9 999999999 26 0 0 88 0.2 0 0 +2.84112E7 20 10 53 98574 0 0 341 0 0 0 0 0 0 0 260 1.5 0 0 1800 2000 9 999999999 26 0 0 88 0.2 0 0 +2.84148E7 18 10 59 98555 0 0 332 0 0 0 0 0 0 0 260 1 0 0 1600 2000 9 999999999 26 0 0 88 0.2 0 0 +2.84184E7 17 9 59 98546 0 0 326 0 0 0 0 0 0 0 131 0 0 0 1000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.8422E7 16 10 68 98536 0 0 323 0 0 0 0 0 0 0 278 0 0 0 900 2000 9 999999999 26 0 0 88 0.2 0 0 +2.84256E7 15 10 72 98527 0 0 318 0 0 0 0 0 0 0 240 1.5 0 0 1100 2000 9 999999999 26 0 0 88 0.2 0 0 +2.84292E7 15 9 67 98527 0 0 317 0 0 0 0 0 0 0 266 0 0 0 1200 2000 9 999999999 23 0 0 88 0.2 0 0 +2.84328E7 14 9 72 98517 0 0 313 0 0 0 0 0 0 0 330 0 0 0 1200 2000 9 999999999 23 0 0 88 0.2 0 0 +2.84364E7 14 9 72 98517 0 0 313 0 0 0 0 0 0 0 41 0 0 0 1300 2000 9 999999999 23 0 0 88 0.2 0 0 +2.844E7 13 8 72 98507 0 0 308 0 0 0 0 0 0 0 22 0 0 0 1300 2000 9 999999999 21 0 0 88 0.2 0 0 +2.84436E7 13 8 72 98507 0 0 308 0 0 0 0 0 0 0 245 0 0 0 1400 2000 9 999999999 21 0 0 88 0.2 0 0 +2.84472E7 12 8 76 98498 0 0 303 0 0 0 0 0 0 0 180 0 0 0 1400 2000 9 999999999 21 0 0 88 0.2 0 0 +2.84508E7 12 8 76 98498 0 0 303 0 0 0 0 0 0 0 47 0 0 0 1300 2000 9 999999999 21 0 0 88 0.2 0 0 +2.84544E7 12 7 71 98498 166 794 320 54 75 45 5930 0 4972 1431 220 2.1 5 5 1200 2000 9 999999999 19 0 0 88 0.2 0 0 +2.8458E7 18 9 56 98555 432 1404 350 228 407 103 25652 20591 11618 3847 230 1.5 5 5 1500 2000 9 999999999 23 0 0 88 0.2 0 0 +2.84616E7 19 8 49 98564 653 1404 349 427 672 115 49961 40766 13461 5042 240 1.5 3 3 1500 2000 9 999999999 21 0 0 88 0.2 0 0 +2.84652E7 21 8 43 98583 813 1404 358 568 805 101 68929 48365 12352 4952 290 2.1 3 3 1800 2000 9 999999999 21 0 0 88 0.2 0 0 +2.84688E7 24 8 36 98610 902 1404 373 647 840 108 79253 51355 13251 5423 10 2.1 3 3 1800 2000 9 999999999 21 0 0 88 0.2 0 0 +2.84724E7 25 7 32 98619 913 1404 377 658 825 122 80043 52381 14848 6056 90 2.1 3 3 2200 2000 9 999999999 19 0 0 88 0.2 0 0 +2.8476E7 27 8 30 98637 845 1404 394 563 676 156 66444 45887 18448 7235 60 2.1 5 5 2400 2000 9 999999999 21 0 0 88 0.2 0 0 +2.84796E7 26 10 37 98628 704 1404 392 444 610 137 51592 39102 16039 6027 110 2.6 5 5 1700 2000 9 999999999 25 0 0 88 0.2 0 0 +2.84832E7 26 8 32 98628 499 1404 389 280 460 117 31691 26416 13232 4511 90 2.1 5 5 2100 2000 9 999999999 21 0 0 88 0.2 0 0 +2.84868E7 25 9 36 98619 244 1404 385 99 203 63 10865 4013 6987 2103 60 2.1 5 5 2100 2000 9 999999999 23 0 0 88 0.2 0 0 +2.84904E7 23 10 44 98601 0 1191 376 0 0 0 0 0 0 0 187 0 5 5 1600 2000 9 999999999 26 0 0 88 0.2 0 0 +2.8494E7 20 10 53 98574 0 0 341 0 0 0 0 0 0 0 150 1.5 0 0 1100 2000 9 999999999 26 0 0 88 0.2 0 0 +2.84976E7 20 10 53 98574 0 0 341 0 0 0 0 0 0 0 187 0 0 0 900 2000 9 999999999 26 0 0 88 0.2 0 0 +2.85012E7 20 9 49 98574 0 0 340 0 0 0 0 0 0 0 105 0 0 0 1000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.85048E7 19 9 52 98564 0 0 335 0 0 0 0 0 0 0 238 0 0 0 1000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.85084E7 17 9 59 98546 0 0 326 0 0 0 0 0 0 0 133 0 0 0 1000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.8512E7 16 8 59 98536 0 0 321 0 0 0 0 0 0 0 32 0 0 0 900 2000 9 999999999 21 0 0 88 0.2 0 0 +2.85156E7 16 8 59 98536 0 0 321 0 0 0 0 0 0 0 100 1.5 0 0 700 2000 9 999999999 21 0 0 88 0.2 0 0 +2.85192E7 16 11 72 98536 0 0 324 0 0 0 0 0 0 0 215 0 0 0 700 2000 9 999999999 29 0 0 88 0.2 0 0 +2.85228E7 16 10 68 98536 0 0 323 0 0 0 0 0 0 0 185 0 0 0 600 2000 9 999999999 26 0 0 88 0.2 0 0 +2.85264E7 16 8 59 98536 0 0 321 0 0 0 0 0 0 0 232 0 0 0 600 2000 9 999999999 21 0 0 88 0.2 0 0 +2.853E7 14 10 77 98517 0 0 314 0 0 0 0 0 0 0 236 0 0 0 800 2000 9 999999999 26 0 0 88 0.2 0 0 +2.85336E7 16 10 68 98536 0 0 323 0 0 0 0 0 0 0 257 0 0 0 900 2000 9 999999999 26 0 0 88 0.2 0 0 +2.85372E7 14 10 77 98517 0 0 314 0 0 0 0 0 0 0 138 0 0 0 900 2000 9 999999999 26 0 0 88 0.2 0 0 +2.85408E7 13 9 77 98507 162 776 309 56 97 45 6116 0 4904 1406 118 0 0 0 600 2000 9 999999999 24 0 0 88 0.2 0 0 +2.85444E7 15 12 82 98527 428 1405 320 241 473 97 27143 22139 10937 3662 81 0 0 0 700 2000 9 999999999 32 0 0 88 0.2 0 0 +2.8548E7 20 10 53 98574 649 1405 341 428 696 106 50264 40349 12532 4726 180 1.5 0 0 800 2000 9 999999999 26 0 0 88 0.2 0 0 +2.85516E7 23 9 41 98601 809 1405 354 571 828 94 69650 48347 11481 4615 160 2.6 0 0 1000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.85552E7 25 10 39 98619 898 1405 365 650 860 100 79950 50786 12383 5080 110 2.1 0 0 1400 2000 9 999999999 25 0 0 88 0.2 0 0 +2.85588E7 27 9 32 98637 909 1405 374 662 786 153 79004 52318 18299 7345 177 0 0 0 2100 2000 9 999999999 23 0 0 88 0.2 0 0 +2.85624E7 27 10 34 98637 843 1405 375 600 840 96 73439 49001 11784 4777 200 2.6 0 0 2400 2000 9 999999999 25 0 0 88 0.2 0 0 +2.8566E7 28 9 30 98646 702 1405 379 476 768 92 57106 43662 11027 4292 191 0 0 0 2500 2000 9 999999999 23 0 0 88 0.2 0 0 +2.85696E7 27 7 28 98637 498 1405 371 300 593 90 34686 30578 10448 3707 300 1.5 0 0 3000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.85732E7 27 7 28 98637 243 1405 371 106 271 59 11719 5003 6544 2000 10 1.5 0 0 3000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.85768E7 25 8 34 98619 0 1187 362 0 0 0 0 0 0 0 209 0 0 0 2200 2000 9 999999999 21 0 0 88 0.2 0 0 +2.85804E7 21 10 49 98583 0 0 346 0 0 0 0 0 0 0 298 0 0 0 1700 2000 9 999999999 26 0 0 88 0.2 0 0 +2.8584E7 19 11 60 98564 0 0 338 0 0 0 0 0 0 0 244 0 0 0 1300 2000 9 999999999 28 0 0 88 0.2 0 0 +2.85876E7 18 11 64 98555 0 0 333 0 0 0 0 0 0 0 109 0 0 0 1200 2000 9 999999999 28 0 0 88 0.2 0 0 +2.85912E7 18 11 64 98555 0 0 333 0 0 0 0 0 0 0 239 0 0 0 700 2000 9 999999999 28 0 0 88 0.2 0 0 +2.85948E7 18 11 64 98555 0 0 333 0 0 0 0 0 0 0 253 0 0 0 700 2000 9 999999999 28 0 0 88 0.2 0 0 +2.85984E7 17 10 63 98546 0 0 327 0 0 0 0 0 0 0 185 0 0 0 700 2000 9 999999999 26 0 0 88 0.2 0 0 +2.8602E7 17 10 63 98546 0 0 327 0 0 0 0 0 0 0 37 0 0 0 700 2000 9 999999999 26 0 0 88 0.2 0 0 +2.86056E7 17 11 68 98546 0 0 328 0 0 0 0 0 0 0 194 0 0 0 600 2000 9 999999999 29 0 0 88 0.2 0 0 +2.86092E7 15 10 72 98527 0 0 318 0 0 0 0 0 0 0 254 0 0 0 500 2000 9 999999999 26 0 0 88 0.2 0 0 +2.86128E7 15 10 72 98527 0 0 318 0 0 0 0 0 0 0 253 0 0 0 550 2000 9 999999999 26 0 0 88 0.2 0 0 +2.86164E7 15 10 72 98527 0 0 318 0 0 0 0 0 0 0 279 0 0 0 550 2000 0 999999999 26 0 0 88 0.2 0 0 +2.862E7 14 10 77 98517 0 0 314 0 0 0 0 0 0 0 98 0 0 0 500 2000 0 999999999 26 0 0 88 0.2 0 0 +2.86236E7 14 11 82 98517 0 0 315 0 0 0 0 0 0 0 105 0 0 0 400 2000 0 999999999 29 0 0 88 0.2 0 0 +2.86272E7 13 11 88 98507 158 757 311 54 124 40 5916 0 4399 1293 264 0 0 0 400 2000 0 999999999 29 0 0 88 0.2 0 0 +2.86308E7 16 9 63 98536 424 1405 322 239 502 88 27184 23039 10026 3399 320 0 0 0 400 2000 0 999999999 23 0 0 88 0.2 0 0 +2.86344E7 19 12 64 98564 645 1405 339 423 735 86 50440 38814 10273 3937 135 0 0 0 600 2000 0 999999999 31 0 0 88 0.2 0 0 +2.8638E7 24 10 41 98610 805 1405 360 567 826 93 69098 47664 11412 4585 30 1.5 0 0 1000 2000 0 999999999 26 0 0 88 0.2 0 0 +2.86416E7 25 11 41 98619 894 1405 366 646 857 100 79369 50092 12362 5070 50 1.5 0 0 1000 2000 0 999999999 28 0 0 88 0.2 0 0 +2.86452E7 26 10 37 98628 906 1405 370 658 864 101 80976 51067 12448 5115 20 2.1 0 0 1000 2000 0 999999999 25 0 0 88 0.2 0 0 +2.86488E7 26 10 37 98628 840 1405 370 598 840 96 73163 48939 11730 4753 310 2.6 0 0 1000 2000 0 999999999 25 0 0 88 0.2 0 0 +2.86524E7 26 10 37 98628 700 1405 370 473 769 90 56821 43031 10862 4230 330 2.6 0 0 1200 2000 0 999999999 25 0 0 88 0.2 0 0 +2.8656E7 27 9 32 98637 496 1405 374 298 588 91 34379 29722 10495 3720 274 0 0 0 1700 2000 0 999999999 23 0 0 88 0.2 0 0 +2.86596E7 26 9 34 98628 242 1405 369 105 268 59 11606 4603 6514 1991 22 0 0 0 1700 2000 0 999999999 23 0 0 88 0.2 0 0 +2.86632E7 23 11 47 98601 0 1183 356 0 0 0 0 0 0 0 133 0 0 0 1600 2000 0 999999999 28 0 0 88 0.2 0 0 +2.86668E7 21 12 56 98583 0 0 348 0 0 0 0 0 0 0 51 0 0 0 900 2000 0 999999999 31 0 0 88 0.2 0 0 +2.86704E7 20 12 60 98574 0 0 343 0 0 0 0 0 0 0 257 0 0 0 750 2000 0 999999999 31 0 0 88 0.2 0 0 +2.8674E7 19 11 60 98564 0 0 338 0 0 0 0 0 0 0 310 0 0 0 750 2000 0 999999999 28 0 0 88 0.2 0 0 +2.86776E7 19 11 60 98564 0 0 338 0 0 0 0 0 0 0 35 0 0 0 800 2000 0 999999999 28 0 0 88 0.2 0 0 +2.86812E7 17 10 63 98546 0 0 327 0 0 0 0 0 0 0 294 0 0 0 700 2000 0 999999999 26 0 0 88 0.2 0 0 +2.86848E7 17 11 68 98546 0 0 328 0 0 0 0 0 0 0 102 0 0 0 600 2000 0 999999999 29 0 0 88 0.2 0 0 +2.86884E7 15 11 77 98527 0 0 319 0 0 0 0 0 0 0 272 0 0 0 400 2000 0 999999999 29 0 0 88 0.2 0 0 +2.8692E7 15 11 77 98527 0 0 319 0 0 0 0 0 0 0 78 0 0 0 400 2000 0 999999999 29 0 0 88 0.2 0 0 +2.86956E7 14 11 82 98517 0 0 315 0 0 0 0 0 0 0 143 0 0 0 350 2000 0 999999999 29 0 0 88 0.2 0 0 +2.86992E7 13 10 82 98507 0 0 310 0 0 0 0 0 0 0 245 0 0 0 350 2000 0 999999999 26 0 0 88 0.2 0 0 +2.87028E7 12 10 88 98498 0 0 305 0 0 0 0 0 0 0 288 0 0 0 400 2000 0 999999999 26 0 0 88 0.2 0 0 +2.87064E7 12 9 82 98498 0 0 304 0 0 0 0 0 0 0 69 0 0 0 400 2000 0 999999999 24 0 0 88 0.2 0 0 +2.871E7 11 9 87 98488 0 0 300 0 0 0 0 0 0 0 122 0 0 0 400 2000 0 999999999 24 0 0 88 0.2 0 0 +2.87136E7 11 10 94 98488 154 739 301 52 89 42 5671 0 4624 1326 230 2.1 0 0 350 2000 0 999999999 26 0 0 88 0.2 0 0 +2.87172E7 13 10 82 98507 420 1406 310 236 497 88 26770 22341 9970 3373 240 1.5 0 0 400 2000 0 999999999 26 0 0 88 0.2 0 0 +2.87208E7 16 12 77 98536 641 1406 325 420 733 86 50032 38616 10237 3918 230 1.5 0 0 600 2000 0 999999999 32 0 0 88 0.2 0 0 +2.87244E7 21 11 53 98583 802 1406 347 563 824 93 68538 46939 11344 4556 230 1.5 0 0 1100 2000 0 999999999 28 0 0 88 0.2 0 0 +2.8728E7 22 11 50 98592 891 1406 352 643 857 100 78990 50012 12302 5041 250 2.1 0 0 1200 2000 0 999999999 28 0 0 88 0.2 0 0 +2.87316E7 25 11 41 98619 903 1406 366 654 861 101 80441 50386 12444 5112 230 1.5 0 0 1800 2000 0 999999999 28 0 0 88 0.2 0 0 +2.87352E7 25 11 41 98619 837 1406 366 595 839 95 72733 48266 11685 4734 250 2.6 0 0 2200 2000 0 999999999 28 0 0 88 0.2 0 0 +2.87388E7 26 9 34 98628 698 1406 369 473 769 91 56722 43515 10915 4244 250 3.1 0 0 2800 2000 0 999999999 23 0 0 88 0.2 0 0 +2.87424E7 25 8 34 98619 494 1406 362 298 592 90 34364 30029 10372 3677 270 3.6 0 0 2800 2000 0 999999999 21 0 0 88 0.2 0 0 +2.8746E7 23 9 41 98601 241 1406 354 104 269 58 11554 4526 6478 1979 260 2.6 0 0 2600 2000 0 999999999 23 0 0 88 0.2 0 0 +2.87496E7 22 10 46 98592 0 1179 350 0 0 0 0 0 0 0 270 1.5 0 0 2300 2000 0 999999999 26 0 0 88 0.2 0 0 +2.87532E7 21 10 49 98583 0 0 346 0 0 0 0 0 0 0 260 1.5 0 0 1600 2000 0 999999999 26 0 0 88 0.2 0 0 +2.87568E7 20 10 53 98574 0 0 341 0 0 0 0 0 0 0 250 1.5 0 0 1000 2000 0 999999999 26 0 0 88 0.2 0 0 +2.87604E7 20 10 53 98574 0 0 341 0 0 0 0 0 0 0 270 2.1 0 0 1000 2000 0 999999999 26 0 0 88 0.2 0 0 +2.8764E7 18 10 59 98555 0 0 332 0 0 0 0 0 0 0 280 0 0 0 1000 2000 0 999999999 26 0 0 88 0.2 0 0 +2.87676E7 17 10 63 98546 0 0 327 0 0 0 0 0 0 0 182 0 0 0 800 2000 0 999999999 26 0 0 88 0.2 0 0 +2.87712E7 16 10 68 98536 0 0 323 0 0 0 0 0 0 0 222 0 0 0 800 2000 0 999999999 26 0 0 88 0.2 0 0 +2.87748E7 15 8 63 98527 0 0 316 0 0 0 0 0 0 0 253 0 0 0 800 2000 0 999999999 21 0 0 88 0.2 0 0 +2.87784E7 14 9 72 98517 0 0 313 0 0 0 0 0 0 0 212 0 0 0 800 2000 0 999999999 23 0 0 88 0.2 0 0 +2.8782E7 14 9 72 98517 0 0 313 0 0 0 0 0 0 0 252 0 0 0 800 2000 0 999999999 23 0 0 88 0.2 0 0 +2.87856E7 13 10 82 98507 0 0 310 0 0 0 0 0 0 0 69 1.5 0 0 700 2000 0 999999999 26 0 0 88 0.2 0 0 +2.87892E7 12 9 82 98498 0 0 304 0 0 0 0 0 0 0 240 2.1 0 0 600 2000 0 999999999 24 0 0 88 0.2 0 0 +2.87928E7 11 9 87 98488 0 0 300 0 0 0 0 0 0 0 240 1.5 0 0 600 2000 0 999999999 24 0 0 88 0.2 0 0 +2.87964E7 10 8 87 98478 0 0 295 0 0 0 0 0 0 0 230 2.1 0 0 500 2000 0 999999999 21 0 0 88 0.2 0 0 +2.88E7 10 7 82 98478 150 721 294 50 139 35 5542 0 3905 1164 240 1.5 0 0 500 2000 0 999999999 19 0 0 88 0.2 0 0 +2.88036E7 13 7 67 98507 416 1406 307 234 500 86 26595 22949 9815 3315 240 3.1 0 0 700 2000 0 999999999 19 0 0 88 0.2 0 0 +2.88072E7 15 7 59 98527 637 1406 315 420 730 89 49982 41003 10665 4053 240 3.1 0 0 1200 2000 0 999999999 19 0 0 88 0.2 0 0 +2.88108E7 20 8 46 98574 798 1406 339 562 827 93 68549 48522 11334 4541 260 3.1 0 0 1600 2000 0 999999999 21 0 0 88 0.2 0 0 +2.88144E7 22 8 41 98592 888 1406 348 643 784 148 76768 52248 17733 7086 260 4.1 0 0 1600 2000 0 999999999 21 0 0 88 0.2 0 0 +2.8818E7 24 7 34 98610 900 1406 356 656 786 153 78274 53167 18293 7315 290 4.6 0 0 2200 2000 0 999999999 19 0 0 88 0.2 0 0 +2.88216E7 25 7 32 98619 835 1406 361 597 846 94 73114 50448 11599 4689 300 5.1 0 0 2600 2000 0 999999999 19 0 0 88 0.2 0 0 +2.88252E7 26 7 30 98628 696 1406 366 473 768 92 56665 44430 11091 4302 280 6.2 0 0 3500 2000 0 999999999 19 0 0 88 0.2 0 0 +2.88288E7 26 7 30 98628 493 1406 366 297 594 89 34315 30280 10281 3644 280 6.2 0 0 3500 2000 0 999999999 19 0 0 88 0.2 0 0 +2.88324E7 25 7 32 98619 240 1406 361 104 270 58 11535 4747 6447 1968 270 4.1 0 0 3500 2000 0 999999999 19 0 0 88 0.2 0 0 +2.8836E7 23 8 38 98601 0 1177 368 0 0 0 0 0 0 0 260 3.1 3 3 3500 2000 0 999999999 21 0 0 88 0.2 0 0 +2.88396E7 19.5 8.5 49 98569 0 0 358 0 0 0 0 0 0 0 229 0.4 3 3 3200 2000 0 999999999 22 0 0 88 0.2 0 0 +2.88432E7 18.8 8.8 52 98562 0 0 355 0 0 0 0 0 0 0 232 0 3 3 2500 2000 0 999999999 23 0 0 88 0.2 0 0 +2.88468E7 18 8.2 53 98555 0 0 334 0 0 0 0 0 0 0 255 0.2 0 0 2000 2000 0 999999999 22 0 0 88 0.2 0 0 +2.88504E7 16.8 8.2 57 98543 0 0 331 0 0 0 0 0 0 0 270 0.2 0 0 1600 2000 0 999999999 22 0 0 88 0.2 0 0 +2.8854E7 15.5 7.8 60 98531 0 0 331 0 0 0 0 0 0 0 246 0.2 0 0 1500 2000 0 999999999 21 0 0 88 0.2 0 0 +2.88576E7 14 7.5 65 98517 0 0 324 0 0 0 0 0 0 0 188 0.2 0 0 1500 2000 0 999999999 20 0 0 88 0.2 0 0 +2.88612E7 12.8 7.8 72 98505 0 0 312 0 0 0 0 0 0 0 201 0 0 0 2200 2000 9 999999999 21 0 0 88 0.2 0 0 +2.88648E7 12 7.8 75 98498 0 0 307 0 0 0 0 0 0 0 194 0 0 0 2200 2000 9 999999999 21 0 0 88 0.2 0 0 +2.88684E7 11.5 7.8 78 98493 0 0 303 0 0 0 0 0 0 0 194 0 0 0 2200 2000 9 999999999 21 0 0 88 0.2 0 0 +2.8872E7 11 7.5 79 98488 0 0 303 0 0 0 0 0 0 0 191 0 0 0 2200 2000 9 999999999 20 0 0 88 0.2 0 0 +2.88756E7 10.5 7.2 80 98483 0 0 299 0 0 0 0 0 0 0 128 0 0 0 2000 2000 9 999999999 20 0 0 88 0.2 0 0 +2.88792E7 11.5 7 74 98493 0 0 322 0 0 0 0 0 0 0 115 0 7 7 1700 2000 9 999999999 19 0 0 88 0.2 0 0 +2.88828E7 10 7 82 98478 0 0 323 0 0 0 0 0 0 0 26 0 8 8 1700 2000 9 999999999 19 0 0 88 0.2 0 0 +2.88864E7 10 7 82 98478 142 684 294 46 76 38 5064 0 4229 1212 58 0 0 0 1500 2000 9 999999999 19 0 0 88 0.2 0 0 +2.889E7 15 7 59 98526 408 1407 331 222 455 90 25076 21143 10192 3393 216 0 4 4 1800 2000 9 999999999 19 0 0 88 0.2 0 0 +2.88936E7 20 7 43 98574 629 1407 338 414 693 104 48630 40747 12263 4585 79 0 0 0 2100 2000 9 999999999 19 0 0 88 0.2 0 0 +2.88972E7 23 6 33 98601 791 1407 350 559 832 91 68170 49291 11090 4434 290 1.5 0 0 2500 2000 9 999999999 17 0 0 88 0.2 0 0 +2.89008E7 24 6 31 98610 881 1407 355 640 784 149 76344 53116 17835 7102 290 1.5 0 0 2800 2000 9 999999999 17 0 0 88 0.2 0 0 +2.89044E7 26 6 28 98628 895 1407 365 653 786 153 77828 53565 18299 7300 290 2.1 0 0 3000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.8908E7 26 6 28 98628 830 1407 365 594 850 92 72899 50826 11363 4589 260 2.6 0 0 3000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.89116E7 27 5 24 98637 693 1407 369 472 772 92 56593 45219 11042 4275 300 2.6 0 0 4000 2000 9 999999999 15 0 0 88 0.2 0 0 +2.89152E7 27 4 23 98637 491 1407 367 297 592 91 34294 31171 10516 3706 330 2.6 0 0 4000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.89188E7 26 4 24 98628 238 1407 362 104 277 57 11562 5060 6373 1945 310 2.6 0 0 4000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.89224E7 24 6 31 98610 0 1173 355 0 0 0 0 0 0 0 164 0 0 0 3500 2000 9 999999999 17 0 0 88 0.2 0 0 +2.8926E7 21 7 40 98583 0 0 342 0 0 0 0 0 0 0 244 0 0 0 3200 2000 9 999999999 19 0 0 88 0.2 0 0 +2.89296E7 18 9 56 98555 0 0 331 0 0 0 0 0 0 0 154 0 0 0 1800 2000 9 999999999 23 0 0 88 0.2 0 0 +2.89332E7 18 10 59 98555 0 0 332 0 0 0 0 0 0 0 120 2.1 0 0 1600 2000 9 999999999 26 0 0 88 0.2 0 0 +2.89368E7 18 9 56 98555 0 0 331 0 0 0 0 0 0 0 113 0 0 0 1500 2000 9 999999999 23 0 0 88 0.2 0 0 +2.89404E7 17 8 55 98546 0 0 325 0 0 0 0 0 0 0 110 1.5 0 0 1400 2000 9 999999999 21 0 0 88 0.2 0 0 +2.8944E7 17 8 55 98546 0 0 325 0 0 0 0 0 0 0 120 2.1 0 0 1700 2000 9 999999999 21 0 0 88 0.2 0 0 +2.89476E7 16 8 59 98536 0 0 321 0 0 0 0 0 0 0 120 1.5 0 0 1800 2000 9 999999999 21 0 0 88 0.2 0 0 +2.89512E7 16 9 63 98536 0 0 322 0 0 0 0 0 0 0 130 2.1 0 0 1800 2000 9 999999999 23 0 0 88 0.2 0 0 +2.89548E7 16 8 59 98536 0 0 321 0 0 0 0 0 0 0 150 2.1 0 0 2000 2000 9 999999999 21 0 0 88 0.2 0 0 +2.89584E7 16 7 55 98536 0 0 320 0 0 0 0 0 0 0 100 2.1 0 0 2200 2000 9 999999999 19 0 0 88 0.2 0 0 +2.8962E7 15 7 59 98527 0 0 315 0 0 0 0 0 0 0 110 2.1 0 0 2500 2000 9 999999999 19 0 0 88 0.2 0 0 +2.89656E7 14 7 63 98517 0 0 311 0 0 0 0 0 0 0 110 1.5 0 0 2500 2000 9 999999999 19 0 0 88 0.2 0 0 +2.89692E7 14 9 72 98517 0 0 313 0 0 0 0 0 0 0 169 0 0 0 2200 2000 9 999999999 23 0 0 88 0.2 0 0 +2.89728E7 15 7 59 98527 138 666 315 44 119 33 4920 0 3636 1078 90 2.1 0 0 1600 2000 9 999999999 19 0 0 88 0.2 0 0 +2.89764E7 17 8 55 98546 404 1408 325 226 492 84 25572 21641 9574 3217 120 4.1 0 0 1400 2000 9 999999999 21 0 0 88 0.2 0 0 +2.898E7 19 8 49 98564 626 1408 334 411 728 87 48815 39973 10395 3940 120 3.6 0 0 1600 2000 9 999999999 21 0 0 88 0.2 0 0 +2.89836E7 21 9 46 98583 787 1408 345 553 825 91 67313 47668 11150 4457 110 3.1 0 0 2200 2000 9 999999999 23 0 0 88 0.2 0 0 +2.89872E7 24 9 38 98610 878 1408 359 635 861 97 78012 50932 11979 4893 120 2.1 0 0 2200 2000 9 999999999 23 0 0 88 0.2 0 0 +2.89908E7 26 7 30 98628 892 1408 366 650 786 151 77444 53045 18114 7230 190 3.1 0 0 2800 2000 9 999999999 19 0 0 88 0.2 0 0 +2.89944E7 27 5 24 98637 828 1408 369 594 854 91 72932 51229 11165 4507 210 2.6 0 0 3500 2000 9 999999999 15 0 0 88 0.2 0 0 +2.8998E7 27 4 23 98637 691 1408 367 472 773 92 56576 45589 11018 4262 200 2.1 0 0 3500 2000 9 999999999 14 0 0 88 0.2 0 0 +2.90016E7 26 4 24 98628 489 1408 362 297 593 90 34242 31138 10459 3686 162 1 0 0 4000 2000 9 999999999 14 0 0 88 0.2 0 0 +2.90052E7 25 6 30 98619 238 1408 360 104 275 57 11503 4769 6359 1941 140 1.5 0 0 5000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.90088E7 22 8 41 98592 0 1173 348 0 0 0 0 0 0 0 130 2.1 0 0 3200 2000 9 999999999 21 0 0 88 0.2 0 0 +2.90124E7 20 8 46 98574 0 0 339 0 0 0 0 0 0 0 130 2.1 0 0 2200 2000 9 999999999 21 0 0 88 0.2 0 0 +2.9016E7 17 8 55 98546 0 0 339 0 0 0 0 0 0 0 162 0 3 3 1500 2000 9 999999999 21 0 0 88 0.2 0 0 +2.90196E7 16 8 59 98536 0 0 337 0 0 0 0 0 0 0 118 0 4 4 1200 2000 9 999999999 21 0 0 88 0.2 0 0 +2.90232E7 16 7 55 98536 0 0 333 0 0 0 0 0 0 0 90 2.1 3 3 1300 2000 9 999999999 19 0 0 88 0.2 0 0 +2.90268E7 15 8 63 98527 0 0 335 0 0 0 0 0 0 0 130 1.5 5 5 1200 2000 9 999999999 21 0 0 88 0.2 0 0 +2.90304E7 15 7 59 98527 0 0 331 0 0 0 0 0 0 0 90 2.1 4 4 1400 2000 9 999999999 19 0 0 88 0.2 0 0 +2.9034E7 14 6 59 98517 0 0 326 0 0 0 0 0 0 0 100 2.1 4 4 1800 2000 9 999999999 17 0 0 88 0.2 0 0 +2.90376E7 14 6 59 98517 0 0 310 0 0 0 0 0 0 0 100 1.5 0 0 2100 2000 9 999999999 17 0 0 88 0.2 0 0 +2.90412E7 14 7 63 98517 0 0 311 0 0 0 0 0 0 0 100 1.5 0 0 2100 2000 9 999999999 19 0 0 88 0.2 0 0 +2.90448E7 14 6 59 98517 0 0 310 0 0 0 0 0 0 0 120 2.1 0 0 2800 2000 9 999999999 17 0 0 88 0.2 0 0 +2.90484E7 13 6 62 98507 0 0 305 0 0 0 0 0 0 0 100 2.1 0 0 3000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.9052E7 11 6 71 98488 0 0 297 0 0 0 0 0 0 0 90 2.1 0 0 2700 2000 9 999999999 17 0 0 88 0.2 0 0 +2.90556E7 12 6 67 98498 0 0 301 0 0 0 0 0 0 0 90 2.1 0 0 2200 2000 9 999999999 17 0 0 88 0.2 0 0 +2.90592E7 12 7 71 98498 135 649 302 42 109 32 4701 0 3552 1051 100 2.1 0 0 1900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.90628E7 16 7 55 98536 401 1408 333 219 468 86 24823 20990 9779 3261 80 1 3 3 1600 2000 9 999999999 19 0 0 88 0.2 0 0 +2.90664E7 21 8 43 98583 622 1408 343 408 691 102 47820 39891 12009 4485 160 2.6 0 0 2300 2000 9 999999999 21 0 0 88 0.2 0 0 +2.907E7 23 7 36 98601 784 1408 352 552 814 98 66840 48731 11915 4740 150 3.6 0 0 2700 2000 9 999999999 19 0 0 88 0.2 0 0 +2.90736E7 24 7 34 98610 875 1408 356 634 784 147 75587 52491 17537 6982 150 4.1 0 0 2900 2000 9 999999999 19 0 0 88 0.2 0 0 +2.90772E7 25 6 30 98619 890 1408 360 648 785 152 77283 53453 18150 7234 150 4.1 0 0 3000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.90808E7 26 6 28 98628 826 1408 365 591 850 92 72460 50724 11305 4561 150 3.1 0 0 3000 2000 9 999999999 17 0 0 88 0.2 0 0 +2.90844E7 26 5 26 98628 690 1408 364 469 772 91 56306 45105 10977 4246 150 1.5 0 0 3200 2000 9 999999999 15 0 0 88 0.2 0 0 +2.9088E7 26 5 26 98628 489 1408 364 296 594 89 34112 30749 10325 3644 130 1.5 0 0 3200 2000 9 999999999 15 0 0 88 0.2 0 0 +2.90916E7 25 4 26 98619 237 1408 358 104 278 57 11521 4991 6339 1934 130 1.5 0 0 3200 2000 9 999999999 14 0 0 88 0.2 0 0 +2.90952E7 21 8 43 98583 0 1173 343 0 0 0 0 0 0 0 136 0 0 0 2000 2000 9 999999999 21 0 0 88 0.2 0 0 +2.90988E7 20 8 46 98574 0 0 339 0 0 0 0 0 0 0 153 0 0 0 1800 2000 9 999999999 21 0 0 88 0.2 0 0 +2.91024E7 19 8 49 98564 0 0 334 0 0 0 0 0 0 0 129 0 0 0 1800 2000 9 999999999 21 0 0 88 0.2 0 0 +2.9106E7 17 8 55 98546 0 0 325 0 0 0 0 0 0 0 90 1.5 0 0 1500 2000 9 999999999 21 0 0 88 0.2 0 0 +2.91096E7 17 8 55 98546 0 0 325 0 0 0 0 0 0 0 80 1.5 0 0 1500 2000 9 999999999 21 0 0 88 0.2 0 0 +2.91132E7 16 8 59 98536 0 0 321 0 0 0 0 0 0 0 249 0 0 0 1500 2000 9 999999999 21 0 0 88 0.2 0 0 +2.91168E7 16 7 55 98536 0 0 320 0 0 0 0 0 0 0 249 0 0 0 1200 2000 9 999999999 19 0 0 88 0.2 0 0 +2.91204E7 15 8 63 98527 0 0 316 0 0 0 0 0 0 0 108 0 0 0 1100 2000 9 999999999 21 0 0 88 0.2 0 0 +2.9124E7 14.5 8.5 67 98522 0 0 333 0 0 0 0 0 0 0 43 0 5 5 1100 2000 9 999999999 22 0 0 88 0.2 0 0 +2.91276E7 14 9 72 98517 0 0 313 0 0 0 0 0 0 0 153 0 0 0 1100 2000 9 999999999 23 0 0 88 0.2 0 0 +2.91312E7 13 9 77 98507 0 0 309 0 0 0 0 0 0 0 0 0 0 0 1200 2000 9 999999999 24 0 0 88 0.2 0 0 +2.91348E7 13 10 82 98507 0 0 310 0 0 0 0 0 0 0 100 0 0 0 1000 2000 9 999999999 26 0 0 88 0.2 0 0 +2.91384E7 12 10 88 98498 0 0 305 0 0 0 0 0 0 0 209 0 0 0 900 2000 0 999999999 26 0 0 88 0.2 0 0 +2.9142E7 12 10 88 98498 0 0 305 0 0 0 0 0 0 0 240 0 0 0 700 2000 0 999999999 26 0 0 88 0.2 0 0 +2.91456E7 12 10 88 98498 131 631 305 41 100 31 4482 0 3463 1024 141 0 0 0 600 2000 0 999999999 26 0 0 88 0.2 0 0 +2.91492E7 14 11 82 98517 397 1409 315 219 456 90 24572 19847 10158 3353 251 0 0 0 700 2000 0 999999999 29 0 0 88 0.2 0 0 +2.91528E7 19 11 60 98564 619 1409 338 403 690 100 47226 38227 11715 4385 290 2.6 0 0 1000 2000 0 999999999 28 0 0 88 0.2 0 0 +2.91564E7 20 10 53 98574 781 1409 341 546 812 96 66171 46976 11613 4626 290 3.6 0 0 1200 2000 0 999999999 26 0 0 88 0.2 0 0 +2.916E7 22 9 43 98592 872 1409 349 630 860 97 77353 50784 11897 4853 280 2.6 0 0 2000 2000 0 999999999 23 0 0 88 0.2 0 0 +2.91636E7 24 8 36 98610 887 1409 358 644 785 149 76805 52428 17844 7123 300 3.6 0 0 2600 2000 0 999999999 21 0 0 88 0.2 0 0 +2.91672E7 24 7 34 98610 825 1409 356 589 846 93 72061 50218 11402 4598 320 4.6 0 0 3200 2000 0 999999999 19 0 0 88 0.2 0 0 +2.91708E7 24 7 34 98610 688 1409 356 467 770 90 55995 44184 10873 4209 320 4.6 0 0 3200 2000 0 999999999 19 0 0 88 0.2 0 0 +2.91744E7 25 6 30 98619 488 1409 360 295 598 88 34052 30405 10144 3588 310 4.6 0 0 3500 2000 0 999999999 17 0 0 88 0.2 0 0 +2.9178E7 24 5 29 98610 237 1409 354 104 278 57 11508 4861 6326 1931 320 4.1 0 0 3500 2000 0 999999999 15 0 0 88 0.2 0 0 +2.91816E7 22 8 41 98592 0 1173 348 0 0 0 0 0 0 0 290 2.6 0 0 3500 2000 0 999999999 21 0 0 88 0.2 0 0 +2.91852E7 18 8 52 98555 0 0 330 0 0 0 0 0 0 0 260 1.5 0 0 2500 2000 0 999999999 21 0 0 88 0.2 0 0 +2.91888E7 17 8 55 98546 0 0 325 0 0 0 0 0 0 0 260 1.5 0 0 2300 2000 0 999999999 21 0 0 88 0.2 0 0 +2.91924E7 16 8 59 98536 0 0 321 0 0 0 0 0 0 0 250 1.5 0 0 2100 2000 0 999999999 21 0 0 88 0.2 0 0 +2.9196E7 15 9 67 98527 0 0 317 0 0 0 0 0 0 0 250 1.5 0 0 2100 2000 0 999999999 23 0 0 88 0.2 0 0 +2.91996E7 15 9 67 98527 0 0 317 0 0 0 0 0 0 0 240 1.5 0 0 2100 2000 0 999999999 23 0 0 88 0.2 0 0 +2.92032E7 14 9 72 98517 0 0 313 0 0 0 0 0 0 0 240 2.1 0 0 2200 2000 0 999999999 23 0 0 88 0.2 0 0 +2.92068E7 13 8 72 98507 0 0 308 0 0 0 0 0 0 0 230 1.5 0 0 2200 2000 0 999999999 21 0 0 88 0.2 0 0 +2.92104E7 12 9 82 98498 0 0 304 0 0 0 0 0 0 0 230 1.5 0 0 2100 2000 0 999999999 24 0 0 88 0.2 0 0 +2.9214E7 12 8 76 98498 0 0 303 0 0 0 0 0 0 0 230 2.1 0 0 2100 2000 0 999999999 21 0 0 88 0.2 0 0 +2.92176E7 12 8 76 98498 0 0 303 0 0 0 0 0 0 0 277 0 0 0 2000 2000 0 999999999 21 0 0 88 0.2 0 0 +2.92212E7 11 8 82 98488 0 0 329 0 0 0 0 0 0 0 250 2.6 8 8 1800 2000 0 999999999 21 0 0 88 0.2 0 0 +2.92248E7 10 8 87 98478 0 0 331 0 0 0 0 0 0 0 260 2.1 9 9 1800 2000 9 999999999 21 0 0 88 0.2 0 0 +2.92284E7 10 8 87 98478 0 0 331 0 0 0 0 0 0 0 250 2.6 9 9 1800 2000 9 999999999 21 0 0 88 0.2 0 0 +2.9232E7 10 8 87 98478 127 614 295 39 94 30 4312 0 3379 996 250 2.6 0 0 1700 2000 9 999999999 21 0 0 88 0.2 0 0 +2.92356E7 12 8 76 98498 393 1409 303 217 483 82 24611 20605 9351 3125 260 2.6 0 0 1700 2000 9 999999999 21 0 0 88 0.2 0 0 +2.92392E7 15 9 67 98527 615 1409 317 401 722 86 47632 38888 10215 3861 250 3.1 0 0 1600 2000 9 999999999 23 0 0 88 0.2 0 0 +2.92428E7 20 10 53 98574 778 1409 341 544 821 90 66120 46769 10995 4386 300 4.6 0 0 1800 2000 9 999999999 26 0 0 88 0.2 0 0 +2.92464E7 21 10 49 98583 870 1409 346 626 858 96 76878 50138 11879 4845 300 4.6 0 0 1900 2000 9 999999999 26 0 0 88 0.2 0 0 +2.925E7 22 10 46 98592 885 1409 350 640 863 98 78702 50628 12048 4930 310 5.1 0 0 2400 2000 9 999999999 26 0 0 88 0.2 0 0 +2.92536E7 24 9 38 98610 823 1409 359 585 843 93 71583 49123 11386 4593 310 4.6 0 0 2800 2000 9 999999999 23 0 0 88 0.2 0 0 +2.92572E7 25 7 32 98619 687 1409 361 466 771 90 55925 44166 10824 4189 300 5.1 0 0 3000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.92608E7 25 7 32 98619 487 1409 361 294 601 86 34001 30051 9981 3538 300 4.1 0 0 3500 2000 9 999999999 19 0 0 88 0.2 0 0 +2.92644E7 24 7 34 98610 237 1409 356 103 278 57 11480 4591 6321 1930 290 3.6 0 0 3500 2000 9 999999999 19 0 0 88 0.2 0 0 +2.9268E7 22 7 38 98592 0 1174 347 0 0 0 0 0 0 0 270 3.1 0 0 3200 2000 9 999999999 19 0 0 88 0.2 0 0 +2.92716E7 18 10 59 98555 0 0 332 0 0 0 0 0 0 0 260 2.6 0 0 2500 2000 9 999999999 26 0 0 88 0.2 0 0 +2.92752E7 17 10 63 98546 0 0 327 0 0 0 0 0 0 0 270 2.1 0 0 2200 2000 9 999999999 26 0 0 88 0.2 0 0 +2.92788E7 16 9 63 98536 0 0 322 0 0 0 0 0 0 0 250 2.1 0 0 2000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.92824E7 16 9 63 98536 0 0 322 0 0 0 0 0 0 0 270 2.1 0 0 2000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.9286E7 16 8 59 98536 0 0 321 0 0 0 0 0 0 0 280 2.1 0 0 2000 2000 9 999999999 21 0 0 88 0.2 0 0 +2.92896E7 15 8 63 98527 0 0 316 0 0 0 0 0 0 0 280 2.1 0 0 1800 2000 9 999999999 21 0 0 88 0.2 0 0 +2.92932E7 14 8 67 98517 0 0 312 0 0 0 0 0 0 0 220 1.5 0 0 1600 2000 9 999999999 21 0 0 88 0.2 0 0 +2.92968E7 13 8 72 98507 0 0 308 0 0 0 0 0 0 0 220 2.1 0 0 1600 2000 9 999999999 21 0 0 88 0.2 0 0 +2.93004E7 12 8 76 98498 0 0 303 0 0 0 0 0 0 0 220 2.1 0 0 1500 2000 9 999999999 21 0 0 88 0.2 0 0 +2.9304E7 12 8 76 98498 0 0 303 0 0 0 0 0 0 0 290 0 0 0 1400 2000 9 999999999 21 0 0 88 0.2 0 0 +2.93076E7 12 8 76 98498 0 0 303 0 0 0 0 0 0 0 222 0 0 0 1400 2000 9 999999999 21 0 0 88 0.2 0 0 +2.93112E7 11 8 82 98488 0 0 299 0 0 0 0 0 0 0 183 0 0 0 1400 2000 9 999999999 21 0 0 88 0.2 0 0 +2.93148E7 10 7 82 98478 0 0 294 0 0 0 0 0 0 0 273 0 0 0 1700 2000 9 999999999 19 0 0 88 0.2 0 0 +2.93184E7 11 8 82 98488 124 596 299 37 87 30 4130 0 3294 970 164 0 0 0 1700 2000 9 999999999 21 0 0 88 0.2 0 0 +2.9322E7 13 8 72 98507 390 1409 308 215 482 82 24325 20294 9265 3092 260 2.1 0 0 2000 2000 9 999999999 21 0 0 88 0.2 0 0 +2.93256E7 15 8 63 98527 612 1409 316 400 722 86 47400 39191 10204 3850 240 3.1 0 0 2500 2000 9 999999999 21 0 0 88 0.2 0 0 +2.93292E7 18 8 52 98555 775 1409 330 543 824 90 66086 47784 10972 4370 290 3.1 0 0 2500 2000 9 999999999 21 0 0 88 0.2 0 0 +2.93328E7 20 9 49 98574 867 1409 340 625 860 96 76798 50669 11792 4805 290 2.6 0 0 2500 2000 9 999999999 23 0 0 88 0.2 0 0 +2.93364E7 22 9 43 98592 883 1409 349 640 785 147 76241 51825 17623 7035 300 3.6 0 0 2500 2000 9 999999999 23 0 0 88 0.2 0 0 +2.934E7 23 8 38 98601 821 1409 353 585 845 92 71605 49646 11336 4569 280 3.1 0 0 3000 2000 9 999999999 21 0 0 88 0.2 0 0 +2.93436E7 24 8 36 98610 686 1409 358 465 772 89 55781 43656 10683 4138 270 4.1 0 0 3000 2000 9 999999999 21 0 0 88 0.2 0 0 +2.93472E7 24 8 36 98610 487 1409 358 294 600 86 33909 29690 10002 3544 260 3.6 0 0 3000 2000 9 999999999 21 0 0 88 0.2 0 0 +2.93508E7 23 8 38 98601 237 1409 353 104 278 57 11486 4459 6313 1929 280 2.6 0 0 3000 2000 9 999999999 21 0 0 88 0.2 0 0 +2.93544E7 20 8 46 98574 0 1176 339 0 0 0 0 0 0 0 280 1 0 0 2600 2000 9 999999999 21 0 0 88 0.2 0 0 +2.9358E7 17 9 59 98546 0 0 326 0 0 0 0 0 0 0 14 0 0 0 2000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.93616E7 15 10 72 98527 0 0 318 0 0 0 0 0 0 0 81 0 0 0 1200 2000 9 999999999 26 0 0 88 0.2 0 0 +2.93652E7 15 9 67 98527 0 0 317 0 0 0 0 0 0 0 51 0 0 0 1000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.93688E7 14 9 72 98517 0 0 313 0 0 0 0 0 0 0 264 0 0 0 800 2000 9 999999999 23 0 0 88 0.2 0 0 +2.93724E7 13 9 77 98507 0 0 309 0 0 0 0 0 0 0 13 0 0 0 700 2000 9 999999999 24 0 0 88 0.2 0 0 +2.9376E7 13 9 77 98507 0 0 309 0 0 0 0 0 0 0 247 0 0 0 700 2000 9 999999999 24 0 0 88 0.2 0 0 +2.93796E7 12 9 82 98498 0 0 304 0 0 0 0 0 0 0 70 0 0 0 700 2000 9 999999999 24 0 0 88 0.2 0 0 +2.93832E7 12 9 82 98498 0 0 304 0 0 0 0 0 0 0 231 0 0 0 700 2000 9 999999999 24 0 0 88 0.2 0 0 +2.93868E7 11 9 87 98488 0 0 300 0 0 0 0 0 0 0 269 0 0 0 700 2000 9 999999999 24 0 0 88 0.2 0 0 +2.93904E7 10 9 93 98478 0 0 296 0 0 0 0 0 0 0 263 0 0 0 700 2000 9 999999999 24 0 0 88 0.2 0 0 +2.9394E7 10 8 87 98478 0 0 295 0 0 0 0 0 0 0 181 0 0 0 700 2000 9 999999999 21 0 0 88 0.2 0 0 +2.93976E7 10 9 93 98478 0 0 296 0 0 0 0 0 0 0 247 0 0 0 800 2000 9 999999999 24 0 0 88 0.2 0 0 +2.94012E7 10 8 87 98478 0 0 295 0 0 0 0 0 0 0 145 0 0 0 700 2000 9 999999999 21 0 0 88 0.2 0 0 +2.94048E7 10 8 87 98478 120 579 295 36 84 29 3992 0 3206 943 108 0 0 0 700 2000 9 999999999 21 0 0 88 0.2 0 0 +2.94084E7 12 10 88 98498 386 1410 305 211 489 77 23980 19274 8801 2959 284 0 0 0 1000 2000 9 999999999 26 0 0 88 0.2 0 0 +2.9412E7 16 9 63 98536 608 1410 322 396 688 99 46415 38659 11602 4321 240 2.1 0 0 1400 2000 9 999999999 23 0 0 88 0.2 0 0 +2.94156E7 20 9 49 98574 772 1410 340 540 821 90 65605 47130 10932 4352 230 3.1 0 0 1700 2000 9 999999999 23 0 0 88 0.2 0 0 +2.94192E7 21 9 46 98583 865 1410 345 623 859 95 76501 50597 11763 4791 260 2.6 0 0 1900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.94228E7 22 9 43 98592 881 1410 349 638 785 147 76020 51769 17554 7005 290 1.5 0 0 2000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.94264E7 24 9 38 98610 820 1410 359 583 843 92 71275 49053 11329 4567 320 2.1 0 0 2400 2000 9 999999999 23 0 0 88 0.2 0 0 +2.943E7 24 8 36 98610 685 1410 358 464 771 89 55680 43614 10676 4134 320 1.5 0 0 2600 2000 9 999999999 21 0 0 88 0.2 0 0 +2.94336E7 25 8 34 98619 487 1410 362 293 599 86 33876 29663 9993 3541 310 1.5 0 0 2400 2000 9 999999999 21 0 0 88 0.2 0 0 +2.94372E7 24 8 36 98610 237 1410 358 104 279 57 11495 4469 6315 1930 43 0 0 0 2200 2000 9 999999999 21 0 0 88 0.2 0 0 +2.94408E7 22 8 41 98592 0 1179 348 0 0 0 0 0 0 0 18 0 0 0 2000 2000 9 999999999 21 0 0 88 0.2 0 0 +2.94444E7 20 9 49 98574 0 0 351 0 0 0 0 0 0 0 143 0 2 2 1700 2000 9 999999999 23 0 0 88 0.2 0 0 +2.9448E7 18 9 56 98555 0 0 345 0 0 0 0 0 0 0 252 0 3 3 1300 2000 9 999999999 23 0 0 88 0.2 0 0 +2.94516E7 16 10 68 98536 0 0 323 0 0 0 0 0 0 0 152 0 0 0 1000 2000 9 999999999 26 0 0 88 0.2 0 0 +2.94552E7 15 11 77 98527 0 0 319 0 0 0 0 0 0 0 110 0 0 0 900 2000 9 999999999 29 0 0 88 0.2 0 0 +2.94588E7 15 11 77 98527 0 0 319 0 0 0 0 0 0 0 281 0 0 0 700 2000 9 999999999 29 0 0 88 0.2 0 0 +2.94624E7 13 11 88 98507 0 0 311 0 0 0 0 0 0 0 303 0 0 0 700 2000 9 999999999 29 0 0 88 0.2 0 0 +2.9466E7 13 11 88 98507 0 0 311 0 0 0 0 0 0 0 25 0 0 0 600 2000 9 999999999 29 0 0 88 0.2 0 0 +2.94696E7 12 10 88 98498 0 0 305 0 0 0 0 0 0 0 23 0 0 0 500 2000 9 999999999 26 0 0 88 0.2 0 0 +2.94732E7 12 10 88 98498 0 0 305 0 0 0 0 0 0 0 90 1.5 0 0 400 2000 0 999999999 26 0 0 88 0.2 0 0 +2.94768E7 12 10 88 98498 0 0 305 0 0 0 0 0 0 0 251 0 0 0 400 2000 0 999999999 26 0 0 88 0.2 0 0 +2.94804E7 12 10 88 98498 0 0 305 0 0 0 0 0 0 0 86 0 0 0 500 2000 0 999999999 26 0 0 88 0.2 0 0 +2.9484E7 12 10 88 98498 0 0 305 0 0 0 0 0 0 0 251 0 0 0 400 2000 0 999999999 26 0 0 88 0.2 0 0 +2.94876E7 12 10 88 98498 0 0 343 0 0 0 0 0 0 0 28 0 9 9 400 2000 0 999999999 26 0 0 88 0.2 0 0 +2.94912E7 12 10 88 98498 116 563 343 20 0 20 1945 0 1958 713 121 0 9 9 400 2000 0 999999999 26 0 0 88 0.2 0 0 +2.94948E7 15 13 88 98527 383 1410 322 208 506 70 23705 17715 8040 2740 13 0 0 0 450 2000 0 999999999 35 0 0 88 0.2 0 0 +2.94984E7 17 13 77 98546 605 1410 331 391 686 96 45758 36362 11301 4222 200 0 0 0 700 2000 0 999999999 35 0 0 88 0.2 0 0 +2.9502E7 22 10 46 98592 769 1410 350 536 812 94 64951 46580 11361 4513 130 2.1 0 0 1000 2000 0 999999999 26 0 0 88 0.2 0 0 +2.95056E7 23 10 44 98601 862 1410 355 620 857 95 76089 49966 11734 4778 150 2.1 0 0 1200 2000 0 999999999 26 0 0 88 0.2 0 0 +2.95092E7 25 8 34 98619 879 1410 362 638 785 148 75966 52297 17662 7036 79 0 0 0 1700 2000 0 999999999 21 0 0 88 0.2 0 0 +2.95128E7 25 8 34 98619 819 1410 362 583 845 92 71338 49591 11278 4543 128 0 0 0 1700 2000 0 999999999 21 0 0 88 0.2 0 0 +2.95164E7 25 8 34 98619 685 1410 362 464 773 88 55658 43616 10627 4115 280 2.6 0 0 2000 2000 0 999999999 21 0 0 88 0.2 0 0 +2.952E7 25 8 34 98619 486 1410 362 294 602 86 33909 29699 9952 3528 300 2.6 0 0 1700 2000 0 999999999 21 0 0 88 0.2 0 0 +2.95236E7 23 10 44 98601 237 1410 355 104 279 57 11493 4177 6318 1932 280 2.1 0 0 1500 2000 0 999999999 26 0 0 88 0.2 0 0 +2.95272E7 22 10 46 98592 0 1182 350 0 0 0 0 0 0 0 260 1.5 0 0 1500 2000 0 999999999 26 0 0 88 0.2 0 0 +2.95308E7 19 11 60 98564 0 0 338 0 0 0 0 0 0 0 73 0 0 0 1200 2000 0 999999999 28 0 0 88 0.2 0 0 +2.95344E7 17 13 77 98546 0 0 331 0 0 0 0 0 0 0 224 0 0 0 700 2000 0 999999999 35 0 0 88 0.2 0 0 +2.9538E7 15 11 77 98527 0 0 319 0 0 0 0 0 0 0 37 0 0 0 700 2000 0 999999999 29 0 0 88 0.2 0 0 +2.95416E7 15 12 82 98527 0 0 320 0 0 0 0 0 0 0 210 0 0 0 700 2000 0 999999999 32 0 0 88 0.2 0 0 +2.95452E7 15 11 77 98527 0 0 319 0 0 0 0 0 0 0 213 0 0 0 700 2000 0 999999999 29 0 0 88 0.2 0 0 +2.95488E7 14 11 82 98517 0 0 315 0 0 0 0 0 0 0 58 0 0 0 700 2000 0 999999999 29 0 0 88 0.2 0 0 +2.95524E7 13 11 88 98507 0 0 311 0 0 0 0 0 0 0 162 0 0 0 700 2000 0 999999999 29 0 0 88 0.2 0 0 +2.9556E7 12 11 94 98498 0 0 306 0 0 0 0 0 0 0 146 0 0 0 400 2000 0 999999999 29 0 0 88 0.2 0 0 +2.95596E7 12 11 94 98498 0 0 306 0 0 0 0 0 0 0 256 0 0 0 350 2000 0 999999999 29 0 0 88 0.2 0 0 +2.95632E7 12 11 94 98498 0 0 306 0 0 0 0 0 0 0 207 0 0 0 350 2000 0 999999999 29 0 0 88 0.2 0 0 +2.95668E7 11 10 94 98488 0 0 301 0 0 0 0 0 0 0 87 0 0 0 400 2000 0 999999999 26 0 0 88 0.2 0 0 +2.95704E7 11 10 94 98488 0 0 301 0 0 0 0 0 0 0 135 0 0 0 400 2000 0 999999999 26 0 0 88 0.2 0 0 +2.9574E7 11 10 94 98488 0 0 301 0 0 0 0 0 0 0 32 0 0 0 400 2000 0 999999999 26 0 0 88 0.2 0 0 +2.95776E7 10 10 100 98478 113 546 297 34 86 27 3780 0 3029 890 249 0 0 0 350 2000 0 999999999 26 0 0 88 0.2 0 0 +2.95812E7 12 12 100 98498 379 1411 307 206 507 69 23503 17808 7943 2703 334 0 0 0 500 2000 0 999999999 32 0 0 88 0.2 0 0 +2.95848E7 15 13 88 98527 602 1411 322 388 685 96 45469 36196 11235 4193 136 0 0 0 700 2000 0 999999999 35 0 0 88 0.2 0 0 +2.95884E7 20 12 60 98574 766 1411 343 532 813 91 64508 45199 11015 4382 290 1.5 0 0 900 2000 0 999999999 31 0 0 88 0.2 0 0 +2.9592E7 21 12 56 98583 860 1411 348 616 853 95 75486 48630 11720 4775 320 2.1 0 0 1000 2000 0 999999999 31 0 0 88 0.2 0 0 +2.95956E7 23 12 50 98601 878 1411 358 632 859 97 77537 49199 11934 4880 310 2.6 0 0 1300 2000 0 999999999 31 0 0 88 0.2 0 0 +2.95992E7 22 11 50 98592 818 1411 352 579 840 92 70753 47821 11248 4536 320 2.6 0 0 1700 2000 0 999999999 28 0 0 88 0.2 0 0 +2.96028E7 24 11 44 98610 684 1411 361 461 775 85 55413 41939 10239 3977 310 3.1 0 0 1600 2000 0 999999999 28 0 0 88 0.2 0 0 +2.96064E7 24 10 41 98610 486 1411 367 293 596 87 33748 28931 10056 3562 300 3.6 1 1 1800 2000 0 999999999 26 0 0 88 0.2 0 0 +2.961E7 22 9 43 98592 238 1411 349 104 283 57 11583 4405 6308 1930 310 3.6 0 0 2100 2000 0 999999999 23 0 0 88 0.2 0 0 +2.96136E7 21 9 46 98583 0 1185 345 0 0 0 0 0 0 0 280 2.1 0 0 2100 2000 0 999999999 23 0 0 88 0.2 0 0 +2.96172E7 18.5 9.5 56 98560 0 0 348 0 0 0 0 0 0 0 253 1 3 3 1650 2000 9 999999999 25 0 0 88 0.2 0 0 +2.96208E7 16 10 68 98536 0 0 323 0 0 0 0 0 0 0 305 0 0 0 1200 2000 0 999999999 26 0 0 88 0.2 0 0 +2.96244E7 16 10 68 98536 0 0 323 0 0 0 0 0 0 0 47 0 0 0 1200 2000 0 999999999 26 0 0 88 0.2 0 0 +2.9628E7 16 10 68 98536 0 0 323 0 0 0 0 0 0 0 36 0 0 0 1000 2000 0 999999999 26 0 0 88 0.2 0 0 +2.96316E7 15 10 72 98527 0 0 340 0 0 0 0 0 0 0 8 0 6 6 850 2000 9 999999999 26 0 0 88 0.2 0 0 +2.96352E7 14 10 77 98517 0 0 314 0 0 0 0 0 0 0 212 0 0 0 700 2000 0 999999999 26 0 0 88 0.2 0 0 +2.96388E7 13 10 82 98507 0 0 310 0 0 0 0 0 0 0 16 0 0 0 600 2000 0 999999999 26 0 0 88 0.2 0 0 +2.96424E7 12 10 88 98498 0 0 305 0 0 0 0 0 0 0 28 0 0 0 600 2000 0 999999999 26 0 0 88 0.2 0 0 +2.9646E7 11 9 87 98488 0 0 300 0 0 0 0 0 0 0 222 0 0 0 500 2000 0 999999999 24 0 0 88 0.2 0 0 +2.96496E7 11 9 87 98488 0 0 300 0 0 0 0 0 0 0 97 0 0 0 500 2000 0 999999999 24 0 0 88 0.2 0 0 +2.96532E7 11 9 87 98488 0 0 300 0 0 0 0 0 0 0 276 0 0 0 400 2000 0 999999999 24 0 0 88 0.2 0 0 +2.96568E7 11 9 87 98488 0 0 300 0 0 0 0 0 0 0 79 0 0 0 400 2000 0 999999999 24 0 0 88 0.2 0 0 +2.96604E7 10 9 93 98478 0 0 296 0 0 0 0 0 0 0 117 0 0 0 500 2000 0 999999999 24 0 0 88 0.2 0 0 +2.9664E7 10 9 93 98478 110 530 296 33 53 29 3661 0 3216 921 89 0 0 0 500 2000 0 999999999 24 0 0 88 0.2 0 0 +2.96676E7 11 10 94 98488 376 1411 301 204 484 75 23186 18379 8573 2870 173 0 0 0 600 2000 0 999999999 26 0 0 88 0.2 0 0 +2.96712E7 14 11 82 98517 599 1411 315 387 716 83 45881 36961 9899 3727 167 0 0 0 900 2000 0 999999999 29 0 0 88 0.2 0 0 +2.96748E7 17 11 68 98546 763 1411 328 531 818 88 64509 45692 10728 4267 270 2.6 0 0 1200 2000 0 999999999 29 0 0 88 0.2 0 0 +2.96784E7 19 12 64 98564 858 1411 339 614 853 95 75270 48582 11672 4753 270 2.6 0 0 1300 2000 0 999999999 31 0 0 88 0.2 0 0 +2.9682E7 21 12 56 98583 876 1411 348 631 859 97 77384 49172 11892 4861 320 3.6 0 0 1500 2000 0 999999999 31 0 0 88 0.2 0 0 +2.96856E7 22 12 53 98592 817 1411 353 578 839 91 70523 47156 11194 4516 258 3.6 0 0 1500 2000 0 999999999 31 0 0 88 0.2 0 0 +2.96892E7 23 9 41 98601 684 1411 354 463 775 87 55565 43104 10439 4046 300 3.6 0 0 1800 2000 0 999999999 23 0 0 88 0.2 0 0 +2.96928E7 24 8 36 98610 486 1411 358 294 606 85 34014 29805 9878 3504 310 4.1 0 0 2400 2000 0 999999999 21 0 0 88 0.2 0 0 +2.96964E7 23 8 38 98601 238 1411 353 105 288 57 11684 4640 6300 1929 300 3.6 0 0 2400 2000 0 999999999 21 0 0 88 0.2 0 0 +2.97E7 21 10 49 98583 0 1190 346 0 0 0 0 0 0 0 300 1.5 0 0 2000 2000 0 999999999 26 0 0 88 0.2 0 0 +2.97036E7 17 10 63 98546 0 0 347 0 0 0 0 0 0 0 89 0 5 5 1400 2000 0 999999999 26 0 0 88 0.2 0 0 +2.97072E7 16 10 68 98536 0 0 323 0 0 0 0 0 0 0 134 0 0 0 1000 2000 0 999999999 26 0 0 88 0.2 0 0 +2.97108E7 13 10 82 98507 0 0 310 0 0 0 0 0 0 0 35 0 0 0 700 2000 0 999999999 26 0 0 88 0.2 0 0 +2.97144E7 14 11 82 98517 0 0 315 0 0 0 0 0 0 0 0 0 0 0 700 2000 0 999999999 29 0 0 88 0.2 0 0 +2.9718E7 13 11 88 98507 0 0 311 0 0 0 0 0 0 0 76 0 0 0 600 2000 0 999999999 29 0 0 88 0.2 0 0 +2.97216E7 12 11 94 98498 0 0 306 0 0 0 0 0 0 0 80 0 0 0 500 2000 0 999999999 29 0 0 88 0.2 0 0 +2.97252E7 12 10 88 98498 0 0 305 0 0 0 0 0 0 0 54 0 0 0 700 2000 0 999999999 26 0 0 88 0.2 0 0 +2.97288E7 12 10 88 98498 0 0 305 0 0 0 0 0 0 0 60 0 0 0 700 2000 0 999999999 26 0 0 88 0.2 0 0 +2.97324E7 11 9 87 98488 0 0 300 0 0 0 0 0 0 0 276 0 0 0 700 2000 0 999999999 24 0 0 88 0.2 0 0 +2.9736E7 10 10 100 98478 0 0 297 0 0 0 0 0 0 0 319 0 0 0 700 2000 0 999999999 26 0 0 88 0.2 0 0 +2.97396E7 9 9 100 98468 0 0 292 0 0 0 0 0 0 0 250 2.6 0 0 700 2000 0 999999999 24 0 0 88 0.2 0 0 +2.97432E7 9 9 100 98468 0 0 292 0 0 0 0 0 0 0 240 1.5 0 0 600 2000 9 999999999 24 0 0 88 0.2 0 0 +2.97468E7 9 9 100 98468 0 0 292 0 0 0 0 0 0 0 250 1.5 0 0 700 2000 9 999999999 24 0 0 88 0.2 0 0 +2.97504E7 10 10 100 98478 106 514 297 32 52 28 3543 0 3123 895 240 2.1 0 0 700 2000 9 999999999 26 0 0 88 0.2 0 0 +2.9754E7 13 11 88 98507 373 1411 311 202 504 68 23013 17557 7813 2650 250 3.6 0 0 1000 2000 9 999999999 29 0 0 88 0.2 0 0 +2.97576E7 16 11 72 98536 596 1411 324 385 685 95 45077 36971 11219 4171 260 3.1 0 0 1300 2000 9 999999999 29 0 0 88 0.2 0 0 +2.97612E7 17 11 68 98546 761 1411 328 529 817 88 64212 45588 10706 4255 260 3.6 0 0 1400 2000 9 999999999 29 0 0 88 0.2 0 0 +2.97648E7 21 11 53 98583 856 1411 347 614 855 95 75222 49189 11630 4731 290 3.6 0 0 1600 2000 9 999999999 28 0 0 88 0.2 0 0 +2.97684E7 22 11 50 98592 874 1411 352 630 861 96 77407 49798 11845 4838 290 4.6 0 0 2000 2000 9 999999999 28 0 0 88 0.2 0 0 +2.9772E7 23 9 41 98601 816 1411 354 580 844 91 70899 48992 11204 4512 290 5.1 0 0 2500 2000 9 999999999 23 0 0 88 0.2 0 0 +2.97756E7 23 9 41 98601 683 1411 354 463 775 87 55526 43092 10436 4044 280 4.1 0 0 2500 2000 9 999999999 23 0 0 88 0.2 0 0 +2.97792E7 24 7 34 98610 487 1411 356 295 610 85 34131 30199 9810 3483 290 4.6 0 0 3000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.97828E7 23 8 38 98601 239 1411 353 106 289 57 11733 4700 6314 1934 270 2.6 0 0 3200 2000 9 999999999 21 0 0 88 0.2 0 0 +2.97864E7 20 9 49 98574 0 1195 340 0 0 0 0 0 0 0 270 3.1 0 0 3200 2000 9 999999999 23 0 0 88 0.2 0 0 +2.979E7 18 9 56 98555 0 0 331 0 0 0 0 0 0 0 280 2.1 0 0 2500 2000 9 999999999 23 0 0 88 0.2 0 0 +2.97936E7 17 9 59 98546 0 0 326 0 0 0 0 0 0 0 270 2.1 0 0 2500 2000 9 999999999 23 0 0 88 0.2 0 0 +2.97972E7 17 8 55 98546 0 0 325 0 0 0 0 0 0 0 240 2.1 0 0 2200 2000 9 999999999 21 0 0 88 0.2 0 0 +2.98008E7 17 8 55 98546 0 0 325 0 0 0 0 0 0 0 250 2.1 0 0 2200 2000 9 999999999 21 0 0 88 0.2 0 0 +2.98044E7 16 8 59 98536 0 0 321 0 0 0 0 0 0 0 240 1.5 0 0 2200 2000 9 999999999 21 0 0 88 0.2 0 0 +2.9808E7 15 8 63 98527 0 0 316 0 0 0 0 0 0 0 240 1.5 0 0 1700 2000 9 999999999 21 0 0 88 0.2 0 0 +2.98116E7 14 8 67 98517 0 0 312 0 0 0 0 0 0 0 250 1.5 0 0 1600 2000 9 999999999 21 0 0 88 0.2 0 0 +2.98152E7 13.7 8 69 98514 0 0 332 0 0 0 0 0 0 0 150 1.5 6 6 1566 2000 9 999999999 21 0 0 88 0.2 0 0 +2.98188E7 13.3 8 70 98511 0 0 330 0 0 0 0 0 0 0 344 1.5 6 6 1533 2000 9 999999999 21 0 0 88 0.2 0 0 +2.98224E7 13 8 72 98507 0 0 308 0 0 0 0 0 0 0 220 1.5 0 0 1500 2000 9 999999999 21 0 0 88 0.2 0 0 +2.9826E7 12 9 82 98498 0 0 304 0 0 0 0 0 0 0 240 1.5 0 0 1500 2000 9 999999999 24 0 0 88 0.2 0 0 +2.98296E7 11.7 9 84 98494 0 0 333 0 0 0 0 0 0 0 153 1.7 8 8 1333 2000 9 999999999 24 0 0 88 0.2 0 0 +2.98332E7 11.3 9 86 98491 0 0 331 0 0 0 0 0 0 0 261 1.9 8 8 1166 2000 9 999999999 24 0 0 88 0.2 0 0 +2.98368E7 11 9 87 98488 103 498 300 31 51 28 3441 0 3038 869 260 2.1 0 0 1000 2000 9 999999999 24 0 0 88 0.2 0 0 +2.98404E7 12 9 82 98498 370 1412 304 200 479 74 22663 18043 8461 2822 270 3.1 0 0 1000 2000 9 999999999 24 0 0 88 0.2 0 0 +2.9844E7 15 10 72 98527 593 1412 318 383 684 95 44866 37289 11215 4161 270 4.6 0 0 1400 2000 9 999999999 26 0 0 88 0.2 0 0 +2.98476E7 17 9 59 98546 758 1412 326 529 810 93 63936 46776 11288 4468 280 4.6 0 0 1900 2000 9 999999999 23 0 0 88 0.2 0 0 +2.98512E7 20 8 46 98574 854 1412 339 615 861 94 75530 50897 11545 4689 280 5.7 0 0 2100 2000 9 999999999 21 0 0 88 0.2 0 0 +2.98548E7 22 8 41 98592 873 1412 348 632 785 146 75317 52178 17503 6963 300 6.2 0 0 2400 2000 9 999999999 21 0 0 88 0.2 0 0 +2.98584E7 23 9 41 98601 815 1412 354 579 844 91 70807 48970 11197 4508 290 7.2 0 0 3000 2000 9 999999999 23 0 0 88 0.2 0 0 +2.9862E7 23 9 41 98601 683 1412 354 462 775 87 55503 43086 10435 4043 290 7.2 0 0 3200 2000 9 999999999 23 0 0 88 0.2 0 0 +2.98656E7 23 8 38 98601 487 1412 353 295 606 85 34064 29855 9889 3509 290 6.7 0 0 3200 2000 9 999999999 21 0 0 88 0.2 0 0 +2.98692E7 23 8 38 98601 240 1412 353 106 291 57 11791 4773 6330 1940 280 5.7 0 0 3500 2000 9 999999999 21 0 0 88 0.2 0 0 +2.98728E7 21 8 43 98583 0 1200 343 0 0 0 0 0 0 0 280 4.1 0 0 3500 2000 9 999999999 21 0 0 88 0.2 0 0 +2.98764E7 18 8 52 98555 0 0 330 0 0 0 0 0 0 0 270 3.6 0 0 3300 2000 9 999999999 21 0 0 88 0.2 0 0 +2.988E7 15 7 59 98527 0 0 315 0 0 0 0 0 0 0 270 4.1 0 0 3000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.98836E7 15 7 59 98527 0 0 315 0 0 0 0 0 0 0 300 4.6 0 0 3000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.98872E7 14 8 67 98517 0 0 312 0 0 0 0 0 0 0 290 4.1 0 0 3000 2000 9 999999999 21 0 0 88 0.2 0 0 +2.98908E7 14 8 67 98517 0 0 312 0 0 0 0 0 0 0 280 3.6 0 0 3000 2000 9 999999999 21 0 0 88 0.2 0 0 +2.98944E7 12 7 71 98498 0 0 302 0 0 0 0 0 0 0 280 3.6 0 0 3000 2000 9 999999999 19 0 0 88 0.2 0 0 +2.9898E7 12 8 76 98498 0 0 303 0 0 0 0 0 0 0 270 4.1 0 0 3000 2000 9 999999999 21 0 0 88 0.2 0 0 +2.99016E7 12 7 71 98498 0 0 302 0 0 0 0 0 0 0 260 4.1 0 0 2800 2000 9 999999999 19 0 0 88 0.2 0 0 +2.99052E7 12 7 71 98498 0 0 302 0 0 0 0 0 0 0 260 4.1 0 0 2800 2000 9 999999999 19 0 0 88 0.2 0 0 +2.99088E7 12 8 76 98498 0 0 303 0 0 0 0 0 0 0 270 3.1 0 0 2600 2000 9 999999999 21 0 0 88 0.2 0 0 +2.99124E7 11 8 82 98488 0 0 299 0 0 0 0 0 0 0 270 3.1 0 0 2600 2000 9 999999999 21 0 0 88 0.2 0 0 +2.9916E7 10 8 87 98478 0 0 295 0 0 0 0 0 0 0 250 2.6 0 0 2600 2000 9 999999999 21 0 0 88 0.2 0 0 +2.99196E7 10 8 87 98478 0 0 295 0 0 0 0 0 0 0 260 2.1 0 0 2800 2000 9 999999999 21 0 0 88 0.2 0 0 +2.99232E7 10 8 87 98478 100 483 295 30 51 27 3340 0 2955 845 250 1.5 0 0 2500 2000 9 999999999 21 0 0 88 0.2 0 0 +2.99268E7 11 8 82 98488 367 1412 299 198 477 74 22440 18024 8395 2795 260 2.6 0 0 1700 2000 9 999999999 21 0 0 88 0.2 0 0 +2.99304E7 15 9 67 98527 590 1412 317 381 683 95 44670 37584 11196 4148 270 3.6 0 0 2200 2000 9 999999999 23 0 0 88 0.2 0 0 +2.9934E7 16 9 63 98536 756 1412 322 526 818 88 63917 46567 10726 4252 270 4.6 0 0 2200 2000 9 999999999 23 0 0 88 0.2 0 0 +2.99376E7 18.5 9.5 56 98560 852 1412 348 601 822 104 73101 49121 12737 5153 15 5.1 3 3 2600 2000 9 999999999 25 0 0 88 0.2 0 0 +2.99412E7 21 10 49 98583 872 1412 346 629 863 96 77286 50353 11787 4809 280 5.7 0 0 3000 2000 9 999999999 26 0 0 88 0.2 0 0 +2.99448E7 23 10 44 98601 814 1412 355 578 842 91 70572 48368 11189 4506 290 5.7 0 0 3200 2000 9 999999999 26 0 0 88 0.2 0 0 +2.99484E7 24 7 34 98610 683 1412 356 464 775 88 55654 44117 10645 4116 290 6.2 0 0 3200 2000 9 999999999 19 0 0 88 0.2 0 0 +2.9952E7 24 8 36 98610 487 1412 358 295 607 85 34113 29901 9895 3511 290 6.2 0 0 3200 2000 9 999999999 21 0 0 88 0.2 0 0 +2.99556E7 23 7 36 98601 240 1412 352 107 294 57 11887 5019 6343 1945 280 4.1 0 0 3200 2000 9 999999999 19 0 0 88 0.2 0 0 +2.99592E7 21 8 43 98583 0 1206 343 0 0 0 0 0 0 0 260 2.6 0 0 2500 2000 9 999999999 21 0 0 88 0.2 0 0 +2.99628E7 17 9 59 98546 0 0 326 0 0 0 0 0 0 0 220 1 0 0 2100 2000 9 999999999 23 0 0 88 0.2 0 0 +2.99664E7 16 9 63 98536 0 0 322 0 0 0 0 0 0 0 230 1 0 0 2100 2000 9 999999999 23 0 0 88 0.2 0 0 +2.997E7 15 8 63 98527 0 0 335 0 0 0 0 0 0 0 57 0 5 5 1800 2000 9 999999999 21 0 0 88 0.2 0 0 +2.99736E7 14.3 8.3 67 98520 0 0 332 0 0 0 0 0 0 0 144 0 5 5 1600 2000 9 999999999 22 0 0 88 0.2 0 0 +2.99772E7 13.7 8.7 72 98514 0 0 333 0 0 0 0 0 0 0 253 0 6 6 1400 2000 9 999999999 23 0 0 88 0.2 0 0 +2.99808E7 13 9 77 98507 0 0 309 0 0 0 0 0 0 0 8 0 0 0 1200 2000 9 999999999 24 0 0 88 0.2 0 0 +2.99844E7 12 9 82 98498 0 0 304 0 0 0 0 0 0 0 290 0 0 0 1000 2000 9 999999999 24 0 0 88 0.2 0 0 +2.9988E7 12 9 82 98498 0 0 304 0 0 0 0 0 0 0 39 0 0 0 1000 2000 9 999999999 24 0 0 88 0.2 0 0 +2.99916E7 11 9 87 98488 0 0 300 0 0 0 0 0 0 0 242 0 0 0 1000 2000 9 999999999 24 0 0 88 0.2 0 0 +2.99952E7 11 9 87 98488 0 0 300 0 0 0 0 0 0 0 31 0 0 0 900 2000 9 999999999 24 0 0 88 0.2 0 0 +2.99988E7 11 9 87 98488 0 0 300 0 0 0 0 0 0 0 265 0 0 0 700 2000 9 999999999 24 0 0 88 0.2 0 0 +3.00024E7 10 9 93 98478 0 0 296 0 0 0 0 0 0 0 54 0 0 0 700 2000 9 999999999 24 0 0 88 0.2 0 0 +3.0006E7 10 8 87 98478 0 0 295 0 0 0 0 0 0 0 43 0 0 0 1000 2000 9 999999999 21 0 0 88 0.2 0 0 +3.00096E7 11 8 82 98488 97 468 299 29 49 26 3236 0 2873 821 120 0 0 0 1200 2000 9 999999999 21 0 0 88 0.2 0 0 +3.00132E7 13 9 77 98507 364 1412 309 195 471 74 22114 17412 8380 2784 240 1.5 0 0 2000 2000 9 999999999 24 0 0 88 0.2 0 0 +3.00168E7 15 9 67 98527 588 1412 317 379 682 95 44388 37401 11158 4129 230 2.6 0 0 2200 2000 9 999999999 23 0 0 88 0.2 0 0 +3.00204E7 19 9 52 98564 754 1412 335 525 808 93 63424 46587 11227 4438 220 2.1 0 0 2400 2000 9 999999999 23 0 0 88 0.2 0 0 +3.0024E7 20 9 49 98574 850 1412 340 611 858 94 74932 50236 11537 4683 240 1.5 0 0 2400 2000 9 999999999 23 0 0 88 0.2 0 0 +3.00276E7 22 10 46 98592 871 1412 350 628 863 96 77160 50327 11771 4802 240 1.5 0 0 2400 2000 9 999999999 26 0 0 88 0.2 0 0 +3.00312E7 23 9 41 98601 814 1412 354 578 844 91 70670 48940 11186 4502 320 1.5 0 0 2400 2000 9 999999999 23 0 0 88 0.2 0 0 +3.00348E7 23 10 44 98601 683 1412 355 462 776 86 55428 42536 10319 4003 310 2.1 0 0 2400 2000 9 999999999 26 0 0 88 0.2 0 0 +3.00384E7 23 10 44 98601 488 1412 355 295 600 87 33970 29145 10048 3563 300 2.1 0 0 2400 2000 9 999999999 26 0 0 88 0.2 0 0 +3.0042E7 23 10 44 98601 242 1412 355 107 291 57 11882 4605 6383 1959 270 2.1 0 0 2500 2000 9 999999999 26 0 0 88 0.2 0 0 +3.00456E7 21 10 49 98583 0 1213 346 0 0 0 0 0 0 0 270 1.5 0 0 2500 2000 9 999999999 26 0 0 88 0.2 0 0 +3.00492E7 17 12 72 98546 0 0 329 0 0 0 0 0 0 0 77 0 0 0 1600 2000 9 999999999 32 0 0 88 0.2 0 0 +3.00528E7 14 10 77 98517 0 0 314 0 0 0 0 0 0 0 90 2.6 0 0 1100 2000 9 999999999 26 0 0 88 0.2 0 0 +3.00564E7 13 10 82 98507 0 0 310 0 0 0 0 0 0 0 90 2.6 0 0 1100 2000 9 999999999 26 0 0 88 0.2 0 0 +3.006E7 14 10 77 98517 0 0 314 0 0 0 0 0 0 0 110 2.1 0 0 1000 2000 9 999999999 26 0 0 88 0.2 0 0 +3.00636E7 14 10 77 98517 0 0 314 0 0 0 0 0 0 0 100 3.1 0 0 1000 2000 9 999999999 26 0 0 88 0.2 0 0 +3.00672E7 14 10 77 98517 0 0 314 0 0 0 0 0 0 0 110 3.1 0 0 900 2000 9 999999999 26 0 0 88 0.2 0 0 +3.00708E7 15 9 67 98527 0 0 317 0 0 0 0 0 0 0 120 3.1 0 0 1100 2000 9 999999999 23 0 0 88 0.2 0 0 +3.00744E7 14 10 77 98517 0 0 314 0 0 0 0 0 0 0 110 3.1 0 0 1200 2000 9 999999999 26 0 0 88 0.2 0 0 +3.0078E7 12 9 82 98498 0 0 304 0 0 0 0 0 0 0 90 3.1 0 0 1000 2000 9 999999999 24 0 0 88 0.2 0 0 +3.00816E7 12 9 82 98498 0 0 304 0 0 0 0 0 0 0 100 2.6 0 0 900 2000 9 999999999 24 0 0 88 0.2 0 0 +3.00852E7 12 10 88 98498 0 0 305 0 0 0 0 0 0 0 120 2.1 0 0 800 2000 9 999999999 26 0 0 88 0.2 0 0 +3.00888E7 13 11 88 98507 0 0 311 0 0 0 0 0 0 0 120 2.1 0 0 900 2000 9 999999999 29 0 0 88 0.2 0 0 +3.00924E7 12 11 94 98498 0 0 306 0 0 0 0 0 0 0 80 2.6 0 0 900 2000 9 999999999 29 0 0 88 0.2 0 0 +3.0096E7 12 11 94 98498 94 453 306 28 61 24 3126 0 2692 777 100 2.6 0 0 600 2000 9 999999999 29 0 0 88 0.2 0 0 +3.00996E7 13 12 94 98507 361 1412 312 192 486 68 21841 15959 7725 2600 100 2.6 0 0 600 2000 9 999999999 32 0 0 88 0.2 0 0 +3.01032E7 17 11 68 98546 585 1412 328 376 678 95 43924 36243 11093 4106 130 3.1 0 0 1100 2000 9 999999999 29 0 0 88 0.2 0 0 +3.01068E7 18 11 64 98555 752 1412 333 521 808 90 63002 45289 10956 4337 140 3.1 0 0 1200 2000 9 999999999 28 0 0 88 0.2 0 0 +3.01104E7 21 9 46 98583 849 1412 345 609 857 94 74751 50191 11519 4674 203 3.3 0 0 2100 2000 9 999999999 23 0 0 88 0.2 0 0 +3.0114E7 22 10 46 98592 870 1412 350 627 863 95 77044 50302 11760 4796 296 3.4 0 0 1800 2000 9 999999999 26 0 0 88 0.2 0 0 +3.01176E7 23 11 47 98601 814 1412 356 576 840 91 70310 47729 11172 4500 140 3.6 0 0 1900 2000 9 999999999 28 0 0 88 0.2 0 0 +3.01212E7 24 9 38 98610 684 1412 359 463 776 87 55532 43115 10434 4043 170 3.1 0 0 2400 2000 9 999999999 23 0 0 88 0.2 0 0 +3.01248E7 23 10 44 98601 489 1412 355 295 601 87 34043 29211 10061 3568 110 2.6 0 0 2400 2000 9 999999999 26 0 0 88 0.2 0 0 +3.01284E7 23 10 44 98601 243 1412 355 108 293 58 11970 4712 6407 1968 130 2.1 0 0 2600 2000 9 999999999 26 0 0 88 0.2 0 0 +3.0132E7 21 10 49 98583 0 1221 346 0 0 0 0 0 0 0 110 1.5 0 0 1600 2000 9 999999999 26 0 0 88 0.2 0 0 +3.01356E7 18 11 64 98555 0 0 353 0 0 0 0 0 0 0 110 1.5 5 5 1200 2000 9 999999999 28 0 0 88 0.2 0 0 +3.01392E7 17 11 68 98546 0 0 328 0 0 0 0 0 0 0 245 0 0 0 1000 2000 9 999999999 29 0 0 88 0.2 0 0 +3.01428E7 15 10 72 98527 0 0 318 0 0 0 0 0 0 0 310 0 0 0 900 2000 0 999999999 26 0 0 88 0.2 0 0 +3.01464E7 14.7 10.7 77 98523 0 0 344 0 0 0 0 0 0 0 150 0.5 7 7 733 2000 9 999999999 28 0 0 88 0.2 0 0 +3.015E7 14.3 11.3 82 98520 0 0 348 0 0 0 0 0 0 0 8 1 8 8 566 2000 9 999999999 30 0 0 88 0.2 0 0 +3.01536E7 14 12 88 98517 0 0 316 0 0 0 0 0 0 0 90 1.5 0 0 400 2000 0 999999999 32 0 0 88 0.2 0 0 +3.01572E7 13 12 94 98507 0 0 312 0 0 0 0 0 0 0 90 2.1 0 0 250 2000 0 999999999 32 0 0 88 0.2 0 0 +3.01608E7 12 11 94 98498 0 0 306 0 0 0 0 0 0 0 163 0 0 0 100 2000 0 999999999 29 0 0 88 0.2 0 0 +3.01644E7 12 11 94 98498 0 0 306 0 0 0 0 0 0 0 55 0 0 0 0 2000 0 999999999 29 0 0 88 0.2 0 0 +3.0168E7 12 11 94 98498 0 0 306 0 0 0 0 0 0 0 338 0 0 0 0 2000 0 999999999 29 0 0 88 0.2 0 0 +3.01716E7 12 10 88 98498 0 0 305 0 0 0 0 0 0 0 210 0 0 0 0 2000 0 999999999 26 0 0 88 0.2 0 0 +3.01752E7 12 10 88 98498 0 0 305 0 0 0 0 0 0 0 21 0 0 0 0 2000 0 999999999 26 0 0 88 0.2 0 0 +3.01788E7 12 10 88 98498 0 0 305 0 0 0 0 0 0 0 80 0 0 0 0 2000 0 999999999 26 0 0 88 0.2 0 0 +3.01824E7 11 10 94 98488 91 439 301 28 61 24 3034 0 2610 753 183 0 0 0 0 2000 0 999999999 26 0 0 88 0.2 0 0 +3.0186E7 11 10 94 98488 358 1413 301 191 462 73 21541 16501 8330 2758 168 0 0 0 0 2000 0 999999999 26 0 0 88 0.2 0 0 +3.01896E7 12 10 88 98498 583 1413 305 374 527 157 42020 35197 17657 6003 141 0 0 0 0 2000 0 999999999 26 0 0 88 0.2 0 0 +3.01932E7 14 12 88 98517 750 1413 355 297 93 248 33129 7468 27792 9437 139 0 9 9 150 2000 0 999999999 32 0 0 88 0.2 0 0 +3.01968E7 18 12 68 98555 847 1413 354 553 566 213 63541 41712 24572 9206 250 2.1 5 5 400 2000 0 999999999 31 0 0 88 0.2 0 0 +3.02004E7 21 11 53 98583 869 1413 362 619 828 109 75201 49309 13278 5389 80 0 3 3 900 2000 0 999999999 28 0 0 88 0.2 0 0 +3.0204E7 22 11 50 98592 813 1413 363 572 830 94 69727 47474 11487 4622 250 2.1 2 2 1100 2000 0 999999999 28 0 0 88 0.2 0 0 +3.02076E7 24 9 38 98610 684 1413 359 463 776 87 55572 43139 10437 4044 300 2.1 0 0 1800 2000 0 999999999 23 0 0 88 0.2 0 0 +3.02112E7 24 9 38 98610 490 1413 359 296 605 86 34233 29709 10004 3551 330 1.5 0 0 2100 2000 0 999999999 23 0 0 88 0.2 0 0 +3.02148E7 23 8 38 98601 244 1413 353 109 298 58 12125 5189 6422 1973 330 2.1 0 0 2400 2000 0 999999999 21 0 0 88 0.2 0 0 +3.02184E7 20 14 68 98574 0 1229 346 0 0 0 0 0 0 0 70 1.5 0 0 600 2000 0 999999999 38 0 0 88 0.2 0 0 +3.0222E7 18 15 83 98555 0 0 337 0 0 0 0 0 0 0 281 0 0 0 500 2000 0 999999999 43 0 0 88 0.2 0 0 +3.02256E7 17 17 100 98546 0 0 335 0 0 0 0 0 0 0 215 0 0 0 400 2000 0 999999999 52 0 0 88 0.2 0 0 +3.02292E7 16 15 94 98536 0 0 328 0 0 0 0 0 0 0 40 1.5 0 0 400 2000 0 999999999 43 0 0 88 0.2 0 0 +3.02328E7 15 15 100 98527 0 0 324 0 0 0 0 0 0 0 40 0 0 0 400 2000 0 999999999 43 0 0 88 0.2 0 0 +3.02364E7 14 14 100 98517 0 0 367 0 0 0 0 0 0 0 120 2.1 10 10 200 2000 0 999999999 39 0 0 88 0.2 0 0 +3.024E7 14 14 100 98517 0 0 367 0 0 0 0 0 0 0 258 0 10 10 50 2000 0 999999999 39 0 0 88 0.2 0 0 +3.02436E7 13 13 100 98507 0 0 361 0 0 0 0 0 0 0 110 2.1 10 10 50 2000 0 999999999 35 0 0 88 0.2 0 0 +3.02472E7 13 13 100 98507 0 0 361 0 0 0 0 0 0 0 120 2.1 10 10 50 2000 0 999999999 35 0 0 88 0.2 0 0 +3.02508E7 12 12 100 98498 0 0 355 0 0 0 0 0 0 0 239 0 10 10 50 2000 0 999999999 32 0 0 88 0.2 0 0 +3.02544E7 12 12 100 98498 0 0 355 0 0 0 0 0 0 0 27 0 10 10 50 2000 0 999999999 32 0 0 88 0.2 0 0 +3.0258E7 10 10 100 98478 0 0 343 0 0 0 0 0 0 0 123 0 10 10 50 2000 0 999999999 26 0 0 88 0.2 0 0 +3.02616E7 10 10 100 98478 0 0 343 0 0 0 0 0 0 0 55 0 10 10 0 2000 0 999999999 26 0 0 88 0.2 0 0 +3.02652E7 10 10 100 98478 0 0 343 0 0 0 0 0 0 0 277 0 10 10 0 2000 0 999999999 26 0 0 88 0.2 0 0 +3.02688E7 11 11 100 98488 88 425 349 8 0 8 813 0 818 324 78 0 10 10 0 2000 0 999999999 29 0 0 88 0.2 0 0 +3.02724E7 12 12 100 98498 355 1413 355 59 0 59 5838 0 5883 2327 260 0 10 10 0 2000 0 999999999 32 0 0 88 0.2 0 0 +3.0276E7 13 13 100 98507 581 1413 361 117 0 117 11698 0 11795 4840 118 0 10 10 0 2000 0 999999999 35 0 0 88 0.2 0 0 +3.02796E7 14 14 100 98517 748 1413 367 162 0 162 16462 0 16608 7039 65 0 10 10 100 2000 0 999999999 39 0 0 88 0.2 0 0 +3.02832E7 20 16 78 98574 846 1413 376 473 322 280 53029 25816 31560 11057 206 0 7 7 800 2000 0 999999999 47 0 0 88 0.2 0 0 +3.02868E7 21 16 73 98583 868 1413 377 534 476 240 60757 35262 27527 10181 280 2.6 6 6 1100 2000 0 999999999 47 0 0 88 0.2 0 0 +3.02904E7 23 13 53 98601 813 1413 374 568 783 116 67970 46326 13978 5569 270 2.6 3 3 1600 2000 0 999999999 35 0 0 88 0.2 0 0 +3.0294E7 23 10 44 98601 684 1413 355 463 778 85 55607 42637 10287 3992 300 2.6 0 0 2100 2000 0 999999999 26 0 0 88 0.2 0 0 +3.02976E7 23 9 41 98601 491 1413 354 298 608 86 34386 29848 9982 3546 310 2.1 0 0 2200 2000 0 999999999 23 0 0 88 0.2 0 0 +3.03012E7 22 11 50 98592 245 1413 352 110 277 62 12118 4934 6830 2071 310 2.1 0 0 1600 2000 0 999999999 28 0 0 88 0.2 0 0 +3.03048E7 19 12 64 98564 0 1237 339 0 0 0 0 0 0 0 189 0 0 0 700 2000 0 999999999 31 0 0 88 0.2 0 0 +3.03084E7 17 13 77 98546 0 0 331 0 0 0 0 0 0 0 47 0 0 0 400 2000 0 999999999 35 0 0 88 0.2 0 0 +3.0312E7 16 13 82 98536 0 0 326 0 0 0 0 0 0 0 128 0 0 0 350 2000 0 999999999 35 0 0 88 0.2 0 0 +3.03156E7 15 15 100 98527 0 0 324 0 0 0 0 0 0 0 186 0 0 0 300 2000 0 999999999 43 0 0 88 0.2 0 0 +3.03192E7 15 14 94 98527 0 0 323 0 0 0 0 0 0 0 54 0 0 0 350 2000 0 999999999 39 0 0 88 0.2 0 0 +3.03228E7 15 14 94 98527 0 0 323 0 0 0 0 0 0 0 7 0 0 0 350 2000 0 999999999 39 0 0 88 0.2 0 0 +3.03264E7 14 13 94 98517 0 0 317 0 0 0 0 0 0 0 150 0 0 0 200 2000 0 999999999 35 0 0 88 0.2 0 0 +3.033E7 14 13 94 98517 0 0 317 0 0 0 0 0 0 0 80 1.5 0 0 150 2000 0 999999999 35 0 0 88 0.2 0 0 +3.03336E7 13 12 94 98507 0 0 360 0 0 0 0 0 0 0 238 0 10 10 50 2000 0 999999999 32 0 0 88 0.2 0 0 +3.03372E7 13 12 94 98507 0 0 360 0 0 0 0 0 0 0 176 0 10 10 50 2000 0 999999999 32 0 0 88 0.2 0 0 +3.03408E7 13 12 94 98507 0 0 360 0 0 0 0 0 0 0 227 0 10 10 50 2000 0 999999999 32 0 0 88 0.2 0 0 +3.03444E7 11 11 100 98488 0 0 349 0 0 0 0 0 0 0 148 0 10 10 50 2000 0 999999999 29 0 0 88 0.2 0 0 +3.0348E7 11 11 100 98488 0 0 349 0 0 0 0 0 0 0 198 0 10 10 0 2000 0 999999999 29 0 0 88 0.2 0 0 +3.03516E7 11 11 100 98488 0 0 349 0 0 0 0 0 0 0 45 0 10 10 0 2000 0 999999999 29 0 0 88 0.2 0 0 +3.03552E7 11 11 100 98488 85 411 349 8 0 8 787 0 792 313 140 0 10 10 0 2000 0 999999999 29 0 0 88 0.2 0 0 +3.03588E7 11 11 100 98488 353 1413 349 59 0 59 5790 0 5835 2305 100 1.5 10 10 0 2000 0 999999999 29 0 0 88 0.2 0 0 +3.03624E7 13 13 100 98507 578 1413 361 116 0 116 11636 0 11733 4812 60 2.1 10 10 200 2000 0 999999999 35 0 0 88 0.2 0 0 +3.0366E7 15 15 100 98527 746 1413 373 161 0 161 16368 0 16513 7005 40 2.6 10 10 400 2000 0 999999999 43 0 0 88 0.2 0 0 +3.03696E7 18 15 83 98555 845 1413 371 416 197 299 46430 16441 33514 11471 40 2.1 8 8 500 2000 0 999999999 43 0 0 88 0.2 0 0 +3.03732E7 20 16 78 98574 868 1413 376 488 344 277 54977 27192 31382 11179 90 2.6 7 7 500 2000 0 999999999 47 0 0 88 0.2 0 0 +3.03768E7 22 14 60 98592 813 1413 355 573 711 163 66768 46442 19066 7357 80 3.1 0 0 800 2000 0 999999999 38 0 0 88 0.2 0 0 +3.03804E7 22 14 60 98592 685 1413 355 460 782 80 55401 40023 9705 3787 80 3.6 0 0 900 2000 0 999999999 38 0 0 88 0.2 0 0 +3.0384E7 22 14 60 98592 492 1413 355 296 591 90 33971 27612 10357 3672 100 3.6 0 0 1000 2000 0 999999999 38 0 0 88 0.2 0 0 +3.03876E7 21 14 64 98583 247 1413 350 110 274 62 12140 4435 6877 2089 90 3.1 0 0 1100 2000 0 999999999 38 0 0 88 0.2 0 0 +3.03912E7 16 14 88 98536 0 1246 327 0 0 0 0 0 0 0 101 0 0 0 800 2000 0 999999999 39 0 0 88 0.2 0 0 +3.03948E7 16 14 88 98536 0 0 327 0 0 0 0 0 0 0 84 0 0 0 700 2000 0 999999999 39 0 0 88 0.2 0 0 +3.03984E7 16 16 100 98536 0 0 329 0 0 0 0 0 0 0 80 1.5 0 0 600 2000 0 999999999 47 0 0 88 0.2 0 0 +3.0402E7 15 15 100 98527 0 0 324 0 0 0 0 0 0 0 60 1.5 0 0 600 2000 0 999999999 43 0 0 88 0.2 0 0 +3.04056E7 15 15 100 98527 0 0 324 0 0 0 0 0 0 0 70 1.5 0 0 400 2000 0 999999999 43 0 0 88 0.2 0 0 +3.04092E7 14 14 100 98517 0 0 318 0 0 0 0 0 0 0 110 1.5 0 0 350 2000 0 999999999 39 0 0 88 0.2 0 0 +3.04128E7 14 14 100 98517 0 0 318 0 0 0 0 0 0 0 90 1.5 0 0 300 2000 0 999999999 39 0 0 88 0.2 0 0 +3.04164E7 13 13 100 98507 0 0 313 0 0 0 0 0 0 0 100 2.6 0 0 300 2000 0 999999999 35 0 0 88 0.2 0 0 +3.042E7 13 13 100 98507 0 0 313 0 0 0 0 0 0 0 90 2.1 0 0 400 2000 0 999999999 35 0 0 88 0.2 0 0 +3.04236E7 13 13 100 98507 0 0 313 0 0 0 0 0 0 0 80 2.1 0 0 400 2000 0 999999999 35 0 0 88 0.2 0 0 +3.04272E7 11 11 100 98488 0 0 302 0 0 0 0 0 0 0 90 2.1 0 0 400 2000 0 999999999 29 0 0 88 0.2 0 0 +3.04308E7 13 13 100 98507 0 0 313 0 0 0 0 0 0 0 90 1.5 0 0 400 2000 0 999999999 35 0 0 88 0.2 0 0 +3.04344E7 13 13 100 98507 0 0 313 0 0 0 0 0 0 0 50 1.5 0 0 400 2000 0 999999999 35 0 0 88 0.2 0 0 +3.0438E7 12 12 100 98498 0 0 307 0 0 0 0 0 0 0 90 1.5 0 0 400 2000 0 999999999 32 0 0 88 0.2 0 0 +3.04416E7 13 13 100 98507 82 398 313 25 53 22 2748 0 2412 696 80 2.1 0 0 300 2000 0 999999999 35 0 0 88 0.2 0 0 +3.04452E7 13 13 100 98507 350 1413 326 182 454 69 20557 14313 7823 2605 90 2.1 3 3 400 2000 0 999999999 35 0 0 88 0.2 0 0 +3.04488E7 15 15 100 98527 576 1413 338 361 637 101 41788 32839 11702 4293 90 2.1 3 3 600 2000 0 999999999 43 0 0 88 0.2 0 0 +3.04524E7 17 15 88 98546 745 1413 347 504 787 89 60854 41593 10781 4271 70 3.6 3 3 700 2000 0 999999999 43 0 0 88 0.2 0 0 +3.0456E7 19 14 73 98564 844 1413 356 592 823 100 71999 46200 12237 4960 70 3.6 3 3 1000 2000 0 999999999 38 0 0 88 0.2 0 0 +3.04596E7 20 14 68 98574 867 1413 360 613 830 103 74654 46966 12555 5115 100 2.6 3 3 1000 2000 0 999999999 38 0 0 88 0.2 0 0 +3.04632E7 20 14 68 98574 814 1413 360 566 812 98 68568 45155 11892 4785 100 3.6 3 3 1000 2000 0 999999999 38 0 0 88 0.2 0 0 +3.04668E7 21 14 64 98583 686 1413 350 461 783 80 55482 40064 9714 3791 80 3.1 0 0 1000 2000 0 999999999 38 0 0 88 0.2 0 0 +3.04704E7 21 14 64 98583 493 1413 350 297 592 90 34093 27718 10379 3682 70 4.1 0 0 900 2000 0 999999999 38 0 0 88 0.2 0 0 +3.0474E7 21 14 64 98583 249 1413 350 111 277 63 12264 4581 6918 2103 80 3.1 0 0 1200 2000 0 999999999 38 0 0 88 0.2 0 0 +3.04776E7 20 14 68 98574 0 1256 346 0 0 0 0 0 0 0 70 2.1 0 0 1300 2000 0 999999999 38 0 0 88 0.2 0 0 +3.04812E7 19 15 78 98564 0 0 342 0 0 0 0 0 0 0 90 3.1 0 0 1300 2000 0 999999999 42 0 0 88 0.2 0 0 +3.04848E7 19 15 78 98564 0 0 357 0 0 0 0 0 0 0 70 2.1 3 3 1300 2000 0 999999999 42 0 0 88 0.2 0 0 +3.04884E7 17 15 88 98546 0 0 347 0 0 0 0 0 0 0 50 1.5 3 3 800 2000 0 999999999 43 0 0 88 0.2 0 0 +3.0492E7 17 15 88 98546 0 0 347 0 0 0 0 0 0 0 312 0 3 3 800 2000 0 999999999 43 0 0 88 0.2 0 0 +3.04956E7 16 15 94 98536 0 0 342 0 0 0 0 0 0 0 35 0 3 3 700 2000 0 999999999 43 0 0 88 0.2 0 0 +3.04992E7 15 14 94 98527 0 0 336 0 0 0 0 0 0 0 103 0 3 3 600 2000 0 999999999 39 0 0 88 0.2 0 0 +3.05028E7 15 14 94 98527 0 0 342 0 0 0 0 0 0 0 221 0 5 5 500 2000 0 999999999 39 0 0 88 0.2 0 0 +3.05064E7 14 14 100 98517 0 0 337 0 0 0 0 0 0 0 330 2.1 5 5 300 2000 0 999999999 39 0 0 88 0.2 0 0 +3.051E7 14 13 94 98517 0 0 336 0 0 0 0 0 0 0 305 0 5 5 300 3048 0 999999999 35 0 0 88 0.2 0 0 +3.05136E7 14 13 94 98517 0 0 336 0 0 0 0 0 0 0 40 2.1 5 5 400 3048 0 999999999 35 0 0 88 0.2 0 0 +3.05172E7 14 13 94 98517 0 0 336 0 0 0 0 0 0 0 60 2.1 5 5 500 3048 0 999999999 35 0 0 88 0.2 0 0 +3.05208E7 14 13 94 98517 0 0 336 0 0 0 0 0 0 0 90 2.6 5 5 500 3048 0 999999999 35 0 0 88 0.2 0 0 +3.05244E7 13 13 100 98507 0 0 331 0 0 0 0 0 0 0 100 2.1 5 5 500 3048 0 999999999 35 0 0 88 0.2 0 0 +3.0528E7 14 13 94 98517 80 385 336 23 27 21 2479 0 2316 670 179 0 5 5 400 3048 0 999999999 35 0 0 88 0.2 0 0 +3.05316E7 13 13 100 98507 348 1414 361 57 0 57 5645 0 5689 2251 185 0 10 10 0 3048 0 999999999 35 0 0 88 0.2 0 0 +3.05352E7 13 13 100 98507 574 1414 361 115 0 115 11521 0 11617 4760 300 3.1 10 10 0 3048 0 999999999 35 0 0 88 0.2 0 0 +3.05388E7 15 14 94 98527 743 1414 336 504 597 190 57336 41758 21699 7881 310 3.1 3 3 800 3048 0 999999999 39 0 0 88 0.2 0 0 +3.05424E7 16 14 88 98536 843 1414 341 591 822 100 71876 46168 12239 4959 320 2.6 3 3 1000 3048 0 999999999 39 0 0 88 0.2 0 0 +3.0546E7 17 14 82 98546 867 1414 346 613 830 103 74603 46954 12560 5117 300 3.6 3 3 1000 3048 0 999999999 39 0 0 88 0.2 0 0 +3.05496E7 17 14 82 98546 814 1414 332 573 837 91 69885 45673 11083 4473 310 3.1 0 0 1000 2000 0 999999999 39 0 0 88 0.2 0 0 +3.05532E7 17 15 88 98546 687 1414 333 461 786 78 55547 39300 9467 3702 300 3.1 0 0 1100 2000 0 999999999 43 0 0 88 0.2 0 0 +3.05568E7 18 15 83 98555 495 1414 337 297 587 92 34092 27288 10550 3739 310 3.1 0 0 1100 2000 0 999999999 43 0 0 88 0.2 0 0 +3.05604E7 17 15 88 98546 250 1414 333 112 278 63 12362 4494 6965 2120 310 3.1 0 0 1000 2000 0 999999999 43 0 0 88 0.2 0 0 +3.0564E7 17 15 88 98546 0 1266 333 0 0 0 0 0 0 0 310 3.1 0 0 900 2000 0 999999999 43 0 0 88 0.2 0 0 +3.05676E7 14 14 100 98517 0 0 318 0 0 0 0 0 0 0 290 2.6 0 0 600 2000 0 999999999 39 0 0 88 0.2 0 0 +3.05712E7 14 14 100 98517 0 0 318 0 0 0 0 0 0 0 300 3.1 0 0 600 2000 0 999999999 39 0 0 88 0.2 0 0 +3.05748E7 14 14 100 98517 0 0 318 0 0 0 0 0 0 0 320 3.1 0 0 800 2000 0 999999999 39 0 0 88 0.2 0 0 +3.05784E7 14 14 100 98517 0 0 318 0 0 0 0 0 0 0 320 3.6 0 0 800 2000 0 999999999 39 0 0 88 0.2 0 0 +3.0582E7 14 14 100 98517 0 0 318 0 0 0 0 0 0 0 310 2.6 0 0 800 2000 0 999999999 39 0 0 88 0.2 0 0 +3.05856E7 13 13 100 98507 0 0 313 0 0 0 0 0 0 0 310 3.1 0 0 800 2000 0 999999999 35 0 0 88 0.2 0 0 +3.05892E7 13 13 100 98507 0 0 313 0 0 0 0 0 0 0 300 2.1 0 0 600 2000 0 999999999 35 0 0 88 0.2 0 0 +3.05928E7 13 13 100 98507 0 0 313 0 0 0 0 0 0 0 300 2.1 0 0 600 2000 0 999999999 35 0 0 88 0.2 0 0 +3.05964E7 13 13 100 98507 0 0 313 0 0 0 0 0 0 0 320 2.6 0 0 600 2000 0 999999999 35 0 0 88 0.2 0 0 +3.06E7 13 13 100 98507 0 0 313 0 0 0 0 0 0 0 310 3.1 0 0 600 2000 0 999999999 35 0 0 88 0.2 0 0 +3.06036E7 13 13 100 98507 0 0 313 0 0 0 0 0 0 0 350 2.6 0 0 600 2000 0 999999999 35 0 0 88 0.2 0 0 +3.06072E7 13 13 100 98507 0 0 361 0 0 0 0 0 0 0 40 1.5 10 10 800 2000 0 999999999 35 0 0 88 0.2 0 0 +3.06108E7 13 13 100 98507 0 0 313 0 0 0 0 0 0 0 40 1.5 0 0 800 2000 0 999999999 35 0 0 88 0.2 0 0 +3.06144E7 13 13 100 98507 77 373 313 23 50 21 2577 0 2283 658 40 2.1 0 0 500 2000 0 999999999 35 0 0 88 0.2 0 0 +3.0618E7 13 13 100 98507 346 1414 313 181 466 66 20459 14069 7558 2521 70 2.1 0 0 500 2000 0 999999999 35 0 0 88 0.2 0 0 +3.06216E7 13 13 100 98507 572 1414 313 364 666 93 42375 34291 10927 4028 50 2.1 0 0 600 2000 0 999999999 35 0 0 88 0.2 0 0 +3.06252E7 14 14 100 98517 742 1414 318 509 809 84 61725 42726 10220 4052 80 2.1 0 0 700 2000 0 999999999 39 0 0 88 0.2 0 0 +3.06288E7 14 14 100 98517 842 1414 318 598 846 93 73106 46672 11439 4646 90 3.1 0 0 800 2000 0 999999999 39 0 0 88 0.2 0 0 +3.06324E7 15 15 100 98527 867 1414 324 619 857 93 75924 46613 11439 4679 130 2.6 0 0 800 2000 0 999999999 43 0 0 88 0.2 0 0 +3.0636E7 15 14 94 98527 814 1414 323 573 633 208 65561 45591 23929 8865 130 3.1 0 0 800 2000 0 999999999 39 0 0 88 0.2 0 0 +3.06396E7 15 14 94 98527 688 1414 372 179 7 176 20294 484 19996 7141 100 2.1 10 10 800 2000 0 999999999 39 0 0 88 0.2 0 0 +3.06432E7 15 14 94 98527 496 1414 372 116 0 116 11535 0 11629 4467 50 1.5 10 10 800 2000 0 999999999 39 0 0 88 0.2 0 0 +3.06468E7 15 14 94 98527 252 1414 372 44 0 44 4300 0 4332 1639 40 2.1 10 10 800 2000 0 999999999 39 0 0 88 0.2 0 0 +3.06504E7 16 14 88 98536 0 1277 367 0 0 0 0 0 0 0 110 2.1 9 9 800 2000 0 999999999 39 0 0 88 0.2 0 0 +3.0654E7 15 14 94 98527 0 0 372 0 0 0 0 0 0 0 130 2 10 10 800 2000 0 999999999 39 0 0 88 0.2 0 0 +3.06576E7 16 14 88 98536 0 0 367 0 0 0 0 0 0 0 150 2.6 9 9 700 2000 0 999999999 39 0 0 88 0.2 0 0 +3.06612E7 15 14 94 98527 0 0 372 0 0 0 0 0 0 0 150 2.6 10 10 700 2000 0 999999999 39 0 0 88 0.2 0 0 +3.06648E7 15 14 94 98527 0 0 372 0 0 0 0 0 0 0 110 1.5 10 10 650 2000 0 999999999 39 0 0 88 0.2 0 0 +3.06684E7 15 14 94 98527 0 0 372 0 0 0 0 0 0 0 64 0 10 10 600 2000 0 999999999 39 0 0 88 0.2 0 0 +3.0672E7 15 14 94 98527 0 0 372 0 0 0 0 0 0 0 70 2.6 10 10 700 2000 0 999999999 39 0 0 88 0.2 0 0 +3.06756E7 14 13 94 98517 0 0 366 0 0 0 0 0 0 0 299 0 10 10 700 2000 0 999999999 35 0 0 88 0.2 0 0 +3.06792E7 13 12 94 98507 0 0 360 0 0 0 0 0 0 0 181 0 10 10 400 2000 0 999999999 32 0 0 88 0.2 0 0 +3.06828E7 14 13 94 98517 0 0 366 0 0 0 0 0 0 0 172 0 10 10 350 2000 0 999999999 35 0 0 88 0.2 0 0 +3.06864E7 14 13 94 98517 0 0 366 0 0 0 0 0 0 0 43 0 10 10 350 2000 0 999999999 35 0 0 88 0.2 0 0 +3.069E7 14 13 94 98517 0 0 366 0 0 0 0 0 0 0 275 0 10 10 350 2000 0 999999999 35 0 0 88 0.2 0 0 +3.06936E7 14 13 94 98517 0 0 366 0 0 0 0 0 0 0 50 0 10 10 350 2000 0 999999999 35 0 0 88 0.2 0 0 +3.06972E7 14 13 94 98517 0 0 366 0 0 0 0 0 0 0 284 0 10 10 500 2000 0 999999999 35 0 0 88 0.2 0 0 +3.07008E7 14 13 94 98517 75 361 317 23 49 20 2496 0 2220 640 279 0 0 0 700 2000 0 999999999 35 0 0 88 0.2 0 0 +3.07044E7 14 13 94 98517 344 1414 317 179 463 66 20267 13849 7533 2509 350 1.5 0 0 700 2000 0 999999999 35 0 0 88 0.2 0 0 +3.0708E7 15 14 94 98527 571 1414 323 361 663 93 42086 33585 10909 4021 350 2.6 0 0 700 2000 0 999999999 39 0 0 88 0.2 0 0 +3.07116E7 16 14 88 98536 741 1414 327 508 616 185 57915 42658 21181 7722 20 3.1 0 0 700 2000 0 999999999 39 0 0 88 0.2 0 0 +3.07152E7 17 15 88 98546 842 1414 373 342 92 287 38225 7533 32306 11179 50 3.1 9 9 1000 2000 0 999999999 43 0 0 88 0.2 0 0 +3.07188E7 17 15 88 98546 867 1414 373 355 94 297 39729 7761 33490 11653 30 2.6 9 9 1000 2000 0 999999999 43 0 0 88 0.2 0 0 +3.07224E7 17 15 88 98546 815 1414 373 328 86 279 36636 7032 31271 10731 350 2.1 9 9 900 2000 0 999999999 43 0 0 88 0.2 0 0 +3.0726E7 17 14 82 98546 689 1414 364 331 221 223 36826 16872 24962 8363 10 2.6 8 8 1000 2000 0 999999999 39 0 0 88 0.2 0 0 +3.07296E7 17 15 88 98546 498 1414 373 172 68 148 18967 4103 16390 5262 10 3.1 9 9 900 2000 0 999999999 43 0 0 88 0.2 0 0 +3.07332E7 17 14 82 98546 254 1414 364 82 71 70 9010 1452 7643 2274 30 2.1 8 8 1200 2000 0 999999999 39 0 0 88 0.2 0 0 +3.07368E7 16 14 88 98536 0 1289 367 0 0 0 0 0 0 0 310 1.5 9 9 1100 2000 0 999999999 39 0 0 88 0.2 0 0 +3.07404E7 15 15 100 98527 0 0 373 0 0 0 0 0 0 0 270 1.5 10 10 1000 2000 0 999999999 43 0 0 88 0.2 0 0 +3.0744E7 14.5 14 97 98522 0 0 370 0 0 0 0 0 0 0 113 1.8 10 10 750 2000 9 999999999 39 0 0 88 0.2 0 0 +3.07476E7 14 13 94 98517 0 0 366 0 0 0 0 0 0 0 250 2.1 10 10 500 2000 0 999999999 35 0 0 88 0.2 0 0 +3.07512E7 14 14 100 98517 0 0 367 0 0 0 0 0 0 0 250 2.1 10 10 400 2000 0 999999999 39 0 0 88 0.2 0 0 +3.07548E7 14 14 100 98517 0 0 367 0 0 0 0 0 0 0 260 2.1 10 10 250 2000 0 999999999 39 0 0 88 0.2 0 0 +3.07584E7 14 14 100 98517 0 0 367 0 0 0 0 0 0 0 260 2.6 10 10 200 2000 0 999999999 39 0 0 88 0.2 0 0 +3.0762E7 13 13 100 98507 0 0 361 0 0 0 0 0 0 0 280 3.1 10 10 200 2000 0 999999999 35 0 0 88 0.2 0 0 +3.07656E7 13 13 100 98507 0 0 361 0 0 0 0 0 0 0 270 2.1 10 10 200 2000 0 999999999 35 0 0 88 0.2 0 0 +3.07692E7 13 13 100 98507 0 0 361 0 0 0 0 0 0 0 270 2.6 10 10 250 2000 0 999999999 35 0 0 88 0.2 0 0 +3.07728E7 13 13 100 98507 0 0 361 0 0 0 0 0 0 0 270 2.1 10 10 300 2000 0 999999999 35 0 0 88 0.2 0 0 +3.07764E7 13 13 100 98507 0 0 361 0 0 0 0 0 0 0 290 2.1 10 10 400 2000 0 999999999 35 0 0 88 0.2 0 0 +3.078E7 13 13 100 98507 0 0 313 0 0 0 0 0 0 0 290 3.1 0 0 700 2000 9 999999999 35 0 0 88 0.2 0 0 +3.07836E7 13 13 100 98507 0 0 313 0 0 0 0 0 0 0 270 3.1 0 0 900 2000 9 999999999 35 0 0 88 0.2 0 0 +3.07872E7 13 13 100 98507 72 350 361 7 0 7 666 0 670 266 280 3.6 10 10 1100 2000 9 999999999 35 0 0 88 0.2 0 0 +3.07908E7 13 13 100 98507 341 1414 361 56 0 56 5491 0 5533 2188 280 3.6 10 10 1000 2000 9 999999999 35 0 0 88 0.2 0 0 +3.07944E7 13 13 100 98507 569 1414 326 356 480 162 39665 31678 18187 6061 270 3.1 3 3 1000 2000 9 999999999 35 0 0 88 0.2 0 0 +3.0798E7 14 14 100 98517 739 1414 318 507 809 84 61459 42626 10196 4039 300 4.1 0 0 1400 2000 9 999999999 39 0 0 88 0.2 0 0 +3.08016E7 14 13 94 98517 841 1414 331 591 823 100 71822 46834 12222 4947 280 4.6 3 3 1500 2000 9 999999999 35 0 0 88 0.2 0 0 +3.08052E7 15 13 88 98527 867 1414 335 614 832 103 74768 47692 12570 5117 280 4.6 3 3 1500 2000 9 999999999 35 0 0 88 0.2 0 0 +3.08088E7 16 13 82 98536 816 1414 340 568 814 98 68957 45953 11930 4800 270 4.6 3 3 1300 2000 9 999999999 35 0 0 88 0.2 0 0 +3.08124E7 17 13 77 98546 690 1414 345 459 757 89 54964 40557 10697 4156 290 4.6 3 3 1500 2000 9 999999999 35 0 0 88 0.2 0 0 +3.0816E7 17 13 77 98546 500 1414 345 299 579 94 34265 28254 10810 3825 280 4.6 3 3 1500 2000 9 999999999 35 0 0 88 0.2 0 0 +3.08196E7 17 13 77 98546 257 1414 345 115 278 65 12709 5374 7166 2182 270 4.1 3 3 1700 2000 9 999999999 35 0 0 88 0.2 0 0 +3.08232E7 15 13 88 98527 0 1300 335 0 0 0 0 0 0 0 250 3.1 3 3 1200 2000 9 999999999 35 0 0 88 0.2 0 0 +3.08268E7 14 13 94 98517 0 0 331 0 0 0 0 0 0 0 250 3.1 3 3 1200 2000 9 999999999 35 0 0 88 0.2 0 0 +3.08304E7 13 12 94 98507 0 0 312 0 0 0 0 0 0 0 240 2.6 0 0 1100 2000 9 999999999 32 0 0 88 0.2 0 0 +3.0834E7 12 11 94 98498 0 0 306 0 0 0 0 0 0 0 260 2.6 0 0 1000 2000 9 999999999 29 0 0 88 0.2 0 0 +3.08376E7 11 11 100 98488 0 0 302 0 0 0 0 0 0 0 250 2.6 0 0 700 2000 9 999999999 29 0 0 88 0.2 0 0 +3.08412E7 11 11 100 98488 0 0 302 0 0 0 0 0 0 0 260 1.5 0 0 400 2000 0 999999999 29 0 0 88 0.2 0 0 +3.08448E7 10 10 100 98478 0 0 297 0 0 0 0 0 0 0 270 2.1 0 0 300 2000 0 999999999 26 0 0 88 0.2 0 0 +3.08484E7 11 10 94 98488 0 0 301 0 0 0 0 0 0 0 280 2.6 0 0 500 2000 0 999999999 26 0 0 88 0.2 0 0 +3.0852E7 11 10 94 98488 0 0 301 0 0 0 0 0 0 0 280 2.6 0 0 500 2000 0 999999999 26 0 0 88 0.2 0 0 +3.08556E7 10 10 100 98478 0 0 297 0 0 0 0 0 0 0 260 1.5 0 0 500 2000 0 999999999 26 0 0 88 0.2 0 0 +3.08592E7 9 9 100 98468 0 0 292 0 0 0 0 0 0 0 240 2.1 0 0 500 2000 0 999999999 24 0 0 88 0.2 0 0 +3.08628E7 9 9 100 98468 0 0 292 0 0 0 0 0 0 0 250 2.1 0 0 150 2000 0 999999999 24 0 0 88 0.2 0 0 +3.08664E7 8 8 100 98458 0 0 331 0 0 0 0 0 0 0 260 2.1 10 10 50 2000 0 999999999 21 0 0 88 0.2 0 0 +3.087E7 8.5 8 97 98463 0 0 333 0 0 0 0 0 0 0 146 2.6 10 10 25 2000 9 999999999 21 0 0 88 0.2 0 0 +3.08736E7 9 8 93 98468 70 339 335 9 0 9 873 0 879 336 270 3.1 10 10 0 2000 0 999999999 21 0 0 88 0.2 0 0 +3.08772E7 9 8 93 98468 340 1414 335 75 0 75 7381 0 7437 2732 270 2.6 10 10 0 2000 0 999999999 21 0 0 88 0.2 0 0 +3.08808E7 10 9 93 98478 568 1414 341 153 9 149 17157 584 16830 5716 270 2.6 10 10 100 2000 0 999999999 24 0 0 88 0.2 0 0 +3.08844E7 11 9 87 98488 738 1414 337 306 113 247 34177 9380 27708 9314 270 3.1 9 9 400 2000 0 999999999 24 0 0 88 0.2 0 0 +3.0888E7 14 11 82 98517 841 1414 346 429 241 285 48131 20480 32206 11130 280 3.6 8 8 1200 2000 0 999999999 29 0 0 88 0.2 0 0 +3.08916E7 15 11 77 98527 867 1414 345 502 381 269 56883 31135 30587 10951 310 3.6 7 7 1300 2000 0 999999999 29 0 0 88 0.2 0 0 +3.08952E7 16.5 10.5 68 98541 817 1414 345 529 616 173 61563 42643 20255 7740 158 4.3 5 5 1700 2000 9 999999999 27 0 0 88 0.2 0 0 +3.08988E7 18 10 59 98555 692 1414 332 469 742 106 55513 43366 12544 4812 300 5.1 0 0 2100 2000 0 999999999 26 0 0 88 0.2 0 0 +3.09024E7 19 9 52 98564 502 1414 335 306 617 87 35450 30773 10138 3617 310 5.1 0 0 2500 2000 0 999999999 23 0 0 88 0.2 0 0 +3.0906E7 18 10 59 98555 259 1414 332 119 312 62 13199 6311 6878 2122 300 4.1 0 0 2200 2000 0 999999999 26 0 0 88 0.2 0 0 +3.09096E7 16 10 68 98536 0 1313 323 0 0 0 0 0 0 0 280 2.6 0 0 2200 2000 0 999999999 26 0 0 88 0.2 0 0 +3.09132E7 14 11 82 98517 0 0 315 0 0 0 0 0 0 0 260 2.1 0 0 1800 2000 0 999999999 29 0 0 88 0.2 0 0 +3.09168E7 13 11 88 98507 0 0 349 0 0 0 0 0 0 0 87 2.3 9 9 1250 2000 9 999999999 29 0 0 88 0.2 0 0 +3.09204E7 12 11 94 98498 0 0 306 0 0 0 0 0 0 0 280 2.6 0 0 700 2000 0 999999999 29 0 0 88 0.2 0 0 +3.0924E7 11 11 100 98488 0 0 302 0 0 0 0 0 0 0 270 2.1 0 0 600 2000 0 999999999 29 0 0 88 0.2 0 0 +3.09276E7 11 11 100 98488 0 0 302 0 0 0 0 0 0 0 260 2.1 0 0 600 2000 0 999999999 29 0 0 88 0.2 0 0 +3.09312E7 10 10 100 98478 0 0 297 0 0 0 0 0 0 0 260 1.5 0 0 600 2000 0 999999999 26 0 0 88 0.2 0 0 +3.09348E7 9 9 100 98468 0 0 292 0 0 0 0 0 0 0 250 1.5 0 0 400 2000 0 999999999 24 0 0 88 0.2 0 0 +3.09384E7 8 8 100 98458 0 0 287 0 0 0 0 0 0 0 260 1.5 0 0 400 2000 0 999999999 21 0 0 88 0.2 0 0 +3.0942E7 8 8 100 98458 0 0 287 0 0 0 0 0 0 0 260 1.5 0 0 400 2000 0 999999999 21 0 0 88 0.2 0 0 +3.09456E7 7 7 100 98448 0 0 282 0 0 0 0 0 0 0 260 2.1 0 0 400 2000 0 999999999 19 0 0 88 0.2 0 0 +3.09492E7 6 6 100 98438 0 0 289 0 0 0 0 0 0 0 270 2.6 3 3 400 2000 0 999999999 18 0 0 88 0.2 0 0 +3.09528E7 7 7 100 98448 0 0 282 0 0 0 0 0 0 0 260 2.6 0 0 400 2000 0 999999999 19 0 0 88 0.2 0 0 +3.09564E7 6 6 100 98438 0 0 277 0 0 0 0 0 0 0 250 2.1 0 0 400 2000 0 999999999 18 0 0 88 0.2 0 0 +3.096E7 6 6 100 98438 68 328 277 21 19 20 2301 0 2209 623 250 2.6 0 0 400 2000 0 999999999 18 0 0 88 0.2 0 0 +3.09636E7 7 7 100 98448 338 1414 282 177 347 94 19487 14772 10392 3173 250 2.6 0 0 500 2000 0 999999999 19 0 0 88 0.2 0 0 +3.09672E7 9.7 6.7 82 98474 566 1414 321 259 218 172 28839 15638 19203 6257 69 3.1 8 8 900 2000 9 999999999 19 0 0 88 0.2 0 0 +3.09708E7 12.3 6.3 67 98500 738 1414 321 473 571 175 54356 41263 20213 7405 204 3.6 5 5 1300 2000 9 999999999 18 0 0 88 0.2 0 0 +3.09744E7 15 6 55 98527 841 1414 314 605 793 133 72284 52114 15974 6332 280 4.1 0 0 1700 2000 0 999999999 17 0 0 88 0.2 0 0 +3.0978E7 17 5 45 98546 868 1414 322 631 786 148 75086 53562 17730 7021 300 4.1 0 0 2000 2000 0 999999999 16 0 0 88 0.2 0 0 +3.09816E7 19 4 37 98564 818 1414 330 587 779 136 69772 52147 16198 6357 310 6.2 0 0 2600 2000 0 999999999 14 0 0 88 0.2 0 0 +3.09852E7 20 2 30 98574 693 1414 332 477 788 90 57377 46870 10880 4209 310 6.2 0 0 2800 2000 0 999999999 12 0 0 88 0.2 0 0 +3.09888E7 19 1 30 98564 504 1414 326 313 621 91 36185 33748 10614 3759 320 5.1 0 0 2800 2000 0 999999999 10 0 0 88 0.2 0 0 +3.09924E7 19 2 32 98564 261 1414 327 123 332 61 13668 7936 6846 2116 320 4.6 0 0 3000 2000 0 999999999 12 0 0 88 0.2 0 0 +3.0996E7 18 2 34 98555 0 1326 323 0 0 0 0 0 0 0 310 2.6 0 0 3000 2000 0 999999999 12 0 0 88 0.2 0 0 +3.09996E7 16 3 42 98536 0 0 315 0 0 0 0 0 0 0 300 2.6 0 0 2500 2000 0 999999999 13 0 0 88 0.2 0 0 +3.10032E7 14 4 51 98517 0 0 308 0 0 0 0 0 0 0 290 1.5 0 0 1800 2000 0 999999999 14 0 0 88 0.2 0 0 +3.10068E7 13 6 62 98507 0 0 305 0 0 0 0 0 0 0 260 2.1 0 0 1500 2000 0 999999999 17 0 0 88 0.2 0 0 +3.10104E7 12 5 62 98498 0 0 300 0 0 0 0 0 0 0 220 1.5 0 0 1500 2000 0 999999999 16 0 0 88 0.2 0 0 +3.1014E7 11 5 66 98488 0 0 296 0 0 0 0 0 0 0 259 0 0 0 1600 2000 0 999999999 16 0 0 88 0.2 0 0 +3.10176E7 9 5 76 98468 0 0 288 0 0 0 0 0 0 0 270 1.5 0 0 1000 2000 0 999999999 16 0 0 88 0.2 0 0 +3.10212E7 9 5 76 98468 0 0 288 0 0 0 0 0 0 0 240 0 0 0 900 2000 0 999999999 16 0 0 88 0.2 0 0 +3.10248E7 8 5 81 98458 0 0 284 0 0 0 0 0 0 0 260 2.1 0 0 900 2000 0 999999999 16 0 0 88 0.2 0 0 +3.10284E7 8 5 81 98458 0 0 284 0 0 0 0 0 0 0 250 2.1 0 0 700 2000 0 999999999 16 0 0 88 0.2 0 0 +3.1032E7 8 5 81 98458 0 0 284 0 0 0 0 0 0 0 240 1.5 0 0 700 2000 0 999999999 16 0 0 88 0.2 0 0 +3.10356E7 7 4 81 98448 0 0 279 0 0 0 0 0 0 0 240 1.5 0 0 700 2000 0 999999999 14 0 0 88 0.2 0 0 +3.10392E7 6 4 87 98438 0 0 275 0 0 0 0 0 0 0 22 0 0 0 600 2000 9 999999999 14 0 0 88 0.2 0 0 +3.10428E7 6 4 87 98438 0 0 287 0 0 0 0 0 0 0 178 0 3 3 700 2000 9 999999999 14 0 0 88 0.2 0 0 +3.10464E7 5 3 87 98428 66 318 282 20 6 20 2213 0 2188 614 71 0 3 3 600 2000 9 999999999 13 0 0 88 0.2 0 0 +3.105E7 8.5 5.5 81 98463 336 1415 314 129 148 94 14258 6400 10421 3170 102 1.5 8 8 800 2000 9 999999999 17 0 0 88 0.2 0 0 +3.10536E7 12 8 76 98498 565 1415 316 356 581 124 40641 35308 14164 4990 270 3.1 3 3 1000 2000 9 999999999 21 0 0 88 0.2 0 0 +3.10572E7 13 8 72 98507 737 1415 321 504 780 97 60575 45809 11740 4600 260 2.1 3 3 1200 2000 9 999999999 21 0 0 88 0.2 0 0 +3.10608E7 18 3 37 98555 841 1415 324 608 782 143 72331 53428 17060 6713 310 4.1 0 0 2200 2000 9 999999999 13 0 0 88 0.2 0 0 +3.10644E7 18 3 37 98555 868 1415 324 634 786 151 75366 54429 17993 7111 320 5.1 0 0 2500 2000 9 999999999 13 0 0 88 0.2 0 0 +3.1068E7 18.5 1.5 32 98560 819 1415 325 590 779 138 70141 53170 16512 6466 273 4.3 0 0 3000 2000 9 999999999 11 0 0 88 0.2 0 0 +3.10716E7 19 0 28 98564 695 1415 325 480 791 91 57753 47666 10984 4247 320 3.6 0 0 3500 2000 9 999999999 9 0 0 88 0.2 0 0 +3.10752E7 19 0 28 98564 506 1415 325 315 622 92 36454 34208 10725 3797 300 4.1 0 0 3500 2000 9 999999999 9 0 0 88 0.2 0 0 +3.10788E7 19 1 30 98564 264 1415 326 125 284 72 13721 8278 7916 2355 310 3.6 0 0 3500 2000 9 999999999 10 0 0 88 0.2 0 0 +3.10824E7 17 1 34 98546 0 1339 317 0 0 0 0 0 0 0 310 2.6 0 0 3100 2000 9 999999999 11 0 0 88 0.2 0 0 +3.1086E7 15 2 41 98527 0 0 310 0 0 0 0 0 0 0 320 1.5 0 0 2500 2000 9 999999999 12 0 0 88 0.2 0 0 +3.10896E7 14 3 47 98517 0 0 307 0 0 0 0 0 0 0 290 1.5 0 0 2200 2000 9 999999999 13 0 0 88 0.2 0 0 +3.10932E7 12 4 58 98498 0 0 315 0 0 0 0 0 0 0 83 0 4 4 1600 2000 9 999999999 14 0 0 88 0.2 0 0 +3.10968E7 12 3 54 98498 0 0 311 0 0 0 0 0 0 0 340 2.1 3 3 1200 2000 9 999999999 13 0 0 88 0.2 0 0 +3.11004E7 12 2 50 98498 0 0 307 0 0 0 0 0 0 0 40 2.1 2 2 1000 2000 9 999999999 12 0 0 88 0.2 0 0 +3.1104E7 10 4 66 98478 0 0 291 0 0 0 0 0 0 0 344 0 0 0 1000 2000 9 999999999 14 0 0 88 0.2 0 0 +3.11076E7 9 4 71 98468 0 0 287 0 0 0 0 0 0 0 228 0 0 0 900 2000 9 999999999 14 0 0 88 0.2 0 0 +3.11112E7 10 4 66 98478 0 0 291 0 0 0 0 0 0 0 321 0 0 0 1200 2000 9 999999999 14 0 0 88 0.2 0 0 +3.11148E7 10 3 62 98478 0 0 307 0 0 0 0 0 0 0 208 0 5 5 1200 3048 9 999999999 13 0 0 88 0.2 0 0 +3.11184E7 10 2 57 98478 0 0 306 0 0 0 0 0 0 0 271 0 5 5 1700 3048 9 999999999 12 0 0 88 0.2 0 0 +3.1122E7 9 3 66 98468 0 0 321 0 0 0 0 0 0 0 291 0 9 9 1800 3048 9 999999999 13 0 0 88 0.2 0 0 +3.11256E7 10 3 62 98478 0 0 325 0 0 0 0 0 0 0 50 1.5 9 9 2200 3048 9 999999999 13 0 0 88 0.2 0 0 +3.11292E7 10 2 57 98478 0 0 324 0 0 0 0 0 0 0 330 2.6 9 9 2800 3048 9 999999999 12 0 0 88 0.2 0 0 +3.11328E7 11 4 62 98488 64 309 331 10 0 10 988 0 994 368 90 2.1 9 9 2000 3048 0 919999999 14 0 0 88 0.2 0 0 +3.11364E7 12 6 67 98498 334 1415 338 90 5 89 9978 203 9885 3051 292 0 9 9 900 3048 0 919999999 17 0 0 88 0.2 0 0 +3.114E7 12 6 67 98498 564 1415 338 186 20 178 20660 1480 19864 6378 250 2.1 9 9 1000 3048 0 919999999 17 0 0 88 0.2 0 0 +3.11436E7 13 5 58 98507 736 1415 342 265 49 239 29667 4103 26938 9120 310 2.1 9 9 1200 3048 0 919999999 16 0 0 88 0.2 0 0 +3.11472E7 14 5 55 98517 841 1415 356 191 4 189 22195 291 22027 8374 250 4.6 10 10 1500 1067 0 919999999 16 0 0 88 0.2 0 0 +3.11508E7 15 5 51 98527 869 1415 351 326 28 309 36639 2505 34939 11941 330 2.6 9 9 1800 3048 0 919999999 16 0 0 88 0.2 0 0 +3.11544E7 16 5 48 98536 820 1415 356 304 72 262 34267 6152 29691 10374 330 2.6 9 9 2200 3048 0 919999999 16 0 0 88 0.2 0 0 +3.1158E7 16 5 48 98536 697 1415 356 247 49 223 27608 3955 25054 8414 190 1.5 9 9 2400 3048 0 919999999 16 0 0 88 0.2 0 0 +3.11616E7 16 6 51 98536 508 1415 357 162 34 150 17993 2246 16719 5372 220 1.5 9 9 1700 3048 0 919999999 17 0 0 88 0.2 0 0 +3.11652E7 16 6 51 98536 266 1415 332 124 261 75 13636 7615 8267 2437 250 1.5 3 3 1900 3048 0 919999999 17 0 0 88 0.2 0 0 +3.11688E7 14 8 67 98517 0 1353 330 0 0 0 0 0 0 0 250 2.1 5 5 1300 3048 0 919999999 21 0 0 88 0.2 0 0 +3.11724E7 13 8 72 98507 0 0 329 0 0 0 0 0 0 0 43 0 6 6 1200 3048 0 919999999 21 0 0 88 0.2 0 0 +3.1176E7 12 8.5 79 98498 0 0 328 0 0 0 0 0 0 0 49 0 7 7 950 3048 9 999999999 22 0 0 88 0.2 0 0 +3.11796E7 11 9 87 98488 0 0 337 0 0 0 0 0 0 0 3 0 9 9 700 3048 0 919999999 24 0 0 88 0.2 0 0 +3.11832E7 11 9 87 98488 0 0 337 0 0 0 0 0 0 0 333 0 9 9 700 3048 0 919999999 24 0 0 88 0.2 0 0 +3.11868E7 11 9 87 98488 0 0 337 0 0 0 0 0 0 0 45 0 9 9 700 3048 0 919999999 24 0 0 88 0.2 0 0 +3.11904E7 10 9 93 98478 0 0 313 0 0 0 0 0 0 0 320 0 5 5 700 3048 0 919999999 24 0 0 88 0.2 0 0 +3.1194E7 9 8 93 98468 0 0 291 0 0 0 0 0 0 0 317 0 0 0 800 2000 0 919999999 21 0 0 88 0.2 0 0 +3.11976E7 10 4 66 98478 0 0 291 0 0 0 0 0 0 0 276 0 0 0 1700 2000 0 919999999 14 0 0 88 0.2 0 0 +3.12012E7 10 4 66 98478 0 0 291 0 0 0 0 0 0 0 125 0 0 0 1800 2000 0 919999999 14 0 0 88 0.2 0 0 +3.12048E7 10 3 62 98478 0 0 290 0 0 0 0 0 0 0 56 0 0 0 2000 2000 0 919999999 13 0 0 88 0.2 0 0 +3.12084E7 9 4 71 98468 0 0 287 0 0 0 0 0 0 0 284 0 0 0 2200 2000 0 919999999 14 0 0 88 0.2 0 0 +3.1212E7 8 4 76 98458 0 0 283 0 0 0 0 0 0 0 11 0 0 0 2200 2000 9 999999999 14 0 0 88 0.2 0 0 +3.12156E7 7.5 3.5 76 98453 0 0 303 0 0 0 0 0 0 0 177 0 7 7 1550 2000 9 999999999 14 0 0 88 0.2 0 0 +3.12192E7 7 3 76 98448 62 300 278 19 0 19 1861 0 1874 592 359 0 0 0 900 2000 9 999999999 13 0 0 88 0.2 0 0 +3.12228E7 7 3 76 98448 333 1415 278 174 449 68 19731 15663 7768 2538 201 0 0 0 900 2000 9 999999999 13 0 0 88 0.2 0 0 +3.12264E7 10 4 66 98478 563 1415 291 361 667 95 42147 37697 11171 4071 270 2.6 0 0 1400 2000 9 999999999 14 0 0 88 0.2 0 0 +3.123E7 14 3 47 98517 736 1415 307 514 805 95 62014 48703 11465 4489 290 2.1 0 0 1500 2000 9 999999999 13 0 0 88 0.2 0 0 +3.12336E7 16 3 42 98536 841 1415 315 609 782 143 72350 53434 17060 6714 320 3.6 0 0 2000 2000 9 999999999 13 0 0 88 0.2 0 0 +3.12372E7 18 2 34 98555 870 1415 323 636 786 152 75635 54875 18162 7172 280 3.6 0 0 2400 2000 9 999999999 12 0 0 88 0.2 0 0 +3.12408E7 18 1.5 33 98555 822 1415 322 593 780 139 70433 53280 16600 6503 14 3.8 0 0 2800 2000 9 999999999 11 0 0 88 0.2 0 0 +3.12444E7 18 1 32 98555 699 1415 322 483 792 91 58077 47535 11006 4262 310 4.1 0 0 3200 2000 9 999999999 10 0 0 88 0.2 0 0 +3.1248E7 18 1 32 98555 510 1415 322 319 626 92 36881 34351 10711 3804 310 4.1 0 0 3200 2000 9 999999999 10 0 0 88 0.2 0 0 +3.12516E7 18 0 30 98555 269 1415 321 128 292 73 14161 8945 8060 2404 310 3.6 0 0 3100 2000 9 999999999 9 0 0 88 0.2 0 0 +3.12552E7 15 1 39 98527 0 1367 309 0 0 0 0 0 0 0 290 2.1 0 0 2500 2000 9 999999999 11 0 0 88 0.2 0 0 +3.12588E7 13 2 47 98507 0 0 301 0 0 0 0 0 0 0 290 1.5 0 0 2100 2000 9 999999999 12 0 0 88 0.2 0 0 +3.12624E7 11 4 62 98488 0 0 295 0 0 0 0 0 0 0 224 0 0 0 1600 2000 9 999999999 14 0 0 88 0.2 0 0 +3.1266E7 9 4 71 98468 0 0 287 0 0 0 0 0 0 0 240 1 0 0 1200 2000 9 999999999 14 0 0 88 0.2 0 0 +3.12696E7 9 3 66 98468 0 0 303 0 0 0 0 0 0 0 260 1.5 5 5 1200 2000 9 999999999 13 0 0 88 0.2 0 0 +3.12732E7 9 2 61 98468 0 0 299 0 0 0 0 0 0 0 320 1.5 4 4 1400 2000 9 999999999 12 0 0 88 0.2 0 0 +3.12768E7 9 1 57 98468 0 0 298 0 0 0 0 0 0 0 300 2.1 4 4 1400 2000 9 999999999 11 0 0 88 0.2 0 0 +3.12804E7 9 1 57 98468 0 0 298 0 0 0 0 0 0 0 320 1.5 4 4 1800 2000 9 999999999 11 0 0 88 0.2 0 0 +3.1284E7 7 2 70 98448 0 0 296 0 0 0 0 0 0 0 310 2.1 6 6 1600 2000 9 999999999 12 0 0 88 0.2 0 0 +3.12876E7 7 2 70 98448 0 0 296 0 0 0 0 0 0 0 270 1.5 6 6 1200 2000 9 999999999 12 0 0 88 0.2 0 0 +3.12912E7 5.5 2 78 98433 0 0 293 0 0 0 0 0 0 0 352 1.5 7 7 900 2000 9 999999999 12 0 0 88 0.2 0 0 +3.12948E7 4 2 87 98418 0 0 265 0 0 0 0 0 0 0 240 1.5 0 0 600 2000 9 999999999 12 0 0 88 0.2 0 0 +3.12984E7 4 2 87 98418 0 0 265 0 0 0 0 0 0 0 240 1.5 0 0 500 2000 0 999999999 12 0 0 88 0.2 0 0 +3.1302E7 4 2 87 98418 0 0 265 0 0 0 0 0 0 0 240 1.5 0 0 400 2000 0 999999999 12 0 0 88 0.2 0 0 +3.13056E7 4 3 93 98418 60 291 266 19 0 19 1809 0 1821 577 32 0 0 0 500 2000 0 999999999 13 0 0 88 0.2 0 0 +3.13092E7 8 3 71 98458 332 1415 282 173 448 68 19611 15512 7749 2529 260 3.1 0 0 900 2000 0 999999999 13 0 0 88 0.2 0 0 +3.13128E7 8 2 66 98458 562 1415 281 362 664 98 42136 38284 11436 4151 260 3.1 0 0 1400 2000 0 999999999 12 0 0 88 0.2 0 0 +3.13164E7 13 3 51 98507 736 1415 302 514 805 95 61976 48687 11462 4487 300 3.6 0 0 1500 2000 0 999999999 13 0 0 88 0.2 0 0 +3.132E7 14 4 51 98517 841 1415 308 608 782 142 72276 53033 16948 6677 300 3.6 0 0 1500 2000 0 999999999 14 0 0 88 0.2 0 0 +3.13236E7 16 4 45 98536 871 1415 316 635 786 150 75519 54104 17947 7103 290 4.1 0 0 1300 2000 0 999999999 14 0 0 88 0.2 0 0 +3.13272E7 18 1 32 98555 823 1415 322 595 780 140 70650 53524 16707 6543 310 4.6 0 0 2200 2000 0 999999999 10 0 0 88 0.2 0 0 +3.13308E7 18 1 32 98555 701 1415 322 485 793 92 58309 47651 11038 4277 320 4.1 0 0 2500 2000 0 999999999 10 0 0 88 0.2 0 0 +3.13344E7 18 1 32 98555 513 1415 322 321 629 92 37139 34570 10746 3821 310 4.6 0 0 3000 2000 0 999999999 10 0 0 88 0.2 0 0 +3.1338E7 18 1 32 98555 272 1415 322 130 294 74 14352 9109 8143 2432 310 4.1 0 0 3000 2000 0 999999999 10 0 0 88 0.2 0 0 +3.13416E7 16 1 36 98536 0 1382 313 0 0 0 0 0 0 0 320 3.6 0 0 3200 2000 0 999999999 11 0 0 88 0.2 0 0 +3.13452E7 14 2 44 98517 0 0 306 0 0 0 0 0 0 0 42 0 0 0 2500 2000 0 999999999 12 0 0 88 0.2 0 0 +3.13488E7 12 3 54 98498 0 0 298 0 0 0 0 0 0 0 123 0 0 0 2000 2000 0 999999999 13 0 0 88 0.2 0 0 +3.13524E7 11 4 62 98488 0 0 295 0 0 0 0 0 0 0 163 0 0 0 1000 2000 0 999999999 14 0 0 88 0.2 0 0 +3.1356E7 9 4 71 98468 0 0 287 0 0 0 0 0 0 0 222 0 0 0 900 2000 0 999999999 14 0 0 88 0.2 0 0 +3.13596E7 9 6 81 98468 0 0 289 0 0 0 0 0 0 0 163 0 0 0 800 2000 0 999999999 18 0 0 88 0.2 0 0 +3.13632E7 8 6 87 98458 0 0 285 0 0 0 0 0 0 0 125 0 0 0 800 2000 0 999999999 18 0 0 88 0.2 0 0 +3.13668E7 8 6 87 98458 0 0 285 0 0 0 0 0 0 0 88 0 0 0 800 2000 0 999999999 18 0 0 88 0.2 0 0 +3.13704E7 7 6 93 98448 0 0 281 0 0 0 0 0 0 0 184 0 0 0 600 2000 0 999999999 18 0 0 88 0.2 0 0 +3.1374E7 7 6 93 98448 0 0 281 0 0 0 0 0 0 0 208 0 0 0 600 2000 0 999999999 18 0 0 88 0.2 0 0 +3.13776E7 6 5.5 97 98438 0 0 319 0 0 0 0 0 0 0 82 0 10 10 500 2000 9 999999999 17 0 0 88 0.2 0 0 +3.13812E7 5 5 100 98428 0 0 272 0 0 0 0 0 0 0 109 0 0 0 400 2000 0 999999999 16 0 0 88 0.2 0 0 +3.13848E7 4 4 100 98418 0 0 267 0 0 0 0 0 0 0 358 0 0 0 400 2000 0 999999999 14 0 0 88 0.2 0 0 +3.13884E7 4 4 100 98418 0 0 267 0 0 0 0 0 0 0 260 0 0 0 350 2000 0 999999999 14 0 0 88 0.2 0 0 +3.1392E7 4 4 100 98418 59 283 267 18 0 18 1758 0 1770 563 159 0 0 0 350 2000 0 999999999 14 0 0 88 0.2 0 0 +3.13956E7 5 4 93 98428 330 1415 271 172 374 85 19118 14976 9429 2934 95 0 0 0 400 2000 0 999999999 14 0 0 88 0.2 0 0 +3.13992E7 10 4 66 98477 561 1415 308 335 537 122 38310 33313 13991 4921 144 1.3 5 5 1200 2000 9 999999999 14 0 0 88 0.2 0 0 +3.14028E7 15 4 48 98527 736 1415 312 513 746 125 60555 48490 14756 5660 100 2.6 0 0 2000 2000 0 999999999 14 0 0 88 0.2 0 0 +3.14064E7 16 3 42 98536 842 1415 315 609 783 143 72435 53467 17086 6724 100 3.1 0 0 2200 2000 0 999999999 13 0 0 88 0.2 0 0 +3.141E7 18 -1 27 98555 872 1415 319 641 786 156 76165 56004 18582 7320 130 4.1 0 0 3400 2000 0 999999999 9 0 0 88 0.2 0 0 +3.14136E7 18 -2 25 98555 825 1415 318 599 771 149 70899 54545 17715 6893 130 4.1 0 0 3100 2000 0 999999999 8 0 0 88 0.2 0 0 +3.14172E7 18 2 34 98555 703 1415 342 452 599 154 52238 42264 17885 6567 100 4.1 5 5 3100 2000 0 999999999 12 0 0 88 0.2 0 0 +3.14208E7 18 2 34 98555 516 1415 342 300 513 113 34208 30536 12903 4459 120 4.1 5 5 3100 3048 0 999999999 12 0 0 88 0.2 0 0 +3.14244E7 15 9 67 98527 275 1415 336 121 271 69 13425 6982 7631 2340 150 3.6 5 5 1800 3048 0 919999999 23 0 0 88 0.2 0 0 +3.1428E7 15 8 63 98527 0 1398 335 0 0 0 0 0 0 0 140 3.1 5 5 1700 3048 0 919999999 21 0 0 88 0.2 0 0 +3.14316E7 14 8 67 98517 0 0 330 0 0 0 0 0 0 0 120 2.1 5 5 2100 3048 0 919999999 21 0 0 88 0.2 0 0 +3.14352E7 13 10 82 98507 0 0 340 0 0 0 0 0 0 0 140 3.1 8 8 1600 3048 0 19999999 26 0 0 88 0.2 0 0 +3.14388E7 13 11 88 98507 0 0 349 0 0 0 0 0 0 0 120 4.6 9 9 1400 3048 0 19999999 29 0 0 88 0.2 0 0 +3.14424E7 13 11 88 98507 0 0 349 0 0 0 0 0 0 0 140 3.6 9 9 900 2438 0 19999999 29 0 0 88 0.2 0 0 +3.1446E7 12 12 100 98498 0 0 355 0 0 0 0 0 0 0 130 3.1 10 10 1000 762 0 19999999 32 0 0 88 0.2 0 0 +3.14496E7 12 12 100 98498 0 0 355 0 0 0 0 0 0 0 110 3.6 10 10 1000 914 0 19999999 32 0 0 88 0.2 0 0 +3.14532E7 12 12 100 98498 0 0 355 0 0 0 0 0 0 0 130 3.6 10 10 800 914 0 19999999 32 0 0 88 0.2 0 0 +3.14568E7 12 12 100 98498 0 0 355 0 0 0 0 0 0 0 140 2.6 10 10 1400 914 0 19999999 32 0 0 88 0.2 0 0 +3.14604E7 12 12 100 98498 0 0 355 0 0 0 0 0 0 0 160 2.6 10 10 1500 914 0 19999999 32 0 0 88 0.2 0 0 +3.1464E7 11 11 100 98488 0 0 349 0 0 0 0 0 0 0 120 3.6 10 10 2400 914 0 19999999 29 0 0 88 0.2 0 0 +3.14676E7 12 12 100 98498 0 0 355 0 0 0 0 0 0 0 312 2.5 10 10 1400 914 9 999999999 32 0 0 88 0.2 0 0 +3.14712E7 12 12 100 98498 0 0 355 0 0 0 0 0 0 0 53 3.1 10 10 1833 914 9 999999999 32 0 0 88 0.2 0 0 +3.14748E7 12 12 100 98498 0 0 355 0 0 0 0 0 0 0 315 3.6 10 10 2266 914 9 999999999 32 0 0 88 0.2 0 0 +3.14784E7 12 12 100 98498 57 276 345 9 0 9 871 0 877 328 120 4.1 9 9 2700 3048 9 999999999 32 0 0 88 0.2 0 0 +3.1482E7 12 12 100 98498 329 1415 355 53 0 53 5228 0 5268 2077 130 3.6 10 10 2300 2438 9 999999999 32 0 0 88 0.2 0 0 +3.14856E7 13 12 94 98507 561 1415 350 183 35 169 20296 2402 18831 6152 130 4.1 9 9 2300 2438 9 999999999 32 0 0 88 0.2 0 0 +3.14892E7 14 11 82 98517 735 1415 364 160 0 160 16223 0 16365 6893 160 2.6 10 10 2300 2438 9 999999999 29 0 0 88 0.2 0 0 +3.14928E7 14 11 82 98517 842 1415 364 189 2 188 21967 152 21924 8366 150 3.6 10 10 2400 2438 9 999999999 29 0 0 88 0.2 0 0 +3.14964E7 14 11 82 98517 873 1415 364 198 3 196 23021 199 22934 8806 140 2.6 10 10 2200 2438 9 999999999 29 0 0 88 0.2 0 0 +3.15E7 15 11 77 98527 827 1415 369 185 1 184 21446 102 21450 8157 130 4.1 10 10 2000 2438 9 999999999 29 0 0 88 0.2 0 0 +3.15036E7 16 10 68 98536 706 1415 373 152 0 152 15385 0 15518 6493 130 4.6 10 10 3200 2438 9 999999999 26 0 0 88 0.2 0 0 +3.15072E7 16 10 68 98536 518 1415 373 101 0 101 10077 0 10159 4106 120 5.1 10 10 3200 2438 9 999999999 26 0 0 88 0.2 0 0 +3.15108E7 15 10 72 98527 278 1415 367 42 0 42 4080 0 4110 1612 130 3.6 10 10 3400 2438 9 999999999 26 0 0 88 0.2 0 0 +3.15144E7 15 10 72 98527 0 1413 367 0 0 0 0 0 0 0 120 2.1 10 10 3400 2438 9 999999999 26 0 0 88 0.2 0 0 +3.1518E7 15 11 77 98527 0 0 369 0 0 0 0 0 0 0 14 0 10 10 3200 2438 9 999999999 29 0 0 88 0.2 0 0 +3.15216E7 15 11 77 98527 0 0 369 0 0 0 0 0 0 0 319 0 10 10 3000 2438 9 999999999 29 0 0 88 0.2 0 0 +3.15252E7 15 11 77 98527 0 0 369 0 0 0 0 0 0 0 8 0 10 10 2300 2438 9 999999999 29 0 0 88 0.2 0 0 +3.15288E7 14 11 82 98517 0 0 353 0 0 0 0 0 0 0 279 0 9 9 2200 2438 9 999999999 29 0 0 88 0.2 0 0 +3.15324E7 14 11 82 98517 0 0 353 0 0 0 0 0 0 0 15 0 9 9 1800 2743 9 999999999 29 0 0 88 0.2 0 0 diff --git a/AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD600.epw b/AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD600.epw index 9f3f4f805f..c98f688c2f 100644 --- a/AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD600.epw +++ b/AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/WD600.epw @@ -1,8768 +1,8768 @@ -LOCATION,Denver Intl AP,CO,USA,TMY3,725650,39.83300,-104.6500,-7.0,1650.0 -DESIGN CONDITIONS,1,2017 ASHRAE Handbook -- Fundamentals - Chapter 14 Climatic Design Information,,Heating,12,-18.2,-14.8,-22.4,0.6,-11.3,-19.8,0.8,-7,13.7,3.8,11.9,2.9,3.4,230,Cooling,7,15.2,34.9,15.4,33.5,15.4,31.9,15.3,18.2,27.2,17.6,26.9,16.9,26.4,4.1,30,15.9,13.9,20,15,13.1,19.8,14.1,12.3,19.7,58.3,26.9,55.8,26.8,53.7,26.3,20.7,Extremes,12.1,10.6,8.9,-23.8,37.3,3.2,1.2,-26.2,38.2,-28.1,38.9,-29.9,39.6,-32.3,40.4,-24.1 -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,"NREL TMY Data Set (2008) updated 2015 to include better precipitation;Period of Record 1973-2005 (Generally)" -COMMENTS 2,"Downloaded from Climate.Onebuilding.Org -- Ground temps represent undisturbed earth temperatures - calculated from this weather data." -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,-19.7,85,83700,0,0,181,0,0,0,0,0,0,0,0,0,2,2,6.4,20306,9,999999999,3,0.044,0,88,0.2,0,1 -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,3,3,6.4,18674,9,999999999,3,0.044,0,88,0.2,0,1 -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,3,3,6.4,16614,9,999999999,3,0.044,0,88,0.2,0,1 -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,4,4,6.4,14677,9,999999999,3,0.044,0,88,0.2,0,1 -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,-14.6,86,83400,0,0,205,0,0,0,0,0,0,0,0,0,5,5,6.4,12892,9,999999999,2,0.044,0,88,0.2,0,1 -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,6,6,6.4,11077,9,999999999,2,0.044,0,88,0.2,0,1 -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,6,6,6.4,11821,9,999999999,2,0.044,0,88,0.2,0,1 -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,82,82800,45,908,231,9,17,8,1017,0,906,267,120,1.4,7,7,6.4,8786,9,999999999,2,0.044,0,88,0.2,0,1 -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,9702,2331,8425,2365,140,1.3,7,7,6.4,7581,9,999999999,2,0.044,0,88,0.2,0,1 -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,66,82700,433,1415,247,266,494,115,29735,29187,12906,4128,200,1.7,8,4,6.4,11251,9,999999999,2,0.044,0,88,0.2,0,1 -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,40531,37439,15847,5427,310,1.7,8,4,6.4,9436,9,999999999,2,0.044,0,88,0.2,0,1 -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,48353,42657,21129,7086,20,4.6,7,7,6.4,6706,9,999999999,2,0.044,0,88,0.2,0,1 -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,40696,30546,21350,7150,20,7.2,8,5,6.4,6706,9,999999999,2,0.044,0,88,0.2,0,1 -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,39102,35282,14922,5203,10,8.2,7,4,6.4,77777,9,999999999,2,0.044,0,88,0.2,0,1 -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,27579,21976,16933,4963,10,7.7,8,3,6.4,77777,9,999999999,2,0.044,0,88,0.2,0,1 -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,36,82100,263,1415,252,131,369,62,14618,9882,6940,2128,10,6.2,4,1,6.4,77777,9,999999999,2,0.044,0,88,0.2,0,1 -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,2017,0,1235,360,20,3.6,1,0,6.4,77777,9,999999999,2,0.044,0,88,0.2,0,1 -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,6.4,77777,9,999999999,2,0.044,0,88,0.2,0,1 -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,-9.4,68,82100,0,0,223,0,0,0,0,0,0,0,350,5.7,0,0,6.4,77777,9,999999999,2,0.044,0,88,0.2,0,1 -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,6.4,77777,9,999999999,2,0.044,0,88,0.2,0,1 -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,6.4,77777,9,999999999,2,0.044,0,88,0.2,0,1 -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,6.4,77777,9,999999999,2,0.044,0,88,0.2,0,1 -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,6.4,77777,9,999999999,2,0.044,0,88,0.2,0,1 -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,-12.8,50,81900,0,0,220,0,0,0,0,0,0,0,10,8.8,0,0,6.4,77777,9,999999999,2,0.044,0,88,0.2,0,1 -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,-13.3,48,81900,0,0,220,0,0,0,0,0,0,0,20,8.8,0,0,6.4,77777,9,999999999,2,0.044,0,88,0.2,0,1 -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,6.4,77777,9,999999999,2,0.044,0,88,0.2,0,1 -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,-15,41,81900,0,0,218,0,0,0,0,0,0,0,20,7.2,0,0,6.4,77777,9,999999999,2,0.044,0,88,0.2,0,1 -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,48,81900,0,0,213,0,0,0,0,0,0,0,20,6.7,0,0,6.4,77777,9,999999999,2,0.044,0,88,0.2,0,1 -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,43,82400,0,0,216,0,0,0,0,0,0,0,360,3.6,0,0,6.4,77777,9,999999999,2,0.044,0,88,0.2,0,1 -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,45,81900,0,0,219,0,0,0,0,0,0,0,10,3.1,1,1,6.4,77777,9,999999999,2,0.044,0,88,0.2,0,1 -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,6.4,77777,9,999999999,2,0.044,0,88,0.2,0,1 -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,34,82000,44,908,230,15,63,12,1640,0,1315,354,40,1.5,9,1,6.4,77777,9,999999999,2,0.044,0,88,0.2,0,1 -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,9415,3114,7113,2121,110,2.1,7,7,6.4,4572,9,999999999,3,0.044,0,88,0.2,0,1 -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,26275,23064,13639,4289,140,2.1,8,5,6.4,7620,9,999999999,3,0.044,0,88,0.2,0,1 -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,45947,44608,11053,4026,130,2.6,5,4,6.4,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,39300,28280,21777,7239,160,2.1,8,5,6.4,7620,9,999999999,3,0.044,0,88,0.2,0,1 -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,38102,30848,13295,4917,180,2.6,9,6,6.4,7620,9,999999999,3,0.044,0,88,0.2,0,1 -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,31171,12577,24851,7285,140,2.6,9,8,6.4,4572,9,999999999,3,0.044,0,88,0.2,0,1 -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,-8.3,25,82300,447,1415,301,260,368,144,28633,24914,15930,4815,150,3.1,9,7,6.4,4572,9,999999999,3,0.044,0,88,0.2,0,1 -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,25,82300,266,1415,284,109,249,62,12178,6771,6948,2139,140,3.1,8,5,6.4,7620,9,999999999,3,0.044,0,88,0.2,0,1 -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,26,82100,58,1026,272,21,102,15,2303,0,1649,452,150,2.6,6,2,6.4,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,-10,30,82100,0,0,269,0,0,0,0,0,0,0,170,3.6,6,3,6.4,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,39,82300,0,0,248,0,0,0,0,0,0,0,150,3.6,2,1,6.4,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,-10,43,82200,0,0,244,0,0,0,0,0,0,0,180,3.6,3,1,6.4,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,6.4,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,6.4,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,1,1,6.4,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,-13.3,32,82100,0,0,236,0,0,0,0,0,0,0,230,2.6,1,0,6.4,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,6.4,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,6.4,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,6.4,77777,9,999999999,4,0.044,0,88,0.2,0,1 -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,6.4,77777,9,999999999,4,0.044,0,88,0.2,0,1 -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,6.4,77777,9,999999999,4,0.044,0,88,0.2,0,1 -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,6.4,77777,9,999999999,4,0.044,0,88,0.2,0,1 -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,6.4,7620,9,999999999,4,0.044,0,88,0.2,0,1 -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,1530,0,1314,353,250,6.7,7,5,6.4,7620,9,999999999,4,0.044,0,88,0.2,0,1 -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,8888,3088,5979,1865,210,4.6,8,5,6.4,7010,9,999999999,3,0.044,0,88,0.2,0,1 -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,21515,15197,12712,4086,210,5.2,7,6,6.4,7620,9,999999999,3,0.044,0,88,0.2,0,1 -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,38215,34424,10615,3887,290,1.5,6,3,6.4,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,53327,49159,11651,4370,250,7.7,2,1,6.4,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,29,83400,641,1415,265,426,757,83,51150,45215,9994,3800,280,9.3,4,1,6.4,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,42817,39540,10202,3767,300,11.1,5,2,6.4,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,28697,26840,12134,4008,280,7.4,6,3,6.4,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,12873,6503,9200,2594,260,6.7,10,5,6.4,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,-12.9,42,83600,60,1049,240,22,15,21,2354,0,2254,553,230,4.6,10,5,6.4,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,58,83500,0,0,231,0,0,0,0,0,0,0,240,2.8,10,5,6.4,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,6.4,6096,9,999999999,3,0.044,0,88,0.2,0,1 -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,6.4,6096,9,999999999,3,0.044,0,88,0.2,0,1 -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,6.4,5486,9,999999999,3,0.044,0,88,0.2,0,1 -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,6.4,5486,9,999999999,3,0.044,0,88,0.2,0,1 -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,6.4,4572,9,999999999,3,0.044,0,88,0.2,0,1 -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,6.4,4572,9,999999999,3,0.044,0,88,0.2,0,1 -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,6.4,3658,9,999999999,3,0.044,0,88,0.2,0,1 -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,10,10,6.4,3353,9,999999999,3,0.044,0,88,0.2,0,1 -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,6706,9,999999999,3,0.044,0,88,0.2,0,1 -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,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,8.1,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,64,83300,44,908,210,14,139,7,1599,0,800,240,0,0,1,1,8.1,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,6910,1729,3754,1252,0,0,7,6,8.1,7620,9,999999999,3,0.044,0,88,0.2,0,1 -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,14618,7448,9352,3211,180,1.5,10,9,8.1,3658,9,999999999,3,0.044,0,88,0.2,0,1 -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,15354,0,15478,5790,210,2.1,10,10,8.1,4267,9,999999999,3,0.044,0,88,0.2,0,1 -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,17675,0,17822,6793,0,0,10,10,8.1,4267,9,999999999,3,0.044,0,88,0.2,0,1 -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,-6.8,32,83600,644,1415,314,140,0,140,14222,0,14340,5834,350,3.6,10,10,8.1,2438,9,999999999,3,0.044,0,88,0.2,0,1 -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,12631,0,12734,5089,10,4.1,10,10,8.2,2438,9,999999999,4,0.044,0,88,0.2,0,1 -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,12050,2781,10132,3482,360,3.6,9,9,8.2,1981,9,999999999,4,0.044,0,88,0.2,0,1 -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,-5.6,31,83300,273,1415,309,44,59,33,5178,861,3890,1315,300,7.2,10,8,8.2,4267,9,999999999,4,0.044,0,88,0.2,0,1 -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,2184,0,1861,506,0,0,9,7,8.2,4267,9,999999999,4,0.044,0,88,0.2,0,1 -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,40,83000,0,0,297,0,0,0,0,0,0,0,80,3.1,8,8,8.2,7315,9,999999999,4,0.044,0,88,0.2,0,1 -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.2,7315,9,999999999,4,0.044,0,88,0.2,0,1 -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.2,77777,9,999999999,4,0.044,0,88,0.2,0,1 -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.3,77777,9,999999999,4,0.044,0,88,0.2,0,1 -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,29,82700,0,0,271,0,0,0,0,0,0,0,160,3.1,3,3,8.3,77777,9,999999999,4,0.044,0,88,0.2,0,1 -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,-9.4,31,82600,0,0,267,0,0,0,0,0,0,0,250,3.1,2,2,8.3,77777,9,999999999,4,0.044,0,88,0.2,0,1 -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,-10,21,82600,0,0,276,0,0,0,0,0,0,0,210,6.7,0,0,8.3,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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,-9.4,31,82400,0,0,258,0,0,0,0,0,0,0,210,4.6,0,0,8.3,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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.3,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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.3,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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.4,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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.4,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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.4,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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,-6.1,42,82800,0,0,261,0,0,0,0,0,0,0,300,4.6,0,0,8.4,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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,-5,33,82800,44,908,282,16,174,7,1825,0,799,240,360,1.5,0,0,8.4,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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,35,82900,249,1415,277,142,630,31,15139,49899,4994,645,50,4.1,0,0,8.4,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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,31144,73964,6743,1000,360,4.6,0,0,8.4,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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,46004,41676,7746,2907,40,5.7,3,1,8.5,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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,-6.7,20,83000,642,1415,306,465,894,60,49326,86938,9035,1381,30,5.1,2,1,8.5,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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,54820,47244,8426,3239,30,4.1,3,1,8.5,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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,47474,42912,8213,3089,50,3.1,2,1,8.5,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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,-3.9,36,83100,457,1415,288,239,526,68,28006,24737,7989,2839,70,2.6,3,1,8.5,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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,14622,7878,4651,1552,100,2.1,2,1,8.5,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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,2630,0,1868,515,160,2.6,5,3,8.5,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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.6,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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,32,83200,0,0,264,0,0,0,0,0,0,0,170,4.1,3,3,8.6,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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.6,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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.6,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,-8.9,47,83200,0,0,257,0,0,0,0,0,0,0,110,2.1,6,6,8.6,7620,9,999999999,6,0.044,0,88,0.2,0,1 -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,41,83600,0,0,256,0,0,0,0,0,0,0,180,1.5,8,5,8.6,7620,9,999999999,6,0.044,0,88,0.2,0,1 -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,-10.6,40,83100,0,0,255,0,0,0,0,0,0,0,240,3.1,7,6,8.7,7620,9,999999999,6,0.044,0,88,0.2,0,1 -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,-11.7,37,83200,0,0,274,0,0,0,0,0,0,0,250,3.6,10,10,8.7,7620,9,999999999,6,0.043,0,88,0.2,0,1 -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.7,6706,9,999999999,6,0.043,0,88,0.2,0,1 -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.7,6706,9,999999999,6,0.043,0,88,0.2,0,1 -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,-14.4,29,83300,0,0,264,0,0,0,0,0,0,0,330,3.6,10,9,8.7,6706,9,999999999,6,0.043,0,88,0.2,0,1 -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.7,8534,9,999999999,6,0.043,0,88,0.2,0,1 -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,-13.9,30,83500,0,0,236,0,0,0,0,0,0,0,200,3.1,0,0,8.7,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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.8,7620,9,999999999,6,0.043,0,88,0.2,0,1 -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,1130,0,905,266,240,5.2,5,3,8.8,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,14021,8242,5669,1791,240,4.1,4,2,8.8,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,-7.8,52,83900,437,1415,252,265,510,107,29831,29167,12090,3951,280,3.6,3,3,8.8,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,-7.8,52,84000,571,1415,241,406,859,58,43021,82130,8826,1272,210,1.5,0,0,8.8,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,49796,86812,9600,1409,130,3.6,0,0,8.8,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,50257,87146,9594,1416,130,7.7,0,0,8.8,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,44495,83289,8955,1297,120,6.7,0,0,8.9,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,32776,73243,7761,1068,120,8.2,0,0,8.9,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,18950,11287,4336,1459,130,7.2,0,0,8.9,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,2926,0,1466,433,140,8.2,0,0,8.9,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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.9,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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.9,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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.9,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,9,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,9,6706,9,999999999,4,0.043,0,88,0.2,0,1 -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,82,83900,0,0,246,0,0,0,0,0,0,0,250,2.1,10,10,9,2743,9,999999999,4,0.043,0,88,0.2,0,1 -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,9,2743,9,999999999,4,0.043,0,88,0.2,0,1 -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,9,2286,9,999999999,4,0.043,0,88,0.2,0,1 -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,86,83500,0,0,244,0,0,0,0,0,0,0,260,2.6,10,10,9,2438,9,999999999,4,0.043,0,88,0.2,0,1 -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,9,1676,9,999999999,4,0.043,0,88,0.2,0,1 -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,9.1,1219,9,999999999,4,0.043,0,88,0.2,0,1 -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,10,10,9.1,1829,9,999999999,4,0.043,0,88,0.2,0,1 -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,9.1,732,9,999999999,4,0.043,0,88,0.2,0,1 -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,9.1,61,9,999999999,4,0.043,0,88,0.2,0,1 -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,483,0,486,181,240,3.6,10,10,9.1,152,9,999999999,4,0.043,0,88,0.2,0,1 -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,3742,0,3769,1447,190,4.1,10,10,9.1,61,9,999999999,4,0.043,0,88,0.2,0,1 -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,25,83700,438,1415,275,69,0,69,6902,0,6955,2833,260,1.5,10,10,9.1,30,9,999999999,4,0.043,0,88,0.2,0,1 -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,9403,0,9479,4011,10,1.5,10,10,9.2,30,9,999999999,4,0.043,0,88,0.2,0,1 -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,-13.3,22,83700,646,1415,293,105,0,105,10679,0,10768,4653,80,2.1,10,10,9.2,152,9,999999999,4,0.043,0,88,0.2,0,1 -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,18,83700,652,1415,294,106,0,106,10788,0,10877,4705,100,2.1,10,10,9.2,152,9,999999999,4,0.043,0,88,0.2,0,1 -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,-16.7,16,83700,590,1415,289,95,0,95,9621,0,9699,4126,330,2.1,10,10,9.2,0,9,999999999,4,0.043,0,88,0.2,0,1 -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,-16.7,16,83600,464,1415,289,74,0,74,7419,0,7476,3061,110,3.1,10,10,9.2,122,9,999999999,4,0.043,0,88,0.2,0,1 -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,4346,0,4377,1691,120,2.1,10,10,9.2,183,9,999999999,4,0.043,0,88,0.2,0,1 -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,-15.6,18,83300,72,1144,291,9,0,9,872,0,878,325,150,3.6,10,10,9.2,183,9,999999999,4,0.043,0,88,0.2,0,1 -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,9.3,1158,9,999999999,4,0.043,0,88,0.2,0,1 -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,-16.1,17,83300,0,0,290,0,0,0,0,0,0,0,220,3.6,10,10,9.3,1097,9,999999999,4,0.043,0,88,0.2,0,1 -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,9.3,1676,9,999999999,4,0.043,0,88,0.2,0,1 -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,23,83100,0,0,272,0,0,0,0,0,0,0,210,5.2,10,9,9.3,2438,9,999999999,4,0.043,0,88,0.2,0,1 -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,9.3,2438,9,999999999,5,0.043,0,88,0.2,0,1 -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,-11.7,37,83200,0,0,254,0,0,0,0,0,0,0,230,4.6,6,6,9.3,6096,9,999999999,5,0.043,0,88,0.2,0,1 -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,9.3,2438,9,999999999,5,0.043,0,88,0.2,0,1 -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,9.4,1219,9,999999999,5,0.043,0,88,0.2,0,1 -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,9.4,975,9,999999999,5,0.043,0,88,0.2,0,1 -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,9.4,1829,9,999999999,5,0.043,0,88,0.2,0,1 -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,9.4,152,9,999999999,5,0.043,0,88,0.2,0,1 -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,9.4,2438,9,999999999,5,0.043,0,88,0.2,0,1 -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,9.4,2134,9,999999999,5,0.043,0,88,0.2,0,1 -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,9.4,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,1568,0,1010,292,270,3.1,3,3,9.5,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,14054,46276,4531,642,280,6.7,1,1,9.5,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,-11.1,27,83000,439,1415,261,290,797,43,30827,72657,6737,1005,260,5.2,1,1,9.5,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,41607,38777,12910,4630,270,7.2,2,2,9.5,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,50839,44975,10678,4054,290,7.2,3,3,9.5,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,54949,48424,10129,3869,280,7.7,1,1,9.5,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,46906,91111,6482,1134,280,5.2,0,0,9.5,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,35228,82196,5528,946,290,5.2,0,0,9.6,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,19274,62134,4220,675,300,2.6,0,0,9.6,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,31,82200,75,1167,260,29,272,12,3309,0,1371,416,290,3.6,2,1,9.6,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,41,82200,0,0,252,0,0,0,0,0,0,0,240,3.6,5,3,9.6,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,9.6,7620,9,999999999,5,0.043,0,88,0.2,0,1 -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,9.6,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,9.6,7620,9,999999999,5,0.043,0,88,0.2,0,1 -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,9.7,4572,9,999999999,5,0.043,0,88,0.2,0,1 -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,9.7,4572,9,999999999,6,0.043,0,88,0.2,0,1 -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,9.7,4572,9,999999999,6,0.043,0,88,0.2,0,1 -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,9.7,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,9.7,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,9.7,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,9.8,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,9.8,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,9.8,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,-8.3,75,82100,0,0,224,0,0,0,0,0,0,0,0,0,1,0,9.8,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,1583,0,906,268,130,2.6,1,1,9.8,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,15730,7805,4404,1450,140,2.6,0,0,9.8,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,35,82500,441,1415,249,287,749,53,34199,32224,6329,2272,110,4.6,0,0,9.8,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,48990,44800,7759,2919,100,5.2,0,0,9.9,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,49687,84567,10440,1444,100,5.2,0,0,9.9,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,50320,84976,10572,1458,90,6.2,0,0,9.9,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,51103,46101,8011,3031,100,6.2,0,0,9.9,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,37390,35317,6704,2431,120,5.7,0,0,9.9,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,19337,12936,4786,1609,70,4.6,0,0,9.9,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,3148,0,1690,501,100,4.1,0,0,9.9,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,10,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,-6.1,60,82200,0,0,243,0,0,0,0,0,0,0,170,4.6,0,0,10,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,10,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,10,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,10,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,10,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,10,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,10.1,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,-8.3,75,81900,0,0,224,0,0,0,0,0,0,0,210,5.2,0,0,10.1,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,-8.3,75,81900,0,0,224,0,0,0,0,0,0,0,190,4.1,0,0,10.1,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,10.1,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,10.1,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,10.1,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,10.1,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,-10.6,61,81800,46,908,222,19,234,7,2024,10640,1171,143,200,5.2,0,0,10.2,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,16040,55244,4068,626,220,5.7,0,0,10.2,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,32409,78199,5540,928,240,5.7,0,0,10.2,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,45010,88534,6637,1140,220,5.7,0,0,10.2,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,51931,92603,7153,1253,220,4.1,0,0,10.2,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,52575,93012,7147,1258,220,1.5,0,0,10.2,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,46881,89759,6767,1168,210,2.1,0,0,10.2,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,35436,80989,5821,979,0,0,0,0,10.3,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,19558,61429,4372,695,40,2.6,0,0,10.3,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,3827,19847,1990,242,70,2.1,0,0,10.3,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,10.3,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,10.3,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,10.3,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,10.3,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,10.4,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,61,82600,0,0,224,0,0,0,0,0,0,0,220,3.6,0,0,10.4,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,-11.1,59,82000,0,0,221,0,0,0,0,0,0,0,210,7.7,0,0,10.4,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,10.4,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,10.4,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,10.4,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,10.4,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,-12.2,53,82400,0,0,225,0,0,0,0,0,0,0,230,6.2,4,1,10.5,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,10.5,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,10.5,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,1864,0,1319,359,220,5.7,6,2,10.5,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,12367,6921,6201,1935,210,6.7,8,3,10.5,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,32895,33357,9378,3241,230,4.6,7,2,10.5,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,38012,33802,12285,4454,200,3.1,8,3,10.5,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,53644,49158,14106,5225,110,2.1,7,2,10.6,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,53893,49501,18848,6662,90,6.2,8,4,10.6,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,49304,47913,13856,4995,90,7.7,7,4,10.6,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,22469,13209,15042,4821,110,7.2,9,5,10.6,7925,9,999999999,6,0.043,0,88,0.2,0,1 -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,-17.8,10,83000,301,1414,290,104,103,81,11513,4111,8999,2700,110,4.6,10,7,10.6,6096,9,999999999,6,0.043,0,88,0.2,0,1 -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,3446,0,3025,769,120,4.1,9,6,10.6,5486,9,999999999,5,0.043,0,88,0.2,0,1 -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,10.6,5486,9,999999999,5,0.043,0,88,0.2,0,1 -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,10.7,5486,9,999999999,5,0.043,0,88,0.2,0,1 -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,10.7,6096,9,999999999,5,0.043,0,88,0.2,0,1 -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,10.7,5486,9,999999999,5,0.043,0,88,0.2,0,1 -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,18,82200,0,0,288,0,0,0,0,0,0,0,260,4.6,10,9,10.7,4877,9,999999999,5,0.043,0,88,0.2,0,1 -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,10.7,3962,9,999999999,5,0.043,0,88,0.2,0,1 -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,10.7,3353,9,999999999,5,0.043,0,88,0.2,0,1 -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,10.7,2438,9,999999999,5,0.043,0,88,0.2,0,1 -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,-12.2,35,82100,0,0,274,0,0,0,0,0,0,0,220,3.6,10,10,10.8,1158,9,999999999,5,0.043,0,88,0.2,0,1 -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,10.8,274,9,999999999,5,0.043,0,88,0.2,0,1 -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,10.8,244,9,999999999,5,0.043,0,88,0.2,0,1 -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,-11.1,59,82500,0,0,256,0,0,0,0,0,0,0,220,3.6,10,10,10.8,244,9,999999999,5,0.043,0,88,0.2,0,1 -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,10.8,244,9,999999999,5,0.043,0,88,0.2,0,1 -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,10.8,183,9,999999999,5,0.043,0,88,0.2,0,1 -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,386,0,389,150,240,4.1,10,10,10.8,152,9,999999999,5,0.043,0,88,0.2,0,1 -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,3743,0,3770,1457,230,4.1,10,10,10.9,213,9,999999999,5,0.043,0,88,0.2,0,1 -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,7605,0,7664,3086,220,4.1,10,10,10.9,305,9,999999999,4,0.043,0,88,0.2,0,1 -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,10523,0,10608,4428,240,3.1,10,10,10.9,305,9,999999999,4,0.043,0,88,0.2,0,1 -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,10180,0,10265,4506,180,1.5,10,10,10.9,183,9,999999999,4,0.043,0,88,0.2,0,1 -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,12429,0,12533,5333,120,4.1,10,10,10.9,274,9,999999999,4,0.043,0,88,0.2,0,1 -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,9227,0,9302,4029,90,5.7,10,10,10.9,183,9,999999999,4,0.043,0,88,0.2,0,1 -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,8332,0,8397,3414,100,5.2,10,10,11,213,9,999999999,4,0.043,0,88,0.2,0,1 -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,4649,0,4683,1824,100,4.1,10,10,11,274,9,999999999,4,0.043,0,88,0.2,0,1 -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,1165,0,1173,433,110,5.2,10,10,11,427,9,999999999,4,0.043,0,88,0.2,0,1 -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,11,488,9,999999999,4,0.043,0,88,0.2,0,1 -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,11,183,9,999999999,4,0.043,0,88,0.2,0,1 -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,11,1280,9,999999999,4,0.043,0,88,0.2,0,1 -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,11,1829,9,999999999,4,0.043,0,88,0.2,0,1 -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,11.1,1829,9,999999999,4,0.043,0,88,0.2,0,1 -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,11.1,1829,9,999999999,4,0.043,0,88,0.2,0,1 -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,49,83500,0,0,247,0,0,0,0,0,0,0,220,4.1,8,5,11.1,2134,9,999999999,4,0.043,0,88,0.2,0,1 -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,41,83600,0,0,252,0,0,0,0,0,0,0,210,4.6,4,3,11.1,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,34,83600,0,0,268,0,0,0,0,0,0,0,220,4.1,7,6,11.1,1981,9,999999999,4,0.043,0,88,0.2,0,1 -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,35,83700,0,0,260,0,0,0,0,0,0,0,220,5.2,3,3,11.1,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,11.1,77777,9,999999999,3,0.043,0,88,0.2,0,1 -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,11.2,77777,9,999999999,3,0.043,0,88,0.2,0,1 -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,11.2,77777,9,999999999,3,0.043,0,88,0.2,0,1 -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,11.2,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,2252,13620,1013,148,230,5.7,0,0,11.2,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,17197,60470,3603,599,230,3.6,0,0,11.2,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,34185,82994,4935,873,250,4.1,0,0,11.2,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,47179,92942,5899,1067,230,4.1,0,0,11.2,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,54381,96946,6424,1179,230,2.6,0,0,11.3,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,-9.4,22,84400,672,1414,282,494,845,92,59174,52378,11054,4225,210,1.5,1,1,11.3,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,22,84400,613,1414,274,456,954,42,48756,92224,6467,1147,180,1.5,1,0,11.3,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,22,84400,489,1414,279,323,835,35,34619,77864,5517,959,0,0,1,1,11.3,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,22,84500,310,1414,279,171,674,24,18385,56618,3907,669,0,0,1,1,11.3,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,24,84200,92,1285,275,40,314,18,4496,0,2027,603,20,4.1,4,1,11.3,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,26,84400,0,0,271,0,0,0,0,0,0,0,40,2.6,4,1,11.3,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,11.4,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,5,4,11.4,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,11.4,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,11.4,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,11.4,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,11.4,3658,9,999999999,5,0.043,0,88,0.2,0,1 -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,11.4,3658,9,999999999,5,0.043,0,88,0.2,0,1 -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,11.5,1981,9,999999999,5,0.043,0,88,0.2,0,1 -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,11.5,2591,9,999999999,5,0.043,0,88,0.2,0,1 -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,11.5,2591,9,999999999,5,0.043,0,88,0.2,0,1 -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,11.5,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,11.5,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,11.5,3658,9,999999999,5,0.043,0,88,0.2,0,1 -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,1541,0,1324,366,170,6.2,8,8,11.5,3962,9,999999999,5,0.043,0,88,0.2,0,1 -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,13149,7818,7650,2275,200,5.7,5,4,11.6,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,-8.3,25,84400,452,1414,290,246,355,133,27305,23037,14826,4633,220,4.1,5,3,11.6,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,39342,34614,13161,4750,210,6.2,5,4,11.6,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,60634,55439,12809,4824,220,3.1,3,3,11.6,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,34640,25599,11061,4234,160,2.1,4,4,11.6,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,28894,19097,14735,5301,100,3.1,8,8,11.6,7620,9,999999999,5,0.043,0,88,0.2,0,1 -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,26528,17863,16724,5251,80,6.2,9,7,11.6,7620,9,999999999,5,0.043,0,88,0.2,0,1 -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,9370,1351,8618,2671,90,5.2,10,9,11.7,2896,9,999999999,5,0.043,0,88,0.2,0,1 -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,-8.9,23,83600,96,1308,312,17,15,16,1936,0,1825,557,80,4.1,10,9,11.7,2896,9,999999999,5,0.043,0,88,0.2,0,1 -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,11.7,2438,9,999999999,5,0.043,0,88,0.2,0,1 -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,11.7,1067,9,999999999,5,0.043,0,88,0.2,0,1 -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,11.7,152,9,999999999,5,0.043,0,88,0.2,0,1 -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,11.7,610,9,999999999,5,0.043,0,88,0.2,0,1 -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,11.7,274,9,999999999,5,0.043,0,88,0.2,0,1 -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,11.8,274,9,999999999,5,0.043,0,88,0.2,0,1 -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,11.8,274,9,999999999,5,0.043,0,88,0.2,0,1 -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,11.8,152,9,999999999,5,0.043,0,88,0.2,0,1 -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,11.8,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,11.8,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,11.8,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,11.8,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,11.9,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,11.9,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,2138,11704,1174,156,230,4.6,0,0,11.9,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,16792,56679,4223,646,230,4.6,0,0,11.9,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,33602,79572,5685,950,240,3.6,0,0,11.9,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,-10,21,83600,594,1414,276,436,933,44,46538,89788,6773,1164,240,3.1,0,0,11.9,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,53784,93888,7427,1294,0,0,0,0,11.9,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,51753,88377,7847,1342,0,0,1,0,12,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,48380,89307,7475,1251,360,1.5,1,0,12,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,37208,81615,6404,1046,0,0,1,0,12,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,21168,62855,4982,758,30,2.1,1,0,12,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,4909,24864,2317,293,40,2.6,0,0,12,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,12,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,12.1,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,12.1,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,12.1,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,12.1,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,12.1,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,-9.4,45,83600,0,0,252,0,0,0,0,0,0,0,260,2.6,7,4,12.1,7620,9,999999999,6,0.043,0,88,0.2,0,1 -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,12.1,7620,9,999999999,6,0.043,0,88,0.2,0,1 -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,12.2,6706,9,999999999,6,0.043,0,88,0.2,0,1 -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,26,83500,0,0,279,0,0,0,0,0,0,0,250,3.6,6,5,12.2,6706,9,999999999,6,0.043,0,88,0.2,0,1 -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,12.2,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,12.2,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,12.2,5182,9,999999999,6,0.043,0,88,0.2,0,1 -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,12.2,5182,9,999999999,6,0.043,0,88,0.2,0,1 -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,-5.6,62,83500,51,954,260,12,23,11,1335,0,1226,351,220,3.6,9,6,12.2,5182,9,999999999,6,0.043,0,88,0.2,0,1 -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,-5.6,62,83600,264,1414,260,95,118,73,10461,3691,8067,2374,100,2.1,7,6,12.3,4572,9,999999999,6,0.043,0,88,0.2,0,1 -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,25011,10625,20482,5541,70,4.6,9,8,12.3,4572,9,999999999,5,0.043,0,88,0.2,0,1 -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,-2.8,79,83800,597,1414,263,277,266,164,31210,19537,18562,6265,50,6.7,7,6,12.3,4572,9,999999999,5,0.043,0,88,0.2,0,1 -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,40383,26343,22836,7734,30,5.7,8,8,12.3,4572,9,999999999,5,0.043,0,88,0.2,0,1 -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,48841,35661,27233,8719,20,9.3,7,7,12.3,4572,9,999999999,5,0.043,0,88,0.2,0,1 -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,44495,37611,20032,6769,10,9.8,8,3,12.3,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,32864,30016,10135,3597,10,10.3,5,2,12.3,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,19919,16915,8533,2684,10,6.2,4,3,12.4,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,4338,0,3373,904,350,4.1,4,2,12.4,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,-3.9,72,83500,0,0,250,0,0,0,0,0,0,0,10,4.1,3,1,12.4,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,12.4,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,12.4,7620,9,999999999,5,0.043,0,88,0.2,0,1 -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,12.4,4877,9,999999999,5,0.043,0,88,0.2,0,1 -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,12.4,518,9,999999999,5,0.043,0,88,0.2,0,1 -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,49,83500,0,0,252,0,0,0,0,0,0,0,340,3.6,7,7,12.5,4877,9,999999999,4,0.043,0,88,0.2,0,1 -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,51,83700,0,0,267,0,0,0,0,0,0,0,360,3.1,10,10,12.5,1524,9,999999999,4,0.043,0,88,0.2,0,1 -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,12.5,1402,9,999999999,4,0.042,0,88,0.2,0,1 -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,12.5,1372,9,999999999,4,0.042,0,88,0.2,0,1 -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,12.5,1250,9,999999999,4,0.042,0,88,0.2,0,1 -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,12.5,792,9,999999999,4,0.042,0,88,0.2,0,1 -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,12.5,853,9,999999999,4,0.042,0,88,0.2,0,1 -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,12.6,1250,9,999999999,4,0.042,0,88,0.2,0,1 -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,-11.1,39,83600,0,0,268,0,0,0,0,0,0,0,340,2.6,10,9,12.6,1158,9,999999999,4,0.042,0,88,0.2,0,1 -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,-8.9,71,83800,53,954,258,7,0,7,676,0,681,248,280,3.1,10,10,12.6,1006,9,999999999,4,0.042,0,88,0.2,0,1 -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,5124,0,5161,1889,300,3.1,10,10,12.6,1463,9,999999999,4,0.042,0,88,0.2,0,1 -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,-7.8,52,83900,460,1414,261,177,227,104,20083,13044,11843,3971,330,4.6,7,7,12.6,3658,9,999999999,4,0.042,0,88,0.2,0,1 -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,-7.2,54,84100,600,1414,266,300,270,185,33522,21224,20772,6785,360,5.2,8,8,12.6,3658,9,999999999,4,0.042,0,88,0.2,0,1 -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,42927,34265,13492,5079,20,4.1,6,6,12.6,3658,9,999999999,4,0.042,0,88,0.2,0,1 -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,50351,42281,18167,6574,310,3.1,6,6,12.7,3658,9,999999999,4,0.042,0,88,0.2,0,1 -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,47548,42985,17333,6095,10,2.1,5,5,12.7,77777,9,999999999,4,0.042,0,88,0.2,0,1 -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,61,84000,507,1414,238,333,733,70,39413,37868,8306,3016,350,3.6,5,5,12.7,77777,9,999999999,4,0.042,0,88,0.2,0,1 -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,17615,11610,12121,3390,20,3.1,6,6,12.7,3658,9,999999999,4,0.042,0,88,0.2,0,1 -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,2621,0,2055,631,10,1.5,8,6,12.7,3658,9,999999999,4,0.042,0,88,0.2,0,1 -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,4,4,12.7,77777,9,999999999,4,0.042,0,88,0.2,0,1 -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,12.7,77777,9,999999999,4,0.042,0,88,0.2,0,1 -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,12.8,1676,9,999999999,4,0.042,0,88,0.2,0,1 -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,-12.8,78,83600,0,0,224,0,0,0,0,0,0,0,230,2.1,10,8,12.8,1219,9,999999999,4,0.042,0,88,0.2,0,1 -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,12.8,1372,9,999999999,4,0.042,0,88,0.2,0,1 -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,12.8,1829,9,999999999,3,0.042,0,88,0.2,0,1 -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,12.8,2134,9,999999999,3,0.042,0,88,0.2,0,1 -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,12.8,77777,9,999999999,3,0.042,0,88,0.2,0,1 -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,12.8,77777,9,999999999,3,0.042,0,88,0.2,0,1 -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,12.9,77777,9,999999999,3,0.042,0,88,0.2,0,1 -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,12.9,77777,9,999999999,3,0.042,0,88,0.2,0,1 -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,12.9,77777,9,999999999,3,0.042,0,88,0.2,0,1 -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,12.9,77777,9,999999999,3,0.042,0,88,0.2,0,1 -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,12.9,77777,9,999999999,3,0.042,0,88,0.2,0,1 -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,2566,15395,1177,165,230,3.6,0,0,12.9,77777,9,999999999,3,0.042,0,88,0.2,0,1 -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,18147,62442,3601,608,270,2.6,0,0,12.9,77777,9,999999999,4,0.042,0,88,0.2,0,1 -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,35564,84515,4928,880,330,2.1,0,0,13,77777,9,999999999,4,0.042,0,88,0.2,0,1 -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,48924,94389,5888,1076,310,2.1,0,0,13,77777,9,999999999,4,0.042,0,88,0.2,0,1 -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,56339,98264,6409,1190,300,1.5,0,0,13,77777,9,999999999,4,0.042,0,88,0.2,0,1 -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,57378,98710,6544,1214,280,2.1,0,0,13,77777,9,999999999,4,0.042,0,88,0.2,0,1 -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,51664,95768,6156,1127,240,2.1,0,0,13,77777,9,999999999,4,0.042,0,88,0.2,0,1 -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,40061,88047,5353,957,200,2.1,0,0,13,77777,9,999999999,4,0.042,0,88,0.2,0,1 -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,12,83700,333,1413,278,220,829,25,23602,70806,4056,701,0,0,0,0,13,77777,9,999999999,4,0.042,0,88,0.2,0,1 -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,12,83300,113,1402,278,56,534,13,5982,32829,2164,319,50,3.1,0,0,13.1,77777,9,999999999,4,0.042,0,88,0.2,0,1 -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,-14.4,14,83300,0,0,272,0,0,0,0,0,0,0,60,3.6,0,0,13.1,77777,9,999999999,4,0.042,0,88,0.2,0,1 -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,13,83100,0,0,275,0,0,0,0,0,0,0,90,3.6,0,0,13.1,77777,9,999999999,4,0.042,0,88,0.2,0,1 -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,13,83100,0,0,273,0,0,0,0,0,0,0,100,3.6,0,0,13.1,77777,9,999999999,4,0.042,0,88,0.2,0,1 -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,13.1,77777,9,999999999,4,0.042,0,88,0.2,0,1 -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,13.1,77777,9,999999999,4,0.042,0,88,0.2,0,1 -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,13.1,77777,9,999999999,4,0.042,0,88,0.2,0,1 -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,13.2,77777,9,999999999,4,0.042,0,88,0.2,0,1 -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,13.2,77777,9,999999999,4,0.042,0,88,0.2,0,1 -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,13.2,77777,9,999999999,4,0.042,0,88,0.2,0,1 -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,13.2,77777,9,999999999,4,0.042,0,88,0.2,0,1 -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,5,1,13.2,77777,9,999999999,4,0.042,0,88,0.2,0,1 -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,20,82900,0,0,255,0,0,0,0,0,0,0,260,1.5,5,1,13.2,77777,9,999999999,4,0.042,0,88,0.2,0,1 -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,13.3,77777,9,999999999,5,0.042,0,88,0.2,0,1 -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,5,3,13.3,77777,9,999999999,5,0.042,0,88,0.2,0,1 -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,2331,11450,1496,167,230,2.1,1,0,13.3,77777,9,999999999,5,0.042,0,88,0.2,0,1 -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,18697,10874,4005,1349,160,2.6,3,0,13.3,77777,9,999999999,5,0.042,0,88,0.2,0,1 -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,33888,77570,6421,1018,160,2.6,1,0,13.3,77777,9,999999999,5,0.042,0,88,0.2,0,1 -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,-17.8,7,83400,607,1413,287,442,911,51,46826,87588,7774,1261,230,2.1,1,0,13.3,77777,9,999999999,5,0.042,0,88,0.2,0,1 -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,-16.7,8,83800,686,1413,289,519,960,52,55041,93772,7838,1348,40,2.6,0,0,13.3,77777,9,999999999,5,0.042,0,88,0.2,0,1 -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,52965,87139,9103,1460,40,4.1,3,1,13.4,77777,9,999999999,5,0.042,0,88,0.2,0,1 -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,53766,47540,8310,3184,50,5.7,4,1,13.4,77777,9,999999999,5,0.042,0,88,0.2,0,1 -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,-17.8,7,83500,517,1413,287,352,807,57,42445,40370,6888,2540,60,5.2,4,0,13.4,77777,9,999999999,5,0.042,0,88,0.2,0,1 -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,24068,21267,5943,2016,90,4.1,7,0,13.4,77777,9,999999999,5,0.042,0,88,0.2,0,1 -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,5873,0,2490,753,100,2.1,5,0,13.4,77777,9,999999999,5,0.042,0,88,0.2,0,1 -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,13.4,77777,9,999999999,5,0.042,0,88,0.2,0,1 -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,13.4,77777,9,999999999,6,0.042,0,88,0.2,0,1 -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,13.5,77777,9,999999999,6,0.042,0,88,0.2,0,1 -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,13.5,77777,9,999999999,6,0.042,0,88,0.2,0,1 -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,13.5,77777,9,999999999,6,0.042,0,88,0.2,0,1 -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,-7.8,79,83600,0,0,224,0,0,0,0,0,0,0,150,3.1,0,0,13.5,77777,9,999999999,6,0.042,0,88,0.2,0,1 -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,13.5,77777,9,999999999,6,0.042,0,88,0.2,0,1 -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,13.5,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,13.5,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,-6.1,91,83000,0,0,226,0,0,0,0,0,0,0,170,3.1,0,0,13.6,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,-6.1,91,83000,0,0,226,0,0,0,0,0,0,0,180,3.1,0,0,13.6,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,-5.6,95,83300,0,0,226,0,0,0,0,0,0,0,190,3.6,0,0,13.6,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,-6.1,91,83000,0,0,226,0,0,0,0,0,0,0,190,3.6,0,0,13.6,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,13.6,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,2488,0,1133,337,200,2.1,0,0,13.6,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,17168,54192,5144,697,130,2.1,0,0,13.6,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,34253,77198,6870,1048,0,0,0,0,13.7,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,61,83300,611,1413,248,446,907,53,47520,87809,8066,1285,20,2.6,0,0,13.7,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,58,83600,690,1413,250,517,938,59,54978,92148,8836,1433,30,2.6,0,0,13.7,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,56129,92663,8822,1446,40,2.1,0,0,13.7,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,50619,89672,8462,1350,40,3.6,0,0,13.7,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,39195,81697,7421,1140,30,2.6,0,0,13.7,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,23041,63873,5736,825,20,3.1,0,0,13.7,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,6385,0,2284,707,360,2.1,0,0,13.8,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,13.8,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,13.8,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,-6.1,60,83200,0,0,243,0,0,0,0,0,0,0,290,2.1,0,0,13.8,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,13.8,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,13.8,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,13.8,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,13.9,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,-7.8,79,82900,0,0,224,0,0,0,0,0,0,0,210,3.1,1,0,13.9,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,13.9,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,13.9,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,13.9,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,13.9,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,13.9,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,14,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,2609,0,1136,340,200,4.1,0,0,14,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,17450,54410,5295,705,230,4.6,0,0,14,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,34786,77692,7162,1067,240,4.6,0,0,14,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,48183,88333,8491,1316,220,3.6,0,0,14,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,55714,92619,9110,1457,210,3.1,0,0,14,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,16,82500,706,1413,300,527,912,71,55556,89406,10501,1542,180,2.1,3,1,14,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,48225,42632,14616,5363,160,1.5,2,2,14.1,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,37332,76445,7560,1154,130,3.1,1,1,14.1,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,-12.2,13,82500,348,1413,304,204,613,53,23707,20831,6174,2101,120,2.1,2,2,14.1,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,3799,0,3024,896,100,3.6,3,3,14.1,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,14.1,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,14.1,77777,9,999999999,3,0.043,0,88,0.2,0,1 -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,14.1,77777,9,999999999,3,0.043,0,88,0.2,0,1 -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,14.2,77777,9,999999999,3,0.043,0,88,0.2,0,1 -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,14.2,77777,9,999999999,3,0.043,0,88,0.2,0,1 -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,14.2,4267,9,999999999,3,0.043,0,88,0.2,0,1 -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,14.2,6706,9,999999999,3,0.043,0,88,0.2,0,1 -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,14.2,6706,9,999999999,3,0.043,0,88,0.2,0,1 -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,41,82300,0,0,256,0,0,0,0,0,0,0,160,4.6,6,5,14.2,6706,9,999999999,3,0.043,0,88,0.2,0,1 -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,14.2,77777,9,999999999,3,0.043,0,88,0.2,0,1 -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,14.3,77777,9,999999999,3,0.043,0,88,0.2,0,1 -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,-12.2,35,82700,0,0,242,0,0,0,0,0,0,0,190,5.2,1,1,14.3,77777,9,999999999,3,0.043,0,88,0.2,0,1 -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,14.3,77777,9,999999999,3,0.043,0,88,0.2,0,1 -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,14.3,77777,9,999999999,3,0.043,0,88,0.2,0,1 -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,2882,16256,1341,185,170,4.1,0,0,14.3,77777,9,999999999,3,0.043,0,88,0.2,0,1 -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,19066,63085,3910,645,150,4.6,0,0,14.3,77777,9,999999999,3,0.043,0,88,0.2,0,1 -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,36711,84902,5372,937,170,6.7,0,0,14.3,77777,9,999999999,3,0.043,0,88,0.2,0,1 -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,50260,94515,6459,1152,190,4.6,0,0,14.4,77777,9,999999999,3,0.043,0,88,0.2,0,1 -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,10,83000,699,1412,288,543,1005,46,57843,98508,6967,1270,230,4.1,0,0,14.4,77777,9,999999999,3,0.043,0,88,0.2,0,1 -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,59070,98983,6955,1279,210,4.6,0,0,14.4,77777,9,999999999,3,0.043,0,88,0.2,0,1 -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,53582,96382,6575,1190,210,4.6,0,0,14.4,77777,9,999999999,3,0.043,0,88,0.2,0,1 -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,6,83100,532,1412,289,393,944,37,41934,89001,5786,1017,200,1.5,0,0,14.4,77777,9,999999999,3,0.043,0,88,0.2,0,1 -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,-18.9,7,83100,353,1412,286,238,839,28,25442,72592,4512,760,180,2.6,0,0,14.4,77777,9,999999999,3,0.043,0,88,0.2,0,1 -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,6793,32024,2958,370,150,3.1,1,1,14.5,77777,9,999999999,3,0.043,0,88,0.2,0,1 -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,17,83000,1,106,264,0,22,0,0,0,0,0,170,5.7,1,1,14.5,77777,9,999999999,3,0.043,0,88,0.2,0,1 -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,14.5,77777,9,999999999,3,0.043,0,88,0.2,0,1 -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,14.5,77777,9,999999999,3,0.043,0,88,0.2,0,1 -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,14.5,77777,9,999999999,3,0.043,0,88,0.2,0,1 -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,14.5,77777,9,999999999,3,0.043,0,88,0.2,0,1 -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,14.5,77777,9,999999999,3,0.043,0,88,0.2,0,1 -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,-11.1,39,82800,0,0,238,0,0,0,0,0,0,0,210,8.8,0,0,14.6,77777,9,999999999,3,0.043,0,88,0.2,0,1 -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,-11.7,37,82700,0,0,242,0,0,0,0,0,0,0,210,7.7,1,1,14.6,77777,9,999999999,3,0.043,0,88,0.2,0,1 -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,14.6,4877,9,999999999,2,0.043,0,88,0.2,0,1 -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,14.6,77777,9,999999999,2,0.043,0,88,0.2,0,1 -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,14.6,77777,9,999999999,2,0.043,0,88,0.2,0,1 -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,14.6,77777,9,999999999,2,0.043,0,88,0.2,0,1 -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,14.6,77777,9,999999999,2,0.043,0,88,0.2,0,1 -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,-12.8,33,83000,0,0,237,0,0,0,0,0,0,0,230,5.7,1,0,14.7,77777,9,999999999,2,0.043,0,88,0.2,0,1 -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,2586,0,1352,397,210,8.2,1,0,14.7,77777,9,999999999,3,0.043,0,88,0.2,0,1 -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,-12.2,24,83500,284,1412,255,167,641,38,19537,12686,4454,1500,220,5.2,0,0,14.7,77777,9,999999999,3,0.043,0,88,0.2,0,1 -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,28533,23887,14832,4782,230,5.2,4,4,14.7,77777,9,999999999,3,0.043,0,88,0.2,0,1 -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,38538,30081,18269,6318,250,4.6,6,6,14.7,7620,9,999999999,3,0.043,0,88,0.2,0,1 -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,-12.8,12,83500,704,1412,313,338,256,210,38180,21321,23841,8151,270,5.2,7,6,14.7,7620,9,999999999,3,0.043,0,88,0.2,0,1 -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,48817,38662,18705,6838,320,2.6,4,4,14.7,77777,9,999999999,3,0.043,0,88,0.2,0,1 -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,9,83500,659,1412,308,496,904,74,52064,87664,10988,1464,340,4.1,2,2,14.8,77777,9,999999999,3,0.043,0,88,0.2,0,1 -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,9,83500,537,1412,311,329,575,110,37853,36138,12702,4450,310,3.1,8,3,14.8,77777,9,999999999,3,0.043,0,88,0.2,0,1 -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,18890,9675,14749,3960,290,6.2,7,7,14.8,7620,9,999999999,3,0.043,0,88,0.2,0,1 -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,3599,0,3043,918,290,6.2,9,8,14.8,7620,9,999999999,3,0.043,0,88,0.2,0,1 -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,14.8,7620,9,999999999,3,0.043,0,88,0.2,0,1 -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,14.8,6706,9,999999999,3,0.043,0,88,0.2,0,1 -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,14.8,6706,9,999999999,3,0.043,0,88,0.2,0,1 -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,14.9,6706,9,999999999,3,0.043,0,88,0.2,0,1 -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,14.9,6706,9,999999999,3,0.043,0,88,0.2,0,1 -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,35,83400,0,0,260,0,0,0,0,0,0,0,130,4.6,3,3,14.9,77777,9,999999999,3,0.043,0,88,0.2,0,1 -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,14.9,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,14.9,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,14.9,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,14.9,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,20,82900,0,0,273,0,0,0,0,0,0,0,190,5.7,8,8,15,4572,9,999999999,4,0.043,0,88,0.2,0,1 -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,15,7620,9,999999999,4,0.043,0,88,0.2,0,1 -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,15,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,15,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,2389,0,2069,546,220,4.6,8,6,15,5486,9,999999999,4,0.043,0,88,0.2,0,1 -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,9000,2560,7109,2239,250,4.1,9,7,15,5486,9,999999999,4,0.043,0,88,0.2,0,1 -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,19815,7262,15877,5030,260,3.1,9,8,15,5486,9,999999999,4,0.043,0,88,0.2,0,1 -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,42882,37162,13801,5050,280,2.6,9,4,15.1,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,39096,22382,23848,8187,320,3.1,9,5,15.1,7315,9,999999999,5,0.043,0,88,0.2,0,1 -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,42158,26409,23690,8226,0,0,9,7,15.1,6096,9,999999999,5,0.043,0,88,0.2,0,1 -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,-7.8,18,83400,664,1412,320,456,615,167,52040,46259,19144,6744,350,2.1,8,6,15.1,5486,9,999999999,5,0.043,0,88,0.2,0,1 -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,36126,32967,12277,4345,10,2.6,4,2,15.1,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,18965,14671,9684,3091,320,3.1,4,3,15.1,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,6292,0,3153,954,310,5.7,2,1,15.1,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,15.2,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,15.2,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,15.2,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,15.2,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,15.2,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,15.2,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,15.2,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,15.3,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,15.3,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,15.3,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,15.3,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,15.3,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,15.3,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,15.3,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,3074,0,1254,379,150,3.1,0,0,15.4,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,18338,55781,5294,730,150,2.1,0,0,15.4,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,39540,37547,7282,2649,0,0,4,0,15.4,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,35877,18181,25749,7987,0,0,8,6,15.4,9144,9,999999999,7,0.043,0,88,0.2,0,1 -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,44157,27362,26365,8791,30,3.1,7,7,15.4,9144,9,999999999,7,0.043,0,88,0.2,0,1 -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,-9.4,22,83200,726,1411,291,479,554,194,54654,44253,22242,7883,320,4.1,10,4,15.4,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,33494,20008,19061,6745,330,5.2,10,5,15.4,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,39269,36853,15156,5166,70,5.7,9,4,15.5,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,19356,15594,8971,2931,20,11.3,10,2,15.5,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,5595,45,5291,1368,40,9.8,10,5,15.5,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,15.5,7620,9,999999999,7,0.043,0,88,0.2,0,1 -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,15.5,7620,9,999999999,7,0.043,0,88,0.2,0,1 -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,-7.2,38,82900,0,0,281,0,0,0,0,0,0,0,60,4.6,9,7,15.5,7620,9,999999999,7,0.043,0,88,0.2,0,1 -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,15.6,6706,9,999999999,7,0.043,0,88,0.2,0,1 -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,-5.6,44,82800,0,0,270,0,0,0,0,0,0,0,40,6.7,2,2,15.6,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,48,82800,0,0,271,0,0,0,0,0,0,0,60,5.2,4,3,15.6,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,15.6,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,15.6,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,15.6,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,15.6,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,91,82400,0,0,235,0,0,0,0,0,0,0,220,4.1,8,1,15.7,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,-6.7,86,82600,0,0,229,0,0,0,0,0,0,0,230,5.7,7,1,15.7,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,15.7,77777,9,999999999,8,0.043,0,88,0.2,0,1 -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,15.7,77777,9,999999999,8,0.043,0,88,0.2,0,1 -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,2094,0,1878,526,240,4.1,10,4,15.7,77777,9,999999999,8,0.043,0,88,0.2,0,1 -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,8296,2839,5543,1838,240,3.6,10,4,15.7,77777,9,999999999,8,0.043,0,88,0.2,0,1 -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,28143,19665,17852,5470,240,3.1,8,4,15.7,77777,9,999999999,8,0.043,0,88,0.2,0,1 -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,78,82800,636,1411,222,366,472,153,41857,34402,17573,6194,290,4.1,6,2,15.8,77777,9,999999999,8,0.043,0,88,0.2,0,1 -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,57028,47640,13261,5088,290,4.6,3,1,15.8,77777,9,999999999,8,0.043,0,88,0.2,0,1 -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,61,82700,731,1411,224,541,895,77,56910,88006,11297,1612,340,5.2,2,0,15.8,77777,9,999999999,8,0.043,0,88,0.2,0,1 -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,52130,87483,9560,1454,340,3.6,0,0,15.8,77777,9,999999999,8,0.043,0,88,0.2,0,1 -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,40801,79917,8411,1228,30,2.6,0,0,15.8,77777,9,999999999,9,0.043,0,88,0.2,0,1 -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,27193,23369,5234,1837,0,0,1,0,15.8,77777,9,999999999,9,0.043,0,88,0.2,0,1 -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,-7.8,79,82700,153,1411,224,69,402,26,7847,0,2963,921,110,2.1,1,0,15.8,77777,9,999999999,9,0.043,0,88,0.2,0,1 -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,-6.7,86,82800,3,223,225,0,17,0,0,0,0,0,180,5.7,0,0,15.9,77777,9,999999999,9,0.043,0,88,0.2,0,1 -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,15.9,77777,9,999999999,9,0.043,0,88,0.2,0,1 -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,91,82800,0,0,230,0,0,0,0,0,0,0,170,5.7,0,0,15.9,77777,9,999999999,9,0.043,0,88,0.2,0,1 -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,15.9,77777,9,999999999,9,0.043,0,88,0.2,0,1 -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,15.9,77777,9,999999999,9,0.043,0,88,0.2,0,1 -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,-4.3,90,82900,0,0,234,0,0,0,0,0,0,0,180,5.1,0,0,15.9,20446,9,999999999,10,0.043,0,88,0.2,0,1 -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,1,1,15.9,18892,9,999999999,10,0.043,0,88,0.2,0,1 -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,16,17338,9,999999999,10,0.043,0,88,0.2,0,1 -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,16,15785,9,999999999,10,0.043,0,88,0.2,0,1 -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,83,82500,0,0,246,0,0,0,0,0,0,0,240,5.8,2,2,16,14231,9,999999999,10,0.043,0,88,0.2,0,1 -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,16,12677,9,999999999,10,0.043,0,88,0.2,0,1 -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,16,11123,9,999999999,10,0.043,0,88,0.2,0,1 -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,16,9569,9,999999999,10,0.043,0,88,0.2,0,1 -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,16,8015,9,999999999,10,0.043,0,88,0.2,0,1 -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,74,82500,72,1117,269,17,52,14,1908,0,1574,465,270,5.9,10,5,16.1,6462,9,999999999,10,0.043,0,88,0.2,0,1 -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,67,82600,298,1411,280,145,148,114,15557,7490,12286,3207,310,5.8,10,7,16.1,4908,9,999999999,10,0.043,0,88,0.2,0,1 -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,58,82700,496,1411,279,281,397,141,31350,26626,15799,5087,300,3.6,10,6,16.1,3354,9,999999999,10,0.043,0,88,0.2,0,1 -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,-3.4,53,82600,641,1411,282,256,349,97,30340,21337,11533,4342,360,5.1,10,6,16.1,1800,9,999999999,10,0.043,0,88,0.2,0,1 -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,54484,44360,18162,6713,290,3.3,10,5,16.4,3483,9,999999999,10,0.043,0,88,0.2,0,1 -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,35765,8517,30496,9805,190,4.8,10,6,16.7,5167,9,999999999,9,0.043,0,88,0.2,0,1 -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,44143,26457,28744,8947,180,4.1,10,4,17,6850,9,999999999,9,0.043,0,88,0.2,0,1 -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,28276,21040,12741,4532,210,4.9,9,5,17.3,8533,9,999999999,9,0.043,0,88,0.2,0,1 -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,17906,11554,11276,3519,180,4.8,8,4,17.6,10217,9,999999999,9,0.043,0,88,0.2,0,1 -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,4559,0,2969,930,180,5.1,9,5,17.8,11900,9,999999999,9,0.043,0,88,0.2,0,1 -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,18.1,13583,9,999999999,9,0.043,0,88,0.2,0,1 -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,-5.1,71,82800,0,0,253,0,0,0,0,0,0,0,50,0.7,5,4,18.4,15267,9,999999999,9,0.043,0,88,0.2,0,1 -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,18.7,16950,9,999999999,9,0.043,0,88,0.2,0,1 -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,19,18633,9,999999999,9,0.043,0,88,0.2,0,1 -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,19.3,20317,9,999999999,9,0.043,0,88,0.2,0,1 -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,19.6,77777,9,999999999,8,0.043,0,88,0.2,0,1 -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,19.9,77777,9,999999999,8,0.043,0,88,0.2,0,1 -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,20.2,77777,9,999999999,8,0.043,0,88,0.2,0,1 -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,-6.1,91,82600,0,0,230,0,0,0,0,0,0,0,190,4.1,1,1,20.5,77777,9,999999999,8,0.043,0,88,0.2,0,1 -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,20.7,4267,9,999999999,8,0.043,0,88,0.2,0,1 -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,21,4572,9,999999999,8,0.043,0,88,0.2,0,1 -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,21.3,4572,9,999999999,8,0.043,0,88,0.2,0,1 -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,10,10,21.6,7010,9,999999999,8,0.043,0,88,0.2,0,1 -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,-13.9,70,82600,0,0,215,0,0,0,0,0,0,0,360,3.6,7,5,21.9,8534,9,999999999,8,0.043,0,88,0.2,0,1 -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,3451,0,2596,666,40,3.6,8,4,22.2,77777,9,999999999,8,0.043,0,88,0.2,0,1 -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,17231,11617,4697,1594,320,2.6,6,2,22.5,77777,9,999999999,8,0.043,0,88,0.2,0,1 -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,31316,27837,13961,4669,340,6.2,5,3,22.8,77777,9,999999999,8,0.043,0,88,0.2,0,1 -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,51203,45101,10559,4009,10,5.7,6,2,23.1,77777,9,999999999,8,0.043,0,88,0.2,0,1 -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,56421,46527,21617,7729,40,5.2,8,3,23.4,77777,9,999999999,8,0.043,0,88,0.2,0,1 -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,62323,53020,19315,7128,70,3.6,6,5,23.6,7620,9,999999999,7,0.043,0,88,0.2,0,1 -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,47636,38845,10522,4056,70,4.1,6,4,23.9,7620,9,999999999,7,0.043,0,88,0.2,0,1 -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,22284,13372,12229,4390,70,3.6,9,7,24.2,3962,9,999999999,7,0.043,0,88,0.2,0,1 -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,8557,0,8621,3178,110,3.1,10,10,24.5,2896,9,999999999,7,0.043,0,88,0.2,0,1 -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,3222,0,3244,1125,100,3.1,10,10,24.8,2438,9,999999999,7,0.043,0,88,0.2,0,1 -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,25.1,2743,9,999999999,7,0.043,0,88,0.2,0,1 -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,-6,84,82200,0,0,264,0,0,0,0,0,0,0,100,4.6,10,10,25.4,244,9,999999999,7,0.043,0,88,0.2,0,1 -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,-6.7,86,82200,0,0,260,0,0,0,0,0,0,0,120,4.1,10,10,25.7,152,9,999999999,7,0.043,0,88,0.2,0,1 -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,-6.1,91,82200,0,0,260,0,0,0,0,0,0,0,130,5.2,10,10,26,183,9,999999999,7,0.043,0,88,0.2,0,1 -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,26.3,213,9,999999999,7,0.043,0,88,0.2,0,1 -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,26.5,305,9,999999999,7,0.043,0,88,0.2,0,1 -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,26.8,427,9,999999999,7,0.043,0,88,0.2,0,1 -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,27.1,77777,9,999999999,7,0.043,0,88,0.2,0,1 -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,27.4,1128,9,999999999,7,0.043,0,88,0.2,0,1 -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,27.7,1219,9,999999999,7,0.043,0,88,0.2,0,1 -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,28,701,9,999999999,7,0.043,0,88,0.2,0,1 -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,28.3,1676,9,999999999,7,0.043,0,88,0.2,0,1 -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,82,81900,0,0,224,0,0,0,0,0,0,0,180,1.5,10,10,28.6,244,9,999999999,6,0.043,0,88,0.2,0,1 -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,-17.2,81,81800,0,0,204,0,0,0,0,0,0,0,320,1.5,10,8,28.9,2134,9,999999999,6,0.043,0,88,0.2,0,1 -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,-13.3,74,81800,78,1140,210,30,98,24,3246,0,2605,680,10,2.1,6,2,29.2,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,21013,15497,4704,1600,350,2.6,0,0,29.4,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,41607,39146,6646,2446,330,2.6,0,0,29.7,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,50023,85765,9873,1430,350,3.6,0,0,30,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,57811,90099,10736,1600,350,3.1,0,0,30.3,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,59260,90981,10856,1630,20,3.1,0,0,30.6,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,54030,88267,10242,1508,10,3.1,0,0,30.9,77777,9,999999999,6,0.043,0,88,0.2,0,1 -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,42644,80962,9117,1276,360,3.1,0,0,31.2,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,29595,26146,5478,1933,360,4.1,0,0,31.5,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,9122,0,3199,1004,350,3.6,0,0,31.8,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,78,81700,5,294,215,0,21,0,0,0,0,0,50,2.6,0,0,32.1,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,-12.2,82,81700,0,0,204,0,0,0,0,0,0,0,90,2.1,0,0,32.3,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,32.6,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,32.9,6096,9,999999999,5,0.043,0,88,0.2,0,1 -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,33.2,6096,9,999999999,5,0.043,0,88,0.2,0,1 -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,33.5,6096,9,999999999,4,0.043,0,88,0.2,0,1 -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,33.8,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,34.1,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,34.4,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,34.7,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,-14.4,67,82000,0,0,203,0,0,0,0,0,0,0,190,2.1,0,0,35,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,35.2,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,35.5,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,35.8,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,2906,0,1904,555,170,2.1,3,1,36.1,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,21120,16369,5145,1741,170,5.2,1,0,36.4,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,41327,39522,7324,2687,160,4.6,1,0,36.7,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,57653,50537,8901,3423,180,3.1,1,0,37,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,57113,87576,11144,1624,320,1.5,1,1,37.3,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,-8.3,49,82600,753,1410,246,540,866,77,56876,85488,11262,1654,350,3.6,1,1,37.6,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,58907,49196,9415,3664,350,3.1,1,1,37.9,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,49337,45339,7757,2914,20,2.1,0,0,38.1,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,29855,27027,5817,2051,10,4.6,0,0,38.4,77777,9,999999999,4,0.043,0,88,0.2,0,1 -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,9074,0,3524,1096,360,2.1,1,0,38.7,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,39,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,39.3,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,39.6,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,39.9,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,40.2,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,-11.7,56,83200,0,0,228,0,0,0,0,0,0,0,160,1.5,5,2,40.5,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,-11.7,56,82800,0,0,221,0,0,0,0,0,0,0,180,1.5,0,0,40.8,77777,9,999999999,5,0.043,0,88,0.2,0,1 -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,41,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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,41.3,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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,41.6,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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,41.9,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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,55,83300,0,0,222,0,0,0,0,0,0,0,200,3.1,6,6,42.2,6096,9,999999999,5,0.044,0,88,0.2,0,1 -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,58,83000,0,0,212,0,0,0,0,0,0,0,170,3.6,4,2,42.5,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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,42.8,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,52,83000,84,1186,222,29,120,20,3209,0,2218,631,180,3.1,7,5,43.1,6096,9,999999999,6,0.044,0,88,0.2,0,1 -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,14922,5794,12381,3346,180,4.1,10,8,43.4,6096,9,999999999,6,0.044,0,88,0.2,0,1 -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,26426,17401,16307,5293,210,4.1,9,6,43.7,7620,9,999999999,6,0.044,0,88,0.2,0,1 -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,40988,31974,17343,6229,0,0,9,6,43.9,7620,9,999999999,6,0.044,0,88,0.2,0,1 -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,49864,37089,20940,7615,0,0,7,5,44.2,7620,9,999999999,6,0.044,0,88,0.2,0,1 -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,-11.1,27,83300,758,1409,274,443,494,177,51229,38088,20562,7567,80,2.6,10,6,44.5,6706,9,999999999,6,0.044,0,88,0.2,0,1 -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,-11.1,27,83200,703,1409,274,293,242,172,33621,18524,19826,7110,70,2.6,10,6,44.8,6706,9,999999999,6,0.044,0,88,0.2,0,1 -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,-11.7,26,83200,581,1409,281,261,107,217,28681,9200,23972,7218,80,2.6,10,8,45.1,6096,9,999999999,6,0.044,0,88,0.2,0,1 -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,27959,28045,12699,3922,80,4.1,10,5,45.4,6096,9,999999999,6,0.044,0,88,0.2,0,1 -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,9650,3348,7668,1805,90,3.1,10,5,45.7,6401,9,999999999,7,0.044,0,88,0.2,0,1 -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,46,6706,9,999999999,7,0.044,0,88,0.2,0,1 -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,61,83000,0,0,238,0,0,0,0,0,0,0,100,2.6,8,5,46.3,6706,9,999999999,7,0.044,0,88,0.2,0,1 -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,46.6,6706,9,999999999,7,0.044,0,88,0.2,0,1 -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,-13.3,48,83100,0,0,235,0,0,0,0,0,0,0,0,0,9,6,46.8,6706,9,999999999,7,0.044,0,88,0.2,0,1 -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,47.1,6706,9,999999999,7,0.044,0,88,0.2,0,1 -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,47.4,6706,9,999999999,7,0.044,0,88,0.2,0,1 -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,47.7,6706,9,999999999,7,0.044,0,88,0.2,0,1 -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,47,84000,0,0,218,0,0,0,0,0,0,0,260,3.3,2,2,48,77777,9,999999999,2,0.053,0,88,0.2,0,1 -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,38,84000,0,0,218,0,0,0,0,0,0,0,270,4.1,5,3,48,77777,9,999999999,2,0.053,0,88,0.2,0,1 -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,77777,9,999999999,2,0.053,0,88,0.2,0,1 -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,33,84000,0,0,205,0,0,0,0,0,0,0,270,5.7,1,0,48,77777,9,999999999,2,0.053,0,88,0.2,0,1 -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,31,84000,0,0,211,0,0,0,0,0,0,0,260,6.2,1,1,48,77777,9,999999999,2,0.053,0,88,0.2,0,1 -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,77777,9,999999999,2,0.053,0,88,0.2,0,1 -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,77777,9,999999999,2,0.053,0,88,0.2,0,1 -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,30,84000,88,1209,212,38,360,12,4037,20293,1993,261,270,5.2,1,1,112,77777,9,999999999,2,0.053,0,88,0.2,0,1 -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,-18.9,29,84000,321,1409,215,209,798,28,22302,67364,4520,732,280,4.6,0,0,112,77777,9,999999999,2,0.053,0,88,0.2,0,1 -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,40805,87464,6090,1040,290,5.7,0,0,112,77777,9,999999999,2,0.053,0,88,0.2,0,1 -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,54844,96397,7140,1262,270,6.2,0,0,112,77777,9,999999999,2,0.053,0,88,0.2,0,1 -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,18,84000,751,1409,228,592,1015,51,62800,99997,7625,1391,280,4.1,0,0,112,77777,9,999999999,2,0.053,0,88,0.2,0,1 -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,64289,100602,7751,1420,340,2.6,0,0,112,77777,9,999999999,2,0.053,0,88,0.2,0,1 -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,58998,98457,7388,1325,90,5.7,0,0,112,77777,9,999999999,2,0.053,0,88,0.2,0,1 -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,47289,92052,6486,1130,110,6.2,0,0,112,77777,9,999999999,2,0.053,0,88,0.2,0,1 -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,30397,77625,5104,859,110,6.2,0,0,112,77777,9,999999999,2,0.053,0,88,0.2,0,1 -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,10992,45004,3286,482,150,3.6,0,0,112,77777,9,999999999,2,0.053,0,88,0.2,0,1 -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,48,83700,9,387,213,3,83,1,0,0,0,0,130,2.1,0,0,80,77777,9,999999999,2,0.053,0,88,0.2,0,1 -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,50,83700,0,0,211,0,0,0,0,0,0,0,160,2.6,0,0,48,77777,9,999999999,2,0.053,0,88,0.2,0,1 -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,77777,9,999999999,2,0.053,0,88,0.2,0,1 -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,32,77777,9,999999999,2,0.053,0,88,0.2,0,1 -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,-17.2,52,83600,0,0,200,0,0,0,0,0,0,0,140,2.1,0,0,32,77777,9,999999999,2,0.053,0,88,0.2,0,1 -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,-17.8,49,83600,0,0,200,0,0,0,0,0,0,0,180,2.6,0,0,32,77777,9,999999999,2,0.053,0,88,0.2,0,1 -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,77777,9,999999999,2,0.053,0,88,0.2,0,1 -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,-18.9,44,83600,0,0,199,0,0,0,0,0,0,0,190,2.1,0,0,32,77777,9,999999999,2,0.053,0,88,0.2,0,1 -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,77777,9,999999999,2,0.053,0,88,0.2,0,1 -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,77777,9,999999999,2,0.053,0,88,0.2,0,1 -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,77777,9,999999999,2,0.053,0,88,0.2,0,1 -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,53,83500,0,0,192,0,0,0,0,0,0,0,0,0,1,1,48,77777,9,999999999,2,0.053,0,88,0.2,0,1 -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,77777,9,999999999,2,0.053,0,88,0.2,0,1 -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,53,83500,0,0,188,0,0,0,0,0,0,0,190,2.6,0,0,112,77777,9,999999999,2,0.053,0,88,0.2,0,1 -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,42,83500,92,1232,196,40,342,14,4234,19489,2310,266,160,4.1,0,0,112,77777,9,999999999,2,0.053,0,88,0.2,0,1 -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,21886,63218,5282,782,150,3.1,0,0,112,77777,9,999999999,3,0.053,0,88,0.2,0,1 -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,40119,83822,7119,1127,180,4.6,0,0,112,77777,9,999999999,3,0.053,0,88,0.2,0,1 -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,54166,93145,8282,1371,200,4.6,0,0,112,77777,9,999999999,3,0.053,0,88,0.2,0,1 -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,-13.3,22,83300,756,1408,254,588,983,60,62228,97026,8888,1522,190,2.6,0,0,112,77777,9,999999999,3,0.053,0,88,0.2,0,1 -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,63554,97396,9007,1551,110,1.5,0,0,112,77777,9,999999999,3,0.053,0,88,0.2,0,1 -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,58408,95320,8660,1451,350,3.1,0,0,96,77777,9,999999999,3,0.053,0,88,0.2,0,1 -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,46923,88960,7650,1236,350,5.2,0,0,64,77777,9,999999999,3,0.053,0,88,0.2,0,1 -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,30004,74122,6158,940,360,4.1,0,0,64,77777,9,999999999,3,0.053,0,88,0.2,0,1 -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,10850,41245,4065,503,350,3.1,0,0,64,77777,9,999999999,3,0.053,0,88,0.2,0,1 -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,77777,9,999999999,3,0.053,0,88,0.2,0,1 -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,77777,9,999999999,3,0.053,0,88,0.2,0,1 -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,77777,9,999999999,3,0.053,0,88,0.2,0,1 -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,77777,9,999999999,3,0.053,0,88,0.2,0,1 -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,77777,9,999999999,3,0.053,0,88,0.2,0,1 -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,77777,9,999999999,3,0.053,0,88,0.2,0,1 -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,-13.9,70,83500,0,0,210,0,0,0,0,0,0,0,150,3.1,2,2,24,77777,9,999999999,3,0.053,0,88,0.2,0,1 -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,3,0.053,0,88,0.2,0,1 -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,-12.2,82,83400,0,0,225,0,0,0,0,0,0,0,170,1.5,10,8,19.2,4572,9,999999999,3,0.053,0,88,0.2,0,1 -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,-14.4,67,83400,0,0,219,0,0,0,0,0,0,0,190,2.1,7,7,19.2,7010,9,999999999,3,0.053,0,88,0.2,0,1 -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,3,0.053,0,88,0.2,0,1 -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,7010,9,999999999,3,0.053,0,88,0.2,0,1 -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,77777,9,999999999,3,0.053,0,88,0.2,0,1 -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,77777,9,999999999,3,0.053,0,88,0.2,0,1 -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,3817,0,2138,634,120,1.5,4,4,80,77777,9,999999999,3,0.053,0,88,0.2,0,1 -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,23810,18686,4628,1598,200,4.1,2,2,80,77777,9,999999999,3,0.053,0,88,0.2,0,1 -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,36,83100,530,1408,233,357,725,83,41945,40979,9780,3540,180,2.1,3,3,80,77777,9,999999999,3,0.053,0,88,0.2,0,1 -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,52518,45766,13501,5079,280,1.5,4,2,80,77777,9,999999999,3,0.053,0,88,0.2,0,1 -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,52789,38514,23770,8484,340,2.1,8,4,64,77777,9,999999999,3,0.053,0,88,0.2,0,1 -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,-7.8,36,82900,777,1408,268,563,751,148,66200,54044,17474,6665,350,3.1,7,2,48,77777,9,999999999,3,0.053,0,88,0.2,0,1 -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,47344,36145,17522,6502,20,3.1,8,4,16,77777,9,999999999,3,0.053,0,88,0.2,0,1 -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,46654,42814,11228,4151,90,4.6,7,2,12.8,77777,9,999999999,3,0.053,0,88,0.2,0,1 -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,23155,19200,6068,2160,50,2.6,8,3,16,77777,9,999999999,3,0.053,0,88,0.2,0,1 -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,-6.1,60,83000,196,1408,257,83,143,63,8971,2482,6834,1828,60,4.6,5,5,16,77777,9,999999999,3,0.053,0,88,0.2,0,1 -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,45,83100,12,434,250,2,33,1,0,0,0,0,120,4.1,4,4,16,77777,9,999999999,3,0.053,0,88,0.2,0,1 -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,77777,9,999999999,3,0.053,0,88,0.2,0,1 -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,1,1,24,77777,9,999999999,3,0.053,0,88,0.2,0,1 -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,77777,9,999999999,3,0.053,0,88,0.2,0,1 -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,-12.8,50,83500,0,0,220,0,0,0,0,0,0,0,200,1.5,0,0,24,77777,9,999999999,3,0.053,0,88,0.2,0,1 -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,77777,9,999999999,3,0.053,0,88,0.2,0,1 -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,77777,9,999999999,3,0.053,0,88,0.2,0,1 -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,77777,9,999999999,3,0.054,0,88,0.2,0,1 -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,58,83500,0,0,206,0,0,0,0,0,0,0,240,2.1,0,0,32,77777,9,999999999,3,0.054,0,88,0.2,0,1 -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,77777,9,999999999,3,0.054,0,88,0.2,0,1 -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,77777,9,999999999,3,0.054,0,88,0.2,0,1 -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,32,77777,9,999999999,3,0.054,0,88,0.2,0,1 -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,77777,9,999999999,3,0.054,0,88,0.2,0,1 -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,77777,9,999999999,3,0.054,0,88,0.2,0,1 -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,-15,64,83300,99,1279,206,41,329,16,4683,0,1830,561,200,1.5,2,1,80,77777,9,999999999,3,0.054,0,88,0.2,0,1 -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,17727,14008,7110,2350,0,0,3,3,80,77777,9,999999999,3,0.054,0,88,0.2,0,1 -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,43046,42534,11088,3967,330,2.6,2,2,64,77777,9,999999999,3,0.054,0,88,0.2,0,1 -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,-9.4,45,83200,683,1408,245,490,838,83,59283,50800,10070,3888,350,2.1,3,1,64,77777,9,999999999,4,0.054,0,88,0.2,0,1 -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,64333,51377,13368,5225,360,2.6,2,2,64,77777,9,999999999,4,0.054,0,88,0.2,0,1 -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,60620,47201,15182,5901,340,4.1,3,3,64,77777,9,999999999,4,0.054,0,88,0.2,0,1 -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,62440,51160,10822,4226,120,2.1,2,2,64,77777,9,999999999,4,0.054,0,88,0.2,0,1 -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,42937,78659,7928,1268,340,3.1,4,3,48,77777,9,999999999,4,0.054,0,88,0.2,0,1 -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,-6.7,40,83100,426,1408,282,201,270,119,22345,16120,13283,4163,60,2.6,9,7,48,7010,9,999999999,4,0.054,0,88,0.2,0,1 -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,4309,0,4339,1492,80,3.1,10,10,64,3962,9,999999999,4,0.054,0,88,0.2,0,1 -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,3962,9,999999999,4,0.054,0,88,0.2,0,1 -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,76,83400,0,0,267,0,0,0,0,0,0,0,350,3.6,10,9,32,3962,9,999999999,4,0.054,0,88,0.2,0,1 -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,3962,9,999999999,4,0.054,0,88,0.2,0,1 -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,77777,9,999999999,4,0.054,0,88,0.2,0,1 -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,3962,9,999999999,4,0.054,0,88,0.2,0,1 -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,77777,9,999999999,4,0.054,0,88,0.2,0,1 -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,32,77777,9,999999999,4,0.054,0,88,0.2,0,1 -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,82,83600,0,0,213,0,0,0,0,0,0,0,0,0,0,0,32,77777,9,999999999,4,0.054,0,88,0.2,0,1 -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,78,83500,0,0,219,0,0,0,0,0,0,0,70,2.6,1,1,32,77777,9,999999999,4,0.054,0,88,0.2,0,1 -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,77777,9,999999999,4,0.054,0,88,0.2,0,1 -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,77777,9,999999999,4,0.054,0,88,0.2,0,1 -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,77777,9,999999999,4,0.054,0,88,0.2,0,1 -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,77777,9,999999999,4,0.054,0,88,0.2,0,1 -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,77777,9,999999999,4,0.054,0,88,0.2,0,1 -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,68,83400,103,1302,230,44,285,21,4931,0,2358,699,200,3.1,3,3,80,77777,9,999999999,4,0.054,0,88,0.2,0,1 -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,22427,17974,5294,1821,180,2.6,1,1,96,77777,9,999999999,4,0.054,0,88,0.2,0,1 -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,41010,37111,7031,2619,190,3.1,1,1,96,77777,9,999999999,4,0.054,0,88,0.2,0,1 -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,55157,92378,8692,1422,200,3.6,0,0,112,77777,9,999999999,4,0.054,0,88,0.2,0,1 -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,63147,96179,9285,1579,170,2.1,0,0,112,77777,9,999999999,4,0.054,0,88,0.2,0,1 -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,64661,96759,9402,1610,120,2.1,0,0,112,77777,9,999999999,4,0.054,0,88,0.2,0,1 -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,59358,94502,9059,1505,310,8.8,0,0,112,77777,9,999999999,4,0.054,0,88,0.2,0,1 -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,47835,88292,8062,1285,300,11.3,0,0,112,77777,9,999999999,4,0.054,0,88,0.2,0,1 -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,31061,74189,6445,977,300,6.7,0,0,112,77777,9,999999999,4,0.054,0,88,0.2,0,1 -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,11883,42954,4375,541,290,7.7,0,0,112,77777,9,999999999,4,0.054,0,88,0.2,0,1 -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,77777,9,999999999,3,0.054,0,88,0.2,0,1 -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,77777,9,999999999,3,0.054,0,88,0.2,0,1 -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,48,77777,9,999999999,3,0.054,0,88,0.2,0,1 -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,77777,9,999999999,3,0.054,0,88,0.2,0,1 -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,-13.9,30,83200,0,0,236,0,0,0,0,0,0,0,200,4.1,0,0,48,77777,9,999999999,3,0.054,0,88,0.2,0,1 -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,77777,9,999999999,3,0.054,0,88,0.2,0,1 -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,31,83200,0,0,229,0,0,0,0,0,0,0,190,3.6,0,0,48,77777,9,999999999,3,0.054,0,88,0.2,0,1 -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,34,83200,0,0,225,0,0,0,0,0,0,0,160,3.6,0,0,48,77777,9,999999999,3,0.054,0,88,0.2,0,1 -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,77777,9,999999999,3,0.054,0,88,0.2,0,1 -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,77777,9,999999999,3,0.054,0,88,0.2,0,1 -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,77777,9,999999999,3,0.054,0,88,0.2,0,1 -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,77777,9,999999999,3,0.054,0,88,0.2,0,1 -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,36,83200,0,0,231,0,0,0,0,0,0,0,190,5.2,4,2,48,77777,9,999999999,3,0.054,0,88,0.2,0,1 -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,36,83200,0,0,235,0,0,0,0,0,0,0,150,3.1,6,4,96,6401,9,999999999,3,0.054,0,88,0.2,0,1 -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,4497,0,4084,1015,180,4.1,7,6,96,6401,9,999999999,3,0.054,0,88,0.2,0,1 -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,-13.3,32,83300,345,1407,253,177,177,133,19068,10933,14395,3814,200,3.1,8,6,128,6401,9,999999999,3,0.054,0,88,0.2,0,1 -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,8906,2627,6478,2424,340,2.1,7,7,128,7315,9,999999999,3,0.054,0,88,0.2,0,1 -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,42718,30570,20540,7269,180,2.1,8,6,128,7315,9,999999999,3,0.054,0,88,0.2,0,1 -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,63744,51653,18475,6999,80,2.1,4,4,128,77777,9,999999999,3,0.054,0,88,0.2,0,1 -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,44538,27797,20910,7818,60,1.5,4,3,112,77777,9,999999999,3,0.054,0,88,0.2,0,1 -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,60481,50965,17586,6582,50,3.1,7,2,112,77777,9,999999999,3,0.054,0,88,0.2,0,1 -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,43962,39006,15598,5556,80,3.1,8,3,112,77777,9,999999999,3,0.054,0,88,0.2,0,1 -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,27947,26078,9882,3363,140,3.1,9,2,112,77777,9,999999999,4,0.054,0,88,0.2,0,1 -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,8194,1956,5776,1709,100,3.6,10,4,112,77777,9,999999999,4,0.054,0,88,0.2,0,1 -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,7315,9,999999999,4,0.054,0,88,0.2,0,1 -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,77777,9,999999999,4,0.054,0,88,0.2,0,1 -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,77777,9,999999999,4,0.054,0,88,0.2,0,1 -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,77777,9,999999999,4,0.054,0,88,0.2,0,1 -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,77777,9,999999999,4,0.054,0,88,0.2,0,1 -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,77777,9,999999999,4,0.054,0,88,0.2,0,1 -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,9,4,40,77777,9,999999999,4,0.054,0,88,0.2,0,1 -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,7315,9,999999999,4,0.055,0,88,0.2,0,1 -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,-7.2,83,83000,0,0,234,0,0,0,0,0,0,0,350,3.6,8,3,32,77777,9,999999999,4,0.055,0,88,0.2,0,1 -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,77777,9,999999999,4,0.055,0,88,0.2,0,1 -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,61,9,999999999,4,0.055,0,88,0.2,0,1 -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,4,0.055,0,88,0.2,0,1 -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,4,0.055,0,88,0.2,0,1 -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,5,0.055,0,88,0.2,0,1 -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,1069,0,1076,419,30,1,10,10,0.8,61,9,999999999,5,0.055,0,88,0.2,0,1 -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,5455,0,5496,2172,50,2.1,10,10,1.2,244,9,999999999,5,0.055,0,88,0.2,0,1 -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,8069,0,8133,3486,50,3.1,10,10,1.2,183,9,999999999,5,0.055,0,88,0.2,0,1 -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,10923,0,11015,4885,90,2.6,10,10,2.4,152,9,999999999,5,0.055,0,88,0.2,0,1 -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,-7.2,83,82700,785,1406,259,121,0,121,12433,0,12542,5676,350,3.1,10,10,0.8,183,9,999999999,5,0.055,0,88,0.2,0,1 -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,55147,19321,44680,12385,60,1.5,10,7,3.2,183,9,999999999,5,0.055,0,88,0.2,0,1 -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,40991,25554,20822,7589,360,3.6,10,6,6.4,7620,9,999999999,5,0.055,0,88,0.2,0,1 -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,11993,3755,8501,3240,360,2.6,10,6,6.4,7620,9,999999999,5,0.055,0,88,0.2,0,1 -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,26855,11863,22289,5476,360,4.1,10,6,6.4,7620,9,999999999,5,0.055,0,88,0.2,0,1 -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,6346,593,5583,1684,100,2.1,10,9,6.4,3658,9,999999999,6,0.055,0,88,0.2,0,1 -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,6,0.055,0,88,0.2,0,1 -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,-6.7,86,82400,0,0,260,0,0,0,0,0,0,0,90,2.6,10,10,4.8,3658,9,999999999,6,0.055,0,88,0.2,0,1 -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,-7.2,83,82400,0,0,259,0,0,0,0,0,0,0,330,2.6,10,10,4.8,3658,9,999999999,6,0.055,0,88,0.2,0,1 -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,6,0.055,0,88,0.2,0,1 -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,6,0.055,0,88,0.2,0,1 -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,43,82200,0,0,308,0,0,0,0,0,0,0,200,7.2,10,10,40,3658,9,999999999,6,0.055,0,88,0.2,0,1 -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,3658,9,999999999,6,0.055,0,88,0.2,0,1 -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,3962,9,999999999,6,0.055,0,88,0.2,0,1 -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,-5,66,82100,0,0,282,0,0,0,0,0,0,0,300,1.5,10,10,32,4267,9,999999999,6,0.055,0,88,0.2,0,1 -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,10,10,32,4572,9,999999999,7,0.055,0,88,0.2,0,1 -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,10,10,32,4572,9,999999999,7,0.055,0,88,0.2,0,1 -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,4572,9,999999999,7,0.055,0,88,0.2,0,1 -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,4267,9,999999999,7,0.055,0,88,0.2,0,1 -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,7,0.055,0,88,0.2,0,1 -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,1558,0,1568,583,50,4.1,10,10,4.8,244,9,999999999,6,0.055,0,88,0.2,0,1 -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,6061,0,6106,2374,50,4.6,10,10,3.2,396,9,999999999,6,0.055,0,88,0.2,0,1 -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,12325,0,12423,4903,60,4.1,10,10,3.2,518,9,999999999,6,0.055,0,88,0.2,0,1 -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,16155,0,16291,6701,70,3.6,10,10,8,579,9,999999999,6,0.055,0,88,0.2,0,1 -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,26872,9256,18737,7122,40,4.1,10,9,12.8,549,9,999999999,6,0.055,0,88,0.2,0,1 -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,33610,10696,25249,9130,70,2.6,10,8,9.6,579,9,999999999,6,0.055,0,88,0.2,0,1 -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,17441,0,17590,7306,60,4.1,10,10,8,640,9,999999999,6,0.055,0,88,0.2,0,1 -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,29941,15530,19978,6774,50,4.1,8,8,9.6,2286,9,999999999,6,0.055,0,88,0.2,0,1 -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,12823,7163,6783,2428,50,3.6,7,7,9.6,2286,9,999999999,6,0.055,0,88,0.2,0,1 -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,9455,1514,8630,2220,70,5.2,10,8,9.6,3962,9,999999999,5,0.055,0,88,0.2,0,1 -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,5,0.055,0,88,0.2,0,1 -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,-18.3,73,83100,0,0,213,0,0,0,0,0,0,0,80,3.1,10,10,12.8,2896,9,999999999,5,0.055,0,88,0.2,0,1 -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,5,0.055,0,88,0.2,0,1 -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,10,10,4.4,914,9,999999999,5,0.055,0,88,0.2,0,1 -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,-18.3,73,83300,0,0,207,0,0,0,0,0,0,0,70,2.1,9,9,9.6,1676,9,999999999,5,0.055,0,88,0.2,0,1 -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,77777,9,999999999,5,0.055,0,88,0.2,0,1 -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,32,77777,9,999999999,5,0.055,0,88,0.2,0,1 -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,-18.3,73,83300,0,0,185,0,0,0,0,0,0,0,190,2.6,0,0,24,77777,9,999999999,5,0.055,0,88,0.2,0,1 -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,77777,9,999999999,4,0.055,0,88,0.2,0,1 -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,77777,9,999999999,4,0.055,0,88,0.2,0,1 -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,-17.8,77,83300,0,0,185,0,0,0,0,0,0,0,30,1,0,0,24,77777,9,999999999,4,0.055,0,88,0.2,0,1 -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,24,77777,9,999999999,4,0.055,0,88,0.2,0,1 -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,77777,9,999999999,4,0.055,0,88,0.2,0,1 -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,77777,9,999999999,4,0.055,0,88,0.2,0,1 -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,77,83300,122,1393,199,42,186,25,4707,0,2808,836,260,1.5,1,1,96,77777,9,999999999,4,0.055,0,88,0.2,0,1 -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,24665,22109,6414,2195,0,0,0,0,96,77777,9,999999999,4,0.055,0,88,0.2,0,1 -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,45884,42824,8962,3325,60,1.5,0,0,80,77777,9,999999999,4,0.055,0,88,0.2,0,1 -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,62894,52529,10796,4198,30,2.6,0,0,48,77777,9,999999999,4,0.055,0,88,0.2,0,1 -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,72890,56629,11860,4717,340,4.1,0,0,32,77777,9,999999999,4,0.055,0,88,0.2,0,1 -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,-6.7,57,83100,813,1405,242,612,887,99,74652,57134,12114,4836,350,3.6,0,0,32,77777,9,999999999,4,0.055,0,88,0.2,0,1 -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,68072,54610,11441,4502,20,2.1,0,0,32,77777,9,999999999,4,0.055,0,88,0.2,0,1 -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,50916,44305,9754,3708,350,3.6,1,1,11.2,77777,9,999999999,5,0.055,0,88,0.2,0,1 -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,50,83000,455,1405,258,287,681,66,33690,31678,7767,2762,360,1.5,1,0,11.2,77777,9,999999999,5,0.055,0,88,0.2,0,1 -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,11765,4902,5506,1696,340,1.5,2,2,48,77777,9,999999999,5,0.055,0,88,0.2,0,1 -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,77777,9,999999999,5,0.055,0,88,0.2,0,1 -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,77777,9,999999999,5,0.055,0,88,0.2,0,1 -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,-5.6,62,82900,0,0,254,0,0,0,0,0,0,0,120,3.1,8,3,40,77777,9,999999999,5,0.055,0,88,0.2,0,1 -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,4572,9,999999999,5,0.055,0,88,0.2,0,1 -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,-7.8,36,83000,0,0,285,0,0,0,0,0,0,0,290,4.6,8,8,40,4572,9,999999999,5,0.055,0,88,0.2,0,1 -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,4572,9,999999999,5,0.055,0,88,0.2,0,1 -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,4267,9,999999999,5,0.055,0,88,0.2,0,1 -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,-9.4,31,83100,0,0,269,0,0,0,0,0,0,0,260,5.2,5,3,40,77777,9,999999999,5,0.056,0,88,0.2,0,1 -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,77777,9,999999999,5,0.056,0,88,0.2,0,1 -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,77777,9,999999999,5,0.056,0,88,0.2,0,1 -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,77777,9,999999999,5,0.056,0,88,0.2,0,1 -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,77777,9,999999999,5,0.056,0,88,0.2,0,1 -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,77777,9,999999999,5,0.056,0,88,0.2,0,1 -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,7620,9,999999999,5,0.056,0,88,0.2,0,1 -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,4590,0,3836,1061,180,1.5,7,5,96,7620,9,999999999,5,0.056,0,88,0.2,0,1 -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,20183,15327,11959,3599,140,2.1,6,5,96,7620,9,999999999,5,0.056,0,88,0.2,0,1 -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,-7.8,36,83400,569,1405,273,266,282,151,30028,20179,17120,5769,140,4.1,5,4,96,77777,9,999999999,5,0.056,0,88,0.2,0,1 -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,42180,18043,31653,9819,110,5.7,8,8,96,3048,9,999999999,5,0.056,0,88,0.2,0,1 -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,42523,26787,17006,6588,150,7.2,7,7,96,3048,9,999999999,5,0.056,0,88,0.2,0,1 -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,36951,15882,23672,8760,160,7.7,8,8,96,2743,9,999999999,5,0.056,0,88,0.2,0,1 -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,50257,35812,21424,7849,160,7.2,7,6,96,2896,9,999999999,5,0.056,0,88,0.2,0,1 -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,21511,11101,11977,4491,160,6.2,9,8,80,2743,9,999999999,5,0.056,0,88,0.2,0,1 -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,41,83000,461,1405,302,126,11,122,14103,678,13711,4429,160,5.7,9,9,80,2591,9,999999999,5,0.056,0,88,0.2,0,1 -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,6265,393,5722,1762,320,8.8,9,9,80,2591,9,999999999,5,0.056,0,88,0.2,0,1 -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,7620,9,999999999,5,0.056,0,88,0.2,0,1 -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,3353,9,999999999,5,0.056,0,88,0.2,0,1 -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,6,0.056,0,88,0.2,0,1 -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,6,0.056,0,88,0.2,0,1 -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,77777,9,999999999,6,0.056,0,88,0.2,0,1 -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,76,82800,0,0,248,0,0,0,0,0,0,0,360,2.1,3,3,24,77777,9,999999999,6,0.056,0,88,0.2,0,1 -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,77777,9,999999999,6,0.056,0,88,0.2,0,1 -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,77777,9,999999999,6,0.056,0,88,0.2,0,1 -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,91,82600,0,0,230,0,0,0,0,0,0,0,170,1.5,0,0,24,77777,9,999999999,6,0.056,0,88,0.2,0,1 -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,1,0,24,77777,9,999999999,6,0.056,0,88,0.2,0,1 -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,77777,9,999999999,6,0.056,0,88,0.2,0,1 -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,77777,9,999999999,6,0.056,0,88,0.2,0,1 -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,-6.1,91,82400,0,0,226,0,0,0,0,0,0,0,0,0,1,0,19.2,77777,9,999999999,6,0.056,0,88,0.2,0,1 -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,19.2,77777,9,999999999,6,0.056,0,88,0.2,0,1 -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,6999,0,2298,720,190,2.1,0,0,64,77777,9,999999999,6,0.056,0,88,0.2,0,1 -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,25559,67227,5877,874,170,2.6,0,0,80,77777,9,999999999,6,0.056,0,88,0.2,0,1 -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,44089,85236,7667,1219,60,2.1,0,0,72,77777,9,999999999,6,0.056,0,88,0.2,0,1 -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,58171,93364,8794,1475,70,2.6,0,0,72,77777,9,999999999,6,0.056,0,88,0.2,0,1 -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,60336,87183,9240,1629,20,5.2,1,1,48,77777,9,999999999,6,0.056,0,88,0.2,0,1 -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,65061,93089,9358,1663,10,5.7,1,1,40,77777,9,999999999,6,0.056,0,88,0.2,0,1 -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,-2.8,55,82100,770,1404,280,512,607,180,59174,46109,20899,7726,10,6.2,5,5,32,77777,9,999999999,6,0.056,0,88,0.2,0,1 -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,30996,15072,21065,7151,350,6.7,7,7,24,2743,9,999999999,6,0.056,0,88,0.2,0,1 -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,6700,0,6752,2823,10,7.2,10,10,1.6,183,9,999999999,6,0.056,0,88,0.2,0,1 -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,2945,0,2966,1169,360,7.2,10,10,0.4,61,9,999999999,6,0.056,0,88,0.2,0,1 -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,0,0,0,0,350,8.2,10,10,0.8,120,9,999999999,6,0.056,0,88,0.2,0,1 -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,6,0.056,0,88,0.2,0,1 -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,-6.1,91,83100,0,0,260,0,0,0,0,0,0,0,20,11.8,10,10,0.6,183,9,999999999,6,0.056,0,88,0.2,0,1 -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,6,0.056,0,88,0.2,0,1 -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,6,0.056,0,88,0.2,0,1 -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,6,0.056,0,88,0.2,0,1 -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,6,0.056,0,88,0.2,0,1 -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,6,0.055,0,88,0.2,0,1 -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,68,83800,0,0,254,0,0,0,0,0,0,0,320,3.1,10,10,12.8,1372,9,999999999,6,0.055,0,88,0.2,0,1 -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,2591,9,999999999,6,0.055,0,88,0.2,0,1 -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,86,83900,0,0,237,0,0,0,0,0,0,0,160,2.1,10,9,32,3962,9,999999999,6,0.055,0,88,0.2,0,1 -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,-11.1,91,84000,0,0,226,0,0,0,0,0,0,0,160,2.6,10,8,32,6096,9,999999999,6,0.055,0,88,0.2,0,1 -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,-11.1,91,84000,0,0,222,0,0,0,0,0,0,0,170,1.5,7,7,32,6096,9,999999999,6,0.055,0,88,0.2,0,1 -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,77777,9,999999999,6,0.055,0,88,0.2,0,1 -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,-11.1,91,84200,137,1404,212,58,238,34,6400,0,3762,1079,170,2.1,2,2,96,77777,9,999999999,6,0.055,0,88,0.2,0,1 -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,20542,51955,5268,845,180,1.5,1,1,96,77777,9,999999999,6,0.055,0,88,0.2,0,1 -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,59,84300,581,1404,230,389,821,49,41380,78715,7512,1215,180,3.1,1,1,96,77777,9,999999999,6,0.055,0,88,0.2,0,1 -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,58904,94460,8215,1432,180,3.6,0,0,96,77777,9,999999999,6,0.055,0,88,0.2,0,1 -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,67005,97861,8806,1597,190,5.2,0,0,96,77777,9,999999999,5,0.055,0,88,0.2,0,1 -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,68551,98370,8924,1631,150,5.2,0,0,112,77777,9,999999999,5,0.055,0,88,0.2,0,1 -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,63301,96419,8580,1521,180,3.6,0,0,112,77777,9,999999999,5,0.055,0,88,0.2,0,1 -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,51699,91087,7729,1306,180,4.6,0,0,112,77777,9,999999999,5,0.055,0,88,0.2,0,1 -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,-12.8,33,84300,472,1404,237,328,854,40,34949,78935,6271,1012,170,3.6,0,0,112,77777,9,999999999,5,0.055,0,88,0.2,0,1 -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,-12.2,35,84300,246,1404,237,142,658,27,15123,51482,4377,622,190,3.1,0,0,96,77777,9,999999999,5,0.055,0,88,0.2,0,1 -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,0,0,0,0,220,3.1,0,0,96,77777,9,999999999,4,0.055,0,88,0.2,0,1 -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,77777,9,999999999,4,0.055,0,88,0.2,0,1 -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,77777,9,999999999,4,0.055,0,88,0.2,0,1 -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,77777,9,999999999,4,0.055,0,88,0.2,0,1 -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,77777,9,999999999,4,0.055,0,88,0.2,0,1 -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,58,84600,0,0,206,0,0,0,0,0,0,0,180,2.6,0,0,48,77777,9,999999999,4,0.055,0,88,0.2,0,1 -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,58,84600,0,0,206,0,0,0,0,0,0,0,160,2.6,0,0,48,77777,9,999999999,4,0.055,0,88,0.2,0,1 -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,77777,9,999999999,3,0.056,0,88,0.2,0,1 -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,77777,9,999999999,3,0.056,0,88,0.2,0,1 -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,77777,9,999999999,3,0.056,0,88,0.2,0,1 -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,77777,9,999999999,3,0.056,0,88,0.2,0,1 -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,77777,9,999999999,3,0.056,0,88,0.2,0,1 -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,77777,9,999999999,3,0.056,0,88,0.2,0,1 -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,77777,9,999999999,3,0.056,0,88,0.2,0,1 -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,7897,37294,2648,389,190,5.2,0,0,128,77777,9,999999999,3,0.056,0,88,0.2,0,1 -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,27961,75071,4655,799,150,5.7,0,0,128,77777,9,999999999,3,0.056,0,88,0.2,0,1 -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,46895,91668,6191,1100,180,6.2,0,0,128,77777,9,999999999,3,0.056,0,88,0.2,0,1 -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,61292,99082,7215,1333,180,4.6,0,0,128,77777,9,999999999,3,0.056,0,88,0.2,0,1 -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,69490,102078,7685,1476,180,4.6,0,0,128,77777,9,999999999,3,0.056,0,88,0.2,0,1 -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,-11.7,18,84300,838,1403,280,623,933,66,65836,92910,9605,1707,190,4.6,1,1,128,77777,9,999999999,3,0.056,0,88,0.2,0,1 -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,61478,93837,7309,1386,190,4.6,1,1,128,77777,9,999999999,3,0.056,0,88,0.2,0,1 -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,11,84200,659,1403,291,459,739,112,54073,48863,13240,4950,0,0,6,2,128,77777,9,999999999,3,0.056,0,88,0.2,0,1 -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,29912,27138,12214,4127,180,3.1,8,3,128,77777,9,999999999,3,0.056,0,88,0.2,0,1 -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,20,84100,251,1403,293,89,170,58,9932,3908,6492,1984,160,1.5,7,4,96,77777,9,999999999,3,0.056,0,88,0.2,0,1 -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,0,0,0,0,150,1.5,8,3,96,77777,9,999999999,3,0.056,0,88,0.2,0,1 -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,77777,9,999999999,3,0.056,0,88,0.2,0,1 -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,-10,30,84000,0,0,269,0,0,0,0,0,0,0,190,4.1,5,3,48,77777,9,999999999,3,0.056,0,88,0.2,0,1 -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,77777,9,999999999,3,0.056,0,88,0.2,0,1 -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,77777,9,999999999,3,0.056,0,88,0.2,0,1 -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,77777,9,999999999,3,0.056,0,88,0.2,0,1 -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,77777,9,999999999,4,0.056,0,88,0.2,0,1 -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,6706,9,999999999,4,0.056,0,88,0.2,0,1 -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,6706,9,999999999,4,0.056,0,88,0.2,0,1 -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,7010,9,999999999,4,0.056,0,88,0.2,0,1 -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,7010,9,999999999,4,0.056,0,88,0.2,0,1 -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,6706,9,999999999,4,0.056,0,88,0.2,0,1 -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,6706,9,999999999,4,0.056,0,88,0.2,0,1 -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,6706,9,999999999,4,0.056,0,88,0.2,0,1 -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,5416,0,5000,1335,200,5.7,7,6,128,6706,9,999999999,4,0.056,0,88,0.2,0,1 -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,13512,2038,12455,3818,170,3.6,9,9,128,6706,9,999999999,4,0.056,0,88,0.2,0,1 -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,29369,5465,26678,7737,160,3.1,9,9,128,6706,9,999999999,4,0.056,0,88,0.2,0,1 -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,42467,12735,35200,10622,160,3.6,9,9,128,6706,9,999999999,4,0.056,0,88,0.2,0,1 -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,47497,26487,26524,9607,10,2.1,9,7,112,6706,9,999999999,4,0.056,0,88,0.2,0,1 -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,48464,18230,35808,11868,110,5.2,9,8,96,6096,9,999999999,4,0.056,0,88,0.2,0,1 -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,48879,31839,23345,8519,120,5.2,9,4,104,77777,9,999999999,4,0.056,0,88,0.2,0,1 -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,-7.8,26,83600,665,1403,291,429,499,192,48437,39795,21783,7432,120,4.6,8,3,104,77777,9,999999999,4,0.056,0,88,0.2,0,1 -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,32765,31049,12332,4180,130,6.2,7,1,104,77777,9,999999999,4,0.056,0,88,0.2,0,1 -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,12372,6754,7426,2204,130,4.1,8,3,80,77777,9,999999999,4,0.056,0,88,0.2,0,1 -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,0,0,0,0,130,3.1,7,2,80,77777,9,999999999,4,0.056,0,88,0.2,0,1 -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,77777,9,999999999,4,0.056,0,88,0.2,0,1 -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,77777,9,999999999,4,0.056,0,88,0.2,0,1 -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,77777,9,999999999,4,0.056,0,88,0.2,0,1 -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,77777,9,999999999,4,0.056,0,88,0.2,0,1 -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,77777,9,999999999,4,0.056,0,88,0.2,0,1 -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,77777,9,999999999,4,0.056,0,88,0.2,0,1 -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,77777,9,999999999,4,0.057,0,88,0.2,0,1 -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,77777,9,999999999,4,0.057,0,88,0.2,0,1 -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,77777,9,999999999,4,0.057,0,88,0.2,0,1 -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,-6.7,86,84200,0,0,225,0,0,0,0,0,0,0,330,1.5,0,0,32,77777,9,999999999,4,0.057,0,88,0.2,0,1 -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,77777,9,999999999,4,0.057,0,88,0.2,0,1 -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,77777,9,999999999,4,0.057,0,88,0.2,0,1 -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,-8.3,75,84200,2,175,224,0,6,0,0,0,0,0,150,2.1,0,0,112,77777,9,999999999,4,0.057,0,88,0.2,0,1 -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,7655,0,3385,1031,170,3.1,0,0,112,77777,9,999999999,4,0.057,0,88,0.2,0,1 -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,29054,26976,6366,2229,210,4.6,0,0,112,77777,9,999999999,4,0.057,0,88,0.2,0,1 -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,51200,46743,8696,3281,200,5.2,0,0,112,77777,9,999999999,4,0.057,0,88,0.2,0,1 -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,23,84100,749,1402,272,562,892,85,68676,55481,10416,4107,160,2.6,0,0,112,77777,9,999999999,4,0.057,0,88,0.2,0,1 -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,67197,91712,13154,1891,170,3.1,0,0,112,77777,9,999999999,4,0.057,0,88,0.2,0,1 -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,68671,92255,13257,1935,180,5.7,0,0,96,77777,9,999999999,4,0.057,0,88,0.2,0,1 -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,63261,89848,12827,1782,260,1.5,0,0,96,77777,9,999999999,4,0.057,0,88,0.2,0,1 -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,16,83900,671,1402,292,490,860,78,59453,51242,9489,3661,150,1,0,0,96,77777,9,999999999,4,0.057,0,88,0.2,0,1 -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,25,83900,490,1402,298,327,759,62,38897,36350,7392,2689,160,3.1,0,0,96,77777,9,999999999,4,0.057,0,88,0.2,0,1 -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,16212,8881,4840,1585,150,2.6,0,0,96,77777,9,999999999,4,0.057,0,88,0.2,0,1 -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,0,0,0,0,160,3.1,0,0,96,77777,9,999999999,4,0.057,0,88,0.2,0,1 -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,77777,9,999999999,4,0.057,0,88,0.2,0,1 -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,77777,9,999999999,4,0.057,0,88,0.2,0,1 -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,77777,9,999999999,4,0.057,0,88,0.2,0,1 -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,77777,9,999999999,4,0.057,0,88,0.2,0,1 -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,77777,9,999999999,4,0.057,0,88,0.2,0,1 -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,7620,9,999999999,4,0.057,0,88,0.2,0,1 -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,7620,9,999999999,4,0.057,0,88,0.2,0,1 -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,77777,9,999999999,5,0.057,0,88,0.2,0,1 -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,4572,9,999999999,5,0.057,0,88,0.2,0,1 -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,7620,9,999999999,5,0.057,0,88,0.2,0,1 -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,-12.2,24,83900,0,0,273,0,0,0,0,0,0,0,110,3.6,8,6,40,7620,9,999999999,5,0.057,0,88,0.2,0,1 -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,7620,9,999999999,5,0.057,0,88,0.2,0,1 -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,-12.8,23,83900,2,199,270,0,0,0,0,0,0,0,190,7.2,8,5,40,7620,9,999999999,5,0.057,0,88,0.2,0,1 -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,5156,0,4732,1335,190,8.2,10,6,96,7620,9,999999999,5,0.057,0,88,0.2,0,1 -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,14854,3588,12911,3973,190,5.7,10,9,112,4877,9,999999999,5,0.057,0,88,0.2,0,1 -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,-11.7,18,84000,606,1401,308,179,4,177,20117,311,19985,6653,200,5.7,9,9,112,4877,9,999999999,5,0.057,0,88,0.2,0,1 -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,39113,22747,21096,7721,220,7.7,8,6,112,6706,9,999999999,5,0.057,0,88,0.2,0,1 -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,68089,51281,18670,7261,220,5.7,7,2,112,77777,9,999999999,5,0.057,0,88,0.2,0,1 -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,56153,35368,26425,9741,210,4.6,9,4,112,77777,9,999999999,5,0.057,0,88,0.2,0,1 -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,50419,26261,32681,10844,210,3.6,10,6,112,7620,9,999999999,5,0.057,0,88,0.2,0,1 -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,47966,40142,16869,6153,340,1.5,10,5,112,77777,9,999999999,5,0.057,0,88,0.2,0,1 -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,-4.4,25,83800,495,1401,327,206,187,140,22997,12552,15697,5058,70,4.6,10,7,112,7620,9,999999999,5,0.057,0,88,0.2,0,1 -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,12597,5669,9376,2604,110,4.6,10,6,96,4877,9,999999999,5,0.057,0,88,0.2,0,1 -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,0,0,0,0,110,3.6,10,7,80,4877,9,999999999,5,0.057,0,88,0.2,0,1 -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,7925,9,999999999,5,0.057,0,88,0.2,0,1 -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,7925,9,999999999,5,0.057,0,88,0.2,0,1 -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,4877,9,999999999,5,0.057,0,88,0.2,0,1 -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,4877,9,999999999,5,0.057,0,88,0.2,0,1 -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,7925,9,999999999,5,0.057,0,88,0.2,0,1 -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,77777,9,999999999,5,0.057,0,88,0.2,0,1 -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,77777,9,999999999,5,0.058,0,88,0.2,0,1 -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,58,83700,0,0,261,0,0,0,0,0,0,0,350,2.6,5,3,32,77777,9,999999999,6,0.058,0,88,0.2,0,1 -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,5,2,32,77777,9,999999999,6,0.058,0,88,0.2,0,1 -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,77777,9,999999999,6,0.058,0,88,0.2,0,1 -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,3962,9,999999999,6,0.058,0,88,0.2,0,1 -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,6,6,32,3962,9,999999999,6,0.058,0,88,0.2,0,1 -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,4572,9,999999999,6,0.058,0,88,0.2,0,1 -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,4986,0,4334,1274,170,2.1,9,5,96,4877,9,999999999,6,0.058,0,88,0.2,0,1 -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,21178,4642,19354,4896,180,5.2,10,9,112,7315,9,999999999,6,0.058,0,88,0.2,0,1 -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,-9.4,22,83300,612,1401,320,146,0,146,14803,0,14924,5873,190,4.1,10,10,112,3962,9,999999999,6,0.058,0,88,0.2,0,1 -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,20010,0,20182,8156,190,5.7,10,10,112,3962,9,999999999,6,0.058,0,88,0.2,0,1 -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,18446,4909,12869,5177,180,6.2,9,9,112,3962,9,999999999,6,0.058,0,88,0.2,0,1 -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,-6.7,20,82900,863,1401,325,465,57,430,50932,6317,47423,13720,170,4.1,9,7,112,6706,9,999999999,6,0.058,0,88,0.2,0,1 -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,40528,7045,36196,11549,190,6.2,9,8,112,6706,9,999999999,7,0.058,0,88,0.2,0,1 -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,36316,21823,20587,7239,170,7.2,7,7,112,6706,9,999999999,7,0.058,0,88,0.2,0,1 -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,32935,29489,14786,4878,180,8.2,8,5,112,8534,9,999999999,7,0.058,0,88,0.2,0,1 -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,-3.9,26,82500,273,1401,321,116,178,81,12688,6254,8893,2555,180,6.7,6,5,112,7925,9,999999999,7,0.058,0,88,0.2,0,1 -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,1199,0,1093,292,180,5.2,3,3,112,77777,9,999999999,7,0.058,0,88,0.2,0,1 -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,77777,9,999999999,7,0.058,0,88,0.2,0,1 -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,3,3,32,77777,9,999999999,7,0.058,0,88,0.2,0,1 -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,-2.8,39,82300,0,0,289,0,0,0,0,0,0,0,190,5.2,1,1,32,77777,9,999999999,7,0.058,0,88,0.2,0,1 -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,77777,9,999999999,7,0.058,0,88,0.2,0,1 -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,-3.3,38,82100,0,0,298,0,0,0,0,0,0,0,140,4.1,6,4,48,7620,9,999999999,7,0.058,0,88,0.2,0,1 -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,7620,9,999999999,7,0.058,0,88,0.2,0,1 -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,77777,9,999999999,8,0.058,0,88,0.2,0,1 -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,77777,9,999999999,8,0.058,0,88,0.2,0,1 -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,4877,9,999999999,8,0.058,0,88,0.2,0,1 -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,4877,9,999999999,8,0.058,0,88,0.2,0,1 -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,4877,9,999999999,8,0.058,0,88,0.2,0,1 -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,7,5,48,7620,9,999999999,8,0.058,0,88,0.2,0,1 -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,6,268,269,1,32,0,0,0,0,0,170,3.6,3,3,96,77777,9,999999999,8,0.058,0,88,0.2,0,1 -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,9820,0,4140,1246,200,3.6,1,1,96,77777,9,999999999,8,0.058,0,88,0.2,0,1 -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,29847,74282,5557,903,200,6.7,0,0,96,77777,9,999999999,7,0.058,0,88,0.2,0,1 -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,25,81700,618,1400,303,390,776,47,41708,75351,7190,1226,200,8.2,1,1,96,77777,9,999999999,7,0.058,0,88,0.2,0,1 -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,51163,36150,21766,7983,190,7.2,6,6,96,3353,9,999999999,7,0.058,0,88,0.2,0,1 -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,24,81500,854,1400,305,614,877,79,64822,87693,11358,1874,190,9.3,2,1,96,77777,9,999999999,7,0.058,0,88,0.2,0,1 -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,53314,33176,21708,8369,200,10.3,6,6,96,6706,9,999999999,7,0.058,0,88,0.2,0,1 -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,48828,25529,30006,10392,290,10.3,6,6,96,7315,9,999999999,7,0.058,0,88,0.2,0,1 -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,52703,44314,13963,5270,190,2.1,5,5,96,77777,9,999999999,7,0.058,0,88,0.2,0,1 -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,32403,28894,8743,3165,50,4.1,6,5,96,7620,9,999999999,7,0.058,0,88,0.2,0,1 -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,35,81600,279,1400,305,102,190,64,11403,5435,7177,2226,340,6.7,8,8,96,3048,9,999999999,6,0.058,0,88,0.2,0,1 -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,1621,0,1301,336,360,1,5,5,104,77777,9,999999999,6,0.058,0,88,0.2,0,1 -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,40,81800,0,0,282,0,0,0,0,0,0,0,30,3.6,3,3,48,77777,9,999999999,6,0.058,0,88,0.2,0,1 -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,4572,9,999999999,6,0.058,0,88,0.2,0,1 -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,4572,9,999999999,6,0.058,0,88,0.2,0,1 -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,77777,9,999999999,6,0.058,0,88,0.2,0,1 -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,4572,9,999999999,6,0.058,0,88,0.2,0,1 -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,4267,9,999999999,6,0.058,0,88,0.2,0,1 -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,2286,9,999999999,5,0.059,0,88,0.2,0,1 -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,1829,9,999999999,5,0.059,0,88,0.2,0,1 -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,2438,9,999999999,5,0.059,0,88,0.2,0,1 -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,4,3,40,77777,9,999999999,5,0.059,0,88,0.2,0,1 -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,77777,9,999999999,5,0.059,0,88,0.2,0,1 -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,77777,9,999999999,5,0.059,0,88,0.2,0,1 -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,77777,9,999999999,5,0.059,0,88,0.2,0,1 -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,6174,291,4976,1442,190,2.6,4,3,96,77777,9,999999999,5,0.059,0,88,0.2,0,1 -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,20909,12081,14811,4447,200,3.1,7,7,96,7010,9,999999999,5,0.059,0,88,0.2,0,1 -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,37436,27589,18802,6477,230,2.1,8,4,96,77777,9,999999999,5,0.059,0,88,0.2,0,1 -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,58480,45277,21057,7799,10,1.5,6,2,96,77777,9,999999999,5,0.059,0,88,0.2,0,1 -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,68546,50044,21142,8152,10,2.6,4,3,96,77777,9,999999999,5,0.059,0,88,0.2,0,1 -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,31767,5695,26939,9993,40,2.1,7,7,80,2134,9,999999999,5,0.059,0,88,0.2,0,1 -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,17319,0,17471,7575,330,5.7,10,10,64,2134,9,999999999,5,0.059,0,88,0.2,0,1 -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,13877,0,13995,5932,20,4.6,10,10,80,2134,9,999999999,5,0.059,0,88,0.2,0,1 -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,30787,26605,13162,4508,360,3.6,6,6,96,3353,9,999999999,5,0.059,0,88,0.2,0,1 -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,16034,11590,9746,2756,50,3.1,5,5,96,77777,9,999999999,5,0.059,0,88,0.2,0,1 -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,1325,0,1107,310,110,2.6,3,3,80,77777,9,999999999,5,0.059,0,88,0.2,0,1 -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,77777,9,999999999,5,0.059,0,88,0.2,0,1 -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,-3.3,76,83000,0,0,245,0,0,0,0,0,0,0,120,3.1,0,0,48,77777,9,999999999,5,0.059,0,88,0.2,0,1 -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,4,2,32,77777,9,999999999,5,0.059,0,88,0.2,0,1 -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,5,0.059,0,88,0.2,0,1 -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,5,0.059,0,88,0.2,0,1 -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,91,9,999999999,5,0.059,0,88,0.2,0,1 -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,183,9,999999999,5,0.059,0,88,0.2,0,1 -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,5,0.059,0,88,0.2,0,1 -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,10,10,9.6,152,9,999999999,5,0.059,0,88,0.2,0,1 -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,4,0.059,0,88,0.2,0,1 -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,4,0.059,0,88,0.2,0,1 -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,9.6,77777,9,999999999,4,0.059,0,88,0.2,0,1 -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,4,0.059,0,88,0.2,0,1 -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,11603,0,3648,1146,190,4.1,2,2,64,77777,9,999999999,4,0.059,0,88,0.2,0,1 -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,-10.6,40,83600,427,1399,243,279,787,38,29760,71404,5998,949,170,3.1,1,1,80,77777,9,999999999,4,0.059,0,88,0.2,0,1 -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,50491,91901,7030,1223,160,2.1,0,0,112,77777,9,999999999,4,0.059,0,88,0.2,0,1 -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,64702,98463,8011,1471,140,2.6,0,0,112,77777,9,999999999,4,0.059,0,88,0.2,0,1 -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,72815,101227,8458,1634,130,2.1,0,0,112,77777,9,999999999,4,0.059,0,88,0.2,0,1 -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,18,83500,882,1399,261,682,988,58,72256,98699,8437,1653,60,2.1,1,1,112,77777,9,999999999,4,0.059,0,88,0.2,0,1 -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,72815,56530,15533,6125,50,4.1,7,2,112,77777,9,999999999,4,0.059,0,88,0.2,0,1 -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,60324,50861,10224,3972,90,4.1,5,3,112,77777,9,999999999,4,0.059,0,88,0.2,0,1 -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,24388,17459,12121,4235,70,5.2,7,7,112,3658,9,999999999,4,0.059,0,88,0.2,0,1 -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,13508,7883,8444,2543,70,5.7,8,5,96,3658,9,999999999,4,0.059,0,88,0.2,0,1 -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,1827,0,1617,407,70,6.2,7,5,96,6706,9,999999999,4,0.059,0,88,0.2,0,1 -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,3353,9,999999999,4,0.059,0,88,0.2,0,1 -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,2896,9,999999999,4,0.059,0,88,0.2,0,1 -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,2896,9,999999999,4,0.059,0,88,0.2,0,1 -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,77777,9,999999999,4,0.059,0,88,0.2,0,1 -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,77777,9,999999999,4,0.059,0,88,0.2,0,1 -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,77777,9,999999999,4,0.059,0,88,0.2,0,1 -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,-6.1,60,83500,0,0,243,0,0,0,0,0,0,0,180,4.1,0,0,32,77777,9,999999999,4,0.06,0,88,0.2,0,1 -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,77777,9,999999999,4,0.06,0,88,0.2,0,1 -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,77777,9,999999999,4,0.06,0,88,0.2,0,1 -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,77777,9,999999999,4,0.06,0,88,0.2,0,1 -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,2,2,32,77777,9,999999999,4,0.06,0,88,0.2,0,1 -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,-6.7,86,83500,0,0,225,0,0,0,0,0,0,0,0,0,0,0,32,77777,9,999999999,4,0.06,0,88,0.2,0,1 -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,77777,9,999999999,4,0.06,0,88,0.2,0,1 -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,9283,0,3972,1240,310,3.1,3,3,16,77777,9,999999999,4,0.06,0,88,0.2,0,1 -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,6189,0,6237,2583,320,2.6,10,10,4,122,9,999999999,4,0.06,0,88,0.2,0,1 -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,9846,0,9928,4341,320,2.6,10,10,4.8,152,9,999999999,4,0.06,0,88,0.2,0,1 -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,15103,0,15235,6691,360,3.6,10,10,8,305,9,999999999,4,0.06,0,88,0.2,0,1 -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,-4.4,69,83400,873,1398,282,197,0,197,20381,0,20563,8849,320,4.1,10,10,9.6,427,9,999999999,4,0.06,0,88,0.2,0,1 -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,63,83300,888,1398,284,201,0,201,20822,0,21009,9062,320,3.6,10,10,11.2,549,9,999999999,4,0.06,0,88,0.2,0,1 -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,19282,0,19452,8295,340,4.6,10,10,11.2,488,9,999999999,4,0.06,0,88,0.2,0,1 -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,-4.4,69,83200,707,1398,282,156,0,156,15925,0,16061,6655,340,5.2,10,10,9.6,488,9,999999999,4,0.06,0,88,0.2,0,1 -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,-4.4,69,83200,524,1398,282,110,0,110,11063,0,11151,4410,350,6.2,10,10,12.8,518,9,999999999,4,0.06,0,88,0.2,0,1 -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,5427,0,5467,2042,340,6.2,10,10,6.4,457,9,999999999,5,0.06,0,88,0.2,0,1 -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,482,0,486,184,360,6.2,10,10,2.4,122,9,999999999,5,0.06,0,88,0.2,0,1 -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,5,0.06,0,88,0.2,0,1 -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,183,9,999999999,5,0.06,0,88,0.2,0,1 -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,5,0.06,0,88,0.2,0,1 -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,5,0.06,0,88,0.2,0,1 -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,5,0.06,0,88,0.2,0,1 -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,-6.1,91,83300,0,0,260,0,0,0,0,0,0,0,340,4.1,10,10,3.2,244,9,999999999,5,0.06,0,88,0.2,0,1 -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,5,0.06,0,88,0.2,0,1 -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,5,0.06,0,88,0.2,0,1 -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,1676,9,999999999,5,0.06,0,88,0.2,0,1 -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,5,0.06,0,88,0.2,0,1 -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,5,0.06,0,88,0.2,0,1 -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,5,0.06,0,88,0.2,0,1 -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,5,0.06,0,88,0.2,0,1 -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,2252,0,2268,889,360,2.6,10,10,1.6,274,9,999999999,5,0.06,0,88,0.2,0,1 -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,7596,0,7654,3070,360,3.1,10,10,3.2,762,9,999999999,5,0.06,0,88,0.2,0,1 -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,-6.7,86,83200,644,1398,260,106,0,106,10772,0,10861,4694,360,2.6,10,10,4.8,274,9,999999999,5,0.06,0,88,0.2,0,1 -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,14297,0,14422,6417,360,3.6,10,10,3.2,244,9,999999999,5,0.06,0,88,0.2,0,1 -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,16262,0,16408,7415,360,3.1,10,10,11.2,366,9,999999999,5,0.06,0,88,0.2,0,1 -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,19910,0,20090,8780,340,2.1,10,10,11.2,1829,9,999999999,4,0.06,0,88,0.2,0,1 -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,18272,0,18434,7982,330,2.1,10,10,11.2,518,9,999999999,4,0.06,0,88,0.2,0,1 -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,14820,0,14946,6318,350,2.6,10,10,11.2,549,9,999999999,4,0.06,0,88,0.2,0,1 -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,9868,0,9947,4054,300,2.1,10,10,12.8,732,9,999999999,4,0.06,0,88,0.2,0,1 -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,56,83200,300,1398,263,45,0,45,4447,0,4480,1753,360,1,10,10,16,732,9,999999999,4,0.06,0,88,0.2,0,1 -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,870,0,875,305,40,2.1,10,10,11.2,762,9,999999999,4,0.06,0,88,0.2,0,1 -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,853,9,999999999,4,0.06,0,88,0.2,0,1 -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,-7.2,83,83300,0,0,259,0,0,0,0,0,0,0,120,1.5,10,10,11.2,853,9,999999999,4,0.06,0,88,0.2,0,1 -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,4,0.06,0,88,0.2,0,1 -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,975,9,999999999,4,0.06,0,88,0.2,0,1 -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,10,10,16,914,9,999999999,4,0.06,0,88,0.2,0,1 -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,3,0.06,0,88,0.2,0,1 -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,457,9,999999999,3,0.061,0,88,0.2,0,1 -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,77777,9,999999999,3,0.061,0,88,0.2,0,1 -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,77777,9,999999999,3,0.061,0,88,0.2,0,1 -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,-12.8,78,83300,0,0,204,0,0,0,0,0,0,0,210,1,0,0,40,77777,9,999999999,3,0.061,0,88,0.2,0,1 -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,77777,9,999999999,3,0.061,0,88,0.2,0,1 -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,1,1,64,77777,9,999999999,3,0.061,0,88,0.2,0,1 -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,77777,9,999999999,3,0.061,0,88,0.2,0,1 -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,10247,2318,4629,1428,290,5.2,1,0,96,77777,9,999999999,3,0.061,0,88,0.2,0,1 -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,32443,31488,8308,2922,230,2.6,1,0,96,77777,9,999999999,3,0.061,0,88,0.2,0,1 -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,55241,49270,10914,4146,230,4.1,0,0,96,77777,9,999999999,3,0.061,0,88,0.2,0,1 -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,25,83400,801,1397,239,601,861,107,72868,57453,13016,5159,290,5.7,0,0,120,77777,9,999999999,3,0.061,0,88,0.2,0,1 -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,83102,60579,14103,5705,310,6.7,0,0,112,77777,9,999999999,3,0.061,0,88,0.2,0,1 -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,84954,61140,14249,5782,290,6.7,0,0,112,77777,9,999999999,3,0.061,0,88,0.2,0,1 -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,77908,59043,13558,5432,240,6.2,0,0,112,77777,9,999999999,3,0.061,0,88,0.2,0,1 -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,60336,51680,14276,5446,220,2.1,1,1,112,77777,9,999999999,3,0.061,0,88,0.2,0,1 -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,18,83000,536,1397,272,315,499,123,35934,32845,14086,4843,260,3.1,6,5,112,6706,9,999999999,4,0.061,0,88,0.2,0,1 -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,13177,5816,10031,2924,150,2.6,6,5,112,6706,9,999999999,4,0.061,0,88,0.2,0,1 -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,1774,0,1444,409,290,4.6,5,4,112,77777,9,999999999,4,0.061,0,88,0.2,0,1 -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,77777,9,999999999,4,0.061,0,88,0.2,0,1 -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,-12.2,35,82900,0,0,254,0,0,0,0,0,0,0,350,3.6,8,6,48,4877,9,999999999,4,0.061,0,88,0.2,0,1 -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,4877,9,999999999,4,0.061,0,88,0.2,0,1 -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,-12.2,35,82800,0,0,254,0,0,0,0,0,0,0,200,1.5,8,6,48,4877,9,999999999,4,0.061,0,88,0.2,0,1 -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,4877,9,999999999,4,0.061,0,88,0.2,0,1 -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,4877,9,999999999,4,0.061,0,88,0.2,0,1 -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,6096,9,999999999,4,0.062,0,88,0.2,0,1 -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,4267,9,999999999,4,0.062,0,88,0.2,0,1 -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,4572,9,999999999,4,0.062,0,88,0.2,0,1 -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,4572,9,999999999,4,0.062,0,88,0.2,0,1 -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,4267,9,999999999,4,0.062,0,88,0.2,0,1 -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,4267,9,999999999,4,0.062,0,88,0.2,0,1 -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,6096,9,999999999,4,0.062,0,88,0.2,0,1 -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,13633,1801,3903,1251,260,2.1,2,2,96,77777,9,999999999,4,0.062,0,88,0.2,0,1 -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,31541,30104,9072,3172,300,4.1,4,3,96,77777,9,999999999,4,0.062,0,88,0.2,0,1 -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,-8.3,25,82400,658,1396,287,389,521,144,44909,37044,16693,6042,350,2.6,7,2,112,77777,9,999999999,4,0.062,0,88,0.2,0,1 -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,52380,36863,12681,5049,350,6.2,8,4,120,77777,9,999999999,4,0.062,0,88,0.2,0,1 -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,78118,55842,16702,6699,310,1.5,7,2,120,77777,9,999999999,5,0.062,0,88,0.2,0,1 -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,81014,58323,20193,7984,310,9.3,8,3,112,77777,9,999999999,5,0.062,0,88,0.2,0,1 -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,69012,50401,16811,6647,270,12.4,7,4,112,77777,9,999999999,5,0.062,0,88,0.2,0,1 -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,46315,33151,20551,7441,260,15.5,8,4,112,77777,9,999999999,5,0.062,0,88,0.2,0,1 -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,40447,37323,9579,3502,290,8.2,7,2,112,77777,9,999999999,5,0.062,0,88,0.2,0,1 -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,15490,10182,9328,2817,290,12.9,8,5,112,6706,9,999999999,5,0.062,0,88,0.2,0,1 -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,2546,0,1553,440,290,8.2,7,2,96,77777,9,999999999,5,0.062,0,88,0.2,0,1 -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,77777,9,999999999,5,0.062,0,88,0.2,0,1 -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,7620,9,999999999,5,0.062,0,88,0.2,0,1 -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,77777,9,999999999,5,0.062,0,88,0.2,0,1 -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,732,9,999999999,5,0.062,0,88,0.2,0,1 -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,-13.9,70,83500,0,0,234,0,0,0,0,0,0,0,360,3.1,10,10,8,884,9,999999999,5,0.062,0,88,0.2,0,1 -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,5,0.062,0,88,0.2,0,1 -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,-13.9,70,83600,0,0,210,0,0,0,0,0,0,0,360,3.1,2,2,11.2,77777,9,999999999,5,0.062,0,88,0.2,0,1 -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,-13.9,70,83500,0,0,212,0,0,0,0,0,0,0,110,2.6,3,3,16,77777,9,999999999,5,0.062,0,88,0.2,0,1 -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,-14.4,67,83500,0,0,207,0,0,0,0,0,0,0,110,3.6,1,1,24,77777,9,999999999,5,0.062,0,88,0.2,0,1 -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,67,83500,0,0,204,0,0,0,0,0,0,0,160,3.1,1,1,32,77777,9,999999999,6,0.062,0,88,0.2,0,1 -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,77777,9,999999999,6,0.062,0,88,0.2,0,1 -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,70,83700,0,0,203,0,0,0,0,0,0,0,90,4.1,1,1,40,77777,9,999999999,6,0.062,0,88,0.2,0,1 -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,67,83700,15,477,204,5,80,2,0,0,0,0,80,3.6,2,1,40,77777,9,999999999,6,0.062,0,88,0.2,0,1 -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,-14.4,67,83900,216,1396,213,70,270,28,8174,589,3274,1076,90,4.1,8,4,80,7620,9,999999999,6,0.062,0,88,0.2,0,1 -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,28921,26348,13218,4321,110,2.1,9,6,24,610,9,999999999,6,0.062,0,88,0.2,0,1 -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,42611,32044,20549,7136,100,2.6,9,4,48,77777,9,999999999,6,0.062,0,88,0.2,0,1 -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,43739,22689,25615,9304,80,3.6,7,6,48,762,9,999999999,6,0.062,0,88,0.2,0,1 -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,54967,29447,29947,10977,140,3.1,8,4,40,77777,9,999999999,6,0.062,0,88,0.2,0,1 -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,85553,63255,23088,8982,310,2.1,10,4,40,77777,9,999999999,6,0.062,0,88,0.2,0,1 -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,78379,60647,21571,8285,140,3.1,10,5,40,77777,9,999999999,6,0.062,0,88,0.2,0,1 -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,49734,36999,21646,7775,80,2.1,10,5,32,77777,9,999999999,6,0.062,0,88,0.2,0,1 -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,43418,42967,15481,5263,80,2.1,10,5,32,77777,9,999999999,6,0.062,0,88,0.2,0,1 -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,21298,18973,7800,2489,60,4.6,9,2,32,77777,9,999999999,6,0.062,0,88,0.2,0,1 -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,51,83700,70,1035,242,27,99,21,2906,0,2267,577,80,5.2,8,3,32,77777,9,999999999,6,0.062,0,88,0.2,0,1 -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,77777,9,999999999,6,0.062,0,88,0.2,0,1 -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,61,83800,0,0,234,0,0,0,0,0,0,0,330,3.6,8,3,32,77777,9,999999999,6,0.062,0,88,0.2,0,1 -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,-10.6,61,83800,0,0,229,0,0,0,0,0,0,0,340,3.1,4,2,32,77777,9,999999999,6,0.062,0,88,0.2,0,1 -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,71,83800,0,0,223,0,0,0,0,0,0,0,360,2.6,1,1,32,77777,9,999999999,6,0.062,0,88,0.2,0,1 -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,77777,9,999999999,6,0.062,0,88,0.2,0,1 -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,77777,9,999999999,6,0.062,0,88,0.2,0,1 -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,75,83700,0,0,217,0,0,0,0,0,0,0,190,1.5,1,0,32,77777,9,999999999,6,0.063,0,88,0.2,0,1 -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,71,83700,0,0,219,0,0,0,0,0,0,0,40,1.5,0,0,32,77777,9,999999999,7,0.063,0,88,0.2,0,1 -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,75,83600,0,0,217,0,0,0,0,0,0,0,0,0,0,0,40,77777,9,999999999,7,0.063,0,88,0.2,0,1 -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,2,1,40,77777,9,999999999,7,0.063,0,88,0.2,0,1 -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,77777,9,999999999,7,0.063,0,88,0.2,0,1 -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,77777,9,999999999,7,0.063,0,88,0.2,0,1 -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,77777,9,999999999,7,0.063,0,88,0.2,0,1 -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,10356,4094,7331,2049,80,1.5,6,4,96,7925,9,999999999,7,0.063,0,88,0.2,0,1 -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,30682,28582,10492,3626,110,1,9,3,120,77777,9,999999999,7,0.063,0,88,0.2,0,1 -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,54463,47419,14460,5396,0,0,7,2,112,77777,9,999999999,7,0.063,0,88,0.2,0,1 -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,62363,45288,22829,8547,360,3.1,9,3,96,77777,9,999999999,7,0.063,0,88,0.2,0,1 -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,79174,55745,19400,7710,10,2.1,9,2,96,77777,9,999999999,7,0.063,0,88,0.2,0,1 -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,80323,55611,18111,7277,60,3.1,9,5,96,6706,9,999999999,7,0.063,0,88,0.2,0,1 -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,59407,40018,18171,7163,50,3.6,9,5,96,6706,9,999999999,7,0.063,0,88,0.2,0,1 -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,38845,26407,12186,4756,80,5.2,9,5,80,6706,9,999999999,7,0.063,0,88,0.2,0,1 -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,36415,30415,17046,5685,80,5.7,9,4,80,77777,9,999999999,7,0.063,0,88,0.2,0,1 -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,18083,12134,12290,3383,60,5.2,9,6,80,6706,9,999999999,7,0.063,0,88,0.2,0,1 -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,2222,0,1670,482,360,4.6,9,5,80,6706,9,999999999,7,0.063,0,88,0.2,0,1 -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,6706,9,999999999,7,0.063,0,88,0.2,0,1 -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,6706,9,999999999,7,0.063,0,88,0.2,0,1 -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,9,4,48,77777,9,999999999,7,0.063,0,88,0.2,0,1 -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,77777,9,999999999,7,0.063,0,88,0.2,0,1 -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,10,5,48,77777,9,999999999,7,0.063,0,88,0.2,0,1 -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,-2.8,79,83400,0,0,266,0,0,0,0,0,0,0,0,0,10,7,32,6096,9,999999999,7,0.063,0,88,0.2,0,1 -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,10,10,32,6096,9,999999999,7,0.064,0,88,0.2,0,1 -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,6706,9,999999999,7,0.064,0,88,0.2,0,1 -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,-2.2,83,83200,0,0,277,0,0,0,0,0,0,0,160,2.1,10,9,32,6706,9,999999999,7,0.064,0,88,0.2,0,1 -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,-2.2,83,83200,0,0,271,0,0,0,0,0,0,0,210,2.1,10,8,40,6706,9,999999999,7,0.064,0,88,0.2,0,1 -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,-2.2,83,83200,0,0,266,0,0,0,0,0,0,0,190,2.1,10,7,48,7620,9,999999999,7,0.064,0,88,0.2,0,1 -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,4267,9,999999999,7,0.064,0,88,0.2,0,1 -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,4267,9,999999999,7,0.064,0,88,0.2,0,1 -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,9030,462,8743,2289,180,3.1,9,9,112,4267,9,999999999,7,0.064,0,88,0.2,0,1 -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,-2.8,55,83200,474,1394,286,142,95,109,16098,5551,12403,4177,170,1,9,7,128,7315,9,999999999,7,0.064,0,88,0.2,0,1 -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,20739,6258,15557,5770,140,2.6,9,8,120,4267,9,999999999,7,0.064,0,88,0.2,0,1 -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,44304,12263,36041,11791,170,4.1,10,7,112,4267,9,999999999,7,0.064,0,88,0.2,0,1 -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,70316,47032,25902,9883,130,2.6,9,6,112,7315,9,999999999,7,0.064,0,88,0.2,0,1 -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,-4.4,25,83000,926,1394,321,573,502,239,66532,41375,27897,10554,110,4.1,10,5,112,77777,9,999999999,7,0.064,0,88,0.2,0,1 -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,69143,49491,24758,9337,100,1.5,10,5,112,77777,9,999999999,7,0.064,0,88,0.2,0,1 -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,-6.7,20,82800,743,1394,325,381,181,284,42304,16966,31717,10139,20,1.5,10,7,112,2896,9,999999999,7,0.064,0,88,0.2,0,1 -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,26,82800,558,1394,324,208,129,156,23366,9288,17602,5844,320,5.7,10,8,112,2896,9,999999999,7,0.064,0,88,0.2,0,1 -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,12519,6801,7190,2360,20,4.1,10,7,112,2743,9,999999999,7,0.064,0,88,0.2,0,1 -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,2489,0,2388,628,50,3.1,10,9,112,2591,9,999999999,7,0.064,0,88,0.2,0,1 -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,2591,9,999999999,7,0.064,0,88,0.2,0,1 -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,7620,9,999999999,7,0.064,0,88,0.2,0,1 -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,2286,9,999999999,7,0.064,0,88,0.2,0,1 -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,1829,9,999999999,7,0.064,0,88,0.2,0,1 -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,67,83200,0,0,311,0,0,0,0,0,0,0,60,3.1,10,10,32,1829,9,999999999,7,0.064,0,88,0.2,0,1 -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,975,9,999999999,7,0.064,0,88,0.2,0,1 -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,9,9,32,1341,9,999999999,7,0.064,0,88,0.2,0,1 -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,76,83300,0,0,303,0,0,0,0,0,0,0,0,0,10,10,32,610,9,999999999,7,0.064,0,88,0.2,0,1 -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,76,83300,0,0,303,0,0,0,0,0,0,0,10,2.1,10,10,32,884,9,999999999,7,0.064,0,88,0.2,0,1 -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,85,83300,0,0,277,0,0,0,0,0,0,0,0,0,7,7,32,1676,9,999999999,7,0.064,0,88,0.2,0,1 -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,92,83300,0,0,263,0,0,0,0,0,0,0,170,1.5,8,3,32,77777,9,999999999,7,0.064,0,88,0.2,0,1 -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,92,83400,0,0,291,0,0,0,0,0,0,0,130,2.1,10,10,32,671,9,999999999,7,0.064,0,88,0.2,0,1 -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,88,83400,22,592,286,3,1,3,0,0,0,0,190,2.1,10,9,12.8,2438,9,999999999,7,0.064,0,88,0.2,0,1 -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,79,83500,236,1394,301,37,0,37,3629,0,3655,1388,210,2.6,10,10,12.8,1402,9,999999999,8,0.064,0,88,0.2,0,1 -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,67,83500,480,1394,296,177,207,105,20147,11794,11995,4094,310,1.5,8,8,11.2,1280,9,999999999,8,0.064,0,88,0.2,0,1 -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,32575,16427,20483,7240,350,2.6,7,7,16,1829,9,999999999,8,0.064,0,88,0.2,0,1 -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,-1.1,45,83500,834,1394,321,297,8,292,33407,728,33037,11276,30,4.1,9,9,32,1676,9,999999999,8,0.064,0,88,0.2,0,1 -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,56,83500,919,1394,303,474,179,356,53192,17307,40205,13535,60,3.1,7,7,32,1372,9,999999999,8,0.064,0,88,0.2,0,1 -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,56,83400,932,1394,308,455,175,338,51389,16430,38413,13305,60,5.7,8,8,32,1372,9,999999999,8,0.064,0,88,0.2,0,1 -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,56,83400,874,1394,303,545,581,180,64116,43119,21273,8267,50,5.2,7,7,24,1372,9,999999999,8,0.064,0,88,0.2,0,1 -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,70,83500,748,1394,308,160,0,160,16373,0,16514,6992,30,7.2,10,10,9.6,732,9,999999999,8,0.064,0,88,0.2,0,1 -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,7964,0,8029,3484,350,7.7,10,10,0.6,61,9,999999999,8,0.064,0,88,0.2,0,1 -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,3957,0,3986,1638,360,5.7,10,10,1.6,61,9,999999999,8,0.064,0,88,0.2,0,1 -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,774,0,779,298,10,4.1,10,10,1.4,61,9,999999999,8,0.064,0,88,0.2,0,1 -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,96,84000,0,0,289,0,0,0,0,0,0,0,320,3.1,10,10,4,61,9,999999999,8,0.064,0,88,0.2,0,1 -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,96,84000,0,0,289,0,0,0,0,0,0,0,310,2.6,10,10,4,183,9,999999999,8,0.064,0,88,0.2,0,1 -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,8,0.064,0,88,0.2,0,1 -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,8,0.064,0,88,0.2,0,1 -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,8,0.064,0,88,0.2,0,1 -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,77777,9,999999999,8,0.064,0,88,0.2,0,1 -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,-4.1,62,81500,0,0,285,0,0,0,0,0,0,0,210,4.7,9,7,32,7620,9,999999999,6,0.054,0,88,0.2,0,1 -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,7620,9,999999999,6,0.054,0,88,0.2,0,1 -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,77777,9,999999999,6,0.054,0,88,0.2,0,1 -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,7620,9,999999999,6,0.054,0,88,0.2,0,1 -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,7620,9,999999999,6,0.054,0,88,0.2,0,1 -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,7620,9,999999999,7,0.054,0,88,0.2,0,1 -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,5182,9,999999999,7,0.054,0,88,0.2,0,1 -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,7375,25,7290,2132,210,4.6,9,8,96,5182,9,999999999,7,0.054,0,88,0.2,0,1 -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,23492,9366,18752,5613,190,4.6,9,7,104,4572,9,999999999,7,0.054,0,88,0.2,0,1 -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,47873,38486,14083,5325,210,4.1,8,6,104,4572,9,999999999,7,0.054,0,88,0.2,0,1 -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,52875,32835,24651,9181,170,3.1,7,6,104,4572,9,999999999,7,0.054,0,88,0.2,0,1 -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,-7.2,19,81700,923,1393,313,686,792,161,82173,57723,19368,7744,160,2.6,6,3,96,77777,9,999999999,7,0.054,0,88,0.2,0,1 -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,72430,48109,22188,8768,190,2.1,7,4,96,77777,9,999999999,7,0.054,0,88,0.2,0,1 -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,62449,26971,45064,13825,10,4.6,10,9,96,2286,9,999999999,7,0.054,0,88,0.2,0,1 -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,26437,2883,24394,8645,360,3.6,10,9,96,2591,9,999999999,7,0.054,0,88,0.2,0,1 -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,15257,0,15380,5790,20,4.1,10,10,96,3353,9,999999999,7,0.054,0,88,0.2,0,1 -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,6441,0,6489,2449,10,3.6,10,10,96,2286,9,999999999,7,0.054,0,88,0.2,0,1 -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,1163,0,1171,425,20,4.1,10,10,48,2438,9,999999999,7,0.054,0,88,0.2,0,1 -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,7,0.054,0,88,0.2,0,1 -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,7,0.054,0,88,0.2,0,1 -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,610,9,999999999,8,0.054,0,88,0.2,0,1 -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,549,9,999999999,8,0.054,0,88,0.2,0,1 -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,518,9,999999999,8,0.054,0,88,0.2,0,1 -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,610,9,999999999,8,0.054,0,88,0.2,0,1 -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,8,0.055,0,88,0.2,0,1 -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,-7.8,79,82400,0,0,259,0,0,0,0,0,0,0,130,3.6,10,10,16,427,9,999999999,8,0.055,0,88,0.2,0,1 -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,-7.8,79,82300,0,0,259,0,0,0,0,0,0,0,110,3.6,10,10,16,427,9,999999999,8,0.055,0,88,0.2,0,1 -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,-7.8,79,82400,0,0,259,0,0,0,0,0,0,0,100,3.6,10,10,11.2,366,9,999999999,8,0.055,0,88,0.2,0,1 -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,-7.8,79,82400,0,0,259,0,0,0,0,0,0,0,80,2.1,10,10,9.6,305,9,999999999,8,0.055,0,88,0.2,0,1 -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,-7.8,79,82500,0,0,259,0,0,0,0,0,0,0,60,2.1,10,10,9.6,305,9,999999999,8,0.055,0,88,0.2,0,1 -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,-7.8,79,82500,26,638,259,2,0,2,0,0,0,0,60,2.6,10,10,9.6,305,9,999999999,8,0.055,0,88,0.2,0,1 -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,10434,1445,9722,2547,60,1.5,10,9,8,732,9,999999999,8,0.055,0,88,0.2,0,1 -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,9940,0,10018,3970,80,1.5,10,10,11.2,732,9,999999999,8,0.055,0,88,0.2,0,1 -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,19640,6612,13773,5237,0,0,10,9,11.2,732,9,999999999,8,0.055,0,88,0.2,0,1 -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,61,82700,846,1392,272,349,119,276,39564,10624,31467,11033,230,2.1,10,8,11.2,2438,9,999999999,8,0.055,0,88,0.2,0,1 -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,58875,34696,23474,9185,0,0,10,6,11.2,7620,9,999999999,8,0.055,0,88,0.2,0,1 -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,-4.4,48,82700,943,1392,276,528,433,234,61602,35247,27444,10509,40,2.1,9,4,11.2,77777,9,999999999,7,0.055,0,88,0.2,0,1 -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,55146,32730,24605,9379,130,1.5,10,5,11.2,77777,9,999999999,7,0.055,0,88,0.2,0,1 -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,42652,24730,23558,8463,320,2.1,10,8,9.6,6096,9,999999999,7,0.055,0,88,0.2,0,1 -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,43,82900,573,1392,299,230,67,202,25390,5478,22414,6951,350,4.1,10,9,12.8,6096,9,999999999,7,0.055,0,88,0.2,0,1 -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,-5,46,82900,341,1392,288,93,69,76,10482,2798,8594,2768,10,5.2,9,8,24,6096,9,999999999,7,0.055,0,88,0.2,0,1 -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,54,83000,88,1149,262,28,132,18,3126,0,2014,590,40,4.1,7,2,32,77777,9,999999999,7,0.055,0,88,0.2,0,1 -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,61,83100,0,0,261,0,0,0,0,0,0,0,130,2.6,9,4,24,77777,9,999999999,7,0.055,0,88,0.2,0,1 -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,77777,9,999999999,7,0.055,0,88,0.2,0,1 -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,77777,9,999999999,7,0.055,0,88,0.2,0,1 -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,77777,9,999999999,7,0.055,0,88,0.2,0,1 -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,77777,9,999999999,7,0.055,0,88,0.2,0,1 -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,77777,9,999999999,7,0.055,0,88,0.2,0,1 -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,77777,9,999999999,6,0.056,0,88,0.2,0,1 -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,77777,9,999999999,6,0.056,0,88,0.2,0,1 -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,77777,9,999999999,6,0.056,0,88,0.2,0,1 -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,-8.3,49,83300,0,0,241,0,0,0,0,0,0,0,200,1.5,0,0,32,77777,9,999999999,6,0.056,0,88,0.2,0,1 -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,77777,9,999999999,6,0.056,0,88,0.2,0,1 -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,77777,9,999999999,6,0.056,0,88,0.2,0,1 -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,0,0,0,0,180,1,0,0,112,77777,9,999999999,6,0.056,0,88,0.2,0,1 -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,14460,8205,5365,1724,320,7.2,0,0,112,77777,9,999999999,6,0.056,0,88,0.2,0,1 -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,20,83500,499,1392,279,322,691,75,37900,36491,8852,3195,320,8.2,0,0,112,77777,9,999999999,6,0.056,0,88,0.2,0,1 -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,58263,48791,11471,4440,340,3.1,1,1,104,77777,9,999999999,6,0.056,0,88,0.2,0,1 -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,78298,58112,13583,5464,310,4.1,1,0,104,77777,9,999999999,6,0.056,0,88,0.2,0,1 -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,88595,60883,14675,6007,290,5.2,0,0,104,77777,9,999999999,6,0.056,0,88,0.2,0,1 -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,90112,61049,14702,6036,300,10.3,1,1,112,77777,9,999999999,6,0.056,0,88,0.2,0,1 -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,56181,34496,23571,9070,330,7.2,8,4,112,7620,9,999999999,6,0.056,0,88,0.2,0,1 -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,45887,32465,15830,6101,290,3.1,6,4,112,7620,9,999999999,6,0.056,0,88,0.2,0,1 -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,42057,38025,17601,5962,130,3.1,6,5,112,7620,9,999999999,6,0.056,0,88,0.2,0,1 -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,12752,3841,10686,3263,280,6.7,7,6,96,7315,9,999999999,6,0.056,0,88,0.2,0,1 -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,-13.3,11,83200,92,1194,308,33,26,31,3540,0,3337,836,280,10.3,4,4,96,77777,9,999999999,6,0.056,0,88,0.2,0,1 -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,77777,9,999999999,6,0.056,0,88,0.2,0,1 -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,77777,9,999999999,6,0.056,0,88,0.2,0,1 -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,5486,9,999999999,5,0.056,0,88,0.2,0,1 -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,5486,9,999999999,5,0.056,0,88,0.2,0,1 -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,77777,9,999999999,5,0.056,0,88,0.2,0,1 -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,5486,9,999999999,5,0.056,0,88,0.2,0,1 -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,77777,9,999999999,5,0.056,0,88,0.2,0,1 -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,-6.7,28,83200,0,0,280,0,0,0,0,0,0,0,290,5.2,0,0,32,77777,9,999999999,5,0.056,0,88,0.2,0,1 -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,77777,9,999999999,5,0.056,0,88,0.2,0,1 -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,-8.3,25,83200,0,0,278,0,0,0,0,0,0,0,270,3.6,0,0,32,77777,9,999999999,5,0.056,0,88,0.2,0,1 -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,77777,9,999999999,5,0.056,0,88,0.2,0,1 -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,77777,9,999999999,5,0.056,0,88,0.2,0,1 -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,0,0,0,0,240,8.8,1,0,112,77777,9,999999999,6,0.056,0,88,0.2,0,1 -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,15045,47586,4839,670,120,1.5,4,1,104,77777,9,999999999,6,0.056,0,88,0.2,0,1 -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,31951,28210,13469,4586,210,6.7,8,3,112,77777,9,999999999,6,0.056,0,88,0.2,0,1 -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,59297,50302,14254,5433,240,6.2,6,2,112,77777,9,999999999,6,0.056,0,88,0.2,0,1 -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,14,83000,859,1391,322,276,313,83,34426,19716,10381,4224,290,2.6,8,5,96,6096,9,999999999,6,0.056,0,88,0.2,0,1 -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,63226,37603,26597,10243,220,2.1,10,6,96,6096,9,999999999,6,0.056,0,88,0.2,0,1 -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,70128,43651,27302,10517,270,2.1,10,6,96,6096,9,999999999,7,0.056,0,88,0.2,0,1 -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,45728,24742,20401,8040,270,4.1,10,6,96,6096,9,999999999,7,0.056,0,88,0.2,0,1 -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,45416,18160,33847,10827,310,5.2,10,9,96,6096,9,999999999,7,0.056,0,88,0.2,0,1 -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,26282,10381,20002,6558,340,2.1,10,9,96,6096,9,999999999,7,0.056,0,88,0.2,0,1 -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,17226,7138,13930,3847,230,3.6,10,9,80,6096,9,999999999,7,0.056,0,88,0.2,0,1 -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,3571,0,3148,831,250,7.2,10,9,48,6096,9,999999999,7,0.056,0,88,0.2,0,1 -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,6096,9,999999999,8,0.056,0,88,0.2,0,1 -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,-5,24,82400,0,0,349,0,0,0,0,0,0,0,220,5.2,10,10,32,6096,9,999999999,8,0.056,0,88,0.2,0,1 -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,-4.4,25,82400,0,0,349,0,0,0,0,0,0,0,220,8.8,10,10,48,4267,9,999999999,8,0.056,0,88,0.2,0,1 -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,4267,9,999999999,8,0.056,0,88,0.2,0,1 -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,4267,9,999999999,8,0.056,0,88,0.2,0,1 -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,4267,9,999999999,9,0.056,0,88,0.2,0,1 -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,3962,9,999999999,9,0.057,0,88,0.2,0,1 -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,3962,9,999999999,9,0.057,0,88,0.2,0,1 -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,7620,9,999999999,9,0.057,0,88,0.2,0,1 -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,7620,9,999999999,9,0.057,0,88,0.2,0,1 -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,3962,9,999999999,9,0.057,0,88,0.2,0,1 -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,3962,9,999999999,9,0.057,0,88,0.2,0,1 -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,43,81900,36,753,341,4,0,4,0,0,0,0,210,7.2,10,10,112,2438,9,999999999,9,0.057,0,88,0.2,0,1 -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,4916,0,4952,1843,230,6.7,10,10,32,2591,9,999999999,9,0.057,0,88,0.2,0.3,1 -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,10851,0,10937,4325,260,4.1,10,10,32,2438,9,999999999,9,0.057,0,88,0.2,0,1 -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,18162,4787,13580,5228,60,5.7,10,9,64,1372,9,999999999,9,0.057,0,88,0.2,0,1 -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,25162,0,25390,10338,50,4.6,10,10,40,3048,9,999999999,9,0.057,0,88,0.2,0,1 -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,22341,0,22548,9896,50,5.7,10,10,48,2591,9,999999999,9,0.057,0,88,0.2,0,1 -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,46435,13698,34022,12518,70,3.1,10,9,48,2591,9,999999999,9,0.057,0,88,0.2,0,1 -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,21127,0,21320,9274,360,7.7,10,10,9.6,671,9,999999999,9,0.057,0,88,0.2,2.3,1 -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,96,82200,775,1390,289,144,0,144,14772,0,14901,6555,360,5.2,10,10,0.8,305,9,999999999,9,0.057,0,88,0.2,2.5,1 -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,12827,0,12933,5221,80,1.5,10,10,16,1128,9,999999999,9,0.057,0,88,0.2,0,1 -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,6935,0,6987,2657,160,3.1,10,10,16,1250,9,999999999,9,0.057,0,88,0.2,0,1 -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,1453,0,1463,533,210,2.6,10,10,16,1219,9,999999999,9,0.057,0,88,0.2,0,1 -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,3048,9,999999999,9,0.057,0,88,0.2,0,1 -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,3048,9,999999999,9,0.057,0,88,0.2,0,1 -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,3658,9,999999999,9,0.057,0,88,0.2,0,1 -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,3658,9,999999999,8,0.057,0,88,0.2,0,1 -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,1676,9,999999999,8,0.057,0,88,0.2,0,1 -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,2438,9,999999999,8,0.057,0,88,0.2,0,1 -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,10,10,32,2438,9,999999999,8,0.058,0,88,0.2,0,1 -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,2438,9,999999999,8,0.058,0,88,0.2,0,1 -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,2438,9,999999999,8,0.058,0,88,0.2,0,1 -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,7620,9,999999999,8,0.058,0,88,0.2,0,1 -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,-5.6,62,82600,0,0,254,0,0,0,0,0,0,0,70,1.5,6,3,32,77777,9,999999999,8,0.058,0,88,0.2,0,1 -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,6,6,32,3353,9,999999999,8,0.058,0,88,0.2,0,1 -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,72,82700,40,776,264,10,20,9,0,0,0,0,80,1.5,8,8,64,1829,9,999999999,8,0.058,0,88,0.2,0,1 -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,7413,584,6872,2157,90,5.2,10,9,96,1524,9,999999999,8,0.058,0,88,0.2,0,1 -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,19380,4651,16652,5436,120,3.1,10,9,16,1524,9,999999999,8,0.058,0,88,0.2,0,1 -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,83,83000,724,1389,263,267,88,221,30169,7345,25101,8655,220,4.1,10,9,80,1219,9,999999999,7,0.058,0,88,0.2,0,1 -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,65361,40454,34466,11945,230,3.6,8,5,96,1524,9,999999999,7,0.058,0,88,0.2,0,1 -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,70543,87081,10215,2032,220,4.6,1,1,96,77777,9,999999999,7,0.058,0,88,0.2,0,1 -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,79643,98997,9523,1976,320,3.1,1,1,96,77777,9,999999999,7,0.058,0,88,0.2,0,1 -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,32,82900,908,1389,258,672,930,64,71166,93265,9211,1807,200,2.1,1,1,96,77777,9,999999999,7,0.058,0,88,0.2,0,1 -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,-14.4,20,82900,781,1389,258,513,696,121,61471,47830,14551,5693,250,2.6,1,1,96,77777,9,999999999,7,0.058,0,88,0.2,0,1 -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,-10.6,28,82900,594,1389,265,390,743,72,46990,41971,8697,3284,170,2.6,2,2,96,77777,9,999999999,6,0.058,0,88,0.2,0,1 -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,23228,21035,8337,2759,160,5.7,3,3,96,77777,9,999999999,6,0.058,0,88,0.2,0,1 -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,4295,0,2871,812,170,5.7,5,4,80,77777,9,999999999,6,0.058,0,88,0.2,0,1 -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,7620,9,999999999,6,0.058,0,88,0.2,0,1 -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,-5.6,62,83100,0,0,260,0,0,0,0,0,0,0,130,1.5,7,6,32,7620,9,999999999,6,0.058,0,88,0.2,0,1 -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,7620,9,999999999,6,0.058,0,88,0.2,0,1 -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,7620,9,999999999,6,0.058,0,88,0.2,0,1 -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,7620,9,999999999,5,0.058,0,88,0.2,0,1 -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,1402,9,999999999,5,0.058,0,88,0.2,0,1 -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,76,83000,0,0,275,0,0,0,0,0,0,0,130,3.6,10,10,32,2743,9,999999999,5,0.059,0,88,0.2,0,1 -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,8,8,32,7620,9,999999999,5,0.059,0,88,0.2,0,1 -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,87,83000,0,0,248,0,0,0,0,0,0,0,290,3.6,7,6,32,7620,9,999999999,5,0.059,0,88,0.2,0,1 -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,2896,9,999999999,5,0.059,0,88,0.2,0,1 -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,7620,9,999999999,5,0.059,0,88,0.2,0,1 -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,7620,9,999999999,5,0.059,0,88,0.2,0,1 -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,1615,0,1296,328,40,2.1,7,5,64,7620,9,999999999,4,0.059,0,88,0.2,0,1 -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,91,83200,283,1389,253,113,155,81,12427,5702,8941,2631,120,1.5,8,8,24,1676,9,999999999,4,0.059,0,88,0.2,0,1 -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,36052,73468,6676,1103,60,3.1,2,0,48,77777,9,999999999,4,0.059,0,88,0.2,0,1 -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,60137,96773,7357,1352,0,0,0,0,48,77777,9,999999999,4,0.059,0,88,0.2,0,1 -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,69291,94493,8019,1606,290,2.1,1,1,96,77777,9,999999999,4,0.059,0,88,0.2,0,1 -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,77323,97294,8315,1791,290,3.6,1,1,96,77777,9,999999999,4,0.059,0,88,0.2,0,1 -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,83309,104014,8702,1875,190,3.1,0,0,96,77777,9,999999999,4,0.059,0,88,0.2,0,1 -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,-16.1,17,82900,914,1389,251,732,1024,58,77530,102530,8381,1711,250,5.2,0,0,96,77777,9,999999999,4,0.059,0,88,0.2,0,1 -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,-17.2,15,82900,786,1389,250,616,996,51,65429,98739,7573,1434,250,6.2,0,0,96,77777,9,999999999,4,0.059,0,88,0.2,0,1 -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,-18.3,14,82900,600,1389,249,447,938,42,47622,90302,6467,1144,300,6.2,0,0,96,77777,9,999999999,4,0.059,0,88,0.2,0,1 -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,26097,71409,4659,790,300,7.2,0,0,96,77777,9,999999999,4,0.059,0,88,0.2,0,1 -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,5534,27189,2320,314,300,7.2,0,0,80,77777,9,999999999,4,0.059,0,88,0.2,0,1 -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,25,83000,0,0,239,0,0,0,0,0,0,0,280,4.1,0,0,48,77777,9,999999999,3,0.059,0,88,0.2,0,1 -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,77777,9,999999999,3,0.059,0,88,0.2,0,1 -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,77777,9,999999999,3,0.059,0,88,0.2,0,1 -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,7620,9,999999999,3,0.059,0,88,0.2,0,1 -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,77777,9,999999999,3,0.059,0,88,0.2,0,1 -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,77777,9,999999999,3,0.059,0,88,0.2,0,1 -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,77777,9,999999999,3,0.059,0,88,0.2,0,1 -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,25,83100,0,0,246,0,0,0,0,0,0,0,300,6.2,4,2,32,77777,9,999999999,3,0.059,0,88,0.2,0,1 -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,26,83100,0,0,241,0,0,0,0,0,0,0,320,5.2,3,1,32,77777,9,999999999,3,0.059,0,88,0.2,0,1 -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,-14.4,29,83200,0,0,235,0,0,0,0,0,0,0,300,3.1,1,0,32,77777,9,999999999,3,0.059,0,88,0.2,0,1 -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,-15,27,83300,0,0,235,0,0,0,0,0,0,0,320,6.2,0,0,32,77777,9,999999999,3,0.059,0,88,0.2,0,1 -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,26,83300,0,0,237,0,0,0,0,0,0,0,310,8.2,0,0,48,77777,9,999999999,3,0.059,0,88,0.2,0,1 -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,25,83400,48,844,239,17,140,9,1894,0,1005,286,310,6.2,0,0,80,77777,9,999999999,3,0.059,0,88,0.2,0,1 -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,22,83400,290,1388,245,170,631,38,19949,13530,4467,1512,350,4.6,0,0,112,77777,9,999999999,3,0.059,0,88,0.2,0,1 -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,39888,78746,8708,1221,320,5.2,0,0,96,77777,9,999999999,3,0.059,0,88,0.2,0,1 -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,-15.6,18,83500,737,1388,252,564,925,72,59303,91008,10571,1620,290,5.2,0,0,96,77777,9,999999999,3,0.059,0,88,0.2,0,1 -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,73568,96734,11812,2000,320,5.7,0,0,96,77777,9,999999999,3,0.059,0,88,0.2,0,1 -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,80672,52476,15328,6306,300,4.1,2,2,96,77777,9,999999999,3,0.059,0,88,0.2,0,1 -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,72547,45516,17412,7129,300,11.3,4,4,96,77777,9,999999999,3,0.059,0,88,0.2,0,1 -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,85131,58765,13159,5392,300,12.4,2,2,80,77777,9,999999999,3,0.059,0,88,0.2,0,1 -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,63573,49750,16582,6433,300,11.3,3,3,80,77777,9,999999999,3,0.059,0,88,0.2,0,1 -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,49782,45976,10392,3893,310,7.7,2,2,96,77777,9,999999999,3,0.059,0,88,0.2,0,1 -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,21161,18111,6877,2360,290,10.3,3,3,80,77777,9,999999999,3,0.059,0,88,0.2,0,1 -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,4694,0,2688,794,300,8.2,2,2,64,77777,9,999999999,3,0.059,0,88,0.2,0,1 -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,77777,9,999999999,3,0.059,0,88,0.2,0,1 -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,77777,9,999999999,3,0.059,0,88,0.2,0,1 -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,77777,9,999999999,3,0.059,0,88,0.2,0,1 -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,-12.2,35,84100,0,0,237,0,0,0,0,0,0,0,230,1.5,0,0,32,77777,9,999999999,3,0.059,0,88,0.2,0,1 -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,77777,9,999999999,3,0.059,0,88,0.2,0,1 -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,77777,9,999999999,3,0.059,0,88,0.2,0,1 -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,77777,9,999999999,3,0.06,0,88,0.2,0,1 -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,77777,9,999999999,3,0.06,0,88,0.2,0,1 -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,77777,9,999999999,3,0.06,0,88,0.2,0,1 -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,77777,9,999999999,3,0.06,0,88,0.2,0,1 -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,37,84200,0,0,222,0,0,0,0,0,0,0,200,3.6,0,0,32,77777,9,999999999,3,0.06,0,88,0.2,0,1 -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,77777,9,999999999,3,0.06,0,88,0.2,0,1 -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,2247,0,1013,295,180,5.2,0,0,80,77777,9,999999999,3,0.06,0,88,0.2,0,1 -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,19194,56671,5441,749,210,4.6,0,0,112,77777,9,999999999,3,0.06,0,88,0.2,0,1 -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,41146,82137,7829,1197,190,6.2,0,0,112,77777,9,999999999,3,0.06,0,88,0.2,0,1 -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,60503,93546,9445,1566,180,5.7,0,0,112,77777,9,999999999,3,0.06,0,88,0.2,0,1 -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,8,84100,892,1387,268,710,990,73,74587,98742,10449,1911,180,5.2,0,0,112,77777,9,999999999,3,0.06,0,88,0.2,0,1 -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,82403,100952,10968,2175,170,6.2,0,0,112,77777,9,999999999,3,0.06,0,88,0.2,0,1 -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,-18.9,7,83800,986,1387,286,796,1010,79,83460,101241,11079,2223,190,5.2,0,0,112,77777,9,999999999,3,0.06,0,88,0.2,0,1 -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,77706,99561,10660,2009,170,6.7,0,0,112,77777,9,999999999,4,0.06,0,88,0.2,0,1 -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,-18.3,7,83700,797,1387,287,601,922,71,63192,91288,10336,1715,160,6.7,1,0,112,77777,9,999999999,4,0.06,0,88,0.2,0,1 -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,46895,82749,10053,1380,170,8.8,3,0,112,77777,9,999999999,4,0.06,0,88,0.2,0,1 -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,28831,25868,5251,1849,170,8.8,2,0,112,77777,9,999999999,4,0.06,0,88,0.2,0,1 -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,5206,0,3109,896,160,7.7,6,1,96,77777,9,999999999,4,0.06,0,88,0.2,0,1 -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,14,83500,0,0,278,0,0,0,0,0,0,0,170,8.2,2,2,48,77777,9,999999999,4,0.06,0,88,0.2,0,1 -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,15,83500,0,0,276,0,0,0,0,0,0,0,170,6.2,3,3,32,77777,9,999999999,4,0.06,0,88,0.2,0,1 -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,77777,9,999999999,4,0.06,0,88,0.2,0,1 -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,77777,9,999999999,4,0.06,0,88,0.2,0,1 -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,77777,9,999999999,4,0.06,0,88,0.2,0,1 -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,77777,9,999999999,4,0.06,0,88,0.2,0,1 -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,77777,9,999999999,5,0.061,0,88,0.2,0,1 -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,77777,9,999999999,5,0.061,0,88,0.2,0,1 -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,77777,9,999999999,5,0.061,0,88,0.2,0,1 -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,77777,9,999999999,5,0.061,0,88,0.2,0,1 -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,77777,9,999999999,5,0.061,0,88,0.2,0,1 -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,7620,9,999999999,5,0.061,0,88,0.2,0,1 -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,1660,0,1331,374,190,4.6,8,5,80,7620,9,999999999,5,0.061,0,88,0.2,0,1 -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,14777,6968,11348,3152,180,4.6,7,4,96,7620,9,999999999,5,0.061,0,88,0.2,0,1 -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,39420,36752,13072,4622,200,4.1,8,3,112,77777,9,999999999,5,0.061,0,88,0.2,0,1 -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,58648,46958,16349,6251,190,4.1,7,2,112,77777,9,999999999,6,0.061,0,88,0.2,0,1 -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,77563,55878,23936,9232,180,4.6,8,3,112,77777,9,999999999,6,0.061,0,88,0.2,0,1 -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,79439,93137,14507,2473,260,5.2,4,1,112,77777,9,999999999,6,0.061,0,88,0.2,0,1 -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,87986,56219,15833,6539,260,7.7,4,1,112,77777,9,999999999,6,0.061,0,88,0.2,0,1 -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,76010,51508,21629,8572,280,6.7,7,2,96,77777,9,999999999,6,0.061,0,88,0.2,0,1 -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,62094,46696,20753,7854,240,4.6,8,3,96,77777,9,999999999,6,0.061,0,88,0.2,0,1 -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,46745,42107,14438,5241,280,4.6,7,2,96,77777,9,999999999,6,0.061,0,88,0.2,0,1 -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,22127,19116,9335,3082,260,5.7,8,3,96,77777,9,999999999,6,0.061,0,88,0.2,0,1 -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,-6.1,21,82800,122,1352,319,41,72,34,4478,0,3725,1029,270,5.7,9,5,96,7620,9,999999999,7,0.061,0,88,0.2,0,1 -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,77777,9,999999999,7,0.061,0,88,0.2,0,1 -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,77777,9,999999999,7,0.061,0,88,0.2,0,1 -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,77777,9,999999999,7,0.061,0,88,0.2,0,1 -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,77777,9,999999999,7,0.061,0,88,0.2,0,1 -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,77777,9,999999999,7,0.061,0,88,0.2,0,1 -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,77777,9,999999999,7,0.061,0,88,0.2,0,1 -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,77777,9,999999999,8,0.062,0,88,0.2,0,1 -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,77777,9,999999999,8,0.062,0,88,0.2,0,1 -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,77777,9,999999999,8,0.062,0,88,0.2,0,1 -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,77777,9,999999999,8,0.062,0,88,0.2,0,1 -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,77777,9,999999999,8,0.062,0,88,0.2,0,1 -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,77777,9,999999999,8,0.062,0,88,0.2,0,1 -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,2005,0,1339,386,120,2.6,6,2,96,77777,9,999999999,8,0.062,0,88,0.2,0,1 -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,18547,53622,4985,755,180,4.6,3,1,96,77777,9,999999999,8,0.062,0,88,0.2,0,1 -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,42940,86038,6361,1100,190,6.2,0,0,112,77777,9,999999999,7,0.062,0,88,0.2,0,1 -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,23,82300,758,1386,310,528,857,59,56196,85138,8735,1527,160,3.6,3,1,112,77777,9,999999999,7,0.062,0,88,0.2,0,1 -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,69922,91365,9353,1823,190,3.6,2,1,112,77777,9,999999999,7,0.062,0,88,0.2,0,1 -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,21,82100,987,1386,325,685,695,190,81826,52363,22803,9139,280,2.1,5,4,104,77777,9,999999999,7,0.062,0,88,0.2,0,1 -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,62212,29632,34311,12810,190,4.1,9,9,96,2743,9,999999999,7,0.062,0,88,0.2,0,1 -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,82800,57240,21422,8519,250,2.1,5,5,96,77777,9,999999999,7,0.062,0,88,0.2,0,1 -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,35791,21018,13832,5490,210,8.8,7,7,96,2896,9,999999999,7,0.062,0,88,0.2,0,1 -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,15,81800,620,1386,328,329,135,269,35878,12835,29505,8496,230,6.2,9,8,96,2743,9,999999999,6,0.062,0,88,0.2,0,1 -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,16,81700,387,1386,330,131,129,95,14716,6639,10710,3444,190,6.2,9,9,96,4267,9,999999999,6,0.062,0,88,0.2,0,1 -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,2726,0,2744,922,210,7.2,10,10,64,4267,9,999999999,6,0.062,0,88,0.2,0,1 -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,2743,9,999999999,6,0.062,0,88,0.2,0,1 -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,76,82100,0,0,303,0,0,0,0,0,0,0,340,7.7,10,10,24,1067,9,999999999,6,0.062,0,88,0.2,0,1 -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,82,82200,0,0,299,0,0,0,0,0,0,0,350,6.2,10,10,24,823,9,999999999,6,0.062,0,88,0.2,0,1 -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,1981,9,999999999,5,0.062,0,88,0.2,0,1 -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,1981,9,999999999,5,0.062,0,88,0.2,0,1 -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,79,82400,0,0,301,0,0,0,0,0,0,0,10,8.2,10,10,32,1036,9,999999999,5,0.062,0,88,0.2,0,1 -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,1067,9,999999999,5,0.062,0,88,0.2,0,1 -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,1829,9,999999999,5,0.062,0,88,0.2,0,1 -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,77777,9,999999999,5,0.062,0,88,0.2,0,1 -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,-5.6,62,82700,0,0,251,0,0,0,0,0,0,0,360,4.1,2,2,32,77777,9,999999999,5,0.062,0,88,0.2,0,1 -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,77777,9,999999999,4,0.062,0,88,0.2,0,1 -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,77777,9,999999999,4,0.062,0,88,0.2,0,1 -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,2218,0,1556,444,360,4.1,1,1,96,77777,9,999999999,4,0.062,0,88,0.2,0,1 -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,19319,15549,6763,2232,350,5.2,1,1,112,77777,9,999999999,4,0.062,0,88,0.2,0,1 -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,45126,41869,9527,3530,350,5.2,0,0,112,77777,9,999999999,4,0.062,0,88,0.2,0,1 -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,26,83100,764,1385,266,565,840,101,68449,54607,12275,4840,310,4.6,0,0,96,77777,9,999999999,4,0.062,0,88,0.2,0,1 -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,86226,60385,14174,5785,310,4.6,0,0,96,77777,9,999999999,4,0.062,0,88,0.2,0,1 -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,96413,62618,15154,6272,10,6.7,0,0,96,77777,9,999999999,4,0.062,0,88,0.2,0,1 -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,97746,63000,15294,6338,360,5.2,0,0,96,77777,9,999999999,4,0.062,0,88,0.2,0,1 -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,14,83000,942,1385,269,722,872,129,88349,60792,15845,6474,350,6.2,2,0,96,77777,9,999999999,4,0.062,0,88,0.2,0,1 -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,14,83000,813,1385,274,573,720,149,67970,52529,17747,6897,20,6.7,8,1,96,77777,9,999999999,4,0.062,0,88,0.2,0,1 -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,41788,35141,15340,5546,50,4.6,7,2,88,77777,9,999999999,4,0.062,0,88,0.2,0,1 -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,18837,11449,12794,3925,60,6.2,10,5,96,4877,9,999999999,4,0.062,0,88,0.2,0,1 -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,0,3853,1083,90,5.2,10,5,96,4572,9,999999999,4,0.062,0,88,0.2,0,1 -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,77777,9,999999999,4,0.062,0,88,0.2,0,1 -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,7620,9,999999999,4,0.062,0,88,0.2,0,1 -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,4267,9,999999999,4,0.062,0,88,0.2,0,1 -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,-8.9,47,83400,0,0,253,0,0,0,0,0,0,0,160,2.1,6,4,32,4267,9,999999999,4,0.062,0,88,0.2,0,1 -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,-8.9,47,83400,0,0,251,0,0,0,0,0,0,0,190,2.6,5,3,32,77777,9,999999999,4,0.062,0,88,0.2,0,1 -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,77777,9,999999999,4,0.062,0,88,0.2,0,1 -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,77777,9,999999999,4,0.063,0,88,0.2,0,1 -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,77777,9,999999999,4,0.063,0,88,0.2,0,1 -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,77777,9,999999999,4,0.063,0,88,0.2,0,1 -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,77777,9,999999999,4,0.063,0,88,0.2,0,1 -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,77777,9,999999999,4,0.063,0,88,0.2,0,1 -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,77777,9,999999999,4,0.063,0,88,0.2,0,1 -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,3036,0,1465,432,200,2.6,0,0,96,77777,9,999999999,4,0.063,0,88,0.2,0,1 -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,23123,18074,4846,1669,0,0,0,0,96,77777,9,999999999,4,0.063,0,88,0.2,0,1 -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,42687,80067,8960,1287,300,2.1,0,0,96,77777,9,999999999,4,0.063,0,88,0.2,0,1 -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,61814,90947,10929,1703,360,3.6,0,0,96,77777,9,999999999,4,0.063,0,88,0.2,0,1 -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,75759,96183,12010,2109,330,3.6,0,0,96,77777,9,999999999,4,0.063,0,88,0.2,0,1 -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,81087,94726,13019,2468,90,4.6,1,0,104,77777,9,999999999,4,0.063,0,88,0.2,0,1 -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,80823,94024,12344,2449,60,4.6,1,1,96,77777,9,999999999,4,0.063,0,88,0.2,0,1 -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,73298,87739,14191,2328,60,3.1,1,1,96,77777,9,999999999,4,0.063,0,88,0.2,0,1 -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,62962,46347,13973,5561,60,3.6,2,1,96,77777,9,999999999,4,0.063,0,88,0.2,0,1 -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,48256,43166,15138,5504,100,3.1,3,1,80,77777,9,999999999,4,0.063,0,88,0.2,0,1 -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,27538,24811,6159,2171,100,4.1,2,1,64,77777,9,999999999,4,0.063,0,88,0.2,0,1 -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,5944,0,3864,1100,90,5.7,5,3,64,77777,9,999999999,4,0.063,0,88,0.2,0,1 -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,77777,9,999999999,4,0.063,0,88,0.2,0,1 -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,7010,9,999999999,4,0.063,0,88,0.2,0,1 -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,7010,9,999999999,4,0.063,0,88,0.2,0,1 -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,7010,9,999999999,4,0.063,0,88,0.2,0,1 -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,77777,9,999999999,4,0.063,0,88,0.2,0,1 -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,77777,9,999999999,4,0.063,0,88,0.2,0,1 -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,10,8,32,6096,9,999999999,4,0.064,0,88,0.2,0,1 -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,38,83100,0,0,283,0,0,0,0,0,0,0,170,1.5,10,10,32,3048,9,999999999,4,0.064,0,88,0.2,0,1 -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,-7.8,52,83000,0,0,279,0,0,0,0,0,0,0,350,3.6,10,10,32,2438,9,999999999,5,0.064,0,88,0.2,0,1 -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,2134,9,999999999,5,0.064,0,88,0.2,0,1 -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,2134,9,999999999,5,0.064,0,88,0.2,0,1 -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,9,7,48,2134,9,999999999,5,0.064,0,88,0.2,0,1 -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,1356,0,1365,468,10,2.1,10,10,80,6096,9,999999999,5,0.064,0,88,0.2,0,1 -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,7725,1454,6473,2177,360,2.6,10,9,64,6706,9,999999999,5,0.064,0,88,0.2,0,1 -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,14561,0,14679,5673,340,4.1,10,10,64,6706,9,999999999,5,0.064,0,88,0.2,0,1 -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,41611,10304,35165,11186,330,2.6,10,9,64,6706,9,999999999,5,0.064,0,88,0.2,0,1 -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,40867,14198,27622,10502,250,1.5,10,9,64,6706,9,999999999,5,0.064,0,88,0.2,0,1 -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,26,82600,1005,1383,285,551,227,386,62486,22493,44060,15228,180,6.7,9,7,32,6706,9,999999999,5,0.064,0,88,0.2,0,1 -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,61328,14662,50102,16442,150,8.8,10,8,48,7620,9,999999999,5,0.064,0,88,0.2,0,1 -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,70396,41406,33782,12404,160,9.8,10,7,32,6096,9,999999999,5,0.064,0,88,0.2,0,1 -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,46028,17952,33279,11293,150,8.2,9,8,40,5486,9,999999999,5,0.064,0,88,0.2,0,1 -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,30897,14027,22016,7364,170,7.7,10,5,48,5486,9,999999999,5,0.064,0,88,0.2,0,1 -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,18080,4954,15866,4524,160,8.8,10,8,56,4877,9,999999999,5,0.064,0,88,0.2,0,1 -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,5589,1,5178,1331,160,9.3,10,7,64,4877,9,999999999,6,0.064,0,88,0.2,0,1 -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,4572,9,999999999,6,0.064,0,88,0.2,0,1 -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,77777,9,999999999,6,0.064,0,88,0.2,0,1 -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,77777,9,999999999,6,0.064,0,88,0.2,0,1 -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,-4.4,69,82700,0,0,253,0,0,0,0,0,0,0,210,4.1,7,2,32,77777,9,999999999,6,0.064,0,88,0.2,0,1 -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,-4.4,69,82700,0,0,261,0,0,0,0,0,0,0,190,4.6,8,6,32,1829,9,999999999,6,0.064,0,88,0.2,0,1 -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,4877,9,999999999,6,0.064,0,88,0.2,0,1 -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,-4.4,69,82700,0,0,282,0,0,0,0,0,0,0,250,3.6,10,10,24,701,9,999999999,6,0.065,0,88,0.2,0,1 -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,640,9,999999999,6,0.065,0,88,0.2,0,1 -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,610,9,999999999,6,0.065,0,88,0.2,0,1 -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,610,9,999999999,6,0.065,0,88,0.2,0,1 -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,640,9,999999999,6,0.065,0,88,0.2,0,1 -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,3048,9,999999999,6,0.065,0,88,0.2,0,1 -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,1259,0,1267,451,80,2.1,10,10,8,671,9,999999999,6,0.065,0,88,0.2,0,1 -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,6837,0,6888,2582,40,1.5,10,10,8,792,9,999999999,6,0.065,0,88,0.2,0,1 -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,12941,0,13047,5240,350,2.6,10,10,8,427,9,999999999,6,0.065,0,88,0.2,0,1 -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,18196,0,18355,7777,330,2.1,10,10,9.6,427,9,999999999,6,0.065,0,88,0.2,0,1 -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,22159,0,22361,9759,10,3.6,10,10,9.6,792,9,999999999,6,0.065,0,88,0.2,0,1 -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,51950,15549,37813,13843,360,2.1,9,9,11.2,792,9,999999999,6,0.065,0,88,0.2,0,1 -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,48,82800,1021,1383,292,288,27,267,33687,2263,31405,12090,80,2.6,9,9,11.2,2438,9,999999999,6,0.065,0,88,0.2,0,1 -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,44,82700,958,1383,291,393,280,198,46614,21467,23598,9341,50,2.1,8,8,11.2,2438,9,999999999,6,0.065,0,88,0.2,0,1 -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,44,82700,829,1383,286,472,326,277,53392,29245,31512,10957,340,4.1,10,7,11.2,6706,9,999999999,6,0.065,0,88,0.2,0,1 -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,41,82700,640,1383,287,282,244,169,32066,18313,19304,6735,340,4.6,10,6,11.2,6096,9,999999999,6,0.065,0,88,0.2,0,1 -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,-5.6,44,82800,407,1383,280,142,176,90,16101,8901,10240,3398,330,3.6,10,6,11.2,6096,9,999999999,6,0.065,0,88,0.2,0,1 -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,5768,0,3782,1109,320,3.6,8,4,11.2,77777,9,999999999,6,0.065,0,88,0.2,0,1 -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,6096,9,999999999,6,0.065,0,88,0.2,0,1 -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,77777,9,999999999,6,0.065,0,88,0.2,0,1 -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,2591,9,999999999,6,0.065,0,88,0.2,0,1 -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,77777,9,999999999,6,0.065,0,88,0.2,0,1 -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,19.2,77777,9,999999999,6,0.065,0,88,0.2,0,1 -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,6,0.065,0,88,0.2,0,1 -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,6,0.065,0,88,0.2,0,1 -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,6,0.065,0,88,0.2,0,1 -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,2438,9,999999999,6,0.065,0,88,0.2,0,1 -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,183,9,999999999,6,0.065,0,88,0.2,0,1 -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,183,9,999999999,6,0.065,0,88,0.2,0,1 -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,183,9,999999999,6,0.065,0,88,0.2,0,1 -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,969,0,975,369,40,2.1,10,10,4.8,152,9,999999999,6,0.065,0,88,0.2,0,1 -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,4164,0,4195,1736,60,1.5,10,10,4.8,244,9,999999999,6,0.065,0,88,0.2,0,1 -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,9005,0,9079,3938,120,3.6,10,10,4.8,244,9,999999999,6,0.065,0,88,0.2,0,1 -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,13680,0,13800,6213,0,0,10,10,4.8,244,9,999999999,6,0.065,0,88,0.2,0,1 -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,20503,0,20691,9214,0,0,10,10,6.4,427,9,999999999,6,0.065,0,88,0.2,0,1 -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,22835,0,23049,10344,100,1.5,10,10,9.6,488,9,999999999,6,0.065,0,88,0.2,0,1 -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,23061,0,23278,10457,30,2.6,10,10,9.6,610,9,999999999,6,0.065,0,88,0.2,0,1 -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,21277,0,21474,9591,10,3.6,10,10,11.2,610,9,999999999,6,0.065,0,88,0.2,0,1 -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,17546,0,17702,7766,360,4.1,10,10,11.2,610,9,999999999,6,0.065,0,88,0.2,0,1 -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,12298,0,12401,5261,20,3.1,10,10,11.2,671,9,999999999,6,0.065,0,88,0.2,0,1 -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,12808,4921,9407,3187,350,3.1,10,6,11.2,6096,9,999999999,6,0.065,0,88,0.2,0,1 -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,5697,61,5502,1423,20,3.1,10,6,11.2,6096,9,999999999,6,0.065,0,88,0.2,0,1 -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,6,0.065,0,88,0.2,0,1 -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,77777,9,999999999,6,0.065,0,88,0.2,0,1 -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,6,0.065,0,88,0.2,0,1 -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,2,2,11.2,77777,9,999999999,6,0.065,0,88,0.2,0,1 -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,6,0.065,0,88,0.2,0,1 -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,6,0.065,0,88,0.2,0,1 -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,6,0.066,0,88,0.2,0,1 -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,6,0.066,0,88,0.2,0,1 -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,6,0.066,0,88,0.2,0,1 -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,6,0.066,0,88,0.2,0,1 -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,77777,9,999999999,6,0.066,0,88,0.2,0,1 -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,77777,9,999999999,6,0.066,0,88,0.2,0,1 -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,4370,19675,2313,271,140,1.5,0,0,48,77777,9,999999999,6,0.066,0,88,0.2,0,1 -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,58,83500,354,1381,250,225,748,33,24117,65503,5276,827,170,2.1,1,0,80,77777,9,999999999,6,0.066,0,88,0.2,0,1 -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,45684,84653,7778,1263,220,1.5,1,0,80,77777,9,999999999,6,0.066,0,88,0.2,0,1 -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,65308,95682,8813,1592,290,4.1,0,0,80,77777,9,999999999,5,0.066,0,88,0.2,0,1 -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,69115,85846,10088,2002,240,2.6,1,0,80,77777,9,999999999,5,0.066,0,88,0.2,0,1 -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,85169,99510,10737,2324,280,3.6,1,0,112,77777,9,999999999,5,0.066,0,88,0.2,0,1 -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,87552,102200,10063,2259,80,2.6,0,0,96,77777,9,999999999,5,0.066,0,88,0.2,0,1 -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,81633,100833,9775,2028,340,3.1,0,0,96,77777,9,999999999,5,0.066,0,88,0.2,0,1 -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,63431,87222,10127,1782,250,2.6,2,1,96,77777,9,999999999,5,0.066,0,88,0.2,0,1 -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,44588,37306,14880,5488,20,3.1,8,4,96,7620,9,999999999,5,0.066,0,88,0.2,0,1 -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,20516,13354,12873,4071,120,5.7,7,4,96,7620,9,999999999,5,0.066,0,88,0.2,0,1 -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,-7.8,26,83400,155,1381,279,74,446,24,8494,0,2760,872,120,5.7,3,0,64,77777,9,999999999,5,0.066,0,88,0.2,0,1 -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,77777,9,999999999,5,0.066,0,88,0.2,0,1 -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,77777,9,999999999,5,0.066,0,88,0.2,0,1 -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,44,83500,0,0,265,0,0,0,0,0,0,0,170,4.1,0,0,48,77777,9,999999999,5,0.066,0,88,0.2,0,1 -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,77777,9,999999999,5,0.066,0,88,0.2,0,1 -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,77777,9,999999999,4,0.066,0,88,0.2,0,1 -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,77777,9,999999999,4,0.066,0,88,0.2,0,1 -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,77777,9,999999999,4,0.067,0,88,0.2,0,1 -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,77777,9,999999999,4,0.067,0,88,0.2,0,1 -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,77777,9,999999999,4,0.067,0,88,0.2,0,1 -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,77777,9,999999999,4,0.067,0,88,0.2,0,1 -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,77777,9,999999999,4,0.067,0,88,0.2,0,1 -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,49,83400,0,0,233,0,0,0,0,0,0,0,140,3.1,0,0,64,77777,9,999999999,4,0.067,0,88,0.2,0,1 -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,41,83500,99,1208,242,43,321,17,4886,0,1935,589,170,1.5,0,0,80,77777,9,999999999,4,0.067,0,88,0.2,0,1 -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,24600,64428,6027,875,0,0,0,0,96,77777,9,999999999,4,0.067,0,88,0.2,0,1 -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,46820,85364,8344,1309,0,0,0,0,96,77777,9,999999999,4,0.067,0,88,0.2,0,1 -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,62369,88671,10320,1734,240,2.6,1,0,96,77777,9,999999999,4,0.067,0,88,0.2,0,1 -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,78458,50825,13224,5459,270,2.6,1,1,96,77777,9,999999999,4,0.067,0,88,0.2,0,1 -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,87369,101333,11249,2416,270,2.6,0,0,96,77777,9,999999999,4,0.067,0,88,0.2,0,1 -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,86791,99210,11885,2530,290,2.6,1,0,96,77777,9,999999999,4,0.067,0,88,0.2,0,1 -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,91274,59363,14312,5921,360,3.1,2,0,96,77777,9,999999999,4,0.067,0,88,0.2,0,1 -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,69740,96270,10122,1791,110,7.7,0,0,80,77777,9,999999999,4,0.067,0,88,0.2,0,1 -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,-8.3,18,83400,655,1380,298,483,888,61,51175,86695,9144,1423,100,8.8,1,0,80,77777,9,999999999,4,0.067,0,88,0.2,0,1 -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,29799,70859,6596,983,110,7.7,0,0,64,77777,9,999999999,4,0.067,0,88,0.2,0,1 -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,8978,0,2767,879,100,5.7,0,0,48,77777,9,999999999,4,0.067,0,88,0.2,0,1 -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,77777,9,999999999,4,0.067,0,88,0.2,0,1 -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,77777,9,999999999,4,0.067,0,88,0.2,0,1 -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,77777,9,999999999,4,0.067,0,88,0.2,0,1 -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,77777,9,999999999,4,0.067,0,88,0.2,0,1 -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,77777,9,999999999,4,0.067,0,88,0.2,0,1 -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,77777,9,999999999,5,0.067,0,88,0.2,0,1 -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,-5.6,44,83500,0,0,262,0,0,0,0,0,0,0,170,6.2,0,0,32,77777,9,999999999,5,0.068,0,88,0.2,0,1 -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,77777,9,999999999,5,0.068,0,88,0.2,0,1 -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,-5.6,44,83300,0,0,262,0,0,0,0,0,0,0,180,7.7,0,0,32,77777,9,999999999,5,0.068,0,88,0.2,0,1 -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,77777,9,999999999,5,0.068,0,88,0.2,0,1 -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,77777,9,999999999,5,0.068,0,88,0.2,0,1 -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,1,0,80,77777,9,999999999,5,0.068,0,88,0.2,0,1 -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,4233,0,2568,753,0,0,1,0,80,77777,9,999999999,5,0.068,0,88,0.2,0,1 -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,24982,21912,6756,2324,330,1.5,1,0,80,77777,9,999999999,5,0.068,0,88,0.2,0,1 -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,51256,45101,9727,3683,340,2.1,0,0,64,77777,9,999999999,5,0.068,0,88,0.2,0,1 -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,-3.3,38,82900,811,1379,283,607,855,104,73899,55162,12703,5084,180,7.2,1,0,64,77777,9,999999999,5,0.068,0,88,0.2,0,1 -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,78246,92130,15486,2411,160,9.8,0,0,80,77777,9,999999999,5,0.068,0,88,0.2,0,1 -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,26,82500,1035,1379,295,817,923,124,85115,92982,16792,2882,160,11.8,1,0,64,77777,9,999999999,5,0.068,0,88,0.2,0,1 -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,85769,93142,16765,2937,160,11.8,1,0,48,77777,9,999999999,5,0.068,0,88,0.2,0,1 -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,-6.1,21,82100,979,1379,307,762,913,113,79544,91766,15541,2527,160,13.4,1,1,48,77777,9,999999999,5,0.068,0,88,0.2,0,1 -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,71542,50735,12557,5079,160,12.4,1,1,48,77777,9,999999999,5,0.068,0,88,0.2,0,1 -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,48396,40334,17357,6286,160,11.3,5,5,48,77777,9,999999999,5,0.068,0,88,0.2,0,1 -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,23285,19047,10078,3415,160,14.4,5,5,48,77777,9,999999999,5,0.068,0,88,0.2,0,1 -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,6708,0,3923,1185,160,13.4,3,1,48,77777,9,999999999,5,0.068,0,88,0.2,0,1 -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,77777,9,999999999,5,0.068,0,88,0.2,0,1 -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,9144,9,999999999,5,0.068,0,88,0.2,0,1 -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,7620,9,999999999,5,0.068,0,88,0.2,0,1 -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,3353,9,999999999,5,0.068,0,88,0.2,0,1 -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,2134,9,999999999,5,0.068,0,88,0.2,0,1 -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,2134,9,999999999,5,0.068,0,88,0.2,0,1 -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,2743,9,999999999,5,0.068,0,88,0.2,0,1 -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,22,81600,0,0,316,0,0,0,0,0,0,0,290,6.7,10,10,32,3048,9,999999999,5,0.068,0,88,0.2,0,1 -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,23,81600,0,0,305,0,0,0,0,0,0,0,310,7.7,10,9,32,3353,9,999999999,5,0.068,0,88,0.2,0,1 -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,23,81700,0,0,294,0,0,0,0,0,0,0,310,8.2,9,7,32,4572,9,999999999,5,0.068,0,88,0.2,0,1 -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,4267,9,999999999,5,0.068,0,88,0.2,0,1 -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,4267,9,999999999,5,0.068,0,88,0.2,0,1 -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,3309,0,3097,881,310,3.1,9,8,112,4267,9,999999999,5,0.068,0,88,0.2,0,1 -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,16911,11626,9223,3039,290,3.6,7,5,112,4572,9,999999999,5,0.068,0,88,0.2,0,1 -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,45870,40563,16812,5957,270,5.2,8,4,112,77777,9,999999999,5,0.068,0,88,0.2,0,1 -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,66658,50633,22676,8527,290,8.2,6,2,112,77777,9,999999999,5,0.068,0,88,0.2,0,1 -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,81868,54596,22092,8829,290,10.3,4,3,112,77777,9,999999999,5,0.068,0,88,0.2,0,1 -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,58377,30393,19747,8122,260,8.8,5,5,112,77777,9,999999999,5,0.068,0,88,0.2,0,1 -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,88755,95473,17876,3006,270,4.6,3,3,112,77777,9,999999999,5,0.068,0,88,0.2,0,1 -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,92303,59313,14337,5942,250,6.7,2,2,112,77777,9,999999999,5,0.068,0,88,0.2,0,1 -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,71227,98611,8733,1668,280,10.3,0,0,96,77777,9,999999999,5,0.068,0,88,0.2,0,1 -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,53155,91258,7561,1315,300,7.2,0,0,80,77777,9,999999999,5,0.068,0,88,0.2,0,1 -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,31397,75210,5692,936,300,8.8,0,0,64,77777,9,999999999,5,0.068,0,88,0.2,0,1 -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,9261,38041,3439,463,300,6.7,0,0,48,77777,9,999999999,5,0.068,0,88,0.2,0,1 -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,77777,9,999999999,5,0.068,0,88,0.2,0,1 -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,77777,9,999999999,5,0.068,0,88,0.2,0,1 -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,77777,9,999999999,5,0.068,0,88,0.2,0,1 -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,77777,9,999999999,5,0.068,0,88,0.2,0,1 -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,77777,9,999999999,5,0.068,0,88,0.2,0,1 -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,77777,9,999999999,5,0.068,0,88,0.2,0,1 -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,77777,9,999999999,5,0.069,0,88,0.2,0,1 -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,77777,9,999999999,5,0.069,0,88,0.2,0,1 -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,77777,9,999999999,5,0.069,0,88,0.2,0,1 -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,47,82300,0,0,246,0,0,0,0,0,0,0,140,2.6,6,3,32,77777,9,999999999,5,0.069,0,88,0.2,0,1 -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,-10.6,40,82300,0,0,253,0,0,0,0,0,0,0,190,1.5,7,5,32,7620,9,999999999,5,0.069,0,88,0.2,0,1 -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,-11.7,37,82300,0,0,248,0,0,0,0,0,0,0,170,1.5,10,3,80,77777,9,999999999,5,0.069,0,88,0.2,0,1 -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,-11.1,39,82300,119,1320,246,48,180,31,5278,0,3418,964,130,1.5,7,2,96,77777,9,999999999,5,0.069,0,88,0.2,0,1 -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,-11.1,27,82300,383,1378,256,247,753,38,26299,66881,6017,905,190,3.1,0,0,96,77777,9,999999999,5,0.069,0,88,0.2,0,1 -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,47539,83088,9178,1383,0,0,2,0,96,77777,9,999999999,5,0.069,0,88,0.2,0,1 -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,-11.1,19,82300,824,1378,287,461,485,171,54218,36661,20200,7769,40,2.1,8,3,96,77777,9,999999999,5,0.069,0,88,0.2,0,1 -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,83667,54254,16478,6767,130,6.2,7,2,96,77777,9,999999999,6,0.069,0,88,0.2,0,1 -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,88019,53582,25273,10160,130,7.2,9,3,96,77777,9,999999999,6,0.069,0,88,0.2,0,1 -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,89026,53256,33886,12984,130,6.2,10,5,96,77777,9,999999999,6,0.069,0,88,0.2,0,1 -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,18,81900,989,1378,329,224,0,224,23443,0,23660,10456,130,7.2,10,10,96,2591,9,999999999,6,0.069,0,88,0.2,0,1 -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,19879,0,20057,8674,90,5.2,10,10,80,2591,9,999999999,6,0.069,0,88,0.2,0,1 -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,14780,0,14905,6174,180,1.5,10,10,80,2743,9,999999999,6,0.069,0,88,0.2,0,1 -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,-5.6,31,81900,435,1378,315,90,0,89,8993,0,8962,3478,80,6.2,10,9,80,2743,9,999999999,7,0.069,0,88,0.2,0,1 -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,8279,1759,6476,1678,90,3.6,10,6,64,7620,9,999999999,7,0.069,0,88,0.2,0,1 -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,7620,9,999999999,7,0.069,0,88,0.2,0,1 -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,3353,9,999999999,7,0.069,0,88,0.2,0,1 -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,2438,9,999999999,7,0.069,0,88,0.2,0,1 -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,3658,9,999999999,7,0.069,0,88,0.2,0,1 -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,2896,9,999999999,8,0.069,0,88,0.2,0,1 -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,8,0.069,0,88,0.2,0,1 -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,82,82200,0,0,284,0,0,0,0,0,0,0,310,6.7,9,8,24,2438,9,999999999,8,0.07,0,88,0.2,0,1 -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,82,82200,0,0,299,0,0,0,0,0,0,0,330,6.2,10,10,11.2,244,9,999999999,8,0.07,0,88,0.2,0.5,1 -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,82,82200,0,0,299,0,0,0,0,0,0,0,360,5.7,10,10,19.2,335,9,999999999,8,0.07,0,88,0.2,0.5,1 -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,96,82300,0,0,289,0,0,0,0,0,0,0,340,4.6,10,10,4.8,366,9,999999999,9,0.07,0,88,0.2,0.5,1 -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,96,82300,0,0,289,0,0,0,0,0,0,0,310,3.6,10,10,8,122,9,999999999,9,0.07,0,88,0.2,0,1 -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,88,82400,0,0,294,0,0,0,0,0,0,0,20,2.1,10,10,32,244,9,999999999,8,0.07,0,88,0.2,0,1 -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,85,82400,126,1366,282,29,27,27,3234,0,3019,898,290,3.1,9,8,80,1829,9,999999999,8,0.07,0,88,0.2,0,1 -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,76,82400,390,1377,276,223,510,79,25415,22871,9032,3033,330,2.1,5,4,80,77777,9,999999999,8,0.07,0,88,0.2,0,1 -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,23407,8680,16938,6059,320,3.1,8,8,80,2896,9,999999999,8,0.07,0,88,0.2,0,1 -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,57792,38902,21935,8364,20,4.1,5,4,96,77777,9,999999999,8,0.07,0,88,0.2,0,1 -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,77477,46918,34210,12684,330,4.1,10,6,96,4267,9,999999999,7,0.07,0,88,0.2,0,1 -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,77212,36083,45462,15971,300,12.4,10,7,96,4267,9,999999999,7,0.07,0,88,0.2,0,1 -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,-10,21,82500,1059,1377,304,586,414,267,69024,34687,31625,12312,310,12.9,9,8,96,4267,9,999999999,7,0.07,0,88,0.2,0,1 -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,52139,24269,26082,10298,310,11.8,7,7,96,6706,9,999999999,7,0.07,0,88,0.2,0,1 -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,52314,20653,37614,12579,300,11.8,9,8,96,7620,9,999999999,7,0.07,0,88,0.2,0,1 -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,-11.1,19,82700,673,1377,294,379,307,229,42384,26580,25744,8469,300,13.4,7,6,96,7620,9,999999999,6,0.07,0,88,0.2,0,1 -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,19241,11043,12651,4128,290,7.7,8,6,80,7620,9,999999999,6,0.07,0,88,0.2,0,1 -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,6671,0,3853,1193,300,7.7,7,4,80,7620,9,999999999,6,0.07,0,88,0.2,0,1 -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,26,83000,4,241,277,0,10,0,0,0,0,0,260,3.6,5,3,64,77777,9,999999999,6,0.07,0,88,0.2,0,1 -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,77777,9,999999999,6,0.07,0,88,0.2,0,1 -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,77777,9,999999999,5,0.07,0,88,0.2,0,1 -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,28,83200,0,0,262,0,0,0,0,0,0,0,270,8.2,2,0,32,77777,9,999999999,5,0.07,0,88,0.2,0,1 -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,29,83200,0,0,260,0,0,0,0,0,0,0,270,6.2,1,0,32,77777,9,999999999,5,0.07,0,88,0.2,0,1 -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,77777,9,999999999,5,0.07,0,88,0.2,0,1 -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,77777,9,999999999,5,0.071,0,88,0.2,0,1 -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,-11.1,27,83400,0,0,256,0,0,0,0,0,0,0,270,6.2,0,0,32,77777,9,999999999,4,0.071,0,88,0.2,0,1 -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,31,83400,0,0,255,0,0,0,0,0,0,0,270,5.2,0,0,32,77777,9,999999999,4,0.071,0,88,0.2,0,1 -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,77777,9,999999999,4,0.071,0,88,0.2,0,1 -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,77777,9,999999999,4,0.071,0,88,0.2,0,1 -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,77777,9,999999999,4,0.071,0,88,0.2,0,1 -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,4846,0,3755,1072,210,4.1,7,2,96,77777,9,999999999,4,0.071,0,88,0.2,0,1 -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,19144,12819,11575,3699,210,4.6,5,3,96,77777,9,999999999,4,0.071,0,88,0.2,0,1 -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,43252,34588,19323,6738,160,4.1,7,5,96,9144,9,999999999,4,0.071,0,88,0.2,0,1 -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,-11.1,19,83700,837,1376,292,544,548,211,63077,44452,24587,9197,220,2.6,8,5,96,7620,9,999999999,4,0.071,0,88,0.2,0,1 -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,92179,61629,20142,8172,230,2.6,5,0,112,77777,9,999999999,4,0.071,0,88,0.2,0,1 -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,96032,59730,24881,10044,170,3.1,8,1,112,77777,9,999999999,4,0.071,0,88,0.2,0,1 -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,93114,56411,22993,9373,240,2.6,7,2,112,77777,9,999999999,4,0.071,0,88,0.2,0,1 -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,-11.7,13,83500,999,1376,307,703,624,250,82529,51972,29507,11426,110,2.6,9,3,112,77777,9,999999999,4,0.071,0,88,0.2,0,1 -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,61365,31441,39213,12930,150,2.1,9,5,96,9144,9,999999999,4,0.071,0,88,0.2,0,1 -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,45389,35221,19159,6882,130,3.6,9,4,96,77777,9,999999999,4,0.071,0,88,0.2,0,1 -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,28535,26188,13083,4251,110,4.1,6,2,96,77777,9,999999999,4,0.071,0,88,0.2,0,1 -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,5105,85,4897,1447,50,4.1,9,8,64,2743,9,999999999,4,0.071,0,88,0.2,0,1 -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,3353,9,999999999,4,0.071,0,88,0.2,0,1 -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,7620,9,999999999,4,0.071,0,88,0.2,0,1 -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,77777,9,999999999,4,0.071,0,88,0.2,0,1 -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,77777,9,999999999,4,0.071,0,88,0.2,0,1 -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,-7.8,36,83400,0,0,260,0,0,0,0,0,0,0,300,3.1,1,0,32,77777,9,999999999,4,0.071,0,88,0.2,0,1 -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,77777,9,999999999,4,0.071,0,88,0.2,0,1 -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,77777,9,999999999,4,0.071,0,88,0.2,0,1 -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,77777,9,999999999,4,0.071,0,88,0.2,0,1 -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,77777,9,999999999,4,0.071,0,88,0.2,0,1 -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,77777,9,999999999,4,0.071,0,88,0.2,0,1 -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,77777,9,999999999,4,0.071,0,88,0.2,0,1 -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,77777,9,999999999,4,0.071,0,88,0.2,0,1 -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,7133,30607,3276,394,160,2.6,0,0,112,77777,9,999999999,4,0.071,0,88,0.2,0,1 -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,28831,71398,6007,932,150,2.6,0,0,112,77777,9,999999999,5,0.071,0,88,0.2,0,1 -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,51258,89357,8012,1336,180,5.2,0,0,112,77777,9,999999999,5,0.071,0,88,0.2,0,1 -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,-10.6,14,83400,843,1375,296,663,976,64,70176,97460,9295,1717,170,4.6,0,0,112,77777,9,999999999,5,0.071,0,88,0.2,0,1 -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,83701,101274,10139,2135,110,3.6,0,0,112,77777,9,999999999,5,0.071,0,88,0.2,0,1 -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,91132,102939,10522,2469,340,2.6,0,0,112,77777,9,999999999,5,0.071,0,88,0.2,0,1 -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,-11.7,10,83100,1069,1375,316,871,1022,77,91643,103074,10640,2516,50,4.6,0,0,112,77777,9,999999999,5,0.071,0,88,0.2,0,1 -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,81368,95924,10767,2275,20,4.1,1,0,112,77777,9,999999999,5,0.071,0,88,0.2,0,1 -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,66424,86272,12094,2003,360,1.5,3,1,112,77777,9,999999999,5,0.071,0,88,0.2,0,1 -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,51304,82116,10510,1531,260,7.2,4,2,112,77777,9,999999999,5,0.071,0,88,0.2,0,1 -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,24871,16172,16694,5023,260,5.2,8,4,112,77777,9,999999999,5,0.071,0,88,0.2,0,1 -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,7988,1488,6826,1802,250,9.3,10,5,64,77777,9,999999999,5,0.071,0,88,0.2,0,1 -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,7620,9,999999999,5,0.071,0,88,0.2,0,1 -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,6706,9,999999999,5,0.071,0,88,0.2,0,1 -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,10,6,32,6706,9,999999999,5,0.071,0,88,0.2,0,1 -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,77777,9,999999999,5,0.071,0,88,0.2,0,1 -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,77777,9,999999999,5,0.071,0,88,0.2,0,1 -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,77777,9,999999999,5,0.071,0,88,0.2,0,1 -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,77777,9,999999999,5,0.072,0,88,0.2,0,1 -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,77777,9,999999999,5,0.072,0,88,0.2,0,1 -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,77777,9,999999999,5,0.072,0,88,0.2,0,1 -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,77777,9,999999999,5,0.072,0,88,0.2,0,1 -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,77777,9,999999999,5,0.072,0,88,0.2,0,1 -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,77777,9,999999999,5,0.072,0,88,0.2,0,1 -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,7714,0,2537,803,150,2.6,1,1,112,77777,9,999999999,5,0.072,0,88,0.2,0,1 -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,18576,13929,8033,2787,300,2.6,8,4,96,77777,9,999999999,5,0.072,0,88,0.2,0,1 -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,52040,46081,17998,6441,0,0,7,4,96,77777,9,999999999,5,0.072,0,88,0.2,0,1 -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,-10,15,82700,849,1375,312,567,638,173,66915,48158,20508,7963,190,2.6,9,4,96,77777,9,999999999,5,0.072,0,88,0.2,0,1 -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,12,82500,992,1375,329,728,786,161,88299,57070,19612,8001,210,5.2,10,5,96,77777,9,999999999,5,0.072,0,88,0.2,0,1 -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,-11.4,10,82400,1068,1375,335,787,719,228,94007,57118,27375,10942,240,6.7,10,5,96,77777,9,999999999,5,0.072,0,88,0.2,0,1 -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,71290,37113,28402,11304,180,6.2,10,7,96,7620,9,999999999,5,0.072,0,88,0.2,0,1 -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,-13.9,8,82300,1009,1375,344,684,322,447,76806,34244,50541,16515,240,6.2,10,8,96,7620,9,999999999,5,0.072,0,88,0.2,0,1 -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,49566,29293,20056,7890,210,7.7,10,7,96,7620,9,999999999,5,0.072,0,88,0.2,0,1 -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,-16.7,6,82200,687,1375,347,183,39,164,21095,2956,18988,6874,260,9.8,10,9,96,7620,9,999999999,5,0.072,0,88,0.2,0,1 -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,20834,13625,12388,4118,270,7.7,9,7,96,7620,9,999999999,5,0.072,0,88,0.2,0,1 -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,7469,810,6845,1830,260,4.6,10,8,96,7620,9,999999999,5,0.072,0,88,0.2,0,1 -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,9,82400,7,309,308,1,14,1,0,0,0,0,220,4.1,5,4,64,77777,9,999999999,5,0.072,0,88,0.2,0,1 -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,77777,9,999999999,5,0.072,0,88,0.2,0,1 -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,77777,9,999999999,5,0.072,0,88,0.2,0,1 -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,77777,9,999999999,5,0.072,0,88,0.2,0,1 -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,77777,9,999999999,5,0.072,0,88,0.2,0,1 -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,77777,9,999999999,5,0.072,0,88,0.2,0,1 -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,77777,9,999999999,5,0.073,0,88,0.2,0,1 -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,77777,9,999999999,5,0.073,0,88,0.2,0,1 -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,-6.1,30,82300,0,0,281,0,0,0,0,0,0,0,220,9.3,0,0,32,77777,9,999999999,5,0.073,0,88,0.2,0,1 -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,34,82400,0,0,279,0,0,0,0,0,0,0,230,6.7,0,0,32,77777,9,999999999,5,0.073,0,88,0.2,0,1 -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,77777,9,999999999,5,0.073,0,88,0.2,0,1 -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,77777,9,999999999,5,0.073,0,88,0.2,0,1 -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,37,82400,154,1374,275,69,367,28,7820,0,3180,985,240,3.1,0,0,96,77777,9,999999999,5,0.073,0,88,0.2,0,1 -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,31890,28699,6081,2175,210,8.2,0,0,80,77777,9,999999999,6,0.073,0,88,0.2,0,1 -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,50913,43567,15755,5804,220,6.7,3,3,96,77777,9,999999999,6,0.073,0,88,0.2,0,1 -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,75483,53451,12806,5190,210,8.2,1,1,96,77777,9,999999999,6,0.073,0,88,0.2,0,1 -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,-7.2,19,82200,997,1374,305,758,913,94,79502,91941,13012,2492,240,7.7,1,1,96,77777,9,999999999,6,0.073,0,88,0.2,0,1 -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,98810,59581,23575,9611,200,6.7,2,2,96,77777,9,999999999,6,0.073,0,88,0.2,0,1 -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,52976,18886,32154,12556,210,7.2,6,5,96,7620,9,999999999,6,0.073,0,88,0.2,0,1 -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,67226,30047,40335,14526,190,4.6,7,6,96,2438,9,999999999,6,0.073,0,88,0.2,0,1 -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,56748,34843,23681,9117,210,5.7,8,6,96,2438,9,999999999,6,0.073,0,88,0.2,0,1 -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,18383,0,18539,7380,50,5.2,10,10,64,3048,9,999999999,7,0.073,0,88,0.2,0,1 -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,8514,0,8580,3433,30,5.2,10,10,64,2591,9,999999999,7,0.073,0,88,0.2,0,1 -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,2740,0,2760,1053,310,5.2,10,10,64,2591,9,999999999,7,0.073,0,88,0.2,0,1 -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,1829,9,999999999,7,0.073,0,88,0.2,0,1 -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,2134,9,999999999,7,0.073,0,88,0.2,0,1 -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,1829,9,999999999,7,0.073,0,88,0.2,0,1 -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,76,81700,0,0,303,0,0,0,0,0,0,0,340,8.8,10,10,1.6,366,9,999999999,7,0.073,0,88,0.2,0,1 -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,96,81800,0,0,289,0,0,0,0,0,0,0,320,10.3,10,10,1.2,91,9,999999999,8,0.073,0,88,0.2,0,1 -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,96,81900,0,0,289,0,0,0,0,0,0,0,330,8.2,10,10,1.2,122,9,999999999,8,0.073,0,88,0.2,0,1 -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,152,9,999999999,8,0.074,0,88,0.2,0,1 -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.6,95,82000,0,0,286,0,0,0,0,0,0,0,10,10.8,10,10,32,305,9,999999999,8,0.074,0,88,0.2,0,1 -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,-2.2,83,82200,0,0,284,0,0,0,0,0,0,0,30,7.2,10,10,32,2438,9,999999999,8,0.074,0,88,0.2,0,1 -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,8,0.074,0,88,0.2,0,1 -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,-2.8,79,82500,0,0,284,0,0,0,0,0,0,0,0,0,10,10,32,1219,9,999999999,8,0.074,0,88,0.2,0,1 -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,6706,9,999999999,8,0.074,0,88,0.2,0,1 -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,3415,0,3439,1180,100,3.1,10,10,48,6706,9,999999999,8,0.074,0,88,0.2,0,1 -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,-3.3,76,82800,425,1373,275,175,42,162,19004,2998,17678,4999,160,4.1,10,9,64,6706,9,999999999,8,0.074,0,88,0.2,0,1 -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,42848,29613,22663,7741,170,4.1,7,7,96,6706,9,999999999,8,0.074,0,88,0.2,0,1 -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,65793,45021,17985,7138,190,3.1,3,3,96,77777,9,999999999,7,0.074,0,88,0.2,0,1 -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,78660,89037,14563,2630,170,3.6,1,1,96,77777,9,999999999,7,0.074,0,88,0.2,0,1 -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,87809,97743,9709,2409,300,7.7,1,1,96,77777,9,999999999,7,0.074,0,88,0.2,0,1 -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,-8.3,25,82700,1084,1373,287,822,939,80,86552,94891,10999,2656,350,6.2,2,2,96,77777,9,999999999,7,0.074,0,88,0.2,0,1 -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,91815,57609,20249,8290,70,2.6,3,3,96,77777,9,999999999,7,0.074,0,88,0.2,0,1 -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,68183,88250,11126,1975,220,5.2,2,2,96,77777,9,999999999,7,0.074,0,88,0.2,0,1 -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,54549,44834,12362,4764,190,3.1,3,3,96,77777,9,999999999,6,0.074,0,88,0.2,0,1 -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,27867,24585,7370,2657,180,2.6,2,2,96,77777,9,999999999,6,0.074,0,88,0.2,0,1 -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,11792,0,3040,996,300,6.7,1,1,96,77777,9,999999999,6,0.074,0,88,0.2,0,1 -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,26,82800,9,378,264,2,62,1,0,0,0,0,270,6.2,0,0,64,77777,9,999999999,6,0.074,0,88,0.2,0,1 -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,77777,9,999999999,6,0.074,0,88,0.2,0,1 -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,77777,9,999999999,5,0.074,0,88,0.2,0,1 -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,77777,9,999999999,5,0.074,0,88,0.2,0,1 -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,77777,9,999999999,5,0.074,0,88,0.2,0,1 -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,77777,9,999999999,5,0.074,0,88,0.2,0,1 -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,77777,9,999999999,5,0.074,0,88,0.2,0,1 -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,77777,9,999999999,5,0.074,0,88,0.2,0,1 -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,72,82900,0,0,240,0,0,0,0,0,0,0,180,2.6,0,0,48,77777,9,999999999,4,0.074,0,88,0.2,0,1 -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,77777,9,999999999,4,0.074,0,88,0.2,0,1 -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,77777,9,999999999,4,0.074,0,88,0.2,0,1 -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,77777,9,999999999,4,0.074,0,88,0.2,0,1 -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,9284,0,3100,982,180,3.1,0,0,128,77777,9,999999999,4,0.074,0,88,0.2,0,1 -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,30373,69310,7331,1029,190,2.6,0,0,112,77777,9,999999999,4,0.074,0,88,0.2,0,1 -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,52608,86656,9682,1481,360,2.1,0,0,112,77777,9,999999999,4,0.074,0,88,0.2,0,1 -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,25,83000,868,1372,268,678,948,78,71373,94758,11157,1936,20,3.1,0,0,112,77777,9,999999999,4,0.074,0,88,0.2,0,1 -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,84927,98773,12067,2455,10,3.6,0,0,112,77777,9,999999999,4,0.074,0,88,0.2,0,1 -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,92132,100528,12543,2890,90,5.2,0,0,112,77777,9,999999999,4,0.074,0,88,0.2,0,1 -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,-10.6,20,82900,1089,1372,276,883,996,92,92458,100453,12530,2918,40,5.2,0,0,112,77777,9,999999999,4,0.074,0,88,0.2,0,1 -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,86046,98909,12165,2525,120,3.1,0,0,96,77777,9,999999999,5,0.074,0,88,0.2,0,1 -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,73383,95337,11383,2008,110,3.6,0,0,96,77777,9,999999999,5,0.074,0,88,0.2,0,1 -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,55188,87881,9921,1539,110,2.1,0,0,96,77777,9,999999999,5,0.074,0,88,0.2,0,1 -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,-11.7,18,82800,465,1372,275,314,780,49,33281,72174,7599,1090,70,3.6,0,0,80,77777,9,999999999,5,0.074,0,88,0.2,0,1 -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,12150,671,3478,1128,100,2.6,0,0,64,77777,9,999999999,5,0.074,0,88,0.2,0,1 -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,77777,9,999999999,5,0.074,0,88,0.2,0,1 -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,77777,9,999999999,5,0.074,0,88,0.2,0,1 -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,26,82900,0,0,266,0,0,0,0,0,0,0,260,6.2,0,0,32,77777,9,999999999,5,0.074,0,88,0.2,0,1 -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,77777,9,999999999,5,0.074,0,88,0.2,0,1 -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,77777,9,999999999,5,0.074,0,88,0.2,0,1 -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,77777,9,999999999,5,0.074,0,88,0.2,0,1 -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,77777,9,999999999,5,0.075,0,88,0.2,0,1 -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,77777,9,999999999,5,0.075,0,88,0.2,0,1 -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,77777,9,999999999,5,0.075,0,88,0.2,0,1 -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,3962,9,999999999,5,0.075,0,88,0.2,0,1 -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,3962,9,999999999,5,0.075,0,88,0.2,0,1 -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,8,8,64,3962,9,999999999,5,0.075,0,88,0.2,0,1 -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,5661,128,4675,1384,180,2.6,9,7,96,3962,9,999999999,5,0.075,0,88,0.2,0,1 -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,11201,0,11288,4134,180,2.1,10,10,96,6096,9,999999999,5,0.075,0,88,0.2,0,1 -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,18978,0,19138,7470,170,2.6,10,10,96,3048,9,999999999,5,0.075,0,88,0.2,0,1 -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,50878,20267,35487,12284,70,3.1,10,9,80,1829,9,999999999,5,0.075,0,88,0.2,0,1 -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,24200,0,24428,10847,10,7.2,10,10,64,2743,9,999999999,6,0.075,0,88,0.2,0,1 -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,26246,0,26498,11815,40,7.7,10,10,16,2286,9,999999999,6,0.075,0,88,0.2,0,1 -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,18440,0,18618,8858,360,8.2,10,10,1,122,9,999999999,6,0.075,0,88,0.2,0,1 -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,17189,0,17352,8232,30,5.2,10,10,2.8,183,9,999999999,6,0.075,0,88,0.2,0,1 -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,20946,0,21136,9226,30,5.7,10,10,19.2,914,9,999999999,6,0.075,0,88,0.2,0,1 -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,15833,0,15969,6681,10,7.2,10,10,32,1829,9,999999999,6,0.075,0,88,0.2,0,1 -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,17719,2335,16464,5139,10,8.2,10,9,48,4267,9,999999999,6,0.075,0,88,0.2,0,1 -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,-5.6,62,83500,208,1371,260,93,88,79,9948,2521,8486,2144,360,8.2,10,6,48,4267,9,999999999,6,0.075,0,88,0.2,0,1 -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,1829,9,999999999,6,0.075,0,88,0.2,0,1 -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,853,9,999999999,6,0.075,0,88,0.2,0,1 -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,76,83800,0,0,275,0,0,0,0,0,0,0,10,6.7,10,10,6.4,914,9,999999999,6,0.075,0,88,0.2,0,1 -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,6,0.075,0,88,0.2,0,1 -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,6,0.075,0,88,0.2,0,1 -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,10,10,8,1067,9,999999999,6,0.075,0,88,0.2,0,1 -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,10,10,9.6,1250,9,999999999,6,0.076,0,88,0.2,0,1 -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,6,0.076,0,88,0.2,0,1 -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,6,0.076,0,88,0.2,0,1 -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,77777,9,999999999,6,0.076,0,88,0.2,0,1 -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,91,83900,0,0,230,0,0,0,0,0,0,0,190,3.1,0,0,32,77777,9,999999999,6,0.076,0,88,0.2,0,1 -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,6,286,228,1,47,0,0,0,0,0,190,3.6,0,0,64,77777,9,999999999,6,0.076,0,88,0.2,0,1 -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,10259,40423,3600,497,200,4.6,0,0,96,77777,9,999999999,6,0.076,0,88,0.2,0,1 -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,32672,75992,5835,964,200,4.6,0,0,112,77777,9,999999999,6,0.076,0,88,0.2,0,1 -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,54964,91468,7683,1350,190,4.6,0,0,112,77777,9,999999999,6,0.076,0,88,0.2,0,1 -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,73642,98621,8965,1748,200,4.1,0,0,112,77777,9,999999999,6,0.076,0,88,0.2,0,1 -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,86843,101951,9678,2186,230,1.5,0,0,104,77777,9,999999999,6,0.076,0,88,0.2,0,1 -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,94004,103476,9937,2532,170,2.6,0,0,104,77777,9,999999999,6,0.076,0,88,0.2,0,1 -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,94322,103518,10058,2575,260,2.1,0,0,96,77777,9,999999999,6,0.076,0,88,0.2,0,1 -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,19,83900,1031,1371,283,833,1014,69,88020,102304,9656,2223,40,2.1,0,0,96,77777,9,999999999,6,0.076,0,88,0.2,0,1 -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,75381,99167,9071,1796,60,3.6,0,0,96,77777,9,999999999,6,0.076,0,88,0.2,0,1 -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,57278,92698,7796,1387,30,5.2,0,0,96,77777,9,999999999,6,0.076,0,88,0.2,0,1 -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,20,84000,474,1371,281,330,843,39,35256,78514,6114,1014,70,3.1,0,0,96,77777,9,999999999,6,0.076,0,88,0.2,0,1 -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,-10,21,84000,213,1371,276,118,610,24,12594,46171,3913,562,60,2.1,0,0,96,77777,9,999999999,5,0.076,0,88,0.2,0,1 -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,77777,9,999999999,5,0.076,0,88,0.2,0,1 -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,77777,9,999999999,5,0.076,0,88,0.2,0,1 -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,48,84200,0,0,260,0,0,0,0,0,0,0,150,2.6,0,0,32,77777,9,999999999,5,0.076,0,88,0.2,0,1 -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,77777,9,999999999,5,0.076,0,88,0.2,0,1 -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,54,84300,0,0,254,0,0,0,0,0,0,0,190,3.6,0,0,32,77777,9,999999999,5,0.076,0,88,0.2,0,1 -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,77777,9,999999999,5,0.076,0,88,0.2,0,1 -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,77777,9,999999999,5,0.077,0,88,0.2,0,1 -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,77777,9,999999999,5,0.077,0,88,0.2,0,1 -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,77777,9,999999999,5,0.077,0,88,0.2,0,1 -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,77777,9,999999999,5,0.077,0,88,0.2,0,1 -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,77777,9,999999999,5,0.077,0,88,0.2,0,1 -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,77777,9,999999999,5,0.077,0,88,0.2,0,1 -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,9205,1088,4502,1379,200,5.2,0,0,96,77777,9,999999999,5,0.077,0,88,0.2,0,1 -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,32861,31281,8443,2994,190,3.6,0,0,96,77777,9,999999999,5,0.077,0,88,0.2,0,1 -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,59112,49792,11908,4595,150,3.1,0,0,112,77777,9,999999999,5,0.077,0,88,0.2,0,1 -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,82472,58359,14591,5924,170,2.1,0,0,112,77777,9,999999999,5,0.077,0,88,0.2,0,1 -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,15,84300,1025,1370,299,807,901,132,99875,62102,16399,6813,160,3.1,0,0,112,77777,9,999999999,5,0.077,0,88,0.2,0,1 -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,14,84200,1099,1370,304,877,919,138,90736,92427,18306,3541,170,3.6,0,0,112,77777,9,999999999,5,0.077,0,88,0.2,0,1 -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,13,84200,1103,1370,308,880,920,139,91025,92531,18417,3585,150,2.1,0,0,112,77777,9,999999999,5,0.077,0,88,0.2,0,1 -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,12,84100,1036,1370,310,817,904,133,101208,62347,16540,6879,200,2.1,0,0,112,77777,9,999999999,5,0.077,0,88,0.2,0,1 -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,12,84000,902,1370,315,691,866,121,84549,59040,14859,6053,80,1.5,0,0,112,77777,9,999999999,5,0.077,0,88,0.2,0,1 -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,12,84000,712,1370,315,514,794,101,61801,51268,12183,4733,120,4.6,0,0,112,77777,9,999999999,5,0.077,0,88,0.2,0,1 -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,35667,34035,8824,3162,120,4.1,0,0,96,77777,9,999999999,5,0.077,0,88,0.2,0,1 -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,11284,4018,4978,1554,120,3.1,0,0,96,77777,9,999999999,5,0.077,0,88,0.2,0,1 -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,77777,9,999999999,5,0.077,0,88,0.2,0,1 -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,77777,9,999999999,5,0.077,0,88,0.2,0,1 -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,77777,9,999999999,5,0.077,0,88,0.2,0,1 -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,77777,9,999999999,5,0.077,0,88,0.2,0,1 -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,33,84000,0,0,278,0,0,0,0,0,0,0,170,5.7,5,1,32,77777,9,999999999,5,0.077,0,88,0.2,0,1 -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,4,1,32,77777,9,999999999,4,0.077,0,88,0.2,0,1 -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,6096,9,999999999,8,0.073,0,88,0.2,0,1 -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,77777,9,999999999,8,0.073,0,88,0.2,0,1 -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,-1.8,81,81300,0,0,254,0,0,0,0,0,0,0,350,2.8,0,0,16,77777,9,999999999,8,0.073,0,88,0.2,0,1 -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,77777,9,999999999,8,0.073,0,88,0.2,0,1 -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,-1.7,87,81900,0,0,285,0,0,0,0,0,0,0,30,3.1,10,10,16,6096,9,999999999,8,0.073,0,88,0.2,0,1 -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,244,9,999999999,8,0.073,0,88,0.2,0,1 -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,-1,80,81800,196,1369,294,24,0,24,2348,0,2364,927,10,3.6,10,10,16.1,300,9,999999999,8,0.073,0,88,0.2,0,1 -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,5903,0,5949,2544,30,4.1,10,10,16,305,9,999999999,8,0.073,0,88,0.2,0,1 -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,8878,0,8954,4122,30,4.6,10,10,16,305,9,999999999,9,0.073,0,88,0.2,0,1 -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,11306,0,11409,5496,10,5.7,10,10,16,366,9,999999999,9,0.073,0,88,0.2,0,1 -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,18250,0,18423,8671,20,5.7,10,10,16,366,9,999999999,9,0.073,0,88,0.2,0,1 -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,19205,0,19391,9183,20,4.1,10,10,16,427,9,999999999,9,0.073,0,88,0.2,0,1 -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,15093,0,15240,7451,360,3.6,10,10,16,488,9,999999999,9,0.073,0,88,0.2,0,1 -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,36760,3046,33804,12948,30,4.6,10,10,16,427,9,999999999,9,0.073,0,88,0.2,0,1 -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,12459,0,12573,6020,20,3.6,10,10,16,427,9,999999999,9,0.073,0,88,0.2,0,1 -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,8995,0,9073,4207,360,3.1,10,10,16,427,9,999999999,9,0.073,0,88,0.2,0,1 -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,5112,0,5153,2274,350,2.6,10,10,2.4,488,9,999999999,9,0.073,0,88,0.2,0,1 -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,1961,0,1975,810,350,3.6,10,10,1.6,274,9,999999999,9,0.073,0,88,0.2,0,1 -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,9,0.073,0,88,0.2,0,1 -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,9,0.073,0,88,0.2,0,1 -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,9,0.073,0,88,0.2,0,1 -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,91,9,999999999,9,0.073,0,88,0.2,0,1 -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,9,0.073,0,88,0.2,0,1 -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,91,82300,0,0,266,0,0,0,0,0,0,0,360,5.2,10,10,1.2,122,9,999999999,10,0.073,0,88,0.2,0,1 -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,-5,92,82300,0,0,265,0,0,0,0,0,0,0,360,5.1,10,10,1.2,15,9,999999999,10,0.074,0,88,0.2,0,1 -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,-6,84,82400,0,0,264,0,0,0,0,0,0,0,360,4.6,10,10,4,450,9,999999999,10,0.074,0,88,0.2,0,1 -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,95,82400,0,0,264,0,0,0,0,0,0,0,340,5.2,10,10,3.2,762,9,999999999,10,0.074,0,88,0.2,0,1 -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,-5.6,95,82400,0,0,261,0,0,0,0,0,0,0,350,5.7,10,10,3.2,91,9,999999999,10,0.074,0,88,0.2,0,1 -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,-5.6,95,82800,0,0,261,0,0,0,0,0,0,0,350,5.2,10,10,3.2,122,9,999999999,10,0.074,0,88,0.2,0,1 -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,10,0.074,0,88,0.2,0,1 -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,-6,100,82400,203,1368,257,46,0,46,4508,0,4539,1566,10,4.6,10,10,3.2,120,9,999999999,10,0.074,0,88,0.2,0,1 -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,-6.1,91,82500,466,1368,260,81,0,81,8118,0,8182,3335,360,5.2,10,10,2,244,9,999999999,9,0.074,0,88,0.2,0,1 -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,10938,0,11031,4947,360,4.1,10,10,2.2,549,9,999999999,9,0.074,0,88,0.2,0,1 -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,13917,0,14043,6602,10,3.1,10,10,2.4,549,9,999999999,9,0.074,0,88,0.2,0,1 -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,15649,0,15797,7603,50,4.6,10,10,2.4,549,9,999999999,9,0.074,0,88,0.2,0,1 -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,22507,0,22725,10486,40,3.6,10,10,16,396,9,999999999,9,0.074,0,88,0.2,0,1 -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,18919,0,19102,9069,40,2.6,10,10,14.4,488,9,999999999,9,0.074,0,88,0.2,0,1 -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,15980,0,16132,7755,360,3.6,10,10,16,579,9,999999999,9,0.074,0,88,0.2,0,1 -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,12479,0,12593,6031,350,3.6,10,10,16,396,9,999999999,9,0.074,0,88,0.2,0,1 -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,9008,0,9086,4216,40,4.1,10,10,0.8,183,9,999999999,8,0.074,0,88,0.2,0,1 -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,5622,0,5666,2477,70,1.5,10,10,0.4,152,9,999999999,8,0.074,0,88,0.2,0,1 -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,-6,92,82300,226,1368,260,20,0,20,1964,0,1978,814,70,2.1,10,10,2.4,1800,9,999999999,8,0.074,0,88,0.2,0,1 -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,305,9,999999999,8,0.074,0,88,0.2,0,1 -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,-7,92,82300,0,0,256,0,0,0,0,0,0,0,150,2.1,10,10,4,1500,9,999999999,8,0.074,0,88,0.2,0,1 -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,8,0.074,0,88,0.2,0,1 -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,1524,9,999999999,8,0.074,0,88,0.2,0,1 -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,1402,9,999999999,8,0.074,0,88,0.2,0,1 -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,1280,9,999999999,8,0.074,0,88,0.2,0,1 -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,1158,9,999999999,7,0.075,0,88,0.2,0,1 -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,1036,9,999999999,7,0.075,0,88,0.2,0,1 -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,77777,9,999999999,7,0.075,0,88,0.2,0,1 -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,-8,92,81700,0,0,244,0,0,0,0,0,0,0,100,4.1,9,9,16.1,660,9,999999999,7,0.075,0,88,0.2,0,1 -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,610,9,999999999,7,0.075,0,88,0.2,0,1 -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,7,0.075,0,88,0.2,0,1 -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,2158,0,2173,873,0,0,10,10,11.2,549,9,999999999,7,0.075,0,88,0.2,0,1 -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,-6.7,86,81800,472,1367,253,52,0,52,5215,0,5256,2299,290,3.1,9,9,11.2,914,9,999999999,7,0.075,0,88,0.2,0,1 -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,8898,0,8974,4150,320,3.6,9,9,11.2,914,9,999999999,7,0.075,0,88,0.2,0,1 -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,12574,0,12689,6057,290,3.1,9,9,14.4,213,9,999999999,7,0.075,0,88,0.2,0,1 -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,38851,2135,36985,13861,240,2.1,9,9,12.8,6096,9,999999999,6,0.075,0,88,0.2,0,1 -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,52610,7926,44943,16308,190,2.6,9,9,11.2,6096,9,999999999,6,0.075,0,88,0.2,0,1 -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,-5.6,62,82000,1117,1367,273,602,270,381,69567,25283,44316,16165,150,2.1,9,9,16,6096,9,999999999,6,0.075,0,88,0.2,0,1 -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,52,82100,1049,1367,287,608,346,341,70171,31566,39601,14607,90,3.6,9,9,16,6096,9,999999999,6,0.075,0,88,0.2,0,1 -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,60030,31205,33299,12105,110,2.6,9,9,16,6096,9,999999999,6,0.075,0,88,0.2,0,1 -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,45389,27868,25258,8778,120,4.6,9,9,16,6096,9,999999999,6,0.075,0,88,0.2,0,1 -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,24322,12960,17069,5401,150,5.7,9,9,16,6706,9,999999999,6,0.075,0,88,0.2,0,1 -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,14136,9266,7368,2113,160,3.6,9,9,16,6096,9,999999999,6,0.075,0,88,0.2,0,1 -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,69,82200,18,536,271,0,0,0,0,0,0,0,150,3.1,9,9,16,6096,9,999999999,6,0.075,0,88,0.2,0,1 -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,79,82200,0,0,265,0,0,0,0,0,0,0,110,3.1,9,9,16,6706,9,999999999,6,0.075,0,88,0.2,0,1 -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,77777,9,999999999,6,0.075,0,88,0.2,0,1 -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,77777,9,999999999,6,0.075,0,88,0.2,0,1 -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,77777,9,999999999,6,0.075,0,88,0.2,0,1 -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,77777,9,999999999,5,0.075,0,88,0.2,0,1 -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,77777,9,999999999,5,0.075,0,88,0.2,0,1 -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,77777,9,999999999,5,0.075,0,88,0.2,0,1 -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,77777,9,999999999,5,0.075,0,88,0.2,0,1 -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,6096,9,999999999,5,0.075,0,88,0.2,0,1 -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,3353,9,999999999,5,0.075,0,88,0.2,0,1 -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,-8.3,75,82100,14,467,251,0,0,0,0,0,0,0,150,2.6,9,9,16,6096,9,999999999,5,0.075,0,88,0.2,0,1 -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,10673,4041,8226,2180,190,4.6,9,9,16,6096,9,999999999,5,0.075,0,88,0.2,0,1 -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,-5.6,62,82400,479,1367,273,301,534,113,34177,32409,12879,4359,210,3.1,9,9,16,2743,9,999999999,6,0.075,0,88,0.2,0,1 -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,55596,44790,19079,7040,250,2.6,9,9,16,6096,9,999999999,6,0.075,0,88,0.2,0,1 -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,81281,56270,18594,7471,200,2.1,9,9,16,6706,9,999999999,6,0.075,0,88,0.2,0,1 -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,101039,61894,19434,8026,150,3.6,9,9,16,6096,9,999999999,6,0.075,0,88,0.2,0,1 -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,106564,60666,20092,8331,150,5.7,9,9,16,7620,9,999999999,6,0.075,0,88,0.2,0,1 -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,97276,54873,28820,11544,160,7.2,9,9,16,7620,9,999999999,6,0.075,0,88,0.2,0,1 -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,95818,58562,23645,9609,180,6.7,9,9,16,7620,9,999999999,7,0.075,0,88,0.2,0,1 -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,65517,37737,32483,11917,160,7.2,9,9,16,7620,9,999999999,7,0.075,0,88,0.2,0,1 -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,35,82500,728,1367,320,318,118,256,35616,10481,28831,9615,180,11.8,10,10,16,7620,9,999999999,7,0.075,0,88,0.2,0,1 -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,17605,1995,16565,5323,170,9.3,10,10,16,7620,9,999999999,7,0.075,0,88,0.2,0,1 -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,7205,761,6561,1972,160,9.3,10,10,16,7620,9,999999999,7,0.075,0,88,0.2,0,1 -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,7620,9,999999999,7,0.075,0,88,0.2,0,1 -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,7620,9,999999999,7,0.075,0,88,0.2,0,1 -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,3658,9,999999999,8,0.075,0,88,0.2,0,1 -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,3353,9,999999999,8,0.075,0,88,0.2,0,1 -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,1372,9,999999999,8,0.075,0,88,0.2,0,1 -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,8,0.075,0,88,0.2,0,1 -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,8,0.076,0,88,0.2,0,1 -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,-1,92,82000,0,0,286,0,0,0,0,0,0,0,10,3.1,10,10,3.2,30,9,999999999,8,0.076,0,88,0.2,0,1 -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,-1.1,91,82000,0,0,286,0,0,0,0,0,0,0,340,4.6,10,10,3.6,30,9,999999999,9,0.076,0,88,0.2,0,1 -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,-1.1,91,82100,0,0,286,0,0,0,0,0,0,0,340,8.2,10,10,2,30,9,999999999,9,0.076,0,88,0.2,0,1 -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.6,95,82300,0,0,286,0,0,0,0,0,0,0,340,7.2,10,10,0.4,30,9,999999999,9,0.076,0,88,0.2,0,1 -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,-1.1,91,82200,16,489,286,0,0,0,0,0,0,0,340,7.2,10,10,4,30,9,999999999,9,0.076,0,88,0.2,0,1 -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,-1.1,91,82300,224,1366,278,107,209,72,11612,5346,7843,2167,10,6.7,10,9,11.2,6096,9,999999999,9,0.076,0,88,0.2,0,1 -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,-1.1,91,82400,485,1366,278,241,178,178,26380,13454,19581,5824,360,3.6,10,9,14.4,6096,9,999999999,8,0.076,0,88,0.2,0,1 -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,36369,10915,29281,9648,10,4.1,8,5,16,77777,9,999999999,8,0.076,0,88,0.2,0,1 -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,86278,60744,24011,9377,20,8.2,7,5,16,77777,9,999999999,8,0.076,0,88,0.2,0,1 -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,88830,98413,12876,2769,10,4.6,8,5,16,77777,9,999999999,8,0.076,0,88,0.2,0,1 -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,94506,96741,15601,3615,10,4.1,8,5,16,77777,9,999999999,8,0.076,0,88,0.2,0,1 -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,95181,94384,19202,3917,10,4.6,8,5,16,77777,9,999999999,8,0.076,0,88,0.2,0,1 -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,88239,97172,12986,2814,350,2.6,7,5,16,77777,9,999999999,8,0.076,0,88,0.2,0,1 -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,74700,91833,13041,2229,320,3.6,8,5,16,77777,9,999999999,7,0.076,0,88,0.2,0,1 -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,62530,50456,13342,5193,0,0,7,5,16,77777,9,999999999,7,0.076,0,88,0.2,0,1 -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,39464,37119,8317,3032,180,2.1,8,5,16,77777,9,999999999,7,0.076,0,88,0.2,0,1 -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,15307,7919,5229,1664,110,5.2,7,5,16,77777,9,999999999,7,0.076,0,88,0.2,0,1 -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,-3.3,53,82900,21,580,280,0,0,0,0,0,0,0,120,4.1,8,5,16,77777,9,999999999,7,0.076,0,88,0.2,0,1 -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,77777,9,999999999,7,0.076,0,88,0.2,0,1 -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,77777,9,999999999,7,0.076,0,88,0.2,0,1 -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,77777,9,999999999,7,0.076,0,88,0.2,0,1 -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,77777,9,999999999,6,0.076,0,88,0.2,0,1 -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,77777,9,999999999,6,0.076,0,88,0.2,0,1 -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,77777,9,999999999,6,0.076,0,88,0.2,0,1 -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,77777,9,999999999,6,0.076,0,88,0.2,0,1 -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,77777,9,999999999,6,0.076,0,88,0.2,0,1 -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,77777,9,999999999,6,0.076,0,88,0.2,0,1 -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,77777,9,999999999,6,0.076,0,88,0.2,0,1 -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,-4.4,69,82800,18,535,259,0,0,0,0,0,0,0,270,3.1,6,5,16,77777,9,999999999,6,0.076,0,88,0.2,0,1 -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,14812,10161,7871,2207,250,3.6,6,5,16,77777,9,999999999,6,0.076,0,88,0.2,0,1 -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,39860,38371,9820,3512,360,3.6,6,5,16,77777,9,999999999,6,0.076,0,88,0.2,0,1 -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,68651,54896,10968,4317,270,3.6,2,2,16,77777,9,999999999,6,0.076,0,88,0.2,0,1 -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,-3.9,36,83400,920,1365,295,707,911,92,74391,91634,12920,2212,210,2.1,3,3,16,77777,9,999999999,6,0.076,0,88,0.2,0,1 -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,85555,92475,14523,2970,150,2.6,2,2,16,77777,9,999999999,6,0.076,0,88,0.2,0,1 -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,92834,93472,16704,3783,90,4.1,6,5,16,77777,9,999999999,6,0.076,0,88,0.2,0,1 -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,93962,93146,18439,3938,90,6.7,5,4,16,77777,9,999999999,6,0.076,0,88,0.2,0,1 -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,105863,63070,16945,7066,170,9.3,3,3,16,77777,9,999999999,6,0.076,0,88,0.2,0,1 -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,74824,91820,12633,2219,180,9.3,2,2,16,77777,9,999999999,6,0.076,0,88,0.2,0,1 -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,67771,53779,10654,4209,170,8.8,3,3,16,77777,9,999999999,6,0.076,0,88,0.2,0,1 -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,12,82600,502,1365,323,349,771,64,41703,39254,7666,2816,280,5.2,2,2,16,77777,9,999999999,6,0.076,0,88,0.2,0,1 -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,15662,7348,4501,1471,280,4.1,3,3,16,77777,9,999999999,6,0.076,0,88,0.2,0,1 -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,27,83100,23,603,310,0,0,0,0,0,0,0,290,2.6,6,5,16,77777,9,999999999,7,0.076,0,88,0.2,0,1 -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,77777,9,999999999,7,0.076,0,88,0.2,0,1 -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,77777,9,999999999,7,0.076,0,88,0.2,0,1 -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,-3.9,36,83100,0,0,283,0,0,0,0,0,0,0,210,5.2,0,0,16,77777,9,999999999,7,0.076,0,88,0.2,0,1 -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,77777,9,999999999,7,0.076,0,88,0.2,0,1 -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,77777,9,999999999,7,0.076,0,88,0.2,0,1 -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,77777,9,999999999,7,0.077,0,88,0.2,0,1 -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,77777,9,999999999,7,0.077,0,88,0.2,0,1 -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,77777,9,999999999,7,0.077,0,88,0.2,0,1 -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,77777,9,999999999,7,0.077,0,88,0.2,0,1 -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,77777,9,999999999,7,0.077,0,88,0.2,0,1 -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,77777,9,999999999,7,0.077,0,88,0.2,0,1 -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,16714,13088,7895,2245,150,2.1,0,0,16,77777,9,999999999,7,0.077,0,88,0.2,0,1 -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,43323,42297,9512,3427,110,5.2,0,0,16,77777,9,999999999,7,0.077,0,88,0.2,0,1 -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,67639,54357,11551,4542,100,7.2,4,3,16,77777,9,999999999,7,0.077,0,88,0.2,0,1 -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,73296,88327,14222,2293,100,6.2,4,2,16,77777,9,999999999,7,0.077,0,88,0.2,0,1 -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,19,83200,1061,1364,330,818,881,131,101785,59611,16364,6836,120,8.8,4,3,16,77777,9,999999999,7,0.077,0,88,0.2,0,1 -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,95137,96742,15319,3687,110,9.8,4,2,16,77777,9,999999999,7,0.077,0,88,0.2,0,1 -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,94227,97031,13552,3454,140,10.3,4,3,16,77777,9,999999999,7,0.077,0,88,0.2,0,1 -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,87657,95366,13221,2895,140,12.9,9,5,16,77777,9,999999999,7,0.077,0,88,0.2,0,1 -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,77539,96198,11430,2138,130,11.8,9,5,16,77777,9,999999999,7,0.077,0,88,0.2,0,1 -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,-7.8,13,83100,740,1364,339,561,871,87,68559,54289,10663,4217,150,13.4,9,5,16,77777,9,999999999,7,0.077,0,88,0.2,0,1 -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,42378,39597,7559,2785,140,14.9,9,5,16,77777,9,999999999,7,0.077,0,88,0.2,0,1 -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,16374,7801,4507,1479,130,14.4,9,5,14.4,77777,9,999999999,7,0.077,0,88,0.2,0,1 -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,6096,9,999999999,7,0.077,0,88,0.2,0,1 -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,6096,9,999999999,7,0.077,0,88,0.2,0,1 -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,6096,9,999999999,7,0.077,0,88,0.2,0,1 -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.6,47,82000,0,0,321,0,0,0,0,0,0,0,160,9.8,10,9,16,6096,9,999999999,7,0.077,0,88,0.2,0,1 -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,77777,9,999999999,7,0.077,0,88,0.2,0,1 -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,6096,9,999999999,7,0.077,0,88,0.2,0,1 -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,-3,34,81700,0,0,309,0,0,0,0,0,0,0,240,7.7,9,5,16.1,77777,9,999999999,7,0.077,0,88,0.2,0,1 -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,77777,9,999999999,7,0.077,0,88,0.2,0,1 -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,2591,9,999999999,7,0.077,0,88,0.2,0,1 -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,1981,9,999999999,7,0.077,0,88,0.2,0,1 -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,1494,9,999999999,7,0.077,0,88,0.2,0,1 -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,26,81600,24,602,296,0,0,0,0,0,0,0,280,11.3,10,9,16,2591,9,999999999,7,0.077,0,88,0.2,0,1 -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,26,81700,244,1363,298,140,182,108,14834,8551,11497,2698,280,9.8,10,9,16,3962,9,999999999,7,0.077,0,88,0.2,0,1 -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,24,81800,504,1363,303,87,0,87,8755,0,8824,3652,300,15.5,10,9,16,4267,9,999999999,7,0.077,0,88,0.2,0,1 -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,-9.4,22,82000,738,1363,311,464,399,248,52254,35140,28080,9546,280,16,10,9,16,6096,9,999999999,7,0.077,0,88,0.2,0,1 -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,84553,58154,20570,8238,300,15.5,9,5,14.4,77777,9,999999999,7,0.077,0,88,0.2,0,1 -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,87527,91714,17280,3230,300,12.9,9,5,16,77777,9,999999999,7,0.077,0,88,0.2,0,1 -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,95372,96455,15671,3785,330,10.8,9,5,16,77777,9,999999999,7,0.077,0,88,0.2,0,1 -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,93291,95050,14292,3610,320,9.3,4,2,16,77777,9,999999999,7,0.077,0,88,0.2,0,1 -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,86762,93398,13847,2993,300,10.8,4,3,16,77777,9,999999999,7,0.077,0,88,0.2,0,1 -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,74776,90662,13011,2272,300,7.7,4,2,16,77777,9,999999999,7,0.077,0,88,0.2,0,1 -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,63307,50516,13596,5308,350,4.1,4,3,16,77777,9,999999999,7,0.077,0,88,0.2,0,1 -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,39407,37052,9110,3317,330,5.2,4,2,16,77777,9,999999999,7,0.077,0,88,0.2,0,1 -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,16221,9404,5153,1667,350,4.6,4,3,16,77777,9,999999999,6,0.077,0,88,0.2,0,1 -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,77777,9,999999999,6,0.077,0,88,0.2,0,1 -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,67,82800,0,0,269,0,0,0,0,0,0,0,80,3.1,0,0,16,77777,9,999999999,6,0.077,0,88,0.2,0,1 -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,77777,9,999999999,6,0.077,0,88,0.2,0,1 -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,77777,9,999999999,6,0.077,0,88,0.2,0,1 -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,77777,9,999999999,6,0.077,0,88,0.2,0,1 -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,77777,9,999999999,6,0.077,0,88,0.2,0,1 -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,77777,9,999999999,6,0.078,0,88,0.2,0,1 -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,77777,9,999999999,6,0.078,0,88,0.2,0,1 -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,77777,9,999999999,6,0.078,0,88,0.2,0,1 -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,-2.8,79,82200,0,0,246,0,0,0,0,0,0,0,170,4.6,0,0,16,77777,9,999999999,6,0.078,0,88,0.2,0,1 -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,77777,9,999999999,6,0.078,0,88,0.2,0,1 -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,77777,9,999999999,6,0.078,0,88,0.2,0,1 -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,67,82300,250,1362,269,167,476,80,18167,15339,8737,2457,150,8.2,0,0,16,77777,9,999999999,6,0.078,0,88,0.2,0,1 -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,43274,40773,9316,3389,180,11.3,0,0,16,77777,9,999999999,6,0.078,0,88,0.2,0,1 -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,69110,53804,11676,4612,170,11.8,3,3,16,77777,9,999999999,5,0.078,0,88,0.2,0,1 -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,77514,92872,14331,2343,140,11.8,2,2,16,77777,9,999999999,5,0.078,0,88,0.2,0,1 -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,88487,95250,13719,2997,140,12.9,3,3,16,77777,9,999999999,5,0.078,0,88,0.2,0,1 -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,114959,64077,18887,7856,160,14.9,7,5,16,77777,9,999999999,5,0.078,0,88,0.2,0,1 -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,102654,57717,31159,12358,180,12.4,10,9,16,3048,9,999999999,5,0.078,0,88,0.2,0,1 -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,48129,13613,33374,12943,220,9.3,10,10,16,3048,9,999999999,5,0.078,0,88,0.2,0,1 -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,-9.4,16,81800,937,1362,333,639,582,237,74715,47961,27856,10697,250,7.2,10,9,16,3962,9,999999999,5,0.078,0,88,0.2,0,1 -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,62439,50056,16590,6360,310,10.8,10,9,16,3962,9,999999999,5,0.078,0,88,0.2,0,1 -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,40654,40428,15422,5163,290,10.3,10,9,16,3962,9,999999999,5,0.078,0,88,0.2,0,1 -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,23,81800,255,1362,305,55,0,55,5418,0,5457,1951,270,12.4,10,9,16,3048,9,999999999,5,0.078,0,88,0.2,0,1 -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,2134,9,999999999,5,0.078,0,88,0.2,0,1 -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,2134,9,999999999,5,0.078,0,88,0.2,0,1 -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,5,0.078,0,88,0.2,0,1 -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,10,10,16,3048,9,999999999,5,0.078,0,88,0.2,0,1 -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,2743,9,999999999,5,0.078,0,88,0.2,0,1 -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,4572,9,999999999,5,0.078,0,88,0.2,0,1 -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,77777,9,999999999,5,0.079,0,88,0.2,0,1 -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,77777,9,999999999,4,0.079,0,88,0.2,0,1 -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,9,5,16,77777,9,999999999,4,0.079,0,88,0.2,0,1 -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,77777,9,999999999,4,0.079,0,88,0.2,0,1 -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,6706,9,999999999,4,0.079,0,88,0.2,0,1 -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,77777,9,999999999,4,0.079,0,88,0.2,0,1 -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,20,82100,257,1362,265,174,508,78,19069,17661,8580,2461,270,9.8,9,5,16,77777,9,999999999,4,0.079,0,88,0.2,0,1 -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,-14.4,20,82300,516,1362,284,381,662,129,43254,44357,14704,4991,270,9.8,10,9,16,6706,9,999999999,4,0.079,0,88,0.2,0,1 -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,50511,30215,30138,10086,270,9.8,10,9,16,7315,9,999999999,4,0.079,0,88,0.2,0,1 -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,82214,55540,21398,8557,290,8.8,10,9,16,7315,9,999999999,4,0.079,0,88,0.2,0,1 -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,94584,56271,26332,10610,300,11.3,10,9,16,6096,9,999999999,4,0.079,0,88,0.2,0,1 -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,115059,64488,19028,7906,310,10.8,10,9,16,6096,9,999999999,4,0.079,0,88,0.2,0,1 -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,94281,95447,14260,3701,320,12.9,10,9,16,6096,9,999999999,4,0.079,0,88,0.2,0,1 -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,89104,96281,13052,2957,320,8.2,10,9,16,6096,9,999999999,4,0.079,0,88,0.2,0,1 -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,87029,60123,22397,8912,340,9.8,10,9,16,6096,9,999999999,4,0.079,0,88,0.2,0,1 -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,33030,7684,27635,9546,360,8.8,9,5,16,77777,9,999999999,4,0.079,0,88,0.2,0,1 -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,40862,40340,15230,5133,10,11.3,9,5,16,77777,9,999999999,4,0.079,0,88,0.2,0,1 -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,17214,10213,4747,1565,10,9.8,9,5,16,77777,9,999999999,4,0.079,0,88,0.2,0,1 -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,77777,9,999999999,4,0.079,0,88,0.2,0,1 -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,77777,9,999999999,4,0.079,0,88,0.2,0,1 -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,4,2,16,77777,9,999999999,4,0.079,0,88,0.2,0,1 -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,77777,9,999999999,4,0.079,0,88,0.2,0,1 -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,77777,9,999999999,4,0.079,0,88,0.2,0,1 -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,77777,9,999999999,4,0.079,0,88,0.2,0,1 -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,77777,9,999999999,4,0.079,0,88,0.2,0,1 -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,77777,9,999999999,4,0.079,0,88,0.2,0,1 -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,77777,9,999999999,4,0.079,0,88,0.2,0,1 -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,77777,9,999999999,4,0.079,0,88,0.2,0,1 -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,77777,9,999999999,4,0.079,0,88,0.2,0,1 -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,75,83100,33,714,217,0,81,0,0,0,0,0,150,4.1,0,0,16,77777,9,999999999,5,0.079,0,88,0.2,0,1 -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,-6.7,57,83500,263,1361,242,171,504,74,18851,16408,8187,2420,130,4.6,0,0,16,77777,9,999999999,5,0.079,0,88,0.2,0,1 -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,41770,40049,10768,3879,110,5.2,2,2,16,77777,9,999999999,5,0.079,0,88,0.2,0,1 -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,64547,51814,17709,6759,100,4.6,3,3,16,77777,9,999999999,5,0.079,0,88,0.2,0,1 -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,91549,61191,16789,6873,120,5.2,2,2,16,77777,9,999999999,5,0.079,0,88,0.2,0,1 -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,90948,98129,12792,2952,130,6.2,3,3,16,77777,9,999999999,5,0.079,0,88,0.2,0,1 -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,98657,99045,15504,3932,100,6.2,9,5,16,77777,9,999999999,5,0.079,0,88,0.2,0,1 -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,97185,98773,13752,3665,60,3.1,9,5,16,77777,9,999999999,5,0.079,0,88,0.2,0,1 -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,15,84100,1079,1361,317,853,824,198,103294,62321,24093,9817,130,4.6,9,5,16,77777,9,999999999,5,0.079,0,88,0.2,0,1 -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,-11.1,14,84000,945,1361,331,571,369,314,65392,33949,36175,13068,160,6.2,10,9,16,7620,9,999999999,6,0.079,0,88,0.2,0,1 -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,15,84000,754,1361,335,568,742,155,66623,54454,18257,6935,150,6.7,10,9,16,7620,9,999999999,6,0.079,0,88,0.2,0,1 -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,42987,40459,8476,3123,150,7.2,9,5,16,77777,9,999999999,6,0.079,0,88,0.2,0,1 -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,17774,10682,4858,1604,150,6.2,10,9,16,7315,9,999999999,6,0.079,0,88,0.2,0,1 -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,7315,9,999999999,6,0.079,0,88,0.2,0,1 -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,6096,9,999999999,6,0.079,0,88,0.2,0,1 -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,6096,9,999999999,6,0.079,0,88,0.2,0,1 -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,6096,9,999999999,6,0.079,0,88,0.2,0,1 -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,77777,9,999999999,6,0.079,0,88,0.2,0,1 -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,77777,9,999999999,7,0.079,0,88,0.2,0,1 -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,77777,9,999999999,7,0.08,0,88,0.2,0,1 -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,77777,9,999999999,7,0.08,0,88,0.2,0,1 -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,77777,9,999999999,7,0.08,0,88,0.2,0,1 -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,77777,9,999999999,7,0.08,0,88,0.2,0,1 -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,77777,9,999999999,7,0.08,0,88,0.2,0,1 -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,77777,9,999999999,7,0.08,0,88,0.2,0,1 -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,-3.9,51,83700,270,1360,272,178,564,66,19848,16520,7383,2276,250,4.6,2,2,16,77777,9,999999999,7,0.08,0,88,0.2,0,1 -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,45575,43226,9472,3473,280,3.1,3,3,16,77777,9,999999999,7,0.08,0,88,0.2,0,1 -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,-4.4,34,83900,761,1360,292,581,876,90,71058,54657,11040,4394,320,2.1,2,2,16,77777,9,999999999,7,0.08,0,88,0.2,0,1 -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,76369,89113,15197,2443,0,0,3,3,16,77777,9,999999999,7,0.08,0,88,0.2,0,1 -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,89681,92630,17092,3407,30,1.5,6,5,16,77777,9,999999999,8,0.08,0,88,0.2,0,1 -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,117882,64553,19378,8051,50,4.1,6,5,16,77777,9,999999999,8,0.08,0,88,0.2,0,1 -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,-5,17,84100,1153,1360,343,918,959,103,96127,97139,13745,3709,60,6.2,6,5,16,77777,9,999999999,8,0.08,0,88,0.2,0,1 -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,17,84000,1083,1360,366,871,968,99,91343,97912,13424,3059,70,6.7,10,9,16,6096,9,999999999,8,0.08,0,88,0.2,0,1 -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,90541,61275,20289,8189,70,8.2,10,9,16,6096,9,999999999,8,0.08,0,88,0.2,0,1 -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,44253,22832,27650,9614,70,8.8,10,9,16,6096,9,999999999,8,0.08,0,88,0.2,0,1 -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,21302,5475,18151,5865,50,9.3,10,9,16,6096,9,999999999,8,0.08,0,88,0.2,0,1 -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,16974,13325,8904,2571,50,7.2,10,9,16,6096,9,999999999,8,0.08,0,88,0.2,0,1 -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,6096,9,999999999,8,0.08,0,88,0.2,0,1 -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,3353,9,999999999,8,0.08,0,88,0.2,0,1 -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,6096,9,999999999,8,0.08,0,88,0.2,0,1 -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,77777,9,999999999,8,0.08,0,88,0.2,0,1 -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,77777,9,999999999,8,0.08,0,88,0.2,0,1 -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,77777,9,999999999,8,0.08,0,88,0.2,0,1 -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,-2.2,58,83100,0,0,276,0,0,0,0,0,0,0,300,4.1,3,3,16,77777,9,999999999,8,0.08,0,88,0.2,0,1 -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,77777,9,999999999,8,0.08,0,88,0.2,0,1 -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,77777,9,999999999,9,0.08,0,88,0.2,0,1 -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,77777,9,999999999,9,0.08,0,88,0.2,0,1 -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,77777,9,999999999,9,0.08,0,88,0.2,0,1 -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,0,0,0,0,250,4.6,5,5,16,77777,9,999999999,9,0.08,0,88,0.2,0,1 -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,20448,17925,8319,2503,270,3.6,5,5,16,77777,9,999999999,9,0.08,0,88,0.2,0,1 -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,44880,42437,11110,4020,320,5.7,5,5,16,77777,9,999999999,9,0.08,0,88,0.2,0,1 -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,43,83400,766,1359,332,561,772,125,66926,51459,14968,5858,340,6.2,9,9,16,6096,9,999999999,9,0.08,0,88,0.2,0,1 -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,2.8,44,83500,955,1359,329,717,710,218,84420,54503,25799,10138,320,7.2,5,5,16,77777,9,999999999,10,0.08,0,88,0.2,0,1 -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,39314,5341,33268,12992,10,7.7,7,7,16,2438,9,999999999,10,0.08,0,88,0.2,0,1 -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,70286,22588,46161,16828,20,9.3,9,9,16,6096,9,999999999,10,0.08,0,88,0.2,0,1 -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,41,83500,1156,1359,368,798,563,318,93895,46589,37647,14486,40,8.8,9,9,16,1524,9,999999999,10,0.08,0,88,0.2,0,1 -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,62672,19888,42555,15635,20,5.7,9,9,16,1829,9,999999999,10,0.08,0,88,0.2,0,1 -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,31802,2361,29528,11323,40,4.6,9,9,16,1524,9,999999999,10,0.08,0,88,0.2,0,1 -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,10125,0,10214,4783,50,3.1,9,9,16,6096,9,999999999,11,0.08,0,88,0.2,0,1 -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,18090,4347,15100,5171,50,5.7,9,9,16,6096,9,999999999,11,0.08,0,88,0.2,0,1 -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,55,83200,271,1359,346,160,381,84,17448,13091,9196,2648,50,4.6,9,9,16,2896,9,999999999,11,0.08,0,88,0.2,0,1 -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,7.2,83,83000,37,759,312,2,112,2,0,0,0,0,120,5.2,5,5,16,77777,9,999999999,11,0.08,0,88,0.2,0,1 -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,11,0.08,0,88,0.2,0,1 -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,12,0.08,0,88,0.2,0,1 -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,762,9,999999999,12,0.08,0,88,0.2,0,1 -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,1006,9,999999999,12,0.08,0,88,0.2,0,1 -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,12,0.08,0,88,0.2,0,1 -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,1158,9,999999999,12,0.081,0,88,0.2,0,1 -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,12,0.081,0,88,0.2,0.3,1 -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,1524,9,999999999,13,0.081,0,88,0.2,0,1 -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,4,87,83000,0,0,317,0,0,0,0,0,0,0,340,9.3,10,10,12.9,300,9,999999999,13,0.081,0,88,0.2,0,1 -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,3.3,89,83100,0,0,312,0,0,0,0,0,0,0,340,10.3,10,10,16,396,9,999999999,13,0.081,0,88,0.2,0,1 -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,333,3414,353,72,360,8.8,10,10,16,244,9,999999999,13,0.081,0,88,0.2,0,1 -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,96,83100,282,1359,289,192,349,119,20454,18038,12737,3178,360,11.3,10,10,2.4,122,9,999999999,12,0.081,0,88,0.2,0,1 -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,100,83300,540,1359,287,163,38,148,18359,2622,16742,5631,360,9.8,10,10,0.4,61,9,999999999,12,0.081,0,88,0.2,0,1 -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,100,83400,771,1359,287,119,0,119,12221,0,12328,5636,360,10.3,10,10,0.4,61,9,999999999,12,0.081,0,88,0.2,0,1 -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.6,95,83500,960,1359,286,121,0,121,12623,0,12740,6197,10,10.3,10,10,0.4,61,9,999999999,12,0.081,0,88,0.2,0,1 -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.6,95,83800,1093,1359,286,210,6,206,25366,446,25007,10182,10,8.2,10,10,3.2,122,9,999999999,11,0.081,0,88,0.2,0,1 -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,-1,80,83600,1161,1359,286,315,12,305,37278,1001,36311,14066,20,11.8,9,9,16.1,660,9,999999999,11,0.081,0,88,0.2,0,1 -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,65535,17860,46859,17007,10,11.3,9,9,16,762,9,999999999,11,0.081,0,88,0.2,0,1 -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,27424,915,26355,10659,360,10.3,9,9,16,1128,9,999999999,11,0.081,0,88,0.2,0,1 -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,50257,14785,37579,13513,10,8.2,10,10,16,1158,9,999999999,10,0.081,0,88,0.2,0,1 -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,21777,459,21413,7975,30,7.7,9,9,16,1372,9,999999999,10,0.081,0,88,0.2,0,1 -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,18594,1653,17665,5806,20,7.2,10,10,16,1433,9,999999999,10,0.081,0,88,0.2,0,1 -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,4237,0,4268,1659,20,5.7,10,10,9.6,1036,9,999999999,9,0.081,0,88,0.2,0,1 -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,0,0,0,0,20,6.2,10,10,16,1676,9,999999999,9,0.081,0,88,0.2,0,1 -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,9,0.081,0,88,0.2,0,1 -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,1676,9,999999999,9,0.081,0,88,0.2,0,1 -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,1433,9,999999999,8,0.081,0,88,0.2,0,1 -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,8,0.081,0,88,0.2,0,1 -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,-2,92,83700,0,0,280,0,0,0,0,0,0,0,360,3.1,10,10,2,510,9,999999999,8,0.081,0,88,0.2,0,1 -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,7,0.081,0,88,0.2,0,1 -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,7,0.081,0,88,0.2,0,1 -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,7,0.081,0,88,0.2,0,1 -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,-4,100,83700,0,0,266,0,0,0,0,0,0,0,20,10.8,10,10,0.8,90,9,999999999,7,0.081,0,88,0.2,0,1 -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,6,0.081,0,88,0.2,0,1 -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,97,0,97,40,30,4.1,10,10,16,1524,9,999999999,6,0.081,0,88,0.2,0,1 -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,5334,0,5373,2022,20,3.6,9,9,16,1524,9,999999999,6,0.081,0,88,0.2,0,1 -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,9291,0,9366,3952,360,6.2,9,9,16,2743,9,999999999,6,0.081,0,88,0.2,0,1 -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,33335,3903,30805,10483,310,6.2,5,5,16,77777,9,999999999,6,0.081,0,88,0.2,0,1 -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,40047,3853,36825,13390,330,6.7,5,5,16,77777,9,999999999,6,0.081,0,88,0.2,0,1 -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,-11.7,37,84100,1097,1358,252,575,241,380,66406,22869,44171,16064,330,11.8,5,5,16,77777,9,999999999,6,0.081,0,88,0.2,0,1 -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,65142,15284,50005,17754,340,10.8,5,5,16,77777,9,999999999,5,0.081,0,88,0.2,0,1 -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,66189,17388,48697,17447,350,10.8,5,5,16,77777,9,999999999,5,0.081,0,88,0.2,0,1 -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,-11,36,83900,1093,1358,272,602,323,342,70060,29353,40049,14974,350,12.9,9,9,6.4,2400,9,999999999,5,0.081,0,88,0.2,0,1 -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,38,83900,958,1358,260,240,30,219,28342,2396,25993,10195,340,10.3,5,5,16,77777,9,999999999,5,0.081,0,88,0.2,0,1 -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,63261,47957,28154,9813,330,10.3,9,9,16,2591,9,999999999,5,0.081,0,88,0.2,0,1 -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,9994,0,10075,4165,340,12.9,7,7,16,2438,9,999999999,5,0.081,0,88,0.2,0,1 -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,7823,360,7624,2359,350,12.4,5,5,16,77777,9,999999999,5,0.081,0,88,0.2,0,1 -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,440,5158,352,72,350,8.2,9,9,16,2896,9,999999999,4,0.081,0,88,0.2,0,1 -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,3048,9,999999999,4,0.081,0,88,0.2,0,1 -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,2743,9,999999999,4,0.081,0,88,0.2,0,1 -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,2438,9,999999999,4,0.081,0,88,0.2,0,1 -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,2438,9,999999999,4,0.081,0,88,0.2,0,1 -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,77777,9,999999999,4,0.081,0,88,0.2,0,1 -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,77777,9,999999999,4,0.082,0,88,0.2,0,1 -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,77777,9,999999999,3,0.082,0,88,0.2,0,1 -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,2743,9,999999999,3,0.082,0,88,0.2,0,1 -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,2743,9,999999999,3,0.082,0,88,0.2,0,1 -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,-11.7,56,83800,0,0,234,0,0,0,0,0,0,0,280,3.1,5,5,16,77777,9,999999999,3,0.082,0,88,0.2,0,1 -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,-12.2,53,83500,51,871,234,6,149,2,663,6934,355,75,290,3.1,5,5,16,77777,9,999999999,3,0.082,0,88,0.2,0,1 -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,21925,20591,8080,2518,210,3.6,5,5,16,77777,9,999999999,3,0.082,0,88,0.2,0,1 -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,43698,41480,18280,6054,220,4.1,9,9,16,6096,9,999999999,3,0.082,0,88,0.2,0,1 -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,37700,9021,31577,10694,350,5.2,9,9,16,6096,9,999999999,3,0.082,0,88,0.2,0,1 -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,-11,36,83700,969,1357,279,589,358,333,67423,33469,38353,13804,330,10.8,10,10,14.5,1440,9,999999999,3,0.082,0,88,0.2,0,1 -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,36471,2042,34427,13359,340,7.2,10,10,16,2438,9,999999999,3,0.082,0,88,0.2,0,1 -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,22521,0,22742,10563,220,7.7,10,10,16,2134,9,999999999,3,0.082,0,88,0.2,0,1 -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,25924,0,26179,11851,230,4.6,10,10,16,2286,9,999999999,4,0.082,0,88,0.2,0,1 -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,14781,0,14924,7310,140,4.6,10,10,12.8,1463,9,999999999,4,0.082,0,88,0.2,0,1 -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,13156,0,13279,6430,30,7.7,10,10,0.8,183,9,999999999,4,0.082,0,88,0.2,0,1 -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,-3,92,83500,771,1357,275,99,0,99,10177,0,10266,4809,30,7.7,10,10,0.8,180,9,999999999,4,0.082,0,88,0.2,0,1 -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,9988,0,10068,4178,10,4.6,10,10,16,1494,9,999999999,4,0.082,0,88,0.2,0,1 -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,3454,0,3479,1408,350,11.8,9,9,8,1311,9,999999999,4,0.082,0,88,0.2,0,1 -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,545,4844,520,97,350,4.1,10,10,16,2438,9,999999999,4,0.082,0,88,0.2,0,1 -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,4,0.082,0,88,0.2,0,1 -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,1829,9,999999999,4,0.082,0,88,0.2,0,1 -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,2591,9,999999999,4,0.082,0,88,0.2,0,1 -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,77777,9,999999999,4,0.082,0,88,0.2,0,1 -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,77777,9,999999999,4,0.082,0,88,0.2,0,1 -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,77777,9,999999999,4,0.082,0,88,0.2,0,1 -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,77777,9,999999999,4,0.082,0,88,0.2,0,1 -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,77777,9,999999999,4,0.082,0,88,0.2,0,1 -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,77777,9,999999999,4,0.082,0,88,0.2,0,1 -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,77777,9,999999999,5,0.082,0,88,0.2,0,1 -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,760,5354,689,127,220,6.2,5,5,16,77777,9,999999999,5,0.082,0,88,0.2,0,1 -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,68,83700,300,1356,230,203,398,114,21900,21019,12353,3304,210,6.2,3,3,16,77777,9,999999999,5,0.082,0,88,0.2,0,1 -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,38886,33036,18402,6118,210,6.2,2,2,16,77777,9,999999999,5,0.082,0,88,0.2,0,1 -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,62038,46534,21086,7964,200,6.2,0,0,16,77777,9,999999999,5,0.082,0,88,0.2,0,1 -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,83720,53809,24173,9635,210,5.2,0,0,16,77777,9,999999999,5,0.082,0,88,0.2,0,1 -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,107610,62360,20203,8369,230,2.1,0,0,16,77777,9,999999999,5,0.082,0,88,0.2,0,1 -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,29,84100,1172,1356,260,946,956,118,98302,96486,15539,4292,220,3.1,0,0,16,77777,9,999999999,5,0.082,0,88,0.2,0,1 -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,98876,98742,13556,3914,240,2.1,3,3,16,77777,9,999999999,5,0.082,0,88,0.2,0,1 -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,93583,99006,13241,3180,270,2.6,5,5,16,77777,9,999999999,5,0.082,0,88,0.2,0,1 -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,80127,96381,10952,2212,290,2.6,5,5,16,77777,9,999999999,5,0.082,0,88,0.2,0,1 -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,72638,55201,10847,4339,320,4.1,5,5,16,77777,9,999999999,5,0.082,0,88,0.2,0,1 -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,46609,43123,8627,3210,270,1.5,5,5,16,77777,9,999999999,5,0.082,0,88,0.2,0,1 -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,30,84100,287,1356,303,172,607,44,19944,13835,5113,1714,220,4.1,5,5,16,77777,9,999999999,5,0.082,0,88,0.2,0,1 -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,548,6083,521,99,210,5.7,5,5,16,77777,9,999999999,5,0.082,0,88,0.2,0,1 -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,77777,9,999999999,5,0.082,0,88,0.2,0,1 -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,-3.9,51,83800,0,0,279,0,0,0,0,0,0,0,200,7.7,5,5,16,77777,9,999999999,5,0.082,0,88,0.2,0,1 -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,-3.9,51,83700,0,0,279,0,0,0,0,0,0,0,200,6.7,5,5,16,77777,9,999999999,5,0.082,0,88,0.2,0,1 -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,77777,9,999999999,5,0.082,0,88,0.2,0,1 -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,77777,9,999999999,5,0.082,0,88,0.2,0,1 -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,-3.9,51,83600,0,0,272,0,0,0,0,0,0,0,210,7.7,2,2,16,77777,9,999999999,5,0.083,0,88,0.2,0,1 -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,77777,9,999999999,5,0.083,0,88,0.2,0,1 -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,-4.4,48,83500,0,0,272,0,0,0,0,0,0,0,230,5.2,2,2,16,77777,9,999999999,5,0.083,0,88,0.2,0,1 -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,77777,9,999999999,5,0.083,0,88,0.2,0,1 -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,77777,9,999999999,5,0.083,0,88,0.2,0,1 -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,-3.9,51,83600,59,937,279,8,166,3,882,8277,526,106,240,5.7,5,5,16,77777,9,999999999,5,0.083,0,88,0.2,0,1 -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,21678,19145,7588,2437,260,7.2,7,7,16,7620,9,999999999,5,0.083,0,88,0.2,0,1 -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,48509,44912,9658,3596,270,8.2,9,9,16,7620,9,999999999,5,0.083,0,88,0.2,0,1 -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,72490,54830,13036,5198,290,9.3,9,9,16,7620,9,999999999,6,0.083,0,88,0.2,0,1 -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,78718,89041,15626,2612,310,8.2,9,9,16,7620,9,999999999,6,0.083,0,88,0.2,0,1 -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,91850,92564,17491,3726,300,6.7,9,9,16,7620,9,999999999,6,0.083,0,88,0.2,0,1 -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,116061,62645,22577,9290,290,5.2,9,9,16,7620,9,999999999,6,0.083,0,88,0.2,0,1 -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,98919,51259,36870,14251,290,6.2,9,9,16,7315,9,999999999,6,0.083,0,88,0.2,0,1 -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,73682,30080,43541,15951,290,4.1,9,9,16,7315,9,999999999,6,0.083,0,88,0.2,0,1 -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,78464,48790,28652,11098,320,4.6,9,9,16,7315,9,999999999,6,0.083,0,88,0.2,0,1 -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,-6.1,16,84200,778,1355,362,304,83,257,34396,7293,29238,10160,340,4.6,9,9,16,7315,9,999999999,7,0.083,0,88,0.2,0,1 -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,18799,2090,17526,5859,340,2.6,9,9,16,7315,9,999999999,7,0.083,0,88,0.2,0,1 -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,-3,25,84200,291,1355,351,173,396,88,18982,16048,9692,2838,330,11.3,9,9,16.1,7200,9,999999999,7,0.083,0,88,0.2,0,1 -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,761,7255,687,121,360,9.8,9,9,16,7315,9,999999999,7,0.083,0,88,0.2,0,1 -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,7315,9,999999999,7,0.083,0,88,0.2,0,1 -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,77777,9,999999999,7,0.083,0,88,0.2,0,1 -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,77777,9,999999999,8,0.083,0,88,0.2,0,1 -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,77777,9,999999999,8,0.083,0,88,0.2,0,1 -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,77777,9,999999999,8,0.083,0,88,0.2,0,1 -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,7620,9,999999999,8,0.083,0,88,0.2,0,1 -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,77777,9,999999999,8,0.083,0,88,0.2,0,1 -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,77777,9,999999999,8,0.083,0,88,0.2,0,1 -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,77777,9,999999999,9,0.083,0,88,0.2,0,1 -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,77777,9,999999999,9,0.083,0,88,0.2,0,1 -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,1216,10529,527,108,210,7.2,5,5,16,77777,9,999999999,9,0.083,0,88,0.2,0,1 -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,23608,20359,6862,2262,210,7.2,5,5,16,77777,9,999999999,9,0.083,0,88,0.2,0,1 -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,-1.1,33,84000,567,1355,325,421,807,83,49969,45501,9880,3685,230,4.6,5,5,16,77777,9,999999999,9,0.083,0,88,0.2,0,1 -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,19,84100,796,1355,335,603,844,107,73275,55137,13046,5211,300,3.6,5,5,16,77777,9,999999999,9,0.083,0,88,0.2,0,1 -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,89758,57293,19952,8142,290,1.5,9,9,16,7620,9,999999999,9,0.083,0,88,0.2,0,1 -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,18,83600,1112,1355,360,748,525,316,87794,45428,37314,14277,270,2.1,9,9,16,7620,9,999999999,9,0.083,0,88,0.2,0,1 -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,16,84100,1179,1355,369,527,126,417,61095,11955,48672,17527,260,7.2,9,9,16,7620,9,999999999,9,0.083,0,88,0.2,0,1 -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,102880,54229,35334,13776,340,4.1,9,9,16,7620,9,999999999,9,0.083,0,88,0.2,0,1 -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,14,84100,1105,1355,377,883,830,204,107075,62208,24860,10135,260,4.1,9,9,16,7620,9,999999999,9,0.083,0,88,0.2,0,1 -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,77092,47459,26145,10302,360,3.6,9,9,16,7620,9,999999999,9,0.083,0,88,0.2,0,1 -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,15,83900,781,1355,374,526,625,164,61705,46085,19323,7389,350,4.1,9,9,16,7620,9,999999999,9,0.083,0,88,0.2,0,1 -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,33792,24589,18885,6197,290,2.6,10,10,14.4,7620,9,999999999,9,0.083,0,88,0.2,0,1 -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,17185,12265,6505,2125,120,1.5,10,10,16,7620,9,999999999,9,0.083,0,88,0.2,0,1 -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,482,0,485,182,180,3.1,10,10,16,7620,9,999999999,9,0.083,0,88,0.2,0,1 -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,7620,9,999999999,9,0.083,0,88,0.2,0,1 -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,7620,9,999999999,9,0.083,0,88,0.2,0,1 -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,44,83200,0,0,330,0,0,0,0,0,0,0,150,2.1,9,9,16,7620,9,999999999,9,0.083,0,88,0.2,0,1 -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,7620,9,999999999,9,0.083,0,88,0.2,0,1 -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,52,83000,0,0,319,0,0,0,0,0,0,0,140,3.1,9,9,16,7620,9,999999999,9,0.083,0,88,0.2,0,1 -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,48,83100,0,0,325,0,0,0,0,0,0,0,250,3.1,10,9,16,7620,9,999999999,9,0.083,0,88,0.2,0,1 -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,56,83000,0,0,314,0,0,0,0,0,0,0,230,3.6,10,9,16,7620,9,999999999,9,0.083,0,88,0.2,0,1 -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,7620,9,999999999,9,0.083,0,88,0.2,0,1 -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,7620,9,999999999,9,0.083,0,88,0.2,0,1 -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,7620,9,999999999,9,0.083,0,88,0.2,0,1 -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,833,0,715,225,220,1.5,10,9,16,7620,9,999999999,9,0.083,0,88,0.2,0,1 -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,12143,1954,11204,3262,210,3.6,10,9,16,7620,9,999999999,9,0.083,0,88,0.2,0,1 -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,27162,8948,22062,7019,190,3.1,10,9,16,6096,9,999999999,9,0.083,0,88,0.2,0,1 -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,56188,33279,31432,10856,190,4.6,10,9,16,6096,9,999999999,9,0.083,0,88,0.2,0,1 -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,94834,60666,20629,8407,280,2.6,10,9,16,7620,9,999999999,9,0.083,0,88,0.2,0,1 -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,105209,60252,28825,11558,0,0,10,9,16,7620,9,999999999,9,0.083,0,88,0.2,0,1 -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,56344,8373,47485,17258,130,3.6,10,9,16,5486,9,999999999,9,0.083,0,88,0.2,0,1 -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,55356,7276,47786,17324,90,3.6,10,9,16,5486,9,999999999,9,0.083,0,88,0.2,0,1 -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,62919,18802,43888,16077,280,2.1,10,9,16,3353,9,999999999,9,0.083,0,88,0.2,0,1 -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,13693,0,13821,6687,290,3.6,10,9,16,5486,9,999999999,9,0.083,0,88,0.2,0,1 -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.6,25,83000,784,1354,369,149,0,149,15325,0,15460,6858,10,3.6,10,9,16,3353,9,999999999,9,0.083,0,88,0.2,0,1 -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,29,82500,554,1354,372,120,0,120,12104,0,12203,4917,90,5.7,10,10,16,5486,9,999999999,9,0.083,0,88,0.2,0,1 -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,4836,0,4872,1896,80,4.6,10,10,16,5486,9,999999999,9,0.083,0,88,0.2,0,1 -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,36,82800,54,914,355,10,168,5,1088,8090,853,143,360,3.1,10,10,16,3048,9,999999999,9,0.083,0,88,0.2,0,1 -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,2743,9,999999999,9,0.083,0,88,0.2,0,1 -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,3658,9,999999999,9,0.083,0,88,0.2,0,1 -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,2438,9,999999999,9,0.083,0,88,0.2,0,1 -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,2438,9,999999999,9,0.083,0,88,0.2,0,1 -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,4572,9,999999999,9,0.083,0,88,0.2,0,1 -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,3353,9,999999999,9,0.084,0,88,0.2,0,1 -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,77777,9,999999999,9,0.084,0,88,0.2,0,1 -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,3658,9,999999999,9,0.084,0,88,0.2,0,1 -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,77777,9,999999999,9,0.084,0,88,0.2,0,1 -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,77777,9,999999999,9,0.084,0,88,0.2,0,1 -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,2.8,86,82100,71,1026,286,0,0,0,0,0,0,0,150,3.1,6,5,16,77777,9,999999999,9,0.084,0,88,0.2,0,1 -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,25917,23291,7719,2523,130,4.1,10,9,16,7620,9,999999999,10,0.084,0,88,0.2,0,1 -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,50,82400,577,1353,322,427,806,82,50830,45333,9789,3673,90,3.6,10,9,16,7620,9,999999999,10,0.084,0,88,0.2,0,1 -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,67767,92374,13028,1893,60,4.6,6,5,16,77777,9,999999999,10,0.084,0,88,0.2,0,1 -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,82138,95569,11823,2410,90,4.6,10,9,16,7620,9,999999999,10,0.084,0,88,0.2,0,1 -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,109651,62475,24677,10079,30,5.2,10,9,16,7620,9,999999999,10,0.084,0,88,0.2,0,1 -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,90523,41864,41764,15738,20,3.6,10,9,16,7620,9,999999999,10,0.084,0,88,0.2,0,1 -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,-3.3,27,82400,1182,1353,341,756,503,315,89619,42427,37568,14492,360,4.6,10,9,16,6096,9,999999999,10,0.084,0,88,0.2,0,1 -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,81180,38317,40140,15091,40,3.6,10,9,16,6096,9,999999999,10,0.084,0,88,0.2,0,1 -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,26483,1391,25063,9962,90,5.2,10,9,16,3353,9,999999999,10,0.084,0,88,0.2,0,1 -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,-4,29,82300,787,1353,340,150,0,150,15446,0,15582,6909,110,5.7,10,10,16.1,2400,9,999999999,10,0.084,0,88,0.2,0,1 -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,21081,3866,18813,6226,90,5.7,10,10,16,2743,9,999999999,10,0.084,0,88,0.2,0,1 -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,3062,0,3085,1288,320,5.2,10,10,16,2286,9,999999999,10,0.084,0,88,0.2,0,1 -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,96,0,97,40,270,6.2,10,10,12.8,1128,9,999999999,10,0.084,0,88,0.2,0,1 -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,1189,9,999999999,10,0.084,0,88,0.2,0,1 -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,975,9,999999999,10,0.084,0,88,0.2,0,1 -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,10,0.084,0,88,0.2,0,1 -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,4.4,96,82200,0,0,313,0,0,0,0,0,0,0,30,4.1,10,10,12.8,213,9,999999999,10,0.084,0,88,0.2,0,1 -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,610,9,999999999,10,0.084,0,88,0.2,0,1 -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,11,0.084,0,88,0.2,0,1 -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,3,100,81900,0,0,303,0,0,0,0,0,0,0,120,3.6,10,10,8,120,9,999999999,11,0.084,0,88,0.2,0,1 -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,11,0.084,0,88,0.2,0,1 -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,100,81900,0,0,287,0,0,0,0,0,0,0,0,0,10,10,2.8,213,9,999999999,11,0.084,0,88,0.2,0,1 -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,100,82300,0,0,287,0,0,0,0,0,0,0,0,0,10,10,2.4,213,9,999999999,11,0.084,0,88,0.2,0,1 -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,100,82000,76,1071,287,0,0,0,0,0,0,0,310,2.1,10,10,0.8,152,9,999999999,11,0.084,0,88,0.2,0,1 -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.6,95,82100,329,1352,286,34,0,34,3365,0,3390,1430,290,2.1,10,10,0.8,91,9,999999999,11,0.084,0,88,0.2,0,1 -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,100,82200,582,1352,287,70,0,70,7078,0,7137,3212,330,1.5,10,10,0.4,91,9,999999999,11,0.084,0,88,0.2,0,1 -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,100,82100,809,1352,287,105,0,105,10821,0,10918,5161,330,1.5,10,10,0.4,90,9,999999999,11,0.084,0,88,0.2,0,1 -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,96,82300,994,1352,289,126,0,126,13184,0,13308,6504,310,2.6,10,10,0.6,61,9,999999999,11,0.084,0,88,0.2,0,1 -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,17021,0,17188,8304,350,4.1,10,10,0.8,122,9,999999999,11,0.084,0,88,0.2,0,1 -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,16154,0,16315,7946,290,4.6,10,10,2.4,122,9,999999999,11,0.084,0,88,0.2,0,1 -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,23372,0,23605,10927,290,4.1,10,10,4,61,9,999999999,11,0.084,0,88,0.2,0,1 -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,1,93,82500,1114,1352,296,222,0,222,23450,0,23679,10888,290,4.1,10,10,0.8,60,9,999999999,11,0.084,0,88,0.2,0,1 -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,26380,462,26039,10314,290,3.6,10,10,4.8,305,9,999999999,11,0.084,0,88,0.2,0,1 -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,9667,0,9753,4640,280,3.1,10,10,4.8,183,9,999999999,11,0.084,0,88,0.2,0,1 -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,6353,0,6405,2888,280,3.6,10,10,0.8,152,9,999999999,11,0.084,0,88,0.2,1,1 -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,3551,0,3578,1474,320,1.5,10,10,4,274,9,999999999,11,0.084,0,88,0.2,0,1 -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,2,93,83000,60,958,302,4,0,4,386,0,388,153,70,10.3,10,10,6.4,90,9,999999999,11,0.084,0,88,0.2,0,1 -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,11,0.084,0,88,0.2,0,1 -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,11,0.084,0,88,0.2,0,1 -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,122,9,999999999,11,0.084,0,88,0.2,0,1 -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,100,83500,0,0,287,0,0,0,0,0,0,0,70,1.5,10,10,3.2,122,9,999999999,11,0.084,0,88,0.2,0,1 -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,100,83400,0,0,287,0,0,0,0,0,0,0,320,1.5,10,10,1.6,152,9,999999999,11,0.084,0,88,0.2,0,1 -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.6,95,83500,0,0,286,0,0,0,0,0,0,0,0,0,10,10,1.6,152,9,999999999,11,0.085,0,88,0.2,0,1 -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.6,95,83400,0,0,286,0,0,0,0,0,0,0,20,2.6,10,10,1.6,274,9,999999999,11,0.085,0,88,0.2,0,1 -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,-1,92,83400,0,0,286,0,0,0,0,0,0,0,20,2.6,10,10,1.6,270,9,999999999,11,0.085,0,88,0.2,0,1 -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,11,0.085,0,88,0.2,0,1 -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,91,9,999999999,11,0.085,0,88,0.2,0,1 -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,-1,100,83500,80,1093,281,0,0,0,0,0,0,0,80,4.1,10,10,4.8,150,9,999999999,11,0.085,0,88,0.2,0,1 -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,7428,0,7484,2752,70,7.2,10,10,1.6,152,9,999999999,11,0.085,0,88,0.2,0,1 -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,7796,0,7860,3502,70,6.7,10,10,1.6,335,9,999999999,11,0.085,0,88,0.2,0,1 -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,10834,0,10930,5173,70,5.2,10,10,1.6,305,9,999999999,11,0.085,0,88,0.2,0,1 -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,13930,0,14061,6832,80,2.1,10,10,8,305,9,999999999,10,0.085,0,88,0.2,0,1 -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,15662,0,15815,7714,0,0,10,10,4,274,9,999999999,10,0.085,0,88,0.2,0,1 -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,-1.1,91,83900,1192,1352,286,182,0,182,19358,0,19551,9311,0,0,10,10,4.8,335,9,999999999,10,0.085,0,88,0.2,0,1 -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,-1.1,91,83900,1188,1352,286,208,0,208,22117,0,22337,10431,0,0,10,10,8,244,9,999999999,10,0.085,0,88,0.2,0,1 -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,-1.1,91,83800,1117,1352,286,292,12,283,34574,984,33703,13189,0,0,10,10,9.6,640,9,999999999,10,0.085,0,88,0.2,0,1 -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,-1,86,83800,982,1352,290,252,6,247,29564,485,29134,11331,0,0,10,10,16.1,1110,9,999999999,10,0.085,0,88,0.2,0,1 -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,15448,0,15585,6936,0,0,10,10,16,1067,9,999999999,10,0.085,0,88,0.2,0,1 -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,6867,0,6923,3097,0,0,10,10,6.4,396,9,999999999,10,0.085,0,88,0.2,0,1 -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,3161,0,3185,1334,0,0,10,10,4.8,335,9,999999999,10,0.085,0,88,0.2,0,1 -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,1514,9704,1182,179,0,0,10,10,4.8,274,9,999999999,10,0.085,0,88,0.2,0,1 -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,10,10,16,335,9,999999999,10,0.085,0,88,0.2,0,1 -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,10,10,11.2,305,9,999999999,10,0.085,0,88,0.2,0,1 -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,10,10,16,366,9,999999999,10,0.085,0,88,0.2,0,1 -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,610,9,999999999,10,0.085,0,88,0.2,0,1 -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,488,9,999999999,10,0.085,0,88,0.2,0,1 -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,1524,9,999999999,10,0.085,0,88,0.2,0,1 -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,77777,9,999999999,10,0.085,0,88,0.2,0,1 -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,77777,9,999999999,10,0.085,0,88,0.2,0,1 -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,77777,9,999999999,10,0.085,0,88,0.2,0,1 -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,77777,9,999999999,10,0.085,0,88,0.2,0,1 -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,77777,9,999999999,10,0.085,0,88,0.2,0,1 -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,-2.2,83,83700,339,1351,261,240,688,67,27382,25906,7667,2547,0,0,6,5,16,77777,9,999999999,10,0.085,0,88,0.2,0,1 -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,51605,48568,16739,5891,230,2.1,6,5,16,77777,9,999999999,11,0.085,0,88,0.2,0,1 -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,79,83800,818,1351,292,536,421,280,60605,37318,31842,11115,210,1.5,10,9,16,914,9,999999999,11,0.085,0,88,0.2,0,1 -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,52628,12450,41591,14880,180,3.1,10,9,16,610,9,999999999,11,0.085,0,88,0.2,0,1 -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,53578,8267,45080,16481,190,2.6,10,9,16,671,9,999999999,11,0.085,0,88,0.2,0,1 -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,87655,36801,45706,16863,230,4.1,10,9,16,792,9,999999999,11,0.085,0,88,0.2,0,1 -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,55946,7200,48381,17536,150,4.6,10,9,16,853,9,999999999,11,0.085,0,88,0.2,0,1 -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,49886,3889,46162,16715,160,5.2,10,10,16,792,9,999999999,12,0.085,0,88,0.2,0,1 -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,45173,6936,38896,14118,140,9.3,10,10,16,732,9,999999999,12,0.085,0,88,0.2,0,1 -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,23162,457,22809,8569,160,7.2,10,10,16,884,9,999999999,12,0.085,0,88,0.2,0,1 -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,8978,0,9052,3913,150,7.7,10,10,16,853,9,999999999,12,0.085,0,88,0.2,0,1 -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,3160,0,3183,1338,140,5.2,10,10,16,853,9,999999999,12,0.085,0,88,0.2,0,1 -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,2.2,82,83400,65,1002,311,10,83,7,1172,0,821,256,150,7.2,10,10,16,1280,9,999999999,12,0.085,0,88,0.2,0,1 -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,914,9,999999999,12,0.085,0,88,0.2,0,1 -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,2,87,83300,0,0,306,0,0,0,0,0,0,0,140,8.7,10,10,16.1,840,9,999999999,13,0.085,0,88,0.2,0,1 -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,853,9,999999999,13,0.085,0,88,0.2,0,1 -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,853,9,999999999,13,0.085,0,88,0.2,0,1 -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,884,9,999999999,13,0.085,0,88,0.2,0,1 -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,884,9,999999999,13,0.086,0,88,0.2,0,1 -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,13,0.086,0,88,0.2,0,1 -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,366,9,999999999,14,0.086,0,88,0.2,0,1 -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,1067,9,999999999,14,0.086,0,88,0.2,0,1 -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,914,9,999999999,14,0.086,0,88,0.2,0.3,1 -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,1,100,82600,89,1159,292,0,0,0,0,0,0,0,290,4.1,10,10,4,600,9,999999999,14,0.086,0,88,0.2,0,1 -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,96,82600,344,1350,289,156,187,109,17123,9665,12014,3571,270,4.1,10,10,3.2,61,9,999999999,14,0.086,0,88,0.2,0.8,1 -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,93,82600,597,1350,291,90,0,90,9113,0,9188,4030,270,4.1,10,10,2.4,60,9,999999999,13,0.086,0,88,0.2,0,1 -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,96,82600,822,1350,289,118,0,118,12175,0,12284,5753,290,2.1,10,10,5.6,122,9,999999999,13,0.086,0,88,0.2,0,1 -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,39459,4129,35504,13351,280,3.1,10,9,16,2134,9,999999999,13,0.086,0,88,0.2,0,1 -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,2.8,86,82700,1133,1350,311,648,289,405,74709,26831,47009,16979,310,2.1,10,10,16,396,9,999999999,13,0.086,0,88,0.2,0,1 -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,78819,27049,48738,17656,340,2.1,10,9,16,427,9,999999999,13,0.086,0,88,0.2,0,1 -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,62048,11231,50123,17973,40,3.1,10,10,16,610,9,999999999,13,0.086,0,88,0.2,0,1 -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,49952,4405,45641,16603,90,3.1,10,10,16,914,9,999999999,13,0.086,0,88,0.2,0,1 -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,61691,25430,37959,13906,90,2.6,10,9,16,1097,9,999999999,12,0.086,0,88,0.2,0,1 -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,10289,0,10381,4925,50,2.6,10,10,16,3048,9,999999999,12,0.086,0,88,0.2,0,1 -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,22372,4292,19668,6519,110,4.6,10,10,16,1036,9,999999999,12,0.086,0,88,0.2,0,1 -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,13576,5984,9972,3030,170,4.1,10,9,16,2743,9,999999999,12,0.086,0,88,0.2,0,1 -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,2.2,82,82600,68,1024,302,18,214,9,2076,0,1039,321,160,4.6,10,9,16,6096,9,999999999,12,0.086,0,88,0.2,0,1 -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,6096,9,999999999,12,0.086,0,88,0.2,0,1 -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,77777,9,999999999,12,0.086,0,88,0.2,0,1 -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,77777,9,999999999,11,0.086,0,88,0.2,0,1 -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,92,82600,0,0,267,0,0,0,0,0,0,0,180,4.1,10,5,16,77777,9,999999999,11,0.086,0,88,0.2,0,1 -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,77777,9,999999999,11,0.086,0,88,0.2,0,1 -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,77777,9,999999999,11,0.086,0,88,0.2,0,1 -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,-1.7,87,82200,0,0,262,0,0,0,0,0,0,0,160,3.1,5,5,16,77777,9,999999999,11,0.086,0,88,0.2,0,1 -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,77777,9,999999999,11,0.086,0,88,0.2,0,1 -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,-2.2,83,82100,0,0,261,0,0,0,0,0,0,0,170,2.1,5,5,16,77777,9,999999999,11,0.086,0,88,0.2,0,1 -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,7,7,16,3353,9,999999999,10,0.086,0,88,0.2,0,1 -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,2438,9,999999999,11,0.086,0,88,0.2,0,1 -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,27742,26655,8633,2837,190,1.5,9,9,16,2743,9,999999999,11,0.086,0,88,0.2,0,1 -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,3,76,82600,601,1349,312,416,660,121,48254,41956,14089,5153,290,5.7,9,9,16.1,5400,9,999999999,11,0.086,0,88,0.2,0,1 -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,75078,55325,23358,8875,300,4.1,9,9,9.6,2743,9,999999999,11,0.086,0,88,0.2,0,1 -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,29174,2277,26583,10601,10,4.1,9,9,8,6096,9,999999999,11,0.086,0,88,0.2,0,1 -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,70164,24162,43893,16217,20,5.2,9,9,12.8,2438,9,999999999,11,0.086,0,88,0.2,0,1 -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,113873,58972,31386,12516,360,3.6,9,9,16,2286,9,999999999,11,0.086,0,88,0.2,0,1 -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,94790,44021,40458,15413,30,2.6,9,9,16,945,9,999999999,11,0.086,0,88,0.2,0,1 -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,95123,50037,30161,12046,50,4.6,9,9,16,6096,9,999999999,11,0.086,0,88,0.2,0,1 -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,81248,48095,26510,10521,0,0,9,9,16,6096,9,999999999,11,0.086,0,88,0.2,0,1 -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,47066,21734,30151,10608,10,3.1,9,9,16,6096,9,999999999,11,0.086,0,88,0.2,0,1 -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,20117,2082,18743,6326,50,4.1,9,9,16,2896,9,999999999,11,0.086,0,88,0.2,0,1 -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,3160,0,3183,1346,60,2.1,9,9,16,2896,9,999999999,11,0.086,0,88,0.2,0,1 -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,3.9,66,83100,71,1046,326,11,64,8,1285,0,935,293,90,1.5,9,9,16,6096,9,999999999,11,0.086,0,88,0.2,0,1 -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,77777,9,999999999,11,0.086,0,88,0.2,0,1 -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,77777,9,999999999,11,0.086,0,88,0.2,0,1 -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,2.8,86,82800,0,0,286,0,0,0,0,0,0,0,170,4.6,5,5,16,77777,9,999999999,11,0.086,0,88,0.2,0,1 -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,77777,9,999999999,11,0.086,0,88,0.2,0,1 -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,77777,9,999999999,11,0.086,0,88,0.2,0,1 -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,77777,9,999999999,11,0.086,0,88,0.2,0,1 -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,77777,9,999999999,11,0.086,0,88,0.2,0,1 -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,77777,9,999999999,11,0.086,0,88,0.2,0,1 -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,77777,9,999999999,11,0.086,0,88,0.2,0,1 -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,6096,9,999999999,11,0.086,0,88,0.2,0,1 -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,6096,9,999999999,11,0.086,0,88,0.2,0,1 -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,16046,6976,12250,3677,250,2.6,9,9,16,6096,9,999999999,11,0.086,0,88,0.2,0,1 -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,18823,430,18566,6457,0,0,9,9,16,3658,9,999999999,12,0.086,0,88,0.2,0,1 -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,38439,8994,31361,11116,220,3.6,9,9,16,6096,9,999999999,12,0.086,0,88,0.2,0,1 -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,84707,49128,32740,12587,290,2.1,9,9,16,6706,9,999999999,12,0.086,0,88,0.2,0,1 -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,113620,62922,26543,10776,0,0,9,9,16,6706,9,999999999,12,0.086,0,88,0.2,0,1 -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,99512,47737,40079,15310,360,2.1,9,9,16,6706,9,999999999,12,0.086,0,88,0.2,0,1 -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,120474,62885,25622,10450,0,0,9,9,16,6706,9,999999999,12,0.086,0,88,0.2,0,1 -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,108162,60333,28967,11630,110,4.6,9,9,16,6096,9,999999999,12,0.086,0,88,0.2,0,1 -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,55190,18073,38330,14040,80,3.6,9,9,16,6706,9,999999999,12,0.086,0,88,0.2,0,1 -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,29100,1979,27651,9998,60,4.6,9,9,16,2896,9,999999999,12,0.086,0,88,0.2,0,1 -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,11707,0,11804,4891,40,3.6,9,9,16,2743,9,999999999,12,0.086,0,88,0.2,0,1 -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,48,83300,324,1349,357,92,28,85,10222,1121,9479,2958,50,3.6,9,9,16,6096,9,999999999,12,0.086,0,88,0.2,0,1 -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,965,0,971,357,60,4.6,9,9,16,6096,9,999999999,12,0.086,0,88,0.2,0,1 -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,6096,9,999999999,12,0.086,0,88,0.2,0,1 -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,6096,9,999999999,12,0.086,0,88,0.2,0,1 -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,6096,9,999999999,12,0.086,0,88,0.2,0,1 -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,6096,9,999999999,12,0.086,0,88,0.2,0,1 -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,6096,9,999999999,13,0.086,0,88,0.2,0,1 -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,6096,9,999999999,13,0.087,0,88,0.2,0,1 -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,7620,9,999999999,13,0.087,0,88,0.2,0,1 -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,93,82900,0,0,293,0,0,0,0,0,0,0,210,3.6,6,5,14.4,77777,9,999999999,13,0.087,0,88,0.2,0,1 -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,89,83000,0,0,313,0,0,0,0,0,0,0,180,3.4,9,9,14.4,6096,9,999999999,13,0.087,0,88,0.2,0,1 -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,13,0.087,0,88,0.2,0,1 -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,3.9,93,83000,103,1247,304,0,0,0,0,0,0,0,140,2.1,9,9,12.8,6096,9,999999999,13,0.087,0,88,0.2,0,1 -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,12448,1002,11945,3650,150,4.6,9,9,16,6096,9,999999999,13,0.087,0,88,0.2,0,1 -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,32907,14396,23948,7729,170,3.1,9,9,16,6096,9,999999999,13,0.087,0,88,0.2,0,1 -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,30511,2517,28496,10421,140,4.6,10,10,16,6096,9,999999999,14,0.087,0,88,0.2,0,1 -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,66033,24981,42974,15351,150,3.6,10,10,16,6096,9,999999999,14,0.087,0,88,0.2,0,1 -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,39225,2413,36383,14106,130,5.7,7,7,16,6096,9,999999999,14,0.087,0,88,0.2,0,1 -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,49351,2122,47109,17300,130,1.5,9,9,16,975,9,999999999,14,0.087,0,88,0.2,0,1 -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,48584,2595,45746,16938,130,6.7,10,10,16,6096,9,999999999,14,0.087,0,88,0.2,0,1 -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,30165,882,29127,11714,100,10.8,10,10,16,6096,9,999999999,14,0.087,0,88,0.2,0,1 -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,63517,28111,34737,13115,140,11.8,9,9,16,6096,9,999999999,15,0.087,0,88,0.2,0,1 -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,43873,16139,31195,10915,140,11.3,10,10,16,6096,9,999999999,15,0.087,0,88,0.2,0,1 -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,6850,0,6907,3129,170,7.2,10,10,16,1981,9,999999999,15,0.087,0,88,0.2,0,1 -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,7.2,83,83200,328,1348,339,32,0,32,3157,0,3181,1354,160,8.8,10,10,16,1524,9,999999999,15,0.087,0,88,0.2,0,1 -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,1631,0,1050,330,100,9.8,10,10,16,1341,9,999999999,15,0.087,0,88,0.2,0,1 -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,15,0.087,0,88,0.2,0,1 -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,16,0.087,0,88,0.2,0,1 -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,2438,9,999999999,16,0.087,0,88,0.2,8.1,1 -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,1981,9,999999999,16,0.087,0,88,0.2,0,1 -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,1676,9,999999999,16,0.087,0,88,0.2,0,1 -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,457,9,999999999,16,0.087,0,88,0.2,0,1 -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,457,9,999999999,16,0.087,0,88,0.2,0,1 -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,1829,9,999999999,17,0.087,0,88,0.2,0,1 -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,93,82900,0,0,319,0,0,0,0,0,0,0,120,6.2,10,10,16,1433,9,999999999,17,0.087,0,88,0.2,0,1 -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,1981,9,999999999,17,0.087,0,88,0.2,0,1 -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,4572,9,999999999,17,0.087,0,88,0.2,0,1 -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,89,83300,364,1347,321,152,106,124,16584,5928,13589,3980,100,5.7,10,10,16,640,9,999999999,17,0.087,0,88,0.2,0,1 -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,33491,14200,24893,7949,120,10.3,10,10,16,335,9,999999999,17,0.087,0,88,0.2,0,1 -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,30464,1485,29371,10681,140,9.3,10,10,16,396,9,999999999,17,0.087,0,88,0.2,0,1 -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,36518,1507,35220,13366,140,9.3,10,10,16,518,9,999999999,17,0.087,0,88,0.2,0,1 -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,28012,0,28291,12624,140,8.2,10,10,9.6,488,9,999999999,17,0.087,0,88,0.2,0,1 -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,25296,415,24807,10165,130,11.3,10,10,16,549,9,999999999,17,0.087,0,88,0.2,0,1 -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,6.7,80,83500,1204,1347,339,369,18,353,43390,1512,41778,15834,130,10.3,10,10,16,579,9,999999999,17,0.087,0,88,0.2,0,1 -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,35238,948,34257,13421,140,10.8,10,10,16,640,9,999999999,17,0.087,0,88,0.2,0,1 -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,13157,0,13282,6520,110,8.2,9,9,14.4,1250,9,999999999,17,0.087,0,88,0.2,0,1 -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,29191,1924,27630,10048,110,9.8,10,10,16,427,9,999999999,17,0.087,0,88,0.2,0,1 -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,12207,0,12308,5083,120,10.8,10,10,16,366,9,999999999,17,0.087,0,88,0.2,0,1 -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,12269,3114,10319,3173,120,13.4,9,9,16,366,9,999999999,17,0.087,0,88,0.2,0,1 -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,386,0,389,159,130,10.3,10,10,16,244,9,999999999,17,0.087,0,88,0.2,0,1 -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,17,0.087,0,88,0.2,0,1 -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,17,0.087,0,88,0.2,0,1 -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,17,0.087,0,88,0.2,0,1 -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,17,0.087,0,88,0.2,0,1 -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,792,9,999999999,17,0.087,0,88,0.2,0,1 -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,671,9,999999999,17,0.088,0,88,0.2,0,1 -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,732,9,999999999,17,0.088,0,88,0.2,0,1 -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,17,0.088,0,88,0.2,0,1 -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,274,9,999999999,17,0.088,0,88,0.2,0,1 -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,17,0.088,0,88,0.2,0,1 -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,213,9,999999999,17,0.088,0,88,0.2,0,1 -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,5550,0,5592,2278,140,7.7,10,10,8,610,9,999999999,17,0.088,0,88,0.2,0,1 -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,7699,0,7763,3531,150,7.2,10,10,6.4,610,9,999999999,17,0.088,0,88,0.2,0,1 -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,89,83600,841,1347,321,111,0,111,11453,0,11557,5507,140,9.3,10,10,9.6,762,9,999999999,17,0.088,0,88,0.2,0,1 -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,6,93,83600,1022,1347,324,132,0,132,13819,0,13951,6842,130,6.7,10,10,16.1,1140,9,999999999,17,0.088,0,88,0.2,0,1 -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,16283,0,16445,8012,120,7.7,10,10,8,457,9,999999999,17,0.088,0,88,0.2,0,1 -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,18067,0,18250,8796,150,4.6,10,10,2.4,518,9,999999999,16,0.088,0,88,0.2,4.3,1 -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,16471,0,16637,8103,220,5.7,10,10,2.4,610,9,999999999,16,0.088,0,88,0.2,0,1 -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,6,93,83400,1135,1347,324,146,0,146,15425,0,15578,7631,220,5.7,10,10,2.4,600,9,999999999,16,0.088,0,88,0.2,4.6,1 -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,4,100,83400,1001,1347,308,126,0,126,13178,0,13303,6526,280,4.6,10,10,3.2,540,9,999999999,16,0.088,0,88,0.2,4.1,1 -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,4.4,96,83400,814,1347,313,100,0,100,10297,0,10389,4960,300,3.6,10,10,3.2,518,9,999999999,16,0.088,0,88,0.2,0,1 -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,4.4,96,83400,586,1347,313,69,0,69,6970,0,7028,3183,340,3.1,10,10,1.6,427,9,999999999,16,0.088,0,88,0.2,0,1 -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,96,83300,335,1347,316,37,0,37,3657,0,3684,1549,310,5.2,10,10,0.4,213,9,999999999,16,0.088,0,88,0.2,0,1 -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,5,93,83200,84,1133,318,18,81,13,2054,0,1485,457,310,5.1,10,10,5.2,210,9,999999999,16,0.088,0,88,0.2,0,1 -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,4.4,96,83400,0,0,313,0,0,0,0,0,0,0,270,4.1,10,10,11.2,122,9,999999999,15,0.088,0,88,0.2,0,1 -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,15,0.088,0,88,0.2,0,1 -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,97,83400,0,0,298,0,0,0,0,0,0,0,0,2,9,9,11.2,427,9,999999999,15,0.088,0,88,0.2,0,1 -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,15,0.088,0,88,0.2,0,1 -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,15,0.088,0,88,0.2,0,1 -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,77777,9,999999999,5,0.089,0,88,0.2,0,1 -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,77777,9,999999999,5,0.089,0,88,0.2,0,1 -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,77777,9,999999999,5,0.089,0,88,0.2,0,1 -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,-2.2,83,83700,0,0,246,0,0,0,0,0,0,0,260,1.5,0,0,32,77777,9,999999999,4,0.089,0,88,0.2,0,1 -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,77777,9,999999999,4,0.089,0,88,0.2,0,1 -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,5676,0,2388,734,200,2.1,0,0,96,77777,9,999999999,4,0.089,0,88,0.2,0,1 -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,28416,23828,5143,1824,0,0,0,0,96,77777,9,999999999,5,0.089,0,88,0.2,0,1 -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,48514,83197,9311,1409,310,2.1,0,0,96,77777,9,999999999,5,0.089,0,88,0.2,0,1 -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,69808,93022,11040,1915,230,2.1,0,0,96,77777,9,999999999,5,0.089,0,88,0.2,0,1 -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,-1.1,45,83600,1025,1346,286,825,966,89,87122,97959,12255,2644,310,1.5,0,0,96,77777,9,999999999,5,0.089,0,88,0.2,0,1 -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,99287,100638,12846,3663,20,3.1,0,0,96,77777,9,999999999,5,0.089,0,88,0.2,0,1 -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,105333,101696,13057,4580,50,3.1,0,0,80,77777,9,999999999,5,0.089,0,88,0.2,0,1 -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,104745,101532,13069,4499,100,3.6,0,0,80,77777,9,999999999,5,0.089,0,88,0.2,0,1 -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,28,83200,1137,1346,331,885,938,93,93409,95479,12502,3454,70,4.1,1,1,96,77777,9,999999999,6,0.089,0,88,0.2,0,1 -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,72824,41178,22046,8976,120,5.7,5,3,96,77777,9,999999999,6,0.089,0,88,0.2,0,1 -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,70633,51762,17130,6764,100,4.6,7,4,96,77777,9,999999999,6,0.089,0,88,0.2,0,1 -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,42454,36275,15899,5649,130,2.1,8,4,96,77777,9,999999999,6,0.089,0,88,0.2,0,1 -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,15942,3197,14501,3896,140,2.1,9,7,96,7620,9,999999999,6,0.089,0,88,0.2,0,1 -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,2132,0,1912,569,190,3.1,9,6,80,7620,9,999999999,6,0.089,0,88,0.2,0,1 -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,77777,9,999999999,6,0.089,0,88,0.2,0,1 -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,77777,9,999999999,7,0.089,0,88,0.2,0,1 -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,77777,9,999999999,7,0.089,0,88,0.2,0,1 -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,77777,9,999999999,7,0.089,0,88,0.2,0,1 -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,77777,9,999999999,7,0.089,0,88,0.2,0,1 -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,32,77777,9,999999999,7,0.089,0,88,0.2,0,1 -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,77777,9,999999999,7,0.089,0,88,0.2,0,1 -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,77777,9,999999999,7,0.089,0,88,0.2,0,1 -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,77777,9,999999999,8,0.089,0,88,0.2,0,1 -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,77777,9,999999999,8,0.089,0,88,0.2,0,1 -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,5021,0,3020,897,340,4.6,0,0,96,77777,9,999999999,8,0.089,0,88,0.2,0,1 -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,25865,22940,7008,2433,350,5.2,0,0,80,77777,9,999999999,8,0.089,0,88,0.2,0,1 -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,52292,44421,10344,3954,340,5.2,0,0,64,77777,9,999999999,8,0.089,0,88,0.2,0,1 -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,78279,54389,13275,5393,360,4.6,0,0,64,77777,9,999999999,8,0.089,0,88,0.2,0,1 -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,95618,55897,16081,6716,350,6.2,1,1,64,77777,9,999999999,8,0.089,0,88,0.2,0,1 -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,95387,92456,17313,4419,340,5.2,1,1,64,77777,9,999999999,8,0.089,0,88,0.2,0,1 -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,119526,61709,26960,10942,30,5.2,3,3,64,77777,9,999999999,8,0.089,0,88,0.2,0,1 -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,112325,57841,34281,13494,320,4.1,6,5,64,6706,9,999999999,8,0.089,0,88,0.2,0,1 -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,84669,40842,35378,13762,340,6.2,8,6,32,6706,9,999999999,8,0.089,0,88,0.2,0,1 -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,69861,35805,32961,12628,350,6.2,7,5,16,6706,9,999999999,8,0.089,0,88,0.2,0,1 -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,52634,31003,25407,9460,330,8.2,6,6,24,6706,9,999999999,8,0.089,0,88,0.2,0,1 -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,41370,34152,16641,5876,330,5.2,6,6,24,1280,9,999999999,8,0.089,0,88,0.2,0,1 -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,12873,7339,6394,2186,350,7.2,5,5,24,77777,9,999999999,8,0.089,0,88,0.2,0,1 -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,2746,0,2533,713,350,5.2,7,7,24,1372,9,999999999,8,0.089,0,88,0.2,0,1 -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,1067,9,999999999,8,0.089,0,88,0.2,0,1 -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,975,9,999999999,8,0.089,0,88,0.2,0,1 -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,-2.2,58,83100,0,0,306,0,0,0,0,0,0,0,20,5.2,10,10,32,1036,9,999999999,8,0.089,0,88,0.2,0,1 -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,671,9,999999999,8,0.089,0,88,0.2,0,1 -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,671,9,999999999,8,0.089,0,88,0.2,0,1 -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,640,9,999999999,8,0.089,0,88,0.2,0,1 -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,77777,9,999999999,8,0.089,0,88,0.2,0,1 -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,77777,9,999999999,8,0.089,0,88,0.2,0,1 -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,77777,9,999999999,8,0.089,0,88,0.2,0,1 -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,77777,9,999999999,8,0.089,0,88,0.2,0,1 -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,5007,0,3235,956,120,2.1,0,0,32,77777,9,999999999,8,0.089,0,88,0.2,0,1 -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,25259,22135,7552,2609,100,2.1,0,0,16,77777,9,999999999,8,0.089,0,88,0.2,0,1 -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.6,67,83000,630,1344,272,410,645,108,48340,40532,12777,4808,80,3.1,1,1,19.2,77777,9,999999999,8,0.089,0,88,0.2,0,1 -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,60,83000,852,1344,276,634,812,120,77081,53579,14642,5926,100,2.6,0,0,19.2,77777,9,999999999,8,0.089,0,88,0.2,0,1 -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,93449,53955,16776,6999,10,2.1,1,1,19.2,77777,9,999999999,8,0.089,0,88,0.2,0,1 -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,99121,51258,25488,10395,360,3.6,3,3,24,77777,9,999999999,8,0.089,0,88,0.2,0,1 -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,61996,14239,45150,16795,80,6.2,7,7,19.2,6706,9,999999999,8,0.089,0,88,0.2,0,1 -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,36,82700,1213,1344,345,421,84,346,49773,7186,41166,15654,80,6.7,9,9,24,3048,9,999999999,8,0.089,0,88,0.2,0,1 -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,51650,11467,38473,14710,90,7.7,9,7,24,7620,9,999999999,8,0.089,0,88,0.2,0,1 -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.6,34,82600,1008,1344,337,559,225,390,63546,21697,44628,15653,90,6.2,9,8,24,3353,9,999999999,9,0.089,0,88,0.2,0,1 -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,21780,0,21975,9226,90,6.7,10,10,24,3353,9,999999999,9,0.089,0,88,0.2,0,1 -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,36,82700,595,1344,345,154,63,126,17807,4124,14626,5302,60,5.2,9,9,24,3353,9,999999999,9,0.089,0,88,0.2,0,1 -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,40,82800,345,1344,337,109,34,100,12056,1658,11103,3402,60,5.2,9,9,32,3353,9,999999999,9,0.089,0,88,0.2,0,1 -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,43,82800,93,1199,332,20,0,20,1938,0,1951,657,90,3.1,9,9,32,3353,9,999999999,9,0.089,0,88,0.2,0,1 -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,50,83000,0,0,331,0,0,0,0,0,0,0,20,7.2,10,10,24,3353,9,999999999,9,0.089,0,88,0.2,0,1 -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,2438,9,999999999,9,0.089,0,88,0.2,0,1 -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,610,9,999999999,9,0.089,0,88,0.2,0.3,1 -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,2.8,86,83400,0,0,311,0,0,0,0,0,0,0,350,5.2,10,10,16,732,9,999999999,9,0.089,0,88,0.2,0,1 -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,3.3,89,83400,0,0,312,0,0,0,0,0,0,0,360,4.1,10,10,11.2,366,9,999999999,9,0.089,0,88,0.2,0,1 -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,305,9,999999999,9,0.089,0,88,0.2,0,1 -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,2.8,86,83400,0,0,311,0,0,0,0,0,0,0,60,3.6,10,10,16,244,9,999999999,9,0.089,0,88,0.2,0,1 -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,213,9,999999999,9,0.089,0,88,0.2,0,1 -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,10,0.089,0,88,0.2,0,1 -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,10,0.089,0,88,0.2,0,1 -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,1457,0,1467,570,350,2.1,10,10,19.2,244,9,999999999,10,0.089,0,88,0.2,0,1 -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,2.8,86,83500,386,1344,311,60,0,60,5963,0,6008,2453,40,2.6,10,10,19.2,274,9,999999999,9,0.089,0,88,0.2,0,1 -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,3.3,89,83500,634,1344,312,111,0,111,11265,0,11360,4931,20,2.6,10,10,19.2,244,9,999999999,9,0.089,0,88,0.2,0,1 -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,16338,0,16487,7500,40,2.1,10,10,19.2,274,9,999999999,9,0.089,0,88,0.2,0,1 -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,20460,0,20657,9609,10,2.1,10,10,24,396,9,999999999,9,0.089,0,88,0.2,0,1 -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,27882,0,28159,12588,70,3.1,10,10,32,518,9,999999999,9,0.089,0,88,0.2,0,1 -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,29614,0,29914,13296,100,4.6,10,10,32,610,9,999999999,9,0.089,0,88,0.2,0.3,1 -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,29501,0,29798,13247,80,6.2,10,10,24,762,9,999999999,9,0.089,0,88,0.2,1,1 -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,2.8,86,83600,1143,1344,311,259,0,259,27424,0,27695,12402,90,5.2,10,10,11.2,732,9,999999999,9,0.089,0,88,0.2,0.8,1 -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,23780,0,24006,10774,60,6.2,10,10,16,549,9,999999999,9,0.089,0,88,0.2,0,1 -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,18668,0,18836,8226,50,4.1,10,10,24,1372,9,999999999,9,0.089,0,88,0.2,0.5,1 -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,10524,0,10612,4560,60,3.1,10,10,16,244,9,999999999,9,0.089,0,88,0.2,0.5,1 -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,5250,0,5290,2135,20,2.6,10,10,16,244,9,999999999,9,0.089,0,88,0.2,0.5,1 -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,1065,0,1072,410,360,3.1,10,10,8,335,9,999999999,8,0.089,0,88,0.2,0,1 -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,335,9,999999999,8,0.089,0,88,0.2,0.5,1 -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,8,0.089,0,88,0.2,0,1 -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,8,0.089,0,88,0.2,1.8,1 -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,8,0.089,0,88,0.2,0.8,1 -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,8,0.089,0,88,0.2,0.3,1 -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,8,0.089,0,88,0.2,0.3,1 -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,396,9,999999999,8,0.089,0,88,0.2,0,1 -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,10,10,11.2,1006,9,999999999,8,0.089,0,88,0.2,0,1 -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,10,10,11.2,1097,9,999999999,8,0.089,0,88,0.2,0,1 -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,10,10,8,975,9,999999999,8,0.089,0,88,0.2,0,1 -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,1945,0,1958,733,190,1.5,10,10,8,488,9,999999999,8,0.089,0,88,0.2,0,1 -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,7464,0,7522,2950,100,3.1,10,10,16,457,9,999999999,8,0.089,0,88,0.2,0,1 -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,39446,7598,35902,9615,130,1.5,10,9,19.2,853,9,999999999,8,0.089,0,88,0.2,0,1 -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,57215,31133,30494,11117,250,2.1,9,9,48,610,9,999999999,8,0.089,0,88,0.2,0,1 -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,82641,46494,26851,10768,330,2.1,7,7,64,853,9,999999999,8,0.089,0,88,0.2,0,1 -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,105184,54701,22425,9242,20,3.1,4,4,80,77777,9,999999999,8,0.089,0,88,0.2,0,1 -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,97121,89888,16091,5594,330,2.6,2,2,96,77777,9,999999999,8,0.089,0,88,0.2,0,1 -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,102875,93779,19499,6141,20,3.1,3,3,96,77777,9,999999999,8,0.089,0,88,0.2,0,1 -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,93877,92755,15481,4083,40,3.6,2,2,80,77777,9,999999999,8,0.089,0,88,0.2,0,1 -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,38,84000,1012,1343,316,717,772,135,88533,51791,16735,6966,40,4.6,3,3,80,77777,9,999999999,8,0.089,0,88,0.2,0,1 -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,72623,51461,14699,5904,360,2.6,1,1,80,77777,9,999999999,8,0.089,0,88,0.2,0,1 -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,43297,76278,8194,1316,350,2.6,1,1,80,77777,9,999999999,8,0.089,0,88,0.2,0,1 -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,23365,19712,6525,2242,80,2.1,1,1,80,77777,9,999999999,8,0.089,0,88,0.2,0,1 -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,44,84000,100,1242,294,41,293,17,4661,0,1936,594,90,3.1,1,0,80,77777,9,999999999,8,0.089,0,88,0.2,0,1 -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,52,84000,0,0,290,0,0,0,0,0,0,0,110,2.6,1,1,80,77777,9,999999999,8,0.089,0,88,0.2,0,1 -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,52,84100,0,0,284,0,0,0,0,0,0,0,120,1.5,3,0,32,77777,9,999999999,8,0.089,0,88,0.2,0,1 -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,56,84100,0,0,285,0,0,0,0,0,0,0,160,4.1,2,1,32,77777,9,999999999,8,0.089,0,88,0.2,0,1 -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,77777,9,999999999,8,0.089,0,88,0.2,0,1 -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,77777,9,999999999,8,0.089,0,88,0.2,0,1 -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,62,83900,0,0,288,0,0,0,0,0,0,0,200,4.1,5,4,32,77777,9,999999999,8,0.089,0,88,0.2,0,1 -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,77777,9,999999999,8,0.089,0,88,0.2,0,1 -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,77777,9,999999999,8,0.089,0,88,0.2,0,1 -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,67,83800,0,0,275,0,0,0,0,0,0,0,210,2.1,8,1,32,77777,9,999999999,8,0.089,0,88,0.2,0,1 -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,73,83900,1,123,274,0,2,0,0,0,0,0,320,2.1,7,2,64,77777,9,999999999,8,0.089,0,88,0.2,0,1 -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,5245,0,3468,1040,190,2.1,5,1,96,77777,9,999999999,8,0.089,0,88,0.2,0,1 -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,25963,22685,8216,2837,180,2.6,2,1,96,77777,9,999999999,8,0.089,0,88,0.2,0,1 -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,50597,41150,10703,4112,90,1,4,1,96,77777,9,999999999,8,0.089,0,88,0.2,0,1 -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,65729,43321,21458,8405,0,0,7,2,96,77777,9,999999999,8,0.089,0,88,0.2,0,1 -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,92414,55078,28660,11383,190,2.1,9,4,96,77777,9,999999999,9,0.089,0,88,0.2,0,1 -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,98572,51091,27245,11029,140,3.1,7,2,96,77777,9,999999999,9,0.089,0,88,0.2,0,1 -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,115939,58998,26446,10747,40,1.5,6,3,80,77777,9,999999999,9,0.089,0,88,0.2,0,1 -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,-2.8,21,83500,1219,1342,353,691,355,368,81447,31300,43658,16383,120,4.1,7,7,96,3962,9,999999999,9,0.089,0,88,0.2,0,1 -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,-4.4,18,83400,1148,1342,364,642,105,551,72569,11425,62754,20118,130,3.6,10,9,96,3962,9,999999999,9,0.089,0,88,0.2,0,1 -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,-3.3,20,83400,1015,1342,365,530,218,364,60701,20466,41956,15107,130,2.6,10,9,96,6706,9,999999999,10,0.089,0,88,0.2,0,1 -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,18191,0,18354,8074,170,3.6,10,10,96,2896,9,999999999,10,0.089,0,88,0.2,0,1 -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,12064,0,12164,5108,320,5.2,10,10,96,2743,9,999999999,10,0.089,0,88,0.2,0,1 -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,32,83400,355,1342,363,59,0,59,5852,0,5897,2348,310,5.2,10,10,96,2743,9,999999999,10,0.089,0,88,0.2,0,1 -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,1551,0,1562,571,50,2.6,10,10,64,2591,9,999999999,10,0.089,0,88,0.2,0,1 -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.6,37,83500,0,0,356,0,0,0,0,0,0,0,50,2.6,10,10,32,2438,9,999999999,10,0.089,0,88,0.2,0,1 -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.6,37,83500,0,0,356,0,0,0,0,0,0,0,20,1.5,10,10,32,2134,9,999999999,11,0.089,0,88,0.2,0,1 -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,1676,9,999999999,11,0.089,0,88,0.2,0,1 -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,63,83500,0,0,345,0,0,0,0,0,0,0,130,5.2,10,10,32,1981,9,999999999,11,0.089,0,88,0.2,0,1 -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,3353,9,999999999,11,0.089,0,88,0.2,0,1 -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,74,83400,0,0,309,0,0,0,0,0,0,0,120,3.1,10,6,32,8534,9,999999999,11,0.089,0,88,0.2,0,1 -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,80,83400,0,0,300,0,0,0,0,0,0,0,130,3.1,9,4,32,77777,9,999999999,11,0.089,0,88,0.2,0,1 -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,80,83300,0,0,297,0,0,0,0,0,0,0,130,2.6,10,3,32,77777,9,999999999,12,0.089,0,88,0.2,0,1 -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,86,83300,0,0,295,0,0,0,0,0,0,0,150,1.5,10,4,32,77777,9,999999999,12,0.089,0,88,0.2,0,1 -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,93,83400,1,145,319,0,0,0,0,0,0,0,130,1.5,10,10,64,3353,9,999999999,12,0.089,0,88,0.2,0,1 -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,2623,0,2642,948,210,2.1,10,10,80,3353,9,999999999,12,0.089,0,88,0.2,0,1 -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,5.6,74,83500,398,1342,328,72,28,63,8385,1113,7356,2584,230,1.5,10,9,80,3353,9,999999999,12,0.089,0,88,0.2,0,1 -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,66,83500,644,1342,342,161,0,161,16345,0,16484,6647,310,2.6,10,10,64,3048,9,999999999,12,0.089,0,88,0.2,0,1 -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,59,83500,864,1342,341,395,95,333,44367,8788,37637,12863,360,3.1,10,9,64,3353,9,999999999,12,0.089,0,88,0.2,0,1 -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,65178,25746,38839,14507,120,2.6,9,7,64,7620,9,999999999,12,0.089,0,88,0.2,0,1 -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,89186,41901,36701,14232,360,2.6,8,5,64,7620,9,999999999,12,0.089,0,88,0.2,0,1 -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,114370,56652,25738,10495,20,3.1,5,2,64,77777,9,999999999,11,0.089,0,88,0.2,0,1 -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,81852,25995,53519,18913,330,2.6,8,6,72,7620,9,999999999,11,0.089,0,88,0.2,0,1 -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,85119,41636,28078,11330,70,3.1,7,5,96,7620,9,999999999,11,0.089,0,88,0.2,0,1 -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,2.2,31,83500,1017,1342,346,711,565,282,83012,46869,33115,12743,360,4.6,5,3,96,77777,9,999999999,11,0.089,0,88,0.2,0,1 -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,26,83500,832,1342,347,493,472,200,57451,36371,23420,8931,40,2.6,5,4,80,77777,9,999999999,11,0.089,0,88,0.2,0,1 -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,35078,23634,17960,6313,50,2.1,5,5,80,77777,9,999999999,11,0.089,0,88,0.2,0,1 -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,21096,16765,6856,2356,10,3.1,2,2,80,77777,9,999999999,11,0.089,0,88,0.2,0,1 -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,4351,0,2572,762,40,3.6,3,3,96,77777,9,999999999,11,0.089,0,88,0.2,0,1 -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,77777,9,999999999,11,0.089,0,88,0.2,0,1 -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,77777,9,999999999,11,0.089,0,88,0.2,0,1 -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,63,83800,0,0,299,0,0,0,0,0,0,0,190,1.5,0,0,32,77777,9,999999999,11,0.089,0,88,0.2,0,1 -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,77777,9,999999999,11,0.089,0,88,0.2,0,1 -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,77777,9,999999999,11,0.089,0,88,0.2,0,1 -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,77777,9,999999999,11,0.089,0,88,0.2,0,1 -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,77777,9,999999999,11,0.089,0,88,0.2,0,1 -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,77777,9,999999999,11,0.089,0,88,0.2,0,1 -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,77777,9,999999999,10,0.089,0,88,0.2,0,1 -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,77777,9,999999999,10,0.089,0,88,0.2,0,1 -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,6407,0,3380,1036,200,2.6,3,1,112,77777,9,999999999,10,0.089,0,88,0.2,0,1 -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,27134,23672,8337,2891,210,3.6,2,1,112,77777,9,999999999,10,0.089,0,88,0.2,0,1 -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,54817,44431,9485,3678,210,5.7,1,0,112,77777,9,999999999,10,0.089,0,88,0.2,0,1 -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,66062,83136,13008,2100,180,5.2,1,1,112,77777,9,999999999,10,0.089,0,88,0.2,0,1 -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,85681,91850,14899,3055,210,2.6,1,0,112,77777,9,999999999,10,0.089,0,88,0.2,0,1 -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,95717,92998,15399,4411,140,3.6,2,1,112,77777,9,999999999,10,0.089,0,88,0.2,0,1 -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,102933,93849,18238,6302,170,4.6,3,0,112,77777,9,999999999,10,0.089,0,88,0.2,0,1 -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.6,18,83300,1223,1341,363,904,770,201,111581,55277,24934,10190,130,5.2,5,2,112,77777,9,999999999,10,0.089,0,88,0.2,0,1 -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,19,83200,1151,1341,362,811,742,173,100253,51781,21484,8880,140,3.1,8,1,112,77777,9,999999999,10,0.089,0,88,0.2,0,1 -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,92315,54240,18244,7569,130,4.6,7,1,112,77777,9,999999999,10,0.089,0,88,0.2,0,1 -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,69930,48696,16284,6511,150,8.2,8,1,112,77777,9,999999999,10,0.089,0,88,0.2,0,1 -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,47695,40873,15421,5599,150,7.7,7,1,96,77777,9,999999999,10,0.089,0,88,0.2,0,1 -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.6,20,83000,362,1341,360,190,378,88,21349,17394,9923,3210,150,12.4,6,1,80,77777,9,999999999,10,0.089,0,88,0.2,0,1 -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,4209,0,2887,840,170,10.8,6,2,88,77777,9,999999999,10,0.089,0,88,0.2,0,1 -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,24,83000,0,0,349,0,0,0,0,0,0,0,170,7.2,5,3,48,77777,9,999999999,10,0.089,0,88,0.2,0,1 -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,1.7,30,83100,0,0,342,0,0,0,0,0,0,0,190,5.7,2,2,32,77777,9,999999999,10,0.089,0,88,0.2,0,1 -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,77777,9,999999999,10,0.089,0,88,0.2,0,1 -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,77777,9,999999999,10,0.089,0,88,0.2,0,1 -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,77777,9,999999999,10,0.089,0,88,0.2,0,1 -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,77777,9,999999999,10,0.09,0,88,0.2,0,1 -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,77777,9,999999999,10,0.09,0,88,0.2,0,1 -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,2.2,42,82800,0,0,323,0,0,0,0,0,0,0,170,5.7,6,3,32,77777,9,999999999,10,0.09,0,88,0.2,0,1 -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,77777,9,999999999,10,0.09,0,88,0.2,0,1 -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,7620,9,999999999,10,0.09,0,88,0.2,0,1 -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,2.8,44,82800,152,1341,336,59,73,50,6373,121,5420,1457,160,4.1,9,7,96,4877,9,999999999,10,0.09,0,88,0.2,0,1 -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,18205,7126,14184,4369,140,4.1,9,8,96,4877,9,999999999,10,0.09,0,88,0.2,0,1 -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,3.9,35,82800,651,1341,361,200,190,108,23655,11725,12818,4880,170,4.1,9,7,96,4267,9,999999999,10,0.09,0,88,0.2,0,1 -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,49035,22048,28587,10690,340,3.1,9,8,80,4572,9,999999999,10,0.09,0,88,0.2,0,1 -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,59302,21500,36031,13757,350,2.6,9,7,96,4572,9,999999999,10,0.09,0,88,0.2,0,1 -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,70280,19112,50515,17983,190,8.2,9,8,96,7620,9,999999999,10,0.09,0,88,0.2,0,1 -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,93858,41224,42645,16119,190,9.3,9,7,96,7620,9,999999999,10,0.09,0,88,0.2,0,1 -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,79099,21692,56411,19556,190,10.3,9,8,96,7620,9,999999999,10,0.09,0,88,0.2,0,1 -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,-3.3,15,82600,1153,1341,391,316,37,283,37680,3018,33940,13320,160,7.7,10,9,96,7620,9,999999999,10,0.09,0,88,0.2,0,1 -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,59450,23217,36211,13659,170,10.3,9,8,96,7620,9,999999999,10,0.09,0,88,0.2,0,1 -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,55258,35581,17534,6965,160,9.8,9,5,80,6706,9,999999999,10,0.09,0,88,0.2,0,1 -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,34164,24139,15231,5547,170,10.8,8,6,80,7010,9,999999999,10,0.09,0,88,0.2,0,1 -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,12,82500,365,1341,380,157,280,81,17802,12743,9214,3038,180,9.8,9,7,80,5486,9,999999999,10,0.09,0,88,0.2,0,1 -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,-4.4,13,82600,114,1329,371,30,49,26,3336,0,2899,850,180,5.7,9,6,88,5182,9,999999999,10,0.09,0,88,0.2,0,1 -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,7620,9,999999999,10,0.09,0,88,0.2,0,1 -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,7620,9,999999999,10,0.09,0,88,0.2,0,1 -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,-2.8,21,82700,0,0,343,0,0,0,0,0,0,0,170,5.2,6,4,32,7620,9,999999999,10,0.09,0,88,0.2,0,1 -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,77777,9,999999999,10,0.09,0,88,0.2,0,1 -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,77777,9,999999999,10,0.09,0,88,0.2,0,1 -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,77777,9,999999999,10,0.09,0,88,0.2,0,1 -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,77777,9,999999999,10,0.09,0,88,0.2,0,1 -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,-3.3,27,82800,0,0,314,0,0,0,0,0,0,0,130,3.6,2,2,32,77777,9,999999999,10,0.09,0,88,0.2,0,1 -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,77777,9,999999999,10,0.09,0,88,0.2,0,1 -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,77777,9,999999999,10,0.09,0,88,0.2,0,1 -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,-1.7,31,82900,156,1340,322,44,102,32,4951,0,3609,1107,160,5.2,8,4,96,7620,9,999999999,10,0.09,0,88,0.2,0,1 -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,27329,24800,9751,3318,180,3.1,7,2,96,77777,9,999999999,10,0.09,0,88,0.2,0,1 -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,42827,30814,19848,7064,200,3.1,8,3,96,77777,9,999999999,10,0.09,0,88,0.2,0,1 -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,73732,50449,18087,7252,160,3.6,5,2,96,77777,9,999999999,10,0.09,0,88,0.2,0,1 -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,82978,46391,23004,9412,250,2.6,5,3,96,77777,9,999999999,10,0.09,0,88,0.2,0,1 -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,109435,57359,19950,8266,220,8.2,4,2,96,77777,9,999999999,10,0.09,0,88,0.2,0,1 -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,113722,55677,24499,10028,150,11.3,4,3,96,77777,9,999999999,10,0.09,0,88,0.2,0,1 -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,15,82800,1227,1340,384,969,938,110,101701,95525,14356,5326,150,12.4,2,2,96,77777,9,999999999,10,0.09,0,88,0.2,0,1 -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,15,82800,1155,1340,387,895,900,119,93757,91489,15687,4289,150,10.8,3,3,96,77777,9,999999999,10,0.09,0,88,0.2,0,1 -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,15,82700,1023,1340,384,704,670,193,84788,49241,23356,9503,160,11.3,4,2,96,77777,9,999999999,10,0.09,0,88,0.2,0,1 -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,-3.9,10,82700,839,1340,388,444,481,142,53254,33676,17100,6814,180,7.2,4,3,88,77777,9,999999999,10,0.09,0,88,0.2,0,1 -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,46318,39694,11885,4471,170,7.2,7,2,80,77777,9,999999999,10,0.09,0,88,0.2,0,1 -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,21332,16943,10253,3316,160,10.3,9,3,80,77777,9,999999999,10,0.09,0,88,0.2,0,1 -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,3.3,24,82700,117,1329,368,39,127,28,4314,0,3105,905,140,5.7,7,2,72,77777,9,999999999,10,0.09,0,88,0.2,0,1 -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,77777,9,999999999,10,0.09,0,88,0.2,0,1 -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,77777,9,999999999,10,0.09,0,88,0.2,0,1 -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,11.1,57,83100,0,0,342,0,0,0,0,0,0,0,150,11.3,0,0,16,77777,9,999999999,10,0.09,0,88,0.2,0,1 -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,12.2,61,83100,0,0,344,0,0,0,0,0,0,0,170,10.8,0,0,16,77777,9,999999999,10,0.09,0,88,0.2,0,1 -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,10,0.09,0,88,0.2,0,1 -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,10,0.09,0,88,0.2,0,1 -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,10,0.09,0,88,0.2,0,1 -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,63,83200,0,0,328,0,0,0,0,0,0,0,170,5.2,0,0,19.2,77777,9,999999999,10,0.09,0,88,0.2,0,1 -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,10,0.09,0,88,0.2,0,1 -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,10,72,83300,3,234,332,0,1,0,0,0,0,0,180,3.6,3,3,32,77777,9,999999999,10,0.09,0,88,0.2,0,1 -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,6703,0,4629,1350,190,5.2,5,2,80,77777,9,999999999,10,0.09,0,88,0.2,0,1 -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,25051,20236,8991,3115,190,5.2,5,1,96,77777,9,999999999,10,0.09,0,88,0.2,0,1 -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,50669,39466,13038,4976,150,4.1,4,1,96,77777,9,999999999,10,0.09,0,88,0.2,0,1 -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,31,83400,875,1339,348,652,791,135,78784,52310,16377,6639,180,3.6,3,0,96,77777,9,999999999,10,0.09,0,88,0.2,0,1 -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,1.7,22,83300,1051,1339,362,691,700,142,85475,46903,17637,7361,170,5.7,2,1,96,77777,9,999999999,10,0.09,0,88,0.2,0,1 -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,96983,91335,18681,5042,180,7.7,0,0,112,77777,9,999999999,9,0.09,0,88,0.2,0,1 -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,111505,55516,24430,9987,170,7.2,6,1,112,77777,9,999999999,9,0.09,0,88,0.2,0,1 -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,110015,53992,21728,8954,150,7.2,3,1,112,77777,9,999999999,9,0.09,0,88,0.2,0,1 -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,10,83000,1157,1339,374,873,818,166,108465,57470,20717,8572,160,7.2,2,2,112,77777,9,999999999,9,0.09,0,88,0.2,0,1 -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,86804,51560,24405,9875,160,10.3,4,4,112,77777,9,999999999,9,0.09,0,88,0.2,0,1 -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,67876,47751,20989,8175,160,7.7,4,4,112,77777,9,999999999,9,0.09,0,88,0.2,0,1 -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,46113,39333,14611,5373,150,5.7,3,3,112,77777,9,999999999,9,0.09,0,88,0.2,0,1 -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,20580,16762,8601,2890,160,5.2,2,2,96,77777,9,999999999,9,0.09,0,88,0.2,0,1 -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,4127,0,3019,892,150,6.2,3,3,64,77777,9,999999999,9,0.09,0,88,0.2,0,1 -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,77777,9,999999999,9,0.09,0,88,0.2,0,1 -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,77777,9,999999999,8,0.09,0,88,0.2,0,1 -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,77777,9,999999999,8,0.09,0,88,0.2,0,1 -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,77777,9,999999999,8,0.09,0,88,0.2,0,1 -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,77777,9,999999999,8,0.09,0,88,0.2,0,1 -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,77777,9,999999999,8,0.09,0,88,0.2,0,1 -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,77777,9,999999999,8,0.09,0,88,0.2,0,1 -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,77777,9,999999999,8,0.09,0,88,0.2,0,1 -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,-2.2,41,83300,0,0,290,0,0,0,0,0,0,0,70,3.6,1,1,32,77777,9,999999999,8,0.09,0,88,0.2,0,1 -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,77777,9,999999999,8,0.09,0,88,0.2,0,1 -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,8902,35542,3599,468,300,1.5,0,0,80,77777,9,999999999,8,0.09,0,88,0.2,0,1 -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,29921,71342,5849,948,70,1.5,0,0,80,77777,9,999999999,7,0.09,0,88,0.2,0,1 -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,49762,82899,7695,1344,150,3.1,1,1,96,77777,9,999999999,7,0.09,0,88,0.2,0,1 -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,71227,93127,9076,1798,340,2.1,1,1,96,77777,9,999999999,7,0.09,0,88,0.2,0,1 -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,89738,99783,10096,2491,270,2.6,0,0,96,77777,9,999999999,7,0.09,0,88,0.2,0,1 -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,101234,101799,10615,3493,260,4.1,0,0,112,77777,9,999999999,7,0.09,0,88,0.2,0,1 -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,104940,100776,10608,4366,310,2.6,1,1,112,77777,9,999999999,7,0.09,0,88,0.2,0,1 -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,-11.7,10,83500,1230,1339,316,1013,1013,82,106275,102526,10869,4350,220,7.2,0,0,96,77777,9,999999999,7,0.09,0,88,0.2,0,1 -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,99599,101488,10520,3298,240,6.2,0,0,112,77777,9,999999999,7,0.09,0,88,0.2,0,1 -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,87125,99175,10010,2360,260,5.7,0,0,112,77777,9,999999999,7,0.09,0,88,0.2,0,1 -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,69838,94646,8983,1724,290,5.2,0,0,112,77777,9,999999999,6,0.09,0,88,0.2,0,1 -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,48790,85807,7586,1293,210,5.2,0,0,112,77777,9,999999999,6,0.09,0,88,0.2,0,1 -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,-11.7,10,83500,375,1339,316,245,752,35,26145,66936,5563,882,50,3.6,0,0,112,77777,9,999999999,6,0.09,0,88,0.2,0,1 -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,6167,27287,2958,363,50,4.1,0,0,112,77777,9,999999999,6,0.09,0,88,0.2,0,1 -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,77777,9,999999999,6,0.09,0,88,0.2,0,1 -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,77777,9,999999999,6,0.09,0,88,0.2,0,1 -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,77777,9,999999999,6,0.09,0,88,0.2,0,1 -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,-8.3,25,83700,0,0,278,0,0,0,0,0,0,0,190,2.1,0,0,32,77777,9,999999999,6,0.09,0,88,0.2,0,1 -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,77777,9,999999999,6,0.09,0,88,0.2,0,1 -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,32,77777,9,999999999,6,0.09,0,88,0.2,0,1 -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,77777,9,999999999,5,0.09,0,88,0.2,0,1 -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,77777,9,999999999,5,0.09,0,88,0.2,0,1 -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,32,77777,9,999999999,5,0.09,0,88,0.2,0,1 -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,6,279,264,1,32,0,0,0,0,0,160,2.1,1,1,48,77777,9,999999999,5,0.09,0,88,0.2,0,1 -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,9364,0,2895,930,170,4.1,1,1,80,77777,9,999999999,5,0.09,0,88,0.2,0,1 -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,31334,28213,5773,2083,170,4.1,1,1,96,77777,9,999999999,5,0.09,0,88,0.2,0,1 -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,54411,45903,12663,4843,220,4.1,1,1,96,77777,9,999999999,5,0.09,0,88,0.2,0,1 -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,70223,91264,9338,1837,230,2.1,1,1,112,77777,9,999999999,6,0.09,0,88,0.2,0,1 -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,85515,94356,10220,2525,140,5.2,1,1,112,77777,9,999999999,6,0.09,0,88,0.2,0,1 -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,93898,93617,10612,3518,180,4.1,1,1,112,77777,9,999999999,6,0.09,0,88,0.2,0,1 -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,-5.6,12,83400,1237,1338,357,969,882,153,100142,89170,19496,6981,170,4.1,2,2,112,77777,9,999999999,6,0.09,0,88,0.2,0,1 -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,98530,91164,15177,5730,150,6.2,5,1,112,77777,9,999999999,6,0.09,0,88,0.2,0,1 -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,104770,55985,26817,10867,180,7.2,6,4,112,8534,9,999999999,6,0.09,0,88,0.2,0,1 -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,79244,41902,37703,14116,160,6.2,8,6,112,8534,9,999999999,6,0.09,0,88,0.2,0,1 -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,42414,9209,35634,12268,140,8.2,10,9,96,6096,9,999999999,6,0.09,0,88,0.2,0,1 -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,22075,5440,18151,6447,160,13.9,9,8,64,5182,9,999999999,6,0.09,0,88,0.2,0,1 -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,15894,7766,11122,3562,170,12.4,9,7,96,5182,9,999999999,7,0.09,0,88,0.2,0,1 -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,6011,0,3947,1102,190,8.2,6,3,80,77777,9,999999999,7,0.09,0,88,0.2,0,1 -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.6,25,83000,0,56,340,0,4,0,0,0,0,0,170,5.2,5,2,48,77777,9,999999999,7,0.09,0,88,0.2,0,1 -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,77777,9,999999999,7,0.09,0,88,0.2,0,1 -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,77777,9,999999999,7,0.09,0,88,0.2,0,1 -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,77777,9,999999999,7,0.09,0,88,0.2,0,1 -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,77777,9,999999999,7,0.09,0,88,0.2,0,1 -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,77777,9,999999999,7,0.09,0,88,0.2,0,1 -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,77777,9,999999999,8,0.09,0,88,0.2,0,1 -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,77777,9,999999999,8,0.09,0,88,0.2,0,1 -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,77777,9,999999999,8,0.09,0,88,0.2,0,1 -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,62,82900,5,301,283,0,13,0,0,0,0,0,160,1.5,2,2,48,77777,9,999999999,8,0.09,0,88,0.2,0,1 -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,7493,287,4974,1454,150,1.5,8,3,96,77777,9,999999999,8,0.09,0,88,0.2,0,1 -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,22764,12086,16604,4928,190,4.1,9,5,96,7620,9,999999999,8,0.09,0,88,0.2,0,1 -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,28,82900,665,1337,344,351,326,189,39891,25163,21583,7597,210,4.1,9,5,96,7620,9,999999999,8,0.09,0,88,0.2,0,1 -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,59991,36494,21439,8474,230,3.1,9,6,96,7620,9,999999999,8,0.09,0,88,0.2,0,1 -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,62277,19859,43217,15723,230,5.2,9,6,96,7620,9,999999999,8,0.09,0,88,0.2,0,1 -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,102767,53201,28242,11389,210,6.7,10,4,96,77777,9,999999999,8,0.09,0,88,0.2,0,1 -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,109400,54176,30413,12180,210,8.8,10,6,96,8534,9,999999999,8,0.09,0,88,0.2,0,1 -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,82562,32127,43276,16300,190,7.2,9,7,96,8534,9,999999999,8,0.09,0,88,0.2,0,1 -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,73637,26995,43950,16306,200,9.8,9,8,32,7620,9,999999999,8,0.09,0,88,0.2,0,1 -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,86348,50811,30881,12086,220,7.2,9,5,96,7620,9,999999999,8,0.09,0,88,0.2,0,1 -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,65978,45659,22016,8540,220,4.1,8,4,80,77777,9,999999999,8,0.09,0,88,0.2,0,1 -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,45071,37559,13664,5093,170,8.2,7,2,80,77777,9,999999999,8,0.09,0,88,0.2,0,1 -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,23141,19436,11446,3650,140,7.2,6,3,80,77777,9,999999999,8,0.09,0,88,0.2,0,1 -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,5331,0,3341,990,150,6.7,5,2,80,77777,9,999999999,8,0.09,0,88,0.2,0,1 -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,77777,9,999999999,8,0.09,0,88,0.2,0,1 -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,77777,9,999999999,8,0.09,0,88,0.2,0,1 -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,77777,9,999999999,8,0.09,0,88,0.2,0,1 -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,6706,9,999999999,8,0.09,0,88,0.2,0,1 -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,6706,9,999999999,8,0.09,0,88,0.2,0,1 -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,77777,9,999999999,8,0.09,0,88,0.2,0,1 -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,7620,9,999999999,8,0.09,0,88,0.2,0,1 -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,4,3,32,77777,9,999999999,8,0.09,0,88,0.2,0,1 -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,77777,9,999999999,8,0.09,0,88,0.2,0,1 -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,77777,9,999999999,8,0.09,0,88,0.2,0,1 -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,8930,0,3327,1062,20,3.1,1,1,96,77777,9,999999999,9,0.09,0,88,0.2,0,1 -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,27452,23912,9679,3346,10,6.2,3,3,96,77777,9,999999999,9,0.09,0,88,0.2,0,1 -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,37905,11172,31388,9641,360,8.2,6,6,96,1402,9,999999999,9,0.09,0,88,0.2,0,1 -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,49,82800,884,1337,364,194,0,194,20101,0,20286,9007,10,6.2,10,10,80,1250,9,999999999,9,0.09,0,88,0.2,0,1 -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,24895,0,25137,11361,360,7.7,10,10,64,1036,9,999999999,10,0.09,0,88,0.2,0,1 -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,28305,0,28590,12804,10,9.3,10,10,48,762,9,999999999,10,0.09,0,88,0.2,0,1 -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,8.3,64,82800,1240,1337,365,281,0,281,29934,0,30241,13471,350,7.2,10,10,32,792,9,999999999,10,0.09,0,88,0.2,1,1 -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,4.4,68,82900,1234,1337,336,280,0,280,29866,0,30170,13421,250,7.2,10,10,9.6,884,9,999999999,10,0.09,0,88,0.2,3.8,1 -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,27878,0,28156,12615,200,6.2,10,10,6.4,884,9,999999999,11,0.09,0,88,0.2,2.8,1 -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,74,82900,1033,1337,334,231,0,231,24230,0,24463,11038,290,5.7,10,10,96,2438,9,999999999,11,0.09,0,88,0.2,0,1 -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,50660,27343,23460,9049,260,7.7,7,6,96,7620,9,999999999,11,0.09,0,88,0.2,0,1 -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,43498,32880,18234,6509,230,4.1,5,4,80,77777,9,999999999,11,0.09,0,88,0.2,0,1 -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,3.9,47,82900,384,1337,330,143,212,82,16255,9510,9352,3139,310,2.1,5,5,96,77777,9,999999999,12,0.09,0,88,0.2,0,1 -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,4635,0,3652,1067,40,5.7,6,4,80,7620,9,999999999,12,0.09,0,88,0.2,0,1 -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,3962,9,999999999,12,0.09,0,88,0.2,0,1 -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,1981,9,999999999,12,0.09,0,88,0.2,0,1 -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,1006,9,999999999,13,0.09,0,88,0.2,0,1 -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,975,9,999999999,13,0.09,0,88,0.2,0,1 -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,6.7,80,83300,0,0,339,0,0,0,0,0,0,0,290,3.1,10,10,32,671,9,999999999,13,0.09,0,88,0.2,3.3,1 -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,518,9,999999999,14,0.091,0,88,0.2,0.3,1 -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,671,9,999999999,14,0.091,0,88,0.2,0.3,1 -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,14,0.091,0,88,0.2,0,1 -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,14,0.091,0,88,0.2,0.8,1 -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,15,0.091,0,88,0.2,0.3,1 -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,2338,0,2355,913,290,3.6,10,10,9.6,427,9,999999999,14,0.091,0,88,0.2,0.3,1 -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,6374,0,6425,2690,320,3.6,10,10,8,305,9,999999999,14,0.091,0,88,0.2,1,1 -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,9661,0,9744,4432,340,6.2,10,10,9.6,152,9,999999999,14,0.091,0,88,0.2,0.8,1 -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,19785,0,19967,8908,350,4.1,10,10,11.2,457,9,999999999,14,0.091,0,88,0.2,0,1 -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,24696,0,24936,11292,340,3.1,10,10,32,1219,9,999999999,14,0.091,0,88,0.2,0,1 -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,57472,16096,36198,14124,330,2.1,9,9,48,7010,9,999999999,14,0.091,0,88,0.2,0,1 -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,29849,0,30154,13438,300,3.1,10,10,48,1981,9,999999999,14,0.091,0,88,0.2,0,1 -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,104911,47884,39576,15260,310,3.1,9,7,64,1524,9,999999999,14,0.091,0,88,0.2,0,1 -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,6.7,58,83500,1165,1336,353,401,149,271,47938,11423,32584,12920,10,3.6,9,9,80,1036,9,999999999,14,0.091,0,88,0.2,0,1 -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,41631,15296,20543,8491,360,3.1,7,7,64,2134,9,999999999,14,0.091,0,88,0.2,0,1 -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,53599,31808,18102,7230,350,5.2,6,4,64,7620,9,999999999,14,0.091,0,88,0.2,0,1 -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,45334,34800,17592,6344,20,6.2,9,6,80,2743,9,999999999,14,0.091,0,88,0.2,0,1 -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,11934,6019,5920,2106,30,6.7,9,8,48,2743,9,999999999,14,0.091,0,88,0.2,0,1 -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,4061,0,3963,1141,360,3.6,9,6,48,2743,9,999999999,14,0.091,0,88,0.2,0,1 -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,1219,9,999999999,14,0.091,0,88,0.2,0,1 -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,1372,9,999999999,14,0.091,0,88,0.2,0,1 -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,13,0.091,0,88,0.2,0,1 -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,1097,9,999999999,13,0.091,0,88,0.2,0,1 -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,77777,9,999999999,13,0.091,0,88,0.2,0,1 -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,10,9,32,1494,9,999999999,13,0.091,0,88,0.2,0,1 -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,10,9,24,1402,9,999999999,13,0.091,0,88,0.2,0,1 -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,77777,9,999999999,13,0.091,0,88,0.2,0,1 -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,77777,9,999999999,13,0.091,0,88,0.2,0,1 -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,8,8,40,1372,9,999999999,13,0.091,0,88,0.2,0,1 -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,8349,1300,7200,1865,80,2.1,6,6,48,1372,9,999999999,13,0.091,0,88,0.2,0,1 -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,31467,26550,6877,2480,0,0,1,0,64,77777,9,999999999,13,0.091,0,88,0.2,0,1 -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,54089,41583,11092,4317,280,1.5,2,2,64,77777,9,999999999,13,0.091,0,88,0.2,0,1 -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,78299,50461,16524,6727,310,2.6,3,3,80,77777,9,999999999,13,0.091,0,88,0.2,0,1 -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,58409,20374,35726,13736,0,0,7,7,64,975,9,999999999,13,0.091,0,88,0.2,0,1 -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,5.6,53,83700,1183,1336,335,884,644,313,104830,52075,37345,14478,30,2.1,6,6,32,975,9,999999999,13,0.091,0,88,0.2,0,1 -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,115913,54367,23121,9513,60,2.6,5,5,24,77777,9,999999999,12,0.091,0,88,0.2,0,1 -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,100869,45956,34831,13730,50,4.1,5,5,19.2,77777,9,999999999,12,0.091,0,88,0.2,0,1 -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,78565,33771,33386,13185,50,3.1,5,5,19.2,77777,9,999999999,12,0.091,0,88,0.2,0,1 -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,87013,48549,29480,11687,30,2.6,6,6,24,1676,9,999999999,12,0.091,0,88,0.2,0,1 -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,39,83500,855,1336,350,577,569,212,67129,43539,24789,9487,70,2.6,5,4,32,77777,9,999999999,12,0.091,0,88,0.2,0,1 -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,28167,9597,21512,7401,40,3.1,8,8,24,1981,9,999999999,12,0.091,0,88,0.2,0,1 -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,8364,1157,7338,2566,340,3.1,9,9,24,2134,9,999999999,12,0.091,0,88,0.2,0,1 -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,3574,0,3359,1016,10,3.1,9,8,24,1981,9,999999999,12,0.091,0,88,0.2,0,1 -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,1981,9,999999999,12,0.091,0,88,0.2,0,1 -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,1981,9,999999999,12,0.091,0,88,0.2,0,1 -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,1829,9,999999999,12,0.091,0,88,0.2,0,1 -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,1981,9,999999999,12,0.091,0,88,0.2,0,1 -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,1981,9,999999999,12,0.091,0,88,0.2,0,1 -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,1981,9,999999999,12,0.091,0,88,0.2,0,1 -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,1676,9,999999999,11,0.091,0,88,0.2,0,1 -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,1676,9,999999999,11,0.091,0,88,0.2,0,1 -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,1676,9,999999999,11,0.091,0,88,0.2,0,1 -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,1829,9,999999999,11,0.091,0,88,0.2,0,1 -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,83,83800,184,1335,327,52,34,47,5732,69,5197,1547,130,5.2,6,5,64,7620,9,999999999,11,0.091,0,88,0.2,0,1 -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,9.4,69,83800,433,1335,328,225,324,119,25111,18026,13336,4354,130,4.1,4,2,64,77777,9,999999999,11,0.091,0,88,0.2,0,1 -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,49300,34955,23131,8077,140,4.1,8,3,64,77777,9,999999999,11,0.091,0,88,0.2,0,1 -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,70730,42528,31244,11583,150,6.2,10,4,64,77777,9,999999999,12,0.091,0,88,0.2,0,1 -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,79261,39135,31981,12593,160,4.1,8,3,64,77777,9,999999999,12,0.091,0,88,0.2,0,1 -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,98366,46327,36531,14241,160,4.1,10,4,96,77777,9,999999999,12,0.091,0,88,0.2,0,1 -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,100598,41305,51476,18580,130,3.1,10,3,96,77777,9,999999999,12,0.091,0,88,0.2,0,1 -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,108962,51200,34601,13660,140,6.7,10,4,96,77777,9,999999999,12,0.091,0,88,0.2,0,1 -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,7.2,32,83400,1168,1335,377,836,620,293,99379,48670,35039,13734,160,12.9,9,3,96,77777,9,999999999,12,0.091,0,88,0.2,0,1 -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,78489,40977,30027,11877,130,11.3,10,2,96,77777,9,999999999,12,0.091,0,88,0.2,0,1 -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,62808,37781,24198,9331,160,10.3,10,3,64,77777,9,999999999,12,0.091,0,88,0.2,0,1 -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,48973,37688,18949,6763,140,6.2,10,0,56,77777,9,999999999,12,0.091,0,88,0.2,0,1 -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,24363,18887,11839,3811,130,7.7,9,0,56,77777,9,999999999,12,0.091,0,88,0.2,0,1 -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,5545,0,4472,1264,150,6.7,7,1,72,77777,9,999999999,12,0.091,0,88,0.2,0,1 -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,77777,9,999999999,13,0.091,0,88,0.2,0,1 -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,77777,9,999999999,13,0.091,0,88,0.2,0,1 -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,13,0.091,0,88,0.2,0,1 -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,77777,9,999999999,13,0.091,0,88,0.2,0,1 -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,13,0.091,0,88,0.2,0,1 -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,13,0.091,0,88,0.2,0,1 -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,13,0.091,0,88,0.2,0,1 -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,77777,9,999999999,13,0.091,0,88,0.2,0,1 -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,7620,9,999999999,13,0.091,0,88,0.2,0,1 -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,7620,9,999999999,13,0.091,0,88,0.2,0,1 -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,9414,0,4382,1365,180,3.6,2,2,48,77777,9,999999999,13,0.091,0,88,0.2,0,1 -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,32163,25336,6542,2378,190,4.1,1,1,64,77777,9,999999999,13,0.091,0,88,0.2,0,1 -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,51,83800,677,1335,350,460,763,73,56220,40631,8945,3526,200,4.6,1,1,64,77777,9,999999999,13,0.091,0,88,0.2,0,1 -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,72491,89434,12828,2187,170,3.6,0,0,64,77777,9,999999999,13,0.091,0,88,0.2,0,1 -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,97513,54003,21893,9036,160,6.2,2,2,96,77777,9,999999999,13,0.091,0,88,0.2,0,1 -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,93686,89679,14342,4601,160,7.2,1,1,96,77777,9,999999999,13,0.091,0,88,0.2,0,1 -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,15,83600,1245,1335,379,914,860,112,95859,87599,14526,6041,170,7.7,1,1,96,77777,9,999999999,14,0.091,0,88,0.2,0,1 -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.6,14,83500,1240,1335,383,865,777,143,109790,51394,18227,7568,150,8.2,3,1,96,77777,9,999999999,14,0.091,0,88,0.2,0,1 -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,107679,55058,24527,10045,160,8.2,6,2,96,77777,9,999999999,14,0.091,0,88,0.2,0,1 -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,50787,10761,40189,14875,170,13.4,9,9,96,7620,9,999999999,14,0.091,0,88,0.2,0,1 -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,35470,6856,29433,10874,140,7.7,10,9,64,2134,9,999999999,14,0.091,0,88,0.2,0,1 -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,13181,0,13293,5636,130,10.8,10,10,80,2134,9,999999999,14,0.091,0,88,0.2,0,1 -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,17566,4085,15455,4534,230,5.7,10,9,64,2286,9,999999999,14,0.091,0,88,0.2,0,1 -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,39,83800,148,1335,373,41,12,40,4493,0,4397,1258,170,3.6,10,9,80,4267,9,999999999,14,0.091,0,88,0.2,0,1 -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,3962,9,999999999,14,0.091,0,88,0.2,0,1 -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,40,83800,0,0,381,0,0,0,0,0,0,0,150,6.2,10,10,24,1829,9,999999999,14,0.091,0,88,0.2,0,1 -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,1981,9,999999999,14,0.091,0,88,0.2,0,1 -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,3962,9,999999999,14,0.091,0,88,0.2,0,1 -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,3962,9,999999999,14,0.091,0,88,0.2,0,1 -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,4572,9,999999999,14,0.091,0,88,0.2,0,1 -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,4572,9,999999999,14,0.091,0,88,0.2,0,1 -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,4267,9,999999999,14,0.091,0,88,0.2,0,1 -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,4267,9,999999999,14,0.091,0,88,0.2,0,1 -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,7620,9,999999999,14,0.091,0,88,0.2,0,1 -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,6665,422,6140,1752,190,6.2,9,8,80,7315,9,999999999,14,0.091,0,88,0.2,0,1 -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,39,83600,438,1334,360,262,242,182,28321,17996,19775,5542,190,7.2,9,7,80,7315,9,999999999,14,0.091,0,88,0.2,0,1 -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,35,83600,679,1334,364,371,489,122,43713,31316,14428,5508,200,5.2,8,6,80,7315,9,999999999,14,0.091,0,88,0.2,0,1 -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,58012,32619,22985,9060,190,3.6,7,6,80,6706,9,999999999,14,0.091,0,88,0.2,0,1 -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,76650,38674,25276,10293,200,4.6,8,5,80,6706,9,999999999,14,0.091,0,88,0.2,0,1 -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,5,28,83500,1187,1334,388,627,346,319,74317,28224,38045,14701,160,5.7,10,7,80,6706,9,999999999,15,0.091,0,88,0.2,0,1 -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,38186,0,38577,16204,180,7.2,10,10,80,7620,9,999999999,15,0.091,0,88,0.2,0,1 -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,41392,7237,30483,12231,190,4.1,10,9,80,7620,9,999999999,15,0.091,0,88,0.2,0,1 -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,43015,9762,29036,11703,260,4.6,10,9,80,3658,9,999999999,15,0.091,0,88,0.2,0,1 -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,55323,10924,45130,16121,230,2.6,10,9,80,7620,9,999999999,15,0.091,0,88,0.2,0,1 -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,25009,0,25238,10500,180,2.6,10,10,80,8534,9,999999999,15,0.091,0,88,0.2,0,1 -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,17774,0,17924,7054,190,8.2,10,10,80,8534,9,999999999,15,0.091,0,88,0.2,0,1 -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,39,83400,399,1334,365,56,61,38,6785,2012,4611,1667,210,4.6,10,8,80,8534,9,999999999,15,0.091,0,88,0.2,0,1 -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,7734,0,4099,1208,200,2.6,4,4,64,77777,9,999999999,15,0.091,0,88,0.2,0,1 -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,8534,9,999999999,16,0.091,0,88,0.2,0,1 -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,46,83400,0,0,337,0,0,0,0,0,0,0,200,3.1,10,4,32,77777,9,999999999,16,0.091,0,88,0.2,0,1 -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,48,83300,0,0,332,0,0,0,0,0,0,0,180,1.5,10,3,32,77777,9,999999999,16,0.091,0,88,0.2,0,1 -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,48,83300,0,0,367,0,0,0,0,0,0,0,160,1.5,10,10,32,8534,9,999999999,16,0.091,0,88,0.2,0,1 -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,5182,9,999999999,16,0.091,0,88,0.2,0,1 -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,5182,9,999999999,16,0.092,0,88,0.2,0,1 -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,4877,9,999999999,16,0.092,0,88,0.2,0,1 -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,4572,9,999999999,16,0.092,0,88,0.2,0,1 -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,5486,9,999999999,16,0.092,0,88,0.2,0,1 -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,4877,9,999999999,16,0.092,0,88,0.2,0,1 -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,6377,380,5736,1686,340,2.6,10,9,80,7620,9,999999999,17,0.092,0,88,0.2,0,1 -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,28076,22971,9272,3271,330,1.5,8,4,96,77777,9,999999999,17,0.092,0,88,0.2,0,1 -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,18207,0,18365,7425,0,0,10,10,64,7620,9,999999999,17,0.092,0,88,0.2,0,1 -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,66303,38040,29568,11147,330,2.1,10,8,64,7620,9,999999999,17,0.092,0,88,0.2,0,1 -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,64472,19380,45191,16321,330,2.1,10,7,64,7620,9,999999999,17,0.092,0,88,0.2,0,1 -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,88108,24318,65200,20944,280,1.5,9,8,64,7620,9,999999999,17,0.092,0,88,0.2,0,1 -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,91980,40365,28112,11382,50,2.1,7,7,64,7620,9,999999999,17,0.092,0,88,0.2,0,1 -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,83920,20701,62611,20934,90,4.6,9,8,80,7620,9,999999999,17,0.092,0,88,0.2,0,1 -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,112852,59924,33135,13093,0,0,6,6,80,7620,9,999999999,17,0.092,0,88,0.2,0,1 -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,37675,5043,32087,12542,360,5.2,8,8,80,7620,9,999999999,17,0.092,0,88,0.2,0,1 -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,19545,0,19724,8731,300,4.1,10,10,80,2438,9,999999999,17,0.092,0,88,0.2,0,1 -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,16944,0,17089,6840,200,4.6,10,10,80,8534,9,999999999,17,0.092,0,88,0.2,0,1 -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,5.6,39,83100,402,1334,388,93,0,93,9245,0,9317,3519,230,3.1,10,10,80,4267,9,999999999,17,0.092,0,88,0.2,0,1 -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,2624,0,2642,965,210,2.1,10,10,64,8534,9,999999999,17,0.092,0,88,0.2,0,1 -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,8534,9,999999999,17,0.092,0,88,0.2,0,1 -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,8534,9,999999999,17,0.092,0,88,0.2,0,1 -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,8534,9,999999999,18,0.092,0,88,0.2,0,1 -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,7.2,60,83100,0,0,364,0,0,0,0,0,0,0,210,1.5,10,10,32,3048,9,999999999,18,0.092,0,88,0.2,0,1 -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,7620,9,999999999,18,0.092,0,88,0.2,0,1 -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,4267,9,999999999,18,0.092,0,88,0.2,0,1 -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,10,9,32,7620,9,999999999,18,0.092,0,88,0.2,0,1 -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,77777,9,999999999,18,0.092,0,88,0.2,0,1 -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,6706,9,999999999,18,0.092,0,88,0.2,0,1 -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,4572,9,999999999,18,0.092,0,88,0.2,0,1 -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,5052,49,4615,1439,240,1.5,9,8,96,4267,9,999999999,18,0.092,0,88,0.2,0,1 -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,26221,19566,14006,4558,220,2.6,7,6,96,2896,9,999999999,18,0.092,0,88,0.2,0,1 -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,38886,17833,26515,8930,290,2.6,8,8,88,2743,9,999999999,18,0.092,0,88,0.2,0,1 -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,59374,23666,40441,13835,360,9.3,7,7,80,2591,9,999999999,18,0.092,0,88,0.2,0,1 -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,82721,41501,33448,13077,30,6.7,5,4,80,77777,9,999999999,18,0.092,0,88,0.2,0,1 -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,90439,40846,27043,11003,20,4.1,5,5,80,77777,9,999999999,18,0.092,0,88,0.2,0,1 -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,7.8,45,83400,1249,1333,356,872,698,218,107166,48624,26934,10963,50,2.1,4,4,64,77777,9,999999999,18,0.092,0,88,0.2,0,1 -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,113186,52988,28635,11584,350,2.6,2,2,64,77777,9,999999999,18,0.092,0,88,0.2,0,1 -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,102740,50809,31178,12454,100,4.1,3,3,64,77777,9,999999999,18,0.092,0,88,0.2,0,1 -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,29025,5996,20581,8519,310,1.5,9,9,96,7620,9,999999999,18,0.092,0,88,0.2,0,1 -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,6.7,31,83200,865,1333,386,283,207,148,33900,13894,17803,7158,40,3.1,8,6,80,7620,9,999999999,18,0.092,0,88,0.2,0,1 -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,12385,0,12490,5387,20,6.2,10,10,64,1981,9,999999999,18,0.092,0,88,0.2,0,1 -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,75,83400,404,1333,364,64,0,64,6349,0,6399,2635,340,7.2,10,10,48,2134,9,999999999,18,0.092,0,88,0.2,0,1 -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,2618,0,2637,971,360,5.2,10,10,9.6,2286,9,999999999,18,0.092,0,88,0.2,0,1 -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,2438,9,999999999,17,0.092,0,88,0.2,0.3,1 -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,1981,9,999999999,17,0.092,0,88,0.2,0.5,1 -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,1981,9,999999999,17,0.092,0,88,0.2,0,1 -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,3658,9,999999999,17,0.092,0,88,0.2,0,1 -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,1829,9,999999999,17,0.092,0,88,0.2,0,1 -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,1676,9,999999999,17,0.092,0,88,0.2,0,1 -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,89,83700,0,0,314,0,0,0,0,0,0,0,180,1.5,2,2,24,77777,9,999999999,17,0.092,0,88,0.2,0,1 -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,93,83700,0,0,331,0,0,0,0,0,0,0,190,2.6,8,8,16,3962,9,999999999,17,0.092,0,88,0.2,0,1 -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,89,83600,0,0,329,0,0,0,0,0,0,0,130,2.1,10,7,16,4267,9,999999999,17,0.092,0,88,0.2,0,1 -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,89,83700,13,455,322,2,3,2,0,0,0,0,120,2.1,10,5,40,4267,9,999999999,17,0.092,0,88,0.2,0,1 -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,86,83800,197,1332,327,71,60,62,7701,787,6749,1899,90,3.1,7,6,48,4267,9,999999999,17,0.092,0,88,0.2,0,1 -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,8621,1447,7222,2620,90,3.6,10,9,24,975,9,999999999,17,0.092,0,88,0.2,0,1 -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,21822,4218,18207,6759,110,2.1,10,9,16,1067,9,999999999,17,0.092,0,88,0.2,0,1 -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,10,72,83800,897,1332,357,390,147,291,44488,12243,33392,12230,350,2.6,10,9,16,1128,9,999999999,17,0.092,0,88,0.2,0,1 -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,67,83800,1070,1332,350,652,374,351,75279,31902,40787,15235,10,2.6,9,7,16,1219,9,999999999,17,0.092,0,88,0.2,0,1 -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,65,83700,1190,1332,358,790,292,528,89848,28896,60507,20232,10,3.1,10,8,16,671,9,999999999,17,0.092,0,88,0.2,0,1 -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,29930,0,30239,13503,10,4.1,10,10,16,792,9,999999999,17,0.092,0,88,0.2,0,1 -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,29810,0,30118,13453,10,5.2,10,10,16,1097,9,999999999,17,0.092,0,88,0.2,0.5,1 -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,51746,10855,37565,14564,20,3.1,10,9,19.2,1372,9,999999999,16,0.092,0,88,0.2,5.1,1 -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,24108,0,24342,11062,360,5.2,10,10,12.8,1372,9,999999999,16,0.092,0,88,0.2,0.8,1 -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,19016,0,19191,8568,90,4.1,10,10,19.2,2286,9,999999999,16,0.092,0,88,0.2,0.3,1 -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,34954,9793,29187,9100,90,3.1,10,8,24,3658,9,999999999,16,0.092,0,88,0.2,0,1 -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,12039,1137,11180,3707,190,3.1,10,7,32,3353,9,999999999,16,0.092,0,88,0.2,0,1 -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,2428,0,2445,918,180,2.6,10,10,32,2591,9,999999999,16,0.092,0,88,0.2,0,1 -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,2896,9,999999999,16,0.092,0,88,0.2,0,1 -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,2896,9,999999999,16,0.092,0,88,0.2,0,1 -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,16,0.092,0,88,0.2,0,1 -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,16,0.092,0,88,0.2,0,1 -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,93,83900,0,0,348,0,0,0,0,0,0,0,200,1.5,10,10,24,2286,9,999999999,16,0.092,0,88,0.2,0,1 -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,2286,9,999999999,15,0.092,0,88,0.2,0,1 -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,10,9,24,2896,9,999999999,15,0.092,0,88,0.2,0,1 -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,2896,9,999999999,15,0.092,0,88,0.2,0,1 -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,2896,9,999999999,15,0.092,0,88,0.2,0,1 -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,7.8,86,83800,14,477,331,2,1,2,0,0,0,0,220,2.6,10,9,19.2,1676,9,999999999,15,0.092,0,88,0.2,0,1 -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,7.8,86,83800,199,1332,331,26,10,24,3053,0,2822,939,230,2.6,10,9,80,2134,9,999999999,15,0.092,0,88,0.2,0,1 -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,20508,7546,16171,5049,240,2.6,10,7,88,1829,9,999999999,15,0.092,0,88,0.2,0,1 -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,33824,11128,26011,8851,340,3.1,8,8,80,1829,9,999999999,15,0.092,0,88,0.2,0,1 -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,69625,39453,33411,12244,360,4.1,10,6,48,1676,9,999999999,15,0.092,0,88,0.2,0,1 -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,69,83900,1071,1332,360,209,109,121,26175,6627,15212,6411,310,3.1,10,9,64,1676,9,999999999,15,0.092,0,88,0.2,0,1 -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,63734,14787,46454,17136,310,3.1,10,9,64,1676,9,999999999,15,0.092,0,88,0.2,0,1 -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,52357,12294,34343,13582,80,1.5,9,9,96,3048,9,999999999,15,0.092,0,88,0.2,0,1 -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,97931,42778,37342,14566,270,2.1,9,7,96,7620,9,999999999,15,0.092,0,88,0.2,0,1 -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,51012,13273,33001,13069,340,1.5,9,8,96,7620,9,999999999,15,0.092,0,88,0.2,0,1 -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,6.1,40,83600,1048,1332,364,721,436,378,82622,39652,43602,15813,230,1.5,7,7,96,7620,9,999999999,15,0.092,0,88,0.2,0,1 -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,66698,42251,17376,7009,240,3.6,8,4,80,7620,9,999999999,15,0.092,0,88,0.2,0,1 -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,24303,4858,20767,7317,360,4.1,9,9,80,1981,9,999999999,15,0.092,0,88,0.2,0,1 -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,24772,19684,11927,3902,360,4.1,6,3,64,77777,9,999999999,15,0.092,0,88,0.2,0,1 -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,6074,60,5442,1510,340,2.1,10,7,64,2591,9,999999999,15,0.092,0,88,0.2,0,1 -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,75,83700,5,277,354,0,1,0,0,0,0,0,100,2.6,10,9,32,2134,9,999999999,15,0.092,0,88,0.2,0,1 -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,2134,9,999999999,15,0.092,0,88,0.2,0,1 -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,77777,9,999999999,15,0.092,0,88,0.2,0,1 -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,77777,9,999999999,15,0.092,0,88,0.2,0,1 -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,77777,9,999999999,15,0.092,0,88,0.2,0,1 -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,77777,9,999999999,15,0.093,0,88,0.2,0,1 -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,7.8,86,83600,0,0,295,0,0,0,0,0,0,0,160,1.5,0,0,32,77777,9,999999999,15,0.093,0,88,0.2,0,1 -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,32,77777,9,999999999,15,0.093,0,88,0.2,0,1 -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,24,77777,9,999999999,15,0.093,0,88,0.2,0,1 -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,77777,9,999999999,15,0.093,0,88,0.2,0,1 -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,6.7,80,83600,201,1331,294,103,488,29,11933,0,3366,1107,190,2.6,0,0,88,77777,9,999999999,15,0.093,0,88,0.2,0,1 -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,31806,69289,7175,1072,160,2.1,0,0,88,77777,9,999999999,15,0.093,0,88,0.2,0,1 -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,6.7,58,83600,687,1331,315,500,846,63,53863,84682,9368,1522,220,1.5,0,0,80,77777,9,999999999,15,0.093,0,88,0.2,0,1 -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,73879,92395,10933,2072,190,1.5,0,0,96,77777,9,999999999,15,0.093,0,88,0.2,0,1 -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,90085,96374,11875,2933,120,2.1,0,0,112,77777,9,999999999,15,0.093,0,88,0.2,0,1 -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,110034,53832,24809,10163,60,2.6,1,1,112,77777,9,999999999,15,0.093,0,88,0.2,0,1 -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,30,83300,1251,1331,362,910,802,156,114811,52336,19770,8193,220,3.1,2,2,112,77777,9,999999999,15,0.093,0,88,0.2,0,1 -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,93830,83033,17067,6971,140,3.1,3,3,112,77777,9,999999999,15,0.093,0,88,0.2,0,1 -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,29,83200,1178,1331,368,874,837,134,91845,85561,17446,5089,140,4.6,4,2,112,77777,9,999999999,15,0.093,0,88,0.2,0,1 -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,29,83100,1049,1331,369,612,513,207,73558,37342,25005,10169,80,3.1,8,3,112,77777,9,999999999,15,0.093,0,88,0.2,0,1 -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,4.4,26,83000,870,1331,370,635,762,137,76661,50779,16605,6724,130,2.1,7,2,112,77777,9,999999999,15,0.093,0,88,0.2,0,1 -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,5,28,83000,653,1331,374,425,622,119,49923,39354,14030,5306,120,5.2,6,3,112,77777,9,999999999,15,0.093,0,88,0.2,0,1 -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,26143,21709,9317,3211,130,3.1,7,2,96,77777,9,999999999,15,0.093,0,88,0.2,0,1 -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,5851,0,3722,1154,130,3.1,8,4,80,9144,9,999999999,15,0.093,0,88,0.2,0,1 -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,2438,9,999999999,15,0.093,0,88,0.2,1,1 -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,1981,9,999999999,15,0.093,0,88,0.2,0,1 -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,9144,9,999999999,15,0.093,0,88,0.2,0,1 -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,77777,9,999999999,15,0.093,0,88,0.2,0,1 -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,77,83300,0,0,324,0,0,0,0,0,0,0,120,3.1,2,2,32,77777,9,999999999,15,0.093,0,88,0.2,0,1 -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,77777,9,999999999,15,0.093,0,88,0.2,0,1 -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,77777,9,999999999,15,0.093,0,88,0.2,0,1 -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,2,2,32,77777,9,999999999,15,0.093,0,88,0.2,0,1 -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,9.4,96,83300,0,0,302,0,0,0,0,0,0,0,200,2.6,3,1,24,77777,9,999999999,16,0.093,0,88,0.2,0,1 -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,8.3,89,83200,15,499,310,2,8,2,0,0,0,0,120,1.5,5,4,80,77777,9,999999999,16,0.093,0,88,0.2,0,1 -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,11211,0,3898,1265,180,2.6,0,0,96,77777,9,999999999,15,0.093,0,88,0.2,0,1 -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,7.8,62,83200,450,1331,316,287,683,56,34196,28265,6687,2444,200,2.6,0,0,96,77777,9,999999999,15,0.093,0,88,0.2,0,1 -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,59177,44394,9666,3812,220,3.1,1,0,96,77777,9,999999999,15,0.093,0,88,0.2,0,1 -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,78408,47938,12111,5018,210,2.6,2,2,96,77777,9,999999999,15,0.093,0,88,0.2,0,1 -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,99471,54813,21141,8753,100,3.1,3,3,96,77777,9,999999999,15,0.093,0,88,0.2,0,1 -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,68250,18459,47100,17291,120,2.1,9,7,96,4267,9,999999999,15,0.093,0,88,0.2,0.5,1 -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,59975,10517,46767,17396,350,5.2,10,9,96,2591,9,999999999,15,0.093,0,88,0.2,0,1 -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,11.1,57,83100,1247,1331,370,866,601,302,103683,45330,36380,14284,10,5.2,7,7,96,2438,9,999999999,15,0.093,0,88,0.2,0,1 -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,88204,39814,34338,13520,70,5.2,8,6,96,9144,9,999999999,14,0.093,0,88,0.2,0,1 -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,73674,36379,28554,11424,90,4.6,6,5,96,9144,9,999999999,14,0.093,0,88,0.2,0,1 -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,64690,39546,23005,9002,180,2.1,6,5,96,9144,9,999999999,14,0.093,0,88,0.2,0,1 -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,38993,25780,17147,6318,50,5.2,7,6,96,9144,9,999999999,14,0.093,0,88,0.2,0,1 -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,21191,10806,15111,4623,60,6.2,9,8,96,9144,9,999999999,14,0.093,0,88,0.2,0,1 -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,8151,1029,6353,1678,130,2.1,6,4,96,9144,9,999999999,14,0.093,0,88,0.2,0,1 -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,77777,9,999999999,14,0.093,0,88,0.2,0,1 -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,9.4,69,83200,0,0,328,0,0,0,0,0,0,0,50,2.1,2,2,32,77777,9,999999999,13,0.093,0,88,0.2,0,1 -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,77777,9,999999999,13,0.093,0,88,0.2,0,1 -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,89,83400,0,0,310,0,0,0,0,0,0,0,350,2.1,1,1,32,77777,9,999999999,13,0.093,0,88,0.2,0,1 -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,77777,9,999999999,13,0.093,0,88,0.2,0,1 -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,89,83400,0,0,334,0,0,0,0,0,0,0,30,1.5,8,8,32,1097,9,999999999,13,0.093,0,88,0.2,0,1 -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,83,83500,0,0,346,0,0,0,0,0,0,0,10,2.1,9,9,32,945,9,999999999,13,0.093,0,88,0.2,0,1 -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,792,9,999999999,13,0.093,0,88,0.2,0,1 -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,975,9,999999999,13,0.093,0,88,0.2,0,1 -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,86,83600,16,521,353,2,0,2,0,0,0,0,10,1,10,10,24,975,9,999999999,12,0.093,0,88,0.2,0,1 -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,86,83700,206,1331,353,33,0,33,3217,0,3241,1238,350,2.1,10,10,14.4,610,9,999999999,13,0.093,0,88,0.2,0,1 -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,20314,4147,18109,5448,360,2.1,10,9,24,762,9,999999999,13,0.093,0,88,0.2,0,1 -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,75,83700,690,1331,354,378,232,258,41958,19496,28801,9487,60,1.5,10,9,12.8,1097,9,999999999,13,0.093,0,88,0.2,0,1 -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,20827,0,21022,9373,0,0,10,10,12.8,671,9,999999999,13,0.093,0,88,0.2,0,1 -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,55470,6404,49563,17365,120,3.1,10,9,12.8,1006,9,999999999,13,0.093,0,88,0.2,0,1 -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,63969,21285,34039,13450,130,3.6,8,8,24,1036,9,999999999,13,0.093,0,88,0.2,0,1 -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,8.9,49,83500,1253,1331,360,944,663,319,112770,51814,38347,14913,160,3.1,5,5,48,77777,9,999999999,13,0.093,0,88,0.2,0,1 -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,46,83400,1248,1331,376,803,565,273,96957,41490,33157,13198,120,4.1,6,6,40,1524,9,999999999,14,0.093,0,88,0.2,0,1 -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,107308,52809,30069,12082,110,3.1,5,5,80,77777,9,999999999,14,0.093,0,88,0.2,0,1 -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,61759,27835,24997,10180,130,5.2,5,5,80,77777,9,999999999,14,0.093,0,88,0.2,0,1 -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,68189,42993,16722,6778,120,4.1,4,4,80,77777,9,999999999,14,0.093,0,88,0.2,0,1 -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,27,83100,657,1331,387,336,354,161,38575,24995,18566,6744,150,5.7,8,6,80,7620,9,999999999,14,0.093,0,88,0.2,0,1 -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,46,83100,418,1331,369,256,556,81,29337,24584,9312,3228,310,4.1,5,4,80,77777,9,999999999,14,0.093,0,88,0.2,0,1 -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,56,83200,172,1331,353,68,253,36,7609,0,4039,1246,310,4.1,5,4,80,77777,9,999999999,14,0.093,0,88,0.2,0,1 -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,77777,9,999999999,15,0.093,0,88,0.2,0,1 -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,11.1,77,83400,0,0,326,0,0,0,0,0,0,0,290,2.1,1,1,32,77777,9,999999999,15,0.093,0,88,0.2,0,1 -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,77777,9,999999999,15,0.093,0,88,0.2,0,1 -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,77777,9,999999999,15,0.093,0,88,0.2,0,1 -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,77777,9,999999999,15,0.093,0,88,0.2,0,1 -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,274,9,999999999,15,0.094,0,88,0.2,0,1 -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,15,0.094,0,88,0.2,0,1 -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,16,0.094,0,88,0.2,0,1 -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,16,0.094,0,88,0.2,0,1 -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,305,9,999999999,16,0.094,0,88,0.2,0,1 -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,2731,0,2751,1083,350,1.5,10,10,32,366,9,999999999,16,0.094,0,88,0.2,0,1 -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,77,83700,453,1330,362,75,0,75,7475,0,7535,3142,10,1.5,10,10,48,366,9,999999999,16,0.094,0,88,0.2,0,1 -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,38603,22133,19390,7159,0,0,6,6,48,3658,9,999999999,15,0.094,0,88,0.2,0,1 -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,78083,47115,15751,6476,80,1.5,2,2,24,77777,9,999999999,15,0.094,0,88,0.2,0,1 -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,90944,97045,11628,2914,30,2.1,1,1,24,77777,9,999999999,15,0.094,0,88,0.2,0,1 -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,97365,94020,12102,4252,10,3.1,1,1,24,77777,9,999999999,15,0.094,0,88,0.2,0,1 -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,109886,49388,28545,11564,80,4.1,3,3,24,77777,9,999999999,15,0.094,0,88,0.2,0,1 -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,41,83300,1249,1330,371,946,909,92,101449,94068,12086,5417,50,4.6,2,2,24,77777,9,999999999,15,0.094,0,88,0.2,0,1 -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,85019,37315,20824,8647,330,2.6,5,5,24,77777,9,999999999,14,0.094,0,88,0.2,0,1 -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,10.6,40,83100,1053,1330,384,790,812,146,97318,51354,18062,7559,20,3.6,4,4,48,77777,9,999999999,14,0.094,0,88,0.2,0,1 -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,69461,42206,23072,9059,30,6.2,5,3,16,77777,9,999999999,14,0.094,0,88,0.2,0,1 -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,48725,35570,14545,5514,30,8.2,7,6,16,9144,9,999999999,14,0.094,0,88,0.2,0,1 -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,12.2,61,83200,420,1330,377,192,99,160,20793,6377,17414,5055,40,4.1,8,8,16,1676,9,999999999,14,0.094,0,88,0.2,0,1 -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,9072,0,4042,1253,50,3.1,4,2,19.2,77777,9,999999999,14,0.094,0,88,0.2,0,1 -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,3658,9,999999999,14,0.094,0,88,0.2,0,1 -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,8.9,67,83600,0,0,366,0,0,0,0,0,0,0,50,5.7,10,10,11.2,1097,9,999999999,13,0.094,0,88,0.2,6.6,1 -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,1097,9,999999999,13,0.094,0,88,0.2,0,1 -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,13,0.094,0,88,0.2,0.3,1 -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,8534,9,999999999,13,0.094,0,88,0.2,0,1 -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,77777,9,999999999,13,0.094,0,88,0.2,0,1 -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,32,77777,9,999999999,13,0.094,0,88,0.2,0,1 -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,8.3,89,83700,0,0,295,0,0,0,0,0,0,0,260,1.5,0,0,32,77777,9,999999999,12,0.094,0,88,0.2,0,1 -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,77777,9,999999999,12,0.094,0,88,0.2,0,1 -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,77777,9,999999999,12,0.094,0,88,0.2,0,1 -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,10226,1895,4958,1559,190,2.6,0,0,80,77777,9,999999999,12,0.094,0,88,0.2,0,1 -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,32030,26956,8878,3181,180,2.1,0,0,96,77777,9,999999999,12,0.094,0,88,0.2,0,1 -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,57681,43556,12582,4903,200,2.6,0,0,96,77777,9,999999999,12,0.094,0,88,0.2,0,1 -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,82413,51639,15665,6436,190,2.1,0,0,96,77777,9,999999999,12,0.094,0,88,0.2,0,1 -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,97939,51542,18029,7546,120,2.6,1,1,96,77777,9,999999999,12,0.094,0,88,0.2,0,1 -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,112405,54259,21714,8978,190,2.1,1,1,96,77777,9,999999999,12,0.094,0,88,0.2,0,1 -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,118805,54147,20250,8384,120,2.6,1,1,96,77777,9,999999999,12,0.094,0,88,0.2,0,1 -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,120671,57570,29598,11930,160,3.1,3,3,96,77777,9,999999999,11,0.094,0,88,0.2,0,1 -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,29,83000,1182,1330,368,886,811,165,110349,54161,20644,8557,130,2.6,2,2,96,77777,9,999999999,11,0.094,0,88,0.2,0,1 -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,62513,25023,34094,13227,160,3.6,4,4,96,77777,9,999999999,11,0.094,0,88,0.2,0,1 -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,62235,28059,40444,13644,340,6.2,5,5,96,77777,9,999999999,11,0.094,0,88,0.2,0,1 -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,47285,35474,17722,6515,50,3.1,3,3,96,77777,9,999999999,11,0.094,0,88,0.2,0,1 -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,23691,17580,8152,2885,360,5.2,2,2,96,77777,9,999999999,11,0.094,0,88,0.2,0,1 -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,7673,0,4572,1385,50,4.1,3,1,96,77777,9,999999999,11,0.094,0,88,0.2,0,1 -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,77777,9,999999999,11,0.094,0,88,0.2,0,1 -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,77777,9,999999999,11,0.094,0,88,0.2,0,1 -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,77777,9,999999999,11,0.094,0,88,0.2,0,1 -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,32,77777,9,999999999,11,0.094,0,88,0.2,0,1 -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,77777,9,999999999,11,0.094,0,88,0.2,0,1 -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,77777,9,999999999,10,0.094,0,88,0.2,0,1 -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,6.7,80,82700,0,0,294,0,0,0,0,0,0,0,220,2.1,0,0,48,77777,9,999999999,10,0.094,0,88,0.2,0,1 -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,77777,9,999999999,10,0.094,0,88,0.2,0,1 -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,77777,9,999999999,10,0.094,0,88,0.2,0,1 -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,77777,9,999999999,10,0.094,0,88,0.2,0,1 -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,66,82500,211,1329,309,82,159,57,9041,2402,6305,1873,220,2.1,4,3,96,77777,9,999999999,10,0.094,0,88,0.2,0,1 -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,28763,23871,13362,4464,200,2.1,7,2,96,77777,9,999999999,11,0.094,0,88,0.2,0,1 -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,54920,43479,20241,7394,180,2.6,8,5,96,7620,9,999999999,11,0.094,0,88,0.2,0,1 -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,2.2,31,82300,904,1329,352,599,559,218,70245,43282,25695,10003,340,3.6,7,5,80,7620,9,999999999,11,0.094,0,88,0.2,0,1 -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,84466,43080,33770,13188,350,4.1,6,3,80,77777,9,999999999,11,0.094,0,88,0.2,0,1 -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,31,82200,1195,1329,369,702,511,242,85137,37787,29511,11877,350,2.1,7,5,80,7620,9,999999999,11,0.094,0,88,0.2,0,1 -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,-2.2,16,82100,1255,1329,365,957,773,227,117779,57202,28086,11358,40,3.6,3,3,80,77777,9,999999999,11,0.094,0,88,0.2,0,1 -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,126868,62022,21937,9028,170,2.1,2,2,80,77777,9,999999999,12,0.094,0,88,0.2,0,1 -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,94485,87572,17998,5348,160,5.2,3,3,64,77777,9,999999999,12,0.094,0,88,0.2,0,1 -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,92650,51873,24156,9867,330,5.2,6,2,64,77777,9,999999999,12,0.094,0,88,0.2,0,1 -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,55740,26138,31938,11723,320,5.7,8,8,32,7620,9,999999999,12,0.094,0,88,0.2,0,1 -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,31236,12584,21723,7661,340,6.2,9,7,32,7620,9,999999999,12,0.094,0,88,0.2,0,1 -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,24642,17790,13099,4258,350,2.6,8,4,64,77777,9,999999999,13,0.094,0,88,0.2,0,1 -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,7329,0,4677,1417,340,2.6,6,2,80,77777,9,999999999,13,0.094,0,88,0.2,0,1 -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,58,82100,9,388,340,1,6,1,0,0,0,0,360,5.2,1,1,32,77777,9,999999999,13,0.094,0,88,0.2,0,1 -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,77777,9,999999999,13,0.094,0,88,0.2,0,1 -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,7.8,62,82400,0,0,322,0,0,0,0,0,0,0,300,2.1,1,1,32,77777,9,999999999,13,0.094,0,88,0.2,0,1 -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,1219,9,999999999,14,0.094,0,88,0.2,0,1 -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,6.1,55,82400,0,0,353,0,0,0,0,0,0,0,330,2.1,9,9,32,1036,9,999999999,14,0.094,0,88,0.2,0,1 -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,975,9,999999999,14,0.095,0,88,0.2,0,1 -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,975,9,999999999,14,0.095,0,88,0.2,0,1 -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,975,9,999999999,14,0.095,0,88,0.2,0,1 -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,1128,9,999999999,14,0.095,0,88,0.2,0,1 -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,1463,9,999999999,15,0.095,0,88,0.2,0,1 -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,9169,1693,8014,2183,340,3.1,7,7,80,5182,9,999999999,15,0.095,0,88,0.2,0,1 -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,20593,4654,18162,5502,10,3.6,8,8,80,5182,9,999999999,15,0.095,0,88,0.2,0,1 -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,40935,25509,19344,7147,350,3.6,7,7,64,7620,9,999999999,15,0.095,0,88,0.2,0,1 -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,58193,28087,31692,11827,360,4.1,8,6,64,7620,9,999999999,15,0.095,0,88,0.2,0,1 -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,56,82900,1076,1329,363,577,440,220,69186,31324,26518,10773,360,3.1,7,7,64,4572,9,999999999,16,0.095,0,88,0.2,0,1 -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,75744,17939,56680,19565,350,3.1,9,9,64,7620,9,999999999,16,0.095,0,88,0.2,0,1 -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,51,82900,1256,1329,386,698,271,441,81317,23974,51744,18733,360,2.1,9,9,48,4267,9,999999999,16,0.095,0,88,0.2,0,1 -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,104232,42392,52021,18789,10,3.1,10,8,32,7620,9,999999999,16,0.095,0,88,0.2,0,1 -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,11.7,59,82900,1184,1329,371,671,391,322,79244,30592,38267,14808,20,5.2,10,7,32,7620,9,999999999,16,0.095,0,88,0.2,0,1 -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,60221,21708,34989,13542,50,4.6,10,8,40,1219,9,999999999,17,0.095,0,88,0.2,0,1 -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,51708,20924,32766,11961,60,4.6,9,7,40,2134,9,999999999,17,0.095,0,88,0.2,1,1 -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,27328,4509,23982,8247,10,5.7,10,9,32,2134,9,999999999,17,0.095,0,88,0.2,0,1 -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,8736,0,8805,3478,40,2.6,10,10,24,1676,9,999999999,17,0.095,0,88,0.2,0,1 -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,3107,0,3129,1163,20,2.1,10,10,19.2,1676,9,999999999,17,0.095,0,88,0.2,0,1 -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,488,9,999999999,18,0.095,0,88,0.2,0,1 -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,18,0.095,0,88,0.2,0,1 -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,18,0.095,0,88,0.2,0.8,1 -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,2743,9,999999999,18,0.095,0,88,0.2,0,1 -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,77777,9,999999999,18,0.095,0,88,0.2,0,1 -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,16,0.102,0,88,0.2,0,1 -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,12.2,96,83700,0,0,365,0,0,0,0,0,0,0,330,0.4,10,10,11.2,244,9,999999999,16,0.102,0,88,0.2,0,1 -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,12.2,93,83700,0,0,365,0,0,0,0,0,0,0,320,0.2,10,10,11.2,244,9,999999999,16,0.102,0,88,0.2,0,1 -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,9,9,19.2,488,9,999999999,16,0.102,0,88,0.2,0,1 -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,2,2,24,77777,9,999999999,16,0.102,0,88,0.2,0,1 -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,12.8,87,83700,214,1328,335,98,318,47,10949,1920,5266,1651,230,2.6,3,3,24,77777,9,999999999,16,0.102,0,88,0.2,0,1 -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,29232,22160,8325,3016,210,1.5,1,1,24,77777,9,999999999,16,0.102,0,88,0.2,0,1 -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,57028,39568,10100,4000,170,2.1,1,1,24,77777,9,999999999,16,0.102,0,88,0.2,0,1 -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,72676,86759,14125,2321,0,0,1,1,24,77777,9,999999999,16,0.102,0,88,0.2,0,1 -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,97168,49907,23898,9835,10,2.6,4,1,24,77777,9,999999999,16,0.102,0,88,0.2,0,1 -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,109412,49820,21087,8754,360,2.6,5,2,24,77777,9,999999999,16,0.102,0,88,0.2,0,1 -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,114958,50209,19521,8104,350,3.1,3,1,24,77777,9,999999999,16,0.102,0,88,0.2,0,1 -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,24,83600,1252,1328,377,958,884,124,100848,90533,15953,6982,340,2.6,1,1,32,77777,9,999999999,17,0.102,0,88,0.2,0,1 -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,94316,88750,15702,4976,20,4.1,1,1,64,77777,9,999999999,17,0.102,0,88,0.2,0,1 -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,86460,90462,15089,3262,120,2.6,1,1,64,77777,9,999999999,17,0.102,0,88,0.2,0,1 -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,78173,49390,12199,5032,130,2.6,1,1,64,77777,9,999999999,17,0.102,0,88,0.2,0,1 -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,53955,42884,15594,5869,130,3.1,2,2,64,77777,9,999999999,17,0.102,0,88,0.2,0,1 -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,27818,22750,9031,3171,130,3.1,3,3,64,77777,9,999999999,17,0.102,0,88,0.2,0,1 -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,10,39,83600,186,1328,395,46,95,33,5221,0,3754,1196,110,5.7,7,7,80,3962,9,999999999,17,0.102,0,88,0.2,0,1 -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,49,83600,11,432,388,2,3,2,0,0,0,0,40,8.2,9,9,48,2286,9,999999999,17,0.102,0,88,0.2,0,1 -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,2134,9,999999999,17,0.102,0,88,0.2,0,1 -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,2134,9,999999999,17,0.102,0,88,0.2,0,1 -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,2743,9,999999999,17,0.102,0,88,0.2,0,1 -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,2896,9,999999999,17,0.102,0,88,0.2,0,1 -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,3048,9,999999999,17,0.102,0,88,0.2,0,1 -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,6096,9,999999999,17,0.102,0,88,0.2,0,1 -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,3353,9,999999999,17,0.102,0,88,0.2,0,1 -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,6096,9,999999999,17,0.102,0,88,0.2,0,1 -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,6096,9,999999999,17,0.102,0,88,0.2,0,1 -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,11.1,77,84100,215,1328,359,55,22,51,6114,209,5687,1754,230,2.1,9,9,96,2896,9,999999999,17,0.102,0,88,0.2,0,1 -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,24812,16237,13528,4536,190,2.6,6,6,80,6096,9,999999999,17,0.102,0,88,0.2,0,1 -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,10.6,55,84200,695,1328,362,377,395,170,43334,27311,19631,7254,260,2.6,5,5,80,77777,9,999999999,17,0.102,0,88,0.2,0,1 -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,55555,27639,25511,9982,320,2.1,3,3,72,77777,9,999999999,17,0.102,0,88,0.2,0,1 -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,95685,48849,20184,8411,330,3.6,2,2,72,77777,9,999999999,17,0.102,0,88,0.2,0,1 -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,73033,26049,36922,14404,350,2.1,6,6,72,1524,9,999999999,17,0.102,0,88,0.2,0,1 -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,117934,53556,35972,14169,10,3.1,5,5,56,77777,9,999999999,17,0.102,0,88,0.2,0,1 -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,100865,39815,50380,18394,10,2.6,8,8,56,2134,9,999999999,17,0.102,0,88,0.2,0,1 -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,41,84000,1186,1328,403,423,107,327,49961,8531,38866,14986,60,4.6,9,9,56,3658,9,999999999,17,0.102,0,88,0.2,0,1 -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,24187,0,24425,11157,120,6.2,10,10,24,1524,9,999999999,17,0.102,0,88,0.2,0,1 -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,56309,26285,31592,11683,140,6.7,9,7,64,3658,9,999999999,17,0.102,0,88,0.2,0,1 -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,19549,1711,18019,6656,120,3.6,9,8,64,4267,9,999999999,17,0.102,0,88,0.2,0,1 -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,23099,12836,15359,4791,150,4.1,6,6,64,7620,9,999999999,17,0.102,0,88,0.2,0,1 -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,8156,1020,7003,1881,160,5.2,6,4,80,7620,9,999999999,17,0.102,0,88,0.2,0,1 -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,3658,9,999999999,17,0.102,0,88,0.2,0,1 -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,1829,9,999999999,17,0.102,0,88,0.2,0,1 -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,1372,9,999999999,17,0.102,0,88,0.2,0,1 -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,1829,9,999999999,17,0.102,0,88,0.2,0,1 -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,4267,9,999999999,17,0.102,0,88,0.2,0,1 -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,77777,9,999999999,17,0.103,0,88,0.2,0,1 -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,77777,9,999999999,17,0.103,0,88,0.2,0,1 -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,77777,9,999999999,17,0.103,0,88,0.2,0,1 -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,77777,9,999999999,17,0.103,0,88,0.2,0,1 -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,77777,9,999999999,17,0.103,0,88,0.2,0,1 -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,10847,1880,5271,1658,300,2.6,3,1,72,77777,9,999999999,17,0.103,0,88,0.2,0,1 -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,5672,0,5718,2502,350,2.6,10,10,0.8,61,9,999999999,17,0.103,0,88,0.2,0,1 -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,50436,34199,21509,7812,330,3.1,8,3,4.8,77777,9,999999999,17,0.103,0,88,0.2,0,1 -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,62928,31378,31359,11787,350,3.1,10,5,6.4,77777,9,999999999,17,0.103,0,88,0.2,0,1 -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,90086,44822,29562,11864,350,3.1,10,5,9.6,77777,9,999999999,17,0.103,0,88,0.2,0,1 -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,100883,44988,30960,12438,340,3.1,9,4,11.2,77777,9,999999999,18,0.103,0,88,0.2,0,1 -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,67069,23243,24254,9981,0,0,9,4,12.8,77777,9,999999999,18,0.103,0,88,0.2,0,1 -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,77872,15099,61019,20797,0,0,9,9,16,3658,9,999999999,18,0.103,0,88,0.2,0,1 -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,54131,8210,44135,16518,50,2.1,9,9,16,3658,9,999999999,18,0.103,0,88,0.2,0,1 -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,73944,33041,32888,12921,170,6.2,7,7,24,7620,9,999999999,18,0.103,0,88,0.2,0,1 -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,40274,7257,33783,12278,170,7.7,9,9,24,3658,9,999999999,18,0.103,0,88,0.2,0,1 -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,30364,11214,21177,7579,180,8.8,9,7,48,2134,9,999999999,18,0.103,0,88,0.2,0,1 -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,20545,10185,13606,4432,190,5.7,9,8,48,2134,9,999999999,18,0.103,0,88,0.2,0,1 -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,68,83600,191,1328,376,56,73,45,6192,0,4991,1521,160,6.7,7,6,80,8230,9,999999999,18,0.103,0,88,0.2,0,1 -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,68,83600,12,454,370,2,7,1,0,0,0,0,160,6.2,5,4,48,77777,9,999999999,18,0.103,0,88,0.2,0,1 -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,14.4,70,83600,0,0,346,0,0,0,0,0,0,0,160,4.1,0,0,40,77777,9,999999999,18,0.103,0,88,0.2,0,1 -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,77777,9,999999999,18,0.103,0,88,0.2,0,1 -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,77777,9,999999999,18,0.103,0,88,0.2,0,1 -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,77777,9,999999999,18,0.103,0,88,0.2,0,1 -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,12.8,87,83500,0,0,321,0,0,0,0,0,0,0,190,2.1,0,0,40,77777,9,999999999,18,0.103,0,88,0.2,0,1 -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,11.7,81,83500,0,0,320,0,0,0,0,0,0,0,310,1.5,0,0,40,77777,9,999999999,18,0.103,0,88,0.2,0,1 -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,77777,9,999999999,18,0.103,0,88,0.2,0,1 -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,77777,9,999999999,18,0.103,0,88,0.2,0,1 -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,83,83500,21,608,325,4,2,4,0,0,0,0,190,2.6,9,4,96,6096,9,999999999,18,0.103,0,88,0.2,0,1 -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,10,72,83600,217,1327,344,62,36,56,6851,474,6208,1879,210,2.1,9,7,96,6096,9,999999999,18,0.103,0,88,0.2,0,1 -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,11122,1883,9529,3405,220,3.1,9,8,80,3962,9,999999999,18,0.103,0,88,0.2,0,1 -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,35365,14600,24191,8519,200,3.1,9,7,112,3962,9,999999999,17,0.103,0,88,0.2,0,1 -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,53359,27701,21611,8651,190,3.6,8,6,112,7010,9,999999999,17,0.103,0,88,0.2,0,1 -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,72219,33739,31175,12349,250,2.1,7,5,112,6706,9,999999999,17,0.103,0,88,0.2,0,1 -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,73856,26879,39725,15232,270,1.5,8,6,112,6096,9,999999999,17,0.103,0,88,0.2,0,1 -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,15,83500,1258,1327,396,504,320,200,62618,22687,24973,10203,140,3.6,7,5,112,6096,9,999999999,17,0.103,0,88,0.2,0,1 -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.6,15,83400,1254,1327,397,797,439,381,94253,38253,45357,16992,120,4.1,6,4,112,6096,9,999999999,16,0.103,0,88,0.2,0,1 -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,104127,52473,32240,12803,80,3.6,4,2,112,77777,9,999999999,16,0.103,0,88,0.2,0,1 -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,90573,50742,28913,11549,90,4.6,4,3,112,77777,9,999999999,16,0.103,0,88,0.2,0,1 -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,72365,47164,26515,10178,90,4.1,4,4,96,77777,9,999999999,16,0.103,0,88,0.2,0,1 -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,52128,41775,17915,6611,120,4.1,4,4,64,77777,9,999999999,16,0.103,0,88,0.2,0,1 -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,14,83200,436,1327,403,106,72,82,12245,3604,9502,3322,80,3.1,6,6,64,6096,9,999999999,15,0.103,0,88,0.2,0,1 -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,16,83200,193,1327,390,51,53,43,5709,290,4826,1480,120,3.6,5,5,80,77777,9,999999999,15,0.103,0,88,0.2,0,1 -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,77777,9,999999999,15,0.103,0,88,0.2,0,1 -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,31,83300,0,0,363,0,0,0,0,0,0,0,0,0,3,3,32,77777,9,999999999,15,0.103,0,88,0.2,0,1 -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,77777,9,999999999,15,0.103,0,88,0.2,0,1 -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,77777,9,999999999,14,0.103,0,88,0.2,0,1 -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,77777,9,999999999,14,0.103,0,88,0.2,0,1 -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,77777,9,999999999,14,0.103,0,88,0.2,0,1 -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,77777,9,999999999,14,0.103,0,88,0.2,0,1 -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,7.2,60,83600,0,0,315,0,0,0,0,0,0,0,300,3.1,0,0,40,77777,9,999999999,13,0.103,0,88,0.2,0,1 -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,77777,9,999999999,13,0.103,0,88,0.2,0,1 -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,77777,9,999999999,13,0.103,0,88,0.2,0,1 -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,11972,2452,4457,1443,200,4.1,0,0,96,77777,9,999999999,13,0.103,0,88,0.2,0,1 -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,34577,29733,7597,2770,200,3.6,0,0,96,77777,9,999999999,13,0.103,0,88,0.2,0,1 -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,60457,45564,10593,4177,220,2.1,0,0,96,77777,9,999999999,13,0.103,0,88,0.2,0,1 -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,85238,52556,13053,5409,230,1.5,0,0,96,77777,9,999999999,14,0.103,0,88,0.2,0,1 -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,89337,91431,15791,3531,10,1.5,0,0,96,77777,9,999999999,14,0.103,0,88,0.2,0,1 -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,98742,91507,17105,5606,110,4.1,1,0,96,77777,9,999999999,14,0.103,0,88,0.2,0,1 -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,104832,93069,17360,7801,130,4.1,1,0,96,77777,9,999999999,14,0.103,0,88,0.2,0,1 -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,4.4,20,83600,1255,1327,390,943,856,133,98963,87548,17020,7515,100,6.2,2,1,96,77777,9,999999999,14,0.103,0,88,0.2,0,1 -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,111545,54070,18924,7870,120,5.7,3,1,96,77777,9,999999999,14,0.103,0,88,0.2,0,1 -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,82302,84218,15955,3393,140,5.7,2,1,96,77777,9,999999999,14,0.103,0,88,0.2,0,1 -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,81175,51362,12788,5276,130,5.7,3,3,96,77777,9,999999999,14,0.103,0,88,0.2,0,1 -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,55724,43730,14308,5465,120,5.7,2,2,96,77777,9,999999999,15,0.103,0,88,0.2,0,1 -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,26032,20085,12331,4126,140,7.7,4,3,80,77777,9,999999999,15,0.103,0,88,0.2,0,1 -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,9557,2521,6648,1863,150,6.7,4,4,80,77777,9,999999999,15,0.103,0,88,0.2,0,1 -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,7.2,32,83400,14,475,380,2,7,2,0,0,0,0,140,3.6,6,4,80,6096,9,999999999,15,0.103,0,88,0.2,0,1 -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,77777,9,999999999,15,0.103,0,88,0.2,0,1 -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,77777,9,999999999,15,0.103,0,88,0.2,0,1 -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,77777,9,999999999,15,0.103,0,88,0.2,0,1 -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,77777,9,999999999,15,0.103,0,88,0.2,0,1 -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,77777,9,999999999,15,0.103,0,88,0.2,0,1 -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,6.1,40,83300,0,0,337,0,0,0,0,0,0,0,150,6.2,0,0,40,77777,9,999999999,16,0.103,0,88,0.2,0,1 -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,77777,9,999999999,16,0.103,0,88,0.2,0,1 -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,77777,9,999999999,16,0.103,0,88,0.2,0,1 -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,77777,9,999999999,16,0.103,0,88,0.2,0,1 -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,12227,2313,4352,1416,170,2.6,0,0,80,77777,9,999999999,16,0.103,0,88,0.2,0,1 -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,34917,29211,7262,2659,240,3.1,0,0,96,77777,9,999999999,15,0.103,0,88,0.2,0,1 -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,60818,44981,10022,3964,190,5.2,0,0,96,77777,9,999999999,15,0.103,0,88,0.2,0,1 -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,73088,87547,13824,2323,190,6.2,0,0,96,77777,9,999999999,15,0.103,0,88,0.2,0,1 -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,3.3,18,83200,1078,1326,381,844,901,112,88983,91844,15020,3455,160,5.7,0,0,96,77777,9,999999999,15,0.103,0,88,0.2,0,1 -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,99641,93722,15621,5300,210,6.2,0,0,112,77777,9,999999999,14,0.103,0,88,0.2,0,1 -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,99631,89154,15777,7288,170,5.2,1,1,112,77777,9,999999999,14,0.103,0,88,0.2,0,1 -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,117145,55129,21823,8989,130,7.2,3,3,112,77777,9,999999999,14,0.103,0,88,0.2,0,1 -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,12,82900,1189,1326,414,927,797,212,113650,58124,26125,10634,150,7.2,5,5,112,77777,9,999999999,14,0.103,0,88,0.2,0,1 -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,68981,33565,27495,11058,170,7.7,6,5,112,7620,9,999999999,13,0.103,0,88,0.2,0,1 -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,57964,30757,29897,11199,180,6.7,9,7,112,4877,9,999999999,13,0.103,0,88,0.2,0,1 -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,31717,11756,23451,8166,280,4.1,8,6,112,8230,9,999999999,13,0.103,0,88,0.2,0,1 -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,2.8,18,82800,440,1326,403,215,206,147,23694,13635,16274,5015,220,3.6,6,5,112,8230,9,999999999,13,0.103,0,88,0.2,0,1 -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,9980,2513,6052,1764,180,3.1,3,3,112,77777,9,999999999,13,0.103,0,88,0.2,0,1 -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,77777,9,999999999,12,0.103,0,88,0.2,0,1 -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,77777,9,999999999,12,0.103,0,88,0.2,0,1 -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,77777,9,999999999,12,0.103,0,88,0.2,0,1 -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,-3.9,19,82900,0,0,331,0,0,0,0,0,0,0,190,3.1,3,1,40,77777,9,999999999,12,0.103,0,88,0.2,0,1 -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,77777,9,999999999,11,0.103,0,88,0.2,0,1 -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,32,82900,0,0,353,0,0,0,0,0,0,0,140,3.6,10,9,40,7010,9,999999999,11,0.104,0,88,0.2,0,1 -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,33,82900,0,0,351,0,0,0,0,0,0,0,160,2.1,10,9,40,7010,9,999999999,11,0.104,0,88,0.2,0,1 -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,7010,9,999999999,11,0.104,0,88,0.2,0,1 -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,7010,9,999999999,10,0.104,0,88,0.2,0,1 -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,77777,9,999999999,10,0.104,0,88,0.2,0,1 -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,8400,2134,4893,1561,210,3.6,5,5,96,77777,9,999999999,10,0.104,0,88,0.2,0,1 -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,22178,14909,11817,4079,220,5.7,5,4,96,77777,9,999999999,10,0.104,0,88,0.2,0,1 -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,19,83100,697,1326,353,507,815,78,62175,47961,9591,3792,220,2.6,0,0,96,77777,9,999999999,10,0.104,0,88,0.2,0,1 -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,16,83100,907,1326,366,698,880,95,73663,88893,13281,2297,220,1.5,0,0,112,77777,9,999999999,10,0.104,0,88,0.2,0,1 -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,10,83100,1078,1326,365,849,907,112,88696,91719,14999,3459,310,3.6,1,0,112,77777,9,999999999,11,0.104,0,88,0.2,0,1 -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,-6.1,9,83100,1198,1326,376,905,829,155,113838,57084,19582,8112,140,3.6,5,1,112,77777,9,999999999,11,0.104,0,88,0.2,0,1 -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,99829,87739,17807,8028,40,2.6,4,1,112,77777,9,999999999,11,0.104,0,88,0.2,0,1 -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,9,83000,1256,1326,398,984,864,165,124098,59612,20904,8620,170,4.6,4,4,112,77777,9,999999999,11,0.104,0,88,0.2,0,1 -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,88040,41346,29914,11991,170,3.6,4,4,112,77777,9,999999999,11,0.104,0,88,0.2,0,1 -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,76074,39999,23114,9476,140,4.1,4,4,112,77777,9,999999999,11,0.104,0,88,0.2,0,1 -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,9,82800,891,1326,392,571,613,159,68584,44188,19180,7711,350,2.1,6,4,112,8534,9,999999999,11,0.104,0,88,0.2,0,1 -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,9,82800,678,1326,401,483,649,151,56137,46682,17624,6539,320,3.1,6,5,112,8534,9,999999999,11,0.104,0,88,0.2,0,1 -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,20631,12243,12902,4279,350,5.2,5,5,112,77777,9,999999999,11,0.104,0,88,0.2,0,1 -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,19,82900,200,1326,371,56,113,38,6352,453,4321,1367,360,3.6,4,4,112,77777,9,999999999,11,0.104,0,88,0.2,0,1 -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,77777,9,999999999,11,0.104,0,88,0.2,0,1 -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,77777,9,999999999,12,0.104,0,88,0.2,0,1 -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,49,83200,0,0,361,0,0,0,0,0,0,0,60,4.1,3,3,32,77777,9,999999999,12,0.104,0,88,0.2,0,1 -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,77777,9,999999999,12,0.104,0,88,0.2,0,1 -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,77777,9,999999999,12,0.104,0,88,0.2,0,1 -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,77777,9,999999999,12,0.104,0,88,0.2,0,1 -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,5.6,53,83500,0,0,314,0,0,0,0,0,0,0,350,1.5,0,0,40,77777,9,999999999,12,0.104,0,88,0.2,0,1 -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,57,83600,0,0,306,0,0,0,0,0,0,0,300,2.1,0,0,40,77777,9,999999999,12,0.104,0,88,0.2,0,1 -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,57,83600,0,0,306,0,0,0,0,0,0,0,0,0,0,0,40,77777,9,999999999,12,0.104,0,88,0.2,0,1 -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,32,77777,9,999999999,12,0.104,0,88,0.2,0,1 -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,12785,2350,4040,1327,40,2.6,0,0,80,77777,9,999999999,12,0.104,0,88,0.2,0,1 -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,36055,31185,6722,2469,30,2.6,0,0,80,77777,9,999999999,12,0.104,0,88,0.2,0,1 -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,3.3,33,83900,697,1326,333,506,818,75,53945,81528,11015,1631,40,2.1,0,0,80,77777,9,999999999,12,0.104,0,88,0.2,0,1 -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,73752,89463,12760,2265,70,2.1,0,0,80,77777,9,999999999,12,0.104,0,88,0.2,0,1 -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,90119,93987,13757,3303,180,2.1,0,0,80,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,101649,96546,14417,5023,100,2.1,0,0,80,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,100595,90656,14475,6842,130,3.6,1,1,96,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,25,83600,1256,1326,383,945,794,192,117585,54316,24009,9849,170,4.1,3,3,96,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,102263,48459,35173,13819,90,5.7,5,5,96,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,73382,34941,26715,10830,130,5.7,4,4,80,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,36,83500,892,1326,389,615,754,107,75767,45188,13228,5469,130,6.2,4,4,80,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,48165,34943,13982,5371,140,3.6,3,3,80,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,28329,23352,10775,3725,0,0,2,2,80,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,8.9,36,83600,201,1326,379,83,287,39,9374,391,4415,1400,50,5.7,3,3,80,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,4,4,40,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,5,5,40,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,9883,2784,8067,2241,150,2.1,4,4,72,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,27831,21964,14028,4667,240,2.1,2,2,80,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,50378,38021,17800,6679,160,2.1,1,0,80,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,77505,50923,22128,8814,140,3.6,0,0,96,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,28,84200,1078,1325,325,811,740,209,98056,54931,25397,10340,150,5.2,0,0,96,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,112928,57062,27644,11195,140,5.7,0,0,96,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,120588,57454,28768,11620,90,4.1,0,0,96,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,120339,57415,28643,11575,150,3.6,0,0,96,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,107799,53305,29172,11754,100,3.6,1,1,96,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,5,28,83800,1067,1325,377,659,456,291,77416,37103,34387,13366,60,3.6,6,4,80,7010,9,999999999,13,0.104,0,88,0.2,0,1 -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,4.4,26,83800,894,1325,402,269,122,186,31862,8872,22135,8783,70,4.1,9,9,80,3962,9,999999999,13,0.104,0,88,0.2,0,1 -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,19426,2802,17055,6386,50,3.6,9,9,80,3962,9,999999999,13,0.104,0,88,0.2,0,1 -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,25928,19620,13523,4454,80,5.2,4,3,80,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,8563,1612,7181,1993,110,5.2,2,2,80,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,7.2,60,84000,0,0,315,0,0,0,0,0,0,0,160,2.1,0,0,48,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,61,84100,0,0,301,0,0,0,0,0,0,0,330,2.6,0,0,32,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,1.1,54,84200,0,0,288,0,0,0,0,0,0,0,330,2.1,0,0,48,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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.6,52,84200,23,629,287,7,89,4,0,0,0,0,330,1.5,0,0,112,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,13826,2351,3403,1135,0,0,0,0,112,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,33128,71099,7004,1087,360,2.6,0,0,112,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,54759,85379,9053,1521,70,2.6,0,0,112,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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.6,27,84200,907,1325,330,701,916,74,74583,92761,10492,2063,0,0,0,0,112,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,24,84200,1078,1325,335,855,949,83,90565,96584,11320,2923,70,2.6,0,0,112,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,23,84200,1198,1325,340,964,967,89,101829,98595,11798,4323,60,3.1,0,0,112,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,21,84100,1259,1325,359,960,823,177,120402,56606,22305,9176,0,0,2,2,112,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,19,84000,1257,1325,368,910,820,131,94974,83447,16750,7616,30,2.1,3,3,112,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,19,83900,1192,1325,367,898,831,150,112999,55657,18957,7874,70,3.6,5,2,112,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,18,83900,1068,1325,379,863,879,153,106638,60179,18986,7906,350,2.1,5,5,112,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,17,83800,895,1325,373,636,783,107,78671,50273,13280,5475,220,1.5,2,2,96,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,17,83800,683,1325,368,473,797,62,50488,79053,9219,1508,120,3.1,1,1,80,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,31976,28288,8015,2880,120,3.1,2,2,80,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,12309,2019,4226,1353,60,4.1,3,3,80,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,2.2,31,83900,0,0,338,0,0,0,0,0,0,0,120,2.1,1,1,48,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,46,83800,0,0,320,0,0,0,0,0,0,0,180,3.1,0,0,32,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,69,83700,0,0,321,0,0,0,0,0,0,0,230,2.1,0,0,32,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,12173,3201,4676,1509,300,1.5,1,1,64,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,36306,30492,6385,2354,350,2.1,1,0,80,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,54360,83234,10178,1596,350,1.5,0,0,80,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,74140,90942,11831,2195,10,2.6,0,0,96,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,90375,95104,12736,3159,30,3.6,0,0,80,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,5.6,29,83800,1198,1325,360,962,951,101,102031,97557,13302,4751,40,2.6,0,0,80,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,107616,98370,13493,6514,40,3.1,0,0,80,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,102314,93398,13254,6327,120,3.1,1,1,80,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,2.8,18,83600,1192,1325,397,932,829,185,115413,57516,23020,9471,120,2.6,3,3,80,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,93836,51214,20356,8445,100,2.1,2,2,80,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,2.2,17,83500,896,1325,396,521,543,154,62684,37712,18607,7526,360,4.1,3,3,80,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,48769,34141,23883,8336,360,4.1,5,4,80,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,21177,15556,6474,2365,100,3.6,6,5,80,9144,9,999999999,13,0.104,0,88,0.2,0,1 -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,9777,2434,7983,2134,160,4.1,6,5,80,9144,9,999999999,13,0.104,0,88,0.2,0,1 -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,9144,9,999999999,13,0.104,0,88,0.2,0,1 -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,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,7.2,43,83500,0,0,338,0,0,0,0,0,0,0,190,4.6,0,0,48,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,10934,3918,5312,1676,210,4.1,5,2,112,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,30173,25673,8594,3103,190,4.6,4,1,112,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,55180,42608,14619,5632,200,5.7,4,2,112,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,74972,46625,15592,6410,180,5.2,3,3,128,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,84252,84620,16645,3632,200,5.2,2,2,128,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,12,83300,1198,1325,411,795,663,195,98230,47175,24213,9919,170,3.1,5,3,128,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,107183,49658,29256,11789,190,4.1,7,5,128,7620,9,999999999,13,0.104,0,88,0.2,0,1 -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,57637,17000,32108,12798,210,5.7,10,8,112,7620,9,999999999,13,0.104,0,88,0.2,0,1 -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,57972,18016,33629,13275,190,2.6,9,7,112,5486,9,999999999,13,0.104,0,88,0.2,0,1 -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,81345,28629,56973,18701,350,6.2,9,8,96,5486,9,999999999,13,0.104,0,88,0.2,0,1 -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,25469,0,25704,10879,360,3.1,10,10,96,3658,9,999999999,14,0.104,0,88,0.2,0,1 -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,18169,0,18326,7444,60,4.1,10,10,96,4572,9,999999999,14,0.104,0,88,0.2,0,1 -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,10498,0,10581,4077,120,2.1,10,10,96,4572,9,999999999,14,0.104,0,88,0.2,0,1 -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,3815,0,3842,1418,150,2.1,10,10,96,4572,9,999999999,14,0.104,0,88,0.2,0,1 -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,4572,9,999999999,14,0.104,0,88,0.2,0,1 -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,4572,9,999999999,14,0.104,0,88,0.2,0,1 -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,4.4,36,83300,0,0,346,0,0,0,0,0,0,0,180,1.5,2,2,40,77777,9,999999999,14,0.104,0,88,0.2,0,1 -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,40,83300,0,0,337,0,0,0,0,0,0,0,190,3.6,1,1,40,77777,9,999999999,14,0.104,0,88,0.2,0,1 -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,77777,9,999999999,14,0.104,0,88,0.2,0,1 -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,77777,9,999999999,14,0.104,0,88,0.2,0,1 -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,77777,9,999999999,14,0.104,0,88,0.2,0,1 -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,77777,9,999999999,14,0.104,0,88,0.2,0,1 -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,5,51,83300,0,0,319,0,0,0,0,0,0,0,210,3.1,4,1,64,77777,9,999999999,15,0.104,0,88,0.2,0,1 -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,5,51,83300,24,629,319,6,61,4,0,0,0,0,210,3.6,4,1,96,77777,9,999999999,15,0.104,0,88,0.2,0,1 -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,12836,3512,4365,1422,200,3.6,5,0,96,77777,9,999999999,15,0.104,0,88,0.2,0,1 -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,35,83200,463,1324,340,299,673,64,35438,30800,7604,2775,220,3.6,5,0,96,77777,9,999999999,15,0.104,0,88,0.2,0,1 -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,51980,39214,16692,6331,190,7.2,5,3,112,77777,9,999999999,14,0.104,0,88,0.2,0,1 -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,3.3,18,83200,907,1324,394,646,751,132,78779,49716,16160,6631,210,4.6,6,2,112,77777,9,999999999,14,0.104,0,88,0.2,0,1 -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,90270,49044,22120,9120,210,2.1,9,3,112,77777,9,999999999,14,0.104,0,88,0.2,0,1 -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,113294,55717,19449,8067,90,1.5,7,2,112,77777,9,999999999,14,0.104,0,88,0.2,0,1 -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,108461,50611,31655,12644,180,2.1,9,3,112,77777,9,999999999,14,0.104,0,88,0.2,0,1 -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,11,83000,1258,1324,426,1002,780,260,122129,59482,31870,12720,360,3.1,10,4,112,77777,9,999999999,14,0.104,0,88,0.2,0,1 -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,84845,37258,35079,13758,270,2.6,10,5,112,77777,9,999999999,14,0.104,0,88,0.2,0,1 -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,11,82800,1071,1324,430,649,524,226,77912,39905,27273,11002,280,2.1,10,5,112,77777,9,999999999,14,0.104,0,88,0.2,0,1 -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,36576,17296,14782,6072,300,4.6,8,8,104,4877,9,999999999,14,0.104,0,88,0.2,0,1 -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,25421,1149,24757,8565,310,3.6,9,9,96,6096,9,999999999,14,0.104,0,88,0.2,0,1 -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,12,82800,452,1324,439,175,57,155,19284,3956,17160,5270,320,2.6,9,9,96,6096,9,999999999,14,0.104,0,88,0.2,0,1 -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,14,82800,210,1324,435,43,0,43,4213,0,4243,1532,50,2.1,10,10,96,6096,9,999999999,14,0.104,0,88,0.2,0,1 -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,6096,9,999999999,14,0.104,0,88,0.2,0,1 -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,1.1,21,82800,0,0,366,0,0,0,0,0,0,0,170,3.6,7,2,40,77777,9,999999999,14,0.104,0,88,0.2,0,1 -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.6,20,82800,0,0,372,0,0,0,0,0,0,0,190,4.6,8,4,40,6096,9,999999999,14,0.104,0,88,0.2,0,1 -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,6096,9,999999999,13,0.104,0,88,0.2,0,1 -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,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,7620,9,999999999,13,0.104,0,88,0.2,0,1 -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,7620,9,999999999,13,0.104,0,88,0.2,0,1 -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,7925,9,999999999,13,0.104,0,88,0.2,0,1 -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,9993,3521,7162,2089,170,4.1,10,6,96,7925,9,999999999,13,0.104,0,88,0.2,0,1 -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,27530,19854,15672,5060,170,3.6,10,6,96,7925,9,999999999,13,0.104,0,88,0.2,0,1 -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,43327,24634,25748,8898,180,3.6,9,6,96,7925,9,999999999,13,0.104,0,88,0.2,0,1 -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,59626,27663,36082,12989,220,3.6,8,8,112,6401,9,999999999,13,0.104,0,88,0.2,0,1 -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,51284,18688,27889,11221,240,2.1,7,6,112,6401,9,999999999,13,0.104,0,88,0.2,0,1 -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,62313,19247,37471,14524,350,2.1,8,8,112,6401,9,999999999,13,0.104,0,88,0.2,0,1 -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,110084,52061,35534,13962,210,6.2,5,5,112,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,102313,46470,37663,14658,300,3.1,6,5,128,8230,9,999999999,13,0.104,0,88,0.2,0,1 -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,115999,60205,26746,10855,180,5.7,5,5,128,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,89562,49519,25056,10201,200,2.6,3,3,128,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,77526,50539,15366,6297,300,2.1,2,2,128,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,41965,29251,16902,6351,310,4.6,8,4,112,8534,9,999999999,13,0.104,0,88,0.2,0,1 -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,28623,24756,9764,3445,330,5.2,7,4,112,8534,9,999999999,13,0.104,0,88,0.2,0,1 -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,12,82500,212,1324,411,89,162,63,9745,3236,6922,1990,360,3.6,6,4,96,7620,9,999999999,13,0.104,0,88,0.2,0,1 -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,7620,9,999999999,13,0.104,0,88,0.2,0,1 -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,8.3,35,82900,0,0,379,0,0,0,0,0,0,0,60,7.2,3,3,48,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,77777,9,999999999,13,0.104,0,88,0.2,0,1 -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,77777,9,999999999,13,0.103,0,88,0.2,0,1 -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,77777,9,999999999,13,0.103,0,88,0.2,0,1 -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,77777,9,999999999,13,0.103,0,88,0.2,0,1 -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,77777,9,999999999,13,0.103,0,88,0.2,0,1 -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,96,77777,9,999999999,13,0.103,0,88,0.2,0,1 -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,13187,1578,3507,1169,230,2.1,1,1,96,77777,9,999999999,13,0.103,0,88,0.2,0,1 -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,41,83300,462,1324,338,270,596,61,32117,26829,7273,2662,90,1,2,2,96,77777,9,999999999,13,0.103,0,88,0.2,0,1 -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,9.4,50,83300,696,1324,355,419,479,167,48297,33219,19337,7179,50,3.1,3,3,88,77777,9,999999999,13,0.103,0,88,0.2,0,1 -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,49,83300,906,1324,367,520,582,121,63654,35879,14867,6142,150,2.6,5,5,80,77777,9,999999999,13,0.103,0,88,0.2,0,1 -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,47,83300,1077,1324,370,614,577,144,76065,36422,17915,7508,50,5.2,5,5,72,77777,9,999999999,14,0.103,0,88,0.2,0,1 -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,44,83200,1197,1324,366,916,861,137,97116,88791,17732,5804,20,2.1,2,2,72,77777,9,999999999,14,0.103,0,88,0.2,0,1 -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,10,39,83200,1259,1324,365,1021,985,84,109770,102001,11056,5512,190,2.1,0,0,64,77777,9,999999999,14,0.103,0,88,0.2,0,1 -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,109816,102021,11062,5467,70,2.1,0,0,64,77777,9,999999999,14,0.103,0,88,0.2,0,1 -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,103218,100599,10825,3970,140,6.2,0,0,64,77777,9,999999999,14,0.103,0,88,0.2,0,1 -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,91450,98454,10448,2717,140,5.7,0,0,64,77777,9,999999999,14,0.103,0,88,0.2,0,1 -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,74894,94556,9310,1895,180,6.2,1,1,64,77777,9,999999999,14,0.103,0,88,0.2,0,1 -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,10.6,30,82800,689,1324,398,476,789,65,51646,79589,9653,1547,350,7.2,1,1,64,77777,9,999999999,14,0.103,0,88,0.2,0,1 -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,33512,73735,6285,1024,310,5.2,0,0,56,77777,9,999999999,14,0.103,0,88,0.2,0,1 -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,12574,43911,4237,587,330,3.1,0,0,48,77777,9,999999999,14,0.103,0,88,0.2,0,1 -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,77777,9,999999999,14,0.103,0,88,0.2,0,1 -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,40,77777,9,999999999,14,0.103,0,88,0.2,0,1 -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,77777,9,999999999,14,0.103,0,88,0.2,0,1 -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,11.7,59,83100,0,0,343,0,0,0,0,0,0,0,230,2.6,0,0,40,77777,9,999999999,14,0.103,0,88,0.2,0,1 -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,77777,9,999999999,14,0.103,0,88,0.2,0,1 -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,77777,9,999999999,14,0.103,0,88,0.2,0,1 -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,396,9,999999999,14,0.103,0,88,0.2,0,1 -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,427,9,999999999,14,0.103,0,88,0.2,0,1 -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,640,9,999999999,15,0.103,0,88,0.2,0,1 -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,853,9,999999999,15,0.103,0,88,0.2,0,1 -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,2631,0,2651,1068,360,4.1,10,10,19.2,366,9,999999999,15,0.103,0,88,0.2,0,1 -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,7167,0,7225,3066,360,3.6,10,10,19.2,305,9,999999999,15,0.103,0,88,0.2,0,1 -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,12301,0,12410,5553,40,4.6,10,10,16,305,9,999999999,15,0.103,0,88,0.2,0,1 -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,20388,0,20580,9269,30,5.2,10,10,19.2,427,9,999999999,15,0.103,0,88,0.2,0,1 -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,70645,22145,48305,17169,30,2.6,7,7,24,914,9,999999999,15,0.103,0,88,0.2,0,1 -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,73764,26599,36271,14206,340,3.6,8,8,24,914,9,999999999,15,0.103,0,88,0.2,0,1 -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,104100,93675,14736,7059,340,4.6,1,1,24,77777,9,999999999,15,0.103,0,88,0.2,0,1 -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,108112,97603,14982,7100,360,2.1,0,0,24,77777,9,999999999,15,0.103,0,88,0.2,0,1 -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,101911,96381,14693,5042,40,4.1,0,0,19.2,77777,9,999999999,15,0.103,0,88,0.2,0,1 -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,90410,94040,14183,3311,80,4.6,0,0,24,77777,9,999999999,15,0.103,0,88,0.2,0,1 -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,66984,38073,13815,5719,120,6.2,1,1,24,77777,9,999999999,15,0.103,0,88,0.2,0,1 -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,11.7,32,83400,690,1324,392,497,805,76,60703,42686,9308,3689,60,6.2,0,0,32,77777,9,999999999,15,0.103,0,88,0.2,0,1 -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,34895,27174,6684,2455,30,6.2,0,0,32,77777,9,999999999,15,0.103,0,88,0.2,0,1 -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,12.2,45,83500,214,1324,368,106,437,35,12131,46,4014,1314,340,7.2,0,0,32,77777,9,999999999,15,0.103,0,88,0.2,0,1 -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,77777,9,999999999,15,0.103,0,88,0.2,0,1 -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,77777,9,999999999,15,0.103,0,88,0.2,0,1 -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,77777,9,999999999,15,0.103,0,88,0.2,0,1 -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,77777,9,999999999,15,0.103,0,88,0.2,0,1 -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,77777,9,999999999,15,0.103,0,88,0.2,0,1 -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,77777,9,999999999,15,0.103,0,88,0.2,0,1 -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,77777,9,999999999,15,0.103,0,88,0.2,0,1 -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,77777,9,999999999,15,0.103,0,88,0.2,0,1 -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,77777,9,999999999,15,0.103,0,88,0.2,0,1 -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,15,0.103,0,88,0.2,0,1 -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,2139,0,2155,891,350,3.1,10,10,4,61,9,999999999,15,0.103,0,88,0.2,0,1 -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,8245,0,8313,3447,360,3.1,10,10,9.6,549,9,999999999,15,0.103,0,88,0.2,0,1 -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,78,84200,695,1323,383,275,73,237,30701,5606,26606,9132,60,2.6,10,9,12.8,762,9,999999999,16,0.103,0,88,0.2,0,1 -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,68,84100,905,1323,380,490,394,220,57112,27753,25778,10103,70,3.1,7,7,14.4,792,9,999999999,16,0.103,0,88,0.2,0,1 -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,73611,29793,38848,14781,20,2.6,8,6,14.4,792,9,999999999,16,0.103,0,88,0.2,0,1 -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,99653,44033,31761,12719,10,4.1,7,5,17.6,7010,9,999999999,17,0.103,0,88,0.2,0,1 -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,100279,37105,53078,19130,60,5.2,5,5,19.2,77777,9,999999999,17,0.103,0,88,0.2,0,1 -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,115717,48200,21243,8810,50,3.1,2,2,19.2,77777,9,999999999,17,0.103,0,88,0.2,0,1 -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,106925,47857,24746,10177,10,4.1,3,3,32,77777,9,999999999,18,0.103,0,88,0.2,0,1 -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,47,84000,1073,1323,402,736,607,244,87289,42581,29100,11708,70,5.7,4,4,40,77777,9,999999999,18,0.103,0,88,0.2,0,1 -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,85511,52999,21629,8671,80,3.1,4,4,48,77777,9,999999999,18,0.103,0,88,0.2,0,1 -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,52046,36297,17113,6472,50,2.1,5,5,48,77777,9,999999999,18,0.103,0,88,0.2,0,1 -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,20498,4267,18080,5499,120,3.1,5,5,32,77777,9,999999999,19,0.103,0,88,0.2,0,1 -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,8849,1132,5770,1776,110,6.2,5,5,32,77777,9,999999999,19,0.103,0,88,0.2,0,1 -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,60,84000,22,607,387,4,3,4,0,0,0,0,110,3.1,6,6,32,7620,9,999999999,19,0.103,0,88,0.2,0,1 -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,66,84100,0,0,409,0,0,0,0,0,0,0,130,2.1,10,10,24,7620,9,999999999,20,0.103,0,88,0.2,0,1 -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,7620,9,999999999,20,0.103,0,88,0.2,0,1 -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,7620,9,999999999,20,0.103,0,88,0.2,0,1 -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,7010,9,999999999,20,0.103,0,88,0.2,0,1 -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,7010,9,999999999,21,0.103,0,88,0.2,0,1 -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,81,84000,0,0,345,0,0,0,0,0,0,0,360,1.5,6,1,24,77777,9,999999999,21,0.103,0,88,0.2,0,1 -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,90,84000,0,0,338,0,0,0,0,0,0,0,0,0,3,1,24,77777,9,999999999,21,0.103,0,88,0.2,0,1 -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,77777,9,999999999,22,0.103,0,88,0.2,0,1 -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,4,3,12.8,77777,9,999999999,22,0.103,0,88,0.2,0,1 -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,2719,0,2740,1101,350,3.1,10,10,6.4,244,9,999999999,22,0.103,0,88,0.2,0,1 -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,5359,0,5403,2391,320,3.6,10,10,4.8,152,9,999999999,22,0.103,0,88,0.2,0,1 -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,16.7,81,84100,694,1323,402,114,0,114,11546,0,11648,5280,320,3.1,10,10,9.6,335,9,999999999,22,0.103,0,88,0.2,0,1 -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,61086,31866,19296,7855,260,2.6,5,5,11.2,77777,9,999999999,21,0.103,0,88,0.2,0,1 -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,98486,47611,18199,7646,320,1.5,1,0,11.2,77777,9,999999999,21,0.103,0,88,0.2,0,1 -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,91621,37969,24040,9919,350,2.6,1,1,12.8,77777,9,999999999,21,0.103,0,88,0.2,0,1 -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,84527,30221,36694,14446,330,3.6,5,5,16,77777,9,999999999,21,0.103,0,88,0.2,0,1 -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,81376,16436,62662,21199,300,6.2,9,9,16,1676,9,999999999,21,0.103,0,88,0.2,0,1 -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,28084,0,28375,12829,350,2.1,10,10,11.2,1676,9,999999999,21,0.103,0,88,0.2,0,1 -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,30821,0,31123,13471,360,3.1,10,10,32,3353,9,999999999,21,0.103,0,88,0.2,0,1 -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,24678,0,24908,10691,20,6.2,10,10,32,3353,9,999999999,21,0.103,0,88,0.2,0,1 -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,17227,0,17380,7241,230,4.6,10,10,32,10668,9,999999999,20,0.103,0,88,0.2,0,1 -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,9653,0,9731,3876,270,3.1,10,10,48,10668,9,999999999,20,0.103,0,88,0.2,0,1 -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,4086,0,4116,1523,160,2.1,10,10,48,10668,9,999999999,20,0.103,0,88,0.2,0,1 -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,3048,9,999999999,20,0.103,0,88,0.2,0,1 -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,7620,9,999999999,20,0.103,0,88,0.2,0,1 -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,7620,9,999999999,20,0.103,0,88,0.2,0,1 -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,7620,9,999999999,20,0.103,0,88,0.2,0,1 -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,7620,9,999999999,20,0.103,0,88,0.2,0,1 -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,7620,9,999999999,19,0.103,0,88,0.2,0,1 -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,7620,9,999999999,19,0.103,0,88,0.2,0,1 -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,77777,9,999999999,19,0.103,0,88,0.2,0,1 -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,77777,9,999999999,19,0.103,0,88,0.2,0,1 -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,63,83800,23,628,345,5,36,4,0,0,0,0,160,2.6,4,4,96,77777,9,999999999,19,0.103,0,88,0.2,0,1 -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,12659,2685,4872,1563,270,1.5,3,3,112,77777,9,999999999,19,0.103,0,88,0.2,0,1 -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,32390,24952,6588,2429,290,2.6,1,1,112,77777,9,999999999,20,0.103,0,88,0.2,0,1 -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,57087,40038,9663,3833,310,1.5,1,1,112,77777,9,999999999,20,0.103,0,88,0.2,0,1 -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,12.2,45,84000,903,1323,368,683,870,89,73810,89644,12530,2242,340,2.6,0,0,112,77777,9,999999999,20,0.103,0,88,0.2,0,1 -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,95388,47584,17892,7507,350,2.6,1,1,112,77777,9,999999999,20,0.103,0,88,0.2,0,1 -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,111609,52257,26393,10778,340,2.6,2,2,112,77777,9,999999999,21,0.103,0,88,0.2,0,1 -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,108770,46854,20718,8579,350,4.6,3,3,112,77777,9,999999999,21,0.103,0,88,0.2,0,1 -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,94353,39267,33828,13429,10,3.1,6,4,112,6096,9,999999999,21,0.103,0,88,0.2,0,1 -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,78489,29471,39970,15338,40,4.6,8,8,112,6096,9,999999999,22,0.103,0,88,0.2,0,1 -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,82826,40998,30309,12088,330,7.7,7,7,64,3962,9,999999999,22,0.103,0,88,0.2,0,1 -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,68133,38684,29195,11121,340,9.8,8,8,64,3962,9,999999999,22,0.103,0,88,0.2,0,1 -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,35640,19509,18247,6822,310,8.2,7,7,64,5486,9,999999999,22,0.103,0,88,0.2,0,1 -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,10854,0,10941,4234,140,5.2,10,10,64,5486,9,999999999,23,0.103,0,88,0.2,0,1 -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,4037,0,3698,1227,110,3.1,9,9,64,3658,9,999999999,23,0.103,0,88,0.2,0,1 -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,7620,9,999999999,23,0.103,0,88,0.2,0,1 -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,12.8,63,84200,0,0,365,0,0,0,0,0,0,0,200,2.6,7,5,40,7620,9,999999999,24,0.103,0,88,0.2,0,1 -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,7620,9,999999999,24,0.103,0,88,0.2,0,1 -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,3658,9,999999999,24,0.103,0,88,0.2,0,1 -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,3962,9,999999999,24,0.103,0,88,0.2,0,1 -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,7620,9,999999999,25,0.102,0,88,0.2,0,1 -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,77777,9,999999999,25,0.102,0,88,0.2,0,1 -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,77777,9,999999999,25,0.102,0,88,0.2,0,1 -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,12.8,87,84100,0,0,340,0,0,0,0,0,0,0,190,1.5,5,5,40,77777,9,999999999,25,0.102,0,88,0.2,0,1 -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,12.2,83,84100,23,628,337,4,2,4,0,0,0,0,190,2.1,5,4,96,77777,9,999999999,26,0.102,0,88,0.2,0,1 -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,8569,1607,6614,1978,190,1.5,5,5,104,77777,9,999999999,26,0.102,0,88,0.2,0,1 -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,17622,5818,13637,4578,220,1.5,8,8,96,4267,9,999999999,26,0.102,0,88,0.2,0,1 -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,46894,31514,18563,6938,340,2.1,7,6,96,7620,9,999999999,26,0.102,0,88,0.2,0,1 -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,62796,32666,29485,11234,320,3.1,6,5,96,7620,9,999999999,27,0.102,0,88,0.2,0,1 -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,71941,32268,27949,11295,40,3.1,5,4,96,77777,9,999999999,27,0.102,0,88,0.2,0,1 -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,107234,50620,35281,13880,340,2.6,4,4,96,77777,9,999999999,27,0.102,0,88,0.2,0,1 -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,112107,49769,33784,13431,60,4.1,4,4,80,77777,9,999999999,27,0.102,0,88,0.2,0,1 -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,72106,18346,48169,17849,60,3.1,6,6,64,7620,9,999999999,28,0.102,0,88,0.2,0,1 -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,87124,33256,46032,17085,60,6.2,7,7,56,3048,9,999999999,28,0.102,0,88,0.2,0,1 -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,76260,29520,45421,16486,80,5.2,10,8,56,3048,9,999999999,28,0.102,0,88,0.2,0,1 -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,19522,0,19706,8952,340,10.3,10,10,24,1829,9,999999999,28,0.102,0,88,0.2,0,1 -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,13676,0,13798,6060,360,5.2,10,10,24,1829,9,999999999,29,0.102,0,88,0.2,0,1 -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,7544,0,7606,3196,340,5.2,10,10,24,1829,9,999999999,29,0.102,0,88,0.2,0,1 -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,81,84300,219,1323,391,35,0,35,3404,0,3429,1322,300,2.1,10,10,24,1219,9,999999999,29,0.102,0,88,0.2,0,1 -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,29,0.102,0,88,0.2,0,1 -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,30,0.102,0,88,0.2,0,1 -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,3048,9,999999999,30,0.102,0,88,0.2,0,1 -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,4572,9,999999999,30,0.102,0,88,0.2,0,1 -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,4572,9,999999999,30,0.102,0,88,0.2,0,1 -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,87,84200,0,0,353,0,0,0,0,0,0,0,350,3.1,10,5,19.2,77777,9,999999999,31,0.102,0,88,0.2,0,1 -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,31,0.102,0,88,0.2,0,1 -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,90,84200,0,0,382,0,0,0,0,0,0,0,350,1.5,10,10,9.6,244,9,999999999,31,0.102,0,88,0.2,0,1 -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,96,84100,0,0,340,0,0,0,0,0,0,0,170,1.5,6,3,12.8,77777,9,999999999,31,0.102,0,88,0.2,0,1 -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,77777,9,999999999,32,0.102,0,88,0.2,0,1 -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,87,84200,217,1322,357,76,76,64,8285,1064,7002,2055,190,2.1,6,6,12.8,3353,9,999999999,32,0.102,0,88,0.2,0,1 -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,14025,3696,10986,3859,190,3.1,9,9,9.6,732,9,999999999,31,0.102,0,88,0.2,0,1 -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,44606,28750,15946,6101,150,2.1,3,3,11.2,77777,9,999999999,31,0.102,0,88,0.2,0,1 -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,77473,44048,14596,6046,70,2.6,4,2,16,77777,9,999999999,31,0.102,0,88,0.2,0,1 -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,86084,41245,19586,8190,210,2.1,6,3,19.2,77777,9,999999999,31,0.102,0,88,0.2,0,1 -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,106353,47608,25437,10437,130,3.6,7,2,24,77777,9,999999999,31,0.102,0,88,0.2,0,1 -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,117934,50641,22550,9315,320,2.1,8,3,24,77777,9,999999999,31,0.102,0,88,0.2,0,1 -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,83919,24303,53783,19286,0,0,7,6,24,9144,9,999999999,31,0.102,0,88,0.2,0,1 -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,67656,21919,35651,14024,110,5.2,9,8,24,6706,9,999999999,31,0.102,0,88,0.2,0,1 -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,49893,10723,37098,14270,100,2.6,9,9,32,3658,9,999999999,31,0.102,0,88,0.2,0,1 -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,46225,15782,29373,11228,230,1.5,10,8,32,3658,9,999999999,31,0.102,0,88,0.2,0,1 -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,39122,22457,16789,6385,130,2.6,10,7,32,3658,9,999999999,31,0.102,0,88,0.2,0,1 -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,11602,0,11697,4465,200,3.1,10,10,32,3658,9,999999999,31,0.102,0,88,0.2,0,1 -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,3692,0,3719,1415,170,6.7,10,10,24,1676,9,999999999,31,0.102,0,88,0.2,0,1 -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,81,83900,23,628,391,3,0,3,0,0,0,0,200,3.6,10,10,32,3658,9,999999999,31,0.102,0,88,0.2,0,1 -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,3658,9,999999999,31,0.102,0,88,0.2,0,1 -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,7620,9,999999999,31,0.102,0,88,0.2,0,1 -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,7620,9,999999999,30,0.102,0,88,0.2,0,1 -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,87,83700,0,0,366,0,0,0,0,0,0,0,170,2.1,8,8,40,3353,9,999999999,30,0.102,0,88,0.2,0,1 -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,3353,9,999999999,30,0.102,0,88,0.2,0,1 -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,3658,9,999999999,30,0.102,0,88,0.2,0,1 -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,3658,9,999999999,30,0.102,0,88,0.2,0,1 -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,3658,9,999999999,30,0.102,0,88,0.2,0,1 -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,7315,9,999999999,30,0.102,0,88,0.2,0,1 -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,9055,1500,5381,1691,200,3.6,7,5,112,7315,9,999999999,30,0.102,0,88,0.2,0,1 -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,22408,14824,9733,3470,190,3.6,6,4,104,9754,9,999999999,30,0.102,0,88,0.2,0,1 -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,12.2,45,83700,691,1322,386,343,445,110,40757,25950,13118,5115,140,1.5,7,4,96,9754,9,999999999,29,0.102,0,88,0.2,0,1 -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,46276,15984,30100,11415,30,7.7,8,8,80,2896,9,999999999,29,0.102,0,88,0.2,0,1 -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,25514,0,25766,11677,40,5.2,10,10,80,2286,9,999999999,29,0.102,0,88,0.2,0,1 -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,28791,0,29087,13061,320,5.7,10,10,16,1829,9,999999999,29,0.102,0,88,0.2,0,1 -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,30679,0,30999,13812,330,4.1,10,10,80,2743,9,999999999,29,0.102,0,88,0.2,0,1 -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,39551,7049,27169,11076,210,3.1,8,8,80,3658,9,999999999,29,0.102,0,88,0.2,0,1 -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,64438,22275,28500,11566,130,2.1,6,6,40,9144,9,999999999,28,0.102,0,88,0.2,0,1 -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,97324,49319,20071,8370,0,0,6,5,40,6706,9,999999999,28,0.102,0,88,0.2,0,1 -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,56543,27009,28077,10811,50,3.1,9,7,40,3658,9,999999999,28,0.102,0,88,0.2,0,1 -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,50529,35110,18657,6969,40,4.1,8,6,40,3962,9,999999999,28,0.102,0,88,0.2,0,1 -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,12.2,61,83800,462,1322,371,144,135,97,16448,6712,11119,3891,30,4.1,7,7,40,3658,9,999999999,28,0.102,0,88,0.2,0,1 -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,13.9,68,83900,220,1322,366,64,75,52,7106,666,5791,1795,10,4.1,5,5,64,77777,9,999999999,27,0.102,0,88,0.2,0,1 -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,77777,9,999999999,27,0.102,0,88,0.2,0,1 -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,77777,9,999999999,27,0.102,0,88,0.2,0,1 -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,40,77777,9,999999999,27,0.102,0,88,0.2,0,1 -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,1341,9,999999999,27,0.102,0,88,0.2,0,1 -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,1280,9,999999999,26,0.102,0,88,0.2,0,1 -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,1463,9,999999999,26,0.101,0,88,0.2,0,1 -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,3,3,32,77777,9,999999999,26,0.101,0,88,0.2,0,1 -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,77777,9,999999999,26,0.101,0,88,0.2,0,1 -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,77777,9,999999999,26,0.101,0,88,0.2,0,1 -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,77777,9,999999999,25,0.101,0,88,0.2,0,1 -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,11755,681,4232,1383,110,1.5,0,0,64,77777,9,999999999,25,0.101,0,88,0.2,0,1 -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,33952,26378,7021,2577,130,1.5,0,0,64,77777,9,999999999,25,0.101,0,88,0.2,0,1 -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,59120,41838,9881,3914,0,0,0,0,64,77777,9,999999999,24,0.101,0,88,0.2,0,1 -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,72323,86786,13725,2305,100,3.1,0,0,64,77777,9,999999999,24,0.101,0,88,0.2,0,1 -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,88544,91307,14805,3412,130,3.6,0,0,64,77777,9,999999999,24,0.101,0,88,0.2,0,1 -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,9.4,37,84000,1194,1322,364,937,907,118,99650,93538,15415,5262,120,1.5,0,0,64,77777,9,999999999,23,0.101,0,88,0.2,0,1 -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,105092,94180,15677,7430,360,2.6,0,0,80,77777,9,999999999,23,0.101,0,88,0.2,0,1 -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,100808,89999,15432,7357,320,1.5,1,1,80,77777,9,999999999,22,0.101,0,88,0.2,0,1 -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,82844,30102,47814,17519,320,5.2,6,6,80,4877,9,999999999,22,0.101,0,88,0.2,0,1 -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,66893,30200,27718,11179,70,2.6,5,5,80,77777,9,999999999,22,0.101,0,88,0.2,0,1 -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,69699,42702,20089,8097,40,4.1,4,4,80,77777,9,999999999,21,0.101,0,88,0.2,0,1 -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,46023,17403,35972,10717,20,7.2,7,7,80,3658,9,999999999,21,0.101,0,88,0.2,0,1 -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,23219,7126,19612,5786,60,4.1,6,6,80,6401,9,999999999,21,0.101,0,88,0.2,0,1 -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,12234,4069,5402,1697,170,3.1,2,2,80,77777,9,999999999,20,0.101,0,88,0.2,0,1 -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,4572,9,999999999,20,0.101,0,88,0.2,0,1 -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,77777,9,999999999,19,0.101,0,88,0.2,0,1 -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,7.2,43,84000,0,0,344,0,0,0,0,0,0,0,170,1.5,1,1,48,77777,9,999999999,19,0.101,0,88,0.2,0,1 -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,77777,9,999999999,19,0.101,0,88,0.2,0,1 -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,77777,9,999999999,18,0.101,0,88,0.2,0,1 -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,65,84000,0,0,340,0,0,0,0,0,0,0,90,2.1,3,3,40,77777,9,999999999,18,0.101,0,88,0.2,0,1 -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,69,83900,0,0,327,0,0,0,0,0,0,0,150,2.1,1,1,48,77777,9,999999999,18,0.101,0,88,0.2,0,1 -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,77,83900,0,0,314,0,0,0,0,0,0,0,110,2.6,0,0,48,77777,9,999999999,17,0.101,0,88,0.2,0,1 -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,77,83900,0,0,314,0,0,0,0,0,0,0,200,3.6,1,0,64,77777,9,999999999,17,0.101,0,88,0.2,0,1 -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,75,84000,21,606,316,6,74,3,0,0,0,0,190,3.1,0,0,96,77777,9,999999999,17,0.101,0,88,0.2,0,1 -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,12901,35,3493,1162,220,3.6,0,0,112,77777,9,999999999,16,0.101,0,88,0.2,0,1 -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,32477,69813,7317,1095,200,3.6,0,0,112,77777,9,999999999,16,0.101,0,88,0.2,0,1 -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,54140,84523,9359,1534,200,2.6,0,0,112,77777,9,999999999,16,0.101,0,88,0.2,0,1 -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,74105,91972,10922,2093,210,4.6,0,0,112,77777,9,999999999,16,0.101,0,88,0.2,0,1 -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,21,83900,1071,1322,380,844,934,87,89887,95595,11853,2989,360,2.1,0,0,112,77777,9,999999999,16,0.101,0,88,0.2,0,1 -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,100302,96852,12292,4448,350,3.1,0,0,112,77777,9,999999999,16,0.101,0,88,0.2,0,1 -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,106410,97958,12498,6154,360,3.1,0,0,112,77777,9,999999999,16,0.101,0,88,0.2,0,1 -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,97891,89171,12738,6281,360,3.1,1,1,112,77777,9,999999999,16,0.101,0,88,0.2,0,1 -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,95942,92175,12041,4407,10,3.1,1,1,112,77777,9,999999999,16,0.101,0,88,0.2,0,1 -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,98104,54625,21435,8858,340,2.1,3,3,112,77777,9,999999999,16,0.101,0,88,0.2,0,1 -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,69635,85614,10626,2074,40,3.1,1,1,112,77777,9,999999999,16,0.101,0,88,0.2,0,1 -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,13,83600,696,1322,395,476,785,62,50818,78046,9196,1530,40,2.6,1,1,112,77777,9,999999999,16,0.101,0,88,0.2,0,1 -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,22174,14197,12441,4254,130,2.6,5,5,112,77777,9,999999999,16,0.101,0,88,0.2,0,1 -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,3.3,18,83600,222,1322,398,105,362,45,11869,4149,5100,1620,130,2.1,3,3,112,77777,9,999999999,16,0.101,0,88,0.2,0,1 -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,77777,9,999999999,16,0.101,0,88,0.2,0,1 -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,4.4,26,83700,0,0,374,0,0,0,0,0,0,0,190,4.1,3,3,48,77777,9,999999999,16,0.101,0,88,0.2,0,1 -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,77777,9,999999999,16,0.101,0,88,0.2,0,1 -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,77777,9,999999999,16,0.101,0,88,0.2,0,1 -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,7.8,45,83600,0,0,350,0,0,0,0,0,0,0,190,3.1,2,2,48,77777,9,999999999,16,0.101,0,88,0.2,0,1 -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,7.8,45,83600,0,0,350,0,0,0,0,0,0,0,180,2.6,5,2,48,77777,9,999999999,15,0.1,0,88,0.2,0,1 -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,6.1,40,83500,0,0,351,0,0,0,0,0,0,0,180,3.1,3,3,48,77777,9,999999999,15,0.1,0,88,0.2,0,1 -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,77777,9,999999999,15,0.1,0,88,0.2,0,1 -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,5,4,48,77777,9,999999999,15,0.1,0,88,0.2,0,1 -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,77777,9,999999999,15,0.1,0,88,0.2,0,1 -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,10568,2948,5186,1631,150,2.1,4,4,96,77777,9,999999999,15,0.1,0,88,0.2,0,1 -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,6.1,30,83600,454,1322,379,209,359,85,24174,17948,9863,3494,220,2.6,4,4,96,77777,9,999999999,15,0.1,0,88,0.2,0,1 -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,50129,37419,14918,5720,20,2.6,4,4,96,77777,9,999999999,15,0.1,0,88,0.2,0,1 -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,70172,44193,22867,9057,30,3.1,4,4,96,77777,9,999999999,15,0.1,0,88,0.2,0,1 -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,9,83800,1070,1322,398,592,545,150,73412,37779,18679,7779,10,6.2,4,4,96,77777,9,999999999,15,0.1,0,88,0.2,0,1 -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,93370,87644,14883,5126,40,3.6,2,1,96,77777,9,999999999,15,0.1,0,88,0.2,0,1 -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,96532,84272,17802,8186,20,3.1,3,1,96,77777,9,999999999,15,0.1,0,88,0.2,0,1 -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,96408,85974,15168,7266,130,4.1,2,1,96,77777,9,999999999,14,0.1,0,88,0.2,0,1 -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,93694,86731,15986,5441,70,6.7,3,1,96,77777,9,999999999,14,0.1,0,88,0.2,0,1 -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,100540,54751,17742,7415,70,4.1,2,1,96,77777,9,999999999,14,0.1,0,88,0.2,0,1 -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.6,11,83600,906,1322,403,692,874,93,73127,88357,13019,2281,110,5.2,0,0,96,77777,9,999999999,14,0.1,0,88,0.2,0,1 -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,61830,46966,9471,3748,90,5.2,0,0,96,77777,9,999999999,14,0.1,0,88,0.2,0,1 -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,35888,31007,6834,2508,70,6.7,0,0,96,77777,9,999999999,14,0.1,0,88,0.2,0,1 -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,2.8,18,83600,222,1322,381,112,452,36,12894,3273,4153,1360,50,5.2,0,0,96,77777,9,999999999,14,0.1,0,88,0.2,0,1 -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,77777,9,999999999,14,0.1,0,88,0.2,0,1 -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,77777,9,999999999,14,0.1,0,88,0.2,0,1 -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,33,83800,0,0,346,0,0,0,0,0,0,0,120,2.1,0,0,48,77777,9,999999999,13,0.1,0,88,0.2,0,1 -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,77777,9,999999999,13,0.1,0,88,0.2,0,1 -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,77777,9,999999999,13,0.1,0,88,0.2,0,1 -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,77777,9,999999999,13,0.1,0,88,0.2,0,1 -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,77777,9,999999999,13,0.1,0,88,0.2,0,1 -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,77777,9,999999999,13,0.1,0,88,0.2,0,1 -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,8.3,64,83600,0,0,317,0,0,0,0,0,0,0,170,1.5,0,0,64,77777,9,999999999,13,0.1,0,88,0.2,0,1 -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,77777,9,999999999,13,0.1,0,88,0.2,0,1 -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,11190,2066,4759,1520,210,2.1,2,0,96,77777,9,999999999,13,0.1,0,88,0.2,0,1 -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,26813,21222,10391,3652,240,2.1,3,3,96,77777,9,999999999,13,0.1,0,88,0.2,0,1 -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,59197,44178,10685,4206,0,0,0,0,96,77777,9,999999999,13,0.1,0,88,0.2,0,1 -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,83903,51783,13267,5492,0,0,0,0,96,77777,9,999999999,13,0.1,0,88,0.2,0,1 -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,88915,90930,16188,3537,140,3.1,0,0,96,77777,9,999999999,13,0.1,0,88,0.2,0,1 -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,100222,93232,16751,5531,130,3.1,0,0,96,77777,9,999999999,13,0.1,0,88,0.2,0,1 -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,105370,93718,17099,7922,110,3.1,0,0,96,77777,9,999999999,13,0.1,0,88,0.2,0,1 -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,105205,93511,17088,7979,180,2.6,0,0,96,77777,9,999999999,13,0.1,0,88,0.2,0,1 -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,99765,92642,16840,5634,180,3.1,0,0,96,77777,9,999999999,13,0.1,0,88,0.2,0,1 -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,88186,89826,16135,3586,180,2.1,0,0,96,77777,9,999999999,13,0.1,0,88,0.2,0,1 -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,-2.2,7,83200,906,1322,426,687,845,108,85157,54847,13433,5550,80,2.1,0,0,96,77777,9,999999999,13,0.1,0,88,0.2,0,1 -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,60527,47777,10849,4265,310,4.1,0,0,96,77777,9,999999999,13,0.1,0,88,0.2,0,1 -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,34737,32042,7844,2849,260,5.2,0,0,96,77777,9,999999999,13,0.1,0,88,0.2,0,1 -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,12215,4624,4691,1510,260,4.1,0,0,96,77777,9,999999999,14,0.1,0,88,0.2,0,1 -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,77777,9,999999999,14,0.1,0,88,0.2,0,1 -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,77777,9,999999999,14,0.1,0,88,0.2,0,1 -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,77777,9,999999999,14,0.1,0,88,0.2,0,1 -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,77777,9,999999999,14,0.1,0,88,0.2,0,1 -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,19,83500,0,0,353,0,0,0,0,0,0,0,300,2.6,0,0,48,77777,9,999999999,14,0.1,0,88,0.2,0,1 -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,77777,9,999999999,14,0.099,0,88,0.2,0,1 -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,1.7,30,83600,0,0,332,0,0,0,0,0,0,0,140,3.6,0,0,32,77777,9,999999999,14,0.099,0,88,0.2,0,1 -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,77777,9,999999999,14,0.099,0,88,0.2,0,1 -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,77777,9,999999999,14,0.099,0,88,0.2,0,1 -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,77777,9,999999999,14,0.099,0,88,0.2,0,1 -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,3.9,35,84000,210,1322,349,86,179,57,9497,2858,6315,1884,170,3.6,6,3,88,77777,9,999999999,14,0.099,0,88,0.2,0,1 -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,27334,22708,10832,3774,140,3.6,2,1,88,77777,9,999999999,14,0.099,0,88,0.2,0,1 -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,-1.7,17,84000,685,1322,350,469,678,117,55711,44465,13948,5372,60,3.6,1,0,96,77777,9,999999999,14,0.099,0,88,0.2,0,1 -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,79748,52291,17401,7084,130,5.2,1,0,96,77777,9,999999999,14,0.099,0,88,0.2,0,1 -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,98583,54234,20026,8319,130,7.2,1,0,96,77777,9,999999999,14,0.099,0,88,0.2,0,1 -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,115315,57252,22800,9387,130,4.6,2,0,96,77777,9,999999999,14,0.099,0,88,0.2,0,1 -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,119129,55794,23466,9630,160,4.6,3,1,96,77777,9,999999999,14,0.099,0,88,0.2,0,1 -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,116069,53709,23000,9451,70,2.1,2,2,96,77777,9,999999999,14,0.099,0,88,0.2,0,1 -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,106649,52495,26276,10694,50,4.6,3,3,96,77777,9,999999999,14,0.099,0,88,0.2,0,1 -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,95453,52621,24041,9844,110,3.1,2,2,96,77777,9,999999999,14,0.099,0,88,0.2,0,1 -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,70053,43330,22106,8815,80,3.6,3,3,96,77777,9,999999999,14,0.099,0,88,0.2,0,1 -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,53807,40979,20256,7437,50,4.1,2,2,96,77777,9,999999999,14,0.099,0,88,0.2,0,1 -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,12,83800,464,1322,417,243,346,121,27428,21244,13712,4593,360,5.2,4,4,96,77777,9,999999999,14,0.099,0,88,0.2,0,1 -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,8772,2368,6349,1923,30,5.2,4,4,96,77777,9,999999999,14,0.099,0,88,0.2,0,1 -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,77777,9,999999999,14,0.099,0,88,0.2,0,1 -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,77777,9,999999999,14,0.099,0,88,0.2,0,1 -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,77777,9,999999999,14,0.099,0,88,0.2,0,1 -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,3962,9,999999999,14,0.099,0,88,0.2,0,1 -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,77777,9,999999999,14,0.099,0,88,0.2,0,1 -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.6,27,84000,0,0,345,0,0,0,0,0,0,0,350,4.1,3,3,48,77777,9,999999999,14,0.098,0,88,0.2,0,1 -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,27,84100,0,0,333,0,0,0,0,0,0,0,330,5.2,1,1,48,77777,9,999999999,14,0.098,0,88,0.2,0,1 -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,77777,9,999999999,14,0.098,0,88,0.2,0,1 -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,77777,9,999999999,14,0.098,0,88,0.2,0,1 -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,38,84300,19,562,303,5,49,3,0,0,0,0,320,1.5,0,0,96,77777,9,999999999,14,0.098,0,88,0.2,0,1 -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,12009,1870,3818,1250,340,2.1,0,0,96,77777,9,999999999,14,0.098,0,88,0.2,0,1 -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,1.1,28,84400,450,1322,331,291,701,53,34943,30654,6377,2336,360,3.1,0,0,96,77777,9,999999999,14,0.098,0,88,0.2,0,1 -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,24,84400,684,1322,344,468,748,81,57134,44266,9916,3904,10,3.1,1,1,96,77777,9,999999999,14,0.098,0,88,0.2,0,1 -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,68659,83327,12777,2236,20,3.1,1,1,96,77777,9,999999999,14,0.098,0,88,0.2,0,1 -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,1.7,22,84300,1068,1322,366,800,801,153,98881,54371,18992,7913,0,0,2,2,96,77777,9,999999999,14,0.098,0,88,0.2,0,1 -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,94427,44606,29900,12004,0,0,3,3,96,77777,9,999999999,14,0.098,0,88,0.2,0,1 -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,1.7,16,84200,1255,1322,392,946,834,154,98453,84907,19486,8676,40,4.1,2,2,96,77777,9,999999999,14,0.098,0,88,0.2,0,1 -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,125127,58665,22298,9178,300,2.1,3,3,96,77777,9,999999999,14,0.098,0,88,0.2,0,1 -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,95070,88489,15500,5334,360,7.2,2,2,96,77777,9,999999999,15,0.098,0,88,0.2,0,1 -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,99177,55416,27069,10946,320,6.7,4,4,96,77777,9,999999999,15,0.098,0,88,0.2,0,1 -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,56326,31927,16733,6849,350,5.7,6,6,96,4267,9,999999999,15,0.098,0,88,0.2,0,1 -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,45940,31935,18643,6953,30,4.1,6,6,96,4877,9,999999999,15,0.098,0,88,0.2,0,1 -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,18593,8344,12974,4405,40,4.1,7,7,96,4572,9,999999999,15,0.098,0,88,0.2,0,1 -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,1.1,16,84000,223,1322,404,89,112,70,9714,2802,7669,2186,80,4.1,6,6,96,4572,9,999999999,15,0.098,0,88,0.2,0,1 -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,77777,9,999999999,15,0.098,0,88,0.2,0,1 -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,3.3,24,84100,0,0,375,0,0,0,0,0,0,0,140,3.6,4,4,40,77777,9,999999999,15,0.098,0,88,0.2,0,1 -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,77777,9,999999999,15,0.098,0,88,0.2,0,1 -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,36,84100,0,0,345,0,0,0,0,0,0,0,160,1,1,1,40,77777,9,999999999,15,0.098,0,88,0.2,0,1 -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,77777,9,999999999,16,0.098,0,88,0.2,0,1 -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,77777,9,999999999,16,0.098,0,88,0.2,0,1 -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,77777,9,999999999,16,0.098,0,88,0.2,0,1 -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,77777,9,999999999,16,0.098,0,88,0.2,0,1 -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,77777,9,999999999,16,0.098,0,88,0.2,0,1 -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,77777,9,999999999,16,0.098,0,88,0.2,0,1 -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,10395,3637,6808,1972,210,3.1,3,3,112,77777,9,999999999,16,0.098,0,88,0.2,0,1 -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,28650,23935,11340,3916,220,3.6,2,2,112,77777,9,999999999,16,0.098,0,88,0.2,0,1 -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,43380,29735,16745,6317,190,3.6,3,3,112,77777,9,999999999,16,0.098,0,88,0.2,0,1 -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,70701,86577,12258,2196,190,2.1,2,2,112,77777,9,999999999,16,0.098,0,88,0.2,0,1 -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,21494,3976,15266,6417,10,2.6,8,8,96,3962,9,999999999,16,0.098,0,88,0.2,0,1 -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,83141,33993,41180,15656,360,3.6,7,7,96,4267,9,999999999,16,0.098,0,88,0.2,0,1 -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,111793,52970,34149,13503,160,1,4,4,96,77777,9,999999999,16,0.098,0,88,0.2,0,1 -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,116816,55338,27530,11161,350,5.2,4,4,80,77777,9,999999999,15,0.098,0,88,0.2,0,1 -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,90583,82773,16718,5611,350,3.6,3,3,96,77777,9,999999999,15,0.098,0,88,0.2,0,1 -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,85535,40942,43279,15923,180,3.6,4,4,96,77777,9,999999999,15,0.098,0,88,0.2,0,1 -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,39371,10669,28959,11060,180,6.2,8,8,96,3658,9,999999999,15,0.098,0,88,0.2,0,1 -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,20451,4102,16663,6334,10,8.2,9,9,80,3658,9,999999999,15,0.098,0,88,0.2,0,1 -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,25844,5359,23509,6276,70,4.6,8,8,96,4877,9,999999999,15,0.098,0,88,0.2,0,1 -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,7.8,33,83800,223,1322,392,42,31,37,4818,182,4254,1393,120,4.1,7,7,96,4877,9,999999999,15,0.098,0,88,0.2,0,1 -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,77777,9,999999999,15,0.098,0,88,0.2,0,1 -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,77777,9,999999999,15,0.098,0,88,0.2,0,1 -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,77777,9,999999999,15,0.098,0,88,0.2,0,1 -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,77777,9,999999999,15,0.098,0,88,0.2,0,1 -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,77777,9,999999999,15,0.098,0,88,0.2,0,1 -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,77777,9,999999999,15,0.097,0,88,0.2,0,1 -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,77777,9,999999999,15,0.097,0,88,0.2,0,1 -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,77777,9,999999999,15,0.097,0,88,0.2,0,1 -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,77777,9,999999999,14,0.097,0,88,0.2,0,1 -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,77777,9,999999999,14,0.097,0,88,0.2,0,1 -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,11635,1003,3809,1245,170,3.6,0,0,112,77777,9,999999999,14,0.097,0,88,0.2,0,1 -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,34340,29033,6475,2371,180,2.1,0,0,112,77777,9,999999999,15,0.097,0,88,0.2,0,1 -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,23,83900,681,1321,372,490,809,73,52408,80694,10762,1598,210,3.6,0,0,112,77777,9,999999999,15,0.097,0,88,0.2,0,1 -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,71952,88336,12513,2211,210,1.5,0,0,112,77777,9,999999999,15,0.097,0,88,0.2,0,1 -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,83066,86305,14019,3274,80,2.1,1,1,112,77777,9,999999999,15,0.097,0,88,0.2,0,1 -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,78098,35234,15654,6532,280,3.1,3,3,112,77777,9,999999999,15,0.097,0,88,0.2,0,1 -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,-2.8,9,83700,1254,1321,411,991,913,124,103293,92716,15895,7413,340,8.2,2,2,112,77777,9,999999999,15,0.097,0,88,0.2,0,1 -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,111533,51248,19372,8015,310,2.6,4,3,112,77777,9,999999999,15,0.097,0,88,0.2,0,1 -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,109937,53464,19098,7927,10,5.2,4,2,112,77777,9,999999999,15,0.097,0,88,0.2,0,1 -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,78635,40496,23029,9465,310,5.2,6,3,112,77777,9,999999999,15,0.097,0,88,0.2,0,1 -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,75565,48585,20569,8268,310,4.1,5,4,112,77777,9,999999999,15,0.097,0,88,0.2,0,1 -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,-1.7,9,83600,698,1321,424,431,492,171,49794,36603,19845,7315,350,4.1,5,5,112,77777,9,999999999,15,0.097,0,88,0.2,0,1 -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,26674,21200,11718,4059,50,4.1,4,4,96,77777,9,999999999,15,0.097,0,88,0.2,0,1 -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,6645,1102,4478,1454,60,3.6,6,5,96,8534,9,999999999,15,0.097,0,88,0.2,0,1 -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,3658,9,999999999,15,0.097,0,88,0.2,0,1 -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,77777,9,999999999,15,0.097,0,88,0.2,0,1 -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,20,83700,0,0,374,0,0,0,0,0,0,0,150,5.3,2,2,40,77777,9,999999999,15,0.097,0,88,0.2,0,1 -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,77777,9,999999999,15,0.097,0,88,0.2,0,1 -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,77777,9,999999999,15,0.097,0,88,0.2,0,1 -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,4.6,56,83800,0,0,339,0,0,0,0,0,0,0,180,3.9,0,0,32,77777,9,999999999,16,0.089,0,88,0.2,0,1 -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,77777,9,999999999,15,0.089,0,88,0.2,0,1 -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,1,1,32,77777,9,999999999,15,0.089,0,88,0.2,0,1 -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,77777,9,999999999,15,0.089,0,88,0.2,0,1 -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,77777,9,999999999,15,0.089,0,88,0.2,0,1 -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,10419,1568,4541,1447,250,1.5,0,0,112,77777,9,999999999,15,0.089,0,88,0.2,0,1 -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,32070,27518,8009,2888,300,2.1,0,0,112,77777,9,999999999,15,0.089,0,88,0.2,0,1 -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,57401,44469,11250,4401,40,2.1,0,0,112,77777,9,999999999,15,0.089,0,88,0.2,0,1 -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,82064,52284,14076,5800,70,3.1,0,0,112,77777,9,999999999,15,0.089,0,88,0.2,0,1 -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,30,84000,1065,1321,351,825,864,128,86862,88152,17064,3564,50,2.1,0,0,112,77777,9,999999999,16,0.089,0,88,0.2,0,1 -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,98652,91037,17855,5670,80,3.1,0,0,112,77777,9,999999999,16,0.089,0,88,0.2,0,1 -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,104708,92256,18200,8179,100,3.6,0,0,112,77777,9,999999999,16,0.089,0,88,0.2,0,1 -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,104710,92102,18186,8298,120,4.1,0,0,112,77777,9,999999999,16,0.089,0,88,0.2,0,1 -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,98999,90925,17823,5834,100,5.7,0,0,112,77777,9,999999999,16,0.089,0,88,0.2,0,1 -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,87661,88172,17147,3680,70,3.1,0,0,112,77777,9,999999999,16,0.089,0,88,0.2,0,1 -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,76147,48187,20654,8308,50,3.1,3,3,96,77777,9,999999999,16,0.089,0,88,0.2,0,1 -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,3.9,19,83700,698,1321,395,455,608,134,53500,40501,15818,6046,60,4.1,5,2,96,77777,9,999999999,16,0.089,0,88,0.2,0,1 -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,19019,3485,17107,5370,60,4.1,8,8,96,3658,9,999999999,17,0.089,0,88,0.2,0,1 -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,7521,1340,5516,1731,30,6.2,6,6,96,3658,9,999999999,17,0.089,0,88,0.2,0,1 -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,5,28,83900,24,650,384,4,8,4,0,0,0,0,20,3.6,6,6,64,3658,9,999999999,17,0.089,0,88,0.2,0,1 -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,77777,9,999999999,17,0.089,0,88,0.2,0,1 -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,77777,9,999999999,17,0.089,0,88,0.2,0,1 -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,6.1,40,84000,0,0,354,0,0,0,0,0,0,0,350,3.1,4,4,32,77777,9,999999999,17,0.089,0,88,0.2,0,1 -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,77777,9,999999999,17,0.089,0,88,0.2,0,1 -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,77777,9,999999999,17,0.089,0,88,0.2,0,1 -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,77777,9,999999999,18,0.089,0,88,0.2,0,1 -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,77777,9,999999999,18,0.089,0,88,0.2,0,1 -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,77777,9,999999999,18,0.089,0,88,0.2,0,1 -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,77777,9,999999999,18,0.089,0,88,0.2,0,1 -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,11544,0,3585,1177,10,1.5,0,0,96,77777,9,999999999,18,0.089,0,88,0.2,0,1 -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,34245,27854,6020,2210,30,3.1,0,0,112,77777,9,999999999,18,0.089,0,88,0.2,0,1 -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,58438,43958,10557,4147,30,2.1,4,0,96,77777,9,999999999,18,0.089,0,88,0.2,0,1 -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,69038,41208,24072,9466,20,4.1,8,6,96,3353,9,999999999,18,0.089,0,88,0.2,0,1 -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,87613,44455,20405,8490,70,3.1,2,2,96,77777,9,999999999,19,0.089,0,88,0.2,0,1 -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,94216,88185,15193,5090,50,4.1,1,1,96,77777,9,999999999,19,0.089,0,88,0.2,0,1 -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,11.1,42,84200,1253,1321,373,953,897,102,102144,92994,13282,6341,60,1.5,1,1,64,77777,9,999999999,19,0.089,0,88,0.2,0,1 -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,105752,45481,25926,10601,20,1.5,3,3,64,77777,9,999999999,19,0.089,0,88,0.2,0,1 -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,95472,88034,16395,5523,20,3.6,2,2,64,77777,9,999999999,19,0.089,0,88,0.2,0,1 -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,31,84000,1076,1321,401,820,854,124,87255,87926,16552,3628,80,3.6,3,3,64,77777,9,999999999,19,0.089,0,88,0.2,0,1 -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,70565,84390,12909,2279,70,3.6,2,2,64,77777,9,999999999,19,0.089,0,88,0.2,0,1 -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,44804,28541,20839,7629,10,5.7,5,5,64,77777,9,999999999,19,0.089,0,88,0.2,0,1 -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,33255,28776,11047,3875,40,6.2,2,2,64,77777,9,999999999,20,0.089,0,88,0.2,0,1 -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,11518,3292,5095,1624,30,4.6,3,3,64,77777,9,999999999,20,0.089,0,88,0.2,0,1 -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,2438,9,999999999,20,0.089,0,88,0.2,0,1 -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,2438,9,999999999,20,0.089,0,88,0.2,11.2,1 -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,2591,9,999999999,20,0.089,0,88,0.2,3,1 -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,20,0.089,0,88,0.2,1.5,1 -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,2896,9,999999999,20,0.089,0,88,0.2,0,1 -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,7620,9,999999999,20,0.088,0,88,0.2,0,1 -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,2743,9,999999999,20,0.088,0,88,0.2,0,1 -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,77777,9,999999999,21,0.088,0,88,0.2,0,1 -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,77777,9,999999999,21,0.088,0,88,0.2,0,1 -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,77777,9,999999999,21,0.088,0,88,0.2,0,1 -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,11974,0,3144,1046,150,2.6,0,0,88,77777,9,999999999,21,0.088,0,88,0.2,0,1 -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,31641,69839,6742,1047,230,1.5,0,0,80,77777,9,999999999,21,0.088,0,88,0.2,0,1 -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,53302,84812,8822,1477,320,1.5,0,0,80,77777,9,999999999,20,0.088,0,88,0.2,0,1 -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,73192,92266,10278,1996,190,1,0,0,80,77777,9,999999999,20,0.088,0,88,0.2,0,1 -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,89668,96342,11119,2808,180,2.1,0,0,88,77777,9,999999999,20,0.088,0,88,0.2,0,1 -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,94872,91670,11348,4068,140,1.5,1,1,80,77777,9,999999999,20,0.088,0,88,0.2,0,1 -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,103556,95564,11564,5607,70,2.1,1,1,80,77777,9,999999999,20,0.088,0,88,0.2,0,1 -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,104648,96716,11432,5638,110,3.1,2,2,80,77777,9,999999999,20,0.088,0,88,0.2,0,1 -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,34,84100,1195,1321,392,877,780,171,109031,50393,21359,8850,140,4.1,3,3,80,77777,9,999999999,19,0.088,0,88,0.2,0,1 -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,98983,51629,17127,7183,300,3.1,2,2,80,77777,9,999999999,19,0.088,0,88,0.2,0,1 -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,61714,32767,29043,11094,30,4.1,8,8,80,2591,9,999999999,19,0.088,0,88,0.2,0,1 -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,46022,31212,18396,6889,50,3.1,6,6,80,9144,9,999999999,19,0.088,0,88,0.2,0,1 -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,17476,8788,10844,3811,30,3.6,8,8,80,9144,9,999999999,19,0.088,0,88,0.2,0,1 -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,6.7,31,84000,222,1321,390,87,50,78,9389,1340,8452,2312,40,3.1,7,7,80,9144,9,999999999,19,0.088,0,88,0.2,0,1 -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,6,6,48,9144,9,999999999,18,0.088,0,88,0.2,0,1 -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,49,84100,0,0,346,0,0,0,0,0,0,0,360,2.6,0,0,32,77777,9,999999999,18,0.088,0,88,0.2,0,1 -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,77777,9,999999999,18,0.088,0,88,0.2,0,1 -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,77777,9,999999999,18,0.088,0,88,0.2,0,1 -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,32,77777,9,999999999,18,0.088,0,88,0.2,0,1 -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,77777,9,999999999,17,0.087,0,88,0.2,0,1 -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,11.1,77,84100,0,0,320,0,0,0,0,0,0,0,180,2.1,0,0,32,77777,9,999999999,17,0.087,0,88,0.2,0,1 -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,77777,9,999999999,17,0.087,0,88,0.2,0,1 -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,8.9,67,84000,0,0,317,0,0,0,0,0,0,0,200,2.6,0,0,32,77777,9,999999999,17,0.087,0,88,0.2,0,1 -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,77777,9,999999999,17,0.087,0,88,0.2,0,1 -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,10064,640,4421,1406,190,4.1,0,0,104,77777,9,999999999,17,0.087,0,88,0.2,0,1 -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,31595,26149,7772,2805,200,3.1,0,0,96,77777,9,999999999,16,0.087,0,88,0.2,0,1 -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,56894,43157,11003,4307,190,3.1,0,0,96,77777,9,999999999,16,0.087,0,88,0.2,0,1 -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,6.1,30,84000,887,1321,360,663,822,111,81621,51348,13713,5655,240,3.1,0,0,96,77777,9,999999999,16,0.087,0,88,0.2,0,1 -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,86505,88389,16822,3514,320,1.5,0,0,112,77777,9,999999999,16,0.087,0,88,0.2,0,1 -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,-2.2,12,83900,1186,1321,374,936,893,135,97418,90576,17470,5541,170,2.1,0,0,112,77777,9,999999999,15,0.087,0,88,0.2,0,1 -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,107130,49026,20891,8622,140,2.1,1,1,112,77777,9,999999999,15,0.087,0,88,0.2,0,1 -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,13,83800,1255,1321,395,952,854,140,99156,86861,17816,8114,340,3.1,1,1,112,77777,9,999999999,15,0.087,0,88,0.2,0,1 -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,98378,90989,17321,5719,350,2.1,1,1,112,77777,9,999999999,15,0.087,0,88,0.2,0,1 -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,81475,81534,16511,3625,140,2.6,1,1,112,77777,9,999999999,15,0.087,0,88,0.2,0,1 -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,79532,51328,17312,7066,230,1.5,1,1,112,77777,9,999999999,14,0.087,0,88,0.2,0,1 -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,57471,44936,12640,4929,110,2.1,1,1,112,77777,9,999999999,14,0.087,0,88,0.2,0,1 -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,14,83600,463,1321,395,270,493,97,31026,27404,11185,3905,120,2.1,2,2,112,77777,9,999999999,14,0.087,0,88,0.2,0,1 -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,2.8,18,83600,221,1321,400,62,129,40,7080,1208,4578,1481,80,3.1,4,4,112,77777,9,999999999,14,0.087,0,88,0.2,0,1 -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,77777,9,999999999,13,0.087,0,88,0.2,0,1 -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,77777,9,999999999,13,0.087,0,88,0.2,0,1 -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,30,83600,0,0,351,0,0,0,0,0,0,0,160,2.6,0,0,32,77777,9,999999999,13,0.087,0,88,0.2,0,1 -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,77777,9,999999999,13,0.087,0,88,0.2,0,1 -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,77777,9,999999999,13,0.087,0,88,0.2,0,1 -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,41,83600,0,0,328,0,0,0,0,0,0,0,180,2.6,0,0,32,77777,9,999999999,12,0.087,0,88,0.2,0,1 -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,77777,9,999999999,12,0.087,0,88,0.2,0,1 -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,77777,9,999999999,12,0.087,0,88,0.2,0,1 -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,77777,9,999999999,12,0.087,0,88,0.2,0,1 -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,77777,9,999999999,11,0.087,0,88,0.2,0,1 -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,11018,315,3795,1229,190,3.1,0,0,104,77777,9,999999999,11,0.087,0,88,0.2,0,1 -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,33573,28866,6465,2357,200,2.6,0,0,96,77777,9,999999999,12,0.087,0,88,0.2,0,1 -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,59547,45555,9090,3582,180,2.1,0,0,104,77777,9,999999999,12,0.087,0,88,0.2,0,1 -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,20,83600,886,1321,387,678,876,90,72156,88979,12672,2199,210,2.6,0,0,104,77777,9,999999999,12,0.087,0,88,0.2,0,1 -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,88303,93130,13785,3200,190,2.1,0,0,104,77777,9,999999999,12,0.087,0,88,0.2,0,1 -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,94408,89764,14054,4774,120,2.1,1,1,104,77777,9,999999999,12,0.087,0,88,0.2,0,1 -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,1.7,12,83500,1251,1321,422,954,733,259,116218,55474,31731,12675,340,5.2,3,3,112,77777,9,999999999,12,0.087,0,88,0.2,0,1 -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,121948,58100,25212,10294,340,3.6,2,2,112,77777,9,999999999,12,0.087,0,88,0.2,0,1 -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.6,11,83500,1194,1321,421,856,657,262,103428,50794,31836,12679,310,6.2,3,3,112,77777,9,999999999,12,0.087,0,88,0.2,0,1 -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,87639,46123,17625,7369,310,7.7,2,2,112,77777,9,999999999,12,0.087,0,88,0.2,0,1 -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,64045,34719,31681,11842,310,2.6,6,6,96,4572,9,999999999,12,0.087,0,88,0.2,0,1 -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,21741,6366,16046,6117,30,2.6,6,6,96,4572,9,999999999,13,0.087,0,88,0.2,0,1 -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,35086,31921,8708,3139,50,3.6,3,3,80,77777,9,999999999,13,0.087,0,88,0.2,0,1 -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,12017,4478,5001,1594,40,2.6,2,1,64,77777,9,999999999,13,0.087,0,88,0.2,0,1 -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,77777,9,999999999,13,0.087,0,88,0.2,0,1 -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,29,83500,0,0,368,0,0,0,0,0,0,0,90,2.6,2,2,48,77777,9,999999999,13,0.087,0,88,0.2,0,1 -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,3.3,24,83500,0,0,372,0,0,0,0,0,0,0,250,3.1,3,3,32,77777,9,999999999,13,0.087,0,88,0.2,0,1 -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,77777,9,999999999,13,0.087,0,88,0.2,0,1 -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,6.7,42,83500,0,0,352,0,0,0,0,0,0,0,0,0,3,3,32,77777,9,999999999,13,0.087,0,88,0.2,0,1 -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,77777,9,999999999,13,0.086,0,88,0.2,0,1 -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,77777,9,999999999,13,0.086,0,88,0.2,0,1 -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,77777,9,999999999,14,0.086,0,88,0.2,0,1 -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,77777,9,999999999,14,0.086,0,88,0.2,0,1 -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,77777,9,999999999,14,0.086,0,88,0.2,0,1 -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,9334,1508,4735,1477,180,2.1,0,0,112,77777,9,999999999,14,0.086,0,88,0.2,0,1 -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,28969,24965,8434,3008,220,3.6,1,1,112,77777,9,999999999,14,0.086,0,88,0.2,0,1 -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,50544,38875,15858,5990,220,2.6,2,2,112,77777,9,999999999,14,0.086,0,88,0.2,0,1 -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,15989,1633,13824,5695,200,3.1,8,8,112,5486,9,999999999,14,0.086,0,88,0.2,0,1 -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,3.3,18,83600,1059,1321,412,574,130,470,64930,13148,53547,18077,200,2.1,7,7,112,3962,9,999999999,14,0.086,0,88,0.2,0,1 -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,100324,48585,36921,14353,130,1.5,5,5,112,77777,9,999999999,15,0.086,0,88,0.2,0,1 -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,1.1,12,83500,1250,1321,428,691,288,418,81155,25989,49431,18111,160,2.1,6,5,112,7620,9,999999999,15,0.086,0,88,0.2,0,1 -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,59807,10090,47267,17539,90,5.7,8,8,112,4267,9,999999999,15,0.086,0,88,0.2,0,1 -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,53095,13455,34964,13733,250,5.7,7,7,112,4572,9,999999999,15,0.086,0,88,0.2,0,1 -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,58181,10604,48085,17074,230,5.2,9,9,96,3353,9,999999999,15,0.086,0,88,0.2,0,1 -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,67985,38566,31869,11900,320,7.2,9,7,96,3353,9,999999999,15,0.086,0,88,0.2,0,1 -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,37405,15062,26878,9167,40,5.2,8,8,96,4877,9,999999999,16,0.086,0,88,0.2,0,1 -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,22,83700,462,1321,409,259,271,165,28449,19057,18211,5571,330,6.2,7,7,96,4877,9,999999999,16,0.086,0,88,0.2,0,1 -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,8858,692,8351,2288,200,2.1,8,6,96,4877,9,999999999,16,0.086,0,88,0.2,0,1 -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,7620,9,999999999,16,0.086,0,88,0.2,0,1 -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,77777,9,999999999,16,0.086,0,88,0.2,0,1 -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,77777,9,999999999,16,0.086,0,88,0.2,0,1 -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,77777,9,999999999,16,0.086,0,88,0.2,0,1 -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,77777,9,999999999,17,0.086,0,88,0.2,0,1 -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,7.2,43,83700,0,0,349,0,0,0,0,0,0,0,160,3.1,2,2,32,77777,9,999999999,17,0.086,0,88,0.2,0,1 -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,77777,9,999999999,17,0.086,0,88,0.2,0,1 -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,77777,9,999999999,17,0.086,0,88,0.2,0,1 -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,5.6,39,83700,0,0,356,0,0,0,0,0,0,0,180,2.1,6,5,48,3048,9,999999999,17,0.086,0,88,0.2,0,1 -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,5.6,39,83700,13,473,363,2,1,1,0,0,0,0,220,3.6,7,7,96,4572,9,999999999,17,0.086,0,88,0.2,0,1 -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,3786,0,3678,1192,350,3.1,8,8,104,3658,9,999999999,18,0.086,0,88,0.2,0,1 -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,12623,2006,11185,3831,140,1,9,9,112,3962,9,999999999,18,0.086,0,88,0.2,0,1 -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,29346,2817,27610,9134,10,5.7,9,8,104,3353,9,999999999,18,0.086,0,88,0.2,0,1 -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,61426,35521,18314,7421,360,7.7,7,4,64,77777,9,999999999,18,0.086,0,88,0.2,0,1 -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,40,84100,1058,1321,378,775,678,233,92376,49325,27922,11254,360,7.7,3,3,48,77777,9,999999999,19,0.086,0,88,0.2,0,1 -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,91456,84276,16925,5357,360,6.2,5,2,48,77777,9,999999999,19,0.086,0,88,0.2,0,1 -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,110568,49056,27977,11363,360,5.2,8,3,48,77777,9,999999999,19,0.086,0,88,0.2,0,1 -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,110038,48910,35125,13880,360,5.7,7,4,64,77777,9,999999999,20,0.086,0,88,0.2,0,1 -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,34,84200,1193,1321,413,484,126,370,56738,10514,43663,16426,30,5.2,8,8,48,7620,9,999999999,20,0.086,0,88,0.2,0,1 -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,9.4,37,84200,1075,1321,394,790,665,249,93927,49546,29769,11910,0,0,7,7,48,4572,9,999999999,20,0.086,0,88,0.2,0,1 -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,57985,24550,35576,12909,210,4.6,9,8,48,4572,9,999999999,20,0.086,0,88,0.2,0,1 -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,26754,6825,20909,7652,230,4.1,10,9,48,4572,9,999999999,21,0.086,0,88,0.2,0,1 -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,28799,20621,15911,5123,210,2.6,9,8,48,7620,9,999999999,21,0.086,0,88,0.2,0,1 -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,9345,1042,8520,2311,180,4.1,10,7,48,7620,9,999999999,21,0.086,0,88,0.2,0,1 -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,7620,9,999999999,22,0.086,0,88,0.2,0,1 -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,7620,9,999999999,22,0.086,0,88,0.2,0,1 -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,7620,9,999999999,22,0.086,0,88,0.2,0,1 -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,77777,9,999999999,22,0.086,0,88,0.2,0,1 -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,11.1,57,84200,0,0,376,0,0,0,0,0,0,0,150,6.2,10,8,32,7620,9,999999999,23,0.086,0,88,0.2,0,1 -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,11.1,57,84100,0,0,366,0,0,0,0,0,0,0,140,5.2,8,6,32,7620,9,999999999,23,0.086,0,88,0.2,0,1 -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,77777,9,999999999,23,0.086,0,88,0.2,0,1 -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,7620,9,999999999,24,0.086,0,88,0.2,0,1 -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,7620,9,999999999,24,0.086,0,88,0.2,0,1 -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,6096,9,999999999,24,0.086,0,88,0.2,0,1 -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,4457,0,3664,1188,220,1.5,9,7,64,6096,9,999999999,24,0.086,0,88,0.2,0,1 -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,6838,1776,4647,1713,180,2.1,9,8,80,6096,9,999999999,24,0.086,0,88,0.2,0,1 -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,35052,17019,21431,7667,280,3.1,9,7,80,6096,9,999999999,24,0.086,0,88,0.2,0,1 -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,25619,0,25859,10912,340,2.6,10,10,80,6096,9,999999999,24,0.086,0,88,0.2,0,1 -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,75463,35776,26208,10662,360,4.1,10,7,64,6096,9,999999999,24,0.086,0,88,0.2,0,1 -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,99139,43686,44738,16710,320,4.6,9,6,48,6096,9,999999999,24,0.086,0,88,0.2,0,1 -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,94691,35301,49209,18103,340,3.1,10,7,48,4267,9,999999999,24,0.086,0,88,0.2,0,1 -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,72556,14811,54758,19489,310,4.1,9,8,64,4267,9,999999999,24,0.086,0,88,0.2,0,1 -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,81922,32769,36060,14129,120,2.1,7,6,48,7620,9,999999999,24,0.086,0,88,0.2,0,1 -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,25745,0,25999,11757,260,6.2,10,10,48,2896,9,999999999,23,0.086,0,88,0.2,0,1 -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,12.8,63,83700,904,1321,386,483,136,389,53863,12681,43674,14663,170,6.7,9,9,64,4572,9,999999999,23,0.086,0,88,0.2,0,1 -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,34650,11866,25593,8893,230,4.6,8,8,80,4572,9,999999999,23,0.086,0,88,0.2,0,1 -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,32851,25562,8763,3170,240,3.1,6,2,80,77777,9,999999999,23,0.086,0,88,0.2,0,1 -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,9387,2043,6205,1889,160,3.6,8,5,80,7620,9,999999999,23,0.086,0,88,0.2,0,1 -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,7620,9,999999999,23,0.086,0,88,0.2,0,1 -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,3658,9,999999999,23,0.086,0,88,0.2,0,1 -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,7620,9,999999999,23,0.086,0,88,0.2,0,1 -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,77777,9,999999999,23,0.086,0,88,0.2,0,1 -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,77777,9,999999999,23,0.086,0,88,0.2,0,1 -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,77777,9,999999999,23,0.085,0,88,0.2,0,1 -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,77777,9,999999999,23,0.085,0,88,0.2,0,1 -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,77777,9,999999999,23,0.085,0,88,0.2,0,1 -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,77777,9,999999999,22,0.085,0,88,0.2,0,1 -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,77777,9,999999999,22,0.085,0,88,0.2,0,1 -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,10307,0,3557,1154,200,2.6,1,1,96,77777,9,999999999,22,0.085,0,88,0.2,0,1 -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,30448,69543,6149,994,210,1.5,1,1,96,77777,9,999999999,22,0.085,0,88,0.2,0,1 -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,41,83700,667,1321,375,370,578,78,44992,31261,9511,3741,80,2.1,3,3,96,77777,9,999999999,22,0.085,0,88,0.2,0,1 -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,78325,47426,12185,5043,80,1.5,2,2,96,77777,9,999999999,22,0.085,0,88,0.2,0,1 -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,88338,45287,16489,6927,40,5.2,3,3,96,77777,9,999999999,22,0.085,0,88,0.2,0,1 -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,70664,66236,11355,3984,60,5.2,2,2,96,77777,9,999999999,22,0.085,0,88,0.2,0,1 -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,33,83700,1248,1321,398,942,860,130,99987,88796,16688,7384,350,4.1,4,4,96,77777,9,999999999,22,0.085,0,88,0.2,0,1 -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,120105,55159,32304,12913,350,4.6,5,5,96,77777,9,999999999,22,0.085,0,88,0.2,0,1 -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,33,83600,1192,1321,401,968,887,167,120513,56995,20888,8665,10,4.6,5,5,80,77777,9,999999999,22,0.085,0,88,0.2,0,1 -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,64760,25953,32390,12785,80,2.6,4,4,64,77777,9,999999999,22,0.085,0,88,0.2,0,1 -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,33,83500,904,1321,405,542,432,246,62815,33373,28667,10984,10,5.2,8,6,64,6096,9,999999999,22,0.085,0,88,0.2,0,1 -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,39299,15559,28438,9510,180,5.2,9,9,32,3658,9,999999999,22,0.085,0,88,0.2,0,1 -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,15.6,76,83600,460,1321,390,150,57,130,16693,3144,14530,4810,300,5.7,10,9,24,2286,9,999999999,22,0.085,0,88,0.2,0.3,1 -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,3698,0,3725,1415,340,5.2,10,10,16,2286,9,999999999,22,0.085,0,88,0.2,0,1 -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,90,83700,22,606,364,5,17,5,0,0,0,0,90,3.1,8,8,32,1676,9,999999999,22,0.085,0,88,0.2,0,1 -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,90,83700,0,0,351,0,0,0,0,0,0,0,270,2.1,5,5,32,77777,9,999999999,22,0.085,0,88,0.2,0,1 -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,90,83800,0,0,354,0,0,0,0,0,0,0,210,2.1,8,6,32,4267,9,999999999,22,0.085,0,88,0.2,0,1 -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,96,83800,0,0,337,0,0,0,0,0,0,0,90,1.5,2,2,32,77777,9,999999999,22,0.085,0,88,0.2,0,1 -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,96,83800,0,0,326,0,0,0,0,0,0,0,240,1.5,0,0,32,77777,9,999999999,22,0.085,0,88,0.2,0,1 -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,77777,9,999999999,22,0.085,0,88,0.2,0,1 -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,13.9,93,83600,0,0,322,0,0,0,0,0,0,0,200,2.1,0,0,32,77777,9,999999999,22,0.085,0,88,0.2,0,1 -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,13.9,93,83600,0,0,329,0,0,0,0,0,0,0,160,2.1,1,1,32,77777,9,999999999,22,0.085,0,88,0.2,0,1 -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,11.1,77,83600,0,0,326,0,0,0,0,0,0,0,190,2.6,1,1,32,77777,9,999999999,22,0.085,0,88,0.2,0,1 -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,77777,9,999999999,22,0.085,0,88,0.2,0,1 -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,10476,39192,3929,534,190,2.1,0,0,96,77777,9,999999999,22,0.085,0,88,0.2,0,1 -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,30841,70935,6007,980,200,2.6,0,0,96,77777,9,999999999,23,0.085,0,88,0.2,0,1 -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,50088,81316,7701,1360,220,2.1,1,1,112,77777,9,999999999,23,0.085,0,88,0.2,0,1 -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,68657,87871,9081,1827,190,3.1,1,1,112,77777,9,999999999,23,0.085,0,88,0.2,0,1 -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,87396,43522,14957,6308,70,1.5,2,2,112,77777,9,999999999,23,0.085,0,88,0.2,0,1 -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,99747,46911,29091,11743,160,2.1,3,3,112,77777,9,999999999,23,0.085,0,88,0.2,0,1 -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,94884,82803,17762,7693,340,2.1,5,5,96,77777,9,999999999,23,0.085,0,88,0.2,0,1 -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,86126,23633,59592,20512,240,4.1,8,8,96,3962,9,999999999,23,0.085,0,88,0.2,0,1 -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,93036,41772,36000,14089,160,2.1,7,7,96,4267,9,999999999,23,0.085,0,88,0.2,0,1 -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,8.3,26,83500,1073,1322,411,889,866,185,108148,59241,22614,9332,170,4.6,5,5,88,77777,9,999999999,23,0.085,0,88,0.2,2.5,1 -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,32858,3205,29681,11301,360,3.6,9,9,64,1981,9,999999999,24,0.085,0,88,0.2,0.3,1 -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,55293,38650,12888,5041,90,4.6,5,4,80,77777,9,999999999,24,0.085,0,88,0.2,0,1 -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,33201,26337,8441,3060,120,3.1,4,2,80,77777,9,999999999,24,0.085,0,88,0.2,0,1 -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,9169,1460,7906,2205,130,2.1,8,8,80,4267,9,999999999,24,0.085,0,88,0.2,0,1 -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,3353,9,999999999,24,0.085,0,88,0.2,0,1 -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,3353,9,999999999,24,0.085,0,88,0.2,0,1 -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,3353,9,999999999,24,0.085,0,88,0.2,0,1 -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,3353,9,999999999,24,0.085,0,88,0.2,0,1 -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,10.6,55,83700,0,0,370,0,0,0,0,0,0,0,180,3.1,10,7,32,7620,9,999999999,24,0.085,0,88,0.2,0,1 -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,7620,9,999999999,24,0.085,0,88,0.2,0,1 -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,7620,9,999999999,25,0.085,0,88,0.2,0,1 -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,7620,9,999999999,25,0.085,0,88,0.2,0,1 -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,3048,9,999999999,25,0.085,0,88,0.2,0,1 -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,3658,9,999999999,25,0.085,0,88,0.2,0,1 -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,4247,0,3335,1085,310,3.1,9,8,64,3353,9,999999999,25,0.085,0,88,0.2,0,1 -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,10218,4252,5540,2028,290,2.1,7,7,64,3353,9,999999999,24,0.085,0,88,0.2,0,1 -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,33655,7101,29078,9348,260,4.1,9,9,96,3048,9,999999999,24,0.085,0,88,0.2,0,1 -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,47,84000,877,1322,373,428,233,273,48984,18936,31425,11633,260,1.5,7,6,96,7620,9,999999999,24,0.085,0,88,0.2,0,1 -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,92211,48175,21049,8734,230,2.6,4,3,96,77777,9,999999999,24,0.085,0,88,0.2,0,1 -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,37,84000,1178,1322,380,888,834,144,94018,85944,18644,5556,120,1.5,2,2,96,77777,9,999999999,24,0.085,0,88,0.2,0,1 -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,104512,95638,13782,6275,190,1.5,1,1,96,77777,9,999999999,23,0.085,0,88,0.2,0,1 -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,104591,45978,24441,10026,70,2.6,4,4,96,77777,9,999999999,23,0.085,0,88,0.2,0,1 -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,51959,9007,40407,15462,340,2.6,9,9,80,3962,9,999999999,23,0.085,0,88,0.2,0,1 -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,41290,9218,29553,11828,290,2.1,9,9,80,4267,9,999999999,23,0.085,0,88,0.2,0,1 -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,47027,7851,40651,14036,290,2.1,10,8,80,4267,9,999999999,23,0.085,0,88,0.2,0,1 -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,28814,11814,18364,6870,250,3.1,9,7,80,3962,9,999999999,22,0.085,0,88,0.2,0,1 -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,21169,9863,14994,4895,260,3.1,9,6,80,7315,9,999999999,22,0.085,0,88,0.2,0,1 -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,8632,1807,6106,1854,200,5.2,9,6,80,7315,9,999999999,22,0.085,0,88,0.2,0,1 -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,77777,9,999999999,22,0.085,0,88,0.2,0,1 -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,51,84100,0,0,355,0,0,0,0,0,0,0,170,3.1,5,2,32,77777,9,999999999,21,0.085,0,88,0.2,0,1 -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,77777,9,999999999,21,0.085,0,88,0.2,0,1 -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,56,84100,0,0,347,0,0,0,0,0,0,0,200,2.6,5,2,32,77777,9,999999999,21,0.085,0,88,0.2,0,1 -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,56,84100,0,0,350,0,0,0,0,0,0,0,180,3.1,3,3,32,77777,9,999999999,21,0.085,0,88,0.2,0,1 -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,60,84100,0,0,337,0,0,0,0,0,0,0,180,4.1,3,1,32,77777,9,999999999,21,0.084,0,88,0.2,0,1 -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,63,84100,0,0,334,0,0,0,0,0,0,0,170,3.1,1,1,32,77777,9,999999999,20,0.084,0,88,0.2,0,1 -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,77777,9,999999999,20,0.084,0,88,0.2,0,1 -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,69,84200,0,0,321,0,0,0,0,0,0,0,180,2.6,2,0,64,77777,9,999999999,20,0.084,0,88,0.2,0,1 -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,10,72,84200,9,408,332,1,7,1,0,0,0,0,210,2.6,5,3,96,77777,9,999999999,20,0.084,0,88,0.2,0,1 -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,9175,0,3860,1228,230,4.1,0,0,96,77777,9,999999999,20,0.084,0,88,0.2,0,1 -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,30574,24203,6863,2481,240,2.6,0,0,96,77777,9,999999999,20,0.084,0,88,0.2,0,1 -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,55787,40587,9830,3857,190,1.5,0,0,96,77777,9,999999999,20,0.084,0,88,0.2,0,1 -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,80632,48829,12284,5080,130,2.1,0,0,80,77777,9,999999999,20,0.084,0,88,0.2,0,1 -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,86365,44757,23759,9753,0,0,2,2,96,77777,9,999999999,20,0.084,0,88,0.2,0,1 -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,100393,48163,28771,11618,80,2.1,3,3,80,77777,9,999999999,20,0.084,0,88,0.2,0,1 -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,125513,58969,24556,10064,150,3.6,4,4,80,77777,9,999999999,20,0.084,0,88,0.2,0,1 -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,31,84200,1249,1322,422,479,262,231,58655,18193,28442,11530,350,5.7,8,8,64,2591,9,999999999,20,0.084,0,88,0.2,0,1 -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,92897,41796,31951,12747,100,6.2,7,7,48,3962,9,999999999,20,0.084,0,88,0.2,0.3,1 -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,24959,0,25206,11483,320,7.7,10,10,9.6,2134,9,999999999,21,0.084,0,88,0.2,2.8,1 -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,20167,0,20357,9182,20,8.2,10,10,24,2286,9,999999999,21,0.084,0,88,0.2,0,1 -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,38875,4254,36613,10784,280,2.6,10,9,32,2896,9,999999999,21,0.084,0,88,0.2,0.3,1 -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,8169,933,7121,2615,150,3.6,10,9,48,2896,9,999999999,21,0.084,0,88,0.2,0.3,1 -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,6501,181,6190,1871,220,5.2,9,8,64,2896,9,999999999,21,0.084,0,88,0.2,0,1 -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,77777,9,999999999,21,0.084,0,88,0.2,0,1 -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,3048,9,999999999,21,0.084,0,88,0.2,0,1 -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,3048,9,999999999,21,0.084,0,88,0.2,0,1 -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,77777,9,999999999,21,0.084,0,88,0.2,0,1 -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,77777,9,999999999,21,0.084,0,88,0.2,0,1 -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,77777,9,999999999,21,0.084,0,88,0.2,0,1 -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,77777,9,999999999,21,0.084,0,88,0.2,0,1 -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,77777,9,999999999,21,0.084,0,88,0.2,0,1 -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,77777,9,999999999,22,0.084,0,88,0.2,0,1 -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,77777,9,999999999,22,0.084,0,88,0.2,0,1 -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,9479,0,3433,1107,280,1.5,0,0,24,77777,9,999999999,21,0.084,0,88,0.2,0,1 -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,31298,23412,6082,2215,210,1.5,0,0,9.6,77777,9,999999999,21,0.084,0,88,0.2,0,1 -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,56816,39879,8575,3381,210,1.5,0,0,9.6,77777,9,999999999,21,0.084,0,88,0.2,0,1 -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,70966,88615,12197,2124,120,1.5,0,0,80,77777,9,999999999,21,0.084,0,88,0.2,0,1 -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,87479,93109,13341,3057,280,1.5,0,0,96,77777,9,999999999,21,0.084,0,88,0.2,0,1 -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,11.1,42,84400,1176,1322,366,927,923,106,99302,95568,13996,4588,220,3.1,0,0,96,77777,9,999999999,20,0.084,0,88,0.2,0,1 -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,105359,96438,14276,6381,140,2.6,0,0,96,77777,9,999999999,20,0.084,0,88,0.2,0,1 -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,97447,88322,13895,6403,0,0,1,1,96,77777,9,999999999,20,0.084,0,88,0.2,0,1 -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,102290,48645,31177,12474,110,2.1,3,3,80,77777,9,999999999,20,0.084,0,88,0.2,0,1 -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,90723,47358,22606,9328,150,4.1,2,2,80,77777,9,999999999,20,0.084,0,88,0.2,0,1 -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,67498,40001,19714,7968,130,3.1,5,3,96,77777,9,999999999,19,0.084,0,88,0.2,0,1 -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,35720,13606,25974,8931,110,3.6,7,6,96,9144,9,999999999,19,0.084,0,88,0.2,0,1 -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,24935,17154,12913,4372,110,2.6,5,3,96,77777,9,999999999,19,0.084,0,88,0.2,0,1 -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,11494,3159,5484,1702,120,2.6,5,2,80,77777,9,999999999,19,0.084,0,88,0.2,0,1 -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,77777,9,999999999,19,0.084,0,88,0.2,0,1 -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,77777,9,999999999,18,0.084,0,88,0.2,0,1 -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,77777,9,999999999,18,0.084,0,88,0.2,0,1 -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,11.7,59,84200,0,0,343,0,0,0,0,0,0,0,180,7.2,0,0,32,77777,9,999999999,18,0.084,0,88,0.2,0,1 -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,77777,9,999999999,18,0.084,0,88,0.2,0,1 -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,77777,9,999999999,18,0.084,0,88,0.2,0,1 -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,77777,9,999999999,17,0.084,0,88,0.2,0,1 -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,32,77777,9,999999999,17,0.084,0,88,0.2,0,1 -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,77777,9,999999999,17,0.084,0,88,0.2,0,1 -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,77777,9,999999999,17,0.084,0,88,0.2,0,1 -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,9852,37917,3768,510,210,2.6,0,0,112,77777,9,999999999,17,0.084,0,88,0.2,0,1 -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,10.6,55,84100,419,1322,342,275,751,37,30153,70714,5855,960,210,2.6,0,0,112,77777,9,999999999,16,0.084,0,88,0.2,0,1 -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,52181,86223,7701,1353,220,4.1,0,0,112,77777,9,999999999,16,0.084,0,88,0.2,0,1 -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,72233,93773,9217,1831,190,3.6,0,0,112,77777,9,999999999,16,0.084,0,88,0.2,0,1 -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,89177,97999,10102,2544,150,3.1,0,0,112,77777,9,999999999,16,0.084,0,88,0.2,0,1 -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,100830,99871,10606,3690,130,1.5,0,0,112,77777,9,999999999,16,0.084,0,88,0.2,0,1 -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,107090,100791,10827,5020,180,4.6,0,0,112,77777,9,999999999,16,0.084,0,88,0.2,0,1 -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,20,83900,1247,1322,387,1008,980,82,107422,100632,10813,5140,180,4.1,0,0,112,77777,9,999999999,15,0.084,0,88,0.2,0,1 -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,101515,99501,10565,3860,190,5.2,0,0,104,77777,9,999999999,15,0.084,0,88,0.2,0,1 -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,90449,97651,10176,2675,170,3.1,0,0,104,77777,9,999999999,15,0.084,0,88,0.2,0,1 -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,74483,93989,9295,1903,150,5.2,0,0,104,77777,9,999999999,15,0.084,0,88,0.2,0,1 -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,54906,87294,7939,1412,160,7.2,0,0,96,77777,9,999999999,15,0.084,0,88,0.2,0,1 -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,21,83700,454,1322,380,306,776,39,33180,73366,6125,1015,150,6.7,0,0,96,77777,9,999999999,15,0.084,0,88,0.2,0,1 -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,12369,43759,4077,585,170,6.2,0,0,96,77777,9,999999999,14,0.084,0,88,0.2,0,1 -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,77777,9,999999999,14,0.084,0,88,0.2,0,1 -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,77777,9,999999999,14,0.084,0,88,0.2,0,1 -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,77777,9,999999999,14,0.084,0,88,0.2,0,1 -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,77777,9,999999999,14,0.084,0,88,0.2,0,1 -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,77777,9,999999999,14,0.084,0,88,0.2,0,1 -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,77777,9,999999999,13,0.084,0,88,0.2,0,1 -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,77777,9,999999999,13,0.084,0,88,0.2,0,1 -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,77777,9,999999999,13,0.084,0,88,0.2,0,1 -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,77777,9,999999999,13,0.084,0,88,0.2,0,1 -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,77777,9,999999999,13,0.084,0,88,0.2,0,1 -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,9380,0,3324,1069,200,1.5,0,0,112,77777,9,999999999,13,0.084,0,88,0.2,0,1 -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,31671,25384,5868,2131,200,2.6,0,0,112,77777,9,999999999,13,0.084,0,88,0.2,0,1 -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,50657,81139,10112,1522,0,0,0,0,112,77777,9,999999999,13,0.084,0,88,0.2,0,1 -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,71124,89818,11919,2094,0,0,0,0,112,77777,9,999999999,13,0.084,0,88,0.2,0,1 -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,87954,94440,12949,2986,0,0,0,0,112,77777,9,999999999,14,0.084,0,88,0.2,0,1 -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,99725,96730,13614,4456,140,1.5,0,0,112,77777,9,999999999,14,0.084,0,88,0.2,0,1 -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,100933,92640,13537,6038,50,2.6,1,1,112,77777,9,999999999,14,0.084,0,88,0.2,0,1 -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,99196,86702,18588,7916,110,3.1,1,1,112,77777,9,999999999,14,0.084,0,88,0.2,0,1 -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,3.3,14,83600,1188,1322,425,725,469,303,86485,37715,36363,14185,70,3.6,3,3,96,77777,9,999999999,14,0.084,0,88,0.2,0,1 -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,88684,93695,12871,3133,50,2.6,1,1,88,77777,9,999999999,14,0.084,0,88,0.2,0,1 -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,67679,82486,11709,2165,10,4.1,1,1,96,77777,9,999999999,15,0.084,0,88,0.2,0,1 -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,11,83500,688,1322,419,453,692,92,54806,42235,11164,4376,20,7.2,2,2,96,77777,9,999999999,15,0.084,0,88,0.2,0,1 -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,8.3,26,83600,452,1322,405,214,329,101,24379,17367,11548,3989,10,8.2,3,3,80,77777,9,999999999,15,0.084,0,88,0.2,0,1 -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,10773,846,4020,1309,10,5.2,2,2,80,77777,9,999999999,15,0.084,0,88,0.2,0,1 -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,8.9,36,83700,17,540,379,4,30,3,0,0,0,0,40,1.5,3,3,64,77777,9,999999999,15,0.084,0,88,0.2,0,1 -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,32,77777,9,999999999,15,0.084,0,88,0.2,0,1 -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,77777,9,999999999,15,0.084,0,88,0.2,0,1 -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,77777,9,999999999,16,0.084,0,88,0.2,0,1 -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,77777,9,999999999,16,0.084,0,88,0.2,0,1 -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,77777,9,999999999,16,0.085,0,88,0.2,0,1 -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,77777,9,999999999,16,0.085,0,88,0.2,0,1 -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,77777,9,999999999,16,0.085,0,88,0.2,0,1 -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,77777,9,999999999,16,0.085,0,88,0.2,0,1 -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,69,83900,6,342,327,0,2,0,0,0,0,0,180,1.5,1,1,96,77777,9,999999999,17,0.085,0,88,0.2,0,1 -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,58,84000,170,1322,333,66,199,40,7341,0,4461,1359,180,2.1,1,0,96,77777,9,999999999,17,0.085,0,88,0.2,0,1 -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,27253,22277,8687,3050,200,2.1,0,0,96,77777,9,999999999,17,0.085,0,88,0.2,0,1 -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,8.9,36,84000,653,1322,364,440,676,106,52154,40051,12608,4847,210,1.5,0,0,96,77777,9,999999999,17,0.085,0,88,0.2,0,1 -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,75934,48322,16484,6704,320,1.5,1,0,96,77777,9,999999999,17,0.085,0,88,0.2,0,1 -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,7.8,25,84000,1045,1322,387,792,805,155,97277,52955,19121,7968,80,1.5,1,0,96,77777,9,999999999,17,0.085,0,88,0.2,0,1 -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,113111,54975,20854,8648,270,4.1,1,0,96,77777,9,999999999,17,0.085,0,88,0.2,0,1 -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,116608,52664,20807,8613,350,5.2,1,1,96,77777,9,999999999,17,0.085,0,88,0.2,0,1 -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,116922,55658,28958,11690,340,4.6,1,1,96,77777,9,999999999,17,0.085,0,88,0.2,0,1 -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,108521,53081,20699,8569,280,2.6,2,2,96,77777,9,999999999,17,0.085,0,88,0.2,0,1 -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,80478,40360,31348,12406,340,3.1,3,3,96,77777,9,999999999,18,0.085,0,88,0.2,0,1 -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,69670,42370,27641,10615,340,2.6,7,4,80,6096,9,999999999,18,0.085,0,88,0.2,0,1 -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,38917,10146,32738,10202,310,6.2,6,5,80,6096,9,999999999,18,0.085,0,88,0.2,0,1 -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,27400,22069,10814,3770,300,5.2,4,4,80,77777,9,999999999,18,0.085,0,88,0.2,0,1 -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,7252,776,6395,1888,280,4.1,8,5,80,7620,9,999999999,18,0.085,0,88,0.2,0,1 -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,77777,9,999999999,18,0.085,0,88,0.2,0,1 -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,77777,9,999999999,18,0.085,0,88,0.2,0,1 -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,32,77777,9,999999999,18,0.085,0,88,0.2,0,1 -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,77777,9,999999999,18,0.085,0,88,0.2,0,1 -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,77777,9,999999999,18,0.085,0,88,0.2,0,1 -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,77777,9,999999999,18,0.086,0,88,0.2,0,1 -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,7.8,45,83900,0,0,345,0,0,0,0,0,0,0,190,2.1,3,1,32,77777,9,999999999,19,0.086,0,88,0.2,0,1 -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,77777,9,999999999,19,0.086,0,88,0.2,0,1 -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,77777,9,999999999,19,0.086,0,88,0.2,0,1 -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,77777,9,999999999,19,0.086,0,88,0.2,0,1 -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,8.3,47,83900,168,1322,339,75,348,31,8512,0,3526,1117,190,2.6,0,0,96,77777,9,999999999,19,0.086,0,88,0.2,0,1 -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,30017,24244,6302,2274,200,3.1,0,0,96,77777,9,999999999,19,0.086,0,88,0.2,0,1 -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,55544,41962,9037,3539,210,1.5,0,0,96,77777,9,999999999,20,0.086,0,88,0.2,0,1 -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,69329,86673,12865,2141,120,1.5,0,0,96,77777,9,999999999,20,0.086,0,88,0.2,0,1 -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,85930,91310,14108,3104,0,0,0,0,96,77777,9,999999999,20,0.086,0,88,0.2,0,1 -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,97586,93818,14735,4661,0,0,0,0,96,77777,9,999999999,20,0.086,0,88,0.2,0,1 -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,100977,92066,14763,6386,30,2.1,1,1,96,77777,9,999999999,21,0.086,0,88,0.2,0,1 -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,104145,94945,14748,6560,50,2.6,1,1,96,77777,9,999999999,21,0.086,0,88,0.2,0,1 -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,113083,55497,24362,9995,90,3.6,3,3,96,77777,9,999999999,21,0.086,0,88,0.2,0,1 -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,84452,43661,27215,11003,100,3.6,4,4,96,77777,9,999999999,21,0.086,0,88,0.2,0,1 -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,69438,42579,20939,8391,120,2.6,4,4,64,77777,9,999999999,22,0.086,0,88,0.2,0,1 -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,18,83500,685,1322,430,259,128,193,29514,9705,22101,7916,360,4.1,7,7,64,3048,9,999999999,22,0.086,0,88,0.2,0,1 -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,24392,7748,20724,5842,310,5.2,8,8,64,3658,9,999999999,22,0.086,0,88,0.2,0,1 -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,37,83700,204,1322,398,46,87,33,5282,0,3797,1242,330,6.7,7,7,64,3658,9,999999999,22,0.086,0,88,0.2,0,1 -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,3353,9,999999999,23,0.086,0,88,0.2,0,1 -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,3658,9,999999999,23,0.086,0,88,0.2,0,1 -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,40,83800,0,0,398,0,0,0,0,0,0,0,310,3.6,9,8,32,3658,9,999999999,23,0.086,0,88,0.2,0,1 -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,7,6,32,7620,9,999999999,23,0.086,0,88,0.2,0,1 -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,7620,9,999999999,24,0.086,0,88,0.2,0,1 -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,7620,9,999999999,24,0.087,0,88,0.2,0,1 -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,77777,9,999999999,24,0.087,0,88,0.2,0,1 -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,11.1,57,83500,0,0,349,0,0,0,0,0,0,0,130,1.5,3,1,32,77777,9,999999999,24,0.087,0,88,0.2,0,1 -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,77777,9,999999999,25,0.087,0,88,0.2,0,1 -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,77777,9,999999999,25,0.087,0,88,0.2,0,1 -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,6725,0,3933,1219,200,2.1,2,2,96,77777,9,999999999,25,0.087,0,88,0.2,0,1 -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,25061,18801,12749,4140,180,2.6,3,3,96,77777,9,999999999,25,0.087,0,88,0.2,0,1 -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,11.1,42,83600,648,1322,385,340,436,126,39682,26745,14763,5575,190,2.1,4,4,96,77777,9,999999999,25,0.087,0,88,0.2,0,1 -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,66478,40546,20237,8072,140,2.1,4,4,96,77777,9,999999999,25,0.087,0,88,0.2,0,1 -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,30,83600,1042,1322,400,753,740,169,91752,48927,20687,8582,80,2.6,2,2,96,77777,9,999999999,26,0.087,0,88,0.2,0,1 -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,103859,50648,27934,11320,80,4.6,3,3,96,77777,9,999999999,26,0.087,0,88,0.2,0,1 -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,86312,33824,39350,15214,70,5.2,5,5,96,77777,9,999999999,26,0.087,0,88,0.2,0,1 -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,75759,26845,37148,14519,0,0,8,8,96,4267,9,999999999,26,0.087,0,88,0.2,0,1 -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,107894,52082,24921,10210,60,2.1,4,2,96,77777,9,999999999,26,0.087,0,88,0.2,0,1 -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,45816,16324,22713,9361,350,5.2,8,8,96,4267,9,999999999,26,0.087,0,88,0.2,0,1 -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,33693,2025,31930,11882,360,7.7,9,9,80,3048,9,999999999,26,0.087,0,88,0.2,0,1 -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,31412,8181,25377,8753,20,5.2,10,9,80,3353,9,999999999,26,0.087,0,88,0.2,0,1 -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,61,83700,447,1322,404,95,25,86,10904,1107,9904,3505,30,3.1,10,9,80,2743,9,999999999,27,0.087,0,88,0.2,0,1 -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,3695,0,3722,1386,160,2.1,10,10,80,3048,9,999999999,27,0.087,0,88,0.2,0,1 -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,3353,9,999999999,27,0.087,0,88,0.2,0,1 -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,2286,9,999999999,27,0.087,0,88,0.2,0,1 -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,11.1,57,83900,0,0,363,0,0,0,0,0,0,0,90,2.1,7,5,32,3658,9,999999999,27,0.087,0,88,0.2,0,1 -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,77777,9,999999999,27,0.087,0,88,0.2,0,1 -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,77777,9,999999999,27,0.087,0,88,0.2,0,1 -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,77777,9,999999999,27,0.088,0,88,0.2,0,1 -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,77777,9,999999999,28,0.088,0,88,0.2,0,1 -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,77777,9,999999999,28,0.088,0,88,0.2,0,1 -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,77777,9,999999999,28,0.088,0,88,0.2,0,1 -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,6,276,340,1,17,0,0,0,0,0,0,0,7,2,80,77777,9,999999999,28,0.088,0,88,0.2,0,1 -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,6465,0,4023,1237,200,1.5,8,3,96,77777,9,999999999,28,0.088,0,88,0.2,0,1 -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,24487,18219,9183,3187,0,0,5,2,96,77777,9,999999999,28,0.088,0,88,0.2,0,1 -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,47029,32714,10013,3909,120,1.5,5,3,64,77777,9,999999999,28,0.088,0,88,0.2,0,1 -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,72121,44494,17111,6938,140,2.6,7,2,80,77777,9,999999999,27,0.088,0,88,0.2,0,1 -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,90029,45258,14685,6196,70,2.1,6,3,80,77777,9,999999999,27,0.088,0,88,0.2,0,1 -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,90099,40319,26857,10947,110,3.1,6,2,96,77777,9,999999999,27,0.088,0,88,0.2,0,1 -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,11.7,32,83600,1237,1323,412,891,720,217,109335,48439,26771,10921,140,1.5,8,4,96,77777,9,999999999,27,0.088,0,88,0.2,0,1 -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,86333,34027,34960,13815,180,2.1,9,6,80,9144,9,999999999,27,0.088,0,88,0.2,0,1 -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,28,83500,1183,1323,432,746,476,320,88316,37582,38121,14764,0,0,9,8,80,4267,9,999999999,27,0.088,0,88,0.2,0,1 -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,31731,0,32042,13743,250,6.2,10,10,64,4267,9,999999999,27,0.088,0,88,0.2,0,1 -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,11.7,43,83500,893,1323,412,474,73,424,52426,7217,47224,15097,140,5.2,10,9,80,3353,9,999999999,26,0.088,0,88,0.2,0,1 -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,35446,17413,21188,7663,130,4.1,10,7,96,3658,9,999999999,26,0.088,0,88,0.2,0.3,1 -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,11.7,43,83700,445,1323,423,90,0,90,8957,0,9029,3627,250,8.2,10,10,64,2286,9,999999999,26,0.088,0,88,0.2,0,1 -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,7448,304,7043,1988,350,5.2,10,9,80,2438,9,999999999,26,0.088,0,88,0.2,0,1 -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,76,83800,14,474,397,2,0,2,0,0,0,0,50,1.5,10,10,64,3658,9,999999999,26,0.088,0,88,0.2,0,1 -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,77777,9,999999999,26,0.088,0,88,0.2,0,1 -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,4267,9,999999999,25,0.088,0,88,0.2,0,1 -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,4267,9,999999999,25,0.088,0,88,0.2,0,1 -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,7620,9,999999999,25,0.088,0,88,0.2,0,1 -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,3962,9,999999999,25,0.09,0,88,0.2,0,1 -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,7620,9,999999999,25,0.09,0,88,0.2,0,1 -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,3,3,32,77777,9,999999999,25,0.09,0,88,0.2,0,1 -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,32,77777,9,999999999,25,0.09,0,88,0.2,0,1 -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,12.2,83,83700,4,254,327,0,10,0,0,0,0,0,0,0,3,1,80,77777,9,999999999,24,0.09,0,88,0.2,0,1 -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,7603,0,3811,1179,210,2.6,2,1,96,77777,9,999999999,25,0.09,0,88,0.2,0,1 -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,22292,15544,7684,2722,220,2.1,4,3,96,77777,9,999999999,25,0.09,0,88,0.2,0,1 -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,48527,35517,11905,4588,220,3.1,4,2,96,77777,9,999999999,25,0.09,0,88,0.2,0,1 -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,65277,39337,17890,7220,170,2.6,4,3,96,77777,9,999999999,25,0.09,0,88,0.2,0,1 -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,80279,40504,17239,7229,90,3.1,2,1,96,77777,9,999999999,25,0.09,0,88,0.2,0,1 -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,95195,44551,32397,12884,40,2.1,5,3,96,77777,9,999999999,26,0.09,0,88,0.2,0,1 -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,8.3,26,83800,1236,1323,419,730,463,297,87617,35481,35863,14097,350,2.6,7,7,96,9144,9,999999999,26,0.09,0,88,0.2,0,1 -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,99404,43515,25103,10279,30,2.1,9,4,96,77777,9,999999999,26,0.09,0,88,0.2,0,1 -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,102587,48936,34480,13591,60,5.2,9,6,80,9144,9,999999999,26,0.09,0,88,0.2,0,1 -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,51973,10253,41150,15339,50,5.2,9,9,64,4572,9,999999999,26,0.09,0,88,0.2,0.5,1 -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,76,83900,892,1323,386,242,60,201,28351,4095,23667,9360,260,7.2,10,9,19.2,2591,9,999999999,27,0.09,0,88,0.2,1,1 -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,31395,3047,29364,9590,330,2.6,10,9,24,2591,9,999999999,27,0.09,0,88,0.2,0.8,1 -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,8220,0,8287,3396,220,4.1,10,10,24,2743,9,999999999,27,0.09,0,88,0.2,0.3,1 -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,14.4,70,84000,197,1323,399,29,0,29,2817,0,2838,1107,280,3.6,10,10,72,2896,9,999999999,27,0.09,0,88,0.2,0,1 -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,76,84100,13,474,386,2,1,2,0,0,0,0,240,4.6,10,9,32,2896,9,999999999,27,0.09,0,88,0.2,0,1 -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,4267,9,999999999,28,0.09,0,88,0.2,0,1 -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,78,84200,0,0,362,0,0,0,0,0,0,0,170,3.1,6,5,32,4267,9,999999999,28,0.09,0,88,0.2,0,1 -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,77777,9,999999999,28,0.09,0,88,0.2,0,1 -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,7620,9,999999999,28,0.09,0,88,0.2,0,1 -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,77777,9,999999999,28,0.091,0,88,0.2,0,1 -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,77777,9,999999999,28,0.091,0,88,0.2,0,1 -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,77777,9,999999999,29,0.091,0,88,0.2,0,1 -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,7620,9,999999999,29,0.091,0,88,0.2,0,1 -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,5486,9,999999999,29,0.091,0,88,0.2,0,1 -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,6059,0,4420,1314,210,2.1,8,3,96,77777,9,999999999,29,0.091,0,88,0.2,0,1 -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,13208,5214,8640,3013,190,1.5,9,7,96,8230,9,999999999,29,0.091,0,88,0.2,0,1 -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,32285,11031,24623,8270,350,3.1,9,8,96,4267,9,999999999,29,0.091,0,88,0.2,0,1 -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,72178,44749,19525,7813,50,2.6,7,2,96,77777,9,999999999,29,0.091,0,88,0.2,0,1 -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,90778,48111,25574,10404,30,3.1,5,3,96,77777,9,999999999,28,0.091,0,88,0.2,0,1 -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,93690,42117,37210,14466,30,2.6,6,5,96,7620,9,999999999,28,0.091,0,88,0.2,0,1 -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,84481,30381,44005,16624,360,3.1,8,8,96,4267,9,999999999,28,0.091,0,88,0.2,0,1 -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,10.6,30,84000,1240,1323,423,626,363,285,75323,26915,34499,13658,10,4.6,7,7,96,4267,9,999999999,28,0.091,0,88,0.2,0,1 -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,48340,175,48443,17663,360,4.6,9,9,96,4267,9,999999999,28,0.091,0,88,0.2,0,1 -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,59669,22636,32022,12634,360,5.2,7,7,80,4267,9,999999999,28,0.091,0,88,0.2,0,1 -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,45709,4926,41962,14180,310,3.1,9,9,80,4267,9,999999999,28,0.091,0,88,0.2,0,1 -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,35215,5216,32008,10002,220,3.6,10,9,96,4267,9,999999999,28,0.091,0,88,0.2,0,1 -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,9465,0,9541,3766,300,6.2,10,10,80,4267,9,999999999,28,0.091,0,88,0.2,0,1 -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,5361,70,4928,1530,310,6.7,10,9,88,3962,9,999999999,27,0.091,0,88,0.2,0,1 -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,3962,9,999999999,27,0.091,0,88,0.2,0,1 -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,4267,9,999999999,27,0.091,0,88,0.2,0,1 -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,4267,9,999999999,27,0.091,0,88,0.2,0,1 -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,4267,9,999999999,27,0.091,0,88,0.2,0,1 -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,3962,9,999999999,27,0.091,0,88,0.2,0,1 -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,11.1,57,84000,0,0,376,0,0,0,0,0,0,0,180,2.1,9,8,32,3962,9,999999999,27,0.094,0,88,0.2,0,1 -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,3962,9,999999999,27,0.094,0,88,0.2,0,1 -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,3353,9,999999999,26,0.094,0,88,0.2,0,1 -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,9,9,32,3658,9,999999999,26,0.094,0,88,0.2,0,1 -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,3962,9,999999999,26,0.094,0,88,0.2,0,1 -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,3512,0,3179,1005,200,2.1,9,9,96,3962,9,999999999,26,0.094,0,88,0.2,0,1 -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,12.8,63,84200,399,1323,386,128,33,118,14158,1715,13108,4172,180,2.1,10,9,96,3658,9,999999999,27,0.094,0,88,0.2,0,1 -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,29089,5716,25341,8401,220,2.1,10,9,96,2896,9,999999999,27,0.094,0,88,0.2,0,1 -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,38895,8984,30860,11350,350,5.2,10,9,96,2896,9,999999999,27,0.094,0,88,0.2,0,1 -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,30633,0,30934,13305,10,5.7,10,10,96,4267,9,999999999,27,0.094,0,88,0.2,0,1 -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,58353,13398,41315,15711,320,4.1,10,9,64,4267,9,999999999,27,0.094,0,88,0.2,0,1 -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,82683,25425,50526,18407,10,3.6,9,9,48,4572,9,999999999,27,0.094,0,88,0.2,0,1 -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,67597,12482,52438,18889,320,3.1,8,6,48,7620,9,999999999,27,0.094,0,88,0.2,2.5,1 -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,28397,0,28689,12913,280,9.3,10,10,32,1006,9,999999999,28,0.094,0,88,0.2,3.6,1 -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,25132,0,25381,11525,310,9.3,10,10,9.6,1036,9,999999999,28,0.094,0,88,0.2,3.3,1 -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,90,84300,889,1323,382,198,0,198,20420,0,20613,9234,340,7.7,10,10,6.4,1067,9,999999999,28,0.094,0,88,0.2,0.8,1 -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,14780,0,14910,6390,360,7.2,10,10,12.8,1067,9,999999999,28,0.094,0,88,0.2,3.8,1 -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,13.9,93,84500,439,1323,372,87,0,87,8639,0,8709,3511,360,3.6,10,10,9.6,1981,9,999999999,28,0.094,0,88,0.2,0,1 -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,14.4,96,84500,192,1323,373,22,0,22,2136,0,2152,868,10,3.6,10,10,6.4,152,9,999999999,28,0.094,0,88,0.2,2.8,1 -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,14.4,96,84600,11,430,362,1,2,1,0,0,0,0,50,3.6,10,9,11.2,152,9,999999999,29,0.094,0,88,0.2,0,1 -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,2743,9,999999999,29,0.094,0,88,0.2,0.8,1 -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,29,0.094,0,88,0.2,0,1 -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,29,0.094,0,88,0.2,0,1 -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,792,9,999999999,29,0.094,0,88,0.2,0.3,1 -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,29,0.095,0,88,0.2,0,1 -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,29,0.095,0,88,0.2,0,1 -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,30,0.095,0,88,0.2,1,1 -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,30,0.095,0,88,0.2,0.3,1 -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,30,0.095,0,88,0.2,0,1 -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,2324,0,2341,883,60,2.6,10,10,9.6,427,9,999999999,29,0.095,0,88,0.2,0.5,1 -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,4458,0,4493,1947,60,2.6,10,10,9.6,152,9,999999999,29,0.095,0,88,0.2,0.3,1 -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,8696,0,8771,4011,50,3.1,10,10,12.8,183,9,999999999,29,0.095,0,88,0.2,0,1 -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,18550,0,18722,8409,60,2.6,10,10,19.2,488,9,999999999,28,0.095,0,88,0.2,0,1 -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,19773,0,19966,9415,60,2.6,10,10,9.6,305,9,999999999,28,0.095,0,88,0.2,0,1 -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,19131,0,19325,9266,50,2.6,10,10,4,183,9,999999999,28,0.095,0,88,0.2,0,1 -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,12.8,87,84600,1232,1323,371,276,0,276,29339,0,29642,13297,60,3.6,10,10,11.2,457,9,999999999,27,0.095,0,88,0.2,0,1 -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,29470,0,29775,13347,20,3.6,10,10,24,488,9,999999999,27,0.095,0,88,0.2,0,1 -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,27728,0,28010,12642,60,2.6,10,10,24,488,9,999999999,26,0.095,0,88,0.2,0,1 -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,66833,17097,50568,17538,60,3.6,10,7,24,853,9,999999999,26,0.095,0,88,0.2,0,1 -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,19419,0,19601,8853,30,2.6,10,10,24,671,9,999999999,26,0.095,0,88,0.2,0,1 -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,13492,0,13610,5925,50,2.6,10,10,16,853,9,999999999,25,0.095,0,88,0.2,0,1 -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,7353,0,7412,3076,70,2.6,10,10,24,427,9,999999999,25,0.095,0,88,0.2,0,1 -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,4639,0,4083,1304,90,2.1,9,9,32,1067,9,999999999,24,0.095,0,88,0.2,0,1 -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,12.2,83,84500,11,430,352,1,0,1,0,0,0,0,120,1.5,8,8,32,1676,9,999999999,24,0.095,0,88,0.2,0,1 -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,12.8,87,84600,0,0,347,0,0,0,0,0,0,0,80,2.1,7,7,32,1067,9,999999999,24,0.095,0,88,0.2,0,1 -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,1067,9,999999999,23,0.095,0,88,0.2,0,1 -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,914,9,999999999,23,0.095,0,88,0.2,0,1 -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,640,9,999999999,23,0.095,0,88,0.2,0,1 -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,3353,9,999999999,22,0.096,0,88,0.2,0,1 -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,914,9,999999999,22,0.096,0,88,0.2,0,1 -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,1006,9,999999999,21,0.096,0,88,0.2,0,1 -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,10,10,24,1097,9,999999999,21,0.096,0,88,0.2,0,1 -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,12.2,83,84300,2,188,370,0,0,0,0,0,0,0,0,0,10,10,24,1097,9,999999999,21,0.096,0,88,0.2,0,1 -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,12.8,87,84300,147,1324,371,25,0,25,2421,0,2438,908,360,1.5,10,10,24,1219,9,999999999,21,0.096,0,88,0.2,0,1 -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,6236,0,6286,2594,0,0,10,10,24,1189,9,999999999,21,0.096,0,88,0.2,0,1 -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,32212,5288,29095,9039,10,2.1,10,9,24,1219,9,999999999,21,0.096,0,88,0.2,0,1 -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,18347,0,18516,8324,10,1.5,10,10,24,1158,9,999999999,21,0.096,0,88,0.2,0,1 -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,23543,0,23773,10856,40,3.1,10,10,24,853,9,999999999,22,0.096,0,88,0.2,0,1 -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,11.1,57,84300,1161,1324,395,257,0,257,27190,0,27465,12412,50,3.1,10,10,24,1372,9,999999999,22,0.096,0,88,0.2,0,1 -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,29250,0,29552,13255,80,3.1,10,10,24,1036,9,999999999,22,0.096,0,88,0.2,0,1 -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,29360,0,29663,13305,350,4.1,10,10,24,914,9,999999999,22,0.096,0,88,0.2,0,1 -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,27618,0,27900,12600,310,3.1,10,10,11.2,792,9,999999999,22,0.096,0,88,0.2,0,1 -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,24183,0,24422,11169,300,3.1,10,10,16,2134,9,999999999,23,0.096,0,88,0.2,0,1 -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,24177,0,24403,10472,270,3.1,10,10,48,3658,9,999999999,23,0.096,0,88,0.2,0,1 -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,16742,0,16889,6994,280,3.1,10,10,24,3658,9,999999999,23,0.096,0,88,0.2,0,1 -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,15798,4443,12824,4269,200,2.1,9,7,24,3658,9,999999999,23,0.096,0,88,0.2,0,1 -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,5767,29,5006,1530,190,2.1,9,9,24,3658,9,999999999,23,0.096,0,88,0.2,0,1 -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,10,9,32,3658,9,999999999,24,0.096,0,88,0.2,0,1 -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,3658,9,999999999,24,0.096,0,88,0.2,0,1 -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,9,9,32,3658,9,999999999,24,0.096,0,88,0.2,0,1 -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,11.7,81,84200,0,0,339,0,0,0,0,0,0,0,200,2.6,5,5,32,77777,9,999999999,24,0.096,0,88,0.2,0,1 -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,7620,9,999999999,25,0.096,0,88,0.2,0,1 -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,77777,9,999999999,25,0.098,0,88,0.2,0,1 -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,77777,9,999999999,25,0.098,0,88,0.2,0,1 -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,77777,9,999999999,25,0.098,0,88,0.2,0,1 -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,77777,9,999999999,25,0.098,0,88,0.2,0,1 -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,26,0.098,0,88,0.2,0,1 -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,3781,0,2640,844,190,1.5,8,8,16,4267,9,999999999,25,0.098,0,88,0.2,0,1 -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,11.7,81,84100,390,1324,346,110,71,89,12431,3126,10093,3397,200,2.1,7,7,16,4267,9,999999999,25,0.098,0,88,0.2,0,1 -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,41598,14591,33815,9594,220,3.1,8,8,16,4267,9,999999999,25,0.098,0,88,0.2,0,1 -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,11.1,57,84100,850,1324,354,550,693,105,67426,40893,12916,5302,260,2.6,2,2,24,77777,9,999999999,25,0.098,0,88,0.2,0,1 -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,91667,48409,16644,6983,60,2.1,3,3,32,77777,9,999999999,25,0.098,0,88,0.2,0,1 -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,116024,57016,23196,9570,300,2.6,4,4,32,77777,9,999999999,25,0.098,0,88,0.2,0,1 -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,96171,36872,51353,18568,300,3.1,6,6,24,7620,9,999999999,25,0.098,0,88,0.2,0,1 -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,11.7,43,84000,1234,1324,392,1002,810,246,121744,56687,30058,12120,120,3.1,7,6,19.2,7620,9,999999999,24,0.098,0,88,0.2,0,1 -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,49,83900,1175,1324,380,525,108,429,60665,9681,49921,17998,150,5.7,9,8,19.2,1524,9,999999999,24,0.098,0,88,0.2,34.5,1 -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,17410,0,17581,8473,150,6.2,10,10,0.4,183,9,999999999,24,0.098,0,88,0.2,12.4,1 -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,35561,7485,27978,10689,160,3.1,9,9,64,3048,9,999999999,24,0.098,0,88,0.2,0,1 -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,46930,32555,16640,6258,110,3.6,5,5,80,77777,9,999999999,24,0.098,0,88,0.2,0,1 -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,24459,6587,21587,5730,180,2.1,8,8,80,7620,9,999999999,24,0.098,0,88,0.2,0,1 -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,4749,0,3016,992,290,2.6,9,9,64,7620,9,999999999,24,0.098,0,88,0.2,0,1 -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,2591,9,999999999,23,0.098,0,88,0.2,0,1 -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,77777,9,999999999,23,0.098,0,88,0.2,0,1 -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,77777,9,999999999,23,0.098,0,88,0.2,0,1 -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,11.7,81,84000,0,0,326,0,0,0,0,0,0,0,150,2.6,1,1,32,77777,9,999999999,23,0.098,0,88,0.2,0,1 -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,77777,9,999999999,23,0.098,0,88,0.2,0,1 -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,77777,9,999999999,23,0.099,0,88,0.2,0,1 -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,77777,9,999999999,23,0.099,0,88,0.2,0,1 -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,77777,9,999999999,22,0.099,0,88,0.2,0,1 -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,77777,9,999999999,22,0.099,0,88,0.2,0,1 -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,89,83900,1,143,310,0,1,0,0,0,0,0,120,1.5,3,1,80,77777,9,999999999,22,0.099,0,88,0.2,0,1 -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,6157,0,3367,1033,250,1,0,0,104,77777,9,999999999,22,0.099,0,88,0.2,0,1 -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,26078,20129,7120,2513,0,0,1,0,96,77777,9,999999999,22,0.099,0,88,0.2,0,1 -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,56,84000,629,1324,342,389,638,85,46656,34765,10225,3953,150,1.5,2,1,96,77777,9,999999999,22,0.099,0,88,0.2,0,1 -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,47,84000,848,1324,349,622,747,143,74509,48364,17201,6932,160,1.5,6,0,96,77777,9,999999999,22,0.099,0,88,0.2,0,1 -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,81969,43124,23674,9688,220,1.5,7,2,96,77777,9,999999999,22,0.099,0,88,0.2,0,1 -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,90699,39730,43240,16204,80,2.6,5,3,80,77777,9,999999999,22,0.099,0,88,0.2,0,1 -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,8.9,36,84000,1227,1324,393,792,593,242,96395,42362,29618,11945,50,2.6,7,7,80,9144,9,999999999,21,0.099,0,88,0.2,0,1 -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,43939,7801,31896,12755,80,3.1,9,9,80,9144,9,999999999,21,0.099,0,88,0.2,0,1 -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,8.9,36,83900,1173,1324,408,557,203,377,65042,17320,44317,16545,240,6.2,10,9,48,9144,9,999999999,21,0.099,0,88,0.2,0,1 -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,11.7,81,84200,1053,1324,369,232,0,232,24319,0,24558,11196,350,8.8,10,10,32,1981,9,999999999,21,0.099,0,88,0.2,0.5,1 -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,9.4,50,84100,881,1324,393,235,0,235,24315,0,24541,10480,50,4.1,10,10,64,3658,9,999999999,21,0.099,0,88,0.2,0,1 -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,27641,11004,18278,6746,130,4.6,9,8,64,4572,9,999999999,21,0.099,0,88,0.2,0,1 -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,51,84000,428,1324,372,203,147,155,22171,9524,17010,5119,170,3.1,9,7,96,7620,9,999999999,21,0.099,0,88,0.2,0,1 -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,11.1,57,84000,180,1324,376,54,22,51,5916,93,5606,1641,140,2.1,9,8,96,7620,9,999999999,21,0.099,0,88,0.2,0,1 -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,7620,9,999999999,21,0.099,0,88,0.2,0,1 -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,7620,9,999999999,21,0.099,0,88,0.2,0,1 -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,7620,9,999999999,20,0.099,0,88,0.2,0,1 -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,11.7,81,84100,0,0,334,0,0,0,0,0,0,0,190,2.1,8,3,32,77777,9,999999999,20,0.099,0,88,0.2,0,1 -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,77777,9,999999999,20,0.099,0,88,0.2,0,1 -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,77777,9,999999999,20,0.101,0,88,0.2,0,1 -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,3,1,32,77777,9,999999999,20,0.101,0,88,0.2,0,1 -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,83,84200,0,0,309,0,0,0,0,0,0,0,230,2.1,0,0,32,77777,9,999999999,20,0.101,0,88,0.2,0,1 -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,83,84200,0,0,315,0,0,0,0,0,0,0,210,1.5,1,1,40,77777,9,999999999,20,0.101,0,88,0.2,0,1 -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,86,84200,1,121,312,0,4,0,0,0,0,0,190,1.5,1,1,96,77777,9,999999999,20,0.101,0,88,0.2,0,1 -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,6582,0,2843,892,210,2.1,0,0,96,77777,9,999999999,20,0.101,0,88,0.2,0,1 -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,27640,21133,5706,2043,190,2.1,0,0,96,77777,9,999999999,19,0.101,0,88,0.2,0,1 -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,51,84300,627,1324,344,434,774,68,52914,39767,8311,3239,220,1.5,1,0,96,77777,9,999999999,19,0.101,0,88,0.2,0,1 -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,73366,47228,15409,6255,300,1,1,1,96,77777,9,999999999,19,0.101,0,88,0.2,0,1 -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,41,84300,1026,1324,366,759,858,95,81416,88397,13012,2851,100,2.1,1,1,96,77777,9,999999999,19,0.101,0,88,0.2,0,1 -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,108018,51540,17764,7428,20,3.1,2,2,88,77777,9,999999999,19,0.101,0,88,0.2,0,1 -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,83895,34179,31534,12622,30,4.6,5,5,96,77777,9,999999999,19,0.101,0,88,0.2,0,1 -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,121988,56832,24247,9959,50,4.1,4,4,96,77777,9,999999999,18,0.101,0,88,0.2,0,1 -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,86450,38354,32199,12818,50,4.1,5,5,96,77777,9,999999999,18,0.101,0,88,0.2,0,1 -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,81744,42294,23331,9583,30,3.6,5,5,96,77777,9,999999999,18,0.101,0,88,0.2,0,1 -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,73670,46381,18195,7361,50,3.1,4,4,96,77777,9,999999999,18,0.101,0,88,0.2,0,1 -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,55280,41171,9401,3694,350,2.1,1,1,96,77777,9,999999999,18,0.101,0,88,0.2,0,1 -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,29995,23856,6322,2297,350,3.1,1,1,96,77777,9,999999999,17,0.101,0,88,0.2,0,1 -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,37,84300,177,1324,368,82,389,30,9374,0,3436,1107,0,0,0,0,96,77777,9,999999999,17,0.101,0,88,0.2,0,1 -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,77777,9,999999999,17,0.101,0,88,0.2,0,1 -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,77777,9,999999999,17,0.101,0,88,0.2,0,1 -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,3,3,32,77777,9,999999999,17,0.101,0,88,0.2,0,1 -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,77777,9,999999999,17,0.101,0,88,0.2,0,1 -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,77777,9,999999999,16,0.101,0,88,0.2,0,1 -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,77777,9,999999999,16,0.102,0,88,0.2,0,1 -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,77777,9,999999999,16,0.102,0,88,0.2,0,1 -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,77777,9,999999999,16,0.102,0,88,0.2,0,1 -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,10.6,75,84300,0,0,319,0,0,0,0,0,0,0,190,2.1,0,0,40,77777,9,999999999,16,0.102,0,88,0.2,0,1 -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,77777,9,999999999,16,0.102,0,88,0.2,0,1 -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,65,84400,135,1325,326,50,191,30,5577,0,3355,1018,190,2.6,0,0,96,77777,9,999999999,16,0.102,0,88,0.2,0,1 -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,54,84400,382,1325,338,218,536,63,25289,19761,7328,2567,200,3.1,0,0,112,77777,9,999999999,16,0.102,0,88,0.2,0,1 -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,50402,38782,10877,4181,200,2.1,0,0,104,77777,9,999999999,16,0.102,0,88,0.2,0,1 -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,37,84400,844,1325,368,620,793,114,75500,48285,13932,5687,160,2.1,0,0,104,77777,9,999999999,16,0.102,0,88,0.2,0,1 -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,97295,53317,16301,6834,90,1.5,0,0,104,77777,9,999999999,16,0.102,0,88,0.2,0,1 -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,95210,89573,18488,4948,0,0,0,0,104,77777,9,999999999,16,0.102,0,88,0.2,0,1 -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,6.7,23,84400,1224,1325,386,968,888,147,101700,91016,18812,6912,100,5.2,0,0,104,77777,9,999999999,16,0.102,0,88,0.2,0,1 -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,102001,90966,18904,7150,80,3.1,0,0,104,77777,9,999999999,16,0.102,0,88,0.2,0,1 -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,95116,88348,18540,5294,70,4.1,1,0,104,77777,9,999999999,16,0.102,0,88,0.2,0,1 -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,93808,51500,20174,8374,160,3.6,1,1,104,77777,9,999999999,16,0.102,0,88,0.2,0,1 -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,75405,47867,14374,5898,70,4.1,1,1,96,77777,9,999999999,16,0.102,0,88,0.2,0,1 -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,51595,39470,11314,4397,70,3.6,1,1,96,77777,9,999999999,16,0.102,0,88,0.2,0,1 -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,6.1,22,84200,422,1325,392,237,524,69,27650,23022,8072,2870,100,4.1,1,1,96,77777,9,999999999,16,0.102,0,88,0.2,0,1 -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,7189,0,4167,1296,100,3.1,1,1,96,77777,9,999999999,16,0.102,0,88,0.2,0,1 -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,8.9,36,84300,6,320,376,0,4,0,0,0,0,0,120,3.6,2,2,48,77777,9,999999999,16,0.102,0,88,0.2,0,1 -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,77777,9,999999999,16,0.102,0,88,0.2,0,1 -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,77777,9,999999999,16,0.102,0,88,0.2,0,1 -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,77777,9,999999999,16,0.102,0,88,0.2,0,1 -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,77777,9,999999999,16,0.102,0,88,0.2,0,1 -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,77777,9,999999999,16,0.104,0,88,0.2,0,1 -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,58,84300,0,0,333,0,0,0,0,0,0,0,210,2.6,0,0,32,77777,9,999999999,16,0.104,0,88,0.2,0,1 -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,65,84300,0,0,326,0,0,0,0,0,0,0,190,2.1,0,0,32,77777,9,999999999,16,0.104,0,88,0.2,0,1 -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,77777,9,999999999,16,0.104,0,88,0.2,0,1 -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,77777,9,999999999,16,0.104,0,88,0.2,0,1 -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,65,84300,131,1325,326,48,174,30,5343,0,3348,1010,200,2.6,1,0,104,77777,9,999999999,16,0.104,0,88,0.2,0,1 -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,10,53,84300,379,1325,341,213,507,68,24539,19302,7857,2724,220,3.1,2,0,112,77777,9,999999999,16,0.104,0,88,0.2,0,1 -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,50020,39344,10991,4214,200,3.1,0,0,104,77777,9,999999999,16,0.104,0,88,0.2,0,1 -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,75219,48769,14047,5725,190,2.6,0,0,96,77777,9,999999999,16,0.104,0,88,0.2,0,1 -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,97027,53971,16422,6877,200,1.5,0,0,104,77777,9,999999999,16,0.104,0,88,0.2,0,1 -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,94522,88982,18605,4925,60,2.1,0,0,96,77777,9,999999999,16,0.104,0,88,0.2,0,1 -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,13,84200,1222,1325,388,967,886,149,100556,90019,19031,6898,60,3.6,0,0,104,77777,9,999999999,16,0.104,0,88,0.2,0,1 -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,97125,86332,18771,7047,30,4.6,1,1,104,77777,9,999999999,16,0.104,0,88,0.2,0,1 -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,95451,89064,18407,5233,130,1.5,1,1,104,77777,9,999999999,16,0.104,0,88,0.2,0,1 -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,91506,50809,19048,7925,360,4.6,2,2,104,77777,9,999999999,16,0.104,0,88,0.2,0,1 -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,71411,46757,23089,9053,40,3.6,3,3,112,77777,9,999999999,16,0.104,0,88,0.2,0,1 -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,50057,39506,15499,5831,30,4.1,2,2,112,77777,9,999999999,16,0.104,0,88,0.2,0,1 -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,23801,18246,12002,3989,30,2.1,5,3,112,77777,9,999999999,16,0.104,0,88,0.2,0,1 -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,7100,191,4784,1433,30,2.6,6,2,112,77777,9,999999999,16,0.104,0,88,0.2,0,1 -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,43,84000,6,298,372,0,2,0,0,0,0,0,130,2.6,3,3,64,77777,9,999999999,15,0.104,0,88,0.2,0,1 -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,77777,9,999999999,15,0.104,0,88,0.2,0,1 -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,77777,9,999999999,15,0.104,0,88,0.2,0,1 -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,77777,9,999999999,15,0.104,0,88,0.2,0,1 -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,77777,9,999999999,15,0.104,0,88,0.2,0,1 -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,77777,9,999999999,15,0.106,0,88,0.2,0,1 -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,77777,9,999999999,15,0.106,0,88,0.2,0,1 -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,5.6,39,84000,0,0,336,0,0,0,0,0,0,0,180,3.1,1,0,32,77777,9,999999999,15,0.106,0,88,0.2,0,1 -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,77777,9,999999999,15,0.106,0,88,0.2,0,1 -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,77777,9,999999999,15,0.106,0,88,0.2,0,1 -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,5146,0,3140,952,200,3.1,2,1,112,77777,9,999999999,15,0.106,0,88,0.2,0,1 -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,23211,18127,7643,2652,190,4.1,3,1,96,77777,9,999999999,16,0.106,0,88,0.2,0,1 -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,48787,38171,10435,4009,210,3.6,1,1,96,77777,9,999999999,16,0.106,0,88,0.2,0,1 -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,58093,35430,13254,5411,210,2.6,1,1,104,77777,9,999999999,16,0.106,0,88,0.2,0,1 -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,82623,87477,16344,3096,360,2.6,1,0,104,77777,9,999999999,16,0.106,0,88,0.2,0,1 -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,85368,38682,35475,13859,20,4.1,3,3,96,77777,9,999999999,16,0.106,0,88,0.2,0,1 -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,118869,59182,34492,13609,360,2.6,5,5,96,77777,9,999999999,17,0.106,0,88,0.2,0.8,1 -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,85700,25772,56861,19802,210,3.1,9,9,64,2743,9,999999999,17,0.106,0,88,0.2,0.3,1 -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,82437,22151,60867,20174,90,3.1,7,7,96,2438,9,999999999,17,0.106,0,88,0.2,0,1 -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,6.1,22,84000,1045,1325,411,663,422,329,76900,36047,38398,14491,120,3.1,6,6,80,7620,9,999999999,17,0.106,0,88,0.2,0,1 -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,25736,1408,24337,9472,50,6.2,9,9,96,2743,9,999999999,17,0.106,0,88,0.2,0,1 -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,27623,8769,20903,7444,190,3.6,9,8,80,2743,9,999999999,18,0.106,0,88,0.2,0,1 -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,18946,6946,15048,4671,200,5.2,9,7,80,2896,9,999999999,18,0.106,0,88,0.2,0,1 -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,4975,0,4768,1421,260,2.1,9,8,80,3048,9,999999999,18,0.106,0,88,0.2,0,1 -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,4267,9,999999999,18,0.106,0,88,0.2,0,1 -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,77777,9,999999999,18,0.106,0,88,0.2,0,1 -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,77777,9,999999999,19,0.106,0,88,0.2,0,1 -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,9.4,50,84200,0,0,347,0,0,0,0,0,0,0,190,4.1,1,1,32,77777,9,999999999,19,0.106,0,88,0.2,0,1 -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,56,84200,0,0,342,0,0,0,0,0,0,0,230,2.1,1,1,32,77777,9,999999999,19,0.106,0,88,0.2,0,1 -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,58,84200,0,0,340,0,0,0,0,0,0,0,160,2.6,1,1,32,77777,9,999999999,19,0.107,0,88,0.2,0,1 -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,77777,9,999999999,19,0.107,0,88,0.2,0,1 -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,77777,9,999999999,20,0.107,0,88,0.2,0,1 -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,77777,9,999999999,20,0.107,0,88,0.2,0,1 -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,77777,9,999999999,20,0.107,0,88,0.2,0,1 -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,65,84300,125,1326,326,48,199,29,5335,0,3231,969,180,2.1,3,0,96,77777,9,999999999,20,0.107,0,88,0.2,0,1 -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,25363,19013,6444,2274,350,2.6,0,0,96,77777,9,999999999,20,0.107,0,88,0.2,0,1 -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,50736,38619,9525,3680,340,3.1,0,0,96,77777,9,999999999,20,0.107,0,88,0.2,0,1 -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,75859,47662,12088,4956,360,2.6,0,0,96,77777,9,999999999,20,0.107,0,88,0.2,0,1 -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,11.7,43,84400,1018,1326,367,781,869,113,83694,89707,15356,3016,320,2.6,0,0,96,77777,9,999999999,19,0.107,0,88,0.2,0,1 -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,91806,88191,15825,4449,140,1.5,1,1,80,77777,9,999999999,19,0.107,0,88,0.2,0,1 -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,107878,49395,29775,12010,150,2.1,3,3,80,77777,9,999999999,19,0.107,0,88,0.2,0,1 -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,100994,91638,17022,6449,190,3.1,2,2,80,77777,9,999999999,19,0.107,0,88,0.2,0,1 -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,104433,49997,20583,8548,50,2.1,3,3,96,77777,9,999999999,19,0.107,0,88,0.2,0,1 -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,80453,40902,34819,13438,110,2.6,5,4,96,77777,9,999999999,19,0.107,0,88,0.2,0,1 -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,47181,23188,22818,8956,130,4.6,5,4,96,77777,9,999999999,19,0.107,0,88,0.2,0,1 -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,42534,23017,27624,8978,210,4.6,5,4,96,77777,9,999999999,19,0.107,0,88,0.2,0,1 -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,22466,16837,7937,2813,180,4.6,6,3,96,77777,9,999999999,19,0.107,0,88,0.2,0,1 -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,6925,0,4962,1451,180,4.1,7,2,80,77777,9,999999999,19,0.107,0,88,0.2,0,1 -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,77777,9,999999999,18,0.107,0,88,0.2,0,1 -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,77777,9,999999999,18,0.107,0,88,0.2,0,1 -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,77777,9,999999999,18,0.107,0,88,0.2,0,1 -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,77777,9,999999999,18,0.107,0,88,0.2,0,1 -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,77777,9,999999999,18,0.107,0,88,0.2,0,1 -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,77777,9,999999999,22,0.079,0,88,0.2,0,1 -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,11,75,83800,0,0,360,0,0,0,0,0,0,0,200,4.7,5,4,16,77777,9,999999999,23,0.079,0,88,0.2,0,1 -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,4,3,16,77777,9,999999999,23,0.079,0,88,0.2,0.3,1 -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,77777,9,999999999,24,0.079,0,88,0.2,0,1 -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,6096,9,999999999,24,0.079,0,88,0.2,0,1 -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,4267,9,999999999,25,0.079,0,88,0.2,0,1 -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,20025,12114,12486,3885,290,2.1,8,7,16,4267,9,999999999,25,0.079,0,88,0.2,0,1 -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,16.1,78,84400,612,1326,382,131,0,131,13182,0,13297,5604,300,4.1,8,8,16,4267,9,999999999,26,0.079,0,88,0.2,0,1 -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,24071,408,23730,9163,320,4.1,9,7,16,6706,9,999999999,27,0.079,0,88,0.2,0,1 -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,75756,35076,35207,13510,320,4.1,7,6,16,6706,9,999999999,27,0.079,0,88,0.2,0,1 -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,36,84100,1145,1326,400,828,681,238,99739,48880,28826,11637,20,4.6,7,7,16,77777,9,999999999,28,0.079,0,88,0.2,0,1 -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,12,39,84700,1216,1326,400,947,866,151,100593,89639,19360,6735,40,3.6,6,5,16.1,77777,9,999999999,28,0.079,0,88,0.2,0,1 -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,9,30,84700,1221,1326,401,932,815,179,115911,53505,22370,9235,30,3.6,5,5,16.1,77777,9,999999999,29,0.079,0,88,0.2,0,1 -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,10,32,84700,1161,1326,406,869,688,266,104020,51074,32024,12756,50,2.1,7,6,16.1,77777,9,999999999,29,0.079,0,88,0.2,0,1 -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,11,33,84700,1039,1326,424,357,95,282,41784,7391,33200,12958,70,3.6,9,8,16.1,3000,9,999999999,30,0.079,0,88,0.2,0.3,1 -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,11,33,84600,865,1326,424,101,0,101,10427,0,10524,5153,90,4.1,10,8,16.1,3000,9,999999999,31,0.079,0,88,0.2,0,1 -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,20263,823,19672,7087,310,6.7,8,8,16,1500,9,999999999,31,0.079,0,88,0.2,0,1 -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,15,78,84400,407,1326,376,256,510,99,28772,23239,11169,3756,340,9.3,9,8,16.1,3000,9,999999999,32,0.079,0,88,0.2,0,1 -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,15,73,84500,157,1326,371,70,415,21,8133,0,2443,802,290,3.6,8,6,16.1,4200,9,999999999,32,0.079,0,88,0.2,0,1 -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,16,88,84500,3,232,372,0,0,0,0,0,0,0,130,1.5,9,8,16.1,2100,9,999999999,33,0.079,0,88,0.2,0,1 -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,16,88,84400,0,0,366,0,0,0,0,0,0,0,150,3.1,9,7,16.1,6000,9,999999999,33,0.079,0,88,0.2,0,1 -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,16,83,84500,0,0,385,0,0,0,0,0,0,0,200,5.7,9,9,16.1,2100,9,999999999,34,0.079,0,88,0.2,0,1 -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,84,84300,0,0,388,0,0,0,0,0,0,0,290,2.6,10,10,16,1800,9,999999999,34,0.079,0,88,0.2,0,1 -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,14,73,84400,0,0,374,0,0,0,0,0,0,0,190,3.6,9,8,16.1,1500,9,999999999,33,0.079,0,88,0.2,0,1 -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,14,73,84300,0,0,382,0,0,0,0,0,0,0,210,5.1,9,9,16.1,2100,9,999999999,32,0.079,0,88,0.2,0,1 -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,3353,9,999999999,31,0.079,0,88,0.2,0,1 -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,87,84200,0,0,351,0,0,0,0,0,0,0,180,4.1,8,4,16,6096,9,999999999,30,0.079,0,88,0.2,3.6,1 -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,87,84200,0,0,353,0,0,0,0,0,0,0,140,3.1,9,5,16,6096,9,999999999,29,0.079,0,88,0.2,0,1 -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,77777,9,999999999,28,0.079,0,88,0.2,0,1 -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,77777,9,999999999,27,0.079,0,88,0.2,0,1 -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,15.6,76,84500,365,1326,359,238,578,79,26896,20947,8958,3023,210,1.5,2,2,16,77777,9,999999999,26,0.079,0,88,0.2,0,1 -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,61,84600,610,1326,367,434,782,73,52307,37743,8822,3421,220,4.1,1,1,16,77777,9,999999999,25,0.079,0,88,0.2,0,1 -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,56,84700,831,1326,384,632,848,99,77394,46891,12164,4991,250,3.1,3,3,16,77777,9,999999999,24,0.079,0,88,0.2,0,1 -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,86856,96740,11905,2635,280,2.6,3,3,16,77777,9,999999999,23,0.079,0,88,0.2,0,1 -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,98101,98677,11224,3458,310,4.1,4,4,16,77777,9,999999999,22,0.079,0,88,0.2,0,1 -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,105607,101089,11064,4398,10,3.6,5,5,16,77777,9,999999999,23,0.079,0,88,0.2,0,1 -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,104454,97494,13784,5389,330,5.2,7,6,16,77777,9,999999999,25,0.079,0,88,0.2,0,1 -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,15,40,84700,1159,1326,417,904,759,239,108728,51676,28906,11702,310,7.2,6,4,16,6706,9,999999999,26,0.079,0,88,0.2,0,1 -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,13280,0,13410,6667,140,7.7,9,8,8,2134,9,999999999,27,0.079,0,88,0.2,0,1 -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,11017,0,11120,5420,90,3.6,8,8,16,2744,9,999999999,29,0.079,0,88,0.2,0,1 -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,7065,0,7127,3361,170,2.6,7,7,16,3353,9,999999999,30,0.079,0,88,0.2,0,1 -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,9690,0,9767,3713,180,4.1,3,3,16,6096,9,999999999,31,0.079,0,88,0.2,0,1 -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,7512,0,4916,1422,180,7.2,4,4,16,6096,9,999999999,33,0.079,0,88,0.2,0,1 -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,77777,9,999999999,34,0.079,0,88,0.2,0,1 -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,77777,9,999999999,35,0.079,0,88,0.2,0,1 -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,77777,9,999999999,37,0.079,0,88,0.2,0,1 -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,13.3,65,84000,0,0,345,0,0,0,0,0,0,0,220,6.2,0,0,16,77777,9,999999999,38,0.079,0,88,0.2,0,1 -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,77777,9,999999999,37,0.079,0,88,0.2,0,1 -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,77777,9,999999999,36,0.08,0,88,0.2,0,1 -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,77777,9,999999999,35,0.08,0,88,0.2,0,1 -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,77777,9,999999999,34,0.08,0,88,0.2,0,1 -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,77777,9,999999999,34,0.08,0,88,0.2,0,1 -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,77777,9,999999999,33,0.08,0,88,0.2,0,1 -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,77777,9,999999999,32,0.08,0,88,0.2,0,1 -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,27772,20342,6524,2289,270,4.6,0,0,16,77777,9,999999999,31,0.08,0,88,0.2,0,1 -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,54044,39765,8709,3374,310,3.1,0,0,16,77777,9,999999999,30,0.08,0,88,0.2,0,1 -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,68833,91727,10807,1897,280,2.6,0,0,16,77777,9,999999999,29,0.08,0,88,0.2,0,1 -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,83566,93560,11242,2534,340,2.1,3,3,16,77777,9,999999999,28,0.08,0,88,0.2,0,1 -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,94489,93307,13611,3954,30,1.5,3,3,16,77777,9,999999999,27,0.08,0,88,0.2,0,1 -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,10.6,30,84500,1212,1327,408,947,926,99,101502,95867,13031,4992,90,2.1,3,3,16,77777,9,999999999,28,0.08,0,88,0.2,0,1 -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,102261,95089,14622,5588,170,3.1,3,3,16,77777,9,999999999,29,0.08,0,88,0.2,0,1 -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,26,84500,1157,1327,416,904,921,100,96765,95147,13304,4099,130,1.5,3,3,16,77777,9,999999999,31,0.08,0,88,0.2,0,1 -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,86684,95643,11044,2629,80,4.1,3,3,16,77777,9,999999999,32,0.08,0,88,0.2,0,1 -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,68960,86870,12876,2120,60,2.1,3,3,16,77777,9,999999999,33,0.08,0,88,0.2,0,1 -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,48992,79670,10124,1504,140,2.1,5,5,16,77777,9,999999999,34,0.08,0,88,0.2,0,1 -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,26,84300,400,1327,419,249,673,46,29770,22879,5510,1995,0,0,4,4,16,77777,9,999999999,35,0.08,0,88,0.2,0,1 -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,7880,0,2437,794,150,3.6,4,4,16,77777,9,999999999,36,0.08,0,88,0.2,0,1 -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,77777,9,999999999,37,0.08,0,88,0.2,0,1 -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,77777,9,999999999,38,0.08,0,88,0.2,0,1 -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,77777,9,999999999,39,0.08,0,88,0.2,0,1 -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,11.1,42,83400,0,0,385,0,0,0,0,0,0,0,210,6.7,7,4,16,77777,9,999999999,40,0.08,0,88,0.2,0,1 -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,6096,9,999999999,39,0.08,0,88,0.2,0,1 -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,77777,9,999999999,39,0.08,0,88,0.2,0,1 -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,77777,9,999999999,38,0.08,0,88,0.2,0,1 -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,77777,9,999999999,37,0.08,0,88,0.2,0,1 -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,77777,9,999999999,37,0.08,0,88,0.2,0,1 -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,51,83300,0,0,344,0,0,0,0,0,0,0,230,4.6,0,0,16,77777,9,999999999,36,0.08,0,88,0.2,0,1 -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,11.1,57,83600,109,1294,342,0,0,0,0,0,0,0,250,4.6,0,0,16,77777,9,999999999,36,0.08,0,88,0.2,0,1 -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,27624,21507,7272,2515,330,4.6,0,0,16,77777,9,999999999,35,0.08,0,88,0.2,0,1 -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,48123,37161,13535,5056,290,3.6,3,3,16,77777,9,999999999,34,0.08,0,88,0.2,0,1 -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,74178,46100,12281,5026,350,4.6,3,3,16,77777,9,999999999,34,0.08,0,88,0.2,0,1 -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,80424,86797,14996,2927,360,6.7,5,5,16,77777,9,999999999,33,0.08,0,88,0.2,0,1 -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,100874,48877,24489,10063,20,7.2,5,5,16,77777,9,999999999,33,0.08,0,88,0.2,0,1 -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,13.9,37,84100,1210,1327,419,941,890,128,100985,92679,16617,5907,80,4.6,6,5,16,77777,9,999999999,33,0.08,0,88,0.2,0,1 -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,102671,95979,14145,5388,50,3.6,6,6,16,77777,9,999999999,33,0.08,0,88,0.2,0,1 -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,113966,54504,19371,8081,40,4.1,7,6,16,77777,9,999999999,33,0.08,0,88,0.2,0,1 -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,64368,24104,38424,14472,100,3.6,9,9,16,3353,9,999999999,33,0.08,0,88,0.2,0,1 -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,69265,43273,23908,9292,130,1.5,9,8,16,3658,9,999999999,33,0.08,0,88,0.2,0,1 -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,20665,1247,19850,7086,150,3.1,9,7,16,3658,9,999999999,33,0.08,0,88,0.2,0,1 -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,12.8,35,84100,396,1327,432,44,0,44,4358,0,4392,1913,130,4.1,8,8,16,3658,9,999999999,33,0.08,0,88,0.2,0,1 -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,6551,0,4601,1331,130,2.6,6,5,16,3658,9,999999999,33,0.08,0,88,0.2,0,1 -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,3658,9,999999999,33,0.08,0,88,0.2,0,1 -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,3658,9,999999999,33,0.08,0,88,0.2,0,1 -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,3658,9,999999999,33,0.08,0,88,0.2,0,1 -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,13.3,48,83900,0,0,405,0,0,0,0,0,0,0,220,7.7,8,8,16,3353,9,999999999,33,0.08,0,88,0.2,0,1 -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,3048,9,999999999,33,0.08,0,88,0.2,0,1 -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,77777,9,999999999,32,0.08,0,88,0.2,0,1 -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,77777,9,999999999,32,0.08,0,88,0.2,0,1 -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,6096,9,999999999,31,0.08,0,88,0.2,0,1 -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,6096,9,999999999,31,0.08,0,88,0.2,0,1 -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,6096,9,999999999,30,0.08,0,88,0.2,0,1 -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,6096,9,999999999,30,0.08,0,88,0.2,0,1 -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,24179,19430,10402,3359,240,4.1,2,1,16,6096,9,999999999,29,0.08,0,88,0.2,0,1 -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,45898,35772,13330,4975,300,2.1,2,2,16,77777,9,999999999,29,0.08,0,88,0.2,0,1 -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,71959,47413,16014,6442,0,0,3,3,16,77777,9,999999999,28,0.08,0,88,0.2,0,1 -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,90643,50354,17860,7442,310,2.6,6,6,16,77777,9,999999999,27,0.08,0,88,0.2,0,1 -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,91065,87978,16219,4342,10,4.6,7,7,16,77777,9,999999999,27,0.08,0,88,0.2,0,1 -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,97810,89887,16595,5844,50,5.7,5,5,16,77777,9,999999999,27,0.08,0,88,0.2,0,1 -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,98375,88246,18755,6483,50,5.2,5,5,16,77777,9,999999999,26,0.08,0,88,0.2,0,1 -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,94160,90559,16050,4551,70,4.6,5,5,16,77777,9,999999999,26,0.08,0,88,0.2,0,1 -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,84117,91176,13511,2931,90,3.1,5,5,16,77777,9,999999999,26,0.08,0,88,0.2,0,1 -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,68802,89393,10606,1941,40,3.6,5,5,16,77777,9,999999999,26,0.08,0,88,0.2,0,1 -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,54991,42427,8453,3301,50,2.1,8,5,16,77777,9,999999999,26,0.08,0,88,0.2,0,1 -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,26,84700,392,1327,429,238,547,77,27275,22993,8852,3057,40,3.6,7,6,16,77777,9,999999999,25,0.08,0,88,0.2,0,1 -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,4821,0,3372,1043,40,3.1,8,6,16,77777,9,999999999,25,0.08,0,88,0.2,0,1 -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,77777,9,999999999,25,0.08,0,88,0.2,0,1 -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,34,84600,0,0,402,0,0,0,0,0,0,0,340,4.6,6,6,16,77777,9,999999999,25,0.08,0,88,0.2,0,1 -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,77777,9,999999999,25,0.08,0,88,0.2,0,1 -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,10,39,84100,0,0,395,0,0,0,0,0,0,0,220,4.6,8,7,16,77777,9,999999999,24,0.08,0,88,0.2,0,1 -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,77777,9,999999999,25,0.08,0,88,0.2,0,1 -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,43,84400,0,0,357,0,0,0,0,0,0,0,220,6.2,1,0,16,77777,9,999999999,26,0.08,0,88,0.2,0,1 -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,43,84400,0,0,363,0,0,0,0,0,0,0,220,6.7,2,1,16,77777,9,999999999,26,0.08,0,88,0.2,0,1 -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,44,84400,0,0,372,0,0,0,0,0,0,0,220,5.2,5,4,16,77777,9,999999999,27,0.08,0,88,0.2,0,1 -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,77777,9,999999999,28,0.08,0,88,0.2,0,1 -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,7620,9,999999999,28,0.08,0,88,0.2,0,1 -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,6706,9,999999999,29,0.08,0,88,0.2,0,1 -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,17621,8519,12641,3823,280,4.1,6,6,16,6706,9,999999999,30,0.08,0,88,0.2,0,1 -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,43075,32217,17992,6371,290,5.2,5,5,16,6706,9,999999999,31,0.08,0,88,0.2,0,1 -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,63954,40324,21694,8433,300,3.6,3,3,16,7620,9,999999999,31,0.08,0,88,0.2,0,1 -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,13,37,84900,1004,1328,415,733,733,177,88338,47997,21432,8829,30,3.6,6,6,16.1,7500,9,999999999,32,0.08,0,88,0.2,0,1 -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,95707,45996,28858,11655,50,3.6,3,3,16,7620,9,999999999,33,0.08,0,88,0.2,0,1 -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,108455,50319,26210,10705,140,4.6,3,3,16,77777,9,999999999,32,0.08,0,88,0.2,0,1 -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,112172,51709,23589,9715,150,6.2,3,3,16,77777,9,999999999,30,0.08,0,88,0.2,0,1 -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,106492,51646,21448,8895,130,7.7,7,6,16,7620,9,999999999,29,0.08,0,88,0.2,0,1 -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,89592,48427,28842,11516,230,10.3,8,7,16,4267,9,999999999,28,0.08,0,88,0.2,0,1 -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,56,84500,850,1328,390,207,18,196,24168,1256,22998,8976,270,8.2,9,8,16,2896,9,999999999,27,0.08,0,88,0.2,0,1 -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,54,84300,632,1328,393,70,0,70,7075,0,7136,3338,40,6.7,10,8,16,2400,9,999999999,26,0.08,0,88,0.2,0,1 -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,15,73,84600,388,1328,389,39,0,39,3853,0,3884,1708,300,2.1,10,9,16,3300,9,999999999,25,0.08,0,88,0.2,0,1 -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,73,84600,136,1328,388,55,155,39,6002,0,4269,1239,270,3.6,10,8,16,3353,9,999999999,24,0.08,0,88,0.2,0,1 -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,70,84700,1,100,380,0,0,0,0,0,0,0,320,3.1,10,6,16,3658,9,999999999,23,0.08,0,88,0.2,0,1 -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,75,84600,0,0,375,0,0,0,0,0,0,0,0,0,9,6,16,6096,9,999999999,22,0.08,0,88,0.2,0,1 -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,76,84500,0,0,364,0,0,0,0,0,0,0,240,5.7,9,5,16,6096,9,999999999,21,0.08,0,88,0.2,1,1 -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,13,64,84300,0,0,368,0,0,0,0,0,0,0,0,0,9,6,16,6096,9,999999999,20,0.08,0,88,0.2,0,1 -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,69,84400,0,0,367,0,0,0,0,0,0,0,180,4.1,9,7,16,77777,9,999999999,20,0.08,0,88,0.2,0,1 -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,62,84400,0,0,361,0,0,0,0,0,0,0,200,6.7,7,5,16,77777,9,999999999,21,0.08,0,88,0.2,0,1 -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,62,84400,0,0,358,0,0,0,0,0,0,0,200,4.1,5,4,16,77777,9,999999999,22,0.08,0,88,0.2,0,1 -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,12,60,84400,0,0,358,0,0,0,0,0,0,0,210,6.2,3,3,16,77777,9,999999999,22,0.08,0,88,0.2,0,1 -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,67,84400,0,0,336,0,0,0,0,0,0,0,180,3.6,2,1,16,77777,9,999999999,23,0.08,0,88,0.2,0,1 -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,77777,9,999999999,24,0.08,0,88,0.2,0,1 -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,11.7,59,84600,100,1229,343,0,0,0,0,0,0,0,230,2.6,0,0,16,77777,9,999999999,24,0.08,0,88,0.2,0,1 -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,23652,18777,9041,2993,250,4.6,0,0,16,77777,9,999999999,25,0.08,0,88,0.2,0,1 -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,51035,39643,10143,3876,250,2.6,2,1,16,77777,9,999999999,25,0.08,0,88,0.2,0,1 -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,12.8,47,84700,819,1328,384,581,727,132,69571,44736,15869,6385,260,2.6,3,3,16,77777,9,999999999,26,0.08,0,88,0.2,0,1 -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,95412,51714,15529,6517,0,0,3,3,16,77777,9,999999999,27,0.08,0,88,0.2,0,1 -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,95121,94013,14753,4043,130,5.2,3,3,16,77777,9,999999999,27,0.08,0,88,0.2,0,1 -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,96673,87217,18913,6200,120,5.7,3,3,16,77777,9,999999999,28,0.08,0,88,0.2,0,1 -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,100406,91924,17442,6043,160,4.6,3,3,16,77777,9,999999999,29,0.08,0,88,0.2,0,1 -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,106415,53772,27719,11237,150,5.7,4,3,16,77777,9,999999999,30,0.08,0,88,0.2,0,1 -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,45829,12141,32065,12536,130,8.2,4,4,16,77777,9,999999999,31,0.08,0,88,0.2,0,1 -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,66852,42458,25315,9683,150,6.7,5,4,16,77777,9,999999999,32,0.08,0,88,0.2,0,1 -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,53159,41207,9228,3585,160,4.6,5,5,16,77777,9,999999999,33,0.08,0,88,0.2,0,1 -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,8.3,26,84400,384,1328,408,242,698,40,26311,64277,6321,954,130,7.2,4,4,16,77777,9,999999999,34,0.08,0,88,0.2,0,1 -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,6121,0,2313,743,140,5.7,4,4,16,77777,9,999999999,34,0.08,0,88,0.2,0,1 -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,77777,9,999999999,35,0.08,0,88,0.2,0,1 -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,77777,9,999999999,36,0.08,0,88,0.2,0,1 -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,77777,9,999999999,37,0.08,0,88,0.2,0,1 -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,77777,9,999999999,38,0.08,0,88,0.2,0,1 -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,77777,9,999999999,36,0.08,0,88,0.2,0,1 -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,77777,9,999999999,35,0.08,0,88,0.2,0,1 -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,77777,9,999999999,33,0.08,0,88,0.2,0,1 -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,77777,9,999999999,31,0.08,0,88,0.2,0,1 -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,7.2,43,83700,0,0,338,0,0,0,0,0,0,0,190,4.6,0,0,16,77777,9,999999999,30,0.08,0,88,0.2,0,1 -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,77777,9,999999999,28,0.08,0,88,0.2,0,1 -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,77777,9,999999999,26,0.08,0,88,0.2,0,1 -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,23834,19915,8840,2926,240,5.7,3,3,16,77777,9,999999999,24,0.08,0,88,0.2,0,1 -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,50297,39976,10257,3908,260,4.1,3,3,16,77777,9,999999999,23,0.08,0,88,0.2,0,1 -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,36,84100,816,1329,383,607,849,85,65319,86579,12177,1953,290,2.1,2,2,16,77777,9,999999999,21,0.08,0,88,0.2,0,1 -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,33,84100,1000,1329,401,746,848,106,79770,87211,14504,2828,330,2.1,6,5,16,77777,9,999999999,19,0.08,0,88,0.2,0,1 -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,99668,49568,23690,9751,0,0,3,3,16,77777,9,999999999,18,0.08,0,88,0.2,0,1 -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,106506,50120,27689,11243,210,2.6,3,3,16,77777,9,999999999,18,0.08,0,88,0.2,0,1 -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,98783,89288,18779,6245,240,1.5,4,3,16,77777,9,999999999,18,0.08,0,88,0.2,0,1 -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,105220,52548,22948,9464,260,2.6,4,4,16,77777,9,999999999,19,0.08,0,88,0.2,0,1 -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,82170,87142,16343,3103,290,3.1,6,5,16,77777,9,999999999,19,0.08,0,88,0.2,0,1 -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,26,84000,843,1329,422,599,728,136,71986,46467,16410,6631,310,7.2,6,4,16,77777,9,999999999,19,0.08,0,88,0.2,0,1 -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,52446,40674,9108,3536,330,8.8,5,5,16,77777,9,999999999,20,0.08,0,88,0.2,0,1 -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,26520,22384,10489,3477,350,8.2,9,5,16,6706,9,999999999,20,0.08,0,88,0.2,0,1 -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,1163,0,1171,472,220,6.2,9,7,16,6706,9,999999999,20,0.08,0,88,0.2,0,1 -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,3658,9,999999999,21,0.08,0,88,0.2,0,1 -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,4267,9,999999999,21,0.08,0,88,0.2,0,1 -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,4267,9,999999999,21,0.08,0,88,0.2,0,1 -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,12.2,61,83900,0,0,367,0,0,0,0,0,0,0,10,11.8,7,6,16,77777,9,999999999,22,0.08,0,88,0.2,0,1 -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,77777,9,999999999,21,0.08,0,88,0.2,0,1 -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,2438,9,999999999,21,0.08,0,88,0.2,0,1 -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,2591,9,999999999,21,0.08,0,88,0.2,0,1 -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,2438,9,999999999,21,0.08,0,88,0.2,0,1 -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,2591,9,999999999,21,0.08,0,88,0.2,0,1 -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,2286,9,999999999,21,0.08,0,88,0.2,0,1 -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,488,9,999999999,21,0.08,0,88,0.2,0,1 -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,4825,0,4862,2010,40,6.7,10,10,16,396,9,999999999,21,0.08,0,88,0.2,0,1 -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,6943,0,7002,3217,60,6.7,10,10,12.8,396,9,999999999,21,0.08,0,88,0.2,0,1 -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,10059,0,10151,4908,50,6.7,10,10,11.2,305,9,999999999,21,0.08,0,88,0.2,0,1 -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,12514,0,12635,6274,20,5.7,10,10,16,366,9,999999999,20,0.08,0,88,0.2,0,1 -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,14970,0,15121,7455,10,6.2,10,10,11.2,427,9,999999999,20,0.08,0,88,0.2,0,1 -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,20563,0,20773,9877,330,4.6,10,10,11.2,671,9,999999999,21,0.08,0,88,0.2,0,1 -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,63,84500,1204,1329,379,281,6,275,33737,446,33211,13190,350,5.2,10,10,11.2,1067,9,999999999,22,0.08,0,88,0.2,0,1 -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,23778,404,23156,9548,340,3.1,10,10,11.2,914,9,999999999,23,0.08,0,88,0.2,0,1 -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,49530,9739,39784,14741,350,3.1,10,10,11.2,1372,9,999999999,25,0.08,0,88,0.2,0.3,1 -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,30167,1916,28603,10615,0,0,8,8,16,1676,9,999999999,26,0.08,0,88,0.2,0,1 -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,26195,3686,23868,7944,0,0,10,10,16,1676,9,999999999,27,0.08,0,88,0.2,0,1 -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,8130,0,8193,3153,210,2.6,10,10,16,1676,9,999999999,28,0.08,0,88,0.2,0,1 -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,581,0,585,247,220,3.6,10,10,16,1676,9,999999999,29,0.08,0,88,0.2,0,1 -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,6096,9,999999999,30,0.08,0,88,0.2,0,1 -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,1676,9,999999999,31,0.08,0,88,0.2,0,1 -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,77777,9,999999999,32,0.08,0,88,0.2,0,1 -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,33,0.08,0,88,0.2,0,1 -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,33,0.08,0,88,0.2,0,1 -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,3658,9,999999999,32,0.08,0,88,0.2,0,1 -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,3658,9,999999999,32,0.08,0,88,0.2,0,1 -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,77777,9,999999999,32,0.08,0,88,0.2,0,1 -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,77777,9,999999999,32,0.08,0,88,0.2,0,1 -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,6706,9,999999999,31,0.08,0,88,0.2,0,1 -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,5,5,16,6706,9,999999999,31,0.08,0,88,0.2,0,1 -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,3254,0,3279,1418,240,3.6,9,8,16,3048,9,999999999,31,0.08,0,88,0.2,0,1 -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,11.1,77,84200,587,1330,351,69,0,69,6955,0,7014,3212,280,4.6,9,8,16,3048,9,999999999,31,0.08,0,88,0.2,0,1 -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,16130,0,16277,7350,280,4.6,9,9,16,3048,9,999999999,31,0.08,0,88,0.2,0,1 -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,74657,37249,34350,13121,310,3.1,7,7,16,77777,9,999999999,30,0.08,0,88,0.2,0,1 -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,99467,49222,25909,10587,320,2.6,6,4,16,7620,9,999999999,30,0.08,0,88,0.2,0,1 -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,107254,50360,31806,12715,320,3.6,7,6,16,7620,9,999999999,29,0.08,0,88,0.2,0,1 -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,59713,10314,47468,17478,0,0,7,5,16,7620,9,999999999,28,0.08,0,88,0.2,0,1 -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,11.7,43,84400,1139,1330,383,428,72,367,49752,6023,42944,16084,230,2.6,4,3,16,7620,9,999999999,28,0.08,0,88,0.2,0,1 -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,86294,47120,30894,12143,110,2.6,6,6,16,6706,9,999999999,27,0.08,0,88,0.2,0,1 -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,52176,24870,30247,11049,110,2.1,9,7,16,4572,9,999999999,26,0.08,0,88,0.2,0,1 -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,6971,0,7031,3268,20,10.8,10,10,16,18410,9,999999999,25,0.08,0,88,0.2,0.5,1 -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,10,53,84300,371,1330,375,38,0,38,3762,0,3792,1649,250,10.8,9,8,8,18349,9,999999999,25,0.08,0,88,0.2,0,1 -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,2968,0,2287,725,0,0,10,9,16,18288,9,999999999,24,0.08,0,88,0.2,0,1 -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,87,84200,0,0,374,0,0,0,0,0,0,0,160,2.6,9,9,16,3048,9,999999999,23,0.08,0,88,0.2,0,1 -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,3048,9,999999999,22,0.08,0,88,0.2,0,1 -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,77777,9,999999999,22,0.08,0,88,0.2,1.8,1 -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,7620,9,999999999,21,0.08,0,88,0.2,0,1 -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,77777,9,999999999,21,0.08,0,88,0.2,0,1 -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,12.2,83,83900,0,0,321,0,0,0,0,0,0,0,210,4.6,0,0,16,77777,9,999999999,21,0.08,0,88,0.2,0,1 -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,77777,9,999999999,22,0.08,0,88,0.2,0,1 -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,77777,9,999999999,22,0.08,0,88,0.2,0,1 -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,77777,9,999999999,23,0.08,0,88,0.2,0,1 -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,23,0.08,0,88,0.2,0,1 -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,23,0.08,0,88,0.2,0,1 -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,14.4,96,84100,336,1330,355,115,40,105,12593,1732,11546,3523,280,3.1,8,8,0.4,30,9,999999999,24,0.08,0,88,0.2,0,1 -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,44020,33959,17392,6142,260,3.1,6,6,4.8,77777,9,999999999,24,0.08,0,88,0.2,0,1 -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,71523,46401,14721,5936,260,5.7,5,5,14.4,77777,9,999999999,24,0.08,0,88,0.2,0,1 -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,82059,91628,13378,2685,270,3.1,3,3,16,77777,9,999999999,25,0.08,0,88,0.2,0,1 -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,11.1,42,84500,1124,1330,382,865,904,99,92878,93550,13278,3664,120,2.1,3,3,16,77777,9,999999999,25,0.08,0,88,0.2,0,1 -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,35,84500,1194,1330,396,929,920,101,99389,95091,13331,4676,140,3.6,5,5,16,77777,9,999999999,25,0.08,0,88,0.2,0,1 -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,113648,54285,21385,8850,130,3.6,5,4,16,77777,9,999999999,26,0.08,0,88,0.2,0,1 -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,108350,55470,20298,8431,110,5.2,6,5,16,7620,9,999999999,26,0.08,0,88,0.2,0,1 -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,77457,41029,31937,12437,120,4.1,8,7,16,7620,9,999999999,27,0.08,0,88,0.2,0,1 -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,66758,44833,19855,7827,40,2.1,7,6,16,7620,9,999999999,27,0.08,0,88,0.2,0,1 -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,43604,33660,15753,5775,310,7.7,9,8,16,3658,9,999999999,27,0.08,0,88,0.2,0,1 -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,20366,14871,10050,3314,360,2.1,5,5,16,7620,9,999999999,28,0.08,0,88,0.2,0,1 -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,4888,0,2391,747,290,3.6,3,3,16,77777,9,999999999,28,0.08,0,88,0.2,0,1 -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,77777,9,999999999,28,0.08,0,88,0.2,0,1 -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,77777,9,999999999,29,0.08,0,88,0.2,0,1 -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,51,84200,0,0,359,0,0,0,0,0,0,0,210,5.2,3,3,16,77777,9,999999999,29,0.08,0,88,0.2,0,1 -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,77777,9,999999999,29,0.08,0,88,0.2,0,1 -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,77777,9,999999999,29,0.08,0,88,0.2,0,1 -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,77777,9,999999999,28,0.08,0,88,0.2,0,1 -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,77777,9,999999999,28,0.08,0,88,0.2,0,1 -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,77777,9,999999999,27,0.08,0,88,0.2,0,1 -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,77777,9,999999999,26,0.08,0,88,0.2,0,1 -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,77777,9,999999999,26,0.08,0,88,0.2,0,1 -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,77777,9,999999999,25,0.08,0,88,0.2,0,1 -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,24105,20582,9113,2955,290,3.6,1,1,16,77777,9,999999999,24,0.08,0,88,0.2,0,1 -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,44,84400,581,1330,366,397,711,86,47116,37984,10238,3878,300,4.1,2,2,16,77777,9,999999999,24,0.08,0,88,0.2,0,1 -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,43,84500,806,1330,363,582,776,111,70563,46919,13506,5460,320,2.6,1,1,16,77777,9,999999999,23,0.08,0,88,0.2,0,1 -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,10.6,40,84600,990,1330,373,727,788,140,89095,49692,17228,7180,350,2.1,1,1,16,77777,9,999999999,22,0.08,0,88,0.2,0,1 -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,90769,88300,17036,4191,10,5.2,3,3,16,77777,9,999999999,22,0.08,0,88,0.2,0,1 -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,99937,94603,14951,5025,50,5.7,3,3,16,77777,9,999999999,22,0.08,0,88,0.2,0,1 -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,98070,90778,17010,5577,10,4.6,3,3,16,77777,9,999999999,22,0.08,0,88,0.2,0,1 -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,7.2,24,84800,1133,1330,409,880,909,104,93558,93360,13863,3883,20,7.2,5,5,16,77777,9,999999999,23,0.08,0,88,0.2,0,1 -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,8.3,26,84700,1008,1330,405,753,810,138,92745,51841,17066,7128,80,2.6,3,3,16,77777,9,999999999,23,0.08,0,88,0.2,0,1 -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,6.1,22,84800,829,1330,402,592,710,149,70601,48057,17844,7111,60,4.1,3,3,16,77777,9,999999999,23,0.08,0,88,0.2,0,1 -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,6.1,22,84000,608,1330,408,362,420,170,41034,30132,19360,6778,20,4.1,5,5,16,77777,9,999999999,24,0.08,0,88,0.2,0,1 -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,25292,20127,5685,2012,30,4.6,5,4,16,77777,9,999999999,24,0.08,0,88,0.2,0,1 -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,4528,0,1744,560,70,5.7,5,5,16,77777,9,999999999,25,0.08,0,88,0.2,0,1 -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,77777,9,999999999,25,0.08,0,88,0.2,0,1 -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,66,84600,0,0,373,0,0,0,0,0,0,0,80,8.2,5,4,16,77777,9,999999999,25,0.08,0,88,0.2,0,1 -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,15,73,84500,0,0,371,0,0,0,0,0,0,0,80,6.2,6,6,16,77777,9,999999999,26,0.08,0,88,0.2,0,1 -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,78,84300,0,0,394,0,0,0,0,0,0,0,70,5.2,10,10,16,2896,9,999999999,26,0.08,0,88,0.2,0,1 -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,3048,9,999999999,25,0.08,0,88,0.2,0,1 -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,3048,9,999999999,25,0.08,0,88,0.2,0,1 -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,5,5,16,77777,9,999999999,24,0.08,0,88,0.2,0,1 -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,77777,9,999999999,23,0.08,0,88,0.2,0,1 -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,23,0.08,0,88,0.2,0,1 -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,13.3,90,84300,0,0,336,0,0,0,0,0,0,0,290,2.1,4,3,9.6,6706,9,999999999,22,0.08,0,88,0.2,0,1 -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,21,0.08,0,88,0.2,0,1 -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,23370,18656,12825,3709,290,1.5,3,3,11.2,6600,9,999999999,21,0.08,0,88,0.2,0,1 -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,28558,9928,22031,7225,90,2.1,3,3,11.2,6706,9,999999999,20,0.08,0,88,0.2,0,1 -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,67402,44054,19867,7764,100,3.1,1,1,16,77777,9,999999999,19,0.08,0,88,0.2,0,1 -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,87937,47150,17638,7353,100,3.6,4,3,16,77777,9,999999999,19,0.08,0,88,0.2,0,1 -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,103199,48156,18994,7958,110,7.2,4,4,16,77777,9,999999999,18,0.08,0,88,0.2,0,1 -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,101205,45647,37715,14667,90,5.2,4,4,16,6706,9,999999999,19,0.08,0,88,0.2,0,1 -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,8,38,84500,1193,1331,388,513,108,416,59609,9616,48673,17737,250,4.1,9,8,8,2400,9,999999999,19,0.08,0,88,0.2,0,1 -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,92255,40953,39158,15029,10,6.7,9,8,16,2438,9,999999999,20,0.08,0,88,0.2,0,1 -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,15.7,56,84500,1004,1331,402,121,0,121,12592,0,12715,6334,100,4.6,8,7,16,7315,9,999999999,21,0.08,0,88,0.2,0,1 -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,13.3,48,84500,825,1331,394,452,319,254,51463,24824,29083,10675,240,7.7,9,6,16,6706,9,999999999,22,0.08,0,88,0.2,0,1 -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,10,44,84500,604,1331,399,64,0,64,6466,0,6521,3034,250,8.2,9,9,16.1,2700,9,999999999,23,0.08,0,88,0.2,0.3,1 -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,3754,0,3784,1632,10,2.1,10,8,16,6096,9,999999999,23,0.08,0,88,0.2,0,1 -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,4124,0,2681,808,210,5.2,9,7,16,6096,9,999999999,24,0.08,0,88,0.2,0,1 -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,13.9,68,84300,0,0,379,0,0,0,0,0,0,0,220,6.7,9,8,16,3658,9,999999999,25,0.08,0,88,0.2,0,1 -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,13.3,65,84300,0,0,379,0,0,0,0,0,0,0,200,4.1,9,8,16,3658,9,999999999,26,0.08,0,88,0.2,0,1 -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,6096,9,999999999,27,0.08,0,88,0.2,0,1 -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,6096,9,999999999,27,0.08,0,88,0.2,0,1 -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,3353,9,999999999,28,0.08,0,88,0.2,0,1 -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,3353,9,999999999,29,0.079,0,88,0.2,0,1 -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,77777,9,999999999,29,0.079,0,88,0.2,0,1 -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,6096,9,999999999,30,0.079,0,88,0.2,6.8,1 -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,3048,9,999999999,30,0.079,0,88,0.2,0,1 -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,4572,9,999999999,31,0.079,0,88,0.2,0,1 -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,4267,9,999999999,31,0.079,0,88,0.2,0,1 -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,22904,18122,11004,3361,280,3.6,9,7,11.2,3658,9,999999999,32,0.079,0,88,0.2,0,1 -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,76,84000,576,1331,378,251,119,200,27718,8567,22202,7240,300,3.6,9,8,11.2,3658,9,999999999,32,0.079,0,88,0.2,0,1 -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,55458,30039,29877,10697,340,4.6,9,7,16,4267,9,999999999,33,0.079,0,88,0.2,0,1 -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,35412,4147,30811,12012,350,3.6,9,8,16,4267,9,999999999,34,0.079,0,88,0.2,0,1 -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,93891,44877,38429,14749,350,4.6,9,7,16,6706,9,999999999,34,0.079,0,88,0.2,0,1 -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,51668,5959,44502,16649,30,6.7,9,9,16,3962,9,999999999,34,0.079,0,88,0.2,0,1 -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,36182,895,35205,13857,340,5.7,10,10,16,3048,9,999999999,33,0.079,0,88,0.2,0,1 -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,44,84000,1127,1331,398,487,102,400,56176,9018,46455,16947,320,6.7,9,9,16,2438,9,999999999,32,0.079,0,88,0.2,0,1 -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,43,84000,1001,1331,392,327,24,309,37787,1978,35924,13598,290,2.6,9,8,16,3353,9,999999999,32,0.079,0,88,0.2,0,1 -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,10.6,40,84000,821,1331,395,100,0,100,10287,0,10381,5016,310,6.7,9,7,16,6096,9,999999999,31,0.079,0,88,0.2,0,1 -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,66,83500,599,1331,409,249,117,197,27693,8330,22023,7401,250,6.7,10,10,16,6096,9,999999999,30,0.079,0,88,0.2,0,1 -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,23874,18764,9153,3040,230,7.2,7,6,16,6096,9,999999999,30,0.079,0,88,0.2,0,1 -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,12.8,63,83900,99,1209,386,23,51,20,2591,0,2258,695,300,10.3,9,9,16,2438,9,999999999,29,0.079,0,88,0.2,0,1 -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,2134,9,999999999,29,0.079,0,88,0.2,0,1 -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,3353,9,999999999,28,0.079,0,88,0.2,0,1 -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,3353,9,999999999,27,0.079,0,88,0.2,0,1 -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,2896,9,999999999,27,0.079,0,88,0.2,0,1 -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,2591,9,999999999,27,0.079,0,88,0.2,0,1 -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,3353,9,999999999,27,0.079,0,88,0.2,0,1 -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,77777,9,999999999,27,0.079,0,88,0.2,0,1 -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,6096,9,999999999,27,0.079,0,88,0.2,0,1 -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,6096,9,999999999,27,0.079,0,88,0.2,0,1 -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,6096,9,999999999,27,0.079,0,88,0.2,0,1 -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,6706,9,999999999,27,0.079,0,88,0.2,0,1 -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,58,84000,323,1332,350,134,121,105,14651,5499,11528,3437,270,4.1,4,4,16,6706,9,999999999,27,0.079,0,88,0.2,0,1 -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,8.9,49,84200,572,1332,354,384,587,131,44030,36763,15082,5419,300,4.6,3,3,16,6706,9,999999999,27,0.079,0,88,0.2,0,1 -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,64155,43698,18714,7330,340,6.2,3,3,16,6096,9,999999999,27,0.079,0,88,0.2,0,1 -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,64428,26478,39039,14303,360,7.2,6,6,16,6706,9,999999999,27,0.079,0,88,0.2,0,1 -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,79159,33251,41123,15485,30,5.7,5,5,16,6096,9,999999999,27,0.079,0,88,0.2,0,1 -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,107922,53449,29685,11942,40,5.2,8,6,16,6096,9,999999999,26,0.079,0,88,0.2,0,1 -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,6,30,84300,1188,1332,404,656,300,388,76642,26256,45636,16917,60,2.6,9,9,16.1,3000,9,999999999,25,0.079,0,88,0.2,0,1 -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,23015,398,22511,9308,270,8.8,9,8,16,2438,9,999999999,24,0.079,0,88,0.2,0,1 -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,13154,0,13280,6555,360,5.7,7,6,16,6096,9,999999999,23,0.079,0,88,0.2,0,1 -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,10.6,55,84300,817,1332,362,463,307,274,52407,25362,31194,11150,70,5.7,7,5,16,6706,9,999999999,22,0.079,0,88,0.2,0,1 -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,10,53,84300,595,1332,383,154,6,151,17542,397,17276,6156,90,3.6,9,9,16,6706,9,999999999,21,0.079,0,88,0.2,0,1 -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,54,84300,346,1332,358,127,117,97,14099,5231,10810,3425,170,3.6,5,5,16,6706,9,999999999,19,0.079,0,88,0.2,0,1 -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,9.4,50,84300,94,1188,361,30,173,18,3402,0,2045,632,210,3.6,6,5,16,6706,9,999999999,18,0.079,0,88,0.2,0,1 -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,58,84200,0,0,350,0,0,0,0,0,0,0,220,3.1,5,4,16,3658,9,999999999,17,0.079,0,88,0.2,0,1 -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,6706,9,999999999,16,0.079,0,88,0.2,0,1 -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,65,84100,0,0,366,0,0,0,0,0,0,0,270,3.6,9,9,16,7620,9,999999999,15,0.079,0,88,0.2,0,1 -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,6096,9,999999999,14,0.079,0,88,0.2,0,1 -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,6096,9,999999999,14,0.079,0,88,0.2,0,1 -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,3048,9,999999999,14,0.079,0,88,0.2,0,1 -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,6096,9,999999999,14,0.079,0,88,0.2,0,1 -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,10,72,84000,0,0,318,0,0,0,0,0,0,0,200,4.1,1,0,16,77777,9,999999999,13,0.079,0,88,0.2,0.8,1 -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,80,84000,0,0,317,0,0,0,0,0,0,0,120,2.1,1,1,16,6096,9,999999999,13,0.079,0,88,0.2,0,1 -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,83,83900,0,0,327,0,0,0,0,0,0,0,100,2.6,5,5,16,6096,9,999999999,13,0.079,0,88,0.2,0,1 -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,83,84000,73,1033,330,0,0,0,0,0,0,0,190,2.6,6,6,16,77777,9,999999999,13,0.079,0,88,0.2,0,1 -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,22031,16668,7404,2467,130,2.1,7,6,16,77777,9,999999999,13,0.079,0,88,0.2,0,1 -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,47161,38942,10434,3923,0,0,5,5,16,77777,9,999999999,12,0.079,0,88,0.2,0,1 -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,51,84500,795,1332,359,563,666,165,66083,45372,19454,7578,290,2.1,4,3,16,77777,9,999999999,12,0.079,0,88,0.2,0,1 -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,47708,8878,39283,14358,330,4.6,5,4,16,77777,9,999999999,12,0.079,0,88,0.2,0,1 -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,54920,9489,44719,16450,0,0,4,4,16,6706,9,999999999,12,0.079,0,88,0.2,0,1 -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,41,84500,1182,1332,378,862,637,295,102595,48865,35323,13867,30,2.1,4,4,16,6706,9,999999999,11,0.079,0,88,0.2,0,1 -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,113196,53912,19933,8287,10,1.5,5,5,16,6706,9,999999999,11,0.079,0,88,0.2,0,1 -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,103973,52795,20915,8685,360,2.1,7,6,16,6706,9,999999999,11,0.079,0,88,0.2,0,1 -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,10,39,84400,994,1332,390,683,577,251,80131,43865,29612,11650,340,1.5,8,6,16,6706,9,999999999,10,0.079,0,88,0.2,0,1 -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,36141,8585,28889,10520,330,10.3,9,8,16,3300,9,999999999,10,0.079,0,88,0.2,0,1 -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,40265,30602,18344,6417,20,10.3,7,7,16,6096,9,999999999,9,0.079,0,88,0.2,0,1 -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,21151,16341,6837,2350,70,3.1,3,3,16,77777,9,999999999,9,0.079,0,88,0.2,0,1 -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,3063,17155,1847,289,50,2.1,4,4,16,77777,9,999999999,8,0.079,0,88,0.2,0,1 -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,77777,9,999999999,8,0.079,0,88,0.2,0,1 -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,6706,9,999999999,7,0.079,0,88,0.2,0,1 -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,2134,9,999999999,7,0.079,0,88,0.2,0.3,1 -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,77777,9,999999999,6,0.079,0,88,0.2,0,1 -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,10.6,75,84200,0,0,319,0,0,0,0,0,0,0,230,4.6,0,0,16,77777,9,999999999,7,0.079,0,88,0.2,0,1 -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,10,72,84100,0,0,318,0,0,0,0,0,0,0,220,6.2,0,0,16,77777,9,999999999,8,0.079,0,88,0.2,0,1 -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,8.9,67,84000,0,0,317,0,0,0,0,0,0,0,210,7.2,0,0,16,77777,9,999999999,8,0.079,0,88,0.2,0,1 -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,8.3,64,84000,0,0,317,0,0,0,0,0,0,0,220,5.2,0,0,16,77777,9,999999999,9,0.079,0,88,0.2,0,1 -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,77777,9,999999999,9,0.079,0,88,0.2,0,1 -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,16,77777,9,999999999,10,0.079,0,88,0.2,0,1 -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,77777,9,999999999,11,0.079,0,88,0.2,0,1 -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,9.4,69,84200,316,1333,331,187,500,68,21149,16152,7714,2542,260,3.1,3,3,16,77777,9,999999999,11,0.079,0,88,0.2,0,1 -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,47355,39359,9880,3724,280,3.1,3,3,16,77777,9,999999999,12,0.079,0,88,0.2,0,1 -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,63081,85978,12083,1882,350,4.1,3,3,16,77777,9,999999999,12,0.079,0,88,0.2,0,1 -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,78117,89105,12867,2556,10,2.1,3,3,16,77777,9,999999999,13,0.079,0,88,0.2,0,1 -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,4.4,26,84100,1109,1333,379,829,832,134,103889,53750,16860,7063,30,4.1,5,5,16,77777,9,999999999,14,0.079,0,88,0.2,0,1 -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,109339,54015,21345,8830,20,5.2,5,5,16,77777,9,999999999,14,0.079,0,88,0.2,0,1 -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,97361,91400,17047,5223,20,5.2,3,3,16,77777,9,999999999,13,0.079,0,88,0.2,0,1 -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,93468,96570,11625,3275,10,6.2,3,3,16,77777,9,999999999,13,0.079,0,88,0.2,0,1 -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,23,84700,990,1333,391,763,911,85,81337,93015,11786,2507,310,5.2,3,3,16,77777,9,999999999,13,0.079,0,88,0.2,0,1 -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,72453,50089,12073,4900,40,5.7,3,3,16,77777,9,999999999,13,0.079,0,88,0.2,0,1 -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,47563,41240,11276,4238,10,6.2,5,5,16,77777,9,999999999,13,0.079,0,88,0.2,0,1 -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,19524,15524,8426,2791,30,4.1,3,3,16,77777,9,999999999,12,0.079,0,88,0.2,0,1 -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,3090,0,1719,533,50,2.6,3,3,16,77777,9,999999999,12,0.079,0,88,0.2,0,1 -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,3,3,16,77777,9,999999999,12,0.079,0,88,0.2,0,1 -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,2.2,31,84400,0,0,346,0,0,0,0,0,0,0,150,1.5,3,3,16,77777,9,999999999,12,0.079,0,88,0.2,0,1 -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,77777,9,999999999,11,0.079,0,88,0.2,0,1 -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,77777,9,999999999,11,0.079,0,88,0.2,0,1 -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,41,84200,0,0,328,0,0,0,0,0,0,0,210,5.7,0,0,16,77777,9,999999999,12,0.079,0,88,0.2,0,1 -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,43,84200,0,0,325,0,0,0,0,0,0,0,210,5.7,0,0,16,77777,9,999999999,12,0.078,0,88,0.2,0,1 -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,77777,9,999999999,12,0.078,0,88,0.2,0,1 -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,77777,9,999999999,13,0.078,0,88,0.2,0,1 -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,77777,9,999999999,13,0.078,0,88,0.2,0,1 -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,5,51,84000,0,0,313,0,0,0,0,0,0,0,220,2.6,0,0,16,77777,9,999999999,13,0.078,0,88,0.2,0,1 -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,77777,9,999999999,13,0.078,0,88,0.2,0,1 -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,22405,18030,6878,2299,230,5.2,0,0,16,77777,9,999999999,14,0.078,0,88,0.2,0,1 -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,35,84400,563,1333,340,393,719,88,46477,40082,10439,3906,250,5.7,0,0,16,77777,9,999999999,14,0.078,0,88,0.2,0,1 -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,29,84500,789,1333,354,564,764,111,68325,48083,13494,5415,260,4.1,0,0,16,77777,9,999999999,14,0.078,0,88,0.2,0,1 -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,25,84600,974,1333,383,690,709,171,83288,49399,20734,8482,230,2.6,3,3,16,77777,9,999999999,15,0.078,0,88,0.2,0,1 -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,-1.1,13,83900,1106,1333,392,779,712,187,95353,51190,22999,9457,330,3.6,3,3,16,77777,9,999999999,15,0.078,0,88,0.2,0,1 -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.6,14,84600,1176,1333,392,831,685,226,101231,51128,27676,11198,320,2.6,3,3,16,77777,9,999999999,16,0.078,0,88,0.2,0,1 -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,101651,51269,30628,12245,300,3.1,3,3,16,77777,9,999999999,16,0.078,0,88,0.2,0,1 -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,96608,51696,26317,10688,290,3.6,3,3,16,77777,9,999999999,16,0.078,0,88,0.2,0,1 -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,13,84500,986,1333,405,700,696,183,84361,50575,22157,9022,230,2.1,3,3,16,77777,9,999999999,17,0.078,0,88,0.2,0,1 -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,66558,47473,16585,6584,170,2.1,3,3,16,77777,9,999999999,17,0.078,0,88,0.2,0,1 -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,13,83500,581,1333,398,385,709,76,46314,39578,9167,3488,110,3.6,2,2,16,77777,9,999999999,18,0.078,0,88,0.2,0,1 -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,22113,17984,6183,2130,130,2.1,5,5,16,77777,9,999999999,18,0.078,0,88,0.2,0,1 -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,2803,0,1286,406,160,4.1,6,6,16,77777,9,999999999,19,0.078,0,88,0.2,0,1 -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,7620,9,999999999,19,0.078,0,88,0.2,0,1 -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,77777,9,999999999,20,0.078,0,88,0.2,0,1 -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,77777,9,999999999,20,0.078,0,88,0.2,0,1 -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,77777,9,999999999,21,0.078,0,88,0.2,0,1 -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,77777,9,999999999,20,0.078,0,88,0.2,0,1 -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,77777,9,999999999,20,0.078,0,88,0.2,0,1 -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,2.8,32,83700,0,0,333,0,0,0,0,0,0,0,230,5.7,0,0,16,77777,9,999999999,19,0.078,0,88,0.2,0,1 -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,77777,9,999999999,19,0.078,0,88,0.2,0,1 -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,2.8,32,83600,0,0,333,0,0,0,0,0,0,0,220,6.7,0,0,16,77777,9,999999999,19,0.078,0,88,0.2,0,1 -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,77777,9,999999999,18,0.078,0,88,0.2,0,1 -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,1219,10628,697,139,220,6.7,0,0,16,77777,9,999999999,18,0.078,0,88,0.2,0,1 -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,22453,18809,7086,2349,220,7.2,0,0,16,77777,9,999999999,17,0.078,0,88,0.2,0,1 -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,43260,37839,12721,4647,220,6.2,0,0,16,77777,9,999999999,17,0.078,0,88,0.2,0,1 -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,2.8,18,84200,786,1334,381,564,765,113,68247,49014,13722,5492,220,4.1,0,0,16,77777,9,999999999,16,0.078,0,88,0.2,0,1 -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,86820,52790,17582,7268,230,3.1,3,3,16,77777,9,999999999,16,0.078,0,88,0.2,0,1 -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,90181,91834,14558,3635,0,0,4,4,16,77777,9,999999999,16,0.078,0,88,0.2,0,1 -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,95127,88930,18516,5257,40,2.6,4,4,16,77777,9,999999999,15,0.078,0,88,0.2,0,1 -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,93736,45270,36666,14238,90,2.6,8,6,16,7620,9,999999999,15,0.078,0,88,0.2,0,1 -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,87747,44302,36781,14168,130,4.1,10,7,16,7620,9,999999999,15,0.078,0,88,0.2,0,1 -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,28545,1405,27146,10763,70,3.6,9,7,16,3962,9,999999999,15,0.078,0,88,0.2,0,1 -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,34028,4556,30570,10838,30,7.7,10,9,16,2286,9,999999999,15,0.078,0,88,0.2,0,1 -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,23527,3162,21627,7114,70,8.2,10,10,16,2438,9,999999999,15,0.078,0,88,0.2,0,1 -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,11264,2393,9850,3112,80,5.7,9,7,16,3962,9,999999999,15,0.078,0,88,0.2,0,1 -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,2493,0,1703,518,140,5.7,9,7,16,3962,9,999999999,15,0.078,0,88,0.2,0,1 -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,3962,9,999999999,14,0.078,0,88,0.2,0,1 -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,6096,9,999999999,14,0.078,0,88,0.2,0,1 -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,6096,9,999999999,14,0.078,0,88,0.2,0,1 -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,35,83700,0,0,364,0,0,0,0,0,0,0,260,2.1,9,6,16,6096,9,999999999,14,0.078,0,88,0.2,0,1 -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,6096,9,999999999,14,0.078,0,88,0.2,0,1 -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,40,83700,0,0,347,0,0,0,0,0,0,0,170,2.1,9,4,16,6096,9,999999999,15,0.077,0,88,0.2,0,1 -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,6096,9,999999999,15,0.077,0,88,0.2,0,1 -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,6096,9,999999999,15,0.077,0,88,0.2,0,1 -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,6096,9,999999999,16,0.077,0,88,0.2,0,1 -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,3.3,33,83400,0,0,351,0,0,0,0,0,0,0,210,7.2,6,4,16,3962,9,999999999,16,0.077,0,88,0.2,0,1 -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,3.3,33,83700,62,967,348,10,153,5,1100,8203,861,160,200,5.7,6,3,16,7620,9,999999999,17,0.077,0,88,0.2,0,1 -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,21991,19692,9872,3016,220,7.2,6,5,16,6706,9,999999999,17,0.077,0,88,0.2,0,1 -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,36980,27804,19252,6433,220,7.2,6,5,16,6706,9,999999999,17,0.077,0,88,0.2,0,1 -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,57058,38400,22607,8528,230,6.2,7,6,16,6706,9,999999999,18,0.077,0,88,0.2,0,1 -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,3.3,18,84100,969,1334,412,640,503,274,74462,41484,32061,12271,210,7.2,8,7,16,6096,9,999999999,18,0.077,0,88,0.2,0,1 -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,4.4,20,83400,1101,1334,414,359,84,289,42406,6775,34338,13417,220,6.7,9,7,16,6096,9,999999999,18,0.077,0,88,0.2,0,1 -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,89401,40089,40421,15394,240,2.1,8,5,16,6096,9,999999999,19,0.077,0,88,0.2,0,1 -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,98627,48198,36026,14051,260,2.1,8,5,16,6096,9,999999999,20,0.077,0,88,0.2,0,1 -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,5,24,83800,1107,1334,405,316,30,291,37337,2414,34586,13508,280,20.6,9,8,2.8,2400,9,999999999,21,0.077,0,88,0.2,0,1 -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,20992,0,21191,9717,10,5.7,8,7,16,6096,9,999999999,22,0.077,0,88,0.2,0,1 -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,15425,0,15564,7023,10,6.2,7,6,16,6096,9,999999999,22,0.077,0,88,0.2,0,1 -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,38377,25731,23124,7382,240,3.1,9,7,16,6096,9,999999999,23,0.077,0,88,0.2,0,1 -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,40,83800,320,1334,384,73,0,73,7196,0,7251,2707,250,5.2,7,5,16,6096,9,999999999,24,0.077,0,88,0.2,0,1 -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,8,36,83800,71,1034,387,17,75,13,1936,0,1482,456,260,7.7,9,7,16,3600,9,999999999,25,0.077,0,88,0.2,0,1 -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,3658,9,999999999,26,0.077,0,88,0.2,0,1 -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,3353,9,999999999,27,0.077,0,88,0.2,0,1 -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,6096,9,999999999,27,0.077,0,88,0.2,0,1 -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,6096,9,999999999,28,0.077,0,88,0.2,0,1 -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,6096,9,999999999,27,0.077,0,88,0.2,0,1 -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,6096,9,999999999,27,0.077,0,88,0.2,0,1 -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,6096,9,999999999,26,0.077,0,88,0.2,0,1 -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,77777,9,999999999,25,0.077,0,88,0.2,0,1 -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,6096,9,999999999,24,0.077,0,88,0.2,0,1 -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,6706,9,999999999,23,0.077,0,88,0.2,0,1 -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,889,7192,695,136,210,4.1,6,4,16,6096,9,999999999,23,0.077,0,88,0.2,0,1 -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,19461,15289,8416,2676,230,5.7,6,5,16,6096,9,999999999,22,0.077,0,88,0.2,0,1 -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,42144,36142,13755,4953,250,3.6,4,4,16,6096,9,999999999,21,0.077,0,88,0.2,0,1 -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,61639,42520,18868,7327,330,3.1,5,5,16,6096,9,999999999,20,0.077,0,88,0.2,0,1 -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,80367,47368,22591,9148,330,2.1,6,6,16,6706,9,999999999,19,0.077,0,88,0.2,0,1 -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,78561,34581,39411,14949,320,3.1,8,8,16,6706,9,999999999,18,0.077,0,88,0.2,0,1 -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,106411,53386,24518,10050,260,3.1,9,9,16,6706,9,999999999,18,0.077,0,88,0.2,0,1 -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,109926,54288,20259,8411,290,3.1,5,5,16,77777,9,999999999,18,0.077,0,88,0.2,0,1 -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,5.6,21,83900,1103,1335,407,814,747,195,99087,52603,23854,9795,330,2.1,5,5,16,77777,9,999999999,17,0.077,0,88,0.2,0,1 -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,20,83900,974,1335,434,676,649,202,80578,47550,24197,9739,360,2.1,9,9,16,6706,9,999999999,17,0.077,0,88,0.2,0,1 -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,66995,46896,14174,5679,30,5.2,9,9,16,6706,9,999999999,17,0.077,0,88,0.2,0,1 -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,43280,37121,15405,5492,360,5.2,9,9,16,3353,9,999999999,16,0.077,0,88,0.2,0,1 -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,4044,0,4074,1688,10,6.7,9,9,16,3658,9,999999999,16,0.077,0,88,0.2,0,1 -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,1388,0,1158,362,10,3.6,9,9,16,6706,9,999999999,15,0.077,0,88,0.2,0,1 -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,4267,9,999999999,15,0.077,0,88,0.2,0,1 -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,6706,9,999999999,15,0.077,0,88,0.2,0,1 -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,6706,9,999999999,14,0.077,0,88,0.2,0,1 -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,6096,9,999999999,14,0.077,0,88,0.2,0,1 -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,6096,9,999999999,14,0.077,0,88,0.2,0,1 -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,7.8,45,83600,0,0,359,0,0,0,0,0,0,0,220,6.7,5,5,16,77777,9,999999999,15,0.076,0,88,0.2,0,1 -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,7.2,43,83600,0,0,352,0,0,0,0,0,0,0,230,5.2,3,3,16,77777,9,999999999,15,0.076,0,88,0.2,0,1 -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,77777,9,999999999,15,0.076,0,88,0.2,0,1 -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,6096,9,999999999,16,0.076,0,88,0.2,0,1 -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,5486,9,999999999,16,0.076,0,88,0.2,0,1 -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,852,0,487,154,220,4.1,5,3,16,6706,9,999999999,16,0.076,0,88,0.2,0,1 -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,7.2,43,83800,299,1336,358,157,253,101,17101,11070,11047,3203,220,4.1,7,5,16,6706,9,999999999,17,0.076,0,88,0.2,0,1 -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,20405,1365,19607,6479,220,5.2,8,6,16,6706,9,999999999,17,0.076,0,88,0.2,0,1 -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,32709,5004,28794,10224,270,3.6,7,6,16,6706,9,999999999,17,0.076,0,88,0.2,0,1 -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,76241,43385,29820,11573,0,0,7,5,16,6706,9,999999999,18,0.076,0,88,0.2,0,1 -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,85102,42468,32305,12760,20,5.2,8,6,16,6706,9,999999999,18,0.076,0,88,0.2,0,1 -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,88015,40399,35177,13777,40,5.2,6,5,16,6706,9,999999999,19,0.076,0,88,0.2,0,1 -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,88034,39681,38167,14718,30,5.2,7,5,16,6706,9,999999999,21,0.076,0,88,0.2,0,1 -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,69264,25048,42038,15679,120,2.6,8,5,16,6706,9,999999999,22,0.076,0,88,0.2,0,1 -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,36513,3467,33228,12638,130,1.5,10,8,16,3353,9,999999999,23,0.076,0,88,0.2,0,1 -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,14290,0,14418,6560,200,3.6,10,9,16,3353,9,999999999,24,0.076,0,88,0.2,0,1 -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,49,83600,560,1336,399,63,0,63,6341,0,6394,2920,190,9.8,10,10,16,3658,9,999999999,26,0.076,0,88,0.2,0,1 -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,2660,0,2680,1159,210,5.7,9,5,16,3658,9,999999999,27,0.076,0,88,0.2,0,1 -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,1597,0,1257,386,240,6.2,9,5,16,6096,9,999999999,28,0.076,0,88,0.2,0,1 -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,9.4,50,83900,0,0,361,0,0,0,0,0,0,0,230,6.2,7,5,16,6096,9,999999999,30,0.076,0,88,0.2,0,1 -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,54,83900,0,0,362,0,0,0,0,0,0,0,240,4.6,8,6,16,6096,9,999999999,31,0.076,0,88,0.2,0,1 -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,3048,9,999999999,32,0.076,0,88,0.2,0,1 -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,10,53,83700,0,0,394,0,0,0,0,0,0,0,300,3.6,10,10,16,2896,9,999999999,33,0.076,0,88,0.2,0,1 -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,10,9,16,2743,9,999999999,32,0.076,0,88,0.2,0,1 -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,3962,9,999999999,31,0.075,0,88,0.2,0,1 -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,6096,9,999999999,30,0.075,0,88,0.2,0,1 -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,6096,9,999999999,29,0.075,0,88,0.2,0,1 -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,77777,9,999999999,28,0.075,0,88,0.2,0,1 -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,10.6,75,83700,0,0,341,0,0,0,0,0,0,0,200,2.6,9,6,16,6096,9,999999999,27,0.075,0,88,0.2,0,1 -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,798,8995,358,77,200,2.1,10,6,16,6096,9,999999999,26,0.075,0,88,0.2,0,1 -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,60,84000,295,1336,351,194,604,60,22000,16034,6824,2250,240,4.1,9,5,16,7620,9,999999999,25,0.075,0,88,0.2,0,1 -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,10,53,84100,548,1336,365,367,545,143,41522,34894,16249,5642,40,1.5,9,6,16,6706,9,999999999,24,0.075,0,88,0.2,0,1 -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,36198,7649,30414,10595,70,2.1,10,7,16,3962,9,999999999,23,0.075,0,88,0.2,0,1 -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,11.1,57,84200,960,1336,370,171,0,171,17784,0,17954,8434,90,2.1,9,7,16,3962,9,999999999,22,0.075,0,88,0.2,0,1 -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,60607,16041,43264,16003,140,2.6,7,5,16,6706,9,999999999,21,0.075,0,88,0.2,0,1 -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,98902,47682,33761,13334,140,4.1,4,3,16,6706,9,999999999,22,0.075,0,88,0.2,0,1 -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,8.3,35,84200,1162,1336,382,888,839,157,110595,54229,19641,8175,0,0,4,4,16,6706,9,999999999,23,0.075,0,88,0.2,0,1 -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,104499,54038,16923,7101,100,4.6,3,3,16,6706,9,999999999,24,0.075,0,88,0.2,0,1 -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,80056,47239,25032,10012,150,3.1,4,4,16,6706,9,999999999,25,0.075,0,88,0.2,0,1 -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,56643,37633,22159,8396,230,3.1,4,4,14.4,7315,9,999999999,25,0.075,0,88,0.2,0,1 -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,33376,22063,19243,6444,320,3.6,8,8,16,7315,9,999999999,26,0.075,0,88,0.2,0,1 -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,18526,13382,6651,2225,10,4.1,3,3,16,77777,9,999999999,27,0.075,0,88,0.2,0,1 -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,1513,0,932,291,20,3.1,3,3,16,77777,9,999999999,28,0.075,0,88,0.2,0,1 -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,77777,9,999999999,28,0.075,0,88,0.2,0,1 -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,77777,9,999999999,29,0.075,0,88,0.2,0,1 -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,77777,9,999999999,30,0.075,0,88,0.2,0,1 -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,7.8,45,83500,0,0,339,0,0,0,0,0,0,0,220,6.2,0,0,16,77777,9,999999999,31,0.075,0,88,0.2,0,1 -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,7.8,45,83800,0,0,339,0,0,0,0,0,0,0,210,6.2,0,0,16,77777,9,999999999,30,0.075,0,88,0.2,0,1 -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,77777,9,999999999,29,0.075,0,88,0.2,0,1 -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,77777,9,999999999,28,0.075,0,88,0.2,0,1 -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,77777,9,999999999,27,0.075,0,88,0.2,0,1 -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,43,83600,0,0,325,0,0,0,0,0,0,0,220,7.7,0,0,16,77777,9,999999999,26,0.075,0,88,0.2,0,1 -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,46,83400,0,0,320,0,0,0,0,0,0,0,230,6.2,0,0,16,77777,9,999999999,25,0.075,0,88,0.2,0,1 -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,32,83600,52,880,315,6,151,2,671,7563,357,76,220,6.2,0,0,16,77777,9,999999999,24,0.075,0,88,0.2,0,1 -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,27,83800,292,1337,327,186,558,64,21039,17795,7261,2351,230,4.6,0,0,16,77777,9,999999999,23,0.075,0,88,0.2,0,1 -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,20,84000,544,1337,350,368,658,99,43006,38907,11608,4246,230,5.2,0,0,16,77777,9,999999999,22,0.075,0,88,0.2,0,1 -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,17,84100,772,1337,363,553,765,110,66923,49342,13358,5324,250,4.6,0,0,16,77777,9,999999999,21,0.075,0,88,0.2,0,1 -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,14,84300,957,1337,393,672,691,176,80830,49922,21266,8629,310,3.6,3,3,16,77777,9,999999999,20,0.075,0,88,0.2,0,1 -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,94799,52086,24182,9897,340,4.1,3,3,16,77777,9,999999999,19,0.075,0,88,0.2,0,1 -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,92468,88510,16874,4679,350,3.1,3,3,16,77777,9,999999999,18,0.075,0,88,0.2,0,1 -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,114496,60392,21661,8943,10,2.1,3,3,16,77777,9,999999999,17,0.075,0,88,0.2,0,1 -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,79364,36960,39046,14800,20,1.5,6,5,16,77777,9,999999999,16,0.075,0,88,0.2,0,1 -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,70750,39385,30876,11872,30,1.5,5,4,16,7315,9,999999999,15,0.075,0,88,0.2,0,1 -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,46646,23521,28368,10105,50,1.5,8,6,16,7315,9,999999999,14,0.075,0,88,0.2,0,1 -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,13233,0,13342,5324,60,5.7,9,7,16,7315,9,999999999,13,0.075,0,88,0.2,0,1 -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,10437,1788,9360,2885,70,3.6,8,5,16,4267,9,999999999,12,0.075,0,88,0.2,0,1 -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,97,0,97,41,80,2.1,5,4,16,4267,9,999999999,11,0.075,0,88,0.2,0,1 -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,2,20,84000,0,0,401,0,0,0,0,0,0,0,10,9.3,9,8,16.1,3000,9,999999999,10,0.075,0,88,0.2,0,1 -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,3353,9,999999999,9,0.075,0,88,0.2,0,1 -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,3962,9,999999999,8,0.075,0,88,0.2,0,1 -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,3962,9,999999999,7,0.075,0,88,0.2,0,1 -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,3353,9,999999999,8,0.075,0,88,0.2,0,1 -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,7315,9,999999999,9,0.074,0,88,0.2,0,1 -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,33,83800,0,0,366,0,0,0,0,0,0,0,280,3.6,8,5,16,7315,9,999999999,9,0.074,0,88,0.2,0,1 -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,3962,9,999999999,10,0.074,0,88,0.2,0,1 -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,77777,9,999999999,11,0.074,0,88,0.2,0,1 -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,3353,9,999999999,11,0.074,0,88,0.2,0,1 -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,10.6,55,84000,49,858,375,1,0,1,96,0,97,40,230,5.7,9,8,16,3353,9,999999999,12,0.074,0,88,0.2,0,1 -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,2661,0,2680,1137,130,4.6,8,8,16,3048,9,999999999,13,0.074,0,88,0.2,0,1 -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,6437,0,6490,2920,170,5.7,8,8,16,3048,9,999999999,13,0.074,0,88,0.2,0,1 -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,8,43,84200,768,1337,367,92,0,92,9432,0,9516,4541,110,12.3,8,6,14.5,4200,9,999999999,14,0.074,0,88,0.2,0,1 -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,18537,0,18712,8700,190,7.2,8,6,16,4267,9,999999999,14,0.074,0,88,0.2,0,1 -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,31646,1359,30028,11995,170,10.8,8,6,16,6706,9,999999999,15,0.074,0,88,0.2,0,1 -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,72800,25070,43969,16365,150,10.3,4,4,16,6706,9,999999999,15,0.074,0,88,0.2,0,1 -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,96776,47645,33126,13098,150,9.3,5,4,16,6706,9,999999999,15,0.074,0,88,0.2,0,1 -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,90697,47690,29840,11928,160,7.2,6,5,16,6706,9,999999999,16,0.074,0,88,0.2,0,1 -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,46378,8981,38392,13944,140,6.7,3,3,16,6096,9,999999999,16,0.074,0,88,0.2,0,1 -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,62018,44821,20297,7762,130,5.2,3,3,16,6096,9,999999999,16,0.074,0,88,0.2,0,1 -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,24,84400,544,1337,391,360,707,72,43090,36705,8641,3253,140,6.7,8,5,16,77777,9,999999999,16,0.074,0,88,0.2,0,1 -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,26,84300,291,1337,380,169,620,34,20091,12002,4048,1406,150,5.7,3,3,16,77777,9,999999999,16,0.074,0,88,0.2,0,1 -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,773,5985,693,132,140,4.1,3,3,16,77777,9,999999999,17,0.074,0,88,0.2,0,1 -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,77777,9,999999999,17,0.074,0,88,0.2,0,1 -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,77777,9,999999999,17,0.074,0,88,0.2,0,1 -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,77777,9,999999999,17,0.074,0,88,0.2,0,1 -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,5,51,83900,0,0,313,0,0,0,0,0,0,0,180,5.2,0,0,16,77777,9,999999999,17,0.074,0,88,0.2,0,1 -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,77777,9,999999999,17,0.074,0,88,0.2,0,1 -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,43,84000,0,0,325,0,0,0,0,0,0,0,210,6.2,0,0,16,77777,9,999999999,17,0.073,0,88,0.2,0,1 -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,77777,9,999999999,17,0.073,0,88,0.2,0,1 -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,77777,9,999999999,17,0.073,0,88,0.2,0,1 -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,77777,9,999999999,17,0.073,0,88,0.2,0,1 -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,77777,9,999999999,17,0.073,0,88,0.2,0,1 -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,449,4820,356,75,220,5.2,0,0,12.8,77777,9,999999999,17,0.073,0,88,0.2,0,1 -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,17997,13729,8472,2624,220,7.2,0,0,16,77777,9,999999999,17,0.073,0,88,0.2,0,1 -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,34,84300,538,1338,350,383,772,72,45739,39735,8621,3231,200,4.1,1,1,16,77777,9,999999999,17,0.073,0,88,0.2,0,1 -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,68868,49116,10607,4268,210,4.1,1,1,16,77777,9,999999999,17,0.073,0,88,0.2,0,1 -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,15,84600,951,1338,371,691,794,125,85197,52588,15470,6410,190,3.6,0,0,16,77777,9,999999999,17,0.073,0,88,0.2,0,1 -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,95492,53016,21893,9032,210,4.6,1,1,16,77777,9,999999999,17,0.073,0,88,0.2,0,1 -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,104307,54512,21754,8979,210,1.5,3,3,16,77777,9,999999999,17,0.073,0,88,0.2,0,1 -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,108820,56477,18968,7888,210,2.6,3,3,16,77777,9,999999999,16,0.073,0,88,0.2,0,1 -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,87156,89722,15126,3497,80,4.6,3,3,16,77777,9,999999999,16,0.073,0,88,0.2,0,1 -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,75886,88415,13434,2489,50,2.6,3,3,16,77777,9,999999999,16,0.073,0,88,0.2,0,1 -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,12,84500,766,1338,411,564,861,70,60033,86254,10199,1721,10,3.1,3,3,16,77777,9,999999999,16,0.073,0,88,0.2,0,1 -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,39562,75878,7956,1242,80,2.1,6,5,16,77777,9,999999999,16,0.073,0,88,0.2,0,1 -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,18873,11045,4042,1398,150,6.7,6,6,16,77777,9,999999999,16,0.073,0,88,0.2,0,1 -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,666,6179,525,105,170,5.2,4,4,16,77777,9,999999999,15,0.073,0,88,0.2,0,1 -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,77777,9,999999999,15,0.073,0,88,0.2,0,1 -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,77777,9,999999999,15,0.073,0,88,0.2,0,1 -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,77777,9,999999999,15,0.073,0,88,0.2,0,1 -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,77777,9,999999999,15,0.073,0,88,0.2,0,1 -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,6.7,42,83900,0,0,344,0,0,0,0,0,0,0,170,5.7,1,1,16,77777,9,999999999,15,0.073,0,88,0.2,0,1 -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,77777,9,999999999,15,0.072,0,88,0.2,0,1 -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,77777,9,999999999,15,0.072,0,88,0.2,0,1 -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,77777,9,999999999,15,0.072,0,88,0.2,0,1 -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,77777,9,999999999,15,0.072,0,88,0.2,0,1 -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,46,83700,0,0,320,0,0,0,0,0,0,0,230,6.2,0,0,16,77777,9,999999999,15,0.072,0,88,0.2,0,1 -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,448,4971,355,74,220,3.6,0,0,16,77777,9,999999999,15,0.072,0,88,0.2,0,1 -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,19829,16904,9678,2856,230,2.6,0,0,16,77777,9,999999999,15,0.072,0,88,0.2,0,1 -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,40054,35007,13170,4709,240,4.1,1,1,16,77777,9,999999999,15,0.072,0,88,0.2,0,1 -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,25,84300,762,1338,383,514,674,129,61253,44159,15432,6070,240,3.6,3,3,16,77777,9,999999999,15,0.072,0,88,0.2,0,1 -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,4.4,20,84400,948,1338,399,666,722,154,80695,49244,18739,7679,200,2.1,3,3,16,77777,9,999999999,15,0.072,0,88,0.2,0,1 -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,92734,50847,25031,10209,160,4.1,3,3,16,77777,9,999999999,16,0.072,0,88,0.2,0,1 -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,91146,87278,17652,4594,130,5.2,4,4,16,77777,9,999999999,16,0.072,0,88,0.2,0,1 -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,108486,58095,27324,11064,110,4.1,5,4,16,77777,9,999999999,17,0.072,0,88,0.2,0,1 -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,40048,5880,33388,13063,110,5.7,3,3,16,77777,9,999999999,17,0.072,0,88,0.2,0,1 -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,54054,17020,39360,14086,160,6.2,4,4,16,77777,9,999999999,18,0.072,0,88,0.2,0,1 -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,47513,24754,29006,10151,150,5.7,6,6,16,77777,9,999999999,18,0.072,0,88,0.2,0,1 -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,10985,0,11075,4558,160,8.2,5,5,16,77777,9,999999999,19,0.072,0,88,0.2,0,1 -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,17033,13242,8378,2598,160,6.7,8,6,16,6706,9,999999999,19,0.072,0,88,0.2,0,1 -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,193,0,194,79,170,8.2,6,5,16,6706,9,999999999,20,0.072,0,88,0.2,0,1 -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,-1.1,18,83900,0,0,372,0,0,0,0,0,0,0,180,7.2,6,5,16,6706,9,999999999,20,0.072,0,88,0.2,0,1 -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,6706,9,999999999,21,0.072,0,88,0.2,0,1 -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,77777,9,999999999,21,0.072,0,88,0.2,0,1 -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,77777,9,999999999,22,0.072,0,88,0.2,0,1 -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,6096,9,999999999,22,0.072,0,88,0.2,0,1 -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,6096,9,999999999,22,0.071,0,88,0.2,0,1 -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,6096,9,999999999,23,0.071,0,88,0.2,0,1 -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,2.2,31,83500,0,0,338,0,0,0,0,0,0,0,160,6.2,1,1,16,77777,9,999999999,23,0.071,0,88,0.2,0,1 -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,2.2,31,83500,0,0,338,0,0,0,0,0,0,0,210,5.2,1,1,16,77777,9,999999999,23,0.071,0,88,0.2,0,1 -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,77777,9,999999999,23,0.071,0,88,0.2,0,1 -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,263,0,131,40,260,3.1,3,3,16,77777,9,999999999,24,0.071,0,88,0.2,0,1 -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,10967,2614,9467,2797,290,6.2,5,4,16,77777,9,999999999,24,0.071,0,88,0.2,0,1 -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,40599,36364,14122,4973,280,5.7,3,3,16,77777,9,999999999,24,0.071,0,88,0.2,0,1 -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,65037,47752,13536,5371,300,4.6,3,3,16,77777,9,999999999,24,0.071,0,88,0.2,0,1 -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,77607,47330,21087,8542,310,4.1,3,3,16,77777,9,999999999,24,0.071,0,88,0.2,0,1 -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,92880,50803,24217,9912,280,2.6,3,3,16,77777,9,999999999,25,0.071,0,88,0.2,0,1 -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,98745,50975,34783,13607,250,2.6,5,4,16,77777,9,999999999,25,0.071,0,88,0.2,0,1 -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,48620,9929,36775,14233,300,1.5,9,6,16,77777,9,999999999,25,0.071,0,88,0.2,0,1 -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,79810,38006,37450,14310,350,8.8,9,6,16,7620,9,999999999,26,0.071,0,88,0.2,0,1 -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,53348,16778,38769,13913,350,7.2,10,7,16,7315,9,999999999,26,0.071,0,88,0.2,0,1 -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,2.8,18,83900,756,1339,403,447,366,240,50738,30365,27389,9719,300,5.2,8,5,16,7315,9,999999999,26,0.071,0,88,0.2,0,1 -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,11478,0,11572,4697,280,8.8,9,7,16,7315,9,999999999,27,0.071,0,88,0.2,0,1 -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,17415,13470,7840,2454,240,6.2,10,9,16,6706,9,999999999,27,0.071,0,88,0.2,0,1 -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,342,5724,183,40,190,3.6,10,9,16,6706,9,999999999,27,0.071,0,88,0.2,0,1 -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,3.3,33,83500,0,0,374,0,0,0,0,0,0,0,160,4.6,10,9,16,6706,9,999999999,28,0.071,0,88,0.2,0,1 -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,77777,9,999999999,28,0.071,0,88,0.2,0,1 -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,77777,9,999999999,28,0.071,0,88,0.2,0,1 -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,77777,9,999999999,29,0.071,0,88,0.2,0,1 -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,3.3,33,83300,0,0,353,0,0,0,0,0,0,0,210,6.7,8,5,16,77777,9,999999999,28,0.071,0,88,0.2,0,1 -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,77777,9,999999999,28,0.07,0,88,0.2,0,1 -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,77777,9,999999999,28,0.07,0,88,0.2,0,1 -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,77777,9,999999999,28,0.07,0,88,0.2,0,1 -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,77777,9,999999999,28,0.07,0,88,0.2,0,1 -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,77777,9,999999999,28,0.07,0,88,0.2,0,1 -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,227,3984,182,40,230,5.7,5,5,16,77777,9,999999999,28,0.07,0,88,0.2,0,1 -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,18293,14596,8848,2658,220,6.2,3,3,16,77777,9,999999999,27,0.07,0,88,0.2,0,1 -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,41773,37130,10358,3804,240,4.6,5,5,16,77777,9,999999999,27,0.07,0,88,0.2,0,1 -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,65311,48279,13083,5196,270,2.1,5,5,16,77777,9,999999999,27,0.07,0,88,0.2,0,1 -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,80853,50111,18164,7446,180,1.5,5,5,16,77777,9,999999999,27,0.07,0,88,0.2,0,1 -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,92491,51155,23203,9527,90,3.1,5,5,16,77777,9,999999999,27,0.07,0,88,0.2,0,1 -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,97559,50815,28196,11373,50,7.2,5,5,16,77777,9,999999999,26,0.07,0,88,0.2,0,1 -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,99467,52271,27857,11252,50,5.7,5,5,16,77777,9,999999999,26,0.07,0,88,0.2,0,1 -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,99582,54838,17476,7309,60,5.7,9,9,16,7620,9,999999999,26,0.07,0,88,0.2,0,1 -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,80794,51458,23315,9316,30,5.7,9,9,16,7620,9,999999999,26,0.07,0,88,0.2,0,1 -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,2.2,17,83800,750,1340,426,386,242,250,43634,20521,28416,9930,50,11.3,9,9,16,4200,9,999999999,25,0.07,0,88,0.2,0,1 -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,25760,9301,20666,6499,80,7.7,8,8,16,4267,9,999999999,25,0.07,0,88,0.2,0,1 -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,10500,3089,8541,2586,120,2.1,9,9,16,6706,9,999999999,25,0.07,0,88,0.2,0,1 -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,227,3493,182,40,170,5.7,9,9,16,6706,9,999999999,24,0.07,0,88,0.2,0,1 -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,6706,9,999999999,24,0.07,0,88,0.2,0,1 -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,6706,9,999999999,24,0.07,0,88,0.2,0,1 -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,3.9,35,83600,0,0,375,0,0,0,0,0,0,0,20,4.6,9,9,16,6706,9,999999999,23,0.07,0,88,0.2,0,1 -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,8.3,47,83300,0,0,373,0,0,0,0,0,0,0,10,5.7,8,8,16,6706,9,999999999,23,0.07,0,88,0.2,0,1 -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,6096,9,999999999,23,0.07,0,88,0.2,0,1 -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,6096,9,999999999,22,0.07,0,88,0.2,0,1 -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,6096,9,999999999,21,0.07,0,88,0.2,0,1 -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,7.2,60,83500,0,0,354,0,0,0,0,0,0,0,360,4.1,10,9,16,6096,9,999999999,21,0.07,0,88,0.2,0,1 -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,77777,9,999999999,20,0.07,0,88,0.2,0,1 -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,77777,9,999999999,19,0.07,0,88,0.2,0,1 -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,228,3990,182,40,0,0,4,4,16,7620,9,999999999,19,0.07,0,88,0.2,0,1 -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,6.7,58,83800,270,1340,334,167,449,76,18435,14150,8420,2556,360,1.5,6,5,16,77777,9,999999999,18,0.07,0,88,0.2,0,1 -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,42556,37505,10556,3865,0,0,6,5,16,77777,9,999999999,18,0.07,0,88,0.2,0,1 -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,60360,43277,15387,6035,40,1.5,6,5,16,77777,9,999999999,17,0.07,0,88,0.2,0,1 -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,78763,47324,19354,7901,80,1.5,6,5,16,77777,9,999999999,16,0.07,0,88,0.2,0,1 -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,95398,50596,20518,8527,120,3.6,6,5,16,77777,9,999999999,16,0.07,0,88,0.2,0,1 -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,41,84000,1137,1340,381,825,733,201,100414,50114,24588,10090,190,4.6,6,5,16,77777,9,999999999,16,0.07,0,88,0.2,0,1 -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,35,84100,1136,1340,396,870,851,147,108376,53585,18391,7690,120,3.6,6,5,16,77777,9,999999999,16,0.07,0,88,0.2,0,1 -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,94888,51353,25142,10262,130,6.2,10,9,16,7315,9,999999999,16,0.07,0,88,0.2,0,1 -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,55289,20463,36590,13326,230,9.8,10,10,12.8,3048,9,999999999,16,0.07,0,88,0.2,0,1 -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,10.3,54,83800,745,1340,383,88,0,88,8994,0,9075,4323,250,10.8,10,9,16,2286,9,999999999,16,0.07,0,88,0.2,0,1 -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,5728,0,5775,2600,130,6.7,9,7,16,6706,9,999999999,16,0.07,0,88,0.2,0,1 -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,16076,10282,7676,2379,210,4.1,10,9,16,3353,9,999999999,16,0.07,0,88,0.2,0,1 -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,6706,9,999999999,16,0.07,0,88,0.2,0,1 -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,6706,9,999999999,16,0.07,0,88,0.2,0,1 -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,8.3,47,83800,0,0,381,0,0,0,0,0,0,0,210,9.8,9,9,16,2438,9,999999999,16,0.07,0,88,0.2,0,1 -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,6096,9,999999999,15,0.07,0,88,0.2,0,1 -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,77777,9,999999999,15,0.07,0,88,0.2,0,1 -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,6096,9,999999999,17,0.07,0,88,0.2,0,1 -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,6.7,58,83500,0,0,321,0,0,0,0,0,0,0,110,4.6,1,1,16,77777,9,999999999,18,0.068,0,88,0.2,0,1 -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,77777,9,999999999,19,0.068,0,88,0.2,0,1 -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,6.1,55,83500,0,0,314,0,0,0,0,0,0,0,180,4.6,0,0,16,77777,9,999999999,21,0.068,0,88,0.2,1,1 -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,77777,9,999999999,22,0.068,0,88,0.2,0,1 -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,10,72,83500,0,0,329,0,0,0,0,0,0,0,200,3.1,3,2,16,77777,9,999999999,23,0.068,0,88,0.2,0,1 -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,10.6,75,83600,36,726,335,1,18,1,129,0,129,40,250,5.2,5,4,16,6706,9,999999999,25,0.068,0,88,0.2,0,1 -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,11256,3228,9105,2677,260,4.1,7,5,16,6706,9,999999999,26,0.068,0,88,0.2,0,1 -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,37638,31290,16878,5661,260,4.1,6,5,16,6706,9,999999999,27,0.068,0,88,0.2,0,1 -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,8.9,49,83900,749,1341,360,350,141,271,39160,12008,30496,10374,300,2.6,6,5,16,3962,9,999999999,28,0.068,0,88,0.2,0,1 -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,63398,31126,33966,12625,330,2.1,6,5,16,3962,9,999999999,30,0.068,0,88,0.2,0,1 -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,69118,26168,42321,15607,10,2.1,8,6,16,7620,9,999999999,31,0.068,0,88,0.2,0,1 -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,95115,47350,36523,14160,50,2.6,8,5,16,6706,9,999999999,31,0.068,0,88,0.2,0,1 -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,41222,2933,37933,14590,30,2.6,7,5,16,3962,9,999999999,30,0.068,0,88,0.2,0,1 -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,13558,0,13690,6783,0,0,9,6,16,3962,9,999999999,30,0.068,0,88,0.2,0,1 -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,54630,20226,36490,13253,230,8.2,8,6,16,3962,9,999999999,30,0.068,0,88,0.2,0,1 -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,13508,0,13628,6120,290,4.6,7,5,16,4267,9,999999999,30,0.068,0,88,0.2,0,1 -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,7222,0,7281,3179,320,5.2,10,10,16,3048,9,999999999,29,0.068,0,88,0.2,0,1 -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,4609,0,4643,1775,240,5.7,9,9,16,3353,9,999999999,29,0.068,0,88,0.2,0,1 -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,6706,9,999999999,29,0.068,0,88,0.2,0,1 -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,8.9,49,83800,0,0,357,0,0,0,0,0,0,0,210,7.2,5,4,16,6706,9,999999999,28,0.068,0,88,0.2,0,1 -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,6096,9,999999999,28,0.068,0,88,0.2,0,1 -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,77777,9,999999999,28,0.068,0,88,0.2,0,1 -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,77777,9,999999999,28,0.068,0,88,0.2,0,1 -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,4,3,16,6096,9,999999999,28,0.068,0,88,0.2,0,1 -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,77777,9,999999999,14,0.067,0,88,0.2,0,1 -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,77777,9,999999999,13,0.067,0,88,0.2,0,1 -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,77777,9,999999999,12,0.067,0,88,0.2,0,1 -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,77777,9,999999999,11,0.067,0,88,0.2,0,1 -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,77777,9,999999999,11,0.067,0,88,0.2,0,1 -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,1.7,56,83700,34,704,289,1,102,0,0,0,0,0,230,4.1,0,0,16,77777,9,999999999,10,0.067,0,88,0.2,0,1 -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,20048,16170,7078,2224,250,3.1,0,0,16,77777,9,999999999,10,0.067,0,88,0.2,0,1 -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,43796,40825,9801,3595,310,2.1,0,0,16,77777,9,999999999,9,0.067,0,88,0.2,0,1 -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,28,84200,746,1342,325,555,846,84,68218,51103,10354,4139,0,0,0,0,16,77777,9,999999999,9,0.067,0,88,0.2,0,1 -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,23,84300,932,1342,340,711,855,116,87871,55780,14387,5955,0,0,0,0,16,77777,9,999999999,9,0.067,0,88,0.2,0,1 -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,21,83800,1063,1342,360,829,929,92,87551,94430,12527,2966,0,0,3,3,16,77777,9,999999999,9,0.067,0,88,0.2,0,1 -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,94906,97396,12237,3455,50,1.5,3,3,16,77777,9,999999999,10,0.067,0,88,0.2,0,1 -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,94441,97622,11477,3288,90,4.1,3,3,16,77777,9,999999999,11,0.067,0,88,0.2,0,1 -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,84856,88277,16471,3359,80,5.7,3,3,16,77777,9,999999999,11,0.067,0,88,0.2,0,1 -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,75149,91084,12586,2300,90,3.1,3,3,16,77777,9,999999999,11,0.067,0,88,0.2,0,1 -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,57847,86761,9833,1636,90,4.1,4,4,16,77777,9,999999999,12,0.067,0,88,0.2,0,1 -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,42260,38795,6916,2581,70,3.1,5,5,16,77777,9,999999999,12,0.067,0,88,0.2,0,1 -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,15265,51001,4379,667,70,2.6,3,3,16,77777,9,999999999,12,0.067,0,88,0.2,0,1 -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,77777,9,999999999,13,0.067,0,88,0.2,0,1 -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,77777,9,999999999,13,0.067,0,88,0.2,0,1 -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,43,83900,0,0,325,0,0,0,0,0,0,0,170,5.2,0,0,16,77777,9,999999999,13,0.067,0,88,0.2,0,1 -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,77777,9,999999999,13,0.067,0,88,0.2,0,1 -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,77777,9,999999999,13,0.067,0,88,0.2,0,1 -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,77777,9,999999999,12,0.067,0,88,0.2,0,1 -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,77777,9,999999999,12,0.066,0,88,0.2,0,1 -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,4.4,49,83700,0,0,318,0,0,0,0,0,0,0,260,4.1,1,1,16,77777,9,999999999,12,0.066,0,88,0.2,0,1 -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,77777,9,999999999,12,0.066,0,88,0.2,0,1 -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,53,83800,0,0,321,0,0,0,0,0,0,0,240,3.1,2,2,16,77777,9,999999999,13,0.066,0,88,0.2,0,1 -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,77777,9,999999999,13,0.066,0,88,0.2,0,1 -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,6096,9,999999999,13,0.066,0,88,0.2,0,1 -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,19524,11877,5805,1891,260,2.6,3,3,16,7315,9,999999999,13,0.066,0,88,0.2,0,1 -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,41321,37000,11815,4239,290,1.5,7,7,16,6706,9,999999999,12,0.066,0,88,0.2,0,1 -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,70823,51677,11230,4482,320,1.5,5,5,16,77777,9,999999999,13,0.066,0,88,0.2,0,1 -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,84872,52177,15266,6311,350,1.5,5,5,16,77777,9,999999999,13,0.066,0,88,0.2,0,1 -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,23,83800,1059,1342,391,774,754,177,94270,52340,21658,8942,20,2.6,3,3,16,77777,9,999999999,13,0.066,0,88,0.2,0,1 -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,91224,90768,15769,3995,50,3.1,3,3,16,77777,9,999999999,13,0.066,0,88,0.2,0,1 -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,92064,93843,13511,3632,50,3.1,3,3,16,77777,9,999999999,14,0.066,0,88,0.2,0,1 -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,88769,94996,14842,3181,70,6.2,5,5,16,77777,9,999999999,14,0.066,0,88,0.2,0,1 -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,85017,57157,19928,8047,0,0,5,5,16,77777,9,999999999,15,0.066,0,88,0.2,0,1 -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,46078,26481,26975,9405,120,5.2,4,4,16,77777,9,999999999,16,0.066,0,88,0.2,0,1 -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,32949,27435,15184,5135,160,6.7,5,5,16,77777,9,999999999,17,0.066,0,88,0.2,0,1 -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,14448,8637,5999,1912,160,6.2,3,3,16,77777,9,999999999,18,0.066,0,88,0.2,0,1 -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,77777,9,999999999,18,0.066,0,88,0.2,0,1 -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,77777,9,999999999,19,0.066,0,88,0.2,0,1 -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,77777,9,999999999,19,0.066,0,88,0.2,0,1 -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,77777,9,999999999,18,0.066,0,88,0.2,0,1 -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,40,83800,0,0,350,0,0,0,0,0,0,0,190,6.2,5,5,16,77777,9,999999999,18,0.066,0,88,0.2,0,1 -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,77777,9,999999999,17,0.066,0,88,0.2,0,1 -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,77777,9,999999999,17,0.066,0,88,0.2,0,1 -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,4.4,36,83800,0,0,349,0,0,0,0,0,0,0,180,6.7,3,3,16,77777,9,999999999,17,0.066,0,88,0.2,0,1 -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,5,51,83800,0,0,329,0,0,0,0,0,0,0,150,5.2,4,4,16,77777,9,999999999,16,0.066,0,88,0.2,0,1 -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,5,51,83800,0,0,329,0,0,0,0,0,0,0,180,4.6,4,4,16,77777,9,999999999,15,0.066,0,88,0.2,0,1 -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,48,83800,0,0,334,0,0,0,0,0,0,0,210,1.5,4,4,16,4877,9,999999999,13,0.066,0,88,0.2,0,1 -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,5,51,83800,30,660,327,0,0,0,0,0,0,0,240,4.6,3,3,16,77777,9,999999999,13,0.066,0,88,0.2,0,1 -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,40,84100,255,1343,337,173,642,51,19633,12657,5803,1881,240,4.6,1,1,16,6706,9,999999999,13,0.066,0,88,0.2,0,1 -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,43636,38724,8128,3018,240,6.2,3,3,16,7620,9,999999999,13,0.066,0,88,0.2,0,1 -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,65800,49224,11691,4646,300,3.1,3,3,16,77777,9,999999999,13,0.066,0,88,0.2,0,1 -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,83980,53532,15853,6525,230,1.5,4,4,16,77777,9,999999999,13,0.066,0,88,0.2,0,1 -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,83828,87048,16494,3323,150,3.6,5,5,16,77777,9,999999999,13,0.066,0,88,0.2,0,1 -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,92870,92910,15899,3960,130,2.1,5,5,16,77777,9,999999999,13,0.066,0,88,0.2,0,1 -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,90689,47233,33036,12996,100,4.6,6,6,16,7620,9,999999999,13,0.066,0,88,0.2,0,1 -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,102533,60929,21213,8748,80,4.6,5,5,16,77777,9,999999999,13,0.066,0,88,0.2,0,1 -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,75218,48540,24763,9721,120,5.7,5,5,16,77777,9,999999999,15,0.066,0,88,0.2,0,1 -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,53269,39229,20779,7700,130,5.7,7,6,16,77777,9,999999999,16,0.066,0,88,0.2,0,1 -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.6,15,83500,490,1343,408,302,546,102,34810,31595,11798,4173,170,7.2,7,7,16,6096,9,999999999,17,0.066,0,88,0.2,0,1 -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,14885,5333,3757,1263,190,7.2,7,5,16,3962,9,999999999,17,0.066,0,88,0.2,0,1 -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,3962,9,999999999,17,0.066,0,88,0.2,0,1 -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,3962,9,999999999,17,0.066,0,88,0.2,0,1 -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,3962,9,999999999,16,0.066,0,88,0.2,0,1 -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,3962,9,999999999,16,0.066,0,88,0.2,0,1 -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,6706,9,999999999,16,0.066,0,88,0.2,0,1 -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,77777,9,999999999,16,0.066,0,88,0.2,0,1 -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,77777,9,999999999,16,0.065,0,88,0.2,0,1 -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,3.9,35,83600,0,0,349,0,0,0,0,0,0,0,190,5.2,4,3,16,6096,9,999999999,16,0.065,0,88,0.2,0,1 -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,6096,9,999999999,17,0.065,0,88,0.2,0,1 -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,6096,9,999999999,18,0.065,0,88,0.2,0,1 -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,6706,9,999999999,20,0.065,0,88,0.2,0,1 -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,5486,9,999999999,19,0.065,0,88,0.2,0,1 -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,5,37,83900,251,1344,353,165,624,48,18789,11107,5480,1786,230,4.1,4,4,16,77777,9,999999999,19,0.065,0,88,0.2,0,1 -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,31,83600,507,1344,366,367,801,64,43914,38599,7676,2855,240,3.1,4,4,16,77777,9,999999999,19,0.065,0,88,0.2,0,1 -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,66300,49163,10777,4293,320,2.6,5,5,16,77777,9,999999999,19,0.065,0,88,0.2,0,1 -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,76269,92974,12346,2262,30,4.6,5,5,16,77777,9,999999999,19,0.065,0,88,0.2,0,1 -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,87452,95459,12179,2839,20,3.1,6,6,16,77777,9,999999999,19,0.065,0,88,0.2,0,1 -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,3.9,19,84400,1118,1344,413,855,890,113,90184,90860,15049,3793,10,4.6,7,7,16,77777,9,999999999,19,0.065,0,88,0.2,0,1 -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,105081,55277,17102,7158,70,4.1,7,6,16,77777,9,999999999,19,0.065,0,88,0.2,0,1 -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,3.3,18,83500,1043,1344,404,817,908,111,86172,92457,15013,3118,40,2.1,5,5,16,77777,9,999999999,19,0.065,0,88,0.2,0,1 -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,73044,89117,13165,2277,360,1.5,5,4,16,77777,9,999999999,18,0.065,0,88,0.2,0,1 -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,65424,50148,10753,4263,330,2.6,5,5,16,77777,9,999999999,18,0.065,0,88,0.2,0,1 -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,37740,34525,9079,3306,40,2.6,6,5,16,77777,9,999999999,18,0.065,0,88,0.2,0,1 -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,15260,3845,3527,1187,340,6.7,4,4,16,77777,9,999999999,18,0.065,0,88,0.2,0,1 -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,5.6,29,84000,18,526,375,0,0,0,0,0,0,0,330,4.6,3,3,16,77777,9,999999999,18,0.065,0,88,0.2,0,1 -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,4267,9,999999999,18,0.065,0,88,0.2,0,1 -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,77777,9,999999999,18,0.065,0,88,0.2,0,1 -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,3658,9,999999999,18,0.065,0,88,0.2,0,1 -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,3658,9,999999999,18,0.065,0,88,0.2,0,1 -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,3658,9,999999999,18,0.065,0,88,0.2,0,1 -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,77777,9,999999999,18,0.064,0,88,0.2,0,1 -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,7.2,43,83500,0,0,371,0,0,0,0,0,0,0,220,4.6,8,8,16,3353,9,999999999,18,0.064,0,88,0.2,0,1 -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,6096,9,999999999,19,0.064,0,88,0.2,0,1 -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,6096,9,999999999,19,0.064,0,88,0.2,0,1 -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,3353,9,999999999,20,0.064,0,88,0.2,0,1 -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,4267,9,999999999,20,0.064,0,88,0.2,0,1 -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,17843,14537,10839,2803,230,4.6,5,5,16,4267,9,999999999,19,0.064,0,88,0.2,0,1 -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,22070,10998,14546,4976,240,5.2,3,3,16,77777,9,999999999,19,0.064,0,88,0.2,0,1 -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,61676,47776,21736,8013,310,2.6,3,3,16,77777,9,999999999,18,0.064,0,88,0.2,0,1 -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,80619,51967,20546,8276,10,3.1,3,3,16,77777,9,999999999,18,0.064,0,88,0.2,0,1 -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,2.2,17,83700,1048,1344,399,830,917,113,87362,93243,15255,3162,60,4.1,4,4,16,77777,9,999999999,17,0.064,0,88,0.2,0,1 -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,103918,55525,19078,7947,270,3.1,5,5,16,77777,9,999999999,18,0.064,0,88,0.2,0,1 -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,2.8,18,84300,1111,1344,407,815,671,260,97171,52464,31173,12385,310,2.1,6,6,16,4267,9,999999999,18,0.064,0,88,0.2,0,1 -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,44451,10281,33266,12905,260,3.1,7,7,16,4572,9,999999999,18,0.064,0,88,0.2,0,1 -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,62483,32608,33958,12394,200,2.1,7,7,16,4572,9,999999999,18,0.064,0,88,0.2,0,1 -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,12889,0,13001,5788,150,5.7,7,6,16,7620,9,999999999,19,0.064,0,88,0.2,0,1 -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,37147,35315,15328,5077,180,4.6,9,7,16,7620,9,999999999,19,0.064,0,88,0.2,0,1 -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,11730,4832,5429,1721,250,2.1,6,6,16,7620,9,999999999,19,0.064,0,88,0.2,0,1 -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,5.6,29,84200,16,482,378,0,0,0,0,0,0,0,330,4.6,5,4,16,7620,9,999999999,18,0.064,0,88,0.2,0,1 -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,35,83700,0,0,361,0,0,0,0,0,0,0,100,4.1,5,5,16,7620,9,999999999,17,0.064,0,88,0.2,0,1 -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,40,83900,0,0,350,0,0,0,0,0,0,0,140,3.1,5,5,16,77777,9,999999999,17,0.064,0,88,0.2,0,1 -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,77777,9,999999999,16,0.064,0,88,0.2,0,1 -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,77777,9,999999999,16,0.064,0,88,0.2,0,1 -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,16,77777,9,999999999,15,0.064,0,88,0.2,0,1 -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,77777,9,999999999,15,0.063,0,88,0.2,0,1 -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,77777,9,999999999,15,0.063,0,88,0.2,0,1 -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,77777,9,999999999,16,0.063,0,88,0.2,0,1 -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,77777,9,999999999,17,0.063,0,88,0.2,0,1 -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,77777,9,999999999,19,0.063,0,88,0.2,0,1 -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,6096,9,999999999,19,0.063,0,88,0.2,0,1 -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,18101,14949,10327,2717,330,6.2,6,6,16,4267,9,999999999,19,0.063,0,88,0.2,0,1 -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,28747,17438,18664,5911,310,6.2,8,8,16,4267,9,999999999,19,0.063,0,88,0.2,0,1 -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,44569,21894,29055,9863,300,4.6,10,9,16,3048,9,999999999,19,0.063,0,88,0.2,0,1 -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,44084,8582,36811,13188,20,3.6,10,9,16,2743,9,999999999,19,0.063,0,88,0.2,0,1 -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,47561,4875,43028,15647,30,4.6,9,9,16,2134,9,999999999,19,0.063,0,88,0.2,0,1 -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,14770,0,14916,7341,50,2.6,9,9,16,3048,9,999999999,20,0.063,0,88,0.2,0,1 -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,106496,58301,29980,11998,30,5.7,8,8,16,4267,9,999999999,20,0.063,0,88,0.2,0,1 -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,85889,46781,33382,12945,10,4.1,6,6,16,4267,9,999999999,20,0.063,0,88,0.2,0,1 -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,8.9,36,84600,896,1345,385,273,36,249,31553,2828,28938,10988,30,4.1,5,5,16,4267,9,999999999,22,0.063,0,88,0.2,0,1 -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,8.9,36,84600,704,1345,379,317,135,246,35469,11109,27678,9407,60,2.1,3,3,16,77777,9,999999999,23,0.063,0,88,0.2,0,1 -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,34538,30573,15267,5038,80,3.6,6,5,16,77777,9,999999999,24,0.063,0,88,0.2,0,1 -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,2345,0,2362,964,140,5.2,7,7,16,4572,9,999999999,23,0.063,0,88,0.2,0,1 -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,3300,9,999999999,23,0.063,0,88,0.2,0,1 -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,3658,9,999999999,22,0.063,0,88,0.2,0,1 -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,3658,9,999999999,22,0.063,0,88,0.2,0,1 -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,3962,9,999999999,21,0.063,0,88,0.2,0,1 -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,77,84100,0,0,344,0,0,0,0,0,0,0,180,3.1,9,8,16,3962,9,999999999,21,0.063,0,88,0.2,0,1 -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,77,84200,0,0,324,0,0,0,0,0,0,0,190,4.1,2,2,16,77777,9,999999999,20,0.063,0,88,0.2,0,1 -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,10,72,84200,0,0,332,0,0,0,0,0,0,0,170,4.6,3,3,16,6096,9,999999999,20,0.062,0,88,0.2,0,1 -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,75,84000,0,0,337,0,0,0,0,0,0,0,150,3.1,6,6,16,6096,9,999999999,20,0.062,0,88,0.2,0,1 -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,10.6,75,84000,0,0,350,0,0,0,0,0,0,0,240,3.1,8,8,16,3353,9,999999999,20,0.062,0,88,0.2,0,1 -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,83,84000,0,0,339,0,0,0,0,0,0,0,40,2.1,8,8,16,3353,9,999999999,21,0.062,0,88,0.2,0,1 -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,3353,9,999999999,21,0.062,0,88,0.2,0,1 -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,77777,9,999999999,21,0.062,0,88,0.2,0,1 -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,18609,13599,8302,2399,260,4.1,3,3,16,77777,9,999999999,20,0.062,0,88,0.2,0,1 -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,42695,36227,8515,3137,260,4.6,3,3,16,77777,9,999999999,20,0.062,0,88,0.2,0,1 -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,61405,44891,14186,5547,270,3.6,3,3,16,77777,9,999999999,20,0.062,0,88,0.2,0,1 -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,77703,93921,14380,2331,300,3.6,3,3,16,77777,9,999999999,19,0.062,0,88,0.2,0,1 -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,95325,51303,17562,7350,350,2.6,5,5,16,77777,9,999999999,19,0.062,0,88,0.2,0,1 -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,90069,90781,16111,3771,40,4.1,6,6,16,77777,9,999999999,19,0.062,0,88,0.2,0,1 -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,101944,53827,18330,7661,80,5.7,7,7,16,77777,9,999999999,19,0.062,0,88,0.2,0,1 -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,85495,93506,14419,2953,20,6.2,4,4,16,77777,9,999999999,19,0.062,0,88,0.2,0,1 -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,73044,91915,12007,2142,30,2.6,4,4,16,77777,9,999999999,19,0.062,0,88,0.2,0,1 -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,64804,50985,9931,3924,40,3.1,5,5,16,77777,9,999999999,20,0.062,0,88,0.2,0,1 -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,36003,33029,7623,2785,40,2.1,5,5,16,77777,9,999999999,20,0.062,0,88,0.2,0,1 -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,12806,901,3177,1061,50,3.6,5,5,16,77777,9,999999999,20,0.062,0,88,0.2,0,1 -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,77777,9,999999999,21,0.062,0,88,0.2,0,1 -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,6096,9,999999999,22,0.062,0,88,0.2,0,1 -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,3353,9,999999999,22,0.062,0,88,0.2,0,1 -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,11.7,59,84100,0,0,385,0,0,0,0,0,0,0,130,6.7,9,9,16,6096,9,999999999,22,0.062,0,88,0.2,0,1 -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,11.1,57,83800,0,0,363,0,0,0,0,0,0,0,160,6.2,5,5,16,77777,9,999999999,21,0.062,0,88,0.2,0,1 -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,77777,9,999999999,21,0.062,0,88,0.2,0,1 -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,77777,9,999999999,21,0.062,0,88,0.2,0,1 -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,6096,9,999999999,21,0.062,0,88,0.2,0,1 -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,77777,9,999999999,21,0.062,0,88,0.2,0,1 -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,77777,9,999999999,21,0.062,0,88,0.2,0,1 -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,6096,9,999999999,21,0.062,0,88,0.2,0,1 -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,11.1,77,83800,21,572,342,0,0,0,0,0,0,0,250,3.1,6,6,16,3658,9,999999999,21,0.062,0,88,0.2,0,1 -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,18164,8765,5847,1854,240,3.6,6,6,16,3658,9,999999999,21,0.062,0,88,0.2,0,1 -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,43,83800,492,1346,386,362,797,70,42777,36841,8294,3054,290,2.1,7,7,16,3658,9,999999999,21,0.062,0,88,0.2,0,1 -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,59226,42457,13727,5377,270,2.6,8,8,16,6706,9,999999999,21,0.062,0,88,0.2,0,1 -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,35,84300,907,1346,404,649,637,218,75842,47066,25607,9991,0,0,8,7,16,3962,9,999999999,20,0.062,0,88,0.2,0,1 -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,46217,11190,33929,13115,340,1.5,8,8,16,6706,9,999999999,20,0.062,0,88,0.2,0,1 -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,105886,57249,24135,9908,310,4.1,8,8,16,6706,9,999999999,21,0.062,0,88,0.2,0,1 -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,101023,54519,22215,9177,320,3.6,7,6,16,3900,9,999999999,22,0.062,0,88,0.2,0,1 -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,58949,19289,39896,14739,320,4.6,9,8,16,3962,9,999999999,23,0.062,0,88,0.2,0,1 -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,73420,46114,32437,11889,330,3.1,8,6,16,3962,9,999999999,24,0.062,0,88,0.2,0,1 -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,6,20,84200,692,1346,427,93,0,93,9484,0,9566,4420,230,5.2,8,7,16,6096,9,999999999,24,0.062,0,88,0.2,0,1 -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,11093,0,11182,4310,270,6.2,8,8,16,3962,9,999999999,24,0.062,0,88,0.2,0,1 -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,2248,0,2264,916,290,3.6,9,7,16,3962,9,999999999,24,0.062,0,88,0.2,0,1 -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,9,6,16,3962,9,999999999,24,0.062,0,88,0.2,0,1 -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,7,7,16,3353,9,999999999,23,0.062,0,88,0.2,0,1 -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,3658,9,999999999,24,0.062,0,88,0.2,0,1 -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,3353,9,999999999,24,0.062,0,88,0.2,0,1 -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,3658,9,999999999,24,0.062,0,88,0.2,0,1 -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,3658,9,999999999,23,0.062,0,88,0.2,0,1 -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,3658,9,999999999,23,0.061,0,88,0.2,0,1 -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,3658,9,999999999,23,0.061,0,88,0.2,0,1 -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,77777,9,999999999,22,0.061,0,88,0.2,0,1 -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,77777,9,999999999,22,0.061,0,88,0.2,0,1 -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,77777,9,999999999,22,0.061,0,88,0.2,0,1 -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,77777,9,999999999,21,0.061,0,88,0.2,0,1 -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,17791,13435,8386,2371,220,4.1,3,3,16,77777,9,999999999,21,0.061,0,88,0.2,0,1 -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,8.9,36,83200,488,1347,379,356,779,73,41916,36878,8619,3156,230,3.1,3,3,16,77777,9,999999999,20,0.061,0,88,0.2,0,1 -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,64533,47753,10727,4253,260,4.1,3,3,16,77777,9,999999999,20,0.061,0,88,0.2,0,1 -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,75172,47433,25617,9970,330,2.6,3,3,16,77777,9,999999999,21,0.061,0,88,0.2,0,1 -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,45522,10780,33814,13059,320,1.5,5,5,16,77777,9,999999999,21,0.061,0,88,0.2,0,1 -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,98457,53403,29399,11782,310,4.6,7,7,16,6096,9,999999999,21,0.061,0,88,0.2,0,1 -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,95429,51658,25707,10471,260,3.1,9,7,16,6096,9,999999999,22,0.061,0,88,0.2,0,1 -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,79023,42516,32685,12658,210,2.6,9,7,16,6096,9,999999999,22,0.061,0,88,0.2,0,1 -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,5.6,21,83600,879,1347,431,244,24,229,28347,1872,26745,10228,160,3.1,10,9,16,3353,9,999999999,23,0.061,0,88,0.2,0,1 -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,20620,431,20371,7425,270,9.8,9,8,16,3048,9,999999999,25,0.061,0,88,0.2,0,1 -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,7.2,32,82900,451,1347,391,60,0,60,5991,0,6039,2609,280,5.2,7,7,16,3048,9,999999999,26,0.061,0,88,0.2,0,1 -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,1463,0,1473,618,220,3.1,10,8,16,3658,9,999999999,25,0.061,0,88,0.2,0,1 -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,3658,9,999999999,24,0.061,0,88,0.2,0.3,1 -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,12.2,61,82900,0,0,385,0,0,0,0,0,0,0,130,3.1,10,9,16,3048,9,999999999,23,0.061,0,88,0.2,0,1 -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,3962,9,999999999,23,0.061,0,88,0.2,0,1 -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,3962,9,999999999,22,0.061,0,88,0.2,0,1 -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,3962,9,999999999,22,0.061,0,88,0.2,0,1 -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,6096,9,999999999,21,0.061,0,88,0.2,0,1 -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,3962,9,999999999,20,0.061,0,88,0.2,0,1 -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,3962,9,999999999,18,0.061,0,88,0.2,0,1 -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,3962,9,999999999,18,0.061,0,88,0.2,0,1 -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,6096,9,999999999,18,0.061,0,88,0.2,0,1 -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,4267,9,999999999,18,0.061,0,88,0.2,0,1 -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,6.1,40,83000,18,528,357,0,0,0,0,0,0,0,200,7.7,8,5,16,4267,9,999999999,15,0.061,0,88,0.2,0,1 -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,3035,0,3057,1214,240,7.7,9,7,16,4267,9,999999999,13,0.061,0,88,0.2,0,1 -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,13820,0,13931,5130,320,4.6,6,6,16,7620,9,999999999,10,0.061,0,88,0.2,0,1 -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,31,83400,714,1348,372,306,98,253,34243,8350,28470,9599,320,3.6,6,6,16,7620,9,999999999,10,0.061,0,88,0.2,0,1 -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,29,83400,900,1348,374,579,443,283,66338,37564,32612,12000,280,2.1,4,4,16,7620,9,999999999,10,0.061,0,88,0.2,0,1 -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,92565,54529,21356,8779,240,5.2,4,4,16,7620,9,999999999,9,0.061,0,88,0.2,0,1 -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,105148,58040,17408,7280,190,3.1,3,3,16,77777,9,999999999,9,0.061,0,88,0.2,0,1 -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.6,14,83600,1087,1348,392,779,683,227,93602,52117,27418,11061,140,4.1,3,3,16,77777,9,999999999,9,0.061,0,88,0.2,0,1 -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,95886,56739,15143,6332,190,4.6,3,3,16,77777,9,999999999,9,0.061,0,88,0.2,0,1 -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,68046,85304,13367,2163,240,4.6,3,3,16,77777,9,999999999,10,0.061,0,88,0.2,0,1 -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,59508,48575,10474,4098,170,2.6,3,3,16,77777,9,999999999,11,0.061,0,88,0.2,0,1 -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,32053,70655,7749,1099,100,3.6,6,5,16,77777,9,999999999,11,0.061,0,88,0.2,0,1 -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,11256,0,2935,969,140,5.2,3,3,16,77777,9,999999999,11,0.061,0,88,0.2,0,1 -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,77777,9,999999999,12,0.061,0,88,0.2,0,1 -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,-1.1,24,82800,0,0,328,0,0,0,0,0,0,0,160,5.2,0,0,16,77777,9,999999999,12,0.061,0,88,0.2,0,1 -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,77777,9,999999999,11,0.061,0,88,0.2,0,1 -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,77777,9,999999999,10,0.061,0,88,0.2,0,1 -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,77777,9,999999999,9,0.061,0,88,0.2,0,1 -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,2.2,31,83200,0,0,332,0,0,0,0,0,0,0,220,5.7,0,0,16,77777,9,999999999,9,0.061,0,88,0.2,0,1 -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,1.7,30,83100,0,0,332,0,0,0,0,0,0,0,220,6.7,0,0,16,77777,9,999999999,8,0.06,0,88,0.2,0,1 -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,1.1,28,83000,0,0,331,0,0,0,0,0,0,0,210,6.7,0,0,16,77777,9,999999999,7,0.06,0,88,0.2,0,1 -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,77777,9,999999999,7,0.06,0,88,0.2,0,1 -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,77777,9,999999999,7,0.06,0,88,0.2,0,1 -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,77777,9,999999999,7,0.06,0,88,0.2,0,1 -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.6,37,83200,17,506,308,0,0,0,0,0,0,0,220,3.6,0,0,16,77777,9,999999999,7,0.06,0,88,0.2,0,1 -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,17182,14169,8187,2291,210,4.6,5,5,16,77777,9,999999999,7,0.06,0,88,0.2,0,1 -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,38936,36003,7973,2917,210,5.2,0,0,16,77777,9,999999999,8,0.06,0,88,0.2,0,1 -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,-1.1,18,83800,710,1348,351,512,768,106,61442,48974,12763,4983,190,2.1,0,0,16,77777,9,999999999,8,0.06,0,88,0.2,0,1 -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,74966,49858,21158,8420,160,3.1,0,0,16,77777,9,999999999,8,0.06,0,88,0.2,0,1 -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,93859,55927,19762,8164,140,7.2,0,0,16,77777,9,999999999,9,0.06,0,88,0.2,0,1 -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,90107,95819,12342,3090,110,4.1,0,0,16,77777,9,999999999,9,0.06,0,88,0.2,0,1 -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,-3.9,10,83800,1083,1348,388,838,947,77,88620,96076,10554,2744,110,3.1,3,3,16,77777,9,999999999,10,0.06,0,88,0.2,0,1 -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,82969,94847,11620,2526,120,1.5,3,3,16,77777,9,999999999,11,0.06,0,88,0.2,0,1 -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,69923,90030,12047,2073,120,3.6,4,4,16,77777,9,999999999,12,0.06,0,88,0.2,0,1 -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,60493,49586,9557,3746,160,6.7,5,5,16,77777,9,999999999,13,0.06,0,88,0.2,0,1 -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,-3.9,10,82900,438,1348,394,290,689,65,34230,32604,7691,2767,100,7.7,5,5,16,77777,9,999999999,13,0.06,0,88,0.2,0,1 -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,9300,0,3144,1026,100,4.6,7,6,16,77777,9,999999999,14,0.06,0,88,0.2,0,1 -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,77777,9,999999999,15,0.06,0,88,0.2,0,1 -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,77777,9,999999999,15,0.06,0,88,0.2,0,1 -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,6706,9,999999999,15,0.06,0,88,0.2,0,1 -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,6706,9,999999999,15,0.06,0,88,0.2,0,1 -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,6706,9,999999999,15,0.06,0,88,0.2,0,1 -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,77777,9,999999999,14,0.06,0,88,0.2,0,1 -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,77777,9,999999999,14,0.06,0,88,0.2,0,1 -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,77777,9,999999999,13,0.06,0,88,0.2,0,1 -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,77777,9,999999999,13,0.06,0,88,0.2,0,1 -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,77777,9,999999999,13,0.06,0,88,0.2,0,1 -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,77777,9,999999999,13,0.06,0,88,0.2,0,1 -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,48,83000,16,483,302,0,0,0,0,0,0,0,170,4.6,3,3,16,77777,9,999999999,12,0.06,0,88,0.2,0,1 -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,15287,10097,7063,2072,160,2.6,3,3,16,77777,9,999999999,11,0.06,0,88,0.2,0,1 -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,37829,34825,8508,3092,120,3.6,3,3,16,77777,9,999999999,10,0.06,0,88,0.2,0,1 -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,61487,48671,12410,4851,170,2.6,3,3,16,77777,9,999999999,10,0.06,0,88,0.2,0,1 -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,79204,52838,15435,6303,220,3.6,3,3,16,77777,9,999999999,9,0.06,0,88,0.2,0,1 -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,91938,54779,18958,7846,0,0,5,5,16,77777,9,999999999,9,0.06,0,88,0.2,0,1 -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,11,83600,1084,1349,370,831,884,119,86659,89335,15895,3504,0,0,3,3,16,77777,9,999999999,9,0.06,0,88,0.2,0,1 -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,98847,56687,18557,7724,320,1.5,3,3,16,77777,9,999999999,9,0.06,0,88,0.2,0,1 -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,80619,89941,14727,2803,280,1.5,4,4,16,77777,9,999999999,10,0.06,0,88,0.2,0,1 -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,-11.7,5,83500,862,1349,376,652,819,127,79336,56704,15511,6278,240,3.6,3,3,16,77777,9,999999999,10,0.06,0,88,0.2,0,1 -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,6,83500,667,1349,382,440,557,164,50758,41776,19002,6914,310,3.1,3,3,16,77777,9,999999999,10,0.06,0,88,0.2,0,1 -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,11,82800,431,1349,378,294,529,124,32911,32986,13938,4509,10,5.2,5,5,16,77777,9,999999999,11,0.06,0,88,0.2,0,1 -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,1370,0,1380,570,10,5.2,3,3,16,77777,9,999999999,11,0.06,0,88,0.2,0,1 -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,77777,9,999999999,11,0.06,0,88,0.2,0,1 -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,4267,9,999999999,11,0.06,0,88,0.2,0,1 -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,77777,9,999999999,11,0.06,0,88,0.2,0,1 -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,77777,9,999999999,11,0.06,0,88,0.2,0,1 -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,77777,9,999999999,11,0.06,0,88,0.2,0,1 -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,43,83300,0,0,313,0,0,0,0,0,0,0,120,2.6,5,5,16,77777,9,999999999,11,0.06,0,88,0.2,0,1 -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,77777,9,999999999,11,0.059,0,88,0.2,0,1 -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,77777,9,999999999,12,0.059,0,88,0.2,0,1 -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,77777,9,999999999,11,0.059,0,88,0.2,0,1 -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,35,83200,0,0,283,0,0,0,0,0,0,0,120,5.2,1,1,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 -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,77777,9,999999999,11,0.059,0,88,0.2,0,1 -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,3658,9,999999999,11,0.059,0,88,0.2,0,1 -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,13365,6444,5518,1718,110,5.7,9,9,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 -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,28587,21839,15926,5150,100,5.7,10,10,16,3048,9,999999999,11,0.059,0,88,0.2,0,1 -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,27170,3068,25035,8704,70,5.2,6,6,16,6706,9,999999999,12,0.059,0,88,0.2,0,1 -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,-3.9,26,83900,888,1350,324,465,243,305,52978,22051,34955,12483,90,6.2,6,6,16,77777,9,999999999,12,0.059,0,88,0.2,0,1 -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,87038,52447,26928,10746,90,5.7,6,6,16,77777,9,999999999,12,0.059,0,88,0.2,0,1 -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,97156,55459,21758,8971,120,5.2,7,7,16,77777,9,999999999,12,0.059,0,88,0.2,0,1 -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,85906,90964,14035,3208,60,2.6,8,7,16,77777,9,999999999,12,0.059,0,88,0.2,0,1 -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,-3.9,19,83400,996,1350,347,739,806,143,90819,55676,17645,7309,0,0,7,6,16,7620,9,999999999,12,0.059,0,88,0.2,0,1 -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,76834,55559,21817,8527,30,5.7,9,9,16,3048,9,999999999,13,0.059,0,88,0.2,0,1 -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,31059,8868,25361,8517,70,6.2,8,7,16,4267,9,999999999,14,0.059,0,88,0.2,0,1 -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,6397,0,6447,2701,80,3.6,7,7,16,2591,9,999999999,14,0.059,0,88,0.2,0,1 -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,1660,0,1671,675,60,4.6,10,9,16,2591,9,999999999,14,0.059,0,88,0.2,0,1 -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,2743,9,999999999,14,0.059,0,88,0.2,0,1 -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,3353,9,999999999,13,0.059,0,88,0.2,0,1 -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,3353,9,999999999,13,0.059,0,88,0.2,0,1 -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,2134,9,999999999,13,0.059,0,88,0.2,0,1 -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,6.7,80,83700,0,0,317,0,0,0,0,0,0,0,40,3.6,7,7,16,2438,9,999999999,13,0.059,0,88,0.2,0,1 -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,2134,9,999999999,13,0.059,0,88,0.2,0,1 -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,1341,9,999999999,12,0.059,0,88,0.2,0,1 -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,2896,9,999999999,12,0.059,0,88,0.2,0,1 -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,77777,9,999999999,13,0.059,0,88,0.2,0,1 -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,77777,9,999999999,14,0.059,0,88,0.2,0,1 -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,77777,9,999999999,14,0.059,0,88,0.2,0,1 -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,77777,9,999999999,14,0.059,0,88,0.2,0,1 -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,15678,9954,6931,2014,180,8.2,0,0,16,77777,9,999999999,13,0.059,0,88,0.2,0,1 -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,2.8,44,83500,469,1351,324,345,789,70,40662,38058,8272,3002,190,12.4,3,3,16,77777,9,999999999,13,0.059,0,88,0.2,0,1 -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,65445,51780,10594,4168,180,10.3,3,3,16,77777,9,999999999,13,0.059,0,88,0.2,0,1 -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,78019,52477,18321,7377,190,8.2,3,3,16,77777,9,999999999,13,0.059,0,88,0.2,0,1 -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,90365,53078,18222,7560,170,10.8,5,5,16,77777,9,999999999,13,0.059,0,88,0.2,0,1 -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,96138,53974,21940,9049,160,8.2,7,6,16,5486,9,999999999,14,0.059,0,88,0.2,0,1 -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,95685,55057,31200,12315,220,4.6,7,5,16,3962,9,999999999,14,0.059,0,88,0.2,0,1 -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,15175,0,15319,7384,290,8.8,9,7,16,4877,9,999999999,15,0.059,0,88,0.2,0,1 -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,4,54,83600,850,1351,340,102,0,102,10546,0,10642,5149,210,10.8,10,9,16.1,2400,9,999999999,15,0.059,0,88,0.2,0,1 -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,2.8,44,83700,654,1351,349,76,0,76,7734,0,7800,3623,220,5.2,10,9,16,2743,9,999999999,15,0.059,0,88,0.2,0,1 -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,5,51,83400,417,1351,344,138,57,121,15379,3306,13540,4358,250,4.6,8,8,16,3962,9,999999999,16,0.059,0,88,0.2,0,1 -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,57,83600,157,1351,319,61,198,38,6807,0,4251,1293,240,6.2,3,3,16,77777,9,999999999,15,0.059,0,88,0.2,0,1 -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,77777,9,999999999,15,0.059,0,88,0.2,0,1 -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,80,83500,0,0,297,0,0,0,0,0,0,0,180,3.6,3,3,16,6706,9,999999999,14,0.059,0,88,0.2,0,1 -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,68,83500,0,0,312,0,0,0,0,0,0,0,210,5.2,5,5,16,77777,9,999999999,13,0.059,0,88,0.2,0,1 -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,74,83500,0,0,307,0,0,0,0,0,0,0,230,4.6,5,5,16,77777,9,999999999,12,0.059,0,88,0.2,0,1 -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,5,71,83500,0,0,304,0,0,0,0,0,0,0,220,5.7,3,3,16,77777,9,999999999,12,0.059,0,88,0.2,0.3,1 -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,3.9,66,83500,0,0,291,0,0,0,0,0,0,0,210,5.2,0,0,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 -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,3.3,63,83500,0,0,290,0,0,0,0,0,0,0,220,5.7,0,0,16,77777,9,999999999,10,0.058,0,88,0.2,0,1 -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,77777,9,999999999,10,0.058,0,88,0.2,0,1 -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,77777,9,999999999,10,0.058,0,88,0.2,0,1 -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,77777,9,999999999,9,0.058,0,88,0.2,0,1 -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,54,83700,0,0,282,0,0,0,0,0,0,0,220,5.2,0,0,16,77777,9,999999999,9,0.058,0,88,0.2,0,1 -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,58,83700,12,417,278,0,0,0,0,0,0,0,230,6.2,0,0,16,77777,9,999999999,9,0.058,0,88,0.2,0,1 -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,46,83900,209,1351,291,134,458,63,14679,9216,6926,1995,230,6.7,0,0,16,77777,9,999999999,8,0.058,0,88,0.2,0,1 -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,36101,33850,9139,3275,220,6.7,0,0,16,77777,9,999999999,8,0.058,0,88,0.2,0,1 -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,57300,45984,13056,5056,220,4.6,0,0,16,77777,9,999999999,8,0.058,0,88,0.2,0,1 -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,17,84400,880,1351,326,618,711,154,74190,50903,18565,7444,250,2.6,0,0,16,77777,9,999999999,8,0.058,0,88,0.2,0,1 -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,87448,53304,20523,8420,270,2.6,3,3,16,77777,9,999999999,8,0.058,0,88,0.2,0,1 -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,84446,87338,16694,3425,210,3.1,3,3,16,77777,9,999999999,8,0.058,0,88,0.2,0,1 -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,83968,90191,13424,3052,140,3.6,3,3,16,77777,9,999999999,8,0.058,0,88,0.2,0,1 -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,78579,90147,13230,2590,110,3.1,3,3,16,77777,9,999999999,9,0.058,0,88,0.2,0,1 -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,-7.2,10,84200,844,1351,358,633,854,99,78191,55354,12267,5000,140,3.6,3,3,16,77777,9,999999999,9,0.058,0,88,0.2,0,1 -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,-7.2,10,84200,648,1351,358,465,797,83,56312,48140,10079,3903,120,4.1,3,3,16,77777,9,999999999,10,0.058,0,88,0.2,0,1 -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,32533,30134,5773,2085,130,5.7,2,2,16,77777,9,999999999,10,0.058,0,88,0.2,0,1 -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,7488,31685,3285,462,120,4.1,3,3,16,77777,9,999999999,10,0.058,0,88,0.2,0,1 -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,77777,9,999999999,10,0.058,0,88,0.2,0,1 -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,77777,9,999999999,10,0.058,0,88,0.2,0,1 -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,77777,9,999999999,10,0.058,0,88,0.2,0,1 -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,34,83800,0,0,310,0,0,0,0,0,0,0,170,8.2,0,0,16,77777,9,999999999,9,0.058,0,88,0.2,0,1 -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,40,83700,0,0,300,0,0,0,0,0,0,0,170,6.2,0,0,16,77777,9,999999999,9,0.058,0,88,0.2,0,1 -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,77777,9,999999999,9,0.058,0,88,0.2,0,1 -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,77777,9,999999999,9,0.058,0,88,0.2,0,1 -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,2.2,58,83600,0,0,289,0,0,0,0,0,0,0,190,3.6,0,0,16,77777,9,999999999,8,0.058,0,88,0.2,0,1 -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,77777,9,999999999,8,0.058,0,88,0.2,0,1 -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,77777,9,999999999,8,0.058,0,88,0.2,0,1 -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,77777,9,999999999,8,0.058,0,88,0.2,0,1 -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,44,83600,11,394,314,0,0,0,0,0,0,0,230,5.2,7,6,16,77777,9,999999999,8,0.058,0,88,0.2,0,1 -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,12842,4394,4970,1554,220,6.2,8,6,16,6706,9,999999999,8,0.058,0,88,0.2,0,1 -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,31860,27955,16280,5155,240,5.2,9,5,16,6706,9,999999999,8,0.058,0,88,0.2,0,1 -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,29299,5680,25487,8725,240,3.1,9,5,16,6706,9,999999999,9,0.058,0,88,0.2,0,1 -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,48275,14750,36968,12837,200,2.1,8,5,16,6706,9,999999999,9,0.058,0,88,0.2,0,1 -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,13,83600,1003,1352,364,496,181,361,56791,17048,41597,14957,170,2.1,6,5,16,6706,9,999999999,9,0.058,0,88,0.2,0,1 -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,-5.6,12,84200,1065,1352,374,242,12,233,28945,943,28015,11223,150,2.1,7,7,16,6706,9,999999999,10,0.058,0,88,0.2,0,1 -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,37549,1565,36125,13795,120,2.1,6,6,16,6706,9,999999999,10,0.058,0,88,0.2,0,1 -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,53965,16168,39775,14358,90,3.6,4,4,16,6706,9,999999999,10,0.058,0,88,0.2,0,1 -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,69369,49805,21213,8256,110,5.2,3,3,16,77777,9,999999999,11,0.058,0,88,0.2,0,1 -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,55931,47380,9163,3555,110,6.2,7,7,16,77777,9,999999999,12,0.058,0,88,0.2,0,1 -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,29601,29344,13009,4161,110,5.7,6,5,16,77777,9,999999999,13,0.058,0,88,0.2,0,1 -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,976,0,982,407,50,4.6,6,5,16,77777,9,999999999,12,0.058,0,88,0.2,0,1 -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,77777,9,999999999,12,0.058,0,88,0.2,0,1 -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,77777,9,999999999,11,0.058,0,88,0.2,0,1 -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,-2.2,22,83400,0,0,341,0,0,0,0,0,0,0,330,4.1,3,3,16,77777,9,999999999,10,0.058,0,88,0.2,0,1 -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,77777,9,999999999,10,0.058,0,88,0.2,0,1 -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,77777,9,999999999,9,0.058,0,88,0.2,0,1 -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,-2.2,30,83300,0,0,318,0,0,0,0,0,0,0,260,2.1,3,3,16,77777,9,999999999,9,0.058,0,88,0.2,0,1 -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,77777,9,999999999,8,0.058,0,88,0.2,0,1 -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,77777,9,999999999,8,0.058,0,88,0.2,0,1 -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,77777,9,999999999,7,0.058,0,88,0.2,0,1 -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,77777,9,999999999,7,0.058,0,88,0.2,0,1 -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,77777,9,999999999,7,0.058,0,88,0.2,0,1 -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,77777,9,999999999,7,0.058,0,88,0.2,0,1 -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,13912,8532,6705,1918,240,2.6,0,0,16,77777,9,999999999,6,0.058,0,88,0.2,0,1 -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,15,83200,457,1353,333,318,759,60,37889,35790,7165,2607,180,3.6,0,0,16,77777,9,999999999,6,0.058,0,88,0.2,0,1 -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,-7.8,10,83700,687,1353,354,467,658,132,54919,45598,15583,5896,220,3.1,2,2,16,77777,9,999999999,6,0.058,0,88,0.2,0,1 -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,72706,95610,10433,1937,200,2.6,3,3,16,77777,9,999999999,6,0.058,0,88,0.2,0,1 -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,84274,98653,10462,2316,170,4.1,2,2,16,77777,9,999999999,6,0.058,0,88,0.2,0,1 -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,89964,99593,10989,2677,190,1.5,0,0,16,77777,9,999999999,7,0.058,0,88,0.2,0,1 -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,87967,99189,9179,2318,200,4.6,3,3,16,77777,9,999999999,7,0.058,0,88,0.2,0,1 -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,79242,93629,11688,2384,270,1.5,3,3,16,77777,9,999999999,7,0.058,0,88,0.2,0,1 -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,66019,89346,10767,1884,340,3.6,3,3,16,77777,9,999999999,8,0.058,0,88,0.2,0,1 -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,-11.7,5,83700,634,1353,376,464,843,68,48914,82198,10121,1479,30,5.2,3,3,16,77777,9,999999999,8,0.058,0,88,0.2,0,1 -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,31578,29597,5533,1988,30,6.2,6,5,16,77777,9,999999999,8,0.058,0,88,0.2,0,1 -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,6874,0,2333,750,20,4.6,3,3,16,77777,9,999999999,8,0.058,0,88,0.2,0,1 -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,77777,9,999999999,8,0.058,0,88,0.2,0,1 -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,77777,9,999999999,8,0.058,0,88,0.2,0,1 -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,-7.2,14,83400,0,0,321,0,0,0,0,0,0,0,330,5.7,0,0,16,77777,9,999999999,8,0.058,0,88,0.2,0,1 -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,77777,9,999999999,8,0.058,0,88,0.2,0,1 -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,-6.7,20,83200,0,0,300,0,0,0,0,0,0,0,20,4.6,0,0,16,77777,9,999999999,7,0.058,0,88,0.2,0,1 -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,77777,9,999999999,7,0.058,0,88,0.2,0,1 -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,28,83200,0,0,300,0,0,0,0,0,0,0,250,3.6,2,2,16,77777,9,999999999,7,0.058,0,88,0.2,0,1 -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,77777,9,999999999,7,0.058,0,88,0.2,0,1 -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,6706,9,999999999,7,0.058,0,88,0.2,0,1 -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,6706,9,999999999,8,0.058,0,88,0.2,0,1 -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.6,52,83400,0,0,293,0,0,0,0,0,0,0,250,3.6,1,1,16,77777,9,999999999,8,0.058,0,88,0.2,0,1 -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,6706,9,999999999,8,0.058,0,88,0.2,0,1 -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,14175,8212,6784,1915,350,1.5,0,0,16,77777,9,999999999,8,0.058,0,88,0.2,0,1 -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,33608,31037,11966,4086,40,2.6,1,1,16,77777,9,999999999,8,0.058,0,88,0.2,0,1 -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,55338,43292,13766,5288,50,2.1,1,1,16,7620,9,999999999,8,0.058,0,88,0.2,0,1 -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,75147,50059,17022,6867,60,3.6,6,6,16,7620,9,999999999,8,0.058,0,88,0.2,0,1 -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,35,83500,994,1354,358,775,857,143,94933,56862,17589,7294,80,2.6,6,4,16,7620,9,999999999,9,0.058,0,88,0.2,0,1 -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,82468,44329,30339,12006,90,3.1,7,5,16,7620,9,999999999,9,0.058,0,88,0.2,0,1 -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,87643,50111,25339,10264,60,4.6,5,5,16,7620,9,999999999,9,0.058,0,88,0.2,0,1 -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,61343,26717,37099,13611,80,5.2,4,4,16,77777,9,999999999,9,0.058,0,88,0.2,0,1 -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,71958,52314,18065,7142,90,7.2,7,6,16,77777,9,999999999,9,0.058,0,88,0.2,0,1 -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,54168,45772,9356,3612,60,6.7,8,7,16,77777,9,999999999,10,0.058,0,88,0.2,0,1 -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,28985,25783,5736,2053,60,6.2,6,5,16,77777,9,999999999,10,0.058,0,88,0.2,0,1 -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,6579,0,2428,773,40,5.2,6,5,16,77777,9,999999999,10,0.058,0,88,0.2,0,1 -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,77777,9,999999999,10,0.058,0,88,0.2,0,1 -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,77777,9,999999999,10,0.058,0,88,0.2,0,1 -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,77777,9,999999999,9,0.058,0,88,0.2,0,1 -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,65,83700,0,0,345,0,0,0,0,0,0,0,60,4.6,6,5,16,77777,9,999999999,9,0.058,0,88,0.2,0,1 -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,77777,9,999999999,8,0.058,0,88,0.2,0,1 -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,77777,9,999999999,8,0.058,0,88,0.2,0,1 -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,77777,9,999999999,7,0.058,0,88,0.2,0,1 -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,6706,9,999999999,7,0.058,0,88,0.2,0,1 -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,77777,9,999999999,8,0.058,0,88,0.2,0,1 -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,77777,9,999999999,9,0.058,0,88,0.2,0,1 -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,4.4,68,83900,0,0,309,0,0,0,0,0,0,0,350,2.6,9,5,16,77777,9,999999999,10,0.058,0,88,0.2,0,1 -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,8.9,93,83900,7,350,341,0,0,0,0,0,0,0,0,0,10,10,0.2,61,9,999999999,10,0.058,0,88,0.2,0,1 -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,9216,1872,5944,1745,0,0,10,10,0.4,30,9,999999999,9,0.058,0,88,0.2,0,1 -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,8165,0,8231,3363,250,2.6,10,10,0.4,152,9,999999999,9,0.058,0,88,0.2,0,1 -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,28433,4847,25096,8566,190,2.1,9,5,9.6,77777,9,999999999,9,0.058,0,88,0.2,0,1 -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,73275,48508,22383,8750,130,2.1,4,3,16,77777,9,999999999,8,0.058,0,88,0.2,0,1 -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,89932,53458,16551,6879,50,3.6,0,0,16,77777,9,999999999,7,0.058,0,88,0.2,0,1 -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,82882,87460,16029,3193,60,2.6,0,0,16,77777,9,999999999,7,0.058,0,88,0.2,0,1 -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,81588,86229,16431,3150,100,4.1,0,0,16,77777,9,999999999,7,0.058,0,88,0.2,0,1 -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,78624,91528,14210,2543,70,2.1,0,0,16,77777,9,999999999,7,0.058,0,88,0.2,0,1 -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,65647,90281,10663,1846,0,0,4,2,16,77777,9,999999999,7,0.058,0,88,0.2,0,1 -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,54960,47296,8899,3433,70,2.6,4,3,16,77777,9,999999999,7,0.058,0,88,0.2,0,1 -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,11,84000,382,1354,366,237,641,55,27939,25800,6498,2296,90,3.1,4,2,16,77777,9,999999999,7,0.058,0,88,0.2,0,1 -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,6094,0,2419,763,90,2.6,0,0,16,77777,9,999999999,7,0.058,0,88,0.2,0,1 -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,77777,9,999999999,7,0.058,0,88,0.2,0,1 -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,77777,9,999999999,7,0.058,0,88,0.2,0,1 -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,77777,9,999999999,6,0.058,0,88,0.2,0,1 -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,77777,9,999999999,6,0.058,0,88,0.2,0,1 -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,77777,9,999999999,6,0.058,0,88,0.2,0,1 -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,46,84300,0,0,331,0,0,0,0,0,0,0,240,3.6,3,2,16,77777,9,999999999,6,0.058,0,88,0.2,0,1 -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,5,51,84200,0,0,323,0,0,0,0,0,0,0,210,4.6,2,2,16,77777,9,999999999,6,0.058,0,88,0.2,0,1 -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,1,1,16,77777,9,999999999,6,0.058,0,88,0.2,0,1 -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,77777,9,999999999,6,0.058,0,88,0.2,0,1 -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,77777,9,999999999,6,0.058,0,88,0.2,0,1 -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,77777,9,999999999,7,0.058,0,88,0.2,0,1 -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,77777,9,999999999,7,0.058,0,88,0.2,0,1 -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,13371,6853,6655,1855,240,2.1,0,0,16,77777,9,999999999,7,0.058,0,88,0.2,0,1 -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.6,27,84200,445,1355,330,298,672,76,34709,32874,8878,3151,240,5.7,0,0,16,77777,9,999999999,7,0.058,0,88,0.2,0,1 -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,21,84800,674,1355,351,468,696,121,55188,45642,14321,5446,240,4.1,1,1,16,77777,9,999999999,7,0.058,0,88,0.2,0,1 -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,74718,52355,16480,6631,150,2.1,2,2,16,77777,9,999999999,7,0.058,0,88,0.2,0,1 -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,83524,52189,22247,9013,150,2.1,4,3,16,77777,9,999999999,8,0.058,0,88,0.2,0,1 -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,90832,54126,24032,9772,160,2.1,4,4,16,77777,9,999999999,8,0.058,0,88,0.2,0,1 -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,83129,48582,26689,10697,160,3.1,4,4,16,7620,9,999999999,9,0.058,0,88,0.2,0,1 -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,6,84000,956,1355,384,731,841,136,89696,58605,16753,6899,160,5.2,2,2,16,7620,9,999999999,9,0.058,0,88,0.2,0,1 -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,71715,52746,12892,5197,130,4.1,2,2,16,7620,9,999999999,9,0.058,0,88,0.2,0,1 -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,-9.4,6,84700,614,1355,380,419,561,164,47812,42029,18797,6606,110,3.6,3,3,16,6706,9,999999999,10,0.058,0,88,0.2,0,1 -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,13961,3693,11885,3771,130,4.6,8,8,16,6706,9,999999999,10,0.058,0,88,0.2,0,1 -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,1948,0,1961,724,140,4.1,7,6,16,6706,9,999999999,10,0.058,0,88,0.2,0,1 -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,17,84300,0,0,343,0,0,0,0,0,0,0,150,4.1,6,4,16,6706,9,999999999,11,0.058,0,88,0.2,0,1 -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,3962,9,999999999,11,0.058,0,88,0.2,0,1 -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,6706,9,999999999,12,0.058,0,88,0.2,0,1 -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,77777,9,999999999,14,0.058,0,88,0.2,0,1 -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,77777,9,999999999,15,0.058,0,88,0.2,0,1 -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,77777,9,999999999,16,0.058,0,88,0.2,0,1 -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,6096,9,999999999,17,0.057,0,88,0.2,0,1 -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,6096,9,999999999,17,0.057,0,88,0.2,0,1 -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,77777,9,999999999,17,0.057,0,88,0.2,0,1 -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,77777,9,999999999,17,0.057,0,88,0.2,0,1 -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,6096,9,999999999,17,0.057,0,88,0.2,0,1 -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,-2.2,22,83900,6,305,349,0,0,0,0,0,0,0,210,5.2,8,6,16,6096,9,999999999,17,0.057,0,88,0.2,0,1 -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,9530,3146,6848,1863,200,6.2,5,4,16,3962,9,999999999,17,0.057,0,88,0.2,0,1 -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,19740,6485,16396,5041,220,7.7,3,3,16,4877,9,999999999,17,0.057,0,88,0.2,0,1 -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,53963,44583,18838,6858,220,6.7,3,3,16,77777,9,999999999,17,0.057,0,88,0.2,0,1 -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,70177,48104,20769,8155,210,6.2,10,6,16,6096,9,999999999,17,0.057,0,88,0.2,0,1 -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,48963,10964,39139,14196,200,8.2,10,6,16,4877,9,999999999,17,0.057,0,88,0.2,0,1 -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,26757,453,26415,10632,180,7.2,10,6,16,4877,9,999999999,17,0.057,0,88,0.2,0,1 -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,23720,0,23947,10829,180,5.2,10,7,16,3900,9,999999999,18,0.057,0,88,0.2,0,1 -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,15706,0,15854,7537,260,10.3,10,9,6.4,3353,9,999999999,18,0.057,0,88,0.2,0,1 -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,9873,0,9962,4785,320,5.2,10,7,16,3962,9,999999999,19,0.057,0,88,0.2,0,1 -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,27564,7694,22657,7525,310,4.1,9,7,16,3962,9,999999999,20,0.057,0,88,0.2,0,1 -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,16465,8214,11615,3686,10,1.5,9,7,16,4877,9,999999999,20,0.057,0,88,0.2,0,1 -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,29,83800,109,1254,382,8,0,8,776,0,781,320,0,0,9,7,16,3962,9,999999999,20,0.057,0,88,0.2,0,1 -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,3048,9,999999999,19,0.057,0,88,0.2,0,1 -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,3048,9,999999999,19,0.057,0,88,0.2,0,1 -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,3600,9,999999999,20,0.057,0,88,0.2,0,1 -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,3962,9,999999999,21,0.057,0,88,0.2,0,1 -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,69,83600,0,0,347,0,0,0,0,0,0,0,60,2.6,9,7,16,6096,9,999999999,23,0.057,0,88,0.2,0,1 -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,2896,9,999999999,23,0.057,0,88,0.2,0,1 -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,2743,9,999999999,23,0.057,0,88,0.2,0,1 -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,75,83600,0,0,354,0,0,0,0,0,0,0,170,4.1,10,9,16,2896,9,999999999,23,0.057,0,88,0.2,0,1 -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,10,72,83600,0,0,344,0,0,0,0,0,0,0,170,5.7,9,7,16,3962,9,999999999,21,0.057,0,88,0.2,0,1 -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,75,83600,0,0,364,0,0,0,0,0,0,0,140,3.6,10,10,16,4267,9,999999999,20,0.057,0,88,0.2,0,1 -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,4572,9,999999999,18,0.057,0,88,0.2,0,1 -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,4267,9,999999999,17,0.057,0,88,0.2,0,1 -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,83,83700,180,1357,330,64,16,62,6895,180,6705,1824,90,5.2,7,6,16,4267,9,999999999,16,0.057,0,88,0.2,0,1 -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,10.6,75,83700,437,1357,335,172,83,145,18893,5134,16001,4950,90,6.2,4,4,16,4267,9,999999999,16,0.057,0,88,0.2,0,1 -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,69,84000,666,1357,353,476,616,172,54292,43112,19710,7107,90,6.2,8,8,16,396,9,999999999,15,0.057,0,88,0.2,0,1 -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,61527,36698,27584,10302,50,6.2,8,8,16,1524,9,999999999,15,0.057,0,88,0.2,0,1 -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,65265,29484,37097,13668,60,5.7,8,8,16,1524,9,999999999,15,0.057,0,88,0.2,0,1 -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,92556,52426,23434,9577,60,5.7,9,8,16,1524,9,999999999,16,0.057,0,88,0.2,0,1 -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,85144,47927,27181,10881,50,4.6,9,8,16,1524,9,999999999,17,0.057,0,88,0.2,0,1 -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,47598,11082,37811,13632,70,5.7,8,8,16,1981,9,999999999,18,0.057,0,88,0.2,0,1 -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,23539,895,22838,8648,40,7.7,8,8,16,2438,9,999999999,19,0.057,0,88,0.2,0,1 -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,8088,0,8156,3677,200,6.2,9,9,16,2100,9,999999999,20,0.057,0,88,0.2,0,1 -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,60,83500,361,1357,364,38,0,38,3758,0,3788,1635,280,6.2,8,8,16,3962,9,999999999,21,0.057,0,88,0.2,0,1 -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,65,83900,102,1210,352,5,0,5,483,0,487,204,260,4.1,7,7,12.8,3658,9,999999999,21,0.057,0,88,0.2,0,1 -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,20,0.057,0,88,0.2,0,1 -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,2,2,16,3962,9,999999999,19,0.057,0,88,0.2,0,1 -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,6096,9,999999999,18,0.057,0,88,0.2,0,1 -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,5,5,16,77777,9,999999999,17,0.057,0,88,0.2,0,1 -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,77777,9,999999999,17,0.057,0,88,0.2,0,1 -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,77777,9,999999999,16,0.057,0,88,0.2,0,1 -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,6.7,80,83400,0,0,294,0,0,0,0,0,0,0,190,3.6,0,0,16,77777,9,999999999,16,0.058,0,88,0.2,0,1 -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,77777,9,999999999,15,0.058,0,88,0.2,0,1 -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,77777,9,999999999,15,0.058,0,88,0.2,0,1 -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,77777,9,999999999,15,0.058,0,88,0.2,0,1 -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,6.7,80,83400,0,0,309,0,0,0,0,0,0,0,230,2.6,4,4,16,77777,9,999999999,14,0.058,0,88,0.2,0,1 -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,77777,9,999999999,14,0.058,0,88,0.2,0,1 -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,12753,4598,6400,1755,300,1.5,0,0,16,77777,9,999999999,14,0.058,0,88,0.2,0,1 -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,33180,30917,10947,3738,0,0,5,5,16,77777,9,999999999,13,0.058,0,88,0.2,0,1 -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,53369,42967,14686,5543,360,2.1,3,3,16,77777,9,999999999,13,0.058,0,88,0.2,0,1 -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,69296,46904,17846,7113,0,0,5,5,16,77777,9,999999999,13,0.058,0,88,0.2,0,1 -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,30,83300,971,1357,379,707,779,148,86057,52302,18090,7453,60,2.1,7,7,16,77777,9,999999999,13,0.058,0,88,0.2,0,1 -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,89797,52431,20995,8641,110,3.1,5,5,16,6706,9,999999999,14,0.058,0,88,0.2,0,1 -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,88956,53506,26897,10744,0,0,7,6,16,6706,9,999999999,15,0.058,0,88,0.2,0,1 -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,40663,6740,34664,12769,50,2.1,8,7,16,6706,9,999999999,16,0.058,0,88,0.2,0,1 -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,40589,12063,31751,10976,90,5.7,6,5,16,6706,9,999999999,17,0.058,0,88,0.2,0,1 -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,28515,8085,23756,7635,80,6.2,7,7,16,6706,9,999999999,17,0.058,0,88,0.2,0,1 -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,17914,11595,11169,3518,80,7.7,9,9,16,6706,9,999999999,17,0.058,0,88,0.2,0,1 -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,3785,0,2678,792,0,0,7,6,16,6706,9,999999999,17,0.058,0,88,0.2,0,1 -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,2.2,31,83300,0,0,349,0,0,0,0,0,0,0,160,4.6,4,4,16,6706,9,999999999,16,0.058,0,88,0.2,0,1 -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,4572,9,999999999,16,0.058,0,88,0.2,0,1 -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,43,83300,0,0,365,0,0,0,0,0,0,0,240,4.6,9,9,16,6706,9,999999999,15,0.058,0,88,0.2,0,1 -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,6706,9,999999999,14,0.058,0,88,0.2,0,1 -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,5,51,83000,0,0,338,0,0,0,0,0,0,0,220,3.6,7,7,16,6706,9,999999999,13,0.058,0,88,0.2,0,1 -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,49,83100,0,0,316,0,0,0,0,0,0,0,260,3.1,0,0,16,77777,9,999999999,13,0.058,0,88,0.2,0,1 -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,77777,9,999999999,12,0.058,0,88,0.2,0,1 -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,77777,9,999999999,12,0.058,0,88,0.2,0,1 -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,6,4,16,6096,9,999999999,12,0.058,0,88,0.2,0,1 -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,3.9,47,83000,0,0,330,0,0,0,0,0,0,0,0,0,10,5,16,6096,9,999999999,13,0.058,0,88,0.2,0,1 -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,9,5,16,6096,9,999999999,13,0.058,0,88,0.2,0,1 -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,4267,9,999999999,12,0.058,0,88,0.2,0,1 -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,1267,0,1276,529,350,2.6,9,5,16,4267,9,999999999,12,0.058,0,88,0.2,0,1 -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,4482,0,4518,1982,10,4.1,9,6,16,4267,9,999999999,12,0.058,0,88,0.2,0,1 -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,10864,0,10957,4861,10,3.1,9,7,16,3962,9,999999999,12,0.058,0,88,0.2,0,1 -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,56481,30155,31484,11272,10,2.1,10,6,16,6096,9,999999999,12,0.058,0,88,0.2,0,1 -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,43044,4772,38847,14030,340,3.6,9,6,16,4267,9,999999999,12,0.058,0,88,0.2,0,1 -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,43060,2634,40686,14904,50,2.6,9,9,16,6096,9,999999999,13,0.058,0,88,0.2,0,1 -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,9.4,50,83400,1014,1358,374,469,156,352,53621,13687,40504,14791,20,3.1,10,8,16,6096,9,999999999,13,0.058,0,88,0.2,0,1 -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,49,83000,932,1358,374,643,620,217,75419,45513,25584,10064,20,2.6,10,7,16,6096,9,999999999,13,0.058,0,88,0.2,0,1 -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,62833,44094,20495,7861,20,3.6,7,6,16,6096,9,999999999,14,0.058,0,88,0.2,0,1 -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,35123,21188,21067,7035,70,3.6,7,6,16,4267,9,999999999,15,0.058,0,88,0.2,0,1 -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,22863,18389,9040,2984,50,3.6,9,8,16,6706,9,999999999,16,0.058,0,88,0.2,0,1 -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,3458,0,1616,510,40,3.1,7,6,16,6706,9,999999999,16,0.058,0,88,0.2,0,1 -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,6706,9,999999999,16,0.058,0,88,0.2,0,1 -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,6706,9,999999999,17,0.058,0,88,0.2,0,1 -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,6706,9,999999999,16,0.058,0,88,0.2,0,1 -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,4267,9,999999999,16,0.058,0,88,0.2,0,1 -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,1128,9,999999999,16,0.058,0,88,0.2,0,1 -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,305,9,999999999,17,0.058,0,88,0.2,0,1 -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,17,0.058,0,88,0.2,0,1 -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,17,0.058,0,88,0.2,0,1 -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,9.4,96,83200,0,0,342,0,0,0,0,0,0,0,10,3.1,10,10,0.8,30,9,999999999,17,0.058,0,88,0.2,0,1 -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,9,100,83200,0,0,337,0,0,0,0,0,0,0,10,3.6,10,10,0.4,30,9,999999999,17,0.058,0,88,0.2,0,1 -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,30,9,999999999,16,0.058,0,88,0.2,0,1 -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,30,9,999999999,15,0.058,0,88,0.2,0,1 -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,8,100,83400,168,1359,331,41,0,41,3990,0,4018,1372,20,2.6,10,10,0,90,9,999999999,14,0.058,0,88,0.2,0,1 -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,5969,0,6016,2541,40,2.6,10,10,3.2,61,9,999999999,13,0.058,0,88,0.2,0,1 -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,8.3,89,83600,653,1359,341,107,0,107,10854,0,10947,4848,0,0,10,10,4.8,61,9,999999999,13,0.058,0,88,0.2,0,1 -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,39174,10195,30833,11072,30,2.6,9,9,16,518,9,999999999,13,0.058,0,88,0.2,0,1 -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,65090,30113,37458,13643,60,2.1,5,5,16,77777,9,999999999,13,0.058,0,88,0.2,0,1 -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,87329,50491,25506,10279,80,2.6,5,5,16,77777,9,999999999,13,0.058,0,88,0.2,0,1 -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,7.2,43,83800,1008,1359,358,747,838,124,92554,52873,15422,6452,110,2.6,5,5,16,77777,9,999999999,13,0.058,0,88,0.2,0,1 -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,84584,51988,13526,5608,90,3.1,4,4,16,77777,9,999999999,14,0.058,0,88,0.2,0,1 -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,64577,46326,14792,5868,50,3.6,4,4,16,77777,9,999999999,14,0.058,0,88,0.2,0,1 -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,50016,42258,8579,3271,100,5.2,5,5,16,77777,9,999999999,14,0.058,0,88,0.2,0,1 -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,24137,19183,5754,2005,50,3.6,5,5,16,77777,9,999999999,14,0.058,0,88,0.2,0,1 -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,44,83800,84,1099,337,22,171,12,2559,0,1397,442,80,3.6,3,3,16,77777,9,999999999,14,0.058,0,88,0.2,0,1 -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,77777,9,999999999,13,0.058,0,88,0.2,0,1 -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,77777,9,999999999,13,0.058,0,88,0.2,0,1 -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,77777,9,999999999,12,0.058,0,88,0.2,0,1 -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,77777,9,999999999,12,0.058,0,88,0.2,0,1 -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,77777,9,999999999,11,0.058,0,88,0.2,0,1 -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,77777,9,999999999,11,0.058,0,88,0.2,0,1 -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,10,0.058,0,88,0.2,0,1 -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,10,0.058,0,88,0.2,0,1 -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,10,0.058,0,88,0.2,0,1 -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,11,0.058,0,88,0.2,0,1 -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,96,84100,0,0,286,0,0,0,0,0,0,0,180,3.6,3,3,12.8,77777,9,999999999,11,0.058,0,88,0.2,0,1 -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,93,84000,2,193,276,0,0,0,0,0,0,0,210,3.1,0,0,14.4,77777,9,999999999,11,0.058,0,88,0.2,0,1 -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,11122,0,4349,1313,180,3.1,3,3,16,77777,9,999999999,10,0.058,0,88,0.2,0,1 -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,36021,32035,6314,2276,130,4.1,4,4,16,77777,9,999999999,10,0.058,0,88,0.2,0,1 -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,34,84500,648,1360,324,464,796,83,56032,46621,10051,3887,120,7.2,3,3,16,77777,9,999999999,10,0.058,0,88,0.2,0,1 -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,70190,49170,15374,6169,140,7.2,1,1,16,77777,9,999999999,9,0.058,0,88,0.2,0,1 -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,81808,50783,18960,7753,130,7.2,0,0,16,77777,9,999999999,9,0.058,0,88,0.2,0,1 -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,93574,54963,16381,6831,110,3.1,0,0,16,77777,9,999999999,9,0.058,0,88,0.2,0,1 -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,19,84600,1002,1360,355,747,874,101,78686,88573,13863,2698,100,2.1,0,0,16,77777,9,999999999,9,0.058,0,88,0.2,0,1 -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,72664,88436,13280,2297,80,3.1,0,0,16,77777,9,999999999,9,0.058,0,88,0.2,0,1 -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,68160,50590,11086,4450,50,1.5,0,0,16,77777,9,999999999,9,0.058,0,88,0.2,0,1 -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,48419,40726,7784,2971,120,6.7,0,0,16,77777,9,999999999,10,0.058,0,88,0.2,0,1 -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,5,28,83700,332,1360,374,200,648,41,23715,17669,4870,1710,160,8.2,4,3,16,77777,9,999999999,10,0.058,0,88,0.2,0,1 -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,2366,0,1065,340,170,4.6,0,0,16,77777,9,999999999,10,0.058,0,88,0.2,0,1 -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,39,84300,0,0,333,0,0,0,0,0,0,0,220,4.1,0,0,16,77777,9,999999999,10,0.058,0,88,0.2,0,1 -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,77777,9,999999999,10,0.058,0,88,0.2,0,1 -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,77777,9,999999999,10,0.058,0,88,0.2,0,1 -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,77777,9,999999999,10,0.058,0,88,0.2,0,1 -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,77777,9,999999999,9,0.058,0,88,0.2,0,1 -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,77777,9,999999999,10,0.058,0,88,0.2,0,1 -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,77777,9,999999999,10,0.058,0,88,0.2,0,1 -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,77777,9,999999999,11,0.058,0,88,0.2,0,1 -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,2.8,44,83600,0,0,311,0,0,0,0,0,0,0,230,5.2,0,0,16,77777,9,999999999,12,0.058,0,88,0.2,0,1 -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,77777,9,999999999,13,0.058,0,88,0.2,0,1 -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,77777,9,999999999,14,0.058,0,88,0.2,0,1 -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,77777,9,999999999,14,0.058,0,88,0.2,0,1 -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,31,83900,159,1361,328,103,309,66,10956,4787,7049,1728,200,3.6,3,2,16,77777,9,999999999,14,0.058,0,88,0.2,0,1 -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,24,83700,416,1361,358,152,110,118,16956,6439,13217,4230,200,4.1,6,6,16,77777,9,999999999,13,0.058,0,88,0.2,0,1 -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,19,84300,644,1361,384,437,562,171,49831,41673,19588,6939,230,4.6,9,7,16,6706,9,999999999,13,0.058,0,88,0.2,0,1 -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,41277,11401,32645,11411,240,5.7,7,6,16,6706,9,999999999,13,0.058,0,88,0.2,0,1 -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,66107,33154,36192,13227,200,4.6,4,4,16,6706,9,999999999,13,0.058,0,88,0.2,0,1 -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.6,14,84200,1009,1361,392,782,847,151,95708,58544,18558,7674,220,5.2,3,3,16,6706,9,999999999,14,0.058,0,88,0.2,0,1 -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,91820,56725,18981,7820,190,1.5,6,5,16,6096,9,999999999,15,0.058,0,88,0.2,0,1 -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,15,83300,914,1361,396,550,369,301,62905,32684,34630,12579,160,5.2,8,5,16,6096,9,999999999,16,0.058,0,88,0.2,0,1 -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,14345,0,14473,6493,170,3.1,9,8,16,3353,9,999999999,17,0.058,0,88,0.2,0,1 -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,39390,29157,22577,7174,170,3.1,10,7,16,4267,9,999999999,17,0.058,0,88,0.2,0,1 -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,12328,3638,10144,3165,170,2.6,9,7,16,3353,9,999999999,17,0.058,0,88,0.2,0.5,1 -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,12,72,83800,73,1032,370,6,0,6,577,0,581,233,330,6.7,10,9,16,2134,9,999999999,19,0.058,0,88,0.2,0,1 -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,3300,9,999999999,20,0.058,0,88,0.2,0.3,1 -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,11.7,81,83500,0,0,359,0,0,0,0,0,0,0,330,6.7,10,9,16,2896,9,999999999,22,0.058,0,88,0.2,0,1 -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,11.1,77,83600,0,0,369,0,0,0,0,0,0,0,230,1.5,10,10,16,3048,9,999999999,22,0.058,0,88,0.2,0,1 -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,2438,9,999999999,23,0.058,0,88,0.2,0,1 -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,11.7,81,83500,0,0,369,0,0,0,0,0,0,0,220,4.6,10,10,16,2591,9,999999999,23,0.058,0,88,0.2,0,1 -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,12.8,87,83400,0,0,361,0,0,0,0,0,0,0,220,5.7,10,9,16,2743,9,999999999,23,0.058,0,88,0.2,0,1 -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,10.6,75,83500,0,0,368,0,0,0,0,0,0,0,230,7.2,10,10,16,2286,9,999999999,23,0.058,0,88,0.2,0,1 -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,75,83500,0,0,364,0,0,0,0,0,0,0,240,4.6,10,10,16,2438,9,999999999,23,0.058,0,88,0.2,0,1 -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,83,83700,0,0,356,0,0,0,0,0,0,0,20,9.3,10,10,16,2134,9,999999999,22,0.058,0,88,0.2,0,1 -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,74,83600,0,0,325,0,0,0,0,0,0,0,20,9.3,10,9,16,1676,9,999999999,22,0.058,0,88,0.2,0,1 -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,77,84100,0,0,322,0,0,0,0,0,0,0,360,6.2,10,9,16,1524,9,999999999,21,0.058,0,88,0.2,0,1 -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,823,9,999999999,20,0.058,0,88,0.2,0.1,1 -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,9667,2853,6827,1677,360,6.2,10,10,16,671,9,999999999,20,0.058,0,88,0.2,0,1 -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,6069,0,6116,2549,360,3.1,10,10,4.8,5182,9,999999999,19,0.058,0,88,0.2,0,1 -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,7507,0,7571,3494,350,4.6,8,8,16,457,9,999999999,19,0.058,0,88,0.2,0,1 -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,5,81,84400,822,1361,327,109,0,109,11230,0,11331,5377,10,5.1,10,10,16.1,600,9,999999999,18,0.058,0,88,0.2,0,1 -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,3.9,66,84400,946,1361,319,279,18,266,32338,1479,31005,11773,30,4.6,8,8,16,1219,9,999999999,17,0.058,0,88,0.2,0,1 -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,43752,4323,39880,14527,40,3.1,8,8,16,732,9,999999999,17,0.058,0,88,0.2,0,1 -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,62598,26450,37790,13912,40,3.1,8,8,16,853,9,999999999,17,0.058,0,88,0.2,0,1 -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,30215,2398,28040,10708,10,3.1,8,8,16,1036,9,999999999,16,0.058,0,88,0.2,0,1 -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,32939,6942,27883,9805,360,1.5,8,8,16,1097,9,999999999,15,0.058,0,88,0.2,0,1 -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,18484,847,18001,6122,100,2.1,8,8,16,1097,9,999999999,14,0.058,0,88,0.2,0,1 -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,9296,436,8991,2870,160,3.1,5,5,16,77777,9,999999999,13,0.058,0,88,0.2,0,1 -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,1726,0,1267,392,150,2.1,4,4,16,77777,9,999999999,12,0.058,0,88,0.2,0,1 -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,77777,9,999999999,12,0.058,0,88,0.2,0,1 -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,77777,9,999999999,12,0.058,0,88,0.2,0,1 -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,77777,9,999999999,12,0.058,0,88,0.2,0,1 -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,2.8,86,84100,0,0,279,0,0,0,0,0,0,0,170,4.1,2,2,16,77777,9,999999999,11,0.058,0,88,0.2,0,1 -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,77777,9,999999999,11,0.058,0,88,0.2,0.4,1 -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,77777,9,999999999,12,0.058,0,88,0.2,0,1 -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,77777,9,999999999,12,0.059,0,88,0.2,0,1 -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,77777,9,999999999,13,0.059,0,88,0.2,0,1 -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,77777,9,999999999,12,0.059,0,88,0.2,0,1 -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,77777,9,999999999,11,0.059,0,88,0.2,0,1 -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,6096,9,999999999,11,0.059,0,88,0.2,0,1 -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,6096,9,999999999,11,0.059,0,88,0.2,0,1 -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,1557,0,1568,625,0,0,4,4,16,6096,9,999999999,11,0.059,0,88,0.2,0,1 -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,14486,2885,12755,4086,270,1.5,4,3,16,6096,9,999999999,11,0.059,0,88,0.2,0,1 -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,47000,33628,26353,8430,0,0,4,2,14.4,6096,9,999999999,12,0.059,0,88,0.2,0,1 -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,17082,0,17236,7648,170,2.6,8,4,16,6096,9,999999999,12,0.059,0,88,0.2,0,1 -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,52252,16796,37685,13524,250,3.1,8,6,16,6096,9,999999999,12,0.059,0,88,0.2,0,1 -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,73623,38917,34934,13174,210,3.1,6,5,16,6096,9,999999999,12,0.059,0,88,0.2,0,1 -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,40743,8855,31843,12213,250,2.6,7,6,16,6096,9,999999999,13,0.059,0,88,0.2,0,1 -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,73032,48078,26427,10168,140,2.1,8,7,16,3962,9,999999999,13,0.059,0,88,0.2,0,1 -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,40429,16388,28728,9944,70,3.1,9,6,16,4267,9,999999999,13,0.059,0,88,0.2,0,1 -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,26899,8826,22028,6946,70,3.1,9,7,16,4267,9,999999999,13,0.059,0,88,0.2,0,1 -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,10121,935,9599,2981,70,3.1,7,7,16,3962,9,999999999,13,0.059,0,88,0.2,0,1 -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,1289,0,938,295,40,3.1,10,6,16,4572,9,999999999,13,0.059,0,88,0.2,0,1 -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,4572,9,999999999,13,0.059,0,88,0.2,0,1 -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,4572,9,999999999,13,0.059,0,88,0.2,0,1 -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,6706,9,999999999,12,0.059,0,88,0.2,0,1 -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,6096,9,999999999,12,0.059,0,88,0.2,0,1 -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,6096,9,999999999,11,0.059,0,88,0.2,0,1 -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,11,0.059,0,88,0.2,0,1 -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,10,0.059,0,88,0.2,0,1 -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,10,0.059,0,88,0.2,0,1 -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,6096,9,999999999,11,0.059,0,88,0.2,0,1 -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,6096,9,999999999,12,0.059,0,88,0.2,0,1 -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,6096,9,999999999,13,0.059,0,88,0.2,0,1 -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,77777,9,999999999,12,0.059,0,88,0.2,0,1 -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,10532,1573,5717,1497,220,5.7,0,0,16,77777,9,999999999,12,0.059,0,88,0.2,0,1 -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,30090,28257,8240,2866,240,5.2,0,0,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 -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,53640,46988,11906,4512,250,4.1,0,0,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 -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,62008,42814,25602,9479,280,2.6,0,0,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 -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,80696,53196,19717,7977,310,1.5,0,0,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 -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,90954,56210,15319,6372,340,3.6,0,0,16,77777,9,999999999,12,0.059,0,88,0.2,0,1 -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,78411,91769,12616,2469,40,5.7,3,3,16,77777,9,999999999,13,0.059,0,88,0.2,0,1 -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,71222,90333,11873,2115,320,3.6,3,3,16,77777,9,999999999,13,0.059,0,88,0.2,0,1 -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,64978,49746,10923,4350,330,3.1,3,3,16,77777,9,999999999,14,0.059,0,88,0.2,0,1 -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,45437,40527,7529,2841,340,3.6,3,3,16,77777,9,999999999,14,0.059,0,88,0.2,0,1 -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,20808,15782,4947,1702,20,3.1,5,5,16,77777,9,999999999,14,0.059,0,88,0.2,0,1 -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,1195,8096,1023,177,360,2.1,0,0,16,77777,9,999999999,14,0.059,0,88,0.2,0,1 -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,77777,9,999999999,14,0.059,0,88,0.2,0,1 -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,77777,9,999999999,14,0.059,0,88,0.2,0,1 -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,-2.8,21,83500,0,0,340,0,0,0,0,0,0,0,50,2.1,3,3,16,77777,9,999999999,14,0.059,0,88,0.2,0,1 -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,77777,9,999999999,14,0.059,0,88,0.2,0,1 -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,77777,9,999999999,14,0.059,0,88,0.2,0,1 -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,40,83100,0,0,320,0,0,0,0,0,0,0,230,3.2,0,0,16,77777,9,999999999,13,0.059,0,88,0.2,0,1 -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,6096,9,999999999,11,0.06,0,88,0.2,0,1 -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,39,83000,0,0,332,0,0,0,0,0,0,0,200,3.9,9,4,16,6096,9,999999999,11,0.06,0,88,0.2,0,1 -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,6096,9,999999999,11,0.06,0,88,0.2,0,1 -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,6096,9,999999999,12,0.06,0,88,0.2,0,1 -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,7620,9,999999999,12,0.06,0,88,0.2,0,1 -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,1.1,39,83100,0,80,322,0,0,0,0,0,0,0,190,5.2,8,3,16,7620,9,999999999,13,0.06,0,88,0.2,0,1 -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,1655,0,1666,652,190,5.2,7,4,16,6706,9,999999999,13,0.06,0,88,0.2,0,1 -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,33328,31002,7151,2520,200,2.6,7,5,16,6706,9,999999999,13,0.06,0,88,0.2,0,1 -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,57432,50994,12213,4611,270,6.2,7,5,16,6096,9,999999999,14,0.06,0,88,0.2,0,1 -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,62958,43377,27685,10030,270,5.7,7,4,16,6706,9,999999999,14,0.06,0,88,0.2,0,1 -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,80728,52664,19119,7753,210,5.2,7,4,16,6706,9,999999999,15,0.06,0,88,0.2,0,1 -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,19,83500,986,1365,371,763,841,153,92954,58356,18718,7703,240,2.6,6,4,16,6706,9,999999999,14,0.06,0,88,0.2,0,1 -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,92224,57244,15138,6289,350,4.1,6,4,16,6706,9,999999999,14,0.06,0,88,0.2,0,1 -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,81272,54182,13240,5437,230,3.6,5,4,16,7315,9,999999999,14,0.06,0,88,0.2,0,1 -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,59245,45828,16911,6500,250,2.1,4,3,16,7315,9,999999999,14,0.06,0,88,0.2,0,1 -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,41591,38585,14148,4993,150,4.1,5,4,16,77777,9,999999999,13,0.06,0,88,0.2,0,1 -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,16207,11490,7790,2505,130,4.1,10,5,16,77777,9,999999999,13,0.06,0,88,0.2,0,1 -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,719,0,599,189,160,3.1,4,3,16,77777,9,999999999,13,0.06,0,88,0.2,0,1 -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,77777,9,999999999,12,0.06,0,88,0.2,0,1 -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,77777,9,999999999,12,0.06,0,88,0.2,0,1 -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,77777,9,999999999,12,0.06,0,88,0.2,0,1 -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,-2.2,22,83200,0,0,346,0,0,0,0,0,0,0,190,2.6,10,5,16,77777,9,999999999,12,0.06,0,88,0.2,0,1 -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,36,83000,0,0,326,0,0,0,0,0,0,0,160,3.6,10,5,16,77777,9,999999999,11,0.06,0,88,0.2,0,1 -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,2.2,42,83100,0,0,310,0,0,0,0,0,0,0,40,9.3,1,0,16,77777,9,999999999,11,0.06,0,88,0.2,0,1 -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,5.6,74,83000,0,0,292,0,0,0,0,0,0,0,50,4.6,0,0,16,77777,9,999999999,12,0.06,0,88,0.2,0,1 -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,74,83000,0,0,289,0,0,0,0,0,0,0,280,1.5,0,0,16,77777,9,999999999,12,0.06,0,88,0.2,0,1 -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,82,82900,0,0,283,0,0,0,0,0,0,0,240,3.6,0,0,16,77777,9,999999999,12,0.06,0,88,0.2,0,1 -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,80,83000,0,0,285,0,0,0,0,0,0,0,250,2.1,0,0,16,6706,9,999999999,12,0.06,0,88,0.2,0,1 -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,1,0,16,77777,9,999999999,13,0.06,0,88,0.2,0,1 -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,3.9,93,82900,0,57,282,0,0,0,0,0,0,0,150,2.6,3,3,16,77777,9,999999999,13,0.06,0,88,0.2,0,1 -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,77777,9,999999999,13,0.06,0,88,0.2,0,1 -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,33533,29573,6699,2371,0,0,5,4,16,77777,9,999999999,13,0.06,0,88,0.2,0,1 -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,51375,43700,13594,5067,30,2.1,5,4,16,77777,9,999999999,14,0.06,0,88,0.2,0,1 -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,67144,92425,12911,1895,70,2.6,6,4,16,77777,9,999999999,14,0.06,0,88,0.2,0,1 -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,6.7,42,83100,925,1365,357,714,906,98,76018,92291,13695,2319,100,2.1,6,5,16,7315,9,999999999,14,0.06,0,88,0.2,0,1 -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,79599,90733,15112,2645,30,3.6,6,5,16,7315,9,999999999,15,0.06,0,88,0.2,0,1 -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,6.1,30,83600,966,1365,385,734,832,144,89396,55114,17611,7261,50,3.1,8,6,16,7315,9,999999999,16,0.06,0,88,0.2,0,1 -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,25,83700,881,1365,389,624,738,146,74997,49851,17620,7110,70,4.1,7,5,16,7315,9,999999999,17,0.06,0,88,0.2,0,1 -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,65062,49798,11445,4535,90,4.1,6,4,16,77777,9,999999999,18,0.06,0,88,0.2,0,1 -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,46610,42319,8168,3055,100,1.5,5,4,16,77777,9,999999999,19,0.06,0,88,0.2,0,1 -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,18818,56735,5450,771,110,2.6,6,5,16,77777,9,999999999,20,0.06,0,88,0.2,0,1 -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,662,6485,692,130,0,0,6,4,16,77777,9,999999999,21,0.06,0,88,0.2,0,1 -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,77777,9,999999999,22,0.06,0,88,0.2,0,1 -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,77777,9,999999999,23,0.06,0,88,0.2,0,1 -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,77777,9,999999999,24,0.06,0,88,0.2,0,1 -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,77777,9,999999999,25,0.06,0,88,0.2,0,1 -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,2,2,16,77777,9,999999999,26,0.06,0,88,0.2,0,1 -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,77777,9,999999999,25,0.06,0,88,0.2,0,1 -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,77777,9,999999999,24,0.06,0,88,0.2,0,1 -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,77777,9,999999999,23,0.06,0,88,0.2,0,1 -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,77777,9,999999999,22,0.06,0,88,0.2,0,1 -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,77777,9,999999999,21,0.06,0,88,0.2,0,1 -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,63,83000,0,0,299,0,0,0,0,0,0,0,210,5.7,0,0,16,77777,9,999999999,21,0.06,0,88,0.2,0,1 -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,77777,9,999999999,20,0.06,0,88,0.2,0,1 -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,59,83300,133,1366,319,0,0,0,0,0,0,0,360,3.1,4,4,16,77777,9,999999999,19,0.06,0,88,0.2,0,1 -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,17862,6609,14419,4319,300,2.1,6,6,16,3658,9,999999999,18,0.06,0,88,0.2,0,1 -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,51250,44954,16695,6004,210,2.1,3,3,16,77777,9,999999999,17,0.06,0,88,0.2,0,1 -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,67958,96420,11009,1804,120,2.1,5,5,16,77777,9,999999999,16,0.06,0,88,0.2,0,1 -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,74938,91321,13965,2309,60,4.6,4,4,16,77777,9,999999999,15,0.06,0,88,0.2,0,1 -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,91142,57534,20803,8473,130,3.6,5,5,16,6096,9,999999999,15,0.06,0,88,0.2,0,1 -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,71300,38294,36212,13292,30,3.1,8,7,16,6096,9,999999999,15,0.06,0,88,0.2,0,1 -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,29361,2349,27310,10335,10,13.4,8,7,16,3658,9,999999999,14,0.06,0,88,0.2,0,1 -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,44454,23329,27655,9500,30,13.4,9,9,16,3048,9,999999999,14,0.06,0,88,0.2,0,1 -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,35585,29798,15021,5187,40,7.2,9,9,16,3048,9,999999999,14,0.06,0,88,0.2,0,1 -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,6.7,58,83500,281,1366,346,150,466,54,17113,11389,6177,2043,30,9.3,8,8,16,3048,9,999999999,14,0.06,0,88,0.2,0,1 -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,490,0,367,115,70,4.1,6,6,16,6096,9,999999999,13,0.06,0,88,0.2,0,1 -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,6096,9,999999999,13,0.06,0,88,0.2,0,1 -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,6.1,77,83600,0,0,310,0,0,0,0,0,0,0,160,4.6,5,5,16,6096,9,999999999,13,0.06,0,88,0.2,0,1 -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,6.1,77,83500,0,0,329,0,0,0,0,0,0,0,170,4.6,9,9,16,6096,9,999999999,12,0.06,0,88,0.2,0,1 -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,6096,9,999999999,12,0.06,0,88,0.2,0,1 -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,6096,9,999999999,12,0.06,0,88,0.2,0,1 -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,2743,9,999999999,12,0.06,0,88,0.2,0,1 -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,63,83300,0,0,328,0,0,0,0,0,0,0,150,5.2,9,8,16,3048,9,999999999,12,0.061,0,88,0.2,0,1 -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,3048,9,999999999,12,0.061,0,88,0.2,0,1 -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,3048,9,999999999,12,0.061,0,88,0.2,0,1 -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,3048,9,999999999,12,0.061,0,88,0.2,0,1 -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,13,0.061,0,88,0.2,0,1 -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,7,100,83200,0,11,325,0,0,0,0,0,0,0,280,4.1,10,10,4.8,60,9,999999999,13,0.061,0,88,0.2,0,1 -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,13,0.061,0,88,0.2,0,1 -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,8528,0,8594,3260,280,4.1,10,10,4,61,9,999999999,13,0.061,0,88,0.2,0,1 -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,15770,0,15903,6307,270,4.1,10,10,3.2,183,9,999999999,13,0.061,0,88,0.2,0,1 -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,24376,453,24037,8940,280,4.6,10,10,9.6,244,9,999999999,13,0.061,0,88,0.2,0,1 -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,64292,33287,35031,12672,330,3.6,8,8,11.2,6096,9,999999999,13,0.061,0,88,0.2,0,1 -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,73249,39932,34061,12780,350,3.1,8,7,12.8,6096,9,999999999,14,0.061,0,88,0.2,0,1 -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,39340,5055,34730,12875,320,2.1,8,7,12.8,6096,9,999999999,14,0.061,0,88,0.2,0,1 -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,38364,4199,35193,12372,290,1.5,9,7,12.8,6096,9,999999999,15,0.061,0,88,0.2,0,1 -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,36038,10426,28950,9728,250,1.5,9,7,12.8,6096,9,999999999,15,0.061,0,88,0.2,0,1 -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,18644,2329,17271,5718,220,2.1,9,8,12.8,3353,9,999999999,16,0.061,0,88,0.2,0,1 -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,2554,0,2573,1089,190,5.2,7,7,12.8,3048,9,999999999,16,0.061,0,88,0.2,0,1 -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,8.3,64,83300,40,786,335,1,0,1,96,0,97,40,200,2.1,8,5,16,3658,9,999999999,17,0.061,0,88,0.2,0,1 -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,2896,9,999999999,17,0.061,0,88,0.2,0,1 -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,6096,9,999999999,18,0.061,0,88,0.2,0,1 -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,6096,9,999999999,18,0.061,0,88,0.2,0,1 -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,57,83200,0,0,353,0,0,0,0,0,0,0,270,3.1,10,10,16,6096,9,999999999,19,0.061,0,88,0.2,0,1 -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,3353,9,999999999,19,0.061,0,88,0.2,0,1 -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,19,0.061,0,88,0.2,0,1 -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,19,0.061,0,88,0.2,0,1 -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,8,100,83300,0,0,331,0,0,0,0,0,0,0,10,6.7,10,10,8.9,150,9,999999999,19,0.061,0,88,0.2,0,1 -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,20,0.061,0,88,0.2,0,1 -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,20,0.061,0,88,0.2,0,1 -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,20,0.061,0,88,0.2,0,1 -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,89,83500,0,0,306,0,0,0,0,0,0,0,50,4.6,8,8,11.2,213,9,999999999,20,0.061,0,88,0.2,0,1 -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,89,83600,124,1356,321,0,0,0,0,0,0,0,60,4.6,10,10,11.2,244,9,999999999,20,0.061,0,88,0.2,0,1 -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,4.4,96,83600,379,1368,313,47,0,47,4666,0,4702,1987,30,5.2,10,10,5.2,91,9,999999999,20,0.061,0,88,0.2,0,1 -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,4.4,96,83700,606,1368,313,81,0,81,8197,0,8266,3710,60,5.2,10,10,1.2,91,9,999999999,20,0.061,0,88,0.2,0.3,1 -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,11198,0,11298,5286,40,5.7,10,10,1.2,152,9,999999999,20,0.061,0,88,0.2,0,1 -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,4.4,96,83800,908,1368,313,130,0,130,13490,0,13615,6498,40,5.7,10,10,1.2,152,9,999999999,20,0.061,0,88,0.2,0,1 -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,13867,0,13997,6764,30,6.2,10,10,1.2,152,9,999999999,19,0.061,0,88,0.2,0,1 -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,17291,0,17452,8138,50,6.7,10,10,1.2,152,9,999999999,19,0.061,0,88,0.2,0,1 -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,26802,948,26008,9863,60,6.7,10,10,1.2,152,9,999999999,18,0.061,0,88,0.2,0,1 -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,21686,455,21443,7804,70,6.7,10,10,3.2,213,9,999999999,17,0.061,0,88,0.2,0,1 -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,14753,384,14585,5002,60,6.2,10,10,3.2,152,9,999999999,17,0.061,0,88,0.2,0,1 -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,5517,0,5557,2062,60,5.2,10,10,2.8,152,9,999999999,16,0.061,0,88,0.2,0,1 -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,100,83900,36,741,287,1,0,1,96,0,97,40,60,3.1,10,10,3.2,396,9,999999999,15,0.061,0,88,0.2,0,1 -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,14,0.061,0,88,0.2,0,1 -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,14,0.061,0,88,0.2,0,1 -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,13,0.061,0,88,0.2,0,1 -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,10,10,3.2,183,9,999999999,12,0.061,0,88,0.2,0,1 -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.6,95,84200,0,0,286,0,0,0,0,0,0,0,0,0,10,10,3.2,122,9,999999999,12,0.061,0,88,0.2,0,1 -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,10,10,3.2,122,9,999999999,11,0.061,0,88,0.2,0,1 -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,10,10,3.2,122,9,999999999,11,0.061,0,88,0.2,0,1 -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,10,10,3.2,122,9,999999999,11,0.061,0,88,0.2,0,1 -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,10,10,3.2,122,9,999999999,11,0.061,0,88,0.2,0,1 -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,10,10,3.2,122,9,999999999,10,0.061,0,88,0.2,0,1 -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,10,10,4.8,183,9,999999999,10,0.061,0,88,0.2,0,1 -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,10,10,4,305,9,999999999,10,0.061,0,88,0.2,0,1 -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,10,10,4,335,9,999999999,10,0.061,0,88,0.2,0,1 -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,10145,0,10222,3630,0,0,10,10,4,396,9,999999999,9,0.061,0,88,0.2,0,1 -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,17232,0,17375,6632,0,0,10,10,4,244,9,999999999,9,0.061,0,88,0.2,0,1 -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,21810,0,22003,8993,0,0,10,10,3.2,183,9,999999999,9,0.061,0,88,0.2,0,1 -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,24796,463,24446,9525,0,0,10,10,4,274,9,999999999,9,0.061,0,88,0.2,0,1 -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,96,84200,958,1369,289,194,0,194,20243,0,20432,9287,0,0,10,10,4,274,9,999999999,9,0.061,0,88,0.2,0,1 -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,92,84200,941,1369,291,160,0,160,16675,0,16830,7869,0,0,10,10,9.6,213,9,999999999,9,0.061,0,88,0.2,0,1 -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,15522,0,15662,7182,50,4.1,10,10,12.8,152,9,999999999,9,0.061,0,88,0.2,0,1 -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,15333,0,15465,6602,50,3.6,10,10,14.4,213,9,999999999,9,0.061,0,88,0.2,0.3,1 -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,10453,0,10537,4255,50,4.6,10,10,9.6,213,9,999999999,10,0.061,0,88,0.2,0,1 -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,4234,0,4264,1660,30,4.6,10,10,4.8,213,9,999999999,10,0.061,0,88,0.2,0,1 -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,152,9,999999999,10,0.061,0,88,0.2,0,1 -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,183,9,999999999,10,0.061,0,88,0.2,0,1 -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,10,0.061,0,88,0.2,0,1 -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,11,0.061,0,88,0.2,0,1 -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,11,0.061,0,88,0.2,0,1 -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,11,0.061,0,88,0.2,0,1 -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,11,0.061,0,88,0.2,0,1 -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,92,84500,0,0,291,0,0,0,0,0,0,0,150,2.6,10,10,14.4,1097,9,999999999,10,0.061,0,88,0.2,0,1 -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,92,84500,0,0,291,0,0,0,0,0,0,0,170,2.1,10,10,16,1097,9,999999999,10,0.061,0,88,0.2,0,1 -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,10,10,16,1219,9,999999999,10,0.061,0,88,0.2,0.7,1 -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,10,10,16,1341,9,999999999,9,0.061,0,88,0.2,0,1 -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,10,10,16,1280,9,999999999,9,0.061,0,88,0.2,0,1 -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,9,0.061,0,88,0.2,0,1 -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,1158,9,999999999,8,0.061,0,88,0.2,0,1 -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,7052,0,7105,2774,100,3.1,10,10,16,1158,9,999999999,8,0.061,0,88,0.2,0,1 -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,15186,0,15312,6048,110,2.6,10,10,16,1158,9,999999999,8,0.061,0,88,0.2,0,1 -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,19135,0,19303,8139,0,0,10,10,16,1219,9,999999999,8,0.061,0,88,0.2,0,1 -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,18701,0,18872,8502,110,2.6,10,10,16,1128,9,999999999,7,0.061,0,88,0.2,0,1 -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,-2.2,58,84800,952,1369,306,188,0,188,19619,0,19801,9029,80,2.6,10,10,16,1128,9,999999999,7,0.061,0,88,0.2,0,1 -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,-2.8,55,84700,935,1369,305,201,6,197,23846,456,23484,9311,0,0,10,10,16,1128,9,999999999,8,0.061,0,88,0.2,0,1 -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,16146,0,16292,7395,80,1.5,10,10,16,1128,9,999999999,8,0.061,0,88,0.2,0,1 -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,15943,0,16080,6773,80,4.1,10,10,16,1189,9,999999999,8,0.061,0,88,0.2,0,1 -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,-1.1,64,84700,495,1369,307,125,0,125,12562,0,12662,4847,80,3.6,10,10,16,1250,9,999999999,9,0.061,0,88,0.2,0,1 -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,-1.1,64,84600,252,1369,307,38,0,38,3741,0,3768,1487,100,3.6,10,10,16,1311,9,999999999,9,0.061,0,88,0.2,0,1 -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,1372,9,999999999,9,0.061,0,88,0.2,0,1 -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,76,84700,0,0,303,0,0,0,0,0,0,0,110,3.1,10,10,16,1433,9,999999999,10,0.061,0,88,0.2,0,1 -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,76,84700,0,0,303,0,0,0,0,0,0,0,180,2.6,10,10,16,1494,9,999999999,10,0.061,0,88,0.2,0,1 -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,1494,9,999999999,10,0.061,0,88,0.2,0,1 -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,77777,9,999999999,10,0.061,0,88,0.2,0,1 -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,77777,9,999999999,11,0.061,0,88,0.2,0,1 -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,1128,9,999999999,10,0.061,0,88,0.2,0,1 -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,1128,9,999999999,10,0.061,0,88,0.2,0,1 -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,1128,9,999999999,9,0.061,0,88,0.2,0,1 -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,1128,9,999999999,9,0.061,0,88,0.2,0,1 -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,1067,9,999999999,8,0.061,0,88,0.2,0,1 -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,1067,9,999999999,8,0.061,0,88,0.2,0,1 -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,1067,9,999999999,7,0.061,0,88,0.2,0,1 -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,1006,9,999999999,7,0.061,0,88,0.2,0,1 -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,20069,14114,12623,3834,170,6.2,4,4,16,77777,9,999999999,6,0.061,0,88,0.2,0,1 -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,-1.1,64,84500,591,1370,292,442,731,126,51085,48033,14619,5287,160,4.1,8,8,16,914,9,999999999,6,0.061,0,88,0.2,0,1 -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,65673,51312,21019,7911,210,3.1,5,5,16,77777,9,999999999,5,0.061,0,88,0.2,0,1 -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,56,84400,892,1370,308,708,918,108,87250,59080,13355,5480,160,3.1,8,8,16,975,9,999999999,5,0.061,0,88,0.2,0,1 -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,80339,96038,14546,2438,150,4.6,5,5,16,77777,9,999999999,5,0.061,0,88,0.2,0,1 -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,77925,94887,13933,2343,140,7.7,5,5,16,77777,9,999999999,6,0.061,0,88,0.2,0,1 -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,48,84500,842,1370,302,651,910,89,68823,91481,12667,2002,150,6.2,3,3,16,77777,9,999999999,6,0.061,0,88,0.2,0,1 -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,48,84500,692,1370,302,499,808,90,60375,48945,10922,4273,150,6.7,3,3,16,77777,9,999999999,7,0.061,0,88,0.2,0,1 -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,50,84500,488,1370,299,332,744,66,39514,36688,7875,2894,180,6.2,3,3,16,77777,9,999999999,7,0.061,0,88,0.2,0,1 -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,56,84200,245,1370,289,148,610,38,17180,8969,4420,1475,170,4.6,4,2,16,77777,9,999999999,8,0.061,0,88,0.2,0,1 -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,70,84300,26,628,267,0,0,0,0,0,0,0,160,5.7,0,0,16,77777,9,999999999,8,0.061,0,88,0.2,0,1 -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,82,84200,0,0,259,0,0,0,0,0,0,0,130,4.1,0,0,16,77777,9,999999999,9,0.061,0,88,0.2,0,1 -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,77777,9,999999999,9,0.061,0,88,0.2,0,1 -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,77777,9,999999999,10,0.061,0,88,0.2,0,1 -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,82,84000,0,0,270,0,0,0,0,0,0,0,180,5.7,4,3,16,77777,9,999999999,10,0.061,0,88,0.2,0,1 -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,85,84100,0,0,265,0,0,0,0,0,0,0,190,5.7,4,2,16,77777,9,999999999,11,0.061,0,88,0.2,0,1 -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,77777,9,999999999,10,0.061,0,88,0.2,0,1 -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,88,83800,0,0,255,0,0,0,0,0,0,0,190,5.2,0,0,16,77777,9,999999999,10,0.061,0,88,0.2,0,1 -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,77777,9,999999999,10,0.061,0,88,0.2,0,1 -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,77777,9,999999999,10,0.061,0,88,0.2,0,1 -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,-1.7,87,83600,0,0,247,0,0,0,0,0,0,0,0,0,0,0,16,77777,9,999999999,9,0.061,0,88,0.2,0,1 -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,-1.1,91,83900,0,0,247,0,0,0,0,0,0,0,200,2.6,0,0,16,77777,9,999999999,9,0.061,0,88,0.2,0,1 -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,-1.7,87,83600,0,0,247,0,0,0,0,0,0,0,210,3.1,0,0,16,77777,9,999999999,9,0.061,0,88,0.2,0,1 -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,77777,9,999999999,9,0.061,0,88,0.2,0,1 -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,79,83900,360,1371,261,246,730,54,28762,25988,6328,2201,260,1.5,0,0,16,77777,9,999999999,8,0.061,0,88,0.2,0,1 -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,47249,86306,9505,1359,0,0,0,0,16,77777,9,999999999,8,0.061,0,88,0.2,0,1 -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,62752,90885,12020,1776,30,1.5,0,0,16,77777,9,999999999,8,0.061,0,88,0.2,0,1 -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,78244,52768,16172,6564,60,2.1,3,3,16,77777,9,999999999,8,0.061,0,88,0.2,0,1 -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,85988,55141,15739,6483,90,2.1,3,3,16,77777,9,999999999,8,0.061,0,88,0.2,0,1 -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,85493,55772,15245,6267,90,3.6,3,3,16,77777,9,999999999,9,0.061,0,88,0.2,0,1 -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,68888,92132,12819,1988,80,4.1,3,3,16,77777,9,999999999,10,0.061,0,88,0.2,0,1 -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,30,84000,685,1371,334,527,919,66,56145,91039,9789,1536,90,4.6,3,3,16,77777,9,999999999,10,0.061,0,88,0.2,0,1 -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,36380,77220,8165,1159,70,4.1,3,3,16,77777,9,999999999,11,0.061,0,88,0.2,0,1 -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,16661,6613,3761,1266,10,2.1,3,3,16,77777,9,999999999,12,0.061,0,88,0.2,0,1 -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,77777,9,999999999,13,0.061,0,88,0.2,0,1 -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.6,52,83600,0,0,300,0,0,0,0,0,0,0,60,1.5,3,3,16,77777,9,999999999,13,0.061,0,88,0.2,0,1 -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,77777,9,999999999,14,0.061,0,88,0.2,0,1 -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,77777,9,999999999,15,0.061,0,88,0.2,0,1 -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,77777,9,999999999,16,0.061,0,88,0.2,0,1 -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,77777,9,999999999,16,0.061,0,88,0.2,0,1 -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,77777,9,999999999,16,0.061,0,88,0.2,0,1 -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,77777,9,999999999,16,0.061,0,88,0.2,0,1 -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,85,82800,0,0,256,0,0,0,0,0,0,0,200,3.1,0,0,16,77777,9,999999999,15,0.061,0,88,0.2,0,1 -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,77777,9,999999999,15,0.061,0,88,0.2,0,1 -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,77777,9,999999999,14,0.061,0,88,0.2,0,1 -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,67,83000,0,0,269,0,0,0,0,0,0,0,200,3.6,0,0,16,77777,9,999999999,14,0.061,0,88,0.2,0,1 -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,77777,9,999999999,13,0.061,0,88,0.2,0,1 -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,77777,9,999999999,13,0.061,0,88,0.2,0,1 -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,29781,30430,8975,2959,250,1.5,0,0,16,77777,9,999999999,13,0.061,0,88,0.2,0,1 -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,52030,46671,9911,3730,220,1.5,0,0,16,77777,9,999999999,12,0.061,0,88,0.2,0,1 -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,2.2,42,83400,760,1372,323,585,847,114,70249,54448,13738,5419,180,1.5,3,3,16,77777,9,999999999,12,0.061,0,88,0.2,0,1 -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,74223,97836,10448,1938,150,2.6,3,3,16,77777,9,999999999,11,0.061,0,88,0.2,0,1 -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,77801,96265,11816,2212,110,2.1,3,3,16,77777,9,999999999,12,0.061,0,88,0.2,0,1 -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,78521,99343,11451,2128,80,3.6,3,3,16,77777,9,999999999,12,0.061,0,88,0.2,0,1 -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,68622,92511,12965,1973,100,4.6,4,4,16,77777,9,999999999,12,0.061,0,88,0.2,0,1 -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,21,83400,678,1372,365,498,837,83,60470,49524,10107,3949,100,5.2,6,5,16,77777,9,999999999,13,0.061,0,88,0.2,0,1 -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,23,83300,474,1372,357,325,760,61,38790,35938,7297,2677,140,8.8,4,4,16,77777,9,999999999,13,0.061,0,88,0.2,0,1 -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,13752,46689,4690,648,150,8.8,5,5,16,77777,9,999999999,13,0.061,0,88,0.2,0,1 -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,77777,9,999999999,13,0.061,0,88,0.2,0,1 -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,77777,9,999999999,14,0.061,0,88,0.2,0,1 -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,77777,9,999999999,14,0.061,0,88,0.2,0,1 -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,77777,9,999999999,14,0.061,0,88,0.2,0,1 -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,2.8,61,82700,0,0,302,0,0,0,0,0,0,0,160,7.2,3,3,16,77777,9,999999999,15,0.061,0,88,0.2,0,1 -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,77777,9,999999999,15,0.061,0,88,0.2,0,1 -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,77777,9,999999999,15,0.061,0,88,0.2,0,1 -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,77777,9,999999999,15,0.061,0,88,0.2,0,1 -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,77777,9,999999999,14,0.061,0,88,0.2,0,1 -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,40,82800,0,0,300,0,0,0,0,0,0,0,210,7.2,0,0,16,77777,9,999999999,14,0.061,0,88,0.2,0,1 -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,77777,9,999999999,14,0.061,0,88,0.2,0,1 -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,2.2,82,82900,0,0,269,0,0,0,0,0,0,0,280,1.5,0,0,16,77777,9,999999999,14,0.061,0,88,0.2,0,1 -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,77777,9,999999999,14,0.061,0,88,0.2,0,1 -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,77777,9,999999999,14,0.061,0,88,0.2,0,1 -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,25552,23344,8430,2802,310,3.6,3,3,16,77777,9,999999999,14,0.061,0,88,0.2,0,1 -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,50735,44438,9119,3445,340,1.5,3,3,16,77777,9,999999999,13,0.061,0,88,0.2,0,1 -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,43,83300,755,1373,339,579,884,91,70592,52746,11129,4439,10,3.1,3,3,16,77777,9,999999999,13,0.061,0,88,0.2,0,1 -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,80341,54616,12857,5262,150,7.2,3,3,16,77777,9,999999999,13,0.061,0,88,0.2,0,1 -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,85476,55555,14915,6141,150,8.8,3,3,16,77777,9,999999999,13,0.061,0,88,0.2,0,1 -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,1.1,21,83300,910,1373,369,703,927,86,74506,93735,12129,2164,140,7.7,3,3,16,77777,9,999999999,13,0.061,0,88,0.2,0,1 -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,64501,88164,11490,1890,190,7.2,3,3,16,77777,9,999999999,13,0.061,0,88,0.2,0,1 -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,61387,51185,9648,3766,190,8.8,3,3,16,77777,9,999999999,13,0.061,0,88,0.2,0,1 -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,38137,35842,7069,2587,200,7.7,3,3,16,77777,9,999999999,13,0.061,0,88,0.2,0,1 -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,14317,4212,3526,1180,180,8.2,8,8,16,7620,9,999999999,13,0.061,0,88,0.2,0,1 -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,7620,9,999999999,13,0.061,0,88,0.2,0,1 -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,6096,9,999999999,12,0.061,0,88,0.2,0,1 -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,-1.1,24,83300,0,0,345,0,0,0,0,0,0,0,200,7.7,8,4,16,6096,9,999999999,12,0.061,0,88,0.2,0,1 -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,5486,9,999999999,12,0.061,0,88,0.2,0,1 -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,6096,9,999999999,12,0.061,0,88,0.2,0,1 -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,6096,9,999999999,12,0.061,0,88,0.2,0,1 -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,6096,9,999999999,12,0.061,0,88,0.2,0,1 -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,2.8,61,82800,0,0,305,0,0,0,0,0,0,0,80,2.6,10,4,16,6096,9,999999999,12,0.061,0,88,0.2,0,1 -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,6096,9,999999999,12,0.061,0,88,0.2,0,1 -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,2.8,61,82900,0,0,305,0,0,0,0,0,0,0,350,2.6,7,4,16,6096,9,999999999,12,0.061,0,88,0.2,0,1 -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,6096,9,999999999,12,0.061,0,88,0.2,0,1 -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,6096,9,999999999,12,0.061,0,88,0.2,0,1 -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,77777,9,999999999,12,0.061,0,88,0.2,0,1 -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,2.8,61,83100,95,1202,302,0,0,0,0,0,0,0,210,1.5,3,3,16,77777,9,999999999,11,0.061,0,88,0.2,0,1 -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,28857,29874,9878,3154,270,2.6,3,3,16,77777,9,999999999,11,0.061,0,88,0.2,0,1 -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,44484,40305,15921,5590,260,2.1,3,3,16,77777,9,999999999,11,0.061,0,88,0.2,0,1 -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,69618,54327,13151,5184,320,1.5,3,3,16,77777,9,999999999,11,0.061,0,88,0.2,0,1 -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,82600,55967,12721,5204,330,2.6,3,3,16,77777,9,999999999,11,0.061,0,88,0.2,0,1 -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,78132,95617,14358,2321,340,2.6,3,3,16,77777,9,999999999,11,0.061,0,88,0.2,0,1 -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,75093,93850,13609,2227,50,5.7,3,3,16,77777,9,999999999,11,0.061,0,88,0.2,0,1 -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,67056,92124,12326,1913,60,4.6,3,3,16,77777,9,999999999,11,0.061,0,88,0.2,0,1 -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,60326,49605,9737,3795,60,5.7,3,3,16,77777,9,999999999,10,0.061,0,88,0.2,0,1 -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,36488,33726,7600,2762,50,6.7,4,4,16,77777,9,999999999,10,0.061,0,88,0.2,0,1 -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,13680,2739,3513,1171,360,6.2,5,5,16,77777,9,999999999,10,0.061,0,88,0.2,0,1 -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,2,41,83200,16,492,328,0,0,0,0,0,0,0,280,6.2,5,5,16.1,77777,9,999999999,10,0.061,0,88,0.2,0,1 -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,77777,9,999999999,10,0.061,0,88,0.2,0,1 -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,77777,9,999999999,10,0.061,0,88,0.2,0,1 -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,77777,9,999999999,10,0.061,0,88,0.2,0,1 -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,77777,9,999999999,9,0.061,0,88,0.2,0,1 -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,2,2,16,77777,9,999999999,9,0.061,0,88,0.2,0,1 -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,77777,9,999999999,10,0.061,0,88,0.2,0,1 -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,85,82900,0,0,270,0,0,0,0,0,0,0,130,3.1,4,4,16,77777,9,999999999,10,0.061,0,88,0.2,0,1 -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,77777,9,999999999,10,0.061,0,88,0.2,0,1 -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,77777,9,999999999,11,0.061,0,88,0.2,0,1 -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,77777,9,999999999,11,0.061,0,88,0.2,0,1 -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,77777,9,999999999,11,0.061,0,88,0.2,0,1 -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,77777,9,999999999,12,0.061,0,88,0.2,0,1 -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,77777,9,999999999,12,0.061,0,88,0.2,0,1 -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,11568,346,11504,3484,180,3.1,4,4,16,77777,9,999999999,12,0.061,0,88,0.2,0,1 -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,35749,24559,21311,6853,170,3.1,3,3,16,7620,9,999999999,13,0.061,0,88,0.2,0,1 -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,59542,45642,23775,8583,120,4.6,3,3,16,77777,9,999999999,13,0.061,0,88,0.2,0,1 -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,78308,55988,17580,7030,130,5.2,3,3,16,77777,9,999999999,13,0.061,0,88,0.2,0,1 -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,73995,49185,25497,9897,250,3.6,6,6,16,4572,9,999999999,13,0.061,0,88,0.2,0,1 -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,62104,33830,34105,12269,260,3.1,5,5,16,77777,9,999999999,13,0.061,0,88,0.2,0,1 -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,72828,55907,16568,6539,280,2.6,3,3,16,77777,9,999999999,12,0.061,0,88,0.2,0,1 -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,60504,52192,9521,3697,290,2.1,4,4,16,77777,9,999999999,12,0.061,0,88,0.2,0,1 -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,37314,36096,6832,2487,310,3.6,4,4,16,77777,9,999999999,12,0.061,0,88,0.2,0,1 -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,12257,44354,4378,602,350,2.1,8,8,16,7620,9,999999999,11,0.061,0,88,0.2,0,1 -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,7620,9,999999999,11,0.061,0,88,0.2,0,1 -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,7620,9,999999999,11,0.061,0,88,0.2,0,1 -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,62,83300,0,0,288,0,0,0,0,0,0,0,140,1.5,4,4,16,77777,9,999999999,10,0.061,0,88,0.2,0,1 -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,67,83300,0,0,285,0,0,0,0,0,0,0,140,2.1,5,5,16,77777,9,999999999,10,0.061,0,88,0.2,0,1 -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,-1.1,64,83200,0,0,275,0,0,0,0,0,0,0,160,4.1,2,2,16,77777,9,999999999,10,0.061,0,88,0.2,0,1 -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,77777,9,999999999,9,0.061,0,88,0.2,0,1 -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,-1.1,64,83200,0,0,278,0,0,0,0,0,0,0,240,3.1,3,3,16,77777,9,999999999,9,0.061,0,88,0.2,0,1 -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,77777,9,999999999,9,0.061,0,88,0.2,0,1 -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,77777,9,999999999,9,0.061,0,88,0.2,0,1 -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,77777,9,999999999,8,0.061,0,88,0.2,0,1 -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,-4.4,48,83300,0,0,274,0,0,0,0,0,0,0,310,2.6,3,3,16,77777,9,999999999,8,0.061,0,88,0.2,0,1 -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,77777,9,999999999,8,0.061,0,88,0.2,0,1 -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,77777,9,999999999,8,0.061,0,88,0.2,0,1 -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,77777,9,999999999,8,0.061,0,88,0.2,0,1 -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,56,83800,336,1375,292,236,718,60,27165,25040,6925,2342,120,3.6,3,3,16,77777,9,999999999,7,0.061,0,88,0.2,0,1 -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,-1.1,45,83900,560,1375,298,391,703,104,45575,42609,12164,4434,110,5.7,3,3,16,77777,9,999999999,7,0.061,0,88,0.2,0,1 -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,59587,47233,20573,7631,90,4.6,4,4,16,77777,9,999999999,7,0.061,0,88,0.2,0,1 -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,75343,54048,17346,6929,120,6.2,4,4,16,6706,9,999999999,7,0.061,0,88,0.2,0,1 -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,74077,49790,21621,8580,110,2.6,4,3,16,77777,9,999999999,7,0.061,0,88,0.2,0,1 -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,-5,24,83800,891,1375,327,638,658,210,74797,51888,24742,9561,100,3.6,8,7,16,77777,9,999999999,7,0.061,0,88,0.2,0,1 -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,24,83800,803,1375,336,431,291,260,48967,25427,29703,10495,80,2.6,10,9,16,3048,9,999999999,8,0.061,0,88,0.2,0,1 -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,28477,6336,24455,8169,180,5.7,9,9,16,2438,9,999999999,8,0.061,0,88,0.2,0,1 -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,6609,0,6661,2806,290,5.7,9,8,16,2134,9,999999999,9,0.061,0,88,0.2,0,1 -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,1962,0,1976,810,260,2.6,7,7,16,2743,9,999999999,9,0.061,0,88,0.2,0,1 -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,-1.1,45,83900,11,424,314,0,0,0,0,0,0,0,360,4.6,8,8,16,3048,9,999999999,10,0.061,0,88,0.2,0,1 -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,3048,9,999999999,10,0.061,0,88,0.2,0,1 -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,3048,9,999999999,11,0.061,0,88,0.2,0,1 -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,8,8,16,3048,9,999999999,11,0.061,0,88,0.2,0,1 -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,10,9,16,3353,9,999999999,11,0.061,0,88,0.2,0,1 -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,3048,9,999999999,12,0.061,0,88,0.2,0,1 -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,6096,9,999999999,12,0.061,0,88,0.2,0,1 -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,6096,9,999999999,11,0.061,0,88,0.2,0,1 -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,77777,9,999999999,11,0.061,0,88,0.2,0,1 -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,77777,9,999999999,11,0.061,0,88,0.2,0,1 -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,3,3,16,77777,9,999999999,11,0.061,0,88,0.2,0,1 -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,77777,9,999999999,11,0.061,0,88,0.2,0,1 -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,16,77777,9,999999999,10,0.061,0,88,0.2,0,1 -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,77777,9,999999999,10,0.061,0,88,0.2,0,1 -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,24108,22767,8288,2706,220,3.1,0,0,16,77777,9,999999999,10,0.061,0,88,0.2,0,1 -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.6,47,83900,555,1376,286,398,759,91,46819,43732,10738,3960,210,4.1,0,0,16,77777,9,999999999,10,0.061,0,88,0.2,0,1 -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,61129,49516,20120,7471,230,2.6,0,0,16,77777,9,999999999,10,0.061,0,88,0.2,0,1 -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,69974,91585,13859,2050,250,2.6,0,0,16,77777,9,999999999,9,0.061,0,88,0.2,0,1 -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,-1.7,31,83900,904,1376,319,708,932,94,74602,93861,13206,2202,270,2.1,3,3,16,77777,9,999999999,10,0.061,0,88,0.2,0,1 -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,82748,56831,13571,5552,290,2.6,4,3,16,77777,9,999999999,10,0.061,0,88,0.2,0,1 -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,64330,90489,12090,1853,40,4.1,3,3,16,77777,9,999999999,11,0.061,0,88,0.2,0,1 -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,28,84000,645,1376,339,474,800,98,56465,48908,11712,4475,90,5.7,3,3,16,77777,9,999999999,11,0.061,0,88,0.2,0,1 -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,32975,30671,7674,2756,140,5.7,5,5,16,77777,9,999999999,12,0.061,0,88,0.2,0,1 -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,34,83400,197,1376,329,101,485,31,11684,819,3593,1175,190,5.2,8,5,16,77777,9,999999999,12,0.061,0,88,0.2,0,1 -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,77777,9,999999999,13,0.061,0,88,0.2,0,1 -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,77777,9,999999999,13,0.061,0,88,0.2,0,1 -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,77777,9,999999999,14,0.061,0,88,0.2,0,1 -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,77777,9,999999999,14,0.061,0,88,0.2,0,1 -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,77777,9,999999999,15,0.061,0,88,0.2,0,1 -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,77777,9,999999999,15,0.061,0,88,0.2,0,1 -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,77777,9,999999999,15,0.061,0,88,0.2,0,1 -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,77777,9,999999999,14,0.06,0,88,0.2,0,1 -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,77777,9,999999999,13,0.06,0,88,0.2,0,1 -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,77777,9,999999999,13,0.06,0,88,0.2,0,1 -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,77777,9,999999999,12,0.06,0,88,0.2,0,1 -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.6,73,83600,0,0,268,0,0,0,0,0,0,0,220,5.2,0,0,16,77777,9,999999999,12,0.06,0,88,0.2,0,1 -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,79,83500,0,0,261,0,0,0,0,0,0,0,270,3.6,0,0,16,77777,9,999999999,11,0.06,0,88,0.2,0,1 -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,77777,9,999999999,11,0.06,0,88,0.2,0,1 -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,22463,19891,7852,2579,210,3.6,0,0,16,77777,9,999999999,10,0.06,0,88,0.2,0,1 -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,44,84000,550,1377,294,392,784,78,46606,42754,9299,3464,70,2.6,0,0,16,77777,9,999999999,10,0.06,0,88,0.2,0,1 -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,40,84100,728,1377,300,554,854,102,66735,53697,12327,4837,0,0,0,0,16,77777,9,999999999,9,0.06,0,88,0.2,0,1 -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,70775,93406,13741,2028,120,3.6,0,0,16,77777,9,999999999,8,0.06,0,88,0.2,0,1 -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,74528,97028,10414,1971,110,4.6,1,0,16,77777,9,999999999,9,0.06,0,88,0.2,0,1 -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,70786,90118,13793,2139,100,4.1,0,0,16,77777,9,999999999,9,0.06,0,88,0.2,0,1 -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,68103,51325,13375,5333,110,3.6,0,0,16,77777,9,999999999,9,0.06,0,88,0.2,0,1 -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,55337,50023,14444,5376,140,4.6,0,0,16,77777,9,999999999,9,0.06,0,88,0.2,0,1 -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,28648,26454,12567,4158,130,4.1,0,0,16,77777,9,999999999,10,0.06,0,88,0.2,0,1 -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,-3.3,27,83700,191,1377,314,91,406,35,10403,1350,4010,1284,110,3.6,4,2,16,77777,9,999999999,10,0.06,0,88,0.2,0,1 -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,77777,9,999999999,10,0.06,0,88,0.2,0,1 -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,77777,9,999999999,11,0.06,0,88,0.2,0,1 -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,77777,9,999999999,11,0.06,0,88,0.2,0,1 -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,77777,9,999999999,11,0.06,0,88,0.2,0,1 -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,16,77777,9,999999999,11,0.06,0,88,0.2,0,1 -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,-1.7,61,83900,0,0,265,0,0,0,0,0,0,0,290,3.1,0,0,16,77777,9,999999999,12,0.06,0,88,0.2,0,1 -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,77777,9,999999999,11,0.06,0,88,0.2,0,1 -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,77777,9,999999999,11,0.06,0,88,0.2,0,1 -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,77777,9,999999999,11,0.06,0,88,0.2,0,1 -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,77777,9,999999999,10,0.06,0,88,0.2,0,1 -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,77777,9,999999999,10,0.06,0,88,0.2,0,1 -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,77777,9,999999999,9,0.06,0,88,0.2,0,1 -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,77777,9,999999999,9,0.06,0,88,0.2,0,1 -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,77777,9,999999999,9,0.06,0,88,0.2,0,1 -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,26659,24376,6682,2242,220,5.2,0,0,16,77777,9,999999999,8,0.06,0,88,0.2,0,1 -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,42512,81817,9266,1280,240,3.6,0,0,16,77777,9,999999999,8,0.06,0,88,0.2,0,1 -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,65557,52965,11648,4575,300,3.1,0,0,16,77777,9,999999999,8,0.06,0,88,0.2,0,1 -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,34,84200,841,1377,310,628,822,125,75895,54820,15163,6090,350,2.6,0,0,16,77777,9,999999999,7,0.06,0,88,0.2,0,1 -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,73011,92907,13110,2153,40,4.1,0,0,16,77777,9,999999999,8,0.06,0,88,0.2,0,1 -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,71333,93988,11405,1996,50,3.1,0,0,16,77777,9,999999999,8,0.06,0,88,0.2,0,1 -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,69592,51825,11429,4585,50,3.1,0,0,16,77777,9,999999999,9,0.06,0,88,0.2,0,1 -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,-2.2,22,84700,632,1377,327,467,852,75,56658,48806,9123,3519,60,3.1,0,0,16,77777,9,999999999,9,0.06,0,88,0.2,0,1 -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,34270,32209,6559,2364,90,2.6,0,0,16,77777,9,999999999,10,0.06,0,88,0.2,0,1 -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,10278,444,3891,1242,110,2.1,0,0,16,77777,9,999999999,10,0.06,0,88,0.2,0,1 -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,77777,9,999999999,10,0.06,0,88,0.2,0,1 -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,77777,9,999999999,11,0.06,0,88,0.2,0,1 -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,77777,9,999999999,11,0.06,0,88,0.2,0,1 -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,77777,9,999999999,12,0.06,0,88,0.2,0,1 -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,-2.8,55,83900,0,0,264,0,0,0,0,0,0,0,160,3.6,0,0,16,77777,9,999999999,12,0.06,0,88,0.2,0,1 -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,56,84000,0,0,280,0,0,0,0,0,0,0,200,5.2,0,0,16,77777,9,999999999,13,0.06,0,88,0.2,0,1 -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,77777,9,999999999,12,0.06,0,88,0.2,0,1 -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,77777,9,999999999,12,0.06,0,88,0.2,0,1 -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,58,83900,0,0,278,0,0,0,0,0,0,0,210,6.2,0,0,16,77777,9,999999999,11,0.06,0,88,0.2,0,1 -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,56,83900,0,0,280,0,0,0,0,0,0,0,200,6.2,0,0,16,77777,9,999999999,11,0.06,0,88,0.2,0,1 -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,58,83900,0,0,278,0,0,0,0,0,0,0,200,5.7,0,0,16,77777,9,999999999,10,0.06,0,88,0.2,0,1 -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,77777,9,999999999,9,0.06,0,88,0.2,0,1 -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,77777,9,999999999,9,0.06,0,88,0.2,0,1 -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,77777,9,999999999,8,0.06,0,88,0.2,0,1 -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,22780,19916,7196,2377,210,5.2,0,0,16,77777,9,999999999,8,0.06,0,88,0.2,0,1 -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,-1.1,33,84300,539,1378,306,400,841,70,47857,44315,8396,3133,230,4.1,0,0,16,77777,9,999999999,7,0.06,0,88,0.2,0,1 -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,59558,49241,20059,7377,210,3.6,0,0,16,77777,9,999999999,7,0.06,0,88,0.2,0,1 -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,75272,54979,14818,5947,240,3.1,0,0,16,77777,9,999999999,6,0.06,0,88,0.2,0,1 -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,71867,91721,13379,2144,240,2.1,0,0,16,77777,9,999999999,6,0.06,0,88,0.2,0,1 -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,69293,89185,13953,2097,180,2.1,0,0,16,77777,9,999999999,7,0.06,0,88,0.2,0,1 -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,-8.3,10,84300,777,1378,342,596,909,82,62686,90289,11847,1796,130,1.5,0,0,16,77777,9,999999999,7,0.06,0,88,0.2,0,1 -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,48694,84008,10151,1446,70,3.6,0,0,16,77777,9,999999999,8,0.06,0,88,0.2,0,1 -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,34218,32767,6332,2278,120,2.1,0,0,16,77777,9,999999999,8,0.06,0,88,0.2,0,1 -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,10299,0,3246,1052,80,2.6,0,0,16,77777,9,999999999,9,0.06,0,88,0.2,0,1 -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,77777,9,999999999,9,0.06,0,88,0.2,0,1 -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,77777,9,999999999,10,0.06,0,88,0.2,0,1 -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,77777,9,999999999,10,0.06,0,88,0.2,0,1 -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,77777,9,999999999,11,0.06,0,88,0.2,0,1 -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,77777,9,999999999,11,0.06,0,88,0.2,0,1 -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,77777,9,999999999,11,0.06,0,88,0.2,0,1 -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,77777,9,999999999,11,0.06,0,88,0.2,0,1 -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,77777,9,999999999,11,0.059,0,88,0.2,0,1 -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,77777,9,999999999,11,0.059,0,88,0.2,0,1 -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,35,83400,0,0,277,0,0,0,0,0,0,0,220,5.2,0,0,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 -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,31,83400,0,0,284,0,0,0,0,0,0,0,220,4.1,0,0,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 -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,77777,9,999999999,11,0.059,0,88,0.2,0,1 -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,77777,9,999999999,11,0.059,0,88,0.2,0,1 -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,1072,0,834,264,200,6.7,3,2,16,77777,9,999999999,10,0.059,0,88,0.2,0,1 -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,14701,7318,10905,3204,220,5.7,3,2,16,77777,9,999999999,10,0.059,0,88,0.2,0,1 -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,45430,45802,15813,5390,210,5.7,0,0,16,77777,9,999999999,10,0.059,0,88,0.2,0,1 -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,-3.9,19,84000,711,1379,331,504,647,169,58246,48289,19618,7219,180,2.1,1,1,16,77777,9,999999999,10,0.059,0,88,0.2,0,1 -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,67878,91134,13642,1968,140,1.5,3,3,16,77777,9,999999999,10,0.059,0,88,0.2,0,1 -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,15,84000,880,1379,351,672,902,95,70570,90437,13393,2123,90,2.6,5,4,16,7620,9,999999999,11,0.059,0,88,0.2,0,1 -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,72453,52189,21337,8324,50,3.6,4,4,16,7620,9,999999999,12,0.059,0,88,0.2,0,1 -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,15,83900,771,1379,353,544,778,108,65809,50860,13109,5197,90,4.6,5,5,16,7620,9,999999999,13,0.059,0,88,0.2,0,1 -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,15,83900,619,1379,354,406,552,158,46385,40298,18130,6404,70,5.7,6,6,16,7620,9,999999999,14,0.059,0,88,0.2,0,1 -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,15,83800,414,1379,354,126,34,115,14098,2003,12918,4154,90,6.2,7,6,16,7620,9,999999999,15,0.059,0,88,0.2,0,1 -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,5691,262,4700,1421,80,4.1,8,8,16,7620,9,999999999,16,0.059,0,88,0.2,0,1 -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,3658,9,999999999,17,0.059,0,88,0.2,0,1 -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,-3.9,26,83700,0,0,328,0,0,0,0,0,0,0,120,3.1,7,7,16,3658,9,999999999,19,0.059,0,88,0.2,0,1 -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,3658,9,999999999,20,0.059,0,88,0.2,0,1 -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,3658,9,999999999,21,0.059,0,88,0.2,0,1 -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,3658,9,999999999,22,0.059,0,88,0.2,0,1 -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,3658,9,999999999,23,0.059,0,88,0.2,0,1 -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,-3.9,36,83600,0,0,311,0,0,0,0,0,0,0,50,3.6,8,8,16,3048,9,999999999,22,0.059,0,88,0.2,0,1 -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,3048,9,999999999,21,0.059,0,88,0.2,0,1 -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,77777,9,999999999,20,0.059,0,88,0.2,0,1 -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,77777,9,999999999,19,0.059,0,88,0.2,0,1 -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,77777,9,999999999,18,0.059,0,88,0.2,0,1 -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,77777,9,999999999,17,0.059,0,88,0.2,0,1 -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,16,77777,9,999999999,16,0.059,0,88,0.2,0,1 -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,1335,12367,529,111,260,2.1,0,0,16,77777,9,999999999,15,0.059,0,88,0.2,0,1 -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,54,83900,305,1380,282,203,670,54,23338,19502,6224,2082,0,0,0,0,16,77777,9,999999999,14,0.059,0,88,0.2,0,1 -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,48,84000,529,1380,289,374,755,83,44045,41311,9804,3597,40,1.5,0,0,16,77777,9,999999999,13,0.059,0,88,0.2,0,1 -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,43,84000,705,1380,296,536,891,79,56808,88293,11581,1624,70,1.5,0,0,16,77777,9,999999999,12,0.059,0,88,0.2,0,1 -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,38,84000,823,1380,316,628,925,75,66723,92915,10825,1834,90,2.6,3,3,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 -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,70372,90860,13151,2093,100,4.1,3,3,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 -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,30,84000,854,1380,334,678,963,81,71880,96920,11580,1958,110,4.1,3,3,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 -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,28,84000,764,1380,339,584,939,62,62376,93939,9124,1598,100,5.7,3,3,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 -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.6,25,83900,612,1380,343,455,857,73,55080,47914,8860,3397,110,6.7,3,3,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 -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,31154,29489,7071,2507,120,9.8,3,3,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 -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,9855,0,3330,1061,140,6.7,2,2,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 -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,77777,9,999999999,11,0.059,0,88,0.2,0,1 -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,77777,9,999999999,11,0.059,0,88,0.2,0,1 -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,77777,9,999999999,11,0.059,0,88,0.2,0,1 -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,77777,9,999999999,12,0.059,0,88,0.2,0,1 -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,77777,9,999999999,12,0.059,0,88,0.2,0,1 -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,77777,9,999999999,12,0.059,0,88,0.2,0,1 -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,77777,9,999999999,12,0.059,0,88,0.2,0,1 -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,77777,9,999999999,11,0.059,0,88,0.2,0,1 -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,77777,9,999999999,11,0.059,0,88,0.2,0,1 -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,77777,9,999999999,11,0.059,0,88,0.2,0,1 -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,77777,9,999999999,11,0.059,0,88,0.2,0,1 -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,77777,9,999999999,11,0.059,0,88,0.2,0,1 -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,70,82700,0,0,267,0,0,0,0,0,0,0,260,3.6,0,0,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 -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,70,82800,62,978,267,10,159,4,1103,8501,696,137,260,2.1,0,0,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 -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,20764,18802,9026,2783,270,3.1,0,0,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 -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,41440,39747,12593,4460,260,3.1,0,0,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 -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,32,83300,700,1381,315,504,794,101,60442,49540,12152,4722,270,2.6,0,0,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 -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,-1.1,24,82800,817,1381,342,585,732,150,69457,51666,17883,7015,320,1.5,3,3,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 -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,80874,57348,15113,6116,10,4.1,3,3,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 -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,67941,90684,12400,1986,350,5.7,3,3,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 -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,58796,86931,10793,1706,350,4.1,3,3,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 -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,52375,46106,8629,3302,340,2.6,5,5,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 -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,17,83100,401,1381,349,245,489,102,27582,26702,11526,3766,160,7.7,6,6,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 -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,4692,0,4257,1288,150,9.3,9,8,16,6096,9,999999999,11,0.059,0,88,0.2,0,1 -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,6096,9,999999999,11,0.059,0,88,0.2,0,1 -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,6096,9,999999999,11,0.059,0,88,0.2,0,1 -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,6096,9,999999999,11,0.059,0,88,0.2,0,1 -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,3353,9,999999999,12,0.059,0,88,0.2,0,1 -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,3353,9,999999999,12,0.059,0,88,0.2,0,1 -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,6096,9,999999999,12,0.059,0,88,0.2,0,1 -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,6.1,77,82700,0,0,308,0,0,0,0,0,0,0,140,3.1,5,4,16,77777,9,999999999,12,0.059,0,88,0.2,0,1 -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,77777,9,999999999,13,0.058,0,88,0.2,0,1 -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,77777,9,999999999,13,0.058,0,88,0.2,0,1 -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,6096,9,999999999,14,0.058,0,88,0.2,0,1 -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,6096,9,999999999,14,0.058,0,88,0.2,0,1 -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,3658,9,999999999,15,0.058,0,88,0.2,0,1 -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,3.9,93,83000,0,0,289,0,0,0,0,0,0,0,310,1.5,8,6,16,6096,9,999999999,15,0.058,0,88,0.2,0,1 -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,611,0,489,155,310,1.5,10,10,0.4,91,9,999999999,16,0.058,0,88,0.2,0,1 -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,10325,1071,9813,2924,360,10.3,10,10,12.8,244,9,999999999,16,0.058,0,88,0.2,0,1 -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,6931,0,6987,3050,360,7.2,10,10,16,274,9,999999999,17,0.058,0,88,0.2,0,1 -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,5,100,83500,694,1381,314,91,0,91,9271,0,9351,4300,350,8.2,10,10,4,152,9,999999999,17,0.058,0,88,0.2,0,1 -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,96,83600,811,1381,316,100,0,100,10287,0,10379,4941,320,7.7,10,10,3.2,152,9,999999999,18,0.058,0,88,0.2,0,1 -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,5,100,83600,862,1381,314,109,0,109,11259,0,11361,5448,340,8.2,10,10,4.8,152,9,999999999,18,0.058,0,88,0.2,0,1 -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,4.4,96,83700,841,1381,313,106,0,106,10934,0,11033,5272,330,6.2,10,10,4.8,152,9,999999999,17,0.058,0,88,0.2,0,1 -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,4.4,96,83800,752,1381,313,92,0,92,9421,0,9504,4471,320,7.2,10,10,14.4,152,9,999999999,17,0.058,0,88,0.2,0,1 -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,4.4,96,83900,599,1381,313,71,0,71,7181,0,7241,3290,340,5.7,10,10,2.4,152,9,999999999,17,0.058,0,88,0.2,0.5,1 -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,3977,0,4008,1744,350,5.7,10,10,2.4,152,9,999999999,17,0.058,0,88,0.2,0,1 -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,1363,0,1373,558,330,6.7,10,10,2.4,152,9,999999999,17,0.058,0,88,0.2,0,1 -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,17,0.058,0,88,0.2,0,1 -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,152,9,999999999,16,0.058,0,88,0.2,0,1 -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,152,9,999999999,16,0.058,0,88,0.2,0,1 -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,122,9,999999999,16,0.058,0,88,0.2,0,1 -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,152,9,999999999,16,0.058,0,88,0.2,0,1 -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,213,9,999999999,16,0.058,0,88,0.2,0,1 -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,396,9,999999999,15,0.058,0,88,0.2,0,1 -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,14,0.058,0,88,0.2,0,1 -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,14,0.058,0,88,0.2,0,1 -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,13,0.058,0,88,0.2,7.9,1 -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,10,10,9.6,244,9,999999999,13,0.058,0,88,0.2,0,1 -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,10,10,11.2,244,9,999999999,12,0.058,0,88,0.2,0,1 -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,11,0.058,0,88,0.2,0,1 -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,3.9,93,84300,56,933,312,2,0,2,193,0,194,80,90,1.5,10,10,9.6,183,9,999999999,11,0.058,0,88,0.2,0,1 -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,4.4,96,84300,290,1382,313,52,0,52,5122,0,5160,1985,80,2.6,10,10,9.6,183,9,999999999,10,0.058,0,88,0.2,0,1 -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,93,84500,513,1382,319,97,0,97,9734,0,9813,4033,170,2.6,10,10,11.2,244,9,999999999,10,0.058,0,88,0.2,0,1 -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,32263,5809,28767,9313,150,2.1,10,9,14.4,305,9,999999999,9,0.058,0,88,0.2,0,1 -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,35691,4242,32627,11158,120,2.1,9,9,16,457,9,999999999,9,0.058,0,88,0.2,0,1 -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,6.7,80,84400,856,1382,329,333,42,307,37497,3734,34778,12072,70,2.6,10,9,16,457,9,999999999,9,0.058,0,88,0.2,0,1 -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,43739,13071,33708,11667,80,5.2,9,9,16,579,9,999999999,10,0.058,0,88,0.2,0,1 -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,51088,32644,26135,9214,90,5.2,9,8,16,1128,9,999999999,10,0.058,0,88,0.2,0,1 -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,26140,7049,21689,7144,70,6.7,10,9,16,1219,9,999999999,11,0.058,0,88,0.2,0,1 -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,7837,0,7898,3076,240,4.6,10,9,16,1402,9,999999999,11,0.058,0,88,0.2,0,1 -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,1264,0,1272,518,260,5.7,10,10,16,6096,9,999999999,12,0.058,0,88,0.2,0,1 -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,12,0.058,0,88,0.2,0,1 -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,13,0.058,0,88,0.2,0,1 -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,13,0.058,0,88,0.2,0,1 -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,6096,9,999999999,14,0.058,0,88,0.2,0,1 -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,3048,9,999999999,14,0.058,0,88,0.2,0,1 -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,6096,9,999999999,15,0.058,0,88,0.2,0,1 -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,3048,9,999999999,15,0.058,0,88,0.2,0,1 -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,2743,9,999999999,14,0.057,0,88,0.2,0,1 -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,2743,9,999999999,14,0.057,0,88,0.2,0,1 -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,2438,9,999999999,14,0.057,0,88,0.2,0.3,1 -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,6096,9,999999999,14,0.057,0,88,0.2,0,1 -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,6096,9,999999999,13,0.057,0,88,0.2,0,1 -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,13,0.057,0,88,0.2,0,1 -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,96,0,97,40,270,5.7,10,10,0.3,30,9,999999999,13,0.057,0,88,0.2,0,1 -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,3443,0,3468,1420,260,4.1,10,10,0.3,30,9,999999999,13,0.057,0,88,0.2,0,1 -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,27654,15227,19154,5989,270,2.6,10,10,2,30,9,999999999,12,0.057,0,88,0.2,0,1 -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,7,93,83700,683,1383,314,136,0,136,13829,0,13949,5979,250,3.1,8,8,4.8,150,9,999999999,12,0.057,0,88,0.2,0,1 -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,65488,47353,22981,8626,260,3.6,5,5,4.8,77777,9,999999999,12,0.057,0,88,0.2,0,1 -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,80779,55909,14242,5766,310,3.1,5,5,4.8,77777,9,999999999,12,0.057,0,88,0.2,0,1 -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,68035,92084,12867,1948,310,3.6,5,5,4.8,77777,9,999999999,13,0.057,0,88,0.2,0,1 -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,59676,91940,9454,1585,310,3.1,4,4,9.6,77777,9,999999999,13,0.057,0,88,0.2,0,1 -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,49537,43976,12954,4764,10,3.1,5,5,9.6,77777,9,999999999,13,0.057,0,88,0.2,0,1 -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,23936,19985,10489,3446,310,4.6,5,5,12.8,77777,9,999999999,14,0.057,0,88,0.2,0,1 -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,7258,0,4302,1253,290,4.6,9,5,12.8,77777,9,999999999,14,0.057,0,88,0.2,0,1 -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,77777,9,999999999,14,0.057,0,88,0.2,0,1 -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,77777,9,999999999,15,0.057,0,88,0.2,0,1 -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,6.7,80,83500,0,0,306,0,0,0,0,0,0,0,300,3.1,3,3,16,77777,9,999999999,15,0.057,0,88,0.2,0,1 -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,77777,9,999999999,15,0.057,0,88,0.2,0,1 -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,77777,9,999999999,15,0.057,0,88,0.2,0,1 -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,77777,9,999999999,16,0.057,0,88,0.2,0,1 -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,16,0.057,0,88,0.2,0,1 -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,77777,9,999999999,15,0.056,0,88,0.2,0,1 -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,77777,9,999999999,15,0.056,0,88,0.2,0,1 -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,77777,9,999999999,15,0.056,0,88,0.2,0,1 -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,1.7,79,83100,0,0,269,0,0,0,0,0,0,0,200,4.6,0,0,16,77777,9,999999999,15,0.056,0,88,0.2,0,1 -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.6,73,83200,0,0,279,0,0,0,0,0,0,0,200,5.7,3,3,16,77777,9,999999999,14,0.056,0,88,0.2,0,1 -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,77777,9,999999999,14,0.056,0,88,0.2,0,1 -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,552,5911,525,105,200,5.2,3,3,16,77777,9,999999999,14,0.056,0,88,0.2,0,1 -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,56,83300,280,1384,292,176,454,84,19345,17148,9268,2742,210,5.2,3,3,16,77777,9,999999999,14,0.056,0,88,0.2,0,1 -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,41053,39118,9201,3346,210,4.6,3,3,16,77777,9,999999999,14,0.056,0,88,0.2,0,1 -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,56349,91532,11072,1554,270,2.1,5,5,16,77777,9,999999999,13,0.056,0,88,0.2,0,1 -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,63497,91867,10051,1717,150,1.5,5,5,16,77777,9,999999999,13,0.056,0,88,0.2,0,1 -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,76706,54554,12104,4917,70,3.6,5,5,16,77777,9,999999999,13,0.056,0,88,0.2,0,1 -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,66738,92796,11231,1858,30,2.1,3,3,16,77777,9,999999999,13,0.056,0,88,0.2,0,1 -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,65566,53080,12235,4806,350,1.5,4,3,16,77777,9,999999999,13,0.056,0,88,0.2,0,1 -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,44059,40140,14161,5107,50,2.6,4,4,16,77777,9,999999999,13,0.056,0,88,0.2,0,1 -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,-3.3,27,83500,376,1384,322,256,576,99,28674,29834,11130,3569,0,0,5,5,16,77777,9,999999999,13,0.056,0,88,0.2,0,1 -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,2533,0,2551,923,200,1.5,9,8,16,3048,9,999999999,12,0.056,0,88,0.2,0,1 -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,44,83400,0,81,311,0,0,0,0,0,0,0,240,2.6,5,5,16,77777,9,999999999,12,0.056,0,88,0.2,0,1 -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,-1.1,45,83400,0,0,298,0,0,0,0,0,0,0,290,3.6,3,3,16,77777,9,999999999,12,0.056,0,88,0.2,0,1 -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,-1.7,43,83300,0,0,297,0,0,0,0,0,0,0,280,2.6,3,3,16,77777,9,999999999,12,0.056,0,88,0.2,0,1 -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,-1.7,43,83400,0,0,297,0,0,0,0,0,0,0,250,3.1,3,3,16,77777,9,999999999,12,0.056,0,88,0.2,0,1 -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,6096,9,999999999,12,0.056,0,88,0.2,0,1 -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,4,4,16,6096,9,999999999,12,0.056,0,88,0.2,0,1 -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,77777,9,999999999,11,0.056,0,88,0.2,0,1 -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,77777,9,999999999,11,0.056,0,88,0.2,0,1 -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,77777,9,999999999,11,0.056,0,88,0.2,0,1 -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,77777,9,999999999,10,0.056,0,88,0.2,0,1 -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,77777,9,999999999,10,0.056,0,88,0.2,0,1 -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,77777,9,999999999,10,0.056,0,88,0.2,0,1 -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,77777,9,999999999,10,0.056,0,88,0.2,0,1 -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,556,8071,356,75,220,5.7,0,0,16,77777,9,999999999,9,0.056,0,88,0.2,0,1 -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,21950,19401,7000,2222,230,4.6,0,0,16,77777,9,999999999,9,0.056,0,88,0.2,0,1 -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,-1.7,43,83500,496,1385,285,364,846,59,43705,40694,7100,2623,240,4.6,0,0,16,77777,9,999999999,9,0.056,0,88,0.2,0,1 -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,60820,51875,11092,4286,240,2.6,0,0,16,77777,9,999999999,8,0.056,0,88,0.2,0,1 -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,40,83300,788,1385,300,611,962,61,65300,96438,8958,1610,260,2.1,0,0,16,77777,9,999999999,8,0.056,0,88,0.2,0,1 -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,36,83600,837,1385,308,642,914,87,67914,91794,12429,1952,110,2.6,0,0,16,77777,9,999999999,8,0.056,0,88,0.2,0,1 -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,73873,54459,13188,5299,100,2.1,0,0,16,77777,9,999999999,9,0.056,0,88,0.2,0,1 -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,62006,48994,10527,4159,80,1.5,3,3,16,77777,9,999999999,9,0.056,0,88,0.2,0,1 -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,50204,45053,7901,2998,70,3.1,3,3,16,77777,9,999999999,9,0.056,0,88,0.2,0,1 -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,28325,26086,6243,2187,60,3.1,3,3,16,77777,9,999999999,9,0.056,0,88,0.2,0,1 -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,5680,0,2845,885,60,3.6,5,5,16,77777,9,999999999,10,0.056,0,88,0.2,0,1 -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,52,83400,0,35,297,0,0,0,0,0,0,0,40,3.6,3,3,16,77777,9,999999999,10,0.056,0,88,0.2,0,1 -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,77777,9,999999999,10,0.056,0,88,0.2,0,1 -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,60,83300,0,0,281,0,0,0,0,0,0,0,80,2.1,1,1,16,77777,9,999999999,11,0.056,0,88,0.2,0,1 -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,67,83200,0,0,278,0,0,0,0,0,0,0,190,3.6,3,2,16,77777,9,999999999,11,0.056,0,88,0.2,0,1 -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,77777,9,999999999,11,0.056,0,88,0.2,0,1 -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,77777,9,999999999,12,0.056,0,88,0.2,0,1 -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,-1.1,64,83200,0,0,275,0,0,0,0,0,0,0,200,4.6,2,2,16,77777,9,999999999,12,0.056,0,88,0.2,0,1 -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,77777,9,999999999,13,0.055,0,88,0.2,0,1 -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,77777,9,999999999,13,0.055,0,88,0.2,0,1 -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,77777,9,999999999,14,0.055,0,88,0.2,0,1 -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,77777,9,999999999,15,0.055,0,88,0.2,0,1 -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,77777,9,999999999,15,0.055,0,88,0.2,0,1 -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,73,83300,0,0,274,0,0,0,0,0,0,0,240,2.1,4,2,16,7620,9,999999999,16,0.055,0,88,0.2,0,1 -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,334,3875,355,74,220,2.6,3,1,16,7620,9,999999999,17,0.055,0,88,0.2,0,1 -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,15803,11380,8318,2507,240,1.5,2,1,16,7620,9,999999999,17,0.055,0,88,0.2,0,1 -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,35299,33290,12077,4206,0,0,4,2,16,7620,9,999999999,18,0.055,0,88,0.2,0,1 -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,47447,35300,23618,8035,70,2.1,5,4,16,7620,9,999999999,19,0.055,0,88,0.2,0,1 -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,64696,48232,15217,5988,90,2.1,3,2,16,7620,9,999999999,19,0.055,0,88,0.2,0,1 -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,5.6,53,83800,831,1385,327,545,577,197,63341,43147,23008,8763,100,4.1,4,3,16,7620,9,999999999,19,0.055,0,88,0.2,0,1 -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,72792,53096,15167,6036,80,3.6,5,4,16,7620,9,999999999,19,0.055,0,88,0.2,0,1 -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,63290,51640,19375,7199,60,6.7,5,4,16,7620,9,999999999,19,0.055,0,88,0.2,0,1 -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,25317,7384,20868,6782,50,5.2,9,6,16,7620,9,999999999,19,0.055,0,88,0.2,0,1 -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,7226,0,7282,2818,360,6.2,9,5,16,6706,9,999999999,19,0.055,0,88,0.2,0,1 -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,5050,0,3853,1111,280,5.2,9,8,16,6706,9,999999999,19,0.055,0,88,0.2,0,1 -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,7.2,83,83500,0,12,312,0,0,0,0,0,0,0,290,5.2,7,5,12.8,6706,9,999999999,18,0.055,0,88,0.2,0,1 -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,10,4,12.8,6096,9,999999999,18,0.055,0,88,0.2,0,1 -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,18,0.055,0,88,0.2,0,1 -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,18,0.055,0,88,0.2,0,1 -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,93,83200,0,0,290,0,0,0,0,0,0,0,140,2.1,9,4,8,6096,9,999999999,18,0.055,0,88,0.2,0,1 -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,3353,9,999999999,18,0.055,0,88,0.2,0,1 -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,93,83100,0,0,290,0,0,0,0,0,0,0,130,3.1,8,4,11.2,3658,9,999999999,18,0.055,0,88,0.2,0,1 -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,3658,9,999999999,17,0.054,0,88,0.2,0,1 -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,6096,9,999999999,17,0.054,0,88,0.2,0,1 -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,6096,9,999999999,17,0.054,0,88,0.2,0,1 -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,6096,9,999999999,16,0.054,0,88,0.2,0,1 -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,10,9,16,2438,9,999999999,16,0.054,0,88,0.2,0,1 -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,2438,9,999999999,16,0.054,0,88,0.2,0,1 -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,96,0,97,40,140,3.6,10,8,16,3353,9,999999999,15,0.054,0,88,0.2,0,1 -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,8.9,93,83100,264,1386,320,54,0,54,5296,0,5335,1977,130,3.6,9,7,16,5486,9,999999999,15,0.054,0,88,0.2,0,1 -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,10504,0,10588,4184,250,3.6,9,5,8,6096,9,999999999,14,0.054,0,88,0.2,0,1 -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,25324,962,24785,8264,270,2.6,10,7,9.6,6096,9,999999999,14,0.054,0,88,0.2,0,1 -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,30238,2485,28477,9970,280,2.1,9,8,11.2,3353,9,999999999,14,0.054,0,88,0.2,0,1 -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,7.8,62,83100,826,1386,338,103,0,103,10592,0,10687,5098,220,3.1,9,6,16,6096,9,999999999,14,0.054,0,88,0.2,0,1 -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,33416,5899,28818,10264,310,5.7,10,7,9.6,6096,9,999999999,13,0.054,0,88,0.2,0,1 -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,18567,817,17948,6735,300,4.6,8,6,9.6,6096,9,999999999,13,0.054,0,88,0.2,0,1 -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,26495,9586,20834,6731,360,4.1,10,7,9.6,6096,9,999999999,13,0.054,0,88,0.2,0,1 -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,21083,16577,11139,3500,110,5.2,9,7,16,6096,9,999999999,12,0.054,0,88,0.2,0,1 -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,5938,0,3639,1051,250,4.1,10,10,16,6096,9,999999999,12,0.054,0,88,0.2,0,1 -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,7.2,83,82700,0,0,318,0,0,0,0,0,0,0,280,3.6,8,7,16,7620,9,999999999,12,0.054,0,88,0.2,0,1 -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,6858,9,999999999,12,0.054,0,88,0.2,0,1 -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,6096,9,999999999,11,0.054,0,88,0.2,0,1 -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,6096,9,999999999,11,0.054,0,88,0.2,0,1 -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,2134,9,999999999,11,0.054,0,88,0.2,0,1 -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,2134,9,999999999,10,0.054,0,88,0.2,0,1 -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,1219,9,999999999,10,0.054,0,88,0.2,0,1 -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,30,9,999999999,10,0.054,0,88,0.2,0,1 -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,30,9,999999999,10,0.054,0,88,0.2,0,1 -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,10,0.054,0,88,0.2,0.3,1 -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,10,0.054,0,88,0.2,0,1 -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,1981,9,999999999,10,0.054,0,88,0.2,0,1 -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,10,10,11.2,2316,9,999999999,10,0.054,0,88,0.2,0,1 -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,131,0,130,40,80,3.1,9,9,16,3353,9,999999999,10,0.054,0,88,0.2,0,1 -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,9881,954,9376,2657,100,2.6,9,9,16,2438,9,999999999,10,0.054,0,88,0.2,0,1 -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,14099,0,14212,5110,130,3.1,8,8,16,2438,9,999999999,10,0.054,0,88,0.2,0,1 -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,26149,3409,24039,8056,130,3.6,8,8,16,2591,9,999999999,10,0.054,0,88,0.2,0,1 -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,61123,45112,21902,8160,160,3.6,5,5,16,77777,9,999999999,10,0.054,0,88,0.2,0,1 -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,72875,52333,13062,5258,290,3.1,4,4,16,77777,9,999999999,10,0.054,0,88,0.2,0,1 -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,71320,52380,11781,4734,260,5.2,4,4,16,77777,9,999999999,10,0.054,0,88,0.2,0,1 -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,58849,47329,10831,4246,270,4.6,3,3,16,77777,9,999999999,10,0.054,0,88,0.2,0,1 -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,45598,41593,8541,3205,280,2.1,3,3,16,77777,9,999999999,10,0.054,0,88,0.2,0,1 -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,27096,23283,5120,1800,290,4.1,3,3,16,77777,9,999999999,10,0.054,0,88,0.2,0,1 -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,5265,0,2293,717,270,3.6,5,5,16,77777,9,999999999,10,0.054,0,88,0.2,0,1 -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,77777,9,999999999,10,0.054,0,88,0.2,0,1 -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,77777,9,999999999,10,0.054,0,88,0.2,0,1 -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,1,1,16,77777,9,999999999,10,0.054,0,88,0.2,0,1 -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.6,67,83000,0,0,267,0,0,0,0,0,0,0,150,3.6,1,0,16,77777,9,999999999,10,0.054,0,88,0.2,0,1 -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,77777,9,999999999,10,0.054,0,88,0.2,0,1 -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,77777,9,999999999,10,0.054,0,88,0.2,0,1 -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,77777,9,999999999,10,0.054,0,88,0.2,0,1 -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,77777,9,999999999,10,0.053,0,88,0.2,0,1 -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,77777,9,999999999,9,0.053,0,88,0.2,0,1 -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,77777,9,999999999,9,0.053,0,88,0.2,0,1 -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,77777,9,999999999,9,0.053,0,88,0.2,0,1 -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,77777,9,999999999,9,0.053,0,88,0.2,0,1 -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,7620,9,999999999,9,0.053,0,88,0.2,0,1 -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,130,0,130,40,240,3.6,8,4,16,77777,9,999999999,9,0.053,0,88,0.2,0,1 -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.6,67,83000,254,1388,275,101,106,82,11017,3656,8979,2558,240,3.6,4,2,16,6706,9,999999999,9,0.053,0,88,0.2,0,1 -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,40301,42301,14952,4888,270,5.2,1,1,16,6706,9,999999999,9,0.053,0,88,0.2,0,1 -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,54074,91157,10989,1493,260,3.1,2,2,16,77777,9,999999999,9,0.053,0,88,0.2,0,1 -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,66,83000,765,1388,309,549,781,117,65700,49719,14052,5532,310,1.5,3,3,16,77777,9,999999999,9,0.053,0,88,0.2,0,1 -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,72417,53903,17614,6912,0,0,6,5,16,6706,9,999999999,9,0.053,0,88,0.2,0,1 -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,51792,29271,29957,10432,250,2.1,1,1,16,6706,9,999999999,9,0.053,0,88,0.2,0,1 -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,3.9,47,83200,703,1388,318,513,765,124,60503,49643,14680,5617,170,2.1,1,1,16,6706,9,999999999,10,0.053,0,88,0.2,0,1 -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,44796,40409,9839,3650,80,2.6,1,0,16,77777,9,999999999,10,0.053,0,88,0.2,0,1 -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,3.3,45,83200,347,1388,333,194,482,73,22037,18931,8318,2762,10,3.1,6,6,16,77777,9,999999999,10,0.053,0,88,0.2,0,1 -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,5015,0,2904,865,350,4.6,9,9,16,6706,9,999999999,11,0.053,0,88,0.2,0,1 -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,6706,9,999999999,11,0.053,0,88,0.2,0,1 -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,77777,9,999999999,11,0.053,0,88,0.2,0,1 -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,77777,9,999999999,11,0.053,0,88,0.2,0,1 -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,77777,9,999999999,12,0.053,0,88,0.2,0,1 -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,77777,9,999999999,12,0.053,0,88,0.2,0,1 -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,77777,9,999999999,12,0.053,0,88,0.2,0,1 -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,77777,9,999999999,12,0.053,0,88,0.2,0,1 -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,77777,9,999999999,11,0.052,0,88,0.2,0,1 -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,77777,9,999999999,11,0.052,0,88,0.2,0,1 -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,77777,9,999999999,10,0.052,0,88,0.2,0,1 -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,77777,9,999999999,10,0.052,0,88,0.2,0,1 -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,85,82800,0,0,256,0,0,0,0,0,0,0,240,4.1,0,0,16,6096,9,999999999,10,0.052,0,88,0.2,0,1 -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,183,9,999999999,9,0.052,0,88,0.2,0,1 -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,244,9,999999999,9,0.052,0,88,0.2,0,1 -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,17802,14628,11818,2851,10,4.1,10,10,16,244,9,999999999,8,0.052,0,88,0.2,0,1 -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,3.3,89,82800,469,1388,312,191,107,154,21078,7297,17073,5309,360,2.1,10,10,12.8,183,9,999999999,8,0.052,0,88,0.2,0,1 -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,4,93,82800,643,1388,313,195,6,192,21956,460,21724,7436,320,3.6,10,10,1.6,120,9,999999999,8,0.052,0,88,0.2,0,1 -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,3.9,93,82800,759,1388,312,106,0,106,10859,0,10954,5066,340,2.1,10,10,2.4,122,9,999999999,7,0.052,0,88,0.2,0,1 -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,5,93,82700,808,1388,318,97,0,97,9972,0,10061,4794,20,2.1,10,10,2.8,120,9,999999999,7,0.052,0,88,0.2,0.3,1 -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,5,93,82700,787,1388,318,94,0,94,9648,0,9733,4620,0,0,10,10,2.8,90,9,999999999,7,0.052,0,88,0.2,0,1 -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,96,82600,697,1388,316,108,0,108,11004,0,11099,4986,280,1.5,10,10,1.6,183,9,999999999,7,0.052,0,88,0.2,0,1 -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,93,82600,545,1388,319,76,0,76,7647,0,7710,3373,260,3.6,10,10,9.6,183,9,999999999,7,0.052,0,88,0.2,0.3,1 -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,6231,0,6278,2449,100,3.1,9,8,11.2,2896,9,999999999,7,0.052,0,88,0.2,0,1 -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,93,82300,104,1284,319,8,0,8,775,0,781,317,310,2.6,10,10,14.4,1981,9,999999999,6,0.052,0,88,0.2,0,1 -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,96,82400,0,0,308,0,0,0,0,0,0,0,270,2.6,9,9,9.6,3048,9,999999999,6,0.052,0,88,0.2,0,1 -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,96,82400,0,0,316,0,0,0,0,0,0,0,260,6.2,10,10,9.6,549,9,999999999,6,0.052,0,88,0.2,0,1 -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,6,0.052,0,88,0.2,0,1 -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,6,0.052,0,88,0.2,0,1 -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,1219,9,999999999,6,0.052,0,88,0.2,1.3,1 -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,92,82300,0,0,283,0,0,0,0,0,0,0,170,6.7,10,10,16,1981,9,999999999,6,0.052,0,88,0.2,0,1 -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,2896,9,999999999,5,0.052,0,88,0.2,0,1 -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,1158,9,999999999,8,0.052,0,88,0.2,0,1 -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,-6.7,91,83600,0,0,260,0,0,0,0,0,0,0,20,3.6,10,10,4.8,1250,9,999999999,8,0.052,0,88,0.2,0,1 -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,8,0.052,0,88,0.2,0,1 -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,86,83700,0,0,244,0,0,0,0,0,0,0,90,1.5,10,10,16,945,9,999999999,8,0.052,0,88,0.2,0,1 -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,8,0.052,0,88,0.2,0,1 -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,9,0.052,0,88,0.2,0,1 -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,9,0.052,0,88,0.2,0,1 -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,11162,3668,9357,2554,120,3.1,10,9,11.2,1067,9,999999999,9,0.052,0,88,0.2,0,1 -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,5717,0,5762,2489,110,2.6,10,9,16,3962,9,999999999,8,0.052,0,88,0.2,0,1 -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,9260,0,9337,4160,120,3.6,10,5,16,77777,9,999999999,8,0.052,0,88,0.2,0,1 -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,-6.7,86,83900,756,1388,247,187,0,187,19203,0,19370,7992,80,4.1,10,8,16,701,9,999999999,8,0.052,0,88,0.2,0,1 -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,87,83700,805,1388,261,139,0,139,14326,0,14453,6519,110,4.1,10,9,16,640,9,999999999,8,0.052,0,88,0.2,0,1 -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,-6.1,91,83600,783,1388,260,100,0,100,10292,0,10382,4866,360,6.2,10,10,1.6,701,9,999999999,9,0.052,0,88,0.2,0,1 -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,13385,0,13498,5828,10,5.7,10,10,2,91,9,999999999,9,0.052,0,88,0.2,0,1 -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,8782,0,8853,3766,10,5.7,10,10,2,30,9,999999999,9,0.052,0,88,0.2,0,1 -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,6649,0,6698,2553,360,4.1,10,10,2,30,9,999999999,9,0.052,0,88,0.2,0,1 -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,1556,0,1566,579,340,3.6,10,10,0.4,30,9,999999999,9,0.052,0,88,0.2,0,1 -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,9,0.052,0,88,0.2,0,1 -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,9,0.052,0,88,0.2,0,1 -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,10,10,0.4,30,9,999999999,10,0.052,0,88,0.2,0,1 -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,10,10,0.4,30,9,999999999,10,0.052,0,88,0.2,0,1 -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,10,10,1.2,30,9,999999999,10,0.052,0,88,0.2,0,1 -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,10,10,1.2,91,9,999999999,10,0.052,0,88,0.2,0,1 -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,10,10,1.2,91,9,999999999,10,0.052,0,88,0.2,0,1 -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,10,0.051,0,88,0.2,0,1 -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,10,10,2.4,91,9,999999999,10,0.051,0,88,0.2,0,1 -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,9,0.051,0,88,0.2,0,1 -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,10,10,1.6,91,9,999999999,9,0.051,0,88,0.2,0,1 -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,10,10,1.6,91,9,999999999,9,0.051,0,88,0.2,0,1 -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,9,0.051,0,88,0.2,0,1 -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,10,10,0.8,61,9,999999999,9,0.051,0,88,0.2,0,1 -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,2755,0,2774,1119,0,0,10,10,0.8,61,9,999999999,10,0.051,0,88,0.2,0,1 -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,-5.6,95,83000,461,1389,261,106,0,106,10621,0,10705,4097,0,0,10,10,2.4,61,9,999999999,9,0.051,0,88,0.2,0,1 -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,13927,0,14043,5787,0,0,10,10,2,61,9,999999999,9,0.051,0,88,0.2,0,1 -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,10877,0,10972,5035,0,0,10,10,0.8,122,9,999999999,9,0.051,0,88,0.2,0,1 -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,12466,0,12576,5781,30,2.1,10,10,2.4,122,9,999999999,9,0.051,0,88,0.2,0,1 -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,15119,0,15252,6726,20,1.5,10,10,2.4,183,9,999999999,9,0.051,0,88,0.2,0,1 -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,25085,1970,23848,8205,0,0,10,10,2.4,244,9,999999999,8,0.051,0,88,0.2,0,1 -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,83,83000,536,1389,263,211,88,177,23431,6732,19750,6279,20,3.1,9,9,2.4,3048,9,999999999,9,0.051,0,88,0.2,0,1 -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,83,83100,333,1389,248,139,184,95,15406,8749,10569,3239,10,3.1,6,5,2.4,77777,9,999999999,9,0.051,0,88,0.2,0,1 -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,3332,0,1841,573,330,4.1,6,5,2.4,77777,9,999999999,9,0.051,0,88,0.2,0,1 -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,9,0.051,0,88,0.2,0,1 -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,10,10,2.4,1433,9,999999999,8,0.051,0,88,0.2,0,1 -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,87,83300,0,0,268,0,0,0,0,0,0,0,270,2.1,10,10,6.4,1494,9,999999999,8,0.051,0,88,0.2,0,1 -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,7,0.051,0,88,0.2,0,1 -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,10,10,1.6,396,9,999999999,7,0.051,0,88,0.2,0,1 -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,-5.6,95,83500,0,0,261,0,0,0,0,0,0,0,70,2.1,10,10,1.6,213,9,999999999,7,0.051,0,88,0.2,0,1 -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,6,0.051,0,88,0.2,0,1 -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,95,83300,0,0,264,0,0,0,0,0,0,0,170,2.1,10,10,2.4,549,9,999999999,6,0.051,0,88,0.2,0,1 -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,95,83300,0,0,264,0,0,0,0,0,0,0,0,0,10,10,3.2,518,9,999999999,6,0.051,0,88,0.2,0,1 -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,-5.6,95,83300,0,0,261,0,0,0,0,0,0,0,150,1.5,10,10,4.8,823,9,999999999,6,0.051,0,88,0.2,0,1 -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,95,83400,0,0,257,0,0,0,0,0,0,0,230,1.5,9,9,1.6,335,9,999999999,7,0.051,0,88,0.2,0,1 -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,95,83700,0,0,264,0,0,0,0,0,0,0,220,3.1,10,10,4.8,914,9,999999999,7,0.051,0,88,0.2,0,1 -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,6,0.051,0,88,0.2,0,1 -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,6,0.051,0,88,0.2,0,1 -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,4722,0,4755,1728,210,4.6,2,2,16,77777,9,999999999,5,0.051,0,88,0.2,0,1 -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,5711,0,5756,2469,200,5.2,3,3,16,77777,9,999999999,5,0.051,0,88,0.2,0,1 -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,7925,0,7991,3615,210,3.6,2,2,16,77777,9,999999999,5,0.051,0,88,0.2,0,1 -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,11488,0,11588,5262,200,3.1,3,3,16,77777,9,999999999,4,0.051,0,88,0.2,0,1 -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,-8.9,47,83900,793,1390,240,163,0,163,16795,0,16942,7368,190,2.6,0,0,16,77777,9,999999999,4,0.051,0,88,0.2,0,1 -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,37669,10415,30758,10383,180,2.6,3,3,16,77777,9,999999999,4,0.051,0,88,0.2,0,1 -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,31689,7378,27374,8923,170,3.6,2,2,16,77777,9,999999999,4,0.051,0,88,0.2,0,1 -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,24554,9091,19647,6212,140,3.1,3,3,16,77777,9,999999999,4,0.051,0,88,0.2,0,1 -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,17823,14414,8601,2765,140,2.6,2,2,16,77777,9,999999999,3,0.051,0,88,0.2,0,1 -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,3744,0,2046,622,150,3.6,3,3,16,77777,9,999999999,3,0.051,0,88,0.2,0,1 -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,77777,9,999999999,3,0.051,0,88,0.2,0,1 -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,77777,9,999999999,3,0.051,0,88,0.2,0,1 -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,-11.1,59,83500,0,0,221,0,0,0,0,0,0,0,170,5.2,0,0,16,77777,9,999999999,3,0.051,0,88,0.2,0,1 -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,77777,9,999999999,3,0.051,0,88,0.2,0,1 -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,77777,9,999999999,3,0.051,0,88,0.2,0,1 -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,77777,9,999999999,3,0.051,0,88,0.2,0,1 -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,75,83100,0,0,217,0,0,0,0,0,0,0,160,3.1,0,0,16,77777,9,999999999,3,0.051,0,88,0.2,0,1 -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,-8.9,71,83000,0,0,228,0,0,0,0,0,0,0,240,3.1,1,1,16,77777,9,999999999,3,0.05,0,88,0.2,0,1 -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,-8.9,71,83000,0,0,235,0,0,0,0,0,0,0,190,2.1,5,4,16,77777,9,999999999,3,0.05,0,88,0.2,0,1 -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,77777,9,999999999,4,0.05,0,88,0.2,0,1 -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,6096,9,999999999,5,0.05,0,88,0.2,0,1 -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,6096,9,999999999,5,0.05,0,88,0.2,0,1 -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,6096,9,999999999,5,0.05,0,88,0.2,0,1 -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,-7.8,79,82700,25,637,236,0,0,0,0,0,0,0,270,4.1,10,4,16,6096,9,999999999,6,0.05,0,88,0.2,0,1 -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,6685,0,6732,2166,280,3.6,9,5,16,6706,9,999999999,6,0.05,0,88,0.2,0,1 -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,11416,0,11505,4262,270,1.5,8,5,14.4,6096,9,999999999,6,0.05,0,88,0.2,0,1 -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,9243,0,9320,4117,270,3.1,7,5,16,3962,9,999999999,7,0.05,0,88,0.2,0,1 -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,15994,0,16132,6880,230,2.6,9,5,16,4572,9,999999999,7,0.05,0,88,0.2,0,1 -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,14928,0,15059,6683,270,2.1,9,9,16,4572,9,999999999,7,0.05,0,88,0.2,0,1 -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,41776,17612,29666,10100,300,3.1,5,5,16,77777,9,999999999,7,0.05,0,88,0.2,0,1 -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,46860,36812,19796,7086,340,3.6,7,6,16,6706,9,999999999,7,0.05,0,88,0.2,0,1 -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,34574,30739,13560,4726,350,2.6,9,7,16,6706,9,999999999,7,0.05,0,88,0.2,0,1 -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,16931,12452,9614,2986,250,3.1,8,5,16,6706,9,999999999,6,0.05,0,88,0.2,0,1 -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,971,0,977,377,320,2.1,7,7,16,6706,9,999999999,6,0.05,0,88,0.2,0,1 -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,3658,9,999999999,5,0.05,0,88,0.2,0,1 -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,-5,66,82600,0,0,261,0,0,0,0,0,0,0,180,2.1,9,6,16,3658,9,999999999,5,0.05,0,88,0.2,0,1 -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,76,82600,0,0,246,0,0,0,0,0,0,0,70,2.1,5,2,16,6096,9,999999999,5,0.05,0,88,0.2,0,1 -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,6096,9,999999999,5,0.05,0,88,0.2,0,1 -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,6096,9,999999999,5,0.05,0,88,0.2,0,1 -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,77777,9,999999999,4,0.05,0,88,0.2,0,1 -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,6096,9,999999999,5,0.05,0,88,0.2,0,1 -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,6096,9,999999999,5,0.049,0,88,0.2,0,1 -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,77777,9,999999999,5,0.049,0,88,0.2,0,1 -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,77777,9,999999999,5,0.049,0,88,0.2,0,1 -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,3048,9,999999999,5,0.049,0,88,0.2,0,1 -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,-9.4,68,83000,0,0,234,0,0,0,0,0,0,0,140,1.5,4,4,16,77777,9,999999999,5,0.049,0,88,0.2,0,1 -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,77777,9,999999999,5,0.049,0,88,0.2,0,1 -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,77777,9,999999999,4,0.049,0,88,0.2,0,1 -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,13861,9649,8480,2302,230,3.1,3,3,16,77777,9,999999999,4,0.049,0,88,0.2,0,1 -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,20443,7089,16894,5072,240,3.1,3,3,16,77777,9,999999999,4,0.049,0,88,0.2,0,1 -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,29698,8409,24954,7889,210,3.1,0,0,16,77777,9,999999999,4,0.049,0,88,0.2,0,1 -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,43347,21724,29171,9707,270,3.6,3,3,16,77777,9,999999999,4,0.049,0,88,0.2,0,1 -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,56166,39600,25640,9221,270,4.6,3,3,16,77777,9,999999999,4,0.049,0,88,0.2,0,1 -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,65529,52780,14186,5548,290,3.6,3,3,16,77777,9,999999999,4,0.049,0,88,0.2,0,1 -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,60433,51234,9180,3571,290,3.1,1,1,16,77777,9,999999999,4,0.049,0,88,0.2,0,1 -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,-8.9,23,83700,520,1391,278,377,845,60,45464,43047,7251,2695,330,2.1,0,0,16,77777,9,999999999,5,0.049,0,88,0.2,0,1 -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,21215,61804,5435,800,0,0,0,0,16,77777,9,999999999,5,0.049,0,88,0.2,0,1 -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,3533,21027,1998,276,100,2.6,0,0,16,77777,9,999999999,5,0.049,0,88,0.2,0,1 -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,77777,9,999999999,5,0.049,0,88,0.2,0,1 -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,77777,9,999999999,5,0.049,0,88,0.2,0,1 -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,56,83600,0,0,252,0,0,0,0,0,0,0,190,3.1,0,0,16,77777,9,999999999,5,0.049,0,88,0.2,0,1 -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,77777,9,999999999,5,0.049,0,88,0.2,0,1 -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,77777,9,999999999,6,0.049,0,88,0.2,0,1 -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,77777,9,999999999,6,0.049,0,88,0.2,0,1 -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,77777,9,999999999,6,0.049,0,88,0.2,0,1 -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,6096,9,999999999,6,0.049,0,88,0.2,0,1 -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,6096,9,999999999,6,0.049,0,88,0.2,0,1 -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,77777,9,999999999,6,0.049,0,88,0.2,0,1 -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,77777,9,999999999,6,0.049,0,88,0.2,0,1 -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,77777,9,999999999,7,0.049,0,88,0.2,0,1 -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,77777,9,999999999,6,0.049,0,88,0.2,0,1 -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,77777,9,999999999,6,0.049,0,88,0.2,0,1 -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,-6,45,83900,220,1392,258,140,394,78,15121,11839,8458,2267,0,0,0,0,16.1,77777,9,999999999,5,0.049,0,88,0.2,0,1 -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,37416,40516,11299,3807,140,2.1,0,0,16,77777,9,999999999,5,0.049,0,88,0.2,0,1 -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,51692,47320,11841,4424,130,2.6,0,0,16,77777,9,999999999,5,0.049,0,88,0.2,0,1 -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,58446,88947,12100,1660,130,3.1,0,0,16,77777,9,999999999,5,0.049,0,88,0.2,0,1 -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,62904,93801,9531,1634,120,4.1,0,0,16,77777,9,999999999,5,0.049,0,88,0.2,0,1 -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,-6.1,21,84200,755,1392,301,582,956,62,61803,94937,9145,1571,110,5.2,0,0,16,77777,9,999999999,5,0.049,0,88,0.2,0,1 -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,53639,90546,9264,1455,140,4.1,0,0,16,77777,9,999999999,5,0.049,0,88,0.2,0,1 -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,39272,79303,9011,1213,120,6.2,0,0,16,77777,9,999999999,5,0.049,0,88,0.2,0,1 -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,21666,63020,5894,805,120,4.6,0,0,16,77777,9,999999999,5,0.049,0,88,0.2,0,1 -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,3128,20514,1678,256,130,2.6,1,0,16,77777,9,999999999,5,0.049,0,88,0.2,0,1 -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,-2.8,55,83800,0,0,264,0,0,0,0,0,0,0,160,6.2,0,0,16,77777,9,999999999,5,0.049,0,88,0.2,0,1 -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,77777,9,999999999,5,0.049,0,88,0.2,0,1 -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,77777,9,999999999,4,0.049,0,88,0.2,0,1 -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,44,83800,0,0,265,0,0,0,0,0,0,0,240,7.2,0,0,16,77777,9,999999999,4,0.049,0,88,0.2,0,1 -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,44,83800,0,0,265,0,0,0,0,0,0,0,220,7.7,0,0,16,77777,9,999999999,4,0.049,0,88,0.2,0,1 -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,77777,9,999999999,3,0.049,0,88,0.2,0,1 -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,77777,9,999999999,3,0.049,0,88,0.2,0,1 -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,-7.2,38,83400,0,0,260,0,0,0,0,0,0,0,210,7.7,0,0,16,77777,9,999999999,3,0.048,0,88,0.2,0,1 -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,-7.8,36,83400,0,0,260,0,0,0,0,0,0,0,210,7.7,0,0,16,77777,9,999999999,3,0.048,0,88,0.2,0,1 -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,77777,9,999999999,3,0.048,0,88,0.2,0,1 -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,-9.4,31,83300,0,0,258,0,0,0,0,0,0,0,210,8.2,0,0,16,77777,9,999999999,2,0.048,0,88,0.2,0,1 -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,29,83400,0,0,260,0,0,0,0,0,0,0,200,8.2,0,0,16,77777,9,999999999,2,0.048,0,88,0.2,0,1 -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,77777,9,999999999,2,0.048,0,88,0.2,0,1 -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,77777,9,999999999,2,0.048,0,88,0.2,0,1 -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,24,83500,215,1393,284,112,265,71,12173,7023,7746,2134,210,7.7,5,4,16,77777,9,999999999,2,0.048,0,88,0.2,0,1 -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,31297,31295,13579,4346,220,8.2,6,4,16,77777,9,999999999,2,0.048,0,88,0.2,0,1 -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,-8.3,18,83600,607,1393,316,340,350,187,38157,27692,21088,7013,220,5.7,10,5,16,6706,9,999999999,2,0.048,0,88,0.2,0,1 -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,41239,19092,29107,9589,220,5.7,10,4,16,6706,9,999999999,2,0.048,0,88,0.2,0,1 -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,31517,3732,28963,9959,250,5.7,10,4,16,6706,9,999999999,3,0.048,0,88,0.2,0,1 -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,20425,456,20167,7500,340,2.6,9,4,16,6706,9,999999999,3,0.048,0,88,0.2,0,1 -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,33045,13524,24659,8179,10,3.6,8,4,16,6706,9,999999999,4,0.048,0,88,0.2,0,1 -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,15151,400,14986,5040,10,2.6,6,4,16,6706,9,999999999,4,0.048,0,88,0.2,0,1 -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,-5,24,83100,308,1393,318,42,0,42,4155,0,4185,1691,140,2.6,6,4,16,6706,9,999999999,4,0.048,0,88,0.2,0,1 -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,388,0,390,160,180,2.6,9,8,16,6096,9,999999999,5,0.048,0,88,0.2,0,1 -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,6096,9,999999999,5,0.048,0,88,0.2,0,1 -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,6096,9,999999999,5,0.048,0,88,0.2,0,1 -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,6096,9,999999999,5,0.048,0,88,0.2,0,1 -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,6096,9,999999999,6,0.048,0,88,0.2,0,1 -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,6096,9,999999999,6,0.048,0,88,0.2,0,1 -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,24,82600,0,0,286,0,0,0,0,0,0,0,210,5.2,8,5,16,6096,9,999999999,6,0.048,0,88,0.2,0,1 -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,6096,9,999999999,7,0.048,0,88,0.2,0,1 -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,77777,9,999999999,7,0.048,0,88,0.2,0,1 -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,26,82300,0,0,275,0,0,0,0,0,0,0,210,5.7,4,3,16,77777,9,999999999,8,0.048,0,88,0.2,0,1 -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,77777,9,999999999,8,0.048,0,88,0.2,0,1 -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,77777,9,999999999,9,0.048,0,88,0.2,0,1 -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,77777,9,999999999,9,0.048,0,88,0.2,0,1 -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,-5,46,82200,0,0,274,0,0,0,0,0,0,0,240,4.1,3,3,16,77777,9,999999999,9,0.048,0,88,0.2,0,1 -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,3,3,16,77777,9,999999999,8,0.048,0,88,0.2,0,1 -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,-3.9,36,82400,210,1393,300,134,237,98,14119,9314,10375,2346,220,5.2,7,5,16,6706,9,999999999,8,0.048,0,88,0.2,0,1 -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,6487,0,6537,2704,140,2.6,8,5,16,6706,9,999999999,9,0.048,0,88,0.2,0,1 -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,7289,0,7349,3315,160,4.1,7,6,16,6706,9,999999999,10,0.048,0,88,0.2,0,1 -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,-5,24,82100,716,1393,318,338,188,241,37937,16303,27196,9146,190,5.7,5,4,16,6706,9,999999999,11,0.048,0,88,0.2,0,1 -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,23,82400,765,1393,320,466,397,248,52651,34461,28172,9739,240,2.6,7,4,16,4572,9,999999999,11,0.048,0,88,0.2,0,1 -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,14456,0,14581,6367,270,6.7,4,4,16,4572,9,999999999,11,0.048,0,88,0.2,0,1 -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,34941,17099,24089,8020,340,6.7,3,3,16,6706,9,999999999,11,0.048,0,88,0.2,0,1 -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,40116,40170,14222,4825,300,12.4,3,3,16,77777,9,999999999,10,0.048,0,88,0.2,0,1 -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,22369,19903,7060,2301,310,10.3,6,5,16,77777,9,999999999,8,0.048,0,88,0.2,0,1 -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,2312,0,1273,395,330,6.7,9,5,16,77777,9,999999999,7,0.048,0,88,0.2,0,1 -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,6706,9,999999999,8,0.048,0,88,0.2,0,1 -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,6706,9,999999999,9,0.048,0,88,0.2,0,1 -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,6096,9,999999999,9,0.048,0,88,0.2,0,1 -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,6096,9,999999999,10,0.048,0,88,0.2,0,1 -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,5486,9,999999999,10,0.048,0,88,0.2,0,1 -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,77777,9,999999999,10,0.048,0,88,0.2,0,1 -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,77777,9,999999999,10,0.048,0,88,0.2,0,1 -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,5486,9,999999999,10,0.047,0,88,0.2,0,1 -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,5486,9,999999999,10,0.047,0,88,0.2,0,1 -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,77777,9,999999999,10,0.047,0,88,0.2,0,1 -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,77777,9,999999999,10,0.047,0,88,0.2,0,1 -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,77777,9,999999999,10,0.047,0,88,0.2,0,1 -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,77777,9,999999999,10,0.047,0,88,0.2,0,1 -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,77777,9,999999999,10,0.047,0,88,0.2,0,1 -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,54,81800,205,1394,299,116,283,74,12479,7022,7993,2110,270,7.7,5,5,16,77777,9,999999999,10,0.047,0,88,0.2,0,1 -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,31379,31258,12893,4144,240,2.6,3,3,16,77777,9,999999999,10,0.047,0,88,0.2,0,1 -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,31998,15089,23372,7406,250,4.6,3,3,16,77777,9,999999999,10,0.047,0,88,0.2,0,1 -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,38197,13233,30152,9681,280,4.6,8,8,16,77777,9,999999999,10,0.047,0,88,0.2,0,1 -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,41199,13406,32593,10611,300,7.7,9,9,16,2896,9,999999999,10,0.047,0,88,0.2,0,1 -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.6,47,82000,739,1394,321,359,149,279,39943,13594,31222,10160,280,10.3,9,9,16,1829,9,999999999,10,0.047,0,88,0.2,0,1 -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,33869,12224,26710,8502,70,3.1,8,8,16,4877,9,999999999,10,0.047,0,88,0.2,0,1 -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,1.1,54,81900,500,1394,323,230,145,178,25262,10876,19647,5973,40,2.6,9,9,16,2134,9,999999999,9,0.047,0,88,0.2,0,1 -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,12877,5397,9722,2902,10,4.6,9,9,16,2896,9,999999999,8,0.047,0,88,0.2,0,1 -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,1382,0,1268,392,290,6.7,10,10,16,3048,9,999999999,8,0.047,0,88,0.2,0,1 -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,3353,9,999999999,8,0.047,0,88,0.2,0,1 -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,3962,9,999999999,7,0.047,0,88,0.2,0,1 -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,50,82000,0,0,284,0,0,0,0,0,0,0,230,7.2,8,8,16,1981,9,999999999,7,0.047,0,88,0.2,0,1 -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,77777,9,999999999,7,0.047,0,88,0.2,0,1 -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,77777,9,999999999,6,0.047,0,88,0.2,0,1 -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,77777,9,999999999,6,0.047,0,88,0.2,0,1 -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,77777,9,999999999,5,0.047,0,88,0.2,0,1 -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,77777,9,999999999,5,0.047,0,88,0.2,0,1 -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,77777,9,999999999,5,0.047,0,88,0.2,0,1 -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,77777,9,999999999,4,0.047,0,88,0.2,0,1 -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,77777,9,999999999,4,0.047,0,88,0.2,0,1 -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,77777,9,999999999,4,0.047,0,88,0.2,0,1 -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,77777,9,999999999,4,0.047,0,88,0.2,0,1 -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,77777,9,999999999,4,0.047,0,88,0.2,0,1 -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,10221,2816,8875,2163,230,3.6,4,4,16,77777,9,999999999,4,0.047,0,88,0.2,0,1 -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,28,82700,418,1395,277,188,146,144,20624,9863,15869,4697,270,6.7,6,5,16,77777,9,999999999,4,0.047,0,88,0.2,0,1 -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,31851,13392,24819,7600,280,5.2,10,6,16,3658,9,999999999,4,0.047,0,88,0.2,0,1 -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,38240,13941,29848,9563,290,4.1,8,6,16,3962,9,999999999,5,0.047,0,88,0.2,0,1 -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,41253,14162,32297,10490,0,0,6,6,16,6706,9,999999999,5,0.047,0,88,0.2,0,1 -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,39339,13345,31046,10060,330,1.5,3,3,16,3962,9,999999999,5,0.047,0,88,0.2,0,1 -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,33947,13131,26546,8410,290,2.1,6,6,16,6096,9,999999999,6,0.047,0,88,0.2,0,1 -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,24757,10378,19570,5911,260,3.6,6,6,16,3962,9,999999999,5,0.047,0,88,0.2,0,1 -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,24,82700,294,1395,288,116,116,92,12727,5107,10133,2951,310,4.6,8,6,16,3962,9,999999999,5,0.047,0,88,0.2,0,1 -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,1273,0,1158,358,290,5.7,7,7,16,3962,9,999999999,5,0.047,0,88,0.2,0,1 -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,-9.4,31,82700,0,0,276,0,0,0,0,0,0,0,300,4.6,7,6,16,3962,9,999999999,5,0.047,0,88,0.2,0,1 -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,3962,9,999999999,5,0.047,0,88,0.2,0,1 -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,4,4,16,6096,9,999999999,5,0.047,0,88,0.2,0,1 -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,77777,9,999999999,5,0.047,0,88,0.2,0,1 -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,6096,9,999999999,5,0.047,0,88,0.2,0,1 -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,-8.3,49,82900,0,0,258,0,0,0,0,0,0,0,170,3.6,6,6,16,6096,9,999999999,6,0.047,0,88,0.2,0,1 -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,-8.9,47,82600,0,0,257,0,0,0,0,0,0,0,180,3.6,6,6,16,6096,9,999999999,6,0.047,0,88,0.2,0,1 -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,77777,9,999999999,6,0.046,0,88,0.2,0,1 -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,-8.9,47,82700,0,0,260,0,0,0,0,0,0,0,220,5.2,8,7,16,77777,9,999999999,6,0.046,0,88,0.2,0,1 -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,6096,9,999999999,5,0.046,0,88,0.2,0,1 -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,49,82700,0,0,247,0,0,0,0,0,0,0,250,3.6,5,5,16,77777,9,999999999,5,0.046,0,88,0.2,0,1 -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,2,2,16,6096,9,999999999,4,0.046,0,88,0.2,0,1 -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,45,82900,0,0,248,0,0,0,0,0,0,0,280,3.1,3,3,16,6096,9,999999999,4,0.046,0,88,0.2,0,1 -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,47,82900,12,454,252,0,0,0,0,0,0,0,280,3.1,6,6,16,6706,9,999999999,5,0.046,0,88,0.2,0,1 -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,10486,4251,8165,2059,290,2.1,5,5,16,6706,9,999999999,5,0.046,0,88,0.2,0,1 -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,26096,24138,11742,3820,360,2.1,8,8,16,6706,9,999999999,5,0.046,0,88,0.2,0,1 -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,41376,36875,15651,5517,40,5.7,9,9,16,3353,9,999999999,5,0.046,0,88,0.2,0,1 -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,59786,50628,12812,4932,50,6.7,9,9,16,2286,9,999999999,5,0.046,0,88,0.2,0,1 -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,60334,48211,15468,5969,40,7.2,7,7,16,6096,9,999999999,5,0.046,0,88,0.2,0,1 -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,48,83600,728,1395,292,447,454,209,50862,36915,23900,8442,30,6.2,9,9,16,3353,9,999999999,5,0.046,0,88,0.2,0,1 -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,-5,46,83700,640,1395,278,312,207,216,34817,17321,24229,7924,30,5.2,6,5,16,3962,9,999999999,5,0.046,0,88,0.2,0,1 -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,24214,11817,17996,5595,20,6.2,5,5,16,6096,9,999999999,6,0.046,0,88,0.2,0,1 -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,8264,382,8067,2511,30,5.2,7,7,16,6096,9,999999999,6,0.046,0,88,0.2,0,1 -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,1393,0,1046,325,50,4.6,8,8,16,2438,9,999999999,7,0.046,0,88,0.2,0,1 -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,8,8,16,1676,9,999999999,6,0.046,0,88,0.2,0,1 -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,-3.9,72,83900,0,0,256,0,0,0,0,0,0,0,230,4.1,3,3,16,77777,9,999999999,6,0.046,0,88,0.2,0,1 -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,77777,9,999999999,6,0.046,0,88,0.2,0,1 -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,77777,9,999999999,5,0.046,0,88,0.2,0,1 -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,77777,9,999999999,5,0.046,0,88,0.2,0,1 -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,77777,9,999999999,5,0.046,0,88,0.2,0,1 -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,77777,9,999999999,4,0.046,0,88,0.2,0,1 -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,77777,9,999999999,4,0.046,0,88,0.2,0,1 -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,77777,9,999999999,4,0.046,0,88,0.2,0,1 -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,56,83900,0,0,228,0,0,0,0,0,0,0,210,6.7,0,0,16,77777,9,999999999,3,0.046,0,88,0.2,0,1 -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,77777,9,999999999,3,0.046,0,88,0.2,0,1 -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,77777,9,999999999,3,0.046,0,88,0.2,0,1 -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,-11.1,59,83800,0,0,221,0,0,0,0,0,0,0,200,5.2,0,0,16,77777,9,999999999,3,0.046,0,88,0.2,0,1 -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,77777,9,999999999,3,0.046,0,88,0.2,0,1 -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,11880,7029,7952,2000,210,7.2,0,0,16,77777,9,999999999,3,0.046,0,88,0.2,0,1 -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,32502,35645,12558,3986,210,5.7,0,0,16,77777,9,999999999,4,0.046,0,88,0.2,0,1 -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,42876,39618,15958,5578,220,5.2,0,0,16,77777,9,999999999,4,0.046,0,88,0.2,0,1 -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,56211,47923,12479,4799,210,3.6,0,0,16,77777,9,999999999,4,0.046,0,88,0.2,0,1 -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,63962,52197,11687,4596,250,3.1,0,0,16,77777,9,999999999,5,0.046,0,88,0.2,0,1 -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,64019,52835,10065,3960,280,3.1,1,1,16,77777,9,999999999,5,0.046,0,88,0.2,0,1 -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,48483,84998,8873,1388,270,4.6,1,1,16,77777,9,999999999,5,0.046,0,88,0.2,0,1 -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,35613,75855,8018,1140,200,1.5,0,0,16,77777,9,999999999,5,0.046,0,88,0.2,0,1 -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,17690,55486,4678,716,0,0,1,1,16,77777,9,999999999,5,0.046,0,88,0.2,0,1 -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,1402,10224,1023,178,170,2.1,6,5,16,77777,9,999999999,5,0.046,0,88,0.2,0,1 -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,77777,9,999999999,6,0.046,0,88,0.2,0,1 -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,77777,9,999999999,7,0.046,0,88,0.2,0,1 -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,77777,9,999999999,8,0.046,0,88,0.2,0,1 -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,77777,9,999999999,8,0.046,0,88,0.2,0,1 -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,77777,9,999999999,9,0.046,0,88,0.2,0,1 -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,20,83700,0,0,265,0,0,0,0,0,0,0,210,6.2,6,5,16,77777,9,999999999,10,0.046,0,88,0.2,0,1 -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,5486,9,999999999,10,0.046,0,88,0.2,0,1 -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,5486,9,999999999,10,0.045,0,88,0.2,0,1 -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,5486,9,999999999,10,0.045,0,88,0.2,0,1 -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,5486,9,999999999,10,0.045,0,88,0.2,0,1 -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,5486,9,999999999,10,0.045,0,88,0.2,0,1 -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,5486,9,999999999,10,0.045,0,88,0.2,0,1 -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,77777,9,999999999,10,0.045,0,88,0.2,0,1 -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,6706,9,999999999,10,0.045,0,88,0.2,0,1 -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,3329,0,3352,1224,140,1.5,9,9,16,6096,9,999999999,10,0.045,0,88,0.2,0,1 -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,5783,0,5827,2404,310,3.6,9,9,16,6706,9,999999999,10,0.045,0,88,0.2,0,1 -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,29192,13358,21752,6913,0,0,9,9,16,6096,9,999999999,10,0.045,0,88,0.2,0,1 -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,24105,1460,23202,8022,20,7.2,8,8,16,6706,9,999999999,10,0.045,0,88,0.2,0,1 -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,26070,1005,25521,8905,50,6.2,9,9,16,3962,9,999999999,11,0.045,0,88,0.2,0,1 -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,15037,0,15166,6468,70,5.2,10,7,16,3962,9,999999999,11,0.045,0,88,0.2,0,1 -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,32379,15716,22520,7486,80,6.2,8,5,16,3962,9,999999999,11,0.045,0,88,0.2,0,1 -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,5318,0,5360,2354,90,4.6,7,5,16,3962,9,999999999,11,0.045,0,88,0.2,0,1 -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,-4.4,34,83200,281,1397,299,28,0,28,2763,0,2783,1159,110,3.6,7,5,16,3962,9,999999999,11,0.045,0,88,0.2,0,1 -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,580,0,584,225,290,1.5,10,10,16,3353,9,999999999,12,0.045,0,88,0.2,0,1 -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,-4.4,34,83200,0,0,317,0,0,0,0,0,0,0,0,0,10,9,16,2743,9,999999999,12,0.045,0,88,0.2,0,1 -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,1463,9,999999999,12,0.045,0,88,0.2,0,1 -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,60,83300,0,0,318,0,0,0,0,0,0,0,120,4.6,10,10,16,1676,9,999999999,11,0.045,0,88,0.2,0,1 -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,62,83400,0,0,316,0,0,0,0,0,0,0,100,3.1,10,10,16,1128,9,999999999,11,0.045,0,88,0.2,0,1 -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,-1,69,83200,0,0,303,0,0,0,0,0,0,0,80,1.5,10,10,16.1,1800,9,999999999,11,0.045,0,88,0.2,0,1 -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,1524,9,999999999,11,0.045,0,88,0.2,0,1 -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,2591,9,999999999,11,0.045,0,88,0.2,0,1 -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,2591,9,999999999,10,0.045,0,88,0.2,0,1 -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,10,10,16,2438,9,999999999,9,0.045,0,88,0.2,0,1 -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,2743,9,999999999,9,0.045,0,88,0.2,0.8,1 -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,9,0.045,0,88,0.2,0,1 -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,2896,9,999999999,8,0.045,0,88,0.2,0,1 -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,1829,9,999999999,8,0.045,0,88,0.2,0,1 -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,2896,9,999999999,8,0.045,0,88,0.2,0,1 -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,92,83400,180,1397,277,58,0,58,5666,0,5706,1731,240,3.6,8,8,16,2743,9,999999999,8,0.045,0,88,0.2,0,1 -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,79,83500,397,1397,286,286,696,87,32444,33453,9903,3300,320,2.6,8,8,16,2591,9,999999999,8,0.045,0,88,0.2,0,1 -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,45334,42902,17671,5984,40,2.6,8,8,16,2591,9,999999999,8,0.045,0,88,0.2,0,1 -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,19432,875,18825,6827,60,3.1,8,8,16,2438,9,999999999,7,0.045,0,88,0.2,0,1 -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,62,83600,733,1397,307,546,716,169,63157,52685,19636,7271,90,3.1,9,9,16,2591,9,999999999,7,0.045,0,88,0.2,0,1 -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,55795,45655,18719,6913,0,0,8,8,16,2286,9,999999999,8,0.045,0,88,0.2,0,1 -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,38664,25556,22911,7535,70,3.1,7,7,16,6096,9,999999999,8,0.045,0,88,0.2,0,1 -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,37920,39035,13710,4570,50,2.1,6,6,16,6096,9,999999999,7,0.045,0,88,0.2,0,1 -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,15657,10896,6371,2056,80,4.1,6,6,16,6096,9,999999999,7,0.045,0,88,0.2,0,1 -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,1199,8265,858,155,70,4.1,7,7,16,6096,9,999999999,7,0.045,0,88,0.2,0,1 -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,2743,9,999999999,7,0.045,0,88,0.2,0,1 -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,3962,9,999999999,7,0.045,0,88,0.2,0,1 -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,-1.7,87,83300,0,0,264,0,0,0,0,0,0,0,160,3.6,8,6,16,3962,9,999999999,7,0.045,0,88,0.2,0,1 -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,3962,9,999999999,7,0.045,0,88,0.2,0,1 -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,-2.2,83,83200,0,0,277,0,0,0,0,0,0,0,160,3.6,10,9,16,2743,9,999999999,7,0.045,0,88,0.2,0,1 -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,-2.2,83,83400,0,0,277,0,0,0,0,0,0,0,170,3.1,10,9,16,2743,9,999999999,7,0.045,0,88,0.2,0,1 -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,-2.8,79,83100,0,0,276,0,0,0,0,0,0,0,170,4.1,9,9,16,2896,9,999999999,7,0.045,0,88,0.2,0,1 -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,-2.8,79,83100,0,0,276,0,0,0,0,0,0,0,200,4.6,10,9,16,3048,9,999999999,7,0.045,0,88,0.2,0,1 -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,10,9,16,2743,9,999999999,7,0.045,0,88,0.2,0,1 -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,-2.8,79,83200,0,0,276,0,0,0,0,0,0,0,0,0,10,9,16,2134,9,999999999,7,0.045,0,88,0.2,0,1 -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,-2.2,83,83200,0,0,277,0,0,0,0,0,0,0,30,2.6,10,9,16,2134,9,999999999,8,0.045,0,88,0.2,0,1 -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,-1.7,87,83500,0,0,285,0,0,0,0,0,0,0,320,2.1,10,10,16,1341,9,999999999,8,0.045,0,88,0.2,0,1 -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,1829,9,999999999,8,0.045,0,88,0.2,0,1 -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,1219,9,999999999,7,0.045,0,88,0.2,0,1 -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,2345,0,2362,909,350,5.2,9,9,16,1372,9,999999999,7,0.045,0,88,0.2,0,1 -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,24970,20918,14521,4286,350,7.2,8,8,16,1311,9,999999999,7,0.045,0,88,0.2,0,1 -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,12010,0,12108,4898,360,6.7,8,8,16,1067,9,999999999,7,0.045,0,88,0.2,0,1 -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,33674,12836,25530,8481,10,7.2,8,8,16,579,9,999999999,7,0.045,0,88,0.2,0,1 -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,-1.7,61,84000,728,1398,292,158,0,158,16164,0,16303,6882,360,7.2,8,8,16,1219,9,999999999,7,0.045,0,88,0.2,0,1 -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,20243,451,19989,7266,10,6.7,9,9,16,1189,9,999999999,7,0.045,0,88,0.2,0,1 -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,45906,39936,17662,6228,10,4.6,6,6,16,6096,9,999999999,6,0.045,0,88,0.2,0,1 -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,34330,32052,8694,3118,70,4.1,5,5,16,77777,9,999999999,7,0.045,0,88,0.2,0,1 -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,17710,9955,4230,1433,110,1.5,5,5,16,77777,9,999999999,7,0.045,0,88,0.2,0,1 -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,826,0,708,221,210,3.1,5,5,16,77777,9,999999999,7,0.045,0,88,0.2,0,1 -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,1829,9,999999999,6,0.045,0,88,0.2,0,1 -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,-2.8,79,84000,0,0,257,0,0,0,0,0,0,0,210,4.6,3,3,16,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,51,83700,0,0,232,0,0,0,0,0,0,0,220,6.2,0,0,16,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,5968,0,6010,1715,220,5.7,3,3,16,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,30963,32957,9786,3233,230,3.6,3,3,16,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,41240,38905,13333,4750,270,6.2,3,3,16,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,52329,45348,14839,5552,270,4.1,3,3,16,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,64924,54909,12424,4831,280,4.6,4,4,16,7620,9,999999999,6,0.045,0,88,0.2,0,1 -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,60740,50833,10477,4088,280,6.2,3,3,16,7620,9,999999999,6,0.045,0,88,0.2,0,1 -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,48378,43847,11419,4281,300,7.7,5,5,16,7620,9,999999999,7,0.045,0,88,0.2,0,1 -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,34986,34355,8594,3072,280,6.7,7,6,16,7620,9,999999999,6,0.045,0,88,0.2,0,1 -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,13,83900,270,1399,300,159,551,52,18125,14017,5943,1923,280,6.2,9,8,16,6706,9,999999999,6,0.045,0,88,0.2,0,1 -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,978,9146,691,131,270,4.6,7,7,16,7620,9,999999999,6,0.045,0,88,0.2,0,1 -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,7620,9,999999999,6,0.045,0,88,0.2,0,1 -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,7620,9,999999999,6,0.045,0,88,0.2,0,1 -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,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,6706,9,999999999,6,0.045,0,88,0.2,0,1 -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,-11.1,27,83200,0,0,265,0,0,0,0,0,0,0,210,6.7,3,2,16,6706,9,999999999,5,0.045,0,88,0.2,0,1 -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,-11.7,26,83200,0,0,264,0,0,0,0,0,0,0,210,7.2,3,2,16,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,-13.3,22,83000,0,0,267,0,0,0,0,0,0,0,220,7.2,6,4,16,6706,9,999999999,5,0.045,0,88,0.2,0,1 -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,-11.7,26,83000,0,0,267,0,0,0,0,0,0,0,210,6.2,6,3,16,6706,9,999999999,5,0.044,0,88,0.2,0,1 -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,6706,9,999999999,5,0.044,0,88,0.2,0,1 -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,6706,9,999999999,6,0.044,0,88,0.2,0,1 -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,6706,9,999999999,6,0.044,0,88,0.2,0,1 -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,6706,9,999999999,7,0.044,0,88,0.2,0,1 -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,6096,9,999999999,6,0.044,0,88,0.2,0,1 -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,6096,9,999999999,6,0.044,0,88,0.2,0,1 -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,3617,0,3642,1255,160,5.2,6,5,16,6096,9,999999999,6,0.044,0,88,0.2,0,1 -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,21454,17635,11328,3593,170,3.1,7,6,16,6096,9,999999999,7,0.044,0,88,0.2,0,1 -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,35959,30610,16061,5493,80,5.2,5,4,16,6096,9,999999999,7,0.044,0,88,0.2,0,1 -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,43162,30535,23331,7908,70,6.2,5,5,16,7620,9,999999999,7,0.044,0,88,0.2,0,1 -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,61441,52771,15833,6001,90,7.2,4,4,16,7620,9,999999999,7,0.044,0,88,0.2,0,1 -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,60557,52173,12150,4689,90,7.7,3,3,16,7620,9,999999999,7,0.044,0,88,0.2,0,1 -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,-15,10,83200,613,1399,303,390,621,117,45508,41315,13702,5018,90,5.7,6,3,16,7620,9,999999999,8,0.044,0,88,0.2,0,1 -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,34094,34409,11481,3929,120,5.2,9,7,16,7620,9,999999999,7,0.044,0,88,0.2,0,1 -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,12524,7266,8007,2406,40,2.6,10,6,16,7315,9,999999999,7,0.044,0,88,0.2,0,1 -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,-12.8,16,82800,50,921,300,1,0,1,97,0,97,40,90,3.1,8,8,16,7315,9,999999999,7,0.044,0,88,0.2,0,1 -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,4267,9,999999999,7,0.044,0,88,0.2,0,1 -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,3048,9,999999999,7,0.044,0,88,0.2,0,1 -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,4267,9,999999999,7,0.044,0,88,0.2,0,1 -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,3048,9,999999999,7,0.044,0,88,0.2,0,1 -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,1981,9,999999999,6,0.044,0,88,0.2,0,1 -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,2134,9,999999999,6,0.044,0,88,0.2,0,1 -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,3048,9,999999999,6,0.044,0,88,0.2,0,1 -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,2743,9,999999999,5,0.044,0,88,0.2,0,1 -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,-6.7,40,83200,0,0,293,0,0,0,0,0,0,0,360,2.6,9,9,16,3048,9,999999999,5,0.044,0,88,0.2,0,1 -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,2134,9,999999999,5,0.044,0,88,0.2,0,1 -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,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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,77777,9,999999999,4,0.044,0,88,0.2,0,1 -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,77777,9,999999999,4,0.044,0,88,0.2,0,1 -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,6251,0,6294,1680,170,3.1,3,3,16,77777,9,999999999,4,0.044,0,88,0.2,0,1 -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,28956,26306,5803,2039,130,3.6,3,3,16,77777,9,999999999,4,0.044,0,88,0.2,0,1 -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,42938,40496,10056,3693,130,3.6,4,4,16,77777,9,999999999,4,0.044,0,88,0.2,0,1 -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,54892,49106,15561,5754,140,4.1,10,5,16,77777,9,999999999,4,0.044,0,88,0.2,0,1 -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,41634,23296,26243,8886,170,2.1,4,4,16,77777,9,999999999,4,0.044,0,88,0.2,0,1 -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,-9.4,22,83900,695,1400,291,505,758,127,59421,52016,15000,5661,200,3.1,5,4,16,77777,9,999999999,4,0.044,0,88,0.2,0,1 -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,53257,49621,10516,3955,250,1.5,4,4,16,77777,9,999999999,4,0.044,0,88,0.2,0,1 -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,35142,34237,7921,2841,250,1.5,7,6,16,77777,9,999999999,4,0.044,0,88,0.2,0,1 -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,-11.1,19,84000,263,1400,298,154,637,34,18099,10198,4003,1349,250,2.6,9,7,16,7315,9,999999999,4,0.044,0,88,0.2,0,1 -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,593,0,593,185,260,4.1,10,7,16,7315,9,999999999,4,0.044,0,88,0.2,0,1 -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,7315,9,999999999,4,0.044,0,88,0.2,0,1 -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,6706,9,999999999,4,0.044,0,88,0.2,0,1 -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,6096,9,999999999,4,0.044,0,88,0.2,0,1 -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,6096,9,999999999,4,0.044,0,88,0.2,0,1 -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,6096,9,999999999,5,0.044,0,88,0.2,0,1 -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,6096,9,999999999,5,0.044,0,88,0.2,0,1 -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,-14.4,20,83700,0,0,284,0,0,0,0,0,0,0,230,6.7,10,9,16,6096,9,999999999,5,0.044,0,88,0.2,0,1 -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,6096,9,999999999,6,0.044,0,88,0.2,0,1 -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,6096,9,999999999,6,0.044,0,88,0.2,0,1 -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,6096,9,999999999,6,0.044,0,88,0.2,0,1 -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,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,-13.9,21,83800,0,0,269,0,0,0,0,0,0,0,250,6.7,7,5,16,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,-11.1,27,83900,155,1400,272,40,0,40,3909,0,3936,1294,10,2.1,7,5,16,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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,26,84100,371,1400,279,253,624,87,28546,30134,9850,3200,60,4.1,8,5,16,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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,25,84100,544,1400,282,345,592,114,39741,37730,13180,4656,100,1.5,6,4,16,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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,22,84000,659,1400,288,440,686,116,51796,45564,13704,5139,140,2.1,4,4,16,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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,20,84100,709,1400,293,516,860,78,63174,52145,9575,3756,180,3.1,4,4,16,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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,52746,85469,10080,1526,220,1.5,4,4,16,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,51650,46166,7936,3027,290,3.6,6,6,16,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,34292,76477,8046,1090,320,5.2,5,5,16,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,16837,55659,4683,675,280,5.2,3,3,16,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,875,10599,523,103,290,3.6,8,5,16,77777,9,999999999,7,0.044,0,88,0.2,0,1 -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,77777,9,999999999,7,0.044,0,88,0.2,0,1 -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,77777,9,999999999,8,0.044,0,88,0.2,0,1 -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,77777,9,999999999,8,0.044,0,88,0.2,0,1 -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,77777,9,999999999,9,0.044,0,88,0.2,0,1 -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,-6.7,40,84000,0,0,274,0,0,0,0,0,0,0,270,3.6,4,4,16,6706,9,999999999,9,0.044,0,88,0.2,0,1 -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,77777,9,999999999,9,0.044,0,88,0.2,0,1 -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,6706,9,999999999,9,0.044,0,88,0.2,0,1 -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,-6.7,40,83900,0,0,282,0,0,0,0,0,0,0,230,5.2,8,7,16,6706,9,999999999,9,0.044,0,88,0.2,0,1 -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,2591,9,999999999,9,0.044,0,88,0.2,0,1 -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,2591,9,999999999,9,0.044,0,88,0.2,0,1 -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,-6.1,42,84100,0,0,287,0,0,0,0,0,0,0,230,3.6,8,8,16,2438,9,999999999,8,0.044,0,88,0.2,0,1 -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,2438,9,999999999,8,0.044,0,88,0.2,0,1 -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,77777,9,999999999,8,0.044,0,88,0.2,0,1 -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,77777,9,999999999,8,0.044,0,88,0.2,0,1 -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,13246,3887,5728,1495,160,3.1,3,3,16,77777,9,999999999,8,0.044,0,88,0.2,0,1 -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,30301,29546,7189,2458,160,2.6,3,3,16,77777,9,999999999,8,0.044,0,88,0.2,0,1 -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,44858,42496,9044,3337,220,2.6,0,0,16,77777,9,999999999,8,0.044,0,88,0.2,0,1 -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,54327,46982,10705,4099,280,1.5,0,0,16,77777,9,999999999,8,0.044,0,88,0.2,0,1 -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,62327,50752,9558,3747,330,4.1,0,0,16,77777,9,999999999,9,0.044,0,88,0.2,0,1 -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,57316,47952,10990,4253,40,5.2,0,0,16,77777,9,999999999,9,0.044,0,88,0.2,0,1 -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,-3.9,26,84500,601,1401,303,418,816,67,50707,44655,8147,3103,20,5.7,0,0,16,77777,9,999999999,9,0.044,0,88,0.2,0,1 -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,33848,76169,7760,1078,60,4.6,1,1,16,77777,9,999999999,9,0.044,0,88,0.2,0,1 -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,15484,52280,4070,640,30,2.1,0,0,16,77777,9,999999999,9,0.044,0,88,0.2,0,1 -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,769,10210,523,102,0,0,2,2,16,77777,9,999999999,9,0.044,0,88,0.2,0,1 -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,-3.9,36,84400,0,0,283,0,0,0,0,0,0,0,140,1.5,0,0,16,77777,9,999999999,9,0.044,0,88,0.2,0,1 -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,77777,9,999999999,9,0.044,0,88,0.2,0,1 -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,77777,9,999999999,10,0.044,0,88,0.2,0,1 -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,77777,9,999999999,10,0.044,0,88,0.2,0,1 -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,-3.9,51,84100,0,0,263,0,0,0,0,0,0,0,180,4.6,0,0,16,77777,9,999999999,10,0.044,0,88,0.2,0,1 -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,-4.4,48,84100,0,0,263,0,0,0,0,0,0,0,200,6.2,0,0,16,77777,9,999999999,9,0.044,0,88,0.2,0,1 -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,77777,9,999999999,10,0.044,0,88,0.2,0,1 -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,63,83800,0,0,246,0,0,0,0,0,0,0,180,2.6,0,0,16,77777,9,999999999,10,0.044,0,88,0.2,0,1 -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,77777,9,999999999,10,0.044,0,88,0.2,0,1 -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,77777,9,999999999,10,0.044,0,88,0.2,0,1 -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,2438,9,999999999,11,0.044,0,88,0.2,0,1 -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,2286,9,999999999,11,0.044,0,88,0.2,0,1 -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,77777,9,999999999,11,0.044,0,88,0.2,0,1 -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,77777,9,999999999,11,0.044,0,88,0.2,0,1 -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,-3.3,53,84400,146,1402,275,98,609,35,10891,0,3900,1155,220,5.2,3,3,16,77777,9,999999999,10,0.044,0,88,0.2,0,1 -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,27234,24198,6209,2151,230,4.1,0,0,16,77777,9,999999999,10,0.044,0,88,0.2,0,1 -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,43524,40253,8368,3099,240,3.1,0,0,16,77777,9,999999999,10,0.044,0,88,0.2,0,1 -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,54529,46476,10019,3847,320,4.6,0,0,16,77777,9,999999999,9,0.044,0,88,0.2,0,1 -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,59550,48493,10561,4118,40,3.6,0,0,16,77777,9,999999999,9,0.044,0,88,0.2,0,1 -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.6,34,84700,682,1402,320,476,806,82,57682,47429,9965,3873,20,3.6,3,3,16,77777,9,999999999,9,0.044,0,88,0.2,0,1 -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,49081,42863,8584,3259,40,3.6,3,3,16,77777,9,999999999,9,0.044,0,88,0.2,0,1 -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,34853,31590,6459,2341,40,4.1,0,0,16,77777,9,999999999,9,0.044,0,88,0.2,0,1 -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,15737,6293,3764,1268,0,0,1,1,16,77777,9,999999999,9,0.044,0,88,0.2,0,1 -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,660,7936,522,101,0,0,5,5,16,77777,9,999999999,9,0.044,0,88,0.2,0,1 -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,77777,9,999999999,9,0.044,0,88,0.2,0,1 -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,77777,9,999999999,9,0.044,0,88,0.2,0,1 -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,-1.7,61,84100,0,0,265,0,0,0,0,0,0,0,170,4.1,0,0,16,77777,9,999999999,8,0.044,0,88,0.2,0,1 -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,77777,9,999999999,8,0.044,0,88,0.2,0,1 -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,77777,9,999999999,7,0.044,0,88,0.2,0,1 -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,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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,77777,9,999999999,4,0.044,0,88,0.2,0,1 -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,-3.9,51,83600,0,0,268,0,0,0,0,0,0,0,210,8.2,1,1,16,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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,-5,46,83500,0,0,262,0,0,0,0,0,0,0,210,7.7,0,0,16,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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,-6.1,42,83600,0,0,261,0,0,0,0,0,0,0,220,8.8,0,0,16,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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,11021,790,5204,1375,220,8.2,0,0,16,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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,25193,23551,7068,2403,220,6.2,3,2,16,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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,36891,33968,15454,5221,200,5.7,6,4,16,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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,-8.3,13,83400,645,1402,333,491,783,129,57144,53502,15071,5538,250,3.6,5,3,16,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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,10,84000,696,1402,342,474,638,156,54877,46985,18138,6650,270,8.2,7,5,16,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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,10,83900,678,1402,345,517,848,105,61535,54885,12539,4783,290,9.3,9,6,16,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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,50277,49281,16830,5862,310,5.2,9,5,16,7620,9,999999999,5,0.044,0,88,0.2,0,1 -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,18754,6852,15158,4737,320,2.6,10,4,16,6706,9,999999999,5,0.044,0,88,0.2,0,1 -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,11419,5785,7341,2205,360,4.1,9,4,16,6096,9,999999999,5,0.044,0,88,0.2,0,1 -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,193,0,194,78,320,9.3,7,7,16,6706,9,999999999,5,0.044,0,88,0.2,0,1 -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,6096,9,999999999,6,0.044,0,88,0.2,0,1 -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,4267,9,999999999,6,0.044,0,88,0.2,0,1 -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,-7.2,27,83700,0,0,294,0,0,0,0,0,0,0,30,4.6,8,4,16,4267,9,999999999,6,0.044,0,88,0.2,0,1 -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,4267,9,999999999,7,0.044,0,88,0.2,0,1 -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,48,83400,0,0,278,0,0,0,0,0,0,0,120,4.1,7,6,16,4267,9,999999999,7,0.044,0,88,0.2,0,1 -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,-4.4,48,83700,0,0,281,0,0,0,0,0,0,0,160,2.1,10,6,16,6096,9,999999999,8,0.044,0,88,0.2,0,1 -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,3962,9,999999999,8,0.044,0,88,0.2,0,1 -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,48,83500,0,0,281,0,0,0,0,0,0,0,270,2.6,7,7,16,77777,9,999999999,8,0.044,0,88,0.2,0,1 -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,6096,9,999999999,8,0.044,0,88,0.2,0,1 -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,6096,9,999999999,8,0.044,0,88,0.2,0,1 -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,6096,9,999999999,9,0.044,0,88,0.2,0,1 -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,6096,9,999999999,9,0.044,0,88,0.2,0,1 -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,-2.8,79,83200,0,0,270,0,0,0,0,0,0,0,180,3.1,10,8,16,6096,9,999999999,9,0.044,0,88,0.2,0,1 -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,6096,9,999999999,9,0.044,0,88,0.2,0,1 -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,1461,0,1471,577,120,3.1,8,5,16,6096,9,999999999,9,0.044,0,88,0.2,0,1 -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,65,83400,352,1403,287,189,376,94,21025,17648,10496,3283,150,4.6,7,5,16,6096,9,999999999,9,0.044,0,88,0.2,0,1 -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,54,83500,525,1403,305,240,173,175,26529,12931,19438,6084,180,6.7,8,7,16,6096,9,999999999,9,0.044,0,88,0.2,0,1 -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,43334,33541,20864,7141,270,3.6,9,8,16,6706,9,999999999,8,0.044,0,88,0.2,0,1 -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,52765,43635,14745,5570,280,5.2,6,6,16,6706,9,999999999,9,0.044,0,88,0.2,0,1 -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,51088,42744,14263,5365,300,1.5,8,7,16,7620,9,999999999,9,0.044,0,88,0.2,0,1 -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,-1.1,45,83100,590,1403,305,350,514,133,40135,34346,15313,5431,340,3.6,8,6,16,7620,9,999999999,9,0.044,0,88,0.2,0,1 -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,28932,26714,10973,3725,340,2.1,6,6,16,77777,9,999999999,9,0.044,0,88,0.2,0,1 -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,15611,9300,5671,1806,320,3.1,5,4,16,77777,9,999999999,8,0.044,0,88,0.2,0,1 -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,193,0,194,78,310,5.2,6,5,16,77777,9,999999999,8,0.044,0,88,0.2,0,1 -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,77777,9,999999999,7,0.044,0,88,0.2,0,1 -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,77777,9,999999999,7,0.044,0,88,0.2,0,1 -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,77777,9,999999999,7,0.044,0,88,0.2,0,1 -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,77777,9,999999999,7,0.044,0,88,0.2,0,1 -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,77777,9,999999999,8,0.044,0,88,0.2,0,1 -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,762,9,999999999,8,0.044,0,88,0.2,0,1 -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,701,9,999999999,8,0.044,0,88,0.2,0,1 -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,488,9,999999999,8,0.044,0,88,0.2,0,1 -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,549,9,999999999,9,0.044,0,88,0.2,0,1 -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,671,9,999999999,9,0.044,0,88,0.2,0,1 -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,-7,84,83000,0,0,260,0,0,0,0,0,0,0,350,7.7,10,10,14.5,840,9,999999999,9,0.044,0,88,0.2,0,1 -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,9,0.044,0,88,0.2,0,1 -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,9,0.044,0,88,0.2,0,1 -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,9,0.044,0,88,0.2,0,1 -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,-7,92,83400,132,1403,256,16,0,16,1559,0,1570,606,60,4.6,10,10,4.8,330,9,999999999,8,0.044,0,88,0.2,0,1 -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,10985,295,10804,3325,50,4.1,10,10,2.4,244,9,999999999,8,0.044,0,88,0.2,0,1 -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,-6.1,91,83600,520,1403,260,220,142,167,24418,10561,18623,5887,70,4.1,10,10,2.4,457,9,999999999,8,0.044,0,88,0.2,0,1 -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,16058,0,16192,6403,90,3.1,10,10,16,457,9,999999999,8,0.044,0,88,0.2,0,1 -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,10511,0,10600,4729,70,1.5,10,10,14.4,701,9,999999999,8,0.044,0,88,0.2,0,1 -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,14369,0,14490,6041,30,2.6,10,10,16,640,9,999999999,7,0.044,0,88,0.2,0,1 -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,12552,0,12654,5135,60,2.6,10,10,16,823,9,999999999,7,0.044,0,88,0.2,0,1 -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,4801,0,4838,2096,90,3.1,10,10,16,640,9,999999999,7,0.044,0,88,0.2,0,1 -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,5216,0,5254,1877,0,0,10,10,16,701,9,999999999,7,0.044,0,88,0.2,0,1 -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,484,0,363,113,80,2.6,10,10,14.4,823,9,999999999,8,0.044,0,88,0.2,0,1 -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,7,0.044,0,88,0.2,0,1 -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,-5.6,95,83700,0,0,261,0,0,0,0,0,0,0,110,3.6,10,10,3.2,762,9,999999999,7,0.044,0,88,0.2,0,1 -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,-6.1,91,83700,0,0,260,0,0,0,0,0,0,0,110,4.6,10,10,2,366,9,999999999,7,0.044,0,88,0.2,0,1 -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,-7,92,83600,0,0,256,0,0,0,0,0,0,0,110,4.6,10,10,0.8,150,9,999999999,7,0.044,0,88,0.2,0,1 -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,7,0.044,0,88,0.2,0,1 -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,7,0.044,0,88,0.2,0,1 -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,7,0.044,0,88,0.2,0,1 -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,7,0.044,0,88,0.2,0,1 -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,7,0.044,0,88,0.2,0,1 -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,7,0.044,0,88,0.2,0,1 -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,7,0.044,0,88,0.2,0,1 -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,7,0.044,0,88,0.2,0,1 -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,7,0.044,0,88,0.2,0,1 -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,4.6,30,9,999999999,7,0.044,0,88,0.2,0,1 -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,61,9,999999999,7,0.044,0,88,0.2,0,1 -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,8334,0,8396,3003,280,2.6,10,10,0.4,30,9,999999999,6,0.044,0,88,0.2,0,1 -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,6038,0,6086,2676,220,4.6,10,10,5.2,91,9,999999999,6,0.044,0,88,0.2,0,1 -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,54558,51745,21998,7343,220,6.2,4,4,9.6,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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,56155,94008,9111,1459,220,4.1,3,3,11.2,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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,58560,54141,18878,6744,220,3.6,3,3,11.2,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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,11433,0,11526,4765,230,2.6,3,3,12.8,77777,9,999999999,4,0.044,0,88,0.2,0,1 -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,25528,17764,16841,4983,190,3.6,3,3,12.8,77777,9,999999999,4,0.044,0,88,0.2,0,1 -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,16145,12048,7212,2148,0,0,3,3,16,77777,9,999999999,4,0.044,0,88,0.2,0,1 -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,441,7517,353,73,80,4.1,3,3,12.8,77777,9,999999999,4,0.044,0,88,0.2,0,1 -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,4,0.044,0,88,0.2,0,1 -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,78,83300,0,0,215,0,0,0,0,0,0,0,150,3.6,0,0,16,77777,9,999999999,4,0.044,0,88,0.2,0,1 -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,77777,9,999999999,4,0.044,0,88,0.2,0,1 -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,77777,9,999999999,4,0.044,0,88,0.2,0,1 -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,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,28665,26600,5745,1971,140,4.1,0,0,16,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,40341,84355,8147,1175,110,5.2,0,0,16,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,50762,90725,9034,1378,130,4.6,0,0,16,77777,9,999999999,4,0.044,0,88,0.2,0,1 -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,55411,93192,9114,1454,130,3.1,0,0,16,77777,9,999999999,4,0.044,0,88,0.2,0,1 -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,59099,54724,15124,5603,0,0,0,0,16,77777,9,999999999,4,0.044,0,88,0.2,0,1 -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,38301,32198,18158,6129,140,2.1,0,0,16,77777,9,999999999,4,0.044,0,88,0.2,0,1 -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,29701,29281,10124,3456,110,2.6,0,0,16,77777,9,999999999,4,0.044,0,88,0.2,0,1 -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,15952,9976,5558,1758,120,2.1,0,0,16,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,71,83700,0,0,228,0,0,0,0,0,0,0,200,6.2,4,3,16,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,71,83700,0,0,237,0,0,0,0,0,0,0,210,6.2,8,7,16,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,68,83800,0,0,236,0,0,0,0,0,0,0,200,4.1,6,6,16,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,-11.7,56,83500,0,0,232,0,0,0,0,0,0,0,240,4.6,6,4,16,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,6706,9,999999999,3,0.044,0,88,0.2,0,1 -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,4572,9,999999999,4,0.044,0,88,0.2,0,1 -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,6706,9,999999999,4,0.044,0,88,0.2,0,1 -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,4572,9,999999999,4,0.044,0,88,0.2,0,1 -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,4572,9,999999999,5,0.044,0,88,0.2,0,1 -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,45,83700,334,1405,254,238,809,45,25170,69495,7088,836,230,5.2,6,6,16,4572,9,999999999,5,0.044,0,88,0.2,0,1 -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,43687,45971,12428,4318,250,2.6,8,8,16,2743,9,999999999,6,0.044,0,88,0.2,0,1 -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,45464,39777,17667,6214,290,3.1,7,7,16,5486,9,999999999,6,0.044,0,88,0.2,0,1 -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,61518,54908,12416,4733,300,1.5,6,6,16,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,29,83900,660,1405,278,506,949,58,53640,92654,8712,1401,20,2.6,6,6,16,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,29,83900,577,1405,273,429,910,54,45509,87317,8231,1268,130,2.6,4,4,16,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,33029,76933,7773,1039,0,0,6,6,16,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,15060,52885,4223,621,0,0,5,5,16,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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,83,83800,0,0,234,0,0,0,0,0,0,0,150,4.6,0,0,16,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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,77777,9,999999999,5,0.044,0,88,0.2,0,1 -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,-7.2,83,83700,0,0,225,0,0,0,0,0,0,0,160,4.1,0,0,16,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,-6.7,86,83600,0,0,225,0,0,0,0,0,0,0,170,4.6,0,0,16,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,77777,9,999999999,7,0.044,0,88,0.2,0,1 -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,77777,9,999999999,7,0.044,0,88,0.2,0,1 -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,77777,9,999999999,8,0.044,0,88,0.2,0,1 -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,27814,24956,5832,1988,210,8.2,0,0,16,77777,9,999999999,8,0.044,0,88,0.2,0,1 -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,39886,84567,8161,1162,210,6.2,1,1,16,77777,9,999999999,8,0.044,0,88,0.2,0,1 -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,50407,91009,8908,1359,220,3.6,1,1,16,77777,9,999999999,8,0.044,0,88,0.2,0,1 -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,54996,93388,8987,1434,0,0,1,1,16,77777,9,999999999,8,0.044,0,88,0.2,0,1 -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,53340,92518,8581,1387,100,1.5,0,0,16,77777,9,999999999,8,0.044,0,88,0.2,0,1 -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,45183,87174,7951,1247,120,2.1,1,1,16,77777,9,999999999,8,0.044,0,88,0.2,0,1 -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,-1.7,31,84300,431,1405,312,301,838,43,32218,76904,6744,1004,130,3.1,1,1,16,77777,9,999999999,8,0.044,0,88,0.2,0,1 -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,43,84200,237,1405,296,136,661,24,14670,52389,3918,603,110,3.6,0,0,16,77777,9,999999999,8,0.044,0,88,0.2,0,1 -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,60,83800,35,785,292,0,0,0,0,0,0,0,170,4.1,6,5,16,77777,9,999999999,8,0.044,0,88,0.2,0,1 -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,77777,9,999999999,8,0.044,0,88,0.2,0,1 -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,77777,9,999999999,7,0.044,0,88,0.2,0,1 -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,77777,9,999999999,7,0.044,0,88,0.2,0,1 -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,43,83800,0,0,266,0,0,0,0,0,0,0,210,7.7,0,0,16,77777,9,999999999,7,0.044,0,88,0.2,0,1 -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,-4.4,48,83600,0,0,263,0,0,0,0,0,0,0,220,5.7,0,0,16,77777,9,999999999,7,0.044,0,88,0.2,0,1 -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,-4.4,48,83700,0,0,263,0,0,0,0,0,0,0,230,5.7,0,0,16,77777,9,999999999,7,0.044,0,88,0.2,0,1 -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,77777,9,999999999,7,0.044,0,88,0.2,0,1 -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,77777,9,999999999,7,0.045,0,88,0.2,0,1 -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,-5,46,83300,0,0,271,0,0,0,0,0,0,0,210,7.2,2,2,16,77777,9,999999999,7,0.045,0,88,0.2,0,1 -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,-5.6,44,83200,0,0,262,0,0,0,0,0,0,0,210,7.2,0,0,16,77777,9,999999999,7,0.045,0,88,0.2,0,1 -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,-6.1,42,83200,0,0,261,0,0,0,0,0,0,0,210,8.2,0,0,16,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,27301,23018,5283,1813,230,5.7,6,5,16,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,39884,84310,8601,1165,240,2.6,6,5,16,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,49792,90388,8913,1354,50,2.6,3,3,16,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,54409,92821,8993,1430,80,6.2,2,2,16,77777,9,999999999,7,0.045,0,88,0.2,0,1 -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,53253,92385,8869,1402,90,7.2,3,3,16,77777,9,999999999,7,0.045,0,88,0.2,0,1 -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,51034,46342,7982,3006,60,6.7,2,2,16,77777,9,999999999,7,0.045,0,88,0.2,0,1 -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,33789,31499,6535,2338,60,5.2,3,3,16,77777,9,999999999,7,0.045,0,88,0.2,0,1 -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,-2.2,41,83700,235,1406,294,140,617,37,16134,6255,4273,1399,60,4.6,2,2,16,77777,9,999999999,8,0.045,0,88,0.2,0,1 -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,77777,9,999999999,8,0.045,0,88,0.2,0,1 -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,77777,9,999999999,8,0.045,0,88,0.2,0,1 -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,77777,9,999999999,8,0.045,0,88,0.2,0,1 -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,77777,9,999999999,9,0.045,0,88,0.2,0,1 -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,77777,9,999999999,9,0.045,0,88,0.2,0,1 -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,72,83500,0,0,240,0,0,0,0,0,0,0,160,4.1,0,0,16,77777,9,999999999,8,0.045,0,88,0.2,0,1 -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,77777,9,999999999,8,0.045,0,88,0.2,0,1 -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,77777,9,999999999,8,0.045,0,88,0.2,0,1 -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,77777,9,999999999,8,0.045,0,88,0.2,0,1 -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,77777,9,999999999,8,0.045,0,88,0.2,0,1 -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,51,83500,0,0,232,0,0,0,0,0,0,0,150,2.6,0,0,16,77777,9,999999999,8,0.045,0,88,0.2,0,1 -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,77777,9,999999999,8,0.045,0,88,0.2,0,1 -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,-10,65,83900,0,0,222,0,0,0,0,0,0,0,170,5.2,0,0,16,77777,9,999999999,8,0.045,0,88,0.2,0,1 -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,71,83500,0,0,219,0,0,0,0,0,0,0,160,4.1,0,0,16,77777,9,999999999,9,0.045,0,88,0.2,0,1 -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,77777,9,999999999,9,0.045,0,88,0.2,0,1 -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,6706,9,999999999,9,0.045,0,88,0.2,0,1 -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,27305,23915,5496,1872,130,3.6,1,1,16,6706,9,999999999,9,0.045,0,88,0.2,0,1 -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,39147,83363,8310,1152,130,4.6,0,0,16,6706,9,999999999,10,0.045,0,88,0.2,0,1 -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,31,84000,612,1406,264,468,936,59,49548,90481,8912,1348,120,4.6,2,2,16,6706,9,999999999,10,0.045,0,88,0.2,0,1 -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,54219,93022,8851,1416,180,2.6,1,1,16,6706,9,999999999,10,0.045,0,88,0.2,0,1 -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,52452,91453,8727,1389,230,3.1,4,4,16,77777,9,999999999,10,0.045,0,88,0.2,0,1 -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,48081,48218,16208,5578,300,1.5,7,6,16,6706,9,999999999,10,0.045,0,88,0.2,0,1 -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,16956,5076,14246,4420,0,0,5,4,16,6706,9,999999999,10,0.045,0,88,0.2,0,1 -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,14878,10684,7686,2194,80,1.5,2,2,16,77777,9,999999999,9,0.045,0,88,0.2,0,1 -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,77777,9,999999999,9,0.045,0,88,0.2,0,1 -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,77777,9,999999999,9,0.045,0,88,0.2,0,1 -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,77777,9,999999999,9,0.045,0,88,0.2,0,1 -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,77777,9,999999999,9,0.045,0,88,0.2,0,1 -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,77777,9,999999999,9,0.045,0,88,0.2,0,1 -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,51,83400,0,0,252,0,0,0,0,0,0,0,210,5.8,1,1,16,77777,9,999999999,9,0.045,0,88,0.2,0,1 -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,-7,59,83600,0,0,264,0,0,0,0,0,0,0,190,5.3,5,5,16,77777,9,999999999,9,0.045,0,88,0.2,0,1 -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,77777,9,999999999,10,0.045,0,88,0.2,0,1 -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,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,40,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,4603,0,2475,740,210,4.1,2,1,120,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,21167,17172,5595,1897,190,5.2,3,1,120,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,-7.8,18,83400,491,1407,299,333,817,48,35420,76460,7437,1115,190,5.2,1,0,112,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,46073,84381,8632,1328,210,4.1,1,0,120,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,-7.8,13,83300,662,1407,320,474,878,60,50265,85815,8998,1420,310,2.1,1,0,120,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,49915,86961,8874,1394,340,3.6,1,0,120,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,43328,84763,7810,1228,10,4.1,0,0,120,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,30296,73078,6596,988,40,4.6,0,0,120,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,21,83200,232,1407,309,129,607,29,13766,47395,4687,618,80,3.6,0,0,104,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,26,83200,33,762,295,11,137,5,0,0,0,0,50,3.1,0,0,104,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,35,83200,0,0,277,0,0,0,0,0,0,0,130,3.1,0,0,80,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,48,83200,0,0,260,0,0,0,0,0,0,0,180,3.6,0,0,48,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,48,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,5029,27406,2162,307,190,4.1,0,0,112,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,21591,66679,4214,708,200,4.1,0,0,112,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,35448,77525,6997,1087,190,3.6,1,1,112,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,16,82900,605,1407,298,429,885,48,45691,85535,7337,1233,200,3.1,1,1,112,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,48949,82952,9707,1451,120,2.1,1,1,112,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,49198,88782,6575,1191,30,1.5,1,1,112,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,47285,46880,12154,4390,310,5.2,5,5,112,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,32327,33597,9660,3286,10,4.6,5,5,112,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,-11.7,13,82900,231,1407,300,135,672,25,14406,52198,4068,600,20,3.6,1,1,112,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,0,0,0,0,360,2.6,1,1,112,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,4267,9,999999999,5,0.045,0,88,0.2,0,1 -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,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,4267,9,999999999,5,0.045,0,88,0.2,0,1 -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,4267,9,999999999,6,0.045,0,88,0.2,0,1 -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,5486,9,999999999,6,0.046,0,88,0.2,0,1 -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,77777,9,999999999,6,0.046,0,88,0.2,0,1 -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,77777,9,999999999,6,0.046,0,88,0.2,0,1 -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,77777,9,999999999,6,0.046,0,88,0.2,0,1 -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,77777,9,999999999,6,0.046,0,88,0.2,0,1 -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,77777,9,999999999,6,0.046,0,88,0.2,0,1 -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,1,1,96,77777,9,999999999,6,0.046,0,88,0.2,0,1 -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,36,83400,96,1302,252,33,169,21,3698,0,2358,699,240,1.5,1,1,112,77777,9,999999999,6,0.046,0,88,0.2,0,1 -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,18738,14702,5797,1945,200,4.1,1,1,112,77777,9,999999999,6,0.046,0,88,0.2,0,1 -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,20,83400,483,1408,284,297,670,66,35203,33428,7842,2841,190,3.6,2,1,112,77777,9,999999999,6,0.046,0,88,0.2,0,1 -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,39881,34376,15578,5530,200,3.1,8,3,112,77777,9,999999999,6,0.046,0,88,0.2,0,1 -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,51088,45870,17139,6184,120,3.1,7,2,112,77777,9,999999999,6,0.046,0,88,0.2,0,1 -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,47391,41200,19637,6813,90,3.1,8,3,112,77777,9,999999999,6,0.046,0,88,0.2,0,1 -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,40587,38152,13540,4804,110,2.6,7,2,112,77777,9,999999999,6,0.046,0,88,0.2,0,1 -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,-11.1,14,83100,422,1408,310,229,441,96,25957,23879,10920,3622,350,3.6,9,4,112,77777,9,999999999,6,0.046,0,88,0.2,0,1 -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,10282,3171,8475,2293,350,3.1,10,6,96,7620,9,999999999,6,0.046,0,88,0.2,0,1 -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,0,0,0,0,340,2.1,10,9,80,7925,9,999999999,6,0.046,0,88,0.2,0,1 -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,7925,9,999999999,6,0.046,0,88,0.2,0,1 -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,10,10,48,7925,9,999999999,6,0.046,0,88,0.2,0,1 -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,7925,9,999999999,6,0.046,0,88,0.2,0,1 -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,7925,9,999999999,6,0.046,0,88,0.2,0,1 -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,7925,9,999999999,6,0.046,0,88,0.2,0,1 -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,4877,9,999999999,6,0.046,0,88,0.2,0,1 -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,4877,9,999999999,6,0.046,0,88,0.2,0,1 -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,56,83000,0,0,291,0,0,0,0,0,0,0,170,2.1,10,10,48,4877,9,999999999,6,0.046,0,88,0.2,0,1 -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,4572,9,999999999,6,0.046,0,88,0.2,0,1 -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,4572,9,999999999,6,0.046,0,88,0.2,0,1 -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,5486,9,999999999,6,0.046,0,88,0.2,0,1 -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,5486,9,999999999,6,0.046,0,88,0.2,0,1 -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,5486,9,999999999,6,0.046,0,88,0.2,0,1 -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,5486,9,999999999,6,0.046,0,88,0.2,0,1 -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,3301,0,2758,778,110,2.1,5,5,112,77777,9,999999999,6,0.046,0,88,0.2,0,1 -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,37,83300,305,1408,289,204,691,54,23405,20107,6211,2059,120,2.6,4,4,112,77777,9,999999999,6,0.046,0,88,0.2,0,1 -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,31122,28898,11178,3874,340,2.6,4,3,112,77777,9,999999999,6,0.046,0,88,0.2,0,1 -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,50650,47672,11463,4248,300,5.7,2,2,112,77777,9,999999999,6,0.046,0,88,0.2,0,1 -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,46687,39533,17972,6413,160,2.1,3,3,112,77777,9,999999999,6,0.046,0,88,0.2,0,1 -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,54729,48951,10449,3975,130,2.6,2,2,112,77777,9,999999999,6,0.046,0,88,0.2,0,1 -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,-7.8,18,83200,561,1408,314,313,536,100,36506,32543,11702,4239,160,2.1,4,4,104,77777,9,999999999,6,0.046,0,88,0.2,0,1 -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,22027,17786,9847,3333,70,8.2,4,4,104,77777,9,999999999,6,0.046,0,88,0.2,0,1 -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,7292,1484,4683,1502,80,7.7,4,4,104,77777,9,999999999,7,0.046,0,88,0.2,0,1 -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,0,0,0,0,60,5.2,4,4,80,77777,9,999999999,7,0.046,0,88,0.2,0,1 -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,77777,9,999999999,7,0.046,0,88,0.2,0,1 -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,488,9,999999999,7,0.046,0,88,0.2,0,1 -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,6096,9,999999999,7,0.046,0,88,0.2,0,1 -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,396,9,999999999,7,0.046,0,88,0.2,0,1 -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,305,9,999999999,7,0.046,0,88,0.2,0,1 -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,213,9,999999999,7,0.046,0,88,0.2,0,1 -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,7,0.046,0,88,0.2,0,1 -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,7,0.046,0,88,0.2,0,1 -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,7,0.046,0,88,0.2,0,1 -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,7,0.046,0,88,0.2,0,1 -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,7,0.046,0,88,0.2,0,1 -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,10,10,0.8,30,9,999999999,7,0.046,0,88,0.2,0,1 -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,7,0.046,0,88,0.2,0,1 -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,10,9,3.2,61,9,999999999,8,0.046,0,88,0.2,0,1 -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,1067,0,1074,408,0,0,10,10,2.8,61,9,999999999,8,0.046,0,88,0.2,0,1 -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,4543,0,4576,1802,70,1.5,10,10,4,183,9,999999999,8,0.046,0,88,0.2,0,1 -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,7513,0,7573,3145,10,3.1,10,10,1.6,122,9,999999999,8,0.046,0,88,0.2,0,1 -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,9714,0,9793,4202,40,2.6,10,10,2.4,152,9,999999999,8,0.046,0,88,0.2,0,1 -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,-2.2,83,83300,650,1409,284,126,0,126,12802,0,12910,5438,30,2.1,10,10,6.4,244,9,999999999,9,0.046,0,88,0.2,0,1 -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,18677,0,18832,7091,80,4.1,10,10,9.6,6096,9,999999999,9,0.046,0,88,0.2,0,1 -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,39457,35867,13932,4909,360,4.6,10,6,16,6096,9,999999999,9,0.046,0,88,0.2,0,1 -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,17531,7419,13481,4213,320,4.6,10,8,12.8,7315,9,999999999,9,0.046,0,88,0.2,0,1 -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,-2.8,79,83200,228,1409,266,84,71,72,9135,1878,7859,2189,350,4.6,10,7,14.4,7315,9,999999999,9,0.046,0,88,0.2,0,1 -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,0,0,0,0,360,3.6,10,9,11.2,4267,9,999999999,9,0.046,0,88,0.2,0,1 -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,10,0.046,0,88,0.2,0,1 -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,10,0.046,0,88,0.2,0,1 -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,10,10,9.6,366,9,999999999,10,0.046,0,88,0.2,0,1 -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,10,9,9.6,4267,9,999999999,10,0.046,0,88,0.2,0,1 -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,10,10,8,366,9,999999999,10,0.046,0,88,0.2,0,1 -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,10,10,8,366,9,999999999,11,0.046,0,88,0.2,0,1 -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,2,2,8,77777,9,999999999,11,0.046,0,88,0.2,0,1 -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,77777,9,999999999,11,0.046,0,88,0.2,0,1 -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,10,9,8,4572,9,999999999,11,0.046,0,88,0.2,0,1 -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,11,0.046,0,88,0.2,0,1 -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,12,0.046,0,88,0.2,0,1 -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,12,0.046,0,88,0.2,0,1 -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,11,0.046,0,88,0.2,0,1 -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,1676,9,999999999,11,0.046,0,88,0.2,0,1 -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,1261,0,1269,467,360,2.6,10,10,6.4,244,9,999999999,11,0.046,0,88,0.2,0,1 -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,4443,0,4475,1763,20,1.5,10,10,1,152,9,999999999,11,0.046,0,88,0.2,0,1 -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,7511,0,7570,3137,360,2.1,10,10,0.8,122,9,999999999,10,0.046,0,88,0.2,0,1 -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,11530,0,11625,4817,70,2.6,10,10,1.2,244,9,999999999,10,0.046,0,88,0.2,0,1 -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,12700,0,12806,5392,360,4.1,10,10,4.8,366,9,999999999,10,0.046,0,88,0.2,0,1 -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,14922,0,15046,6050,350,2.6,10,10,11.2,427,9,999999999,9,0.046,0,88,0.2,0,1 -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,12912,0,13017,5110,320,2.1,10,10,16,671,9,999999999,9,0.046,0,88,0.2,0,1 -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,7777,0,7836,3083,360,3.6,10,10,16,396,9,999999999,9,0.046,0,88,0.2,0,1 -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,4710,0,4744,1686,90,1.5,10,10,16,427,9,999999999,9,0.046,0,88,0.2,0,1 -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,0,0,0,0,140,1.5,10,10,12.8,335,9,999999999,8,0.046,0,88,0.2,0,1 -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,8,0.046,0,88,0.2,0,1 -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,8,0.046,0,88,0.2,0,1 -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,8,0.046,0,88,0.2,0,1 -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,7,0.046,0,88,0.2,0,1 -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,7,0.046,0,88,0.2,0,1 -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,95,83400,0,0,229,0,0,0,0,0,0,0,110,3.1,0,0,11.2,77777,9,999999999,7,0.046,0,88,0.2,0,1 -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,-6.1,91,83500,0,0,226,0,0,0,0,0,0,0,130,2.1,0,0,16,77777,9,999999999,6,0.046,0,88,0.2,0,1 -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,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,6706,9,999999999,5,0.045,0,88,0.2,0,1 -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,2343,0,2124,621,150,4.6,9,7,112,6706,9,999999999,5,0.045,0,88,0.2,0,1 -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,10343,3126,8481,2601,110,3.1,8,8,112,6706,9,999999999,5,0.045,0,88,0.2,0,1 -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,18289,3955,16143,5045,130,4.1,9,9,112,4877,9,999999999,5,0.045,0,88,0.2,0,1 -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,14784,4004,11654,4290,150,4.6,9,9,96,4572,9,999999999,5,0.045,0,88,0.2,0,1 -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,-5.6,31,83300,645,1409,300,358,468,144,41243,33018,16658,6002,180,7.2,7,6,96,6706,9,999999999,5,0.045,0,88,0.2,0,1 -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,32631,18689,20192,6906,350,5.2,8,5,112,6706,9,999999999,5,0.045,0,88,0.2,0,1 -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,42487,39873,11998,4321,350,4.6,2,2,64,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,25262,22551,10572,3516,360,5.2,3,3,48,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,10126,3827,6027,1829,10,3.1,4,4,16,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,-2.2,83,83200,31,763,259,11,19,10,0,0,0,0,350,2.1,6,4,16,3962,9,999999999,5,0.045,0,88,0.2,0,1 -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,3962,9,999999999,5,0.045,0,88,0.2,0,1 -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,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,396,9,999999999,5,0.045,0,88,0.2,0,1 -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,427,9,999999999,5,0.045,0,88,0.2,0,1 -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,488,9,999999999,5,0.045,0,88,0.2,0,1 -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,305,9,999999999,5,0.045,0,88,0.2,0,1 -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,5,0.045,0,88,0.2,0,1 -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,5,0.045,0,88,0.2,0,1 -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,5,0.045,0,88,0.2,0,1 -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,5,0.045,0,88,0.2,0,1 -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,274,9,999999999,5,0.045,0,88,0.2,0,1 -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,5,0.045,0,88,0.2,0,1 -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,5,0.045,0,88,0.2,0,1 -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,1164,0,1171,430,60,2.6,10,10,9.6,1402,9,999999999,5,0.045,0,88,0.2,0,1 -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,7566,736,7022,2245,80,2.6,10,9,6.4,427,9,999999999,5,0.045,0,88,0.2,0,1 -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,10120,0,10199,3940,10,1.5,10,10,6.4,427,9,999999999,5,0.045,0,88,0.2,0,1 -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,20734,3490,18564,6245,80,2.1,7,7,16,1280,9,999999999,4,0.045,0,88,0.2,0,1 -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,40814,27132,24818,7977,70,3.6,8,8,19.2,2134,9,999999999,4,0.045,0,88,0.2,0,1 -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,14421,0,14540,5875,70,3.1,10,10,19.2,1676,9,999999999,4,0.045,0,88,0.2,0,1 -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,26593,5880,23654,6983,350,1.5,10,9,19.2,1280,9,999999999,4,0.045,0,88,0.2,0,1 -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,18731,11529,11934,3848,50,2.6,10,7,19.2,1524,9,999999999,4,0.045,0,88,0.2,0,1 -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,11927,2944,10817,2465,0,0,8,8,19.2,3048,9,999999999,4,0.045,0,88,0.2,0,1 -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,0,0,0,0,160,3.6,5,2,19.2,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,4,0.045,0,88,0.2,0,1 -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,4,0.045,0,88,0.2,0,1 -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,-7.8,79,84100,0,0,224,0,0,0,0,0,0,0,200,3.1,0,0,32,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,3377,0,1805,535,180,4.1,5,2,112,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,16990,13221,6288,2043,210,3.1,3,3,112,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,34783,33381,6708,2430,190,5.2,1,1,112,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,44658,42866,14247,5072,200,4.6,3,3,112,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,55353,50827,10792,4090,180,4.1,2,2,112,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,42787,37185,11326,4255,30,1.5,3,3,112,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,43611,43418,12770,4538,290,4.1,6,2,112,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,26874,25592,7932,2755,300,9.8,3,3,96,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,13106,5505,4683,1494,330,5.2,4,2,96,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,0,0,0,0,310,8.2,4,3,96,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,77777,9,999999999,2,0.045,0,88,0.2,0,1 -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,77777,9,999999999,2,0.045,0,88,0.2,0,1 -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,77777,9,999999999,2,0.045,0,88,0.2,0,1 -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,-15.6,39,84100,0,0,218,0,0,0,0,0,0,0,350,3.1,0,0,32,77777,9,999999999,2,0.045,0,88,0.2,0,1 -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,32,77777,9,999999999,2,0.045,0,88,0.2,0,1 -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,48,84200,0,0,213,0,0,0,0,0,0,0,0,0,0,0,32,77777,9,999999999,2,0.045,0,88,0.2,0,1 -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,48,77777,9,999999999,2,0.045,0,88,0.2,0,1 -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,48,77777,9,999999999,2,0.045,0,88,0.2,0,1 -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,77777,9,999999999,2,0.045,0,88,0.2,0,1 -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,58,84300,0,0,206,0,0,0,0,0,0,0,180,2.6,0,0,48,77777,9,999999999,2,0.045,0,88,0.2,0,1 -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,60,84300,0,0,204,0,0,0,0,0,0,0,170,3.1,0,0,48,77777,9,999999999,2,0.045,0,88,0.2,0,1 -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,67,84400,0,0,200,0,0,0,0,0,0,0,130,2.6,0,0,48,77777,9,999999999,2,0.045,0,88,0.2,0,1 -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,77777,9,999999999,2,0.045,0,88,0.2,0,1 -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,3521,19722,1672,238,170,4.6,0,0,777.7,77777,9,999999999,2,0.045,0,88,0.2,0,1 -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,-16.1,37,84500,285,1411,217,179,758,26,19125,62430,4218,679,150,6.2,0,0,777.7,77777,9,999999999,2,0.045,0,88,0.2,0,1 -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,31,84500,460,1411,229,322,870,38,34325,80220,5975,985,150,4.1,1,0,777.7,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,45849,89618,6922,1173,150,5.7,1,0,777.7,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,51826,94551,7017,1231,150,3.1,0,0,120,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,50893,93981,6881,1209,330,3.1,0,0,120,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,43600,89335,6359,1095,350,3.1,0,0,120,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,30714,78083,5250,882,350,5.2,0,0,96,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,14226,52793,3758,575,330,4.6,0,0,88,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,49,84100,31,764,233,12,192,4,0,0,0,0,310,2.6,0,0,88,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,56,84000,0,0,228,0,0,0,0,0,0,0,310,2.1,0,0,32,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,-10,65,84000,0,0,222,0,0,0,0,0,0,0,0,0,1,0,32,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,61,84000,0,0,234,0,0,0,0,0,0,0,160,2.1,5,3,32,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,-10,65,83900,0,0,240,0,0,0,0,0,0,0,160,2.1,9,7,32,6706,9,999999999,3,0.045,0,88,0.2,0,1 -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,68,83800,0,0,233,0,0,0,0,0,0,0,190,2.1,8,5,32,6706,9,999999999,3,0.045,0,88,0.2,0,1 -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,68,83700,0,0,238,0,0,0,0,0,0,0,120,2.1,10,7,32,6706,9,999999999,3,0.045,0,88,0.2,0,1 -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,10,8,32,6706,9,999999999,3,0.045,0,88,0.2,0,1 -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,68,83500,0,0,254,0,0,0,0,0,0,0,0,0,10,10,32,6706,9,999999999,4,0.045,0,88,0.2,0,1 -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,75,83400,0,0,250,0,0,0,0,0,0,0,290,1.5,10,10,32,6706,9,999999999,4,0.045,0,88,0.2,0,1 -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,6096,9,999999999,4,0.045,0,88,0.2,0,1 -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,68,83200,0,0,254,0,0,0,0,0,0,0,170,1.5,10,10,32,5486,9,999999999,4,0.045,0,88,0.2,0,1 -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,68,83000,0,0,254,0,0,0,0,0,0,0,120,2.1,10,10,32,5486,9,999999999,4,0.045,0,88,0.2,0,1 -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,-8.9,71,82900,0,0,258,0,0,0,0,0,0,0,140,2.1,10,10,32,4572,9,999999999,4,0.045,0,88,0.2,0,1 -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,4572,9,999999999,4,0.045,0,88,0.2,0,1 -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,-9.4,68,82700,72,1141,250,17,14,16,1901,0,1793,524,340,2.1,9,9,112,4572,9,999999999,4,0.045,0,88,0.2,0,1 -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,59,82600,282,1411,254,83,0,83,8194,0,8254,2679,60,1.5,10,9,112,3658,9,999999999,4,0.045,0,88,0.2,0,1 -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,12120,0,12214,4430,330,5.7,10,10,112,4572,9,999999999,4,0.045,0,88,0.2,0,1 -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,21508,4926,18438,6167,10,2.6,10,9,112,4572,9,999999999,4,0.045,0,88,0.2,0,1 -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,47,82600,637,1411,264,425,315,282,46285,30602,30893,8809,70,3.1,10,9,96,3962,9,999999999,4,0.045,0,88,0.2,0,1 -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,24378,7828,19250,6621,150,2.1,10,9,96,3962,9,999999999,4,0.045,0,88,0.2,0,1 -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,40825,38818,11031,3998,310,2.6,5,2,96,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,12367,2944,10474,3474,310,7.7,9,9,96,3962,9,999999999,4,0.045,0,88,0.2,0,1 -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,16,82800,226,1411,274,94,206,60,10383,4497,6649,1953,280,8.2,7,4,96,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,0,0,0,0,310,9.8,4,4,80,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,32,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,48,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,-13.3,48,83800,69,1117,229,18,89,12,2055,0,1372,417,160,3.6,3,3,96,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,15529,9703,4562,1533,160,3.6,2,2,112,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,35814,37613,10480,3599,190,3.1,3,3,112,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,47136,44454,9333,3480,150,3.1,2,2,112,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,44403,38690,11879,4453,150,6.7,3,3,112,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,49488,45409,11968,4464,160,7.7,2,2,112,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,34045,29054,15090,5184,140,8.2,3,3,112,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,27631,26521,8033,2783,140,5.2,4,2,112,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,12076,4800,4682,1492,140,3.1,5,3,96,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,0,0,0,0,360,1,6,6,64,5486,9,999999999,5,0.045,0,88,0.2,0,1 -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,8,6,32,7010,9,999999999,5,0.045,0,88,0.2,0,1 -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,-8.3,49,83500,0,0,253,0,0,0,0,0,0,0,160,1.5,5,4,32,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,54,83500,0,0,242,0,0,0,0,0,0,0,90,2.1,4,4,32,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,56,83500,0,0,240,0,0,0,0,0,0,0,350,1,4,4,32,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,5182,9,999999999,5,0.045,0,88,0.2,0,1 -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,77777,9,999999999,5,0.046,0,88,0.2,0,1 -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,4267,9,999999999,6,0.046,0,88,0.2,0,1 -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,3962,9,999999999,6,0.046,0,88,0.2,0,1 -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,4267,9,999999999,6,0.046,0,88,0.2,0,1 -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,3353,9,999999999,6,0.046,0,88,0.2,0,1 -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,1,1,32,77777,9,999999999,6,0.046,0,88,0.2,0,1 -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,77777,9,999999999,6,0.046,0,88,0.2,0,1 -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,-8.3,75,83300,67,1118,228,25,227,12,2844,0,1367,413,160,2.1,1,1,96,77777,9,999999999,6,0.046,0,88,0.2,0,1 -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,17136,10595,4555,1528,0,0,1,1,96,77777,9,999999999,6,0.046,0,88,0.2,0,1 -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,34464,31708,5795,2105,340,1.5,1,1,96,77777,9,999999999,6,0.046,0,88,0.2,0,1 -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,41927,79033,9105,1293,20,2.1,1,1,96,77777,9,999999999,6,0.046,0,88,0.2,0,1 -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,46514,82329,8609,1354,10,3.1,1,1,88,77777,9,999999999,6,0.046,0,88,0.2,0,1 -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,48530,43721,12173,4533,20,2.6,3,3,88,77777,9,999999999,6,0.046,0,88,0.2,0,1 -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,41723,38352,8390,3115,10,3.1,2,2,80,77777,9,999999999,6,0.046,0,88,0.2,0,1 -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,25894,21089,15805,4590,60,4.1,4,4,64,77777,9,999999999,6,0.046,0,88,0.2,0,1 -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,11398,5537,7954,2185,350,6.2,4,4,80,77777,9,999999999,6,0.046,0,88,0.2,0,1 -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,0,0,0,0,350,5.2,6,6,64,3658,9,999999999,6,0.046,0,88,0.2,0,1 -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,6096,9,999999999,6,0.046,0,88,0.2,0,1 -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,3962,9,999999999,6,0.046,0,88,0.2,0,1 -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,2,2,32,77777,9,999999999,6,0.046,0,88,0.2,0,1 -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,77777,9,999999999,6,0.046,0,88,0.2,0,1 -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,1036,9,999999999,6,0.046,0,88,0.2,0,1 -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,975,9,999999999,6,0.046,0,88,0.2,0,1 -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,77777,9,999999999,6,0.046,0,88,0.2,0,1 -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,77777,9,999999999,6,0.046,0,88,0.2,0,1 -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,77777,9,999999999,6,0.046,0,88,0.2,0,1 -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,-7.8,79,83100,0,0,232,0,0,0,0,0,0,0,210,1.5,7,2,24,77777,9,999999999,6,0.046,0,88,0.2,0,1 -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,77777,9,999999999,6,0.046,0,88,0.2,0,1 -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,77777,9,999999999,6,0.046,0,88,0.2,0,1 -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,77777,9,999999999,6,0.046,0,88,0.2,0,1 -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,77777,9,999999999,5,0.046,0,88,0.2,0,1 -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,-8.3,75,83200,65,1094,233,18,57,15,2005,0,1674,484,180,2.1,8,3,80,77777,9,999999999,5,0.046,0,88,0.2,0,1 -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,14942,10375,6874,2158,190,4.1,7,2,96,77777,9,999999999,5,0.046,0,88,0.2,0,1 -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,32625,32605,10142,3489,220,3.6,4,3,80,77777,9,999999999,5,0.046,0,88,0.2,0,1 -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,43051,39821,9872,3658,0,0,2,2,80,77777,9,999999999,5,0.046,0,88,0.2,0,1 -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,46937,42223,15553,5616,320,4.1,3,3,96,77777,9,999999999,5,0.046,0,88,0.2,0,1 -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,53843,48351,8406,3210,310,9.3,1,1,112,77777,9,999999999,5,0.046,0,88,0.2,0,1 -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,17,83300,551,1412,264,352,740,63,42458,39348,7616,2840,320,8.2,1,1,112,77777,9,999999999,4,0.046,0,88,0.2,0,1 -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,18,83300,415,1412,260,233,562,68,27083,25797,7925,2749,320,8.2,1,1,112,77777,9,999999999,4,0.046,0,88,0.2,0,1 -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,13215,4833,4261,1377,320,7.7,1,1,96,77777,9,999999999,4,0.046,0,88,0.2,0,1 -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,25,83400,32,765,239,10,96,6,0,0,0,0,340,4.6,0,0,80,77777,9,999999999,4,0.046,0,88,0.2,0,1 -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,-15,27,83500,0,0,235,0,0,0,0,0,0,0,320,2.6,0,0,48,77777,9,999999999,4,0.046,0,88,0.2,0,1 -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,77777,9,999999999,4,0.046,0,88,0.2,0,1 -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,77777,9,999999999,4,0.046,0,88,0.2,0,1 -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,77777,9,999999999,3,0.046,0,88,0.2,0,1 -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,77777,9,999999999,3,0.046,0,88,0.2,0,1 -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,77777,9,999999999,3,0.046,0,88,0.2,0,1 -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,77777,9,999999999,3,0.046,0,88,0.2,0,1 -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,77777,9,999999999,3,0.046,0,88,0.2,0,1 -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,77777,9,999999999,3,0.046,0,88,0.2,0,1 -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,-16.7,35,83500,0,0,226,0,0,0,0,0,0,0,140,2.1,3,3,48,77777,9,999999999,3,0.046,0,88,0.2,0,1 -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,77777,9,999999999,3,0.046,0,88,0.2,0,1 -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,77777,9,999999999,2,0.046,0,88,0.2,0,1 -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,77777,9,999999999,2,0.046,0,88,0.2,0,1 -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,77777,9,999999999,3,0.046,0,88,0.2,0,1 -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,2201,0,1875,520,320,1.5,9,4,96,77777,9,999999999,3,0.046,0,88,0.2,0,1 -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,12617,7218,8107,2423,260,1.5,8,3,96,77777,9,999999999,3,0.046,0,88,0.2,0,1 -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,-13.3,32,83400,448,1412,244,270,564,91,30935,30713,10461,3571,340,3.1,5,2,80,77777,9,999999999,3,0.046,0,88,0.2,0,1 -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,38235,34624,12595,4533,300,2.1,4,3,80,77777,9,999999999,3,0.046,0,88,0.2,0,1 -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,46907,42469,14802,5382,350,3.1,7,2,80,77777,9,999999999,3,0.046,0,88,0.2,0,1 -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,-15.6,18,83300,624,1412,263,418,706,106,49158,45522,12508,4634,10,4.1,4,3,96,77777,9,999999999,3,0.046,0,88,0.2,0,1 -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,46318,43841,7838,2918,360,3.1,0,0,96,77777,9,999999999,3,0.046,0,88,0.2,0,1 -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,29966,28718,6950,2445,310,10.3,1,1,96,77777,9,999999999,3,0.046,0,88,0.2,0,1 -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,12940,6520,5416,1681,300,10.3,2,2,80,77777,9,999999999,3,0.046,0,88,0.2,0,1 -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,0,0,0,0,300,8.8,3,3,80,77777,9,999999999,3,0.046,0,88,0.2,0,1 -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,77777,9,999999999,3,0.046,0,88,0.2,0,1 -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,77777,9,999999999,4,0.046,0,88,0.2,0,1 -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,77777,9,999999999,4,0.046,0,88,0.2,0,1 -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,77777,9,999999999,4,0.046,0,88,0.2,0,1 -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,77777,9,999999999,4,0.046,0,88,0.2,0,1 -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,4572,9,999999999,4,0.046,0,88,0.2,0,1 -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,77777,9,999999999,4,0.046,0,88,0.2,0,1 -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,-15,41,83600,0,0,218,0,0,0,0,0,0,0,170,3.1,0,0,48,77777,9,999999999,4,0.046,0,88,0.2,0,1 -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,-15,41,83600,0,0,218,0,0,0,0,0,0,0,170,4.1,0,0,48,77777,9,999999999,4,0.046,0,88,0.2,0,1 -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,39,83600,0,0,220,0,0,0,0,0,0,0,180,4.6,0,0,48,77777,9,999999999,4,0.046,0,88,0.2,0,1 -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,77777,9,999999999,4,0.046,0,88,0.2,0,1 -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,-15.6,39,83500,0,0,218,0,0,0,0,0,0,0,180,3.1,0,0,48,77777,9,999999999,4,0.046,0,88,0.2,0,1 -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,48,83600,0,0,213,0,0,0,0,0,0,0,170,2.6,0,0,48,77777,9,999999999,4,0.046,0,88,0.2,0,1 -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,80,77777,9,999999999,4,0.046,0,88,0.2,0,1 -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,-15,41,83700,61,1048,218,22,174,11,2501,0,1252,376,190,2.6,0,0,112,77777,9,999999999,4,0.046,0,88,0.2,0,1 -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,-13.9,30,83700,268,1412,236,148,577,39,17214,10714,4545,1515,220,3.1,1,0,112,77777,9,999999999,4,0.046,0,88,0.2,0,1 -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,33198,32416,7553,2686,190,4.6,3,1,112,77777,9,999999999,4,0.046,0,88,0.2,0,1 -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,40874,38266,13015,4657,200,2.6,6,2,112,77777,9,999999999,5,0.046,0,88,0.2,0,1 -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,47252,42296,11970,4471,150,2.1,6,3,112,77777,9,999999999,5,0.046,0,88,0.2,0,1 -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,19,83500,624,1412,298,336,419,151,38395,30354,17329,6086,360,4.6,7,4,112,8230,9,999999999,5,0.046,0,88,0.2,0,1 -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,-8.9,23,83500,550,1412,292,317,439,145,35783,30829,16438,5521,310,12.9,6,4,112,8230,9,999999999,5,0.046,0,88,0.2,0,1 -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,26352,24846,11303,3683,330,7.7,7,4,112,77777,9,999999999,5,0.046,0,88,0.2,0,1 -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,8775,2292,7155,2057,310,10.3,8,4,96,77777,9,999999999,5,0.046,0,88,0.2,0,1 -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,0,0,0,0,310,5.7,7,4,80,7620,9,999999999,5,0.046,0,88,0.2,0,1 -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,7620,9,999999999,5,0.046,0,88,0.2,0,1 -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,7620,9,999999999,5,0.046,0,88,0.2,0,1 -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,7620,9,999999999,5,0.046,0,88,0.2,0,1 -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,7620,9,999999999,5,0.046,0,88,0.2,0,1 -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,7620,9,999999999,5,0.046,0,88,0.2,0,1 -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,77777,9,999999999,5,0.046,0,88,0.2,0,1 -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,77777,9,999999999,5,0.046,0,88,0.2,0,1 -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,77777,9,999999999,5,0.046,0,88,0.2,0,1 -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,4572,9,999999999,5,0.046,0,88,0.2,0,1 -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,4572,9,999999999,5,0.046,0,88,0.2,0,1 -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,77777,9,999999999,5,0.046,0,88,0.2,0,1 -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,45,84000,0,0,251,0,0,0,0,0,0,0,200,2.1,6,5,48,3658,9,999999999,5,0.046,0,88,0.2,0,1 -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,49,84000,0,0,252,0,0,0,0,0,0,0,220,3.6,7,7,48,3962,9,999999999,5,0.046,0,88,0.2,0,1 -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,41,84100,0,0,265,0,0,0,0,0,0,0,250,4.1,8,8,80,3962,9,999999999,5,0.046,0,88,0.2,0,1 -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,2025,0,1353,399,190,3.6,7,4,80,77777,9,999999999,5,0.046,0,88,0.2,0,1 -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,-9.4,31,84200,266,1413,276,89,46,80,9752,1640,8798,2533,190,5.7,9,6,80,6401,9,999999999,5,0.046,0,88,0.2,0,1 -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,21725,16072,11811,3922,120,3.1,9,6,80,6401,9,999999999,5,0.046,0,88,0.2,0,1 -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,26492,15249,16714,5679,160,3.6,9,8,80,6401,9,999999999,5,0.046,0,88,0.2,0,1 -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,40750,34125,14567,5306,130,2.6,7,5,80,6401,9,999999999,5,0.046,0,88,0.2,0,1 -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,46701,42182,15513,5569,140,2.1,8,4,80,6401,9,999999999,5,0.046,0,88,0.2,0,1 -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,38325,35333,12628,4484,40,2.1,5,2,80,77777,9,999999999,5,0.046,0,88,0.2,0,1 -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,24688,22091,10569,3499,80,2.6,6,4,80,6401,9,999999999,5,0.046,0,88,0.2,0,1 -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,11688,5039,9153,2353,100,2.6,6,4,80,5486,9,999999999,5,0.046,0,88,0.2,0,1 -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,0,0,0,0,90,3.1,8,4,80,5486,9,999999999,5,0.046,0,88,0.2,0,1 -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,77777,9,999999999,5,0.046,0,88,0.2,0,1 -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,77777,9,999999999,5,0.046,0,88,0.2,0,1 -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,77777,9,999999999,5,0.046,0,88,0.2,0,1 -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,77777,9,999999999,5,0.046,0,88,0.2,0,1 -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,77777,9,999999999,5,0.046,0,88,0.2,0,1 -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,77777,9,999999999,5,0.046,0,88,0.2,0,1 -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,77777,9,999999999,5,0.046,0,88,0.2,0,1 -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,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,77777,9,999999999,5,0.045,0,88,0.2,0,1 -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,39,83900,58,1024,248,24,260,9,2558,13079,1501,188,180,4.6,1,1,96,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,-9.4,31,83900,264,1413,267,135,505,40,15636,8892,4642,1538,220,2.6,2,2,96,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,22,83800,442,1413,279,291,827,32,31230,75833,5087,887,190,4.1,1,1,96,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,42026,83745,6645,1133,190,3.1,1,1,96,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,47383,87098,6740,1192,210,2.6,1,1,96,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,54768,50530,9635,3649,180,2.6,2,2,96,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,48052,46731,8727,3227,130,3.1,3,3,96,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,33392,31669,5855,2087,100,3.1,2,2,96,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,14500,3904,3514,1163,80,3.1,1,1,96,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,0,0,0,0,70,1.5,1,1,96,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,51,83100,0,0,232,0,0,0,0,0,0,0,190,2.1,0,0,40,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,-12.2,24,83300,0,0,255,0,0,0,0,0,0,0,290,10.3,0,0,32,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,-15.6,18,83300,0,0,252,0,0,0,0,0,0,0,280,11.8,0,0,64,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,2089,0,1653,457,270,9.8,5,5,80,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,5019,580,4209,1406,310,11.3,8,8,64,3962,9,999999999,3,0.045,0,88,0.2,0,1 -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,14688,8388,8299,2914,310,9.3,7,7,64,3962,9,999999999,3,0.045,0,88,0.2,0,1 -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,41262,38722,12246,4410,290,6.7,5,4,80,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,45341,40343,15637,5620,290,11.8,2,2,80,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,53096,50104,13145,4837,290,11.3,3,3,80,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,42714,40777,10150,3706,300,7.7,2,2,80,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,23506,20516,8244,2850,300,11.8,3,3,80,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,13760,6557,4902,1557,290,9.3,1,1,80,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,1135,0,682,201,280,7.7,1,1,80,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,-15.6,39,83700,0,0,218,0,0,0,0,0,0,0,150,2.1,0,0,40,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,2026,0,1240,364,170,2.1,0,0,96,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,16463,9561,4531,1499,200,3.6,0,0,96,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,34169,32808,6442,2310,190,3.1,0,0,96,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,-11.1,19,83900,564,1413,275,397,832,65,47885,44729,7858,2943,140,2.1,0,0,96,77777,9,999999999,3,0.045,0,88,0.2,0,1 -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,55110,49272,8518,3253,80,1.5,0,0,96,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,18,83800,623,1413,288,450,862,70,54571,48949,8509,3245,360,2.1,0,0,96,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,42876,39494,7946,2957,60,2.6,1,0,96,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,30648,28363,6404,2272,360,4.6,1,0,96,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,14006,5357,4372,1416,50,4.1,1,0,96,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,1234,0,786,227,110,2.6,0,0,80,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,41,84100,0,0,242,0,0,0,0,0,0,0,160,4.1,0,0,48,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,2281,0,1028,309,180,3.1,0,0,112,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,15721,50672,5144,670,200,5.2,0,0,112,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,24,84300,437,1414,270,294,807,44,31251,73628,6886,1013,210,4.1,0,0,112,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,18,84200,564,1414,285,404,881,53,42861,84071,8107,1234,180,4.1,0,0,112,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,-13.3,11,84200,627,1414,293,461,910,57,48782,87995,8616,1342,150,3.1,0,0,112,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,48342,87698,8620,1337,290,1.5,0,0,112,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,41837,83150,7972,1211,90,3.6,0,0,112,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,29590,71658,6748,979,70,2.1,0,0,112,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,15146,5002,3735,1233,160,1.5,1,0,112,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,1432,0,993,273,130,2.1,5,1,80,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,-11.7,37,84700,52,978,248,19,116,13,2098,0,1439,403,190,1.5,4,3,112,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,15341,7885,4308,1429,200,2.1,2,2,112,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,32587,80638,5089,882,180,3.6,0,0,112,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,-11.7,18,84800,563,1414,275,415,946,38,44423,90386,5913,1054,210,2.6,0,0,112,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,50399,93985,6451,1158,230,2.1,0,0,112,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,50137,93871,6309,1139,60,1,0,0,96,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,43555,89817,5921,1048,140,2.6,0,0,96,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,30833,77402,5249,884,80,3.6,1,0,96,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,13512,45515,4531,615,110,1.5,3,1,96,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,1704,8614,1005,119,80,1.5,4,0,80,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,35,84600,0,0,249,0,0,0,0,0,0,0,110,2.6,3,0,32,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,47,84600,0,0,236,0,0,0,0,0,0,0,140,3.1,0,0,32,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,-10,65,84200,0,0,227,0,0,0,0,0,0,0,160,2.6,9,1,32,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,59,84200,0,0,230,0,0,0,0,0,0,0,150,2.1,10,1,32,77777,9,999999999,4,0.045,0,88,0.2,0,1 -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,1063,0,1070,355,160,2.1,10,10,80,7620,9,999999999,5,0.045,0,88,0.2,0,1 -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,6794,0,6842,2263,180,1.5,10,10,96,7620,9,999999999,5,0.045,0,88,0.2,0,1 -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,12294,0,12389,4335,190,1.5,10,10,96,6706,9,999999999,5,0.045,0,88,0.2,0,1 -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,16360,0,16492,6010,340,1.5,10,10,96,6706,9,999999999,5,0.045,0,88,0.2,0,1 -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,18372,0,18523,6898,340,1.5,10,10,64,6706,9,999999999,5,0.045,0,88,0.2,0,1 -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,26,83900,624,1414,307,181,0,181,18370,0,18521,6875,330,1.5,10,10,56,6096,9,999999999,5,0.045,0,88,0.2,0,1 -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,16048,0,16177,5877,290,1,10,10,56,6096,9,999999999,6,0.045,0,88,0.2,0,1 -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,11882,0,11973,4160,360,1,10,10,64,5486,9,999999999,6,0.045,0,88,0.2,0,1 -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,28,83800,240,1414,302,65,0,65,6391,0,6437,2095,130,1.5,10,10,64,5486,9,999999999,6,0.045,0,88,0.2,0,1 -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,31,83800,40,860,286,6,8,6,686,0,686,205,90,2.1,10,9,64,5486,9,999999999,6,0.045,0,88,0.2,0,1 -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,5486,9,999999999,6,0.045,0,88,0.2,0,1 -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,5182,9,999999999,6,0.045,0,88,0.2,0,1 -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,5182,9,999999999,7,0.045,0,88,0.2,0,1 -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,4267,9,999999999,7,0.045,0,88,0.2,0,1 -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,4267,9,999999999,7,0.045,0,88,0.2,0,1 -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,10,10,32,4267,9,999999999,7,0.045,0,88,0.2,0,1 -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,3658,9,999999999,7,0.045,0,88,0.2,0,1 -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,3962,9,999999999,7,0.045,0,88,0.2,0,1 -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,77777,9,999999999,8,0.045,0,88,0.2,0,1 -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,77777,9,999999999,8,0.045,0,88,0.2,0,1 -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,77777,9,999999999,8,0.045,0,88,0.2,0,1 -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,10,2,32,77777,9,999999999,8,0.045,0,88,0.2,0,1 -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,77777,9,999999999,8,0.045,0,88,0.2,0,1 -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,3048,9,999999999,8,0.045,0,88,0.2,0,1 -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,2138,0,1931,473,170,2.6,9,8,80,3353,9,999999999,8,0.045,0,88,0.2,0,1 -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,13375,7925,8951,2488,200,3.6,9,5,72,7620,9,999999999,8,0.045,0,88,0.2,0,1 -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,26540,24359,9566,3278,180,3.1,8,4,80,7620,9,999999999,8,0.045,0,88,0.2,0,1 -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,22970,12821,13834,4870,190,3.1,7,7,96,4572,9,999999999,8,0.045,0,88,0.2,0,1 -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,37270,19666,26642,8098,0,0,8,8,96,4572,9,999999999,8,0.045,0,88,0.2,0,1 -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,-5.6,22,83400,625,1414,319,166,195,79,19936,11269,9514,3609,130,2.1,5,5,96,77777,9,999999999,8,0.045,0,88,0.2,0,1 -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,-5,24,83400,556,1414,318,359,656,101,41713,39371,11775,4234,90,4.6,4,4,96,77777,9,999999999,8,0.045,0,88,0.2,0,1 -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,24,83500,425,1414,309,252,656,55,29794,27072,6517,2316,70,5.2,2,2,96,77777,9,999999999,8,0.045,0,88,0.2,0,1 -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,26,83400,242,1414,308,138,522,49,15551,8615,5537,1737,80,4.1,3,3,96,77777,9,999999999,7,0.045,0,88,0.2,0,1 -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,31,83500,41,884,290,16,158,8,1789,0,896,258,130,1.5,1,1,80,77777,9,999999999,7,0.045,0,88,0.2,0,1 -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,77777,9,999999999,7,0.045,0,88,0.2,0,1 -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,77777,9,999999999,7,0.045,0,88,0.2,0,1 -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,77777,9,999999999,7,0.045,0,88,0.2,0,1 -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,1,1,24,77777,9,999999999,7,0.045,0,88,0.2,0,1 -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,77777,9,999999999,7,0.045,0,88,0.2,0,1 -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,77777,9,999999999,7,0.045,0,88,0.2,0,1 -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,77777,9,999999999,7,0.045,0,88,0.2,0,1 -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,-6.1,60,83500,0,0,253,0,0,0,0,0,0,0,150,2.1,3,3,32,77777,9,999999999,7,0.045,0,88,0.2,0,1 -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,77777,9,999999999,7,0.045,0,88,0.2,0,1 -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,77777,9,999999999,7,0.045,0,88,0.2,0,1 -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,77777,9,999999999,7,0.045,0,88,0.2,0,1 -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,2743,9,999999999,7,0.045,0,88,0.2,0,1 -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,2743,9,999999999,7,0.045,0,88,0.2,0,1 -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,2743,9,999999999,7,0.045,0,88,0.2,0,1 -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,1469,0,1019,302,190,4.1,6,6,112,2743,9,999999999,7,0.045,0,88,0.2,0,1 -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,12031,2326,11123,2727,190,4.1,8,8,128,2743,9,999999999,7,0.045,0,88,0.2,0,1 -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,22607,16859,12809,4117,190,4.6,6,6,120,2743,9,999999999,7,0.045,0,88,0.2,0,1 -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,33458,28549,9399,3476,190,3.6,5,5,120,77777,9,999999999,7,0.045,0,88,0.2,0,1 -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,37642,27897,18906,6512,200,2.6,5,5,120,77777,9,999999999,7,0.045,0,88,0.2,0,1 -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,-7.8,18,83600,626,1414,320,388,654,98,45853,40465,11619,4339,140,1.5,6,6,112,2591,9,999999999,7,0.045,0,88,0.2,0,1 -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,-6.7,20,83500,558,1414,310,396,838,65,47635,44072,7837,2925,100,3.1,2,2,112,77777,9,999999999,7,0.045,0,88,0.2,0,1 -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,22905,18845,10696,3559,140,4.1,5,5,112,77777,9,999999999,7,0.045,0,88,0.2,0,1 -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,25,83500,244,1414,318,56,109,37,6459,1191,4277,1401,130,4.6,6,6,112,3048,9,999999999,7,0.045,0,88,0.2,0,1 -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,30,83600,43,884,306,11,62,8,1233,0,898,261,130,4.6,6,6,96,3048,9,999999999,7,0.045,0,88,0.2,0,1 -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,34,83600,0,0,302,0,0,0,0,0,0,0,120,5.2,7,7,48,3353,9,999999999,7,0.045,0,88,0.2,0,1 -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,37,83600,0,0,302,0,0,0,0,0,0,0,130,4.1,8,8,48,3353,9,999999999,7,0.045,0,88,0.2,0,1 -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,3353,9,999999999,7,0.045,0,88,0.2,0,1 -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,3353,9,999999999,7,0.045,0,88,0.2,0,1 -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,6,6,48,3353,9,999999999,7,0.045,0,88,0.2,0,1 -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,3353,9,999999999,7,0.045,0,88,0.2,0,1 -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,77777,9,999999999,7,0.045,0,88,0.2,0,1 -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,77777,9,999999999,7,0.045,0,88,0.2,0,1 -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,3353,9,999999999,7,0.045,0,88,0.2,0,1 -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,3353,9,999999999,7,0.045,0,88,0.2,0,1 -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,3353,9,999999999,7,0.045,0,88,0.2,0,1 -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,3353,9,999999999,7,0.045,0,88,0.2,0,1 -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,3353,9,999999999,7,0.045,0,88,0.2,0,1 -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,3353,9,999999999,7,0.045,0,88,0.2,0,1 -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,806,0,807,245,190,4.6,8,8,80,3353,9,999999999,7,0.045,0,88,0.2,0,1 -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,13006,7825,6914,2096,190,4.1,4,4,80,77777,9,999999999,7,0.045,0,88,0.2,0,1 -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,28047,65760,6594,992,190,4.1,1,1,96,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,-5.6,31,83900,562,1414,286,388,869,43,41536,83208,6654,1127,170,2.1,1,1,96,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,47378,87461,6601,1174,200,1.5,1,1,96,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,47055,86848,6602,1173,60,2.1,1,1,96,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,41217,81082,7827,1209,360,1.5,1,1,96,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,32703,29481,5641,2025,350,2.1,1,1,96,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,14203,47447,4533,629,50,2.1,1,1,96,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,1920,9905,1169,132,360,2.6,1,1,64,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,-6.1,42,83700,0,0,261,0,0,0,0,0,0,0,170,2.1,0,0,48,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,-8.3,49,83600,0,0,241,0,0,0,0,0,0,0,170,3.1,0,0,48,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,64,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,1690,0,1016,298,190,3.6,0,0,112,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,15377,7413,4402,1450,180,4.1,0,0,112,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,-7.2,38,84000,432,1415,260,278,733,54,33008,30973,6425,2297,170,2.6,0,0,112,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,46976,43446,7848,2935,170,3.1,0,0,112,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,54477,48319,8514,3251,160,3.1,0,0,112,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,54471,48374,8513,3250,90,2.6,0,0,112,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,46830,43350,7843,2930,90,4.6,0,0,112,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,32854,30712,6418,2289,100,5.7,0,0,112,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,-7.8,26,83800,249,1415,279,132,534,38,15226,6791,4392,1439,80,5.2,0,0,112,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,1564,0,1007,290,90,3.1,0,0,64,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,-6.7,40,83900,0,0,261,0,0,0,0,0,0,0,90,3.1,0,0,48,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,77777,9,999999999,6,0.045,0,88,0.2,0,1 -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,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,48,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,-7.8,79,83800,0,0,224,0,0,0,0,0,0,0,200,1.5,0,0,48,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,2039,12320,1013,148,160,2.6,0,0,112,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,15996,56975,3759,603,180,2.1,0,0,112,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,-7.2,38,83800,432,1415,265,277,756,46,29449,68827,7189,1013,220,2.6,1,1,112,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,42574,86277,5916,1053,200,2.6,1,1,112,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,-8.3,25,83500,629,1415,284,430,809,70,52177,45840,8515,3252,300,1.5,1,1,112,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,46188,84681,6744,1190,350,2.6,1,1,112,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,44574,42981,12114,4351,10,4.6,3,3,80,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,31554,28828,6419,2292,360,5.7,2,2,80,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,14825,7428,5030,1621,360,5.2,3,3,80,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,1715,0,801,241,10,3.1,1,1,64,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,-5.6,62,83400,0,0,243,0,0,0,0,0,0,0,170,1.5,0,0,48,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,-7.8,79,83200,0,0,232,0,0,0,0,0,0,0,350,2.1,2,2,32,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,-6.7,86,83300,0,0,235,0,0,0,0,0,0,0,0,0,5,3,32,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,-6.7,86,83300,0,0,233,0,0,0,0,0,0,0,180,1.5,4,2,32,77777,9,999999999,6,0.044,0,88,0.2,0,1 -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,8,6,80,6096,9,999999999,6,0.044,0,88,0.2,0,1 -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,1215,0,1218,341,120,1.5,10,9,88,6096,9,999999999,6,0.044,0,88,0.2,0,1 -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,61,83300,249,1415,286,63,0,63,6195,0,6240,2106,120,1.5,10,10,88,6096,9,999999999,6,0.044,0,88,0.2,0,1 -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,17573,1806,16779,4861,0,0,9,9,112,6096,9,999999999,6,0.044,0,88,0.2,0,1 -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,33508,5778,31244,7636,0,0,9,9,112,6096,9,999999999,6,0.044,0,88,0.2,0,1 -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,18168,0,18318,6860,80,2.1,10,10,112,6096,9,999999999,6,0.044,0,88,0.2,0,1 -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,14503,0,14623,5866,10,6.7,10,10,96,2438,9,999999999,6,0.044,0,88,0.2,0,1 -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,12812,0,12916,5076,350,3.1,10,10,96,2896,9,999999999,6,0.044,0,88,0.2,0,1 -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,-5,46,83300,436,1415,288,245,174,192,26228,13931,20664,5291,330,2.6,10,8,96,2896,9,999999999,6,0.044,0,88,0.2,0,1 -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,48,83300,254,1415,281,108,100,90,11621,3766,9725,2562,0,0,9,7,64,2896,9,999999999,6,0.044,0,88,0.2,0,1 -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,1713,0,1719,425,150,3.6,10,9,48,6096,9,999999999,6,0.044,0,88,0.2,0,1 -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,3048,9,999999999,6,0.044,0,88,0.2,0,1 -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,50,83500,0,0,298,0,0,0,0,0,0,0,130,2.1,10,10,32,2743,9,999999999,6,0.044,0,88,0.2,0,1 -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,52,83500,0,0,295,0,0,0,0,0,0,0,200,2.1,10,10,32,2743,9,999999999,6,0.044,0,88,0.2,0,1 -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,54,83500,0,0,293,0,0,0,0,0,0,0,70,5.2,10,10,24,2286,9,999999999,6,0.044,0,88,0.2,0,1 -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,3658,9,999999999,6,0.044,0,88,0.2,0,1 -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,1402,9,999999999,7,0.044,0,88,0.2,0,1 -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,-1.7,87,83600,0,0,285,0,0,0,0,0,0,0,350,3.6,10,10,9.6,305,9,999999999,7,0.044,0,88,0.2,0,1 -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,-1.1,91,83600,0,0,286,0,0,0,0,0,0,0,360,3.1,10,10,8,274,9,999999999,7,0.044,0,88,0.2,0,1 -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,7,0.044,0,88,0.2,0,1 -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,152,9,999999999,7,0.044,0,88,0.2,0,1 -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,7,0.044,0,88,0.2,0,1 -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,7,0.044,0,88,0.2,0,1 -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,152,9,999999999,7,0.044,0,88,0.2,0,1 -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,7,0.044,0,88,0.2,0,1 -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,95,83600,45,908,264,4,0,4,386,0,388,149,330,3.6,10,10,1.6,122,9,999999999,7,0.044,0,88,0.2,0,1 -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,95,83600,248,1415,264,26,0,26,2557,0,2575,1047,360,4.1,10,10,3.2,152,9,999999999,7,0.044,0,88,0.2,0,1 -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,5390,0,5432,2295,350,4.6,10,10,1.6,183,9,999999999,7,0.044,0,88,0.2,0,1 -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,7667,0,7729,3362,360,3.6,10,10,3.2,183,9,999999999,6,0.044,0,88,0.2,0,1 -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,91,83500,631,1415,266,89,0,89,9029,0,9104,4012,360,3.1,10,10,3.2,183,9,999999999,6,0.044,0,88,0.2,0,1 -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,91,83400,633,1415,266,89,0,89,9029,0,9104,4014,350,3.1,10,10,1.6,152,9,999999999,6,0.044,0,88,0.2,0,1 -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,87,83400,567,1415,268,77,0,77,7770,0,7833,3404,350,3.1,10,10,4.8,152,9,999999999,6,0.044,0,88,0.2,0,1 -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,91,83400,439,1415,266,55,0,55,5492,0,5534,2336,360,4.6,10,10,6.4,152,9,999999999,6,0.044,0,88,0.2,0,1 -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,91,83500,257,1415,266,32,0,32,3148,0,3170,1257,360,4.1,10,10,3.2,213,9,999999999,6,0.044,0,88,0.2,0,1 -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,91,83500,52,979,266,6,0,6,579,0,583,215,40,3.1,10,10,3.2,213,9,999999999,6,0.044,0,88,0.2,0,1 -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,6,0.044,0,88,0.2,0,1 -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,6,0.044,0,88,0.2,0,1 -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,6,0.044,0,88,0.2,0,1 -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,-6.1,91,83600,0,0,260,0,0,0,0,0,0,0,60,4.1,10,10,3.2,610,9,999999999,6,0.044,0,88,0.2,0,1 -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,6,0.044,0,88,0.2,0,1 -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,6,0.044,0,88,0.2,0,1 -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,6,0.044,0,88,0.2,0,1 -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,5,0.044,0,88,0.2,0,1 -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,1524,9,999999999,5,0.044,0,88,0.2,0,1 -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,5,0.044,0,88,0.2,0,1 -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,5,0.044,0,88,0.2,0,1 -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,5,0.044,0,88,0.2,0,1 -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,457,9,999999999,5,0.044,0,88,0.2,0,1 -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,762,9,999999999,5,0.044,0,88,0.2,0,1 -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,-11.7,86,84000,45,908,230,9,10,8,1019,0,907,268,20,2.6,9,9,6.4,1981,9,999999999,5,0.044,0,88,0.2,0,1 -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,9937,2744,8330,2352,80,3.1,10,8,2.4,671,9,999999999,5,0.044,0,88,0.2,0,1 -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,25800,15808,19096,5150,60,3.1,10,7,6.4,1372,9,999999999,5,0.044,0,88,0.2,0,1 -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,45089,44105,11807,4259,50,3.1,5,4,9.6,77777,9,999999999,4,0.044,0,88,0.2,0,1 -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,48088,43718,14574,5303,80,3.6,4,4,19.2,77777,9,999999999,4,0.044,0,88,0.2,0,1 -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,30753,17441,19151,6595,40,3.6,4,4,19.2,77777,9,999999999,4,0.044,0,88,0.2,0,1 -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,43622,42115,13320,4728,120,3.1,5,5,16,77777,9,999999999,4,0.044,0,88,0.2,0,1 -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,21564,10126,16716,4887,70,3.6,6,6,16,457,9,999999999,4,0.044,0,88,0.2,0,1 -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,-13.3,74,84100,260,1415,220,80,209,41,9214,3489,4732,1549,80,2.6,7,7,19.2,701,9,999999999,4,0.044,0,88,0.2,0,1 -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,1548,0,1330,373,80,2.6,8,8,16,488,9,999999999,4,0.044,0,88,0.2,0,1 -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,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,86,84200,0,0,196,0,0,0,0,0,0,0,190,2.1,5,1,24,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,-16.7,85,84200,0,0,194,0,0,0,0,0,0,0,120,2.1,3,3,16,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,85,84100,0,0,174,0,0,0,0,0,0,0,320,2.1,0,0,12.8,77777,9,999999999,3,0.044,0,88,0.2,0,1 -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,1,1,9.6,77777,9,999999999,3,0.044,0,88,0.2,0,1 +LOCATION,Denver Intl AP,CO,USA,TMY3,725650,39.83300,-104.6500,-7.0,1650.0 +DESIGN CONDITIONS,1,2017 ASHRAE Handbook -- Fundamentals - Chapter 14 Climatic Design Information,,Heating,12,-18.2,-14.8,-22.4,0.6,-11.3,-19.8,0.8,-7,13.7,3.8,11.9,2.9,3.4,230,Cooling,7,15.2,34.9,15.4,33.5,15.4,31.9,15.3,18.2,27.2,17.6,26.9,16.9,26.4,4.1,30,15.9,13.9,20,15,13.1,19.8,14.1,12.3,19.7,58.3,26.9,55.8,26.8,53.7,26.3,20.7,Extremes,12.1,10.6,8.9,-23.8,37.3,3.2,1.2,-26.2,38.2,-28.1,38.9,-29.9,39.6,-32.3,40.4,-24.1 +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,"NREL TMY Data Set (2008) updated 2015 to include better precipitation;Period of Record 1973-2005 (Generally)" +COMMENTS 2,"Downloaded from Climate.Onebuilding.Org -- Ground temps represent undisturbed earth temperatures - calculated from this weather data." +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,-19.7,85,83700,0,0,181,0,0,0,0,0,0,0,0,0,2,2,6.4,20306,9,999999999,3,0.044,0,88,0.2,0,1 +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,3,3,6.4,18674,9,999999999,3,0.044,0,88,0.2,0,1 +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,3,3,6.4,16614,9,999999999,3,0.044,0,88,0.2,0,1 +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,4,4,6.4,14677,9,999999999,3,0.044,0,88,0.2,0,1 +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,-14.6,86,83400,0,0,205,0,0,0,0,0,0,0,0,0,5,5,6.4,12892,9,999999999,2,0.044,0,88,0.2,0,1 +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,6,6,6.4,11077,9,999999999,2,0.044,0,88,0.2,0,1 +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,6,6,6.4,11821,9,999999999,2,0.044,0,88,0.2,0,1 +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,82,82800,45,908,231,9,17,8,1017,0,906,267,120,1.4,7,7,6.4,8786,9,999999999,2,0.044,0,88,0.2,0,1 +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,9702,2331,8425,2365,140,1.3,7,7,6.4,7581,9,999999999,2,0.044,0,88,0.2,0,1 +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,66,82700,433,1415,247,266,494,115,29735,29187,12906,4128,200,1.7,8,4,6.4,11251,9,999999999,2,0.044,0,88,0.2,0,1 +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,40531,37439,15847,5427,310,1.7,8,4,6.4,9436,9,999999999,2,0.044,0,88,0.2,0,1 +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,48353,42657,21129,7086,20,4.6,7,7,6.4,6706,9,999999999,2,0.044,0,88,0.2,0,1 +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,40696,30546,21350,7150,20,7.2,8,5,6.4,6706,9,999999999,2,0.044,0,88,0.2,0,1 +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,39102,35282,14922,5203,10,8.2,7,4,6.4,77777,9,999999999,2,0.044,0,88,0.2,0,1 +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,27579,21976,16933,4963,10,7.7,8,3,6.4,77777,9,999999999,2,0.044,0,88,0.2,0,1 +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,36,82100,263,1415,252,131,369,62,14618,9882,6940,2128,10,6.2,4,1,6.4,77777,9,999999999,2,0.044,0,88,0.2,0,1 +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,2017,0,1235,360,20,3.6,1,0,6.4,77777,9,999999999,2,0.044,0,88,0.2,0,1 +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,6.4,77777,9,999999999,2,0.044,0,88,0.2,0,1 +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,-9.4,68,82100,0,0,223,0,0,0,0,0,0,0,350,5.7,0,0,6.4,77777,9,999999999,2,0.044,0,88,0.2,0,1 +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,6.4,77777,9,999999999,2,0.044,0,88,0.2,0,1 +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,6.4,77777,9,999999999,2,0.044,0,88,0.2,0,1 +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,6.4,77777,9,999999999,2,0.044,0,88,0.2,0,1 +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,6.4,77777,9,999999999,2,0.044,0,88,0.2,0,1 +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,-12.8,50,81900,0,0,220,0,0,0,0,0,0,0,10,8.8,0,0,6.4,77777,9,999999999,2,0.044,0,88,0.2,0,1 +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,-13.3,48,81900,0,0,220,0,0,0,0,0,0,0,20,8.8,0,0,6.4,77777,9,999999999,2,0.044,0,88,0.2,0,1 +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,6.4,77777,9,999999999,2,0.044,0,88,0.2,0,1 +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,-15,41,81900,0,0,218,0,0,0,0,0,0,0,20,7.2,0,0,6.4,77777,9,999999999,2,0.044,0,88,0.2,0,1 +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,48,81900,0,0,213,0,0,0,0,0,0,0,20,6.7,0,0,6.4,77777,9,999999999,2,0.044,0,88,0.2,0,1 +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,43,82400,0,0,216,0,0,0,0,0,0,0,360,3.6,0,0,6.4,77777,9,999999999,2,0.044,0,88,0.2,0,1 +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,45,81900,0,0,219,0,0,0,0,0,0,0,10,3.1,1,1,6.4,77777,9,999999999,2,0.044,0,88,0.2,0,1 +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,6.4,77777,9,999999999,2,0.044,0,88,0.2,0,1 +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,34,82000,44,908,230,15,63,12,1640,0,1315,354,40,1.5,9,1,6.4,77777,9,999999999,2,0.044,0,88,0.2,0,1 +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,9415,3114,7113,2121,110,2.1,7,7,6.4,4572,9,999999999,3,0.044,0,88,0.2,0,1 +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,26275,23064,13639,4289,140,2.1,8,5,6.4,7620,9,999999999,3,0.044,0,88,0.2,0,1 +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,45947,44608,11053,4026,130,2.6,5,4,6.4,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,39300,28280,21777,7239,160,2.1,8,5,6.4,7620,9,999999999,3,0.044,0,88,0.2,0,1 +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,38102,30848,13295,4917,180,2.6,9,6,6.4,7620,9,999999999,3,0.044,0,88,0.2,0,1 +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,31171,12577,24851,7285,140,2.6,9,8,6.4,4572,9,999999999,3,0.044,0,88,0.2,0,1 +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,-8.3,25,82300,447,1415,301,260,368,144,28633,24914,15930,4815,150,3.1,9,7,6.4,4572,9,999999999,3,0.044,0,88,0.2,0,1 +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,25,82300,266,1415,284,109,249,62,12178,6771,6948,2139,140,3.1,8,5,6.4,7620,9,999999999,3,0.044,0,88,0.2,0,1 +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,26,82100,58,1026,272,21,102,15,2303,0,1649,452,150,2.6,6,2,6.4,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,-10,30,82100,0,0,269,0,0,0,0,0,0,0,170,3.6,6,3,6.4,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,39,82300,0,0,248,0,0,0,0,0,0,0,150,3.6,2,1,6.4,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,-10,43,82200,0,0,244,0,0,0,0,0,0,0,180,3.6,3,1,6.4,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,6.4,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,6.4,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,1,1,6.4,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,-13.3,32,82100,0,0,236,0,0,0,0,0,0,0,230,2.6,1,0,6.4,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,6.4,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,6.4,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,6.4,77777,9,999999999,4,0.044,0,88,0.2,0,1 +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,6.4,77777,9,999999999,4,0.044,0,88,0.2,0,1 +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,6.4,77777,9,999999999,4,0.044,0,88,0.2,0,1 +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,6.4,77777,9,999999999,4,0.044,0,88,0.2,0,1 +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,6.4,7620,9,999999999,4,0.044,0,88,0.2,0,1 +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,1530,0,1314,353,250,6.7,7,5,6.4,7620,9,999999999,4,0.044,0,88,0.2,0,1 +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,8888,3088,5979,1865,210,4.6,8,5,6.4,7010,9,999999999,3,0.044,0,88,0.2,0,1 +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,21515,15197,12712,4086,210,5.2,7,6,6.4,7620,9,999999999,3,0.044,0,88,0.2,0,1 +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,38215,34424,10615,3887,290,1.5,6,3,6.4,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,53327,49159,11651,4370,250,7.7,2,1,6.4,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,29,83400,641,1415,265,426,757,83,51150,45215,9994,3800,280,9.3,4,1,6.4,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,42817,39540,10202,3767,300,11.1,5,2,6.4,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,28697,26840,12134,4008,280,7.4,6,3,6.4,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,12873,6503,9200,2594,260,6.7,10,5,6.4,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,-12.9,42,83600,60,1049,240,22,15,21,2354,0,2254,553,230,4.6,10,5,6.4,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,58,83500,0,0,231,0,0,0,0,0,0,0,240,2.8,10,5,6.4,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,6.4,6096,9,999999999,3,0.044,0,88,0.2,0,1 +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,6.4,6096,9,999999999,3,0.044,0,88,0.2,0,1 +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,6.4,5486,9,999999999,3,0.044,0,88,0.2,0,1 +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,6.4,5486,9,999999999,3,0.044,0,88,0.2,0,1 +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,6.4,4572,9,999999999,3,0.044,0,88,0.2,0,1 +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,6.4,4572,9,999999999,3,0.044,0,88,0.2,0,1 +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,6.4,3658,9,999999999,3,0.044,0,88,0.2,0,1 +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,10,10,6.4,3353,9,999999999,3,0.044,0,88,0.2,0,1 +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,6706,9,999999999,3,0.044,0,88,0.2,0,1 +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,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,8.1,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,64,83300,44,908,210,14,139,7,1599,0,800,240,0,0,1,1,8.1,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,6910,1729,3754,1252,0,0,7,6,8.1,7620,9,999999999,3,0.044,0,88,0.2,0,1 +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,14618,7448,9352,3211,180,1.5,10,9,8.1,3658,9,999999999,3,0.044,0,88,0.2,0,1 +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,15354,0,15478,5790,210,2.1,10,10,8.1,4267,9,999999999,3,0.044,0,88,0.2,0,1 +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,17675,0,17822,6793,0,0,10,10,8.1,4267,9,999999999,3,0.044,0,88,0.2,0,1 +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,-6.8,32,83600,644,1415,314,140,0,140,14222,0,14340,5834,350,3.6,10,10,8.1,2438,9,999999999,3,0.044,0,88,0.2,0,1 +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,12631,0,12734,5089,10,4.1,10,10,8.2,2438,9,999999999,4,0.044,0,88,0.2,0,1 +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,12050,2781,10132,3482,360,3.6,9,9,8.2,1981,9,999999999,4,0.044,0,88,0.2,0,1 +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,-5.6,31,83300,273,1415,309,44,59,33,5178,861,3890,1315,300,7.2,10,8,8.2,4267,9,999999999,4,0.044,0,88,0.2,0,1 +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,2184,0,1861,506,0,0,9,7,8.2,4267,9,999999999,4,0.044,0,88,0.2,0,1 +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,40,83000,0,0,297,0,0,0,0,0,0,0,80,3.1,8,8,8.2,7315,9,999999999,4,0.044,0,88,0.2,0,1 +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.2,7315,9,999999999,4,0.044,0,88,0.2,0,1 +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.2,77777,9,999999999,4,0.044,0,88,0.2,0,1 +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.3,77777,9,999999999,4,0.044,0,88,0.2,0,1 +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,29,82700,0,0,271,0,0,0,0,0,0,0,160,3.1,3,3,8.3,77777,9,999999999,4,0.044,0,88,0.2,0,1 +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,-9.4,31,82600,0,0,267,0,0,0,0,0,0,0,250,3.1,2,2,8.3,77777,9,999999999,4,0.044,0,88,0.2,0,1 +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,-10,21,82600,0,0,276,0,0,0,0,0,0,0,210,6.7,0,0,8.3,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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,-9.4,31,82400,0,0,258,0,0,0,0,0,0,0,210,4.6,0,0,8.3,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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.3,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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.3,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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.4,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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.4,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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.4,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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,-6.1,42,82800,0,0,261,0,0,0,0,0,0,0,300,4.6,0,0,8.4,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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,-5,33,82800,44,908,282,16,174,7,1825,0,799,240,360,1.5,0,0,8.4,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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,35,82900,249,1415,277,142,630,31,15139,49899,4994,645,50,4.1,0,0,8.4,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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,31144,73964,6743,1000,360,4.6,0,0,8.4,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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,46004,41676,7746,2907,40,5.7,3,1,8.5,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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,-6.7,20,83000,642,1415,306,465,894,60,49326,86938,9035,1381,30,5.1,2,1,8.5,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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,54820,47244,8426,3239,30,4.1,3,1,8.5,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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,47474,42912,8213,3089,50,3.1,2,1,8.5,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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,-3.9,36,83100,457,1415,288,239,526,68,28006,24737,7989,2839,70,2.6,3,1,8.5,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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,14622,7878,4651,1552,100,2.1,2,1,8.5,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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,2630,0,1868,515,160,2.6,5,3,8.5,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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.6,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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,32,83200,0,0,264,0,0,0,0,0,0,0,170,4.1,3,3,8.6,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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.6,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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.6,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,-8.9,47,83200,0,0,257,0,0,0,0,0,0,0,110,2.1,6,6,8.6,7620,9,999999999,6,0.044,0,88,0.2,0,1 +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,41,83600,0,0,256,0,0,0,0,0,0,0,180,1.5,8,5,8.6,7620,9,999999999,6,0.044,0,88,0.2,0,1 +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,-10.6,40,83100,0,0,255,0,0,0,0,0,0,0,240,3.1,7,6,8.7,7620,9,999999999,6,0.044,0,88,0.2,0,1 +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,-11.7,37,83200,0,0,274,0,0,0,0,0,0,0,250,3.6,10,10,8.7,7620,9,999999999,6,0.043,0,88,0.2,0,1 +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.7,6706,9,999999999,6,0.043,0,88,0.2,0,1 +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.7,6706,9,999999999,6,0.043,0,88,0.2,0,1 +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,-14.4,29,83300,0,0,264,0,0,0,0,0,0,0,330,3.6,10,9,8.7,6706,9,999999999,6,0.043,0,88,0.2,0,1 +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.7,8534,9,999999999,6,0.043,0,88,0.2,0,1 +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,-13.9,30,83500,0,0,236,0,0,0,0,0,0,0,200,3.1,0,0,8.7,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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.8,7620,9,999999999,6,0.043,0,88,0.2,0,1 +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,1130,0,905,266,240,5.2,5,3,8.8,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,14021,8242,5669,1791,240,4.1,4,2,8.8,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,-7.8,52,83900,437,1415,252,265,510,107,29831,29167,12090,3951,280,3.6,3,3,8.8,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,-7.8,52,84000,571,1415,241,406,859,58,43021,82130,8826,1272,210,1.5,0,0,8.8,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,49796,86812,9600,1409,130,3.6,0,0,8.8,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,50257,87146,9594,1416,130,7.7,0,0,8.8,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,44495,83289,8955,1297,120,6.7,0,0,8.9,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,32776,73243,7761,1068,120,8.2,0,0,8.9,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,18950,11287,4336,1459,130,7.2,0,0,8.9,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,2926,0,1466,433,140,8.2,0,0,8.9,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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.9,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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.9,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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.9,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,9,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,9,6706,9,999999999,4,0.043,0,88,0.2,0,1 +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,82,83900,0,0,246,0,0,0,0,0,0,0,250,2.1,10,10,9,2743,9,999999999,4,0.043,0,88,0.2,0,1 +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,9,2743,9,999999999,4,0.043,0,88,0.2,0,1 +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,9,2286,9,999999999,4,0.043,0,88,0.2,0,1 +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,86,83500,0,0,244,0,0,0,0,0,0,0,260,2.6,10,10,9,2438,9,999999999,4,0.043,0,88,0.2,0,1 +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,9,1676,9,999999999,4,0.043,0,88,0.2,0,1 +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,9.1,1219,9,999999999,4,0.043,0,88,0.2,0,1 +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,10,10,9.1,1829,9,999999999,4,0.043,0,88,0.2,0,1 +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,9.1,732,9,999999999,4,0.043,0,88,0.2,0,1 +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,9.1,61,9,999999999,4,0.043,0,88,0.2,0,1 +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,483,0,486,181,240,3.6,10,10,9.1,152,9,999999999,4,0.043,0,88,0.2,0,1 +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,3742,0,3769,1447,190,4.1,10,10,9.1,61,9,999999999,4,0.043,0,88,0.2,0,1 +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,25,83700,438,1415,275,69,0,69,6902,0,6955,2833,260,1.5,10,10,9.1,30,9,999999999,4,0.043,0,88,0.2,0,1 +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,9403,0,9479,4011,10,1.5,10,10,9.2,30,9,999999999,4,0.043,0,88,0.2,0,1 +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,-13.3,22,83700,646,1415,293,105,0,105,10679,0,10768,4653,80,2.1,10,10,9.2,152,9,999999999,4,0.043,0,88,0.2,0,1 +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,18,83700,652,1415,294,106,0,106,10788,0,10877,4705,100,2.1,10,10,9.2,152,9,999999999,4,0.043,0,88,0.2,0,1 +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,-16.7,16,83700,590,1415,289,95,0,95,9621,0,9699,4126,330,2.1,10,10,9.2,0,9,999999999,4,0.043,0,88,0.2,0,1 +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,-16.7,16,83600,464,1415,289,74,0,74,7419,0,7476,3061,110,3.1,10,10,9.2,122,9,999999999,4,0.043,0,88,0.2,0,1 +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,4346,0,4377,1691,120,2.1,10,10,9.2,183,9,999999999,4,0.043,0,88,0.2,0,1 +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,-15.6,18,83300,72,1144,291,9,0,9,872,0,878,325,150,3.6,10,10,9.2,183,9,999999999,4,0.043,0,88,0.2,0,1 +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,9.3,1158,9,999999999,4,0.043,0,88,0.2,0,1 +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,-16.1,17,83300,0,0,290,0,0,0,0,0,0,0,220,3.6,10,10,9.3,1097,9,999999999,4,0.043,0,88,0.2,0,1 +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,9.3,1676,9,999999999,4,0.043,0,88,0.2,0,1 +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,23,83100,0,0,272,0,0,0,0,0,0,0,210,5.2,10,9,9.3,2438,9,999999999,4,0.043,0,88,0.2,0,1 +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,9.3,2438,9,999999999,5,0.043,0,88,0.2,0,1 +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,-11.7,37,83200,0,0,254,0,0,0,0,0,0,0,230,4.6,6,6,9.3,6096,9,999999999,5,0.043,0,88,0.2,0,1 +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,9.3,2438,9,999999999,5,0.043,0,88,0.2,0,1 +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,9.4,1219,9,999999999,5,0.043,0,88,0.2,0,1 +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,9.4,975,9,999999999,5,0.043,0,88,0.2,0,1 +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,9.4,1829,9,999999999,5,0.043,0,88,0.2,0,1 +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,9.4,152,9,999999999,5,0.043,0,88,0.2,0,1 +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,9.4,2438,9,999999999,5,0.043,0,88,0.2,0,1 +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,9.4,2134,9,999999999,5,0.043,0,88,0.2,0,1 +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,9.4,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,1568,0,1010,292,270,3.1,3,3,9.5,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,14054,46276,4531,642,280,6.7,1,1,9.5,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,-11.1,27,83000,439,1415,261,290,797,43,30827,72657,6737,1005,260,5.2,1,1,9.5,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,41607,38777,12910,4630,270,7.2,2,2,9.5,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,50839,44975,10678,4054,290,7.2,3,3,9.5,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,54949,48424,10129,3869,280,7.7,1,1,9.5,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,46906,91111,6482,1134,280,5.2,0,0,9.5,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,35228,82196,5528,946,290,5.2,0,0,9.6,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,19274,62134,4220,675,300,2.6,0,0,9.6,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,31,82200,75,1167,260,29,272,12,3309,0,1371,416,290,3.6,2,1,9.6,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,41,82200,0,0,252,0,0,0,0,0,0,0,240,3.6,5,3,9.6,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,9.6,7620,9,999999999,5,0.043,0,88,0.2,0,1 +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,9.6,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,9.6,7620,9,999999999,5,0.043,0,88,0.2,0,1 +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,9.7,4572,9,999999999,5,0.043,0,88,0.2,0,1 +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,9.7,4572,9,999999999,6,0.043,0,88,0.2,0,1 +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,9.7,4572,9,999999999,6,0.043,0,88,0.2,0,1 +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,9.7,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,9.7,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,9.7,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,9.8,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,9.8,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,9.8,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,-8.3,75,82100,0,0,224,0,0,0,0,0,0,0,0,0,1,0,9.8,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,1583,0,906,268,130,2.6,1,1,9.8,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,15730,7805,4404,1450,140,2.6,0,0,9.8,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,35,82500,441,1415,249,287,749,53,34199,32224,6329,2272,110,4.6,0,0,9.8,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,48990,44800,7759,2919,100,5.2,0,0,9.9,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,49687,84567,10440,1444,100,5.2,0,0,9.9,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,50320,84976,10572,1458,90,6.2,0,0,9.9,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,51103,46101,8011,3031,100,6.2,0,0,9.9,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,37390,35317,6704,2431,120,5.7,0,0,9.9,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,19337,12936,4786,1609,70,4.6,0,0,9.9,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,3148,0,1690,501,100,4.1,0,0,9.9,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,10,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,-6.1,60,82200,0,0,243,0,0,0,0,0,0,0,170,4.6,0,0,10,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,10,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,10,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,10,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,10,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,10,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,10.1,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,-8.3,75,81900,0,0,224,0,0,0,0,0,0,0,210,5.2,0,0,10.1,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,-8.3,75,81900,0,0,224,0,0,0,0,0,0,0,190,4.1,0,0,10.1,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,10.1,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,10.1,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,10.1,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,10.1,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,-10.6,61,81800,46,908,222,19,234,7,2024,10640,1171,143,200,5.2,0,0,10.2,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,16040,55244,4068,626,220,5.7,0,0,10.2,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,32409,78199,5540,928,240,5.7,0,0,10.2,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,45010,88534,6637,1140,220,5.7,0,0,10.2,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,51931,92603,7153,1253,220,4.1,0,0,10.2,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,52575,93012,7147,1258,220,1.5,0,0,10.2,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,46881,89759,6767,1168,210,2.1,0,0,10.2,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,35436,80989,5821,979,0,0,0,0,10.3,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,19558,61429,4372,695,40,2.6,0,0,10.3,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,3827,19847,1990,242,70,2.1,0,0,10.3,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,10.3,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,10.3,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,10.3,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,10.3,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,10.4,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,61,82600,0,0,224,0,0,0,0,0,0,0,220,3.6,0,0,10.4,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,-11.1,59,82000,0,0,221,0,0,0,0,0,0,0,210,7.7,0,0,10.4,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,10.4,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,10.4,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,10.4,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,10.4,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,-12.2,53,82400,0,0,225,0,0,0,0,0,0,0,230,6.2,4,1,10.5,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,10.5,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,10.5,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,1864,0,1319,359,220,5.7,6,2,10.5,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,12367,6921,6201,1935,210,6.7,8,3,10.5,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,32895,33357,9378,3241,230,4.6,7,2,10.5,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,38012,33802,12285,4454,200,3.1,8,3,10.5,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,53644,49158,14106,5225,110,2.1,7,2,10.6,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,53893,49501,18848,6662,90,6.2,8,4,10.6,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,49304,47913,13856,4995,90,7.7,7,4,10.6,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,22469,13209,15042,4821,110,7.2,9,5,10.6,7925,9,999999999,6,0.043,0,88,0.2,0,1 +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,-17.8,10,83000,301,1414,290,104,103,81,11513,4111,8999,2700,110,4.6,10,7,10.6,6096,9,999999999,6,0.043,0,88,0.2,0,1 +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,3446,0,3025,769,120,4.1,9,6,10.6,5486,9,999999999,5,0.043,0,88,0.2,0,1 +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,10.6,5486,9,999999999,5,0.043,0,88,0.2,0,1 +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,10.7,5486,9,999999999,5,0.043,0,88,0.2,0,1 +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,10.7,6096,9,999999999,5,0.043,0,88,0.2,0,1 +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,10.7,5486,9,999999999,5,0.043,0,88,0.2,0,1 +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,18,82200,0,0,288,0,0,0,0,0,0,0,260,4.6,10,9,10.7,4877,9,999999999,5,0.043,0,88,0.2,0,1 +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,10.7,3962,9,999999999,5,0.043,0,88,0.2,0,1 +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,10.7,3353,9,999999999,5,0.043,0,88,0.2,0,1 +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,10.7,2438,9,999999999,5,0.043,0,88,0.2,0,1 +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,-12.2,35,82100,0,0,274,0,0,0,0,0,0,0,220,3.6,10,10,10.8,1158,9,999999999,5,0.043,0,88,0.2,0,1 +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,10.8,274,9,999999999,5,0.043,0,88,0.2,0,1 +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,10.8,244,9,999999999,5,0.043,0,88,0.2,0,1 +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,-11.1,59,82500,0,0,256,0,0,0,0,0,0,0,220,3.6,10,10,10.8,244,9,999999999,5,0.043,0,88,0.2,0,1 +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,10.8,244,9,999999999,5,0.043,0,88,0.2,0,1 +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,10.8,183,9,999999999,5,0.043,0,88,0.2,0,1 +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,386,0,389,150,240,4.1,10,10,10.8,152,9,999999999,5,0.043,0,88,0.2,0,1 +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,3743,0,3770,1457,230,4.1,10,10,10.9,213,9,999999999,5,0.043,0,88,0.2,0,1 +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,7605,0,7664,3086,220,4.1,10,10,10.9,305,9,999999999,4,0.043,0,88,0.2,0,1 +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,10523,0,10608,4428,240,3.1,10,10,10.9,305,9,999999999,4,0.043,0,88,0.2,0,1 +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,10180,0,10265,4506,180,1.5,10,10,10.9,183,9,999999999,4,0.043,0,88,0.2,0,1 +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,12429,0,12533,5333,120,4.1,10,10,10.9,274,9,999999999,4,0.043,0,88,0.2,0,1 +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,9227,0,9302,4029,90,5.7,10,10,10.9,183,9,999999999,4,0.043,0,88,0.2,0,1 +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,8332,0,8397,3414,100,5.2,10,10,11,213,9,999999999,4,0.043,0,88,0.2,0,1 +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,4649,0,4683,1824,100,4.1,10,10,11,274,9,999999999,4,0.043,0,88,0.2,0,1 +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,1165,0,1173,433,110,5.2,10,10,11,427,9,999999999,4,0.043,0,88,0.2,0,1 +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,11,488,9,999999999,4,0.043,0,88,0.2,0,1 +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,11,183,9,999999999,4,0.043,0,88,0.2,0,1 +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,11,1280,9,999999999,4,0.043,0,88,0.2,0,1 +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,11,1829,9,999999999,4,0.043,0,88,0.2,0,1 +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,11.1,1829,9,999999999,4,0.043,0,88,0.2,0,1 +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,11.1,1829,9,999999999,4,0.043,0,88,0.2,0,1 +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,49,83500,0,0,247,0,0,0,0,0,0,0,220,4.1,8,5,11.1,2134,9,999999999,4,0.043,0,88,0.2,0,1 +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,41,83600,0,0,252,0,0,0,0,0,0,0,210,4.6,4,3,11.1,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,34,83600,0,0,268,0,0,0,0,0,0,0,220,4.1,7,6,11.1,1981,9,999999999,4,0.043,0,88,0.2,0,1 +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,35,83700,0,0,260,0,0,0,0,0,0,0,220,5.2,3,3,11.1,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,11.1,77777,9,999999999,3,0.043,0,88,0.2,0,1 +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,11.2,77777,9,999999999,3,0.043,0,88,0.2,0,1 +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,11.2,77777,9,999999999,3,0.043,0,88,0.2,0,1 +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,11.2,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,2252,13620,1013,148,230,5.7,0,0,11.2,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,17197,60470,3603,599,230,3.6,0,0,11.2,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,34185,82994,4935,873,250,4.1,0,0,11.2,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,47179,92942,5899,1067,230,4.1,0,0,11.2,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,54381,96946,6424,1179,230,2.6,0,0,11.3,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,-9.4,22,84400,672,1414,282,494,845,92,59174,52378,11054,4225,210,1.5,1,1,11.3,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,22,84400,613,1414,274,456,954,42,48756,92224,6467,1147,180,1.5,1,0,11.3,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,22,84400,489,1414,279,323,835,35,34619,77864,5517,959,0,0,1,1,11.3,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,22,84500,310,1414,279,171,674,24,18385,56618,3907,669,0,0,1,1,11.3,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,24,84200,92,1285,275,40,314,18,4496,0,2027,603,20,4.1,4,1,11.3,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,26,84400,0,0,271,0,0,0,0,0,0,0,40,2.6,4,1,11.3,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,11.4,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,5,4,11.4,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,11.4,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,11.4,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,11.4,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,11.4,3658,9,999999999,5,0.043,0,88,0.2,0,1 +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,11.4,3658,9,999999999,5,0.043,0,88,0.2,0,1 +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,11.5,1981,9,999999999,5,0.043,0,88,0.2,0,1 +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,11.5,2591,9,999999999,5,0.043,0,88,0.2,0,1 +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,11.5,2591,9,999999999,5,0.043,0,88,0.2,0,1 +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,11.5,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,11.5,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,11.5,3658,9,999999999,5,0.043,0,88,0.2,0,1 +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,1541,0,1324,366,170,6.2,8,8,11.5,3962,9,999999999,5,0.043,0,88,0.2,0,1 +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,13149,7818,7650,2275,200,5.7,5,4,11.6,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,-8.3,25,84400,452,1414,290,246,355,133,27305,23037,14826,4633,220,4.1,5,3,11.6,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,39342,34614,13161,4750,210,6.2,5,4,11.6,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,60634,55439,12809,4824,220,3.1,3,3,11.6,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,34640,25599,11061,4234,160,2.1,4,4,11.6,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,28894,19097,14735,5301,100,3.1,8,8,11.6,7620,9,999999999,5,0.043,0,88,0.2,0,1 +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,26528,17863,16724,5251,80,6.2,9,7,11.6,7620,9,999999999,5,0.043,0,88,0.2,0,1 +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,9370,1351,8618,2671,90,5.2,10,9,11.7,2896,9,999999999,5,0.043,0,88,0.2,0,1 +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,-8.9,23,83600,96,1308,312,17,15,16,1936,0,1825,557,80,4.1,10,9,11.7,2896,9,999999999,5,0.043,0,88,0.2,0,1 +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,11.7,2438,9,999999999,5,0.043,0,88,0.2,0,1 +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,11.7,1067,9,999999999,5,0.043,0,88,0.2,0,1 +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,11.7,152,9,999999999,5,0.043,0,88,0.2,0,1 +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,11.7,610,9,999999999,5,0.043,0,88,0.2,0,1 +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,11.7,274,9,999999999,5,0.043,0,88,0.2,0,1 +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,11.8,274,9,999999999,5,0.043,0,88,0.2,0,1 +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,11.8,274,9,999999999,5,0.043,0,88,0.2,0,1 +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,11.8,152,9,999999999,5,0.043,0,88,0.2,0,1 +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,11.8,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,11.8,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,11.8,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,11.8,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,11.9,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,11.9,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,2138,11704,1174,156,230,4.6,0,0,11.9,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,16792,56679,4223,646,230,4.6,0,0,11.9,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,33602,79572,5685,950,240,3.6,0,0,11.9,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,-10,21,83600,594,1414,276,436,933,44,46538,89788,6773,1164,240,3.1,0,0,11.9,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,53784,93888,7427,1294,0,0,0,0,11.9,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,51753,88377,7847,1342,0,0,1,0,12,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,48380,89307,7475,1251,360,1.5,1,0,12,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,37208,81615,6404,1046,0,0,1,0,12,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,21168,62855,4982,758,30,2.1,1,0,12,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,4909,24864,2317,293,40,2.6,0,0,12,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,12,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,12.1,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,12.1,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,12.1,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,12.1,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,12.1,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,-9.4,45,83600,0,0,252,0,0,0,0,0,0,0,260,2.6,7,4,12.1,7620,9,999999999,6,0.043,0,88,0.2,0,1 +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,12.1,7620,9,999999999,6,0.043,0,88,0.2,0,1 +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,12.2,6706,9,999999999,6,0.043,0,88,0.2,0,1 +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,26,83500,0,0,279,0,0,0,0,0,0,0,250,3.6,6,5,12.2,6706,9,999999999,6,0.043,0,88,0.2,0,1 +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,12.2,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,12.2,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,12.2,5182,9,999999999,6,0.043,0,88,0.2,0,1 +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,12.2,5182,9,999999999,6,0.043,0,88,0.2,0,1 +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,-5.6,62,83500,51,954,260,12,23,11,1335,0,1226,351,220,3.6,9,6,12.2,5182,9,999999999,6,0.043,0,88,0.2,0,1 +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,-5.6,62,83600,264,1414,260,95,118,73,10461,3691,8067,2374,100,2.1,7,6,12.3,4572,9,999999999,6,0.043,0,88,0.2,0,1 +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,25011,10625,20482,5541,70,4.6,9,8,12.3,4572,9,999999999,5,0.043,0,88,0.2,0,1 +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,-2.8,79,83800,597,1414,263,277,266,164,31210,19537,18562,6265,50,6.7,7,6,12.3,4572,9,999999999,5,0.043,0,88,0.2,0,1 +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,40383,26343,22836,7734,30,5.7,8,8,12.3,4572,9,999999999,5,0.043,0,88,0.2,0,1 +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,48841,35661,27233,8719,20,9.3,7,7,12.3,4572,9,999999999,5,0.043,0,88,0.2,0,1 +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,44495,37611,20032,6769,10,9.8,8,3,12.3,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,32864,30016,10135,3597,10,10.3,5,2,12.3,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,19919,16915,8533,2684,10,6.2,4,3,12.4,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,4338,0,3373,904,350,4.1,4,2,12.4,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,-3.9,72,83500,0,0,250,0,0,0,0,0,0,0,10,4.1,3,1,12.4,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,12.4,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,12.4,7620,9,999999999,5,0.043,0,88,0.2,0,1 +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,12.4,4877,9,999999999,5,0.043,0,88,0.2,0,1 +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,12.4,518,9,999999999,5,0.043,0,88,0.2,0,1 +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,49,83500,0,0,252,0,0,0,0,0,0,0,340,3.6,7,7,12.5,4877,9,999999999,4,0.043,0,88,0.2,0,1 +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,51,83700,0,0,267,0,0,0,0,0,0,0,360,3.1,10,10,12.5,1524,9,999999999,4,0.043,0,88,0.2,0,1 +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,12.5,1402,9,999999999,4,0.042,0,88,0.2,0,1 +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,12.5,1372,9,999999999,4,0.042,0,88,0.2,0,1 +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,12.5,1250,9,999999999,4,0.042,0,88,0.2,0,1 +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,12.5,792,9,999999999,4,0.042,0,88,0.2,0,1 +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,12.5,853,9,999999999,4,0.042,0,88,0.2,0,1 +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,12.6,1250,9,999999999,4,0.042,0,88,0.2,0,1 +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,-11.1,39,83600,0,0,268,0,0,0,0,0,0,0,340,2.6,10,9,12.6,1158,9,999999999,4,0.042,0,88,0.2,0,1 +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,-8.9,71,83800,53,954,258,7,0,7,676,0,681,248,280,3.1,10,10,12.6,1006,9,999999999,4,0.042,0,88,0.2,0,1 +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,5124,0,5161,1889,300,3.1,10,10,12.6,1463,9,999999999,4,0.042,0,88,0.2,0,1 +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,-7.8,52,83900,460,1414,261,177,227,104,20083,13044,11843,3971,330,4.6,7,7,12.6,3658,9,999999999,4,0.042,0,88,0.2,0,1 +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,-7.2,54,84100,600,1414,266,300,270,185,33522,21224,20772,6785,360,5.2,8,8,12.6,3658,9,999999999,4,0.042,0,88,0.2,0,1 +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,42927,34265,13492,5079,20,4.1,6,6,12.6,3658,9,999999999,4,0.042,0,88,0.2,0,1 +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,50351,42281,18167,6574,310,3.1,6,6,12.7,3658,9,999999999,4,0.042,0,88,0.2,0,1 +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,47548,42985,17333,6095,10,2.1,5,5,12.7,77777,9,999999999,4,0.042,0,88,0.2,0,1 +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,61,84000,507,1414,238,333,733,70,39413,37868,8306,3016,350,3.6,5,5,12.7,77777,9,999999999,4,0.042,0,88,0.2,0,1 +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,17615,11610,12121,3390,20,3.1,6,6,12.7,3658,9,999999999,4,0.042,0,88,0.2,0,1 +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,2621,0,2055,631,10,1.5,8,6,12.7,3658,9,999999999,4,0.042,0,88,0.2,0,1 +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,4,4,12.7,77777,9,999999999,4,0.042,0,88,0.2,0,1 +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,12.7,77777,9,999999999,4,0.042,0,88,0.2,0,1 +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,12.8,1676,9,999999999,4,0.042,0,88,0.2,0,1 +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,-12.8,78,83600,0,0,224,0,0,0,0,0,0,0,230,2.1,10,8,12.8,1219,9,999999999,4,0.042,0,88,0.2,0,1 +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,12.8,1372,9,999999999,4,0.042,0,88,0.2,0,1 +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,12.8,1829,9,999999999,3,0.042,0,88,0.2,0,1 +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,12.8,2134,9,999999999,3,0.042,0,88,0.2,0,1 +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,12.8,77777,9,999999999,3,0.042,0,88,0.2,0,1 +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,12.8,77777,9,999999999,3,0.042,0,88,0.2,0,1 +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,12.9,77777,9,999999999,3,0.042,0,88,0.2,0,1 +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,12.9,77777,9,999999999,3,0.042,0,88,0.2,0,1 +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,12.9,77777,9,999999999,3,0.042,0,88,0.2,0,1 +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,12.9,77777,9,999999999,3,0.042,0,88,0.2,0,1 +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,12.9,77777,9,999999999,3,0.042,0,88,0.2,0,1 +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,2566,15395,1177,165,230,3.6,0,0,12.9,77777,9,999999999,3,0.042,0,88,0.2,0,1 +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,18147,62442,3601,608,270,2.6,0,0,12.9,77777,9,999999999,4,0.042,0,88,0.2,0,1 +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,35564,84515,4928,880,330,2.1,0,0,13,77777,9,999999999,4,0.042,0,88,0.2,0,1 +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,48924,94389,5888,1076,310,2.1,0,0,13,77777,9,999999999,4,0.042,0,88,0.2,0,1 +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,56339,98264,6409,1190,300,1.5,0,0,13,77777,9,999999999,4,0.042,0,88,0.2,0,1 +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,57378,98710,6544,1214,280,2.1,0,0,13,77777,9,999999999,4,0.042,0,88,0.2,0,1 +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,51664,95768,6156,1127,240,2.1,0,0,13,77777,9,999999999,4,0.042,0,88,0.2,0,1 +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,40061,88047,5353,957,200,2.1,0,0,13,77777,9,999999999,4,0.042,0,88,0.2,0,1 +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,12,83700,333,1413,278,220,829,25,23602,70806,4056,701,0,0,0,0,13,77777,9,999999999,4,0.042,0,88,0.2,0,1 +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,12,83300,113,1402,278,56,534,13,5982,32829,2164,319,50,3.1,0,0,13.1,77777,9,999999999,4,0.042,0,88,0.2,0,1 +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,-14.4,14,83300,0,0,272,0,0,0,0,0,0,0,60,3.6,0,0,13.1,77777,9,999999999,4,0.042,0,88,0.2,0,1 +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,13,83100,0,0,275,0,0,0,0,0,0,0,90,3.6,0,0,13.1,77777,9,999999999,4,0.042,0,88,0.2,0,1 +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,13,83100,0,0,273,0,0,0,0,0,0,0,100,3.6,0,0,13.1,77777,9,999999999,4,0.042,0,88,0.2,0,1 +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,13.1,77777,9,999999999,4,0.042,0,88,0.2,0,1 +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,13.1,77777,9,999999999,4,0.042,0,88,0.2,0,1 +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,13.1,77777,9,999999999,4,0.042,0,88,0.2,0,1 +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,13.2,77777,9,999999999,4,0.042,0,88,0.2,0,1 +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,13.2,77777,9,999999999,4,0.042,0,88,0.2,0,1 +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,13.2,77777,9,999999999,4,0.042,0,88,0.2,0,1 +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,13.2,77777,9,999999999,4,0.042,0,88,0.2,0,1 +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,5,1,13.2,77777,9,999999999,4,0.042,0,88,0.2,0,1 +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,20,82900,0,0,255,0,0,0,0,0,0,0,260,1.5,5,1,13.2,77777,9,999999999,4,0.042,0,88,0.2,0,1 +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,13.3,77777,9,999999999,5,0.042,0,88,0.2,0,1 +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,5,3,13.3,77777,9,999999999,5,0.042,0,88,0.2,0,1 +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,2331,11450,1496,167,230,2.1,1,0,13.3,77777,9,999999999,5,0.042,0,88,0.2,0,1 +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,18697,10874,4005,1349,160,2.6,3,0,13.3,77777,9,999999999,5,0.042,0,88,0.2,0,1 +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,33888,77570,6421,1018,160,2.6,1,0,13.3,77777,9,999999999,5,0.042,0,88,0.2,0,1 +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,-17.8,7,83400,607,1413,287,442,911,51,46826,87588,7774,1261,230,2.1,1,0,13.3,77777,9,999999999,5,0.042,0,88,0.2,0,1 +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,-16.7,8,83800,686,1413,289,519,960,52,55041,93772,7838,1348,40,2.6,0,0,13.3,77777,9,999999999,5,0.042,0,88,0.2,0,1 +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,52965,87139,9103,1460,40,4.1,3,1,13.4,77777,9,999999999,5,0.042,0,88,0.2,0,1 +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,53766,47540,8310,3184,50,5.7,4,1,13.4,77777,9,999999999,5,0.042,0,88,0.2,0,1 +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,-17.8,7,83500,517,1413,287,352,807,57,42445,40370,6888,2540,60,5.2,4,0,13.4,77777,9,999999999,5,0.042,0,88,0.2,0,1 +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,24068,21267,5943,2016,90,4.1,7,0,13.4,77777,9,999999999,5,0.042,0,88,0.2,0,1 +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,5873,0,2490,753,100,2.1,5,0,13.4,77777,9,999999999,5,0.042,0,88,0.2,0,1 +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,13.4,77777,9,999999999,5,0.042,0,88,0.2,0,1 +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,13.4,77777,9,999999999,6,0.042,0,88,0.2,0,1 +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,13.5,77777,9,999999999,6,0.042,0,88,0.2,0,1 +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,13.5,77777,9,999999999,6,0.042,0,88,0.2,0,1 +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,13.5,77777,9,999999999,6,0.042,0,88,0.2,0,1 +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,-7.8,79,83600,0,0,224,0,0,0,0,0,0,0,150,3.1,0,0,13.5,77777,9,999999999,6,0.042,0,88,0.2,0,1 +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,13.5,77777,9,999999999,6,0.042,0,88,0.2,0,1 +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,13.5,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,13.5,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,-6.1,91,83000,0,0,226,0,0,0,0,0,0,0,170,3.1,0,0,13.6,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,-6.1,91,83000,0,0,226,0,0,0,0,0,0,0,180,3.1,0,0,13.6,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,-5.6,95,83300,0,0,226,0,0,0,0,0,0,0,190,3.6,0,0,13.6,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,-6.1,91,83000,0,0,226,0,0,0,0,0,0,0,190,3.6,0,0,13.6,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,13.6,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,2488,0,1133,337,200,2.1,0,0,13.6,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,17168,54192,5144,697,130,2.1,0,0,13.6,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,34253,77198,6870,1048,0,0,0,0,13.7,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,61,83300,611,1413,248,446,907,53,47520,87809,8066,1285,20,2.6,0,0,13.7,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,58,83600,690,1413,250,517,938,59,54978,92148,8836,1433,30,2.6,0,0,13.7,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,56129,92663,8822,1446,40,2.1,0,0,13.7,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,50619,89672,8462,1350,40,3.6,0,0,13.7,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,39195,81697,7421,1140,30,2.6,0,0,13.7,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,23041,63873,5736,825,20,3.1,0,0,13.7,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,6385,0,2284,707,360,2.1,0,0,13.8,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,13.8,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,13.8,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,-6.1,60,83200,0,0,243,0,0,0,0,0,0,0,290,2.1,0,0,13.8,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,13.8,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,13.8,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,13.8,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,13.9,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,-7.8,79,82900,0,0,224,0,0,0,0,0,0,0,210,3.1,1,0,13.9,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,13.9,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,13.9,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,13.9,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,13.9,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,13.9,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,14,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,2609,0,1136,340,200,4.1,0,0,14,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,17450,54410,5295,705,230,4.6,0,0,14,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,34786,77692,7162,1067,240,4.6,0,0,14,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,48183,88333,8491,1316,220,3.6,0,0,14,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,55714,92619,9110,1457,210,3.1,0,0,14,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,16,82500,706,1413,300,527,912,71,55556,89406,10501,1542,180,2.1,3,1,14,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,48225,42632,14616,5363,160,1.5,2,2,14.1,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,37332,76445,7560,1154,130,3.1,1,1,14.1,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,-12.2,13,82500,348,1413,304,204,613,53,23707,20831,6174,2101,120,2.1,2,2,14.1,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,3799,0,3024,896,100,3.6,3,3,14.1,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,14.1,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,14.1,77777,9,999999999,3,0.043,0,88,0.2,0,1 +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,14.1,77777,9,999999999,3,0.043,0,88,0.2,0,1 +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,14.2,77777,9,999999999,3,0.043,0,88,0.2,0,1 +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,14.2,77777,9,999999999,3,0.043,0,88,0.2,0,1 +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,14.2,4267,9,999999999,3,0.043,0,88,0.2,0,1 +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,14.2,6706,9,999999999,3,0.043,0,88,0.2,0,1 +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,14.2,6706,9,999999999,3,0.043,0,88,0.2,0,1 +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,41,82300,0,0,256,0,0,0,0,0,0,0,160,4.6,6,5,14.2,6706,9,999999999,3,0.043,0,88,0.2,0,1 +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,14.2,77777,9,999999999,3,0.043,0,88,0.2,0,1 +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,14.3,77777,9,999999999,3,0.043,0,88,0.2,0,1 +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,-12.2,35,82700,0,0,242,0,0,0,0,0,0,0,190,5.2,1,1,14.3,77777,9,999999999,3,0.043,0,88,0.2,0,1 +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,14.3,77777,9,999999999,3,0.043,0,88,0.2,0,1 +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,14.3,77777,9,999999999,3,0.043,0,88,0.2,0,1 +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,2882,16256,1341,185,170,4.1,0,0,14.3,77777,9,999999999,3,0.043,0,88,0.2,0,1 +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,19066,63085,3910,645,150,4.6,0,0,14.3,77777,9,999999999,3,0.043,0,88,0.2,0,1 +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,36711,84902,5372,937,170,6.7,0,0,14.3,77777,9,999999999,3,0.043,0,88,0.2,0,1 +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,50260,94515,6459,1152,190,4.6,0,0,14.4,77777,9,999999999,3,0.043,0,88,0.2,0,1 +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,10,83000,699,1412,288,543,1005,46,57843,98508,6967,1270,230,4.1,0,0,14.4,77777,9,999999999,3,0.043,0,88,0.2,0,1 +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,59070,98983,6955,1279,210,4.6,0,0,14.4,77777,9,999999999,3,0.043,0,88,0.2,0,1 +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,53582,96382,6575,1190,210,4.6,0,0,14.4,77777,9,999999999,3,0.043,0,88,0.2,0,1 +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,6,83100,532,1412,289,393,944,37,41934,89001,5786,1017,200,1.5,0,0,14.4,77777,9,999999999,3,0.043,0,88,0.2,0,1 +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,-18.9,7,83100,353,1412,286,238,839,28,25442,72592,4512,760,180,2.6,0,0,14.4,77777,9,999999999,3,0.043,0,88,0.2,0,1 +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,6793,32024,2958,370,150,3.1,1,1,14.5,77777,9,999999999,3,0.043,0,88,0.2,0,1 +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,17,83000,1,106,264,0,22,0,0,0,0,0,170,5.7,1,1,14.5,77777,9,999999999,3,0.043,0,88,0.2,0,1 +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,14.5,77777,9,999999999,3,0.043,0,88,0.2,0,1 +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,14.5,77777,9,999999999,3,0.043,0,88,0.2,0,1 +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,14.5,77777,9,999999999,3,0.043,0,88,0.2,0,1 +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,14.5,77777,9,999999999,3,0.043,0,88,0.2,0,1 +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,14.5,77777,9,999999999,3,0.043,0,88,0.2,0,1 +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,-11.1,39,82800,0,0,238,0,0,0,0,0,0,0,210,8.8,0,0,14.6,77777,9,999999999,3,0.043,0,88,0.2,0,1 +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,-11.7,37,82700,0,0,242,0,0,0,0,0,0,0,210,7.7,1,1,14.6,77777,9,999999999,3,0.043,0,88,0.2,0,1 +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,14.6,4877,9,999999999,2,0.043,0,88,0.2,0,1 +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,14.6,77777,9,999999999,2,0.043,0,88,0.2,0,1 +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,14.6,77777,9,999999999,2,0.043,0,88,0.2,0,1 +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,14.6,77777,9,999999999,2,0.043,0,88,0.2,0,1 +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,14.6,77777,9,999999999,2,0.043,0,88,0.2,0,1 +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,-12.8,33,83000,0,0,237,0,0,0,0,0,0,0,230,5.7,1,0,14.7,77777,9,999999999,2,0.043,0,88,0.2,0,1 +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,2586,0,1352,397,210,8.2,1,0,14.7,77777,9,999999999,3,0.043,0,88,0.2,0,1 +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,-12.2,24,83500,284,1412,255,167,641,38,19537,12686,4454,1500,220,5.2,0,0,14.7,77777,9,999999999,3,0.043,0,88,0.2,0,1 +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,28533,23887,14832,4782,230,5.2,4,4,14.7,77777,9,999999999,3,0.043,0,88,0.2,0,1 +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,38538,30081,18269,6318,250,4.6,6,6,14.7,7620,9,999999999,3,0.043,0,88,0.2,0,1 +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,-12.8,12,83500,704,1412,313,338,256,210,38180,21321,23841,8151,270,5.2,7,6,14.7,7620,9,999999999,3,0.043,0,88,0.2,0,1 +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,48817,38662,18705,6838,320,2.6,4,4,14.7,77777,9,999999999,3,0.043,0,88,0.2,0,1 +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,9,83500,659,1412,308,496,904,74,52064,87664,10988,1464,340,4.1,2,2,14.8,77777,9,999999999,3,0.043,0,88,0.2,0,1 +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,9,83500,537,1412,311,329,575,110,37853,36138,12702,4450,310,3.1,8,3,14.8,77777,9,999999999,3,0.043,0,88,0.2,0,1 +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,18890,9675,14749,3960,290,6.2,7,7,14.8,7620,9,999999999,3,0.043,0,88,0.2,0,1 +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,3599,0,3043,918,290,6.2,9,8,14.8,7620,9,999999999,3,0.043,0,88,0.2,0,1 +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,14.8,7620,9,999999999,3,0.043,0,88,0.2,0,1 +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,14.8,6706,9,999999999,3,0.043,0,88,0.2,0,1 +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,14.8,6706,9,999999999,3,0.043,0,88,0.2,0,1 +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,14.9,6706,9,999999999,3,0.043,0,88,0.2,0,1 +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,14.9,6706,9,999999999,3,0.043,0,88,0.2,0,1 +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,35,83400,0,0,260,0,0,0,0,0,0,0,130,4.6,3,3,14.9,77777,9,999999999,3,0.043,0,88,0.2,0,1 +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,14.9,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,14.9,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,14.9,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,14.9,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,20,82900,0,0,273,0,0,0,0,0,0,0,190,5.7,8,8,15,4572,9,999999999,4,0.043,0,88,0.2,0,1 +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,15,7620,9,999999999,4,0.043,0,88,0.2,0,1 +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,15,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,15,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,2389,0,2069,546,220,4.6,8,6,15,5486,9,999999999,4,0.043,0,88,0.2,0,1 +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,9000,2560,7109,2239,250,4.1,9,7,15,5486,9,999999999,4,0.043,0,88,0.2,0,1 +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,19815,7262,15877,5030,260,3.1,9,8,15,5486,9,999999999,4,0.043,0,88,0.2,0,1 +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,42882,37162,13801,5050,280,2.6,9,4,15.1,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,39096,22382,23848,8187,320,3.1,9,5,15.1,7315,9,999999999,5,0.043,0,88,0.2,0,1 +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,42158,26409,23690,8226,0,0,9,7,15.1,6096,9,999999999,5,0.043,0,88,0.2,0,1 +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,-7.8,18,83400,664,1412,320,456,615,167,52040,46259,19144,6744,350,2.1,8,6,15.1,5486,9,999999999,5,0.043,0,88,0.2,0,1 +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,36126,32967,12277,4345,10,2.6,4,2,15.1,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,18965,14671,9684,3091,320,3.1,4,3,15.1,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,6292,0,3153,954,310,5.7,2,1,15.1,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,15.2,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,15.2,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,15.2,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,15.2,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,15.2,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,15.2,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,15.2,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,15.3,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,15.3,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,15.3,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,15.3,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,15.3,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,15.3,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,15.3,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,3074,0,1254,379,150,3.1,0,0,15.4,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,18338,55781,5294,730,150,2.1,0,0,15.4,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,39540,37547,7282,2649,0,0,4,0,15.4,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,35877,18181,25749,7987,0,0,8,6,15.4,9144,9,999999999,7,0.043,0,88,0.2,0,1 +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,44157,27362,26365,8791,30,3.1,7,7,15.4,9144,9,999999999,7,0.043,0,88,0.2,0,1 +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,-9.4,22,83200,726,1411,291,479,554,194,54654,44253,22242,7883,320,4.1,10,4,15.4,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,33494,20008,19061,6745,330,5.2,10,5,15.4,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,39269,36853,15156,5166,70,5.7,9,4,15.5,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,19356,15594,8971,2931,20,11.3,10,2,15.5,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,5595,45,5291,1368,40,9.8,10,5,15.5,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,15.5,7620,9,999999999,7,0.043,0,88,0.2,0,1 +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,15.5,7620,9,999999999,7,0.043,0,88,0.2,0,1 +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,-7.2,38,82900,0,0,281,0,0,0,0,0,0,0,60,4.6,9,7,15.5,7620,9,999999999,7,0.043,0,88,0.2,0,1 +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,15.6,6706,9,999999999,7,0.043,0,88,0.2,0,1 +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,-5.6,44,82800,0,0,270,0,0,0,0,0,0,0,40,6.7,2,2,15.6,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,48,82800,0,0,271,0,0,0,0,0,0,0,60,5.2,4,3,15.6,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,15.6,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,15.6,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,15.6,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,15.6,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,91,82400,0,0,235,0,0,0,0,0,0,0,220,4.1,8,1,15.7,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,-6.7,86,82600,0,0,229,0,0,0,0,0,0,0,230,5.7,7,1,15.7,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,15.7,77777,9,999999999,8,0.043,0,88,0.2,0,1 +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,15.7,77777,9,999999999,8,0.043,0,88,0.2,0,1 +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,2094,0,1878,526,240,4.1,10,4,15.7,77777,9,999999999,8,0.043,0,88,0.2,0,1 +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,8296,2839,5543,1838,240,3.6,10,4,15.7,77777,9,999999999,8,0.043,0,88,0.2,0,1 +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,28143,19665,17852,5470,240,3.1,8,4,15.7,77777,9,999999999,8,0.043,0,88,0.2,0,1 +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,78,82800,636,1411,222,366,472,153,41857,34402,17573,6194,290,4.1,6,2,15.8,77777,9,999999999,8,0.043,0,88,0.2,0,1 +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,57028,47640,13261,5088,290,4.6,3,1,15.8,77777,9,999999999,8,0.043,0,88,0.2,0,1 +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,61,82700,731,1411,224,541,895,77,56910,88006,11297,1612,340,5.2,2,0,15.8,77777,9,999999999,8,0.043,0,88,0.2,0,1 +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,52130,87483,9560,1454,340,3.6,0,0,15.8,77777,9,999999999,8,0.043,0,88,0.2,0,1 +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,40801,79917,8411,1228,30,2.6,0,0,15.8,77777,9,999999999,9,0.043,0,88,0.2,0,1 +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,27193,23369,5234,1837,0,0,1,0,15.8,77777,9,999999999,9,0.043,0,88,0.2,0,1 +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,-7.8,79,82700,153,1411,224,69,402,26,7847,0,2963,921,110,2.1,1,0,15.8,77777,9,999999999,9,0.043,0,88,0.2,0,1 +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,-6.7,86,82800,3,223,225,0,17,0,0,0,0,0,180,5.7,0,0,15.9,77777,9,999999999,9,0.043,0,88,0.2,0,1 +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,15.9,77777,9,999999999,9,0.043,0,88,0.2,0,1 +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,91,82800,0,0,230,0,0,0,0,0,0,0,170,5.7,0,0,15.9,77777,9,999999999,9,0.043,0,88,0.2,0,1 +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,15.9,77777,9,999999999,9,0.043,0,88,0.2,0,1 +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,15.9,77777,9,999999999,9,0.043,0,88,0.2,0,1 +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,-4.3,90,82900,0,0,234,0,0,0,0,0,0,0,180,5.1,0,0,15.9,20446,9,999999999,10,0.043,0,88,0.2,0,1 +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,1,1,15.9,18892,9,999999999,10,0.043,0,88,0.2,0,1 +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,16,17338,9,999999999,10,0.043,0,88,0.2,0,1 +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,16,15785,9,999999999,10,0.043,0,88,0.2,0,1 +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,83,82500,0,0,246,0,0,0,0,0,0,0,240,5.8,2,2,16,14231,9,999999999,10,0.043,0,88,0.2,0,1 +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,16,12677,9,999999999,10,0.043,0,88,0.2,0,1 +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,16,11123,9,999999999,10,0.043,0,88,0.2,0,1 +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,16,9569,9,999999999,10,0.043,0,88,0.2,0,1 +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,16,8015,9,999999999,10,0.043,0,88,0.2,0,1 +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,74,82500,72,1117,269,17,52,14,1908,0,1574,465,270,5.9,10,5,16.1,6462,9,999999999,10,0.043,0,88,0.2,0,1 +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,67,82600,298,1411,280,145,148,114,15557,7490,12286,3207,310,5.8,10,7,16.1,4908,9,999999999,10,0.043,0,88,0.2,0,1 +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,58,82700,496,1411,279,281,397,141,31350,26626,15799,5087,300,3.6,10,6,16.1,3354,9,999999999,10,0.043,0,88,0.2,0,1 +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,-3.4,53,82600,641,1411,282,256,349,97,30340,21337,11533,4342,360,5.1,10,6,16.1,1800,9,999999999,10,0.043,0,88,0.2,0,1 +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,54484,44360,18162,6713,290,3.3,10,5,16.4,3483,9,999999999,10,0.043,0,88,0.2,0,1 +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,35765,8517,30496,9805,190,4.8,10,6,16.7,5167,9,999999999,9,0.043,0,88,0.2,0,1 +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,44143,26457,28744,8947,180,4.1,10,4,17,6850,9,999999999,9,0.043,0,88,0.2,0,1 +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,28276,21040,12741,4532,210,4.9,9,5,17.3,8533,9,999999999,9,0.043,0,88,0.2,0,1 +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,17906,11554,11276,3519,180,4.8,8,4,17.6,10217,9,999999999,9,0.043,0,88,0.2,0,1 +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,4559,0,2969,930,180,5.1,9,5,17.8,11900,9,999999999,9,0.043,0,88,0.2,0,1 +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,18.1,13583,9,999999999,9,0.043,0,88,0.2,0,1 +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,-5.1,71,82800,0,0,253,0,0,0,0,0,0,0,50,0.7,5,4,18.4,15267,9,999999999,9,0.043,0,88,0.2,0,1 +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,18.7,16950,9,999999999,9,0.043,0,88,0.2,0,1 +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,19,18633,9,999999999,9,0.043,0,88,0.2,0,1 +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,19.3,20317,9,999999999,9,0.043,0,88,0.2,0,1 +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,19.6,77777,9,999999999,8,0.043,0,88,0.2,0,1 +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,19.9,77777,9,999999999,8,0.043,0,88,0.2,0,1 +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,20.2,77777,9,999999999,8,0.043,0,88,0.2,0,1 +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,-6.1,91,82600,0,0,230,0,0,0,0,0,0,0,190,4.1,1,1,20.5,77777,9,999999999,8,0.043,0,88,0.2,0,1 +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,20.7,4267,9,999999999,8,0.043,0,88,0.2,0,1 +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,21,4572,9,999999999,8,0.043,0,88,0.2,0,1 +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,21.3,4572,9,999999999,8,0.043,0,88,0.2,0,1 +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,10,10,21.6,7010,9,999999999,8,0.043,0,88,0.2,0,1 +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,-13.9,70,82600,0,0,215,0,0,0,0,0,0,0,360,3.6,7,5,21.9,8534,9,999999999,8,0.043,0,88,0.2,0,1 +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,3451,0,2596,666,40,3.6,8,4,22.2,77777,9,999999999,8,0.043,0,88,0.2,0,1 +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,17231,11617,4697,1594,320,2.6,6,2,22.5,77777,9,999999999,8,0.043,0,88,0.2,0,1 +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,31316,27837,13961,4669,340,6.2,5,3,22.8,77777,9,999999999,8,0.043,0,88,0.2,0,1 +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,51203,45101,10559,4009,10,5.7,6,2,23.1,77777,9,999999999,8,0.043,0,88,0.2,0,1 +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,56421,46527,21617,7729,40,5.2,8,3,23.4,77777,9,999999999,8,0.043,0,88,0.2,0,1 +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,62323,53020,19315,7128,70,3.6,6,5,23.6,7620,9,999999999,7,0.043,0,88,0.2,0,1 +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,47636,38845,10522,4056,70,4.1,6,4,23.9,7620,9,999999999,7,0.043,0,88,0.2,0,1 +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,22284,13372,12229,4390,70,3.6,9,7,24.2,3962,9,999999999,7,0.043,0,88,0.2,0,1 +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,8557,0,8621,3178,110,3.1,10,10,24.5,2896,9,999999999,7,0.043,0,88,0.2,0,1 +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,3222,0,3244,1125,100,3.1,10,10,24.8,2438,9,999999999,7,0.043,0,88,0.2,0,1 +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,25.1,2743,9,999999999,7,0.043,0,88,0.2,0,1 +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,-6,84,82200,0,0,264,0,0,0,0,0,0,0,100,4.6,10,10,25.4,244,9,999999999,7,0.043,0,88,0.2,0,1 +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,-6.7,86,82200,0,0,260,0,0,0,0,0,0,0,120,4.1,10,10,25.7,152,9,999999999,7,0.043,0,88,0.2,0,1 +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,-6.1,91,82200,0,0,260,0,0,0,0,0,0,0,130,5.2,10,10,26,183,9,999999999,7,0.043,0,88,0.2,0,1 +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,26.3,213,9,999999999,7,0.043,0,88,0.2,0,1 +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,26.5,305,9,999999999,7,0.043,0,88,0.2,0,1 +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,26.8,427,9,999999999,7,0.043,0,88,0.2,0,1 +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,27.1,77777,9,999999999,7,0.043,0,88,0.2,0,1 +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,27.4,1128,9,999999999,7,0.043,0,88,0.2,0,1 +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,27.7,1219,9,999999999,7,0.043,0,88,0.2,0,1 +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,28,701,9,999999999,7,0.043,0,88,0.2,0,1 +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,28.3,1676,9,999999999,7,0.043,0,88,0.2,0,1 +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,82,81900,0,0,224,0,0,0,0,0,0,0,180,1.5,10,10,28.6,244,9,999999999,6,0.043,0,88,0.2,0,1 +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,-17.2,81,81800,0,0,204,0,0,0,0,0,0,0,320,1.5,10,8,28.9,2134,9,999999999,6,0.043,0,88,0.2,0,1 +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,-13.3,74,81800,78,1140,210,30,98,24,3246,0,2605,680,10,2.1,6,2,29.2,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,21013,15497,4704,1600,350,2.6,0,0,29.4,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,41607,39146,6646,2446,330,2.6,0,0,29.7,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,50023,85765,9873,1430,350,3.6,0,0,30,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,57811,90099,10736,1600,350,3.1,0,0,30.3,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,59260,90981,10856,1630,20,3.1,0,0,30.6,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,54030,88267,10242,1508,10,3.1,0,0,30.9,77777,9,999999999,6,0.043,0,88,0.2,0,1 +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,42644,80962,9117,1276,360,3.1,0,0,31.2,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,29595,26146,5478,1933,360,4.1,0,0,31.5,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,9122,0,3199,1004,350,3.6,0,0,31.8,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,78,81700,5,294,215,0,21,0,0,0,0,0,50,2.6,0,0,32.1,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,-12.2,82,81700,0,0,204,0,0,0,0,0,0,0,90,2.1,0,0,32.3,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,32.6,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,32.9,6096,9,999999999,5,0.043,0,88,0.2,0,1 +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,33.2,6096,9,999999999,5,0.043,0,88,0.2,0,1 +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,33.5,6096,9,999999999,4,0.043,0,88,0.2,0,1 +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,33.8,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,34.1,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,34.4,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,34.7,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,-14.4,67,82000,0,0,203,0,0,0,0,0,0,0,190,2.1,0,0,35,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,35.2,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,35.5,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,35.8,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,2906,0,1904,555,170,2.1,3,1,36.1,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,21120,16369,5145,1741,170,5.2,1,0,36.4,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,41327,39522,7324,2687,160,4.6,1,0,36.7,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,57653,50537,8901,3423,180,3.1,1,0,37,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,57113,87576,11144,1624,320,1.5,1,1,37.3,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,-8.3,49,82600,753,1410,246,540,866,77,56876,85488,11262,1654,350,3.6,1,1,37.6,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,58907,49196,9415,3664,350,3.1,1,1,37.9,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,49337,45339,7757,2914,20,2.1,0,0,38.1,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,29855,27027,5817,2051,10,4.6,0,0,38.4,77777,9,999999999,4,0.043,0,88,0.2,0,1 +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,9074,0,3524,1096,360,2.1,1,0,38.7,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,39,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,39.3,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,39.6,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,39.9,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,40.2,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,-11.7,56,83200,0,0,228,0,0,0,0,0,0,0,160,1.5,5,2,40.5,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,-11.7,56,82800,0,0,221,0,0,0,0,0,0,0,180,1.5,0,0,40.8,77777,9,999999999,5,0.043,0,88,0.2,0,1 +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,41,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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,41.3,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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,41.6,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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,41.9,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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,55,83300,0,0,222,0,0,0,0,0,0,0,200,3.1,6,6,42.2,6096,9,999999999,5,0.044,0,88,0.2,0,1 +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,58,83000,0,0,212,0,0,0,0,0,0,0,170,3.6,4,2,42.5,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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,42.8,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,52,83000,84,1186,222,29,120,20,3209,0,2218,631,180,3.1,7,5,43.1,6096,9,999999999,6,0.044,0,88,0.2,0,1 +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,14922,5794,12381,3346,180,4.1,10,8,43.4,6096,9,999999999,6,0.044,0,88,0.2,0,1 +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,26426,17401,16307,5293,210,4.1,9,6,43.7,7620,9,999999999,6,0.044,0,88,0.2,0,1 +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,40988,31974,17343,6229,0,0,9,6,43.9,7620,9,999999999,6,0.044,0,88,0.2,0,1 +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,49864,37089,20940,7615,0,0,7,5,44.2,7620,9,999999999,6,0.044,0,88,0.2,0,1 +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,-11.1,27,83300,758,1409,274,443,494,177,51229,38088,20562,7567,80,2.6,10,6,44.5,6706,9,999999999,6,0.044,0,88,0.2,0,1 +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,-11.1,27,83200,703,1409,274,293,242,172,33621,18524,19826,7110,70,2.6,10,6,44.8,6706,9,999999999,6,0.044,0,88,0.2,0,1 +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,-11.7,26,83200,581,1409,281,261,107,217,28681,9200,23972,7218,80,2.6,10,8,45.1,6096,9,999999999,6,0.044,0,88,0.2,0,1 +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,27959,28045,12699,3922,80,4.1,10,5,45.4,6096,9,999999999,6,0.044,0,88,0.2,0,1 +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,9650,3348,7668,1805,90,3.1,10,5,45.7,6401,9,999999999,7,0.044,0,88,0.2,0,1 +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,46,6706,9,999999999,7,0.044,0,88,0.2,0,1 +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,61,83000,0,0,238,0,0,0,0,0,0,0,100,2.6,8,5,46.3,6706,9,999999999,7,0.044,0,88,0.2,0,1 +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,46.6,6706,9,999999999,7,0.044,0,88,0.2,0,1 +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,-13.3,48,83100,0,0,235,0,0,0,0,0,0,0,0,0,9,6,46.8,6706,9,999999999,7,0.044,0,88,0.2,0,1 +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,47.1,6706,9,999999999,7,0.044,0,88,0.2,0,1 +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,47.4,6706,9,999999999,7,0.044,0,88,0.2,0,1 +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,47.7,6706,9,999999999,7,0.044,0,88,0.2,0,1 +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,47,84000,0,0,218,0,0,0,0,0,0,0,260,3.3,2,2,48,77777,9,999999999,2,0.053,0,88,0.2,0,1 +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,38,84000,0,0,218,0,0,0,0,0,0,0,270,4.1,5,3,48,77777,9,999999999,2,0.053,0,88,0.2,0,1 +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,77777,9,999999999,2,0.053,0,88,0.2,0,1 +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,33,84000,0,0,205,0,0,0,0,0,0,0,270,5.7,1,0,48,77777,9,999999999,2,0.053,0,88,0.2,0,1 +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,31,84000,0,0,211,0,0,0,0,0,0,0,260,6.2,1,1,48,77777,9,999999999,2,0.053,0,88,0.2,0,1 +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,77777,9,999999999,2,0.053,0,88,0.2,0,1 +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,77777,9,999999999,2,0.053,0,88,0.2,0,1 +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,30,84000,88,1209,212,38,360,12,4037,20293,1993,261,270,5.2,1,1,112,77777,9,999999999,2,0.053,0,88,0.2,0,1 +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,-18.9,29,84000,321,1409,215,209,798,28,22302,67364,4520,732,280,4.6,0,0,112,77777,9,999999999,2,0.053,0,88,0.2,0,1 +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,40805,87464,6090,1040,290,5.7,0,0,112,77777,9,999999999,2,0.053,0,88,0.2,0,1 +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,54844,96397,7140,1262,270,6.2,0,0,112,77777,9,999999999,2,0.053,0,88,0.2,0,1 +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,18,84000,751,1409,228,592,1015,51,62800,99997,7625,1391,280,4.1,0,0,112,77777,9,999999999,2,0.053,0,88,0.2,0,1 +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,64289,100602,7751,1420,340,2.6,0,0,112,77777,9,999999999,2,0.053,0,88,0.2,0,1 +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,58998,98457,7388,1325,90,5.7,0,0,112,77777,9,999999999,2,0.053,0,88,0.2,0,1 +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,47289,92052,6486,1130,110,6.2,0,0,112,77777,9,999999999,2,0.053,0,88,0.2,0,1 +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,30397,77625,5104,859,110,6.2,0,0,112,77777,9,999999999,2,0.053,0,88,0.2,0,1 +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,10992,45004,3286,482,150,3.6,0,0,112,77777,9,999999999,2,0.053,0,88,0.2,0,1 +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,48,83700,9,387,213,3,83,1,0,0,0,0,130,2.1,0,0,80,77777,9,999999999,2,0.053,0,88,0.2,0,1 +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,50,83700,0,0,211,0,0,0,0,0,0,0,160,2.6,0,0,48,77777,9,999999999,2,0.053,0,88,0.2,0,1 +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,77777,9,999999999,2,0.053,0,88,0.2,0,1 +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,32,77777,9,999999999,2,0.053,0,88,0.2,0,1 +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,-17.2,52,83600,0,0,200,0,0,0,0,0,0,0,140,2.1,0,0,32,77777,9,999999999,2,0.053,0,88,0.2,0,1 +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,-17.8,49,83600,0,0,200,0,0,0,0,0,0,0,180,2.6,0,0,32,77777,9,999999999,2,0.053,0,88,0.2,0,1 +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,77777,9,999999999,2,0.053,0,88,0.2,0,1 +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,-18.9,44,83600,0,0,199,0,0,0,0,0,0,0,190,2.1,0,0,32,77777,9,999999999,2,0.053,0,88,0.2,0,1 +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,77777,9,999999999,2,0.053,0,88,0.2,0,1 +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,77777,9,999999999,2,0.053,0,88,0.2,0,1 +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,77777,9,999999999,2,0.053,0,88,0.2,0,1 +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,53,83500,0,0,192,0,0,0,0,0,0,0,0,0,1,1,48,77777,9,999999999,2,0.053,0,88,0.2,0,1 +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,77777,9,999999999,2,0.053,0,88,0.2,0,1 +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,53,83500,0,0,188,0,0,0,0,0,0,0,190,2.6,0,0,112,77777,9,999999999,2,0.053,0,88,0.2,0,1 +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,42,83500,92,1232,196,40,342,14,4234,19489,2310,266,160,4.1,0,0,112,77777,9,999999999,2,0.053,0,88,0.2,0,1 +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,21886,63218,5282,782,150,3.1,0,0,112,77777,9,999999999,3,0.053,0,88,0.2,0,1 +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,40119,83822,7119,1127,180,4.6,0,0,112,77777,9,999999999,3,0.053,0,88,0.2,0,1 +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,54166,93145,8282,1371,200,4.6,0,0,112,77777,9,999999999,3,0.053,0,88,0.2,0,1 +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,-13.3,22,83300,756,1408,254,588,983,60,62228,97026,8888,1522,190,2.6,0,0,112,77777,9,999999999,3,0.053,0,88,0.2,0,1 +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,63554,97396,9007,1551,110,1.5,0,0,112,77777,9,999999999,3,0.053,0,88,0.2,0,1 +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,58408,95320,8660,1451,350,3.1,0,0,96,77777,9,999999999,3,0.053,0,88,0.2,0,1 +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,46923,88960,7650,1236,350,5.2,0,0,64,77777,9,999999999,3,0.053,0,88,0.2,0,1 +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,30004,74122,6158,940,360,4.1,0,0,64,77777,9,999999999,3,0.053,0,88,0.2,0,1 +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,10850,41245,4065,503,350,3.1,0,0,64,77777,9,999999999,3,0.053,0,88,0.2,0,1 +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,77777,9,999999999,3,0.053,0,88,0.2,0,1 +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,77777,9,999999999,3,0.053,0,88,0.2,0,1 +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,77777,9,999999999,3,0.053,0,88,0.2,0,1 +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,77777,9,999999999,3,0.053,0,88,0.2,0,1 +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,77777,9,999999999,3,0.053,0,88,0.2,0,1 +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,77777,9,999999999,3,0.053,0,88,0.2,0,1 +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,-13.9,70,83500,0,0,210,0,0,0,0,0,0,0,150,3.1,2,2,24,77777,9,999999999,3,0.053,0,88,0.2,0,1 +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,3,0.053,0,88,0.2,0,1 +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,-12.2,82,83400,0,0,225,0,0,0,0,0,0,0,170,1.5,10,8,19.2,4572,9,999999999,3,0.053,0,88,0.2,0,1 +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,-14.4,67,83400,0,0,219,0,0,0,0,0,0,0,190,2.1,7,7,19.2,7010,9,999999999,3,0.053,0,88,0.2,0,1 +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,3,0.053,0,88,0.2,0,1 +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,7010,9,999999999,3,0.053,0,88,0.2,0,1 +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,77777,9,999999999,3,0.053,0,88,0.2,0,1 +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,77777,9,999999999,3,0.053,0,88,0.2,0,1 +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,3817,0,2138,634,120,1.5,4,4,80,77777,9,999999999,3,0.053,0,88,0.2,0,1 +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,23810,18686,4628,1598,200,4.1,2,2,80,77777,9,999999999,3,0.053,0,88,0.2,0,1 +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,36,83100,530,1408,233,357,725,83,41945,40979,9780,3540,180,2.1,3,3,80,77777,9,999999999,3,0.053,0,88,0.2,0,1 +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,52518,45766,13501,5079,280,1.5,4,2,80,77777,9,999999999,3,0.053,0,88,0.2,0,1 +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,52789,38514,23770,8484,340,2.1,8,4,64,77777,9,999999999,3,0.053,0,88,0.2,0,1 +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,-7.8,36,82900,777,1408,268,563,751,148,66200,54044,17474,6665,350,3.1,7,2,48,77777,9,999999999,3,0.053,0,88,0.2,0,1 +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,47344,36145,17522,6502,20,3.1,8,4,16,77777,9,999999999,3,0.053,0,88,0.2,0,1 +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,46654,42814,11228,4151,90,4.6,7,2,12.8,77777,9,999999999,3,0.053,0,88,0.2,0,1 +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,23155,19200,6068,2160,50,2.6,8,3,16,77777,9,999999999,3,0.053,0,88,0.2,0,1 +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,-6.1,60,83000,196,1408,257,83,143,63,8971,2482,6834,1828,60,4.6,5,5,16,77777,9,999999999,3,0.053,0,88,0.2,0,1 +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,45,83100,12,434,250,2,33,1,0,0,0,0,120,4.1,4,4,16,77777,9,999999999,3,0.053,0,88,0.2,0,1 +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,77777,9,999999999,3,0.053,0,88,0.2,0,1 +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,1,1,24,77777,9,999999999,3,0.053,0,88,0.2,0,1 +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,77777,9,999999999,3,0.053,0,88,0.2,0,1 +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,-12.8,50,83500,0,0,220,0,0,0,0,0,0,0,200,1.5,0,0,24,77777,9,999999999,3,0.053,0,88,0.2,0,1 +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,77777,9,999999999,3,0.053,0,88,0.2,0,1 +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,77777,9,999999999,3,0.053,0,88,0.2,0,1 +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,77777,9,999999999,3,0.054,0,88,0.2,0,1 +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,58,83500,0,0,206,0,0,0,0,0,0,0,240,2.1,0,0,32,77777,9,999999999,3,0.054,0,88,0.2,0,1 +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,77777,9,999999999,3,0.054,0,88,0.2,0,1 +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,77777,9,999999999,3,0.054,0,88,0.2,0,1 +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,32,77777,9,999999999,3,0.054,0,88,0.2,0,1 +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,77777,9,999999999,3,0.054,0,88,0.2,0,1 +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,77777,9,999999999,3,0.054,0,88,0.2,0,1 +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,-15,64,83300,99,1279,206,41,329,16,4683,0,1830,561,200,1.5,2,1,80,77777,9,999999999,3,0.054,0,88,0.2,0,1 +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,17727,14008,7110,2350,0,0,3,3,80,77777,9,999999999,3,0.054,0,88,0.2,0,1 +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,43046,42534,11088,3967,330,2.6,2,2,64,77777,9,999999999,3,0.054,0,88,0.2,0,1 +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,-9.4,45,83200,683,1408,245,490,838,83,59283,50800,10070,3888,350,2.1,3,1,64,77777,9,999999999,4,0.054,0,88,0.2,0,1 +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,64333,51377,13368,5225,360,2.6,2,2,64,77777,9,999999999,4,0.054,0,88,0.2,0,1 +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,60620,47201,15182,5901,340,4.1,3,3,64,77777,9,999999999,4,0.054,0,88,0.2,0,1 +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,62440,51160,10822,4226,120,2.1,2,2,64,77777,9,999999999,4,0.054,0,88,0.2,0,1 +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,42937,78659,7928,1268,340,3.1,4,3,48,77777,9,999999999,4,0.054,0,88,0.2,0,1 +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,-6.7,40,83100,426,1408,282,201,270,119,22345,16120,13283,4163,60,2.6,9,7,48,7010,9,999999999,4,0.054,0,88,0.2,0,1 +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,4309,0,4339,1492,80,3.1,10,10,64,3962,9,999999999,4,0.054,0,88,0.2,0,1 +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,3962,9,999999999,4,0.054,0,88,0.2,0,1 +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,76,83400,0,0,267,0,0,0,0,0,0,0,350,3.6,10,9,32,3962,9,999999999,4,0.054,0,88,0.2,0,1 +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,3962,9,999999999,4,0.054,0,88,0.2,0,1 +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,77777,9,999999999,4,0.054,0,88,0.2,0,1 +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,3962,9,999999999,4,0.054,0,88,0.2,0,1 +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,77777,9,999999999,4,0.054,0,88,0.2,0,1 +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,32,77777,9,999999999,4,0.054,0,88,0.2,0,1 +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,82,83600,0,0,213,0,0,0,0,0,0,0,0,0,0,0,32,77777,9,999999999,4,0.054,0,88,0.2,0,1 +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,78,83500,0,0,219,0,0,0,0,0,0,0,70,2.6,1,1,32,77777,9,999999999,4,0.054,0,88,0.2,0,1 +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,77777,9,999999999,4,0.054,0,88,0.2,0,1 +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,77777,9,999999999,4,0.054,0,88,0.2,0,1 +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,77777,9,999999999,4,0.054,0,88,0.2,0,1 +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,77777,9,999999999,4,0.054,0,88,0.2,0,1 +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,77777,9,999999999,4,0.054,0,88,0.2,0,1 +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,68,83400,103,1302,230,44,285,21,4931,0,2358,699,200,3.1,3,3,80,77777,9,999999999,4,0.054,0,88,0.2,0,1 +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,22427,17974,5294,1821,180,2.6,1,1,96,77777,9,999999999,4,0.054,0,88,0.2,0,1 +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,41010,37111,7031,2619,190,3.1,1,1,96,77777,9,999999999,4,0.054,0,88,0.2,0,1 +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,55157,92378,8692,1422,200,3.6,0,0,112,77777,9,999999999,4,0.054,0,88,0.2,0,1 +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,63147,96179,9285,1579,170,2.1,0,0,112,77777,9,999999999,4,0.054,0,88,0.2,0,1 +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,64661,96759,9402,1610,120,2.1,0,0,112,77777,9,999999999,4,0.054,0,88,0.2,0,1 +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,59358,94502,9059,1505,310,8.8,0,0,112,77777,9,999999999,4,0.054,0,88,0.2,0,1 +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,47835,88292,8062,1285,300,11.3,0,0,112,77777,9,999999999,4,0.054,0,88,0.2,0,1 +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,31061,74189,6445,977,300,6.7,0,0,112,77777,9,999999999,4,0.054,0,88,0.2,0,1 +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,11883,42954,4375,541,290,7.7,0,0,112,77777,9,999999999,4,0.054,0,88,0.2,0,1 +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,77777,9,999999999,3,0.054,0,88,0.2,0,1 +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,77777,9,999999999,3,0.054,0,88,0.2,0,1 +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,48,77777,9,999999999,3,0.054,0,88,0.2,0,1 +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,77777,9,999999999,3,0.054,0,88,0.2,0,1 +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,-13.9,30,83200,0,0,236,0,0,0,0,0,0,0,200,4.1,0,0,48,77777,9,999999999,3,0.054,0,88,0.2,0,1 +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,77777,9,999999999,3,0.054,0,88,0.2,0,1 +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,31,83200,0,0,229,0,0,0,0,0,0,0,190,3.6,0,0,48,77777,9,999999999,3,0.054,0,88,0.2,0,1 +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,34,83200,0,0,225,0,0,0,0,0,0,0,160,3.6,0,0,48,77777,9,999999999,3,0.054,0,88,0.2,0,1 +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,77777,9,999999999,3,0.054,0,88,0.2,0,1 +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,77777,9,999999999,3,0.054,0,88,0.2,0,1 +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,77777,9,999999999,3,0.054,0,88,0.2,0,1 +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,77777,9,999999999,3,0.054,0,88,0.2,0,1 +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,36,83200,0,0,231,0,0,0,0,0,0,0,190,5.2,4,2,48,77777,9,999999999,3,0.054,0,88,0.2,0,1 +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,36,83200,0,0,235,0,0,0,0,0,0,0,150,3.1,6,4,96,6401,9,999999999,3,0.054,0,88,0.2,0,1 +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,4497,0,4084,1015,180,4.1,7,6,96,6401,9,999999999,3,0.054,0,88,0.2,0,1 +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,-13.3,32,83300,345,1407,253,177,177,133,19068,10933,14395,3814,200,3.1,8,6,128,6401,9,999999999,3,0.054,0,88,0.2,0,1 +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,8906,2627,6478,2424,340,2.1,7,7,128,7315,9,999999999,3,0.054,0,88,0.2,0,1 +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,42718,30570,20540,7269,180,2.1,8,6,128,7315,9,999999999,3,0.054,0,88,0.2,0,1 +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,63744,51653,18475,6999,80,2.1,4,4,128,77777,9,999999999,3,0.054,0,88,0.2,0,1 +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,44538,27797,20910,7818,60,1.5,4,3,112,77777,9,999999999,3,0.054,0,88,0.2,0,1 +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,60481,50965,17586,6582,50,3.1,7,2,112,77777,9,999999999,3,0.054,0,88,0.2,0,1 +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,43962,39006,15598,5556,80,3.1,8,3,112,77777,9,999999999,3,0.054,0,88,0.2,0,1 +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,27947,26078,9882,3363,140,3.1,9,2,112,77777,9,999999999,4,0.054,0,88,0.2,0,1 +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,8194,1956,5776,1709,100,3.6,10,4,112,77777,9,999999999,4,0.054,0,88,0.2,0,1 +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,7315,9,999999999,4,0.054,0,88,0.2,0,1 +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,77777,9,999999999,4,0.054,0,88,0.2,0,1 +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,77777,9,999999999,4,0.054,0,88,0.2,0,1 +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,77777,9,999999999,4,0.054,0,88,0.2,0,1 +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,77777,9,999999999,4,0.054,0,88,0.2,0,1 +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,77777,9,999999999,4,0.054,0,88,0.2,0,1 +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,9,4,40,77777,9,999999999,4,0.054,0,88,0.2,0,1 +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,7315,9,999999999,4,0.055,0,88,0.2,0,1 +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,-7.2,83,83000,0,0,234,0,0,0,0,0,0,0,350,3.6,8,3,32,77777,9,999999999,4,0.055,0,88,0.2,0,1 +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,77777,9,999999999,4,0.055,0,88,0.2,0,1 +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,61,9,999999999,4,0.055,0,88,0.2,0,1 +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,4,0.055,0,88,0.2,0,1 +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,4,0.055,0,88,0.2,0,1 +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,5,0.055,0,88,0.2,0,1 +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,1069,0,1076,419,30,1,10,10,0.8,61,9,999999999,5,0.055,0,88,0.2,0,1 +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,5455,0,5496,2172,50,2.1,10,10,1.2,244,9,999999999,5,0.055,0,88,0.2,0,1 +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,8069,0,8133,3486,50,3.1,10,10,1.2,183,9,999999999,5,0.055,0,88,0.2,0,1 +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,10923,0,11015,4885,90,2.6,10,10,2.4,152,9,999999999,5,0.055,0,88,0.2,0,1 +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,-7.2,83,82700,785,1406,259,121,0,121,12433,0,12542,5676,350,3.1,10,10,0.8,183,9,999999999,5,0.055,0,88,0.2,0,1 +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,55147,19321,44680,12385,60,1.5,10,7,3.2,183,9,999999999,5,0.055,0,88,0.2,0,1 +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,40991,25554,20822,7589,360,3.6,10,6,6.4,7620,9,999999999,5,0.055,0,88,0.2,0,1 +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,11993,3755,8501,3240,360,2.6,10,6,6.4,7620,9,999999999,5,0.055,0,88,0.2,0,1 +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,26855,11863,22289,5476,360,4.1,10,6,6.4,7620,9,999999999,5,0.055,0,88,0.2,0,1 +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,6346,593,5583,1684,100,2.1,10,9,6.4,3658,9,999999999,6,0.055,0,88,0.2,0,1 +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,6,0.055,0,88,0.2,0,1 +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,-6.7,86,82400,0,0,260,0,0,0,0,0,0,0,90,2.6,10,10,4.8,3658,9,999999999,6,0.055,0,88,0.2,0,1 +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,-7.2,83,82400,0,0,259,0,0,0,0,0,0,0,330,2.6,10,10,4.8,3658,9,999999999,6,0.055,0,88,0.2,0,1 +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,6,0.055,0,88,0.2,0,1 +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,6,0.055,0,88,0.2,0,1 +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,43,82200,0,0,308,0,0,0,0,0,0,0,200,7.2,10,10,40,3658,9,999999999,6,0.055,0,88,0.2,0,1 +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,3658,9,999999999,6,0.055,0,88,0.2,0,1 +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,3962,9,999999999,6,0.055,0,88,0.2,0,1 +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,-5,66,82100,0,0,282,0,0,0,0,0,0,0,300,1.5,10,10,32,4267,9,999999999,6,0.055,0,88,0.2,0,1 +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,10,10,32,4572,9,999999999,7,0.055,0,88,0.2,0,1 +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,10,10,32,4572,9,999999999,7,0.055,0,88,0.2,0,1 +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,4572,9,999999999,7,0.055,0,88,0.2,0,1 +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,4267,9,999999999,7,0.055,0,88,0.2,0,1 +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,7,0.055,0,88,0.2,0,1 +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,1558,0,1568,583,50,4.1,10,10,4.8,244,9,999999999,6,0.055,0,88,0.2,0,1 +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,6061,0,6106,2374,50,4.6,10,10,3.2,396,9,999999999,6,0.055,0,88,0.2,0,1 +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,12325,0,12423,4903,60,4.1,10,10,3.2,518,9,999999999,6,0.055,0,88,0.2,0,1 +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,16155,0,16291,6701,70,3.6,10,10,8,579,9,999999999,6,0.055,0,88,0.2,0,1 +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,26872,9256,18737,7122,40,4.1,10,9,12.8,549,9,999999999,6,0.055,0,88,0.2,0,1 +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,33610,10696,25249,9130,70,2.6,10,8,9.6,579,9,999999999,6,0.055,0,88,0.2,0,1 +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,17441,0,17590,7306,60,4.1,10,10,8,640,9,999999999,6,0.055,0,88,0.2,0,1 +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,29941,15530,19978,6774,50,4.1,8,8,9.6,2286,9,999999999,6,0.055,0,88,0.2,0,1 +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,12823,7163,6783,2428,50,3.6,7,7,9.6,2286,9,999999999,6,0.055,0,88,0.2,0,1 +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,9455,1514,8630,2220,70,5.2,10,8,9.6,3962,9,999999999,5,0.055,0,88,0.2,0,1 +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,5,0.055,0,88,0.2,0,1 +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,-18.3,73,83100,0,0,213,0,0,0,0,0,0,0,80,3.1,10,10,12.8,2896,9,999999999,5,0.055,0,88,0.2,0,1 +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,5,0.055,0,88,0.2,0,1 +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,10,10,4.4,914,9,999999999,5,0.055,0,88,0.2,0,1 +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,-18.3,73,83300,0,0,207,0,0,0,0,0,0,0,70,2.1,9,9,9.6,1676,9,999999999,5,0.055,0,88,0.2,0,1 +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,77777,9,999999999,5,0.055,0,88,0.2,0,1 +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,32,77777,9,999999999,5,0.055,0,88,0.2,0,1 +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,-18.3,73,83300,0,0,185,0,0,0,0,0,0,0,190,2.6,0,0,24,77777,9,999999999,5,0.055,0,88,0.2,0,1 +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,77777,9,999999999,4,0.055,0,88,0.2,0,1 +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,77777,9,999999999,4,0.055,0,88,0.2,0,1 +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,-17.8,77,83300,0,0,185,0,0,0,0,0,0,0,30,1,0,0,24,77777,9,999999999,4,0.055,0,88,0.2,0,1 +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,24,77777,9,999999999,4,0.055,0,88,0.2,0,1 +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,77777,9,999999999,4,0.055,0,88,0.2,0,1 +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,77777,9,999999999,4,0.055,0,88,0.2,0,1 +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,77,83300,122,1393,199,42,186,25,4707,0,2808,836,260,1.5,1,1,96,77777,9,999999999,4,0.055,0,88,0.2,0,1 +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,24665,22109,6414,2195,0,0,0,0,96,77777,9,999999999,4,0.055,0,88,0.2,0,1 +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,45884,42824,8962,3325,60,1.5,0,0,80,77777,9,999999999,4,0.055,0,88,0.2,0,1 +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,62894,52529,10796,4198,30,2.6,0,0,48,77777,9,999999999,4,0.055,0,88,0.2,0,1 +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,72890,56629,11860,4717,340,4.1,0,0,32,77777,9,999999999,4,0.055,0,88,0.2,0,1 +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,-6.7,57,83100,813,1405,242,612,887,99,74652,57134,12114,4836,350,3.6,0,0,32,77777,9,999999999,4,0.055,0,88,0.2,0,1 +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,68072,54610,11441,4502,20,2.1,0,0,32,77777,9,999999999,4,0.055,0,88,0.2,0,1 +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,50916,44305,9754,3708,350,3.6,1,1,11.2,77777,9,999999999,5,0.055,0,88,0.2,0,1 +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,50,83000,455,1405,258,287,681,66,33690,31678,7767,2762,360,1.5,1,0,11.2,77777,9,999999999,5,0.055,0,88,0.2,0,1 +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,11765,4902,5506,1696,340,1.5,2,2,48,77777,9,999999999,5,0.055,0,88,0.2,0,1 +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,77777,9,999999999,5,0.055,0,88,0.2,0,1 +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,77777,9,999999999,5,0.055,0,88,0.2,0,1 +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,-5.6,62,82900,0,0,254,0,0,0,0,0,0,0,120,3.1,8,3,40,77777,9,999999999,5,0.055,0,88,0.2,0,1 +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,4572,9,999999999,5,0.055,0,88,0.2,0,1 +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,-7.8,36,83000,0,0,285,0,0,0,0,0,0,0,290,4.6,8,8,40,4572,9,999999999,5,0.055,0,88,0.2,0,1 +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,4572,9,999999999,5,0.055,0,88,0.2,0,1 +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,4267,9,999999999,5,0.055,0,88,0.2,0,1 +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,-9.4,31,83100,0,0,269,0,0,0,0,0,0,0,260,5.2,5,3,40,77777,9,999999999,5,0.056,0,88,0.2,0,1 +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,77777,9,999999999,5,0.056,0,88,0.2,0,1 +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,77777,9,999999999,5,0.056,0,88,0.2,0,1 +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,77777,9,999999999,5,0.056,0,88,0.2,0,1 +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,77777,9,999999999,5,0.056,0,88,0.2,0,1 +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,77777,9,999999999,5,0.056,0,88,0.2,0,1 +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,7620,9,999999999,5,0.056,0,88,0.2,0,1 +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,4590,0,3836,1061,180,1.5,7,5,96,7620,9,999999999,5,0.056,0,88,0.2,0,1 +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,20183,15327,11959,3599,140,2.1,6,5,96,7620,9,999999999,5,0.056,0,88,0.2,0,1 +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,-7.8,36,83400,569,1405,273,266,282,151,30028,20179,17120,5769,140,4.1,5,4,96,77777,9,999999999,5,0.056,0,88,0.2,0,1 +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,42180,18043,31653,9819,110,5.7,8,8,96,3048,9,999999999,5,0.056,0,88,0.2,0,1 +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,42523,26787,17006,6588,150,7.2,7,7,96,3048,9,999999999,5,0.056,0,88,0.2,0,1 +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,36951,15882,23672,8760,160,7.7,8,8,96,2743,9,999999999,5,0.056,0,88,0.2,0,1 +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,50257,35812,21424,7849,160,7.2,7,6,96,2896,9,999999999,5,0.056,0,88,0.2,0,1 +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,21511,11101,11977,4491,160,6.2,9,8,80,2743,9,999999999,5,0.056,0,88,0.2,0,1 +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,41,83000,461,1405,302,126,11,122,14103,678,13711,4429,160,5.7,9,9,80,2591,9,999999999,5,0.056,0,88,0.2,0,1 +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,6265,393,5722,1762,320,8.8,9,9,80,2591,9,999999999,5,0.056,0,88,0.2,0,1 +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,7620,9,999999999,5,0.056,0,88,0.2,0,1 +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,3353,9,999999999,5,0.056,0,88,0.2,0,1 +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,6,0.056,0,88,0.2,0,1 +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,6,0.056,0,88,0.2,0,1 +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,77777,9,999999999,6,0.056,0,88,0.2,0,1 +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,76,82800,0,0,248,0,0,0,0,0,0,0,360,2.1,3,3,24,77777,9,999999999,6,0.056,0,88,0.2,0,1 +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,77777,9,999999999,6,0.056,0,88,0.2,0,1 +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,77777,9,999999999,6,0.056,0,88,0.2,0,1 +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,91,82600,0,0,230,0,0,0,0,0,0,0,170,1.5,0,0,24,77777,9,999999999,6,0.056,0,88,0.2,0,1 +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,1,0,24,77777,9,999999999,6,0.056,0,88,0.2,0,1 +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,77777,9,999999999,6,0.056,0,88,0.2,0,1 +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,77777,9,999999999,6,0.056,0,88,0.2,0,1 +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,-6.1,91,82400,0,0,226,0,0,0,0,0,0,0,0,0,1,0,19.2,77777,9,999999999,6,0.056,0,88,0.2,0,1 +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,19.2,77777,9,999999999,6,0.056,0,88,0.2,0,1 +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,6999,0,2298,720,190,2.1,0,0,64,77777,9,999999999,6,0.056,0,88,0.2,0,1 +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,25559,67227,5877,874,170,2.6,0,0,80,77777,9,999999999,6,0.056,0,88,0.2,0,1 +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,44089,85236,7667,1219,60,2.1,0,0,72,77777,9,999999999,6,0.056,0,88,0.2,0,1 +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,58171,93364,8794,1475,70,2.6,0,0,72,77777,9,999999999,6,0.056,0,88,0.2,0,1 +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,60336,87183,9240,1629,20,5.2,1,1,48,77777,9,999999999,6,0.056,0,88,0.2,0,1 +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,65061,93089,9358,1663,10,5.7,1,1,40,77777,9,999999999,6,0.056,0,88,0.2,0,1 +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,-2.8,55,82100,770,1404,280,512,607,180,59174,46109,20899,7726,10,6.2,5,5,32,77777,9,999999999,6,0.056,0,88,0.2,0,1 +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,30996,15072,21065,7151,350,6.7,7,7,24,2743,9,999999999,6,0.056,0,88,0.2,0,1 +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,6700,0,6752,2823,10,7.2,10,10,1.6,183,9,999999999,6,0.056,0,88,0.2,0,1 +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,2945,0,2966,1169,360,7.2,10,10,0.4,61,9,999999999,6,0.056,0,88,0.2,0,1 +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,0,0,0,0,350,8.2,10,10,0.8,120,9,999999999,6,0.056,0,88,0.2,0,1 +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,6,0.056,0,88,0.2,0,1 +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,-6.1,91,83100,0,0,260,0,0,0,0,0,0,0,20,11.8,10,10,0.6,183,9,999999999,6,0.056,0,88,0.2,0,1 +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,6,0.056,0,88,0.2,0,1 +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,6,0.056,0,88,0.2,0,1 +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,6,0.056,0,88,0.2,0,1 +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,6,0.056,0,88,0.2,0,1 +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,6,0.055,0,88,0.2,0,1 +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,68,83800,0,0,254,0,0,0,0,0,0,0,320,3.1,10,10,12.8,1372,9,999999999,6,0.055,0,88,0.2,0,1 +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,2591,9,999999999,6,0.055,0,88,0.2,0,1 +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,86,83900,0,0,237,0,0,0,0,0,0,0,160,2.1,10,9,32,3962,9,999999999,6,0.055,0,88,0.2,0,1 +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,-11.1,91,84000,0,0,226,0,0,0,0,0,0,0,160,2.6,10,8,32,6096,9,999999999,6,0.055,0,88,0.2,0,1 +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,-11.1,91,84000,0,0,222,0,0,0,0,0,0,0,170,1.5,7,7,32,6096,9,999999999,6,0.055,0,88,0.2,0,1 +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,77777,9,999999999,6,0.055,0,88,0.2,0,1 +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,-11.1,91,84200,137,1404,212,58,238,34,6400,0,3762,1079,170,2.1,2,2,96,77777,9,999999999,6,0.055,0,88,0.2,0,1 +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,20542,51955,5268,845,180,1.5,1,1,96,77777,9,999999999,6,0.055,0,88,0.2,0,1 +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,59,84300,581,1404,230,389,821,49,41380,78715,7512,1215,180,3.1,1,1,96,77777,9,999999999,6,0.055,0,88,0.2,0,1 +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,58904,94460,8215,1432,180,3.6,0,0,96,77777,9,999999999,6,0.055,0,88,0.2,0,1 +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,67005,97861,8806,1597,190,5.2,0,0,96,77777,9,999999999,5,0.055,0,88,0.2,0,1 +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,68551,98370,8924,1631,150,5.2,0,0,112,77777,9,999999999,5,0.055,0,88,0.2,0,1 +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,63301,96419,8580,1521,180,3.6,0,0,112,77777,9,999999999,5,0.055,0,88,0.2,0,1 +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,51699,91087,7729,1306,180,4.6,0,0,112,77777,9,999999999,5,0.055,0,88,0.2,0,1 +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,-12.8,33,84300,472,1404,237,328,854,40,34949,78935,6271,1012,170,3.6,0,0,112,77777,9,999999999,5,0.055,0,88,0.2,0,1 +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,-12.2,35,84300,246,1404,237,142,658,27,15123,51482,4377,622,190,3.1,0,0,96,77777,9,999999999,5,0.055,0,88,0.2,0,1 +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,0,0,0,0,220,3.1,0,0,96,77777,9,999999999,4,0.055,0,88,0.2,0,1 +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,77777,9,999999999,4,0.055,0,88,0.2,0,1 +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,77777,9,999999999,4,0.055,0,88,0.2,0,1 +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,77777,9,999999999,4,0.055,0,88,0.2,0,1 +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,77777,9,999999999,4,0.055,0,88,0.2,0,1 +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,58,84600,0,0,206,0,0,0,0,0,0,0,180,2.6,0,0,48,77777,9,999999999,4,0.055,0,88,0.2,0,1 +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,58,84600,0,0,206,0,0,0,0,0,0,0,160,2.6,0,0,48,77777,9,999999999,4,0.055,0,88,0.2,0,1 +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,77777,9,999999999,3,0.056,0,88,0.2,0,1 +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,77777,9,999999999,3,0.056,0,88,0.2,0,1 +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,77777,9,999999999,3,0.056,0,88,0.2,0,1 +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,77777,9,999999999,3,0.056,0,88,0.2,0,1 +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,77777,9,999999999,3,0.056,0,88,0.2,0,1 +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,77777,9,999999999,3,0.056,0,88,0.2,0,1 +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,77777,9,999999999,3,0.056,0,88,0.2,0,1 +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,7897,37294,2648,389,190,5.2,0,0,128,77777,9,999999999,3,0.056,0,88,0.2,0,1 +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,27961,75071,4655,799,150,5.7,0,0,128,77777,9,999999999,3,0.056,0,88,0.2,0,1 +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,46895,91668,6191,1100,180,6.2,0,0,128,77777,9,999999999,3,0.056,0,88,0.2,0,1 +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,61292,99082,7215,1333,180,4.6,0,0,128,77777,9,999999999,3,0.056,0,88,0.2,0,1 +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,69490,102078,7685,1476,180,4.6,0,0,128,77777,9,999999999,3,0.056,0,88,0.2,0,1 +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,-11.7,18,84300,838,1403,280,623,933,66,65836,92910,9605,1707,190,4.6,1,1,128,77777,9,999999999,3,0.056,0,88,0.2,0,1 +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,61478,93837,7309,1386,190,4.6,1,1,128,77777,9,999999999,3,0.056,0,88,0.2,0,1 +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,11,84200,659,1403,291,459,739,112,54073,48863,13240,4950,0,0,6,2,128,77777,9,999999999,3,0.056,0,88,0.2,0,1 +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,29912,27138,12214,4127,180,3.1,8,3,128,77777,9,999999999,3,0.056,0,88,0.2,0,1 +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,20,84100,251,1403,293,89,170,58,9932,3908,6492,1984,160,1.5,7,4,96,77777,9,999999999,3,0.056,0,88,0.2,0,1 +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,0,0,0,0,150,1.5,8,3,96,77777,9,999999999,3,0.056,0,88,0.2,0,1 +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,77777,9,999999999,3,0.056,0,88,0.2,0,1 +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,-10,30,84000,0,0,269,0,0,0,0,0,0,0,190,4.1,5,3,48,77777,9,999999999,3,0.056,0,88,0.2,0,1 +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,77777,9,999999999,3,0.056,0,88,0.2,0,1 +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,77777,9,999999999,3,0.056,0,88,0.2,0,1 +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,77777,9,999999999,3,0.056,0,88,0.2,0,1 +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,77777,9,999999999,4,0.056,0,88,0.2,0,1 +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,6706,9,999999999,4,0.056,0,88,0.2,0,1 +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,6706,9,999999999,4,0.056,0,88,0.2,0,1 +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,7010,9,999999999,4,0.056,0,88,0.2,0,1 +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,7010,9,999999999,4,0.056,0,88,0.2,0,1 +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,6706,9,999999999,4,0.056,0,88,0.2,0,1 +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,6706,9,999999999,4,0.056,0,88,0.2,0,1 +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,6706,9,999999999,4,0.056,0,88,0.2,0,1 +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,5416,0,5000,1335,200,5.7,7,6,128,6706,9,999999999,4,0.056,0,88,0.2,0,1 +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,13512,2038,12455,3818,170,3.6,9,9,128,6706,9,999999999,4,0.056,0,88,0.2,0,1 +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,29369,5465,26678,7737,160,3.1,9,9,128,6706,9,999999999,4,0.056,0,88,0.2,0,1 +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,42467,12735,35200,10622,160,3.6,9,9,128,6706,9,999999999,4,0.056,0,88,0.2,0,1 +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,47497,26487,26524,9607,10,2.1,9,7,112,6706,9,999999999,4,0.056,0,88,0.2,0,1 +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,48464,18230,35808,11868,110,5.2,9,8,96,6096,9,999999999,4,0.056,0,88,0.2,0,1 +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,48879,31839,23345,8519,120,5.2,9,4,104,77777,9,999999999,4,0.056,0,88,0.2,0,1 +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,-7.8,26,83600,665,1403,291,429,499,192,48437,39795,21783,7432,120,4.6,8,3,104,77777,9,999999999,4,0.056,0,88,0.2,0,1 +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,32765,31049,12332,4180,130,6.2,7,1,104,77777,9,999999999,4,0.056,0,88,0.2,0,1 +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,12372,6754,7426,2204,130,4.1,8,3,80,77777,9,999999999,4,0.056,0,88,0.2,0,1 +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,0,0,0,0,130,3.1,7,2,80,77777,9,999999999,4,0.056,0,88,0.2,0,1 +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,77777,9,999999999,4,0.056,0,88,0.2,0,1 +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,77777,9,999999999,4,0.056,0,88,0.2,0,1 +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,77777,9,999999999,4,0.056,0,88,0.2,0,1 +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,77777,9,999999999,4,0.056,0,88,0.2,0,1 +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,77777,9,999999999,4,0.056,0,88,0.2,0,1 +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,77777,9,999999999,4,0.056,0,88,0.2,0,1 +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,77777,9,999999999,4,0.057,0,88,0.2,0,1 +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,77777,9,999999999,4,0.057,0,88,0.2,0,1 +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,77777,9,999999999,4,0.057,0,88,0.2,0,1 +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,-6.7,86,84200,0,0,225,0,0,0,0,0,0,0,330,1.5,0,0,32,77777,9,999999999,4,0.057,0,88,0.2,0,1 +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,77777,9,999999999,4,0.057,0,88,0.2,0,1 +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,77777,9,999999999,4,0.057,0,88,0.2,0,1 +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,-8.3,75,84200,2,175,224,0,6,0,0,0,0,0,150,2.1,0,0,112,77777,9,999999999,4,0.057,0,88,0.2,0,1 +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,7655,0,3385,1031,170,3.1,0,0,112,77777,9,999999999,4,0.057,0,88,0.2,0,1 +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,29054,26976,6366,2229,210,4.6,0,0,112,77777,9,999999999,4,0.057,0,88,0.2,0,1 +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,51200,46743,8696,3281,200,5.2,0,0,112,77777,9,999999999,4,0.057,0,88,0.2,0,1 +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,23,84100,749,1402,272,562,892,85,68676,55481,10416,4107,160,2.6,0,0,112,77777,9,999999999,4,0.057,0,88,0.2,0,1 +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,67197,91712,13154,1891,170,3.1,0,0,112,77777,9,999999999,4,0.057,0,88,0.2,0,1 +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,68671,92255,13257,1935,180,5.7,0,0,96,77777,9,999999999,4,0.057,0,88,0.2,0,1 +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,63261,89848,12827,1782,260,1.5,0,0,96,77777,9,999999999,4,0.057,0,88,0.2,0,1 +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,16,83900,671,1402,292,490,860,78,59453,51242,9489,3661,150,1,0,0,96,77777,9,999999999,4,0.057,0,88,0.2,0,1 +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,25,83900,490,1402,298,327,759,62,38897,36350,7392,2689,160,3.1,0,0,96,77777,9,999999999,4,0.057,0,88,0.2,0,1 +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,16212,8881,4840,1585,150,2.6,0,0,96,77777,9,999999999,4,0.057,0,88,0.2,0,1 +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,0,0,0,0,160,3.1,0,0,96,77777,9,999999999,4,0.057,0,88,0.2,0,1 +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,77777,9,999999999,4,0.057,0,88,0.2,0,1 +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,77777,9,999999999,4,0.057,0,88,0.2,0,1 +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,77777,9,999999999,4,0.057,0,88,0.2,0,1 +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,77777,9,999999999,4,0.057,0,88,0.2,0,1 +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,77777,9,999999999,4,0.057,0,88,0.2,0,1 +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,7620,9,999999999,4,0.057,0,88,0.2,0,1 +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,7620,9,999999999,4,0.057,0,88,0.2,0,1 +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,77777,9,999999999,5,0.057,0,88,0.2,0,1 +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,4572,9,999999999,5,0.057,0,88,0.2,0,1 +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,7620,9,999999999,5,0.057,0,88,0.2,0,1 +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,-12.2,24,83900,0,0,273,0,0,0,0,0,0,0,110,3.6,8,6,40,7620,9,999999999,5,0.057,0,88,0.2,0,1 +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,7620,9,999999999,5,0.057,0,88,0.2,0,1 +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,-12.8,23,83900,2,199,270,0,0,0,0,0,0,0,190,7.2,8,5,40,7620,9,999999999,5,0.057,0,88,0.2,0,1 +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,5156,0,4732,1335,190,8.2,10,6,96,7620,9,999999999,5,0.057,0,88,0.2,0,1 +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,14854,3588,12911,3973,190,5.7,10,9,112,4877,9,999999999,5,0.057,0,88,0.2,0,1 +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,-11.7,18,84000,606,1401,308,179,4,177,20117,311,19985,6653,200,5.7,9,9,112,4877,9,999999999,5,0.057,0,88,0.2,0,1 +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,39113,22747,21096,7721,220,7.7,8,6,112,6706,9,999999999,5,0.057,0,88,0.2,0,1 +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,68089,51281,18670,7261,220,5.7,7,2,112,77777,9,999999999,5,0.057,0,88,0.2,0,1 +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,56153,35368,26425,9741,210,4.6,9,4,112,77777,9,999999999,5,0.057,0,88,0.2,0,1 +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,50419,26261,32681,10844,210,3.6,10,6,112,7620,9,999999999,5,0.057,0,88,0.2,0,1 +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,47966,40142,16869,6153,340,1.5,10,5,112,77777,9,999999999,5,0.057,0,88,0.2,0,1 +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,-4.4,25,83800,495,1401,327,206,187,140,22997,12552,15697,5058,70,4.6,10,7,112,7620,9,999999999,5,0.057,0,88,0.2,0,1 +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,12597,5669,9376,2604,110,4.6,10,6,96,4877,9,999999999,5,0.057,0,88,0.2,0,1 +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,0,0,0,0,110,3.6,10,7,80,4877,9,999999999,5,0.057,0,88,0.2,0,1 +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,7925,9,999999999,5,0.057,0,88,0.2,0,1 +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,7925,9,999999999,5,0.057,0,88,0.2,0,1 +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,4877,9,999999999,5,0.057,0,88,0.2,0,1 +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,4877,9,999999999,5,0.057,0,88,0.2,0,1 +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,7925,9,999999999,5,0.057,0,88,0.2,0,1 +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,77777,9,999999999,5,0.057,0,88,0.2,0,1 +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,77777,9,999999999,5,0.058,0,88,0.2,0,1 +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,58,83700,0,0,261,0,0,0,0,0,0,0,350,2.6,5,3,32,77777,9,999999999,6,0.058,0,88,0.2,0,1 +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,5,2,32,77777,9,999999999,6,0.058,0,88,0.2,0,1 +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,77777,9,999999999,6,0.058,0,88,0.2,0,1 +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,3962,9,999999999,6,0.058,0,88,0.2,0,1 +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,6,6,32,3962,9,999999999,6,0.058,0,88,0.2,0,1 +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,4572,9,999999999,6,0.058,0,88,0.2,0,1 +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,4986,0,4334,1274,170,2.1,9,5,96,4877,9,999999999,6,0.058,0,88,0.2,0,1 +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,21178,4642,19354,4896,180,5.2,10,9,112,7315,9,999999999,6,0.058,0,88,0.2,0,1 +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,-9.4,22,83300,612,1401,320,146,0,146,14803,0,14924,5873,190,4.1,10,10,112,3962,9,999999999,6,0.058,0,88,0.2,0,1 +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,20010,0,20182,8156,190,5.7,10,10,112,3962,9,999999999,6,0.058,0,88,0.2,0,1 +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,18446,4909,12869,5177,180,6.2,9,9,112,3962,9,999999999,6,0.058,0,88,0.2,0,1 +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,-6.7,20,82900,863,1401,325,465,57,430,50932,6317,47423,13720,170,4.1,9,7,112,6706,9,999999999,6,0.058,0,88,0.2,0,1 +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,40528,7045,36196,11549,190,6.2,9,8,112,6706,9,999999999,7,0.058,0,88,0.2,0,1 +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,36316,21823,20587,7239,170,7.2,7,7,112,6706,9,999999999,7,0.058,0,88,0.2,0,1 +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,32935,29489,14786,4878,180,8.2,8,5,112,8534,9,999999999,7,0.058,0,88,0.2,0,1 +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,-3.9,26,82500,273,1401,321,116,178,81,12688,6254,8893,2555,180,6.7,6,5,112,7925,9,999999999,7,0.058,0,88,0.2,0,1 +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,1199,0,1093,292,180,5.2,3,3,112,77777,9,999999999,7,0.058,0,88,0.2,0,1 +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,77777,9,999999999,7,0.058,0,88,0.2,0,1 +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,3,3,32,77777,9,999999999,7,0.058,0,88,0.2,0,1 +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,-2.8,39,82300,0,0,289,0,0,0,0,0,0,0,190,5.2,1,1,32,77777,9,999999999,7,0.058,0,88,0.2,0,1 +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,77777,9,999999999,7,0.058,0,88,0.2,0,1 +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,-3.3,38,82100,0,0,298,0,0,0,0,0,0,0,140,4.1,6,4,48,7620,9,999999999,7,0.058,0,88,0.2,0,1 +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,7620,9,999999999,7,0.058,0,88,0.2,0,1 +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,77777,9,999999999,8,0.058,0,88,0.2,0,1 +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,77777,9,999999999,8,0.058,0,88,0.2,0,1 +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,4877,9,999999999,8,0.058,0,88,0.2,0,1 +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,4877,9,999999999,8,0.058,0,88,0.2,0,1 +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,4877,9,999999999,8,0.058,0,88,0.2,0,1 +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,7,5,48,7620,9,999999999,8,0.058,0,88,0.2,0,1 +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,6,268,269,1,32,0,0,0,0,0,170,3.6,3,3,96,77777,9,999999999,8,0.058,0,88,0.2,0,1 +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,9820,0,4140,1246,200,3.6,1,1,96,77777,9,999999999,8,0.058,0,88,0.2,0,1 +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,29847,74282,5557,903,200,6.7,0,0,96,77777,9,999999999,7,0.058,0,88,0.2,0,1 +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,25,81700,618,1400,303,390,776,47,41708,75351,7190,1226,200,8.2,1,1,96,77777,9,999999999,7,0.058,0,88,0.2,0,1 +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,51163,36150,21766,7983,190,7.2,6,6,96,3353,9,999999999,7,0.058,0,88,0.2,0,1 +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,24,81500,854,1400,305,614,877,79,64822,87693,11358,1874,190,9.3,2,1,96,77777,9,999999999,7,0.058,0,88,0.2,0,1 +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,53314,33176,21708,8369,200,10.3,6,6,96,6706,9,999999999,7,0.058,0,88,0.2,0,1 +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,48828,25529,30006,10392,290,10.3,6,6,96,7315,9,999999999,7,0.058,0,88,0.2,0,1 +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,52703,44314,13963,5270,190,2.1,5,5,96,77777,9,999999999,7,0.058,0,88,0.2,0,1 +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,32403,28894,8743,3165,50,4.1,6,5,96,7620,9,999999999,7,0.058,0,88,0.2,0,1 +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,35,81600,279,1400,305,102,190,64,11403,5435,7177,2226,340,6.7,8,8,96,3048,9,999999999,6,0.058,0,88,0.2,0,1 +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,1621,0,1301,336,360,1,5,5,104,77777,9,999999999,6,0.058,0,88,0.2,0,1 +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,40,81800,0,0,282,0,0,0,0,0,0,0,30,3.6,3,3,48,77777,9,999999999,6,0.058,0,88,0.2,0,1 +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,4572,9,999999999,6,0.058,0,88,0.2,0,1 +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,4572,9,999999999,6,0.058,0,88,0.2,0,1 +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,77777,9,999999999,6,0.058,0,88,0.2,0,1 +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,4572,9,999999999,6,0.058,0,88,0.2,0,1 +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,4267,9,999999999,6,0.058,0,88,0.2,0,1 +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,2286,9,999999999,5,0.059,0,88,0.2,0,1 +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,1829,9,999999999,5,0.059,0,88,0.2,0,1 +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,2438,9,999999999,5,0.059,0,88,0.2,0,1 +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,4,3,40,77777,9,999999999,5,0.059,0,88,0.2,0,1 +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,77777,9,999999999,5,0.059,0,88,0.2,0,1 +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,77777,9,999999999,5,0.059,0,88,0.2,0,1 +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,77777,9,999999999,5,0.059,0,88,0.2,0,1 +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,6174,291,4976,1442,190,2.6,4,3,96,77777,9,999999999,5,0.059,0,88,0.2,0,1 +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,20909,12081,14811,4447,200,3.1,7,7,96,7010,9,999999999,5,0.059,0,88,0.2,0,1 +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,37436,27589,18802,6477,230,2.1,8,4,96,77777,9,999999999,5,0.059,0,88,0.2,0,1 +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,58480,45277,21057,7799,10,1.5,6,2,96,77777,9,999999999,5,0.059,0,88,0.2,0,1 +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,68546,50044,21142,8152,10,2.6,4,3,96,77777,9,999999999,5,0.059,0,88,0.2,0,1 +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,31767,5695,26939,9993,40,2.1,7,7,80,2134,9,999999999,5,0.059,0,88,0.2,0,1 +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,17319,0,17471,7575,330,5.7,10,10,64,2134,9,999999999,5,0.059,0,88,0.2,0,1 +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,13877,0,13995,5932,20,4.6,10,10,80,2134,9,999999999,5,0.059,0,88,0.2,0,1 +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,30787,26605,13162,4508,360,3.6,6,6,96,3353,9,999999999,5,0.059,0,88,0.2,0,1 +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,16034,11590,9746,2756,50,3.1,5,5,96,77777,9,999999999,5,0.059,0,88,0.2,0,1 +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,1325,0,1107,310,110,2.6,3,3,80,77777,9,999999999,5,0.059,0,88,0.2,0,1 +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,77777,9,999999999,5,0.059,0,88,0.2,0,1 +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,-3.3,76,83000,0,0,245,0,0,0,0,0,0,0,120,3.1,0,0,48,77777,9,999999999,5,0.059,0,88,0.2,0,1 +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,4,2,32,77777,9,999999999,5,0.059,0,88,0.2,0,1 +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,5,0.059,0,88,0.2,0,1 +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,5,0.059,0,88,0.2,0,1 +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,91,9,999999999,5,0.059,0,88,0.2,0,1 +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,183,9,999999999,5,0.059,0,88,0.2,0,1 +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,5,0.059,0,88,0.2,0,1 +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,10,10,9.6,152,9,999999999,5,0.059,0,88,0.2,0,1 +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,4,0.059,0,88,0.2,0,1 +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,4,0.059,0,88,0.2,0,1 +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,9.6,77777,9,999999999,4,0.059,0,88,0.2,0,1 +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,4,0.059,0,88,0.2,0,1 +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,11603,0,3648,1146,190,4.1,2,2,64,77777,9,999999999,4,0.059,0,88,0.2,0,1 +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,-10.6,40,83600,427,1399,243,279,787,38,29760,71404,5998,949,170,3.1,1,1,80,77777,9,999999999,4,0.059,0,88,0.2,0,1 +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,50491,91901,7030,1223,160,2.1,0,0,112,77777,9,999999999,4,0.059,0,88,0.2,0,1 +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,64702,98463,8011,1471,140,2.6,0,0,112,77777,9,999999999,4,0.059,0,88,0.2,0,1 +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,72815,101227,8458,1634,130,2.1,0,0,112,77777,9,999999999,4,0.059,0,88,0.2,0,1 +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,18,83500,882,1399,261,682,988,58,72256,98699,8437,1653,60,2.1,1,1,112,77777,9,999999999,4,0.059,0,88,0.2,0,1 +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,72815,56530,15533,6125,50,4.1,7,2,112,77777,9,999999999,4,0.059,0,88,0.2,0,1 +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,60324,50861,10224,3972,90,4.1,5,3,112,77777,9,999999999,4,0.059,0,88,0.2,0,1 +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,24388,17459,12121,4235,70,5.2,7,7,112,3658,9,999999999,4,0.059,0,88,0.2,0,1 +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,13508,7883,8444,2543,70,5.7,8,5,96,3658,9,999999999,4,0.059,0,88,0.2,0,1 +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,1827,0,1617,407,70,6.2,7,5,96,6706,9,999999999,4,0.059,0,88,0.2,0,1 +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,3353,9,999999999,4,0.059,0,88,0.2,0,1 +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,2896,9,999999999,4,0.059,0,88,0.2,0,1 +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,2896,9,999999999,4,0.059,0,88,0.2,0,1 +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,77777,9,999999999,4,0.059,0,88,0.2,0,1 +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,77777,9,999999999,4,0.059,0,88,0.2,0,1 +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,77777,9,999999999,4,0.059,0,88,0.2,0,1 +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,-6.1,60,83500,0,0,243,0,0,0,0,0,0,0,180,4.1,0,0,32,77777,9,999999999,4,0.06,0,88,0.2,0,1 +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,77777,9,999999999,4,0.06,0,88,0.2,0,1 +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,77777,9,999999999,4,0.06,0,88,0.2,0,1 +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,77777,9,999999999,4,0.06,0,88,0.2,0,1 +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,2,2,32,77777,9,999999999,4,0.06,0,88,0.2,0,1 +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,-6.7,86,83500,0,0,225,0,0,0,0,0,0,0,0,0,0,0,32,77777,9,999999999,4,0.06,0,88,0.2,0,1 +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,77777,9,999999999,4,0.06,0,88,0.2,0,1 +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,9283,0,3972,1240,310,3.1,3,3,16,77777,9,999999999,4,0.06,0,88,0.2,0,1 +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,6189,0,6237,2583,320,2.6,10,10,4,122,9,999999999,4,0.06,0,88,0.2,0,1 +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,9846,0,9928,4341,320,2.6,10,10,4.8,152,9,999999999,4,0.06,0,88,0.2,0,1 +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,15103,0,15235,6691,360,3.6,10,10,8,305,9,999999999,4,0.06,0,88,0.2,0,1 +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,-4.4,69,83400,873,1398,282,197,0,197,20381,0,20563,8849,320,4.1,10,10,9.6,427,9,999999999,4,0.06,0,88,0.2,0,1 +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,63,83300,888,1398,284,201,0,201,20822,0,21009,9062,320,3.6,10,10,11.2,549,9,999999999,4,0.06,0,88,0.2,0,1 +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,19282,0,19452,8295,340,4.6,10,10,11.2,488,9,999999999,4,0.06,0,88,0.2,0,1 +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,-4.4,69,83200,707,1398,282,156,0,156,15925,0,16061,6655,340,5.2,10,10,9.6,488,9,999999999,4,0.06,0,88,0.2,0,1 +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,-4.4,69,83200,524,1398,282,110,0,110,11063,0,11151,4410,350,6.2,10,10,12.8,518,9,999999999,4,0.06,0,88,0.2,0,1 +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,5427,0,5467,2042,340,6.2,10,10,6.4,457,9,999999999,5,0.06,0,88,0.2,0,1 +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,482,0,486,184,360,6.2,10,10,2.4,122,9,999999999,5,0.06,0,88,0.2,0,1 +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,5,0.06,0,88,0.2,0,1 +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,183,9,999999999,5,0.06,0,88,0.2,0,1 +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,5,0.06,0,88,0.2,0,1 +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,5,0.06,0,88,0.2,0,1 +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,5,0.06,0,88,0.2,0,1 +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,-6.1,91,83300,0,0,260,0,0,0,0,0,0,0,340,4.1,10,10,3.2,244,9,999999999,5,0.06,0,88,0.2,0,1 +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,5,0.06,0,88,0.2,0,1 +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,5,0.06,0,88,0.2,0,1 +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,1676,9,999999999,5,0.06,0,88,0.2,0,1 +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,5,0.06,0,88,0.2,0,1 +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,5,0.06,0,88,0.2,0,1 +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,5,0.06,0,88,0.2,0,1 +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,5,0.06,0,88,0.2,0,1 +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,2252,0,2268,889,360,2.6,10,10,1.6,274,9,999999999,5,0.06,0,88,0.2,0,1 +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,7596,0,7654,3070,360,3.1,10,10,3.2,762,9,999999999,5,0.06,0,88,0.2,0,1 +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,-6.7,86,83200,644,1398,260,106,0,106,10772,0,10861,4694,360,2.6,10,10,4.8,274,9,999999999,5,0.06,0,88,0.2,0,1 +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,14297,0,14422,6417,360,3.6,10,10,3.2,244,9,999999999,5,0.06,0,88,0.2,0,1 +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,16262,0,16408,7415,360,3.1,10,10,11.2,366,9,999999999,5,0.06,0,88,0.2,0,1 +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,19910,0,20090,8780,340,2.1,10,10,11.2,1829,9,999999999,4,0.06,0,88,0.2,0,1 +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,18272,0,18434,7982,330,2.1,10,10,11.2,518,9,999999999,4,0.06,0,88,0.2,0,1 +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,14820,0,14946,6318,350,2.6,10,10,11.2,549,9,999999999,4,0.06,0,88,0.2,0,1 +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,9868,0,9947,4054,300,2.1,10,10,12.8,732,9,999999999,4,0.06,0,88,0.2,0,1 +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,56,83200,300,1398,263,45,0,45,4447,0,4480,1753,360,1,10,10,16,732,9,999999999,4,0.06,0,88,0.2,0,1 +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,870,0,875,305,40,2.1,10,10,11.2,762,9,999999999,4,0.06,0,88,0.2,0,1 +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,853,9,999999999,4,0.06,0,88,0.2,0,1 +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,-7.2,83,83300,0,0,259,0,0,0,0,0,0,0,120,1.5,10,10,11.2,853,9,999999999,4,0.06,0,88,0.2,0,1 +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,4,0.06,0,88,0.2,0,1 +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,975,9,999999999,4,0.06,0,88,0.2,0,1 +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,10,10,16,914,9,999999999,4,0.06,0,88,0.2,0,1 +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,3,0.06,0,88,0.2,0,1 +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,457,9,999999999,3,0.061,0,88,0.2,0,1 +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,77777,9,999999999,3,0.061,0,88,0.2,0,1 +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,77777,9,999999999,3,0.061,0,88,0.2,0,1 +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,-12.8,78,83300,0,0,204,0,0,0,0,0,0,0,210,1,0,0,40,77777,9,999999999,3,0.061,0,88,0.2,0,1 +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,77777,9,999999999,3,0.061,0,88,0.2,0,1 +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,1,1,64,77777,9,999999999,3,0.061,0,88,0.2,0,1 +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,77777,9,999999999,3,0.061,0,88,0.2,0,1 +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,10247,2318,4629,1428,290,5.2,1,0,96,77777,9,999999999,3,0.061,0,88,0.2,0,1 +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,32443,31488,8308,2922,230,2.6,1,0,96,77777,9,999999999,3,0.061,0,88,0.2,0,1 +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,55241,49270,10914,4146,230,4.1,0,0,96,77777,9,999999999,3,0.061,0,88,0.2,0,1 +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,25,83400,801,1397,239,601,861,107,72868,57453,13016,5159,290,5.7,0,0,120,77777,9,999999999,3,0.061,0,88,0.2,0,1 +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,83102,60579,14103,5705,310,6.7,0,0,112,77777,9,999999999,3,0.061,0,88,0.2,0,1 +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,84954,61140,14249,5782,290,6.7,0,0,112,77777,9,999999999,3,0.061,0,88,0.2,0,1 +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,77908,59043,13558,5432,240,6.2,0,0,112,77777,9,999999999,3,0.061,0,88,0.2,0,1 +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,60336,51680,14276,5446,220,2.1,1,1,112,77777,9,999999999,3,0.061,0,88,0.2,0,1 +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,18,83000,536,1397,272,315,499,123,35934,32845,14086,4843,260,3.1,6,5,112,6706,9,999999999,4,0.061,0,88,0.2,0,1 +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,13177,5816,10031,2924,150,2.6,6,5,112,6706,9,999999999,4,0.061,0,88,0.2,0,1 +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,1774,0,1444,409,290,4.6,5,4,112,77777,9,999999999,4,0.061,0,88,0.2,0,1 +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,77777,9,999999999,4,0.061,0,88,0.2,0,1 +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,-12.2,35,82900,0,0,254,0,0,0,0,0,0,0,350,3.6,8,6,48,4877,9,999999999,4,0.061,0,88,0.2,0,1 +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,4877,9,999999999,4,0.061,0,88,0.2,0,1 +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,-12.2,35,82800,0,0,254,0,0,0,0,0,0,0,200,1.5,8,6,48,4877,9,999999999,4,0.061,0,88,0.2,0,1 +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,4877,9,999999999,4,0.061,0,88,0.2,0,1 +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,4877,9,999999999,4,0.061,0,88,0.2,0,1 +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,6096,9,999999999,4,0.062,0,88,0.2,0,1 +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,4267,9,999999999,4,0.062,0,88,0.2,0,1 +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,4572,9,999999999,4,0.062,0,88,0.2,0,1 +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,4572,9,999999999,4,0.062,0,88,0.2,0,1 +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,4267,9,999999999,4,0.062,0,88,0.2,0,1 +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,4267,9,999999999,4,0.062,0,88,0.2,0,1 +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,6096,9,999999999,4,0.062,0,88,0.2,0,1 +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,13633,1801,3903,1251,260,2.1,2,2,96,77777,9,999999999,4,0.062,0,88,0.2,0,1 +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,31541,30104,9072,3172,300,4.1,4,3,96,77777,9,999999999,4,0.062,0,88,0.2,0,1 +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,-8.3,25,82400,658,1396,287,389,521,144,44909,37044,16693,6042,350,2.6,7,2,112,77777,9,999999999,4,0.062,0,88,0.2,0,1 +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,52380,36863,12681,5049,350,6.2,8,4,120,77777,9,999999999,4,0.062,0,88,0.2,0,1 +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,78118,55842,16702,6699,310,1.5,7,2,120,77777,9,999999999,5,0.062,0,88,0.2,0,1 +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,81014,58323,20193,7984,310,9.3,8,3,112,77777,9,999999999,5,0.062,0,88,0.2,0,1 +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,69012,50401,16811,6647,270,12.4,7,4,112,77777,9,999999999,5,0.062,0,88,0.2,0,1 +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,46315,33151,20551,7441,260,15.5,8,4,112,77777,9,999999999,5,0.062,0,88,0.2,0,1 +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,40447,37323,9579,3502,290,8.2,7,2,112,77777,9,999999999,5,0.062,0,88,0.2,0,1 +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,15490,10182,9328,2817,290,12.9,8,5,112,6706,9,999999999,5,0.062,0,88,0.2,0,1 +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,2546,0,1553,440,290,8.2,7,2,96,77777,9,999999999,5,0.062,0,88,0.2,0,1 +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,77777,9,999999999,5,0.062,0,88,0.2,0,1 +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,7620,9,999999999,5,0.062,0,88,0.2,0,1 +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,77777,9,999999999,5,0.062,0,88,0.2,0,1 +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,732,9,999999999,5,0.062,0,88,0.2,0,1 +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,-13.9,70,83500,0,0,234,0,0,0,0,0,0,0,360,3.1,10,10,8,884,9,999999999,5,0.062,0,88,0.2,0,1 +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,5,0.062,0,88,0.2,0,1 +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,-13.9,70,83600,0,0,210,0,0,0,0,0,0,0,360,3.1,2,2,11.2,77777,9,999999999,5,0.062,0,88,0.2,0,1 +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,-13.9,70,83500,0,0,212,0,0,0,0,0,0,0,110,2.6,3,3,16,77777,9,999999999,5,0.062,0,88,0.2,0,1 +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,-14.4,67,83500,0,0,207,0,0,0,0,0,0,0,110,3.6,1,1,24,77777,9,999999999,5,0.062,0,88,0.2,0,1 +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,67,83500,0,0,204,0,0,0,0,0,0,0,160,3.1,1,1,32,77777,9,999999999,6,0.062,0,88,0.2,0,1 +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,77777,9,999999999,6,0.062,0,88,0.2,0,1 +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,70,83700,0,0,203,0,0,0,0,0,0,0,90,4.1,1,1,40,77777,9,999999999,6,0.062,0,88,0.2,0,1 +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,67,83700,15,477,204,5,80,2,0,0,0,0,80,3.6,2,1,40,77777,9,999999999,6,0.062,0,88,0.2,0,1 +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,-14.4,67,83900,216,1396,213,70,270,28,8174,589,3274,1076,90,4.1,8,4,80,7620,9,999999999,6,0.062,0,88,0.2,0,1 +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,28921,26348,13218,4321,110,2.1,9,6,24,610,9,999999999,6,0.062,0,88,0.2,0,1 +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,42611,32044,20549,7136,100,2.6,9,4,48,77777,9,999999999,6,0.062,0,88,0.2,0,1 +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,43739,22689,25615,9304,80,3.6,7,6,48,762,9,999999999,6,0.062,0,88,0.2,0,1 +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,54967,29447,29947,10977,140,3.1,8,4,40,77777,9,999999999,6,0.062,0,88,0.2,0,1 +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,85553,63255,23088,8982,310,2.1,10,4,40,77777,9,999999999,6,0.062,0,88,0.2,0,1 +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,78379,60647,21571,8285,140,3.1,10,5,40,77777,9,999999999,6,0.062,0,88,0.2,0,1 +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,49734,36999,21646,7775,80,2.1,10,5,32,77777,9,999999999,6,0.062,0,88,0.2,0,1 +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,43418,42967,15481,5263,80,2.1,10,5,32,77777,9,999999999,6,0.062,0,88,0.2,0,1 +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,21298,18973,7800,2489,60,4.6,9,2,32,77777,9,999999999,6,0.062,0,88,0.2,0,1 +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,51,83700,70,1035,242,27,99,21,2906,0,2267,577,80,5.2,8,3,32,77777,9,999999999,6,0.062,0,88,0.2,0,1 +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,77777,9,999999999,6,0.062,0,88,0.2,0,1 +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,61,83800,0,0,234,0,0,0,0,0,0,0,330,3.6,8,3,32,77777,9,999999999,6,0.062,0,88,0.2,0,1 +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,-10.6,61,83800,0,0,229,0,0,0,0,0,0,0,340,3.1,4,2,32,77777,9,999999999,6,0.062,0,88,0.2,0,1 +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,71,83800,0,0,223,0,0,0,0,0,0,0,360,2.6,1,1,32,77777,9,999999999,6,0.062,0,88,0.2,0,1 +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,77777,9,999999999,6,0.062,0,88,0.2,0,1 +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,77777,9,999999999,6,0.062,0,88,0.2,0,1 +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,75,83700,0,0,217,0,0,0,0,0,0,0,190,1.5,1,0,32,77777,9,999999999,6,0.063,0,88,0.2,0,1 +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,71,83700,0,0,219,0,0,0,0,0,0,0,40,1.5,0,0,32,77777,9,999999999,7,0.063,0,88,0.2,0,1 +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,75,83600,0,0,217,0,0,0,0,0,0,0,0,0,0,0,40,77777,9,999999999,7,0.063,0,88,0.2,0,1 +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,2,1,40,77777,9,999999999,7,0.063,0,88,0.2,0,1 +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,77777,9,999999999,7,0.063,0,88,0.2,0,1 +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,77777,9,999999999,7,0.063,0,88,0.2,0,1 +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,77777,9,999999999,7,0.063,0,88,0.2,0,1 +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,10356,4094,7331,2049,80,1.5,6,4,96,7925,9,999999999,7,0.063,0,88,0.2,0,1 +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,30682,28582,10492,3626,110,1,9,3,120,77777,9,999999999,7,0.063,0,88,0.2,0,1 +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,54463,47419,14460,5396,0,0,7,2,112,77777,9,999999999,7,0.063,0,88,0.2,0,1 +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,62363,45288,22829,8547,360,3.1,9,3,96,77777,9,999999999,7,0.063,0,88,0.2,0,1 +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,79174,55745,19400,7710,10,2.1,9,2,96,77777,9,999999999,7,0.063,0,88,0.2,0,1 +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,80323,55611,18111,7277,60,3.1,9,5,96,6706,9,999999999,7,0.063,0,88,0.2,0,1 +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,59407,40018,18171,7163,50,3.6,9,5,96,6706,9,999999999,7,0.063,0,88,0.2,0,1 +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,38845,26407,12186,4756,80,5.2,9,5,80,6706,9,999999999,7,0.063,0,88,0.2,0,1 +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,36415,30415,17046,5685,80,5.7,9,4,80,77777,9,999999999,7,0.063,0,88,0.2,0,1 +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,18083,12134,12290,3383,60,5.2,9,6,80,6706,9,999999999,7,0.063,0,88,0.2,0,1 +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,2222,0,1670,482,360,4.6,9,5,80,6706,9,999999999,7,0.063,0,88,0.2,0,1 +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,6706,9,999999999,7,0.063,0,88,0.2,0,1 +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,6706,9,999999999,7,0.063,0,88,0.2,0,1 +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,9,4,48,77777,9,999999999,7,0.063,0,88,0.2,0,1 +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,77777,9,999999999,7,0.063,0,88,0.2,0,1 +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,10,5,48,77777,9,999999999,7,0.063,0,88,0.2,0,1 +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,-2.8,79,83400,0,0,266,0,0,0,0,0,0,0,0,0,10,7,32,6096,9,999999999,7,0.063,0,88,0.2,0,1 +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,10,10,32,6096,9,999999999,7,0.064,0,88,0.2,0,1 +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,6706,9,999999999,7,0.064,0,88,0.2,0,1 +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,-2.2,83,83200,0,0,277,0,0,0,0,0,0,0,160,2.1,10,9,32,6706,9,999999999,7,0.064,0,88,0.2,0,1 +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,-2.2,83,83200,0,0,271,0,0,0,0,0,0,0,210,2.1,10,8,40,6706,9,999999999,7,0.064,0,88,0.2,0,1 +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,-2.2,83,83200,0,0,266,0,0,0,0,0,0,0,190,2.1,10,7,48,7620,9,999999999,7,0.064,0,88,0.2,0,1 +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,4267,9,999999999,7,0.064,0,88,0.2,0,1 +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,4267,9,999999999,7,0.064,0,88,0.2,0,1 +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,9030,462,8743,2289,180,3.1,9,9,112,4267,9,999999999,7,0.064,0,88,0.2,0,1 +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,-2.8,55,83200,474,1394,286,142,95,109,16098,5551,12403,4177,170,1,9,7,128,7315,9,999999999,7,0.064,0,88,0.2,0,1 +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,20739,6258,15557,5770,140,2.6,9,8,120,4267,9,999999999,7,0.064,0,88,0.2,0,1 +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,44304,12263,36041,11791,170,4.1,10,7,112,4267,9,999999999,7,0.064,0,88,0.2,0,1 +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,70316,47032,25902,9883,130,2.6,9,6,112,7315,9,999999999,7,0.064,0,88,0.2,0,1 +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,-4.4,25,83000,926,1394,321,573,502,239,66532,41375,27897,10554,110,4.1,10,5,112,77777,9,999999999,7,0.064,0,88,0.2,0,1 +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,69143,49491,24758,9337,100,1.5,10,5,112,77777,9,999999999,7,0.064,0,88,0.2,0,1 +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,-6.7,20,82800,743,1394,325,381,181,284,42304,16966,31717,10139,20,1.5,10,7,112,2896,9,999999999,7,0.064,0,88,0.2,0,1 +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,26,82800,558,1394,324,208,129,156,23366,9288,17602,5844,320,5.7,10,8,112,2896,9,999999999,7,0.064,0,88,0.2,0,1 +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,12519,6801,7190,2360,20,4.1,10,7,112,2743,9,999999999,7,0.064,0,88,0.2,0,1 +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,2489,0,2388,628,50,3.1,10,9,112,2591,9,999999999,7,0.064,0,88,0.2,0,1 +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,2591,9,999999999,7,0.064,0,88,0.2,0,1 +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,7620,9,999999999,7,0.064,0,88,0.2,0,1 +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,2286,9,999999999,7,0.064,0,88,0.2,0,1 +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,1829,9,999999999,7,0.064,0,88,0.2,0,1 +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,67,83200,0,0,311,0,0,0,0,0,0,0,60,3.1,10,10,32,1829,9,999999999,7,0.064,0,88,0.2,0,1 +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,975,9,999999999,7,0.064,0,88,0.2,0,1 +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,9,9,32,1341,9,999999999,7,0.064,0,88,0.2,0,1 +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,76,83300,0,0,303,0,0,0,0,0,0,0,0,0,10,10,32,610,9,999999999,7,0.064,0,88,0.2,0,1 +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,76,83300,0,0,303,0,0,0,0,0,0,0,10,2.1,10,10,32,884,9,999999999,7,0.064,0,88,0.2,0,1 +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,85,83300,0,0,277,0,0,0,0,0,0,0,0,0,7,7,32,1676,9,999999999,7,0.064,0,88,0.2,0,1 +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,92,83300,0,0,263,0,0,0,0,0,0,0,170,1.5,8,3,32,77777,9,999999999,7,0.064,0,88,0.2,0,1 +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,92,83400,0,0,291,0,0,0,0,0,0,0,130,2.1,10,10,32,671,9,999999999,7,0.064,0,88,0.2,0,1 +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,88,83400,22,592,286,3,1,3,0,0,0,0,190,2.1,10,9,12.8,2438,9,999999999,7,0.064,0,88,0.2,0,1 +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,79,83500,236,1394,301,37,0,37,3629,0,3655,1388,210,2.6,10,10,12.8,1402,9,999999999,8,0.064,0,88,0.2,0,1 +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,67,83500,480,1394,296,177,207,105,20147,11794,11995,4094,310,1.5,8,8,11.2,1280,9,999999999,8,0.064,0,88,0.2,0,1 +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,32575,16427,20483,7240,350,2.6,7,7,16,1829,9,999999999,8,0.064,0,88,0.2,0,1 +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,-1.1,45,83500,834,1394,321,297,8,292,33407,728,33037,11276,30,4.1,9,9,32,1676,9,999999999,8,0.064,0,88,0.2,0,1 +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,56,83500,919,1394,303,474,179,356,53192,17307,40205,13535,60,3.1,7,7,32,1372,9,999999999,8,0.064,0,88,0.2,0,1 +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,56,83400,932,1394,308,455,175,338,51389,16430,38413,13305,60,5.7,8,8,32,1372,9,999999999,8,0.064,0,88,0.2,0,1 +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,56,83400,874,1394,303,545,581,180,64116,43119,21273,8267,50,5.2,7,7,24,1372,9,999999999,8,0.064,0,88,0.2,0,1 +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,70,83500,748,1394,308,160,0,160,16373,0,16514,6992,30,7.2,10,10,9.6,732,9,999999999,8,0.064,0,88,0.2,0,1 +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,7964,0,8029,3484,350,7.7,10,10,0.6,61,9,999999999,8,0.064,0,88,0.2,0,1 +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,3957,0,3986,1638,360,5.7,10,10,1.6,61,9,999999999,8,0.064,0,88,0.2,0,1 +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,774,0,779,298,10,4.1,10,10,1.4,61,9,999999999,8,0.064,0,88,0.2,0,1 +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,96,84000,0,0,289,0,0,0,0,0,0,0,320,3.1,10,10,4,61,9,999999999,8,0.064,0,88,0.2,0,1 +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,96,84000,0,0,289,0,0,0,0,0,0,0,310,2.6,10,10,4,183,9,999999999,8,0.064,0,88,0.2,0,1 +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,8,0.064,0,88,0.2,0,1 +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,8,0.064,0,88,0.2,0,1 +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,8,0.064,0,88,0.2,0,1 +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,77777,9,999999999,8,0.064,0,88,0.2,0,1 +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,-4.1,62,81500,0,0,285,0,0,0,0,0,0,0,210,4.7,9,7,32,7620,9,999999999,6,0.054,0,88,0.2,0,1 +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,7620,9,999999999,6,0.054,0,88,0.2,0,1 +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,77777,9,999999999,6,0.054,0,88,0.2,0,1 +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,7620,9,999999999,6,0.054,0,88,0.2,0,1 +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,7620,9,999999999,6,0.054,0,88,0.2,0,1 +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,7620,9,999999999,7,0.054,0,88,0.2,0,1 +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,5182,9,999999999,7,0.054,0,88,0.2,0,1 +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,7375,25,7290,2132,210,4.6,9,8,96,5182,9,999999999,7,0.054,0,88,0.2,0,1 +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,23492,9366,18752,5613,190,4.6,9,7,104,4572,9,999999999,7,0.054,0,88,0.2,0,1 +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,47873,38486,14083,5325,210,4.1,8,6,104,4572,9,999999999,7,0.054,0,88,0.2,0,1 +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,52875,32835,24651,9181,170,3.1,7,6,104,4572,9,999999999,7,0.054,0,88,0.2,0,1 +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,-7.2,19,81700,923,1393,313,686,792,161,82173,57723,19368,7744,160,2.6,6,3,96,77777,9,999999999,7,0.054,0,88,0.2,0,1 +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,72430,48109,22188,8768,190,2.1,7,4,96,77777,9,999999999,7,0.054,0,88,0.2,0,1 +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,62449,26971,45064,13825,10,4.6,10,9,96,2286,9,999999999,7,0.054,0,88,0.2,0,1 +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,26437,2883,24394,8645,360,3.6,10,9,96,2591,9,999999999,7,0.054,0,88,0.2,0,1 +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,15257,0,15380,5790,20,4.1,10,10,96,3353,9,999999999,7,0.054,0,88,0.2,0,1 +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,6441,0,6489,2449,10,3.6,10,10,96,2286,9,999999999,7,0.054,0,88,0.2,0,1 +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,1163,0,1171,425,20,4.1,10,10,48,2438,9,999999999,7,0.054,0,88,0.2,0,1 +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,7,0.054,0,88,0.2,0,1 +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,7,0.054,0,88,0.2,0,1 +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,610,9,999999999,8,0.054,0,88,0.2,0,1 +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,549,9,999999999,8,0.054,0,88,0.2,0,1 +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,518,9,999999999,8,0.054,0,88,0.2,0,1 +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,610,9,999999999,8,0.054,0,88,0.2,0,1 +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,8,0.055,0,88,0.2,0,1 +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,-7.8,79,82400,0,0,259,0,0,0,0,0,0,0,130,3.6,10,10,16,427,9,999999999,8,0.055,0,88,0.2,0,1 +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,-7.8,79,82300,0,0,259,0,0,0,0,0,0,0,110,3.6,10,10,16,427,9,999999999,8,0.055,0,88,0.2,0,1 +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,-7.8,79,82400,0,0,259,0,0,0,0,0,0,0,100,3.6,10,10,11.2,366,9,999999999,8,0.055,0,88,0.2,0,1 +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,-7.8,79,82400,0,0,259,0,0,0,0,0,0,0,80,2.1,10,10,9.6,305,9,999999999,8,0.055,0,88,0.2,0,1 +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,-7.8,79,82500,0,0,259,0,0,0,0,0,0,0,60,2.1,10,10,9.6,305,9,999999999,8,0.055,0,88,0.2,0,1 +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,-7.8,79,82500,26,638,259,2,0,2,0,0,0,0,60,2.6,10,10,9.6,305,9,999999999,8,0.055,0,88,0.2,0,1 +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,10434,1445,9722,2547,60,1.5,10,9,8,732,9,999999999,8,0.055,0,88,0.2,0,1 +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,9940,0,10018,3970,80,1.5,10,10,11.2,732,9,999999999,8,0.055,0,88,0.2,0,1 +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,19640,6612,13773,5237,0,0,10,9,11.2,732,9,999999999,8,0.055,0,88,0.2,0,1 +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,61,82700,846,1392,272,349,119,276,39564,10624,31467,11033,230,2.1,10,8,11.2,2438,9,999999999,8,0.055,0,88,0.2,0,1 +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,58875,34696,23474,9185,0,0,10,6,11.2,7620,9,999999999,8,0.055,0,88,0.2,0,1 +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,-4.4,48,82700,943,1392,276,528,433,234,61602,35247,27444,10509,40,2.1,9,4,11.2,77777,9,999999999,7,0.055,0,88,0.2,0,1 +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,55146,32730,24605,9379,130,1.5,10,5,11.2,77777,9,999999999,7,0.055,0,88,0.2,0,1 +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,42652,24730,23558,8463,320,2.1,10,8,9.6,6096,9,999999999,7,0.055,0,88,0.2,0,1 +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,43,82900,573,1392,299,230,67,202,25390,5478,22414,6951,350,4.1,10,9,12.8,6096,9,999999999,7,0.055,0,88,0.2,0,1 +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,-5,46,82900,341,1392,288,93,69,76,10482,2798,8594,2768,10,5.2,9,8,24,6096,9,999999999,7,0.055,0,88,0.2,0,1 +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,54,83000,88,1149,262,28,132,18,3126,0,2014,590,40,4.1,7,2,32,77777,9,999999999,7,0.055,0,88,0.2,0,1 +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,61,83100,0,0,261,0,0,0,0,0,0,0,130,2.6,9,4,24,77777,9,999999999,7,0.055,0,88,0.2,0,1 +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,77777,9,999999999,7,0.055,0,88,0.2,0,1 +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,77777,9,999999999,7,0.055,0,88,0.2,0,1 +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,77777,9,999999999,7,0.055,0,88,0.2,0,1 +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,77777,9,999999999,7,0.055,0,88,0.2,0,1 +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,77777,9,999999999,7,0.055,0,88,0.2,0,1 +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,77777,9,999999999,6,0.056,0,88,0.2,0,1 +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,77777,9,999999999,6,0.056,0,88,0.2,0,1 +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,77777,9,999999999,6,0.056,0,88,0.2,0,1 +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,-8.3,49,83300,0,0,241,0,0,0,0,0,0,0,200,1.5,0,0,32,77777,9,999999999,6,0.056,0,88,0.2,0,1 +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,77777,9,999999999,6,0.056,0,88,0.2,0,1 +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,77777,9,999999999,6,0.056,0,88,0.2,0,1 +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,0,0,0,0,180,1,0,0,112,77777,9,999999999,6,0.056,0,88,0.2,0,1 +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,14460,8205,5365,1724,320,7.2,0,0,112,77777,9,999999999,6,0.056,0,88,0.2,0,1 +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,20,83500,499,1392,279,322,691,75,37900,36491,8852,3195,320,8.2,0,0,112,77777,9,999999999,6,0.056,0,88,0.2,0,1 +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,58263,48791,11471,4440,340,3.1,1,1,104,77777,9,999999999,6,0.056,0,88,0.2,0,1 +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,78298,58112,13583,5464,310,4.1,1,0,104,77777,9,999999999,6,0.056,0,88,0.2,0,1 +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,88595,60883,14675,6007,290,5.2,0,0,104,77777,9,999999999,6,0.056,0,88,0.2,0,1 +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,90112,61049,14702,6036,300,10.3,1,1,112,77777,9,999999999,6,0.056,0,88,0.2,0,1 +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,56181,34496,23571,9070,330,7.2,8,4,112,7620,9,999999999,6,0.056,0,88,0.2,0,1 +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,45887,32465,15830,6101,290,3.1,6,4,112,7620,9,999999999,6,0.056,0,88,0.2,0,1 +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,42057,38025,17601,5962,130,3.1,6,5,112,7620,9,999999999,6,0.056,0,88,0.2,0,1 +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,12752,3841,10686,3263,280,6.7,7,6,96,7315,9,999999999,6,0.056,0,88,0.2,0,1 +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,-13.3,11,83200,92,1194,308,33,26,31,3540,0,3337,836,280,10.3,4,4,96,77777,9,999999999,6,0.056,0,88,0.2,0,1 +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,77777,9,999999999,6,0.056,0,88,0.2,0,1 +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,77777,9,999999999,6,0.056,0,88,0.2,0,1 +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,5486,9,999999999,5,0.056,0,88,0.2,0,1 +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,5486,9,999999999,5,0.056,0,88,0.2,0,1 +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,77777,9,999999999,5,0.056,0,88,0.2,0,1 +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,5486,9,999999999,5,0.056,0,88,0.2,0,1 +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,77777,9,999999999,5,0.056,0,88,0.2,0,1 +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,-6.7,28,83200,0,0,280,0,0,0,0,0,0,0,290,5.2,0,0,32,77777,9,999999999,5,0.056,0,88,0.2,0,1 +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,77777,9,999999999,5,0.056,0,88,0.2,0,1 +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,-8.3,25,83200,0,0,278,0,0,0,0,0,0,0,270,3.6,0,0,32,77777,9,999999999,5,0.056,0,88,0.2,0,1 +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,77777,9,999999999,5,0.056,0,88,0.2,0,1 +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,77777,9,999999999,5,0.056,0,88,0.2,0,1 +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,0,0,0,0,240,8.8,1,0,112,77777,9,999999999,6,0.056,0,88,0.2,0,1 +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,15045,47586,4839,670,120,1.5,4,1,104,77777,9,999999999,6,0.056,0,88,0.2,0,1 +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,31951,28210,13469,4586,210,6.7,8,3,112,77777,9,999999999,6,0.056,0,88,0.2,0,1 +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,59297,50302,14254,5433,240,6.2,6,2,112,77777,9,999999999,6,0.056,0,88,0.2,0,1 +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,14,83000,859,1391,322,276,313,83,34426,19716,10381,4224,290,2.6,8,5,96,6096,9,999999999,6,0.056,0,88,0.2,0,1 +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,63226,37603,26597,10243,220,2.1,10,6,96,6096,9,999999999,6,0.056,0,88,0.2,0,1 +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,70128,43651,27302,10517,270,2.1,10,6,96,6096,9,999999999,7,0.056,0,88,0.2,0,1 +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,45728,24742,20401,8040,270,4.1,10,6,96,6096,9,999999999,7,0.056,0,88,0.2,0,1 +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,45416,18160,33847,10827,310,5.2,10,9,96,6096,9,999999999,7,0.056,0,88,0.2,0,1 +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,26282,10381,20002,6558,340,2.1,10,9,96,6096,9,999999999,7,0.056,0,88,0.2,0,1 +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,17226,7138,13930,3847,230,3.6,10,9,80,6096,9,999999999,7,0.056,0,88,0.2,0,1 +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,3571,0,3148,831,250,7.2,10,9,48,6096,9,999999999,7,0.056,0,88,0.2,0,1 +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,6096,9,999999999,8,0.056,0,88,0.2,0,1 +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,-5,24,82400,0,0,349,0,0,0,0,0,0,0,220,5.2,10,10,32,6096,9,999999999,8,0.056,0,88,0.2,0,1 +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,-4.4,25,82400,0,0,349,0,0,0,0,0,0,0,220,8.8,10,10,48,4267,9,999999999,8,0.056,0,88,0.2,0,1 +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,4267,9,999999999,8,0.056,0,88,0.2,0,1 +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,4267,9,999999999,8,0.056,0,88,0.2,0,1 +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,4267,9,999999999,9,0.056,0,88,0.2,0,1 +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,3962,9,999999999,9,0.057,0,88,0.2,0,1 +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,3962,9,999999999,9,0.057,0,88,0.2,0,1 +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,7620,9,999999999,9,0.057,0,88,0.2,0,1 +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,7620,9,999999999,9,0.057,0,88,0.2,0,1 +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,3962,9,999999999,9,0.057,0,88,0.2,0,1 +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,3962,9,999999999,9,0.057,0,88,0.2,0,1 +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,43,81900,36,753,341,4,0,4,0,0,0,0,210,7.2,10,10,112,2438,9,999999999,9,0.057,0,88,0.2,0,1 +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,4916,0,4952,1843,230,6.7,10,10,32,2591,9,999999999,9,0.057,0,88,0.2,0.3,1 +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,10851,0,10937,4325,260,4.1,10,10,32,2438,9,999999999,9,0.057,0,88,0.2,0,1 +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,18162,4787,13580,5228,60,5.7,10,9,64,1372,9,999999999,9,0.057,0,88,0.2,0,1 +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,25162,0,25390,10338,50,4.6,10,10,40,3048,9,999999999,9,0.057,0,88,0.2,0,1 +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,22341,0,22548,9896,50,5.7,10,10,48,2591,9,999999999,9,0.057,0,88,0.2,0,1 +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,46435,13698,34022,12518,70,3.1,10,9,48,2591,9,999999999,9,0.057,0,88,0.2,0,1 +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,21127,0,21320,9274,360,7.7,10,10,9.6,671,9,999999999,9,0.057,0,88,0.2,2.3,1 +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,96,82200,775,1390,289,144,0,144,14772,0,14901,6555,360,5.2,10,10,0.8,305,9,999999999,9,0.057,0,88,0.2,2.5,1 +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,12827,0,12933,5221,80,1.5,10,10,16,1128,9,999999999,9,0.057,0,88,0.2,0,1 +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,6935,0,6987,2657,160,3.1,10,10,16,1250,9,999999999,9,0.057,0,88,0.2,0,1 +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,1453,0,1463,533,210,2.6,10,10,16,1219,9,999999999,9,0.057,0,88,0.2,0,1 +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,3048,9,999999999,9,0.057,0,88,0.2,0,1 +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,3048,9,999999999,9,0.057,0,88,0.2,0,1 +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,3658,9,999999999,9,0.057,0,88,0.2,0,1 +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,3658,9,999999999,8,0.057,0,88,0.2,0,1 +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,1676,9,999999999,8,0.057,0,88,0.2,0,1 +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,2438,9,999999999,8,0.057,0,88,0.2,0,1 +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,10,10,32,2438,9,999999999,8,0.058,0,88,0.2,0,1 +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,2438,9,999999999,8,0.058,0,88,0.2,0,1 +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,2438,9,999999999,8,0.058,0,88,0.2,0,1 +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,7620,9,999999999,8,0.058,0,88,0.2,0,1 +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,-5.6,62,82600,0,0,254,0,0,0,0,0,0,0,70,1.5,6,3,32,77777,9,999999999,8,0.058,0,88,0.2,0,1 +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,6,6,32,3353,9,999999999,8,0.058,0,88,0.2,0,1 +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,72,82700,40,776,264,10,20,9,0,0,0,0,80,1.5,8,8,64,1829,9,999999999,8,0.058,0,88,0.2,0,1 +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,7413,584,6872,2157,90,5.2,10,9,96,1524,9,999999999,8,0.058,0,88,0.2,0,1 +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,19380,4651,16652,5436,120,3.1,10,9,16,1524,9,999999999,8,0.058,0,88,0.2,0,1 +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,83,83000,724,1389,263,267,88,221,30169,7345,25101,8655,220,4.1,10,9,80,1219,9,999999999,7,0.058,0,88,0.2,0,1 +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,65361,40454,34466,11945,230,3.6,8,5,96,1524,9,999999999,7,0.058,0,88,0.2,0,1 +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,70543,87081,10215,2032,220,4.6,1,1,96,77777,9,999999999,7,0.058,0,88,0.2,0,1 +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,79643,98997,9523,1976,320,3.1,1,1,96,77777,9,999999999,7,0.058,0,88,0.2,0,1 +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,32,82900,908,1389,258,672,930,64,71166,93265,9211,1807,200,2.1,1,1,96,77777,9,999999999,7,0.058,0,88,0.2,0,1 +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,-14.4,20,82900,781,1389,258,513,696,121,61471,47830,14551,5693,250,2.6,1,1,96,77777,9,999999999,7,0.058,0,88,0.2,0,1 +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,-10.6,28,82900,594,1389,265,390,743,72,46990,41971,8697,3284,170,2.6,2,2,96,77777,9,999999999,6,0.058,0,88,0.2,0,1 +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,23228,21035,8337,2759,160,5.7,3,3,96,77777,9,999999999,6,0.058,0,88,0.2,0,1 +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,4295,0,2871,812,170,5.7,5,4,80,77777,9,999999999,6,0.058,0,88,0.2,0,1 +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,7620,9,999999999,6,0.058,0,88,0.2,0,1 +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,-5.6,62,83100,0,0,260,0,0,0,0,0,0,0,130,1.5,7,6,32,7620,9,999999999,6,0.058,0,88,0.2,0,1 +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,7620,9,999999999,6,0.058,0,88,0.2,0,1 +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,7620,9,999999999,6,0.058,0,88,0.2,0,1 +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,7620,9,999999999,5,0.058,0,88,0.2,0,1 +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,1402,9,999999999,5,0.058,0,88,0.2,0,1 +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,76,83000,0,0,275,0,0,0,0,0,0,0,130,3.6,10,10,32,2743,9,999999999,5,0.059,0,88,0.2,0,1 +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,8,8,32,7620,9,999999999,5,0.059,0,88,0.2,0,1 +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,87,83000,0,0,248,0,0,0,0,0,0,0,290,3.6,7,6,32,7620,9,999999999,5,0.059,0,88,0.2,0,1 +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,2896,9,999999999,5,0.059,0,88,0.2,0,1 +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,7620,9,999999999,5,0.059,0,88,0.2,0,1 +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,7620,9,999999999,5,0.059,0,88,0.2,0,1 +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,1615,0,1296,328,40,2.1,7,5,64,7620,9,999999999,4,0.059,0,88,0.2,0,1 +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,91,83200,283,1389,253,113,155,81,12427,5702,8941,2631,120,1.5,8,8,24,1676,9,999999999,4,0.059,0,88,0.2,0,1 +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,36052,73468,6676,1103,60,3.1,2,0,48,77777,9,999999999,4,0.059,0,88,0.2,0,1 +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,60137,96773,7357,1352,0,0,0,0,48,77777,9,999999999,4,0.059,0,88,0.2,0,1 +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,69291,94493,8019,1606,290,2.1,1,1,96,77777,9,999999999,4,0.059,0,88,0.2,0,1 +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,77323,97294,8315,1791,290,3.6,1,1,96,77777,9,999999999,4,0.059,0,88,0.2,0,1 +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,83309,104014,8702,1875,190,3.1,0,0,96,77777,9,999999999,4,0.059,0,88,0.2,0,1 +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,-16.1,17,82900,914,1389,251,732,1024,58,77530,102530,8381,1711,250,5.2,0,0,96,77777,9,999999999,4,0.059,0,88,0.2,0,1 +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,-17.2,15,82900,786,1389,250,616,996,51,65429,98739,7573,1434,250,6.2,0,0,96,77777,9,999999999,4,0.059,0,88,0.2,0,1 +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,-18.3,14,82900,600,1389,249,447,938,42,47622,90302,6467,1144,300,6.2,0,0,96,77777,9,999999999,4,0.059,0,88,0.2,0,1 +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,26097,71409,4659,790,300,7.2,0,0,96,77777,9,999999999,4,0.059,0,88,0.2,0,1 +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,5534,27189,2320,314,300,7.2,0,0,80,77777,9,999999999,4,0.059,0,88,0.2,0,1 +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,25,83000,0,0,239,0,0,0,0,0,0,0,280,4.1,0,0,48,77777,9,999999999,3,0.059,0,88,0.2,0,1 +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,77777,9,999999999,3,0.059,0,88,0.2,0,1 +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,77777,9,999999999,3,0.059,0,88,0.2,0,1 +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,7620,9,999999999,3,0.059,0,88,0.2,0,1 +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,77777,9,999999999,3,0.059,0,88,0.2,0,1 +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,77777,9,999999999,3,0.059,0,88,0.2,0,1 +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,77777,9,999999999,3,0.059,0,88,0.2,0,1 +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,25,83100,0,0,246,0,0,0,0,0,0,0,300,6.2,4,2,32,77777,9,999999999,3,0.059,0,88,0.2,0,1 +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,26,83100,0,0,241,0,0,0,0,0,0,0,320,5.2,3,1,32,77777,9,999999999,3,0.059,0,88,0.2,0,1 +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,-14.4,29,83200,0,0,235,0,0,0,0,0,0,0,300,3.1,1,0,32,77777,9,999999999,3,0.059,0,88,0.2,0,1 +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,-15,27,83300,0,0,235,0,0,0,0,0,0,0,320,6.2,0,0,32,77777,9,999999999,3,0.059,0,88,0.2,0,1 +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,26,83300,0,0,237,0,0,0,0,0,0,0,310,8.2,0,0,48,77777,9,999999999,3,0.059,0,88,0.2,0,1 +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,25,83400,48,844,239,17,140,9,1894,0,1005,286,310,6.2,0,0,80,77777,9,999999999,3,0.059,0,88,0.2,0,1 +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,22,83400,290,1388,245,170,631,38,19949,13530,4467,1512,350,4.6,0,0,112,77777,9,999999999,3,0.059,0,88,0.2,0,1 +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,39888,78746,8708,1221,320,5.2,0,0,96,77777,9,999999999,3,0.059,0,88,0.2,0,1 +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,-15.6,18,83500,737,1388,252,564,925,72,59303,91008,10571,1620,290,5.2,0,0,96,77777,9,999999999,3,0.059,0,88,0.2,0,1 +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,73568,96734,11812,2000,320,5.7,0,0,96,77777,9,999999999,3,0.059,0,88,0.2,0,1 +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,80672,52476,15328,6306,300,4.1,2,2,96,77777,9,999999999,3,0.059,0,88,0.2,0,1 +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,72547,45516,17412,7129,300,11.3,4,4,96,77777,9,999999999,3,0.059,0,88,0.2,0,1 +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,85131,58765,13159,5392,300,12.4,2,2,80,77777,9,999999999,3,0.059,0,88,0.2,0,1 +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,63573,49750,16582,6433,300,11.3,3,3,80,77777,9,999999999,3,0.059,0,88,0.2,0,1 +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,49782,45976,10392,3893,310,7.7,2,2,96,77777,9,999999999,3,0.059,0,88,0.2,0,1 +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,21161,18111,6877,2360,290,10.3,3,3,80,77777,9,999999999,3,0.059,0,88,0.2,0,1 +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,4694,0,2688,794,300,8.2,2,2,64,77777,9,999999999,3,0.059,0,88,0.2,0,1 +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,77777,9,999999999,3,0.059,0,88,0.2,0,1 +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,77777,9,999999999,3,0.059,0,88,0.2,0,1 +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,77777,9,999999999,3,0.059,0,88,0.2,0,1 +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,-12.2,35,84100,0,0,237,0,0,0,0,0,0,0,230,1.5,0,0,32,77777,9,999999999,3,0.059,0,88,0.2,0,1 +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,77777,9,999999999,3,0.059,0,88,0.2,0,1 +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,77777,9,999999999,3,0.059,0,88,0.2,0,1 +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,77777,9,999999999,3,0.06,0,88,0.2,0,1 +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,77777,9,999999999,3,0.06,0,88,0.2,0,1 +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,77777,9,999999999,3,0.06,0,88,0.2,0,1 +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,77777,9,999999999,3,0.06,0,88,0.2,0,1 +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,37,84200,0,0,222,0,0,0,0,0,0,0,200,3.6,0,0,32,77777,9,999999999,3,0.06,0,88,0.2,0,1 +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,77777,9,999999999,3,0.06,0,88,0.2,0,1 +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,2247,0,1013,295,180,5.2,0,0,80,77777,9,999999999,3,0.06,0,88,0.2,0,1 +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,19194,56671,5441,749,210,4.6,0,0,112,77777,9,999999999,3,0.06,0,88,0.2,0,1 +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,41146,82137,7829,1197,190,6.2,0,0,112,77777,9,999999999,3,0.06,0,88,0.2,0,1 +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,60503,93546,9445,1566,180,5.7,0,0,112,77777,9,999999999,3,0.06,0,88,0.2,0,1 +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,8,84100,892,1387,268,710,990,73,74587,98742,10449,1911,180,5.2,0,0,112,77777,9,999999999,3,0.06,0,88,0.2,0,1 +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,82403,100952,10968,2175,170,6.2,0,0,112,77777,9,999999999,3,0.06,0,88,0.2,0,1 +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,-18.9,7,83800,986,1387,286,796,1010,79,83460,101241,11079,2223,190,5.2,0,0,112,77777,9,999999999,3,0.06,0,88,0.2,0,1 +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,77706,99561,10660,2009,170,6.7,0,0,112,77777,9,999999999,4,0.06,0,88,0.2,0,1 +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,-18.3,7,83700,797,1387,287,601,922,71,63192,91288,10336,1715,160,6.7,1,0,112,77777,9,999999999,4,0.06,0,88,0.2,0,1 +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,46895,82749,10053,1380,170,8.8,3,0,112,77777,9,999999999,4,0.06,0,88,0.2,0,1 +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,28831,25868,5251,1849,170,8.8,2,0,112,77777,9,999999999,4,0.06,0,88,0.2,0,1 +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,5206,0,3109,896,160,7.7,6,1,96,77777,9,999999999,4,0.06,0,88,0.2,0,1 +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,14,83500,0,0,278,0,0,0,0,0,0,0,170,8.2,2,2,48,77777,9,999999999,4,0.06,0,88,0.2,0,1 +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,15,83500,0,0,276,0,0,0,0,0,0,0,170,6.2,3,3,32,77777,9,999999999,4,0.06,0,88,0.2,0,1 +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,77777,9,999999999,4,0.06,0,88,0.2,0,1 +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,77777,9,999999999,4,0.06,0,88,0.2,0,1 +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,77777,9,999999999,4,0.06,0,88,0.2,0,1 +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,77777,9,999999999,4,0.06,0,88,0.2,0,1 +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,77777,9,999999999,5,0.061,0,88,0.2,0,1 +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,77777,9,999999999,5,0.061,0,88,0.2,0,1 +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,77777,9,999999999,5,0.061,0,88,0.2,0,1 +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,77777,9,999999999,5,0.061,0,88,0.2,0,1 +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,77777,9,999999999,5,0.061,0,88,0.2,0,1 +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,7620,9,999999999,5,0.061,0,88,0.2,0,1 +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,1660,0,1331,374,190,4.6,8,5,80,7620,9,999999999,5,0.061,0,88,0.2,0,1 +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,14777,6968,11348,3152,180,4.6,7,4,96,7620,9,999999999,5,0.061,0,88,0.2,0,1 +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,39420,36752,13072,4622,200,4.1,8,3,112,77777,9,999999999,5,0.061,0,88,0.2,0,1 +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,58648,46958,16349,6251,190,4.1,7,2,112,77777,9,999999999,6,0.061,0,88,0.2,0,1 +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,77563,55878,23936,9232,180,4.6,8,3,112,77777,9,999999999,6,0.061,0,88,0.2,0,1 +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,79439,93137,14507,2473,260,5.2,4,1,112,77777,9,999999999,6,0.061,0,88,0.2,0,1 +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,87986,56219,15833,6539,260,7.7,4,1,112,77777,9,999999999,6,0.061,0,88,0.2,0,1 +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,76010,51508,21629,8572,280,6.7,7,2,96,77777,9,999999999,6,0.061,0,88,0.2,0,1 +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,62094,46696,20753,7854,240,4.6,8,3,96,77777,9,999999999,6,0.061,0,88,0.2,0,1 +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,46745,42107,14438,5241,280,4.6,7,2,96,77777,9,999999999,6,0.061,0,88,0.2,0,1 +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,22127,19116,9335,3082,260,5.7,8,3,96,77777,9,999999999,6,0.061,0,88,0.2,0,1 +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,-6.1,21,82800,122,1352,319,41,72,34,4478,0,3725,1029,270,5.7,9,5,96,7620,9,999999999,7,0.061,0,88,0.2,0,1 +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,77777,9,999999999,7,0.061,0,88,0.2,0,1 +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,77777,9,999999999,7,0.061,0,88,0.2,0,1 +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,77777,9,999999999,7,0.061,0,88,0.2,0,1 +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,77777,9,999999999,7,0.061,0,88,0.2,0,1 +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,77777,9,999999999,7,0.061,0,88,0.2,0,1 +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,77777,9,999999999,7,0.061,0,88,0.2,0,1 +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,77777,9,999999999,8,0.062,0,88,0.2,0,1 +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,77777,9,999999999,8,0.062,0,88,0.2,0,1 +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,77777,9,999999999,8,0.062,0,88,0.2,0,1 +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,77777,9,999999999,8,0.062,0,88,0.2,0,1 +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,77777,9,999999999,8,0.062,0,88,0.2,0,1 +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,77777,9,999999999,8,0.062,0,88,0.2,0,1 +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,2005,0,1339,386,120,2.6,6,2,96,77777,9,999999999,8,0.062,0,88,0.2,0,1 +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,18547,53622,4985,755,180,4.6,3,1,96,77777,9,999999999,8,0.062,0,88,0.2,0,1 +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,42940,86038,6361,1100,190,6.2,0,0,112,77777,9,999999999,7,0.062,0,88,0.2,0,1 +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,23,82300,758,1386,310,528,857,59,56196,85138,8735,1527,160,3.6,3,1,112,77777,9,999999999,7,0.062,0,88,0.2,0,1 +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,69922,91365,9353,1823,190,3.6,2,1,112,77777,9,999999999,7,0.062,0,88,0.2,0,1 +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,21,82100,987,1386,325,685,695,190,81826,52363,22803,9139,280,2.1,5,4,104,77777,9,999999999,7,0.062,0,88,0.2,0,1 +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,62212,29632,34311,12810,190,4.1,9,9,96,2743,9,999999999,7,0.062,0,88,0.2,0,1 +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,82800,57240,21422,8519,250,2.1,5,5,96,77777,9,999999999,7,0.062,0,88,0.2,0,1 +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,35791,21018,13832,5490,210,8.8,7,7,96,2896,9,999999999,7,0.062,0,88,0.2,0,1 +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,15,81800,620,1386,328,329,135,269,35878,12835,29505,8496,230,6.2,9,8,96,2743,9,999999999,6,0.062,0,88,0.2,0,1 +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,16,81700,387,1386,330,131,129,95,14716,6639,10710,3444,190,6.2,9,9,96,4267,9,999999999,6,0.062,0,88,0.2,0,1 +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,2726,0,2744,922,210,7.2,10,10,64,4267,9,999999999,6,0.062,0,88,0.2,0,1 +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,2743,9,999999999,6,0.062,0,88,0.2,0,1 +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,76,82100,0,0,303,0,0,0,0,0,0,0,340,7.7,10,10,24,1067,9,999999999,6,0.062,0,88,0.2,0,1 +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,82,82200,0,0,299,0,0,0,0,0,0,0,350,6.2,10,10,24,823,9,999999999,6,0.062,0,88,0.2,0,1 +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,1981,9,999999999,5,0.062,0,88,0.2,0,1 +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,1981,9,999999999,5,0.062,0,88,0.2,0,1 +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,79,82400,0,0,301,0,0,0,0,0,0,0,10,8.2,10,10,32,1036,9,999999999,5,0.062,0,88,0.2,0,1 +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,1067,9,999999999,5,0.062,0,88,0.2,0,1 +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,1829,9,999999999,5,0.062,0,88,0.2,0,1 +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,77777,9,999999999,5,0.062,0,88,0.2,0,1 +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,-5.6,62,82700,0,0,251,0,0,0,0,0,0,0,360,4.1,2,2,32,77777,9,999999999,5,0.062,0,88,0.2,0,1 +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,77777,9,999999999,4,0.062,0,88,0.2,0,1 +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,77777,9,999999999,4,0.062,0,88,0.2,0,1 +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,2218,0,1556,444,360,4.1,1,1,96,77777,9,999999999,4,0.062,0,88,0.2,0,1 +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,19319,15549,6763,2232,350,5.2,1,1,112,77777,9,999999999,4,0.062,0,88,0.2,0,1 +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,45126,41869,9527,3530,350,5.2,0,0,112,77777,9,999999999,4,0.062,0,88,0.2,0,1 +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,26,83100,764,1385,266,565,840,101,68449,54607,12275,4840,310,4.6,0,0,96,77777,9,999999999,4,0.062,0,88,0.2,0,1 +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,86226,60385,14174,5785,310,4.6,0,0,96,77777,9,999999999,4,0.062,0,88,0.2,0,1 +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,96413,62618,15154,6272,10,6.7,0,0,96,77777,9,999999999,4,0.062,0,88,0.2,0,1 +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,97746,63000,15294,6338,360,5.2,0,0,96,77777,9,999999999,4,0.062,0,88,0.2,0,1 +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,14,83000,942,1385,269,722,872,129,88349,60792,15845,6474,350,6.2,2,0,96,77777,9,999999999,4,0.062,0,88,0.2,0,1 +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,14,83000,813,1385,274,573,720,149,67970,52529,17747,6897,20,6.7,8,1,96,77777,9,999999999,4,0.062,0,88,0.2,0,1 +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,41788,35141,15340,5546,50,4.6,7,2,88,77777,9,999999999,4,0.062,0,88,0.2,0,1 +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,18837,11449,12794,3925,60,6.2,10,5,96,4877,9,999999999,4,0.062,0,88,0.2,0,1 +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,0,3853,1083,90,5.2,10,5,96,4572,9,999999999,4,0.062,0,88,0.2,0,1 +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,77777,9,999999999,4,0.062,0,88,0.2,0,1 +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,7620,9,999999999,4,0.062,0,88,0.2,0,1 +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,4267,9,999999999,4,0.062,0,88,0.2,0,1 +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,-8.9,47,83400,0,0,253,0,0,0,0,0,0,0,160,2.1,6,4,32,4267,9,999999999,4,0.062,0,88,0.2,0,1 +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,-8.9,47,83400,0,0,251,0,0,0,0,0,0,0,190,2.6,5,3,32,77777,9,999999999,4,0.062,0,88,0.2,0,1 +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,77777,9,999999999,4,0.062,0,88,0.2,0,1 +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,77777,9,999999999,4,0.063,0,88,0.2,0,1 +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,77777,9,999999999,4,0.063,0,88,0.2,0,1 +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,77777,9,999999999,4,0.063,0,88,0.2,0,1 +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,77777,9,999999999,4,0.063,0,88,0.2,0,1 +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,77777,9,999999999,4,0.063,0,88,0.2,0,1 +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,77777,9,999999999,4,0.063,0,88,0.2,0,1 +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,3036,0,1465,432,200,2.6,0,0,96,77777,9,999999999,4,0.063,0,88,0.2,0,1 +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,23123,18074,4846,1669,0,0,0,0,96,77777,9,999999999,4,0.063,0,88,0.2,0,1 +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,42687,80067,8960,1287,300,2.1,0,0,96,77777,9,999999999,4,0.063,0,88,0.2,0,1 +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,61814,90947,10929,1703,360,3.6,0,0,96,77777,9,999999999,4,0.063,0,88,0.2,0,1 +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,75759,96183,12010,2109,330,3.6,0,0,96,77777,9,999999999,4,0.063,0,88,0.2,0,1 +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,81087,94726,13019,2468,90,4.6,1,0,104,77777,9,999999999,4,0.063,0,88,0.2,0,1 +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,80823,94024,12344,2449,60,4.6,1,1,96,77777,9,999999999,4,0.063,0,88,0.2,0,1 +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,73298,87739,14191,2328,60,3.1,1,1,96,77777,9,999999999,4,0.063,0,88,0.2,0,1 +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,62962,46347,13973,5561,60,3.6,2,1,96,77777,9,999999999,4,0.063,0,88,0.2,0,1 +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,48256,43166,15138,5504,100,3.1,3,1,80,77777,9,999999999,4,0.063,0,88,0.2,0,1 +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,27538,24811,6159,2171,100,4.1,2,1,64,77777,9,999999999,4,0.063,0,88,0.2,0,1 +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,5944,0,3864,1100,90,5.7,5,3,64,77777,9,999999999,4,0.063,0,88,0.2,0,1 +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,77777,9,999999999,4,0.063,0,88,0.2,0,1 +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,7010,9,999999999,4,0.063,0,88,0.2,0,1 +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,7010,9,999999999,4,0.063,0,88,0.2,0,1 +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,7010,9,999999999,4,0.063,0,88,0.2,0,1 +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,77777,9,999999999,4,0.063,0,88,0.2,0,1 +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,77777,9,999999999,4,0.063,0,88,0.2,0,1 +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,10,8,32,6096,9,999999999,4,0.064,0,88,0.2,0,1 +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,38,83100,0,0,283,0,0,0,0,0,0,0,170,1.5,10,10,32,3048,9,999999999,4,0.064,0,88,0.2,0,1 +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,-7.8,52,83000,0,0,279,0,0,0,0,0,0,0,350,3.6,10,10,32,2438,9,999999999,5,0.064,0,88,0.2,0,1 +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,2134,9,999999999,5,0.064,0,88,0.2,0,1 +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,2134,9,999999999,5,0.064,0,88,0.2,0,1 +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,9,7,48,2134,9,999999999,5,0.064,0,88,0.2,0,1 +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,1356,0,1365,468,10,2.1,10,10,80,6096,9,999999999,5,0.064,0,88,0.2,0,1 +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,7725,1454,6473,2177,360,2.6,10,9,64,6706,9,999999999,5,0.064,0,88,0.2,0,1 +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,14561,0,14679,5673,340,4.1,10,10,64,6706,9,999999999,5,0.064,0,88,0.2,0,1 +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,41611,10304,35165,11186,330,2.6,10,9,64,6706,9,999999999,5,0.064,0,88,0.2,0,1 +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,40867,14198,27622,10502,250,1.5,10,9,64,6706,9,999999999,5,0.064,0,88,0.2,0,1 +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,26,82600,1005,1383,285,551,227,386,62486,22493,44060,15228,180,6.7,9,7,32,6706,9,999999999,5,0.064,0,88,0.2,0,1 +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,61328,14662,50102,16442,150,8.8,10,8,48,7620,9,999999999,5,0.064,0,88,0.2,0,1 +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,70396,41406,33782,12404,160,9.8,10,7,32,6096,9,999999999,5,0.064,0,88,0.2,0,1 +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,46028,17952,33279,11293,150,8.2,9,8,40,5486,9,999999999,5,0.064,0,88,0.2,0,1 +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,30897,14027,22016,7364,170,7.7,10,5,48,5486,9,999999999,5,0.064,0,88,0.2,0,1 +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,18080,4954,15866,4524,160,8.8,10,8,56,4877,9,999999999,5,0.064,0,88,0.2,0,1 +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,5589,1,5178,1331,160,9.3,10,7,64,4877,9,999999999,6,0.064,0,88,0.2,0,1 +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,4572,9,999999999,6,0.064,0,88,0.2,0,1 +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,77777,9,999999999,6,0.064,0,88,0.2,0,1 +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,77777,9,999999999,6,0.064,0,88,0.2,0,1 +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,-4.4,69,82700,0,0,253,0,0,0,0,0,0,0,210,4.1,7,2,32,77777,9,999999999,6,0.064,0,88,0.2,0,1 +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,-4.4,69,82700,0,0,261,0,0,0,0,0,0,0,190,4.6,8,6,32,1829,9,999999999,6,0.064,0,88,0.2,0,1 +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,4877,9,999999999,6,0.064,0,88,0.2,0,1 +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,-4.4,69,82700,0,0,282,0,0,0,0,0,0,0,250,3.6,10,10,24,701,9,999999999,6,0.065,0,88,0.2,0,1 +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,640,9,999999999,6,0.065,0,88,0.2,0,1 +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,610,9,999999999,6,0.065,0,88,0.2,0,1 +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,610,9,999999999,6,0.065,0,88,0.2,0,1 +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,640,9,999999999,6,0.065,0,88,0.2,0,1 +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,3048,9,999999999,6,0.065,0,88,0.2,0,1 +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,1259,0,1267,451,80,2.1,10,10,8,671,9,999999999,6,0.065,0,88,0.2,0,1 +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,6837,0,6888,2582,40,1.5,10,10,8,792,9,999999999,6,0.065,0,88,0.2,0,1 +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,12941,0,13047,5240,350,2.6,10,10,8,427,9,999999999,6,0.065,0,88,0.2,0,1 +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,18196,0,18355,7777,330,2.1,10,10,9.6,427,9,999999999,6,0.065,0,88,0.2,0,1 +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,22159,0,22361,9759,10,3.6,10,10,9.6,792,9,999999999,6,0.065,0,88,0.2,0,1 +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,51950,15549,37813,13843,360,2.1,9,9,11.2,792,9,999999999,6,0.065,0,88,0.2,0,1 +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,48,82800,1021,1383,292,288,27,267,33687,2263,31405,12090,80,2.6,9,9,11.2,2438,9,999999999,6,0.065,0,88,0.2,0,1 +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,44,82700,958,1383,291,393,280,198,46614,21467,23598,9341,50,2.1,8,8,11.2,2438,9,999999999,6,0.065,0,88,0.2,0,1 +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,44,82700,829,1383,286,472,326,277,53392,29245,31512,10957,340,4.1,10,7,11.2,6706,9,999999999,6,0.065,0,88,0.2,0,1 +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,41,82700,640,1383,287,282,244,169,32066,18313,19304,6735,340,4.6,10,6,11.2,6096,9,999999999,6,0.065,0,88,0.2,0,1 +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,-5.6,44,82800,407,1383,280,142,176,90,16101,8901,10240,3398,330,3.6,10,6,11.2,6096,9,999999999,6,0.065,0,88,0.2,0,1 +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,5768,0,3782,1109,320,3.6,8,4,11.2,77777,9,999999999,6,0.065,0,88,0.2,0,1 +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,6096,9,999999999,6,0.065,0,88,0.2,0,1 +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,77777,9,999999999,6,0.065,0,88,0.2,0,1 +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,2591,9,999999999,6,0.065,0,88,0.2,0,1 +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,77777,9,999999999,6,0.065,0,88,0.2,0,1 +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,19.2,77777,9,999999999,6,0.065,0,88,0.2,0,1 +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,6,0.065,0,88,0.2,0,1 +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,6,0.065,0,88,0.2,0,1 +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,6,0.065,0,88,0.2,0,1 +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,2438,9,999999999,6,0.065,0,88,0.2,0,1 +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,183,9,999999999,6,0.065,0,88,0.2,0,1 +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,183,9,999999999,6,0.065,0,88,0.2,0,1 +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,183,9,999999999,6,0.065,0,88,0.2,0,1 +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,969,0,975,369,40,2.1,10,10,4.8,152,9,999999999,6,0.065,0,88,0.2,0,1 +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,4164,0,4195,1736,60,1.5,10,10,4.8,244,9,999999999,6,0.065,0,88,0.2,0,1 +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,9005,0,9079,3938,120,3.6,10,10,4.8,244,9,999999999,6,0.065,0,88,0.2,0,1 +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,13680,0,13800,6213,0,0,10,10,4.8,244,9,999999999,6,0.065,0,88,0.2,0,1 +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,20503,0,20691,9214,0,0,10,10,6.4,427,9,999999999,6,0.065,0,88,0.2,0,1 +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,22835,0,23049,10344,100,1.5,10,10,9.6,488,9,999999999,6,0.065,0,88,0.2,0,1 +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,23061,0,23278,10457,30,2.6,10,10,9.6,610,9,999999999,6,0.065,0,88,0.2,0,1 +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,21277,0,21474,9591,10,3.6,10,10,11.2,610,9,999999999,6,0.065,0,88,0.2,0,1 +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,17546,0,17702,7766,360,4.1,10,10,11.2,610,9,999999999,6,0.065,0,88,0.2,0,1 +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,12298,0,12401,5261,20,3.1,10,10,11.2,671,9,999999999,6,0.065,0,88,0.2,0,1 +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,12808,4921,9407,3187,350,3.1,10,6,11.2,6096,9,999999999,6,0.065,0,88,0.2,0,1 +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,5697,61,5502,1423,20,3.1,10,6,11.2,6096,9,999999999,6,0.065,0,88,0.2,0,1 +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,6,0.065,0,88,0.2,0,1 +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,77777,9,999999999,6,0.065,0,88,0.2,0,1 +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,6,0.065,0,88,0.2,0,1 +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,2,2,11.2,77777,9,999999999,6,0.065,0,88,0.2,0,1 +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,6,0.065,0,88,0.2,0,1 +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,6,0.065,0,88,0.2,0,1 +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,6,0.066,0,88,0.2,0,1 +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,6,0.066,0,88,0.2,0,1 +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,6,0.066,0,88,0.2,0,1 +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,6,0.066,0,88,0.2,0,1 +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,77777,9,999999999,6,0.066,0,88,0.2,0,1 +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,77777,9,999999999,6,0.066,0,88,0.2,0,1 +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,4370,19675,2313,271,140,1.5,0,0,48,77777,9,999999999,6,0.066,0,88,0.2,0,1 +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,58,83500,354,1381,250,225,748,33,24117,65503,5276,827,170,2.1,1,0,80,77777,9,999999999,6,0.066,0,88,0.2,0,1 +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,45684,84653,7778,1263,220,1.5,1,0,80,77777,9,999999999,6,0.066,0,88,0.2,0,1 +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,65308,95682,8813,1592,290,4.1,0,0,80,77777,9,999999999,5,0.066,0,88,0.2,0,1 +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,69115,85846,10088,2002,240,2.6,1,0,80,77777,9,999999999,5,0.066,0,88,0.2,0,1 +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,85169,99510,10737,2324,280,3.6,1,0,112,77777,9,999999999,5,0.066,0,88,0.2,0,1 +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,87552,102200,10063,2259,80,2.6,0,0,96,77777,9,999999999,5,0.066,0,88,0.2,0,1 +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,81633,100833,9775,2028,340,3.1,0,0,96,77777,9,999999999,5,0.066,0,88,0.2,0,1 +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,63431,87222,10127,1782,250,2.6,2,1,96,77777,9,999999999,5,0.066,0,88,0.2,0,1 +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,44588,37306,14880,5488,20,3.1,8,4,96,7620,9,999999999,5,0.066,0,88,0.2,0,1 +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,20516,13354,12873,4071,120,5.7,7,4,96,7620,9,999999999,5,0.066,0,88,0.2,0,1 +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,-7.8,26,83400,155,1381,279,74,446,24,8494,0,2760,872,120,5.7,3,0,64,77777,9,999999999,5,0.066,0,88,0.2,0,1 +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,77777,9,999999999,5,0.066,0,88,0.2,0,1 +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,77777,9,999999999,5,0.066,0,88,0.2,0,1 +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,44,83500,0,0,265,0,0,0,0,0,0,0,170,4.1,0,0,48,77777,9,999999999,5,0.066,0,88,0.2,0,1 +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,77777,9,999999999,5,0.066,0,88,0.2,0,1 +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,77777,9,999999999,4,0.066,0,88,0.2,0,1 +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,77777,9,999999999,4,0.066,0,88,0.2,0,1 +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,77777,9,999999999,4,0.067,0,88,0.2,0,1 +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,77777,9,999999999,4,0.067,0,88,0.2,0,1 +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,77777,9,999999999,4,0.067,0,88,0.2,0,1 +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,77777,9,999999999,4,0.067,0,88,0.2,0,1 +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,77777,9,999999999,4,0.067,0,88,0.2,0,1 +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,49,83400,0,0,233,0,0,0,0,0,0,0,140,3.1,0,0,64,77777,9,999999999,4,0.067,0,88,0.2,0,1 +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,41,83500,99,1208,242,43,321,17,4886,0,1935,589,170,1.5,0,0,80,77777,9,999999999,4,0.067,0,88,0.2,0,1 +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,24600,64428,6027,875,0,0,0,0,96,77777,9,999999999,4,0.067,0,88,0.2,0,1 +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,46820,85364,8344,1309,0,0,0,0,96,77777,9,999999999,4,0.067,0,88,0.2,0,1 +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,62369,88671,10320,1734,240,2.6,1,0,96,77777,9,999999999,4,0.067,0,88,0.2,0,1 +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,78458,50825,13224,5459,270,2.6,1,1,96,77777,9,999999999,4,0.067,0,88,0.2,0,1 +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,87369,101333,11249,2416,270,2.6,0,0,96,77777,9,999999999,4,0.067,0,88,0.2,0,1 +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,86791,99210,11885,2530,290,2.6,1,0,96,77777,9,999999999,4,0.067,0,88,0.2,0,1 +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,91274,59363,14312,5921,360,3.1,2,0,96,77777,9,999999999,4,0.067,0,88,0.2,0,1 +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,69740,96270,10122,1791,110,7.7,0,0,80,77777,9,999999999,4,0.067,0,88,0.2,0,1 +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,-8.3,18,83400,655,1380,298,483,888,61,51175,86695,9144,1423,100,8.8,1,0,80,77777,9,999999999,4,0.067,0,88,0.2,0,1 +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,29799,70859,6596,983,110,7.7,0,0,64,77777,9,999999999,4,0.067,0,88,0.2,0,1 +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,8978,0,2767,879,100,5.7,0,0,48,77777,9,999999999,4,0.067,0,88,0.2,0,1 +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,77777,9,999999999,4,0.067,0,88,0.2,0,1 +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,77777,9,999999999,4,0.067,0,88,0.2,0,1 +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,77777,9,999999999,4,0.067,0,88,0.2,0,1 +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,77777,9,999999999,4,0.067,0,88,0.2,0,1 +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,77777,9,999999999,4,0.067,0,88,0.2,0,1 +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,77777,9,999999999,5,0.067,0,88,0.2,0,1 +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,-5.6,44,83500,0,0,262,0,0,0,0,0,0,0,170,6.2,0,0,32,77777,9,999999999,5,0.068,0,88,0.2,0,1 +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,77777,9,999999999,5,0.068,0,88,0.2,0,1 +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,-5.6,44,83300,0,0,262,0,0,0,0,0,0,0,180,7.7,0,0,32,77777,9,999999999,5,0.068,0,88,0.2,0,1 +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,77777,9,999999999,5,0.068,0,88,0.2,0,1 +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,77777,9,999999999,5,0.068,0,88,0.2,0,1 +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,1,0,80,77777,9,999999999,5,0.068,0,88,0.2,0,1 +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,4233,0,2568,753,0,0,1,0,80,77777,9,999999999,5,0.068,0,88,0.2,0,1 +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,24982,21912,6756,2324,330,1.5,1,0,80,77777,9,999999999,5,0.068,0,88,0.2,0,1 +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,51256,45101,9727,3683,340,2.1,0,0,64,77777,9,999999999,5,0.068,0,88,0.2,0,1 +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,-3.3,38,82900,811,1379,283,607,855,104,73899,55162,12703,5084,180,7.2,1,0,64,77777,9,999999999,5,0.068,0,88,0.2,0,1 +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,78246,92130,15486,2411,160,9.8,0,0,80,77777,9,999999999,5,0.068,0,88,0.2,0,1 +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,26,82500,1035,1379,295,817,923,124,85115,92982,16792,2882,160,11.8,1,0,64,77777,9,999999999,5,0.068,0,88,0.2,0,1 +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,85769,93142,16765,2937,160,11.8,1,0,48,77777,9,999999999,5,0.068,0,88,0.2,0,1 +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,-6.1,21,82100,979,1379,307,762,913,113,79544,91766,15541,2527,160,13.4,1,1,48,77777,9,999999999,5,0.068,0,88,0.2,0,1 +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,71542,50735,12557,5079,160,12.4,1,1,48,77777,9,999999999,5,0.068,0,88,0.2,0,1 +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,48396,40334,17357,6286,160,11.3,5,5,48,77777,9,999999999,5,0.068,0,88,0.2,0,1 +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,23285,19047,10078,3415,160,14.4,5,5,48,77777,9,999999999,5,0.068,0,88,0.2,0,1 +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,6708,0,3923,1185,160,13.4,3,1,48,77777,9,999999999,5,0.068,0,88,0.2,0,1 +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,77777,9,999999999,5,0.068,0,88,0.2,0,1 +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,9144,9,999999999,5,0.068,0,88,0.2,0,1 +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,7620,9,999999999,5,0.068,0,88,0.2,0,1 +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,3353,9,999999999,5,0.068,0,88,0.2,0,1 +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,2134,9,999999999,5,0.068,0,88,0.2,0,1 +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,2134,9,999999999,5,0.068,0,88,0.2,0,1 +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,2743,9,999999999,5,0.068,0,88,0.2,0,1 +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,22,81600,0,0,316,0,0,0,0,0,0,0,290,6.7,10,10,32,3048,9,999999999,5,0.068,0,88,0.2,0,1 +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,23,81600,0,0,305,0,0,0,0,0,0,0,310,7.7,10,9,32,3353,9,999999999,5,0.068,0,88,0.2,0,1 +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,23,81700,0,0,294,0,0,0,0,0,0,0,310,8.2,9,7,32,4572,9,999999999,5,0.068,0,88,0.2,0,1 +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,4267,9,999999999,5,0.068,0,88,0.2,0,1 +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,4267,9,999999999,5,0.068,0,88,0.2,0,1 +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,3309,0,3097,881,310,3.1,9,8,112,4267,9,999999999,5,0.068,0,88,0.2,0,1 +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,16911,11626,9223,3039,290,3.6,7,5,112,4572,9,999999999,5,0.068,0,88,0.2,0,1 +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,45870,40563,16812,5957,270,5.2,8,4,112,77777,9,999999999,5,0.068,0,88,0.2,0,1 +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,66658,50633,22676,8527,290,8.2,6,2,112,77777,9,999999999,5,0.068,0,88,0.2,0,1 +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,81868,54596,22092,8829,290,10.3,4,3,112,77777,9,999999999,5,0.068,0,88,0.2,0,1 +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,58377,30393,19747,8122,260,8.8,5,5,112,77777,9,999999999,5,0.068,0,88,0.2,0,1 +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,88755,95473,17876,3006,270,4.6,3,3,112,77777,9,999999999,5,0.068,0,88,0.2,0,1 +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,92303,59313,14337,5942,250,6.7,2,2,112,77777,9,999999999,5,0.068,0,88,0.2,0,1 +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,71227,98611,8733,1668,280,10.3,0,0,96,77777,9,999999999,5,0.068,0,88,0.2,0,1 +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,53155,91258,7561,1315,300,7.2,0,0,80,77777,9,999999999,5,0.068,0,88,0.2,0,1 +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,31397,75210,5692,936,300,8.8,0,0,64,77777,9,999999999,5,0.068,0,88,0.2,0,1 +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,9261,38041,3439,463,300,6.7,0,0,48,77777,9,999999999,5,0.068,0,88,0.2,0,1 +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,77777,9,999999999,5,0.068,0,88,0.2,0,1 +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,77777,9,999999999,5,0.068,0,88,0.2,0,1 +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,77777,9,999999999,5,0.068,0,88,0.2,0,1 +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,77777,9,999999999,5,0.068,0,88,0.2,0,1 +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,77777,9,999999999,5,0.068,0,88,0.2,0,1 +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,77777,9,999999999,5,0.068,0,88,0.2,0,1 +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,77777,9,999999999,5,0.069,0,88,0.2,0,1 +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,77777,9,999999999,5,0.069,0,88,0.2,0,1 +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,77777,9,999999999,5,0.069,0,88,0.2,0,1 +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,47,82300,0,0,246,0,0,0,0,0,0,0,140,2.6,6,3,32,77777,9,999999999,5,0.069,0,88,0.2,0,1 +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,-10.6,40,82300,0,0,253,0,0,0,0,0,0,0,190,1.5,7,5,32,7620,9,999999999,5,0.069,0,88,0.2,0,1 +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,-11.7,37,82300,0,0,248,0,0,0,0,0,0,0,170,1.5,10,3,80,77777,9,999999999,5,0.069,0,88,0.2,0,1 +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,-11.1,39,82300,119,1320,246,48,180,31,5278,0,3418,964,130,1.5,7,2,96,77777,9,999999999,5,0.069,0,88,0.2,0,1 +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,-11.1,27,82300,383,1378,256,247,753,38,26299,66881,6017,905,190,3.1,0,0,96,77777,9,999999999,5,0.069,0,88,0.2,0,1 +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,47539,83088,9178,1383,0,0,2,0,96,77777,9,999999999,5,0.069,0,88,0.2,0,1 +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,-11.1,19,82300,824,1378,287,461,485,171,54218,36661,20200,7769,40,2.1,8,3,96,77777,9,999999999,5,0.069,0,88,0.2,0,1 +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,83667,54254,16478,6767,130,6.2,7,2,96,77777,9,999999999,6,0.069,0,88,0.2,0,1 +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,88019,53582,25273,10160,130,7.2,9,3,96,77777,9,999999999,6,0.069,0,88,0.2,0,1 +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,89026,53256,33886,12984,130,6.2,10,5,96,77777,9,999999999,6,0.069,0,88,0.2,0,1 +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,18,81900,989,1378,329,224,0,224,23443,0,23660,10456,130,7.2,10,10,96,2591,9,999999999,6,0.069,0,88,0.2,0,1 +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,19879,0,20057,8674,90,5.2,10,10,80,2591,9,999999999,6,0.069,0,88,0.2,0,1 +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,14780,0,14905,6174,180,1.5,10,10,80,2743,9,999999999,6,0.069,0,88,0.2,0,1 +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,-5.6,31,81900,435,1378,315,90,0,89,8993,0,8962,3478,80,6.2,10,9,80,2743,9,999999999,7,0.069,0,88,0.2,0,1 +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,8279,1759,6476,1678,90,3.6,10,6,64,7620,9,999999999,7,0.069,0,88,0.2,0,1 +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,7620,9,999999999,7,0.069,0,88,0.2,0,1 +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,3353,9,999999999,7,0.069,0,88,0.2,0,1 +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,2438,9,999999999,7,0.069,0,88,0.2,0,1 +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,3658,9,999999999,7,0.069,0,88,0.2,0,1 +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,2896,9,999999999,8,0.069,0,88,0.2,0,1 +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,8,0.069,0,88,0.2,0,1 +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,82,82200,0,0,284,0,0,0,0,0,0,0,310,6.7,9,8,24,2438,9,999999999,8,0.07,0,88,0.2,0,1 +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,82,82200,0,0,299,0,0,0,0,0,0,0,330,6.2,10,10,11.2,244,9,999999999,8,0.07,0,88,0.2,0.5,1 +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,82,82200,0,0,299,0,0,0,0,0,0,0,360,5.7,10,10,19.2,335,9,999999999,8,0.07,0,88,0.2,0.5,1 +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,96,82300,0,0,289,0,0,0,0,0,0,0,340,4.6,10,10,4.8,366,9,999999999,9,0.07,0,88,0.2,0.5,1 +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,96,82300,0,0,289,0,0,0,0,0,0,0,310,3.6,10,10,8,122,9,999999999,9,0.07,0,88,0.2,0,1 +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,88,82400,0,0,294,0,0,0,0,0,0,0,20,2.1,10,10,32,244,9,999999999,8,0.07,0,88,0.2,0,1 +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,85,82400,126,1366,282,29,27,27,3234,0,3019,898,290,3.1,9,8,80,1829,9,999999999,8,0.07,0,88,0.2,0,1 +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,76,82400,390,1377,276,223,510,79,25415,22871,9032,3033,330,2.1,5,4,80,77777,9,999999999,8,0.07,0,88,0.2,0,1 +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,23407,8680,16938,6059,320,3.1,8,8,80,2896,9,999999999,8,0.07,0,88,0.2,0,1 +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,57792,38902,21935,8364,20,4.1,5,4,96,77777,9,999999999,8,0.07,0,88,0.2,0,1 +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,77477,46918,34210,12684,330,4.1,10,6,96,4267,9,999999999,7,0.07,0,88,0.2,0,1 +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,77212,36083,45462,15971,300,12.4,10,7,96,4267,9,999999999,7,0.07,0,88,0.2,0,1 +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,-10,21,82500,1059,1377,304,586,414,267,69024,34687,31625,12312,310,12.9,9,8,96,4267,9,999999999,7,0.07,0,88,0.2,0,1 +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,52139,24269,26082,10298,310,11.8,7,7,96,6706,9,999999999,7,0.07,0,88,0.2,0,1 +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,52314,20653,37614,12579,300,11.8,9,8,96,7620,9,999999999,7,0.07,0,88,0.2,0,1 +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,-11.1,19,82700,673,1377,294,379,307,229,42384,26580,25744,8469,300,13.4,7,6,96,7620,9,999999999,6,0.07,0,88,0.2,0,1 +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,19241,11043,12651,4128,290,7.7,8,6,80,7620,9,999999999,6,0.07,0,88,0.2,0,1 +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,6671,0,3853,1193,300,7.7,7,4,80,7620,9,999999999,6,0.07,0,88,0.2,0,1 +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,26,83000,4,241,277,0,10,0,0,0,0,0,260,3.6,5,3,64,77777,9,999999999,6,0.07,0,88,0.2,0,1 +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,77777,9,999999999,6,0.07,0,88,0.2,0,1 +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,77777,9,999999999,5,0.07,0,88,0.2,0,1 +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,28,83200,0,0,262,0,0,0,0,0,0,0,270,8.2,2,0,32,77777,9,999999999,5,0.07,0,88,0.2,0,1 +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,29,83200,0,0,260,0,0,0,0,0,0,0,270,6.2,1,0,32,77777,9,999999999,5,0.07,0,88,0.2,0,1 +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,77777,9,999999999,5,0.07,0,88,0.2,0,1 +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,77777,9,999999999,5,0.071,0,88,0.2,0,1 +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,-11.1,27,83400,0,0,256,0,0,0,0,0,0,0,270,6.2,0,0,32,77777,9,999999999,4,0.071,0,88,0.2,0,1 +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,31,83400,0,0,255,0,0,0,0,0,0,0,270,5.2,0,0,32,77777,9,999999999,4,0.071,0,88,0.2,0,1 +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,77777,9,999999999,4,0.071,0,88,0.2,0,1 +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,77777,9,999999999,4,0.071,0,88,0.2,0,1 +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,77777,9,999999999,4,0.071,0,88,0.2,0,1 +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,4846,0,3755,1072,210,4.1,7,2,96,77777,9,999999999,4,0.071,0,88,0.2,0,1 +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,19144,12819,11575,3699,210,4.6,5,3,96,77777,9,999999999,4,0.071,0,88,0.2,0,1 +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,43252,34588,19323,6738,160,4.1,7,5,96,9144,9,999999999,4,0.071,0,88,0.2,0,1 +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,-11.1,19,83700,837,1376,292,544,548,211,63077,44452,24587,9197,220,2.6,8,5,96,7620,9,999999999,4,0.071,0,88,0.2,0,1 +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,92179,61629,20142,8172,230,2.6,5,0,112,77777,9,999999999,4,0.071,0,88,0.2,0,1 +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,96032,59730,24881,10044,170,3.1,8,1,112,77777,9,999999999,4,0.071,0,88,0.2,0,1 +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,93114,56411,22993,9373,240,2.6,7,2,112,77777,9,999999999,4,0.071,0,88,0.2,0,1 +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,-11.7,13,83500,999,1376,307,703,624,250,82529,51972,29507,11426,110,2.6,9,3,112,77777,9,999999999,4,0.071,0,88,0.2,0,1 +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,61365,31441,39213,12930,150,2.1,9,5,96,9144,9,999999999,4,0.071,0,88,0.2,0,1 +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,45389,35221,19159,6882,130,3.6,9,4,96,77777,9,999999999,4,0.071,0,88,0.2,0,1 +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,28535,26188,13083,4251,110,4.1,6,2,96,77777,9,999999999,4,0.071,0,88,0.2,0,1 +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,5105,85,4897,1447,50,4.1,9,8,64,2743,9,999999999,4,0.071,0,88,0.2,0,1 +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,3353,9,999999999,4,0.071,0,88,0.2,0,1 +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,7620,9,999999999,4,0.071,0,88,0.2,0,1 +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,77777,9,999999999,4,0.071,0,88,0.2,0,1 +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,77777,9,999999999,4,0.071,0,88,0.2,0,1 +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,-7.8,36,83400,0,0,260,0,0,0,0,0,0,0,300,3.1,1,0,32,77777,9,999999999,4,0.071,0,88,0.2,0,1 +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,77777,9,999999999,4,0.071,0,88,0.2,0,1 +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,77777,9,999999999,4,0.071,0,88,0.2,0,1 +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,77777,9,999999999,4,0.071,0,88,0.2,0,1 +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,77777,9,999999999,4,0.071,0,88,0.2,0,1 +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,77777,9,999999999,4,0.071,0,88,0.2,0,1 +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,77777,9,999999999,4,0.071,0,88,0.2,0,1 +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,77777,9,999999999,4,0.071,0,88,0.2,0,1 +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,7133,30607,3276,394,160,2.6,0,0,112,77777,9,999999999,4,0.071,0,88,0.2,0,1 +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,28831,71398,6007,932,150,2.6,0,0,112,77777,9,999999999,5,0.071,0,88,0.2,0,1 +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,51258,89357,8012,1336,180,5.2,0,0,112,77777,9,999999999,5,0.071,0,88,0.2,0,1 +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,-10.6,14,83400,843,1375,296,663,976,64,70176,97460,9295,1717,170,4.6,0,0,112,77777,9,999999999,5,0.071,0,88,0.2,0,1 +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,83701,101274,10139,2135,110,3.6,0,0,112,77777,9,999999999,5,0.071,0,88,0.2,0,1 +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,91132,102939,10522,2469,340,2.6,0,0,112,77777,9,999999999,5,0.071,0,88,0.2,0,1 +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,-11.7,10,83100,1069,1375,316,871,1022,77,91643,103074,10640,2516,50,4.6,0,0,112,77777,9,999999999,5,0.071,0,88,0.2,0,1 +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,81368,95924,10767,2275,20,4.1,1,0,112,77777,9,999999999,5,0.071,0,88,0.2,0,1 +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,66424,86272,12094,2003,360,1.5,3,1,112,77777,9,999999999,5,0.071,0,88,0.2,0,1 +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,51304,82116,10510,1531,260,7.2,4,2,112,77777,9,999999999,5,0.071,0,88,0.2,0,1 +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,24871,16172,16694,5023,260,5.2,8,4,112,77777,9,999999999,5,0.071,0,88,0.2,0,1 +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,7988,1488,6826,1802,250,9.3,10,5,64,77777,9,999999999,5,0.071,0,88,0.2,0,1 +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,7620,9,999999999,5,0.071,0,88,0.2,0,1 +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,6706,9,999999999,5,0.071,0,88,0.2,0,1 +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,10,6,32,6706,9,999999999,5,0.071,0,88,0.2,0,1 +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,77777,9,999999999,5,0.071,0,88,0.2,0,1 +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,77777,9,999999999,5,0.071,0,88,0.2,0,1 +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,77777,9,999999999,5,0.071,0,88,0.2,0,1 +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,77777,9,999999999,5,0.072,0,88,0.2,0,1 +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,77777,9,999999999,5,0.072,0,88,0.2,0,1 +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,77777,9,999999999,5,0.072,0,88,0.2,0,1 +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,77777,9,999999999,5,0.072,0,88,0.2,0,1 +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,77777,9,999999999,5,0.072,0,88,0.2,0,1 +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,77777,9,999999999,5,0.072,0,88,0.2,0,1 +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,7714,0,2537,803,150,2.6,1,1,112,77777,9,999999999,5,0.072,0,88,0.2,0,1 +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,18576,13929,8033,2787,300,2.6,8,4,96,77777,9,999999999,5,0.072,0,88,0.2,0,1 +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,52040,46081,17998,6441,0,0,7,4,96,77777,9,999999999,5,0.072,0,88,0.2,0,1 +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,-10,15,82700,849,1375,312,567,638,173,66915,48158,20508,7963,190,2.6,9,4,96,77777,9,999999999,5,0.072,0,88,0.2,0,1 +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,12,82500,992,1375,329,728,786,161,88299,57070,19612,8001,210,5.2,10,5,96,77777,9,999999999,5,0.072,0,88,0.2,0,1 +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,-11.4,10,82400,1068,1375,335,787,719,228,94007,57118,27375,10942,240,6.7,10,5,96,77777,9,999999999,5,0.072,0,88,0.2,0,1 +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,71290,37113,28402,11304,180,6.2,10,7,96,7620,9,999999999,5,0.072,0,88,0.2,0,1 +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,-13.9,8,82300,1009,1375,344,684,322,447,76806,34244,50541,16515,240,6.2,10,8,96,7620,9,999999999,5,0.072,0,88,0.2,0,1 +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,49566,29293,20056,7890,210,7.7,10,7,96,7620,9,999999999,5,0.072,0,88,0.2,0,1 +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,-16.7,6,82200,687,1375,347,183,39,164,21095,2956,18988,6874,260,9.8,10,9,96,7620,9,999999999,5,0.072,0,88,0.2,0,1 +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,20834,13625,12388,4118,270,7.7,9,7,96,7620,9,999999999,5,0.072,0,88,0.2,0,1 +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,7469,810,6845,1830,260,4.6,10,8,96,7620,9,999999999,5,0.072,0,88,0.2,0,1 +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,9,82400,7,309,308,1,14,1,0,0,0,0,220,4.1,5,4,64,77777,9,999999999,5,0.072,0,88,0.2,0,1 +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,77777,9,999999999,5,0.072,0,88,0.2,0,1 +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,77777,9,999999999,5,0.072,0,88,0.2,0,1 +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,77777,9,999999999,5,0.072,0,88,0.2,0,1 +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,77777,9,999999999,5,0.072,0,88,0.2,0,1 +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,77777,9,999999999,5,0.072,0,88,0.2,0,1 +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,77777,9,999999999,5,0.073,0,88,0.2,0,1 +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,77777,9,999999999,5,0.073,0,88,0.2,0,1 +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,-6.1,30,82300,0,0,281,0,0,0,0,0,0,0,220,9.3,0,0,32,77777,9,999999999,5,0.073,0,88,0.2,0,1 +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,34,82400,0,0,279,0,0,0,0,0,0,0,230,6.7,0,0,32,77777,9,999999999,5,0.073,0,88,0.2,0,1 +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,77777,9,999999999,5,0.073,0,88,0.2,0,1 +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,77777,9,999999999,5,0.073,0,88,0.2,0,1 +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,37,82400,154,1374,275,69,367,28,7820,0,3180,985,240,3.1,0,0,96,77777,9,999999999,5,0.073,0,88,0.2,0,1 +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,31890,28699,6081,2175,210,8.2,0,0,80,77777,9,999999999,6,0.073,0,88,0.2,0,1 +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,50913,43567,15755,5804,220,6.7,3,3,96,77777,9,999999999,6,0.073,0,88,0.2,0,1 +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,75483,53451,12806,5190,210,8.2,1,1,96,77777,9,999999999,6,0.073,0,88,0.2,0,1 +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,-7.2,19,82200,997,1374,305,758,913,94,79502,91941,13012,2492,240,7.7,1,1,96,77777,9,999999999,6,0.073,0,88,0.2,0,1 +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,98810,59581,23575,9611,200,6.7,2,2,96,77777,9,999999999,6,0.073,0,88,0.2,0,1 +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,52976,18886,32154,12556,210,7.2,6,5,96,7620,9,999999999,6,0.073,0,88,0.2,0,1 +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,67226,30047,40335,14526,190,4.6,7,6,96,2438,9,999999999,6,0.073,0,88,0.2,0,1 +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,56748,34843,23681,9117,210,5.7,8,6,96,2438,9,999999999,6,0.073,0,88,0.2,0,1 +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,18383,0,18539,7380,50,5.2,10,10,64,3048,9,999999999,7,0.073,0,88,0.2,0,1 +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,8514,0,8580,3433,30,5.2,10,10,64,2591,9,999999999,7,0.073,0,88,0.2,0,1 +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,2740,0,2760,1053,310,5.2,10,10,64,2591,9,999999999,7,0.073,0,88,0.2,0,1 +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,1829,9,999999999,7,0.073,0,88,0.2,0,1 +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,2134,9,999999999,7,0.073,0,88,0.2,0,1 +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,1829,9,999999999,7,0.073,0,88,0.2,0,1 +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,76,81700,0,0,303,0,0,0,0,0,0,0,340,8.8,10,10,1.6,366,9,999999999,7,0.073,0,88,0.2,0,1 +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,96,81800,0,0,289,0,0,0,0,0,0,0,320,10.3,10,10,1.2,91,9,999999999,8,0.073,0,88,0.2,0,1 +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,96,81900,0,0,289,0,0,0,0,0,0,0,330,8.2,10,10,1.2,122,9,999999999,8,0.073,0,88,0.2,0,1 +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,152,9,999999999,8,0.074,0,88,0.2,0,1 +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.6,95,82000,0,0,286,0,0,0,0,0,0,0,10,10.8,10,10,32,305,9,999999999,8,0.074,0,88,0.2,0,1 +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,-2.2,83,82200,0,0,284,0,0,0,0,0,0,0,30,7.2,10,10,32,2438,9,999999999,8,0.074,0,88,0.2,0,1 +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,8,0.074,0,88,0.2,0,1 +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,-2.8,79,82500,0,0,284,0,0,0,0,0,0,0,0,0,10,10,32,1219,9,999999999,8,0.074,0,88,0.2,0,1 +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,6706,9,999999999,8,0.074,0,88,0.2,0,1 +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,3415,0,3439,1180,100,3.1,10,10,48,6706,9,999999999,8,0.074,0,88,0.2,0,1 +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,-3.3,76,82800,425,1373,275,175,42,162,19004,2998,17678,4999,160,4.1,10,9,64,6706,9,999999999,8,0.074,0,88,0.2,0,1 +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,42848,29613,22663,7741,170,4.1,7,7,96,6706,9,999999999,8,0.074,0,88,0.2,0,1 +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,65793,45021,17985,7138,190,3.1,3,3,96,77777,9,999999999,7,0.074,0,88,0.2,0,1 +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,78660,89037,14563,2630,170,3.6,1,1,96,77777,9,999999999,7,0.074,0,88,0.2,0,1 +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,87809,97743,9709,2409,300,7.7,1,1,96,77777,9,999999999,7,0.074,0,88,0.2,0,1 +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,-8.3,25,82700,1084,1373,287,822,939,80,86552,94891,10999,2656,350,6.2,2,2,96,77777,9,999999999,7,0.074,0,88,0.2,0,1 +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,91815,57609,20249,8290,70,2.6,3,3,96,77777,9,999999999,7,0.074,0,88,0.2,0,1 +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,68183,88250,11126,1975,220,5.2,2,2,96,77777,9,999999999,7,0.074,0,88,0.2,0,1 +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,54549,44834,12362,4764,190,3.1,3,3,96,77777,9,999999999,6,0.074,0,88,0.2,0,1 +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,27867,24585,7370,2657,180,2.6,2,2,96,77777,9,999999999,6,0.074,0,88,0.2,0,1 +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,11792,0,3040,996,300,6.7,1,1,96,77777,9,999999999,6,0.074,0,88,0.2,0,1 +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,26,82800,9,378,264,2,62,1,0,0,0,0,270,6.2,0,0,64,77777,9,999999999,6,0.074,0,88,0.2,0,1 +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,77777,9,999999999,6,0.074,0,88,0.2,0,1 +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,77777,9,999999999,5,0.074,0,88,0.2,0,1 +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,77777,9,999999999,5,0.074,0,88,0.2,0,1 +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,77777,9,999999999,5,0.074,0,88,0.2,0,1 +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,77777,9,999999999,5,0.074,0,88,0.2,0,1 +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,77777,9,999999999,5,0.074,0,88,0.2,0,1 +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,77777,9,999999999,5,0.074,0,88,0.2,0,1 +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,72,82900,0,0,240,0,0,0,0,0,0,0,180,2.6,0,0,48,77777,9,999999999,4,0.074,0,88,0.2,0,1 +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,77777,9,999999999,4,0.074,0,88,0.2,0,1 +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,77777,9,999999999,4,0.074,0,88,0.2,0,1 +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,77777,9,999999999,4,0.074,0,88,0.2,0,1 +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,9284,0,3100,982,180,3.1,0,0,128,77777,9,999999999,4,0.074,0,88,0.2,0,1 +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,30373,69310,7331,1029,190,2.6,0,0,112,77777,9,999999999,4,0.074,0,88,0.2,0,1 +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,52608,86656,9682,1481,360,2.1,0,0,112,77777,9,999999999,4,0.074,0,88,0.2,0,1 +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,25,83000,868,1372,268,678,948,78,71373,94758,11157,1936,20,3.1,0,0,112,77777,9,999999999,4,0.074,0,88,0.2,0,1 +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,84927,98773,12067,2455,10,3.6,0,0,112,77777,9,999999999,4,0.074,0,88,0.2,0,1 +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,92132,100528,12543,2890,90,5.2,0,0,112,77777,9,999999999,4,0.074,0,88,0.2,0,1 +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,-10.6,20,82900,1089,1372,276,883,996,92,92458,100453,12530,2918,40,5.2,0,0,112,77777,9,999999999,4,0.074,0,88,0.2,0,1 +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,86046,98909,12165,2525,120,3.1,0,0,96,77777,9,999999999,5,0.074,0,88,0.2,0,1 +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,73383,95337,11383,2008,110,3.6,0,0,96,77777,9,999999999,5,0.074,0,88,0.2,0,1 +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,55188,87881,9921,1539,110,2.1,0,0,96,77777,9,999999999,5,0.074,0,88,0.2,0,1 +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,-11.7,18,82800,465,1372,275,314,780,49,33281,72174,7599,1090,70,3.6,0,0,80,77777,9,999999999,5,0.074,0,88,0.2,0,1 +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,12150,671,3478,1128,100,2.6,0,0,64,77777,9,999999999,5,0.074,0,88,0.2,0,1 +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,77777,9,999999999,5,0.074,0,88,0.2,0,1 +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,77777,9,999999999,5,0.074,0,88,0.2,0,1 +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,26,82900,0,0,266,0,0,0,0,0,0,0,260,6.2,0,0,32,77777,9,999999999,5,0.074,0,88,0.2,0,1 +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,77777,9,999999999,5,0.074,0,88,0.2,0,1 +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,77777,9,999999999,5,0.074,0,88,0.2,0,1 +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,77777,9,999999999,5,0.074,0,88,0.2,0,1 +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,77777,9,999999999,5,0.075,0,88,0.2,0,1 +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,77777,9,999999999,5,0.075,0,88,0.2,0,1 +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,77777,9,999999999,5,0.075,0,88,0.2,0,1 +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,3962,9,999999999,5,0.075,0,88,0.2,0,1 +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,3962,9,999999999,5,0.075,0,88,0.2,0,1 +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,8,8,64,3962,9,999999999,5,0.075,0,88,0.2,0,1 +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,5661,128,4675,1384,180,2.6,9,7,96,3962,9,999999999,5,0.075,0,88,0.2,0,1 +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,11201,0,11288,4134,180,2.1,10,10,96,6096,9,999999999,5,0.075,0,88,0.2,0,1 +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,18978,0,19138,7470,170,2.6,10,10,96,3048,9,999999999,5,0.075,0,88,0.2,0,1 +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,50878,20267,35487,12284,70,3.1,10,9,80,1829,9,999999999,5,0.075,0,88,0.2,0,1 +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,24200,0,24428,10847,10,7.2,10,10,64,2743,9,999999999,6,0.075,0,88,0.2,0,1 +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,26246,0,26498,11815,40,7.7,10,10,16,2286,9,999999999,6,0.075,0,88,0.2,0,1 +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,18440,0,18618,8858,360,8.2,10,10,1,122,9,999999999,6,0.075,0,88,0.2,0,1 +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,17189,0,17352,8232,30,5.2,10,10,2.8,183,9,999999999,6,0.075,0,88,0.2,0,1 +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,20946,0,21136,9226,30,5.7,10,10,19.2,914,9,999999999,6,0.075,0,88,0.2,0,1 +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,15833,0,15969,6681,10,7.2,10,10,32,1829,9,999999999,6,0.075,0,88,0.2,0,1 +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,17719,2335,16464,5139,10,8.2,10,9,48,4267,9,999999999,6,0.075,0,88,0.2,0,1 +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,-5.6,62,83500,208,1371,260,93,88,79,9948,2521,8486,2144,360,8.2,10,6,48,4267,9,999999999,6,0.075,0,88,0.2,0,1 +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,1829,9,999999999,6,0.075,0,88,0.2,0,1 +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,853,9,999999999,6,0.075,0,88,0.2,0,1 +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,76,83800,0,0,275,0,0,0,0,0,0,0,10,6.7,10,10,6.4,914,9,999999999,6,0.075,0,88,0.2,0,1 +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,6,0.075,0,88,0.2,0,1 +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,6,0.075,0,88,0.2,0,1 +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,10,10,8,1067,9,999999999,6,0.075,0,88,0.2,0,1 +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,10,10,9.6,1250,9,999999999,6,0.076,0,88,0.2,0,1 +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,6,0.076,0,88,0.2,0,1 +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,6,0.076,0,88,0.2,0,1 +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,77777,9,999999999,6,0.076,0,88,0.2,0,1 +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,91,83900,0,0,230,0,0,0,0,0,0,0,190,3.1,0,0,32,77777,9,999999999,6,0.076,0,88,0.2,0,1 +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,6,286,228,1,47,0,0,0,0,0,190,3.6,0,0,64,77777,9,999999999,6,0.076,0,88,0.2,0,1 +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,10259,40423,3600,497,200,4.6,0,0,96,77777,9,999999999,6,0.076,0,88,0.2,0,1 +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,32672,75992,5835,964,200,4.6,0,0,112,77777,9,999999999,6,0.076,0,88,0.2,0,1 +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,54964,91468,7683,1350,190,4.6,0,0,112,77777,9,999999999,6,0.076,0,88,0.2,0,1 +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,73642,98621,8965,1748,200,4.1,0,0,112,77777,9,999999999,6,0.076,0,88,0.2,0,1 +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,86843,101951,9678,2186,230,1.5,0,0,104,77777,9,999999999,6,0.076,0,88,0.2,0,1 +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,94004,103476,9937,2532,170,2.6,0,0,104,77777,9,999999999,6,0.076,0,88,0.2,0,1 +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,94322,103518,10058,2575,260,2.1,0,0,96,77777,9,999999999,6,0.076,0,88,0.2,0,1 +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,19,83900,1031,1371,283,833,1014,69,88020,102304,9656,2223,40,2.1,0,0,96,77777,9,999999999,6,0.076,0,88,0.2,0,1 +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,75381,99167,9071,1796,60,3.6,0,0,96,77777,9,999999999,6,0.076,0,88,0.2,0,1 +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,57278,92698,7796,1387,30,5.2,0,0,96,77777,9,999999999,6,0.076,0,88,0.2,0,1 +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,20,84000,474,1371,281,330,843,39,35256,78514,6114,1014,70,3.1,0,0,96,77777,9,999999999,6,0.076,0,88,0.2,0,1 +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,-10,21,84000,213,1371,276,118,610,24,12594,46171,3913,562,60,2.1,0,0,96,77777,9,999999999,5,0.076,0,88,0.2,0,1 +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,77777,9,999999999,5,0.076,0,88,0.2,0,1 +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,77777,9,999999999,5,0.076,0,88,0.2,0,1 +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,48,84200,0,0,260,0,0,0,0,0,0,0,150,2.6,0,0,32,77777,9,999999999,5,0.076,0,88,0.2,0,1 +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,77777,9,999999999,5,0.076,0,88,0.2,0,1 +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,54,84300,0,0,254,0,0,0,0,0,0,0,190,3.6,0,0,32,77777,9,999999999,5,0.076,0,88,0.2,0,1 +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,77777,9,999999999,5,0.076,0,88,0.2,0,1 +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,77777,9,999999999,5,0.077,0,88,0.2,0,1 +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,77777,9,999999999,5,0.077,0,88,0.2,0,1 +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,77777,9,999999999,5,0.077,0,88,0.2,0,1 +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,77777,9,999999999,5,0.077,0,88,0.2,0,1 +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,77777,9,999999999,5,0.077,0,88,0.2,0,1 +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,77777,9,999999999,5,0.077,0,88,0.2,0,1 +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,9205,1088,4502,1379,200,5.2,0,0,96,77777,9,999999999,5,0.077,0,88,0.2,0,1 +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,32861,31281,8443,2994,190,3.6,0,0,96,77777,9,999999999,5,0.077,0,88,0.2,0,1 +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,59112,49792,11908,4595,150,3.1,0,0,112,77777,9,999999999,5,0.077,0,88,0.2,0,1 +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,82472,58359,14591,5924,170,2.1,0,0,112,77777,9,999999999,5,0.077,0,88,0.2,0,1 +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,15,84300,1025,1370,299,807,901,132,99875,62102,16399,6813,160,3.1,0,0,112,77777,9,999999999,5,0.077,0,88,0.2,0,1 +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,14,84200,1099,1370,304,877,919,138,90736,92427,18306,3541,170,3.6,0,0,112,77777,9,999999999,5,0.077,0,88,0.2,0,1 +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,13,84200,1103,1370,308,880,920,139,91025,92531,18417,3585,150,2.1,0,0,112,77777,9,999999999,5,0.077,0,88,0.2,0,1 +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,12,84100,1036,1370,310,817,904,133,101208,62347,16540,6879,200,2.1,0,0,112,77777,9,999999999,5,0.077,0,88,0.2,0,1 +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,12,84000,902,1370,315,691,866,121,84549,59040,14859,6053,80,1.5,0,0,112,77777,9,999999999,5,0.077,0,88,0.2,0,1 +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,12,84000,712,1370,315,514,794,101,61801,51268,12183,4733,120,4.6,0,0,112,77777,9,999999999,5,0.077,0,88,0.2,0,1 +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,35667,34035,8824,3162,120,4.1,0,0,96,77777,9,999999999,5,0.077,0,88,0.2,0,1 +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,11284,4018,4978,1554,120,3.1,0,0,96,77777,9,999999999,5,0.077,0,88,0.2,0,1 +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,77777,9,999999999,5,0.077,0,88,0.2,0,1 +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,77777,9,999999999,5,0.077,0,88,0.2,0,1 +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,77777,9,999999999,5,0.077,0,88,0.2,0,1 +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,77777,9,999999999,5,0.077,0,88,0.2,0,1 +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,33,84000,0,0,278,0,0,0,0,0,0,0,170,5.7,5,1,32,77777,9,999999999,5,0.077,0,88,0.2,0,1 +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,4,1,32,77777,9,999999999,4,0.077,0,88,0.2,0,1 +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,6096,9,999999999,8,0.073,0,88,0.2,0,1 +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,77777,9,999999999,8,0.073,0,88,0.2,0,1 +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,-1.8,81,81300,0,0,254,0,0,0,0,0,0,0,350,2.8,0,0,16,77777,9,999999999,8,0.073,0,88,0.2,0,1 +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,77777,9,999999999,8,0.073,0,88,0.2,0,1 +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,-1.7,87,81900,0,0,285,0,0,0,0,0,0,0,30,3.1,10,10,16,6096,9,999999999,8,0.073,0,88,0.2,0,1 +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,244,9,999999999,8,0.073,0,88,0.2,0,1 +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,-1,80,81800,196,1369,294,24,0,24,2348,0,2364,927,10,3.6,10,10,16.1,300,9,999999999,8,0.073,0,88,0.2,0,1 +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,5903,0,5949,2544,30,4.1,10,10,16,305,9,999999999,8,0.073,0,88,0.2,0,1 +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,8878,0,8954,4122,30,4.6,10,10,16,305,9,999999999,9,0.073,0,88,0.2,0,1 +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,11306,0,11409,5496,10,5.7,10,10,16,366,9,999999999,9,0.073,0,88,0.2,0,1 +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,18250,0,18423,8671,20,5.7,10,10,16,366,9,999999999,9,0.073,0,88,0.2,0,1 +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,19205,0,19391,9183,20,4.1,10,10,16,427,9,999999999,9,0.073,0,88,0.2,0,1 +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,15093,0,15240,7451,360,3.6,10,10,16,488,9,999999999,9,0.073,0,88,0.2,0,1 +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,36760,3046,33804,12948,30,4.6,10,10,16,427,9,999999999,9,0.073,0,88,0.2,0,1 +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,12459,0,12573,6020,20,3.6,10,10,16,427,9,999999999,9,0.073,0,88,0.2,0,1 +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,8995,0,9073,4207,360,3.1,10,10,16,427,9,999999999,9,0.073,0,88,0.2,0,1 +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,5112,0,5153,2274,350,2.6,10,10,2.4,488,9,999999999,9,0.073,0,88,0.2,0,1 +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,1961,0,1975,810,350,3.6,10,10,1.6,274,9,999999999,9,0.073,0,88,0.2,0,1 +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,9,0.073,0,88,0.2,0,1 +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,9,0.073,0,88,0.2,0,1 +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,9,0.073,0,88,0.2,0,1 +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,91,9,999999999,9,0.073,0,88,0.2,0,1 +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,9,0.073,0,88,0.2,0,1 +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,91,82300,0,0,266,0,0,0,0,0,0,0,360,5.2,10,10,1.2,122,9,999999999,10,0.073,0,88,0.2,0,1 +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,-5,92,82300,0,0,265,0,0,0,0,0,0,0,360,5.1,10,10,1.2,15,9,999999999,10,0.074,0,88,0.2,0,1 +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,-6,84,82400,0,0,264,0,0,0,0,0,0,0,360,4.6,10,10,4,450,9,999999999,10,0.074,0,88,0.2,0,1 +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,95,82400,0,0,264,0,0,0,0,0,0,0,340,5.2,10,10,3.2,762,9,999999999,10,0.074,0,88,0.2,0,1 +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,-5.6,95,82400,0,0,261,0,0,0,0,0,0,0,350,5.7,10,10,3.2,91,9,999999999,10,0.074,0,88,0.2,0,1 +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,-5.6,95,82800,0,0,261,0,0,0,0,0,0,0,350,5.2,10,10,3.2,122,9,999999999,10,0.074,0,88,0.2,0,1 +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,10,0.074,0,88,0.2,0,1 +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,-6,100,82400,203,1368,257,46,0,46,4508,0,4539,1566,10,4.6,10,10,3.2,120,9,999999999,10,0.074,0,88,0.2,0,1 +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,-6.1,91,82500,466,1368,260,81,0,81,8118,0,8182,3335,360,5.2,10,10,2,244,9,999999999,9,0.074,0,88,0.2,0,1 +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,10938,0,11031,4947,360,4.1,10,10,2.2,549,9,999999999,9,0.074,0,88,0.2,0,1 +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,13917,0,14043,6602,10,3.1,10,10,2.4,549,9,999999999,9,0.074,0,88,0.2,0,1 +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,15649,0,15797,7603,50,4.6,10,10,2.4,549,9,999999999,9,0.074,0,88,0.2,0,1 +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,22507,0,22725,10486,40,3.6,10,10,16,396,9,999999999,9,0.074,0,88,0.2,0,1 +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,18919,0,19102,9069,40,2.6,10,10,14.4,488,9,999999999,9,0.074,0,88,0.2,0,1 +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,15980,0,16132,7755,360,3.6,10,10,16,579,9,999999999,9,0.074,0,88,0.2,0,1 +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,12479,0,12593,6031,350,3.6,10,10,16,396,9,999999999,9,0.074,0,88,0.2,0,1 +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,9008,0,9086,4216,40,4.1,10,10,0.8,183,9,999999999,8,0.074,0,88,0.2,0,1 +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,5622,0,5666,2477,70,1.5,10,10,0.4,152,9,999999999,8,0.074,0,88,0.2,0,1 +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,-6,92,82300,226,1368,260,20,0,20,1964,0,1978,814,70,2.1,10,10,2.4,1800,9,999999999,8,0.074,0,88,0.2,0,1 +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,305,9,999999999,8,0.074,0,88,0.2,0,1 +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,-7,92,82300,0,0,256,0,0,0,0,0,0,0,150,2.1,10,10,4,1500,9,999999999,8,0.074,0,88,0.2,0,1 +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,8,0.074,0,88,0.2,0,1 +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,1524,9,999999999,8,0.074,0,88,0.2,0,1 +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,1402,9,999999999,8,0.074,0,88,0.2,0,1 +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,1280,9,999999999,8,0.074,0,88,0.2,0,1 +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,1158,9,999999999,7,0.075,0,88,0.2,0,1 +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,1036,9,999999999,7,0.075,0,88,0.2,0,1 +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,77777,9,999999999,7,0.075,0,88,0.2,0,1 +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,-8,92,81700,0,0,244,0,0,0,0,0,0,0,100,4.1,9,9,16.1,660,9,999999999,7,0.075,0,88,0.2,0,1 +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,610,9,999999999,7,0.075,0,88,0.2,0,1 +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,7,0.075,0,88,0.2,0,1 +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,2158,0,2173,873,0,0,10,10,11.2,549,9,999999999,7,0.075,0,88,0.2,0,1 +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,-6.7,86,81800,472,1367,253,52,0,52,5215,0,5256,2299,290,3.1,9,9,11.2,914,9,999999999,7,0.075,0,88,0.2,0,1 +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,8898,0,8974,4150,320,3.6,9,9,11.2,914,9,999999999,7,0.075,0,88,0.2,0,1 +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,12574,0,12689,6057,290,3.1,9,9,14.4,213,9,999999999,7,0.075,0,88,0.2,0,1 +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,38851,2135,36985,13861,240,2.1,9,9,12.8,6096,9,999999999,6,0.075,0,88,0.2,0,1 +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,52610,7926,44943,16308,190,2.6,9,9,11.2,6096,9,999999999,6,0.075,0,88,0.2,0,1 +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,-5.6,62,82000,1117,1367,273,602,270,381,69567,25283,44316,16165,150,2.1,9,9,16,6096,9,999999999,6,0.075,0,88,0.2,0,1 +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,52,82100,1049,1367,287,608,346,341,70171,31566,39601,14607,90,3.6,9,9,16,6096,9,999999999,6,0.075,0,88,0.2,0,1 +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,60030,31205,33299,12105,110,2.6,9,9,16,6096,9,999999999,6,0.075,0,88,0.2,0,1 +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,45389,27868,25258,8778,120,4.6,9,9,16,6096,9,999999999,6,0.075,0,88,0.2,0,1 +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,24322,12960,17069,5401,150,5.7,9,9,16,6706,9,999999999,6,0.075,0,88,0.2,0,1 +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,14136,9266,7368,2113,160,3.6,9,9,16,6096,9,999999999,6,0.075,0,88,0.2,0,1 +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,69,82200,18,536,271,0,0,0,0,0,0,0,150,3.1,9,9,16,6096,9,999999999,6,0.075,0,88,0.2,0,1 +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,79,82200,0,0,265,0,0,0,0,0,0,0,110,3.1,9,9,16,6706,9,999999999,6,0.075,0,88,0.2,0,1 +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,77777,9,999999999,6,0.075,0,88,0.2,0,1 +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,77777,9,999999999,6,0.075,0,88,0.2,0,1 +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,77777,9,999999999,6,0.075,0,88,0.2,0,1 +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,77777,9,999999999,5,0.075,0,88,0.2,0,1 +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,77777,9,999999999,5,0.075,0,88,0.2,0,1 +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,77777,9,999999999,5,0.075,0,88,0.2,0,1 +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,77777,9,999999999,5,0.075,0,88,0.2,0,1 +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,6096,9,999999999,5,0.075,0,88,0.2,0,1 +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,3353,9,999999999,5,0.075,0,88,0.2,0,1 +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,-8.3,75,82100,14,467,251,0,0,0,0,0,0,0,150,2.6,9,9,16,6096,9,999999999,5,0.075,0,88,0.2,0,1 +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,10673,4041,8226,2180,190,4.6,9,9,16,6096,9,999999999,5,0.075,0,88,0.2,0,1 +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,-5.6,62,82400,479,1367,273,301,534,113,34177,32409,12879,4359,210,3.1,9,9,16,2743,9,999999999,6,0.075,0,88,0.2,0,1 +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,55596,44790,19079,7040,250,2.6,9,9,16,6096,9,999999999,6,0.075,0,88,0.2,0,1 +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,81281,56270,18594,7471,200,2.1,9,9,16,6706,9,999999999,6,0.075,0,88,0.2,0,1 +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,101039,61894,19434,8026,150,3.6,9,9,16,6096,9,999999999,6,0.075,0,88,0.2,0,1 +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,106564,60666,20092,8331,150,5.7,9,9,16,7620,9,999999999,6,0.075,0,88,0.2,0,1 +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,97276,54873,28820,11544,160,7.2,9,9,16,7620,9,999999999,6,0.075,0,88,0.2,0,1 +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,95818,58562,23645,9609,180,6.7,9,9,16,7620,9,999999999,7,0.075,0,88,0.2,0,1 +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,65517,37737,32483,11917,160,7.2,9,9,16,7620,9,999999999,7,0.075,0,88,0.2,0,1 +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,35,82500,728,1367,320,318,118,256,35616,10481,28831,9615,180,11.8,10,10,16,7620,9,999999999,7,0.075,0,88,0.2,0,1 +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,17605,1995,16565,5323,170,9.3,10,10,16,7620,9,999999999,7,0.075,0,88,0.2,0,1 +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,7205,761,6561,1972,160,9.3,10,10,16,7620,9,999999999,7,0.075,0,88,0.2,0,1 +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,7620,9,999999999,7,0.075,0,88,0.2,0,1 +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,7620,9,999999999,7,0.075,0,88,0.2,0,1 +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,3658,9,999999999,8,0.075,0,88,0.2,0,1 +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,3353,9,999999999,8,0.075,0,88,0.2,0,1 +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,1372,9,999999999,8,0.075,0,88,0.2,0,1 +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,8,0.075,0,88,0.2,0,1 +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,8,0.076,0,88,0.2,0,1 +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,-1,92,82000,0,0,286,0,0,0,0,0,0,0,10,3.1,10,10,3.2,30,9,999999999,8,0.076,0,88,0.2,0,1 +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,-1.1,91,82000,0,0,286,0,0,0,0,0,0,0,340,4.6,10,10,3.6,30,9,999999999,9,0.076,0,88,0.2,0,1 +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,-1.1,91,82100,0,0,286,0,0,0,0,0,0,0,340,8.2,10,10,2,30,9,999999999,9,0.076,0,88,0.2,0,1 +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.6,95,82300,0,0,286,0,0,0,0,0,0,0,340,7.2,10,10,0.4,30,9,999999999,9,0.076,0,88,0.2,0,1 +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,-1.1,91,82200,16,489,286,0,0,0,0,0,0,0,340,7.2,10,10,4,30,9,999999999,9,0.076,0,88,0.2,0,1 +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,-1.1,91,82300,224,1366,278,107,209,72,11612,5346,7843,2167,10,6.7,10,9,11.2,6096,9,999999999,9,0.076,0,88,0.2,0,1 +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,-1.1,91,82400,485,1366,278,241,178,178,26380,13454,19581,5824,360,3.6,10,9,14.4,6096,9,999999999,8,0.076,0,88,0.2,0,1 +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,36369,10915,29281,9648,10,4.1,8,5,16,77777,9,999999999,8,0.076,0,88,0.2,0,1 +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,86278,60744,24011,9377,20,8.2,7,5,16,77777,9,999999999,8,0.076,0,88,0.2,0,1 +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,88830,98413,12876,2769,10,4.6,8,5,16,77777,9,999999999,8,0.076,0,88,0.2,0,1 +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,94506,96741,15601,3615,10,4.1,8,5,16,77777,9,999999999,8,0.076,0,88,0.2,0,1 +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,95181,94384,19202,3917,10,4.6,8,5,16,77777,9,999999999,8,0.076,0,88,0.2,0,1 +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,88239,97172,12986,2814,350,2.6,7,5,16,77777,9,999999999,8,0.076,0,88,0.2,0,1 +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,74700,91833,13041,2229,320,3.6,8,5,16,77777,9,999999999,7,0.076,0,88,0.2,0,1 +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,62530,50456,13342,5193,0,0,7,5,16,77777,9,999999999,7,0.076,0,88,0.2,0,1 +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,39464,37119,8317,3032,180,2.1,8,5,16,77777,9,999999999,7,0.076,0,88,0.2,0,1 +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,15307,7919,5229,1664,110,5.2,7,5,16,77777,9,999999999,7,0.076,0,88,0.2,0,1 +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,-3.3,53,82900,21,580,280,0,0,0,0,0,0,0,120,4.1,8,5,16,77777,9,999999999,7,0.076,0,88,0.2,0,1 +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,77777,9,999999999,7,0.076,0,88,0.2,0,1 +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,77777,9,999999999,7,0.076,0,88,0.2,0,1 +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,77777,9,999999999,7,0.076,0,88,0.2,0,1 +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,77777,9,999999999,6,0.076,0,88,0.2,0,1 +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,77777,9,999999999,6,0.076,0,88,0.2,0,1 +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,77777,9,999999999,6,0.076,0,88,0.2,0,1 +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,77777,9,999999999,6,0.076,0,88,0.2,0,1 +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,77777,9,999999999,6,0.076,0,88,0.2,0,1 +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,77777,9,999999999,6,0.076,0,88,0.2,0,1 +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,77777,9,999999999,6,0.076,0,88,0.2,0,1 +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,-4.4,69,82800,18,535,259,0,0,0,0,0,0,0,270,3.1,6,5,16,77777,9,999999999,6,0.076,0,88,0.2,0,1 +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,14812,10161,7871,2207,250,3.6,6,5,16,77777,9,999999999,6,0.076,0,88,0.2,0,1 +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,39860,38371,9820,3512,360,3.6,6,5,16,77777,9,999999999,6,0.076,0,88,0.2,0,1 +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,68651,54896,10968,4317,270,3.6,2,2,16,77777,9,999999999,6,0.076,0,88,0.2,0,1 +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,-3.9,36,83400,920,1365,295,707,911,92,74391,91634,12920,2212,210,2.1,3,3,16,77777,9,999999999,6,0.076,0,88,0.2,0,1 +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,85555,92475,14523,2970,150,2.6,2,2,16,77777,9,999999999,6,0.076,0,88,0.2,0,1 +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,92834,93472,16704,3783,90,4.1,6,5,16,77777,9,999999999,6,0.076,0,88,0.2,0,1 +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,93962,93146,18439,3938,90,6.7,5,4,16,77777,9,999999999,6,0.076,0,88,0.2,0,1 +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,105863,63070,16945,7066,170,9.3,3,3,16,77777,9,999999999,6,0.076,0,88,0.2,0,1 +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,74824,91820,12633,2219,180,9.3,2,2,16,77777,9,999999999,6,0.076,0,88,0.2,0,1 +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,67771,53779,10654,4209,170,8.8,3,3,16,77777,9,999999999,6,0.076,0,88,0.2,0,1 +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,12,82600,502,1365,323,349,771,64,41703,39254,7666,2816,280,5.2,2,2,16,77777,9,999999999,6,0.076,0,88,0.2,0,1 +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,15662,7348,4501,1471,280,4.1,3,3,16,77777,9,999999999,6,0.076,0,88,0.2,0,1 +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,27,83100,23,603,310,0,0,0,0,0,0,0,290,2.6,6,5,16,77777,9,999999999,7,0.076,0,88,0.2,0,1 +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,77777,9,999999999,7,0.076,0,88,0.2,0,1 +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,77777,9,999999999,7,0.076,0,88,0.2,0,1 +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,-3.9,36,83100,0,0,283,0,0,0,0,0,0,0,210,5.2,0,0,16,77777,9,999999999,7,0.076,0,88,0.2,0,1 +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,77777,9,999999999,7,0.076,0,88,0.2,0,1 +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,77777,9,999999999,7,0.076,0,88,0.2,0,1 +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,77777,9,999999999,7,0.077,0,88,0.2,0,1 +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,77777,9,999999999,7,0.077,0,88,0.2,0,1 +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,77777,9,999999999,7,0.077,0,88,0.2,0,1 +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,77777,9,999999999,7,0.077,0,88,0.2,0,1 +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,77777,9,999999999,7,0.077,0,88,0.2,0,1 +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,77777,9,999999999,7,0.077,0,88,0.2,0,1 +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,16714,13088,7895,2245,150,2.1,0,0,16,77777,9,999999999,7,0.077,0,88,0.2,0,1 +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,43323,42297,9512,3427,110,5.2,0,0,16,77777,9,999999999,7,0.077,0,88,0.2,0,1 +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,67639,54357,11551,4542,100,7.2,4,3,16,77777,9,999999999,7,0.077,0,88,0.2,0,1 +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,73296,88327,14222,2293,100,6.2,4,2,16,77777,9,999999999,7,0.077,0,88,0.2,0,1 +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,19,83200,1061,1364,330,818,881,131,101785,59611,16364,6836,120,8.8,4,3,16,77777,9,999999999,7,0.077,0,88,0.2,0,1 +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,95137,96742,15319,3687,110,9.8,4,2,16,77777,9,999999999,7,0.077,0,88,0.2,0,1 +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,94227,97031,13552,3454,140,10.3,4,3,16,77777,9,999999999,7,0.077,0,88,0.2,0,1 +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,87657,95366,13221,2895,140,12.9,9,5,16,77777,9,999999999,7,0.077,0,88,0.2,0,1 +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,77539,96198,11430,2138,130,11.8,9,5,16,77777,9,999999999,7,0.077,0,88,0.2,0,1 +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,-7.8,13,83100,740,1364,339,561,871,87,68559,54289,10663,4217,150,13.4,9,5,16,77777,9,999999999,7,0.077,0,88,0.2,0,1 +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,42378,39597,7559,2785,140,14.9,9,5,16,77777,9,999999999,7,0.077,0,88,0.2,0,1 +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,16374,7801,4507,1479,130,14.4,9,5,14.4,77777,9,999999999,7,0.077,0,88,0.2,0,1 +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,6096,9,999999999,7,0.077,0,88,0.2,0,1 +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,6096,9,999999999,7,0.077,0,88,0.2,0,1 +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,6096,9,999999999,7,0.077,0,88,0.2,0,1 +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.6,47,82000,0,0,321,0,0,0,0,0,0,0,160,9.8,10,9,16,6096,9,999999999,7,0.077,0,88,0.2,0,1 +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,77777,9,999999999,7,0.077,0,88,0.2,0,1 +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,6096,9,999999999,7,0.077,0,88,0.2,0,1 +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,-3,34,81700,0,0,309,0,0,0,0,0,0,0,240,7.7,9,5,16.1,77777,9,999999999,7,0.077,0,88,0.2,0,1 +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,77777,9,999999999,7,0.077,0,88,0.2,0,1 +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,2591,9,999999999,7,0.077,0,88,0.2,0,1 +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,1981,9,999999999,7,0.077,0,88,0.2,0,1 +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,1494,9,999999999,7,0.077,0,88,0.2,0,1 +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,26,81600,24,602,296,0,0,0,0,0,0,0,280,11.3,10,9,16,2591,9,999999999,7,0.077,0,88,0.2,0,1 +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,26,81700,244,1363,298,140,182,108,14834,8551,11497,2698,280,9.8,10,9,16,3962,9,999999999,7,0.077,0,88,0.2,0,1 +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,24,81800,504,1363,303,87,0,87,8755,0,8824,3652,300,15.5,10,9,16,4267,9,999999999,7,0.077,0,88,0.2,0,1 +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,-9.4,22,82000,738,1363,311,464,399,248,52254,35140,28080,9546,280,16,10,9,16,6096,9,999999999,7,0.077,0,88,0.2,0,1 +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,84553,58154,20570,8238,300,15.5,9,5,14.4,77777,9,999999999,7,0.077,0,88,0.2,0,1 +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,87527,91714,17280,3230,300,12.9,9,5,16,77777,9,999999999,7,0.077,0,88,0.2,0,1 +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,95372,96455,15671,3785,330,10.8,9,5,16,77777,9,999999999,7,0.077,0,88,0.2,0,1 +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,93291,95050,14292,3610,320,9.3,4,2,16,77777,9,999999999,7,0.077,0,88,0.2,0,1 +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,86762,93398,13847,2993,300,10.8,4,3,16,77777,9,999999999,7,0.077,0,88,0.2,0,1 +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,74776,90662,13011,2272,300,7.7,4,2,16,77777,9,999999999,7,0.077,0,88,0.2,0,1 +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,63307,50516,13596,5308,350,4.1,4,3,16,77777,9,999999999,7,0.077,0,88,0.2,0,1 +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,39407,37052,9110,3317,330,5.2,4,2,16,77777,9,999999999,7,0.077,0,88,0.2,0,1 +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,16221,9404,5153,1667,350,4.6,4,3,16,77777,9,999999999,6,0.077,0,88,0.2,0,1 +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,77777,9,999999999,6,0.077,0,88,0.2,0,1 +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,67,82800,0,0,269,0,0,0,0,0,0,0,80,3.1,0,0,16,77777,9,999999999,6,0.077,0,88,0.2,0,1 +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,77777,9,999999999,6,0.077,0,88,0.2,0,1 +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,77777,9,999999999,6,0.077,0,88,0.2,0,1 +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,77777,9,999999999,6,0.077,0,88,0.2,0,1 +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,77777,9,999999999,6,0.077,0,88,0.2,0,1 +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,77777,9,999999999,6,0.078,0,88,0.2,0,1 +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,77777,9,999999999,6,0.078,0,88,0.2,0,1 +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,77777,9,999999999,6,0.078,0,88,0.2,0,1 +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,-2.8,79,82200,0,0,246,0,0,0,0,0,0,0,170,4.6,0,0,16,77777,9,999999999,6,0.078,0,88,0.2,0,1 +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,77777,9,999999999,6,0.078,0,88,0.2,0,1 +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,77777,9,999999999,6,0.078,0,88,0.2,0,1 +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,67,82300,250,1362,269,167,476,80,18167,15339,8737,2457,150,8.2,0,0,16,77777,9,999999999,6,0.078,0,88,0.2,0,1 +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,43274,40773,9316,3389,180,11.3,0,0,16,77777,9,999999999,6,0.078,0,88,0.2,0,1 +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,69110,53804,11676,4612,170,11.8,3,3,16,77777,9,999999999,5,0.078,0,88,0.2,0,1 +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,77514,92872,14331,2343,140,11.8,2,2,16,77777,9,999999999,5,0.078,0,88,0.2,0,1 +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,88487,95250,13719,2997,140,12.9,3,3,16,77777,9,999999999,5,0.078,0,88,0.2,0,1 +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,114959,64077,18887,7856,160,14.9,7,5,16,77777,9,999999999,5,0.078,0,88,0.2,0,1 +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,102654,57717,31159,12358,180,12.4,10,9,16,3048,9,999999999,5,0.078,0,88,0.2,0,1 +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,48129,13613,33374,12943,220,9.3,10,10,16,3048,9,999999999,5,0.078,0,88,0.2,0,1 +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,-9.4,16,81800,937,1362,333,639,582,237,74715,47961,27856,10697,250,7.2,10,9,16,3962,9,999999999,5,0.078,0,88,0.2,0,1 +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,62439,50056,16590,6360,310,10.8,10,9,16,3962,9,999999999,5,0.078,0,88,0.2,0,1 +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,40654,40428,15422,5163,290,10.3,10,9,16,3962,9,999999999,5,0.078,0,88,0.2,0,1 +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,23,81800,255,1362,305,55,0,55,5418,0,5457,1951,270,12.4,10,9,16,3048,9,999999999,5,0.078,0,88,0.2,0,1 +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,2134,9,999999999,5,0.078,0,88,0.2,0,1 +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,2134,9,999999999,5,0.078,0,88,0.2,0,1 +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,5,0.078,0,88,0.2,0,1 +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,10,10,16,3048,9,999999999,5,0.078,0,88,0.2,0,1 +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,2743,9,999999999,5,0.078,0,88,0.2,0,1 +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,4572,9,999999999,5,0.078,0,88,0.2,0,1 +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,77777,9,999999999,5,0.079,0,88,0.2,0,1 +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,77777,9,999999999,4,0.079,0,88,0.2,0,1 +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,9,5,16,77777,9,999999999,4,0.079,0,88,0.2,0,1 +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,77777,9,999999999,4,0.079,0,88,0.2,0,1 +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,6706,9,999999999,4,0.079,0,88,0.2,0,1 +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,77777,9,999999999,4,0.079,0,88,0.2,0,1 +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,20,82100,257,1362,265,174,508,78,19069,17661,8580,2461,270,9.8,9,5,16,77777,9,999999999,4,0.079,0,88,0.2,0,1 +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,-14.4,20,82300,516,1362,284,381,662,129,43254,44357,14704,4991,270,9.8,10,9,16,6706,9,999999999,4,0.079,0,88,0.2,0,1 +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,50511,30215,30138,10086,270,9.8,10,9,16,7315,9,999999999,4,0.079,0,88,0.2,0,1 +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,82214,55540,21398,8557,290,8.8,10,9,16,7315,9,999999999,4,0.079,0,88,0.2,0,1 +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,94584,56271,26332,10610,300,11.3,10,9,16,6096,9,999999999,4,0.079,0,88,0.2,0,1 +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,115059,64488,19028,7906,310,10.8,10,9,16,6096,9,999999999,4,0.079,0,88,0.2,0,1 +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,94281,95447,14260,3701,320,12.9,10,9,16,6096,9,999999999,4,0.079,0,88,0.2,0,1 +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,89104,96281,13052,2957,320,8.2,10,9,16,6096,9,999999999,4,0.079,0,88,0.2,0,1 +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,87029,60123,22397,8912,340,9.8,10,9,16,6096,9,999999999,4,0.079,0,88,0.2,0,1 +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,33030,7684,27635,9546,360,8.8,9,5,16,77777,9,999999999,4,0.079,0,88,0.2,0,1 +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,40862,40340,15230,5133,10,11.3,9,5,16,77777,9,999999999,4,0.079,0,88,0.2,0,1 +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,17214,10213,4747,1565,10,9.8,9,5,16,77777,9,999999999,4,0.079,0,88,0.2,0,1 +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,77777,9,999999999,4,0.079,0,88,0.2,0,1 +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,77777,9,999999999,4,0.079,0,88,0.2,0,1 +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,4,2,16,77777,9,999999999,4,0.079,0,88,0.2,0,1 +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,77777,9,999999999,4,0.079,0,88,0.2,0,1 +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,77777,9,999999999,4,0.079,0,88,0.2,0,1 +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,77777,9,999999999,4,0.079,0,88,0.2,0,1 +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,77777,9,999999999,4,0.079,0,88,0.2,0,1 +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,77777,9,999999999,4,0.079,0,88,0.2,0,1 +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,77777,9,999999999,4,0.079,0,88,0.2,0,1 +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,77777,9,999999999,4,0.079,0,88,0.2,0,1 +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,77777,9,999999999,4,0.079,0,88,0.2,0,1 +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,75,83100,33,714,217,0,81,0,0,0,0,0,150,4.1,0,0,16,77777,9,999999999,5,0.079,0,88,0.2,0,1 +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,-6.7,57,83500,263,1361,242,171,504,74,18851,16408,8187,2420,130,4.6,0,0,16,77777,9,999999999,5,0.079,0,88,0.2,0,1 +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,41770,40049,10768,3879,110,5.2,2,2,16,77777,9,999999999,5,0.079,0,88,0.2,0,1 +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,64547,51814,17709,6759,100,4.6,3,3,16,77777,9,999999999,5,0.079,0,88,0.2,0,1 +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,91549,61191,16789,6873,120,5.2,2,2,16,77777,9,999999999,5,0.079,0,88,0.2,0,1 +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,90948,98129,12792,2952,130,6.2,3,3,16,77777,9,999999999,5,0.079,0,88,0.2,0,1 +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,98657,99045,15504,3932,100,6.2,9,5,16,77777,9,999999999,5,0.079,0,88,0.2,0,1 +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,97185,98773,13752,3665,60,3.1,9,5,16,77777,9,999999999,5,0.079,0,88,0.2,0,1 +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,15,84100,1079,1361,317,853,824,198,103294,62321,24093,9817,130,4.6,9,5,16,77777,9,999999999,5,0.079,0,88,0.2,0,1 +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,-11.1,14,84000,945,1361,331,571,369,314,65392,33949,36175,13068,160,6.2,10,9,16,7620,9,999999999,6,0.079,0,88,0.2,0,1 +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,15,84000,754,1361,335,568,742,155,66623,54454,18257,6935,150,6.7,10,9,16,7620,9,999999999,6,0.079,0,88,0.2,0,1 +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,42987,40459,8476,3123,150,7.2,9,5,16,77777,9,999999999,6,0.079,0,88,0.2,0,1 +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,17774,10682,4858,1604,150,6.2,10,9,16,7315,9,999999999,6,0.079,0,88,0.2,0,1 +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,7315,9,999999999,6,0.079,0,88,0.2,0,1 +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,6096,9,999999999,6,0.079,0,88,0.2,0,1 +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,6096,9,999999999,6,0.079,0,88,0.2,0,1 +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,6096,9,999999999,6,0.079,0,88,0.2,0,1 +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,77777,9,999999999,6,0.079,0,88,0.2,0,1 +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,77777,9,999999999,7,0.079,0,88,0.2,0,1 +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,77777,9,999999999,7,0.08,0,88,0.2,0,1 +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,77777,9,999999999,7,0.08,0,88,0.2,0,1 +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,77777,9,999999999,7,0.08,0,88,0.2,0,1 +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,77777,9,999999999,7,0.08,0,88,0.2,0,1 +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,77777,9,999999999,7,0.08,0,88,0.2,0,1 +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,77777,9,999999999,7,0.08,0,88,0.2,0,1 +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,-3.9,51,83700,270,1360,272,178,564,66,19848,16520,7383,2276,250,4.6,2,2,16,77777,9,999999999,7,0.08,0,88,0.2,0,1 +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,45575,43226,9472,3473,280,3.1,3,3,16,77777,9,999999999,7,0.08,0,88,0.2,0,1 +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,-4.4,34,83900,761,1360,292,581,876,90,71058,54657,11040,4394,320,2.1,2,2,16,77777,9,999999999,7,0.08,0,88,0.2,0,1 +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,76369,89113,15197,2443,0,0,3,3,16,77777,9,999999999,7,0.08,0,88,0.2,0,1 +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,89681,92630,17092,3407,30,1.5,6,5,16,77777,9,999999999,8,0.08,0,88,0.2,0,1 +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,117882,64553,19378,8051,50,4.1,6,5,16,77777,9,999999999,8,0.08,0,88,0.2,0,1 +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,-5,17,84100,1153,1360,343,918,959,103,96127,97139,13745,3709,60,6.2,6,5,16,77777,9,999999999,8,0.08,0,88,0.2,0,1 +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,17,84000,1083,1360,366,871,968,99,91343,97912,13424,3059,70,6.7,10,9,16,6096,9,999999999,8,0.08,0,88,0.2,0,1 +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,90541,61275,20289,8189,70,8.2,10,9,16,6096,9,999999999,8,0.08,0,88,0.2,0,1 +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,44253,22832,27650,9614,70,8.8,10,9,16,6096,9,999999999,8,0.08,0,88,0.2,0,1 +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,21302,5475,18151,5865,50,9.3,10,9,16,6096,9,999999999,8,0.08,0,88,0.2,0,1 +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,16974,13325,8904,2571,50,7.2,10,9,16,6096,9,999999999,8,0.08,0,88,0.2,0,1 +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,6096,9,999999999,8,0.08,0,88,0.2,0,1 +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,3353,9,999999999,8,0.08,0,88,0.2,0,1 +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,6096,9,999999999,8,0.08,0,88,0.2,0,1 +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,77777,9,999999999,8,0.08,0,88,0.2,0,1 +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,77777,9,999999999,8,0.08,0,88,0.2,0,1 +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,77777,9,999999999,8,0.08,0,88,0.2,0,1 +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,-2.2,58,83100,0,0,276,0,0,0,0,0,0,0,300,4.1,3,3,16,77777,9,999999999,8,0.08,0,88,0.2,0,1 +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,77777,9,999999999,8,0.08,0,88,0.2,0,1 +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,77777,9,999999999,9,0.08,0,88,0.2,0,1 +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,77777,9,999999999,9,0.08,0,88,0.2,0,1 +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,77777,9,999999999,9,0.08,0,88,0.2,0,1 +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,0,0,0,0,250,4.6,5,5,16,77777,9,999999999,9,0.08,0,88,0.2,0,1 +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,20448,17925,8319,2503,270,3.6,5,5,16,77777,9,999999999,9,0.08,0,88,0.2,0,1 +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,44880,42437,11110,4020,320,5.7,5,5,16,77777,9,999999999,9,0.08,0,88,0.2,0,1 +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,43,83400,766,1359,332,561,772,125,66926,51459,14968,5858,340,6.2,9,9,16,6096,9,999999999,9,0.08,0,88,0.2,0,1 +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,2.8,44,83500,955,1359,329,717,710,218,84420,54503,25799,10138,320,7.2,5,5,16,77777,9,999999999,10,0.08,0,88,0.2,0,1 +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,39314,5341,33268,12992,10,7.7,7,7,16,2438,9,999999999,10,0.08,0,88,0.2,0,1 +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,70286,22588,46161,16828,20,9.3,9,9,16,6096,9,999999999,10,0.08,0,88,0.2,0,1 +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,41,83500,1156,1359,368,798,563,318,93895,46589,37647,14486,40,8.8,9,9,16,1524,9,999999999,10,0.08,0,88,0.2,0,1 +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,62672,19888,42555,15635,20,5.7,9,9,16,1829,9,999999999,10,0.08,0,88,0.2,0,1 +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,31802,2361,29528,11323,40,4.6,9,9,16,1524,9,999999999,10,0.08,0,88,0.2,0,1 +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,10125,0,10214,4783,50,3.1,9,9,16,6096,9,999999999,11,0.08,0,88,0.2,0,1 +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,18090,4347,15100,5171,50,5.7,9,9,16,6096,9,999999999,11,0.08,0,88,0.2,0,1 +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,55,83200,271,1359,346,160,381,84,17448,13091,9196,2648,50,4.6,9,9,16,2896,9,999999999,11,0.08,0,88,0.2,0,1 +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,7.2,83,83000,37,759,312,2,112,2,0,0,0,0,120,5.2,5,5,16,77777,9,999999999,11,0.08,0,88,0.2,0,1 +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,11,0.08,0,88,0.2,0,1 +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,12,0.08,0,88,0.2,0,1 +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,762,9,999999999,12,0.08,0,88,0.2,0,1 +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,1006,9,999999999,12,0.08,0,88,0.2,0,1 +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,12,0.08,0,88,0.2,0,1 +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,1158,9,999999999,12,0.081,0,88,0.2,0,1 +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,12,0.081,0,88,0.2,0.3,1 +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,1524,9,999999999,13,0.081,0,88,0.2,0,1 +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,4,87,83000,0,0,317,0,0,0,0,0,0,0,340,9.3,10,10,12.9,300,9,999999999,13,0.081,0,88,0.2,0,1 +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,3.3,89,83100,0,0,312,0,0,0,0,0,0,0,340,10.3,10,10,16,396,9,999999999,13,0.081,0,88,0.2,0,1 +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,333,3414,353,72,360,8.8,10,10,16,244,9,999999999,13,0.081,0,88,0.2,0,1 +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,96,83100,282,1359,289,192,349,119,20454,18038,12737,3178,360,11.3,10,10,2.4,122,9,999999999,12,0.081,0,88,0.2,0,1 +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,100,83300,540,1359,287,163,38,148,18359,2622,16742,5631,360,9.8,10,10,0.4,61,9,999999999,12,0.081,0,88,0.2,0,1 +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,100,83400,771,1359,287,119,0,119,12221,0,12328,5636,360,10.3,10,10,0.4,61,9,999999999,12,0.081,0,88,0.2,0,1 +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.6,95,83500,960,1359,286,121,0,121,12623,0,12740,6197,10,10.3,10,10,0.4,61,9,999999999,12,0.081,0,88,0.2,0,1 +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.6,95,83800,1093,1359,286,210,6,206,25366,446,25007,10182,10,8.2,10,10,3.2,122,9,999999999,11,0.081,0,88,0.2,0,1 +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,-1,80,83600,1161,1359,286,315,12,305,37278,1001,36311,14066,20,11.8,9,9,16.1,660,9,999999999,11,0.081,0,88,0.2,0,1 +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,65535,17860,46859,17007,10,11.3,9,9,16,762,9,999999999,11,0.081,0,88,0.2,0,1 +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,27424,915,26355,10659,360,10.3,9,9,16,1128,9,999999999,11,0.081,0,88,0.2,0,1 +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,50257,14785,37579,13513,10,8.2,10,10,16,1158,9,999999999,10,0.081,0,88,0.2,0,1 +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,21777,459,21413,7975,30,7.7,9,9,16,1372,9,999999999,10,0.081,0,88,0.2,0,1 +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,18594,1653,17665,5806,20,7.2,10,10,16,1433,9,999999999,10,0.081,0,88,0.2,0,1 +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,4237,0,4268,1659,20,5.7,10,10,9.6,1036,9,999999999,9,0.081,0,88,0.2,0,1 +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,0,0,0,0,20,6.2,10,10,16,1676,9,999999999,9,0.081,0,88,0.2,0,1 +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,9,0.081,0,88,0.2,0,1 +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,1676,9,999999999,9,0.081,0,88,0.2,0,1 +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,1433,9,999999999,8,0.081,0,88,0.2,0,1 +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,8,0.081,0,88,0.2,0,1 +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,-2,92,83700,0,0,280,0,0,0,0,0,0,0,360,3.1,10,10,2,510,9,999999999,8,0.081,0,88,0.2,0,1 +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,7,0.081,0,88,0.2,0,1 +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,7,0.081,0,88,0.2,0,1 +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,7,0.081,0,88,0.2,0,1 +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,-4,100,83700,0,0,266,0,0,0,0,0,0,0,20,10.8,10,10,0.8,90,9,999999999,7,0.081,0,88,0.2,0,1 +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,6,0.081,0,88,0.2,0,1 +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,97,0,97,40,30,4.1,10,10,16,1524,9,999999999,6,0.081,0,88,0.2,0,1 +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,5334,0,5373,2022,20,3.6,9,9,16,1524,9,999999999,6,0.081,0,88,0.2,0,1 +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,9291,0,9366,3952,360,6.2,9,9,16,2743,9,999999999,6,0.081,0,88,0.2,0,1 +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,33335,3903,30805,10483,310,6.2,5,5,16,77777,9,999999999,6,0.081,0,88,0.2,0,1 +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,40047,3853,36825,13390,330,6.7,5,5,16,77777,9,999999999,6,0.081,0,88,0.2,0,1 +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,-11.7,37,84100,1097,1358,252,575,241,380,66406,22869,44171,16064,330,11.8,5,5,16,77777,9,999999999,6,0.081,0,88,0.2,0,1 +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,65142,15284,50005,17754,340,10.8,5,5,16,77777,9,999999999,5,0.081,0,88,0.2,0,1 +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,66189,17388,48697,17447,350,10.8,5,5,16,77777,9,999999999,5,0.081,0,88,0.2,0,1 +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,-11,36,83900,1093,1358,272,602,323,342,70060,29353,40049,14974,350,12.9,9,9,6.4,2400,9,999999999,5,0.081,0,88,0.2,0,1 +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,38,83900,958,1358,260,240,30,219,28342,2396,25993,10195,340,10.3,5,5,16,77777,9,999999999,5,0.081,0,88,0.2,0,1 +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,63261,47957,28154,9813,330,10.3,9,9,16,2591,9,999999999,5,0.081,0,88,0.2,0,1 +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,9994,0,10075,4165,340,12.9,7,7,16,2438,9,999999999,5,0.081,0,88,0.2,0,1 +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,7823,360,7624,2359,350,12.4,5,5,16,77777,9,999999999,5,0.081,0,88,0.2,0,1 +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,440,5158,352,72,350,8.2,9,9,16,2896,9,999999999,4,0.081,0,88,0.2,0,1 +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,3048,9,999999999,4,0.081,0,88,0.2,0,1 +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,2743,9,999999999,4,0.081,0,88,0.2,0,1 +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,2438,9,999999999,4,0.081,0,88,0.2,0,1 +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,2438,9,999999999,4,0.081,0,88,0.2,0,1 +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,77777,9,999999999,4,0.081,0,88,0.2,0,1 +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,77777,9,999999999,4,0.082,0,88,0.2,0,1 +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,77777,9,999999999,3,0.082,0,88,0.2,0,1 +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,2743,9,999999999,3,0.082,0,88,0.2,0,1 +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,2743,9,999999999,3,0.082,0,88,0.2,0,1 +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,-11.7,56,83800,0,0,234,0,0,0,0,0,0,0,280,3.1,5,5,16,77777,9,999999999,3,0.082,0,88,0.2,0,1 +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,-12.2,53,83500,51,871,234,6,149,2,663,6934,355,75,290,3.1,5,5,16,77777,9,999999999,3,0.082,0,88,0.2,0,1 +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,21925,20591,8080,2518,210,3.6,5,5,16,77777,9,999999999,3,0.082,0,88,0.2,0,1 +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,43698,41480,18280,6054,220,4.1,9,9,16,6096,9,999999999,3,0.082,0,88,0.2,0,1 +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,37700,9021,31577,10694,350,5.2,9,9,16,6096,9,999999999,3,0.082,0,88,0.2,0,1 +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,-11,36,83700,969,1357,279,589,358,333,67423,33469,38353,13804,330,10.8,10,10,14.5,1440,9,999999999,3,0.082,0,88,0.2,0,1 +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,36471,2042,34427,13359,340,7.2,10,10,16,2438,9,999999999,3,0.082,0,88,0.2,0,1 +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,22521,0,22742,10563,220,7.7,10,10,16,2134,9,999999999,3,0.082,0,88,0.2,0,1 +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,25924,0,26179,11851,230,4.6,10,10,16,2286,9,999999999,4,0.082,0,88,0.2,0,1 +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,14781,0,14924,7310,140,4.6,10,10,12.8,1463,9,999999999,4,0.082,0,88,0.2,0,1 +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,13156,0,13279,6430,30,7.7,10,10,0.8,183,9,999999999,4,0.082,0,88,0.2,0,1 +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,-3,92,83500,771,1357,275,99,0,99,10177,0,10266,4809,30,7.7,10,10,0.8,180,9,999999999,4,0.082,0,88,0.2,0,1 +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,9988,0,10068,4178,10,4.6,10,10,16,1494,9,999999999,4,0.082,0,88,0.2,0,1 +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,3454,0,3479,1408,350,11.8,9,9,8,1311,9,999999999,4,0.082,0,88,0.2,0,1 +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,545,4844,520,97,350,4.1,10,10,16,2438,9,999999999,4,0.082,0,88,0.2,0,1 +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,4,0.082,0,88,0.2,0,1 +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,1829,9,999999999,4,0.082,0,88,0.2,0,1 +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,2591,9,999999999,4,0.082,0,88,0.2,0,1 +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,77777,9,999999999,4,0.082,0,88,0.2,0,1 +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,77777,9,999999999,4,0.082,0,88,0.2,0,1 +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,77777,9,999999999,4,0.082,0,88,0.2,0,1 +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,77777,9,999999999,4,0.082,0,88,0.2,0,1 +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,77777,9,999999999,4,0.082,0,88,0.2,0,1 +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,77777,9,999999999,4,0.082,0,88,0.2,0,1 +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,77777,9,999999999,5,0.082,0,88,0.2,0,1 +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,760,5354,689,127,220,6.2,5,5,16,77777,9,999999999,5,0.082,0,88,0.2,0,1 +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,68,83700,300,1356,230,203,398,114,21900,21019,12353,3304,210,6.2,3,3,16,77777,9,999999999,5,0.082,0,88,0.2,0,1 +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,38886,33036,18402,6118,210,6.2,2,2,16,77777,9,999999999,5,0.082,0,88,0.2,0,1 +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,62038,46534,21086,7964,200,6.2,0,0,16,77777,9,999999999,5,0.082,0,88,0.2,0,1 +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,83720,53809,24173,9635,210,5.2,0,0,16,77777,9,999999999,5,0.082,0,88,0.2,0,1 +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,107610,62360,20203,8369,230,2.1,0,0,16,77777,9,999999999,5,0.082,0,88,0.2,0,1 +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,29,84100,1172,1356,260,946,956,118,98302,96486,15539,4292,220,3.1,0,0,16,77777,9,999999999,5,0.082,0,88,0.2,0,1 +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,98876,98742,13556,3914,240,2.1,3,3,16,77777,9,999999999,5,0.082,0,88,0.2,0,1 +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,93583,99006,13241,3180,270,2.6,5,5,16,77777,9,999999999,5,0.082,0,88,0.2,0,1 +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,80127,96381,10952,2212,290,2.6,5,5,16,77777,9,999999999,5,0.082,0,88,0.2,0,1 +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,72638,55201,10847,4339,320,4.1,5,5,16,77777,9,999999999,5,0.082,0,88,0.2,0,1 +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,46609,43123,8627,3210,270,1.5,5,5,16,77777,9,999999999,5,0.082,0,88,0.2,0,1 +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,30,84100,287,1356,303,172,607,44,19944,13835,5113,1714,220,4.1,5,5,16,77777,9,999999999,5,0.082,0,88,0.2,0,1 +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,548,6083,521,99,210,5.7,5,5,16,77777,9,999999999,5,0.082,0,88,0.2,0,1 +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,77777,9,999999999,5,0.082,0,88,0.2,0,1 +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,-3.9,51,83800,0,0,279,0,0,0,0,0,0,0,200,7.7,5,5,16,77777,9,999999999,5,0.082,0,88,0.2,0,1 +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,-3.9,51,83700,0,0,279,0,0,0,0,0,0,0,200,6.7,5,5,16,77777,9,999999999,5,0.082,0,88,0.2,0,1 +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,77777,9,999999999,5,0.082,0,88,0.2,0,1 +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,77777,9,999999999,5,0.082,0,88,0.2,0,1 +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,-3.9,51,83600,0,0,272,0,0,0,0,0,0,0,210,7.7,2,2,16,77777,9,999999999,5,0.083,0,88,0.2,0,1 +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,77777,9,999999999,5,0.083,0,88,0.2,0,1 +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,-4.4,48,83500,0,0,272,0,0,0,0,0,0,0,230,5.2,2,2,16,77777,9,999999999,5,0.083,0,88,0.2,0,1 +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,77777,9,999999999,5,0.083,0,88,0.2,0,1 +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,77777,9,999999999,5,0.083,0,88,0.2,0,1 +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,-3.9,51,83600,59,937,279,8,166,3,882,8277,526,106,240,5.7,5,5,16,77777,9,999999999,5,0.083,0,88,0.2,0,1 +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,21678,19145,7588,2437,260,7.2,7,7,16,7620,9,999999999,5,0.083,0,88,0.2,0,1 +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,48509,44912,9658,3596,270,8.2,9,9,16,7620,9,999999999,5,0.083,0,88,0.2,0,1 +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,72490,54830,13036,5198,290,9.3,9,9,16,7620,9,999999999,6,0.083,0,88,0.2,0,1 +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,78718,89041,15626,2612,310,8.2,9,9,16,7620,9,999999999,6,0.083,0,88,0.2,0,1 +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,91850,92564,17491,3726,300,6.7,9,9,16,7620,9,999999999,6,0.083,0,88,0.2,0,1 +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,116061,62645,22577,9290,290,5.2,9,9,16,7620,9,999999999,6,0.083,0,88,0.2,0,1 +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,98919,51259,36870,14251,290,6.2,9,9,16,7315,9,999999999,6,0.083,0,88,0.2,0,1 +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,73682,30080,43541,15951,290,4.1,9,9,16,7315,9,999999999,6,0.083,0,88,0.2,0,1 +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,78464,48790,28652,11098,320,4.6,9,9,16,7315,9,999999999,6,0.083,0,88,0.2,0,1 +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,-6.1,16,84200,778,1355,362,304,83,257,34396,7293,29238,10160,340,4.6,9,9,16,7315,9,999999999,7,0.083,0,88,0.2,0,1 +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,18799,2090,17526,5859,340,2.6,9,9,16,7315,9,999999999,7,0.083,0,88,0.2,0,1 +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,-3,25,84200,291,1355,351,173,396,88,18982,16048,9692,2838,330,11.3,9,9,16.1,7200,9,999999999,7,0.083,0,88,0.2,0,1 +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,761,7255,687,121,360,9.8,9,9,16,7315,9,999999999,7,0.083,0,88,0.2,0,1 +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,7315,9,999999999,7,0.083,0,88,0.2,0,1 +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,77777,9,999999999,7,0.083,0,88,0.2,0,1 +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,77777,9,999999999,8,0.083,0,88,0.2,0,1 +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,77777,9,999999999,8,0.083,0,88,0.2,0,1 +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,77777,9,999999999,8,0.083,0,88,0.2,0,1 +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,7620,9,999999999,8,0.083,0,88,0.2,0,1 +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,77777,9,999999999,8,0.083,0,88,0.2,0,1 +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,77777,9,999999999,8,0.083,0,88,0.2,0,1 +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,77777,9,999999999,9,0.083,0,88,0.2,0,1 +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,77777,9,999999999,9,0.083,0,88,0.2,0,1 +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,1216,10529,527,108,210,7.2,5,5,16,77777,9,999999999,9,0.083,0,88,0.2,0,1 +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,23608,20359,6862,2262,210,7.2,5,5,16,77777,9,999999999,9,0.083,0,88,0.2,0,1 +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,-1.1,33,84000,567,1355,325,421,807,83,49969,45501,9880,3685,230,4.6,5,5,16,77777,9,999999999,9,0.083,0,88,0.2,0,1 +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,19,84100,796,1355,335,603,844,107,73275,55137,13046,5211,300,3.6,5,5,16,77777,9,999999999,9,0.083,0,88,0.2,0,1 +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,89758,57293,19952,8142,290,1.5,9,9,16,7620,9,999999999,9,0.083,0,88,0.2,0,1 +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,18,83600,1112,1355,360,748,525,316,87794,45428,37314,14277,270,2.1,9,9,16,7620,9,999999999,9,0.083,0,88,0.2,0,1 +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,16,84100,1179,1355,369,527,126,417,61095,11955,48672,17527,260,7.2,9,9,16,7620,9,999999999,9,0.083,0,88,0.2,0,1 +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,102880,54229,35334,13776,340,4.1,9,9,16,7620,9,999999999,9,0.083,0,88,0.2,0,1 +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,14,84100,1105,1355,377,883,830,204,107075,62208,24860,10135,260,4.1,9,9,16,7620,9,999999999,9,0.083,0,88,0.2,0,1 +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,77092,47459,26145,10302,360,3.6,9,9,16,7620,9,999999999,9,0.083,0,88,0.2,0,1 +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,15,83900,781,1355,374,526,625,164,61705,46085,19323,7389,350,4.1,9,9,16,7620,9,999999999,9,0.083,0,88,0.2,0,1 +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,33792,24589,18885,6197,290,2.6,10,10,14.4,7620,9,999999999,9,0.083,0,88,0.2,0,1 +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,17185,12265,6505,2125,120,1.5,10,10,16,7620,9,999999999,9,0.083,0,88,0.2,0,1 +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,482,0,485,182,180,3.1,10,10,16,7620,9,999999999,9,0.083,0,88,0.2,0,1 +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,7620,9,999999999,9,0.083,0,88,0.2,0,1 +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,7620,9,999999999,9,0.083,0,88,0.2,0,1 +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,44,83200,0,0,330,0,0,0,0,0,0,0,150,2.1,9,9,16,7620,9,999999999,9,0.083,0,88,0.2,0,1 +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,7620,9,999999999,9,0.083,0,88,0.2,0,1 +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,52,83000,0,0,319,0,0,0,0,0,0,0,140,3.1,9,9,16,7620,9,999999999,9,0.083,0,88,0.2,0,1 +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,48,83100,0,0,325,0,0,0,0,0,0,0,250,3.1,10,9,16,7620,9,999999999,9,0.083,0,88,0.2,0,1 +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,56,83000,0,0,314,0,0,0,0,0,0,0,230,3.6,10,9,16,7620,9,999999999,9,0.083,0,88,0.2,0,1 +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,7620,9,999999999,9,0.083,0,88,0.2,0,1 +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,7620,9,999999999,9,0.083,0,88,0.2,0,1 +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,7620,9,999999999,9,0.083,0,88,0.2,0,1 +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,833,0,715,225,220,1.5,10,9,16,7620,9,999999999,9,0.083,0,88,0.2,0,1 +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,12143,1954,11204,3262,210,3.6,10,9,16,7620,9,999999999,9,0.083,0,88,0.2,0,1 +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,27162,8948,22062,7019,190,3.1,10,9,16,6096,9,999999999,9,0.083,0,88,0.2,0,1 +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,56188,33279,31432,10856,190,4.6,10,9,16,6096,9,999999999,9,0.083,0,88,0.2,0,1 +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,94834,60666,20629,8407,280,2.6,10,9,16,7620,9,999999999,9,0.083,0,88,0.2,0,1 +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,105209,60252,28825,11558,0,0,10,9,16,7620,9,999999999,9,0.083,0,88,0.2,0,1 +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,56344,8373,47485,17258,130,3.6,10,9,16,5486,9,999999999,9,0.083,0,88,0.2,0,1 +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,55356,7276,47786,17324,90,3.6,10,9,16,5486,9,999999999,9,0.083,0,88,0.2,0,1 +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,62919,18802,43888,16077,280,2.1,10,9,16,3353,9,999999999,9,0.083,0,88,0.2,0,1 +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,13693,0,13821,6687,290,3.6,10,9,16,5486,9,999999999,9,0.083,0,88,0.2,0,1 +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.6,25,83000,784,1354,369,149,0,149,15325,0,15460,6858,10,3.6,10,9,16,3353,9,999999999,9,0.083,0,88,0.2,0,1 +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,29,82500,554,1354,372,120,0,120,12104,0,12203,4917,90,5.7,10,10,16,5486,9,999999999,9,0.083,0,88,0.2,0,1 +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,4836,0,4872,1896,80,4.6,10,10,16,5486,9,999999999,9,0.083,0,88,0.2,0,1 +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,36,82800,54,914,355,10,168,5,1088,8090,853,143,360,3.1,10,10,16,3048,9,999999999,9,0.083,0,88,0.2,0,1 +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,2743,9,999999999,9,0.083,0,88,0.2,0,1 +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,3658,9,999999999,9,0.083,0,88,0.2,0,1 +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,2438,9,999999999,9,0.083,0,88,0.2,0,1 +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,2438,9,999999999,9,0.083,0,88,0.2,0,1 +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,4572,9,999999999,9,0.083,0,88,0.2,0,1 +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,3353,9,999999999,9,0.084,0,88,0.2,0,1 +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,77777,9,999999999,9,0.084,0,88,0.2,0,1 +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,3658,9,999999999,9,0.084,0,88,0.2,0,1 +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,77777,9,999999999,9,0.084,0,88,0.2,0,1 +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,77777,9,999999999,9,0.084,0,88,0.2,0,1 +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,2.8,86,82100,71,1026,286,0,0,0,0,0,0,0,150,3.1,6,5,16,77777,9,999999999,9,0.084,0,88,0.2,0,1 +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,25917,23291,7719,2523,130,4.1,10,9,16,7620,9,999999999,10,0.084,0,88,0.2,0,1 +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,50,82400,577,1353,322,427,806,82,50830,45333,9789,3673,90,3.6,10,9,16,7620,9,999999999,10,0.084,0,88,0.2,0,1 +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,67767,92374,13028,1893,60,4.6,6,5,16,77777,9,999999999,10,0.084,0,88,0.2,0,1 +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,82138,95569,11823,2410,90,4.6,10,9,16,7620,9,999999999,10,0.084,0,88,0.2,0,1 +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,109651,62475,24677,10079,30,5.2,10,9,16,7620,9,999999999,10,0.084,0,88,0.2,0,1 +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,90523,41864,41764,15738,20,3.6,10,9,16,7620,9,999999999,10,0.084,0,88,0.2,0,1 +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,-3.3,27,82400,1182,1353,341,756,503,315,89619,42427,37568,14492,360,4.6,10,9,16,6096,9,999999999,10,0.084,0,88,0.2,0,1 +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,81180,38317,40140,15091,40,3.6,10,9,16,6096,9,999999999,10,0.084,0,88,0.2,0,1 +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,26483,1391,25063,9962,90,5.2,10,9,16,3353,9,999999999,10,0.084,0,88,0.2,0,1 +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,-4,29,82300,787,1353,340,150,0,150,15446,0,15582,6909,110,5.7,10,10,16.1,2400,9,999999999,10,0.084,0,88,0.2,0,1 +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,21081,3866,18813,6226,90,5.7,10,10,16,2743,9,999999999,10,0.084,0,88,0.2,0,1 +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,3062,0,3085,1288,320,5.2,10,10,16,2286,9,999999999,10,0.084,0,88,0.2,0,1 +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,96,0,97,40,270,6.2,10,10,12.8,1128,9,999999999,10,0.084,0,88,0.2,0,1 +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,1189,9,999999999,10,0.084,0,88,0.2,0,1 +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,975,9,999999999,10,0.084,0,88,0.2,0,1 +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,10,0.084,0,88,0.2,0,1 +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,4.4,96,82200,0,0,313,0,0,0,0,0,0,0,30,4.1,10,10,12.8,213,9,999999999,10,0.084,0,88,0.2,0,1 +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,610,9,999999999,10,0.084,0,88,0.2,0,1 +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,11,0.084,0,88,0.2,0,1 +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,3,100,81900,0,0,303,0,0,0,0,0,0,0,120,3.6,10,10,8,120,9,999999999,11,0.084,0,88,0.2,0,1 +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,11,0.084,0,88,0.2,0,1 +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,100,81900,0,0,287,0,0,0,0,0,0,0,0,0,10,10,2.8,213,9,999999999,11,0.084,0,88,0.2,0,1 +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,100,82300,0,0,287,0,0,0,0,0,0,0,0,0,10,10,2.4,213,9,999999999,11,0.084,0,88,0.2,0,1 +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,100,82000,76,1071,287,0,0,0,0,0,0,0,310,2.1,10,10,0.8,152,9,999999999,11,0.084,0,88,0.2,0,1 +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.6,95,82100,329,1352,286,34,0,34,3365,0,3390,1430,290,2.1,10,10,0.8,91,9,999999999,11,0.084,0,88,0.2,0,1 +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,100,82200,582,1352,287,70,0,70,7078,0,7137,3212,330,1.5,10,10,0.4,91,9,999999999,11,0.084,0,88,0.2,0,1 +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,100,82100,809,1352,287,105,0,105,10821,0,10918,5161,330,1.5,10,10,0.4,90,9,999999999,11,0.084,0,88,0.2,0,1 +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,96,82300,994,1352,289,126,0,126,13184,0,13308,6504,310,2.6,10,10,0.6,61,9,999999999,11,0.084,0,88,0.2,0,1 +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,17021,0,17188,8304,350,4.1,10,10,0.8,122,9,999999999,11,0.084,0,88,0.2,0,1 +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,16154,0,16315,7946,290,4.6,10,10,2.4,122,9,999999999,11,0.084,0,88,0.2,0,1 +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,23372,0,23605,10927,290,4.1,10,10,4,61,9,999999999,11,0.084,0,88,0.2,0,1 +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,1,93,82500,1114,1352,296,222,0,222,23450,0,23679,10888,290,4.1,10,10,0.8,60,9,999999999,11,0.084,0,88,0.2,0,1 +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,26380,462,26039,10314,290,3.6,10,10,4.8,305,9,999999999,11,0.084,0,88,0.2,0,1 +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,9667,0,9753,4640,280,3.1,10,10,4.8,183,9,999999999,11,0.084,0,88,0.2,0,1 +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,6353,0,6405,2888,280,3.6,10,10,0.8,152,9,999999999,11,0.084,0,88,0.2,1,1 +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,3551,0,3578,1474,320,1.5,10,10,4,274,9,999999999,11,0.084,0,88,0.2,0,1 +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,2,93,83000,60,958,302,4,0,4,386,0,388,153,70,10.3,10,10,6.4,90,9,999999999,11,0.084,0,88,0.2,0,1 +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,11,0.084,0,88,0.2,0,1 +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,11,0.084,0,88,0.2,0,1 +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,122,9,999999999,11,0.084,0,88,0.2,0,1 +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,100,83500,0,0,287,0,0,0,0,0,0,0,70,1.5,10,10,3.2,122,9,999999999,11,0.084,0,88,0.2,0,1 +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,100,83400,0,0,287,0,0,0,0,0,0,0,320,1.5,10,10,1.6,152,9,999999999,11,0.084,0,88,0.2,0,1 +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.6,95,83500,0,0,286,0,0,0,0,0,0,0,0,0,10,10,1.6,152,9,999999999,11,0.085,0,88,0.2,0,1 +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.6,95,83400,0,0,286,0,0,0,0,0,0,0,20,2.6,10,10,1.6,274,9,999999999,11,0.085,0,88,0.2,0,1 +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,-1,92,83400,0,0,286,0,0,0,0,0,0,0,20,2.6,10,10,1.6,270,9,999999999,11,0.085,0,88,0.2,0,1 +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,11,0.085,0,88,0.2,0,1 +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,91,9,999999999,11,0.085,0,88,0.2,0,1 +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,-1,100,83500,80,1093,281,0,0,0,0,0,0,0,80,4.1,10,10,4.8,150,9,999999999,11,0.085,0,88,0.2,0,1 +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,7428,0,7484,2752,70,7.2,10,10,1.6,152,9,999999999,11,0.085,0,88,0.2,0,1 +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,7796,0,7860,3502,70,6.7,10,10,1.6,335,9,999999999,11,0.085,0,88,0.2,0,1 +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,10834,0,10930,5173,70,5.2,10,10,1.6,305,9,999999999,11,0.085,0,88,0.2,0,1 +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,13930,0,14061,6832,80,2.1,10,10,8,305,9,999999999,10,0.085,0,88,0.2,0,1 +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,15662,0,15815,7714,0,0,10,10,4,274,9,999999999,10,0.085,0,88,0.2,0,1 +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,-1.1,91,83900,1192,1352,286,182,0,182,19358,0,19551,9311,0,0,10,10,4.8,335,9,999999999,10,0.085,0,88,0.2,0,1 +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,-1.1,91,83900,1188,1352,286,208,0,208,22117,0,22337,10431,0,0,10,10,8,244,9,999999999,10,0.085,0,88,0.2,0,1 +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,-1.1,91,83800,1117,1352,286,292,12,283,34574,984,33703,13189,0,0,10,10,9.6,640,9,999999999,10,0.085,0,88,0.2,0,1 +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,-1,86,83800,982,1352,290,252,6,247,29564,485,29134,11331,0,0,10,10,16.1,1110,9,999999999,10,0.085,0,88,0.2,0,1 +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,15448,0,15585,6936,0,0,10,10,16,1067,9,999999999,10,0.085,0,88,0.2,0,1 +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,6867,0,6923,3097,0,0,10,10,6.4,396,9,999999999,10,0.085,0,88,0.2,0,1 +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,3161,0,3185,1334,0,0,10,10,4.8,335,9,999999999,10,0.085,0,88,0.2,0,1 +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,1514,9704,1182,179,0,0,10,10,4.8,274,9,999999999,10,0.085,0,88,0.2,0,1 +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,10,10,16,335,9,999999999,10,0.085,0,88,0.2,0,1 +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,10,10,11.2,305,9,999999999,10,0.085,0,88,0.2,0,1 +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,10,10,16,366,9,999999999,10,0.085,0,88,0.2,0,1 +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,610,9,999999999,10,0.085,0,88,0.2,0,1 +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,488,9,999999999,10,0.085,0,88,0.2,0,1 +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,1524,9,999999999,10,0.085,0,88,0.2,0,1 +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,77777,9,999999999,10,0.085,0,88,0.2,0,1 +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,77777,9,999999999,10,0.085,0,88,0.2,0,1 +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,77777,9,999999999,10,0.085,0,88,0.2,0,1 +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,77777,9,999999999,10,0.085,0,88,0.2,0,1 +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,77777,9,999999999,10,0.085,0,88,0.2,0,1 +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,-2.2,83,83700,339,1351,261,240,688,67,27382,25906,7667,2547,0,0,6,5,16,77777,9,999999999,10,0.085,0,88,0.2,0,1 +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,51605,48568,16739,5891,230,2.1,6,5,16,77777,9,999999999,11,0.085,0,88,0.2,0,1 +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,79,83800,818,1351,292,536,421,280,60605,37318,31842,11115,210,1.5,10,9,16,914,9,999999999,11,0.085,0,88,0.2,0,1 +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,52628,12450,41591,14880,180,3.1,10,9,16,610,9,999999999,11,0.085,0,88,0.2,0,1 +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,53578,8267,45080,16481,190,2.6,10,9,16,671,9,999999999,11,0.085,0,88,0.2,0,1 +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,87655,36801,45706,16863,230,4.1,10,9,16,792,9,999999999,11,0.085,0,88,0.2,0,1 +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,55946,7200,48381,17536,150,4.6,10,9,16,853,9,999999999,11,0.085,0,88,0.2,0,1 +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,49886,3889,46162,16715,160,5.2,10,10,16,792,9,999999999,12,0.085,0,88,0.2,0,1 +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,45173,6936,38896,14118,140,9.3,10,10,16,732,9,999999999,12,0.085,0,88,0.2,0,1 +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,23162,457,22809,8569,160,7.2,10,10,16,884,9,999999999,12,0.085,0,88,0.2,0,1 +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,8978,0,9052,3913,150,7.7,10,10,16,853,9,999999999,12,0.085,0,88,0.2,0,1 +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,3160,0,3183,1338,140,5.2,10,10,16,853,9,999999999,12,0.085,0,88,0.2,0,1 +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,2.2,82,83400,65,1002,311,10,83,7,1172,0,821,256,150,7.2,10,10,16,1280,9,999999999,12,0.085,0,88,0.2,0,1 +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,914,9,999999999,12,0.085,0,88,0.2,0,1 +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,2,87,83300,0,0,306,0,0,0,0,0,0,0,140,8.7,10,10,16.1,840,9,999999999,13,0.085,0,88,0.2,0,1 +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,853,9,999999999,13,0.085,0,88,0.2,0,1 +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,853,9,999999999,13,0.085,0,88,0.2,0,1 +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,884,9,999999999,13,0.085,0,88,0.2,0,1 +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,884,9,999999999,13,0.086,0,88,0.2,0,1 +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,13,0.086,0,88,0.2,0,1 +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,366,9,999999999,14,0.086,0,88,0.2,0,1 +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,1067,9,999999999,14,0.086,0,88,0.2,0,1 +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,914,9,999999999,14,0.086,0,88,0.2,0.3,1 +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,1,100,82600,89,1159,292,0,0,0,0,0,0,0,290,4.1,10,10,4,600,9,999999999,14,0.086,0,88,0.2,0,1 +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,96,82600,344,1350,289,156,187,109,17123,9665,12014,3571,270,4.1,10,10,3.2,61,9,999999999,14,0.086,0,88,0.2,0.8,1 +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,93,82600,597,1350,291,90,0,90,9113,0,9188,4030,270,4.1,10,10,2.4,60,9,999999999,13,0.086,0,88,0.2,0,1 +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,96,82600,822,1350,289,118,0,118,12175,0,12284,5753,290,2.1,10,10,5.6,122,9,999999999,13,0.086,0,88,0.2,0,1 +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,39459,4129,35504,13351,280,3.1,10,9,16,2134,9,999999999,13,0.086,0,88,0.2,0,1 +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,2.8,86,82700,1133,1350,311,648,289,405,74709,26831,47009,16979,310,2.1,10,10,16,396,9,999999999,13,0.086,0,88,0.2,0,1 +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,78819,27049,48738,17656,340,2.1,10,9,16,427,9,999999999,13,0.086,0,88,0.2,0,1 +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,62048,11231,50123,17973,40,3.1,10,10,16,610,9,999999999,13,0.086,0,88,0.2,0,1 +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,49952,4405,45641,16603,90,3.1,10,10,16,914,9,999999999,13,0.086,0,88,0.2,0,1 +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,61691,25430,37959,13906,90,2.6,10,9,16,1097,9,999999999,12,0.086,0,88,0.2,0,1 +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,10289,0,10381,4925,50,2.6,10,10,16,3048,9,999999999,12,0.086,0,88,0.2,0,1 +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,22372,4292,19668,6519,110,4.6,10,10,16,1036,9,999999999,12,0.086,0,88,0.2,0,1 +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,13576,5984,9972,3030,170,4.1,10,9,16,2743,9,999999999,12,0.086,0,88,0.2,0,1 +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,2.2,82,82600,68,1024,302,18,214,9,2076,0,1039,321,160,4.6,10,9,16,6096,9,999999999,12,0.086,0,88,0.2,0,1 +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,6096,9,999999999,12,0.086,0,88,0.2,0,1 +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,77777,9,999999999,12,0.086,0,88,0.2,0,1 +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,77777,9,999999999,11,0.086,0,88,0.2,0,1 +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,92,82600,0,0,267,0,0,0,0,0,0,0,180,4.1,10,5,16,77777,9,999999999,11,0.086,0,88,0.2,0,1 +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,77777,9,999999999,11,0.086,0,88,0.2,0,1 +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,77777,9,999999999,11,0.086,0,88,0.2,0,1 +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,-1.7,87,82200,0,0,262,0,0,0,0,0,0,0,160,3.1,5,5,16,77777,9,999999999,11,0.086,0,88,0.2,0,1 +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,77777,9,999999999,11,0.086,0,88,0.2,0,1 +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,-2.2,83,82100,0,0,261,0,0,0,0,0,0,0,170,2.1,5,5,16,77777,9,999999999,11,0.086,0,88,0.2,0,1 +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,7,7,16,3353,9,999999999,10,0.086,0,88,0.2,0,1 +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,2438,9,999999999,11,0.086,0,88,0.2,0,1 +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,27742,26655,8633,2837,190,1.5,9,9,16,2743,9,999999999,11,0.086,0,88,0.2,0,1 +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,3,76,82600,601,1349,312,416,660,121,48254,41956,14089,5153,290,5.7,9,9,16.1,5400,9,999999999,11,0.086,0,88,0.2,0,1 +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,75078,55325,23358,8875,300,4.1,9,9,9.6,2743,9,999999999,11,0.086,0,88,0.2,0,1 +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,29174,2277,26583,10601,10,4.1,9,9,8,6096,9,999999999,11,0.086,0,88,0.2,0,1 +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,70164,24162,43893,16217,20,5.2,9,9,12.8,2438,9,999999999,11,0.086,0,88,0.2,0,1 +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,113873,58972,31386,12516,360,3.6,9,9,16,2286,9,999999999,11,0.086,0,88,0.2,0,1 +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,94790,44021,40458,15413,30,2.6,9,9,16,945,9,999999999,11,0.086,0,88,0.2,0,1 +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,95123,50037,30161,12046,50,4.6,9,9,16,6096,9,999999999,11,0.086,0,88,0.2,0,1 +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,81248,48095,26510,10521,0,0,9,9,16,6096,9,999999999,11,0.086,0,88,0.2,0,1 +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,47066,21734,30151,10608,10,3.1,9,9,16,6096,9,999999999,11,0.086,0,88,0.2,0,1 +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,20117,2082,18743,6326,50,4.1,9,9,16,2896,9,999999999,11,0.086,0,88,0.2,0,1 +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,3160,0,3183,1346,60,2.1,9,9,16,2896,9,999999999,11,0.086,0,88,0.2,0,1 +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,3.9,66,83100,71,1046,326,11,64,8,1285,0,935,293,90,1.5,9,9,16,6096,9,999999999,11,0.086,0,88,0.2,0,1 +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,77777,9,999999999,11,0.086,0,88,0.2,0,1 +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,77777,9,999999999,11,0.086,0,88,0.2,0,1 +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,2.8,86,82800,0,0,286,0,0,0,0,0,0,0,170,4.6,5,5,16,77777,9,999999999,11,0.086,0,88,0.2,0,1 +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,77777,9,999999999,11,0.086,0,88,0.2,0,1 +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,77777,9,999999999,11,0.086,0,88,0.2,0,1 +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,77777,9,999999999,11,0.086,0,88,0.2,0,1 +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,77777,9,999999999,11,0.086,0,88,0.2,0,1 +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,77777,9,999999999,11,0.086,0,88,0.2,0,1 +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,77777,9,999999999,11,0.086,0,88,0.2,0,1 +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,6096,9,999999999,11,0.086,0,88,0.2,0,1 +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,6096,9,999999999,11,0.086,0,88,0.2,0,1 +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,16046,6976,12250,3677,250,2.6,9,9,16,6096,9,999999999,11,0.086,0,88,0.2,0,1 +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,18823,430,18566,6457,0,0,9,9,16,3658,9,999999999,12,0.086,0,88,0.2,0,1 +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,38439,8994,31361,11116,220,3.6,9,9,16,6096,9,999999999,12,0.086,0,88,0.2,0,1 +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,84707,49128,32740,12587,290,2.1,9,9,16,6706,9,999999999,12,0.086,0,88,0.2,0,1 +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,113620,62922,26543,10776,0,0,9,9,16,6706,9,999999999,12,0.086,0,88,0.2,0,1 +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,99512,47737,40079,15310,360,2.1,9,9,16,6706,9,999999999,12,0.086,0,88,0.2,0,1 +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,120474,62885,25622,10450,0,0,9,9,16,6706,9,999999999,12,0.086,0,88,0.2,0,1 +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,108162,60333,28967,11630,110,4.6,9,9,16,6096,9,999999999,12,0.086,0,88,0.2,0,1 +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,55190,18073,38330,14040,80,3.6,9,9,16,6706,9,999999999,12,0.086,0,88,0.2,0,1 +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,29100,1979,27651,9998,60,4.6,9,9,16,2896,9,999999999,12,0.086,0,88,0.2,0,1 +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,11707,0,11804,4891,40,3.6,9,9,16,2743,9,999999999,12,0.086,0,88,0.2,0,1 +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,48,83300,324,1349,357,92,28,85,10222,1121,9479,2958,50,3.6,9,9,16,6096,9,999999999,12,0.086,0,88,0.2,0,1 +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,965,0,971,357,60,4.6,9,9,16,6096,9,999999999,12,0.086,0,88,0.2,0,1 +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,6096,9,999999999,12,0.086,0,88,0.2,0,1 +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,6096,9,999999999,12,0.086,0,88,0.2,0,1 +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,6096,9,999999999,12,0.086,0,88,0.2,0,1 +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,6096,9,999999999,12,0.086,0,88,0.2,0,1 +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,6096,9,999999999,13,0.086,0,88,0.2,0,1 +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,6096,9,999999999,13,0.087,0,88,0.2,0,1 +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,7620,9,999999999,13,0.087,0,88,0.2,0,1 +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,93,82900,0,0,293,0,0,0,0,0,0,0,210,3.6,6,5,14.4,77777,9,999999999,13,0.087,0,88,0.2,0,1 +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,89,83000,0,0,313,0,0,0,0,0,0,0,180,3.4,9,9,14.4,6096,9,999999999,13,0.087,0,88,0.2,0,1 +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,13,0.087,0,88,0.2,0,1 +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,3.9,93,83000,103,1247,304,0,0,0,0,0,0,0,140,2.1,9,9,12.8,6096,9,999999999,13,0.087,0,88,0.2,0,1 +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,12448,1002,11945,3650,150,4.6,9,9,16,6096,9,999999999,13,0.087,0,88,0.2,0,1 +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,32907,14396,23948,7729,170,3.1,9,9,16,6096,9,999999999,13,0.087,0,88,0.2,0,1 +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,30511,2517,28496,10421,140,4.6,10,10,16,6096,9,999999999,14,0.087,0,88,0.2,0,1 +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,66033,24981,42974,15351,150,3.6,10,10,16,6096,9,999999999,14,0.087,0,88,0.2,0,1 +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,39225,2413,36383,14106,130,5.7,7,7,16,6096,9,999999999,14,0.087,0,88,0.2,0,1 +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,49351,2122,47109,17300,130,1.5,9,9,16,975,9,999999999,14,0.087,0,88,0.2,0,1 +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,48584,2595,45746,16938,130,6.7,10,10,16,6096,9,999999999,14,0.087,0,88,0.2,0,1 +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,30165,882,29127,11714,100,10.8,10,10,16,6096,9,999999999,14,0.087,0,88,0.2,0,1 +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,63517,28111,34737,13115,140,11.8,9,9,16,6096,9,999999999,15,0.087,0,88,0.2,0,1 +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,43873,16139,31195,10915,140,11.3,10,10,16,6096,9,999999999,15,0.087,0,88,0.2,0,1 +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,6850,0,6907,3129,170,7.2,10,10,16,1981,9,999999999,15,0.087,0,88,0.2,0,1 +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,7.2,83,83200,328,1348,339,32,0,32,3157,0,3181,1354,160,8.8,10,10,16,1524,9,999999999,15,0.087,0,88,0.2,0,1 +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,1631,0,1050,330,100,9.8,10,10,16,1341,9,999999999,15,0.087,0,88,0.2,0,1 +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,15,0.087,0,88,0.2,0,1 +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,16,0.087,0,88,0.2,0,1 +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,2438,9,999999999,16,0.087,0,88,0.2,8.1,1 +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,1981,9,999999999,16,0.087,0,88,0.2,0,1 +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,1676,9,999999999,16,0.087,0,88,0.2,0,1 +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,457,9,999999999,16,0.087,0,88,0.2,0,1 +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,457,9,999999999,16,0.087,0,88,0.2,0,1 +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,1829,9,999999999,17,0.087,0,88,0.2,0,1 +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,93,82900,0,0,319,0,0,0,0,0,0,0,120,6.2,10,10,16,1433,9,999999999,17,0.087,0,88,0.2,0,1 +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,1981,9,999999999,17,0.087,0,88,0.2,0,1 +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,4572,9,999999999,17,0.087,0,88,0.2,0,1 +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,89,83300,364,1347,321,152,106,124,16584,5928,13589,3980,100,5.7,10,10,16,640,9,999999999,17,0.087,0,88,0.2,0,1 +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,33491,14200,24893,7949,120,10.3,10,10,16,335,9,999999999,17,0.087,0,88,0.2,0,1 +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,30464,1485,29371,10681,140,9.3,10,10,16,396,9,999999999,17,0.087,0,88,0.2,0,1 +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,36518,1507,35220,13366,140,9.3,10,10,16,518,9,999999999,17,0.087,0,88,0.2,0,1 +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,28012,0,28291,12624,140,8.2,10,10,9.6,488,9,999999999,17,0.087,0,88,0.2,0,1 +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,25296,415,24807,10165,130,11.3,10,10,16,549,9,999999999,17,0.087,0,88,0.2,0,1 +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,6.7,80,83500,1204,1347,339,369,18,353,43390,1512,41778,15834,130,10.3,10,10,16,579,9,999999999,17,0.087,0,88,0.2,0,1 +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,35238,948,34257,13421,140,10.8,10,10,16,640,9,999999999,17,0.087,0,88,0.2,0,1 +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,13157,0,13282,6520,110,8.2,9,9,14.4,1250,9,999999999,17,0.087,0,88,0.2,0,1 +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,29191,1924,27630,10048,110,9.8,10,10,16,427,9,999999999,17,0.087,0,88,0.2,0,1 +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,12207,0,12308,5083,120,10.8,10,10,16,366,9,999999999,17,0.087,0,88,0.2,0,1 +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,12269,3114,10319,3173,120,13.4,9,9,16,366,9,999999999,17,0.087,0,88,0.2,0,1 +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,386,0,389,159,130,10.3,10,10,16,244,9,999999999,17,0.087,0,88,0.2,0,1 +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,17,0.087,0,88,0.2,0,1 +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,17,0.087,0,88,0.2,0,1 +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,17,0.087,0,88,0.2,0,1 +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,17,0.087,0,88,0.2,0,1 +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,792,9,999999999,17,0.087,0,88,0.2,0,1 +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,671,9,999999999,17,0.088,0,88,0.2,0,1 +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,732,9,999999999,17,0.088,0,88,0.2,0,1 +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,17,0.088,0,88,0.2,0,1 +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,274,9,999999999,17,0.088,0,88,0.2,0,1 +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,17,0.088,0,88,0.2,0,1 +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,213,9,999999999,17,0.088,0,88,0.2,0,1 +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,5550,0,5592,2278,140,7.7,10,10,8,610,9,999999999,17,0.088,0,88,0.2,0,1 +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,7699,0,7763,3531,150,7.2,10,10,6.4,610,9,999999999,17,0.088,0,88,0.2,0,1 +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,89,83600,841,1347,321,111,0,111,11453,0,11557,5507,140,9.3,10,10,9.6,762,9,999999999,17,0.088,0,88,0.2,0,1 +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,6,93,83600,1022,1347,324,132,0,132,13819,0,13951,6842,130,6.7,10,10,16.1,1140,9,999999999,17,0.088,0,88,0.2,0,1 +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,16283,0,16445,8012,120,7.7,10,10,8,457,9,999999999,17,0.088,0,88,0.2,0,1 +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,18067,0,18250,8796,150,4.6,10,10,2.4,518,9,999999999,16,0.088,0,88,0.2,4.3,1 +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,16471,0,16637,8103,220,5.7,10,10,2.4,610,9,999999999,16,0.088,0,88,0.2,0,1 +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,6,93,83400,1135,1347,324,146,0,146,15425,0,15578,7631,220,5.7,10,10,2.4,600,9,999999999,16,0.088,0,88,0.2,4.6,1 +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,4,100,83400,1001,1347,308,126,0,126,13178,0,13303,6526,280,4.6,10,10,3.2,540,9,999999999,16,0.088,0,88,0.2,4.1,1 +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,4.4,96,83400,814,1347,313,100,0,100,10297,0,10389,4960,300,3.6,10,10,3.2,518,9,999999999,16,0.088,0,88,0.2,0,1 +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,4.4,96,83400,586,1347,313,69,0,69,6970,0,7028,3183,340,3.1,10,10,1.6,427,9,999999999,16,0.088,0,88,0.2,0,1 +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,96,83300,335,1347,316,37,0,37,3657,0,3684,1549,310,5.2,10,10,0.4,213,9,999999999,16,0.088,0,88,0.2,0,1 +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,5,93,83200,84,1133,318,18,81,13,2054,0,1485,457,310,5.1,10,10,5.2,210,9,999999999,16,0.088,0,88,0.2,0,1 +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,4.4,96,83400,0,0,313,0,0,0,0,0,0,0,270,4.1,10,10,11.2,122,9,999999999,15,0.088,0,88,0.2,0,1 +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,15,0.088,0,88,0.2,0,1 +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,97,83400,0,0,298,0,0,0,0,0,0,0,0,2,9,9,11.2,427,9,999999999,15,0.088,0,88,0.2,0,1 +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,15,0.088,0,88,0.2,0,1 +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,15,0.088,0,88,0.2,0,1 +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,77777,9,999999999,5,0.089,0,88,0.2,0,1 +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,77777,9,999999999,5,0.089,0,88,0.2,0,1 +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,77777,9,999999999,5,0.089,0,88,0.2,0,1 +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,-2.2,83,83700,0,0,246,0,0,0,0,0,0,0,260,1.5,0,0,32,77777,9,999999999,4,0.089,0,88,0.2,0,1 +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,77777,9,999999999,4,0.089,0,88,0.2,0,1 +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,5676,0,2388,734,200,2.1,0,0,96,77777,9,999999999,4,0.089,0,88,0.2,0,1 +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,28416,23828,5143,1824,0,0,0,0,96,77777,9,999999999,5,0.089,0,88,0.2,0,1 +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,48514,83197,9311,1409,310,2.1,0,0,96,77777,9,999999999,5,0.089,0,88,0.2,0,1 +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,69808,93022,11040,1915,230,2.1,0,0,96,77777,9,999999999,5,0.089,0,88,0.2,0,1 +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,-1.1,45,83600,1025,1346,286,825,966,89,87122,97959,12255,2644,310,1.5,0,0,96,77777,9,999999999,5,0.089,0,88,0.2,0,1 +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,99287,100638,12846,3663,20,3.1,0,0,96,77777,9,999999999,5,0.089,0,88,0.2,0,1 +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,105333,101696,13057,4580,50,3.1,0,0,80,77777,9,999999999,5,0.089,0,88,0.2,0,1 +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,104745,101532,13069,4499,100,3.6,0,0,80,77777,9,999999999,5,0.089,0,88,0.2,0,1 +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,28,83200,1137,1346,331,885,938,93,93409,95479,12502,3454,70,4.1,1,1,96,77777,9,999999999,6,0.089,0,88,0.2,0,1 +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,72824,41178,22046,8976,120,5.7,5,3,96,77777,9,999999999,6,0.089,0,88,0.2,0,1 +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,70633,51762,17130,6764,100,4.6,7,4,96,77777,9,999999999,6,0.089,0,88,0.2,0,1 +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,42454,36275,15899,5649,130,2.1,8,4,96,77777,9,999999999,6,0.089,0,88,0.2,0,1 +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,15942,3197,14501,3896,140,2.1,9,7,96,7620,9,999999999,6,0.089,0,88,0.2,0,1 +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,2132,0,1912,569,190,3.1,9,6,80,7620,9,999999999,6,0.089,0,88,0.2,0,1 +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,77777,9,999999999,6,0.089,0,88,0.2,0,1 +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,77777,9,999999999,7,0.089,0,88,0.2,0,1 +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,77777,9,999999999,7,0.089,0,88,0.2,0,1 +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,77777,9,999999999,7,0.089,0,88,0.2,0,1 +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,77777,9,999999999,7,0.089,0,88,0.2,0,1 +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,32,77777,9,999999999,7,0.089,0,88,0.2,0,1 +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,77777,9,999999999,7,0.089,0,88,0.2,0,1 +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,77777,9,999999999,7,0.089,0,88,0.2,0,1 +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,77777,9,999999999,8,0.089,0,88,0.2,0,1 +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,77777,9,999999999,8,0.089,0,88,0.2,0,1 +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,5021,0,3020,897,340,4.6,0,0,96,77777,9,999999999,8,0.089,0,88,0.2,0,1 +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,25865,22940,7008,2433,350,5.2,0,0,80,77777,9,999999999,8,0.089,0,88,0.2,0,1 +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,52292,44421,10344,3954,340,5.2,0,0,64,77777,9,999999999,8,0.089,0,88,0.2,0,1 +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,78279,54389,13275,5393,360,4.6,0,0,64,77777,9,999999999,8,0.089,0,88,0.2,0,1 +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,95618,55897,16081,6716,350,6.2,1,1,64,77777,9,999999999,8,0.089,0,88,0.2,0,1 +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,95387,92456,17313,4419,340,5.2,1,1,64,77777,9,999999999,8,0.089,0,88,0.2,0,1 +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,119526,61709,26960,10942,30,5.2,3,3,64,77777,9,999999999,8,0.089,0,88,0.2,0,1 +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,112325,57841,34281,13494,320,4.1,6,5,64,6706,9,999999999,8,0.089,0,88,0.2,0,1 +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,84669,40842,35378,13762,340,6.2,8,6,32,6706,9,999999999,8,0.089,0,88,0.2,0,1 +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,69861,35805,32961,12628,350,6.2,7,5,16,6706,9,999999999,8,0.089,0,88,0.2,0,1 +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,52634,31003,25407,9460,330,8.2,6,6,24,6706,9,999999999,8,0.089,0,88,0.2,0,1 +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,41370,34152,16641,5876,330,5.2,6,6,24,1280,9,999999999,8,0.089,0,88,0.2,0,1 +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,12873,7339,6394,2186,350,7.2,5,5,24,77777,9,999999999,8,0.089,0,88,0.2,0,1 +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,2746,0,2533,713,350,5.2,7,7,24,1372,9,999999999,8,0.089,0,88,0.2,0,1 +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,1067,9,999999999,8,0.089,0,88,0.2,0,1 +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,975,9,999999999,8,0.089,0,88,0.2,0,1 +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,-2.2,58,83100,0,0,306,0,0,0,0,0,0,0,20,5.2,10,10,32,1036,9,999999999,8,0.089,0,88,0.2,0,1 +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,671,9,999999999,8,0.089,0,88,0.2,0,1 +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,671,9,999999999,8,0.089,0,88,0.2,0,1 +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,640,9,999999999,8,0.089,0,88,0.2,0,1 +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,77777,9,999999999,8,0.089,0,88,0.2,0,1 +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,77777,9,999999999,8,0.089,0,88,0.2,0,1 +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,77777,9,999999999,8,0.089,0,88,0.2,0,1 +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,77777,9,999999999,8,0.089,0,88,0.2,0,1 +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,5007,0,3235,956,120,2.1,0,0,32,77777,9,999999999,8,0.089,0,88,0.2,0,1 +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,25259,22135,7552,2609,100,2.1,0,0,16,77777,9,999999999,8,0.089,0,88,0.2,0,1 +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.6,67,83000,630,1344,272,410,645,108,48340,40532,12777,4808,80,3.1,1,1,19.2,77777,9,999999999,8,0.089,0,88,0.2,0,1 +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,60,83000,852,1344,276,634,812,120,77081,53579,14642,5926,100,2.6,0,0,19.2,77777,9,999999999,8,0.089,0,88,0.2,0,1 +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,93449,53955,16776,6999,10,2.1,1,1,19.2,77777,9,999999999,8,0.089,0,88,0.2,0,1 +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,99121,51258,25488,10395,360,3.6,3,3,24,77777,9,999999999,8,0.089,0,88,0.2,0,1 +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,61996,14239,45150,16795,80,6.2,7,7,19.2,6706,9,999999999,8,0.089,0,88,0.2,0,1 +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,36,82700,1213,1344,345,421,84,346,49773,7186,41166,15654,80,6.7,9,9,24,3048,9,999999999,8,0.089,0,88,0.2,0,1 +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,51650,11467,38473,14710,90,7.7,9,7,24,7620,9,999999999,8,0.089,0,88,0.2,0,1 +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.6,34,82600,1008,1344,337,559,225,390,63546,21697,44628,15653,90,6.2,9,8,24,3353,9,999999999,9,0.089,0,88,0.2,0,1 +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,21780,0,21975,9226,90,6.7,10,10,24,3353,9,999999999,9,0.089,0,88,0.2,0,1 +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,36,82700,595,1344,345,154,63,126,17807,4124,14626,5302,60,5.2,9,9,24,3353,9,999999999,9,0.089,0,88,0.2,0,1 +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,40,82800,345,1344,337,109,34,100,12056,1658,11103,3402,60,5.2,9,9,32,3353,9,999999999,9,0.089,0,88,0.2,0,1 +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,43,82800,93,1199,332,20,0,20,1938,0,1951,657,90,3.1,9,9,32,3353,9,999999999,9,0.089,0,88,0.2,0,1 +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,50,83000,0,0,331,0,0,0,0,0,0,0,20,7.2,10,10,24,3353,9,999999999,9,0.089,0,88,0.2,0,1 +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,2438,9,999999999,9,0.089,0,88,0.2,0,1 +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,610,9,999999999,9,0.089,0,88,0.2,0.3,1 +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,2.8,86,83400,0,0,311,0,0,0,0,0,0,0,350,5.2,10,10,16,732,9,999999999,9,0.089,0,88,0.2,0,1 +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,3.3,89,83400,0,0,312,0,0,0,0,0,0,0,360,4.1,10,10,11.2,366,9,999999999,9,0.089,0,88,0.2,0,1 +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,305,9,999999999,9,0.089,0,88,0.2,0,1 +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,2.8,86,83400,0,0,311,0,0,0,0,0,0,0,60,3.6,10,10,16,244,9,999999999,9,0.089,0,88,0.2,0,1 +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,213,9,999999999,9,0.089,0,88,0.2,0,1 +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,10,0.089,0,88,0.2,0,1 +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,10,0.089,0,88,0.2,0,1 +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,1457,0,1467,570,350,2.1,10,10,19.2,244,9,999999999,10,0.089,0,88,0.2,0,1 +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,2.8,86,83500,386,1344,311,60,0,60,5963,0,6008,2453,40,2.6,10,10,19.2,274,9,999999999,9,0.089,0,88,0.2,0,1 +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,3.3,89,83500,634,1344,312,111,0,111,11265,0,11360,4931,20,2.6,10,10,19.2,244,9,999999999,9,0.089,0,88,0.2,0,1 +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,16338,0,16487,7500,40,2.1,10,10,19.2,274,9,999999999,9,0.089,0,88,0.2,0,1 +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,20460,0,20657,9609,10,2.1,10,10,24,396,9,999999999,9,0.089,0,88,0.2,0,1 +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,27882,0,28159,12588,70,3.1,10,10,32,518,9,999999999,9,0.089,0,88,0.2,0,1 +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,29614,0,29914,13296,100,4.6,10,10,32,610,9,999999999,9,0.089,0,88,0.2,0.3,1 +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,29501,0,29798,13247,80,6.2,10,10,24,762,9,999999999,9,0.089,0,88,0.2,1,1 +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,2.8,86,83600,1143,1344,311,259,0,259,27424,0,27695,12402,90,5.2,10,10,11.2,732,9,999999999,9,0.089,0,88,0.2,0.8,1 +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,23780,0,24006,10774,60,6.2,10,10,16,549,9,999999999,9,0.089,0,88,0.2,0,1 +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,18668,0,18836,8226,50,4.1,10,10,24,1372,9,999999999,9,0.089,0,88,0.2,0.5,1 +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,10524,0,10612,4560,60,3.1,10,10,16,244,9,999999999,9,0.089,0,88,0.2,0.5,1 +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,5250,0,5290,2135,20,2.6,10,10,16,244,9,999999999,9,0.089,0,88,0.2,0.5,1 +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,1065,0,1072,410,360,3.1,10,10,8,335,9,999999999,8,0.089,0,88,0.2,0,1 +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,335,9,999999999,8,0.089,0,88,0.2,0.5,1 +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,8,0.089,0,88,0.2,0,1 +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,8,0.089,0,88,0.2,1.8,1 +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,8,0.089,0,88,0.2,0.8,1 +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,8,0.089,0,88,0.2,0.3,1 +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,8,0.089,0,88,0.2,0.3,1 +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,396,9,999999999,8,0.089,0,88,0.2,0,1 +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,10,10,11.2,1006,9,999999999,8,0.089,0,88,0.2,0,1 +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,10,10,11.2,1097,9,999999999,8,0.089,0,88,0.2,0,1 +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,10,10,8,975,9,999999999,8,0.089,0,88,0.2,0,1 +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,1945,0,1958,733,190,1.5,10,10,8,488,9,999999999,8,0.089,0,88,0.2,0,1 +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,7464,0,7522,2950,100,3.1,10,10,16,457,9,999999999,8,0.089,0,88,0.2,0,1 +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,39446,7598,35902,9615,130,1.5,10,9,19.2,853,9,999999999,8,0.089,0,88,0.2,0,1 +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,57215,31133,30494,11117,250,2.1,9,9,48,610,9,999999999,8,0.089,0,88,0.2,0,1 +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,82641,46494,26851,10768,330,2.1,7,7,64,853,9,999999999,8,0.089,0,88,0.2,0,1 +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,105184,54701,22425,9242,20,3.1,4,4,80,77777,9,999999999,8,0.089,0,88,0.2,0,1 +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,97121,89888,16091,5594,330,2.6,2,2,96,77777,9,999999999,8,0.089,0,88,0.2,0,1 +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,102875,93779,19499,6141,20,3.1,3,3,96,77777,9,999999999,8,0.089,0,88,0.2,0,1 +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,93877,92755,15481,4083,40,3.6,2,2,80,77777,9,999999999,8,0.089,0,88,0.2,0,1 +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,38,84000,1012,1343,316,717,772,135,88533,51791,16735,6966,40,4.6,3,3,80,77777,9,999999999,8,0.089,0,88,0.2,0,1 +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,72623,51461,14699,5904,360,2.6,1,1,80,77777,9,999999999,8,0.089,0,88,0.2,0,1 +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,43297,76278,8194,1316,350,2.6,1,1,80,77777,9,999999999,8,0.089,0,88,0.2,0,1 +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,23365,19712,6525,2242,80,2.1,1,1,80,77777,9,999999999,8,0.089,0,88,0.2,0,1 +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,44,84000,100,1242,294,41,293,17,4661,0,1936,594,90,3.1,1,0,80,77777,9,999999999,8,0.089,0,88,0.2,0,1 +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,52,84000,0,0,290,0,0,0,0,0,0,0,110,2.6,1,1,80,77777,9,999999999,8,0.089,0,88,0.2,0,1 +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,52,84100,0,0,284,0,0,0,0,0,0,0,120,1.5,3,0,32,77777,9,999999999,8,0.089,0,88,0.2,0,1 +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,56,84100,0,0,285,0,0,0,0,0,0,0,160,4.1,2,1,32,77777,9,999999999,8,0.089,0,88,0.2,0,1 +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,77777,9,999999999,8,0.089,0,88,0.2,0,1 +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,77777,9,999999999,8,0.089,0,88,0.2,0,1 +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,62,83900,0,0,288,0,0,0,0,0,0,0,200,4.1,5,4,32,77777,9,999999999,8,0.089,0,88,0.2,0,1 +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,77777,9,999999999,8,0.089,0,88,0.2,0,1 +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,77777,9,999999999,8,0.089,0,88,0.2,0,1 +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,67,83800,0,0,275,0,0,0,0,0,0,0,210,2.1,8,1,32,77777,9,999999999,8,0.089,0,88,0.2,0,1 +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,73,83900,1,123,274,0,2,0,0,0,0,0,320,2.1,7,2,64,77777,9,999999999,8,0.089,0,88,0.2,0,1 +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,5245,0,3468,1040,190,2.1,5,1,96,77777,9,999999999,8,0.089,0,88,0.2,0,1 +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,25963,22685,8216,2837,180,2.6,2,1,96,77777,9,999999999,8,0.089,0,88,0.2,0,1 +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,50597,41150,10703,4112,90,1,4,1,96,77777,9,999999999,8,0.089,0,88,0.2,0,1 +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,65729,43321,21458,8405,0,0,7,2,96,77777,9,999999999,8,0.089,0,88,0.2,0,1 +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,92414,55078,28660,11383,190,2.1,9,4,96,77777,9,999999999,9,0.089,0,88,0.2,0,1 +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,98572,51091,27245,11029,140,3.1,7,2,96,77777,9,999999999,9,0.089,0,88,0.2,0,1 +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,115939,58998,26446,10747,40,1.5,6,3,80,77777,9,999999999,9,0.089,0,88,0.2,0,1 +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,-2.8,21,83500,1219,1342,353,691,355,368,81447,31300,43658,16383,120,4.1,7,7,96,3962,9,999999999,9,0.089,0,88,0.2,0,1 +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,-4.4,18,83400,1148,1342,364,642,105,551,72569,11425,62754,20118,130,3.6,10,9,96,3962,9,999999999,9,0.089,0,88,0.2,0,1 +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,-3.3,20,83400,1015,1342,365,530,218,364,60701,20466,41956,15107,130,2.6,10,9,96,6706,9,999999999,10,0.089,0,88,0.2,0,1 +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,18191,0,18354,8074,170,3.6,10,10,96,2896,9,999999999,10,0.089,0,88,0.2,0,1 +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,12064,0,12164,5108,320,5.2,10,10,96,2743,9,999999999,10,0.089,0,88,0.2,0,1 +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,32,83400,355,1342,363,59,0,59,5852,0,5897,2348,310,5.2,10,10,96,2743,9,999999999,10,0.089,0,88,0.2,0,1 +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,1551,0,1562,571,50,2.6,10,10,64,2591,9,999999999,10,0.089,0,88,0.2,0,1 +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.6,37,83500,0,0,356,0,0,0,0,0,0,0,50,2.6,10,10,32,2438,9,999999999,10,0.089,0,88,0.2,0,1 +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.6,37,83500,0,0,356,0,0,0,0,0,0,0,20,1.5,10,10,32,2134,9,999999999,11,0.089,0,88,0.2,0,1 +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,1676,9,999999999,11,0.089,0,88,0.2,0,1 +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,63,83500,0,0,345,0,0,0,0,0,0,0,130,5.2,10,10,32,1981,9,999999999,11,0.089,0,88,0.2,0,1 +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,3353,9,999999999,11,0.089,0,88,0.2,0,1 +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,74,83400,0,0,309,0,0,0,0,0,0,0,120,3.1,10,6,32,8534,9,999999999,11,0.089,0,88,0.2,0,1 +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,80,83400,0,0,300,0,0,0,0,0,0,0,130,3.1,9,4,32,77777,9,999999999,11,0.089,0,88,0.2,0,1 +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,80,83300,0,0,297,0,0,0,0,0,0,0,130,2.6,10,3,32,77777,9,999999999,12,0.089,0,88,0.2,0,1 +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,86,83300,0,0,295,0,0,0,0,0,0,0,150,1.5,10,4,32,77777,9,999999999,12,0.089,0,88,0.2,0,1 +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,93,83400,1,145,319,0,0,0,0,0,0,0,130,1.5,10,10,64,3353,9,999999999,12,0.089,0,88,0.2,0,1 +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,2623,0,2642,948,210,2.1,10,10,80,3353,9,999999999,12,0.089,0,88,0.2,0,1 +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,5.6,74,83500,398,1342,328,72,28,63,8385,1113,7356,2584,230,1.5,10,9,80,3353,9,999999999,12,0.089,0,88,0.2,0,1 +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,66,83500,644,1342,342,161,0,161,16345,0,16484,6647,310,2.6,10,10,64,3048,9,999999999,12,0.089,0,88,0.2,0,1 +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,59,83500,864,1342,341,395,95,333,44367,8788,37637,12863,360,3.1,10,9,64,3353,9,999999999,12,0.089,0,88,0.2,0,1 +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,65178,25746,38839,14507,120,2.6,9,7,64,7620,9,999999999,12,0.089,0,88,0.2,0,1 +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,89186,41901,36701,14232,360,2.6,8,5,64,7620,9,999999999,12,0.089,0,88,0.2,0,1 +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,114370,56652,25738,10495,20,3.1,5,2,64,77777,9,999999999,11,0.089,0,88,0.2,0,1 +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,81852,25995,53519,18913,330,2.6,8,6,72,7620,9,999999999,11,0.089,0,88,0.2,0,1 +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,85119,41636,28078,11330,70,3.1,7,5,96,7620,9,999999999,11,0.089,0,88,0.2,0,1 +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,2.2,31,83500,1017,1342,346,711,565,282,83012,46869,33115,12743,360,4.6,5,3,96,77777,9,999999999,11,0.089,0,88,0.2,0,1 +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,26,83500,832,1342,347,493,472,200,57451,36371,23420,8931,40,2.6,5,4,80,77777,9,999999999,11,0.089,0,88,0.2,0,1 +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,35078,23634,17960,6313,50,2.1,5,5,80,77777,9,999999999,11,0.089,0,88,0.2,0,1 +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,21096,16765,6856,2356,10,3.1,2,2,80,77777,9,999999999,11,0.089,0,88,0.2,0,1 +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,4351,0,2572,762,40,3.6,3,3,96,77777,9,999999999,11,0.089,0,88,0.2,0,1 +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,77777,9,999999999,11,0.089,0,88,0.2,0,1 +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,77777,9,999999999,11,0.089,0,88,0.2,0,1 +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,63,83800,0,0,299,0,0,0,0,0,0,0,190,1.5,0,0,32,77777,9,999999999,11,0.089,0,88,0.2,0,1 +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,77777,9,999999999,11,0.089,0,88,0.2,0,1 +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,77777,9,999999999,11,0.089,0,88,0.2,0,1 +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,77777,9,999999999,11,0.089,0,88,0.2,0,1 +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,77777,9,999999999,11,0.089,0,88,0.2,0,1 +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,77777,9,999999999,11,0.089,0,88,0.2,0,1 +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,77777,9,999999999,10,0.089,0,88,0.2,0,1 +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,77777,9,999999999,10,0.089,0,88,0.2,0,1 +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,6407,0,3380,1036,200,2.6,3,1,112,77777,9,999999999,10,0.089,0,88,0.2,0,1 +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,27134,23672,8337,2891,210,3.6,2,1,112,77777,9,999999999,10,0.089,0,88,0.2,0,1 +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,54817,44431,9485,3678,210,5.7,1,0,112,77777,9,999999999,10,0.089,0,88,0.2,0,1 +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,66062,83136,13008,2100,180,5.2,1,1,112,77777,9,999999999,10,0.089,0,88,0.2,0,1 +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,85681,91850,14899,3055,210,2.6,1,0,112,77777,9,999999999,10,0.089,0,88,0.2,0,1 +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,95717,92998,15399,4411,140,3.6,2,1,112,77777,9,999999999,10,0.089,0,88,0.2,0,1 +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,102933,93849,18238,6302,170,4.6,3,0,112,77777,9,999999999,10,0.089,0,88,0.2,0,1 +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.6,18,83300,1223,1341,363,904,770,201,111581,55277,24934,10190,130,5.2,5,2,112,77777,9,999999999,10,0.089,0,88,0.2,0,1 +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,19,83200,1151,1341,362,811,742,173,100253,51781,21484,8880,140,3.1,8,1,112,77777,9,999999999,10,0.089,0,88,0.2,0,1 +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,92315,54240,18244,7569,130,4.6,7,1,112,77777,9,999999999,10,0.089,0,88,0.2,0,1 +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,69930,48696,16284,6511,150,8.2,8,1,112,77777,9,999999999,10,0.089,0,88,0.2,0,1 +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,47695,40873,15421,5599,150,7.7,7,1,96,77777,9,999999999,10,0.089,0,88,0.2,0,1 +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.6,20,83000,362,1341,360,190,378,88,21349,17394,9923,3210,150,12.4,6,1,80,77777,9,999999999,10,0.089,0,88,0.2,0,1 +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,4209,0,2887,840,170,10.8,6,2,88,77777,9,999999999,10,0.089,0,88,0.2,0,1 +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,24,83000,0,0,349,0,0,0,0,0,0,0,170,7.2,5,3,48,77777,9,999999999,10,0.089,0,88,0.2,0,1 +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,1.7,30,83100,0,0,342,0,0,0,0,0,0,0,190,5.7,2,2,32,77777,9,999999999,10,0.089,0,88,0.2,0,1 +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,77777,9,999999999,10,0.089,0,88,0.2,0,1 +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,77777,9,999999999,10,0.089,0,88,0.2,0,1 +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,77777,9,999999999,10,0.089,0,88,0.2,0,1 +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,77777,9,999999999,10,0.09,0,88,0.2,0,1 +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,77777,9,999999999,10,0.09,0,88,0.2,0,1 +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,2.2,42,82800,0,0,323,0,0,0,0,0,0,0,170,5.7,6,3,32,77777,9,999999999,10,0.09,0,88,0.2,0,1 +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,77777,9,999999999,10,0.09,0,88,0.2,0,1 +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,7620,9,999999999,10,0.09,0,88,0.2,0,1 +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,2.8,44,82800,152,1341,336,59,73,50,6373,121,5420,1457,160,4.1,9,7,96,4877,9,999999999,10,0.09,0,88,0.2,0,1 +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,18205,7126,14184,4369,140,4.1,9,8,96,4877,9,999999999,10,0.09,0,88,0.2,0,1 +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,3.9,35,82800,651,1341,361,200,190,108,23655,11725,12818,4880,170,4.1,9,7,96,4267,9,999999999,10,0.09,0,88,0.2,0,1 +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,49035,22048,28587,10690,340,3.1,9,8,80,4572,9,999999999,10,0.09,0,88,0.2,0,1 +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,59302,21500,36031,13757,350,2.6,9,7,96,4572,9,999999999,10,0.09,0,88,0.2,0,1 +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,70280,19112,50515,17983,190,8.2,9,8,96,7620,9,999999999,10,0.09,0,88,0.2,0,1 +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,93858,41224,42645,16119,190,9.3,9,7,96,7620,9,999999999,10,0.09,0,88,0.2,0,1 +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,79099,21692,56411,19556,190,10.3,9,8,96,7620,9,999999999,10,0.09,0,88,0.2,0,1 +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,-3.3,15,82600,1153,1341,391,316,37,283,37680,3018,33940,13320,160,7.7,10,9,96,7620,9,999999999,10,0.09,0,88,0.2,0,1 +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,59450,23217,36211,13659,170,10.3,9,8,96,7620,9,999999999,10,0.09,0,88,0.2,0,1 +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,55258,35581,17534,6965,160,9.8,9,5,80,6706,9,999999999,10,0.09,0,88,0.2,0,1 +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,34164,24139,15231,5547,170,10.8,8,6,80,7010,9,999999999,10,0.09,0,88,0.2,0,1 +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,12,82500,365,1341,380,157,280,81,17802,12743,9214,3038,180,9.8,9,7,80,5486,9,999999999,10,0.09,0,88,0.2,0,1 +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,-4.4,13,82600,114,1329,371,30,49,26,3336,0,2899,850,180,5.7,9,6,88,5182,9,999999999,10,0.09,0,88,0.2,0,1 +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,7620,9,999999999,10,0.09,0,88,0.2,0,1 +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,7620,9,999999999,10,0.09,0,88,0.2,0,1 +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,-2.8,21,82700,0,0,343,0,0,0,0,0,0,0,170,5.2,6,4,32,7620,9,999999999,10,0.09,0,88,0.2,0,1 +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,77777,9,999999999,10,0.09,0,88,0.2,0,1 +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,77777,9,999999999,10,0.09,0,88,0.2,0,1 +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,77777,9,999999999,10,0.09,0,88,0.2,0,1 +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,77777,9,999999999,10,0.09,0,88,0.2,0,1 +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,-3.3,27,82800,0,0,314,0,0,0,0,0,0,0,130,3.6,2,2,32,77777,9,999999999,10,0.09,0,88,0.2,0,1 +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,77777,9,999999999,10,0.09,0,88,0.2,0,1 +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,77777,9,999999999,10,0.09,0,88,0.2,0,1 +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,-1.7,31,82900,156,1340,322,44,102,32,4951,0,3609,1107,160,5.2,8,4,96,7620,9,999999999,10,0.09,0,88,0.2,0,1 +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,27329,24800,9751,3318,180,3.1,7,2,96,77777,9,999999999,10,0.09,0,88,0.2,0,1 +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,42827,30814,19848,7064,200,3.1,8,3,96,77777,9,999999999,10,0.09,0,88,0.2,0,1 +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,73732,50449,18087,7252,160,3.6,5,2,96,77777,9,999999999,10,0.09,0,88,0.2,0,1 +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,82978,46391,23004,9412,250,2.6,5,3,96,77777,9,999999999,10,0.09,0,88,0.2,0,1 +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,109435,57359,19950,8266,220,8.2,4,2,96,77777,9,999999999,10,0.09,0,88,0.2,0,1 +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,113722,55677,24499,10028,150,11.3,4,3,96,77777,9,999999999,10,0.09,0,88,0.2,0,1 +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,15,82800,1227,1340,384,969,938,110,101701,95525,14356,5326,150,12.4,2,2,96,77777,9,999999999,10,0.09,0,88,0.2,0,1 +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,15,82800,1155,1340,387,895,900,119,93757,91489,15687,4289,150,10.8,3,3,96,77777,9,999999999,10,0.09,0,88,0.2,0,1 +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,15,82700,1023,1340,384,704,670,193,84788,49241,23356,9503,160,11.3,4,2,96,77777,9,999999999,10,0.09,0,88,0.2,0,1 +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,-3.9,10,82700,839,1340,388,444,481,142,53254,33676,17100,6814,180,7.2,4,3,88,77777,9,999999999,10,0.09,0,88,0.2,0,1 +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,46318,39694,11885,4471,170,7.2,7,2,80,77777,9,999999999,10,0.09,0,88,0.2,0,1 +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,21332,16943,10253,3316,160,10.3,9,3,80,77777,9,999999999,10,0.09,0,88,0.2,0,1 +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,3.3,24,82700,117,1329,368,39,127,28,4314,0,3105,905,140,5.7,7,2,72,77777,9,999999999,10,0.09,0,88,0.2,0,1 +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,77777,9,999999999,10,0.09,0,88,0.2,0,1 +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,77777,9,999999999,10,0.09,0,88,0.2,0,1 +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,11.1,57,83100,0,0,342,0,0,0,0,0,0,0,150,11.3,0,0,16,77777,9,999999999,10,0.09,0,88,0.2,0,1 +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,12.2,61,83100,0,0,344,0,0,0,0,0,0,0,170,10.8,0,0,16,77777,9,999999999,10,0.09,0,88,0.2,0,1 +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,10,0.09,0,88,0.2,0,1 +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,10,0.09,0,88,0.2,0,1 +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,10,0.09,0,88,0.2,0,1 +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,63,83200,0,0,328,0,0,0,0,0,0,0,170,5.2,0,0,19.2,77777,9,999999999,10,0.09,0,88,0.2,0,1 +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,10,0.09,0,88,0.2,0,1 +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,10,72,83300,3,234,332,0,1,0,0,0,0,0,180,3.6,3,3,32,77777,9,999999999,10,0.09,0,88,0.2,0,1 +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,6703,0,4629,1350,190,5.2,5,2,80,77777,9,999999999,10,0.09,0,88,0.2,0,1 +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,25051,20236,8991,3115,190,5.2,5,1,96,77777,9,999999999,10,0.09,0,88,0.2,0,1 +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,50669,39466,13038,4976,150,4.1,4,1,96,77777,9,999999999,10,0.09,0,88,0.2,0,1 +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,31,83400,875,1339,348,652,791,135,78784,52310,16377,6639,180,3.6,3,0,96,77777,9,999999999,10,0.09,0,88,0.2,0,1 +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,1.7,22,83300,1051,1339,362,691,700,142,85475,46903,17637,7361,170,5.7,2,1,96,77777,9,999999999,10,0.09,0,88,0.2,0,1 +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,96983,91335,18681,5042,180,7.7,0,0,112,77777,9,999999999,9,0.09,0,88,0.2,0,1 +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,111505,55516,24430,9987,170,7.2,6,1,112,77777,9,999999999,9,0.09,0,88,0.2,0,1 +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,110015,53992,21728,8954,150,7.2,3,1,112,77777,9,999999999,9,0.09,0,88,0.2,0,1 +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,10,83000,1157,1339,374,873,818,166,108465,57470,20717,8572,160,7.2,2,2,112,77777,9,999999999,9,0.09,0,88,0.2,0,1 +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,86804,51560,24405,9875,160,10.3,4,4,112,77777,9,999999999,9,0.09,0,88,0.2,0,1 +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,67876,47751,20989,8175,160,7.7,4,4,112,77777,9,999999999,9,0.09,0,88,0.2,0,1 +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,46113,39333,14611,5373,150,5.7,3,3,112,77777,9,999999999,9,0.09,0,88,0.2,0,1 +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,20580,16762,8601,2890,160,5.2,2,2,96,77777,9,999999999,9,0.09,0,88,0.2,0,1 +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,4127,0,3019,892,150,6.2,3,3,64,77777,9,999999999,9,0.09,0,88,0.2,0,1 +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,77777,9,999999999,9,0.09,0,88,0.2,0,1 +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,77777,9,999999999,8,0.09,0,88,0.2,0,1 +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,77777,9,999999999,8,0.09,0,88,0.2,0,1 +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,77777,9,999999999,8,0.09,0,88,0.2,0,1 +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,77777,9,999999999,8,0.09,0,88,0.2,0,1 +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,77777,9,999999999,8,0.09,0,88,0.2,0,1 +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,77777,9,999999999,8,0.09,0,88,0.2,0,1 +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,77777,9,999999999,8,0.09,0,88,0.2,0,1 +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,-2.2,41,83300,0,0,290,0,0,0,0,0,0,0,70,3.6,1,1,32,77777,9,999999999,8,0.09,0,88,0.2,0,1 +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,77777,9,999999999,8,0.09,0,88,0.2,0,1 +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,8902,35542,3599,468,300,1.5,0,0,80,77777,9,999999999,8,0.09,0,88,0.2,0,1 +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,29921,71342,5849,948,70,1.5,0,0,80,77777,9,999999999,7,0.09,0,88,0.2,0,1 +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,49762,82899,7695,1344,150,3.1,1,1,96,77777,9,999999999,7,0.09,0,88,0.2,0,1 +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,71227,93127,9076,1798,340,2.1,1,1,96,77777,9,999999999,7,0.09,0,88,0.2,0,1 +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,89738,99783,10096,2491,270,2.6,0,0,96,77777,9,999999999,7,0.09,0,88,0.2,0,1 +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,101234,101799,10615,3493,260,4.1,0,0,112,77777,9,999999999,7,0.09,0,88,0.2,0,1 +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,104940,100776,10608,4366,310,2.6,1,1,112,77777,9,999999999,7,0.09,0,88,0.2,0,1 +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,-11.7,10,83500,1230,1339,316,1013,1013,82,106275,102526,10869,4350,220,7.2,0,0,96,77777,9,999999999,7,0.09,0,88,0.2,0,1 +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,99599,101488,10520,3298,240,6.2,0,0,112,77777,9,999999999,7,0.09,0,88,0.2,0,1 +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,87125,99175,10010,2360,260,5.7,0,0,112,77777,9,999999999,7,0.09,0,88,0.2,0,1 +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,69838,94646,8983,1724,290,5.2,0,0,112,77777,9,999999999,6,0.09,0,88,0.2,0,1 +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,48790,85807,7586,1293,210,5.2,0,0,112,77777,9,999999999,6,0.09,0,88,0.2,0,1 +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,-11.7,10,83500,375,1339,316,245,752,35,26145,66936,5563,882,50,3.6,0,0,112,77777,9,999999999,6,0.09,0,88,0.2,0,1 +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,6167,27287,2958,363,50,4.1,0,0,112,77777,9,999999999,6,0.09,0,88,0.2,0,1 +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,77777,9,999999999,6,0.09,0,88,0.2,0,1 +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,77777,9,999999999,6,0.09,0,88,0.2,0,1 +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,77777,9,999999999,6,0.09,0,88,0.2,0,1 +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,-8.3,25,83700,0,0,278,0,0,0,0,0,0,0,190,2.1,0,0,32,77777,9,999999999,6,0.09,0,88,0.2,0,1 +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,77777,9,999999999,6,0.09,0,88,0.2,0,1 +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,32,77777,9,999999999,6,0.09,0,88,0.2,0,1 +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,77777,9,999999999,5,0.09,0,88,0.2,0,1 +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,77777,9,999999999,5,0.09,0,88,0.2,0,1 +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,32,77777,9,999999999,5,0.09,0,88,0.2,0,1 +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,6,279,264,1,32,0,0,0,0,0,160,2.1,1,1,48,77777,9,999999999,5,0.09,0,88,0.2,0,1 +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,9364,0,2895,930,170,4.1,1,1,80,77777,9,999999999,5,0.09,0,88,0.2,0,1 +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,31334,28213,5773,2083,170,4.1,1,1,96,77777,9,999999999,5,0.09,0,88,0.2,0,1 +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,54411,45903,12663,4843,220,4.1,1,1,96,77777,9,999999999,5,0.09,0,88,0.2,0,1 +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,70223,91264,9338,1837,230,2.1,1,1,112,77777,9,999999999,6,0.09,0,88,0.2,0,1 +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,85515,94356,10220,2525,140,5.2,1,1,112,77777,9,999999999,6,0.09,0,88,0.2,0,1 +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,93898,93617,10612,3518,180,4.1,1,1,112,77777,9,999999999,6,0.09,0,88,0.2,0,1 +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,-5.6,12,83400,1237,1338,357,969,882,153,100142,89170,19496,6981,170,4.1,2,2,112,77777,9,999999999,6,0.09,0,88,0.2,0,1 +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,98530,91164,15177,5730,150,6.2,5,1,112,77777,9,999999999,6,0.09,0,88,0.2,0,1 +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,104770,55985,26817,10867,180,7.2,6,4,112,8534,9,999999999,6,0.09,0,88,0.2,0,1 +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,79244,41902,37703,14116,160,6.2,8,6,112,8534,9,999999999,6,0.09,0,88,0.2,0,1 +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,42414,9209,35634,12268,140,8.2,10,9,96,6096,9,999999999,6,0.09,0,88,0.2,0,1 +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,22075,5440,18151,6447,160,13.9,9,8,64,5182,9,999999999,6,0.09,0,88,0.2,0,1 +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,15894,7766,11122,3562,170,12.4,9,7,96,5182,9,999999999,7,0.09,0,88,0.2,0,1 +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,6011,0,3947,1102,190,8.2,6,3,80,77777,9,999999999,7,0.09,0,88,0.2,0,1 +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.6,25,83000,0,56,340,0,4,0,0,0,0,0,170,5.2,5,2,48,77777,9,999999999,7,0.09,0,88,0.2,0,1 +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,77777,9,999999999,7,0.09,0,88,0.2,0,1 +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,77777,9,999999999,7,0.09,0,88,0.2,0,1 +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,77777,9,999999999,7,0.09,0,88,0.2,0,1 +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,77777,9,999999999,7,0.09,0,88,0.2,0,1 +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,77777,9,999999999,7,0.09,0,88,0.2,0,1 +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,77777,9,999999999,8,0.09,0,88,0.2,0,1 +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,77777,9,999999999,8,0.09,0,88,0.2,0,1 +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,77777,9,999999999,8,0.09,0,88,0.2,0,1 +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,62,82900,5,301,283,0,13,0,0,0,0,0,160,1.5,2,2,48,77777,9,999999999,8,0.09,0,88,0.2,0,1 +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,7493,287,4974,1454,150,1.5,8,3,96,77777,9,999999999,8,0.09,0,88,0.2,0,1 +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,22764,12086,16604,4928,190,4.1,9,5,96,7620,9,999999999,8,0.09,0,88,0.2,0,1 +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,28,82900,665,1337,344,351,326,189,39891,25163,21583,7597,210,4.1,9,5,96,7620,9,999999999,8,0.09,0,88,0.2,0,1 +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,59991,36494,21439,8474,230,3.1,9,6,96,7620,9,999999999,8,0.09,0,88,0.2,0,1 +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,62277,19859,43217,15723,230,5.2,9,6,96,7620,9,999999999,8,0.09,0,88,0.2,0,1 +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,102767,53201,28242,11389,210,6.7,10,4,96,77777,9,999999999,8,0.09,0,88,0.2,0,1 +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,109400,54176,30413,12180,210,8.8,10,6,96,8534,9,999999999,8,0.09,0,88,0.2,0,1 +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,82562,32127,43276,16300,190,7.2,9,7,96,8534,9,999999999,8,0.09,0,88,0.2,0,1 +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,73637,26995,43950,16306,200,9.8,9,8,32,7620,9,999999999,8,0.09,0,88,0.2,0,1 +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,86348,50811,30881,12086,220,7.2,9,5,96,7620,9,999999999,8,0.09,0,88,0.2,0,1 +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,65978,45659,22016,8540,220,4.1,8,4,80,77777,9,999999999,8,0.09,0,88,0.2,0,1 +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,45071,37559,13664,5093,170,8.2,7,2,80,77777,9,999999999,8,0.09,0,88,0.2,0,1 +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,23141,19436,11446,3650,140,7.2,6,3,80,77777,9,999999999,8,0.09,0,88,0.2,0,1 +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,5331,0,3341,990,150,6.7,5,2,80,77777,9,999999999,8,0.09,0,88,0.2,0,1 +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,77777,9,999999999,8,0.09,0,88,0.2,0,1 +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,77777,9,999999999,8,0.09,0,88,0.2,0,1 +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,77777,9,999999999,8,0.09,0,88,0.2,0,1 +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,6706,9,999999999,8,0.09,0,88,0.2,0,1 +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,6706,9,999999999,8,0.09,0,88,0.2,0,1 +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,77777,9,999999999,8,0.09,0,88,0.2,0,1 +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,7620,9,999999999,8,0.09,0,88,0.2,0,1 +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,4,3,32,77777,9,999999999,8,0.09,0,88,0.2,0,1 +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,77777,9,999999999,8,0.09,0,88,0.2,0,1 +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,77777,9,999999999,8,0.09,0,88,0.2,0,1 +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,8930,0,3327,1062,20,3.1,1,1,96,77777,9,999999999,9,0.09,0,88,0.2,0,1 +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,27452,23912,9679,3346,10,6.2,3,3,96,77777,9,999999999,9,0.09,0,88,0.2,0,1 +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,37905,11172,31388,9641,360,8.2,6,6,96,1402,9,999999999,9,0.09,0,88,0.2,0,1 +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,49,82800,884,1337,364,194,0,194,20101,0,20286,9007,10,6.2,10,10,80,1250,9,999999999,9,0.09,0,88,0.2,0,1 +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,24895,0,25137,11361,360,7.7,10,10,64,1036,9,999999999,10,0.09,0,88,0.2,0,1 +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,28305,0,28590,12804,10,9.3,10,10,48,762,9,999999999,10,0.09,0,88,0.2,0,1 +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,8.3,64,82800,1240,1337,365,281,0,281,29934,0,30241,13471,350,7.2,10,10,32,792,9,999999999,10,0.09,0,88,0.2,1,1 +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,4.4,68,82900,1234,1337,336,280,0,280,29866,0,30170,13421,250,7.2,10,10,9.6,884,9,999999999,10,0.09,0,88,0.2,3.8,1 +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,27878,0,28156,12615,200,6.2,10,10,6.4,884,9,999999999,11,0.09,0,88,0.2,2.8,1 +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,74,82900,1033,1337,334,231,0,231,24230,0,24463,11038,290,5.7,10,10,96,2438,9,999999999,11,0.09,0,88,0.2,0,1 +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,50660,27343,23460,9049,260,7.7,7,6,96,7620,9,999999999,11,0.09,0,88,0.2,0,1 +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,43498,32880,18234,6509,230,4.1,5,4,80,77777,9,999999999,11,0.09,0,88,0.2,0,1 +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,3.9,47,82900,384,1337,330,143,212,82,16255,9510,9352,3139,310,2.1,5,5,96,77777,9,999999999,12,0.09,0,88,0.2,0,1 +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,4635,0,3652,1067,40,5.7,6,4,80,7620,9,999999999,12,0.09,0,88,0.2,0,1 +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,3962,9,999999999,12,0.09,0,88,0.2,0,1 +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,1981,9,999999999,12,0.09,0,88,0.2,0,1 +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,1006,9,999999999,13,0.09,0,88,0.2,0,1 +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,975,9,999999999,13,0.09,0,88,0.2,0,1 +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,6.7,80,83300,0,0,339,0,0,0,0,0,0,0,290,3.1,10,10,32,671,9,999999999,13,0.09,0,88,0.2,3.3,1 +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,518,9,999999999,14,0.091,0,88,0.2,0.3,1 +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,671,9,999999999,14,0.091,0,88,0.2,0.3,1 +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,14,0.091,0,88,0.2,0,1 +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,14,0.091,0,88,0.2,0.8,1 +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,15,0.091,0,88,0.2,0.3,1 +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,2338,0,2355,913,290,3.6,10,10,9.6,427,9,999999999,14,0.091,0,88,0.2,0.3,1 +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,6374,0,6425,2690,320,3.6,10,10,8,305,9,999999999,14,0.091,0,88,0.2,1,1 +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,9661,0,9744,4432,340,6.2,10,10,9.6,152,9,999999999,14,0.091,0,88,0.2,0.8,1 +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,19785,0,19967,8908,350,4.1,10,10,11.2,457,9,999999999,14,0.091,0,88,0.2,0,1 +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,24696,0,24936,11292,340,3.1,10,10,32,1219,9,999999999,14,0.091,0,88,0.2,0,1 +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,57472,16096,36198,14124,330,2.1,9,9,48,7010,9,999999999,14,0.091,0,88,0.2,0,1 +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,29849,0,30154,13438,300,3.1,10,10,48,1981,9,999999999,14,0.091,0,88,0.2,0,1 +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,104911,47884,39576,15260,310,3.1,9,7,64,1524,9,999999999,14,0.091,0,88,0.2,0,1 +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,6.7,58,83500,1165,1336,353,401,149,271,47938,11423,32584,12920,10,3.6,9,9,80,1036,9,999999999,14,0.091,0,88,0.2,0,1 +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,41631,15296,20543,8491,360,3.1,7,7,64,2134,9,999999999,14,0.091,0,88,0.2,0,1 +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,53599,31808,18102,7230,350,5.2,6,4,64,7620,9,999999999,14,0.091,0,88,0.2,0,1 +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,45334,34800,17592,6344,20,6.2,9,6,80,2743,9,999999999,14,0.091,0,88,0.2,0,1 +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,11934,6019,5920,2106,30,6.7,9,8,48,2743,9,999999999,14,0.091,0,88,0.2,0,1 +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,4061,0,3963,1141,360,3.6,9,6,48,2743,9,999999999,14,0.091,0,88,0.2,0,1 +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,1219,9,999999999,14,0.091,0,88,0.2,0,1 +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,1372,9,999999999,14,0.091,0,88,0.2,0,1 +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,13,0.091,0,88,0.2,0,1 +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,1097,9,999999999,13,0.091,0,88,0.2,0,1 +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,77777,9,999999999,13,0.091,0,88,0.2,0,1 +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,10,9,32,1494,9,999999999,13,0.091,0,88,0.2,0,1 +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,10,9,24,1402,9,999999999,13,0.091,0,88,0.2,0,1 +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,77777,9,999999999,13,0.091,0,88,0.2,0,1 +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,77777,9,999999999,13,0.091,0,88,0.2,0,1 +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,8,8,40,1372,9,999999999,13,0.091,0,88,0.2,0,1 +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,8349,1300,7200,1865,80,2.1,6,6,48,1372,9,999999999,13,0.091,0,88,0.2,0,1 +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,31467,26550,6877,2480,0,0,1,0,64,77777,9,999999999,13,0.091,0,88,0.2,0,1 +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,54089,41583,11092,4317,280,1.5,2,2,64,77777,9,999999999,13,0.091,0,88,0.2,0,1 +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,78299,50461,16524,6727,310,2.6,3,3,80,77777,9,999999999,13,0.091,0,88,0.2,0,1 +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,58409,20374,35726,13736,0,0,7,7,64,975,9,999999999,13,0.091,0,88,0.2,0,1 +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,5.6,53,83700,1183,1336,335,884,644,313,104830,52075,37345,14478,30,2.1,6,6,32,975,9,999999999,13,0.091,0,88,0.2,0,1 +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,115913,54367,23121,9513,60,2.6,5,5,24,77777,9,999999999,12,0.091,0,88,0.2,0,1 +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,100869,45956,34831,13730,50,4.1,5,5,19.2,77777,9,999999999,12,0.091,0,88,0.2,0,1 +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,78565,33771,33386,13185,50,3.1,5,5,19.2,77777,9,999999999,12,0.091,0,88,0.2,0,1 +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,87013,48549,29480,11687,30,2.6,6,6,24,1676,9,999999999,12,0.091,0,88,0.2,0,1 +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,39,83500,855,1336,350,577,569,212,67129,43539,24789,9487,70,2.6,5,4,32,77777,9,999999999,12,0.091,0,88,0.2,0,1 +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,28167,9597,21512,7401,40,3.1,8,8,24,1981,9,999999999,12,0.091,0,88,0.2,0,1 +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,8364,1157,7338,2566,340,3.1,9,9,24,2134,9,999999999,12,0.091,0,88,0.2,0,1 +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,3574,0,3359,1016,10,3.1,9,8,24,1981,9,999999999,12,0.091,0,88,0.2,0,1 +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,1981,9,999999999,12,0.091,0,88,0.2,0,1 +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,1981,9,999999999,12,0.091,0,88,0.2,0,1 +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,1829,9,999999999,12,0.091,0,88,0.2,0,1 +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,1981,9,999999999,12,0.091,0,88,0.2,0,1 +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,1981,9,999999999,12,0.091,0,88,0.2,0,1 +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,1981,9,999999999,12,0.091,0,88,0.2,0,1 +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,1676,9,999999999,11,0.091,0,88,0.2,0,1 +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,1676,9,999999999,11,0.091,0,88,0.2,0,1 +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,1676,9,999999999,11,0.091,0,88,0.2,0,1 +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,1829,9,999999999,11,0.091,0,88,0.2,0,1 +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,83,83800,184,1335,327,52,34,47,5732,69,5197,1547,130,5.2,6,5,64,7620,9,999999999,11,0.091,0,88,0.2,0,1 +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,9.4,69,83800,433,1335,328,225,324,119,25111,18026,13336,4354,130,4.1,4,2,64,77777,9,999999999,11,0.091,0,88,0.2,0,1 +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,49300,34955,23131,8077,140,4.1,8,3,64,77777,9,999999999,11,0.091,0,88,0.2,0,1 +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,70730,42528,31244,11583,150,6.2,10,4,64,77777,9,999999999,12,0.091,0,88,0.2,0,1 +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,79261,39135,31981,12593,160,4.1,8,3,64,77777,9,999999999,12,0.091,0,88,0.2,0,1 +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,98366,46327,36531,14241,160,4.1,10,4,96,77777,9,999999999,12,0.091,0,88,0.2,0,1 +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,100598,41305,51476,18580,130,3.1,10,3,96,77777,9,999999999,12,0.091,0,88,0.2,0,1 +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,108962,51200,34601,13660,140,6.7,10,4,96,77777,9,999999999,12,0.091,0,88,0.2,0,1 +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,7.2,32,83400,1168,1335,377,836,620,293,99379,48670,35039,13734,160,12.9,9,3,96,77777,9,999999999,12,0.091,0,88,0.2,0,1 +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,78489,40977,30027,11877,130,11.3,10,2,96,77777,9,999999999,12,0.091,0,88,0.2,0,1 +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,62808,37781,24198,9331,160,10.3,10,3,64,77777,9,999999999,12,0.091,0,88,0.2,0,1 +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,48973,37688,18949,6763,140,6.2,10,0,56,77777,9,999999999,12,0.091,0,88,0.2,0,1 +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,24363,18887,11839,3811,130,7.7,9,0,56,77777,9,999999999,12,0.091,0,88,0.2,0,1 +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,5545,0,4472,1264,150,6.7,7,1,72,77777,9,999999999,12,0.091,0,88,0.2,0,1 +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,77777,9,999999999,13,0.091,0,88,0.2,0,1 +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,77777,9,999999999,13,0.091,0,88,0.2,0,1 +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,13,0.091,0,88,0.2,0,1 +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,77777,9,999999999,13,0.091,0,88,0.2,0,1 +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,13,0.091,0,88,0.2,0,1 +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,13,0.091,0,88,0.2,0,1 +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,13,0.091,0,88,0.2,0,1 +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,77777,9,999999999,13,0.091,0,88,0.2,0,1 +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,7620,9,999999999,13,0.091,0,88,0.2,0,1 +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,7620,9,999999999,13,0.091,0,88,0.2,0,1 +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,9414,0,4382,1365,180,3.6,2,2,48,77777,9,999999999,13,0.091,0,88,0.2,0,1 +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,32163,25336,6542,2378,190,4.1,1,1,64,77777,9,999999999,13,0.091,0,88,0.2,0,1 +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,51,83800,677,1335,350,460,763,73,56220,40631,8945,3526,200,4.6,1,1,64,77777,9,999999999,13,0.091,0,88,0.2,0,1 +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,72491,89434,12828,2187,170,3.6,0,0,64,77777,9,999999999,13,0.091,0,88,0.2,0,1 +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,97513,54003,21893,9036,160,6.2,2,2,96,77777,9,999999999,13,0.091,0,88,0.2,0,1 +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,93686,89679,14342,4601,160,7.2,1,1,96,77777,9,999999999,13,0.091,0,88,0.2,0,1 +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,15,83600,1245,1335,379,914,860,112,95859,87599,14526,6041,170,7.7,1,1,96,77777,9,999999999,14,0.091,0,88,0.2,0,1 +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.6,14,83500,1240,1335,383,865,777,143,109790,51394,18227,7568,150,8.2,3,1,96,77777,9,999999999,14,0.091,0,88,0.2,0,1 +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,107679,55058,24527,10045,160,8.2,6,2,96,77777,9,999999999,14,0.091,0,88,0.2,0,1 +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,50787,10761,40189,14875,170,13.4,9,9,96,7620,9,999999999,14,0.091,0,88,0.2,0,1 +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,35470,6856,29433,10874,140,7.7,10,9,64,2134,9,999999999,14,0.091,0,88,0.2,0,1 +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,13181,0,13293,5636,130,10.8,10,10,80,2134,9,999999999,14,0.091,0,88,0.2,0,1 +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,17566,4085,15455,4534,230,5.7,10,9,64,2286,9,999999999,14,0.091,0,88,0.2,0,1 +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,39,83800,148,1335,373,41,12,40,4493,0,4397,1258,170,3.6,10,9,80,4267,9,999999999,14,0.091,0,88,0.2,0,1 +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,3962,9,999999999,14,0.091,0,88,0.2,0,1 +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,40,83800,0,0,381,0,0,0,0,0,0,0,150,6.2,10,10,24,1829,9,999999999,14,0.091,0,88,0.2,0,1 +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,1981,9,999999999,14,0.091,0,88,0.2,0,1 +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,3962,9,999999999,14,0.091,0,88,0.2,0,1 +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,3962,9,999999999,14,0.091,0,88,0.2,0,1 +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,4572,9,999999999,14,0.091,0,88,0.2,0,1 +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,4572,9,999999999,14,0.091,0,88,0.2,0,1 +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,4267,9,999999999,14,0.091,0,88,0.2,0,1 +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,4267,9,999999999,14,0.091,0,88,0.2,0,1 +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,7620,9,999999999,14,0.091,0,88,0.2,0,1 +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,6665,422,6140,1752,190,6.2,9,8,80,7315,9,999999999,14,0.091,0,88,0.2,0,1 +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,39,83600,438,1334,360,262,242,182,28321,17996,19775,5542,190,7.2,9,7,80,7315,9,999999999,14,0.091,0,88,0.2,0,1 +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,35,83600,679,1334,364,371,489,122,43713,31316,14428,5508,200,5.2,8,6,80,7315,9,999999999,14,0.091,0,88,0.2,0,1 +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,58012,32619,22985,9060,190,3.6,7,6,80,6706,9,999999999,14,0.091,0,88,0.2,0,1 +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,76650,38674,25276,10293,200,4.6,8,5,80,6706,9,999999999,14,0.091,0,88,0.2,0,1 +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,5,28,83500,1187,1334,388,627,346,319,74317,28224,38045,14701,160,5.7,10,7,80,6706,9,999999999,15,0.091,0,88,0.2,0,1 +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,38186,0,38577,16204,180,7.2,10,10,80,7620,9,999999999,15,0.091,0,88,0.2,0,1 +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,41392,7237,30483,12231,190,4.1,10,9,80,7620,9,999999999,15,0.091,0,88,0.2,0,1 +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,43015,9762,29036,11703,260,4.6,10,9,80,3658,9,999999999,15,0.091,0,88,0.2,0,1 +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,55323,10924,45130,16121,230,2.6,10,9,80,7620,9,999999999,15,0.091,0,88,0.2,0,1 +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,25009,0,25238,10500,180,2.6,10,10,80,8534,9,999999999,15,0.091,0,88,0.2,0,1 +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,17774,0,17924,7054,190,8.2,10,10,80,8534,9,999999999,15,0.091,0,88,0.2,0,1 +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,39,83400,399,1334,365,56,61,38,6785,2012,4611,1667,210,4.6,10,8,80,8534,9,999999999,15,0.091,0,88,0.2,0,1 +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,7734,0,4099,1208,200,2.6,4,4,64,77777,9,999999999,15,0.091,0,88,0.2,0,1 +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,8534,9,999999999,16,0.091,0,88,0.2,0,1 +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,46,83400,0,0,337,0,0,0,0,0,0,0,200,3.1,10,4,32,77777,9,999999999,16,0.091,0,88,0.2,0,1 +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,48,83300,0,0,332,0,0,0,0,0,0,0,180,1.5,10,3,32,77777,9,999999999,16,0.091,0,88,0.2,0,1 +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,48,83300,0,0,367,0,0,0,0,0,0,0,160,1.5,10,10,32,8534,9,999999999,16,0.091,0,88,0.2,0,1 +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,5182,9,999999999,16,0.091,0,88,0.2,0,1 +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,5182,9,999999999,16,0.092,0,88,0.2,0,1 +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,4877,9,999999999,16,0.092,0,88,0.2,0,1 +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,4572,9,999999999,16,0.092,0,88,0.2,0,1 +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,5486,9,999999999,16,0.092,0,88,0.2,0,1 +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,4877,9,999999999,16,0.092,0,88,0.2,0,1 +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,6377,380,5736,1686,340,2.6,10,9,80,7620,9,999999999,17,0.092,0,88,0.2,0,1 +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,28076,22971,9272,3271,330,1.5,8,4,96,77777,9,999999999,17,0.092,0,88,0.2,0,1 +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,18207,0,18365,7425,0,0,10,10,64,7620,9,999999999,17,0.092,0,88,0.2,0,1 +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,66303,38040,29568,11147,330,2.1,10,8,64,7620,9,999999999,17,0.092,0,88,0.2,0,1 +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,64472,19380,45191,16321,330,2.1,10,7,64,7620,9,999999999,17,0.092,0,88,0.2,0,1 +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,88108,24318,65200,20944,280,1.5,9,8,64,7620,9,999999999,17,0.092,0,88,0.2,0,1 +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,91980,40365,28112,11382,50,2.1,7,7,64,7620,9,999999999,17,0.092,0,88,0.2,0,1 +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,83920,20701,62611,20934,90,4.6,9,8,80,7620,9,999999999,17,0.092,0,88,0.2,0,1 +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,112852,59924,33135,13093,0,0,6,6,80,7620,9,999999999,17,0.092,0,88,0.2,0,1 +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,37675,5043,32087,12542,360,5.2,8,8,80,7620,9,999999999,17,0.092,0,88,0.2,0,1 +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,19545,0,19724,8731,300,4.1,10,10,80,2438,9,999999999,17,0.092,0,88,0.2,0,1 +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,16944,0,17089,6840,200,4.6,10,10,80,8534,9,999999999,17,0.092,0,88,0.2,0,1 +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,5.6,39,83100,402,1334,388,93,0,93,9245,0,9317,3519,230,3.1,10,10,80,4267,9,999999999,17,0.092,0,88,0.2,0,1 +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,2624,0,2642,965,210,2.1,10,10,64,8534,9,999999999,17,0.092,0,88,0.2,0,1 +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,8534,9,999999999,17,0.092,0,88,0.2,0,1 +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,8534,9,999999999,17,0.092,0,88,0.2,0,1 +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,8534,9,999999999,18,0.092,0,88,0.2,0,1 +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,7.2,60,83100,0,0,364,0,0,0,0,0,0,0,210,1.5,10,10,32,3048,9,999999999,18,0.092,0,88,0.2,0,1 +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,7620,9,999999999,18,0.092,0,88,0.2,0,1 +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,4267,9,999999999,18,0.092,0,88,0.2,0,1 +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,10,9,32,7620,9,999999999,18,0.092,0,88,0.2,0,1 +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,77777,9,999999999,18,0.092,0,88,0.2,0,1 +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,6706,9,999999999,18,0.092,0,88,0.2,0,1 +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,4572,9,999999999,18,0.092,0,88,0.2,0,1 +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,5052,49,4615,1439,240,1.5,9,8,96,4267,9,999999999,18,0.092,0,88,0.2,0,1 +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,26221,19566,14006,4558,220,2.6,7,6,96,2896,9,999999999,18,0.092,0,88,0.2,0,1 +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,38886,17833,26515,8930,290,2.6,8,8,88,2743,9,999999999,18,0.092,0,88,0.2,0,1 +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,59374,23666,40441,13835,360,9.3,7,7,80,2591,9,999999999,18,0.092,0,88,0.2,0,1 +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,82721,41501,33448,13077,30,6.7,5,4,80,77777,9,999999999,18,0.092,0,88,0.2,0,1 +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,90439,40846,27043,11003,20,4.1,5,5,80,77777,9,999999999,18,0.092,0,88,0.2,0,1 +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,7.8,45,83400,1249,1333,356,872,698,218,107166,48624,26934,10963,50,2.1,4,4,64,77777,9,999999999,18,0.092,0,88,0.2,0,1 +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,113186,52988,28635,11584,350,2.6,2,2,64,77777,9,999999999,18,0.092,0,88,0.2,0,1 +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,102740,50809,31178,12454,100,4.1,3,3,64,77777,9,999999999,18,0.092,0,88,0.2,0,1 +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,29025,5996,20581,8519,310,1.5,9,9,96,7620,9,999999999,18,0.092,0,88,0.2,0,1 +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,6.7,31,83200,865,1333,386,283,207,148,33900,13894,17803,7158,40,3.1,8,6,80,7620,9,999999999,18,0.092,0,88,0.2,0,1 +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,12385,0,12490,5387,20,6.2,10,10,64,1981,9,999999999,18,0.092,0,88,0.2,0,1 +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,75,83400,404,1333,364,64,0,64,6349,0,6399,2635,340,7.2,10,10,48,2134,9,999999999,18,0.092,0,88,0.2,0,1 +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,2618,0,2637,971,360,5.2,10,10,9.6,2286,9,999999999,18,0.092,0,88,0.2,0,1 +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,2438,9,999999999,17,0.092,0,88,0.2,0.3,1 +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,1981,9,999999999,17,0.092,0,88,0.2,0.5,1 +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,1981,9,999999999,17,0.092,0,88,0.2,0,1 +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,3658,9,999999999,17,0.092,0,88,0.2,0,1 +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,1829,9,999999999,17,0.092,0,88,0.2,0,1 +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,1676,9,999999999,17,0.092,0,88,0.2,0,1 +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,89,83700,0,0,314,0,0,0,0,0,0,0,180,1.5,2,2,24,77777,9,999999999,17,0.092,0,88,0.2,0,1 +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,93,83700,0,0,331,0,0,0,0,0,0,0,190,2.6,8,8,16,3962,9,999999999,17,0.092,0,88,0.2,0,1 +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,89,83600,0,0,329,0,0,0,0,0,0,0,130,2.1,10,7,16,4267,9,999999999,17,0.092,0,88,0.2,0,1 +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,89,83700,13,455,322,2,3,2,0,0,0,0,120,2.1,10,5,40,4267,9,999999999,17,0.092,0,88,0.2,0,1 +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,86,83800,197,1332,327,71,60,62,7701,787,6749,1899,90,3.1,7,6,48,4267,9,999999999,17,0.092,0,88,0.2,0,1 +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,8621,1447,7222,2620,90,3.6,10,9,24,975,9,999999999,17,0.092,0,88,0.2,0,1 +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,21822,4218,18207,6759,110,2.1,10,9,16,1067,9,999999999,17,0.092,0,88,0.2,0,1 +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,10,72,83800,897,1332,357,390,147,291,44488,12243,33392,12230,350,2.6,10,9,16,1128,9,999999999,17,0.092,0,88,0.2,0,1 +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,67,83800,1070,1332,350,652,374,351,75279,31902,40787,15235,10,2.6,9,7,16,1219,9,999999999,17,0.092,0,88,0.2,0,1 +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,65,83700,1190,1332,358,790,292,528,89848,28896,60507,20232,10,3.1,10,8,16,671,9,999999999,17,0.092,0,88,0.2,0,1 +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,29930,0,30239,13503,10,4.1,10,10,16,792,9,999999999,17,0.092,0,88,0.2,0,1 +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,29810,0,30118,13453,10,5.2,10,10,16,1097,9,999999999,17,0.092,0,88,0.2,0.5,1 +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,51746,10855,37565,14564,20,3.1,10,9,19.2,1372,9,999999999,16,0.092,0,88,0.2,5.1,1 +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,24108,0,24342,11062,360,5.2,10,10,12.8,1372,9,999999999,16,0.092,0,88,0.2,0.8,1 +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,19016,0,19191,8568,90,4.1,10,10,19.2,2286,9,999999999,16,0.092,0,88,0.2,0.3,1 +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,34954,9793,29187,9100,90,3.1,10,8,24,3658,9,999999999,16,0.092,0,88,0.2,0,1 +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,12039,1137,11180,3707,190,3.1,10,7,32,3353,9,999999999,16,0.092,0,88,0.2,0,1 +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,2428,0,2445,918,180,2.6,10,10,32,2591,9,999999999,16,0.092,0,88,0.2,0,1 +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,2896,9,999999999,16,0.092,0,88,0.2,0,1 +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,2896,9,999999999,16,0.092,0,88,0.2,0,1 +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,16,0.092,0,88,0.2,0,1 +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,16,0.092,0,88,0.2,0,1 +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,93,83900,0,0,348,0,0,0,0,0,0,0,200,1.5,10,10,24,2286,9,999999999,16,0.092,0,88,0.2,0,1 +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,2286,9,999999999,15,0.092,0,88,0.2,0,1 +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,10,9,24,2896,9,999999999,15,0.092,0,88,0.2,0,1 +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,2896,9,999999999,15,0.092,0,88,0.2,0,1 +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,2896,9,999999999,15,0.092,0,88,0.2,0,1 +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,7.8,86,83800,14,477,331,2,1,2,0,0,0,0,220,2.6,10,9,19.2,1676,9,999999999,15,0.092,0,88,0.2,0,1 +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,7.8,86,83800,199,1332,331,26,10,24,3053,0,2822,939,230,2.6,10,9,80,2134,9,999999999,15,0.092,0,88,0.2,0,1 +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,20508,7546,16171,5049,240,2.6,10,7,88,1829,9,999999999,15,0.092,0,88,0.2,0,1 +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,33824,11128,26011,8851,340,3.1,8,8,80,1829,9,999999999,15,0.092,0,88,0.2,0,1 +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,69625,39453,33411,12244,360,4.1,10,6,48,1676,9,999999999,15,0.092,0,88,0.2,0,1 +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,69,83900,1071,1332,360,209,109,121,26175,6627,15212,6411,310,3.1,10,9,64,1676,9,999999999,15,0.092,0,88,0.2,0,1 +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,63734,14787,46454,17136,310,3.1,10,9,64,1676,9,999999999,15,0.092,0,88,0.2,0,1 +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,52357,12294,34343,13582,80,1.5,9,9,96,3048,9,999999999,15,0.092,0,88,0.2,0,1 +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,97931,42778,37342,14566,270,2.1,9,7,96,7620,9,999999999,15,0.092,0,88,0.2,0,1 +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,51012,13273,33001,13069,340,1.5,9,8,96,7620,9,999999999,15,0.092,0,88,0.2,0,1 +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,6.1,40,83600,1048,1332,364,721,436,378,82622,39652,43602,15813,230,1.5,7,7,96,7620,9,999999999,15,0.092,0,88,0.2,0,1 +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,66698,42251,17376,7009,240,3.6,8,4,80,7620,9,999999999,15,0.092,0,88,0.2,0,1 +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,24303,4858,20767,7317,360,4.1,9,9,80,1981,9,999999999,15,0.092,0,88,0.2,0,1 +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,24772,19684,11927,3902,360,4.1,6,3,64,77777,9,999999999,15,0.092,0,88,0.2,0,1 +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,6074,60,5442,1510,340,2.1,10,7,64,2591,9,999999999,15,0.092,0,88,0.2,0,1 +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,75,83700,5,277,354,0,1,0,0,0,0,0,100,2.6,10,9,32,2134,9,999999999,15,0.092,0,88,0.2,0,1 +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,2134,9,999999999,15,0.092,0,88,0.2,0,1 +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,77777,9,999999999,15,0.092,0,88,0.2,0,1 +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,77777,9,999999999,15,0.092,0,88,0.2,0,1 +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,77777,9,999999999,15,0.092,0,88,0.2,0,1 +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,77777,9,999999999,15,0.093,0,88,0.2,0,1 +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,7.8,86,83600,0,0,295,0,0,0,0,0,0,0,160,1.5,0,0,32,77777,9,999999999,15,0.093,0,88,0.2,0,1 +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,32,77777,9,999999999,15,0.093,0,88,0.2,0,1 +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,24,77777,9,999999999,15,0.093,0,88,0.2,0,1 +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,77777,9,999999999,15,0.093,0,88,0.2,0,1 +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,6.7,80,83600,201,1331,294,103,488,29,11933,0,3366,1107,190,2.6,0,0,88,77777,9,999999999,15,0.093,0,88,0.2,0,1 +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,31806,69289,7175,1072,160,2.1,0,0,88,77777,9,999999999,15,0.093,0,88,0.2,0,1 +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,6.7,58,83600,687,1331,315,500,846,63,53863,84682,9368,1522,220,1.5,0,0,80,77777,9,999999999,15,0.093,0,88,0.2,0,1 +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,73879,92395,10933,2072,190,1.5,0,0,96,77777,9,999999999,15,0.093,0,88,0.2,0,1 +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,90085,96374,11875,2933,120,2.1,0,0,112,77777,9,999999999,15,0.093,0,88,0.2,0,1 +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,110034,53832,24809,10163,60,2.6,1,1,112,77777,9,999999999,15,0.093,0,88,0.2,0,1 +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,30,83300,1251,1331,362,910,802,156,114811,52336,19770,8193,220,3.1,2,2,112,77777,9,999999999,15,0.093,0,88,0.2,0,1 +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,93830,83033,17067,6971,140,3.1,3,3,112,77777,9,999999999,15,0.093,0,88,0.2,0,1 +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,29,83200,1178,1331,368,874,837,134,91845,85561,17446,5089,140,4.6,4,2,112,77777,9,999999999,15,0.093,0,88,0.2,0,1 +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,29,83100,1049,1331,369,612,513,207,73558,37342,25005,10169,80,3.1,8,3,112,77777,9,999999999,15,0.093,0,88,0.2,0,1 +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,4.4,26,83000,870,1331,370,635,762,137,76661,50779,16605,6724,130,2.1,7,2,112,77777,9,999999999,15,0.093,0,88,0.2,0,1 +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,5,28,83000,653,1331,374,425,622,119,49923,39354,14030,5306,120,5.2,6,3,112,77777,9,999999999,15,0.093,0,88,0.2,0,1 +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,26143,21709,9317,3211,130,3.1,7,2,96,77777,9,999999999,15,0.093,0,88,0.2,0,1 +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,5851,0,3722,1154,130,3.1,8,4,80,9144,9,999999999,15,0.093,0,88,0.2,0,1 +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,2438,9,999999999,15,0.093,0,88,0.2,1,1 +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,1981,9,999999999,15,0.093,0,88,0.2,0,1 +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,9144,9,999999999,15,0.093,0,88,0.2,0,1 +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,77777,9,999999999,15,0.093,0,88,0.2,0,1 +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,77,83300,0,0,324,0,0,0,0,0,0,0,120,3.1,2,2,32,77777,9,999999999,15,0.093,0,88,0.2,0,1 +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,77777,9,999999999,15,0.093,0,88,0.2,0,1 +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,77777,9,999999999,15,0.093,0,88,0.2,0,1 +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,2,2,32,77777,9,999999999,15,0.093,0,88,0.2,0,1 +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,9.4,96,83300,0,0,302,0,0,0,0,0,0,0,200,2.6,3,1,24,77777,9,999999999,16,0.093,0,88,0.2,0,1 +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,8.3,89,83200,15,499,310,2,8,2,0,0,0,0,120,1.5,5,4,80,77777,9,999999999,16,0.093,0,88,0.2,0,1 +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,11211,0,3898,1265,180,2.6,0,0,96,77777,9,999999999,15,0.093,0,88,0.2,0,1 +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,7.8,62,83200,450,1331,316,287,683,56,34196,28265,6687,2444,200,2.6,0,0,96,77777,9,999999999,15,0.093,0,88,0.2,0,1 +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,59177,44394,9666,3812,220,3.1,1,0,96,77777,9,999999999,15,0.093,0,88,0.2,0,1 +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,78408,47938,12111,5018,210,2.6,2,2,96,77777,9,999999999,15,0.093,0,88,0.2,0,1 +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,99471,54813,21141,8753,100,3.1,3,3,96,77777,9,999999999,15,0.093,0,88,0.2,0,1 +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,68250,18459,47100,17291,120,2.1,9,7,96,4267,9,999999999,15,0.093,0,88,0.2,0.5,1 +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,59975,10517,46767,17396,350,5.2,10,9,96,2591,9,999999999,15,0.093,0,88,0.2,0,1 +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,11.1,57,83100,1247,1331,370,866,601,302,103683,45330,36380,14284,10,5.2,7,7,96,2438,9,999999999,15,0.093,0,88,0.2,0,1 +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,88204,39814,34338,13520,70,5.2,8,6,96,9144,9,999999999,14,0.093,0,88,0.2,0,1 +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,73674,36379,28554,11424,90,4.6,6,5,96,9144,9,999999999,14,0.093,0,88,0.2,0,1 +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,64690,39546,23005,9002,180,2.1,6,5,96,9144,9,999999999,14,0.093,0,88,0.2,0,1 +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,38993,25780,17147,6318,50,5.2,7,6,96,9144,9,999999999,14,0.093,0,88,0.2,0,1 +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,21191,10806,15111,4623,60,6.2,9,8,96,9144,9,999999999,14,0.093,0,88,0.2,0,1 +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,8151,1029,6353,1678,130,2.1,6,4,96,9144,9,999999999,14,0.093,0,88,0.2,0,1 +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,77777,9,999999999,14,0.093,0,88,0.2,0,1 +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,9.4,69,83200,0,0,328,0,0,0,0,0,0,0,50,2.1,2,2,32,77777,9,999999999,13,0.093,0,88,0.2,0,1 +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,77777,9,999999999,13,0.093,0,88,0.2,0,1 +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,89,83400,0,0,310,0,0,0,0,0,0,0,350,2.1,1,1,32,77777,9,999999999,13,0.093,0,88,0.2,0,1 +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,77777,9,999999999,13,0.093,0,88,0.2,0,1 +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,89,83400,0,0,334,0,0,0,0,0,0,0,30,1.5,8,8,32,1097,9,999999999,13,0.093,0,88,0.2,0,1 +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,83,83500,0,0,346,0,0,0,0,0,0,0,10,2.1,9,9,32,945,9,999999999,13,0.093,0,88,0.2,0,1 +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,792,9,999999999,13,0.093,0,88,0.2,0,1 +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,975,9,999999999,13,0.093,0,88,0.2,0,1 +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,86,83600,16,521,353,2,0,2,0,0,0,0,10,1,10,10,24,975,9,999999999,12,0.093,0,88,0.2,0,1 +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,86,83700,206,1331,353,33,0,33,3217,0,3241,1238,350,2.1,10,10,14.4,610,9,999999999,13,0.093,0,88,0.2,0,1 +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,20314,4147,18109,5448,360,2.1,10,9,24,762,9,999999999,13,0.093,0,88,0.2,0,1 +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,75,83700,690,1331,354,378,232,258,41958,19496,28801,9487,60,1.5,10,9,12.8,1097,9,999999999,13,0.093,0,88,0.2,0,1 +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,20827,0,21022,9373,0,0,10,10,12.8,671,9,999999999,13,0.093,0,88,0.2,0,1 +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,55470,6404,49563,17365,120,3.1,10,9,12.8,1006,9,999999999,13,0.093,0,88,0.2,0,1 +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,63969,21285,34039,13450,130,3.6,8,8,24,1036,9,999999999,13,0.093,0,88,0.2,0,1 +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,8.9,49,83500,1253,1331,360,944,663,319,112770,51814,38347,14913,160,3.1,5,5,48,77777,9,999999999,13,0.093,0,88,0.2,0,1 +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,46,83400,1248,1331,376,803,565,273,96957,41490,33157,13198,120,4.1,6,6,40,1524,9,999999999,14,0.093,0,88,0.2,0,1 +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,107308,52809,30069,12082,110,3.1,5,5,80,77777,9,999999999,14,0.093,0,88,0.2,0,1 +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,61759,27835,24997,10180,130,5.2,5,5,80,77777,9,999999999,14,0.093,0,88,0.2,0,1 +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,68189,42993,16722,6778,120,4.1,4,4,80,77777,9,999999999,14,0.093,0,88,0.2,0,1 +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,27,83100,657,1331,387,336,354,161,38575,24995,18566,6744,150,5.7,8,6,80,7620,9,999999999,14,0.093,0,88,0.2,0,1 +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,46,83100,418,1331,369,256,556,81,29337,24584,9312,3228,310,4.1,5,4,80,77777,9,999999999,14,0.093,0,88,0.2,0,1 +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,56,83200,172,1331,353,68,253,36,7609,0,4039,1246,310,4.1,5,4,80,77777,9,999999999,14,0.093,0,88,0.2,0,1 +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,77777,9,999999999,15,0.093,0,88,0.2,0,1 +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,11.1,77,83400,0,0,326,0,0,0,0,0,0,0,290,2.1,1,1,32,77777,9,999999999,15,0.093,0,88,0.2,0,1 +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,77777,9,999999999,15,0.093,0,88,0.2,0,1 +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,77777,9,999999999,15,0.093,0,88,0.2,0,1 +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,77777,9,999999999,15,0.093,0,88,0.2,0,1 +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,274,9,999999999,15,0.094,0,88,0.2,0,1 +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,15,0.094,0,88,0.2,0,1 +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,16,0.094,0,88,0.2,0,1 +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,16,0.094,0,88,0.2,0,1 +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,305,9,999999999,16,0.094,0,88,0.2,0,1 +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,2731,0,2751,1083,350,1.5,10,10,32,366,9,999999999,16,0.094,0,88,0.2,0,1 +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,77,83700,453,1330,362,75,0,75,7475,0,7535,3142,10,1.5,10,10,48,366,9,999999999,16,0.094,0,88,0.2,0,1 +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,38603,22133,19390,7159,0,0,6,6,48,3658,9,999999999,15,0.094,0,88,0.2,0,1 +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,78083,47115,15751,6476,80,1.5,2,2,24,77777,9,999999999,15,0.094,0,88,0.2,0,1 +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,90944,97045,11628,2914,30,2.1,1,1,24,77777,9,999999999,15,0.094,0,88,0.2,0,1 +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,97365,94020,12102,4252,10,3.1,1,1,24,77777,9,999999999,15,0.094,0,88,0.2,0,1 +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,109886,49388,28545,11564,80,4.1,3,3,24,77777,9,999999999,15,0.094,0,88,0.2,0,1 +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,41,83300,1249,1330,371,946,909,92,101449,94068,12086,5417,50,4.6,2,2,24,77777,9,999999999,15,0.094,0,88,0.2,0,1 +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,85019,37315,20824,8647,330,2.6,5,5,24,77777,9,999999999,14,0.094,0,88,0.2,0,1 +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,10.6,40,83100,1053,1330,384,790,812,146,97318,51354,18062,7559,20,3.6,4,4,48,77777,9,999999999,14,0.094,0,88,0.2,0,1 +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,69461,42206,23072,9059,30,6.2,5,3,16,77777,9,999999999,14,0.094,0,88,0.2,0,1 +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,48725,35570,14545,5514,30,8.2,7,6,16,9144,9,999999999,14,0.094,0,88,0.2,0,1 +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,12.2,61,83200,420,1330,377,192,99,160,20793,6377,17414,5055,40,4.1,8,8,16,1676,9,999999999,14,0.094,0,88,0.2,0,1 +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,9072,0,4042,1253,50,3.1,4,2,19.2,77777,9,999999999,14,0.094,0,88,0.2,0,1 +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,3658,9,999999999,14,0.094,0,88,0.2,0,1 +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,8.9,67,83600,0,0,366,0,0,0,0,0,0,0,50,5.7,10,10,11.2,1097,9,999999999,13,0.094,0,88,0.2,6.6,1 +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,1097,9,999999999,13,0.094,0,88,0.2,0,1 +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,13,0.094,0,88,0.2,0.3,1 +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,8534,9,999999999,13,0.094,0,88,0.2,0,1 +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,77777,9,999999999,13,0.094,0,88,0.2,0,1 +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,32,77777,9,999999999,13,0.094,0,88,0.2,0,1 +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,8.3,89,83700,0,0,295,0,0,0,0,0,0,0,260,1.5,0,0,32,77777,9,999999999,12,0.094,0,88,0.2,0,1 +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,77777,9,999999999,12,0.094,0,88,0.2,0,1 +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,77777,9,999999999,12,0.094,0,88,0.2,0,1 +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,10226,1895,4958,1559,190,2.6,0,0,80,77777,9,999999999,12,0.094,0,88,0.2,0,1 +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,32030,26956,8878,3181,180,2.1,0,0,96,77777,9,999999999,12,0.094,0,88,0.2,0,1 +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,57681,43556,12582,4903,200,2.6,0,0,96,77777,9,999999999,12,0.094,0,88,0.2,0,1 +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,82413,51639,15665,6436,190,2.1,0,0,96,77777,9,999999999,12,0.094,0,88,0.2,0,1 +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,97939,51542,18029,7546,120,2.6,1,1,96,77777,9,999999999,12,0.094,0,88,0.2,0,1 +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,112405,54259,21714,8978,190,2.1,1,1,96,77777,9,999999999,12,0.094,0,88,0.2,0,1 +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,118805,54147,20250,8384,120,2.6,1,1,96,77777,9,999999999,12,0.094,0,88,0.2,0,1 +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,120671,57570,29598,11930,160,3.1,3,3,96,77777,9,999999999,11,0.094,0,88,0.2,0,1 +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,29,83000,1182,1330,368,886,811,165,110349,54161,20644,8557,130,2.6,2,2,96,77777,9,999999999,11,0.094,0,88,0.2,0,1 +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,62513,25023,34094,13227,160,3.6,4,4,96,77777,9,999999999,11,0.094,0,88,0.2,0,1 +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,62235,28059,40444,13644,340,6.2,5,5,96,77777,9,999999999,11,0.094,0,88,0.2,0,1 +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,47285,35474,17722,6515,50,3.1,3,3,96,77777,9,999999999,11,0.094,0,88,0.2,0,1 +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,23691,17580,8152,2885,360,5.2,2,2,96,77777,9,999999999,11,0.094,0,88,0.2,0,1 +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,7673,0,4572,1385,50,4.1,3,1,96,77777,9,999999999,11,0.094,0,88,0.2,0,1 +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,77777,9,999999999,11,0.094,0,88,0.2,0,1 +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,77777,9,999999999,11,0.094,0,88,0.2,0,1 +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,77777,9,999999999,11,0.094,0,88,0.2,0,1 +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,32,77777,9,999999999,11,0.094,0,88,0.2,0,1 +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,77777,9,999999999,11,0.094,0,88,0.2,0,1 +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,77777,9,999999999,10,0.094,0,88,0.2,0,1 +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,6.7,80,82700,0,0,294,0,0,0,0,0,0,0,220,2.1,0,0,48,77777,9,999999999,10,0.094,0,88,0.2,0,1 +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,77777,9,999999999,10,0.094,0,88,0.2,0,1 +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,77777,9,999999999,10,0.094,0,88,0.2,0,1 +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,77777,9,999999999,10,0.094,0,88,0.2,0,1 +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,66,82500,211,1329,309,82,159,57,9041,2402,6305,1873,220,2.1,4,3,96,77777,9,999999999,10,0.094,0,88,0.2,0,1 +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,28763,23871,13362,4464,200,2.1,7,2,96,77777,9,999999999,11,0.094,0,88,0.2,0,1 +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,54920,43479,20241,7394,180,2.6,8,5,96,7620,9,999999999,11,0.094,0,88,0.2,0,1 +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,2.2,31,82300,904,1329,352,599,559,218,70245,43282,25695,10003,340,3.6,7,5,80,7620,9,999999999,11,0.094,0,88,0.2,0,1 +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,84466,43080,33770,13188,350,4.1,6,3,80,77777,9,999999999,11,0.094,0,88,0.2,0,1 +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,31,82200,1195,1329,369,702,511,242,85137,37787,29511,11877,350,2.1,7,5,80,7620,9,999999999,11,0.094,0,88,0.2,0,1 +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,-2.2,16,82100,1255,1329,365,957,773,227,117779,57202,28086,11358,40,3.6,3,3,80,77777,9,999999999,11,0.094,0,88,0.2,0,1 +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,126868,62022,21937,9028,170,2.1,2,2,80,77777,9,999999999,12,0.094,0,88,0.2,0,1 +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,94485,87572,17998,5348,160,5.2,3,3,64,77777,9,999999999,12,0.094,0,88,0.2,0,1 +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,92650,51873,24156,9867,330,5.2,6,2,64,77777,9,999999999,12,0.094,0,88,0.2,0,1 +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,55740,26138,31938,11723,320,5.7,8,8,32,7620,9,999999999,12,0.094,0,88,0.2,0,1 +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,31236,12584,21723,7661,340,6.2,9,7,32,7620,9,999999999,12,0.094,0,88,0.2,0,1 +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,24642,17790,13099,4258,350,2.6,8,4,64,77777,9,999999999,13,0.094,0,88,0.2,0,1 +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,7329,0,4677,1417,340,2.6,6,2,80,77777,9,999999999,13,0.094,0,88,0.2,0,1 +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,58,82100,9,388,340,1,6,1,0,0,0,0,360,5.2,1,1,32,77777,9,999999999,13,0.094,0,88,0.2,0,1 +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,77777,9,999999999,13,0.094,0,88,0.2,0,1 +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,7.8,62,82400,0,0,322,0,0,0,0,0,0,0,300,2.1,1,1,32,77777,9,999999999,13,0.094,0,88,0.2,0,1 +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,1219,9,999999999,14,0.094,0,88,0.2,0,1 +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,6.1,55,82400,0,0,353,0,0,0,0,0,0,0,330,2.1,9,9,32,1036,9,999999999,14,0.094,0,88,0.2,0,1 +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,975,9,999999999,14,0.095,0,88,0.2,0,1 +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,975,9,999999999,14,0.095,0,88,0.2,0,1 +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,975,9,999999999,14,0.095,0,88,0.2,0,1 +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,1128,9,999999999,14,0.095,0,88,0.2,0,1 +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,1463,9,999999999,15,0.095,0,88,0.2,0,1 +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,9169,1693,8014,2183,340,3.1,7,7,80,5182,9,999999999,15,0.095,0,88,0.2,0,1 +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,20593,4654,18162,5502,10,3.6,8,8,80,5182,9,999999999,15,0.095,0,88,0.2,0,1 +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,40935,25509,19344,7147,350,3.6,7,7,64,7620,9,999999999,15,0.095,0,88,0.2,0,1 +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,58193,28087,31692,11827,360,4.1,8,6,64,7620,9,999999999,15,0.095,0,88,0.2,0,1 +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,56,82900,1076,1329,363,577,440,220,69186,31324,26518,10773,360,3.1,7,7,64,4572,9,999999999,16,0.095,0,88,0.2,0,1 +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,75744,17939,56680,19565,350,3.1,9,9,64,7620,9,999999999,16,0.095,0,88,0.2,0,1 +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,51,82900,1256,1329,386,698,271,441,81317,23974,51744,18733,360,2.1,9,9,48,4267,9,999999999,16,0.095,0,88,0.2,0,1 +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,104232,42392,52021,18789,10,3.1,10,8,32,7620,9,999999999,16,0.095,0,88,0.2,0,1 +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,11.7,59,82900,1184,1329,371,671,391,322,79244,30592,38267,14808,20,5.2,10,7,32,7620,9,999999999,16,0.095,0,88,0.2,0,1 +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,60221,21708,34989,13542,50,4.6,10,8,40,1219,9,999999999,17,0.095,0,88,0.2,0,1 +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,51708,20924,32766,11961,60,4.6,9,7,40,2134,9,999999999,17,0.095,0,88,0.2,1,1 +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,27328,4509,23982,8247,10,5.7,10,9,32,2134,9,999999999,17,0.095,0,88,0.2,0,1 +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,8736,0,8805,3478,40,2.6,10,10,24,1676,9,999999999,17,0.095,0,88,0.2,0,1 +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,3107,0,3129,1163,20,2.1,10,10,19.2,1676,9,999999999,17,0.095,0,88,0.2,0,1 +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,488,9,999999999,18,0.095,0,88,0.2,0,1 +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,18,0.095,0,88,0.2,0,1 +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,18,0.095,0,88,0.2,0.8,1 +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,2743,9,999999999,18,0.095,0,88,0.2,0,1 +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,77777,9,999999999,18,0.095,0,88,0.2,0,1 +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,16,0.102,0,88,0.2,0,1 +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,12.2,96,83700,0,0,365,0,0,0,0,0,0,0,330,0.4,10,10,11.2,244,9,999999999,16,0.102,0,88,0.2,0,1 +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,12.2,93,83700,0,0,365,0,0,0,0,0,0,0,320,0.2,10,10,11.2,244,9,999999999,16,0.102,0,88,0.2,0,1 +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,9,9,19.2,488,9,999999999,16,0.102,0,88,0.2,0,1 +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,2,2,24,77777,9,999999999,16,0.102,0,88,0.2,0,1 +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,12.8,87,83700,214,1328,335,98,318,47,10949,1920,5266,1651,230,2.6,3,3,24,77777,9,999999999,16,0.102,0,88,0.2,0,1 +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,29232,22160,8325,3016,210,1.5,1,1,24,77777,9,999999999,16,0.102,0,88,0.2,0,1 +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,57028,39568,10100,4000,170,2.1,1,1,24,77777,9,999999999,16,0.102,0,88,0.2,0,1 +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,72676,86759,14125,2321,0,0,1,1,24,77777,9,999999999,16,0.102,0,88,0.2,0,1 +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,97168,49907,23898,9835,10,2.6,4,1,24,77777,9,999999999,16,0.102,0,88,0.2,0,1 +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,109412,49820,21087,8754,360,2.6,5,2,24,77777,9,999999999,16,0.102,0,88,0.2,0,1 +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,114958,50209,19521,8104,350,3.1,3,1,24,77777,9,999999999,16,0.102,0,88,0.2,0,1 +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,24,83600,1252,1328,377,958,884,124,100848,90533,15953,6982,340,2.6,1,1,32,77777,9,999999999,17,0.102,0,88,0.2,0,1 +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,94316,88750,15702,4976,20,4.1,1,1,64,77777,9,999999999,17,0.102,0,88,0.2,0,1 +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,86460,90462,15089,3262,120,2.6,1,1,64,77777,9,999999999,17,0.102,0,88,0.2,0,1 +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,78173,49390,12199,5032,130,2.6,1,1,64,77777,9,999999999,17,0.102,0,88,0.2,0,1 +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,53955,42884,15594,5869,130,3.1,2,2,64,77777,9,999999999,17,0.102,0,88,0.2,0,1 +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,27818,22750,9031,3171,130,3.1,3,3,64,77777,9,999999999,17,0.102,0,88,0.2,0,1 +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,10,39,83600,186,1328,395,46,95,33,5221,0,3754,1196,110,5.7,7,7,80,3962,9,999999999,17,0.102,0,88,0.2,0,1 +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,49,83600,11,432,388,2,3,2,0,0,0,0,40,8.2,9,9,48,2286,9,999999999,17,0.102,0,88,0.2,0,1 +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,2134,9,999999999,17,0.102,0,88,0.2,0,1 +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,2134,9,999999999,17,0.102,0,88,0.2,0,1 +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,2743,9,999999999,17,0.102,0,88,0.2,0,1 +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,2896,9,999999999,17,0.102,0,88,0.2,0,1 +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,3048,9,999999999,17,0.102,0,88,0.2,0,1 +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,6096,9,999999999,17,0.102,0,88,0.2,0,1 +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,3353,9,999999999,17,0.102,0,88,0.2,0,1 +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,6096,9,999999999,17,0.102,0,88,0.2,0,1 +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,6096,9,999999999,17,0.102,0,88,0.2,0,1 +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,11.1,77,84100,215,1328,359,55,22,51,6114,209,5687,1754,230,2.1,9,9,96,2896,9,999999999,17,0.102,0,88,0.2,0,1 +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,24812,16237,13528,4536,190,2.6,6,6,80,6096,9,999999999,17,0.102,0,88,0.2,0,1 +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,10.6,55,84200,695,1328,362,377,395,170,43334,27311,19631,7254,260,2.6,5,5,80,77777,9,999999999,17,0.102,0,88,0.2,0,1 +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,55555,27639,25511,9982,320,2.1,3,3,72,77777,9,999999999,17,0.102,0,88,0.2,0,1 +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,95685,48849,20184,8411,330,3.6,2,2,72,77777,9,999999999,17,0.102,0,88,0.2,0,1 +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,73033,26049,36922,14404,350,2.1,6,6,72,1524,9,999999999,17,0.102,0,88,0.2,0,1 +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,117934,53556,35972,14169,10,3.1,5,5,56,77777,9,999999999,17,0.102,0,88,0.2,0,1 +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,100865,39815,50380,18394,10,2.6,8,8,56,2134,9,999999999,17,0.102,0,88,0.2,0,1 +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,41,84000,1186,1328,403,423,107,327,49961,8531,38866,14986,60,4.6,9,9,56,3658,9,999999999,17,0.102,0,88,0.2,0,1 +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,24187,0,24425,11157,120,6.2,10,10,24,1524,9,999999999,17,0.102,0,88,0.2,0,1 +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,56309,26285,31592,11683,140,6.7,9,7,64,3658,9,999999999,17,0.102,0,88,0.2,0,1 +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,19549,1711,18019,6656,120,3.6,9,8,64,4267,9,999999999,17,0.102,0,88,0.2,0,1 +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,23099,12836,15359,4791,150,4.1,6,6,64,7620,9,999999999,17,0.102,0,88,0.2,0,1 +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,8156,1020,7003,1881,160,5.2,6,4,80,7620,9,999999999,17,0.102,0,88,0.2,0,1 +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,3658,9,999999999,17,0.102,0,88,0.2,0,1 +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,1829,9,999999999,17,0.102,0,88,0.2,0,1 +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,1372,9,999999999,17,0.102,0,88,0.2,0,1 +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,1829,9,999999999,17,0.102,0,88,0.2,0,1 +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,4267,9,999999999,17,0.102,0,88,0.2,0,1 +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,77777,9,999999999,17,0.103,0,88,0.2,0,1 +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,77777,9,999999999,17,0.103,0,88,0.2,0,1 +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,77777,9,999999999,17,0.103,0,88,0.2,0,1 +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,77777,9,999999999,17,0.103,0,88,0.2,0,1 +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,77777,9,999999999,17,0.103,0,88,0.2,0,1 +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,10847,1880,5271,1658,300,2.6,3,1,72,77777,9,999999999,17,0.103,0,88,0.2,0,1 +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,5672,0,5718,2502,350,2.6,10,10,0.8,61,9,999999999,17,0.103,0,88,0.2,0,1 +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,50436,34199,21509,7812,330,3.1,8,3,4.8,77777,9,999999999,17,0.103,0,88,0.2,0,1 +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,62928,31378,31359,11787,350,3.1,10,5,6.4,77777,9,999999999,17,0.103,0,88,0.2,0,1 +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,90086,44822,29562,11864,350,3.1,10,5,9.6,77777,9,999999999,17,0.103,0,88,0.2,0,1 +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,100883,44988,30960,12438,340,3.1,9,4,11.2,77777,9,999999999,18,0.103,0,88,0.2,0,1 +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,67069,23243,24254,9981,0,0,9,4,12.8,77777,9,999999999,18,0.103,0,88,0.2,0,1 +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,77872,15099,61019,20797,0,0,9,9,16,3658,9,999999999,18,0.103,0,88,0.2,0,1 +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,54131,8210,44135,16518,50,2.1,9,9,16,3658,9,999999999,18,0.103,0,88,0.2,0,1 +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,73944,33041,32888,12921,170,6.2,7,7,24,7620,9,999999999,18,0.103,0,88,0.2,0,1 +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,40274,7257,33783,12278,170,7.7,9,9,24,3658,9,999999999,18,0.103,0,88,0.2,0,1 +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,30364,11214,21177,7579,180,8.8,9,7,48,2134,9,999999999,18,0.103,0,88,0.2,0,1 +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,20545,10185,13606,4432,190,5.7,9,8,48,2134,9,999999999,18,0.103,0,88,0.2,0,1 +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,68,83600,191,1328,376,56,73,45,6192,0,4991,1521,160,6.7,7,6,80,8230,9,999999999,18,0.103,0,88,0.2,0,1 +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,68,83600,12,454,370,2,7,1,0,0,0,0,160,6.2,5,4,48,77777,9,999999999,18,0.103,0,88,0.2,0,1 +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,14.4,70,83600,0,0,346,0,0,0,0,0,0,0,160,4.1,0,0,40,77777,9,999999999,18,0.103,0,88,0.2,0,1 +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,77777,9,999999999,18,0.103,0,88,0.2,0,1 +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,77777,9,999999999,18,0.103,0,88,0.2,0,1 +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,77777,9,999999999,18,0.103,0,88,0.2,0,1 +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,12.8,87,83500,0,0,321,0,0,0,0,0,0,0,190,2.1,0,0,40,77777,9,999999999,18,0.103,0,88,0.2,0,1 +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,11.7,81,83500,0,0,320,0,0,0,0,0,0,0,310,1.5,0,0,40,77777,9,999999999,18,0.103,0,88,0.2,0,1 +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,77777,9,999999999,18,0.103,0,88,0.2,0,1 +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,77777,9,999999999,18,0.103,0,88,0.2,0,1 +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,83,83500,21,608,325,4,2,4,0,0,0,0,190,2.6,9,4,96,6096,9,999999999,18,0.103,0,88,0.2,0,1 +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,10,72,83600,217,1327,344,62,36,56,6851,474,6208,1879,210,2.1,9,7,96,6096,9,999999999,18,0.103,0,88,0.2,0,1 +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,11122,1883,9529,3405,220,3.1,9,8,80,3962,9,999999999,18,0.103,0,88,0.2,0,1 +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,35365,14600,24191,8519,200,3.1,9,7,112,3962,9,999999999,17,0.103,0,88,0.2,0,1 +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,53359,27701,21611,8651,190,3.6,8,6,112,7010,9,999999999,17,0.103,0,88,0.2,0,1 +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,72219,33739,31175,12349,250,2.1,7,5,112,6706,9,999999999,17,0.103,0,88,0.2,0,1 +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,73856,26879,39725,15232,270,1.5,8,6,112,6096,9,999999999,17,0.103,0,88,0.2,0,1 +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,15,83500,1258,1327,396,504,320,200,62618,22687,24973,10203,140,3.6,7,5,112,6096,9,999999999,17,0.103,0,88,0.2,0,1 +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.6,15,83400,1254,1327,397,797,439,381,94253,38253,45357,16992,120,4.1,6,4,112,6096,9,999999999,16,0.103,0,88,0.2,0,1 +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,104127,52473,32240,12803,80,3.6,4,2,112,77777,9,999999999,16,0.103,0,88,0.2,0,1 +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,90573,50742,28913,11549,90,4.6,4,3,112,77777,9,999999999,16,0.103,0,88,0.2,0,1 +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,72365,47164,26515,10178,90,4.1,4,4,96,77777,9,999999999,16,0.103,0,88,0.2,0,1 +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,52128,41775,17915,6611,120,4.1,4,4,64,77777,9,999999999,16,0.103,0,88,0.2,0,1 +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,14,83200,436,1327,403,106,72,82,12245,3604,9502,3322,80,3.1,6,6,64,6096,9,999999999,15,0.103,0,88,0.2,0,1 +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,16,83200,193,1327,390,51,53,43,5709,290,4826,1480,120,3.6,5,5,80,77777,9,999999999,15,0.103,0,88,0.2,0,1 +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,77777,9,999999999,15,0.103,0,88,0.2,0,1 +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,31,83300,0,0,363,0,0,0,0,0,0,0,0,0,3,3,32,77777,9,999999999,15,0.103,0,88,0.2,0,1 +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,77777,9,999999999,15,0.103,0,88,0.2,0,1 +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,77777,9,999999999,14,0.103,0,88,0.2,0,1 +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,77777,9,999999999,14,0.103,0,88,0.2,0,1 +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,77777,9,999999999,14,0.103,0,88,0.2,0,1 +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,77777,9,999999999,14,0.103,0,88,0.2,0,1 +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,7.2,60,83600,0,0,315,0,0,0,0,0,0,0,300,3.1,0,0,40,77777,9,999999999,13,0.103,0,88,0.2,0,1 +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,77777,9,999999999,13,0.103,0,88,0.2,0,1 +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,77777,9,999999999,13,0.103,0,88,0.2,0,1 +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,11972,2452,4457,1443,200,4.1,0,0,96,77777,9,999999999,13,0.103,0,88,0.2,0,1 +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,34577,29733,7597,2770,200,3.6,0,0,96,77777,9,999999999,13,0.103,0,88,0.2,0,1 +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,60457,45564,10593,4177,220,2.1,0,0,96,77777,9,999999999,13,0.103,0,88,0.2,0,1 +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,85238,52556,13053,5409,230,1.5,0,0,96,77777,9,999999999,14,0.103,0,88,0.2,0,1 +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,89337,91431,15791,3531,10,1.5,0,0,96,77777,9,999999999,14,0.103,0,88,0.2,0,1 +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,98742,91507,17105,5606,110,4.1,1,0,96,77777,9,999999999,14,0.103,0,88,0.2,0,1 +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,104832,93069,17360,7801,130,4.1,1,0,96,77777,9,999999999,14,0.103,0,88,0.2,0,1 +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,4.4,20,83600,1255,1327,390,943,856,133,98963,87548,17020,7515,100,6.2,2,1,96,77777,9,999999999,14,0.103,0,88,0.2,0,1 +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,111545,54070,18924,7870,120,5.7,3,1,96,77777,9,999999999,14,0.103,0,88,0.2,0,1 +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,82302,84218,15955,3393,140,5.7,2,1,96,77777,9,999999999,14,0.103,0,88,0.2,0,1 +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,81175,51362,12788,5276,130,5.7,3,3,96,77777,9,999999999,14,0.103,0,88,0.2,0,1 +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,55724,43730,14308,5465,120,5.7,2,2,96,77777,9,999999999,15,0.103,0,88,0.2,0,1 +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,26032,20085,12331,4126,140,7.7,4,3,80,77777,9,999999999,15,0.103,0,88,0.2,0,1 +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,9557,2521,6648,1863,150,6.7,4,4,80,77777,9,999999999,15,0.103,0,88,0.2,0,1 +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,7.2,32,83400,14,475,380,2,7,2,0,0,0,0,140,3.6,6,4,80,6096,9,999999999,15,0.103,0,88,0.2,0,1 +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,77777,9,999999999,15,0.103,0,88,0.2,0,1 +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,77777,9,999999999,15,0.103,0,88,0.2,0,1 +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,77777,9,999999999,15,0.103,0,88,0.2,0,1 +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,77777,9,999999999,15,0.103,0,88,0.2,0,1 +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,77777,9,999999999,15,0.103,0,88,0.2,0,1 +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,6.1,40,83300,0,0,337,0,0,0,0,0,0,0,150,6.2,0,0,40,77777,9,999999999,16,0.103,0,88,0.2,0,1 +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,77777,9,999999999,16,0.103,0,88,0.2,0,1 +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,77777,9,999999999,16,0.103,0,88,0.2,0,1 +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,77777,9,999999999,16,0.103,0,88,0.2,0,1 +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,12227,2313,4352,1416,170,2.6,0,0,80,77777,9,999999999,16,0.103,0,88,0.2,0,1 +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,34917,29211,7262,2659,240,3.1,0,0,96,77777,9,999999999,15,0.103,0,88,0.2,0,1 +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,60818,44981,10022,3964,190,5.2,0,0,96,77777,9,999999999,15,0.103,0,88,0.2,0,1 +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,73088,87547,13824,2323,190,6.2,0,0,96,77777,9,999999999,15,0.103,0,88,0.2,0,1 +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,3.3,18,83200,1078,1326,381,844,901,112,88983,91844,15020,3455,160,5.7,0,0,96,77777,9,999999999,15,0.103,0,88,0.2,0,1 +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,99641,93722,15621,5300,210,6.2,0,0,112,77777,9,999999999,14,0.103,0,88,0.2,0,1 +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,99631,89154,15777,7288,170,5.2,1,1,112,77777,9,999999999,14,0.103,0,88,0.2,0,1 +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,117145,55129,21823,8989,130,7.2,3,3,112,77777,9,999999999,14,0.103,0,88,0.2,0,1 +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,12,82900,1189,1326,414,927,797,212,113650,58124,26125,10634,150,7.2,5,5,112,77777,9,999999999,14,0.103,0,88,0.2,0,1 +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,68981,33565,27495,11058,170,7.7,6,5,112,7620,9,999999999,13,0.103,0,88,0.2,0,1 +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,57964,30757,29897,11199,180,6.7,9,7,112,4877,9,999999999,13,0.103,0,88,0.2,0,1 +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,31717,11756,23451,8166,280,4.1,8,6,112,8230,9,999999999,13,0.103,0,88,0.2,0,1 +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,2.8,18,82800,440,1326,403,215,206,147,23694,13635,16274,5015,220,3.6,6,5,112,8230,9,999999999,13,0.103,0,88,0.2,0,1 +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,9980,2513,6052,1764,180,3.1,3,3,112,77777,9,999999999,13,0.103,0,88,0.2,0,1 +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,77777,9,999999999,12,0.103,0,88,0.2,0,1 +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,77777,9,999999999,12,0.103,0,88,0.2,0,1 +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,77777,9,999999999,12,0.103,0,88,0.2,0,1 +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,-3.9,19,82900,0,0,331,0,0,0,0,0,0,0,190,3.1,3,1,40,77777,9,999999999,12,0.103,0,88,0.2,0,1 +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,77777,9,999999999,11,0.103,0,88,0.2,0,1 +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,32,82900,0,0,353,0,0,0,0,0,0,0,140,3.6,10,9,40,7010,9,999999999,11,0.104,0,88,0.2,0,1 +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,33,82900,0,0,351,0,0,0,0,0,0,0,160,2.1,10,9,40,7010,9,999999999,11,0.104,0,88,0.2,0,1 +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,7010,9,999999999,11,0.104,0,88,0.2,0,1 +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,7010,9,999999999,10,0.104,0,88,0.2,0,1 +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,77777,9,999999999,10,0.104,0,88,0.2,0,1 +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,8400,2134,4893,1561,210,3.6,5,5,96,77777,9,999999999,10,0.104,0,88,0.2,0,1 +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,22178,14909,11817,4079,220,5.7,5,4,96,77777,9,999999999,10,0.104,0,88,0.2,0,1 +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,19,83100,697,1326,353,507,815,78,62175,47961,9591,3792,220,2.6,0,0,96,77777,9,999999999,10,0.104,0,88,0.2,0,1 +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,16,83100,907,1326,366,698,880,95,73663,88893,13281,2297,220,1.5,0,0,112,77777,9,999999999,10,0.104,0,88,0.2,0,1 +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,10,83100,1078,1326,365,849,907,112,88696,91719,14999,3459,310,3.6,1,0,112,77777,9,999999999,11,0.104,0,88,0.2,0,1 +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,-6.1,9,83100,1198,1326,376,905,829,155,113838,57084,19582,8112,140,3.6,5,1,112,77777,9,999999999,11,0.104,0,88,0.2,0,1 +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,99829,87739,17807,8028,40,2.6,4,1,112,77777,9,999999999,11,0.104,0,88,0.2,0,1 +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,9,83000,1256,1326,398,984,864,165,124098,59612,20904,8620,170,4.6,4,4,112,77777,9,999999999,11,0.104,0,88,0.2,0,1 +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,88040,41346,29914,11991,170,3.6,4,4,112,77777,9,999999999,11,0.104,0,88,0.2,0,1 +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,76074,39999,23114,9476,140,4.1,4,4,112,77777,9,999999999,11,0.104,0,88,0.2,0,1 +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,9,82800,891,1326,392,571,613,159,68584,44188,19180,7711,350,2.1,6,4,112,8534,9,999999999,11,0.104,0,88,0.2,0,1 +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,9,82800,678,1326,401,483,649,151,56137,46682,17624,6539,320,3.1,6,5,112,8534,9,999999999,11,0.104,0,88,0.2,0,1 +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,20631,12243,12902,4279,350,5.2,5,5,112,77777,9,999999999,11,0.104,0,88,0.2,0,1 +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,19,82900,200,1326,371,56,113,38,6352,453,4321,1367,360,3.6,4,4,112,77777,9,999999999,11,0.104,0,88,0.2,0,1 +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,77777,9,999999999,11,0.104,0,88,0.2,0,1 +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,77777,9,999999999,12,0.104,0,88,0.2,0,1 +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,49,83200,0,0,361,0,0,0,0,0,0,0,60,4.1,3,3,32,77777,9,999999999,12,0.104,0,88,0.2,0,1 +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,77777,9,999999999,12,0.104,0,88,0.2,0,1 +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,77777,9,999999999,12,0.104,0,88,0.2,0,1 +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,77777,9,999999999,12,0.104,0,88,0.2,0,1 +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,5.6,53,83500,0,0,314,0,0,0,0,0,0,0,350,1.5,0,0,40,77777,9,999999999,12,0.104,0,88,0.2,0,1 +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,57,83600,0,0,306,0,0,0,0,0,0,0,300,2.1,0,0,40,77777,9,999999999,12,0.104,0,88,0.2,0,1 +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,57,83600,0,0,306,0,0,0,0,0,0,0,0,0,0,0,40,77777,9,999999999,12,0.104,0,88,0.2,0,1 +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,32,77777,9,999999999,12,0.104,0,88,0.2,0,1 +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,12785,2350,4040,1327,40,2.6,0,0,80,77777,9,999999999,12,0.104,0,88,0.2,0,1 +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,36055,31185,6722,2469,30,2.6,0,0,80,77777,9,999999999,12,0.104,0,88,0.2,0,1 +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,3.3,33,83900,697,1326,333,506,818,75,53945,81528,11015,1631,40,2.1,0,0,80,77777,9,999999999,12,0.104,0,88,0.2,0,1 +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,73752,89463,12760,2265,70,2.1,0,0,80,77777,9,999999999,12,0.104,0,88,0.2,0,1 +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,90119,93987,13757,3303,180,2.1,0,0,80,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,101649,96546,14417,5023,100,2.1,0,0,80,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,100595,90656,14475,6842,130,3.6,1,1,96,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,25,83600,1256,1326,383,945,794,192,117585,54316,24009,9849,170,4.1,3,3,96,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,102263,48459,35173,13819,90,5.7,5,5,96,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,73382,34941,26715,10830,130,5.7,4,4,80,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,36,83500,892,1326,389,615,754,107,75767,45188,13228,5469,130,6.2,4,4,80,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,48165,34943,13982,5371,140,3.6,3,3,80,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,28329,23352,10775,3725,0,0,2,2,80,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,8.9,36,83600,201,1326,379,83,287,39,9374,391,4415,1400,50,5.7,3,3,80,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,4,4,40,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,5,5,40,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,9883,2784,8067,2241,150,2.1,4,4,72,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,27831,21964,14028,4667,240,2.1,2,2,80,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,50378,38021,17800,6679,160,2.1,1,0,80,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,77505,50923,22128,8814,140,3.6,0,0,96,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,28,84200,1078,1325,325,811,740,209,98056,54931,25397,10340,150,5.2,0,0,96,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,112928,57062,27644,11195,140,5.7,0,0,96,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,120588,57454,28768,11620,90,4.1,0,0,96,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,120339,57415,28643,11575,150,3.6,0,0,96,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,107799,53305,29172,11754,100,3.6,1,1,96,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,5,28,83800,1067,1325,377,659,456,291,77416,37103,34387,13366,60,3.6,6,4,80,7010,9,999999999,13,0.104,0,88,0.2,0,1 +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,4.4,26,83800,894,1325,402,269,122,186,31862,8872,22135,8783,70,4.1,9,9,80,3962,9,999999999,13,0.104,0,88,0.2,0,1 +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,19426,2802,17055,6386,50,3.6,9,9,80,3962,9,999999999,13,0.104,0,88,0.2,0,1 +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,25928,19620,13523,4454,80,5.2,4,3,80,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,8563,1612,7181,1993,110,5.2,2,2,80,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,7.2,60,84000,0,0,315,0,0,0,0,0,0,0,160,2.1,0,0,48,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,61,84100,0,0,301,0,0,0,0,0,0,0,330,2.6,0,0,32,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,1.1,54,84200,0,0,288,0,0,0,0,0,0,0,330,2.1,0,0,48,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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.6,52,84200,23,629,287,7,89,4,0,0,0,0,330,1.5,0,0,112,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,13826,2351,3403,1135,0,0,0,0,112,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,33128,71099,7004,1087,360,2.6,0,0,112,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,54759,85379,9053,1521,70,2.6,0,0,112,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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.6,27,84200,907,1325,330,701,916,74,74583,92761,10492,2063,0,0,0,0,112,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,24,84200,1078,1325,335,855,949,83,90565,96584,11320,2923,70,2.6,0,0,112,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,23,84200,1198,1325,340,964,967,89,101829,98595,11798,4323,60,3.1,0,0,112,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,21,84100,1259,1325,359,960,823,177,120402,56606,22305,9176,0,0,2,2,112,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,19,84000,1257,1325,368,910,820,131,94974,83447,16750,7616,30,2.1,3,3,112,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,19,83900,1192,1325,367,898,831,150,112999,55657,18957,7874,70,3.6,5,2,112,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,18,83900,1068,1325,379,863,879,153,106638,60179,18986,7906,350,2.1,5,5,112,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,17,83800,895,1325,373,636,783,107,78671,50273,13280,5475,220,1.5,2,2,96,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,17,83800,683,1325,368,473,797,62,50488,79053,9219,1508,120,3.1,1,1,80,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,31976,28288,8015,2880,120,3.1,2,2,80,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,12309,2019,4226,1353,60,4.1,3,3,80,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,2.2,31,83900,0,0,338,0,0,0,0,0,0,0,120,2.1,1,1,48,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,46,83800,0,0,320,0,0,0,0,0,0,0,180,3.1,0,0,32,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,69,83700,0,0,321,0,0,0,0,0,0,0,230,2.1,0,0,32,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,12173,3201,4676,1509,300,1.5,1,1,64,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,36306,30492,6385,2354,350,2.1,1,0,80,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,54360,83234,10178,1596,350,1.5,0,0,80,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,74140,90942,11831,2195,10,2.6,0,0,96,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,90375,95104,12736,3159,30,3.6,0,0,80,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,5.6,29,83800,1198,1325,360,962,951,101,102031,97557,13302,4751,40,2.6,0,0,80,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,107616,98370,13493,6514,40,3.1,0,0,80,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,102314,93398,13254,6327,120,3.1,1,1,80,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,2.8,18,83600,1192,1325,397,932,829,185,115413,57516,23020,9471,120,2.6,3,3,80,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,93836,51214,20356,8445,100,2.1,2,2,80,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,2.2,17,83500,896,1325,396,521,543,154,62684,37712,18607,7526,360,4.1,3,3,80,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,48769,34141,23883,8336,360,4.1,5,4,80,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,21177,15556,6474,2365,100,3.6,6,5,80,9144,9,999999999,13,0.104,0,88,0.2,0,1 +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,9777,2434,7983,2134,160,4.1,6,5,80,9144,9,999999999,13,0.104,0,88,0.2,0,1 +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,9144,9,999999999,13,0.104,0,88,0.2,0,1 +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,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,7.2,43,83500,0,0,338,0,0,0,0,0,0,0,190,4.6,0,0,48,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,10934,3918,5312,1676,210,4.1,5,2,112,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,30173,25673,8594,3103,190,4.6,4,1,112,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,55180,42608,14619,5632,200,5.7,4,2,112,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,74972,46625,15592,6410,180,5.2,3,3,128,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,84252,84620,16645,3632,200,5.2,2,2,128,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,12,83300,1198,1325,411,795,663,195,98230,47175,24213,9919,170,3.1,5,3,128,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,107183,49658,29256,11789,190,4.1,7,5,128,7620,9,999999999,13,0.104,0,88,0.2,0,1 +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,57637,17000,32108,12798,210,5.7,10,8,112,7620,9,999999999,13,0.104,0,88,0.2,0,1 +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,57972,18016,33629,13275,190,2.6,9,7,112,5486,9,999999999,13,0.104,0,88,0.2,0,1 +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,81345,28629,56973,18701,350,6.2,9,8,96,5486,9,999999999,13,0.104,0,88,0.2,0,1 +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,25469,0,25704,10879,360,3.1,10,10,96,3658,9,999999999,14,0.104,0,88,0.2,0,1 +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,18169,0,18326,7444,60,4.1,10,10,96,4572,9,999999999,14,0.104,0,88,0.2,0,1 +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,10498,0,10581,4077,120,2.1,10,10,96,4572,9,999999999,14,0.104,0,88,0.2,0,1 +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,3815,0,3842,1418,150,2.1,10,10,96,4572,9,999999999,14,0.104,0,88,0.2,0,1 +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,4572,9,999999999,14,0.104,0,88,0.2,0,1 +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,4572,9,999999999,14,0.104,0,88,0.2,0,1 +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,4.4,36,83300,0,0,346,0,0,0,0,0,0,0,180,1.5,2,2,40,77777,9,999999999,14,0.104,0,88,0.2,0,1 +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,40,83300,0,0,337,0,0,0,0,0,0,0,190,3.6,1,1,40,77777,9,999999999,14,0.104,0,88,0.2,0,1 +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,77777,9,999999999,14,0.104,0,88,0.2,0,1 +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,77777,9,999999999,14,0.104,0,88,0.2,0,1 +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,77777,9,999999999,14,0.104,0,88,0.2,0,1 +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,77777,9,999999999,14,0.104,0,88,0.2,0,1 +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,5,51,83300,0,0,319,0,0,0,0,0,0,0,210,3.1,4,1,64,77777,9,999999999,15,0.104,0,88,0.2,0,1 +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,5,51,83300,24,629,319,6,61,4,0,0,0,0,210,3.6,4,1,96,77777,9,999999999,15,0.104,0,88,0.2,0,1 +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,12836,3512,4365,1422,200,3.6,5,0,96,77777,9,999999999,15,0.104,0,88,0.2,0,1 +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,35,83200,463,1324,340,299,673,64,35438,30800,7604,2775,220,3.6,5,0,96,77777,9,999999999,15,0.104,0,88,0.2,0,1 +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,51980,39214,16692,6331,190,7.2,5,3,112,77777,9,999999999,14,0.104,0,88,0.2,0,1 +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,3.3,18,83200,907,1324,394,646,751,132,78779,49716,16160,6631,210,4.6,6,2,112,77777,9,999999999,14,0.104,0,88,0.2,0,1 +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,90270,49044,22120,9120,210,2.1,9,3,112,77777,9,999999999,14,0.104,0,88,0.2,0,1 +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,113294,55717,19449,8067,90,1.5,7,2,112,77777,9,999999999,14,0.104,0,88,0.2,0,1 +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,108461,50611,31655,12644,180,2.1,9,3,112,77777,9,999999999,14,0.104,0,88,0.2,0,1 +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,11,83000,1258,1324,426,1002,780,260,122129,59482,31870,12720,360,3.1,10,4,112,77777,9,999999999,14,0.104,0,88,0.2,0,1 +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,84845,37258,35079,13758,270,2.6,10,5,112,77777,9,999999999,14,0.104,0,88,0.2,0,1 +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,11,82800,1071,1324,430,649,524,226,77912,39905,27273,11002,280,2.1,10,5,112,77777,9,999999999,14,0.104,0,88,0.2,0,1 +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,36576,17296,14782,6072,300,4.6,8,8,104,4877,9,999999999,14,0.104,0,88,0.2,0,1 +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,25421,1149,24757,8565,310,3.6,9,9,96,6096,9,999999999,14,0.104,0,88,0.2,0,1 +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,12,82800,452,1324,439,175,57,155,19284,3956,17160,5270,320,2.6,9,9,96,6096,9,999999999,14,0.104,0,88,0.2,0,1 +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,14,82800,210,1324,435,43,0,43,4213,0,4243,1532,50,2.1,10,10,96,6096,9,999999999,14,0.104,0,88,0.2,0,1 +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,6096,9,999999999,14,0.104,0,88,0.2,0,1 +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,1.1,21,82800,0,0,366,0,0,0,0,0,0,0,170,3.6,7,2,40,77777,9,999999999,14,0.104,0,88,0.2,0,1 +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.6,20,82800,0,0,372,0,0,0,0,0,0,0,190,4.6,8,4,40,6096,9,999999999,14,0.104,0,88,0.2,0,1 +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,6096,9,999999999,13,0.104,0,88,0.2,0,1 +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,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,7620,9,999999999,13,0.104,0,88,0.2,0,1 +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,7620,9,999999999,13,0.104,0,88,0.2,0,1 +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,7925,9,999999999,13,0.104,0,88,0.2,0,1 +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,9993,3521,7162,2089,170,4.1,10,6,96,7925,9,999999999,13,0.104,0,88,0.2,0,1 +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,27530,19854,15672,5060,170,3.6,10,6,96,7925,9,999999999,13,0.104,0,88,0.2,0,1 +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,43327,24634,25748,8898,180,3.6,9,6,96,7925,9,999999999,13,0.104,0,88,0.2,0,1 +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,59626,27663,36082,12989,220,3.6,8,8,112,6401,9,999999999,13,0.104,0,88,0.2,0,1 +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,51284,18688,27889,11221,240,2.1,7,6,112,6401,9,999999999,13,0.104,0,88,0.2,0,1 +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,62313,19247,37471,14524,350,2.1,8,8,112,6401,9,999999999,13,0.104,0,88,0.2,0,1 +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,110084,52061,35534,13962,210,6.2,5,5,112,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,102313,46470,37663,14658,300,3.1,6,5,128,8230,9,999999999,13,0.104,0,88,0.2,0,1 +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,115999,60205,26746,10855,180,5.7,5,5,128,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,89562,49519,25056,10201,200,2.6,3,3,128,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,77526,50539,15366,6297,300,2.1,2,2,128,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,41965,29251,16902,6351,310,4.6,8,4,112,8534,9,999999999,13,0.104,0,88,0.2,0,1 +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,28623,24756,9764,3445,330,5.2,7,4,112,8534,9,999999999,13,0.104,0,88,0.2,0,1 +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,12,82500,212,1324,411,89,162,63,9745,3236,6922,1990,360,3.6,6,4,96,7620,9,999999999,13,0.104,0,88,0.2,0,1 +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,7620,9,999999999,13,0.104,0,88,0.2,0,1 +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,8.3,35,82900,0,0,379,0,0,0,0,0,0,0,60,7.2,3,3,48,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,77777,9,999999999,13,0.104,0,88,0.2,0,1 +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,77777,9,999999999,13,0.103,0,88,0.2,0,1 +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,77777,9,999999999,13,0.103,0,88,0.2,0,1 +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,77777,9,999999999,13,0.103,0,88,0.2,0,1 +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,77777,9,999999999,13,0.103,0,88,0.2,0,1 +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,96,77777,9,999999999,13,0.103,0,88,0.2,0,1 +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,13187,1578,3507,1169,230,2.1,1,1,96,77777,9,999999999,13,0.103,0,88,0.2,0,1 +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,41,83300,462,1324,338,270,596,61,32117,26829,7273,2662,90,1,2,2,96,77777,9,999999999,13,0.103,0,88,0.2,0,1 +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,9.4,50,83300,696,1324,355,419,479,167,48297,33219,19337,7179,50,3.1,3,3,88,77777,9,999999999,13,0.103,0,88,0.2,0,1 +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,49,83300,906,1324,367,520,582,121,63654,35879,14867,6142,150,2.6,5,5,80,77777,9,999999999,13,0.103,0,88,0.2,0,1 +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,47,83300,1077,1324,370,614,577,144,76065,36422,17915,7508,50,5.2,5,5,72,77777,9,999999999,14,0.103,0,88,0.2,0,1 +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,44,83200,1197,1324,366,916,861,137,97116,88791,17732,5804,20,2.1,2,2,72,77777,9,999999999,14,0.103,0,88,0.2,0,1 +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,10,39,83200,1259,1324,365,1021,985,84,109770,102001,11056,5512,190,2.1,0,0,64,77777,9,999999999,14,0.103,0,88,0.2,0,1 +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,109816,102021,11062,5467,70,2.1,0,0,64,77777,9,999999999,14,0.103,0,88,0.2,0,1 +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,103218,100599,10825,3970,140,6.2,0,0,64,77777,9,999999999,14,0.103,0,88,0.2,0,1 +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,91450,98454,10448,2717,140,5.7,0,0,64,77777,9,999999999,14,0.103,0,88,0.2,0,1 +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,74894,94556,9310,1895,180,6.2,1,1,64,77777,9,999999999,14,0.103,0,88,0.2,0,1 +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,10.6,30,82800,689,1324,398,476,789,65,51646,79589,9653,1547,350,7.2,1,1,64,77777,9,999999999,14,0.103,0,88,0.2,0,1 +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,33512,73735,6285,1024,310,5.2,0,0,56,77777,9,999999999,14,0.103,0,88,0.2,0,1 +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,12574,43911,4237,587,330,3.1,0,0,48,77777,9,999999999,14,0.103,0,88,0.2,0,1 +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,77777,9,999999999,14,0.103,0,88,0.2,0,1 +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,40,77777,9,999999999,14,0.103,0,88,0.2,0,1 +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,77777,9,999999999,14,0.103,0,88,0.2,0,1 +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,11.7,59,83100,0,0,343,0,0,0,0,0,0,0,230,2.6,0,0,40,77777,9,999999999,14,0.103,0,88,0.2,0,1 +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,77777,9,999999999,14,0.103,0,88,0.2,0,1 +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,77777,9,999999999,14,0.103,0,88,0.2,0,1 +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,396,9,999999999,14,0.103,0,88,0.2,0,1 +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,427,9,999999999,14,0.103,0,88,0.2,0,1 +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,640,9,999999999,15,0.103,0,88,0.2,0,1 +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,853,9,999999999,15,0.103,0,88,0.2,0,1 +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,2631,0,2651,1068,360,4.1,10,10,19.2,366,9,999999999,15,0.103,0,88,0.2,0,1 +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,7167,0,7225,3066,360,3.6,10,10,19.2,305,9,999999999,15,0.103,0,88,0.2,0,1 +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,12301,0,12410,5553,40,4.6,10,10,16,305,9,999999999,15,0.103,0,88,0.2,0,1 +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,20388,0,20580,9269,30,5.2,10,10,19.2,427,9,999999999,15,0.103,0,88,0.2,0,1 +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,70645,22145,48305,17169,30,2.6,7,7,24,914,9,999999999,15,0.103,0,88,0.2,0,1 +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,73764,26599,36271,14206,340,3.6,8,8,24,914,9,999999999,15,0.103,0,88,0.2,0,1 +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,104100,93675,14736,7059,340,4.6,1,1,24,77777,9,999999999,15,0.103,0,88,0.2,0,1 +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,108112,97603,14982,7100,360,2.1,0,0,24,77777,9,999999999,15,0.103,0,88,0.2,0,1 +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,101911,96381,14693,5042,40,4.1,0,0,19.2,77777,9,999999999,15,0.103,0,88,0.2,0,1 +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,90410,94040,14183,3311,80,4.6,0,0,24,77777,9,999999999,15,0.103,0,88,0.2,0,1 +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,66984,38073,13815,5719,120,6.2,1,1,24,77777,9,999999999,15,0.103,0,88,0.2,0,1 +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,11.7,32,83400,690,1324,392,497,805,76,60703,42686,9308,3689,60,6.2,0,0,32,77777,9,999999999,15,0.103,0,88,0.2,0,1 +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,34895,27174,6684,2455,30,6.2,0,0,32,77777,9,999999999,15,0.103,0,88,0.2,0,1 +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,12.2,45,83500,214,1324,368,106,437,35,12131,46,4014,1314,340,7.2,0,0,32,77777,9,999999999,15,0.103,0,88,0.2,0,1 +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,77777,9,999999999,15,0.103,0,88,0.2,0,1 +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,77777,9,999999999,15,0.103,0,88,0.2,0,1 +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,77777,9,999999999,15,0.103,0,88,0.2,0,1 +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,77777,9,999999999,15,0.103,0,88,0.2,0,1 +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,77777,9,999999999,15,0.103,0,88,0.2,0,1 +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,77777,9,999999999,15,0.103,0,88,0.2,0,1 +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,77777,9,999999999,15,0.103,0,88,0.2,0,1 +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,77777,9,999999999,15,0.103,0,88,0.2,0,1 +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,77777,9,999999999,15,0.103,0,88,0.2,0,1 +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,15,0.103,0,88,0.2,0,1 +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,2139,0,2155,891,350,3.1,10,10,4,61,9,999999999,15,0.103,0,88,0.2,0,1 +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,8245,0,8313,3447,360,3.1,10,10,9.6,549,9,999999999,15,0.103,0,88,0.2,0,1 +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,78,84200,695,1323,383,275,73,237,30701,5606,26606,9132,60,2.6,10,9,12.8,762,9,999999999,16,0.103,0,88,0.2,0,1 +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,68,84100,905,1323,380,490,394,220,57112,27753,25778,10103,70,3.1,7,7,14.4,792,9,999999999,16,0.103,0,88,0.2,0,1 +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,73611,29793,38848,14781,20,2.6,8,6,14.4,792,9,999999999,16,0.103,0,88,0.2,0,1 +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,99653,44033,31761,12719,10,4.1,7,5,17.6,7010,9,999999999,17,0.103,0,88,0.2,0,1 +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,100279,37105,53078,19130,60,5.2,5,5,19.2,77777,9,999999999,17,0.103,0,88,0.2,0,1 +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,115717,48200,21243,8810,50,3.1,2,2,19.2,77777,9,999999999,17,0.103,0,88,0.2,0,1 +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,106925,47857,24746,10177,10,4.1,3,3,32,77777,9,999999999,18,0.103,0,88,0.2,0,1 +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,47,84000,1073,1323,402,736,607,244,87289,42581,29100,11708,70,5.7,4,4,40,77777,9,999999999,18,0.103,0,88,0.2,0,1 +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,85511,52999,21629,8671,80,3.1,4,4,48,77777,9,999999999,18,0.103,0,88,0.2,0,1 +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,52046,36297,17113,6472,50,2.1,5,5,48,77777,9,999999999,18,0.103,0,88,0.2,0,1 +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,20498,4267,18080,5499,120,3.1,5,5,32,77777,9,999999999,19,0.103,0,88,0.2,0,1 +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,8849,1132,5770,1776,110,6.2,5,5,32,77777,9,999999999,19,0.103,0,88,0.2,0,1 +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,60,84000,22,607,387,4,3,4,0,0,0,0,110,3.1,6,6,32,7620,9,999999999,19,0.103,0,88,0.2,0,1 +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,66,84100,0,0,409,0,0,0,0,0,0,0,130,2.1,10,10,24,7620,9,999999999,20,0.103,0,88,0.2,0,1 +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,7620,9,999999999,20,0.103,0,88,0.2,0,1 +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,7620,9,999999999,20,0.103,0,88,0.2,0,1 +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,7010,9,999999999,20,0.103,0,88,0.2,0,1 +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,7010,9,999999999,21,0.103,0,88,0.2,0,1 +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,81,84000,0,0,345,0,0,0,0,0,0,0,360,1.5,6,1,24,77777,9,999999999,21,0.103,0,88,0.2,0,1 +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,90,84000,0,0,338,0,0,0,0,0,0,0,0,0,3,1,24,77777,9,999999999,21,0.103,0,88,0.2,0,1 +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,77777,9,999999999,22,0.103,0,88,0.2,0,1 +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,4,3,12.8,77777,9,999999999,22,0.103,0,88,0.2,0,1 +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,2719,0,2740,1101,350,3.1,10,10,6.4,244,9,999999999,22,0.103,0,88,0.2,0,1 +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,5359,0,5403,2391,320,3.6,10,10,4.8,152,9,999999999,22,0.103,0,88,0.2,0,1 +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,16.7,81,84100,694,1323,402,114,0,114,11546,0,11648,5280,320,3.1,10,10,9.6,335,9,999999999,22,0.103,0,88,0.2,0,1 +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,61086,31866,19296,7855,260,2.6,5,5,11.2,77777,9,999999999,21,0.103,0,88,0.2,0,1 +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,98486,47611,18199,7646,320,1.5,1,0,11.2,77777,9,999999999,21,0.103,0,88,0.2,0,1 +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,91621,37969,24040,9919,350,2.6,1,1,12.8,77777,9,999999999,21,0.103,0,88,0.2,0,1 +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,84527,30221,36694,14446,330,3.6,5,5,16,77777,9,999999999,21,0.103,0,88,0.2,0,1 +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,81376,16436,62662,21199,300,6.2,9,9,16,1676,9,999999999,21,0.103,0,88,0.2,0,1 +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,28084,0,28375,12829,350,2.1,10,10,11.2,1676,9,999999999,21,0.103,0,88,0.2,0,1 +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,30821,0,31123,13471,360,3.1,10,10,32,3353,9,999999999,21,0.103,0,88,0.2,0,1 +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,24678,0,24908,10691,20,6.2,10,10,32,3353,9,999999999,21,0.103,0,88,0.2,0,1 +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,17227,0,17380,7241,230,4.6,10,10,32,10668,9,999999999,20,0.103,0,88,0.2,0,1 +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,9653,0,9731,3876,270,3.1,10,10,48,10668,9,999999999,20,0.103,0,88,0.2,0,1 +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,4086,0,4116,1523,160,2.1,10,10,48,10668,9,999999999,20,0.103,0,88,0.2,0,1 +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,3048,9,999999999,20,0.103,0,88,0.2,0,1 +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,7620,9,999999999,20,0.103,0,88,0.2,0,1 +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,7620,9,999999999,20,0.103,0,88,0.2,0,1 +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,7620,9,999999999,20,0.103,0,88,0.2,0,1 +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,7620,9,999999999,20,0.103,0,88,0.2,0,1 +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,7620,9,999999999,19,0.103,0,88,0.2,0,1 +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,7620,9,999999999,19,0.103,0,88,0.2,0,1 +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,77777,9,999999999,19,0.103,0,88,0.2,0,1 +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,77777,9,999999999,19,0.103,0,88,0.2,0,1 +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,63,83800,23,628,345,5,36,4,0,0,0,0,160,2.6,4,4,96,77777,9,999999999,19,0.103,0,88,0.2,0,1 +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,12659,2685,4872,1563,270,1.5,3,3,112,77777,9,999999999,19,0.103,0,88,0.2,0,1 +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,32390,24952,6588,2429,290,2.6,1,1,112,77777,9,999999999,20,0.103,0,88,0.2,0,1 +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,57087,40038,9663,3833,310,1.5,1,1,112,77777,9,999999999,20,0.103,0,88,0.2,0,1 +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,12.2,45,84000,903,1323,368,683,870,89,73810,89644,12530,2242,340,2.6,0,0,112,77777,9,999999999,20,0.103,0,88,0.2,0,1 +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,95388,47584,17892,7507,350,2.6,1,1,112,77777,9,999999999,20,0.103,0,88,0.2,0,1 +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,111609,52257,26393,10778,340,2.6,2,2,112,77777,9,999999999,21,0.103,0,88,0.2,0,1 +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,108770,46854,20718,8579,350,4.6,3,3,112,77777,9,999999999,21,0.103,0,88,0.2,0,1 +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,94353,39267,33828,13429,10,3.1,6,4,112,6096,9,999999999,21,0.103,0,88,0.2,0,1 +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,78489,29471,39970,15338,40,4.6,8,8,112,6096,9,999999999,22,0.103,0,88,0.2,0,1 +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,82826,40998,30309,12088,330,7.7,7,7,64,3962,9,999999999,22,0.103,0,88,0.2,0,1 +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,68133,38684,29195,11121,340,9.8,8,8,64,3962,9,999999999,22,0.103,0,88,0.2,0,1 +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,35640,19509,18247,6822,310,8.2,7,7,64,5486,9,999999999,22,0.103,0,88,0.2,0,1 +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,10854,0,10941,4234,140,5.2,10,10,64,5486,9,999999999,23,0.103,0,88,0.2,0,1 +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,4037,0,3698,1227,110,3.1,9,9,64,3658,9,999999999,23,0.103,0,88,0.2,0,1 +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,7620,9,999999999,23,0.103,0,88,0.2,0,1 +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,12.8,63,84200,0,0,365,0,0,0,0,0,0,0,200,2.6,7,5,40,7620,9,999999999,24,0.103,0,88,0.2,0,1 +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,7620,9,999999999,24,0.103,0,88,0.2,0,1 +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,3658,9,999999999,24,0.103,0,88,0.2,0,1 +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,3962,9,999999999,24,0.103,0,88,0.2,0,1 +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,7620,9,999999999,25,0.102,0,88,0.2,0,1 +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,77777,9,999999999,25,0.102,0,88,0.2,0,1 +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,77777,9,999999999,25,0.102,0,88,0.2,0,1 +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,12.8,87,84100,0,0,340,0,0,0,0,0,0,0,190,1.5,5,5,40,77777,9,999999999,25,0.102,0,88,0.2,0,1 +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,12.2,83,84100,23,628,337,4,2,4,0,0,0,0,190,2.1,5,4,96,77777,9,999999999,26,0.102,0,88,0.2,0,1 +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,8569,1607,6614,1978,190,1.5,5,5,104,77777,9,999999999,26,0.102,0,88,0.2,0,1 +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,17622,5818,13637,4578,220,1.5,8,8,96,4267,9,999999999,26,0.102,0,88,0.2,0,1 +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,46894,31514,18563,6938,340,2.1,7,6,96,7620,9,999999999,26,0.102,0,88,0.2,0,1 +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,62796,32666,29485,11234,320,3.1,6,5,96,7620,9,999999999,27,0.102,0,88,0.2,0,1 +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,71941,32268,27949,11295,40,3.1,5,4,96,77777,9,999999999,27,0.102,0,88,0.2,0,1 +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,107234,50620,35281,13880,340,2.6,4,4,96,77777,9,999999999,27,0.102,0,88,0.2,0,1 +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,112107,49769,33784,13431,60,4.1,4,4,80,77777,9,999999999,27,0.102,0,88,0.2,0,1 +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,72106,18346,48169,17849,60,3.1,6,6,64,7620,9,999999999,28,0.102,0,88,0.2,0,1 +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,87124,33256,46032,17085,60,6.2,7,7,56,3048,9,999999999,28,0.102,0,88,0.2,0,1 +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,76260,29520,45421,16486,80,5.2,10,8,56,3048,9,999999999,28,0.102,0,88,0.2,0,1 +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,19522,0,19706,8952,340,10.3,10,10,24,1829,9,999999999,28,0.102,0,88,0.2,0,1 +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,13676,0,13798,6060,360,5.2,10,10,24,1829,9,999999999,29,0.102,0,88,0.2,0,1 +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,7544,0,7606,3196,340,5.2,10,10,24,1829,9,999999999,29,0.102,0,88,0.2,0,1 +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,81,84300,219,1323,391,35,0,35,3404,0,3429,1322,300,2.1,10,10,24,1219,9,999999999,29,0.102,0,88,0.2,0,1 +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,29,0.102,0,88,0.2,0,1 +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,30,0.102,0,88,0.2,0,1 +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,3048,9,999999999,30,0.102,0,88,0.2,0,1 +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,4572,9,999999999,30,0.102,0,88,0.2,0,1 +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,4572,9,999999999,30,0.102,0,88,0.2,0,1 +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,87,84200,0,0,353,0,0,0,0,0,0,0,350,3.1,10,5,19.2,77777,9,999999999,31,0.102,0,88,0.2,0,1 +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,31,0.102,0,88,0.2,0,1 +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,90,84200,0,0,382,0,0,0,0,0,0,0,350,1.5,10,10,9.6,244,9,999999999,31,0.102,0,88,0.2,0,1 +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,96,84100,0,0,340,0,0,0,0,0,0,0,170,1.5,6,3,12.8,77777,9,999999999,31,0.102,0,88,0.2,0,1 +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,77777,9,999999999,32,0.102,0,88,0.2,0,1 +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,87,84200,217,1322,357,76,76,64,8285,1064,7002,2055,190,2.1,6,6,12.8,3353,9,999999999,32,0.102,0,88,0.2,0,1 +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,14025,3696,10986,3859,190,3.1,9,9,9.6,732,9,999999999,31,0.102,0,88,0.2,0,1 +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,44606,28750,15946,6101,150,2.1,3,3,11.2,77777,9,999999999,31,0.102,0,88,0.2,0,1 +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,77473,44048,14596,6046,70,2.6,4,2,16,77777,9,999999999,31,0.102,0,88,0.2,0,1 +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,86084,41245,19586,8190,210,2.1,6,3,19.2,77777,9,999999999,31,0.102,0,88,0.2,0,1 +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,106353,47608,25437,10437,130,3.6,7,2,24,77777,9,999999999,31,0.102,0,88,0.2,0,1 +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,117934,50641,22550,9315,320,2.1,8,3,24,77777,9,999999999,31,0.102,0,88,0.2,0,1 +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,83919,24303,53783,19286,0,0,7,6,24,9144,9,999999999,31,0.102,0,88,0.2,0,1 +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,67656,21919,35651,14024,110,5.2,9,8,24,6706,9,999999999,31,0.102,0,88,0.2,0,1 +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,49893,10723,37098,14270,100,2.6,9,9,32,3658,9,999999999,31,0.102,0,88,0.2,0,1 +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,46225,15782,29373,11228,230,1.5,10,8,32,3658,9,999999999,31,0.102,0,88,0.2,0,1 +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,39122,22457,16789,6385,130,2.6,10,7,32,3658,9,999999999,31,0.102,0,88,0.2,0,1 +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,11602,0,11697,4465,200,3.1,10,10,32,3658,9,999999999,31,0.102,0,88,0.2,0,1 +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,3692,0,3719,1415,170,6.7,10,10,24,1676,9,999999999,31,0.102,0,88,0.2,0,1 +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,81,83900,23,628,391,3,0,3,0,0,0,0,200,3.6,10,10,32,3658,9,999999999,31,0.102,0,88,0.2,0,1 +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,3658,9,999999999,31,0.102,0,88,0.2,0,1 +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,7620,9,999999999,31,0.102,0,88,0.2,0,1 +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,7620,9,999999999,30,0.102,0,88,0.2,0,1 +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,87,83700,0,0,366,0,0,0,0,0,0,0,170,2.1,8,8,40,3353,9,999999999,30,0.102,0,88,0.2,0,1 +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,3353,9,999999999,30,0.102,0,88,0.2,0,1 +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,3658,9,999999999,30,0.102,0,88,0.2,0,1 +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,3658,9,999999999,30,0.102,0,88,0.2,0,1 +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,3658,9,999999999,30,0.102,0,88,0.2,0,1 +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,7315,9,999999999,30,0.102,0,88,0.2,0,1 +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,9055,1500,5381,1691,200,3.6,7,5,112,7315,9,999999999,30,0.102,0,88,0.2,0,1 +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,22408,14824,9733,3470,190,3.6,6,4,104,9754,9,999999999,30,0.102,0,88,0.2,0,1 +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,12.2,45,83700,691,1322,386,343,445,110,40757,25950,13118,5115,140,1.5,7,4,96,9754,9,999999999,29,0.102,0,88,0.2,0,1 +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,46276,15984,30100,11415,30,7.7,8,8,80,2896,9,999999999,29,0.102,0,88,0.2,0,1 +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,25514,0,25766,11677,40,5.2,10,10,80,2286,9,999999999,29,0.102,0,88,0.2,0,1 +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,28791,0,29087,13061,320,5.7,10,10,16,1829,9,999999999,29,0.102,0,88,0.2,0,1 +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,30679,0,30999,13812,330,4.1,10,10,80,2743,9,999999999,29,0.102,0,88,0.2,0,1 +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,39551,7049,27169,11076,210,3.1,8,8,80,3658,9,999999999,29,0.102,0,88,0.2,0,1 +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,64438,22275,28500,11566,130,2.1,6,6,40,9144,9,999999999,28,0.102,0,88,0.2,0,1 +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,97324,49319,20071,8370,0,0,6,5,40,6706,9,999999999,28,0.102,0,88,0.2,0,1 +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,56543,27009,28077,10811,50,3.1,9,7,40,3658,9,999999999,28,0.102,0,88,0.2,0,1 +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,50529,35110,18657,6969,40,4.1,8,6,40,3962,9,999999999,28,0.102,0,88,0.2,0,1 +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,12.2,61,83800,462,1322,371,144,135,97,16448,6712,11119,3891,30,4.1,7,7,40,3658,9,999999999,28,0.102,0,88,0.2,0,1 +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,13.9,68,83900,220,1322,366,64,75,52,7106,666,5791,1795,10,4.1,5,5,64,77777,9,999999999,27,0.102,0,88,0.2,0,1 +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,77777,9,999999999,27,0.102,0,88,0.2,0,1 +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,77777,9,999999999,27,0.102,0,88,0.2,0,1 +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,40,77777,9,999999999,27,0.102,0,88,0.2,0,1 +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,1341,9,999999999,27,0.102,0,88,0.2,0,1 +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,1280,9,999999999,26,0.102,0,88,0.2,0,1 +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,1463,9,999999999,26,0.101,0,88,0.2,0,1 +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,3,3,32,77777,9,999999999,26,0.101,0,88,0.2,0,1 +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,77777,9,999999999,26,0.101,0,88,0.2,0,1 +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,77777,9,999999999,26,0.101,0,88,0.2,0,1 +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,77777,9,999999999,25,0.101,0,88,0.2,0,1 +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,11755,681,4232,1383,110,1.5,0,0,64,77777,9,999999999,25,0.101,0,88,0.2,0,1 +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,33952,26378,7021,2577,130,1.5,0,0,64,77777,9,999999999,25,0.101,0,88,0.2,0,1 +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,59120,41838,9881,3914,0,0,0,0,64,77777,9,999999999,24,0.101,0,88,0.2,0,1 +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,72323,86786,13725,2305,100,3.1,0,0,64,77777,9,999999999,24,0.101,0,88,0.2,0,1 +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,88544,91307,14805,3412,130,3.6,0,0,64,77777,9,999999999,24,0.101,0,88,0.2,0,1 +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,9.4,37,84000,1194,1322,364,937,907,118,99650,93538,15415,5262,120,1.5,0,0,64,77777,9,999999999,23,0.101,0,88,0.2,0,1 +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,105092,94180,15677,7430,360,2.6,0,0,80,77777,9,999999999,23,0.101,0,88,0.2,0,1 +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,100808,89999,15432,7357,320,1.5,1,1,80,77777,9,999999999,22,0.101,0,88,0.2,0,1 +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,82844,30102,47814,17519,320,5.2,6,6,80,4877,9,999999999,22,0.101,0,88,0.2,0,1 +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,66893,30200,27718,11179,70,2.6,5,5,80,77777,9,999999999,22,0.101,0,88,0.2,0,1 +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,69699,42702,20089,8097,40,4.1,4,4,80,77777,9,999999999,21,0.101,0,88,0.2,0,1 +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,46023,17403,35972,10717,20,7.2,7,7,80,3658,9,999999999,21,0.101,0,88,0.2,0,1 +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,23219,7126,19612,5786,60,4.1,6,6,80,6401,9,999999999,21,0.101,0,88,0.2,0,1 +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,12234,4069,5402,1697,170,3.1,2,2,80,77777,9,999999999,20,0.101,0,88,0.2,0,1 +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,4572,9,999999999,20,0.101,0,88,0.2,0,1 +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,77777,9,999999999,19,0.101,0,88,0.2,0,1 +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,7.2,43,84000,0,0,344,0,0,0,0,0,0,0,170,1.5,1,1,48,77777,9,999999999,19,0.101,0,88,0.2,0,1 +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,77777,9,999999999,19,0.101,0,88,0.2,0,1 +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,77777,9,999999999,18,0.101,0,88,0.2,0,1 +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,65,84000,0,0,340,0,0,0,0,0,0,0,90,2.1,3,3,40,77777,9,999999999,18,0.101,0,88,0.2,0,1 +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,69,83900,0,0,327,0,0,0,0,0,0,0,150,2.1,1,1,48,77777,9,999999999,18,0.101,0,88,0.2,0,1 +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,77,83900,0,0,314,0,0,0,0,0,0,0,110,2.6,0,0,48,77777,9,999999999,17,0.101,0,88,0.2,0,1 +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,77,83900,0,0,314,0,0,0,0,0,0,0,200,3.6,1,0,64,77777,9,999999999,17,0.101,0,88,0.2,0,1 +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,75,84000,21,606,316,6,74,3,0,0,0,0,190,3.1,0,0,96,77777,9,999999999,17,0.101,0,88,0.2,0,1 +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,12901,35,3493,1162,220,3.6,0,0,112,77777,9,999999999,16,0.101,0,88,0.2,0,1 +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,32477,69813,7317,1095,200,3.6,0,0,112,77777,9,999999999,16,0.101,0,88,0.2,0,1 +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,54140,84523,9359,1534,200,2.6,0,0,112,77777,9,999999999,16,0.101,0,88,0.2,0,1 +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,74105,91972,10922,2093,210,4.6,0,0,112,77777,9,999999999,16,0.101,0,88,0.2,0,1 +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,21,83900,1071,1322,380,844,934,87,89887,95595,11853,2989,360,2.1,0,0,112,77777,9,999999999,16,0.101,0,88,0.2,0,1 +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,100302,96852,12292,4448,350,3.1,0,0,112,77777,9,999999999,16,0.101,0,88,0.2,0,1 +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,106410,97958,12498,6154,360,3.1,0,0,112,77777,9,999999999,16,0.101,0,88,0.2,0,1 +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,97891,89171,12738,6281,360,3.1,1,1,112,77777,9,999999999,16,0.101,0,88,0.2,0,1 +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,95942,92175,12041,4407,10,3.1,1,1,112,77777,9,999999999,16,0.101,0,88,0.2,0,1 +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,98104,54625,21435,8858,340,2.1,3,3,112,77777,9,999999999,16,0.101,0,88,0.2,0,1 +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,69635,85614,10626,2074,40,3.1,1,1,112,77777,9,999999999,16,0.101,0,88,0.2,0,1 +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,13,83600,696,1322,395,476,785,62,50818,78046,9196,1530,40,2.6,1,1,112,77777,9,999999999,16,0.101,0,88,0.2,0,1 +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,22174,14197,12441,4254,130,2.6,5,5,112,77777,9,999999999,16,0.101,0,88,0.2,0,1 +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,3.3,18,83600,222,1322,398,105,362,45,11869,4149,5100,1620,130,2.1,3,3,112,77777,9,999999999,16,0.101,0,88,0.2,0,1 +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,77777,9,999999999,16,0.101,0,88,0.2,0,1 +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,4.4,26,83700,0,0,374,0,0,0,0,0,0,0,190,4.1,3,3,48,77777,9,999999999,16,0.101,0,88,0.2,0,1 +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,77777,9,999999999,16,0.101,0,88,0.2,0,1 +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,77777,9,999999999,16,0.101,0,88,0.2,0,1 +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,7.8,45,83600,0,0,350,0,0,0,0,0,0,0,190,3.1,2,2,48,77777,9,999999999,16,0.101,0,88,0.2,0,1 +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,7.8,45,83600,0,0,350,0,0,0,0,0,0,0,180,2.6,5,2,48,77777,9,999999999,15,0.1,0,88,0.2,0,1 +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,6.1,40,83500,0,0,351,0,0,0,0,0,0,0,180,3.1,3,3,48,77777,9,999999999,15,0.1,0,88,0.2,0,1 +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,77777,9,999999999,15,0.1,0,88,0.2,0,1 +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,5,4,48,77777,9,999999999,15,0.1,0,88,0.2,0,1 +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,77777,9,999999999,15,0.1,0,88,0.2,0,1 +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,10568,2948,5186,1631,150,2.1,4,4,96,77777,9,999999999,15,0.1,0,88,0.2,0,1 +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,6.1,30,83600,454,1322,379,209,359,85,24174,17948,9863,3494,220,2.6,4,4,96,77777,9,999999999,15,0.1,0,88,0.2,0,1 +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,50129,37419,14918,5720,20,2.6,4,4,96,77777,9,999999999,15,0.1,0,88,0.2,0,1 +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,70172,44193,22867,9057,30,3.1,4,4,96,77777,9,999999999,15,0.1,0,88,0.2,0,1 +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,9,83800,1070,1322,398,592,545,150,73412,37779,18679,7779,10,6.2,4,4,96,77777,9,999999999,15,0.1,0,88,0.2,0,1 +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,93370,87644,14883,5126,40,3.6,2,1,96,77777,9,999999999,15,0.1,0,88,0.2,0,1 +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,96532,84272,17802,8186,20,3.1,3,1,96,77777,9,999999999,15,0.1,0,88,0.2,0,1 +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,96408,85974,15168,7266,130,4.1,2,1,96,77777,9,999999999,14,0.1,0,88,0.2,0,1 +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,93694,86731,15986,5441,70,6.7,3,1,96,77777,9,999999999,14,0.1,0,88,0.2,0,1 +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,100540,54751,17742,7415,70,4.1,2,1,96,77777,9,999999999,14,0.1,0,88,0.2,0,1 +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.6,11,83600,906,1322,403,692,874,93,73127,88357,13019,2281,110,5.2,0,0,96,77777,9,999999999,14,0.1,0,88,0.2,0,1 +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,61830,46966,9471,3748,90,5.2,0,0,96,77777,9,999999999,14,0.1,0,88,0.2,0,1 +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,35888,31007,6834,2508,70,6.7,0,0,96,77777,9,999999999,14,0.1,0,88,0.2,0,1 +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,2.8,18,83600,222,1322,381,112,452,36,12894,3273,4153,1360,50,5.2,0,0,96,77777,9,999999999,14,0.1,0,88,0.2,0,1 +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,77777,9,999999999,14,0.1,0,88,0.2,0,1 +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,77777,9,999999999,14,0.1,0,88,0.2,0,1 +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,33,83800,0,0,346,0,0,0,0,0,0,0,120,2.1,0,0,48,77777,9,999999999,13,0.1,0,88,0.2,0,1 +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,77777,9,999999999,13,0.1,0,88,0.2,0,1 +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,77777,9,999999999,13,0.1,0,88,0.2,0,1 +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,77777,9,999999999,13,0.1,0,88,0.2,0,1 +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,77777,9,999999999,13,0.1,0,88,0.2,0,1 +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,77777,9,999999999,13,0.1,0,88,0.2,0,1 +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,8.3,64,83600,0,0,317,0,0,0,0,0,0,0,170,1.5,0,0,64,77777,9,999999999,13,0.1,0,88,0.2,0,1 +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,77777,9,999999999,13,0.1,0,88,0.2,0,1 +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,11190,2066,4759,1520,210,2.1,2,0,96,77777,9,999999999,13,0.1,0,88,0.2,0,1 +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,26813,21222,10391,3652,240,2.1,3,3,96,77777,9,999999999,13,0.1,0,88,0.2,0,1 +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,59197,44178,10685,4206,0,0,0,0,96,77777,9,999999999,13,0.1,0,88,0.2,0,1 +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,83903,51783,13267,5492,0,0,0,0,96,77777,9,999999999,13,0.1,0,88,0.2,0,1 +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,88915,90930,16188,3537,140,3.1,0,0,96,77777,9,999999999,13,0.1,0,88,0.2,0,1 +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,100222,93232,16751,5531,130,3.1,0,0,96,77777,9,999999999,13,0.1,0,88,0.2,0,1 +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,105370,93718,17099,7922,110,3.1,0,0,96,77777,9,999999999,13,0.1,0,88,0.2,0,1 +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,105205,93511,17088,7979,180,2.6,0,0,96,77777,9,999999999,13,0.1,0,88,0.2,0,1 +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,99765,92642,16840,5634,180,3.1,0,0,96,77777,9,999999999,13,0.1,0,88,0.2,0,1 +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,88186,89826,16135,3586,180,2.1,0,0,96,77777,9,999999999,13,0.1,0,88,0.2,0,1 +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,-2.2,7,83200,906,1322,426,687,845,108,85157,54847,13433,5550,80,2.1,0,0,96,77777,9,999999999,13,0.1,0,88,0.2,0,1 +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,60527,47777,10849,4265,310,4.1,0,0,96,77777,9,999999999,13,0.1,0,88,0.2,0,1 +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,34737,32042,7844,2849,260,5.2,0,0,96,77777,9,999999999,13,0.1,0,88,0.2,0,1 +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,12215,4624,4691,1510,260,4.1,0,0,96,77777,9,999999999,14,0.1,0,88,0.2,0,1 +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,77777,9,999999999,14,0.1,0,88,0.2,0,1 +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,77777,9,999999999,14,0.1,0,88,0.2,0,1 +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,77777,9,999999999,14,0.1,0,88,0.2,0,1 +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,77777,9,999999999,14,0.1,0,88,0.2,0,1 +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,19,83500,0,0,353,0,0,0,0,0,0,0,300,2.6,0,0,48,77777,9,999999999,14,0.1,0,88,0.2,0,1 +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,77777,9,999999999,14,0.099,0,88,0.2,0,1 +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,1.7,30,83600,0,0,332,0,0,0,0,0,0,0,140,3.6,0,0,32,77777,9,999999999,14,0.099,0,88,0.2,0,1 +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,77777,9,999999999,14,0.099,0,88,0.2,0,1 +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,77777,9,999999999,14,0.099,0,88,0.2,0,1 +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,77777,9,999999999,14,0.099,0,88,0.2,0,1 +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,3.9,35,84000,210,1322,349,86,179,57,9497,2858,6315,1884,170,3.6,6,3,88,77777,9,999999999,14,0.099,0,88,0.2,0,1 +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,27334,22708,10832,3774,140,3.6,2,1,88,77777,9,999999999,14,0.099,0,88,0.2,0,1 +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,-1.7,17,84000,685,1322,350,469,678,117,55711,44465,13948,5372,60,3.6,1,0,96,77777,9,999999999,14,0.099,0,88,0.2,0,1 +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,79748,52291,17401,7084,130,5.2,1,0,96,77777,9,999999999,14,0.099,0,88,0.2,0,1 +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,98583,54234,20026,8319,130,7.2,1,0,96,77777,9,999999999,14,0.099,0,88,0.2,0,1 +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,115315,57252,22800,9387,130,4.6,2,0,96,77777,9,999999999,14,0.099,0,88,0.2,0,1 +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,119129,55794,23466,9630,160,4.6,3,1,96,77777,9,999999999,14,0.099,0,88,0.2,0,1 +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,116069,53709,23000,9451,70,2.1,2,2,96,77777,9,999999999,14,0.099,0,88,0.2,0,1 +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,106649,52495,26276,10694,50,4.6,3,3,96,77777,9,999999999,14,0.099,0,88,0.2,0,1 +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,95453,52621,24041,9844,110,3.1,2,2,96,77777,9,999999999,14,0.099,0,88,0.2,0,1 +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,70053,43330,22106,8815,80,3.6,3,3,96,77777,9,999999999,14,0.099,0,88,0.2,0,1 +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,53807,40979,20256,7437,50,4.1,2,2,96,77777,9,999999999,14,0.099,0,88,0.2,0,1 +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,12,83800,464,1322,417,243,346,121,27428,21244,13712,4593,360,5.2,4,4,96,77777,9,999999999,14,0.099,0,88,0.2,0,1 +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,8772,2368,6349,1923,30,5.2,4,4,96,77777,9,999999999,14,0.099,0,88,0.2,0,1 +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,77777,9,999999999,14,0.099,0,88,0.2,0,1 +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,77777,9,999999999,14,0.099,0,88,0.2,0,1 +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,77777,9,999999999,14,0.099,0,88,0.2,0,1 +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,3962,9,999999999,14,0.099,0,88,0.2,0,1 +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,77777,9,999999999,14,0.099,0,88,0.2,0,1 +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.6,27,84000,0,0,345,0,0,0,0,0,0,0,350,4.1,3,3,48,77777,9,999999999,14,0.098,0,88,0.2,0,1 +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,27,84100,0,0,333,0,0,0,0,0,0,0,330,5.2,1,1,48,77777,9,999999999,14,0.098,0,88,0.2,0,1 +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,77777,9,999999999,14,0.098,0,88,0.2,0,1 +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,77777,9,999999999,14,0.098,0,88,0.2,0,1 +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,38,84300,19,562,303,5,49,3,0,0,0,0,320,1.5,0,0,96,77777,9,999999999,14,0.098,0,88,0.2,0,1 +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,12009,1870,3818,1250,340,2.1,0,0,96,77777,9,999999999,14,0.098,0,88,0.2,0,1 +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,1.1,28,84400,450,1322,331,291,701,53,34943,30654,6377,2336,360,3.1,0,0,96,77777,9,999999999,14,0.098,0,88,0.2,0,1 +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,24,84400,684,1322,344,468,748,81,57134,44266,9916,3904,10,3.1,1,1,96,77777,9,999999999,14,0.098,0,88,0.2,0,1 +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,68659,83327,12777,2236,20,3.1,1,1,96,77777,9,999999999,14,0.098,0,88,0.2,0,1 +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,1.7,22,84300,1068,1322,366,800,801,153,98881,54371,18992,7913,0,0,2,2,96,77777,9,999999999,14,0.098,0,88,0.2,0,1 +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,94427,44606,29900,12004,0,0,3,3,96,77777,9,999999999,14,0.098,0,88,0.2,0,1 +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,1.7,16,84200,1255,1322,392,946,834,154,98453,84907,19486,8676,40,4.1,2,2,96,77777,9,999999999,14,0.098,0,88,0.2,0,1 +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,125127,58665,22298,9178,300,2.1,3,3,96,77777,9,999999999,14,0.098,0,88,0.2,0,1 +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,95070,88489,15500,5334,360,7.2,2,2,96,77777,9,999999999,15,0.098,0,88,0.2,0,1 +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,99177,55416,27069,10946,320,6.7,4,4,96,77777,9,999999999,15,0.098,0,88,0.2,0,1 +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,56326,31927,16733,6849,350,5.7,6,6,96,4267,9,999999999,15,0.098,0,88,0.2,0,1 +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,45940,31935,18643,6953,30,4.1,6,6,96,4877,9,999999999,15,0.098,0,88,0.2,0,1 +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,18593,8344,12974,4405,40,4.1,7,7,96,4572,9,999999999,15,0.098,0,88,0.2,0,1 +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,1.1,16,84000,223,1322,404,89,112,70,9714,2802,7669,2186,80,4.1,6,6,96,4572,9,999999999,15,0.098,0,88,0.2,0,1 +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,77777,9,999999999,15,0.098,0,88,0.2,0,1 +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,3.3,24,84100,0,0,375,0,0,0,0,0,0,0,140,3.6,4,4,40,77777,9,999999999,15,0.098,0,88,0.2,0,1 +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,77777,9,999999999,15,0.098,0,88,0.2,0,1 +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,36,84100,0,0,345,0,0,0,0,0,0,0,160,1,1,1,40,77777,9,999999999,15,0.098,0,88,0.2,0,1 +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,77777,9,999999999,16,0.098,0,88,0.2,0,1 +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,77777,9,999999999,16,0.098,0,88,0.2,0,1 +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,77777,9,999999999,16,0.098,0,88,0.2,0,1 +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,77777,9,999999999,16,0.098,0,88,0.2,0,1 +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,77777,9,999999999,16,0.098,0,88,0.2,0,1 +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,77777,9,999999999,16,0.098,0,88,0.2,0,1 +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,10395,3637,6808,1972,210,3.1,3,3,112,77777,9,999999999,16,0.098,0,88,0.2,0,1 +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,28650,23935,11340,3916,220,3.6,2,2,112,77777,9,999999999,16,0.098,0,88,0.2,0,1 +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,43380,29735,16745,6317,190,3.6,3,3,112,77777,9,999999999,16,0.098,0,88,0.2,0,1 +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,70701,86577,12258,2196,190,2.1,2,2,112,77777,9,999999999,16,0.098,0,88,0.2,0,1 +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,21494,3976,15266,6417,10,2.6,8,8,96,3962,9,999999999,16,0.098,0,88,0.2,0,1 +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,83141,33993,41180,15656,360,3.6,7,7,96,4267,9,999999999,16,0.098,0,88,0.2,0,1 +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,111793,52970,34149,13503,160,1,4,4,96,77777,9,999999999,16,0.098,0,88,0.2,0,1 +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,116816,55338,27530,11161,350,5.2,4,4,80,77777,9,999999999,15,0.098,0,88,0.2,0,1 +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,90583,82773,16718,5611,350,3.6,3,3,96,77777,9,999999999,15,0.098,0,88,0.2,0,1 +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,85535,40942,43279,15923,180,3.6,4,4,96,77777,9,999999999,15,0.098,0,88,0.2,0,1 +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,39371,10669,28959,11060,180,6.2,8,8,96,3658,9,999999999,15,0.098,0,88,0.2,0,1 +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,20451,4102,16663,6334,10,8.2,9,9,80,3658,9,999999999,15,0.098,0,88,0.2,0,1 +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,25844,5359,23509,6276,70,4.6,8,8,96,4877,9,999999999,15,0.098,0,88,0.2,0,1 +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,7.8,33,83800,223,1322,392,42,31,37,4818,182,4254,1393,120,4.1,7,7,96,4877,9,999999999,15,0.098,0,88,0.2,0,1 +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,77777,9,999999999,15,0.098,0,88,0.2,0,1 +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,77777,9,999999999,15,0.098,0,88,0.2,0,1 +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,77777,9,999999999,15,0.098,0,88,0.2,0,1 +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,77777,9,999999999,15,0.098,0,88,0.2,0,1 +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,77777,9,999999999,15,0.098,0,88,0.2,0,1 +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,77777,9,999999999,15,0.097,0,88,0.2,0,1 +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,77777,9,999999999,15,0.097,0,88,0.2,0,1 +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,77777,9,999999999,15,0.097,0,88,0.2,0,1 +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,77777,9,999999999,14,0.097,0,88,0.2,0,1 +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,77777,9,999999999,14,0.097,0,88,0.2,0,1 +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,11635,1003,3809,1245,170,3.6,0,0,112,77777,9,999999999,14,0.097,0,88,0.2,0,1 +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,34340,29033,6475,2371,180,2.1,0,0,112,77777,9,999999999,15,0.097,0,88,0.2,0,1 +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,23,83900,681,1321,372,490,809,73,52408,80694,10762,1598,210,3.6,0,0,112,77777,9,999999999,15,0.097,0,88,0.2,0,1 +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,71952,88336,12513,2211,210,1.5,0,0,112,77777,9,999999999,15,0.097,0,88,0.2,0,1 +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,83066,86305,14019,3274,80,2.1,1,1,112,77777,9,999999999,15,0.097,0,88,0.2,0,1 +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,78098,35234,15654,6532,280,3.1,3,3,112,77777,9,999999999,15,0.097,0,88,0.2,0,1 +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,-2.8,9,83700,1254,1321,411,991,913,124,103293,92716,15895,7413,340,8.2,2,2,112,77777,9,999999999,15,0.097,0,88,0.2,0,1 +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,111533,51248,19372,8015,310,2.6,4,3,112,77777,9,999999999,15,0.097,0,88,0.2,0,1 +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,109937,53464,19098,7927,10,5.2,4,2,112,77777,9,999999999,15,0.097,0,88,0.2,0,1 +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,78635,40496,23029,9465,310,5.2,6,3,112,77777,9,999999999,15,0.097,0,88,0.2,0,1 +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,75565,48585,20569,8268,310,4.1,5,4,112,77777,9,999999999,15,0.097,0,88,0.2,0,1 +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,-1.7,9,83600,698,1321,424,431,492,171,49794,36603,19845,7315,350,4.1,5,5,112,77777,9,999999999,15,0.097,0,88,0.2,0,1 +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,26674,21200,11718,4059,50,4.1,4,4,96,77777,9,999999999,15,0.097,0,88,0.2,0,1 +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,6645,1102,4478,1454,60,3.6,6,5,96,8534,9,999999999,15,0.097,0,88,0.2,0,1 +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,3658,9,999999999,15,0.097,0,88,0.2,0,1 +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,77777,9,999999999,15,0.097,0,88,0.2,0,1 +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,20,83700,0,0,374,0,0,0,0,0,0,0,150,5.3,2,2,40,77777,9,999999999,15,0.097,0,88,0.2,0,1 +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,77777,9,999999999,15,0.097,0,88,0.2,0,1 +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,77777,9,999999999,15,0.097,0,88,0.2,0,1 +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,4.6,56,83800,0,0,339,0,0,0,0,0,0,0,180,3.9,0,0,32,77777,9,999999999,16,0.089,0,88,0.2,0,1 +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,77777,9,999999999,15,0.089,0,88,0.2,0,1 +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,1,1,32,77777,9,999999999,15,0.089,0,88,0.2,0,1 +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,77777,9,999999999,15,0.089,0,88,0.2,0,1 +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,77777,9,999999999,15,0.089,0,88,0.2,0,1 +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,10419,1568,4541,1447,250,1.5,0,0,112,77777,9,999999999,15,0.089,0,88,0.2,0,1 +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,32070,27518,8009,2888,300,2.1,0,0,112,77777,9,999999999,15,0.089,0,88,0.2,0,1 +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,57401,44469,11250,4401,40,2.1,0,0,112,77777,9,999999999,15,0.089,0,88,0.2,0,1 +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,82064,52284,14076,5800,70,3.1,0,0,112,77777,9,999999999,15,0.089,0,88,0.2,0,1 +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,30,84000,1065,1321,351,825,864,128,86862,88152,17064,3564,50,2.1,0,0,112,77777,9,999999999,16,0.089,0,88,0.2,0,1 +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,98652,91037,17855,5670,80,3.1,0,0,112,77777,9,999999999,16,0.089,0,88,0.2,0,1 +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,104708,92256,18200,8179,100,3.6,0,0,112,77777,9,999999999,16,0.089,0,88,0.2,0,1 +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,104710,92102,18186,8298,120,4.1,0,0,112,77777,9,999999999,16,0.089,0,88,0.2,0,1 +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,98999,90925,17823,5834,100,5.7,0,0,112,77777,9,999999999,16,0.089,0,88,0.2,0,1 +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,87661,88172,17147,3680,70,3.1,0,0,112,77777,9,999999999,16,0.089,0,88,0.2,0,1 +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,76147,48187,20654,8308,50,3.1,3,3,96,77777,9,999999999,16,0.089,0,88,0.2,0,1 +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,3.9,19,83700,698,1321,395,455,608,134,53500,40501,15818,6046,60,4.1,5,2,96,77777,9,999999999,16,0.089,0,88,0.2,0,1 +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,19019,3485,17107,5370,60,4.1,8,8,96,3658,9,999999999,17,0.089,0,88,0.2,0,1 +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,7521,1340,5516,1731,30,6.2,6,6,96,3658,9,999999999,17,0.089,0,88,0.2,0,1 +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,5,28,83900,24,650,384,4,8,4,0,0,0,0,20,3.6,6,6,64,3658,9,999999999,17,0.089,0,88,0.2,0,1 +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,77777,9,999999999,17,0.089,0,88,0.2,0,1 +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,77777,9,999999999,17,0.089,0,88,0.2,0,1 +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,6.1,40,84000,0,0,354,0,0,0,0,0,0,0,350,3.1,4,4,32,77777,9,999999999,17,0.089,0,88,0.2,0,1 +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,77777,9,999999999,17,0.089,0,88,0.2,0,1 +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,77777,9,999999999,17,0.089,0,88,0.2,0,1 +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,77777,9,999999999,18,0.089,0,88,0.2,0,1 +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,77777,9,999999999,18,0.089,0,88,0.2,0,1 +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,77777,9,999999999,18,0.089,0,88,0.2,0,1 +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,77777,9,999999999,18,0.089,0,88,0.2,0,1 +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,11544,0,3585,1177,10,1.5,0,0,96,77777,9,999999999,18,0.089,0,88,0.2,0,1 +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,34245,27854,6020,2210,30,3.1,0,0,112,77777,9,999999999,18,0.089,0,88,0.2,0,1 +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,58438,43958,10557,4147,30,2.1,4,0,96,77777,9,999999999,18,0.089,0,88,0.2,0,1 +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,69038,41208,24072,9466,20,4.1,8,6,96,3353,9,999999999,18,0.089,0,88,0.2,0,1 +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,87613,44455,20405,8490,70,3.1,2,2,96,77777,9,999999999,19,0.089,0,88,0.2,0,1 +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,94216,88185,15193,5090,50,4.1,1,1,96,77777,9,999999999,19,0.089,0,88,0.2,0,1 +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,11.1,42,84200,1253,1321,373,953,897,102,102144,92994,13282,6341,60,1.5,1,1,64,77777,9,999999999,19,0.089,0,88,0.2,0,1 +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,105752,45481,25926,10601,20,1.5,3,3,64,77777,9,999999999,19,0.089,0,88,0.2,0,1 +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,95472,88034,16395,5523,20,3.6,2,2,64,77777,9,999999999,19,0.089,0,88,0.2,0,1 +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,31,84000,1076,1321,401,820,854,124,87255,87926,16552,3628,80,3.6,3,3,64,77777,9,999999999,19,0.089,0,88,0.2,0,1 +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,70565,84390,12909,2279,70,3.6,2,2,64,77777,9,999999999,19,0.089,0,88,0.2,0,1 +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,44804,28541,20839,7629,10,5.7,5,5,64,77777,9,999999999,19,0.089,0,88,0.2,0,1 +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,33255,28776,11047,3875,40,6.2,2,2,64,77777,9,999999999,20,0.089,0,88,0.2,0,1 +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,11518,3292,5095,1624,30,4.6,3,3,64,77777,9,999999999,20,0.089,0,88,0.2,0,1 +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,2438,9,999999999,20,0.089,0,88,0.2,0,1 +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,2438,9,999999999,20,0.089,0,88,0.2,11.2,1 +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,2591,9,999999999,20,0.089,0,88,0.2,3,1 +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,20,0.089,0,88,0.2,1.5,1 +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,2896,9,999999999,20,0.089,0,88,0.2,0,1 +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,7620,9,999999999,20,0.088,0,88,0.2,0,1 +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,2743,9,999999999,20,0.088,0,88,0.2,0,1 +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,77777,9,999999999,21,0.088,0,88,0.2,0,1 +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,77777,9,999999999,21,0.088,0,88,0.2,0,1 +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,77777,9,999999999,21,0.088,0,88,0.2,0,1 +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,11974,0,3144,1046,150,2.6,0,0,88,77777,9,999999999,21,0.088,0,88,0.2,0,1 +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,31641,69839,6742,1047,230,1.5,0,0,80,77777,9,999999999,21,0.088,0,88,0.2,0,1 +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,53302,84812,8822,1477,320,1.5,0,0,80,77777,9,999999999,20,0.088,0,88,0.2,0,1 +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,73192,92266,10278,1996,190,1,0,0,80,77777,9,999999999,20,0.088,0,88,0.2,0,1 +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,89668,96342,11119,2808,180,2.1,0,0,88,77777,9,999999999,20,0.088,0,88,0.2,0,1 +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,94872,91670,11348,4068,140,1.5,1,1,80,77777,9,999999999,20,0.088,0,88,0.2,0,1 +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,103556,95564,11564,5607,70,2.1,1,1,80,77777,9,999999999,20,0.088,0,88,0.2,0,1 +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,104648,96716,11432,5638,110,3.1,2,2,80,77777,9,999999999,20,0.088,0,88,0.2,0,1 +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,34,84100,1195,1321,392,877,780,171,109031,50393,21359,8850,140,4.1,3,3,80,77777,9,999999999,19,0.088,0,88,0.2,0,1 +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,98983,51629,17127,7183,300,3.1,2,2,80,77777,9,999999999,19,0.088,0,88,0.2,0,1 +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,61714,32767,29043,11094,30,4.1,8,8,80,2591,9,999999999,19,0.088,0,88,0.2,0,1 +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,46022,31212,18396,6889,50,3.1,6,6,80,9144,9,999999999,19,0.088,0,88,0.2,0,1 +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,17476,8788,10844,3811,30,3.6,8,8,80,9144,9,999999999,19,0.088,0,88,0.2,0,1 +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,6.7,31,84000,222,1321,390,87,50,78,9389,1340,8452,2312,40,3.1,7,7,80,9144,9,999999999,19,0.088,0,88,0.2,0,1 +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,6,6,48,9144,9,999999999,18,0.088,0,88,0.2,0,1 +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,49,84100,0,0,346,0,0,0,0,0,0,0,360,2.6,0,0,32,77777,9,999999999,18,0.088,0,88,0.2,0,1 +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,77777,9,999999999,18,0.088,0,88,0.2,0,1 +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,77777,9,999999999,18,0.088,0,88,0.2,0,1 +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,32,77777,9,999999999,18,0.088,0,88,0.2,0,1 +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,77777,9,999999999,17,0.087,0,88,0.2,0,1 +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,11.1,77,84100,0,0,320,0,0,0,0,0,0,0,180,2.1,0,0,32,77777,9,999999999,17,0.087,0,88,0.2,0,1 +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,77777,9,999999999,17,0.087,0,88,0.2,0,1 +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,8.9,67,84000,0,0,317,0,0,0,0,0,0,0,200,2.6,0,0,32,77777,9,999999999,17,0.087,0,88,0.2,0,1 +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,77777,9,999999999,17,0.087,0,88,0.2,0,1 +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,10064,640,4421,1406,190,4.1,0,0,104,77777,9,999999999,17,0.087,0,88,0.2,0,1 +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,31595,26149,7772,2805,200,3.1,0,0,96,77777,9,999999999,16,0.087,0,88,0.2,0,1 +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,56894,43157,11003,4307,190,3.1,0,0,96,77777,9,999999999,16,0.087,0,88,0.2,0,1 +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,6.1,30,84000,887,1321,360,663,822,111,81621,51348,13713,5655,240,3.1,0,0,96,77777,9,999999999,16,0.087,0,88,0.2,0,1 +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,86505,88389,16822,3514,320,1.5,0,0,112,77777,9,999999999,16,0.087,0,88,0.2,0,1 +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,-2.2,12,83900,1186,1321,374,936,893,135,97418,90576,17470,5541,170,2.1,0,0,112,77777,9,999999999,15,0.087,0,88,0.2,0,1 +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,107130,49026,20891,8622,140,2.1,1,1,112,77777,9,999999999,15,0.087,0,88,0.2,0,1 +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,13,83800,1255,1321,395,952,854,140,99156,86861,17816,8114,340,3.1,1,1,112,77777,9,999999999,15,0.087,0,88,0.2,0,1 +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,98378,90989,17321,5719,350,2.1,1,1,112,77777,9,999999999,15,0.087,0,88,0.2,0,1 +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,81475,81534,16511,3625,140,2.6,1,1,112,77777,9,999999999,15,0.087,0,88,0.2,0,1 +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,79532,51328,17312,7066,230,1.5,1,1,112,77777,9,999999999,14,0.087,0,88,0.2,0,1 +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,57471,44936,12640,4929,110,2.1,1,1,112,77777,9,999999999,14,0.087,0,88,0.2,0,1 +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,14,83600,463,1321,395,270,493,97,31026,27404,11185,3905,120,2.1,2,2,112,77777,9,999999999,14,0.087,0,88,0.2,0,1 +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,2.8,18,83600,221,1321,400,62,129,40,7080,1208,4578,1481,80,3.1,4,4,112,77777,9,999999999,14,0.087,0,88,0.2,0,1 +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,77777,9,999999999,13,0.087,0,88,0.2,0,1 +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,77777,9,999999999,13,0.087,0,88,0.2,0,1 +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,30,83600,0,0,351,0,0,0,0,0,0,0,160,2.6,0,0,32,77777,9,999999999,13,0.087,0,88,0.2,0,1 +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,77777,9,999999999,13,0.087,0,88,0.2,0,1 +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,77777,9,999999999,13,0.087,0,88,0.2,0,1 +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,41,83600,0,0,328,0,0,0,0,0,0,0,180,2.6,0,0,32,77777,9,999999999,12,0.087,0,88,0.2,0,1 +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,77777,9,999999999,12,0.087,0,88,0.2,0,1 +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,77777,9,999999999,12,0.087,0,88,0.2,0,1 +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,77777,9,999999999,12,0.087,0,88,0.2,0,1 +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,77777,9,999999999,11,0.087,0,88,0.2,0,1 +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,11018,315,3795,1229,190,3.1,0,0,104,77777,9,999999999,11,0.087,0,88,0.2,0,1 +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,33573,28866,6465,2357,200,2.6,0,0,96,77777,9,999999999,12,0.087,0,88,0.2,0,1 +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,59547,45555,9090,3582,180,2.1,0,0,104,77777,9,999999999,12,0.087,0,88,0.2,0,1 +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,20,83600,886,1321,387,678,876,90,72156,88979,12672,2199,210,2.6,0,0,104,77777,9,999999999,12,0.087,0,88,0.2,0,1 +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,88303,93130,13785,3200,190,2.1,0,0,104,77777,9,999999999,12,0.087,0,88,0.2,0,1 +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,94408,89764,14054,4774,120,2.1,1,1,104,77777,9,999999999,12,0.087,0,88,0.2,0,1 +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,1.7,12,83500,1251,1321,422,954,733,259,116218,55474,31731,12675,340,5.2,3,3,112,77777,9,999999999,12,0.087,0,88,0.2,0,1 +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,121948,58100,25212,10294,340,3.6,2,2,112,77777,9,999999999,12,0.087,0,88,0.2,0,1 +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.6,11,83500,1194,1321,421,856,657,262,103428,50794,31836,12679,310,6.2,3,3,112,77777,9,999999999,12,0.087,0,88,0.2,0,1 +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,87639,46123,17625,7369,310,7.7,2,2,112,77777,9,999999999,12,0.087,0,88,0.2,0,1 +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,64045,34719,31681,11842,310,2.6,6,6,96,4572,9,999999999,12,0.087,0,88,0.2,0,1 +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,21741,6366,16046,6117,30,2.6,6,6,96,4572,9,999999999,13,0.087,0,88,0.2,0,1 +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,35086,31921,8708,3139,50,3.6,3,3,80,77777,9,999999999,13,0.087,0,88,0.2,0,1 +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,12017,4478,5001,1594,40,2.6,2,1,64,77777,9,999999999,13,0.087,0,88,0.2,0,1 +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,77777,9,999999999,13,0.087,0,88,0.2,0,1 +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,29,83500,0,0,368,0,0,0,0,0,0,0,90,2.6,2,2,48,77777,9,999999999,13,0.087,0,88,0.2,0,1 +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,3.3,24,83500,0,0,372,0,0,0,0,0,0,0,250,3.1,3,3,32,77777,9,999999999,13,0.087,0,88,0.2,0,1 +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,77777,9,999999999,13,0.087,0,88,0.2,0,1 +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,6.7,42,83500,0,0,352,0,0,0,0,0,0,0,0,0,3,3,32,77777,9,999999999,13,0.087,0,88,0.2,0,1 +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,77777,9,999999999,13,0.086,0,88,0.2,0,1 +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,77777,9,999999999,13,0.086,0,88,0.2,0,1 +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,77777,9,999999999,14,0.086,0,88,0.2,0,1 +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,77777,9,999999999,14,0.086,0,88,0.2,0,1 +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,77777,9,999999999,14,0.086,0,88,0.2,0,1 +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,9334,1508,4735,1477,180,2.1,0,0,112,77777,9,999999999,14,0.086,0,88,0.2,0,1 +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,28969,24965,8434,3008,220,3.6,1,1,112,77777,9,999999999,14,0.086,0,88,0.2,0,1 +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,50544,38875,15858,5990,220,2.6,2,2,112,77777,9,999999999,14,0.086,0,88,0.2,0,1 +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,15989,1633,13824,5695,200,3.1,8,8,112,5486,9,999999999,14,0.086,0,88,0.2,0,1 +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,3.3,18,83600,1059,1321,412,574,130,470,64930,13148,53547,18077,200,2.1,7,7,112,3962,9,999999999,14,0.086,0,88,0.2,0,1 +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,100324,48585,36921,14353,130,1.5,5,5,112,77777,9,999999999,15,0.086,0,88,0.2,0,1 +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,1.1,12,83500,1250,1321,428,691,288,418,81155,25989,49431,18111,160,2.1,6,5,112,7620,9,999999999,15,0.086,0,88,0.2,0,1 +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,59807,10090,47267,17539,90,5.7,8,8,112,4267,9,999999999,15,0.086,0,88,0.2,0,1 +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,53095,13455,34964,13733,250,5.7,7,7,112,4572,9,999999999,15,0.086,0,88,0.2,0,1 +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,58181,10604,48085,17074,230,5.2,9,9,96,3353,9,999999999,15,0.086,0,88,0.2,0,1 +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,67985,38566,31869,11900,320,7.2,9,7,96,3353,9,999999999,15,0.086,0,88,0.2,0,1 +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,37405,15062,26878,9167,40,5.2,8,8,96,4877,9,999999999,16,0.086,0,88,0.2,0,1 +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,22,83700,462,1321,409,259,271,165,28449,19057,18211,5571,330,6.2,7,7,96,4877,9,999999999,16,0.086,0,88,0.2,0,1 +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,8858,692,8351,2288,200,2.1,8,6,96,4877,9,999999999,16,0.086,0,88,0.2,0,1 +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,7620,9,999999999,16,0.086,0,88,0.2,0,1 +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,77777,9,999999999,16,0.086,0,88,0.2,0,1 +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,77777,9,999999999,16,0.086,0,88,0.2,0,1 +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,77777,9,999999999,16,0.086,0,88,0.2,0,1 +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,77777,9,999999999,17,0.086,0,88,0.2,0,1 +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,7.2,43,83700,0,0,349,0,0,0,0,0,0,0,160,3.1,2,2,32,77777,9,999999999,17,0.086,0,88,0.2,0,1 +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,77777,9,999999999,17,0.086,0,88,0.2,0,1 +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,77777,9,999999999,17,0.086,0,88,0.2,0,1 +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,5.6,39,83700,0,0,356,0,0,0,0,0,0,0,180,2.1,6,5,48,3048,9,999999999,17,0.086,0,88,0.2,0,1 +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,5.6,39,83700,13,473,363,2,1,1,0,0,0,0,220,3.6,7,7,96,4572,9,999999999,17,0.086,0,88,0.2,0,1 +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,3786,0,3678,1192,350,3.1,8,8,104,3658,9,999999999,18,0.086,0,88,0.2,0,1 +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,12623,2006,11185,3831,140,1,9,9,112,3962,9,999999999,18,0.086,0,88,0.2,0,1 +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,29346,2817,27610,9134,10,5.7,9,8,104,3353,9,999999999,18,0.086,0,88,0.2,0,1 +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,61426,35521,18314,7421,360,7.7,7,4,64,77777,9,999999999,18,0.086,0,88,0.2,0,1 +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,40,84100,1058,1321,378,775,678,233,92376,49325,27922,11254,360,7.7,3,3,48,77777,9,999999999,19,0.086,0,88,0.2,0,1 +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,91456,84276,16925,5357,360,6.2,5,2,48,77777,9,999999999,19,0.086,0,88,0.2,0,1 +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,110568,49056,27977,11363,360,5.2,8,3,48,77777,9,999999999,19,0.086,0,88,0.2,0,1 +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,110038,48910,35125,13880,360,5.7,7,4,64,77777,9,999999999,20,0.086,0,88,0.2,0,1 +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,34,84200,1193,1321,413,484,126,370,56738,10514,43663,16426,30,5.2,8,8,48,7620,9,999999999,20,0.086,0,88,0.2,0,1 +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,9.4,37,84200,1075,1321,394,790,665,249,93927,49546,29769,11910,0,0,7,7,48,4572,9,999999999,20,0.086,0,88,0.2,0,1 +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,57985,24550,35576,12909,210,4.6,9,8,48,4572,9,999999999,20,0.086,0,88,0.2,0,1 +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,26754,6825,20909,7652,230,4.1,10,9,48,4572,9,999999999,21,0.086,0,88,0.2,0,1 +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,28799,20621,15911,5123,210,2.6,9,8,48,7620,9,999999999,21,0.086,0,88,0.2,0,1 +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,9345,1042,8520,2311,180,4.1,10,7,48,7620,9,999999999,21,0.086,0,88,0.2,0,1 +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,7620,9,999999999,22,0.086,0,88,0.2,0,1 +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,7620,9,999999999,22,0.086,0,88,0.2,0,1 +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,7620,9,999999999,22,0.086,0,88,0.2,0,1 +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,77777,9,999999999,22,0.086,0,88,0.2,0,1 +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,11.1,57,84200,0,0,376,0,0,0,0,0,0,0,150,6.2,10,8,32,7620,9,999999999,23,0.086,0,88,0.2,0,1 +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,11.1,57,84100,0,0,366,0,0,0,0,0,0,0,140,5.2,8,6,32,7620,9,999999999,23,0.086,0,88,0.2,0,1 +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,77777,9,999999999,23,0.086,0,88,0.2,0,1 +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,7620,9,999999999,24,0.086,0,88,0.2,0,1 +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,7620,9,999999999,24,0.086,0,88,0.2,0,1 +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,6096,9,999999999,24,0.086,0,88,0.2,0,1 +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,4457,0,3664,1188,220,1.5,9,7,64,6096,9,999999999,24,0.086,0,88,0.2,0,1 +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,6838,1776,4647,1713,180,2.1,9,8,80,6096,9,999999999,24,0.086,0,88,0.2,0,1 +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,35052,17019,21431,7667,280,3.1,9,7,80,6096,9,999999999,24,0.086,0,88,0.2,0,1 +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,25619,0,25859,10912,340,2.6,10,10,80,6096,9,999999999,24,0.086,0,88,0.2,0,1 +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,75463,35776,26208,10662,360,4.1,10,7,64,6096,9,999999999,24,0.086,0,88,0.2,0,1 +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,99139,43686,44738,16710,320,4.6,9,6,48,6096,9,999999999,24,0.086,0,88,0.2,0,1 +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,94691,35301,49209,18103,340,3.1,10,7,48,4267,9,999999999,24,0.086,0,88,0.2,0,1 +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,72556,14811,54758,19489,310,4.1,9,8,64,4267,9,999999999,24,0.086,0,88,0.2,0,1 +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,81922,32769,36060,14129,120,2.1,7,6,48,7620,9,999999999,24,0.086,0,88,0.2,0,1 +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,25745,0,25999,11757,260,6.2,10,10,48,2896,9,999999999,23,0.086,0,88,0.2,0,1 +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,12.8,63,83700,904,1321,386,483,136,389,53863,12681,43674,14663,170,6.7,9,9,64,4572,9,999999999,23,0.086,0,88,0.2,0,1 +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,34650,11866,25593,8893,230,4.6,8,8,80,4572,9,999999999,23,0.086,0,88,0.2,0,1 +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,32851,25562,8763,3170,240,3.1,6,2,80,77777,9,999999999,23,0.086,0,88,0.2,0,1 +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,9387,2043,6205,1889,160,3.6,8,5,80,7620,9,999999999,23,0.086,0,88,0.2,0,1 +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,7620,9,999999999,23,0.086,0,88,0.2,0,1 +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,3658,9,999999999,23,0.086,0,88,0.2,0,1 +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,7620,9,999999999,23,0.086,0,88,0.2,0,1 +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,77777,9,999999999,23,0.086,0,88,0.2,0,1 +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,77777,9,999999999,23,0.086,0,88,0.2,0,1 +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,77777,9,999999999,23,0.085,0,88,0.2,0,1 +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,77777,9,999999999,23,0.085,0,88,0.2,0,1 +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,77777,9,999999999,23,0.085,0,88,0.2,0,1 +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,77777,9,999999999,22,0.085,0,88,0.2,0,1 +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,77777,9,999999999,22,0.085,0,88,0.2,0,1 +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,10307,0,3557,1154,200,2.6,1,1,96,77777,9,999999999,22,0.085,0,88,0.2,0,1 +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,30448,69543,6149,994,210,1.5,1,1,96,77777,9,999999999,22,0.085,0,88,0.2,0,1 +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,41,83700,667,1321,375,370,578,78,44992,31261,9511,3741,80,2.1,3,3,96,77777,9,999999999,22,0.085,0,88,0.2,0,1 +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,78325,47426,12185,5043,80,1.5,2,2,96,77777,9,999999999,22,0.085,0,88,0.2,0,1 +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,88338,45287,16489,6927,40,5.2,3,3,96,77777,9,999999999,22,0.085,0,88,0.2,0,1 +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,70664,66236,11355,3984,60,5.2,2,2,96,77777,9,999999999,22,0.085,0,88,0.2,0,1 +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,33,83700,1248,1321,398,942,860,130,99987,88796,16688,7384,350,4.1,4,4,96,77777,9,999999999,22,0.085,0,88,0.2,0,1 +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,120105,55159,32304,12913,350,4.6,5,5,96,77777,9,999999999,22,0.085,0,88,0.2,0,1 +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,33,83600,1192,1321,401,968,887,167,120513,56995,20888,8665,10,4.6,5,5,80,77777,9,999999999,22,0.085,0,88,0.2,0,1 +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,64760,25953,32390,12785,80,2.6,4,4,64,77777,9,999999999,22,0.085,0,88,0.2,0,1 +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,33,83500,904,1321,405,542,432,246,62815,33373,28667,10984,10,5.2,8,6,64,6096,9,999999999,22,0.085,0,88,0.2,0,1 +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,39299,15559,28438,9510,180,5.2,9,9,32,3658,9,999999999,22,0.085,0,88,0.2,0,1 +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,15.6,76,83600,460,1321,390,150,57,130,16693,3144,14530,4810,300,5.7,10,9,24,2286,9,999999999,22,0.085,0,88,0.2,0.3,1 +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,3698,0,3725,1415,340,5.2,10,10,16,2286,9,999999999,22,0.085,0,88,0.2,0,1 +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,90,83700,22,606,364,5,17,5,0,0,0,0,90,3.1,8,8,32,1676,9,999999999,22,0.085,0,88,0.2,0,1 +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,90,83700,0,0,351,0,0,0,0,0,0,0,270,2.1,5,5,32,77777,9,999999999,22,0.085,0,88,0.2,0,1 +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,90,83800,0,0,354,0,0,0,0,0,0,0,210,2.1,8,6,32,4267,9,999999999,22,0.085,0,88,0.2,0,1 +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,96,83800,0,0,337,0,0,0,0,0,0,0,90,1.5,2,2,32,77777,9,999999999,22,0.085,0,88,0.2,0,1 +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,96,83800,0,0,326,0,0,0,0,0,0,0,240,1.5,0,0,32,77777,9,999999999,22,0.085,0,88,0.2,0,1 +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,77777,9,999999999,22,0.085,0,88,0.2,0,1 +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,13.9,93,83600,0,0,322,0,0,0,0,0,0,0,200,2.1,0,0,32,77777,9,999999999,22,0.085,0,88,0.2,0,1 +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,13.9,93,83600,0,0,329,0,0,0,0,0,0,0,160,2.1,1,1,32,77777,9,999999999,22,0.085,0,88,0.2,0,1 +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,11.1,77,83600,0,0,326,0,0,0,0,0,0,0,190,2.6,1,1,32,77777,9,999999999,22,0.085,0,88,0.2,0,1 +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,77777,9,999999999,22,0.085,0,88,0.2,0,1 +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,10476,39192,3929,534,190,2.1,0,0,96,77777,9,999999999,22,0.085,0,88,0.2,0,1 +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,30841,70935,6007,980,200,2.6,0,0,96,77777,9,999999999,23,0.085,0,88,0.2,0,1 +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,50088,81316,7701,1360,220,2.1,1,1,112,77777,9,999999999,23,0.085,0,88,0.2,0,1 +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,68657,87871,9081,1827,190,3.1,1,1,112,77777,9,999999999,23,0.085,0,88,0.2,0,1 +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,87396,43522,14957,6308,70,1.5,2,2,112,77777,9,999999999,23,0.085,0,88,0.2,0,1 +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,99747,46911,29091,11743,160,2.1,3,3,112,77777,9,999999999,23,0.085,0,88,0.2,0,1 +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,94884,82803,17762,7693,340,2.1,5,5,96,77777,9,999999999,23,0.085,0,88,0.2,0,1 +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,86126,23633,59592,20512,240,4.1,8,8,96,3962,9,999999999,23,0.085,0,88,0.2,0,1 +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,93036,41772,36000,14089,160,2.1,7,7,96,4267,9,999999999,23,0.085,0,88,0.2,0,1 +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,8.3,26,83500,1073,1322,411,889,866,185,108148,59241,22614,9332,170,4.6,5,5,88,77777,9,999999999,23,0.085,0,88,0.2,2.5,1 +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,32858,3205,29681,11301,360,3.6,9,9,64,1981,9,999999999,24,0.085,0,88,0.2,0.3,1 +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,55293,38650,12888,5041,90,4.6,5,4,80,77777,9,999999999,24,0.085,0,88,0.2,0,1 +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,33201,26337,8441,3060,120,3.1,4,2,80,77777,9,999999999,24,0.085,0,88,0.2,0,1 +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,9169,1460,7906,2205,130,2.1,8,8,80,4267,9,999999999,24,0.085,0,88,0.2,0,1 +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,3353,9,999999999,24,0.085,0,88,0.2,0,1 +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,3353,9,999999999,24,0.085,0,88,0.2,0,1 +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,3353,9,999999999,24,0.085,0,88,0.2,0,1 +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,3353,9,999999999,24,0.085,0,88,0.2,0,1 +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,10.6,55,83700,0,0,370,0,0,0,0,0,0,0,180,3.1,10,7,32,7620,9,999999999,24,0.085,0,88,0.2,0,1 +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,7620,9,999999999,24,0.085,0,88,0.2,0,1 +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,7620,9,999999999,25,0.085,0,88,0.2,0,1 +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,7620,9,999999999,25,0.085,0,88,0.2,0,1 +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,3048,9,999999999,25,0.085,0,88,0.2,0,1 +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,3658,9,999999999,25,0.085,0,88,0.2,0,1 +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,4247,0,3335,1085,310,3.1,9,8,64,3353,9,999999999,25,0.085,0,88,0.2,0,1 +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,10218,4252,5540,2028,290,2.1,7,7,64,3353,9,999999999,24,0.085,0,88,0.2,0,1 +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,33655,7101,29078,9348,260,4.1,9,9,96,3048,9,999999999,24,0.085,0,88,0.2,0,1 +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,47,84000,877,1322,373,428,233,273,48984,18936,31425,11633,260,1.5,7,6,96,7620,9,999999999,24,0.085,0,88,0.2,0,1 +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,92211,48175,21049,8734,230,2.6,4,3,96,77777,9,999999999,24,0.085,0,88,0.2,0,1 +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,37,84000,1178,1322,380,888,834,144,94018,85944,18644,5556,120,1.5,2,2,96,77777,9,999999999,24,0.085,0,88,0.2,0,1 +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,104512,95638,13782,6275,190,1.5,1,1,96,77777,9,999999999,23,0.085,0,88,0.2,0,1 +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,104591,45978,24441,10026,70,2.6,4,4,96,77777,9,999999999,23,0.085,0,88,0.2,0,1 +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,51959,9007,40407,15462,340,2.6,9,9,80,3962,9,999999999,23,0.085,0,88,0.2,0,1 +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,41290,9218,29553,11828,290,2.1,9,9,80,4267,9,999999999,23,0.085,0,88,0.2,0,1 +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,47027,7851,40651,14036,290,2.1,10,8,80,4267,9,999999999,23,0.085,0,88,0.2,0,1 +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,28814,11814,18364,6870,250,3.1,9,7,80,3962,9,999999999,22,0.085,0,88,0.2,0,1 +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,21169,9863,14994,4895,260,3.1,9,6,80,7315,9,999999999,22,0.085,0,88,0.2,0,1 +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,8632,1807,6106,1854,200,5.2,9,6,80,7315,9,999999999,22,0.085,0,88,0.2,0,1 +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,77777,9,999999999,22,0.085,0,88,0.2,0,1 +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,51,84100,0,0,355,0,0,0,0,0,0,0,170,3.1,5,2,32,77777,9,999999999,21,0.085,0,88,0.2,0,1 +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,77777,9,999999999,21,0.085,0,88,0.2,0,1 +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,56,84100,0,0,347,0,0,0,0,0,0,0,200,2.6,5,2,32,77777,9,999999999,21,0.085,0,88,0.2,0,1 +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,56,84100,0,0,350,0,0,0,0,0,0,0,180,3.1,3,3,32,77777,9,999999999,21,0.085,0,88,0.2,0,1 +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,60,84100,0,0,337,0,0,0,0,0,0,0,180,4.1,3,1,32,77777,9,999999999,21,0.084,0,88,0.2,0,1 +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,63,84100,0,0,334,0,0,0,0,0,0,0,170,3.1,1,1,32,77777,9,999999999,20,0.084,0,88,0.2,0,1 +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,77777,9,999999999,20,0.084,0,88,0.2,0,1 +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,69,84200,0,0,321,0,0,0,0,0,0,0,180,2.6,2,0,64,77777,9,999999999,20,0.084,0,88,0.2,0,1 +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,10,72,84200,9,408,332,1,7,1,0,0,0,0,210,2.6,5,3,96,77777,9,999999999,20,0.084,0,88,0.2,0,1 +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,9175,0,3860,1228,230,4.1,0,0,96,77777,9,999999999,20,0.084,0,88,0.2,0,1 +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,30574,24203,6863,2481,240,2.6,0,0,96,77777,9,999999999,20,0.084,0,88,0.2,0,1 +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,55787,40587,9830,3857,190,1.5,0,0,96,77777,9,999999999,20,0.084,0,88,0.2,0,1 +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,80632,48829,12284,5080,130,2.1,0,0,80,77777,9,999999999,20,0.084,0,88,0.2,0,1 +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,86365,44757,23759,9753,0,0,2,2,96,77777,9,999999999,20,0.084,0,88,0.2,0,1 +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,100393,48163,28771,11618,80,2.1,3,3,80,77777,9,999999999,20,0.084,0,88,0.2,0,1 +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,125513,58969,24556,10064,150,3.6,4,4,80,77777,9,999999999,20,0.084,0,88,0.2,0,1 +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,31,84200,1249,1322,422,479,262,231,58655,18193,28442,11530,350,5.7,8,8,64,2591,9,999999999,20,0.084,0,88,0.2,0,1 +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,92897,41796,31951,12747,100,6.2,7,7,48,3962,9,999999999,20,0.084,0,88,0.2,0.3,1 +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,24959,0,25206,11483,320,7.7,10,10,9.6,2134,9,999999999,21,0.084,0,88,0.2,2.8,1 +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,20167,0,20357,9182,20,8.2,10,10,24,2286,9,999999999,21,0.084,0,88,0.2,0,1 +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,38875,4254,36613,10784,280,2.6,10,9,32,2896,9,999999999,21,0.084,0,88,0.2,0.3,1 +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,8169,933,7121,2615,150,3.6,10,9,48,2896,9,999999999,21,0.084,0,88,0.2,0.3,1 +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,6501,181,6190,1871,220,5.2,9,8,64,2896,9,999999999,21,0.084,0,88,0.2,0,1 +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,77777,9,999999999,21,0.084,0,88,0.2,0,1 +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,3048,9,999999999,21,0.084,0,88,0.2,0,1 +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,3048,9,999999999,21,0.084,0,88,0.2,0,1 +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,77777,9,999999999,21,0.084,0,88,0.2,0,1 +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,77777,9,999999999,21,0.084,0,88,0.2,0,1 +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,77777,9,999999999,21,0.084,0,88,0.2,0,1 +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,77777,9,999999999,21,0.084,0,88,0.2,0,1 +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,77777,9,999999999,21,0.084,0,88,0.2,0,1 +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,77777,9,999999999,22,0.084,0,88,0.2,0,1 +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,77777,9,999999999,22,0.084,0,88,0.2,0,1 +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,9479,0,3433,1107,280,1.5,0,0,24,77777,9,999999999,21,0.084,0,88,0.2,0,1 +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,31298,23412,6082,2215,210,1.5,0,0,9.6,77777,9,999999999,21,0.084,0,88,0.2,0,1 +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,56816,39879,8575,3381,210,1.5,0,0,9.6,77777,9,999999999,21,0.084,0,88,0.2,0,1 +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,70966,88615,12197,2124,120,1.5,0,0,80,77777,9,999999999,21,0.084,0,88,0.2,0,1 +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,87479,93109,13341,3057,280,1.5,0,0,96,77777,9,999999999,21,0.084,0,88,0.2,0,1 +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,11.1,42,84400,1176,1322,366,927,923,106,99302,95568,13996,4588,220,3.1,0,0,96,77777,9,999999999,20,0.084,0,88,0.2,0,1 +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,105359,96438,14276,6381,140,2.6,0,0,96,77777,9,999999999,20,0.084,0,88,0.2,0,1 +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,97447,88322,13895,6403,0,0,1,1,96,77777,9,999999999,20,0.084,0,88,0.2,0,1 +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,102290,48645,31177,12474,110,2.1,3,3,80,77777,9,999999999,20,0.084,0,88,0.2,0,1 +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,90723,47358,22606,9328,150,4.1,2,2,80,77777,9,999999999,20,0.084,0,88,0.2,0,1 +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,67498,40001,19714,7968,130,3.1,5,3,96,77777,9,999999999,19,0.084,0,88,0.2,0,1 +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,35720,13606,25974,8931,110,3.6,7,6,96,9144,9,999999999,19,0.084,0,88,0.2,0,1 +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,24935,17154,12913,4372,110,2.6,5,3,96,77777,9,999999999,19,0.084,0,88,0.2,0,1 +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,11494,3159,5484,1702,120,2.6,5,2,80,77777,9,999999999,19,0.084,0,88,0.2,0,1 +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,77777,9,999999999,19,0.084,0,88,0.2,0,1 +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,77777,9,999999999,18,0.084,0,88,0.2,0,1 +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,77777,9,999999999,18,0.084,0,88,0.2,0,1 +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,11.7,59,84200,0,0,343,0,0,0,0,0,0,0,180,7.2,0,0,32,77777,9,999999999,18,0.084,0,88,0.2,0,1 +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,77777,9,999999999,18,0.084,0,88,0.2,0,1 +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,77777,9,999999999,18,0.084,0,88,0.2,0,1 +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,77777,9,999999999,17,0.084,0,88,0.2,0,1 +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,32,77777,9,999999999,17,0.084,0,88,0.2,0,1 +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,77777,9,999999999,17,0.084,0,88,0.2,0,1 +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,77777,9,999999999,17,0.084,0,88,0.2,0,1 +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,9852,37917,3768,510,210,2.6,0,0,112,77777,9,999999999,17,0.084,0,88,0.2,0,1 +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,10.6,55,84100,419,1322,342,275,751,37,30153,70714,5855,960,210,2.6,0,0,112,77777,9,999999999,16,0.084,0,88,0.2,0,1 +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,52181,86223,7701,1353,220,4.1,0,0,112,77777,9,999999999,16,0.084,0,88,0.2,0,1 +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,72233,93773,9217,1831,190,3.6,0,0,112,77777,9,999999999,16,0.084,0,88,0.2,0,1 +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,89177,97999,10102,2544,150,3.1,0,0,112,77777,9,999999999,16,0.084,0,88,0.2,0,1 +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,100830,99871,10606,3690,130,1.5,0,0,112,77777,9,999999999,16,0.084,0,88,0.2,0,1 +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,107090,100791,10827,5020,180,4.6,0,0,112,77777,9,999999999,16,0.084,0,88,0.2,0,1 +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,20,83900,1247,1322,387,1008,980,82,107422,100632,10813,5140,180,4.1,0,0,112,77777,9,999999999,15,0.084,0,88,0.2,0,1 +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,101515,99501,10565,3860,190,5.2,0,0,104,77777,9,999999999,15,0.084,0,88,0.2,0,1 +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,90449,97651,10176,2675,170,3.1,0,0,104,77777,9,999999999,15,0.084,0,88,0.2,0,1 +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,74483,93989,9295,1903,150,5.2,0,0,104,77777,9,999999999,15,0.084,0,88,0.2,0,1 +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,54906,87294,7939,1412,160,7.2,0,0,96,77777,9,999999999,15,0.084,0,88,0.2,0,1 +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,21,83700,454,1322,380,306,776,39,33180,73366,6125,1015,150,6.7,0,0,96,77777,9,999999999,15,0.084,0,88,0.2,0,1 +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,12369,43759,4077,585,170,6.2,0,0,96,77777,9,999999999,14,0.084,0,88,0.2,0,1 +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,77777,9,999999999,14,0.084,0,88,0.2,0,1 +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,77777,9,999999999,14,0.084,0,88,0.2,0,1 +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,77777,9,999999999,14,0.084,0,88,0.2,0,1 +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,77777,9,999999999,14,0.084,0,88,0.2,0,1 +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,77777,9,999999999,14,0.084,0,88,0.2,0,1 +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,77777,9,999999999,13,0.084,0,88,0.2,0,1 +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,77777,9,999999999,13,0.084,0,88,0.2,0,1 +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,77777,9,999999999,13,0.084,0,88,0.2,0,1 +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,77777,9,999999999,13,0.084,0,88,0.2,0,1 +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,77777,9,999999999,13,0.084,0,88,0.2,0,1 +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,9380,0,3324,1069,200,1.5,0,0,112,77777,9,999999999,13,0.084,0,88,0.2,0,1 +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,31671,25384,5868,2131,200,2.6,0,0,112,77777,9,999999999,13,0.084,0,88,0.2,0,1 +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,50657,81139,10112,1522,0,0,0,0,112,77777,9,999999999,13,0.084,0,88,0.2,0,1 +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,71124,89818,11919,2094,0,0,0,0,112,77777,9,999999999,13,0.084,0,88,0.2,0,1 +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,87954,94440,12949,2986,0,0,0,0,112,77777,9,999999999,14,0.084,0,88,0.2,0,1 +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,99725,96730,13614,4456,140,1.5,0,0,112,77777,9,999999999,14,0.084,0,88,0.2,0,1 +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,100933,92640,13537,6038,50,2.6,1,1,112,77777,9,999999999,14,0.084,0,88,0.2,0,1 +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,99196,86702,18588,7916,110,3.1,1,1,112,77777,9,999999999,14,0.084,0,88,0.2,0,1 +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,3.3,14,83600,1188,1322,425,725,469,303,86485,37715,36363,14185,70,3.6,3,3,96,77777,9,999999999,14,0.084,0,88,0.2,0,1 +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,88684,93695,12871,3133,50,2.6,1,1,88,77777,9,999999999,14,0.084,0,88,0.2,0,1 +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,67679,82486,11709,2165,10,4.1,1,1,96,77777,9,999999999,15,0.084,0,88,0.2,0,1 +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,11,83500,688,1322,419,453,692,92,54806,42235,11164,4376,20,7.2,2,2,96,77777,9,999999999,15,0.084,0,88,0.2,0,1 +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,8.3,26,83600,452,1322,405,214,329,101,24379,17367,11548,3989,10,8.2,3,3,80,77777,9,999999999,15,0.084,0,88,0.2,0,1 +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,10773,846,4020,1309,10,5.2,2,2,80,77777,9,999999999,15,0.084,0,88,0.2,0,1 +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,8.9,36,83700,17,540,379,4,30,3,0,0,0,0,40,1.5,3,3,64,77777,9,999999999,15,0.084,0,88,0.2,0,1 +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,32,77777,9,999999999,15,0.084,0,88,0.2,0,1 +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,77777,9,999999999,15,0.084,0,88,0.2,0,1 +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,77777,9,999999999,16,0.084,0,88,0.2,0,1 +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,77777,9,999999999,16,0.084,0,88,0.2,0,1 +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,77777,9,999999999,16,0.085,0,88,0.2,0,1 +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,77777,9,999999999,16,0.085,0,88,0.2,0,1 +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,77777,9,999999999,16,0.085,0,88,0.2,0,1 +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,77777,9,999999999,16,0.085,0,88,0.2,0,1 +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,69,83900,6,342,327,0,2,0,0,0,0,0,180,1.5,1,1,96,77777,9,999999999,17,0.085,0,88,0.2,0,1 +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,58,84000,170,1322,333,66,199,40,7341,0,4461,1359,180,2.1,1,0,96,77777,9,999999999,17,0.085,0,88,0.2,0,1 +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,27253,22277,8687,3050,200,2.1,0,0,96,77777,9,999999999,17,0.085,0,88,0.2,0,1 +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,8.9,36,84000,653,1322,364,440,676,106,52154,40051,12608,4847,210,1.5,0,0,96,77777,9,999999999,17,0.085,0,88,0.2,0,1 +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,75934,48322,16484,6704,320,1.5,1,0,96,77777,9,999999999,17,0.085,0,88,0.2,0,1 +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,7.8,25,84000,1045,1322,387,792,805,155,97277,52955,19121,7968,80,1.5,1,0,96,77777,9,999999999,17,0.085,0,88,0.2,0,1 +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,113111,54975,20854,8648,270,4.1,1,0,96,77777,9,999999999,17,0.085,0,88,0.2,0,1 +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,116608,52664,20807,8613,350,5.2,1,1,96,77777,9,999999999,17,0.085,0,88,0.2,0,1 +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,116922,55658,28958,11690,340,4.6,1,1,96,77777,9,999999999,17,0.085,0,88,0.2,0,1 +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,108521,53081,20699,8569,280,2.6,2,2,96,77777,9,999999999,17,0.085,0,88,0.2,0,1 +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,80478,40360,31348,12406,340,3.1,3,3,96,77777,9,999999999,18,0.085,0,88,0.2,0,1 +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,69670,42370,27641,10615,340,2.6,7,4,80,6096,9,999999999,18,0.085,0,88,0.2,0,1 +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,38917,10146,32738,10202,310,6.2,6,5,80,6096,9,999999999,18,0.085,0,88,0.2,0,1 +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,27400,22069,10814,3770,300,5.2,4,4,80,77777,9,999999999,18,0.085,0,88,0.2,0,1 +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,7252,776,6395,1888,280,4.1,8,5,80,7620,9,999999999,18,0.085,0,88,0.2,0,1 +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,77777,9,999999999,18,0.085,0,88,0.2,0,1 +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,77777,9,999999999,18,0.085,0,88,0.2,0,1 +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,32,77777,9,999999999,18,0.085,0,88,0.2,0,1 +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,77777,9,999999999,18,0.085,0,88,0.2,0,1 +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,77777,9,999999999,18,0.085,0,88,0.2,0,1 +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,77777,9,999999999,18,0.086,0,88,0.2,0,1 +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,7.8,45,83900,0,0,345,0,0,0,0,0,0,0,190,2.1,3,1,32,77777,9,999999999,19,0.086,0,88,0.2,0,1 +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,77777,9,999999999,19,0.086,0,88,0.2,0,1 +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,77777,9,999999999,19,0.086,0,88,0.2,0,1 +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,77777,9,999999999,19,0.086,0,88,0.2,0,1 +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,8.3,47,83900,168,1322,339,75,348,31,8512,0,3526,1117,190,2.6,0,0,96,77777,9,999999999,19,0.086,0,88,0.2,0,1 +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,30017,24244,6302,2274,200,3.1,0,0,96,77777,9,999999999,19,0.086,0,88,0.2,0,1 +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,55544,41962,9037,3539,210,1.5,0,0,96,77777,9,999999999,20,0.086,0,88,0.2,0,1 +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,69329,86673,12865,2141,120,1.5,0,0,96,77777,9,999999999,20,0.086,0,88,0.2,0,1 +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,85930,91310,14108,3104,0,0,0,0,96,77777,9,999999999,20,0.086,0,88,0.2,0,1 +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,97586,93818,14735,4661,0,0,0,0,96,77777,9,999999999,20,0.086,0,88,0.2,0,1 +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,100977,92066,14763,6386,30,2.1,1,1,96,77777,9,999999999,21,0.086,0,88,0.2,0,1 +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,104145,94945,14748,6560,50,2.6,1,1,96,77777,9,999999999,21,0.086,0,88,0.2,0,1 +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,113083,55497,24362,9995,90,3.6,3,3,96,77777,9,999999999,21,0.086,0,88,0.2,0,1 +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,84452,43661,27215,11003,100,3.6,4,4,96,77777,9,999999999,21,0.086,0,88,0.2,0,1 +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,69438,42579,20939,8391,120,2.6,4,4,64,77777,9,999999999,22,0.086,0,88,0.2,0,1 +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,18,83500,685,1322,430,259,128,193,29514,9705,22101,7916,360,4.1,7,7,64,3048,9,999999999,22,0.086,0,88,0.2,0,1 +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,24392,7748,20724,5842,310,5.2,8,8,64,3658,9,999999999,22,0.086,0,88,0.2,0,1 +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,37,83700,204,1322,398,46,87,33,5282,0,3797,1242,330,6.7,7,7,64,3658,9,999999999,22,0.086,0,88,0.2,0,1 +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,3353,9,999999999,23,0.086,0,88,0.2,0,1 +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,3658,9,999999999,23,0.086,0,88,0.2,0,1 +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,40,83800,0,0,398,0,0,0,0,0,0,0,310,3.6,9,8,32,3658,9,999999999,23,0.086,0,88,0.2,0,1 +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,7,6,32,7620,9,999999999,23,0.086,0,88,0.2,0,1 +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,7620,9,999999999,24,0.086,0,88,0.2,0,1 +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,7620,9,999999999,24,0.087,0,88,0.2,0,1 +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,77777,9,999999999,24,0.087,0,88,0.2,0,1 +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,11.1,57,83500,0,0,349,0,0,0,0,0,0,0,130,1.5,3,1,32,77777,9,999999999,24,0.087,0,88,0.2,0,1 +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,77777,9,999999999,25,0.087,0,88,0.2,0,1 +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,77777,9,999999999,25,0.087,0,88,0.2,0,1 +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,6725,0,3933,1219,200,2.1,2,2,96,77777,9,999999999,25,0.087,0,88,0.2,0,1 +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,25061,18801,12749,4140,180,2.6,3,3,96,77777,9,999999999,25,0.087,0,88,0.2,0,1 +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,11.1,42,83600,648,1322,385,340,436,126,39682,26745,14763,5575,190,2.1,4,4,96,77777,9,999999999,25,0.087,0,88,0.2,0,1 +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,66478,40546,20237,8072,140,2.1,4,4,96,77777,9,999999999,25,0.087,0,88,0.2,0,1 +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,30,83600,1042,1322,400,753,740,169,91752,48927,20687,8582,80,2.6,2,2,96,77777,9,999999999,26,0.087,0,88,0.2,0,1 +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,103859,50648,27934,11320,80,4.6,3,3,96,77777,9,999999999,26,0.087,0,88,0.2,0,1 +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,86312,33824,39350,15214,70,5.2,5,5,96,77777,9,999999999,26,0.087,0,88,0.2,0,1 +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,75759,26845,37148,14519,0,0,8,8,96,4267,9,999999999,26,0.087,0,88,0.2,0,1 +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,107894,52082,24921,10210,60,2.1,4,2,96,77777,9,999999999,26,0.087,0,88,0.2,0,1 +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,45816,16324,22713,9361,350,5.2,8,8,96,4267,9,999999999,26,0.087,0,88,0.2,0,1 +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,33693,2025,31930,11882,360,7.7,9,9,80,3048,9,999999999,26,0.087,0,88,0.2,0,1 +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,31412,8181,25377,8753,20,5.2,10,9,80,3353,9,999999999,26,0.087,0,88,0.2,0,1 +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,61,83700,447,1322,404,95,25,86,10904,1107,9904,3505,30,3.1,10,9,80,2743,9,999999999,27,0.087,0,88,0.2,0,1 +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,3695,0,3722,1386,160,2.1,10,10,80,3048,9,999999999,27,0.087,0,88,0.2,0,1 +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,3353,9,999999999,27,0.087,0,88,0.2,0,1 +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,2286,9,999999999,27,0.087,0,88,0.2,0,1 +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,11.1,57,83900,0,0,363,0,0,0,0,0,0,0,90,2.1,7,5,32,3658,9,999999999,27,0.087,0,88,0.2,0,1 +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,77777,9,999999999,27,0.087,0,88,0.2,0,1 +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,77777,9,999999999,27,0.087,0,88,0.2,0,1 +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,77777,9,999999999,27,0.088,0,88,0.2,0,1 +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,77777,9,999999999,28,0.088,0,88,0.2,0,1 +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,77777,9,999999999,28,0.088,0,88,0.2,0,1 +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,77777,9,999999999,28,0.088,0,88,0.2,0,1 +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,6,276,340,1,17,0,0,0,0,0,0,0,7,2,80,77777,9,999999999,28,0.088,0,88,0.2,0,1 +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,6465,0,4023,1237,200,1.5,8,3,96,77777,9,999999999,28,0.088,0,88,0.2,0,1 +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,24487,18219,9183,3187,0,0,5,2,96,77777,9,999999999,28,0.088,0,88,0.2,0,1 +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,47029,32714,10013,3909,120,1.5,5,3,64,77777,9,999999999,28,0.088,0,88,0.2,0,1 +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,72121,44494,17111,6938,140,2.6,7,2,80,77777,9,999999999,27,0.088,0,88,0.2,0,1 +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,90029,45258,14685,6196,70,2.1,6,3,80,77777,9,999999999,27,0.088,0,88,0.2,0,1 +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,90099,40319,26857,10947,110,3.1,6,2,96,77777,9,999999999,27,0.088,0,88,0.2,0,1 +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,11.7,32,83600,1237,1323,412,891,720,217,109335,48439,26771,10921,140,1.5,8,4,96,77777,9,999999999,27,0.088,0,88,0.2,0,1 +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,86333,34027,34960,13815,180,2.1,9,6,80,9144,9,999999999,27,0.088,0,88,0.2,0,1 +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,28,83500,1183,1323,432,746,476,320,88316,37582,38121,14764,0,0,9,8,80,4267,9,999999999,27,0.088,0,88,0.2,0,1 +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,31731,0,32042,13743,250,6.2,10,10,64,4267,9,999999999,27,0.088,0,88,0.2,0,1 +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,11.7,43,83500,893,1323,412,474,73,424,52426,7217,47224,15097,140,5.2,10,9,80,3353,9,999999999,26,0.088,0,88,0.2,0,1 +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,35446,17413,21188,7663,130,4.1,10,7,96,3658,9,999999999,26,0.088,0,88,0.2,0.3,1 +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,11.7,43,83700,445,1323,423,90,0,90,8957,0,9029,3627,250,8.2,10,10,64,2286,9,999999999,26,0.088,0,88,0.2,0,1 +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,7448,304,7043,1988,350,5.2,10,9,80,2438,9,999999999,26,0.088,0,88,0.2,0,1 +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,76,83800,14,474,397,2,0,2,0,0,0,0,50,1.5,10,10,64,3658,9,999999999,26,0.088,0,88,0.2,0,1 +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,77777,9,999999999,26,0.088,0,88,0.2,0,1 +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,4267,9,999999999,25,0.088,0,88,0.2,0,1 +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,4267,9,999999999,25,0.088,0,88,0.2,0,1 +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,7620,9,999999999,25,0.088,0,88,0.2,0,1 +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,3962,9,999999999,25,0.09,0,88,0.2,0,1 +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,7620,9,999999999,25,0.09,0,88,0.2,0,1 +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,3,3,32,77777,9,999999999,25,0.09,0,88,0.2,0,1 +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,32,77777,9,999999999,25,0.09,0,88,0.2,0,1 +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,12.2,83,83700,4,254,327,0,10,0,0,0,0,0,0,0,3,1,80,77777,9,999999999,24,0.09,0,88,0.2,0,1 +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,7603,0,3811,1179,210,2.6,2,1,96,77777,9,999999999,25,0.09,0,88,0.2,0,1 +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,22292,15544,7684,2722,220,2.1,4,3,96,77777,9,999999999,25,0.09,0,88,0.2,0,1 +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,48527,35517,11905,4588,220,3.1,4,2,96,77777,9,999999999,25,0.09,0,88,0.2,0,1 +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,65277,39337,17890,7220,170,2.6,4,3,96,77777,9,999999999,25,0.09,0,88,0.2,0,1 +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,80279,40504,17239,7229,90,3.1,2,1,96,77777,9,999999999,25,0.09,0,88,0.2,0,1 +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,95195,44551,32397,12884,40,2.1,5,3,96,77777,9,999999999,26,0.09,0,88,0.2,0,1 +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,8.3,26,83800,1236,1323,419,730,463,297,87617,35481,35863,14097,350,2.6,7,7,96,9144,9,999999999,26,0.09,0,88,0.2,0,1 +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,99404,43515,25103,10279,30,2.1,9,4,96,77777,9,999999999,26,0.09,0,88,0.2,0,1 +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,102587,48936,34480,13591,60,5.2,9,6,80,9144,9,999999999,26,0.09,0,88,0.2,0,1 +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,51973,10253,41150,15339,50,5.2,9,9,64,4572,9,999999999,26,0.09,0,88,0.2,0.5,1 +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,76,83900,892,1323,386,242,60,201,28351,4095,23667,9360,260,7.2,10,9,19.2,2591,9,999999999,27,0.09,0,88,0.2,1,1 +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,31395,3047,29364,9590,330,2.6,10,9,24,2591,9,999999999,27,0.09,0,88,0.2,0.8,1 +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,8220,0,8287,3396,220,4.1,10,10,24,2743,9,999999999,27,0.09,0,88,0.2,0.3,1 +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,14.4,70,84000,197,1323,399,29,0,29,2817,0,2838,1107,280,3.6,10,10,72,2896,9,999999999,27,0.09,0,88,0.2,0,1 +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,76,84100,13,474,386,2,1,2,0,0,0,0,240,4.6,10,9,32,2896,9,999999999,27,0.09,0,88,0.2,0,1 +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,4267,9,999999999,28,0.09,0,88,0.2,0,1 +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,78,84200,0,0,362,0,0,0,0,0,0,0,170,3.1,6,5,32,4267,9,999999999,28,0.09,0,88,0.2,0,1 +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,77777,9,999999999,28,0.09,0,88,0.2,0,1 +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,7620,9,999999999,28,0.09,0,88,0.2,0,1 +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,77777,9,999999999,28,0.091,0,88,0.2,0,1 +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,77777,9,999999999,28,0.091,0,88,0.2,0,1 +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,77777,9,999999999,29,0.091,0,88,0.2,0,1 +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,7620,9,999999999,29,0.091,0,88,0.2,0,1 +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,5486,9,999999999,29,0.091,0,88,0.2,0,1 +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,6059,0,4420,1314,210,2.1,8,3,96,77777,9,999999999,29,0.091,0,88,0.2,0,1 +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,13208,5214,8640,3013,190,1.5,9,7,96,8230,9,999999999,29,0.091,0,88,0.2,0,1 +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,32285,11031,24623,8270,350,3.1,9,8,96,4267,9,999999999,29,0.091,0,88,0.2,0,1 +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,72178,44749,19525,7813,50,2.6,7,2,96,77777,9,999999999,29,0.091,0,88,0.2,0,1 +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,90778,48111,25574,10404,30,3.1,5,3,96,77777,9,999999999,28,0.091,0,88,0.2,0,1 +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,93690,42117,37210,14466,30,2.6,6,5,96,7620,9,999999999,28,0.091,0,88,0.2,0,1 +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,84481,30381,44005,16624,360,3.1,8,8,96,4267,9,999999999,28,0.091,0,88,0.2,0,1 +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,10.6,30,84000,1240,1323,423,626,363,285,75323,26915,34499,13658,10,4.6,7,7,96,4267,9,999999999,28,0.091,0,88,0.2,0,1 +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,48340,175,48443,17663,360,4.6,9,9,96,4267,9,999999999,28,0.091,0,88,0.2,0,1 +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,59669,22636,32022,12634,360,5.2,7,7,80,4267,9,999999999,28,0.091,0,88,0.2,0,1 +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,45709,4926,41962,14180,310,3.1,9,9,80,4267,9,999999999,28,0.091,0,88,0.2,0,1 +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,35215,5216,32008,10002,220,3.6,10,9,96,4267,9,999999999,28,0.091,0,88,0.2,0,1 +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,9465,0,9541,3766,300,6.2,10,10,80,4267,9,999999999,28,0.091,0,88,0.2,0,1 +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,5361,70,4928,1530,310,6.7,10,9,88,3962,9,999999999,27,0.091,0,88,0.2,0,1 +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,3962,9,999999999,27,0.091,0,88,0.2,0,1 +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,4267,9,999999999,27,0.091,0,88,0.2,0,1 +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,4267,9,999999999,27,0.091,0,88,0.2,0,1 +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,4267,9,999999999,27,0.091,0,88,0.2,0,1 +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,3962,9,999999999,27,0.091,0,88,0.2,0,1 +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,11.1,57,84000,0,0,376,0,0,0,0,0,0,0,180,2.1,9,8,32,3962,9,999999999,27,0.094,0,88,0.2,0,1 +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,3962,9,999999999,27,0.094,0,88,0.2,0,1 +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,3353,9,999999999,26,0.094,0,88,0.2,0,1 +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,9,9,32,3658,9,999999999,26,0.094,0,88,0.2,0,1 +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,3962,9,999999999,26,0.094,0,88,0.2,0,1 +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,3512,0,3179,1005,200,2.1,9,9,96,3962,9,999999999,26,0.094,0,88,0.2,0,1 +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,12.8,63,84200,399,1323,386,128,33,118,14158,1715,13108,4172,180,2.1,10,9,96,3658,9,999999999,27,0.094,0,88,0.2,0,1 +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,29089,5716,25341,8401,220,2.1,10,9,96,2896,9,999999999,27,0.094,0,88,0.2,0,1 +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,38895,8984,30860,11350,350,5.2,10,9,96,2896,9,999999999,27,0.094,0,88,0.2,0,1 +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,30633,0,30934,13305,10,5.7,10,10,96,4267,9,999999999,27,0.094,0,88,0.2,0,1 +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,58353,13398,41315,15711,320,4.1,10,9,64,4267,9,999999999,27,0.094,0,88,0.2,0,1 +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,82683,25425,50526,18407,10,3.6,9,9,48,4572,9,999999999,27,0.094,0,88,0.2,0,1 +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,67597,12482,52438,18889,320,3.1,8,6,48,7620,9,999999999,27,0.094,0,88,0.2,2.5,1 +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,28397,0,28689,12913,280,9.3,10,10,32,1006,9,999999999,28,0.094,0,88,0.2,3.6,1 +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,25132,0,25381,11525,310,9.3,10,10,9.6,1036,9,999999999,28,0.094,0,88,0.2,3.3,1 +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,90,84300,889,1323,382,198,0,198,20420,0,20613,9234,340,7.7,10,10,6.4,1067,9,999999999,28,0.094,0,88,0.2,0.8,1 +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,14780,0,14910,6390,360,7.2,10,10,12.8,1067,9,999999999,28,0.094,0,88,0.2,3.8,1 +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,13.9,93,84500,439,1323,372,87,0,87,8639,0,8709,3511,360,3.6,10,10,9.6,1981,9,999999999,28,0.094,0,88,0.2,0,1 +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,14.4,96,84500,192,1323,373,22,0,22,2136,0,2152,868,10,3.6,10,10,6.4,152,9,999999999,28,0.094,0,88,0.2,2.8,1 +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,14.4,96,84600,11,430,362,1,2,1,0,0,0,0,50,3.6,10,9,11.2,152,9,999999999,29,0.094,0,88,0.2,0,1 +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,2743,9,999999999,29,0.094,0,88,0.2,0.8,1 +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,29,0.094,0,88,0.2,0,1 +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,29,0.094,0,88,0.2,0,1 +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,792,9,999999999,29,0.094,0,88,0.2,0.3,1 +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,29,0.095,0,88,0.2,0,1 +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,29,0.095,0,88,0.2,0,1 +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,30,0.095,0,88,0.2,1,1 +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,30,0.095,0,88,0.2,0.3,1 +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,30,0.095,0,88,0.2,0,1 +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,2324,0,2341,883,60,2.6,10,10,9.6,427,9,999999999,29,0.095,0,88,0.2,0.5,1 +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,4458,0,4493,1947,60,2.6,10,10,9.6,152,9,999999999,29,0.095,0,88,0.2,0.3,1 +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,8696,0,8771,4011,50,3.1,10,10,12.8,183,9,999999999,29,0.095,0,88,0.2,0,1 +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,18550,0,18722,8409,60,2.6,10,10,19.2,488,9,999999999,28,0.095,0,88,0.2,0,1 +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,19773,0,19966,9415,60,2.6,10,10,9.6,305,9,999999999,28,0.095,0,88,0.2,0,1 +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,19131,0,19325,9266,50,2.6,10,10,4,183,9,999999999,28,0.095,0,88,0.2,0,1 +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,12.8,87,84600,1232,1323,371,276,0,276,29339,0,29642,13297,60,3.6,10,10,11.2,457,9,999999999,27,0.095,0,88,0.2,0,1 +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,29470,0,29775,13347,20,3.6,10,10,24,488,9,999999999,27,0.095,0,88,0.2,0,1 +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,27728,0,28010,12642,60,2.6,10,10,24,488,9,999999999,26,0.095,0,88,0.2,0,1 +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,66833,17097,50568,17538,60,3.6,10,7,24,853,9,999999999,26,0.095,0,88,0.2,0,1 +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,19419,0,19601,8853,30,2.6,10,10,24,671,9,999999999,26,0.095,0,88,0.2,0,1 +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,13492,0,13610,5925,50,2.6,10,10,16,853,9,999999999,25,0.095,0,88,0.2,0,1 +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,7353,0,7412,3076,70,2.6,10,10,24,427,9,999999999,25,0.095,0,88,0.2,0,1 +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,4639,0,4083,1304,90,2.1,9,9,32,1067,9,999999999,24,0.095,0,88,0.2,0,1 +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,12.2,83,84500,11,430,352,1,0,1,0,0,0,0,120,1.5,8,8,32,1676,9,999999999,24,0.095,0,88,0.2,0,1 +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,12.8,87,84600,0,0,347,0,0,0,0,0,0,0,80,2.1,7,7,32,1067,9,999999999,24,0.095,0,88,0.2,0,1 +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,1067,9,999999999,23,0.095,0,88,0.2,0,1 +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,914,9,999999999,23,0.095,0,88,0.2,0,1 +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,640,9,999999999,23,0.095,0,88,0.2,0,1 +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,3353,9,999999999,22,0.096,0,88,0.2,0,1 +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,914,9,999999999,22,0.096,0,88,0.2,0,1 +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,1006,9,999999999,21,0.096,0,88,0.2,0,1 +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,10,10,24,1097,9,999999999,21,0.096,0,88,0.2,0,1 +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,12.2,83,84300,2,188,370,0,0,0,0,0,0,0,0,0,10,10,24,1097,9,999999999,21,0.096,0,88,0.2,0,1 +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,12.8,87,84300,147,1324,371,25,0,25,2421,0,2438,908,360,1.5,10,10,24,1219,9,999999999,21,0.096,0,88,0.2,0,1 +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,6236,0,6286,2594,0,0,10,10,24,1189,9,999999999,21,0.096,0,88,0.2,0,1 +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,32212,5288,29095,9039,10,2.1,10,9,24,1219,9,999999999,21,0.096,0,88,0.2,0,1 +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,18347,0,18516,8324,10,1.5,10,10,24,1158,9,999999999,21,0.096,0,88,0.2,0,1 +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,23543,0,23773,10856,40,3.1,10,10,24,853,9,999999999,22,0.096,0,88,0.2,0,1 +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,11.1,57,84300,1161,1324,395,257,0,257,27190,0,27465,12412,50,3.1,10,10,24,1372,9,999999999,22,0.096,0,88,0.2,0,1 +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,29250,0,29552,13255,80,3.1,10,10,24,1036,9,999999999,22,0.096,0,88,0.2,0,1 +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,29360,0,29663,13305,350,4.1,10,10,24,914,9,999999999,22,0.096,0,88,0.2,0,1 +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,27618,0,27900,12600,310,3.1,10,10,11.2,792,9,999999999,22,0.096,0,88,0.2,0,1 +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,24183,0,24422,11169,300,3.1,10,10,16,2134,9,999999999,23,0.096,0,88,0.2,0,1 +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,24177,0,24403,10472,270,3.1,10,10,48,3658,9,999999999,23,0.096,0,88,0.2,0,1 +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,16742,0,16889,6994,280,3.1,10,10,24,3658,9,999999999,23,0.096,0,88,0.2,0,1 +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,15798,4443,12824,4269,200,2.1,9,7,24,3658,9,999999999,23,0.096,0,88,0.2,0,1 +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,5767,29,5006,1530,190,2.1,9,9,24,3658,9,999999999,23,0.096,0,88,0.2,0,1 +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,10,9,32,3658,9,999999999,24,0.096,0,88,0.2,0,1 +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,3658,9,999999999,24,0.096,0,88,0.2,0,1 +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,9,9,32,3658,9,999999999,24,0.096,0,88,0.2,0,1 +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,11.7,81,84200,0,0,339,0,0,0,0,0,0,0,200,2.6,5,5,32,77777,9,999999999,24,0.096,0,88,0.2,0,1 +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,7620,9,999999999,25,0.096,0,88,0.2,0,1 +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,77777,9,999999999,25,0.098,0,88,0.2,0,1 +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,77777,9,999999999,25,0.098,0,88,0.2,0,1 +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,77777,9,999999999,25,0.098,0,88,0.2,0,1 +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,77777,9,999999999,25,0.098,0,88,0.2,0,1 +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,26,0.098,0,88,0.2,0,1 +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,3781,0,2640,844,190,1.5,8,8,16,4267,9,999999999,25,0.098,0,88,0.2,0,1 +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,11.7,81,84100,390,1324,346,110,71,89,12431,3126,10093,3397,200,2.1,7,7,16,4267,9,999999999,25,0.098,0,88,0.2,0,1 +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,41598,14591,33815,9594,220,3.1,8,8,16,4267,9,999999999,25,0.098,0,88,0.2,0,1 +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,11.1,57,84100,850,1324,354,550,693,105,67426,40893,12916,5302,260,2.6,2,2,24,77777,9,999999999,25,0.098,0,88,0.2,0,1 +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,91667,48409,16644,6983,60,2.1,3,3,32,77777,9,999999999,25,0.098,0,88,0.2,0,1 +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,116024,57016,23196,9570,300,2.6,4,4,32,77777,9,999999999,25,0.098,0,88,0.2,0,1 +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,96171,36872,51353,18568,300,3.1,6,6,24,7620,9,999999999,25,0.098,0,88,0.2,0,1 +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,11.7,43,84000,1234,1324,392,1002,810,246,121744,56687,30058,12120,120,3.1,7,6,19.2,7620,9,999999999,24,0.098,0,88,0.2,0,1 +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,49,83900,1175,1324,380,525,108,429,60665,9681,49921,17998,150,5.7,9,8,19.2,1524,9,999999999,24,0.098,0,88,0.2,34.5,1 +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,17410,0,17581,8473,150,6.2,10,10,0.4,183,9,999999999,24,0.098,0,88,0.2,12.4,1 +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,35561,7485,27978,10689,160,3.1,9,9,64,3048,9,999999999,24,0.098,0,88,0.2,0,1 +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,46930,32555,16640,6258,110,3.6,5,5,80,77777,9,999999999,24,0.098,0,88,0.2,0,1 +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,24459,6587,21587,5730,180,2.1,8,8,80,7620,9,999999999,24,0.098,0,88,0.2,0,1 +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,4749,0,3016,992,290,2.6,9,9,64,7620,9,999999999,24,0.098,0,88,0.2,0,1 +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,2591,9,999999999,23,0.098,0,88,0.2,0,1 +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,77777,9,999999999,23,0.098,0,88,0.2,0,1 +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,77777,9,999999999,23,0.098,0,88,0.2,0,1 +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,11.7,81,84000,0,0,326,0,0,0,0,0,0,0,150,2.6,1,1,32,77777,9,999999999,23,0.098,0,88,0.2,0,1 +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,77777,9,999999999,23,0.098,0,88,0.2,0,1 +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,77777,9,999999999,23,0.099,0,88,0.2,0,1 +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,77777,9,999999999,23,0.099,0,88,0.2,0,1 +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,77777,9,999999999,22,0.099,0,88,0.2,0,1 +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,77777,9,999999999,22,0.099,0,88,0.2,0,1 +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,89,83900,1,143,310,0,1,0,0,0,0,0,120,1.5,3,1,80,77777,9,999999999,22,0.099,0,88,0.2,0,1 +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,6157,0,3367,1033,250,1,0,0,104,77777,9,999999999,22,0.099,0,88,0.2,0,1 +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,26078,20129,7120,2513,0,0,1,0,96,77777,9,999999999,22,0.099,0,88,0.2,0,1 +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,56,84000,629,1324,342,389,638,85,46656,34765,10225,3953,150,1.5,2,1,96,77777,9,999999999,22,0.099,0,88,0.2,0,1 +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,47,84000,848,1324,349,622,747,143,74509,48364,17201,6932,160,1.5,6,0,96,77777,9,999999999,22,0.099,0,88,0.2,0,1 +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,81969,43124,23674,9688,220,1.5,7,2,96,77777,9,999999999,22,0.099,0,88,0.2,0,1 +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,90699,39730,43240,16204,80,2.6,5,3,80,77777,9,999999999,22,0.099,0,88,0.2,0,1 +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,8.9,36,84000,1227,1324,393,792,593,242,96395,42362,29618,11945,50,2.6,7,7,80,9144,9,999999999,21,0.099,0,88,0.2,0,1 +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,43939,7801,31896,12755,80,3.1,9,9,80,9144,9,999999999,21,0.099,0,88,0.2,0,1 +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,8.9,36,83900,1173,1324,408,557,203,377,65042,17320,44317,16545,240,6.2,10,9,48,9144,9,999999999,21,0.099,0,88,0.2,0,1 +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,11.7,81,84200,1053,1324,369,232,0,232,24319,0,24558,11196,350,8.8,10,10,32,1981,9,999999999,21,0.099,0,88,0.2,0.5,1 +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,9.4,50,84100,881,1324,393,235,0,235,24315,0,24541,10480,50,4.1,10,10,64,3658,9,999999999,21,0.099,0,88,0.2,0,1 +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,27641,11004,18278,6746,130,4.6,9,8,64,4572,9,999999999,21,0.099,0,88,0.2,0,1 +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,51,84000,428,1324,372,203,147,155,22171,9524,17010,5119,170,3.1,9,7,96,7620,9,999999999,21,0.099,0,88,0.2,0,1 +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,11.1,57,84000,180,1324,376,54,22,51,5916,93,5606,1641,140,2.1,9,8,96,7620,9,999999999,21,0.099,0,88,0.2,0,1 +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,7620,9,999999999,21,0.099,0,88,0.2,0,1 +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,7620,9,999999999,21,0.099,0,88,0.2,0,1 +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,7620,9,999999999,20,0.099,0,88,0.2,0,1 +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,11.7,81,84100,0,0,334,0,0,0,0,0,0,0,190,2.1,8,3,32,77777,9,999999999,20,0.099,0,88,0.2,0,1 +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,77777,9,999999999,20,0.099,0,88,0.2,0,1 +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,77777,9,999999999,20,0.101,0,88,0.2,0,1 +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,3,1,32,77777,9,999999999,20,0.101,0,88,0.2,0,1 +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,83,84200,0,0,309,0,0,0,0,0,0,0,230,2.1,0,0,32,77777,9,999999999,20,0.101,0,88,0.2,0,1 +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,83,84200,0,0,315,0,0,0,0,0,0,0,210,1.5,1,1,40,77777,9,999999999,20,0.101,0,88,0.2,0,1 +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,86,84200,1,121,312,0,4,0,0,0,0,0,190,1.5,1,1,96,77777,9,999999999,20,0.101,0,88,0.2,0,1 +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,6582,0,2843,892,210,2.1,0,0,96,77777,9,999999999,20,0.101,0,88,0.2,0,1 +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,27640,21133,5706,2043,190,2.1,0,0,96,77777,9,999999999,19,0.101,0,88,0.2,0,1 +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,51,84300,627,1324,344,434,774,68,52914,39767,8311,3239,220,1.5,1,0,96,77777,9,999999999,19,0.101,0,88,0.2,0,1 +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,73366,47228,15409,6255,300,1,1,1,96,77777,9,999999999,19,0.101,0,88,0.2,0,1 +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,41,84300,1026,1324,366,759,858,95,81416,88397,13012,2851,100,2.1,1,1,96,77777,9,999999999,19,0.101,0,88,0.2,0,1 +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,108018,51540,17764,7428,20,3.1,2,2,88,77777,9,999999999,19,0.101,0,88,0.2,0,1 +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,83895,34179,31534,12622,30,4.6,5,5,96,77777,9,999999999,19,0.101,0,88,0.2,0,1 +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,121988,56832,24247,9959,50,4.1,4,4,96,77777,9,999999999,18,0.101,0,88,0.2,0,1 +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,86450,38354,32199,12818,50,4.1,5,5,96,77777,9,999999999,18,0.101,0,88,0.2,0,1 +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,81744,42294,23331,9583,30,3.6,5,5,96,77777,9,999999999,18,0.101,0,88,0.2,0,1 +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,73670,46381,18195,7361,50,3.1,4,4,96,77777,9,999999999,18,0.101,0,88,0.2,0,1 +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,55280,41171,9401,3694,350,2.1,1,1,96,77777,9,999999999,18,0.101,0,88,0.2,0,1 +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,29995,23856,6322,2297,350,3.1,1,1,96,77777,9,999999999,17,0.101,0,88,0.2,0,1 +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,37,84300,177,1324,368,82,389,30,9374,0,3436,1107,0,0,0,0,96,77777,9,999999999,17,0.101,0,88,0.2,0,1 +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,77777,9,999999999,17,0.101,0,88,0.2,0,1 +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,77777,9,999999999,17,0.101,0,88,0.2,0,1 +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,3,3,32,77777,9,999999999,17,0.101,0,88,0.2,0,1 +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,77777,9,999999999,17,0.101,0,88,0.2,0,1 +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,77777,9,999999999,16,0.101,0,88,0.2,0,1 +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,77777,9,999999999,16,0.102,0,88,0.2,0,1 +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,77777,9,999999999,16,0.102,0,88,0.2,0,1 +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,77777,9,999999999,16,0.102,0,88,0.2,0,1 +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,10.6,75,84300,0,0,319,0,0,0,0,0,0,0,190,2.1,0,0,40,77777,9,999999999,16,0.102,0,88,0.2,0,1 +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,77777,9,999999999,16,0.102,0,88,0.2,0,1 +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,65,84400,135,1325,326,50,191,30,5577,0,3355,1018,190,2.6,0,0,96,77777,9,999999999,16,0.102,0,88,0.2,0,1 +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,54,84400,382,1325,338,218,536,63,25289,19761,7328,2567,200,3.1,0,0,112,77777,9,999999999,16,0.102,0,88,0.2,0,1 +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,50402,38782,10877,4181,200,2.1,0,0,104,77777,9,999999999,16,0.102,0,88,0.2,0,1 +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,37,84400,844,1325,368,620,793,114,75500,48285,13932,5687,160,2.1,0,0,104,77777,9,999999999,16,0.102,0,88,0.2,0,1 +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,97295,53317,16301,6834,90,1.5,0,0,104,77777,9,999999999,16,0.102,0,88,0.2,0,1 +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,95210,89573,18488,4948,0,0,0,0,104,77777,9,999999999,16,0.102,0,88,0.2,0,1 +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,6.7,23,84400,1224,1325,386,968,888,147,101700,91016,18812,6912,100,5.2,0,0,104,77777,9,999999999,16,0.102,0,88,0.2,0,1 +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,102001,90966,18904,7150,80,3.1,0,0,104,77777,9,999999999,16,0.102,0,88,0.2,0,1 +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,95116,88348,18540,5294,70,4.1,1,0,104,77777,9,999999999,16,0.102,0,88,0.2,0,1 +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,93808,51500,20174,8374,160,3.6,1,1,104,77777,9,999999999,16,0.102,0,88,0.2,0,1 +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,75405,47867,14374,5898,70,4.1,1,1,96,77777,9,999999999,16,0.102,0,88,0.2,0,1 +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,51595,39470,11314,4397,70,3.6,1,1,96,77777,9,999999999,16,0.102,0,88,0.2,0,1 +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,6.1,22,84200,422,1325,392,237,524,69,27650,23022,8072,2870,100,4.1,1,1,96,77777,9,999999999,16,0.102,0,88,0.2,0,1 +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,7189,0,4167,1296,100,3.1,1,1,96,77777,9,999999999,16,0.102,0,88,0.2,0,1 +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,8.9,36,84300,6,320,376,0,4,0,0,0,0,0,120,3.6,2,2,48,77777,9,999999999,16,0.102,0,88,0.2,0,1 +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,77777,9,999999999,16,0.102,0,88,0.2,0,1 +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,77777,9,999999999,16,0.102,0,88,0.2,0,1 +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,77777,9,999999999,16,0.102,0,88,0.2,0,1 +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,77777,9,999999999,16,0.102,0,88,0.2,0,1 +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,77777,9,999999999,16,0.104,0,88,0.2,0,1 +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,58,84300,0,0,333,0,0,0,0,0,0,0,210,2.6,0,0,32,77777,9,999999999,16,0.104,0,88,0.2,0,1 +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,65,84300,0,0,326,0,0,0,0,0,0,0,190,2.1,0,0,32,77777,9,999999999,16,0.104,0,88,0.2,0,1 +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,77777,9,999999999,16,0.104,0,88,0.2,0,1 +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,77777,9,999999999,16,0.104,0,88,0.2,0,1 +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,65,84300,131,1325,326,48,174,30,5343,0,3348,1010,200,2.6,1,0,104,77777,9,999999999,16,0.104,0,88,0.2,0,1 +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,10,53,84300,379,1325,341,213,507,68,24539,19302,7857,2724,220,3.1,2,0,112,77777,9,999999999,16,0.104,0,88,0.2,0,1 +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,50020,39344,10991,4214,200,3.1,0,0,104,77777,9,999999999,16,0.104,0,88,0.2,0,1 +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,75219,48769,14047,5725,190,2.6,0,0,96,77777,9,999999999,16,0.104,0,88,0.2,0,1 +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,97027,53971,16422,6877,200,1.5,0,0,104,77777,9,999999999,16,0.104,0,88,0.2,0,1 +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,94522,88982,18605,4925,60,2.1,0,0,96,77777,9,999999999,16,0.104,0,88,0.2,0,1 +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,13,84200,1222,1325,388,967,886,149,100556,90019,19031,6898,60,3.6,0,0,104,77777,9,999999999,16,0.104,0,88,0.2,0,1 +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,97125,86332,18771,7047,30,4.6,1,1,104,77777,9,999999999,16,0.104,0,88,0.2,0,1 +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,95451,89064,18407,5233,130,1.5,1,1,104,77777,9,999999999,16,0.104,0,88,0.2,0,1 +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,91506,50809,19048,7925,360,4.6,2,2,104,77777,9,999999999,16,0.104,0,88,0.2,0,1 +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,71411,46757,23089,9053,40,3.6,3,3,112,77777,9,999999999,16,0.104,0,88,0.2,0,1 +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,50057,39506,15499,5831,30,4.1,2,2,112,77777,9,999999999,16,0.104,0,88,0.2,0,1 +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,23801,18246,12002,3989,30,2.1,5,3,112,77777,9,999999999,16,0.104,0,88,0.2,0,1 +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,7100,191,4784,1433,30,2.6,6,2,112,77777,9,999999999,16,0.104,0,88,0.2,0,1 +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,43,84000,6,298,372,0,2,0,0,0,0,0,130,2.6,3,3,64,77777,9,999999999,15,0.104,0,88,0.2,0,1 +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,77777,9,999999999,15,0.104,0,88,0.2,0,1 +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,77777,9,999999999,15,0.104,0,88,0.2,0,1 +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,77777,9,999999999,15,0.104,0,88,0.2,0,1 +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,77777,9,999999999,15,0.104,0,88,0.2,0,1 +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,77777,9,999999999,15,0.106,0,88,0.2,0,1 +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,77777,9,999999999,15,0.106,0,88,0.2,0,1 +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,5.6,39,84000,0,0,336,0,0,0,0,0,0,0,180,3.1,1,0,32,77777,9,999999999,15,0.106,0,88,0.2,0,1 +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,77777,9,999999999,15,0.106,0,88,0.2,0,1 +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,77777,9,999999999,15,0.106,0,88,0.2,0,1 +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,5146,0,3140,952,200,3.1,2,1,112,77777,9,999999999,15,0.106,0,88,0.2,0,1 +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,23211,18127,7643,2652,190,4.1,3,1,96,77777,9,999999999,16,0.106,0,88,0.2,0,1 +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,48787,38171,10435,4009,210,3.6,1,1,96,77777,9,999999999,16,0.106,0,88,0.2,0,1 +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,58093,35430,13254,5411,210,2.6,1,1,104,77777,9,999999999,16,0.106,0,88,0.2,0,1 +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,82623,87477,16344,3096,360,2.6,1,0,104,77777,9,999999999,16,0.106,0,88,0.2,0,1 +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,85368,38682,35475,13859,20,4.1,3,3,96,77777,9,999999999,16,0.106,0,88,0.2,0,1 +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,118869,59182,34492,13609,360,2.6,5,5,96,77777,9,999999999,17,0.106,0,88,0.2,0.8,1 +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,85700,25772,56861,19802,210,3.1,9,9,64,2743,9,999999999,17,0.106,0,88,0.2,0.3,1 +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,82437,22151,60867,20174,90,3.1,7,7,96,2438,9,999999999,17,0.106,0,88,0.2,0,1 +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,6.1,22,84000,1045,1325,411,663,422,329,76900,36047,38398,14491,120,3.1,6,6,80,7620,9,999999999,17,0.106,0,88,0.2,0,1 +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,25736,1408,24337,9472,50,6.2,9,9,96,2743,9,999999999,17,0.106,0,88,0.2,0,1 +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,27623,8769,20903,7444,190,3.6,9,8,80,2743,9,999999999,18,0.106,0,88,0.2,0,1 +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,18946,6946,15048,4671,200,5.2,9,7,80,2896,9,999999999,18,0.106,0,88,0.2,0,1 +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,4975,0,4768,1421,260,2.1,9,8,80,3048,9,999999999,18,0.106,0,88,0.2,0,1 +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,4267,9,999999999,18,0.106,0,88,0.2,0,1 +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,77777,9,999999999,18,0.106,0,88,0.2,0,1 +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,77777,9,999999999,19,0.106,0,88,0.2,0,1 +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,9.4,50,84200,0,0,347,0,0,0,0,0,0,0,190,4.1,1,1,32,77777,9,999999999,19,0.106,0,88,0.2,0,1 +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,56,84200,0,0,342,0,0,0,0,0,0,0,230,2.1,1,1,32,77777,9,999999999,19,0.106,0,88,0.2,0,1 +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,58,84200,0,0,340,0,0,0,0,0,0,0,160,2.6,1,1,32,77777,9,999999999,19,0.107,0,88,0.2,0,1 +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,77777,9,999999999,19,0.107,0,88,0.2,0,1 +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,77777,9,999999999,20,0.107,0,88,0.2,0,1 +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,77777,9,999999999,20,0.107,0,88,0.2,0,1 +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,77777,9,999999999,20,0.107,0,88,0.2,0,1 +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,65,84300,125,1326,326,48,199,29,5335,0,3231,969,180,2.1,3,0,96,77777,9,999999999,20,0.107,0,88,0.2,0,1 +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,25363,19013,6444,2274,350,2.6,0,0,96,77777,9,999999999,20,0.107,0,88,0.2,0,1 +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,50736,38619,9525,3680,340,3.1,0,0,96,77777,9,999999999,20,0.107,0,88,0.2,0,1 +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,75859,47662,12088,4956,360,2.6,0,0,96,77777,9,999999999,20,0.107,0,88,0.2,0,1 +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,11.7,43,84400,1018,1326,367,781,869,113,83694,89707,15356,3016,320,2.6,0,0,96,77777,9,999999999,19,0.107,0,88,0.2,0,1 +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,91806,88191,15825,4449,140,1.5,1,1,80,77777,9,999999999,19,0.107,0,88,0.2,0,1 +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,107878,49395,29775,12010,150,2.1,3,3,80,77777,9,999999999,19,0.107,0,88,0.2,0,1 +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,100994,91638,17022,6449,190,3.1,2,2,80,77777,9,999999999,19,0.107,0,88,0.2,0,1 +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,104433,49997,20583,8548,50,2.1,3,3,96,77777,9,999999999,19,0.107,0,88,0.2,0,1 +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,80453,40902,34819,13438,110,2.6,5,4,96,77777,9,999999999,19,0.107,0,88,0.2,0,1 +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,47181,23188,22818,8956,130,4.6,5,4,96,77777,9,999999999,19,0.107,0,88,0.2,0,1 +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,42534,23017,27624,8978,210,4.6,5,4,96,77777,9,999999999,19,0.107,0,88,0.2,0,1 +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,22466,16837,7937,2813,180,4.6,6,3,96,77777,9,999999999,19,0.107,0,88,0.2,0,1 +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,6925,0,4962,1451,180,4.1,7,2,80,77777,9,999999999,19,0.107,0,88,0.2,0,1 +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,77777,9,999999999,18,0.107,0,88,0.2,0,1 +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,77777,9,999999999,18,0.107,0,88,0.2,0,1 +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,77777,9,999999999,18,0.107,0,88,0.2,0,1 +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,77777,9,999999999,18,0.107,0,88,0.2,0,1 +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,77777,9,999999999,18,0.107,0,88,0.2,0,1 +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,77777,9,999999999,22,0.079,0,88,0.2,0,1 +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,11,75,83800,0,0,360,0,0,0,0,0,0,0,200,4.7,5,4,16,77777,9,999999999,23,0.079,0,88,0.2,0,1 +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,4,3,16,77777,9,999999999,23,0.079,0,88,0.2,0.3,1 +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,77777,9,999999999,24,0.079,0,88,0.2,0,1 +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,6096,9,999999999,24,0.079,0,88,0.2,0,1 +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,4267,9,999999999,25,0.079,0,88,0.2,0,1 +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,20025,12114,12486,3885,290,2.1,8,7,16,4267,9,999999999,25,0.079,0,88,0.2,0,1 +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,16.1,78,84400,612,1326,382,131,0,131,13182,0,13297,5604,300,4.1,8,8,16,4267,9,999999999,26,0.079,0,88,0.2,0,1 +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,24071,408,23730,9163,320,4.1,9,7,16,6706,9,999999999,27,0.079,0,88,0.2,0,1 +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,75756,35076,35207,13510,320,4.1,7,6,16,6706,9,999999999,27,0.079,0,88,0.2,0,1 +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,36,84100,1145,1326,400,828,681,238,99739,48880,28826,11637,20,4.6,7,7,16,77777,9,999999999,28,0.079,0,88,0.2,0,1 +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,12,39,84700,1216,1326,400,947,866,151,100593,89639,19360,6735,40,3.6,6,5,16.1,77777,9,999999999,28,0.079,0,88,0.2,0,1 +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,9,30,84700,1221,1326,401,932,815,179,115911,53505,22370,9235,30,3.6,5,5,16.1,77777,9,999999999,29,0.079,0,88,0.2,0,1 +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,10,32,84700,1161,1326,406,869,688,266,104020,51074,32024,12756,50,2.1,7,6,16.1,77777,9,999999999,29,0.079,0,88,0.2,0,1 +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,11,33,84700,1039,1326,424,357,95,282,41784,7391,33200,12958,70,3.6,9,8,16.1,3000,9,999999999,30,0.079,0,88,0.2,0.3,1 +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,11,33,84600,865,1326,424,101,0,101,10427,0,10524,5153,90,4.1,10,8,16.1,3000,9,999999999,31,0.079,0,88,0.2,0,1 +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,20263,823,19672,7087,310,6.7,8,8,16,1500,9,999999999,31,0.079,0,88,0.2,0,1 +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,15,78,84400,407,1326,376,256,510,99,28772,23239,11169,3756,340,9.3,9,8,16.1,3000,9,999999999,32,0.079,0,88,0.2,0,1 +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,15,73,84500,157,1326,371,70,415,21,8133,0,2443,802,290,3.6,8,6,16.1,4200,9,999999999,32,0.079,0,88,0.2,0,1 +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,16,88,84500,3,232,372,0,0,0,0,0,0,0,130,1.5,9,8,16.1,2100,9,999999999,33,0.079,0,88,0.2,0,1 +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,16,88,84400,0,0,366,0,0,0,0,0,0,0,150,3.1,9,7,16.1,6000,9,999999999,33,0.079,0,88,0.2,0,1 +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,16,83,84500,0,0,385,0,0,0,0,0,0,0,200,5.7,9,9,16.1,2100,9,999999999,34,0.079,0,88,0.2,0,1 +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,84,84300,0,0,388,0,0,0,0,0,0,0,290,2.6,10,10,16,1800,9,999999999,34,0.079,0,88,0.2,0,1 +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,14,73,84400,0,0,374,0,0,0,0,0,0,0,190,3.6,9,8,16.1,1500,9,999999999,33,0.079,0,88,0.2,0,1 +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,14,73,84300,0,0,382,0,0,0,0,0,0,0,210,5.1,9,9,16.1,2100,9,999999999,32,0.079,0,88,0.2,0,1 +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,3353,9,999999999,31,0.079,0,88,0.2,0,1 +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,87,84200,0,0,351,0,0,0,0,0,0,0,180,4.1,8,4,16,6096,9,999999999,30,0.079,0,88,0.2,3.6,1 +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,87,84200,0,0,353,0,0,0,0,0,0,0,140,3.1,9,5,16,6096,9,999999999,29,0.079,0,88,0.2,0,1 +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,77777,9,999999999,28,0.079,0,88,0.2,0,1 +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,77777,9,999999999,27,0.079,0,88,0.2,0,1 +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,15.6,76,84500,365,1326,359,238,578,79,26896,20947,8958,3023,210,1.5,2,2,16,77777,9,999999999,26,0.079,0,88,0.2,0,1 +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,61,84600,610,1326,367,434,782,73,52307,37743,8822,3421,220,4.1,1,1,16,77777,9,999999999,25,0.079,0,88,0.2,0,1 +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,56,84700,831,1326,384,632,848,99,77394,46891,12164,4991,250,3.1,3,3,16,77777,9,999999999,24,0.079,0,88,0.2,0,1 +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,86856,96740,11905,2635,280,2.6,3,3,16,77777,9,999999999,23,0.079,0,88,0.2,0,1 +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,98101,98677,11224,3458,310,4.1,4,4,16,77777,9,999999999,22,0.079,0,88,0.2,0,1 +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,105607,101089,11064,4398,10,3.6,5,5,16,77777,9,999999999,23,0.079,0,88,0.2,0,1 +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,104454,97494,13784,5389,330,5.2,7,6,16,77777,9,999999999,25,0.079,0,88,0.2,0,1 +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,15,40,84700,1159,1326,417,904,759,239,108728,51676,28906,11702,310,7.2,6,4,16,6706,9,999999999,26,0.079,0,88,0.2,0,1 +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,13280,0,13410,6667,140,7.7,9,8,8,2134,9,999999999,27,0.079,0,88,0.2,0,1 +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,11017,0,11120,5420,90,3.6,8,8,16,2744,9,999999999,29,0.079,0,88,0.2,0,1 +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,7065,0,7127,3361,170,2.6,7,7,16,3353,9,999999999,30,0.079,0,88,0.2,0,1 +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,9690,0,9767,3713,180,4.1,3,3,16,6096,9,999999999,31,0.079,0,88,0.2,0,1 +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,7512,0,4916,1422,180,7.2,4,4,16,6096,9,999999999,33,0.079,0,88,0.2,0,1 +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,77777,9,999999999,34,0.079,0,88,0.2,0,1 +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,77777,9,999999999,35,0.079,0,88,0.2,0,1 +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,77777,9,999999999,37,0.079,0,88,0.2,0,1 +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,13.3,65,84000,0,0,345,0,0,0,0,0,0,0,220,6.2,0,0,16,77777,9,999999999,38,0.079,0,88,0.2,0,1 +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,77777,9,999999999,37,0.079,0,88,0.2,0,1 +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,77777,9,999999999,36,0.08,0,88,0.2,0,1 +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,77777,9,999999999,35,0.08,0,88,0.2,0,1 +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,77777,9,999999999,34,0.08,0,88,0.2,0,1 +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,77777,9,999999999,34,0.08,0,88,0.2,0,1 +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,77777,9,999999999,33,0.08,0,88,0.2,0,1 +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,77777,9,999999999,32,0.08,0,88,0.2,0,1 +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,27772,20342,6524,2289,270,4.6,0,0,16,77777,9,999999999,31,0.08,0,88,0.2,0,1 +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,54044,39765,8709,3374,310,3.1,0,0,16,77777,9,999999999,30,0.08,0,88,0.2,0,1 +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,68833,91727,10807,1897,280,2.6,0,0,16,77777,9,999999999,29,0.08,0,88,0.2,0,1 +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,83566,93560,11242,2534,340,2.1,3,3,16,77777,9,999999999,28,0.08,0,88,0.2,0,1 +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,94489,93307,13611,3954,30,1.5,3,3,16,77777,9,999999999,27,0.08,0,88,0.2,0,1 +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,10.6,30,84500,1212,1327,408,947,926,99,101502,95867,13031,4992,90,2.1,3,3,16,77777,9,999999999,28,0.08,0,88,0.2,0,1 +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,102261,95089,14622,5588,170,3.1,3,3,16,77777,9,999999999,29,0.08,0,88,0.2,0,1 +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,26,84500,1157,1327,416,904,921,100,96765,95147,13304,4099,130,1.5,3,3,16,77777,9,999999999,31,0.08,0,88,0.2,0,1 +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,86684,95643,11044,2629,80,4.1,3,3,16,77777,9,999999999,32,0.08,0,88,0.2,0,1 +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,68960,86870,12876,2120,60,2.1,3,3,16,77777,9,999999999,33,0.08,0,88,0.2,0,1 +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,48992,79670,10124,1504,140,2.1,5,5,16,77777,9,999999999,34,0.08,0,88,0.2,0,1 +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,26,84300,400,1327,419,249,673,46,29770,22879,5510,1995,0,0,4,4,16,77777,9,999999999,35,0.08,0,88,0.2,0,1 +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,7880,0,2437,794,150,3.6,4,4,16,77777,9,999999999,36,0.08,0,88,0.2,0,1 +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,77777,9,999999999,37,0.08,0,88,0.2,0,1 +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,77777,9,999999999,38,0.08,0,88,0.2,0,1 +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,77777,9,999999999,39,0.08,0,88,0.2,0,1 +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,11.1,42,83400,0,0,385,0,0,0,0,0,0,0,210,6.7,7,4,16,77777,9,999999999,40,0.08,0,88,0.2,0,1 +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,6096,9,999999999,39,0.08,0,88,0.2,0,1 +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,77777,9,999999999,39,0.08,0,88,0.2,0,1 +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,77777,9,999999999,38,0.08,0,88,0.2,0,1 +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,77777,9,999999999,37,0.08,0,88,0.2,0,1 +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,77777,9,999999999,37,0.08,0,88,0.2,0,1 +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,51,83300,0,0,344,0,0,0,0,0,0,0,230,4.6,0,0,16,77777,9,999999999,36,0.08,0,88,0.2,0,1 +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,11.1,57,83600,109,1294,342,0,0,0,0,0,0,0,250,4.6,0,0,16,77777,9,999999999,36,0.08,0,88,0.2,0,1 +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,27624,21507,7272,2515,330,4.6,0,0,16,77777,9,999999999,35,0.08,0,88,0.2,0,1 +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,48123,37161,13535,5056,290,3.6,3,3,16,77777,9,999999999,34,0.08,0,88,0.2,0,1 +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,74178,46100,12281,5026,350,4.6,3,3,16,77777,9,999999999,34,0.08,0,88,0.2,0,1 +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,80424,86797,14996,2927,360,6.7,5,5,16,77777,9,999999999,33,0.08,0,88,0.2,0,1 +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,100874,48877,24489,10063,20,7.2,5,5,16,77777,9,999999999,33,0.08,0,88,0.2,0,1 +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,13.9,37,84100,1210,1327,419,941,890,128,100985,92679,16617,5907,80,4.6,6,5,16,77777,9,999999999,33,0.08,0,88,0.2,0,1 +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,102671,95979,14145,5388,50,3.6,6,6,16,77777,9,999999999,33,0.08,0,88,0.2,0,1 +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,113966,54504,19371,8081,40,4.1,7,6,16,77777,9,999999999,33,0.08,0,88,0.2,0,1 +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,64368,24104,38424,14472,100,3.6,9,9,16,3353,9,999999999,33,0.08,0,88,0.2,0,1 +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,69265,43273,23908,9292,130,1.5,9,8,16,3658,9,999999999,33,0.08,0,88,0.2,0,1 +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,20665,1247,19850,7086,150,3.1,9,7,16,3658,9,999999999,33,0.08,0,88,0.2,0,1 +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,12.8,35,84100,396,1327,432,44,0,44,4358,0,4392,1913,130,4.1,8,8,16,3658,9,999999999,33,0.08,0,88,0.2,0,1 +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,6551,0,4601,1331,130,2.6,6,5,16,3658,9,999999999,33,0.08,0,88,0.2,0,1 +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,3658,9,999999999,33,0.08,0,88,0.2,0,1 +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,3658,9,999999999,33,0.08,0,88,0.2,0,1 +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,3658,9,999999999,33,0.08,0,88,0.2,0,1 +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,13.3,48,83900,0,0,405,0,0,0,0,0,0,0,220,7.7,8,8,16,3353,9,999999999,33,0.08,0,88,0.2,0,1 +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,3048,9,999999999,33,0.08,0,88,0.2,0,1 +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,77777,9,999999999,32,0.08,0,88,0.2,0,1 +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,77777,9,999999999,32,0.08,0,88,0.2,0,1 +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,6096,9,999999999,31,0.08,0,88,0.2,0,1 +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,6096,9,999999999,31,0.08,0,88,0.2,0,1 +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,6096,9,999999999,30,0.08,0,88,0.2,0,1 +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,6096,9,999999999,30,0.08,0,88,0.2,0,1 +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,24179,19430,10402,3359,240,4.1,2,1,16,6096,9,999999999,29,0.08,0,88,0.2,0,1 +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,45898,35772,13330,4975,300,2.1,2,2,16,77777,9,999999999,29,0.08,0,88,0.2,0,1 +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,71959,47413,16014,6442,0,0,3,3,16,77777,9,999999999,28,0.08,0,88,0.2,0,1 +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,90643,50354,17860,7442,310,2.6,6,6,16,77777,9,999999999,27,0.08,0,88,0.2,0,1 +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,91065,87978,16219,4342,10,4.6,7,7,16,77777,9,999999999,27,0.08,0,88,0.2,0,1 +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,97810,89887,16595,5844,50,5.7,5,5,16,77777,9,999999999,27,0.08,0,88,0.2,0,1 +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,98375,88246,18755,6483,50,5.2,5,5,16,77777,9,999999999,26,0.08,0,88,0.2,0,1 +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,94160,90559,16050,4551,70,4.6,5,5,16,77777,9,999999999,26,0.08,0,88,0.2,0,1 +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,84117,91176,13511,2931,90,3.1,5,5,16,77777,9,999999999,26,0.08,0,88,0.2,0,1 +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,68802,89393,10606,1941,40,3.6,5,5,16,77777,9,999999999,26,0.08,0,88,0.2,0,1 +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,54991,42427,8453,3301,50,2.1,8,5,16,77777,9,999999999,26,0.08,0,88,0.2,0,1 +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,26,84700,392,1327,429,238,547,77,27275,22993,8852,3057,40,3.6,7,6,16,77777,9,999999999,25,0.08,0,88,0.2,0,1 +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,4821,0,3372,1043,40,3.1,8,6,16,77777,9,999999999,25,0.08,0,88,0.2,0,1 +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,77777,9,999999999,25,0.08,0,88,0.2,0,1 +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,34,84600,0,0,402,0,0,0,0,0,0,0,340,4.6,6,6,16,77777,9,999999999,25,0.08,0,88,0.2,0,1 +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,77777,9,999999999,25,0.08,0,88,0.2,0,1 +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,10,39,84100,0,0,395,0,0,0,0,0,0,0,220,4.6,8,7,16,77777,9,999999999,24,0.08,0,88,0.2,0,1 +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,77777,9,999999999,25,0.08,0,88,0.2,0,1 +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,43,84400,0,0,357,0,0,0,0,0,0,0,220,6.2,1,0,16,77777,9,999999999,26,0.08,0,88,0.2,0,1 +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,43,84400,0,0,363,0,0,0,0,0,0,0,220,6.7,2,1,16,77777,9,999999999,26,0.08,0,88,0.2,0,1 +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,44,84400,0,0,372,0,0,0,0,0,0,0,220,5.2,5,4,16,77777,9,999999999,27,0.08,0,88,0.2,0,1 +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,77777,9,999999999,28,0.08,0,88,0.2,0,1 +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,7620,9,999999999,28,0.08,0,88,0.2,0,1 +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,6706,9,999999999,29,0.08,0,88,0.2,0,1 +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,17621,8519,12641,3823,280,4.1,6,6,16,6706,9,999999999,30,0.08,0,88,0.2,0,1 +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,43075,32217,17992,6371,290,5.2,5,5,16,6706,9,999999999,31,0.08,0,88,0.2,0,1 +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,63954,40324,21694,8433,300,3.6,3,3,16,7620,9,999999999,31,0.08,0,88,0.2,0,1 +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,13,37,84900,1004,1328,415,733,733,177,88338,47997,21432,8829,30,3.6,6,6,16.1,7500,9,999999999,32,0.08,0,88,0.2,0,1 +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,95707,45996,28858,11655,50,3.6,3,3,16,7620,9,999999999,33,0.08,0,88,0.2,0,1 +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,108455,50319,26210,10705,140,4.6,3,3,16,77777,9,999999999,32,0.08,0,88,0.2,0,1 +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,112172,51709,23589,9715,150,6.2,3,3,16,77777,9,999999999,30,0.08,0,88,0.2,0,1 +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,106492,51646,21448,8895,130,7.7,7,6,16,7620,9,999999999,29,0.08,0,88,0.2,0,1 +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,89592,48427,28842,11516,230,10.3,8,7,16,4267,9,999999999,28,0.08,0,88,0.2,0,1 +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,56,84500,850,1328,390,207,18,196,24168,1256,22998,8976,270,8.2,9,8,16,2896,9,999999999,27,0.08,0,88,0.2,0,1 +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,54,84300,632,1328,393,70,0,70,7075,0,7136,3338,40,6.7,10,8,16,2400,9,999999999,26,0.08,0,88,0.2,0,1 +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,15,73,84600,388,1328,389,39,0,39,3853,0,3884,1708,300,2.1,10,9,16,3300,9,999999999,25,0.08,0,88,0.2,0,1 +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,73,84600,136,1328,388,55,155,39,6002,0,4269,1239,270,3.6,10,8,16,3353,9,999999999,24,0.08,0,88,0.2,0,1 +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,70,84700,1,100,380,0,0,0,0,0,0,0,320,3.1,10,6,16,3658,9,999999999,23,0.08,0,88,0.2,0,1 +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,75,84600,0,0,375,0,0,0,0,0,0,0,0,0,9,6,16,6096,9,999999999,22,0.08,0,88,0.2,0,1 +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,76,84500,0,0,364,0,0,0,0,0,0,0,240,5.7,9,5,16,6096,9,999999999,21,0.08,0,88,0.2,1,1 +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,13,64,84300,0,0,368,0,0,0,0,0,0,0,0,0,9,6,16,6096,9,999999999,20,0.08,0,88,0.2,0,1 +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,69,84400,0,0,367,0,0,0,0,0,0,0,180,4.1,9,7,16,77777,9,999999999,20,0.08,0,88,0.2,0,1 +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,62,84400,0,0,361,0,0,0,0,0,0,0,200,6.7,7,5,16,77777,9,999999999,21,0.08,0,88,0.2,0,1 +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,62,84400,0,0,358,0,0,0,0,0,0,0,200,4.1,5,4,16,77777,9,999999999,22,0.08,0,88,0.2,0,1 +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,12,60,84400,0,0,358,0,0,0,0,0,0,0,210,6.2,3,3,16,77777,9,999999999,22,0.08,0,88,0.2,0,1 +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,67,84400,0,0,336,0,0,0,0,0,0,0,180,3.6,2,1,16,77777,9,999999999,23,0.08,0,88,0.2,0,1 +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,77777,9,999999999,24,0.08,0,88,0.2,0,1 +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,11.7,59,84600,100,1229,343,0,0,0,0,0,0,0,230,2.6,0,0,16,77777,9,999999999,24,0.08,0,88,0.2,0,1 +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,23652,18777,9041,2993,250,4.6,0,0,16,77777,9,999999999,25,0.08,0,88,0.2,0,1 +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,51035,39643,10143,3876,250,2.6,2,1,16,77777,9,999999999,25,0.08,0,88,0.2,0,1 +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,12.8,47,84700,819,1328,384,581,727,132,69571,44736,15869,6385,260,2.6,3,3,16,77777,9,999999999,26,0.08,0,88,0.2,0,1 +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,95412,51714,15529,6517,0,0,3,3,16,77777,9,999999999,27,0.08,0,88,0.2,0,1 +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,95121,94013,14753,4043,130,5.2,3,3,16,77777,9,999999999,27,0.08,0,88,0.2,0,1 +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,96673,87217,18913,6200,120,5.7,3,3,16,77777,9,999999999,28,0.08,0,88,0.2,0,1 +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,100406,91924,17442,6043,160,4.6,3,3,16,77777,9,999999999,29,0.08,0,88,0.2,0,1 +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,106415,53772,27719,11237,150,5.7,4,3,16,77777,9,999999999,30,0.08,0,88,0.2,0,1 +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,45829,12141,32065,12536,130,8.2,4,4,16,77777,9,999999999,31,0.08,0,88,0.2,0,1 +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,66852,42458,25315,9683,150,6.7,5,4,16,77777,9,999999999,32,0.08,0,88,0.2,0,1 +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,53159,41207,9228,3585,160,4.6,5,5,16,77777,9,999999999,33,0.08,0,88,0.2,0,1 +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,8.3,26,84400,384,1328,408,242,698,40,26311,64277,6321,954,130,7.2,4,4,16,77777,9,999999999,34,0.08,0,88,0.2,0,1 +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,6121,0,2313,743,140,5.7,4,4,16,77777,9,999999999,34,0.08,0,88,0.2,0,1 +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,77777,9,999999999,35,0.08,0,88,0.2,0,1 +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,77777,9,999999999,36,0.08,0,88,0.2,0,1 +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,77777,9,999999999,37,0.08,0,88,0.2,0,1 +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,77777,9,999999999,38,0.08,0,88,0.2,0,1 +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,77777,9,999999999,36,0.08,0,88,0.2,0,1 +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,77777,9,999999999,35,0.08,0,88,0.2,0,1 +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,77777,9,999999999,33,0.08,0,88,0.2,0,1 +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,77777,9,999999999,31,0.08,0,88,0.2,0,1 +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,7.2,43,83700,0,0,338,0,0,0,0,0,0,0,190,4.6,0,0,16,77777,9,999999999,30,0.08,0,88,0.2,0,1 +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,77777,9,999999999,28,0.08,0,88,0.2,0,1 +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,77777,9,999999999,26,0.08,0,88,0.2,0,1 +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,23834,19915,8840,2926,240,5.7,3,3,16,77777,9,999999999,24,0.08,0,88,0.2,0,1 +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,50297,39976,10257,3908,260,4.1,3,3,16,77777,9,999999999,23,0.08,0,88,0.2,0,1 +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,36,84100,816,1329,383,607,849,85,65319,86579,12177,1953,290,2.1,2,2,16,77777,9,999999999,21,0.08,0,88,0.2,0,1 +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,33,84100,1000,1329,401,746,848,106,79770,87211,14504,2828,330,2.1,6,5,16,77777,9,999999999,19,0.08,0,88,0.2,0,1 +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,99668,49568,23690,9751,0,0,3,3,16,77777,9,999999999,18,0.08,0,88,0.2,0,1 +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,106506,50120,27689,11243,210,2.6,3,3,16,77777,9,999999999,18,0.08,0,88,0.2,0,1 +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,98783,89288,18779,6245,240,1.5,4,3,16,77777,9,999999999,18,0.08,0,88,0.2,0,1 +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,105220,52548,22948,9464,260,2.6,4,4,16,77777,9,999999999,19,0.08,0,88,0.2,0,1 +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,82170,87142,16343,3103,290,3.1,6,5,16,77777,9,999999999,19,0.08,0,88,0.2,0,1 +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,26,84000,843,1329,422,599,728,136,71986,46467,16410,6631,310,7.2,6,4,16,77777,9,999999999,19,0.08,0,88,0.2,0,1 +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,52446,40674,9108,3536,330,8.8,5,5,16,77777,9,999999999,20,0.08,0,88,0.2,0,1 +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,26520,22384,10489,3477,350,8.2,9,5,16,6706,9,999999999,20,0.08,0,88,0.2,0,1 +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,1163,0,1171,472,220,6.2,9,7,16,6706,9,999999999,20,0.08,0,88,0.2,0,1 +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,3658,9,999999999,21,0.08,0,88,0.2,0,1 +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,4267,9,999999999,21,0.08,0,88,0.2,0,1 +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,4267,9,999999999,21,0.08,0,88,0.2,0,1 +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,12.2,61,83900,0,0,367,0,0,0,0,0,0,0,10,11.8,7,6,16,77777,9,999999999,22,0.08,0,88,0.2,0,1 +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,77777,9,999999999,21,0.08,0,88,0.2,0,1 +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,2438,9,999999999,21,0.08,0,88,0.2,0,1 +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,2591,9,999999999,21,0.08,0,88,0.2,0,1 +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,2438,9,999999999,21,0.08,0,88,0.2,0,1 +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,2591,9,999999999,21,0.08,0,88,0.2,0,1 +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,2286,9,999999999,21,0.08,0,88,0.2,0,1 +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,488,9,999999999,21,0.08,0,88,0.2,0,1 +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,4825,0,4862,2010,40,6.7,10,10,16,396,9,999999999,21,0.08,0,88,0.2,0,1 +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,6943,0,7002,3217,60,6.7,10,10,12.8,396,9,999999999,21,0.08,0,88,0.2,0,1 +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,10059,0,10151,4908,50,6.7,10,10,11.2,305,9,999999999,21,0.08,0,88,0.2,0,1 +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,12514,0,12635,6274,20,5.7,10,10,16,366,9,999999999,20,0.08,0,88,0.2,0,1 +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,14970,0,15121,7455,10,6.2,10,10,11.2,427,9,999999999,20,0.08,0,88,0.2,0,1 +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,20563,0,20773,9877,330,4.6,10,10,11.2,671,9,999999999,21,0.08,0,88,0.2,0,1 +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,63,84500,1204,1329,379,281,6,275,33737,446,33211,13190,350,5.2,10,10,11.2,1067,9,999999999,22,0.08,0,88,0.2,0,1 +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,23778,404,23156,9548,340,3.1,10,10,11.2,914,9,999999999,23,0.08,0,88,0.2,0,1 +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,49530,9739,39784,14741,350,3.1,10,10,11.2,1372,9,999999999,25,0.08,0,88,0.2,0.3,1 +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,30167,1916,28603,10615,0,0,8,8,16,1676,9,999999999,26,0.08,0,88,0.2,0,1 +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,26195,3686,23868,7944,0,0,10,10,16,1676,9,999999999,27,0.08,0,88,0.2,0,1 +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,8130,0,8193,3153,210,2.6,10,10,16,1676,9,999999999,28,0.08,0,88,0.2,0,1 +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,581,0,585,247,220,3.6,10,10,16,1676,9,999999999,29,0.08,0,88,0.2,0,1 +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,6096,9,999999999,30,0.08,0,88,0.2,0,1 +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,1676,9,999999999,31,0.08,0,88,0.2,0,1 +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,77777,9,999999999,32,0.08,0,88,0.2,0,1 +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,33,0.08,0,88,0.2,0,1 +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,33,0.08,0,88,0.2,0,1 +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,3658,9,999999999,32,0.08,0,88,0.2,0,1 +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,3658,9,999999999,32,0.08,0,88,0.2,0,1 +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,77777,9,999999999,32,0.08,0,88,0.2,0,1 +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,77777,9,999999999,32,0.08,0,88,0.2,0,1 +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,6706,9,999999999,31,0.08,0,88,0.2,0,1 +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,5,5,16,6706,9,999999999,31,0.08,0,88,0.2,0,1 +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,3254,0,3279,1418,240,3.6,9,8,16,3048,9,999999999,31,0.08,0,88,0.2,0,1 +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,11.1,77,84200,587,1330,351,69,0,69,6955,0,7014,3212,280,4.6,9,8,16,3048,9,999999999,31,0.08,0,88,0.2,0,1 +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,16130,0,16277,7350,280,4.6,9,9,16,3048,9,999999999,31,0.08,0,88,0.2,0,1 +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,74657,37249,34350,13121,310,3.1,7,7,16,77777,9,999999999,30,0.08,0,88,0.2,0,1 +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,99467,49222,25909,10587,320,2.6,6,4,16,7620,9,999999999,30,0.08,0,88,0.2,0,1 +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,107254,50360,31806,12715,320,3.6,7,6,16,7620,9,999999999,29,0.08,0,88,0.2,0,1 +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,59713,10314,47468,17478,0,0,7,5,16,7620,9,999999999,28,0.08,0,88,0.2,0,1 +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,11.7,43,84400,1139,1330,383,428,72,367,49752,6023,42944,16084,230,2.6,4,3,16,7620,9,999999999,28,0.08,0,88,0.2,0,1 +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,86294,47120,30894,12143,110,2.6,6,6,16,6706,9,999999999,27,0.08,0,88,0.2,0,1 +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,52176,24870,30247,11049,110,2.1,9,7,16,4572,9,999999999,26,0.08,0,88,0.2,0,1 +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,6971,0,7031,3268,20,10.8,10,10,16,18410,9,999999999,25,0.08,0,88,0.2,0.5,1 +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,10,53,84300,371,1330,375,38,0,38,3762,0,3792,1649,250,10.8,9,8,8,18349,9,999999999,25,0.08,0,88,0.2,0,1 +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,2968,0,2287,725,0,0,10,9,16,18288,9,999999999,24,0.08,0,88,0.2,0,1 +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,87,84200,0,0,374,0,0,0,0,0,0,0,160,2.6,9,9,16,3048,9,999999999,23,0.08,0,88,0.2,0,1 +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,3048,9,999999999,22,0.08,0,88,0.2,0,1 +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,77777,9,999999999,22,0.08,0,88,0.2,1.8,1 +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,7620,9,999999999,21,0.08,0,88,0.2,0,1 +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,77777,9,999999999,21,0.08,0,88,0.2,0,1 +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,12.2,83,83900,0,0,321,0,0,0,0,0,0,0,210,4.6,0,0,16,77777,9,999999999,21,0.08,0,88,0.2,0,1 +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,77777,9,999999999,22,0.08,0,88,0.2,0,1 +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,77777,9,999999999,22,0.08,0,88,0.2,0,1 +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,77777,9,999999999,23,0.08,0,88,0.2,0,1 +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,23,0.08,0,88,0.2,0,1 +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,23,0.08,0,88,0.2,0,1 +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,14.4,96,84100,336,1330,355,115,40,105,12593,1732,11546,3523,280,3.1,8,8,0.4,30,9,999999999,24,0.08,0,88,0.2,0,1 +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,44020,33959,17392,6142,260,3.1,6,6,4.8,77777,9,999999999,24,0.08,0,88,0.2,0,1 +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,71523,46401,14721,5936,260,5.7,5,5,14.4,77777,9,999999999,24,0.08,0,88,0.2,0,1 +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,82059,91628,13378,2685,270,3.1,3,3,16,77777,9,999999999,25,0.08,0,88,0.2,0,1 +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,11.1,42,84500,1124,1330,382,865,904,99,92878,93550,13278,3664,120,2.1,3,3,16,77777,9,999999999,25,0.08,0,88,0.2,0,1 +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,35,84500,1194,1330,396,929,920,101,99389,95091,13331,4676,140,3.6,5,5,16,77777,9,999999999,25,0.08,0,88,0.2,0,1 +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,113648,54285,21385,8850,130,3.6,5,4,16,77777,9,999999999,26,0.08,0,88,0.2,0,1 +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,108350,55470,20298,8431,110,5.2,6,5,16,7620,9,999999999,26,0.08,0,88,0.2,0,1 +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,77457,41029,31937,12437,120,4.1,8,7,16,7620,9,999999999,27,0.08,0,88,0.2,0,1 +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,66758,44833,19855,7827,40,2.1,7,6,16,7620,9,999999999,27,0.08,0,88,0.2,0,1 +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,43604,33660,15753,5775,310,7.7,9,8,16,3658,9,999999999,27,0.08,0,88,0.2,0,1 +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,20366,14871,10050,3314,360,2.1,5,5,16,7620,9,999999999,28,0.08,0,88,0.2,0,1 +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,4888,0,2391,747,290,3.6,3,3,16,77777,9,999999999,28,0.08,0,88,0.2,0,1 +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,77777,9,999999999,28,0.08,0,88,0.2,0,1 +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,77777,9,999999999,29,0.08,0,88,0.2,0,1 +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,51,84200,0,0,359,0,0,0,0,0,0,0,210,5.2,3,3,16,77777,9,999999999,29,0.08,0,88,0.2,0,1 +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,77777,9,999999999,29,0.08,0,88,0.2,0,1 +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,77777,9,999999999,29,0.08,0,88,0.2,0,1 +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,77777,9,999999999,28,0.08,0,88,0.2,0,1 +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,77777,9,999999999,28,0.08,0,88,0.2,0,1 +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,77777,9,999999999,27,0.08,0,88,0.2,0,1 +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,77777,9,999999999,26,0.08,0,88,0.2,0,1 +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,77777,9,999999999,26,0.08,0,88,0.2,0,1 +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,77777,9,999999999,25,0.08,0,88,0.2,0,1 +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,24105,20582,9113,2955,290,3.6,1,1,16,77777,9,999999999,24,0.08,0,88,0.2,0,1 +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,44,84400,581,1330,366,397,711,86,47116,37984,10238,3878,300,4.1,2,2,16,77777,9,999999999,24,0.08,0,88,0.2,0,1 +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,43,84500,806,1330,363,582,776,111,70563,46919,13506,5460,320,2.6,1,1,16,77777,9,999999999,23,0.08,0,88,0.2,0,1 +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,10.6,40,84600,990,1330,373,727,788,140,89095,49692,17228,7180,350,2.1,1,1,16,77777,9,999999999,22,0.08,0,88,0.2,0,1 +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,90769,88300,17036,4191,10,5.2,3,3,16,77777,9,999999999,22,0.08,0,88,0.2,0,1 +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,99937,94603,14951,5025,50,5.7,3,3,16,77777,9,999999999,22,0.08,0,88,0.2,0,1 +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,98070,90778,17010,5577,10,4.6,3,3,16,77777,9,999999999,22,0.08,0,88,0.2,0,1 +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,7.2,24,84800,1133,1330,409,880,909,104,93558,93360,13863,3883,20,7.2,5,5,16,77777,9,999999999,23,0.08,0,88,0.2,0,1 +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,8.3,26,84700,1008,1330,405,753,810,138,92745,51841,17066,7128,80,2.6,3,3,16,77777,9,999999999,23,0.08,0,88,0.2,0,1 +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,6.1,22,84800,829,1330,402,592,710,149,70601,48057,17844,7111,60,4.1,3,3,16,77777,9,999999999,23,0.08,0,88,0.2,0,1 +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,6.1,22,84000,608,1330,408,362,420,170,41034,30132,19360,6778,20,4.1,5,5,16,77777,9,999999999,24,0.08,0,88,0.2,0,1 +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,25292,20127,5685,2012,30,4.6,5,4,16,77777,9,999999999,24,0.08,0,88,0.2,0,1 +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,4528,0,1744,560,70,5.7,5,5,16,77777,9,999999999,25,0.08,0,88,0.2,0,1 +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,77777,9,999999999,25,0.08,0,88,0.2,0,1 +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,66,84600,0,0,373,0,0,0,0,0,0,0,80,8.2,5,4,16,77777,9,999999999,25,0.08,0,88,0.2,0,1 +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,15,73,84500,0,0,371,0,0,0,0,0,0,0,80,6.2,6,6,16,77777,9,999999999,26,0.08,0,88,0.2,0,1 +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,78,84300,0,0,394,0,0,0,0,0,0,0,70,5.2,10,10,16,2896,9,999999999,26,0.08,0,88,0.2,0,1 +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,3048,9,999999999,25,0.08,0,88,0.2,0,1 +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,3048,9,999999999,25,0.08,0,88,0.2,0,1 +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,5,5,16,77777,9,999999999,24,0.08,0,88,0.2,0,1 +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,77777,9,999999999,23,0.08,0,88,0.2,0,1 +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,23,0.08,0,88,0.2,0,1 +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,13.3,90,84300,0,0,336,0,0,0,0,0,0,0,290,2.1,4,3,9.6,6706,9,999999999,22,0.08,0,88,0.2,0,1 +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,21,0.08,0,88,0.2,0,1 +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,23370,18656,12825,3709,290,1.5,3,3,11.2,6600,9,999999999,21,0.08,0,88,0.2,0,1 +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,28558,9928,22031,7225,90,2.1,3,3,11.2,6706,9,999999999,20,0.08,0,88,0.2,0,1 +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,67402,44054,19867,7764,100,3.1,1,1,16,77777,9,999999999,19,0.08,0,88,0.2,0,1 +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,87937,47150,17638,7353,100,3.6,4,3,16,77777,9,999999999,19,0.08,0,88,0.2,0,1 +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,103199,48156,18994,7958,110,7.2,4,4,16,77777,9,999999999,18,0.08,0,88,0.2,0,1 +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,101205,45647,37715,14667,90,5.2,4,4,16,6706,9,999999999,19,0.08,0,88,0.2,0,1 +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,8,38,84500,1193,1331,388,513,108,416,59609,9616,48673,17737,250,4.1,9,8,8,2400,9,999999999,19,0.08,0,88,0.2,0,1 +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,92255,40953,39158,15029,10,6.7,9,8,16,2438,9,999999999,20,0.08,0,88,0.2,0,1 +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,15.7,56,84500,1004,1331,402,121,0,121,12592,0,12715,6334,100,4.6,8,7,16,7315,9,999999999,21,0.08,0,88,0.2,0,1 +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,13.3,48,84500,825,1331,394,452,319,254,51463,24824,29083,10675,240,7.7,9,6,16,6706,9,999999999,22,0.08,0,88,0.2,0,1 +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,10,44,84500,604,1331,399,64,0,64,6466,0,6521,3034,250,8.2,9,9,16.1,2700,9,999999999,23,0.08,0,88,0.2,0.3,1 +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,3754,0,3784,1632,10,2.1,10,8,16,6096,9,999999999,23,0.08,0,88,0.2,0,1 +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,4124,0,2681,808,210,5.2,9,7,16,6096,9,999999999,24,0.08,0,88,0.2,0,1 +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,13.9,68,84300,0,0,379,0,0,0,0,0,0,0,220,6.7,9,8,16,3658,9,999999999,25,0.08,0,88,0.2,0,1 +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,13.3,65,84300,0,0,379,0,0,0,0,0,0,0,200,4.1,9,8,16,3658,9,999999999,26,0.08,0,88,0.2,0,1 +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,6096,9,999999999,27,0.08,0,88,0.2,0,1 +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,6096,9,999999999,27,0.08,0,88,0.2,0,1 +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,3353,9,999999999,28,0.08,0,88,0.2,0,1 +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,3353,9,999999999,29,0.079,0,88,0.2,0,1 +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,77777,9,999999999,29,0.079,0,88,0.2,0,1 +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,6096,9,999999999,30,0.079,0,88,0.2,6.8,1 +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,3048,9,999999999,30,0.079,0,88,0.2,0,1 +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,4572,9,999999999,31,0.079,0,88,0.2,0,1 +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,4267,9,999999999,31,0.079,0,88,0.2,0,1 +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,22904,18122,11004,3361,280,3.6,9,7,11.2,3658,9,999999999,32,0.079,0,88,0.2,0,1 +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,76,84000,576,1331,378,251,119,200,27718,8567,22202,7240,300,3.6,9,8,11.2,3658,9,999999999,32,0.079,0,88,0.2,0,1 +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,55458,30039,29877,10697,340,4.6,9,7,16,4267,9,999999999,33,0.079,0,88,0.2,0,1 +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,35412,4147,30811,12012,350,3.6,9,8,16,4267,9,999999999,34,0.079,0,88,0.2,0,1 +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,93891,44877,38429,14749,350,4.6,9,7,16,6706,9,999999999,34,0.079,0,88,0.2,0,1 +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,51668,5959,44502,16649,30,6.7,9,9,16,3962,9,999999999,34,0.079,0,88,0.2,0,1 +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,36182,895,35205,13857,340,5.7,10,10,16,3048,9,999999999,33,0.079,0,88,0.2,0,1 +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,44,84000,1127,1331,398,487,102,400,56176,9018,46455,16947,320,6.7,9,9,16,2438,9,999999999,32,0.079,0,88,0.2,0,1 +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,43,84000,1001,1331,392,327,24,309,37787,1978,35924,13598,290,2.6,9,8,16,3353,9,999999999,32,0.079,0,88,0.2,0,1 +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,10.6,40,84000,821,1331,395,100,0,100,10287,0,10381,5016,310,6.7,9,7,16,6096,9,999999999,31,0.079,0,88,0.2,0,1 +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,66,83500,599,1331,409,249,117,197,27693,8330,22023,7401,250,6.7,10,10,16,6096,9,999999999,30,0.079,0,88,0.2,0,1 +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,23874,18764,9153,3040,230,7.2,7,6,16,6096,9,999999999,30,0.079,0,88,0.2,0,1 +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,12.8,63,83900,99,1209,386,23,51,20,2591,0,2258,695,300,10.3,9,9,16,2438,9,999999999,29,0.079,0,88,0.2,0,1 +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,2134,9,999999999,29,0.079,0,88,0.2,0,1 +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,3353,9,999999999,28,0.079,0,88,0.2,0,1 +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,3353,9,999999999,27,0.079,0,88,0.2,0,1 +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,2896,9,999999999,27,0.079,0,88,0.2,0,1 +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,2591,9,999999999,27,0.079,0,88,0.2,0,1 +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,3353,9,999999999,27,0.079,0,88,0.2,0,1 +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,77777,9,999999999,27,0.079,0,88,0.2,0,1 +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,6096,9,999999999,27,0.079,0,88,0.2,0,1 +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,6096,9,999999999,27,0.079,0,88,0.2,0,1 +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,6096,9,999999999,27,0.079,0,88,0.2,0,1 +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,6706,9,999999999,27,0.079,0,88,0.2,0,1 +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,58,84000,323,1332,350,134,121,105,14651,5499,11528,3437,270,4.1,4,4,16,6706,9,999999999,27,0.079,0,88,0.2,0,1 +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,8.9,49,84200,572,1332,354,384,587,131,44030,36763,15082,5419,300,4.6,3,3,16,6706,9,999999999,27,0.079,0,88,0.2,0,1 +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,64155,43698,18714,7330,340,6.2,3,3,16,6096,9,999999999,27,0.079,0,88,0.2,0,1 +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,64428,26478,39039,14303,360,7.2,6,6,16,6706,9,999999999,27,0.079,0,88,0.2,0,1 +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,79159,33251,41123,15485,30,5.7,5,5,16,6096,9,999999999,27,0.079,0,88,0.2,0,1 +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,107922,53449,29685,11942,40,5.2,8,6,16,6096,9,999999999,26,0.079,0,88,0.2,0,1 +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,6,30,84300,1188,1332,404,656,300,388,76642,26256,45636,16917,60,2.6,9,9,16.1,3000,9,999999999,25,0.079,0,88,0.2,0,1 +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,23015,398,22511,9308,270,8.8,9,8,16,2438,9,999999999,24,0.079,0,88,0.2,0,1 +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,13154,0,13280,6555,360,5.7,7,6,16,6096,9,999999999,23,0.079,0,88,0.2,0,1 +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,10.6,55,84300,817,1332,362,463,307,274,52407,25362,31194,11150,70,5.7,7,5,16,6706,9,999999999,22,0.079,0,88,0.2,0,1 +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,10,53,84300,595,1332,383,154,6,151,17542,397,17276,6156,90,3.6,9,9,16,6706,9,999999999,21,0.079,0,88,0.2,0,1 +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,54,84300,346,1332,358,127,117,97,14099,5231,10810,3425,170,3.6,5,5,16,6706,9,999999999,19,0.079,0,88,0.2,0,1 +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,9.4,50,84300,94,1188,361,30,173,18,3402,0,2045,632,210,3.6,6,5,16,6706,9,999999999,18,0.079,0,88,0.2,0,1 +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,58,84200,0,0,350,0,0,0,0,0,0,0,220,3.1,5,4,16,3658,9,999999999,17,0.079,0,88,0.2,0,1 +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,6706,9,999999999,16,0.079,0,88,0.2,0,1 +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,65,84100,0,0,366,0,0,0,0,0,0,0,270,3.6,9,9,16,7620,9,999999999,15,0.079,0,88,0.2,0,1 +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,6096,9,999999999,14,0.079,0,88,0.2,0,1 +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,6096,9,999999999,14,0.079,0,88,0.2,0,1 +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,3048,9,999999999,14,0.079,0,88,0.2,0,1 +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,6096,9,999999999,14,0.079,0,88,0.2,0,1 +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,10,72,84000,0,0,318,0,0,0,0,0,0,0,200,4.1,1,0,16,77777,9,999999999,13,0.079,0,88,0.2,0.8,1 +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,80,84000,0,0,317,0,0,0,0,0,0,0,120,2.1,1,1,16,6096,9,999999999,13,0.079,0,88,0.2,0,1 +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,83,83900,0,0,327,0,0,0,0,0,0,0,100,2.6,5,5,16,6096,9,999999999,13,0.079,0,88,0.2,0,1 +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,83,84000,73,1033,330,0,0,0,0,0,0,0,190,2.6,6,6,16,77777,9,999999999,13,0.079,0,88,0.2,0,1 +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,22031,16668,7404,2467,130,2.1,7,6,16,77777,9,999999999,13,0.079,0,88,0.2,0,1 +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,47161,38942,10434,3923,0,0,5,5,16,77777,9,999999999,12,0.079,0,88,0.2,0,1 +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,51,84500,795,1332,359,563,666,165,66083,45372,19454,7578,290,2.1,4,3,16,77777,9,999999999,12,0.079,0,88,0.2,0,1 +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,47708,8878,39283,14358,330,4.6,5,4,16,77777,9,999999999,12,0.079,0,88,0.2,0,1 +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,54920,9489,44719,16450,0,0,4,4,16,6706,9,999999999,12,0.079,0,88,0.2,0,1 +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,41,84500,1182,1332,378,862,637,295,102595,48865,35323,13867,30,2.1,4,4,16,6706,9,999999999,11,0.079,0,88,0.2,0,1 +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,113196,53912,19933,8287,10,1.5,5,5,16,6706,9,999999999,11,0.079,0,88,0.2,0,1 +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,103973,52795,20915,8685,360,2.1,7,6,16,6706,9,999999999,11,0.079,0,88,0.2,0,1 +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,10,39,84400,994,1332,390,683,577,251,80131,43865,29612,11650,340,1.5,8,6,16,6706,9,999999999,10,0.079,0,88,0.2,0,1 +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,36141,8585,28889,10520,330,10.3,9,8,16,3300,9,999999999,10,0.079,0,88,0.2,0,1 +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,40265,30602,18344,6417,20,10.3,7,7,16,6096,9,999999999,9,0.079,0,88,0.2,0,1 +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,21151,16341,6837,2350,70,3.1,3,3,16,77777,9,999999999,9,0.079,0,88,0.2,0,1 +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,3063,17155,1847,289,50,2.1,4,4,16,77777,9,999999999,8,0.079,0,88,0.2,0,1 +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,77777,9,999999999,8,0.079,0,88,0.2,0,1 +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,6706,9,999999999,7,0.079,0,88,0.2,0,1 +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,2134,9,999999999,7,0.079,0,88,0.2,0.3,1 +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,77777,9,999999999,6,0.079,0,88,0.2,0,1 +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,10.6,75,84200,0,0,319,0,0,0,0,0,0,0,230,4.6,0,0,16,77777,9,999999999,7,0.079,0,88,0.2,0,1 +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,10,72,84100,0,0,318,0,0,0,0,0,0,0,220,6.2,0,0,16,77777,9,999999999,8,0.079,0,88,0.2,0,1 +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,8.9,67,84000,0,0,317,0,0,0,0,0,0,0,210,7.2,0,0,16,77777,9,999999999,8,0.079,0,88,0.2,0,1 +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,8.3,64,84000,0,0,317,0,0,0,0,0,0,0,220,5.2,0,0,16,77777,9,999999999,9,0.079,0,88,0.2,0,1 +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,77777,9,999999999,9,0.079,0,88,0.2,0,1 +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,16,77777,9,999999999,10,0.079,0,88,0.2,0,1 +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,77777,9,999999999,11,0.079,0,88,0.2,0,1 +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,9.4,69,84200,316,1333,331,187,500,68,21149,16152,7714,2542,260,3.1,3,3,16,77777,9,999999999,11,0.079,0,88,0.2,0,1 +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,47355,39359,9880,3724,280,3.1,3,3,16,77777,9,999999999,12,0.079,0,88,0.2,0,1 +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,63081,85978,12083,1882,350,4.1,3,3,16,77777,9,999999999,12,0.079,0,88,0.2,0,1 +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,78117,89105,12867,2556,10,2.1,3,3,16,77777,9,999999999,13,0.079,0,88,0.2,0,1 +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,4.4,26,84100,1109,1333,379,829,832,134,103889,53750,16860,7063,30,4.1,5,5,16,77777,9,999999999,14,0.079,0,88,0.2,0,1 +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,109339,54015,21345,8830,20,5.2,5,5,16,77777,9,999999999,14,0.079,0,88,0.2,0,1 +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,97361,91400,17047,5223,20,5.2,3,3,16,77777,9,999999999,13,0.079,0,88,0.2,0,1 +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,93468,96570,11625,3275,10,6.2,3,3,16,77777,9,999999999,13,0.079,0,88,0.2,0,1 +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,23,84700,990,1333,391,763,911,85,81337,93015,11786,2507,310,5.2,3,3,16,77777,9,999999999,13,0.079,0,88,0.2,0,1 +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,72453,50089,12073,4900,40,5.7,3,3,16,77777,9,999999999,13,0.079,0,88,0.2,0,1 +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,47563,41240,11276,4238,10,6.2,5,5,16,77777,9,999999999,13,0.079,0,88,0.2,0,1 +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,19524,15524,8426,2791,30,4.1,3,3,16,77777,9,999999999,12,0.079,0,88,0.2,0,1 +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,3090,0,1719,533,50,2.6,3,3,16,77777,9,999999999,12,0.079,0,88,0.2,0,1 +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,3,3,16,77777,9,999999999,12,0.079,0,88,0.2,0,1 +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,2.2,31,84400,0,0,346,0,0,0,0,0,0,0,150,1.5,3,3,16,77777,9,999999999,12,0.079,0,88,0.2,0,1 +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,77777,9,999999999,11,0.079,0,88,0.2,0,1 +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,77777,9,999999999,11,0.079,0,88,0.2,0,1 +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,41,84200,0,0,328,0,0,0,0,0,0,0,210,5.7,0,0,16,77777,9,999999999,12,0.079,0,88,0.2,0,1 +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,43,84200,0,0,325,0,0,0,0,0,0,0,210,5.7,0,0,16,77777,9,999999999,12,0.078,0,88,0.2,0,1 +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,77777,9,999999999,12,0.078,0,88,0.2,0,1 +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,77777,9,999999999,13,0.078,0,88,0.2,0,1 +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,77777,9,999999999,13,0.078,0,88,0.2,0,1 +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,5,51,84000,0,0,313,0,0,0,0,0,0,0,220,2.6,0,0,16,77777,9,999999999,13,0.078,0,88,0.2,0,1 +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,77777,9,999999999,13,0.078,0,88,0.2,0,1 +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,22405,18030,6878,2299,230,5.2,0,0,16,77777,9,999999999,14,0.078,0,88,0.2,0,1 +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,35,84400,563,1333,340,393,719,88,46477,40082,10439,3906,250,5.7,0,0,16,77777,9,999999999,14,0.078,0,88,0.2,0,1 +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,29,84500,789,1333,354,564,764,111,68325,48083,13494,5415,260,4.1,0,0,16,77777,9,999999999,14,0.078,0,88,0.2,0,1 +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,25,84600,974,1333,383,690,709,171,83288,49399,20734,8482,230,2.6,3,3,16,77777,9,999999999,15,0.078,0,88,0.2,0,1 +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,-1.1,13,83900,1106,1333,392,779,712,187,95353,51190,22999,9457,330,3.6,3,3,16,77777,9,999999999,15,0.078,0,88,0.2,0,1 +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.6,14,84600,1176,1333,392,831,685,226,101231,51128,27676,11198,320,2.6,3,3,16,77777,9,999999999,16,0.078,0,88,0.2,0,1 +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,101651,51269,30628,12245,300,3.1,3,3,16,77777,9,999999999,16,0.078,0,88,0.2,0,1 +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,96608,51696,26317,10688,290,3.6,3,3,16,77777,9,999999999,16,0.078,0,88,0.2,0,1 +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,13,84500,986,1333,405,700,696,183,84361,50575,22157,9022,230,2.1,3,3,16,77777,9,999999999,17,0.078,0,88,0.2,0,1 +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,66558,47473,16585,6584,170,2.1,3,3,16,77777,9,999999999,17,0.078,0,88,0.2,0,1 +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,13,83500,581,1333,398,385,709,76,46314,39578,9167,3488,110,3.6,2,2,16,77777,9,999999999,18,0.078,0,88,0.2,0,1 +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,22113,17984,6183,2130,130,2.1,5,5,16,77777,9,999999999,18,0.078,0,88,0.2,0,1 +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,2803,0,1286,406,160,4.1,6,6,16,77777,9,999999999,19,0.078,0,88,0.2,0,1 +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,7620,9,999999999,19,0.078,0,88,0.2,0,1 +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,77777,9,999999999,20,0.078,0,88,0.2,0,1 +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,77777,9,999999999,20,0.078,0,88,0.2,0,1 +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,77777,9,999999999,21,0.078,0,88,0.2,0,1 +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,77777,9,999999999,20,0.078,0,88,0.2,0,1 +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,77777,9,999999999,20,0.078,0,88,0.2,0,1 +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,2.8,32,83700,0,0,333,0,0,0,0,0,0,0,230,5.7,0,0,16,77777,9,999999999,19,0.078,0,88,0.2,0,1 +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,77777,9,999999999,19,0.078,0,88,0.2,0,1 +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,2.8,32,83600,0,0,333,0,0,0,0,0,0,0,220,6.7,0,0,16,77777,9,999999999,19,0.078,0,88,0.2,0,1 +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,77777,9,999999999,18,0.078,0,88,0.2,0,1 +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,1219,10628,697,139,220,6.7,0,0,16,77777,9,999999999,18,0.078,0,88,0.2,0,1 +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,22453,18809,7086,2349,220,7.2,0,0,16,77777,9,999999999,17,0.078,0,88,0.2,0,1 +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,43260,37839,12721,4647,220,6.2,0,0,16,77777,9,999999999,17,0.078,0,88,0.2,0,1 +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,2.8,18,84200,786,1334,381,564,765,113,68247,49014,13722,5492,220,4.1,0,0,16,77777,9,999999999,16,0.078,0,88,0.2,0,1 +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,86820,52790,17582,7268,230,3.1,3,3,16,77777,9,999999999,16,0.078,0,88,0.2,0,1 +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,90181,91834,14558,3635,0,0,4,4,16,77777,9,999999999,16,0.078,0,88,0.2,0,1 +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,95127,88930,18516,5257,40,2.6,4,4,16,77777,9,999999999,15,0.078,0,88,0.2,0,1 +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,93736,45270,36666,14238,90,2.6,8,6,16,7620,9,999999999,15,0.078,0,88,0.2,0,1 +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,87747,44302,36781,14168,130,4.1,10,7,16,7620,9,999999999,15,0.078,0,88,0.2,0,1 +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,28545,1405,27146,10763,70,3.6,9,7,16,3962,9,999999999,15,0.078,0,88,0.2,0,1 +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,34028,4556,30570,10838,30,7.7,10,9,16,2286,9,999999999,15,0.078,0,88,0.2,0,1 +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,23527,3162,21627,7114,70,8.2,10,10,16,2438,9,999999999,15,0.078,0,88,0.2,0,1 +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,11264,2393,9850,3112,80,5.7,9,7,16,3962,9,999999999,15,0.078,0,88,0.2,0,1 +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,2493,0,1703,518,140,5.7,9,7,16,3962,9,999999999,15,0.078,0,88,0.2,0,1 +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,3962,9,999999999,14,0.078,0,88,0.2,0,1 +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,6096,9,999999999,14,0.078,0,88,0.2,0,1 +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,6096,9,999999999,14,0.078,0,88,0.2,0,1 +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,35,83700,0,0,364,0,0,0,0,0,0,0,260,2.1,9,6,16,6096,9,999999999,14,0.078,0,88,0.2,0,1 +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,6096,9,999999999,14,0.078,0,88,0.2,0,1 +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,40,83700,0,0,347,0,0,0,0,0,0,0,170,2.1,9,4,16,6096,9,999999999,15,0.077,0,88,0.2,0,1 +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,6096,9,999999999,15,0.077,0,88,0.2,0,1 +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,6096,9,999999999,15,0.077,0,88,0.2,0,1 +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,6096,9,999999999,16,0.077,0,88,0.2,0,1 +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,3.3,33,83400,0,0,351,0,0,0,0,0,0,0,210,7.2,6,4,16,3962,9,999999999,16,0.077,0,88,0.2,0,1 +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,3.3,33,83700,62,967,348,10,153,5,1100,8203,861,160,200,5.7,6,3,16,7620,9,999999999,17,0.077,0,88,0.2,0,1 +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,21991,19692,9872,3016,220,7.2,6,5,16,6706,9,999999999,17,0.077,0,88,0.2,0,1 +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,36980,27804,19252,6433,220,7.2,6,5,16,6706,9,999999999,17,0.077,0,88,0.2,0,1 +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,57058,38400,22607,8528,230,6.2,7,6,16,6706,9,999999999,18,0.077,0,88,0.2,0,1 +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,3.3,18,84100,969,1334,412,640,503,274,74462,41484,32061,12271,210,7.2,8,7,16,6096,9,999999999,18,0.077,0,88,0.2,0,1 +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,4.4,20,83400,1101,1334,414,359,84,289,42406,6775,34338,13417,220,6.7,9,7,16,6096,9,999999999,18,0.077,0,88,0.2,0,1 +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,89401,40089,40421,15394,240,2.1,8,5,16,6096,9,999999999,19,0.077,0,88,0.2,0,1 +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,98627,48198,36026,14051,260,2.1,8,5,16,6096,9,999999999,20,0.077,0,88,0.2,0,1 +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,5,24,83800,1107,1334,405,316,30,291,37337,2414,34586,13508,280,20.6,9,8,2.8,2400,9,999999999,21,0.077,0,88,0.2,0,1 +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,20992,0,21191,9717,10,5.7,8,7,16,6096,9,999999999,22,0.077,0,88,0.2,0,1 +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,15425,0,15564,7023,10,6.2,7,6,16,6096,9,999999999,22,0.077,0,88,0.2,0,1 +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,38377,25731,23124,7382,240,3.1,9,7,16,6096,9,999999999,23,0.077,0,88,0.2,0,1 +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,40,83800,320,1334,384,73,0,73,7196,0,7251,2707,250,5.2,7,5,16,6096,9,999999999,24,0.077,0,88,0.2,0,1 +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,8,36,83800,71,1034,387,17,75,13,1936,0,1482,456,260,7.7,9,7,16,3600,9,999999999,25,0.077,0,88,0.2,0,1 +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,3658,9,999999999,26,0.077,0,88,0.2,0,1 +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,3353,9,999999999,27,0.077,0,88,0.2,0,1 +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,6096,9,999999999,27,0.077,0,88,0.2,0,1 +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,6096,9,999999999,28,0.077,0,88,0.2,0,1 +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,6096,9,999999999,27,0.077,0,88,0.2,0,1 +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,6096,9,999999999,27,0.077,0,88,0.2,0,1 +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,6096,9,999999999,26,0.077,0,88,0.2,0,1 +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,77777,9,999999999,25,0.077,0,88,0.2,0,1 +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,6096,9,999999999,24,0.077,0,88,0.2,0,1 +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,6706,9,999999999,23,0.077,0,88,0.2,0,1 +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,889,7192,695,136,210,4.1,6,4,16,6096,9,999999999,23,0.077,0,88,0.2,0,1 +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,19461,15289,8416,2676,230,5.7,6,5,16,6096,9,999999999,22,0.077,0,88,0.2,0,1 +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,42144,36142,13755,4953,250,3.6,4,4,16,6096,9,999999999,21,0.077,0,88,0.2,0,1 +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,61639,42520,18868,7327,330,3.1,5,5,16,6096,9,999999999,20,0.077,0,88,0.2,0,1 +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,80367,47368,22591,9148,330,2.1,6,6,16,6706,9,999999999,19,0.077,0,88,0.2,0,1 +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,78561,34581,39411,14949,320,3.1,8,8,16,6706,9,999999999,18,0.077,0,88,0.2,0,1 +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,106411,53386,24518,10050,260,3.1,9,9,16,6706,9,999999999,18,0.077,0,88,0.2,0,1 +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,109926,54288,20259,8411,290,3.1,5,5,16,77777,9,999999999,18,0.077,0,88,0.2,0,1 +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,5.6,21,83900,1103,1335,407,814,747,195,99087,52603,23854,9795,330,2.1,5,5,16,77777,9,999999999,17,0.077,0,88,0.2,0,1 +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,20,83900,974,1335,434,676,649,202,80578,47550,24197,9739,360,2.1,9,9,16,6706,9,999999999,17,0.077,0,88,0.2,0,1 +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,66995,46896,14174,5679,30,5.2,9,9,16,6706,9,999999999,17,0.077,0,88,0.2,0,1 +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,43280,37121,15405,5492,360,5.2,9,9,16,3353,9,999999999,16,0.077,0,88,0.2,0,1 +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,4044,0,4074,1688,10,6.7,9,9,16,3658,9,999999999,16,0.077,0,88,0.2,0,1 +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,1388,0,1158,362,10,3.6,9,9,16,6706,9,999999999,15,0.077,0,88,0.2,0,1 +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,4267,9,999999999,15,0.077,0,88,0.2,0,1 +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,6706,9,999999999,15,0.077,0,88,0.2,0,1 +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,6706,9,999999999,14,0.077,0,88,0.2,0,1 +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,6096,9,999999999,14,0.077,0,88,0.2,0,1 +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,6096,9,999999999,14,0.077,0,88,0.2,0,1 +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,7.8,45,83600,0,0,359,0,0,0,0,0,0,0,220,6.7,5,5,16,77777,9,999999999,15,0.076,0,88,0.2,0,1 +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,7.2,43,83600,0,0,352,0,0,0,0,0,0,0,230,5.2,3,3,16,77777,9,999999999,15,0.076,0,88,0.2,0,1 +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,77777,9,999999999,15,0.076,0,88,0.2,0,1 +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,6096,9,999999999,16,0.076,0,88,0.2,0,1 +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,5486,9,999999999,16,0.076,0,88,0.2,0,1 +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,852,0,487,154,220,4.1,5,3,16,6706,9,999999999,16,0.076,0,88,0.2,0,1 +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,7.2,43,83800,299,1336,358,157,253,101,17101,11070,11047,3203,220,4.1,7,5,16,6706,9,999999999,17,0.076,0,88,0.2,0,1 +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,20405,1365,19607,6479,220,5.2,8,6,16,6706,9,999999999,17,0.076,0,88,0.2,0,1 +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,32709,5004,28794,10224,270,3.6,7,6,16,6706,9,999999999,17,0.076,0,88,0.2,0,1 +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,76241,43385,29820,11573,0,0,7,5,16,6706,9,999999999,18,0.076,0,88,0.2,0,1 +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,85102,42468,32305,12760,20,5.2,8,6,16,6706,9,999999999,18,0.076,0,88,0.2,0,1 +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,88015,40399,35177,13777,40,5.2,6,5,16,6706,9,999999999,19,0.076,0,88,0.2,0,1 +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,88034,39681,38167,14718,30,5.2,7,5,16,6706,9,999999999,21,0.076,0,88,0.2,0,1 +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,69264,25048,42038,15679,120,2.6,8,5,16,6706,9,999999999,22,0.076,0,88,0.2,0,1 +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,36513,3467,33228,12638,130,1.5,10,8,16,3353,9,999999999,23,0.076,0,88,0.2,0,1 +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,14290,0,14418,6560,200,3.6,10,9,16,3353,9,999999999,24,0.076,0,88,0.2,0,1 +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,49,83600,560,1336,399,63,0,63,6341,0,6394,2920,190,9.8,10,10,16,3658,9,999999999,26,0.076,0,88,0.2,0,1 +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,2660,0,2680,1159,210,5.7,9,5,16,3658,9,999999999,27,0.076,0,88,0.2,0,1 +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,1597,0,1257,386,240,6.2,9,5,16,6096,9,999999999,28,0.076,0,88,0.2,0,1 +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,9.4,50,83900,0,0,361,0,0,0,0,0,0,0,230,6.2,7,5,16,6096,9,999999999,30,0.076,0,88,0.2,0,1 +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,54,83900,0,0,362,0,0,0,0,0,0,0,240,4.6,8,6,16,6096,9,999999999,31,0.076,0,88,0.2,0,1 +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,3048,9,999999999,32,0.076,0,88,0.2,0,1 +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,10,53,83700,0,0,394,0,0,0,0,0,0,0,300,3.6,10,10,16,2896,9,999999999,33,0.076,0,88,0.2,0,1 +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,10,9,16,2743,9,999999999,32,0.076,0,88,0.2,0,1 +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,3962,9,999999999,31,0.075,0,88,0.2,0,1 +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,6096,9,999999999,30,0.075,0,88,0.2,0,1 +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,6096,9,999999999,29,0.075,0,88,0.2,0,1 +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,77777,9,999999999,28,0.075,0,88,0.2,0,1 +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,10.6,75,83700,0,0,341,0,0,0,0,0,0,0,200,2.6,9,6,16,6096,9,999999999,27,0.075,0,88,0.2,0,1 +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,798,8995,358,77,200,2.1,10,6,16,6096,9,999999999,26,0.075,0,88,0.2,0,1 +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,60,84000,295,1336,351,194,604,60,22000,16034,6824,2250,240,4.1,9,5,16,7620,9,999999999,25,0.075,0,88,0.2,0,1 +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,10,53,84100,548,1336,365,367,545,143,41522,34894,16249,5642,40,1.5,9,6,16,6706,9,999999999,24,0.075,0,88,0.2,0,1 +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,36198,7649,30414,10595,70,2.1,10,7,16,3962,9,999999999,23,0.075,0,88,0.2,0,1 +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,11.1,57,84200,960,1336,370,171,0,171,17784,0,17954,8434,90,2.1,9,7,16,3962,9,999999999,22,0.075,0,88,0.2,0,1 +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,60607,16041,43264,16003,140,2.6,7,5,16,6706,9,999999999,21,0.075,0,88,0.2,0,1 +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,98902,47682,33761,13334,140,4.1,4,3,16,6706,9,999999999,22,0.075,0,88,0.2,0,1 +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,8.3,35,84200,1162,1336,382,888,839,157,110595,54229,19641,8175,0,0,4,4,16,6706,9,999999999,23,0.075,0,88,0.2,0,1 +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,104499,54038,16923,7101,100,4.6,3,3,16,6706,9,999999999,24,0.075,0,88,0.2,0,1 +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,80056,47239,25032,10012,150,3.1,4,4,16,6706,9,999999999,25,0.075,0,88,0.2,0,1 +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,56643,37633,22159,8396,230,3.1,4,4,14.4,7315,9,999999999,25,0.075,0,88,0.2,0,1 +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,33376,22063,19243,6444,320,3.6,8,8,16,7315,9,999999999,26,0.075,0,88,0.2,0,1 +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,18526,13382,6651,2225,10,4.1,3,3,16,77777,9,999999999,27,0.075,0,88,0.2,0,1 +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,1513,0,932,291,20,3.1,3,3,16,77777,9,999999999,28,0.075,0,88,0.2,0,1 +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,77777,9,999999999,28,0.075,0,88,0.2,0,1 +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,77777,9,999999999,29,0.075,0,88,0.2,0,1 +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,77777,9,999999999,30,0.075,0,88,0.2,0,1 +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,7.8,45,83500,0,0,339,0,0,0,0,0,0,0,220,6.2,0,0,16,77777,9,999999999,31,0.075,0,88,0.2,0,1 +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,7.8,45,83800,0,0,339,0,0,0,0,0,0,0,210,6.2,0,0,16,77777,9,999999999,30,0.075,0,88,0.2,0,1 +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,77777,9,999999999,29,0.075,0,88,0.2,0,1 +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,77777,9,999999999,28,0.075,0,88,0.2,0,1 +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,77777,9,999999999,27,0.075,0,88,0.2,0,1 +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,43,83600,0,0,325,0,0,0,0,0,0,0,220,7.7,0,0,16,77777,9,999999999,26,0.075,0,88,0.2,0,1 +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,46,83400,0,0,320,0,0,0,0,0,0,0,230,6.2,0,0,16,77777,9,999999999,25,0.075,0,88,0.2,0,1 +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,32,83600,52,880,315,6,151,2,671,7563,357,76,220,6.2,0,0,16,77777,9,999999999,24,0.075,0,88,0.2,0,1 +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,27,83800,292,1337,327,186,558,64,21039,17795,7261,2351,230,4.6,0,0,16,77777,9,999999999,23,0.075,0,88,0.2,0,1 +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,20,84000,544,1337,350,368,658,99,43006,38907,11608,4246,230,5.2,0,0,16,77777,9,999999999,22,0.075,0,88,0.2,0,1 +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,17,84100,772,1337,363,553,765,110,66923,49342,13358,5324,250,4.6,0,0,16,77777,9,999999999,21,0.075,0,88,0.2,0,1 +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,14,84300,957,1337,393,672,691,176,80830,49922,21266,8629,310,3.6,3,3,16,77777,9,999999999,20,0.075,0,88,0.2,0,1 +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,94799,52086,24182,9897,340,4.1,3,3,16,77777,9,999999999,19,0.075,0,88,0.2,0,1 +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,92468,88510,16874,4679,350,3.1,3,3,16,77777,9,999999999,18,0.075,0,88,0.2,0,1 +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,114496,60392,21661,8943,10,2.1,3,3,16,77777,9,999999999,17,0.075,0,88,0.2,0,1 +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,79364,36960,39046,14800,20,1.5,6,5,16,77777,9,999999999,16,0.075,0,88,0.2,0,1 +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,70750,39385,30876,11872,30,1.5,5,4,16,7315,9,999999999,15,0.075,0,88,0.2,0,1 +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,46646,23521,28368,10105,50,1.5,8,6,16,7315,9,999999999,14,0.075,0,88,0.2,0,1 +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,13233,0,13342,5324,60,5.7,9,7,16,7315,9,999999999,13,0.075,0,88,0.2,0,1 +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,10437,1788,9360,2885,70,3.6,8,5,16,4267,9,999999999,12,0.075,0,88,0.2,0,1 +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,97,0,97,41,80,2.1,5,4,16,4267,9,999999999,11,0.075,0,88,0.2,0,1 +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,2,20,84000,0,0,401,0,0,0,0,0,0,0,10,9.3,9,8,16.1,3000,9,999999999,10,0.075,0,88,0.2,0,1 +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,3353,9,999999999,9,0.075,0,88,0.2,0,1 +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,3962,9,999999999,8,0.075,0,88,0.2,0,1 +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,3962,9,999999999,7,0.075,0,88,0.2,0,1 +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,3353,9,999999999,8,0.075,0,88,0.2,0,1 +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,7315,9,999999999,9,0.074,0,88,0.2,0,1 +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,33,83800,0,0,366,0,0,0,0,0,0,0,280,3.6,8,5,16,7315,9,999999999,9,0.074,0,88,0.2,0,1 +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,3962,9,999999999,10,0.074,0,88,0.2,0,1 +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,77777,9,999999999,11,0.074,0,88,0.2,0,1 +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,3353,9,999999999,11,0.074,0,88,0.2,0,1 +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,10.6,55,84000,49,858,375,1,0,1,96,0,97,40,230,5.7,9,8,16,3353,9,999999999,12,0.074,0,88,0.2,0,1 +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,2661,0,2680,1137,130,4.6,8,8,16,3048,9,999999999,13,0.074,0,88,0.2,0,1 +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,6437,0,6490,2920,170,5.7,8,8,16,3048,9,999999999,13,0.074,0,88,0.2,0,1 +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,8,43,84200,768,1337,367,92,0,92,9432,0,9516,4541,110,12.3,8,6,14.5,4200,9,999999999,14,0.074,0,88,0.2,0,1 +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,18537,0,18712,8700,190,7.2,8,6,16,4267,9,999999999,14,0.074,0,88,0.2,0,1 +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,31646,1359,30028,11995,170,10.8,8,6,16,6706,9,999999999,15,0.074,0,88,0.2,0,1 +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,72800,25070,43969,16365,150,10.3,4,4,16,6706,9,999999999,15,0.074,0,88,0.2,0,1 +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,96776,47645,33126,13098,150,9.3,5,4,16,6706,9,999999999,15,0.074,0,88,0.2,0,1 +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,90697,47690,29840,11928,160,7.2,6,5,16,6706,9,999999999,16,0.074,0,88,0.2,0,1 +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,46378,8981,38392,13944,140,6.7,3,3,16,6096,9,999999999,16,0.074,0,88,0.2,0,1 +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,62018,44821,20297,7762,130,5.2,3,3,16,6096,9,999999999,16,0.074,0,88,0.2,0,1 +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,24,84400,544,1337,391,360,707,72,43090,36705,8641,3253,140,6.7,8,5,16,77777,9,999999999,16,0.074,0,88,0.2,0,1 +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,26,84300,291,1337,380,169,620,34,20091,12002,4048,1406,150,5.7,3,3,16,77777,9,999999999,16,0.074,0,88,0.2,0,1 +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,773,5985,693,132,140,4.1,3,3,16,77777,9,999999999,17,0.074,0,88,0.2,0,1 +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,77777,9,999999999,17,0.074,0,88,0.2,0,1 +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,77777,9,999999999,17,0.074,0,88,0.2,0,1 +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,77777,9,999999999,17,0.074,0,88,0.2,0,1 +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,5,51,83900,0,0,313,0,0,0,0,0,0,0,180,5.2,0,0,16,77777,9,999999999,17,0.074,0,88,0.2,0,1 +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,77777,9,999999999,17,0.074,0,88,0.2,0,1 +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,43,84000,0,0,325,0,0,0,0,0,0,0,210,6.2,0,0,16,77777,9,999999999,17,0.073,0,88,0.2,0,1 +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,77777,9,999999999,17,0.073,0,88,0.2,0,1 +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,77777,9,999999999,17,0.073,0,88,0.2,0,1 +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,77777,9,999999999,17,0.073,0,88,0.2,0,1 +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,77777,9,999999999,17,0.073,0,88,0.2,0,1 +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,449,4820,356,75,220,5.2,0,0,12.8,77777,9,999999999,17,0.073,0,88,0.2,0,1 +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,17997,13729,8472,2624,220,7.2,0,0,16,77777,9,999999999,17,0.073,0,88,0.2,0,1 +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,34,84300,538,1338,350,383,772,72,45739,39735,8621,3231,200,4.1,1,1,16,77777,9,999999999,17,0.073,0,88,0.2,0,1 +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,68868,49116,10607,4268,210,4.1,1,1,16,77777,9,999999999,17,0.073,0,88,0.2,0,1 +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,15,84600,951,1338,371,691,794,125,85197,52588,15470,6410,190,3.6,0,0,16,77777,9,999999999,17,0.073,0,88,0.2,0,1 +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,95492,53016,21893,9032,210,4.6,1,1,16,77777,9,999999999,17,0.073,0,88,0.2,0,1 +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,104307,54512,21754,8979,210,1.5,3,3,16,77777,9,999999999,17,0.073,0,88,0.2,0,1 +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,108820,56477,18968,7888,210,2.6,3,3,16,77777,9,999999999,16,0.073,0,88,0.2,0,1 +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,87156,89722,15126,3497,80,4.6,3,3,16,77777,9,999999999,16,0.073,0,88,0.2,0,1 +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,75886,88415,13434,2489,50,2.6,3,3,16,77777,9,999999999,16,0.073,0,88,0.2,0,1 +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,12,84500,766,1338,411,564,861,70,60033,86254,10199,1721,10,3.1,3,3,16,77777,9,999999999,16,0.073,0,88,0.2,0,1 +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,39562,75878,7956,1242,80,2.1,6,5,16,77777,9,999999999,16,0.073,0,88,0.2,0,1 +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,18873,11045,4042,1398,150,6.7,6,6,16,77777,9,999999999,16,0.073,0,88,0.2,0,1 +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,666,6179,525,105,170,5.2,4,4,16,77777,9,999999999,15,0.073,0,88,0.2,0,1 +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,77777,9,999999999,15,0.073,0,88,0.2,0,1 +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,77777,9,999999999,15,0.073,0,88,0.2,0,1 +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,77777,9,999999999,15,0.073,0,88,0.2,0,1 +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,77777,9,999999999,15,0.073,0,88,0.2,0,1 +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,6.7,42,83900,0,0,344,0,0,0,0,0,0,0,170,5.7,1,1,16,77777,9,999999999,15,0.073,0,88,0.2,0,1 +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,77777,9,999999999,15,0.072,0,88,0.2,0,1 +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,77777,9,999999999,15,0.072,0,88,0.2,0,1 +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,77777,9,999999999,15,0.072,0,88,0.2,0,1 +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,77777,9,999999999,15,0.072,0,88,0.2,0,1 +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,46,83700,0,0,320,0,0,0,0,0,0,0,230,6.2,0,0,16,77777,9,999999999,15,0.072,0,88,0.2,0,1 +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,448,4971,355,74,220,3.6,0,0,16,77777,9,999999999,15,0.072,0,88,0.2,0,1 +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,19829,16904,9678,2856,230,2.6,0,0,16,77777,9,999999999,15,0.072,0,88,0.2,0,1 +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,40054,35007,13170,4709,240,4.1,1,1,16,77777,9,999999999,15,0.072,0,88,0.2,0,1 +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,25,84300,762,1338,383,514,674,129,61253,44159,15432,6070,240,3.6,3,3,16,77777,9,999999999,15,0.072,0,88,0.2,0,1 +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,4.4,20,84400,948,1338,399,666,722,154,80695,49244,18739,7679,200,2.1,3,3,16,77777,9,999999999,15,0.072,0,88,0.2,0,1 +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,92734,50847,25031,10209,160,4.1,3,3,16,77777,9,999999999,16,0.072,0,88,0.2,0,1 +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,91146,87278,17652,4594,130,5.2,4,4,16,77777,9,999999999,16,0.072,0,88,0.2,0,1 +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,108486,58095,27324,11064,110,4.1,5,4,16,77777,9,999999999,17,0.072,0,88,0.2,0,1 +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,40048,5880,33388,13063,110,5.7,3,3,16,77777,9,999999999,17,0.072,0,88,0.2,0,1 +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,54054,17020,39360,14086,160,6.2,4,4,16,77777,9,999999999,18,0.072,0,88,0.2,0,1 +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,47513,24754,29006,10151,150,5.7,6,6,16,77777,9,999999999,18,0.072,0,88,0.2,0,1 +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,10985,0,11075,4558,160,8.2,5,5,16,77777,9,999999999,19,0.072,0,88,0.2,0,1 +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,17033,13242,8378,2598,160,6.7,8,6,16,6706,9,999999999,19,0.072,0,88,0.2,0,1 +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,193,0,194,79,170,8.2,6,5,16,6706,9,999999999,20,0.072,0,88,0.2,0,1 +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,-1.1,18,83900,0,0,372,0,0,0,0,0,0,0,180,7.2,6,5,16,6706,9,999999999,20,0.072,0,88,0.2,0,1 +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,6706,9,999999999,21,0.072,0,88,0.2,0,1 +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,77777,9,999999999,21,0.072,0,88,0.2,0,1 +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,77777,9,999999999,22,0.072,0,88,0.2,0,1 +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,6096,9,999999999,22,0.072,0,88,0.2,0,1 +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,6096,9,999999999,22,0.071,0,88,0.2,0,1 +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,6096,9,999999999,23,0.071,0,88,0.2,0,1 +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,2.2,31,83500,0,0,338,0,0,0,0,0,0,0,160,6.2,1,1,16,77777,9,999999999,23,0.071,0,88,0.2,0,1 +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,2.2,31,83500,0,0,338,0,0,0,0,0,0,0,210,5.2,1,1,16,77777,9,999999999,23,0.071,0,88,0.2,0,1 +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,77777,9,999999999,23,0.071,0,88,0.2,0,1 +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,263,0,131,40,260,3.1,3,3,16,77777,9,999999999,24,0.071,0,88,0.2,0,1 +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,10967,2614,9467,2797,290,6.2,5,4,16,77777,9,999999999,24,0.071,0,88,0.2,0,1 +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,40599,36364,14122,4973,280,5.7,3,3,16,77777,9,999999999,24,0.071,0,88,0.2,0,1 +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,65037,47752,13536,5371,300,4.6,3,3,16,77777,9,999999999,24,0.071,0,88,0.2,0,1 +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,77607,47330,21087,8542,310,4.1,3,3,16,77777,9,999999999,24,0.071,0,88,0.2,0,1 +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,92880,50803,24217,9912,280,2.6,3,3,16,77777,9,999999999,25,0.071,0,88,0.2,0,1 +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,98745,50975,34783,13607,250,2.6,5,4,16,77777,9,999999999,25,0.071,0,88,0.2,0,1 +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,48620,9929,36775,14233,300,1.5,9,6,16,77777,9,999999999,25,0.071,0,88,0.2,0,1 +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,79810,38006,37450,14310,350,8.8,9,6,16,7620,9,999999999,26,0.071,0,88,0.2,0,1 +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,53348,16778,38769,13913,350,7.2,10,7,16,7315,9,999999999,26,0.071,0,88,0.2,0,1 +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,2.8,18,83900,756,1339,403,447,366,240,50738,30365,27389,9719,300,5.2,8,5,16,7315,9,999999999,26,0.071,0,88,0.2,0,1 +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,11478,0,11572,4697,280,8.8,9,7,16,7315,9,999999999,27,0.071,0,88,0.2,0,1 +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,17415,13470,7840,2454,240,6.2,10,9,16,6706,9,999999999,27,0.071,0,88,0.2,0,1 +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,342,5724,183,40,190,3.6,10,9,16,6706,9,999999999,27,0.071,0,88,0.2,0,1 +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,3.3,33,83500,0,0,374,0,0,0,0,0,0,0,160,4.6,10,9,16,6706,9,999999999,28,0.071,0,88,0.2,0,1 +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,77777,9,999999999,28,0.071,0,88,0.2,0,1 +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,77777,9,999999999,28,0.071,0,88,0.2,0,1 +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,77777,9,999999999,29,0.071,0,88,0.2,0,1 +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,3.3,33,83300,0,0,353,0,0,0,0,0,0,0,210,6.7,8,5,16,77777,9,999999999,28,0.071,0,88,0.2,0,1 +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,77777,9,999999999,28,0.07,0,88,0.2,0,1 +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,77777,9,999999999,28,0.07,0,88,0.2,0,1 +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,77777,9,999999999,28,0.07,0,88,0.2,0,1 +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,77777,9,999999999,28,0.07,0,88,0.2,0,1 +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,77777,9,999999999,28,0.07,0,88,0.2,0,1 +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,227,3984,182,40,230,5.7,5,5,16,77777,9,999999999,28,0.07,0,88,0.2,0,1 +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,18293,14596,8848,2658,220,6.2,3,3,16,77777,9,999999999,27,0.07,0,88,0.2,0,1 +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,41773,37130,10358,3804,240,4.6,5,5,16,77777,9,999999999,27,0.07,0,88,0.2,0,1 +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,65311,48279,13083,5196,270,2.1,5,5,16,77777,9,999999999,27,0.07,0,88,0.2,0,1 +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,80853,50111,18164,7446,180,1.5,5,5,16,77777,9,999999999,27,0.07,0,88,0.2,0,1 +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,92491,51155,23203,9527,90,3.1,5,5,16,77777,9,999999999,27,0.07,0,88,0.2,0,1 +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,97559,50815,28196,11373,50,7.2,5,5,16,77777,9,999999999,26,0.07,0,88,0.2,0,1 +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,99467,52271,27857,11252,50,5.7,5,5,16,77777,9,999999999,26,0.07,0,88,0.2,0,1 +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,99582,54838,17476,7309,60,5.7,9,9,16,7620,9,999999999,26,0.07,0,88,0.2,0,1 +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,80794,51458,23315,9316,30,5.7,9,9,16,7620,9,999999999,26,0.07,0,88,0.2,0,1 +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,2.2,17,83800,750,1340,426,386,242,250,43634,20521,28416,9930,50,11.3,9,9,16,4200,9,999999999,25,0.07,0,88,0.2,0,1 +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,25760,9301,20666,6499,80,7.7,8,8,16,4267,9,999999999,25,0.07,0,88,0.2,0,1 +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,10500,3089,8541,2586,120,2.1,9,9,16,6706,9,999999999,25,0.07,0,88,0.2,0,1 +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,227,3493,182,40,170,5.7,9,9,16,6706,9,999999999,24,0.07,0,88,0.2,0,1 +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,6706,9,999999999,24,0.07,0,88,0.2,0,1 +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,6706,9,999999999,24,0.07,0,88,0.2,0,1 +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,3.9,35,83600,0,0,375,0,0,0,0,0,0,0,20,4.6,9,9,16,6706,9,999999999,23,0.07,0,88,0.2,0,1 +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,8.3,47,83300,0,0,373,0,0,0,0,0,0,0,10,5.7,8,8,16,6706,9,999999999,23,0.07,0,88,0.2,0,1 +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,6096,9,999999999,23,0.07,0,88,0.2,0,1 +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,6096,9,999999999,22,0.07,0,88,0.2,0,1 +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,6096,9,999999999,21,0.07,0,88,0.2,0,1 +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,7.2,60,83500,0,0,354,0,0,0,0,0,0,0,360,4.1,10,9,16,6096,9,999999999,21,0.07,0,88,0.2,0,1 +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,77777,9,999999999,20,0.07,0,88,0.2,0,1 +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,77777,9,999999999,19,0.07,0,88,0.2,0,1 +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,228,3990,182,40,0,0,4,4,16,7620,9,999999999,19,0.07,0,88,0.2,0,1 +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,6.7,58,83800,270,1340,334,167,449,76,18435,14150,8420,2556,360,1.5,6,5,16,77777,9,999999999,18,0.07,0,88,0.2,0,1 +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,42556,37505,10556,3865,0,0,6,5,16,77777,9,999999999,18,0.07,0,88,0.2,0,1 +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,60360,43277,15387,6035,40,1.5,6,5,16,77777,9,999999999,17,0.07,0,88,0.2,0,1 +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,78763,47324,19354,7901,80,1.5,6,5,16,77777,9,999999999,16,0.07,0,88,0.2,0,1 +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,95398,50596,20518,8527,120,3.6,6,5,16,77777,9,999999999,16,0.07,0,88,0.2,0,1 +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,41,84000,1137,1340,381,825,733,201,100414,50114,24588,10090,190,4.6,6,5,16,77777,9,999999999,16,0.07,0,88,0.2,0,1 +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,35,84100,1136,1340,396,870,851,147,108376,53585,18391,7690,120,3.6,6,5,16,77777,9,999999999,16,0.07,0,88,0.2,0,1 +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,94888,51353,25142,10262,130,6.2,10,9,16,7315,9,999999999,16,0.07,0,88,0.2,0,1 +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,55289,20463,36590,13326,230,9.8,10,10,12.8,3048,9,999999999,16,0.07,0,88,0.2,0,1 +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,10.3,54,83800,745,1340,383,88,0,88,8994,0,9075,4323,250,10.8,10,9,16,2286,9,999999999,16,0.07,0,88,0.2,0,1 +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,5728,0,5775,2600,130,6.7,9,7,16,6706,9,999999999,16,0.07,0,88,0.2,0,1 +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,16076,10282,7676,2379,210,4.1,10,9,16,3353,9,999999999,16,0.07,0,88,0.2,0,1 +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,6706,9,999999999,16,0.07,0,88,0.2,0,1 +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,6706,9,999999999,16,0.07,0,88,0.2,0,1 +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,8.3,47,83800,0,0,381,0,0,0,0,0,0,0,210,9.8,9,9,16,2438,9,999999999,16,0.07,0,88,0.2,0,1 +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,6096,9,999999999,15,0.07,0,88,0.2,0,1 +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,77777,9,999999999,15,0.07,0,88,0.2,0,1 +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,6096,9,999999999,17,0.07,0,88,0.2,0,1 +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,6.7,58,83500,0,0,321,0,0,0,0,0,0,0,110,4.6,1,1,16,77777,9,999999999,18,0.068,0,88,0.2,0,1 +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,77777,9,999999999,19,0.068,0,88,0.2,0,1 +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,6.1,55,83500,0,0,314,0,0,0,0,0,0,0,180,4.6,0,0,16,77777,9,999999999,21,0.068,0,88,0.2,1,1 +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,77777,9,999999999,22,0.068,0,88,0.2,0,1 +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,10,72,83500,0,0,329,0,0,0,0,0,0,0,200,3.1,3,2,16,77777,9,999999999,23,0.068,0,88,0.2,0,1 +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,10.6,75,83600,36,726,335,1,18,1,129,0,129,40,250,5.2,5,4,16,6706,9,999999999,25,0.068,0,88,0.2,0,1 +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,11256,3228,9105,2677,260,4.1,7,5,16,6706,9,999999999,26,0.068,0,88,0.2,0,1 +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,37638,31290,16878,5661,260,4.1,6,5,16,6706,9,999999999,27,0.068,0,88,0.2,0,1 +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,8.9,49,83900,749,1341,360,350,141,271,39160,12008,30496,10374,300,2.6,6,5,16,3962,9,999999999,28,0.068,0,88,0.2,0,1 +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,63398,31126,33966,12625,330,2.1,6,5,16,3962,9,999999999,30,0.068,0,88,0.2,0,1 +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,69118,26168,42321,15607,10,2.1,8,6,16,7620,9,999999999,31,0.068,0,88,0.2,0,1 +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,95115,47350,36523,14160,50,2.6,8,5,16,6706,9,999999999,31,0.068,0,88,0.2,0,1 +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,41222,2933,37933,14590,30,2.6,7,5,16,3962,9,999999999,30,0.068,0,88,0.2,0,1 +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,13558,0,13690,6783,0,0,9,6,16,3962,9,999999999,30,0.068,0,88,0.2,0,1 +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,54630,20226,36490,13253,230,8.2,8,6,16,3962,9,999999999,30,0.068,0,88,0.2,0,1 +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,13508,0,13628,6120,290,4.6,7,5,16,4267,9,999999999,30,0.068,0,88,0.2,0,1 +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,7222,0,7281,3179,320,5.2,10,10,16,3048,9,999999999,29,0.068,0,88,0.2,0,1 +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,4609,0,4643,1775,240,5.7,9,9,16,3353,9,999999999,29,0.068,0,88,0.2,0,1 +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,6706,9,999999999,29,0.068,0,88,0.2,0,1 +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,8.9,49,83800,0,0,357,0,0,0,0,0,0,0,210,7.2,5,4,16,6706,9,999999999,28,0.068,0,88,0.2,0,1 +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,6096,9,999999999,28,0.068,0,88,0.2,0,1 +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,77777,9,999999999,28,0.068,0,88,0.2,0,1 +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,77777,9,999999999,28,0.068,0,88,0.2,0,1 +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,4,3,16,6096,9,999999999,28,0.068,0,88,0.2,0,1 +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,77777,9,999999999,14,0.067,0,88,0.2,0,1 +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,77777,9,999999999,13,0.067,0,88,0.2,0,1 +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,77777,9,999999999,12,0.067,0,88,0.2,0,1 +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,77777,9,999999999,11,0.067,0,88,0.2,0,1 +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,77777,9,999999999,11,0.067,0,88,0.2,0,1 +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,1.7,56,83700,34,704,289,1,102,0,0,0,0,0,230,4.1,0,0,16,77777,9,999999999,10,0.067,0,88,0.2,0,1 +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,20048,16170,7078,2224,250,3.1,0,0,16,77777,9,999999999,10,0.067,0,88,0.2,0,1 +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,43796,40825,9801,3595,310,2.1,0,0,16,77777,9,999999999,9,0.067,0,88,0.2,0,1 +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,28,84200,746,1342,325,555,846,84,68218,51103,10354,4139,0,0,0,0,16,77777,9,999999999,9,0.067,0,88,0.2,0,1 +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,23,84300,932,1342,340,711,855,116,87871,55780,14387,5955,0,0,0,0,16,77777,9,999999999,9,0.067,0,88,0.2,0,1 +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,21,83800,1063,1342,360,829,929,92,87551,94430,12527,2966,0,0,3,3,16,77777,9,999999999,9,0.067,0,88,0.2,0,1 +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,94906,97396,12237,3455,50,1.5,3,3,16,77777,9,999999999,10,0.067,0,88,0.2,0,1 +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,94441,97622,11477,3288,90,4.1,3,3,16,77777,9,999999999,11,0.067,0,88,0.2,0,1 +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,84856,88277,16471,3359,80,5.7,3,3,16,77777,9,999999999,11,0.067,0,88,0.2,0,1 +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,75149,91084,12586,2300,90,3.1,3,3,16,77777,9,999999999,11,0.067,0,88,0.2,0,1 +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,57847,86761,9833,1636,90,4.1,4,4,16,77777,9,999999999,12,0.067,0,88,0.2,0,1 +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,42260,38795,6916,2581,70,3.1,5,5,16,77777,9,999999999,12,0.067,0,88,0.2,0,1 +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,15265,51001,4379,667,70,2.6,3,3,16,77777,9,999999999,12,0.067,0,88,0.2,0,1 +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,77777,9,999999999,13,0.067,0,88,0.2,0,1 +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,77777,9,999999999,13,0.067,0,88,0.2,0,1 +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,43,83900,0,0,325,0,0,0,0,0,0,0,170,5.2,0,0,16,77777,9,999999999,13,0.067,0,88,0.2,0,1 +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,77777,9,999999999,13,0.067,0,88,0.2,0,1 +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,77777,9,999999999,13,0.067,0,88,0.2,0,1 +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,77777,9,999999999,12,0.067,0,88,0.2,0,1 +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,77777,9,999999999,12,0.066,0,88,0.2,0,1 +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,4.4,49,83700,0,0,318,0,0,0,0,0,0,0,260,4.1,1,1,16,77777,9,999999999,12,0.066,0,88,0.2,0,1 +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,77777,9,999999999,12,0.066,0,88,0.2,0,1 +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,53,83800,0,0,321,0,0,0,0,0,0,0,240,3.1,2,2,16,77777,9,999999999,13,0.066,0,88,0.2,0,1 +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,77777,9,999999999,13,0.066,0,88,0.2,0,1 +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,6096,9,999999999,13,0.066,0,88,0.2,0,1 +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,19524,11877,5805,1891,260,2.6,3,3,16,7315,9,999999999,13,0.066,0,88,0.2,0,1 +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,41321,37000,11815,4239,290,1.5,7,7,16,6706,9,999999999,12,0.066,0,88,0.2,0,1 +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,70823,51677,11230,4482,320,1.5,5,5,16,77777,9,999999999,13,0.066,0,88,0.2,0,1 +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,84872,52177,15266,6311,350,1.5,5,5,16,77777,9,999999999,13,0.066,0,88,0.2,0,1 +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,23,83800,1059,1342,391,774,754,177,94270,52340,21658,8942,20,2.6,3,3,16,77777,9,999999999,13,0.066,0,88,0.2,0,1 +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,91224,90768,15769,3995,50,3.1,3,3,16,77777,9,999999999,13,0.066,0,88,0.2,0,1 +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,92064,93843,13511,3632,50,3.1,3,3,16,77777,9,999999999,14,0.066,0,88,0.2,0,1 +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,88769,94996,14842,3181,70,6.2,5,5,16,77777,9,999999999,14,0.066,0,88,0.2,0,1 +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,85017,57157,19928,8047,0,0,5,5,16,77777,9,999999999,15,0.066,0,88,0.2,0,1 +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,46078,26481,26975,9405,120,5.2,4,4,16,77777,9,999999999,16,0.066,0,88,0.2,0,1 +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,32949,27435,15184,5135,160,6.7,5,5,16,77777,9,999999999,17,0.066,0,88,0.2,0,1 +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,14448,8637,5999,1912,160,6.2,3,3,16,77777,9,999999999,18,0.066,0,88,0.2,0,1 +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,77777,9,999999999,18,0.066,0,88,0.2,0,1 +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,77777,9,999999999,19,0.066,0,88,0.2,0,1 +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,77777,9,999999999,19,0.066,0,88,0.2,0,1 +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,77777,9,999999999,18,0.066,0,88,0.2,0,1 +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,40,83800,0,0,350,0,0,0,0,0,0,0,190,6.2,5,5,16,77777,9,999999999,18,0.066,0,88,0.2,0,1 +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,77777,9,999999999,17,0.066,0,88,0.2,0,1 +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,77777,9,999999999,17,0.066,0,88,0.2,0,1 +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,4.4,36,83800,0,0,349,0,0,0,0,0,0,0,180,6.7,3,3,16,77777,9,999999999,17,0.066,0,88,0.2,0,1 +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,5,51,83800,0,0,329,0,0,0,0,0,0,0,150,5.2,4,4,16,77777,9,999999999,16,0.066,0,88,0.2,0,1 +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,5,51,83800,0,0,329,0,0,0,0,0,0,0,180,4.6,4,4,16,77777,9,999999999,15,0.066,0,88,0.2,0,1 +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,48,83800,0,0,334,0,0,0,0,0,0,0,210,1.5,4,4,16,4877,9,999999999,13,0.066,0,88,0.2,0,1 +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,5,51,83800,30,660,327,0,0,0,0,0,0,0,240,4.6,3,3,16,77777,9,999999999,13,0.066,0,88,0.2,0,1 +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,40,84100,255,1343,337,173,642,51,19633,12657,5803,1881,240,4.6,1,1,16,6706,9,999999999,13,0.066,0,88,0.2,0,1 +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,43636,38724,8128,3018,240,6.2,3,3,16,7620,9,999999999,13,0.066,0,88,0.2,0,1 +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,65800,49224,11691,4646,300,3.1,3,3,16,77777,9,999999999,13,0.066,0,88,0.2,0,1 +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,83980,53532,15853,6525,230,1.5,4,4,16,77777,9,999999999,13,0.066,0,88,0.2,0,1 +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,83828,87048,16494,3323,150,3.6,5,5,16,77777,9,999999999,13,0.066,0,88,0.2,0,1 +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,92870,92910,15899,3960,130,2.1,5,5,16,77777,9,999999999,13,0.066,0,88,0.2,0,1 +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,90689,47233,33036,12996,100,4.6,6,6,16,7620,9,999999999,13,0.066,0,88,0.2,0,1 +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,102533,60929,21213,8748,80,4.6,5,5,16,77777,9,999999999,13,0.066,0,88,0.2,0,1 +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,75218,48540,24763,9721,120,5.7,5,5,16,77777,9,999999999,15,0.066,0,88,0.2,0,1 +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,53269,39229,20779,7700,130,5.7,7,6,16,77777,9,999999999,16,0.066,0,88,0.2,0,1 +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.6,15,83500,490,1343,408,302,546,102,34810,31595,11798,4173,170,7.2,7,7,16,6096,9,999999999,17,0.066,0,88,0.2,0,1 +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,14885,5333,3757,1263,190,7.2,7,5,16,3962,9,999999999,17,0.066,0,88,0.2,0,1 +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,3962,9,999999999,17,0.066,0,88,0.2,0,1 +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,3962,9,999999999,17,0.066,0,88,0.2,0,1 +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,3962,9,999999999,16,0.066,0,88,0.2,0,1 +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,3962,9,999999999,16,0.066,0,88,0.2,0,1 +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,6706,9,999999999,16,0.066,0,88,0.2,0,1 +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,77777,9,999999999,16,0.066,0,88,0.2,0,1 +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,77777,9,999999999,16,0.065,0,88,0.2,0,1 +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,3.9,35,83600,0,0,349,0,0,0,0,0,0,0,190,5.2,4,3,16,6096,9,999999999,16,0.065,0,88,0.2,0,1 +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,6096,9,999999999,17,0.065,0,88,0.2,0,1 +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,6096,9,999999999,18,0.065,0,88,0.2,0,1 +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,6706,9,999999999,20,0.065,0,88,0.2,0,1 +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,5486,9,999999999,19,0.065,0,88,0.2,0,1 +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,5,37,83900,251,1344,353,165,624,48,18789,11107,5480,1786,230,4.1,4,4,16,77777,9,999999999,19,0.065,0,88,0.2,0,1 +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,31,83600,507,1344,366,367,801,64,43914,38599,7676,2855,240,3.1,4,4,16,77777,9,999999999,19,0.065,0,88,0.2,0,1 +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,66300,49163,10777,4293,320,2.6,5,5,16,77777,9,999999999,19,0.065,0,88,0.2,0,1 +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,76269,92974,12346,2262,30,4.6,5,5,16,77777,9,999999999,19,0.065,0,88,0.2,0,1 +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,87452,95459,12179,2839,20,3.1,6,6,16,77777,9,999999999,19,0.065,0,88,0.2,0,1 +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,3.9,19,84400,1118,1344,413,855,890,113,90184,90860,15049,3793,10,4.6,7,7,16,77777,9,999999999,19,0.065,0,88,0.2,0,1 +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,105081,55277,17102,7158,70,4.1,7,6,16,77777,9,999999999,19,0.065,0,88,0.2,0,1 +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,3.3,18,83500,1043,1344,404,817,908,111,86172,92457,15013,3118,40,2.1,5,5,16,77777,9,999999999,19,0.065,0,88,0.2,0,1 +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,73044,89117,13165,2277,360,1.5,5,4,16,77777,9,999999999,18,0.065,0,88,0.2,0,1 +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,65424,50148,10753,4263,330,2.6,5,5,16,77777,9,999999999,18,0.065,0,88,0.2,0,1 +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,37740,34525,9079,3306,40,2.6,6,5,16,77777,9,999999999,18,0.065,0,88,0.2,0,1 +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,15260,3845,3527,1187,340,6.7,4,4,16,77777,9,999999999,18,0.065,0,88,0.2,0,1 +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,5.6,29,84000,18,526,375,0,0,0,0,0,0,0,330,4.6,3,3,16,77777,9,999999999,18,0.065,0,88,0.2,0,1 +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,4267,9,999999999,18,0.065,0,88,0.2,0,1 +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,77777,9,999999999,18,0.065,0,88,0.2,0,1 +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,3658,9,999999999,18,0.065,0,88,0.2,0,1 +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,3658,9,999999999,18,0.065,0,88,0.2,0,1 +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,3658,9,999999999,18,0.065,0,88,0.2,0,1 +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,77777,9,999999999,18,0.064,0,88,0.2,0,1 +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,7.2,43,83500,0,0,371,0,0,0,0,0,0,0,220,4.6,8,8,16,3353,9,999999999,18,0.064,0,88,0.2,0,1 +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,6096,9,999999999,19,0.064,0,88,0.2,0,1 +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,6096,9,999999999,19,0.064,0,88,0.2,0,1 +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,3353,9,999999999,20,0.064,0,88,0.2,0,1 +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,4267,9,999999999,20,0.064,0,88,0.2,0,1 +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,17843,14537,10839,2803,230,4.6,5,5,16,4267,9,999999999,19,0.064,0,88,0.2,0,1 +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,22070,10998,14546,4976,240,5.2,3,3,16,77777,9,999999999,19,0.064,0,88,0.2,0,1 +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,61676,47776,21736,8013,310,2.6,3,3,16,77777,9,999999999,18,0.064,0,88,0.2,0,1 +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,80619,51967,20546,8276,10,3.1,3,3,16,77777,9,999999999,18,0.064,0,88,0.2,0,1 +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,2.2,17,83700,1048,1344,399,830,917,113,87362,93243,15255,3162,60,4.1,4,4,16,77777,9,999999999,17,0.064,0,88,0.2,0,1 +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,103918,55525,19078,7947,270,3.1,5,5,16,77777,9,999999999,18,0.064,0,88,0.2,0,1 +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,2.8,18,84300,1111,1344,407,815,671,260,97171,52464,31173,12385,310,2.1,6,6,16,4267,9,999999999,18,0.064,0,88,0.2,0,1 +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,44451,10281,33266,12905,260,3.1,7,7,16,4572,9,999999999,18,0.064,0,88,0.2,0,1 +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,62483,32608,33958,12394,200,2.1,7,7,16,4572,9,999999999,18,0.064,0,88,0.2,0,1 +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,12889,0,13001,5788,150,5.7,7,6,16,7620,9,999999999,19,0.064,0,88,0.2,0,1 +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,37147,35315,15328,5077,180,4.6,9,7,16,7620,9,999999999,19,0.064,0,88,0.2,0,1 +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,11730,4832,5429,1721,250,2.1,6,6,16,7620,9,999999999,19,0.064,0,88,0.2,0,1 +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,5.6,29,84200,16,482,378,0,0,0,0,0,0,0,330,4.6,5,4,16,7620,9,999999999,18,0.064,0,88,0.2,0,1 +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,35,83700,0,0,361,0,0,0,0,0,0,0,100,4.1,5,5,16,7620,9,999999999,17,0.064,0,88,0.2,0,1 +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,40,83900,0,0,350,0,0,0,0,0,0,0,140,3.1,5,5,16,77777,9,999999999,17,0.064,0,88,0.2,0,1 +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,77777,9,999999999,16,0.064,0,88,0.2,0,1 +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,77777,9,999999999,16,0.064,0,88,0.2,0,1 +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,16,77777,9,999999999,15,0.064,0,88,0.2,0,1 +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,77777,9,999999999,15,0.063,0,88,0.2,0,1 +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,77777,9,999999999,15,0.063,0,88,0.2,0,1 +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,77777,9,999999999,16,0.063,0,88,0.2,0,1 +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,77777,9,999999999,17,0.063,0,88,0.2,0,1 +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,77777,9,999999999,19,0.063,0,88,0.2,0,1 +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,6096,9,999999999,19,0.063,0,88,0.2,0,1 +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,18101,14949,10327,2717,330,6.2,6,6,16,4267,9,999999999,19,0.063,0,88,0.2,0,1 +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,28747,17438,18664,5911,310,6.2,8,8,16,4267,9,999999999,19,0.063,0,88,0.2,0,1 +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,44569,21894,29055,9863,300,4.6,10,9,16,3048,9,999999999,19,0.063,0,88,0.2,0,1 +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,44084,8582,36811,13188,20,3.6,10,9,16,2743,9,999999999,19,0.063,0,88,0.2,0,1 +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,47561,4875,43028,15647,30,4.6,9,9,16,2134,9,999999999,19,0.063,0,88,0.2,0,1 +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,14770,0,14916,7341,50,2.6,9,9,16,3048,9,999999999,20,0.063,0,88,0.2,0,1 +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,106496,58301,29980,11998,30,5.7,8,8,16,4267,9,999999999,20,0.063,0,88,0.2,0,1 +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,85889,46781,33382,12945,10,4.1,6,6,16,4267,9,999999999,20,0.063,0,88,0.2,0,1 +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,8.9,36,84600,896,1345,385,273,36,249,31553,2828,28938,10988,30,4.1,5,5,16,4267,9,999999999,22,0.063,0,88,0.2,0,1 +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,8.9,36,84600,704,1345,379,317,135,246,35469,11109,27678,9407,60,2.1,3,3,16,77777,9,999999999,23,0.063,0,88,0.2,0,1 +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,34538,30573,15267,5038,80,3.6,6,5,16,77777,9,999999999,24,0.063,0,88,0.2,0,1 +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,2345,0,2362,964,140,5.2,7,7,16,4572,9,999999999,23,0.063,0,88,0.2,0,1 +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,3300,9,999999999,23,0.063,0,88,0.2,0,1 +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,3658,9,999999999,22,0.063,0,88,0.2,0,1 +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,3658,9,999999999,22,0.063,0,88,0.2,0,1 +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,3962,9,999999999,21,0.063,0,88,0.2,0,1 +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,77,84100,0,0,344,0,0,0,0,0,0,0,180,3.1,9,8,16,3962,9,999999999,21,0.063,0,88,0.2,0,1 +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,77,84200,0,0,324,0,0,0,0,0,0,0,190,4.1,2,2,16,77777,9,999999999,20,0.063,0,88,0.2,0,1 +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,10,72,84200,0,0,332,0,0,0,0,0,0,0,170,4.6,3,3,16,6096,9,999999999,20,0.062,0,88,0.2,0,1 +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,75,84000,0,0,337,0,0,0,0,0,0,0,150,3.1,6,6,16,6096,9,999999999,20,0.062,0,88,0.2,0,1 +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,10.6,75,84000,0,0,350,0,0,0,0,0,0,0,240,3.1,8,8,16,3353,9,999999999,20,0.062,0,88,0.2,0,1 +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,83,84000,0,0,339,0,0,0,0,0,0,0,40,2.1,8,8,16,3353,9,999999999,21,0.062,0,88,0.2,0,1 +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,3353,9,999999999,21,0.062,0,88,0.2,0,1 +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,77777,9,999999999,21,0.062,0,88,0.2,0,1 +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,18609,13599,8302,2399,260,4.1,3,3,16,77777,9,999999999,20,0.062,0,88,0.2,0,1 +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,42695,36227,8515,3137,260,4.6,3,3,16,77777,9,999999999,20,0.062,0,88,0.2,0,1 +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,61405,44891,14186,5547,270,3.6,3,3,16,77777,9,999999999,20,0.062,0,88,0.2,0,1 +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,77703,93921,14380,2331,300,3.6,3,3,16,77777,9,999999999,19,0.062,0,88,0.2,0,1 +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,95325,51303,17562,7350,350,2.6,5,5,16,77777,9,999999999,19,0.062,0,88,0.2,0,1 +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,90069,90781,16111,3771,40,4.1,6,6,16,77777,9,999999999,19,0.062,0,88,0.2,0,1 +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,101944,53827,18330,7661,80,5.7,7,7,16,77777,9,999999999,19,0.062,0,88,0.2,0,1 +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,85495,93506,14419,2953,20,6.2,4,4,16,77777,9,999999999,19,0.062,0,88,0.2,0,1 +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,73044,91915,12007,2142,30,2.6,4,4,16,77777,9,999999999,19,0.062,0,88,0.2,0,1 +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,64804,50985,9931,3924,40,3.1,5,5,16,77777,9,999999999,20,0.062,0,88,0.2,0,1 +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,36003,33029,7623,2785,40,2.1,5,5,16,77777,9,999999999,20,0.062,0,88,0.2,0,1 +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,12806,901,3177,1061,50,3.6,5,5,16,77777,9,999999999,20,0.062,0,88,0.2,0,1 +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,77777,9,999999999,21,0.062,0,88,0.2,0,1 +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,6096,9,999999999,22,0.062,0,88,0.2,0,1 +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,3353,9,999999999,22,0.062,0,88,0.2,0,1 +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,11.7,59,84100,0,0,385,0,0,0,0,0,0,0,130,6.7,9,9,16,6096,9,999999999,22,0.062,0,88,0.2,0,1 +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,11.1,57,83800,0,0,363,0,0,0,0,0,0,0,160,6.2,5,5,16,77777,9,999999999,21,0.062,0,88,0.2,0,1 +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,77777,9,999999999,21,0.062,0,88,0.2,0,1 +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,77777,9,999999999,21,0.062,0,88,0.2,0,1 +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,6096,9,999999999,21,0.062,0,88,0.2,0,1 +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,77777,9,999999999,21,0.062,0,88,0.2,0,1 +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,77777,9,999999999,21,0.062,0,88,0.2,0,1 +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,6096,9,999999999,21,0.062,0,88,0.2,0,1 +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,11.1,77,83800,21,572,342,0,0,0,0,0,0,0,250,3.1,6,6,16,3658,9,999999999,21,0.062,0,88,0.2,0,1 +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,18164,8765,5847,1854,240,3.6,6,6,16,3658,9,999999999,21,0.062,0,88,0.2,0,1 +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,43,83800,492,1346,386,362,797,70,42777,36841,8294,3054,290,2.1,7,7,16,3658,9,999999999,21,0.062,0,88,0.2,0,1 +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,59226,42457,13727,5377,270,2.6,8,8,16,6706,9,999999999,21,0.062,0,88,0.2,0,1 +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,35,84300,907,1346,404,649,637,218,75842,47066,25607,9991,0,0,8,7,16,3962,9,999999999,20,0.062,0,88,0.2,0,1 +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,46217,11190,33929,13115,340,1.5,8,8,16,6706,9,999999999,20,0.062,0,88,0.2,0,1 +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,105886,57249,24135,9908,310,4.1,8,8,16,6706,9,999999999,21,0.062,0,88,0.2,0,1 +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,101023,54519,22215,9177,320,3.6,7,6,16,3900,9,999999999,22,0.062,0,88,0.2,0,1 +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,58949,19289,39896,14739,320,4.6,9,8,16,3962,9,999999999,23,0.062,0,88,0.2,0,1 +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,73420,46114,32437,11889,330,3.1,8,6,16,3962,9,999999999,24,0.062,0,88,0.2,0,1 +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,6,20,84200,692,1346,427,93,0,93,9484,0,9566,4420,230,5.2,8,7,16,6096,9,999999999,24,0.062,0,88,0.2,0,1 +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,11093,0,11182,4310,270,6.2,8,8,16,3962,9,999999999,24,0.062,0,88,0.2,0,1 +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,2248,0,2264,916,290,3.6,9,7,16,3962,9,999999999,24,0.062,0,88,0.2,0,1 +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,9,6,16,3962,9,999999999,24,0.062,0,88,0.2,0,1 +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,7,7,16,3353,9,999999999,23,0.062,0,88,0.2,0,1 +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,3658,9,999999999,24,0.062,0,88,0.2,0,1 +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,3353,9,999999999,24,0.062,0,88,0.2,0,1 +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,3658,9,999999999,24,0.062,0,88,0.2,0,1 +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,3658,9,999999999,23,0.062,0,88,0.2,0,1 +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,3658,9,999999999,23,0.061,0,88,0.2,0,1 +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,3658,9,999999999,23,0.061,0,88,0.2,0,1 +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,77777,9,999999999,22,0.061,0,88,0.2,0,1 +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,77777,9,999999999,22,0.061,0,88,0.2,0,1 +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,77777,9,999999999,22,0.061,0,88,0.2,0,1 +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,77777,9,999999999,21,0.061,0,88,0.2,0,1 +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,17791,13435,8386,2371,220,4.1,3,3,16,77777,9,999999999,21,0.061,0,88,0.2,0,1 +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,8.9,36,83200,488,1347,379,356,779,73,41916,36878,8619,3156,230,3.1,3,3,16,77777,9,999999999,20,0.061,0,88,0.2,0,1 +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,64533,47753,10727,4253,260,4.1,3,3,16,77777,9,999999999,20,0.061,0,88,0.2,0,1 +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,75172,47433,25617,9970,330,2.6,3,3,16,77777,9,999999999,21,0.061,0,88,0.2,0,1 +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,45522,10780,33814,13059,320,1.5,5,5,16,77777,9,999999999,21,0.061,0,88,0.2,0,1 +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,98457,53403,29399,11782,310,4.6,7,7,16,6096,9,999999999,21,0.061,0,88,0.2,0,1 +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,95429,51658,25707,10471,260,3.1,9,7,16,6096,9,999999999,22,0.061,0,88,0.2,0,1 +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,79023,42516,32685,12658,210,2.6,9,7,16,6096,9,999999999,22,0.061,0,88,0.2,0,1 +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,5.6,21,83600,879,1347,431,244,24,229,28347,1872,26745,10228,160,3.1,10,9,16,3353,9,999999999,23,0.061,0,88,0.2,0,1 +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,20620,431,20371,7425,270,9.8,9,8,16,3048,9,999999999,25,0.061,0,88,0.2,0,1 +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,7.2,32,82900,451,1347,391,60,0,60,5991,0,6039,2609,280,5.2,7,7,16,3048,9,999999999,26,0.061,0,88,0.2,0,1 +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,1463,0,1473,618,220,3.1,10,8,16,3658,9,999999999,25,0.061,0,88,0.2,0,1 +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,3658,9,999999999,24,0.061,0,88,0.2,0.3,1 +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,12.2,61,82900,0,0,385,0,0,0,0,0,0,0,130,3.1,10,9,16,3048,9,999999999,23,0.061,0,88,0.2,0,1 +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,3962,9,999999999,23,0.061,0,88,0.2,0,1 +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,3962,9,999999999,22,0.061,0,88,0.2,0,1 +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,3962,9,999999999,22,0.061,0,88,0.2,0,1 +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,6096,9,999999999,21,0.061,0,88,0.2,0,1 +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,3962,9,999999999,20,0.061,0,88,0.2,0,1 +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,3962,9,999999999,18,0.061,0,88,0.2,0,1 +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,3962,9,999999999,18,0.061,0,88,0.2,0,1 +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,6096,9,999999999,18,0.061,0,88,0.2,0,1 +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,4267,9,999999999,18,0.061,0,88,0.2,0,1 +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,6.1,40,83000,18,528,357,0,0,0,0,0,0,0,200,7.7,8,5,16,4267,9,999999999,15,0.061,0,88,0.2,0,1 +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,3035,0,3057,1214,240,7.7,9,7,16,4267,9,999999999,13,0.061,0,88,0.2,0,1 +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,13820,0,13931,5130,320,4.6,6,6,16,7620,9,999999999,10,0.061,0,88,0.2,0,1 +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,31,83400,714,1348,372,306,98,253,34243,8350,28470,9599,320,3.6,6,6,16,7620,9,999999999,10,0.061,0,88,0.2,0,1 +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,29,83400,900,1348,374,579,443,283,66338,37564,32612,12000,280,2.1,4,4,16,7620,9,999999999,10,0.061,0,88,0.2,0,1 +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,92565,54529,21356,8779,240,5.2,4,4,16,7620,9,999999999,9,0.061,0,88,0.2,0,1 +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,105148,58040,17408,7280,190,3.1,3,3,16,77777,9,999999999,9,0.061,0,88,0.2,0,1 +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.6,14,83600,1087,1348,392,779,683,227,93602,52117,27418,11061,140,4.1,3,3,16,77777,9,999999999,9,0.061,0,88,0.2,0,1 +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,95886,56739,15143,6332,190,4.6,3,3,16,77777,9,999999999,9,0.061,0,88,0.2,0,1 +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,68046,85304,13367,2163,240,4.6,3,3,16,77777,9,999999999,10,0.061,0,88,0.2,0,1 +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,59508,48575,10474,4098,170,2.6,3,3,16,77777,9,999999999,11,0.061,0,88,0.2,0,1 +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,32053,70655,7749,1099,100,3.6,6,5,16,77777,9,999999999,11,0.061,0,88,0.2,0,1 +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,11256,0,2935,969,140,5.2,3,3,16,77777,9,999999999,11,0.061,0,88,0.2,0,1 +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,77777,9,999999999,12,0.061,0,88,0.2,0,1 +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,-1.1,24,82800,0,0,328,0,0,0,0,0,0,0,160,5.2,0,0,16,77777,9,999999999,12,0.061,0,88,0.2,0,1 +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,77777,9,999999999,11,0.061,0,88,0.2,0,1 +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,77777,9,999999999,10,0.061,0,88,0.2,0,1 +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,77777,9,999999999,9,0.061,0,88,0.2,0,1 +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,2.2,31,83200,0,0,332,0,0,0,0,0,0,0,220,5.7,0,0,16,77777,9,999999999,9,0.061,0,88,0.2,0,1 +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,1.7,30,83100,0,0,332,0,0,0,0,0,0,0,220,6.7,0,0,16,77777,9,999999999,8,0.06,0,88,0.2,0,1 +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,1.1,28,83000,0,0,331,0,0,0,0,0,0,0,210,6.7,0,0,16,77777,9,999999999,7,0.06,0,88,0.2,0,1 +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,77777,9,999999999,7,0.06,0,88,0.2,0,1 +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,77777,9,999999999,7,0.06,0,88,0.2,0,1 +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,77777,9,999999999,7,0.06,0,88,0.2,0,1 +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.6,37,83200,17,506,308,0,0,0,0,0,0,0,220,3.6,0,0,16,77777,9,999999999,7,0.06,0,88,0.2,0,1 +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,17182,14169,8187,2291,210,4.6,5,5,16,77777,9,999999999,7,0.06,0,88,0.2,0,1 +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,38936,36003,7973,2917,210,5.2,0,0,16,77777,9,999999999,8,0.06,0,88,0.2,0,1 +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,-1.1,18,83800,710,1348,351,512,768,106,61442,48974,12763,4983,190,2.1,0,0,16,77777,9,999999999,8,0.06,0,88,0.2,0,1 +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,74966,49858,21158,8420,160,3.1,0,0,16,77777,9,999999999,8,0.06,0,88,0.2,0,1 +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,93859,55927,19762,8164,140,7.2,0,0,16,77777,9,999999999,9,0.06,0,88,0.2,0,1 +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,90107,95819,12342,3090,110,4.1,0,0,16,77777,9,999999999,9,0.06,0,88,0.2,0,1 +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,-3.9,10,83800,1083,1348,388,838,947,77,88620,96076,10554,2744,110,3.1,3,3,16,77777,9,999999999,10,0.06,0,88,0.2,0,1 +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,82969,94847,11620,2526,120,1.5,3,3,16,77777,9,999999999,11,0.06,0,88,0.2,0,1 +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,69923,90030,12047,2073,120,3.6,4,4,16,77777,9,999999999,12,0.06,0,88,0.2,0,1 +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,60493,49586,9557,3746,160,6.7,5,5,16,77777,9,999999999,13,0.06,0,88,0.2,0,1 +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,-3.9,10,82900,438,1348,394,290,689,65,34230,32604,7691,2767,100,7.7,5,5,16,77777,9,999999999,13,0.06,0,88,0.2,0,1 +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,9300,0,3144,1026,100,4.6,7,6,16,77777,9,999999999,14,0.06,0,88,0.2,0,1 +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,77777,9,999999999,15,0.06,0,88,0.2,0,1 +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,77777,9,999999999,15,0.06,0,88,0.2,0,1 +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,6706,9,999999999,15,0.06,0,88,0.2,0,1 +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,6706,9,999999999,15,0.06,0,88,0.2,0,1 +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,6706,9,999999999,15,0.06,0,88,0.2,0,1 +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,77777,9,999999999,14,0.06,0,88,0.2,0,1 +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,77777,9,999999999,14,0.06,0,88,0.2,0,1 +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,77777,9,999999999,13,0.06,0,88,0.2,0,1 +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,77777,9,999999999,13,0.06,0,88,0.2,0,1 +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,77777,9,999999999,13,0.06,0,88,0.2,0,1 +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,77777,9,999999999,13,0.06,0,88,0.2,0,1 +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,48,83000,16,483,302,0,0,0,0,0,0,0,170,4.6,3,3,16,77777,9,999999999,12,0.06,0,88,0.2,0,1 +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,15287,10097,7063,2072,160,2.6,3,3,16,77777,9,999999999,11,0.06,0,88,0.2,0,1 +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,37829,34825,8508,3092,120,3.6,3,3,16,77777,9,999999999,10,0.06,0,88,0.2,0,1 +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,61487,48671,12410,4851,170,2.6,3,3,16,77777,9,999999999,10,0.06,0,88,0.2,0,1 +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,79204,52838,15435,6303,220,3.6,3,3,16,77777,9,999999999,9,0.06,0,88,0.2,0,1 +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,91938,54779,18958,7846,0,0,5,5,16,77777,9,999999999,9,0.06,0,88,0.2,0,1 +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,11,83600,1084,1349,370,831,884,119,86659,89335,15895,3504,0,0,3,3,16,77777,9,999999999,9,0.06,0,88,0.2,0,1 +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,98847,56687,18557,7724,320,1.5,3,3,16,77777,9,999999999,9,0.06,0,88,0.2,0,1 +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,80619,89941,14727,2803,280,1.5,4,4,16,77777,9,999999999,10,0.06,0,88,0.2,0,1 +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,-11.7,5,83500,862,1349,376,652,819,127,79336,56704,15511,6278,240,3.6,3,3,16,77777,9,999999999,10,0.06,0,88,0.2,0,1 +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,6,83500,667,1349,382,440,557,164,50758,41776,19002,6914,310,3.1,3,3,16,77777,9,999999999,10,0.06,0,88,0.2,0,1 +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,11,82800,431,1349,378,294,529,124,32911,32986,13938,4509,10,5.2,5,5,16,77777,9,999999999,11,0.06,0,88,0.2,0,1 +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,1370,0,1380,570,10,5.2,3,3,16,77777,9,999999999,11,0.06,0,88,0.2,0,1 +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,77777,9,999999999,11,0.06,0,88,0.2,0,1 +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,4267,9,999999999,11,0.06,0,88,0.2,0,1 +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,77777,9,999999999,11,0.06,0,88,0.2,0,1 +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,77777,9,999999999,11,0.06,0,88,0.2,0,1 +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,77777,9,999999999,11,0.06,0,88,0.2,0,1 +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,43,83300,0,0,313,0,0,0,0,0,0,0,120,2.6,5,5,16,77777,9,999999999,11,0.06,0,88,0.2,0,1 +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,77777,9,999999999,11,0.059,0,88,0.2,0,1 +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,77777,9,999999999,12,0.059,0,88,0.2,0,1 +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,77777,9,999999999,11,0.059,0,88,0.2,0,1 +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,35,83200,0,0,283,0,0,0,0,0,0,0,120,5.2,1,1,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 +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,77777,9,999999999,11,0.059,0,88,0.2,0,1 +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,3658,9,999999999,11,0.059,0,88,0.2,0,1 +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,13365,6444,5518,1718,110,5.7,9,9,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 +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,28587,21839,15926,5150,100,5.7,10,10,16,3048,9,999999999,11,0.059,0,88,0.2,0,1 +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,27170,3068,25035,8704,70,5.2,6,6,16,6706,9,999999999,12,0.059,0,88,0.2,0,1 +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,-3.9,26,83900,888,1350,324,465,243,305,52978,22051,34955,12483,90,6.2,6,6,16,77777,9,999999999,12,0.059,0,88,0.2,0,1 +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,87038,52447,26928,10746,90,5.7,6,6,16,77777,9,999999999,12,0.059,0,88,0.2,0,1 +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,97156,55459,21758,8971,120,5.2,7,7,16,77777,9,999999999,12,0.059,0,88,0.2,0,1 +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,85906,90964,14035,3208,60,2.6,8,7,16,77777,9,999999999,12,0.059,0,88,0.2,0,1 +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,-3.9,19,83400,996,1350,347,739,806,143,90819,55676,17645,7309,0,0,7,6,16,7620,9,999999999,12,0.059,0,88,0.2,0,1 +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,76834,55559,21817,8527,30,5.7,9,9,16,3048,9,999999999,13,0.059,0,88,0.2,0,1 +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,31059,8868,25361,8517,70,6.2,8,7,16,4267,9,999999999,14,0.059,0,88,0.2,0,1 +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,6397,0,6447,2701,80,3.6,7,7,16,2591,9,999999999,14,0.059,0,88,0.2,0,1 +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,1660,0,1671,675,60,4.6,10,9,16,2591,9,999999999,14,0.059,0,88,0.2,0,1 +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,2743,9,999999999,14,0.059,0,88,0.2,0,1 +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,3353,9,999999999,13,0.059,0,88,0.2,0,1 +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,3353,9,999999999,13,0.059,0,88,0.2,0,1 +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,2134,9,999999999,13,0.059,0,88,0.2,0,1 +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,6.7,80,83700,0,0,317,0,0,0,0,0,0,0,40,3.6,7,7,16,2438,9,999999999,13,0.059,0,88,0.2,0,1 +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,2134,9,999999999,13,0.059,0,88,0.2,0,1 +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,1341,9,999999999,12,0.059,0,88,0.2,0,1 +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,2896,9,999999999,12,0.059,0,88,0.2,0,1 +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,77777,9,999999999,13,0.059,0,88,0.2,0,1 +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,77777,9,999999999,14,0.059,0,88,0.2,0,1 +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,77777,9,999999999,14,0.059,0,88,0.2,0,1 +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,77777,9,999999999,14,0.059,0,88,0.2,0,1 +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,15678,9954,6931,2014,180,8.2,0,0,16,77777,9,999999999,13,0.059,0,88,0.2,0,1 +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,2.8,44,83500,469,1351,324,345,789,70,40662,38058,8272,3002,190,12.4,3,3,16,77777,9,999999999,13,0.059,0,88,0.2,0,1 +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,65445,51780,10594,4168,180,10.3,3,3,16,77777,9,999999999,13,0.059,0,88,0.2,0,1 +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,78019,52477,18321,7377,190,8.2,3,3,16,77777,9,999999999,13,0.059,0,88,0.2,0,1 +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,90365,53078,18222,7560,170,10.8,5,5,16,77777,9,999999999,13,0.059,0,88,0.2,0,1 +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,96138,53974,21940,9049,160,8.2,7,6,16,5486,9,999999999,14,0.059,0,88,0.2,0,1 +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,95685,55057,31200,12315,220,4.6,7,5,16,3962,9,999999999,14,0.059,0,88,0.2,0,1 +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,15175,0,15319,7384,290,8.8,9,7,16,4877,9,999999999,15,0.059,0,88,0.2,0,1 +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,4,54,83600,850,1351,340,102,0,102,10546,0,10642,5149,210,10.8,10,9,16.1,2400,9,999999999,15,0.059,0,88,0.2,0,1 +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,2.8,44,83700,654,1351,349,76,0,76,7734,0,7800,3623,220,5.2,10,9,16,2743,9,999999999,15,0.059,0,88,0.2,0,1 +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,5,51,83400,417,1351,344,138,57,121,15379,3306,13540,4358,250,4.6,8,8,16,3962,9,999999999,16,0.059,0,88,0.2,0,1 +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,57,83600,157,1351,319,61,198,38,6807,0,4251,1293,240,6.2,3,3,16,77777,9,999999999,15,0.059,0,88,0.2,0,1 +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,77777,9,999999999,15,0.059,0,88,0.2,0,1 +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,80,83500,0,0,297,0,0,0,0,0,0,0,180,3.6,3,3,16,6706,9,999999999,14,0.059,0,88,0.2,0,1 +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,68,83500,0,0,312,0,0,0,0,0,0,0,210,5.2,5,5,16,77777,9,999999999,13,0.059,0,88,0.2,0,1 +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,74,83500,0,0,307,0,0,0,0,0,0,0,230,4.6,5,5,16,77777,9,999999999,12,0.059,0,88,0.2,0,1 +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,5,71,83500,0,0,304,0,0,0,0,0,0,0,220,5.7,3,3,16,77777,9,999999999,12,0.059,0,88,0.2,0.3,1 +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,3.9,66,83500,0,0,291,0,0,0,0,0,0,0,210,5.2,0,0,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 +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,3.3,63,83500,0,0,290,0,0,0,0,0,0,0,220,5.7,0,0,16,77777,9,999999999,10,0.058,0,88,0.2,0,1 +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,77777,9,999999999,10,0.058,0,88,0.2,0,1 +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,77777,9,999999999,10,0.058,0,88,0.2,0,1 +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,77777,9,999999999,9,0.058,0,88,0.2,0,1 +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,54,83700,0,0,282,0,0,0,0,0,0,0,220,5.2,0,0,16,77777,9,999999999,9,0.058,0,88,0.2,0,1 +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,58,83700,12,417,278,0,0,0,0,0,0,0,230,6.2,0,0,16,77777,9,999999999,9,0.058,0,88,0.2,0,1 +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,46,83900,209,1351,291,134,458,63,14679,9216,6926,1995,230,6.7,0,0,16,77777,9,999999999,8,0.058,0,88,0.2,0,1 +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,36101,33850,9139,3275,220,6.7,0,0,16,77777,9,999999999,8,0.058,0,88,0.2,0,1 +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,57300,45984,13056,5056,220,4.6,0,0,16,77777,9,999999999,8,0.058,0,88,0.2,0,1 +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,17,84400,880,1351,326,618,711,154,74190,50903,18565,7444,250,2.6,0,0,16,77777,9,999999999,8,0.058,0,88,0.2,0,1 +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,87448,53304,20523,8420,270,2.6,3,3,16,77777,9,999999999,8,0.058,0,88,0.2,0,1 +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,84446,87338,16694,3425,210,3.1,3,3,16,77777,9,999999999,8,0.058,0,88,0.2,0,1 +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,83968,90191,13424,3052,140,3.6,3,3,16,77777,9,999999999,8,0.058,0,88,0.2,0,1 +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,78579,90147,13230,2590,110,3.1,3,3,16,77777,9,999999999,9,0.058,0,88,0.2,0,1 +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,-7.2,10,84200,844,1351,358,633,854,99,78191,55354,12267,5000,140,3.6,3,3,16,77777,9,999999999,9,0.058,0,88,0.2,0,1 +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,-7.2,10,84200,648,1351,358,465,797,83,56312,48140,10079,3903,120,4.1,3,3,16,77777,9,999999999,10,0.058,0,88,0.2,0,1 +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,32533,30134,5773,2085,130,5.7,2,2,16,77777,9,999999999,10,0.058,0,88,0.2,0,1 +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,7488,31685,3285,462,120,4.1,3,3,16,77777,9,999999999,10,0.058,0,88,0.2,0,1 +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,77777,9,999999999,10,0.058,0,88,0.2,0,1 +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,77777,9,999999999,10,0.058,0,88,0.2,0,1 +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,77777,9,999999999,10,0.058,0,88,0.2,0,1 +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,34,83800,0,0,310,0,0,0,0,0,0,0,170,8.2,0,0,16,77777,9,999999999,9,0.058,0,88,0.2,0,1 +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,40,83700,0,0,300,0,0,0,0,0,0,0,170,6.2,0,0,16,77777,9,999999999,9,0.058,0,88,0.2,0,1 +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,77777,9,999999999,9,0.058,0,88,0.2,0,1 +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,77777,9,999999999,9,0.058,0,88,0.2,0,1 +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,2.2,58,83600,0,0,289,0,0,0,0,0,0,0,190,3.6,0,0,16,77777,9,999999999,8,0.058,0,88,0.2,0,1 +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,77777,9,999999999,8,0.058,0,88,0.2,0,1 +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,77777,9,999999999,8,0.058,0,88,0.2,0,1 +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,77777,9,999999999,8,0.058,0,88,0.2,0,1 +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,44,83600,11,394,314,0,0,0,0,0,0,0,230,5.2,7,6,16,77777,9,999999999,8,0.058,0,88,0.2,0,1 +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,12842,4394,4970,1554,220,6.2,8,6,16,6706,9,999999999,8,0.058,0,88,0.2,0,1 +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,31860,27955,16280,5155,240,5.2,9,5,16,6706,9,999999999,8,0.058,0,88,0.2,0,1 +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,29299,5680,25487,8725,240,3.1,9,5,16,6706,9,999999999,9,0.058,0,88,0.2,0,1 +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,48275,14750,36968,12837,200,2.1,8,5,16,6706,9,999999999,9,0.058,0,88,0.2,0,1 +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,13,83600,1003,1352,364,496,181,361,56791,17048,41597,14957,170,2.1,6,5,16,6706,9,999999999,9,0.058,0,88,0.2,0,1 +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,-5.6,12,84200,1065,1352,374,242,12,233,28945,943,28015,11223,150,2.1,7,7,16,6706,9,999999999,10,0.058,0,88,0.2,0,1 +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,37549,1565,36125,13795,120,2.1,6,6,16,6706,9,999999999,10,0.058,0,88,0.2,0,1 +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,53965,16168,39775,14358,90,3.6,4,4,16,6706,9,999999999,10,0.058,0,88,0.2,0,1 +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,69369,49805,21213,8256,110,5.2,3,3,16,77777,9,999999999,11,0.058,0,88,0.2,0,1 +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,55931,47380,9163,3555,110,6.2,7,7,16,77777,9,999999999,12,0.058,0,88,0.2,0,1 +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,29601,29344,13009,4161,110,5.7,6,5,16,77777,9,999999999,13,0.058,0,88,0.2,0,1 +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,976,0,982,407,50,4.6,6,5,16,77777,9,999999999,12,0.058,0,88,0.2,0,1 +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,77777,9,999999999,12,0.058,0,88,0.2,0,1 +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,77777,9,999999999,11,0.058,0,88,0.2,0,1 +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,-2.2,22,83400,0,0,341,0,0,0,0,0,0,0,330,4.1,3,3,16,77777,9,999999999,10,0.058,0,88,0.2,0,1 +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,77777,9,999999999,10,0.058,0,88,0.2,0,1 +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,77777,9,999999999,9,0.058,0,88,0.2,0,1 +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,-2.2,30,83300,0,0,318,0,0,0,0,0,0,0,260,2.1,3,3,16,77777,9,999999999,9,0.058,0,88,0.2,0,1 +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,77777,9,999999999,8,0.058,0,88,0.2,0,1 +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,77777,9,999999999,8,0.058,0,88,0.2,0,1 +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,77777,9,999999999,7,0.058,0,88,0.2,0,1 +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,77777,9,999999999,7,0.058,0,88,0.2,0,1 +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,77777,9,999999999,7,0.058,0,88,0.2,0,1 +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,77777,9,999999999,7,0.058,0,88,0.2,0,1 +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,13912,8532,6705,1918,240,2.6,0,0,16,77777,9,999999999,6,0.058,0,88,0.2,0,1 +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,15,83200,457,1353,333,318,759,60,37889,35790,7165,2607,180,3.6,0,0,16,77777,9,999999999,6,0.058,0,88,0.2,0,1 +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,-7.8,10,83700,687,1353,354,467,658,132,54919,45598,15583,5896,220,3.1,2,2,16,77777,9,999999999,6,0.058,0,88,0.2,0,1 +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,72706,95610,10433,1937,200,2.6,3,3,16,77777,9,999999999,6,0.058,0,88,0.2,0,1 +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,84274,98653,10462,2316,170,4.1,2,2,16,77777,9,999999999,6,0.058,0,88,0.2,0,1 +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,89964,99593,10989,2677,190,1.5,0,0,16,77777,9,999999999,7,0.058,0,88,0.2,0,1 +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,87967,99189,9179,2318,200,4.6,3,3,16,77777,9,999999999,7,0.058,0,88,0.2,0,1 +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,79242,93629,11688,2384,270,1.5,3,3,16,77777,9,999999999,7,0.058,0,88,0.2,0,1 +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,66019,89346,10767,1884,340,3.6,3,3,16,77777,9,999999999,8,0.058,0,88,0.2,0,1 +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,-11.7,5,83700,634,1353,376,464,843,68,48914,82198,10121,1479,30,5.2,3,3,16,77777,9,999999999,8,0.058,0,88,0.2,0,1 +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,31578,29597,5533,1988,30,6.2,6,5,16,77777,9,999999999,8,0.058,0,88,0.2,0,1 +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,6874,0,2333,750,20,4.6,3,3,16,77777,9,999999999,8,0.058,0,88,0.2,0,1 +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,77777,9,999999999,8,0.058,0,88,0.2,0,1 +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,77777,9,999999999,8,0.058,0,88,0.2,0,1 +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,-7.2,14,83400,0,0,321,0,0,0,0,0,0,0,330,5.7,0,0,16,77777,9,999999999,8,0.058,0,88,0.2,0,1 +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,77777,9,999999999,8,0.058,0,88,0.2,0,1 +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,-6.7,20,83200,0,0,300,0,0,0,0,0,0,0,20,4.6,0,0,16,77777,9,999999999,7,0.058,0,88,0.2,0,1 +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,77777,9,999999999,7,0.058,0,88,0.2,0,1 +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,28,83200,0,0,300,0,0,0,0,0,0,0,250,3.6,2,2,16,77777,9,999999999,7,0.058,0,88,0.2,0,1 +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,77777,9,999999999,7,0.058,0,88,0.2,0,1 +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,6706,9,999999999,7,0.058,0,88,0.2,0,1 +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,6706,9,999999999,8,0.058,0,88,0.2,0,1 +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.6,52,83400,0,0,293,0,0,0,0,0,0,0,250,3.6,1,1,16,77777,9,999999999,8,0.058,0,88,0.2,0,1 +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,6706,9,999999999,8,0.058,0,88,0.2,0,1 +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,14175,8212,6784,1915,350,1.5,0,0,16,77777,9,999999999,8,0.058,0,88,0.2,0,1 +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,33608,31037,11966,4086,40,2.6,1,1,16,77777,9,999999999,8,0.058,0,88,0.2,0,1 +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,55338,43292,13766,5288,50,2.1,1,1,16,7620,9,999999999,8,0.058,0,88,0.2,0,1 +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,75147,50059,17022,6867,60,3.6,6,6,16,7620,9,999999999,8,0.058,0,88,0.2,0,1 +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,35,83500,994,1354,358,775,857,143,94933,56862,17589,7294,80,2.6,6,4,16,7620,9,999999999,9,0.058,0,88,0.2,0,1 +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,82468,44329,30339,12006,90,3.1,7,5,16,7620,9,999999999,9,0.058,0,88,0.2,0,1 +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,87643,50111,25339,10264,60,4.6,5,5,16,7620,9,999999999,9,0.058,0,88,0.2,0,1 +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,61343,26717,37099,13611,80,5.2,4,4,16,77777,9,999999999,9,0.058,0,88,0.2,0,1 +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,71958,52314,18065,7142,90,7.2,7,6,16,77777,9,999999999,9,0.058,0,88,0.2,0,1 +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,54168,45772,9356,3612,60,6.7,8,7,16,77777,9,999999999,10,0.058,0,88,0.2,0,1 +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,28985,25783,5736,2053,60,6.2,6,5,16,77777,9,999999999,10,0.058,0,88,0.2,0,1 +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,6579,0,2428,773,40,5.2,6,5,16,77777,9,999999999,10,0.058,0,88,0.2,0,1 +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,77777,9,999999999,10,0.058,0,88,0.2,0,1 +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,77777,9,999999999,10,0.058,0,88,0.2,0,1 +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,77777,9,999999999,9,0.058,0,88,0.2,0,1 +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,65,83700,0,0,345,0,0,0,0,0,0,0,60,4.6,6,5,16,77777,9,999999999,9,0.058,0,88,0.2,0,1 +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,77777,9,999999999,8,0.058,0,88,0.2,0,1 +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,77777,9,999999999,8,0.058,0,88,0.2,0,1 +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,77777,9,999999999,7,0.058,0,88,0.2,0,1 +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,6706,9,999999999,7,0.058,0,88,0.2,0,1 +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,77777,9,999999999,8,0.058,0,88,0.2,0,1 +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,77777,9,999999999,9,0.058,0,88,0.2,0,1 +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,4.4,68,83900,0,0,309,0,0,0,0,0,0,0,350,2.6,9,5,16,77777,9,999999999,10,0.058,0,88,0.2,0,1 +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,8.9,93,83900,7,350,341,0,0,0,0,0,0,0,0,0,10,10,0.2,61,9,999999999,10,0.058,0,88,0.2,0,1 +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,9216,1872,5944,1745,0,0,10,10,0.4,30,9,999999999,9,0.058,0,88,0.2,0,1 +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,8165,0,8231,3363,250,2.6,10,10,0.4,152,9,999999999,9,0.058,0,88,0.2,0,1 +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,28433,4847,25096,8566,190,2.1,9,5,9.6,77777,9,999999999,9,0.058,0,88,0.2,0,1 +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,73275,48508,22383,8750,130,2.1,4,3,16,77777,9,999999999,8,0.058,0,88,0.2,0,1 +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,89932,53458,16551,6879,50,3.6,0,0,16,77777,9,999999999,7,0.058,0,88,0.2,0,1 +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,82882,87460,16029,3193,60,2.6,0,0,16,77777,9,999999999,7,0.058,0,88,0.2,0,1 +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,81588,86229,16431,3150,100,4.1,0,0,16,77777,9,999999999,7,0.058,0,88,0.2,0,1 +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,78624,91528,14210,2543,70,2.1,0,0,16,77777,9,999999999,7,0.058,0,88,0.2,0,1 +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,65647,90281,10663,1846,0,0,4,2,16,77777,9,999999999,7,0.058,0,88,0.2,0,1 +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,54960,47296,8899,3433,70,2.6,4,3,16,77777,9,999999999,7,0.058,0,88,0.2,0,1 +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,11,84000,382,1354,366,237,641,55,27939,25800,6498,2296,90,3.1,4,2,16,77777,9,999999999,7,0.058,0,88,0.2,0,1 +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,6094,0,2419,763,90,2.6,0,0,16,77777,9,999999999,7,0.058,0,88,0.2,0,1 +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,77777,9,999999999,7,0.058,0,88,0.2,0,1 +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,77777,9,999999999,7,0.058,0,88,0.2,0,1 +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,77777,9,999999999,6,0.058,0,88,0.2,0,1 +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,77777,9,999999999,6,0.058,0,88,0.2,0,1 +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,77777,9,999999999,6,0.058,0,88,0.2,0,1 +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,46,84300,0,0,331,0,0,0,0,0,0,0,240,3.6,3,2,16,77777,9,999999999,6,0.058,0,88,0.2,0,1 +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,5,51,84200,0,0,323,0,0,0,0,0,0,0,210,4.6,2,2,16,77777,9,999999999,6,0.058,0,88,0.2,0,1 +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,1,1,16,77777,9,999999999,6,0.058,0,88,0.2,0,1 +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,77777,9,999999999,6,0.058,0,88,0.2,0,1 +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,77777,9,999999999,6,0.058,0,88,0.2,0,1 +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,77777,9,999999999,7,0.058,0,88,0.2,0,1 +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,77777,9,999999999,7,0.058,0,88,0.2,0,1 +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,13371,6853,6655,1855,240,2.1,0,0,16,77777,9,999999999,7,0.058,0,88,0.2,0,1 +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.6,27,84200,445,1355,330,298,672,76,34709,32874,8878,3151,240,5.7,0,0,16,77777,9,999999999,7,0.058,0,88,0.2,0,1 +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,21,84800,674,1355,351,468,696,121,55188,45642,14321,5446,240,4.1,1,1,16,77777,9,999999999,7,0.058,0,88,0.2,0,1 +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,74718,52355,16480,6631,150,2.1,2,2,16,77777,9,999999999,7,0.058,0,88,0.2,0,1 +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,83524,52189,22247,9013,150,2.1,4,3,16,77777,9,999999999,8,0.058,0,88,0.2,0,1 +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,90832,54126,24032,9772,160,2.1,4,4,16,77777,9,999999999,8,0.058,0,88,0.2,0,1 +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,83129,48582,26689,10697,160,3.1,4,4,16,7620,9,999999999,9,0.058,0,88,0.2,0,1 +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,6,84000,956,1355,384,731,841,136,89696,58605,16753,6899,160,5.2,2,2,16,7620,9,999999999,9,0.058,0,88,0.2,0,1 +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,71715,52746,12892,5197,130,4.1,2,2,16,7620,9,999999999,9,0.058,0,88,0.2,0,1 +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,-9.4,6,84700,614,1355,380,419,561,164,47812,42029,18797,6606,110,3.6,3,3,16,6706,9,999999999,10,0.058,0,88,0.2,0,1 +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,13961,3693,11885,3771,130,4.6,8,8,16,6706,9,999999999,10,0.058,0,88,0.2,0,1 +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,1948,0,1961,724,140,4.1,7,6,16,6706,9,999999999,10,0.058,0,88,0.2,0,1 +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,17,84300,0,0,343,0,0,0,0,0,0,0,150,4.1,6,4,16,6706,9,999999999,11,0.058,0,88,0.2,0,1 +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,3962,9,999999999,11,0.058,0,88,0.2,0,1 +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,6706,9,999999999,12,0.058,0,88,0.2,0,1 +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,77777,9,999999999,14,0.058,0,88,0.2,0,1 +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,77777,9,999999999,15,0.058,0,88,0.2,0,1 +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,77777,9,999999999,16,0.058,0,88,0.2,0,1 +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,6096,9,999999999,17,0.057,0,88,0.2,0,1 +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,6096,9,999999999,17,0.057,0,88,0.2,0,1 +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,77777,9,999999999,17,0.057,0,88,0.2,0,1 +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,77777,9,999999999,17,0.057,0,88,0.2,0,1 +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,6096,9,999999999,17,0.057,0,88,0.2,0,1 +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,-2.2,22,83900,6,305,349,0,0,0,0,0,0,0,210,5.2,8,6,16,6096,9,999999999,17,0.057,0,88,0.2,0,1 +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,9530,3146,6848,1863,200,6.2,5,4,16,3962,9,999999999,17,0.057,0,88,0.2,0,1 +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,19740,6485,16396,5041,220,7.7,3,3,16,4877,9,999999999,17,0.057,0,88,0.2,0,1 +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,53963,44583,18838,6858,220,6.7,3,3,16,77777,9,999999999,17,0.057,0,88,0.2,0,1 +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,70177,48104,20769,8155,210,6.2,10,6,16,6096,9,999999999,17,0.057,0,88,0.2,0,1 +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,48963,10964,39139,14196,200,8.2,10,6,16,4877,9,999999999,17,0.057,0,88,0.2,0,1 +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,26757,453,26415,10632,180,7.2,10,6,16,4877,9,999999999,17,0.057,0,88,0.2,0,1 +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,23720,0,23947,10829,180,5.2,10,7,16,3900,9,999999999,18,0.057,0,88,0.2,0,1 +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,15706,0,15854,7537,260,10.3,10,9,6.4,3353,9,999999999,18,0.057,0,88,0.2,0,1 +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,9873,0,9962,4785,320,5.2,10,7,16,3962,9,999999999,19,0.057,0,88,0.2,0,1 +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,27564,7694,22657,7525,310,4.1,9,7,16,3962,9,999999999,20,0.057,0,88,0.2,0,1 +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,16465,8214,11615,3686,10,1.5,9,7,16,4877,9,999999999,20,0.057,0,88,0.2,0,1 +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,29,83800,109,1254,382,8,0,8,776,0,781,320,0,0,9,7,16,3962,9,999999999,20,0.057,0,88,0.2,0,1 +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,3048,9,999999999,19,0.057,0,88,0.2,0,1 +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,3048,9,999999999,19,0.057,0,88,0.2,0,1 +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,3600,9,999999999,20,0.057,0,88,0.2,0,1 +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,3962,9,999999999,21,0.057,0,88,0.2,0,1 +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,69,83600,0,0,347,0,0,0,0,0,0,0,60,2.6,9,7,16,6096,9,999999999,23,0.057,0,88,0.2,0,1 +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,2896,9,999999999,23,0.057,0,88,0.2,0,1 +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,2743,9,999999999,23,0.057,0,88,0.2,0,1 +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,75,83600,0,0,354,0,0,0,0,0,0,0,170,4.1,10,9,16,2896,9,999999999,23,0.057,0,88,0.2,0,1 +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,10,72,83600,0,0,344,0,0,0,0,0,0,0,170,5.7,9,7,16,3962,9,999999999,21,0.057,0,88,0.2,0,1 +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,75,83600,0,0,364,0,0,0,0,0,0,0,140,3.6,10,10,16,4267,9,999999999,20,0.057,0,88,0.2,0,1 +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,4572,9,999999999,18,0.057,0,88,0.2,0,1 +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,4267,9,999999999,17,0.057,0,88,0.2,0,1 +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,83,83700,180,1357,330,64,16,62,6895,180,6705,1824,90,5.2,7,6,16,4267,9,999999999,16,0.057,0,88,0.2,0,1 +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,10.6,75,83700,437,1357,335,172,83,145,18893,5134,16001,4950,90,6.2,4,4,16,4267,9,999999999,16,0.057,0,88,0.2,0,1 +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,69,84000,666,1357,353,476,616,172,54292,43112,19710,7107,90,6.2,8,8,16,396,9,999999999,15,0.057,0,88,0.2,0,1 +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,61527,36698,27584,10302,50,6.2,8,8,16,1524,9,999999999,15,0.057,0,88,0.2,0,1 +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,65265,29484,37097,13668,60,5.7,8,8,16,1524,9,999999999,15,0.057,0,88,0.2,0,1 +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,92556,52426,23434,9577,60,5.7,9,8,16,1524,9,999999999,16,0.057,0,88,0.2,0,1 +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,85144,47927,27181,10881,50,4.6,9,8,16,1524,9,999999999,17,0.057,0,88,0.2,0,1 +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,47598,11082,37811,13632,70,5.7,8,8,16,1981,9,999999999,18,0.057,0,88,0.2,0,1 +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,23539,895,22838,8648,40,7.7,8,8,16,2438,9,999999999,19,0.057,0,88,0.2,0,1 +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,8088,0,8156,3677,200,6.2,9,9,16,2100,9,999999999,20,0.057,0,88,0.2,0,1 +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,60,83500,361,1357,364,38,0,38,3758,0,3788,1635,280,6.2,8,8,16,3962,9,999999999,21,0.057,0,88,0.2,0,1 +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,65,83900,102,1210,352,5,0,5,483,0,487,204,260,4.1,7,7,12.8,3658,9,999999999,21,0.057,0,88,0.2,0,1 +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,20,0.057,0,88,0.2,0,1 +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,2,2,16,3962,9,999999999,19,0.057,0,88,0.2,0,1 +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,6096,9,999999999,18,0.057,0,88,0.2,0,1 +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,5,5,16,77777,9,999999999,17,0.057,0,88,0.2,0,1 +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,77777,9,999999999,17,0.057,0,88,0.2,0,1 +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,77777,9,999999999,16,0.057,0,88,0.2,0,1 +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,6.7,80,83400,0,0,294,0,0,0,0,0,0,0,190,3.6,0,0,16,77777,9,999999999,16,0.058,0,88,0.2,0,1 +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,77777,9,999999999,15,0.058,0,88,0.2,0,1 +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,77777,9,999999999,15,0.058,0,88,0.2,0,1 +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,77777,9,999999999,15,0.058,0,88,0.2,0,1 +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,6.7,80,83400,0,0,309,0,0,0,0,0,0,0,230,2.6,4,4,16,77777,9,999999999,14,0.058,0,88,0.2,0,1 +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,77777,9,999999999,14,0.058,0,88,0.2,0,1 +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,12753,4598,6400,1755,300,1.5,0,0,16,77777,9,999999999,14,0.058,0,88,0.2,0,1 +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,33180,30917,10947,3738,0,0,5,5,16,77777,9,999999999,13,0.058,0,88,0.2,0,1 +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,53369,42967,14686,5543,360,2.1,3,3,16,77777,9,999999999,13,0.058,0,88,0.2,0,1 +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,69296,46904,17846,7113,0,0,5,5,16,77777,9,999999999,13,0.058,0,88,0.2,0,1 +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,30,83300,971,1357,379,707,779,148,86057,52302,18090,7453,60,2.1,7,7,16,77777,9,999999999,13,0.058,0,88,0.2,0,1 +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,89797,52431,20995,8641,110,3.1,5,5,16,6706,9,999999999,14,0.058,0,88,0.2,0,1 +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,88956,53506,26897,10744,0,0,7,6,16,6706,9,999999999,15,0.058,0,88,0.2,0,1 +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,40663,6740,34664,12769,50,2.1,8,7,16,6706,9,999999999,16,0.058,0,88,0.2,0,1 +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,40589,12063,31751,10976,90,5.7,6,5,16,6706,9,999999999,17,0.058,0,88,0.2,0,1 +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,28515,8085,23756,7635,80,6.2,7,7,16,6706,9,999999999,17,0.058,0,88,0.2,0,1 +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,17914,11595,11169,3518,80,7.7,9,9,16,6706,9,999999999,17,0.058,0,88,0.2,0,1 +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,3785,0,2678,792,0,0,7,6,16,6706,9,999999999,17,0.058,0,88,0.2,0,1 +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,2.2,31,83300,0,0,349,0,0,0,0,0,0,0,160,4.6,4,4,16,6706,9,999999999,16,0.058,0,88,0.2,0,1 +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,4572,9,999999999,16,0.058,0,88,0.2,0,1 +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,43,83300,0,0,365,0,0,0,0,0,0,0,240,4.6,9,9,16,6706,9,999999999,15,0.058,0,88,0.2,0,1 +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,6706,9,999999999,14,0.058,0,88,0.2,0,1 +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,5,51,83000,0,0,338,0,0,0,0,0,0,0,220,3.6,7,7,16,6706,9,999999999,13,0.058,0,88,0.2,0,1 +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,49,83100,0,0,316,0,0,0,0,0,0,0,260,3.1,0,0,16,77777,9,999999999,13,0.058,0,88,0.2,0,1 +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,77777,9,999999999,12,0.058,0,88,0.2,0,1 +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,77777,9,999999999,12,0.058,0,88,0.2,0,1 +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,6,4,16,6096,9,999999999,12,0.058,0,88,0.2,0,1 +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,3.9,47,83000,0,0,330,0,0,0,0,0,0,0,0,0,10,5,16,6096,9,999999999,13,0.058,0,88,0.2,0,1 +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,9,5,16,6096,9,999999999,13,0.058,0,88,0.2,0,1 +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,4267,9,999999999,12,0.058,0,88,0.2,0,1 +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,1267,0,1276,529,350,2.6,9,5,16,4267,9,999999999,12,0.058,0,88,0.2,0,1 +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,4482,0,4518,1982,10,4.1,9,6,16,4267,9,999999999,12,0.058,0,88,0.2,0,1 +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,10864,0,10957,4861,10,3.1,9,7,16,3962,9,999999999,12,0.058,0,88,0.2,0,1 +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,56481,30155,31484,11272,10,2.1,10,6,16,6096,9,999999999,12,0.058,0,88,0.2,0,1 +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,43044,4772,38847,14030,340,3.6,9,6,16,4267,9,999999999,12,0.058,0,88,0.2,0,1 +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,43060,2634,40686,14904,50,2.6,9,9,16,6096,9,999999999,13,0.058,0,88,0.2,0,1 +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,9.4,50,83400,1014,1358,374,469,156,352,53621,13687,40504,14791,20,3.1,10,8,16,6096,9,999999999,13,0.058,0,88,0.2,0,1 +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,49,83000,932,1358,374,643,620,217,75419,45513,25584,10064,20,2.6,10,7,16,6096,9,999999999,13,0.058,0,88,0.2,0,1 +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,62833,44094,20495,7861,20,3.6,7,6,16,6096,9,999999999,14,0.058,0,88,0.2,0,1 +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,35123,21188,21067,7035,70,3.6,7,6,16,4267,9,999999999,15,0.058,0,88,0.2,0,1 +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,22863,18389,9040,2984,50,3.6,9,8,16,6706,9,999999999,16,0.058,0,88,0.2,0,1 +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,3458,0,1616,510,40,3.1,7,6,16,6706,9,999999999,16,0.058,0,88,0.2,0,1 +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,6706,9,999999999,16,0.058,0,88,0.2,0,1 +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,6706,9,999999999,17,0.058,0,88,0.2,0,1 +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,6706,9,999999999,16,0.058,0,88,0.2,0,1 +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,4267,9,999999999,16,0.058,0,88,0.2,0,1 +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,1128,9,999999999,16,0.058,0,88,0.2,0,1 +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,305,9,999999999,17,0.058,0,88,0.2,0,1 +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,17,0.058,0,88,0.2,0,1 +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,17,0.058,0,88,0.2,0,1 +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,9.4,96,83200,0,0,342,0,0,0,0,0,0,0,10,3.1,10,10,0.8,30,9,999999999,17,0.058,0,88,0.2,0,1 +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,9,100,83200,0,0,337,0,0,0,0,0,0,0,10,3.6,10,10,0.4,30,9,999999999,17,0.058,0,88,0.2,0,1 +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,30,9,999999999,16,0.058,0,88,0.2,0,1 +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,30,9,999999999,15,0.058,0,88,0.2,0,1 +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,8,100,83400,168,1359,331,41,0,41,3990,0,4018,1372,20,2.6,10,10,0,90,9,999999999,14,0.058,0,88,0.2,0,1 +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,5969,0,6016,2541,40,2.6,10,10,3.2,61,9,999999999,13,0.058,0,88,0.2,0,1 +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,8.3,89,83600,653,1359,341,107,0,107,10854,0,10947,4848,0,0,10,10,4.8,61,9,999999999,13,0.058,0,88,0.2,0,1 +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,39174,10195,30833,11072,30,2.6,9,9,16,518,9,999999999,13,0.058,0,88,0.2,0,1 +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,65090,30113,37458,13643,60,2.1,5,5,16,77777,9,999999999,13,0.058,0,88,0.2,0,1 +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,87329,50491,25506,10279,80,2.6,5,5,16,77777,9,999999999,13,0.058,0,88,0.2,0,1 +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,7.2,43,83800,1008,1359,358,747,838,124,92554,52873,15422,6452,110,2.6,5,5,16,77777,9,999999999,13,0.058,0,88,0.2,0,1 +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,84584,51988,13526,5608,90,3.1,4,4,16,77777,9,999999999,14,0.058,0,88,0.2,0,1 +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,64577,46326,14792,5868,50,3.6,4,4,16,77777,9,999999999,14,0.058,0,88,0.2,0,1 +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,50016,42258,8579,3271,100,5.2,5,5,16,77777,9,999999999,14,0.058,0,88,0.2,0,1 +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,24137,19183,5754,2005,50,3.6,5,5,16,77777,9,999999999,14,0.058,0,88,0.2,0,1 +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,44,83800,84,1099,337,22,171,12,2559,0,1397,442,80,3.6,3,3,16,77777,9,999999999,14,0.058,0,88,0.2,0,1 +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,77777,9,999999999,13,0.058,0,88,0.2,0,1 +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,77777,9,999999999,13,0.058,0,88,0.2,0,1 +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,77777,9,999999999,12,0.058,0,88,0.2,0,1 +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,77777,9,999999999,12,0.058,0,88,0.2,0,1 +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,77777,9,999999999,11,0.058,0,88,0.2,0,1 +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,77777,9,999999999,11,0.058,0,88,0.2,0,1 +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,10,0.058,0,88,0.2,0,1 +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,10,0.058,0,88,0.2,0,1 +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,10,0.058,0,88,0.2,0,1 +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,11,0.058,0,88,0.2,0,1 +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,96,84100,0,0,286,0,0,0,0,0,0,0,180,3.6,3,3,12.8,77777,9,999999999,11,0.058,0,88,0.2,0,1 +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,93,84000,2,193,276,0,0,0,0,0,0,0,210,3.1,0,0,14.4,77777,9,999999999,11,0.058,0,88,0.2,0,1 +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,11122,0,4349,1313,180,3.1,3,3,16,77777,9,999999999,10,0.058,0,88,0.2,0,1 +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,36021,32035,6314,2276,130,4.1,4,4,16,77777,9,999999999,10,0.058,0,88,0.2,0,1 +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,34,84500,648,1360,324,464,796,83,56032,46621,10051,3887,120,7.2,3,3,16,77777,9,999999999,10,0.058,0,88,0.2,0,1 +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,70190,49170,15374,6169,140,7.2,1,1,16,77777,9,999999999,9,0.058,0,88,0.2,0,1 +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,81808,50783,18960,7753,130,7.2,0,0,16,77777,9,999999999,9,0.058,0,88,0.2,0,1 +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,93574,54963,16381,6831,110,3.1,0,0,16,77777,9,999999999,9,0.058,0,88,0.2,0,1 +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,19,84600,1002,1360,355,747,874,101,78686,88573,13863,2698,100,2.1,0,0,16,77777,9,999999999,9,0.058,0,88,0.2,0,1 +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,72664,88436,13280,2297,80,3.1,0,0,16,77777,9,999999999,9,0.058,0,88,0.2,0,1 +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,68160,50590,11086,4450,50,1.5,0,0,16,77777,9,999999999,9,0.058,0,88,0.2,0,1 +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,48419,40726,7784,2971,120,6.7,0,0,16,77777,9,999999999,10,0.058,0,88,0.2,0,1 +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,5,28,83700,332,1360,374,200,648,41,23715,17669,4870,1710,160,8.2,4,3,16,77777,9,999999999,10,0.058,0,88,0.2,0,1 +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,2366,0,1065,340,170,4.6,0,0,16,77777,9,999999999,10,0.058,0,88,0.2,0,1 +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,39,84300,0,0,333,0,0,0,0,0,0,0,220,4.1,0,0,16,77777,9,999999999,10,0.058,0,88,0.2,0,1 +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,77777,9,999999999,10,0.058,0,88,0.2,0,1 +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,77777,9,999999999,10,0.058,0,88,0.2,0,1 +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,77777,9,999999999,10,0.058,0,88,0.2,0,1 +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,77777,9,999999999,9,0.058,0,88,0.2,0,1 +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,77777,9,999999999,10,0.058,0,88,0.2,0,1 +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,77777,9,999999999,10,0.058,0,88,0.2,0,1 +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,77777,9,999999999,11,0.058,0,88,0.2,0,1 +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,2.8,44,83600,0,0,311,0,0,0,0,0,0,0,230,5.2,0,0,16,77777,9,999999999,12,0.058,0,88,0.2,0,1 +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,77777,9,999999999,13,0.058,0,88,0.2,0,1 +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,77777,9,999999999,14,0.058,0,88,0.2,0,1 +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,77777,9,999999999,14,0.058,0,88,0.2,0,1 +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,31,83900,159,1361,328,103,309,66,10956,4787,7049,1728,200,3.6,3,2,16,77777,9,999999999,14,0.058,0,88,0.2,0,1 +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,24,83700,416,1361,358,152,110,118,16956,6439,13217,4230,200,4.1,6,6,16,77777,9,999999999,13,0.058,0,88,0.2,0,1 +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,19,84300,644,1361,384,437,562,171,49831,41673,19588,6939,230,4.6,9,7,16,6706,9,999999999,13,0.058,0,88,0.2,0,1 +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,41277,11401,32645,11411,240,5.7,7,6,16,6706,9,999999999,13,0.058,0,88,0.2,0,1 +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,66107,33154,36192,13227,200,4.6,4,4,16,6706,9,999999999,13,0.058,0,88,0.2,0,1 +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.6,14,84200,1009,1361,392,782,847,151,95708,58544,18558,7674,220,5.2,3,3,16,6706,9,999999999,14,0.058,0,88,0.2,0,1 +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,91820,56725,18981,7820,190,1.5,6,5,16,6096,9,999999999,15,0.058,0,88,0.2,0,1 +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,15,83300,914,1361,396,550,369,301,62905,32684,34630,12579,160,5.2,8,5,16,6096,9,999999999,16,0.058,0,88,0.2,0,1 +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,14345,0,14473,6493,170,3.1,9,8,16,3353,9,999999999,17,0.058,0,88,0.2,0,1 +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,39390,29157,22577,7174,170,3.1,10,7,16,4267,9,999999999,17,0.058,0,88,0.2,0,1 +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,12328,3638,10144,3165,170,2.6,9,7,16,3353,9,999999999,17,0.058,0,88,0.2,0.5,1 +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,12,72,83800,73,1032,370,6,0,6,577,0,581,233,330,6.7,10,9,16,2134,9,999999999,19,0.058,0,88,0.2,0,1 +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,3300,9,999999999,20,0.058,0,88,0.2,0.3,1 +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,11.7,81,83500,0,0,359,0,0,0,0,0,0,0,330,6.7,10,9,16,2896,9,999999999,22,0.058,0,88,0.2,0,1 +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,11.1,77,83600,0,0,369,0,0,0,0,0,0,0,230,1.5,10,10,16,3048,9,999999999,22,0.058,0,88,0.2,0,1 +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,2438,9,999999999,23,0.058,0,88,0.2,0,1 +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,11.7,81,83500,0,0,369,0,0,0,0,0,0,0,220,4.6,10,10,16,2591,9,999999999,23,0.058,0,88,0.2,0,1 +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,12.8,87,83400,0,0,361,0,0,0,0,0,0,0,220,5.7,10,9,16,2743,9,999999999,23,0.058,0,88,0.2,0,1 +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,10.6,75,83500,0,0,368,0,0,0,0,0,0,0,230,7.2,10,10,16,2286,9,999999999,23,0.058,0,88,0.2,0,1 +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,75,83500,0,0,364,0,0,0,0,0,0,0,240,4.6,10,10,16,2438,9,999999999,23,0.058,0,88,0.2,0,1 +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,83,83700,0,0,356,0,0,0,0,0,0,0,20,9.3,10,10,16,2134,9,999999999,22,0.058,0,88,0.2,0,1 +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,74,83600,0,0,325,0,0,0,0,0,0,0,20,9.3,10,9,16,1676,9,999999999,22,0.058,0,88,0.2,0,1 +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,77,84100,0,0,322,0,0,0,0,0,0,0,360,6.2,10,9,16,1524,9,999999999,21,0.058,0,88,0.2,0,1 +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,823,9,999999999,20,0.058,0,88,0.2,0.1,1 +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,9667,2853,6827,1677,360,6.2,10,10,16,671,9,999999999,20,0.058,0,88,0.2,0,1 +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,6069,0,6116,2549,360,3.1,10,10,4.8,5182,9,999999999,19,0.058,0,88,0.2,0,1 +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,7507,0,7571,3494,350,4.6,8,8,16,457,9,999999999,19,0.058,0,88,0.2,0,1 +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,5,81,84400,822,1361,327,109,0,109,11230,0,11331,5377,10,5.1,10,10,16.1,600,9,999999999,18,0.058,0,88,0.2,0,1 +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,3.9,66,84400,946,1361,319,279,18,266,32338,1479,31005,11773,30,4.6,8,8,16,1219,9,999999999,17,0.058,0,88,0.2,0,1 +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,43752,4323,39880,14527,40,3.1,8,8,16,732,9,999999999,17,0.058,0,88,0.2,0,1 +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,62598,26450,37790,13912,40,3.1,8,8,16,853,9,999999999,17,0.058,0,88,0.2,0,1 +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,30215,2398,28040,10708,10,3.1,8,8,16,1036,9,999999999,16,0.058,0,88,0.2,0,1 +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,32939,6942,27883,9805,360,1.5,8,8,16,1097,9,999999999,15,0.058,0,88,0.2,0,1 +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,18484,847,18001,6122,100,2.1,8,8,16,1097,9,999999999,14,0.058,0,88,0.2,0,1 +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,9296,436,8991,2870,160,3.1,5,5,16,77777,9,999999999,13,0.058,0,88,0.2,0,1 +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,1726,0,1267,392,150,2.1,4,4,16,77777,9,999999999,12,0.058,0,88,0.2,0,1 +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,77777,9,999999999,12,0.058,0,88,0.2,0,1 +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,77777,9,999999999,12,0.058,0,88,0.2,0,1 +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,77777,9,999999999,12,0.058,0,88,0.2,0,1 +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,2.8,86,84100,0,0,279,0,0,0,0,0,0,0,170,4.1,2,2,16,77777,9,999999999,11,0.058,0,88,0.2,0,1 +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,77777,9,999999999,11,0.058,0,88,0.2,0.4,1 +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,77777,9,999999999,12,0.058,0,88,0.2,0,1 +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,77777,9,999999999,12,0.059,0,88,0.2,0,1 +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,77777,9,999999999,13,0.059,0,88,0.2,0,1 +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,77777,9,999999999,12,0.059,0,88,0.2,0,1 +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,77777,9,999999999,11,0.059,0,88,0.2,0,1 +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,6096,9,999999999,11,0.059,0,88,0.2,0,1 +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,6096,9,999999999,11,0.059,0,88,0.2,0,1 +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,1557,0,1568,625,0,0,4,4,16,6096,9,999999999,11,0.059,0,88,0.2,0,1 +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,14486,2885,12755,4086,270,1.5,4,3,16,6096,9,999999999,11,0.059,0,88,0.2,0,1 +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,47000,33628,26353,8430,0,0,4,2,14.4,6096,9,999999999,12,0.059,0,88,0.2,0,1 +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,17082,0,17236,7648,170,2.6,8,4,16,6096,9,999999999,12,0.059,0,88,0.2,0,1 +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,52252,16796,37685,13524,250,3.1,8,6,16,6096,9,999999999,12,0.059,0,88,0.2,0,1 +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,73623,38917,34934,13174,210,3.1,6,5,16,6096,9,999999999,12,0.059,0,88,0.2,0,1 +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,40743,8855,31843,12213,250,2.6,7,6,16,6096,9,999999999,13,0.059,0,88,0.2,0,1 +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,73032,48078,26427,10168,140,2.1,8,7,16,3962,9,999999999,13,0.059,0,88,0.2,0,1 +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,40429,16388,28728,9944,70,3.1,9,6,16,4267,9,999999999,13,0.059,0,88,0.2,0,1 +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,26899,8826,22028,6946,70,3.1,9,7,16,4267,9,999999999,13,0.059,0,88,0.2,0,1 +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,10121,935,9599,2981,70,3.1,7,7,16,3962,9,999999999,13,0.059,0,88,0.2,0,1 +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,1289,0,938,295,40,3.1,10,6,16,4572,9,999999999,13,0.059,0,88,0.2,0,1 +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,4572,9,999999999,13,0.059,0,88,0.2,0,1 +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,4572,9,999999999,13,0.059,0,88,0.2,0,1 +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,6706,9,999999999,12,0.059,0,88,0.2,0,1 +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,6096,9,999999999,12,0.059,0,88,0.2,0,1 +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,6096,9,999999999,11,0.059,0,88,0.2,0,1 +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,11,0.059,0,88,0.2,0,1 +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,10,0.059,0,88,0.2,0,1 +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,10,0.059,0,88,0.2,0,1 +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,6096,9,999999999,11,0.059,0,88,0.2,0,1 +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,6096,9,999999999,12,0.059,0,88,0.2,0,1 +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,6096,9,999999999,13,0.059,0,88,0.2,0,1 +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,77777,9,999999999,12,0.059,0,88,0.2,0,1 +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,10532,1573,5717,1497,220,5.7,0,0,16,77777,9,999999999,12,0.059,0,88,0.2,0,1 +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,30090,28257,8240,2866,240,5.2,0,0,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 +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,53640,46988,11906,4512,250,4.1,0,0,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 +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,62008,42814,25602,9479,280,2.6,0,0,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 +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,80696,53196,19717,7977,310,1.5,0,0,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 +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,90954,56210,15319,6372,340,3.6,0,0,16,77777,9,999999999,12,0.059,0,88,0.2,0,1 +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,78411,91769,12616,2469,40,5.7,3,3,16,77777,9,999999999,13,0.059,0,88,0.2,0,1 +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,71222,90333,11873,2115,320,3.6,3,3,16,77777,9,999999999,13,0.059,0,88,0.2,0,1 +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,64978,49746,10923,4350,330,3.1,3,3,16,77777,9,999999999,14,0.059,0,88,0.2,0,1 +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,45437,40527,7529,2841,340,3.6,3,3,16,77777,9,999999999,14,0.059,0,88,0.2,0,1 +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,20808,15782,4947,1702,20,3.1,5,5,16,77777,9,999999999,14,0.059,0,88,0.2,0,1 +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,1195,8096,1023,177,360,2.1,0,0,16,77777,9,999999999,14,0.059,0,88,0.2,0,1 +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,77777,9,999999999,14,0.059,0,88,0.2,0,1 +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,77777,9,999999999,14,0.059,0,88,0.2,0,1 +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,-2.8,21,83500,0,0,340,0,0,0,0,0,0,0,50,2.1,3,3,16,77777,9,999999999,14,0.059,0,88,0.2,0,1 +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,77777,9,999999999,14,0.059,0,88,0.2,0,1 +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,77777,9,999999999,14,0.059,0,88,0.2,0,1 +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,40,83100,0,0,320,0,0,0,0,0,0,0,230,3.2,0,0,16,77777,9,999999999,13,0.059,0,88,0.2,0,1 +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,6096,9,999999999,11,0.06,0,88,0.2,0,1 +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,39,83000,0,0,332,0,0,0,0,0,0,0,200,3.9,9,4,16,6096,9,999999999,11,0.06,0,88,0.2,0,1 +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,6096,9,999999999,11,0.06,0,88,0.2,0,1 +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,6096,9,999999999,12,0.06,0,88,0.2,0,1 +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,7620,9,999999999,12,0.06,0,88,0.2,0,1 +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,1.1,39,83100,0,80,322,0,0,0,0,0,0,0,190,5.2,8,3,16,7620,9,999999999,13,0.06,0,88,0.2,0,1 +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,1655,0,1666,652,190,5.2,7,4,16,6706,9,999999999,13,0.06,0,88,0.2,0,1 +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,33328,31002,7151,2520,200,2.6,7,5,16,6706,9,999999999,13,0.06,0,88,0.2,0,1 +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,57432,50994,12213,4611,270,6.2,7,5,16,6096,9,999999999,14,0.06,0,88,0.2,0,1 +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,62958,43377,27685,10030,270,5.7,7,4,16,6706,9,999999999,14,0.06,0,88,0.2,0,1 +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,80728,52664,19119,7753,210,5.2,7,4,16,6706,9,999999999,15,0.06,0,88,0.2,0,1 +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,19,83500,986,1365,371,763,841,153,92954,58356,18718,7703,240,2.6,6,4,16,6706,9,999999999,14,0.06,0,88,0.2,0,1 +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,92224,57244,15138,6289,350,4.1,6,4,16,6706,9,999999999,14,0.06,0,88,0.2,0,1 +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,81272,54182,13240,5437,230,3.6,5,4,16,7315,9,999999999,14,0.06,0,88,0.2,0,1 +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,59245,45828,16911,6500,250,2.1,4,3,16,7315,9,999999999,14,0.06,0,88,0.2,0,1 +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,41591,38585,14148,4993,150,4.1,5,4,16,77777,9,999999999,13,0.06,0,88,0.2,0,1 +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,16207,11490,7790,2505,130,4.1,10,5,16,77777,9,999999999,13,0.06,0,88,0.2,0,1 +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,719,0,599,189,160,3.1,4,3,16,77777,9,999999999,13,0.06,0,88,0.2,0,1 +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,77777,9,999999999,12,0.06,0,88,0.2,0,1 +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,77777,9,999999999,12,0.06,0,88,0.2,0,1 +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,77777,9,999999999,12,0.06,0,88,0.2,0,1 +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,-2.2,22,83200,0,0,346,0,0,0,0,0,0,0,190,2.6,10,5,16,77777,9,999999999,12,0.06,0,88,0.2,0,1 +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,36,83000,0,0,326,0,0,0,0,0,0,0,160,3.6,10,5,16,77777,9,999999999,11,0.06,0,88,0.2,0,1 +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,2.2,42,83100,0,0,310,0,0,0,0,0,0,0,40,9.3,1,0,16,77777,9,999999999,11,0.06,0,88,0.2,0,1 +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,5.6,74,83000,0,0,292,0,0,0,0,0,0,0,50,4.6,0,0,16,77777,9,999999999,12,0.06,0,88,0.2,0,1 +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,74,83000,0,0,289,0,0,0,0,0,0,0,280,1.5,0,0,16,77777,9,999999999,12,0.06,0,88,0.2,0,1 +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,82,82900,0,0,283,0,0,0,0,0,0,0,240,3.6,0,0,16,77777,9,999999999,12,0.06,0,88,0.2,0,1 +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,80,83000,0,0,285,0,0,0,0,0,0,0,250,2.1,0,0,16,6706,9,999999999,12,0.06,0,88,0.2,0,1 +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,1,0,16,77777,9,999999999,13,0.06,0,88,0.2,0,1 +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,3.9,93,82900,0,57,282,0,0,0,0,0,0,0,150,2.6,3,3,16,77777,9,999999999,13,0.06,0,88,0.2,0,1 +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,77777,9,999999999,13,0.06,0,88,0.2,0,1 +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,33533,29573,6699,2371,0,0,5,4,16,77777,9,999999999,13,0.06,0,88,0.2,0,1 +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,51375,43700,13594,5067,30,2.1,5,4,16,77777,9,999999999,14,0.06,0,88,0.2,0,1 +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,67144,92425,12911,1895,70,2.6,6,4,16,77777,9,999999999,14,0.06,0,88,0.2,0,1 +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,6.7,42,83100,925,1365,357,714,906,98,76018,92291,13695,2319,100,2.1,6,5,16,7315,9,999999999,14,0.06,0,88,0.2,0,1 +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,79599,90733,15112,2645,30,3.6,6,5,16,7315,9,999999999,15,0.06,0,88,0.2,0,1 +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,6.1,30,83600,966,1365,385,734,832,144,89396,55114,17611,7261,50,3.1,8,6,16,7315,9,999999999,16,0.06,0,88,0.2,0,1 +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,25,83700,881,1365,389,624,738,146,74997,49851,17620,7110,70,4.1,7,5,16,7315,9,999999999,17,0.06,0,88,0.2,0,1 +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,65062,49798,11445,4535,90,4.1,6,4,16,77777,9,999999999,18,0.06,0,88,0.2,0,1 +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,46610,42319,8168,3055,100,1.5,5,4,16,77777,9,999999999,19,0.06,0,88,0.2,0,1 +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,18818,56735,5450,771,110,2.6,6,5,16,77777,9,999999999,20,0.06,0,88,0.2,0,1 +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,662,6485,692,130,0,0,6,4,16,77777,9,999999999,21,0.06,0,88,0.2,0,1 +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,77777,9,999999999,22,0.06,0,88,0.2,0,1 +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,77777,9,999999999,23,0.06,0,88,0.2,0,1 +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,77777,9,999999999,24,0.06,0,88,0.2,0,1 +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,77777,9,999999999,25,0.06,0,88,0.2,0,1 +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,2,2,16,77777,9,999999999,26,0.06,0,88,0.2,0,1 +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,77777,9,999999999,25,0.06,0,88,0.2,0,1 +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,77777,9,999999999,24,0.06,0,88,0.2,0,1 +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,77777,9,999999999,23,0.06,0,88,0.2,0,1 +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,77777,9,999999999,22,0.06,0,88,0.2,0,1 +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,77777,9,999999999,21,0.06,0,88,0.2,0,1 +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,63,83000,0,0,299,0,0,0,0,0,0,0,210,5.7,0,0,16,77777,9,999999999,21,0.06,0,88,0.2,0,1 +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,77777,9,999999999,20,0.06,0,88,0.2,0,1 +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,59,83300,133,1366,319,0,0,0,0,0,0,0,360,3.1,4,4,16,77777,9,999999999,19,0.06,0,88,0.2,0,1 +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,17862,6609,14419,4319,300,2.1,6,6,16,3658,9,999999999,18,0.06,0,88,0.2,0,1 +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,51250,44954,16695,6004,210,2.1,3,3,16,77777,9,999999999,17,0.06,0,88,0.2,0,1 +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,67958,96420,11009,1804,120,2.1,5,5,16,77777,9,999999999,16,0.06,0,88,0.2,0,1 +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,74938,91321,13965,2309,60,4.6,4,4,16,77777,9,999999999,15,0.06,0,88,0.2,0,1 +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,91142,57534,20803,8473,130,3.6,5,5,16,6096,9,999999999,15,0.06,0,88,0.2,0,1 +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,71300,38294,36212,13292,30,3.1,8,7,16,6096,9,999999999,15,0.06,0,88,0.2,0,1 +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,29361,2349,27310,10335,10,13.4,8,7,16,3658,9,999999999,14,0.06,0,88,0.2,0,1 +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,44454,23329,27655,9500,30,13.4,9,9,16,3048,9,999999999,14,0.06,0,88,0.2,0,1 +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,35585,29798,15021,5187,40,7.2,9,9,16,3048,9,999999999,14,0.06,0,88,0.2,0,1 +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,6.7,58,83500,281,1366,346,150,466,54,17113,11389,6177,2043,30,9.3,8,8,16,3048,9,999999999,14,0.06,0,88,0.2,0,1 +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,490,0,367,115,70,4.1,6,6,16,6096,9,999999999,13,0.06,0,88,0.2,0,1 +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,6096,9,999999999,13,0.06,0,88,0.2,0,1 +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,6.1,77,83600,0,0,310,0,0,0,0,0,0,0,160,4.6,5,5,16,6096,9,999999999,13,0.06,0,88,0.2,0,1 +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,6.1,77,83500,0,0,329,0,0,0,0,0,0,0,170,4.6,9,9,16,6096,9,999999999,12,0.06,0,88,0.2,0,1 +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,6096,9,999999999,12,0.06,0,88,0.2,0,1 +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,6096,9,999999999,12,0.06,0,88,0.2,0,1 +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,2743,9,999999999,12,0.06,0,88,0.2,0,1 +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,63,83300,0,0,328,0,0,0,0,0,0,0,150,5.2,9,8,16,3048,9,999999999,12,0.061,0,88,0.2,0,1 +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,3048,9,999999999,12,0.061,0,88,0.2,0,1 +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,3048,9,999999999,12,0.061,0,88,0.2,0,1 +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,3048,9,999999999,12,0.061,0,88,0.2,0,1 +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,13,0.061,0,88,0.2,0,1 +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,7,100,83200,0,11,325,0,0,0,0,0,0,0,280,4.1,10,10,4.8,60,9,999999999,13,0.061,0,88,0.2,0,1 +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,13,0.061,0,88,0.2,0,1 +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,8528,0,8594,3260,280,4.1,10,10,4,61,9,999999999,13,0.061,0,88,0.2,0,1 +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,15770,0,15903,6307,270,4.1,10,10,3.2,183,9,999999999,13,0.061,0,88,0.2,0,1 +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,24376,453,24037,8940,280,4.6,10,10,9.6,244,9,999999999,13,0.061,0,88,0.2,0,1 +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,64292,33287,35031,12672,330,3.6,8,8,11.2,6096,9,999999999,13,0.061,0,88,0.2,0,1 +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,73249,39932,34061,12780,350,3.1,8,7,12.8,6096,9,999999999,14,0.061,0,88,0.2,0,1 +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,39340,5055,34730,12875,320,2.1,8,7,12.8,6096,9,999999999,14,0.061,0,88,0.2,0,1 +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,38364,4199,35193,12372,290,1.5,9,7,12.8,6096,9,999999999,15,0.061,0,88,0.2,0,1 +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,36038,10426,28950,9728,250,1.5,9,7,12.8,6096,9,999999999,15,0.061,0,88,0.2,0,1 +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,18644,2329,17271,5718,220,2.1,9,8,12.8,3353,9,999999999,16,0.061,0,88,0.2,0,1 +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,2554,0,2573,1089,190,5.2,7,7,12.8,3048,9,999999999,16,0.061,0,88,0.2,0,1 +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,8.3,64,83300,40,786,335,1,0,1,96,0,97,40,200,2.1,8,5,16,3658,9,999999999,17,0.061,0,88,0.2,0,1 +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,2896,9,999999999,17,0.061,0,88,0.2,0,1 +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,6096,9,999999999,18,0.061,0,88,0.2,0,1 +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,6096,9,999999999,18,0.061,0,88,0.2,0,1 +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,57,83200,0,0,353,0,0,0,0,0,0,0,270,3.1,10,10,16,6096,9,999999999,19,0.061,0,88,0.2,0,1 +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,3353,9,999999999,19,0.061,0,88,0.2,0,1 +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,19,0.061,0,88,0.2,0,1 +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,19,0.061,0,88,0.2,0,1 +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,8,100,83300,0,0,331,0,0,0,0,0,0,0,10,6.7,10,10,8.9,150,9,999999999,19,0.061,0,88,0.2,0,1 +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,20,0.061,0,88,0.2,0,1 +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,20,0.061,0,88,0.2,0,1 +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,20,0.061,0,88,0.2,0,1 +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,89,83500,0,0,306,0,0,0,0,0,0,0,50,4.6,8,8,11.2,213,9,999999999,20,0.061,0,88,0.2,0,1 +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,89,83600,124,1356,321,0,0,0,0,0,0,0,60,4.6,10,10,11.2,244,9,999999999,20,0.061,0,88,0.2,0,1 +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,4.4,96,83600,379,1368,313,47,0,47,4666,0,4702,1987,30,5.2,10,10,5.2,91,9,999999999,20,0.061,0,88,0.2,0,1 +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,4.4,96,83700,606,1368,313,81,0,81,8197,0,8266,3710,60,5.2,10,10,1.2,91,9,999999999,20,0.061,0,88,0.2,0.3,1 +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,11198,0,11298,5286,40,5.7,10,10,1.2,152,9,999999999,20,0.061,0,88,0.2,0,1 +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,4.4,96,83800,908,1368,313,130,0,130,13490,0,13615,6498,40,5.7,10,10,1.2,152,9,999999999,20,0.061,0,88,0.2,0,1 +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,13867,0,13997,6764,30,6.2,10,10,1.2,152,9,999999999,19,0.061,0,88,0.2,0,1 +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,17291,0,17452,8138,50,6.7,10,10,1.2,152,9,999999999,19,0.061,0,88,0.2,0,1 +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,26802,948,26008,9863,60,6.7,10,10,1.2,152,9,999999999,18,0.061,0,88,0.2,0,1 +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,21686,455,21443,7804,70,6.7,10,10,3.2,213,9,999999999,17,0.061,0,88,0.2,0,1 +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,14753,384,14585,5002,60,6.2,10,10,3.2,152,9,999999999,17,0.061,0,88,0.2,0,1 +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,5517,0,5557,2062,60,5.2,10,10,2.8,152,9,999999999,16,0.061,0,88,0.2,0,1 +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,100,83900,36,741,287,1,0,1,96,0,97,40,60,3.1,10,10,3.2,396,9,999999999,15,0.061,0,88,0.2,0,1 +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,14,0.061,0,88,0.2,0,1 +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,14,0.061,0,88,0.2,0,1 +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,13,0.061,0,88,0.2,0,1 +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,10,10,3.2,183,9,999999999,12,0.061,0,88,0.2,0,1 +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.6,95,84200,0,0,286,0,0,0,0,0,0,0,0,0,10,10,3.2,122,9,999999999,12,0.061,0,88,0.2,0,1 +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,10,10,3.2,122,9,999999999,11,0.061,0,88,0.2,0,1 +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,10,10,3.2,122,9,999999999,11,0.061,0,88,0.2,0,1 +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,10,10,3.2,122,9,999999999,11,0.061,0,88,0.2,0,1 +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,10,10,3.2,122,9,999999999,11,0.061,0,88,0.2,0,1 +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,10,10,3.2,122,9,999999999,10,0.061,0,88,0.2,0,1 +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,10,10,4.8,183,9,999999999,10,0.061,0,88,0.2,0,1 +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,10,10,4,305,9,999999999,10,0.061,0,88,0.2,0,1 +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,10,10,4,335,9,999999999,10,0.061,0,88,0.2,0,1 +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,10145,0,10222,3630,0,0,10,10,4,396,9,999999999,9,0.061,0,88,0.2,0,1 +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,17232,0,17375,6632,0,0,10,10,4,244,9,999999999,9,0.061,0,88,0.2,0,1 +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,21810,0,22003,8993,0,0,10,10,3.2,183,9,999999999,9,0.061,0,88,0.2,0,1 +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,24796,463,24446,9525,0,0,10,10,4,274,9,999999999,9,0.061,0,88,0.2,0,1 +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,96,84200,958,1369,289,194,0,194,20243,0,20432,9287,0,0,10,10,4,274,9,999999999,9,0.061,0,88,0.2,0,1 +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,92,84200,941,1369,291,160,0,160,16675,0,16830,7869,0,0,10,10,9.6,213,9,999999999,9,0.061,0,88,0.2,0,1 +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,15522,0,15662,7182,50,4.1,10,10,12.8,152,9,999999999,9,0.061,0,88,0.2,0,1 +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,15333,0,15465,6602,50,3.6,10,10,14.4,213,9,999999999,9,0.061,0,88,0.2,0.3,1 +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,10453,0,10537,4255,50,4.6,10,10,9.6,213,9,999999999,10,0.061,0,88,0.2,0,1 +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,4234,0,4264,1660,30,4.6,10,10,4.8,213,9,999999999,10,0.061,0,88,0.2,0,1 +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,152,9,999999999,10,0.061,0,88,0.2,0,1 +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,183,9,999999999,10,0.061,0,88,0.2,0,1 +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,10,0.061,0,88,0.2,0,1 +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,11,0.061,0,88,0.2,0,1 +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,11,0.061,0,88,0.2,0,1 +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,11,0.061,0,88,0.2,0,1 +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,11,0.061,0,88,0.2,0,1 +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,92,84500,0,0,291,0,0,0,0,0,0,0,150,2.6,10,10,14.4,1097,9,999999999,10,0.061,0,88,0.2,0,1 +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,92,84500,0,0,291,0,0,0,0,0,0,0,170,2.1,10,10,16,1097,9,999999999,10,0.061,0,88,0.2,0,1 +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,10,10,16,1219,9,999999999,10,0.061,0,88,0.2,0.7,1 +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,10,10,16,1341,9,999999999,9,0.061,0,88,0.2,0,1 +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,10,10,16,1280,9,999999999,9,0.061,0,88,0.2,0,1 +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,9,0.061,0,88,0.2,0,1 +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,1158,9,999999999,8,0.061,0,88,0.2,0,1 +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,7052,0,7105,2774,100,3.1,10,10,16,1158,9,999999999,8,0.061,0,88,0.2,0,1 +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,15186,0,15312,6048,110,2.6,10,10,16,1158,9,999999999,8,0.061,0,88,0.2,0,1 +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,19135,0,19303,8139,0,0,10,10,16,1219,9,999999999,8,0.061,0,88,0.2,0,1 +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,18701,0,18872,8502,110,2.6,10,10,16,1128,9,999999999,7,0.061,0,88,0.2,0,1 +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,-2.2,58,84800,952,1369,306,188,0,188,19619,0,19801,9029,80,2.6,10,10,16,1128,9,999999999,7,0.061,0,88,0.2,0,1 +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,-2.8,55,84700,935,1369,305,201,6,197,23846,456,23484,9311,0,0,10,10,16,1128,9,999999999,8,0.061,0,88,0.2,0,1 +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,16146,0,16292,7395,80,1.5,10,10,16,1128,9,999999999,8,0.061,0,88,0.2,0,1 +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,15943,0,16080,6773,80,4.1,10,10,16,1189,9,999999999,8,0.061,0,88,0.2,0,1 +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,-1.1,64,84700,495,1369,307,125,0,125,12562,0,12662,4847,80,3.6,10,10,16,1250,9,999999999,9,0.061,0,88,0.2,0,1 +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,-1.1,64,84600,252,1369,307,38,0,38,3741,0,3768,1487,100,3.6,10,10,16,1311,9,999999999,9,0.061,0,88,0.2,0,1 +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,1372,9,999999999,9,0.061,0,88,0.2,0,1 +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,76,84700,0,0,303,0,0,0,0,0,0,0,110,3.1,10,10,16,1433,9,999999999,10,0.061,0,88,0.2,0,1 +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,76,84700,0,0,303,0,0,0,0,0,0,0,180,2.6,10,10,16,1494,9,999999999,10,0.061,0,88,0.2,0,1 +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,1494,9,999999999,10,0.061,0,88,0.2,0,1 +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,77777,9,999999999,10,0.061,0,88,0.2,0,1 +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,77777,9,999999999,11,0.061,0,88,0.2,0,1 +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,1128,9,999999999,10,0.061,0,88,0.2,0,1 +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,1128,9,999999999,10,0.061,0,88,0.2,0,1 +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,1128,9,999999999,9,0.061,0,88,0.2,0,1 +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,1128,9,999999999,9,0.061,0,88,0.2,0,1 +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,1067,9,999999999,8,0.061,0,88,0.2,0,1 +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,1067,9,999999999,8,0.061,0,88,0.2,0,1 +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,1067,9,999999999,7,0.061,0,88,0.2,0,1 +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,1006,9,999999999,7,0.061,0,88,0.2,0,1 +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,20069,14114,12623,3834,170,6.2,4,4,16,77777,9,999999999,6,0.061,0,88,0.2,0,1 +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,-1.1,64,84500,591,1370,292,442,731,126,51085,48033,14619,5287,160,4.1,8,8,16,914,9,999999999,6,0.061,0,88,0.2,0,1 +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,65673,51312,21019,7911,210,3.1,5,5,16,77777,9,999999999,5,0.061,0,88,0.2,0,1 +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,56,84400,892,1370,308,708,918,108,87250,59080,13355,5480,160,3.1,8,8,16,975,9,999999999,5,0.061,0,88,0.2,0,1 +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,80339,96038,14546,2438,150,4.6,5,5,16,77777,9,999999999,5,0.061,0,88,0.2,0,1 +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,77925,94887,13933,2343,140,7.7,5,5,16,77777,9,999999999,6,0.061,0,88,0.2,0,1 +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,48,84500,842,1370,302,651,910,89,68823,91481,12667,2002,150,6.2,3,3,16,77777,9,999999999,6,0.061,0,88,0.2,0,1 +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,48,84500,692,1370,302,499,808,90,60375,48945,10922,4273,150,6.7,3,3,16,77777,9,999999999,7,0.061,0,88,0.2,0,1 +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,50,84500,488,1370,299,332,744,66,39514,36688,7875,2894,180,6.2,3,3,16,77777,9,999999999,7,0.061,0,88,0.2,0,1 +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,56,84200,245,1370,289,148,610,38,17180,8969,4420,1475,170,4.6,4,2,16,77777,9,999999999,8,0.061,0,88,0.2,0,1 +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,70,84300,26,628,267,0,0,0,0,0,0,0,160,5.7,0,0,16,77777,9,999999999,8,0.061,0,88,0.2,0,1 +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,82,84200,0,0,259,0,0,0,0,0,0,0,130,4.1,0,0,16,77777,9,999999999,9,0.061,0,88,0.2,0,1 +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,77777,9,999999999,9,0.061,0,88,0.2,0,1 +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,77777,9,999999999,10,0.061,0,88,0.2,0,1 +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,82,84000,0,0,270,0,0,0,0,0,0,0,180,5.7,4,3,16,77777,9,999999999,10,0.061,0,88,0.2,0,1 +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,85,84100,0,0,265,0,0,0,0,0,0,0,190,5.7,4,2,16,77777,9,999999999,11,0.061,0,88,0.2,0,1 +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,77777,9,999999999,10,0.061,0,88,0.2,0,1 +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,88,83800,0,0,255,0,0,0,0,0,0,0,190,5.2,0,0,16,77777,9,999999999,10,0.061,0,88,0.2,0,1 +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,77777,9,999999999,10,0.061,0,88,0.2,0,1 +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,77777,9,999999999,10,0.061,0,88,0.2,0,1 +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,-1.7,87,83600,0,0,247,0,0,0,0,0,0,0,0,0,0,0,16,77777,9,999999999,9,0.061,0,88,0.2,0,1 +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,-1.1,91,83900,0,0,247,0,0,0,0,0,0,0,200,2.6,0,0,16,77777,9,999999999,9,0.061,0,88,0.2,0,1 +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,-1.7,87,83600,0,0,247,0,0,0,0,0,0,0,210,3.1,0,0,16,77777,9,999999999,9,0.061,0,88,0.2,0,1 +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,77777,9,999999999,9,0.061,0,88,0.2,0,1 +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,79,83900,360,1371,261,246,730,54,28762,25988,6328,2201,260,1.5,0,0,16,77777,9,999999999,8,0.061,0,88,0.2,0,1 +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,47249,86306,9505,1359,0,0,0,0,16,77777,9,999999999,8,0.061,0,88,0.2,0,1 +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,62752,90885,12020,1776,30,1.5,0,0,16,77777,9,999999999,8,0.061,0,88,0.2,0,1 +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,78244,52768,16172,6564,60,2.1,3,3,16,77777,9,999999999,8,0.061,0,88,0.2,0,1 +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,85988,55141,15739,6483,90,2.1,3,3,16,77777,9,999999999,8,0.061,0,88,0.2,0,1 +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,85493,55772,15245,6267,90,3.6,3,3,16,77777,9,999999999,9,0.061,0,88,0.2,0,1 +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,68888,92132,12819,1988,80,4.1,3,3,16,77777,9,999999999,10,0.061,0,88,0.2,0,1 +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,30,84000,685,1371,334,527,919,66,56145,91039,9789,1536,90,4.6,3,3,16,77777,9,999999999,10,0.061,0,88,0.2,0,1 +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,36380,77220,8165,1159,70,4.1,3,3,16,77777,9,999999999,11,0.061,0,88,0.2,0,1 +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,16661,6613,3761,1266,10,2.1,3,3,16,77777,9,999999999,12,0.061,0,88,0.2,0,1 +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,77777,9,999999999,13,0.061,0,88,0.2,0,1 +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.6,52,83600,0,0,300,0,0,0,0,0,0,0,60,1.5,3,3,16,77777,9,999999999,13,0.061,0,88,0.2,0,1 +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,77777,9,999999999,14,0.061,0,88,0.2,0,1 +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,77777,9,999999999,15,0.061,0,88,0.2,0,1 +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,77777,9,999999999,16,0.061,0,88,0.2,0,1 +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,77777,9,999999999,16,0.061,0,88,0.2,0,1 +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,77777,9,999999999,16,0.061,0,88,0.2,0,1 +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,77777,9,999999999,16,0.061,0,88,0.2,0,1 +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,85,82800,0,0,256,0,0,0,0,0,0,0,200,3.1,0,0,16,77777,9,999999999,15,0.061,0,88,0.2,0,1 +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,77777,9,999999999,15,0.061,0,88,0.2,0,1 +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,77777,9,999999999,14,0.061,0,88,0.2,0,1 +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,67,83000,0,0,269,0,0,0,0,0,0,0,200,3.6,0,0,16,77777,9,999999999,14,0.061,0,88,0.2,0,1 +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,77777,9,999999999,13,0.061,0,88,0.2,0,1 +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,77777,9,999999999,13,0.061,0,88,0.2,0,1 +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,29781,30430,8975,2959,250,1.5,0,0,16,77777,9,999999999,13,0.061,0,88,0.2,0,1 +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,52030,46671,9911,3730,220,1.5,0,0,16,77777,9,999999999,12,0.061,0,88,0.2,0,1 +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,2.2,42,83400,760,1372,323,585,847,114,70249,54448,13738,5419,180,1.5,3,3,16,77777,9,999999999,12,0.061,0,88,0.2,0,1 +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,74223,97836,10448,1938,150,2.6,3,3,16,77777,9,999999999,11,0.061,0,88,0.2,0,1 +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,77801,96265,11816,2212,110,2.1,3,3,16,77777,9,999999999,12,0.061,0,88,0.2,0,1 +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,78521,99343,11451,2128,80,3.6,3,3,16,77777,9,999999999,12,0.061,0,88,0.2,0,1 +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,68622,92511,12965,1973,100,4.6,4,4,16,77777,9,999999999,12,0.061,0,88,0.2,0,1 +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,21,83400,678,1372,365,498,837,83,60470,49524,10107,3949,100,5.2,6,5,16,77777,9,999999999,13,0.061,0,88,0.2,0,1 +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,23,83300,474,1372,357,325,760,61,38790,35938,7297,2677,140,8.8,4,4,16,77777,9,999999999,13,0.061,0,88,0.2,0,1 +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,13752,46689,4690,648,150,8.8,5,5,16,77777,9,999999999,13,0.061,0,88,0.2,0,1 +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,77777,9,999999999,13,0.061,0,88,0.2,0,1 +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,77777,9,999999999,14,0.061,0,88,0.2,0,1 +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,77777,9,999999999,14,0.061,0,88,0.2,0,1 +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,77777,9,999999999,14,0.061,0,88,0.2,0,1 +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,2.8,61,82700,0,0,302,0,0,0,0,0,0,0,160,7.2,3,3,16,77777,9,999999999,15,0.061,0,88,0.2,0,1 +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,77777,9,999999999,15,0.061,0,88,0.2,0,1 +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,77777,9,999999999,15,0.061,0,88,0.2,0,1 +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,77777,9,999999999,15,0.061,0,88,0.2,0,1 +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,77777,9,999999999,14,0.061,0,88,0.2,0,1 +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,40,82800,0,0,300,0,0,0,0,0,0,0,210,7.2,0,0,16,77777,9,999999999,14,0.061,0,88,0.2,0,1 +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,77777,9,999999999,14,0.061,0,88,0.2,0,1 +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,2.2,82,82900,0,0,269,0,0,0,0,0,0,0,280,1.5,0,0,16,77777,9,999999999,14,0.061,0,88,0.2,0,1 +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,77777,9,999999999,14,0.061,0,88,0.2,0,1 +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,77777,9,999999999,14,0.061,0,88,0.2,0,1 +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,25552,23344,8430,2802,310,3.6,3,3,16,77777,9,999999999,14,0.061,0,88,0.2,0,1 +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,50735,44438,9119,3445,340,1.5,3,3,16,77777,9,999999999,13,0.061,0,88,0.2,0,1 +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,43,83300,755,1373,339,579,884,91,70592,52746,11129,4439,10,3.1,3,3,16,77777,9,999999999,13,0.061,0,88,0.2,0,1 +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,80341,54616,12857,5262,150,7.2,3,3,16,77777,9,999999999,13,0.061,0,88,0.2,0,1 +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,85476,55555,14915,6141,150,8.8,3,3,16,77777,9,999999999,13,0.061,0,88,0.2,0,1 +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,1.1,21,83300,910,1373,369,703,927,86,74506,93735,12129,2164,140,7.7,3,3,16,77777,9,999999999,13,0.061,0,88,0.2,0,1 +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,64501,88164,11490,1890,190,7.2,3,3,16,77777,9,999999999,13,0.061,0,88,0.2,0,1 +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,61387,51185,9648,3766,190,8.8,3,3,16,77777,9,999999999,13,0.061,0,88,0.2,0,1 +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,38137,35842,7069,2587,200,7.7,3,3,16,77777,9,999999999,13,0.061,0,88,0.2,0,1 +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,14317,4212,3526,1180,180,8.2,8,8,16,7620,9,999999999,13,0.061,0,88,0.2,0,1 +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,7620,9,999999999,13,0.061,0,88,0.2,0,1 +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,6096,9,999999999,12,0.061,0,88,0.2,0,1 +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,-1.1,24,83300,0,0,345,0,0,0,0,0,0,0,200,7.7,8,4,16,6096,9,999999999,12,0.061,0,88,0.2,0,1 +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,5486,9,999999999,12,0.061,0,88,0.2,0,1 +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,6096,9,999999999,12,0.061,0,88,0.2,0,1 +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,6096,9,999999999,12,0.061,0,88,0.2,0,1 +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,6096,9,999999999,12,0.061,0,88,0.2,0,1 +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,2.8,61,82800,0,0,305,0,0,0,0,0,0,0,80,2.6,10,4,16,6096,9,999999999,12,0.061,0,88,0.2,0,1 +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,6096,9,999999999,12,0.061,0,88,0.2,0,1 +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,2.8,61,82900,0,0,305,0,0,0,0,0,0,0,350,2.6,7,4,16,6096,9,999999999,12,0.061,0,88,0.2,0,1 +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,6096,9,999999999,12,0.061,0,88,0.2,0,1 +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,6096,9,999999999,12,0.061,0,88,0.2,0,1 +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,77777,9,999999999,12,0.061,0,88,0.2,0,1 +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,2.8,61,83100,95,1202,302,0,0,0,0,0,0,0,210,1.5,3,3,16,77777,9,999999999,11,0.061,0,88,0.2,0,1 +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,28857,29874,9878,3154,270,2.6,3,3,16,77777,9,999999999,11,0.061,0,88,0.2,0,1 +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,44484,40305,15921,5590,260,2.1,3,3,16,77777,9,999999999,11,0.061,0,88,0.2,0,1 +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,69618,54327,13151,5184,320,1.5,3,3,16,77777,9,999999999,11,0.061,0,88,0.2,0,1 +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,82600,55967,12721,5204,330,2.6,3,3,16,77777,9,999999999,11,0.061,0,88,0.2,0,1 +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,78132,95617,14358,2321,340,2.6,3,3,16,77777,9,999999999,11,0.061,0,88,0.2,0,1 +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,75093,93850,13609,2227,50,5.7,3,3,16,77777,9,999999999,11,0.061,0,88,0.2,0,1 +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,67056,92124,12326,1913,60,4.6,3,3,16,77777,9,999999999,11,0.061,0,88,0.2,0,1 +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,60326,49605,9737,3795,60,5.7,3,3,16,77777,9,999999999,10,0.061,0,88,0.2,0,1 +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,36488,33726,7600,2762,50,6.7,4,4,16,77777,9,999999999,10,0.061,0,88,0.2,0,1 +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,13680,2739,3513,1171,360,6.2,5,5,16,77777,9,999999999,10,0.061,0,88,0.2,0,1 +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,2,41,83200,16,492,328,0,0,0,0,0,0,0,280,6.2,5,5,16.1,77777,9,999999999,10,0.061,0,88,0.2,0,1 +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,77777,9,999999999,10,0.061,0,88,0.2,0,1 +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,77777,9,999999999,10,0.061,0,88,0.2,0,1 +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,77777,9,999999999,10,0.061,0,88,0.2,0,1 +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,77777,9,999999999,9,0.061,0,88,0.2,0,1 +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,2,2,16,77777,9,999999999,9,0.061,0,88,0.2,0,1 +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,77777,9,999999999,10,0.061,0,88,0.2,0,1 +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,85,82900,0,0,270,0,0,0,0,0,0,0,130,3.1,4,4,16,77777,9,999999999,10,0.061,0,88,0.2,0,1 +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,77777,9,999999999,10,0.061,0,88,0.2,0,1 +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,77777,9,999999999,11,0.061,0,88,0.2,0,1 +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,77777,9,999999999,11,0.061,0,88,0.2,0,1 +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,77777,9,999999999,11,0.061,0,88,0.2,0,1 +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,77777,9,999999999,12,0.061,0,88,0.2,0,1 +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,77777,9,999999999,12,0.061,0,88,0.2,0,1 +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,11568,346,11504,3484,180,3.1,4,4,16,77777,9,999999999,12,0.061,0,88,0.2,0,1 +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,35749,24559,21311,6853,170,3.1,3,3,16,7620,9,999999999,13,0.061,0,88,0.2,0,1 +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,59542,45642,23775,8583,120,4.6,3,3,16,77777,9,999999999,13,0.061,0,88,0.2,0,1 +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,78308,55988,17580,7030,130,5.2,3,3,16,77777,9,999999999,13,0.061,0,88,0.2,0,1 +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,73995,49185,25497,9897,250,3.6,6,6,16,4572,9,999999999,13,0.061,0,88,0.2,0,1 +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,62104,33830,34105,12269,260,3.1,5,5,16,77777,9,999999999,13,0.061,0,88,0.2,0,1 +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,72828,55907,16568,6539,280,2.6,3,3,16,77777,9,999999999,12,0.061,0,88,0.2,0,1 +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,60504,52192,9521,3697,290,2.1,4,4,16,77777,9,999999999,12,0.061,0,88,0.2,0,1 +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,37314,36096,6832,2487,310,3.6,4,4,16,77777,9,999999999,12,0.061,0,88,0.2,0,1 +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,12257,44354,4378,602,350,2.1,8,8,16,7620,9,999999999,11,0.061,0,88,0.2,0,1 +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,7620,9,999999999,11,0.061,0,88,0.2,0,1 +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,7620,9,999999999,11,0.061,0,88,0.2,0,1 +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,62,83300,0,0,288,0,0,0,0,0,0,0,140,1.5,4,4,16,77777,9,999999999,10,0.061,0,88,0.2,0,1 +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,67,83300,0,0,285,0,0,0,0,0,0,0,140,2.1,5,5,16,77777,9,999999999,10,0.061,0,88,0.2,0,1 +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,-1.1,64,83200,0,0,275,0,0,0,0,0,0,0,160,4.1,2,2,16,77777,9,999999999,10,0.061,0,88,0.2,0,1 +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,77777,9,999999999,9,0.061,0,88,0.2,0,1 +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,-1.1,64,83200,0,0,278,0,0,0,0,0,0,0,240,3.1,3,3,16,77777,9,999999999,9,0.061,0,88,0.2,0,1 +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,77777,9,999999999,9,0.061,0,88,0.2,0,1 +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,77777,9,999999999,9,0.061,0,88,0.2,0,1 +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,77777,9,999999999,8,0.061,0,88,0.2,0,1 +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,-4.4,48,83300,0,0,274,0,0,0,0,0,0,0,310,2.6,3,3,16,77777,9,999999999,8,0.061,0,88,0.2,0,1 +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,77777,9,999999999,8,0.061,0,88,0.2,0,1 +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,77777,9,999999999,8,0.061,0,88,0.2,0,1 +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,77777,9,999999999,8,0.061,0,88,0.2,0,1 +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,56,83800,336,1375,292,236,718,60,27165,25040,6925,2342,120,3.6,3,3,16,77777,9,999999999,7,0.061,0,88,0.2,0,1 +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,-1.1,45,83900,560,1375,298,391,703,104,45575,42609,12164,4434,110,5.7,3,3,16,77777,9,999999999,7,0.061,0,88,0.2,0,1 +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,59587,47233,20573,7631,90,4.6,4,4,16,77777,9,999999999,7,0.061,0,88,0.2,0,1 +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,75343,54048,17346,6929,120,6.2,4,4,16,6706,9,999999999,7,0.061,0,88,0.2,0,1 +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,74077,49790,21621,8580,110,2.6,4,3,16,77777,9,999999999,7,0.061,0,88,0.2,0,1 +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,-5,24,83800,891,1375,327,638,658,210,74797,51888,24742,9561,100,3.6,8,7,16,77777,9,999999999,7,0.061,0,88,0.2,0,1 +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,24,83800,803,1375,336,431,291,260,48967,25427,29703,10495,80,2.6,10,9,16,3048,9,999999999,8,0.061,0,88,0.2,0,1 +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,28477,6336,24455,8169,180,5.7,9,9,16,2438,9,999999999,8,0.061,0,88,0.2,0,1 +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,6609,0,6661,2806,290,5.7,9,8,16,2134,9,999999999,9,0.061,0,88,0.2,0,1 +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,1962,0,1976,810,260,2.6,7,7,16,2743,9,999999999,9,0.061,0,88,0.2,0,1 +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,-1.1,45,83900,11,424,314,0,0,0,0,0,0,0,360,4.6,8,8,16,3048,9,999999999,10,0.061,0,88,0.2,0,1 +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,3048,9,999999999,10,0.061,0,88,0.2,0,1 +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,3048,9,999999999,11,0.061,0,88,0.2,0,1 +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,8,8,16,3048,9,999999999,11,0.061,0,88,0.2,0,1 +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,10,9,16,3353,9,999999999,11,0.061,0,88,0.2,0,1 +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,3048,9,999999999,12,0.061,0,88,0.2,0,1 +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,6096,9,999999999,12,0.061,0,88,0.2,0,1 +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,6096,9,999999999,11,0.061,0,88,0.2,0,1 +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,77777,9,999999999,11,0.061,0,88,0.2,0,1 +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,77777,9,999999999,11,0.061,0,88,0.2,0,1 +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,3,3,16,77777,9,999999999,11,0.061,0,88,0.2,0,1 +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,77777,9,999999999,11,0.061,0,88,0.2,0,1 +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,16,77777,9,999999999,10,0.061,0,88,0.2,0,1 +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,77777,9,999999999,10,0.061,0,88,0.2,0,1 +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,24108,22767,8288,2706,220,3.1,0,0,16,77777,9,999999999,10,0.061,0,88,0.2,0,1 +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.6,47,83900,555,1376,286,398,759,91,46819,43732,10738,3960,210,4.1,0,0,16,77777,9,999999999,10,0.061,0,88,0.2,0,1 +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,61129,49516,20120,7471,230,2.6,0,0,16,77777,9,999999999,10,0.061,0,88,0.2,0,1 +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,69974,91585,13859,2050,250,2.6,0,0,16,77777,9,999999999,9,0.061,0,88,0.2,0,1 +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,-1.7,31,83900,904,1376,319,708,932,94,74602,93861,13206,2202,270,2.1,3,3,16,77777,9,999999999,10,0.061,0,88,0.2,0,1 +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,82748,56831,13571,5552,290,2.6,4,3,16,77777,9,999999999,10,0.061,0,88,0.2,0,1 +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,64330,90489,12090,1853,40,4.1,3,3,16,77777,9,999999999,11,0.061,0,88,0.2,0,1 +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,28,84000,645,1376,339,474,800,98,56465,48908,11712,4475,90,5.7,3,3,16,77777,9,999999999,11,0.061,0,88,0.2,0,1 +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,32975,30671,7674,2756,140,5.7,5,5,16,77777,9,999999999,12,0.061,0,88,0.2,0,1 +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,34,83400,197,1376,329,101,485,31,11684,819,3593,1175,190,5.2,8,5,16,77777,9,999999999,12,0.061,0,88,0.2,0,1 +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,77777,9,999999999,13,0.061,0,88,0.2,0,1 +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,77777,9,999999999,13,0.061,0,88,0.2,0,1 +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,77777,9,999999999,14,0.061,0,88,0.2,0,1 +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,77777,9,999999999,14,0.061,0,88,0.2,0,1 +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,77777,9,999999999,15,0.061,0,88,0.2,0,1 +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,77777,9,999999999,15,0.061,0,88,0.2,0,1 +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,77777,9,999999999,15,0.061,0,88,0.2,0,1 +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,77777,9,999999999,14,0.06,0,88,0.2,0,1 +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,77777,9,999999999,13,0.06,0,88,0.2,0,1 +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,77777,9,999999999,13,0.06,0,88,0.2,0,1 +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,77777,9,999999999,12,0.06,0,88,0.2,0,1 +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.6,73,83600,0,0,268,0,0,0,0,0,0,0,220,5.2,0,0,16,77777,9,999999999,12,0.06,0,88,0.2,0,1 +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,79,83500,0,0,261,0,0,0,0,0,0,0,270,3.6,0,0,16,77777,9,999999999,11,0.06,0,88,0.2,0,1 +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,77777,9,999999999,11,0.06,0,88,0.2,0,1 +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,22463,19891,7852,2579,210,3.6,0,0,16,77777,9,999999999,10,0.06,0,88,0.2,0,1 +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,44,84000,550,1377,294,392,784,78,46606,42754,9299,3464,70,2.6,0,0,16,77777,9,999999999,10,0.06,0,88,0.2,0,1 +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,40,84100,728,1377,300,554,854,102,66735,53697,12327,4837,0,0,0,0,16,77777,9,999999999,9,0.06,0,88,0.2,0,1 +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,70775,93406,13741,2028,120,3.6,0,0,16,77777,9,999999999,8,0.06,0,88,0.2,0,1 +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,74528,97028,10414,1971,110,4.6,1,0,16,77777,9,999999999,9,0.06,0,88,0.2,0,1 +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,70786,90118,13793,2139,100,4.1,0,0,16,77777,9,999999999,9,0.06,0,88,0.2,0,1 +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,68103,51325,13375,5333,110,3.6,0,0,16,77777,9,999999999,9,0.06,0,88,0.2,0,1 +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,55337,50023,14444,5376,140,4.6,0,0,16,77777,9,999999999,9,0.06,0,88,0.2,0,1 +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,28648,26454,12567,4158,130,4.1,0,0,16,77777,9,999999999,10,0.06,0,88,0.2,0,1 +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,-3.3,27,83700,191,1377,314,91,406,35,10403,1350,4010,1284,110,3.6,4,2,16,77777,9,999999999,10,0.06,0,88,0.2,0,1 +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,77777,9,999999999,10,0.06,0,88,0.2,0,1 +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,77777,9,999999999,11,0.06,0,88,0.2,0,1 +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,77777,9,999999999,11,0.06,0,88,0.2,0,1 +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,77777,9,999999999,11,0.06,0,88,0.2,0,1 +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,16,77777,9,999999999,11,0.06,0,88,0.2,0,1 +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,-1.7,61,83900,0,0,265,0,0,0,0,0,0,0,290,3.1,0,0,16,77777,9,999999999,12,0.06,0,88,0.2,0,1 +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,77777,9,999999999,11,0.06,0,88,0.2,0,1 +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,77777,9,999999999,11,0.06,0,88,0.2,0,1 +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,77777,9,999999999,11,0.06,0,88,0.2,0,1 +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,77777,9,999999999,10,0.06,0,88,0.2,0,1 +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,77777,9,999999999,10,0.06,0,88,0.2,0,1 +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,77777,9,999999999,9,0.06,0,88,0.2,0,1 +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,77777,9,999999999,9,0.06,0,88,0.2,0,1 +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,77777,9,999999999,9,0.06,0,88,0.2,0,1 +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,26659,24376,6682,2242,220,5.2,0,0,16,77777,9,999999999,8,0.06,0,88,0.2,0,1 +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,42512,81817,9266,1280,240,3.6,0,0,16,77777,9,999999999,8,0.06,0,88,0.2,0,1 +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,65557,52965,11648,4575,300,3.1,0,0,16,77777,9,999999999,8,0.06,0,88,0.2,0,1 +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,34,84200,841,1377,310,628,822,125,75895,54820,15163,6090,350,2.6,0,0,16,77777,9,999999999,7,0.06,0,88,0.2,0,1 +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,73011,92907,13110,2153,40,4.1,0,0,16,77777,9,999999999,8,0.06,0,88,0.2,0,1 +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,71333,93988,11405,1996,50,3.1,0,0,16,77777,9,999999999,8,0.06,0,88,0.2,0,1 +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,69592,51825,11429,4585,50,3.1,0,0,16,77777,9,999999999,9,0.06,0,88,0.2,0,1 +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,-2.2,22,84700,632,1377,327,467,852,75,56658,48806,9123,3519,60,3.1,0,0,16,77777,9,999999999,9,0.06,0,88,0.2,0,1 +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,34270,32209,6559,2364,90,2.6,0,0,16,77777,9,999999999,10,0.06,0,88,0.2,0,1 +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,10278,444,3891,1242,110,2.1,0,0,16,77777,9,999999999,10,0.06,0,88,0.2,0,1 +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,77777,9,999999999,10,0.06,0,88,0.2,0,1 +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,77777,9,999999999,11,0.06,0,88,0.2,0,1 +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,77777,9,999999999,11,0.06,0,88,0.2,0,1 +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,77777,9,999999999,12,0.06,0,88,0.2,0,1 +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,-2.8,55,83900,0,0,264,0,0,0,0,0,0,0,160,3.6,0,0,16,77777,9,999999999,12,0.06,0,88,0.2,0,1 +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,56,84000,0,0,280,0,0,0,0,0,0,0,200,5.2,0,0,16,77777,9,999999999,13,0.06,0,88,0.2,0,1 +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,77777,9,999999999,12,0.06,0,88,0.2,0,1 +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,77777,9,999999999,12,0.06,0,88,0.2,0,1 +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,58,83900,0,0,278,0,0,0,0,0,0,0,210,6.2,0,0,16,77777,9,999999999,11,0.06,0,88,0.2,0,1 +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,56,83900,0,0,280,0,0,0,0,0,0,0,200,6.2,0,0,16,77777,9,999999999,11,0.06,0,88,0.2,0,1 +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,58,83900,0,0,278,0,0,0,0,0,0,0,200,5.7,0,0,16,77777,9,999999999,10,0.06,0,88,0.2,0,1 +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,77777,9,999999999,9,0.06,0,88,0.2,0,1 +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,77777,9,999999999,9,0.06,0,88,0.2,0,1 +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,77777,9,999999999,8,0.06,0,88,0.2,0,1 +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,22780,19916,7196,2377,210,5.2,0,0,16,77777,9,999999999,8,0.06,0,88,0.2,0,1 +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,-1.1,33,84300,539,1378,306,400,841,70,47857,44315,8396,3133,230,4.1,0,0,16,77777,9,999999999,7,0.06,0,88,0.2,0,1 +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,59558,49241,20059,7377,210,3.6,0,0,16,77777,9,999999999,7,0.06,0,88,0.2,0,1 +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,75272,54979,14818,5947,240,3.1,0,0,16,77777,9,999999999,6,0.06,0,88,0.2,0,1 +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,71867,91721,13379,2144,240,2.1,0,0,16,77777,9,999999999,6,0.06,0,88,0.2,0,1 +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,69293,89185,13953,2097,180,2.1,0,0,16,77777,9,999999999,7,0.06,0,88,0.2,0,1 +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,-8.3,10,84300,777,1378,342,596,909,82,62686,90289,11847,1796,130,1.5,0,0,16,77777,9,999999999,7,0.06,0,88,0.2,0,1 +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,48694,84008,10151,1446,70,3.6,0,0,16,77777,9,999999999,8,0.06,0,88,0.2,0,1 +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,34218,32767,6332,2278,120,2.1,0,0,16,77777,9,999999999,8,0.06,0,88,0.2,0,1 +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,10299,0,3246,1052,80,2.6,0,0,16,77777,9,999999999,9,0.06,0,88,0.2,0,1 +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,77777,9,999999999,9,0.06,0,88,0.2,0,1 +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,77777,9,999999999,10,0.06,0,88,0.2,0,1 +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,77777,9,999999999,10,0.06,0,88,0.2,0,1 +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,77777,9,999999999,11,0.06,0,88,0.2,0,1 +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,77777,9,999999999,11,0.06,0,88,0.2,0,1 +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,77777,9,999999999,11,0.06,0,88,0.2,0,1 +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,77777,9,999999999,11,0.06,0,88,0.2,0,1 +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,77777,9,999999999,11,0.059,0,88,0.2,0,1 +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,77777,9,999999999,11,0.059,0,88,0.2,0,1 +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,35,83400,0,0,277,0,0,0,0,0,0,0,220,5.2,0,0,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 +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,31,83400,0,0,284,0,0,0,0,0,0,0,220,4.1,0,0,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 +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,77777,9,999999999,11,0.059,0,88,0.2,0,1 +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,77777,9,999999999,11,0.059,0,88,0.2,0,1 +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,1072,0,834,264,200,6.7,3,2,16,77777,9,999999999,10,0.059,0,88,0.2,0,1 +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,14701,7318,10905,3204,220,5.7,3,2,16,77777,9,999999999,10,0.059,0,88,0.2,0,1 +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,45430,45802,15813,5390,210,5.7,0,0,16,77777,9,999999999,10,0.059,0,88,0.2,0,1 +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,-3.9,19,84000,711,1379,331,504,647,169,58246,48289,19618,7219,180,2.1,1,1,16,77777,9,999999999,10,0.059,0,88,0.2,0,1 +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,67878,91134,13642,1968,140,1.5,3,3,16,77777,9,999999999,10,0.059,0,88,0.2,0,1 +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,15,84000,880,1379,351,672,902,95,70570,90437,13393,2123,90,2.6,5,4,16,7620,9,999999999,11,0.059,0,88,0.2,0,1 +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,72453,52189,21337,8324,50,3.6,4,4,16,7620,9,999999999,12,0.059,0,88,0.2,0,1 +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,15,83900,771,1379,353,544,778,108,65809,50860,13109,5197,90,4.6,5,5,16,7620,9,999999999,13,0.059,0,88,0.2,0,1 +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,15,83900,619,1379,354,406,552,158,46385,40298,18130,6404,70,5.7,6,6,16,7620,9,999999999,14,0.059,0,88,0.2,0,1 +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,15,83800,414,1379,354,126,34,115,14098,2003,12918,4154,90,6.2,7,6,16,7620,9,999999999,15,0.059,0,88,0.2,0,1 +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,5691,262,4700,1421,80,4.1,8,8,16,7620,9,999999999,16,0.059,0,88,0.2,0,1 +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,3658,9,999999999,17,0.059,0,88,0.2,0,1 +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,-3.9,26,83700,0,0,328,0,0,0,0,0,0,0,120,3.1,7,7,16,3658,9,999999999,19,0.059,0,88,0.2,0,1 +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,3658,9,999999999,20,0.059,0,88,0.2,0,1 +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,3658,9,999999999,21,0.059,0,88,0.2,0,1 +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,3658,9,999999999,22,0.059,0,88,0.2,0,1 +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,3658,9,999999999,23,0.059,0,88,0.2,0,1 +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,-3.9,36,83600,0,0,311,0,0,0,0,0,0,0,50,3.6,8,8,16,3048,9,999999999,22,0.059,0,88,0.2,0,1 +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,3048,9,999999999,21,0.059,0,88,0.2,0,1 +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,77777,9,999999999,20,0.059,0,88,0.2,0,1 +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,77777,9,999999999,19,0.059,0,88,0.2,0,1 +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,77777,9,999999999,18,0.059,0,88,0.2,0,1 +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,77777,9,999999999,17,0.059,0,88,0.2,0,1 +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,16,77777,9,999999999,16,0.059,0,88,0.2,0,1 +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,1335,12367,529,111,260,2.1,0,0,16,77777,9,999999999,15,0.059,0,88,0.2,0,1 +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,54,83900,305,1380,282,203,670,54,23338,19502,6224,2082,0,0,0,0,16,77777,9,999999999,14,0.059,0,88,0.2,0,1 +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,48,84000,529,1380,289,374,755,83,44045,41311,9804,3597,40,1.5,0,0,16,77777,9,999999999,13,0.059,0,88,0.2,0,1 +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,43,84000,705,1380,296,536,891,79,56808,88293,11581,1624,70,1.5,0,0,16,77777,9,999999999,12,0.059,0,88,0.2,0,1 +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,38,84000,823,1380,316,628,925,75,66723,92915,10825,1834,90,2.6,3,3,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 +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,70372,90860,13151,2093,100,4.1,3,3,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 +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,30,84000,854,1380,334,678,963,81,71880,96920,11580,1958,110,4.1,3,3,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 +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,28,84000,764,1380,339,584,939,62,62376,93939,9124,1598,100,5.7,3,3,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 +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.6,25,83900,612,1380,343,455,857,73,55080,47914,8860,3397,110,6.7,3,3,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 +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,31154,29489,7071,2507,120,9.8,3,3,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 +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,9855,0,3330,1061,140,6.7,2,2,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 +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,77777,9,999999999,11,0.059,0,88,0.2,0,1 +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,77777,9,999999999,11,0.059,0,88,0.2,0,1 +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,77777,9,999999999,11,0.059,0,88,0.2,0,1 +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,77777,9,999999999,12,0.059,0,88,0.2,0,1 +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,77777,9,999999999,12,0.059,0,88,0.2,0,1 +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,77777,9,999999999,12,0.059,0,88,0.2,0,1 +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,77777,9,999999999,12,0.059,0,88,0.2,0,1 +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,77777,9,999999999,11,0.059,0,88,0.2,0,1 +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,77777,9,999999999,11,0.059,0,88,0.2,0,1 +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,77777,9,999999999,11,0.059,0,88,0.2,0,1 +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,77777,9,999999999,11,0.059,0,88,0.2,0,1 +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,77777,9,999999999,11,0.059,0,88,0.2,0,1 +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,70,82700,0,0,267,0,0,0,0,0,0,0,260,3.6,0,0,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 +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,70,82800,62,978,267,10,159,4,1103,8501,696,137,260,2.1,0,0,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 +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,20764,18802,9026,2783,270,3.1,0,0,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 +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,41440,39747,12593,4460,260,3.1,0,0,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 +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,32,83300,700,1381,315,504,794,101,60442,49540,12152,4722,270,2.6,0,0,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 +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,-1.1,24,82800,817,1381,342,585,732,150,69457,51666,17883,7015,320,1.5,3,3,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 +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,80874,57348,15113,6116,10,4.1,3,3,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 +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,67941,90684,12400,1986,350,5.7,3,3,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 +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,58796,86931,10793,1706,350,4.1,3,3,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 +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,52375,46106,8629,3302,340,2.6,5,5,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 +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,17,83100,401,1381,349,245,489,102,27582,26702,11526,3766,160,7.7,6,6,16,77777,9,999999999,11,0.059,0,88,0.2,0,1 +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,4692,0,4257,1288,150,9.3,9,8,16,6096,9,999999999,11,0.059,0,88,0.2,0,1 +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,6096,9,999999999,11,0.059,0,88,0.2,0,1 +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,6096,9,999999999,11,0.059,0,88,0.2,0,1 +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,6096,9,999999999,11,0.059,0,88,0.2,0,1 +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,3353,9,999999999,12,0.059,0,88,0.2,0,1 +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,3353,9,999999999,12,0.059,0,88,0.2,0,1 +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,6096,9,999999999,12,0.059,0,88,0.2,0,1 +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,6.1,77,82700,0,0,308,0,0,0,0,0,0,0,140,3.1,5,4,16,77777,9,999999999,12,0.059,0,88,0.2,0,1 +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,77777,9,999999999,13,0.058,0,88,0.2,0,1 +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,77777,9,999999999,13,0.058,0,88,0.2,0,1 +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,6096,9,999999999,14,0.058,0,88,0.2,0,1 +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,6096,9,999999999,14,0.058,0,88,0.2,0,1 +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,3658,9,999999999,15,0.058,0,88,0.2,0,1 +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,3.9,93,83000,0,0,289,0,0,0,0,0,0,0,310,1.5,8,6,16,6096,9,999999999,15,0.058,0,88,0.2,0,1 +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,611,0,489,155,310,1.5,10,10,0.4,91,9,999999999,16,0.058,0,88,0.2,0,1 +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,10325,1071,9813,2924,360,10.3,10,10,12.8,244,9,999999999,16,0.058,0,88,0.2,0,1 +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,6931,0,6987,3050,360,7.2,10,10,16,274,9,999999999,17,0.058,0,88,0.2,0,1 +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,5,100,83500,694,1381,314,91,0,91,9271,0,9351,4300,350,8.2,10,10,4,152,9,999999999,17,0.058,0,88,0.2,0,1 +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,96,83600,811,1381,316,100,0,100,10287,0,10379,4941,320,7.7,10,10,3.2,152,9,999999999,18,0.058,0,88,0.2,0,1 +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,5,100,83600,862,1381,314,109,0,109,11259,0,11361,5448,340,8.2,10,10,4.8,152,9,999999999,18,0.058,0,88,0.2,0,1 +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,4.4,96,83700,841,1381,313,106,0,106,10934,0,11033,5272,330,6.2,10,10,4.8,152,9,999999999,17,0.058,0,88,0.2,0,1 +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,4.4,96,83800,752,1381,313,92,0,92,9421,0,9504,4471,320,7.2,10,10,14.4,152,9,999999999,17,0.058,0,88,0.2,0,1 +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,4.4,96,83900,599,1381,313,71,0,71,7181,0,7241,3290,340,5.7,10,10,2.4,152,9,999999999,17,0.058,0,88,0.2,0.5,1 +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,3977,0,4008,1744,350,5.7,10,10,2.4,152,9,999999999,17,0.058,0,88,0.2,0,1 +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,1363,0,1373,558,330,6.7,10,10,2.4,152,9,999999999,17,0.058,0,88,0.2,0,1 +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,17,0.058,0,88,0.2,0,1 +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,152,9,999999999,16,0.058,0,88,0.2,0,1 +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,152,9,999999999,16,0.058,0,88,0.2,0,1 +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,122,9,999999999,16,0.058,0,88,0.2,0,1 +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,152,9,999999999,16,0.058,0,88,0.2,0,1 +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,213,9,999999999,16,0.058,0,88,0.2,0,1 +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,396,9,999999999,15,0.058,0,88,0.2,0,1 +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,14,0.058,0,88,0.2,0,1 +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,14,0.058,0,88,0.2,0,1 +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,13,0.058,0,88,0.2,7.9,1 +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,10,10,9.6,244,9,999999999,13,0.058,0,88,0.2,0,1 +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,10,10,11.2,244,9,999999999,12,0.058,0,88,0.2,0,1 +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,11,0.058,0,88,0.2,0,1 +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,3.9,93,84300,56,933,312,2,0,2,193,0,194,80,90,1.5,10,10,9.6,183,9,999999999,11,0.058,0,88,0.2,0,1 +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,4.4,96,84300,290,1382,313,52,0,52,5122,0,5160,1985,80,2.6,10,10,9.6,183,9,999999999,10,0.058,0,88,0.2,0,1 +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,93,84500,513,1382,319,97,0,97,9734,0,9813,4033,170,2.6,10,10,11.2,244,9,999999999,10,0.058,0,88,0.2,0,1 +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,32263,5809,28767,9313,150,2.1,10,9,14.4,305,9,999999999,9,0.058,0,88,0.2,0,1 +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,35691,4242,32627,11158,120,2.1,9,9,16,457,9,999999999,9,0.058,0,88,0.2,0,1 +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,6.7,80,84400,856,1382,329,333,42,307,37497,3734,34778,12072,70,2.6,10,9,16,457,9,999999999,9,0.058,0,88,0.2,0,1 +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,43739,13071,33708,11667,80,5.2,9,9,16,579,9,999999999,10,0.058,0,88,0.2,0,1 +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,51088,32644,26135,9214,90,5.2,9,8,16,1128,9,999999999,10,0.058,0,88,0.2,0,1 +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,26140,7049,21689,7144,70,6.7,10,9,16,1219,9,999999999,11,0.058,0,88,0.2,0,1 +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,7837,0,7898,3076,240,4.6,10,9,16,1402,9,999999999,11,0.058,0,88,0.2,0,1 +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,1264,0,1272,518,260,5.7,10,10,16,6096,9,999999999,12,0.058,0,88,0.2,0,1 +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,12,0.058,0,88,0.2,0,1 +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,13,0.058,0,88,0.2,0,1 +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,13,0.058,0,88,0.2,0,1 +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,6096,9,999999999,14,0.058,0,88,0.2,0,1 +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,3048,9,999999999,14,0.058,0,88,0.2,0,1 +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,6096,9,999999999,15,0.058,0,88,0.2,0,1 +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,3048,9,999999999,15,0.058,0,88,0.2,0,1 +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,2743,9,999999999,14,0.057,0,88,0.2,0,1 +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,2743,9,999999999,14,0.057,0,88,0.2,0,1 +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,2438,9,999999999,14,0.057,0,88,0.2,0.3,1 +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,6096,9,999999999,14,0.057,0,88,0.2,0,1 +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,6096,9,999999999,13,0.057,0,88,0.2,0,1 +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,13,0.057,0,88,0.2,0,1 +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,96,0,97,40,270,5.7,10,10,0.3,30,9,999999999,13,0.057,0,88,0.2,0,1 +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,3443,0,3468,1420,260,4.1,10,10,0.3,30,9,999999999,13,0.057,0,88,0.2,0,1 +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,27654,15227,19154,5989,270,2.6,10,10,2,30,9,999999999,12,0.057,0,88,0.2,0,1 +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,7,93,83700,683,1383,314,136,0,136,13829,0,13949,5979,250,3.1,8,8,4.8,150,9,999999999,12,0.057,0,88,0.2,0,1 +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,65488,47353,22981,8626,260,3.6,5,5,4.8,77777,9,999999999,12,0.057,0,88,0.2,0,1 +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,80779,55909,14242,5766,310,3.1,5,5,4.8,77777,9,999999999,12,0.057,0,88,0.2,0,1 +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,68035,92084,12867,1948,310,3.6,5,5,4.8,77777,9,999999999,13,0.057,0,88,0.2,0,1 +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,59676,91940,9454,1585,310,3.1,4,4,9.6,77777,9,999999999,13,0.057,0,88,0.2,0,1 +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,49537,43976,12954,4764,10,3.1,5,5,9.6,77777,9,999999999,13,0.057,0,88,0.2,0,1 +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,23936,19985,10489,3446,310,4.6,5,5,12.8,77777,9,999999999,14,0.057,0,88,0.2,0,1 +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,7258,0,4302,1253,290,4.6,9,5,12.8,77777,9,999999999,14,0.057,0,88,0.2,0,1 +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,77777,9,999999999,14,0.057,0,88,0.2,0,1 +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,77777,9,999999999,15,0.057,0,88,0.2,0,1 +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,6.7,80,83500,0,0,306,0,0,0,0,0,0,0,300,3.1,3,3,16,77777,9,999999999,15,0.057,0,88,0.2,0,1 +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,77777,9,999999999,15,0.057,0,88,0.2,0,1 +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,77777,9,999999999,15,0.057,0,88,0.2,0,1 +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,77777,9,999999999,16,0.057,0,88,0.2,0,1 +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,16,0.057,0,88,0.2,0,1 +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,77777,9,999999999,15,0.056,0,88,0.2,0,1 +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,77777,9,999999999,15,0.056,0,88,0.2,0,1 +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,77777,9,999999999,15,0.056,0,88,0.2,0,1 +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,1.7,79,83100,0,0,269,0,0,0,0,0,0,0,200,4.6,0,0,16,77777,9,999999999,15,0.056,0,88,0.2,0,1 +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.6,73,83200,0,0,279,0,0,0,0,0,0,0,200,5.7,3,3,16,77777,9,999999999,14,0.056,0,88,0.2,0,1 +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,77777,9,999999999,14,0.056,0,88,0.2,0,1 +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,552,5911,525,105,200,5.2,3,3,16,77777,9,999999999,14,0.056,0,88,0.2,0,1 +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,56,83300,280,1384,292,176,454,84,19345,17148,9268,2742,210,5.2,3,3,16,77777,9,999999999,14,0.056,0,88,0.2,0,1 +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,41053,39118,9201,3346,210,4.6,3,3,16,77777,9,999999999,14,0.056,0,88,0.2,0,1 +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,56349,91532,11072,1554,270,2.1,5,5,16,77777,9,999999999,13,0.056,0,88,0.2,0,1 +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,63497,91867,10051,1717,150,1.5,5,5,16,77777,9,999999999,13,0.056,0,88,0.2,0,1 +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,76706,54554,12104,4917,70,3.6,5,5,16,77777,9,999999999,13,0.056,0,88,0.2,0,1 +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,66738,92796,11231,1858,30,2.1,3,3,16,77777,9,999999999,13,0.056,0,88,0.2,0,1 +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,65566,53080,12235,4806,350,1.5,4,3,16,77777,9,999999999,13,0.056,0,88,0.2,0,1 +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,44059,40140,14161,5107,50,2.6,4,4,16,77777,9,999999999,13,0.056,0,88,0.2,0,1 +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,-3.3,27,83500,376,1384,322,256,576,99,28674,29834,11130,3569,0,0,5,5,16,77777,9,999999999,13,0.056,0,88,0.2,0,1 +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,2533,0,2551,923,200,1.5,9,8,16,3048,9,999999999,12,0.056,0,88,0.2,0,1 +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,44,83400,0,81,311,0,0,0,0,0,0,0,240,2.6,5,5,16,77777,9,999999999,12,0.056,0,88,0.2,0,1 +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,-1.1,45,83400,0,0,298,0,0,0,0,0,0,0,290,3.6,3,3,16,77777,9,999999999,12,0.056,0,88,0.2,0,1 +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,-1.7,43,83300,0,0,297,0,0,0,0,0,0,0,280,2.6,3,3,16,77777,9,999999999,12,0.056,0,88,0.2,0,1 +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,-1.7,43,83400,0,0,297,0,0,0,0,0,0,0,250,3.1,3,3,16,77777,9,999999999,12,0.056,0,88,0.2,0,1 +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,6096,9,999999999,12,0.056,0,88,0.2,0,1 +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,4,4,16,6096,9,999999999,12,0.056,0,88,0.2,0,1 +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,77777,9,999999999,11,0.056,0,88,0.2,0,1 +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,77777,9,999999999,11,0.056,0,88,0.2,0,1 +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,77777,9,999999999,11,0.056,0,88,0.2,0,1 +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,77777,9,999999999,10,0.056,0,88,0.2,0,1 +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,77777,9,999999999,10,0.056,0,88,0.2,0,1 +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,77777,9,999999999,10,0.056,0,88,0.2,0,1 +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,77777,9,999999999,10,0.056,0,88,0.2,0,1 +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,556,8071,356,75,220,5.7,0,0,16,77777,9,999999999,9,0.056,0,88,0.2,0,1 +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,21950,19401,7000,2222,230,4.6,0,0,16,77777,9,999999999,9,0.056,0,88,0.2,0,1 +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,-1.7,43,83500,496,1385,285,364,846,59,43705,40694,7100,2623,240,4.6,0,0,16,77777,9,999999999,9,0.056,0,88,0.2,0,1 +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,60820,51875,11092,4286,240,2.6,0,0,16,77777,9,999999999,8,0.056,0,88,0.2,0,1 +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,40,83300,788,1385,300,611,962,61,65300,96438,8958,1610,260,2.1,0,0,16,77777,9,999999999,8,0.056,0,88,0.2,0,1 +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,36,83600,837,1385,308,642,914,87,67914,91794,12429,1952,110,2.6,0,0,16,77777,9,999999999,8,0.056,0,88,0.2,0,1 +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,73873,54459,13188,5299,100,2.1,0,0,16,77777,9,999999999,9,0.056,0,88,0.2,0,1 +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,62006,48994,10527,4159,80,1.5,3,3,16,77777,9,999999999,9,0.056,0,88,0.2,0,1 +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,50204,45053,7901,2998,70,3.1,3,3,16,77777,9,999999999,9,0.056,0,88,0.2,0,1 +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,28325,26086,6243,2187,60,3.1,3,3,16,77777,9,999999999,9,0.056,0,88,0.2,0,1 +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,5680,0,2845,885,60,3.6,5,5,16,77777,9,999999999,10,0.056,0,88,0.2,0,1 +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,52,83400,0,35,297,0,0,0,0,0,0,0,40,3.6,3,3,16,77777,9,999999999,10,0.056,0,88,0.2,0,1 +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,77777,9,999999999,10,0.056,0,88,0.2,0,1 +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,60,83300,0,0,281,0,0,0,0,0,0,0,80,2.1,1,1,16,77777,9,999999999,11,0.056,0,88,0.2,0,1 +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,67,83200,0,0,278,0,0,0,0,0,0,0,190,3.6,3,2,16,77777,9,999999999,11,0.056,0,88,0.2,0,1 +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,77777,9,999999999,11,0.056,0,88,0.2,0,1 +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,77777,9,999999999,12,0.056,0,88,0.2,0,1 +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,-1.1,64,83200,0,0,275,0,0,0,0,0,0,0,200,4.6,2,2,16,77777,9,999999999,12,0.056,0,88,0.2,0,1 +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,77777,9,999999999,13,0.055,0,88,0.2,0,1 +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,77777,9,999999999,13,0.055,0,88,0.2,0,1 +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,77777,9,999999999,14,0.055,0,88,0.2,0,1 +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,77777,9,999999999,15,0.055,0,88,0.2,0,1 +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,77777,9,999999999,15,0.055,0,88,0.2,0,1 +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,73,83300,0,0,274,0,0,0,0,0,0,0,240,2.1,4,2,16,7620,9,999999999,16,0.055,0,88,0.2,0,1 +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,334,3875,355,74,220,2.6,3,1,16,7620,9,999999999,17,0.055,0,88,0.2,0,1 +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,15803,11380,8318,2507,240,1.5,2,1,16,7620,9,999999999,17,0.055,0,88,0.2,0,1 +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,35299,33290,12077,4206,0,0,4,2,16,7620,9,999999999,18,0.055,0,88,0.2,0,1 +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,47447,35300,23618,8035,70,2.1,5,4,16,7620,9,999999999,19,0.055,0,88,0.2,0,1 +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,64696,48232,15217,5988,90,2.1,3,2,16,7620,9,999999999,19,0.055,0,88,0.2,0,1 +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,5.6,53,83800,831,1385,327,545,577,197,63341,43147,23008,8763,100,4.1,4,3,16,7620,9,999999999,19,0.055,0,88,0.2,0,1 +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,72792,53096,15167,6036,80,3.6,5,4,16,7620,9,999999999,19,0.055,0,88,0.2,0,1 +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,63290,51640,19375,7199,60,6.7,5,4,16,7620,9,999999999,19,0.055,0,88,0.2,0,1 +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,25317,7384,20868,6782,50,5.2,9,6,16,7620,9,999999999,19,0.055,0,88,0.2,0,1 +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,7226,0,7282,2818,360,6.2,9,5,16,6706,9,999999999,19,0.055,0,88,0.2,0,1 +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,5050,0,3853,1111,280,5.2,9,8,16,6706,9,999999999,19,0.055,0,88,0.2,0,1 +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,7.2,83,83500,0,12,312,0,0,0,0,0,0,0,290,5.2,7,5,12.8,6706,9,999999999,18,0.055,0,88,0.2,0,1 +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,10,4,12.8,6096,9,999999999,18,0.055,0,88,0.2,0,1 +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,18,0.055,0,88,0.2,0,1 +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,18,0.055,0,88,0.2,0,1 +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,93,83200,0,0,290,0,0,0,0,0,0,0,140,2.1,9,4,8,6096,9,999999999,18,0.055,0,88,0.2,0,1 +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,3353,9,999999999,18,0.055,0,88,0.2,0,1 +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,93,83100,0,0,290,0,0,0,0,0,0,0,130,3.1,8,4,11.2,3658,9,999999999,18,0.055,0,88,0.2,0,1 +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,3658,9,999999999,17,0.054,0,88,0.2,0,1 +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,6096,9,999999999,17,0.054,0,88,0.2,0,1 +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,6096,9,999999999,17,0.054,0,88,0.2,0,1 +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,6096,9,999999999,16,0.054,0,88,0.2,0,1 +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,10,9,16,2438,9,999999999,16,0.054,0,88,0.2,0,1 +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,2438,9,999999999,16,0.054,0,88,0.2,0,1 +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,96,0,97,40,140,3.6,10,8,16,3353,9,999999999,15,0.054,0,88,0.2,0,1 +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,8.9,93,83100,264,1386,320,54,0,54,5296,0,5335,1977,130,3.6,9,7,16,5486,9,999999999,15,0.054,0,88,0.2,0,1 +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,10504,0,10588,4184,250,3.6,9,5,8,6096,9,999999999,14,0.054,0,88,0.2,0,1 +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,25324,962,24785,8264,270,2.6,10,7,9.6,6096,9,999999999,14,0.054,0,88,0.2,0,1 +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,30238,2485,28477,9970,280,2.1,9,8,11.2,3353,9,999999999,14,0.054,0,88,0.2,0,1 +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,7.8,62,83100,826,1386,338,103,0,103,10592,0,10687,5098,220,3.1,9,6,16,6096,9,999999999,14,0.054,0,88,0.2,0,1 +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,33416,5899,28818,10264,310,5.7,10,7,9.6,6096,9,999999999,13,0.054,0,88,0.2,0,1 +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,18567,817,17948,6735,300,4.6,8,6,9.6,6096,9,999999999,13,0.054,0,88,0.2,0,1 +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,26495,9586,20834,6731,360,4.1,10,7,9.6,6096,9,999999999,13,0.054,0,88,0.2,0,1 +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,21083,16577,11139,3500,110,5.2,9,7,16,6096,9,999999999,12,0.054,0,88,0.2,0,1 +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,5938,0,3639,1051,250,4.1,10,10,16,6096,9,999999999,12,0.054,0,88,0.2,0,1 +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,7.2,83,82700,0,0,318,0,0,0,0,0,0,0,280,3.6,8,7,16,7620,9,999999999,12,0.054,0,88,0.2,0,1 +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,6858,9,999999999,12,0.054,0,88,0.2,0,1 +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,6096,9,999999999,11,0.054,0,88,0.2,0,1 +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,6096,9,999999999,11,0.054,0,88,0.2,0,1 +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,2134,9,999999999,11,0.054,0,88,0.2,0,1 +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,2134,9,999999999,10,0.054,0,88,0.2,0,1 +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,1219,9,999999999,10,0.054,0,88,0.2,0,1 +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,30,9,999999999,10,0.054,0,88,0.2,0,1 +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,30,9,999999999,10,0.054,0,88,0.2,0,1 +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,10,0.054,0,88,0.2,0.3,1 +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,10,0.054,0,88,0.2,0,1 +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,1981,9,999999999,10,0.054,0,88,0.2,0,1 +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,10,10,11.2,2316,9,999999999,10,0.054,0,88,0.2,0,1 +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,131,0,130,40,80,3.1,9,9,16,3353,9,999999999,10,0.054,0,88,0.2,0,1 +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,9881,954,9376,2657,100,2.6,9,9,16,2438,9,999999999,10,0.054,0,88,0.2,0,1 +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,14099,0,14212,5110,130,3.1,8,8,16,2438,9,999999999,10,0.054,0,88,0.2,0,1 +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,26149,3409,24039,8056,130,3.6,8,8,16,2591,9,999999999,10,0.054,0,88,0.2,0,1 +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,61123,45112,21902,8160,160,3.6,5,5,16,77777,9,999999999,10,0.054,0,88,0.2,0,1 +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,72875,52333,13062,5258,290,3.1,4,4,16,77777,9,999999999,10,0.054,0,88,0.2,0,1 +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,71320,52380,11781,4734,260,5.2,4,4,16,77777,9,999999999,10,0.054,0,88,0.2,0,1 +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,58849,47329,10831,4246,270,4.6,3,3,16,77777,9,999999999,10,0.054,0,88,0.2,0,1 +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,45598,41593,8541,3205,280,2.1,3,3,16,77777,9,999999999,10,0.054,0,88,0.2,0,1 +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,27096,23283,5120,1800,290,4.1,3,3,16,77777,9,999999999,10,0.054,0,88,0.2,0,1 +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,5265,0,2293,717,270,3.6,5,5,16,77777,9,999999999,10,0.054,0,88,0.2,0,1 +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,77777,9,999999999,10,0.054,0,88,0.2,0,1 +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,77777,9,999999999,10,0.054,0,88,0.2,0,1 +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,1,1,16,77777,9,999999999,10,0.054,0,88,0.2,0,1 +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.6,67,83000,0,0,267,0,0,0,0,0,0,0,150,3.6,1,0,16,77777,9,999999999,10,0.054,0,88,0.2,0,1 +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,77777,9,999999999,10,0.054,0,88,0.2,0,1 +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,77777,9,999999999,10,0.054,0,88,0.2,0,1 +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,77777,9,999999999,10,0.054,0,88,0.2,0,1 +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,77777,9,999999999,10,0.053,0,88,0.2,0,1 +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,77777,9,999999999,9,0.053,0,88,0.2,0,1 +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,77777,9,999999999,9,0.053,0,88,0.2,0,1 +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,77777,9,999999999,9,0.053,0,88,0.2,0,1 +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,77777,9,999999999,9,0.053,0,88,0.2,0,1 +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,7620,9,999999999,9,0.053,0,88,0.2,0,1 +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,130,0,130,40,240,3.6,8,4,16,77777,9,999999999,9,0.053,0,88,0.2,0,1 +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.6,67,83000,254,1388,275,101,106,82,11017,3656,8979,2558,240,3.6,4,2,16,6706,9,999999999,9,0.053,0,88,0.2,0,1 +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,40301,42301,14952,4888,270,5.2,1,1,16,6706,9,999999999,9,0.053,0,88,0.2,0,1 +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,54074,91157,10989,1493,260,3.1,2,2,16,77777,9,999999999,9,0.053,0,88,0.2,0,1 +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,66,83000,765,1388,309,549,781,117,65700,49719,14052,5532,310,1.5,3,3,16,77777,9,999999999,9,0.053,0,88,0.2,0,1 +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,72417,53903,17614,6912,0,0,6,5,16,6706,9,999999999,9,0.053,0,88,0.2,0,1 +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,51792,29271,29957,10432,250,2.1,1,1,16,6706,9,999999999,9,0.053,0,88,0.2,0,1 +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,3.9,47,83200,703,1388,318,513,765,124,60503,49643,14680,5617,170,2.1,1,1,16,6706,9,999999999,10,0.053,0,88,0.2,0,1 +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,44796,40409,9839,3650,80,2.6,1,0,16,77777,9,999999999,10,0.053,0,88,0.2,0,1 +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,3.3,45,83200,347,1388,333,194,482,73,22037,18931,8318,2762,10,3.1,6,6,16,77777,9,999999999,10,0.053,0,88,0.2,0,1 +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,5015,0,2904,865,350,4.6,9,9,16,6706,9,999999999,11,0.053,0,88,0.2,0,1 +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,6706,9,999999999,11,0.053,0,88,0.2,0,1 +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,77777,9,999999999,11,0.053,0,88,0.2,0,1 +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,77777,9,999999999,11,0.053,0,88,0.2,0,1 +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,77777,9,999999999,12,0.053,0,88,0.2,0,1 +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,77777,9,999999999,12,0.053,0,88,0.2,0,1 +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,77777,9,999999999,12,0.053,0,88,0.2,0,1 +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,77777,9,999999999,12,0.053,0,88,0.2,0,1 +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,77777,9,999999999,11,0.052,0,88,0.2,0,1 +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,77777,9,999999999,11,0.052,0,88,0.2,0,1 +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,77777,9,999999999,10,0.052,0,88,0.2,0,1 +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,77777,9,999999999,10,0.052,0,88,0.2,0,1 +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,85,82800,0,0,256,0,0,0,0,0,0,0,240,4.1,0,0,16,6096,9,999999999,10,0.052,0,88,0.2,0,1 +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,183,9,999999999,9,0.052,0,88,0.2,0,1 +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,244,9,999999999,9,0.052,0,88,0.2,0,1 +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,17802,14628,11818,2851,10,4.1,10,10,16,244,9,999999999,8,0.052,0,88,0.2,0,1 +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,3.3,89,82800,469,1388,312,191,107,154,21078,7297,17073,5309,360,2.1,10,10,12.8,183,9,999999999,8,0.052,0,88,0.2,0,1 +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,4,93,82800,643,1388,313,195,6,192,21956,460,21724,7436,320,3.6,10,10,1.6,120,9,999999999,8,0.052,0,88,0.2,0,1 +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,3.9,93,82800,759,1388,312,106,0,106,10859,0,10954,5066,340,2.1,10,10,2.4,122,9,999999999,7,0.052,0,88,0.2,0,1 +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,5,93,82700,808,1388,318,97,0,97,9972,0,10061,4794,20,2.1,10,10,2.8,120,9,999999999,7,0.052,0,88,0.2,0.3,1 +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,5,93,82700,787,1388,318,94,0,94,9648,0,9733,4620,0,0,10,10,2.8,90,9,999999999,7,0.052,0,88,0.2,0,1 +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,96,82600,697,1388,316,108,0,108,11004,0,11099,4986,280,1.5,10,10,1.6,183,9,999999999,7,0.052,0,88,0.2,0,1 +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,93,82600,545,1388,319,76,0,76,7647,0,7710,3373,260,3.6,10,10,9.6,183,9,999999999,7,0.052,0,88,0.2,0.3,1 +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,6231,0,6278,2449,100,3.1,9,8,11.2,2896,9,999999999,7,0.052,0,88,0.2,0,1 +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,93,82300,104,1284,319,8,0,8,775,0,781,317,310,2.6,10,10,14.4,1981,9,999999999,6,0.052,0,88,0.2,0,1 +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,96,82400,0,0,308,0,0,0,0,0,0,0,270,2.6,9,9,9.6,3048,9,999999999,6,0.052,0,88,0.2,0,1 +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,96,82400,0,0,316,0,0,0,0,0,0,0,260,6.2,10,10,9.6,549,9,999999999,6,0.052,0,88,0.2,0,1 +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,6,0.052,0,88,0.2,0,1 +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,6,0.052,0,88,0.2,0,1 +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,1219,9,999999999,6,0.052,0,88,0.2,1.3,1 +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,92,82300,0,0,283,0,0,0,0,0,0,0,170,6.7,10,10,16,1981,9,999999999,6,0.052,0,88,0.2,0,1 +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,2896,9,999999999,5,0.052,0,88,0.2,0,1 +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,1158,9,999999999,8,0.052,0,88,0.2,0,1 +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,-6.7,91,83600,0,0,260,0,0,0,0,0,0,0,20,3.6,10,10,4.8,1250,9,999999999,8,0.052,0,88,0.2,0,1 +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,8,0.052,0,88,0.2,0,1 +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,86,83700,0,0,244,0,0,0,0,0,0,0,90,1.5,10,10,16,945,9,999999999,8,0.052,0,88,0.2,0,1 +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,8,0.052,0,88,0.2,0,1 +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,9,0.052,0,88,0.2,0,1 +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,9,0.052,0,88,0.2,0,1 +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,11162,3668,9357,2554,120,3.1,10,9,11.2,1067,9,999999999,9,0.052,0,88,0.2,0,1 +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,5717,0,5762,2489,110,2.6,10,9,16,3962,9,999999999,8,0.052,0,88,0.2,0,1 +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,9260,0,9337,4160,120,3.6,10,5,16,77777,9,999999999,8,0.052,0,88,0.2,0,1 +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,-6.7,86,83900,756,1388,247,187,0,187,19203,0,19370,7992,80,4.1,10,8,16,701,9,999999999,8,0.052,0,88,0.2,0,1 +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,87,83700,805,1388,261,139,0,139,14326,0,14453,6519,110,4.1,10,9,16,640,9,999999999,8,0.052,0,88,0.2,0,1 +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,-6.1,91,83600,783,1388,260,100,0,100,10292,0,10382,4866,360,6.2,10,10,1.6,701,9,999999999,9,0.052,0,88,0.2,0,1 +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,13385,0,13498,5828,10,5.7,10,10,2,91,9,999999999,9,0.052,0,88,0.2,0,1 +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,8782,0,8853,3766,10,5.7,10,10,2,30,9,999999999,9,0.052,0,88,0.2,0,1 +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,6649,0,6698,2553,360,4.1,10,10,2,30,9,999999999,9,0.052,0,88,0.2,0,1 +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,1556,0,1566,579,340,3.6,10,10,0.4,30,9,999999999,9,0.052,0,88,0.2,0,1 +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,9,0.052,0,88,0.2,0,1 +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,9,0.052,0,88,0.2,0,1 +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,10,10,0.4,30,9,999999999,10,0.052,0,88,0.2,0,1 +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,10,10,0.4,30,9,999999999,10,0.052,0,88,0.2,0,1 +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,10,10,1.2,30,9,999999999,10,0.052,0,88,0.2,0,1 +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,10,10,1.2,91,9,999999999,10,0.052,0,88,0.2,0,1 +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,10,10,1.2,91,9,999999999,10,0.052,0,88,0.2,0,1 +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,10,0.051,0,88,0.2,0,1 +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,10,10,2.4,91,9,999999999,10,0.051,0,88,0.2,0,1 +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,9,0.051,0,88,0.2,0,1 +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,10,10,1.6,91,9,999999999,9,0.051,0,88,0.2,0,1 +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,10,10,1.6,91,9,999999999,9,0.051,0,88,0.2,0,1 +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,9,0.051,0,88,0.2,0,1 +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,10,10,0.8,61,9,999999999,9,0.051,0,88,0.2,0,1 +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,2755,0,2774,1119,0,0,10,10,0.8,61,9,999999999,10,0.051,0,88,0.2,0,1 +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,-5.6,95,83000,461,1389,261,106,0,106,10621,0,10705,4097,0,0,10,10,2.4,61,9,999999999,9,0.051,0,88,0.2,0,1 +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,13927,0,14043,5787,0,0,10,10,2,61,9,999999999,9,0.051,0,88,0.2,0,1 +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,10877,0,10972,5035,0,0,10,10,0.8,122,9,999999999,9,0.051,0,88,0.2,0,1 +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,12466,0,12576,5781,30,2.1,10,10,2.4,122,9,999999999,9,0.051,0,88,0.2,0,1 +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,15119,0,15252,6726,20,1.5,10,10,2.4,183,9,999999999,9,0.051,0,88,0.2,0,1 +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,25085,1970,23848,8205,0,0,10,10,2.4,244,9,999999999,8,0.051,0,88,0.2,0,1 +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,83,83000,536,1389,263,211,88,177,23431,6732,19750,6279,20,3.1,9,9,2.4,3048,9,999999999,9,0.051,0,88,0.2,0,1 +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,83,83100,333,1389,248,139,184,95,15406,8749,10569,3239,10,3.1,6,5,2.4,77777,9,999999999,9,0.051,0,88,0.2,0,1 +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,3332,0,1841,573,330,4.1,6,5,2.4,77777,9,999999999,9,0.051,0,88,0.2,0,1 +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,9,0.051,0,88,0.2,0,1 +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,10,10,2.4,1433,9,999999999,8,0.051,0,88,0.2,0,1 +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,87,83300,0,0,268,0,0,0,0,0,0,0,270,2.1,10,10,6.4,1494,9,999999999,8,0.051,0,88,0.2,0,1 +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,7,0.051,0,88,0.2,0,1 +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,10,10,1.6,396,9,999999999,7,0.051,0,88,0.2,0,1 +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,-5.6,95,83500,0,0,261,0,0,0,0,0,0,0,70,2.1,10,10,1.6,213,9,999999999,7,0.051,0,88,0.2,0,1 +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,6,0.051,0,88,0.2,0,1 +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,95,83300,0,0,264,0,0,0,0,0,0,0,170,2.1,10,10,2.4,549,9,999999999,6,0.051,0,88,0.2,0,1 +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,95,83300,0,0,264,0,0,0,0,0,0,0,0,0,10,10,3.2,518,9,999999999,6,0.051,0,88,0.2,0,1 +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,-5.6,95,83300,0,0,261,0,0,0,0,0,0,0,150,1.5,10,10,4.8,823,9,999999999,6,0.051,0,88,0.2,0,1 +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,95,83400,0,0,257,0,0,0,0,0,0,0,230,1.5,9,9,1.6,335,9,999999999,7,0.051,0,88,0.2,0,1 +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,95,83700,0,0,264,0,0,0,0,0,0,0,220,3.1,10,10,4.8,914,9,999999999,7,0.051,0,88,0.2,0,1 +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,6,0.051,0,88,0.2,0,1 +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,6,0.051,0,88,0.2,0,1 +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,4722,0,4755,1728,210,4.6,2,2,16,77777,9,999999999,5,0.051,0,88,0.2,0,1 +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,5711,0,5756,2469,200,5.2,3,3,16,77777,9,999999999,5,0.051,0,88,0.2,0,1 +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,7925,0,7991,3615,210,3.6,2,2,16,77777,9,999999999,5,0.051,0,88,0.2,0,1 +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,11488,0,11588,5262,200,3.1,3,3,16,77777,9,999999999,4,0.051,0,88,0.2,0,1 +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,-8.9,47,83900,793,1390,240,163,0,163,16795,0,16942,7368,190,2.6,0,0,16,77777,9,999999999,4,0.051,0,88,0.2,0,1 +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,37669,10415,30758,10383,180,2.6,3,3,16,77777,9,999999999,4,0.051,0,88,0.2,0,1 +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,31689,7378,27374,8923,170,3.6,2,2,16,77777,9,999999999,4,0.051,0,88,0.2,0,1 +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,24554,9091,19647,6212,140,3.1,3,3,16,77777,9,999999999,4,0.051,0,88,0.2,0,1 +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,17823,14414,8601,2765,140,2.6,2,2,16,77777,9,999999999,3,0.051,0,88,0.2,0,1 +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,3744,0,2046,622,150,3.6,3,3,16,77777,9,999999999,3,0.051,0,88,0.2,0,1 +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,77777,9,999999999,3,0.051,0,88,0.2,0,1 +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,77777,9,999999999,3,0.051,0,88,0.2,0,1 +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,-11.1,59,83500,0,0,221,0,0,0,0,0,0,0,170,5.2,0,0,16,77777,9,999999999,3,0.051,0,88,0.2,0,1 +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,77777,9,999999999,3,0.051,0,88,0.2,0,1 +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,77777,9,999999999,3,0.051,0,88,0.2,0,1 +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,77777,9,999999999,3,0.051,0,88,0.2,0,1 +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,75,83100,0,0,217,0,0,0,0,0,0,0,160,3.1,0,0,16,77777,9,999999999,3,0.051,0,88,0.2,0,1 +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,-8.9,71,83000,0,0,228,0,0,0,0,0,0,0,240,3.1,1,1,16,77777,9,999999999,3,0.05,0,88,0.2,0,1 +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,-8.9,71,83000,0,0,235,0,0,0,0,0,0,0,190,2.1,5,4,16,77777,9,999999999,3,0.05,0,88,0.2,0,1 +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,77777,9,999999999,4,0.05,0,88,0.2,0,1 +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,6096,9,999999999,5,0.05,0,88,0.2,0,1 +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,6096,9,999999999,5,0.05,0,88,0.2,0,1 +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,6096,9,999999999,5,0.05,0,88,0.2,0,1 +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,-7.8,79,82700,25,637,236,0,0,0,0,0,0,0,270,4.1,10,4,16,6096,9,999999999,6,0.05,0,88,0.2,0,1 +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,6685,0,6732,2166,280,3.6,9,5,16,6706,9,999999999,6,0.05,0,88,0.2,0,1 +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,11416,0,11505,4262,270,1.5,8,5,14.4,6096,9,999999999,6,0.05,0,88,0.2,0,1 +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,9243,0,9320,4117,270,3.1,7,5,16,3962,9,999999999,7,0.05,0,88,0.2,0,1 +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,15994,0,16132,6880,230,2.6,9,5,16,4572,9,999999999,7,0.05,0,88,0.2,0,1 +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,14928,0,15059,6683,270,2.1,9,9,16,4572,9,999999999,7,0.05,0,88,0.2,0,1 +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,41776,17612,29666,10100,300,3.1,5,5,16,77777,9,999999999,7,0.05,0,88,0.2,0,1 +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,46860,36812,19796,7086,340,3.6,7,6,16,6706,9,999999999,7,0.05,0,88,0.2,0,1 +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,34574,30739,13560,4726,350,2.6,9,7,16,6706,9,999999999,7,0.05,0,88,0.2,0,1 +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,16931,12452,9614,2986,250,3.1,8,5,16,6706,9,999999999,6,0.05,0,88,0.2,0,1 +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,971,0,977,377,320,2.1,7,7,16,6706,9,999999999,6,0.05,0,88,0.2,0,1 +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,3658,9,999999999,5,0.05,0,88,0.2,0,1 +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,-5,66,82600,0,0,261,0,0,0,0,0,0,0,180,2.1,9,6,16,3658,9,999999999,5,0.05,0,88,0.2,0,1 +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,76,82600,0,0,246,0,0,0,0,0,0,0,70,2.1,5,2,16,6096,9,999999999,5,0.05,0,88,0.2,0,1 +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,6096,9,999999999,5,0.05,0,88,0.2,0,1 +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,6096,9,999999999,5,0.05,0,88,0.2,0,1 +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,77777,9,999999999,4,0.05,0,88,0.2,0,1 +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,6096,9,999999999,5,0.05,0,88,0.2,0,1 +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,6096,9,999999999,5,0.049,0,88,0.2,0,1 +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,77777,9,999999999,5,0.049,0,88,0.2,0,1 +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,77777,9,999999999,5,0.049,0,88,0.2,0,1 +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,3048,9,999999999,5,0.049,0,88,0.2,0,1 +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,-9.4,68,83000,0,0,234,0,0,0,0,0,0,0,140,1.5,4,4,16,77777,9,999999999,5,0.049,0,88,0.2,0,1 +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,77777,9,999999999,5,0.049,0,88,0.2,0,1 +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,77777,9,999999999,4,0.049,0,88,0.2,0,1 +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,13861,9649,8480,2302,230,3.1,3,3,16,77777,9,999999999,4,0.049,0,88,0.2,0,1 +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,20443,7089,16894,5072,240,3.1,3,3,16,77777,9,999999999,4,0.049,0,88,0.2,0,1 +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,29698,8409,24954,7889,210,3.1,0,0,16,77777,9,999999999,4,0.049,0,88,0.2,0,1 +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,43347,21724,29171,9707,270,3.6,3,3,16,77777,9,999999999,4,0.049,0,88,0.2,0,1 +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,56166,39600,25640,9221,270,4.6,3,3,16,77777,9,999999999,4,0.049,0,88,0.2,0,1 +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,65529,52780,14186,5548,290,3.6,3,3,16,77777,9,999999999,4,0.049,0,88,0.2,0,1 +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,60433,51234,9180,3571,290,3.1,1,1,16,77777,9,999999999,4,0.049,0,88,0.2,0,1 +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,-8.9,23,83700,520,1391,278,377,845,60,45464,43047,7251,2695,330,2.1,0,0,16,77777,9,999999999,5,0.049,0,88,0.2,0,1 +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,21215,61804,5435,800,0,0,0,0,16,77777,9,999999999,5,0.049,0,88,0.2,0,1 +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,3533,21027,1998,276,100,2.6,0,0,16,77777,9,999999999,5,0.049,0,88,0.2,0,1 +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,77777,9,999999999,5,0.049,0,88,0.2,0,1 +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,77777,9,999999999,5,0.049,0,88,0.2,0,1 +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,56,83600,0,0,252,0,0,0,0,0,0,0,190,3.1,0,0,16,77777,9,999999999,5,0.049,0,88,0.2,0,1 +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,77777,9,999999999,5,0.049,0,88,0.2,0,1 +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,77777,9,999999999,6,0.049,0,88,0.2,0,1 +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,77777,9,999999999,6,0.049,0,88,0.2,0,1 +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,77777,9,999999999,6,0.049,0,88,0.2,0,1 +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,6096,9,999999999,6,0.049,0,88,0.2,0,1 +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,6096,9,999999999,6,0.049,0,88,0.2,0,1 +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,77777,9,999999999,6,0.049,0,88,0.2,0,1 +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,77777,9,999999999,6,0.049,0,88,0.2,0,1 +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,77777,9,999999999,7,0.049,0,88,0.2,0,1 +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,77777,9,999999999,6,0.049,0,88,0.2,0,1 +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,77777,9,999999999,6,0.049,0,88,0.2,0,1 +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,-6,45,83900,220,1392,258,140,394,78,15121,11839,8458,2267,0,0,0,0,16.1,77777,9,999999999,5,0.049,0,88,0.2,0,1 +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,37416,40516,11299,3807,140,2.1,0,0,16,77777,9,999999999,5,0.049,0,88,0.2,0,1 +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,51692,47320,11841,4424,130,2.6,0,0,16,77777,9,999999999,5,0.049,0,88,0.2,0,1 +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,58446,88947,12100,1660,130,3.1,0,0,16,77777,9,999999999,5,0.049,0,88,0.2,0,1 +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,62904,93801,9531,1634,120,4.1,0,0,16,77777,9,999999999,5,0.049,0,88,0.2,0,1 +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,-6.1,21,84200,755,1392,301,582,956,62,61803,94937,9145,1571,110,5.2,0,0,16,77777,9,999999999,5,0.049,0,88,0.2,0,1 +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,53639,90546,9264,1455,140,4.1,0,0,16,77777,9,999999999,5,0.049,0,88,0.2,0,1 +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,39272,79303,9011,1213,120,6.2,0,0,16,77777,9,999999999,5,0.049,0,88,0.2,0,1 +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,21666,63020,5894,805,120,4.6,0,0,16,77777,9,999999999,5,0.049,0,88,0.2,0,1 +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,3128,20514,1678,256,130,2.6,1,0,16,77777,9,999999999,5,0.049,0,88,0.2,0,1 +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,-2.8,55,83800,0,0,264,0,0,0,0,0,0,0,160,6.2,0,0,16,77777,9,999999999,5,0.049,0,88,0.2,0,1 +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,77777,9,999999999,5,0.049,0,88,0.2,0,1 +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,77777,9,999999999,4,0.049,0,88,0.2,0,1 +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,44,83800,0,0,265,0,0,0,0,0,0,0,240,7.2,0,0,16,77777,9,999999999,4,0.049,0,88,0.2,0,1 +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,44,83800,0,0,265,0,0,0,0,0,0,0,220,7.7,0,0,16,77777,9,999999999,4,0.049,0,88,0.2,0,1 +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,77777,9,999999999,3,0.049,0,88,0.2,0,1 +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,77777,9,999999999,3,0.049,0,88,0.2,0,1 +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,-7.2,38,83400,0,0,260,0,0,0,0,0,0,0,210,7.7,0,0,16,77777,9,999999999,3,0.048,0,88,0.2,0,1 +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,-7.8,36,83400,0,0,260,0,0,0,0,0,0,0,210,7.7,0,0,16,77777,9,999999999,3,0.048,0,88,0.2,0,1 +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,77777,9,999999999,3,0.048,0,88,0.2,0,1 +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,-9.4,31,83300,0,0,258,0,0,0,0,0,0,0,210,8.2,0,0,16,77777,9,999999999,2,0.048,0,88,0.2,0,1 +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,29,83400,0,0,260,0,0,0,0,0,0,0,200,8.2,0,0,16,77777,9,999999999,2,0.048,0,88,0.2,0,1 +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,77777,9,999999999,2,0.048,0,88,0.2,0,1 +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,77777,9,999999999,2,0.048,0,88,0.2,0,1 +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,24,83500,215,1393,284,112,265,71,12173,7023,7746,2134,210,7.7,5,4,16,77777,9,999999999,2,0.048,0,88,0.2,0,1 +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,31297,31295,13579,4346,220,8.2,6,4,16,77777,9,999999999,2,0.048,0,88,0.2,0,1 +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,-8.3,18,83600,607,1393,316,340,350,187,38157,27692,21088,7013,220,5.7,10,5,16,6706,9,999999999,2,0.048,0,88,0.2,0,1 +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,41239,19092,29107,9589,220,5.7,10,4,16,6706,9,999999999,2,0.048,0,88,0.2,0,1 +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,31517,3732,28963,9959,250,5.7,10,4,16,6706,9,999999999,3,0.048,0,88,0.2,0,1 +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,20425,456,20167,7500,340,2.6,9,4,16,6706,9,999999999,3,0.048,0,88,0.2,0,1 +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,33045,13524,24659,8179,10,3.6,8,4,16,6706,9,999999999,4,0.048,0,88,0.2,0,1 +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,15151,400,14986,5040,10,2.6,6,4,16,6706,9,999999999,4,0.048,0,88,0.2,0,1 +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,-5,24,83100,308,1393,318,42,0,42,4155,0,4185,1691,140,2.6,6,4,16,6706,9,999999999,4,0.048,0,88,0.2,0,1 +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,388,0,390,160,180,2.6,9,8,16,6096,9,999999999,5,0.048,0,88,0.2,0,1 +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,6096,9,999999999,5,0.048,0,88,0.2,0,1 +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,6096,9,999999999,5,0.048,0,88,0.2,0,1 +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,6096,9,999999999,5,0.048,0,88,0.2,0,1 +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,6096,9,999999999,6,0.048,0,88,0.2,0,1 +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,6096,9,999999999,6,0.048,0,88,0.2,0,1 +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,24,82600,0,0,286,0,0,0,0,0,0,0,210,5.2,8,5,16,6096,9,999999999,6,0.048,0,88,0.2,0,1 +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,6096,9,999999999,7,0.048,0,88,0.2,0,1 +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,77777,9,999999999,7,0.048,0,88,0.2,0,1 +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,26,82300,0,0,275,0,0,0,0,0,0,0,210,5.7,4,3,16,77777,9,999999999,8,0.048,0,88,0.2,0,1 +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,77777,9,999999999,8,0.048,0,88,0.2,0,1 +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,77777,9,999999999,9,0.048,0,88,0.2,0,1 +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,77777,9,999999999,9,0.048,0,88,0.2,0,1 +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,-5,46,82200,0,0,274,0,0,0,0,0,0,0,240,4.1,3,3,16,77777,9,999999999,9,0.048,0,88,0.2,0,1 +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,3,3,16,77777,9,999999999,8,0.048,0,88,0.2,0,1 +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,-3.9,36,82400,210,1393,300,134,237,98,14119,9314,10375,2346,220,5.2,7,5,16,6706,9,999999999,8,0.048,0,88,0.2,0,1 +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,6487,0,6537,2704,140,2.6,8,5,16,6706,9,999999999,9,0.048,0,88,0.2,0,1 +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,7289,0,7349,3315,160,4.1,7,6,16,6706,9,999999999,10,0.048,0,88,0.2,0,1 +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,-5,24,82100,716,1393,318,338,188,241,37937,16303,27196,9146,190,5.7,5,4,16,6706,9,999999999,11,0.048,0,88,0.2,0,1 +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,23,82400,765,1393,320,466,397,248,52651,34461,28172,9739,240,2.6,7,4,16,4572,9,999999999,11,0.048,0,88,0.2,0,1 +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,14456,0,14581,6367,270,6.7,4,4,16,4572,9,999999999,11,0.048,0,88,0.2,0,1 +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,34941,17099,24089,8020,340,6.7,3,3,16,6706,9,999999999,11,0.048,0,88,0.2,0,1 +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,40116,40170,14222,4825,300,12.4,3,3,16,77777,9,999999999,10,0.048,0,88,0.2,0,1 +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,22369,19903,7060,2301,310,10.3,6,5,16,77777,9,999999999,8,0.048,0,88,0.2,0,1 +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,2312,0,1273,395,330,6.7,9,5,16,77777,9,999999999,7,0.048,0,88,0.2,0,1 +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,6706,9,999999999,8,0.048,0,88,0.2,0,1 +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,6706,9,999999999,9,0.048,0,88,0.2,0,1 +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,6096,9,999999999,9,0.048,0,88,0.2,0,1 +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,6096,9,999999999,10,0.048,0,88,0.2,0,1 +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,5486,9,999999999,10,0.048,0,88,0.2,0,1 +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,77777,9,999999999,10,0.048,0,88,0.2,0,1 +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,77777,9,999999999,10,0.048,0,88,0.2,0,1 +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,5486,9,999999999,10,0.047,0,88,0.2,0,1 +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,5486,9,999999999,10,0.047,0,88,0.2,0,1 +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,77777,9,999999999,10,0.047,0,88,0.2,0,1 +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,77777,9,999999999,10,0.047,0,88,0.2,0,1 +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,77777,9,999999999,10,0.047,0,88,0.2,0,1 +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,77777,9,999999999,10,0.047,0,88,0.2,0,1 +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,77777,9,999999999,10,0.047,0,88,0.2,0,1 +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,54,81800,205,1394,299,116,283,74,12479,7022,7993,2110,270,7.7,5,5,16,77777,9,999999999,10,0.047,0,88,0.2,0,1 +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,31379,31258,12893,4144,240,2.6,3,3,16,77777,9,999999999,10,0.047,0,88,0.2,0,1 +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,31998,15089,23372,7406,250,4.6,3,3,16,77777,9,999999999,10,0.047,0,88,0.2,0,1 +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,38197,13233,30152,9681,280,4.6,8,8,16,77777,9,999999999,10,0.047,0,88,0.2,0,1 +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,41199,13406,32593,10611,300,7.7,9,9,16,2896,9,999999999,10,0.047,0,88,0.2,0,1 +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.6,47,82000,739,1394,321,359,149,279,39943,13594,31222,10160,280,10.3,9,9,16,1829,9,999999999,10,0.047,0,88,0.2,0,1 +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,33869,12224,26710,8502,70,3.1,8,8,16,4877,9,999999999,10,0.047,0,88,0.2,0,1 +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,1.1,54,81900,500,1394,323,230,145,178,25262,10876,19647,5973,40,2.6,9,9,16,2134,9,999999999,9,0.047,0,88,0.2,0,1 +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,12877,5397,9722,2902,10,4.6,9,9,16,2896,9,999999999,8,0.047,0,88,0.2,0,1 +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,1382,0,1268,392,290,6.7,10,10,16,3048,9,999999999,8,0.047,0,88,0.2,0,1 +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,3353,9,999999999,8,0.047,0,88,0.2,0,1 +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,3962,9,999999999,7,0.047,0,88,0.2,0,1 +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,50,82000,0,0,284,0,0,0,0,0,0,0,230,7.2,8,8,16,1981,9,999999999,7,0.047,0,88,0.2,0,1 +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,77777,9,999999999,7,0.047,0,88,0.2,0,1 +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,77777,9,999999999,6,0.047,0,88,0.2,0,1 +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,77777,9,999999999,6,0.047,0,88,0.2,0,1 +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,77777,9,999999999,5,0.047,0,88,0.2,0,1 +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,77777,9,999999999,5,0.047,0,88,0.2,0,1 +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,77777,9,999999999,5,0.047,0,88,0.2,0,1 +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,77777,9,999999999,4,0.047,0,88,0.2,0,1 +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,77777,9,999999999,4,0.047,0,88,0.2,0,1 +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,77777,9,999999999,4,0.047,0,88,0.2,0,1 +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,77777,9,999999999,4,0.047,0,88,0.2,0,1 +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,77777,9,999999999,4,0.047,0,88,0.2,0,1 +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,10221,2816,8875,2163,230,3.6,4,4,16,77777,9,999999999,4,0.047,0,88,0.2,0,1 +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,28,82700,418,1395,277,188,146,144,20624,9863,15869,4697,270,6.7,6,5,16,77777,9,999999999,4,0.047,0,88,0.2,0,1 +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,31851,13392,24819,7600,280,5.2,10,6,16,3658,9,999999999,4,0.047,0,88,0.2,0,1 +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,38240,13941,29848,9563,290,4.1,8,6,16,3962,9,999999999,5,0.047,0,88,0.2,0,1 +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,41253,14162,32297,10490,0,0,6,6,16,6706,9,999999999,5,0.047,0,88,0.2,0,1 +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,39339,13345,31046,10060,330,1.5,3,3,16,3962,9,999999999,5,0.047,0,88,0.2,0,1 +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,33947,13131,26546,8410,290,2.1,6,6,16,6096,9,999999999,6,0.047,0,88,0.2,0,1 +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,24757,10378,19570,5911,260,3.6,6,6,16,3962,9,999999999,5,0.047,0,88,0.2,0,1 +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,24,82700,294,1395,288,116,116,92,12727,5107,10133,2951,310,4.6,8,6,16,3962,9,999999999,5,0.047,0,88,0.2,0,1 +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,1273,0,1158,358,290,5.7,7,7,16,3962,9,999999999,5,0.047,0,88,0.2,0,1 +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,-9.4,31,82700,0,0,276,0,0,0,0,0,0,0,300,4.6,7,6,16,3962,9,999999999,5,0.047,0,88,0.2,0,1 +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,3962,9,999999999,5,0.047,0,88,0.2,0,1 +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,4,4,16,6096,9,999999999,5,0.047,0,88,0.2,0,1 +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,77777,9,999999999,5,0.047,0,88,0.2,0,1 +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,6096,9,999999999,5,0.047,0,88,0.2,0,1 +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,-8.3,49,82900,0,0,258,0,0,0,0,0,0,0,170,3.6,6,6,16,6096,9,999999999,6,0.047,0,88,0.2,0,1 +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,-8.9,47,82600,0,0,257,0,0,0,0,0,0,0,180,3.6,6,6,16,6096,9,999999999,6,0.047,0,88,0.2,0,1 +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,77777,9,999999999,6,0.046,0,88,0.2,0,1 +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,-8.9,47,82700,0,0,260,0,0,0,0,0,0,0,220,5.2,8,7,16,77777,9,999999999,6,0.046,0,88,0.2,0,1 +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,6096,9,999999999,5,0.046,0,88,0.2,0,1 +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,49,82700,0,0,247,0,0,0,0,0,0,0,250,3.6,5,5,16,77777,9,999999999,5,0.046,0,88,0.2,0,1 +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,2,2,16,6096,9,999999999,4,0.046,0,88,0.2,0,1 +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,45,82900,0,0,248,0,0,0,0,0,0,0,280,3.1,3,3,16,6096,9,999999999,4,0.046,0,88,0.2,0,1 +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,47,82900,12,454,252,0,0,0,0,0,0,0,280,3.1,6,6,16,6706,9,999999999,5,0.046,0,88,0.2,0,1 +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,10486,4251,8165,2059,290,2.1,5,5,16,6706,9,999999999,5,0.046,0,88,0.2,0,1 +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,26096,24138,11742,3820,360,2.1,8,8,16,6706,9,999999999,5,0.046,0,88,0.2,0,1 +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,41376,36875,15651,5517,40,5.7,9,9,16,3353,9,999999999,5,0.046,0,88,0.2,0,1 +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,59786,50628,12812,4932,50,6.7,9,9,16,2286,9,999999999,5,0.046,0,88,0.2,0,1 +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,60334,48211,15468,5969,40,7.2,7,7,16,6096,9,999999999,5,0.046,0,88,0.2,0,1 +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,48,83600,728,1395,292,447,454,209,50862,36915,23900,8442,30,6.2,9,9,16,3353,9,999999999,5,0.046,0,88,0.2,0,1 +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,-5,46,83700,640,1395,278,312,207,216,34817,17321,24229,7924,30,5.2,6,5,16,3962,9,999999999,5,0.046,0,88,0.2,0,1 +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,24214,11817,17996,5595,20,6.2,5,5,16,6096,9,999999999,6,0.046,0,88,0.2,0,1 +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,8264,382,8067,2511,30,5.2,7,7,16,6096,9,999999999,6,0.046,0,88,0.2,0,1 +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,1393,0,1046,325,50,4.6,8,8,16,2438,9,999999999,7,0.046,0,88,0.2,0,1 +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,8,8,16,1676,9,999999999,6,0.046,0,88,0.2,0,1 +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,-3.9,72,83900,0,0,256,0,0,0,0,0,0,0,230,4.1,3,3,16,77777,9,999999999,6,0.046,0,88,0.2,0,1 +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,77777,9,999999999,6,0.046,0,88,0.2,0,1 +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,77777,9,999999999,5,0.046,0,88,0.2,0,1 +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,77777,9,999999999,5,0.046,0,88,0.2,0,1 +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,77777,9,999999999,5,0.046,0,88,0.2,0,1 +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,77777,9,999999999,4,0.046,0,88,0.2,0,1 +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,77777,9,999999999,4,0.046,0,88,0.2,0,1 +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,77777,9,999999999,4,0.046,0,88,0.2,0,1 +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,56,83900,0,0,228,0,0,0,0,0,0,0,210,6.7,0,0,16,77777,9,999999999,3,0.046,0,88,0.2,0,1 +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,77777,9,999999999,3,0.046,0,88,0.2,0,1 +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,77777,9,999999999,3,0.046,0,88,0.2,0,1 +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,-11.1,59,83800,0,0,221,0,0,0,0,0,0,0,200,5.2,0,0,16,77777,9,999999999,3,0.046,0,88,0.2,0,1 +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,77777,9,999999999,3,0.046,0,88,0.2,0,1 +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,11880,7029,7952,2000,210,7.2,0,0,16,77777,9,999999999,3,0.046,0,88,0.2,0,1 +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,32502,35645,12558,3986,210,5.7,0,0,16,77777,9,999999999,4,0.046,0,88,0.2,0,1 +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,42876,39618,15958,5578,220,5.2,0,0,16,77777,9,999999999,4,0.046,0,88,0.2,0,1 +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,56211,47923,12479,4799,210,3.6,0,0,16,77777,9,999999999,4,0.046,0,88,0.2,0,1 +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,63962,52197,11687,4596,250,3.1,0,0,16,77777,9,999999999,5,0.046,0,88,0.2,0,1 +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,64019,52835,10065,3960,280,3.1,1,1,16,77777,9,999999999,5,0.046,0,88,0.2,0,1 +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,48483,84998,8873,1388,270,4.6,1,1,16,77777,9,999999999,5,0.046,0,88,0.2,0,1 +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,35613,75855,8018,1140,200,1.5,0,0,16,77777,9,999999999,5,0.046,0,88,0.2,0,1 +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,17690,55486,4678,716,0,0,1,1,16,77777,9,999999999,5,0.046,0,88,0.2,0,1 +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,1402,10224,1023,178,170,2.1,6,5,16,77777,9,999999999,5,0.046,0,88,0.2,0,1 +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,77777,9,999999999,6,0.046,0,88,0.2,0,1 +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,77777,9,999999999,7,0.046,0,88,0.2,0,1 +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,77777,9,999999999,8,0.046,0,88,0.2,0,1 +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,77777,9,999999999,8,0.046,0,88,0.2,0,1 +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,77777,9,999999999,9,0.046,0,88,0.2,0,1 +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,20,83700,0,0,265,0,0,0,0,0,0,0,210,6.2,6,5,16,77777,9,999999999,10,0.046,0,88,0.2,0,1 +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,5486,9,999999999,10,0.046,0,88,0.2,0,1 +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,5486,9,999999999,10,0.045,0,88,0.2,0,1 +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,5486,9,999999999,10,0.045,0,88,0.2,0,1 +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,5486,9,999999999,10,0.045,0,88,0.2,0,1 +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,5486,9,999999999,10,0.045,0,88,0.2,0,1 +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,5486,9,999999999,10,0.045,0,88,0.2,0,1 +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,77777,9,999999999,10,0.045,0,88,0.2,0,1 +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,6706,9,999999999,10,0.045,0,88,0.2,0,1 +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,3329,0,3352,1224,140,1.5,9,9,16,6096,9,999999999,10,0.045,0,88,0.2,0,1 +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,5783,0,5827,2404,310,3.6,9,9,16,6706,9,999999999,10,0.045,0,88,0.2,0,1 +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,29192,13358,21752,6913,0,0,9,9,16,6096,9,999999999,10,0.045,0,88,0.2,0,1 +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,24105,1460,23202,8022,20,7.2,8,8,16,6706,9,999999999,10,0.045,0,88,0.2,0,1 +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,26070,1005,25521,8905,50,6.2,9,9,16,3962,9,999999999,11,0.045,0,88,0.2,0,1 +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,15037,0,15166,6468,70,5.2,10,7,16,3962,9,999999999,11,0.045,0,88,0.2,0,1 +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,32379,15716,22520,7486,80,6.2,8,5,16,3962,9,999999999,11,0.045,0,88,0.2,0,1 +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,5318,0,5360,2354,90,4.6,7,5,16,3962,9,999999999,11,0.045,0,88,0.2,0,1 +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,-4.4,34,83200,281,1397,299,28,0,28,2763,0,2783,1159,110,3.6,7,5,16,3962,9,999999999,11,0.045,0,88,0.2,0,1 +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,580,0,584,225,290,1.5,10,10,16,3353,9,999999999,12,0.045,0,88,0.2,0,1 +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,-4.4,34,83200,0,0,317,0,0,0,0,0,0,0,0,0,10,9,16,2743,9,999999999,12,0.045,0,88,0.2,0,1 +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,1463,9,999999999,12,0.045,0,88,0.2,0,1 +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,60,83300,0,0,318,0,0,0,0,0,0,0,120,4.6,10,10,16,1676,9,999999999,11,0.045,0,88,0.2,0,1 +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,62,83400,0,0,316,0,0,0,0,0,0,0,100,3.1,10,10,16,1128,9,999999999,11,0.045,0,88,0.2,0,1 +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,-1,69,83200,0,0,303,0,0,0,0,0,0,0,80,1.5,10,10,16.1,1800,9,999999999,11,0.045,0,88,0.2,0,1 +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,1524,9,999999999,11,0.045,0,88,0.2,0,1 +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,2591,9,999999999,11,0.045,0,88,0.2,0,1 +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,2591,9,999999999,10,0.045,0,88,0.2,0,1 +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,10,10,16,2438,9,999999999,9,0.045,0,88,0.2,0,1 +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,2743,9,999999999,9,0.045,0,88,0.2,0.8,1 +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,9,0.045,0,88,0.2,0,1 +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,2896,9,999999999,8,0.045,0,88,0.2,0,1 +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,1829,9,999999999,8,0.045,0,88,0.2,0,1 +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,2896,9,999999999,8,0.045,0,88,0.2,0,1 +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,92,83400,180,1397,277,58,0,58,5666,0,5706,1731,240,3.6,8,8,16,2743,9,999999999,8,0.045,0,88,0.2,0,1 +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,79,83500,397,1397,286,286,696,87,32444,33453,9903,3300,320,2.6,8,8,16,2591,9,999999999,8,0.045,0,88,0.2,0,1 +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,45334,42902,17671,5984,40,2.6,8,8,16,2591,9,999999999,8,0.045,0,88,0.2,0,1 +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,19432,875,18825,6827,60,3.1,8,8,16,2438,9,999999999,7,0.045,0,88,0.2,0,1 +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,62,83600,733,1397,307,546,716,169,63157,52685,19636,7271,90,3.1,9,9,16,2591,9,999999999,7,0.045,0,88,0.2,0,1 +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,55795,45655,18719,6913,0,0,8,8,16,2286,9,999999999,8,0.045,0,88,0.2,0,1 +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,38664,25556,22911,7535,70,3.1,7,7,16,6096,9,999999999,8,0.045,0,88,0.2,0,1 +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,37920,39035,13710,4570,50,2.1,6,6,16,6096,9,999999999,7,0.045,0,88,0.2,0,1 +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,15657,10896,6371,2056,80,4.1,6,6,16,6096,9,999999999,7,0.045,0,88,0.2,0,1 +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,1199,8265,858,155,70,4.1,7,7,16,6096,9,999999999,7,0.045,0,88,0.2,0,1 +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,2743,9,999999999,7,0.045,0,88,0.2,0,1 +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,3962,9,999999999,7,0.045,0,88,0.2,0,1 +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,-1.7,87,83300,0,0,264,0,0,0,0,0,0,0,160,3.6,8,6,16,3962,9,999999999,7,0.045,0,88,0.2,0,1 +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,3962,9,999999999,7,0.045,0,88,0.2,0,1 +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,-2.2,83,83200,0,0,277,0,0,0,0,0,0,0,160,3.6,10,9,16,2743,9,999999999,7,0.045,0,88,0.2,0,1 +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,-2.2,83,83400,0,0,277,0,0,0,0,0,0,0,170,3.1,10,9,16,2743,9,999999999,7,0.045,0,88,0.2,0,1 +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,-2.8,79,83100,0,0,276,0,0,0,0,0,0,0,170,4.1,9,9,16,2896,9,999999999,7,0.045,0,88,0.2,0,1 +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,-2.8,79,83100,0,0,276,0,0,0,0,0,0,0,200,4.6,10,9,16,3048,9,999999999,7,0.045,0,88,0.2,0,1 +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,10,9,16,2743,9,999999999,7,0.045,0,88,0.2,0,1 +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,-2.8,79,83200,0,0,276,0,0,0,0,0,0,0,0,0,10,9,16,2134,9,999999999,7,0.045,0,88,0.2,0,1 +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,-2.2,83,83200,0,0,277,0,0,0,0,0,0,0,30,2.6,10,9,16,2134,9,999999999,8,0.045,0,88,0.2,0,1 +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,-1.7,87,83500,0,0,285,0,0,0,0,0,0,0,320,2.1,10,10,16,1341,9,999999999,8,0.045,0,88,0.2,0,1 +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,1829,9,999999999,8,0.045,0,88,0.2,0,1 +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,1219,9,999999999,7,0.045,0,88,0.2,0,1 +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,2345,0,2362,909,350,5.2,9,9,16,1372,9,999999999,7,0.045,0,88,0.2,0,1 +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,24970,20918,14521,4286,350,7.2,8,8,16,1311,9,999999999,7,0.045,0,88,0.2,0,1 +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,12010,0,12108,4898,360,6.7,8,8,16,1067,9,999999999,7,0.045,0,88,0.2,0,1 +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,33674,12836,25530,8481,10,7.2,8,8,16,579,9,999999999,7,0.045,0,88,0.2,0,1 +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,-1.7,61,84000,728,1398,292,158,0,158,16164,0,16303,6882,360,7.2,8,8,16,1219,9,999999999,7,0.045,0,88,0.2,0,1 +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,20243,451,19989,7266,10,6.7,9,9,16,1189,9,999999999,7,0.045,0,88,0.2,0,1 +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,45906,39936,17662,6228,10,4.6,6,6,16,6096,9,999999999,6,0.045,0,88,0.2,0,1 +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,34330,32052,8694,3118,70,4.1,5,5,16,77777,9,999999999,7,0.045,0,88,0.2,0,1 +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,17710,9955,4230,1433,110,1.5,5,5,16,77777,9,999999999,7,0.045,0,88,0.2,0,1 +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,826,0,708,221,210,3.1,5,5,16,77777,9,999999999,7,0.045,0,88,0.2,0,1 +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,1829,9,999999999,6,0.045,0,88,0.2,0,1 +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,-2.8,79,84000,0,0,257,0,0,0,0,0,0,0,210,4.6,3,3,16,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,51,83700,0,0,232,0,0,0,0,0,0,0,220,6.2,0,0,16,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,5968,0,6010,1715,220,5.7,3,3,16,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,30963,32957,9786,3233,230,3.6,3,3,16,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,41240,38905,13333,4750,270,6.2,3,3,16,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,52329,45348,14839,5552,270,4.1,3,3,16,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,64924,54909,12424,4831,280,4.6,4,4,16,7620,9,999999999,6,0.045,0,88,0.2,0,1 +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,60740,50833,10477,4088,280,6.2,3,3,16,7620,9,999999999,6,0.045,0,88,0.2,0,1 +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,48378,43847,11419,4281,300,7.7,5,5,16,7620,9,999999999,7,0.045,0,88,0.2,0,1 +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,34986,34355,8594,3072,280,6.7,7,6,16,7620,9,999999999,6,0.045,0,88,0.2,0,1 +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,13,83900,270,1399,300,159,551,52,18125,14017,5943,1923,280,6.2,9,8,16,6706,9,999999999,6,0.045,0,88,0.2,0,1 +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,978,9146,691,131,270,4.6,7,7,16,7620,9,999999999,6,0.045,0,88,0.2,0,1 +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,7620,9,999999999,6,0.045,0,88,0.2,0,1 +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,7620,9,999999999,6,0.045,0,88,0.2,0,1 +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,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,6706,9,999999999,6,0.045,0,88,0.2,0,1 +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,-11.1,27,83200,0,0,265,0,0,0,0,0,0,0,210,6.7,3,2,16,6706,9,999999999,5,0.045,0,88,0.2,0,1 +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,-11.7,26,83200,0,0,264,0,0,0,0,0,0,0,210,7.2,3,2,16,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,-13.3,22,83000,0,0,267,0,0,0,0,0,0,0,220,7.2,6,4,16,6706,9,999999999,5,0.045,0,88,0.2,0,1 +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,-11.7,26,83000,0,0,267,0,0,0,0,0,0,0,210,6.2,6,3,16,6706,9,999999999,5,0.044,0,88,0.2,0,1 +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,6706,9,999999999,5,0.044,0,88,0.2,0,1 +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,6706,9,999999999,6,0.044,0,88,0.2,0,1 +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,6706,9,999999999,6,0.044,0,88,0.2,0,1 +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,6706,9,999999999,7,0.044,0,88,0.2,0,1 +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,6096,9,999999999,6,0.044,0,88,0.2,0,1 +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,6096,9,999999999,6,0.044,0,88,0.2,0,1 +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,3617,0,3642,1255,160,5.2,6,5,16,6096,9,999999999,6,0.044,0,88,0.2,0,1 +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,21454,17635,11328,3593,170,3.1,7,6,16,6096,9,999999999,7,0.044,0,88,0.2,0,1 +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,35959,30610,16061,5493,80,5.2,5,4,16,6096,9,999999999,7,0.044,0,88,0.2,0,1 +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,43162,30535,23331,7908,70,6.2,5,5,16,7620,9,999999999,7,0.044,0,88,0.2,0,1 +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,61441,52771,15833,6001,90,7.2,4,4,16,7620,9,999999999,7,0.044,0,88,0.2,0,1 +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,60557,52173,12150,4689,90,7.7,3,3,16,7620,9,999999999,7,0.044,0,88,0.2,0,1 +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,-15,10,83200,613,1399,303,390,621,117,45508,41315,13702,5018,90,5.7,6,3,16,7620,9,999999999,8,0.044,0,88,0.2,0,1 +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,34094,34409,11481,3929,120,5.2,9,7,16,7620,9,999999999,7,0.044,0,88,0.2,0,1 +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,12524,7266,8007,2406,40,2.6,10,6,16,7315,9,999999999,7,0.044,0,88,0.2,0,1 +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,-12.8,16,82800,50,921,300,1,0,1,97,0,97,40,90,3.1,8,8,16,7315,9,999999999,7,0.044,0,88,0.2,0,1 +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,4267,9,999999999,7,0.044,0,88,0.2,0,1 +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,3048,9,999999999,7,0.044,0,88,0.2,0,1 +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,4267,9,999999999,7,0.044,0,88,0.2,0,1 +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,3048,9,999999999,7,0.044,0,88,0.2,0,1 +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,1981,9,999999999,6,0.044,0,88,0.2,0,1 +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,2134,9,999999999,6,0.044,0,88,0.2,0,1 +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,3048,9,999999999,6,0.044,0,88,0.2,0,1 +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,2743,9,999999999,5,0.044,0,88,0.2,0,1 +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,-6.7,40,83200,0,0,293,0,0,0,0,0,0,0,360,2.6,9,9,16,3048,9,999999999,5,0.044,0,88,0.2,0,1 +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,2134,9,999999999,5,0.044,0,88,0.2,0,1 +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,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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,77777,9,999999999,4,0.044,0,88,0.2,0,1 +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,77777,9,999999999,4,0.044,0,88,0.2,0,1 +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,6251,0,6294,1680,170,3.1,3,3,16,77777,9,999999999,4,0.044,0,88,0.2,0,1 +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,28956,26306,5803,2039,130,3.6,3,3,16,77777,9,999999999,4,0.044,0,88,0.2,0,1 +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,42938,40496,10056,3693,130,3.6,4,4,16,77777,9,999999999,4,0.044,0,88,0.2,0,1 +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,54892,49106,15561,5754,140,4.1,10,5,16,77777,9,999999999,4,0.044,0,88,0.2,0,1 +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,41634,23296,26243,8886,170,2.1,4,4,16,77777,9,999999999,4,0.044,0,88,0.2,0,1 +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,-9.4,22,83900,695,1400,291,505,758,127,59421,52016,15000,5661,200,3.1,5,4,16,77777,9,999999999,4,0.044,0,88,0.2,0,1 +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,53257,49621,10516,3955,250,1.5,4,4,16,77777,9,999999999,4,0.044,0,88,0.2,0,1 +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,35142,34237,7921,2841,250,1.5,7,6,16,77777,9,999999999,4,0.044,0,88,0.2,0,1 +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,-11.1,19,84000,263,1400,298,154,637,34,18099,10198,4003,1349,250,2.6,9,7,16,7315,9,999999999,4,0.044,0,88,0.2,0,1 +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,593,0,593,185,260,4.1,10,7,16,7315,9,999999999,4,0.044,0,88,0.2,0,1 +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,7315,9,999999999,4,0.044,0,88,0.2,0,1 +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,6706,9,999999999,4,0.044,0,88,0.2,0,1 +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,6096,9,999999999,4,0.044,0,88,0.2,0,1 +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,6096,9,999999999,4,0.044,0,88,0.2,0,1 +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,6096,9,999999999,5,0.044,0,88,0.2,0,1 +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,6096,9,999999999,5,0.044,0,88,0.2,0,1 +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,-14.4,20,83700,0,0,284,0,0,0,0,0,0,0,230,6.7,10,9,16,6096,9,999999999,5,0.044,0,88,0.2,0,1 +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,6096,9,999999999,6,0.044,0,88,0.2,0,1 +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,6096,9,999999999,6,0.044,0,88,0.2,0,1 +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,6096,9,999999999,6,0.044,0,88,0.2,0,1 +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,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,-13.9,21,83800,0,0,269,0,0,0,0,0,0,0,250,6.7,7,5,16,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,-11.1,27,83900,155,1400,272,40,0,40,3909,0,3936,1294,10,2.1,7,5,16,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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,26,84100,371,1400,279,253,624,87,28546,30134,9850,3200,60,4.1,8,5,16,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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,25,84100,544,1400,282,345,592,114,39741,37730,13180,4656,100,1.5,6,4,16,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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,22,84000,659,1400,288,440,686,116,51796,45564,13704,5139,140,2.1,4,4,16,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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,20,84100,709,1400,293,516,860,78,63174,52145,9575,3756,180,3.1,4,4,16,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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,52746,85469,10080,1526,220,1.5,4,4,16,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,51650,46166,7936,3027,290,3.6,6,6,16,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,34292,76477,8046,1090,320,5.2,5,5,16,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,16837,55659,4683,675,280,5.2,3,3,16,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,875,10599,523,103,290,3.6,8,5,16,77777,9,999999999,7,0.044,0,88,0.2,0,1 +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,77777,9,999999999,7,0.044,0,88,0.2,0,1 +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,77777,9,999999999,8,0.044,0,88,0.2,0,1 +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,77777,9,999999999,8,0.044,0,88,0.2,0,1 +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,77777,9,999999999,9,0.044,0,88,0.2,0,1 +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,-6.7,40,84000,0,0,274,0,0,0,0,0,0,0,270,3.6,4,4,16,6706,9,999999999,9,0.044,0,88,0.2,0,1 +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,77777,9,999999999,9,0.044,0,88,0.2,0,1 +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,6706,9,999999999,9,0.044,0,88,0.2,0,1 +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,-6.7,40,83900,0,0,282,0,0,0,0,0,0,0,230,5.2,8,7,16,6706,9,999999999,9,0.044,0,88,0.2,0,1 +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,2591,9,999999999,9,0.044,0,88,0.2,0,1 +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,2591,9,999999999,9,0.044,0,88,0.2,0,1 +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,-6.1,42,84100,0,0,287,0,0,0,0,0,0,0,230,3.6,8,8,16,2438,9,999999999,8,0.044,0,88,0.2,0,1 +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,2438,9,999999999,8,0.044,0,88,0.2,0,1 +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,77777,9,999999999,8,0.044,0,88,0.2,0,1 +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,77777,9,999999999,8,0.044,0,88,0.2,0,1 +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,13246,3887,5728,1495,160,3.1,3,3,16,77777,9,999999999,8,0.044,0,88,0.2,0,1 +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,30301,29546,7189,2458,160,2.6,3,3,16,77777,9,999999999,8,0.044,0,88,0.2,0,1 +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,44858,42496,9044,3337,220,2.6,0,0,16,77777,9,999999999,8,0.044,0,88,0.2,0,1 +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,54327,46982,10705,4099,280,1.5,0,0,16,77777,9,999999999,8,0.044,0,88,0.2,0,1 +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,62327,50752,9558,3747,330,4.1,0,0,16,77777,9,999999999,9,0.044,0,88,0.2,0,1 +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,57316,47952,10990,4253,40,5.2,0,0,16,77777,9,999999999,9,0.044,0,88,0.2,0,1 +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,-3.9,26,84500,601,1401,303,418,816,67,50707,44655,8147,3103,20,5.7,0,0,16,77777,9,999999999,9,0.044,0,88,0.2,0,1 +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,33848,76169,7760,1078,60,4.6,1,1,16,77777,9,999999999,9,0.044,0,88,0.2,0,1 +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,15484,52280,4070,640,30,2.1,0,0,16,77777,9,999999999,9,0.044,0,88,0.2,0,1 +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,769,10210,523,102,0,0,2,2,16,77777,9,999999999,9,0.044,0,88,0.2,0,1 +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,-3.9,36,84400,0,0,283,0,0,0,0,0,0,0,140,1.5,0,0,16,77777,9,999999999,9,0.044,0,88,0.2,0,1 +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,77777,9,999999999,9,0.044,0,88,0.2,0,1 +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,77777,9,999999999,10,0.044,0,88,0.2,0,1 +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,77777,9,999999999,10,0.044,0,88,0.2,0,1 +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,-3.9,51,84100,0,0,263,0,0,0,0,0,0,0,180,4.6,0,0,16,77777,9,999999999,10,0.044,0,88,0.2,0,1 +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,-4.4,48,84100,0,0,263,0,0,0,0,0,0,0,200,6.2,0,0,16,77777,9,999999999,9,0.044,0,88,0.2,0,1 +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,77777,9,999999999,10,0.044,0,88,0.2,0,1 +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,63,83800,0,0,246,0,0,0,0,0,0,0,180,2.6,0,0,16,77777,9,999999999,10,0.044,0,88,0.2,0,1 +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,77777,9,999999999,10,0.044,0,88,0.2,0,1 +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,77777,9,999999999,10,0.044,0,88,0.2,0,1 +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,2438,9,999999999,11,0.044,0,88,0.2,0,1 +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,2286,9,999999999,11,0.044,0,88,0.2,0,1 +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,77777,9,999999999,11,0.044,0,88,0.2,0,1 +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,77777,9,999999999,11,0.044,0,88,0.2,0,1 +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,-3.3,53,84400,146,1402,275,98,609,35,10891,0,3900,1155,220,5.2,3,3,16,77777,9,999999999,10,0.044,0,88,0.2,0,1 +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,27234,24198,6209,2151,230,4.1,0,0,16,77777,9,999999999,10,0.044,0,88,0.2,0,1 +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,43524,40253,8368,3099,240,3.1,0,0,16,77777,9,999999999,10,0.044,0,88,0.2,0,1 +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,54529,46476,10019,3847,320,4.6,0,0,16,77777,9,999999999,9,0.044,0,88,0.2,0,1 +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,59550,48493,10561,4118,40,3.6,0,0,16,77777,9,999999999,9,0.044,0,88,0.2,0,1 +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.6,34,84700,682,1402,320,476,806,82,57682,47429,9965,3873,20,3.6,3,3,16,77777,9,999999999,9,0.044,0,88,0.2,0,1 +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,49081,42863,8584,3259,40,3.6,3,3,16,77777,9,999999999,9,0.044,0,88,0.2,0,1 +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,34853,31590,6459,2341,40,4.1,0,0,16,77777,9,999999999,9,0.044,0,88,0.2,0,1 +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,15737,6293,3764,1268,0,0,1,1,16,77777,9,999999999,9,0.044,0,88,0.2,0,1 +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,660,7936,522,101,0,0,5,5,16,77777,9,999999999,9,0.044,0,88,0.2,0,1 +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,77777,9,999999999,9,0.044,0,88,0.2,0,1 +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,77777,9,999999999,9,0.044,0,88,0.2,0,1 +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,-1.7,61,84100,0,0,265,0,0,0,0,0,0,0,170,4.1,0,0,16,77777,9,999999999,8,0.044,0,88,0.2,0,1 +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,77777,9,999999999,8,0.044,0,88,0.2,0,1 +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,77777,9,999999999,7,0.044,0,88,0.2,0,1 +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,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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,77777,9,999999999,4,0.044,0,88,0.2,0,1 +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,-3.9,51,83600,0,0,268,0,0,0,0,0,0,0,210,8.2,1,1,16,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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,-5,46,83500,0,0,262,0,0,0,0,0,0,0,210,7.7,0,0,16,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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,-6.1,42,83600,0,0,261,0,0,0,0,0,0,0,220,8.8,0,0,16,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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,11021,790,5204,1375,220,8.2,0,0,16,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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,25193,23551,7068,2403,220,6.2,3,2,16,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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,36891,33968,15454,5221,200,5.7,6,4,16,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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,-8.3,13,83400,645,1402,333,491,783,129,57144,53502,15071,5538,250,3.6,5,3,16,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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,10,84000,696,1402,342,474,638,156,54877,46985,18138,6650,270,8.2,7,5,16,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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,10,83900,678,1402,345,517,848,105,61535,54885,12539,4783,290,9.3,9,6,16,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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,50277,49281,16830,5862,310,5.2,9,5,16,7620,9,999999999,5,0.044,0,88,0.2,0,1 +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,18754,6852,15158,4737,320,2.6,10,4,16,6706,9,999999999,5,0.044,0,88,0.2,0,1 +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,11419,5785,7341,2205,360,4.1,9,4,16,6096,9,999999999,5,0.044,0,88,0.2,0,1 +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,193,0,194,78,320,9.3,7,7,16,6706,9,999999999,5,0.044,0,88,0.2,0,1 +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,6096,9,999999999,6,0.044,0,88,0.2,0,1 +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,4267,9,999999999,6,0.044,0,88,0.2,0,1 +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,-7.2,27,83700,0,0,294,0,0,0,0,0,0,0,30,4.6,8,4,16,4267,9,999999999,6,0.044,0,88,0.2,0,1 +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,4267,9,999999999,7,0.044,0,88,0.2,0,1 +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,48,83400,0,0,278,0,0,0,0,0,0,0,120,4.1,7,6,16,4267,9,999999999,7,0.044,0,88,0.2,0,1 +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,-4.4,48,83700,0,0,281,0,0,0,0,0,0,0,160,2.1,10,6,16,6096,9,999999999,8,0.044,0,88,0.2,0,1 +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,3962,9,999999999,8,0.044,0,88,0.2,0,1 +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,48,83500,0,0,281,0,0,0,0,0,0,0,270,2.6,7,7,16,77777,9,999999999,8,0.044,0,88,0.2,0,1 +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,6096,9,999999999,8,0.044,0,88,0.2,0,1 +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,6096,9,999999999,8,0.044,0,88,0.2,0,1 +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,6096,9,999999999,9,0.044,0,88,0.2,0,1 +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,6096,9,999999999,9,0.044,0,88,0.2,0,1 +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,-2.8,79,83200,0,0,270,0,0,0,0,0,0,0,180,3.1,10,8,16,6096,9,999999999,9,0.044,0,88,0.2,0,1 +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,6096,9,999999999,9,0.044,0,88,0.2,0,1 +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,1461,0,1471,577,120,3.1,8,5,16,6096,9,999999999,9,0.044,0,88,0.2,0,1 +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,65,83400,352,1403,287,189,376,94,21025,17648,10496,3283,150,4.6,7,5,16,6096,9,999999999,9,0.044,0,88,0.2,0,1 +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,54,83500,525,1403,305,240,173,175,26529,12931,19438,6084,180,6.7,8,7,16,6096,9,999999999,9,0.044,0,88,0.2,0,1 +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,43334,33541,20864,7141,270,3.6,9,8,16,6706,9,999999999,8,0.044,0,88,0.2,0,1 +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,52765,43635,14745,5570,280,5.2,6,6,16,6706,9,999999999,9,0.044,0,88,0.2,0,1 +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,51088,42744,14263,5365,300,1.5,8,7,16,7620,9,999999999,9,0.044,0,88,0.2,0,1 +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,-1.1,45,83100,590,1403,305,350,514,133,40135,34346,15313,5431,340,3.6,8,6,16,7620,9,999999999,9,0.044,0,88,0.2,0,1 +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,28932,26714,10973,3725,340,2.1,6,6,16,77777,9,999999999,9,0.044,0,88,0.2,0,1 +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,15611,9300,5671,1806,320,3.1,5,4,16,77777,9,999999999,8,0.044,0,88,0.2,0,1 +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,193,0,194,78,310,5.2,6,5,16,77777,9,999999999,8,0.044,0,88,0.2,0,1 +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,77777,9,999999999,7,0.044,0,88,0.2,0,1 +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,77777,9,999999999,7,0.044,0,88,0.2,0,1 +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,77777,9,999999999,7,0.044,0,88,0.2,0,1 +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,77777,9,999999999,7,0.044,0,88,0.2,0,1 +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,77777,9,999999999,8,0.044,0,88,0.2,0,1 +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,762,9,999999999,8,0.044,0,88,0.2,0,1 +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,701,9,999999999,8,0.044,0,88,0.2,0,1 +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,488,9,999999999,8,0.044,0,88,0.2,0,1 +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,549,9,999999999,9,0.044,0,88,0.2,0,1 +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,671,9,999999999,9,0.044,0,88,0.2,0,1 +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,-7,84,83000,0,0,260,0,0,0,0,0,0,0,350,7.7,10,10,14.5,840,9,999999999,9,0.044,0,88,0.2,0,1 +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,9,0.044,0,88,0.2,0,1 +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,9,0.044,0,88,0.2,0,1 +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,9,0.044,0,88,0.2,0,1 +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,-7,92,83400,132,1403,256,16,0,16,1559,0,1570,606,60,4.6,10,10,4.8,330,9,999999999,8,0.044,0,88,0.2,0,1 +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,10985,295,10804,3325,50,4.1,10,10,2.4,244,9,999999999,8,0.044,0,88,0.2,0,1 +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,-6.1,91,83600,520,1403,260,220,142,167,24418,10561,18623,5887,70,4.1,10,10,2.4,457,9,999999999,8,0.044,0,88,0.2,0,1 +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,16058,0,16192,6403,90,3.1,10,10,16,457,9,999999999,8,0.044,0,88,0.2,0,1 +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,10511,0,10600,4729,70,1.5,10,10,14.4,701,9,999999999,8,0.044,0,88,0.2,0,1 +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,14369,0,14490,6041,30,2.6,10,10,16,640,9,999999999,7,0.044,0,88,0.2,0,1 +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,12552,0,12654,5135,60,2.6,10,10,16,823,9,999999999,7,0.044,0,88,0.2,0,1 +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,4801,0,4838,2096,90,3.1,10,10,16,640,9,999999999,7,0.044,0,88,0.2,0,1 +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,5216,0,5254,1877,0,0,10,10,16,701,9,999999999,7,0.044,0,88,0.2,0,1 +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,484,0,363,113,80,2.6,10,10,14.4,823,9,999999999,8,0.044,0,88,0.2,0,1 +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,7,0.044,0,88,0.2,0,1 +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,-5.6,95,83700,0,0,261,0,0,0,0,0,0,0,110,3.6,10,10,3.2,762,9,999999999,7,0.044,0,88,0.2,0,1 +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,-6.1,91,83700,0,0,260,0,0,0,0,0,0,0,110,4.6,10,10,2,366,9,999999999,7,0.044,0,88,0.2,0,1 +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,-7,92,83600,0,0,256,0,0,0,0,0,0,0,110,4.6,10,10,0.8,150,9,999999999,7,0.044,0,88,0.2,0,1 +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,7,0.044,0,88,0.2,0,1 +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,7,0.044,0,88,0.2,0,1 +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,7,0.044,0,88,0.2,0,1 +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,7,0.044,0,88,0.2,0,1 +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,7,0.044,0,88,0.2,0,1 +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,7,0.044,0,88,0.2,0,1 +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,7,0.044,0,88,0.2,0,1 +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,7,0.044,0,88,0.2,0,1 +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,7,0.044,0,88,0.2,0,1 +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,4.6,30,9,999999999,7,0.044,0,88,0.2,0,1 +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,61,9,999999999,7,0.044,0,88,0.2,0,1 +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,8334,0,8396,3003,280,2.6,10,10,0.4,30,9,999999999,6,0.044,0,88,0.2,0,1 +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,6038,0,6086,2676,220,4.6,10,10,5.2,91,9,999999999,6,0.044,0,88,0.2,0,1 +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,54558,51745,21998,7343,220,6.2,4,4,9.6,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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,56155,94008,9111,1459,220,4.1,3,3,11.2,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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,58560,54141,18878,6744,220,3.6,3,3,11.2,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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,11433,0,11526,4765,230,2.6,3,3,12.8,77777,9,999999999,4,0.044,0,88,0.2,0,1 +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,25528,17764,16841,4983,190,3.6,3,3,12.8,77777,9,999999999,4,0.044,0,88,0.2,0,1 +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,16145,12048,7212,2148,0,0,3,3,16,77777,9,999999999,4,0.044,0,88,0.2,0,1 +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,441,7517,353,73,80,4.1,3,3,12.8,77777,9,999999999,4,0.044,0,88,0.2,0,1 +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,4,0.044,0,88,0.2,0,1 +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,78,83300,0,0,215,0,0,0,0,0,0,0,150,3.6,0,0,16,77777,9,999999999,4,0.044,0,88,0.2,0,1 +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,77777,9,999999999,4,0.044,0,88,0.2,0,1 +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,77777,9,999999999,4,0.044,0,88,0.2,0,1 +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,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,28665,26600,5745,1971,140,4.1,0,0,16,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,40341,84355,8147,1175,110,5.2,0,0,16,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,50762,90725,9034,1378,130,4.6,0,0,16,77777,9,999999999,4,0.044,0,88,0.2,0,1 +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,55411,93192,9114,1454,130,3.1,0,0,16,77777,9,999999999,4,0.044,0,88,0.2,0,1 +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,59099,54724,15124,5603,0,0,0,0,16,77777,9,999999999,4,0.044,0,88,0.2,0,1 +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,38301,32198,18158,6129,140,2.1,0,0,16,77777,9,999999999,4,0.044,0,88,0.2,0,1 +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,29701,29281,10124,3456,110,2.6,0,0,16,77777,9,999999999,4,0.044,0,88,0.2,0,1 +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,15952,9976,5558,1758,120,2.1,0,0,16,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,71,83700,0,0,228,0,0,0,0,0,0,0,200,6.2,4,3,16,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,71,83700,0,0,237,0,0,0,0,0,0,0,210,6.2,8,7,16,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,68,83800,0,0,236,0,0,0,0,0,0,0,200,4.1,6,6,16,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,-11.7,56,83500,0,0,232,0,0,0,0,0,0,0,240,4.6,6,4,16,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,6706,9,999999999,3,0.044,0,88,0.2,0,1 +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,4572,9,999999999,4,0.044,0,88,0.2,0,1 +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,6706,9,999999999,4,0.044,0,88,0.2,0,1 +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,4572,9,999999999,4,0.044,0,88,0.2,0,1 +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,4572,9,999999999,5,0.044,0,88,0.2,0,1 +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,45,83700,334,1405,254,238,809,45,25170,69495,7088,836,230,5.2,6,6,16,4572,9,999999999,5,0.044,0,88,0.2,0,1 +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,43687,45971,12428,4318,250,2.6,8,8,16,2743,9,999999999,6,0.044,0,88,0.2,0,1 +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,45464,39777,17667,6214,290,3.1,7,7,16,5486,9,999999999,6,0.044,0,88,0.2,0,1 +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,61518,54908,12416,4733,300,1.5,6,6,16,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,29,83900,660,1405,278,506,949,58,53640,92654,8712,1401,20,2.6,6,6,16,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,29,83900,577,1405,273,429,910,54,45509,87317,8231,1268,130,2.6,4,4,16,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,33029,76933,7773,1039,0,0,6,6,16,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,15060,52885,4223,621,0,0,5,5,16,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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,83,83800,0,0,234,0,0,0,0,0,0,0,150,4.6,0,0,16,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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,77777,9,999999999,5,0.044,0,88,0.2,0,1 +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,-7.2,83,83700,0,0,225,0,0,0,0,0,0,0,160,4.1,0,0,16,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,-6.7,86,83600,0,0,225,0,0,0,0,0,0,0,170,4.6,0,0,16,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,77777,9,999999999,7,0.044,0,88,0.2,0,1 +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,77777,9,999999999,7,0.044,0,88,0.2,0,1 +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,77777,9,999999999,8,0.044,0,88,0.2,0,1 +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,27814,24956,5832,1988,210,8.2,0,0,16,77777,9,999999999,8,0.044,0,88,0.2,0,1 +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,39886,84567,8161,1162,210,6.2,1,1,16,77777,9,999999999,8,0.044,0,88,0.2,0,1 +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,50407,91009,8908,1359,220,3.6,1,1,16,77777,9,999999999,8,0.044,0,88,0.2,0,1 +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,54996,93388,8987,1434,0,0,1,1,16,77777,9,999999999,8,0.044,0,88,0.2,0,1 +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,53340,92518,8581,1387,100,1.5,0,0,16,77777,9,999999999,8,0.044,0,88,0.2,0,1 +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,45183,87174,7951,1247,120,2.1,1,1,16,77777,9,999999999,8,0.044,0,88,0.2,0,1 +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,-1.7,31,84300,431,1405,312,301,838,43,32218,76904,6744,1004,130,3.1,1,1,16,77777,9,999999999,8,0.044,0,88,0.2,0,1 +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,43,84200,237,1405,296,136,661,24,14670,52389,3918,603,110,3.6,0,0,16,77777,9,999999999,8,0.044,0,88,0.2,0,1 +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,60,83800,35,785,292,0,0,0,0,0,0,0,170,4.1,6,5,16,77777,9,999999999,8,0.044,0,88,0.2,0,1 +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,77777,9,999999999,8,0.044,0,88,0.2,0,1 +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,77777,9,999999999,7,0.044,0,88,0.2,0,1 +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,77777,9,999999999,7,0.044,0,88,0.2,0,1 +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,43,83800,0,0,266,0,0,0,0,0,0,0,210,7.7,0,0,16,77777,9,999999999,7,0.044,0,88,0.2,0,1 +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,-4.4,48,83600,0,0,263,0,0,0,0,0,0,0,220,5.7,0,0,16,77777,9,999999999,7,0.044,0,88,0.2,0,1 +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,-4.4,48,83700,0,0,263,0,0,0,0,0,0,0,230,5.7,0,0,16,77777,9,999999999,7,0.044,0,88,0.2,0,1 +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,77777,9,999999999,7,0.044,0,88,0.2,0,1 +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,77777,9,999999999,7,0.045,0,88,0.2,0,1 +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,-5,46,83300,0,0,271,0,0,0,0,0,0,0,210,7.2,2,2,16,77777,9,999999999,7,0.045,0,88,0.2,0,1 +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,-5.6,44,83200,0,0,262,0,0,0,0,0,0,0,210,7.2,0,0,16,77777,9,999999999,7,0.045,0,88,0.2,0,1 +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,-6.1,42,83200,0,0,261,0,0,0,0,0,0,0,210,8.2,0,0,16,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,27301,23018,5283,1813,230,5.7,6,5,16,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,39884,84310,8601,1165,240,2.6,6,5,16,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,49792,90388,8913,1354,50,2.6,3,3,16,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,54409,92821,8993,1430,80,6.2,2,2,16,77777,9,999999999,7,0.045,0,88,0.2,0,1 +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,53253,92385,8869,1402,90,7.2,3,3,16,77777,9,999999999,7,0.045,0,88,0.2,0,1 +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,51034,46342,7982,3006,60,6.7,2,2,16,77777,9,999999999,7,0.045,0,88,0.2,0,1 +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,33789,31499,6535,2338,60,5.2,3,3,16,77777,9,999999999,7,0.045,0,88,0.2,0,1 +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,-2.2,41,83700,235,1406,294,140,617,37,16134,6255,4273,1399,60,4.6,2,2,16,77777,9,999999999,8,0.045,0,88,0.2,0,1 +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,77777,9,999999999,8,0.045,0,88,0.2,0,1 +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,77777,9,999999999,8,0.045,0,88,0.2,0,1 +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,77777,9,999999999,8,0.045,0,88,0.2,0,1 +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,77777,9,999999999,9,0.045,0,88,0.2,0,1 +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,77777,9,999999999,9,0.045,0,88,0.2,0,1 +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,72,83500,0,0,240,0,0,0,0,0,0,0,160,4.1,0,0,16,77777,9,999999999,8,0.045,0,88,0.2,0,1 +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,77777,9,999999999,8,0.045,0,88,0.2,0,1 +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,77777,9,999999999,8,0.045,0,88,0.2,0,1 +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,77777,9,999999999,8,0.045,0,88,0.2,0,1 +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,77777,9,999999999,8,0.045,0,88,0.2,0,1 +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,51,83500,0,0,232,0,0,0,0,0,0,0,150,2.6,0,0,16,77777,9,999999999,8,0.045,0,88,0.2,0,1 +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,77777,9,999999999,8,0.045,0,88,0.2,0,1 +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,-10,65,83900,0,0,222,0,0,0,0,0,0,0,170,5.2,0,0,16,77777,9,999999999,8,0.045,0,88,0.2,0,1 +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,71,83500,0,0,219,0,0,0,0,0,0,0,160,4.1,0,0,16,77777,9,999999999,9,0.045,0,88,0.2,0,1 +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,77777,9,999999999,9,0.045,0,88,0.2,0,1 +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,6706,9,999999999,9,0.045,0,88,0.2,0,1 +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,27305,23915,5496,1872,130,3.6,1,1,16,6706,9,999999999,9,0.045,0,88,0.2,0,1 +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,39147,83363,8310,1152,130,4.6,0,0,16,6706,9,999999999,10,0.045,0,88,0.2,0,1 +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,31,84000,612,1406,264,468,936,59,49548,90481,8912,1348,120,4.6,2,2,16,6706,9,999999999,10,0.045,0,88,0.2,0,1 +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,54219,93022,8851,1416,180,2.6,1,1,16,6706,9,999999999,10,0.045,0,88,0.2,0,1 +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,52452,91453,8727,1389,230,3.1,4,4,16,77777,9,999999999,10,0.045,0,88,0.2,0,1 +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,48081,48218,16208,5578,300,1.5,7,6,16,6706,9,999999999,10,0.045,0,88,0.2,0,1 +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,16956,5076,14246,4420,0,0,5,4,16,6706,9,999999999,10,0.045,0,88,0.2,0,1 +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,14878,10684,7686,2194,80,1.5,2,2,16,77777,9,999999999,9,0.045,0,88,0.2,0,1 +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,77777,9,999999999,9,0.045,0,88,0.2,0,1 +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,77777,9,999999999,9,0.045,0,88,0.2,0,1 +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,77777,9,999999999,9,0.045,0,88,0.2,0,1 +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,77777,9,999999999,9,0.045,0,88,0.2,0,1 +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,77777,9,999999999,9,0.045,0,88,0.2,0,1 +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,51,83400,0,0,252,0,0,0,0,0,0,0,210,5.8,1,1,16,77777,9,999999999,9,0.045,0,88,0.2,0,1 +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,-7,59,83600,0,0,264,0,0,0,0,0,0,0,190,5.3,5,5,16,77777,9,999999999,9,0.045,0,88,0.2,0,1 +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,77777,9,999999999,10,0.045,0,88,0.2,0,1 +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,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,40,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,4603,0,2475,740,210,4.1,2,1,120,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,21167,17172,5595,1897,190,5.2,3,1,120,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,-7.8,18,83400,491,1407,299,333,817,48,35420,76460,7437,1115,190,5.2,1,0,112,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,46073,84381,8632,1328,210,4.1,1,0,120,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,-7.8,13,83300,662,1407,320,474,878,60,50265,85815,8998,1420,310,2.1,1,0,120,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,49915,86961,8874,1394,340,3.6,1,0,120,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,43328,84763,7810,1228,10,4.1,0,0,120,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,30296,73078,6596,988,40,4.6,0,0,120,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,21,83200,232,1407,309,129,607,29,13766,47395,4687,618,80,3.6,0,0,104,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,26,83200,33,762,295,11,137,5,0,0,0,0,50,3.1,0,0,104,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,35,83200,0,0,277,0,0,0,0,0,0,0,130,3.1,0,0,80,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,48,83200,0,0,260,0,0,0,0,0,0,0,180,3.6,0,0,48,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,48,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,5029,27406,2162,307,190,4.1,0,0,112,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,21591,66679,4214,708,200,4.1,0,0,112,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,35448,77525,6997,1087,190,3.6,1,1,112,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,16,82900,605,1407,298,429,885,48,45691,85535,7337,1233,200,3.1,1,1,112,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,48949,82952,9707,1451,120,2.1,1,1,112,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,49198,88782,6575,1191,30,1.5,1,1,112,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,47285,46880,12154,4390,310,5.2,5,5,112,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,32327,33597,9660,3286,10,4.6,5,5,112,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,-11.7,13,82900,231,1407,300,135,672,25,14406,52198,4068,600,20,3.6,1,1,112,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,0,0,0,0,360,2.6,1,1,112,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,4267,9,999999999,5,0.045,0,88,0.2,0,1 +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,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,4267,9,999999999,5,0.045,0,88,0.2,0,1 +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,4267,9,999999999,6,0.045,0,88,0.2,0,1 +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,5486,9,999999999,6,0.046,0,88,0.2,0,1 +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,77777,9,999999999,6,0.046,0,88,0.2,0,1 +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,77777,9,999999999,6,0.046,0,88,0.2,0,1 +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,77777,9,999999999,6,0.046,0,88,0.2,0,1 +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,77777,9,999999999,6,0.046,0,88,0.2,0,1 +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,77777,9,999999999,6,0.046,0,88,0.2,0,1 +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,1,1,96,77777,9,999999999,6,0.046,0,88,0.2,0,1 +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,36,83400,96,1302,252,33,169,21,3698,0,2358,699,240,1.5,1,1,112,77777,9,999999999,6,0.046,0,88,0.2,0,1 +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,18738,14702,5797,1945,200,4.1,1,1,112,77777,9,999999999,6,0.046,0,88,0.2,0,1 +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,20,83400,483,1408,284,297,670,66,35203,33428,7842,2841,190,3.6,2,1,112,77777,9,999999999,6,0.046,0,88,0.2,0,1 +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,39881,34376,15578,5530,200,3.1,8,3,112,77777,9,999999999,6,0.046,0,88,0.2,0,1 +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,51088,45870,17139,6184,120,3.1,7,2,112,77777,9,999999999,6,0.046,0,88,0.2,0,1 +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,47391,41200,19637,6813,90,3.1,8,3,112,77777,9,999999999,6,0.046,0,88,0.2,0,1 +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,40587,38152,13540,4804,110,2.6,7,2,112,77777,9,999999999,6,0.046,0,88,0.2,0,1 +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,-11.1,14,83100,422,1408,310,229,441,96,25957,23879,10920,3622,350,3.6,9,4,112,77777,9,999999999,6,0.046,0,88,0.2,0,1 +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,10282,3171,8475,2293,350,3.1,10,6,96,7620,9,999999999,6,0.046,0,88,0.2,0,1 +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,0,0,0,0,340,2.1,10,9,80,7925,9,999999999,6,0.046,0,88,0.2,0,1 +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,7925,9,999999999,6,0.046,0,88,0.2,0,1 +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,10,10,48,7925,9,999999999,6,0.046,0,88,0.2,0,1 +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,7925,9,999999999,6,0.046,0,88,0.2,0,1 +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,7925,9,999999999,6,0.046,0,88,0.2,0,1 +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,7925,9,999999999,6,0.046,0,88,0.2,0,1 +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,4877,9,999999999,6,0.046,0,88,0.2,0,1 +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,4877,9,999999999,6,0.046,0,88,0.2,0,1 +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,56,83000,0,0,291,0,0,0,0,0,0,0,170,2.1,10,10,48,4877,9,999999999,6,0.046,0,88,0.2,0,1 +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,4572,9,999999999,6,0.046,0,88,0.2,0,1 +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,4572,9,999999999,6,0.046,0,88,0.2,0,1 +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,5486,9,999999999,6,0.046,0,88,0.2,0,1 +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,5486,9,999999999,6,0.046,0,88,0.2,0,1 +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,5486,9,999999999,6,0.046,0,88,0.2,0,1 +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,5486,9,999999999,6,0.046,0,88,0.2,0,1 +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,3301,0,2758,778,110,2.1,5,5,112,77777,9,999999999,6,0.046,0,88,0.2,0,1 +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,37,83300,305,1408,289,204,691,54,23405,20107,6211,2059,120,2.6,4,4,112,77777,9,999999999,6,0.046,0,88,0.2,0,1 +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,31122,28898,11178,3874,340,2.6,4,3,112,77777,9,999999999,6,0.046,0,88,0.2,0,1 +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,50650,47672,11463,4248,300,5.7,2,2,112,77777,9,999999999,6,0.046,0,88,0.2,0,1 +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,46687,39533,17972,6413,160,2.1,3,3,112,77777,9,999999999,6,0.046,0,88,0.2,0,1 +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,54729,48951,10449,3975,130,2.6,2,2,112,77777,9,999999999,6,0.046,0,88,0.2,0,1 +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,-7.8,18,83200,561,1408,314,313,536,100,36506,32543,11702,4239,160,2.1,4,4,104,77777,9,999999999,6,0.046,0,88,0.2,0,1 +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,22027,17786,9847,3333,70,8.2,4,4,104,77777,9,999999999,6,0.046,0,88,0.2,0,1 +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,7292,1484,4683,1502,80,7.7,4,4,104,77777,9,999999999,7,0.046,0,88,0.2,0,1 +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,0,0,0,0,60,5.2,4,4,80,77777,9,999999999,7,0.046,0,88,0.2,0,1 +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,77777,9,999999999,7,0.046,0,88,0.2,0,1 +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,488,9,999999999,7,0.046,0,88,0.2,0,1 +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,6096,9,999999999,7,0.046,0,88,0.2,0,1 +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,396,9,999999999,7,0.046,0,88,0.2,0,1 +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,305,9,999999999,7,0.046,0,88,0.2,0,1 +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,213,9,999999999,7,0.046,0,88,0.2,0,1 +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,7,0.046,0,88,0.2,0,1 +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,7,0.046,0,88,0.2,0,1 +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,7,0.046,0,88,0.2,0,1 +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,7,0.046,0,88,0.2,0,1 +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,7,0.046,0,88,0.2,0,1 +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,10,10,0.8,30,9,999999999,7,0.046,0,88,0.2,0,1 +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,7,0.046,0,88,0.2,0,1 +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,10,9,3.2,61,9,999999999,8,0.046,0,88,0.2,0,1 +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,1067,0,1074,408,0,0,10,10,2.8,61,9,999999999,8,0.046,0,88,0.2,0,1 +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,4543,0,4576,1802,70,1.5,10,10,4,183,9,999999999,8,0.046,0,88,0.2,0,1 +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,7513,0,7573,3145,10,3.1,10,10,1.6,122,9,999999999,8,0.046,0,88,0.2,0,1 +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,9714,0,9793,4202,40,2.6,10,10,2.4,152,9,999999999,8,0.046,0,88,0.2,0,1 +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,-2.2,83,83300,650,1409,284,126,0,126,12802,0,12910,5438,30,2.1,10,10,6.4,244,9,999999999,9,0.046,0,88,0.2,0,1 +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,18677,0,18832,7091,80,4.1,10,10,9.6,6096,9,999999999,9,0.046,0,88,0.2,0,1 +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,39457,35867,13932,4909,360,4.6,10,6,16,6096,9,999999999,9,0.046,0,88,0.2,0,1 +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,17531,7419,13481,4213,320,4.6,10,8,12.8,7315,9,999999999,9,0.046,0,88,0.2,0,1 +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,-2.8,79,83200,228,1409,266,84,71,72,9135,1878,7859,2189,350,4.6,10,7,14.4,7315,9,999999999,9,0.046,0,88,0.2,0,1 +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,0,0,0,0,360,3.6,10,9,11.2,4267,9,999999999,9,0.046,0,88,0.2,0,1 +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,10,0.046,0,88,0.2,0,1 +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,10,0.046,0,88,0.2,0,1 +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,10,10,9.6,366,9,999999999,10,0.046,0,88,0.2,0,1 +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,10,9,9.6,4267,9,999999999,10,0.046,0,88,0.2,0,1 +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,10,10,8,366,9,999999999,10,0.046,0,88,0.2,0,1 +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,10,10,8,366,9,999999999,11,0.046,0,88,0.2,0,1 +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,2,2,8,77777,9,999999999,11,0.046,0,88,0.2,0,1 +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,77777,9,999999999,11,0.046,0,88,0.2,0,1 +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,10,9,8,4572,9,999999999,11,0.046,0,88,0.2,0,1 +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,11,0.046,0,88,0.2,0,1 +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,12,0.046,0,88,0.2,0,1 +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,12,0.046,0,88,0.2,0,1 +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,11,0.046,0,88,0.2,0,1 +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,1676,9,999999999,11,0.046,0,88,0.2,0,1 +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,1261,0,1269,467,360,2.6,10,10,6.4,244,9,999999999,11,0.046,0,88,0.2,0,1 +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,4443,0,4475,1763,20,1.5,10,10,1,152,9,999999999,11,0.046,0,88,0.2,0,1 +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,7511,0,7570,3137,360,2.1,10,10,0.8,122,9,999999999,10,0.046,0,88,0.2,0,1 +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,11530,0,11625,4817,70,2.6,10,10,1.2,244,9,999999999,10,0.046,0,88,0.2,0,1 +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,12700,0,12806,5392,360,4.1,10,10,4.8,366,9,999999999,10,0.046,0,88,0.2,0,1 +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,14922,0,15046,6050,350,2.6,10,10,11.2,427,9,999999999,9,0.046,0,88,0.2,0,1 +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,12912,0,13017,5110,320,2.1,10,10,16,671,9,999999999,9,0.046,0,88,0.2,0,1 +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,7777,0,7836,3083,360,3.6,10,10,16,396,9,999999999,9,0.046,0,88,0.2,0,1 +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,4710,0,4744,1686,90,1.5,10,10,16,427,9,999999999,9,0.046,0,88,0.2,0,1 +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,0,0,0,0,140,1.5,10,10,12.8,335,9,999999999,8,0.046,0,88,0.2,0,1 +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,8,0.046,0,88,0.2,0,1 +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,8,0.046,0,88,0.2,0,1 +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,8,0.046,0,88,0.2,0,1 +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,7,0.046,0,88,0.2,0,1 +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,7,0.046,0,88,0.2,0,1 +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,95,83400,0,0,229,0,0,0,0,0,0,0,110,3.1,0,0,11.2,77777,9,999999999,7,0.046,0,88,0.2,0,1 +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,-6.1,91,83500,0,0,226,0,0,0,0,0,0,0,130,2.1,0,0,16,77777,9,999999999,6,0.046,0,88,0.2,0,1 +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,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,6706,9,999999999,5,0.045,0,88,0.2,0,1 +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,2343,0,2124,621,150,4.6,9,7,112,6706,9,999999999,5,0.045,0,88,0.2,0,1 +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,10343,3126,8481,2601,110,3.1,8,8,112,6706,9,999999999,5,0.045,0,88,0.2,0,1 +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,18289,3955,16143,5045,130,4.1,9,9,112,4877,9,999999999,5,0.045,0,88,0.2,0,1 +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,14784,4004,11654,4290,150,4.6,9,9,96,4572,9,999999999,5,0.045,0,88,0.2,0,1 +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,-5.6,31,83300,645,1409,300,358,468,144,41243,33018,16658,6002,180,7.2,7,6,96,6706,9,999999999,5,0.045,0,88,0.2,0,1 +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,32631,18689,20192,6906,350,5.2,8,5,112,6706,9,999999999,5,0.045,0,88,0.2,0,1 +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,42487,39873,11998,4321,350,4.6,2,2,64,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,25262,22551,10572,3516,360,5.2,3,3,48,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,10126,3827,6027,1829,10,3.1,4,4,16,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,-2.2,83,83200,31,763,259,11,19,10,0,0,0,0,350,2.1,6,4,16,3962,9,999999999,5,0.045,0,88,0.2,0,1 +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,3962,9,999999999,5,0.045,0,88,0.2,0,1 +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,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,396,9,999999999,5,0.045,0,88,0.2,0,1 +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,427,9,999999999,5,0.045,0,88,0.2,0,1 +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,488,9,999999999,5,0.045,0,88,0.2,0,1 +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,305,9,999999999,5,0.045,0,88,0.2,0,1 +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,5,0.045,0,88,0.2,0,1 +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,5,0.045,0,88,0.2,0,1 +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,5,0.045,0,88,0.2,0,1 +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,5,0.045,0,88,0.2,0,1 +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,274,9,999999999,5,0.045,0,88,0.2,0,1 +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,5,0.045,0,88,0.2,0,1 +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,5,0.045,0,88,0.2,0,1 +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,1164,0,1171,430,60,2.6,10,10,9.6,1402,9,999999999,5,0.045,0,88,0.2,0,1 +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,7566,736,7022,2245,80,2.6,10,9,6.4,427,9,999999999,5,0.045,0,88,0.2,0,1 +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,10120,0,10199,3940,10,1.5,10,10,6.4,427,9,999999999,5,0.045,0,88,0.2,0,1 +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,20734,3490,18564,6245,80,2.1,7,7,16,1280,9,999999999,4,0.045,0,88,0.2,0,1 +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,40814,27132,24818,7977,70,3.6,8,8,19.2,2134,9,999999999,4,0.045,0,88,0.2,0,1 +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,14421,0,14540,5875,70,3.1,10,10,19.2,1676,9,999999999,4,0.045,0,88,0.2,0,1 +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,26593,5880,23654,6983,350,1.5,10,9,19.2,1280,9,999999999,4,0.045,0,88,0.2,0,1 +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,18731,11529,11934,3848,50,2.6,10,7,19.2,1524,9,999999999,4,0.045,0,88,0.2,0,1 +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,11927,2944,10817,2465,0,0,8,8,19.2,3048,9,999999999,4,0.045,0,88,0.2,0,1 +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,0,0,0,0,160,3.6,5,2,19.2,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,4,0.045,0,88,0.2,0,1 +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,4,0.045,0,88,0.2,0,1 +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,-7.8,79,84100,0,0,224,0,0,0,0,0,0,0,200,3.1,0,0,32,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,3377,0,1805,535,180,4.1,5,2,112,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,16990,13221,6288,2043,210,3.1,3,3,112,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,34783,33381,6708,2430,190,5.2,1,1,112,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,44658,42866,14247,5072,200,4.6,3,3,112,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,55353,50827,10792,4090,180,4.1,2,2,112,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,42787,37185,11326,4255,30,1.5,3,3,112,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,43611,43418,12770,4538,290,4.1,6,2,112,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,26874,25592,7932,2755,300,9.8,3,3,96,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,13106,5505,4683,1494,330,5.2,4,2,96,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,0,0,0,0,310,8.2,4,3,96,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,77777,9,999999999,2,0.045,0,88,0.2,0,1 +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,77777,9,999999999,2,0.045,0,88,0.2,0,1 +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,77777,9,999999999,2,0.045,0,88,0.2,0,1 +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,-15.6,39,84100,0,0,218,0,0,0,0,0,0,0,350,3.1,0,0,32,77777,9,999999999,2,0.045,0,88,0.2,0,1 +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,32,77777,9,999999999,2,0.045,0,88,0.2,0,1 +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,48,84200,0,0,213,0,0,0,0,0,0,0,0,0,0,0,32,77777,9,999999999,2,0.045,0,88,0.2,0,1 +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,48,77777,9,999999999,2,0.045,0,88,0.2,0,1 +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,48,77777,9,999999999,2,0.045,0,88,0.2,0,1 +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,77777,9,999999999,2,0.045,0,88,0.2,0,1 +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,58,84300,0,0,206,0,0,0,0,0,0,0,180,2.6,0,0,48,77777,9,999999999,2,0.045,0,88,0.2,0,1 +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,60,84300,0,0,204,0,0,0,0,0,0,0,170,3.1,0,0,48,77777,9,999999999,2,0.045,0,88,0.2,0,1 +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,67,84400,0,0,200,0,0,0,0,0,0,0,130,2.6,0,0,48,77777,9,999999999,2,0.045,0,88,0.2,0,1 +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,77777,9,999999999,2,0.045,0,88,0.2,0,1 +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,3521,19722,1672,238,170,4.6,0,0,777.7,77777,9,999999999,2,0.045,0,88,0.2,0,1 +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,-16.1,37,84500,285,1411,217,179,758,26,19125,62430,4218,679,150,6.2,0,0,777.7,77777,9,999999999,2,0.045,0,88,0.2,0,1 +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,31,84500,460,1411,229,322,870,38,34325,80220,5975,985,150,4.1,1,0,777.7,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,45849,89618,6922,1173,150,5.7,1,0,777.7,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,51826,94551,7017,1231,150,3.1,0,0,120,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,50893,93981,6881,1209,330,3.1,0,0,120,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,43600,89335,6359,1095,350,3.1,0,0,120,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,30714,78083,5250,882,350,5.2,0,0,96,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,14226,52793,3758,575,330,4.6,0,0,88,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,49,84100,31,764,233,12,192,4,0,0,0,0,310,2.6,0,0,88,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,56,84000,0,0,228,0,0,0,0,0,0,0,310,2.1,0,0,32,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,-10,65,84000,0,0,222,0,0,0,0,0,0,0,0,0,1,0,32,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,61,84000,0,0,234,0,0,0,0,0,0,0,160,2.1,5,3,32,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,-10,65,83900,0,0,240,0,0,0,0,0,0,0,160,2.1,9,7,32,6706,9,999999999,3,0.045,0,88,0.2,0,1 +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,68,83800,0,0,233,0,0,0,0,0,0,0,190,2.1,8,5,32,6706,9,999999999,3,0.045,0,88,0.2,0,1 +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,68,83700,0,0,238,0,0,0,0,0,0,0,120,2.1,10,7,32,6706,9,999999999,3,0.045,0,88,0.2,0,1 +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,10,8,32,6706,9,999999999,3,0.045,0,88,0.2,0,1 +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,68,83500,0,0,254,0,0,0,0,0,0,0,0,0,10,10,32,6706,9,999999999,4,0.045,0,88,0.2,0,1 +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,75,83400,0,0,250,0,0,0,0,0,0,0,290,1.5,10,10,32,6706,9,999999999,4,0.045,0,88,0.2,0,1 +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,6096,9,999999999,4,0.045,0,88,0.2,0,1 +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,68,83200,0,0,254,0,0,0,0,0,0,0,170,1.5,10,10,32,5486,9,999999999,4,0.045,0,88,0.2,0,1 +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,68,83000,0,0,254,0,0,0,0,0,0,0,120,2.1,10,10,32,5486,9,999999999,4,0.045,0,88,0.2,0,1 +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,-8.9,71,82900,0,0,258,0,0,0,0,0,0,0,140,2.1,10,10,32,4572,9,999999999,4,0.045,0,88,0.2,0,1 +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,4572,9,999999999,4,0.045,0,88,0.2,0,1 +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,-9.4,68,82700,72,1141,250,17,14,16,1901,0,1793,524,340,2.1,9,9,112,4572,9,999999999,4,0.045,0,88,0.2,0,1 +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,59,82600,282,1411,254,83,0,83,8194,0,8254,2679,60,1.5,10,9,112,3658,9,999999999,4,0.045,0,88,0.2,0,1 +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,12120,0,12214,4430,330,5.7,10,10,112,4572,9,999999999,4,0.045,0,88,0.2,0,1 +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,21508,4926,18438,6167,10,2.6,10,9,112,4572,9,999999999,4,0.045,0,88,0.2,0,1 +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,47,82600,637,1411,264,425,315,282,46285,30602,30893,8809,70,3.1,10,9,96,3962,9,999999999,4,0.045,0,88,0.2,0,1 +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,24378,7828,19250,6621,150,2.1,10,9,96,3962,9,999999999,4,0.045,0,88,0.2,0,1 +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,40825,38818,11031,3998,310,2.6,5,2,96,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,12367,2944,10474,3474,310,7.7,9,9,96,3962,9,999999999,4,0.045,0,88,0.2,0,1 +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,16,82800,226,1411,274,94,206,60,10383,4497,6649,1953,280,8.2,7,4,96,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,0,0,0,0,310,9.8,4,4,80,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,32,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,48,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,-13.3,48,83800,69,1117,229,18,89,12,2055,0,1372,417,160,3.6,3,3,96,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,15529,9703,4562,1533,160,3.6,2,2,112,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,35814,37613,10480,3599,190,3.1,3,3,112,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,47136,44454,9333,3480,150,3.1,2,2,112,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,44403,38690,11879,4453,150,6.7,3,3,112,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,49488,45409,11968,4464,160,7.7,2,2,112,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,34045,29054,15090,5184,140,8.2,3,3,112,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,27631,26521,8033,2783,140,5.2,4,2,112,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,12076,4800,4682,1492,140,3.1,5,3,96,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,0,0,0,0,360,1,6,6,64,5486,9,999999999,5,0.045,0,88,0.2,0,1 +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,8,6,32,7010,9,999999999,5,0.045,0,88,0.2,0,1 +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,-8.3,49,83500,0,0,253,0,0,0,0,0,0,0,160,1.5,5,4,32,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,54,83500,0,0,242,0,0,0,0,0,0,0,90,2.1,4,4,32,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,56,83500,0,0,240,0,0,0,0,0,0,0,350,1,4,4,32,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,5182,9,999999999,5,0.045,0,88,0.2,0,1 +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,77777,9,999999999,5,0.046,0,88,0.2,0,1 +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,4267,9,999999999,6,0.046,0,88,0.2,0,1 +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,3962,9,999999999,6,0.046,0,88,0.2,0,1 +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,4267,9,999999999,6,0.046,0,88,0.2,0,1 +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,3353,9,999999999,6,0.046,0,88,0.2,0,1 +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,1,1,32,77777,9,999999999,6,0.046,0,88,0.2,0,1 +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,77777,9,999999999,6,0.046,0,88,0.2,0,1 +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,-8.3,75,83300,67,1118,228,25,227,12,2844,0,1367,413,160,2.1,1,1,96,77777,9,999999999,6,0.046,0,88,0.2,0,1 +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,17136,10595,4555,1528,0,0,1,1,96,77777,9,999999999,6,0.046,0,88,0.2,0,1 +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,34464,31708,5795,2105,340,1.5,1,1,96,77777,9,999999999,6,0.046,0,88,0.2,0,1 +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,41927,79033,9105,1293,20,2.1,1,1,96,77777,9,999999999,6,0.046,0,88,0.2,0,1 +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,46514,82329,8609,1354,10,3.1,1,1,88,77777,9,999999999,6,0.046,0,88,0.2,0,1 +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,48530,43721,12173,4533,20,2.6,3,3,88,77777,9,999999999,6,0.046,0,88,0.2,0,1 +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,41723,38352,8390,3115,10,3.1,2,2,80,77777,9,999999999,6,0.046,0,88,0.2,0,1 +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,25894,21089,15805,4590,60,4.1,4,4,64,77777,9,999999999,6,0.046,0,88,0.2,0,1 +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,11398,5537,7954,2185,350,6.2,4,4,80,77777,9,999999999,6,0.046,0,88,0.2,0,1 +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,0,0,0,0,350,5.2,6,6,64,3658,9,999999999,6,0.046,0,88,0.2,0,1 +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,6096,9,999999999,6,0.046,0,88,0.2,0,1 +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,3962,9,999999999,6,0.046,0,88,0.2,0,1 +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,2,2,32,77777,9,999999999,6,0.046,0,88,0.2,0,1 +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,77777,9,999999999,6,0.046,0,88,0.2,0,1 +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,1036,9,999999999,6,0.046,0,88,0.2,0,1 +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,975,9,999999999,6,0.046,0,88,0.2,0,1 +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,77777,9,999999999,6,0.046,0,88,0.2,0,1 +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,77777,9,999999999,6,0.046,0,88,0.2,0,1 +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,77777,9,999999999,6,0.046,0,88,0.2,0,1 +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,-7.8,79,83100,0,0,232,0,0,0,0,0,0,0,210,1.5,7,2,24,77777,9,999999999,6,0.046,0,88,0.2,0,1 +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,77777,9,999999999,6,0.046,0,88,0.2,0,1 +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,77777,9,999999999,6,0.046,0,88,0.2,0,1 +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,77777,9,999999999,6,0.046,0,88,0.2,0,1 +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,77777,9,999999999,5,0.046,0,88,0.2,0,1 +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,-8.3,75,83200,65,1094,233,18,57,15,2005,0,1674,484,180,2.1,8,3,80,77777,9,999999999,5,0.046,0,88,0.2,0,1 +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,14942,10375,6874,2158,190,4.1,7,2,96,77777,9,999999999,5,0.046,0,88,0.2,0,1 +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,32625,32605,10142,3489,220,3.6,4,3,80,77777,9,999999999,5,0.046,0,88,0.2,0,1 +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,43051,39821,9872,3658,0,0,2,2,80,77777,9,999999999,5,0.046,0,88,0.2,0,1 +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,46937,42223,15553,5616,320,4.1,3,3,96,77777,9,999999999,5,0.046,0,88,0.2,0,1 +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,53843,48351,8406,3210,310,9.3,1,1,112,77777,9,999999999,5,0.046,0,88,0.2,0,1 +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,17,83300,551,1412,264,352,740,63,42458,39348,7616,2840,320,8.2,1,1,112,77777,9,999999999,4,0.046,0,88,0.2,0,1 +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,18,83300,415,1412,260,233,562,68,27083,25797,7925,2749,320,8.2,1,1,112,77777,9,999999999,4,0.046,0,88,0.2,0,1 +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,13215,4833,4261,1377,320,7.7,1,1,96,77777,9,999999999,4,0.046,0,88,0.2,0,1 +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,25,83400,32,765,239,10,96,6,0,0,0,0,340,4.6,0,0,80,77777,9,999999999,4,0.046,0,88,0.2,0,1 +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,-15,27,83500,0,0,235,0,0,0,0,0,0,0,320,2.6,0,0,48,77777,9,999999999,4,0.046,0,88,0.2,0,1 +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,77777,9,999999999,4,0.046,0,88,0.2,0,1 +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,77777,9,999999999,4,0.046,0,88,0.2,0,1 +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,77777,9,999999999,3,0.046,0,88,0.2,0,1 +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,77777,9,999999999,3,0.046,0,88,0.2,0,1 +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,77777,9,999999999,3,0.046,0,88,0.2,0,1 +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,77777,9,999999999,3,0.046,0,88,0.2,0,1 +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,77777,9,999999999,3,0.046,0,88,0.2,0,1 +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,77777,9,999999999,3,0.046,0,88,0.2,0,1 +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,-16.7,35,83500,0,0,226,0,0,0,0,0,0,0,140,2.1,3,3,48,77777,9,999999999,3,0.046,0,88,0.2,0,1 +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,77777,9,999999999,3,0.046,0,88,0.2,0,1 +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,77777,9,999999999,2,0.046,0,88,0.2,0,1 +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,77777,9,999999999,2,0.046,0,88,0.2,0,1 +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,77777,9,999999999,3,0.046,0,88,0.2,0,1 +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,2201,0,1875,520,320,1.5,9,4,96,77777,9,999999999,3,0.046,0,88,0.2,0,1 +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,12617,7218,8107,2423,260,1.5,8,3,96,77777,9,999999999,3,0.046,0,88,0.2,0,1 +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,-13.3,32,83400,448,1412,244,270,564,91,30935,30713,10461,3571,340,3.1,5,2,80,77777,9,999999999,3,0.046,0,88,0.2,0,1 +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,38235,34624,12595,4533,300,2.1,4,3,80,77777,9,999999999,3,0.046,0,88,0.2,0,1 +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,46907,42469,14802,5382,350,3.1,7,2,80,77777,9,999999999,3,0.046,0,88,0.2,0,1 +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,-15.6,18,83300,624,1412,263,418,706,106,49158,45522,12508,4634,10,4.1,4,3,96,77777,9,999999999,3,0.046,0,88,0.2,0,1 +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,46318,43841,7838,2918,360,3.1,0,0,96,77777,9,999999999,3,0.046,0,88,0.2,0,1 +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,29966,28718,6950,2445,310,10.3,1,1,96,77777,9,999999999,3,0.046,0,88,0.2,0,1 +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,12940,6520,5416,1681,300,10.3,2,2,80,77777,9,999999999,3,0.046,0,88,0.2,0,1 +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,0,0,0,0,300,8.8,3,3,80,77777,9,999999999,3,0.046,0,88,0.2,0,1 +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,77777,9,999999999,3,0.046,0,88,0.2,0,1 +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,77777,9,999999999,4,0.046,0,88,0.2,0,1 +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,77777,9,999999999,4,0.046,0,88,0.2,0,1 +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,77777,9,999999999,4,0.046,0,88,0.2,0,1 +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,77777,9,999999999,4,0.046,0,88,0.2,0,1 +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,4572,9,999999999,4,0.046,0,88,0.2,0,1 +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,77777,9,999999999,4,0.046,0,88,0.2,0,1 +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,-15,41,83600,0,0,218,0,0,0,0,0,0,0,170,3.1,0,0,48,77777,9,999999999,4,0.046,0,88,0.2,0,1 +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,-15,41,83600,0,0,218,0,0,0,0,0,0,0,170,4.1,0,0,48,77777,9,999999999,4,0.046,0,88,0.2,0,1 +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,39,83600,0,0,220,0,0,0,0,0,0,0,180,4.6,0,0,48,77777,9,999999999,4,0.046,0,88,0.2,0,1 +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,77777,9,999999999,4,0.046,0,88,0.2,0,1 +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,-15.6,39,83500,0,0,218,0,0,0,0,0,0,0,180,3.1,0,0,48,77777,9,999999999,4,0.046,0,88,0.2,0,1 +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,48,83600,0,0,213,0,0,0,0,0,0,0,170,2.6,0,0,48,77777,9,999999999,4,0.046,0,88,0.2,0,1 +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,80,77777,9,999999999,4,0.046,0,88,0.2,0,1 +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,-15,41,83700,61,1048,218,22,174,11,2501,0,1252,376,190,2.6,0,0,112,77777,9,999999999,4,0.046,0,88,0.2,0,1 +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,-13.9,30,83700,268,1412,236,148,577,39,17214,10714,4545,1515,220,3.1,1,0,112,77777,9,999999999,4,0.046,0,88,0.2,0,1 +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,33198,32416,7553,2686,190,4.6,3,1,112,77777,9,999999999,4,0.046,0,88,0.2,0,1 +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,40874,38266,13015,4657,200,2.6,6,2,112,77777,9,999999999,5,0.046,0,88,0.2,0,1 +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,47252,42296,11970,4471,150,2.1,6,3,112,77777,9,999999999,5,0.046,0,88,0.2,0,1 +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,19,83500,624,1412,298,336,419,151,38395,30354,17329,6086,360,4.6,7,4,112,8230,9,999999999,5,0.046,0,88,0.2,0,1 +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,-8.9,23,83500,550,1412,292,317,439,145,35783,30829,16438,5521,310,12.9,6,4,112,8230,9,999999999,5,0.046,0,88,0.2,0,1 +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,26352,24846,11303,3683,330,7.7,7,4,112,77777,9,999999999,5,0.046,0,88,0.2,0,1 +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,8775,2292,7155,2057,310,10.3,8,4,96,77777,9,999999999,5,0.046,0,88,0.2,0,1 +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,0,0,0,0,310,5.7,7,4,80,7620,9,999999999,5,0.046,0,88,0.2,0,1 +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,7620,9,999999999,5,0.046,0,88,0.2,0,1 +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,7620,9,999999999,5,0.046,0,88,0.2,0,1 +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,7620,9,999999999,5,0.046,0,88,0.2,0,1 +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,7620,9,999999999,5,0.046,0,88,0.2,0,1 +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,7620,9,999999999,5,0.046,0,88,0.2,0,1 +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,77777,9,999999999,5,0.046,0,88,0.2,0,1 +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,77777,9,999999999,5,0.046,0,88,0.2,0,1 +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,77777,9,999999999,5,0.046,0,88,0.2,0,1 +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,4572,9,999999999,5,0.046,0,88,0.2,0,1 +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,4572,9,999999999,5,0.046,0,88,0.2,0,1 +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,77777,9,999999999,5,0.046,0,88,0.2,0,1 +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,45,84000,0,0,251,0,0,0,0,0,0,0,200,2.1,6,5,48,3658,9,999999999,5,0.046,0,88,0.2,0,1 +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,49,84000,0,0,252,0,0,0,0,0,0,0,220,3.6,7,7,48,3962,9,999999999,5,0.046,0,88,0.2,0,1 +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,41,84100,0,0,265,0,0,0,0,0,0,0,250,4.1,8,8,80,3962,9,999999999,5,0.046,0,88,0.2,0,1 +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,2025,0,1353,399,190,3.6,7,4,80,77777,9,999999999,5,0.046,0,88,0.2,0,1 +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,-9.4,31,84200,266,1413,276,89,46,80,9752,1640,8798,2533,190,5.7,9,6,80,6401,9,999999999,5,0.046,0,88,0.2,0,1 +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,21725,16072,11811,3922,120,3.1,9,6,80,6401,9,999999999,5,0.046,0,88,0.2,0,1 +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,26492,15249,16714,5679,160,3.6,9,8,80,6401,9,999999999,5,0.046,0,88,0.2,0,1 +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,40750,34125,14567,5306,130,2.6,7,5,80,6401,9,999999999,5,0.046,0,88,0.2,0,1 +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,46701,42182,15513,5569,140,2.1,8,4,80,6401,9,999999999,5,0.046,0,88,0.2,0,1 +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,38325,35333,12628,4484,40,2.1,5,2,80,77777,9,999999999,5,0.046,0,88,0.2,0,1 +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,24688,22091,10569,3499,80,2.6,6,4,80,6401,9,999999999,5,0.046,0,88,0.2,0,1 +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,11688,5039,9153,2353,100,2.6,6,4,80,5486,9,999999999,5,0.046,0,88,0.2,0,1 +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,0,0,0,0,90,3.1,8,4,80,5486,9,999999999,5,0.046,0,88,0.2,0,1 +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,77777,9,999999999,5,0.046,0,88,0.2,0,1 +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,77777,9,999999999,5,0.046,0,88,0.2,0,1 +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,77777,9,999999999,5,0.046,0,88,0.2,0,1 +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,77777,9,999999999,5,0.046,0,88,0.2,0,1 +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,77777,9,999999999,5,0.046,0,88,0.2,0,1 +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,77777,9,999999999,5,0.046,0,88,0.2,0,1 +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,77777,9,999999999,5,0.046,0,88,0.2,0,1 +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,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,77777,9,999999999,5,0.045,0,88,0.2,0,1 +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,39,83900,58,1024,248,24,260,9,2558,13079,1501,188,180,4.6,1,1,96,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,-9.4,31,83900,264,1413,267,135,505,40,15636,8892,4642,1538,220,2.6,2,2,96,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,22,83800,442,1413,279,291,827,32,31230,75833,5087,887,190,4.1,1,1,96,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,42026,83745,6645,1133,190,3.1,1,1,96,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,47383,87098,6740,1192,210,2.6,1,1,96,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,54768,50530,9635,3649,180,2.6,2,2,96,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,48052,46731,8727,3227,130,3.1,3,3,96,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,33392,31669,5855,2087,100,3.1,2,2,96,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,14500,3904,3514,1163,80,3.1,1,1,96,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,0,0,0,0,70,1.5,1,1,96,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,51,83100,0,0,232,0,0,0,0,0,0,0,190,2.1,0,0,40,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,-12.2,24,83300,0,0,255,0,0,0,0,0,0,0,290,10.3,0,0,32,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,-15.6,18,83300,0,0,252,0,0,0,0,0,0,0,280,11.8,0,0,64,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,2089,0,1653,457,270,9.8,5,5,80,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,5019,580,4209,1406,310,11.3,8,8,64,3962,9,999999999,3,0.045,0,88,0.2,0,1 +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,14688,8388,8299,2914,310,9.3,7,7,64,3962,9,999999999,3,0.045,0,88,0.2,0,1 +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,41262,38722,12246,4410,290,6.7,5,4,80,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,45341,40343,15637,5620,290,11.8,2,2,80,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,53096,50104,13145,4837,290,11.3,3,3,80,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,42714,40777,10150,3706,300,7.7,2,2,80,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,23506,20516,8244,2850,300,11.8,3,3,80,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,13760,6557,4902,1557,290,9.3,1,1,80,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,1135,0,682,201,280,7.7,1,1,80,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,-15.6,39,83700,0,0,218,0,0,0,0,0,0,0,150,2.1,0,0,40,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,2026,0,1240,364,170,2.1,0,0,96,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,16463,9561,4531,1499,200,3.6,0,0,96,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,34169,32808,6442,2310,190,3.1,0,0,96,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,-11.1,19,83900,564,1413,275,397,832,65,47885,44729,7858,2943,140,2.1,0,0,96,77777,9,999999999,3,0.045,0,88,0.2,0,1 +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,55110,49272,8518,3253,80,1.5,0,0,96,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,18,83800,623,1413,288,450,862,70,54571,48949,8509,3245,360,2.1,0,0,96,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,42876,39494,7946,2957,60,2.6,1,0,96,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,30648,28363,6404,2272,360,4.6,1,0,96,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,14006,5357,4372,1416,50,4.1,1,0,96,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,1234,0,786,227,110,2.6,0,0,80,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,41,84100,0,0,242,0,0,0,0,0,0,0,160,4.1,0,0,48,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,2281,0,1028,309,180,3.1,0,0,112,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,15721,50672,5144,670,200,5.2,0,0,112,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,24,84300,437,1414,270,294,807,44,31251,73628,6886,1013,210,4.1,0,0,112,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,18,84200,564,1414,285,404,881,53,42861,84071,8107,1234,180,4.1,0,0,112,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,-13.3,11,84200,627,1414,293,461,910,57,48782,87995,8616,1342,150,3.1,0,0,112,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,48342,87698,8620,1337,290,1.5,0,0,112,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,41837,83150,7972,1211,90,3.6,0,0,112,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,29590,71658,6748,979,70,2.1,0,0,112,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,15146,5002,3735,1233,160,1.5,1,0,112,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,1432,0,993,273,130,2.1,5,1,80,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,-11.7,37,84700,52,978,248,19,116,13,2098,0,1439,403,190,1.5,4,3,112,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,15341,7885,4308,1429,200,2.1,2,2,112,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,32587,80638,5089,882,180,3.6,0,0,112,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,-11.7,18,84800,563,1414,275,415,946,38,44423,90386,5913,1054,210,2.6,0,0,112,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,50399,93985,6451,1158,230,2.1,0,0,112,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,50137,93871,6309,1139,60,1,0,0,96,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,43555,89817,5921,1048,140,2.6,0,0,96,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,30833,77402,5249,884,80,3.6,1,0,96,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,13512,45515,4531,615,110,1.5,3,1,96,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,1704,8614,1005,119,80,1.5,4,0,80,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,35,84600,0,0,249,0,0,0,0,0,0,0,110,2.6,3,0,32,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,47,84600,0,0,236,0,0,0,0,0,0,0,140,3.1,0,0,32,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,-10,65,84200,0,0,227,0,0,0,0,0,0,0,160,2.6,9,1,32,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,59,84200,0,0,230,0,0,0,0,0,0,0,150,2.1,10,1,32,77777,9,999999999,4,0.045,0,88,0.2,0,1 +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,1063,0,1070,355,160,2.1,10,10,80,7620,9,999999999,5,0.045,0,88,0.2,0,1 +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,6794,0,6842,2263,180,1.5,10,10,96,7620,9,999999999,5,0.045,0,88,0.2,0,1 +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,12294,0,12389,4335,190,1.5,10,10,96,6706,9,999999999,5,0.045,0,88,0.2,0,1 +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,16360,0,16492,6010,340,1.5,10,10,96,6706,9,999999999,5,0.045,0,88,0.2,0,1 +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,18372,0,18523,6898,340,1.5,10,10,64,6706,9,999999999,5,0.045,0,88,0.2,0,1 +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,26,83900,624,1414,307,181,0,181,18370,0,18521,6875,330,1.5,10,10,56,6096,9,999999999,5,0.045,0,88,0.2,0,1 +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,16048,0,16177,5877,290,1,10,10,56,6096,9,999999999,6,0.045,0,88,0.2,0,1 +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,11882,0,11973,4160,360,1,10,10,64,5486,9,999999999,6,0.045,0,88,0.2,0,1 +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,28,83800,240,1414,302,65,0,65,6391,0,6437,2095,130,1.5,10,10,64,5486,9,999999999,6,0.045,0,88,0.2,0,1 +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,31,83800,40,860,286,6,8,6,686,0,686,205,90,2.1,10,9,64,5486,9,999999999,6,0.045,0,88,0.2,0,1 +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,5486,9,999999999,6,0.045,0,88,0.2,0,1 +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,5182,9,999999999,6,0.045,0,88,0.2,0,1 +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,5182,9,999999999,7,0.045,0,88,0.2,0,1 +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,4267,9,999999999,7,0.045,0,88,0.2,0,1 +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,4267,9,999999999,7,0.045,0,88,0.2,0,1 +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,10,10,32,4267,9,999999999,7,0.045,0,88,0.2,0,1 +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,3658,9,999999999,7,0.045,0,88,0.2,0,1 +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,3962,9,999999999,7,0.045,0,88,0.2,0,1 +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,77777,9,999999999,8,0.045,0,88,0.2,0,1 +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,77777,9,999999999,8,0.045,0,88,0.2,0,1 +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,77777,9,999999999,8,0.045,0,88,0.2,0,1 +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,10,2,32,77777,9,999999999,8,0.045,0,88,0.2,0,1 +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,77777,9,999999999,8,0.045,0,88,0.2,0,1 +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,3048,9,999999999,8,0.045,0,88,0.2,0,1 +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,2138,0,1931,473,170,2.6,9,8,80,3353,9,999999999,8,0.045,0,88,0.2,0,1 +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,13375,7925,8951,2488,200,3.6,9,5,72,7620,9,999999999,8,0.045,0,88,0.2,0,1 +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,26540,24359,9566,3278,180,3.1,8,4,80,7620,9,999999999,8,0.045,0,88,0.2,0,1 +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,22970,12821,13834,4870,190,3.1,7,7,96,4572,9,999999999,8,0.045,0,88,0.2,0,1 +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,37270,19666,26642,8098,0,0,8,8,96,4572,9,999999999,8,0.045,0,88,0.2,0,1 +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,-5.6,22,83400,625,1414,319,166,195,79,19936,11269,9514,3609,130,2.1,5,5,96,77777,9,999999999,8,0.045,0,88,0.2,0,1 +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,-5,24,83400,556,1414,318,359,656,101,41713,39371,11775,4234,90,4.6,4,4,96,77777,9,999999999,8,0.045,0,88,0.2,0,1 +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,24,83500,425,1414,309,252,656,55,29794,27072,6517,2316,70,5.2,2,2,96,77777,9,999999999,8,0.045,0,88,0.2,0,1 +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,26,83400,242,1414,308,138,522,49,15551,8615,5537,1737,80,4.1,3,3,96,77777,9,999999999,7,0.045,0,88,0.2,0,1 +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,31,83500,41,884,290,16,158,8,1789,0,896,258,130,1.5,1,1,80,77777,9,999999999,7,0.045,0,88,0.2,0,1 +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,77777,9,999999999,7,0.045,0,88,0.2,0,1 +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,77777,9,999999999,7,0.045,0,88,0.2,0,1 +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,77777,9,999999999,7,0.045,0,88,0.2,0,1 +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,1,1,24,77777,9,999999999,7,0.045,0,88,0.2,0,1 +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,77777,9,999999999,7,0.045,0,88,0.2,0,1 +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,77777,9,999999999,7,0.045,0,88,0.2,0,1 +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,77777,9,999999999,7,0.045,0,88,0.2,0,1 +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,-6.1,60,83500,0,0,253,0,0,0,0,0,0,0,150,2.1,3,3,32,77777,9,999999999,7,0.045,0,88,0.2,0,1 +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,77777,9,999999999,7,0.045,0,88,0.2,0,1 +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,77777,9,999999999,7,0.045,0,88,0.2,0,1 +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,77777,9,999999999,7,0.045,0,88,0.2,0,1 +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,2743,9,999999999,7,0.045,0,88,0.2,0,1 +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,2743,9,999999999,7,0.045,0,88,0.2,0,1 +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,2743,9,999999999,7,0.045,0,88,0.2,0,1 +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,1469,0,1019,302,190,4.1,6,6,112,2743,9,999999999,7,0.045,0,88,0.2,0,1 +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,12031,2326,11123,2727,190,4.1,8,8,128,2743,9,999999999,7,0.045,0,88,0.2,0,1 +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,22607,16859,12809,4117,190,4.6,6,6,120,2743,9,999999999,7,0.045,0,88,0.2,0,1 +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,33458,28549,9399,3476,190,3.6,5,5,120,77777,9,999999999,7,0.045,0,88,0.2,0,1 +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,37642,27897,18906,6512,200,2.6,5,5,120,77777,9,999999999,7,0.045,0,88,0.2,0,1 +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,-7.8,18,83600,626,1414,320,388,654,98,45853,40465,11619,4339,140,1.5,6,6,112,2591,9,999999999,7,0.045,0,88,0.2,0,1 +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,-6.7,20,83500,558,1414,310,396,838,65,47635,44072,7837,2925,100,3.1,2,2,112,77777,9,999999999,7,0.045,0,88,0.2,0,1 +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,22905,18845,10696,3559,140,4.1,5,5,112,77777,9,999999999,7,0.045,0,88,0.2,0,1 +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,25,83500,244,1414,318,56,109,37,6459,1191,4277,1401,130,4.6,6,6,112,3048,9,999999999,7,0.045,0,88,0.2,0,1 +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,30,83600,43,884,306,11,62,8,1233,0,898,261,130,4.6,6,6,96,3048,9,999999999,7,0.045,0,88,0.2,0,1 +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,34,83600,0,0,302,0,0,0,0,0,0,0,120,5.2,7,7,48,3353,9,999999999,7,0.045,0,88,0.2,0,1 +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,37,83600,0,0,302,0,0,0,0,0,0,0,130,4.1,8,8,48,3353,9,999999999,7,0.045,0,88,0.2,0,1 +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,3353,9,999999999,7,0.045,0,88,0.2,0,1 +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,3353,9,999999999,7,0.045,0,88,0.2,0,1 +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,6,6,48,3353,9,999999999,7,0.045,0,88,0.2,0,1 +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,3353,9,999999999,7,0.045,0,88,0.2,0,1 +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,77777,9,999999999,7,0.045,0,88,0.2,0,1 +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,77777,9,999999999,7,0.045,0,88,0.2,0,1 +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,3353,9,999999999,7,0.045,0,88,0.2,0,1 +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,3353,9,999999999,7,0.045,0,88,0.2,0,1 +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,3353,9,999999999,7,0.045,0,88,0.2,0,1 +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,3353,9,999999999,7,0.045,0,88,0.2,0,1 +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,3353,9,999999999,7,0.045,0,88,0.2,0,1 +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,3353,9,999999999,7,0.045,0,88,0.2,0,1 +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,806,0,807,245,190,4.6,8,8,80,3353,9,999999999,7,0.045,0,88,0.2,0,1 +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,13006,7825,6914,2096,190,4.1,4,4,80,77777,9,999999999,7,0.045,0,88,0.2,0,1 +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,28047,65760,6594,992,190,4.1,1,1,96,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,-5.6,31,83900,562,1414,286,388,869,43,41536,83208,6654,1127,170,2.1,1,1,96,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,47378,87461,6601,1174,200,1.5,1,1,96,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,47055,86848,6602,1173,60,2.1,1,1,96,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,41217,81082,7827,1209,360,1.5,1,1,96,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,32703,29481,5641,2025,350,2.1,1,1,96,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,14203,47447,4533,629,50,2.1,1,1,96,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,1920,9905,1169,132,360,2.6,1,1,64,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,-6.1,42,83700,0,0,261,0,0,0,0,0,0,0,170,2.1,0,0,48,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,-8.3,49,83600,0,0,241,0,0,0,0,0,0,0,170,3.1,0,0,48,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,64,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,1690,0,1016,298,190,3.6,0,0,112,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,15377,7413,4402,1450,180,4.1,0,0,112,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,-7.2,38,84000,432,1415,260,278,733,54,33008,30973,6425,2297,170,2.6,0,0,112,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,46976,43446,7848,2935,170,3.1,0,0,112,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,54477,48319,8514,3251,160,3.1,0,0,112,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,54471,48374,8513,3250,90,2.6,0,0,112,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,46830,43350,7843,2930,90,4.6,0,0,112,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,32854,30712,6418,2289,100,5.7,0,0,112,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,-7.8,26,83800,249,1415,279,132,534,38,15226,6791,4392,1439,80,5.2,0,0,112,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,1564,0,1007,290,90,3.1,0,0,64,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,-6.7,40,83900,0,0,261,0,0,0,0,0,0,0,90,3.1,0,0,48,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,77777,9,999999999,6,0.045,0,88,0.2,0,1 +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,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,48,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,-7.8,79,83800,0,0,224,0,0,0,0,0,0,0,200,1.5,0,0,48,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,2039,12320,1013,148,160,2.6,0,0,112,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,15996,56975,3759,603,180,2.1,0,0,112,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,-7.2,38,83800,432,1415,265,277,756,46,29449,68827,7189,1013,220,2.6,1,1,112,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,42574,86277,5916,1053,200,2.6,1,1,112,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,-8.3,25,83500,629,1415,284,430,809,70,52177,45840,8515,3252,300,1.5,1,1,112,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,46188,84681,6744,1190,350,2.6,1,1,112,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,44574,42981,12114,4351,10,4.6,3,3,80,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,31554,28828,6419,2292,360,5.7,2,2,80,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,14825,7428,5030,1621,360,5.2,3,3,80,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,1715,0,801,241,10,3.1,1,1,64,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,-5.6,62,83400,0,0,243,0,0,0,0,0,0,0,170,1.5,0,0,48,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,-7.8,79,83200,0,0,232,0,0,0,0,0,0,0,350,2.1,2,2,32,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,-6.7,86,83300,0,0,235,0,0,0,0,0,0,0,0,0,5,3,32,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,-6.7,86,83300,0,0,233,0,0,0,0,0,0,0,180,1.5,4,2,32,77777,9,999999999,6,0.044,0,88,0.2,0,1 +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,8,6,80,6096,9,999999999,6,0.044,0,88,0.2,0,1 +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,1215,0,1218,341,120,1.5,10,9,88,6096,9,999999999,6,0.044,0,88,0.2,0,1 +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,61,83300,249,1415,286,63,0,63,6195,0,6240,2106,120,1.5,10,10,88,6096,9,999999999,6,0.044,0,88,0.2,0,1 +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,17573,1806,16779,4861,0,0,9,9,112,6096,9,999999999,6,0.044,0,88,0.2,0,1 +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,33508,5778,31244,7636,0,0,9,9,112,6096,9,999999999,6,0.044,0,88,0.2,0,1 +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,18168,0,18318,6860,80,2.1,10,10,112,6096,9,999999999,6,0.044,0,88,0.2,0,1 +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,14503,0,14623,5866,10,6.7,10,10,96,2438,9,999999999,6,0.044,0,88,0.2,0,1 +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,12812,0,12916,5076,350,3.1,10,10,96,2896,9,999999999,6,0.044,0,88,0.2,0,1 +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,-5,46,83300,436,1415,288,245,174,192,26228,13931,20664,5291,330,2.6,10,8,96,2896,9,999999999,6,0.044,0,88,0.2,0,1 +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,48,83300,254,1415,281,108,100,90,11621,3766,9725,2562,0,0,9,7,64,2896,9,999999999,6,0.044,0,88,0.2,0,1 +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,1713,0,1719,425,150,3.6,10,9,48,6096,9,999999999,6,0.044,0,88,0.2,0,1 +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,3048,9,999999999,6,0.044,0,88,0.2,0,1 +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,50,83500,0,0,298,0,0,0,0,0,0,0,130,2.1,10,10,32,2743,9,999999999,6,0.044,0,88,0.2,0,1 +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,52,83500,0,0,295,0,0,0,0,0,0,0,200,2.1,10,10,32,2743,9,999999999,6,0.044,0,88,0.2,0,1 +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,54,83500,0,0,293,0,0,0,0,0,0,0,70,5.2,10,10,24,2286,9,999999999,6,0.044,0,88,0.2,0,1 +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,3658,9,999999999,6,0.044,0,88,0.2,0,1 +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,1402,9,999999999,7,0.044,0,88,0.2,0,1 +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,-1.7,87,83600,0,0,285,0,0,0,0,0,0,0,350,3.6,10,10,9.6,305,9,999999999,7,0.044,0,88,0.2,0,1 +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,-1.1,91,83600,0,0,286,0,0,0,0,0,0,0,360,3.1,10,10,8,274,9,999999999,7,0.044,0,88,0.2,0,1 +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,7,0.044,0,88,0.2,0,1 +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,152,9,999999999,7,0.044,0,88,0.2,0,1 +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,7,0.044,0,88,0.2,0,1 +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,7,0.044,0,88,0.2,0,1 +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,152,9,999999999,7,0.044,0,88,0.2,0,1 +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,7,0.044,0,88,0.2,0,1 +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,95,83600,45,908,264,4,0,4,386,0,388,149,330,3.6,10,10,1.6,122,9,999999999,7,0.044,0,88,0.2,0,1 +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,95,83600,248,1415,264,26,0,26,2557,0,2575,1047,360,4.1,10,10,3.2,152,9,999999999,7,0.044,0,88,0.2,0,1 +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,5390,0,5432,2295,350,4.6,10,10,1.6,183,9,999999999,7,0.044,0,88,0.2,0,1 +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,7667,0,7729,3362,360,3.6,10,10,3.2,183,9,999999999,6,0.044,0,88,0.2,0,1 +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,91,83500,631,1415,266,89,0,89,9029,0,9104,4012,360,3.1,10,10,3.2,183,9,999999999,6,0.044,0,88,0.2,0,1 +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,91,83400,633,1415,266,89,0,89,9029,0,9104,4014,350,3.1,10,10,1.6,152,9,999999999,6,0.044,0,88,0.2,0,1 +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,87,83400,567,1415,268,77,0,77,7770,0,7833,3404,350,3.1,10,10,4.8,152,9,999999999,6,0.044,0,88,0.2,0,1 +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,91,83400,439,1415,266,55,0,55,5492,0,5534,2336,360,4.6,10,10,6.4,152,9,999999999,6,0.044,0,88,0.2,0,1 +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,91,83500,257,1415,266,32,0,32,3148,0,3170,1257,360,4.1,10,10,3.2,213,9,999999999,6,0.044,0,88,0.2,0,1 +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,91,83500,52,979,266,6,0,6,579,0,583,215,40,3.1,10,10,3.2,213,9,999999999,6,0.044,0,88,0.2,0,1 +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,6,0.044,0,88,0.2,0,1 +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,6,0.044,0,88,0.2,0,1 +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,6,0.044,0,88,0.2,0,1 +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,-6.1,91,83600,0,0,260,0,0,0,0,0,0,0,60,4.1,10,10,3.2,610,9,999999999,6,0.044,0,88,0.2,0,1 +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,6,0.044,0,88,0.2,0,1 +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,6,0.044,0,88,0.2,0,1 +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,6,0.044,0,88,0.2,0,1 +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,5,0.044,0,88,0.2,0,1 +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,1524,9,999999999,5,0.044,0,88,0.2,0,1 +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,5,0.044,0,88,0.2,0,1 +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,5,0.044,0,88,0.2,0,1 +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,5,0.044,0,88,0.2,0,1 +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,457,9,999999999,5,0.044,0,88,0.2,0,1 +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,762,9,999999999,5,0.044,0,88,0.2,0,1 +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,-11.7,86,84000,45,908,230,9,10,8,1019,0,907,268,20,2.6,9,9,6.4,1981,9,999999999,5,0.044,0,88,0.2,0,1 +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,9937,2744,8330,2352,80,3.1,10,8,2.4,671,9,999999999,5,0.044,0,88,0.2,0,1 +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,25800,15808,19096,5150,60,3.1,10,7,6.4,1372,9,999999999,5,0.044,0,88,0.2,0,1 +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,45089,44105,11807,4259,50,3.1,5,4,9.6,77777,9,999999999,4,0.044,0,88,0.2,0,1 +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,48088,43718,14574,5303,80,3.6,4,4,19.2,77777,9,999999999,4,0.044,0,88,0.2,0,1 +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,30753,17441,19151,6595,40,3.6,4,4,19.2,77777,9,999999999,4,0.044,0,88,0.2,0,1 +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,43622,42115,13320,4728,120,3.1,5,5,16,77777,9,999999999,4,0.044,0,88,0.2,0,1 +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,21564,10126,16716,4887,70,3.6,6,6,16,457,9,999999999,4,0.044,0,88,0.2,0,1 +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,-13.3,74,84100,260,1415,220,80,209,41,9214,3489,4732,1549,80,2.6,7,7,19.2,701,9,999999999,4,0.044,0,88,0.2,0,1 +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,1548,0,1330,373,80,2.6,8,8,16,488,9,999999999,4,0.044,0,88,0.2,0,1 +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,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,86,84200,0,0,196,0,0,0,0,0,0,0,190,2.1,5,1,24,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,-16.7,85,84200,0,0,194,0,0,0,0,0,0,0,120,2.1,3,3,16,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,85,84100,0,0,174,0,0,0,0,0,0,0,320,2.1,0,0,12.8,77777,9,999999999,3,0.044,0,88,0.2,0,1 +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,1,1,9.6,77777,9,999999999,3,0.044,0,88,0.2,0,1 diff --git a/AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/generateResults.py b/AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/generateResults.py index 6c35b4699e..ac1bfd973a 100755 --- a/AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/generateResults.py +++ b/AixLib/Resources/Data/BoundaryConditions/Validation/BESTEST/generateResults.py @@ -27,8 +27,6 @@ # Check if it just implements post-process (from .mat files to Json files) POST_PROCESS_ONLY = False -# Erase old .mat files -CLEAN_MAT = False # Erase anything but the Json file results in the ResultJson folder and .mat # files DEL_EVR = False @@ -216,7 +214,6 @@ def get_cases(case_dict): "set_tolerance": case_dict["set_tolerance"], "show_GUI": case_dict["show_GUI"], "n_intervals": case_dict["n_intervals"], - "CLEAN_MAT": case_dict['CLEAN_MAT'], "DEL_EVR": case_dict["DEL_EVR"], "CODE_VERBOSE": case_dict["CODE_VERBOSE"]}) return cases @@ -226,8 +223,8 @@ def _simulate(spec): ''' This function execute the simulation of a specific Case model and stores the result in the simulation directory, then copies the result to the - current working directory and if CLEAN_MAT option is selected the old .mat - files are removed + current working directory. + :param spec: dictionary with the simulation specifications ''' @@ -249,13 +246,9 @@ def _simulate(spec): # Set MODELICAPATH #os.environ['MODELICAPATH'] = LIBPATH # Set Model to simulate, the output dir and the package directory - s = Simulator(spec["model"]) + s = Simulator(spec["model"], packagePath=os.path.join(wor_dir, library_name)) # Add all necessary parameters from Case Dict s.addPreProcessingStatement("OutputCPUtime:= true;") - # fixme: Printing current directory for diagnostics - s.addPreProcessingStatement("cd") - # fixme: Print directories and files - s.addPreProcessingStatement("Modelica.Utilities.Files.list(\".\");") s.setSolver(spec["solver"]) if 'parameters' in spec: s.addParameters(spec['parameters']) @@ -275,19 +268,20 @@ def _simulate(spec): def _copy_results(wor_dir, des_dir): os.mkdir(des_dir) + if spec['CODE_VERBOSE']: + print(f"Running glob for .mat in '{wor_dir}'") files = glob.glob(os.path.join(wor_dir, '*.mat')) files.extend(glob.glob(os.path.join(wor_dir, '*.log'))) for file in files: + if spec['CODE_VERBOSE']: + print(f"Copying result file '{file}'' to '{res_des}'") shutil.copy(file, res_des) # Removing old results directory - if os.path.isdir(res_des) and spec["CLEAN_MAT"]: + if os.path.isdir(res_des): shutil.rmtree(res_des) - _copy_results(wor_dir, res_des) - elif os.path.isdir(res_des) and not spec["CLEAN_MAT"]: - pass - else: - _copy_results(wor_dir, res_des) + + _copy_results(wor_dir, res_des) def _organize_cases(mat_dir,case_dict): @@ -319,8 +313,7 @@ def _organize_cases(mat_dir,case_dict): case_list.append(temp) else: raise ValueError( - f"*** There is failed simulation, no result file was found. \ - Check the simulations. len(CASES) = {len(CASES)}, len(mat_files) = {len(mat_files)}") + f"*** No result file was found. Check the simulations. len(CASES) = {len(CASES)}, len(mat_files) = {len(mat_files)}") return case_list @@ -1062,7 +1055,6 @@ def remove_readonly(fn, path, excinfo): 'from_git_hub': FROM_GIT_HUB or not CI_TESTING, 'BRANCH': BRANCH, 'LIBPATH': LIBPATH, - 'CLEAN_MAT': CLEAN_MAT, 'DEL_EVR': DEL_EVR or CI_TESTING, 'CODE_VERBOSE': CODE_VERBOSE, 'lib_name': library_name, @@ -1096,9 +1088,9 @@ def remove_readonly(fn, path, excinfo): po.join() # Block at this line until all processes are done # Delete temporary directories - for case in list_of_cases: + #for case in list_of_cases: # Delete simulation directory - shutil.rmtree(case['wor_dir']) + # shutil.rmtree(case['wor_dir']) # Delete temporary library directory shutil.rmtree(temp_lib_dir, onerror=remove_readonly) diff --git a/AixLib/Resources/Data/Utilities/IO/Files/Examples/CSVReader/Data.csv b/AixLib/Resources/Data/Utilities/IO/Files/Examples/CSVReader/Data.txt similarity index 97% rename from AixLib/Resources/Data/Utilities/IO/Files/Examples/CSVReader/Data.csv rename to AixLib/Resources/Data/Utilities/IO/Files/Examples/CSVReader/Data.txt index 9dbc4b0497..6f44442390 100644 --- a/AixLib/Resources/Data/Utilities/IO/Files/Examples/CSVReader/Data.csv +++ b/AixLib/Resources/Data/Utilities/IO/Files/Examples/CSVReader/Data.txt @@ -1,5 +1,5 @@ #1 -double csv(38,3) +double tab(38,3) # time col1 col2 -1.21 0 0 -0.91 0 0 diff --git a/AixLib/Resources/Documentation/userGuide/source/_static/lbl-logo.png b/AixLib/Resources/Documentation/userGuide/source/_static/lbl-logo.png old mode 100755 new mode 100644 diff --git a/AixLib/Resources/Images/BoundaryConditions/SkyTemperature/BaseClasses/Cloud.jpg b/AixLib/Resources/Images/BoundaryConditions/SkyTemperature/BaseClasses/Cloud.jpg old mode 100755 new mode 100644 diff --git a/AixLib/Resources/Images/BoundaryConditions/WeatherData/RadiationTimeShift.png b/AixLib/Resources/Images/BoundaryConditions/WeatherData/RadiationTimeShift.png old mode 100755 new mode 100644 diff --git a/AixLib/Resources/Images/Controls/Continuous/Examples/PIDHysteresis.png b/AixLib/Resources/Images/Controls/Continuous/Examples/PIDHysteresis.png deleted file mode 100644 index 6fd24a4c6d..0000000000 Binary files a/AixLib/Resources/Images/Controls/Continuous/Examples/PIDHysteresis.png and /dev/null differ diff --git a/AixLib/Resources/Images/Controls/Continuous/Examples/PIDHysteresisTimerError.png b/AixLib/Resources/Images/Controls/Continuous/Examples/PIDHysteresisTimerError.png deleted file mode 100644 index 3d52004292..0000000000 Binary files a/AixLib/Resources/Images/Controls/Continuous/Examples/PIDHysteresisTimerError.png and /dev/null differ diff --git a/AixLib/Resources/Images/Controls/Continuous/Examples/PIDHysteresisTimerOutput.png b/AixLib/Resources/Images/Controls/Continuous/Examples/PIDHysteresisTimerOutput.png deleted file mode 100644 index b6da031594..0000000000 Binary files a/AixLib/Resources/Images/Controls/Continuous/Examples/PIDHysteresisTimerOutput.png and /dev/null differ diff --git a/AixLib/Resources/Images/Controls/Continuous/Examples/SignalRankerU.png b/AixLib/Resources/Images/Controls/Continuous/Examples/SignalRankerU.png index 4aca4ed8b5..660b540af0 100644 Binary files a/AixLib/Resources/Images/Controls/Continuous/Examples/SignalRankerU.png and b/AixLib/Resources/Images/Controls/Continuous/Examples/SignalRankerU.png differ diff --git a/AixLib/Resources/Images/Controls/Continuous/Examples/SignalRankerY.png b/AixLib/Resources/Images/Controls/Continuous/Examples/SignalRankerY.png index e0a63c2de1..77b223c7d0 100644 Binary files a/AixLib/Resources/Images/Controls/Continuous/Examples/SignalRankerY.png and b/AixLib/Resources/Images/Controls/Continuous/Examples/SignalRankerY.png differ diff --git a/AixLib/Resources/Images/Fluid/Movers/DpControlledMovers/CurveTypes.jpg b/AixLib/Resources/Images/Fluid/Movers/DpControlledMovers/CurveTypes.jpg new file mode 100644 index 0000000000..f413d78fcd Binary files /dev/null and b/AixLib/Resources/Images/Fluid/Movers/DpControlledMovers/CurveTypes.jpg differ diff --git a/AixLib/Resources/Images/Fluid/Movers/DpControlledMovers/CurveTypes.xlsx b/AixLib/Resources/Images/Fluid/Movers/DpControlledMovers/CurveTypes.xlsx new file mode 100644 index 0000000000..32bde12ca9 Binary files /dev/null and b/AixLib/Resources/Images/Fluid/Movers/DpControlledMovers/CurveTypes.xlsx differ diff --git a/AixLib/Resources/Images/Fluid/Movers/UsersGuide/2013-IBPSA-Wetter.pdf b/AixLib/Resources/Images/Fluid/Movers/UsersGuide/2013-IBPSA-Wetter.pdf old mode 100755 new mode 100644 diff --git a/AixLib/Resources/Images/Fluid/Movers/Validation/PowerExact.png b/AixLib/Resources/Images/Fluid/Movers/Validation/PowerExact.png index b60056c8f1..9ffbdb3f66 100644 Binary files a/AixLib/Resources/Images/Fluid/Movers/Validation/PowerExact.png and b/AixLib/Resources/Images/Fluid/Movers/Validation/PowerExact.png differ diff --git a/AixLib/Resources/Images/Fluid/Movers/Validation/PowerExact.svg b/AixLib/Resources/Images/Fluid/Movers/Validation/PowerExact.svg index e8e5cb5c5a..f69e340f10 100644 --- a/AixLib/Resources/Images/Fluid/Movers/Validation/PowerExact.svg +++ b/AixLib/Resources/Images/Fluid/Movers/Validation/PowerExact.svg @@ -1,121 +1,1073 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - - 20 - - 40 - - 60 - - 80 - - 100 - - 120 - - 140 - - 160 - - 180 - - 200 - - - - - - - - - - - 2200 - - 2400 - - 2600 - - 2800 - - 3000 - - 3200 - - 3400 - - 3600 - - pump_Nrpm.per.speed_rpm_nominal - pump_Nrpm.Nrpm - [1/min] - - - - - - - - - - - - + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + + 40 + + 80 + + 120 + + 160 + + 200 + + + + + + + 50 + + 100 + + 150 + + 200 + [W] + + + + + + + + + pump_Nrpm.P + + pump_dp.P + + pump_m_flow.P + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + + 40 + + 80 + + 120 + + 160 + + 200 + + + + + + + + 2000 + + 2500 + + 3000 + + 3500 + + 4000 + [rev/min] + + + + + + + + pump_Nrpm.per.speed_rpm_nominal + + pump_Nrpm.Nrpm diff --git a/AixLib/Resources/Images/Fluid/Movers/Validation/PowerSimplified.png b/AixLib/Resources/Images/Fluid/Movers/Validation/PowerSimplified.png index fd9c3a9d74..5ad86eb934 100644 Binary files a/AixLib/Resources/Images/Fluid/Movers/Validation/PowerSimplified.png and b/AixLib/Resources/Images/Fluid/Movers/Validation/PowerSimplified.png differ diff --git a/AixLib/Resources/Images/Fluid/Movers/Validation/PowerSimplified.svg b/AixLib/Resources/Images/Fluid/Movers/Validation/PowerSimplified.svg index 2b7f99e6b9..a49c26cbf9 100644 --- a/AixLib/Resources/Images/Fluid/Movers/Validation/PowerSimplified.svg +++ b/AixLib/Resources/Images/Fluid/Movers/Validation/PowerSimplified.svg @@ -1,124 +1,1133 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - - 20 - - 40 - - 60 - - 80 - - 100 - - 120 - - 140 - - 160 - - 180 - - 200 - - - - - - - - - - 0 - - 50 - - 100 - - 150 - - 200 - - 250 - - 300 - - pump_Nrpm.P - pump_dp.P - pump_m_flow.P - [W] - - - - - - - - - - - - - - - - - - + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + + 40 + + 80 + + 120 + + 160 + + 200 + + + + + + + + + 50 + + 100 + + 150 + + 200 + + 250 + + 300 + [W] + + + + + + + + + pump_Nrpm.P + + pump_dp.P + + pump_m_flow.P + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + + 40 + + 80 + + 120 + + 160 + + 200 + + + + + + + + 2000 + + 2500 + + 3000 + + 3500 + + 4000 + [rev/min] + + + + + + + + pump_Nrpm.per.speed_rpm_nominal + + pump_Nrpm.Nrpm diff --git a/AixLib/Resources/Images/Fluid/Sources/Outside_CpData.png b/AixLib/Resources/Images/Fluid/Sources/Outside_CpData.png new file mode 100644 index 0000000000..4abcbbc26b Binary files /dev/null and b/AixLib/Resources/Images/Fluid/Sources/Outside_CpData.png differ diff --git a/AixLib/Resources/Images/Fluid/Sources/Outside_CpData.svg b/AixLib/Resources/Images/Fluid/Sources/Outside_CpData.svg new file mode 100644 index 0000000000..4a678178eb --- /dev/null +++ b/AixLib/Resources/Images/Fluid/Sources/Outside_CpData.svg @@ -0,0 +1,430 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1.0 + + + + + + + Cp for given windincidence angle + 0.2 + 0.8 + 0.5 + + + parameter Modelica.Units.SI.Angle incAngSurNor[:] = {0, 90, 180, 270} * 2 * Modelica.Constants.pi "Wind incidence angles relative to surface normal";parameter Real Cp[:] = {1, 0.2, 0.5, 0.8} "Cp values at the corresponding incAngSurNor"; + + Intermediate valuesare interpolated + + + diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_AirHandlingUnit_Examples_AHU.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_AirHandlingUnit_Examples_AHU.txt index bfe97f68b7..8dc9d86797 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_AirHandlingUnit_Examples_AHU.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_AirHandlingUnit_Examples_AHU.txt @@ -1,4 +1,4 @@ -last-generated=2020-11-26 +last-generated=2022-07-25 statistics-simulation= { "linear": " ", diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_BaseClasses_Examples_Interpolate.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_BaseClasses_Examples_Interpolate.txt new file mode 100644 index 0000000000..f936c51571 --- /dev/null +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_BaseClasses_Examples_Interpolate.txt @@ -0,0 +1,9 @@ +last-generated=2021-06-26 +statistics-simulation= +{ + "linear": " ", + "nonlinear": " ", + "numerical Jacobians": "0" +} +time=[0e+00, 5e+02] +m_flow=[-8.709000051021576e-02, -8.606959879398346e-02, -8.504919707775116e-02, -8.402880281209946e-02, -8.300840109586716e-02, -8.198799937963486e-02, -8.096759766340256e-02, -7.994720339775085e-02, -7.892680168151855e-02, -7.790639996528625e-02, -7.688599824905396e-02, -7.586559653282166e-02, -7.484520226716995e-02, -7.382480055093765e-02, -7.280439883470535e-02, -7.178399711847305e-02, -7.076360285282135e-02, -6.974320113658905e-02, -6.872279942035675e-02, -6.770239770412445e-02, -6.668200343847275e-02, -6.566160172224045e-02, -6.464120000600815e-02, -6.362079828977585e-02, -6.260039657354355e-02, -6.157999858260155e-02, -6.03080615401268e-02, -5.901877209544182e-02, -5.770833417773247e-02, -5.637295171618462e-02, -5.500881373882294e-02, -5.36121279001236e-02, -5.217909067869186e-02, -5.070589855313301e-02, -4.918875172734261e-02, -4.762385040521622e-02, -4.600739479064941e-02, -4.433558508753777e-02, -4.260461404919624e-02, -4.081068560481071e-02, -3.894999995827675e-02, -3.698130697011948e-02, -3.486191853880882e-02, -3.258588165044785e-02, -3.014722652733326e-02, -2.754000015556812e-02, -2.463850006461143e-02, -2.133000083267689e-02, -1.741999946534634e-02, -1.231999974697828e-02, 0e+00, 1.231999974697828e-02, 1.741999946534634e-02, 2.133000083267689e-02, 2.528040856122971e-02, 2.613011002540588e-02, 2.613032981753349e-02, 2.61305496096611e-02, 2.613076940178871e-02, 2.613098919391632e-02, 2.613120898604393e-02, 2.613142877817154e-02, 2.613164857029915e-02, 2.613186836242676e-02, 2.613208815455437e-02, 2.613230794668198e-02, 2.613252773880959e-02, 2.613274753093719e-02, 2.61329673230648e-02, 2.613318711519241e-02, 2.613340690732002e-02, 2.613362669944763e-02, 2.613384649157524e-02, 2.613406628370285e-02, 2.613428607583046e-02, 2.613450586795807e-02, 2.613472566008568e-02, 2.613494545221329e-02, 2.61351652443409e-02, 2.613538503646851e-02, 2.613560482859612e-02, 2.613582462072372e-02, 2.613604441285133e-02, 2.613626420497894e-02, 2.613648399710655e-02, 2.613670378923416e-02, 2.613692358136177e-02, 2.613714337348938e-02, 2.613736316561699e-02, 2.61375829577446e-02, 2.613780274987221e-02, 2.613802254199982e-02, 2.613824233412743e-02, 2.613846212625504e-02, 2.613868191838264e-02, 2.613890171051025e-02, 2.613912150263786e-02, 2.613934129476547e-02, 2.613956108689308e-02, 2.613978087902069e-02, 2.61400006711483e-02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_BaseClasses_Examples_WindPressureProfile.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_BaseClasses_Examples_WindPressureProfile.txt new file mode 100644 index 0000000000..5d22654120 --- /dev/null +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_BaseClasses_Examples_WindPressureProfile.txt @@ -0,0 +1,9 @@ +last-generated=2022-02-16 +statistics-simulation= +{ + "linear": " ", + "nonlinear": " ", + "numerical Jacobians": "0" +} +time=[0e+00, 5e+02] +CpAct=[4.000000059604645e-01, 3.75241607427597e-01, 3.041728138923645e-01, 2.096032053232193e-01, 1.143423989415169e-01, 2.080000005662441e-02, -8.807359635829926e-02, -1.944127976894379e-01, -2.795552015304565e-01, -3.299072086811066e-01, -3.547999858856201e-01, -3.612608015537262e-01, -3.55510413646698e-01, -3.393920063972473e-01, -2.983039915561676e-01, -2.479999959468842e-01, -2.092159986495972e-01, -2.024320065975189e-01, -2.327679991722107e-01, -2.815360128879547e-01, -3.28000009059906e-01, -3.519552052021027e-01, -3.60393613576889e-01, -3.586944043636322e-01, -3.406367897987366e-01, -3.00000011920929e-01, -2.260704040527344e-01, -1.247232034802437e-01, -1.462079957127571e-02, 8.557440340518951e-02, 1.759999990463257e-01, 2.714239954948425e-01, 3.518719971179962e-01, 3.966079950332642e-01, 3.897663950920105e-01, 3.3160001039505e-01, 2.423295974731445e-01, 1.447647958993912e-01, 5.442880094051361e-02, -5.114239826798439e-02, -1.60400003194809e-01, -2.546815872192383e-01, -3.164384067058563e-01, -3.488576114177704e-01, -3.607712090015411e-01, -3.583999872207642e-01, -3.474560081958771e-01, -3.140479922294617e-01, -2.645120024681091e-01, -2.195840030908585e-01, -2.000000029802322e-01, -2.195840030908585e-01, -2.645120024681091e-01, -3.140479922294617e-01, -3.474560081958771e-01, -3.583999872207642e-01, -3.607712090015411e-01, -3.488576114177704e-01, -3.164384067058563e-01, -2.546815872192383e-01, -1.60400003194809e-01, -5.114239826798439e-02, 5.442880094051361e-02, 1.4444799721241e-01, 2.402559965848923e-01, 3.28000009059906e-01, 3.869439959526062e-01, 3.983007967472076e-01, 3.555712103843689e-01, 2.741343975067139e-01, 1.767999976873398e-01, 8.557440340518951e-02, -1.462079957127571e-02, -1.247232034802437e-01, -2.260704040527344e-01, -3.00000011920929e-01, -3.406367897987366e-01, -3.586944043636322e-01, -3.60393613576889e-01, -3.519552052021027e-01, -3.28000009059906e-01, -2.815360128879547e-01, -2.327679991722107e-01, -2.024320065975189e-01, -2.092159986495972e-01, -2.479999959468842e-01, -2.983039915561676e-01, -3.393920063972473e-01, -3.55510413646698e-01, -3.612608015537262e-01, -3.547999858856201e-01, -3.299072086811066e-01, -2.795552015304565e-01, -1.944127976894379e-01, -8.807359635829926e-02, 2.080000005662441e-02, 1.143039986491203e-01, 2.081920057535172e-01, 3.00927996635437e-01, 3.717760145664215e-01, 4.000000059604645e-01] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Examples_ClosedDoors.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Examples_ClosedDoors.txt index f4a35bbfc1..359107a484 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Examples_ClosedDoors.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Examples_ClosedDoors.txt @@ -1,4 +1,4 @@ -last-generated=2019-09-16 +last-generated=2022-05-18 statistics-simulation= { "linear": "0, 0, 0", @@ -6,10 +6,10 @@ statistics-simulation= "number of continuous time states": "15", "numerical Jacobians": "0" } -dooAB.vBA=[-0e+00, 1.111134886741638e-02, 2.211078628897667e-02, 3.27298566699028e-02, 4.302025958895683e-02, 5.219392850995064e-02, 6.068937107920647e-02, 6.840763986110687e-02, 7.489723712205887e-02, 8.018204569816589e-02, 8.438211679458618e-02, 8.701556175947189e-02, 8.833125233650208e-02, 8.839000761508942e-02, 8.699604868888855e-02, 8.623015880584717e-02, 8.368469774723053e-02, 8.114312589168549e-02, 7.769934087991714e-02, 7.317290455102921e-02, 6.933209300041199e-02, 6.365078687667847e-02, 5.898626521229744e-02, 5.34910261631012e-02, 4.742438718676567e-02, 4.257954657077789e-02, 3.632545098662376e-02, 3.147174045443533e-02, 2.637578919529913e-02, 2.099823579192162e-02, 1.727937161922455e-02, 1.253495458513498e-02, 9.461328387260437e-03, 6.340759806334972e-03, 3.549095476046205e-03, 1.964997500181198e-03, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 3.627704281825572e-04, 1.111537870019674e-02, 2.20524575561285e-02, 3.267598897218704e-02, 4.292038083076483e-02, 5.203856900334364e-02, 6.089561060070996e-02, 6.826315820217133e-02, 7.491514086723328e-02, 8.037503063678741e-02, 8.41025710105896e-02, 8.69152694940567e-02, 8.893116563558578e-02, 8.904299885034561e-02, 8.69859904050827e-02, 8.614907413721085e-02, 8.363795280456543e-02, 8.103173971176147e-02, 7.761936634778976e-02, 7.304877787828445e-02, 6.923060119152069e-02, 6.356171518564224e-02, 5.887269601225853e-02, 5.338898673653603e-02, 4.731112346053123e-02, 4.247176647186279e-02, 3.621504828333855e-02, 3.136847913265228e-02, 2.627623453736305e-02, 2.09041815251112e-02, 1.71774085611105e-02, 1.241464633494616e-02, 9.381895884871483e-03, 6.230061408132315e-03, 3.501568222418427e-03, 1.882714685052633e-03, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 7.612275658175349e-04] -dooAC.vAB=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -4.596125563471887e-11, -4.596125563471887e-11, 9.192255984169506e-11, 0e+00, -2.298061185790345e-10, 9.192255984169506e-11, -1.378837183318993e-10, 4.596127298195363e-11, 1.378838571097774e-10, -1.838449253943586e-10, 4.59612729819529e-11, -4.596125563471887e-11, -1.378837183318993e-10, 1.378838571097774e-10, 2.29806521034881e-10, 1.838451890723292e-10, 0e+00, 1.378838571097774e-10, 9.192255984169506e-11, 1.838451890723292e-10, -4.596125563471887e-11, 0e+00, 0e+00, 1.838451890723292e-10, -4.596125563471887e-11, 1.838451890723292e-10, 1.378838571097774e-10, -4.596125563471887e-11, 0e+00, -2.298061185790345e-10, 9.192255984169506e-11, 4.596127298195363e-11, -4.596125563471887e-11, 4.596127298195363e-11, 4.596127298195363e-11, 4.596127298195363e-11, 9.192255984169506e-11, -1.378837183318978e-10, 4.354357220894191e-24, 4.596127298195363e-11, -9.192249739164993e-11, -4.596125563471887e-11, 0e+00, 4.596127298195363e-11, -9.192249739164993e-11, -1.378837183318993e-10, -9.192249739164993e-11, 1.378838571097774e-10, 4.596127298195363e-11, -1.838449253943608e-10, -9.192249739164993e-11, -9.192249739164993e-11, -9.192249739164993e-11, -2.298061185790345e-10, 9.192255984169506e-11, 9.192255984169506e-11, -9.192249739164993e-11, 0e+00, 4.596127298195363e-11, 2.29806521034881e-10, 2.757678807530084e-10, -4.596125563471887e-11, 4.596127298195363e-11, 4.596127298195363e-11, 9.192255984169506e-11, 0e+00, 0e+00, 0e+00, -4.596125563471887e-11, 2.29806521034881e-10, -9.192249739164993e-11, 4.596127298195363e-11, -4.596125563471887e-11, 4.596127298195363e-11, 0e+00, -1.378837183318993e-10, -4.596125563471887e-11, -1.378837183318993e-10, 0e+00, 1.838451890723292e-10, 4.596127298195363e-11, 8.273053353491377e-10, 4.596127298195363e-11] -dooBC.vAB=[0e+00, 1.111134886741638e-02, 2.211078628897667e-02, 3.27298566699028e-02, 4.302025958895683e-02, 5.219392850995064e-02, 6.068937107920647e-02, 6.840763986110687e-02, 7.489723712205887e-02, 8.018204569816589e-02, 8.438211679458618e-02, 8.701556175947189e-02, 8.833125233650208e-02, 8.839000761508942e-02, 8.699604868888855e-02, 8.623015880584717e-02, 8.368469774723053e-02, 8.114312589168549e-02, 7.769934087991714e-02, 7.317290455102921e-02, 6.933209300041199e-02, 6.365078687667847e-02, 5.898626148700714e-02, 5.34910261631012e-02, 4.742438718676567e-02, 4.257954657077789e-02, 3.632545098662376e-02, 3.147174045443533e-02, 2.637578919529913e-02, 2.099823579192162e-02, 1.727937161922455e-02, 1.253495458513498e-02, 9.461328387260437e-03, 6.340759806334972e-03, 3.549095476046205e-03, 1.964997500181198e-03, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 3.627703990787268e-04, 1.111537870019674e-02, 2.20524575561285e-02, 3.267598897218704e-02, 4.292038083076483e-02, 5.203856900334364e-02, 6.089561060070996e-02, 6.826315820217133e-02, 7.491514086723328e-02, 8.037503063678741e-02, 8.41025710105896e-02, 8.69152694940567e-02, 8.893116563558578e-02, 8.904299885034561e-02, 8.69859904050827e-02, 8.614907413721085e-02, 8.363795280456543e-02, 8.103173971176147e-02, 7.761936634778976e-02, 7.304877787828445e-02, 6.923060119152069e-02, 6.356171518564224e-02, 5.887269601225853e-02, 5.338898673653603e-02, 4.731112346053123e-02, 4.247176647186279e-02, 3.621504828333855e-02, 3.136847913265228e-02, 2.627623453736305e-02, 2.09041815251112e-02, 1.71774085611105e-02, 1.241464633494616e-02, 9.381895884871483e-03, 6.230061408132315e-03, 3.501568222418427e-03, 1.882714685052633e-03, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 7.612276240251958e-04] -dooAC.vBA=[-0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 0e+00, -0e+00, -0e+00, -0e+00, 4.596127298195363e-11, 4.596127298195363e-11, -9.192249739164993e-11, -0e+00, 2.29806521034881e-10, -9.192249739164993e-11, 1.378838571097774e-10, -4.596125563471887e-11, -1.378837183318993e-10, 1.83845189072327e-10, -4.596125563471814e-11, 4.596127298195363e-11, 1.378838571097774e-10, -1.378837183318993e-10, -2.298061185790345e-10, -1.838449253943608e-10, -0e+00, -1.378837183318993e-10, -9.192249739164993e-11, -1.838449253943608e-10, 4.596127298195363e-11, -0e+00, -0e+00, -1.838449253943608e-10, 4.596127298195363e-11, -1.838449253943608e-10, -1.378837183318993e-10, 4.596127298195363e-11, -0e+00, 2.29806521034881e-10, -9.192249739164993e-11, -4.596125563471887e-11, 4.596127298195363e-11, -4.596125563471887e-11, -4.596125563471887e-11, -4.596125563471887e-11, -9.192249739164993e-11, 1.378838571097759e-10, -4.354352838303885e-24, -4.596125563471887e-11, 9.192255984169506e-11, 4.596127298195363e-11, -0e+00, -4.596125563471887e-11, 9.192255984169506e-11, 1.378838571097774e-10, 9.192255984169506e-11, -1.378837183318993e-10, -4.596125563471887e-11, 1.838451890723292e-10, 9.192255984169506e-11, 9.192255984169506e-11, 9.192255984169506e-11, 2.29806521034881e-10, -9.192249739164993e-11, -9.192249739164993e-11, 9.192255984169506e-11, -0e+00, -4.596125563471887e-11, -2.298061185790345e-10, -2.757672978859205e-10, 4.596127298195363e-11, -4.596125563471887e-11, -4.596125563471887e-11, -9.192249739164993e-11, -0e+00, -0e+00, -0e+00, 4.596127298195363e-11, -2.298061185790345e-10, 9.192255984169506e-11, -4.596125563471887e-11, 4.596127298195363e-11, -4.596125563471887e-11, -0e+00, 1.378838571097774e-10, 4.596127298195363e-11, 1.378838571097774e-10, -0e+00, -1.838449253943608e-10, -4.596125563471887e-11, -8.273001728120732e-10, -4.596125563471887e-11] -dooAB.vAB=[0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 2.364511762338053e-18, 2.019202802330256e-03, 3.577036084607244e-03, 6.399570498615503e-03, 9.497184306383133e-03, 1.25785619020462e-02, 1.731187850236893e-02, 2.1015839651227e-02, 2.640571631491184e-02, 3.148000314831734e-02, 3.631710633635521e-02, 4.257141053676605e-02, 4.740476608276367e-02, 5.346372723579409e-02, 5.89660592377186e-02, 6.360135972499847e-02, 6.928648799657822e-02, 7.311075925827026e-02, 7.764910906553268e-02, 8.107572048902512e-02, 8.364769816398621e-02, 8.617383986711502e-02, 8.698797971010208e-02, 8.839406818151474e-02, 8.841007202863693e-02, 8.703199774026871e-02, 8.427642285823822e-02, 8.01934078335762e-02, 7.484212517738342e-02, 6.830832362174988e-02, 6.069562211632729e-02, 5.212859809398651e-02, 4.272805526852608e-02, 3.253687545657158e-02, 2.23284475505352e-02, 1.124265510588884e-02, 3.661357914097607e-04, -0e+00, -0e+00, -0e+00, 0e+00, 0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 1.938274712301791e-03, 3.530164947733283e-03, 6.290168035775423e-03, 9.419101290404797e-03, 1.246192306280136e-02, 1.720992475748062e-02, 2.092587202787399e-02, 2.629397250711918e-02, 3.137604519724846e-02, 3.621141985058784e-02, 4.24625352025032e-02, 4.729479551315308e-02, 5.336077883839607e-02, 5.884015560150146e-02, 6.35233148932457e-02, 6.918527185916901e-02, 7.299146801233292e-02, 7.757354527711868e-02, 8.096665143966675e-02, 8.360476791858673e-02, 8.609335869550705e-02, 8.698907494544983e-02, 8.839675784111023e-02, 8.840988576412201e-02, 8.702767640352249e-02, 8.427999168634415e-02, 8.01912397146225e-02, 7.484626024961472e-02, 6.831908226013184e-02, 6.069524586200714e-02, 5.212065950036049e-02, 4.272400587797165e-02, 3.262576833367348e-02, 2.193364873528481e-02, 1.249312236905098e-02, 7.642266573384404e-04] time=[0e+00, 7.2e+03] -dooBC.vBA=[-0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 2.364511762338053e-18, 2.019202802330256e-03, 3.577036084607244e-03, 6.399570498615503e-03, 9.497184306383133e-03, 1.25785619020462e-02, 1.731187850236893e-02, 2.1015839651227e-02, 2.640571631491184e-02, 3.148000314831734e-02, 3.631710633635521e-02, 4.257141053676605e-02, 4.740476608276367e-02, 5.346372723579409e-02, 5.89660592377186e-02, 6.360135972499847e-02, 6.928648799657822e-02, 7.311075925827026e-02, 7.764910906553268e-02, 8.107572048902512e-02, 8.364769816398621e-02, 8.617383986711502e-02, 8.698797971010208e-02, 8.839406818151474e-02, 8.841007202863693e-02, 8.703199774026871e-02, 8.427642285823822e-02, 8.01934078335762e-02, 7.484212517738342e-02, 6.830832362174988e-02, 6.069562211632729e-02, 5.212859809398651e-02, 4.272805526852608e-02, 3.253687545657158e-02, 2.23284475505352e-02, 1.124265510588884e-02, 3.661358496174216e-04, -0e+00, -0e+00, -0e+00, 0e+00, 0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 1.938274712301791e-03, 3.530164947733283e-03, 6.290168035775423e-03, 9.419101290404797e-03, 1.246192306280136e-02, 1.720992475748062e-02, 2.092587202787399e-02, 2.629397250711918e-02, 3.137604519724846e-02, 3.621141985058784e-02, 4.24625352025032e-02, 4.729479551315308e-02, 5.336077883839607e-02, 5.884015560150146e-02, 6.35233148932457e-02, 6.918527185916901e-02, 7.299146801233292e-02, 7.757354527711868e-02, 8.096665143966675e-02, 8.360476791858673e-02, 8.609335869550705e-02, 8.698907494544983e-02, 8.839675784111023e-02, 8.840988576412201e-02, 8.702767640352249e-02, 8.427999168634415e-02, 8.01912397146225e-02, 7.484626024961472e-02, 6.831908226013184e-02, 6.069524586200714e-02, 5.212065950036049e-02, 4.272400587797165e-02, 3.262576833367348e-02, 2.193364873528481e-02, 1.249312050640583e-02, 7.642266573384404e-04] +dooAB.vAB=[0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 2.364259013134956e-18, 2.019197680056095e-03, 3.577027469873428e-03, 6.399564445018768e-03, 9.497175924479961e-03, 1.257860101759434e-02, 1.731184311211109e-02, 2.101586945354939e-02, 2.64054648578167e-02, 3.147986531257629e-02, 3.632218763232231e-02, 4.257141798734665e-02, 4.740578681230545e-02, 5.346403270959856e-02, 5.895342677831651e-02, 6.360599398612976e-02, 6.928617507219315e-02, 7.311276346445084e-02, 7.765446603298187e-02, 8.107958734035492e-02, 8.364914357662201e-02, 8.617477864027023e-02, 8.698815852403641e-02, 8.840521425008774e-02, 8.841437101364136e-02, 8.702363818883896e-02, 8.426626771688461e-02, 8.019991219043732e-02, 7.484353333711624e-02, 6.83087557554245e-02, 6.069574877619743e-02, 5.212421342730522e-02, 4.27253320813179e-02, 3.265630081295967e-02, 2.19531636685133e-02, 1.111031789332628e-02, 3.654571482911706e-04, -0e+00, -0e+00, -0e+00, 0e+00, 0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 1.937941298820078e-03, 3.530015703290701e-03, 6.29404978826642e-03, 9.41852480173111e-03, 1.246106065809727e-02, 1.720867864787579e-02, 2.092623151838779e-02, 2.629333361983299e-02, 3.137635067105293e-02, 3.621045872569084e-02, 4.246017336845398e-02, 4.729977622628212e-02, 5.33667616546154e-02, 5.884290486574173e-02, 6.352262198925018e-02, 6.919004023075104e-02, 7.299509644508362e-02, 7.757993787527084e-02, 8.096981793642044e-02, 8.360349386930466e-02, 8.609528094530106e-02, 8.698978275060654e-02, 8.839672058820724e-02, 8.840982615947723e-02, 8.703872561454773e-02, 8.427824079990387e-02, 8.019634336233139e-02, 7.484562695026398e-02, 6.830912083387375e-02, 6.069795787334442e-02, 5.21245039999485e-02, 4.272439330816269e-02, 3.264545649290085e-02, 2.214504778385162e-02, 1.112910453230143e-02, 7.453840808011591e-04] +dooAB.vBA=[-0e+00, 1.111134886741638e-02, 2.211078628897667e-02, 3.27298566699028e-02, 4.302024841308594e-02, 5.219393223524094e-02, 6.068937107920647e-02, 6.840763241052628e-02, 7.489724457263947e-02, 8.018204569816589e-02, 8.438210934400558e-02, 8.701556921005249e-02, 8.833120763301849e-02, 8.839000016450882e-02, 8.699598908424377e-02, 8.623016625642776e-02, 8.368472009897232e-02, 8.11431035399437e-02, 7.769933342933655e-02, 7.317283004522324e-02, 6.933213025331497e-02, 6.365067511796951e-02, 5.898649990558624e-02, 5.349122360348701e-02, 4.742090404033661e-02, 4.25795242190361e-02, 3.632393106818199e-02, 3.147154673933981e-02, 2.638798765838144e-02, 2.099642902612686e-02, 1.727952808141708e-02, 1.253322791308165e-02, 9.459732100367546e-03, 6.338672712445259e-03, 3.548915032297373e-03, 1.964797032997012e-03, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 3.623257798608392e-04, 1.111857127398252e-02, 2.205557748675346e-02, 3.264686092734337e-02, 4.271357879042632e-02, 5.213345959782606e-02, 6.073370203375821e-02, 6.829576194286346e-02, 7.482992857694626e-02, 8.018264919519424e-02, 8.4270179271698e-02, 8.70240330696106e-02, 8.841449022293091e-02, 8.839461207389832e-02, 8.699114620685577e-02, 8.614874631166458e-02, 8.363837748765945e-02, 8.102409541606903e-02, 7.762063294649124e-02, 7.304929196834564e-02, 6.923225522041321e-02, 6.356019526720047e-02, 5.887297540903091e-02, 5.33880814909935e-02, 4.731150344014168e-02, 4.247378930449486e-02, 3.620733320713043e-02, 3.136465325951576e-02, 2.627328410744667e-02, 2.090430073440075e-02, 1.717453449964523e-02, 1.241129729896784e-02, 9.37985721975565e-03, 6.228153128176928e-03, 3.501699306070805e-03, 1.882080105133355e-03, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 7.820492028258741e-04] +dooAC.vAB=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -1.814298941647376e-25, 0e+00, 0e+00, 4.596127298195363e-11, -4.596125563471887e-11, 4.596127298195363e-11, 9.192255984169506e-11, 4.596127298195217e-11, 9.192255984169506e-11, 2.29806521034881e-10, 1.838451890723292e-10, 1.378838571097774e-10, 4.596127298195363e-11, -9.192249739164993e-11, -1.838449253943608e-10, -4.596125563471887e-11, -1.838449253943608e-10, -3.676896009885411e-10, 4.596127298195363e-11, 0e+00, 4.596127298195217e-11, 1.378838571097737e-10, 1.378838571097774e-10, -2.757672978859205e-10, -2.298061185790345e-10, 0e+00, -4.596125563471887e-11, 1.378838571097774e-10, -4.596125563471887e-11, 4.596127298195363e-11, 1.378838571097774e-10, 0e+00, 4.596127298195363e-11, 1.838451890723292e-10, 4.596127298195363e-11, -1.838449253943608e-10, 4.596127298195363e-11, 9.192255984169506e-11, 4.596127298195363e-11, 0e+00, 0e+00, 0e+00, -4.596125563471887e-11, -1.838449253943608e-10, -9.192249739164993e-11, -2.298061185790345e-10, -9.192249739164993e-11, -9.192249739165283e-11, 1.378838571097788e-10, -1.378837183319022e-10, 4.596127298195363e-11, 1.378838571097774e-10, -4.596125563471887e-11, -4.596125563471887e-11, -2.757672978859205e-10, -9.192249739164993e-11, -4.596125563471887e-11, 1.378838571097774e-10, -9.192249739164993e-11, -4.596125563471887e-11, -4.596125563471887e-11, 0e+00, 1.838451890723292e-10, -9.192249739164993e-11, -4.596125563471887e-11, 4.596127298195363e-11, 1.378838571097774e-10, -4.596125563471887e-11, -9.192249739164993e-11, -4.136507247842758e-10, 0e+00, 0e+00, -9.192249739164993e-11, 1.378838571097774e-10, -9.192249739164993e-11, 9.192255984169506e-11, 0e+00, 0e+00, 0e+00, 9.192255984169506e-11, 0e+00, -9.192249739164993e-11, 0e+00, 9.192255984169506e-11, 9.192255984169506e-11, 0e+00, -9.192249739164993e-11, 4.596127298195363e-11, 1.378838571097774e-10, -9.192249739164993e-11, 4.596127298195363e-11, 0e+00, 4.596127298195363e-11, 0e+00] +dooAC.vBA=[-0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 1.814299626421306e-25, -0e+00, -0e+00, -4.596125563471887e-11, 4.596127298195363e-11, -4.596125563471887e-11, -9.192249739164993e-11, -4.596125563471741e-11, -9.192249739164993e-11, -2.298061185790345e-10, -1.838449253943608e-10, -1.378837183318993e-10, -4.596125563471887e-11, 9.192255984169506e-11, 1.838451890723292e-10, 4.596127298195363e-11, 1.838451890723292e-10, 3.676906279448389e-10, -4.596125563471887e-11, -0e+00, -4.596125563471741e-11, -1.378837183318957e-10, -1.378837183318993e-10, 2.757678807530084e-10, 2.29806521034881e-10, -0e+00, 4.596127298195363e-11, -1.378837183318993e-10, 4.596127298195363e-11, -4.596125563471887e-11, -1.378837183318993e-10, -0e+00, -4.596125563471887e-11, -1.838449253943608e-10, -4.596125563471887e-11, 1.838451890723292e-10, -4.596125563471887e-11, -9.192249739164993e-11, -4.596125563471887e-11, -0e+00, -0e+00, -0e+00, 4.596127298195363e-11, 1.838451890723292e-10, 9.192255984169506e-11, 2.29806521034881e-10, 9.192255984169506e-11, 9.192255984169797e-11, -1.378837183319007e-10, 1.378838571097802e-10, -4.596125563471887e-11, -1.378837183318993e-10, 4.596127298195363e-11, 4.596127298195363e-11, 2.757678807530084e-10, 9.192255984169506e-11, 4.596127298195363e-11, -1.378837183318993e-10, 9.192255984169506e-11, 4.596127298195363e-11, 4.596127298195363e-11, -0e+00, -1.838449253943608e-10, 9.192255984169506e-11, 4.596127298195363e-11, -4.596125563471887e-11, -1.378837183318993e-10, 4.596127298195363e-11, 9.192255984169506e-11, 4.136520292963297e-10, -0e+00, -0e+00, 9.192255984169506e-11, -1.378837183318993e-10, 9.192255984169506e-11, -9.192249739164993e-11, -0e+00, -0e+00, -0e+00, -9.192249739164993e-11, -0e+00, 9.192255984169506e-11, -0e+00, -9.192249739164993e-11, -9.192249739164993e-11, -0e+00, 9.192255984169506e-11, -4.596125563471887e-11, -1.378837183318993e-10, 9.192255984169506e-11, -4.596125563471887e-11, -0e+00, -4.596125563471887e-11, -0e+00] +dooBC.vAB=[0e+00, 1.111134886741638e-02, 2.211078628897667e-02, 3.27298566699028e-02, 4.302024841308594e-02, 5.219393223524094e-02, 6.068937107920647e-02, 6.840763241052628e-02, 7.489724457263947e-02, 8.018204569816589e-02, 8.438210934400558e-02, 8.701556921005249e-02, 8.833121508359909e-02, 8.839000016450882e-02, 8.699598908424377e-02, 8.623016625642776e-02, 8.368472009897232e-02, 8.11431035399437e-02, 7.769933342933655e-02, 7.317283004522324e-02, 6.933213025331497e-02, 6.365067511796951e-02, 5.898649990558624e-02, 5.349122360348701e-02, 4.742090404033661e-02, 4.25795242190361e-02, 3.632393106818199e-02, 3.147154673933981e-02, 2.638798765838144e-02, 2.099642902612686e-02, 1.727952808141708e-02, 1.253322791308165e-02, 9.459732100367546e-03, 6.338672712445259e-03, 3.548915032297373e-03, 1.964797032997012e-03, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 3.623256052378565e-04, 1.111857127398252e-02, 2.205557748675346e-02, 3.264686092734337e-02, 4.271357879042632e-02, 5.213345959782606e-02, 6.073370203375821e-02, 6.829576194286346e-02, 7.482992857694626e-02, 8.018264919519424e-02, 8.4270179271698e-02, 8.70240330696106e-02, 8.841449022293091e-02, 8.839461207389832e-02, 8.699114620685577e-02, 8.614874631166458e-02, 8.363837748765945e-02, 8.102409541606903e-02, 7.762063294649124e-02, 7.304929196834564e-02, 6.923225522041321e-02, 6.356019526720047e-02, 5.887297540903091e-02, 5.33880814909935e-02, 4.731150344014168e-02, 4.247378930449486e-02, 3.620733320713043e-02, 3.136465325951576e-02, 2.627328410744667e-02, 2.090430073440075e-02, 1.717453449964523e-02, 1.241129729896784e-02, 9.37985721975565e-03, 6.228153128176928e-03, 3.501699306070805e-03, 1.882080105133355e-03, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 7.820492028258741e-04] +dooBC.vBA=[-0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 2.364259242906959e-18, 2.019197680056095e-03, 3.577027469873428e-03, 6.399564445018768e-03, 9.497175924479961e-03, 1.257860101759434e-02, 1.731184311211109e-02, 2.101586945354939e-02, 2.64054648578167e-02, 3.147986531257629e-02, 3.632218763232231e-02, 4.257141798734665e-02, 4.740578681230545e-02, 5.346403270959856e-02, 5.895342677831651e-02, 6.360599398612976e-02, 6.928617507219315e-02, 7.311276346445084e-02, 7.765446603298187e-02, 8.107958734035492e-02, 8.364914357662201e-02, 8.617477864027023e-02, 8.698815852403641e-02, 8.840521425008774e-02, 8.841437101364136e-02, 8.702363818883896e-02, 8.426626771688461e-02, 8.019991219043732e-02, 7.484353333711624e-02, 6.83087557554245e-02, 6.069574877619743e-02, 5.212421342730522e-02, 4.27253320813179e-02, 3.265630081295967e-02, 2.19531636685133e-02, 1.111031789332628e-02, 3.654573520179838e-04, -0e+00, -0e+00, -0e+00, 0e+00, 0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 1.937941298820078e-03, 3.530015703290701e-03, 6.29404978826642e-03, 9.41852480173111e-03, 1.246106065809727e-02, 1.720867864787579e-02, 2.092623151838779e-02, 2.629333361983299e-02, 3.137634694576263e-02, 3.621045872569084e-02, 4.246017336845398e-02, 4.729977622628212e-02, 5.33667616546154e-02, 5.884290486574173e-02, 6.352262198925018e-02, 6.919004023075104e-02, 7.299509644508362e-02, 7.757993787527084e-02, 8.096981793642044e-02, 8.360349386930466e-02, 8.609528094530106e-02, 8.698978275060654e-02, 8.839672058820724e-02, 8.840982615947723e-02, 8.703872561454773e-02, 8.427824079990387e-02, 8.019634336233139e-02, 7.484562695026398e-02, 6.830912083387375e-02, 6.069795787334442e-02, 5.21245039999485e-02, 4.272439330816269e-02, 3.264545649290085e-02, 2.214504778385162e-02, 1.112910453230143e-02, 7.453840808011591e-04] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Examples_OneOpenDoor.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Examples_OneOpenDoor.txt index d2eea05eeb..6b1b192798 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Examples_OneOpenDoor.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Examples_OneOpenDoor.txt @@ -1,4 +1,4 @@ -last-generated=2020-08-17 +last-generated=2022-07-06 statistics-simulation= { "linear": "0, 0", @@ -7,11 +7,11 @@ statistics-simulation= "numerical Jacobians": "0" } time=[0e+00, 7.2e+03] -dooOpe.vAB=[-1.828544399229415e-10, 7.744489703327417e-04, 3.120638197287917e-03, 6.832275073975325e-03, 1.147112995386124e-02, 1.637369394302368e-02, 2.088361419737339e-02, 2.465455979108811e-02, 2.795641124248505e-02, 3.064567036926746e-02, 3.287177532911301e-02, 3.471902385354042e-02, 3.618916124105453e-02, 3.731982782483101e-02, 3.813784942030907e-02, 3.7858035415411e-02, 3.57811227440834e-02, 3.387891501188278e-02, 3.234804794192314e-02, 3.097936511039734e-02, 2.963798679411411e-02, 2.822473831474781e-02, 2.665600925683975e-02, 2.487590722739697e-02, 2.278347499668598e-02, 2.030643075704575e-02, 1.72595176845789e-02, 1.355490274727343e-02, 9.027298539876922e-03, 3.509134752675891e-03, 3.276306902989745e-03, 1.080624479800463e-02, 1.68143343180418e-02, 2.138751931488514e-02, 2.461155876517296e-02, 2.691951207816601e-02, 2.854683063924313e-02, 2.969101816415787e-02, 3.047664649784565e-02, 3.092434629797935e-02, 3.110743127763271e-02, 3.105247393250465e-02, 3.077681548893452e-02, 3.029567375779152e-02, 2.960921823978424e-02, 2.870707400143147e-02, 2.758162096142769e-02, 2.620630525052547e-02, 2.403721213340759e-02, 2.254626899957657e-02, 2.009090967476368e-02, 1.715373434126377e-02, 1.323695294559002e-02, 8.5343848913908e-03, 3.320445539429744e-03, 3.479309612885162e-03, 1.052942685782914e-02, 1.681605540215969e-02, 2.138819918036461e-02, 2.499713562428951e-02, 2.694580517709255e-02, 2.851816080510616e-02, 2.968760393559933e-02, 3.045925311744213e-02, 3.091711737215519e-02, 3.106844611465931e-02, 3.086912631988525e-02, 3.075956366956234e-02, 3.022648766636848e-02, 2.965895086526871e-02, 2.867006883025169e-02, 2.755626104772091e-02, 2.614875696599483e-02, 2.444218099117279e-02, 2.242965623736382e-02, 1.999888382852077e-02, 1.701958850026131e-02, 1.325665973126888e-02, 9.379577822983265e-03, 3.548952518031001e-03, 3.434372367337346e-03, 1.070229988545179e-02, 1.680628396570683e-02, 2.138950116932392e-02, 2.478140778839588e-02, 2.691375836730003e-02, 2.855760045349598e-02, 2.969254180788994e-02, 3.045953623950481e-02, 3.091422095894814e-02, 3.108858689665794e-02, 3.104471787810326e-02, 3.077805414795876e-02, 3.028850443661213e-02, 2.960635535418987e-02, 2.870535291731358e-02, 2.758941240608692e-02, 2.619574964046478e-02, 2.436224929988384e-02, 2.24694050848484e-02, 2.042261138558388e-02] -dooOpe.vBA=[1.82854689723122e-10, 7.83746421802789e-04, 3.149702912196517e-03, 6.859173532575369e-03, 1.149625424295664e-02, 1.638871617615223e-02, 2.093742974102497e-02, 2.488339319825173e-02, 2.801888436079025e-02, 3.071469254791737e-02, 3.296883404254913e-02, 3.479285910725594e-02, 3.625937178730965e-02, 3.73937152326107e-02, 3.820809349417686e-02, 3.790324926376343e-02, 3.58145497739315e-02, 3.391088172793388e-02, 3.237584605813026e-02, 3.100461699068546e-02, 2.965953014791012e-02, 2.823882363736629e-02, 2.667451091110706e-02, 2.488125860691071e-02, 2.278635092079639e-02, 2.025625109672546e-02, 1.723581738770008e-02, 1.353335473686455e-02, 9.007898159325107e-03, 3.451112192124128e-03, 3.226996399462223e-03, 1.016592606902122e-02, 1.662694662809372e-02, 2.129698544740677e-02, 2.4571742862463e-02, 2.686300873756409e-02, 2.851203642785549e-02, 2.965476736426353e-02, 3.042300045490265e-02, 3.088059835135937e-02, 3.106354922056198e-02, 3.101322427392006e-02, 3.074470907449722e-02, 3.026657178997993e-02, 2.958239614963531e-02, 2.868657186627388e-02, 2.756011672317982e-02, 2.618258818984032e-02, 2.503139153122902e-02, 2.249842323362827e-02, 2.00509075075388e-02, 1.698556169867516e-02, 1.357492990791798e-02, 9.214967489242554e-03, 3.336021676659545e-03, 3.359148977324415e-03, 1.075231563299898e-02, 1.686312258243561e-02, 2.14648824185133e-02, 2.431734092533588e-02, 2.693993225693703e-02, 2.861898392438889e-02, 2.973535656929016e-02, 3.052528947591782e-02, 3.096076473593712e-02, 3.113003075122833e-02, 3.118841163814068e-02, 3.078893199563026e-02, 3.034090809524059e-02, 2.951950207352638e-02, 2.871350198984146e-02, 2.756510116159916e-02, 2.615204080939293e-02, 2.445583790540695e-02, 2.247136458754539e-02, 2.002259716391563e-02, 1.701848767697811e-02, 1.343587879091501e-02, 8.303899317979813e-03, 3.086143406108022e-03, 3.382438793778419e-03, 1.052721496671438e-02, 1.681743189692497e-02, 2.140798047184944e-02, 2.446058765053749e-02, 2.686451748013496e-02, 2.849728055298328e-02, 2.965690195560455e-02, 3.041950426995754e-02, 3.087067045271397e-02, 3.106571361422539e-02, 3.101162426173687e-02, 3.074277006089687e-02, 3.025645948946476e-02, 2.957308664917946e-02, 2.867946587502956e-02, 2.754545398056507e-02, 2.618557587265968e-02, 2.470811456441879e-02, 2.25211288779974e-02, 1.96418184787035e-02] -dooOpeClo.vAB=[-9.1644337951724e-11, 3.714342310559005e-04, 1.5570706455037e-03, 3.413593862205744e-03, 5.700282752513885e-03, 8.074872195720673e-03, 1.023960672318935e-02, 1.210264675319195e-02, 1.383906416594982e-02, 1.532804593443871e-02, 1.660740002989769e-02, 1.769467070698738e-02, 1.858022436499596e-02, 1.927342638373375e-02, 2.066400088369848e-02, 3.039553575217724e-02, 3.57811227440834e-02, 3.387891501188278e-02, 3.234804794192314e-02, 3.097936511039734e-02, 2.963798679411411e-02, 2.822473831474781e-02, 2.665600925683975e-02, 2.487590722739697e-02, 2.278347499668598e-02, 2.030643075704575e-02, 1.72595176845789e-02, 1.355490274727343e-02, 9.027298539876922e-03, 3.509134752675891e-03, 3.276306902989745e-03, 1.080624479800463e-02, 1.68143343180418e-02, 2.138751931488514e-02, 2.461155876517296e-02, 2.691951207816601e-02, 2.854683063924313e-02, 2.969101816415787e-02, 3.047664649784565e-02, 3.092434629797935e-02, 3.110743127763271e-02, 3.105247393250465e-02, 3.077681548893452e-02, 3.029567375779152e-02, 2.960921823978424e-02, 2.870707400143147e-02, 2.758162096142769e-02, 2.620630525052547e-02, 2.403721213340759e-02, 2.254626899957657e-02, 2.009090967476368e-02, 1.715373434126377e-02, 1.323695294559002e-02, 8.5343848913908e-03, 3.320445539429744e-03, 3.479309612885162e-03, 1.052942685782914e-02, 1.681605540215969e-02, 2.138819918036461e-02, 2.499713562428951e-02, 2.694580517709255e-02, 2.851816080510616e-02, 2.968760393559933e-02, 3.045925311744213e-02, 3.091711737215519e-02, 3.106844611465931e-02, 3.086912631988525e-02, 3.075956366956234e-02, 3.022648766636848e-02, 2.965895086526871e-02, 2.867006883025169e-02, 2.755626104772091e-02, 2.614875696599483e-02, 2.444218099117279e-02, 2.242965623736382e-02, 1.999888382852077e-02, 1.701958850026131e-02, 1.325665973126888e-02, 9.379577822983265e-03, 3.548952518031001e-03, 3.434372367337346e-03, 1.070229988545179e-02, 1.680628396570683e-02, 2.138950116932392e-02, 2.478140778839588e-02, 2.691375836730003e-02, 2.855760045349598e-02, 2.969254180788994e-02, 3.045953623950481e-02, 3.091422095894814e-02, 3.108858689665794e-02, 3.104471787810326e-02, 3.077805414795876e-02, 3.028850443661213e-02, 2.960635535418987e-02, 2.870535291731358e-02, 2.758941240608692e-02, 2.619574964046478e-02, 2.436224929988384e-02, 2.24694050848484e-02, 2.042261138558388e-02] -dooOpeClo.vBA=[9.164440040176913e-11, 3.760936087928712e-04, 1.571618136949837e-03, 3.426991170272231e-03, 5.712668877094984e-03, 8.082190528512001e-03, 1.026582717895508e-02, 1.221683248877526e-02, 1.387111749500036e-02, 1.536433026194572e-02, 1.66592076420784e-02, 1.773467846214771e-02, 1.861876808106899e-02, 1.931435987353325e-02, 2.070466056466104e-02, 3.043271414935589e-02, 3.58145497739315e-02, 3.391088172793388e-02, 3.237584605813026e-02, 3.100461699068546e-02, 2.965953014791012e-02, 2.823882363736629e-02, 2.667451091110706e-02, 2.488125860691071e-02, 2.278635092079639e-02, 2.025625109672546e-02, 1.723581738770008e-02, 1.353335473686455e-02, 9.007898159325107e-03, 3.451112192124128e-03, 3.226996399462223e-03, 1.016592606902122e-02, 1.662694662809372e-02, 2.129698544740677e-02, 2.4571742862463e-02, 2.686300873756409e-02, 2.851203642785549e-02, 2.965476736426353e-02, 3.042300045490265e-02, 3.088059835135937e-02, 3.106354922056198e-02, 3.101322427392006e-02, 3.074470907449722e-02, 3.026657178997993e-02, 2.958239614963531e-02, 2.868657186627388e-02, 2.756011672317982e-02, 2.618258818984032e-02, 2.503139153122902e-02, 2.249842323362827e-02, 2.00509075075388e-02, 1.698556169867516e-02, 1.357492990791798e-02, 9.214967489242554e-03, 3.336021676659545e-03, 3.359148977324415e-03, 1.075231563299898e-02, 1.686312258243561e-02, 2.14648824185133e-02, 2.431734092533588e-02, 2.693993225693703e-02, 2.861898392438889e-02, 2.973535656929016e-02, 3.052528947591782e-02, 3.096076473593712e-02, 3.113003075122833e-02, 3.118841163814068e-02, 3.078893199563026e-02, 3.034090809524059e-02, 2.951950207352638e-02, 2.871350198984146e-02, 2.756510116159916e-02, 2.615204080939293e-02, 2.445583790540695e-02, 2.247136458754539e-02, 2.002259716391563e-02, 1.701848767697811e-02, 1.343587879091501e-02, 8.303899317979813e-03, 3.086143406108022e-03, 3.382438793778419e-03, 1.052721496671438e-02, 1.681743189692497e-02, 2.140798047184944e-02, 2.446058765053749e-02, 2.686451748013496e-02, 2.849728055298328e-02, 2.965690195560455e-02, 3.041950426995754e-02, 3.087067045271397e-02, 3.106571361422539e-02, 3.101162426173687e-02, 3.074277006089687e-02, 3.025645948946476e-02, 2.957308664917946e-02, 2.867946587502956e-02, 2.754545398056507e-02, 2.618557587265968e-02, 2.470811456441879e-02, 2.25211288779974e-02, 1.96418184787035e-02] -dooOpe.port_a1.m_flow=[-4.161353484022356e-10, 1.762488624081016e-03, 7.102153729647398e-03, 1.555009838193655e-02, 2.610969915986061e-02, 3.727133572101593e-02, 4.754110425710678e-02, 5.613024160265923e-02, 6.365261971950531e-02, 6.978099048137665e-02, 7.485508173704147e-02, 7.906641066074371e-02, 8.241861313581467e-02, 8.499711751937866e-02, 8.686283230781555e-02, 8.622457832098007e-02, 8.148808777332306e-02, 7.715097814798355e-02, 7.366114854812622e-02, 7.054147869348526e-02, 6.748443096876144e-02, 6.426398456096649e-02, 6.068969517946243e-02, 5.66343180835247e-02, 5.186809226870537e-02, 4.622659459710121e-02, 3.928830102086067e-02, 3.08535601943731e-02, 2.054652571678158e-02, 7.986355572938919e-03, 7.455821614712477e-03, 2.458915114402771e-02, 3.825666755437851e-02, 4.865766689181328e-02, 5.598857626318932e-02, 6.1235461384058e-02, 6.49343878030777e-02, 6.753486394882202e-02, 6.932026892900467e-02, 7.033763080835342e-02, 7.075367122888565e-02, 7.062878459692001e-02, 7.000236958265305e-02, 6.890898197889328e-02, 6.734894961118698e-02, 6.529858708381653e-02, 6.274048984050751e-02, 5.96141405403614e-02, 5.468207225203514e-02, 5.129263177514076e-02, 4.570894688367844e-02, 3.902865573763847e-02, 3.011884354054928e-02, 1.942006684839725e-02, 7.556259632110505e-03, 7.918470539152723e-03, 2.396597713232051e-02, 3.827857226133347e-02, 4.869028180837631e-02, 5.691002309322357e-02, 6.134993210434914e-02, 6.493266671895981e-02, 6.759753078222275e-02, 6.935612857341766e-02, 7.039962708950043e-02, 7.074455171823502e-02, 7.029053568840027e-02, 7.004052400588989e-02, 6.882569193840027e-02, 6.753205507993698e-02, 6.527876853942871e-02, 6.274081766605377e-02, 5.953402072191238e-02, 5.564630776643753e-02, 5.106223747134209e-02, 4.552624374628067e-02, 3.874199464917183e-02, 3.017461113631725e-02, 2.134827710688114e-02, 8.076958358287811e-03, 7.815511897206306e-03, 2.435258589684963e-02, 3.82382944226265e-02, 4.866211861371994e-02, 5.63749261200428e-02, 6.12223744392395e-02, 6.495889276266098e-02, 6.753832101821899e-02, 6.928137689828873e-02, 7.031462341547012e-02, 7.071082293987274e-02, 7.061114907264709e-02, 7.000518590211868e-02, 6.88926950097084e-02, 6.734244525432587e-02, 6.529468297958374e-02, 6.275821477174759e-02, 5.959013476967812e-02, 5.542149767279625e-02, 5.111779272556305e-02, 4.646363854408264e-02] -dooOpe.port_a2.m_flow=[4.161359312693236e-10, 1.783611485734582e-03, 7.167722098529339e-03, 1.56085379421711e-02, 2.615886740386486e-02, 3.728849440813065e-02, 4.763409867882729e-02, 5.66067397594452e-02, 6.373443454504013e-02, 6.986124068498611e-02, 7.498312741518021e-02, 7.912681251764297e-02, 8.24577584862709e-02, 8.503387868404388e-02, 8.688313513994217e-02, 8.619088679552078e-02, 8.144741505384445e-02, 7.712323218584061e-02, 7.36357644200325e-02, 7.052002102136612e-02, 6.746328622102737e-02, 6.423430144786835e-02, 6.067849695682526e-02, 5.660173296928406e-02, 5.183852463960648e-02, 4.60849329829216e-02, 3.921529650688171e-02, 3.079319931566712e-02, 2.049751020967957e-02, 7.853599265217781e-03, 7.344221696257591e-03, 2.313856407999992e-02, 3.784802928566933e-02, 4.848254844546318e-02, 5.594146251678467e-02, 6.11613392829895e-02, 6.491865217685699e-02, 6.752268970012665e-02, 6.927348673343658e-02, 7.031639665365219e-02, 7.073336839675903e-02, 7.061865925788879e-02, 7.000666856765747e-02, 6.891696155071259e-02, 6.735775619745255e-02, 6.531634926795959e-02, 6.274961680173874e-02, 5.961111187934875e-02, 5.698785185813904e-02, 5.121886730194092e-02, 4.564472660422325e-02, 3.86645719408989e-02, 3.089907951653004e-02, 2.097362652420998e-02, 7.59235629811874e-03, 7.644326891750207e-03, 2.446638420224198e-02, 3.836759552359581e-02, 4.883358627557755e-02, 5.53191751241684e-02, 6.128183007240295e-02, 6.509844213724136e-02, 6.763564050197601e-02, 6.943082809448242e-02, 7.042039185762405e-02, 7.080504298210144e-02, 7.093797624111176e-02, 7.002989947795868e-02, 6.90118670463562e-02, 6.714489310979843e-02, 6.531322002410889e-02, 6.270292401313782e-02, 5.949076637625694e-02, 5.56345172226429e-02, 5.112230032682419e-02, 4.555358365178108e-02, 3.872097283601761e-02, 3.057149797677994e-02, 1.889560371637344e-02, 7.02306441962719e-03, 7.698004133999348e-03, 2.396093495190144e-02, 3.828169032931328e-02, 4.873528704047203e-02, 5.568844079971313e-02, 6.116477027535439e-02, 6.488505005836487e-02, 6.752755492925644e-02, 6.926550716161728e-02, 7.029376924037933e-02, 7.073827832937241e-02, 7.06150159239769e-02, 7.000225037336349e-02, 6.88939169049263e-02, 6.73365443944931e-02, 6.530015915632248e-02, 6.271623075008392e-02, 5.961790680885315e-02, 5.625185742974281e-02, 5.127052962779999e-02, 4.471342638134956e-02] -dooOpeClo.port_a1.m_flow=[-1.165218366672854e-13, 4.722674589174858e-07, 1.979828311959864e-06, 4.340623945608968e-06, 7.248775091284188e-06, 1.026919744617771e-05, 1.302325199503684e-05, 1.539403820061125e-05, 1.760411214490887e-05, 1.949967372638639e-05, 2.112867514370009e-05, 2.251331898150966e-05, 2.364123974984977e-05, 2.452426815580111e-05, 3.162165870890072e-03, 4.616500437259674e-02, 8.148808777332306e-02, 7.715097814798355e-02, 7.366114854812622e-02, 7.054147869348526e-02, 6.748443096876144e-02, 6.426398456096649e-02, 6.068969517946243e-02, 5.66343180835247e-02, 5.186809226870537e-02, 4.622659459710121e-02, 3.928830102086067e-02, 3.08535601943731e-02, 2.054652571678158e-02, 7.986355572938919e-03, 7.455821614712477e-03, 2.458915114402771e-02, 3.825666755437851e-02, 4.865766689181328e-02, 5.598857626318932e-02, 6.1235461384058e-02, 6.49343878030777e-02, 6.753486394882202e-02, 6.932026892900467e-02, 7.033763080835342e-02, 7.075367122888565e-02, 7.062878459692001e-02, 7.000236958265305e-02, 6.890898197889328e-02, 6.734894961118698e-02, 6.529858708381653e-02, 6.274048984050751e-02, 5.96141405403614e-02, 5.468207225203514e-02, 5.129263177514076e-02, 4.570894688367844e-02, 3.902865573763847e-02, 3.011884354054928e-02, 1.942006684839725e-02, 7.556259632110505e-03, 7.918470539152723e-03, 2.396597713232051e-02, 3.827857226133347e-02, 4.869028180837631e-02, 5.691002309322357e-02, 6.134993210434914e-02, 6.493266671895981e-02, 6.759753078222275e-02, 6.935612857341766e-02, 7.039962708950043e-02, 7.074455171823502e-02, 7.029053568840027e-02, 7.004052400588989e-02, 6.882569193840027e-02, 6.753205507993698e-02, 6.527876853942871e-02, 6.274081766605377e-02, 5.953402072191238e-02, 5.564630776643753e-02, 5.106223747134209e-02, 4.552624374628067e-02, 3.874199464917183e-02, 3.017461113631725e-02, 2.134827710688114e-02, 8.076958358287811e-03, 7.815511897206306e-03, 2.435258589684963e-02, 3.82382944226265e-02, 4.866211861371994e-02, 5.63749261200428e-02, 6.12223744392395e-02, 6.495889276266098e-02, 6.753832101821899e-02, 6.928137689828873e-02, 7.031462341547012e-02, 7.071082293987274e-02, 7.061114907264709e-02, 7.000518590211868e-02, 6.88926950097084e-02, 6.734244525432587e-02, 6.529468297958374e-02, 6.275821477174759e-02, 5.959013476967812e-02, 5.542149767279625e-02, 5.111779272556305e-02, 4.646363854408264e-02] -dooOpeClo.port_a2.m_flow=[1.165219179824484e-13, 4.78181959806534e-07, 1.998164179894957e-06, 4.356883891887264e-06, 7.262299277499551e-06, 1.027381040330511e-05, 1.304851411987329e-05, 1.552707544760779e-05, 1.762817191774957e-05, 1.952433740370907e-05, 2.116834366461262e-05, 2.253353886771947e-05, 2.365564250794705e-05, 2.453839988447726e-05, 3.16330255009239e-03, 4.614829272031784e-02, 8.144741505384445e-02, 7.712323218584061e-02, 7.36357644200325e-02, 7.052002102136612e-02, 6.746328622102737e-02, 6.423430144786835e-02, 6.067849695682526e-02, 5.660173296928406e-02, 5.183852463960648e-02, 4.60849329829216e-02, 3.921529650688171e-02, 3.079319931566712e-02, 2.049751020967957e-02, 7.853599265217781e-03, 7.344221696257591e-03, 2.313856407999992e-02, 3.784802928566933e-02, 4.848254844546318e-02, 5.594146251678467e-02, 6.11613392829895e-02, 6.491865217685699e-02, 6.752268970012665e-02, 6.927348673343658e-02, 7.031639665365219e-02, 7.073336839675903e-02, 7.061865925788879e-02, 7.000666856765747e-02, 6.891696155071259e-02, 6.735775619745255e-02, 6.531634926795959e-02, 6.274961680173874e-02, 5.961111187934875e-02, 5.698785185813904e-02, 5.121886730194092e-02, 4.564472660422325e-02, 3.86645719408989e-02, 3.089907951653004e-02, 2.097362652420998e-02, 7.59235629811874e-03, 7.644326891750207e-03, 2.446638420224198e-02, 3.836759552359581e-02, 4.883358627557755e-02, 5.53191751241684e-02, 6.128183007240295e-02, 6.509844213724136e-02, 6.763564050197601e-02, 6.943082809448242e-02, 7.042039185762405e-02, 7.080504298210144e-02, 7.093797624111176e-02, 7.002989947795868e-02, 6.90118670463562e-02, 6.714489310979843e-02, 6.531322002410889e-02, 6.270292401313782e-02, 5.949076637625694e-02, 5.56345172226429e-02, 5.112230032682419e-02, 4.555358365178108e-02, 3.872097283601761e-02, 3.057149797677994e-02, 1.889560371637344e-02, 7.02306441962719e-03, 7.698004133999348e-03, 2.396093495190144e-02, 3.828169032931328e-02, 4.873528704047203e-02, 5.568844079971313e-02, 6.116477027535439e-02, 6.488505005836487e-02, 6.752755492925644e-02, 6.926550716161728e-02, 7.029376924037933e-02, 7.073827832937241e-02, 7.06150159239769e-02, 7.000225037336349e-02, 6.88939169049263e-02, 6.73365443944931e-02, 6.530015915632248e-02, 6.271623075008392e-02, 5.961790680885315e-02, 5.625185742974281e-02, 5.127052962779999e-02, 4.471342638134956e-02] +dooOpe.vAB=[-1.828544676785171e-10, 7.738724234513938e-04, 3.125410294160247e-03, 6.830665748566389e-03, 1.146396342664957e-02, 1.637026108801365e-02, 2.088678628206253e-02, 2.473408170044422e-02, 2.795377559959888e-02, 3.064865432679653e-02, 3.288917988538742e-02, 3.471957147121429e-02, 3.618906438350677e-02, 3.732148930430412e-02, 3.813828900456429e-02, 3.785824030637741e-02, 3.578127548098564e-02, 3.387933969497681e-02, 3.235899284482002e-02, 3.099090605974197e-02, 2.964062243700027e-02, 2.823447622358799e-02, 2.67078559845686e-02, 2.488956972956657e-02, 2.28570494800806e-02, 2.03363411128521e-02, 1.729681342840195e-02, 1.35919814929366e-02, 9.064036421477779e-03, 3.526652697473764e-03, 3.225143998861313e-03, 1.046917680650949e-02, 1.671441458165646e-02, 2.137749642133713e-02, 2.433623746037483e-02, 2.686706930398941e-02, 2.851073257625103e-02, 2.970709465444088e-02, 3.05926576256752e-02, 3.099194727838039e-02, 3.118353523313999e-02, 3.108584508299828e-02, 3.080393187701702e-02, 3.031665086746216e-02, 2.962394990026951e-02, 2.871927618980408e-02, 2.758879959583282e-02, 2.62435507029295e-02, 2.469518966972828e-02, 2.289053797721863e-02, 1.990865170955658e-02, 1.693118736147881e-02, 1.326133031398058e-02, 8.746428415179253e-03, 3.203009022399744e-03, 3.521373495459603e-03, 1.07204364612699e-02, 1.688804663717747e-02, 2.145093493163586e-02, 2.462301589548588e-02, 2.697916887700558e-02, 2.872840873897076e-02, 2.967661805450916e-02, 3.046724013984203e-02, 3.095770813524723e-02, 3.11156939715147e-02, 3.096762485802174e-02, 3.073766082525253e-02, 3.025712445378304e-02, 2.956936880946159e-02, 2.866893075406551e-02, 2.75426059961319e-02, 2.616814710199833e-02, 2.450774423778057e-02, 2.249895595014095e-02, 2.005336992442608e-02, 1.705931127071381e-02, 1.338468864560127e-02, 8.861906826496124e-03, 3.344761673361063e-03, 3.401741152629256e-03, 1.061232108622789e-02, 1.68117955327034e-02, 2.149690128862858e-02, 2.477922663092613e-02, 2.692266553640366e-02, 2.828356064856052e-02, 2.98185758292675e-02, 3.046296536922455e-02, 3.100667148828506e-02, 3.116408362984657e-02, 3.148139268159866e-02, 3.100752830505371e-02, 3.04546020925045e-02, 2.97454446554184e-02, 2.877971902489662e-02, 2.768254093825817e-02, 2.622913755476475e-02, 2.455833740532398e-02, 2.253987081348896e-02, 2.008421905338764e-02] +dooOpe.vBA=[1.828547174786976e-10, 7.831879775039852e-04, 3.143951529636979e-03, 6.859888322651386e-03, 1.150285173207521e-02, 1.639212667942047e-02, 2.093336172401905e-02, 2.480388060212136e-02, 2.802429161965847e-02, 3.071622923016548e-02, 3.295490145683289e-02, 3.479481860995293e-02, 3.626083210110664e-02, 3.739325329661369e-02, 3.820820525288582e-02, 3.790393471717834e-02, 3.581491112709045e-02, 3.391072154045105e-02, 3.2366082072258e-02, 3.100022859871387e-02, 2.966245636343956e-02, 2.82523687928915e-02, 2.664694935083389e-02, 2.489574253559113e-02, 2.274950966238976e-02, 2.03363448381424e-02, 1.729214005172253e-02, 1.358266547322272e-02, 9.050333872437461e-03, 3.509139642119408e-03, 3.203615779057145e-03, 1.044358219951391e-02, 1.668607443571091e-02, 2.129002101719379e-02, 2.480512857437134e-02, 2.686589024960995e-02, 2.850464358925819e-02, 2.962121739983559e-02, 3.033371455967426e-02, 3.092558868229389e-02, 3.108447231352329e-02, 3.105215728282928e-02, 3.077248856425285e-02, 3.028795309364796e-02, 2.959845401346684e-02, 2.869737520813942e-02, 2.757067792117596e-02, 2.615297958254814e-02, 2.431459538638592e-02, 2.190995402634144e-02, 1.990863867104053e-02, 1.693574897944927e-02, 1.327051967382431e-02, 8.760255761444569e-03, 3.220343030989131e-03, 3.542202292010234e-03, 1.074521336704497e-02, 1.691674068570137e-02, 2.148256823420525e-02, 2.474603429436684e-02, 2.693347260355949e-02, 2.83511821180582e-02, 2.970815263688564e-02, 3.041628189384937e-02, 3.074869699776173e-02, 3.084796108305454e-02, 3.089498728513718e-02, 3.076904080808163e-02, 3.028575517237186e-02, 2.959480509161949e-02, 2.86907684057951e-02, 2.756050787866116e-02, 2.618182636797428e-02, 2.451699040830135e-02, 2.250362373888493e-02, 2.005335688591003e-02, 1.705449819564819e-02, 1.337542291730642e-02, 8.875505998730659e-03, 3.32853919826448e-03, 3.379244590178132e-03, 1.058685686439276e-02, 1.678239740431309e-02, 2.128609269857407e-02, 2.452687174081802e-02, 2.695646695792675e-02, 2.873741276562214e-02, 2.938689291477203e-02, 3.044602647423744e-02, 3.083926625549793e-02, 3.107454441487789e-02, 3.082453832030296e-02, 3.097608871757984e-02, 3.041941486299038e-02, 2.964180521667004e-02, 2.874899469316006e-02, 2.753360569477081e-02, 2.621542848646641e-02, 2.454908192157745e-02, 2.253521606326103e-02, 2.008415013551712e-02] +dooOpeClo.vAB=[-9.164435876840571e-11, 3.711304161697626e-04, 1.559458905830979e-03, 3.412792924791574e-03, 5.696751177310944e-03, 8.073199540376663e-03, 1.024115458130836e-02, 1.214231457561255e-02, 1.383775006979704e-02, 1.532970648258924e-02, 1.661677099764347e-02, 1.769503578543663e-02, 1.858020946383476e-02, 1.927438378334045e-02, 2.066427469253541e-02, 3.039572015404701e-02, 3.578127548098564e-02, 3.387933969497681e-02, 3.235899284482002e-02, 3.099090605974197e-02, 2.964062243700027e-02, 2.823447622358799e-02, 2.67078559845686e-02, 2.488956972956657e-02, 2.28570494800806e-02, 2.03363411128521e-02, 1.729681342840195e-02, 1.35919814929366e-02, 9.064036421477779e-03, 3.526652697473764e-03, 3.225143998861313e-03, 1.046917680650949e-02, 1.671441458165646e-02, 2.137749642133713e-02, 2.433623746037483e-02, 2.686706930398941e-02, 2.851073257625103e-02, 2.970709465444088e-02, 3.05926576256752e-02, 3.099194727838039e-02, 3.118353523313999e-02, 3.108584508299828e-02, 3.080393187701702e-02, 3.031665086746216e-02, 2.962394990026951e-02, 2.871927618980408e-02, 2.758879959583282e-02, 2.62435507029295e-02, 2.469518966972828e-02, 2.289053797721863e-02, 1.990865170955658e-02, 1.693118736147881e-02, 1.326133031398058e-02, 8.746428415179253e-03, 3.203009022399744e-03, 3.521373495459603e-03, 1.07204364612699e-02, 1.688804663717747e-02, 2.145093493163586e-02, 2.462301589548588e-02, 2.697916887700558e-02, 2.872840873897076e-02, 2.967661805450916e-02, 3.046724013984203e-02, 3.095770813524723e-02, 3.11156939715147e-02, 3.096762485802174e-02, 3.073766082525253e-02, 3.025712445378304e-02, 2.956936880946159e-02, 2.866893075406551e-02, 2.75426059961319e-02, 2.616814710199833e-02, 2.450774423778057e-02, 2.249895595014095e-02, 2.005336992442608e-02, 1.705931127071381e-02, 1.338468864560127e-02, 8.861906826496124e-03, 3.344761673361063e-03, 3.401741152629256e-03, 1.061232108622789e-02, 1.68117955327034e-02, 2.149690128862858e-02, 2.477922663092613e-02, 2.692266553640366e-02, 2.828356064856052e-02, 2.98185758292675e-02, 3.046296536922455e-02, 3.100667148828506e-02, 3.116408362984657e-02, 3.148139268159866e-02, 3.100752830505371e-02, 3.04546020925045e-02, 2.97454446554184e-02, 2.877971902489662e-02, 2.768254093825817e-02, 2.622913755476475e-02, 2.455833740532398e-02, 2.253987081348896e-02, 2.008421905338764e-02] +dooOpeClo.vBA=[9.164442121845084e-11, 3.757988451980054e-04, 1.568739069625735e-03, 3.427347866818309e-03, 5.715921986848116e-03, 8.08385293930769e-03, 1.026384625583887e-02, 1.217714417725802e-02, 1.38739300891757e-02, 1.536523085087538e-02, 1.665185205638409e-02, 1.77358090877533e-02, 1.861960999667645e-02, 1.931414194405079e-02, 2.070474252104761e-02, 3.04332934319973e-02, 3.581491112709045e-02, 3.391072154045105e-02, 3.2366082072258e-02, 3.100022859871387e-02, 2.966245636343956e-02, 2.82523687928915e-02, 2.664694935083389e-02, 2.489574253559113e-02, 2.274950966238976e-02, 2.03363448381424e-02, 1.729214005172253e-02, 1.358266547322272e-02, 9.050333872437461e-03, 3.509139642119408e-03, 3.203615779057145e-03, 1.044358219951391e-02, 1.668607443571091e-02, 2.129002101719379e-02, 2.480512857437134e-02, 2.686589024960995e-02, 2.850464358925819e-02, 2.962121739983559e-02, 3.033371455967426e-02, 3.092558868229389e-02, 3.108447231352329e-02, 3.105215728282928e-02, 3.077248856425285e-02, 3.028795309364796e-02, 2.959845401346684e-02, 2.869737520813942e-02, 2.757067792117596e-02, 2.615297958254814e-02, 2.431459538638592e-02, 2.190995402634144e-02, 1.990863867104053e-02, 1.693574897944927e-02, 1.327051967382431e-02, 8.760255761444569e-03, 3.220343030989131e-03, 3.542202292010234e-03, 1.074521336704497e-02, 1.691674068570137e-02, 2.148256823420525e-02, 2.474603429436684e-02, 2.693347260355949e-02, 2.83511821180582e-02, 2.970815263688564e-02, 3.041628189384937e-02, 3.074869699776173e-02, 3.084796108305454e-02, 3.089498728513718e-02, 3.076904080808163e-02, 3.028575517237186e-02, 2.959480509161949e-02, 2.86907684057951e-02, 2.756050787866116e-02, 2.618182636797428e-02, 2.451699040830135e-02, 2.250362373888493e-02, 2.005335688591003e-02, 1.705449819564819e-02, 1.337542291730642e-02, 8.875505998730659e-03, 3.32853919826448e-03, 3.379244590178132e-03, 1.058685686439276e-02, 1.678239740431309e-02, 2.128609269857407e-02, 2.452687174081802e-02, 2.695646695792675e-02, 2.873741276562214e-02, 2.938689291477203e-02, 3.044602647423744e-02, 3.083926625549793e-02, 3.107454441487789e-02, 3.082453832030296e-02, 3.097608871757984e-02, 3.041941486299038e-02, 2.964180521667004e-02, 2.874899469316006e-02, 2.753360569477081e-02, 2.621542848646641e-02, 2.454908192157745e-02, 2.253521606326103e-02, 2.008415013551712e-02] +dooOpe.port_a1.m_flow=[-4.161354316689625e-10, 1.761176623404026e-03, 7.113014347851276e-03, 1.554643549025059e-02, 2.60933879762888e-02, 3.726352378726006e-02, 4.75483275949955e-02, 5.631128326058388e-02, 6.364662200212479e-02, 6.978778541088104e-02, 7.489471882581711e-02, 7.9067662358284e-02, 8.241838961839676e-02, 8.50009024143219e-02, 8.686383813619614e-02, 8.622505515813828e-02, 8.148844540119171e-02, 7.715194672346115e-02, 7.368606328964233e-02, 7.056776434183121e-02, 6.749043613672256e-02, 6.428617238998413e-02, 6.080775335431099e-02, 5.666544660925865e-02, 5.20356111228466e-02, 4.629473388195038e-02, 3.937323018908501e-02, 3.09379771351814e-02, 2.06301528960466e-02, 8.026228286325932e-03, 7.339394651353359e-03, 2.382217720150948e-02, 3.802933916449547e-02, 4.863487184047699e-02, 5.53622767329216e-02, 6.111620366573334e-02, 6.485231965780258e-02, 6.757144629955292e-02, 6.958411633968353e-02, 7.049126923084259e-02, 7.092665880918503e-02, 7.070460915565491e-02, 7.006398588418961e-02, 6.8956658244133e-02, 6.738242506980896e-02, 6.532632559537888e-02, 6.275680661201477e-02, 5.969886109232903e-02, 5.617894232273102e-02, 5.207597091794014e-02, 4.529443383216858e-02, 3.852239996194839e-02, 3.01743745803833e-02, 1.990260742604733e-02, 7.289022672921329e-03, 8.014214225113496e-03, 2.440076507627974e-02, 3.844248875975609e-02, 4.883313924074173e-02, 5.605831742286682e-02, 6.142591312527657e-02, 6.541132181882858e-02, 6.757247447967529e-02, 6.93742036819458e-02, 7.049187272787094e-02, 7.08518847823143e-02, 7.051461935043335e-02, 6.99906051158905e-02, 6.889542937278748e-02, 6.732805818319321e-02, 6.527615338563919e-02, 6.270971894264221e-02, 5.957820266485214e-02, 5.579565837979317e-02, 5.122005939483643e-02, 4.565031453967094e-02, 3.883243724703789e-02, 3.046604432165623e-02, 2.017004601657391e-02, 7.612248416990042e-03, 7.741255685687065e-03, 2.414784766733646e-02, 3.825084120035172e-02, 4.890646785497665e-02, 5.636991932988167e-02, 6.124255806207657e-02, 6.433557718992233e-02, 6.782513856887817e-02, 6.928914040327072e-02, 7.052484154701233e-02, 7.088245451450348e-02, 7.160408794879913e-02, 7.052663713693619e-02, 6.927015632390976e-02, 6.765861809253693e-02, 6.546370685100555e-02, 6.296999007463455e-02, 5.966603755950928e-02, 5.586755648255348e-02, 5.127805843949318e-02, 4.569371789693832e-02] +dooOpe.port_a2.m_flow=[4.161359867804748e-10, 1.782340579666197e-03, 7.154634222388268e-03, 1.561016496270895e-02, 2.617388032376766e-02, 3.729625418782234e-02, 4.762484505772591e-02, 5.642585456371308e-02, 6.374672800302505e-02, 6.986472755670547e-02, 7.495144009590149e-02, 7.913126051425934e-02, 8.246107399463654e-02, 8.503282815217972e-02, 8.688339591026306e-02, 8.619245141744614e-02, 8.144824206829071e-02, 7.712285965681076e-02, 7.361356168985367e-02, 7.051002979278564e-02, 6.746993213891983e-02, 6.426509469747543e-02, 6.061577796936035e-02, 5.663466453552246e-02, 5.175469443202019e-02, 4.626710340380669e-02, 3.934341296553612e-02, 3.09053789824247e-02, 2.05940622836351e-02, 7.985646836459637e-03, 7.291006855666637e-03, 2.377052418887615e-02, 3.798260912299156e-02, 4.846668988466263e-02, 5.64727745950222e-02, 6.116785854101181e-02, 6.490178406238556e-02, 6.74462765455246e-02, 6.907021254301071e-02, 7.041895389556885e-02, 7.078111916780472e-02, 7.070739567279816e-02, 7.006998360157013e-02, 6.896568834781647e-02, 6.739434599876404e-02, 6.534096598625183e-02, 6.277367472648621e-02, 5.954370647668839e-02, 5.535591393709183e-02, 4.987905919551849e-02, 4.532071948051453e-02, 3.855109587311745e-02, 3.020612150430679e-02, 1.993864960968494e-02, 7.32907559722653e-03, 8.060884661972627e-03, 2.445019036531458e-02, 3.848955035209656e-02, 4.887378215789795e-02, 5.629437416791916e-02, 6.126711890101433e-02, 6.448933482170105e-02, 6.757379323244095e-02, 6.918298453092575e-02, 6.993822008371353e-02, 7.016372680664062e-02, 7.027079164981842e-02, 6.998469680547714e-02, 6.888644397258759e-02, 6.731618940830231e-02, 6.526152789592743e-02, 6.269249320030212e-02, 5.955848470330238e-02, 5.57735487818718e-02, 5.119563639163971e-02, 4.56235259771347e-02, 3.880288079380989e-02, 3.043392486870289e-02, 2.019629254937172e-02, 7.574677467346191e-03, 7.690732832998037e-03, 2.409667894244194e-02, 3.820192813873291e-02, 4.84578013420105e-02, 5.583938211202621e-02, 6.137419864535332e-02, 6.543177366256714e-02, 6.691261380910873e-02, 6.932593137025833e-02, 7.022231817245483e-02, 7.075847685337067e-02, 7.018927484750748e-02, 7.053401321172714e-02, 6.926529854536057e-02, 6.749321520328522e-02, 6.545860320329666e-02, 6.268931925296783e-02, 5.968592315912247e-02, 5.588982254266739e-02, 5.130264163017273e-02, 4.57204133272171e-02] +dooOpeClo.port_a1.m_flow=[-1.165218502198126e-13, 4.718811510429077e-07, 1.982864887395408e-06, 4.339605766290333e-06, 7.244284006446833e-06, 1.026707013807027e-05, 1.302522014157148e-05, 1.544449332868681e-05, 1.760244231263641e-05, 1.950178739207331e-05, 2.114060043822974e-05, 2.251378464279696e-05, 2.364122155995574e-05, 2.452548869769089e-05, 3.162207780405929e-03, 4.616528376936913e-02, 8.148844540119171e-02, 7.715194672346115e-02, 7.368606328964233e-02, 7.056776434183121e-02, 6.749043613672256e-02, 6.428617238998413e-02, 6.080775335431099e-02, 5.666544660925865e-02, 5.20356111228466e-02, 4.629473388195038e-02, 3.937323018908501e-02, 3.09379771351814e-02, 2.06301528960466e-02, 8.026228286325932e-03, 7.339394651353359e-03, 2.382217720150948e-02, 3.802933916449547e-02, 4.863487184047699e-02, 5.53622767329216e-02, 6.111620366573334e-02, 6.485231965780258e-02, 6.757144629955292e-02, 6.958411633968353e-02, 7.049126923084259e-02, 7.092665880918503e-02, 7.070460915565491e-02, 7.006398588418961e-02, 6.8956658244133e-02, 6.738242506980896e-02, 6.532632559537888e-02, 6.275680661201477e-02, 5.969886109232903e-02, 5.617894232273102e-02, 5.207597091794014e-02, 4.529443383216858e-02, 3.852239996194839e-02, 3.01743745803833e-02, 1.990260742604733e-02, 7.289022672921329e-03, 8.014214225113496e-03, 2.440076507627974e-02, 3.844248875975609e-02, 4.883313924074173e-02, 5.605831742286682e-02, 6.142591312527657e-02, 6.541132181882858e-02, 6.757247447967529e-02, 6.93742036819458e-02, 7.049187272787094e-02, 7.08518847823143e-02, 7.051461935043335e-02, 6.99906051158905e-02, 6.889542937278748e-02, 6.732805818319321e-02, 6.527615338563919e-02, 6.270971894264221e-02, 5.957820266485214e-02, 5.579565837979317e-02, 5.122005939483643e-02, 4.565031453967094e-02, 3.883243724703789e-02, 3.046604432165623e-02, 2.017004601657391e-02, 7.612248416990042e-03, 7.741255685687065e-03, 2.414784766733646e-02, 3.825084120035172e-02, 4.890646785497665e-02, 5.636991932988167e-02, 6.124255806207657e-02, 6.433557718992233e-02, 6.782513856887817e-02, 6.928914040327072e-02, 7.052484154701233e-02, 7.088245451450348e-02, 7.160408794879913e-02, 7.052663713693619e-02, 6.927015632390976e-02, 6.765861809253693e-02, 6.546370685100555e-02, 6.296999007463455e-02, 5.966603755950928e-02, 5.586755648255348e-02, 5.127805843949318e-02, 4.569371789693832e-02] +dooOpeClo.port_a2.m_flow=[1.165219315349755e-13, 4.778071911459847e-07, 1.994503691093996e-06, 4.357337274996098e-06, 7.266435659403214e-06, 1.027592315949732e-05, 1.304599754803348e-05, 1.547663305245806e-05, 1.763174623192754e-05, 1.95254797290545e-05, 2.11589958780678e-05, 2.253497223136947e-05, 2.365671025472693e-05, 2.453812157909852e-05, 3.163314890116503e-03, 4.614917188882828e-02, 8.144824206829071e-02, 7.712285965681076e-02, 7.361356168985367e-02, 7.051002979278564e-02, 6.746993213891983e-02, 6.426509469747543e-02, 6.061577796936035e-02, 5.663466453552246e-02, 5.175469443202019e-02, 4.626710340380669e-02, 3.934341296553612e-02, 3.09053789824247e-02, 2.05940622836351e-02, 7.985646836459637e-03, 7.291006855666637e-03, 2.377052418887615e-02, 3.798260912299156e-02, 4.846668988466263e-02, 5.64727745950222e-02, 6.116785854101181e-02, 6.490178406238556e-02, 6.74462765455246e-02, 6.907021254301071e-02, 7.041895389556885e-02, 7.078111916780472e-02, 7.070739567279816e-02, 7.006998360157013e-02, 6.896568834781647e-02, 6.739434599876404e-02, 6.534096598625183e-02, 6.277367472648621e-02, 5.954370647668839e-02, 5.535591393709183e-02, 4.987905919551849e-02, 4.532071948051453e-02, 3.855109587311745e-02, 3.020612150430679e-02, 1.993864960968494e-02, 7.32907559722653e-03, 8.060884661972627e-03, 2.445019036531458e-02, 3.848955035209656e-02, 4.887378215789795e-02, 5.629437416791916e-02, 6.126711890101433e-02, 6.448933482170105e-02, 6.757379323244095e-02, 6.918298453092575e-02, 6.993822008371353e-02, 7.016372680664062e-02, 7.027079164981842e-02, 6.998469680547714e-02, 6.888644397258759e-02, 6.731618940830231e-02, 6.526152789592743e-02, 6.269249320030212e-02, 5.955848470330238e-02, 5.57735487818718e-02, 5.119563639163971e-02, 4.56235259771347e-02, 3.880288079380989e-02, 3.043392486870289e-02, 2.019629254937172e-02, 7.574677467346191e-03, 7.690732832998037e-03, 2.409667894244194e-02, 3.820192813873291e-02, 4.84578013420105e-02, 5.583938211202621e-02, 6.137419864535332e-02, 6.543177366256714e-02, 6.691261380910873e-02, 6.932593137025833e-02, 7.022231817245483e-02, 7.075847685337067e-02, 7.018927484750748e-02, 7.053401321172714e-02, 6.926529854536057e-02, 6.749321520328522e-02, 6.545860320329666e-02, 6.268931925296783e-02, 5.968592315912247e-02, 5.588982254266739e-02, 5.130264163017273e-02, 4.57204133272171e-02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Examples_PowerLaw.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Examples_PowerLaw.txt new file mode 100644 index 0000000000..14b1ec8ca7 --- /dev/null +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Examples_PowerLaw.txt @@ -0,0 +1,13 @@ +last-generated=2021-06-26 +statistics-simulation= +{ + "linear": "4, 4", + "nonlinear": " ", + "number of continuous time states": "4", + "numerical Jacobians": "0" +} +time=[0e+00, 1e+00] +pow_2dat.V_flow=[5.303068246576004e-05, 5.303068246576004e-05, 5.303068246576004e-05, 5.303068246576004e-05, 5.303068246576004e-05, 5.303068246576004e-05, 5.303068246576004e-05, 5.303068246576004e-05, 5.303068246576004e-05, 5.303068246576004e-05, 5.303068246576004e-05, 5.303068246576004e-05, 5.303068246576004e-05, 5.303068246576004e-05, 5.303068246576004e-05, 5.303068246576004e-05, 5.303068246576004e-05, 5.303068246576004e-05, 5.303068246576004e-05, 5.303068246576004e-05, 5.303068246576004e-05, 5.303068246576004e-05, 5.303068246576004e-05, 5.303068246576004e-05, 5.303068246576004e-05, 5.303068246576004e-05, 5.177167137512369e-05, 5.049089079104081e-05, 4.918697975168842e-05, 4.785844682087079e-05, 4.650362260703189e-05, 4.512061820208006e-05, 4.370732756201131e-05, 4.226134670223772e-05, 4.077991669726118e-05, 3.92598658323706e-05, 3.769751718713202e-05, 3.608852135036244e-05, 3.442772787057629e-05, 3.270892669825209e-05, 3.092451987687448e-05, 2.906500708296819e-05, 2.711829902943895e-05, 2.506853311213652e-05, 2.289415115879304e-05, 2.056454359296326e-05, 1.803344676791051e-05, 1.522441889660119e-05, 1.199208577130335e-05, 7.974643027725634e-06, 0e+00, -7.974643027661446e-06, -1.199209623855351e-05, -1.522442768976451e-05, -1.803343882197488e-05, -2.056454359300664e-05, -2.289415115878502e-05, -2.506853311211417e-05, -2.711830497223224e-05, -2.906501272838314e-05, -3.092451443874412e-05, -3.270892669828954e-05, -3.442772787058832e-05, -3.608852135035087e-05, -3.769751718709833e-05, -3.925987041597741e-05, -4.077991221762901e-05, -4.226134234022112e-05, -4.370732756202659e-05, -4.5120618202085e-05, -4.650362260700763e-05, -4.785845081507056e-05, -4.918697582313517e-05, -5.049088693834263e-05, -5.177167137514176e-05, -5.303068246576004e-05, -5.303068246576004e-05, -5.303068246576004e-05, -5.303068246576004e-05, -5.303068246576004e-05, -5.303068246576004e-05, -5.303068246576004e-05, -5.303068246576004e-05, -5.303068246576004e-05, -5.303068246576004e-05, -5.303068246576004e-05, -5.303068246576004e-05, -5.303068246576004e-05, -5.303068246576004e-05, -5.303068246576004e-05, -5.303068246576004e-05, -5.303068246576004e-05, -5.303068246576004e-05, -5.303068246576004e-05, -5.303068246576004e-05, -5.303068246576004e-05, -5.303068246576004e-05, -5.303068246576004e-05, -5.303068246576004e-05, -5.303068246576004e-05, -5.303068246576004e-05] +pow_1dat.V_flow=[5.282101483317092e-05, 5.282101483317092e-05, 5.282101483317092e-05, 5.282101483317092e-05, 5.282101483317092e-05, 5.282101483317092e-05, 5.282101483317092e-05, 5.282101483317092e-05, 5.282101483317092e-05, 5.282101483317092e-05, 5.282101483317092e-05, 5.282101483317092e-05, 5.282101483317092e-05, 5.282101483317092e-05, 5.282101483317092e-05, 5.282101483317092e-05, 5.282101483317092e-05, 5.282101483317092e-05, 5.282101483317092e-05, 5.282101483317092e-05, 5.282101483317092e-05, 5.282101483317092e-05, 5.282101483317092e-05, 5.282101483317092e-05, 5.282101483317092e-05, 5.282101483317092e-05, 5.156401918477128e-05, 5.0285359538033e-05, 4.898369313365373e-05, 4.765752852936187e-05, 4.630520723985735e-05, 4.492486219979874e-05, 4.351439099603767e-05, 4.20714041867096e-05, 4.059316469201351e-05, 3.907652625452259e-05, 3.751783013250584e-05, 3.591275604035107e-05, 3.425618989597198e-05, 3.254196530574891e-05, 3.076253522944163e-05, 2.890847577089761e-05, 2.696777948366905e-05, 2.492470379600625e-05, 2.275785610371547e-05, 2.043686873796069e-05, 1.791585636992786e-05, 1.51190202857562e-05, 1.190226682311216e-05, 7.907193055996242e-06, 0e+00, -7.907193055932435e-06, -1.190227723698439e-05, -1.511902903930938e-05, -1.791584845705563e-05, -2.04368687380039e-05, -2.275785610370748e-05, -2.492470379598397e-05, -2.696778540762019e-05, -2.890848139941443e-05, -3.076252980693441e-05, -3.254196530578626e-05, -3.425618989598399e-05, -3.591275604033953e-05, -3.751783013247224e-05, -3.907653082768869e-05, -4.059316022232332e-05, -4.207139983391513e-05, -4.351439099605291e-05, -4.492486219980367e-05, -4.630520723983313e-05, -4.765753251628239e-05, -4.898368921198288e-05, -5.028535569185514e-05, -5.156401918478933e-05, -5.282101483317092e-05, -5.282101483317092e-05, -5.282101483317092e-05, -5.282101483317092e-05, -5.282101483317092e-05, -5.282101483317092e-05, -5.282101483317092e-05, -5.282101483317092e-05, -5.282101483317092e-05, -5.282101483317092e-05, -5.282101483317092e-05, -5.282101483317092e-05, -5.282101483317092e-05, -5.282101483317092e-05, -5.282101483317092e-05, -5.282101483317092e-05, -5.282101483317092e-05, -5.282101483317092e-05, -5.282101483317092e-05, -5.282101483317092e-05, -5.282101483317092e-05, -5.282101483317092e-05, -5.282101483317092e-05, -5.282101483317092e-05, -5.282101483317092e-05, -5.282101483317092e-05] +pow_V_flow.V_flow=[5.305966624291614e-05, 5.305966624291614e-05, 5.305966624291614e-05, 5.305966624291614e-05, 5.305966624291614e-05, 5.305966624291614e-05, 5.305966624291614e-05, 5.305966624291614e-05, 5.305966624291614e-05, 5.305966624291614e-05, 5.305966624291614e-05, 5.305966624291614e-05, 5.305966624291614e-05, 5.305966624291614e-05, 5.305966624291614e-05, 5.305966624291614e-05, 5.305966624291614e-05, 5.305966624291614e-05, 5.305966624291614e-05, 5.305966624291614e-05, 5.305966624291614e-05, 5.305966624291614e-05, 5.305966624291614e-05, 5.305966624291614e-05, 5.305966624291614e-05, 5.305966624291614e-05, 5.179699170413426e-05, 5.051255859671897e-05, 4.920500957508788e-05, 4.787285321392629e-05, 4.651442377040358e-05, 4.512783959086214e-05, 4.371099464211183e-05, 4.226148858801471e-05, 4.077657339597996e-05, 3.925308099985708e-05, 3.768734176522243e-05, 3.60750135366303e-05, 3.441096406269798e-05, 3.268899420791848e-05, 3.090152785261343e-05, 2.903909012093166e-05, 2.708962447701093e-05, 2.503731743672566e-05, 2.286067993429267e-05, 2.052920608395575e-05, 1.799680322723369e-05, 1.518733061219283e-05, 1.195604340845019e-05, 7.942919846213414e-06, 0e+00, -7.942919846149319e-06, -1.195605386937409e-05, -1.518733940528188e-05, -1.799679527860601e-05, -2.052920608399915e-05, -2.286067993428464e-05, -2.503731743670329e-05, -2.708963042773725e-05, -2.903909577485096e-05, -3.090152240557106e-05, -3.2688994207956e-05, -3.441096406271004e-05, -3.607501353661871e-05, -3.768734176518867e-05, -3.925308559365525e-05, -4.077656890604152e-05, -4.226148421556603e-05, -4.371099464212714e-05, -4.51278395908671e-05, -4.651442377037925e-05, -4.787285721887471e-05, -4.920500563569496e-05, -5.05125547331442e-05, -5.179699170415239e-05, -5.305966624291614e-05, -5.305966624291614e-05, -5.305966624291614e-05, -5.305966624291614e-05, -5.305966624291614e-05, -5.305966624291614e-05, -5.305966624291614e-05, -5.305966624291614e-05, -5.305966624291614e-05, -5.305966624291614e-05, -5.305966624291614e-05, -5.305966624291614e-05, -5.305966624291614e-05, -5.305966624291614e-05, -5.305966624291614e-05, -5.305966624291614e-05, -5.305966624291614e-05, -5.305966624291614e-05, -5.305966624291614e-05, -5.305966624291614e-05, -5.305966624291614e-05, -5.305966624291614e-05, -5.305966624291614e-05, -5.305966624291614e-05, -5.305966624291614e-05, -5.305966624291614e-05] +pow_m_flow.V_flow=[5.305966624291614e-05, 5.305966624291614e-05, 5.305966624291614e-05, 5.305966624291614e-05, 5.305966624291614e-05, 5.305966624291614e-05, 5.305966624291614e-05, 5.305966624291614e-05, 5.305966624291614e-05, 5.305966624291614e-05, 5.305966624291614e-05, 5.305966624291614e-05, 5.305966624291614e-05, 5.305966624291614e-05, 5.305966624291614e-05, 5.305966624291614e-05, 5.305966624291614e-05, 5.305966624291614e-05, 5.305966624291614e-05, 5.305966624291614e-05, 5.305966624291614e-05, 5.305966624291614e-05, 5.305966624291614e-05, 5.305966624291614e-05, 5.305966624291614e-05, 5.305966624291614e-05, 5.179699170413426e-05, 5.051255859671897e-05, 4.920500957508788e-05, 4.787285321392629e-05, 4.651442377040358e-05, 4.512783959086214e-05, 4.371099464211183e-05, 4.226148858801471e-05, 4.077657339597996e-05, 3.925308099985708e-05, 3.768734176522243e-05, 3.60750135366303e-05, 3.441096406269798e-05, 3.268899420791848e-05, 3.090152785261343e-05, 2.903909012093166e-05, 2.708962447701093e-05, 2.503731743672566e-05, 2.286067993429267e-05, 2.052920608395575e-05, 1.799680322723369e-05, 1.518733061219283e-05, 1.195604340845019e-05, 7.942919846213414e-06, 0e+00, -7.942919846149319e-06, -1.195605386937409e-05, -1.518733940528188e-05, -1.799679527860601e-05, -2.052920608399915e-05, -2.286067993428464e-05, -2.503731743670329e-05, -2.708963042773725e-05, -2.903909577485096e-05, -3.090152240557106e-05, -3.2688994207956e-05, -3.441096406271004e-05, -3.607501353661871e-05, -3.768734176518867e-05, -3.925308559365525e-05, -4.077656890604152e-05, -4.226148421556603e-05, -4.371099464212714e-05, -4.51278395908671e-05, -4.651442377037925e-05, -4.787285721887471e-05, -4.920500563569496e-05, -5.05125547331442e-05, -5.179699170415239e-05, -5.305966624291614e-05, -5.305966624291614e-05, -5.305966624291614e-05, -5.305966624291614e-05, -5.305966624291614e-05, -5.305966624291614e-05, -5.305966624291614e-05, -5.305966624291614e-05, -5.305966624291614e-05, -5.305966624291614e-05, -5.305966624291614e-05, -5.305966624291614e-05, -5.305966624291614e-05, -5.305966624291614e-05, -5.305966624291614e-05, -5.305966624291614e-05, -5.305966624291614e-05, -5.305966624291614e-05, -5.305966624291614e-05, -5.305966624291614e-05, -5.305966624291614e-05, -5.305966624291614e-05, -5.305966624291614e-05, -5.305966624291614e-05, -5.305966624291614e-05, -5.305966624291614e-05] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Examples_PressurizationData.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Examples_PressurizationData.txt new file mode 100644 index 0000000000..7c7ff7b787 --- /dev/null +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Examples_PressurizationData.txt @@ -0,0 +1,13 @@ +last-generated=2022-07-06 +statistics-simulation= +{ + "linear": "0, 0", + "nonlinear": "1", + "number of continuous time states": "5", + "numerical Jacobians": "0" +} +time=[0e+00, 2.592e+06] +pow_1dat1.V_flow=[0e+00, -5.829009296576259e-07, 4.062970959672896e-10, -6.39640245437622e+00, 1.204499578475952e+00, 1.696882247924805e+01, 3.303131699562073e-01, 1.624622116088838e+01, 1.064956302642822e+01, 1.846166357398034e-01, -4.66733799839858e-05, 1.577497214078903e-01, 4.934766620397568e-01, 3.673191595077514e+00, 2.47485554218224e-01, 6.19439697265625e+00, 0e+00, 1.030634120106752e-02, -6.195542716979981e+00, 2.041781234741211e+00, -1.69695987701416e+01, 4.291317821480334e-02, -4.017133235931396e+00, 9.835008621215819e-01, 4.046019172668457e+00, 1.9499831199646e+00, 1.269232864379883e+01, 5.027182960510254e+00, 4.2962712287901e+00, -1.084056816101074e+01, -8.558801651000977e+00, -6.655340455472469e-03, 0e+00, 8.974869537353515e+00, 1.311716936527462e-01, 5.927643299102783e+00, -1.870646553039551e+01, -8.699384880065917e+00, -8.976379013061523e+00, -5.55730583190918e+01, -1.085846328735352e+01, 1.319035873413086e+01, -5.608319798484444e-02, 6.266491055488587e-01, 4.478204151382669e-04, 1.37156795244664e-03, 5.286799812316895e+00, 3.606637382507324e+00, 1.620655479431152e+01, -8.906534290313722e+00, -2.208938026428223e+01, -9.098728179931641e+00, -2.156731452941894e+01, 2.182653045654297e+00, 1.039186687469482e+01, 1.230543804168701e+01, 1.407915191650523e+01, 1.959623489379943e+01, 6.449387454986573e+00, 5.905479049682617e+00, 5.065671866759658e-04, 1.033901271820068e+01, 4.694618225097656e+00, -2.770912055969238e+01, -3.999653244018555e+01, -1.689089012145996e+01, -3.342678527832031e+01, -3.560586013793945e+01, -4.708357620239139e+00, -1.168642234802319e+01, 3.263185501098633e+00, 3.440404510498047e+00, 3.494334487915039e+01, 1.53603910446167e+01, -2.457709274291992e+01, -1.42924108505249e+01, -3.034441680908203e+01, -4.997165107727051e+00, -7.121945381164551e+00, -3.932366943359375e+01, 5.088285446166992e+00, 1.425842056274414e+01, -1.544267311096191e+01, -2.214479751586914e+01, 1.925276708602905e+00, 2.827226257324219e+01, -6.790581893920899e+00, -1.208506441116333e+00, -8.185564804077149e+00, -3.401855316162109e+01, -4.500240325927734e+00, -8.612149906158447e+00, -2.985618858337402e+01, -9.996835517883301e+00, 3.618622350692749e+00, 6.887183666229248e+00, 3.583890056610108e+00, 1.891298270225525e+00, 2.26687650680542e+00, 3.853039398193359e+01, -1.433604907989502e+01] +pow_1dat.V_flow=[0e+00, 5.829009296576259e-07, -4.062970959672896e-10, -6.396457099914551e+00, 1.204989147186279e+00, 1.696922874450684e+01, 3.303471803665161e-01, 1.624692535400361e+01, 1.064835433959961e+01, 1.844491302967072e-01, 4.66733799839858e-05, 1.577459841966629e-01, 4.934618085622787e-01, 3.670063352584839e+00, 2.488774061202316e-01, 6.190886497497559e+00, 0e+00, -1.030634120106752e-02, -6.19726390838623e+00, 2.041466045379638e+00, -1.696845245361328e+01, 4.31763500906527e-02, -4.018226909637451e+00, 9.927068233489988e-01, 4.04599609375e+00, 1.94980800151825e+00, 1.269245319366455e+01, 5.027397155761719e+00, 4.296105909347351e+00, -1.083955841064453e+01, -8.557744026184082e+00, 6.655340455472469e-03, 0e+00, 8.885154724121094e+00, 1.316589351742234e-01, 5.927183628082275e+00, -1.870607376098633e+01, -8.703319263458251e+00, -8.97798843383789e+00, -5.557305450439453e+01, -1.086129093170166e+01, 1.319032917022705e+01, 5.608319798484444e-02, 6.267321944236756e-01, -4.478204151382669e-04, -1.37156795244664e-03, 5.28661584854126e+00, 3.606316661834717e+00, 1.620652656555176e+01, -8.90678243637085e+00, -2.255185317993164e+01, -9.098736953735351e+00, -2.156742401123047e+01, 2.183036184310913e+00, 1.039076271057129e+01, 1.230593872070312e+01, 1.407917556762828e+01, 1.95962631225592e+01, 6.449002361297607e+00, 5.905722332000733e+00, -5.065671866759658e-04, 1.033860931396484e+01, 4.694996118545532e+00, -2.770912590026855e+01, -3.999651641845703e+01, -1.689169692993164e+01, -3.342678527832031e+01, -3.560281524658203e+01, -4.708302211761355e+00, -1.167718143463209e+01, 3.263836622238159e+00, 3.443548393249512e+00, 3.494330368041992e+01, 1.536082153320313e+01, -2.457710342407227e+01, -1.429196548461914e+01, -3.034440956115723e+01, -4.997321605682373e+00, -7.122452926635742e+00, -3.932357482910156e+01, 5.088300704956055e+00, 1.425818214416504e+01, -1.544357452392578e+01, -2.214479370117187e+01, 1.958084344863892e+00, 2.827217674255371e+01, -6.790592288970947e+00, -1.208518552780151e+00, -8.184798622131348e+00, -3.401855621337891e+01, -4.499752044677734e+00, -8.612150573730469e+00, -2.985584220886231e+01, -9.995524978637695e+00, 3.61862268447876e+00, 6.887353897094727e+00, 3.583772373199463e+00, 1.890720987319946e+00, 2.263595700263977e+00, 3.853013381958008e+01, -1.433475875854492e+01] +pow_1dat1.dp=[0e+00, -2.505257725715637e-08, 1.746229827404022e-11, -8.563481569290161e-01, 6.907230019569396e-02, 3.751832008361816e+00, 1.544843539595604e-02, 3.558046913146879e+00, 1.854607820510864e+00, 8.701841160655019e-03, -2.005981514230371e-06, 6.998887471854687e-03, 2.457808908075094e-02, 3.692098677158356e-01, 1.135942563414246e-02, 8.149543404579163e-01, 0e+00, 4.429651366081323e-04, -1.523861885070801e+00, 1.517571419477463e-01, -3.752092123031616e+00, 1.855037838686258e-03, -4.245035707950592e-01, 9.201215207576752e-02, 4.27577006816864e-01, 1.414410322904587e-01, 2.417694711685181e+00, 6.145933032035827e-01, 4.702401041984252e-01, -1.908306550979614e+00, -1.330091834068298e+00, -2.860586391761899e-04, 0e+00, 2.305485963821411e+00, 5.957917345216526e-03, 7.623741626739502e-01, -4.349104022979736e+00, -1.570937305688858e+00, -1.43453118801117e+00, -2.263979454040527e+01, -1.907571196556091e+00, 2.566972923278809e+00, -2.415645821020007e-03, 2.846797443926334e-02, 1.924693351611495e-05, 5.894881905987859e-05, 6.410544753074646e-01, 3.684275388717652e-01, 3.503056240081787e+00, -1.450459408760071e+00, -5.594695568084717e+00, -1.459275317192078e+00, -5.396630191802979e+00, 1.692588210105896e-01, 1.785198616981506e+00, 2.30566930770874e+00, 2.837704515457572e+00, 4.669074058532932e+00, 8.672092199325562e-01, 7.581051588058472e-01, 2.177181886509061e-05, 1.772626066207886e+00, 6.369984805583954e-01, -7.889903259277344e+00, -1.37543981552124e+01, -3.725755453109741e+00, -1.048028240203857e+01, -1.153255176544189e+01, -5.380304932594092e-01, -2.135664367675989e+00, 3.085885643959045e-01, 3.350165903568268e-01, 1.120966815948486e+01, 3.227913618087769e+00, -6.577642345428467e+00, -2.892641305923462e+00, -9.05399227142334e+00, -5.922962129116058e-01, -1.007087278366089e+00, -1.340548877716065e+01, 6.0491943359375e-01, 2.882290744781494e+00, -3.255733919143677e+00, -5.616613578796387e+00, 1.461539089679718e-01, 8.131410598754883e+00, -9.380990028381347e-01, -1.353964984416962e-01, -1.257058501243591e+00, -1.076372413635254e+01, -5.022105574607849e-01, -1.34374577999115e+00, -8.831525993347167e+00, -1.687095260620117e+00, 3.609214127063751e-01, 9.569622874259949e-01, 3.560450494289398e-01, 1.389386162161827e-01, 1.936011373996734e-01, 1.299918346405029e+01, -2.906033515930176e+00] +pow_1dat.dp=[0e+00, 2.505257725715637e-08, -1.746229827404022e-11, -8.5635906457901e-01, 6.910831630229949e-02, 3.751967906951904e+00, 1.545068472623825e-02, 3.558249568939115e+00, 1.854279351234436e+00, 8.69395025074482e-03, 2.005981514230371e-06, 6.998705118894577e-03, 2.457760982215404e-02, 3.687313258647918e-01, 1.143463291227487e-02, 8.142547011375427e-01, 0e+00, -4.429651366081323e-04, -1.524404525756836e+00, 1.517219483852386e-01, -3.751707792282104e+00, 1.866348029579967e-03, -4.246804296970367e-01, 9.287987351417543e-02, 4.275732100009918e-01, 1.414217948913574e-01, 2.417731952667237e+00, 6.146382927894593e-01, 4.702113747596435e-01, -1.908082914352417e+00, -1.329842925071716e+00, 2.860586391761899e-04, 0e+00, 2.288089227676392e+00, 5.982224654866388e-03, 7.62284517288208e-01, -4.348965549468994e+00, -1.572526544332504e+00, -1.434899973869324e+00, -2.263979263305664e+01, -1.908323884010315e+00, 2.566964244842529e+00, 2.415645821020007e-03, 2.847221530973911e-02, -1.924693351611495e-05, -5.894881905987859e-05, 6.410207390785218e-01, 3.683699607849121e-01, 3.503046941757202e+00, -1.450507122278213e+00, -5.773123741149902e+00, -1.459277367591858e+00, -5.396671676635743e+00, 1.693071246147156e-01, 1.784913277626038e+00, 2.305811405181885e+00, 2.837709856033744e+00, 4.669084072113255e+00, 8.671324491500855e-01, 7.581523418426513e-01, -2.177181886509061e-05, 1.772517681121826e+00, 6.370401591062546e-01, -7.889905643463135e+00, -1.375438976287842e+01, -3.726025104522705e+00, -1.048028259277344e+01, -1.153105754852295e+01, -5.380209803581031e-01, -2.133157682419033e+00, 3.086818754673004e-01, 3.354884803295136e-01, 1.120964889526367e+01, 3.228050231933594e+00, -6.577646732330322e+00, -2.892504692077637e+00, -9.053988838195801e+00, -5.923237502574921e-01, -1.007195568084717e+00, -1.340543994903564e+01, 6.049222350120544e-01, 2.882217454910278e+00, -3.256015825271606e+00, -5.616611766815185e+00, 1.493794620037079e-01, 8.131373405456543e+00, -9.381011247634887e-01, -1.353895485401153e-01, -1.256889986991882e+00, -1.076372661590576e+01, -5.02128005027771e-01, -1.343746113777161e+00, -8.831370162963868e+00, -1.686751556396484e+00, 3.609214544296265e-01, 9.569981694221497e-01, 3.560281455516815e-01, 1.388921782374382e-01, 1.932529777288437e-01, 1.299905166625977e+01, -2.905637264251709e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Examples_ReverseBuoyancy.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Examples_ReverseBuoyancy.txt index 19ea05c3a2..62966c87e9 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Examples_ReverseBuoyancy.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Examples_ReverseBuoyancy.txt @@ -1,4 +1,4 @@ -last-generated=2019-01-14 +last-generated=2022-07-06 statistics-simulation= { "linear": " ", @@ -6,20 +6,20 @@ statistics-simulation= "number of continuous time states": "20", "numerical Jacobians": "0" } -oriWesTop.port_a.m_flow=[5.965141952037811e-02, 3.259154036641121e-03, 2.942090621218085e-03, 2.671305788680911e-03, 2.42581544443965e-03, 2.201464027166367e-03, 1.999294152483344e-03, 1.816506497561931e-03, 1.649399171583354e-03, 1.496979268267751e-03, 1.356916269287467e-03, 1.226408639922738e-03, 1.104065566323698e-03, 9.885167237371206e-04, 8.782477816566823e-04, 7.719525601714849e-04, 6.686746492050588e-04, 5.674550193361938e-04, 4.670993948820978e-04, 3.675664192996919e-04, 2.699048782233149e-04, 1.752431271597743e-04, 8.450375753454864e-05, -1.629166149541561e-06, -8.226019417634234e-05, -1.571743632666767e-04, -2.262566704303026e-04, -2.894194622058423e-04, -3.467686765361579e-04, -3.984780632890761e-04, -4.449390689842403e-04, -4.865453229285777e-04, -5.236900178715587e-04, -5.567641346715391e-04, -5.86151028983295e-04, -6.122456397861242e-04, -6.353901117108762e-04, -6.559038884006441e-04, -6.740412209182978e-04, -6.901841843500733e-04, -7.04567355569452e-04, -7.17357499524951e-04, -7.287198677659035e-04, -7.388184894807637e-04, -7.478162297047675e-04, -7.55875080358237e-04, -7.630256004631519e-04, -7.695259409956634e-04, -7.75434251409024e-04, -7.807941292412579e-04, -7.856491138227284e-04, -7.900423952378333e-04, -7.940171635709703e-04, -7.976163760758936e-04, -8.008829317986965e-04, -8.038596133701503e-04, -8.065890287980437e-04, -8.091139607131481e-04, -8.113846415653825e-04, -8.135061361826956e-04, -8.154941024258733e-04, -8.173537789843976e-04, -8.190904045477509e-04, -8.207092760130763e-04, -8.22215573862195e-04, -8.236145367845893e-04, -8.249113452620804e-04, -8.261111797764897e-04, -8.272193372249603e-04, -8.282409398816526e-04, -8.291811682283878e-04, -8.300452609546483e-04, -8.308383985422552e-04, -8.31565645057708e-04, -8.3223229739815e-04, -8.328435360454023e-04, -8.334044250659645e-04, -8.339202031493187e-04, -8.343959925696254e-04, -8.348370320163667e-04, -8.352352306246758e-04, -8.355952450074255e-04, -8.359180064871907e-04, -8.362045045942068e-04, -8.364557288587093e-04, -8.366726106032729e-04, -8.368560229428113e-04, -8.370069554075599e-04, -8.371263393200934e-04, -8.372151060029864e-04, -8.372741867788136e-04, -8.373045711778104e-04, -8.373071323148906e-04, -8.372828015126288e-04, -8.372325683012605e-04, -8.371573640033603e-04, -8.37058003526181e-04, -8.3693559281528e-04, -8.3679094677791e-04, -8.366250549443066e-04, -8.364387904293835e-04] -dooOpeClo.port_a2.m_flow=[1.375604569911957e-01, 2.393880188465118e-01, 2.010592818260193e-01, 1.694754064083099e-01, 1.436794102191925e-01, 1.223648339509964e-01, 1.047639474272728e-01, 8.989661186933516e-02, 7.705046981573105e-02, 6.586703658103943e-02, 5.590169504284859e-02, 4.680290445685387e-02, 3.845109790563583e-02, 3.073403611779213e-02, 2.351729571819304e-02, 1.658848859369755e-02, 9.693924337625504e-03, 2.333670854568481e-03, 4.554246552288532e-04, 7.349834777414799e-03, 1.404928043484688e-02, 2.034010179340839e-02, 2.61865109205246e-02, 3.17499078810215e-02, 3.695468604564667e-02, 4.177527129650116e-02, 4.619521647691727e-02, 5.020184069871904e-02, 5.3799144923687e-02, 5.699734762310982e-02, 5.98248690366745e-02, 6.231094524264336e-02, 6.448607891798019e-02, 6.638333946466446e-02, 6.803250312805176e-02, 6.946127861738205e-02, 7.06934928894043e-02, 7.175134867429733e-02, 7.265238463878632e-02, 7.342338562011719e-02, 7.408055663108826e-02, 7.463530451059341e-02, 7.509895414113998e-02, 7.54828006029129e-02, 7.579810172319412e-02, 7.60561004281044e-02, 7.625868171453476e-02, 7.64237716794014e-02, 7.655521482229233e-02, 7.66558051109314e-02, 7.672836631536484e-02, 7.67756924033165e-02, 7.680059224367142e-02, 7.680588215589523e-02, 7.679436355829239e-02, 7.676886022090912e-02, 7.673217356204987e-02, 7.668714225292206e-02, 7.663066685199738e-02, 7.65690803527832e-02, 7.650326192378998e-02, 7.64334574341774e-02, 7.635990530252457e-02, 7.628284394741058e-02, 7.620251923799515e-02, 7.611917704343796e-02, 7.603304833173752e-02, 7.594438642263412e-02, 7.585342973470688e-02, 7.576041668653488e-02, 7.566560059785843e-02, 7.556921988725662e-02, 7.547152787446976e-02, 7.537276297807693e-02, 7.527317106723785e-02, 7.517299801111221e-02, 7.507249712944031e-02, 7.497190684080124e-02, 7.487147301435471e-02, 7.47714564204216e-02, 7.46714174747467e-02, 7.457133382558823e-02, 7.447120547294617e-02, 7.437104731798172e-02, 7.427088171243668e-02, 7.417071610689163e-02, 7.407055795192719e-02, 7.397042959928513e-02, 7.387033104896545e-02, 7.377028465270996e-02, 7.367029786109924e-02, 7.357038557529449e-02, 7.347055524587631e-02, 7.337082922458649e-02, 7.327121496200562e-02, 7.317171990871429e-02, 7.307235896587372e-02, 7.297315448522568e-02, 7.287410646677017e-02, 7.27752298116684e-02, 7.267654687166214e-02] -oriOutBot.port_a.m_flow=[3.664178252220154e-01, -9.132619015872478e-03, -9.042366407811642e-03, -8.975396864116192e-03, -8.923434652388096e-03, -8.881124667823315e-03, -8.845748379826546e-03, -8.815106935799122e-03, -8.787799626588821e-03, -8.763118647038937e-03, -8.740398101508617e-03, -8.719123899936676e-03, -8.698997087776661e-03, -8.679775521159172e-03, -8.661234751343727e-03, -8.643199689686298e-03, -8.625545538961887e-03, -8.60814843326807e-03, -8.590877056121826e-03, -8.573713712394238e-03, -8.55675246566534e-03, -8.540092036128044e-03, -8.52381344884634e-03, -8.507982827723026e-03, -8.492650464177132e-03, -8.477830328047276e-03, -8.463535457849503e-03, -8.449779823422432e-03, -8.436555974185467e-03, -8.423854596912861e-03, -8.411642163991928e-03, -8.399885147809982e-03, -8.388550952076912e-03, -8.377604186534882e-03, -8.367011323571205e-03, -8.356736972928047e-03, -8.346749469637871e-03, -8.337019011378288e-03, -8.327523246407509e-03, -8.318224921822548e-03, -8.309101685881615e-03, -8.300138637423515e-03, -8.291319943964481e-03, -8.282629773020744e-03, -8.274052292108536e-03, -8.265572600066662e-03, -8.257186971604824e-03, -8.248870261013508e-03, -8.240616880357265e-03, -8.232424035668373e-03, -8.224286139011383e-03, -8.216200396418571e-03, -8.208162151277065e-03, -8.200168609619141e-03, -8.19221418350935e-03, -8.184295147657394e-03, -8.176407776772976e-03, -8.168548345565796e-03, -8.160720579326153e-03, -8.1529151648283e-03, -8.145132102072239e-03, -8.137369528412819e-03, -8.12962744385004e-03, -8.121906779706478e-03, -8.114205673336983e-03, -8.106524124741554e-03, -8.098861202597618e-03, -8.091217838227749e-03, -8.083593100309372e-03, -8.075986988842487e-03, -8.068397641181946e-03, -8.060825988650322e-03, -8.053272031247616e-03, -8.045733906328678e-03, -8.038212545216084e-03, -8.030706085264683e-03, -8.023216389119625e-03, -8.015740662813187e-03, -8.008279837667942e-03, -8.000833913683891e-03, -7.99340195953846e-03, -7.985985837876797e-03, -7.978583686053753e-03, -7.971196435391903e-03, -7.963824085891247e-03, -7.956466637551785e-03, -7.949124090373516e-03, -7.941795513033867e-03, -7.934481836855412e-03, -7.927182130515575e-03, -7.919897325336933e-03, -7.91262648999691e-03, -7.905370555818081e-03, -7.898128591477871e-03, -7.89090059697628e-03, -7.883687503635883e-03, -7.876487448811531e-03, -7.869302295148373e-03, -7.862131111323833e-03, -7.854973897337914e-03, -7.847829721868038e-03] -dooOpeClo.port_a1.m_flow=[4.811525940895081e-01, 2.426469922065735e-01, 2.04001173377037e-01, 1.721466481685638e-01, 1.461052149534225e-01, 1.245664060115814e-01, 1.067629754543304e-01, 9.171310067176817e-02, 7.869993150234222e-02, 6.736385077238083e-02, 5.725857987999916e-02, 4.802931845188141e-02, 3.955515474081039e-02, 3.17225269973278e-02, 2.439552918076514e-02, 1.736043393611908e-02, 1.036258321255445e-02, 2.901113824918866e-03, 9.225088870152831e-04, 7.71738588809967e-03, 1.4319172129035e-02, 2.05153189599514e-02, 2.627100422978401e-02, 3.174826502799988e-02, 3.687241300940514e-02, 4.161808639764786e-02, 4.596894979476929e-02, 4.991241171956064e-02, 5.345236510038377e-02, 5.659881979227066e-02, 5.937986448407173e-02, 6.182438135147095e-02, 6.396243721246719e-02, 6.582663208246231e-02, 6.744635105133057e-02, 6.884902715682983e-02, 7.005809992551804e-02, 7.109544426202774e-02, 7.197835296392441e-02, 7.273319363594055e-02, 7.337596267461777e-02, 7.391791790723801e-02, 7.437022030353546e-02, 7.474400103092194e-02, 7.505031675100327e-02, 7.530023157596588e-02, 7.549566030502319e-02, 7.565424591302872e-02, 7.577976584434509e-02, 7.587498426437378e-02, 7.594268023967743e-02, 7.59856179356575e-02, 7.600656151771545e-02, 7.600826770067215e-02, 7.599350810050964e-02, 7.59650394320488e-02, 7.592562586069107e-02, 7.587803155183792e-02, 7.581928372383118e-02, 7.575558125972748e-02, 7.568777352571487e-02, 7.561609894037247e-02, 7.554080337285995e-02, 7.546211779117584e-02, 7.538028061389923e-02, 7.529553025960922e-02, 7.520810514688492e-02, 7.511824369430542e-02, 7.502618432044983e-02, 7.493215799331665e-02, 7.483641058206558e-02, 7.473917305469513e-02, 7.464069873094559e-02, 7.454121857881546e-02, 7.444096356630325e-02, 7.434018701314926e-02, 7.423912733793259e-02, 7.413801550865173e-02, 7.40370973944664e-02, 7.393661886453629e-02, 7.383618503808975e-02, 7.373573631048203e-02, 7.36352875828743e-02, 7.353484630584717e-02, 7.343442738056183e-02, 7.333404570817947e-02, 7.32337012887001e-02, 7.313341647386551e-02, 7.303320616483688e-02, 7.293307036161423e-02, 7.283302396535873e-02, 7.27330818772316e-02, 7.263325154781342e-02, 7.253354787826538e-02, 7.243397831916809e-02, 7.233456522226334e-02, 7.223530858755112e-02, 7.213621586561203e-02, 7.203731685876846e-02, 7.193861156702042e-02, 7.184010744094849e-02] -oriOutTop.port_a.m_flow=[3.666715025901794e-01, 9.132188744843006e-03, 9.042119607329369e-03, 8.975256234407425e-03, 8.923365734517574e-03, 8.881098590791225e-03, 8.845752105116844e-03, 8.815129287540913e-03, 8.787837810814381e-03, 8.763168938457966e-03, 8.740455843508244e-03, 8.719188161194324e-03, 8.699065074324608e-03, 8.679847232997417e-03, 8.661307394504547e-03, 8.643274195492268e-03, 8.625620044767857e-03, 8.608223870396614e-03, 8.590951561927795e-03, 8.573788218200207e-03, 8.55682697147131e-03, 8.540167473256588e-03, 8.523889817297459e-03, 8.508061058819294e-03, 8.492730557918549e-03, 8.477913215756416e-03, 8.463621139526367e-03, 8.449867367744446e-03, 8.43664538115263e-03, 8.423946797847748e-03, 8.411736227571964e-03, 8.399981074035168e-03, 8.388648740947247e-03, 8.377702906727791e-03, 8.367111906409264e-03, 8.35683848708868e-03, 8.346851915121078e-03, 8.337122388184071e-03, 8.327627554535866e-03, 8.318330161273479e-03, 8.309206925332546e-03, 8.300244808197021e-03, 8.291426114737988e-03, 8.28273594379425e-03, 8.274158462882042e-03, 8.265678770840168e-03, 8.25729314237833e-03, 8.248976431787014e-03, 8.240723051130772e-03, 8.232530206441879e-03, 8.224392309784889e-03, 8.216306567192078e-03, 8.208268322050571e-03, 8.200273849070072e-03, 8.192319422960281e-03, 8.184400387108326e-03, 8.176513016223907e-03, 8.168652653694153e-03, 8.16082488745451e-03, 8.153019472956657e-03, 8.145235478878021e-03, 8.137472905218601e-03, 8.129730820655823e-03, 8.122009225189686e-03, 8.11430811882019e-03, 8.106626570224762e-03, 8.098963648080826e-03, 8.091320283710957e-03, 8.08369554579258e-03, 8.07608850300312e-03, 8.068499155342579e-03, 8.060927502810955e-03, 8.053372614085674e-03, 8.045834489166737e-03, 8.038312196731567e-03, 8.030806668102741e-03, 8.023316040635109e-03, 8.015840314328671e-03, 8.008379489183426e-03, 8.000932633876801e-03, 7.993500679731369e-03, 7.986083626747131e-03, 7.978681474924088e-03, 7.971294224262238e-03, 7.963921874761581e-03, 7.956563495099545e-03, 7.949220947921276e-03, 7.941892370581627e-03, 7.934577763080597e-03, 7.927278056740761e-03, 7.919993251562119e-03, 7.912722416222095e-03, 7.905465550720692e-03, 7.898223586380482e-03, 7.890995591878891e-03, 7.883781567215919e-03, 7.876581512391567e-03, 7.869396358728409e-03, 7.86222517490387e-03, 7.855067029595375e-03, 7.847923785448074e-03] time=[0e+00, 3.6e+03] -oriEasTop.port_a.m_flow=[-5.94506673514843e-02, 3.259395947679877e-03, 2.942183054983616e-03, 2.671063877642155e-03, 2.425972139462829e-03, 2.201500814408064e-03, 1.99948949739337e-03, 1.81632034946233e-03, 1.649205922149122e-03, 1.497006393037736e-03, 1.356824301183224e-03, 1.2263348326087e-03, 1.103991642594337e-03, 9.884641040116549e-04, 8.78149061463773e-04, 7.718466222286224e-04, 6.685940898023546e-04, 5.673644482158124e-04, 4.670095513574779e-04, 3.674770414363593e-04, 2.698155585676432e-04, 1.751535455696285e-04, 8.441357203992084e-05, -1.72018314970046e-06, -8.23524605948478e-05, -1.572680193930864e-04, -2.263517089886591e-04, -2.895159705076368e-04, -3.468665527179839e-04, -3.985775692854077e-04, -4.45039855549112e-04, -4.866469535045326e-04, -5.237922305241227e-04, -5.568671622313559e-04, -5.862552206963301e-04, -6.123504717834294e-04, -6.354954093694687e-04, -6.560097099281847e-04, -6.741473916918039e-04, -6.902906461618841e-04, -7.046740502119064e-04, -7.174643105827272e-04, -7.288267370313406e-04, -7.389253005385399e-04, -7.479230407625437e-04, -7.559818914160132e-04, -7.631323533132672e-04, -7.69632519222796e-04, -7.755407132208347e-04, -7.809004746377468e-04, -7.857552845962346e-04, -7.901483913883567e-04, -7.941229268908501e-04, -7.977219065651298e-04, -8.009881712496281e-04, -8.039645617827773e-04, -8.06693802587688e-04, -8.092185016721487e-04, -8.114888332784176e-04, -8.136100950650871e-04, -8.155977702699602e-04, -8.174572722055018e-04, -8.191936649382114e-04, -8.208123035728931e-04, -8.223183685913682e-04, -8.237170404754579e-04, -8.250136161223054e-04, -8.262131595984101e-04, -8.273210260085762e-04, -8.283423376269639e-04, -8.292822167277336e-04, -8.301460184156895e-04, -8.3093874854967e-04, -8.316657040268183e-04, -8.323320071212947e-04, -8.329428965225816e-04, -8.335034945048392e-04, -8.340190397575498e-04, -8.344946545548737e-04, -8.349355193786323e-04, -8.353334269486368e-04, -8.35693150293082e-04, -8.360156789422035e-04, -8.36301944218576e-04, -8.365529356524348e-04, -8.367695263586938e-04, -8.369527058675885e-04, -8.371034055016935e-04, -8.372224983759224e-04, -8.373109740205109e-04, -8.373698219656944e-04, -8.373998571187258e-04, -8.374021272175014e-04, -8.37377505376935e-04, -8.373269811272621e-04, -8.372514275833964e-04, -8.371518342755735e-04, -8.370291325263679e-04, -8.368842536583543e-04, -8.367181289941072e-04, -8.365316898562014e-04] +oriWesTop.port_a.m_flow=[5.965141952037811e-02, 3.25913424603641e-03, 2.942032646387815e-03, 2.671230351552367e-03, 2.42481310851872e-03, 2.202456118538976e-03, 1.998191699385643e-03, 1.813973300158977e-03, 1.648437581025064e-03, 1.497158664278686e-03, 1.35441217571497e-03, 1.228543696925044e-03, 1.103701652027667e-03, 9.870647918432951e-04, 8.752072462812065e-04, 7.646361482329667e-04, 6.706482381559908e-04, 5.772984586656094e-04, 4.594305064529181e-04, 3.637497720774263e-04, 2.639626036398113e-04, 1.773606636561453e-04, 8.435759082203731e-05, -1.626554762879096e-06, -8.230965613620356e-05, -1.572445762576535e-04, -2.262574707856402e-04, -2.893520577345045e-04, -3.466549969743939e-04, -3.984049835707992e-04, -4.449200350791216e-04, -4.865670634899288e-04, -5.237397272139788e-04, -5.568382912315428e-04, -5.862542311660945e-04, -6.123626371845603e-04, -6.355181685648859e-04, -6.560525507666171e-04, -6.742618861608207e-04, -6.904199253767729e-04, -7.047707331366837e-04, -7.175296195782721e-04, -7.288894266821444e-04, -7.390184327960014e-04, -7.480653002858162e-04, -7.561621023342013e-04, -7.634228095412254e-04, -7.699481793679297e-04, -7.758264546282589e-04, -7.811337127350271e-04, -7.859368924982846e-04, -7.902958313934505e-04, -7.942586089484394e-04, -7.978730136528611e-04, -8.011767640709877e-04, -8.042014087550342e-04, -8.06976284366101e-04, -8.095231605693698e-04, -8.118675905279815e-04, -8.140287827700377e-04, -8.160228026099503e-04, -8.178633870556951e-04, -8.195649133995175e-04, -8.211418171413243e-04, -8.226074860431254e-04, -8.23967217002064e-04, -8.252289844676852e-04, -8.264021016657352e-04, -8.274969877675176e-04, -8.28517775516957e-04, -8.294684230349958e-04, -8.30354867503047e-04, -8.311778656207025e-04, -8.31936311442405e-04, -8.326296228915453e-04, -8.332706638611853e-04, -8.338541956618428e-04, -8.343805093318224e-04, -8.348544943146408e-04, -8.352845325134695e-04, -8.356735343113542e-04, -8.360288920812309e-04, -8.363405358977616e-04, -8.366105612367392e-04, -8.368408889509737e-04, -8.370321593247354e-04, -8.372013107873499e-04, -8.373477612622082e-04, -8.374786702916026e-04, -8.375912439078093e-04, -8.376725018024445e-04, -8.377258782275021e-04, -8.377453195862472e-04, -8.377441554330289e-04, -8.377240155823529e-04, -8.37683561258018e-04, -8.376240730285645e-04, -8.375224424526095e-04, -8.373799500986934e-04, -8.371868170797825e-04, -8.369483985006809e-04] +oriEasTop.port_a.m_flow=[-5.94506673514843e-02, 3.259369870647788e-03, 2.942151390016079e-03, 2.671287395060062e-03, 2.426172373816371e-03, 2.201401861384511e-03, 2.000674838200212e-03, 1.81826064363122e-03, 1.650633988901973e-03, 1.497224671766162e-03, 1.359150162898004e-03, 1.22406124137342e-03, 1.104298746213317e-03, 9.896160336211324e-04, 8.807437843643127e-04, 7.787305512465537e-04, 6.661533261649311e-04, 5.569157656282187e-04, 4.741486918646842e-04, 3.707818395923823e-04, 2.753213630057871e-04, 1.726586633594707e-04, 8.42466761241667e-05, -1.754231220729707e-06, -8.240540773840621e-05, -1.573385525261983e-04, -2.263526694150642e-04, -2.894488861784341e-04, -3.467528731562199e-04, -3.985048097092658e-04, -4.450207052286714e-04, -4.866686358582228e-04, -5.238423473201692e-04, -5.569417262449861e-04, -5.863583064638078e-04, -6.124674109742045e-04, -6.356235826388001e-04, -6.561583140864968e-04, -6.743675912730396e-04, -6.905257469043136e-04, -7.048773113638163e-04, -7.176364306360483e-04, -7.289963541552424e-04, -7.391252438537776e-04, -7.481722859665751e-04, -7.562690880149603e-04, -7.635297370143235e-04, -7.700548740103841e-04, -7.759329746477306e-04, -7.812401163391769e-04, -7.860431214794517e-04, -7.904018857516348e-04, -7.943643140606582e-04, -7.979784859344363e-04, -8.012822363525629e-04, -8.04307172074914e-04, -8.070819894783199e-04, -8.096281671896577e-04, -8.119720732793212e-04, -8.141328580677509e-04, -8.161264704540372e-04, -8.179667056538165e-04, -8.196679991669953e-04, -8.212447282858193e-04, -8.227102225646377e-04, -8.240696624852717e-04, -8.253308478742838e-04, -8.265032665804029e-04, -8.275978034362197e-04, -8.286186493933201e-04, -8.295697625726461e-04, -8.304567309096456e-04, -8.312801364809275e-04, -8.320382330566645e-04, -8.327302057296038e-04, -8.333706646226346e-04, -8.339534979313612e-04, -8.344791713170707e-04, -8.349526324309409e-04, -8.353823213838041e-04, -8.357715560123324e-04, -8.361278451047838e-04, -8.364400127902627e-04, -8.367099217139184e-04, -8.36938910651952e-04, -8.371273870579898e-04, -8.372950251214206e-04, -8.374408353120089e-04, -8.375727338716388e-04, -8.376874611712992e-04, -8.37769650388509e-04, -8.378233760595322e-04, -8.378417114727199e-04, -8.378397324122488e-04, -8.378191269002855e-04, -8.377783815376461e-04, -8.377190679311752e-04, -8.376167970709503e-04, -8.374734316021204e-04, -8.372789598070085e-04, -8.370390278287232e-04] +oriOutTop.port_a.m_flow=[3.666715025901794e-01, 9.132185950875282e-03, 9.042109362781048e-03, 8.975272066891193e-03, 8.92334058880806e-03, 8.881181478500366e-03, 8.845831267535686e-03, 8.815155364573002e-03, 8.787901140749454e-03, 8.763196878135204e-03, 8.74046515673399e-03, 8.719174191355705e-03, 8.699034340679646e-03, 8.679897524416447e-03, 8.661423809826374e-03, 8.643331937491894e-03, 8.625512011349201e-03, 8.608092553913593e-03, 8.591286838054657e-03, 8.573895320296288e-03, 8.55706911534071e-03, 8.540029637515545e-03, 8.523873053491116e-03, 8.508049882948399e-03, 8.492721244692802e-03, 8.47790390253067e-03, 8.463620208203793e-03, 8.449874818325043e-03, 8.436660282313824e-03, 8.423957973718643e-03, 8.411743678152561e-03, 8.399985730648041e-03, 8.38865153491497e-03, 8.37770476937294e-03, 8.367111906409264e-03, 8.35683848708868e-03, 8.346851915121078e-03, 8.337121456861496e-03, 8.327621035277843e-03, 8.318322710692883e-03, 8.309204131364822e-03, 8.300245739519596e-03, 8.291427977383137e-03, 8.28273594379425e-03, 8.274154737591743e-03, 8.265671320259571e-03, 8.257274515926838e-03, 8.248956874012947e-03, 8.240707218647003e-03, 8.232519961893559e-03, 8.224387653172016e-03, 8.216305635869503e-03, 8.208269253373146e-03, 8.200273849070072e-03, 8.192315697669983e-03, 8.184392005205154e-03, 8.176499977707863e-03, 8.168637752532959e-03, 8.160803467035294e-03, 8.152995258569717e-03, 8.145211264491081e-03, 8.13745055347681e-03, 8.12971219420433e-03, 8.121994324028492e-03, 8.114296942949295e-03, 8.106619119644165e-03, 8.098959922790527e-03, 8.091318421065807e-03, 8.083694614470005e-03, 8.076086640357971e-03, 8.068496361374855e-03, 8.060921914875507e-03, 8.053364232182503e-03, 8.045822381973267e-03, 8.038298226892948e-03, 8.030788972973824e-03, 8.023295551538467e-03, 8.015819825232029e-03, 8.008359000086784e-03, 8.000913076102734e-03, 7.993482984602451e-03, 7.986066862940788e-03, 7.978665642440319e-03, 7.971280254423618e-03, 7.963909767568111e-03, 7.956555113196373e-03, 7.949213497340679e-03, 7.94188492000103e-03, 7.934569381177425e-03, 7.927266880869865e-03, 7.919979281723499e-03, 7.912705652415752e-03, 7.905447855591774e-03, 7.89820309728384e-03, 7.890972308814526e-03, 7.883754558861256e-03, 7.876550778746605e-03, 7.869362831115723e-03, 7.862191647291183e-03, 7.855038158595562e-03, 7.847900502383709e-03] +oriOutBot.port_a.m_flow=[3.664178252220154e-01, -9.132609702646732e-03, -9.042355231940746e-03, -8.975411765277386e-03, -8.923331275582314e-03, -8.881178684532642e-03, -8.845682255923748e-03, -8.815007284283638e-03, -8.787794969975948e-03, -8.763138204813004e-03, -8.740370161831379e-03, -8.719124831259251e-03, -8.699022233486176e-03, -8.679695427417755e-03, -8.661075495183468e-03, -8.643102832138538e-03, -8.625608868896961e-03, -8.608222007751465e-03, -8.59049241989851e-03, -8.573560044169426e-03, -8.556472137570381e-03, -8.540197275578976e-03, -8.523805066943169e-03, -8.507980033755302e-03, -8.49264208227396e-03, -8.477821946144104e-03, -8.463535457849503e-03, -8.449787274003029e-03, -8.436569944024086e-03, -8.423865772783756e-03, -8.411649614572525e-03, -8.399889804422855e-03, -8.388553746044636e-03, -8.377606049180031e-03, -8.367011323571205e-03, -8.356736972928047e-03, -8.346749469637871e-03, -8.337018080055714e-03, -8.327516727149487e-03, -8.318217471241951e-03, -8.309098891913891e-03, -8.300140500068665e-03, -8.291322737932205e-03, -8.282629773020744e-03, -8.274048566818237e-03, -8.265565149486065e-03, -8.257168345153332e-03, -8.248850703239441e-03, -8.240601047873497e-03, -8.232413791120052e-03, -8.224282413721085e-03, -8.216200396418571e-03, -8.208164013922215e-03, -8.200168609619141e-03, -8.192210458219051e-03, -8.184286765754223e-03, -8.176394738256931e-03, -8.168533444404602e-03, -8.160699158906937e-03, -8.15289095044136e-03, -8.145106956362724e-03, -8.137347176671028e-03, -8.129608817398548e-03, -8.121891878545284e-03, -8.114194497466087e-03, -8.106516674160957e-03, -8.09885747730732e-03, -8.0912159755826e-03, -8.083592168986797e-03, -8.075985126197338e-03, -8.068394847214222e-03, -8.060821332037449e-03, -8.05326271802187e-03, -8.045721799135208e-03, -8.03819764405489e-03, -8.030688390135765e-03, -8.023195900022984e-03, -8.015720173716545e-03, -8.008260279893875e-03, -8.000814355909824e-03, -7.993384264409542e-03, -7.985968142747879e-03, -7.978567853569984e-03, -7.971182465553284e-03, -7.963812910020351e-03, -7.956457324326038e-03, -7.949116639792919e-03, -7.94178806245327e-03, -7.934472523629665e-03, -7.92717095464468e-03, -7.919883355498314e-03, -7.912609726190567e-03, -7.905351929366589e-03, -7.898108102381229e-03, -7.890877313911915e-03, -7.883660495281219e-03, -7.876456715166569e-03, -7.869269698858261e-03, -7.862098515033722e-03, -7.854944095015526e-03, -7.847807370126247e-03] +dooOpeClo.port_a1.m_flow=[4.811525940895081e-01, 2.426441013813019e-01, 2.039953768253326e-01, 1.721560806035995e-01, 1.460731625556946e-01, 1.246125400066376e-01, 1.067680716514587e-01, 9.168634563684462e-02, 7.872127741575241e-02, 6.73813596367836e-02, 5.728959664702415e-02, 4.812897369265556e-02, 3.969218209385872e-02, 3.184438869357109e-02, 2.448090910911559e-02, 1.747953146696091e-02, 1.056661456823349e-02, 3.272112226113677e-03, 1.090668491087854e-03, 8.012576960027218e-03, 1.450682152062654e-02, 2.061144076287746e-02, 2.639386989176273e-02, 3.188184648752213e-02, 3.701551631093025e-02, 4.175435751676559e-02, 4.607944935560226e-02, 4.998991265892984e-02, 5.349646136164666e-02, 5.661917105317116e-02, 5.938380211591721e-02, 6.181908771395683e-02, 6.395465880632401e-02, 6.581928580999374e-02, 6.744010746479034e-02, 6.884287297725677e-02, 7.005187124013901e-02, 7.108982652425766e-02, 7.197699695825577e-02, 7.27321058511734e-02, 7.337186485528946e-02, 7.39109143614769e-02, 7.436239719390869e-02, 7.473772764205933e-02, 7.504698634147644e-02, 7.529907673597336e-02, 7.550167292356491e-02, 7.566151022911072e-02, 7.578448206186295e-02, 7.587562501430511e-02, 7.59393498301506e-02, 7.597958296537399e-02, 7.5999416410923e-02, 7.600195705890656e-02, 7.598958909511566e-02, 7.59643092751503e-02, 7.592791318893433e-02, 7.588168978691101e-02, 7.58272260427475e-02, 7.576566934585571e-02, 7.569792866706848e-02, 7.562477886676788e-02, 7.554705440998077e-02, 7.546557486057281e-02, 7.538112998008728e-02, 7.529390603303909e-02, 7.520430535078049e-02, 7.511284202337265e-02, 7.502011209726334e-02, 7.492627203464508e-02, 7.483145594596863e-02, 7.473596185445786e-02, 7.463968545198441e-02, 7.454242557287216e-02, 7.44440108537674e-02, 7.434526830911636e-02, 7.424568384885788e-02, 7.414516806602478e-02, 7.404397428035736e-02, 7.394265383481979e-02, 7.384131103754044e-02, 7.37404078245163e-02, 7.363910228013992e-02, 7.353747636079788e-02, 7.343558967113495e-02, 7.333341240882874e-02, 7.323209941387177e-02, 7.313153892755508e-02, 7.303216308355331e-02, 7.293372601270676e-02, 7.283526659011841e-02, 7.273697853088379e-02, 7.263839244842529e-02, 7.254035025835037e-02, 7.244288176298141e-02, 7.234583050012589e-02, 7.224921137094498e-02, 7.215140014886856e-02, 7.205239683389664e-02, 7.195144891738892e-02, 7.184889912605286e-02] +dooOpeClo.port_a2.m_flow=[1.375604569911957e-01, 2.393851578235626e-01, 2.010534405708313e-01, 1.694840490818024e-01, 1.436281353235245e-01, 1.224102005362511e-01, 1.047675162553787e-01, 8.986999094486235e-02, 7.707079499959946e-02, 6.58840611577034e-02, 5.593186244368553e-02, 4.690323770046234e-02, 3.858817368745804e-02, 3.085569851100445e-02, 2.360230311751365e-02, 1.670669764280319e-02, 9.898582473397255e-03, 2.706486964598298e-03, 6.225434481166303e-04, 7.644714787602425e-03, 1.423620618879795e-02, 2.043679542839527e-02, 2.63095423579216e-02, 3.188351169228554e-02, 3.709784895181656e-02, 4.191161692142487e-02, 4.630571976304054e-02, 5.027928203344346e-02, 5.384312570095064e-02, 5.701759830117226e-02, 5.98287396132946e-02, 6.230565905570984e-02, 6.447841227054596e-02, 6.637613475322723e-02, 6.802636384963989e-02, 6.945523619651794e-02, 7.068739086389542e-02, 7.174587994813919e-02, 7.265123724937439e-02, 7.342250645160675e-02, 7.407663762569427e-02, 7.462844997644424e-02, 7.509128749370575e-02, 7.54767507314682e-02, 7.579506188631058e-02, 7.605525106191635e-02, 7.626510411500931e-02, 7.643146067857742e-02, 7.656031101942062e-02, 7.66567662358284e-02, 7.672529667615891e-02, 7.676988840103149e-02, 7.679367065429688e-02, 7.679983228445053e-02, 7.679079473018646e-02, 7.676856964826584e-02, 7.673496007919312e-02, 7.669124007225037e-02, 7.663910090923309e-02, 7.657970488071442e-02, 7.651396840810776e-02, 7.6442651450634e-02, 7.63665959239006e-02, 7.62866884469986e-02, 7.620372623205185e-02, 7.61178731918335e-02, 7.602951675653458e-02, 7.593920081853867e-02, 7.584758847951889e-02, 7.575481384992599e-02, 7.566100358963013e-02, 7.556647062301636e-02, 7.547108083963394e-02, 7.53745511174202e-02, 7.527667284011841e-02, 7.517851889133453e-02, 7.507947087287903e-02, 7.497946918010712e-02, 7.487876713275909e-02, 7.477790117263794e-02, 7.467701286077499e-02, 7.457659393548965e-02, 7.447566837072372e-02, 7.437428832054138e-02, 7.427246123552322e-02, 7.417010515928268e-02, 7.406879961490631e-02, 7.396838814020157e-02, 7.386945933103561e-02, 7.37716406583786e-02, 7.367350906133652e-02, 7.357534021139145e-02, 7.347644120454788e-02, 7.337812334299088e-02, 7.328052073717117e-02, 7.318346947431564e-02, 7.308711111545563e-02, 7.298924028873444e-02, 7.28900358080864e-02, 7.278864085674286e-02, 7.268547266721725e-02] +volBotWes.T=[2.951499938964844e+02, 2.942801513671875e+02, 2.944902648925781e+02, 2.946297607421875e+02, 2.947250061035156e+02, 2.947914733886719e+02, 2.948385925292969e+02, 2.94872314453125e+02, 2.94896484375e+02, 2.949136962890625e+02, 2.9492578125e+02, 2.949340209960938e+02, 2.949393920898438e+02, 2.949425659179688e+02, 2.949441833496094e+02, 2.949446716308594e+02, 2.949444274902344e+02, 2.9494384765625e+02, 2.949431762695312e+02, 2.949425354003906e+02, 2.94941650390625e+02, 2.949402160644531e+02, 2.9493798828125e+02, 2.949347839355469e+02, 2.949303588867188e+02, 2.949245910644531e+02, 2.949173889160156e+02, 2.949087829589844e+02, 2.948988037109375e+02, 2.94887451171875e+02, 2.948748779296875e+02, 2.948611145019531e+02, 2.948462829589844e+02, 2.948304748535156e+02, 2.948137817382812e+02, 2.947963256835938e+02, 2.947781677246094e+02, 2.947594299316406e+02, 2.947401733398438e+02, 2.94720458984375e+02, 2.947003479003906e+02, 2.94679931640625e+02, 2.946592102050781e+02, 2.946382751464844e+02, 2.946171569824219e+02, 2.945958557128906e+02, 2.945744323730469e+02, 2.945529174804688e+02, 2.945313415527344e+02, 2.945096740722656e+02, 2.944879760742188e+02, 2.944662475585938e+02, 2.944444885253906e+02, 2.944227600097656e+02, 2.944010314941406e+02, 2.943793029785156e+02, 2.943576049804688e+02, 2.943359375e+02, 2.943143005371094e+02, 2.942926940917969e+02, 2.942711181640625e+02, 2.942496032714844e+02, 2.942281188964844e+02, 2.942066955566406e+02, 2.941853332519531e+02, 2.941640014648438e+02, 2.941427612304688e+02, 2.941215515136719e+02, 2.941004028320312e+02, 2.940792846679688e+02, 2.940582580566406e+02, 2.940372924804688e+02, 2.940163879394531e+02, 2.939955139160156e+02, 2.939747314453125e+02, 2.939539794921875e+02, 2.939333190917969e+02, 2.939126892089844e+02, 2.938921203613281e+02, 2.938716125488281e+02, 2.938511962890625e+02, 2.93830810546875e+02, 2.938104858398438e+02, 2.937902221679688e+02, 2.9377001953125e+02, 2.937498779296875e+02, 2.937297973632812e+02, 2.937097473144531e+02, 2.936898193359375e+02, 2.93669921875e+02, 2.936500854492188e+02, 2.936303100585938e+02, 2.936105651855469e+02, 2.935909118652344e+02, 2.935713195800781e+02, 2.935517883300781e+02, 2.935322875976562e+02, 2.935128784179688e+02, 2.934934997558594e+02, 2.934741516113281e+02, 2.934548645019531e+02] +volBotEas.T=[2.981499938964844e+02, 2.9653076171875e+02, 2.962556762695312e+02, 2.960536804199219e+02, 2.958978576660156e+02, 2.957723388671875e+02, 2.956674194335938e+02, 2.955769348144531e+02, 2.954969482421875e+02, 2.954246826171875e+02, 2.953582763671875e+02, 2.9529638671875e+02, 2.952380065917969e+02, 2.951823425292969e+02, 2.951288146972656e+02, 2.95076904296875e+02, 2.950261535644531e+02, 2.949762878417969e+02, 2.949269104003906e+02, 2.948779602050781e+02, 2.948297119140625e+02, 2.947824096679688e+02, 2.94736328125e+02, 2.946915893554688e+02, 2.946483459472656e+02, 2.946066284179688e+02, 2.945664978027344e+02, 2.945279541015625e+02, 2.94490966796875e+02, 2.944554748535156e+02, 2.9442138671875e+02, 2.943886413574219e+02, 2.943571472167969e+02, 2.943267517089844e+02, 2.942973937988281e+02, 2.942689514160156e+02, 2.942413635253906e+02, 2.942145080566406e+02, 2.941883239746094e+02, 2.941627197265625e+02, 2.941376647949219e+02, 2.941130676269531e+02, 2.940888671875e+02, 2.940650634765625e+02, 2.940415954589844e+02, 2.940184326171875e+02, 2.939955139160156e+02, 2.939728393554688e+02, 2.939503784179688e+02, 2.939281005859375e+02, 2.93906005859375e+02, 2.938840942382812e+02, 2.938623046875e+02, 2.938406372070312e+02, 2.938191223144531e+02, 2.937977294921875e+02, 2.937764282226562e+02, 2.937552490234375e+02, 2.937341613769531e+02, 2.93713134765625e+02, 2.936922302246094e+02, 2.936714172363281e+02, 2.936506652832031e+02, 2.936300048828125e+02, 2.936094055175781e+02, 2.935888977050781e+02, 2.935684509277344e+02, 2.93548095703125e+02, 2.935277709960938e+02, 2.935075378417969e+02, 2.934873657226562e+02, 2.9346728515625e+02, 2.934472351074219e+02, 2.9342724609375e+02, 2.934073486328125e+02, 2.933874816894531e+02, 2.933677062988281e+02, 2.933479919433594e+02, 2.933283386230469e+02, 2.933087463378906e+02, 2.932892150878906e+02, 2.932697448730469e+02, 2.932503051757812e+02, 2.9323095703125e+02, 2.93211669921875e+02, 2.931924133300781e+02, 2.931732482910156e+02, 2.931541137695312e+02, 2.931350402832031e+02, 2.931160278320312e+02, 2.930970764160156e+02, 2.930781860351562e+02, 2.93059326171875e+02, 2.930405578613281e+02, 2.930218200683594e+02, 2.930031433105469e+02, 2.929844970703125e+02, 2.929659423828125e+02, 2.929474487304688e+02, 2.929290161132812e+02, 2.9291064453125e+02] +volTopWes.T=[2.931499938964844e+02, 2.920550537109375e+02, 2.920819702148438e+02, 2.92106201171875e+02, 2.921281433105469e+02, 2.921480712890625e+02, 2.92166259765625e+02, 2.921828918457031e+02, 2.921981811523438e+02, 2.922122497558594e+02, 2.922252807617188e+02, 2.922373046875e+02, 2.922485046386719e+02, 2.922589416503906e+02, 2.922686462402344e+02, 2.922777404785156e+02, 2.922862548828125e+02, 2.922942199707031e+02, 2.923017272949219e+02, 2.923087768554688e+02, 2.923154602050781e+02, 2.923217468261719e+02, 2.923276672363281e+02, 2.923332824707031e+02, 2.923386535644531e+02, 2.923437805175781e+02, 2.923486938476562e+02, 2.923534240722656e+02, 2.923579406738281e+02, 2.923623046875e+02, 2.923664855957031e+02, 2.923705444335938e+02, 2.923744201660156e+02, 2.92378173828125e+02, 2.923817749023438e+02, 2.923852844238281e+02, 2.923886413574219e+02, 2.923919067382812e+02, 2.9239501953125e+02, 2.923980712890625e+02, 2.924010009765625e+02, 2.924038391113281e+02, 2.924065856933594e+02, 2.924092712402344e+02, 2.924118347167969e+02, 2.924143371582031e+02, 2.92416748046875e+02, 2.924190979003906e+02, 2.9242138671875e+02, 2.924236145019531e+02, 2.924257507324219e+02, 2.924278564453125e+02, 2.924298706054688e+02, 2.924318542480469e+02, 2.924337768554688e+02, 2.924356384277344e+02, 2.924374389648438e+02, 2.92439208984375e+02, 2.924409484863281e+02, 2.92442626953125e+02, 2.924442749023438e+02, 2.924458618164062e+02, 2.924474182128906e+02, 2.924489440917969e+02, 2.924504089355469e+02, 2.924518432617188e+02, 2.924532775878906e+02, 2.924546508789062e+02, 2.924559936523438e+02, 2.924573059082031e+02, 2.924585876464844e+02, 2.924598388671875e+02, 2.924610595703125e+02, 2.924622497558594e+02, 2.924634399414062e+02, 2.924645690917969e+02, 2.924656982421875e+02, 2.92466796875e+02, 2.924678649902344e+02, 2.924689025878906e+02, 2.924699401855469e+02, 2.92470947265625e+02, 2.92471923828125e+02, 2.924728698730469e+02, 2.924738159179688e+02, 2.924747314453125e+02, 2.924756469726562e+02, 2.924765319824219e+02, 2.924773864746094e+02, 2.924782409667969e+02, 2.924790649414062e+02, 2.924798889160156e+02, 2.924806823730469e+02, 2.924814758300781e+02, 2.924822387695312e+02, 2.924830017089844e+02, 2.924837341308594e+02, 2.924844360351562e+02, 2.924851684570312e+02, 2.9248583984375e+02, 2.924865417480469e+02] +volTopEas.T=[2.941499938964844e+02, 2.929972229003906e+02, 2.929735717773438e+02, 2.929520874023438e+02, 2.929325256347656e+02, 2.929146728515625e+02, 2.928983154296875e+02, 2.928832702636719e+02, 2.92869384765625e+02, 2.928565673828125e+02, 2.928446655273438e+02, 2.928335876464844e+02, 2.928232421875e+02, 2.928135681152344e+02, 2.928045043945312e+02, 2.927959899902344e+02, 2.927879638671875e+02, 2.927803955078125e+02, 2.927732238769531e+02, 2.927664184570312e+02, 2.927599487304688e+02, 2.927538146972656e+02, 2.927479248046875e+02, 2.927423400878906e+02, 2.927369995117188e+02, 2.9273193359375e+02, 2.927271118164062e+02, 2.927225341796875e+02, 2.927181701660156e+02, 2.927140197753906e+02, 2.927100524902344e+02, 2.927062377929688e+02, 2.927026062011719e+02, 2.926991577148438e+02, 2.926958312988281e+02, 2.926926574707031e+02, 2.926896057128906e+02, 2.926866760253906e+02, 2.926838684082031e+02, 2.9268115234375e+02, 2.926785583496094e+02, 2.926760864257812e+02, 2.926736755371094e+02, 2.926713562011719e+02, 2.926691284179688e+02, 2.926669921875e+02, 2.926649169921875e+02, 2.926629333496094e+02, 2.926609802246094e+02, 2.926591186523438e+02, 2.926573181152344e+02, 2.926555786132812e+02, 2.926539001464844e+02, 2.926522521972656e+02, 2.926506958007812e+02, 2.926491394042969e+02, 2.926476745605469e+02, 2.92646240234375e+02, 2.926448364257812e+02, 2.926434936523438e+02, 2.926421813964844e+02, 2.926408996582031e+02, 2.926396484375e+02, 2.926384582519531e+02, 2.926372680664062e+02, 2.926361389160156e+02, 2.926350402832031e+02, 2.926339721679688e+02, 2.926329040527344e+02, 2.926318969726562e+02, 2.926308898925781e+02, 2.926299133300781e+02, 2.926289672851562e+02, 2.926280517578125e+02, 2.926271667480469e+02, 2.926262817382812e+02, 2.926254272460938e+02, 2.926246032714844e+02, 2.92623779296875e+02, 2.926229858398438e+02, 2.926222229003906e+02, 2.926214599609375e+02, 2.926207275390625e+02, 2.926199951171875e+02, 2.926192932128906e+02, 2.926185913085938e+02, 2.92617919921875e+02, 2.926172485351562e+02, 2.926166076660156e+02, 2.92615966796875e+02, 2.926153564453125e+02, 2.9261474609375e+02, 2.926141357421875e+02, 2.926135559082031e+02, 2.926130065917969e+02, 2.926124267578125e+02, 2.926118774414062e+02, 2.926113586425781e+02, 2.926108093261719e+02, 2.926102905273438e+02, 2.926098022460938e+02] volOut.T=[2.831499938964844e+02, 2.831499938964844e+02] -volBotWes.T=[2.951499938964844e+02, 2.942801513671875e+02, 2.94490234375e+02, 2.946298217773438e+02, 2.947248229980469e+02, 2.947916564941406e+02, 2.948385925292969e+02, 2.948721923828125e+02, 2.948965454101562e+02, 2.949137573242188e+02, 2.9492578125e+02, 2.949340209960938e+02, 2.949393615722656e+02, 2.949425354003906e+02, 2.949441223144531e+02, 2.949446105957031e+02, 2.949443664550781e+02, 2.949437561035156e+02, 2.94943115234375e+02, 2.949424743652344e+02, 2.949415893554688e+02, 2.94940185546875e+02, 2.949379577636719e+02, 2.94934814453125e+02, 2.949303894042969e+02, 2.949245910644531e+02, 2.949174499511719e+02, 2.949088439941406e+02, 2.948988647460938e+02, 2.948875427246094e+02, 2.948749389648438e+02, 2.948611755371094e+02, 2.948463134765625e+02, 2.948305053710938e+02, 2.948138427734375e+02, 2.9479638671875e+02, 2.947782287597656e+02, 2.947594909667969e+02, 2.947402038574219e+02, 2.947204895019531e+02, 2.947004089355469e+02, 2.946799926757812e+02, 2.946592712402344e+02, 2.946383361816406e+02, 2.946171875e+02, 2.945958862304688e+02, 2.945744323730469e+02, 2.945529174804688e+02, 2.945313415527344e+02, 2.945097045898438e+02, 2.944880065917969e+02, 2.944662780761719e+02, 2.944445495605469e+02, 2.944228210449219e+02, 2.944010620117188e+02, 2.943793334960938e+02, 2.943576049804688e+02, 2.943359375e+02, 2.943142700195312e+02, 2.942926635742188e+02, 2.942711181640625e+02, 2.942496032714844e+02, 2.942281188964844e+02, 2.942067260742188e+02, 2.941853637695312e+02, 2.941640319824219e+02, 2.941427917480469e+02, 2.9412158203125e+02, 2.941004333496094e+02, 2.94079345703125e+02, 2.940583190917969e+02, 2.940373229980469e+02, 2.940164184570312e+02, 2.939955444335938e+02, 2.939747314453125e+02, 2.939539794921875e+02, 2.939333190917969e+02, 2.939126892089844e+02, 2.938921203613281e+02, 2.938716125488281e+02, 2.938511962890625e+02, 2.93830810546875e+02, 2.938104858398438e+02, 2.937902221679688e+02, 2.9377001953125e+02, 2.937499084472656e+02, 2.937298278808594e+02, 2.937098083496094e+02, 2.936898498535156e+02, 2.93669921875e+02, 2.936500854492188e+02, 2.936303100585938e+02, 2.93610595703125e+02, 2.935909118652344e+02, 2.935713195800781e+02, 2.935517578125e+02, 2.935322570800781e+02, 2.935128173828125e+02, 2.934934387207031e+02, 2.9347412109375e+02, 2.934548645019531e+02] -volBotEas.T=[2.981499938964844e+02, 2.9653076171875e+02, 2.962557067871094e+02, 2.960536193847656e+02, 2.958980712890625e+02, 2.957721557617188e+02, 2.956673889160156e+02, 2.955770568847656e+02, 2.954968566894531e+02, 2.954246215820312e+02, 2.953583068847656e+02, 2.952964172363281e+02, 2.952380065917969e+02, 2.951824035644531e+02, 2.951288757324219e+02, 2.950769348144531e+02, 2.950262451171875e+02, 2.949763793945312e+02, 2.94927001953125e+02, 2.948780517578125e+02, 2.948297729492188e+02, 2.94782470703125e+02, 2.947363586425781e+02, 2.946915893554688e+02, 2.946483459472656e+02, 2.946066284179688e+02, 2.945664978027344e+02, 2.945279235839844e+02, 2.944909057617188e+02, 2.944554443359375e+02, 2.9442138671875e+02, 2.943886413574219e+02, 2.943571472167969e+02, 2.943267517089844e+02, 2.942973937988281e+02, 2.942689514160156e+02, 2.942413635253906e+02, 2.942145080566406e+02, 2.941883544921875e+02, 2.941627502441406e+02, 2.941376647949219e+02, 2.941130676269531e+02, 2.940888671875e+02, 2.940650634765625e+02, 2.940415954589844e+02, 2.940184326171875e+02, 2.939955444335938e+02, 2.939728698730469e+02, 2.939504089355469e+02, 2.939281311035156e+02, 2.939060363769531e+02, 2.938840942382812e+02, 2.938623046875e+02, 2.938406372070312e+02, 2.938191528320312e+02, 2.937977600097656e+02, 2.937764587402344e+02, 2.937552795410156e+02, 2.937341918945312e+02, 2.937132263183594e+02, 2.936922912597656e+02, 2.936714782714844e+02, 2.936507263183594e+02, 2.936300354003906e+02, 2.936094360351562e+02, 2.935889282226562e+02, 2.935684814453125e+02, 2.93548095703125e+02, 2.935278015136719e+02, 2.935075378417969e+02, 2.934873962402344e+02, 2.9346728515625e+02, 2.93447265625e+02, 2.934272766113281e+02, 2.934073791503906e+02, 2.933875427246094e+02, 2.933677673339844e+02, 2.933480529785156e+02, 2.933283996582031e+02, 2.933088073730469e+02, 2.932892456054688e+02, 2.93269775390625e+02, 2.932503662109375e+02, 2.932309875488281e+02, 2.932117004394531e+02, 2.931924438476562e+02, 2.931732788085938e+02, 2.931541442871094e+02, 2.931350708007812e+02, 2.931160583496094e+02, 2.930971069335938e+02, 2.930782165527344e+02, 2.930593872070312e+02, 2.930405883789062e+02, 2.930218811035156e+02, 2.930032043457031e+02, 2.929845886230469e+02, 2.929660339355469e+02, 2.929475402832031e+02, 2.929290771484375e+02, 2.929107055664062e+02] -volTopEas.T=[2.941499938964844e+02, 2.929972229003906e+02, 2.929735717773438e+02, 2.929520874023438e+02, 2.929325256347656e+02, 2.929146728515625e+02, 2.928983154296875e+02, 2.928832702636719e+02, 2.92869384765625e+02, 2.928565673828125e+02, 2.928446655273438e+02, 2.928335876464844e+02, 2.928232421875e+02, 2.928135681152344e+02, 2.928045043945312e+02, 2.927959899902344e+02, 2.927879638671875e+02, 2.927803955078125e+02, 2.927732238769531e+02, 2.927664184570312e+02, 2.927599487304688e+02, 2.927538146972656e+02, 2.927479553222656e+02, 2.927423400878906e+02, 2.927370300292969e+02, 2.927319641113281e+02, 2.927271423339844e+02, 2.927225646972656e+02, 2.927182006835938e+02, 2.927140502929688e+02, 2.927100830078125e+02, 2.92706298828125e+02, 2.927026672363281e+02, 2.9269921875e+02, 2.926958923339844e+02, 2.926927185058594e+02, 2.92689697265625e+02, 2.92686767578125e+02, 2.926839599609375e+02, 2.926812744140625e+02, 2.926786804199219e+02, 2.926761779785156e+02, 2.926737976074219e+02, 2.926714782714844e+02, 2.926692504882812e+02, 2.926671142578125e+02, 2.926650695800781e+02, 2.926630554199219e+02, 2.926611328125e+02, 2.926592712402344e+02, 2.92657470703125e+02, 2.926557312011719e+02, 2.92654052734375e+02, 2.926524047851562e+02, 2.926508483886719e+02, 2.926493225097656e+02, 2.926478271484375e+02, 2.926463928222656e+02, 2.9264501953125e+02, 2.926436462402344e+02, 2.926423645019531e+02, 2.926410827636719e+02, 2.926398315429688e+02, 2.926386413574219e+02, 2.92637451171875e+02, 2.926363220214844e+02, 2.926351928710938e+02, 2.926341247558594e+02, 2.926330871582031e+02, 2.926320495605469e+02, 2.926310424804688e+02, 2.926300964355469e+02, 2.92629150390625e+02, 2.926282348632812e+02, 2.926273193359375e+02, 2.9262646484375e+02, 2.926256103515625e+02, 2.92624755859375e+02, 2.926239624023438e+02, 2.926231689453125e+02, 2.926223754882812e+02, 2.926216125488281e+02, 2.926208801269531e+02, 2.926201477050781e+02, 2.926194458007812e+02, 2.926187438964844e+02, 2.926180725097656e+02, 2.92617431640625e+02, 2.926167602539062e+02, 2.926161499023438e+02, 2.926155090332031e+02, 2.926148986816406e+02, 2.926143188476562e+02, 2.926137390136719e+02, 2.926131591796875e+02, 2.926126098632812e+02, 2.92612060546875e+02, 2.926115112304688e+02, 2.926109924316406e+02, 2.926104736328125e+02, 2.926099853515625e+02] -volTopWes.T=[2.931499938964844e+02, 2.920550537109375e+02, 2.920819702148438e+02, 2.92106201171875e+02, 2.921281433105469e+02, 2.921480712890625e+02, 2.92166259765625e+02, 2.921828918457031e+02, 2.921981811523438e+02, 2.922122497558594e+02, 2.922252807617188e+02, 2.922373046875e+02, 2.922485046386719e+02, 2.922589111328125e+02, 2.922686462402344e+02, 2.922777099609375e+02, 2.922862243652344e+02, 2.922942199707031e+02, 2.923017272949219e+02, 2.923087768554688e+02, 2.923154296875e+02, 2.923217163085938e+02, 2.923276672363281e+02, 2.92333251953125e+02, 2.92338623046875e+02, 2.923437194824219e+02, 2.923486328125e+02, 2.923533630371094e+02, 2.923578796386719e+02, 2.923622436523438e+02, 2.923664245605469e+02, 2.923704528808594e+02, 2.923743286132812e+02, 2.923780822753906e+02, 2.923816833496094e+02, 2.923851623535156e+02, 2.923885192871094e+02, 2.923917846679688e+02, 2.923948974609375e+02, 2.9239794921875e+02, 2.9240087890625e+02, 2.924036865234375e+02, 2.924064331054688e+02, 2.924091186523438e+02, 2.924116821289062e+02, 2.924141845703125e+02, 2.924165954589844e+02, 2.924189453125e+02, 2.924212036132812e+02, 2.924234313964844e+02, 2.924255676269531e+02, 2.924276733398438e+02, 2.924296875e+02, 2.924316711425781e+02, 2.9243359375e+02, 2.924354553222656e+02, 2.92437255859375e+02, 2.924390258789062e+02, 2.924407348632812e+02, 2.924424133300781e+02, 2.924440612792969e+02, 2.924456481933594e+02, 2.924472045898438e+02, 2.9244873046875e+02, 2.924501953125e+02, 2.9245166015625e+02, 2.924530639648438e+02, 2.924544372558594e+02, 2.924557800292969e+02, 2.924570922851562e+02, 2.924583740234375e+02, 2.924596557617188e+02, 2.924608764648438e+02, 2.924620666503906e+02, 2.924632263183594e+02, 2.924643859863281e+02, 2.924654846191406e+02, 2.924665832519531e+02, 2.924676513671875e+02, 2.924687194824219e+02, 2.924697265625e+02, 2.924707336425781e+02, 2.924717102050781e+02, 2.924726867675781e+02, 2.924736328125e+02, 2.924745483398438e+02, 2.924754333496094e+02, 2.924763488769531e+02, 2.924772033691406e+02, 2.924780578613281e+02, 2.924788818359375e+02, 2.924797058105469e+02, 2.924804992675781e+02, 2.924812622070312e+02, 2.924820251464844e+02, 2.924827880859375e+02, 2.924835205078125e+02, 2.924842529296875e+02, 2.924849548339844e+02, 2.924856262207031e+02, 2.92486328125e+02] -dooOpeClo.dpAB[1]=[1.630439311265945e-01, 8.686979115009308e-02, 6.820887327194214e-02, 5.505302920937538e-02, 4.539577290415764e-02, 3.796143084764481e-02, 3.210747241973877e-02, 2.732221968472004e-02, 2.328277751803398e-02, 1.982526853680611e-02, 1.679759658873081e-02, 1.408404018729925e-02, 1.161625515669584e-02, 9.340335614979267e-03, 7.205587346106764e-03, 5.173753947019577e-03, 3.216377226635814e-03, 1.306616701185703e-03, -5.84752531722188e-04, -2.460814081132412e-03, -4.300799686461687e-03, -6.08251104131341e-03, -7.788132876157761e-03, -9.404725395143032e-03, -1.091364212334156e-02, -1.231093797832727e-02, -1.359427999705076e-02, -1.476139575242997e-02, -1.581394486129284e-02, -1.675467379391193e-02, -1.75912044942379e-02, -1.833116635680199e-02, -1.898219622671604e-02, -1.955193653702736e-02, -2.004793286323547e-02, -2.047811821103096e-02, -2.084940113127232e-02, -2.116827666759491e-02, -2.143988385796547e-02, -2.167221903800964e-02, -2.187011204659939e-02, -2.20369603484869e-02, -2.217615395784378e-02, -2.229109406471252e-02, -2.238518372178078e-02, -2.246182411909103e-02, -2.252158336341381e-02, -2.256992273032665e-02, -2.260800637304783e-02, -2.263668924570084e-02, -2.265682630240917e-02, -2.266927435994148e-02, -2.267489023506641e-02, -2.267453074455261e-02, -2.266905456781387e-02, -2.265932224690914e-02, -2.264619246125221e-02, -2.263052575290203e-02, -2.261138893663883e-02, -2.259070612490177e-02, -2.256874740123749e-02, -2.254559099674225e-02, -2.252130582928658e-02, -2.249596826732159e-02, -2.24696509540081e-02, -2.244243025779724e-02, -2.241438068449497e-02, -2.238557301461697e-02, -2.235608361661434e-02, -2.232598885893822e-02, -2.229535952210426e-02, -2.22642719745636e-02, -2.223280072212219e-02, -2.220102213323116e-02, -2.216900698840618e-02, -2.213683351874352e-02, -2.210457436740398e-02, -2.207230590283871e-02, -2.204010263085365e-02, -2.200803905725479e-02, -2.197598852217197e-02, -2.194393798708916e-02, -2.191188931465149e-02, -2.187984995543957e-02, -2.184782363474369e-02, -2.181581035256386e-02, -2.178381569683552e-02, -2.175184525549412e-02, -2.171989902853966e-02, -2.168798446655273e-02, -2.165610156953335e-02, -2.16242577880621e-02, -2.159245312213898e-02, -2.156069315969944e-02, -2.152898162603378e-02, -2.14973222464323e-02, -2.14657187461853e-02, -2.143417298793793e-02, -2.140269055962563e-02, -2.13712751865387e-02, -2.133993059396744e-02] -oriOutBot.dp=[1.3240830078125e+03, -8.225318789482117e-01, -8.063549399375916e-01, -7.944550514221191e-01, -7.852829694747925e-01, -7.778538465499878e-01, -7.716692090034485e-01, -7.663323879241943e-01, -7.61591911315918e-01, -7.573199868202209e-01, -7.533979415893555e-01, -7.497349977493286e-01, -7.462775707244873e-01, -7.42983341217041e-01, -7.39812433719635e-01, -7.367348074913025e-01, -7.337281107902527e-01, -7.307713627815247e-01, -7.27841854095459e-01, -7.249366044998169e-01, -7.2207111120224e-01, -7.192620635032654e-01, -7.165225744247437e-01, -7.138636112213135e-01, -7.112929821014404e-01, -7.088126540184021e-01, -7.064244747161865e-01, -7.041299343109131e-01, -7.019277811050415e-01, -6.998158693313599e-01, -6.977882385253906e-01, -6.958390474319458e-01, -6.939623355865479e-01, -6.921523213386536e-01, -6.904031038284302e-01, -6.887085437774658e-01, -6.870633363723755e-01, -6.854624152183533e-01, -6.83901846408844e-01, -6.82375431060791e-01, -6.808794736862183e-01, -6.794112920761108e-01, -6.779683232307434e-01, -6.765478849411011e-01, -6.751473546028137e-01, -6.73764169216156e-01, -6.723977327346802e-01, -6.710439324378967e-01, -6.69701874256134e-01, -6.683708429336548e-01, -6.670501828193665e-01, -6.657391786575317e-01, -6.644372344017029e-01, -6.631435751914978e-01, -6.618576645851135e-01, -6.60578727722168e-01, -6.593061685562134e-01, -6.580392122268677e-01, -6.567786335945129e-01, -6.555229425430298e-01, -6.542719006538391e-01, -6.530254483222961e-01, -6.517835259437561e-01, -6.505460143089294e-01, -6.493129134178162e-01, -6.480841040611267e-01, -6.468595266342163e-01, -6.45639181137085e-01, -6.444228887557983e-01, -6.432106494903564e-01, -6.420024037361145e-01, -6.40798032283783e-01, -6.39597475528717e-01, -6.384007334709167e-01, -6.372076272964478e-01, -6.360182166099548e-01, -6.348323225975037e-01, -6.336498856544495e-01, -6.324709057807922e-01, -6.312952637672424e-01, -6.301230788230896e-01, -6.28954291343689e-01, -6.277889609336853e-01, -6.266269683837891e-01, -6.254684329032898e-01, -6.243132352828979e-01, -6.231614351272583e-01, -6.220129728317261e-01, -6.208678483963013e-01, -6.197260022163391e-01, -6.185874938964844e-01, -6.174522638320923e-01, -6.163203120231628e-01, -6.15191638469696e-01, -6.140662431716919e-01, -6.129440069198608e-01, -6.118250489234924e-01, -6.107092499732971e-01, -6.095966696739197e-01, -6.084873080253601e-01, -6.073810458183289e-01] -oriWesTop.dp=[3.509163665771484e+01, 1.047542840242386e-01, 8.553688228130341e-02, 7.179112732410431e-02, 6.152300164103508e-02, 5.350488424301147e-02, 4.708601161837578e-02, 4.17732074856758e-02, 3.723224624991417e-02, 3.330117091536522e-02, 2.983423136174679e-02, 2.670851908624172e-02, 2.385592646896839e-02, 2.122048102319241e-02, 1.875096559524536e-02, 1.640641130506992e-02, 1.415720209479332e-02, 1.19760325178504e-02, 9.83230397105217e-03, 7.721112109720707e-03, 5.660864058881998e-03, 3.671639133244753e-03, 1.769466209225357e-03, -3.410791396163404e-05, -1.722471206448972e-03, -3.292579436674714e-03, -4.742860794067383e-03, -6.0717985033989e-03, -7.281539961695675e-03, -8.375388570129871e-03, -9.361092932522297e-03, -1.024640258401632e-02, -1.103906705975533e-02, -1.17468349635601e-02, -1.237736362963915e-02, -1.293864473700523e-02, -1.343761943280697e-02, -1.388082467019558e-02, -1.42734507098794e-02, -1.462352927774191e-02, -1.493595354259014e-02, -1.521418709307909e-02, -1.54616953805089e-02, -1.568194292485714e-02, -1.587839797139168e-02, -1.605452783405781e-02, -1.621094532310963e-02, -1.635325700044632e-02, -1.648270338773727e-02, -1.660021767020226e-02, -1.670672558248043e-02, -1.680316217243671e-02, -1.689045690000057e-02, -1.696953922510147e-02, -1.704134419560432e-02, -1.710680313408375e-02, -1.716684736311436e-02, -1.722241006791592e-02, -1.727239415049553e-02, -1.731910742819309e-02, -1.736289076507092e-02, -1.740385964512825e-02, -1.74421276897192e-02, -1.747780665755272e-02, -1.751101203262806e-02, -1.754185743629932e-02, -1.757045462727547e-02, -1.759691908955574e-02, -1.762136444449425e-02, -1.764390431344509e-02, -1.766465045511723e-02, -1.768372021615505e-02, -1.770122349262238e-02, -1.771727576851845e-02, -1.773199252784252e-02, -1.774548552930355e-02, -1.775787025690079e-02, -1.776925846934319e-02, -1.777976378798485e-02, -1.778950355947018e-02, -1.77982971072197e-02, -1.780624687671661e-02, -1.781337708234787e-02, -1.781970448791981e-02, -1.782525330781937e-02, -1.783004403114319e-02, -1.783409528434277e-02, -1.783742941915989e-02, -1.784006506204605e-02, -1.784202642738819e-02, -1.78433321416378e-02, -1.784400269389153e-02, -1.784406043589115e-02, -1.784352213144302e-02, -1.784241199493408e-02, -1.784075051546097e-02, -1.783855631947517e-02, -1.783585175871849e-02, -1.783265732228756e-02, -1.782899349927902e-02, -1.782487891614437e-02] -oriEasTop.dp=[-3.485583877563477e+01, 1.04769840836525e-01, 8.554204553365707e-02, 7.178006321191788e-02, 6.15290030837059e-02, 5.350610986351967e-02, 4.709191992878914e-02, 4.176799580454826e-02, 3.722714632749557e-02, 3.330185264348984e-02, 2.983199432492256e-02, 2.670677937567234e-02, 2.385422401130199e-02, 2.12192926555872e-02, 1.874877139925956e-02, 1.640409044921398e-02, 1.415545772761106e-02, 1.197408977895975e-02, 9.830391965806484e-03, 7.719221990555525e-03, 5.658984184265137e-03, 3.669759258627892e-03, 1.767577137798071e-03, -3.601342905312777e-05, -1.724403817206621e-03, -3.294543595984578e-03, -4.744858015328646e-03, -6.073831114917998e-03, -7.283607497811321e-03, -8.377496153116226e-03, -9.363234974443913e-03, -1.024856884032488e-02, -1.10412510111928e-02, -1.174904219806194e-02, -1.237960159778595e-02, -1.29409022629261e-02, -1.343989372253418e-02, -1.388311199843884e-02, -1.42757510766387e-02, -1.462583895772696e-02, -1.493827253580093e-02, -1.52165126055479e-02, -1.546402461826801e-02, -1.568427309393883e-02, -1.588073000311852e-02, -1.605686172842979e-02, -1.621328108012676e-02, -1.635559089481831e-02, -1.648503728210926e-02, -1.660254970192909e-02, -1.670905575156212e-02, -1.68054886162281e-02, -1.689277961850166e-02, -1.697185821831226e-02, -1.704365760087967e-02, -1.710911095142365e-02, -1.716915145516396e-02, -1.722471043467522e-02, -1.727468892931938e-02, -1.73213966190815e-02, -1.736517436802387e-02, -1.740613952279091e-02, -1.744440197944641e-02, -1.748007722198963e-02, -1.751327887177467e-02, -1.754411868751049e-02, -1.757271029055119e-02, -1.759916916489601e-02, -1.762360893189907e-02, -1.764614135026932e-02, -1.766688004136086e-02, -1.768594235181808e-02, -1.770343817770481e-02, -1.771948486566544e-02, -1.773419417440891e-02, -1.774767972528934e-02, -1.776005700230598e-02, -1.777143962681293e-02, -1.778194308280945e-02, -1.779167912900448e-02, -1.78004652261734e-02, -1.780840940773487e-02, -1.781553402543068e-02, -1.782185584306717e-02, -1.782739907503128e-02, -1.783218421041965e-02, -1.783622987568378e-02, -1.783955842256546e-02, -1.784219034016132e-02, -1.784414611756802e-02, -1.784544438123703e-02, -1.784610934555531e-02, -1.784615963697433e-02, -1.784561574459076e-02, -1.784449815750122e-02, -1.784282922744751e-02, -1.784062944352627e-02, -1.783791929483414e-02, -1.783471927046776e-02, -1.783104985952377e-02, -1.782693155109882e-02] -oriOutTop.dp=[1.3259169921875e+03, 8.224542737007141e-01, 8.063108921051025e-01, 7.94430136680603e-01, 7.852708101272583e-01, 7.778491973876953e-01, 7.716699242591858e-01, 7.663363814353943e-01, 7.615986466407776e-01, 7.573287487030029e-01, 7.534079551696777e-01, 7.497460246086121e-01, 7.462892532348633e-01, 7.429955005645752e-01, 7.398249506950378e-01, 7.367475032806396e-01, 7.337408661842346e-01, 7.307841181755066e-01, 7.278544902801514e-01, 7.249491214752197e-01, 7.220836877822876e-01, 7.192747592926025e-01, 7.165354490280151e-01, 7.138767242431641e-01, 7.113063931465149e-01, 7.0882648229599e-01, 7.064386606216431e-01, 7.041444778442383e-01, 7.019427418708801e-01, 6.998311281204224e-01, 6.97803795337677e-01, 6.958549022674561e-01, 6.93978488445282e-01, 6.921687126159668e-01, 6.904196739196777e-01, 6.887252926826477e-01, 6.870802044868469e-01, 6.854794025421143e-01, 6.839189529418945e-01, 6.823925971984863e-01, 6.808966994285583e-01, 6.794285774230957e-01, 6.779856085777283e-01, 6.765652298927307e-01, 6.751646995544434e-01, 6.737814545631409e-01, 6.724150776863098e-01, 6.710612177848816e-01, 6.697191596031189e-01, 6.683880686759949e-01, 6.670673489570618e-01, 6.657563447952271e-01, 6.644543409347534e-01, 6.631606817245483e-01, 6.618747115135193e-01, 6.60595715045929e-01, 6.593230366706848e-01, 6.580560803413391e-01, 6.567954421043396e-01, 6.555396914482117e-01, 6.542885899543762e-01, 6.530420780181885e-01, 6.518000960350037e-01, 6.505625247955322e-01, 6.493293642997742e-01, 6.481004953384399e-01, 6.468759179115295e-01, 6.456554532051086e-01, 6.444391012191772e-01, 6.432268023490906e-01, 6.420184969902039e-01, 6.408140659332275e-01, 6.396135091781616e-01, 6.384166479110718e-01, 6.372235417366028e-01, 6.360340118408203e-01, 6.348480582237244e-01, 6.336656212806702e-01, 6.324865221977234e-01, 6.313108205795288e-01, 6.301385760307312e-01, 6.289697885513306e-01, 6.278043389320374e-01, 6.266423463821411e-01, 6.254837512969971e-01, 6.243284940719604e-01, 6.23176634311676e-01, 6.22028112411499e-01, 6.208829283714294e-01, 6.197410225868225e-01, 6.18602454662323e-01, 6.174671649932861e-01, 6.163352131843567e-01, 6.152064204216003e-01, 6.140809655189514e-01, 6.129587292671204e-01, 6.118396520614624e-01, 6.107238531112671e-01, 6.096112132072449e-01, 6.085017323493958e-01, 6.073954701423645e-01] +oriWesTop.dp=[3.509163665771484e+01, 1.047530174255371e-01, 8.553364872932434e-02, 7.178767025470734e-02, 6.148460879921913e-02, 5.353806167840958e-02, 4.705270752310753e-02, 4.170230403542519e-02, 3.720686212182045e-02, 3.330569714307785e-02, 2.977336198091507e-02, 2.675893157720566e-02, 2.384754084050655e-02, 2.118769288063049e-02, 1.868343539535999e-02, 1.624619401991367e-02, 1.419994607567787e-02, 1.218724995851517e-02, 9.669153019785881e-03, 7.640408352017403e-03, 5.535798147320747e-03, 3.716073697432876e-03, 1.766404369845986e-03, -3.405324241612107e-05, -1.723507302813232e-03, -3.294051857665181e-03, -4.742877557873726e-03, -6.070377770811324e-03, -7.279138546437029e-03, -8.37384071201086e-03, -9.360688738524914e-03, -1.024686638265848e-02, -1.104012969881296e-02, -1.17484237998724e-02, -1.237958017736673e-02, -1.294116396456957e-02, -1.3440384529531e-02, -1.388403866440058e-02, -1.427823211997747e-02, -1.462864503264427e-02, -1.494037359952927e-02, -1.521793380379677e-02, -1.546539179980755e-02, -1.568630710244179e-02, -1.588383875787258e-02, -1.606080308556557e-02, -1.621963828802109e-02, -1.636250503361225e-02, -1.649130135774612e-02, -1.660766452550888e-02, -1.671304181218147e-02, -1.680872589349747e-02, -1.689575985074043e-02, -1.697517931461334e-02, -1.704780384898186e-02, -1.711432076990604e-02, -1.717536710202694e-02, -1.723141595721245e-02, -1.728302612900734e-02, -1.733061671257019e-02, -1.737453788518906e-02, -1.741508767008781e-02, -1.745258457958698e-02, -1.748734153807163e-02, -1.751965284347534e-02, -1.754963397979736e-02, -1.757746189832687e-02, -1.760333590209484e-02, -1.762748882174492e-02, -1.765001192688942e-02, -1.767098903656006e-02, -1.769055239856243e-02, -1.770871691405773e-02, -1.772545836865902e-02, -1.774076372385025e-02, -1.775491610169411e-02, -1.776780001819134e-02, -1.777942106127739e-02, -1.778988912701607e-02, -1.779938489198685e-02, -1.780797727406025e-02, -1.781582646071911e-02, -1.782270893454552e-02, -1.782867312431335e-02, -1.78337600082159e-02, -1.783798635005951e-02, -1.784172095358372e-02, -1.784495823085308e-02, -1.784784905612469e-02, -1.785033755004406e-02, -1.785213127732277e-02, -1.785331033170223e-02, -1.785373874008656e-02, -1.785371452569962e-02, -1.785326935350895e-02, -1.785237528383732e-02, -1.785106211900711e-02, -1.784881576895714e-02, -1.784566789865494e-02, -1.78414024412632e-02, -1.783613488078117e-02] +oriEasTop.dp=[-3.485583877563477e+01, 1.047681719064713e-01, 8.55402871966362e-02, 7.179028540849686e-02, 6.153666973114014e-02, 5.350280553102493e-02, 4.712774977087975e-02, 4.182234779000282e-02, 3.72648574411869e-02, 3.330736234784126e-02, 2.988856099545956e-02, 2.665312401950359e-02, 2.386130020022392e-02, 2.12453119456768e-02, 1.880642026662826e-02, 1.655496470630169e-02, 1.410260889679193e-02, 1.175008341670036e-02, 9.982351213693619e-03, 7.789116352796555e-03, 5.77488960698247e-03, 3.617409849539399e-03, 1.764081069268286e-03, -3.672625462058932e-05, -1.725512905977666e-03, -3.296023001894355e-03, -4.744878504425287e-03, -6.072418298572306e-03, -7.281206548213962e-03, -8.375954814255238e-03, -9.362827986478806e-03, -1.024903077632189e-02, -1.104232296347618e-02, -1.175064034759998e-02, -1.238181628286839e-02, -1.294342055916786e-02, -1.344265881925821e-02, -1.388632599264383e-02, -1.428052224218845e-02, -1.463094260543585e-02, -1.494269166141748e-02, -1.522026024758816e-02, -1.546772196888924e-02, -1.568863727152348e-02, -1.588617451488972e-02, -1.6063142567873e-02, -1.622197777032852e-02, -1.636484079062939e-02, -1.649363525211811e-02, -1.660999841988087e-02, -1.671537384390831e-02, -1.681105606257915e-02, -1.689808256924152e-02, -1.697749830782413e-02, -1.70501247048378e-02, -1.711664721369743e-02, -1.717769354581833e-02, -1.723372749984264e-02, -1.728532649576664e-02, -1.733290776610374e-02, -1.737682148814201e-02, -1.741736382246017e-02, -1.745485700666904e-02, -1.74896102398634e-02, -1.752191781997681e-02, -1.755189336836338e-02, -1.757970824837685e-02, -1.760556735098362e-02, -1.762971468269825e-02, -1.765223778784275e-02, -1.767322607338428e-02, -1.769280061125755e-02, -1.77109744399786e-02, -1.772770844399929e-02, -1.774298399686813e-02, -1.775712519884109e-02, -1.776999421417713e-02, -1.778160035610199e-02, -1.779205538332462e-02, -1.780154556035995e-02, -1.781014166772366e-02, -1.781801134347916e-02, -1.782490685582161e-02, -1.783086732029915e-02, -1.783592626452446e-02, -1.784008927643299e-02, -1.784379221498966e-02, -1.784701272845268e-02, -1.784992776811123e-02, -1.785246282815933e-02, -1.785427704453468e-02, -1.785546354949474e-02, -1.785586960613728e-02, -1.785582676529884e-02, -1.785537041723728e-02, -1.78544707596302e-02, -1.785315945744514e-02, -1.785090193152428e-02, -1.784773357212543e-02, -1.784343831241131e-02, -1.78381372243166e-02] +oriOutTop.dp=[1.3259169921875e+03, 8.224537968635559e-01, 8.063090443611145e-01, 7.944331169128418e-01, 7.852663397789001e-01, 7.778638005256653e-01, 7.716836929321289e-01, 7.663407921791077e-01, 7.616094350814819e-01, 7.573335766792297e-01, 7.534095644950867e-01, 7.497435808181763e-01, 7.462839484214783e-01, 7.430042028427124e-01, 7.398447394371033e-01, 7.367572784423828e-01, 7.337225079536438e-01, 7.307618856430054e-01, 7.279114127159119e-01, 7.249673008918762e-01, 7.221245169639587e-01, 7.192515134811401e-01, 7.165326476097107e-01, 7.138749361038208e-01, 7.113049626350403e-01, 7.088250517845154e-01, 7.064386010169983e-01, 7.041457891464233e-01, 7.019450664520264e-01, 6.998329758644104e-01, 6.978049874305725e-01, 6.958556175231934e-01, 6.939789652824402e-01, 6.921690106391907e-01, 6.904197335243225e-01, 6.887252926826477e-01, 6.870802640914917e-01, 6.854792833328247e-01, 6.839178204536438e-01, 6.823914051055908e-01, 6.808962225914001e-01, 6.794288158416748e-01, 6.779860258102417e-01, 6.765652298927307e-01, 6.751640439033508e-01, 6.737802624702454e-01, 6.724121570587158e-01, 6.710579991340637e-01, 6.697165369987488e-01, 6.683863997459412e-01, 6.670666337013245e-01, 6.657562851905823e-01, 6.644545197486877e-01, 6.631606221199036e-01, 6.618740558624268e-01, 6.605943441390991e-01, 6.593209505081177e-01, 6.580536365509033e-01, 6.567919850349426e-01, 6.555357575416565e-01, 6.54284656047821e-01, 6.530384421348572e-01, 6.517970561981201e-01, 6.505601406097412e-01, 6.493275761604309e-01, 6.480993032455444e-01, 6.468752026557922e-01, 6.456551551818848e-01, 6.444389820098877e-01, 6.432266235351562e-01, 6.420180797576904e-01, 6.408132314682007e-01, 6.396121382713318e-01, 6.38414740562439e-01, 6.372212171554565e-01, 6.360312104225159e-01, 6.34844958782196e-01, 6.336623430252075e-01, 6.324833631515503e-01, 6.3130784034729e-01, 6.301357746124268e-01, 6.289670467376709e-01, 6.278018355369568e-01, 6.266401410102844e-01, 6.254818439483643e-01, 6.243270635604858e-01, 6.231754422187805e-01, 6.220269799232483e-01, 6.208815574645996e-01, 6.197392344474792e-01, 6.186002492904663e-01, 6.174646019935608e-01, 6.163323521614075e-01, 6.152032613754272e-01, 6.140773296356201e-01, 6.129544973373413e-01, 6.118348240852356e-01, 6.107187271118164e-01, 6.09606146812439e-01, 6.084972620010376e-01, 6.073919534683228e-01] +oriOutBot.dp=[1.3240830078125e+03, -8.225301504135132e-01, -8.06352972984314e-01, -7.944576740264893e-01, -7.852647304534912e-01, -7.778632044792175e-01, -7.716577053070068e-01, -7.663151025772095e-01, -7.615911960601807e-01, -7.573233842849731e-01, -7.533932328224182e-01, -7.497349977493286e-01, -7.462819814682007e-01, -7.429696321487427e-01, -7.397853136062622e-01, -7.367181181907654e-01, -7.337389588356018e-01, -7.307838201522827e-01, -7.277767062187195e-01, -7.2491055727005e-01, -7.220238447189331e-01, -7.192798256874084e-01, -7.165212631225586e-01, -7.138631939888e-01, -7.112915515899658e-01, -7.088112235069275e-01, -7.064244151115417e-01, -7.041312456130981e-01, -7.019301056861877e-01, -6.998177170753479e-01, -6.977893710136414e-01, -6.958397626876831e-01, -6.939628720283508e-01, -6.921526789665222e-01, -6.90403163433075e-01, -6.887086033821106e-01, -6.870633959770203e-01, -6.854622960090637e-01, -6.839007139205933e-01, -6.823742389678955e-01, -6.808789968490601e-01, -6.794115304946899e-01, -6.779687404632568e-01, -6.765478849411011e-01, -6.751466989517212e-01, -6.737629175186157e-01, -6.723948121070862e-01, -6.710407137870789e-01, -6.696992516517639e-01, -6.683691740036011e-01, -6.670494675636292e-01, -6.65739119052887e-01, -6.644374132156372e-01, -6.631435751914978e-01, -6.618570685386658e-01, -6.605773568153381e-01, -6.593040227890015e-01, -6.580368280410767e-01, -6.567752361297607e-01, -6.555190086364746e-01, -6.542679071426392e-01, -6.530218124389648e-01, -6.517804861068726e-01, -6.505436301231384e-01, -6.493111252784729e-01, -6.480829119682312e-01, -6.468588709831238e-01, -6.456388831138611e-01, -6.444227695465088e-01, -6.432104706764221e-01, -6.420019865036011e-01, -6.407971978187561e-01, -6.395961046218872e-01, -6.383988261222839e-01, -6.372053623199463e-01, -6.360154151916504e-01, -6.348291635513306e-01, -6.336466073989868e-01, -6.324676871299744e-01, -6.312922835350037e-01, -6.301202774047852e-01, -6.289516091346741e-01, -6.277864575386047e-01, -6.266247630119324e-01, -6.254665851593018e-01, -6.243118047714233e-01, -6.231602430343628e-01, -6.220118403434753e-01, -6.208664774894714e-01, -6.197242140769958e-01, -6.185852885246277e-01, -6.174497008323669e-01, -6.163175106048584e-01, -6.151884794235229e-01, -6.140625476837158e-01, -6.129398345947266e-01, -6.118202209472656e-01, -6.107041835784912e-01, -6.095916032791138e-01, -6.084827780723572e-01, -6.073774695396423e-01] +dooOpeClo.dpAB[1]=[1.630439311265945e-01, 8.686827123165131e-02, 6.82063102722168e-02, 5.50566166639328e-02, 4.538270831108093e-02, 3.797688335180283e-02, 3.210900723934174e-02, 2.7313819155097e-02, 2.32892818748951e-02, 1.98305007070303e-02, 1.679565012454987e-02, 1.408237684518099e-02, 1.161551289260387e-02, 9.337034076452255e-03, 7.20087997615337e-03, 5.169341340661049e-03, 3.211391158401966e-03, 1.300030038692057e-03, -5.899638636037707e-04, -2.465922851115465e-03, -4.304858855903149e-03, -6.08602212741971e-03, -7.7907619997859e-03, -9.403984062373638e-03, -1.091351173818111e-02, -1.231102924793959e-02, -1.359258126467466e-02, -1.475790236145258e-02, -1.580907031893731e-02, -1.675042323768139e-02, -1.758788153529167e-02, -1.83284617960453e-02, -1.897980086505413e-02, -1.954974420368671e-02, -2.004606276750565e-02, -2.047627419233322e-02, -2.084753476083279e-02, -2.116659842431545e-02, -2.143951691687107e-02, -2.167193405330181e-02, -2.186890132725239e-02, -2.203485183417797e-02, -2.217379771173e-02, -2.228922769427299e-02, -2.238423004746437e-02, -2.246154099702835e-02, -2.252351865172386e-02, -2.257224544882774e-02, -2.260953933000565e-02, -2.263695746660233e-02, -2.265586704015732e-02, -2.266747877001762e-02, -2.267275378108025e-02, -2.267265692353249e-02, -2.266793511807919e-02, -2.265920117497444e-02, -2.264700829982758e-02, -2.263174764811993e-02, -2.261393330991268e-02, -2.259391732513905e-02, -2.25719828158617e-02, -2.254836447536945e-02, -2.252331934869289e-02, -2.249711565673351e-02, -2.246999368071556e-02, -2.244200929999352e-02, -2.241327986121178e-02, -2.238397113978863e-02, -2.235428243875504e-02, -2.232425473630428e-02, -2.22939308732748e-02, -2.226339839398861e-02, -2.223262377083302e-02, -2.220152504742146e-02, -2.217004261910915e-02, -2.213848382234573e-02, -2.210667170584202e-02, -2.207458205521107e-02, -2.20422949641943e-02, -2.200997248291969e-02, -2.197765931487083e-02, -2.194549702107906e-02, -2.191320434212685e-02, -2.188079431653023e-02, -2.184827253222466e-02, -2.181562036275864e-02, -2.178329043090343e-02, -2.175123244524002e-02, -2.171962149441242e-02, -2.168834768235683e-02, -2.165701054036617e-02, -2.162569016218185e-02, -2.159418724477291e-02, -2.156287431716919e-02, -2.153177931904793e-02, -2.15008556842804e-02, -2.147013880312443e-02, -2.143899351358414e-02, -2.140746638178825e-02, -2.137530408799648e-02, -2.134262770414352e-02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Examples_TrickleVent.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Examples_TrickleVent.txt new file mode 100644 index 0000000000..ef56657708 --- /dev/null +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Examples_TrickleVent.txt @@ -0,0 +1,11 @@ +last-generated=2022-02-02 +statistics-simulation= +{ + "linear": "0, 0", + "nonlinear": "1", + "number of continuous time states": "5", + "numerical Jacobians": "0" +} +time=[0e+00, 2.592e+06] +tabDat_m_flow.m_flow=[0e+00, 1.792796016893486e-12, 0e+00, -1.263835653662682e-02, 1.027125352993608e-03, 2.613018453121185e-02, 2.266891824547201e-04, 2.463196441531163e-02, 1.96021594107151e-02, 1.278072930290364e-04, -1.542960262668203e-06, 1.023392454953864e-04, 3.620481234975159e-04, 5.729446932673454e-03, 1.670600147917382e-04, 1.218988001346588e-02, 6.404225719180979e-10, 0e+00, -9.387428686022756e-03, 2.291603712365031e-03, -2.772163972258568e-02, 2.712985560719972e-05, -6.604023091495037e-03, 1.417612237855792e-03, 6.655972637236118e-03, 2.130883745849133e-03, 2.245585285127163e-02, 9.238860197365284e-03, 7.310375664382699e-03, -1.985701620578766e-02, -1.642599143087864e-02, -2.816794193449823e-08, 0e+00, 1.161253713071346e-02, 8.752277153681478e-05, 1.154333911836147e-02, -2.982386462390423e-02, -1.472778590396047e-02, -1.710082553327084e-02, -6.746132522821427e-02, -1.992972940206528e-02, 2.313499748706817e-02, -1.640020556692434e-07, 4.175087902694941e-04, -8.734136258681247e-08, -4.446394257229258e-07, 9.891829453408718e-03, 5.711077433079481e-03, 2.601720653474331e-02, -1.648771958425641e-02, -3.411945328116417e-02, -1.723382137715817e-02, -3.323271498084068e-02, 2.567942440509796e-03, 1.924272738397121e-02, 2.19066645950079e-02, 2.399161905050382e-02, 2.613058723509312e-02, 1.275313217192888e-02, 1.148789394646883e-02, -5.087281351734418e-07, 1.915426589548588e-02, 8.004610519856214e-03, -4.015686437487602e-02, -5.302427485585213e-02, -2.762742713093758e-02, -4.626048430800438e-02, -4.853741750121117e-02, -8.366053365170642e-03, -2.103740759193992e-02, 4.769052378833294e-03, 4.383845534175634e-03, 2.613346241414547e-02, 2.579123340547085e-02, -3.67146335542202e-02, -2.434444427490234e-02, -4.298727214336395e-02, -9.122211206704377e-03, -1.415675114840269e-02, -5.234633609652519e-02, 9.367826394736767e-03, 2.468988932669163e-02, -2.581097520887852e-02, -3.391173705458641e-02, 2.243284601718187e-03, 2.613210864365101e-02, -1.346715688705444e-02, -2.120437752455473e-03, -1.570257842540741e-02, -4.688170477747917e-02, -7.819586433470249e-03, -1.650386955589056e-02, -4.246555343270302e-02, -1.861609034240246e-02, 5.601700022816658e-03, 1.371181476861238e-02, 5.523836333304643e-03, 2.100057085044682e-03, 2.970352349802852e-03, 2.613424845039845e-02, -2.439740300178528e-02] +tabDat_V_flow.V_flow=[0e+00, -2.151355184493511e-12, 0e+00, -1.053215712308884e-02, 8.563160663470626e-04, 2.177700400352478e-02, 1.889174222014844e-04, 2.052637003362164e-02, 1.633542440831661e-02, 1.064717733243015e-04, 1.851552383413946e-06, 8.528877078788355e-05, 3.018331146449782e-04, 4.774764645844698e-03, 1.392164791468127e-04, 1.016003359109163e-02, -7.685070864404952e-10, 0e+00, -7.821641117334369e-03, 1.909708138555288e-03, -2.310153841972351e-02, 2.260854921587452e-05, -5.502710957080126e-03, 1.181679428555071e-03, 5.546685401350259e-03, 1.776640419848263e-03, 1.871322840452194e-02, 7.69925657659769e-03, 6.091209314763152e-03, -1.654369570314884e-02, -1.368847861886024e-02, 3.380153117404916e-08, 0e+00, 9.682517126202585e-03, 7.294806600832552e-05, 9.620597586035728e-03, -2.485315911471844e-02, -1.227021450176835e-02, -1.42536211758852e-02, -5.621715486049652e-02, -1.660813391208649e-02, 1.927720531821251e-02, 1.968024676557434e-07, 3.47822270123288e-04, 1.048096393674314e-07, 5.335673449735623e-07, 8.243309333920479e-03, 4.759393632411957e-03, 2.168106026947498e-02, -1.374119995161891e-02, -2.843271009624004e-02, -1.436149869114161e-02, -2.769349291920662e-02, 2.139773825183511e-03, 1.603733748197556e-02, 1.825574971735477e-02, 1.999312713742343e-02, 2.177495621144772e-02, 1.062765177339315e-02, 9.574246965348721e-03, 6.104737622081302e-07, 1.59602627158165e-02, 6.670049158856273e-03, -3.346490263938904e-02, -4.418628513813019e-02, -2.302156388759613e-02, -3.855054676532745e-02, -4.04479131102562e-02, -6.971813831478096e-03, -1.753058284521182e-02, 3.975309431552887e-03, 5.306777730584145e-03, 2.177585251629353e-02, 2.149317190051079e-02, -3.059507235884667e-02, -2.028696797788143e-02, -3.582203835248947e-02, -7.602154742926359e-03, -1.179703958332539e-02, -4.362153187394142e-02, 7.807574234902859e-03, 2.057493068277836e-02, -2.15102382004261e-02, -2.826008200645447e-02, 1.870038639754057e-03, 2.177667059004307e-02, -1.122270729392767e-02, -1.766690425574779e-03, -1.308689042925835e-02, -3.906745165586471e-02, -6.516287568956614e-03, -1.375301461666822e-02, -3.538818061351776e-02, -1.551298927515745e-02, 4.668072890490293e-03, 1.142650097608566e-02, 4.603039240464568e-03, 1.750309369526803e-03, 2.475230349227786e-03, 2.177832685410976e-02, -2.033414132893085e-02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Validation_DoorOpenClosed.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Validation_DoorOpenClosed.txt index 7d0569c7a4..99c001dd67 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Validation_DoorOpenClosed.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Validation_DoorOpenClosed.txt @@ -1,4 +1,4 @@ -last-generated=2021-01-22 +last-generated=2022-05-18 statistics-simulation= { "linear": " ", diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Validation_OneWayFlow.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Validation_OneWayFlow.txt new file mode 100644 index 0000000000..77488ce227 --- /dev/null +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Validation_OneWayFlow.txt @@ -0,0 +1,25 @@ +last-generated=2021-06-26 +statistics-simulation= +{ + "linear": " ", + "nonlinear": " ", + "number of continuous time states": "8", + "numerical Jacobians": "0" +} +time=[0e+00, 5e+02] +m_flow_data[1]=[-8.356310427188873e-02, -8.247295022010803e-02, -8.137497305870056e-02, -8.026896417140961e-02, -7.915469259023666e-02, -7.803190499544144e-02, -7.690034806728363e-02, -7.575975358486176e-02, -7.460983842611313e-02, -7.345029711723328e-02, -7.228081673383713e-02, -7.110105454921722e-02, -6.991066038608551e-02, -6.870924681425095e-02, -6.74964115023613e-02, -6.627172976732254e-02, -6.503473222255707e-02, -6.378493458032608e-02, -6.25218078494072e-02, -6.124479323625565e-02, -5.995326861739159e-02, -5.864658951759338e-02, -5.732403695583344e-02, -5.598484724760056e-02, -5.462818220257759e-02, -5.325312167406082e-02, -5.185866728425026e-02, -5.044372379779816e-02, -4.900707677006721e-02, -4.754738137125969e-02, -4.60631400346756e-02, -4.455268755555153e-02, -4.301413521170616e-02, -4.144535586237907e-02, -3.984392061829567e-02, -3.82070392370224e-02, -3.65314818918705e-02, -3.481346368789673e-02, -3.304851055145264e-02, -3.123124502599239e-02, -2.93551329523325e-02, -2.74120606482029e-02, -2.539174444973469e-02, -2.328079380095005e-02, -2.106116339564323e-02, -1.870744861662388e-02, -1.618165895342827e-02, -1.342186518013477e-02, -1.031225267797709e-02, -6.571795791387558e-03, 0e+00, 6.571795791387558e-03, 1.031225267797709e-02, 1.342186518013477e-02, 1.618165895342827e-02, 1.870744861662388e-02, 2.106116339564323e-02, 2.328079380095005e-02, 2.539174444973469e-02, 2.74120606482029e-02, 2.93551329523325e-02, 3.123124502599239e-02, 3.304851055145264e-02, 3.481346368789673e-02, 3.65314818918705e-02, 3.82070392370224e-02, 3.984392061829567e-02, 4.144535586237907e-02, 4.301413521170616e-02, 4.455268755555153e-02, 4.60631400346756e-02, 4.754738137125969e-02, 4.900707677006721e-02, 5.044372379779816e-02, 5.185866728425026e-02, 5.325312167406082e-02, 5.462818220257759e-02, 5.598484724760056e-02, 5.732403695583344e-02, 5.864658951759338e-02, 5.995326861739159e-02, 6.124479323625565e-02, 6.25218078494072e-02, 6.378493458032608e-02, 6.503473222255707e-02, 6.627172976732254e-02, 6.74964115023613e-02, 6.870924681425095e-02, 6.991066038608551e-02, 7.110105454921722e-02, 7.228081673383713e-02, 7.345029711723328e-02, 7.460983842611313e-02, 7.575975358486176e-02, 7.690034806728363e-02, 7.803190499544144e-02, 7.915469259023666e-02, 8.026896417140961e-02, 8.137497305870056e-02, 8.247295022010803e-02, 8.356310427188873e-02] +m_flow_data[2]=[-6.564007699489594e-02, -6.498035788536072e-02, -6.431387364864349e-02, -6.364041566848755e-02, -6.295974552631378e-02, -6.227164342999458e-02, -6.157584860920906e-02, -6.087210029363632e-02, -6.016012281179428e-02, -5.943961441516876e-02, -5.871026590466499e-02, -5.797174200415611e-02, -5.722368881106377e-02, -5.646572634577751e-02, -5.569744855165482e-02, -5.491842702031136e-02, -5.412819236516953e-02, -5.332624912261963e-02, -5.251206085085869e-02, -5.168504640460014e-02, -5.084458366036415e-02, -4.998999089002609e-02, -4.912053421139717e-02, -4.823540523648262e-02, -4.73337322473526e-02, -4.641454294323921e-02, -4.547677561640739e-02, -4.451926425099373e-02, -4.354069754481316e-02, -4.253963008522987e-02, -4.151442646980286e-02, -4.046325758099556e-02, -3.938404470682144e-02, -3.827441111207008e-02, -3.713163360953331e-02, -3.595254942774773e-02, -3.473346307873726e-02, -3.347000107169151e-02, -3.215693682432175e-02, -3.078792430460453e-02, -2.93551329523325e-02, -2.784872427582741e-02, -2.625603042542934e-02, -2.456026710569859e-02, -2.27383878082037e-02, -2.075721323490143e-02, -1.856581680476665e-02, -1.607846841216087e-02, -1.312801521271467e-02, -9.282908402383327e-03, 0e+00, 9.282908402383327e-03, 1.312801521271467e-02, 1.607846841216087e-02, 1.856581680476665e-02, 2.075721323490143e-02, 2.27383878082037e-02, 2.456026710569859e-02, 2.625603042542934e-02, 2.784872427582741e-02, 2.93551329523325e-02, 3.078792430460453e-02, 3.215693682432175e-02, 3.347000107169151e-02, 3.473346307873726e-02, 3.595254942774773e-02, 3.713163360953331e-02, 3.827441111207008e-02, 3.938404470682144e-02, 4.046325758099556e-02, 4.151442646980286e-02, 4.253963008522987e-02, 4.354069754481316e-02, 4.451926425099373e-02, 4.547677561640739e-02, 4.641454294323921e-02, 4.73337322473526e-02, 4.823540523648262e-02, 4.912053421139717e-02, 4.998999089002609e-02, 5.084458366036415e-02, 5.168504640460014e-02, 5.251206085085869e-02, 5.332624912261963e-02, 5.412819236516953e-02, 5.491842702031136e-02, 5.569744855165482e-02, 5.646572634577751e-02, 5.722368881106377e-02, 5.797174200415611e-02, 5.871026590466499e-02, 5.943961441516876e-02, 6.016012281179428e-02, 6.087210029363632e-02, 6.157584860920906e-02, 6.227164342999458e-02, 6.295974552631378e-02, 6.364041566848755e-02, 6.431387364864349e-02, 6.498035788536072e-02, 6.564007699489594e-02] +m_flow_data[3]=[-6.717514246702194e-02, -6.650000065565109e-02, -6.58179298043251e-02, -6.512872129678726e-02, -6.443213671445847e-02, -6.372793763875961e-02, -6.301587074995041e-02, -6.229566782712936e-02, -6.15670382976532e-02, -6.082968041300774e-02, -6.008327379822731e-02, -5.932747945189476e-02, -5.856193229556084e-02, -5.77862448990345e-02, -5.700000002980232e-02, -5.620275810360909e-02, -5.539404228329659e-02, -5.457334592938423e-02, -5.374011397361755e-02, -5.289376154541969e-02, -5.203364416956902e-02, -5.115906521677971e-02, -5.026927590370178e-02, -4.936344921588898e-02, -4.844068363308907e-02, -4.749999940395355e-02, -4.654030501842499e-02, -4.556040093302727e-02, -4.455894976854324e-02, -4.353446885943413e-02, -4.248529300093651e-02, -4.140954092144966e-02, -4.030508548021317e-02, -3.916950523853302e-02, -3.799999877810478e-02, -3.679333999752998e-02, -3.554574400186539e-02, -3.425273671746254e-02, -3.290896490216255e-02, -3.15079353749752e-02, -3.004163689911366e-02, -2.850000001490116e-02, -2.687005698680878e-02, -2.513463795185089e-02, -2.327015250921249e-02, -2.124264650046825e-02, -1.899999938905239e-02, -1.645448245108128e-02, -1.343502849340439e-02, -9.499999694526196e-03, 0e+00, 9.499999694526196e-03, 1.343502849340439e-02, 1.645448245108128e-02, 1.899999938905239e-02, 2.124264650046825e-02, 2.327015250921249e-02, 2.513463795185089e-02, 2.687005698680878e-02, 2.850000001490116e-02, 3.004163689911366e-02, 3.15079353749752e-02, 3.290896490216255e-02, 3.425273671746254e-02, 3.554574400186539e-02, 3.679333999752998e-02, 3.799999877810478e-02, 3.916950523853302e-02, 4.030508548021317e-02, 4.140954092144966e-02, 4.248529300093651e-02, 4.353446885943413e-02, 4.455894976854324e-02, 4.556040093302727e-02, 4.654030501842499e-02, 4.749999940395355e-02, 4.844068363308907e-02, 4.936344921588898e-02, 5.026927590370178e-02, 5.115906521677971e-02, 5.203364416956902e-02, 5.289376154541969e-02, 5.374011397361755e-02, 5.457334592938423e-02, 5.539404228329659e-02, 5.620275810360909e-02, 5.700000002980232e-02, 5.77862448990345e-02, 5.856193229556084e-02, 5.932747945189476e-02, 6.008327379822731e-02, 6.082968041300774e-02, 6.15670382976532e-02, 6.229566782712936e-02, 6.301587074995041e-02, 6.372793763875961e-02, 6.443213671445847e-02, 6.512872129678726e-02, 6.58179298043251e-02, 6.650000065565109e-02, 6.717514246702194e-02] +m_flow_data[4]=[-6.094864010810852e-02, -6.038303673267365e-02, -5.981118604540825e-02, -5.923287943005562e-02, -5.864791199564934e-02, -5.80560527741909e-02, -5.745706707239151e-02, -5.685070529580116e-02, -5.623670294880867e-02, -5.561477318406105e-02, -5.498462170362473e-02, -5.434592813253403e-02, -5.36983534693718e-02, -5.304153263568878e-02, -5.237508192658424e-02, -5.169858783483505e-02, -5.101159960031509e-02, -5.031364411115646e-02, -4.960420355200768e-02, -4.888271912932396e-02, -4.814858734607697e-02, -4.740116000175476e-02, -4.663971811532974e-02, -4.586348310112953e-02, -4.507160931825638e-02, -4.426315799355507e-02, -4.343709722161293e-02, -4.259228333830833e-02, -4.17274497449398e-02, -4.084117338061333e-02, -3.993186727166176e-02, -3.899773210287094e-02, -3.803672268986702e-02, -3.704651072621346e-02, -3.602440655231476e-02, -3.496728837490082e-02, -3.387148678302765e-02, -3.273267298936844e-02, -3.154562786221504e-02, -3.030401840806007e-02, -2.899999916553497e-02, -2.762367576360703e-02, -2.616225741803646e-02, -2.459872886538506e-02, -2.290960215032101e-02, -2.106087282299995e-02, -1.899999938905239e-02, -1.663780026137829e-02, -1.379850320518017e-02, -1.002098340541124e-02, 0e+00, 1.002098340541124e-02, 1.379850320518017e-02, 1.663780026137829e-02, 1.899999938905239e-02, 2.106087282299995e-02, 2.290960215032101e-02, 2.459872886538506e-02, 2.616225741803646e-02, 2.762367576360703e-02, 2.899999916553497e-02, 3.030401840806007e-02, 3.154562786221504e-02, 3.273267298936844e-02, 3.387148678302765e-02, 3.496728837490082e-02, 3.602440655231476e-02, 3.704651072621346e-02, 3.803672268986702e-02, 3.899773210287094e-02, 3.993186727166176e-02, 4.084117338061333e-02, 4.17274497449398e-02, 4.259228333830833e-02, 4.343709722161293e-02, 4.426315799355507e-02, 4.507160931825638e-02, 4.586348310112953e-02, 4.663971811532974e-02, 4.740116000175476e-02, 4.814858734607697e-02, 4.888271912932396e-02, 4.960420355200768e-02, 5.031364411115646e-02, 5.101159960031509e-02, 5.169858783483505e-02, 5.237508192658424e-02, 5.304153263568878e-02, 5.36983534693718e-02, 5.434592813253403e-02, 5.498462170362473e-02, 5.561477318406105e-02, 5.623670294880867e-02, 5.685070529580116e-02, 5.745706707239151e-02, 5.80560527741909e-02, 5.864791199564934e-02, 5.923287943005562e-02, 5.981118604540825e-02, 6.038303673267365e-02, 6.094864010810852e-02] +m_flow_data[5]=[-7.07106813788414e-02, -7.000000029802322e-02, -6.928203254938126e-02, -6.855654716491699e-02, -6.782329827547073e-02, -6.708204001188278e-02, -6.633249670267105e-02, -6.557438522577286e-02, -6.480740755796432e-02, -6.403124332427979e-02, -6.324554979801178e-02, -6.244998052716255e-02, -6.164414063096046e-02, -6.082762405276299e-02, -5.999999865889549e-02, -5.916079878807068e-02, -5.830951780080795e-02, -5.744562670588493e-02, -5.656854063272476e-02, -5.567764490842819e-02, -5.477225407958031e-02, -5.38516491651535e-02, -5.291502550244331e-02, -5.196152254939079e-02, -5.099019408226013e-02, -5.000000074505806e-02, -4.898979514837265e-02, -4.795831441879272e-02, -4.690415784716606e-02, -4.582575708627701e-02, -4.472136124968529e-02, -4.358898848295212e-02, -4.242640733718872e-02, -4.123105481266975e-02, -3.999999910593033e-02, -3.872983530163765e-02, -3.741657361388206e-02, -3.605551272630692e-02, -3.464101627469063e-02, -3.316624835133553e-02, -3.162277489900589e-02, -2.999999932944775e-02, -2.828427031636238e-02, -2.645751275122166e-02, -2.449489757418633e-02, -2.236068062484264e-02, -1.999999955296516e-02, -1.732050813734531e-02, -1.414213515818119e-02, -9.999999776482582e-03, 0e+00, 9.999999776482582e-03, 1.414213515818119e-02, 1.732050813734531e-02, 1.999999955296516e-02, 2.236068062484264e-02, 2.449489757418633e-02, 2.645751275122166e-02, 2.828427031636238e-02, 2.999999932944775e-02, 3.162277489900589e-02, 3.316624835133553e-02, 3.464101627469063e-02, 3.605551272630692e-02, 3.741657361388206e-02, 3.872983530163765e-02, 3.999999910593033e-02, 4.123105481266975e-02, 4.242640733718872e-02, 4.358898848295212e-02, 4.472136124968529e-02, 4.582575708627701e-02, 4.690415784716606e-02, 4.795831441879272e-02, 4.898979514837265e-02, 5.000000074505806e-02, 5.099019408226013e-02, 5.196152254939079e-02, 5.291502550244331e-02, 5.38516491651535e-02, 5.477225407958031e-02, 5.567764490842819e-02, 5.656854063272476e-02, 5.744562670588493e-02, 5.830951780080795e-02, 5.916079878807068e-02, 5.999999865889549e-02, 6.082762405276299e-02, 6.164414063096046e-02, 6.244998052716255e-02, 6.324554979801178e-02, 6.403124332427979e-02, 6.480740755796432e-02, 6.557438522577286e-02, 6.633249670267105e-02, 6.708204001188278e-02, 6.782329827547073e-02, 6.855654716491699e-02, 6.928203254938126e-02, 7.000000029802322e-02, 7.07106813788414e-02] +m_flow_data[6]=[-8.462927490472794e-02, -8.377870917320251e-02, -8.29194188117981e-02, -8.205112814903259e-02, -8.117354661226273e-02, -8.028638362884521e-02, -7.93892964720726e-02, -7.848196476697922e-02, -7.756401598453522e-02, -7.663507014513016e-02, -7.56947249174118e-02, -7.474255561828613e-02, -7.377809286117554e-02, -7.280085235834122e-02, -7.181032001972198e-02, -7.080592960119247e-02, -6.978708505630493e-02, -6.875314563512802e-02, -6.770341843366623e-02, -6.663715839385986e-02, -6.555355340242386e-02, -6.445173919200897e-02, -6.33307471871376e-02, -6.218956410884857e-02, -6.102703884243965e-02, -5.984193459153175e-02, -5.863288044929504e-02, -5.739836767315865e-02, -5.613671243190765e-02, -5.484604090452194e-02, -5.352425202727318e-02, -5.216898769140244e-02, -5.077756568789482e-02, -4.9346923828125e-02, -4.787354916334152e-02, -4.635336250066757e-02, -4.478160291910172e-02, -4.315263405442238e-02, -4.145970940589905e-02, -3.96946482360363e-02, -3.78473624587059e-02, -3.590516000986099e-02, -3.385170921683311e-02, -3.16653735935688e-02, -2.931644022464752e-02, -2.676212601363659e-02, -2.393677458167076e-02, -2.072985470294952e-02, -1.692585460841656e-02, -1.196838729083538e-02, 0e+00, 1.196838729083538e-02, 1.692585460841656e-02, 2.072985470294952e-02, 2.393677458167076e-02, 2.676212601363659e-02, 2.931644022464752e-02, 3.16653735935688e-02, 3.385170921683311e-02, 3.590516000986099e-02, 3.78473624587059e-02, 3.96946482360363e-02, 4.145970940589905e-02, 4.315263405442238e-02, 4.478160291910172e-02, 4.635336250066757e-02, 4.787354916334152e-02, 4.9346923828125e-02, 5.077756568789482e-02, 5.216898769140244e-02, 5.352425202727318e-02, 5.484604090452194e-02, 5.613671243190765e-02, 5.739836767315865e-02, 5.863288044929504e-02, 5.984193459153175e-02, 6.102703884243965e-02, 6.218956410884857e-02, 6.33307471871376e-02, 6.445173919200897e-02, 6.555355340242386e-02, 6.663715839385986e-02, 6.770341843366623e-02, 6.875314563512802e-02, 6.978708505630493e-02, 7.080592960119247e-02, 7.181032001972198e-02, 7.280085235834122e-02, 7.377809286117554e-02, 7.474255561828613e-02, 7.56947249174118e-02, 7.663507014513016e-02, 7.756401598453522e-02, 7.848196476697922e-02, 7.93892964720726e-02, 8.028638362884521e-02, 8.117354661226273e-02, 8.205112814903259e-02, 8.29194188117981e-02, 8.377870917320251e-02, 8.462927490472794e-02] +m_flow_data[7]=[-8.709000051021576e-02, -8.606959879398346e-02, -8.504919707775116e-02, -8.402880281209946e-02, -8.300840109586716e-02, -8.198799937963486e-02, -8.096759766340256e-02, -7.994720339775085e-02, -7.892680168151855e-02, -7.790639996528625e-02, -7.688599824905396e-02, -7.586559653282166e-02, -7.484520226716995e-02, -7.382480055093765e-02, -7.280439883470535e-02, -7.178399711847305e-02, -7.076360285282135e-02, -6.974320113658905e-02, -6.872279942035675e-02, -6.770239770412445e-02, -6.668200343847275e-02, -6.566160172224045e-02, -6.464120000600815e-02, -6.362079828977585e-02, -6.260039657354355e-02, -6.157999858260155e-02, -6.03080615401268e-02, -5.901877209544182e-02, -5.770833417773247e-02, -5.637295171618462e-02, -5.500881373882294e-02, -5.36121279001236e-02, -5.217909067869186e-02, -5.070589855313301e-02, -4.918875172734261e-02, -4.762385040521622e-02, -4.600739479064941e-02, -4.433558508753777e-02, -4.260461404919624e-02, -4.081068560481071e-02, -3.894999995827675e-02, -3.698130697011948e-02, -3.486191853880882e-02, -3.258588165044785e-02, -3.014722652733326e-02, -2.754000015556812e-02, -2.463850006461143e-02, -2.133000083267689e-02, -1.741999946534634e-02, -1.231999974697828e-02, 0e+00, 1.231999974697828e-02, 1.741999946534634e-02, 2.133000083267689e-02, 2.528040856122971e-02, 2.613011002540588e-02, 2.613032981753349e-02, 2.61305496096611e-02, 2.613076940178871e-02, 2.613098919391632e-02, 2.613120898604393e-02, 2.613142877817154e-02, 2.613164857029915e-02, 2.613186836242676e-02, 2.613208815455437e-02, 2.613230794668198e-02, 2.613252773880959e-02, 2.613274753093719e-02, 2.61329673230648e-02, 2.613318711519241e-02, 2.613340690732002e-02, 2.613362669944763e-02, 2.613384649157524e-02, 2.613406628370285e-02, 2.613428607583046e-02, 2.613450586795807e-02, 2.613472566008568e-02, 2.613494545221329e-02, 2.61351652443409e-02, 2.613538503646851e-02, 2.613560482859612e-02, 2.613582462072372e-02, 2.613604441285133e-02, 2.613626420497894e-02, 2.613648399710655e-02, 2.613670378923416e-02, 2.613692358136177e-02, 2.613714337348938e-02, 2.613736316561699e-02, 2.61375829577446e-02, 2.613780274987221e-02, 2.613802254199982e-02, 2.613824233412743e-02, 2.613846212625504e-02, 2.613868191838264e-02, 2.613890171051025e-02, 2.613912150263786e-02, 2.613934129476547e-02, 2.613956108689308e-02, 2.613978087902069e-02, 2.61400006711483e-02] +m_flow_data[8]=[-1.042326837778091e-01, -1.03011429309845e-01, -1.017901748418808e-01, -1.005689203739166e-01, -9.934766590595245e-02, -9.812641143798828e-02, -9.690515697002411e-02, -9.568390250205994e-02, -9.446264803409576e-02, -9.324139356613159e-02, -9.202013909816742e-02, -9.079888463020325e-02, -8.957763016223907e-02, -8.83563756942749e-02, -8.713512122631073e-02, -8.591386675834656e-02, -8.469261229038239e-02, -8.347135782241821e-02, -8.225010335445404e-02, -8.102884888648987e-02, -7.98075944185257e-02, -7.858633995056152e-02, -7.736509293317795e-02, -7.614383846521378e-02, -7.49225839972496e-02, -7.370132952928543e-02, -7.217901945114136e-02, -7.063595205545425e-02, -6.90675675868988e-02, -6.746932864189148e-02, -6.583667546510696e-02, -6.416507065296173e-02, -6.244995445013046e-02, -6.068677827715874e-02, -5.887100100517273e-02, -5.699807032942772e-02, -5.506343021988869e-02, -5.306254327297211e-02, -5.099084973335266e-02, -4.884380847215652e-02, -4.661686718463898e-02, -4.42606583237648e-02, -4.172409325838089e-02, -3.900004178285599e-02, -3.608136624097824e-02, -3.296093642711639e-02, -2.948831021785736e-02, -2.552856877446175e-02, -2.084892988204956e-02, -1.474505290389061e-02, 0e+00, 1.474505290389061e-02, 2.084892988204956e-02, 2.552856877446175e-02, 3.025657124817371e-02, 3.127352520823479e-02, 3.127378970384598e-02, 3.127405419945717e-02, 3.127431496977806e-02, 3.127457946538925e-02, 3.127484023571014e-02, 3.127510473132133e-02, 3.127536922693253e-02, 3.127562999725342e-02, 3.127589449286461e-02, 3.12761552631855e-02, 3.127641975879669e-02, 3.127668425440788e-02, 3.127694502472878e-02, 3.127720952033997e-02, 3.127747401595116e-02, 3.127773478627205e-02, 3.127799928188324e-02, 3.127826005220413e-02, 3.127852454781532e-02, 3.127878904342651e-02, 3.127904981374741e-02, 3.12793143093586e-02, 3.127957507967949e-02, 3.127983957529068e-02, 3.128010407090187e-02, 3.128036484122276e-02, 3.128062933683395e-02, 3.128089010715485e-02, 3.128115460276604e-02, 3.128141909837723e-02, 3.128167986869812e-02, 3.128194436430931e-02, 3.12822051346302e-02, 3.128246963024139e-02, 3.128273412585258e-02, 3.128299489617348e-02, 3.128325939178467e-02, 3.128352388739586e-02, 3.128378465771675e-02, 3.128404915332794e-02, 3.128430992364883e-02, 3.128457441926003e-02, 3.128483891487122e-02, 3.128509968519211e-02, 3.12853641808033e-02] +m_flow_testdata[1]=[-8.380000293254852e-02, -8.267515897750854e-02, -8.155834674835205e-02, -8.044611662626266e-02, -7.93350413441658e-02, -7.822166383266449e-02, -7.710255682468414e-02, -7.597427815198898e-02, -7.483338564634323e-02, -7.367643713951111e-02, -7.249999791383743e-02, -7.131174206733704e-02, -7.012027502059937e-02, -6.892351806163788e-02, -6.771942228078842e-02, -6.650592386722565e-02, -6.528095901012421e-02, -6.404246389865875e-02, -6.278838217258453e-02, -6.151663884520531e-02, -6.022518500685692e-02, -5.891195312142372e-02, -5.757487937808037e-02, -5.621190369129181e-02, -5.482096597552299e-02, -5.339999869465828e-02, -5.196654796600342e-02, -5.053549632430077e-02, -4.910080134868622e-02, -4.765641316771507e-02, -4.619629681110382e-02, -4.471439868211746e-02, -4.320468008518219e-02, -4.16610948741436e-02, -4.007760062813759e-02, -3.844814747571945e-02, -3.676669672131538e-02, -3.502719849348068e-02, -3.322361409664154e-02, -3.134989738464355e-02, -2.940000034868717e-02, -2.74460893124342e-02, -2.550226636230946e-02, -2.34753992408514e-02, -2.127235569059849e-02, -1.879999972879887e-02, -1.651125028729439e-02, -1.431722193956375e-02, -1.131208334118128e-02, -6.589999888092279e-03, 0e+00, 6.589999888092279e-03, 1.131208334118128e-02, 1.431722193956375e-02, 1.651125028729439e-02, 1.879999972879887e-02, 2.127235569059849e-02, 2.34753992408514e-02, 2.550226636230946e-02, 2.74460893124342e-02, 2.940000034868717e-02, 3.134989738464355e-02, 3.322361409664154e-02, 3.502719849348068e-02, 3.676669672131538e-02, 3.844814747571945e-02, 4.007760062813759e-02, 4.16610948741436e-02, 4.320468008518219e-02, 4.471439868211746e-02, 4.619629681110382e-02, 4.765641316771507e-02, 4.910080134868622e-02, 5.053549632430077e-02, 5.196654796600342e-02, 5.339999869465828e-02, 5.482096597552299e-02, 5.621190369129181e-02, 5.757487937808037e-02, 5.891195312142372e-02, 6.022518500685692e-02, 6.151663884520531e-02, 6.278838217258453e-02, 6.404246389865875e-02, 6.528095901012421e-02, 6.650592386722565e-02, 6.771942228078842e-02, 6.892351806163788e-02, 7.012027502059937e-02, 7.131174206733704e-02, 7.249999791383743e-02, 7.367643713951111e-02, 7.483338564634323e-02, 7.597427815198898e-02, 7.710255682468414e-02, 7.822166383266449e-02, 7.93350413441658e-02, 8.044611662626266e-02, 8.155834674835205e-02, 8.267515897750854e-02, 8.380000293254852e-02] +m_flow_testdata[2]=[-6.580000370740891e-02, -6.511467695236206e-02, -6.443663686513901e-02, -6.376276165246964e-02, -6.308992207050323e-02, -6.241500005125999e-02, -6.17348812520504e-02, -6.104644015431404e-02, -6.034655869007111e-02, -5.963211879134178e-02, -5.889999866485596e-02, -5.815811082720757e-02, -5.741492286324501e-02, -5.666815862059593e-02, -5.591554939746857e-02, -5.515481531620026e-02, -5.438368022441864e-02, -5.359986796975136e-02, -5.280110985040665e-02, -5.198511853814125e-02, -5.11496290564537e-02, -5.029236152768135e-02, -4.941103979945183e-02, -4.850339144468307e-02, -4.756713658571243e-02, -4.659999907016754e-02, -4.562237113714218e-02, -4.465140774846077e-02, -4.368000105023384e-02, -4.270103573799133e-02, -4.170740768313408e-02, -4.069200158119202e-02, -3.964770212769508e-02, -3.856740891933441e-02, -3.744399920105934e-02, -3.627036884427071e-02, -3.503940626978874e-02, -3.374399989843369e-02, -3.237703815102577e-02, -3.093140758574009e-02, -2.940000034868717e-02, -2.787417732179165e-02, -2.637053281068802e-02, -2.476979978382587e-02, -2.295271120965481e-02, -2.080000005662441e-02, -1.875421963632107e-02, -1.674736104905605e-02, -1.389432325959206e-02, -9.309999644756317e-03, 0e+00, 9.309999644756317e-03, 1.389432325959206e-02, 1.674736104905605e-02, 1.875421963632107e-02, 2.080000005662441e-02, 2.295271120965481e-02, 2.476979978382587e-02, 2.637053281068802e-02, 2.787417732179165e-02, 2.940000034868717e-02, 3.093140758574009e-02, 3.237703815102577e-02, 3.374399989843369e-02, 3.503940626978874e-02, 3.627036884427071e-02, 3.744399920105934e-02, 3.856740891933441e-02, 3.964770212769508e-02, 4.069200158119202e-02, 4.170740768313408e-02, 4.270103573799133e-02, 4.368000105023384e-02, 4.465140774846077e-02, 4.562237113714218e-02, 4.659999907016754e-02, 4.756713658571243e-02, 4.850339144468307e-02, 4.941103979945183e-02, 5.029236152768135e-02, 5.11496290564537e-02, 5.198511853814125e-02, 5.280110985040665e-02, 5.359986796975136e-02, 5.438368022441864e-02, 5.515481531620026e-02, 5.591554939746857e-02, 5.666815862059593e-02, 5.741492286324501e-02, 5.815811082720757e-02, 5.889999866485596e-02, 5.963211879134178e-02, 6.034655869007111e-02, 6.104644015431404e-02, 6.17348812520504e-02, 6.241500005125999e-02, 6.308992207050323e-02, 6.376276165246964e-02, 6.443663686513901e-02, 6.511467695236206e-02, 6.580000370740891e-02] +m_flow_testdata[3]=[-6.719999760389328e-02, -6.649468094110489e-02, -6.579664349555969e-02, -6.510276347398758e-02, -6.440991908311844e-02, -6.371500343084335e-02, -6.301487982273102e-02, -6.230644136667252e-02, -6.158655881881714e-02, -6.085212156176567e-02, -6.01000003516674e-02, -5.933811143040657e-02, -5.857492238283157e-02, -5.780816078186035e-02, -5.703555047512054e-02, -5.625481531023979e-02, -5.546367913484573e-02, -5.465986952185631e-02, -5.384110659360886e-02, -5.300512164831161e-02, -5.214963108301163e-02, -5.127236247062683e-02, -5.037103965878487e-02, -4.944339022040367e-02, -4.848713427782059e-02, -4.749999940395355e-02, -4.650330543518066e-02, -4.551487416028976e-02, -4.452719911932945e-02, -4.353277012705803e-02, -4.25240732729435e-02, -4.149359837174416e-02, -4.043383523821831e-02, -3.933727368712425e-02, -3.819639980792999e-02, -3.700370341539383e-02, -3.575167432427406e-02, -3.44327986240387e-02, -3.303956985473633e-02, -3.156447410583496e-02, -2.999999932944775e-02, -2.843848802149296e-02, -2.689746581017971e-02, -2.525720000267029e-02, -2.339795604348183e-02, -2.119999937713146e-02, -1.911468803882599e-02, -1.707138866186142e-02, -1.416739542037249e-02, -9.499999694526196e-03, 0e+00, 9.499999694526196e-03, 1.416739542037249e-02, 1.707138866186142e-02, 1.911468803882599e-02, 2.119999937713146e-02, 2.339795604348183e-02, 2.525720000267029e-02, 2.689746581017971e-02, 2.843848802149296e-02, 2.999999932944775e-02, 3.156447410583496e-02, 3.303956985473633e-02, 3.44327986240387e-02, 3.575167432427406e-02, 3.700370341539383e-02, 3.819639980792999e-02, 3.933727368712425e-02, 4.043383523821831e-02, 4.149359837174416e-02, 4.25240732729435e-02, 4.353277012705803e-02, 4.452719911932945e-02, 4.551487416028976e-02, 4.650330543518066e-02, 4.749999940395355e-02, 4.848713427782059e-02, 4.944339022040367e-02, 5.037103965878487e-02, 5.127236247062683e-02, 5.214963108301163e-02, 5.300512164831161e-02, 5.384110659360886e-02, 5.465986952185631e-02, 5.546367913484573e-02, 5.625481531023979e-02, 5.703555047512054e-02, 5.780816078186035e-02, 5.857492238283157e-02, 5.933811143040657e-02, 6.01000003516674e-02, 6.085212156176567e-02, 6.158655881881714e-02, 6.230644136667252e-02, 6.301487982273102e-02, 6.371500343084335e-02, 6.440991908311844e-02, 6.510276347398758e-02, 6.579664349555969e-02, 6.649468094110489e-02, 6.719999760389328e-02] +m_flow_testdata[4]=[-6.08999989926815e-02, -6.031443923711777e-02, -5.973578616976738e-02, -5.916107818484306e-02, -5.858736112713814e-02, -5.801166594028473e-02, -5.743103846907616e-02, -5.684252083301544e-02, -5.624314770102501e-02, -5.562996119260788e-02, -5.499999970197678e-02, -5.436066910624504e-02, -5.371993407607079e-02, -5.307567864656448e-02, -5.242579057812691e-02, -5.176814645528793e-02, -5.110064148902893e-02, -5.042114853858948e-02, -4.972756281495094e-02, -4.90177609026432e-02, -4.828963056206703e-02, -4.75410558283329e-02, -4.676992073655128e-02, -4.597410932183266e-02, -4.515150934457779e-02, -4.430000111460686e-02, -4.343970492482185e-02, -4.258740693330765e-02, -4.173599928617477e-02, -4.087837040424347e-02, -4.000740870833397e-02, -3.911599889397621e-02, -3.819703683257103e-02, -3.724340721964836e-02, -3.624799847602844e-02, -3.520370274782181e-02, -3.410340845584869e-02, -3.294000029563904e-02, -3.170637041330338e-02, -3.039540722966194e-02, -2.899999916553497e-02, -2.761582285165787e-02, -2.625946700572968e-02, -2.480519935488701e-02, -2.312728948891163e-02, -2.10999995470047e-02, -1.914406195282936e-02, -1.720305532217026e-02, -1.443552039563656e-02, -9.999999776482582e-03, 0e+00, 9.999999776482582e-03, 1.443552039563656e-02, 1.720305532217026e-02, 1.914406195282936e-02, 2.10999995470047e-02, 2.312728948891163e-02, 2.480519935488701e-02, 2.625946700572968e-02, 2.761582285165787e-02, 2.899999916553497e-02, 3.039540722966194e-02, 3.170637041330338e-02, 3.294000029563904e-02, 3.410340845584869e-02, 3.520370274782181e-02, 3.624799847602844e-02, 3.724340721964836e-02, 3.819703683257103e-02, 3.911599889397621e-02, 4.000740870833397e-02, 4.087837040424347e-02, 4.173599928617477e-02, 4.258740693330765e-02, 4.343970492482185e-02, 4.430000111460686e-02, 4.515150934457779e-02, 4.597410932183266e-02, 4.676992073655128e-02, 4.75410558283329e-02, 4.828963056206703e-02, 4.90177609026432e-02, 4.972756281495094e-02, 5.042114853858948e-02, 5.110064148902893e-02, 5.176814645528793e-02, 5.242579057812691e-02, 5.307567864656448e-02, 5.371993407607079e-02, 5.436066910624504e-02, 5.499999970197678e-02, 5.562996119260788e-02, 5.624314770102501e-02, 5.684252083301544e-02, 5.743103846907616e-02, 5.801166594028473e-02, 5.858736112713814e-02, 5.916107818484306e-02, 5.973578616976738e-02, 6.031443923711777e-02, 6.08999989926815e-02] +m_flow_testdata[5]=[-7.069999724626541e-02, -6.995467841625214e-02, -6.921663880348206e-02, -6.848275661468506e-02, -6.774991750717163e-02, -6.701499968767166e-02, -6.627488136291504e-02, -6.552644073963165e-02, -6.476656347513199e-02, -6.399212032556534e-02, -6.319999694824219e-02, -6.239873170852661e-02, -6.159723177552223e-02, -6.07929602265358e-02, -5.998337268829346e-02, -5.916592478752136e-02, -5.833807960152626e-02, -5.74972927570343e-02, -5.664101988077164e-02, -5.576672032475471e-02, -5.487185344099998e-02, -5.39538711309433e-02, -5.30102401971817e-02, -5.203841254115105e-02, -5.103584751486778e-02, -5.000000074505806e-02, -4.895294830203056e-02, -4.791336134076118e-02, -4.687359929084778e-02, -4.58260141313076e-02, -4.476296156644821e-02, -4.367680102586746e-02, -4.255988076329231e-02, -4.140456393361092e-02, -4.020319879055023e-02, -3.894814848899841e-02, -3.763176128268242e-02, -3.62464003264904e-02, -3.478441387414932e-02, -3.323816135525703e-02, -3.159999847412109e-02, -2.997013367712498e-02, -2.836639992892742e-02, -2.66575999557972e-02, -2.471253275871277e-02, -2.239999920129776e-02, -2.019624970853329e-02, -1.803000085055828e-02, -1.494874991476536e-02, -9.999999776482582e-03, 0e+00, 9.999999776482582e-03, 1.494874991476536e-02, 1.803000085055828e-02, 2.019624970853329e-02, 2.239999920129776e-02, 2.471253275871277e-02, 2.66575999557972e-02, 2.836639992892742e-02, 2.997013367712498e-02, 3.159999847412109e-02, 3.323816135525703e-02, 3.478441387414932e-02, 3.62464003264904e-02, 3.763176128268242e-02, 3.894814848899841e-02, 4.020319879055023e-02, 4.140456393361092e-02, 4.255988076329231e-02, 4.367680102586746e-02, 4.476296156644821e-02, 4.58260141313076e-02, 4.687359929084778e-02, 4.791336134076118e-02, 4.895294830203056e-02, 5.000000074505806e-02, 5.103584751486778e-02, 5.203841254115105e-02, 5.30102401971817e-02, 5.39538711309433e-02, 5.487185344099998e-02, 5.576672032475471e-02, 5.664101988077164e-02, 5.74972927570343e-02, 5.833807960152626e-02, 5.916592478752136e-02, 5.998337268829346e-02, 6.07929602265358e-02, 6.159723177552223e-02, 6.239873170852661e-02, 6.319999694824219e-02, 6.399212032556534e-02, 6.476656347513199e-02, 6.552644073963165e-02, 6.627488136291504e-02, 6.701499968767166e-02, 6.774991750717163e-02, 6.848275661468506e-02, 6.921663880348206e-02, 6.995467841625214e-02, 7.069999724626541e-02] +m_flow_testdata[6]=[-8.510000258684158e-02, -8.421635627746582e-02, -8.334261178970337e-02, -8.247452229261398e-02, -8.160784095525742e-02, -8.073833584785461e-02, -7.986176013946533e-02, -7.897388190031052e-02, -7.807045429944992e-02, -7.71472379565239e-02, -7.620000094175339e-02, -7.523832470178604e-02, -7.427289336919785e-02, -7.330112159252167e-02, -7.232040166854858e-02, -7.132814824581146e-02, -7.032176107168198e-02, -6.92986398935318e-02, -6.82561993598938e-02, -6.719183921813965e-02, -6.610296666622162e-02, -6.498697400093079e-02, -6.384128332138062e-02, -6.266327947378159e-02, -6.145038828253746e-02, -6.019999831914902e-02, -5.893956869840622e-02, -5.769167467951775e-02, -5.644639953970909e-02, -5.519383773207664e-02, -5.39240725338459e-02, -5.262719839811325e-02, -5.129330232739449e-02, -4.99124750494957e-02, -4.847479984164238e-02, -4.697037115693092e-02, -4.538927227258682e-02, -4.372160136699677e-02, -4.195743799209595e-02, -4.008687287569046e-02, -3.810000047087669e-02, -3.611466661095619e-02, -3.415400162339211e-02, -3.206599876284599e-02, -2.969866618514061e-02, -2.690000087022781e-02, -2.424468658864498e-02, -2.164250053465366e-02, -1.794406212866306e-02, -1.200000010430813e-02, 0e+00, 1.200000010430813e-02, 1.794406212866306e-02, 2.164250053465366e-02, 2.424468658864498e-02, 2.690000087022781e-02, 2.969866618514061e-02, 3.206599876284599e-02, 3.415400162339211e-02, 3.611466661095619e-02, 3.810000047087669e-02, 4.008687287569046e-02, 4.195743799209595e-02, 4.372160136699677e-02, 4.538927227258682e-02, 4.697037115693092e-02, 4.847479984164238e-02, 4.99124750494957e-02, 5.129330232739449e-02, 5.262719839811325e-02, 5.39240725338459e-02, 5.519383773207664e-02, 5.644639953970909e-02, 5.769167467951775e-02, 5.893956869840622e-02, 6.019999831914902e-02, 6.145038828253746e-02, 6.266327947378159e-02, 6.384128332138062e-02, 6.498697400093079e-02, 6.610296666622162e-02, 6.719183921813965e-02, 6.82561993598938e-02, 6.92986398935318e-02, 7.032176107168198e-02, 7.132814824581146e-02, 7.232040166854858e-02, 7.330112159252167e-02, 7.427289336919785e-02, 7.523832470178604e-02, 7.620000094175339e-02, 7.71472379565239e-02, 7.807045429944992e-02, 7.897388190031052e-02, 7.986176013946533e-02, 8.073833584785461e-02, 8.160784095525742e-02, 8.247452229261398e-02, 8.334261178970337e-02, 8.421635627746582e-02, 8.510000258684158e-02] +m_flow_testdata[7]=[-8.709999918937683e-02, -8.607999980449677e-02, -8.50600004196167e-02, -8.404000103473663e-02, -8.302000164985657e-02, -8.20000022649765e-02, -8.098000288009644e-02, -7.996000349521637e-02, -7.893999665975571e-02, -7.791999727487564e-02, -7.689999788999557e-02, -7.589513808488846e-02, -7.491623610258102e-02, -7.395680248737335e-02, -7.301034033298492e-02, -7.207036763429642e-02, -7.113040238618851e-02, -7.018394023180008e-02, -6.922450661659241e-02, -6.824559718370438e-02, -6.724073737859726e-02, -6.620343774557114e-02, -6.512720137834549e-02, -6.40055388212204e-02, -6.283196806907654e-02, -6.159999966621399e-02, -6.034232676029205e-02, -5.908972024917603e-02, -5.783279985189438e-02, -5.656219273805618e-02, -5.526851862668991e-02, -5.394240096211433e-02, -5.257445946335793e-02, -5.115531757473946e-02, -4.96755987405777e-02, -4.812592640519142e-02, -4.64969202876091e-02, -4.477920010685921e-02, -4.296339303255081e-02, -4.104011878371239e-02, -3.90000008046627e-02, -3.696026653051376e-02, -3.494279831647873e-02, -3.279519826173782e-02, -3.036506660282612e-02, -2.749999985098839e-02, -2.478750050067902e-02, -2.213333360850811e-02, -1.836249977350235e-02, -1.229999959468842e-02, 0e+00, 1.229999959468842e-02, 1.833749935030937e-02, 2.264999970793724e-02, 2.523750066757202e-02, 2.610000036656857e-02, 2.610000036656857e-02, 2.610000036656857e-02, 2.610000036656857e-02, 2.610000036656857e-02, 2.610000036656857e-02, 2.610000036656857e-02, 2.610000036656857e-02, 2.610000036656857e-02, 2.610000036656857e-02, 2.610000036656857e-02, 2.610000036656857e-02, 2.610000036656857e-02, 2.610000036656857e-02, 2.610000036656857e-02, 2.610000036656857e-02, 2.610000036656857e-02, 2.610000036656857e-02, 2.610000036656857e-02, 2.610000036656857e-02, 2.610000036656857e-02, 2.610000036656857e-02, 2.610000036656857e-02, 2.610000036656857e-02, 2.610000036656857e-02, 2.610000036656857e-02, 2.610000036656857e-02, 2.610000036656857e-02, 2.610000036656857e-02, 2.610000036656857e-02, 2.610000036656857e-02, 2.610000036656857e-02, 2.610000036656857e-02, 2.610000036656857e-02, 2.610000036656857e-02, 2.610000036656857e-02, 2.610000036656857e-02, 2.610000036656857e-02, 2.610000036656857e-02, 2.610000036656857e-02, 2.610000036656857e-02, 2.610000036656857e-02, 2.610000036656857e-02, 2.610000036656857e-02, 2.610000036656857e-02, 2.610000036656857e-02] +m_flow_testdata[8]=[-1.049999967217445e-01, -1.037597581744194e-01, -1.025191470980644e-01, -1.012783199548721e-01, -1.000374406576157e-01, -9.879666566848755e-02, -9.755615890026093e-02, -9.631607681512833e-02, -9.507658332586288e-02, -9.383784234523773e-02, -9.260000288486481e-02, -9.138122946023941e-02, -9.019434452056885e-02, -8.903151750564575e-02, -8.788490295410156e-02, -8.674667030572891e-02, -8.560895919799805e-02, -8.44639465212822e-02, -8.33037868142128e-02, -8.212064206600189e-02, -8.090666681528091e-02, -7.96540230512619e-02, -7.835488021373749e-02, -7.700138539075851e-02, -7.558570802211761e-02, -7.410000264644623e-02, -7.258253544569016e-02, -7.106959819793701e-02, -6.955040246248245e-02, -6.801412999629974e-02, -6.644999980926514e-02, -6.48472011089325e-02, -6.319493055343628e-02, -6.148239970207214e-02, -5.969880148768425e-02, -5.783333256840706e-02, -5.587520077824593e-02, -5.381359905004501e-02, -5.163773149251938e-02, -4.933679848909378e-02, -4.690000042319298e-02, -4.447359964251518e-02, -4.208280146121979e-02, -3.953519836068153e-02, -3.663840144872665e-02, -3.319999948143959e-02, -2.992749959230423e-02, -2.671333402395248e-02, -2.214249968528748e-02, -1.480000000447035e-02, 0e+00, 1.480000000447035e-02, 2.210625074803829e-02, 2.732500061392784e-02, 3.045625053346157e-02, 3.150000050663948e-02, 3.150000050663948e-02, 3.150000050663948e-02, 3.150000050663948e-02, 3.150000050663948e-02, 3.150000050663948e-02, 3.150000050663948e-02, 3.150000050663948e-02, 3.150000050663948e-02, 3.150000050663948e-02, 3.150000050663948e-02, 3.150000050663948e-02, 3.150000050663948e-02, 3.150000050663948e-02, 3.150000050663948e-02, 3.150000050663948e-02, 3.150000050663948e-02, 3.150000050663948e-02, 3.150000050663948e-02, 3.150000050663948e-02, 3.150000050663948e-02, 3.150000050663948e-02, 3.150000050663948e-02, 3.150000050663948e-02, 3.150000050663948e-02, 3.150000050663948e-02, 3.150000050663948e-02, 3.150000050663948e-02, 3.150000050663948e-02, 3.150000050663948e-02, 3.150000050663948e-02, 3.150000050663948e-02, 3.150000050663948e-02, 3.150000050663948e-02, 3.150000050663948e-02, 3.150000050663948e-02, 3.150000050663948e-02, 3.150000050663948e-02, 3.150000050663948e-02, 3.150000050663948e-02, 3.150000050663948e-02, 3.150000050663948e-02, 3.150000050663948e-02, 3.150000050663948e-02, 3.150000050663948e-02, 3.150000050663948e-02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Validation_OpenDoorBuoyancyDynamic.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Validation_OpenDoorBuoyancyDynamic.txt index c1f4e22323..12a65a2dce 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Validation_OpenDoorBuoyancyDynamic.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Validation_OpenDoorBuoyancyDynamic.txt @@ -1,4 +1,4 @@ -last-generated=2021-01-22 +last-generated=2022-05-18 statistics-simulation= { "linear": " ", @@ -7,11 +7,11 @@ statistics-simulation= "numerical Jacobians": "0" } time=[0e+00, 1.44e+04] -doo.vAB=[8.119534701108932e-02, 5.520493909716606e-02, 3.903370723128319e-02, 2.966813743114471e-02, 2.378417365252972e-02, 1.979839242994785e-02, 1.693606004118919e-02, 1.478709559887647e-02, 1.311744470149279e-02, 1.178545132279396e-02, 1.069753430783749e-02, 9.79198794811964e-03, 9.026696905493736e-03, 8.371828123927116e-03, 7.805232424288987e-03, 7.310621906071901e-03, 6.875031627714634e-03, 6.488111801445484e-03, 6.142404861748219e-03, 5.831553135067225e-03, 5.55051863193512e-03, 5.295119248330593e-03, 5.062179174274206e-03, 4.848851822316647e-03, 4.652758128941059e-03, 4.471847787499428e-03, 4.304449539631605e-03, 4.149131011217832e-03, 4.004620946943759e-03, 3.869816428050399e-03, 3.743765410035849e-03, 3.625671146437526e-03, 3.514795564115047e-03, 3.410493489354849e-03, 3.312187502160668e-03, 3.219390520825982e-03, 3.131650388240814e-03, 3.048563841730356e-03, 2.969770459458232e-03, 2.89494008757174e-03, 2.823784481734037e-03, 2.756043570116162e-03, 2.691475674510002e-03, 2.62986239977181e-03, 2.571004675701261e-03, 2.514720195904374e-03, 2.460847841575742e-03, 2.409234875813127e-03, 2.359741600230336e-03, 2.312238793820143e-03, 2.266610506922007e-03, 2.222748240455985e-03, 2.180551178753376e-03, 2.139925956726074e-03, 2.100785495713353e-03, 2.063050167635083e-03, 2.026646863669157e-03, 1.991505734622478e-03, 1.957562286406755e-03, 1.924756215885282e-03, 1.893031410872936e-03, 1.862335251644254e-03, 1.832620589993894e-03, 1.803838997147977e-03, 1.775947865098715e-03, 1.748797134496272e-03, 1.722416607663035e-03, 1.696834806352854e-03, 1.672051846981049e-03, 1.647782861255109e-03, 1.623973716050386e-03, 1.600833609700203e-03, 1.578362309373915e-03, 1.556560164317489e-03, 1.53542694170028e-03, 1.514962641522288e-03, 1.495152828283608e-03, 1.475424622185528e-03, 1.456225174479187e-03, 1.437554135918617e-03, 1.419411855749786e-03, 1.401798101142049e-03, 1.384712988510728e-03, 1.368156517855823e-03, 1.351871993392706e-03, 1.33577617816627e-03, 1.320083974860609e-03, 1.304795383475721e-03, 1.289910287596285e-03, 1.275428687222302e-03, 1.261350815184414e-03, 1.247676438651979e-03, 1.234008697792888e-03, 1.220648875460029e-03, 1.207598834298551e-03, 1.194858574308455e-03, 1.182428211905062e-03, 1.170307630673051e-03, 1.158496947027743e-03, 1.146866241469979e-03, 1.135353464633226e-03] -doo.vBA=[8.119534701108932e-02, 5.520493909716606e-02, 3.903370723128319e-02, 2.966813743114471e-02, 2.378417365252972e-02, 1.979839242994785e-02, 1.693606004118919e-02, 1.478709559887647e-02, 1.311744470149279e-02, 1.178545132279396e-02, 1.069753430783749e-02, 9.79198794811964e-03, 9.026696905493736e-03, 8.371828123927116e-03, 7.805232424288987e-03, 7.310621906071901e-03, 6.875031627714634e-03, 6.488111801445484e-03, 6.142404861748219e-03, 5.831553135067225e-03, 5.55051863193512e-03, 5.295119248330593e-03, 5.062179174274206e-03, 4.848851822316647e-03, 4.652758128941059e-03, 4.471847787499428e-03, 4.304449539631605e-03, 4.149131011217832e-03, 4.004620946943759e-03, 3.869816428050399e-03, 3.743765410035849e-03, 3.625671146437526e-03, 3.514795564115047e-03, 3.410493489354849e-03, 3.312187502160668e-03, 3.219390520825982e-03, 3.131650388240814e-03, 3.048563841730356e-03, 2.969770459458232e-03, 2.89494008757174e-03, 2.823784481734037e-03, 2.756043570116162e-03, 2.691475674510002e-03, 2.62986239977181e-03, 2.571004675701261e-03, 2.514720195904374e-03, 2.460847841575742e-03, 2.409234875813127e-03, 2.359741600230336e-03, 2.312238793820143e-03, 2.266610506922007e-03, 2.222748240455985e-03, 2.180551178753376e-03, 2.139925956726074e-03, 2.100785495713353e-03, 2.063050167635083e-03, 2.026646863669157e-03, 1.991505734622478e-03, 1.957562286406755e-03, 1.924756215885282e-03, 1.893031410872936e-03, 1.862335251644254e-03, 1.832620589993894e-03, 1.803838997147977e-03, 1.775947865098715e-03, 1.748797134496272e-03, 1.722416607663035e-03, 1.696834806352854e-03, 1.672051846981049e-03, 1.647782861255109e-03, 1.623973716050386e-03, 1.600833609700203e-03, 1.578362309373915e-03, 1.556560164317489e-03, 1.53542694170028e-03, 1.514962641522288e-03, 1.495152828283608e-03, 1.475424622185528e-03, 1.456225174479187e-03, 1.437554135918617e-03, 1.419411855749786e-03, 1.401798101142049e-03, 1.384712988510728e-03, 1.368156517855823e-03, 1.351871993392706e-03, 1.33577617816627e-03, 1.320083974860609e-03, 1.304795383475721e-03, 1.289910287596285e-03, 1.275428687222302e-03, 1.261350815184414e-03, 1.247676438651979e-03, 1.234008697792888e-03, 1.220648875460029e-03, 1.207598834298551e-03, 1.194858574308455e-03, 1.182428211905062e-03, 1.170307630673051e-03, 1.158496947027743e-03, 1.146866241469979e-03, 1.135353464633226e-03] -dooDis.vAB=[1.164413839578629e-01, 5.968387797474861e-02, 4.684257507324219e-02, 3.835171088576317e-02, 3.224297240376472e-02, 2.741414681077003e-02, 2.359866909682751e-02, 2.071449905633926e-02, 1.806275174021721e-02, 1.585057191550732e-02, 1.425776816904545e-02, 1.284204609692097e-02, 1.158089656382799e-02, 1.050782948732376e-02, 9.757678955793381e-03, 9.076362475752831e-03, 8.389487862586975e-03, 7.974592968821526e-03, 7.324646692723036e-03, 6.980249658226967e-03, 6.556612905114889e-03, 6.368167698383331e-03, 5.895545706152916e-03, 5.673220381140709e-03, 5.370703991502523e-03, 5.261399317532778e-03, 5.005098413676023e-03, 4.730355460196733e-03, 4.59613837301731e-03, 4.439406096935272e-03, 4.398589953780174e-03, 4.063236061483622e-03, 4.024782683700323e-03, 3.842563601210713e-03, 3.933290019631386e-03, 3.597211092710495e-03, 3.582742530852556e-03, 3.407027572393417e-03, 3.33857792429626e-03, 3.138144034892321e-03, 3.044532146304846e-03, 3.069647587835789e-03, 2.915049670264125e-03, 2.904233988374472e-03, 2.815964631736279e-03, 2.886753994971514e-03, 2.655010903254151e-03, 2.68202368170023e-03, 2.567047020420432e-03, 2.711344044655561e-03, 2.481817733496428e-03, 2.470946870744228e-03, 2.414105692878366e-03, 2.344382926821709e-03, 2.25134822539985e-03, 2.124833641573788e-03, 2.237983979284762e-03, 2.097827149555087e-03, 2.138545271009207e-03, 2.057649428024888e-03, 2.036209916695952e-03, 1.994818449020386e-03, 1.963377464562654e-03, 1.931154867634177e-03, 1.899926923215389e-03, 1.870920765213668e-03, 1.842956757172942e-03, 1.814490766264498e-03, 1.785522908903658e-03, 1.758010475896299e-03, 1.732325181365013e-03, 1.707031158730388e-03, 1.682128058746457e-03, 1.657616579905152e-03, 1.633496605791152e-03, 1.609768252819777e-03, 1.58645783085376e-03, 1.564588048495352e-03, 1.543361111544073e-03, 1.522777252830565e-03, 1.502836588770151e-03, 1.483539002947509e-03, 1.464884844608605e-03, 1.446874113753438e-03, 1.429091673344374e-03, 1.411403063684702e-03, 1.394155900925398e-03, 1.377349952235818e-03, 1.360985450446606e-03, 1.345062628388405e-03, 1.32958113681525e-03, 1.314541324973106e-03, 1.299560070037842e-03, 1.28492817748338e-03, 1.270647277124226e-03, 1.256717834621668e-03, 1.243139384314418e-03, 1.229912508279085e-03, 1.217036857269704e-03, 1.204356085509062e-03, 1.191794988699257e-03] -dooDis.vBA=[4.749564453959465e-02, 5.990498512983322e-02, 4.694976285099983e-02, 3.840827569365501e-02, 3.220124542713165e-02, 2.759085595607758e-02, 2.390220947563648e-02, 2.059530839323997e-02, 1.81407630443573e-02, 1.607844978570938e-02, 1.422037463635206e-02, 1.281538605690002e-02, 1.166222710162401e-02, 1.065531745553017e-02, 9.700608439743517e-03, 8.960271254181862e-03, 8.408299647271633e-03, 7.754968944936991e-03, 7.434388156980276e-03, 6.918889936059713e-03, 6.570843048393726e-03, 6.104995496571064e-03, 5.961773451417685e-03, 5.623039789497852e-03, 5.402896087616682e-03, 5.067681428045034e-03, 4.912242759019136e-03, 4.790075123310088e-03, 4.553210455924273e-03, 4.376804921776056e-03, 4.139650147408247e-03, 4.180979914963245e-03, 3.944966476410627e-03, 3.863802645355463e-03, 3.579841693863273e-03, 3.696293337270617e-03, 3.501861821860075e-03, 3.462576540187001e-03, 3.331364365294576e-03, 3.308042185381055e-03, 3.186007728800178e-03, 2.985333791002631e-03, 2.977491822093725e-03, 2.845598617568612e-03, 2.802335657179356e-03, 2.640249906107783e-03, 2.752406988292933e-03, 2.610975876450539e-03, 2.6056042406708e-03, 2.397250849753618e-03, 2.535609062761068e-03, 2.45367456227541e-03, 2.407297026365995e-03, 2.374268136918545e-03, 2.347771776840092e-03, 2.336967270821331e-03, 2.12784274481237e-03, 2.176653360947967e-03, 2.063610590994358e-03, 2.072939649224281e-03, 2.02759588137269e-03, 1.997738843783736e-03, 1.962000504136086e-03, 1.929172081872821e-03, 1.897827605716884e-03, 1.866249949671328e-03, 1.835622126236558e-03, 1.807461259886622e-03, 1.781767583452165e-03, 1.755510573275387e-03, 1.728114555589855e-03, 1.70180422719568e-03, 1.676580170169473e-03, 1.652442151680589e-03, 1.629390520974994e-03, 1.607425510883331e-03, 1.586497528478503e-03, 1.564662554301322e-03, 1.543437479995191e-03, 1.522822771221399e-03, 1.502818195149302e-03, 1.483424217440188e-03, 1.464640605263412e-03, 1.446467824280262e-03, 1.428594812750816e-03, 1.410920755006373e-03, 1.393705955706537e-03, 1.37695053126663e-03, 1.360654598101974e-03, 1.344817923381925e-03, 1.32944097276777e-03, 1.314523629844189e-03, 1.299569034017622e-03, 1.284954370930791e-03, 1.270682201720774e-03, 1.256752293556929e-03, 1.243164879269898e-03, 1.229919726029038e-03, 1.217017183080316e-03, 1.204319181852043e-03, 1.191760296933353e-03] -bouA.T=[2.921499938964844e+02, 2.925950927734375e+02, 2.927796325683594e+02, 2.928743896484375e+02, 2.929311828613281e+02, 2.929688110351562e+02, 2.929954833984375e+02, 2.93015380859375e+02, 2.930307312011719e+02, 2.930429382324219e+02, 2.930528869628906e+02, 2.930611572265625e+02, 2.930681457519531e+02, 2.930740966796875e+02, 2.930792541503906e+02, 2.930837707519531e+02, 2.930877075195312e+02, 2.930912170410156e+02, 2.930943603515625e+02, 2.930971984863281e+02, 2.930997314453125e+02, 2.9310205078125e+02, 2.931041564941406e+02, 2.931061096191406e+02, 2.931078796386719e+02, 2.931095275878906e+02, 2.931110229492188e+02, 2.931124572753906e+02, 2.931137390136719e+02, 2.931149597167969e+02, 2.931161193847656e+02, 2.931171875e+02, 2.931181945800781e+02, 2.93119140625e+02, 2.931200256347656e+02, 2.931208801269531e+02, 2.931216735839844e+02, 2.931224060058594e+02, 2.931231384277344e+02, 2.931238098144531e+02, 2.931244506835938e+02, 2.931250610351562e+02, 2.931256408691406e+02, 2.931261901855469e+02, 2.931267395019531e+02, 2.931272583007812e+02, 2.931277465820312e+02, 2.931282043457031e+02, 2.93128662109375e+02, 2.931290893554688e+02, 2.931294860839844e+02, 2.931298828125e+02, 2.931302795410156e+02, 2.931306457519531e+02, 2.931309814453125e+02, 2.9313134765625e+02, 2.931316528320312e+02, 2.931319885253906e+02, 2.931322937011719e+02, 2.931325988769531e+02, 2.931328735351562e+02, 2.931331481933594e+02, 2.931334228515625e+02, 2.931336669921875e+02, 2.931339416503906e+02, 2.931341857910156e+02, 2.931344299316406e+02, 2.931346435546875e+02, 2.931348571777344e+02, 2.931351013183594e+02, 2.931353149414062e+02, 2.931355285644531e+02, 2.931357116699219e+02, 2.931359252929688e+02, 2.931361083984375e+02, 2.931362915039062e+02, 2.93136474609375e+02, 2.931366577148438e+02, 2.931368103027344e+02, 2.931369934082031e+02, 2.931371459960938e+02, 2.931373291015625e+02, 2.931374816894531e+02, 2.931376342773438e+02, 2.931377563476562e+02, 2.931379089355469e+02, 2.931380615234375e+02, 2.9313818359375e+02, 2.931383361816406e+02, 2.931384582519531e+02, 2.931385803222656e+02, 2.931387023925781e+02, 2.931388244628906e+02, 2.931389465332031e+02, 2.931390686035156e+02, 2.931391906738281e+02, 2.931393127441406e+02, 2.93139404296875e+02, 2.931395263671875e+02, 2.931396179199219e+02, 2.931397399902344e+02] -bouB.T=[2.941499938964844e+02, 2.937049255371094e+02, 2.935203857421875e+02, 2.934256286621094e+02, 2.933688049316406e+02, 2.933311767578125e+02, 2.933045043945312e+02, 2.932846374511719e+02, 2.932692565917969e+02, 2.932570495605469e+02, 2.932471008300781e+02, 2.932388305664062e+02, 2.932318725585938e+02, 2.932258911132812e+02, 2.932207336425781e+02, 2.932162475585938e+02, 2.932122802734375e+02, 2.932087707519531e+02, 2.932056274414062e+02, 2.932028198242188e+02, 2.932002563476562e+02, 2.931979370117188e+02, 2.931958312988281e+02, 2.931939086914062e+02, 2.931921081542969e+02, 2.931904907226562e+02, 2.9318896484375e+02, 2.931875610351562e+02, 2.931862487792969e+02, 2.931850280761719e+02, 2.931838989257812e+02, 2.931828002929688e+02, 2.931818237304688e+02, 2.931808776855469e+02, 2.931799621582031e+02, 2.931791381835938e+02, 2.931783447265625e+02, 2.931775817871094e+02, 2.931768798828125e+02, 2.931762084960938e+02, 2.931755676269531e+02, 2.931749267578125e+02, 2.931743469238281e+02, 2.931737976074219e+02, 2.931732788085938e+02, 2.931727600097656e+02, 2.931722717285156e+02, 2.931718139648438e+02, 2.931713562011719e+02, 2.931709289550781e+02, 2.931705017089844e+02, 2.931701049804688e+02, 2.931697387695312e+02, 2.931693725585938e+02, 2.931690063476562e+02, 2.931686706542969e+02, 2.931683349609375e+02, 2.931680297851562e+02, 2.93167724609375e+02, 2.931674194335938e+02, 2.931671142578125e+02, 2.931668395996094e+02, 2.931665954589844e+02, 2.931663208007812e+02, 2.931660766601562e+02, 2.931658325195312e+02, 2.931655883789062e+02, 2.931653442382812e+02, 2.931651306152344e+02, 2.931649169921875e+02, 2.931647033691406e+02, 2.931644897460938e+02, 2.931642761230469e+02, 2.931640930175781e+02, 2.931638793945312e+02, 2.931636962890625e+02, 2.931635131835938e+02, 2.931633605957031e+02, 2.931631774902344e+02, 2.931629943847656e+02, 2.93162841796875e+02, 2.931626892089844e+02, 2.931625366210938e+02, 2.931623840332031e+02, 2.931622314453125e+02, 2.931620788574219e+02, 2.931619567871094e+02, 2.931618041992188e+02, 2.931616821289062e+02, 2.931615295410156e+02, 2.931614074707031e+02, 2.931612854003906e+02, 2.931611633300781e+02, 2.931610412597656e+02, 2.931609191894531e+02, 2.931607971191406e+02, 2.931607055664062e+02, 2.931605834960938e+02, 2.931604919433594e+02, 2.931603698730469e+02, 2.931602783203125e+02] +doo.vAB=[8.119534701108932e-02, 5.523612350225449e-02, 3.906789422035217e-02, 2.968242950737476e-02, 2.379067242145538e-02, 1.980147697031498e-02, 1.693769916892052e-02, 1.478804275393486e-02, 1.311761420220137e-02, 1.178347691893578e-02, 1.069398876279593e-02, 9.788019582629204e-03, 9.022864513099194e-03, 8.368195034563541e-03, 7.801799103617667e-03, 7.306940853595734e-03, 6.870890501886606e-03, 6.483823526650667e-03, 6.137997377663851e-03, 5.827133078128099e-03, 5.546181928366423e-03, 5.291036330163479e-03, 5.058299284428358e-03, 4.845152609050274e-03, 4.649222828447819e-03, 4.46850573644042e-03, 4.301297478377819e-03, 4.146137740463018e-03, 4.001773428171872e-03, 3.867116058245301e-03, 3.74121917411685e-03, 3.62325506284833e-03, 3.512497525662184e-03, 3.408305812627077e-03, 3.310112748295069e-03, 3.21741565130651e-03, 3.129766322672367e-03, 3.046761266887188e-03, 2.968041691929102e-03, 2.893281867727637e-03, 2.822194946929812e-03, 2.754517598077655e-03, 2.690008142963052e-03, 2.628452377393842e-03, 2.569650299847126e-03, 2.513420302420855e-03, 2.459597308188677e-03, 2.408025786280632e-03, 2.358573721721768e-03, 2.311104908585548e-03, 2.265507588163018e-03, 2.22167675383389e-03, 2.179506467655301e-03, 2.138914307579398e-03, 2.099803183227777e-03, 2.062099520117044e-03, 2.025727881118655e-03, 1.990616088733077e-03, 1.956701744347811e-03, 1.923921867273748e-03, 1.892222557216883e-03, 1.861550030298531e-03, 1.831855275668204e-03, 1.803093822672963e-03, 1.775220269337296e-03, 1.748196315020323e-03, 1.721980748698115e-03, 1.696538063697517e-03, 1.671836012974381e-03, 1.647845143452287e-03, 1.62453216034919e-03, 1.601863303221762e-03, 1.579817617312074e-03, 1.558371819555759e-03, 1.537503907456994e-03, 1.517182681709528e-03, 1.497393357567489e-03, 1.478117192164063e-03, 1.45933753810823e-03, 1.441029133275151e-03, 1.42317614518106e-03, 1.405762042850256e-03, 1.388770062476397e-03, 1.372185070067644e-03, 1.355992746539414e-03, 1.340177026577294e-03, 1.324722543358803e-03, 1.309615792706609e-03, 1.294850837439299e-03, 1.280412427149713e-03, 1.266289851628244e-03, 1.252472749911249e-03, 1.238950178958476e-03, 1.225713407620788e-03, 1.212754519656301e-03, 1.200065715238452e-03, 1.187640009447932e-03, 1.175471115857363e-03, 1.163553562946618e-03, 1.151876174844801e-03, 1.140416134148836e-03] +doo.vBA=[8.119534701108932e-02, 5.523612350225449e-02, 3.906789422035217e-02, 2.968242950737476e-02, 2.379067242145538e-02, 1.980147697031498e-02, 1.693769916892052e-02, 1.478804275393486e-02, 1.311761420220137e-02, 1.178347691893578e-02, 1.069398876279593e-02, 9.788019582629204e-03, 9.022864513099194e-03, 8.368195034563541e-03, 7.801799103617667e-03, 7.306940853595734e-03, 6.870890501886606e-03, 6.483823526650667e-03, 6.137997377663851e-03, 5.827133078128099e-03, 5.546181928366423e-03, 5.291036330163479e-03, 5.058299284428358e-03, 4.845152609050274e-03, 4.649222828447819e-03, 4.46850573644042e-03, 4.301297478377819e-03, 4.146137740463018e-03, 4.001773428171872e-03, 3.867116058245301e-03, 3.74121917411685e-03, 3.62325506284833e-03, 3.512497525662184e-03, 3.408305812627077e-03, 3.310112748295069e-03, 3.21741565130651e-03, 3.129766322672367e-03, 3.046761266887188e-03, 2.968041691929102e-03, 2.893281867727637e-03, 2.822194946929812e-03, 2.754517598077655e-03, 2.690008142963052e-03, 2.628452377393842e-03, 2.569650299847126e-03, 2.513420302420855e-03, 2.459597308188677e-03, 2.408025786280632e-03, 2.358573721721768e-03, 2.311104908585548e-03, 2.265507588163018e-03, 2.22167675383389e-03, 2.179506467655301e-03, 2.138914307579398e-03, 2.099803183227777e-03, 2.062099520117044e-03, 2.025727881118655e-03, 1.990616088733077e-03, 1.956701744347811e-03, 1.923921867273748e-03, 1.892222557216883e-03, 1.861550030298531e-03, 1.831855275668204e-03, 1.803093822672963e-03, 1.775220269337296e-03, 1.748196315020323e-03, 1.721980748698115e-03, 1.696538063697517e-03, 1.671836012974381e-03, 1.647845143452287e-03, 1.62453216034919e-03, 1.601863303221762e-03, 1.579817617312074e-03, 1.558371819555759e-03, 1.537503907456994e-03, 1.517182681709528e-03, 1.497393357567489e-03, 1.478117192164063e-03, 1.45933753810823e-03, 1.441029133275151e-03, 1.42317614518106e-03, 1.405762042850256e-03, 1.388770062476397e-03, 1.372185070067644e-03, 1.355992746539414e-03, 1.340177026577294e-03, 1.324722543358803e-03, 1.309615792706609e-03, 1.294850837439299e-03, 1.280412427149713e-03, 1.266289851628244e-03, 1.252472749911249e-03, 1.238950178958476e-03, 1.225713407620788e-03, 1.212754519656301e-03, 1.200065715238452e-03, 1.187640009447932e-03, 1.175471115857363e-03, 1.163553562946618e-03, 1.151876174844801e-03, 1.140416134148836e-03] +dooDis.vAB=[1.164413839578629e-01, 5.971144512295723e-02, 4.685740172863007e-02, 3.836873546242714e-02, 3.222694247961044e-02, 2.750871889293194e-02, 2.374668791890144e-02, 2.064623869955539e-02, 1.808322593569756e-02, 1.598741114139557e-02, 1.42681859433651e-02, 1.284298859536648e-02, 1.165367756038904e-02, 1.065141707658768e-02, 9.798483923077582e-03, 9.065562859177589e-03, 8.430037647485733e-03, 7.874663919210434e-03, 7.386079989373684e-03, 6.952428724616766e-03, 6.566360127180815e-03, 6.22206274420023e-03, 5.906980484724045e-03, 5.624672863632441e-03, 5.367230158299208e-03, 5.132539197802544e-03, 4.916651640087366e-03, 4.716985393315553e-03, 4.533611238002776e-03, 4.363466519862413e-03, 4.205517470836639e-03, 4.058508202433586e-03, 3.92148969694972e-03, 3.793367184698582e-03, 3.67317907512188e-03, 3.560390323400497e-03, 3.454268909990788e-03, 3.354270244017243e-03, 3.25983134098351e-03, 3.170548705384135e-03, 3.086023032665253e-03, 3.005842212587595e-03, 2.929713344201446e-03, 2.85734748467803e-03, 2.788437530398369e-03, 2.722761128097773e-03, 2.660105470567942e-03, 2.600238192826509e-03, 2.542998874559999e-03, 2.488202648237348e-03, 2.435715403407812e-03, 2.385402796790004e-03, 2.337108599022031e-03, 2.29073385708034e-03, 2.246158896014094e-03, 2.203291049227118e-03, 2.162030665203929e-03, 2.122278092429042e-03, 2.083954634144902e-03, 2.046987880021334e-03, 2.011310309171677e-03, 1.97685114108026e-03, 1.943546114489436e-03, 1.911341096274555e-03, 1.88018474727869e-03, 1.850030850619078e-03, 1.820823992602527e-03, 1.792519586160779e-03, 1.765079330652952e-03, 1.738467835821211e-03, 1.712642959319055e-03, 1.687562558799982e-03, 1.663204515352845e-03, 1.639544731006026e-03, 1.616558176465333e-03, 1.594191417098045e-03, 1.572435954585671e-03, 1.551269786432385e-03, 1.530673704110086e-03, 1.51061755605042e-03, 1.491083647124469e-03, 1.472053932957351e-03, 1.453510019928217e-03, 1.435430604033172e-03, 1.417794032022357e-03, 1.400581793859601e-03, 1.383773516863585e-03, 1.367351855151355e-03, 1.351320534013212e-03, 1.335656852461398e-03, 1.320348936133087e-03, 1.30538665689528e-03, 1.290746498852968e-03, 1.276421477086842e-03, 1.262405072338879e-03, 1.24868901912123e-03, 1.235266914591193e-03, 1.222133170813322e-03, 1.209283480420709e-03, 1.196702942252159e-03, 1.184352906420827e-03] +dooDis.vBA=[4.749564453959465e-02, 5.992362648248672e-02, 4.698415473103523e-02, 3.84162925183773e-02, 3.224246203899384e-02, 2.753300033509731e-02, 2.375810593366623e-02, 2.065722271800041e-02, 1.810459792613983e-02, 1.600388996303082e-02, 1.427375618368387e-02, 1.28474747762084e-02, 1.165732648223639e-02, 1.06544392183423e-02, 9.801003150641916e-03, 9.06764529645443e-03, 8.431940339505672e-03, 7.876423187553883e-03, 7.387285586446524e-03, 6.954255979508162e-03, 6.567286793142557e-03, 6.218227557837963e-03, 5.908665247261524e-03, 5.62671385705471e-03, 5.368543788790703e-03, 5.133778788149357e-03, 4.9176593311131e-03, 4.71871718764305e-03, 4.534316714853047e-03, 4.363550338894129e-03, 4.205813631415367e-03, 4.059101920574903e-03, 3.921991214156151e-03, 3.793762065470219e-03, 3.673667088150978e-03, 3.560769837349653e-03, 3.454589750617743e-03, 3.354528686031699e-03, 3.260111669078469e-03, 3.170814830809832e-03, 3.086251672357321e-03, 3.006082726642489e-03, 2.929944777861238e-03, 2.857546554878354e-03, 2.788638696074486e-03, 2.72296043112874e-03, 2.660283818840981e-03, 2.600415609776974e-03, 2.543173497542739e-03, 2.488379366695881e-03, 2.435882808640599e-03, 2.385547617450356e-03, 2.337245736271143e-03, 2.290872856974602e-03, 2.246293472126126e-03, 2.203415846452117e-03, 2.162143820896744e-03, 2.122387522831559e-03, 2.084068022668362e-03, 2.047099871560931e-03, 2.011414617300034e-03, 1.976947532966733e-03, 1.943640410900116e-03, 1.911437604576349e-03, 1.880278927274048e-03, 1.850118162110448e-03, 1.820905599743128e-03, 1.792598399333656e-03, 1.765156863257289e-03, 1.738546299748123e-03, 1.71272421721369e-03, 1.687648356892169e-03, 1.663292525336146e-03, 1.639627385884523e-03, 1.616625115275383e-03, 1.594256376847625e-03, 1.572499750182033e-03, 1.551334164105356e-03, 1.530740410089493e-03, 1.510685542598367e-03, 1.491150935180485e-03, 1.472117728553712e-03, 1.453565084375441e-03, 1.435476006008685e-03, 1.417834660969675e-03, 1.400621025823057e-03, 1.38381717260927e-03, 1.367406221106648e-03, 1.351378974504769e-03, 1.335716806352139e-03, 1.320405513979495e-03, 1.305431127548218e-03, 1.290792948566377e-03, 1.276477240025997e-03, 1.26247142907232e-03, 1.248765853233635e-03, 1.235350966453552e-03, 1.222218386828899e-03, 1.209359732456505e-03, 1.196765922941267e-03, 1.184426946565509e-03] +bouA.T=[2.921499938964844e+02, 2.925946960449219e+02, 2.927792663574219e+02, 2.928742370605469e+02, 2.929311218261719e+02, 2.929687805175781e+02, 2.929954833984375e+02, 2.930153503417969e+02, 2.930307312011719e+02, 2.9304296875e+02, 2.930529174804688e+02, 2.930611877441406e+02, 2.930681762695312e+02, 2.930741271972656e+02, 2.930792846679688e+02, 2.930838012695312e+02, 2.930877685546875e+02, 2.930912780761719e+02, 2.930944213867188e+02, 2.930972290039062e+02, 2.930997924804688e+02, 2.931020812988281e+02, 2.931042175292969e+02, 2.931061401367188e+02, 2.9310791015625e+02, 2.931095581054688e+02, 2.931110534667969e+02, 2.931124572753906e+02, 2.9311376953125e+02, 2.93114990234375e+02, 2.931161499023438e+02, 2.931172180175781e+02, 2.931182250976562e+02, 2.93119140625e+02, 2.931200561523438e+02, 2.931208801269531e+02, 2.931216735839844e+02, 2.931224365234375e+02, 2.931231384277344e+02, 2.931238098144531e+02, 2.931244506835938e+02, 2.931250610351562e+02, 2.931256713867188e+02, 2.93126220703125e+02, 2.931267395019531e+02, 2.931272583007812e+02, 2.931277465820312e+02, 2.931282043457031e+02, 2.93128662109375e+02, 2.931290893554688e+02, 2.931294860839844e+02, 2.931298828125e+02, 2.931302795410156e+02, 2.931306457519531e+02, 2.931310119628906e+02, 2.9313134765625e+02, 2.931316833496094e+02, 2.931319885253906e+02, 2.931322937011719e+02, 2.931325988769531e+02, 2.931328735351562e+02, 2.931331481933594e+02, 2.931334228515625e+02, 2.931336975097656e+02, 2.931339416503906e+02, 2.931341857910156e+02, 2.931344299316406e+02, 2.931346435546875e+02, 2.931348876953125e+02, 2.931351013183594e+02, 2.931353149414062e+02, 2.93135498046875e+02, 2.931357116699219e+02, 2.931358947753906e+02, 2.931360778808594e+02, 2.931362609863281e+02, 2.931364440917969e+02, 2.931366271972656e+02, 2.931368103027344e+02, 2.93136962890625e+02, 2.931371154785156e+02, 2.931372680664062e+02, 2.931374206542969e+02, 2.931375732421875e+02, 2.931377258300781e+02, 2.931378784179688e+02, 2.931380004882812e+02, 2.931381530761719e+02, 2.931382751464844e+02, 2.93138427734375e+02, 2.931385498046875e+02, 2.93138671875e+02, 2.931387939453125e+02, 2.93138916015625e+02, 2.931390380859375e+02, 2.931391296386719e+02, 2.931392517089844e+02, 2.931393737792969e+02, 2.931394653320312e+02, 2.931395874023438e+02, 2.931396789550781e+02] +bouB.T=[2.941499938964844e+02, 2.93705322265625e+02, 2.935207214355469e+02, 2.934257507324219e+02, 2.933688659667969e+02, 2.933312072753906e+02, 2.933045349121094e+02, 2.932846374511719e+02, 2.932692565917969e+02, 2.932570495605469e+02, 2.932470703125e+02, 2.932388000488281e+02, 2.932318115234375e+02, 2.932258605957031e+02, 2.93220703125e+02, 2.932162170410156e+02, 2.932122497558594e+02, 2.93208740234375e+02, 2.932055969238281e+02, 2.932027587890625e+02, 2.932002258300781e+02, 2.931979064941406e+02, 2.9319580078125e+02, 2.931938781738281e+02, 2.931920776367188e+02, 2.931904602050781e+02, 2.931889343261719e+02, 2.931875305175781e+02, 2.931862182617188e+02, 2.931849975585938e+02, 2.931838684082031e+02, 2.931828002929688e+02, 2.931817932128906e+02, 2.931808471679688e+02, 2.931799621582031e+02, 2.931791076660156e+02, 2.931783142089844e+02, 2.931775817871094e+02, 2.931768493652344e+02, 2.931761779785156e+02, 2.93175537109375e+02, 2.931749267578125e+02, 2.931743469238281e+02, 2.931737976074219e+02, 2.931732482910156e+02, 2.931727294921875e+02, 2.931722412109375e+02, 2.931717834472656e+02, 2.931713562011719e+02, 2.931708984375e+02, 2.931705017089844e+02, 2.931701049804688e+02, 2.931697082519531e+02, 2.931693420410156e+02, 2.931690063476562e+02, 2.931686706542969e+02, 2.931683349609375e+02, 2.931679992675781e+02, 2.931676940917969e+02, 2.931674194335938e+02, 2.931671142578125e+02, 2.931668395996094e+02, 2.931665649414062e+02, 2.931663208007812e+02, 2.931660766601562e+02, 2.931658325195312e+02, 2.931655883789062e+02, 2.931653442382812e+02, 2.931651306152344e+02, 2.931649169921875e+02, 2.931647033691406e+02, 2.931644897460938e+02, 2.93164306640625e+02, 2.931640930175781e+02, 2.931639099121094e+02, 2.931637268066406e+02, 2.931635437011719e+02, 2.931633605957031e+02, 2.931632080078125e+02, 2.931630249023438e+02, 2.931628723144531e+02, 2.931627197265625e+02, 2.931625671386719e+02, 2.931624145507812e+02, 2.931622619628906e+02, 2.931621398925781e+02, 2.931619873046875e+02, 2.931618347167969e+02, 2.931617126464844e+02, 2.931615905761719e+02, 2.931614685058594e+02, 2.931613464355469e+02, 2.931612243652344e+02, 2.931611022949219e+02, 2.931609802246094e+02, 2.931608581542969e+02, 2.931607360839844e+02, 2.9316064453125e+02, 2.931605224609375e+02, 2.931604309082031e+02, 2.931603088378906e+02] doo.port_a1.p=[1.01325e+05, 1.01325e+05] doo.port_a2.p=[1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Validation_OpenDoorBuoyancyPressureDynamic.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Validation_OpenDoorBuoyancyPressureDynamic.txt index e16873df82..895bd390cb 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Validation_OpenDoorBuoyancyPressureDynamic.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Validation_OpenDoorBuoyancyPressureDynamic.txt @@ -1,4 +1,4 @@ -last-generated=2021-01-25 +last-generated=2022-05-18 statistics-simulation= { "linear": " ", @@ -7,13 +7,13 @@ statistics-simulation= "numerical Jacobians": "0" } time=[0e+00, 1.44e+04] -doo.vAB=[1.876388430595398e+00, 5.529473721981049e-02, 3.910126909613609e-02, 2.970257960259914e-02, 2.380389720201492e-02, 1.981072872877121e-02, 1.694450527429581e-02, 1.479324884712696e-02, 1.312171947211027e-02, 1.178676262497902e-02, 1.06967194005847e-02, 9.790188632905483e-03, 9.024634957313538e-03, 8.369671180844307e-03, 7.80302658677101e-03, 7.308023981750011e-03, 6.871913094073534e-03, 6.484804209321737e-03, 6.138890516012907e-03, 5.827941931784153e-03, 5.546926520764828e-03, 5.291721317917109e-03, 5.058933049440384e-03, 4.845737013965845e-03, 4.649761598557234e-03, 4.469003994017839e-03, 4.301760345697403e-03, 4.146569874137639e-03, 4.002177622169255e-03, 3.867494175210595e-03, 3.741573542356491e-03, 3.623588010668755e-03, 3.512810915708542e-03, 3.408601740375161e-03, 3.310393309220672e-03, 3.217682475224137e-03, 3.13002010807395e-03, 3.047005040571094e-03, 2.968278015032411e-03, 2.893515629693866e-03, 2.822424983605742e-03, 2.754742512479424e-03, 2.690228167921305e-03, 2.62866448611021e-03, 2.569854725152254e-03, 2.513617509976029e-03, 2.459788462147117e-03, 2.40821554325521e-03, 2.358759986236691e-03, 2.311293967068195e-03, 2.26570013910532e-03, 2.221870003268123e-03, 2.179703209549189e-03, 2.1391068585217e-03, 2.099994802847504e-03, 2.062286948785185e-03, 2.025908790528774e-03, 1.990791643038392e-03, 1.956871012225747e-03, 1.924086711369455e-03, 1.892382279038429e-03, 1.861706026829779e-03, 1.832008012570441e-03, 1.803242485038936e-03, 1.775366021320224e-03, 1.74833822529763e-03, 1.722121029160917e-03, 1.696678227744997e-03, 1.671976293437183e-03, 1.647982746362686e-03, 1.624668249860406e-03, 1.602003583684564e-03, 1.579962903633714e-03, 1.558520132675767e-03, 1.537651405669749e-03, 1.517334138043225e-03, 1.497547025792301e-03, 1.478269230574369e-03, 1.459481427446008e-03, 1.441164989955723e-03, 1.423302805051208e-03, 1.405877876095474e-03, 1.388874254189432e-03, 1.372276921756566e-03, 1.356071792542934e-03, 1.340244896709919e-03, 1.324782962910831e-03, 1.309673767536879e-03, 1.294905319809914e-03, 1.280466211028397e-03, 1.266345498152077e-03, 1.252532820217311e-03, 1.239018165506423e-03, 1.225791987963021e-03, 1.212845207192004e-03, 1.200169092044234e-03, 1.187755144201219e-03, 1.175595331005752e-03, 1.163682085461915e-03, 1.152007724158466e-03, 1.140565262176096e-03] -doo.vBA=[0e+00, 5.529473721981049e-02, 3.910126909613609e-02, 2.970257960259914e-02, 2.380389720201492e-02, 1.981072872877121e-02, 1.694450527429581e-02, 1.479324884712696e-02, 1.312172040343285e-02, 1.178676262497902e-02, 1.06967194005847e-02, 9.790188632905483e-03, 9.024634957313538e-03, 8.369671180844307e-03, 7.80302658677101e-03, 7.308024447411299e-03, 6.871913094073534e-03, 6.484804209321737e-03, 6.138891912996769e-03, 5.827941931784153e-03, 5.54692605510354e-03, 5.291721317917109e-03, 5.058933049440384e-03, 4.845737013965845e-03, 4.649761598557234e-03, 4.469003994017839e-03, 4.301759880036116e-03, 4.146569874137639e-03, 4.002177622169255e-03, 3.867494175210595e-03, 3.741573542356491e-03, 3.623588010668755e-03, 3.512810915708542e-03, 3.408601507544518e-03, 3.310393309220672e-03, 3.217682475224137e-03, 3.13002010807395e-03, 3.047005040571094e-03, 2.968278015032411e-03, 2.893515396863222e-03, 2.822425216436386e-03, 2.754742512479424e-03, 2.690227935090661e-03, 2.62866448611021e-03, 2.56985449232161e-03, 2.513617509976029e-03, 2.459788462147117e-03, 2.40821554325521e-03, 2.358759986236691e-03, 2.311293967068195e-03, 2.26570013910532e-03, 2.221870003268123e-03, 2.179703209549189e-03, 2.1391068585217e-03, 2.099994802847504e-03, 2.062286948785185e-03, 2.025908790528774e-03, 1.990791643038392e-03, 1.956871012225747e-03, 1.924086711369455e-03, 1.892382628284395e-03, 1.861706026829779e-03, 1.832008012570441e-03, 1.803242252208292e-03, 1.775366021320224e-03, 1.74833822529763e-03, 1.722120912745595e-03, 1.696678111329675e-03, 1.671976060606539e-03, 1.647982746362686e-03, 1.624668249860406e-03, 1.602003932930529e-03, 1.579962903633714e-03, 1.558519899845123e-03, 1.537651405669749e-03, 1.51733448728919e-03, 1.497547025792301e-03, 1.478269230574369e-03, 1.459481427446008e-03, 1.441165339201689e-03, 1.423302805051208e-03, 1.405877876095474e-03, 1.388874254189432e-03, 1.372277271002531e-03, 1.356071792542934e-03, 1.340244896709919e-03, 1.324782962910831e-03, 1.309673767536879e-03, 1.294905319809914e-03, 1.280466211028397e-03, 1.266345498152077e-03, 1.252532820217311e-03, 1.239018165506423e-03, 1.225791987963021e-03, 1.212845207192004e-03, 1.200169092044234e-03, 1.187755144201219e-03, 1.175595331005752e-03, 1.163681969046593e-03, 1.152007607743144e-03, 1.140564912930131e-03] -dooDis.vAB=[1.880900979042053e+00, 5.975151807069778e-02, 4.68953475356102e-02, 3.838159143924713e-02, 3.223228082060814e-02, 2.752139233052731e-02, 2.375267259776592e-02, 2.065540850162506e-02, 1.809901744127274e-02, 1.600105129182339e-02, 1.427508611232042e-02, 1.284789945930243e-02, 1.165811810642481e-02, 1.065468974411488e-02, 9.801148436963556e-03, 9.067862294614315e-03, 8.432281203567982e-03, 7.876892574131489e-03, 7.387927267700434e-03, 6.954491604119539e-03, 6.567902863025665e-03, 6.221112795174122e-03, 5.908406805247068e-03, 5.625088233500719e-03, 5.36726787686348e-03, 5.131704732775688e-03, 4.915674682706594e-03, 4.716875031590461e-03, 4.533357452601194e-03, 4.363429266959429e-03, 4.205668345093727e-03, 4.058857448399067e-03, 3.921851515769958e-03, 3.793579991906881e-03, 3.673521336168051e-03, 3.560716984793544e-03, 3.454592544585466e-03, 3.354579443112016e-03, 3.260163124650717e-03, 3.170887706801295e-03, 3.086346434429288e-03, 3.006173530593514e-03, 2.930039772763848e-03, 2.857649233192205e-03, 2.788734156638384e-03, 2.723051235079765e-03, 2.660379279404879e-03, 2.60051665827632e-03, 2.543278504163027e-03, 2.488496713340282e-03, 2.436014590784907e-03, 2.385680098086596e-03, 2.337356563657522e-03, 2.290919655933976e-03, 2.246255753561854e-03, 2.203263808041811e-03, 2.161849057301878e-03, 2.121926052495837e-03, 2.083415631204844e-03, 2.046243287622929e-03, 2.010342199355364e-03, 1.975647872313857e-03, 1.94210116751492e-03, 1.909648301079869e-03, 1.878235954791307e-03, 1.847816864028573e-03, 1.818345859646797e-03, 1.789778936654329e-03, 1.762077561579645e-03, 1.735202618874609e-03, 1.709119300357997e-03, 1.683793030679226e-03, 1.659193309023976e-03, 1.635289285331964e-03, 1.612052787095308e-03, 1.589456922374666e-03, 1.567476545460522e-03, 1.546086859889328e-03, 1.525265164673328e-03, 1.504989340901375e-03, 1.485238899476826e-03, 1.465994166210294e-03, 1.447235816158354e-03, 1.428946736268699e-03, 1.411108998581767e-03, 1.393707236275077e-03, 1.376725500449538e-03, 1.360149006359279e-03, 1.343964016996324e-03, 1.328156795352697e-03, 1.312714535742998e-03, 1.297625014558434e-03, 1.28287635743618e-03, 1.268457272090018e-03, 1.254357048310339e-03, 1.240565325133502e-03, 1.227072207257152e-03, 1.213868497870862e-03, 1.200944767333567e-03, 1.188292517326772e-03, 1.175903016701341e-03] -dooDis.vBA=[-0e+00, 5.997490510344505e-02, 4.700437188148499e-02, 3.844550251960754e-02, 3.227068483829498e-02, 2.754724584519863e-02, 2.377376332879066e-02, 2.066727541387081e-02, 1.810834184288979e-02, 1.600653119385242e-02, 1.428088638931513e-02, 1.285345107316971e-02, 1.166158448904753e-02, 1.065774727612734e-02, 9.803696535527704e-03, 9.070034138858318e-03, 8.434153161942959e-03, 7.878521457314491e-03, 7.389356382191181e-03, 6.955756805837154e-03, 6.56902976334095e-03, 6.222122814506292e-03, 5.909316707402468e-03, 5.625913385301828e-03, 5.368019919842482e-03, 5.132395308464766e-03, 4.916313104331493e-03, 4.71747014671564e-03, 4.533896688371896e-03, 4.363927058875561e-03, 4.206139128655195e-03, 4.059180617332458e-03, 3.922068513929844e-03, 3.79397114738822e-03, 3.673818428069353e-03, 3.561022458598018e-03, 3.454896854236722e-03, 3.35487094707787e-03, 3.260438097640872e-03, 3.171147778630257e-03, 3.08659253641963e-03, 3.006407292559743e-03, 2.930261893197894e-03, 2.857860177755356e-03, 2.788935089483857e-03, 2.723242854699492e-03, 2.660562284290791e-03, 2.600691048428416e-03, 2.54344567656517e-03, 2.48865713365376e-03, 2.436168026179075e-03, 2.385827712714672e-03, 2.337497659027576e-03, 2.291054930537939e-03, 2.246386371552944e-03, 2.203389070928096e-03, 2.161969896405935e-03, 2.122042700648308e-03, 2.083527389913797e-03, 2.046351786702871e-03, 2.010446274653077e-03, 1.975748222321272e-03, 1.942198956385255e-03, 1.90974201541394e-03, 1.87832722440362e-03, 1.847905456088483e-03, 1.818430959247053e-03, 1.789862173609436e-03, 1.762157888151705e-03, 1.735280733555555e-03, 1.709194970317185e-03, 1.683866954408586e-03, 1.659264671616256e-03, 1.635358552448452e-03, 1.612120191566646e-03, 1.589522464200854e-03, 1.56754010822624e-03, 1.546148676425219e-03, 1.525325351394713e-03, 1.505048130638897e-03, 1.485296175815165e-03, 1.466049696318805e-03, 1.447290182113647e-03, 1.428999355994165e-03, 1.411160686984658e-03, 1.393757527694106e-03, 1.376774627715349e-03, 1.360197318717837e-03, 1.344011048786342e-03, 1.328202779404819e-03, 1.312759472057223e-03, 1.297668903134763e-03, 1.282919081859291e-03, 1.268499065190554e-03, 1.254397910088301e-03, 1.240605372004211e-03, 1.227111555635929e-03, 1.213906914927065e-03, 1.200982369482517e-03, 1.188329188153148e-03, 1.175938989035785e-03] +doo.vAB=[1.876388430595398e+00, 5.529472976922989e-02, 3.910127282142639e-02, 2.970258519053459e-02, 2.380390465259552e-02, 1.981071010231972e-02, 1.694449223577976e-02, 1.479324139654636e-02, 1.312171202152967e-02, 1.178678777068853e-02, 1.069673988968134e-02, 9.790206328034401e-03, 9.024649858474731e-03, 8.369684219360352e-03, 7.80304055660963e-03, 7.30803469195962e-03, 6.871925201267004e-03, 6.484814919531345e-03, 6.13890215754509e-03, 5.827957298606634e-03, 5.54694002494216e-03, 5.291734356433153e-03, 5.058946087956429e-03, 4.845749586820602e-03, 4.649775102734566e-03, 4.469016101211309e-03, 4.301770590245724e-03, 4.146578721702098e-03, 4.002185072749852e-03, 3.867501858621836e-03, 3.741582855582237e-03, 3.623598953709006e-03, 3.512821393087506e-03, 3.408611053600907e-03, 3.310402389615774e-03, 3.217691322788596e-03, 3.130028489977121e-03, 3.047012956812978e-03, 2.96828499995172e-03, 2.893521217629313e-03, 2.822430105879903e-03, 2.754746936261654e-03, 2.69023235887289e-03, 2.628669375553727e-03, 2.569859381765127e-03, 2.513622399419546e-03, 2.459793351590633e-03, 2.408220432698727e-03, 2.358765341341496e-03, 2.311299787834287e-03, 2.265706425532699e-03, 2.221876289695501e-03, 2.179709263145924e-03, 2.139112679287791e-03, 2.100000390782952e-03, 2.062292303889989e-03, 2.025914145633578e-03, 1.990796765312552e-03, 1.956875901669264e-03, 1.924091367982328e-03, 1.892387168481946e-03, 1.861710217781365e-03, 1.832012203522027e-03, 1.8032465595752e-03, 1.7753696301952e-03, 1.74834206700325e-03, 1.722124638035893e-03, 1.696681720204651e-03, 1.671979669481516e-03, 1.647986355237663e-03, 1.624671742320061e-03, 1.602007541805506e-03, 1.579966978169978e-03, 1.558524440042675e-03, 1.537656178697944e-03, 1.517339493148029e-03, 1.497552264481783e-03, 1.478274236433208e-03, 1.459486782550812e-03, 1.441170345060527e-03, 1.42330804374069e-03, 1.405883231200278e-03, 1.38887926004827e-03, 1.372282509692013e-03, 1.356076914817095e-03, 1.340250135399401e-03, 1.32478796876967e-03, 1.309678889811039e-03, 1.294910442084074e-03, 1.280471216887236e-03, 1.266350504010916e-03, 1.252537942491472e-03, 1.239023054949939e-03, 1.225796877406538e-03, 1.21285009663552e-03, 1.200173632241786e-03, 1.18775968439877e-03, 1.175600104033947e-03, 1.163686625659466e-03, 1.152012264356017e-03, 1.140569802373648e-03] +doo.vBA=[0e+00, 5.529472976922989e-02, 3.910127282142639e-02, 2.970258519053459e-02, 2.380390465259552e-02, 1.981071010231972e-02, 1.694449223577976e-02, 1.479324139654636e-02, 1.312171202152967e-02, 1.178678777068853e-02, 1.069673988968134e-02, 9.790206328034401e-03, 9.024649858474731e-03, 8.369684219360352e-03, 7.80304055660963e-03, 7.30803469195962e-03, 6.871925201267004e-03, 6.484814453870058e-03, 6.13890215754509e-03, 5.827957298606634e-03, 5.54694002494216e-03, 5.291734356433153e-03, 5.058945622295141e-03, 4.845749586820602e-03, 4.649775102734566e-03, 4.469016101211309e-03, 4.301770590245724e-03, 4.146578721702098e-03, 4.002185072749852e-03, 3.867501858621836e-03, 3.741582855582237e-03, 3.623598953709006e-03, 3.512821393087506e-03, 3.408611053600907e-03, 3.310402389615774e-03, 3.217691322788596e-03, 3.130028489977121e-03, 3.047012723982334e-03, 2.968284767121077e-03, 2.89352098479867e-03, 2.822429640218616e-03, 2.75474670343101e-03, 2.690232126042247e-03, 2.628669142723083e-03, 2.569859381765127e-03, 2.513622399419546e-03, 2.45979311875999e-03, 2.40822066552937e-03, 2.358765341341496e-03, 2.311299787834287e-03, 2.265706425532699e-03, 2.221876289695501e-03, 2.179709495976567e-03, 2.139112912118435e-03, 2.100000390782952e-03, 2.062292303889989e-03, 2.025913912802934e-03, 1.990796532481909e-03, 1.956875901669264e-03, 1.924091251567006e-03, 1.892386819235981e-03, 1.861710217781365e-03, 1.832012087106705e-03, 1.803246326744556e-03, 1.775370095856488e-03, 1.748341834172606e-03, 1.72212440520525e-03, 1.696681720204651e-03, 1.671979553066194e-03, 1.647986355237663e-03, 1.624671742320061e-03, 1.602007541805506e-03, 1.579966978169978e-03, 1.558524440042675e-03, 1.537656178697944e-03, 1.517339143902063e-03, 1.497552031651139e-03, 1.478274585679173e-03, 1.459486549720168e-03, 1.441170345060527e-03, 1.42330804374069e-03, 1.405882881954312e-03, 1.388879842124879e-03, 1.37228227686137e-03, 1.35607726406306e-03, 1.340249902568758e-03, 1.324788318015635e-03, 1.309678889811039e-03, 1.294910325668752e-03, 1.280471216887236e-03, 1.266350504010916e-03, 1.252537593245506e-03, 1.239023054949939e-03, 1.225796877406538e-03, 1.212849980220199e-03, 1.200173981487751e-03, 1.187760033644736e-03, 1.175599871203303e-03, 1.163686625659466e-03, 1.152012264356017e-03, 1.140569685958326e-03] +dooDis.vAB=[1.880900979042053e+00, 5.975164100527763e-02, 4.689440876245499e-02, 3.838216885924339e-02, 3.223216161131859e-02, 2.752160653471947e-02, 2.375378273427486e-02, 2.065514586865902e-02, 1.809907704591751e-02, 1.599968038499355e-02, 1.427531335502863e-02, 1.284890249371529e-02, 1.165568828582764e-02, 1.065508462488651e-02, 9.80131048709154e-03, 9.068005718290806e-03, 8.432406932115555e-03, 7.876988500356674e-03, 7.388060446828604e-03, 6.954598240554333e-03, 6.567992269992828e-03, 6.221194285899401e-03, 5.908485036343336e-03, 5.625159945338964e-03, 5.367338191717863e-03, 5.131770391017199e-03, 4.915737081319094e-03, 4.716935101896524e-03, 4.533409141004085e-03, 4.363483283668756e-03, 4.205715842545033e-03, 4.058856517076492e-03, 3.921817522495985e-03, 3.793656360358e-03, 3.673545783385634e-03, 3.560754936188459e-03, 3.454637713730335e-03, 3.354623448103666e-03, 3.260203171521425e-03, 3.170923097059131e-03, 3.086377400904894e-03, 3.006201470270753e-03, 2.930066315457225e-03, 2.857675077393651e-03, 2.788759069517255e-03, 2.723075682297349e-03, 2.660402795299888e-03, 2.60053901001811e-03, 2.543301321566105e-03, 2.488519530743361e-03, 2.436036942526698e-03, 2.385703148320317e-03, 2.337377751246095e-03, 2.290939446538687e-03, 2.246275776997208e-03, 2.203281736001372e-03, 2.16186698526144e-03, 2.121944446116686e-03, 2.083431230857968e-03, 2.046259818598628e-03, 2.01035849750042e-03, 1.975660677999258e-03, 1.942116650752723e-03, 1.909662852995098e-03, 1.878246199339628e-03, 1.84782943688333e-03, 1.818357850424945e-03, 1.789790228940547e-03, 1.762090949341655e-03, 1.735214260406792e-03, 1.709129312075675e-03, 1.683805836364627e-03, 1.659202855080366e-03, 1.635299413464963e-03, 1.612066989764571e-03, 1.589466584846377e-03, 1.567488186992705e-03, 1.546101993881166e-03, 1.525271800346673e-03, 1.505002612248063e-03, 1.48525380063802e-03, 1.465994399040937e-03, 1.447247923351824e-03, 1.428951974958181e-03, 1.411120058037341e-03, 1.39371445402503e-03, 1.376735046505928e-03, 1.360158086754382e-03, 1.343972282484174e-03, 1.328165642917156e-03, 1.312723034061491e-03, 1.297632697969675e-03, 1.282884506508708e-03, 1.268465304747224e-03, 1.254364498890936e-03, 1.240573008544743e-03, 1.227079890668392e-03, 1.213875482790172e-03, 1.200952101498842e-03, 1.188299502246082e-03, 1.175909885205328e-03] +dooDis.vBA=[-0e+00, 5.997477471828461e-02, 4.700497910380363e-02, 3.844476491212845e-02, 3.227077797055244e-02, 2.754698880016804e-02, 2.377278357744217e-02, 2.066776156425476e-02, 1.810841076076031e-02, 1.600814238190651e-02, 1.428083796054125e-02, 1.28525560721755e-02, 1.166392024606466e-02, 1.0657730512321e-02, 9.803866036236284e-03, 9.070166386663914e-03, 8.434278890490532e-03, 7.878643460571766e-03, 7.389419246464968e-03, 6.955857388675213e-03, 6.569120567291975e-03, 6.222206633538008e-03, 5.90939074754715e-03, 5.625983234494925e-03, 5.368086975067854e-03, 5.132454447448254e-03, 4.916364327073097e-03, 4.717512056231498e-03, 4.533941857516765e-03, 4.363976884633303e-03, 4.206174053251743e-03, 4.059283528476954e-03, 3.92221612855792e-03, 3.794028889387846e-03, 3.673895262181759e-03, 3.561082994565368e-03, 3.454946679994464e-03, 3.354914719238877e-03, 3.260478610172868e-03, 3.17118433304131e-03, 3.086625598371029e-03, 3.006436163559556e-03, 2.930288668721914e-03, 2.857886254787445e-03, 2.788960468024015e-03, 2.723267069086432e-03, 2.6605858001858e-03, 2.600714331492782e-03, 2.543467795476317e-03, 2.488679485395551e-03, 2.436190843582153e-03, 2.385849133133888e-03, 2.337519312277436e-03, 2.291075652465224e-03, 2.246404998004436e-03, 2.203407930210232e-03, 2.161987824365496e-03, 2.122058998793364e-03, 2.083545085042715e-03, 2.046367386355996e-03, 2.010460710152984e-03, 1.975764520466328e-03, 1.942212111316621e-03, 1.909754937514663e-03, 1.878342474810779e-03, 1.847916748374701e-03, 1.818441669456661e-03, 1.789873465895653e-03, 1.76216836553067e-03, 1.735293189994991e-03, 1.709208474494517e-03, 1.68387743178755e-03, 1.659276778809726e-03, 1.635370193980634e-03, 1.612129504792392e-03, 1.589536317624152e-03, 1.567552448250353e-03, 1.546157640404999e-03, 1.525339786894619e-03, 1.505056396126747e-03, 1.485302578657866e-03, 1.466066110879183e-03, 1.44729227758944e-03, 1.42900797072798e-03, 1.411166391335428e-03, 1.393768121488392e-03, 1.376782194711268e-03, 1.360205351375043e-03, 1.344020012766123e-03, 1.328210812062025e-03, 1.312767388299108e-03, 1.297677285037935e-03, 1.282926765270531e-03, 1.268506632186472e-03, 1.254405709914863e-03, 1.240612706169486e-03, 1.227118773385882e-03, 1.213914365507662e-03, 1.200989354401827e-03, 1.188336173072457e-03, 1.17594632320106e-03] bouA.T=[2.921499938964844e+02, 2.925960083007812e+02, 2.927809753417969e+02, 2.928760986328125e+02, 2.929330444335938e+02, 2.929707336425781e+02, 2.929974670410156e+02, 2.930173645019531e+02, 2.930327453613281e+02, 2.930449829101562e+02, 2.930549621582031e+02, 2.93063232421875e+02, 2.930702209472656e+02, 2.93076171875e+02, 2.930813293457031e+02, 2.930858459472656e+02, 2.930897827148438e+02, 2.930933227539062e+02, 2.930964660644531e+02, 2.930992736816406e+02, 2.931018371582031e+02, 2.931041259765625e+02, 2.931062622070312e+02, 2.931081848144531e+02, 2.931099548339844e+02, 2.931116027832031e+02, 2.931130981445312e+02, 2.931145324707031e+02, 2.931158142089844e+02, 2.931170349121094e+02, 2.931181945800781e+02, 2.931192626953125e+02, 2.931202697753906e+02, 2.931212158203125e+02, 2.931221008300781e+02, 2.931229248046875e+02, 2.931237182617188e+02, 2.931244812011719e+02, 2.931251831054688e+02, 2.931258544921875e+02, 2.931264953613281e+02, 2.931271362304688e+02, 2.931277160644531e+02, 2.931282653808594e+02, 2.931287841796875e+02, 2.931293029785156e+02, 2.931297912597656e+02, 2.931302490234375e+02, 2.931307067871094e+02, 2.931311340332031e+02, 2.931315612792969e+02, 2.931319580078125e+02, 2.9313232421875e+02, 2.931326904296875e+02, 2.93133056640625e+02, 2.931333923339844e+02, 2.931337280273438e+02, 2.93134033203125e+02, 2.931343383789062e+02, 2.931346435546875e+02, 2.931349182128906e+02, 2.931351928710938e+02, 2.931354675292969e+02, 2.931357421875e+02, 2.93135986328125e+02, 2.9313623046875e+02, 2.93136474609375e+02, 2.931366882324219e+02, 2.931369323730469e+02, 2.931371459960938e+02, 2.931373596191406e+02, 2.931375427246094e+02, 2.931377563476562e+02, 2.93137939453125e+02, 2.931381530761719e+02, 2.931383361816406e+02, 2.931384887695312e+02, 2.93138671875e+02, 2.931388549804688e+02, 2.931390075683594e+02, 2.9313916015625e+02, 2.931393432617188e+02, 2.931394958496094e+02, 2.931396484375e+02, 2.931397705078125e+02, 2.931399230957031e+02, 2.931400756835938e+02, 2.931401977539062e+02, 2.931403503417969e+02, 2.931404724121094e+02, 2.931405944824219e+02, 2.931407165527344e+02, 2.931408386230469e+02, 2.931409606933594e+02, 2.931410827636719e+02, 2.931412048339844e+02, 2.931412963867188e+02, 2.931414184570312e+02, 2.931415100097656e+02, 2.931416320800781e+02, 2.931417236328125e+02] bouB.T=[2.941499938964844e+02, 2.937080993652344e+02, 2.935231323242188e+02, 2.934280090332031e+02, 2.933710632324219e+02, 2.933333435058594e+02, 2.93306640625e+02, 2.932867431640625e+02, 2.932713623046875e+02, 2.932591247558594e+02, 2.932491455078125e+02, 2.932408752441406e+02, 2.9323388671875e+02, 2.932279357910156e+02, 2.932227783203125e+02, 2.9321826171875e+02, 2.932142944335938e+02, 2.932107849121094e+02, 2.932076416015625e+02, 2.93204833984375e+02, 2.932022705078125e+02, 2.93199951171875e+02, 2.931978454589844e+02, 2.931959228515625e+02, 2.931941528320312e+02, 2.931925048828125e+02, 2.931909790039062e+02, 2.931895751953125e+02, 2.931882629394531e+02, 2.931870422363281e+02, 2.931859130859375e+02, 2.931848449707031e+02, 2.93183837890625e+02, 2.931828918457031e+02, 2.931820068359375e+02, 2.931811828613281e+02, 2.931803894042969e+02, 2.931796264648438e+02, 2.931789245605469e+02, 2.9317822265625e+02, 2.931775817871094e+02, 2.931769714355469e+02, 2.931763916015625e+02, 2.931758422851562e+02, 2.9317529296875e+02, 2.931748046875e+02, 2.9317431640625e+02, 2.93173828125e+02, 2.931734008789062e+02, 2.931729736328125e+02, 2.931725463867188e+02, 2.931721496582031e+02, 2.931717834472656e+02, 2.931714172363281e+02, 2.931710510253906e+02, 2.931707153320312e+02, 2.931703796386719e+02, 2.931700744628906e+02, 2.931697692871094e+02, 2.931694641113281e+02, 2.931691589355469e+02, 2.931688842773438e+02, 2.931686401367188e+02, 2.931683654785156e+02, 2.931681213378906e+02, 2.931678771972656e+02, 2.931676330566406e+02, 2.931673889160156e+02, 2.931671752929688e+02, 2.931669616699219e+02, 2.93166748046875e+02, 2.931665344238281e+02, 2.931663513183594e+02, 2.931661376953125e+02, 2.931659545898438e+02, 2.93165771484375e+02, 2.931655883789062e+02, 2.931654357910156e+02, 2.931652526855469e+02, 2.931651000976562e+02, 2.931649169921875e+02, 2.931647644042969e+02, 2.931646118164062e+02, 2.931644592285156e+02, 2.93164306640625e+02, 2.931641845703125e+02, 2.931640319824219e+02, 2.931639099121094e+02, 2.931637573242188e+02, 2.931636352539062e+02, 2.931635131835938e+02, 2.931633911132812e+02, 2.931632690429688e+02, 2.931631469726562e+02, 2.931630249023438e+02, 2.931629028320312e+02, 2.931628112792969e+02, 2.931626892089844e+02, 2.931625671386719e+02, 2.931624755859375e+02, 2.931623840332031e+02] -bouADis.T=[2.921499938964844e+02, 2.926053466796875e+02, 2.928067321777344e+02, 2.929131774902344e+02, 2.9297607421875e+02, 2.930162048339844e+02, 2.930432739257812e+02, 2.930623168945312e+02, 2.930762023925781e+02, 2.930866088867188e+02, 2.930946655273438e+02, 2.931010437011719e+02, 2.931061706542969e+02, 2.931104125976562e+02, 2.931139526367188e+02, 2.93116943359375e+02, 2.931195068359375e+02, 2.931217346191406e+02, 2.931236877441406e+02, 2.931253967285156e+02, 2.931268920898438e+02, 2.931282653808594e+02, 2.931294860839844e+02, 2.931305847167969e+02, 2.93131591796875e+02, 2.931325073242188e+02, 2.931333312988281e+02, 2.931340942382812e+02, 2.931347961425781e+02, 2.931354675292969e+02, 2.931360473632812e+02, 2.931366271972656e+02, 2.931371459960938e+02, 2.931376342773438e+02, 2.931380920410156e+02, 2.931385192871094e+02, 2.931389465332031e+02, 2.931393127441406e+02, 2.931396789550781e+02, 2.931400146484375e+02, 2.931403503417969e+02, 2.931406555175781e+02, 2.931409301757812e+02, 2.931412048339844e+02, 2.931414794921875e+02, 2.931417236328125e+02, 2.931419677734375e+02, 2.931421813964844e+02, 2.931423950195312e+02, 2.931426086425781e+02, 2.93142822265625e+02, 2.931430053710938e+02, 2.931431884765625e+02, 2.931433715820312e+02, 2.931435241699219e+02, 2.931437072753906e+02, 2.931438598632812e+02, 2.931440124511719e+02, 2.931441345214844e+02, 2.93144287109375e+02, 2.931444396972656e+02, 2.931445617675781e+02, 2.931446838378906e+02, 2.931448059082031e+02, 2.931449279785156e+02, 2.931450500488281e+02, 2.931451416015625e+02, 2.93145263671875e+02, 2.931453552246094e+02, 2.931454467773438e+02, 2.931455688476562e+02, 2.931456604003906e+02, 2.93145751953125e+02, 2.931458435058594e+02, 2.931459045410156e+02, 2.9314599609375e+02, 2.931460876464844e+02, 2.931461791992188e+02, 2.93146240234375e+02, 2.931463317871094e+02, 2.931463928222656e+02, 2.931464538574219e+02, 2.931465454101562e+02, 2.931466064453125e+02, 2.931466674804688e+02, 2.93146728515625e+02, 2.931467895507812e+02, 2.931468505859375e+02, 2.931469116210938e+02, 2.9314697265625e+02, 2.931470336914062e+02, 2.931470947265625e+02, 2.931471557617188e+02, 2.93147216796875e+02, 2.931472473144531e+02, 2.931473083496094e+02, 2.931473693847656e+02, 2.931473999023438e+02, 2.931474609375e+02, 2.931474914550781e+02, 2.931475524902344e+02] +bouADis.T=[2.921499938964844e+02, 2.926053466796875e+02, 2.928067626953125e+02, 2.929131774902344e+02, 2.9297607421875e+02, 2.930162048339844e+02, 2.930432739257812e+02, 2.930623168945312e+02, 2.930762023925781e+02, 2.930866088867188e+02, 2.930946655273438e+02, 2.931010437011719e+02, 2.931061706542969e+02, 2.931104125976562e+02, 2.931139526367188e+02, 2.93116943359375e+02, 2.931195068359375e+02, 2.931217346191406e+02, 2.931236877441406e+02, 2.931253967285156e+02, 2.931268920898438e+02, 2.931282653808594e+02, 2.931294860839844e+02, 2.931305847167969e+02, 2.93131591796875e+02, 2.931325073242188e+02, 2.931333312988281e+02, 2.931340942382812e+02, 2.931347961425781e+02, 2.931354675292969e+02, 2.931360473632812e+02, 2.931366271972656e+02, 2.931371459960938e+02, 2.931376342773438e+02, 2.931380920410156e+02, 2.931385192871094e+02, 2.931389465332031e+02, 2.931393127441406e+02, 2.931396789550781e+02, 2.931400146484375e+02, 2.931403503417969e+02, 2.931406555175781e+02, 2.931409301757812e+02, 2.931412048339844e+02, 2.931414794921875e+02, 2.931417236328125e+02, 2.931419677734375e+02, 2.931421813964844e+02, 2.931423950195312e+02, 2.931426086425781e+02, 2.93142822265625e+02, 2.931430053710938e+02, 2.931431884765625e+02, 2.931433715820312e+02, 2.931435241699219e+02, 2.931437072753906e+02, 2.931438598632812e+02, 2.931440124511719e+02, 2.931441345214844e+02, 2.93144287109375e+02, 2.931444396972656e+02, 2.931445617675781e+02, 2.931446838378906e+02, 2.931448059082031e+02, 2.931449279785156e+02, 2.931450500488281e+02, 2.931451416015625e+02, 2.93145263671875e+02, 2.931453552246094e+02, 2.931454467773438e+02, 2.931455688476562e+02, 2.931456604003906e+02, 2.93145751953125e+02, 2.931458435058594e+02, 2.931459045410156e+02, 2.9314599609375e+02, 2.931460876464844e+02, 2.931461791992188e+02, 2.93146240234375e+02, 2.931463317871094e+02, 2.931463928222656e+02, 2.931464538574219e+02, 2.931465454101562e+02, 2.931466064453125e+02, 2.931466674804688e+02, 2.93146728515625e+02, 2.931467895507812e+02, 2.931468505859375e+02, 2.931469116210938e+02, 2.9314697265625e+02, 2.931470336914062e+02, 2.931470947265625e+02, 2.931471557617188e+02, 2.93147216796875e+02, 2.931472473144531e+02, 2.931473083496094e+02, 2.931473693847656e+02, 2.931473999023438e+02, 2.931474609375e+02, 2.931474914550781e+02, 2.931475524902344e+02] bouBDis.T=[2.941499938964844e+02, 2.9369873046875e+02, 2.93497314453125e+02, 2.93390869140625e+02, 2.933280029296875e+02, 2.932878723144531e+02, 2.932608032226562e+02, 2.932417602539062e+02, 2.932278747558594e+02, 2.932174682617188e+02, 2.932094116210938e+02, 2.932030334472656e+02, 2.931979064941406e+02, 2.931936645507812e+02, 2.931901245117188e+02, 2.931871337890625e+02, 2.931845703125e+02, 2.931823425292969e+02, 2.931803894042969e+02, 2.931786804199219e+02, 2.931771545410156e+02, 2.931758117675781e+02, 2.931745910644531e+02, 2.931734924316406e+02, 2.931724853515625e+02, 2.931715698242188e+02, 2.931707458496094e+02, 2.931699829101562e+02, 2.931692810058594e+02, 2.931686096191406e+02, 2.931679992675781e+02, 2.931674499511719e+02, 2.931669311523438e+02, 2.931664428710938e+02, 2.931659851074219e+02, 2.931655578613281e+02, 2.931651306152344e+02, 2.931647644042969e+02, 2.931643981933594e+02, 2.931640625e+02, 2.931637268066406e+02, 2.931634216308594e+02, 2.931631469726562e+02, 2.931628723144531e+02, 2.9316259765625e+02, 2.93162353515625e+02, 2.93162109375e+02, 2.931618957519531e+02, 2.931616821289062e+02, 2.931614685058594e+02, 2.931612548828125e+02, 2.931610717773438e+02, 2.93160888671875e+02, 2.931607055664062e+02, 2.931605529785156e+02, 2.931603698730469e+02, 2.931602172851562e+02, 2.931600646972656e+02, 2.93159912109375e+02, 2.931597900390625e+02, 2.931596374511719e+02, 2.931595153808594e+02, 2.931593933105469e+02, 2.931592712402344e+02, 2.931591491699219e+02, 2.931590270996094e+02, 2.93158935546875e+02, 2.931588134765625e+02, 2.931587219238281e+02, 2.931586303710938e+02, 2.931585083007812e+02, 2.931584167480469e+02, 2.931583251953125e+02, 2.931582336425781e+02, 2.931581420898438e+02, 2.931580810546875e+02, 2.931579895019531e+02, 2.931578979492188e+02, 2.931578369140625e+02, 2.931577453613281e+02, 2.931576843261719e+02, 2.931576232910156e+02, 2.931575317382812e+02, 2.93157470703125e+02, 2.931574096679688e+02, 2.931573486328125e+02, 2.931572875976562e+02, 2.931572265625e+02, 2.931571655273438e+02, 2.931571044921875e+02, 2.931570434570312e+02, 2.93156982421875e+02, 2.931569213867188e+02, 2.931568603515625e+02, 2.931568298339844e+02, 2.931567687988281e+02, 2.931567077636719e+02, 2.931566772460938e+02, 2.931566162109375e+02, 2.931565856933594e+02, 2.931565246582031e+02] doo.port_a1.p=[1.01325e+05, 1.01325e+05] doo.port_a2.p=[1.0132e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05, 1.01325e+05] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Validation_OpenDoorPressure.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Validation_OpenDoorPressure.txt index 7d9f0e0102..1ac8d0d600 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Validation_OpenDoorPressure.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Validation_OpenDoorPressure.txt @@ -1,4 +1,4 @@ -last-generated=2021-01-22 +last-generated=2022-05-18 statistics-simulation= { "linear": " ", diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Validation_OpenDoorTemperature.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Validation_OpenDoorTemperature.txt index c46aa68ead..3162fc0ad1 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Validation_OpenDoorTemperature.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Validation_OpenDoorTemperature.txt @@ -1,4 +1,4 @@ -last-generated=2021-01-22 +last-generated=2022-05-18 statistics-simulation= { "linear": " ", diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Validation_ThreeRoomsContamDiscretizedDoor.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Validation_ThreeRoomsContamDiscretizedDoor.txt index e258ef3789..a03cf91cbd 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Validation_ThreeRoomsContamDiscretizedDoor.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_Multizone_Validation_ThreeRoomsContamDiscretizedDoor.txt @@ -1,4 +1,4 @@ -last-generated=2018-06-06 +last-generated=2022-05-18 statistics-simulation= { "linear": " ", @@ -6,19 +6,19 @@ statistics-simulation= "number of continuous time states": "18", "numerical Jacobians": "0" } -oriWesTop.port_a.m_flow=[5.950168892741203e-02, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03] -dooOpeClo.port_a2.m_flow=[6.595544815063477e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01, 4.127706587314606e-01] -oriOutBot.port_a.m_flow=[-7.940255105495453e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03] -dooOpeClo.port_a1.m_flow=[2.039858996868134e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01, 4.084133207798004e-01] -oriOutTop.port_a.m_flow=[7.940255105495453e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03] time=[0e+00, 3.6e+03] -oriEasTop.port_a.m_flow=[-5.975272879004478e-02, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03, -4.357359372079372e-03] +oriWesTop.port_a.m_flow=[5.950168892741203e-02, -4.357438068836927e-03, -4.357438534498215e-03, -4.357438068836927e-03, -4.357438068836927e-03, -4.357438534498215e-03, -4.357439000159502e-03, -4.357438534498215e-03, -4.357438068836927e-03, -4.357438534498215e-03, -4.357438068836927e-03, -4.357438068836927e-03, -4.357438534498215e-03, -4.357438534498215e-03, -4.357438534498215e-03, -4.357438534498215e-03, -4.357438068836927e-03, -4.357438534498215e-03, -4.357439465820789e-03, -4.357439931482077e-03, -4.357440397143364e-03, -4.357440862804651e-03, -4.357440862804651e-03, -4.357440862804651e-03, -4.357440397143364e-03, -4.357439465820789e-03, -4.357438068836927e-03, -4.357438068836927e-03, -4.357438534498215e-03, -4.357438534498215e-03, -4.357438534498215e-03, -4.357438534498215e-03, -4.357438534498215e-03, -4.357438534498215e-03, -4.357438534498215e-03, -4.357438068836927e-03, -4.357438068836927e-03, -4.357438068836927e-03, -4.357438534498215e-03, -4.357438534498215e-03, -4.357438534498215e-03, -4.357438534498215e-03, -4.357438534498215e-03, -4.357438534498215e-03, -4.357439000159502e-03, -4.357439000159502e-03, -4.357439000159502e-03, -4.357438534498215e-03, -4.357438534498215e-03, -4.357438534498215e-03, -4.357438534498215e-03, -4.357438534498215e-03, -4.357438534498215e-03, -4.357438534498215e-03, -4.357438068836927e-03, -4.357438068836927e-03, -4.357438068836927e-03, -4.357438068836927e-03, -4.357438068836927e-03, -4.357438068836927e-03, -4.357438068836927e-03, -4.357438534498215e-03, -4.357438534498215e-03, -4.357438534498215e-03, -4.357438534498215e-03, -4.357438534498215e-03, -4.357438534498215e-03, -4.357438534498215e-03, -4.357438534498215e-03, -4.357438534498215e-03, -4.357438534498215e-03, -4.357438534498215e-03, -4.357438534498215e-03, -4.357438534498215e-03, -4.357438534498215e-03, -4.357438534498215e-03, -4.357438534498215e-03, -4.357438534498215e-03, -4.357438534498215e-03, -4.357438534498215e-03, -4.357438534498215e-03, -4.357438534498215e-03, -4.357438534498215e-03, -4.357438534498215e-03, -4.357438534498215e-03, -4.357438534498215e-03, -4.357438068836927e-03, -4.357438068836927e-03, -4.357438068836927e-03, -4.357438068836927e-03, -4.357438068836927e-03, -4.357438068836927e-03, -4.357438068836927e-03, -4.357438068836927e-03, -4.357438068836927e-03, -4.357438068836927e-03, -4.357438068836927e-03, -4.357438068836927e-03, -4.357438068836927e-03, -4.357438068836927e-03, -4.357438068836927e-03] +oriEasTop.port_a.m_flow=[-5.975272879004478e-02, -4.357438068836927e-03, -4.35743760317564e-03, -4.35743760317564e-03, -4.357438068836927e-03, -4.35743760317564e-03, -4.357437137514353e-03, -4.357437137514353e-03, -4.357438068836927e-03, -4.35743760317564e-03, -4.35743760317564e-03, -4.357438068836927e-03, -4.35743760317564e-03, -4.357437137514353e-03, -4.357437137514353e-03, -4.35743760317564e-03, -4.357438068836927e-03, -4.357437137514353e-03, -4.357436671853065e-03, -4.357436206191778e-03, -4.357435274869204e-03, -4.357435274869204e-03, -4.357434809207916e-03, -4.357435274869204e-03, -4.357435740530491e-03, -4.357436671853065e-03, -4.357438068836927e-03, -4.357438068836927e-03, -4.35743760317564e-03, -4.35743760317564e-03, -4.35743760317564e-03, -4.35743760317564e-03, -4.35743760317564e-03, -4.35743760317564e-03, -4.35743760317564e-03, -4.357438068836927e-03, -4.357438068836927e-03, -4.357438068836927e-03, -4.35743760317564e-03, -4.35743760317564e-03, -4.35743760317564e-03, -4.35743760317564e-03, -4.35743760317564e-03, -4.35743760317564e-03, -4.357437137514353e-03, -4.357437137514353e-03, -4.357437137514353e-03, -4.357437137514353e-03, -4.357437137514353e-03, -4.35743760317564e-03, -4.35743760317564e-03, -4.35743760317564e-03, -4.35743760317564e-03, -4.35743760317564e-03, -4.357438068836927e-03, -4.357438068836927e-03, -4.357438068836927e-03, -4.357438068836927e-03, -4.357438068836927e-03, -4.35743760317564e-03, -4.35743760317564e-03, -4.35743760317564e-03, -4.35743760317564e-03, -4.35743760317564e-03, -4.35743760317564e-03, -4.35743760317564e-03, -4.35743760317564e-03, -4.35743760317564e-03, -4.35743760317564e-03, -4.35743760317564e-03, -4.35743760317564e-03, -4.35743760317564e-03, -4.35743760317564e-03, -4.35743760317564e-03, -4.35743760317564e-03, -4.35743760317564e-03, -4.35743760317564e-03, -4.35743760317564e-03, -4.35743760317564e-03, -4.35743760317564e-03, -4.35743760317564e-03, -4.35743760317564e-03, -4.35743760317564e-03, -4.35743760317564e-03, -4.35743760317564e-03, -4.35743760317564e-03, -4.35743760317564e-03, -4.35743760317564e-03, -4.357438068836927e-03, -4.357438068836927e-03, -4.357438068836927e-03, -4.357438068836927e-03, -4.357438068836927e-03, -4.357438068836927e-03, -4.357438068836927e-03, -4.357438068836927e-03, -4.357438068836927e-03, -4.357438068836927e-03, -4.357438068836927e-03, -4.357438068836927e-03, -4.357438068836927e-03] +oriOutTop.port_a.m_flow=[7.940255105495453e-03, 7.940256036818027e-03, 7.940255105495453e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940255105495453e-03, 7.940254174172878e-03, 7.940255105495453e-03, 7.940256036818027e-03, 7.940255105495453e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940255105495453e-03, 7.940255105495453e-03, 7.940255105495453e-03, 7.940255105495453e-03, 7.940256036818027e-03, 7.940255105495453e-03, 7.940253242850304e-03, 7.940252311527729e-03, 7.940251380205154e-03, 7.94025044888258e-03, 7.94025044888258e-03, 7.94025044888258e-03, 7.940251380205154e-03, 7.940253242850304e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940255105495453e-03, 7.940255105495453e-03, 7.940255105495453e-03, 7.940255105495453e-03, 7.940255105495453e-03, 7.940255105495453e-03, 7.940255105495453e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940255105495453e-03, 7.940255105495453e-03, 7.940255105495453e-03, 7.940255105495453e-03, 7.940255105495453e-03, 7.940255105495453e-03, 7.940255105495453e-03, 7.940255105495453e-03, 7.940255105495453e-03, 7.940255105495453e-03, 7.940255105495453e-03, 7.940255105495453e-03, 7.940255105495453e-03, 7.940255105495453e-03, 7.940255105495453e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940255105495453e-03, 7.940255105495453e-03, 7.940255105495453e-03, 7.940255105495453e-03, 7.940255105495453e-03, 7.940255105495453e-03, 7.940255105495453e-03, 7.940255105495453e-03, 7.940255105495453e-03, 7.940255105495453e-03, 7.940255105495453e-03, 7.940255105495453e-03, 7.940255105495453e-03, 7.940255105495453e-03, 7.940255105495453e-03, 7.940255105495453e-03, 7.940255105495453e-03, 7.940255105495453e-03, 7.940255105495453e-03, 7.940255105495453e-03, 7.940255105495453e-03, 7.940255105495453e-03, 7.940255105495453e-03, 7.940255105495453e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03, 7.940256036818027e-03] +oriOutBot.port_a.m_flow=[-7.940255105495453e-03, -7.940256036818027e-03, -7.940256968140602e-03, -7.940256968140602e-03, -7.940256036818027e-03, -7.940256968140602e-03, -7.940257899463177e-03, -7.940257899463177e-03, -7.940256036818027e-03, -7.940256968140602e-03, -7.940256968140602e-03, -7.940256036818027e-03, -7.940256968140602e-03, -7.940257899463177e-03, -7.940257899463177e-03, -7.940256968140602e-03, -7.940256036818027e-03, -7.940257899463177e-03, -7.940258830785751e-03, -7.940259762108326e-03, -7.940261624753475e-03, -7.940261624753475e-03, -7.94026255607605e-03, -7.940261624753475e-03, -7.940260693430901e-03, -7.940258830785751e-03, -7.940256036818027e-03, -7.940256968140602e-03, -7.940256968140602e-03, -7.940256968140602e-03, -7.940256968140602e-03, -7.940257899463177e-03, -7.940257899463177e-03, -7.940256968140602e-03, -7.940256968140602e-03, -7.940256968140602e-03, -7.940256036818027e-03, -7.940256968140602e-03, -7.940256968140602e-03, -7.940256968140602e-03, -7.940256968140602e-03, -7.940256968140602e-03, -7.940257899463177e-03, -7.940257899463177e-03, -7.940257899463177e-03, -7.940257899463177e-03, -7.940257899463177e-03, -7.940257899463177e-03, -7.940257899463177e-03, -7.940257899463177e-03, -7.940256968140602e-03, -7.940256968140602e-03, -7.940256968140602e-03, -7.940256968140602e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256968140602e-03, -7.940256968140602e-03, -7.940256968140602e-03, -7.940256968140602e-03, -7.940256968140602e-03, -7.940256968140602e-03, -7.940256968140602e-03, -7.940256968140602e-03, -7.940256968140602e-03, -7.940256968140602e-03, -7.940256968140602e-03, -7.940256968140602e-03, -7.940256968140602e-03, -7.940256968140602e-03, -7.940256968140602e-03, -7.940256968140602e-03, -7.940256968140602e-03, -7.940256968140602e-03, -7.940256968140602e-03, -7.940256968140602e-03, -7.940256968140602e-03, -7.940256968140602e-03, -7.940256968140602e-03, -7.940256968140602e-03, -7.940256968140602e-03, -7.940256968140602e-03, -7.940256968140602e-03, -7.940256968140602e-03, -7.940256968140602e-03, -7.940256968140602e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03, -7.940256036818027e-03] +dooOpeClo.port_a1.m_flow=[2.039858996868134e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.084132611751556e-01, 4.084132611751556e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.084132611751556e-01, 4.084132611751556e-01, 4.084132611751556e-01, 4.084132611751556e-01, 4.084132611751556e-01, 4.084132611751556e-01, 4.084132611751556e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01, 4.08413290977478e-01] +dooOpeClo.port_a2.m_flow=[6.595544815063477e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.12770688533783e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.12770688533783e-01, 4.12770688533783e-01, 4.12770688533783e-01, 4.12770688533783e-01, 4.12770688533783e-01, 4.12770688533783e-01, 4.12770688533783e-01, 4.12770688533783e-01, 4.12770688533783e-01, 4.12770688533783e-01, 4.12770688533783e-01, 4.12770688533783e-01, 4.12770688533783e-01, 4.12770688533783e-01, 4.12770688533783e-01, 4.12770688533783e-01, 4.12770688533783e-01, 4.12770688533783e-01, 4.12770688533783e-01, 4.12770688533783e-01, 4.12770688533783e-01, 4.12770688533783e-01, 4.12770688533783e-01, 4.12770688533783e-01, 4.12770688533783e-01, 4.12770688533783e-01, 4.12770688533783e-01, 4.12770688533783e-01, 4.12770688533783e-01, 4.12770688533783e-01, 4.12770688533783e-01, 4.12770688533783e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01, 4.127707183361053e-01] volWes.T=[2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02] volEas.T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02] -volOut.T=[2.831499938964844e+02, 2.831499938964844e+02] volTop.T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02] -dooOpeClo.dpAB[1]=[-2.735938131809235e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01] -oriOutBot.dp=[-6.217717528343201e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01] -oriWesTop.dp=[3.491568756103516e+01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01] -oriEasTop.dp=[-3.521093368530273e+01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01, -1.872443854808807e-01] -oriOutTop.dp=[6.217717528343201e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01] +volOut.T=[2.831499938964844e+02, 2.831499938964844e+02] +oriWesTop.dp=[3.491568756103516e+01, -1.872511506080627e-01, -1.872511804103851e-01, -1.872511655092239e-01, -1.872511506080627e-01, -1.872511804103851e-01, -1.872512251138687e-01, -1.872512102127075e-01, -1.872511506080627e-01, -1.872511655092239e-01, -1.872511655092239e-01, -1.872511506080627e-01, -1.872511804103851e-01, -1.872512102127075e-01, -1.872512102127075e-01, -1.872511953115463e-01, -1.872511506080627e-01, -1.872511953115463e-01, -1.872512549161911e-01, -1.872513145208359e-01, -1.872513592243195e-01, -1.872513890266418e-01, -1.872513890266418e-01, -1.872513741254807e-01, -1.872513294219971e-01, -1.872512549161911e-01, -1.872511506080627e-01, -1.872511655092239e-01, -1.872511804103851e-01, -1.872511953115463e-01, -1.872511953115463e-01, -1.872511953115463e-01, -1.872511953115463e-01, -1.872511953115463e-01, -1.872511804103851e-01, -1.872511655092239e-01, -1.872511506080627e-01, -1.872511655092239e-01, -1.872511655092239e-01, -1.872511804103851e-01, -1.872511953115463e-01, -1.872511953115463e-01, -1.872511953115463e-01, -1.872512102127075e-01, -1.872512102127075e-01, -1.872512102127075e-01, -1.872512102127075e-01, -1.872512102127075e-01, -1.872512102127075e-01, -1.872511953115463e-01, -1.872511953115463e-01, -1.872511953115463e-01, -1.872511804103851e-01, -1.872511655092239e-01, -1.872511655092239e-01, -1.872511506080627e-01, -1.872511506080627e-01, -1.872511506080627e-01, -1.872511655092239e-01, -1.872511655092239e-01, -1.872511655092239e-01, -1.872511655092239e-01, -1.872511804103851e-01, -1.872511804103851e-01, -1.872511804103851e-01, -1.872511804103851e-01, -1.872511804103851e-01, -1.872511953115463e-01, -1.872511953115463e-01, -1.872511953115463e-01, -1.872511953115463e-01, -1.872511953115463e-01, -1.872511953115463e-01, -1.872511953115463e-01, -1.872511953115463e-01, -1.872511953115463e-01, -1.872511953115463e-01, -1.872511953115463e-01, -1.872511953115463e-01, -1.872511804103851e-01, -1.872511804103851e-01, -1.872511804103851e-01, -1.872511804103851e-01, -1.872511804103851e-01, -1.872511804103851e-01, -1.872511655092239e-01, -1.872511655092239e-01, -1.872511655092239e-01, -1.872511506080627e-01, -1.872511506080627e-01, -1.872511506080627e-01, -1.872511506080627e-01, -1.872511506080627e-01, -1.872511506080627e-01, -1.872511506080627e-01, -1.872511506080627e-01, -1.872511506080627e-01, -1.872511506080627e-01, -1.872511506080627e-01, -1.872511506080627e-01, -1.872511506080627e-01] +oriEasTop.dp=[-3.521093368530273e+01, -1.872511357069016e-01, -1.872511059045792e-01, -1.872511208057404e-01, -1.872511357069016e-01, -1.872511059045792e-01, -1.872510612010956e-01, -1.87251091003418e-01, -1.872511357069016e-01, -1.872511208057404e-01, -1.872511208057404e-01, -1.872511357069016e-01, -1.872511059045792e-01, -1.87251091003418e-01, -1.872510761022568e-01, -1.87251091003418e-01, -1.872511357069016e-01, -1.87251091003418e-01, -1.872510313987732e-01, -1.872509717941284e-01, -1.872509270906448e-01, -1.872508972883224e-01, -1.872508823871613e-01, -1.872508972883224e-01, -1.872509568929672e-01, -1.872510313987732e-01, -1.872511506080627e-01, -1.872511357069016e-01, -1.872511208057404e-01, -1.872511059045792e-01, -1.872511059045792e-01, -1.87251091003418e-01, -1.87251091003418e-01, -1.872511059045792e-01, -1.872511059045792e-01, -1.872511357069016e-01, -1.872511506080627e-01, -1.872511357069016e-01, -1.872511208057404e-01, -1.872511208057404e-01, -1.872511059045792e-01, -1.872511059045792e-01, -1.87251091003418e-01, -1.87251091003418e-01, -1.87251091003418e-01, -1.87251091003418e-01, -1.87251091003418e-01, -1.87251091003418e-01, -1.87251091003418e-01, -1.87251091003418e-01, -1.87251091003418e-01, -1.872511059045792e-01, -1.872511059045792e-01, -1.872511208057404e-01, -1.872511357069016e-01, -1.872511506080627e-01, -1.872511357069016e-01, -1.872511357069016e-01, -1.872511357069016e-01, -1.872511208057404e-01, -1.872511208057404e-01, -1.872511208057404e-01, -1.872511208057404e-01, -1.872511059045792e-01, -1.872511059045792e-01, -1.872511059045792e-01, -1.872511059045792e-01, -1.872511059045792e-01, -1.872511059045792e-01, -1.87251091003418e-01, -1.87251091003418e-01, -1.87251091003418e-01, -1.87251091003418e-01, -1.87251091003418e-01, -1.87251091003418e-01, -1.87251091003418e-01, -1.87251091003418e-01, -1.87251091003418e-01, -1.872511059045792e-01, -1.872511059045792e-01, -1.872511059045792e-01, -1.872511059045792e-01, -1.872511059045792e-01, -1.872511059045792e-01, -1.872511208057404e-01, -1.872511208057404e-01, -1.872511208057404e-01, -1.872511208057404e-01, -1.872511357069016e-01, -1.872511357069016e-01, -1.872511357069016e-01, -1.872511506080627e-01, -1.872511506080627e-01, -1.872511506080627e-01, -1.872511506080627e-01, -1.872511506080627e-01, -1.872511506080627e-01, -1.872511506080627e-01, -1.872511506080627e-01, -1.872511506080627e-01, -1.872511506080627e-01] +oriOutTop.dp=[6.217717528343201e-01, 6.217718720436096e-01, 6.217717528343201e-01, 6.217718124389648e-01, 6.217718124389648e-01, 6.217717528343201e-01, 6.217715740203857e-01, 6.217716932296753e-01, 6.217718124389648e-01, 6.217717528343201e-01, 6.217718124389648e-01, 6.217718124389648e-01, 6.217717528343201e-01, 6.217716932296753e-01, 6.217716336250305e-01, 6.217716932296753e-01, 6.217718720436096e-01, 6.217716932296753e-01, 6.217714548110962e-01, 6.217712759971619e-01, 6.217710971832275e-01, 6.21770977973938e-01, 6.217709183692932e-01, 6.21770977973938e-01, 6.217711567878723e-01, 6.217714548110962e-01, 6.217718720436096e-01, 6.217718124389648e-01, 6.217717528343201e-01, 6.217717528343201e-01, 6.217716932296753e-01, 6.217716932296753e-01, 6.217716932296753e-01, 6.217716932296753e-01, 6.217717528343201e-01, 6.217718124389648e-01, 6.217718720436096e-01, 6.217718124389648e-01, 6.217717528343201e-01, 6.217717528343201e-01, 6.217716932296753e-01, 6.217716932296753e-01, 6.217716932296753e-01, 6.217716336250305e-01, 6.217716336250305e-01, 6.217716336250305e-01, 6.217716336250305e-01, 6.217716336250305e-01, 6.217716336250305e-01, 6.217716932296753e-01, 6.217716932296753e-01, 6.217716932296753e-01, 6.217717528343201e-01, 6.217718124389648e-01, 6.217718124389648e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718124389648e-01, 6.217718124389648e-01, 6.217718124389648e-01, 6.217718124389648e-01, 6.217717528343201e-01, 6.217717528343201e-01, 6.217717528343201e-01, 6.217717528343201e-01, 6.217717528343201e-01, 6.217716932296753e-01, 6.217716932296753e-01, 6.217716932296753e-01, 6.217716932296753e-01, 6.217716932296753e-01, 6.217716932296753e-01, 6.217716932296753e-01, 6.217716932296753e-01, 6.217716932296753e-01, 6.217716932296753e-01, 6.217716932296753e-01, 6.217716932296753e-01, 6.217716932296753e-01, 6.217716932296753e-01, 6.217717528343201e-01, 6.217717528343201e-01, 6.217717528343201e-01, 6.217717528343201e-01, 6.217717528343201e-01, 6.217718124389648e-01, 6.217718124389648e-01, 6.217718124389648e-01, 6.217718124389648e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01, 6.217718720436096e-01] +oriOutBot.dp=[-6.217717528343201e-01, -6.217719316482544e-01, -6.217719912528992e-01, -6.217719316482544e-01, -6.217719316482544e-01, -6.217719912528992e-01, -6.217721700668335e-01, -6.217721104621887e-01, -6.217719316482544e-01, -6.217719912528992e-01, -6.217719316482544e-01, -6.217719316482544e-01, -6.217719912528992e-01, -6.217721104621887e-01, -6.217721104621887e-01, -6.217720508575439e-01, -6.217718720436096e-01, -6.217721104621887e-01, -6.21772289276123e-01, -6.217724680900574e-01, -6.217726469039917e-01, -6.217727661132812e-01, -6.21772825717926e-01, -6.217727661132812e-01, -6.217725872993469e-01, -6.21772289276123e-01, -6.217718720436096e-01, -6.217719316482544e-01, -6.217719912528992e-01, -6.217720508575439e-01, -6.217720508575439e-01, -6.217720508575439e-01, -6.217720508575439e-01, -6.217720508575439e-01, -6.217719912528992e-01, -6.217719316482544e-01, -6.217718720436096e-01, -6.217719316482544e-01, -6.217719912528992e-01, -6.217719912528992e-01, -6.217720508575439e-01, -6.217720508575439e-01, -6.217721104621887e-01, -6.217721104621887e-01, -6.217721104621887e-01, -6.217721104621887e-01, -6.217721104621887e-01, -6.217721104621887e-01, -6.217721104621887e-01, -6.217720508575439e-01, -6.217720508575439e-01, -6.217720508575439e-01, -6.217719912528992e-01, -6.217719912528992e-01, -6.217719316482544e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217719316482544e-01, -6.217719316482544e-01, -6.217719316482544e-01, -6.217719316482544e-01, -6.217719912528992e-01, -6.217719912528992e-01, -6.217719912528992e-01, -6.217719912528992e-01, -6.217719912528992e-01, -6.217720508575439e-01, -6.217720508575439e-01, -6.217720508575439e-01, -6.217720508575439e-01, -6.217720508575439e-01, -6.217720508575439e-01, -6.217720508575439e-01, -6.217720508575439e-01, -6.217720508575439e-01, -6.217720508575439e-01, -6.217720508575439e-01, -6.217720508575439e-01, -6.217720508575439e-01, -6.217720508575439e-01, -6.217720508575439e-01, -6.217719912528992e-01, -6.217719912528992e-01, -6.217719912528992e-01, -6.217719912528992e-01, -6.217719912528992e-01, -6.217719316482544e-01, -6.217719316482544e-01, -6.217719316482544e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01, -6.217718720436096e-01] +dooOpeClo.dpAB[1]=[-2.735938131809235e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236440420151e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01, -1.943236589431763e-01] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_SolarGeometry_BaseClasses_Examples_IncidenceAngle.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_SolarGeometry_BaseClasses_Examples_IncidenceAngle.txt index 43094ab880..d2f1dba758 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_SolarGeometry_BaseClasses_Examples_IncidenceAngle.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_SolarGeometry_BaseClasses_Examples_IncidenceAngle.txt @@ -1,4 +1,9 @@ -last-generated=2015-05-08 -statistics-simulation={'numerical Jacobians': '0', 'nonlinear': '1', 'linear': ' '} -incAng.incAng=[1.90046191215515136719, 1.89835369586944580078, 1.89369571208953857422, 1.88651800155639648438, 1.87686622142791748047, 1.86480009555816650391, 1.85039210319519042969, 1.83372509479522705078, 1.81489098072052001953, 1.79398798942565917969, 1.77111971378326416016, 1.74639225006103515625, 1.71991360187530517578, 1.69179141521453857422, 1.66213285923004150391, 1.63104259967803955078, 1.5986232757568359375, 1.56497406959533691406, 1.53019094467163085938, 1.49436652660369873047, 1.45758998394012451172, 1.41994726657867431641, 1.38152110576629638672, 1.34239184856414794922, 1.30263745784759521484, 1.26233446598052978516, 1.22155821323394775391, 1.1803836822509765625, 1.13888645172119118421, 1.09714341163635253906, 1.05523419380187988281, 1.01324224472045898438, 0.97125661373138427734, 0.9293734431266784668, 0.887698829174041526, 0.84635096788406394275, 0.80546402931213378906, 0.76519197225570678711, 0.72571367025375366211, 0.68723857402801513672, 0.65001410245895385742, 0.61433255672454833984, 0.58053964376449584961, 0.54904061555862426758, 0.52030384540557861328, 0.49485674500465393066, 0.47327023744583129883, 0.45612594485282897949, 0.44396454095840454102, 0.43721988797187805176, 0.43615311384201049805, 0.44080710411071777344, 0.45099857449531555176, 0.46635097265243530273, 0.48635542392730712891, 0.51043862104415915759, 0.53802102804183982165, 0.56855636835098244397, 0.60155338048934936523, 0.63658344745635986328, 0.67327940464019775391, 0.71132999658584594727, 0.75047206878662109375, 0.79048287868499755859, 0.83117300271987915039, 0.87237977981567382812, 0.91396236419677734375, 0.95579701662063598633, 0.99777352809906039166, 1.03979229927062943872, 1.08176207542419389185, 1.12359738349914550781, 1.16521751880645751953, 1.20654475688934326172, 1.24750316143035888672, 1.28801763057708740234, 1.32801294326782226562, 1.36741340160369873047, 1.40614163875579833984, 1.44411814212799072266, 1.48126125335693359375, 1.51748609542846679688, 1.55270481109619140625, 1.58682608604431152344, 1.61975514888763427734, 1.651393890380859375, 1.68164086341857910156, 1.710391998291015625, 1.73754072189331054688, 1.76297926902770996094, 1.78659951686859130859, 1.80829417705535888672, 1.82795834541320800781, 1.84549105167388916016, 1.86079776287078857422, 1.87379133701324462891, 1.88439512252807617188, 1.89254391193389892578, 1.89818644523620605469, 1.90128612518310546875, 1.9018230438232421875] -time=[0., 86400.] +last-generated=2022-05-18 +statistics-simulation= +{ + "linear": " ", + "nonlinear": "1", + "numerical Jacobians": "0" +} +time=[0e+00, 8.64e+04] +incAng.incAng=[1.900461912155151e+00, 1.898353695869446e+00, 1.893695712089539e+00, 1.886518001556396e+00, 1.876866221427917e+00, 1.864800095558167e+00, 1.85039210319519e+00, 1.833725094795227e+00, 1.81489098072052e+00, 1.793987989425659e+00, 1.771119713783264e+00, 1.746392250061035e+00, 1.719913601875305e+00, 1.691791415214539e+00, 1.662132859230042e+00, 1.63104259967804e+00, 1.598623275756836e+00, 1.564974069595337e+00, 1.530190944671631e+00, 1.494366526603699e+00, 1.457589983940125e+00, 1.419947266578674e+00, 1.381521105766296e+00, 1.342391848564148e+00, 1.302637457847595e+00, 1.26233446598053e+00, 1.221558213233948e+00, 1.180383682250977e+00, 1.138886451721191e+00, 1.097143411636353e+00, 1.05523419380188e+00, 1.013242244720459e+00, 9.712566137313843e-01, 9.293734431266785e-01, 8.876988291740415e-01, 8.463509678840639e-01, 8.054640293121338e-01, 7.651919722557068e-01, 7.257136702537537e-01, 6.872385740280151e-01, 6.500141024589539e-01, 6.143325567245483e-01, 5.805396437644958e-01, 5.490406155586243e-01, 5.203038454055786e-01, 4.948567450046539e-01, 4.732702374458313e-01, 4.56125944852829e-01, 4.439645409584045e-01, 4.372198879718781e-01, 4.361531138420105e-01, 4.408071041107178e-01, 4.509985744953156e-01, 4.663509726524353e-01, 4.863554239273071e-01, 5.104386210441592e-01, 5.380210280418398e-01, 5.685563683509824e-01, 6.015533804893494e-01, 6.365834474563599e-01, 6.732794046401978e-01, 7.113299965858459e-01, 7.504720687866211e-01, 7.904828786849976e-01, 8.311730027198792e-01, 8.723797798156738e-01, 9.139623641967773e-01, 9.55797016620636e-01, 9.977735280990604e-01, 1.039792299270629e+00, 1.081762075424194e+00, 1.123597383499146e+00, 1.165217518806458e+00, 1.206544756889343e+00, 1.247503161430359e+00, 1.288017630577087e+00, 1.328012943267822e+00, 1.367413401603699e+00, 1.406141638755798e+00, 1.444118142127991e+00, 1.481261253356934e+00, 1.517486095428467e+00, 1.552704811096191e+00, 1.586826086044312e+00, 1.619755148887634e+00, 1.651393890380859e+00, 1.681640863418579e+00, 1.710391998291016e+00, 1.737540721893311e+00, 1.76297926902771e+00, 1.786599516868591e+00, 1.808294177055359e+00, 1.827958345413208e+00, 1.845491051673889e+00, 1.860797762870789e+00, 1.873791337013245e+00, 1.884395122528076e+00, 1.892543911933899e+00, 1.898186445236206e+00, 1.901286125183105e+00, 1.901823043823242e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_SolarGeometry_BaseClasses_Examples_ZenithAngle.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_SolarGeometry_BaseClasses_Examples_ZenithAngle.txt index e334d7ccd3..56f1f9b796 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_SolarGeometry_BaseClasses_Examples_ZenithAngle.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_SolarGeometry_BaseClasses_Examples_ZenithAngle.txt @@ -1,4 +1,9 @@ -last-generated=2015-05-08 -statistics-simulation={'numerical Jacobians': '0', 'nonlinear': '1', 'linear': ' '} -zen.zen=[2.24822664260864257812, 2.14016318321228027344, 2.03257274627685546875, 1.92632651329040527344, 1.82223725318908691406, 1.72113323211669921875, 1.62391245365142822266, 1.53158581256866455078, 1.44531106948852539062, 1.36641407012939453125, 1.29638838768005371094, 1.23685932159423828125, 1.18949556350708007812, 1.15586185455322265625, 1.13722264766693115234, 1.13434171676635742188, 1.14734113216400146484, 1.17567837238311767578, 1.21824824810028076172, 1.27357029914855957031, 1.33999311923980712891, 1.41586232185363769531, 1.49962985515594482422, 1.58990728855133056641, 1.68547701835632324219, 1.78527772426605224609, 1.88837409019470214844, 1.99391674995422363281, 2.10109233856201171875, 2.20905804634094238281, 2.31684470176696777344, 2.42319798469543457031, 2.52628970146179199219, 2.62317109107971191406, 2.70874810218811035156, 2.77427124977111816406, 2.80720734596252441406, 2.79783606529235839844, 2.749225616455078125, 2.67368602752685546875, 2.5823974609375, 2.48234915733337402344, 2.37754535675048828125, 2.27035880088806152344, 2.16232228279113769531, 2.05454111099243164062, 1.94791424274444580078, 1.84326159954071044922, 1.74140453338623046875, 1.64322316646575927734, 1.54970216751098632812, 1.46196699142456054688, 1.38130867481231689453, 1.30918920040130615234, 1.24721455574035644531, 1.19705927371978759766, 1.16033041477203369141, 1.13837909698486328125, 1.13209402561187744141, 1.14174199104309082031, 1.16691577434539794922, 1.20661258697509765625, 1.25940966606140136719, 1.32367110252380371094, 1.39772748947143554688, 1.47999858856201171875, 1.56905722618103027344, 1.66364824771881103516, 1.76267778873443603516, 1.86518549919128417969, 1.97030627727508544922, 2.07722234725952148438, 2.18510198593139648438, 2.29300999641418457031, 2.39976644515991210938, 2.50369310379028320312, 2.60213732719421386719, 2.69057226181030273438, 2.76115751266479492188, 2.801990509033203125, 2.80188083648681640625, 2.76086187362670898438, 2.690151214599609375, 2.601634979248046875, 2.50313234329223632812, 2.39915800094604492188, 2.29235744476318359375, 2.18440508842468261719, 2.07647871971130371094, 1.96951162815093994141, 1.86433482170104980469, 1.76176536083221435547, 1.66266787052154541016, 1.56800258159637451172, 1.47886383533477783203, 1.39650762081146240234, 1.32236337661743164062, 1.25801420211791992188, 1.20513415336608886719, 1.16536438465118408203, 1.14013361930847167969] -time=[100000., 300000.] +last-generated=2022-05-18 +statistics-simulation= +{ + "linear": " ", + "nonlinear": "1", + "numerical Jacobians": "0" +} +time=[1e+05, 3e+05] +zen.zen=[2.248226642608643e+00, 2.14016318321228e+00, 2.032572746276855e+00, 1.926326513290405e+00, 1.822237253189087e+00, 1.721133232116699e+00, 1.623912453651428e+00, 1.531585812568665e+00, 1.445311069488525e+00, 1.366414070129395e+00, 1.296388387680054e+00, 1.236859321594238e+00, 1.18949556350708e+00, 1.155861854553223e+00, 1.137222647666931e+00, 1.134341716766357e+00, 1.147341132164001e+00, 1.175678372383118e+00, 1.218248248100281e+00, 1.27357029914856e+00, 1.339993119239807e+00, 1.415862321853638e+00, 1.499629855155945e+00, 1.589907288551331e+00, 1.685477018356323e+00, 1.785277724266052e+00, 1.888374090194702e+00, 1.993916749954224e+00, 2.101092338562012e+00, 2.209058046340942e+00, 2.316844701766968e+00, 2.423197984695435e+00, 2.526289701461792e+00, 2.623171091079712e+00, 2.70874810218811e+00, 2.774271249771118e+00, 2.807207345962524e+00, 2.797836065292358e+00, 2.749225616455078e+00, 2.673686027526855e+00, 2.5823974609375e+00, 2.482349157333374e+00, 2.377545356750488e+00, 2.270358800888062e+00, 2.162322282791138e+00, 2.054541110992432e+00, 1.947914242744446e+00, 1.84326159954071e+00, 1.74140453338623e+00, 1.643223166465759e+00, 1.549702167510986e+00, 1.461966991424561e+00, 1.381308674812317e+00, 1.309189200401306e+00, 1.247214555740356e+00, 1.197059273719788e+00, 1.160330414772034e+00, 1.138379096984863e+00, 1.132094025611877e+00, 1.141741991043091e+00, 1.166915774345398e+00, 1.206612586975098e+00, 1.259409666061401e+00, 1.323671102523804e+00, 1.397727489471436e+00, 1.479998588562012e+00, 1.56905722618103e+00, 1.663648247718811e+00, 1.762677788734436e+00, 1.865185499191284e+00, 1.970306277275085e+00, 2.077222347259521e+00, 2.185101985931396e+00, 2.293009996414185e+00, 2.399766445159912e+00, 2.503693103790283e+00, 2.602137327194214e+00, 2.690572261810303e+00, 2.761157512664795e+00, 2.801990509033203e+00, 2.801880836486816e+00, 2.760861873626709e+00, 2.690151214599609e+00, 2.601634979248047e+00, 2.503132343292236e+00, 2.399158000946045e+00, 2.292357444763184e+00, 2.184405088424683e+00, 2.076478719711304e+00, 1.96951162815094e+00, 1.86433482170105e+00, 1.761765360832214e+00, 1.662667870521545e+00, 1.568002581596375e+00, 1.478863835334778e+00, 1.396507620811462e+00, 1.322363376617432e+00, 1.25801420211792e+00, 1.205134153366089e+00, 1.165364384651184e+00, 1.140133619308472e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_SolarGeometry_Examples_IncidenceAngle.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_SolarGeometry_Examples_IncidenceAngle.txt index 8fa08bb0f5..a252e8ab9b 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_SolarGeometry_Examples_IncidenceAngle.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_SolarGeometry_Examples_IncidenceAngle.txt @@ -1,8 +1,13 @@ -last-generated=2015-05-08 -statistics-simulation={'numerical Jacobians': '0', 'nonlinear': '1', 'linear': ' '} -incAngEas.y=[1.55187821388244628906, 1.4941082000732421875, 1.43638455867767333984, 1.37874388694763183594, 1.32122528553009033203, 1.26387095451354980469, 1.20672786235809326172, 1.14984941482543945312, 1.09329688549041748047, 1.03714227676391601562, 0.98147153854370117188, 0.92638826370239257812, 0.87201905250549316406, 0.81852072477340698242, 0.76608949899673450812, 0.71497285366058349609, 0.6654860377311706543, 0.61803197860717762335, 0.57312643527984619141, 0.53142553567886352539, 0.49375084042549133301, 0.46109807491302490234, 0.43460723757743835449, 0.41546386480331420898, 0.40471562743186950684, 0.4030367434024810791, 0.41053885221481323242, 0.42673689126968383789, 0.45069169998168956415, 0.48124253749847412109, 0.51721704006195068359, 0.5575606226921081543, 0.60138797760009765625, 0.64798527956008911133, 0.69678896665573142322, 0.74735808372497536389, 0.7993481755256652832, 0.85248929262161254883, 0.90656799077987670898, 0.96141457557678222656, 1.01689219474792480469, 1.07288968563079833984, 1.12931537628173828125, 1.186092376708984375, 1.24315607547760009766, 1.30045032501220703125, 1.35792624950408935547, 1.41553997993469238281, 1.47325158119201660156, 1.53102362155914306641, 1.58882057666778564453, 1.64660727977752685547, 1.70434832572937011719, 1.76200711727142333984, 1.81954491138458251953, 1.87691962718963667456, 1.93408441543579145971, 1.99098634719848588404, 2.04756426811218261719, 2.1037464141845703125, 2.15944743156433105469, 2.21456408500671386719, 2.26897072792053222656, 2.32251119613647460938, 2.37499022483825683594, 2.42616152763366699219, 2.47571134567260742188, 2.52323842048645019531, 2.5682289600372318894, 2.61002874374389604029, 2.64781808853149369654, 2.68060183525085449219, 2.70723819732666015625, 2.72653698921203613281, 2.7374420166015625, 2.73926806449890136719, 2.73189330101013183594, 2.71579670906066894531, 2.69191646575927734375, 2.66141581535339355469, 2.62547254562377929688, 2.58514571189880371094, 2.54132485389709472656, 2.49472713470458984375, 2.44591808319091796875, 2.39534044265747070312, 2.34333944320678710938, 2.29018640518188476562, 2.23609471321105957031, 2.1812343597412109375, 2.12574291229248046875, 2.06973099708557128906, 2.01329112052917480469, 1.95649933815002441406, 1.89942085742950439453, 1.8421115875244140625, 1.78462040424346923828, 1.72699117660522460938, 1.66926372051239013672, 1.61147534847259521484, 1.55366170406341552734] -incAngWes.y=[1.58971440792083740234, 1.64748442173004150391, 1.70520818233489990234, 1.76284873485565185547, 1.82036745548248291016, 1.8777217864990234375, 1.93486475944519042969, 1.99174320697784423828, 2.04829573631286621094, 2.10445046424865722656, 2.16012120246887207031, 2.21520447731018066406, 2.26957368850708007812, 2.32307195663452148438, 2.37550306320190429688, 2.42661976814270019531, 2.4761066436767578125, 2.52356076240539550781, 2.5684661865234375, 2.61016702651977539062, 2.64784193038940429688, 2.68049454689025878906, 2.7069854736328125, 2.72612881660461425781, 2.73687696456909179688, 2.738555908203125, 2.73105382919311523438, 2.71485567092895507812, 2.69090104103088378906, 2.66035008430480957031, 2.62437558174133300781, 2.5840320587158203125, 2.54020476341247558594, 2.49360728263854980469, 2.44480371475219726562, 2.39423465728759765625, 2.34224438667297363281, 2.28910326957702636719, 2.23502469062805175781, 2.18017816543579101562, 2.12470030784606933594, 2.06870293617248535156, 2.01227736473083496094, 1.95550024509429931641, 1.89843654632568359375, 1.84114229679107666016, 1.78366649150848388672, 1.72605276107788085938, 1.66834115982055664062, 1.610569000244140625, 1.55277204513549804688, 1.49498546123504638672, 1.437244415283203125, 1.37958550453186035156, 1.32204771041870117188, 1.26467299461364701685, 1.20750820636749223169, 1.15060627460479780737, 1.094028472900390625, 1.03784632682800292969, 0.9821453094482421875, 0.92702847719192504883, 0.87262183427810668945, 0.81908142566680908203, 0.76660239696502685547, 0.71543115377426147461, 0.66588139533996582031, 0.61835432052612304688, 0.57336372137069668842, 0.5315638780593875401, 0.49377456307411221603, 0.46099090576171875, 0.43435445427894592285, 0.4150556027889251709, 0.40415057539939880371, 0.40232449769973754883, 0.40969926118850708008, 0.42579594254493713379, 0.44967630505561828613, 0.48017674684524536133, 0.51612013578414916992, 0.55644690990447998047, 0.60026776790618896484, 0.64686560630798339844, 0.69567465782165527344, 0.74625229835510253906, 0.79825311899185180664, 0.85140627622604370117, 0.90549802780151367188, 0.96035820245742797852, 1.01584982872009277344, 1.07186162471771240234, 1.1283016204833984375, 1.18509340286254882812, 1.24217176437377929688, 1.29948103427886962891, 1.35697221755981445312, 1.41460144519805908203, 1.47232890129089355469, 1.53011727333068847656, 1.58793103694915771484] -time=[0., 86400.] -incAngSou.y=[1.89875078201293945312, 1.89664793014526367188, 1.89200150966644287109, 1.88484144210815429688, 1.87521314620971679688, 1.86317610740661621094, 1.84880232810974121094, 1.83217442035675048828, 1.81338357925415039062, 1.79252779483795166016, 1.76971006393432617188, 1.74503624439239501953, 1.71861362457275390625, 1.69054996967315673828, 1.6609516143798828125, 1.62992334365844726562, 1.59756720066070556641, 1.56398248672485351562, 1.52926480770111083984, 1.49350678920745849609, 1.45679736137390136719, 1.41922247409820556641, 1.38086497783660888672, 1.34180510044097900391, 1.30212092399597167969, 1.26188898086547851562, 1.22118461132049560547, 1.18008315563201904297, 1.13866007328033425061, 1.09699273109436035156, 1.05516088008880615234, 1.01324808597564697266, 0.97134363651275634766, 0.92954415082931518555, 0.88795578479766823499, 0.84669727087020896228, 0.80590295791625976562, 0.76572722196578979492, 0.72634905576705932617, 0.68797820806503295898, 0.65086185932159423828, 0.6152922511100769043, 0.58161401748657226562, 0.55023109912872314453, 0.52160936594009399414, 0.49627274274826049805, 0.47478732466697692871, 0.45772880315780639648, 0.44563150405883789062, 0.43892374634742736816, 0.43786296248435974121, 0.44249144196510314941, 0.4526284337043762207, 0.4679025113582611084, 0.48781093955039978027, 0.51178663969039939197, 0.53925532102584861072, 0.56967467069625832288, 0.60255628824234008789, 0.63747328519821166992, 0.67405968904495239258, 0.71200460195541381836, 0.75104504823684692383, 0.79095822572708129883, 0.83155435323715209961, 0.87267065048217773438, 0.91416591405868530273, 0.95591592788696289062, 0.99781036376953158307, 1.03974926471710160669, 1.08164107799529984888, 1.12340021133422851562, 1.1649456024169921875, 1.20619928836822509766, 1.24708533287048339844, 1.28752839565277099609, 1.32745337486267089844, 1.36678409576416015625, 1.40544342994689941406, 1.44335174560546875, 1.48042738437652587891, 1.51658558845520019531, 1.55173850059509277344, 1.58579492568969726562, 1.61866021156311035156, 1.65023648738861083984, 1.68042242527008056641, 1.70911431312561035156, 1.73620593547821044922, 1.76158988475799560547, 1.78515839576721191406, 1.80680453777313232422, 1.82642376422882080078, 1.84391582012176513672, 1.85918629169464111328, 1.87214875221252441406, 1.88272678852081298828, 1.89085566997528076172, 1.89648425579071044922, 1.89957630634307861328, 1.90011191368103027344] -incAngNor.y=[1.24284183979034423828, 1.24494469165802001953, 1.24959123134613037109, 1.25675129890441894531, 1.26637947559356689453, 1.27841651439666748047, 1.29279029369354248047, 1.30941820144653320312, 1.32820916175842285156, 1.34906482696533203125, 1.37188255786895751953, 1.39655649662017822266, 1.42297899723052978516, 1.45104277133941650391, 1.48064112663269042969, 1.51166939735412597656, 1.544025421142578125, 1.57761025428771972656, 1.61232781410217285156, 1.64808583259582519531, 1.68479526042938232422, 1.722370147705078125, 1.76072776317596435547, 1.79978764057159423828, 1.8394718170166015625, 1.87970376014709472656, 1.92040801048278808594, 1.96150946617126464844, 2.00293254852294921875, 2.04459977149963378906, 2.08643174171447753906, 2.12834453582763671875, 2.17024898529052734375, 2.21204853057861328125, 2.25363683700561523438, 2.29489541053771972656, 2.33568978309631347656, 2.37586545944213867188, 2.41524362564086914062, 2.45361447334289550781, 2.49073076248168945312, 2.5263004302978515625, 2.55997872352600097656, 2.59136152267456054688, 2.61998319625854492188, 2.64531993865966796875, 2.666805267333984375, 2.68386387825012207031, 2.69596123695373535156, 2.70266890525817871094, 2.7037296295166015625, 2.69910120964050292969, 2.68896412849426269531, 2.67369008064270019531, 2.65378165245056152344, 2.62980604171752929688, 2.60233736038207963404, 2.57191801071167036596, 2.53903651237487792969, 2.50411939620971679688, 2.46753287315368652344, 2.42958807945251464844, 2.39054751396179199219, 2.35063457489013671875, 2.31003832817077636719, 2.26892209053039550781, 2.22742676734924316406, 2.18567681312561035156, 2.1437823772430415481, 2.10184335708618208471, 2.05995154380798384253, 2.01819252967834472656, 1.97664701938629150391, 1.93539333343505859375, 1.89450728893280029297, 1.85406422615051269531, 1.81413936614990234375, 1.77480852603912353516, 1.73614919185638427734, 1.69824087619781494141, 1.6611652374267578125, 1.62500703334808349609, 1.58985412120819091797, 1.55579781532287597656, 1.52293241024017333984, 1.49135625362396240234, 1.461170196533203125, 1.43247830867767333984, 1.40538668632507324219, 1.38000273704528808594, 1.35643422603607177734, 1.33478820323944091797, 1.31516885757446289062, 1.29767692089080810547, 1.28240633010864257812, 1.26944386959075927734, 1.25886583328247070312, 1.25073695182800292969, 1.24510836601257324219, 1.24201631546020507812, 1.24148070812225341797] -incAngHor.y=[2.81305193901062011719, 2.80618309974670410156, 2.79151177406311035156, 2.76997661590576171875, 2.74271082878112792969, 2.71082997322082519531, 2.67531418800354003906, 2.63696885108947753906, 2.5964336395263671875, 2.55420756340026855469, 2.51067972183227539062, 2.46615433692932128906, 2.420871734619140625, 2.3750247955322265625, 2.32877087593078613281, 2.28224062919616699219, 2.23554468154907226562, 2.18877911567687988281, 2.14202928543090820312, 2.09537220001220703125, 2.0488796234130859375, 2.00261950492858886719, 1.95665705204010009766, 1.91105723381042480469, 1.86588442325592041016, 1.82120454311370849609, 1.77708482742309570312, 1.73359513282775878906, 1.69080889225006081311, 1.64880287647247314453, 1.60765850543975830078, 1.56746220588684082031, 1.52830553054809570312, 1.4902858734130859375, 1.45350670814514137952, 1.41807758808136008533, 1.38411402702331542969, 1.35173749923706054688, 1.32107460498809814453, 1.29225659370422363281, 1.26541757583618164062, 1.24069356918334960938, 1.21821987628936767578, 1.19812929630279541016, 1.18054842948913574219, 1.16559541225433349609, 1.15337598323822021484, 1.14398074150085449219, 1.13748204708099365234, 1.13393104076385498047, 1.13335645198822021484, 1.13576281070709228516, 1.14113080501556396484, 1.14941751956939697266, 1.16055858135223388672, 1.17447018623352072986, 1.19105195999145530017, 1.2101901769638059303, 1.23176109790802001953, 1.25563383102416992188, 1.28167390823364257812, 1.30974531173706054688, 1.33971273899078369141, 1.37144386768341064453, 1.40481007099151611328, 1.43968784809112548828, 1.47595930099487304688, 1.51351249217987060547, 1.55224156379699729236, 1.59204697608947709497, 1.63283455371856645044, 1.67451620101928710938, 1.7170085906982421875, 1.7602329254150390625, 1.80411458015441894531, 1.84858226776123046875, 1.89356791973114013672, 1.93900477886199951172, 1.98482799530029296875, 2.03097295761108398438, 2.07737421989440917969, 2.12396478652954101562, 2.17067456245422363281, 2.21742796897888183594, 2.26414346694946289062, 2.31072854995727539062, 2.35707831382751464844, 2.40306949615478515625, 2.44855546951293945312, 2.49335718154907226562, 2.53725266456604003906, 2.57996344566345214844, 2.62113404273986816406, 2.66030931472778320312, 2.69690608978271484375, 2.73018407821655273438, 2.75923013687133789062, 2.78297567367553710938, 2.800281524658203125, 2.81011605262756347656, 2.81179761886596679688] +last-generated=2022-05-18 +statistics-simulation= +{ + "linear": " ", + "nonlinear": "1", + "numerical Jacobians": "0" +} +time=[0e+00, 8.64e+04] +incAngHor.y=[2.811343431472778e+00, 2.804518461227417e+00, 2.789935827255249e+00, 2.768519639968872e+00, 2.741388559341431e+00, 2.709646940231323e+00, 2.674267530441284e+00, 2.636052370071411e+00, 2.595638751983643e+00, 2.553526639938354e+00, 2.510104656219482e+00, 2.465677976608276e+00, 2.420488119125366e+00, 2.374728679656982e+00, 2.328557252883911e+00, 2.282105684280396e+00, 2.235485315322876e+00, 2.18879246711731e+00, 2.142112731933594e+00, 2.095524072647095e+00, 2.049098253250122e+00, 2.00290322303772e+00, 1.957005262374878e+00, 1.911468863487244e+00, 1.866358876228333e+00, 1.821741223335266e+00, 1.77768337726593e+00, 1.734255433082581e+00, 1.691530704498291e+00, 1.649586081504822e+00, 1.608502984046936e+00, 1.568367719650269e+00, 1.529271960258484e+00, 1.491313099861145e+00, 1.454594254493713e+00, 1.419224858283997e+00, 1.38532018661499e+00, 1.353001594543457e+00, 1.322395205497742e+00, 1.293631792068481e+00, 1.266845226287842e+00, 1.242170929908752e+00, 1.219743728637695e+00, 1.199695706367493e+00, 1.182152986526489e+00, 1.167232990264893e+00, 1.155041098594666e+00, 1.145667314529419e+00, 1.139183521270752e+00, 1.135640859603882e+00, 1.135067582130432e+00, 1.137468218803406e+00, 1.142823696136475e+00, 1.151091456413269e+00, 1.162207245826721e+00, 1.176087856292725e+00, 1.192633271217346e+00, 1.211730480194092e+00, 1.233256340026855e+00, 1.257080554962158e+00, 1.283069014549255e+00, 1.311086416244507e+00, 1.34099805355072e+00, 1.372671723365784e+00, 1.40597927570343e+00, 1.440797567367554e+00, 1.477008819580078e+00, 1.514501333236694e+00, 1.55316960811615e+00, 1.59291386604309e+00, 1.63364028930664e+00, 1.675260543823242e+00, 1.7176913022995e+00, 1.760854005813599e+00, 1.804673790931702e+00, 1.849079370498657e+00, 1.894002199172974e+00, 1.939375877380371e+00, 1.985135078430176e+00, 2.031214952468872e+00, 2.077549934387207e+00, 2.124072790145874e+00, 2.170712947845459e+00, 2.217394828796387e+00, 2.264035701751709e+00, 2.310543298721313e+00, 2.356811761856079e+00, 2.402717590332031e+00, 2.448112726211548e+00, 2.492817878723145e+00, 2.536610126495361e+00, 2.579210042953491e+00, 2.620261907577515e+00, 2.659310340881348e+00, 2.695772886276245e+00, 2.728912353515625e+00, 2.757821321487427e+00, 2.781440734863281e+00, 2.798645257949829e+00, 2.808418035507202e+00, 2.810088634490967e+00] +incAngNor.y=[1.241130709648132e+00, 1.243238925933838e+00, 1.247896909713745e+00, 1.255074739456177e+00, 1.264726519584656e+00, 1.276792526245117e+00, 1.291200637817383e+00, 1.307867527008057e+00, 1.326701760292053e+00, 1.347604632377625e+00, 1.37047290802002e+00, 1.395200371742249e+00, 1.421679139137268e+00, 1.449801206588745e+00, 1.479459881782532e+00, 1.510550022125244e+00, 1.542969346046448e+00, 1.576618671417236e+00, 1.611401677131653e+00, 1.647226095199585e+00, 1.684002637863159e+00, 1.721645474433899e+00, 1.760071635246277e+00, 1.799200892448425e+00, 1.838955163955688e+00, 1.879258155822754e+00, 1.920034408569336e+00, 1.961208939552307e+00, 2.002706289291382e+00, 2.044449329376221e+00, 2.086358547210693e+00, 2.128350496292114e+00, 2.170336008071899e+00, 2.21221923828125e+00, 2.253893852233887e+00, 2.295241594314575e+00, 2.336128711700439e+00, 2.376400709152222e+00, 2.415879011154175e+00, 2.454354047775269e+00, 2.491578578948975e+00, 2.527260065078735e+00, 2.561053037643433e+00, 2.592551946640015e+00, 2.621288776397705e+00, 2.646735906600952e+00, 2.668322324752808e+00, 2.685466766357422e+00, 2.697628021240234e+00, 2.704372882843018e+00, 2.705439567565918e+00, 2.700785636901855e+00, 2.69059419631958e+00, 2.675241708755493e+00, 2.655237197875977e+00, 2.63115406036377e+00, 2.603571653366088e+00, 2.573036193847657e+00, 2.540039300918579e+00, 2.505009174346924e+00, 2.468313217163086e+00, 2.430262565612793e+00, 2.391120672225952e+00, 2.351109743118286e+00, 2.31041955947876e+00, 2.269212961196899e+00, 2.227630376815796e+00, 2.185795545578003e+00, 2.143819093704223e+00, 2.101800441741944e+00, 2.059830665588379e+00, 2.017995357513428e+00, 1.976375102996826e+00, 1.93504786491394e+00, 1.894089460372925e+00, 1.853575110435486e+00, 1.813579678535461e+00, 1.774179220199585e+00, 1.735450983047485e+00, 1.697474479675293e+00, 1.66033136844635e+00, 1.624106526374817e+00, 1.588887810707092e+00, 1.554766535758972e+00, 1.521837472915649e+00, 1.490198731422424e+00, 1.459951758384705e+00, 1.431200742721558e+00, 1.404052019119263e+00, 1.378613352775574e+00, 1.354993104934692e+00, 1.333298444747925e+00, 1.313634276390076e+00, 1.296101570129395e+00, 1.280794978141785e+00, 1.267801284790039e+00, 1.257197618484497e+00, 1.249048709869385e+00, 1.243406295776367e+00, 1.240306496620178e+00, 1.239769577980042e+00] +incAngWes.y=[1.589714407920837e+00, 1.647484421730042e+00, 1.7052081823349e+00, 1.762848734855652e+00, 1.820367455482483e+00, 1.877721786499023e+00, 1.93486475944519e+00, 1.991743206977844e+00, 2.048295736312866e+00, 2.104450464248657e+00, 2.160121202468872e+00, 2.215204477310181e+00, 2.26957368850708e+00, 2.323071956634521e+00, 2.375503063201904e+00, 2.4266197681427e+00, 2.476106643676758e+00, 2.523560762405396e+00, 2.568466186523438e+00, 2.610167026519775e+00, 2.647841930389404e+00, 2.680494546890259e+00, 2.706985473632812e+00, 2.726128816604614e+00, 2.736876964569092e+00, 2.738555908203125e+00, 2.731053829193115e+00, 2.714855670928955e+00, 2.690901041030884e+00, 2.66035008430481e+00, 2.624375581741333e+00, 2.58403205871582e+00, 2.540204763412476e+00, 2.49360728263855e+00, 2.444803714752197e+00, 2.394234657287598e+00, 2.342244386672974e+00, 2.289103269577026e+00, 2.235024690628052e+00, 2.180178165435791e+00, 2.124700307846069e+00, 2.068702936172485e+00, 2.012277364730835e+00, 1.955500245094299e+00, 1.898436546325684e+00, 1.841142296791077e+00, 1.783666491508484e+00, 1.726052761077881e+00, 1.668341159820557e+00, 1.610569000244141e+00, 1.552772045135498e+00, 1.494985461235046e+00, 1.437244415283203e+00, 1.37958550453186e+00, 1.322047710418701e+00, 1.264672994613647e+00, 1.207508206367492e+00, 1.150606274604798e+00, 1.094028472900391e+00, 1.037846326828003e+00, 9.821453094482422e-01, 9.27028477191925e-01, 8.726218342781067e-01, 8.190814256668091e-01, 7.666023969650269e-01, 7.154311537742615e-01, 6.658813953399658e-01, 6.18354320526123e-01, 5.733637213706967e-01, 5.315638780593875e-01, 4.937745630741122e-01, 4.609909057617188e-01, 4.343544542789459e-01, 4.150556027889252e-01, 4.041505753993988e-01, 4.023244976997375e-01, 4.096992611885071e-01, 4.257959425449371e-01, 4.496763050556183e-01, 4.801767468452454e-01, 5.161201357841492e-01, 5.5644690990448e-01, 6.00267767906189e-01, 6.468656063079834e-01, 6.956746578216553e-01, 7.462522983551025e-01, 7.982531189918518e-01, 8.514062762260437e-01, 9.054980278015137e-01, 9.60358202457428e-01, 1.015849828720093e+00, 1.071861624717712e+00, 1.128301620483398e+00, 1.185093402862549e+00, 1.242171764373779e+00, 1.29948103427887e+00, 1.356972217559814e+00, 1.414601445198059e+00, 1.472328901290894e+00, 1.530117273330688e+00, 1.587931036949158e+00] +incAngSou.y=[1.900461912155151e+00, 1.898353695869446e+00, 1.893695712089539e+00, 1.886518001556396e+00, 1.876866221427917e+00, 1.864800095558167e+00, 1.85039210319519e+00, 1.833725094795227e+00, 1.81489098072052e+00, 1.793987989425659e+00, 1.771119713783264e+00, 1.746392250061035e+00, 1.719913601875305e+00, 1.691791415214539e+00, 1.662132859230042e+00, 1.63104259967804e+00, 1.598623275756836e+00, 1.564974069595337e+00, 1.530190944671631e+00, 1.494366526603699e+00, 1.457589983940125e+00, 1.419947266578674e+00, 1.381521105766296e+00, 1.342391848564148e+00, 1.302637457847595e+00, 1.26233446598053e+00, 1.221558213233948e+00, 1.180383682250977e+00, 1.138886451721191e+00, 1.097143411636353e+00, 1.05523419380188e+00, 1.013242244720459e+00, 9.712566137313843e-01, 9.293734431266785e-01, 8.876988291740415e-01, 8.463509678840639e-01, 8.054640293121338e-01, 7.651919722557068e-01, 7.257136702537537e-01, 6.872385740280151e-01, 6.500141024589539e-01, 6.143325567245483e-01, 5.805396437644958e-01, 5.490406155586243e-01, 5.203038454055786e-01, 4.948567450046539e-01, 4.732702374458313e-01, 4.56125944852829e-01, 4.439645409584045e-01, 4.372198879718781e-01, 4.361531138420105e-01, 4.408071041107178e-01, 4.509985744953156e-01, 4.663509726524353e-01, 4.863554239273071e-01, 5.104386210441592e-01, 5.380210280418398e-01, 5.685563683509824e-01, 6.015533804893494e-01, 6.365834474563599e-01, 6.732794046401978e-01, 7.113299965858459e-01, 7.504720687866211e-01, 7.904828786849976e-01, 8.311730027198792e-01, 8.723797798156738e-01, 9.139623641967773e-01, 9.55797016620636e-01, 9.977735280990604e-01, 1.039792299270629e+00, 1.081762075424194e+00, 1.123597383499146e+00, 1.165217518806458e+00, 1.206544756889343e+00, 1.247503161430359e+00, 1.288017630577087e+00, 1.328012943267822e+00, 1.367413401603699e+00, 1.406141638755798e+00, 1.444118142127991e+00, 1.481261253356934e+00, 1.517486095428467e+00, 1.552704811096191e+00, 1.586826086044312e+00, 1.619755148887634e+00, 1.651393890380859e+00, 1.681640863418579e+00, 1.710391998291016e+00, 1.737540721893311e+00, 1.76297926902771e+00, 1.786599516868591e+00, 1.808294177055359e+00, 1.827958345413208e+00, 1.845491051673889e+00, 1.860797762870789e+00, 1.873791337013245e+00, 1.884395122528076e+00, 1.892543911933899e+00, 1.898186445236206e+00, 1.901286125183105e+00, 1.901823043823242e+00] +incAngEas.y=[1.551878213882446e+00, 1.494108200073242e+00, 1.436384558677673e+00, 1.378743886947632e+00, 1.32122528553009e+00, 1.26387095451355e+00, 1.206727862358093e+00, 1.149849414825439e+00, 1.093296885490417e+00, 1.037142276763916e+00, 9.814715385437012e-01, 9.263882637023926e-01, 8.720190525054932e-01, 8.18520724773407e-01, 7.660894989967345e-01, 7.149728536605835e-01, 6.654860377311707e-01, 6.180319786071776e-01, 5.731264352798462e-01, 5.314255356788635e-01, 4.937508404254913e-01, 4.610980749130249e-01, 4.346072375774384e-01, 4.154638648033142e-01, 4.047156274318695e-01, 4.030367434024811e-01, 4.105388522148132e-01, 4.267368912696838e-01, 4.506916999816896e-01, 4.812425374984741e-01, 5.172170400619507e-01, 5.575606226921082e-01, 6.013879776000977e-01, 6.479852795600891e-01, 6.967889666557314e-01, 7.473580837249754e-01, 7.993481755256653e-01, 8.524892926216125e-01, 9.065679907798767e-01, 9.614145755767822e-01, 1.016892194747925e+00, 1.072889685630798e+00, 1.129315376281738e+00, 1.186092376708984e+00, 1.2431560754776e+00, 1.300450325012207e+00, 1.357926249504089e+00, 1.415539979934692e+00, 1.473251581192017e+00, 1.531023621559143e+00, 1.588820576667786e+00, 1.646607279777527e+00, 1.70434832572937e+00, 1.762007117271423e+00, 1.819544911384583e+00, 1.876919627189637e+00, 1.934084415435791e+00, 1.990986347198486e+00, 2.047564268112183e+00, 2.10374641418457e+00, 2.159447431564331e+00, 2.214564085006714e+00, 2.268970727920532e+00, 2.322511196136475e+00, 2.374990224838257e+00, 2.426161527633667e+00, 2.475711345672607e+00, 2.52323842048645e+00, 2.568228960037232e+00, 2.610028743743896e+00, 2.647818088531494e+00, 2.680601835250854e+00, 2.70723819732666e+00, 2.726536989212036e+00, 2.737442016601562e+00, 2.739268064498901e+00, 2.731893301010132e+00, 2.715796709060669e+00, 2.691916465759277e+00, 2.661415815353394e+00, 2.625472545623779e+00, 2.585145711898804e+00, 2.541324853897095e+00, 2.49472713470459e+00, 2.445918083190918e+00, 2.395340442657471e+00, 2.343339443206787e+00, 2.290186405181885e+00, 2.23609471321106e+00, 2.181234359741211e+00, 2.12574291229248e+00, 2.069730997085571e+00, 2.013291120529175e+00, 1.956499338150024e+00, 1.899420857429504e+00, 1.842111587524414e+00, 1.784620404243469e+00, 1.726991176605225e+00, 1.66926372051239e+00, 1.611475348472595e+00, 1.553661704063416e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_SolarGeometry_Examples_ZenithAngle.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_SolarGeometry_Examples_ZenithAngle.txt index 8cccedc8a0..4028d42c8d 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_SolarGeometry_Examples_ZenithAngle.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_SolarGeometry_Examples_ZenithAngle.txt @@ -1,4 +1,9 @@ -last-generated=2015-05-08 -statistics-simulation={'numerical Jacobians': '0', 'nonlinear': '1', 'linear': ' '} -zen.y=[2.16456365585327148438, 2.03073477745056152344, 1.89712202548980712891, 1.76410377025604248047, 1.63206088542938232422, 1.50142896175384521484, 1.37275087833404541016, 1.24674534797668457031, 1.12440633773803710938, 1.00715208053588867188, 0.89704811573028564453, 0.79712319374084472656, 0.71172797679901123047, 0.64668452739715576172, 0.60858184099197387695, 0.60256808996200561523, 0.62956613302230834961, 0.68567955493927001953, 0.76450675725936889648, 0.85979813337326049805, 0.96666508913040161133, 1.08164334297180175781, 1.20236217975616455078, 1.32720148563385009766, 1.45503580570220947266, 1.58506131172180175781, 1.71668183803558349609, 1.84943079948425292969, 1.98291456699371337891, 2.1167621612548828125, 2.250568389892578125, 2.38380551338195800781, 2.51564621925354003906, 2.64454174041748046875, 2.76701235771179199219, 2.87367463111877441406, 2.9376220703125, 2.91834139823913574219, 2.83098506927490234375, 2.71565365791320800781, 2.58976387977600097656, 2.45932102203369140625, 2.32672953605651855469, 2.19314646720886230469, 2.05923867225646972656, 1.92546665668487548828, 1.7922115325927734375, 1.65984690189361572266, 1.52879011631011962891, 1.39955377578735351562, 1.27280962467193603516, 1.14947986602783203125, 1.03087365627288818359, 0.9188931584358215332, 0.81633079051971435547, 0.72723448276519775391, 0.65714663267135620117, 0.61265677213668823242, 0.59950923919677734375, 0.61970764398574829102, 0.67023807764053344727, 0.74493825435638427734, 0.83734136819839477539, 0.94222342967987060547, 1.05583536624908447266, 1.17560517787933349609, 1.29977977275848388672, 1.42714774608612060547, 1.55685067176818847656, 1.68825793266296386719, 1.82088303565979003906, 1.95432353019714355469, 2.08821082115173339844, 2.22215628623962402344, 2.35567426681518554688, 2.48803400993347167969, 2.61791586875915527344, 2.74246811866760253906, 2.85424947738647460938, 2.93138790130615234375, 2.93127226829528808594, 2.85399317741394042969, 2.74215435981750488281, 2.61757135391235351562, 2.4876651763916015625, 2.35528135299682617188, 2.221736907958984375, 2.08776116371154785156, 1.95383882522583007812, 1.82035756111145019531, 1.68768477439880371094, 1.55622172355651855469, 1.42645359039306640625, 1.29900920391082763672, 1.17474496364593505859, 1.05487012863159179688, 0.94113588333129882812, 0.83611476421356201172, 0.7435614466667175293, 0.66871696710586547852, 0.61808133125305175781] -time=[100000., 300000.] +last-generated=2022-05-18 +statistics-simulation= +{ + "linear": " ", + "nonlinear": "1", + "numerical Jacobians": "0" +} +time=[1e+05, 3e+05] +zen.y=[2.248226642608643e+00, 2.14016318321228e+00, 2.032572746276855e+00, 1.926326513290405e+00, 1.822237253189087e+00, 1.721133232116699e+00, 1.623912453651428e+00, 1.531585812568665e+00, 1.445311069488525e+00, 1.366414070129395e+00, 1.296388387680054e+00, 1.236859321594238e+00, 1.18949556350708e+00, 1.155861854553223e+00, 1.137222647666931e+00, 1.134341716766357e+00, 1.147341132164001e+00, 1.175678372383118e+00, 1.218248248100281e+00, 1.27357029914856e+00, 1.339993119239807e+00, 1.415862321853638e+00, 1.499629855155945e+00, 1.589907288551331e+00, 1.685477018356323e+00, 1.785277724266052e+00, 1.888374090194702e+00, 1.993916749954224e+00, 2.101092338562012e+00, 2.209058046340942e+00, 2.316844701766968e+00, 2.423197984695435e+00, 2.526289701461792e+00, 2.623171091079712e+00, 2.70874810218811e+00, 2.774271249771118e+00, 2.807207345962524e+00, 2.797836065292358e+00, 2.749225616455078e+00, 2.673686027526855e+00, 2.5823974609375e+00, 2.482349157333374e+00, 2.377545356750488e+00, 2.270358800888062e+00, 2.162322282791138e+00, 2.054541110992432e+00, 1.947914242744446e+00, 1.84326159954071e+00, 1.74140453338623e+00, 1.643223166465759e+00, 1.549702167510986e+00, 1.461966991424561e+00, 1.381308674812317e+00, 1.309189200401306e+00, 1.247214555740356e+00, 1.197059273719788e+00, 1.160330414772034e+00, 1.138379096984863e+00, 1.132094025611877e+00, 1.141741991043091e+00, 1.166915774345398e+00, 1.206612586975098e+00, 1.259409666061401e+00, 1.323671102523804e+00, 1.397727489471436e+00, 1.479998588562012e+00, 1.56905722618103e+00, 1.663648247718811e+00, 1.762677788734436e+00, 1.865185499191284e+00, 1.970306277275085e+00, 2.077222347259521e+00, 2.185101985931396e+00, 2.293009996414185e+00, 2.399766445159912e+00, 2.503693103790283e+00, 2.602137327194214e+00, 2.690572261810303e+00, 2.761157512664795e+00, 2.801990509033203e+00, 2.801880836486816e+00, 2.760861873626709e+00, 2.690151214599609e+00, 2.601634979248047e+00, 2.503132343292236e+00, 2.399158000946045e+00, 2.292357444763184e+00, 2.184405088424683e+00, 2.076478719711304e+00, 1.96951162815094e+00, 1.86433482170105e+00, 1.761765360832214e+00, 1.662667870521545e+00, 1.568002581596375e+00, 1.478863835334778e+00, 1.396507620811462e+00, 1.322363376617432e+00, 1.25801420211792e+00, 1.205134153366089e+00, 1.165364384651184e+00, 1.140133619308472e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_SolarIrradiation_BaseClasses_Examples_RelativeAirMass.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_SolarIrradiation_BaseClasses_Examples_RelativeAirMass.txt index 5c785c404e..eebd1d15a7 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_SolarIrradiation_BaseClasses_Examples_RelativeAirMass.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_SolarIrradiation_BaseClasses_Examples_RelativeAirMass.txt @@ -1,4 +1,9 @@ -last-generated=2015-05-08 -statistics-simulation={'numerical Jacobians': '0', 'nonlinear': '1', 'linear': ' '} -relAirMas.relAirMas=[36.687042236328125, 36.687042236328125, 36.687042236328125, 10.55069732666015625, 1.86432063579559326172, 1.36908829212188720703, 1.67824554443359375, 5.35386514663698775962, 36.687042236328125, 36.687042236328125, 36.687042236328125, 36.687042236328125, 36.687042236328125, 10.660846710205078125, 1.86513710021972500819, 1.36749410629272460938, 1.67325425148010253906, 5.29326295852661132812, 36.687042236328125, 36.687042236328125, 36.687042236328125, 36.687042236328125, 36.687042236328125, 10.7661876678466796875, 1.86567199230194091797, 1.36575293540954589844, 1.66811323165893554688, 5.23295879364023086566, 36.687042236328125, 36.687042236328125, 36.687042236328125, 36.687042236328125, 36.687042236328125, 10.8662815093994140625, 1.86592423915863037109, 1.36386704444885253906, 1.66282951831817626953, 5.17302036285400390625, 36.687042236328125, 36.687042236328125, 36.687042236328125, 36.687042236328125, 36.687042236328125, 10.960697174072265625, 1.86589288711547851562, 1.36183917522430419922, 1.65740978717803955078, 5.11351060867309570312, 36.687042236328125, 36.687042236328125, 36.687042236328125, 36.687042236328125, 36.687042236328125, 11.04901123046875, 1.86557769775389958866, 1.35967206954956054688, 1.65186131000519442757, 5.05448722839349873226, 36.687042236328125, 36.687042236328125, 36.687042236328125, 36.687042236328125, 36.687042236328125, 11.1308116912841796875, 1.86497867107391357422, 1.35736870765686035156, 1.64619100093841552734, 4.99600362777709960938, 36.687042236328125, 36.687042236328125, 36.687042236328125, 36.687042236328125, 36.687042236328125, 11.2057018280029296875, 1.86409628391265869141, 1.35493206977844238281, 1.64040589332580566406, 4.93810987472534179688, 36.687042236328125, 36.687042236328125, 36.687042236328125, 36.687042236328125, 36.687042236328125, 11.273303985595703125, 1.86293172836303710938, 1.35236561298370361328, 1.63451337814331054688, 4.88085079193115234375, 36.687042236328125, 36.687042236328125, 36.687042236328125, 36.687042236328125, 36.687042236328125, 11.33326435089111328125, 1.86148607730865478516, 1.34967255592346191406, 1.62852025032043457031, 4.82426786422729492188, 36.687042236328125, 36.687042236328125, 36.687042236328125] -time=[0., 864000.] +last-generated=2022-05-18 +statistics-simulation= +{ + "linear": " ", + "nonlinear": "1", + "numerical Jacobians": "0" +} +time=[0e+00, 8.64e+05] +relAirMas.relAirMas=[3.66783561706543e+01, 3.66783561706543e+01, 3.66783561706543e+01, 3.66783561706543e+01, 3.052236080169678e+00, 2.03821063041687e+00, 2.648365497589111e+00, 2.227817916870123e+01, 3.66783561706543e+01, 3.66783561706543e+01, 3.66783561706543e+01, 3.66783561706543e+01, 3.66783561706543e+01, 3.66783561706543e+01, 3.050277948379513e+00, 2.033530473709106e+00, 2.635053873062134e+00, 2.144209289550781e+01, 3.66783561706543e+01, 3.66783561706543e+01, 3.66783561706543e+01, 3.66783561706543e+01, 3.66783561706543e+01, 3.66783561706543e+01, 3.047348976135254e+00, 2.028439521789551e+00, 2.621248960494995e+00, 2.063165092468289e+01, 3.66783561706543e+01, 3.66783561706543e+01, 3.66783561706543e+01, 3.66783561706543e+01, 3.66783561706543e+01, 3.66783561706543e+01, 3.043453931808472e+00, 2.022947072982788e+00, 2.606977462768555e+00, 1.984834289550781e+01, 3.66783561706543e+01, 3.66783561706543e+01, 3.66783561706543e+01, 3.66783561706543e+01, 3.66783561706543e+01, 3.66783561706543e+01, 3.03860068321228e+00, 2.017062902450562e+00, 2.592265844345093e+00, 1.909320259094238e+01, 3.66783561706543e+01, 3.66783561706543e+01, 3.66783561706543e+01, 3.66783561706543e+01, 3.66783561706543e+01, 3.66783561706543e+01, 3.032798290252671e+00, 2.010797262191772e+00, 2.577140569686903e+00, 1.83668651580807e+01, 3.66783561706543e+01, 3.66783561706543e+01, 3.66783561706543e+01, 3.66783561706543e+01, 3.66783561706543e+01, 3.66783561706543e+01, 3.02605938911438e+00, 2.004161596298218e+00, 2.561628341674805e+00, 1.766961479187012e+01, 3.66783561706543e+01, 3.66783561706543e+01, 3.66783561706543e+01, 3.66783561706543e+01, 3.66783561706543e+01, 3.66783561706543e+01, 3.018397569656372e+00, 1.997166752815247e+00, 2.545756101608276e+00, 1.700143623352051e+01, 3.66783561706543e+01, 3.66783561706543e+01, 3.66783561706543e+01, 3.66783561706543e+01, 3.66783561706543e+01, 3.66783561706543e+01, 3.009829044342041e+00, 1.989825129508972e+00, 2.529550075531006e+00, 1.63620662689209e+01, 3.66783561706543e+01, 3.66783561706543e+01, 3.66783561706543e+01, 3.66783561706543e+01, 3.66783561706543e+01, 3.66783561706543e+01, 3.000371932983398e+00, 1.982148885726929e+00, 2.513036727905273e+00, 1.575103569030762e+01, 3.66783561706543e+01, 3.66783561706543e+01, 3.66783561706543e+01] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_SolarIrradiation_BaseClasses_Examples_SkyClearness.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_SolarIrradiation_BaseClasses_Examples_SkyClearness.txt index d862ede7ea..eeb26cc5ad 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_SolarIrradiation_BaseClasses_Examples_SkyClearness.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_SolarIrradiation_BaseClasses_Examples_SkyClearness.txt @@ -1,9 +1,9 @@ -last-generated=2016-09-23 +last-generated=2022-05-18 statistics-simulation= { - "numerical Jacobians": "0", - "nonlinear": "1", - "linear": " " + "linear": " ", + "nonlinear": "1", + "numerical Jacobians": "0" } -skyCle.skyCle=[1.00999999046325683594, 1.00999999046325683594, 1.00999999046325683594, 1.00999999046325683594, 1.00999999046325683594, 1.00999999046325683594, 1.00999999046325683594, 1.00999999046325683594, 1.00999999046325683594, 1.00999999046325683594, 4.75662994384765625, 1.00999999046325683594, 1.00999999046325683594, 1.15016782283782958984, 1.00999999046325683594, 1.00999999046325683594, 5.58934926986694335938, 1.00999999046325683594, 1.00999999046325683594, 3.26789379119873046875, 1.00999999046325683594, 1.00999999046325683594, 1.49232983589172363281, 1.00999999046325683594, 1.00999999046325683594, 3.40139460563659667969, 1.00999999046325683594, 1.00999999046325683594, 2.23034477233887384884, 1.00999999046325683594, 1.00999999046325683594, 1.00999999046325683594, 1.00999999046325683594, 1.00999999046325683594, 1.15015101432800292969, 1.00999999046325683594, 1.00999999046325683594, 4.1006679534912109375, 1.00999999046325683594, 1.00999999046325683594, 1.77885675430297851562, 1.00999999046325683594, 1.00999999046325683594, 1.36817574501037597656, 1.00999999046325683594, 1.00999999046325683594, 1.13719546794891357422, 1.00999999046325683594, 1.00999999046325683594, 1.00999999046325683594, 1.00999999046325683594, 1.00999999046325683594, 1.00999999046325683594, 1.00999999046325683594, 1.00999999046325683594, 2.74600148200982285829, 1.00999999046325683594, 1.00999999046325683594, 1.05341708660125732422, 1.00999999046325683594, 1.00999999046325683594, 2.21888232231140136719, 1.00999999046325683594, 1.00999999046325683594, 1.56545436382293701172, 1.00999999046325683594, 1.02566874027252197266, 1.00999999046325683594, 1.00999999046325683594, 1.00999999046325683594, 1.55841624736785888672, 1.00999999046325683594, 1.00999999046325683594, 1.10164964199066162109, 1.00999999046325683594, 1.8610248565673828125, 1.94205701351165771484, 1.00999999046325683594, 1.01512897014617919922, 1.00999999046325683594, 1.00999999046325683594, 1.0258541107177734375, 1.26207506656646728516, 1.00999999046325683594, 1.00999999046325683594, 1.00999999046325683594, 1.00999999046325683594, 1.00999999046325683594, 1.00999999046325683594, 1.00999999046325683594, 1.19488739967346191406, 1.00999999046325683594, 1.00999999046325683594, 1.03770351409912109375, 1.00999999046325683594, 1.00999999046325683594, 1.00999999046325683594, 1.07614302635192871094, 1.00999999046325683594, 1.01026940345764160156, 1.02130401134490966797] -time=[100000., 3000000.] +time=[1e+05, 3e+06] +skyCle.skyCle=[1.009999990463257e+00, 1.009999990463257e+00, 1.009999990463257e+00, 1.009999990463257e+00, 1.009999990463257e+00, 1.009999990463257e+00, 1.009999990463257e+00, 1.009999990463257e+00, 1.009999990463257e+00, 1.009999990463257e+00, 5.999967575073242e+00, 1.009999990463257e+00, 1.009999990463257e+00, 1.199549198150635e+00, 1.009999990463257e+00, 1.009999990463257e+00, 7.267829895019531e+00, 1.009999990463257e+00, 1.009999990463257e+00, 4.135077953338623e+00, 1.009999990463257e+00, 1.009999990463257e+00, 1.673410773277283e+00, 1.009999990463257e+00, 1.009999990463257e+00, 4.433314800262451e+00, 1.009999990463257e+00, 1.009999990463257e+00, 2.814856767654468e+00, 1.009999990463257e+00, 1.009999990463257e+00, 1.009999990463257e+00, 1.009999990463257e+00, 1.009999990463257e+00, 1.204421997070312e+00, 1.009999990463257e+00, 1.009999990463257e+00, 6.074197769165039e+00, 1.009999990463257e+00, 1.009999990463257e+00, 2.351271152496338e+00, 1.009999990463257e+00, 1.009999990463257e+00, 1.627286791801453e+00, 1.009999990463257e+00, 1.009999990463257e+00, 1.225748419761658e+00, 1.009999990463257e+00, 1.009999990463257e+00, 1.009999990463257e+00, 1.009999990463257e+00, 1.093430280685425e+00, 1.009999990463257e+00, 1.009999990463257e+00, 1.009999990463257e+00, 4.958909988403196e+00, 1.009999990463257e+00, 1.122291684150691e+00, 1.132759809494019e+00, 1.009999990463257e+00, 1.015321016311646e+00, 4.232238292694092e+00, 1.009999990463257e+00, 1.198510766029358e+00, 2.625210762023926e+00, 1.009999990463257e+00, 1.220460772514343e+00, 1.009999990463257e+00, 1.009999990463257e+00, 1.009999990463257e+00, 2.856810331344604e+00, 1.009999990463257e+00, 1.022282600402832e+00, 1.499129891395569e+00, 1.009999990463257e+00, 4.99527645111084e+00, 4.649760246276855e+00, 1.009999990463257e+00, 1.021690011024475e+00, 1.009999990463257e+00, 1.009999990463257e+00, 1.083243608474731e+00, 2.418351650238037e+00, 1.009999990463257e+00, 1.012048006057739e+00, 1.009999990463257e+00, 1.009999990463257e+00, 1.009999990463257e+00, 1.027045965194702e+00, 1.009999990463257e+00, 1.413155198097229e+00, 2.303061485290527e+00, 1.009999990463257e+00, 1.106051564216614e+00, 1.034795045852661e+00, 1.009999990463257e+00, 1.017793893814087e+00, 1.454939603805542e+00, 1.009999990463257e+00, 1.018159031867981e+00, 1.172266721725464e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_SolarIrradiation_Examples_DiffusePerez.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_SolarIrradiation_Examples_DiffusePerez.txt index 0f7ea6ec05..ad7d9d2dd6 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_SolarIrradiation_Examples_DiffusePerez.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_SolarIrradiation_Examples_DiffusePerez.txt @@ -1,11 +1,11 @@ -last-generated=2016-09-23 +last-generated=2022-05-19 statistics-simulation= { - "numerical Jacobians": "0", - "nonlinear": "1", - "linear": " " + "linear": " ", + "nonlinear": "1", + "numerical Jacobians": "0" } -HDifWal.H=[0.00004927635745843872, 0.00004927163536194712, 0.00004927479312755167, 0.00004928580165142193, 0.00004930453724227846, 0.00004933079981128685, 0.00004936432014801539, 0.00004940477083437145, 0.00004945178079651669, 0.00004950495713273995, 0.00004956388147547841, 0.00004962813545716926, 0.00004969730798620731, 0.00004977099888492376, 0.00004984881888958625, 0.00004993041147827171, 0.00005001543104299344, 0.00005010356471757405, 0.00005019452146370895, 0.0548488907516002655, 1.24259078502655029297, 3.62537813186645507812, 6.1387786865234375, 9.39398956298828125, 12.7577610015869140625, 16.773967742919921875, 21.927364349365234375, 28.4593029022216796875, 37.5988616943359375, 49.342254638671875, 61.520404815673828125, 72.14450836181640625, 80.37271881103515625, 88.03841400146484375, 95.5447845458984375, 103.19678497314453125, 111.359619140625, 120.23700714111328125, 129.2937469482421875, 137.95416259765625, 145.33941650390625, 149.1007537841796875, 150.7299957275390625, 152.5284423828125, 156.8626708984375, 165.3565216064453125, 175.7214813232421875, 187.87811279296875, 196.767486572265625, 202.483367919921875, 206.496978759765625, 208.5415802001953125, 208.32586669921875, 206.0925445556640625, 202.8089599609375, 208.0628662109375, 206.1946563720703125, 206.31005859375, 224.8837127685546875, 245.3067779541015625, 249.4061279296875, 248.7341766357421875, 229.684600830078125, 227.76629638671875, 205.614898681640625, 200.4626922607421875, 191.1058807373046875, 177.8403167724609375, 161.601654052734375, 143.262176513671875, 119.70606231689453125, 87.672576904296875, 59.146942138671875, 41.859149932861328125, 29.706417083740234375, 21.16530609130859375, 14.83728885650634765625, 10.67312145233154296875, 7.75449037551879882812, 5.1005687713623046875, 2.99502086639404296875, 1.69122982025146484375, 1.15194487571716308594, 0.65702414512634277344, 0.25336971879005432129, 0.02431334368884563446, 0.00005002507168683223, 0.00004993920447304845, 0.00004985669511370361, 0.00004977788921678439, 0.00004970313966623507, 0.00004963283208780922, 0.0000495673666591756, 0.00004950715810991824, 0.00004945262480759993, 0.00004940419239574112, 0.00004936226105201058, 0.00004932721640216187, 0.00004929939677822404, 0.00004927908958052285, 0.00004926650581182912] -HDifRoo.H=[0.00009999999747378752, 0.00009999999747378752, 0.00009999999747378752, 0.00009999999747378752, 0.00009999999747378752, 0.00009999999747378752, 0.00009999999747378752, 0.00009999999747378752, 0.00009999999747378752, 0.00009999999747378752, 0.00009999999747378752, 0.00009999999747378752, 0.00009999999747378752, 0.00009999999747378752, 0.00009999999747378752, 0.00009999999747378752, 0.00009999999747378752, 0.00009999999747378752, 0.00009999999747378752, 0.10902377963066101074, 2.44331502914428710938, 6.99351263046264648438, 11.49546527862548828125, 18.195156097412109375, 24.58629608154296875, 32.2524261474609375, 42.103427886962890625, 54.789890289306640625, 73.0095062255859375, 97.04528045654296875, 122.38564300537109375, 144.49322509765625, 161.217559814453125, 176.594635009765625, 191.6505889892578125, 207.2023162841796875, 224.2374725341796875, 243.3353271484375, 263.11688232421875, 282.047454833984375, 297.877960205078125, 305.2840576171875, 307.880859375, 311.07763671875, 320.338775634765625, 339.194122314453125, 362.84332275390625, 384.88897705078125, 398.967315673828125, 405.774871826171875, 408.357269287109375, 406.270660400390625, 399.071502685546875, 387.946075439453125, 375.62152099609375, 363.364837646484375, 351.90338134765625, 341.91107177734375, 332.5667724609375, 323.632415771484375, 314.940765380859375, 307.84710693359375, 305.984039306640625, 306.005035400390625, 303.455596923828125, 294.311798095703125, 277.614013671875, 255.4469146728515625, 229.9759368896484375, 203.0692291259765625, 171.0922393798828125, 136.0260162353515625, 102.7552947998046875, 76.12857818603515625, 56.053104400634765625, 40.1754608154296875, 28.364444732666015625, 20.4836025238037109375, 14.89445400238037109375, 9.814441680908203125, 5.77138614654541015625, 3.30630922317504882812, 2.26476550102233886719, 1.29819822311401367188, 0.50286000967025756836, 0.04840908944606781006, 0.00009999999747378752, 0.00009999999747378752, 0.00009999999747378752, 0.00009999999747378752, 0.00009999999747378752, 0.00009999999747378752, 0.00009999999747378752, 0.00009999999747378752, 0.00009999999747378752, 0.00009999999747378752, 0.00009999999747378752, 0.00009999999747378752, 0.00009999999747378752, 0.00009999999747378752, 0.00009999999747378752] -HDifFlo.H=[0.0000199999994947575, 0.0000199999994947575, 0.0000199999994947575, 0.0000199999994947575, 0.0000199999994947575, 0.0000199999994947575, 0.0000199999994947575, 0.0000199999994947575, 0.0000199999994947575, 0.0000199999994947575, 0.0000199999994947575, 0.0000199999994947575, 0.0000199999994947575, 0.0000199999994947575, 0.0000199999994947575, 0.0000199999994947575, 0.0000199999994947575, 0.0000199999994947575, 0.0000199999994947575, 0.0218047555536031723, 0.48866301774978637695, 1.40504336357116699219, 2.58249449729919433594, 3.69215297698974609375, 4.89680147171020507812, 6.39828777313232421875, 8.361362457275390625, 10.950778961181640625, 14.65502071380615234375, 19.453945159912109375, 24.488800048828125, 28.8969669342041015625, 32.32355499267578125, 35.618412017822265625, 38.889148712158203125, 42.19660186767578125, 45.616455078125, 49.1982421875, 52.833171844482421875, 56.39959716796875, 59.595676422119140625, 61.15659332275390625, 61.733531951904296875, 62.398540496826171875, 64.25196075439453125, 68.2768402099609375, 73.32421875, 77.73445892333984375, 79.85933685302734375, 80.29781341552734375, 80.35269927978515625, 80.198974609375, 80.0116424560546875, 79.6936798095703125, 79.08026123046875, 78.3985595703125, 77.8780517578125, 80.8339080810546875, 91.51648712158203125, 103.66985321044921875, 110.62335205078125, 107.22917938232421875, 97.684417724609375, 85.8957672119140625, 75.28497314453125, 68.7678680419921875, 64.04471588134765625, 59.623687744140625, 54.76873779296875, 48.714839935302734375, 40.670490264892578125, 31.6658725738525390625, 23.2018756866455078125, 16.7710094451904296875, 12.1817455291748046875, 8.59807586669921875, 5.98297357559204101562, 4.29940891265869140625, 3.13884472846984863281, 2.05873084068298339844, 1.18888247013092041016, 0.66238158941268920898, 0.45427343249320983887, 0.26118096709251403809, 0.10140431672334671021, 0.00977999996393918991, 0.0000199999994947575, 0.0000199999994947575, 0.0000199999994947575, 0.0000199999994947575, 0.0000199999994947575, 0.0000199999994947575, 0.0000199999994947575, 0.0000199999994947575, 0.0000199999994947575, 0.0000199999994947575, 0.0000199999994947575, 0.0000199999994947575, 0.0000199999994947575, 0.0000199999994947575, 0.0000199999994947575] -time=[18230400., 18316800.] +time=[1.82304e+07, 1.83168e+07] +HDifRoo.H=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.09023779630661e-01, 2.443315029144287e+00, 6.970880508422852e+00, 1.143345355987549e+01, 1.8184326171875e+01, 2.458927917480469e+01, 3.225185394287109e+01, 4.210343170166016e+01, 5.479391098022461e+01, 7.302068328857422e+01, 9.706421661376953e+01, 1.224078674316406e+02, 1.445120849609375e+02, 1.612284851074219e+02, 1.765965270996094e+02, 1.916428527832031e+02, 2.071841735839844e+02, 2.242075500488281e+02, 2.432914733886719e+02, 2.630570678710938e+02, 2.819705505371094e+02, 2.977848205566406e+02, 3.051807250976562e+02, 3.07771484375e+02, 3.109620361328125e+02, 3.202115478515625e+02, 3.390455322265625e+02, 3.62666748046875e+02, 3.846842956542969e+02, 3.987429809570312e+02, 4.055399169921875e+02, 4.0811767578125e+02, 4.06033203125e+02, 3.988434753417969e+02, 3.877328491210938e+02, 3.754246826171875e+02, 3.630126647949219e+02, 3.515788269042969e+02, 3.416121215820312e+02, 3.32168701171875e+02, 3.23147705078125e+02, 3.1450244140625e+02, 3.074534301757812e+02, 3.057144775390625e+02, 3.057614440917969e+02, 3.033008117675781e+02, 2.941841735839844e+02, 2.775198059082031e+02, 2.553875427246094e+02, 2.299487609863281e+02, 2.030690155029297e+02, 1.711112060546875e+02, 1.360466613769531e+02, 1.02765251159668e+02, 7.613271331787109e+01, 5.605282211303711e+01, 4.017546081542969e+01, 2.836444473266602e+01, 2.048360252380371e+01, 1.489445400238037e+01, 9.814441680908203e+00, 5.77138614654541e+00, 3.306309223175049e+00, 2.264765501022339e+00, 1.298198223114014e+00, 5.028600096702576e-01, 4.840908944606781e-02, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +HDifWal.H=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 5.484958365559578e-02, 1.242938280105591e+00, 3.616915464401245e+00, 6.110007286071777e+00, 9.366548538208008e+00, 1.272471618652344e+01, 1.676978492736816e+01, 2.189985275268555e+01, 2.838991928100586e+01, 3.750763320922852e+01, 4.920355987548828e+01, 6.132662963867188e+01, 7.190333557128906e+01, 8.010106658935547e+01, 8.774020385742188e+01, 9.522039031982422e+01, 1.028437042236328e+02, 1.109717864990234e+02, 1.19805908203125e+02, 1.288152313232422e+02, 1.374293823242188e+02, 1.447780456542969e+02, 1.485326995849609e+02, 1.501710205078125e+02, 1.519741516113281e+02, 1.562895812988281e+02, 1.647277679443359e+02, 1.752018737792969e+02, 1.876421356201172e+02, 1.966346282958984e+02, 2.024608306884766e+02, 2.065833129882812e+02, 2.087294769287109e+02, 2.086019134521484e+02, 2.064405822753906e+02, 2.032164154052734e+02, 2.061984558105469e+02, 2.070104217529297e+02, 2.071659088134766e+02, 2.256713562011719e+02, 2.460794372558594e+02, 2.501488189697266e+02, 2.494492645263672e+02, 2.485262908935547e+02, 2.287094268798828e+02, 2.069839172363281e+02, 2.019105072021484e+02, 1.925648345947266e+02, 1.792506408691406e+02, 1.629189605712891e+02, 1.444590454101562e+02, 1.207084121704102e+02, 9.375636291503906e+01, 6.826063537597656e+01, 4.85486946105957e+01, 3.427568817138672e+01, 2.330714225769043e+01, 1.522172355651855e+01, 1.067744731903076e+01, 7.757722854614258e+00, 5.102871894836426e+00, 2.996745347976685e+00, 1.691862225532532e+00, 1.152241587638855e+00, 6.571215987205505e-01, 2.533843517303467e-01, 2.431347779929638e-02, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +HDifFlo.H=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 2.180475555360317e-02, 4.886630177497864e-01, 1.416278481483459e+00, 2.537890911102295e+00, 3.692152976989746e+00, 4.896801471710205e+00, 6.398287773132324e+00, 8.361362457275391e+00, 1.095077896118164e+01, 1.465502071380615e+01, 1.945394515991211e+01, 2.448880004882812e+01, 2.88969669342041e+01, 3.232355499267578e+01, 3.561841201782227e+01, 3.88891487121582e+01, 4.219660186767578e+01, 4.5616455078125e+01, 4.91982421875e+01, 5.283317184448242e+01, 5.639959716796875e+01, 5.959567642211914e+01, 6.115659332275391e+01, 6.17335319519043e+01, 6.239854049682617e+01, 6.425196075439453e+01, 6.827684020996094e+01, 7.332421875e+01, 7.773445892333984e+01, 7.985933685302734e+01, 8.029781341552734e+01, 8.035269927978516e+01, 8.0198974609375e+01, 8.001164245605469e+01, 7.969367980957031e+01, 7.908026123046875e+01, 7.83985595703125e+01, 7.78780517578125e+01, 8.083390808105469e+01, 9.151648712158203e+01, 1.036698532104492e+02, 1.106233520507812e+02, 1.072291793823242e+02, 9.768441772460938e+01, 8.589576721191406e+01, 7.528497314453125e+01, 6.876786804199219e+01, 6.404471588134766e+01, 5.962368774414062e+01, 5.476873779296875e+01, 4.871483993530273e+01, 4.067049026489258e+01, 3.166587257385254e+01, 2.320187568664551e+01, 1.677100944519043e+01, 1.21817455291748e+01, 8.598075866699219e+00, 5.982973575592041e+00, 4.299408912658691e+00, 3.138844728469849e+00, 2.058730840682983e+00, 1.18888247013092e+00, 6.623815894126892e-01, 4.542734324932098e-01, 2.61180967092514e-01, 1.014043167233467e-01, 9.77999996393919e-03, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_SolarIrradiation_Examples_DirectTiltedSurface.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_SolarIrradiation_Examples_DirectTiltedSurface.txt index b97a71e542..d13b9d2249 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_SolarIrradiation_Examples_DirectTiltedSurface.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_SolarIrradiation_Examples_DirectTiltedSurface.txt @@ -1,6 +1,11 @@ -last-generated=2015-05-08 -statistics-simulation={'numerical Jacobians': '0', 'nonlinear': '1', 'linear': ' '} -HDirRoo.H=[0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.00000073511125719961, 0.00634253304451704025, 0.12573301792144775391, 3.28954410552978515625, 13.21490764617919921875, 30.263763427734375, 52.3336639404296875, 78.70415496826171875, 111.57936859130859375, 148.875244140625, 187.35302734375, 223.80926513671875, 258.4881591796875, 291.638885498046875, 323.843902587890625, 356.054931640625, 388.540771484375, 420.3414306640625, 450.298828125, 477.2783203125, 501.60601806640625, 523.630126953125, 543.59051513671875, 561.71759033203125, 576.69769287109375, 588.313232421875, 597.11962890625, 603.70111083984375, 603.4962158203125, 593.26611328125, 573.66241455078125, 545.4853515625, 489.899749755859375, 399.89422607421875, 306.903167724609375, 241.017333984375, 212.47039794921875, 189.8268585205078125, 168.5606689453125, 146.0751953125, 120.4508819580078125, 93.32006072998046875, 67.86277008056640625, 46.7584381103515625, 31.9011745452880859375, 22.159587860107421875, 15.98244762420654296875, 12.20950412750244140625, 9.85045719146728515625, 8.11099910736083984375, 6.63319492340087890625, 5.223796844482421875, 3.78003191947937011719, 2.26051783561706542969, 0.98790079355239868164, 0.23048835992813110352, 0.0010031689889729023, 0.0000037451354728546, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.] -HDirWal.H=[0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 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.10592031478881835938, 35.362438201904296875, 65.2796478271484375, 94.6805267333984375, 122.46977996826171875, 147.069244384765625, 167.4968414306640625, 182.96429443359375, 185.3991241455078125, 168.471832275390625, 142.4625091552734375, 122.2907867431640625, 117.10333251953125, 113.08880615234375, 108.13105010986328125, 100.61040496826171875, 88.88663482666015625, 73.6826019287109375, 57.291133880615234375, 42.2066497802734375, 30.810626983642578125, 22.9336566925048828125, 17.76651763916015625, 14.6282939910888671875, 12.78057003021240234375, 11.47020435333251953125, 10.31415653228759765625, 9.03959369659423828125, 7.40418004989624023438, 5.13766527175903320312, 2.70694494247436523438, 0.81237429380416870117, 0.00516948988661170006, 0.00004033894583699293, 0.00003690571247716434, 0.00003325739453430288, 0.00002940839476650581, 0.00002537391083023977, 0.00002116986797773279, 0.00001681286630628165, 0.00001232010527019156, 0.00000770932547311531, 0.00000299872954201419, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.] -HDirFlo.H=[0.00005689401950803585, 0.00005670095924870111, 0.00005620945012196898, 0.00005542142753256485, 0.00005434000195236877, 0.00005296944800647907, 0.0000513151717314031, 0.00004938371057505719, 0.00004718268246506341, 0.00004472077853279188, 0.00004200771945761517, 0.00003905421908712015, 0.00003587192986742593, 0.00003247342101531103, 0.00002887210757762659, 0.00002508220859454013, 0.00002111868525389582, 0.00001699718632153235, 0.00001273398538614856, 0.00000834591446619015, 0.0000038502985262312, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.00000090064213509322, 0.00000546913088328438, 0.00000994230686046649, 0.000014302521776699, 0.00001853257344919257, 0.00002261577355966438, 0.00002653600859048311, 0.00003027781531272922, 0.00003382642535143532, 0.00003716783976415172, 0.00004028887633467093, 0.00004317721322877333, 0.0000458214599348139, 0.00004821118272957392, 0.00005033694833400659, 0.00005219037120696157, 0.0000537641353730578, 0.00005505203444045037, 0.00005604898615274578, 0.00005675105785485357, 0.00005715547740692273, 0.00005726065137423575] -time=[18230400., 18316800.] +last-generated=2022-05-19 +statistics-simulation= +{ + "linear": " ", + "nonlinear": "1", + "numerical Jacobians": "0" +} +time=[1.82304e+07, 1.83168e+07] +HDirRoo.H=[-0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 0e+00, 9.910773485898972e-03, 1.59426137804985e-01, 3.816497802734375e+00, 1.459550952911377e+01, 3.239864730834961e+01, 5.483444976806641e+01, 8.118482971191406e+01, 1.137391891479492e+02, 1.503573303222656e+02, 1.878214111328125e+02, 2.230191345214844e+02, 2.562947082519531e+02, 2.87961669921875e+02, 3.186385498046875e+02, 3.492871398925781e+02, 3.801845703125e+02, 4.104032897949219e+02, 4.388282775878906e+02, 4.643721313476562e+02, 4.873695068359375e+02, 5.081711120605469e+02, 5.270186157226562e+02, 5.441420288085938e+02, 5.58274658203125e+02, 5.692122802734375e+02, 5.774971923828125e+02, 5.836970825195312e+02, 5.83404052734375e+02, 5.73489013671875e+02, 5.545792846679688e+02, 5.27440673828125e+02, 4.738421936035156e+02, 3.869568481445312e+02, 2.971443481445312e+02, 2.335204010009766e+02, 2.060403747558594e+02, 1.842732849121094e+02, 1.638299713134766e+02, 1.421797485351562e+02, 1.174356842041016e+02, 9.116215515136719e+01, 6.644490051269531e+01, 4.59036865234375e+01, 3.141610145568848e+01, 2.190331649780273e+01, 1.586709403991699e+01, 1.218544578552246e+01, 9.894277572631836e+00, 8.211872100830078e+00, 6.783070087432861e+00, 5.411216259002686e+00, 3.983778238296509e+00, 2.44050407409668e+00, 1.105571746826172e+00, 2.736133337020874e-01, 1.335189677774906e-03, 0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00] +HDirWal.H=[-0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 8.831703186035156e+00, 4.000552749633789e+01, 7.095554351806641e+01, 1.013982925415039e+02, 1.311921844482422e+02, 1.589661407470703e+02, 1.829461364746094e+02, 2.021894989013672e+02, 2.159560241699219e+02, 2.150335083007812e+02, 1.926669616699219e+02, 1.610365447998047e+02, 1.368824920654297e+02, 1.299722442626953e+02, 1.245921249389648e+02, 1.183518295288086e+02, 1.094740371704102e+02, 9.620148468017578e+01, 7.935530090332031e+01, 6.142100143432617e+01, 4.505594253540039e+01, 3.275758743286133e+01, 2.428856086730957e+01, 1.874586868286133e+01, 1.537842178344727e+01, 1.33877067565918e+01, 1.19721212387085e+01, 1.072669792175293e+01, 9.366613388061523e+00, 7.642911434173584e+00, 5.282218456268311e+00, 2.771317720413208e+00, 8.278750777244568e-01, 5.241392645984888e-03, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00] +HDirFlo.H=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -0e+00, -0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_Validation_BESTEST_WD100.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_Validation_BESTEST_WD100.txt index 5d482f4601..16cfaba7ad 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_Validation_BESTEST_WD100.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_Validation_BESTEST_WD100.txt @@ -1,4 +1,4 @@ -last-generated=2020-08-24 +last-generated=2022-05-18 statistics-simulation= { "linear": " ", @@ -16,22 +16,22 @@ azi045til90.H=[0e+00, 7.348028411865235e+01, 2.392788553237915e+00, 0e+00, 8.267 azi270til30.H=[0e+00, 2.920105628967285e+01, 2.207846832275391e+01, 0e+00, 8.516800994873047e+01, 0e+00, 0e+00, 3.358899353027344e+02, 0e+00, 0e+00, 4.443044738769531e+02, 0e+00, 0e+00, 1.790210662841797e+02, 0e+00, 3.847336769104004e+00, 3.234859985351562e+02, 0e+00, 2.290283699035644e+01, 6.89757861328125e+02, 0e+00, 6.392156982421875e+01, 3.120557983398438e+02, 0e+00, 1.868868408203125e+02, 1.716743278503418e+01, 0e+00, 4.131974487304688e+02, 4.129075622558593e+00, 0e+00, 4.299525756835938e+02, 0e+00, 8.142263412475585e-01, 9.77642724609375e+02, 0e+00, 5.242531585693359e+01, 1.018673193359375e+03, 0e+00, 1.154951049804688e+02, 3.883157348632812e+02, 0e+00, 3.071106689453125e+02, 4.539373046875e+02, 0e+00, 5.251339477539062e+02, 2.541332092285156e+02, 0e+00, 5.117143676757813e+02, 5.439484252929687e+01, 1.076553091406822e-02, 8.0098095703125e+02, 0e+00, 8.984863662719727e+00, 9.738647705078125e+02, 0e+00, 4.813790512084961e+01, 2.131032775878906e+02, 0e+00, 1.876591156005859e+02, 8.296104614257813e+02, 0e+00, 2.421951416015625e+02, 4.760259338378906e+02, 0e+00, 2.989794555664063e+02, 1.753824005126953e+02, 0e+00, 5.99271337890625e+02, 0e+00, 0e+00, 6.9938134765625e+02, 0e+00, 0e+00, 3.483172546386719e+02, 0e+00, 0e+00, 1.039928176879883e+02, 0e+00, 1.752314453125e+01, 6.1869638671875e+02, 0e+00, 6.578480224609375e+01, 2.002410400390625e+02, 0e+00, 1.743779266357422e+02, 0e+00, 0e+00, 2.776838928222656e+02, 0e+00, 0e+00, 4.659734497070312e+02, 0e+00, 0e+00, 1.111577438354492e+02, 0e+00, 0e+00, 2.533177368164062e+02, 0e+00, 3.970728540420532e+00, 3.687547973632812e+02, 0e+00] azi000til30.H=[0e+00, 5.746405487060547e+01, 1.312214059829712e+01, 0e+00, 6.549814208984375e+02, 0e+00, 0e+00, 8.25687060546875e+02, 0e+00, 0e+00, 6.593551025390625e+02, 0e+00, 0e+00, 1.831846801757812e+02, 0e+00, 5.010866165161133e+00, 3.21966162109375e+02, 0e+00, 2.599793060302734e+02, 5.07304541015625e+02, 0e+00, 5.808448486328125e+02, 1.655347412109375e+02, 0e+00, 1.868868408203125e+02, 1.716743278503418e+01, 0e+00, 5.245071899414063e+02, 7.421691715717316e-02, 0e+00, 4.441818542480469e+02, 0e+00, 8.142263412475585e-01, 1.037834545898437e+03, 0e+00, 5.972708511352539e+01, 8.837555786132813e+02, 0e+00, 1.187094940185547e+02, 3.442436706542969e+02, 0e+00, 4.266142028808594e+02, 2.731093017578125e+02, 0e+00, 8.415137084960937e+02, 1.109514083862305e+02, 0e+00, 5.924017211914063e+02, 1.356492195129394e+01, 1.076553091406822e-02, 9.101892700195312e+02, 0e+00, 8.984863662719727e+00, 9.615339721679687e+02, 0e+00, 4.813790512084961e+01, 2.131032775878906e+02, 0e+00, 2.991270294189453e+02, 5.662479125976563e+02, 0e+00, 5.372891845703125e+02, 2.652564666748047e+02, 0e+00, 3.271651794433594e+02, 4.280080795288086e+01, 0e+00, 9.819832153320312e+02, 0e+00, 0e+00, 9.638479614257812e+02, 0e+00, 0e+00, 3.547322265625e+02, 0e+00, 0e+00, 1.039928176879883e+02, 0e+00, 1.033623733520508e+02, 5.335150024414063e+02, 0e+00, 6.578480224609375e+01, 1.359259155273438e+02, 0e+00, 2.466176727294922e+02, 0e+00, 0e+00, 5.031556274414062e+02, 0e+00, 0e+00, 8.848222045898438e+02, 0e+00, 0e+00, 1.111577438354492e+02, 0e+00, 0e+00, 2.898234313964844e+02, 0e+00, 2.305120754241943e+01, 3.360274047851562e+02, 0e+00] azi090til30.H=[0e+00, 5.994697341918945e+01, 4.465003967285156e+00, 0e+00, 5.434563354492187e+02, 0e+00, 0e+00, 5.600584228515625e+02, 0e+00, 0e+00, 4.141727600097656e+02, 0e+00, 0e+00, 1.720848876953125e+02, 0e+00, 2.630045890808105e+01, 1.986580352783203e+02, 0e+00, 4.864801818847656e+02, 3.722454147338867e+01, 0e+00, 7.4450205078125e+02, 5.7642333984375e+01, 0e+00, 1.868868408203125e+02, 1.716743278503418e+01, 0e+00, 4.9482294921875e+02, 7.421691715717316e-02, 0e+00, 4.305646362304688e+02, 0e+00, 8.142263412475585e-01, 6.98505615234375e+02, 0e+00, 2.150345916748047e+02, 4.817920349121094e+02, 0e+00, 1.240503387451172e+02, 2.865857482910156e+02, 0e+00, 5.282606689453125e+02, 1.378307647705078e+02, 0e+00, 1.004829235839844e+03, 9.392095947265625e+01, 0e+00, 5.968973754882812e+02, 1.356492195129394e+01, 1.388367533683777e-01, 7.934163818359375e+02, 0e+00, 1.566191596984863e+01, 6.933925170898438e+02, 0e+00, 4.813790512084961e+01, 2.131032775878906e+02, 0e+00, 4.4491796875e+02, 2.039646301269531e+02, 0e+00, 7.250610473632812e+02, 1.149471298217773e+02, 0e+00, 3.333230346679687e+02, 3.547780609130859e+01, 0e+00, 8.955868530273438e+02, 0e+00, 0e+00, 7.2346923828125e+02, 0e+00, 0e+00, 3.388277770996094e+02, 0e+00, 0e+00, 1.039928176879883e+02, 0e+00, 2.408049163818359e+02, 7.159200134277344e+01, 0e+00, 6.578480224609375e+01, 4.828789443969727e+01, 0e+00, 2.439877227783203e+02, 0e+00, 0e+00, 4.151753295898437e+02, 0e+00, 0e+00, 5.14836181640625e+02, 0e+00, 0e+00, 1.111577438354492e+02, 0e+00, 0e+00, 1.059608535766602e+02, 0e+00, 4.013569412231445e+01, 1.969448127746582e+01, 0e+00] -azi000til00.HPer=[0e+00, 4.175680694580078e+01, 4.78557710647583e+00, 0e+00, 3.596977661132813e+02, 0e+00, 0e+00, 5.12096630859375e+02, 0e+00, 0e+00, 4.823821716308594e+02, 0e+00, 0e+00, 1.889735626220703e+02, 0e+00, 4.123563289642334e+00, 2.868685241699219e+02, 0e+00, 1.704713882446289e+02, 3.697218688964844e+02, 0e+00, 4.54593115234375e+02, 1.445264190673828e+02, 0e+00, 2.003047119140625e+02, 1.783525657653809e+01, 0e+00, 5.022962768554688e+02, 7.954545319080353e-02, 0e+00, 4.647355041503906e+02, 0e+00, 8.726851940155029e-01, 9.602077270507813e+02, 0e+00, 9.962802886962891e+01, 8.605828002929687e+02, 0e+00, 1.280843963623047e+02, 3.681270263671875e+02, 0e+00, 4.611967590332031e+02, 3.243223724365234e+02, 0e+00, 8.713026123046875e+02, 1.609150238037109e+02, 0e+00, 6.140789672851563e+02, 1.776949920654297e+01, 1.15384615957737e-02, 9.08380859375e+02, 0e+00, 1.008342094421387e+01, 9.542715942382813e+02, 0e+00, 5.159405136108398e+01, 2.284034057617187e+02, 0e+00, 3.37105908203125e+02, 5.888561889648438e+02, 0e+00, 5.4577216796875e+02, 2.959995391845703e+02, 0e+00, 3.421022155761719e+02, 6.493305969238281e+01, 0e+00, 8.551271240234375e+02, 0e+00, 0e+00, 8.114301147460938e+02, 0e+00, 0e+00, 3.700927368164063e+02, 0e+00, 0e+00, 1.114591644287109e+02, 0e+00, 5.775022163391113e+01, 3.732897094726562e+02, 0e+00, 7.050794067382813e+01, 8.940362014770508e+01, 0e+00, 2.273249969482422e+02, 0e+00, 0e+00, 3.844722290039062e+02, 0e+00, 0e+00, 5.573271484375e+02, 0e+00, 0e+00, 1.191385116577148e+02, 0e+00, 0e+00, 1.988843292236328e+02, 0e+00, 4.255813789367676e+00, 1.301907257080078e+02, 0e+00] -azi000til90.HPer=[0e+00, 5.287063674926758e+01, 2.193596115112305e+01, 0e+00, 7.5095546875e+02, 0e+00, 0e+00, 8.527194580078125e+02, 0e+00, 0e+00, 6.104755859375e+02, 0e+00, 0e+00, 1.05708171081543e+02, 0e+00, 1.064444255828857e+01, 2.429859954833984e+02, 0e+00, 2.5139296875e+02, 4.139027221679688e+02, 0e+00, 4.260499145507812e+02, 1.082708236694336e+02, 0e+00, 9.114321136474609e+01, 7.359818458557129e+00, 0e+00, 3.212338256835938e+02, 3.207647651433945e-02, 0e+00, 2.377162933349609e+02, 0e+00, 3.549463033676147e-01, 4.630197448730469e+02, 0e+00, 2.338041305541992e+01, 3.148098754882812e+02, 0e+00, 5.03933723449707e+01, 1.256783294677734e+02, 0e+00, 1.258397918701172e+02, 6.089360275268555e+01, 0e+00, 2.325152069091797e+02, 4.022014617919922e+01, 0e+00, 2.270832946777344e+02, 6.257380294799805e+00, 4.648891091346741e-03, 3.068879699707031e+02, 0e+00, 4.010803127288819e+00, 3.134206909179687e+02, 0e+00, 2.178709602355957e+01, 9.693592071533203e+01, 0e+00, 7.673591613769531e+01, 1.558021759033203e+02, 0e+00, 1.948357391357422e+02, 5.607164840698242e+01, 0e+00, 1.629512786865234e+02, 1.601912689208984e+01, 0e+00, 5.45734326171875e+02, 0e+00, 0e+00, 6.178103637695312e+02, 0e+00, 0e+00, 1.962130920410156e+02, 0e+00, 0e+00, 4.876113815307617e+01, 0e+00, 1.203892654418945e+02, 4.873480651855469e+02, 0e+00, 3.243535766601563e+01, 1.449858795166016e+02, 0e+00, 2.028294830322266e+02, 0e+00, 0e+00, 4.793757934570312e+02, 0e+00, 0e+00, 9.263341064453125e+02, 0e+00, 0e+00, 5.809073867797851e+01, 0e+00, 0e+00, 3.11729736328125e+02, 0e+00, 4.533375587463379e+01, 4.82865185546875e+02, 0e+00] -azi270til90.HPer=[0e+00, 1.399423236846924e+01, 3.984861793518066e+01, 0e+00, 2.171981048583984e+01, 0e+00, 0e+00, 3.199289398193359e+01, 0e+00, 0e+00, 1.041144714355469e+02, 0e+00, 0e+00, 8.715763092041016e+01, 0e+00, 1.818233609199524e+00, 2.472009826660156e+02, 0e+00, 1.356985855102539e+01, 8.029991577148437e+02, 0e+00, 2.900511436462402e+01, 4.3519443359375e+02, 0e+00, 8.066691589355469e+01, 1.813599014282227e+01, 0e+00, 9.788540496826172e+01, 1.064054679870605e+01, 0e+00, 1.428290863037109e+02, 0e+00, 3.549463033676147e-01, 3.355545532226562e+02, 0e+00, 2.338041305541992e+01, 5.971078369140625e+02, 0e+00, 5.03933723449707e+01, 2.719002380371094e+02, 0e+00, 1.006952285766602e+02, 4.628292724609375e+02, 0e+00, 5.889308471679688e+01, 3.012828369140625e+02, 0e+00, 1.045410507202148e+02, 8.766979675292968e+01, 4.648891091346741e-03, 5.362418365478516e+01, 0e+00, 4.010803127288819e+00, 3.397814697265625e+02, 0e+00, 2.178709602355957e+01, 1.044498321533203e+02, 0e+00, 7.673591613769531e+01, 7.492734375e+02, 0e+00, 6.60625717163086e+01, 5.501618041992188e+02, 0e+00, 1.098567611694336e+02, 2.708519287109375e+02, 0e+00, 4.544072952270508e+01, 0e+00, 0e+00, 5.115558242797852e+01, 0e+00, 0e+00, 1.572801422119141e+02, 0e+00, 0e+00, 4.854657974243164e+01, 0e+00, 9.148695945739746e+00, 6.750427368164062e+02, 0e+00, 2.911446990966797e+01, 2.893559753417969e+02, 0e+00, 6.92836929321289e+01, 0e+00, 0e+00, 7.777766876220703e+01, 0e+00, 0e+00, 5.044579696655273e+01, 0e+00, 0e+00, 5.158030319213867e+01, 0e+00, 0e+00, 2.235892120361328e+02, 0e+00, 1.760814154148102e+00, 5.525389526367187e+02, 0e+00] -azi180til90.HPer=[0e+00, 1.399423236846924e+01, 1.985078740119934e+00, 0e+00, 2.171981048583984e+01, 0e+00, 0e+00, 3.199289398193359e+01, 0e+00, 0e+00, 6.864018249511719e+01, 0e+00, 0e+00, 7.123549346923828e+01, 0e+00, 1.818233609199524e+00, 7.393883056640625e+01, 0e+00, 1.356985855102539e+01, 2.061487808227539e+01, 0e+00, 2.900511436462402e+01, 2.7495361328125e+01, 0e+00, 8.066691589355469e+01, 7.997866630554199e+00, 0e+00, 9.788540496826172e+01, 3.27527494430542e+00, 0e+00, 1.428290863037109e+02, 0e+00, 3.549463033676147e-01, 4.000633087158203e+01, 0e+00, 9.031780242919922e+01, 3.542160797119141e+01, 0e+00, 5.261666107177734e+01, 1.031811233520508e+02, 0e+00, 1.006952285766602e+02, 1.043242126464844e+02, 0e+00, 5.889308471679688e+01, 1.251559906005859e+02, 0e+00, 1.045410507202148e+02, 5.130423889160156e+01, 3.046526193618774e-01, 4.485391998291016e+01, 0e+00, 1.069500846862793e+01, 3.993479461669922e+01, 0e+00, 2.178856468200684e+01, 9.222374725341797e+01, 0e+00, 9.351122741699218e+01, 4.444457473754883e+01, 0e+00, 6.60625717163086e+01, 5.453234176635742e+01, 0e+00, 1.098567611694336e+02, 5.094358062744141e+01, 0e+00, 4.544072952270508e+01, 0e+00, 0e+00, 5.115558242797852e+01, 0e+00, 0e+00, 1.288341705322266e+02, 0e+00, 0e+00, 4.706868286132813e+01, 0e+00, 9.148695945739746e+00, 3.563949508666992e+01, 0e+00, 2.911446990966797e+01, 2.129211330413818e+01, 0e+00, 6.92836929321289e+01, 0e+00, 0e+00, 7.777766876220703e+01, 0e+00, 0e+00, 5.044579696655273e+01, 0e+00, 0e+00, 4.891990737915039e+01, 0e+00, 0e+00, 4.551046829223633e+01, 0e+00, 1.760814154148102e+00, 1.099140300750732e+01, 0e+00] -azi090til90.HPer=[0e+00, 5.789700622558594e+01, 1.985078740119934e+00, 0e+00, 5.122389404296875e+02, 0e+00, 0e+00, 2.755249084472656e+02, 0e+00, 0e+00, 6.864018249511719e+01, 0e+00, 0e+00, 7.123549346923828e+01, 0e+00, 5.322362899780273e+01, 7.393883056640625e+01, 0e+00, 7.378484619140625e+02, 2.061487808227539e+01, 0e+00, 7.807462890625e+02, 2.7495361328125e+01, 0e+00, 9.298576507568359e+01, 7.359818458557129e+00, 0e+00, 2.278585540771484e+02, 3.207647651433945e-02, 0e+00, 1.449146118164062e+02, 0e+00, 3.549463033676147e-01, 4.000633087158203e+01, 0e+00, 2.99345703125e+02, 3.542160797119141e+01, 0e+00, 7.287161560058594e+01, 1.031811233520508e+02, 0e+00, 4.145436584472656e+02, 6.089360275268555e+01, 0e+00, 6.028768432617187e+02, 4.022014617919922e+01, 0e+00, 2.410385131835938e+02, 6.257380294799805e+00, 3.718220710754395e-01, 4.485276794433594e+01, 0e+00, 1.657946949005127e+01, 3.993479461669922e+01, 0e+00, 2.179241752624512e+01, 9.222374725341797e+01, 0e+00, 4.56542724609375e+02, 4.444457473754883e+01, 0e+00, 6.454755493164063e+02, 5.206292037963867e+01, 0e+00, 1.937722381591797e+02, 1.601912689208984e+01, 0e+00, 3.614741333007813e+02, 0e+00, 0e+00, 7.819261932373047e+01, 0e+00, 0e+00, 1.288341705322266e+02, 0e+00, 0e+00, 4.706868286132813e+01, 0e+00, 4.137585113525391e+02, 3.563949508666992e+01, 0e+00, 3.465841598510742e+01, 2.129211330413818e+01, 0e+00, 1.931144561767578e+02, 0e+00, 0e+00, 2.54061669921875e+02, 0e+00, 0e+00, 1.047008514404297e+02, 0e+00, 0e+00, 4.891990737915039e+01, 0e+00, 0e+00, 4.551046829223633e+01, 0e+00, 7.950273208618164e+01, 1.099140300750732e+01, 0e+00] -azi315til90.HPer=[0e+00, 1.399423236846924e+01, 4.286604919433594e+01, 0e+00, 1.905178863525391e+02, 0e+00, 0e+00, 4.401310729980469e+02, 0e+00, 0e+00, 4.768598022460938e+02, 0e+00, 0e+00, 1.068700088500977e+02, 0e+00, 1.818233609199524e+00, 3.159880615234375e+02, 0e+00, 1.356985855102539e+01, 8.51940625e+02, 0e+00, 2.900511436462402e+01, 3.728990081787109e+02, 0e+00, 8.066691589355469e+01, 1.452855491638184e+01, 0e+00, 1.639116973876953e+02, 5.24011001586914e+00, 0e+00, 2.084497833251953e+02, 0e+00, 3.549463033676147e-01, 5.481061157226562e+02, 0e+00, 2.338041305541992e+01, 6.301511108398438e+02, 0e+00, 5.03933723449707e+01, 2.383914794921875e+02, 0e+00, 1.006952285766602e+02, 3.143949645996094e+02, 0e+00, 5.889308471679688e+01, 1.647606353759766e+02, 0e+00, 1.063428573608398e+02, 3.197171401977539e+01, 4.648891091346741e-03, 2.363423156738281e+02, 0e+00, 4.010803127288819e+00, 4.453421325683594e+02, 0e+00, 2.178709602355957e+01, 1.042009002685547e+02, 0e+00, 7.673591613769531e+01, 6.215755615234375e+02, 0e+00, 6.60625717163086e+01, 4.053604736328125e+02, 0e+00, 1.098567611694336e+02, 1.715178070068359e+02, 0e+00, 1.757323699951172e+02, 0e+00, 0e+00, 4.327229614257812e+02, 0e+00, 0e+00, 1.965926025390625e+02, 0e+00, 0e+00, 4.931046142578125e+01, 0e+00, 9.148695945739746e+00, 8.071720581054688e+02, 0e+00, 2.911446990966797e+01, 2.983065979003906e+02, 0e+00, 7.615325927734375e+01, 0e+00, 0e+00, 2.370988098144531e+02, 0e+00, 0e+00, 6.314282836914062e+02, 0e+00, 0e+00, 5.728584899902344e+01, 0e+00, 0e+00, 3.59676611328125e+02, 0e+00, 1.760814154148102e+00, 7.275885009765625e+02, 0e+00] -azi045til90.HPer=[0e+00, 7.252795104980468e+01, 1.985078740119934e+00, 0e+00, 8.8421669921875e+02, 0e+00, 0e+00, 7.84537353515625e+02, 0e+00, 0e+00, 4.266915893554688e+02, 0e+00, 0e+00, 8.43527099609375e+01, 0e+00, 4.440840911865234e+01, 7.630946655273438e+01, 0e+00, 6.938785034179688e+02, 2.061487808227539e+01, 0e+00, 8.413194702148437e+02, 2.7495361328125e+01, 0e+00, 9.678551635742187e+01, 7.359818458557129e+00, 0e+00, 3.477215026855469e+02, 3.207647651433945e-02, 0e+00, 2.11399169921875e+02, 0e+00, 3.549463033676147e-01, 1.301378356933594e+02, 0e+00, 1.711854705810547e+02, 3.542160797119141e+01, 0e+00, 6.471578979492188e+01, 1.031811233520508e+02, 0e+00, 3.403994873046875e+02, 6.089360275268555e+01, 0e+00, 5.663170654296875e+02, 4.022014617919922e+01, 0e+00, 2.877097717285156e+02, 6.257380294799805e+00, 5.214487314224242e-02, 2.239376525878906e+02, 0e+00, 8.171745872497558e+00, 4.404448165893555e+01, 0e+00, 2.178981971740723e+01, 9.222374725341797e+01, 0e+00, 3.33437939453125e+02, 4.444457473754883e+01, 0e+00, 5.668258056640625e+02, 5.206292037963867e+01, 0e+00, 2.067374633789063e+02, 1.601912689208984e+01, 0e+00, 6.226711059570313e+02, 0e+00, 0e+00, 4.709591064453125e+02, 0e+00, 0e+00, 1.563639190673828e+02, 0e+00, 0e+00, 4.722039794921875e+01, 0e+00, 3.739100067138672e+02, 3.563949508666992e+01, 0e+00, 3.538285598754883e+01, 2.129211330413818e+01, 0e+00, 2.512763977050781e+02, 0e+00, 0e+00, 4.864020263671875e+02, 0e+00, 0e+00, 7.08156494140625e+02, 0e+00, 0e+00, 5.352348403930664e+01, 0e+00, 0e+00, 1.078352355957031e+02, 0e+00, 8.754337310791016e+01, 1.099140300750732e+01, 0e+00] -azi270til30.HPer=[0e+00, 2.828711967468262e+01, 2.187461357116699e+01, 0e+00, 7.353336257934571e+01, 0e+00, 0e+00, 3.325068481445313e+02, 0e+00, 0e+00, 4.485295104980469e+02, 0e+00, 0e+00, 1.773458709716797e+02, 0e+00, 3.725562810897827e+00, 3.444879089355469e+02, 0e+00, 1.614594764709473e+01, 7.183782836914063e+02, 0e+00, 4.178446273803711e+01, 3.331901489257813e+02, 0e+00, 1.735458435058594e+02, 2.131863784790039e+01, 0e+00, 3.903921264648437e+02, 4.125227546691894e+00, 0e+00, 4.189371337890625e+02, 0e+00, 7.735282182693481e-01, 9.908435668945312e+02, 0e+00, 4.698416137695312e+01, 1.036981689453125e+03, 0e+00, 1.057219665527344e+02, 4.146343872070312e+02, 0e+00, 2.572744201660156e+02, 4.927555908203125e+02, 0e+00, 5.011601623535156e+02, 2.738713989257812e+02, 0e+00, 4.8530419921875e+02, 5.667015686035156e+01, 1.020536124706268e-02, 8.066968994140625e+02, 0e+00, 8.582778167724609e+00, 9.873356811523438e+02, 0e+00, 4.613200759887695e+01, 2.113530334472656e+02, 0e+00, 1.418399963378906e+02, 8.7721376953125e+02, 0e+00, 1.999650634765625e+02, 5.144995239257812e+02, 0e+00, 2.666605163574219e+02, 1.851573333740234e+02, 0e+00, 5.956604858398438e+02, 0e+00, 0e+00, 7.06261962890625e+02, 0e+00, 0e+00, 3.456760864257812e+02, 0e+00, 0e+00, 1.007001190185547e+02, 0e+00, 1.550408363342285e+01, 6.5224697265625e+02, 0e+00, 6.147421417236328e+01, 2.134955535888672e+02, 0e+00, 1.421861389160156e+02, 0e+00, 0e+00, 2.563546020507812e+02, 0e+00, 0e+00, 4.685151977539062e+02, 0e+00, 0e+00, 1.080122970581055e+02, 0e+00, 0e+00, 2.676755676269531e+02, 0e+00, 3.787181925773621e+00, 3.864158203125e+02, 0e+00] -azi000til30.HPer=[0e+00, 5.689313354492187e+01, 1.291828594207764e+01, 0e+00, 6.834107666015625e+02, 0e+00, 0e+00, 8.646361694335938e+02, 0e+00, 0e+00, 7.017100830078125e+02, 0e+00, 0e+00, 1.866211456298828e+02, 0e+00, 4.889091968536377e+00, 3.42380419921875e+02, 0e+00, 2.708207489013672e+02, 5.238300537109375e+02, 0e+00, 6.01952587890625e+02, 1.697283508300781e+02, 0e+00, 1.849434051513672e+02, 1.560829162597656e+01, 0e+00, 5.670529052734375e+02, 7.036879360675811e-02, 0e+00, 4.674234924316406e+02, 0e+00, 7.735282182693481e-01, 1.054576220703125e+03, 0e+00, 5.504492950439453e+01, 8.958327026367188e+02, 0e+00, 1.134326995849609e+02, 3.415234375e+02, 0e+00, 4.267709106445312e+02, 2.700724792480469e+02, 0e+00, 8.59963134765625e+02, 1.008721237182617e+02, 0e+00, 6.148240356445312e+02, 1.265878868103027e+01, 1.020536124706268e-02, 9.333282470703125e+02, 0e+00, 8.582778167724609e+00, 9.741552856445312e+02, 0e+00, 4.61324577331543e+01, 2.075960723876953e+02, 0e+00, 2.941973236083984e+02, 5.804781127929688e+02, 0e+00, 5.540581298828125e+02, 2.662197296142578e+02, 0e+00, 3.351655151367187e+02, 4.027870941162109e+01, 0e+00, 1.003824011230469e+03, 0e+00, 0e+00, 1.00310791015625e+03, 0e+00, 0e+00, 3.651425476074219e+02, 0e+00, 0e+00, 1.008073959350586e+02, 0e+00, 1.072791717529297e+02, 5.583996459960938e+02, 0e+00, 6.470797882080078e+01, 1.413105056762695e+02, 0e+00, 2.708959777832031e+02, 0e+00, 0e+00, 5.452956787109375e+02, 0e+00, 0e+00, 9.335869140625e+02, 0e+00, 0e+00, 1.112675155639648e+02, 0e+00, 0e+00, 3.117458251953125e+02, 0e+00, 2.286766090393066e+01, 3.515789306640625e+02, 0e+00] -azi090til30.HPer=[0e+00, 5.940631942749023e+01, 4.261149215698243e+00, 0e+00, 5.640524780273438e+02, 0e+00, 0e+00, 5.760388793945312e+02, 0e+00, 0e+00, 4.130552062988281e+02, 0e+00, 0e+00, 1.614237396240234e+02, 0e+00, 2.617868423461914e+01, 1.712257629394531e+02, 0e+00, 5.140485107421875e+02, 2.265990905761719e+01, 0e+00, 7.793007934570312e+02, 4.94656982421875e+01, 0e+00, 1.858646881103516e+02, 1.560433959960938e+01, 0e+00, 5.20365283203125e+02, 7.036879360675811e-02, 0e+00, 4.210226745605469e+02, 0e+00, 7.735282182693481e-01, 6.952953857421875e+02, 0e+00, 2.264962615966797e+02, 4.752954650878906e+02, 0e+00, 1.257834655761719e+02, 2.459152770996094e+02, 0e+00, 5.711228515625e+02, 1.033353698730469e+02, 0e+00, 1.0451439453125e+03, 8.029510498046875e+01, 0e+00, 6.218016357421875e+02, 1.265878868103027e+01, 1.382765889167785e-01, 7.979254760742188e+02, 0e+00, 1.525983009338379e+01, 6.874889892578125e+02, 0e+00, 4.61358528137207e+01, 1.991269439697266e+02, 0e+00, 4.924883850097656e+02, 1.723848968505859e+02, 0e+00, 7.793780151367188e+02, 8.919451141357422e+01, 0e+00, 3.505760009765625e+02, 3.227649688720703e+01, 0e+00, 9.116938842773437e+02, 0e+00, 0e+00, 7.332990112304688e+02, 0e+00, 0e+00, 3.172301147460938e+02, 0e+00, 0e+00, 9.922222137451172e+01, 0e+00, 2.539637939453125e+02, 4.973912582397461e+01, 0e+00, 6.581950988769532e+01, 4.277244415283203e+01, 0e+00, 2.660384643554688e+02, 0e+00, 0e+00, 4.326385925292969e+02, 0e+00, 0e+00, 5.22770263671875e+02, 0e+00, 0e+00, 1.053519012451172e+02, 0e+00, 0e+00, 8.995177764892578e+01, 0e+00, 3.995215034484863e+01, 1.520703010559082e+01, 0e+00] +azi000til00.HPer=[0e+00, 4.175680694580078e+01, 3.590944314002991e+00, 0e+00, 3.596977661132813e+02, 0e+00, 0e+00, 5.12096630859375e+02, 0e+00, 0e+00, 4.823821716308594e+02, 0e+00, 0e+00, 1.889735626220703e+02, 0e+00, 2.698701620101929e+00, 2.868685241699219e+02, 0e+00, 1.704713882446289e+02, 3.697218688964844e+02, 0e+00, 4.54593115234375e+02, 1.445264190673828e+02, 0e+00, 2.003047119140625e+02, 1.813675498962402e+01, 0e+00, 5.022962768554688e+02, 5.954889059066772e-02, 0e+00, 4.647355041503906e+02, 0e+00, 8.726851940155029e-01, 9.602077270507813e+02, 0e+00, 9.962802886962891e+01, 8.605828002929687e+02, 0e+00, 1.280843963623047e+02, 3.681270263671875e+02, 0e+00, 4.611967590332031e+02, 3.243223724365234e+02, 0e+00, 8.713026123046875e+02, 1.609150238037109e+02, 0e+00, 6.140789672851563e+02, 1.610980834960937e+01, 8.648008853197098e-03, 9.08380859375e+02, 0e+00, 9.87275505065918e+00, 9.542715942382813e+02, 0e+00, 5.159405136108398e+01, 2.284034057617187e+02, 0e+00, 3.37105908203125e+02, 5.888561889648438e+02, 0e+00, 5.4577216796875e+02, 2.959995391845703e+02, 0e+00, 3.421022155761719e+02, 6.493305969238281e+01, 0e+00, 8.551271240234375e+02, 0e+00, 0e+00, 8.114301147460938e+02, 0e+00, 0e+00, 3.700927368164063e+02, 0e+00, 0e+00, 1.114591644287109e+02, 0e+00, 5.750692329406738e+01, 3.732897094726562e+02, 0e+00, 7.050794067382813e+01, 8.940362014770508e+01, 0e+00, 2.273249969482422e+02, 0e+00, 0e+00, 3.844722290039062e+02, 0e+00, 0e+00, 5.573271484375e+02, 0e+00, 0e+00, 1.191385116577148e+02, 0e+00, 0e+00, 1.988843292236328e+02, 0e+00, 2.85139365196228e+00, 1.301907257080078e+02, 0e+00] +azi000til90.HPer=[0e+00, 6.641586761474609e+01, 2.897567768096924e+01, 0e+00, 7.419716430664063e+02, 0e+00, 0e+00, 8.408115600585937e+02, 0e+00, 0e+00, 6.460811157226562e+02, 0e+00, 0e+00, 1.010168838500977e+02, 0e+00, 1.419663619995117e+01, 2.599593505859375e+02, 0e+00, 2.513465057373047e+02, 4.123387817382812e+02, 0e+00, 4.246292236328125e+02, 1.247039794921875e+02, 0e+00, 8.940274047851562e+01, 7.5494384765625e+00, 0e+00, 3.23799169921875e+02, 7.573640942573548e-02, 0e+00, 2.351703796386719e+02, 0e+00, 3.545531988143921e-01, 4.647853637695313e+02, 0e+00, 2.760355377197266e+01, 3.158638000488281e+02, 0e+00, 5.144042053222656e+01, 1.312107818603516e+02, 0e+00, 1.297497253417969e+02, 6.369667663574219e+01, 0e+00, 2.34693212890625e+02, 4.437997817993164e+01, 0e+00, 2.296770660400391e+02, 7.570006370544434e+00, 1.10460601747036e-02, 3.091525573730469e+02, 0e+00, 4.553069496154786e+00, 3.152379699707031e+02, 0e+00, 2.170131301879883e+01, 9.736947479248047e+01, 0e+00, 8.120215301513672e+01, 1.599508605957031e+02, 0e+00, 2.026468170166016e+02, 5.984713821411133e+01, 0e+00, 1.624345764160156e+02, 1.913467216491699e+01, 0e+00, 5.479533081054688e+02, 0e+00, 0e+00, 6.217359008789062e+02, 0e+00, 0e+00, 2.084813110351562e+02, 0e+00, 0e+00, 4.769424133300781e+01, 0e+00, 1.337796173095703e+02, 5.00834033203125e+02, 0e+00, 3.042001342773438e+01, 1.772312072753906e+02, 0e+00, 2.049829650878906e+02, 0e+00, 0e+00, 5.042191284179688e+02, 0e+00, 0e+00, 9.515687866210938e+02, 0e+00, 0e+00, 5.362218399047852e+01, 0e+00, 0e+00, 3.31170263671875e+02, 0e+00, 5.442032699584961e+01, 4.855911499023438e+02, 0e+00] +azi270til90.HPer=[0e+00, 1.505818367004395e+01, 5.262795028686524e+01, 0e+00, 2.877429313659668e+01, 0e+00, 0e+00, 4.139206619262696e+01, 0e+00, 0e+00, 1.094727935791016e+02, 0e+00, 0e+00, 8.590109863281251e+01, 0e+00, 2.611042261123657e+00, 2.645724365234375e+02, 0e+00, 1.829004974365234e+01, 7.931530639648438e+02, 0e+00, 3.765718536376953e+01, 4.968840087890625e+02, 0e+00, 8.243519439697266e+01, 1.257256031036377e+01, 0e+00, 1.010624359130859e+02, 1.090184135437012e+01, 0e+00, 1.494884338378906e+02, 0e+00, 3.545531988143921e-01, 3.372611694335938e+02, 0e+00, 2.760355377197266e+01, 5.9825126953125e+02, 0e+00, 5.144042053222656e+01, 2.928943603515625e+02, 0e+00, 1.027544235229492e+02, 4.951043579101562e+02, 0e+00, 5.995773773193359e+01, 3.421102600097656e+02, 0e+00, 1.078215545654297e+02, 1.195037170410156e+02, 1.10460601747036e-02, 5.458599090576172e+01, 0e+00, 4.553069496154786e+00, 3.41612060546875e+02, 0e+00, 2.170131301879883e+01, 1.030010543823242e+02, 0e+00, 8.120215301513672e+01, 7.491789672851562e+02, 0e+00, 6.991404266357422e+01, 5.895329162597657e+02, 0e+00, 1.135743301391602e+02, 3.416071166992188e+02, 0e+00, 4.7340283203125e+01, 0e+00, 0e+00, 5.200497055053711e+01, 0e+00, 0e+00, 1.632867767333984e+02, 0e+00, 0e+00, 4.768709030151367e+01, 0e+00, 1.231657447814941e+01, 6.910636352539062e+02, 0e+00, 2.961166687011719e+01, 3.547087585449219e+02, 0e+00, 7.366985931396485e+01, 0e+00, 0e+00, 8.234970855712891e+01, 0e+00, 0e+00, 5.445306777954102e+01, 0e+00, 0e+00, 5.103195648193359e+01, 0e+00, 0e+00, 2.373775238037109e+02, 0e+00, 2.984438848495484e+00, 5.549351318359375e+02, 0e+00] +azi180til90.HPer=[0e+00, 1.505818367004395e+01, 2.645351886749268e+00, 0e+00, 2.877429313659668e+01, 0e+00, 0e+00, 4.139206619262696e+01, 0e+00, 0e+00, 7.187946319580078e+01, 0e+00, 0e+00, 7.309109115600586e+01, 0e+00, 2.611042261123657e+00, 7.740876007080078e+01, 0e+00, 1.829004974365234e+01, 2.741302833557129e+01, 0e+00, 3.765718536376953e+01, 3.288518333435059e+01, 0e+00, 8.243519439697266e+01, 7.846853256225586e+00, 0e+00, 1.010624359130859e+02, 3.385052967071533e+00, 0e+00, 1.494884338378906e+02, 0e+00, 3.545531988143921e-01, 4.157590713500976e+01, 0e+00, 1.107443618774414e+02, 3.638712844848633e+01, 0e+00, 5.358210678100586e+01, 1.063688262939453e+02, 0e+00, 1.027544235229492e+02, 1.103331680297852e+02, 0e+00, 5.995773773193359e+01, 1.412454986572266e+02, 0e+00, 1.078215545654297e+02, 6.955290069580079e+01, 3.318442344665527e-01, 4.577065277099609e+01, 0e+00, 1.28741325378418e+01, 4.161510772705078e+01, 0e+00, 2.170131301879883e+01, 9.383418579101563e+01, 0e+00, 9.882831573486328e+01, 4.938135757446289e+01, 0e+00, 6.991404266357422e+01, 5.841671752929688e+01, 0e+00, 1.135743301391602e+02, 6.332904052734375e+01, 0e+00, 4.7340283203125e+01, 0e+00, 0e+00, 5.200497055053711e+01, 0e+00, 0e+00, 1.294864654541016e+02, 0e+00, 0e+00, 4.767662658691406e+01, 0e+00, 1.231657447814941e+01, 4.30048324584961e+01, 0e+00, 2.961166687011719e+01, 2.550588035583496e+01, 0e+00, 7.366985931396485e+01, 0e+00, 0e+00, 8.234970855712891e+01, 0e+00, 0e+00, 5.445306777954102e+01, 0e+00, 0e+00, 4.997388305664062e+01, 0e+00, 0e+00, 4.790428314208985e+01, 0e+00, 2.984438848495484e+00, 1.596457099914551e+01, 0e+00] +azi090til90.HPer=[0e+00, 7.338145904541015e+01, 2.645351886749268e+00, 0e+00, 5.085037841796875e+02, 0e+00, 0e+00, 2.786050415039062e+02, 0e+00, 0e+00, 7.187946319580078e+01, 0e+00, 0e+00, 7.309109115600586e+01, 0e+00, 7.008757781982422e+01, 7.740876007080078e+01, 0e+00, 7.28338818359375e+02, 2.741302833557129e+01, 0e+00, 7.703325317382812e+02, 3.288518333435059e+01, 0e+00, 9.063131713867188e+01, 7.5494384765625e+00, 0e+00, 2.305736206054688e+02, 7.573640942573548e-02, 0e+00, 1.513716430664062e+02, 0e+00, 3.545531988143921e-01, 4.157590713500976e+01, 0e+00, 3.703713073730469e+02, 3.638712844848633e+01, 0e+00, 7.197946624755859e+01, 1.063688262939453e+02, 0e+00, 4.400265502929688e+02, 6.369667663574219e+01, 0e+00, 6.074268798828125e+02, 4.437997817993164e+01, 0e+00, 2.435624664306641e+02, 7.570006370544434e+00, 4.036695003509522e-01, 4.576945495605469e+01, 0e+00, 2.01615966796875e+01, 4.161510772705078e+01, 0e+00, 2.170131301879883e+01, 9.383418579101563e+01, 0e+00, 4.799501342773438e+02, 4.938135757446289e+01, 0e+00, 6.671369018554688e+02, 5.560217666625977e+01, 0e+00, 1.907628540039063e+02, 1.913467216491699e+01, 0e+00, 3.635760925292969e+02, 0e+00, 0e+00, 7.918878173828125e+01, 0e+00, 0e+00, 1.294864654541016e+02, 0e+00, 0e+00, 4.767662658691406e+01, 0e+00, 4.546170349121094e+02, 4.30048324584961e+01, 0e+00, 3.093057632446289e+01, 2.550588035583496e+01, 0e+00, 1.959675537109375e+02, 0e+00, 0e+00, 2.674491638183594e+02, 0e+00, 0e+00, 1.100230102539062e+02, 0e+00, 0e+00, 4.997388305664062e+01, 0e+00, 0e+00, 4.790428314208985e+01, 0e+00, 9.477622146606446e+01, 1.596457099914551e+01, 0e+00] +azi315til90.HPer=[0e+00, 1.505818367004395e+01, 5.660673637390137e+01, 0e+00, 1.938610137939453e+02, 0e+00, 0e+00, 4.389320861816406e+02, 0e+00, 0e+00, 5.044838562011719e+02, 0e+00, 0e+00, 1.018956558227539e+02, 0e+00, 2.611042261123657e+00, 3.388362426757812e+02, 0e+00, 1.829004974365234e+01, 8.41056591796875e+02, 0e+00, 3.765718536376953e+01, 4.259075988769531e+02, 0e+00, 8.243519439697266e+01, 1.089101791381836e+01, 0e+00, 1.669828552246094e+02, 5.390908432006835e+00, 0e+00, 2.087430877685547e+02, 0e+00, 3.545531988143921e-01, 5.499112548828125e+02, 0e+00, 2.760355377197266e+01, 6.313048950195313e+02, 0e+00, 5.144042053222656e+01, 2.558282104492187e+02, 0e+00, 1.027544235229492e+02, 3.357709838867187e+02, 0e+00, 5.995773773193359e+01, 1.864128112792969e+02, 0e+00, 1.096111068725586e+02, 4.289056854248047e+01, 1.10460601747036e-02, 2.382440185546875e+02, 0e+00, 4.553069496154786e+00, 4.472255676269531e+02, 0e+00, 2.170131301879883e+01, 1.028159652709961e+02, 0e+00, 8.120215301513672e+01, 6.223974609375e+02, 0e+00, 6.991404266357422e+01, 4.3415966796875e+02, 0e+00, 1.135743301391602e+02, 2.15906982421875e+02, 0e+00, 1.777146759033203e+02, 0e+00, 0e+00, 4.356437377929688e+02, 0e+00, 0e+00, 2.092446960449219e+02, 0e+00, 0e+00, 4.769648132324219e+01, 0e+00, 1.231657447814941e+01, 8.249857666015625e+02, 0e+00, 2.961166687011719e+01, 3.655734802246094e+02, 0e+00, 8.004471740722656e+01, 0e+00, 0e+00, 2.497713439941406e+02, 0e+00, 0e+00, 6.495158081054688e+02, 0e+00, 0e+00, 5.330179214477539e+01, 0e+00, 0e+00, 3.821813903808594e+02, 0e+00, 2.984438848495484e+00, 7.291504272460937e+02, 0e+00] +azi045til90.HPer=[0e+00, 9.261433715820313e+01, 2.645351886749268e+00, 0e+00, 8.723009521484375e+02, 0e+00, 0e+00, 7.744019165039062e+02, 0e+00, 0e+00, 4.5131884765625e+02, 0e+00, 0e+00, 8.377956848144531e+01, 0e+00, 5.851641082763672e+01, 7.994962005615234e+01, 0e+00, 6.851661376953125e+02, 2.741302833557129e+01, 0e+00, 8.293674438476562e+02, 3.288518333435059e+01, 0e+00, 9.315752868652343e+01, 7.5494384765625e+00, 0e+00, 3.501393188476562e+02, 7.573640942573548e-02, 0e+00, 2.114063415527344e+02, 0e+00, 3.545531988143921e-01, 1.317491241455078e+02, 0e+00, 2.111875305175781e+02, 3.638712844848633e+01, 0e+00, 6.444932098388672e+01, 1.063688262939453e+02, 0e+00, 3.603304077148438e+02, 6.369667663574219e+01, 0e+00, 5.706335205078125e+02, 4.437997817993164e+01, 0e+00, 2.899697265625e+02, 7.570006370544434e+00, 6.183417439460755e-02, 2.257755584716797e+02, 0e+00, 9.706083869934082e+00, 4.572682571411133e+01, 0e+00, 2.170131301879883e+01, 9.383418579101563e+01, 0e+00, 3.506959899902344e+02, 4.938135757446289e+01, 0e+00, 5.860706298828125e+02, 5.560217666625977e+01, 0e+00, 2.027042785644531e+02, 1.913467216491699e+01, 0e+00, 6.249396240234375e+02, 0e+00, 0e+00, 4.740874328613281e+02, 0e+00, 0e+00, 1.614438201904297e+02, 0e+00, 0e+00, 4.768168029785156e+01, 0e+00, 4.109575744628906e+02, 4.30048324584961e+01, 0e+00, 3.111586380004883e+01, 2.550588035583496e+01, 0e+00, 2.529997680664063e+02, 0e+00, 0e+00, 5.115415283203125e+02, 0e+00, 0e+00, 7.281035766601562e+02, 0e+00, 0e+00, 5.180544891357422e+01, 0e+00, 0e+00, 1.142257583618164e+02, 0e+00, 1.042616966247559e+02, 1.596457099914551e+01, 0e+00] +azi270til30.HPer=[0e+00, 2.658773078918457e+01, 2.702114734649658e+01, 0e+00, 8.108631210327148e+01, 0e+00, 0e+00, 3.380681335449219e+02, 0e+00, 0e+00, 4.552108154296875e+02, 0e+00, 0e+00, 1.75827392578125e+02, 0e+00, 3.148768663406372e+00, 3.551653686523438e+02, 0e+00, 2.068134384155274e+01, 7.120871215820313e+02, 0e+00, 5.329468460083008e+01, 3.663415405273437e+02, 0e+00, 1.756335784912109e+02, 1.870604705810547e+01, 0e+00, 3.920368835449219e+02, 4.216985130310059e+00, 0e+00, 4.193464965820312e+02, 0e+00, 7.733316659927369e-01, 9.917743774414063e+02, 0e+00, 4.116720581054688e+01, 1.037601049804688e+03, 0e+00, 1.069554672241211e+02, 4.279968078613281e+02, 0e+00, 2.502286315917969e+02, 5.118072387695312e+02, 0e+00, 5.009023254394531e+02, 2.961563720703125e+02, 0e+00, 4.868645751953125e+02, 7.170719909667969e+01, 1.142973005771637e-02, 8.079979858398438e+02, 0e+00, 8.648316383361816e+00, 9.883339477539063e+02, 0e+00, 4.609004974365234e+01, 2.098474456787109e+02, 0e+00, 1.377651840209961e+02, 8.764521484375e+02, 0e+00, 1.955643005371094e+02, 5.368090637207031e+02, 0e+00, 2.702839752197266e+02, 2.219632720947266e+02, 0e+00, 5.96602880859375e+02, 0e+00, 0e+00, 7.073731689453125e+02, 0e+00, 0e+00, 3.511370422363281e+02, 0e+00, 0e+00, 9.997473907470703e+01, 0e+00, 1.437339382171631e+01, 6.610674682617188e+02, 0e+00, 6.265639801025391e+01, 2.479071472167969e+02, 0e+00, 1.448838134765625e+02, 0e+00, 0e+00, 2.564058776855469e+02, 0e+00, 0e+00, 4.720367126464844e+02, 0e+00, 0e+00, 1.072268585205078e+02, 0e+00, 0e+00, 2.758533630371094e+02, 0e+00, 3.439757490158081e+00, 3.875126586914063e+02, 0e+00] +azi000til30.HPer=[0e+00, 6.426363983154297e+01, 1.519500951766968e+01, 0e+00, 6.775497192382812e+02, 0e+00, 0e+00, 8.563843383789062e+02, 0e+00, 0e+00, 7.235150146484375e+02, 0e+00, 0e+00, 1.833852966308594e+02, 0e+00, 4.676058292388916e+00, 3.528588134765625e+02, 0e+00, 2.702146636962891e+02, 5.2167998046875e+02, 0e+00, 5.99252392578125e+02, 1.802515213012695e+02, 0e+00, 1.832154083251953e+02, 1.604427146911621e+01, 0e+00, 5.681608642578125e+02, 7.854085564613342e-02, 0e+00, 4.631290588378906e+02, 0e+00, 7.733316659927369e-01, 1.055536499023438e+03, 0e+00, 5.117922973632812e+01, 8.964073486328125e+02, 0e+00, 1.138067916870117e+02, 3.471550109863281e+02, 0e+00, 4.323623596191406e+02, 2.727851501464844e+02, 0e+00, 8.62004638671875e+02, 9.885848236083984e+01, 0e+00, 6.1566279296875e+02, 1.123478279113769e+01, 1.142973005771637e-02, 9.352807006835938e+02, 0e+00, 8.648316383361816e+00, 9.751469360351563e+02, 0e+00, 4.609004974365234e+01, 2.070316558837891e+02, 0e+00, 2.976952301025391e+02, 5.818380981445313e+02, 0e+00, 5.605421142578125e+02, 2.705589111328125e+02, 0e+00, 3.333083679199219e+02, 3.862986373901367e+01, 0e+00, 1.005027307128906e+03, 0e+00, 0e+00, 1.00583056640625e+03, 0e+00, 0e+00, 3.737342956542969e+02, 0e+00, 0e+00, 9.997831726074219e+01, 0e+00, 1.144910247802734e+02, 5.659526733398437e+02, 0e+00, 6.345015563964844e+01, 1.591683654785156e+02, 0e+00, 2.717131530761719e+02, 0e+00, 0e+00, 5.59890283203125e+02, 0e+00, 0e+00, 9.483795776367188e+02, 0e+00, 0e+00, 1.085219711303711e+02, 0e+00, 0e+00, 3.227497436523437e+02, 0e+00, 2.595315990447998e+01, 3.52840673828125e+02, 0e+00] +azi090til30.HPer=[0e+00, 6.774644012451172e+01, 3.775336623191833e+00, 0e+00, 5.60815771484375e+02, 0e+00, 0e+00, 5.75281103515625e+02, 0e+00, 0e+00, 4.176174926757812e+02, 0e+00, 0e+00, 1.630173889160156e+02, 0e+00, 3.262152862548828e+01, 1.680016754150391e+02, 0e+00, 5.087108032226562e+02, 3.116488571166992e+01, 0e+00, 7.721040283203125e+02, 4.355228500366211e+01, 0e+00, 1.838297058105469e+02, 1.604242897033691e+01, 0e+00, 5.21548046875e+02, 7.854085564613342e-02, 0e+00, 4.212297058105469e+02, 0e+00, 7.733316659927369e-01, 6.960891479492187e+02, 0e+00, 2.641335144042969e+02, 4.757369384765625e+02, 0e+00, 1.251471496582031e+02, 2.414712646484375e+02, 0e+00, 5.875007690429687e+02, 9.386139526367188e+01, 0e+00, 1.048371459960938e+03, 7.539131164550781e+01, 0e+00, 6.226054931640625e+02, 1.123478279113769e+01, 1.483780741691589e-01, 7.991814575195312e+02, 0e+00, 1.692354011535645e+01, 6.883370361328125e+02, 0e+00, 4.609004974365234e+01, 2.006805786132813e+02, 0e+00, 5.058822814941406e+02, 1.766545257568359e+02, 0e+00, 7.927871337890625e+02, 8.117123413085938e+01, 0e+00, 3.474724914550781e+02, 2.850364303588867e+01, 0e+00, 9.128386840820312e+02, 0e+00, 0e+00, 7.345570068359375e+02, 0e+00, 0e+00, 3.1733671875e+02, 0e+00, 0e+00, 9.996427764892579e+01, 0e+00, 2.749097351074219e+02, 5.039858856201172e+01, 0e+00, 6.370543823242188e+01, 3.840348930358887e+01, 0e+00, 2.672054565429688e+02, 0e+00, 0e+00, 4.415053283691406e+02, 0e+00, 0e+00, 5.276066284179688e+02, 0e+00, 0e+00, 1.06168782043457e+02, 0e+00, 0e+00, 8.675035858154297e+01, 0e+00, 4.613110847473145e+01, 1.807141265869141e+01, 0e+00] weaBusHHorIR.relHum=[8.500000238418579e-01, 2.958455920219422e-01, 4.89413046836853e-01, 2.30538460612297e-01, 1.395281285047531e-01, 1.899999976158142e-01, 2.999999940395355e-01, 6.21408200263977e-01, 6.980625033378601e-01, 7.539428472518921e-01, 1.899999976158142e-01, 3.499999940395355e-01, 2.5859375e-01, 2.196000039577484e-01, 6.840000033378602e-01, 2.599999904632568e-01, 5.74384605884552e-01, 2.800000011920929e-01, 1.638125032186508e-01, 3.077754974365234e-01, 7.300000190734863e-01, 1.751741111278534e-01, 8.36806845664978e-01, 1.793529391288757e-01, 8.768421053886414e-01, 9.599999785423279e-01, 7.230624794960022e-01, 1.544375002384186e-01, 6.600000262260437e-01, 5.933802247047424e-01, 2.300000041723251e-01, 8.68749988079071e-01, 6.586153745651245e-01, 4.549218773841858e-01, 9.455000042915345e-01, 2.000000029802322e-01, 2.046538472175598e-01, 8.272842049598694e-01, 3.717884302139282e-01, 7.370000004768371e-01, 8.600000143051147e-01, 3.358365297317505e-01, 9.116564631462097e-01, 2.028713226318359e-01, 1.860000014305115e-01, 2.300000041723251e-01, 6.600000262260437e-01, 4.287857115268707e-01, 4.652291715145111e-01, 2.159999966621399e-01, 4.199999868869781e-01, 4.268214404582977e-01, 8.059038639068603e-01, 4.286428511142731e-01, 4.533593654632568e-01, 8.700000047683716e-01, 6.595468759536743e-01, 6.860000014305114e-01, 2.494350671768188e-01, 5.086087048053741e-01, 3.799999952316284e-01, 2.199999988079071e-01, 5.617053627967834e-01, 2.833999931812287e-01, 2.599999904632568e-01, 4.600000083446503e-01, 3.351874887943268e-01, 1.179999992251396e-01, 4.870375812053681e-01, 5.707998156547547e-01, 1.899999976158142e-01, 2.962812483310699e-01, 1.754062503576279e-01, 5.711428761482239e-01, 7.822198390960693e-01, 3.199999928474426e-01, 9.866666793823242e-01, 8.705000162124634e-01, 3.150000035762787e-01, 5.2334064245224e-01, 3.600000143051147e-01, 7.00305700302124e-01, 7.351416110992431e-01, 7.63080358505249e-01, 2.995852589607239e-01, 2.700000107288361e-01, 4.676328122615814e-01, 5.365735173225403e-01, 5.795624852180481e-01, 6.183333396911621e-01, 8.299999833106995e-01, 4.28000009059906e-01, 2.934884607791901e-01, 9.200721144676208e-01, 6.22000002861023e-01, 6.600000262260437e-01, 2.787272751331329e-01, 4.443625092506409e-01, 3.004687428474426e-01, 5.793750047683716e-01, 8.500000238418579e-01] weaBusHHorIR.nOpa=[2.000000029802322e-01, 8.400000095367431e-01, 1.717857152223587e-01, 9.856249809265136e-01, 0e+00, 1.000000014901161e-01, 0e+00, 0e+00, 0e+00, 0e+00, 4.000000059604645e-01, 2.399999976158142e-01, 2.087500005960465e-01, 1e+00, 0e+00, 2.000000029802322e-01, 7.274374842643738e-01, 0e+00, 0e+00, 6.000000163912773e-02, 5e-01, 0e+00, 7.319999814033509e-01, 0e+00, 1e+00, 1e+00, 0e+00, 9.424999952316284e-01, 2.718750119209289e-01, 9.646875143051148e-01, 8.999999761581421e-01, 2.324999988079071e-01, 8.999999761581421e-01, 0e+00, 1e+00, 1.000000014901161e-01, 3.812500014901161e-02, 1e+00, 9.904166698455811e-01, 8.999999761581421e-01, 5e-01, 5.804166555404663e-01, 9.199999809265137e-01, 1.000000014901161e-01, 3.181250095367432e-01, 6.000000238418579e-01, 1e+00, 6.450000047683716e-01, 4.000000059604645e-01, 4.599999904632568e-01, 1.000000014901161e-01, 0e+00, 9.784821510314942e-01, 0e+00, 5.531250014901161e-02, 1e+00, 1e+00, 0e+00, 4.056249916553497e-01, 3.045000076293946e-01, 1.000000014901161e-01, 6.463281154632569e-01, 3.728750050067902e-01, 5.982142686843872e-02, 5.993749976158143e-01, 0e+00, 8.999999761581421e-01, 3.225000023841858e-01, 4.950000047683716e-01, 8.999999761581421e-01, 6.99999988079071e-01, 0e+00, 3.750000059604645e-01, 5.910000085830689e-01, 1e+00, 3.00000011920929e-01, 1e+00, 0e+00, 4.799999952316284e-01, 0e+00, 8.00000011920929e-01, 9.004999876022339e-01, 8.687499910593033e-02, 3.440625071525574e-01, 2.40625e-01, 0e+00, 4.965624988079071e-01, 7.799999833106994e-01, 3.059374928474426e-01, 0e+00, 3.00000011920929e-01, 0e+00, 6.442307829856873e-01, 1e+00, 0e+00, 5e-01, 5.971874952316284e-01, 0e+00, 1.343749955296517e-01, 0e+00, 0e+00] weaBusHHorIR.nTot=[2.000000029802322e-01, 9.737499833106995e-01, 6.220000147819519e-01, 1e+00, 1.000000014901161e-01, 4.000000059604645e-01, 0e+00, 1.618750005960465e-01, 0e+00, 0e+00, 4.000000059604645e-01, 3.28250002861023e-01, 4.946562528610229e-01, 1e+00, 2.453125044703484e-02, 6.99999988079071e-01, 7.265000104904175e-01, 0e+00, 0e+00, 1.800000011920929e-01, 6.99999988079071e-01, 6.843750029802323e-02, 8.407812356948853e-01, 2.199999958276749e-01, 1e+00, 1e+00, 0e+00, 1e+00, 2.718750119209289e-01, 9.646875143051148e-01, 1e+00, 1.967187523841858e-01, 8.999999761581421e-01, 0e+00, 1e+00, 6.000000238418579e-01, 3.812500014901161e-02, 1e+00, 1e+00, 1e+00, 5e-01, 7.274999976158142e-01, 9.927272796630859e-01, 2.605113625526428e-01, 5.337500095367431e-01, 1e+00, 1e+00, 7.287499785423279e-01, 5.09375e-01, 4.599999904632568e-01, 1.000000014901161e-01, 0e+00, 9.721875190734863e-01, 0e+00, 2.158749938011169e-01, 1e+00, 1e+00, 0e+00, 4.943749904632568e-01, 3.045000076293946e-01, 1.000000014901161e-01, 7.479687452316284e-01, 3.710000097751617e-01, 5.982142686843872e-02, 8.856250047683716e-01, 0e+00, 8.999999761581421e-01, 3.225000023841858e-01, 4.950000047683716e-01, 9.640625e-01, 6.99999988079071e-01, 0e+00, 6.012500047683715e-01, 9.162500143051148e-01, 1e+00, 4.000000059604645e-01, 1e+00, 0e+00, 4.799999952316284e-01, 0e+00, 8.00000011920929e-01, 1e+00, 2.800000071525574e-01, 3.440625071525574e-01, 2.40625e-01, 0e+00, 4.953125059604645e-01, 7.799999833106994e-01, 3.059374928474426e-01, 0e+00, 3.00000011920929e-01, 0e+00, 7.553571581840515e-01, 1e+00, 0e+00, 6.99999988079071e-01, 8.999999761581421e-01, 0e+00, 1.343749955296517e-01, 0e+00, 0e+00] toDryAir.XiDry=[7.90035875979811e-04, 2.868543937802315e-03, 1.56147803645581e-03, 1.490109111182392e-03, 1.586128422059119e-03, 1.452093827538192e-03, 1.592522440478206e-03, 1.959425513632596e-03, 1.202933769673109e-03, 1.76270199008286e-03, 1.624858588911593e-03, 2.122231759130955e-03, 1.779336133040488e-03, 2.136832010000944e-03, 2.798216417431831e-03, 2.609019167721272e-03, 4.493274819105863e-03, 2.757229981943965e-03, 1.011526281945407e-03, 3.352869488298893e-03, 3.211519448086619e-03, 2.301534032449126e-03, 4.669462889432907e-03, 1.740122889168561e-03, 4.411958996206522e-03, 2.774366410449147e-03, 3.67099940776825e-03, 2.081898134201765e-03, 3.982184361666441e-03, 2.31242636218667e-03, 3.895696019753814e-03, 3.627690672874451e-03, 7.012635096907615e-03, 4.715292248874903e-03, 4.939072113484144e-03, 4.787659272551537e-03, 3.12961507588625e-03, 7.102770078927278e-03, 7.499965839087963e-03, 8.807972818613053e-03, 8.95141065120697e-03, 8.110501617193223e-03, 1.163483671844006e-02, 3.562991740182042e-03, 4.618475865572691e-03, 4.853871650993824e-03, 1.259281113743782e-02, 1.134249828755856e-02, 6.731092184782028e-03, 5.430484376847744e-03, 9.993109852075577e-03, 6.15493468940258e-03, 1.255052983760834e-02, 1.002911143004894e-02, 7.845890708267689e-03, 1.486931554973125e-02, 1.02485466748476e-02, 9.945807605981826e-03, 8.47421120852232e-03, 1.217598337680101e-02, 7.396217901259661e-03, 6.482083164155483e-03, 9.074222296476364e-03, 5.625256896018982e-03, 7.020066492259502e-03, 6.107097025960684e-03, 6.132209580391646e-03, 4.129326716065407e-03, 7.132978644222021e-03, 1.030495874583721e-02, 3.09316604398191e-03, 3.257117047905922e-03, 3.106848476454616e-03, 8.329586312174796e-03, 9.391890279948712e-03, 6.048421375453472e-03, 6.290234532207251e-03, 4.520597495138645e-03, 5.235791951417923e-03, 4.691704269498586e-03, 3.308350453153253e-03, 8.143653348088264e-03, 4.807360842823983e-03, 5.447397660464049e-03, 1.56385051086545e-03, 1.837837975472212e-03, 2.498605800792575e-03, 3.840227518230677e-03, 2.256164373829961e-03, 3.855700604617596e-03, 2.746299374848604e-03, 2.805757755413652e-03, 2.08339593373239e-03, 3.685547364875674e-03, 1.318324776366353e-03, 2.891590353101492e-03, 2.161867590621114e-03, 1.816376415081322e-03, 2.999698463827372e-03, 2.315985551103949e-03, 5.868480657227337e-04] toDryAir.XiTotalAir=[7.894121808931231e-04, 2.860338846221566e-03, 1.559043419547379e-03, 1.48789172526449e-03, 1.583616621792316e-03, 1.44998834002763e-03, 1.589989219792187e-03, 1.955593633465469e-03, 1.201488287188113e-03, 1.759599591605365e-03, 1.622222713194788e-03, 2.117737522348762e-03, 1.776175410486758e-03, 2.132275188341737e-03, 2.79040802270174e-03, 2.602229826152325e-03, 4.473174549639225e-03, 2.749648317694664e-03, 1.01050406228751e-03, 3.341665165498853e-03, 3.201238578185439e-03, 2.296249102801085e-03, 4.647760093212128e-03, 1.737100095488131e-03, 4.392579197883606e-03, 2.76669068261981e-03, 3.657572483643889e-03, 2.077572094276547e-03, 3.966389410197735e-03, 2.30708634480834e-03, 3.880578326061368e-03, 3.614578070119023e-03, 6.963796820491553e-03, 4.693160858005285e-03, 4.914797563105822e-03, 4.764846991747618e-03, 3.119815373793244e-03, 7.052675448358059e-03, 7.444127928465605e-03, 8.731060475111008e-03, 8.871993981301785e-03, 8.045125287026167e-03, 1.150101944804192e-02, 3.550331015139818e-03, 4.597243387252092e-03, 4.830425139516592e-03, 1.243620235472918e-02, 1.121527571231127e-02, 6.686086673289538e-03, 5.401149578392506e-03, 9.89423505961895e-03, 6.117281783372164e-03, 1.239496357738972e-02, 9.929525852203368e-03, 7.784811407327652e-03, 1.465145777910948e-02, 1.014457996934652e-02, 9.847860783338547e-03, 8.403000421822071e-03, 1.202950999140739e-02, 7.341915275901556e-03, 6.440333276987076e-03, 8.992619067430496e-03, 5.593790020793676e-03, 6.97112875059247e-03, 6.070027127861977e-03, 6.094834394752979e-03, 4.112345166504383e-03, 7.082458399236202e-03, 1.019971165806055e-02, 3.083627903833985e-03, 3.246542625129223e-03, 3.097225213423371e-03, 8.260777033865453e-03, 9.304501861333848e-03, 6.012057885527611e-03, 6.250914838165045e-03, 4.500253684818744e-03, 5.208520870655775e-03, 4.669794719666243e-03, 3.297441406175494e-03, 8.07785801589489e-03, 4.784360807389021e-03, 5.417884141206741e-03, 1.561402925290167e-03, 1.834466587752104e-03, 2.492376090958715e-03, 3.825533390045166e-03, 2.251085452735424e-03, 3.840889688581228e-03, 2.738777780905366e-03, 2.797907358035445e-03, 2.079064352437854e-03, 3.672013571485877e-03, 1.316589000634849e-03, 2.883253153413534e-03, 2.157203014940024e-03, 1.81308314204216e-03, 2.990726893767714e-03, 2.310633938759565e-03, 5.865038838237524e-04] -weaBusHHorIR.TBlaSky=[2.376932525634766e+02, 2.727651916503906e+02, 2.524712341308594e+02, 2.676143310546875e+02, 2.667413696289062e+02, 2.619539794921875e+02, 2.561205383300781e+02, 2.504537109375e+02, 2.429282012939453e+02, 2.473096466064453e+02, 2.660276489257812e+02, 2.61166455078125e+02, 2.622596801757812e+02, 2.749491027832031e+02, 2.545623413085937e+02, 2.683391418457031e+02, 2.698752258300781e+02, 2.659343872070312e+02, 2.568099853515625e+02, 2.68659033203125e+02, 2.594660339355469e+02, 2.696064392089844e+02, 2.651407836914062e+02, 2.646481384277344e+02, 2.677040893554687e+02, 2.597180480957031e+02, 2.578867553710937e+02, 2.779420715332031e+02, 2.630440307617188e+02, 2.623862060546875e+02, 2.830561218261719e+02, 2.579094909667969e+02, 2.779247741699219e+02, 2.683388488769531e+02, 2.68771484375e+02, 2.822752685546875e+02, 2.733658752441406e+02, 2.767790466308594e+02, 2.899919982910156e+02, 2.806200317382812e+02, 2.742985229492188e+02, 2.874993041992187e+02, 2.8349462890625e+02, 2.7653544921875e+02, 2.846494567871094e+02, 2.836375427246094e+02, 2.910102172851563e+02, 2.907215881347656e+02, 2.780290954589844e+02, 2.862712768554687e+02, 2.84789794921875e+02, 2.741159423828125e+02, 2.871032897949219e+02, 2.832750610351562e+02, 2.785141906738281e+02, 2.898092346191406e+02, 2.871924011230469e+02, 2.758137878417969e+02, 2.924173156738281e+02, 2.871969055175781e+02, 2.8069384765625e+02, 2.9075380859375e+02, 2.802922790527344e+02, 2.792659423828125e+02, 2.893348510742188e+02, 2.727907409667969e+02, 2.858379699707031e+02, 2.901921752929687e+02, 2.787008483886719e+02, 2.869832885742188e+02, 2.792878112792969e+02, 2.681994995117187e+02, 2.785196960449219e+02, 2.797594421386719e+02, 2.825539672851563e+02, 2.810917053222656e+02, 2.72149462890625e+02, 2.590105041503906e+02, 2.794971374511719e+02, 2.665540466308594e+02, 2.721368103027344e+02, 2.799142333984375e+02, 2.631269714355469e+02, 2.665608764648438e+02, 2.584119140625e+02, 2.599693603515625e+02, 2.612118347167969e+02, 2.687026184082031e+02, 2.561107574462891e+02, 2.608602844238281e+02, 2.547983856201172e+02, 2.604497314453125e+02, 2.658602355957031e+02, 2.643461853027344e+02, 2.455424255371094e+02, 2.592132568359375e+02, 2.668460632324219e+02, 2.535879058837891e+02, 2.683632080078125e+02, 2.538646911621094e+02, 2.304767913818359e+02] +weaBusHHorIR.TBlaSky=[2.376931762695312e+02, 2.727651000976563e+02, 2.524711578369141e+02, 2.676142639160156e+02, 2.667412780761719e+02, 2.619539184570312e+02, 2.561204528808594e+02, 2.504536315917969e+02, 2.429281127929688e+02, 2.473095642089844e+02, 2.660275573730469e+02, 2.611663635253906e+02, 2.622595886230469e+02, 2.749490356445312e+02, 2.545622497558594e+02, 2.683390502929688e+02, 2.698751342773438e+02, 2.659342956542969e+02, 2.568099182128906e+02, 2.686589416503906e+02, 2.594659423828125e+02, 2.696063598632812e+02, 2.651406982421875e+02, 2.646480529785156e+02, 2.677039978027344e+02, 2.597179565429688e+02, 2.578866821289063e+02, 2.779419799804688e+02, 2.630439453125e+02, 2.623861145019531e+02, 2.830560302734375e+02, 2.579094116210937e+02, 2.779246826171875e+02, 2.683387817382812e+02, 2.687713928222656e+02, 2.822751770019531e+02, 2.733657836914062e+02, 2.76778955078125e+02, 2.899919067382813e+02, 2.806199401855469e+02, 2.742984313964844e+02, 2.874992126464844e+02, 2.834945373535156e+02, 2.765353576660156e+02, 2.84649365234375e+02, 2.83637451171875e+02, 2.910101257324219e+02, 2.907214965820312e+02, 2.7802900390625e+02, 2.862711853027344e+02, 2.847897033691406e+02, 2.741158508300781e+02, 2.871031982421875e+02, 2.832749633789062e+02, 2.785140991210938e+02, 2.898091430664062e+02, 2.871923095703125e+02, 2.75813720703125e+02, 2.924172241210937e+02, 2.871968139648437e+02, 2.806937561035156e+02, 2.907537048339844e+02, 2.802921875e+02, 2.792658508300781e+02, 2.893347595214844e+02, 2.727906494140625e+02, 2.858378601074219e+02, 2.901920837402344e+02, 2.787007568359375e+02, 2.869831970214844e+02, 2.792877197265625e+02, 2.681994079589844e+02, 2.785196044921875e+02, 2.797593505859375e+02, 2.825538757324219e+02, 2.810916137695312e+02, 2.721493713378906e+02, 2.590104125976562e+02, 2.794970458984375e+02, 2.66553955078125e+02, 2.7213671875e+02, 2.799141418457031e+02, 2.631268798828125e+02, 2.665607849121094e+02, 2.584118225097656e+02, 2.599692687988281e+02, 2.612117431640625e+02, 2.687025268554688e+02, 2.561106689453125e+02, 2.60860205078125e+02, 2.547983093261719e+02, 2.604496398925781e+02, 2.658601440429687e+02, 2.643460998535156e+02, 2.455423492431641e+02, 2.592131652832031e+02, 2.668459716796875e+02, 2.535878143310547e+02, 2.683631164550781e+02, 2.538646057128906e+02, 2.304767150878906e+02] weaBusHHorIR.TDewPoi=[2.534499969482422e+02, 2.675462463378906e+02, 2.608540893554688e+02, 2.600323303222656e+02, 2.609643005371094e+02, 2.598500061035156e+02, 2.604473388671875e+02, 2.632408874511719e+02, 2.576735229492188e+02, 2.620774597167969e+02, 2.609500122070312e+02, 2.6425e+02, 2.621984985351563e+02, 2.64079052734375e+02, 2.672625e+02, 2.664500122070312e+02, 2.728426818847656e+02, 2.669700561523438e+02, 2.556911712646484e+02, 2.6925e+02, 2.6875e+02, 2.648618774414062e+02, 2.731706237792969e+02, 2.620275756835937e+02, 2.725499877929688e+02, 2.670499877929688e+02, 2.7043359375e+02, 2.63946240234375e+02, 2.713539184570312e+02, 2.650899475097656e+02, 2.709500122070312e+02, 2.70346484375e+02, 2.789668701171875e+02, 2.73448876953125e+02, 2.7425e+02, 2.7375e+02, 2.683867614746094e+02, 2.790835693359375e+02, 2.797546203613281e+02, 2.824006286621094e+02, 2.825499877929688e+02, 2.800376098632813e+02, 2.864500122070312e+02, 2.698278076171875e+02, 2.731499938964844e+02, 2.7375e+02, 2.877393798828125e+02, 2.862018188476562e+02, 2.78701953125e+02, 2.757899963378906e+02, 2.8425e+02, 2.772809814453125e+02, 2.876746215820312e+02, 2.843942626953125e+02, 2.809500122070312e+02, 2.903500061035156e+02, 2.848500061035156e+02, 2.8436357421875e+02, 2.818158325195312e+02, 2.870289428710938e+02, 2.798500061035156e+02, 2.779603393554688e+02, 2.829470397949219e+02, 2.759500122070312e+02, 2.7925e+02, 2.770499877929688e+02, 2.771923156738281e+02, 2.722206176757812e+02, 2.793616455078125e+02, 2.84327978515625e+02, 2.6875e+02, 2.689482055664063e+02, 2.683177185058594e+02, 2.814087524414062e+02, 2.83140576171875e+02, 2.770499877929688e+02, 2.775499877929688e+02, 2.730632507324219e+02, 2.748261047363281e+02, 2.735295227050781e+02, 2.6925e+02, 2.814608276367188e+02, 2.738240966796875e+02, 2.753794738769531e+02, 2.606441345214844e+02, 2.625499877929688e+02, 2.659187561035156e+02, 2.709549926757812e+02, 2.649262512207031e+02, 2.710099914550781e+02, 2.670499877929688e+02, 2.6723125e+02, 2.638904541015625e+02, 2.704469055175781e+02, 2.589558044433594e+02, 2.675499877929688e+02, 2.64421435546875e+02, 2.625499877929688e+02, 2.681499938964844e+02, 2.650369262695312e+02, 2.503999938964844e+02] weaBusHHorIR.TWetBul=[2.548114013671875e+02, 2.765366577148437e+02, 2.660687316894531e+02, 2.713701538085937e+02, 2.762739562988281e+02, 2.727921447753906e+02, 2.699911804199219e+02, 2.666452392578125e+02, 2.605939636230469e+02, 2.642045654296875e+02, 2.739708251953125e+02, 2.71900390625e+02, 2.725834411621094e+02, 2.756316223144531e+02, 2.698959289550781e+02, 2.762830810546875e+02, 2.769488952636719e+02, 2.764818115234375e+02, 2.704205871582031e+02, 2.777826782226563e+02, 2.708627014160156e+02, 2.7810439453125e+02, 2.745314758300781e+02, 2.749833862304687e+02, 2.735503601074219e+02, 2.673568725585938e+02, 2.725831115722656e+02, 2.7778466796875e+02, 2.74356103515625e+02, 2.688620361328125e+02, 2.815920104980469e+02, 2.712630981445312e+02, 2.816944885253906e+02, 2.791706420898437e+02, 2.746942077636719e+02, 2.846327514648438e+02, 2.801331726074219e+02, 2.804372497558594e+02, 2.860834411621094e+02, 2.842373962402344e+02, 2.834856567382812e+02, 2.873298522949219e+02, 2.871017639160156e+02, 2.814225158691406e+02, 2.848778991699219e+02, 2.838064270019531e+02, 2.899267028808594e+02, 2.906333740234375e+02, 2.834158752441406e+02, 2.857195556640625e+02, 2.891492004394531e+02, 2.828388854980469e+02, 2.887926696777344e+02, 2.891289306640625e+02, 2.855645141601562e+02, 2.909954223632812e+02, 2.870733764648438e+02, 2.864512023925781e+02, 2.899039245605469e+02, 2.907355346679688e+02, 2.858804016113281e+02, 2.876302673339844e+02, 2.862537353515625e+02, 2.843382690429688e+02, 2.8748779296875e+02, 2.823300170898438e+02, 2.843058776855469e+02, 2.866902282714844e+02, 2.839202514648438e+02, 2.87673828125e+02, 2.805976257324219e+02, 2.778616516113281e+02, 2.812535583496094e+02, 2.848494201660156e+02, 2.847517883300781e+02, 2.843547058105469e+02, 2.77660546875e+02, 2.740442993164062e+02, 2.827222961425781e+02, 2.782190002441406e+02, 2.767081298828125e+02, 2.835501647949219e+02, 2.760149047851563e+02, 2.773045532226562e+02, 2.69976953125e+02, 2.724749145507812e+02, 2.713347534179687e+02, 2.755034912109375e+02, 2.687405944824219e+02, 2.745918212890625e+02, 2.683534851074219e+02, 2.734514099121094e+02, 2.730959350585937e+02, 2.709835998535156e+02, 2.627198364257812e+02, 2.704162292480469e+02, 2.740925659179687e+02, 2.684809753417969e+02, 2.769267272949219e+02, 2.6906494140625e+02, 2.51829833984375e+02] weaBusTDryBulTDewPoiOpa.TBlaSky=[2.377537994384766e+02, 2.729302917480469e+02, 2.520971771240234e+02, 2.676084228515625e+02, 2.66789208984375e+02, 2.620378112792969e+02, 2.560898376464844e+02, 2.507025543212891e+02, 2.428828796386719e+02, 2.472939056396484e+02, 2.659794616699219e+02, 2.612128723144531e+02, 2.623319946289063e+02, 2.749100708007812e+02, 2.546377624511719e+02, 2.682710571289062e+02, 2.698257202148437e+02, 2.661128112792969e+02, 2.568820922851563e+02, 2.687703002929687e+02, 2.59411865234375e+02, 2.697601013183594e+02, 2.65116015625e+02, 2.645667602539062e+02, 2.677019409179687e+02, 2.597425537109375e+02, 2.578849609375e+02, 2.783201049804687e+02, 2.630264831542969e+02, 2.621691955566406e+02, 2.830463562011719e+02, 2.579018859863281e+02, 2.778726989746094e+02, 2.684210571289062e+02, 2.687816101074219e+02, 2.82307373046875e+02, 2.734372009277344e+02, 2.766991882324219e+02, 2.897508605957031e+02, 2.804803894042969e+02, 2.7440625e+02, 2.870889465332031e+02, 2.827899597167969e+02, 2.765184448242188e+02, 2.8466181640625e+02, 2.835798034667969e+02, 2.909696044921875e+02, 2.907069946289063e+02, 2.77960595703125e+02, 2.863398864746094e+02, 2.848462524414062e+02, 2.741164672851563e+02, 2.871796508789063e+02, 2.833038024902344e+02, 2.785334106445313e+02, 2.897330627441406e+02, 2.871306945800781e+02, 2.758964477539063e+02, 2.924347961425781e+02, 2.871891967773437e+02, 2.806610107421875e+02, 2.907520874023438e+02, 2.805221008300781e+02, 2.794918640136719e+02, 2.891892028808594e+02, 2.728976135253906e+02, 2.858232971191406e+02, 2.902323364257812e+02, 2.788421508789062e+02, 2.87107177734375e+02, 2.793934326171875e+02, 2.68135498046875e+02, 2.785548522949219e+02, 2.796795166015625e+02, 2.826356811523438e+02, 2.810556640625e+02, 2.721995544433594e+02, 2.589238952636719e+02, 2.794633178710938e+02, 2.66470263671875e+02, 2.720757141113281e+02, 2.799673706054688e+02, 2.631972900390625e+02, 2.665800354003906e+02, 2.584451293945312e+02, 2.5998876953125e+02, 2.612100769042969e+02, 2.686955200195313e+02, 2.562760498046875e+02, 2.60927197265625e+02, 2.548828125e+02, 2.605786682128906e+02, 2.655400695800781e+02, 2.643514038085938e+02, 2.456027221679688e+02, 2.591251220703125e+02, 2.667467834472656e+02, 2.535997863769531e+02, 2.682539489746094e+02, 2.539163269042969e+02, 2.322686462402344e+02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_Validation_BESTEST_WD200.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_Validation_BESTEST_WD200.txt index 6a87e1cf01..f771570de9 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_Validation_BESTEST_WD200.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_Validation_BESTEST_WD200.txt @@ -1,4 +1,4 @@ -last-generated=2020-08-24 +last-generated=2022-05-18 statistics-simulation= { "linear": " ", @@ -16,22 +16,22 @@ azi045til90.H=[0e+00, 3.109968200683594e+02, 2.207327556610108e+00, 0e+00, 8.123 azi270til30.H=[0e+00, 1.163804122924805e+02, 4.118929243087768e+00, 0e+00, 2.830956176757812e+02, 0e+00, 0e+00, 5.29956201171875e+02, 0e+00, 0e+00, 1.720001525878906e+02, 0e+00, 9.492108225822449e-02, 7.370650634765624e+01, 0e+00, 2.054571723937988e+01, 5.316933715820312e+02, 0e+00, 9.274176940917968e+01, 1.003806304931641e+02, 0e+00, 2.348930725097656e+02, 4.108477973937988e+01, 0e+00, 4.80437353515625e+02, 4.621053695678711e+00, 0e+00, 7.712628295898437e+02, 0e+00, 6.728457212448119e-02, 6.339548950195312e+02, 0e+00, 1.376906471252441e+01, 3.743441711425781e+02, 0e+00, 1.026872787475586e+02, 8.854678344726562e+02, 0e+00, 1.370944732666016e+02, 4.659380432128906e+02, 0e+00, 4.288852661132813e+02, 2.8885078125e+02, 0e+00, 6.086440673828125e+02, 3.459629440307617e+01, 0e+00, 7.462062622070313e+02, 1.519503831863403e+00, 7.276484966278076e-01, 8.601453857421875e+02, 0e+00, 3.345017166137696e+01, 8.584214477539062e+02, 0e+00, 8.627165985107422e+01, 8.8009638671875e+02, 0e+00, 2.344493988037109e+02, 4.116433349609375e+02, 0e+00, 3.753931213378906e+02, 1.895912139892578e+02, 0e+00, 5.208853393554688e+02, 2.565097618103027e+01, 0e+00, 2.049920532226562e+02, 0e+00, 0e+00, 5.945778198242188e+02, 0e+00, 1.249038362503052e+00, 8.151533447265625e+02, 0e+00, 2.533898544311523e+01, 6.8273212890625e+02, 0e+00, 3.30364242553711e+01, 4.5232177734375e+02, 0e+00, 1.356725433349609e+02, 9.221830749511719e+00, 0e+00, 1.768058135986328e+02, 0e+00, 0e+00, 4.541417663574219e+02, 0e+00, 0e+00, 5.362128295898438e+02, 0e+00, 0e+00, 1.072825424194336e+02, 0e+00, 5.224871158599854e+00, 5.320508666992188e+02, 0e+00, 3.573765449523925e+01, 1.360316253662109e+02, 0e+00] azi000til30.H=[0e+00, 2.879322937011719e+02, 4.118929243087768e+00, 0e+00, 8.410284423828125e+02, 0e+00, 0e+00, 9.649845092773437e+02, 0e+00, 0e+00, 1.720001525878906e+02, 0e+00, 9.492108225822449e-02, 7.377749786376953e+01, 0e+00, 9.126815795898438e+01, 4.679660705566406e+02, 0e+00, 3.579791870117188e+02, 9.681634826660157e+01, 0e+00, 7.730199340820312e+02, 4.072853813171387e+01, 0e+00, 7.242434204101562e+02, 4.621053695678711e+00, 0e+00, 1.056093676757813e+03, 0e+00, 6.728457212448119e-02, 6.688223266601562e+02, 0e+00, 1.376906471252441e+01, 3.741856323242188e+02, 0e+00, 1.323497772216797e+02, 6.851987670898437e+02, 0e+00, 4.028392883300781e+02, 3.3810732421875e+02, 0e+00, 5.216718383789063e+02, 1.581484634399414e+02, 0e+00, 8.01935791015625e+02, 3.294248199462891e+01, 0e+00, 8.20757763671875e+02, 1.32162127494812e+00, 7.276484966278076e-01, 8.630814819335938e+02, 0e+00, 3.345017166137696e+01, 7.742085815429688e+02, 0e+00, 1.704188385009766e+02, 6.40811865234375e+02, 0e+00, 3.976070983886719e+02, 2.917951110839844e+02, 0e+00, 5.190488525390625e+02, 9.997207183837891e+01, 0e+00, 6.292703247070312e+02, 8.837285995483398e+00, 0e+00, 2.049920532226562e+02, 0e+00, 0e+00, 6.5858837890625e+02, 0e+00, 1.249038362503052e+00, 8.4997958984375e+02, 0e+00, 2.864610290527344e+01, 6.154005249023437e+02, 0e+00, 3.015715545654297e+02, 3.336712524414062e+02, 0e+00, 1.356725433349609e+02, 9.221830749511719e+00, 0e+00, 1.823416015625e+02, 0e+00, 0e+00, 8.875762573242188e+02, 0e+00, 0e+00, 8.150107421875e+02, 0e+00, 0e+00, 1.078040725708008e+02, 0e+00, 5.224871158599854e+00, 5.50703271484375e+02, 0e+00, 6.281587600708008e+01, 1.141141754150391e+02, 0e+00] azi090til30.H=[0e+00, 2.791639953613281e+02, 4.118929243087768e+00, 0e+00, 6.519687866210937e+02, 0e+00, 0e+00, 6.178913940429687e+02, 0e+00, 0e+00, 1.720001525878906e+02, 0e+00, 9.492108225822449e-02, 7.320338287353516e+01, 0e+00, 2.090922546386719e+02, 1.566533233642578e+02, 0e+00, 4.888563049316406e+02, 9.226961822509766e+01, 0e+00, 8.88867578125e+02, 4.063498649597168e+01, 0e+00, 7.149886962890625e+02, 4.621053695678711e+00, 0e+00, 9.073792358398438e+02, 0e+00, 6.728457212448119e-02, 5.857926635742188e+02, 0e+00, 1.8119873046875e+01, 3.734942687988281e+02, 0e+00, 2.349919891357422e+02, 3.927333984375e+02, 0e+00, 6.974235473632813e+02, 2.240965637207031e+02, 0e+00, 5.995509521484375e+02, 1.189428375244141e+02, 0e+00, 9.021388061523437e+02, 3.294248199462891e+01, 0e+00, 8.10409326171875e+02, 1.32162127494812e+00, 7.276484966278076e-01, 7.493726806640625e+02, 0e+00, 6.812063446044922e+01, 6.134402221679687e+02, 0e+00, 4.050843505859375e+02, 3.452922424316406e+02, 0e+00, 5.623468994140625e+02, 1.801353057861328e+02, 0e+00, 6.030763671875e+02, 7.57217399597168e+01, 0e+00, 6.440576171875e+02, 8.837285995483398e+00, 0e+00, 2.049920532226562e+02, 0e+00, 0e+00, 5.439246826171875e+02, 0e+00, 1.999843120574951e+00, 4.89358740234375e+02, 0e+00, 4.186348342895508e+01, 2.002490875244141e+02, 0e+00, 4.963227416992187e+02, 6.857896728515625e+01, 0e+00, 1.356725433349609e+02, 9.221830749511719e+00, 0e+00, 1.814577575683594e+02, 0e+00, 0e+00, 6.326439453125e+02, 0e+00, 0e+00, 4.530156555175781e+02, 0e+00, 0e+00, 1.062455841064453e+02, 0e+00, 5.224871158599854e+00, 3.942360000610351e+01, 0e+00, 7.106735916137696e+01, 5.240024566650391e+01, 0e+00] -azi000til00.HPer=[0e+00, 2.16187158203125e+02, 4.414655113220215e+00, 0e+00, 5.36250390625e+02, 0e+00, 0e+00, 6.5785546875e+02, 0e+00, 0e+00, 1.843492126464844e+02, 0e+00, 1.017361104488373e-01, 7.87700210571289e+01, 0e+00, 5.104760360717773e+01, 3.855769409179687e+02, 0e+00, 2.924080993652344e+02, 1.022198760986328e+02, 0e+00, 6.437856323242188e+02, 4.338473777770996e+01, 0e+00, 6.709796630859375e+02, 4.95283031463623e+00, 0e+00, 9.609739135742187e+02, 0e+00, 7.211538553237914e-02, 6.737889404296875e+02, 0e+00, 1.382294960021973e+01, 4.008857604980469e+02, 0e+00, 1.613089599609375e+02, 7.238201049804687e+02, 0e+00, 4.726226379394531e+02, 3.813014770507813e+02, 0e+00, 5.650806396484375e+02, 2.032004943847656e+02, 0e+00, 8.554885864257812e+02, 3.560832977294922e+01, 0e+00, 8.688718139648438e+02, 1.416509437561035e+00, 7.798913002014161e-01, 9.090970458984375e+02, 0e+00, 4.335553741455078e+01, 8.234852416992187e+02, 0e+00, 2.370417785644531e+02, 6.97057275390625e+02, 0e+00, 4.427631103515625e+02, 3.254040771484375e+02, 0e+00, 5.423708862304687e+02, 1.211992446899414e+02, 0e+00, 6.418335327148437e+02, 9.08287239074707e+00, 0e+00, 2.197098205566406e+02, 0e+00, 0e+00, 6.320747680664062e+02, 0e+00, 1.338715267181396e+00, 7.400557373046875e+02, 0e+00, 2.831263542175293e+01, 5.022090759277344e+02, 0e+00, 2.115894317626953e+02, 2.505967346191406e+02, 0e+00, 1.454133911132812e+02, 9.883928203582762e+00, 0e+00, 1.923597045898437e+02, 0e+00, 0e+00, 6.202860229492187e+02, 0e+00, 0e+00, 5.627681884765625e+02, 0e+00, 0e+00, 1.145217926025391e+02, 0e+00, 5.599999904632568e+00, 3.064031127929687e+02, 0e+00, 4.744022979736328e+01, 7.541809539794922e+01, 0e+00] -azi000til90.HPer=[0e+00, 2.762961059570313e+02, 1.820606863498688e+00, 0e+00, 8.132165649414062e+02, 0e+00, 0e+00, 8.528117919921875e+02, 0e+00, 0e+00, 8.845408630371094e+01, 0e+00, 4.089686572551727e-02, 3.401013717651367e+01, 0e+00, 1.070482482910156e+02, 3.579828247070312e+02, 0e+00, 2.649198608398438e+02, 4.868893661499023e+01, 0e+00, 4.82881640625e+02, 1.952378425598145e+01, 0e+00, 4.195395080566406e+02, 2.045057535171509e+00, 0e+00, 5.036140991210938e+02, 0e+00, 2.889083325862885e-02, 3.205423889160156e+02, 0e+00, 5.688310623168945e+00, 1.699062194824219e+02, 0e+00, 4.37260856628418e+01, 1.803762908935547e+02, 0e+00, 5.037898712158203e+01, 8.4818115234375e+01, 0e+00, 1.510087310791016e+02, 5.056675643920899e+01, 0e+00, 1.818281097412109e+02, 1.417833042144775e+01, 0e+00, 2.282388580322266e+02, 5.769601821899414e-01, 3.179460287094116e-01, 2.175031433105469e+02, 0e+00, 1.481083030700684e+01, 2.11136083984375e+02, 0e+00, 4.06645622253418e+01, 1.179852279663086e+02, 0e+00, 8.604644622802735e+01, 7.440468292236328e+01, 0e+00, 1.904348876953125e+02, 3.335801849365235e+01, 0e+00, 2.853856567382812e+02, 3.814383268356323e+00, 0e+00, 9.714473114013671e+01, 0e+00, 0e+00, 3.736746520996094e+02, 0e+00, 5.445364475250244e-01, 5.330854736328125e+02, 0e+00, 1.66995792388916e+01, 4.401645263671875e+02, 0e+00, 2.6646748046875e+02, 2.782089599609375e+02, 0e+00, 7.045413208007812e+01, 4.101416826248169e+00, 0e+00, 9.917702636718749e+01, 0e+00, 0e+00, 8.029113159179688e+02, 0e+00, 0e+00, 7.754686889648438e+02, 0e+00, 0e+00, 5.400632629394531e+01, 0e+00, 2.319979190826416e+00, 6.32891162109375e+02, 0e+00, 6.213556518554687e+01, 1.499951385498047e+02, 0e+00] -azi270til90.HPer=[0e+00, 5.06821762084961e+01, 1.820606863498688e+00, 0e+00, 2.496249465942383e+01, 0e+00, 0e+00, 3.591533279418945e+01, 0e+00, 0e+00, 7.863590240478516e+01, 0e+00, 4.089686572551727e-02, 3.386125183105469e+01, 0e+00, 1.021846103668213e+01, 5.101822448730469e+02, 0e+00, 4.334258804321289e+01, 6.777248229980469e+01, 0e+00, 3.226266403198242e+01, 5.294948120117188e+01, 0e+00, 8.704417877197265e+01, 2.045057535171509e+00, 0e+00, 4.179771347045899e+01, 0e+00, 2.889083325862885e-02, 2.0172119140625e+02, 0e+00, 5.688310623168945e+00, 1.820753265380859e+02, 0e+00, 4.37260856628418e+01, 6.619930541992187e+02, 0e+00, 5.037898712158203e+01, 4.11378515625e+02, 0e+00, 1.262506530761719e+02, 3.067463928222656e+02, 0e+00, 6.568334045410157e+01, 3.416852951049805e+01, 0e+00, 9.717679595947266e+01, 1.117535209655762e+00, 3.179460287094116e-01, 2.097673034667969e+02, 0e+00, 1.481083030700684e+01, 4.486461242675781e+02, 0e+00, 4.06645622253418e+01, 6.7105283203125e+02, 0e+00, 8.550002288818359e+01, 3.843088317871094e+02, 0e+00, 1.030916458129883e+02, 2.227419372558594e+02, 0e+00, 1.29262353515625e+02, 4.442124938964844e+01, 0e+00, 8.980616149902343e+01, 0e+00, 0e+00, 1.828874969482422e+02, 0e+00, 5.445364475250244e-01, 4.50501171875e+02, 0e+00, 1.073999214172363e+01, 5.929484741210938e+02, 0e+00, 1.774691467285156e+01, 5.386549438476562e+02, 0e+00, 5.807642135620117e+01, 4.101416826248169e+00, 0e+00, 7.446504821777344e+01, 0e+00, 0e+00, 4.100870208740234e+01, 0e+00, 0e+00, 1.424671936035156e+02, 0e+00, 0e+00, 5.061758651733398e+01, 0e+00, 2.319979190826416e+00, 5.926086181640625e+02, 0e+00, 1.636371269226074e+01, 2.128604187011719e+02, 0e+00] -azi180til90.HPer=[0e+00, 5.06821762084961e+01, 1.820606863498688e+00, 0e+00, 2.496249465942383e+01, 0e+00, 0e+00, 3.591533279418945e+01, 0e+00, 0e+00, 7.464988708496094e+01, 0e+00, 4.089686572551727e-02, 3.334232788085937e+01, 0e+00, 1.021846103668213e+01, 6.293554458618164e+01, 0e+00, 4.334258804321289e+01, 3.970835800170899e+01, 0e+00, 3.226266403198242e+01, 1.694649066925049e+01, 0e+00, 8.704417877197265e+01, 2.045057535171509e+00, 0e+00, 4.179771347045899e+01, 0e+00, 2.889083325862885e-02, 1.196575546264648e+02, 0e+00, 1.20954273223877e+01, 1.49296826171875e+02, 0e+00, 8.144738006591797e+01, 6.945494232177734e+01, 0e+00, 8.323577728271485e+01, 1.034801376342773e+02, 0e+00, 1.262506530761719e+02, 1.153594787597656e+02, 0e+00, 6.568334045410157e+01, 2.325139808654785e+01, 0e+00, 9.717679595947266e+01, 9.484435081481934e-01, 3.179460287094116e-01, 6.383901977539062e+01, 0e+00, 4.206504821777344e+01, 1.029520309448242e+02, 0e+00, 1.356313323974609e+02, 5.299068374633789e+01, 0e+00, 8.812450103759765e+01, 8.152367553710937e+01, 0e+00, 1.030916458129883e+02, 5.833763198852539e+01, 0e+00, 1.29262353515625e+02, 1.381892490386963e+01, 0e+00, 8.980616149902343e+01, 0e+00, 0e+00, 1.074001998901367e+02, 0e+00, 7.373209714889526e-01, 6.421494369506836e+01, 0e+00, 1.073999214172363e+01, 4.400195541381836e+01, 0e+00, 1.774691467285156e+01, 3.306887283325195e+01, 0e+00, 5.807642135620117e+01, 4.101416826248169e+00, 0e+00, 7.446504821777344e+01, 0e+00, 0e+00, 4.100870208740234e+01, 0e+00, 0e+00, 4.801895523071289e+01, 0e+00, 0e+00, 4.712445220947266e+01, 0e+00, 2.319979190826416e+00, 2.226893692016602e+01, 0e+00, 1.636371269226074e+01, 2.203040733337402e+01, 0e+00] -azi090til90.HPer=[0e+00, 2.547030639648438e+02, 1.820606863498688e+00, 0e+00, 4.142103271484375e+02, 0e+00, 0e+00, 1.277588470458984e+02, 0e+00, 0e+00, 7.464988708496094e+01, 0e+00, 4.089686572551727e-02, 3.334232788085937e+01, 0e+00, 3.574460144042969e+02, 6.293554458618164e+01, 0e+00, 5.608451171875e+02, 3.970835800170899e+01, 0e+00, 7.301278930664063e+02, 1.694649066925049e+01, 0e+00, 3.9417724609375e+02, 2.045057535171509e+00, 0e+00, 1.867871215820313e+02, 0e+00, 2.889083325862885e-02, 1.196575546264648e+02, 0e+00, 2.86171142578125e+01, 1.49296826171875e+02, 0e+00, 2.690255737304688e+02, 6.945494232177734e+01, 0e+00, 6.93494189453125e+02, 8.4818115234375e+01, 0e+00, 4.096978881835938e+02, 5.056675643920899e+01, 0e+00, 4.318381225585937e+02, 1.417833042144775e+01, 0e+00, 1.963632293701172e+02, 5.769601821899414e-01, 3.179460287094116e-01, 6.383901977539062e+01, 0e+00, 8.135790100097657e+01, 1.029520309448242e+02, 0e+00, 4.884586181640625e+02, 5.299068374633789e+01, 0e+00, 5.19944482421875e+02, 7.441159057617188e+01, 0e+00, 4.368932250976562e+02, 3.335801849365235e+01, 0e+00, 3.350948547363281e+02, 3.814383268356323e+00, 0e+00, 9.238287506103515e+01, 0e+00, 0e+00, 1.074001998901367e+02, 0e+00, 2.49968204498291e+00, 6.421494369506836e+01, 0e+00, 6.054872131347656e+01, 4.400195541381836e+01, 0e+00, 6.843510375976563e+02, 3.306887283325195e+01, 0e+00, 7.514031677246093e+01, 4.101416826248169e+00, 0e+00, 9.223647918701172e+01, 0e+00, 0e+00, 2.385789916992188e+02, 0e+00, 0e+00, 4.801895523071289e+01, 0e+00, 0e+00, 4.712445220947266e+01, 0e+00, 2.319979190826416e+00, 2.226893692016602e+01, 0e+00, 8.183939056396484e+01, 2.203040733337402e+01, 0e+00] -azi315til90.HPer=[0e+00, 6.595076446533203e+01, 1.820606863498688e+00, 0e+00, 3.071025207519531e+02, 0e+00, 0e+00, 5.486052124023438e+02, 0e+00, 0e+00, 8.722946929931641e+01, 0e+00, 4.089686572551727e-02, 3.418147583007813e+01, 0e+00, 1.021846103668213e+01, 5.87816650390625e+02, 0e+00, 4.334258804321289e+01, 6.590292053222656e+01, 0e+00, 3.226266403198242e+01, 4.422686996459961e+01, 0e+00, 1.049096984863281e+02, 2.045057535171509e+00, 0e+00, 2.658282104492188e+02, 0e+00, 2.889083325862885e-02, 3.197323608398438e+02, 0e+00, 5.688310623168945e+00, 1.870477722167969e+02, 0e+00, 4.37260856628418e+01, 5.668758911132812e+02, 0e+00, 5.037898712158203e+01, 3.025351501464844e+02, 0e+00, 1.262506530761719e+02, 1.858977355957031e+02, 0e+00, 6.568334045410157e+01, 2.189790725708008e+01, 0e+00, 1.197162719726562e+02, 6.96526050567627e-01, 3.179460287094116e-01, 2.756828308105469e+02, 0e+00, 1.481083030700684e+01, 4.238923278808594e+02, 0e+00, 4.06645622253418e+01, 5.359847045898438e+02, 0e+00, 8.550002288818359e+01, 2.885081481933594e+02, 0e+00, 1.030916458129883e+02, 1.496094100952149e+02, 0e+00, 1.29262353515625e+02, 2.545349502563477e+01, 0e+00, 9.317329864501953e+01, 0e+00, 0e+00, 3.490622253417969e+02, 0e+00, 5.445364475250244e-01, 6.689020751953125e+02, 0e+00, 1.073999214172363e+01, 7.122949584960937e+02, 0e+00, 1.774691467285156e+01, 5.639124267578125e+02, 0e+00, 5.807642135620117e+01, 4.101416826248169e+00, 0e+00, 7.937275848388671e+01, 0e+00, 0e+00, 4.400519226074219e+02, 0e+00, 0e+00, 6.291885986328125e+02, 0e+00, 0e+00, 5.446069107055664e+01, 0e+00, 2.319979190826416e+00, 8.573351318359375e+02, 0e+00, 1.636371269226074e+01, 2.474523315429688e+02, 0e+00] -azi045til90.HPer=[0e+00, 3.544798828125e+02, 1.820606863498688e+00, 0e+00, 8.575821044921875e+02, 0e+00, 0e+00, 6.784915405273438e+02, 0e+00, 0e+00, 8.159239196777344e+01, 0e+00, 4.089686572551727e-02, 3.344760437011719e+01, 0e+00, 3.242144165039062e+02, 6.293554458618164e+01, 0e+00, 5.659509155273438e+02, 3.970835800170899e+01, 0e+00, 8.443636596679687e+02, 1.694649066925049e+01, 0e+00, 5.393297729492188e+02, 2.045057535171509e+00, 0e+00, 4.708742065429688e+02, 0e+00, 2.889083325862885e-02, 2.036768341064453e+02, 0e+00, 1.737090759277344e+01, 1.49296826171875e+02, 0e+00, 1.763638916015625e+02, 6.945494232177734e+01, 0e+00, 4.818968444824219e+02, 8.4818115234375e+01, 0e+00, 3.441846984863281e+02, 5.056675643920899e+01, 0e+00, 4.067206115722656e+02, 1.417833042144775e+01, 0e+00, 2.599870697021485e+02, 5.769601821899414e-01, 3.179460287094116e-01, 6.918533325195312e+01, 0e+00, 4.259506988525391e+01, 1.029520309448242e+02, 0e+00, 2.90151123046875e+02, 5.299068374633789e+01, 0e+00, 3.912292358398437e+02, 7.441159057617188e+01, 0e+00, 4.00885986328125e+02, 3.335801849365235e+01, 0e+00, 3.852037658691406e+02, 3.814383268356323e+00, 0e+00, 9.681732635498047e+01, 0e+00, 0e+00, 2.423070831298828e+02, 0e+00, 1.790713882446289e+00, 1.226108520507812e+02, 0e+00, 5.017414855957031e+01, 4.400195541381836e+01, 0e+00, 6.649792114257813e+02, 3.306887283325195e+01, 0e+00, 7.889478302001953e+01, 4.101416826248169e+00, 0e+00, 1.045053558349609e+02, 0e+00, 0e+00, 7.194585083007812e+02, 0e+00, 0e+00, 4.956185913085938e+02, 0e+00, 0e+00, 4.952065124511719e+01, 0e+00, 2.319979190826416e+00, 5.075299530029297e+01, 0e+00, 9.502759704589843e+01, 2.203040733337402e+01, 0e+00] -azi270til30.HPer=[0e+00, 9.684693603515625e+01, 3.925569105148315e+00, 0e+00, 2.786733947753906e+02, 0e+00, 0e+00, 5.35111669921875e+02, 0e+00, 0e+00, 1.673407287597656e+02, 0e+00, 8.993549048900604e-02, 7.084044799804687e+01, 0e+00, 1.889081001281738e+01, 5.6914296875e+02, 0e+00, 7.252276611328125e+01, 1.053463470458984e+02, 0e+00, 2.199712829589844e+02, 5.67330680847168e+01, 0e+00, 4.498927917480469e+02, 4.405374526977539e+00, 0e+00, 7.714575317382812e+02, 0e+00, 6.370114088058471e-02, 6.484898071289062e+02, 0e+00, 1.203148498535156e+01, 3.767101623535156e+02, 0e+00, 8.719052886962891e+01, 9.44439404296875e+02, 0e+00, 1.012785202026367e+02, 5.057504516601563e+02, 0e+00, 3.663881469726563e+02, 3.091588104248047e+02, 0e+00, 5.799293090820313e+02, 4.177809143066406e+01, 0e+00, 7.289313354492188e+02, 1.453856563568115e+00, 6.916486740112304e-01, 8.821541137695312e+02, 0e+00, 3.096996383666992e+01, 9.1176357421875e+02, 0e+00, 6.803788757324219e+01, 9.305628784179687e+02, 0e+00, 1.811786437988281e+02, 4.474618713378906e+02, 0e+00, 3.223651062011719e+02, 2.02900244140625e+02, 0e+00, 4.746985595703125e+02, 2.693093872070312e+01, 0e+00, 1.964261688232422e+02, 0e+00, 0e+00, 6.065538940429688e+02, 0e+00, 1.186627769470215e+00, 8.545421752929688e+02, 0e+00, 2.273150634765625e+01, 7.237571655273438e+02, 0e+00, 2.436163711547852e+01, 4.760404113769531e+02, 0e+00, 1.219208404541016e+02, 8.801557159423828e+00, 0e+00, 1.633351196289063e+02, 0e+00, 0e+00, 4.522531005859375e+02, 0e+00, 0e+00, 5.500700073242188e+02, 0e+00, 0e+00, 1.043057983398437e+02, 0e+00, 4.984860897064209e+00, 5.578218505859375e+02, 0e+00, 3.313128471374512e+01, 1.628812225341797e+02, 0e+00] -azi000til30.HPer=[0e+00, 3.063861206054688e+02, 3.925569105148315e+00, 0e+00, 8.67424365234375e+02, 0e+00, 0e+00, 9.89481640625e+02, 0e+00, 0e+00, 1.722498168945312e+02, 0e+00, 8.993549048900604e-02, 7.091488952636719e+01, 0e+00, 9.403987884521484e+01, 4.930432189941406e+02, 0e+00, 3.720671508789063e+02, 9.580457611083985e+01, 0e+00, 7.942134155273437e+02, 4.0020219039917e+01, 0e+00, 7.697070068359375e+02, 4.405374526977539e+00, 0e+00, 1.07486044921875e+03, 0e+00, 6.370114088058471e-02, 7.07900390625e+02, 0e+00, 1.203148498535156e+01, 3.706256042480469e+02, 0e+00, 1.251956024169922e+02, 7.036310302734375e+02, 0e+00, 4.061869140625e+02, 3.331392272949219e+02, 0e+00, 5.204908081054688e+02, 1.486726196289063e+02, 0e+00, 8.210791015625e+02, 3.001847457885742e+01, 0e+00, 8.440555786132812e+02, 1.255974006652832e+00, 6.916486740112304e-01, 8.860220336914062e+02, 0e+00, 3.096996383666992e+01, 7.930085327148438e+02, 0e+00, 1.653504180908203e+02, 6.540290771484375e+02, 0e+00, 3.973618469238281e+02, 2.88953759765625e+02, 0e+00, 5.329375e+02, 9.571848144531251e+01, 0e+00, 6.556764404296875e+02, 8.110908508300781e+00, 0e+00, 2.013838104248047e+02, 0e+00, 0e+00, 7.019474487304688e+02, 0e+00, 1.186627769470215e+00, 8.95834326171875e+02, 0e+00, 2.821724891662598e+01, 6.47365234375e+02, 0e+00, 3.123255218505859e+02, 3.458174194335937e+02, 0e+00, 1.363612945556641e+02, 8.801557159423828e+00, 0e+00, 1.845768188476563e+02, 0e+00, 0e+00, 9.319895629882812e+02, 0e+00, 0e+00, 8.665707397460938e+02, 0e+00, 0e+00, 1.060001663208008e+02, 0e+00, 4.984860897064209e+00, 5.779631103515625e+02, 0e+00, 6.54670509338379e+01, 1.314485900878906e+02, 0e+00] -azi090til30.HPer=[0e+00, 2.955895812988281e+02, 3.925569105148315e+00, 0e+00, 6.679212280273438e+02, 0e+00, 0e+00, 6.269551635742188e+02, 0e+00, 0e+00, 1.633547058105469e+02, 0e+00, 8.993549048900604e-02, 7.032152252197265e+01, 0e+00, 2.1923876953125e+02, 1.21847492980957e+02, 0e+00, 5.200297668457031e+02, 8.354126434326172e+01, 0e+00, 9.178365356445313e+02, 3.576930732727051e+01, 0e+00, 7.57025830078125e+02, 4.405374526977539e+00, 0e+00, 9.164469604492188e+02, 0e+00, 6.370114088058471e-02, 5.664261474609375e+02, 0e+00, 2.365062408447266e+01, 3.439316589355469e+02, 0e+00, 2.567059936523438e+02, 3.519013061523438e+02, 0e+00, 7.44172900390625e+02, 1.791900421142578e+02, 0e+00, 6.498353637695312e+02, 1.006379089355469e+02, 0e+00, 9.460840942382813e+02, 3.001847457885742e+01, 0e+00, 8.281177856445313e+02, 1.255974006652832e+00, 6.916486740112304e-01, 7.36225830078125e+02, 0e+00, 7.191184387207031e+01, 5.660695068359375e+02, 0e+00, 4.367308349609375e+02, 3.12500732421875e+02, 0e+00, 6.15623095703125e+02, 1.415010467529297e+02, 0e+00, 6.561666748046875e+02, 6.680921936035156e+01, 0e+00, 6.805310546875e+02, 8.110908508300781e+00, 0e+00, 1.990028900146484e+02, 0e+00, 0e+00, 5.310665893554688e+02, 0e+00, 1.93743257522583e+00, 4.682559387207031e+02, 0e+00, 5.014181900024414e+01, 1.74810693359375e+02, 0e+00, 5.212672973632813e+02, 5.501267166137696e+01, 0e+00, 1.387043914794922e+02, 8.801557159423828e+00, 0e+00, 1.8110654296875e+02, 0e+00, 0e+00, 6.49823388671875e+02, 0e+00, 0e+00, 4.556217651367188e+02, 0e+00, 0e+00, 1.00812663269043e+02, 0e+00, 4.984860897064209e+00, 2.544813613891602e+01, 0e+00, 7.531896286010742e+01, 4.409226837158203e+01, 0e+00] +azi000til00.HPer=[0e+00, 2.16187158203125e+02, 4.414655113220215e+00, 0e+00, 5.36250390625e+02, 0e+00, 0e+00, 6.5785546875e+02, 0e+00, 0e+00, 1.843492126464844e+02, 0e+00, 1.017361104488373e-01, 7.87700210571289e+01, 0e+00, 5.098989868164062e+01, 3.855769409179687e+02, 0e+00, 2.924080993652344e+02, 1.022198760986328e+02, 0e+00, 6.437856323242188e+02, 4.340509796142578e+01, 0e+00, 6.709796630859375e+02, 4.95283031463623e+00, 0e+00, 9.609739135742187e+02, 0e+00, 7.211538553237914e-02, 6.737889404296875e+02, 0e+00, 1.35167179107666e+01, 4.008857604980469e+02, 0e+00, 1.613089599609375e+02, 7.238201049804687e+02, 0e+00, 4.726226379394531e+02, 3.813014770507813e+02, 0e+00, 5.650806396484375e+02, 2.032004943847656e+02, 0e+00, 8.554885864257812e+02, 3.560816955566406e+01, 0e+00, 8.688718139648438e+02, 1.416509437561035e+00, 7.798913002014161e-01, 9.090970458984375e+02, 0e+00, 4.335553741455078e+01, 8.234852416992187e+02, 0e+00, 2.370417785644531e+02, 6.97057275390625e+02, 0e+00, 4.427631103515625e+02, 3.254040771484375e+02, 0e+00, 5.423708862304687e+02, 1.211992446899414e+02, 0e+00, 6.418335327148437e+02, 8.151418685913086e+00, 0e+00, 2.197098205566406e+02, 0e+00, 0e+00, 6.320747680664062e+02, 0e+00, 1.338669347763061e+00, 7.400557373046875e+02, 0e+00, 2.77237606048584e+01, 5.022090759277344e+02, 0e+00, 2.115894317626953e+02, 2.505967346191406e+02, 0e+00, 1.454133911132812e+02, 9.883928203582762e+00, 0e+00, 1.923597045898437e+02, 0e+00, 0e+00, 6.202860229492187e+02, 0e+00, 0e+00, 5.627681884765625e+02, 0e+00, 0e+00, 1.145217926025391e+02, 0e+00, 5.599999904632568e+00, 3.064031127929687e+02, 0e+00, 4.744022979736328e+01, 7.542289428710937e+01, 0e+00] +azi000til90.HPer=[0e+00, 3.014627807617188e+02, 1.81796875e+00, 0e+00, 8.047263305664062e+02, 0e+00, 0e+00, 8.533048095703125e+02, 0e+00, 0e+00, 8.730843353271484e+01, 0e+00, 4.089507311582565e-02, 3.39577995300293e+01, 0e+00, 1.240359649658203e+02, 3.760111267089844e+02, 0e+00, 2.847925994873047e+02, 4.827688827514648e+01, 0e+00, 4.794424072265625e+02, 1.941815032958984e+01, 0e+00, 4.244746826171875e+02, 2.043412685394287e+00, 0e+00, 5.040062377929688e+02, 0e+00, 2.889015972614288e-02, 3.210548095703125e+02, 0e+00, 5.90927677154541e+00, 1.699967346191406e+02, 0e+00, 4.706466674804688e+01, 1.805704956054688e+02, 0e+00, 5.305501861572266e+01, 8.511983337402344e+01, 0e+00, 1.50793017578125e+02, 5.368270111083984e+01, 0e+00, 1.818931060791016e+02, 1.418577003479004e+01, 0e+00, 2.283415069580078e+02, 6.175683021545411e-01, 3.179393053054809e-01, 2.175523986816406e+02, 0e+00, 1.619042892456055e+01, 2.112291137695312e+02, 0e+00, 4.248361206054688e+01, 1.213947448730469e+02, 0e+00, 8.633636016845703e+01, 7.495633392333984e+01, 0e+00, 1.906127136230469e+02, 3.57296329498291e+01, 0e+00, 2.902537048339844e+02, 4.533750057220459e+00, 0e+00, 9.709235992431641e+01, 0e+00, 0e+00, 3.739938049316406e+02, 0e+00, 6.454093456268309e-01, 5.340344482421875e+02, 0e+00, 2.012372016906738e+01, 4.405359741210938e+02, 0e+00, 2.713491485595703e+02, 3.010360656738281e+02, 0e+00, 6.957523651123047e+01, 4.097587442398071e+00, 0e+00, 9.790292663574219e+01, 0e+00, 0e+00, 7.980327270507812e+02, 0e+00, 0e+00, 7.714808959960938e+02, 0e+00, 0e+00, 5.310635986328125e+01, 0e+00, 2.316052675247192e+00, 6.241712280273438e+02, 0e+00, 7.237899093627929e+01, 1.68709716796875e+02, 0e+00] +azi270til90.HPer=[0e+00, 5.306930770874023e+01, 1.81796875e+00, 0e+00, 2.948014755249023e+01, 0e+00, 0e+00, 3.627926406860352e+01, 0e+00, 0e+00, 7.867996215820312e+01, 0e+00, 4.089507311582565e-02, 3.382038497924805e+01, 0e+00, 1.394350528717041e+01, 5.363121459960937e+02, 0e+00, 4.858313751220703e+01, 6.595476379394532e+01, 0e+00, 3.730464096069336e+01, 4.991559982299805e+01, 0e+00, 8.776954345703125e+01, 2.043412685394287e+00, 0e+00, 4.214265060424805e+01, 0e+00, 2.889015972614288e-02, 2.023768310546875e+02, 0e+00, 5.90927677154541e+00, 1.818789886474609e+02, 0e+00, 4.706466674804688e+01, 6.626150024414062e+02, 0e+00, 5.305501861572266e+01, 4.374893432617188e+02, 0e+00, 1.245143447875977e+02, 3.528793884277344e+02, 0e+00, 6.571791076660156e+01, 3.398094177246094e+01, 0e+00, 9.725833435058594e+01, 1.158143329620361e+00, 3.179393053054809e-01, 2.098152770996094e+02, 0e+00, 1.619042892456055e+01, 4.487775939941406e+02, 0e+00, 4.248361206054688e+01, 6.652290893554688e+02, 0e+00, 8.57900405883789e+01, 4.10411328125e+02, 0e+00, 1.033088088989258e+02, 2.618998260498047e+02, 0e+00, 1.260743377685547e+02, 5.550885391235352e+01, 0e+00, 8.998310546875e+01, 0e+00, 0e+00, 1.833907012939453e+02, 0e+00, 6.454093456268309e-01, 4.513159729003906e+02, 0e+00, 1.180202198028564e+01, 5.922920043945312e+02, 0e+00, 2.457080001831055e+01, 5.808556762695313e+02, 0e+00, 5.845673904418945e+01, 4.097587442398071e+00, 0e+00, 7.501288146972657e+01, 0e+00, 0e+00, 4.621508102416992e+01, 0e+00, 0e+00, 1.462059020996094e+02, 0e+00, 0e+00, 5.029149551391602e+01, 0e+00, 2.316052675247192e+00, 5.848752075195313e+02, 0e+00, 1.741225280761719e+01, 2.393260650634766e+02, 0e+00] +azi180til90.HPer=[0e+00, 5.306930770874023e+01, 1.81796875e+00, 0e+00, 2.948014755249023e+01, 0e+00, 0e+00, 3.627926406860352e+01, 0e+00, 0e+00, 7.517694854736328e+01, 0e+00, 4.089507311582565e-02, 3.332773361206055e+01, 0e+00, 1.394350528717041e+01, 6.534127807617188e+01, 0e+00, 4.858313751220703e+01, 3.995776901245117e+01, 0e+00, 3.730464096069336e+01, 1.706798095703125e+01, 0e+00, 8.776954345703125e+01, 2.043412685394287e+00, 0e+00, 4.214265060424805e+01, 0e+00, 2.889015972614288e-02, 1.204121170043945e+02, 0e+00, 1.345583915710449e+01, 1.4987216796875e+02, 0e+00, 9.170027160644531e+01, 6.95505874633789e+01, 0e+00, 8.662759552001953e+01, 1.052675537109375e+02, 0e+00, 1.245143447875977e+02, 1.293920913696289e+02, 0e+00, 6.571791076660156e+01, 2.317031860351562e+01, 0e+00, 9.725833435058594e+01, 9.89051628112793e-01, 3.179393053054809e-01, 6.386262130737305e+01, 0e+00, 5.443733673095703e+01, 1.030274276733398e+02, 0e+00, 1.432621917724609e+02, 5.74840560913086e+01, 0e+00, 8.858457183837891e+01, 8.268876190185547e+01, 0e+00, 1.033088088989258e+02, 6.551401672363281e+01, 0e+00, 1.260743377685547e+02, 1.709277153015137e+01, 0e+00, 8.998310546875e+01, 0e+00, 0e+00, 1.079762191772461e+02, 0e+00, 8.382354736328124e-01, 6.439788131713867e+01, 0e+00, 1.180202198028564e+01, 4.654718933105469e+01, 0e+00, 2.457080001831055e+01, 3.77434684753418e+01, 0e+00, 5.845673904418945e+01, 4.097587442398071e+00, 0e+00, 7.501288146972657e+01, 0e+00, 0e+00, 4.621508102416992e+01, 0e+00, 0e+00, 5.29105110168457e+01, 0e+00, 0e+00, 4.739719772338867e+01, 0e+00, 2.316052675247192e+00, 2.857294883728027e+01, 0e+00, 1.741225280761719e+01, 2.483825302124023e+01, 0e+00] +azi090til90.HPer=[0e+00, 2.781562194824219e+02, 1.81796875e+00, 0e+00, 4.123049499511719e+02, 0e+00, 0e+00, 1.281372940063476e+02, 0e+00, 0e+00, 7.517694854736328e+01, 0e+00, 4.089507311582565e-02, 3.332773361206055e+01, 0e+00, 4.087304382324219e+02, 6.534127807617188e+01, 0e+00, 6.001817138671875e+02, 3.995776901245117e+01, 0e+00, 7.220375610351563e+02, 1.706798095703125e+01, 0e+00, 3.990032592773438e+02, 2.043412685394287e+00, 0e+00, 1.871468811035156e+02, 0e+00, 2.889015972614288e-02, 1.204121170043945e+02, 0e+00, 3.290150833129883e+01, 1.4987216796875e+02, 0e+00, 3.136614990234375e+02, 6.95505874633789e+01, 0e+00, 7.102360473632813e+02, 8.511983337402344e+01, 0e+00, 4.225482849121094e+02, 5.368270111083984e+01, 0e+00, 4.319687133789063e+02, 1.418577003479004e+01, 0e+00, 1.964607727050781e+02, 6.175683021545411e-01, 3.179393053054809e-01, 6.386262130737305e+01, 0e+00, 1.09285205078125e+02, 1.030274276733398e+02, 0e+00, 5.176819458007812e+02, 5.74840560913086e+01, 0e+00, 5.251460510253906e+02, 7.496559448242188e+01, 0e+00, 4.369596740722656e+02, 3.57296329498291e+01, 0e+00, 3.434452087402344e+02, 4.533750057220459e+00, 0e+00, 9.247921752929688e+01, 0e+00, 0e+00, 1.079762191772461e+02, 0e+00, 2.601077079772949e+00, 6.439788131713867e+01, 0e+00, 8.135267639160156e+01, 4.654718933105469e+01, 0e+00, 6.859632690429687e+02, 3.77434684753418e+01, 0e+00, 7.378095397949218e+01, 4.097587442398071e+00, 0e+00, 9.147462463378906e+01, 0e+00, 0e+00, 2.413975952148438e+02, 0e+00, 0e+00, 5.29105110168457e+01, 0e+00, 0e+00, 4.739719772338867e+01, 0e+00, 2.316052675247192e+00, 2.857294883728027e+01, 0e+00, 9.607182922363282e+01, 2.483825302124023e+01, 0e+00] +azi315til90.HPer=[0e+00, 6.954954071044922e+01, 1.81796875e+00, 0e+00, 3.069639526367188e+02, 0e+00, 0e+00, 5.490501342773438e+02, 0e+00, 0e+00, 8.623220825195312e+01, 0e+00, 4.089507311582565e-02, 3.412161560058594e+01, 0e+00, 1.394350528717041e+01, 6.180447021484375e+02, 0e+00, 4.858313751220703e+01, 6.422292633056641e+01, 0e+00, 3.730464096069336e+01, 4.195657348632812e+01, 0e+00, 1.057061553955078e+02, 2.043412685394287e+00, 0e+00, 2.661960388183594e+02, 0e+00, 2.889015972614288e-02, 3.202457275390625e+02, 0e+00, 5.90927677154541e+00, 1.86734619140625e+02, 0e+00, 4.706466674804688e+01, 5.674133911132812e+02, 0e+00, 5.305501861572266e+01, 3.200361083984375e+02, 0e+00, 1.245143447875977e+02, 2.117120910644531e+02, 0e+00, 6.571791076660156e+01, 2.183003425598145e+01, 0e+00, 1.198014190673828e+02, 7.371341943740846e-01, 3.179393053054809e-01, 2.757418212890625e+02, 0e+00, 1.619042892456055e+01, 4.240198547363281e+02, 0e+00, 4.248361206054688e+01, 5.324163818359375e+02, 0e+00, 8.57900405883789e+01, 3.066939086914062e+02, 0e+00, 1.033088088989258e+02, 1.745953720092774e+02, 0e+00, 1.260743377685547e+02, 3.169802284240723e+01, 0e+00, 9.324508819580078e+01, 0e+00, 0e+00, 3.494051513671875e+02, 0e+00, 6.454093456268309e-01, 6.70073486328125e+02, 0e+00, 1.180202198028564e+01, 7.110391845703125e+02, 0e+00, 2.457080001831055e+01, 6.079577880859375e+02, 0e+00, 5.845673904418945e+01, 4.097587442398071e+00, 0e+00, 7.955837554931641e+01, 0e+00, 0e+00, 4.398155700683594e+02, 0e+00, 0e+00, 6.26986328125e+02, 0e+00, 0e+00, 5.348076248168945e+01, 0e+00, 2.316052675247192e+00, 8.430896362304687e+02, 0e+00, 1.741225280761719e+01, 2.782365356445313e+02, 0e+00] +azi045til90.HPer=[0e+00, 3.878704956054688e+02, 1.81796875e+00, 0e+00, 8.483599853515625e+02, 0e+00, 0e+00, 6.789569946289063e+02, 0e+00, 0e+00, 8.12781982421875e+01, 0e+00, 4.089507311582565e-02, 3.342489929199219e+01, 0e+00, 3.709471435546875e+02, 6.534127807617188e+01, 0e+00, 6.056475463867188e+02, 3.995776901245117e+01, 0e+00, 8.341225341796875e+02, 1.706798095703125e+01, 0e+00, 5.45931494140625e+02, 2.043412685394287e+00, 0e+00, 4.712629821777344e+02, 0e+00, 2.889015972614288e-02, 2.043301239013672e+02, 0e+00, 1.965944137573242e+01, 1.4987216796875e+02, 0e+00, 2.040149536132812e+02, 6.95505874633789e+01, 0e+00, 4.940127624511719e+02, 8.511983337402344e+01, 0e+00, 3.538380004882812e+02, 5.368270111083984e+01, 0e+00, 4.068445983886719e+02, 1.418577003479004e+01, 0e+00, 2.60094857788086e+02, 6.175683021545411e-01, 3.179393053054809e-01, 6.920976257324219e+01, 0e+00, 5.497372741699219e+01, 1.030274276733398e+02, 0e+00, 3.072383422851562e+02, 5.74840560913086e+01, 0e+00, 3.94871923828125e+02, 7.496559448242188e+01, 0e+00, 4.009687927246094e+02, 3.57296329498291e+01, 0e+00, 3.958710876464844e+02, 4.533750057220459e+00, 0e+00, 9.677512512207031e+01, 0e+00, 0e+00, 2.427529754638672e+02, 0e+00, 1.891926574707031e+00, 1.228886779785156e+02, 0e+00, 6.686609649658203e+01, 4.654718933105469e+01, 0e+00, 6.66744580078125e+02, 3.77434684753418e+01, 0e+00, 7.715455780029296e+01, 4.097587442398071e+00, 0e+00, 1.028388000488281e+02, 0e+00, 0e+00, 7.158453002929688e+02, 0e+00, 0e+00, 4.950466918945312e+02, 0e+00, 0e+00, 4.938760528564453e+01, 0e+00, 2.316052675247192e+00, 5.6359423828125e+01, 0e+00, 1.119003219604492e+02, 2.483825302124023e+01, 0e+00] +azi270til30.HPer=[0e+00, 9.043439636230468e+01, 3.924249863624573e+00, 0e+00, 2.825834533691406e+02, 0e+00, 0e+00, 5.353043579101562e+02, 0e+00, 0e+00, 1.671070861816406e+02, 0e+00, 8.993459343910218e-02, 7.08137710571289e+01, 0e+00, 1.782598876953125e+01, 5.848908447265625e+02, 0e+00, 6.530416717529297e+01, 1.043165054321289e+02, 0e+00, 2.269305145263672e+02, 5.517482757568359e+01, 0e+00, 4.494935729980469e+02, 4.404552459716797e+00, 0e+00, 7.716396118164063e+02, 0e+00, 6.370080709457397e-02, 6.487122192382812e+02, 0e+00, 1.189062385559082e+01, 3.763328857421875e+02, 0e+00, 8.063908386230469e+01, 9.448561645507813e+02, 0e+00, 9.721978988647462e+01, 5.219333374023438e+02, 0e+00, 3.614016479492187e+02, 3.350679138183594e+02, 0e+00, 5.799368041992187e+02, 4.168054962158203e+01, 0e+00, 7.289860961914062e+02, 1.474160623550415e+00, 6.91645336151123e-01, 8.822041625976562e+02, 0e+00, 2.935938339233398e+01, 9.11849658203125e+02, 0e+00, 6.195873641967773e+01, 9.256661987304688e+02, 0e+00, 1.794119201660156e+02, 4.632281860351562e+02, 0e+00, 3.22518701171875e+02, 2.241923522949219e+02, 0e+00, 4.712211791992187e+02, 3.145978546142578e+01, 0e+00, 1.964691131591797e+02, 0e+00, 0e+00, 6.067250366210938e+02, 0e+00, 1.237032842636109e+00, 8.551518920898437e+02, 0e+00, 2.207696533203125e+01, 7.229700317382812e+02, 0e+00, 2.878020820617676e+01, 4.997697509765625e+02, 0e+00, 1.227662322998047e+02, 8.799642848968507e+00, 0e+00, 1.639981262207031e+02, 0e+00, 0e+00, 4.546322814941406e+02, 0e+00, 0e+00, 5.50786376953125e+02, 0e+00, 0e+00, 1.0401044921875e+02, 0e+00, 4.982897281646729e+00, 5.526701171875e+02, 0e+00, 3.216981048583985e+01, 1.767377014160156e+02, 0e+00] +azi000til30.HPer=[0e+00, 3.210166564941406e+02, 3.924249863624573e+00, 0e+00, 8.616189331054687e+02, 0e+00, 0e+00, 9.897461303710937e+02, 0e+00, 0e+00, 1.714213256835938e+02, 0e+00, 8.993459343910218e-02, 7.088247680664062e+01, 0e+00, 1.032681427001953e+02, 5.047403747558594e+02, 0e+00, 3.846398498535156e+02, 9.547756652832031e+01, 0e+00, 7.903658569335937e+02, 3.992610130310059e+01, 0e+00, 7.734630004882813e+02, 4.404552459716797e+00, 0e+00, 1.075073559570312e+03, 0e+00, 6.370080709457397e-02, 7.080512084960938e+02, 0e+00, 1.189062385559082e+01, 3.703917663574219e+02, 0e+00, 1.25610481262207e+02, 7.038338989257812e+02, 0e+00, 4.08800146484375e+02, 3.356747131347656e+02, 0e+00, 5.235579711914063e+02, 1.476148880004883e+02, 0e+00, 8.211498046875e+02, 3.00356616973877e+01, 0e+00, 8.441288940429688e+02, 1.276278066635132e+00, 6.91645336151123e-01, 8.8607275390625e+02, 0e+00, 2.935938339233398e+01, 7.930754028320313e+02, 0e+00, 1.652266540527344e+02, 6.537489990234375e+02, 0e+00, 3.979658142089844e+02, 2.916390991210938e+02, 0e+00, 5.329961059570312e+02, 9.621506195068359e+01, 0e+00, 6.619962890625e+02, 7.834397315979004e+00, 0e+00, 2.012717926025391e+02, 0e+00, 0e+00, 7.020265502929688e+02, 0e+00, 1.237032842636109e+00, 8.96511083984375e+02, 0e+00, 2.973700714111328e+01, 6.470920166015625e+02, 0e+00, 3.144966369628906e+02, 3.598599487304688e+02, 0e+00, 1.357373626708984e+02, 8.799642848968507e+00, 0e+00, 1.836740234375e+02, 0e+00, 0e+00, 9.281323486328125e+02, 0e+00, 0e+00, 8.634238891601562e+02, 0e+00, 0e+00, 1.054178833007813e+02, 0e+00, 4.982897281646729e+00, 5.723181396484375e+02, 0e+00, 7.098686370849609e+01, 1.414295288085937e+02, 0e+00] +azi090til30.HPer=[0e+00, 3.093633605957031e+02, 3.924249863624573e+00, 0e+00, 6.65408251953125e+02, 0e+00, 0e+00, 6.271623657226562e+02, 0e+00, 0e+00, 1.636040802001953e+02, 0e+00, 8.993459343910218e-02, 7.03211166381836e+01, 0e+00, 2.456153869628906e+02, 1.138556930541992e+02, 0e+00, 5.423344055175781e+02, 8.411749572753907e+01, 0e+00, 9.116634399414063e+02, 3.604999465942383e+01, 0e+00, 7.607272827148438e+02, 4.404552459716797e+00, 0e+00, 9.1664384765625e+02, 0e+00, 6.370080709457397e-02, 5.667474975585938e+02, 0e+00, 2.556407928466797e+01, 3.4432607421875e+02, 0e+00, 2.812267150878906e+02, 3.517917541503906e+02, 0e+00, 7.54176953125e+02, 1.695638214111328e+02, 0e+00, 6.594355834960937e+02, 9.158707122802734e+01, 0e+00, 9.4618759765625e+02, 3.00356616973877e+01, 0e+00, 8.281885375976562e+02, 1.276278066635132e+00, 6.91645336151123e-01, 7.362515258789062e+02, 0e+00, 8.649187927246095e+01, 5.660994873046875e+02, 0e+00, 4.532151184082031e+02, 3.179211547851563e+02, 0e+00, 6.187679443359375e+02, 1.320693725585938e+02, 0e+00, 6.561695678710937e+02, 6.160143051147461e+01, 0e+00, 6.88592041015625e+02, 7.834397315979004e+00, 0e+00, 1.989652252197266e+02, 0e+00, 0e+00, 5.31310546875e+02, 0e+00, 1.988050937652588e+00, 4.682337890625e+02, 0e+00, 6.035148620605469e+01, 1.772251922607422e+02, 0e+00, 5.218036743164063e+02, 4.753852462768555e+01, 0e+00, 1.378402252197266e+02, 8.799642848968507e+00, 0e+00, 1.804598754882813e+02, 0e+00, 0e+00, 6.498148071289063e+02, 0e+00, 0e+00, 4.574909973144531e+02, 0e+00, 0e+00, 1.011161483764648e+02, 0e+00, 4.982897281646729e+00, 3.339592742919922e+01, 0e+00, 8.283328247070312e+01, 4.318419342041015e+01, 0e+00] weaBusHHorIR.relHum=[7.5e-01, 5.334062457084656e-01, 9.539999842643738e-01, 6.676923155784606e-01, 3.229687511920929e-01, 1e+00, 6.789084315299988e-01, 3.48749989271164e-01, 5.219999790191651e-01, 5.515428423881531e-01, 7.599999904632568e-01, 5.164089441299439e-01, 2.839999973773956e-01, 9.551249861717224e-01, 6.610937714576721e-01, 2.599999904632568e-01, 4.170709133148193e-01, 6.56000018119812e-01, 3.783124923706055e-01, 5.331666588783264e-01, 6.600000262260437e-01, 1.756294637918472e-01, 8.909409284591675e-01, 5.099999904632568e-01, 4.990759074687958e-01, 9.300000071525574e-01, 6.316874980926513e-01, 2.455260366201401e-01, 7.397321224212646e-01, 4.379999995231628e-01, 4.600000083446503e-01, 1e+00, 4.146458387374878e-01, 9.130769014358521e-01, 8.407499909400939e-01, 5.400000214576721e-01, 5.658125162124634e-01, 7.375142574310303e-01, 3.400000035762787e-01, 8.48639452457428e-01, 9.700000286102295e-01, 5.316304922103882e-01, 6.37605893611908e-01, 8.748749971389771e-01, 1.797499984502792e-01, 8.100000023841858e-01, 9.444999814033508e-01, 5.039999961853028e-01, 8.700000047683716e-01, 6.702187538146973e-01, 6.100000143051147e-01, 8.801718950271606e-01, 4.573930382728577e-01, 5.293437480926514e-01, 7.484999895095825e-01, 4.49999988079071e-01, 6.09037971496582e-01, 1e+00, 5.479000210762024e-01, 8.209999918937683e-01, 8.999999761581421e-01, 5.299067258834839e-01, 8.867500066757202e-01, 6.22000002861023e-01, 6.210552811622619e-01, 6.600000262260437e-01, 7.400000095367432e-01, 8.106562733650208e-01, 9.005625009536743e-01, 8.697187423706054e-01, 4.399999976158142e-01, 9.100000262260437e-01, 5.626875042915345e-01, 4.610767066478729e-01, 9.100000262260437e-01, 7.900000214576721e-01, 7.780156254768371e-01, 8.100000023841858e-01, 3.496000051498413e-01, 9.826458215713501e-01, 8.100000023841858e-01, 5.683906197547912e-01, 8.602386236190795e-01, 9.599999785423279e-01, 6.600000262260437e-01, 5.799999833106995e-01, 7.38485312461853e-01, 2.28812500834465e-01, 6.479749917984009e-01, 5.57812488079071e-01, 4.699999988079071e-01, 5.782045364379883e-01, 3.87625002861023e-01, 9.607071280479431e-01, 6.020000219345093e-01, 1e+00, 5.678749918937683e-01, 5.342249870300293e-01, 9.06000018119812e-01, 8.21750009059906e-01, 9.900000095367432e-01] weaBusHHorIR.nOpa=[1e+00, 5.825312495231628e-01, 1e+00, 0e+00, 0e+00, 1e+00, 0e+00, 0e+00, 6.160625219345093e-01, 0e+00, 1e+00, 1e+00, 1e+00, 1e+00, 0e+00, 0e+00, 4.349999904632568e-01, 2.074999958276749e-01, 2.597402721643448e-01, 8.667187333106995e-01, 2.000000029802322e-01, 0e+00, 1e+00, 0e+00, 6.06250011920929e-01, 6.99999988079071e-01, 0e+00, 0e+00, 0e+00, 3.988750040531158e-01, 6.99999988079071e-01, 3.843619704246521e-01, 0e+00, 1e+00, 1.775000005960465e-01, 2.000000029802322e-01, 3.00000011920929e-01, 1.000000014901161e-01, 2.000000029802322e-01, 6.399999856948853e-01, 1e+00, 6.000000238418579e-01, 0e+00, 9.218749761581421e-01, 3.625000044703484e-02, 1e+00, 1e+00, 3.00000011920929e-01, 2.5625e-01, 0e+00, 2.000000029802322e-01, 3.999999910593033e-03, 2.428571373224258e-01, 1.730000048875809e-01, 2.100000023841858e-01, 2.000000029802322e-01, 0e+00, 1e+00, 3.199999928474426e-01, 6.859375e-01, 4.000000059604645e-01, 5e-01, 6.235714316368103e-01, 0e+00, 6.99999988079071e-01, 0e+00, 2.414999961853027e-01, 1e+00, 0e+00, 4.560937404632568e-01, 8.999999761581421e-01, 1e+00, 0e+00, 0e+00, 8.31249988079071e-01, 6.000000238418579e-01, 1.600000023841858e-01, 0e+00, 0e+00, 2.000000029802322e-01, 1.000000014901161e-01, 9.428125023841858e-01, 9.856249809265136e-01, 1e+00, 1e+00, 0e+00, 6.464999914169312e-01, 0e+00, 0e+00, 5.275000214576722e-01, 1.000000014901161e-01, 0e+00, 0e+00, 1e+00, 0e+00, 1e+00, 0e+00, 1.000000014901161e-01, 8.587500214576721e-01, 5.633333444595336e-01, 1e+00] weaBusHHorIR.nTot=[1e+00, 8.999999761581421e-01, 1e+00, 0e+00, 0e+00, 1e+00, 0e+00, 0e+00, 8.306250214576721e-01, 0e+00, 1e+00, 1e+00, 1e+00, 1e+00, 0e+00, 0e+00, 6.807102084159851e-01, 9.149999856948853e-01, 5.400000095367432e-01, 1e+00, 3.00000011920929e-01, 0e+00, 1e+00, 0e+00, 8.200000166893006e-01, 6.99999988079071e-01, 0e+00, 0e+00, 0e+00, 3.988750040531158e-01, 8.00000011920929e-01, 3.843619704246521e-01, 0e+00, 1e+00, 6.831249952316284e-01, 8.00000011920929e-01, 6.73437523841858e-01, 2.000000029802322e-01, 2.000000029802322e-01, 7.406249880790711e-01, 1e+00, 6.000000238418579e-01, 0e+00, 1e+00, 2.000000029802322e-01, 1e+00, 1e+00, 2.875000119209289e-01, 6.084374785423279e-01, 0e+00, 5e-01, 5.018749758601189e-02, 2.428571373224258e-01, 1.730000048875809e-01, 3.960000038146972e-01, 2.000000029802322e-01, 0e+00, 1e+00, 6.399999976158142e-01, 8.800000190734864e-01, 4.000000059604645e-01, 8.078125e-01, 6.481250166893006e-01, 0e+00, 6.887500047683716e-01, 0e+00, 2.403124988079071e-01, 1e+00, 2.125000029802322e-01, 6.214062452316285e-01, 1e+00, 1e+00, 0e+00, 0e+00, 8.31249988079071e-01, 6.000000238418579e-01, 2.264615446329117e-01, 0e+00, 0e+00, 4.199999928474426e-01, 3.00000011920929e-01, 1e+00, 1e+00, 1e+00, 1e+00, 0e+00, 7.912499904632568e-01, 1.000000014901161e-01, 0e+00, 8.162500023841858e-01, 5e-01, 0e+00, 2.000000029802322e-01, 1e+00, 0e+00, 1e+00, 0e+00, 4.790625095367432e-01, 8.587500214576721e-01, 7.095312476158142e-01, 1e+00] toDryAir.XiDry=[6.78730383515358e-03, 3.235140768811107e-03, 2.456848975270987e-03, 2.472623018547893e-03, 1.834106002934277e-03, 9.167506359517574e-03, 2.585355844348669e-03, 1.354795973747969e-03, 2.773430291563273e-03, 1.662740763276815e-03, 3.442009910941124e-03, 2.990616159513593e-03, 1.532567315734923e-03, 9.314852394163608e-03, 4.477994050830603e-03, 2.831523073837161e-03, 4.574249591678381e-03, 6.117067858576774e-03, 4.51294295489788e-03, 4.761273972690105e-03, 4.811426158994436e-03, 1.519998721778393e-03, 4.993210081011057e-03, 3.900684975087643e-03, 1.014216467738152e-02, 9.163208305835724e-03, 3.165513835847378e-03, 3.675526054576039e-03, 7.291942182928324e-03, 7.510383985936642e-03, 8.742673322558403e-03, 1.058180201798677e-02, 5.539685674011707e-03, 1.176828406751156e-02, 9.921943023800849e-03, 1.190413068979979e-02, 7.839279063045979e-03, 8.997414261102676e-03, 9.628480486571788e-03, 1.27980588003993e-02, 1.24061293900013e-02, 1.367804259061813e-02, 1.037719137966633e-02, 1.388196963816881e-02, 4.632660280913114e-03, 1.361921429634094e-02, 1.595307365059852e-02, 1.409147866070271e-02, 1.468241773545742e-02, 1.550384182482958e-02, 1.577331125736237e-02, 1.591486111283302e-02, 1.396834924817085e-02, 1.52753621339798e-02, 1.398344114422798e-02, 1.404087617993355e-02, 1.358887068927288e-02, 1.518179848790169e-02, 1.624043248593807e-02, 1.715120337903499e-02, 1.62638071924448e-02, 1.589119248092175e-02, 1.626653298735619e-02, 1.63218580186367e-02, 1.720704361796379e-02, 1.113309059292078e-02, 1.51000089943409e-02, 1.468540728092194e-02, 1.476630605757237e-02, 1.574479714035988e-02, 7.895226590335369e-03, 1.597936637699604e-02, 9.578322991728783e-03, 1.099029649049044e-02, 1.586973816156387e-02, 1.433515828102827e-02, 7.664040010422468e-03, 9.936971031129361e-03, 5.306984856724739e-03, 1.093909572809935e-02, 8.925557136535645e-03, 7.093429286032915e-03, 6.479063257575035e-03, 7.842757739126682e-03, 1.106026973575354e-02, 3.491064067929983e-03, 6.984762195497751e-03, 2.903531165793538e-03, 3.630402032285929e-03, 2.708413591608405e-03, 4.262178670614958e-03, 3.29803042113781e-03, 1.584108173847198e-03, 8.211880549788475e-03, 3.135455725714564e-03, 1.181808020919561e-02, 1.997647201642394e-03, 3.045408055186272e-03, 8.749894239008427e-03, 4.243946354836226e-03, 5.000683013349771e-03] toDryAir.XiTotalAir=[6.741547025740147e-03, 3.224707674235106e-03, 2.450827741995454e-03, 2.466524112969637e-03, 1.83074816595763e-03, 9.084227494895458e-03, 2.578688785433769e-03, 1.352963014505804e-03, 2.765759639441967e-03, 1.659980555996299e-03, 3.430203069001436e-03, 2.981695206835866e-03, 1.530222035944462e-03, 9.228885546326638e-03, 4.45803115144372e-03, 2.823528135195374e-03, 4.553420841693879e-03, 6.079876143485308e-03, 4.492667131125927e-03, 4.73870262503624e-03, 4.788387101143599e-03, 1.517691649496555e-03, 4.96840188279748e-03, 3.885528771206737e-03, 1.004033256322145e-02, 9.080006740987301e-03, 3.155524795874953e-03, 3.662061737850309e-03, 7.239154633134603e-03, 7.454377505928278e-03, 8.666901849210262e-03, 1.047098971903324e-02, 5.509164370596409e-03, 1.16314023733139e-02, 9.824465215206146e-03, 1.176408957690001e-02, 7.778302114456892e-03, 8.917181193828583e-03, 9.536657482385635e-03, 1.263633444905281e-02, 1.225410401821136e-02, 1.34934538975358e-02, 1.027061063796282e-02, 1.369189880788326e-02, 4.611294437199831e-03, 1.343622338026762e-02, 1.570256017148495e-02, 1.389566753059626e-02, 1.446996349841356e-02, 1.526712905615568e-02, 1.552837714552879e-02, 1.566553898155689e-02, 1.377590727061033e-02, 1.504553444683552e-02, 1.379059664905071e-02, 1.384645979851484e-02, 1.34064132347703e-02, 1.49547578766942e-02, 1.598089635372162e-02, 1.68619878590107e-02, 1.600353047251701e-02, 1.564261242747307e-02, 1.600616835057735e-02, 1.605973206460476e-02, 1.691596582531929e-02, 1.101050898432732e-02, 1.487537417560816e-02, 1.447286698967218e-02, 1.455143466591835e-02, 1.550074107944965e-02, 7.833380252122879e-03, 1.572804152965546e-02, 9.487448446452617e-03, 1.08708206564188e-02, 1.56218234449625e-02, 1.413256581872702e-02, 7.605743780732155e-03, 9.839198552072048e-03, 5.278967507183552e-03, 1.082071792334318e-02, 8.846595883369446e-03, 7.043465599417686e-03, 6.437355466187e-03, 7.781727705150843e-03, 1.093927826732397e-02, 3.478918923065066e-03, 6.936312280595302e-03, 2.895124722272158e-03, 3.617269918322563e-03, 2.701097913086414e-03, 4.244089592248201e-03, 3.287188662216067e-03, 1.581602706573904e-03, 8.14499482512474e-03, 3.125655278563499e-03, 1.168004516512156e-02, 1.99366444721818e-03, 3.036161744967103e-03, 8.673994801938534e-03, 4.226011224091053e-03, 4.97580086812377e-03] -weaBusHHorIR.TBlaSky=[2.804942626953125e+02, 2.670389709472656e+02, 2.605539184570313e+02, 2.553959594726562e+02, 2.600265380859375e+02, 2.814878845214844e+02, 2.556498901367187e+02, 2.540698303222656e+02, 2.651191284179687e+02, 2.518697814941406e+02, 2.683391418457031e+02, 2.711985412597656e+02, 2.684809387207031e+02, 2.82611328125e+02, 2.650299499511719e+02, 2.703695983886719e+02, 2.754103576660156e+02, 2.729277282714844e+02, 2.759165954589844e+02, 2.764931823730469e+02, 2.685670471191406e+02, 2.650971252441406e+02, 2.722939147949219e+02, 2.663547485351563e+02, 2.893593444824219e+02, 2.780655212402344e+02, 2.598455749511719e+02, 2.760534606933594e+02, 2.720819702148438e+02, 2.834239868164062e+02, 2.881651000976562e+02, 2.778116638183594e+02, 2.755972412109375e+02, 2.877588317871094e+02, 2.778376098632813e+02, 2.879806823730469e+02, 2.802654418945312e+02, 2.769807250976563e+02, 2.916122131347656e+02, 2.852294250488281e+02, 2.874252624511719e+02, 2.9372265625e+02, 2.804788146972656e+02, 2.894896850585938e+02, 2.860381652832031e+02, 2.923124389648438e+02, 2.928551818847656e+02, 2.935242431640625e+02, 2.84863232421875e+02, 2.874829284667969e+02, 2.917814331054688e+02, 2.838431091308594e+02, 2.943675842285156e+02, 2.933099060058594e+02, 2.861223876953125e+02, 2.945806274414062e+02, 2.861741088867187e+02, 2.908899536132812e+02, 2.947566162109375e+02, 2.9190185546875e+02, 2.872394104003906e+02, 2.961690490722656e+02, 2.888966125488281e+02, 2.895726806640625e+02, 2.964597473144531e+02, 2.812900085449219e+02, 2.879965148925781e+02, 2.936091125488281e+02, 2.816895874023438e+02, 2.881049560546875e+02, 2.894462890625e+02, 2.931910400390625e+02, 2.810817565917969e+02, 2.867586853027344e+02, 2.910575866699219e+02, 2.879806823730469e+02, 2.739531860351562e+02, 2.759563903808594e+02, 2.772829650878906e+02, 2.77301904296875e+02, 2.753604736328125e+02, 2.842116577148437e+02, 2.771969299316406e+02, 2.792878112792969e+02, 2.914992736816406e+02, 2.626867370605469e+02, 2.762388916015625e+02, 2.726351745605469e+02, 2.617563232421875e+02, 2.628064270019531e+02, 2.703695983886719e+02, 2.618855712890625e+02, 2.55382666015625e+02, 2.800309265136719e+02, 2.605196411132812e+02, 2.861166381835938e+02, 2.541495239257812e+02, 2.628097534179688e+02, 2.790750915527344e+02, 2.656580322265625e+02, 2.7070361328125e+02] +weaBusHHorIR.TBlaSky=[2.804941711425781e+02, 2.670388793945312e+02, 2.605538513183594e+02, 2.553958831787109e+02, 2.6002646484375e+02, 2.8148779296875e+02, 2.556497985839844e+02, 2.540697509765625e+02, 2.6511904296875e+02, 2.518697052001953e+02, 2.683390502929688e+02, 2.711984497070313e+02, 2.684808471679688e+02, 2.826112365722656e+02, 2.650298706054688e+02, 2.703695068359375e+02, 2.754102661132812e+02, 2.7292763671875e+02, 2.7591650390625e+02, 2.764930908203125e+02, 2.685669555664062e+02, 2.650970336914062e+02, 2.722938232421875e+02, 2.663546569824219e+02, 2.893592529296875e+02, 2.780654296875e+02, 2.598455139160156e+02, 2.76053369140625e+02, 2.720818786621094e+02, 2.834238952636719e+02, 2.881650085449219e+02, 2.77811572265625e+02, 2.755971496582031e+02, 2.87758740234375e+02, 2.778375183105469e+02, 2.879805908203125e+02, 2.802653503417969e+02, 2.769806335449219e+02, 2.916121215820312e+02, 2.852293334960938e+02, 2.874251708984375e+02, 2.937225524902344e+02, 2.804787231445313e+02, 2.894895935058594e+02, 2.860380615234375e+02, 2.923123474121094e+02, 2.92855078125e+02, 2.935241516113281e+02, 2.848631408691406e+02, 2.874828247070312e+02, 2.917813415527344e+02, 2.83843017578125e+02, 2.943674926757812e+02, 2.93309814453125e+02, 2.861222961425781e+02, 2.945805358886719e+02, 2.861740173339844e+02, 2.908898620605469e+02, 2.947565246582031e+02, 2.919017639160156e+02, 2.872393188476562e+02, 2.961689575195313e+02, 2.888965148925781e+02, 2.895725646972656e+02, 2.964596557617188e+02, 2.812899169921875e+02, 2.879964233398438e+02, 2.936090148925781e+02, 2.816894958496094e+02, 2.881048645019531e+02, 2.894461975097656e+02, 2.931909484863281e+02, 2.810816650390625e+02, 2.8675859375e+02, 2.910574829101562e+02, 2.879805908203125e+02, 2.739531066894531e+02, 2.75956298828125e+02, 2.772828735351562e+02, 2.773018127441406e+02, 2.753603820800781e+02, 2.842115661621094e+02, 2.771968383789062e+02, 2.792877197265625e+02, 2.914991821289062e+02, 2.626866455078125e+02, 2.762388122558594e+02, 2.72635107421875e+02, 2.617562316894531e+02, 2.6280634765625e+02, 2.703695068359375e+02, 2.618855102539063e+02, 2.553825866699219e+02, 2.800308349609375e+02, 2.605195617675781e+02, 2.861165466308594e+02, 2.541494415283203e+02, 2.628096862792969e+02, 2.79075e+02, 2.65657958984375e+02, 2.707035217285156e+02] weaBusHHorIR.TDewPoi=[2.809500122070312e+02, 2.705925048828125e+02, 2.675387573242188e+02, 2.671124877929688e+02, 2.632651428222656e+02, 2.853500061035156e+02, 2.675499877929688e+02, 2.59359765625e+02, 2.686439208984375e+02, 2.623687377929688e+02, 2.714500122070312e+02, 2.694802307128906e+02, 2.610587524414062e+02, 2.858391967773438e+02, 2.748500061035156e+02, 2.6875e+02, 2.7513759765625e+02, 2.7936875e+02, 2.751570129394531e+02, 2.759192260742187e+02, 2.759500122070312e+02, 2.607427978515625e+02, 2.764500122070312e+02, 2.731499938964844e+02, 2.867609130859375e+02, 2.853500061035156e+02, 2.702437622070312e+02, 2.724427856445312e+02, 2.820124877929687e+02, 2.820448547363281e+02, 2.848500061035156e+02, 2.874997009277344e+02, 2.777548706054687e+02, 2.8925e+02, 2.864500122070312e+02, 2.8925e+02, 2.830121826171875e+02, 2.849729309082031e+02, 2.860182739257813e+02, 2.90635009765625e+02, 2.898500061035156e+02, 2.913994750976562e+02, 2.870499877929688e+02, 2.914911987304687e+02, 2.760457885742188e+02, 2.914500122070312e+02, 2.939717407226562e+02, 2.921437377929688e+02, 2.925499877929688e+02, 2.93510009765625e+02, 2.9375e+02, 2.938816284179687e+02, 2.916458618164062e+02, 2.932147644042969e+02, 2.917566589355469e+02, 2.920499877929688e+02, 2.913593811035156e+02, 2.931499938964844e+02, 2.941868408203125e+02, 2.950363098144531e+02, 2.9425e+02, 2.939301147460938e+02, 2.9425e+02, 2.942021728515625e+02, 2.952009826660156e+02, 2.881499938964844e+02, 2.93007763671875e+02, 2.926249877929687e+02, 2.926215454101563e+02, 2.9375e+02, 2.831499938964844e+02, 2.9375e+02, 2.860578002929688e+02, 2.880299987792969e+02, 2.9375e+02, 2.920499877929688e+02, 2.827035522460938e+02, 2.864098266601562e+02, 2.773236450195312e+02, 2.880368347167969e+02, 2.848500061035156e+02, 2.818622253417969e+02, 2.803500061035156e+02, 2.831499938964844e+02, 2.882081237792969e+02, 2.714500122070312e+02, 2.813294128417969e+02, 2.689347412109375e+02, 2.720499877929688e+02, 2.681499938964844e+02, 2.7425e+02, 2.707248352050781e+02, 2.614500122070312e+02, 2.837331298828125e+02, 2.703500061035156e+02, 2.8925e+02, 2.64419287109375e+02, 2.698500061035156e+02, 2.84407177734375e+02, 2.7425e+02, 2.764500122070312e+02] weaBusHHorIR.TWetBul=[2.830003662109375e+02, 2.758454528808594e+02, 2.6803857421875e+02, 2.707728698730469e+02, 2.733838684082031e+02, 2.853500061035156e+02, 2.7105224609375e+02, 2.693256225585938e+02, 2.742615417480469e+02, 2.678820068359375e+02, 2.738208923339844e+02, 2.75072900390625e+02, 2.726724792480469e+02, 2.860074401855469e+02, 2.781334838867188e+02, 2.797391662597656e+02, 2.818527648925781e+02, 2.823943237304687e+02, 2.825119323730469e+02, 2.805959106445313e+02, 2.791568908691406e+02, 2.763455444335938e+02, 2.773260009765625e+02, 2.785079895019531e+02, 2.908373168945312e+02, 2.857859802246094e+02, 2.74145166015625e+02, 2.831951293945312e+02, 2.840870727539062e+02, 2.876706359863281e+02, 2.894173889160156e+02, 2.874547119140625e+02, 2.842152221679688e+02, 2.897976318359375e+02, 2.875580139160156e+02, 2.9251806640625e+02, 2.867593139648437e+02, 2.869542785644531e+02, 2.922928466796875e+02, 2.914290283203125e+02, 2.90033447265625e+02, 2.946413879394531e+02, 2.898091247558594e+02, 2.922113830566406e+02, 2.876379028320313e+02, 2.925286560058594e+02, 2.942068481445312e+02, 2.953729553222656e+02, 2.932828674316406e+02, 2.953545776367188e+02, 2.961222229003906e+02, 2.944710632324219e+02, 2.957229431152344e+02, 2.963751647949219e+02, 2.933576904296875e+02, 2.958726501464844e+02, 2.939710083007812e+02, 2.931499938964844e+02, 2.969449462890625e+02, 2.960273620605469e+02, 2.947220764160156e+02, 2.968678283691406e+02, 2.948115783691406e+02, 2.964514038085937e+02, 2.972718383789062e+02, 2.905315246582031e+02, 2.944849548339844e+02, 2.936162719726562e+02, 2.931004943847656e+02, 2.943373840332031e+02, 2.881886291503906e+02, 2.94260009765625e+02, 2.893663513183594e+02, 2.924069702148437e+02, 2.942621643066406e+02, 2.932959594726562e+02, 2.84329150390625e+02, 2.877833190917969e+02, 2.847827575683594e+02, 2.88245654296875e+02, 2.862102966308594e+02, 2.853776245117188e+02, 2.813660278320312e+02, 2.834046325683594e+02, 2.905942565917969e+02, 2.760103149414062e+02, 2.834387329101563e+02, 2.810222229003906e+02, 2.756192626953125e+02, 2.732150024414062e+02, 2.801141662597656e+02, 2.754011047363281e+02, 2.702515625e+02, 2.838596618652344e+02, 2.745351135253906e+02, 2.8925e+02, 2.6966875e+02, 2.751237243652344e+02, 2.851416748046875e+02, 2.759567626953125e+02, 2.765835571289062e+02] weaBusTDryBulTDewPoiOpa.TBlaSky=[2.804469909667969e+02, 2.669517211914062e+02, 2.605345703125e+02, 2.554015197753906e+02, 2.600177490234375e+02, 2.814709167480469e+02, 2.557346923828125e+02, 2.540407501220703e+02, 2.649873168945313e+02, 2.519187927246094e+02, 2.683923950195312e+02, 2.712196044921875e+02, 2.683840148925781e+02, 2.826484008789063e+02, 2.649714782714844e+02, 2.703255004882812e+02, 2.756275817871094e+02, 2.728457946777344e+02, 2.760302124023438e+02, 2.765442993164062e+02, 2.684841918945312e+02, 2.650878295898438e+02, 2.722763000488281e+02, 2.664472839355469e+02, 2.888448303222656e+02, 2.779992370605469e+02, 2.599140869140625e+02, 2.761382141113281e+02, 2.720508544921875e+02, 2.838232727050781e+02, 2.881687316894531e+02, 2.773746887207031e+02, 2.755233459472656e+02, 2.876798767089844e+02, 2.775676635742187e+02, 2.880259399414062e+02, 2.802725524902344e+02, 2.770359069824219e+02, 2.915990112304688e+02, 2.852198547363281e+02, 2.874406433105469e+02, 2.936043395996094e+02, 2.805455627441406e+02, 2.894905151367187e+02, 2.859593627929688e+02, 2.922635803222656e+02, 2.928512390136719e+02, 2.934255310058594e+02, 2.849423889160156e+02, 2.874423522949219e+02, 2.917473449707031e+02, 2.836336669921875e+02, 2.944223571777344e+02, 2.933000549316406e+02, 2.861170532226562e+02, 2.945459594726562e+02, 2.865164428710938e+02, 2.909635925292969e+02, 2.9487822265625e+02, 2.916996643066406e+02, 2.872359619140625e+02, 2.961309204101562e+02, 2.88865771484375e+02, 2.896322265625e+02, 2.965042663574219e+02, 2.812471923828125e+02, 2.879548522949219e+02, 2.936687194824219e+02, 2.81692431640625e+02, 2.874430725097656e+02, 2.893721008300781e+02, 2.93283203125e+02, 2.810022521972656e+02, 2.868581481933594e+02, 2.902525268554688e+02, 2.879230346679688e+02, 2.739497009277344e+02, 2.760611877441406e+02, 2.773129211425781e+02, 2.773323791503906e+02, 2.75427978515625e+02, 2.843281860351562e+02, 2.772385864257812e+02, 2.79386962890625e+02, 2.915680603027344e+02, 2.626194152832031e+02, 2.761444152832031e+02, 2.726761474609375e+02, 2.617732177734375e+02, 2.629028930664062e+02, 2.703068542480469e+02, 2.617942443847656e+02, 2.553151885986328e+02, 2.799710266113281e+02, 2.605679138183594e+02, 2.862153930664062e+02, 2.542032165527344e+02, 2.628965576171875e+02, 2.793131225585938e+02, 2.655316101074219e+02, 2.708533630371094e+02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_Validation_BESTEST_WD300.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_Validation_BESTEST_WD300.txt index 28021ce402..6c5ce0eb4e 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_Validation_BESTEST_WD300.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_Validation_BESTEST_WD300.txt @@ -1,4 +1,4 @@ -last-generated=2020-08-24 +last-generated=2022-05-18 statistics-simulation= { "linear": " ", @@ -16,23 +16,23 @@ azi045til90.H=[0e+00, 4.179710876464844e+02, 6.093017349243164e+01, 0e+00, 2.385 azi270til30.H=[0e+00, 4.638424865722656e+02, 2.548245849609375e+02, 0e+00, 7.396132568359375e+02, 5.442574024200439e+00, 0e+00, 9.14413818359375e+02, 0e+00, 2.565784931182861e-01, 9.640999145507812e+02, 0e+00, 2.189624786376953e+01, 9.624818359375e+02, 0e+00, 9.376777648925781e+01, 7.188870361328125e+02, 0e+00, 1.343788101196289e+02, 4.690515197753906e+02, 0e+00, 2.966569458007813e+02, 7.20159812927246e+01, 0e+00, 5.033352905273438e+02, 0e+00, 0e+00, 2.618145263671875e+02, 0e+00, 0e+00, 5.010017395019531e+02, 0e+00, 0e+00, 2.754912841796875e+02, 0e+00, 7.955161094665527e+00, 4.743450439453125e+02, 0e+00, 3.207181434631347e+01, 2.266266670227051e+01, 0e+00, 9.692113037109375e+01, 0e+00, 0e+00, 1.948745971679687e+02, 0e+00, 0e+00, 2.355549682617188e+02, 0e+00, 0e+00, 3.596393127441406e+02, 0e+00, 0e+00, 5.230217529296875e+02, 0e+00, 9.292505383491516e-01, 3.823963073730469e+02, 0e+00, 6.364809875488281e+01, 2.268044128417969e+01, 0e+00, 1.706165618896484e+02, 4.979448348283768e-01, 0e+00, 3.756768676757812e+02, 0e+00, 0e+00, 5.949785278320312e+02, 0e+00, 0e+00, 7.740021362304688e+02, 0e+00, 0e+00, 8.4372158203125e+02, 0e+00, 4.970933151245117e+01, 1.844882690429687e+02, 0e+00, 1.136523574829102e+02, 6.234663940429688e+02, 0e+00, 3.50063671875e+02, 9.702989959716797e+01, 0e+00, 4.132282104492188e+02, 7.95976448059082e+00, 0e+00, 8.473255126953125e+02, 0e+00, 0e+00, 9.925148315429688e+02, 0e+00, 1.6801904296875e+01, 1.018625170898438e+03, 0e+00, 1.103685455322266e+02, 9.618914916992187e+02, 0e+00, 2.081731719970703e+02, 7.195118774414062e+02, 0e+00] azi000til30.H=[0e+00, 7.0493662109375e+02, 1.897328216552734e+02, 0e+00, 8.1828857421875e+02, 5.442574024200439e+00, 0e+00, 8.405168212890625e+02, 0e+00, 2.565784931182861e-01, 7.54872802734375e+02, 0e+00, 2.827274169921875e+01, 6.292810791015625e+02, 0e+00, 1.76755859375e+02, 4.258878295898438e+02, 0e+00, 3.314049194335938e+02, 2.223420074462891e+02, 0e+00, 4.034970764160156e+02, 2.998319339752197e+01, 0e+00, 4.652641784667969e+02, 0e+00, 0e+00, 2.588083374023437e+02, 0e+00, 0e+00, 3.512161865234375e+02, 0e+00, 0e+00, 2.482409729003906e+02, 0e+00, 7.955161094665527e+00, 1.094949249267578e+02, 0e+00, 3.207181434631347e+01, 2.266266670227051e+01, 0e+00, 9.407197265625e+01, 0e+00, 0e+00, 1.869216339111328e+02, 0e+00, 0e+00, 2.186756011962891e+02, 0e+00, 0e+00, 1.929949798583984e+02, 0e+00, 0e+00, 9.986319274902344e+01, 0e+00, 9.292505383491516e-01, 1.050767883300781e+02, 0e+00, 6.364809875488281e+01, 2.268044128417969e+01, 0e+00, 1.710971954345703e+02, 4.979448348283768e-01, 0e+00, 2.82079150390625e+02, 0e+00, 0e+00, 3.82450830078125e+02, 0e+00, 0e+00, 4.794887084960938e+02, 0e+00, 0e+00, 4.723662109375e+02, 0e+00, 6.227536392211914e+01, 1.839869201660156e+02, 0e+00, 2.794122619628906e+02, 3.358353881835938e+02, 0e+00, 4.846056030273438e+02, 9.389720916748047e+01, 0e+00, 4.192160034179688e+02, 7.95976448059082e+00, 0e+00, 8.196960571289062e+02, 0e+00, 0e+00, 8.538458251953125e+02, 0e+00, 2.472351455688476e+01, 7.875570922851563e+02, 0e+00, 2.7870751953125e+02, 6.738538330078125e+02, 0e+00, 5.349011901855469e+02, 4.841046813964844e+02, 0e+00] azi090til30.H=[0e+00, 9.927262817382813e+02, 1.136972473144531e+02, 0e+00, 1.03582568359375e+03, 5.442574024200439e+00, 0e+00, 9.693059326171875e+02, 0e+00, 2.565784931182861e-01, 7.719336547851562e+02, 0e+00, 4.048977508544922e+01, 5.232437133789062e+02, 0e+00, 3.23897705078125e+02, 2.655518981933594e+02, 0e+00, 6.57940966796875e+02, 1.086501937866211e+02, 0e+00, 8.195520874023438e+02, 2.59026273727417e+01, 0e+00, 7.331739135742188e+02, 0e+00, 0e+00, 2.631219665527344e+02, 0e+00, 0e+00, 4.389786376953125e+02, 0e+00, 0e+00, 2.535969543457031e+02, 0e+00, 9.923898696899414e+00, 1.002637939453125e+02, 0e+00, 3.207181434631347e+01, 2.266266670227051e+01, 0e+00, 4.19485498046875e+02, 0e+00, 0e+00, 2.109657318115234e+02, 0e+00, 0e+00, 2.406129455566406e+02, 0e+00, 0e+00, 2.979113464355469e+02, 0e+00, 0e+00, 1.996252746582031e+02, 0e+00, 9.292505383491516e-01, 1.050767883300781e+02, 0e+00, 2.485852569580078e+02, 2.268044128417969e+01, 0e+00, 1.912631774902344e+02, 4.979448348283768e-01, 0e+00, 6.848409912109375e+02, 0e+00, 0e+00, 7.00753515625e+02, 0e+00, 0e+00, 6.453412475585938e+02, 0e+00, 0e+00, 4.853029296875e+02, 0e+00, 1.145514526367188e+02, 1.838044372558594e+02, 0e+00, 5.469007629394531e+02, 1.320905395507812e+02, 0e+00, 7.191042846679687e+02, 9.17994369506836e+01, 0e+00, 4.37798486328125e+02, 7.95976448059082e+00, 0e+00, 9.935233032226563e+02, 0e+00, 0e+00, 8.88433349609375e+02, 0e+00, 3.2317724609375e+01, 6.682836547851563e+02, 0e+00, 4.110861511230469e+02, 4.020467102050781e+02, 0e+00, 7.975730346679687e+02, 1.700566345214844e+02, 0e+00] -azi000til00.HPer=[0e+00, 8.290364990234375e+02, 1.789189331054687e+02, 0e+00, 1.005362426757812e+03, 5.833333492279053e+00, 0e+00, 1.066460424804688e+03, 0e+00, 2.75e-01, 9.841373901367188e+02, 0e+00, 2.660234985351562e+01, 8.449298950195313e+02, 0e+00, 1.938943634033203e+02, 5.539451416015625e+02, 0e+00, 4.442587829589844e+02, 2.86247802734375e+02, 0e+00, 6.351674072265625e+02, 3.471112442016602e+01, 0e+00, 6.927840942382812e+02, 0e+00, 0e+00, 2.81936328125e+02, 0e+00, 0e+00, 5.212349853515625e+02, 0e+00, 0e+00, 2.8553134765625e+02, 0e+00, 8.2921142578125e+00, 3.188372375488281e+02, 0e+00, 3.437446746826172e+01, 2.428977279663086e+01, 0e+00, 2.855569274902344e+02, 0e+00, 0e+00, 2.188982940673828e+02, 0e+00, 0e+00, 2.569878784179688e+02, 0e+00, 0e+00, 3.650779418945312e+02, 0e+00, 0e+00, 4.10446435546875e+02, 0e+00, 9.959677457809448e-01, 2.579499450683594e+02, 0e+00, 1.383975158691406e+02, 2.430882339477539e+01, 0e+00, 1.949877166748047e+02, 5.336956411600113e-01, 0e+00, 6.028005493164062e+02, 0e+00, 0e+00, 7.383087036132813e+02, 0e+00, 0e+00, 8.049053955078125e+02, 0e+00, 0e+00, 7.5588037109375e+02, 0e+00, 6.896163177490234e+01, 1.974140625e+02, 0e+00, 3.48681103515625e+02, 4.203215759277344e+02, 0e+00, 5.977282348632813e+02, 1.00477619934082e+02, 0e+00, 4.592562866210938e+02, 8.53125e+00, 0e+00, 1.0421203125e+03, 0e+00, 0e+00, 1.064928588867188e+03, 0e+00, 2.068123626708984e+01, 9.581571411132812e+02, 0e+00, 2.564660034179688e+02, 7.765178344726562e+02, 0e+00, 5.701071899414062e+02, 5.02168310546875e+02, 0e+00] -azi000til90.HPer=[0e+00, 5.644297714233399e+01, 1.178239807128906e+02, 0e+00, 7.317161102294922e+01, 2.421374559402466e+00, 0e+00, 6.746222839355468e+01, 0e+00, 1.113326907157898e-01, 6.631832122802734e+01, 0e+00, 1.768909606933594e+01, 5.90253402709961e+01, 0e+00, 4.746504974365234e+01, 7.376036529541015e+01, 0e+00, 5.744758605957031e+01, 4.937784881591797e+01, 0e+00, 5.047120056152344e+01, 1.135796499252319e+01, 0e+00, 9.606293182373047e+01, 0e+00, 0e+00, 1.07192756652832e+02, 0e+00, 0e+00, 9.97545166015625e+01, 0e+00, 0e+00, 9.817978210449219e+01, 0e+00, 3.479973077774048e+00, 4.379320526123047e+01, 0e+00, 1.442074356079102e+01, 1.014230194091797e+01, 0e+00, 4.389339294433594e+01, 0e+00, 0e+00, 7.714386749267578e+01, 0e+00, 0e+00, 8.896930694580078e+01, 0e+00, 0e+00, 7.468209838867188e+01, 0e+00, 0e+00, 3.945354385375977e+01, 0e+00, 5.099990367889404e-01, 4.756036529541016e+01, 0e+00, 2.986664237976074e+01, 1.014403781890869e+01, 0e+00, 7.039613800048828e+01, 2.282412841916084e-01, 0e+00, 5.199769134521485e+01, 0e+00, 0e+00, 4.880638961791992e+01, 0e+00, 0e+00, 6.744644927978516e+01, 0e+00, 0e+00, 5.600941925048828e+01, 0e+00, 2.202275276184082e+01, 7.938098449707032e+01, 0e+00, 5.171205902099609e+01, 5.750018081665039e+01, 0e+00, 9.326248474121094e+01, 4.166951293945313e+01, 0e+00, 1.426015472412109e+02, 3.525503158569336e+00, 0e+00, 6.982619628906249e+01, 0e+00, 0e+00, 6.658427429199219e+01, 0e+00, 1.913837585449219e+01, 6.242435455322266e+01, 0e+00, 1.6181298828125e+02, 5.416117477416992e+01, 0e+00, 1.302205108642578e+02, 1.546878143310547e+02, 0e+00] -azi270til90.HPer=[0e+00, 5.644297714233399e+01, 2.892951019287109e+02, 0e+00, 7.317161102294922e+01, 2.421374559402466e+00, 0e+00, 6.746222839355468e+01, 0e+00, 1.113326907157898e-01, 3.035816955566406e+02, 0e+00, 9.696563720703125e+00, 5.719798828125e+02, 0e+00, 4.249103164672852e+01, 6.322686889648437e+02, 0e+00, 5.744758605957031e+01, 5.428589721679688e+02, 0e+00, 5.047120056152344e+01, 1.002326766967773e+02, 0e+00, 9.606293182373047e+01, 0e+00, 0e+00, 1.07192756652832e+02, 0e+00, 0e+00, 1.892611846923828e+02, 0e+00, 0e+00, 1.452420867919922e+02, 0e+00, 3.479973077774048e+00, 4.725962768554688e+02, 0e+00, 1.442074356079102e+01, 1.014230194091797e+01, 0e+00, 4.389339294433594e+01, 0e+00, 0e+00, 7.714386749267578e+01, 0e+00, 0e+00, 8.896930694580078e+01, 0e+00, 0e+00, 1.516618957519531e+02, 0e+00, 0e+00, 4.002822692871094e+02, 0e+00, 5.099990367889404e-01, 3.994044982910156e+02, 0e+00, 2.986664237976074e+01, 1.014403781890869e+01, 0e+00, 7.039613800048828e+01, 2.282412841916084e-01, 0e+00, 5.199769134521485e+01, 0e+00, 0e+00, 4.880638961791992e+01, 0e+00, 0e+00, 2.214605560302734e+02, 0e+00, 0e+00, 4.721801025390625e+02, 0e+00, 2.202275276184082e+01, 9.409211578369141e+01, 0e+00, 5.171205902099609e+01, 6.453717407226562e+02, 0e+00, 9.326248474121094e+01, 6.559934158325196e+01, 0e+00, 1.426015472412109e+02, 3.525503158569336e+00, 0e+00, 6.982619628906249e+01, 0e+00, 0e+00, 1.983701782226562e+02, 0e+00, 7.471932029724122e+00, 4.827635559082031e+02, 0e+00, 4.934446716308594e+01, 6.9695166015625e+02, 0e+00, 5.668621826171875e+01, 7.10295703125e+02, 0e+00] -azi180til90.HPer=[0e+00, 1.104266891479492e+02, 4.760089569091797e+01, 0e+00, 2.455784606933594e+02, 2.421374559402466e+00, 0e+00, 3.238328125e+02, 0e+00, 1.113326907157898e-01, 3.457111206054688e+02, 0e+00, 9.696563720703125e+00, 3.244525268554688e+02, 0e+00, 4.249103164672852e+01, 2.371796966552734e+02, 0e+00, 2.036489898681641e+02, 1.266527709960938e+02, 0e+00, 4.034251525878906e+02, 1.572757310867309e+01, 0e+00, 5.013979248046875e+02, 0e+00, 0e+00, 1.382641479492187e+02, 0e+00, 0e+00, 4.425643615722656e+02, 0e+00, 0e+00, 1.682951202392578e+02, 0e+00, 5.784292697906494e+00, 4.318685607910156e+02, 0e+00, 1.442074356079102e+01, 1.014230194091797e+01, 0e+00, 4.400325317382812e+02, 0e+00, 0e+00, 1.426234344482422e+02, 0e+00, 0e+00, 1.698698608398437e+02, 0e+00, 0e+00, 4.133403625488281e+02, 0e+00, 0e+00, 6.228011962890625e+02, 0e+00, 5.099990367889404e-01, 3.634486572265625e+02, 0e+00, 2.10800634765625e+02, 1.014403781890869e+01, 0e+00, 1.125417541503906e+02, 2.282412841916084e-01, 0e+00, 6.23707958984375e+02, 0e+00, 0e+00, 6.544216186523438e+02, 0e+00, 0e+00, 6.185294799804688e+02, 0e+00, 0e+00, 5.021553833007812e+02, 0e+00, 2.461494064331055e+01, 8.626444244384766e+01, 0e+00, 1.221540542602539e+02, 1.452863647460937e+02, 0e+00, 2.204431884765625e+02, 3.941490859985352e+01, 0e+00, 1.891536376953125e+02, 3.525503158569336e+00, 0e+00, 3.23481591796875e+02, 0e+00, 0e+00, 2.85958251953125e+02, 0e+00, 7.471932029724122e+00, 1.966497741699219e+02, 0e+00, 4.934446716308594e+01, 7.278308181762695e+01, 0e+00, 5.668621826171875e+01, 6.178465347290039e+01, 0e+00] -azi090til90.HPer=[0e+00, 6.6743330078125e+02, 4.760089569091797e+01, 0e+00, 4.407977172851562e+02, 2.421374559402466e+00, 0e+00, 1.368798980712891e+02, 0e+00, 1.113326907157898e-01, 6.631832122802734e+01, 0e+00, 4.462323150634766e+01, 5.90253402709961e+01, 0e+00, 3.949580993652344e+02, 7.376036529541015e+01, 0e+00, 6.759274291992188e+02, 4.937784881591797e+01, 0e+00, 6.473581787109375e+02, 1.135796499252319e+01, 0e+00, 4.007929504394531e+02, 0e+00, 0e+00, 1.126547775268555e+02, 0e+00, 0e+00, 9.97545166015625e+01, 0e+00, 0e+00, 9.817978210449219e+01, 0e+00, 1.010194778442383e+01, 4.379320526123047e+01, 0e+00, 1.442074356079102e+01, 1.014230194091797e+01, 0e+00, 4.204525695800781e+02, 0e+00, 0e+00, 1.100808242797852e+02, 0e+00, 0e+00, 9.946317596435547e+01, 0e+00, 0e+00, 7.468209838867188e+01, 0e+00, 0e+00, 3.945354385375977e+01, 0e+00, 5.099990367889404e-01, 4.756036529541016e+01, 0e+00, 3.118527526855469e+02, 1.014403781890869e+01, 0e+00, 1.146702789306641e+02, 2.282412841916084e-01, 0e+00, 4.080503845214844e+02, 0e+00, 0e+00, 1.694488388061523e+02, 0e+00, 0e+00, 6.744644927978516e+01, 0e+00, 0e+00, 5.600941925048828e+01, 0e+00, 1.527887573242188e+02, 7.938098449707032e+01, 0e+00, 5.951805786132812e+02, 5.750018081665039e+01, 0e+00, 5.635029418945312e+02, 3.941490859985352e+01, 0e+00, 2.339272613525391e+02, 3.525503158569336e+00, 0e+00, 2.538629547119141e+02, 0e+00, 0e+00, 6.658427429199219e+01, 0e+00, 3.499623413085938e+01, 6.242435455322266e+01, 0e+00, 4.676725769042969e+02, 5.416218872070313e+01, 0e+00, 7.328690063476563e+02, 6.178465347290039e+01, 0e+00] -azi315til90.HPer=[0e+00, 5.644297714233399e+01, 2.681597351074219e+02, 0e+00, 7.317161102294922e+01, 2.421374559402466e+00, 0e+00, 6.746222839355468e+01, 0e+00, 1.113326907157898e-01, 6.631832122802734e+01, 0e+00, 9.696563720703125e+00, 2.340536102294922e+02, 0e+00, 4.249103164672852e+01, 3.531304626464844e+02, 0e+00, 5.744758605957031e+01, 3.436800720214844e+02, 0e+00, 5.047120056152344e+01, 7.111209335327149e+01, 0e+00, 9.606293182373047e+01, 0e+00, 0e+00, 1.07192756652832e+02, 0e+00, 0e+00, 9.97545166015625e+01, 0e+00, 0e+00, 9.817978210449219e+01, 0e+00, 3.479973077774048e+00, 7.259205474853516e+01, 0e+00, 1.442074356079102e+01, 1.014230194091797e+01, 0e+00, 4.389339294433594e+01, 0e+00, 0e+00, 7.714386749267578e+01, 0e+00, 0e+00, 8.896930694580078e+01, 0e+00, 0e+00, 7.468209838867188e+01, 0e+00, 0e+00, 3.945354385375977e+01, 0e+00, 5.099990367889404e-01, 7.298497772216797e+01, 0e+00, 2.986664237976074e+01, 1.014403781890869e+01, 0e+00, 7.039613800048828e+01, 2.282412841916084e-01, 0e+00, 5.199769134521485e+01, 0e+00, 0e+00, 4.880638961791992e+01, 0e+00, 0e+00, 6.744644927978516e+01, 0e+00, 0e+00, 5.600941925048828e+01, 0e+00, 2.202275276184082e+01, 8.491598358154297e+01, 0e+00, 5.171205902099609e+01, 4.111139343261719e+02, 0e+00, 9.326248474121094e+01, 5.95243423461914e+01, 0e+00, 1.426015472412109e+02, 3.525503158569336e+00, 0e+00, 6.982619628906249e+01, 0e+00, 0e+00, 6.658427429199219e+01, 0e+00, 7.471932029724122e+00, 2.647373382568359e+02, 0e+00, 4.934446716308594e+01, 4.955152954101562e+02, 0e+00, 5.668621826171875e+01, 5.860436645507813e+02, 0e+00] -azi045til90.HPer=[0e+00, 4.503061401367187e+02, 4.760089569091797e+01, 0e+00, 2.112124572753906e+02, 2.421374559402466e+00, 0e+00, 6.746222839355468e+01, 0e+00, 1.113326907157898e-01, 6.631832122802734e+01, 0e+00, 4.004501953125e+01, 5.90253402709961e+01, 0e+00, 2.952400512695312e+02, 7.376036529541015e+01, 0e+00, 3.913988830566406e+02, 4.937784881591797e+01, 0e+00, 2.229578979492188e+02, 1.135796499252319e+01, 0e+00, 9.606293182373047e+01, 0e+00, 0e+00, 1.07192756652832e+02, 0e+00, 0e+00, 9.97545166015625e+01, 0e+00, 0e+00, 9.817978210449219e+01, 0e+00, 6.533016204833984e+00, 4.379320526123047e+01, 0e+00, 1.442074356079102e+01, 1.014230194091797e+01, 0e+00, 4.518831939697266e+01, 0e+00, 0e+00, 7.714386749267578e+01, 0e+00, 0e+00, 8.896930694580078e+01, 0e+00, 0e+00, 7.468209838867188e+01, 0e+00, 0e+00, 3.945354385375977e+01, 0e+00, 5.099990367889404e-01, 4.756036529541016e+01, 0e+00, 1.013212829589844e+02, 1.014403781890869e+01, 0e+00, 7.188249053955079e+01, 2.282412841916084e-01, 0e+00, 5.199769134521485e+01, 0e+00, 0e+00, 4.880638961791992e+01, 0e+00, 0e+00, 6.744644927978516e+01, 0e+00, 0e+00, 5.600941925048828e+01, 0e+00, 1.126553268432617e+02, 7.938098449707032e+01, 0e+00, 3.86192333984375e+02, 5.750018081665039e+01, 0e+00, 3.358423522949219e+02, 3.941490859985352e+01, 0e+00, 1.74261279296875e+02, 3.525503158569336e+00, 0e+00, 6.982619628906249e+01, 0e+00, 0e+00, 6.658427429199219e+01, 0e+00, 3.518397369384766e+01, 6.242435455322266e+01, 0e+00, 4.246743774414062e+02, 5.416218872070313e+01, 0e+00, 5.868162109375e+02, 6.178465347290039e+01, 0e+00] -azi270til30.HPer=[0e+00, 4.317074523925781e+02, 2.805911529541016e+02, 0e+00, 7.100401489257813e+02, 5.194928169250488e+00, 0e+00, 9.111361938476563e+02, 0e+00, 2.434948444366455e-01, 9.932900390625e+02, 0e+00, 2.059901733398437e+01, 1.008216320800781e+03, 0e+00, 7.835452270507812e+01, 7.773410278320313e+02, 0e+00, 9.460896453857421e+01, 5.029143920898438e+02, 0e+00, 2.682540771484375e+02, 7.524329681396485e+01, 0e+00, 4.706226867675781e+02, 0e+00, 0e+00, 2.501805419921875e+02, 0e+00, 0e+00, 5.15019287109375e+02, 0e+00, 0e+00, 2.785717834472656e+02, 0e+00, 7.403605937957764e+00, 4.987390625e+02, 0e+00, 3.068856964111328e+01, 2.166137428283691e+01, 0e+00, 7.673175659179688e+01, 0e+00, 0e+00, 1.789640014648438e+02, 0e+00, 0e+00, 2.243813232421875e+02, 0e+00, 0e+00, 3.655476684570312e+02, 0e+00, 0e+00, 5.4639619140625e+02, 0e+00, 9.35258150100708e-01, 4.067975036621094e+02, 0e+00, 5.509471817016602e+01, 2.167525367736816e+01, 0e+00, 1.520050415039063e+02, 4.786415413022042e-01, 0e+00, 3.609000122070312e+02, 0e+00, 0e+00, 5.961056884765625e+02, 0e+00, 0e+00, 7.956090087890625e+02, 0e+00, 0e+00, 8.815649169921875e+02, 0e+00, 4.444980621337891e+01, 1.844450744628906e+02, 0e+00, 8.624260101318359e+01, 6.709538452148438e+02, 0e+00, 3.001256774902344e+02, 1.028775985717773e+02, 0e+00, 3.69429931640625e+02, 7.589703559875488e+00, 0e+00, 8.3316328125e+02, 0e+00, 0e+00, 1.010293762207031e+03, 0e+00, 1.593654441833496e+01, 1.061485498046875e+03, 0e+00, 9.081645202636719e+01, 1.012254223632812e+03, 0e+00, 1.706546081542969e+02, 7.746674682617188e+02, 0e+00] -azi000til30.HPer=[0e+00, 7.102107299804687e+02, 1.948556091308594e+02, 0e+00, 8.076497680664063e+02, 5.194928169250488e+00, 0e+00, 8.176597778320313e+02, 0e+00, 2.434948444366455e-01, 7.349619750976562e+02, 0e+00, 2.766246109008789e+01, 6.190254638671875e+02, 0e+00, 1.7634765625e+02, 4.163771911621094e+02, 0e+00, 3.253402404785156e+02, 2.175363708496094e+02, 0e+00, 3.902205871582031e+02, 2.862113513946533e+01, 0e+00, 4.203202026367188e+02, 0e+00, 0e+00, 2.373758605957031e+02, 0e+00, 0e+00, 2.988610229492188e+02, 0e+00, 0e+00, 2.199829681396484e+02, 0e+00, 7.403605937957764e+00, 9.029984893798829e+01, 0e+00, 3.068856964111328e+01, 2.166137428283691e+01, 0e+00, 7.35238540649414e+01, 0e+00, 0e+00, 1.626926971435547e+02, 0e+00, 0e+00, 1.891779846191406e+02, 0e+00, 0e+00, 1.577286376953125e+02, 0e+00, 0e+00, 7.430796508789062e+01, 0e+00, 9.35258150100708e-01, 8.459750366210938e+01, 0e+00, 5.509471817016602e+01, 2.167525367736816e+01, 0e+00, 1.530693115234375e+02, 4.786415413022042e-01, 0e+00, 2.530712280273438e+02, 0e+00, 0e+00, 3.536192993164062e+02, 0e+00, 0e+00, 4.430604553222656e+02, 0e+00, 0e+00, 4.504065856933594e+02, 0e+00, 6.047800827026367e+01, 1.736477783203125e+02, 0e+00, 2.764211883544922e+02, 3.33124951171875e+02, 0e+00, 4.716555541992187e+02, 9.091268615722656e+01, 0e+00, 3.91816748046875e+02, 7.589703559875488e+00, 0e+00, 7.983539672851563e+02, 0e+00, 0e+00, 8.347138061523438e+02, 0e+00, 2.421052856445312e+01, 7.84203173828125e+02, 0e+00, 2.85289306640625e+02, 6.8154853515625e+02, 0e+00, 5.455131591796875e+02, 4.968635009765625e+02, 0e+00] -azi090til30.HPer=[0e+00, 1.042697802734375e+03, 9.472706146240235e+01, 0e+00, 1.077666259765625e+03, 5.194928169250488e+00, 0e+00, 9.805538940429688e+02, 0e+00, 2.434948444366455e-01, 7.560266723632812e+02, 0e+00, 4.112952880859375e+01, 4.952617553710937e+02, 0e+00, 3.500941772460938e+02, 2.188326965332031e+02, 0e+00, 7.076808837890625e+02, 8.594292907714843e+01, 0e+00, 8.651410400390625e+02, 2.409201946258545e+01, 0e+00, 7.75352734375e+02, 0e+00, 0e+00, 2.556425598144531e+02, 0e+00, 0e+00, 4.255126342773438e+02, 0e+00, 0e+00, 2.315094909667969e+02, 0e+00, 1.059535598754883e+01, 7.994815673828126e+01, 0e+00, 3.068856964111328e+01, 2.166137428283691e+01, 0e+00, 4.437057739257813e+02, 0e+00, 0e+00, 2.119009552001953e+02, 0e+00, 0e+00, 2.348751892089844e+02, 0e+00, 0e+00, 2.8856787109375e+02, 0e+00, 0e+00, 1.855674438476562e+02, 0e+00, 9.35258150100708e-01, 8.459750366210938e+01, 0e+00, 2.650209320068359e+02, 2.167525367736816e+01, 0e+00, 1.962791870117188e+02, 4.786415413022042e-01, 0e+00, 7.169527099609375e+02, 0e+00, 0e+00, 7.1674814453125e+02, 0e+00, 0e+00, 6.415949096679688e+02, 0e+00, 0e+00, 4.653942260742188e+02, 0e+00, 1.271571044921875e+02, 1.69733935546875e+02, 0e+00, 5.8337646484375e+02, 9.374936676025391e+01, 0e+00, 7.703661499023438e+02, 8.292183685302734e+01, 0e+00, 4.607556518554687e+02, 7.589703559875488e+00, 0e+00, 1.017200048828125e+03, 0e+00, 0e+00, 8.785078735351562e+02, 0e+00, 3.213945770263672e+01, 6.411462646484375e+02, 0e+00, 4.382190856933594e+02, 3.694647583007812e+02, 0e+00, 8.4683740234375e+02, 1.261563995361328e+02, 0e+00] -weaBusHHorIR.relHum=[6.700000166893005e-01, 3.297499895095825e-01, 5.279999852180481e-01, 5.003750085830688e-01, 3.108928561210632e-01, 8.799999952316284e-01, 3.21999990940094e-01, 2.379999965429306e-01, 8.199999928474426e-01, 2.995000064373016e-01, 3.199999928474426e-01, 6.229075908660888e-01, 1.493303596973419e-01, 3.77557897567749e-01, 6.725714206695557e-01, 6.399999856948853e-01, 5.878928661346435e-01, 4.759999930858612e-01, 2.391785711050033e-01, 5.623529314994812e-01, 7.699999809265137e-01, 2.63609379529953e-01, 8.199999928474426e-01, 6.299999952316284e-01, 4.429999947547912e-01, 7.599999904632568e-01, 7.06480085849762e-01, 5.432968735694885e-01, 6.425999879837037e-01, 5.213437438011169e-01, 6.700000166893005e-01, 8.234779477119446e-01, 4.270937502384186e-01, 8.294400811195374e-01, 8.065312504768372e-01, 6.700000166893005e-01, 6.971651911735535e-01, 8.620624780654907e-01, 5.587500214576722e-01, 9.786875009536743e-01, 8.700000047683716e-01, 3.199999928474426e-01, 8.005071759223938e-01, 7.5625e-01, 6.716562390327454e-01, 7.099999785423279e-01, 7.073616027832031e-01, 6.617031455039978e-01, 9.814431667327881e-01, 6.524687647819519e-01, 5.799999833106995e-01, 9.284142971038818e-01, 7.164285540580749e-01, 7.551458358764649e-01, 8.33841347694397e-01, 6.100000143051147e-01, 6.235740542411804e-01, 8.264090657234192e-01, 4.504374921321869e-01, 9.674062728881836e-01, 8.700000047683716e-01, 7.221255898475647e-01, 9.325937628746033e-01, 8.700000047683716e-01, 5.46216344833374e-01, 9.300000071525574e-01, 7.673345565795898e-01, 5.123515605926514e-01, 9.974772930145264e-01, 5.901399970054626e-01, 3.700000047683716e-01, 8.489874958992004e-01, 4.863480925559998e-01, 4.370096027851105e-01, 9.705354690551757e-01, 2.39999994635582e-01, 8.199999928474426e-01, 5.908214211463928e-01, 5.681838154792785e-01, 6.830999970436096e-01, 6.700000166893005e-01, 3.987019121646881e-01, 7.936874985694885e-01, 5.159999966621399e-01, 3.605987966060639e-01, 7.699999809265137e-01, 5.480312466621399e-01, 2.783750116825104e-01, 8.686568021774292e-01, 4.839375078678131e-01, 3.600000143051147e-01, 8.700000047683716e-01, 3.906198024749756e-01, 5.383333206176758e-01, 8.457361459732056e-01, 3.00000011920929e-01, 7.15490972995758e-01, 3.245499968528748e-01, 2.420000046491623e-01, 5.60256278514862e-01, 7.599999904632568e-01] +azi000til00.HPer=[0e+00, 8.290364990234375e+02, 1.789189331054687e+02, 0e+00, 1.005362426757812e+03, 5.833333492279053e+00, 0e+00, 1.066460424804688e+03, 0e+00, 2.75e-01, 9.841373901367188e+02, 0e+00, 2.640377197265625e+01, 8.449298950195313e+02, 0e+00, 1.938943634033203e+02, 5.539451416015625e+02, 0e+00, 4.442587829589844e+02, 2.86247802734375e+02, 0e+00, 6.351674072265625e+02, 3.450561866760254e+01, 0e+00, 6.927840942382812e+02, 0e+00, 0e+00, 2.81936328125e+02, 0e+00, 0e+00, 5.212349853515625e+02, 0e+00, 0e+00, 2.8553134765625e+02, 0e+00, 8.185622215270996e+00, 3.188372375488281e+02, 0e+00, 3.437446746826172e+01, 2.428977279663086e+01, 0e+00, 2.855569274902344e+02, 0e+00, 0e+00, 2.188982940673828e+02, 0e+00, 0e+00, 2.569878784179688e+02, 0e+00, 0e+00, 3.650779418945312e+02, 0e+00, 0e+00, 4.10446435546875e+02, 0e+00, 9.959677457809448e-01, 2.579499450683594e+02, 0e+00, 1.383975158691406e+02, 2.430882339477539e+01, 0e+00, 1.949877166748047e+02, 5.336956411600113e-01, 0e+00, 6.028005493164062e+02, 0e+00, 0e+00, 7.383087036132813e+02, 0e+00, 0e+00, 8.049053955078125e+02, 0e+00, 0e+00, 7.5588037109375e+02, 0e+00, 6.896163177490234e+01, 1.974140625e+02, 0e+00, 3.48681103515625e+02, 4.203215759277344e+02, 0e+00, 5.977282348632813e+02, 1.00477619934082e+02, 0e+00, 4.592562866210938e+02, 8.53125e+00, 0e+00, 1.0421203125e+03, 0e+00, 0e+00, 1.064928588867188e+03, 0e+00, 2.055981369018555e+01, 9.581571411132812e+02, 0e+00, 2.564660034179688e+02, 7.765178344726562e+02, 0e+00, 5.701071899414062e+02, 5.02168310546875e+02, 0e+00] +azi000til90.HPer=[0e+00, 6.129237365722656e+01, 1.313678314208984e+02, 0e+00, 7.405089263916015e+01, 2.417026281356812e+00, 0e+00, 6.839787139892579e+01, 0e+00, 1.113036632537842e-01, 6.701267242431641e+01, 0e+00, 2.278090896606446e+01, 6.376061859130859e+01, 0e+00, 5.188571548461914e+01, 7.568064575195312e+01, 0e+00, 6.203385391235351e+01, 5.230129547119141e+01, 0e+00, 5.539283676147461e+01, 1.310859146118164e+01, 0e+00, 9.715038452148437e+01, 0e+00, 0e+00, 1.079860916137695e+02, 0e+00, 0e+00, 1.006112823486328e+02, 0e+00, 0e+00, 9.653389739990234e+01, 0e+00, 3.664050817489624e+00, 4.943817825317383e+01, 0e+00, 1.441081619262695e+01, 1.013654346466064e+01, 0e+00, 4.827388763427734e+01, 0e+00, 0e+00, 7.669533691406249e+01, 0e+00, 0e+00, 8.779102935791016e+01, 0e+00, 0e+00, 7.481545257568359e+01, 0e+00, 0e+00, 4.277258758544922e+01, 0e+00, 4.054443538188934e-01, 5.060685958862305e+01, 0e+00, 3.255567131042481e+01, 1.013885993957519e+01, 0e+00, 7.039252166748047e+01, 2.167933095246553e-01, 0e+00, 5.690139083862304e+01, 0e+00, 0e+00, 5.315991821289062e+01, 0e+00, 0e+00, 6.774591064453125e+01, 0e+00, 0e+00, 6.077868957519532e+01, 0e+00, 2.336384773254395e+01, 7.992362365722656e+01, 0e+00, 5.39257095336914e+01, 6.251348190307617e+01, 0e+00, 9.430818023681641e+01, 4.175253372192383e+01, 0e+00, 1.454923706054688e+02, 3.52175498008728e+00, 0e+00, 7.067254638671875e+01, 0e+00, 0e+00, 6.748480224609375e+01, 0e+00, 2.462109298706055e+01, 6.5690673828125e+01, 0e+00, 1.792285614013672e+02, 5.908012161254883e+01, 0e+00, 1.347968139648438e+02, 1.608248596191406e+02, 0e+00] +azi270til90.HPer=[0e+00, 6.129237365722656e+01, 3.264968841552734e+02, 0e+00, 7.405089263916015e+01, 2.417026281356812e+00, 0e+00, 6.839787139892579e+01, 0e+00, 1.113036632537842e-01, 3.053520202636719e+02, 0e+00, 1.080148544311523e+01, 5.685911987304687e+02, 0e+00, 4.61956672668457e+01, 6.393946411132813e+02, 0e+00, 6.203385391235351e+01, 5.834456909179687e+02, 0e+00, 5.539283676147461e+01, 1.443136932373047e+02, 0e+00, 9.715038452148437e+01, 0e+00, 0e+00, 1.079860916137695e+02, 0e+00, 0e+00, 1.899515991210938e+02, 0e+00, 0e+00, 1.58896923828125e+02, 0e+00, 3.664050817489624e+00, 5.075946533203125e+02, 0e+00, 1.441081619262695e+01, 1.013654346466064e+01, 0e+00, 4.827388763427734e+01, 0e+00, 0e+00, 7.669533691406249e+01, 0e+00, 0e+00, 8.779102935791016e+01, 0e+00, 0e+00, 1.574713592529297e+02, 0e+00, 0e+00, 4.107903381347656e+02, 0e+00, 4.054443538188934e-01, 4.327547729492188e+02, 0e+00, 3.255567131042481e+01, 1.013885993957519e+01, 0e+00, 7.039252166748047e+01, 2.167933095246553e-01, 0e+00, 5.690139083862304e+01, 0e+00, 0e+00, 5.315991821289062e+01, 0e+00, 0e+00, 2.221374816894531e+02, 0e+00, 0e+00, 4.703996887207031e+02, 0e+00, 2.336384773254395e+01, 9.312118225097656e+01, 0e+00, 5.39257095336914e+01, 6.737572631835938e+02, 0e+00, 9.430818023681641e+01, 6.271113891601563e+01, 0e+00, 1.454923706054688e+02, 3.52175498008728e+00, 0e+00, 7.067254638671875e+01, 0e+00, 0e+00, 1.999849395751953e+02, 0e+00, 8.498899459838867e+00, 4.798247680664062e+02, 0e+00, 5.325191879272461e+01, 6.936346923828125e+02, 0e+00, 5.950940170288086e+01, 7.282610717773438e+02, 0e+00] +azi180til90.HPer=[0e+00, 1.145259628295898e+02, 5.158197860717773e+01, 0e+00, 2.474406951904297e+02, 2.417026281356812e+00, 0e+00, 3.262123840332031e+02, 0e+00, 1.113036632537842e-01, 3.476724853515625e+02, 0e+00, 1.080148544311523e+01, 3.24959228515625e+02, 0e+00, 4.61956672668457e+01, 2.407427947998047e+02, 0e+00, 2.123277008056641e+02, 1.351934295654297e+02, 0e+00, 4.038499694824219e+02, 1.955230331420898e+01, 0e+00, 5.036536010742187e+02, 0e+00, 0e+00, 1.372857727050781e+02, 0e+00, 0e+00, 4.427839965820312e+02, 0e+00, 0e+00, 1.894536499023438e+02, 0e+00, 6.369859218597412e+00, 4.640770202636719e+02, 0e+00, 1.441081619262695e+01, 1.013654346466064e+01, 0e+00, 4.691608642578125e+02, 0e+00, 0e+00, 1.637804748535156e+02, 0e+00, 0e+00, 1.933993255615234e+02, 0e+00, 0e+00, 4.384446716308594e+02, 0e+00, 0e+00, 6.375586547851562e+02, 0e+00, 4.054443538188934e-01, 3.932623168945312e+02, 0e+00, 2.398988800048828e+02, 1.013885993957519e+01, 0e+00, 1.242788665771484e+02, 2.167933095246553e-01, 0e+00, 6.198239135742188e+02, 0e+00, 0e+00, 6.50964013671875e+02, 0e+00, 0e+00, 6.201795654296875e+02, 0e+00, 0e+00, 4.999171020507812e+02, 0e+00, 2.629291534423828e+01, 8.610023651123046e+01, 0e+00, 1.281446701049805e+02, 1.535024993896484e+02, 0e+00, 2.285057464599609e+02, 3.978355484008789e+01, 0e+00, 1.900183380126953e+02, 3.52175498008728e+00, 0e+00, 3.25658056640625e+02, 0e+00, 0e+00, 2.880476989746094e+02, 0e+00, 8.498899459838867e+00, 1.980546966552734e+02, 0e+00, 5.325191879272461e+01, 7.746585845947266e+01, 0e+00, 5.950940170288086e+01, 6.595537109375e+01, 0e+00] +azi090til90.HPer=[0e+00, 6.638554443359375e+02, 5.158197860717773e+01, 0e+00, 4.437707641601563e+02, 2.417026281356812e+00, 0e+00, 1.382064651489258e+02, 0e+00, 1.113036632537842e-01, 6.701267242431641e+01, 0e+00, 6.256858825683594e+01, 6.376061859130859e+01, 0e+00, 4.4940185546875e+02, 7.568064575195312e+01, 0e+00, 6.986532470703125e+02, 5.230129547119141e+01, 0e+00, 6.446675415039062e+02, 1.310859146118164e+01, 0e+00, 4.027647399902344e+02, 0e+00, 0e+00, 1.131349502563477e+02, 0e+00, 0e+00, 1.006112823486328e+02, 0e+00, 0e+00, 9.653389739990234e+01, 0e+00, 1.143979167938232e+01, 4.943817825317383e+01, 0e+00, 1.441081619262695e+01, 1.013654346466064e+01, 0e+00, 4.482434020996094e+02, 0e+00, 0e+00, 1.205005569458008e+02, 0e+00, 0e+00, 1.015612457275391e+02, 0e+00, 0e+00, 7.481545257568359e+01, 0e+00, 0e+00, 4.277258758544922e+01, 0e+00, 4.054443538188934e-01, 5.060685958862305e+01, 0e+00, 3.558906860351562e+02, 1.013885993957519e+01, 0e+00, 1.267935760498047e+02, 2.167933095246553e-01, 0e+00, 4.074902099609375e+02, 0e+00, 0e+00, 1.722521743774414e+02, 0e+00, 0e+00, 6.774591064453125e+01, 0e+00, 0e+00, 6.077868957519532e+01, 0e+00, 1.711241149902344e+02, 7.992362365722656e+01, 0e+00, 6.266475830078125e+02, 6.251348190307617e+01, 0e+00, 5.90622412109375e+02, 3.978355484008789e+01, 0e+00, 2.328299407958984e+02, 3.52175498008728e+00, 0e+00, 2.556740386962891e+02, 0e+00, 0e+00, 6.748480224609375e+01, 0e+00, 4.645169067382812e+01, 6.5690673828125e+01, 0e+00, 5.218236083984375e+02, 5.908103485107422e+01, 0e+00, 7.518372802734375e+02, 6.595537109375e+01, 0e+00] +azi315til90.HPer=[0e+00, 6.129237365722656e+01, 3.023932800292969e+02, 0e+00, 7.405089263916015e+01, 2.417026281356812e+00, 0e+00, 6.839787139892579e+01, 0e+00, 1.113036632537842e-01, 6.701267242431641e+01, 0e+00, 1.080148544311523e+01, 2.360344421386719e+02, 0e+00, 4.61956672668457e+01, 3.575700622558594e+02, 0e+00, 6.203385391235351e+01, 3.692635192871094e+02, 0e+00, 5.539283676147461e+01, 1.013282180786133e+02, 0e+00, 9.715038452148437e+01, 0e+00, 0e+00, 1.079860916137695e+02, 0e+00, 0e+00, 1.006112823486328e+02, 0e+00, 0e+00, 9.653389739990234e+01, 0e+00, 3.664050817489624e+00, 8.020980224609374e+01, 0e+00, 1.441081619262695e+01, 1.013654346466064e+01, 0e+00, 4.827388763427734e+01, 0e+00, 0e+00, 7.669533691406249e+01, 0e+00, 0e+00, 8.779102935791016e+01, 0e+00, 0e+00, 7.481545257568359e+01, 0e+00, 0e+00, 4.277258758544922e+01, 0e+00, 4.054443538188934e-01, 7.853223876953125e+01, 0e+00, 3.255567131042481e+01, 1.013885993957519e+01, 0e+00, 7.039252166748047e+01, 2.167933095246553e-01, 0e+00, 5.690139083862304e+01, 0e+00, 0e+00, 5.315991821289062e+01, 0e+00, 0e+00, 6.774591064453125e+01, 0e+00, 0e+00, 6.077868957519532e+01, 0e+00, 2.336384773254395e+01, 8.48881851196289e+01, 0e+00, 5.39257095336914e+01, 4.303891479492187e+02, 0e+00, 9.430818023681641e+01, 5.738808135986328e+01, 0e+00, 1.454923706054688e+02, 3.52175498008728e+00, 0e+00, 7.067254638671875e+01, 0e+00, 0e+00, 6.748480224609375e+01, 0e+00, 8.498899459838867e+00, 2.649322082519531e+02, 0e+00, 5.325191879272461e+01, 4.947775573730469e+02, 0e+00, 5.950940170288086e+01, 6.0135908203125e+02, 0e+00] +azi045til90.HPer=[0e+00, 4.497269592285156e+02, 5.158197860717773e+01, 0e+00, 2.128772216796875e+02, 2.417026281356812e+00, 0e+00, 6.839787139892579e+01, 0e+00, 1.113036632537842e-01, 6.701267242431641e+01, 0e+00, 5.587708587646485e+01, 6.376061859130859e+01, 0e+00, 3.353289489746094e+02, 7.568064575195312e+01, 0e+00, 4.059179626464844e+02, 5.230129547119141e+01, 0e+00, 2.256765655517578e+02, 1.310859146118164e+01, 0e+00, 9.715038452148437e+01, 0e+00, 0e+00, 1.079860916137695e+02, 0e+00, 0e+00, 1.006112823486328e+02, 0e+00, 0e+00, 9.653389739990234e+01, 0e+00, 7.249034404754639e+00, 4.943817825317383e+01, 0e+00, 1.441081619262695e+01, 1.013654346466064e+01, 0e+00, 4.963285827636719e+01, 0e+00, 0e+00, 7.669533691406249e+01, 0e+00, 0e+00, 8.779102935791016e+01, 0e+00, 0e+00, 7.481545257568359e+01, 0e+00, 0e+00, 4.277258758544922e+01, 0e+00, 4.054443538188934e-01, 5.060685958862305e+01, 0e+00, 1.145742706298828e+02, 1.013885993957519e+01, 0e+00, 7.213973388671874e+01, 2.167933095246553e-01, 0e+00, 5.690139083862304e+01, 0e+00, 0e+00, 5.315991821289062e+01, 0e+00, 0e+00, 6.774591064453125e+01, 0e+00, 0e+00, 6.077868957519532e+01, 0e+00, 1.257749710083008e+02, 7.992362365722656e+01, 0e+00, 4.064204956054688e+02, 6.251348190307617e+01, 0e+00, 3.503633239746094e+02, 3.978355484008789e+01, 0e+00, 1.7576474609375e+02, 3.52175498008728e+00, 0e+00, 7.067254638671875e+01, 0e+00, 0e+00, 6.748480224609375e+01, 0e+00, 4.673568572998047e+01, 6.5690673828125e+01, 0e+00, 4.736611022949219e+02, 5.908103485107422e+01, 0e+00, 6.02295361328125e+02, 6.595537109375e+01, 0e+00] +azi270til30.HPer=[0e+00, 4.363735107421875e+02, 3.011071441650391e+02, 0e+00, 7.104052734375e+02, 5.192753791809082e+00, 0e+00, 9.124432495117187e+02, 0e+00, 2.434803247451782e-01, 9.949430541992188e+02, 0e+00, 1.998463668823242e+01, 1.004212548828125e+03, 0e+00, 6.936373901367188e+01, 7.817179443359375e+02, 0e+00, 9.007824401855468e+01, 5.258701782226562e+02, 0e+00, 2.731496459960937e+02, 9.781724243164062e+01, 0e+00, 4.710175476074219e+02, 0e+00, 0e+00, 2.503489624023437e+02, 0e+00, 0e+00, 5.15244873046875e+02, 0e+00, 0e+00, 2.889540100097656e+02, 0e+00, 7.422909259796143e+00, 5.192958374023438e+02, 0e+00, 3.068360633850098e+01, 2.165849533081055e+01, 0e+00, 7.014535064697266e+01, 0e+00, 0e+00, 1.757308654785156e+02, 0e+00, 0e+00, 2.250907012939453e+02, 0e+00, 0e+00, 3.714286193847656e+02, 0e+00, 0e+00, 5.529378540039063e+02, 0e+00, 8.829807639122009e-01, 4.260599548339844e+02, 0e+00, 4.855819702148438e+01, 2.167266502380371e+01, 0e+00, 1.475552917480469e+02, 4.729175791144371e-01, 0e+00, 3.645279541015625e+02, 0e+00, 0e+00, 5.97409814453125e+02, 0e+00, 0e+00, 7.962786254882812e+02, 0e+00, 0e+00, 8.786453857421875e+02, 0e+00, 4.334468841552734e+01, 1.836963806152344e+02, 0e+00, 7.779803924560547e+01, 6.87483544921875e+02, 0e+00, 2.920538146972656e+02, 1.012546737670898e+02, 0e+00, 3.715577941894531e+02, 7.58782958984375e+00, 0e+00, 8.340400268554688e+02, 0e+00, 0e+00, 1.012096984863281e+03, 0e+00, 1.567019500732422e+01, 1.0576666015625e+03, 0e+00, 7.967561340332031e+01, 1.008887939453125e+03, 0e+00, 1.661679382324219e+02, 7.852822265625e+02, 0e+00] +azi000til30.HPer=[0e+00, 7.110382202148437e+02, 2.035426177978516e+02, 0e+00, 8.085703125e+02, 5.192753791809082e+00, 0e+00, 8.184403076171875e+02, 0e+00, 2.434803247451782e-01, 7.354434814453125e+02, 0e+00, 3.034905014038086e+01, 6.2119794921875e+02, 0e+00, 1.814633941650391e+02, 4.173298461914063e+02, 0e+00, 3.2746982421875e+02, 2.188519104003906e+02, 0e+00, 3.935584350585938e+02, 2.899283504486084e+01, 0e+00, 4.205731201171875e+02, 0e+00, 0e+00, 2.382735534667969e+02, 0e+00, 0e+00, 2.994883422851562e+02, 0e+00, 0e+00, 2.113126251220703e+02, 0e+00, 7.422909259796143e+00, 8.289817047119141e+01, 0e+00, 3.068360633850098e+01, 2.165849533081055e+01, 0e+00, 6.672428131103516e+01, 0e+00, 0e+00, 1.540908996582031e+02, 0e+00, 0e+00, 1.791716583251953e+02, 0e+00, 0e+00, 1.482860717773438e+02, 0e+00, 0e+00, 7.153594665527343e+01, 0e+00, 8.829807639122009e-01, 7.646476593017579e+01, 0e+00, 4.855819702148438e+01, 2.167266502380371e+01, 0e+00, 1.48812646484375e+02, 4.729175791144371e-01, 0e+00, 2.583610961914063e+02, 0e+00, 0e+00, 3.580538940429688e+02, 0e+00, 0e+00, 4.428660278320312e+02, 0e+00, 0e+00, 4.542656616210937e+02, 0e+00, 6.145590209960938e+01, 1.740092926025391e+02, 0e+00, 2.781988128662109e+02, 3.363671447753906e+02, 0e+00, 4.73112158203125e+02, 9.077537231445312e+01, 0e+00, 3.929636047363281e+02, 7.58782958984375e+00, 0e+00, 7.990480346679688e+02, 0e+00, 0e+00, 8.355654907226562e+02, 0e+00, 2.705568771362304e+01, 7.844174926757812e+02, 0e+00, 2.975057678222656e+02, 6.824182739257812e+02, 0e+00, 5.499755859375e+02, 5.015641357421875e+02, 0e+00] +azi090til30.HPer=[0e+00, 1.038936596679687e+03, 8.957039947509766e+01, 0e+00, 1.08012509765625e+03, 5.192753791809082e+00, 0e+00, 9.822518310546875e+02, 0e+00, 2.434803247451782e-01, 7.566036987304688e+02, 0e+00, 5.024288787841797e+01, 4.993819458007812e+02, 0e+00, 3.802214660644531e+02, 2.180039398193359e+02, 0e+00, 7.209264770507813e+02, 7.746836242675781e+01, 0e+00, 8.624243530273437e+02, 2.23123062133789e+01, 0e+00, 7.7663193359375e+02, 0e+00, 0e+00, 2.554978210449219e+02, 0e+00, 0e+00, 4.25904541015625e+02, 0e+00, 0e+00, 2.265909881591797e+02, 0e+00, 1.117076778411865e+01, 7.183769226074219e+01, 0e+00, 3.068360633850098e+01, 2.165849533081055e+01, 0e+00, 4.600100158691406e+02, 0e+00, 0e+00, 2.195360809326172e+02, 0e+00, 0e+00, 2.388609252929687e+02, 0e+00, 0e+00, 2.887727355957031e+02, 0e+00, 0e+00, 1.849200988769531e+02, 0e+00, 8.829807639122009e-01, 7.646476593017579e+01, 0e+00, 2.891516021728515e+02, 2.167266502380371e+01, 0e+00, 2.039563537597656e+02, 4.729175791144371e-01, 0e+00, 7.151167724609375e+02, 0e+00, 0e+00, 7.165020629882813e+02, 0e+00, 0e+00, 6.418870849609375e+02, 0e+00, 0e+00, 4.690243713378906e+02, 0e+00, 1.368005676269531e+02, 1.704988189697266e+02, 0e+00, 6.016692504882812e+02, 8.766278991699218e+01, 0e+00, 7.883680297851563e+02, 8.377353668212891e+01, 0e+00, 4.588953796386719e+02, 7.58782958984375e+00, 0e+00, 1.019041528320313e+03, 0e+00, 0e+00, 8.795968627929688e+02, 0e+00, 3.797098693847656e+01, 6.435324829101562e+02, 0e+00, 4.688032836914062e+02, 3.743342895507812e+02, 0e+00, 8.584958251953125e+02, 1.229765441894531e+02, 0e+00] +weaBusHHorIR.relHum=[6.700000166893005e-01, 3.297499895095825e-01, 5.279999852180481e-01, 5.003750085830688e-01, 3.108928561210632e-01, 8.799999952316284e-01, 3.21999990940094e-01, 2.379999965429306e-01, 8.199999928474426e-01, 2.995000064373016e-01, 3.199999928474426e-01, 6.053184747695923e-01, 1.493303596973419e-01, 3.793750047683716e-01, 6.725714206695557e-01, 6.399999856948853e-01, 5.878928661346435e-01, 4.759999930858612e-01, 2.391785711050033e-01, 5.623529314994812e-01, 7.699999809265137e-01, 2.63609379529953e-01, 8.199999928474426e-01, 6.299999952316284e-01, 4.429999947547912e-01, 7.599999904632568e-01, 7.06480085849762e-01, 5.432968735694885e-01, 6.425999879837037e-01, 5.213437438011169e-01, 6.700000166893005e-01, 8.234779477119446e-01, 4.270937502384186e-01, 8.294400811195374e-01, 8.065312504768372e-01, 6.700000166893005e-01, 6.971651911735535e-01, 8.620624780654907e-01, 5.587500214576722e-01, 9.786875009536743e-01, 8.700000047683716e-01, 3.199999928474426e-01, 8.005071759223938e-01, 7.5625e-01, 6.716562390327454e-01, 7.099999785423279e-01, 7.073616027832031e-01, 6.617031455039978e-01, 9.814431667327881e-01, 6.524687647819519e-01, 5.799999833106995e-01, 9.284142971038818e-01, 7.164285540580749e-01, 7.551458358764649e-01, 8.33841347694397e-01, 6.100000143051147e-01, 6.235740542411804e-01, 8.264090657234192e-01, 4.504374921321869e-01, 9.674062728881836e-01, 8.700000047683716e-01, 7.221255898475647e-01, 9.325937628746033e-01, 8.700000047683716e-01, 5.46216344833374e-01, 9.300000071525574e-01, 7.673345565795898e-01, 5.123515605926514e-01, 9.974772930145264e-01, 5.901399970054626e-01, 3.700000047683716e-01, 8.489874958992004e-01, 4.863480925559998e-01, 4.370096027851105e-01, 9.705354690551757e-01, 2.39999994635582e-01, 8.199999928474426e-01, 5.908214211463928e-01, 5.681838154792785e-01, 6.830999970436096e-01, 6.700000166893005e-01, 3.987019121646881e-01, 7.936874985694885e-01, 5.159999966621399e-01, 5.864464282989502e-01, 7.699999809265137e-01, 5.480312466621399e-01, 2.783750116825104e-01, 8.686568021774292e-01, 4.839375078678131e-01, 3.600000143051147e-01, 8.700000047683716e-01, 3.906198024749756e-01, 5.383333206176758e-01, 8.457361459732056e-01, 3.00000011920929e-01, 7.153124928474426e-01, 3.245499968528748e-01, 2.420000046491623e-01, 5.60256278514862e-01, 7.599999904632568e-01] weaBusHHorIR.nOpa=[5e-01, 0e+00, 3.293181777000427e-01, 1.749999970197678e-02, 0e+00, 8.999999761581421e-01, 0e+00, 0e+00, 5e-01, 0e+00, 0e+00, 6.012053489685059e-01, 0e+00, 2.874999940395355e-02, 2.827083349227905e-01, 3.00000011920929e-01, 5e-01, 2.425000071525574e-01, 0e+00, 9.687499701976776e-02, 6.99999988079071e-01, 0e+00, 7.00000011920929e-01, 5e-01, 5.094602465629577e-01, 8.999999761581421e-01, 3.775000035762787e-01, 9.112499952316284e-01, 4.535714387893677e-01, 1.02083332836628e-01, 8.999999761581421e-01, 0e+00, 1.369999960064888e-01, 9.214999914169312e-01, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00, 1e+00, 8.999999761581421e-01, 0e+00, 8.999999761581421e-01, 0e+00, 8.999999761581421e-01, 8.999999761581421e-01, 8.999999761581421e-01, 8.999999761581421e-01, 0e+00, 2.492307662963867e-01, 0e+00, 4.812499940395355e-01, 8.999999761581421e-01, 0e+00, 0e+00, 8.999999761581421e-01, 0e+00, 6.838235259056091e-02, 2.312500029802322e-02, 1e+00, 0e+00, 8.999999761581421e-01, 8.999999761581421e-01, 8.325000047683716e-01, 1.031250014901161e-01, 1e+00, 8.999999761581421e-01, 3.00000011920929e-01, 5.849999904632568e-01, 1.292067319154739e-01, 0e+00, 7.605965971946717e-01, 8.999999761581421e-01, 3.00000011920929e-01, 9.574519157409668e-01, 0e+00, 1e+00, 3.878571331501007e-01, 3.094642996788025e-01, 1.450000017881393e-01, 5e-01, 5e-01, 8.955000162124633e-01, 8.749999850988389e-03, 8.999999761581421e-01, 8.999999761581421e-01, 3.218973159790039e-01, 0e+00, 5.5e-01, 6.562499880790711e-01, 0e+00, 4.749330401420593e-01, 2.000000029802322e-02, 3.136607050895691e-01, 1e+00, 0e+00, 8.531249910593033e-02, 0e+00, 0e+00, 3.515625e-01, 7.5e-01] weaBusHHorIR.nTot=[5e-01, 0e+00, 3.293181777000427e-01, 1.749999970197678e-02, 0e+00, 8.999999761581421e-01, 0e+00, 0e+00, 5e-01, 0e+00, 0e+00, 6.012053489685059e-01, 0e+00, 2.874999940395355e-02, 2.827083349227905e-01, 3.00000011920929e-01, 5e-01, 2.425000071525574e-01, 0e+00, 9.687499701976776e-02, 6.99999988079071e-01, 0e+00, 7.00000011920929e-01, 5e-01, 5.094602465629577e-01, 8.999999761581421e-01, 3.775000035762787e-01, 9.112499952316284e-01, 4.535714387893677e-01, 1.02083332836628e-01, 8.999999761581421e-01, 0e+00, 1.369999960064888e-01, 9.214999914169312e-01, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00, 1e+00, 8.999999761581421e-01, 0e+00, 8.999999761581421e-01, 0e+00, 8.999999761581421e-01, 8.999999761581421e-01, 8.999999761581421e-01, 8.999999761581421e-01, 0e+00, 2.492307662963867e-01, 0e+00, 4.812499940395355e-01, 8.999999761581421e-01, 0e+00, 0e+00, 8.999999761581421e-01, 0e+00, 6.838235259056091e-02, 2.312500029802322e-02, 1e+00, 0e+00, 8.999999761581421e-01, 8.999999761581421e-01, 8.325000047683716e-01, 1.031250014901161e-01, 1e+00, 8.999999761581421e-01, 3.00000011920929e-01, 5.849999904632568e-01, 1.292067319154739e-01, 0e+00, 7.605965971946717e-01, 8.999999761581421e-01, 3.00000011920929e-01, 9.574519157409668e-01, 0e+00, 1e+00, 3.878571331501007e-01, 3.094642996788025e-01, 1.450000017881393e-01, 5e-01, 5e-01, 8.955000162124633e-01, 8.749999850988389e-03, 8.999999761581421e-01, 8.999999761581421e-01, 3.218973159790039e-01, 0e+00, 5.5e-01, 6.562499880790711e-01, 0e+00, 4.749330401420593e-01, 2.000000029802322e-02, 3.136607050895691e-01, 1e+00, 0e+00, 8.531249910593033e-02, 0e+00, 0e+00, 3.515625e-01, 7.5e-01] -toDryAir.XiDry=[7.511237170547247e-03, 8.250437304377556e-03, 5.766975693404675e-03, 7.689241785556078e-03, 7.139588706195354e-03, 8.126366883516312e-03, 6.069097481667995e-03, 7.501320634037256e-03, 1.049113087356091e-02, 5.957754515111447e-03, 7.938954047858715e-03, 7.469521928578615e-03, 4.068329278379679e-03, 7.97263290733099e-03, 7.751975208520889e-03, 8.695416152477264e-03, 8.092918433248997e-03, 5.280538089573383e-03, 5.627061706036329e-03, 5.757909454405308e-03, 8.64790566265583e-03, 7.947255298495293e-03, 7.464247290045023e-03, 7.150021474808454e-03, 7.839774340391159e-03, 7.005744148045778e-03, 8.157306537032127e-03, 6.536485720425844e-03, 4.495689645409584e-03, 6.976716220378876e-03, 7.037049159407616e-03, 6.52141822502017e-03, 5.319003574550151e-03, 7.464871741831303e-03, 5.667037609964609e-03, 7.511237170547247e-03, 4.507172852754593e-03, 5.587273184210062e-03, 6.089326459914446e-03, 9.651388600468635e-03, 7.5134695507586e-03, 3.357917349785566e-03, 5.977723188698292e-03, 5.253822728991509e-03, 5.7333929464221e-03, 5.346160847693682e-03, 6.516541168093681e-03, 5.725898314267397e-03, 4.064320493489504e-03, 4.585754778236151e-03, 5.33226365223527e-03, 5.429698433727026e-03, 6.543165910989046e-03, 5.14771044254303e-03, 4.808276053518057e-03, 4.285514354705811e-03, 3.167609637603164e-03, 6.570720206946134e-03, 5.252831988036633e-03, 6.072641443461179e-03, 4.978478886187077e-03, 7.115567848086357e-03, 5.721828527748584e-03, 6.604726705700159e-03, 5.558339972048998e-03, 4.003497306257486e-03, 6.492925062775612e-03, 7.962649315595626e-03, 6.271577905863523e-03, 4.892746359109879e-03, 5.665723234415054e-03, 5.980611592531204e-03, 5.976554471999407e-03, 5.253012012690306e-03, 7.861872948706151e-03, 3.663338720798492e-03, 6.618092115968466e-03, 5.708655435591936e-03, 7.647565007209778e-03, 6.009820196777582e-03, 7.037049159407616e-03, 6.498619727790356e-03, 6.127275712788105e-03, 5.379003845155239e-03, 5.244279466569424e-03, 8.101034909486771e-03, 6.712058000266552e-03, 6.187953148037195e-03, 7.501729670912028e-03, 7.155167497694492e-03, 7.483308203518391e-03, 7.028648536652327e-03, 8.835916593670844e-03, 8.072631806135178e-03, 8.894803561270237e-03, 7.436836138367653e-03, 1.050583906471729e-02, 4.058306850492954e-03, 5.761462729424238e-03, 7.220878265798092e-03, 9.404283948242664e-03] -toDryAir.XiTotalAir=[7.455239072442055e-03, 8.182904496788979e-03, 5.733908712863922e-03, 7.6305678114295e-03, 7.088958472013474e-03, 8.060861378908157e-03, 6.032485608011484e-03, 7.445469591766595e-03, 1.03822099044919e-02, 5.922469031065703e-03, 7.876423187553883e-03, 7.414134405553341e-03, 4.051843378692866e-03, 7.909567654132843e-03, 7.692341413348913e-03, 8.620457723736763e-03, 8.027948625385761e-03, 5.252798832952976e-03, 5.595574714243412e-03, 5.724944081157446e-03, 8.573760278522968e-03, 7.884595170617103e-03, 7.408942561596632e-03, 7.09925964474678e-03, 7.778787054121494e-03, 6.957004778087139e-03, 8.091302588582039e-03, 6.49403715506196e-03, 4.475568607449532e-03, 6.928378995507955e-03, 6.987874861806631e-03, 6.479159463196993e-03, 5.290861614048481e-03, 7.409560214728117e-03, 5.635102838277816e-03, 7.455239072442055e-03, 4.486947413533926e-03, 5.556224379688501e-03, 6.052466668188572e-03, 9.559129923582077e-03, 7.457438390702009e-03, 3.346679359674454e-03, 5.942197982221842e-03, 5.226363521069288e-03, 5.700708366930485e-03, 5.31773129478097e-03, 6.474350858479738e-03, 5.693298671394587e-03, 4.047868493944407e-03, 4.564820975065231e-03, 5.303981248289347e-03, 5.400372389703989e-03, 6.500631012022496e-03, 5.121339857578277e-03, 4.78526558727026e-03, 4.267227370291948e-03, 3.157603368163109e-03, 6.527827214449644e-03, 5.22538386285305e-03, 6.035987101495266e-03, 4.953816533088684e-03, 7.065294217318297e-03, 5.689275544136762e-03, 6.561389937996864e-03, 5.527615081518888e-03, 3.987533040344715e-03, 6.451035011559724e-03, 7.899738289415837e-03, 6.23248927295208e-03, 4.86892219632864e-03, 5.633803550153971e-03, 5.94503553584218e-03, 5.941030476242304e-03, 5.225561372935772e-03, 7.800542935729027e-03, 3.649967722594738e-03, 6.574581004679203e-03, 5.67625155672431e-03, 7.58952358737588e-03, 5.973913799971342e-03, 6.987874861806631e-03, 6.456660013645888e-03, 6.089960876852274e-03, 5.350223742425442e-03, 5.215214937925339e-03, 8.035935461521149e-03, 6.667304039001465e-03, 6.149897538125515e-03, 7.445872481912375e-03, 7.104327250272035e-03, 7.427724543958902e-03, 6.979591399431229e-03, 8.75852033495903e-03, 8.007984794676303e-03, 8.816376700997353e-03, 7.381937932223082e-03, 1.039661411195993e-02, 4.041903652250767e-03, 5.72845172137022e-03, 7.16910669580102e-03, 9.316666983067989e-03] -weaBusHHorIR.TBlaSky=[2.774482727050781e+02, 2.864014892578125e+02, 2.753264282226563e+02, 2.786832946777344e+02, 2.845857971191406e+02, 2.788821716308594e+02, 2.803601684570312e+02, 2.89832763671875e+02, 2.804942626953125e+02, 2.815319580078125e+02, 2.861166381835938e+02, 2.796936706542969e+02, 2.853663879394531e+02, 2.837087158203125e+02, 2.768556335449219e+02, 2.796917114257812e+02, 2.808314453125e+02, 2.744926330566406e+02, 2.841561767578125e+02, 2.724721374511719e+02, 2.792878112792969e+02, 2.892642456054688e+02, 2.760230346679688e+02, 2.774884094238281e+02, 2.847390502929687e+02, 2.782703552246094e+02, 2.77383935546875e+02, 2.824731567382813e+02, 2.687604675292969e+02, 2.769425659179688e+02, 2.802942810058594e+02, 2.679376159667969e+02, 2.75515673828125e+02, 2.7865166015625e+02, 2.659674194335938e+02, 2.734399719238281e+02, 2.640146240234375e+02, 2.648488830566406e+02, 2.823510314941406e+02, 2.823199279785156e+02, 2.776544799804688e+02, 2.698672424316406e+02, 2.747576965332031e+02, 2.656628112792969e+02, 2.765128845214844e+02, 2.745119018554688e+02, 2.780655212402344e+02, 2.766700317382812e+02, 2.572012878417969e+02, 2.67506396484375e+02, 2.694728393554688e+02, 2.670901977539062e+02, 2.779445251464844e+02, 2.652924926757813e+02, 2.627353454589844e+02, 2.727907409667969e+02, 2.596892822265625e+02, 2.686926574707031e+02, 2.731657897949219e+02, 2.743378051757812e+02, 2.626867370605469e+02, 2.792841918945313e+02, 2.717207763671875e+02, 2.745351867675781e+02, 2.720713317871094e+02, 2.676519775390625e+02, 2.767804138183594e+02, 2.815837097167969e+02, 2.694357238769531e+02, 2.68680517578125e+02, 2.772416076660156e+02, 2.725820434570313e+02, 2.820179748535156e+02, 2.763632995605469e+02, 2.778330749511719e+02, 2.757818298339844e+02, 2.780703063964844e+02, 2.737402954101562e+02, 2.792234313964844e+02, 2.707841857910156e+02, 2.762012939453125e+02, 2.828767517089844e+02, 2.752533996582031e+02, 2.71387890625e+02, 2.860335266113281e+02, 2.8069384765625e+02, 2.775168884277344e+02, 2.834344177246094e+02, 2.741932556152344e+02, 2.836119384765625e+02, 2.830561218261719e+02, 2.730257141113281e+02, 2.85301953125e+02, 2.812131530761719e+02, 2.832021179199219e+02, 2.8592822265625e+02, 2.79681689453125e+02, 2.731072937011719e+02, 2.843579833984375e+02, 2.787737426757812e+02, 2.8119091796875e+02] +toDryAir.XiDry=[7.511237170547247e-03, 8.250437304377556e-03, 5.766975693404675e-03, 7.689241785556078e-03, 7.139588706195354e-03, 8.126366883516312e-03, 6.069097481667995e-03, 7.501320634037256e-03, 1.049113087356091e-02, 5.957754515111447e-03, 7.938954047858715e-03, 7.256187871098519e-03, 4.068329278379679e-03, 8.011229149997235e-03, 7.751975208520889e-03, 8.695416152477264e-03, 8.092918433248997e-03, 5.280538089573383e-03, 5.627061706036329e-03, 5.757909454405308e-03, 8.64790566265583e-03, 7.947255298495293e-03, 7.464247290045023e-03, 7.150021474808454e-03, 7.839774340391159e-03, 7.005744148045778e-03, 8.157306537032127e-03, 6.536485720425844e-03, 4.495689645409584e-03, 6.976716220378876e-03, 7.037049159407616e-03, 6.52141822502017e-03, 5.319003574550151e-03, 7.464871741831303e-03, 5.667037609964609e-03, 7.511237170547247e-03, 4.507172852754593e-03, 5.587273184210062e-03, 6.089326459914446e-03, 9.651388600468635e-03, 7.5134695507586e-03, 3.357917349785566e-03, 5.977723188698292e-03, 5.253822728991509e-03, 5.7333929464221e-03, 5.346160847693682e-03, 6.516541168093681e-03, 5.725898314267397e-03, 4.064320493489504e-03, 4.585754778236151e-03, 5.33226365223527e-03, 5.429698433727026e-03, 6.543165910989046e-03, 5.14771044254303e-03, 4.808276053518057e-03, 4.285514354705811e-03, 3.167609637603164e-03, 6.570720206946134e-03, 5.252831988036633e-03, 6.072641443461179e-03, 4.978478886187077e-03, 7.115567848086357e-03, 5.721828527748584e-03, 6.604726705700159e-03, 5.558339972048998e-03, 4.003497306257486e-03, 6.492925062775612e-03, 7.962649315595626e-03, 6.271577905863523e-03, 4.892746359109879e-03, 5.665723234415054e-03, 5.980611592531204e-03, 5.976554471999407e-03, 5.253012012690306e-03, 7.861872948706151e-03, 3.663338720798492e-03, 6.618092115968466e-03, 5.708655435591936e-03, 7.647565007209778e-03, 6.009820196777582e-03, 7.037049159407616e-03, 6.498619727790356e-03, 6.127275712788105e-03, 5.379003845155239e-03, 8.563971705734729e-03, 8.101034909486771e-03, 6.712058000266552e-03, 6.187953148037195e-03, 7.501729670912028e-03, 7.155167497694492e-03, 7.483308203518391e-03, 7.028648536652327e-03, 8.835916593670844e-03, 8.072631806135178e-03, 8.894803561270237e-03, 7.436836138367653e-03, 1.050302069634199e-02, 4.058306850492954e-03, 5.761462729424238e-03, 7.220878265798092e-03, 9.404283948242664e-03] +toDryAir.XiTotalAir=[7.455239072442055e-03, 8.182904496788979e-03, 5.733908712863922e-03, 7.6305678114295e-03, 7.088958472013474e-03, 8.060861378908157e-03, 6.032485608011484e-03, 7.445469591766595e-03, 1.03822099044919e-02, 5.922469031065703e-03, 7.876423187553883e-03, 7.203910872340203e-03, 4.051843378692866e-03, 7.947551459074021e-03, 7.692341413348913e-03, 8.620457723736763e-03, 8.027948625385761e-03, 5.252798832952976e-03, 5.595574714243412e-03, 5.724944081157446e-03, 8.573760278522968e-03, 7.884595170617103e-03, 7.408942561596632e-03, 7.09925964474678e-03, 7.778787054121494e-03, 6.957004778087139e-03, 8.091302588582039e-03, 6.49403715506196e-03, 4.475568607449532e-03, 6.928378995507955e-03, 6.987874861806631e-03, 6.479159463196993e-03, 5.290861614048481e-03, 7.409560214728117e-03, 5.635102838277816e-03, 7.455239072442055e-03, 4.486947413533926e-03, 5.556224379688501e-03, 6.052466668188572e-03, 9.559129923582077e-03, 7.457438390702009e-03, 3.346679359674454e-03, 5.942197982221842e-03, 5.226363521069288e-03, 5.700708366930485e-03, 5.31773129478097e-03, 6.474350858479738e-03, 5.693298671394587e-03, 4.047868493944407e-03, 4.564820975065231e-03, 5.303981248289347e-03, 5.400372389703989e-03, 6.500631012022496e-03, 5.121339857578277e-03, 4.78526558727026e-03, 4.267227370291948e-03, 3.157603368163109e-03, 6.527827214449644e-03, 5.22538386285305e-03, 6.035987101495266e-03, 4.953816533088684e-03, 7.065294217318297e-03, 5.689275544136762e-03, 6.561389937996864e-03, 5.527615081518888e-03, 3.987533040344715e-03, 6.451035011559724e-03, 7.899738289415837e-03, 6.23248927295208e-03, 4.86892219632864e-03, 5.633803550153971e-03, 5.94503553584218e-03, 5.941030476242304e-03, 5.225561372935772e-03, 7.800542935729027e-03, 3.649967722594738e-03, 6.574581004679203e-03, 5.67625155672431e-03, 7.58952358737588e-03, 5.973913799971342e-03, 6.987874861806631e-03, 6.456660013645888e-03, 6.089960876852274e-03, 5.350223742425442e-03, 8.49125236272812e-03, 8.035935461521149e-03, 6.667304039001465e-03, 6.149897538125515e-03, 7.445872481912375e-03, 7.104327250272035e-03, 7.427724543958902e-03, 6.979591399431229e-03, 8.75852033495903e-03, 8.007984794676303e-03, 8.816376700997353e-03, 7.381937932223082e-03, 1.039385385811329e-02, 4.041903652250767e-03, 5.72845172137022e-03, 7.16910669580102e-03, 9.316666983067989e-03] +weaBusHHorIR.TBlaSky=[2.774481811523438e+02, 2.864013793945313e+02, 2.753263366699219e+02, 2.78683203125e+02, 2.845857055664063e+02, 2.78882080078125e+02, 2.803600769042969e+02, 2.898326477050781e+02, 2.804941711425781e+02, 2.815318664550781e+02, 2.861165466308594e+02, 2.796935791015625e+02, 2.853662963867188e+02, 2.837086242675781e+02, 2.768555419921875e+02, 2.796916198730469e+02, 2.808313537597656e+02, 2.744925415039062e+02, 2.841560852050781e+02, 2.724720458984375e+02, 2.792877197265625e+02, 2.892641357421875e+02, 2.760229431152344e+02, 2.774883178710937e+02, 2.847389587402344e+02, 2.78270263671875e+02, 2.773838439941406e+02, 2.824730651855469e+02, 2.687603759765625e+02, 2.769424743652344e+02, 2.80294189453125e+02, 2.679375244140625e+02, 2.755155822753906e+02, 2.786515686035156e+02, 2.659673278808594e+02, 2.734399108886719e+02, 2.6401455078125e+02, 2.648487915039062e+02, 2.823509399414062e+02, 2.823198364257813e+02, 2.776543884277344e+02, 2.698671630859375e+02, 2.747576049804687e+02, 2.656627197265625e+02, 2.7651279296875e+02, 2.745118103027344e+02, 2.780654296875e+02, 2.766699401855469e+02, 2.572012023925781e+02, 2.675063171386719e+02, 2.694727478027344e+02, 2.670901062011719e+02, 2.7794443359375e+02, 2.652924255371094e+02, 2.627352661132812e+02, 2.727906494140625e+02, 2.596891906738281e+02, 2.686925659179688e+02, 2.731656982421875e+02, 2.743377136230469e+02, 2.626866455078125e+02, 2.792841003417969e+02, 2.717206848144531e+02, 2.745351196289063e+02, 2.72071240234375e+02, 2.676518859863281e+02, 2.76780322265625e+02, 2.815836181640625e+02, 2.694356567382812e+02, 2.686804443359375e+02, 2.772415161132812e+02, 2.725819519042969e+02, 2.820178833007812e+02, 2.763632080078125e+02, 2.778329833984375e+02, 2.7578173828125e+02, 2.7807021484375e+02, 2.737402038574219e+02, 2.7922333984375e+02, 2.707840942382812e+02, 2.762012023925781e+02, 2.8287666015625e+02, 2.752533081054688e+02, 2.713877990722656e+02, 2.860334350585937e+02, 2.806937561035156e+02, 2.77516796875e+02, 2.83434326171875e+02, 2.741931701660156e+02, 2.836118469238281e+02, 2.830560302734375e+02, 2.730256225585937e+02, 2.853018615722656e+02, 2.812130615234375e+02, 2.832020263671875e+02, 2.859281311035156e+02, 2.796815979003906e+02, 2.731072021484375e+02, 2.843578918457031e+02, 2.787736511230469e+02, 2.811908264160156e+02] weaBusHHorIR.TDewPoi=[2.821499938964844e+02, 2.836257629394531e+02, 2.781531921386719e+02, 2.825610778808594e+02, 2.813499938964844e+02, 2.831499938964844e+02, 2.791774963378906e+02, 2.821499938964844e+02, 2.871499938964844e+02, 2.78870361328125e+02, 2.831499938964844e+02, 2.815499938964844e+02, 2.739499938964844e+02, 2.828611938476562e+02, 2.824821411132813e+02, 2.841499938964844e+02, 2.831925048828125e+02, 2.770558044433594e+02, 2.781499938964844e+02, 2.781008178710937e+02, 2.841499938964844e+02, 2.831499938964844e+02, 2.821181335449219e+02, 2.812716003417969e+02, 2.829595764160156e+02, 2.811499938964844e+02, 2.832343627929687e+02, 2.801151794433594e+02, 2.749057922363281e+02, 2.811183959960937e+02, 2.811499938964844e+02, 2.7979951171875e+02, 2.771833190917969e+02, 2.820689819335938e+02, 2.780124389648437e+02, 2.821499938964844e+02, 2.747455078125e+02, 2.778705017089844e+02, 2.791032531738281e+02, 2.857566650390625e+02, 2.821499938964844e+02, 2.710522399902344e+02, 2.789437438964844e+02, 2.769781188964844e+02, 2.782168701171875e+02, 2.771499938964844e+02, 2.800945922851562e+02, 2.782396423339844e+02, 2.734399963378906e+02, 2.750914855957031e+02, 2.771499938964844e+02, 2.775276489257812e+02, 2.801999938964844e+02, 2.767863037109375e+02, 2.756844909667969e+02, 2.741499938964844e+02, 2.704306823730469e+02, 2.800004577636719e+02, 2.771499938964844e+02, 2.790452758789062e+02, 2.761499938964844e+02, 2.812303955078125e+02, 2.782180603027344e+02, 2.801499938964844e+02, 2.777499938964844e+02, 2.731499938964844e+02, 2.798151611328125e+02, 2.829301452636719e+02, 2.794300109863281e+02, 2.758557250976563e+02, 2.781499938964844e+02, 2.788138244628906e+02, 2.786571472167969e+02, 2.771198364257813e+02, 2.827856750488281e+02, 2.721499938964844e+02, 2.80138916015625e+02, 2.781840515136719e+02, 2.823274963378906e+02, 2.78741259765625e+02, 2.811499938964844e+02, 2.802457641601562e+02, 2.791499938964844e+02, 2.773977233886719e+02, 2.840800048828125e+02, 2.831499938964844e+02, 2.804304626464844e+02, 2.792392272949219e+02, 2.821499938964844e+02, 2.814088195800781e+02, 2.821499938964844e+02, 2.811499938964844e+02, 2.844357116699219e+02, 2.830249938964844e+02, 2.845499938964844e+02, 2.821499938964844e+02, 2.871499938964844e+02, 2.732249938964844e+02, 2.782937438964844e+02, 2.815359313964844e+02, 2.856499938964844e+02] -weaBusHHorIR.TWetBul=[2.846631774902344e+02, 2.901983825683594e+02, 2.827235778808594e+02, 2.868235229492187e+02, 2.887741149902344e+02, 2.840380554199219e+02, 2.86604443359375e+02, 2.90941162109375e+02, 2.881927185058594e+02, 2.868152526855469e+02, 2.898948974609375e+02, 2.850485290527344e+02, 2.871323791503906e+02, 2.8893349609375e+02, 2.850909118652344e+02, 2.8696728515625e+02, 2.864959167480469e+02, 2.823116882324219e+02, 2.876060668945312e+02, 2.823233825683594e+02, 2.857659606933594e+02, 2.910324890136719e+02, 2.832798278808594e+02, 2.843853942871094e+02, 2.878251220703125e+02, 2.828818969726562e+02, 2.854659851074219e+02, 2.841601867675781e+02, 2.781728759765625e+02, 2.852803100585937e+02, 2.837704162597656e+02, 2.813387023925781e+02, 2.831494201660156e+02, 2.832844299316406e+02, 2.795828430175781e+02, 2.846631774902344e+02, 2.775238647460938e+02, 2.788834716796875e+02, 2.830511291503906e+02, 2.859020263671875e+02, 2.829820861816406e+02, 2.797483825683594e+02, 2.803581481933594e+02, 2.790624877929687e+02, 2.810391174316406e+02, 2.796606140136719e+02, 2.823635009765625e+02, 2.810978393554688e+02, 2.735708984375e+02, 2.783110290527344e+02, 2.810585021972656e+02, 2.779244445800781e+02, 2.823460876464844e+02, 2.788609924316406e+02, 2.771010070800781e+02, 2.778792724609375e+02, 2.738777465820312e+02, 2.814344360351562e+02, 2.826789245605469e+02, 2.793057983398438e+02, 2.772108764648438e+02, 2.834286376953125e+02, 2.786575988769531e+02, 2.811472473144531e+02, 2.820982238769531e+02, 2.737251281738281e+02, 2.817551574707031e+02, 2.871273254394531e+02, 2.795110656738281e+02, 2.799127197265625e+02, 2.848731689453125e+02, 2.799179809570313e+02, 2.837398986816406e+02, 2.8289580078125e+02, 2.82993408203125e+02, 2.828113403320312e+02, 2.815725891113281e+02, 2.818303283691406e+02, 2.859638366699219e+02, 2.815805969238281e+02, 2.837704162597656e+02, 2.860756469726563e+02, 2.807459655761719e+02, 2.820561462402344e+02, 2.840917724609375e+02, 2.848373413085938e+02, 2.844437744140625e+02, 2.877490173339844e+02, 2.829697570800781e+02, 2.861020385742187e+02, 2.884639587402344e+02, 2.820245483398438e+02, 2.900866516113281e+02, 2.870034973144531e+02, 2.855960266113281e+02, 2.894786682128906e+02, 2.889893310546875e+02, 2.818240112304687e+02, 2.877991821289062e+02, 2.852683349609375e+02, 2.8704541015625e+02] +weaBusHHorIR.TWetBul=[2.846631774902344e+02, 2.901983825683594e+02, 2.827235778808594e+02, 2.868235229492187e+02, 2.887741149902344e+02, 2.840380554199219e+02, 2.86604443359375e+02, 2.90941162109375e+02, 2.881927185058594e+02, 2.868152526855469e+02, 2.898948974609375e+02, 2.84839111328125e+02, 2.871323791503906e+02, 2.88966259765625e+02, 2.850909118652344e+02, 2.8696728515625e+02, 2.864959167480469e+02, 2.823116882324219e+02, 2.876060668945312e+02, 2.823233825683594e+02, 2.857659606933594e+02, 2.910324890136719e+02, 2.832798278808594e+02, 2.843853942871094e+02, 2.878251220703125e+02, 2.828818969726562e+02, 2.854659851074219e+02, 2.841601867675781e+02, 2.781728759765625e+02, 2.852803100585937e+02, 2.837704162597656e+02, 2.813387023925781e+02, 2.831494201660156e+02, 2.832844299316406e+02, 2.795828430175781e+02, 2.846631774902344e+02, 2.775238647460938e+02, 2.788834716796875e+02, 2.830511291503906e+02, 2.859020263671875e+02, 2.829820861816406e+02, 2.797483825683594e+02, 2.803581481933594e+02, 2.790624877929687e+02, 2.810391174316406e+02, 2.796606140136719e+02, 2.823635009765625e+02, 2.810978393554688e+02, 2.735708984375e+02, 2.783110290527344e+02, 2.810585021972656e+02, 2.779244445800781e+02, 2.823460876464844e+02, 2.788609924316406e+02, 2.771010070800781e+02, 2.778792724609375e+02, 2.738777465820312e+02, 2.814344360351562e+02, 2.826789245605469e+02, 2.793057983398438e+02, 2.772108764648438e+02, 2.834286376953125e+02, 2.786575988769531e+02, 2.811472473144531e+02, 2.820982238769531e+02, 2.737251281738281e+02, 2.817551574707031e+02, 2.871273254394531e+02, 2.795110656738281e+02, 2.799127197265625e+02, 2.848731689453125e+02, 2.799179809570313e+02, 2.837398986816406e+02, 2.8289580078125e+02, 2.82993408203125e+02, 2.828113403320312e+02, 2.815725891113281e+02, 2.818303283691406e+02, 2.859638366699219e+02, 2.815805969238281e+02, 2.837704162597656e+02, 2.860756469726563e+02, 2.807459655761719e+02, 2.820561462402344e+02, 2.873061401367187e+02, 2.848373413085938e+02, 2.844437744140625e+02, 2.877490173339844e+02, 2.829697570800781e+02, 2.861020385742187e+02, 2.884639587402344e+02, 2.820245483398438e+02, 2.900866516113281e+02, 2.870034973144531e+02, 2.855960266113281e+02, 2.894786682128906e+02, 2.889869750976562e+02, 2.818240112304687e+02, 2.877991821289062e+02, 2.852683349609375e+02, 2.8704541015625e+02] weaBusTDryBulTDewPoiOpa.TBlaSky=[2.774927978515625e+02, 2.86335107421875e+02, 2.753185852050781e+02, 2.786388732910156e+02, 2.844318420410156e+02, 2.788121337890625e+02, 2.807845703125e+02, 2.898383117675781e+02, 2.805665893554688e+02, 2.815357482910156e+02, 2.860893249511719e+02, 2.790623596191406e+02, 2.854627624511719e+02, 2.838036071777344e+02, 2.768212951660156e+02, 2.797642211914062e+02, 2.808397216796875e+02, 2.747578979492188e+02, 2.840840637207031e+02, 2.725804504394531e+02, 2.793742980957031e+02, 2.893192993164063e+02, 2.758501647949219e+02, 2.774814636230469e+02, 2.848003173828125e+02, 2.783475036621094e+02, 2.775209716796875e+02, 2.823371459960937e+02, 2.688404418945312e+02, 2.772445861816406e+02, 2.802998046875e+02, 2.679684265136719e+02, 2.756614562988281e+02, 2.786572998046875e+02, 2.659457092285156e+02, 2.735120544433594e+02, 2.64022119140625e+02, 2.647700805664062e+02, 2.823702392578125e+02, 2.823066162109375e+02, 2.776035461425781e+02, 2.700159484863281e+02, 2.747986022949219e+02, 2.656067443847656e+02, 2.766034973144531e+02, 2.744826049804688e+02, 2.7810361328125e+02, 2.767817993164062e+02, 2.578392944335938e+02, 2.677123962402344e+02, 2.695185241699219e+02, 2.669999389648438e+02, 2.780117736816406e+02, 2.653631530761719e+02, 2.627209106445313e+02, 2.727945861816406e+02, 2.5978046875e+02, 2.689762023925781e+02, 2.733824401855469e+02, 2.743052856445312e+02, 2.626745300292969e+02, 2.793526733398438e+02, 2.718235656738281e+02, 2.742672058105469e+02, 2.724827758789062e+02, 2.676291198730469e+02, 2.767789489746094e+02, 2.815818359375e+02, 2.690838134765625e+02, 2.693532043457031e+02, 2.773185119628906e+02, 2.720585998535156e+02, 2.8213759765625e+02, 2.764083374023438e+02, 2.779253234863281e+02, 2.758648071289062e+02, 2.780927001953125e+02, 2.738355773925781e+02, 2.792979431152344e+02, 2.709819152832031e+02, 2.762984924316406e+02, 2.828128601074219e+02, 2.752378845214844e+02, 2.7159755859375e+02, 2.860545715332031e+02, 2.807676696777344e+02, 2.77497802734375e+02, 2.834196655273437e+02, 2.739290283203125e+02, 2.8276435546875e+02, 2.830040588378906e+02, 2.723445495605469e+02, 2.851772521972656e+02, 2.811213623046875e+02, 2.830364868164062e+02, 2.858516845703125e+02, 2.7976279296875e+02, 2.731151123046875e+02, 2.843065979003906e+02, 2.786834045410156e+02, 2.816863708496094e+02] weaBusHHorIR.pAtm=[9.5815e+04, 9.606608437500001e+04, 9.583375e+04, 9.601111874999999e+04, 9.6022765625e+04, 9.5759e+04, 9.598786562500001e+04, 9.611629375e+04, 9.5852e+04, 9.582546875e+04, 9.6046e+04, 9.582180624999999e+04, 9.599405624999999e+04, 9.5752125e+04, 9.593507656250001e+04, 9.587e+04, 9.58517140625e+04, 9.583843124999999e+04, 9.603178125e+04, 9.61236125e+04, 9.5815e+04, 9.61028e+04, 9.57922375e+04, 9.581874374999999e+04, 9.609089218749999e+04, 9.5759e+04, 9.57791453125e+04, 9.587908125e+04, 9.611658749999999e+04, 9.590901875e+04, 9.5797e+04, 9.56887296875e+04, 9.590175e+04, 9.62849375e+04, 9.5953640625e+04, 9.5815e+04, 9.5606871875e+04, 9.575728750000001e+04, 9.586733125e+04, 9.569011874999999e+04, 9.574e+04, 9.57441765625e+04, 9.58894875e+04, 9.627320625e+04, 9.607011562500001e+04, 9.5702e+04, 9.576607968749999e+04, 9.589535625e+04, 9.608439999999999e+04, 9.60305078125e+04, 9.5759e+04, 9.5578278125e+04, 9.584285000000001e+04, 9.66976875e+04, 9.594673281250001e+04, 9.5683e+04, 9.5552546875e+04, 9.577833749999999e+04, 9.618543124999999e+04, 9.6238825e+04, 9.5624e+04, 9.574630624999999e+04, 9.578864375e+04, 9.570400625000001e+04, 9.633373125e+04, 9.5544e+04, 9.56648640625e+04, 9.593695e+04, 9.59782e+04, 9.63066015625e+04, 9.5906e+04, 9.5671203125e+04, 9.58996375e+04, 9.624475625000001e+04, 9.614872812499999e+04, 9.5906e+04, 9.568301406250001e+04, 9.58489375e+04, 9.59724875e+04, 9.62406828125e+04, 9.5797e+04, 9.59246796875e+04, 9.580870625e+04, 9.624015625e+04, 9.60281359375e+04, 9.5797e+04, 9.58397234375e+04, 9.602429375e+04, 9.574e+04, 9.606770468749999e+04, 9.5994e+04, 9.56890578125e+04, 9.601872500000001e+04, 9.58988e+04, 9.5796528125e+04, 9.6046e+04, 9.589160000000001e+04, 9.584847500000001e+04, 9.60350625e+04, 9.58557609375e+04, 9.5843e+04] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_Validation_BESTEST_WD400.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_Validation_BESTEST_WD400.txt index 2cceeed6c6..8fa7e4ffde 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_Validation_BESTEST_WD400.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_Validation_BESTEST_WD400.txt @@ -1,4 +1,4 @@ -last-generated=2020-08-24 +last-generated=2022-05-18 statistics-simulation= { "linear": " ", @@ -16,22 +16,22 @@ azi045til90.H=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e azi270til30.H=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 2.583207893371582e+01, 0e+00, 0e+00, 7.0199800491333e+00, 0e+00, 2.565784931182861e+00, 3.383006820678711e+01, 0e+00, 2.660252494812012e+01, 1.554694595336914e+01, 0e+00, 5.341463470458984e+01, 1.003144207000732e+01, 0e+00, 2.327098297119141e+02, 5.269038677215576e-01, 0e+00, 2.859148010253906e+02, 2.637787532806397e+00, 2.816481399536133e+01, 3.397961120605469e+02, 7.497423291206359e-02, 1.162994506835937e+02, 2.524908874511719e+02, 0e+00, 8.393382263183594e+01, 6.50040966796875e+02, 9.271813631057739e-01, 1.882843353271484e+02, 2.155258911132813e+02, 2.20295352935791e+01, 3.163932556152344e+02, 1.500960235595703e+02, 3.73494369506836e+01, 4.551719848632812e+02, 1.974194641113281e+02, 5.485240097045899e+01, 1.655306365966797e+02, 5.915835723876953e+01, 1.109493087768555e+02, 2.181378936767578e+02, 2.955541229248047e+01, 1.024696594238281e+02, 5.4717568359375e+02, 1.452989120483398e+01, 1.657699279785156e+02, 2.387885833740234e+02, 1.212916493415833e+00, 1.583118011474609e+02, 1.259283355712891e+02, 2.624098360538483e-01, 2.464492492675781e+02, 2.978888488769531e+02, 5.248196363449097e-01, 1.982531646728516e+02, 1.074354648590088e+01, 2.348567962646484e+00, 1.435732940673828e+02, 0e+00, 3.571950674057007e+00, 9.627053070068359e+01, 0e+00, 1.247321395874024e+01, 1.111617141723633e+02, 0e+00, 1.688752937316895e+01, 3.686252517700196e+01, 0e+00, 2.514284324645996e+01, 7.890709638595581e-01, 0e+00, 3.471533432006836e+01, 0e+00, 0e+00, 2.331219711303711e+01, 0e+00, 0e+00, 2.832336351275444e-03, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] azi000til30.H=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 4.870060348510742e+01, 0e+00, 0e+00, 7.221423149108887e+00, 0e+00, 4.427241802215576e+00, 2.440638084411621e+01, 0e+00, 2.428734680175781e+02, 6.707824611663819e+00, 0e+00, 4.674642883300781e+02, 1.469494995474815e+00, 0e+00, 5.226761474609375e+02, 0e+00, 0e+00, 3.702587463378906e+02, 4.503082275390625e-01, 2.816481399536133e+01, 3.73416015625e+02, 7.497423291206359e-02, 1.165549682617188e+02, 2.524980285644531e+02, 0e+00, 3.798057861328125e+02, 5.121121032714843e+02, 9.271813631057739e-01, 1.934925445556641e+02, 2.151331359863281e+02, 2.20295352935791e+01, 3.169101501464844e+02, 1.495482666015625e+02, 3.73494369506836e+01, 8.304154907226563e+02, 8.017118835449219e+01, 5.485240097045899e+01, 1.658666198730469e+02, 5.915835723876953e+01, 1.159270797729492e+02, 2.208045196533203e+02, 2.674011726379394e+01, 2.462366516113281e+02, 5.294206909179687e+02, 1.452989120483398e+01, 1.675243835449219e+02, 2.209029754638672e+02, 1.212916493415833e+00, 4.71267041015625e+02, 1.230594253540039e+02, 2.624098360538483e-01, 3.982476501464844e+02, 8.559529266357421e+01, 5.248196363449097e-01, 1.987803466796875e+02, 1.057236671447754e+01, 2.348567962646484e+00, 1.450342346191406e+02, 0e+00, 3.571950674057007e+00, 9.700550842285156e+01, 0e+00, 1.247321395874024e+01, 1.112427383422852e+02, 0e+00, 1.814749336242676e+01, 3.660827560424805e+01, 0e+00, 2.793346290588379e+01, 7.890709638595581e-01, 0e+00, 3.471533432006836e+01, 0e+00, 0e+00, 4.493748016357422e+01, 0e+00, 0e+00, 3.899719655513764e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] azi090til30.H=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 5.753578186035156e+00, 0e+00, 0e+00, 5.42136173248291e+00, 0e+00, 6.471004486083984e+00, 1.090897846221924e+01, 0e+00, 2.571468627929688e+02, 4.377613353729248e+00, 0e+00, 3.592868591308594e+02, 1.469494995474815e+00, 0e+00, 3.479911804199219e+02, 0e+00, 0e+00, 2.691976745605469e+02, 4.503082275390625e-01, 1.340064239501953e+02, 2.855705871582031e+02, 7.497423291206359e-02, 1.172139739990234e+02, 2.51987646484375e+02, 0e+00, 6.0069482421875e+02, 1.083407592773438e+02, 2.080930900573731e+00, 1.946990112304688e+02, 2.147220855712891e+02, 2.20295352935791e+01, 3.16854248046875e+02, 1.493398254394531e+02, 1.427697265625e+02, 6.362583251953125e+02, 7.954512786865234e+01, 5.593448867797851e+01, 1.654639343261719e+02, 5.915835723876953e+01, 1.448668334960938e+02, 2.122643280029297e+02, 2.674011726379394e+01, 4.685384887695312e+02, 2.2054091796875e+02, 1.452989120483398e+01, 1.685941009521484e+02, 1.757461334228516e+02, 1.212916493415833e+00, 5.28644580078125e+02, 1.205982528686523e+02, 1.03196132183075e+00, 3.727777221679688e+02, 4.814345397949219e+01, 5.248196363449097e-01, 1.984818328857422e+02, 1.057236671447754e+01, 2.691368532180786e+00, 1.433828277587891e+02, 0e+00, 3.571950674057007e+00, 9.527870178222656e+01, 0e+00, 1.247321395874024e+01, 1.106056457519531e+02, 0e+00, 2.010636711120605e+01, 3.578299407958984e+01, 0e+00, 2.87031078338623e+01, 7.890709638595581e-01, 0e+00, 3.471533432006836e+01, 0e+00, 0e+00, 3.12081901550293e+01, 0e+00, 0e+00, 6.122049689292908e-03, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -azi000til00.HPer=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.62697172164917e+00, 0e+00, 0e+00, 5.914709854125976e+00, 0e+00, 2.75e+00, 1.157726440429687e+01, 0e+00, 8.608892974853515e+01, 4.691911792755127e+00, 0e+00, 2.200659912109375e+02, 1.571339330077171e+00, 0e+00, 3.241648498535156e+02, 0e+00, 0e+00, 3.038093139648437e+02, 4.826388835906983e-01, 4.495548782348633e+01, 3.402049865722656e+02, 8.035714030265807e-02, 1.249601257324219e+02, 2.703772644042969e+02, 0e+00, 3.425538635253906e+02, 4.246871276855469e+02, 9.9375e-01, 2.055581085205078e+02, 2.305436370849609e+02, 2.328982543945312e+01, 3.393958251953125e+02, 1.604012359619141e+02, 7.464731903076172e+01, 6.221061889648438e+02, 1.326834411621094e+02, 5.920130386352539e+01, 1.774275787353516e+02, 6.340573425292969e+01, 1.335516296386719e+02, 2.314160003662109e+02, 2.96102725982666e+01, 2.878194030761719e+02, 4.336459716796875e+02, 1.557539253234863e+01, 1.792265472412109e+02, 2.247476623535156e+02, 1.3e+00, 3.865898681640625e+02, 1.316735290527344e+02, 2.8125e-01, 3.411380859375e+02, 1.281708618164062e+02, 5.624999880790711e-01, 2.126445465087891e+02, 1.134805107116699e+01, 2.5171875e+00, 1.538893341064453e+02, 0e+00, 3.82840518951416e+00, 1.027231826782227e+02, 0e+00, 1.288854103088379e+01, 1.188063293457031e+02, 0e+00, 1.799499702453613e+01, 3.858236770629883e+01, 0e+00, 2.678555335998535e+01, 8.457236766815186e-01, 0e+00, 3.564578323364258e+01, 0e+00, 0e+00, 2.553933601379395e+01, 0e+00, 0e+00, 2.957108826376498e-03, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -azi000til90.HPer=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 8.610418701171875e+01, 0e+00, 0e+00, 5.824304008483887e+00, 0e+00, 5.366178035736084e+00, 3.489494857788086e+01, 0e+00, 3.719545349121094e+02, 7.086260604858399e+00, 0e+00, 6.12691943359375e+02, 6.942441835999489e-01, 0e+00, 5.984509155273438e+02, 0e+00, 0e+00, 3.647729370117187e+02, 2.100147485733032e-01, 1.256068630218506e+01, 3.329458312988281e+02, 3.253276646137238e-02, 4.670852432250977e+01, 1.585946502685547e+02, 0e+00, 2.162479553222656e+02, 3.629291748046875e+02, 4.34682285785675e-01, 1.000360610961914e+02, 9.492339935302735e+01, 9.541833877563477e+00, 1.852831848144531e+02, 6.077499237060547e+01, 1.706522979736328e+01, 6.858463623046875e+02, 3.520112228393555e+01, 2.434733238220215e+01, 8.341696777343751e+01, 2.556607322692871e+01, 4.679916305541992e+01, 1.185317077636719e+02, 1.199013919830322e+01, 4.731575241088867e+01, 3.976825378417969e+02, 6.534662246704102e+00, 7.881881713867188e+01, 1.220577621459961e+02, 5.306431174278259e-01, 3.509270568847656e+02, 5.480290603637695e+01, 1.225188001990318e-01, 3.307436950683594e+02, 2.321244354248047e+01, 2.285579577088356e-01, 1.222119415283203e+02, 4.719250202178955e+00, 1.033247470855713e+00, 8.573087768554687e+01, 0e+00, 1.581636428833008e+00, 5.381875610351562e+01, 0e+00, 5.590126323699952e+00, 9.054071350097657e+01, 0e+00, 1.192896366119385e+01, 2.883976821899414e+01, 0e+00, 2.808451290130615e+01, 3.436567366123199e-01, 0e+00, 5.77257553100586e+01, 0e+00, 0e+00, 7.405008697509766e+01, 0e+00, 0e+00, 7.748220860958099e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -azi270til90.HPer=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 4.036714172363281e+01, 0e+00, 0e+00, 5.422567176818847e+00, 0e+00, 1.12868332862854e+00, 5.639579391479492e+01, 0e+00, 1.353020286560059e+01, 2.476450500488281e+01, 0e+00, 2.634950485229492e+01, 1.901158618927002e+01, 0e+00, 5.769614486694336e+01, 1.187188982963562e+00, 0e+00, 1.044451477050781e+02, 5.359722328186035e+00, 1.256068630218506e+01, 2.010875854492188e+02, 3.253276646137238e-02, 4.629257583618164e+01, 1.563491302490234e+02, 0e+00, 4.123031997680664e+01, 6.7891123046875e+02, 4.34682285785675e-01, 7.826681976318359e+01, 1.682773681640625e+02, 9.541833877563477e+00, 1.22423193359375e+02, 1.126495910644531e+02, 1.706522979736328e+01, 4.382253875732422e+01, 2.14162109375e+02, 2.434733238220215e+01, 7.336245269775391e+01, 3.710543518066406e+01, 4.679916305541992e+01, 1.038220062255859e+02, 1.65764196395874e+01, 4.731620254516601e+01, 4.400285888671875e+02, 6.522850036621094e+00, 6.947873687744141e+01, 1.872145538330078e+02, 5.306431174278259e-01, 5.451818466186523e+01, 8.358517913818359e+01, 1.225188001990318e-01, 8.151305847167968e+01, 4.189529174804687e+02, 2.285579577088356e-01, 8.158684387207032e+01, 5.032819271087646e+00, 1.033247470855713e+00, 6.232509384155274e+01, 0e+00, 1.581636428833008e+00, 4.65399055480957e+01, 0e+00, 5.371419620513916e+00, 8.1556640625e+01, 0e+00, 7.337963581085205e+00, 3.449333877563477e+01, 0e+00, 1.061765308380127e+01, 3.436567366123199e-01, 0e+00, 1.384325504302979e+01, 0e+00, 0e+00, 9.643133163452148e+00, 0e+00, 0e+00, 5.058944597840311e-03, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -azi180til90.HPer=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 2.739461898803711e+00, 0e+00, 0e+00, 2.409989452362061e+00, 0e+00, 1.12868332862854e+00, 4.72837495803833e+00, 0e+00, 1.353020286560059e+01, 1.957316780090332e+00, 0e+00, 2.634950485229492e+01, 2.267137503623962e+00, 0e+00, 5.769614486694336e+01, 4.995843470096588e-01, 0e+00, 7.958253326416016e+01, 4.44749641418457e+00, 7.422685394287109e+01, 9.475057220458984e+01, 3.253276646137238e-02, 4.826267471313476e+01, 9.791808013916015e+01, 0e+00, 4.123031997680664e+01, 4.955923233032227e+01, 5.625138702392578e+01, 7.826681976318359e+01, 8.361761932373047e+01, 2.00134449005127e+01, 1.22423193359375e+02, 7.032872161865234e+01, 2.348839202880859e+02, 4.382253875732422e+01, 1.294504241943359e+02, 2.869141006469727e+01, 7.236343536376953e+01, 3.693995742797851e+01, 7.229430084228515e+01, 8.762205505371094e+01, 2.025214004516602e+01, 7.147759017944335e+01, 5.226141662597657e+01, 6.471966361999511e+00, 6.947873687744141e+01, 7.257079162597657e+01, 5.306431174278259e-01, 5.451818466186523e+01, 5.113944625854492e+01, 4.295474529266357e+00, 8.151305847167968e+01, 8.553839569091797e+01, 2.285579577088356e-01, 8.158684387207032e+01, 4.859114170074463e+00, 1.497431135177612e+00, 6.074448776245117e+01, 0e+00, 1.581636428833008e+00, 4.162863159179688e+01, 0e+00, 5.371419620513916e+00, 4.471288604736328e+01, 0e+00, 7.337963581085205e+00, 1.53343692779541e+01, 0e+00, 1.061765308380127e+01, 3.436567366123199e-01, 0e+00, 1.384325504302979e+01, 0e+00, 0e+00, 9.643133163452148e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -azi090til90.HPer=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 2.739461898803711e+00, 0e+00, 0e+00, 2.409989452362061e+00, 0e+00, 9.453703880310059e+00, 4.72837495803833e+00, 0e+00, 4.02466650390625e+02, 1.957316780090332e+00, 0e+00, 3.804049743652344e+02, 6.942441835999489e-01, 0e+00, 1.915866088867188e+02, 0e+00, 0e+00, 7.958253326416016e+01, 2.100147485733032e-01, 2.236576873779297e+02, 9.475057220458984e+01, 3.253276646137238e-02, 1.173910614013672e+02, 9.791808013916015e+01, 0e+00, 7.175425415039062e+02, 4.955923233032227e+01, 3.021568393707275e+00, 1.138029693603516e+02, 8.361761932373047e+01, 1.327295303344727e+01, 1.733885650634766e+02, 6.077499237060547e+01, 1.773613189697266e+02, 2.480138000488281e+02, 3.520112228393555e+01, 3.012682914733887e+01, 7.236343536376953e+01, 2.556607322692871e+01, 1.166114685058594e+02, 8.762205505371094e+01, 1.199013919830322e+01, 5.393404663085937e+02, 5.226141662597657e+01, 6.534662246704102e+00, 1.033139572143555e+02, 7.257079162597657e+01, 5.306431174278259e-01, 4.843247192382813e+02, 5.113944625854492e+01, 1.820161104202271e+00, 2.588780029296875e+02, 2.321244354248047e+01, 2.285579577088356e-01, 9.279969635009766e+01, 4.719250202178955e+00, 1.750929880142212e+00, 6.074448776245117e+01, 0e+00, 1.581636428833008e+00, 4.162863159179688e+01, 0e+00, 1.238650093078613e+01, 4.471288604736328e+01, 0e+00, 2.058712959289551e+01, 1.53343692779541e+01, 0e+00, 3.362429847717285e+01, 3.436567366123199e-01, 0e+00, 4.482235870361328e+01, 0e+00, 0e+00, 3.019428100585937e+01, 0e+00, 0e+00, 7.727965712547302e-03, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -azi315til90.HPer=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 8.829401397705078e+01, 0e+00, 0e+00, 6.954488563537597e+00, 0e+00, 1.12868332862854e+00, 6.259374771118164e+01, 0e+00, 1.353020286560059e+01, 2.171114463806152e+01, 0e+00, 1.906011993408203e+02, 1.253435735702515e+01, 0e+00, 3.453926574707031e+02, 4.86209899187088e-01, 0e+00, 2.988231201171875e+02, 8.550559282302856e-01, 1.256068630218506e+01, 3.383716735839844e+02, 3.253276646137238e-02, 4.629257583618164e+01, 1.821398803710937e+02, 0e+00, 4.123031997680664e+01, 7.161643310546875e+02, 4.34682285785675e-01, 7.826681976318359e+01, 1.5147548828125e+02, 9.541833877563477e+00, 1.308339660644531e+02, 9.070036315917969e+01, 1.706522979736328e+01, 3.534169067382812e+02, 9.510132598876953e+01, 2.434733238220215e+01, 8.088587646484375e+01, 2.574369163513184e+01, 4.679916305541992e+01, 1.209335784912109e+02, 1.199013919830322e+01, 4.731620254516601e+01, 5.707038330078125e+02, 6.534662246704102e+00, 6.947873687744141e+01, 1.886287506103516e+02, 5.306431174278259e-01, 5.451818466186523e+01, 7.667250061035156e+01, 1.225188001990318e-01, 1.323297668457031e+02, 2.58972119140625e+02, 2.285579577088356e-01, 1.023844375610352e+02, 4.84207820892334e+00, 1.033247470855713e+00, 7.953019409179687e+01, 0e+00, 1.581636428833008e+00, 5.372114944458008e+01, 0e+00, 5.371419620513916e+00, 1.031705230712891e+02, 0e+00, 7.337963581085205e+00, 3.843156433105469e+01, 0e+00, 1.061765308380127e+01, 3.436567366123199e-01, 0e+00, 2.296733322143555e+01, 0e+00, 0e+00, 4.06538703918457e+01, 0e+00, 0e+00, 5.459946691989899e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -azi045til90.HPer=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 3.508043670654297e+01, 0e+00, 0e+00, 2.694060230255127e+00, 0e+00, 1.001172256469727e+01, 4.72837495803833e+00, 0e+00, 5.41994091796875e+02, 1.957316780090332e+00, 0e+00, 6.913112060546875e+02, 6.942441835999489e-01, 0e+00, 5.347423461914062e+02, 0e+00, 0e+00, 2.636620788574219e+02, 2.100147485733032e-01, 1.182242370605469e+02, 1.879884338378906e+02, 3.253276646137238e-02, 9.546784362792968e+01, 9.944100799560547e+01, 0e+00, 6.4321142578125e+02, 4.955923233032227e+01, 4.34682285785675e-01, 1.187878479003906e+02, 8.361761932373047e+01, 9.541833877563477e+00, 2.029098815917969e+02, 6.077499237060547e+01, 1.706522979736328e+01, 6.421869750976563e+02, 3.520112228393555e+01, 2.536232757568359e+01, 7.947304840087891e+01, 2.556607322692871e+01, 7.813613281249999e+01, 9.802339172363281e+01, 1.199013919830322e+01, 3.781449035644531e+02, 5.225426635742188e+01, 6.534662246704102e+00, 1.000082855224609e+02, 7.257079162597657e+01, 5.306431174278259e-01, 5.680300170898438e+02, 5.113944625854492e+01, 1.225188001990318e-01, 3.831616760253906e+02, 2.321244354248047e+01, 2.285579577088356e-01, 1.182418121337891e+02, 4.719250202178955e+00, 1.212498068809509e+00, 7.729487915039063e+01, 0e+00, 1.581636428833008e+00, 4.677555465698242e+01, 0e+00, 1.048647956848145e+01, 5.106558685302734e+01, 0e+00, 1.995286560058594e+01, 1.53343692779541e+01, 0e+00, 3.92367446899414e+01, 3.436567366123199e-01, 0e+00, 6.677839965820313e+01, 0e+00, 0e+00, 6.971758270263672e+01, 0e+00, 0e+00, 5.497692048549652e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -azi270til30.HPer=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 2.566014289855957e+01, 0e+00, 0e+00, 6.770030212402344e+00, 0e+00, 2.442626476287842e+00, 3.620890655517578e+01, 0e+00, 2.320087814331055e+01, 1.535262718200684e+01, 0e+00, 4.408081817626953e+01, 1.000108518600464e+01, 0e+00, 2.217813934326172e+02, 5.269038677215576e-01, 0e+00, 2.845280334472656e+02, 2.622135162353516e+00, 2.530690269470215e+01, 3.58261474609375e+02, 7.115133404731751e-02, 9.681855621337891e+01, 2.712030700683594e+02, 0e+00, 5.881636047363281e+01, 6.95006787109375e+02, 8.960850238800049e-01, 1.662102325439453e+02, 2.485392944335937e+02, 2.023478126525879e+01, 2.786108947753906e+02, 1.693658508300781e+02, 3.439963684082031e+01, 4.516706726074219e+02, 2.078182830810547e+02, 5.149299392700195e+01, 1.597022613525391e+02, 6.242172241210938e+01, 9.822070617675782e+01, 2.153434753417969e+02, 2.871226348876953e+01, 7.913235778808594e+01, 5.834390014648437e+02, 1.389901809692383e+01, 1.449941101074219e+02, 2.595185760498047e+02, 1.153238105773926e+00, 1.309640350341797e+02, 1.339417388916016e+02, 2.533567249774933e-01, 2.183813873291016e+02, 3.12131640625e+02, 4.98473608493805e-01, 1.848029571533203e+02, 1.027031517028809e+01, 2.235894680023193e+00, 1.385223449707031e+02, 0e+00, 3.405667543411255e+00, 9.434325408935547e+01, 0e+00, 1.139868984222412e+01, 1.245644790649414e+02, 0e+00, 1.557413005828857e+01, 4.402031478881836e+01, 0e+00, 2.246564483642578e+01, 7.494683980941772e-01, 0e+00, 2.913050689697265e+01, 0e+00, 0e+00, 2.037471580505371e+01, 0e+00, 0e+00, 2.832336351275444e-03, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -azi000til30.HPer=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 4.852866744995117e+01, 0e+00, 0e+00, 6.970898628234863e+00, 0e+00, 4.304083347320557e+00, 2.545848503112793e+01, 0e+00, 2.56128515625e+02, 6.513504695892334e+00, 0e+00, 4.886474487304687e+02, 1.420366859436035e+00, 0e+00, 5.591039916992188e+02, 0e+00, 0e+00, 4.146919189453125e+02, 4.346558570861817e-01, 2.530690269470215e+01, 4.241905822753906e+02, 7.115133404731751e-02, 1.108474349975586e+02, 2.72325830078125e+02, 0e+00, 3.9454833984375e+02, 5.37015771484375e+02, 8.960850238800049e-01, 1.948629272460938e+02, 2.118623138427734e+02, 2.023478126525879e+01, 3.355235717773438e+02, 1.386516754150391e+02, 3.439963684082031e+01, 8.747782104492187e+02, 7.118733215332031e+01, 5.149299392700195e+01, 1.647295104980469e+02, 5.399223709106445e+01, 1.062628540039063e+02, 2.226983337402344e+02, 2.547337265014648e+01, 2.459718139648438e+02, 5.622659545898438e+02, 1.390775394439697e+01, 1.650814819335938e+02, 2.269401763916016e+02, 1.153238105773926e+00, 4.940717468261719e+02, 1.195505966186523e+02, 2.533567249774933e-01, 4.316791625976563e+02, 8.309843063354492e+01, 4.98473608493805e-01, 2.107219360351563e+02, 1.009913444519043e+01, 2.235894680023193e+00, 1.502252410888672e+02, 0e+00, 3.405667543411255e+00, 9.798268127441406e+01, 0e+00, 1.162223091125488e+01, 1.290565155029297e+02, 0e+00, 1.83586311340332e+01, 4.119352951049805e+01, 0e+00, 3.26420711517334e+01, 7.494683980941772e-01, 0e+00, 5.378218154907226e+01, 0e+00, 0e+00, 5.497530364990234e+01, 0e+00, 0e+00, 3.899719655513764e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -azi090til30.HPer=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 5.581642627716064e+00, 0e+00, 0e+00, 5.174188613891602e+00, 0e+00, 6.347846031188965e+00, 9.890038394927979e+00, 0e+00, 2.713845886230469e+02, 4.183293724060059e+00, 0e+00, 3.725039672851562e+02, 1.420366859436035e+00, 0e+00, 3.556718505859375e+02, 0e+00, 0e+00, 2.596654174804688e+02, 4.346558570861817e-01, 1.456632843017578e+02, 2.519244689941406e+02, 7.115133404731751e-02, 1.471737457275391e+02, 2.127720306396484e+02, 0e+00, 6.451956176757812e+02, 7.454457550048828e+01, 2.049834585189819e+00, 2.017463836669922e+02, 1.733861267089844e+02, 2.266252708435059e+01, 3.295762573242188e+02, 1.269375213623047e+02, 1.463960876464844e+02, 6.558619262695313e+02, 7.048371124267578e+01, 5.579766464233398e+01, 1.587032318115234e+02, 5.399223709106445e+01, 1.539165710449219e+02, 1.991435394287109e+02, 2.547337265014648e+01, 5.040648559570312e+02, 1.956718017578125e+02, 1.390775394439697e+01, 1.773290557861328e+02, 1.451674255371094e+02, 1.153238105773926e+00, 5.607705932617188e+02, 1.072399795532227e+02, 1.022908210754395e+00, 3.957463317871094e+02, 4.274660110473633e+01, 4.98473608493805e-01, 1.960158172607422e+02, 1.009913444519043e+01, 2.578695440292358e+00, 1.36941748046875e+02, 0e+00, 3.405667543411255e+00, 8.943197631835938e+01, 0e+00, 1.502041893005371e+01, 9.365033569335938e+01, 0e+00, 2.268771362304688e+01, 3.244675445556641e+01, 0e+00, 3.541196250915527e+01, 7.494683980941772e-01, 0e+00, 4.733048248291016e+01, 0e+00, 0e+00, 3.304739990234375e+01, 0e+00, 0e+00, 6.122049689292908e-03, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +azi000til00.HPer=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 5.889104843139648e+00, 0e+00, 0e+00, 5.906226730346679e+00, 0e+00, 2.45078706741333e+00, 1.020825929641724e+01, 0e+00, 8.608892974853515e+01, 3.914774799346924e+00, 0e+00, 2.200659912109375e+02, 9.373415142297744e-01, 0e+00, 3.241648498535156e+02, 0e+00, 0e+00, 3.038093139648437e+02, 2.737061500549317e-01, 4.442102813720703e+01, 3.402049865722656e+02, 8.035714030265807e-02, 1.249601257324219e+02, 2.703772644042969e+02, 0e+00, 3.425538635253906e+02, 4.246871276855469e+02, 7.183309316635131e-01, 2.055581085205078e+02, 2.305436370849609e+02, 2.325933456420898e+01, 3.393958251953125e+02, 1.604012359619141e+02, 7.464731903076172e+01, 6.221061889648438e+02, 1.326834411621094e+02, 5.920130386352539e+01, 1.774275787353516e+02, 6.340573425292969e+01, 1.335516296386719e+02, 2.314160003662109e+02, 2.96102725982666e+01, 2.878194030761719e+02, 4.336459716796875e+02, 1.556338386535645e+01, 1.792265472412109e+02, 2.247476623535156e+02, 1.3e+00, 3.865898681640625e+02, 1.316735290527344e+02, 1.497018933296204e-01, 3.411380859375e+02, 1.281708618164062e+02, 5.624999880790711e-01, 2.126445465087891e+02, 1.134805107116699e+01, 2.5171875e+00, 1.538893341064453e+02, 0e+00, 3.82840518951416e+00, 1.027231826782227e+02, 0e+00, 1.288040161132812e+01, 1.188063293457031e+02, 0e+00, 1.776203536987305e+01, 3.858226928710938e+01, 0e+00, 2.665102043151855e+01, 8.457236766815186e-01, 0e+00, 3.568270034790039e+01, 0e+00, 0e+00, 2.476183319091797e+01, 0e+00, 0e+00, 2.957108826376498e-03, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +azi000til90.HPer=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.093371047973633e+02, 0e+00, 0e+00, 6.10447998046875e+00, 0e+00, 7.226966857910156e+00, 4.455879592895508e+01, 0e+00, 3.9581259765625e+02, 9.444690513610841e+00, 0e+00, 6.50358642578125e+02, 1.005839839577675e+00, 0e+00, 6.44606689453125e+02, 0e+00, 0e+00, 3.884685180664063e+02, 3.117327690124512e-01, 1.487753086090088e+01, 3.536746520996094e+02, 3.253315091133118e-02, 4.656699447631836e+01, 1.595984161376953e+02, 0e+00, 2.22308837890625e+02, 3.709859924316406e+02, 8.696012854576111e-01, 1.004748718261719e+02, 9.480837249755859e+01, 9.507092475891113e+00, 1.868311553955078e+02, 6.041656494140625e+01, 1.976240615844727e+01, 6.813502563476562e+02, 3.749658966064453e+01, 2.426570472717285e+01, 8.389619750976563e+01, 2.545222015380859e+01, 4.697500991821289e+01, 1.192687835693359e+02, 1.23474853515625e+01, 4.897911605834961e+01, 4.082914672851563e+02, 6.525567626953125e+00, 7.895826721191406e+01, 1.225598510742188e+02, 5.307296872138977e-01, 3.665817077636719e+02, 5.476025543212891e+01, 1.789954453706741e-01, 3.522573608398437e+02, 2.737721900939941e+01, 2.285722121596336e-01, 1.232716278076172e+02, 4.72129487991333e+00, 1.071998596191406e+00, 8.629587402343751e+01, 0e+00, 1.581955122947693e+00, 5.405704498291016e+01, 0e+00, 5.589921855926514e+00, 9.075632781982422e+01, 0e+00, 1.385343742370605e+01, 2.873813819885254e+01, 0e+00, 3.120058345794678e+01, 3.436433970928192e-01, 0e+00, 5.673424606323242e+01, 0e+00, 0e+00, 9.100304870605468e+01, 0e+00, 0e+00, 7.748220860958099e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +azi270til90.HPer=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 5.139462280273438e+01, 0e+00, 0e+00, 5.681237602233887e+00, 0e+00, 1.432931423187256e+00, 7.235484924316407e+01, 0e+00, 1.800257225036621e+01, 3.385258102416992e+01, 0e+00, 3.053921356201172e+01, 2.657034664154053e+01, 0e+00, 6.184787445068359e+01, 1.187188982963562e+00, 0e+00, 1.074872619628906e+02, 7.308895111083984e+00, 1.487753086090088e+01, 2.104188385009766e+02, 3.253315091133118e-02, 4.614162139892578e+01, 1.573010925292969e+02, 0e+00, 4.451437377929688e+01, 6.916387329101562e+02, 8.696012854576111e-01, 7.794754486083984e+01, 1.709656921386719e+02, 9.507092475891113e+00, 1.215407684326172e+02, 1.148796844482422e+02, 1.976240615844727e+01, 4.787532577514649e+01, 2.541845855712891e+02, 2.426570472717285e+01, 7.317881774902344e+01, 3.812566909790039e+01, 4.697500991821289e+01, 1.040124435424805e+02, 1.933936004638672e+01, 4.897975463867188e+01, 4.516905517578125e+02, 6.588911819458008e+00, 6.912171936035156e+01, 1.890365875244141e+02, 5.307296872138977e-01, 5.61911148071289e+01, 8.489992828369141e+01, 1.789954453706741e-01, 8.188327484130859e+01, 4.765896911621094e+02, 2.285722121596336e-01, 8.128426666259766e+01, 5.03486442565918e+00, 1.071998596191406e+00, 6.224117202758789e+01, 0e+00, 1.581955122947693e+00, 4.660996246337891e+01, 0e+00, 5.367505359649658e+00, 8.172431030273438e+01, 0e+00, 7.638117790222168e+00, 3.434646987915039e+01, 0e+00, 1.081529178619385e+01, 3.436433970928192e-01, 0e+00, 1.388494606018066e+01, 0e+00, 0e+00, 1.052663040161133e+01, 0e+00, 0e+00, 5.058944597840311e-03, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +azi180til90.HPer=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 3.725585699081421e+00, 0e+00, 0e+00, 2.572883033752441e+00, 0e+00, 1.432931423187256e+00, 5.671664237976074e+00, 0e+00, 1.800257225036621e+01, 2.395919895172119e+00, 0e+00, 3.053921356201172e+01, 3.153345680236816e+00, 0e+00, 6.184787445068359e+01, 4.995843470096588e-01, 0e+00, 8.08182861328125e+01, 6.06647891998291e+00, 9.152178344726562e+01, 9.489026641845703e+01, 3.253315091133118e-02, 4.815828399658203e+01, 9.752003784179688e+01, 0e+00, 4.451437377929688e+01, 5.297641220092773e+01, 5.981256866455078e+01, 7.794754486083984e+01, 8.307142639160156e+01, 2.097225570678711e+01, 1.215407684326172e+02, 7.044758911132813e+01, 2.889624206542969e+02, 4.787532577514649e+01, 1.516147155761719e+02, 2.918825492858887e+01, 7.211394348144532e+01, 3.794519729614258e+01, 8.000148315429688e+01, 8.721048736572266e+01, 2.503059768676758e+01, 7.448850860595704e+01, 5.439396591186524e+01, 6.806851387023926e+00, 6.912171936035156e+01, 7.210545959472657e+01, 5.307296872138977e-01, 5.61911148071289e+01, 5.092419967651367e+01, 5.74974250793457e+00, 8.188327484130859e+01, 9.810430908203125e+01, 2.285722121596336e-01, 8.128426666259766e+01, 4.861158847808838e+00, 1.536182260513306e+00, 6.061558837890625e+01, 0e+00, 1.581955122947693e+00, 4.158517456054688e+01, 0e+00, 5.367505359649658e+00, 4.468383331298828e+01, 0e+00, 7.638117790222168e+00, 1.534132232666016e+01, 0e+00, 1.081529178619385e+01, 3.436433970928192e-01, 0e+00, 1.388494606018066e+01, 0e+00, 0e+00, 1.052663040161133e+01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +azi090til90.HPer=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 3.725585699081421e+00, 0e+00, 0e+00, 2.572883033752441e+00, 0e+00, 1.281594562530518e+01, 5.671664237976074e+00, 0e+00, 4.282977722167969e+02, 2.395919895172119e+00, 0e+00, 4.048165710449219e+02, 1.005839839577675e+00, 0e+00, 2.061578369140625e+02, 0e+00, 0e+00, 8.08182861328125e+01, 3.117327690124512e-01, 2.772646545410156e+02, 9.489026641845703e+01, 3.253315091133118e-02, 1.18905126953125e+02, 9.752003784179688e+01, 0e+00, 7.315569458007812e+02, 5.297641220092773e+01, 3.605737590789795e+00, 1.147219482421875e+02, 8.307142639160156e+01, 1.359222221374512e+01, 1.744772674560547e+02, 6.041656494140625e+01, 2.177983825683594e+02, 2.493451293945313e+02, 3.749658966064453e+01, 3.081144104003906e+01, 7.211394348144532e+01, 2.545222015380859e+01, 1.372062683105469e+02, 8.721048736572266e+01, 1.23474853515625e+01, 5.682982421875e+02, 5.439396591186524e+01, 6.525567626953125e+00, 1.047554321289062e+02, 7.210545959472657e+01, 5.307296872138977e-01, 5.058836669921875e+02, 5.092419967651367e+01, 2.445287466049194e+00, 2.742846374511719e+02, 2.737721900939941e+01, 2.285722121596336e-01, 9.287323760986328e+01, 4.72129487991333e+00, 1.789681053161621e+00, 6.061558837890625e+01, 0e+00, 1.581955122947693e+00, 4.158517456054688e+01, 0e+00, 1.250150413513184e+01, 4.468383331298828e+01, 0e+00, 2.557490730285645e+01, 1.534132232666016e+01, 0e+00, 3.762116622924805e+01, 3.436433970928192e-01, 0e+00, 4.41338638305664e+01, 0e+00, 0e+00, 3.616914291381836e+01, 0e+00, 0e+00, 7.727965712547302e-03, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +azi315til90.HPer=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.121113128662109e+02, 0e+00, 0e+00, 7.268037796020508e+00, 0e+00, 1.432931423187256e+00, 8.032114868164062e+01, 0e+00, 1.800257225036621e+01, 2.962337265014649e+01, 0e+00, 2.041636779785156e+02, 1.756416101455689e+01, 0e+00, 3.718780517578125e+02, 4.86209899187088e-01, 0e+00, 3.172176635742188e+02, 1.190253734588623e+00, 1.487753086090088e+01, 3.595694885253906e+02, 3.253315091133118e-02, 4.614162139892578e+01, 1.836876739501953e+02, 0e+00, 4.451437377929688e+01, 7.294455810546875e+02, 8.696012854576111e-01, 7.794754486083984e+01, 1.53521337890625e+02, 9.507092475891113e+00, 1.302762817382813e+02, 9.183480072021484e+01, 1.976240615844727e+01, 3.533490844726563e+02, 1.100244369506836e+02, 2.426570472717285e+01, 8.119823913574218e+01, 2.564647445678711e+01, 4.697500991821289e+01, 1.217599029541016e+02, 1.23474853515625e+01, 4.897975463867188e+01, 5.855683837890625e+02, 6.525567626953125e+00, 6.912171936035156e+01, 1.904648986816406e+02, 5.307296872138977e-01, 5.61911148071289e+01, 7.766116943359376e+01, 1.789954453706741e-01, 1.370183044433594e+02, 2.950067993164063e+02, 2.285722121596336e-01, 1.027791748046875e+02, 4.844122886657715e+00, 1.071998596191406e+00, 7.992375335693359e+01, 0e+00, 1.581955122947693e+00, 5.395718002319336e+01, 0e+00, 5.367505359649658e+00, 1.034535781860352e+02, 0e+00, 7.638117790222168e+00, 3.825297012329101e+01, 0e+00, 1.081529178619385e+01, 3.436433970928192e-01, 0e+00, 2.279476356506348e+01, 0e+00, 0e+00, 4.930005722045898e+01, 0e+00, 0e+00, 5.459946691989899e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +azi045til90.HPer=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 4.469710922241211e+01, 0e+00, 0e+00, 2.8721604347229e+00, 0e+00, 1.357893943786621e+01, 5.671664237976074e+00, 0e+00, 5.752771362304687e+02, 2.395919895172119e+00, 0e+00, 7.334718017578125e+02, 1.005839839577675e+00, 0e+00, 5.759631225585938e+02, 0e+00, 0e+00, 2.795020385742188e+02, 3.117327690124512e-01, 1.462175765991211e+02, 1.961874237060547e+02, 3.253315091133118e-02, 9.646797790527344e+01, 9.907807312011718e+01, 0e+00, 6.560465087890625e+02, 5.297641220092773e+01, 8.696012854576111e-01, 1.198802001953125e+02, 8.307142639160156e+01, 9.507092475891113e+00, 2.051397979736328e+02, 6.041656494140625e+01, 1.976240615844727e+01, 6.382703979492187e+02, 3.749658966064453e+01, 2.541347198486328e+01, 7.969227294921875e+01, 2.545222015380859e+01, 8.742490539550781e+01, 9.799835205078125e+01, 1.23474853515625e+01, 3.981555236816406e+02, 5.438564224243164e+01, 6.525567626953125e+00, 1.012740478515625e+02, 7.210545959472657e+01, 5.307296872138977e-01, 5.936510620117188e+02, 5.092419967651367e+01, 1.789954453706741e-01, 4.091149475097656e+02, 2.737721900939941e+01, 2.285722121596336e-01, 1.191684509277344e+02, 4.72129487991333e+00, 1.251249194145203e+00, 7.762483520507813e+01, 0e+00, 1.581955122947693e+00, 4.685105514526367e+01, 0e+00, 1.056927719116211e+01, 5.107043151855468e+01, 0e+00, 2.471623802185059e+01, 1.534132232666016e+01, 0e+00, 4.418448715209961e+01, 3.436433970928192e-01, 0e+00, 6.557318878173828e+01, 0e+00, 0e+00, 8.556404418945313e+01, 0e+00, 0e+00, 5.497692048549652e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +azi270til30.HPer=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 3.005821990966797e+01, 0e+00, 0e+00, 6.894435501098632e+00, 0e+00, 2.390384435653687e+00, 4.328482208251953e+01, 0e+00, 2.316367378234863e+01, 1.927303733825683e+01, 0e+00, 3.935855026245117e+01, 1.313285255432129e+01, 0e+00, 2.216357604980469e+02, 5.269038677215576e-01, 0e+00, 2.880018737792969e+02, 3.315665626525879e+00, 2.32617504119873e+01, 3.651185913085938e+02, 7.115152478218079e-02, 9.646979675292968e+01, 2.718721435546875e+02, 0e+00, 5.735233306884766e+01, 7.023396850585938e+02, 9.271698117256164e-01, 1.655863494873047e+02, 2.501484130859375e+02, 2.015451812744141e+01, 2.776121704101562e+02, 1.706547576904297e+02, 2.98352180480957e+01, 4.536336791992188e+02, 2.299613952636719e+02, 5.13044075012207e+01, 1.597314575195313e+02, 6.298706817626953e+01, 9.352484893798828e+01, 2.156383514404297e+02, 3.019884490966797e+01, 7.213819885253906e+01, 5.909207153320312e+02, 1.392727489471435e+01, 1.441692962646484e+02, 2.606750640869141e+02, 1.153281354904175e+00, 1.244110244750977e+02, 1.347035247802734e+02, 1.917460113763809e-01, 2.138734558105469e+02, 3.42993212890625e+02, 4.984807372093201e-01, 1.846103912353516e+02, 1.027133750915527e+01, 2.255270338058472e+00, 1.385429122924805e+02, 0e+00, 3.40582685470581e+00, 9.439936065673828e+01, 0e+00, 1.13896463394165e+01, 1.246624099731445e+02, 0e+00, 1.542864322662354e+01, 4.39434196472168e+01, 0e+00, 2.227878284454346e+01, 7.494617342948914e-01, 0e+00, 2.922682876586914e+01, 0e+00, 0e+00, 1.981167373657227e+01, 0e+00, 0e+00, 2.832336351275444e-03, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +azi000til30.HPer=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 5.902946090698242e+01, 0e+00, 0e+00, 7.10605640411377e+00, 0e+00, 4.935602188110352e+00, 2.938679618835449e+01, 0e+00, 2.686666961669922e+02, 7.069092178344727e+00, 0e+00, 5.093074462890625e+02, 1.143136093020439e+00, 0e+00, 5.851701416015625e+02, 0e+00, 0e+00, 4.284925048828125e+02, 3.428111553192139e-01, 2.32617504119873e+01, 4.367464904785156e+02, 7.115152478218079e-02, 1.108266128540039e+02, 2.7302080078125e+02, 0e+00, 3.984110412597656e+02, 5.420132934570313e+02, 9.271698117256164e-01, 1.952372100830078e+02, 2.120697509765625e+02, 2.015451812744141e+01, 3.367256164550781e+02, 1.384076843261719e+02, 2.98352180480957e+01, 8.711060302734375e+02, 6.449415588378906e+01, 5.13044075012207e+01, 1.650901519775391e+02, 5.372919921875e+01, 1.038669174194336e+02, 2.232665100097656e+02, 2.525976066589356e+01, 2.482267639160156e+02, 5.692211669921875e+02, 1.388220882415771e+01, 1.653243865966797e+02, 2.274366943359375e+02, 1.153281354904175e+00, 5.04452587890625e+02, 1.196336837768555e+02, 1.917460113763809e-01, 4.452611877441406e+02, 8.302343444824218e+01, 4.984807372093201e-01, 2.113985504150391e+02, 1.010015678405762e+01, 2.255270338058472e+00, 1.505702697753906e+02, 0e+00, 3.40582685470581e+00, 9.812290191650391e+01, 0e+00, 1.16169792175293e+01, 1.291784210205078e+02, 0e+00, 1.919831466674805e+01, 4.113925552368164e+01, 0e+00, 3.416014633178711e+01, 7.494617342948914e-01, 0e+00, 5.329817352294922e+01, 0e+00, 0e+00, 6.304767837524414e+01, 0e+00, 0e+00, 3.899719655513764e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +azi090til30.HPer=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 4.6215500831604e+00, 0e+00, 0e+00, 5.246617126464844e+00, 0e+00, 7.730091094970703e+00, 9.327448940277099e+00, 0e+00, 2.849092834472656e+02, 3.874869346618652e+00, 0e+00, 3.865364074707031e+02, 1.143136093020439e+00, 0e+00, 3.659457214355469e+02, 0e+00, 0e+00, 2.613328857421875e+02, 3.428111553192139e-01, 1.728623107910156e+02, 2.495900268554688e+02, 7.115152478218079e-02, 1.480040069580078e+02, 2.120910827636719e+02, 0e+00, 6.530350952148438e+02, 7.269758758544921e+01, 2.147800493240356e+00, 2.023607513427734e+02, 1.721242248535156e+02, 2.281260681152344e+01, 3.305486755371094e+02, 1.261094253540039e+02, 1.681990051269531e+02, 6.551034545898438e+02, 6.367514801025391e+01, 5.617956695556641e+01, 1.586665832519531e+02, 5.372919921875e+01, 1.654957916259766e+02, 1.988363952636719e+02, 2.525976066589356e+01, 5.206406982421875e+02, 1.936241333007812e+02, 1.388220882415771e+01, 1.782229766845703e+02, 1.440427307128906e+02, 1.153281354904175e+00, 5.741035522460937e+02, 1.067426834106445e+02, 1.219069838523865e+00, 4.062748229980469e+02, 3.720373306274414e+01, 4.984807372093201e-01, 1.961993591308594e+02, 1.010015678405762e+01, 2.598070907592773e+00, 1.369173278808594e+02, 0e+00, 3.40582685470581e+00, 8.937457275390625e+01, 0e+00, 1.507277030944824e+01, 9.358320617675781e+01, 0e+00, 2.505904960632324e+01, 3.24628189086914e+01, 0e+00, 3.73704360961914e+01, 7.494617342948914e-01, 0e+00, 4.699798126220703e+01, 0e+00, 0e+00, 3.563072509765625e+01, 0e+00, 0e+00, 6.122049689292908e-03, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] weaBusHHorIR.relHum=[8.299999833106995e-01, 8.155000090599061e-01, 8.299999833106995e-01, 7.400000095367432e-01, 7.654999971389771e-01, 7.400000095367432e-01, 7.962499976158142e-01, 8.231312394142151e-01, 6.800000071525574e-01, 7.257916808128357e-01, 7.900000214576721e-01, 7.799999713897705e-01, 7.799999713897705e-01, 6.634303450584411e-01, 7.200000286102295e-01, 8.299999833106995e-01, 6.397988796234131e-01, 8.222664952278137e-01, 7.25e-01, 7.669999837875366e-01, 7.5e-01, 7.653749823570252e-01, 8.905527472496033e-01, 8.299999833106995e-01, 8.021640539169311e-01, 6.899999976158142e-01, 7.320624828338623e-01, 7.840937614440918e-01, 8.179999947547912e-01, 6.926625013351441e-01, 7.200000286102295e-01, 8.700000047683716e-01, 9.380625128746033e-01, 8.449999928474426e-01, 8.542500257492065e-01, 9.200000166893005e-01, 7.619999885559082e-01, 9.200000166893005e-01, 8.799999952316284e-01, 9.320000052452088e-01, 8.799999952316284e-01, 8.899999856948853e-01, 9.53499972820282e-01, 8.74321436882019e-01, 8.34499990940094e-01, 9.300000071525574e-01, 9.200000166893005e-01, 7.777232170104981e-01, 9.949999809265136e-01, 8.600000143051147e-01, 8.899999856948853e-01, 9.599999785423279e-01, 9.290833353996277e-01, 7.006174445152282e-01, 9.350000023841858e-01, 9.599999785423279e-01, 8.547500133514404e-01, 1e+00, 8.899999856948853e-01, 9.300000071525574e-01, 7.699999809265137e-01, 7.643102645874024e-01, 9.485333323478699e-01, 8.199999928474426e-01, 8.367812514305115e-01, 9.200000166893005e-01, 1e+00, 8.199999928474426e-01, 8.495580434799195e-01, 8.741093635559082e-01, 8.600000143051147e-01, 8.644999980926513e-01, 8.150000214576721e-01, 9.200000166893005e-01, 9.109934091567993e-01, 9.599999785423279e-01, 1e+00, 1e+00, 1e+00, 1e+00, 9.49999988079071e-01, 9.638749837875367e-01, 9.528356909751892e-01, 9.518750071525574e-01, 9.455937385559082e-01, 9.100000262260437e-01, 1e+00, 8.330625176429749e-01, 8.600000143051147e-01, 7.539999961853028e-01, 6.800000071525574e-01, 7.699999809265137e-01, 8.299999833106995e-01, 7.300000190734863e-01, 8.700000047683716e-01, 6.899999976158142e-01, 7.799999713897705e-01, 7.799999713897705e-01, 8.299999833106995e-01, 7.305729150772095e-01, 8.299999833106995e-01] weaBusHHorIR.nOpa=[1e+00, 3.106249988079071e-01, 0e+00, 0e+00, 0e+00, 0e+00, 3.524999916553497e-01, 0e+00, 0e+00, 2.275000065565109e-01, 0e+00, 1e+00, 1e+00, 9.449999809265137e-01, 3.187499940395355e-01, 3.00000011920929e-01, 3.00000011920929e-01, 1e+00, 0e+00, 7.381818175315857e-01, 0e+00, 0e+00, 1.30000002682209e-01, 8.799999952316284e-01, 4.275000035762787e-01, 1.000000014901161e-01, 1.381250023841858e-01, 5.418749809265136e-01, 2.000000029802322e-01, 0e+00, 8.999999761581421e-01, 1e+00, 1e+00, 1e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1.25e-02, 4.171874858438969e-02, 6.99999988079071e-01, 1e+00, 1e+00, 1e+00, 6.599999904632569e-01, 1e+00, 8.425000071525574e-01, 2.403124958276749e-01, 2.863750100135803e-01, 1e+00, 1e+00, 9.003124952316284e-01, 1e+00, 2.199999958276749e-01, 1e+00, 4.000000059604645e-01, 5.200000047683716e-01, 9.124999791383744e-02, 4.078125059604645e-01, 1e+00, 1e+00, 9.274999856948852e-01, 1e+00, 1e+00, 1e+00, 1e+00, 2.000000029802322e-01, 1e+00, 1e+00, 1e+00, 8.999999761581421e-01, 1e+00, 1e+00, 9.375e-01, 7.712499976158143e-01, 1.000000014901161e-01, 1e+00, 1e+00, 1e+00, 6.018750190734863e-01, 1e+00, 0e+00, 1e+00, 8.750000149011612e-02, 0e+00, 2.000000029802322e-01, 0e+00, 1e+00, 0e+00, 1e+00, 0e+00, 0e+00, 1e+00, 1e+00, 0e+00, 1e+00] weaBusHHorIR.nTot=[1e+00, 1e+00, 0e+00, 0e+00, 0e+00, 0e+00, 5.532500147819519e-01, 2.000000029802322e-01, 2.000000029802322e-01, 3.112499952316284e-01, 0e+00, 1e+00, 1e+00, 1e+00, 6.825312733650207e-01, 1e+00, 5.988750100135803e-01, 1e+00, 0e+00, 8.999999761581421e-01, 0e+00, 0e+00, 4.111250042915344e-01, 1e+00, 9.665624976158143e-01, 2.000000029802322e-01, 1.400000035762787e-01, 8.199999928474426e-01, 6.800000071525574e-01, 0e+00, 1e+00, 1e+00, 1e+00, 1e+00, 0e+00, 2.000000029802322e-01, 0e+00, 1.000000014901161e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1.287499979138374e-01, 1.775000005960465e-01, 8.999999761581421e-01, 1e+00, 1e+00, 1e+00, 6.599999904632569e-01, 1e+00, 8.414062261581421e-01, 5.875e-01, 2.863750100135803e-01, 1e+00, 1e+00, 1e+00, 1e+00, 5.400000095367432e-01, 1e+00, 4.000000059604645e-01, 7.172500133514405e-01, 9.156249910593033e-02, 4.068749964237213e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 3.00000011920929e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.856249809265136e-01, 8.943750143051148e-01, 1.000000014901161e-01, 1e+00, 1e+00, 1e+00, 8.999999761581421e-01, 1e+00, 9.249999970197678e-02, 1e+00, 1.799999982118607e-01, 0e+00, 2.000000029802322e-01, 0e+00, 1e+00, 0e+00, 1e+00, 0e+00, 0e+00, 1e+00, 1e+00, 0e+00, 1e+00] toDryAir.XiDry=[5.534592783078551e-04, 7.404735661111772e-04, 6.435433402657509e-04, 3.546207735780627e-04, 3.171870717778802e-04, 2.730514970608056e-04, 3.461818327195942e-04, 7.003264763625339e-05, 1.120322936912999e-04, 1.493938674684614e-04, 4.675847012549639e-04, 3.105962474364788e-04, 3.396507236175239e-04, 8.88145892531611e-05, 1.457443810068071e-04, 7.332143140956759e-04, 1.454783021472395e-04, 3.369470941834152e-04, 1.414447848219424e-04, 2.046347828581929e-04, 8.513704960932955e-05, 3.073740983381867e-04, 7.443716167472303e-04, 6.474720314145089e-04, 7.814756361767649e-04, 1.618797541595995e-04, 4.079784383065999e-04, 5.408114520832896e-04, 7.127664051949978e-04, 5.353740882128478e-04, 5.356637993827462e-04, 1.028508297167718e-03, 1.485809287987649e-03, 1.146520953625441e-03, 7.315096911042929e-04, 2.74951197206974e-03, 1.84874723199755e-03, 1.286157546564937e-03, 2.297864947468043e-03, 2.099713729694486e-03, 2.31377175077796e-03, 3.644876182079315e-03, 3.12753259204328e-03, 2.387521741911769e-03, 3.936996031552553e-03, 4.272203426808119e-03, 3.502673236653209e-03, 3.79284075461328e-03, 4.108149930834771e-03, 4.179367702454329e-03, 4.433642141520977e-03, 3.432854637503624e-03, 4.064757470041513e-03, 6.132206507027149e-03, 3.684677043929696e-03, 3.769083879888058e-03, 3.877192363142967e-03, 5.991736333817244e-03, 3.818631172180176e-03, 4.306243266910315e-03, 6.08778977766633e-03, 6.484679598361254e-03, 6.549895089119673e-03, 3.522149240598083e-03, 3.545934986323118e-03, 3.920129965990782e-03, 4.528491385281086e-03, 2.936459146440029e-03, 2.823233464732766e-03, 4.138937313109636e-03, 4.391978960484266e-03, 3.678599232807756e-03, 2.205994166433811e-03, 3.204269846901297e-03, 2.519610524177551e-03, 1.953659113496542e-03, 1.23520502820611e-03, 1.582640572451055e-03, 1.936125359497964e-03, 2.028667973354459e-03, 6.267991266213357e-04, 2.328174421563745e-03, 7.783748558722436e-04, 1.136661367490888e-03, 5.626552389003337e-04, 7.857894524931908e-04, 5.038345698267221e-04, 3.860814264044166e-04, 3.862692043185234e-04, 7.274384843185544e-04, 3.81952675525099e-04, 1.804194616852328e-04, 6.312985438853502e-04, 1.838368742028251e-04, 9.718684130348265e-04, 1.582675467943773e-04, 3.053453983739018e-04, 3.430612501688302e-04, 6.260867230594158e-04, 1.97089571156539e-04, 5.758461193181574e-04] toDryAir.XiTotalAir=[5.531531060114503e-04, 7.399252499453723e-04, 6.431294372305274e-04, 3.544950508512556e-04, 3.170864947605878e-04, 2.729769621510059e-04, 3.46062023891136e-04, 7.002774073043838e-05, 1.120197412092239e-04, 1.493715448305011e-04, 4.673661896958947e-04, 3.104998148046434e-04, 3.395353851374239e-04, 8.880669629434124e-05, 1.457231381209567e-04, 7.326771155931056e-04, 1.454571349313483e-04, 3.368336008861661e-04, 1.414247788488865e-04, 2.045928878942504e-04, 8.512980275554582e-05, 3.072796447668224e-04, 7.438174448907376e-04, 6.470530992373824e-04, 7.808654103428125e-04, 1.618535461602733e-04, 4.078120517078787e-04, 5.405190982855857e-04, 7.122586597688496e-04, 5.350875202566385e-04, 5.353770102374256e-04, 1.027451478876173e-03, 1.483604800887406e-03, 1.145207951776683e-03, 7.30974948965013e-04, 2.741972915828228e-03, 1.845335680991411e-03, 1.284505240619183e-03, 2.292596828192473e-03, 2.09531388245523e-03, 2.30843061581254e-03, 3.631639294326305e-03, 3.117781598120928e-03, 2.381835132837296e-03, 3.921556659042836e-03, 4.254029598087072e-03, 3.490447299554944e-03, 3.778506023809314e-03, 4.091342352330685e-03, 4.161972738802433e-03, 4.414071794599295e-03, 3.421110520139337e-03, 4.048301838338375e-03, 6.094831228256226e-03, 3.671149490401149e-03, 3.754931269213557e-03, 3.862216789275408e-03, 5.956044606864453e-03, 3.804104635491967e-03, 4.287778865545988e-03, 6.050953175872564e-03, 6.442896835505962e-03, 6.507272552698851e-03, 3.509787097573281e-03, 3.533405344933271e-03, 3.904822282493114e-03, 4.50807586312294e-03, 2.927861409261823e-03, 2.815285231918097e-03, 4.1218769736588e-03, 4.372773692011833e-03, 3.665115870535374e-03, 2.201138576492667e-03, 3.194035077467561e-03, 2.513274783268571e-03, 1.949849654920399e-03, 1.233681198209524e-03, 1.580139854922891e-03, 1.93238400388509e-03, 2.024560794234276e-03, 6.264065159484744e-04, 2.322766277939081e-03, 7.777694961987435e-04, 1.135370833799243e-03, 5.623388569802046e-04, 7.851725094951689e-04, 5.035808426328003e-04, 3.859324264340102e-04, 3.861200530081987e-04, 7.269097142852843e-04, 3.818068362306803e-04, 1.803869148716331e-04, 6.309002754278481e-04, 1.83803093386814e-04, 9.709247737191617e-04, 1.582425029482692e-04, 3.052522079087794e-04, 3.429436124861241e-04, 6.256950087845326e-04, 1.970507320947945e-04, 5.755147431045771e-04] -weaBusHHorIR.TBlaSky=[2.424717864990234e+02, 2.403764801025391e+02, 2.358662506103516e+02, 2.297610076904297e+02, 2.278389831542969e+02, 2.264090423583984e+02, 2.313766479492188e+02, 2.110968109130859e+02, 2.175980133056641e+02, 2.223523498535156e+02, 2.326077728271484e+02, 2.359673126220703e+02, 2.370339050292969e+02, 2.224321411132813e+02, 2.223233489990234e+02, 2.396390686035156e+02, 2.232175354003906e+02, 2.361013519287109e+02, 2.193212127685547e+02, 2.280249053955078e+02, 2.135835113525391e+02, 2.279135131835938e+02, 2.386132080078125e+02, 2.424812896728516e+02, 2.415385894775391e+02, 2.225107116699219e+02, 2.328207153320313e+02, 2.378241333007813e+02, 2.389310028076172e+02, 2.352932495117188e+02, 2.418508605957031e+02, 2.49917431640625e+02, 2.542099945068359e+02, 2.517334533691406e+02, 2.373395263671875e+02, 2.537255401611328e+02, 2.5022578125e+02, 2.437603515625e+02, 2.610355102539062e+02, 2.590398193359375e+02, 2.609673461914062e+02, 2.676519775390625e+02, 2.644517272949219e+02, 2.526495056152344e+02, 2.609558227539063e+02, 2.653223266601562e+02, 2.664947814941406e+02, 2.699124755859375e+02, 2.679160217285156e+02, 2.657357666015625e+02, 2.71036376953125e+02, 2.629888916015625e+02, 2.61791943359375e+02, 2.729496520996094e+02, 2.6719091796875e+02, 2.6719091796875e+02, 2.672407165527344e+02, 2.743741333007812e+02, 2.611206665039062e+02, 2.696978759765625e+02, 2.721368103027344e+02, 2.739889404296875e+02, 2.682868347167969e+02, 2.62084716796875e+02, 2.681499450683594e+02, 2.683391418457031e+02, 2.682657592773438e+02, 2.654322631835938e+02, 2.641460571289062e+02, 2.699955078125e+02, 2.708146667480469e+02, 2.608162841796875e+02, 2.611160339355469e+02, 2.649518127441406e+02, 2.617762817382812e+02, 2.558578643798828e+02, 2.51248046875e+02, 2.545314483642578e+02, 2.565495178222656e+02, 2.549941040039062e+02, 2.356984405517578e+02, 2.601697692871094e+02, 2.456325012207031e+02, 2.503663696289063e+02, 2.366355895996094e+02, 2.461008148193359e+02, 2.31210400390625e+02, 2.376932525634766e+02, 2.303036956787109e+02, 2.38346142578125e+02, 2.333052520751953e+02, 2.213942413330078e+02, 2.440263549804687e+02, 2.221683074951172e+02, 2.489532745361328e+02, 2.213002624511719e+02, 2.275401763916016e+02, 2.370587219238281e+02, 2.438640258789063e+02, 2.225995727539062e+02, 2.426262817382812e+02] +weaBusHHorIR.TBlaSky=[2.424717102050781e+02, 2.403763977050781e+02, 2.358661743164062e+02, 2.297609313964844e+02, 2.278389129638672e+02, 2.264089660644531e+02, 2.313765716552734e+02, 2.110967468261719e+02, 2.175979522705078e+02, 2.223522796630859e+02, 2.326076965332031e+02, 2.35967236328125e+02, 2.370338287353516e+02, 2.224320648193359e+02, 2.223232727050781e+02, 2.396389770507812e+02, 2.232174591064453e+02, 2.361012756347656e+02, 2.193211364746094e+02, 2.280248291015625e+02, 2.135834350585938e+02, 2.279134368896484e+02, 2.386131317138672e+02, 2.424812133789063e+02, 2.415385131835938e+02, 2.225106353759766e+02, 2.328206390380859e+02, 2.378240570068359e+02, 2.389309265136719e+02, 2.352931732177734e+02, 2.418507843017578e+02, 2.499173553466797e+02, 2.542099182128906e+02, 2.517333648681641e+02, 2.373394500732422e+02, 2.537254486083984e+02, 2.502256988525391e+02, 2.437602722167969e+02, 2.610354431152344e+02, 2.590397399902344e+02, 2.609672546386719e+02, 2.676518859863281e+02, 2.644516418457031e+02, 2.526494293212891e+02, 2.609557312011719e+02, 2.653222351074219e+02, 2.664946899414062e+02, 2.699123840332031e+02, 2.679159301757812e+02, 2.657356750488281e+02, 2.710362854003906e+02, 2.629888000488281e+02, 2.617918762207031e+02, 2.72949560546875e+02, 2.671908264160156e+02, 2.671908264160156e+02, 2.67240625e+02, 2.743740417480469e+02, 2.611205749511719e+02, 2.696977844238281e+02, 2.7213671875e+02, 2.739888610839844e+02, 2.682867431640625e+02, 2.620846313476562e+02, 2.68149853515625e+02, 2.683390502929688e+02, 2.682656677246094e+02, 2.654321716308594e+02, 2.641459655761719e+02, 2.699954162597656e+02, 2.708145751953125e+02, 2.608161926269531e+02, 2.611159423828125e+02, 2.649517211914062e+02, 2.617761901855469e+02, 2.558577880859375e+02, 2.512479614257813e+02, 2.545313568115234e+02, 2.565494262695312e+02, 2.549940277099609e+02, 2.356983642578125e+02, 2.60169677734375e+02, 2.456324127197266e+02, 2.503662902832031e+02, 2.366355133056641e+02, 2.461007232666016e+02, 2.312103240966797e+02, 2.376931762695312e+02, 2.303036193847656e+02, 2.383460662841797e+02, 2.3330517578125e+02, 2.213941741943359e+02, 2.440262756347656e+02, 2.221682312011719e+02, 2.489531921386719e+02, 2.213001861572266e+02, 2.275401153564453e+02, 2.370586456298828e+02, 2.438639465332031e+02, 2.225995025634766e+02, 2.426262054443359e+02] weaBusHHorIR.TDewPoi=[2.514499969482422e+02, 2.546172729492187e+02, 2.530680603027344e+02, 2.470058380126953e+02, 2.457118743896484e+02, 2.4425e+02, 2.465984436035156e+02, 2.323164276123047e+02, 2.360054656982422e+02, 2.391018341064453e+02, 2.498500061035156e+02, 2.456001556396484e+02, 2.464499969482422e+02, 2.33920263671875e+02, 2.385312347412109e+02, 2.5425e+02, 2.382002258300781e+02, 2.463281097412109e+02, 2.382700012207031e+02, 2.415955352783203e+02, 2.3375e+02, 2.4568154296875e+02, 2.54821923828125e+02, 2.531499938964844e+02, 2.548682189941406e+02, 2.3925e+02, 2.479117950439453e+02, 2.508475036621094e+02, 2.536128143310547e+02, 2.508299987792969e+02, 2.509499969482422e+02, 2.578499938964844e+02, 2.618212524414063e+02, 2.5925e+02, 2.546071136474609e+02, 2.6925e+02, 2.642207946777344e+02, 2.607701782226562e+02, 2.671437377929688e+02, 2.661078247070312e+02, 2.670499877929688e+02, 2.725499877929688e+02, 2.709500122070312e+02, 2.675879760742188e+02, 2.738175048828125e+02, 2.748500061035156e+02, 2.720499877929688e+02, 2.729461791992188e+02, 2.74247412109375e+02, 2.745179565429688e+02, 2.753500061035156e+02, 2.720499877929688e+02, 2.74196875e+02, 2.800496887207031e+02, 2.727487548828125e+02, 2.731499938964844e+02, 2.73378759765625e+02, 2.795345520019531e+02, 2.731499938964844e+02, 2.748500061035156e+02, 2.798500061035156e+02, 2.805674987792969e+02, 2.810125122070312e+02, 2.721342407226563e+02, 2.723386413574219e+02, 2.7375e+02, 2.756151062011719e+02, 2.699250061035156e+02, 2.6925e+02, 2.7432734375e+02, 2.748500061035156e+02, 2.728032958984375e+02, 2.664500122070312e+02, 2.708412475585938e+02, 2.681905334472656e+02, 2.653500061035156e+02, 2.603397766113281e+02, 2.631499938964844e+02, 2.652778625488281e+02, 2.659500122070312e+02, 2.531499938964844e+02, 2.674281127929688e+02, 2.552568176269531e+02, 2.592272705078125e+02, 2.510427185058594e+02, 2.553500061035156e+02, 2.501800720214844e+02, 2.464315032958984e+02, 2.468885101318359e+02, 2.535225311279297e+02, 2.475500030517578e+02, 2.397464019775391e+02, 2.525387481689453e+02, 2.404349548339844e+02, 2.572471618652344e+02, 2.3925e+02, 2.453500061035156e+02, 2.464704559326172e+02, 2.524696075439453e+02, 2.412778961181641e+02, 2.521499938964844e+02] weaBusHHorIR.TWetBul=[2.534561614990234e+02, 2.566135681152344e+02, 2.549549346923828e+02, 2.499950317382813e+02, 2.484722503662109e+02, 2.472698822021484e+02, 2.489991394042969e+02, 2.339952178955078e+02, 2.397386962890625e+02, 2.421622467041016e+02, 2.522193298339844e+02, 2.481378845214844e+02, 2.489787139892578e+02, 2.377774688720703e+02, 2.41655908203125e+02, 2.560849609375e+02, 2.427194732666016e+02, 2.483186157226563e+02, 2.413111999511719e+02, 2.441876190185547e+02, 2.3635205078125e+02, 2.484798095703125e+02, 2.559994506835938e+02, 2.550182769775391e+02, 2.570220764160156e+02, 2.429215393066406e+02, 2.513831970214844e+02, 2.536170440673828e+02, 2.560233856201172e+02, 2.547085754394531e+02, 2.543222961425781e+02, 2.595049438476562e+02, 2.629485656738281e+02, 2.608718322753906e+02, 2.561195617675781e+02, 2.699583435058594e+02, 2.66876220703125e+02, 2.615913146972656e+02, 2.682916137695312e+02, 2.66770654296875e+02, 2.682051086425781e+02, 2.73598876953125e+02, 2.712748168945312e+02, 2.687852416992188e+02, 2.752029418945312e+02, 2.755067749023438e+02, 2.726990356445312e+02, 2.750860534667969e+02, 2.742542724609375e+02, 2.758782470703125e+02, 2.763161315917969e+02, 2.722772766113281e+02, 2.748617431640625e+02, 2.824296081542969e+02, 2.73375927734375e+02, 2.735207824707031e+02, 2.746396911621094e+02, 2.795215637207031e+02, 2.741797973632812e+02, 2.755047912597656e+02, 2.81735595703125e+02, 2.824670654296875e+02, 2.813185363769531e+02, 2.73823291015625e+02, 2.738580017089844e+02, 2.743658142089844e+02, 2.755487548828125e+02, 2.716274291992187e+02, 2.706723876953125e+02, 2.754527160644531e+02, 2.761003112792969e+02, 2.740264892578125e+02, 2.683293579101563e+02, 2.71504736328125e+02, 2.690141357421875e+02, 2.657963562011719e+02, 2.603397766113281e+02, 2.631499938964844e+02, 2.652778625488281e+02, 2.659500122070312e+02, 2.536644744873047e+02, 2.677514404296875e+02, 2.557407348632813e+02, 2.597214965820312e+02, 2.523440124511719e+02, 2.562605895996094e+02, 2.509499969482422e+02, 2.496335266113281e+02, 2.496734771728516e+02, 2.572264831542969e+02, 2.515661926269531e+02, 2.430821350097656e+02, 2.545445922851563e+02, 2.436114135742187e+02, 2.586160095214844e+02, 2.429263000488281e+02, 2.479012451171875e+02, 2.489967864990234e+02, 2.544511901855469e+02, 2.444692932128906e+02, 2.538469543457031e+02] weaBusTDryBulTDewPoiOpa.TBlaSky=[2.425805206298828e+02, 2.404127319335938e+02, 2.358612396240234e+02, 2.298092895507812e+02, 2.280252685546875e+02, 2.265580902099609e+02, 2.313868316650391e+02, 2.112188232421875e+02, 2.174862182617188e+02, 2.2245048828125e+02, 2.325475158691406e+02, 2.359674072265625e+02, 2.370054473876953e+02, 2.221018035888672e+02, 2.223119293212891e+02, 2.397513580322266e+02, 2.231902587890625e+02, 2.362867492675781e+02, 2.194997619628906e+02, 2.277205749511719e+02, 2.137628479003906e+02, 2.280176574707031e+02, 2.38553564453125e+02, 2.425549743652344e+02, 2.414657196044922e+02, 2.223208312988281e+02, 2.3279267578125e+02, 2.377452789306641e+02, 2.389680450439453e+02, 2.353283843994141e+02, 2.418099517822266e+02, 2.500435363769531e+02, 2.542081329345703e+02, 2.518132843017578e+02, 2.372896026611328e+02, 2.537427520751953e+02, 2.502774627685547e+02, 2.437872344970703e+02, 2.610116333007812e+02, 2.590294799804688e+02, 2.609075317382812e+02, 2.675837707519531e+02, 2.645348510742188e+02, 2.526082763671875e+02, 2.609290466308594e+02, 2.654401550292969e+02, 2.663913879394531e+02, 2.699387573242187e+02, 2.680214538574219e+02, 2.658468872070313e+02, 2.709851684570312e+02, 2.630510009765625e+02, 2.619324279785156e+02, 2.730522521972656e+02, 2.671432556152344e+02, 2.672386474609375e+02, 2.671919372558594e+02, 2.743884521484375e+02, 2.611297790527344e+02, 2.697910461425781e+02, 2.722127685546875e+02, 2.738322631835937e+02, 2.683384399414062e+02, 2.620212585449219e+02, 2.681185485839844e+02, 2.684552612304688e+02, 2.681834228515625e+02, 2.65358984375e+02, 2.64074169921875e+02, 2.699785583496094e+02, 2.708664855957031e+02, 2.609064147949219e+02, 2.611863037109375e+02, 2.649168518066406e+02, 2.618436706542969e+02, 2.559857635498047e+02, 2.511314208984375e+02, 2.545332183837891e+02, 2.559608276367188e+02, 2.545180755615234e+02, 2.355790710449219e+02, 2.601796875e+02, 2.455387084960938e+02, 2.503852691650391e+02, 2.366496948242188e+02, 2.461514282226562e+02, 2.311552001953125e+02, 2.375711639404297e+02, 2.303029998779297e+02, 2.382874237060547e+02, 2.334037933349609e+02, 2.214871795654297e+02, 2.439289855957031e+02, 2.2218427734375e+02, 2.490253173828125e+02, 2.212673950195312e+02, 2.273845367431641e+02, 2.370302032470703e+02, 2.438200866699219e+02, 2.231926422119141e+02, 2.431409606933594e+02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_Validation_BESTEST_WD500.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_Validation_BESTEST_WD500.txt index 308c9b38cb..500229aaf4 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_Validation_BESTEST_WD500.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_Validation_BESTEST_WD500.txt @@ -1,4 +1,4 @@ -last-generated=2020-08-24 +last-generated=2022-05-18 statistics-simulation= { "linear": " ", @@ -6,33 +6,33 @@ statistics-simulation= "numerical Jacobians": "0" } time=[0e+00, 3.1536e+07] -azi000til00.H=[0e+00, 3.304555053710938e+02, 1.05e+00, 0e+00, 5.339432495117187e+02, 0e+00, 0e+00, 7.026582397460937e+02, 0e+00, 0e+00, 7.169205932617188e+02, 0e+00, 0e+00, 5.889743530273438e+02, 0e+00, 3.297820663452148e+01, 4.575948303222656e+02, 0e+00, 3.137780700683594e+02, 2.582382873535156e+02, 0e+00, 6.361540405273438e+02, 6.559236526489258e+01, 0e+00, 7.940098510742188e+02, 1.86328125e+00, 0e+00, 9.687490478515625e+02, 0e+00, 0e+00, 9.964100952148438e+02, 0e+00, 8.786016941070556e-01, 8.870862915039063e+02, 0e+00, 1.111534194946289e+02, 7.002208251953125e+02, 0e+00, 4.241627624511719e+02, 4.635012756347656e+02, 0e+00, 6.642612915039062e+02, 2.044994201660156e+02, 0e+00, 2.7278291015625e+02, 1.826190567016602e+01, 0e+00, 9.301830200195312e+02, 0e+00, 0e+00, 9.238280639648438e+02, 0e+00, 1.061087226867676e+01, 3.898171142578125e+02, 0e+00, 4.870281982421875e+01, 6.177395141601562e+02, 0e+00, 2.123143646240234e+02, 2.388968597412109e+02, 0e+00, 3.396179809570312e+02, 1.397753173828125e+02, 0e+00, 8.022084594726563e+02, 5.267857074737549e+00, 0e+00, 4.811991577148438e+02, 0e+00, 0e+00, 8.427042236328125e+02, 0e+00, 0e+00, 2.566635009765625e+02, 0e+00, 1.732412147521973e+01, 5.4561533203125e+02, 0e+00, 1.728488784790039e+02, 2.92139892578125e+02, 0e+00, 4.188460693359375e+02, 5.54792911529541e+01, 0e+00, 5.960416870117188e+02, 0e+00, 0e+00, 6.656387451171875e+02, 0e+00, 0e+00, 6.606118774414062e+02, 0e+00, 0e+00, 5.3395185546875e+02, 0e+00, 0e+00, 1.220632080078125e+02, 0e+00, 8.994479751586914e+01, 1.131861694335937e+02, 0e+00] -azi000til90.H=[0e+00, 3.906970764160156e+02, 5.25e-01, 0e+00, 5.137499572753907e+02, 0e+00, 0e+00, 6.681136352539063e+02, 0e+00, 0e+00, 6.3285693359375e+02, 0e+00, 0e+00, 4.877739196777344e+02, 0e+00, 3.259043121337891e+01, 3.830206848144531e+02, 0e+00, 2.219177886962891e+02, 1.825839019775391e+02, 0e+00, 3.696449645996094e+02, 3.490510025024415e+01, 0e+00, 3.888556701660156e+02, 9.31640625e-01, 0e+00, 4.122919616699219e+02, 0e+00, 0e+00, 3.643569030761719e+02, 0e+00, 4.393008470535278e-01, 2.385827301025391e+02, 0e+00, 3.670584106445312e+01, 1.140304779052734e+02, 0e+00, 8.013905181884766e+01, 6.934735412597657e+01, 0e+00, 1.042966644287109e+02, 6.43949592590332e+01, 0e+00, 1.333653747558594e+02, 9.130952835083008e+00, 0e+00, 2.000315856933594e+02, 0e+00, 0e+00, 2.049700927734375e+02, 0e+00, 4.643041229248047e+00, 1.825704772949219e+02, 0e+00, 2.435140991210938e+01, 1.388762084960937e+02, 0e+00, 1.016416488647461e+02, 1.155412658691406e+02, 0e+00, 1.623453643798828e+02, 5.558002243041992e+01, 0e+00, 2.861161376953125e+02, 2.633928537368774e+00, 0e+00, 2.334290954589844e+02, 0e+00, 0e+00, 4.043341064453125e+02, 0e+00, 0e+00, 1.287009246826172e+02, 0e+00, 9.371051788330078e+00, 3.705264343261719e+02, 0e+00, 1.302301895141601e+02, 2.570397216796875e+02, 0e+00, 3.63870654296875e+02, 6.760106887817383e+01, 0e+00, 5.593243774414062e+02, 0e+00, 0e+00, 6.543992431640625e+02, 0e+00, 0e+00, 6.698966064453125e+02, 0e+00, 0e+00, 6.537845336914063e+02, 0e+00, 0e+00, 6.103160400390625e+01, 0e+00, 1.373284454345703e+02, 2.420757873535156e+02, 0e+00] -azi270til90.H=[0e+00, 5.802423706054687e+01, 5.25e-01, 0e+00, 1.007756622314453e+02, 0e+00, 0e+00, 8.792660064697266e+01, 0e+00, 0e+00, 3.063359375e+02, 0e+00, 0e+00, 4.709313049316406e+02, 0e+00, 1.029561996459961e+01, 6.65260400390625e+02, 0e+00, 5.528524322509766e+01, 5.37640283203125e+02, 0e+00, 5.728817749023438e+01, 2.347798248291016e+02, 0e+00, 1.087030303955078e+02, 9.31640625e-01, 0e+00, 1.192446762084961e+02, 0e+00, 0e+00, 3.006466979980469e+02, 0e+00, 4.393008470535278e-01, 4.93570556640625e+02, 0e+00, 3.670584106445312e+01, 6.188103881835938e+02, 0e+00, 8.013905181884766e+01, 6.251119506835937e+02, 0e+00, 9.811147155761719e+01, 3.3177919921875e+02, 0e+00, 1.328924743652344e+02, 9.130952835083008e+00, 0e+00, 1.432172668457031e+02, 0e+00, 0e+00, 2.92620361328125e+02, 0e+00, 4.643041229248047e+00, 1.971983520507812e+02, 0e+00, 2.435140991210938e+01, 4.982732666015625e+02, 0e+00, 1.016416488647461e+02, 1.309497375488281e+02, 0e+00, 1.58721533203125e+02, 2.092740417480469e+02, 0e+00, 1.266774597167969e+02, 2.633928537368774e+00, 0e+00, 2.094806213378906e+02, 0e+00, 0e+00, 2.636231994628906e+02, 0e+00, 0e+00, 1.289961578369141e+02, 0e+00, 8.138613700866699e+00, 5.972470458984375e+02, 0e+00, 4.398899612426758e+01, 5.483102294921875e+02, 0e+00, 5.71522705078125e+01, 1.726090454101563e+02, 0e+00, 5.14e+01, 0e+00, 0e+00, 5.679375076293945e+01, 0e+00, 0e+00, 2.070741424560547e+02, 0e+00, 0e+00, 4.219836730957031e+02, 0e+00, 0e+00, 6.103160400390625e+01, 0e+00, 2.208180160522461e+01, 3.760475524902344e+02, 0e+00] -azi180til90.H=[0e+00, 5.802423706054687e+01, 5.25e-01, 0e+00, 1.007756622314453e+02, 0e+00, 0e+00, 8.516464385986328e+01, 0e+00, 0e+00, 9.003269195556641e+01, 0e+00, 0e+00, 8.396177673339844e+01, 0e+00, 1.029561996459961e+01, 4.664635162353515e+01, 0e+00, 5.528524322509766e+01, 6.048948974609375e+01, 0e+00, 5.728817749023438e+01, 2.750091438293457e+01, 0e+00, 1.087030303955078e+02, 9.31640625e-01, 0e+00, 1.192446762084961e+02, 0e+00, 0e+00, 1.313389892578125e+02, 0e+00, 4.393008470535278e-01, 8.56955062866211e+01, 0e+00, 5.552214431762695e+01, 8.404261779785156e+01, 0e+00, 1.102678024291992e+02, 1.474749847412109e+02, 0e+00, 9.869938049316406e+01, 1.474284637451172e+02, 0e+00, 1.328924743652344e+02, 9.130952835083008e+00, 0e+00, 1.432172668457031e+02, 0e+00, 0e+00, 1.523483276367188e+02, 0e+00, 8.008386993408203e+00, 1.811162628173828e+02, 0e+00, 2.435140991210938e+01, 1.453072906494141e+02, 0e+00, 1.020910125732422e+02, 1.171209838867187e+02, 0e+00, 1.58721533203125e+02, 8.340573425292969e+01, 0e+00, 1.266774597167969e+02, 2.633928537368774e+00, 0e+00, 2.094806213378906e+02, 0e+00, 0e+00, 1.326024169921875e+02, 0e+00, 0e+00, 1.25699983215332e+02, 0e+00, 8.138613700866699e+00, 5.847423858642578e+01, 0e+00, 4.398899612426758e+01, 5.788007049560547e+01, 0e+00, 5.71522705078125e+01, 2.509006671905518e+01, 0e+00, 5.14e+01, 0e+00, 0e+00, 5.679375076293945e+01, 0e+00, 0e+00, 8.100175476074219e+01, 0e+00, 0e+00, 4.573645858764648e+01, 0e+00, 0e+00, 6.103160400390625e+01, 0e+00, 2.208180160522461e+01, 3.17247428894043e+01, 0e+00] -azi090til90.H=[0e+00, 3.465706115722656e+02, 5.25e-01, 0e+00, 2.851989685058594e+02, 0e+00, 0e+00, 1.132165481567383e+02, 0e+00, 0e+00, 9.003269195556641e+01, 0e+00, 0e+00, 8.396177673339844e+01, 0e+00, 8.378114318847656e+01, 4.664635162353515e+01, 0e+00, 4.395547668457031e+02, 6.048948974609375e+01, 0e+00, 5.477611572265625e+02, 2.750091438293457e+01, 0e+00, 3.652459411621094e+02, 9.31640625e-01, 0e+00, 1.830694000244141e+02, 0e+00, 0e+00, 1.313389892578125e+02, 0e+00, 4.393008470535278e-01, 8.56955062866211e+01, 0e+00, 1.503814544677734e+02, 8.404261779785156e+01, 0e+00, 4.551504211425781e+02, 6.934735412597657e+01, 0e+00, 4.66639892578125e+02, 6.43949592590332e+01, 0e+00, 1.356110595703125e+02, 9.130952835083008e+00, 0e+00, 1.919189910888672e+02, 0e+00, 0e+00, 1.523483276367188e+02, 0e+00, 1.334454345703125e+01, 1.811162628173828e+02, 0e+00, 2.435140991210938e+01, 1.386506286621094e+02, 0e+00, 1.137748794555664e+02, 1.155412658691406e+02, 0e+00, 1.763957672119141e+02, 5.558002243041992e+01, 0e+00, 3.586452575683594e+02, 2.633928537368774e+00, 0e+00, 2.157168090820313e+02, 0e+00, 0e+00, 1.326024169921875e+02, 0e+00, 0e+00, 1.25699983215332e+02, 0e+00, 1.66893424987793e+01, 5.847423858642578e+01, 0e+00, 2.657799957275391e+02, 5.788007049560547e+01, 0e+00, 4.719104858398438e+02, 2.509006671905518e+01, 0e+00, 3.981719055175781e+02, 0e+00, 0e+00, 1.761506713867188e+02, 0e+00, 0e+00, 8.100175476074219e+01, 0e+00, 0e+00, 4.573645858764648e+01, 0e+00, 0e+00, 6.103160400390625e+01, 0e+00, 1.783244674682617e+02, 3.17247428894043e+01, 0e+00] -azi315til90.H=[0e+00, 8.922635192871094e+01, 5.25e-01, 0e+00, 2.62385629272461e+02, 0e+00, 0e+00, 4.794891479492188e+02, 0e+00, 0e+00, 6.2681689453125e+02, 0e+00, 0e+00, 6.431288330078125e+02, 0e+00, 1.029561996459961e+01, 7.219250854492187e+02, 0e+00, 5.528524322509766e+01, 4.842198364257812e+02, 0e+00, 5.728817749023438e+01, 1.793047836303711e+02, 0e+00, 1.253976379394531e+02, 9.31640625e-01, 0e+00, 2.813295166015625e+02, 0e+00, 0e+00, 4.15826171875e+02, 0e+00, 4.393008470535278e-01, 4.822143249511719e+02, 0e+00, 3.670584106445312e+01, 4.8338515625e+02, 0e+00, 8.013905181884766e+01, 4.070876892089844e+02, 0e+00, 9.811147155761719e+01, 1.947506103515625e+02, 0e+00, 1.328924743652344e+02, 9.130952835083008e+00, 0e+00, 1.489537384033203e+02, 0e+00, 0e+00, 2.887448425292969e+02, 0e+00, 4.643041229248047e+00, 1.935163024902344e+02, 0e+00, 2.435140991210938e+01, 3.883947692871094e+02, 0e+00, 1.016416488647461e+02, 1.253196716308594e+02, 0e+00, 1.58721533203125e+02, 1.445823684692383e+02, 0e+00, 1.266774597167969e+02, 2.633928537368774e+00, 0e+00, 2.220051025390625e+02, 0e+00, 0e+00, 4.173914184570312e+02, 0e+00, 0e+00, 1.301527191162109e+02, 0e+00, 8.138613700866699e+00, 6.600983764648438e+02, 0e+00, 4.398899612426758e+01, 5.454936889648437e+02, 0e+00, 5.71522705078125e+01, 1.594615493774414e+02, 0e+00, 1.653519989013672e+02, 0e+00, 0e+00, 3.949665466308594e+02, 0e+00, 0e+00, 5.865599365234375e+02, 0e+00, 0e+00, 7.417383178710937e+02, 0e+00, 0e+00, 6.103160400390625e+01, 0e+00, 2.208180160522461e+01, 4.239383728027344e+02, 0e+00] -azi045til90.H=[0e+00, 4.972925476074219e+02, 5.25e-01, 0e+00, 5.231995727539063e+02, 0e+00, 0e+00, 5.152545166015625e+02, 0e+00, 0e+00, 3.209178771972656e+02, 0e+00, 0e+00, 9.587131042480469e+01, 0e+00, 7.802254486083984e+01, 4.664635162353515e+01, 0e+00, 4.448318359375e+02, 6.048948974609375e+01, 0e+00, 6.249745483398438e+02, 2.750091438293457e+01, 0e+00, 4.882040954589844e+02, 9.31640625e-01, 0e+00, 3.715912963867187e+02, 0e+00, 0e+00, 1.763888854980469e+02, 0e+00, 4.393008470535278e-01, 8.56955062866211e+01, 0e+00, 1.037815017700195e+02, 8.404261779785156e+01, 0e+00, 3.240078796386719e+02, 6.934735412597657e+01, 0e+00, 3.626582824707031e+02, 6.43949592590332e+01, 0e+00, 1.351491943359375e+02, 9.130952835083008e+00, 0e+00, 2.178283843994141e+02, 0e+00, 0e+00, 1.523483276367188e+02, 0e+00, 8.416273498535157e+00, 1.811162628173828e+02, 0e+00, 2.435140991210938e+01, 1.386506286621094e+02, 0e+00, 1.099033843994141e+02, 1.155412658691406e+02, 0e+00, 1.737815368652344e+02, 5.558002243041992e+01, 0e+00, 4.034436340332031e+02, 2.633928537368774e+00, 0e+00, 2.308243988037109e+02, 0e+00, 0e+00, 2.321000518798828e+02, 0e+00, 0e+00, 1.257148330688477e+02, 0e+00, 1.505635738372803e+01, 5.847423858642578e+01, 0e+00, 2.61800634765625e+02, 5.788007049560547e+01, 0e+00, 5.673132446289062e+02, 2.509006671905518e+01, 0e+00, 6.557614990234375e+02, 0e+00, 0e+00, 5.637627075195312e+02, 0e+00, 0e+00, 4.082666625976562e+02, 0e+00, 0e+00, 2.0964443359375e+02, 0e+00, 0e+00, 6.103160400390625e+01, 0e+00, 2.140537353515625e+02, 3.17247428894043e+01, 0e+00] -azi270til30.H=[0e+00, 1.496834411621094e+02, 9.796633720397949e-01, 0e+00, 3.836981689453125e+02, 0e+00, 0e+00, 6.072848022460937e+02, 0e+00, 0e+00, 7.41085205078125e+02, 0e+00, 0e+00, 7.148002563476563e+02, 0e+00, 1.921188926696777e+01, 7.118451904296875e+02, 0e+00, 1.031636657714844e+02, 4.703203552246094e+02, 0e+00, 3.133642333984375e+02, 1.641285385131836e+02, 0e+00, 5.739246948242187e+02, 1.738465070724487e+00, 0e+00, 8.2302470703125e+02, 0e+00, 0e+00, 9.651663818359375e+02, 0e+00, 8.197465419769288e-01, 9.836577880859375e+02, 0e+00, 6.849403381347656e+01, 8.85052490234375e+02, 0e+00, 1.905666412353516e+02, 6.885769653320312e+02, 0e+00, 4.041473876953125e+02, 3.1942109375e+02, 0e+00, 2.526818420410156e+02, 1.703858947753906e+01, 0e+00, 8.003987548828125e+02, 0e+00, 0e+00, 8.906054077148438e+02, 0e+00, 8.664032745361329e+00, 3.698975341796875e+02, 0e+00, 4.544034957885742e+01, 7.333651123046875e+02, 0e+00, 1.914204162597656e+02, 2.300745758056641e+02, 0e+00, 3.065453430175781e+02, 2.053422912597656e+02, 0e+00, 5.957205444335938e+02, 4.914977550506592e+00, 0e+00, 4.416776794433594e+02, 0e+00, 0e+00, 8.130789794921875e+02, 0e+00, 0e+00, 2.407658050537109e+02, 0e+00, 1.518686008453369e+01, 7.497371948242187e+02, 0e+00, 8.208458404541015e+01, 5.059700805664062e+02, 0e+00, 1.630091735839844e+02, 1.249147445678711e+02, 0e+00, 3.496875671386719e+02, 0e+00, 0e+00, 5.243905029296875e+02, 0e+00, 0e+00, 6.459950561523438e+02, 0e+00, 0e+00, 6.566670166015625e+02, 0e+00, 0e+00, 1.138865219116211e+02, 0e+00, 4.120520210266113e+01, 2.744338012695313e+02, 0e+00] -azi000til30.H=[0e+00, 4.602930419921875e+02, 9.796633720397949e-01, 0e+00, 6.823969482421875e+02, 0e+00, 0e+00, 9.114042724609375e+02, 0e+00, 0e+00, 9.043456420898438e+02, 0e+00, 0e+00, 7.23221533203125e+02, 0e+00, 4.108671951293945e+01, 5.70725341796875e+02, 0e+00, 3.624628723144531e+02, 2.927921752929688e+02, 0e+00, 7.147791137695312e+02, 6.419117431640626e+01, 0e+00, 8.422724609375e+02, 1.738465070724487e+00, 0e+00, 1.001460681152344e+03, 0e+00, 0e+00, 9.97021484375e+02, 0e+00, 8.197465419769288e-01, 8.561638793945312e+02, 0e+00, 9.177118682861328e+01, 6.326625122070312e+02, 0e+00, 3.630079406738281e+02, 3.716308288574219e+02, 0e+00, 5.9121025390625e+02, 1.44212223815918e+02, 0e+00, 2.542775970458984e+02, 1.703858947753906e+01, 0e+00, 8.5315673828125e+02, 0e+00, 0e+00, 8.467802734375e+02, 0e+00, 8.664032745361329e+00, 3.625836181640625e+02, 0e+00, 4.544034957885742e+01, 5.503382568359375e+02, 0e+00, 1.972623504638672e+02, 2.215804779052734e+02, 0e+00, 3.171943664550781e+02, 1.145824279785156e+02, 0e+00, 7.914237915039063e+02, 4.914977550506592e+00, 0e+00, 4.567700012207031e+02, 0e+00, 0e+00, 8.834344482421875e+02, 0e+00, 0e+00, 2.406181884765625e+02, 0e+00, 1.670971488952637e+01, 6.36376904296875e+02, 0e+00, 1.987055206298828e+02, 3.603348449707031e+02, 0e+00, 5.237474853515625e+02, 7.241075897216797e+01, 0e+00, 7.77035693359375e+02, 0e+00, 0e+00, 8.828716918945313e+02, 0e+00, 0e+00, 8.774063110351562e+02, 0e+00, 0e+00, 7.725674682617188e+02, 0e+00, 0e+00, 1.138865219116211e+02, 0e+00, 1.384762008666992e+02, 2.074479309082031e+02, 0e+00] -azi090til30.H=[0e+00, 4.382298156738281e+02, 9.796633720397949e-01, 0e+00, 5.681214599609375e+02, 0e+00, 0e+00, 6.32574755859375e+02, 0e+00, 0e+00, 5.247819213867188e+02, 0e+00, 0e+00, 3.278307189941406e+02, 0e+00, 6.668207550048828e+01, 1.008737716674805e+02, 0e+00, 4.712813598632812e+02, 1.128749267578125e+02, 0e+00, 8.0383720703125e+02, 5.131740570068359e+01, 0e+00, 8.304676025390625e+02, 1.738465070724487e+00, 0e+00, 8.868494140625e+02, 0e+00, 0e+00, 7.95858642578125e+02, 0e+00, 8.197465419769288e-01, 5.757827514648437e+02, 0e+00, 1.580171356201172e+02, 3.502847106933594e+02, 0e+00, 5.655780029296875e+02, 1.399013732910156e+02, 0e+00, 7.726758056640625e+02, 1.201626235961914e+02, 0e+00, 2.55400439453125e+02, 1.703858947753906e+01, 0e+00, 8.491004760742187e+02, 0e+00, 0e+00, 7.503333740234375e+02, 0e+00, 1.41620849609375e+01, 3.538154602050781e+02, 0e+00, 4.544034957885742e+01, 3.737424682617187e+02, 0e+00, 2.035536468505859e+02, 2.156029388427734e+02, 0e+00, 3.242195678710938e+02, 1.037137390136719e+02, 0e+00, 8.276883666992187e+02, 4.914977550506592e+00, 0e+00, 4.479138610839844e+02, 0e+00, 0e+00, 6.820582275390625e+02, 0e+00, 0e+00, 2.374696319580078e+02, 0e+00, 2.036886024475098e+01, 2.109644134521484e+02, 0e+00, 2.66480419921875e+02, 1.08005680847168e+02, 0e+00, 5.777673950195312e+02, 4.681870117187501e+01, 0e+00, 6.9645947265625e+02, 0e+00, 0e+00, 6.43747412109375e+02, 0e+00, 0e+00, 5.199226684570312e+02, 0e+00, 0e+00, 2.804198059082031e+02, 0e+00, 0e+00, 1.138865219116211e+02, 0e+00, 1.589742065429687e+02, 5.919917602539063e+01, 0e+00] -azi000til00.HPer=[0e+00, 3.304580810546875e+02, 9.714207649230957e-01, 0e+00, 5.339476806640625e+02, 0e+00, 0e+00, 7.026636840820313e+02, 0e+00, 0e+00, 7.169258422851562e+02, 0e+00, 0e+00, 5.88978173828125e+02, 0e+00, 3.297820663452148e+01, 4.575970764160156e+02, 0e+00, 3.137793701171875e+02, 2.582395935058594e+02, 0e+00, 6.361563110351562e+02, 5.654494171142578e+01, 0e+00, 7.940134765625e+02, 1.86328125e+00, 0e+00, 9.687527709960938e+02, 0e+00, 0e+00, 9.964132690429688e+02, 0e+00, 8.786016941070556e-01, 8.87087548828125e+02, 0e+00, 1.111533126831055e+02, 7.00221142578125e+02, 0e+00, 4.241624633789062e+02, 4.635005310058594e+02, 0e+00, 6.642613647460937e+02, 2.044978546142578e+02, 0e+00, 2.727830017089844e+02, 1.585429382324219e+01, 0e+00, 9.301841186523437e+02, 0e+00, 0e+00, 9.238291015625e+02, 0e+00, 1.061087226867676e+01, 3.898173706054687e+02, 0e+00, 4.870281982421875e+01, 6.177394409179688e+02, 0e+00, 2.123143280029297e+02, 2.388965179443359e+02, 0e+00, 3.396183227539062e+02, 1.397739929199219e+02, 0e+00, 8.022109741210937e+02, 5.267857074737549e+00, 0e+00, 4.812016479492187e+02, 0e+00, 0e+00, 8.427085571289062e+02, 0e+00, 0e+00, 2.566641784667969e+02, 0e+00, 1.732412147521973e+01, 5.456177856445313e+02, 0e+00, 1.728495330810547e+02, 2.921416137695313e+02, 0e+00, 4.188483581542969e+02, 4.340665969848632e+01, 0e+00, 5.960450927734375e+02, 0e+00, 0e+00, 6.656428466796875e+02, 0e+00, 0e+00, 6.606173095703125e+02, 0e+00, 0e+00, 5.339555297851563e+02, 0e+00, 0e+00, 1.220639892578125e+02, 0e+00, 8.994493789672852e+01, 1.132317840576172e+02, 0e+00] -azi000til90.HPer=[0e+00, 4.316469970703125e+02, 8.997452735900879e-01, 0e+00, 5.760633056640625e+02, 0e+00, 0e+00, 7.561167724609375e+02, 0e+00, 0e+00, 7.149462890625e+02, 0e+00, 0e+00, 5.453658813476562e+02, 0e+00, 3.085879516601562e+01, 4.238933227539063e+02, 0e+00, 2.387714874267578e+02, 1.967322845458984e+02, 0e+00, 4.03317919921875e+02, 3.154803314208984e+01, 0e+00, 4.223623718261719e+02, 7.555149793624878e-01, 0e+00, 4.317363586425781e+02, 0e+00, 0e+00, 3.661806640625e+02, 0e+00, 3.583904385566712e-01, 2.370712799072266e+02, 0e+00, 3.14039363861084e+01, 1.015092590332031e+02, 0e+00, 6.457248535156251e+01, 5.905529937744141e+01, 0e+00, 7.860571899414063e+01, 5.0028515625e+01, 0e+00, 1.088378494262695e+02, 6.65562105178833e+00, 0e+00, 1.375143646240234e+02, 0e+00, 0e+00, 1.442107543945312e+02, 0e+00, 3.838451957702637e+00, 1.356453216552734e+02, 0e+00, 2.050717353820801e+01, 1.00288899230957e+02, 0e+00, 8.084797058105468e+01, 8.589679412841797e+01, 0e+00, 1.3210517578125e+02, 3.975556678771973e+01, 0e+00, 2.86515869140625e+02, 2.178300142288208e+00, 0e+00, 2.156577850341797e+02, 0e+00, 0e+00, 4.348670959472656e+02, 0e+00, 0e+00, 1.157714447021484e+02, 0e+00, 7.990383148193359e+00, 4.106042236328125e+02, 0e+00, 1.367082626342773e+02, 2.812228576660156e+02, 0e+00, 3.993996948242187e+02, 1.204694107055664e+02, 0e+00, 6.17420263671875e+02, 0e+00, 0e+00, 7.2290908203125e+02, 0e+00, 0e+00, 7.594580078125e+02, 0e+00, 0e+00, 7.2030380859375e+02, 0e+00, 0e+00, 6.360218505859375e+01, 0e+00, 1.374127960205078e+02, 2.895751525878906e+02, 0e+00] -azi270til90.HPer=[0e+00, 4.950800552368164e+01, 1.401133823394775e+00, 0e+00, 7.839180297851563e+01, 0e+00, 0e+00, 7.162865447998047e+01, 0e+00, 0e+00, 3.280420227050781e+02, 0e+00, 0e+00, 5.254614868164062e+02, 0e+00, 8.563985824584961e+00, 7.423259033203125e+02, 0e+00, 4.741672515869141e+01, 6.246083374023438e+02, 0e+00, 4.763758239746094e+01, 4.463243041992188e+02, 0e+00, 7.279244384765624e+01, 7.555149793624878e-01, 0e+00, 6.79998046875e+01, 0e+00, 0e+00, 2.859702453613281e+02, 0e+00, 3.583904385566712e-01, 5.314058776855469e+02, 0e+00, 3.14039363861084e+01, 7.003871459960938e+02, 0e+00, 6.457248535156251e+01, 7.136497314453125e+02, 0e+00, 7.101280364990234e+01, 4.132254821777344e+02, 0e+00, 1.067355026245117e+02, 3.374788665771484e+01, 0e+00, 5.988301391601563e+01, 0e+00, 0e+00, 2.642726745605469e+02, 0e+00, 3.838451957702637e+00, 1.990999542236328e+02, 0e+00, 2.050717353820801e+01, 5.715961303710938e+02, 0e+00, 8.084797058105468e+01, 1.661331268310547e+02, 0e+00, 1.219920700073242e+02, 3.313249206542969e+02, 0e+00, 7.866169586181641e+01, 2.178300142288208e+00, 0e+00, 1.437348571777344e+02, 0e+00, 0e+00, 2.512569122314453e+02, 0e+00, 0e+00, 1.173714263916016e+02, 0e+00, 6.757945537567139e+00, 6.712646850585937e+02, 0e+00, 3.806005058288574e+01, 6.208937866210938e+02, 0e+00, 4.908652267456055e+01, 3.827927124023438e+02, 0e+00, 4.433444595336914e+01, 0e+00, 0e+00, 4.711498413085938e+01, 0e+00, 0e+00, 2.152616119384766e+02, 0e+00, 0e+00, 4.618229064941406e+02, 0e+00, 0e+00, 6.461148681640626e+01, 0e+00, 1.939106140136719e+01, 4.589603881835938e+02, 0e+00] -azi180til90.HPer=[0e+00, 4.950800552368164e+01, 5.695384979248047e-01, 0e+00, 7.839180297851563e+01, 0e+00, 0e+00, 6.836762237548828e+01, 0e+00, 0e+00, 7.173796844482422e+01, 0e+00, 0e+00, 6.772849273681641e+01, 0e+00, 8.563985824584961e+00, 4.454755477905273e+01, 0e+00, 4.741672515869141e+01, 4.960411834716797e+01, 0e+00, 4.763758239746094e+01, 1.673855724334717e+01, 0e+00, 7.279244384765624e+01, 7.555149793624878e-01, 0e+00, 6.79998046875e+01, 0e+00, 0e+00, 7.281370544433594e+01, 0e+00, 3.583904385566712e-01, 6.023244323730469e+01, 0e+00, 5.229468154907227e+01, 6.582033004760743e+01, 0e+00, 1.006812347412109e+02, 1.511851196289062e+02, 0e+00, 7.169555206298828e+01, 1.628804901123047e+02, 0e+00, 1.067355026245117e+02, 2.008728790283203e+01, 0e+00, 5.988301391601563e+01, 0e+00, 0e+00, 7.213029479980469e+01, 0e+00, 7.203797912597656e+00, 1.290467254638672e+02, 0e+00, 2.050717353820801e+01, 1.085593780517578e+02, 0e+00, 8.209270324707032e+01, 9.408236846923828e+01, 0e+00, 1.219920700073242e+02, 9.285050506591797e+01, 0e+00, 7.866169586181641e+01, 2.178300142288208e+00, 0e+00, 1.437348571777344e+02, 0e+00, 0e+00, 8.02911376953125e+01, 0e+00, 0e+00, 9.99244888305664e+01, 0e+00, 6.757945537567139e+00, 5.193552017211914e+01, 0e+00, 3.806005058288574e+01, 4.931517333984375e+01, 0e+00, 4.908652267456055e+01, 1.420899963378906e+01, 0e+00, 4.433444595336914e+01, 0e+00, 0e+00, 4.711498413085938e+01, 0e+00, 0e+00, 6.702304840087891e+01, 0e+00, 0e+00, 4.223433303833008e+01, 0e+00, 0e+00, 4.869510650634766e+01, 0e+00, 1.939106140136719e+01, 2.536072502136231e+01, 0e+00] -azi090til90.HPer=[0e+00, 3.810328735351562e+02, 5.695384979248047e-01, 0e+00, 3.0084814453125e+02, 0e+00, 0e+00, 1.014561111450195e+02, 0e+00, 0e+00, 7.173796844482422e+01, 0e+00, 0e+00, 6.772849273681641e+01, 0e+00, 8.204950714111328e+01, 4.454755477905273e+01, 0e+00, 4.88756396484375e+02, 4.960411834716797e+01, 0e+00, 6.062356811523438e+02, 1.674716377258301e+01, 0e+00, 3.926539672851562e+02, 7.555149793624878e-01, 0e+00, 1.471941986083984e+02, 0e+00, 0e+00, 7.281370544433594e+01, 0e+00, 3.583904385566712e-01, 6.023244323730469e+01, 0e+00, 1.576119537353516e+02, 6.582033004760743e+01, 0e+00, 5.133862243652344e+02, 5.905529937744141e+01, 0e+00, 5.26102978515625e+02, 5.0028515625e+01, 0e+00, 1.189164398193359e+02, 6.65562105178833e+00, 0e+00, 1.263551116943359e+02, 0e+00, 0e+00, 7.213029479980469e+01, 0e+00, 1.25399543762207e+01, 1.290467254638672e+02, 0e+00, 2.050717353820801e+01, 1.000162887573242e+02, 0e+00, 1.148564834594727e+02, 8.589679412841797e+01, 0e+00, 1.714260345458984e+02, 3.975556678771973e+01, 0e+00, 3.809523742675781e+02, 2.178300142288208e+00, 0e+00, 1.624305297851562e+02, 0e+00, 0e+00, 8.02911376953125e+01, 0e+00, 0e+00, 9.99244888305664e+01, 0e+00, 1.530867481231689e+01, 5.193552017211914e+01, 0e+00, 2.915822357177734e+02, 4.931517333984375e+01, 0e+00, 5.224278442382813e+02, 1.420899963378906e+01, 0e+00, 4.356283630371094e+02, 0e+00, 0e+00, 1.820834991455078e+02, 0e+00, 0e+00, 6.702304840087891e+01, 0e+00, 0e+00, 4.223433303833008e+01, 0e+00, 0e+00, 4.869510650634766e+01, 0e+00, 1.793598373413086e+02, 2.536072502136231e+01, 0e+00] -azi315til90.HPer=[0e+00, 8.529758300781251e+01, 1.391056632995606e+00, 0e+00, 2.729983184814453e+02, 0e+00, 0e+00, 5.335884887695313e+02, 0e+00, 0e+00, 7.077892456054688e+02, 0e+00, 0e+00, 7.291352294921875e+02, 0e+00, 8.563985824584961e+00, 8.061893310546875e+02, 0e+00, 4.741672515869141e+01, 5.602288208007812e+02, 0e+00, 4.763758239746094e+01, 3.309759643554688e+02, 0e+00, 9.371298675537109e+01, 7.555149793624878e-01, 0e+00, 2.692014892578125e+02, 0e+00, 0e+00, 4.309799194335938e+02, 0e+00, 3.583904385566712e-01, 5.184463256835937e+02, 0e+00, 3.14039363861084e+01, 5.397627075195312e+02, 0e+00, 6.457248535156251e+01, 4.567778564453125e+02, 0e+00, 7.101280364990234e+01, 2.270491607666016e+02, 0e+00, 1.067355026245117e+02, 1.631512069702148e+01, 0e+00, 6.775990905761719e+01, 0e+00, 0e+00, 2.589640502929688e+02, 0e+00, 3.838451957702637e+00, 1.832477569580078e+02, 0e+00, 2.050717353820801e+01, 4.276254760742187e+02, 0e+00, 8.084797058105468e+01, 1.368443817138672e+02, 0e+00, 1.219920700073242e+02, 2.083824462890625e+02, 0e+00, 7.866169586181641e+01, 2.178300142288208e+00, 0e+00, 1.813722198486328e+02, 0e+00, 0e+00, 4.519052734375e+02, 0e+00, 0e+00, 1.234668243408203e+02, 0e+00, 6.757945537567139e+00, 7.434844482421875e+02, 0e+00, 3.806005058288574e+01, 6.174658081054688e+02, 0e+00, 4.908652267456055e+01, 3.499744934082031e+02, 0e+00, 1.728807220458984e+02, 0e+00, 0e+00, 4.295364318847656e+02, 0e+00, 0e+00, 6.61468994140625e+02, 0e+00, 0e+00, 8.183957763671875e+02, 0e+00, 0e+00, 7.049058227539062e+01, 0e+00, 1.939106140136719e+01, 5.18789794921875e+02, 0e+00] -azi045til90.HPer=[0e+00, 5.541445678710937e+02, 5.695384979248047e-01, 0e+00, 5.87599072265625e+02, 0e+00, 0e+00, 5.757708862304687e+02, 0e+00, 0e+00, 3.453205871582031e+02, 0e+00, 0e+00, 8.175846710205079e+01, 0e+00, 7.629090881347656e+01, 4.454755477905273e+01, 0e+00, 4.947992492675781e+02, 4.960411834716797e+01, 0e+00, 6.94130029296875e+02, 1.674716377258301e+01, 0e+00, 5.461519653320313e+02, 7.555149793624878e-01, 0e+00, 3.811992797851562e+02, 0e+00, 0e+00, 1.295310363769531e+02, 0e+00, 3.583904385566712e-01, 6.023244323730469e+01, 0e+00, 1.058744964599609e+02, 6.582033004760743e+01, 0e+00, 3.563989868164062e+02, 5.905529937744141e+01, 0e+00, 3.976963623046875e+02, 5.0028515625e+01, 0e+00, 1.168353088378906e+02, 6.65562105178833e+00, 0e+00, 1.617795440673828e+02, 0e+00, 0e+00, 7.213029479980469e+01, 0e+00, 7.611684417724609e+00, 1.290467254638672e+02, 0e+00, 2.050717353820801e+01, 1.000162887573242e+02, 0e+00, 1.040154586791992e+02, 8.589679412841797e+01, 0e+00, 1.640982086181641e+02, 3.975556678771973e+01, 0e+00, 4.393885864257812e+02, 2.178300142288208e+00, 0e+00, 2.078118865966797e+02, 0e+00, 0e+00, 2.101231384277344e+02, 0e+00, 0e+00, 9.999746398925781e+01, 0e+00, 1.367568874359131e+01, 5.193552017211914e+01, 0e+00, 2.87082144165039e+02, 4.931517333984375e+01, 0e+00, 6.314982177734375e+02, 1.420899963378906e+01, 0e+00, 7.262538818359375e+02, 0e+00, 0e+00, 6.204107177734375e+02, 0e+00, 0e+00, 4.518280029296875e+02, 0e+00, 0e+00, 2.250079345703125e+02, 0e+00, 0e+00, 4.868744659423828e+01, 0e+00, 2.159600387573242e+02, 2.536072502136231e+01, 0e+00] -azi270til30.HPer=[0e+00, 1.297676452636719e+02, 1.268061256408691e+00, 0e+00, 3.659623291015625e+02, 0e+00, 0e+00, 6.141355712890625e+02, 0e+00, 0e+00, 7.701113891601562e+02, 0e+00, 0e+00, 7.561551147460938e+02, 0e+00, 1.834607124328613e+01, 7.5889130859375e+02, 0e+00, 7.864511260986328e+01, 5.189552368164062e+02, 0e+00, 2.877167785644531e+02, 2.656244506835938e+02, 0e+00, 5.504584350585938e+02, 1.650402188301086e+00, 0e+00, 8.219583251953125e+02, 0e+00, 0e+00, 9.926079711914062e+02, 0e+00, 7.79291319847107e-01, 1.023047778320313e+03, 0e+00, 6.300104904174805e+01, 9.4408046875e+02, 0e+00, 1.5535927734375e+02, 7.433617309570312e+02, 0e+00, 3.67435205078125e+02, 3.650846313476562e+02, 0e+00, 2.393062347412109e+02, 2.77512149810791e+01, 0e+00, 7.93011083984375e+02, 0e+00, 0e+00, 9.183320922851562e+02, 0e+00, 8.261738204956055e+00, 3.880763244628906e+02, 0e+00, 4.351823043823242e+01, 7.895302124023438e+02, 0e+00, 1.730737182617187e+02, 2.537011169433594e+02, 0e+00, 2.795799743652344e+02, 2.709584533691406e+02, 0e+00, 5.670498168945312e+02, 4.687163352966309e+00, 0e+00, 4.253941345214844e+02, 0e+00, 0e+00, 8.391209716796875e+02, 0e+00, 0e+00, 2.390773406982422e+02, 0e+00, 1.449652576446533e+01, 7.984657592773438e+02, 0e+00, 7.075231628417968e+01, 5.47545849609375e+02, 0e+00, 1.376248504638672e+02, 2.22864485168457e+02, 0e+00, 3.354756042480469e+02, 0e+00, 0e+00, 5.249668823242188e+02, 0e+00, 0e+00, 6.66136474609375e+02, 0e+00, 0e+00, 6.859139282226563e+02, 0e+00, 0e+00, 1.1715634765625e+02, 0e+00, 3.909311027526856e+01, 3.181216674804688e+02, 0e+00] -azi000til30.HPer=[0e+00, 4.865995788574219e+02, 1.017366886138916e+00, 0e+00, 7.2602626953125e+02, 0e+00, 0e+00, 9.729238891601562e+02, 0e+00, 0e+00, 9.635634765625e+02, 0e+00, 0e+00, 7.661072875976563e+02, 0e+00, 4.022090148925781e+01, 5.996750122070313e+02, 0e+00, 3.764064025878906e+02, 3.050172302246094e+02, 0e+00, 7.448559814453125e+02, 5.820382499694824e+01, 0e+00, 8.851741943359375e+02, 1.650402188301086e+00, 0e+00, 1.043423779296875e+03, 0e+00, 0e+00, 1.032713134765625e+03, 0e+00, 7.79291319847107e-01, 8.758804809570313e+02, 0e+00, 8.884443664550781e+01, 6.446415405273438e+02, 0e+00, 3.617117736816406e+02, 3.699995910644531e+02, 0e+00, 5.984353759765625e+02, 1.270601531982422e+02, 0e+00, 2.464478698730469e+02, 1.400078392028809e+01, 0e+00, 8.650627807617187e+02, 0e+00, 0e+00, 8.583010864257812e+02, 0e+00, 8.261738204956055e+00, 3.563490295410156e+02, 0e+00, 4.351823043823242e+01, 5.496050903320313e+02, 0e+00, 1.894556060791016e+02, 2.094901641845703e+02, 0e+00, 3.093535095214844e+02, 9.862631072998047e+01, 0e+00, 8.221222290039062e+02, 4.687163352966309e+00, 0e+00, 4.707034301757812e+02, 0e+00, 0e+00, 9.309260864257812e+02, 0e+00, 0e+00, 2.382773468017578e+02, 0e+00, 1.601938056945801e+01, 6.681355346679687e+02, 0e+00, 2.041872741699219e+02, 3.777103576660156e+02, 0e+00, 5.494521118164063e+02, 9.170284118652344e+01, 0e+00, 8.176654418945312e+02, 0e+00, 0e+00, 9.303482055664062e+02, 0e+00, 0e+00, 9.38234619140625e+02, 0e+00, 0e+00, 8.151543823242188e+02, 0e+00, 0e+00, 1.166516983032227e+02, 0e+00, 1.387239456176758e+02, 2.334290588378906e+02, 0e+00] -azi090til30.HPer=[0e+00, 4.612925109863281e+02, 9.482619285583497e-01, 0e+00, 5.884186767578125e+02, 0e+00, 0e+00, 6.439630126953125e+02, 0e+00, 0e+00, 5.138073120117188e+02, 0e+00, 0e+00, 2.98422119140625e+02, 0e+00, 6.581626129150391e+01, 6.975933990478515e+01, 0e+00, 5.013988586425781e+02, 8.821316223144531e+01, 0e+00, 8.463148681640625e+02, 3.268125095367431e+01, 0e+00, 8.703199584960937e+02, 1.650402188301086e+00, 0e+00, 9.011526733398438e+02, 0e+00, 0e+00, 7.79451416015625e+02, 0e+00, 7.79291319847107e-01, 5.518743530273438e+02, 0e+00, 1.623938140869141e+02, 3.095136779785156e+02, 0e+00, 6.041730224609375e+02, 9.725174713134766e+01, 0e+00, 8.225253662109375e+02, 9.45365707397461e+01, 0e+00, 2.514871673583984e+02, 1.400078392028809e+01, 0e+00, 8.594831665039062e+02, 0e+00, 0e+00, 7.26189697265625e+02, 0e+00, 1.375979080200195e+01, 3.180231079101562e+02, 0e+00, 4.351823043823242e+01, 3.179503845214844e+02, 0e+00, 2.070822235107422e+02, 1.782572570800781e+02, 0e+00, 3.290139343261719e+02, 7.866440353393554e+01, 0e+00, 8.693404663085937e+02, 4.687163352966309e+00, 0e+00, 4.440898193359375e+02, 0e+00, 0e+00, 6.681552124023438e+02, 0e+00, 0e+00, 2.216304046630859e+02, 0e+00, 1.967852592468262e+01, 1.791365966796875e+02, 0e+00, 2.816242645263672e+02, 8.400884704589843e+01, 0e+00, 6.10966162109375e+02, 2.767211227416992e+01, 0e+00, 7.267695434570312e+02, 0e+00, 0e+00, 6.599354370117187e+02, 0e+00, 0e+00, 5.178978881835938e+02, 0e+00, 0e+00, 2.66325341796875e+02, 0e+00, 0e+00, 1.021971328735352e+02, 0e+00, 1.596974655151367e+02, 4.783673400878907e+01, 0e+00] +azi000til00.H=[0e+00, 2.947524108886719e+02, 1.05e+00, 0e+00, 5.091132080078125e+02, 0e+00, 0e+00, 6.941461791992188e+02, 0e+00, 0e+00, 7.362291870117188e+02, 0e+00, 0e+00, 6.291197998046875e+02, 0e+00, 2.438881492614746e+01, 5.249228698730469e+02, 0e+00, 2.677683441162109e+02, 3.116130615234375e+02, 0e+00, 5.753381591796875e+02, 8.926682434082031e+01, 0e+00, 7.597738159179687e+02, 1.86328125e+00, 0e+00, 9.555530517578125e+02, 0e+00, 0e+00, 1.010142944335938e+03, 0e+00, 8.786016941070556e-01, 9.285855834960937e+02, 0e+00, 9.793535614013672e+01, 7.579265625e+02, 0e+00, 3.795215515136719e+02, 5.253729370117187e+02, 0e+00, 6.188868408203125e+02, 2.349619659423828e+02, 0e+00, 2.724232299804688e+02, 1.826190567016602e+01, 0e+00, 9.201421142578125e+02, 0e+00, 0e+00, 9.356365966796875e+02, 0e+00, 9.61632423400879e+00, 3.914740112304688e+02, 0e+00, 4.870281982421875e+01, 6.5675634765625e+02, 0e+00, 2.108648773193359e+02, 2.406180023193359e+02, 0e+00, 3.37431591796875e+02, 1.573122283935547e+02, 0e+00, 7.714080078125e+02, 5.267857074737549e+00, 0e+00, 4.799868225097656e+02, 0e+00, 0e+00, 8.529388427734375e+02, 0e+00, 0e+00, 2.569959716796875e+02, 0e+00, 1.633216667175293e+01, 6.03449462890625e+02, 0e+00, 1.46542985534668e+02, 3.465020935058594e+02, 0e+00, 3.6816689453125e+02, 7.191929473876954e+01, 0e+00, 5.5118955078125e+02, 0e+00, 0e+00, 6.461560180664062e+02, 0e+00, 0e+00, 6.696596069335938e+02, 0e+00, 0e+00, 5.719918090820313e+02, 0e+00, 0e+00, 1.220632080078125e+02, 0e+00, 7.130993194580078e+01, 1.515887145996094e+02, 0e+00] +azi000til90.H=[0e+00, 3.712577880859375e+02, 5.25e-01, 0e+00, 5.002307250976563e+02, 0e+00, 0e+00, 6.634791015625e+02, 0e+00, 0e+00, 6.43369873046875e+02, 0e+00, 0e+00, 5.096319580078125e+02, 0e+00, 2.791375732421875e+01, 4.196788330078125e+02, 0e+00, 1.968668334960938e+02, 2.116449035644531e+02, 0e+00, 3.365325256347656e+02, 4.779514999389649e+01, 0e+00, 3.702151428222656e+02, 9.31640625e-01, 0e+00, 4.051071472167969e+02, 0e+00, 0e+00, 3.718340454101562e+02, 0e+00, 4.393008470535278e-01, 2.611779052734375e+02, 0e+00, 3.670584106445312e+01, 1.454495666503906e+02, 0e+00, 8.013905181884766e+01, 6.934735412597657e+01, 0e+00, 9.811147155761719e+01, 6.43949592590332e+01, 0e+00, 1.3316953125e+02, 9.130952835083008e+00, 0e+00, 1.945646118164063e+02, 0e+00, 0e+00, 2.113994750976562e+02, 0e+00, 4.643041229248047e+00, 1.834726226806641e+02, 0e+00, 2.435140991210938e+01, 1.534630645751953e+02, 0e+00, 1.016416488647461e+02, 1.155412658691406e+02, 0e+00, 1.611549407958984e+02, 5.558002243041992e+01, 0e+00, 2.693462219238281e+02, 2.633928537368774e+00, 0e+00, 2.327690216064453e+02, 0e+00, 0e+00, 4.099065856933594e+02, 0e+00, 0e+00, 1.288819427490234e+02, 0e+00, 8.830961227416992e+00, 4.020154235839844e+02, 0e+00, 1.159073974609375e+02, 2.866383422851562e+02, 0e+00, 3.362773254394531e+02, 7.671101455688476e+01, 0e+00, 5.349036987304687e+02, 0e+00, 0e+00, 6.437914306640625e+02, 0e+00, 0e+00, 6.748228149414062e+02, 0e+00, 0e+00, 6.744961791992188e+02, 0e+00, 0e+00, 6.103160400390625e+01, 0e+00, 1.271823165893555e+02, 2.629848571777344e+02, 0e+00] +azi270til90.H=[0e+00, 5.802423706054687e+01, 5.25e-01, 0e+00, 1.007756622314453e+02, 0e+00, 0e+00, 8.516464385986328e+01, 0e+00, 0e+00, 2.090223999023438e+02, 0e+00, 0e+00, 3.941171325683594e+02, 0e+00, 1.029561996459961e+01, 5.971817626953125e+02, 0e+00, 5.528524322509766e+01, 5.101902099609375e+02, 0e+00, 5.728817749023438e+01, 2.313282501220703e+02, 0e+00, 1.087030303955078e+02, 9.31640625e-01, 0e+00, 1.192446762084961e+02, 0e+00, 0e+00, 2.005019378662109e+02, 0e+00, 4.393008470535278e-01, 3.98455078125e+02, 0e+00, 3.670584106445312e+01, 5.513332275390625e+02, 0e+00, 8.013905181884766e+01, 5.879826049804688e+02, 0e+00, 9.811147155761719e+01, 3.259920715332031e+02, 0e+00, 1.328924743652344e+02, 9.130952835083008e+00, 0e+00, 1.432172668457031e+02, 0e+00, 0e+00, 2.171307830810547e+02, 0e+00, 4.643041229248047e+00, 1.938064147949219e+02, 0e+00, 2.435140991210938e+01, 4.565538269042969e+02, 0e+00, 1.016416488647461e+02, 1.300202941894531e+02, 0e+00, 1.58721533203125e+02, 2.064139465332031e+02, 0e+00, 1.266774597167969e+02, 2.633928537368774e+00, 0e+00, 2.094806213378906e+02, 0e+00, 0e+00, 1.79305908203125e+02, 0e+00, 0e+00, 1.281769256591797e+02, 0e+00, 8.138613700866699e+00, 5.239892333984375e+02, 0e+00, 4.398899612426758e+01, 5.114480346679687e+02, 0e+00, 5.71522705078125e+01, 1.68117318725586e+02, 0e+00, 5.14e+01, 0e+00, 0e+00, 5.679375076293945e+01, 0e+00, 0e+00, 1.120426712036133e+02, 0e+00, 0e+00, 3.300512573242187e+02, 0e+00, 0e+00, 6.103160400390625e+01, 0e+00, 2.208180160522461e+01, 3.542611328125e+02, 0e+00] +azi180til90.H=[0e+00, 5.802423706054687e+01, 5.25e-01, 0e+00, 1.007756622314453e+02, 0e+00, 0e+00, 8.516464385986328e+01, 0e+00, 0e+00, 9.003269195556641e+01, 0e+00, 0e+00, 8.396177673339844e+01, 0e+00, 1.029561996459961e+01, 4.664635162353515e+01, 0e+00, 5.528524322509766e+01, 6.048948974609375e+01, 0e+00, 5.728817749023438e+01, 2.750091438293457e+01, 0e+00, 1.087030303955078e+02, 9.31640625e-01, 0e+00, 1.192446762084961e+02, 0e+00, 0e+00, 1.313389892578125e+02, 0e+00, 4.393008470535278e-01, 8.56955062866211e+01, 0e+00, 6.2718994140625e+01, 8.404261779785156e+01, 0e+00, 1.345736419677734e+02, 1.137876647949219e+02, 0e+00, 1.172192611694336e+02, 1.308424911499023e+02, 0e+00, 1.328924743652344e+02, 9.130952835083008e+00, 0e+00, 1.432172668457031e+02, 0e+00, 0e+00, 1.523483276367188e+02, 0e+00, 8.549889373779296e+00, 1.811162628173828e+02, 0e+00, 2.435140991210938e+01, 1.386506286621094e+02, 0e+00, 1.028802169799805e+02, 1.161838745117188e+02, 0e+00, 1.58721533203125e+02, 7.385739898681641e+01, 0e+00, 1.266774597167969e+02, 2.633928537368774e+00, 0e+00, 2.094806213378906e+02, 0e+00, 0e+00, 1.326024169921875e+02, 0e+00, 0e+00, 1.25699983215332e+02, 0e+00, 8.138613700866699e+00, 5.847423858642578e+01, 0e+00, 4.398899612426758e+01, 5.788007049560547e+01, 0e+00, 5.71522705078125e+01, 2.509006671905518e+01, 0e+00, 5.14e+01, 0e+00, 0e+00, 5.679375076293945e+01, 0e+00, 0e+00, 8.100175476074219e+01, 0e+00, 0e+00, 4.573645858764648e+01, 0e+00, 0e+00, 6.103160400390625e+01, 0e+00, 2.208180160522461e+01, 3.17247428894043e+01, 0e+00] +azi090til90.H=[0e+00, 3.894608764648438e+02, 5.25e-01, 0e+00, 3.475254638671875e+02, 0e+00, 0e+00, 2.076859527587891e+02, 0e+00, 0e+00, 9.003269195556641e+01, 0e+00, 0e+00, 8.396177673339844e+01, 0e+00, 8.596461486816406e+01, 4.664635162353515e+01, 0e+00, 4.699734130859375e+02, 6.048948974609375e+01, 0e+00, 6.228807250976563e+02, 2.750091438293457e+01, 0e+00, 4.466680114746094e+02, 9.31640625e-01, 0e+00, 2.845681518554687e+02, 0e+00, 0e+00, 1.313389892578125e+02, 0e+00, 4.393008470535278e-01, 8.56955062866211e+01, 0e+00, 1.525615386962891e+02, 8.404261779785156e+01, 0e+00, 4.803209716796875e+02, 6.934735412597657e+01, 0e+00, 5.175093017578125e+02, 6.43949592590332e+01, 0e+00, 1.364198455810547e+02, 9.130952835083008e+00, 0e+00, 2.688754699707031e+02, 0e+00, 0e+00, 1.523483276367188e+02, 0e+00, 1.321183586120605e+01, 1.811162628173828e+02, 0e+00, 2.435140991210938e+01, 1.386506286621094e+02, 0e+00, 1.146786270141602e+02, 1.155412658691406e+02, 0e+00, 1.790137603759766e+02, 5.558002243041992e+01, 0e+00, 4.295578735351563e+02, 2.633928537368774e+00, 0e+00, 2.242962890625e+02, 0e+00, 0e+00, 1.326024169921875e+02, 0e+00, 0e+00, 1.25699983215332e+02, 0e+00, 1.681314468383789e+01, 5.847423858642578e+01, 0e+00, 2.789990875244141e+02, 5.788007049560547e+01, 0e+00, 5.2243623046875e+02, 2.509006671905518e+01, 0e+00, 4.834835693359375e+02, 0e+00, 0e+00, 2.757535827636719e+02, 0e+00, 0e+00, 8.100175476074219e+01, 0e+00, 0e+00, 4.573645858764648e+01, 0e+00, 0e+00, 6.103160400390625e+01, 0e+00, 1.894330383300781e+02, 3.17247428894043e+01, 0e+00] +azi315til90.H=[0e+00, 5.802423706054687e+01, 5.25e-01, 0e+00, 2.0875458984375e+02, 0e+00, 0e+00, 4.074590454101562e+02, 0e+00, 0e+00, 5.654395751953125e+02, 0e+00, 0e+00, 6.042689697265625e+02, 0e+00, 1.029561996459961e+01, 6.997074584960938e+02, 0e+00, 5.528524322509766e+01, 4.853589294433594e+02, 0e+00, 5.728817749023438e+01, 1.859787933349609e+02, 0e+00, 1.087030303955078e+02, 9.31640625e-01, 0e+00, 2.044786163330078e+02, 0e+00, 0e+00, 3.503002624511719e+02, 0e+00, 4.393008470535278e-01, 4.309347106933594e+02, 0e+00, 3.670584106445312e+01, 4.578882446289062e+02, 0e+00, 8.013905181884766e+01, 4.046538024902344e+02, 0e+00, 9.811147155761719e+01, 2.023865447998047e+02, 0e+00, 1.328924743652344e+02, 9.130952835083008e+00, 0e+00, 1.432172668457031e+02, 0e+00, 0e+00, 2.399119262695312e+02, 0e+00, 4.643041229248047e+00, 1.917557525634766e+02, 0e+00, 2.435140991210938e+01, 3.739161071777344e+02, 0e+00, 1.016416488647461e+02, 1.253250915527344e+02, 0e+00, 1.58721533203125e+02, 1.493116516113281e+02, 0e+00, 1.266774597167969e+02, 2.633928537368774e+00, 0e+00, 2.154717529296875e+02, 0e+00, 0e+00, 3.617104187011719e+02, 0e+00, 0e+00, 1.297014343261719e+02, 0e+00, 8.138613700866699e+00, 6.305633422851563e+02, 0e+00, 4.398899612426758e+01, 5.403575805664062e+02, 0e+00, 5.71522705078125e+01, 1.627271209716797e+02, 0e+00, 8.775952606201172e+01, 0e+00, 0e+00, 3.170358276367188e+02, 0e+00, 0e+00, 5.228458862304688e+02, 0e+00, 0e+00, 6.9137763671875e+02, 0e+00, 0e+00, 6.103160400390625e+01, 0e+00, 2.208180160522461e+01, 4.233180114746094e+02, 0e+00] +azi045til90.H=[0e+00, 5.138748779296875e+02, 5.25e-01, 0e+00, 5.577115112304688e+02, 0e+00, 0e+00, 5.807303588867187e+02, 0e+00, 0e+00, 3.971627197265625e+02, 0e+00, 0e+00, 1.656430938720703e+02, 0e+00, 7.625958251953125e+01, 4.664635162353515e+01, 0e+00, 4.486273742675781e+02, 6.048948974609375e+01, 0e+00, 6.546780517578125e+02, 2.750091438293457e+01, 0e+00, 5.325973754882813e+02, 9.31640625e-01, 0e+00, 4.382812927246094e+02, 0e+00, 0e+00, 2.524890747070312e+02, 0e+00, 4.393008470535278e-01, 8.56955062866211e+01, 0e+00, 1.002341079711914e+02, 8.404261779785156e+01, 0e+00, 3.246193237304688e+02, 6.934735412597657e+01, 0e+00, 3.811592834472656e+02, 6.43949592590332e+01, 0e+00, 1.355826202392578e+02, 9.130952835083008e+00, 0e+00, 2.683790893554688e+02, 0e+00, 0e+00, 1.523483276367188e+02, 0e+00, 7.939535140991211e+00, 1.811162628173828e+02, 0e+00, 2.435140991210938e+01, 1.386506286621094e+02, 0e+00, 1.099843841552734e+02, 1.155412658691406e+02, 0e+00, 1.747909820556641e+02, 5.558002243041992e+01, 0e+00, 4.417283020019531e+02, 2.633928537368774e+00, 0e+00, 2.364242645263672e+02, 0e+00, 0e+00, 2.956617126464844e+02, 0e+00, 0e+00, 1.261984985351562e+02, 0e+00, 1.476199722290039e+01, 5.847423858642578e+01, 0e+00, 2.610202056884766e+02, 5.788007049560547e+01, 0e+00, 5.835289428710937e+02, 2.509006671905518e+01, 0e+00, 6.988179565429688e+02, 0e+00, 0e+00, 6.266917724609375e+02, 0e+00, 0e+00, 4.789474182128906e+02, 0e+00, 0e+00, 2.892957885742188e+02, 0e+00, 0e+00, 6.103160400390625e+01, 0e+00, 2.147342819213867e+02, 3.17247428894043e+01, 0e+00] +azi270til30.H=[0e+00, 1.082746994018555e+02, 9.796633720397949e-01, 0e+00, 3.310314453125e+02, 0e+00, 0e+00, 5.512974609375e+02, 0e+00, 0e+00, 7.09150146484375e+02, 0e+00, 0e+00, 7.1116015625e+02, 0e+00, 1.921188926696777e+01, 7.361136840820312e+02, 0e+00, 1.031636657714844e+02, 5.0281923828125e+02, 0e+00, 2.231363616943359e+02, 1.829054321289062e+02, 0e+00, 5.0356435546875e+02, 1.738465070724487e+00, 0e+00, 7.608472534179688e+02, 0e+00, 0e+00, 9.269869995117188e+02, 0e+00, 8.197465419769288e-01, 9.720395141601563e+02, 0e+00, 6.849403381347656e+01, 9.012885498046875e+02, 0e+00, 1.495415069580078e+02, 7.235947143554688e+02, 0e+00, 3.39417236328125e+02, 3.429088745117188e+02, 0e+00, 2.519659576416016e+02, 1.703858947753906e+01, 0e+00, 7.532248168945313e+02, 0e+00, 0e+00, 8.630870971679688e+02, 0e+00, 8.664032745361329e+00, 3.696365112304687e+02, 0e+00, 4.544034957885742e+01, 7.46294921875e+02, 0e+00, 1.898323974609375e+02, 2.311004028320312e+02, 0e+00, 3.033428771972656e+02, 2.19099658203125e+02, 0e+00, 5.335903198242188e+02, 4.914977550506592e+00, 0e+00, 4.363380432128906e+02, 0e+00, 0e+00, 7.797838134765625e+02, 0e+00, 0e+00, 2.406441070556641e+02, 0e+00, 1.518686008453369e+01, 7.63194140625e+02, 0e+00, 8.208458404541015e+01, 5.346180419921875e+02, 0e+00, 1.067904067993164e+02, 1.371589965820312e+02, 0e+00, 2.681886657714844e+02, 0e+00, 0e+00, 4.577165405273437e+02, 0e+00, 0e+00, 6.063148803710938e+02, 0e+00, 0e+00, 6.436443359375e+02, 0e+00, 0e+00, 1.138865219116211e+02, 0e+00, 4.120520210266113e+01, 2.96798193359375e+02, 0e+00] +azi000til30.H=[0e+00, 4.196536071777344e+02, 9.796633720397949e-01, 0e+00, 6.541338989257813e+02, 0e+00, 0e+00, 9.017153564453125e+02, 0e+00, 0e+00, 9.263238525390625e+02, 0e+00, 0e+00, 7.689175415039062e+02, 0e+00, 3.130975341796875e+01, 6.473622192382812e+02, 0e+00, 3.100917907714844e+02, 3.535465881347656e+02, 0e+00, 6.455548095703125e+02, 9.113887786865234e+01, 0e+00, 8.033029296875e+02, 1.738465070724487e+00, 0e+00, 9.864402221679687e+02, 0e+00, 0e+00, 1.012653076171875e+03, 0e+00, 8.197465419769288e-01, 9.03400927734375e+02, 0e+00, 7.67255859375e+01, 6.983467041015625e+02, 0e+00, 3.121946044921875e+02, 4.420569396972656e+02, 0e+00, 5.395622680664062e+02, 1.788865478515625e+02, 0e+00, 2.538681671142578e+02, 1.703858947753906e+01, 0e+00, 8.417276000976562e+02, 0e+00, 0e+00, 8.60221435546875e+02, 0e+00, 8.664032745361329e+00, 3.644695983886719e+02, 0e+00, 4.544034957885742e+01, 5.947495483398437e+02, 0e+00, 1.956124603271484e+02, 2.235395904541016e+02, 0e+00, 3.147056884765625e+02, 1.345440017700195e+02, 0e+00, 7.563649169921875e+02, 4.914977550506592e+00, 0e+00, 4.553900695800781e+02, 0e+00, 0e+00, 8.950841064453125e+02, 0e+00, 0e+00, 2.409966125488281e+02, 0e+00, 1.558061218261719e+01, 7.022072265625e+02, 0e+00, 1.687625549316406e+02, 4.222132080078125e+02, 0e+00, 4.660613708496094e+02, 9.145584182739258e+01, 0e+00, 7.259823364257812e+02, 0e+00, 0e+00, 8.606952758789063e+02, 0e+00, 0e+00, 8.877049560546875e+02, 0e+00, 0e+00, 8.158668334960937e+02, 0e+00, 0e+00, 1.138865219116211e+02, 0e+00, 1.172648681640625e+02, 2.5116005859375e+02, 0e+00] +azi090til30.H=[0e+00, 4.287551635742187e+02, 9.796633720397949e-01, 0e+00, 5.7778125e+02, 0e+00, 0e+00, 6.7381875e+02, 0e+00, 0e+00, 5.90160400390625e+02, 0e+00, 0e+00, 4.010048156738281e+02, 0e+00, 6.033518218994141e+01, 1.85578271484375e+02, 0e+00, 4.466450805664062e+02, 1.128749267578125e+02, 0e+00, 7.8872890625e+02, 5.131740570068359e+01, 0e+00, 8.415293579101562e+02, 1.738465070724487e+00, 0e+00, 9.261706909179687e+02, 0e+00, 0e+00, 8.578240356445312e+02, 0e+00, 8.197465419769288e-01, 6.592799438476562e+02, 0e+00, 1.476600036621094e+02, 4.339979248046875e+02, 0e+00, 5.395028503417968e+02, 2.049594848632813e+02, 0e+00, 7.588151000976562e+02, 1.201626235961914e+02, 0e+00, 2.554933410644531e+02, 1.703858947753906e+01, 0e+00, 8.788830444335938e+02, 0e+00, 0e+00, 7.983046264648438e+02, 0e+00, 1.323442764282226e+01, 3.569463623046875e+02, 0e+00, 4.544034957885742e+01, 4.28391748046875e+02, 0e+00, 2.027502380371094e+02, 2.166213836669922e+02, 0e+00, 3.236350952148438e+02, 1.037137390136719e+02, 0e+00, 8.36470703125e+02, 4.914977550506592e+00, 0e+00, 4.511537048339844e+02, 0e+00, 0e+00, 7.33080322265625e+02, 0e+00, 0e+00, 2.381671722412109e+02, 0e+00, 1.957170486450195e+01, 2.976791198730469e+02, 0e+00, 2.503084045410156e+02, 1.08005680847168e+02, 0e+00, 5.591408447265625e+02, 4.681870117187501e+01, 0e+00, 7.00272265625e+02, 0e+00, 0e+00, 6.766763671875e+02, 0e+00, 0e+00, 5.7527392578125e+02, 0e+00, 0e+00, 3.593295349121094e+02, 0e+00, 0e+00, 1.138865219116211e+02, 0e+00, 1.483902359008789e+02, 5.919917602539063e+01, 0e+00] +azi000til00.HPer=[0e+00, 2.947524108886719e+02, 1.05e+00, 0e+00, 5.091132080078125e+02, 0e+00, 0e+00, 6.941461791992188e+02, 0e+00, 0e+00, 7.362291870117188e+02, 0e+00, 0e+00, 6.291197998046875e+02, 0e+00, 2.292104339599609e+01, 5.249228698730469e+02, 0e+00, 2.677683441162109e+02, 3.116130615234375e+02, 0e+00, 5.753381591796875e+02, 8.926682434082031e+01, 0e+00, 7.597738159179687e+02, 1.86328125e+00, 0e+00, 9.555530517578125e+02, 0e+00, 0e+00, 1.010142944335938e+03, 0e+00, 8.786016941070556e-01, 9.285855834960937e+02, 0e+00, 9.793535614013672e+01, 7.579265625e+02, 0e+00, 3.795215515136719e+02, 5.253729370117187e+02, 0e+00, 6.188868408203125e+02, 2.349619659423828e+02, 0e+00, 2.724232299804688e+02, 1.826190567016602e+01, 0e+00, 9.201421142578125e+02, 0e+00, 0e+00, 9.356365966796875e+02, 0e+00, 9.565233993530272e+00, 3.914740112304688e+02, 0e+00, 4.870281982421875e+01, 6.5675634765625e+02, 0e+00, 2.108648773193359e+02, 2.406180023193359e+02, 0e+00, 3.37431591796875e+02, 1.573122283935547e+02, 0e+00, 7.714080078125e+02, 5.267857074737549e+00, 0e+00, 4.799868225097656e+02, 0e+00, 0e+00, 8.529388427734375e+02, 0e+00, 0e+00, 2.569959716796875e+02, 0e+00, 1.400066661834717e+01, 6.03449462890625e+02, 0e+00, 1.46542985534668e+02, 3.465020935058594e+02, 0e+00, 3.6816689453125e+02, 7.192461700439453e+01, 0e+00, 5.5118955078125e+02, 0e+00, 0e+00, 6.461560180664062e+02, 0e+00, 0e+00, 6.696596069335938e+02, 0e+00, 0e+00, 5.719918090820313e+02, 0e+00, 0e+00, 1.220632080078125e+02, 0e+00, 7.132000198364258e+01, 1.515887145996094e+02, 0e+00] +azi000til90.HPer=[0e+00, 4.375236999511719e+02, 4.282024383544922e-01, 0e+00, 5.892073364257812e+02, 0e+00, 0e+00, 7.5382265625e+02, 0e+00, 0e+00, 7.290016479492188e+02, 0e+00, 0e+00, 5.814139404296875e+02, 0e+00, 3.600292587280273e+01, 4.612836547851563e+02, 0e+00, 2.253671173095703e+02, 2.389428405761719e+02, 0e+00, 3.69407568359375e+02, 5.512735748291016e+01, 0e+00, 4.032832458496094e+02, 7.600054740905762e-01, 0e+00, 4.251965026855469e+02, 0e+00, 0e+00, 3.738413696289062e+02, 0e+00, 3.576636791229248e-01, 2.584746887207031e+02, 0e+00, 3.13425121307373e+01, 1.363217712402344e+02, 0e+00, 6.723582305908204e+01, 5.978887634277343e+01, 0e+00, 7.549938507080078e+01, 5.427183456420899e+01, 0e+00, 1.075629211425781e+02, 7.603150844573975e+00, 0e+00, 1.360791900634766e+02, 0e+00, 0e+00, 1.461298828125e+02, 0e+00, 4.063003540039062e+00, 1.400651336669922e+02, 0e+00, 2.051803398132324e+01, 1.162547119140625e+02, 0e+00, 7.890595397949218e+01, 8.90667221069336e+01, 0e+00, 1.275499969482422e+02, 4.582366943359375e+01, 0e+00, 2.690468811035156e+02, 2.191408157348633e+00, 0e+00, 2.143746490478516e+02, 0e+00, 0e+00, 4.416167907714844e+02, 0e+00, 0e+00, 1.158793563842773e+02, 0e+00, 9.227326393127441e+00, 4.423340759277344e+02, 0e+00, 1.347526062011719e+02, 3.293591430664063e+02, 0e+00, 3.881840515136719e+02, 9.771007843017578e+01, 0e+00, 5.908843505859375e+02, 0e+00, 0e+00, 7.09017626953125e+02, 0e+00, 0e+00, 7.673705444335938e+02, 0e+00, 0e+00, 7.386231079101562e+02, 0e+00, 0e+00, 5.763609848022461e+01, 0e+00, 1.735803070068359e+02, 3.177727416992187e+02, 0e+00] +azi270til90.HPer=[0e+00, 5.210771942138672e+01, 4.282024383544922e-01, 0e+00, 8.105623168945313e+01, 0e+00, 0e+00, 6.926606750488281e+01, 0e+00, 0e+00, 2.123091278076172e+02, 0e+00, 0e+00, 4.422421569824219e+02, 0e+00, 9.712665557861328e+00, 6.5849755859375e+02, 0e+00, 4.991512222290039e+01, 6.048623779296875e+02, 0e+00, 5.320446395874023e+01, 3.157758697509765e+02, 0e+00, 7.732154388427735e+01, 7.600054740905762e-01, 0e+00, 7.063785400390626e+01, 0e+00, 0e+00, 1.571562194824219e+02, 0e+00, 3.576636791229248e-01, 4.167235412597656e+02, 0e+00, 3.13425121307373e+01, 6.120904907226562e+02, 0e+00, 6.723582305908204e+01, 6.7873642578125e+02, 0e+00, 7.549938507080078e+01, 3.997495300292969e+02, 0e+00, 1.062862747192383e+02, 7.603150844573975e+00, 0e+00, 6.664053649902344e+01, 0e+00, 0e+00, 1.540640258789062e+02, 0e+00, 4.063003540039062e+00, 1.810982177734375e+02, 0e+00, 2.051803398132324e+01, 5.33188134765625e+02, 0e+00, 7.890595397949218e+01, 1.422061248779297e+02, 0e+00, 1.190951477050781e+02, 2.6392001953125e+02, 0e+00, 8.268932037353515e+01, 2.191408157348633e+00, 0e+00, 1.44341845703125e+02, 0e+00, 0e+00, 1.394570465087891e+02, 0e+00, 0e+00, 1.125746795654297e+02, 0e+00, 6.256402015686035e+00, 5.80216259765625e+02, 0e+00, 3.851029815673828e+01, 6.00189501953125e+02, 0e+00, 5.482626724243164e+01, 2.305605041503906e+02, 0e+00, 5.06644775390625e+01, 0e+00, 0e+00, 5.262855377197265e+01, 0e+00, 0e+00, 1.034275817871094e+02, 0e+00, 0e+00, 3.589041137695312e+02, 0e+00, 0e+00, 5.670307083129883e+01, 0e+00, 2.172091484069824e+01, 4.305280212402344e+02, 0e+00] +azi180til90.HPer=[0e+00, 5.210771942138672e+01, 4.282024383544922e-01, 0e+00, 8.105623168945313e+01, 0e+00, 0e+00, 6.926606750488281e+01, 0e+00, 0e+00, 7.076093292236328e+01, 0e+00, 0e+00, 6.854485778808593e+01, 0e+00, 9.712665557861328e+00, 4.703065719604492e+01, 0e+00, 4.991512222290039e+01, 5.382188262939453e+01, 0e+00, 5.320446395874023e+01, 2.632328033447266e+01, 0e+00, 7.732154388427735e+01, 7.600054740905762e-01, 0e+00, 7.063785400390626e+01, 0e+00, 0e+00, 6.968524932861328e+01, 0e+00, 3.576636791229248e-01, 5.589322128295898e+01, 0e+00, 6.925222015380859e+01, 6.407602996826172e+01, 0e+00, 1.372559692382812e+02, 1.129149978637695e+02, 0e+00, 9.958077392578124e+01, 1.420863494873047e+02, 0e+00, 1.062862747192383e+02, 7.603150844573975e+00, 0e+00, 6.664053649902344e+01, 0e+00, 0e+00, 6.438234710693359e+01, 0e+00, 8.850415802001953e+00, 1.305916229248047e+02, 0e+00, 2.051803398132324e+01, 9.567624511718751e+01, 0e+00, 8.349111785888672e+01, 9.137901763916015e+01, 0e+00, 1.190951477050781e+02, 7.232074737548828e+01, 0e+00, 8.268932037353515e+01, 2.191408157348633e+00, 0e+00, 1.44341845703125e+02, 0e+00, 0e+00, 7.826071166992188e+01, 0e+00, 0e+00, 1.008425735473633e+02, 0e+00, 6.256402015686035e+00, 5.411508712768555e+01, 0e+00, 3.851029815673828e+01, 5.390217666625976e+01, 0e+00, 5.482626724243164e+01, 2.284756011962891e+01, 0e+00, 5.06644775390625e+01, 0e+00, 0e+00, 5.262855377197265e+01, 0e+00, 0e+00, 6.6806884765625e+01, 0e+00, 0e+00, 4.545851440429688e+01, 0e+00, 0e+00, 5.012984542846679e+01, 0e+00, 2.172091484069824e+01, 3.26795051574707e+01, 0e+00] +azi090til90.HPer=[0e+00, 4.600638610839844e+02, 4.282024383544922e-01, 0e+00, 3.951997375488281e+02, 0e+00, 0e+00, 2.142856475830078e+02, 0e+00, 0e+00, 7.076093292236328e+01, 0e+00, 0e+00, 6.854485778808593e+01, 0e+00, 1.226279907226562e+02, 4.703065719604492e+01, 0e+00, 5.640083984375e+02, 5.382188262939453e+01, 0e+00, 6.94069091796875e+02, 2.632328033447266e+01, 0e+00, 4.983212768554687e+02, 7.600054740905762e-01, 0e+00, 2.75654833984375e+02, 0e+00, 0e+00, 6.968524932861328e+01, 0e+00, 3.576636791229248e-01, 5.589322128295898e+01, 0e+00, 2.001823120117188e+02, 6.407602996826172e+01, 0e+00, 5.814199340820312e+02, 5.978887634277343e+01, 0e+00, 6.03980810546875e+02, 5.427183456420899e+01, 0e+00, 1.227688278198242e+02, 7.603150844573975e+00, 0e+00, 2.364688781738281e+02, 0e+00, 0e+00, 6.438234710693359e+01, 0e+00, 1.465269622802734e+01, 1.305916229248047e+02, 0e+00, 2.051803398132324e+01, 9.567624511718751e+01, 0e+00, 1.272858764648438e+02, 8.90667221069336e+01, 0e+00, 1.892456634521484e+02, 4.582366943359375e+01, 0e+00, 4.778801574707031e+02, 2.191408157348633e+00, 0e+00, 1.888690673828125e+02, 0e+00, 0e+00, 7.826071166992188e+01, 0e+00, 0e+00, 1.008425735473633e+02, 0e+00, 4.347957992553711e+01, 5.411508712768555e+01, 0e+00, 3.536168975830078e+02, 5.390217666625976e+01, 0e+00, 6.107461791992188e+02, 2.284756011962891e+01, 0e+00, 5.334663696289062e+02, 0e+00, 0e+00, 2.974705108642578e+02, 0e+00, 0e+00, 6.6806884765625e+01, 0e+00, 0e+00, 4.545851440429688e+01, 0e+00, 0e+00, 5.012984542846679e+01, 0e+00, 2.638732635498047e+02, 3.26795051574707e+01, 0e+00] +azi315til90.HPer=[0e+00, 5.210730285644532e+01, 4.282024383544922e-01, 0e+00, 2.182403289794922e+02, 0e+00, 0e+00, 4.507763427734375e+02, 0e+00, 0e+00, 6.36297119140625e+02, 0e+00, 0e+00, 6.954419555664062e+02, 0e+00, 9.712665557861328e+00, 7.723241455078125e+02, 0e+00, 4.991512222290039e+01, 5.743666137695312e+02, 0e+00, 5.320446395874023e+01, 2.513647155761719e+02, 0e+00, 7.732154388427735e+01, 7.600054740905762e-01, 0e+00, 1.763797760009766e+02, 0e+00, 0e+00, 3.46607421875e+02, 0e+00, 3.576636791229248e-01, 4.542855285644531e+02, 0e+00, 3.13425121307373e+01, 5.026662353515625e+02, 0e+00, 6.723582305908204e+01, 4.598850463867187e+02, 0e+00, 7.549938507080078e+01, 2.364672149658203e+02, 0e+00, 1.062862747192383e+02, 7.603150844573975e+00, 0e+00, 6.664053649902344e+01, 0e+00, 0e+00, 1.856011199951172e+02, 0e+00, 4.063003540039062e+00, 1.73003955078125e+02, 0e+00, 2.051803398132324e+01, 4.195950317382812e+02, 0e+00, 7.890595397949218e+01, 1.250069091796875e+02, 0e+00, 1.190951477050781e+02, 1.813048110961914e+02, 0e+00, 8.268932037353515e+01, 2.191408157348633e+00, 0e+00, 1.623770141601562e+02, 0e+00, 0e+00, 3.78464599609375e+02, 0e+00, 0e+00, 1.197710357666016e+02, 0e+00, 6.256402015686035e+00, 7.006370727539063e+02, 0e+00, 3.851029815673828e+01, 6.349631591796875e+02, 0e+00, 5.482626724243164e+01, 2.226585876464844e+02, 0e+00, 9.126509094238281e+01, 0e+00, 0e+00, 3.436363037109375e+02, 0e+00, 0e+00, 5.88074951171875e+02, 0e+00, 0e+00, 7.57239404296875e+02, 0e+00, 0e+00, 6.008553771972656e+01, 0e+00, 2.172091484069824e+01, 5.15592236328125e+02, 0e+00] +azi045til90.HPer=[0e+00, 6.131065185546875e+02, 4.282024383544922e-01, 0e+00, 6.625063232421875e+02, 0e+00, 0e+00, 6.55864990234375e+02, 0e+00, 0e+00, 4.361177368164062e+02, 0e+00, 0e+00, 1.669541534423828e+02, 0e+00, 1.08145881652832e+02, 4.703065719604492e+01, 0e+00, 5.374972717285157e+02, 5.382188262939453e+01, 0e+00, 7.29953515625e+02, 2.632328033447266e+01, 0e+00, 6.0550302734375e+02, 7.600054740905762e-01, 0e+00, 4.66317578125e+02, 0e+00, 0e+00, 2.2290478515625e+02, 0e+00, 3.576636791229248e-01, 5.589322128295898e+01, 0e+00, 1.239240646362305e+02, 6.407602996826172e+01, 0e+00, 3.813071716308594e+02, 5.978887634277343e+01, 0e+00, 4.321640808105469e+02, 5.427183456420899e+01, 0e+00, 1.188439270019531e+02, 7.603150844573975e+00, 0e+00, 2.358278472900391e+02, 0e+00, 0e+00, 6.424649047851562e+01, 0e+00, 8.16583480834961e+00, 1.305916229248047e+02, 0e+00, 2.051803398132324e+01, 9.567624511718751e+01, 0e+00, 1.098735214233398e+02, 8.90667221069336e+01, 0e+00, 1.746775329589844e+02, 4.582366943359375e+01, 0e+00, 4.939061462402344e+02, 2.191408157348633e+00, 0e+00, 2.253480224609375e+02, 0e+00, 0e+00, 2.91919921875e+02, 0e+00, 0e+00, 1.031793319702148e+02, 0e+00, 3.467792510986328e+01, 5.411508712768555e+01, 0e+00, 3.293779113769531e+02, 5.390217666625976e+01, 0e+00, 6.8364052734375e+02, 2.284756011962891e+01, 0e+00, 7.740500732421875e+02, 0e+00, 0e+00, 6.898951293945313e+02, 0e+00, 0e+00, 5.362854614257812e+02, 0e+00, 0e+00, 3.139603820800781e+02, 0e+00, 0e+00, 5.078959732055664e+01, 0e+00, 3.003292938232422e+02, 3.26795051574707e+01, 0e+00] +azi270til30.HPer=[0e+00, 7.718484954833984e+01, 9.312645912170411e-01, 0e+00, 3.027807373046875e+02, 0e+00, 0e+00, 5.497105346679688e+02, 0e+00, 0e+00, 7.300902709960938e+02, 0e+00, 0e+00, 7.525129028320313e+02, 0e+00, 1.664117050170898e+01, 7.754971313476562e+02, 0e+00, 7.481821289062501e+01, 5.5798740234375e+02, 0e+00, 1.946157287597656e+02, 2.277583557128906e+02, 0e+00, 4.708166137695313e+02, 1.652647495269775e+00, 0e+00, 7.482332275390625e+02, 0e+00, 0e+00, 9.415250854492188e+02, 0e+00, 7.789279699325562e-01, 1.002559106445313e+03, 0e+00, 5.815212631225586e+01, 9.504738159179688e+02, 0e+00, 1.005683609008789e+02, 7.826075561523437e+02, 0e+00, 2.9368583984375e+02, 3.859927978515625e+02, 0e+00, 2.366252960205078e+02, 1.627468872070312e+01, 0e+00, 7.3369853515625e+02, 0e+00, 0e+00, 8.759347534179688e+02, 0e+00, 8.242518997192382e+00, 3.793484924316406e+02, 0e+00, 4.352365875244141e+01, 8.108854370117188e+02, 0e+00, 1.648640563964844e+02, 2.418759613037109e+02, 0e+00, 2.676122314453125e+02, 2.515933624267578e+02, 0e+00, 4.944496643066406e+02, 4.693717479705811e+00, 0e+00, 4.113298217773437e+02, 0e+00, 0e+00, 7.9323779296875e+02, 0e+00, 0e+00, 2.366585205078125e+02, 0e+00, 1.254085826873779e+01, 8.028859497070313e+02, 0e+00, 6.592452163696289e+01, 5.876036987304688e+02, 0e+00, 7.199817962646485e+01, 1.701531829833984e+02, 0e+00, 2.520862609863281e+02, 0e+00, 0e+00, 4.542148620605469e+02, 0e+00, 0e+00, 6.187079467773438e+02, 0e+00, 0e+00, 6.670784545898438e+02, 0e+00, 0e+00, 1.12573713684082e+02, 0e+00, 3.293497505187988e+01, 3.386626586914062e+02, 0e+00] +azi000til30.HPer=[0e+00, 4.603121154785156e+02, 9.312645912170411e-01, 0e+00, 7.139280517578125e+02, 0e+00, 0e+00, 9.644986206054688e+02, 0e+00, 0e+00, 9.884365234375e+02, 0e+00, 0e+00, 8.220987670898437e+02, 0e+00, 3.469393157958984e+01, 6.768901733398437e+02, 0e+00, 3.31217626953125e+02, 3.750276428222656e+02, 0e+00, 6.73149560546875e+02, 9.743410873413086e+01, 0e+00, 8.44297314453125e+02, 1.652647495269775e+00, 0e+00, 1.02802109375e+03, 0e+00, 0e+00, 1.04986767578125e+03, 0e+00, 7.789279699325562e-01, 9.234346557617188e+02, 0e+00, 7.0148193359375e+01, 7.125894409179688e+02, 0e+00, 3.093438293457031e+02, 4.465707214355469e+02, 0e+00, 5.458858642578125e+02, 1.693466796875e+02, 0e+00, 2.455048980712891e+02, 1.627468872070312e+01, 0e+00, 8.533319946289063e+02, 0e+00, 0e+00, 8.719676513671875e+02, 0e+00, 8.242518997192382e+00, 3.588319519042969e+02, 0e+00, 4.352365875244141e+01, 6.024187255859375e+02, 0e+00, 1.863381774902344e+02, 2.141501129150391e+02, 0e+00, 3.069149047851562e+02, 1.292966659545899e+02, 0e+00, 7.852238525390625e+02, 4.693717479705811e+00, 0e+00, 4.686098327636719e+02, 0e+00, 0e+00, 9.443176879882812e+02, 0e+00, 0e+00, 2.383108489990234e+02, 0e+00, 1.423048400878906e+01, 7.339448974609375e+02, 0e+00, 1.817812271118164e+02, 4.521884948730469e+02, 0e+00, 5.01029443359375e+02, 1.03727970123291e+02, 0e+00, 7.6359716796875e+02, 0e+00, 0e+00, 9.048303955078125e+02, 0e+00, 0e+00, 9.50679443359375e+02, 0e+00, 0e+00, 8.5693798828125e+02, 0e+00, 0e+00, 1.130402313232422e+02, 0e+00, 1.42640234375e+02, 2.82285009765625e+02, 0e+00] +azi090til30.HPer=[0e+00, 4.715821960449219e+02, 9.312645912170411e-01, 0e+00, 6.169242309570312e+02, 0e+00, 0e+00, 6.947301147460937e+02, 0e+00, 0e+00, 5.885420532226562e+02, 0e+00, 0e+00, 3.788155883789062e+02, 0e+00, 7.800646209716797e+01, 1.640302337646484e+02, 0e+00, 5.005382446289062e+02, 8.031135864257813e+01, 0e+00, 8.354803588867187e+02, 4.091655807495117e+01, 0e+00, 8.918163208007812e+02, 1.652647495269775e+00, 0e+00, 9.532502319335938e+02, 0e+00, 0e+00, 8.540541381835938e+02, 0e+00, 7.789279699325562e-01, 6.417287963867187e+02, 0e+00, 1.7352294921875e+02, 4.024593505859375e+02, 0e+00, 6.014459350585937e+02, 1.636600006103516e+02, 0e+00, 8.2216728515625e+02, 9.194301452636719e+01, 0e+00, 2.531078521728516e+02, 1.627468872070312e+01, 0e+00, 9.035268432617188e+02, 0e+00, 0e+00, 7.862530517578125e+02, 0e+00, 1.394584655761719e+01, 3.288419006347656e+02, 0e+00, 4.352365875244141e+01, 3.7337353515625e+02, 0e+00, 2.128207153320313e+02, 1.887365600585937e+02, 0e+00, 3.377627380371094e+02, 8.487513122558593e+01, 0e+00, 8.89640478515625e+02, 4.693717479705811e+00, 0e+00, 4.558570434570312e+02, 0e+00, 0e+00, 7.3204150390625e+02, 0e+00, 0e+00, 2.249264068603516e+02, 0e+00, 3.135661125183105e+01, 2.767848022460938e+02, 0e+00, 2.9121337890625e+02, 7.386556091308594e+01, 0e+00, 6.123104858398438e+02, 3.909923591613769e+01, 0e+00, 7.348881591796875e+02, 0e+00, 0e+00, 6.990568115234375e+02, 0e+00, 0e+00, 5.820872802734375e+02, 0e+00, 0e+00, 3.536328674316406e+02, 0e+00, 0e+00, 1.060004943847656e+02, 0e+00, 1.877867233276367e+02, 4.575217437744141e+01, 0e+00] weaBusHHorIR.relHum=[8.100000023841858e-01, 6.294852733612061e-01, 9.924312591552734e-01, 7.436864852905274e-01, 4.414758145809173e-01, 1e+00, 9.71091365814209e-01, 4.41039651632309e-01, 8.671451807022095e-01, 5.340709209442138e-01, 4.000000059604645e-01, 9.519464492797851e-01, 5.081142902374267e-01, 4.950392961502075e-01, 9.439374923706054e-01, 3.199999928474426e-01, 6.120146870613098e-01, 4.349865972995758e-01, 1.585937440395355e-01, 3.973750054836273e-01, 4.300000071525574e-01, 1.800000071525574e-01, 4.21999990940094e-01, 4.49999988079071e-01, 2.077045500278473e-01, 6.800000071525574e-01, 7.225345611572266e-01, 3.219999969005585e-01, 5.150028228759765e-01, 2.416250050067902e-01, 1.700000017881393e-01, 2.958749949932098e-01, 1.322000026702881e-01, 2.448035687208176e-01, 3.880000114440918e-01, 2.000000029802322e-01, 2.550156354904175e-01, 2.808749973773956e-01, 2.199999988079071e-01, 5.979999899864197e-01, 3.799999952316284e-01, 2.681250035762787e-01, 4.547597348690033e-01, 3.073125004768372e-01, 6.012008905410766e-01, 9.399999976158142e-01, 9.579999804496765e-01, 4.139656186103821e-01, 6.763999819755554e-01, 5.814375042915344e-01, 5.50000011920929e-01, 6.99999988079071e-01, 5.279375076293945e-01, 6.757500052452088e-01, 8.678405165672303e-01, 7.300000190734863e-01, 7.797843098640442e-01, 1e+00, 6.221999883651733e-01, 8.899999856948853e-01, 7.900000214576721e-01, 7.306723594665527e-01, 8.791666746139526e-01, 9.346875071525573e-01, 6.89545476436615e-01, 9.399999976158142e-01, 7.253250122070313e-01, 7.486154079437256e-01, 8.895687341690064e-01, 7.063159108161926e-01, 5.099999904632568e-01, 8.216923117637634e-01, 4.07377552986145e-01, 9.01977276802063e-01, 7.839790225028992e-01, 5.699999928474426e-01, 7.349874973297119e-01, 7.042285799980164e-01, 3.040000081062317e-01, 7.076500058174133e-01, 5.899999737739563e-01, 2.742552042007446e-01, 7.633273124694824e-01, 5.587124943733215e-01, 2.899437546730042e-01, 7.699999809265137e-01, 6.740624904632568e-01, 4.147636234760285e-01, 7.157500267028809e-01, 6.99999988079071e-01, 4.000000059604645e-01, 8.202406644821167e-01, 4.765795409679413e-01, 5.390666484832763e-01, 8.796562552452087e-01, 4.300000071525574e-01, 1e+00, 1e+00, 5.717170834541321e-01, 7.599999904632568e-01, 7.950000166893005e-01] weaBusHHorIR.nOpa=[0e+00, 5e-01, 5e-01, 3.00000011920929e-01, 5.006250023841858e-01, 0e+00, 5e-01, 0e+00, 3.00000011920929e-01, 3.00000011920929e-01, 0e+00, 0e+00, 0e+00, 4.375e-01, 0e+00, 0e+00, 0e+00, 3.00000011920929e-01, 0e+00, 0e+00, 5e-01, 0e+00, 9.187500029802323e-02, 0e+00, 5e-01, 8.999999761581421e-01, 7.737500190734863e-01, 0e+00, 0e+00, 5e-01, 0e+00, 0e+00, 8.999999761581421e-01, 0e+00, 8.999999761581421e-01, 0e+00, 2.991562485694885e-01, 0e+00, 2.909999966621399e-01, 2.859375e-01, 8.999999761581421e-01, 3.36328125e-01, 5e-01, 3.225000023841858e-01, 1e+00, 8.999999761581421e-01, 9.637499928474427e-01, 5e-01, 8.999999761581421e-01, 3.00000011920929e-01, 5e-01, 6.449999928474426e-01, 5.400000095367432e-01, 8.304464101791382e-01, 8.999999761581421e-01, 1e+00, 6.449999928474426e-01, 1e+00, 8.999999761581421e-01, 8.999999761581421e-01, 3.00000011920929e-01, 8.999999761581421e-01, 8.274999856948853e-01, 8.999999761581421e-01, 4.914999961853027e-01, 8.999999761581421e-01, 0e+00, 8.999999761581421e-01, 4.637500047683716e-01, 5e-01, 5e-01, 8.999999761581421e-01, 0e+00, 1e+00, 0e+00, 5e-01, 3.00000011920929e-01, 3.00000011920929e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 6.99999988079071e-01, 5.665624856948852e-01, 3.00000011920929e-01, 5e-02, 8.053125023841858e-01, 0e+00, 0e+00, 3.075000047683716e-02, 0e+00, 0e+00, 0e+00, 1e+00, 0e+00, 0e+00, 0e+00, 9.49999988079071e-01] weaBusHHorIR.nTot=[0e+00, 5e-01, 5e-01, 3.00000011920929e-01, 5.006250023841858e-01, 0e+00, 5e-01, 0e+00, 3.00000011920929e-01, 3.00000011920929e-01, 0e+00, 0e+00, 0e+00, 4.375e-01, 0e+00, 0e+00, 0e+00, 3.00000011920929e-01, 0e+00, 0e+00, 5e-01, 0e+00, 9.187500029802323e-02, 0e+00, 5e-01, 8.999999761581421e-01, 7.737500190734863e-01, 0e+00, 0e+00, 5e-01, 0e+00, 0e+00, 8.999999761581421e-01, 0e+00, 8.999999761581421e-01, 0e+00, 2.991562485694885e-01, 0e+00, 2.909999966621399e-01, 2.859375e-01, 8.999999761581421e-01, 3.36328125e-01, 5e-01, 3.225000023841858e-01, 1e+00, 8.999999761581421e-01, 9.637499928474427e-01, 5e-01, 8.999999761581421e-01, 3.00000011920929e-01, 5e-01, 6.449999928474426e-01, 5.400000095367432e-01, 8.304464101791382e-01, 8.999999761581421e-01, 1e+00, 6.449999928474426e-01, 1e+00, 8.999999761581421e-01, 8.999999761581421e-01, 3.00000011920929e-01, 8.999999761581421e-01, 8.274999856948853e-01, 8.999999761581421e-01, 4.914999961853027e-01, 8.999999761581421e-01, 0e+00, 8.999999761581421e-01, 4.637500047683716e-01, 5e-01, 5e-01, 8.999999761581421e-01, 0e+00, 1e+00, 0e+00, 5e-01, 3.00000011920929e-01, 3.00000011920929e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 6.99999988079071e-01, 5.665624856948852e-01, 3.00000011920929e-01, 5e-02, 8.053125023841858e-01, 0e+00, 0e+00, 3.075000047683716e-02, 0e+00, 0e+00, 0e+00, 1e+00, 0e+00, 0e+00, 0e+00, 9.49999988079071e-01] -toDryAir.XiDry=[5.937502719461918e-03, 7.694228552281857e-03, 6.878456007689238e-03, 7.307989895343781e-03, 5.349850840866565e-03, 6.926118396222591e-03, 1.026819311082363e-02, 5.527816526591778e-03, 5.663206987082958e-03, 6.180090270936489e-03, 6.994737312197685e-03, 8.091170713305474e-03, 6.609058845788241e-03, 6.403741706162691e-03, 1.181209720671177e-02, 7.838496007025242e-03, 9.303497336804866e-03, 5.241506639868021e-03, 4.530783556401729e-03, 5.427009332925082e-03, 6.831590551882982e-03, 5.450479686260223e-03, 6.3770966604352e-03, 9.77011602371931e-03, 6.5782206133008e-03, 9.58702526986599e-03, 1.057051438838244e-02, 9.375767223536969e-03, 1.114886198192835e-02, 8.497634157538413e-03, 6.43579289317131e-03, 7.311237882822752e-03, 6.078637670725584e-03, 9.105318598449231e-03, 1.20925061404705e-02, 8.470481261610985e-03, 9.860031679272652e-03, 9.010729938745498e-03, 1.147737540304661e-02, 1.392256878316402e-02, 1.096756104379892e-02, 1.343788411468267e-02, 1.332468762993813e-02, 1.183493919670582e-02, 1.804510429501533e-02, 2.060740999877453e-02, 2.330497317016125e-02, 1.919410564005375e-02, 2.121312916278839e-02, 2.084899432957172e-02, 2.024547941982746e-02, 1.944904215633869e-02, 1.929700560867786e-02, 2.210189178586006e-02, 2.256980650126934e-02, 2.395275048911572e-02, 2.300784699618817e-02, 2.195183224976063e-02, 2.165163308382034e-02, 2.335073612630367e-02, 2.190650627017021e-02, 2.143757455050945e-02, 2.333338223397732e-02, 2.313309051096439e-02, 2.127541713416576e-02, 2.060740999877453e-02, 2.258673161268234e-02, 2.075610384345055e-02, 1.945952698588371e-02, 2.121835090219975e-02, 1.981897093355656e-02, 1.948594264686108e-02, 1.430554632097483e-02, 1.826800294220448e-02, 1.803986057639122e-02, 1.882056519389153e-02, 2.21811905503273e-02, 1.706083007156849e-02, 1.039613895118236e-02, 1.073198057711124e-02, 1.081875152885914e-02, 9.706985391676425e-03, 1.082418169826269e-02, 1.020509675145149e-02, 8.833195827901364e-03, 8.974006399512291e-03, 1.104831825941801e-02, 9.034945443272591e-03, 8.888592198491096e-03, 1.03853564709425e-02, 6.35010190308094e-03, 8.071446605026723e-03, 6.87386179342866e-03, 6.875437591224909e-03, 7.670100126415491e-03, 6.831590551882982e-03, 9.361004829406739e-03, 9.609583765268326e-03, 7.721457537263632e-03, 4.799817595630885e-03, 8.406369015574455e-03] -toDryAir.XiTotalAir=[5.90245658531785e-03, 7.635461539030075e-03, 6.831466220319271e-03, 7.254969514906407e-03, 5.321252997964621e-03, 6.878477055579424e-03, 1.016382835805416e-02, 5.497387424111366e-03, 5.631313193589449e-03, 6.142061110585928e-03, 6.946150679141283e-03, 8.026225864887238e-03, 6.565660331398248e-03, 6.362993735820055e-03, 1.167420037090778e-02, 7.7775320969522e-03, 9.217718243598938e-03, 5.214175768196582e-03, 4.510347917675972e-03, 5.397712346166372e-03, 6.785236764699221e-03, 5.42093301191926e-03, 6.336686387658119e-03, 9.675583057105541e-03, 6.535217817872763e-03, 9.495986625552177e-03, 1.045993287116289e-02, 9.288674779236316e-03, 1.10259311273694e-02, 8.426024951040745e-03, 6.39463821426034e-03, 7.258170843124389e-03, 6.041910964995623e-03, 9.023159742355347e-03, 1.194785349071026e-02, 8.399334736168385e-03, 9.763755835592747e-03, 8.930261991918088e-03, 1.134713664650917e-02, 1.373139135539532e-02, 1.084857899695635e-02, 1.325970012694597e-02, 1.314947493374348e-02, 1.169651187956333e-02, 1.772513017058373e-02, 2.019131928682327e-02, 2.277422025799751e-02, 1.883259937167168e-02, 2.077243663370609e-02, 2.042313851416111e-02, 1.984373293817043e-02, 1.907799206674099e-02, 1.893167831003666e-02, 2.162396050989628e-02, 2.207157760858536e-02, 2.339243702590466e-02, 2.249025404453277e-02, 2.148029953241348e-02, 2.119276039302349e-02, 2.281792089343071e-02, 2.14368999004364e-02, 2.098761573433876e-02, 2.280135080218315e-02, 2.261004634201527e-02, 2.083208560943604e-02, 2.019131928682327e-02, 2.20877967774868e-02, 2.033404782414436e-02, 1.908808276057243e-02, 2.07774743437767e-02, 1.943381316959858e-02, 1.911349855363369e-02, 1.410377770662308e-02, 1.794027052819729e-02, 1.772007942199707e-02, 1.847289502620697e-02, 2.169986143708229e-02, 1.677463911473751e-02, 1.028916537761688e-02, 1.061799600720406e-02, 1.070295833051205e-02, 9.613602422177792e-03, 1.070826444774866e-02, 1.010200325399637e-02, 8.755853585898875e-03, 8.894190192222595e-03, 1.092758662998676e-02, 8.954046107828618e-03, 8.810280449688434e-03, 1.027860715985298e-02, 6.310032680630684e-03, 8.006814308464527e-03, 6.826934218406677e-03, 6.828488409519195e-03, 7.611709926277399e-03, 6.785236764699221e-03, 9.27418414503336e-03, 9.51811857521534e-03, 7.662292569875717e-03, 4.776889085769653e-03, 8.336291648447514e-03] -weaBusHHorIR.TBlaSky=[2.6719091796875e+02, 2.7949091796875e+02, 2.707101318359375e+02, 2.748521118164062e+02, 2.779827819824219e+02, 2.6695947265625e+02, 2.781473815917969e+02, 2.748739135742188e+02, 2.682392639160156e+02, 2.768815612792969e+02, 2.804942626953125e+02, 2.700255920410156e+02, 2.758496520996094e+02, 2.789239074707031e+02, 2.771157165527344e+02, 2.863046875e+02, 2.792767578125e+02, 2.769039855957031e+02, 2.870644226074219e+02, 2.759903564453125e+02, 2.830561218261719e+02, 2.887162780761719e+02, 2.7911298828125e+02, 2.846853759765625e+02, 2.939487670898437e+02, 2.863046875e+02, 2.860325805664062e+02, 2.89784619140625e+02, 2.851820556640625e+02, 2.967208984375e+02, 2.930159606933594e+02, 2.863046020507812e+02, 3.048874084472656e+02, 2.937933044433594e+02, 3.001845031738281e+02, 2.957805786132812e+02, 2.977811279296875e+02, 2.911865661621094e+02, 3.038815490722656e+02, 2.897124755859375e+02, 2.986354370117188e+02, 3.033144958496094e+02, 2.952410888671875e+02, 2.987084167480469e+02, 3.029859191894531e+02, 2.959508056640625e+02, 2.994463806152344e+02, 3.045974487304687e+02, 3.0206875e+02, 2.989493713378906e+02, 3.001142883300781e+02, 2.97059033203125e+02, 3.004608947753906e+02, 3.022451232910156e+02, 2.989657653808594e+02, 3.050475769042969e+02, 2.985522155761719e+02, 2.983038024902344e+02, 3.041113586425781e+02, 2.99459716796875e+02, 2.947529296875e+02, 3.010235473632812e+02, 2.989455810546875e+02, 2.984303771972656e+02, 2.972015991210938e+02, 2.959508056640625e+02, 2.936289367675781e+02, 2.999794677734375e+02, 2.913453186035156e+02, 2.970686584472656e+02, 3.014107055664062e+02, 2.970735229492187e+02, 2.944587463378906e+02, 2.963843811035156e+02, 2.877871704101562e+02, 2.981375732421875e+02, 2.960766540527344e+02, 2.918854309082031e+02, 2.927560363769531e+02, 2.798118835449219e+02, 2.8266650390625e+02, 2.930716735839844e+02, 2.786888610839844e+02, 2.82459521484375e+02, 2.903598876953125e+02, 2.804942626953125e+02, 2.854365661621094e+02, 2.878328247070312e+02, 2.765918395996094e+02, 2.861573059082031e+02, 2.786786804199219e+02, 2.723552124023437e+02, 2.779950134277344e+02, 2.756564453125e+02, 2.703171630859375e+02, 2.788821716308594e+02, 2.820003356933594e+02, 2.725732727050781e+02, 2.768766479492188e+02, 2.641762451171875e+02, 2.824710998535156e+02] +toDryAir.XiDry=[5.933362990617752e-03, 7.691729720681906e-03, 6.874031387269497e-03, 7.307353429496288e-03, 5.347815901041031e-03, 6.920239888131618e-03, 1.026421077549458e-02, 5.52507434040308e-03, 5.660156067460775e-03, 6.177703384310007e-03, 6.98850816115737e-03, 8.085485361516476e-03, 6.60546850413084e-03, 6.400317512452602e-03, 1.180688794702292e-02, 7.836238481104374e-03, 9.29747186601162e-03, 5.239233002066612e-03, 4.527453612536192e-03, 5.423661135137081e-03, 6.825775839388371e-03, 5.446022376418114e-03, 6.372142862528562e-03, 9.767197817564011e-03, 6.572375819087028e-03, 9.580704383552074e-03, 1.056291311979294e-02, 9.368662536144257e-03, 1.114559918642044e-02, 8.494312316179276e-03, 6.434870418161154e-03, 7.307545468211174e-03, 6.075915694236755e-03, 9.103147312998772e-03, 1.208210103213787e-02, 8.467872627079487e-03, 9.858414344489575e-03, 9.002541378140449e-03, 1.147009003907442e-02, 1.391701325774193e-02, 1.095941755920649e-02, 1.343023795634508e-02, 1.33145509287715e-02, 1.183307338505983e-02, 1.803085543215275e-02, 2.060136571526527e-02, 2.329444549977779e-02, 1.918569020926952e-02, 2.119498103857041e-02, 2.084067016839981e-02, 2.024095878005028e-02, 1.943426840007305e-02, 1.9296570494771e-02, 2.208160683512688e-02, 2.256111167371273e-02, 2.394069172441959e-02, 2.299048118293285e-02, 2.194569781422615e-02, 2.162922397255897e-02, 2.333747409284115e-02, 2.189202606678009e-02, 2.142139300704003e-02, 2.331969104707241e-02, 2.312190160155296e-02, 2.125765457749367e-02, 2.060136571526527e-02, 2.256771884858608e-02, 2.07425519824028e-02, 1.945374310016632e-02, 2.120715864002705e-02, 1.98143906891346e-02, 1.947390511631965e-02, 1.430268548429012e-02, 1.826542690396309e-02, 1.803180128335953e-02, 1.880509778857231e-02, 2.216496579349041e-02, 1.705285497009754e-02, 1.038536988198757e-02, 1.072806194424629e-02, 1.081561390310526e-02, 9.704990684986115e-03, 1.081668846309185e-02, 1.020483635365963e-02, 8.825924620032311e-03, 8.970680646598339e-03, 1.103844046592712e-02, 9.032176062464713e-03, 8.884383738040924e-03, 1.037764474749565e-02, 6.344701163470745e-03, 8.070532977581025e-03, 6.869009975343942e-03, 6.871908623725176e-03, 7.662752736359834e-03, 6.825775839388371e-03, 9.357183799147606e-03, 9.608890861272812e-03, 7.716828305274248e-03, 4.797540698200464e-03, 8.40446725487709e-03] +toDryAir.XiTotalAir=[5.898365750908852e-03, 7.633000798523426e-03, 6.827101390808821e-03, 7.25434236228466e-03, 5.319239851087332e-03, 6.872679106891155e-03, 1.015992611646652e-02, 5.494675319641829e-03, 5.628296546638012e-03, 6.139703653752803e-03, 6.940007675439119e-03, 8.020631782710553e-03, 6.562117021530867e-03, 6.359613221138716e-03, 1.166911199688911e-02, 7.775309029966593e-03, 9.211803413927555e-03, 5.211925785988569e-03, 4.50704749673605e-03, 5.394400469958783e-03, 6.779500748962164e-03, 5.416523665189743e-03, 6.331795360893011e-03, 9.672721102833747e-03, 6.529448926448822e-03, 9.489785879850388e-03, 1.04524889960885e-02, 9.28170159459114e-03, 1.102273967117071e-02, 8.422758802771569e-03, 6.393727846443653e-03, 7.25453207269311e-03, 6.03922177106142e-03, 9.021027944982052e-03, 1.19376951828599e-02, 8.396769873797894e-03, 9.762169420719146e-03, 8.922219090163708e-03, 1.134001594036818e-02, 1.372598744928837e-02, 1.084061060100794e-02, 1.325225587934256e-02, 1.313960328698158e-02, 1.169468909502029e-02, 1.771138198673725e-02, 2.018551714718342e-02, 2.276416718959808e-02, 1.882449761033058e-02, 2.075503543019295e-02, 2.04151526093483e-02, 1.983939111232758e-02, 1.906377635896206e-02, 1.893125995993614e-02, 2.160454243421555e-02, 2.206326089799404e-02, 2.338093519210815e-02, 2.247366011142731e-02, 2.14744258671999e-02, 2.117129079997539e-02, 2.280525676906109e-02, 2.142303250730038e-02, 2.097210586071014e-02, 2.278827540576458e-02, 2.259935773909092e-02, 2.081505618989467e-02, 2.018551714718342e-02, 2.206961363554001e-02, 2.032104134559631e-02, 1.908251792192459e-02, 2.076674178242683e-02, 1.94294098764658e-02, 1.910191662609577e-02, 1.410099696367979e-02, 1.793778426945209e-02, 1.771230474114418e-02, 1.845799200236797e-02, 2.168433368206024e-02, 1.67669277638197e-02, 1.027861647307873e-02, 1.061416082084179e-02, 1.069988775998354e-02, 9.611647017300129e-03, 1.070093028247356e-02, 1.010174863040447e-02, 8.748709410429e-03, 8.890923112630844e-03, 1.091792397201061e-02, 8.95132552832365e-03, 8.806146495044232e-03, 1.027105301618576e-02, 6.304699461907148e-03, 8.005915023386479e-03, 6.8221484310925e-03, 6.825008057057857e-03, 7.604473829269409e-03, 6.779500748962164e-03, 9.270433336496353e-03, 9.51743870973587e-03, 7.657733466476202e-03, 4.774634260684252e-03, 8.334420621395111e-03] +weaBusHHorIR.TBlaSky=[2.671908264160156e+02, 2.794908264160156e+02, 2.707100402832031e+02, 2.748520202636719e+02, 2.779826904296875e+02, 2.669593811035156e+02, 2.781472900390625e+02, 2.748738220214844e+02, 2.682391723632812e+02, 2.768814697265625e+02, 2.804941711425781e+02, 2.700255004882812e+02, 2.75849560546875e+02, 2.789238159179687e+02, 2.77115625e+02, 2.863045959472656e+02, 2.792766662597656e+02, 2.769038940429688e+02, 2.870643310546875e+02, 2.759902648925781e+02, 2.830560302734375e+02, 2.887161865234375e+02, 2.791128967285156e+02, 2.846852844238281e+02, 2.939486755371094e+02, 2.863045959472656e+02, 2.860324890136719e+02, 2.897845031738281e+02, 2.851819641113281e+02, 2.967207885742188e+02, 2.93015869140625e+02, 2.863045104980469e+02, 3.048872863769531e+02, 2.93793212890625e+02, 3.001844116210938e+02, 2.957804870605469e+02, 2.977810180664063e+02, 2.91186474609375e+02, 3.038814331054688e+02, 2.897123840332031e+02, 2.986353454589844e+02, 3.033143859863281e+02, 2.952409973144531e+02, 2.9870830078125e+02, 3.029858276367187e+02, 2.959507141113281e+02, 2.994462890625e+02, 3.045973510742188e+02, 3.020686584472656e+02, 2.989492614746094e+02, 3.001141967773438e+02, 2.970589416503906e+02, 3.004608032226562e+02, 3.022450073242188e+02, 2.989656616210938e+02, 3.050474853515625e+02, 2.985521240234375e+02, 2.983037109375e+02, 3.041112670898438e+02, 2.994596252441406e+02, 2.947528381347656e+02, 3.010234252929687e+02, 2.989454895019531e+02, 2.984302612304688e+02, 2.972015075683594e+02, 2.959507141113281e+02, 2.936288330078125e+02, 2.999793762207031e+02, 2.913452270507813e+02, 2.970685668945313e+02, 3.014106140136719e+02, 2.970734313964844e+02, 2.944586547851562e+02, 2.963842895507813e+02, 2.877870788574219e+02, 2.981374816894531e+02, 2.960765502929688e+02, 2.918853393554688e+02, 2.927559448242188e+02, 2.798117919921875e+02, 2.826664123535156e+02, 2.9307158203125e+02, 2.7868876953125e+02, 2.824594299316406e+02, 2.903597961425781e+02, 2.804941711425781e+02, 2.85436474609375e+02, 2.878327331542969e+02, 2.76591748046875e+02, 2.861572143554687e+02, 2.786785888671875e+02, 2.723551208496094e+02, 2.77994921875e+02, 2.756563537597656e+02, 2.703170715332031e+02, 2.78882080078125e+02, 2.82000244140625e+02, 2.725732116699219e+02, 2.768765563964844e+02, 2.641761535644531e+02, 2.824710083007812e+02] weaBusHHorIR.TDewPoi=[2.791499938964844e+02, 2.828958923339844e+02, 2.810661315917969e+02, 2.820083435058594e+02, 2.770947082519531e+02, 2.813500061035156e+02, 2.872384033203125e+02, 2.783499938964844e+02, 2.784427429199219e+02, 2.795433227539062e+02, 2.814500122070312e+02, 2.835123596191406e+02, 2.804785583496094e+02, 2.800798034667969e+02, 2.892425659179688e+02, 2.8325e+02, 2.854580871582031e+02, 2.772999938964844e+02, 2.752499938964844e+02, 2.777499938964844e+02, 2.811499938964844e+02, 2.781499938964844e+02, 2.800499938964844e+02, 2.860249938964844e+02, 2.804281188964844e+02, 2.861499938964844e+02, 2.875499938964844e+02, 2.859687438964844e+02, 2.883499938964844e+02, 2.845499938964844e+02, 2.801499938964844e+02, 2.821499938964844e+02, 2.792249938964844e+02, 2.854249938964844e+02, 2.893406188964844e+02, 2.841499938964844e+02, 2.865275024414062e+02, 2.851499938964844e+02, 2.889574890136719e+02, 2.917031188964844e+02, 2.881499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.891499938964844e+02, 2.95725e+02, 2.981499938964844e+02, 3.001499938964844e+02, 2.968262390136719e+02, 2.984318786621094e+02, 2.9848125e+02, 2.974500122070312e+02, 2.971499938964844e+02, 2.971194274902344e+02, 2.991090270996094e+02, 2.9951669921875e+02, 3.0025e+02, 2.997140319824219e+02, 2.991945983886719e+02, 2.991499938964844e+02, 3.001499938964844e+02, 2.991499938964844e+02, 2.987499938964844e+02, 3.000624938964844e+02, 3.000374938964844e+02, 2.984906372070312e+02, 2.981499938964844e+02, 2.995562561035156e+02, 2.981789978027344e+02, 2.971240173339844e+02, 2.984665100097656e+02, 2.975499877929688e+02, 2.970643737792969e+02, 2.923239685058594e+02, 2.961499938964844e+02, 2.958488952636719e+02, 2.963500061035156e+02, 2.990997863769531e+02, 2.951122253417969e+02, 2.873407653808594e+02, 2.876171752929687e+02, 2.879500122070312e+02, 2.862127258300781e+02, 2.880316101074219e+02, 2.870466247558594e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.881499938964844e+02, 2.851499938964844e+02, 2.850499938964844e+02, 2.873499938964844e+02, 2.801499938964844e+02, 2.835781188964844e+02, 2.811499938964844e+02, 2.811499938964844e+02, 2.827874938964844e+02, 2.811499938964844e+02, 2.857499938964844e+02, 2.861499938964844e+02, 2.829749938964844e+02, 2.76065625e+02, 2.841499938964844e+02] -weaBusHHorIR.TWetBul=[2.805631713867188e+02, 2.858546997070313e+02, 2.812354431152344e+02, 2.840333068847656e+02, 2.834229553222656e+02, 2.813500061035156e+02, 2.873423950195312e+02, 2.838126586914062e+02, 2.794186157226562e+02, 2.840028991699219e+02, 2.87423828125e+02, 2.838915100097656e+02, 2.851518188476563e+02, 2.849082397460937e+02, 2.896209411621094e+02, 2.901334228515625e+02, 2.88593798828125e+02, 2.832543334960938e+02, 2.88290771484375e+02, 2.8429267578125e+02, 2.866422424316406e+02, 2.894534912109375e+02, 2.85894482421875e+02, 2.910285217285156e+02, 2.906593017578125e+02, 2.883984375e+02, 2.894477416992187e+02, 2.923548889160156e+02, 2.920763916015625e+02, 2.927572937011719e+02, 2.916164855957031e+02, 2.897829406738281e+02, 2.924806274414062e+02, 2.93513818359375e+02, 2.946626403808594e+02, 2.93771484375e+02, 2.942605224609375e+02, 2.926171630859375e+02, 2.968755798339844e+02, 2.944471435546875e+02, 2.934747314453125e+02, 2.978820434570313e+02, 2.951806396484375e+02, 2.95578662109375e+02, 2.982377319335938e+02, 2.983689270019531e+02, 3.002867980957031e+02, 3.007669555664062e+02, 3.001942138671875e+02, 3.005626342773438e+02, 3.000736694335938e+02, 2.986129699707031e+02, 2.998306396484375e+02, 3.008528076171875e+02, 3.000554077148437e+02, 3.014889831542969e+02, 3.00803857421875e+02, 2.991499938964844e+02, 3.008501647949219e+02, 3.00609619140625e+02, 3.000645751953125e+02, 3.000419860839844e+02, 3.0064599609375e+02, 3.002637390136719e+02, 3.001628723144531e+02, 2.983689270019531e+02, 3.008902526855469e+02, 2.994447448730469e+02, 2.976938110351563e+02, 2.9995712890625e+02, 3.002671203613281e+02, 2.979962829589844e+02, 2.967212585449219e+02, 2.966268920898438e+02, 2.970051696777344e+02, 2.989400024414062e+02, 3.005169738769531e+02, 2.966864929199219e+02, 2.939719909667969e+02, 2.897867492675781e+02, 2.90854736328125e+02, 2.936390930175781e+02, 2.894826782226563e+02, 2.904095092773438e+02, 2.921967041015625e+02, 2.867206115722656e+02, 2.904700500488281e+02, 2.904609191894531e+02, 2.870249877929688e+02, 2.893714904785156e+02, 2.861843566894531e+02, 2.848118530273438e+02, 2.860720642089844e+02, 2.852889038085938e+02, 2.836167785644531e+02, 2.866422424316406e+02, 2.857499938964844e+02, 2.861499938964844e+02, 2.864592712402344e+02, 2.781300598144531e+02, 2.855897216796875e+02] +weaBusHHorIR.TWetBul=[2.805636901855469e+02, 2.858552551269531e+02, 2.812354675292969e+02, 2.840333923339844e+02, 2.834240112304688e+02, 2.813500061035156e+02, 2.873424438476562e+02, 2.838140441894531e+02, 2.794188842773438e+02, 2.840037475585938e+02, 2.874266357421875e+02, 2.838916259765625e+02, 2.851531188964844e+02, 2.849095397949219e+02, 2.896210327148438e+02, 2.90134521484375e+02, 2.885949340820313e+02, 2.8325556640625e+02, 2.882950439453125e+02, 2.842946044921875e+02, 2.866447143554688e+02, 2.894580078125e+02, 2.8589677734375e+02, 2.910293395996094e+02, 2.906638793945312e+02, 2.883993530273438e+02, 2.894485656738281e+02, 2.923577575683594e+02, 2.920770629882812e+02, 2.927590942382812e+02, 2.916173095703125e+02, 2.89785009765625e+02, 2.924834899902344e+02, 2.935149047851563e+02, 2.946653381347656e+02, 2.937730712890625e+02, 2.942612487792969e+02, 2.926209838867188e+02, 2.968786254882813e+02, 2.944478515625e+02, 2.934771118164062e+02, 2.978844116210938e+02, 2.951826354980469e+02, 2.955792602539062e+02, 2.982389892578125e+02, 2.983689880371094e+02, 3.002868591308594e+02, 3.00768115234375e+02, 3.001952270507812e+02, 3.005632690429687e+02, 3.000740661621094e+02, 2.98613818359375e+02, 2.998306823730469e+02, 3.008538879394531e+02, 3.000555786132812e+02, 3.014894409179688e+02, 3.008044128417969e+02, 2.991499938964844e+02, 3.008516174316406e+02, 3.006098327636719e+02, 3.000650329589844e+02, 3.000427062988281e+02, 3.006462097167969e+02, 3.002638305664062e+02, 3.001638122558594e+02, 2.983689880371094e+02, 3.008910705566406e+02, 2.994453247070313e+02, 2.976939331054688e+02, 2.999576904296875e+02, 3.002676086425781e+02, 2.979966796875e+02, 2.96721826171875e+02, 2.966269287109375e+02, 2.970055053710938e+02, 2.989414367675781e+02, 3.005176513671875e+02, 2.966870422363281e+02, 2.939760498046875e+02, 2.897871643066406e+02, 2.908552551269531e+02, 2.936399353027344e+02, 2.894833557128906e+02, 2.904095642089844e+02, 2.922000915527344e+02, 2.86720947265625e+02, 2.904712951660156e+02, 2.904618225097656e+02, 2.87025537109375e+02, 2.893724304199219e+02, 2.861870422363281e+02, 2.848119323730469e+02, 2.860738891601562e+02, 2.852900146484375e+02, 2.836172180175781e+02, 2.866447143554688e+02, 2.857499938964844e+02, 2.861499938964844e+02, 2.864604553222656e+02, 2.781304992675781e+02, 2.855899047851562e+02] weaBusTDryBulTDewPoiOpa.TBlaSky=[2.671407165527344e+02, 2.794246398925781e+02, 2.706460632324219e+02, 2.748519104003906e+02, 2.779534362792969e+02, 2.6687890625e+02, 2.781442199707031e+02, 2.747416870117187e+02, 2.681987243652344e+02, 2.767924560546875e+02, 2.80561767578125e+02, 2.701772216796875e+02, 2.757730102539062e+02, 2.79276318359375e+02, 2.77063427734375e+02, 2.863030395507812e+02, 2.792430541992188e+02, 2.768350830078125e+02, 2.870025390625e+02, 2.758993896484375e+02, 2.830339660644531e+02, 2.886704406738281e+02, 2.791885070800781e+02, 2.84978076171875e+02, 2.941790893554688e+02, 2.863599548339844e+02, 2.854571044921875e+02, 2.897985900878906e+02, 2.854302612304688e+02, 2.969567626953125e+02, 2.92952880859375e+02, 2.862313415527344e+02, 3.047926940917969e+02, 2.938581237792969e+02, 3.002009155273437e+02, 2.958333129882812e+02, 2.979098999023437e+02, 2.912467834472656e+02, 3.0377197265625e+02, 2.902255432128906e+02, 2.986031494140625e+02, 3.037691589355469e+02, 2.952354370117188e+02, 2.985548522949219e+02, 3.029765014648438e+02, 2.95979248046875e+02, 2.993811706542969e+02, 3.044915405273438e+02, 3.021588134765625e+02, 2.9905888671875e+02, 3.001785278320312e+02, 2.964949157714844e+02, 3.005596618652344e+02, 3.019047485351563e+02, 2.990178588867187e+02, 3.05105712890625e+02, 2.980158142089844e+02, 2.982770080566406e+02, 3.041462097167969e+02, 2.993934936523438e+02, 2.947360229492188e+02, 3.010614685058594e+02, 2.984027709960938e+02, 2.983777404785156e+02, 2.975344909667969e+02, 2.95979248046875e+02, 2.936627807617188e+02, 2.999797973632812e+02, 2.913256469726563e+02, 2.970499694824219e+02, 3.013709411621094e+02, 2.970317260742187e+02, 2.943534118652344e+02, 2.963410583496094e+02, 2.878765808105469e+02, 2.981758117675781e+02, 2.961249877929687e+02, 2.917063049316406e+02, 2.928228149414062e+02, 2.796569519042969e+02, 2.826326904296875e+02, 2.9313857421875e+02, 2.787040283203125e+02, 2.8244599609375e+02, 2.903784973144531e+02, 2.805737609863281e+02, 2.854531127929687e+02, 2.878794677734375e+02, 2.767686828613281e+02, 2.860072509765625e+02, 2.7873876953125e+02, 2.723158752441406e+02, 2.779402954101562e+02, 2.756305847167969e+02, 2.703836853027344e+02, 2.789737243652344e+02, 2.81957373046875e+02, 2.725088806152344e+02, 2.768936218261719e+02, 2.64393359375e+02, 2.824104614257812e+02] -weaBusHHorIR.pAtm=[9.84e+04, 9.87813125e+04, 9.83573625e+04, 9.847118124999999e+04, 9.868125e+04, 9.88e+04, 9.8621875e+04, 9.844968124999999e+04, 9.8365e+04, 9.87371875e+04, 9.87e+04, 9.84428125e+04, 9.848754375e+04, 9.845846249999999e+04, 9.858374843750001e+04, 9.84e+04, 9.846e+04, 9.85e+04, 9.86e+04, 9.85e+04, 9.85e+04, 9.86e+04, 9.85e+04, 9.86e+04, 9.86e+04, 9.85e+04, 9.85e+04, 9.86e+04, 9.86e+04, 9.866375e+04, 9.87e+04, 9.86e+04, 9.87e+04, 9.86875e+04, 9.86e+04, 9.87e+04, 9.87e+04, 9.86e+04, 9.87e+04, 9.86e+04, 9.86e+04, 9.87e+04, 9.86e+04, 9.87e+04, 9.86e+04, 9.86e+04, 9.86e+04, 9.87e+04, 9.86e+04, 9.866375e+04, 9.71e+04, 9.803124843750001e+04, 9.879245625e+04, 9.870227499999999e+04, 9.7993609375e+04, 9.69e+04, 9.807187656249999e+04, 9.867553125e+04, 9.86e+04, 9.86e+04, 9.86e+04, 9.86e+04, 9.86e+04, 9.86e+04, 9.86e+04, 9.86e+04, 9.86e+04, 9.864533125e+04, 9.863776875e+04, 9.823156093750001e+04, 9.82e+04, 9.827499843750001e+04, 9.874201875e+04, 9.861677499999999e+04, 9.83186875e+04, 9.77e+04, 9.8394140625e+04, 9.8625e+04, 9.8635e+04, 9.85e+04, 9.82e+04, 9.846722031249999e+04, 9.85e+04, 9.86e+04, 9.86e+04, 9.85e+04, 9.85e+04, 9.86e+04, 9.85e+04, 9.85e+04, 9.85e+04, 9.85e+04, 9.85e+04, 9.85e+04, 9.84e+04, 9.85e+04, 9.846375e+04, 9.85e+04, 9.85e+04, 9.84e+04, 9.85e+04] +weaBusHHorIR.pAtm=[9.8468e+04, 9.88131171875e+04, 9.841998125e+04, 9.847966250000001e+04, 9.87185078125e+04, 9.8883e+04, 9.865954375e+04, 9.849815625e+04, 9.841752499999999e+04, 9.8775140625e+04, 9.8787e+04, 9.8511190625e+04, 9.854052499999999e+04, 9.851058749999999e+04, 9.86264375e+04, 9.8428e+04, 9.8523059375e+04, 9.854239375e+04, 9.8672e+04, 9.856022812499999e+04, 9.8583e+04, 9.868e+04, 9.85758e+04, 9.862900625000001e+04, 9.868679531250001e+04, 9.8564e+04, 9.856971875e+04, 9.867366875e+04, 9.862835625e+04, 9.87016453125e+04, 9.8714e+04, 9.86492375e+04, 9.874378750000001e+04, 9.871070625e+04, 9.86833875e+04, 9.873e+04, 9.871595625e+04, 9.868839999999999e+04, 9.876155e+04, 9.863850937499999e+04, 9.8672e+04, 9.8755e+04, 9.86734875e+04, 9.871527499999999e+04, 9.867576406250001e+04, 9.8628e+04, 9.864295625e+04, 9.87420125e+04, 9.868163125000001e+04, 9.87016953125e+04, 9.7121e+04, 9.810349374999999e+04, 9.87946125e+04, 9.878983749999999e+04, 9.803017812500001e+04, 9.6947e+04, 9.814336874999999e+04, 9.8702175e+04, 9.869871875e+04, 9.8654e+04, 9.8663e+04, 9.8672e+04, 9.86558e+04, 9.8646e+04, 9.867970625e+04, 9.8628e+04, 9.8680159375e+04, 9.870769375000001e+04, 9.866620625e+04, 9.828178125e+04, 9.8222e+04, 9.833389375e+04, 9.876128750000001e+04, 9.863028125e+04, 9.8361309375e+04, 9.7778e+04, 9.846368124999999e+04, 9.866989375e+04, 9.873558749999999e+04, 9.853518906249999e+04, 9.8228e+04, 9.848679843749999e+04, 9.856708125e+04, 9.860247500000001e+04, 9.868008749999999e+04, 9.8536e+04, 9.858660000000001e+04, 9.86298e+04, 9.8546e+04, 9.8572e+04, 9.8583e+04, 9.8511e+04, 9.85688125e+04, 9.855003125e+04, 9.84931828125e+04, 9.8583e+04, 9.850349374999999e+04, 9.8507e+04, 9.8558375e+04, 9.844634218750001e+04, 9.8522e+04] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_Validation_BESTEST_WD600.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_Validation_BESTEST_WD600.txt index 761b2a8de9..8d3a00ece9 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_Validation_BESTEST_WD600.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_Validation_BESTEST_WD600.txt @@ -1,4 +1,4 @@ -last-generated=2020-08-24 +last-generated=2022-05-18 statistics-simulation= { "linear": " ", @@ -16,22 +16,22 @@ azi045til90.H=[0e+00, 7.761691894531251e+01, 2.914547657966613e+00, 0e+00, 8.630 azi270til30.H=[0e+00, 2.975526008605957e+01, 2.214837131500244e+01, 0e+00, 9.00333740234375e+01, 0e+00, 0e+00, 3.428145324707031e+02, 0e+00, 0e+00, 4.506259155273438e+02, 0e+00, 0e+00, 1.815353546142578e+02, 0e+00, 3.929672956466675e+00, 3.273807556152344e+02, 0e+00, 2.536335258483887e+01, 6.94877734375e+02, 0e+00, 7.01207260131836e+01, 3.142783905029297e+02, 0e+00, 1.895662261962891e+02, 1.74139461517334e+01, 0e+00, 4.20083203125e+02, 4.129075622558593e+00, 0e+00, 4.362546691894531e+02, 0e+00, 8.271312713623047e-01, 9.905612915039062e+02, 0e+00, 5.374758529663086e+01, 1.030252587890625e+03, 0e+00, 1.171597076416016e+02, 3.932453063964844e+02, 0e+00, 3.13321728515625e+02, 4.584929321289063e+02, 0e+00, 5.367859252929687e+02, 2.564064636230469e+02, 0e+00, 5.199441162109375e+02, 5.467987365722657e+01, 1.076553091406822e-02, 8.1313427734375e+02, 7.10766389966011e-04, 9.12041130065918e+00, 9.867061767578125e+02, 0e+00, 4.882487869262695e+01, 2.161631225585938e+02, 0e+00, 1.920582641601563e+02, 8.374776123046875e+02, 0e+00, 2.495095764160156e+02, 4.802015625e+02, 0e+00, 3.035454772949219e+02, 1.761698150634766e+02, 0e+00, 6.107865600585938e+02, 0e+00, 0e+00, 7.103651733398438e+02, 0e+00, 0e+00, 3.532922302246094e+02, 0e+00, 1.489889901131392e-02, 1.05486083984375e+02, 0e+00, 1.83883996963501e+01, 6.236904296875e+02, 0e+00, 6.671161499023438e+01, 2.014581970214844e+02, 0e+00, 1.774231781005859e+02, 0e+00, 0e+00, 2.828151428222656e+02, 0e+00, 0e+00, 4.730580444335938e+02, 0e+00, 0e+00, 1.127539031982422e+02, 0e+00, 0e+00, 2.559692779541016e+02, 0e+00, 3.984795999526978e+00, 3.705755981445312e+02, 0e+00] azi000til30.H=[0e+00, 5.801825942993164e+01, 1.319204292297363e+01, 0e+00, 6.598467895507813e+02, 0e+00, 0e+00, 8.326116821289063e+02, 0e+00, 0e+00, 6.656765747070312e+02, 0e+00, 0e+00, 1.856989715576172e+02, 0e+00, 5.093202114105225e+00, 3.258609191894531e+02, 0e+00, 2.624398406982422e+02, 5.124243774414062e+02, 0e+00, 5.870439697265625e+02, 1.677573348999023e+02, 0e+00, 1.895662261962891e+02, 1.74139461517334e+01, 0e+00, 5.313929443359375e+02, 7.421691715717316e-02, 0e+00, 4.504839172363281e+02, 0e+00, 8.271312713623047e-01, 1.050753100585938e+03, 0e+00, 6.104935455322266e+01, 8.95335009765625e+02, 0e+00, 1.203740966796875e+02, 3.491732604980469e+02, 0e+00, 4.328252624511719e+02, 2.776649291992188e+02, 0e+00, 8.531656860351562e+02, 1.132246704101562e+02, 0e+00, 6.006314697265625e+02, 1.384995346069336e+01, 1.076553091406822e-02, 9.223425903320312e+02, 7.10766389966011e-04, 9.12041130065918e+00, 9.743753173828125e+02, 0e+00, 4.882487869262695e+01, 2.161631225585938e+02, 0e+00, 3.035261779785156e+02, 5.741151000976563e+02, 0e+00, 5.4460361328125e+02, 2.694320953369141e+02, 0e+00, 3.317312133789063e+02, 4.358823394775391e+01, 0e+00, 9.934984375e+02, 0e+00, 0e+00, 9.74831787109375e+02, 0e+00, 0e+00, 3.597071716308594e+02, 0e+00, 1.489889901131392e-02, 1.05486083984375e+02, 0e+00, 1.042276252746582e+02, 5.385090698242187e+02, 0e+00, 6.671161499023438e+01, 1.371430740356445e+02, 0e+00, 2.496629241943359e+02, 0e+00, 0e+00, 5.082868774414063e+02, 0e+00, 0e+00, 8.919067993164062e+02, 0e+00, 0e+00, 1.127539031982422e+02, 0e+00, 0e+00, 2.924749633789062e+02, 0e+00, 2.306527462005615e+01, 3.378482055664062e+02, 0e+00] azi090til30.H=[0e+00, 6.050117797851563e+01, 4.534906673431396e+00, 0e+00, 5.483217041015625e+02, 0e+00, 0e+00, 5.669830444335937e+02, 0e+00, 0e+00, 4.204941711425781e+02, 0e+00, 0e+00, 1.745991760253906e+02, 0e+00, 2.63827953338623e+01, 2.02552783203125e+02, 0e+00, 4.889406921386719e+02, 4.234440460205078e+01, 0e+00, 7.507011962890625e+02, 5.986493072509766e+01, 0e+00, 1.895662261962891e+02, 1.74139461517334e+01, 0e+00, 5.017086791992188e+02, 7.421691715717316e-02, 0e+00, 4.3686669921875e+02, 0e+00, 8.271312713623047e-01, 7.114242309570312e+02, 0e+00, 2.163568725585938e+02, 4.933714904785156e+02, 0e+00, 1.2571494140625e+02, 2.915153198242188e+02, 0e+00, 5.34471728515625e+02, 1.423863800048828e+02, 0e+00, 1.016481213378906e+03, 9.619422912597656e+01, 0e+00, 6.051271362304688e+02, 1.384995346069336e+01, 1.388367533683777e-01, 8.055697631835938e+02, 7.10766389966011e-04, 1.579746360778809e+01, 7.062339111328125e+02, 0e+00, 4.882487869262695e+01, 2.161631225585938e+02, 0e+00, 4.493171203613281e+02, 2.118317840576172e+02, 0e+00, 7.323754760742188e+02, 1.191227508544922e+02, 0e+00, 3.378890686035156e+02, 3.626523208618164e+01, 0e+00, 9.071020751953125e+02, 0e+00, 0e+00, 7.344530639648438e+02, 0e+00, 0e+00, 3.438027282714844e+02, 0e+00, 1.489889901131392e-02, 1.05486083984375e+02, 0e+00, 2.416701568603516e+02, 7.658604125976562e+01, 0e+00, 6.671161499023438e+01, 4.950505065917969e+01, 0e+00, 2.470329681396484e+02, 0e+00, 0e+00, 4.203066101074219e+02, 0e+00, 0e+00, 5.219207763671875e+02, 0e+00, 0e+00, 1.127539031982422e+02, 0e+00, 0e+00, 1.086123901367187e+02, 0e+00, 4.014976272583008e+01, 2.151528625488281e+01, 0e+00] -azi000til00.HPer=[0e+00, 4.175680694580078e+01, 4.78557710647583e+00, 0e+00, 3.596977661132813e+02, 0e+00, 0e+00, 5.12096630859375e+02, 0e+00, 0e+00, 4.823821716308594e+02, 0e+00, 0e+00, 1.889735626220703e+02, 0e+00, 4.123563289642334e+00, 2.868685241699219e+02, 0e+00, 1.704713882446289e+02, 3.697218688964844e+02, 0e+00, 4.54593115234375e+02, 1.445264190673828e+02, 0e+00, 2.003047119140625e+02, 1.783525657653809e+01, 0e+00, 5.022962768554688e+02, 7.954545319080353e-02, 0e+00, 4.647355041503906e+02, 0e+00, 8.726851940155029e-01, 9.602077270507813e+02, 0e+00, 9.962802886962891e+01, 8.605828002929687e+02, 0e+00, 1.280843963623047e+02, 3.681270263671875e+02, 0e+00, 4.611967590332031e+02, 3.243223724365234e+02, 0e+00, 8.713026123046875e+02, 1.609150238037109e+02, 0e+00, 6.140789672851563e+02, 1.776949920654297e+01, 1.15384615957737e-02, 9.08380859375e+02, 0e+00, 1.008342094421387e+01, 9.542715942382813e+02, 0e+00, 5.159405136108398e+01, 2.284034057617187e+02, 0e+00, 3.37105908203125e+02, 5.888561889648438e+02, 0e+00, 5.4577216796875e+02, 2.959995391845703e+02, 0e+00, 3.421022155761719e+02, 6.493305969238281e+01, 0e+00, 8.551271240234375e+02, 0e+00, 0e+00, 8.114301147460938e+02, 0e+00, 0e+00, 3.700927368164063e+02, 0e+00, 0e+00, 1.114591644287109e+02, 0e+00, 5.775022163391113e+01, 3.732897094726562e+02, 0e+00, 7.050794067382813e+01, 8.940362014770508e+01, 0e+00, 2.273249969482422e+02, 0e+00, 0e+00, 3.844722290039062e+02, 0e+00, 0e+00, 5.573271484375e+02, 0e+00, 0e+00, 1.191385116577148e+02, 0e+00, 0e+00, 1.988843292236328e+02, 0e+00, 4.255813789367676e+00, 1.301907257080078e+02, 0e+00] -azi000til90.HPer=[0e+00, 5.700726623535157e+01, 2.245772113800049e+01, 0e+00, 7.872710693359375e+02, 0e+00, 0e+00, 9.044054565429688e+02, 0e+00, 0e+00, 6.576593627929688e+02, 0e+00, 0e+00, 1.244751159667969e+02, 0e+00, 1.125900650024414e+01, 2.720567443847656e+02, 0e+00, 2.697584991455078e+02, 4.521179077148437e+02, 0e+00, 4.723210083007813e+02, 1.248605087280274e+02, 0e+00, 1.111424026489258e+02, 9.19981861114502e+00, 0e+00, 3.726296691894531e+02, 3.207647651433945e-02, 0e+00, 2.84755615234375e+02, 0e+00, 4.51269817352295e-01, 5.594453491210937e+02, 0e+00, 3.324996948242188e+01, 4.012400146484375e+02, 0e+00, 6.281812591552735e+01, 1.624732238769531e+02, 0e+00, 1.721997406005859e+02, 9.4897216796875e+01, 0e+00, 3.194867248535156e+02, 5.718805313110352e+01, 0e+00, 2.885110229492187e+02, 8.384886932373046e+00, 4.648891091346741e-03, 3.976019592285156e+02, 5.305232480168343e-03, 5.022543144226074e+00, 4.092700561523437e+02, 0e+00, 2.691472816467285e+01, 1.197749008178711e+02, 0e+00, 1.095715713500977e+02, 2.145234771728516e+02, 0e+00, 2.494315124511719e+02, 8.723891448974609e+01, 0e+00, 1.970326629638672e+02, 2.189655113220215e+01, 0e+00, 6.316850952148437e+02, 0e+00, 0e+00, 6.997947387695312e+02, 0e+00, 0e+00, 2.333466674804687e+02, 0e+00, 1.112068966031075e-01, 5.990705642700195e+01, 0e+00, 1.26847607421875e+02, 5.246241088867188e+02, 0e+00, 3.935316390991211e+01, 1.540708740234375e+02, 0e+00, 2.255594879150391e+02, 0e+00, 0e+00, 5.17676025390625e+02, 0e+00, 0e+00, 9.792142944335938e+02, 0e+00, 0e+00, 7.000459442138671e+01, 0e+00, 0e+00, 3.315210815429688e+02, 0e+00, 4.543875770568847e+01, 4.964558349609375e+02, 0e+00] -azi270til90.HPer=[0e+00, 1.813086433410644e+01, 4.037037811279296e+01, 0e+00, 5.803538513183594e+01, 0e+00, 0e+00, 8.367888488769532e+01, 0e+00, 0e+00, 1.512982330322266e+02, 0e+00, 0e+00, 1.059245697021484e+02, 0e+00, 2.432797908782959e+00, 2.762717407226563e+02, 0e+00, 3.193538589477539e+01, 8.412143676757812e+02, 0e+00, 7.527622375488281e+01, 4.517841186523438e+02, 0e+00, 1.006661102294922e+02, 1.997599029541016e+01, 0e+00, 1.492812530517578e+02, 1.064054679870605e+01, 0e+00, 1.89868408203125e+02, 0e+00, 4.51269817352295e-01, 4.319801391601562e+02, 0e+00, 3.324996948242188e+01, 6.835379272460938e+02, 0e+00, 6.281812591552735e+01, 3.086951293945312e+02, 0e+00, 1.4705517578125e+02, 4.968328857421875e+02, 0e+00, 1.458646026611328e+02, 3.18250732421875e+02, 0e+00, 1.659687774658203e+02, 8.979730529785157e+01, 4.648891091346741e-03, 1.443381652832031e+02, 5.305232480168343e-03, 5.022543144226074e+00, 4.35630859375e+02, 0e+00, 2.691472816467285e+01, 1.272888122558594e+02, 0e+00, 1.095715713500977e+02, 8.079947387695313e+02, 0e+00, 1.206583343505859e+02, 5.813290893554688e+02, 0e+00, 1.439381500244141e+02, 2.767293395996094e+02, 0e+00, 1.313915100097656e+02, 0e+00, 0e+00, 1.331399383544922e+02, 0e+00, 0e+00, 1.94413720703125e+02, 0e+00, 1.112068966031075e-01, 5.969249572753906e+01, 0e+00, 1.56070463180542e+01, 7.12318798828125e+02, 0e+00, 3.60322738647461e+01, 2.98440966796875e+02, 0e+00, 9.201369476318359e+01, 0e+00, 0e+00, 1.160779006958008e+02, 0e+00, 0e+00, 1.033259811401367e+02, 0e+00, 0e+00, 6.34941520690918e+01, 0e+00, 0e+00, 2.433805419921875e+02, 0e+00, 1.865814173221588e+00, 5.661296508789062e+02, 0e+00] -azi180til90.HPer=[0e+00, 1.813086433410644e+01, 2.506838059425354e+00, 0e+00, 5.803538513183594e+01, 0e+00, 0e+00, 8.367888488769532e+01, 0e+00, 0e+00, 1.158239440917969e+02, 0e+00, 0e+00, 9.000243835449218e+01, 0e+00, 2.432797908782959e+00, 1.030095840454102e+02, 0e+00, 3.193538589477539e+01, 5.883007202148438e+01, 0e+00, 7.527622375488281e+01, 4.408504638671875e+01, 0e+00, 1.006661102294922e+02, 9.83786678314209e+00, 0e+00, 1.492812530517578e+02, 3.27527494430542e+00, 0e+00, 1.89868408203125e+02, 0e+00, 4.51269817352295e-01, 1.364319305419922e+02, 0e+00, 1.001873550415039e+02, 1.218517303466797e+02, 0e+00, 6.504141082763672e+01, 1.39976025390625e+02, 0e+00, 1.4705517578125e+02, 1.383278228759766e+02, 0e+00, 1.458646026611328e+02, 1.421239013671875e+02, 0e+00, 1.659687774658203e+02, 5.343174591064453e+01, 3.046526193618774e-01, 1.355679016113281e+02, 5.305232480168343e-03, 1.170674819946289e+01, 1.357841735839844e+02, 0e+00, 2.691619682312012e+01, 1.150627243041992e+02, 0e+00, 1.263468826293945e+02, 1.031658737182617e+02, 0e+00, 1.206583343505859e+02, 8.569960479736328e+01, 0e+00, 1.439381500244141e+02, 5.682100677490234e+01, 0e+00, 1.313915100097656e+02, 0e+00, 0e+00, 1.331399383544922e+02, 0e+00, 0e+00, 1.659677490234375e+02, 0e+00, 1.112068966031075e-01, 5.821459884643555e+01, 0e+00, 1.56070463180542e+01, 7.291553955078125e+01, 0e+00, 3.60322738647461e+01, 3.037710723876953e+01, 0e+00, 9.201369476318359e+01, 0e+00, 0e+00, 1.160779006958008e+02, 0e+00, 0e+00, 1.033259811401367e+02, 0e+00, 0e+00, 6.083376007080078e+01, 0e+00, 0e+00, 6.530179901123047e+01, 0e+00, 1.865814173221588e+00, 2.458207550048828e+01, 0e+00] -azi090til90.HPer=[0e+00, 6.203363952636719e+01, 2.506838059425354e+00, 0e+00, 5.485545288085938e+02, 0e+00, 0e+00, 3.272109069824219e+02, 0e+00, 0e+00, 1.158239440917969e+02, 0e+00, 0e+00, 9.000243835449218e+01, 0e+00, 5.383819198608398e+01, 1.030095840454102e+02, 0e+00, 7.562140014648437e+02, 5.883007202148438e+01, 0e+00, 8.270173950195312e+02, 4.408504638671875e+01, 0e+00, 1.129849594116211e+02, 9.19981861114502e+00, 0e+00, 2.792544128417969e+02, 3.207647651433945e-02, 0e+00, 1.919539489746094e+02, 0e+00, 4.51269817352295e-01, 1.364319305419922e+02, 0e+00, 3.092152709960938e+02, 1.218517303466797e+02, 0e+00, 8.529636993408204e+01, 1.39976025390625e+02, 0e+00, 4.609036254882812e+02, 9.4897216796875e+01, 0e+00, 6.898484008789062e+02, 5.718805313110352e+01, 0e+00, 3.024662231445312e+02, 8.384886932373046e+00, 3.718220710754395e-01, 1.355667572021484e+02, 5.305232480168343e-03, 1.759121017456055e+01, 1.357841735839844e+02, 0e+00, 2.69200496673584e+01, 1.150627243041992e+02, 0e+00, 4.89378369140625e+02, 1.031658737182617e+02, 0e+00, 7.000712890625e+02, 8.323018646240234e+01, 0e+00, 2.278536224365234e+02, 2.189655113220215e+01, 0e+00, 4.4742490234375e+02, 0e+00, 0e+00, 1.601769714355469e+02, 0e+00, 0e+00, 1.659677490234375e+02, 0e+00, 1.112068966031075e-01, 5.821459884643555e+01, 0e+00, 4.202168640136719e+02, 7.291553955078125e+01, 0e+00, 4.157622299194336e+01, 3.037710723876953e+01, 0e+00, 2.158444549560547e+02, 0e+00, 0e+00, 2.923619079589844e+02, 0e+00, 0e+00, 1.575810394287109e+02, 0e+00, 0e+00, 6.083376007080078e+01, 0e+00, 0e+00, 6.530179901123047e+01, 0e+00, 7.960773086547852e+01, 2.458207550048828e+01, 0e+00] -azi315til90.HPer=[0e+00, 1.813086433410644e+01, 4.338780937194824e+01, 0e+00, 2.268334716796875e+02, 0e+00, 0e+00, 4.918170654296875e+02, 0e+00, 0e+00, 5.240435791015625e+02, 0e+00, 0e+00, 1.256369476318359e+02, 0e+00, 2.432797908782959e+00, 3.450588195800781e+02, 0e+00, 3.193538589477539e+01, 8.90155810546875e+02, 0e+00, 7.527622375488281e+01, 3.894886901855469e+02, 0e+00, 1.006661102294922e+02, 1.636855506896973e+01, 0e+00, 2.153075439453125e+02, 5.24011001586914e+00, 0e+00, 2.554891052246094e+02, 0e+00, 4.51269817352295e-01, 6.445317260742188e+02, 0e+00, 3.324996948242188e+01, 7.16581201171875e+02, 0e+00, 6.281812591552735e+01, 2.75186376953125e+02, 0e+00, 1.4705517578125e+02, 3.483985992431641e+02, 0e+00, 1.458646026611328e+02, 1.817285308837891e+02, 0e+00, 1.677705841064453e+02, 3.409922027587891e+01, 4.648891091346741e-03, 3.270563049316406e+02, 5.305232480168343e-03, 5.022543144226074e+00, 5.4119150390625e+02, 0e+00, 2.691472816467285e+01, 1.270398803710937e+02, 0e+00, 1.095715713500977e+02, 6.802968505859375e+02, 0e+00, 1.206583343505859e+02, 4.36527734375e+02, 0e+00, 1.439381500244141e+02, 1.773952331542969e+02, 0e+00, 2.616831359863281e+02, 0e+00, 0e+00, 5.147073364257812e+02, 0e+00, 0e+00, 2.337261779785156e+02, 0e+00, 1.112068966031075e-01, 6.045637588500976e+01, 0e+00, 1.56070463180542e+01, 8.444481201171875e+02, 0e+00, 3.60322738647461e+01, 3.073915924072265e+02, 0e+00, 9.888325958251953e+01, 0e+00, 0e+00, 2.753990356445312e+02, 0e+00, 0e+00, 6.843084716796875e+02, 0e+00, 0e+00, 6.919969787597657e+01, 0e+00, 0e+00, 3.794679382324219e+02, 0e+00, 1.865814173221588e+00, 7.411791625976563e+02, 0e+00] -azi045til90.HPer=[0e+00, 7.666458282470703e+01, 2.506838059425354e+00, 0e+00, 9.205322998046875e+02, 0e+00, 0e+00, 8.362233642578125e+02, 0e+00, 0e+00, 4.738753356933594e+02, 0e+00, 0e+00, 1.031196487426758e+02, 0e+00, 4.502297210693359e+01, 1.053802200317383e+02, 0e+00, 7.122440307617187e+02, 5.883007202148438e+01, 0e+00, 8.87590576171875e+02, 4.408504638671875e+01, 0e+00, 1.167847076416016e+02, 9.19981861114502e+00, 0e+00, 3.991173461914062e+02, 3.207647651433945e-02, 0e+00, 2.584385070800781e+02, 0e+00, 4.51269817352295e-01, 2.265634338378906e+02, 0e+00, 1.810550231933594e+02, 1.218517303466797e+02, 0e+00, 7.714054260253906e+01, 1.39976025390625e+02, 0e+00, 3.867594360351562e+02, 9.4897216796875e+01, 0e+00, 6.53288623046875e+02, 5.718805313110352e+01, 0e+00, 3.491375244140625e+02, 8.384886932373046e+00, 5.214487314224242e-02, 3.146516418457031e+02, 5.305232480168343e-03, 9.183485603332519e+00, 1.398938598632812e+02, 0e+00, 2.691745185852051e+01, 1.150627243041992e+02, 0e+00, 3.662736083984375e+02, 1.031658737182617e+02, 0e+00, 6.214215454101562e+02, 8.323018646240234e+01, 0e+00, 2.408188537597656e+02, 2.189655113220215e+01, 0e+00, 7.08621875e+02, 0e+00, 0e+00, 5.529434814453125e+02, 0e+00, 0e+00, 1.934974975585938e+02, 0e+00, 1.112068966031075e-01, 5.836631469726562e+01, 0e+00, 3.80368359375e+02, 7.291553955078125e+01, 0e+00, 4.230065994262695e+01, 3.037710723876953e+01, 0e+00, 2.740064025878906e+02, 0e+00, 0e+00, 5.2470224609375e+02, 0e+00, 0e+00, 7.610366821289062e+02, 0e+00, 0e+00, 6.543733673095703e+01, 0e+00, 0e+00, 1.276265655517578e+02, 0e+00, 8.764837799072265e+01, 2.458207550048828e+01, 0e+00] -azi270til30.HPer=[0e+00, 2.884132423400879e+01, 2.194451656341553e+01, 0e+00, 7.839872894287109e+01, 0e+00, 0e+00, 3.394314758300781e+02, 0e+00, 0e+00, 4.548509216308594e+02, 0e+00, 0e+00, 1.798601715087891e+02, 0e+00, 3.807898759841919e+00, 3.48382666015625e+02, 0e+00, 1.860646133422852e+01, 7.2349814453125e+02, 0e+00, 4.798361663818359e+01, 3.35412744140625e+02, 0e+00, 1.762252227783203e+02, 2.156515121459961e+01, 0e+00, 3.972778503417969e+02, 4.125227546691894e+00, 0e+00, 4.252391967773438e+02, 0e+00, 7.864331245422362e-01, 1.003762182617187e+03, 0e+00, 4.830643081665039e+01, 1.048561108398437e+03, 0e+00, 1.073865631103516e+02, 4.195639709472656e+02, 0e+00, 2.634854797363281e+02, 4.973112426757813e+02, 0e+00, 5.128121398925781e+02, 2.761446533203125e+02, 0e+00, 4.935339477539063e+02, 5.695518646240235e+01, 1.020536124706268e-02, 8.188502807617188e+02, 7.10766389966011e-04, 8.718325805664062e+00, 1.000177075195312e+03, 0e+00, 4.68189811706543e+01, 2.144128692626953e+02, 0e+00, 1.462391464233398e+02, 8.850809204101563e+02, 0e+00, 2.072795135498047e+02, 5.18675146484375e+02, 0e+00, 2.712265594482422e+02, 1.859447631835938e+02, 0e+00, 6.071757080078125e+02, 0e+00, 0e+00, 7.172457885742188e+02, 0e+00, 0e+00, 3.506510375976562e+02, 0e+00, 1.489889901131392e-02, 1.021933883666992e+02, 0e+00, 1.636933879852295e+01, 6.572410034179687e+02, 0e+00, 6.240102233886719e+01, 2.147127136230469e+02, 0e+00, 1.452313903808594e+02, 0e+00, 0e+00, 2.614858642578125e+02, 0e+00, 0e+00, 4.755997924804688e+02, 0e+00, 0e+00, 1.096084487915039e+02, 0e+00, 0e+00, 2.70327099609375e+02, 0e+00, 3.801249384880066e+00, 3.8823662109375e+02, 0e+00] -azi000til30.HPer=[0e+00, 5.744733810424805e+01, 1.298818826675415e+01, 0e+00, 6.882761352539062e+02, 0e+00, 0e+00, 8.71560791015625e+02, 0e+00, 0e+00, 7.08031494140625e+02, 0e+00, 0e+00, 1.891354461669922e+02, 0e+00, 4.971427917480469e+00, 3.462751586914063e+02, 0e+00, 2.732812835693359e+02, 5.289499267578125e+02, 0e+00, 6.081517700195312e+02, 1.71950944519043e+02, 0e+00, 1.876227996826172e+02, 1.585480499267578e+01, 0e+00, 5.739386474609375e+02, 7.036879360675811e-02, 0e+00, 4.737255859375e+02, 0e+00, 7.864331245422362e-01, 1.067494775390625e+03, 0e+00, 5.63671989440918e+01, 9.07412158203125e+02, 0e+00, 1.150973022460937e+02, 3.464530090332031e+02, 0e+00, 4.329819702148437e+02, 2.746280822753906e+02, 0e+00, 8.716151123046875e+02, 1.03145393371582e+02, 0e+00, 6.230537963867188e+02, 1.294382057189941e+01, 1.020536124706268e-02, 9.454816284179688e+02, 7.10766389966011e-04, 8.718325805664062e+00, 9.869966918945313e+02, 0e+00, 4.681942749023438e+01, 2.106559173583984e+02, 0e+00, 2.985964752197266e+02, 5.883453002929688e+02, 0e+00, 5.613725952148437e+02, 2.703953552246094e+02, 0e+00, 3.397315673828125e+02, 4.106613540649414e+01, 0e+00, 1.015339233398438e+03, 0e+00, 0e+00, 1.014091674804688e+03, 0e+00, 0e+00, 3.701175231933594e+02, 0e+00, 1.489889901131392e-02, 1.023006698608398e+02, 0e+00, 1.081444297790527e+02, 5.6339365234375e+02, 0e+00, 6.563479156494141e+01, 1.425276657104492e+02, 0e+00, 2.739412231445312e+02, 0e+00, 0e+00, 5.504269287109375e+02, 0e+00, 0e+00, 9.406715087890625e+02, 0e+00, 0e+00, 1.128636672973633e+02, 0e+00, 0e+00, 3.1439736328125e+02, 0e+00, 2.288172798156738e+01, 3.533997314453125e+02, 0e+00] -azi090til30.HPer=[0e+00, 5.99605239868164e+01, 4.331051540374755e+00, 0e+00, 5.689178466796875e+02, 0e+00, 0e+00, 5.829635009765625e+02, 0e+00, 0e+00, 4.193766174316406e+02, 0e+00, 0e+00, 1.639380279541016e+02, 0e+00, 2.626102066040039e+01, 1.751205047607422e+02, 0e+00, 5.165090209960938e+02, 2.777977409362793e+01, 0e+00, 7.854999755859375e+02, 5.168829498291016e+01, 0e+00, 1.885440673828125e+02, 1.585085201263428e+01, 0e+00, 5.272510131835937e+02, 7.036879360675811e-02, 0e+00, 4.273247375488281e+02, 0e+00, 7.864331245422362e-01, 7.082139404296875e+02, 0e+00, 2.278185424804688e+02, 4.868748779296875e+02, 0e+00, 1.274480682373047e+02, 2.508448608398438e+02, 0e+00, 5.773339111328125e+02, 1.078909912109375e+02, 0e+00, 1.0567958984375e+03, 8.256837463378906e+01, 0e+00, 6.300313842773437e+02, 1.294382057189941e+01, 1.382765889167785e-01, 8.10078857421875e+02, 7.10766389966011e-04, 1.539537811279297e+01, 7.003303955078125e+02, 0e+00, 4.682282638549805e+01, 2.021867889404297e+02, 0e+00, 4.968875366210938e+02, 1.802520660400391e+02, 0e+00, 7.8669248046875e+02, 9.337013092041016e+01, 0e+00, 3.551420227050781e+02, 3.306392288208008e+01, 0e+00, 9.232091064453125e+02, 0e+00, 0e+00, 7.442828369140625e+02, 0e+00, 0e+00, 3.222050659179687e+02, 0e+00, 1.489889901131392e-02, 1.007154922485352e+02, 0e+00, 2.548290588378906e+02, 5.473316955566406e+01, 0e+00, 6.674631805419922e+01, 4.398960304260254e+01, 0e+00, 2.690837097167969e+02, 0e+00, 0e+00, 4.377698486328125e+02, 0e+00, 0e+00, 5.298548583984375e+02, 0e+00, 0e+00, 1.069480545043945e+02, 0e+00, 0e+00, 9.260331268310547e+01, 0e+00, 3.996621589660644e+01, 1.702783470153809e+01, 0e+00] +azi000til00.HPer=[0e+00, 4.175680694580078e+01, 3.590944314002991e+00, 0e+00, 3.596977661132813e+02, 0e+00, 0e+00, 5.12096630859375e+02, 0e+00, 0e+00, 4.823821716308594e+02, 0e+00, 0e+00, 1.889735626220703e+02, 0e+00, 2.698701620101929e+00, 2.868685241699219e+02, 0e+00, 1.704713882446289e+02, 3.697218688964844e+02, 0e+00, 4.54593115234375e+02, 1.445264190673828e+02, 0e+00, 2.003047119140625e+02, 1.813675498962402e+01, 0e+00, 5.022962768554688e+02, 5.954889059066772e-02, 0e+00, 4.647355041503906e+02, 0e+00, 8.726851940155029e-01, 9.602077270507813e+02, 0e+00, 9.962802886962891e+01, 8.605828002929687e+02, 0e+00, 1.280843963623047e+02, 3.681270263671875e+02, 0e+00, 4.611967590332031e+02, 3.243223724365234e+02, 0e+00, 8.713026123046875e+02, 1.609150238037109e+02, 0e+00, 6.140789672851563e+02, 1.610980834960937e+01, 8.648008853197098e-03, 9.08380859375e+02, 0e+00, 9.87275505065918e+00, 9.542715942382813e+02, 0e+00, 5.159405136108398e+01, 2.284034057617187e+02, 0e+00, 3.37105908203125e+02, 5.888561889648438e+02, 0e+00, 5.4577216796875e+02, 2.959995391845703e+02, 0e+00, 3.421022155761719e+02, 6.493305969238281e+01, 0e+00, 8.551271240234375e+02, 0e+00, 0e+00, 8.114301147460938e+02, 0e+00, 0e+00, 3.700927368164063e+02, 0e+00, 0e+00, 1.114591644287109e+02, 0e+00, 5.750692329406738e+01, 3.732897094726562e+02, 0e+00, 7.050794067382813e+01, 8.940362014770508e+01, 0e+00, 2.273249969482422e+02, 0e+00, 0e+00, 3.844722290039062e+02, 0e+00, 0e+00, 5.573271484375e+02, 0e+00, 0e+00, 1.191385116577148e+02, 0e+00, 0e+00, 1.988843292236328e+02, 0e+00, 2.85139365196228e+00, 1.301907257080078e+02, 0e+00] +azi000til90.HPer=[0e+00, 7.055249938964843e+01, 2.949743461608887e+01, 0e+00, 7.782872436523437e+02, 0e+00, 0e+00, 8.924975219726563e+02, 0e+00, 0e+00, 6.93264892578125e+02, 0e+00, 0e+00, 1.197838287353516e+02, 0e+00, 1.481120014190674e+01, 2.890301147460938e+02, 0e+00, 2.697120361328125e+02, 4.505539794921875e+02, 0e+00, 4.709003479003906e+02, 1.412936630249023e+02, 0e+00, 1.094019393920898e+02, 9.389438629150391e+00, 0e+00, 3.751950134277344e+02, 7.573640942573548e-02, 0e+00, 2.82209716796875e+02, 0e+00, 4.508767366409301e-01, 5.612109497070312e+02, 0e+00, 3.747311019897461e+01, 4.022939208984375e+02, 0e+00, 6.386517333984375e+01, 1.680056823730469e+02, 0e+00, 1.761096832275391e+02, 9.770029296875001e+01, 0e+00, 3.216647277832031e+02, 6.134788131713867e+01, 0e+00, 2.911047912597656e+02, 9.697512626647949e+00, 1.10460601747036e-02, 3.998665466308594e+02, 5.305232480168343e-03, 5.564809608459473e+00, 4.11087353515625e+02, 0e+00, 2.682894515991211e+01, 1.202084518432617e+02, 0e+00, 1.140378082275391e+02, 2.186721618652344e+02, 0e+00, 2.572425903320312e+02, 9.101440734863282e+01, 0e+00, 1.96515966796875e+02, 2.50120964050293e+01, 0e+00, 6.339040771484375e+02, 0e+00, 0e+00, 7.037202758789062e+02, 0e+00, 0e+00, 2.456148895263672e+02, 0e+00, 1.112068966031075e-01, 5.884015579223633e+01, 0e+00, 1.402379577636719e+02, 5.381100830078125e+02, 0e+00, 3.733781814575195e+01, 1.863161865234375e+02, 0e+00, 2.277129699707031e+02, 0e+00, 0e+00, 5.425193359375e+02, 0e+00, 0e+00, 1.004448974609375e+03, 0e+00, 0e+00, 6.553603668212891e+01, 0e+00, 0e+00, 3.509615783691406e+02, 0e+00, 5.452532577514648e+01, 4.991817993164062e+02, 0e+00] +azi270til90.HPer=[0e+00, 1.919481506347656e+01, 5.314971046447754e+01, 0e+00, 6.508986892700196e+01, 0e+00, 0e+00, 9.30780532836914e+01, 0e+00, 0e+00, 1.566565551757812e+02, 0e+00, 0e+00, 1.046680374145508e+02, 0e+00, 3.225606441497803e+00, 2.936431945800781e+02, 0e+00, 3.665557556152343e+01, 8.313682495117188e+02, 0e+00, 8.392829132080078e+01, 5.134737182617188e+02, 0e+00, 1.024343887329102e+02, 1.441256046295166e+01, 0e+00, 1.524582855224609e+02, 1.090184135437012e+01, 0e+00, 1.965277557373047e+02, 0e+00, 4.508767366409301e-01, 4.336867797851563e+02, 0e+00, 3.747311019897461e+01, 6.846813598632813e+02, 0e+00, 6.386517333984375e+01, 3.296892578125e+02, 0e+00, 1.491143768310547e+02, 5.291079650878906e+02, 0e+00, 1.469292572021484e+02, 3.590781555175781e+02, 0e+00, 1.692492797851563e+02, 1.216312255859375e+02, 1.10460601747036e-02, 1.452999725341797e+02, 5.305232480168343e-03, 5.564809608459473e+00, 4.3746142578125e+02, 0e+00, 2.682894515991211e+01, 1.258400344848633e+02, 0e+00, 1.140378082275391e+02, 8.0790029296875e+02, 0e+00, 1.245098083496094e+02, 6.207001586914063e+02, 0e+00, 1.476557220458984e+02, 3.474845581054688e+02, 0e+00, 1.332910552978516e+02, 0e+00, 0e+00, 1.339893188476562e+02, 0e+00, 0e+00, 2.004203552246094e+02, 0e+00, 1.112068966031075e-01, 5.883300857543945e+01, 0e+00, 1.877492485046387e+01, 7.283396728515625e+02, 0e+00, 3.652947387695313e+01, 3.6379375e+02, 0e+00, 9.639985961914063e+01, 0e+00, 0e+00, 1.206499404907227e+02, 0e+00, 0e+00, 1.07333251953125e+02, 0e+00, 0e+00, 6.294580917358398e+01, 0e+00, 0e+00, 2.571688537597656e+02, 0e+00, 3.089438962936401e+00, 5.685258056640625e+02, 0e+00] +azi180til90.HPer=[0e+00, 1.919481506347656e+01, 3.167110991477966e+00, 0e+00, 6.508986892700196e+01, 0e+00, 0e+00, 9.30780532836914e+01, 0e+00, 0e+00, 1.19063232421875e+02, 0e+00, 0e+00, 9.18580307006836e+01, 0e+00, 3.225606441497803e+00, 1.064795135498047e+02, 0e+00, 3.665557556152343e+01, 6.562821960449219e+01, 0e+00, 8.392829132080078e+01, 4.947486724853515e+01, 0e+00, 1.024343887329102e+02, 9.686853408813477e+00, 0e+00, 1.524582855224609e+02, 3.385052967071533e+00, 0e+00, 1.965277557373047e+02, 0e+00, 4.508767366409301e-01, 1.380015075683594e+02, 0e+00, 1.206139144897461e+02, 1.228172470092773e+02, 0e+00, 6.600685729980469e+01, 1.431637237548828e+02, 0e+00, 1.491143768310547e+02, 1.44336784362793e+02, 0e+00, 1.469292572021484e+02, 1.582134094238281e+02, 0e+00, 1.692492797851563e+02, 7.168040618896484e+01, 3.318442344665527e-01, 1.364846343994141e+02, 5.305232480168343e-03, 1.388587303161621e+01, 1.374644866943359e+02, 0e+00, 2.682894515991211e+01, 1.166731658935547e+02, 0e+00, 1.3166396484375e+02, 1.081026565551758e+02, 0e+00, 1.245098083496094e+02, 8.958398132324218e+01, 0e+00, 1.476557220458984e+02, 6.920646667480469e+01, 0e+00, 1.332910552978516e+02, 0e+00, 0e+00, 1.339893188476562e+02, 0e+00, 0e+00, 1.666200317382813e+02, 0e+00, 1.112068966031075e-01, 5.882254104614258e+01, 0e+00, 1.877492485046387e+01, 8.028087463378907e+01, 0e+00, 3.652947387695313e+01, 3.459087142944336e+01, 0e+00, 9.639985961914063e+01, 0e+00, 0e+00, 1.206499404907227e+02, 0e+00, 0e+00, 1.07333251953125e+02, 0e+00, 0e+00, 6.188773574829101e+01, 0e+00, 0e+00, 6.769561309814453e+01, 0e+00, 3.089438962936401e+00, 2.955524215698242e+01, 0e+00] +azi090til90.HPer=[0e+00, 7.751809082031249e+01, 3.167110991477966e+00, 0e+00, 5.448193359375e+02, 0e+00, 0e+00, 3.302910400390625e+02, 0e+00, 0e+00, 1.19063232421875e+02, 0e+00, 0e+00, 9.18580307006836e+01, 0e+00, 7.070214080810547e+01, 1.064795135498047e+02, 0e+00, 7.46704345703125e+02, 6.562821960449219e+01, 0e+00, 8.166036376953125e+02, 4.947486724853515e+01, 0e+00, 1.106305130004883e+02, 9.389438629150391e+00, 0e+00, 2.819694641113281e+02, 7.573640942573548e-02, 0e+00, 1.984109649658203e+02, 0e+00, 4.508767366409301e-01, 1.380015075683594e+02, 0e+00, 3.802408447265625e+02, 1.228172470092773e+02, 0e+00, 8.440421752929687e+01, 1.431637237548828e+02, 0e+00, 4.863865173339844e+02, 9.770029296875001e+01, 0e+00, 6.943983764648438e+02, 6.134788131713867e+01, 0e+00, 3.049901916503906e+02, 9.697512626647949e+00, 4.036695003509522e-01, 1.364834442138672e+02, 5.305232480168343e-03, 2.117333717346191e+01, 1.374644866943359e+02, 0e+00, 2.682894515991211e+01, 1.166731658935547e+02, 0e+00, 5.127857788085937e+02, 1.081026565551758e+02, 0e+00, 7.217326416015625e+02, 8.676944274902344e+01, 0e+00, 2.248442443847656e+02, 2.50120964050293e+01, 0e+00, 4.495268615722656e+02, 0e+00, 0e+00, 1.611731414794922e+02, 0e+00, 0e+00, 1.666200317382813e+02, 0e+00, 1.112068966031075e-01, 5.882254104614258e+01, 0e+00, 4.61075390625e+02, 8.028087463378907e+01, 0e+00, 3.784838027954102e+01, 3.459087142944336e+01, 0e+00, 2.186975494384766e+02, 0e+00, 0e+00, 3.057494140625e+02, 0e+00, 0e+00, 1.629031982421875e+02, 0e+00, 0e+00, 6.188773574829101e+01, 0e+00, 0e+00, 6.769561309814453e+01, 0e+00, 9.488122024536133e+01, 2.955524215698242e+01, 0e+00] +azi315til90.HPer=[0e+00, 1.919481506347656e+01, 5.712849960327149e+01, 0e+00, 2.301765991210937e+02, 0e+00, 0e+00, 4.906180786132812e+02, 0e+00, 0e+00, 5.516676025390625e+02, 0e+00, 0e+00, 1.206625946044922e+02, 0e+00, 3.225606441497803e+00, 3.679070007324219e+02, 0e+00, 3.665557556152343e+01, 8.7927177734375e+02, 0e+00, 8.392829132080078e+01, 4.424972839355469e+02, 0e+00, 1.024343887329102e+02, 1.273101806640625e+01, 0e+00, 2.183787109375e+02, 5.390908432006835e+00, 0e+00, 2.557824096679688e+02, 0e+00, 4.508767366409301e-01, 6.46336865234375e+02, 0e+00, 3.747311019897461e+01, 7.177350463867188e+02, 0e+00, 6.386517333984375e+01, 2.926231079101562e+02, 0e+00, 1.491143768310547e+02, 3.697745941162109e+02, 0e+00, 1.469292572021484e+02, 2.033807220458984e+02, 0e+00, 1.710388336181641e+02, 4.501807556152344e+01, 1.10460601747036e-02, 3.289580078125e+02, 5.305232480168343e-03, 5.564809608459473e+00, 5.43074951171875e+02, 0e+00, 2.682894515991211e+01, 1.256549423217773e+02, 0e+00, 1.140378082275391e+02, 6.8111875e+02, 0e+00, 1.245098083496094e+02, 4.653269287109375e+02, 0e+00, 1.476557220458984e+02, 2.217844085693359e+02, 0e+00, 2.636654479980469e+02, 0e+00, 0e+00, 5.176280517578125e+02, 0e+00, 0e+00, 2.463782592773437e+02, 0e+00, 1.112068966031075e-01, 5.884239959716797e+01, 0e+00, 1.877492485046387e+01, 8.622618041992188e+02, 0e+00, 3.652947387695313e+01, 3.746584777832031e+02, 0e+00, 1.027747222900391e+02, 0e+00, 0e+00, 2.880715698242187e+02, 0e+00, 0e+00, 7.0239599609375e+02, 0e+00, 0e+00, 6.521564483642578e+01, 0e+00, 0e+00, 4.019727172851562e+02, 0e+00, 3.089438962936401e+00, 7.427411254882812e+02, 0e+00] +azi045til90.HPer=[0e+00, 9.675096435546875e+01, 3.167110991477966e+00, 0e+00, 9.086165161132812e+02, 0e+00, 0e+00, 8.260879150390625e+02, 0e+00, 0e+00, 4.985026245117188e+02, 0e+00, 0e+00, 1.025465072631836e+02, 0e+00, 5.913097381591797e+01, 1.090203735351563e+02, 0e+00, 7.035316772460938e+02, 6.562821960449219e+01, 0e+00, 8.756385498046875e+02, 4.947486724853515e+01, 0e+00, 1.131567230224609e+02, 9.389438629150391e+00, 0e+00, 4.015351623535156e+02, 7.573640942573548e-02, 0e+00, 2.584456787109375e+02, 0e+00, 4.508767366409301e-01, 2.281747192382813e+02, 0e+00, 2.210570831298828e+02, 1.228172470092773e+02, 0e+00, 7.6874072265625e+01, 1.431637237548828e+02, 0e+00, 4.066903442382812e+02, 9.770029296875001e+01, 0e+00, 6.576050170898437e+02, 6.134788131713867e+01, 0e+00, 3.513974487304687e+02, 9.697512626647949e+00, 6.183417439460755e-02, 3.164895324707031e+02, 5.305232480168343e-03, 1.071782455444336e+01, 1.415762023925781e+02, 0e+00, 2.682894515991211e+01, 1.166731658935547e+02, 0e+00, 3.835316345214844e+02, 1.081026565551758e+02, 0e+00, 6.406663696289063e+02, 8.676944274902344e+01, 0e+00, 2.367856567382813e+02, 2.50120964050293e+01, 0e+00, 7.108904418945312e+02, 0e+00, 0e+00, 5.5607177734375e+02, 0e+00, 0e+00, 1.985773956298828e+02, 0e+00, 1.112068966031075e-01, 5.882759704589844e+01, 0e+00, 4.174159301757812e+02, 8.028087463378907e+01, 0e+00, 3.803366775512696e+01, 3.459087142944336e+01, 0e+00, 2.757297729492187e+02, 0e+00, 0e+00, 5.498417236328125e+02, 0e+00, 0e+00, 7.809837646484375e+02, 0e+00, 0e+00, 6.371930236816407e+01, 0e+00, 0e+00, 1.340170852661133e+02, 0e+00, 1.043666954040527e+02, 2.955524215698242e+01, 0e+00] +azi270til30.HPer=[0e+00, 2.714193458557129e+01, 2.709105033874512e+01, 0e+00, 8.595167846679688e+01, 0e+00, 0e+00, 3.449927368164062e+02, 0e+00, 0e+00, 4.615322265625e+02, 0e+00, 0e+00, 1.783416931152344e+02, 0e+00, 3.231104612350464e+00, 3.59060107421875e+02, 0e+00, 2.314185752868652e+01, 7.172069580078125e+02, 0e+00, 5.949383850097657e+01, 3.685641357421875e+02, 0e+00, 1.783129669189453e+02, 1.895256042480469e+01, 0e+00, 3.98922607421875e+02, 4.216985130310059e+00, 0e+00, 4.256485595703125e+02, 0e+00, 7.86236572265625e-01, 1.004692993164062e+03, 0e+00, 4.248947525024414e+01, 1.049180541992188e+03, 0e+00, 1.086200653076172e+02, 4.329263916015625e+02, 0e+00, 2.564396911621094e+02, 5.16362841796875e+02, 0e+00, 5.125542846679688e+02, 2.984296569824219e+02, 0e+00, 4.950943237304688e+02, 7.199223022460937e+01, 1.142973005771637e-02, 8.201513671875e+02, 7.10766389966011e-04, 8.78386402130127e+00, 1.001175354003906e+03, 0e+00, 4.677702331542969e+01, 2.129072906494141e+02, 0e+00, 1.421643203735352e+02, 8.843192993164063e+02, 0e+00, 2.028787445068359e+02, 5.409846862792969e+02, 0e+00, 2.748500183105469e+02, 2.227507019042969e+02, 0e+00, 6.081181030273438e+02, 0e+00, 0e+00, 7.183569946289062e+02, 0e+00, 0e+00, 3.561119873046875e+02, 0e+00, 1.489889901131392e-02, 1.014680130004883e+02, 0e+00, 1.523864822387695e+01, 6.660615356445312e+02, 0e+00, 6.35832046508789e+01, 2.491243072509766e+02, 0e+00, 1.479290588378906e+02, 0e+00, 0e+00, 2.615371337890625e+02, 0e+00, 0e+00, 4.791213073730469e+02, 0e+00, 0e+00, 1.088230117797852e+02, 0e+00, 0e+00, 2.785049133300781e+02, 0e+00, 3.453824949264527e+00, 3.893334777832031e+02, 0e+00] +azi000til30.HPer=[0e+00, 6.481784515380859e+01, 1.526491260528564e+01, 0e+00, 6.82415087890625e+02, 0e+00, 0e+00, 8.633089599609375e+02, 0e+00, 0e+00, 7.2983642578125e+02, 0e+00, 0e+00, 1.858995849609375e+02, 0e+00, 4.758394241333008e+00, 3.567535705566406e+02, 0e+00, 2.726751739501953e+02, 5.267998168945312e+02, 0e+00, 6.054515380859375e+02, 1.824741149902344e+02, 0e+00, 1.858948028564453e+02, 1.629078483581543e+01, 0e+00, 5.750465576171875e+02, 7.854085564613342e-02, 0e+00, 4.6943115234375e+02, 0e+00, 7.86236572265625e-01, 1.068455078125e+03, 0e+00, 5.250149917602539e+01, 9.079867797851563e+02, 0e+00, 1.1547138671875e+02, 3.520845947265625e+02, 0e+00, 4.385734191894531e+02, 2.773407775878906e+02, 0e+00, 8.736566162109375e+02, 1.011317520141602e+02, 0e+00, 6.238925537109375e+02, 1.151981506347656e+01, 1.142973005771637e-02, 9.4743408203125e+02, 7.10766389966011e-04, 8.78386402130127e+00, 9.879882934570312e+02, 0e+00, 4.677702331542969e+01, 2.100915008544922e+02, 0e+00, 3.020943786621094e+02, 5.897052612304688e+02, 0e+00, 5.6785654296875e+02, 2.747345397949219e+02, 0e+00, 3.378743896484375e+02, 3.941728973388672e+01, 0e+00, 1.016542529296875e+03, 0e+00, 0e+00, 1.016814392089844e+03, 0e+00, 0e+00, 3.787092468261719e+02, 0e+00, 1.489889901131392e-02, 1.014715835571289e+02, 0e+00, 1.153562889099121e+02, 5.709467407226563e+02, 0e+00, 6.437696380615235e+01, 1.603855239868164e+02, 0e+00, 2.747584106445312e+02, 0e+00, 0e+00, 5.650215942382813e+02, 0e+00, 0e+00, 9.554641723632812e+02, 0e+00, 0e+00, 1.101181228637695e+02, 0e+00, 0e+00, 3.254012634277344e+02, 0e+00, 2.596722850799561e+01, 3.54661474609375e+02, 0e+00] +azi090til30.HPer=[0e+00, 6.830064086914062e+01, 3.845238924026489e+00, 0e+00, 5.656811401367188e+02, 0e+00, 0e+00, 5.822057250976562e+02, 0e+00, 0e+00, 4.239389038085938e+02, 0e+00, 0e+00, 1.655316802978516e+02, 0e+00, 3.270386505126953e+01, 1.718964233398438e+02, 0e+00, 5.111713623046875e+02, 3.628474960327149e+01, 0e+00, 7.783032104492188e+02, 4.577487869262696e+01, 0e+00, 1.865090850830078e+02, 1.628894233703613e+01, 0e+00, 5.284338012695313e+02, 7.854085564613342e-02, 0e+00, 4.275317687988281e+02, 0e+00, 7.86236572265625e-01, 7.0900771484375e+02, 0e+00, 2.654557800292969e+02, 4.873163940429687e+02, 0e+00, 1.268117523193359e+02, 2.464008483886719e+02, 0e+00, 5.937118286132812e+02, 9.841701660156249e+01, 0e+00, 1.060023461914062e+03, 7.766458129882812e+01, 0e+00, 6.3083525390625e+02, 1.151981506347656e+01, 1.483780741691589e-01, 8.113348388671875e+02, 7.10766389966011e-04, 1.705908889770508e+01, 7.011783813476562e+02, 0e+00, 4.677702331542969e+01, 2.037404205322266e+02, 0e+00, 5.102814331054688e+02, 1.845216949462891e+02, 0e+00, 8.001015991210937e+02, 8.534685516357422e+01, 0e+00, 3.520385437011719e+02, 2.929106903076172e+01, 0e+00, 9.2435390625e+02, 0e+00, 0e+00, 7.455408325195312e+02, 0e+00, 0e+00, 3.223116638183594e+02, 0e+00, 1.489889901131392e-02, 1.014575439453125e+02, 0e+00, 2.75775e+02, 5.539263229370117e+01, 0e+00, 6.463224487304687e+01, 3.962064819335937e+01, 0e+00, 2.702507019042969e+02, 0e+00, 0e+00, 4.466366088867188e+02, 0e+00, 0e+00, 5.346912231445312e+02, 0e+00, 0e+00, 1.077649353027344e+02, 0e+00, 0e+00, 8.940189361572266e+01, 0e+00, 4.614517402648926e+01, 1.98922176361084e+01, 0e+00] weaBusHHorIR.relHum=[8.500000238418579e-01, 2.958455920219422e-01, 4.89413046836853e-01, 2.30538460612297e-01, 1.395281285047531e-01, 1.899999976158142e-01, 2.999999940395355e-01, 6.21408200263977e-01, 6.980625033378601e-01, 7.539428472518921e-01, 1.899999976158142e-01, 3.499999940395355e-01, 2.5859375e-01, 2.196000039577484e-01, 6.840000033378602e-01, 2.599999904632568e-01, 5.74384605884552e-01, 2.800000011920929e-01, 1.638125032186508e-01, 3.077754974365234e-01, 7.300000190734863e-01, 1.751741111278534e-01, 8.36806845664978e-01, 1.793529391288757e-01, 8.768421053886414e-01, 9.599999785423279e-01, 7.230624794960022e-01, 1.544375002384186e-01, 6.600000262260437e-01, 5.933802247047424e-01, 2.300000041723251e-01, 8.68749988079071e-01, 6.586153745651245e-01, 4.549218773841858e-01, 9.455000042915345e-01, 2.000000029802322e-01, 2.046538472175598e-01, 8.272842049598694e-01, 3.717884302139282e-01, 7.370000004768371e-01, 8.600000143051147e-01, 3.358365297317505e-01, 9.116564631462097e-01, 2.028713226318359e-01, 1.860000014305115e-01, 2.300000041723251e-01, 6.600000262260437e-01, 4.287857115268707e-01, 4.652291715145111e-01, 2.159999966621399e-01, 4.199999868869781e-01, 4.268214404582977e-01, 8.059038639068603e-01, 4.286428511142731e-01, 4.533593654632568e-01, 8.700000047683716e-01, 6.595468759536743e-01, 6.860000014305114e-01, 2.494350671768188e-01, 5.086087048053741e-01, 3.799999952316284e-01, 2.199999988079071e-01, 5.617053627967834e-01, 2.833999931812287e-01, 2.599999904632568e-01, 4.600000083446503e-01, 3.351874887943268e-01, 1.179999992251396e-01, 4.870375812053681e-01, 5.707998156547547e-01, 1.899999976158142e-01, 2.962812483310699e-01, 1.754062503576279e-01, 5.711428761482239e-01, 7.822198390960693e-01, 3.199999928474426e-01, 9.866666793823242e-01, 8.705000162124634e-01, 3.150000035762787e-01, 5.2334064245224e-01, 3.600000143051147e-01, 7.00305700302124e-01, 7.351416110992431e-01, 7.63080358505249e-01, 2.995852589607239e-01, 2.700000107288361e-01, 4.676328122615814e-01, 5.365735173225403e-01, 5.795624852180481e-01, 6.183333396911621e-01, 8.299999833106995e-01, 4.28000009059906e-01, 2.934884607791901e-01, 9.200721144676208e-01, 6.22000002861023e-01, 6.600000262260437e-01, 2.787272751331329e-01, 4.443625092506409e-01, 3.004687428474426e-01, 5.793750047683716e-01, 8.500000238418579e-01] weaBusHHorIR.nOpa=[2.000000029802322e-01, 8.400000095367431e-01, 1.717857152223587e-01, 9.856249809265136e-01, 0e+00, 1.000000014901161e-01, 0e+00, 0e+00, 0e+00, 0e+00, 4.000000059604645e-01, 2.399999976158142e-01, 2.087500005960465e-01, 1e+00, 0e+00, 2.000000029802322e-01, 7.274374842643738e-01, 0e+00, 0e+00, 6.000000163912773e-02, 5e-01, 0e+00, 7.319999814033509e-01, 0e+00, 1e+00, 1e+00, 0e+00, 9.424999952316284e-01, 2.718750119209289e-01, 9.646875143051148e-01, 8.999999761581421e-01, 2.324999988079071e-01, 8.999999761581421e-01, 0e+00, 1e+00, 1.000000014901161e-01, 3.812500014901161e-02, 1e+00, 9.904166698455811e-01, 8.999999761581421e-01, 5e-01, 5.804166555404663e-01, 9.199999809265137e-01, 1.000000014901161e-01, 3.181250095367432e-01, 6.000000238418579e-01, 1e+00, 6.450000047683716e-01, 4.000000059604645e-01, 4.599999904632568e-01, 1.000000014901161e-01, 0e+00, 9.784821510314942e-01, 0e+00, 5.531250014901161e-02, 1e+00, 1e+00, 0e+00, 4.056249916553497e-01, 3.045000076293946e-01, 1.000000014901161e-01, 6.463281154632569e-01, 3.728750050067902e-01, 5.982142686843872e-02, 5.993749976158143e-01, 0e+00, 8.999999761581421e-01, 3.225000023841858e-01, 4.950000047683716e-01, 8.999999761581421e-01, 6.99999988079071e-01, 0e+00, 3.750000059604645e-01, 5.910000085830689e-01, 1e+00, 3.00000011920929e-01, 1e+00, 0e+00, 4.799999952316284e-01, 0e+00, 8.00000011920929e-01, 9.004999876022339e-01, 8.687499910593033e-02, 3.440625071525574e-01, 2.40625e-01, 0e+00, 4.965624988079071e-01, 7.799999833106994e-01, 3.059374928474426e-01, 0e+00, 3.00000011920929e-01, 0e+00, 6.442307829856873e-01, 1e+00, 0e+00, 5e-01, 5.971874952316284e-01, 0e+00, 1.343749955296517e-01, 0e+00, 0e+00] weaBusHHorIR.nTot=[2.000000029802322e-01, 9.737499833106995e-01, 6.220000147819519e-01, 1e+00, 1.000000014901161e-01, 4.000000059604645e-01, 0e+00, 1.618750005960465e-01, 0e+00, 0e+00, 4.000000059604645e-01, 3.28250002861023e-01, 4.946562528610229e-01, 1e+00, 2.453125044703484e-02, 6.99999988079071e-01, 7.265000104904175e-01, 0e+00, 0e+00, 1.800000011920929e-01, 6.99999988079071e-01, 6.843750029802323e-02, 8.407812356948853e-01, 2.199999958276749e-01, 1e+00, 1e+00, 0e+00, 1e+00, 2.718750119209289e-01, 9.646875143051148e-01, 1e+00, 1.967187523841858e-01, 8.999999761581421e-01, 0e+00, 1e+00, 6.000000238418579e-01, 3.812500014901161e-02, 1e+00, 1e+00, 1e+00, 5e-01, 7.274999976158142e-01, 9.927272796630859e-01, 2.605113625526428e-01, 5.337500095367431e-01, 1e+00, 1e+00, 7.287499785423279e-01, 5.09375e-01, 4.599999904632568e-01, 1.000000014901161e-01, 0e+00, 9.721875190734863e-01, 0e+00, 2.158749938011169e-01, 1e+00, 1e+00, 0e+00, 4.943749904632568e-01, 3.045000076293946e-01, 1.000000014901161e-01, 7.479687452316284e-01, 3.710000097751617e-01, 5.982142686843872e-02, 8.856250047683716e-01, 0e+00, 8.999999761581421e-01, 3.225000023841858e-01, 4.950000047683716e-01, 9.640625e-01, 6.99999988079071e-01, 0e+00, 6.012500047683715e-01, 9.162500143051148e-01, 1e+00, 4.000000059604645e-01, 1e+00, 0e+00, 4.799999952316284e-01, 0e+00, 8.00000011920929e-01, 1e+00, 2.800000071525574e-01, 3.440625071525574e-01, 2.40625e-01, 0e+00, 4.953125059604645e-01, 7.799999833106994e-01, 3.059374928474426e-01, 0e+00, 3.00000011920929e-01, 0e+00, 7.553571581840515e-01, 1e+00, 0e+00, 6.99999988079071e-01, 8.999999761581421e-01, 0e+00, 1.343749955296517e-01, 0e+00, 0e+00] toDryAir.XiDry=[7.90035875979811e-04, 2.868543937802315e-03, 1.56147803645581e-03, 1.490109111182392e-03, 1.586128422059119e-03, 1.452093827538192e-03, 1.592522440478206e-03, 1.959425513632596e-03, 1.202933769673109e-03, 1.76270199008286e-03, 1.624858588911593e-03, 2.122231759130955e-03, 1.779336133040488e-03, 2.136832010000944e-03, 2.798216417431831e-03, 2.609019167721272e-03, 4.493274819105863e-03, 2.757229981943965e-03, 1.011526281945407e-03, 3.352869488298893e-03, 3.211519448086619e-03, 2.301534032449126e-03, 4.669462889432907e-03, 1.740122889168561e-03, 4.411958996206522e-03, 2.774366410449147e-03, 3.67099940776825e-03, 2.081898134201765e-03, 3.982184361666441e-03, 2.31242636218667e-03, 3.895696019753814e-03, 3.627690672874451e-03, 7.012635096907615e-03, 4.715292248874903e-03, 4.939072113484144e-03, 4.787659272551537e-03, 3.12961507588625e-03, 7.102770078927278e-03, 7.499965839087963e-03, 8.807972818613053e-03, 8.95141065120697e-03, 8.110501617193223e-03, 1.163483671844006e-02, 3.562991740182042e-03, 4.618475865572691e-03, 4.853871650993824e-03, 1.259281113743782e-02, 1.134249828755856e-02, 6.731092184782028e-03, 5.430484376847744e-03, 9.993109852075577e-03, 6.15493468940258e-03, 1.255052983760834e-02, 1.002911143004894e-02, 7.845890708267689e-03, 1.486931554973125e-02, 1.02485466748476e-02, 9.945807605981826e-03, 8.47421120852232e-03, 1.217598337680101e-02, 7.396217901259661e-03, 6.482083164155483e-03, 9.074222296476364e-03, 5.625256896018982e-03, 7.020066492259502e-03, 6.107097025960684e-03, 6.132209580391646e-03, 4.129326716065407e-03, 7.132978644222021e-03, 1.030495874583721e-02, 3.09316604398191e-03, 3.257117047905922e-03, 3.106848476454616e-03, 8.329586312174796e-03, 9.391890279948712e-03, 6.048421375453472e-03, 6.290234532207251e-03, 4.520597495138645e-03, 5.235791951417923e-03, 4.691704269498586e-03, 3.308350453153253e-03, 8.143653348088264e-03, 4.807360842823983e-03, 5.447397660464049e-03, 1.56385051086545e-03, 1.837837975472212e-03, 2.498605800792575e-03, 3.840227518230677e-03, 2.256164373829961e-03, 3.855700604617596e-03, 2.746299374848604e-03, 2.805757755413652e-03, 2.08339593373239e-03, 3.685547364875674e-03, 1.318324776366353e-03, 2.891590353101492e-03, 2.161867590621114e-03, 1.816376415081322e-03, 2.999698463827372e-03, 2.315985551103949e-03, 5.868480657227337e-04] toDryAir.XiTotalAir=[7.894121808931231e-04, 2.860338846221566e-03, 1.559043419547379e-03, 1.48789172526449e-03, 1.583616621792316e-03, 1.44998834002763e-03, 1.589989219792187e-03, 1.955593633465469e-03, 1.201488287188113e-03, 1.759599591605365e-03, 1.622222713194788e-03, 2.117737522348762e-03, 1.776175410486758e-03, 2.132275188341737e-03, 2.79040802270174e-03, 2.602229826152325e-03, 4.473174549639225e-03, 2.749648317694664e-03, 1.01050406228751e-03, 3.341665165498853e-03, 3.201238578185439e-03, 2.296249102801085e-03, 4.647760093212128e-03, 1.737100095488131e-03, 4.392579197883606e-03, 2.76669068261981e-03, 3.657572483643889e-03, 2.077572094276547e-03, 3.966389410197735e-03, 2.30708634480834e-03, 3.880578326061368e-03, 3.614578070119023e-03, 6.963796820491553e-03, 4.693160858005285e-03, 4.914797563105822e-03, 4.764846991747618e-03, 3.119815373793244e-03, 7.052675448358059e-03, 7.444127928465605e-03, 8.731060475111008e-03, 8.871993981301785e-03, 8.045125287026167e-03, 1.150101944804192e-02, 3.550331015139818e-03, 4.597243387252092e-03, 4.830425139516592e-03, 1.243620235472918e-02, 1.121527571231127e-02, 6.686086673289538e-03, 5.401149578392506e-03, 9.89423505961895e-03, 6.117281783372164e-03, 1.239496357738972e-02, 9.929525852203368e-03, 7.784811407327652e-03, 1.465145777910948e-02, 1.014457996934652e-02, 9.847860783338547e-03, 8.403000421822071e-03, 1.202950999140739e-02, 7.341915275901556e-03, 6.440333276987076e-03, 8.992619067430496e-03, 5.593790020793676e-03, 6.97112875059247e-03, 6.070027127861977e-03, 6.094834394752979e-03, 4.112345166504383e-03, 7.082458399236202e-03, 1.019971165806055e-02, 3.083627903833985e-03, 3.246542625129223e-03, 3.097225213423371e-03, 8.260777033865453e-03, 9.304501861333848e-03, 6.012057885527611e-03, 6.250914838165045e-03, 4.500253684818744e-03, 5.208520870655775e-03, 4.669794719666243e-03, 3.297441406175494e-03, 8.07785801589489e-03, 4.784360807389021e-03, 5.417884141206741e-03, 1.561402925290167e-03, 1.834466587752104e-03, 2.492376090958715e-03, 3.825533390045166e-03, 2.251085452735424e-03, 3.840889688581228e-03, 2.738777780905366e-03, 2.797907358035445e-03, 2.079064352437854e-03, 3.672013571485877e-03, 1.316589000634849e-03, 2.883253153413534e-03, 2.157203014940024e-03, 1.81308314204216e-03, 2.990726893767714e-03, 2.310633938759565e-03, 5.865038838237524e-04] -weaBusHHorIR.TBlaSky=[2.376932525634766e+02, 2.727651916503906e+02, 2.524712341308594e+02, 2.676143310546875e+02, 2.667413696289062e+02, 2.619539794921875e+02, 2.561205383300781e+02, 2.504537109375e+02, 2.429282012939453e+02, 2.473096466064453e+02, 2.660276489257812e+02, 2.61166455078125e+02, 2.622596801757812e+02, 2.749491027832031e+02, 2.545623413085937e+02, 2.683391418457031e+02, 2.698752258300781e+02, 2.659343872070312e+02, 2.568099853515625e+02, 2.68659033203125e+02, 2.594660339355469e+02, 2.696064392089844e+02, 2.651407836914062e+02, 2.646481384277344e+02, 2.677040893554687e+02, 2.597180480957031e+02, 2.578867553710937e+02, 2.779420715332031e+02, 2.630440307617188e+02, 2.623862060546875e+02, 2.830561218261719e+02, 2.579094909667969e+02, 2.779247741699219e+02, 2.683388488769531e+02, 2.68771484375e+02, 2.822752685546875e+02, 2.733658752441406e+02, 2.767790466308594e+02, 2.899919982910156e+02, 2.806200317382812e+02, 2.742985229492188e+02, 2.874993041992187e+02, 2.8349462890625e+02, 2.7653544921875e+02, 2.846494567871094e+02, 2.836375427246094e+02, 2.910102172851563e+02, 2.907215881347656e+02, 2.780290954589844e+02, 2.862712768554687e+02, 2.84789794921875e+02, 2.741159423828125e+02, 2.871032897949219e+02, 2.832750610351562e+02, 2.785141906738281e+02, 2.898092346191406e+02, 2.871924011230469e+02, 2.758137878417969e+02, 2.924173156738281e+02, 2.871969055175781e+02, 2.8069384765625e+02, 2.9075380859375e+02, 2.802922790527344e+02, 2.792659423828125e+02, 2.893348510742188e+02, 2.727907409667969e+02, 2.858379699707031e+02, 2.901921752929687e+02, 2.787008483886719e+02, 2.869832885742188e+02, 2.792878112792969e+02, 2.681994995117187e+02, 2.785196960449219e+02, 2.797594421386719e+02, 2.825539672851563e+02, 2.810917053222656e+02, 2.72149462890625e+02, 2.590105041503906e+02, 2.794971374511719e+02, 2.665540466308594e+02, 2.721368103027344e+02, 2.799142333984375e+02, 2.631269714355469e+02, 2.665608764648438e+02, 2.584119140625e+02, 2.599693603515625e+02, 2.612118347167969e+02, 2.687026184082031e+02, 2.561107574462891e+02, 2.608602844238281e+02, 2.547983856201172e+02, 2.604497314453125e+02, 2.658602355957031e+02, 2.643461853027344e+02, 2.455424255371094e+02, 2.592132568359375e+02, 2.668460632324219e+02, 2.535879058837891e+02, 2.683632080078125e+02, 2.538646911621094e+02, 2.304767913818359e+02] +weaBusHHorIR.TBlaSky=[2.376931762695312e+02, 2.727651000976563e+02, 2.524711578369141e+02, 2.676142639160156e+02, 2.667412780761719e+02, 2.619539184570312e+02, 2.561204528808594e+02, 2.504536315917969e+02, 2.429281127929688e+02, 2.473095642089844e+02, 2.660275573730469e+02, 2.611663635253906e+02, 2.622595886230469e+02, 2.749490356445312e+02, 2.545622497558594e+02, 2.683390502929688e+02, 2.698751342773438e+02, 2.659342956542969e+02, 2.568099182128906e+02, 2.686589416503906e+02, 2.594659423828125e+02, 2.696063598632812e+02, 2.651406982421875e+02, 2.646480529785156e+02, 2.677039978027344e+02, 2.597179565429688e+02, 2.578866821289063e+02, 2.779419799804688e+02, 2.630439453125e+02, 2.623861145019531e+02, 2.830560302734375e+02, 2.579094116210937e+02, 2.779246826171875e+02, 2.683387817382812e+02, 2.687713928222656e+02, 2.822751770019531e+02, 2.733657836914062e+02, 2.76778955078125e+02, 2.899919067382813e+02, 2.806199401855469e+02, 2.742984313964844e+02, 2.874992126464844e+02, 2.834945373535156e+02, 2.765353576660156e+02, 2.84649365234375e+02, 2.83637451171875e+02, 2.910101257324219e+02, 2.907214965820312e+02, 2.7802900390625e+02, 2.862711853027344e+02, 2.847897033691406e+02, 2.741158508300781e+02, 2.871031982421875e+02, 2.832749633789062e+02, 2.785140991210938e+02, 2.898091430664062e+02, 2.871923095703125e+02, 2.75813720703125e+02, 2.924172241210937e+02, 2.871968139648437e+02, 2.806937561035156e+02, 2.907537048339844e+02, 2.802921875e+02, 2.792658508300781e+02, 2.893347595214844e+02, 2.727906494140625e+02, 2.858378601074219e+02, 2.901920837402344e+02, 2.787007568359375e+02, 2.869831970214844e+02, 2.792877197265625e+02, 2.681994079589844e+02, 2.785196044921875e+02, 2.797593505859375e+02, 2.825538757324219e+02, 2.810916137695312e+02, 2.721493713378906e+02, 2.590104125976562e+02, 2.794970458984375e+02, 2.66553955078125e+02, 2.7213671875e+02, 2.799141418457031e+02, 2.631268798828125e+02, 2.665607849121094e+02, 2.584118225097656e+02, 2.599692687988281e+02, 2.612117431640625e+02, 2.687025268554688e+02, 2.561106689453125e+02, 2.60860205078125e+02, 2.547983093261719e+02, 2.604496398925781e+02, 2.658601440429687e+02, 2.643460998535156e+02, 2.455423492431641e+02, 2.592131652832031e+02, 2.668459716796875e+02, 2.535878143310547e+02, 2.683631164550781e+02, 2.538646057128906e+02, 2.304767150878906e+02] weaBusHHorIR.TDewPoi=[2.534499969482422e+02, 2.675462463378906e+02, 2.608540893554688e+02, 2.600323303222656e+02, 2.609643005371094e+02, 2.598500061035156e+02, 2.604473388671875e+02, 2.632408874511719e+02, 2.576735229492188e+02, 2.620774597167969e+02, 2.609500122070312e+02, 2.6425e+02, 2.621984985351563e+02, 2.64079052734375e+02, 2.672625e+02, 2.664500122070312e+02, 2.728426818847656e+02, 2.669700561523438e+02, 2.556911712646484e+02, 2.6925e+02, 2.6875e+02, 2.648618774414062e+02, 2.731706237792969e+02, 2.620275756835937e+02, 2.725499877929688e+02, 2.670499877929688e+02, 2.7043359375e+02, 2.63946240234375e+02, 2.713539184570312e+02, 2.650899475097656e+02, 2.709500122070312e+02, 2.70346484375e+02, 2.789668701171875e+02, 2.73448876953125e+02, 2.7425e+02, 2.7375e+02, 2.683867614746094e+02, 2.790835693359375e+02, 2.797546203613281e+02, 2.824006286621094e+02, 2.825499877929688e+02, 2.800376098632813e+02, 2.864500122070312e+02, 2.698278076171875e+02, 2.731499938964844e+02, 2.7375e+02, 2.877393798828125e+02, 2.862018188476562e+02, 2.78701953125e+02, 2.757899963378906e+02, 2.8425e+02, 2.772809814453125e+02, 2.876746215820312e+02, 2.843942626953125e+02, 2.809500122070312e+02, 2.903500061035156e+02, 2.848500061035156e+02, 2.8436357421875e+02, 2.818158325195312e+02, 2.870289428710938e+02, 2.798500061035156e+02, 2.779603393554688e+02, 2.829470397949219e+02, 2.759500122070312e+02, 2.7925e+02, 2.770499877929688e+02, 2.771923156738281e+02, 2.722206176757812e+02, 2.793616455078125e+02, 2.84327978515625e+02, 2.6875e+02, 2.689482055664063e+02, 2.683177185058594e+02, 2.814087524414062e+02, 2.83140576171875e+02, 2.770499877929688e+02, 2.775499877929688e+02, 2.730632507324219e+02, 2.748261047363281e+02, 2.735295227050781e+02, 2.6925e+02, 2.814608276367188e+02, 2.738240966796875e+02, 2.753794738769531e+02, 2.606441345214844e+02, 2.625499877929688e+02, 2.659187561035156e+02, 2.709549926757812e+02, 2.649262512207031e+02, 2.710099914550781e+02, 2.670499877929688e+02, 2.6723125e+02, 2.638904541015625e+02, 2.704469055175781e+02, 2.589558044433594e+02, 2.675499877929688e+02, 2.64421435546875e+02, 2.625499877929688e+02, 2.681499938964844e+02, 2.650369262695312e+02, 2.503999938964844e+02] weaBusHHorIR.TWetBul=[2.548114013671875e+02, 2.765366577148437e+02, 2.660687316894531e+02, 2.713701538085937e+02, 2.762739562988281e+02, 2.727921447753906e+02, 2.699911804199219e+02, 2.666452392578125e+02, 2.605939636230469e+02, 2.642045654296875e+02, 2.739708251953125e+02, 2.71900390625e+02, 2.725834411621094e+02, 2.756316223144531e+02, 2.698959289550781e+02, 2.762830810546875e+02, 2.769488952636719e+02, 2.764818115234375e+02, 2.704205871582031e+02, 2.777826782226563e+02, 2.708627014160156e+02, 2.7810439453125e+02, 2.745314758300781e+02, 2.749833862304687e+02, 2.735503601074219e+02, 2.673568725585938e+02, 2.725831115722656e+02, 2.7778466796875e+02, 2.74356103515625e+02, 2.688620361328125e+02, 2.815920104980469e+02, 2.712630981445312e+02, 2.816944885253906e+02, 2.791706420898437e+02, 2.746942077636719e+02, 2.846327514648438e+02, 2.801331726074219e+02, 2.804372497558594e+02, 2.860834411621094e+02, 2.842373962402344e+02, 2.834856567382812e+02, 2.873298522949219e+02, 2.871017639160156e+02, 2.814225158691406e+02, 2.848778991699219e+02, 2.838064270019531e+02, 2.899267028808594e+02, 2.906333740234375e+02, 2.834158752441406e+02, 2.857195556640625e+02, 2.891492004394531e+02, 2.828388854980469e+02, 2.887926696777344e+02, 2.891289306640625e+02, 2.855645141601562e+02, 2.909954223632812e+02, 2.870733764648438e+02, 2.864512023925781e+02, 2.899039245605469e+02, 2.907355346679688e+02, 2.858804016113281e+02, 2.876302673339844e+02, 2.862537353515625e+02, 2.843382690429688e+02, 2.8748779296875e+02, 2.823300170898438e+02, 2.843058776855469e+02, 2.866902282714844e+02, 2.839202514648438e+02, 2.87673828125e+02, 2.805976257324219e+02, 2.778616516113281e+02, 2.812535583496094e+02, 2.848494201660156e+02, 2.847517883300781e+02, 2.843547058105469e+02, 2.77660546875e+02, 2.740442993164062e+02, 2.827222961425781e+02, 2.782190002441406e+02, 2.767081298828125e+02, 2.835501647949219e+02, 2.760149047851563e+02, 2.773045532226562e+02, 2.69976953125e+02, 2.724749145507812e+02, 2.713347534179687e+02, 2.755034912109375e+02, 2.687405944824219e+02, 2.745918212890625e+02, 2.683534851074219e+02, 2.734514099121094e+02, 2.730959350585937e+02, 2.709835998535156e+02, 2.627198364257812e+02, 2.704162292480469e+02, 2.740925659179687e+02, 2.684809753417969e+02, 2.769267272949219e+02, 2.6906494140625e+02, 2.51829833984375e+02] weaBusTDryBulTDewPoiOpa.TBlaSky=[2.377537994384766e+02, 2.729302917480469e+02, 2.520971771240234e+02, 2.676084228515625e+02, 2.66789208984375e+02, 2.620378112792969e+02, 2.560898376464844e+02, 2.507025543212891e+02, 2.428828796386719e+02, 2.472939056396484e+02, 2.659794616699219e+02, 2.612128723144531e+02, 2.623319946289063e+02, 2.749100708007812e+02, 2.546377624511719e+02, 2.682710571289062e+02, 2.698257202148437e+02, 2.661128112792969e+02, 2.568820922851563e+02, 2.687703002929687e+02, 2.59411865234375e+02, 2.697601013183594e+02, 2.65116015625e+02, 2.645667602539062e+02, 2.677019409179687e+02, 2.597425537109375e+02, 2.578849609375e+02, 2.783201049804687e+02, 2.630264831542969e+02, 2.621691955566406e+02, 2.830463562011719e+02, 2.579018859863281e+02, 2.778726989746094e+02, 2.684210571289062e+02, 2.687816101074219e+02, 2.82307373046875e+02, 2.734372009277344e+02, 2.766991882324219e+02, 2.897508605957031e+02, 2.804803894042969e+02, 2.7440625e+02, 2.870889465332031e+02, 2.827899597167969e+02, 2.765184448242188e+02, 2.8466181640625e+02, 2.835798034667969e+02, 2.909696044921875e+02, 2.907069946289063e+02, 2.77960595703125e+02, 2.863398864746094e+02, 2.848462524414062e+02, 2.741164672851563e+02, 2.871796508789063e+02, 2.833038024902344e+02, 2.785334106445313e+02, 2.897330627441406e+02, 2.871306945800781e+02, 2.758964477539063e+02, 2.924347961425781e+02, 2.871891967773437e+02, 2.806610107421875e+02, 2.907520874023438e+02, 2.805221008300781e+02, 2.794918640136719e+02, 2.891892028808594e+02, 2.728976135253906e+02, 2.858232971191406e+02, 2.902323364257812e+02, 2.788421508789062e+02, 2.87107177734375e+02, 2.793934326171875e+02, 2.68135498046875e+02, 2.785548522949219e+02, 2.796795166015625e+02, 2.826356811523438e+02, 2.810556640625e+02, 2.721995544433594e+02, 2.589238952636719e+02, 2.794633178710938e+02, 2.66470263671875e+02, 2.720757141113281e+02, 2.799673706054688e+02, 2.631972900390625e+02, 2.665800354003906e+02, 2.584451293945312e+02, 2.5998876953125e+02, 2.612100769042969e+02, 2.686955200195313e+02, 2.562760498046875e+02, 2.60927197265625e+02, 2.548828125e+02, 2.605786682128906e+02, 2.655400695800781e+02, 2.643514038085938e+02, 2.456027221679688e+02, 2.591251220703125e+02, 2.667467834472656e+02, 2.535997863769531e+02, 2.682539489746094e+02, 2.539163269042969e+02, 2.322686462402344e+02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_WeatherData_BaseClasses_Examples_GetAltitudeTMY3.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_WeatherData_BaseClasses_Examples_GetAltitudeTMY3.txt new file mode 100644 index 0000000000..d8d5343c2a --- /dev/null +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_WeatherData_BaseClasses_Examples_GetAltitudeTMY3.txt @@ -0,0 +1,9 @@ +last-generated=2021-09-16 +statistics-simulation= +{ + "linear": " ", + "nonlinear": " ", + "numerical Jacobians": "0" +} +time=[0e+00, 1e+00] +alt=[2.01e+02, 2.01e+02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_WeatherData_BaseClasses_Examples_GetTimeSpanTMY3LongHeader.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_WeatherData_BaseClasses_Examples_GetTimeSpanTMY3LongHeader.txt index 288de021fd..b6228ce8a8 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_WeatherData_BaseClasses_Examples_GetTimeSpanTMY3LongHeader.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_WeatherData_BaseClasses_Examples_GetTimeSpanTMY3LongHeader.txt @@ -1,4 +1,4 @@ -last-generated=2021-01-27 +last-generated=2022-05-18 statistics-simulation= { "linear": " ", diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_WeatherData_BaseClasses_Examples_LimitMin.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_WeatherData_BaseClasses_Examples_LimitMin.txt index c0da87b2ba..b2db68e6ed 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_WeatherData_BaseClasses_Examples_LimitMin.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_BoundaryConditions_WeatherData_BaseClasses_Examples_LimitMin.txt @@ -1,4 +1,4 @@ -last-generated=2020-09-01 +last-generated=2022-05-18 statistics-simulation= { "linear": " ", diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Controls_Continuous_Examples_LimPIDWithReset.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Controls_Continuous_Examples_LimPIDWithReset.txt index a594aefe2c..13303fa6df 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Controls_Continuous_Examples_LimPIDWithReset.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Controls_Continuous_Examples_LimPIDWithReset.txt @@ -1,4 +1,4 @@ -last-generated=2018-06-22 +last-generated=2022-07-06 statistics-simulation= { "linear": " ", @@ -6,10 +6,10 @@ statistics-simulation= "number of continuous time states": "6", "numerical Jacobians": "0" } -TSet.y=[3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02] -plaWitRes.temSen.T=[2.931499938964844e+02, 3.484136657714844e+02, 3.289960021972656e+02, 3.152762756347656e+02, 3.132464599609375e+02, 3.131647644042969e+02, 3.131472473144531e+02, 3.131492309570312e+02, 3.131535949707031e+02, 3.131481323242188e+02, 3.131461486816406e+02, 3.1315478515625e+02, 3.131497192382812e+02, 3.131512451171875e+02, 3.131560363769531e+02, 3.131469421386719e+02, 3.073197631835938e+02, 3.019241333007812e+02, 2.985562744140625e+02, 2.964804992675781e+02, 2.952016906738281e+02, 2.944138488769531e+02, 2.939285583496094e+02, 2.936296081542969e+02, 2.934454345703125e+02, 2.933320007324219e+02, 2.932621154785156e+02, 2.932190856933594e+02, 2.931925964355469e+02, 2.931762390136719e+02, 2.931661682128906e+02, 3.308025207519531e+02, 3.174623413085938e+02, 3.132843933105469e+02, 3.131532897949219e+02, 3.13146484375e+02, 3.131521606445312e+02, 3.131526184082031e+02, 3.131466674804688e+02, 3.131475219726562e+02, 3.131515808105469e+02, 3.131545715332031e+02, 3.131560974121094e+02, 3.131532592773438e+02, 3.131457214355469e+02, 3.131530456542969e+02, 3.071628112792969e+02, 3.018235168457031e+02, 2.984942016601562e+02, 2.964422607421875e+02, 2.951781616210938e+02, 2.943994140625e+02, 2.93919677734375e+02, 2.936241760253906e+02, 2.93442138671875e+02, 2.933299865722656e+02, 2.932608947753906e+02, 2.932183227539062e+02, 2.931920776367188e+02, 2.931759338378906e+02, 2.931659851074219e+02, 3.308016052246094e+02, 3.174617614746094e+02, 3.132922058105469e+02, 3.131574096679688e+02, 3.131500854492188e+02, 3.131512756347656e+02, 3.131521911621094e+02, 3.131499938964844e+02, 3.131484375e+02, 3.131507873535156e+02, 3.131560363769531e+02, 3.13147705078125e+02, 3.131505126953125e+02, 3.131542053222656e+02, 3.131510620117188e+02, 3.071373291015625e+02, 3.018072204589844e+02, 2.984841613769531e+02, 2.964360656738281e+02, 2.951743469238281e+02, 2.943970642089844e+02, 2.939182434082031e+02, 2.936233215332031e+02, 2.934415893554688e+02, 2.933296508789062e+02, 2.932606811523438e+02, 2.932182006835938e+02, 2.931920166015625e+02, 2.931758728027344e+02, 2.931659851074219e+02, 3.308011474609375e+02, 3.174614562988281e+02, 3.132934875488281e+02, 3.131521301269531e+02, 3.131448364257812e+02, 3.1315673828125e+02, 3.131459350585938e+02, 3.131494445800781e+02, 3.1315380859375e+02, 3.131555480957031e+02] -plaNoRes.temSen.T=[2.931499938964844e+02, 3.484136657714844e+02, 3.289960021972656e+02, 3.152762756347656e+02, 3.132464599609375e+02, 3.131647644042969e+02, 3.131472473144531e+02, 3.131492309570312e+02, 3.131535949707031e+02, 3.131481323242188e+02, 3.131461486816406e+02, 3.1315478515625e+02, 3.131497192382812e+02, 3.131512451171875e+02, 3.131560363769531e+02, 3.131469421386719e+02, 3.073197631835938e+02, 3.019241333007812e+02, 2.985562744140625e+02, 2.964804992675781e+02, 2.952016906738281e+02, 2.944138488769531e+02, 2.939285583496094e+02, 2.936296081542969e+02, 2.934454345703125e+02, 2.933320007324219e+02, 2.932621154785156e+02, 2.932190856933594e+02, 2.931925964355469e+02, 2.931762390136719e+02, 2.931661682128906e+02, 3.483994140625e+02, 3.289861755371094e+02, 3.152702026367188e+02, 3.132477722167969e+02, 3.131636352539062e+02, 3.131493225097656e+02, 3.131467590332031e+02, 3.13151123046875e+02, 3.131550598144531e+02, 3.131554260253906e+02, 3.131555786132812e+02, 3.13156005859375e+02, 3.131541442871094e+02, 3.131460266113281e+02, 3.131523742675781e+02, 3.071538391113281e+02, 3.018177795410156e+02, 2.984906616210938e+02, 2.964400939941406e+02, 2.951768188476562e+02, 2.943985900878906e+02, 2.93919189453125e+02, 2.936238708496094e+02, 2.934419250488281e+02, 2.933298645019531e+02, 2.932608337402344e+02, 2.9321826171875e+02, 2.931920471191406e+02, 2.931759033203125e+02, 2.931659851074219e+02, 3.484021301269531e+02, 3.289879760742188e+02, 3.152713012695312e+02, 3.132489624023438e+02, 3.131623229980469e+02, 3.131450805664062e+02, 3.13146484375e+02, 3.131485900878906e+02, 3.131554260253906e+02, 3.131538391113281e+02, 3.131460876464844e+02, 3.13155517578125e+02, 3.131524963378906e+02, 3.131521911621094e+02, 3.131523742675781e+02, 3.073477478027344e+02, 3.019419555664062e+02, 2.985672607421875e+02, 2.964872741699219e+02, 2.952058715820312e+02, 2.9441650390625e+02, 2.939302062988281e+02, 2.936306762695312e+02, 2.934461059570312e+02, 2.933324584960938e+02, 2.932623901367188e+02, 2.9321923828125e+02, 2.931926574707031e+02, 2.931763000488281e+02, 2.931662292480469e+02, 3.484008178710938e+02, 3.289871215820312e+02, 3.152707824707031e+02, 3.132482299804688e+02, 3.131632995605469e+02, 3.13146240234375e+02, 3.131455993652344e+02, 3.131537780761719e+02, 3.131535339355469e+02, 3.131559448242188e+02] time=[0e+00, 6e+02] +TSet.y=[3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02] +plaWitRes.temSen.T=[2.931499938964844e+02, 3.484136657714844e+02, 3.289960021972656e+02, 3.152762756347656e+02, 3.132458801269531e+02, 3.131649475097656e+02, 3.131452026367188e+02, 3.131528625488281e+02, 3.131474914550781e+02, 3.131518859863281e+02, 3.131550598144531e+02, 3.13146240234375e+02, 3.131559448242188e+02, 3.131495361328125e+02, 3.131517639160156e+02, 3.131489868164062e+02, 3.07351806640625e+02, 3.019446105957031e+02, 2.985689086914062e+02, 2.964882507324219e+02, 2.952064514160156e+02, 2.944168395996094e+02, 2.939303894042969e+02, 2.936307373046875e+02, 2.934461669921875e+02, 2.933324890136719e+02, 2.932624206542969e+02, 2.9321923828125e+02, 2.931926574707031e+02, 2.931763000488281e+02, 2.931661987304688e+02, 3.308012084960938e+02, 3.174614868164062e+02, 3.132922973632812e+02, 3.131520690917969e+02, 3.131451110839844e+02, 3.13155029296875e+02, 3.131477966308594e+02, 3.1314599609375e+02, 3.131476745605469e+02, 3.131477966308594e+02, 3.131484375e+02, 3.131460266113281e+02, 3.13146728515625e+02, 3.131484375e+02, 3.131458740234375e+02, 3.072628479003906e+02, 3.018876953125e+02, 2.985337829589844e+02, 2.964666442871094e+02, 2.951931762695312e+02, 2.944086608886719e+02, 2.939253845214844e+02, 2.93627685546875e+02, 2.934442749023438e+02, 2.933312683105469e+02, 2.932616882324219e+02, 2.932188110351562e+02, 2.931923828125e+02, 2.931761169433594e+02, 2.931661071777344e+02, 3.308012390136719e+02, 3.174614868164062e+02, 3.132899475097656e+02, 3.131539611816406e+02, 3.131526489257812e+02, 3.131471862792969e+02, 3.131554260253906e+02, 3.131466369628906e+02, 3.131518859863281e+02, 3.131532897949219e+02, 3.131457214355469e+02, 3.131551513671875e+02, 3.131510620117188e+02, 3.131472778320312e+02, 3.131562805175781e+02, 3.072424621582031e+02, 3.018744812011719e+02, 2.98525634765625e+02, 2.964616394042969e+02, 2.951900939941406e+02, 2.944067687988281e+02, 2.939242248535156e+02, 2.93626953125e+02, 2.934438171386719e+02, 2.933310241699219e+02, 2.932615051269531e+02, 2.932186889648438e+02, 2.931923217773438e+02, 2.931760864257812e+02, 2.931660766601562e+02, 3.308016052246094e+02, 3.174617614746094e+02, 3.132915954589844e+02, 3.131536254882812e+02, 3.131503601074219e+02, 3.131463623046875e+02, 3.131554260253906e+02, 3.131517333984375e+02, 3.131539611816406e+02, 3.131557922363281e+02] +plaNoRes.temSen.T=[2.931499938964844e+02, 3.484136657714844e+02, 3.289960021972656e+02, 3.152762756347656e+02, 3.132458801269531e+02, 3.131649475097656e+02, 3.131452026367188e+02, 3.131528625488281e+02, 3.131474914550781e+02, 3.131518859863281e+02, 3.131550598144531e+02, 3.13146240234375e+02, 3.131559448242188e+02, 3.131495361328125e+02, 3.131517639160156e+02, 3.131489868164062e+02, 3.07351806640625e+02, 3.019446105957031e+02, 2.985689086914062e+02, 2.964882507324219e+02, 2.952064514160156e+02, 2.944168395996094e+02, 2.939303894042969e+02, 2.936307373046875e+02, 2.934461669921875e+02, 2.933324890136719e+02, 2.932624206542969e+02, 2.9321923828125e+02, 2.931926574707031e+02, 2.931763000488281e+02, 2.931661987304688e+02, 3.483987426757812e+02, 3.289823303222656e+02, 3.152677612304688e+02, 3.132462768554688e+02, 3.131644897460938e+02, 3.131475219726562e+02, 3.131456604003906e+02, 3.131526184082031e+02, 3.131548461914062e+02, 3.131548767089844e+02, 3.131549377441406e+02, 3.131520385742188e+02, 3.131479187011719e+02, 3.131487121582031e+02, 3.131508178710938e+02, 3.071436157226562e+02, 3.018112487792969e+02, 2.984866333007812e+02, 2.964375915527344e+02, 2.951752624511719e+02, 2.943976440429688e+02, 2.939186096191406e+02, 2.936235046386719e+02, 2.934416809082031e+02, 2.933296813964844e+02, 2.932607116699219e+02, 2.932182006835938e+02, 2.931920166015625e+02, 2.931759033203125e+02, 2.931659545898438e+02, 3.484024963378906e+02, 3.289886169433594e+02, 3.15271728515625e+02, 3.132477111816406e+02, 3.131626586914062e+02, 3.1314501953125e+02, 3.131463317871094e+02, 3.131557006835938e+02, 3.131512756347656e+02, 3.131467590332031e+02, 3.131561279296875e+02, 3.131469421386719e+02, 3.131529235839844e+02, 3.131548461914062e+02, 3.13145751953125e+02, 3.072317504882812e+02, 3.018677673339844e+02, 2.985215148925781e+02, 2.964590759277344e+02, 2.951885070800781e+02, 2.944057922363281e+02, 2.939236145019531e+02, 2.936265869140625e+02, 2.93443603515625e+02, 2.933308715820312e+02, 2.932614135742188e+02, 2.932186584472656e+02, 2.931922912597656e+02, 2.931760559082031e+02, 2.931660461425781e+02, 3.48401123046875e+02, 3.289873046875e+02, 3.152709045410156e+02, 3.132484130859375e+02, 3.131635437011719e+02, 3.131487731933594e+02, 3.131527404785156e+02, 3.131553039550781e+02, 3.131524353027344e+02, 3.1314599609375e+02] conWitRes.conPID.trigger=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] -conWitRes.conPID.controlError=[2e+01, -3.526367950439453e+01, -1.584600448608398e+01, -2.126278638839722e+00, -9.646853804588318e-02, -1.476852782070637e-02, 2.758779795840383e-03, 7.699067355133733e-04, -3.606566693633795e-03, 1.862850273028016e-03, 3.849415574222803e-03, -4.773229360580444e-03, 2.921379636973143e-04, -1.251479145139456e-03, -6.049209274350904e-03, 3.0692417640239e-03, -1.416976451873779e+01, -8.7741298675537e+00, -5.406266212463379e+00, -3.330486297607422e+00, -2.051700830459595e+00, -1.263852953910828e+00, -7.785499691963196e-01, -4.795996248722076e-01, -2.954234480857849e-01, -1.819985657930374e-01, -1.121187210083008e-01, -6.909129768610001e-02, -4.259075596928587e-02, -2.624594792723656e-02, -1.617331244051456e-02, -1.765251350402832e+01, -4.312341213226318e+00, -1.343914419412613e-01, -3.293115878481845e-03, 3.524684580042958e-03, -2.158759394660592e-03, -2.623680979013443e-03, 3.347108839079738e-03, 2.486260142177343e-03, -1.56811170745641e-03, -4.572636913507809e-03, -6.098635960370302e-03, -3.244136227294803e-03, 4.283727146685123e-03, -3.040087409317493e-03, -1.40128059387207e+01, -8.673523902893066e+00, -5.344202518463135e+00, -3.292260408401489e+00, -2.028156757354736e+00, -1.249422192573547e+00, -7.696921825408936e-01, -4.741827249526978e-01, -2.921316623687744e-01, -1.799806654453278e-01, -1.108932569622988e-01, -6.831188499927553e-02, -4.208864271640778e-02, -2.592824772000313e-02, -1.598337665200233e-02, -1.76515998840332e+01, -4.311758041381836e+00, -1.422107219696045e-01, -7.409306708723307e-03, -8.283190982183442e-05, -1.286222832277417e-03, -2.17592460103333e-03, 1.970749872001877e-05, 1.577021670527057e-03, -7.967853453010321e-04, -6.043726578354836e-03, 2.294870791956782e-03, -5.022668628953397e-04, -4.19160258024931e-03, -1.055953442119062e-03, -1.398731994628906e+01, -8.657233238220215e+00, -5.334152221679688e+00, -3.286064863204956e+00, -2.024332761764526e+00, -1.247062206268305e+00, -7.682420015335119e-01, -4.733091294765472e-01, -2.915762960910797e-01, -1.796584278345108e-01, -1.106773465871811e-01, -6.818603724241257e-02, -4.200641065835953e-02, -2.58837565779686e-02, -1.597180403769016e-02, -1.765114593505859e+01, -4.311464309692383e+00, -1.434794962406158e-01, -2.134764799848199e-03, 5.158862564712763e-03, -6.738353054970503e-03, 4.073023330420256e-03, 5.504021537490189e-04, -3.821035847067833e-03, -5.559433717280626e-03] -conNoRes.conPID.controlError=[2e+01, -3.526367950439453e+01, -1.584600448608398e+01, -2.126278638839722e+00, -9.646853804588318e-02, -1.476852782070637e-02, 2.758779795840383e-03, 7.699067355133733e-04, -3.606566693633795e-03, 1.862850273028016e-03, 3.849415574222803e-03, -4.773229360580444e-03, 2.921379636973143e-04, -1.251479145139456e-03, -6.049209274350904e-03, 3.0692417640239e-03, -1.416976451873779e+01, -8.7741298675537e+00, -5.406266212463379e+00, -3.330486297607422e+00, -2.051700830459595e+00, -1.263852953910828e+00, -7.785499691963196e-01, -4.795996248722076e-01, -2.954234480857849e-01, -1.819985657930374e-01, -1.121187210083008e-01, -6.909129768610001e-02, -4.259075596928587e-02, -2.624594792723656e-02, -1.617331244051456e-02, -3.524942016601562e+01, -1.583617115020752e+01, -2.120200634002686e+00, -9.777245670556031e-02, -1.362595148384571e-02, 6.71210465952754e-04, 3.232586663216352e-03, -1.113309641368687e-03, -5.063190124928951e-03, -5.430257879197598e-03, -5.584637168793423e-03, -5.993789527565241e-03, -4.130604211241007e-03, 3.966014832258224e-03, -2.381682395935059e-03, -1.400382614135742e+01, -8.667783737182617e+00, -5.340661525726318e+00, -3.29007887840271e+00, -2.026812553405762e+00, -1.248594164848328e+00, -7.691821455955505e-01, -4.738684892654419e-01, -2.919380664825439e-01, -1.798613965511322e-01, -1.108197718858714e-01, -6.826661527156862e-02, -4.206075146794319e-02, -2.591106668114662e-02, -1.597278565168381e-02, -3.525211715698242e+01, -1.583798789978027e+01, -2.12131404876709e+00, -9.896408021450043e-02, -1.233348250389099e-02, 4.919506143778563e-03, 3.530182410031557e-03, 1.39919784851319e-03, -5.427471827714076e-03, -3.829632420092821e-03, 3.901141695678234e-03, -5.518926307559013e-03, -2.499016467481852e-03, -2.191669074818492e-03, -2.388083375990391e-03, -1.41977367401123e+01, -8.791958808898926e+00, -5.417272090911865e+00, -3.337273836135864e+00, -2.05587911605835e+00, -1.266495823860163e+00, -7.802137732505834e-01, -4.806848764419556e-01, -2.961200773715973e-01, -1.824581176042557e-01, -1.124021038413048e-01, -6.924860924482346e-02, -4.266101866960526e-02, -2.628711611032486e-02, -1.622070372104645e-02, -3.525081253051758e+01, -1.583711814880371e+01, -2.120784521102905e+00, -9.8218634724617e-02, -1.331367902457714e-02, 3.765411209315062e-03, 4.404969047755003e-03, -3.793030744418502e-03, -3.52866854518652e-03, -5.930776242166758e-03] +conWitRes.conPID.controlError=[2e+01, -3.526367950439453e+01, -1.584600448608398e+01, -2.126278638839722e+00, -9.588254988193512e-02, -1.493830699473619e-02, 4.784306976944208e-03, -2.856082050129367e-03, 2.514090156182647e-03, -1.87428982462734e-03, -5.044896621257067e-03, 3.74736892990768e-03, -5.939975380897522e-03, 4.554247716441751e-04, -1.761548337526028e-03, 1.013222150504589e-03, -1.420181369781494e+01, -8.794622421264638e+00, -5.418909549713135e+00, -3.338265657424927e+00, -2.056445598602295e+00, -1.266828775405884e+00, -7.803852558135986e-01, -4.807494580745697e-01, -2.961642742156982e-01, -1.824950277805328e-01, -1.124162226915359e-01, -6.924698501825333e-02, -4.267242178320875e-02, -2.629061043262482e-02, -1.619949005544186e-02, -1.765121459960938e+01, -4.311477184295654e+00, -1.422849893569946e-01, -2.074103569616172e-03, 4.901431500911713e-03, -5.022319033741951e-03, 2.188573591411114e-03, 3.999693319201469e-03, 2.311155200004578e-03, 2.193543594330549e-03, 1.56191072892226e-03, 3.974814899265766e-03, 3.269338514655828e-03, 1.553139765746891e-03, 4.121821839362383e-03, -1.411283683776855e+01, -8.737689018249512e+00, -5.383792400360107e+00, -3.316645622253418e+00, -2.043172121047974e+00, -1.258667945861816e+00, -7.753915786743164e-01, -4.77675199508667e-01, -2.942686975002289e-01, -1.812818050384521e-01, -1.116773411631579e-01, -6.88038617372516e-02, -4.239471629261971e-02, -2.611908502876759e-02, -1.609278470277786e-02, -1.765122413635254e+01, -4.311500549316406e+00, -1.39936774969101e-01, -3.960349131375551e-03, -2.66399746760726e-03, 2.805172931402922e-03, -5.438727326691151e-03, 3.354912390928159e-03, -1.88414717558967e-03, -3.291679779067636e-03, 4.292307887226343e-03, -5.144716706126928e-03, -1.056755194440484e-03, 2.715321956202388e-03, -6.284552160650492e-03, -1.40924711227417e+01, -8.724491119384766e+00, -5.375645637512207e+00, -3.311630249023438e+00, -2.040081262588501e+00, -1.256763815879816e+00, -7.742184996604955e-01, -4.769577085971832e-01, -2.93827623128891e-01, -1.810111850500107e-01, -1.115113943815231e-01, -6.869667023420334e-02, -4.232887551188469e-02, -2.608673647046089e-02, -1.607290469110012e-02, -1.765159797668457e+01, -4.311754703521729e+00, -1.416103839874268e-01, -3.614383982494473e-03, -3.612696891650558e-04, 3.652842715382576e-03, -5.420021712779999e-03, -1.741159474477172e-03, -3.950722049921751e-03, -5.777257028967142e-03] +conNoRes.conPID.controlError=[2e+01, -3.526367950439453e+01, -1.584600448608398e+01, -2.126278638839722e+00, -9.588254988193512e-02, -1.493830699473619e-02, 4.784306976944208e-03, -2.856082050129367e-03, 2.514090156182647e-03, -1.87428982462734e-03, -5.044896621257067e-03, 3.74736892990768e-03, -5.939975380897522e-03, 4.554247716441751e-04, -1.761548337526028e-03, 1.013222150504589e-03, -1.420181369781494e+01, -8.794622421264638e+00, -5.418909549713135e+00, -3.338265657424927e+00, -2.056445598602295e+00, -1.266828775405884e+00, -7.803852558135986e-01, -4.807494580745697e-01, -2.961642742156982e-01, -1.824950277805328e-01, -1.124162226915359e-01, -6.924698501825333e-02, -4.267242178320875e-02, -2.629061043262482e-02, -1.619949005544186e-02, -3.524874877929688e+01, -1.58323392868042e+01, -2.117758512496948e+00, -9.628438949583959e-02, -1.44870150834322e-02, 2.475681947544217e-03, 4.335475619882345e-03, -2.60323379188776e-03, -4.848062060773373e-03, -4.891023971140385e-03, -4.952770657836711e-03, -2.030024537816644e-03, 2.07181042060256e-03, 1.284659490920603e-03, -8.286743541248143e-04, -1.399360179901123e+01, -8.661259651184082e+00, -5.336636543273926e+00, -3.287593841552734e+00, -2.025275230407715e+00, -1.247642874717712e+00, -7.685996890068054e-01, -4.734910726547241e-01, -2.916910648345947e-01, -1.796938925981522e-01, -1.106991171836848e-01, -6.820118427276643e-02, -4.202336445450783e-02, -2.58902981877327e-02, -1.595182158052921e-02, -3.525250244140625e+01, -1.583862113952637e+01, -2.121719837188721e+00, -9.771493077278137e-02, -1.266252435743809e-02, 4.976996686309576e-03, 3.655839245766401e-03, -5.702202208338274e-03, -1.272634835911885e-03, 3.226797096431255e-03, -6.132734008133411e-03, 3.045594785362482e-03, -2.927979920059443e-03, -4.843480419367552e-03, 4.258165135979652e-03, -1.408173847198486e+01, -8.717776298522949e+00, -5.371507167816162e+00, -3.309080600738525e+00, -2.03851056098938e+00, -1.255796194076532e+00, -7.736223936080968e-01, -4.76590484380722e-01, -2.93601393699646e-01, -1.808718144893646e-01, -1.114255338907242e-01, -6.864377111196518e-02, -4.229628294706345e-02, -2.606665156781673e-02, -1.606052927672863e-02, -3.525112152099609e+01, -1.583731937408447e+01, -2.120903015136719e+00, -9.842383116483688e-02, -1.355759613215923e-02, 1.23866624198854e-03, -2.736834343522787e-03, -5.313294008374214e-03, -2.425173064693809e-03, 4.018271341919899e-03] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Controls_Continuous_Examples_SignalRanker.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Controls_Continuous_Examples_SignalRanker.txt index 0843ab97dc..09ee65818a 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Controls_Continuous_Examples_SignalRanker.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Controls_Continuous_Examples_SignalRanker.txt @@ -1,9 +1,14 @@ -last-generated=2015-05-08 -statistics-simulation={'numerical Jacobians': '0', 'nonlinear': ' ', 'linear': ' '} -sigRan.u[1]=[0., 0.12533323744971558433, 0.24868989533082475063, 0.36812455241538011297, 0.48175368692903930423, 0.58778523634512991336, 0.68454713843207026791, 0.77051323409946215204, 0.8443279384363054918, 0.90482703867151026422, 0.9510565340027345993, 0.98228722941836554838, 0.9980267303235078602, 0.9980267241165654557, 0.98228722941836554838, 0.95105656226047341484, 0.90482703867151026422, 0.84432793843630538078, 0.77051329293908510376, 0.6845471041974796611, 0.58778527400645275147, 0.48175360490634872024, 0.36812453062441358176, 0.24868994052229564939, 0.12533316768907137861, 0.00000000000000012246, -0.12533335336355946876, -0.24868975891368727549, -0.36812453062441391483, -0.48175376837626832094, -0.58778512170174834761, -0.6845471041974796611, -0.77051329293908510376, -0.84432783660181121022, -0.90482703867151048627, -0.95105656226047330382, -0.9822871922079218221, -0.9980267241165654557, -0.9980267241165654557, -0.9822871922079218221, -0.95105656226047330382, -0.90482703867151048627, -0.84432783660181121022, -0.77051329293908510376, -0.6845471041974796611, -0.58778512170174834761, -0.48175376837626832094, -0.36812453062441391483, -0.24868975891368727549, -0.12533335336355946876, -0.00000000000000024493, 0.12533335336179080022, 0.24869012128477269163, 0.36812487719620695659, 0.48175343923447266903, 0.58778512170357111177, 0.68454710419715092407, 0.7705132929382439988, 0.8443280367726911928, 0.90482719487359475341, 0.95105644385979148936, 0.98228719220845672755, 0.99802672411663273522, 0.99802672411663273522, 0.98228719220845672755, 0.95105644385979148936, 0.90482719487359475341, 0.8443280367726911928, 0.7705132929382439988, 0.68454710419715092407, 0.58778512170357111177, 0.48175343923447266903, 0.36812487719620695659, 0.24869012128477269163, 0.12533335336179080022, 0.00000000000000036739, -0.12533335336179080022, -0.24869012128477269163, -0.36812487719620695659, -0.48175343923447266903, -0.58778512170357111177, -0.68454710419715092407, -0.7705132929382439988, -0.8443280367726911928, -0.90482719487359475341, -0.95105644385979148936, -0.98228719220845672755, -0.99802672411663273522, -0.99802672411663273522, -0.98228719220845672755, -0.95105644385979148936, -0.90482719487359475341, -0.8443280367726911928, -0.7705132929382439988, -0.68454710419715092407, -0.58778512170357111177, -0.48175343923447266903, -0.36812487719620695659, -0.24869012128477269163, -0.12533335336179080022, -0.00000000000000048986] -sigRan.u[3]=[0., 0.58193672758842807102, 0.93222433969867501968, 0.92294852362730916973, 0.56473781099155007102, 0.0000000445020641171, -0.55355537001409316211, -0.88675921538246205156, -0.87793578713185949081, -0.53719542566424594021, -0.00000008466318798805, 0.52655812664543144574, 0.84351149702457073332, 0.83511825279896834129, 0.51099594989776997433, 0.00000032213646476709, -0.50087770454174007639, -0.80237289892985752537, -0.79438928745491732553, -0.48607428255131474026, -0.00000015321284262126, 0.47644972615122294091, 0.76324076860438350156, 0.75564640302484975543, 0.46236802414670519212, 0.00000000000000047688, -0.45321308876825139311, -0.72601687600025088809, -0.71879304950829014942, -0.43981795882139268494, -0.00000055453085316681, 0.43110921733261298172, 0.69060887546401039661, 0.68373725564999676685, 0.41836822601711359804, -0.00000026269015998563, -0.41008333585724776604, -0.65692733363864064255, -0.65039078509618042379, -0.39796354216825385874, -0.00000025088014087016, 0.39008393283169767729, 0.62488878460857943953, 0.61867101762918241814, 0.37855503689290809222, -0.00000047538379013134, -0.37105893237058412693, -0.59441251652989890442, -0.5884978368747760813, -0.36009304579885026421, -0.00000000000000074279, 0.35296270743746521736, 0.56542282009323718839, 0.5597961672619614637, 0.34253143032715055449, 0.00000043186260427486, -0.33574818370815218138, -0.53784668404447388834, -0.53249473778151046321, -0.32582461548302843468, -0.00000082160086994909, 0.31937322911728016628, 0.51161551739209942813, 0.50652485946691649943, 0.30993430197542637394, -0.00000077841108340961, -0.30379689057499381644, -0.4866635988941319102, -0.48182144815217253786, -0.29481896321012102113, 0.0000003702237364657, 0.288981702438143917, 0.462928581902849412, 0.45832282660288503617, 0.28044073257217516648, 0.00000000000000254591, -0.27488765531473713377, -0.44035173465036431262, -0.43596972317358795301, -0.26676374772184308082, -0.00000033633495046675, 0.26148096115523400407, 0.4188754423513013081, 0.41470733687416205804, 0.25375246037653248488, 0.00000063986341405919, -0.24872810631039179996, -0.39844654534179602123, -0.39448193925685731687, -0.24137708410968375383, 0.00000060622715344873, 0.23659725164798767194, 0.3790139866974083227, 0.37524293576908973602, 0.22960523748942221478, -0.00000028833054082653, -0.22505918589350193404, -0.36052915209076136227, -0.35694217642876641117, -0.21840747696428625124, -0.00000000000000090104] -sigRan.u[2]=[1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.] -time=[0., 1.] -sigRan.y[2]=[0., 0.58193672758842807102, 0.93222433969867501968, 0.92294852362730916973, 0.56473781099155007102, 0.58778523634512991336, 0.68454713843207026791, 0.77051323409946215204, 0.8443279384363054918, 0.90482703867151026422, 0.9510565340027345993, 0.98228722941836554838, 0.9980267303235078602, 0.83511825279896834129, 0.51099594989776997433, 0.00000032213646476709, 0., 0., 0., 0., 0., 0.47644972615122294091, 0.36812453062441358176, 0.24868994052229564939, 0.12533316768907137861, 0.00000000000000012246, -0.12533335336355946876, -0.24868975891368727549, -0.36812453062441391483, -0.43981795882139268494, -0.00000055453085316681, 0.43110921733261298172, 0.69060887546401039661, 0.68373725564999676685, 0.41836822601711359804, -0.00000026269015998563, -0.41008333585724776604, -0.65692733363864064255, -0.65039078509618042379, -0.39796354216825385874, -0.00000025088014087016, 0., 0., 0., 0., -0.00000047538379083412, -0.37105893237058412693, -0.36812453062441391483, -0.24868975891368727549, -0.12533335336355946876, -0.00000000000000024493, 0.35296270743746521736, 0.56542282009323718839, 0.5597961672619614637, 0.48175343923447266903, 0.58778512170357111177, 0.68454710419715092407, 0.7705132929382439988, 0.8443280367726911928, 0.90482719487359475341, 0.95105644385979148936, 0.98228719220845672755, 0.99802672411663273522, 0.50652485946691649943, 0.30993430197542637394, -0.00000000000000102355, 0., 0., 0., 0., 0.00000037022373378867, 0.288981702438143917, 0.36812487719620695659, 0.24869012128477269163, 0.12533335336179080022, 0.00000000000000036739, -0.12533335336179080022, -0.24869012128477269163, -0.36812487719620695659, -0.26676374772184308082, -0.00000033633495046675, 0.26148096115523400407, 0.4188754423513013081, 0.41470733687416205804, 0.25375246037653248488, 0.00000063986341405919, -0.24872810631039179996, -0.39844654534179602123, -0.39448193925685731687, -0.24137708410968375383, -0.00000000000000089622, 0., 0., 0., 0., -0.00000028833054035243, -0.22505918589350193404, -0.36052915209076136227, -0.24869012128477269163, -0.12533335336179080022, -0.00000000000000048986] -sigRan.y[3]=[0., 0.12533323744971558433, 0.24868989533082475063, 0.36812455241538011297, 0.48175368692903930423, 0.0000000445020641171, -0.55355537001409316211, -0.88675921538246205156, -0.87793578713185949081, -0.53719542566424594021, -0.00000008466318798805, 0.52655812664543144574, 0.84351149702457073332, 0., 0., 0., -0.50087770454174007639, -0.80237289892985752537, -0.79438928745491732553, -0.48607428255131474026, -0.00000015321284262126, 0., 0., 0., 0., 0., -0.45321308876825139311, -0.72601687600025088809, -0.71879304950829014942, -0.48175376837626832094, -0.58778512170174834761, -0.6845471041974796611, -0.77051329293908510376, -0.84432783660181121022, -0.90482703867151048627, -0.95105656226047330382, -0.9822871922079218221, -0.9980267241165654557, -0.9980267241165654557, -0.9822871922079218221, -0.95105656226047330382, -0.90482703867151048627, -0.84432783660181121022, -0.77051329293908510376, -0.6845471041974796611, -0.58778512170174834761, -0.48175376837626832094, -0.59441251652989890442, -0.5884978368747760813, -0.36009304579885026421, -0.00000000000000074279, 0.12533335336179080022, 0.24869012128477269163, 0.36812487719620695659, 0.34253143032715055449, 0.00000043186260427486, -0.33574818370815218138, -0.53784668404447388834, -0.53249473778151046321, -0.32582461548302843468, -0.00000082160086994909, 0.31937322911728016628, 0.51161551739209942813, 0., 0., -0.00000077841108238606, -0.30379689057499381644, -0.4866635988941319102, -0.48182144815217253786, -0.29481896321012102113, 0.00000000000000267704, 0., 0., 0., 0., 0., -0.27488765531473713377, -0.44035173465036431262, -0.43596972317358795301, -0.48175343923447266903, -0.58778512170357111177, -0.68454710419715092407, -0.7705132929382439988, -0.8443280367726911928, -0.90482719487359475341, -0.95105644385979148936, -0.98228719220845672755, -0.99802672411663273522, -0.99802672411663273522, -0.98228719220845672755, -0.95105644385979148936, -0.90482719487359475341, -0.8443280367726911928, -0.7705132929382439988, -0.68454710419715092407, -0.58778512170357111177, -0.48175343923447266903, -0.36812487719620695659, -0.35694217642876641117, -0.21840747696428625124, -0.00000000000000090104] -sigRan.y[1]=[1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 0.9980267241165654557, 0.98228722941836554838, 0.95105656226047341484, 0.90482703867151026422, 0.84432793843630538078, 0.77051329293908510376, 0.6845471041974796611, 0.58778527400645275147, 0.48175360490634872024, 0.76324076860438350156, 0.75564640302484975543, 0.46236802414670519212, 0.00000000000000047688, 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0.39008393283169767729, 0.62488878460857943953, 0.61867101762918241814, 0.37855503689290809222, 0.00000000000000070278, 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 0.99802672411663273522, 0.98228719220845672755, 0.95105644385979148936, 0.90482719487359475341, 0.8443280367726911928, 0.7705132929382439988, 0.68454710419715092407, 0.58778512170357111177, 0.48175343923447266903, 0.462928581902849412, 0.45832282660288503617, 0.28044073257217516648, 0.00000000000000254591, 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0.00000060622715434494, 0.23659725164798767194, 0.3790139866974083227, 0.37524293576908973602, 0.22960523748942221478, -0.0000000000000004741, 0., 0., 0., 0., 0.] +last-generated=2022-05-18 +statistics-simulation= +{ + "linear": " ", + "nonlinear": " ", + "numerical Jacobians": "0" +} +time=[0e+00, 1e+00] +sigRan.u[1]=[0e+00, 0e+00, 0e+00, 6.279052889145303e-02, 1.873813232596766e-01, 3.090169936426916e-01, 4.257792982038355e-01, 5.358267990667649e-01, 6.374240092888969e-01, 7.289685891278516e-01, 8.090169913868618e-01, 8.763066565483122e-01, 9.297765017474161e-01, 9.685831807701671e-01, 9.921147216966858e-01, 9.99999999058888e-01, 9.921147165364684e-01, 9.685831719133587e-01, 9.297765217686935e-01, 8.763066382608443e-01, 8.09017024212404e-01, 7.289685631508172e-01, 6.374239804957208e-01, 5.358268461649442e-01, 4.257792216971216e-01, 3.0901700258255e-01, 1.873811942620139e-01, 6.279065492488556e-02, -6.279050552827849e-02, -1.87381414997698e-01, -3.090168595450804e-01, -4.257792557802331e-01, -5.358268775301024e-01, -6.374238638831046e-01, -7.289685891278518e-01, -8.09017045842258e-01, -8.763065644512356e-01, -9.297764669784278e-01, -9.685831807701671e-01, -9.921147430153938e-01, -9.99999999058888e-01, -9.921147165364684e-01, -9.685831236181689e-01, -9.297765217686935e-01, -8.763066382608443e-01, -8.090169130170433e-01, -7.289686911151121e-01, -6.37423980495721e-01, -5.358266875236506e-01, -4.25779390830437e-01, -3.0901700258255e-01, -1.873811942637721e-01, -6.279028111777932e-02, 6.279087897899412e-02, 1.873810467796241e-01, 3.090168595472124e-01, 4.257792557798274e-01, 5.358268775289801e-01, 6.374241520524678e-01, 7.289688428578369e-01, 8.090168234542057e-01, 8.763065644525554e-01, 9.297764669787668e-01, 9.68583180769956e-01, 9.921147430150915e-01, 9.999999962356083e-01, 9.921147599203933e-01, 9.685832161966618e-01, 9.297765217682159e-01, 8.763066382606247e-01, 8.090169130183783e-01, 7.289684332684319e-01, 6.374242662635298e-01, 5.358270029877432e-01, 4.257793908288309e-01, 3.0901700258255e-01, 1.873811942637721e-01, 6.279028111777932e-02, -6.279087897899412e-02, -1.873810467796241e-01, -3.090168595472124e-01, -4.257792557798274e-01, -5.358268775289801e-01, -6.374241520524678e-01, -7.289688428578369e-01, -8.090168234542057e-01, -8.763065644525554e-01, -9.297764669787668e-01, -9.68583180769956e-01, -9.921147430150915e-01, -9.999999962356083e-01, -9.921147599203933e-01, -9.685832161966618e-01, -9.297765217682159e-01, -8.763066382606247e-01, -8.090169130183783e-01, -7.289684332684319e-01, -6.374242662635298e-01, -5.358270029877432e-01, -4.257793908288309e-01, -3.0901700258255e-01] +sigRan.u[2]=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +sigRan.u[3]=[0e+00, 5.819367275884281e-01, 9.32224339698675e-01, 9.229485236273092e-01, 5.647378104334461e-01, 4.450206243789001e-08, -5.535553700140932e-01, -8.867592153824621e-01, -8.779357871318595e-01, -5.371954256642459e-01, -8.466318396349592e-08, 5.265581266454314e-01, 8.435114970245707e-01, 8.351182527989683e-01, 5.1099594989777e-01, 3.221364586469821e-07, -5.008777045417401e-01, -8.023728989298575e-01, -7.943892874549173e-01, -4.860742825513147e-01, -1.532128353493034e-07, 4.76449713281631e-01, 7.632407686043835e-01, 7.556464030248498e-01, 4.623680241467052e-01, -7.823690968081914e-15, -4.532130887682514e-01, -7.260168760002509e-01, -7.187930495082901e-01, -4.398179588213927e-01, -5.545308426474493e-07, 4.31109217332613e-01, 6.906088754640104e-01, 6.837372556499968e-01, 4.183682260171136e-01, -2.626901699998203e-07, -4.100833358572478e-01, -6.569273336386406e-01, -6.503907850961804e-01, -3.979635421682539e-01, -2.508801289768936e-07, 3.900839328316977e-01, 6.248887846085794e-01, 6.186710176291824e-01, 3.785550368929081e-01, -4.753838037231209e-07, -3.710589323705841e-01, -5.944125165298989e-01, -5.884978368747761e-01, -3.600930457988503e-01, 1.2186192708413e-14, 3.529627074374652e-01, 5.654228200932372e-01, 5.597961672619615e-01, 3.425314303271506e-01, 4.318625919791375e-07, -3.357481837081522e-01, -5.378466840444739e-01, -5.324947377815105e-01, -3.258246154830284e-01, -8.216008543504572e-07, 3.193732291172802e-01, 5.116155173920994e-01, 5.065248594669165e-01, 3.099343019754264e-01, -7.78411098246868e-07, -3.037968905749938e-01, -4.866635988941319e-01, -4.818214481521725e-01, -2.94818963210121e-01, 3.702237505794242e-07, 2.889817024381439e-01, 4.629285819028494e-01, 4.58322826602885e-01, 2.804407325721752e-01, -1.423592519637484e-14, -2.748876553147371e-01, -4.403517346503643e-01, -4.35969723173588e-01, -2.667637477218431e-01, -3.363349345003597e-07, 2.61480961155234e-01, 4.188754423513013e-01, 4.147073368741621e-01, 2.537524603765325e-01, 6.398633958376587e-07, -2.487281063103918e-01, -3.98446545341796e-01, -3.944819392568573e-01, -2.413770841096838e-01, 6.062271707816262e-07, 2.365972516479877e-01, 3.790139866974083e-01, 3.752429357690897e-01, 2.296052374894222e-01, -2.88330557314194e-07, -2.250591858935019e-01, -3.605291520907614e-01, -3.569421764287664e-01, -2.184074769642863e-01, -9.010447442897996e-16] +sigRan.y[1]=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.685831807701671e-01, 9.921147216966858e-01, 9.99999999058888e-01, 9.921147165364684e-01, 9.685831719133587e-01, 9.297765217686935e-01, 8.763066382608443e-01, 8.09017024212404e-01, 7.289685631508172e-01, 7.632407686043835e-01, 7.556464030248498e-01, 4.623680904045299e-01, 3.0901700258255e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 0e+00, 0e+00, 1.125051811535778e-14, 3.900839328316977e-01, 6.248887846085794e-01, 6.186710176291824e-01, 3.785550368929081e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.2186192708413e-14, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.68583180769956e-01, 9.921147430150915e-01, 9.999999962356083e-01, 9.921147599203933e-01, 9.685832161966618e-01, 9.297765217682159e-01, 8.763066382606247e-01, 8.090169130183783e-01, 7.289684332684319e-01, 6.374242662635298e-01, 5.358270029877432e-01, 4.257793908288309e-01, 3.0901700258255e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 0e+00, 0e+00, 6.062271707816262e-07, 2.365972516479877e-01, 3.790139866974083e-01, 3.752429357690897e-01, 2.296052374894222e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +sigRan.y[2]=[0e+00, 5.819367275884281e-01, 9.32224339698675e-01, 9.229485236273092e-01, 5.647378104334461e-01, 3.090169936426916e-01, 4.257792982038355e-01, 5.358267990667649e-01, 6.374240092888969e-01, 7.289685891278516e-01, 8.090169913868618e-01, 8.763066565483122e-01, 9.297765017474161e-01, 8.351182527989683e-01, 5.1099594989777e-01, 3.221364644617752e-07, 0e+00, 0e+00, 0e+00, 0e+00, 6.870717418766271e-15, 4.76449713281631e-01, 6.374239804957208e-01, 5.358268461649442e-01, 4.257791554392968e-01, 0e+00, 1.873811942620139e-01, 6.279065492488556e-02, -6.279050552827849e-02, -1.87381414997698e-01, -5.545308426474493e-07, 4.31109217332613e-01, 6.906088754640104e-01, 6.837372556499968e-01, 4.183682260171136e-01, -2.626901699998203e-07, -4.100833358572478e-01, -6.569273336386406e-01, -6.503907850961804e-01, -3.979635421682539e-01, -2.508801402317795e-07, 0e+00, 0e+00, 0e+00, 0e+00, -4.753838037231209e-07, -3.710589323705841e-01, -5.944125165298989e-01, -5.358266875236506e-01, -3.600930457988503e-01, 0e+00, 3.529627074374652e-01, 5.654228200932372e-01, 5.597961672619615e-01, 3.425314303271506e-01, 3.090168595472124e-01, 4.257792557798274e-01, 5.358268775289801e-01, 6.374241520524678e-01, 7.289688428578369e-01, 8.090168234542057e-01, 8.763065644525554e-01, 9.297764669787668e-01, 5.065248594669165e-01, 3.099343019754264e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 3.702237505794242e-07, 2.889817024381439e-01, 4.629285819028494e-01, 4.58322826602885e-01, 2.804407325721752e-01, 0e+00, 1.873811942637721e-01, 6.279028111777932e-02, -6.279087897899412e-02, -1.873810467796241e-01, -3.363349345003597e-07, 2.61480961155234e-01, 4.188754423513013e-01, 4.147073368741621e-01, 2.537524603765325e-01, 6.398633958376587e-07, -2.487281063103918e-01, -3.98446545341796e-01, -3.944819392568573e-01, -2.413770841096838e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -2.88330557314194e-07, -2.250591858935019e-01, -3.605291520907614e-01, -3.569421764287664e-01, -2.184074769642863e-01, -9.010447442897996e-16] +sigRan.y[3]=[0e+00, 0e+00, 0e+00, 6.279052889145303e-02, 1.873813232596766e-01, 4.450206243789001e-08, -5.535553700140932e-01, -8.867592153824621e-01, -8.779357871318595e-01, -5.371954256642459e-01, -8.466318396349592e-08, 5.265581266454314e-01, 8.435114970245707e-01, 0e+00, 0e+00, -5.799461875544625e-15, -5.008777045417401e-01, -8.023728989298575e-01, -7.943892874549173e-01, -4.860742825513147e-01, -1.532128422049306e-07, 0e+00, 0e+00, 0e+00, 0e+00, -7.823690968081914e-15, -4.532130887682514e-01, -7.260168760002509e-01, -7.187930495082901e-01, -4.398179588213927e-01, -3.090168595450804e-01, -4.257792557802331e-01, -5.358268775301024e-01, -6.374238638831046e-01, -7.289685891278518e-01, -8.09017045842258e-01, -8.763065644512356e-01, -9.297764669784278e-01, -9.685831807701671e-01, -9.921147430153938e-01, -9.99999999058888e-01, -9.921147165364684e-01, -9.685831236181689e-01, -9.297765217686935e-01, -8.763066382608443e-01, -8.090169130170433e-01, -7.289686911151121e-01, -6.37423980495721e-01, -5.884978368747761e-01, -4.25779390830437e-01, -3.0901700258255e-01, -1.873811942637721e-01, -6.279028111777932e-02, 6.279087897899412e-02, 1.873810467796241e-01, 4.318625919791375e-07, -3.357481837081522e-01, -5.378466840444739e-01, -5.324947377815105e-01, -3.258246154830284e-01, -8.216008543504572e-07, 3.193732291172802e-01, 5.116155173920994e-01, 0e+00, 0e+00, -7.78411098246868e-07, -3.037968905749938e-01, -4.866635988941319e-01, -4.818214481521725e-01, -2.94818963210121e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -1.423592519637484e-14, -2.748876553147371e-01, -4.403517346503643e-01, -4.35969723173588e-01, -2.667637477218431e-01, -3.090168595472124e-01, -4.257792557798274e-01, -5.358268775289801e-01, -6.374241520524678e-01, -7.289688428578369e-01, -8.090168234542057e-01, -8.763065644525554e-01, -9.297764669787668e-01, -9.68583180769956e-01, -9.921147430150915e-01, -9.999999962356083e-01, -9.921147599203933e-01, -9.685832161966618e-01, -9.297765217682159e-01, -8.763066382606247e-01, -8.090169130183783e-01, -7.289684332684319e-01, -6.374242662635298e-01, -5.358270029877432e-01, -4.257793908288309e-01, -3.0901700258255e-01] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Electrical_Examples_ExamplePVSystem.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Electrical_Examples_ExamplePVSystem.txt new file mode 100644 index 0000000000..e1e913c55b --- /dev/null +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Electrical_Examples_ExamplePVSystem.txt @@ -0,0 +1,9 @@ +last-generated=2022-05-18 +statistics-simulation= +{ + "linear": " ", + "nonlinear": "1", + "numerical Jacobians": "0" +} +time=[0e+00, 3.1536e+07] +DCOutputPower=[0e+00, 1.706319618225098e+01, 0e+00, 0e+00, 9.809426879882812e+02, 0e+00, 0e+00, 2.484826049804688e+02, 0e+00, 0e+00, 2.854467163085938e+02, 0e+00, 0e+00, 3.717514953613281e+02, 0e+00, 0e+00, 2.656305908203125e+03, 0e+00, 7.706553955078125e+02, 5.962871704101562e+02, 0e+00, 2.787882995605469e+02, 4.721005859375e+02, 0e+00, 3.832204833984375e+03, 2.477066421508789e+01, 0e+00, 4.41885302734375e+03, 0e+00, 0e+00, 4.60672509765625e+03, 0e+00, 0e+00, 4.794205078125e+03, 0e+00, 7.019346923828125e+02, 3.10038525390625e+03, 0e+00, 1.484601318359375e+03, 3.303973876953125e+03, 0e+00, 3.35070654296875e+03, 2.209534912109375e+03, 0e+00, 3.292970703125e+03, 2.014225769042969e+02, 0e+00, 2.576235595703125e+03, 2.443184204101562e+02, 0e+00, 4.4205068359375e+03, 0e+00, 3.738731689453125e+02, 4.039900146484375e+03, 0e+00, 1.090966186523438e+03, 5.861552124023438e+02, 0e+00, 1.558090454101562e+03, 2.841516845703125e+03, 0e+00, 1.850239624023438e+03, 1.591485748291016e+02, 0e+00, 1.59473974609375e+03, 8.391412353515625e+01, 0e+00, 1.02452392578125e+03, 0e+00, 0e+00, 9.232176513671875e+02, 0e+00, 0e+00, 3.7038173828125e+03, 0e+00, 0e+00, 9.491340942382812e+02, 0e+00, 9.765248107910156e+01, 1.885158538818359e+02, 0e+00, 4.650042724609375e+02, 1.589194793701172e+02, 0e+00, 3.015014343261719e+02, 0e+00, 0e+00, 2.4593017578125e+03, 0e+00, 0e+00, 1.360106201171875e+03, 0e+00, 0e+00, 5.387236328125e+02, 0e+00, 0e+00, 2.450832977294922e+02, 0e+00, 0e+00, 0e+00, 0e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Electrical_Validation_ValidationPVSystem.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Electrical_Validation_ValidationPVSystem.txt new file mode 100644 index 0000000000..5884c6fcd6 --- /dev/null +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Electrical_Validation_ValidationPVSystem.txt @@ -0,0 +1,10 @@ +last-generated=2022-05-18 +statistics-simulation= +{ + "linear": " ", + "nonlinear": " ", + "numerical Jacobians": "0" +} +time=[2.86848e+07, 2.87712e+07] +DCOutputPower=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.572728759765625e+03, 3.0851318359375e+03, 4.74455810546875e+03, 6.0346767578125e+03, 7.4645791015625e+03, 9.3870166015625e+03, 1.21235576171875e+04, 1.275553125e+04, 1.27617841796875e+04, 1.20615771484375e+04, 1.1824857421875e+04, 1.6208724609375e+04, 1.9887880859375e+04, 1.93703046875e+04, 1.7304984375e+04, 1.6407904296875e+04, 2.0150044921875e+04, 2.5800287109375e+04, 1.891059765625e+04, 1.637957421875e+04, 1.6954865234375e+04, 1.5186953125e+04, 1.60392080078125e+04, 1.54378427734375e+04, 1.9717412109375e+04, 2.293333203125e+04, 3.110772265625e+04, 3.2398724609375e+04, 1.6599119140625e+04, 1.2501982421875e+04, 1.59366943359375e+04, 5.41796240234375e+03, 6.95009814453125e+03, 3.504923095703125e+03, 3.579419921875e+03, 3.218021240234375e+03, 2.89190625e+03, 9.78573974609375e+02, 4.72529541015625e+02, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +DCOutputPower_Measured=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -8.479999899864197e-01, -2.655039978027344e+02, -1e+02, 9.30719970703125e+02, 2.379314208984375e+03, 3.832838623046875e+03, 5.24114306640625e+03, 6.78e+03, 8.353890625e+03, 1.10864443359375e+04, 1.14943310546875e+04, 1.1608150390625e+04, 1.024e+04, 1.0408962890625e+04, 1.4956681640625e+04, 1.6665244140625e+04, 1.6711099609375e+04, 1.597e+04, 1.52589404296875e+04, 1.85226015625e+04, 2.1429029296875e+04, 1.5861236328125e+04, 1.512e+04, 1.59836513671875e+04, 1.37550146484375e+04, 1.46576943359375e+04, 1.38056796875e+04, 1.67e+04, 2.0053521484375e+04, 2.7014251953125e+04, 2.8000001953125e+04, 1.49338486328125e+04, 1.121e+04, 1.434517578125e+04, 4.20543603515625e+03, 5.9693662109375e+03, 1.712971435546875e+03, 2.07e+03, 2.605951904296875e+03, 2.315897705078125e+03, 4.742102966308594e+02, 1.031999969482422e+02, -3e+02, -3.202000045776367e+01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Actuators_Dampers_Examples_MixingBox.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Actuators_Dampers_Examples_MixingBox.txt index 00ae9a50a8..888adc8ccd 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Actuators_Dampers_Examples_MixingBox.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Actuators_Dampers_Examples_MixingBox.txt @@ -1,4 +1,4 @@ -last-generated=2020-01-10 +last-generated=2022-05-23 statistics-simulation= { "linear": " ", @@ -7,6 +7,6 @@ statistics-simulation= "numerical Jacobians": "0" } time=[0e+00, 2.4e+02] -mixBox.damOA.m_flow=[4.082483053207397e-01, 3.694875263584235e-01, 2.934053903923391e-01, 1.945959098978779e-01, 1.084133868182461e-01, 6.126639991998672e-02, 3.696337827950886e-02, 2.394095706269935e-02, 1.655492933071504e-02, 1.151317427622245e-02, 8.240096271038055e-03, 6.18721147220671e-03, 4.593402896297984e-03, 2.589837772201409e-03, 1.205372968003234e-03, 5.123296868987381e-04, 2.126233435191621e-04, 8.993112695613192e-05, 3.979149183008676e-05, 1.869259111221075e-05, 9.385585144627839e-06, 5.045648524916488e-06, 2.899676477416335e-06, 1.775103263197637e-06, 1.152216273936922e-06, 7.889278776929132e-07, 1.879648335712532e-06, 2.337894936817012e-05, 4.137413442264547e-04, 3.336306590467579e-03, 6.958636455237865e-03, 1.170546749105949e-02, 1.982458912644383e-02, 3.331923148067743e-02, 5.49042886009465e-02, 8.766841143369675e-02, 1.337725788939171e-01, 1.914944024921306e-01, 2.517027965532164e-01, 3.021762068102246e-01, 3.477931320667267e-01, 3.913655011126964e-01, 4.317922096512782e-01, 4.684169727312328e-01, 5.009812308166853e-01, 5.295311808586121e-01, 5.543117374721283e-01, 5.756756407854753e-01, 5.940169308369937e-01, 6.09727570563235e-01, 6.231735348701477e-01, 6.346828272779805e-01, 6.445423246871911e-01, 6.52998814849608e-01, 6.602623288952333e-01, 6.665109395980835e-01, 6.718948012609735e-01, 6.765406672129261e-01, 6.805554675132005e-01, 6.840294516194957e-01, 6.870388984680176e-01, 6.896487535353542e-01, 6.919141384579598e-01, 6.938821696380932e-01, 6.955929953467331e-01, 6.970811486244202e-01, 6.983761817692452e-01, 6.995035992422224e-01, 7.004854690590139e-01, 7.013406136931902e-01, 7.020856738090515e-01, 7.027348295141217e-01, 7.033004157897206e-01, 7.037932878539981e-01, 7.042227377098176e-01, 7.045968770980835e-01, 7.049228556628023e-01, 7.052068110866275e-01, 7.054541709930341e-01, 7.056695217678192e-01, 7.058570981025696e-01, 7.060203556065884e-01, 7.06162512131488e-01, 7.062861920846912e-01, 7.06393778065685e-01, 7.064874172210693e-01, 7.065688373560641e-01, 7.066396473989388e-01, 7.06701219153881e-01, 7.067547439240448e-01, 7.068012356758118e-01, 7.068416477189484e-01, 7.068766951140329e-01, 7.06907093560555e-01, 7.069334983189052e-01, 7.069563865661621e-01, 7.069762945637487e-01, 7.069935798436592e-01, 7.07008481043128e-01, 7.070214748071831e-01, 7.070327997207642e-01] -mixBox.damExh.m_flow=[4.082483053207397e-01, 3.318096135729353e-01, 2.324111254756309e-01, 1.209484270586083e-01, 5.645889766639402e-02, 2.803823165595531e-02, 1.518789178027798e-02, 8.943126158237219e-03, 5.672583230648872e-03, 4.452888965643846e-03, 3.84583743289113e-03, 3.382546532391133e-03, 2.878615565832261e-03, 1.830165848836518e-03, 9.482279974562527e-04, 4.440191551111639e-04, 2.012834236327364e-04, 8.993112695613192e-05, 3.979149183008676e-05, 1.869259111221075e-05, 9.385585144627839e-06, 5.045648524916488e-06, 2.899676477416335e-06, 1.775103263197637e-06, 1.152216273936922e-06, 7.889278776929132e-07, 1.879648335712532e-06, 2.337894936817012e-05, 4.137413442264547e-04, 3.336306590467579e-03, 6.958636455237865e-03, 1.170546749105949e-02, 1.982458912644383e-02, 3.331923148067743e-02, 5.49042886009465e-02, 8.766841143369675e-02, 1.337725788939171e-01, 1.914944024921306e-01, 2.517027965532164e-01, 3.021762068102246e-01, 3.477931320667267e-01, 3.913655011126964e-01, 4.317922096512782e-01, 4.684169727312328e-01, 5.009812308166853e-01, 5.295311808586121e-01, 5.543117374721283e-01, 5.756756407854753e-01, 5.940169308369937e-01, 6.09727570563235e-01, 6.231735348701477e-01, 6.346828272779805e-01, 6.445423246871911e-01, 6.52998814849608e-01, 6.602623288952333e-01, 6.665109395980835e-01, 6.718948012609735e-01, 6.765406672129261e-01, 6.805554675132005e-01, 6.840294516194957e-01, 6.870388984680176e-01, 6.896487535353542e-01, 6.919141384579598e-01, 6.938821696380932e-01, 6.955929953467331e-01, 6.970811486244202e-01, 6.983761817692452e-01, 6.995035992422224e-01, 7.004854690590139e-01, 7.013406136931902e-01, 7.020856738090515e-01, 7.027348295141217e-01, 7.033004157897206e-01, 7.037932878539981e-01, 7.042227377098176e-01, 7.045968770980835e-01, 7.049228556628023e-01, 7.052068110866275e-01, 7.054541709930341e-01, 7.056695217678192e-01, 7.058570981025696e-01, 7.060203556065884e-01, 7.06162512131488e-01, 7.062861920846912e-01, 7.06393778065685e-01, 7.064874172210693e-01, 7.065688373560641e-01, 7.066396473989388e-01, 7.06701219153881e-01, 7.067547439240448e-01, 7.068012356758118e-01, 7.068416477189484e-01, 7.068766951140329e-01, 7.06907093560555e-01, 7.069334983189052e-01, 7.069563865661621e-01, 7.069762945637487e-01, 7.069935798436592e-01, 7.07008481043128e-01, 7.070214748071831e-01, 7.070327997207642e-01] -mixBox.damRec.m_flow=[4.687499810529516e-08, 2.75287510675772e-03, 1.162845636803226e-02, 3.428009446825341e-02, 8.51645662972446e-02, 1.749655902385712e-01, 2.782440919521604e-01, 3.634085030240084e-01, 4.468499459681567e-01, 5.25296318395891e-01, 5.967811346054077e-01, 6.60830447628967e-01, 7.178460528470757e-01, 7.686238730755588e-01, 8.14058569342213e-01, 8.549972176551819e-01, 8.921795259558092e-01, 9.201125547111857e-01, 9.330884776149788e-01, 9.437956274649983e-01, 9.526703953742981e-01, 9.600555853149068e-01, 9.662235396822532e-01, 9.713914975126636e-01, 9.75733401877488e-01, 9.793902635574341e-01, 9.708022587005468e-01, 9.40740335982393e-01, 8.900726827284418e-01, 8.188826511081109e-01, 7.293761968612671e-01, 6.275530527095236e-01, 5.224570763311014e-01, 4.232324078845113e-01, 3.366931193400514e-01, 2.656476497650146e-01, 1.943538181943111e-01, 1.347316275967956e-01, 9.270680246108341e-02, 6.470041834144206e-02, 4.619450494647026e-02, 3.38408417622923e-02, 2.54483109435195e-02, 1.963106691633623e-02, 1.551528154526194e-02, 1.254446152597666e-02, 1.026569923436159e-02, 7.217419230495592e-03, 4.323832463075784e-03, 2.336147257794407e-03, 1.18940940592438e-03, 5.899228784427757e-04, 2.921287253114553e-04, 1.47013065455862e-04, 7.611559927123539e-05, 4.087174602318555e-05, 2.287201680928815e-05, 1.33709220115984e-05, 8.170602009559065e-06, 5.215438320074786e-06, 3.472059461273602e-06, 2.405452517342077e-06, 1.729882603651138e-06, 1.287817001161877e-06, 9.896773127857589e-07, 7.829301011952339e-07, 6.358826910532766e-07, 5.28863046814338e-07, 4.493440714909404e-07, 3.891516037347611e-07, 3.428222896673105e-07, 3.06632961077568e-07, 2.779888509430727e-07, 2.550514210294279e-07, 2.364944727557584e-07, 2.213440239984266e-07, 2.088766992128469e-07, 1.985449793221325e-07, 1.899306355997576e-07, 1.827099141009731e-07, 1.766286175097775e-07, 1.714864931644018e-07, 1.671228256658359e-07, 1.634085392965389e-07, 1.60238677895587e-07, 1.575270829334841e-07, 1.552031054205369e-07, 1.532078097152635e-07, 1.514922709565391e-07, 1.500154418288093e-07, 1.487427141455555e-07, 1.476453351821622e-07, 1.466987680455018e-07, 1.458821107741799e-07, 1.451773260729553e-07, 1.445685029466404e-07, 1.440411937395912e-07, 1.435845581230055e-07, 1.43190618014381e-07, 1.428493598276002e-07, 1.42552693205289e-07] +mixBox.damOA.m_flow=[4.082483053207397e-01, 3.696834170139743e-01, 2.938377922707618e-01, 1.953646459062304e-01, 1.09041023765295e-01, 6.167414039373398e-02, 3.722175694656505e-02, 2.410912037127299e-02, 1.666897724455199e-02, 1.158944401249707e-02, 8.291748352348804e-03, 6.223875311835456e-03, 4.641559263420082e-03, 2.637361072073257e-03, 1.234091452458272e-03, 5.26286952663213e-04, 2.187833037761185e-04, 9.259343557175558e-05, 4.094635761945294e-05, 1.921394234569782e-05, 9.63495494943345e-06, 5.171852794499868e-06, 2.967318769641812e-06, 1.813348318288214e-06, 1.174917254889492e-06, 8.030286267057818e-07, 1.898864244409017e-06, 2.334145847437697e-05, 4.096723464888471e-04, 3.306660027230826e-03, 6.927535869181156e-03, 1.163749214897703e-02, 1.968707387125767e-02, 3.305803253800259e-02, 5.443904065425262e-02, 8.690168708562851e-02, 1.326342794305045e-01, 1.900458162023031e-01, 2.50236790763321e-01, 3.008915180514048e-01, 3.464533984661102e-01, 3.900184659364633e-01, 4.304785232203645e-01, 4.671670336268773e-01, 4.99815244813948e-01, 5.284597873687744e-01, 5.533380359331186e-01, 5.747976642481845e-01, 5.932296727994548e-01, 6.090243550147653e-01, 6.225467920303345e-01, 6.341246893424294e-01, 6.440451622712237e-01, 6.525559524033488e-01, 6.598677460301043e-01, 6.661593317985535e-01, 6.71581400128934e-01, 6.76261121387623e-01, 6.80305962505414e-01, 6.838066493929043e-01, 6.868399381637573e-01, 6.894710721400577e-01, 6.917554708704512e-01, 6.93740489417547e-01, 6.954663950448512e-01, 6.969680190086365e-01, 6.982750327158614e-01, 6.994132385874794e-01, 7.004046451720672e-01, 7.01268492051791e-01, 7.020212411880493e-01, 7.02677370652474e-01, 7.032491557876346e-01, 7.037476307025424e-01, 7.041820277253097e-01, 7.045606374740601e-01, 7.048905499551867e-01, 7.051780220390325e-01, 7.054285409995702e-01, 7.05646752786694e-01, 7.058368325233459e-01, 7.060024146138163e-01, 7.061465380844144e-01, 7.062720061818873e-01, 7.063812610857348e-01, 7.064762711524963e-01, 7.065590025927078e-01, 7.066308855146409e-01, 7.066933513419075e-01, 7.067477105744455e-01, 7.067948579788208e-01, 7.068358064660342e-01, 7.068715095091795e-01, 7.069023847939968e-01, 7.069292067837235e-01, 7.069526314735413e-01, 7.069729567043992e-01, 7.069905996110415e-01, 7.070059776484263e-01, 7.070193290392134e-01, 7.070309519767761e-01] +mixBox.damExh.m_flow=[4.082483053207397e-01, 3.31985506871662e-01, 2.328850717785657e-01, 1.215030706163871e-01, 5.679997037782256e-02, 2.82274316996336e-02, 1.529461202529541e-02, 9.006084486153611e-03, 5.711705303975978e-03, 4.482403044711292e-03, 3.8699503056705e-03, 3.402593017416759e-03, 2.908796242514134e-03, 1.86374969193e-03, 9.708199546649307e-04, 4.561154346447438e-04, 2.071148447385069e-04, 9.259343557175558e-05, 4.094635761945294e-05, 1.921394234569782e-05, 9.63495494943345e-06, 5.171852794499868e-06, 2.967318769641812e-06, 1.813348318288214e-06, 1.174917254889492e-06, 8.030286267057818e-07, 1.898864244409017e-06, 2.334145847437697e-05, 4.096723464888471e-04, 3.306660027230826e-03, 6.927535869181156e-03, 1.163749214897703e-02, 1.968707387125767e-02, 3.305803253800259e-02, 5.443904065425262e-02, 8.690168708562851e-02, 1.326342794305045e-01, 1.900458162023031e-01, 2.50236790763321e-01, 3.008915180514048e-01, 3.464533984661102e-01, 3.900184659364633e-01, 4.304785232203645e-01, 4.671670336268773e-01, 4.99815244813948e-01, 5.284597873687744e-01, 5.533380359331186e-01, 5.747976642481845e-01, 5.932296727994548e-01, 6.090243550147653e-01, 6.225467920303345e-01, 6.341246893424294e-01, 6.440451622712237e-01, 6.525559524033488e-01, 6.598677460301043e-01, 6.661593317985535e-01, 6.71581400128934e-01, 6.76261121387623e-01, 6.80305962505414e-01, 6.838066493929043e-01, 6.868399381637573e-01, 6.894710721400577e-01, 6.917554708704512e-01, 6.93740489417547e-01, 6.954663950448512e-01, 6.969680190086365e-01, 6.982750327158614e-01, 6.994132385874794e-01, 7.004046451720672e-01, 7.01268492051791e-01, 7.020212411880493e-01, 7.02677370652474e-01, 7.032491557876346e-01, 7.037476307025424e-01, 7.041820277253097e-01, 7.045606374740601e-01, 7.048905499551867e-01, 7.051780220390325e-01, 7.054285409995702e-01, 7.05646752786694e-01, 7.058368325233459e-01, 7.060024146138163e-01, 7.061465380844144e-01, 7.062720061818873e-01, 7.063812610857348e-01, 7.064762711524963e-01, 7.065590025927078e-01, 7.066308855146409e-01, 7.066933513419075e-01, 7.067477105744455e-01, 7.067948579788208e-01, 7.068358064660342e-01, 7.068715095091795e-01, 7.069023847939968e-01, 7.069292067837235e-01, 7.069526314735413e-01, 7.069729567043992e-01, 7.069905996110415e-01, 7.070059776484263e-01, 7.070193290392134e-01, 7.070309519767761e-01] +mixBox.damRec.m_flow=[4.687499810529516e-08, 2.734546447273023e-03, 1.15784583209468e-02, 3.409176984885041e-02, 8.465033474082763e-02, 1.739961206912994e-01, 2.772684533506339e-01, 3.623661965712153e-01, 4.457449950738265e-01, 5.241986988556731e-01, 5.957407355308533e-01, 6.598634814900867e-01, 7.169646789922562e-01, 7.678287470875388e-01, 8.133456978416685e-01, 8.543623685836792e-01, 8.916171560878264e-01, 9.196159884379204e-01, 9.326601586164014e-01, 9.434248270013038e-01, 9.523463249206543e-01, 9.597715691590568e-01, 9.659740942540052e-01, 9.711723908292796e-01, 9.755413557283168e-01, 9.792221784591675e-01, 9.706971756576175e-01, 9.407625683167016e-01, 8.90300492009705e-01, 8.19398529514603e-01, 7.302262187004089e-01, 6.287161775686151e-01, 5.238295326835068e-01, 4.246782079448213e-01, 3.380593471020057e-01, 2.670273184776306e-01, 1.958276921190483e-01, 1.359351947995767e-01, 9.359254202232214e-02, 6.533250311496878e-02, 4.664472490549088e-02, 3.416483032837695e-02, 2.568505509995055e-02, 1.980703652916983e-02, 1.564829953238967e-02, 1.264666579663754e-02, 1.037225458711482e-02, 7.359058024119115e-03, 4.439311288138797e-03, 2.410608103660467e-03, 1.23150076251477e-03, 6.120717764779815e-04, 3.034038216349381e-04, 1.527102229805623e-04, 7.902331002702846e-05, 4.238824840285815e-05, 2.368651361514937e-05, 1.382350693370911e-05, 8.431376711407319e-06, 5.371308640074103e-06, 3.568623242244939e-06, 2.467368806216718e-06, 1.77090527016333e-06, 1.315837383562113e-06, 1.009372551952056e-06, 7.971397053552209e-07, 6.463860968046457e-07, 5.367925360406201e-07, 4.554497917380639e-07, 3.939292960563213e-07, 3.466201690116577e-07, 3.096895438075087e-07, 2.804800144233677e-07, 2.571023311012586e-07, 2.381996624363134e-07, 2.22773280711408e-07, 2.100837971337178e-07, 1.995704063890873e-07, 1.908067488329508e-07, 1.834612280723618e-07, 1.772757798335078e-07, 1.720454485116192e-07, 1.676072453707249e-07, 1.638294363184901e-07, 1.606051759695161e-07, 1.578469976948327e-07, 1.554826470496776e-07, 1.534536433306459e-07, 1.517099527961788e-07, 1.502076863359051e-07, 1.489160439405168e-07, 1.478026350921674e-07, 1.468385744585847e-07, 1.46009127377813e-07, 1.452915387460915e-07, 1.446679078753732e-07, 1.441296562868835e-07, 1.436627462604661e-07, 1.432568263728561e-07, 1.429053364088981e-07, 1.426004132554226e-07] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Actuators_Dampers_Examples_VAVBoxExponential.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Actuators_Dampers_Examples_VAVBoxExponential.txt index 074ef1dc8b..2fa66069c2 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Actuators_Dampers_Examples_VAVBoxExponential.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Actuators_Dampers_Examples_VAVBoxExponential.txt @@ -1,4 +1,4 @@ -last-generated=2020-01-10 +last-generated=2022-05-23 statistics-initialization= { "nonlinear": "1", @@ -12,8 +12,8 @@ statistics-simulation= "numerical Jacobians": "0" } time=[0e+00, 2.4e+02] -dam.m_flow=[2e+00, 1.918332580051682e+00, 1.833030230750684e+00, 1.743559591591018e+00, 1.649242297244033e+00, 1.549193382263184e+00, 1.442220550885698e+00, 1.326649865557142e+00, 1.200000089608263e+00, 1.058300518844233e+00, 8.944271802902222e-01, 6.928202725730367e-01, 3.737259431473062e-01, -3.737259431473062e-01, -6.928204528265858e-01, -8.944271802902222e-01, -1.058300397613417e+00, -1.20000008960843e+00, -1.326649865556988e+00, -1.442220638655692e+00, -1.549193382263184e+00, -1.649242219866947e+00, -1.743559627942459e+00, -1.833030195965281e+00, -1.918332629550918e+00, -2e+00, -1.967825925445117e+00, -1.878845592927906e+00, -1.740119485146459e+00, -1.559407225823465e+00, -1.349889159202576e+00, -1.130027671949781e+00, -9.18918212948264e-01, -7.308660962014528e-01, -5.734051192846068e-01, -4.484260678291321e-01, -3.480816174720647e-01, -2.667482251773472e-01, -2.013922359693185e-01, -1.503253155679094e-01, -1.119050681591034e-01, -8.392113509003757e-02, -6.389123180672276e-02, -4.95930761848242e-02, -3.931199967311695e-02, -3.182540461421013e-02, -2.612248987052418e-02, -1.852752740177164e-02, -1.115708767744273e-02, -6.042560062928605e-03, -3.078373614698648e-03, -1.526106884701187e-03, -7.548912190433603e-04, -3.793374218242541e-04, -1.960746688662549e-04, -1.051042127073742e-04, -5.871608444073193e-05, -3.426892935150732e-05, -2.090868924791652e-05, -1.332755515427314e-05, -8.86104771780083e-06, -6.131774880254321e-06, -4.405023002335806e-06, -3.276254818059427e-06, -2.51567764155988e-06, -1.988692929444369e-06, -1.614150747885665e-06, -1.341742482369006e-06, -1.139449988983211e-06, -9.863974885789004e-07, -8.686492378728872e-07, -7.767061129357091e-07, -7.039595563564664e-07, -6.457246318431008e-07, -5.986257711344478e-07, -5.601871748694975e-07, -5.285654503601249e-07, -5.023638063812993e-07, -4.805226331791018e-07, -4.622158237027968e-07, -4.468003567126289e-07, -4.337651075907325e-07, -4.227047004185015e-07, -4.132903830360939e-07, -4.052567611075039e-07, -3.983851399880223e-07, -3.924961765674046e-07, -3.874405141664888e-07, -3.830937436777734e-07, -3.79351869105122e-07, -3.761269340429862e-07, -3.733452664475071e-07, -3.709439539878524e-07, -3.688698176076154e-07, -3.670772386829037e-07, -3.655274838365585e-07, -3.641869707892042e-07, -3.63027341135486e-07, -3.620236543288366e-07, -3.611550048764458e-07, -3.604026233006152e-07] -vav.m_flow=[2e+00, 1.918332580051682e+00, 1.833030230750684e+00, 1.743559591591018e+00, 1.649242297244033e+00, 1.549193382263184e+00, 1.442220550885698e+00, 1.326649865557142e+00, 1.200000089608263e+00, 1.058300518844233e+00, 8.944271802902222e-01, 6.928202725730367e-01, 3.469959246805281e-01, -3.469959246805281e-01, -6.928204528265858e-01, -8.944271802902222e-01, -1.058300397613417e+00, -1.20000008960843e+00, -1.326649865556988e+00, -1.442220638655692e+00, -1.549193382263184e+00, -1.649242219866947e+00, -1.743559627942459e+00, -1.833030195965281e+00, -1.918332629550918e+00, -2e+00, -1.967825925445117e+00, -1.878845592927906e+00, -1.740119485146459e+00, -1.559407225823465e+00, -1.349889159202576e+00, -1.130027671949781e+00, -9.18918212948264e-01, -7.308660962014528e-01, -5.730929040745858e-01, -4.215270578861237e-01, -2.865693733353579e-01, -1.911943234731234e-01, -1.289832586498619e-01, -8.902193156790193e-02, -6.311953812837601e-02, -4.602033074451096e-02, -3.448665649594086e-02, -2.653180367000614e-02, -2.092422999513271e-02, -1.68880969285965e-02, -1.383533058161802e-02, -9.793043953309518e-03, -5.889230034046402e-03, -3.18761999845854e-03, -1.623570104129612e-03, -8.048240366885647e-04, -3.980959611257987e-04, -2.000432868415801e-04, -1.033992880480063e-04, -5.542620056075975e-05, -3.096360744789746e-05, -1.807152135888473e-05, -1.102607176832916e-05, -7.028205247527607e-06, -4.672819159168284e-06, -3.233553555635176e-06, -2.322961618894003e-06, -1.727712606516689e-06, -1.326627019847188e-06, -1.048724811880675e-06, -8.512123346573286e-07, -7.07559526841984e-07, -6.008818896352941e-07, -5.20170558167059e-07, -4.580767551942699e-07, -4.09591116463748e-07, -3.712286674124644e-07, -3.405188463809956e-07, -3.156815478944908e-07, -2.954112119368801e-07, -2.787357024784322e-07, -2.649184288424915e-07, -2.534006153340193e-07, -2.43746620895909e-07, -2.35617378052666e-07, -2.287433160137517e-07, -2.229106781976354e-07, -2.17946103426817e-07, -2.137096218916082e-07, -2.100859148868039e-07, -2.069804096083988e-07, -2.043143357519321e-07, -2.020220906154282e-07, -2.000488355581431e-07, -1.983481894285433e-07, -1.968812989594664e-07, -1.956149746255974e-07, -1.945212049803326e-07, -1.935758882529794e-07, -1.927586339434129e-07, -1.920517275401365e-07, -1.914401942088795e-07, -1.909109095750777e-07, -1.904528385995568e-07, -1.900560704370946e-07] -dam.dp=[5e+00, 4.599999920527121e+00, 4.199999841054439e+00, 3.799999920527172e+00, 3.400000158945593e+00, 3e+00, 2.599999841054407e+00, 2.199999920527266e+00, 1.800000079472544e+00, 1.400000039736525e+00, 1e+00, 5.999999602634757e-01, 1.813970218697891e-01, -1.813970218697891e-01, -6.000002781531776e-01, -1e+00, -1.399999721847012e+00, -1.80000007947305e+00, -2.199999920526761e+00, -2.600000158944456e+00, -3e+00, -3.399999841055544e+00, -3.800000079473238e+00, -4.199999682108562e+00, -4.600000158943697e+00, -5e+00, -5.159576239106501e+00, -5.587424095235362e+00, -6.214980078852349e+00, -6.960311426938663e+00, -7.722249031066895e+00, -8.40379674828281e+00, -8.944486963571771e+00, -9.332293897284845e+00, -9.588539237196947e+00, -9.723440170288086e+00, -9.799261052637101e+00, -9.851455630226866e+00, -9.890006106416893e+00, -9.918777481008767e+00, -9.93989086151123e+00, -9.955062857828487e+00, -9.965846049810436e+00, -9.973513611147251e+00, -9.979015353212748e+00, -9.983016967773438e+00, -9.98606300158767e+00, -9.990117067559709e+00, -9.994049076400765e+00, -9.996777535742989e+00, -9.998357772827148e+00, -9.999186515413994e+00, -9.999597549050428e+00, -9.999797821208629e+00, -9.9998950956433e+00, -9.999943733215332e+00, -9.999968528796064e+00, -9.999981880175861e+00, -9.999988555914266e+00, -9.999993324267658e+00, -9.999995231628418e+00, -9.999997138977051e+00, -9.999998092645304e+00, -9.999998092651367e+00, -9.999999046325684e+00, -9.999999046325684e+00, -9.999999046325684e+00, -9.999999046325684e+00, -9.999999046325684e+00, -9.999999046325684e+00, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01] +dam.m_flow=[2e+00, 1.918332580051682e+00, 1.833030230750684e+00, 1.743559591591018e+00, 1.649242297244033e+00, 1.549193382263184e+00, 1.442220550885698e+00, 1.326649865557142e+00, 1.200000089608263e+00, 1.058300518844233e+00, 8.944271802902222e-01, 6.928202725730367e-01, 3.737259431473062e-01, -3.737259431473062e-01, -6.928204528265858e-01, -8.944271802902222e-01, -1.058300397613417e+00, -1.20000008960843e+00, -1.326649865556988e+00, -1.442220638655692e+00, -1.549193382263184e+00, -1.649242219866947e+00, -1.743559627942459e+00, -1.833030195965281e+00, -1.918332629550918e+00, -2e+00, -1.967951452690591e+00, -1.879301210315676e+00, -1.741086750071444e+00, -1.560992232939402e+00, -1.352083683013916e+00, -1.132674237158968e+00, -9.217709507203622e-01, -7.336880183134643e-01, -5.759789668563472e-01, -4.507051706314087e-01, -3.501051357126311e-01, -2.685334441965567e-01, -2.029281281226012e-01, -1.515931657944556e-01, -1.129078343510628e-01, -8.469105587398409e-02, -6.44747912941786e-02, -5.003519721276513e-02, -3.964932465437468e-02, -3.208564221858978e-02, -2.63832265185107e-02, -1.888687819861831e-02, -1.145439737800964e-02, -6.235633881712747e-03, -3.187894588336349e-03, -1.583801529179733e-03, -7.842448458710465e-04, -3.941492222769715e-04, -2.036216695984447e-04, -1.090337391360663e-04, -6.082295497557724e-05, -3.543746360225672e-05, -2.158061076995955e-05, -1.372834181335048e-05, -9.108892299991567e-06, -6.290471991311104e-06, -4.510040592178743e-06, -3.347932972948661e-06, -2.566017081802397e-06, -2.02498472390289e-06, -1.640948990076237e-06, -1.36195464511856e-06, -1.15499574968678e-06, -9.985552802635825e-07, -8.783056841821235e-07, -7.844776842655621e-07, -7.102904937829821e-07, -6.509369447523564e-07, -6.029545132231364e-07, -5.638096922666591e-07, -5.316128247586956e-07, -5.049456350080632e-07, -4.827181529522442e-07, -4.640926236121292e-07, -4.484101339130575e-07, -4.351517170202344e-07, -4.239028746473909e-07, -4.143284857914339e-07, -4.061583833235476e-07, -3.9916915284266e-07, -3.931789226328227e-07, -3.880353806487708e-07, -3.836126671585641e-07, -3.798060197518953e-07, -3.765266853861249e-07, -3.736966439407281e-07, -3.712584402464297e-07, -3.69152727264254e-07, -3.673300498504466e-07, -3.65758239695424e-07, -3.643966092586944e-07, -3.632155212967545e-07, -3.621942698283209e-07, -3.613076863461255e-07, -3.605385643368209e-07] +vav.m_flow=[2e+00, 1.918332580051682e+00, 1.833030230750684e+00, 1.743559591591018e+00, 1.649242297244033e+00, 1.549193382263184e+00, 1.442220550885698e+00, 1.326649865557142e+00, 1.200000089608263e+00, 1.058300518844233e+00, 8.944271802902222e-01, 6.928202725730367e-01, 3.469959246805281e-01, -3.469959246805281e-01, -6.928204528265858e-01, -8.944271802902222e-01, -1.058300397613417e+00, -1.20000008960843e+00, -1.326649865556988e+00, -1.442220638655692e+00, -1.549193382263184e+00, -1.649242219866947e+00, -1.743559627942459e+00, -1.833030195965281e+00, -1.918332629550918e+00, -2e+00, -1.967951452690591e+00, -1.879301210315676e+00, -1.741086750071444e+00, -1.560992232939402e+00, -1.352083683013916e+00, -1.132674237158968e+00, -9.217709507203622e-01, -7.336880183134643e-01, -5.757455495883079e-01, -4.24614280462265e-01, -2.891636361350493e-01, -1.930794851346795e-01, -1.302965718998985e-01, -8.99325264254093e-02, -6.375726312398911e-02, -4.647427236782556e-02, -3.481578602942794e-02, -2.677487504892722e-02, -2.110695172786041e-02, -1.702781952917576e-02, -1.397454367154608e-02, -9.983797434503965e-03, -6.046428367772958e-03, -3.289529938860811e-03, -1.681343652307987e-03, -8.35252512541094e-04, -4.135761574238545e-04, -2.078543702676739e-04, -1.073791858786195e-04, -5.749842239310965e-05, -3.207465548338754e-05, -1.868774269587203e-05, -1.138040703902593e-05, -7.239558002944322e-06, -4.803518550033914e-06, -3.317241760628682e-06, -2.378342144857107e-06, -1.765511757852976e-06, -1.353173147753041e-06, -1.067863081516407e-06, -8.653442237396849e-07, -7.182182969760326e-07, -6.090798449406845e-07, -5.265818745303372e-07, -4.631690160294966e-07, -4.136894111394996e-07, -3.745672528028576e-07, -3.43267537674987e-07, -3.179642954146285e-07, -2.973215202928259e-07, -2.803427220947124e-07, -2.662799426967354e-07, -2.545584018589812e-07, -2.447363504780445e-07, -2.364662776699333e-07, -2.294745352749692e-07, -2.235425355491069e-07, -2.18493533876384e-07, -2.141850888415957e-07, -2.104993512830333e-07, -2.073404414870245e-07, -2.046280404245229e-07, -2.022957489971542e-07, -2.002883311725261e-07, -1.985589932473886e-07, -1.970665942409732e-07, -1.957808295339276e-07, -1.946703905126231e-07, -1.937092003137687e-07, -1.928803214923391e-07, -1.921622737477056e-07, -1.915394428303175e-07, -1.910008926953888e-07, -1.905333573269478e-07, -1.901277641991328e-07] +dam.dp=[5e+00, 4.599999920527121e+00, 4.199999841054439e+00, 3.799999920527172e+00, 3.400000158945593e+00, 3e+00, 2.599999841054407e+00, 2.199999920527266e+00, 1.800000079472544e+00, 1.400000039736525e+00, 1e+00, 5.999999602634757e-01, 1.813970218697891e-01, -1.813970218697891e-01, -6.000002781531776e-01, -1e+00, -1.399999721847012e+00, -1.80000007947305e+00, -2.199999920526761e+00, -2.600000158944456e+00, -3e+00, -3.399999841055544e+00, -3.800000079473238e+00, -4.199999682108562e+00, -4.600000158943697e+00, -5e+00, -5.158958735649039e+00, -5.585283575533193e+00, -6.210771511398931e+00, -6.954129232157869e+00, -7.714837074279785e+00, -8.396311358321713e+00, -8.937922821724007e+00, -9.32712689170604e+00, -9.58495628430299e+00, -9.721491813659668e+00, -9.797881085646605e+00, -9.85036748752262e+00, -9.889124911585e+00, -9.918073669469367e+00, -9.939343452453613e+00, -9.954648009425059e+00, -9.965532290845136e+00, -9.973277099995604e+00, -9.978835108797265e+00, -9.982877731323242e+00, -9.985923765216297e+00, -9.989925379028175e+00, -9.993890766530937e+00, -9.996674538950165e+00, -9.998299598693848e+00, -9.999155044149425e+00, -9.999581336580986e+00, -9.999790191814098e+00, -9.999891280933909e+00, -9.999941825866699e+00, -9.999967575121747e+00, -9.999980926501545e+00, -9.999988555914266e+00, -9.999992370605469e+00, -9.999995231628418e+00, -9.999996185314862e+00, -9.999997138977051e+00, -9.999998092651367e+00, -9.999999046313556e+00, -9.999999046325684e+00, -9.999999046325684e+00, -9.999999046325684e+00, -9.999999046325684e+00, -9.999999046325684e+00, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01] vav.dp=[1e+01, 9.199999841054241e+00, 8.399999682108877e+00, 7.599999841054344e+00, 6.800000317891186e+00, 6e+00, 5.199999682108814e+00, 4.399999841054533e+00, 3.600000158945088e+00, 2.80000007947305e+00, 2e+00, 1.199999920526951e+00, 3.999997516480644e-01, -3.999997516480644e-01, -1.200000556306355e+00, -2e+00, -2.799999443694024e+00, -3.6000001589461e+00, -4.399999841053521e+00, -5.200000317888913e+00, -6e+00, -6.799999682111087e+00, -7.600000158946476e+00, -8.399999364217123e+00, -9.200000317887394e+00, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01, -1e+01] -res.dp=[5e+00, 4.599999920527121e+00, 4.199999841054439e+00, 3.799999920527172e+00, 3.400000158945593e+00, 3e+00, 2.599999841054407e+00, 2.199999920527266e+00, 1.800000079472544e+00, 1.400000039736525e+00, 1e+00, 5.999999602634757e-01, 2.18602729778299e-01, -2.18602729778299e-01, -6.000002781531776e-01, -1e+00, -1.399999721847012e+00, -1.80000007947305e+00, -2.199999920526761e+00, -2.600000158944456e+00, -3e+00, -3.399999841055544e+00, -3.800000079473238e+00, -4.199999682108562e+00, -4.600000158943697e+00, -5e+00, -4.840423760893499e+00, -4.412575904764638e+00, -3.785019682729072e+00, -3.039688573061337e+00, -2.277751207351685e+00, -1.596203132507143e+00, -1.055513274843019e+00, -6.677065795477644e-01, -4.114609714180786e-01, -2.765600979328156e-01, -2.00738485426997e-01, -1.485441909609052e-01, -1.099942884596156e-01, -8.122235507805635e-02, -6.010958552360535e-02, -4.493668023582431e-02, -3.415389431120482e-02, -2.648630689442048e-02, -2.098464119915036e-02, -1.698322221636772e-02, -1.393734113659422e-02, -9.883254678831247e-03, -5.950863061716e-03, -3.222764839584696e-03, -1.641807961277664e-03, -8.139247506243547e-04, -4.026087762735633e-04, -2.023132964902344e-04, -1.045731640045097e-04, -5.605557817034423e-05, -3.131524673277893e-05, -1.82767617144741e-05, -1.115130093222137e-05, -7.108029415616968e-06, -4.725892267742893e-06, -3.270279830029657e-06, -2.349345616402852e-06, -1.747335857490871e-06, -1.341694742166233e-06, -1.060636236616119e-06, -8.608804291888448e-07, -7.15595994386533e-07, -6.077066797387075e-07, -5.260786378379016e-07, -4.632795764791808e-07, -4.142432659163346e-07, -3.75445085354765e-07, -3.443864722110529e-07, -3.192670608855152e-07, -2.987664800002676e-07, -2.819015678412026e-07, -2.679273785615083e-07, -2.562787395902293e-07, -2.465151230275856e-07, -2.382935235800687e-07, -2.313413869255563e-07, -2.254424983633366e-07, -2.204215347770791e-07, -2.161369354678705e-07, -2.124720737128882e-07, -2.093312970114052e-07, -2.066349399413555e-07, -2.043166604526054e-07, -2.023209949613688e-07, -2.006010220156895e-07, -1.991174763860367e-07, -1.978367707233026e-07, -1.967305665485392e-07, -1.957745206659007e-07, -1.949479866425463e-07, -1.942330510875635e-07, -1.936145828863102e-07, -1.930792728348398e-07, -1.926160007059182e-07, -1.922147276900432e-07] +res.dp=[5e+00, 4.599999920527121e+00, 4.199999841054439e+00, 3.799999920527172e+00, 3.400000158945593e+00, 3e+00, 2.599999841054407e+00, 2.199999920527266e+00, 1.800000079472544e+00, 1.400000039736525e+00, 1e+00, 5.999999602634757e-01, 2.18602729778299e-01, -2.18602729778299e-01, -6.000002781531776e-01, -1e+00, -1.399999721847012e+00, -1.80000007947305e+00, -2.199999920526761e+00, -2.600000158944456e+00, -3e+00, -3.399999841055544e+00, -3.800000079473238e+00, -4.199999682108562e+00, -4.600000158943697e+00, -5e+00, -4.841041264350961e+00, -4.414716424466807e+00, -3.789228727018132e+00, -3.045870767842131e+00, -2.285162925720215e+00, -1.603688641677151e+00, -1.062077178274478e+00, -6.728726314579386e-01, -4.150439243127925e-01, -2.785082757472992e-01, -2.021187802441293e-01, -1.49632363466431e-01, -1.108753342801329e-01, -8.192585369378265e-02, -6.06561042368412e-02, -4.535230349972855e-02, -3.446730682526448e-02, -2.672309744079058e-02, -2.116502345100947e-02, -1.712225563824177e-02, -1.407656167676241e-02, -1.007502143774344e-02, -6.109462570051787e-03, -3.325743938012489e-03, -1.700220163911581e-03, -8.446953712585376e-04, -4.182640613773681e-04, -2.102129428007991e-04, -1.085982237859112e-04, -5.815132681163959e-05, -3.243890762259059e-05, -1.889998070913236e-05, -1.150965980489981e-05, -7.32178233076661e-06, -4.858075953961816e-06, -3.354918455997746e-06, -2.405355058286169e-06, -1.78556429013485e-06, -1.368542481522883e-06, -1.079991761798738e-06, -8.75172787128445e-07, -7.263757842030661e-07, -6.159977445349182e-07, -5.325627706662759e-07, -4.684296754930983e-07, -4.183880869062104e-07, -3.788216137371864e-07, -3.471663705345901e-07, -3.215757290169408e-07, -3.006985025422182e-07, -2.83526862608696e-07, -2.693043538291157e-07, -2.57449685363947e-07, -2.475160507682962e-07, -2.391520581568329e-07, -2.320809053230364e-07, -2.260815321978848e-07, -2.209751895799271e-07, -2.166178025444568e-07, -2.128902139020283e-07, -2.096954216145627e-07, -2.069522115391123e-07, -2.045934168002076e-07, -2.025632048499059e-07, -2.008142274689817e-07, -1.9930487487368e-07, -1.980045014647264e-07, -1.968814573831245e-07, -1.95909353288506e-07, -1.9507105264438e-07, -1.943448478501668e-07, -1.937149399545966e-07, -1.931702791365096e-07, -1.926974289285531e-07, -1.922872314708002e-07] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Actuators_Dampers_Validation_PressureIndependent.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Actuators_Dampers_Validation_PressureIndependent.txt index 09b8a90a2c..3ca559167a 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Actuators_Dampers_Validation_PressureIndependent.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Actuators_Dampers_Validation_PressureIndependent.txt @@ -1,4 +1,4 @@ -last-generated=2020-05-08 +last-generated=2022-05-23 statistics-initialization= { "nonlinear": "1", @@ -14,6 +14,6 @@ statistics-simulation= time=[0e+00, 1e+00] damPreInd.m_flow=[-1.414213538169861e+00, -1.366260050632731e+00, -1.316561219803994e+00, -1.264911052015923e+00, -1.21106016141469e+00, -1.154700521934728e+00, -1.095445147889819e+00, -1.032795550350886e+00, -9.660917992281991e-01, -8.944272067276875e-01, -8.164966226888848e-01, -7.30296725484291e-01, -6.324554990219046e-01, -5.163977110391046e-01, -3.651483758841661e-01, -3.597653770448517e-07, 1.433221285230399e-03, 2.766554005444454e-03, 4.099886376413164e-03, 5.433221199859362e-03, 6.766553570827867e-03, 8.099888394274061e-03, 9.433221230903854e-03, 1.076655406753171e-02, 1.209988795965727e-02, 1.343322079628706e-02, 1.476655561973326e-02, 1.609988553822907e-02, 1.743322036167082e-02, 1.876655518512034e-02, 2.00998860349243e-02, 5.339145239229923e-02, 8.667754527113278e-02, 1.199527542630557e-01, 1.532124758056448e-01, 1.864524830737959e-01, 2.19669473351605e-01, 2.52861573371046e-01, 2.860279837375365e-01, 3.191696283260547e-01, 3.522884350359351e-01, 3.853851079046224e-01, 4.184595779980294e-01, 4.515117170501294e-01, 4.845417220632041e-01, 5.175495541028765e-01, 5.505350552990923e-01, 5.834984222590895e-01, 6.164395566402229e-01, 6.493584199809629e-01, 6.822550892829895e-01, 7.151295856100812e-01, 7.479819089666847e-01, 7.808119401443629e-01, 8.136196028743945e-01, 8.464052286433706e-01, 8.79168621836981e-01, 9.119098420575839e-01, 9.446288297023241e-01, 9.773255847717179e-01, 1.009999912583407e+00, 1.009999990463257e+00, 1.009999990463257e+00, 1.009999990463257e+00, 1.009999990463257e+00, 1.009999990463257e+00, 1.009999990463257e+00, 1.009999990463257e+00, 1.009999990463257e+00, 1.009999990463257e+00, 1.0099999888738e+00, 1.008666631698608e+00, 1.007333282470703e+00, 1.006000044504801e+00, 1.00466668732961e+00, 1.003333330154419e+00, 1.001999972979228e+00, 1.000666615804036e+00, 9.660916127998698e-01, 8.944273389126498e-01, 8.164967070192855e-01, 7.302967524945593e-01, 6.324554510888218e-01, 5.163975530913794e-01, 3.651478600028096e-01, 1.439040064860064e-06, -3.651480897731634e-01, -5.163977110400461e-01, -6.324555772338143e-01, -7.302968599876231e-01, -8.164968033970923e-01, -8.944269831599433e-01, -9.660916956569877e-01, -1.032795501977992e+00, -1.095445170527584e+00, -1.15470058613821e+00, -1.211060283944817e+00, -1.264910904145102e+00, -1.316561125121374e+00, -1.366260005026669e+00, -1.414213538169861e+00] damExp.m_flow=[-9.375000331601768e-08, -8.749999821829979e-08, -8.125000022600925e-08, -7.500000223371912e-08, -6.874999713600083e-08, -6.250000030786425e-08, -5.624999759870847e-08, -5.000000077056984e-08, -4.37499980614166e-08, -3.750000356157215e-08, -3.125000085242276e-08, -2.499999991962386e-08, -1.874999898682497e-08, -1.249999716584977e-08, -6.250000445566274e-09, -3.725282729659637e-15, 6.250002308207151e-09, 1.249999902849131e-08, 1.874999619286069e-08, 2.50000017822646e-08, 3.124999805845849e-08, 3.750000542420969e-08, 4.374999992405627e-08, 4.999999797660489e-08, 5.625000178965406e-08, 6.249999984220267e-08, 6.875000365525186e-08, 7.499999594729989e-08, 8.124999976034908e-08, 8.750000357339823e-08, 9.374999586544626e-08, 1.269722549047059e-02, 3.472922813256388e-02, 6.603701729444851e-02, 1.050986023328134e-01, 1.512011081483896e-01, 1.943282569010296e-01, 2.418787852109742e-01, 2.839316304897537e-01, 3.191261767896266e-01, 3.503791510594292e-01, 3.811293358768262e-01, 4.139945357243296e-01, 4.485389340132225e-01, 4.837254071551315e-01, 5.177242538192475e-01, 5.488774519284003e-01, 5.799910463906521e-01, 6.121480817542131e-01, 6.454305327673151e-01, 6.795315146446228e-01, 7.140299411289669e-01, 7.483201656600187e-01, 7.805437748605885e-01, 8.118154929132936e-01, 8.432001691236882e-01, 8.751501960229157e-01, 9.077769754012885e-01, 9.410102330957291e-01, 9.74690704941412e-01, 1.008623280561445e+00, 1.008623361587524e+00, 1.008623361587524e+00, 1.008623361587524e+00, 1.008623361587524e+00, 1.008623361587524e+00, 1.008623361587524e+00, 1.008623361587524e+00, 1.008623361587524e+00, 1.008623361587524e+00, 1.008623361632288e+00, 1.0086784375736e+00, 1.010993231315937e+00, 1.016069163202653e+00, 1.021294231762529e+00, 1.023921251296997e+00, 1.021071307716063e+00, 1.009767021740234e+00, 9.632960959307891e-01, 8.918392451727126e-01, 8.141340382265057e-01, 7.28183588961093e-01, 6.306253502977501e-01, 5.149033248913736e-01, 3.640912797295419e-01, 8.059318906961099e-07, -3.640915088351941e-01, -5.149034823829913e-01, -6.306254760775298e-01, -7.281836961429462e-01, -8.141341343257845e-01, -8.918388904489256e-01, -9.632961785481029e-01, -1.029807044432533e+00, -1.092275395476648e+00, -1.151359387972443e+00, -1.207555888120969e+00, -1.26125070255699e+00, -1.312751434926712e+00, -1.362306667492013e+00, -1.410121440887451e+00] -damExpPI.m_flow=[-1.782161547225769e-07, -1.664365638239886e-07, -1.54732048874253e-07, -1.430314845337292e-07, -1.312710924992838e-07, -1.195072636291603e-07, -1.07732431172066e-07, -9.590261420402242e-08, -8.401140192562638e-08, -7.208622748221889e-08, -6.013023502032956e-08, -4.814119165021045e-08, -3.612636622579852e-08, -2.409400460116549e-08, -1.204994487167914e-08, -7.18294197138423e-15, 1.205035080715285e-08, 2.409540973477262e-08, 3.612948013079991e-08, 4.814688312262884e-08, 6.014190388246198e-08, 7.210891867592665e-08, 8.404225724111674e-08, 9.593632414763377e-08, 1.077977379792984e-07, 1.196154073568323e-07, 1.313844363112018e-07, 1.431002817350984e-07, 1.547586223069394e-07, 1.663549892135165e-07, 1.778850138848623e-07, 1.55388716190049e-02, 5.129393929561857e-02, 9.34811949161487e-02, 1.333327008219449e-01, 1.688882312476017e-01, 2.016996131004102e-01, 2.337902482025269e-01, 2.662872828881826e-01, 2.993896186870472e-01, 3.328504362539079e-01, 3.663833261127363e-01, 3.998433491495668e-01, 4.33214879027814e-01, 4.66538496807578e-01, 4.998539487370456e-01, 5.331799109795052e-01, 5.665170590091922e-01, 5.998589158153023e-01, 6.332004348366884e-01, 6.665400862693787e-01, 6.998779495588413e-01, 7.332147995676375e-01, 7.665512323447728e-01, 7.998874068209035e-01, 8.332238395980389e-01, 8.665600339564294e-01, 8.998959898961457e-01, 9.332315882071884e-01, 9.665669480998652e-01, 9.999020496975769e-01, 1.016371717642288e+00, 1.013722780610069e+00, 1.005451914064114e+00, 9.995104025698796e-01, 9.975848791944236e-01, 9.981608362569484e-01, 9.993505459278711e-01, 1.000133752438337e+00, 1.000350952142185e+00, 1.000244259520235e+00, 9.999939198920276e-01, 9.998420479803891e-01, 9.998019337801904e-01, 9.998169541142946e-01, 9.998344779014587e-01, 9.998316168628778e-01, 9.998074769314382e-01, 9.660916127998698e-01, 8.944273389126498e-01, 8.164967070192855e-01, 7.302967524945593e-01, 6.324554510888218e-01, 5.163975530913794e-01, 3.651478600028096e-01, 1.861892965415723e-06, -3.651480897731634e-01, -5.163977110400461e-01, -6.324555772338143e-01, -7.302968599876231e-01, -8.164968033970923e-01, -8.944269831599433e-01, -9.660916956569877e-01, -1.032795501977992e+00, -1.095445170527584e+00, -1.15470058613821e+00, -1.211060283944817e+00, -1.264910904145102e+00, -1.316561125121374e+00, -1.366260005026669e+00, -1.414213538169861e+00] +damExpPI.m_flow=[-1.782161547225769e-07, -1.664365638239886e-07, -1.54732048874253e-07, -1.430314845337292e-07, -1.312710924992838e-07, -1.195072636291603e-07, -1.07732431172066e-07, -9.590261420402242e-08, -8.401140192562638e-08, -7.208622748221889e-08, -6.013023502032956e-08, -4.814119165021045e-08, -3.612636622579852e-08, -2.409400460116549e-08, -1.204994487167914e-08, -7.18294197138423e-15, 1.205035080715285e-08, 2.409540973477262e-08, 3.612948013079991e-08, 4.814688312262884e-08, 6.014190388246198e-08, 7.210891867592665e-08, 8.404225013569362e-08, 9.593632414761895e-08, 1.077977308738711e-07, 1.196153931459776e-07, 1.313844078895601e-07, 1.43100253313389e-07, 1.54758565463529e-07, 1.663549181592429e-07, 1.77884928619734e-07, 1.55388716190049e-02, 5.129393929561857e-02, 9.34811949161487e-02, 1.333327008219449e-01, 1.688882312476017e-01, 2.016996131004102e-01, 2.337902482025269e-01, 2.662872828881826e-01, 2.993896186870472e-01, 3.328504362539079e-01, 3.663833261127363e-01, 3.998433491495668e-01, 4.33214879027814e-01, 4.66538496807578e-01, 4.998539487370456e-01, 5.331799109795052e-01, 5.665170590091922e-01, 5.998589158153023e-01, 6.332004348366884e-01, 6.665400862693787e-01, 6.998779495588413e-01, 7.332147995676375e-01, 7.665512323447728e-01, 7.998874068209035e-01, 8.332238395980389e-01, 8.665600339564294e-01, 8.998959898961457e-01, 9.332315882071884e-01, 9.665669480998652e-01, 9.999020496975769e-01, 1.016371717642288e+00, 1.013722780610069e+00, 1.005451914064114e+00, 9.995104025698796e-01, 9.975848791944236e-01, 9.981608362569484e-01, 9.993505459278711e-01, 1.000133752438337e+00, 1.000350952142185e+00, 1.000244259520235e+00, 9.999939198920276e-01, 9.998420479803891e-01, 9.998019337801904e-01, 9.998169541142946e-01, 9.998344779014587e-01, 9.998316168628778e-01, 9.998074769314382e-01, 9.660916127998698e-01, 8.944273389126498e-01, 8.164967070192855e-01, 7.302967524945593e-01, 6.324554510888218e-01, 5.163975530913794e-01, 3.651478600028096e-01, 1.861892965415723e-06, -3.651480897731634e-01, -5.163977110400461e-01, -6.324555772338143e-01, -7.302968599876231e-01, -8.164968033970923e-01, -8.944269831599433e-01, -9.660916956569877e-01, -1.032795501977992e+00, -1.095445170527584e+00, -1.15470058613821e+00, -1.211060283944817e+00, -1.264910904145102e+00, -1.316561125121374e+00, -1.366260005026669e+00, -1.414213538169861e+00] damPreInd.y=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 3.333332712453096e-02, 6.666669398539116e-02, 9.999995778012476e-02, 1.333333283662886e-01, 1.66666691501876e-01, 1.999999552965519e-01, 2.333333184322195e-01, 2.666666964689417e-01, 3.000000596045027e-01, 3.333333233991964e-01, 3.66666686534846e-01, 4.00000049670407e-01, 4.333333134651894e-01, 4.666666766007505e-01, 5.000000397363115e-01, 5.333333333331676e-01, 5.666666666666548e-01, 6.000000596045382e-01, 6.333332935969982e-01, 6.666666865348816e-01, 7.000000198676465e-01, 7.333334128050563e-01, 7.666667461378212e-01, 7.999999403966342e-01, 8.333332737293992e-01, 8.666666666665721e-01, 8.999999999997866e-01, 9.333333929369833e-01, 9.666667262705297e-01, 9.999999205285612e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] damPreInd.y_actual=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 2.258679218128563e-01, 3.325938239388243e-01, 4.01365059885413e-01, 4.522344571408228e-01, 4.939861780514379e-01, 5.252574825034978e-01, 5.565583560099026e-01, 5.851070409733867e-01, 6.096320465269051e-01, 6.295751818216656e-01, 6.478824084952857e-01, 6.662271858714715e-01, 6.843463650434221e-01, 7.01749686433124e-01, 7.176905446640596e-01, 7.31633532653328e-01, 7.449951783760124e-01, 7.582734369475967e-01, 7.715041511646318e-01, 7.845727801322937e-01, 7.973395705510848e-01, 8.096186143927417e-01, 8.2081720325464e-01, 8.313953056305607e-01, 8.41746854411918e-01, 8.520326589882896e-01, 8.622930123137745e-01, 8.725097349185628e-01, 8.826399709279198e-01, 8.926343681133374e-01, 8.92634391784668e-01, 8.92634391784668e-01, 8.92634391784668e-01, 8.92634391784668e-01, 8.92634391784668e-01, 8.92634391784668e-01, 8.92634391784668e-01, 8.92634391784668e-01, 8.92634391784668e-01, 8.926344035777014e-01, 9.028672810370334e-01, 9.147021407049364e-01, 9.284967504489832e-01, 9.437140077073107e-01, 9.5979905128479e-01, 9.761786020254346e-01, 9.922607839319607e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.989988717878641e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_BaseClasses_Validation_ActuatorFilter.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_BaseClasses_Validation_ActuatorFilter.txt new file mode 100644 index 0000000000..1016b25e3a --- /dev/null +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_BaseClasses_Validation_ActuatorFilter.txt @@ -0,0 +1,13 @@ +last-generated=2021-07-22 +statistics-simulation= +{ + "linear": " ", + "nonlinear": " ", + "number of continuous time states": "8", + "numerical Jacobians": "0" +} +time=[0e+00, 2e+01] +act_1.y=[0e+00, 1.08905953335442e-02, 3.935595127533488e-02, 8.011301075108986e-02, 1.290338157796554e-01, 1.829250752925873e-01, 2.393430484656873e-01, 2.964440651981879e-01, 3.528632753031495e-01, 4.076145120680391e-01, 4.600092768669128e-01, 5.095919851348786e-01, 5.560869358929437e-01, 5.993560153534796e-01, 6.393649072805034e-01, 6.761561632156372e-01, 7.098269981257272e-01, 7.405131914473623e-01, 7.683766013368482e-01, 7.935943064001432e-01, 8.163508176803589e-01, 8.368321244215796e-01, 8.552217995661726e-01, 8.716977908150411e-01, 8.864299520741824e-01, 8.995791077613831e-01, 9.112958416174692e-01, 9.217201423935489e-01, 9.309812229234961e-01, 9.391978308431632e-01, 9.464787840843201e-01, 9.529232439833831e-01, 9.586212609197819e-01, 9.636542223294974e-01, 9.680955369747115e-01, 9.720112681388855e-01, 9.754607111870002e-01, 9.784969077669232e-01, 9.811674368238539e-01, 9.835145452240661e-01, 9.855760931968689e-01, 9.873855129924907e-01, 9.889728454888909e-01, 9.903643106097182e-01, 9.915837038459462e-01, 9.926514625549316e-01, 9.935863026258297e-01, 9.94404198177905e-01, 9.951195107890941e-01, 9.957448238450292e-01, 9.962912797927856e-01, 9.967684749980781e-01, 9.971851713826261e-01, 9.975487583276383e-01, 9.978660342215446e-01, 9.981427192687988e-01, 9.983839394779468e-01, 9.985942248218865e-01, 9.987774488001829e-01, 9.989370106212617e-01, 9.990760087966919e-01, 9.99197006331599e-01, 9.993022682130006e-01, 9.99393880202433e-01, 9.994735717057209e-01, 9.995428919792175e-01, 9.996031523279498e-01, 9.996554852452847e-01, 9.997009634153072e-01, 9.99740421736476e-01, 9.997747540473938e-01, 9.998043775819951e-01, 9.998301268078649e-01, 9.998525976731116e-01, 9.998719096010404e-01, 9.998887777328491e-01, 9.999034404882536e-01, 9.999161958916147e-01, 9.999272227088341e-01, 9.999368786726563e-01, 9.999452829360962e-01, 9.999525546766114e-01, 9.999589324105498e-01, 9.999644160174059e-01, 9.999691844157037e-01, 9.999732971191406e-01, 9.999768733853219e-01, 9.999797940305369e-01, 9.999822974159543e-01, 9.999844431945347e-01, 9.999862909317017e-01, 9.999879598549343e-01, 9.999891519569246e-01, 9.999899864185409e-01, 9.999906420719071e-01, 9.999911189079285e-01, 9.999917149521025e-01, 9.999924898164636e-01, 9.999928474420585e-01, 9.999929666519165e-01, 9.999930858612061e-01] +act_2.y=[0e+00, 1.08905956315674e+00, 3.935595172236987e+00, 8.011301462539052e+00, 1.290338199519794e+01, 1.829250717163086e+01, 2.393430383329225e+01, 2.964440604298306e+01, 3.52863305105452e+01, 4.076144918024798e+01, 4.600092697143555e+01, 5.095919684456094e+01, 5.560869001302478e+01, 5.993560225060824e+01, 6.39364900127966e+01, 6.761561584472656e+01, 7.098269575945886e+01, 7.405132152892088e+01, 7.683766299469526e+01, 7.935943660047141e+01, 8.163507843017578e+01, 8.368321411108802e+01, 8.552217781085631e+01, 8.716977765099435e+01, 8.864299639950204e+01, 8.995790863037109e+01, 9.112957867812756e+01, 9.217201185518161e+01, 9.309812205392194e+01, 9.391978379956637e+01, 9.464788055419922e+01, 9.529232845144051e+01, 9.586212132360718e+01, 9.636541770300413e+01, 9.68095546511682e+01, 9.720112609863281e+01, 9.754606658875156e+01, 9.784969316087869e+01, 9.811674511289687e+01, 9.835145547609116e+01, 9.855760955810547e+01, 9.873854843822498e+01, 9.889728574096834e+01, 9.903643010728386e+01, 9.915837086144883e+01, 9.926515197753906e+01, 9.935863503094888e+01, 9.944042220195129e+01, 9.951195513200933e+01, 9.957448572234711e+01, 9.962912750244141e+01, 9.967684940714393e+01, 9.971851356196574e+01, 9.975487511747627e+01, 9.978660580633002e+01, 9.981427001953125e+01, 9.983839418621211e+01, 9.985942081325632e+01, 9.987774654892561e+01, 9.989369963162606e+01, 9.990760040283203e+01, 9.991970063314513e+01, 9.993022920549267e+01, 9.993939207332731e+01, 9.994735717056756e+01, 9.995429229736328e+01, 9.996031189495989e+01, 9.996555329285913e+01, 9.997009276528841e+01, 9.997404479623947e+01, 9.997747802734375e+01, 9.998043823504122e+01, 9.998301697228453e+01, 9.998526000576385e+01, 9.998719024487218e+01, 9.998887634277344e+01, 9.999034881719126e+01, 9.99916152976657e+01, 9.999272155565268e+01, 9.999369048984954e+01, 9.999452972412109e+01, 9.999525451398227e+01, 9.999589538683355e+01, 9.999644470112983e+01, 9.999691772635556e+01, 9.999732971191406e+01, 9.999768829214739e+01, 9.999797821095852e+01, 9.999822998003221e+01, 9.999844360424321e+01, 9.999862670898438e+01, 9.9998794555082e+01, 9.999891662619484e+01, 9.999900054917089e+01, 9.999906158461818e+01, 9.999911499023438e+01, 9.999916839585057e+01, 9.999925231948146e+01, 9.999928283691406e+01, 9.999929809570312e+01, 9.999930572509766e+01] +act_y_start1.y=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] +act_y_start05.y=[5e-01, 5.719540109104975e-01, 6.33553264801758e-01, 6.862878144372604e-01, 7.314335082540366e-01, 7.700823545455933e-01, 8.031692430823093e-01, 8.314947516655034e-01, 8.557439419310156e-01, 8.765035316690069e-01, 8.942756652832031e-01, 9.094902242937163e-01, 9.225152672632085e-01, 9.33665936063879e-01, 9.432119151801308e-01, 9.513840675354004e-01, 9.583801611499453e-01, 9.643695327648764e-01, 9.694969676335918e-01, 9.738865504252923e-01, 9.776444435119629e-01, 9.808615474015054e-01, 9.836156951972713e-01, 9.859735379914137e-01, 9.879920464562115e-01, 9.897200465202332e-01, 9.911993158780786e-01, 9.924656743101531e-01, 9.935497646267213e-01, 9.944778672490876e-01, 9.952724575996399e-01, 9.959527260010651e-01, 9.965351221337924e-01, 9.970337154643973e-01, 9.974605437270722e-01, 9.978259205818176e-01, 9.981387856336712e-01, 9.984065889112798e-01, 9.986358881991465e-01, 9.988321064146246e-01, 9.990001320838928e-01, 9.991438390072177e-01, 9.992669226870705e-01, 9.993721840878604e-01, 9.994623660234082e-01, 9.995396137237549e-01, 9.996057749368674e-01, 9.996624589949762e-01, 9.997109769905136e-01, 9.997525810823049e-01, 9.997881650924683e-01, 9.998186230923807e-01, 9.998446703411901e-01, 9.998670219971473e-01, 9.998860955067812e-01, 9.999024868011475e-01, 9.99916493904891e-01, 9.999284744473016e-01, 9.999387860116258e-01, 9.999476075092844e-01, 9.999551177024841e-01, 9.999615550098042e-01, 9.999670982457474e-01, 9.999718069944947e-01, 9.999758601151711e-01, 9.999793171882629e-01, 9.999822974230597e-01, 9.999848604247745e-01, 9.999870061840284e-01, 9.999889135343665e-01, 9.999904632568359e-01, 9.999918341648026e-01, 9.999930262582666e-01, 9.999939799291724e-01, 9.999948143953361e-01, 9.999955892562866e-01, 9.999961853033028e-01, 9.999967217456742e-01, 9.999971985805587e-01, 9.9999755620928e-01, 9.999979138374329e-01, 9.999982118595199e-01, 9.999984502798043e-01, 9.999986886972465e-01, 9.999988675128861e-01, 9.999990463256836e-01, 9.999991655349731e-01, 9.999992847442627e-01, 9.999994039529838e-01, 9.99999463558197e-01, 9.999995231628418e-01, 9.999995827674866e-01, 9.999996423721313e-01, 9.999996423721313e-01, 9.999996423721313e-01, 9.999996423721313e-01, 9.999996423721313e-01, 9.999997019767761e-01, 9.999997019767761e-01, 9.999997019767761e-01, 9.999997019767761e-01] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_BoilerCHP_Examples_CHPSystemNoControl.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_BoilerCHP_Examples_CHPSystemNoControl.txt new file mode 100644 index 0000000000..0a3c56e0b0 --- /dev/null +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_BoilerCHP_Examples_CHPSystemNoControl.txt @@ -0,0 +1,13 @@ +last-generated=2021-06-08 +statistics-simulation= +{ + "linear": "0", + "nonlinear": " ", + "number of continuous time states": "3", + "numerical Jacobians": "0" +} +time=[0e+00, 3e+02] +TSet.y=[0e+00, 0e+00, 0e+00, 0e+00, 9.999999776482582e-03, 2.500000037252903e-02, 3.999999910593033e-02, 5.49999997019768e-02, 7.000000029802322e-02, 8.500000089406967e-02, 1.000000014901161e-01, 1.150000020861626e-01, 1.299999952316284e-01, 1.449999958276749e-01, 1.599999964237213e-01, 1.749999970197678e-01, 1.899999976158142e-01, 2.049999982118607e-01, 2.199999988079071e-01, 2.349999994039536e-01, 2.5e-01, 2.649999856948853e-01, 2.800000011920929e-01, 2.949999868869781e-01, 3.100000023841858e-01, 3.24999988079071e-01, 3.400000035762787e-01, 3.549999892711639e-01, 3.700000047683716e-01, 3.849999904632568e-01, 4.000000059604645e-01, 4.149999916553497e-01, 4.300000071525574e-01, 4.449999928474426e-01, 4.600000083446503e-01, 4.749999940395355e-01, 4.900000095367432e-01, 5.049999952316284e-01, 5.199999809265137e-01, 5.350000262260437e-01, 5.50000011920929e-01, 5.649999976158141e-01, 5.799999833106995e-01, 5.950000286102295e-01, 6.100000143051147e-01, 6.25e-01, 6.399999856948853e-01, 6.549999713897705e-01, 6.700000166893005e-01, 6.850000023841858e-01, 6.99999988079071e-01, 7.149999737739563e-01, 7.300000190734863e-01, 7.450000047683716e-01, 7.599999904632568e-01, 7.749999761581421e-01, 7.900000214576722e-01, 8.050000071525573e-01, 8.199999928474426e-01, 8.349999785423279e-01, 8.500000238418579e-01, 8.650000095367432e-01, 8.799999952316284e-01, 8.949999809265137e-01, 9.100000262260437e-01, 9.25000011920929e-01, 9.399999976158142e-01, 9.549999833106995e-01, 9.700000286102296e-01, 9.850000143051146e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] +combinedHeatPower.electricalPower=[0e+00, 0e+00, 0e+00, 0e+00, 5e+02, 1.25e+03, 2e+03, 2.750000000000001e+03, 3.5e+03, 4.25e+03, 5e+03, 5.75e+03, 6.5e+03, 7.25e+03, 8.000000000000002e+03, 8.75e+03, 9.5e+03, 1.025e+04, 1.1e+04, 1.175e+04, 1.25e+04, 1.325e+04, 1.4e+04, 1.475e+04, 1.55e+04, 1.625e+04, 1.7e+04, 1.775e+04, 1.85e+04, 1.925e+04, 2e+04, 2.075e+04, 2.15e+04, 2.225e+04, 2.3e+04, 2.375e+04, 2.45e+04, 2.526e+04, 2.604e+04, 2.682e+04, 2.76e+04, 2.838e+04, 2.916e+04, 2.994e+04, 3.072e+04, 3.15e+04, 3.228e+04, 3.306e+04, 3.384e+04, 3.462e+04, 3.54e+04, 3.618e+04, 3.696e+04, 3.774e+04, 3.848e+04, 3.92e+04, 3.992000000000001e+04, 4.063999999999999e+04, 4.136e+04, 4.208e+04, 4.28e+04, 4.352e+04, 4.424e+04, 4.496e+04, 4.568e+04, 4.64e+04, 4.712e+04, 4.784e+04, 4.856000000000001e+04, 4.927999999999999e+04, 5e+04, 5e+04, 5e+04, 5e+04, 5e+04, 5e+04, 5e+04, 5e+04, 5e+04, 5e+04, 5e+04, 5e+04, 5e+04, 5e+04, 5e+04, 5e+04, 5e+04, 5e+04, 5e+04, 5e+04, 5e+04, 5e+04, 5e+04, 5e+04, 5e+04, 5e+04, 5e+04, 5e+04, 5e+04, 5e+04, 5e+04] +combinedHeatPower.thermalPower=[0e+00, 0e+00, 0e+00, 0e+00, 1.04e+03, 2.6e+03, 4.16e+03, 5.720000000000002e+03, 7.28e+03, 8.84e+03, 1.04e+04, 1.196e+04, 1.352e+04, 1.508e+04, 1.664e+04, 1.82e+04, 1.976e+04, 2.132e+04, 2.288e+04, 2.444e+04, 2.6e+04, 2.756e+04, 2.912e+04, 3.068e+04, 3.224e+04, 3.38e+04, 3.536e+04, 3.692e+04, 3.848000000000001e+04, 4.004e+04, 4.16e+04, 4.316e+04, 4.472e+04, 4.628e+04, 4.784000000000001e+04, 4.94e+04, 5.096e+04, 5.246e+04, 5.384e+04, 5.522e+04, 5.66e+04, 5.797999999999999e+04, 5.936e+04, 6.074e+04, 6.212e+04, 6.35e+04, 6.488e+04, 6.626e+04, 6.764e+04, 6.902e+04, 7.04e+04, 7.178e+04, 7.316e+04, 7.454e+04, 7.528e+04, 7.57e+04, 7.612e+04, 7.654e+04, 7.696e+04, 7.738e+04, 7.78e+04, 7.822e+04, 7.864e+04, 7.906e+04, 7.948e+04, 7.99e+04, 8.032e+04, 8.074e+04, 8.116e+04, 8.158e+04, 8.2e+04, 8.2e+04, 8.2e+04, 8.2e+04, 8.2e+04, 8.2e+04, 8.2e+04, 8.2e+04, 8.2e+04, 8.2e+04, 8.2e+04, 8.2e+04, 8.2e+04, 8.2e+04, 8.2e+04, 8.2e+04, 8.2e+04, 8.2e+04, 8.2e+04, 8.2e+04, 8.2e+04, 8.2e+04, 8.2e+04, 8.2e+04, 8.2e+04, 8.2e+04, 8.2e+04, 8.2e+04, 8.2e+04, 8.2e+04, 8.2e+04] +combinedHeatPower.fuelInput=[0e+00, 0e+00, 0e+00, 0e+00, 1.76e+03, 4.4e+03, 7.04e+03, 9.680000000000004e+03, 1.232e+04, 1.496e+04, 1.76e+04, 2.024e+04, 2.288e+04, 2.552e+04, 2.816000000000001e+04, 3.08e+04, 3.344e+04, 3.608000000000001e+04, 3.872e+04, 4.136e+04, 4.4e+04, 4.664e+04, 4.928e+04, 5.192e+04, 5.456e+04, 5.72e+04, 5.984e+04, 6.248e+04, 6.512000000000001e+04, 6.776e+04, 7.04e+04, 7.304e+04, 7.568e+04, 7.832e+04, 8.096000000000001e+04, 8.36e+04, 8.624e+04, 8.88e+04, 9.12e+04, 9.36e+04, 9.6e+04, 9.839999999999999e+04, 1.008e+05, 1.032e+05, 1.056e+05, 1.08e+05, 1.104e+05, 1.128e+05, 1.152e+05, 1.176e+05, 1.2e+05, 1.224e+05, 1.248e+05, 1.272e+05, 1.2888e+05, 1.302e+05, 1.3152e+05, 1.3284e+05, 1.3416e+05, 1.3548e+05, 1.368e+05, 1.3812e+05, 1.3944e+05, 1.4076e+05, 1.4208e+05, 1.434e+05, 1.4472e+05, 1.4604e+05, 1.4736e+05, 1.4868e+05, 1.5e+05, 1.5e+05, 1.5e+05, 1.5e+05, 1.5e+05, 1.5e+05, 1.5e+05, 1.5e+05, 1.5e+05, 1.5e+05, 1.5e+05, 1.5e+05, 1.5e+05, 1.5e+05, 1.5e+05, 1.5e+05, 1.5e+05, 1.5e+05, 1.5e+05, 1.5e+05, 1.5e+05, 1.5e+05, 1.5e+05, 1.5e+05, 1.5e+05, 1.5e+05, 1.5e+05, 1.5e+05, 1.5e+05, 1.5e+05, 1.5e+05] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Chillers_Examples_Chiller.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Chillers_Examples_Chiller.txt index 1e88a77cb4..f94e63b87d 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Chillers_Examples_Chiller.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Chillers_Examples_Chiller.txt @@ -1,4 +1,4 @@ -last-generated=2019-11-26 +last-generated=2022-05-23 statistics-initialization= { "nonlinear": "1", @@ -11,11 +11,11 @@ statistics-simulation= "number of continuous time states": "11", "numerical Jacobians": "0" } -chiller.sigBus.TEvaInMea=[3.031499938964844e+02, 2.931605224609375e+02, 2.931605834960938e+02, 2.931684265136719e+02, 2.931761779785156e+02, 2.931836853027344e+02, 2.9319091796875e+02, 2.931978759765625e+02, 2.9320458984375e+02, 2.932110290527344e+02, 2.932172241210938e+02, 2.932231750488281e+02, 2.932288818359375e+02, 2.932343444824219e+02, 2.932395935058594e+02, 2.932445983886719e+02, 2.932493896484375e+02, 2.932539672851562e+02, 2.932583618164062e+02, 2.932625427246094e+02, 2.932665405273438e+02, 2.932703552246094e+02, 2.932739868164062e+02, 2.932774658203125e+02, 2.9328076171875e+02, 2.93283935546875e+02, 2.932869567871094e+02, 2.932898254394531e+02, 2.932925720214844e+02, 2.932952270507812e+02, 2.932977294921875e+02, 2.933001403808594e+02, 2.933024597167969e+02, 2.933046875e+02, 2.933067932128906e+02, 2.93308837890625e+02, 2.93310791015625e+02, 2.933126525878906e+02, 2.93314453125e+02, 2.933161926269531e+02, 2.933178405761719e+02, 2.933194274902344e+02, 2.933209838867188e+02, 2.933224792480469e+02, 2.933239135742188e+02, 2.933252868652344e+02, 2.933266296386719e+02, 2.933279113769531e+02, 2.933291625976562e+02, 2.933303833007812e+02, 2.9333154296875e+02, 2.933327026367188e+02, 2.933339538574219e+02, 2.933353271484375e+02, 2.933368225097656e+02, 2.933384399414062e+02, 2.933401794433594e+02, 2.93342041015625e+02, 2.933440551757812e+02, 2.933461608886719e+02, 2.93348388671875e+02, 2.933507385253906e+02, 2.933531799316406e+02, 2.933557739257812e+02, 2.933584289550781e+02, 2.933612060546875e+02, 2.933641052246094e+02, 2.933670654296875e+02, 2.933701477050781e+02, 2.93373291015625e+02, 2.933765258789062e+02, 2.933798522949219e+02, 2.933832702636719e+02, 2.933867492675781e+02, 2.933902893066406e+02, 2.933939208984375e+02, 2.933975830078125e+02, 2.934013061523438e+02, 2.934051208496094e+02, 2.93408935546875e+02, 2.93412841796875e+02, 2.93416748046875e+02, 2.934207153320312e+02, 2.934247131347656e+02, 2.934287719726562e+02, 2.934328308105469e+02, 2.934369201660156e+02, 2.934410095214844e+02, 2.934451293945312e+02, 2.934492797851562e+02, 2.934534301757812e+02, 2.934575805664062e+02, 2.934617614746094e+02, 2.934659423828125e+02, 2.934700927734375e+02, 2.934742736816406e+02, 2.934784545898438e+02, 2.934826354980469e+02, 2.934867858886719e+02, 2.934909362792969e+02, 2.934950866699219e+02] -chiller.sigBus.TEvaOutMea=[3.031499938964844e+02, 3.028995666503906e+02, 3.026094970703125e+02, 3.023240051269531e+02, 3.020430297851562e+02, 3.017664794921875e+02, 3.014942932128906e+02, 3.012264099121094e+02, 3.009627685546875e+02, 3.007032775878906e+02, 3.004478759765625e+02, 3.001965026855469e+02, 2.999490966796875e+02, 2.9970556640625e+02, 2.994659118652344e+02, 2.992310791015625e+02, 2.990021362304688e+02, 2.987790222167969e+02, 2.985615539550781e+02, 2.983496398925781e+02, 2.981431579589844e+02, 2.979420166015625e+02, 2.977460632324219e+02, 2.9755517578125e+02, 2.973692932128906e+02, 2.971882934570312e+02, 2.970124816894531e+02, 2.968430480957031e+02, 2.966810607910156e+02, 2.965235900878906e+02, 2.963683776855469e+02, 2.962154235839844e+02, 2.960646362304688e+02, 2.959160461425781e+02, 2.957695617675781e+02, 2.956252136230469e+02, 2.9548291015625e+02, 2.953426513671875e+02, 2.952044372558594e+02, 2.950681762695312e+02, 2.949338684082031e+02, 2.94801513671875e+02, 2.946710205078125e+02, 2.945424194335938e+02, 2.944156799316406e+02, 2.942907409667969e+02, 2.941675720214844e+02, 2.940461730957031e+02, 2.939265441894531e+02, 2.9380859375e+02, 2.936923522949219e+02, 2.937635803222656e+02, 2.938630981445312e+02, 2.939621887207031e+02, 2.940605773925781e+02, 2.941581420898438e+02, 2.942548522949219e+02, 2.943506469726562e+02, 2.94445556640625e+02, 2.945395812988281e+02, 2.946327209472656e+02, 2.947250061035156e+02, 2.948164672851562e+02, 2.949070434570312e+02, 2.949967956542969e+02, 2.950857238769531e+02, 2.951738586425781e+02, 2.952611694335938e+02, 2.9534765625e+02, 2.954333801269531e+02, 2.95518310546875e+02, 2.956024780273438e+02, 2.956858825683594e+02, 2.957685241699219e+02, 2.958504028320312e+02, 2.959315795898438e+02, 2.960119934082031e+02, 2.960916748046875e+02, 2.96170654296875e+02, 2.962489318847656e+02, 2.963265075683594e+02, 2.964033813476562e+02, 2.964795837402344e+02, 2.965550842285156e+02, 2.966299133300781e+02, 2.967040710449219e+02, 2.96777587890625e+02, 2.968504333496094e+02, 2.969226379394531e+02, 2.969942016601562e+02, 2.970651550292969e+02, 2.971354370117188e+02, 2.972051391601562e+02, 2.972742004394531e+02, 2.973426513671875e+02, 2.974105224609375e+02, 2.97477783203125e+02, 2.9754443359375e+02, 2.976105041503906e+02, 2.97676025390625e+02, 2.977409362792969e+02] -chiller.sigBus.TConOutMea=[2.931499938964844e+02, 2.855783081054688e+02, 2.824364013671875e+02, 2.811531982421875e+02, 2.80622802734375e+02, 2.803974609375e+02, 2.802958068847656e+02, 2.80244384765625e+02, 2.802134704589844e+02, 2.801910705566406e+02, 2.801722106933594e+02, 2.801549682617188e+02, 2.801385192871094e+02, 2.8012255859375e+02, 2.801144714355469e+02, 2.808053283691406e+02, 2.821346435546875e+02, 2.837231750488281e+02, 2.854172973632812e+02, 2.8715478515625e+02, 2.889104919433594e+02, 2.906740417480469e+02, 2.924414367675781e+02, 2.942109069824219e+02, 2.95981689453125e+02, 2.977535400390625e+02, 2.995243835449219e+02, 3.012873229980469e+02, 3.030058898925781e+02, 3.039564819335938e+02, 3.043377380371094e+02, 3.044885559082031e+02, 3.045461120605469e+02, 3.045659790039062e+02, 3.045706176757812e+02, 3.04569091796875e+02, 3.045651550292969e+02, 3.045603332519531e+02, 3.045551452636719e+02, 3.045498657226562e+02, 3.045446166992188e+02, 3.045393981933594e+02, 3.045342407226562e+02, 3.045291442871094e+02, 3.045241394042969e+02, 3.045191955566406e+02, 3.045143127441406e+02, 3.04509521484375e+02, 3.045047912597656e+02, 3.045001220703125e+02, 3.044955444335938e+02, 3.028396911621094e+02, 3.021511840820312e+02, 3.018709106445312e+02, 3.017568054199219e+02, 3.017103271484375e+02, 3.016913452148438e+02, 3.0168359375e+02, 3.016803894042969e+02, 3.016790771484375e+02, 3.016784973144531e+02, 3.016781921386719e+02, 3.016780395507812e+02, 3.016779174804688e+02, 3.016778259277344e+02, 3.01677734375e+02, 3.016776428222656e+02, 3.016775512695312e+02, 3.016774597167969e+02, 3.016773681640625e+02, 3.016772766113281e+02, 3.016771850585938e+02, 3.016770629882812e+02, 3.016769714355469e+02, 3.016768493652344e+02, 3.016767272949219e+02, 3.016766357421875e+02, 3.01676513671875e+02, 3.016763916015625e+02, 3.0167626953125e+02, 3.016761474609375e+02, 3.01676025390625e+02, 3.016759033203125e+02, 3.0167578125e+02, 3.016756591796875e+02, 3.01675537109375e+02, 3.016754150390625e+02, 3.0167529296875e+02, 3.016751403808594e+02, 3.016750183105469e+02, 3.016748962402344e+02, 3.016747741699219e+02, 3.016746520996094e+02, 3.016744995117188e+02, 3.016743774414062e+02, 3.016742553710938e+02, 3.016741027832031e+02, 3.016739807128906e+02, 3.016738586425781e+02, 3.016737365722656e+02, 3.01673583984375e+02] -chiller.sigBus.TConInMea=[2.931499938964844e+02, 2.78e+02, 2.78e+02, 2.78e+02, 2.78e+02, 2.78e+02, 2.78e+02, 2.78e+02, 2.78e+02, 2.78e+02, 2.78e+02, 2.78e+02, 2.78e+02, 2.78e+02, 2.781750183105469e+02, 2.799750061035156e+02, 2.817749938964844e+02, 2.835750122070312e+02, 2.85375e+02, 2.871749877929688e+02, 2.889750061035156e+02, 2.907749938964844e+02, 2.925749816894531e+02, 2.94375e+02, 2.961749877929688e+02, 2.979750061035156e+02, 2.997749938964844e+02, 3.015749816894531e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02] time=[0e+00, 3.6e+03] -chiller.innerCycle.QCon=[8.7290908203125e+03, 9.6593828125e+03, 9.581953125e+03, 9.50574609375e+03, 9.4307421875e+03, 9.356923828125e+03, 9.2842705078125e+03, 9.212763671875e+03, 9.1423857421875e+03, 9.0731181640625e+03, 9.004943359375e+03, 8.937841796875e+03, 8.871798828125e+03, 8.8067958984375e+03, 8.7337587890625e+03, 8.5796923828125e+03, 8.43034375e+03, 8.28556640625e+03, 8.1452109375e+03, 8.00913134765625e+03, 7.8771865234375e+03, 7.74923876953125e+03, 7.62515576171875e+03, 7.50480712890625e+03, 7.3880673828125e+03, 7.27481298828125e+03, 7.13802587890625e+03, 6.917018554687499e+03, 6.72255859375e+03, 6.69691796875e+03, 6.6716484375e+03, 6.6467421875e+03, 6.62219384765625e+03, 6.59799853515625e+03, 6.57415087890625e+03, 6.5506455078125e+03, 6.5274775390625e+03, 6.504642578125e+03, 6.48213525390625e+03, 6.45995068359375e+03, 6.43808447265625e+03, 6.41653173828125e+03, 6.3952880859375e+03, 6.37434912109375e+03, 6.35371044921875e+03, 6.33336767578125e+03, 6.31331640625e+03, 6.293552734375e+03, 6.27407177734375e+03, 6.2548701171875e+03, 6.235943359375e+03, -5.50105078125e+03, -5.51781201171875e+03, -5.52474658203125e+03, -5.52769140625e+03, -5.52902294921875e+03, -5.52970703125e+03, -5.53013720703125e+03, -5.53047265625e+03, -5.530779296875e+03, -5.53108349609375e+03, -5.53139501953125e+03, -5.53171826171875e+03, -5.5320546875e+03, -5.53240478515625e+03, -5.532767578125e+03, -5.5331435546875e+03, -5.5335322265625e+03, -5.5339326171875e+03, -5.53434521484375e+03, -5.53476904296875e+03, -5.535203125e+03, -5.53564794921875e+03, -5.53610205078125e+03, -5.53656591796875e+03, -5.53703759765625e+03, -5.53751806640625e+03, -5.538005859375e+03, -5.5385009765625e+03, -5.53900244140625e+03, -5.539509765625e+03, -5.54002294921875e+03, -5.540541015625e+03, -5.54106396484375e+03, -5.5415908203125e+03, -5.54212109375e+03, -5.54265478515625e+03, -5.54319140625e+03, -5.54373046875e+03, -5.54427099609375e+03, -5.5448134765625e+03, -5.54535693359375e+03, -5.5459013671875e+03, -5.54644677734375e+03, -5.5469921875e+03, -5.54753759765625e+03, -5.54808203125e+03, -5.548626953125e+03, -5.54917138671875e+03, -5.54971435546875e+03, -5.55025634765625e+03] -chiller.innerCycle.QEva=[-8.248181640625e+03, -9.1783369140625e+03, -9.0975576171875e+03, -9.0180546875e+03, -8.939806640625e+03, -8.862794921875e+03, -8.787e+03, -8.712400390625e+03, -8.638978515625e+03, -8.56671484375e+03, -8.4955908203125e+03, -8.425587890625e+03, -8.3566884765625e+03, -8.2888740234375e+03, -8.211865234375e+03, -8.0418603515625e+03, -7.87514501953125e+03, -7.7116279296875e+03, -7.551212890625e+03, -7.3938076171875e+03, -7.2393212890625e+03, -7.08766552734375e+03, -6.93875537109375e+03, -6.7925078125e+03, -6.648841796875e+03, -6.50767822265625e+03, -6.31227685546875e+03, -6.050713867187499e+03, -5.82649609375e+03, -5.79230126953125e+03, -5.7586015625e+03, -5.72538623046875e+03, -5.6926484375e+03, -5.66038134765625e+03, -5.62857763671875e+03, -5.59723046875e+03, -5.56633349609375e+03, -5.53588037109375e+03, -5.5058642578125e+03, -5.47627880859375e+03, -5.44711767578125e+03, -5.418375e+03, -5.39004443359375e+03, -5.36211962890625e+03, -5.334595703125e+03, -5.30746630859375e+03, -5.2807255859375e+03, -5.2543681640625e+03, -5.22838818359375e+03, -5.20278076171875e+03, -5.17753955078125e+03, 4.80481884765625e+03, 4.8388125e+03, 4.85276708984375e+03, 4.85857470703125e+03, 4.86107861328125e+03, 4.8622470703125e+03, 4.8628818359375e+03, 4.86330859375e+03, 4.86366015625e+03, 4.8639912109375e+03, 4.86432373046875e+03, 4.8646650390625e+03, 4.8650185546875e+03, 4.86538623046875e+03, 4.86576708984375e+03, 4.86616162109375e+03, 4.86656884765625e+03, 4.8669892578125e+03, 4.867421875e+03, 4.8678662109375e+03, 4.868322265625e+03, 4.86878857421875e+03, 4.86926513671875e+03, 4.86975146484375e+03, 4.87024658203125e+03, 4.87075048828125e+03, 4.87126220703125e+03, 4.87178173828125e+03, 4.8723076171875e+03, 4.87284033203125e+03, 4.87337841796875e+03, 4.87392236328125e+03, 4.874470703125e+03, 4.8750234375e+03, 4.875580078125e+03, 4.8761396484375e+03, 4.87670263671875e+03, 4.87726806640625e+03, 4.8778359375e+03, 4.87840478515625e+03, 4.878974609375e+03, 4.8795458984375e+03, 4.8801181640625e+03, 4.8806904296875e+03, 4.8812626953125e+03, 4.88183447265625e+03, 4.88240576171875e+03, 4.88297705078125e+03, 4.883546875e+03, 4.884115234375e+03] -chiller.innerCycle.Pel=[4.809090881347656e+02, 4.810460815429688e+02, 4.843950500488281e+02, 4.876911315917969e+02, 4.909351806640625e+02, 4.941279602050781e+02, 4.972703247070312e+02, 5.003630981445312e+02, 5.034070739746094e+02, 5.064030151367188e+02, 5.093517150878906e+02, 5.122539672851562e+02, 5.151104125976562e+02, 5.179219360351562e+02, 5.218933715820312e+02, 5.3783203125e+02, 5.5519921875e+02, 5.739391479492188e+02, 5.939979858398438e+02, 6.153235473632812e+02, 6.378650512695312e+02, 6.615732421875e+02, 6.864002075195312e+02, 7.122993774414062e+02, 7.392255249023438e+02, 7.671346435546875e+02, 8.257489624023438e+02, 8.663049926757814e+02, 8.960625e+02, 9.046165771484375e+02, 9.130468139648438e+02, 9.213558349609375e+02, 9.2954541015625e+02, 9.376173095703125e+02, 9.455732421875e+02, 9.534148559570312e+02, 9.611439208984375e+02, 9.687620239257812e+02, 9.762708129882812e+02, 9.836718139648438e+02, 9.909666748046875e+02, 9.981568603515625e+02, 1.005243957519531e+03, 1.012229431152344e+03, 1.01911474609375e+03, 1.0259013671875e+03, 1.032590698242188e+03, 1.039184204101562e+03, 1.045683349609375e+03, 1.052089233398438e+03, 1.058403442382812e+03, 6.9623193359375e+02, 6.789993896484375e+02, 6.71979736328125e+02, 6.691168823242188e+02, 6.679443359375e+02, 6.674598999023438e+02, 6.672552490234375e+02, 6.67164306640625e+02, 6.671192016601562e+02, 6.67091796875e+02, 6.670712890625e+02, 6.670533447265625e+02, 6.670359497070312e+02, 6.67018310546875e+02, 6.670003662109375e+02, 6.669819946289062e+02, 6.669630126953125e+02, 6.669434204101562e+02, 6.669232788085938e+02, 6.669025268554688e+02, 6.668811645507812e+02, 6.668593139648438e+02, 6.668369750976562e+02, 6.66814208984375e+02, 6.66791015625e+02, 6.667673950195312e+02, 6.667434692382812e+02, 6.667191162109375e+02, 6.666944580078125e+02, 6.666695556640625e+02, 6.666443481445312e+02, 6.66618896484375e+02, 6.665932006835938e+02, 6.665672607421875e+02, 6.665411987304688e+02, 6.665149536132812e+02, 6.664885864257812e+02, 6.664620971679688e+02, 6.664354858398438e+02, 6.664088134765625e+02, 6.66382080078125e+02, 6.663552856445312e+02, 6.663284912109375e+02, 6.663016357421875e+02, 6.662747802734375e+02, 6.662479858398438e+02, 6.6622119140625e+02, 6.661943969726562e+02, 6.661676635742188e+02, 6.661409912109375e+02] +chiller.sigBus.TConInMea=[2.931499938964844e+02, 2.78e+02, 2.78e+02, 2.78e+02, 2.78e+02, 2.78e+02, 2.78e+02, 2.78e+02, 2.78e+02, 2.78e+02, 2.78e+02, 2.78e+02, 2.78e+02, 2.78e+02, 2.781750183105469e+02, 2.799750061035156e+02, 2.817749938964844e+02, 2.835750122070312e+02, 2.85375e+02, 2.871749877929688e+02, 2.889750061035156e+02, 2.907749938964844e+02, 2.925749816894531e+02, 2.94375e+02, 2.961749877929688e+02, 2.979750061035156e+02, 2.997749938964844e+02, 3.015749816894531e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02, 3.03e+02] +chiller.sigBus.TEvaInMea=[3.031499938964844e+02, 2.931605224609375e+02, 2.931605834960938e+02, 2.931684265136719e+02, 2.931761779785156e+02, 2.931836853027344e+02, 2.9319091796875e+02, 2.931978759765625e+02, 2.932045593261719e+02, 2.932110290527344e+02, 2.932172241210938e+02, 2.932231750488281e+02, 2.932288818359375e+02, 2.932343444824219e+02, 2.932395629882812e+02, 2.932445983886719e+02, 2.932493896484375e+02, 2.932539672851562e+02, 2.932583618164062e+02, 2.932625427246094e+02, 2.932665405273438e+02, 2.932703552246094e+02, 2.932739868164062e+02, 2.932774658203125e+02, 2.9328076171875e+02, 2.93283935546875e+02, 2.932869567871094e+02, 2.932898254394531e+02, 2.932925720214844e+02, 2.932952270507812e+02, 2.932977294921875e+02, 2.933001403808594e+02, 2.933024597167969e+02, 2.933046875e+02, 2.933067932128906e+02, 2.93308837890625e+02, 2.93310791015625e+02, 2.933126525878906e+02, 2.93314453125e+02, 2.933161926269531e+02, 2.933178405761719e+02, 2.933194274902344e+02, 2.933209838867188e+02, 2.933224792480469e+02, 2.933239135742188e+02, 2.933252868652344e+02, 2.933266296386719e+02, 2.933279113769531e+02, 2.933291625976562e+02, 2.933303833007812e+02, 2.9333154296875e+02, 2.933327026367188e+02, 2.933339538574219e+02, 2.933353271484375e+02, 2.933368225097656e+02, 2.933384399414062e+02, 2.933401794433594e+02, 2.93342041015625e+02, 2.933440551757812e+02, 2.933461608886719e+02, 2.93348388671875e+02, 2.933507385253906e+02, 2.933531799316406e+02, 2.933557434082031e+02, 2.933584289550781e+02, 2.933612060546875e+02, 2.933641052246094e+02, 2.933670654296875e+02, 2.933701477050781e+02, 2.93373291015625e+02, 2.933765258789062e+02, 2.933798522949219e+02, 2.933832702636719e+02, 2.933867492675781e+02, 2.933902893066406e+02, 2.933938903808594e+02, 2.933975830078125e+02, 2.934013061523438e+02, 2.934050903320312e+02, 2.93408935546875e+02, 2.93412841796875e+02, 2.93416748046875e+02, 2.934207153320312e+02, 2.934247131347656e+02, 2.934287719726562e+02, 2.934328308105469e+02, 2.934369201660156e+02, 2.934410095214844e+02, 2.934451293945312e+02, 2.934492797851562e+02, 2.934534301757812e+02, 2.934575805664062e+02, 2.934617614746094e+02, 2.934659423828125e+02, 2.934700927734375e+02, 2.934742736816406e+02, 2.934784545898438e+02, 2.934826354980469e+02, 2.934867858886719e+02, 2.934909362792969e+02, 2.934950866699219e+02] +chiller.sigBus.TConOutMea=[2.931499938964844e+02, 2.855783081054688e+02, 2.824364013671875e+02, 2.811531982421875e+02, 2.80622802734375e+02, 2.803974609375e+02, 2.802958068847656e+02, 2.80244384765625e+02, 2.802134704589844e+02, 2.801910705566406e+02, 2.801722106933594e+02, 2.801549682617188e+02, 2.801385192871094e+02, 2.8012255859375e+02, 2.801144714355469e+02, 2.808053283691406e+02, 2.821346435546875e+02, 2.837231750488281e+02, 2.854172973632812e+02, 2.8715478515625e+02, 2.889104919433594e+02, 2.906740417480469e+02, 2.924414367675781e+02, 2.942109069824219e+02, 2.95981689453125e+02, 2.977535400390625e+02, 2.995243835449219e+02, 3.012873229980469e+02, 3.030058898925781e+02, 3.039564819335938e+02, 3.043377380371094e+02, 3.044885559082031e+02, 3.045461120605469e+02, 3.045659790039062e+02, 3.045706176757812e+02, 3.04569091796875e+02, 3.045651550292969e+02, 3.045603332519531e+02, 3.045551452636719e+02, 3.045498657226562e+02, 3.045446166992188e+02, 3.045393981933594e+02, 3.045342407226562e+02, 3.045291442871094e+02, 3.045241394042969e+02, 3.045191955566406e+02, 3.045143127441406e+02, 3.04509521484375e+02, 3.045047912597656e+02, 3.045001220703125e+02, 3.044955444335938e+02, 3.028396911621094e+02, 3.021511840820312e+02, 3.018709106445312e+02, 3.017568054199219e+02, 3.017103271484375e+02, 3.016913452148438e+02, 3.0168359375e+02, 3.016803894042969e+02, 3.016790771484375e+02, 3.016784973144531e+02, 3.016781921386719e+02, 3.016780395507812e+02, 3.016779174804688e+02, 3.016778259277344e+02, 3.01677734375e+02, 3.016776428222656e+02, 3.016775512695312e+02, 3.016774597167969e+02, 3.016773681640625e+02, 3.016772766113281e+02, 3.016771850585938e+02, 3.016770629882812e+02, 3.016769714355469e+02, 3.016768493652344e+02, 3.016767272949219e+02, 3.016766357421875e+02, 3.01676513671875e+02, 3.016763916015625e+02, 3.0167626953125e+02, 3.016761474609375e+02, 3.01676025390625e+02, 3.016759033203125e+02, 3.0167578125e+02, 3.016756591796875e+02, 3.01675537109375e+02, 3.016754150390625e+02, 3.0167529296875e+02, 3.016751403808594e+02, 3.016750183105469e+02, 3.016748962402344e+02, 3.016747741699219e+02, 3.016746520996094e+02, 3.016744995117188e+02, 3.016743774414062e+02, 3.016742553710938e+02, 3.016741027832031e+02, 3.016739807128906e+02, 3.016738586425781e+02, 3.016737365722656e+02, 3.01673583984375e+02] +chiller.sigBus.TEvaOutMea=[3.031499938964844e+02, 3.028995666503906e+02, 3.026094970703125e+02, 3.023240051269531e+02, 3.020430297851562e+02, 3.017664794921875e+02, 3.014943237304688e+02, 3.012264404296875e+02, 3.009627685546875e+02, 3.007032775878906e+02, 3.004479064941406e+02, 3.001965026855469e+02, 2.999490966796875e+02, 2.997055969238281e+02, 2.994659118652344e+02, 2.992310791015625e+02, 2.990021362304688e+02, 2.987790222167969e+02, 2.985615539550781e+02, 2.983496704101562e+02, 2.981431884765625e+02, 2.979420166015625e+02, 2.977460632324219e+02, 2.975552062988281e+02, 2.973693237304688e+02, 2.971883239746094e+02, 2.970124816894531e+02, 2.968430786132812e+02, 2.966810607910156e+02, 2.965235900878906e+02, 2.963683776855469e+02, 2.962154235839844e+02, 2.960646362304688e+02, 2.959160461425781e+02, 2.957695922851562e+02, 2.956252136230469e+02, 2.9548291015625e+02, 2.953426818847656e+02, 2.952044372558594e+02, 2.950681762695312e+02, 2.949338684082031e+02, 2.94801513671875e+02, 2.946710205078125e+02, 2.945424194335938e+02, 2.944156799316406e+02, 2.942907409667969e+02, 2.941675720214844e+02, 2.940462036132812e+02, 2.939265441894531e+02, 2.938086242675781e+02, 2.936923522949219e+02, 2.937636108398438e+02, 2.938630981445312e+02, 2.939621887207031e+02, 2.940606079101562e+02, 2.941581726074219e+02, 2.942548522949219e+02, 2.943506469726562e+02, 2.94445556640625e+02, 2.945395812988281e+02, 2.946327209472656e+02, 2.947250366210938e+02, 2.948164672851562e+02, 2.949070434570312e+02, 2.949967956542969e+02, 2.950857238769531e+02, 2.951738586425781e+02, 2.952611694335938e+02, 2.9534765625e+02, 2.954333801269531e+02, 2.95518310546875e+02, 2.956024780273438e+02, 2.956858825683594e+02, 2.957685241699219e+02, 2.958504028320312e+02, 2.959315795898438e+02, 2.960119934082031e+02, 2.960917053222656e+02, 2.961706848144531e+02, 2.962489318847656e+02, 2.963265075683594e+02, 2.964033813476562e+02, 2.964795837402344e+02, 2.965550842285156e+02, 2.966299133300781e+02, 2.967040710449219e+02, 2.96777587890625e+02, 2.968504333496094e+02, 2.969226379394531e+02, 2.969942016601562e+02, 2.970651550292969e+02, 2.971354370117188e+02, 2.972051391601562e+02, 2.972742004394531e+02, 2.973426513671875e+02, 2.974105224609375e+02, 2.97477783203125e+02, 2.9754443359375e+02, 2.976105346679688e+02, 2.97676025390625e+02, 2.977409362792969e+02] +chiller.innerCycle.QEva=[-8.248181640625e+03, -9.17833984375e+03, -9.0975615234375e+03, -9.0180576171875e+03, -8.9398095703125e+03, -8.8627978515625e+03, -8.7870029296875e+03, -8.7124033203125e+03, -8.6389814453125e+03, -8.5667177734375e+03, -8.49559375e+03, -8.4255908203125e+03, -8.3566904296875e+03, -8.2888759765625e+03, -8.2118681640625e+03, -8.04186279296875e+03, -7.87514697265625e+03, -7.7116298828125e+03, -7.55121533203125e+03, -7.3938095703125e+03, -7.2393232421875e+03, -7.08766748046875e+03, -6.93875732421875e+03, -6.792509765625e+03, -6.64884326171875e+03, -6.50768017578125e+03, -6.31227880859375e+03, -6.050715332031249e+03, -5.82649755859375e+03, -5.792302734375e+03, -5.75860302734375e+03, -5.7253876953125e+03, -5.69264990234375e+03, -5.6603828125e+03, -5.6285791015625e+03, -5.59723193359375e+03, -5.5663349609375e+03, -5.5358818359375e+03, -5.50586572265625e+03, -5.47627978515625e+03, -5.447119140625e+03, -5.4183759765625e+03, -5.39004541015625e+03, -5.36212109375e+03, -5.33459716796875e+03, -5.3074677734375e+03, -5.28072705078125e+03, -5.25436962890625e+03, -5.2283896484375e+03, -5.20278173828125e+03, -5.17754052734375e+03, 4.80481884765625e+03, 4.8388125e+03, 4.85276708984375e+03, 4.85857470703125e+03, 4.86107861328125e+03, 4.8622470703125e+03, 4.8628818359375e+03, 4.86330859375e+03, 4.86366015625e+03, 4.8639912109375e+03, 4.86432373046875e+03, 4.8646650390625e+03, 4.8650185546875e+03, 4.86538623046875e+03, 4.86576708984375e+03, 4.86616162109375e+03, 4.86656884765625e+03, 4.8669892578125e+03, 4.867421875e+03, 4.8678662109375e+03, 4.86832177734375e+03, 4.86878857421875e+03, 4.86926513671875e+03, 4.86975146484375e+03, 4.87024658203125e+03, 4.87075048828125e+03, 4.87126220703125e+03, 4.87178173828125e+03, 4.8723076171875e+03, 4.87284033203125e+03, 4.87337841796875e+03, 4.87392236328125e+03, 4.874470703125e+03, 4.8750234375e+03, 4.875580078125e+03, 4.8761396484375e+03, 4.87670263671875e+03, 4.87726806640625e+03, 4.87783544921875e+03, 4.87840478515625e+03, 4.878974609375e+03, 4.8795458984375e+03, 4.8801181640625e+03, 4.8806904296875e+03, 4.8812626953125e+03, 4.881833984375e+03, 4.88240576171875e+03, 4.88297705078125e+03, 4.883546875e+03, 4.884115234375e+03] +chiller.innerCycle.QCon=[8.7290908203125e+03, 9.6593857421875e+03, 9.5819560546875e+03, 9.505748046875e+03, 9.4307451171875e+03, 9.35692578125e+03, 9.2842724609375e+03, 9.2127666015625e+03, 9.142388671875e+03, 9.07312109375e+03, 9.0049453125e+03, 8.9378447265625e+03, 8.87180078125e+03, 8.8067978515625e+03, 8.7337607421875e+03, 8.5796943359375e+03, 8.4303466796875e+03, 8.2855693359375e+03, 8.145212890625e+03, 8.00913330078125e+03, 7.87718798828125e+03, 7.74924072265625e+03, 7.6251572265625e+03, 7.50480859375e+03, 7.38806884765625e+03, 7.274814453125e+03, 7.13802734375e+03, 6.917020019531249e+03, 6.7225595703125e+03, 6.6969189453125e+03, 6.6716494140625e+03, 6.6467431640625e+03, 6.62219482421875e+03, 6.59799951171875e+03, 6.57415185546875e+03, 6.550646484375e+03, 6.527478515625e+03, 6.5046435546875e+03, 6.48213623046875e+03, 6.45995166015625e+03, 6.43808544921875e+03, 6.41653271484375e+03, 6.3952890625e+03, 6.37435009765625e+03, 6.35371142578125e+03, 6.33336865234375e+03, 6.3133173828125e+03, 6.29355322265625e+03, 6.27407275390625e+03, 6.25487060546875e+03, 6.23594384765625e+03, -5.50105078125e+03, -5.51781201171875e+03, -5.52474658203125e+03, -5.52769140625e+03, -5.52902294921875e+03, -5.52970703125e+03, -5.53013720703125e+03, -5.53047265625e+03, -5.530779296875e+03, -5.5310830078125e+03, -5.53139501953125e+03, -5.53171826171875e+03, -5.5320546875e+03, -5.532404296875e+03, -5.532767578125e+03, -5.5331435546875e+03, -5.5335322265625e+03, -5.5339326171875e+03, -5.53434521484375e+03, -5.5347685546875e+03, -5.535203125e+03, -5.53564794921875e+03, -5.53610205078125e+03, -5.5365654296875e+03, -5.53703759765625e+03, -5.53751806640625e+03, -5.538005859375e+03, -5.5385009765625e+03, -5.53900244140625e+03, -5.539509765625e+03, -5.54002294921875e+03, -5.540541015625e+03, -5.54106396484375e+03, -5.5415908203125e+03, -5.54212109375e+03, -5.54265478515625e+03, -5.54319140625e+03, -5.54373046875e+03, -5.54427099609375e+03, -5.5448134765625e+03, -5.54535693359375e+03, -5.5459013671875e+03, -5.54644677734375e+03, -5.5469921875e+03, -5.54753759765625e+03, -5.54808203125e+03, -5.548626953125e+03, -5.54917138671875e+03, -5.54971435546875e+03, -5.55025634765625e+03] +chiller.innerCycle.Pel=[4.809090881347656e+02, 4.810459594726562e+02, 4.843949279785156e+02, 4.876910400390625e+02, 4.9093505859375e+02, 4.941278381347656e+02, 4.972702331542969e+02, 5.003630065917969e+02, 5.034069519042969e+02, 5.064028930664062e+02, 5.093516235351562e+02, 5.122538452148438e+02, 5.151103515625e+02, 5.179218139648438e+02, 5.218932495117188e+02, 5.378319091796875e+02, 5.551990356445312e+02, 5.7393896484375e+02, 5.93997802734375e+02, 6.153233032226562e+02, 6.378648071289062e+02, 6.61572998046875e+02, 6.863999633789062e+02, 7.12299072265625e+02, 7.392252197265625e+02, 7.6713427734375e+02, 8.257485961914062e+02, 8.663045654296876e+02, 8.960620727539062e+02, 9.046162109375e+02, 9.130464477539062e+02, 9.2135546875e+02, 9.295450439453125e+02, 9.37616943359375e+02, 9.455728759765625e+02, 9.5341455078125e+02, 9.611436157226562e+02, 9.6876171875e+02, 9.762704467773438e+02, 9.836715087890625e+02, 9.909663696289062e+02, 9.981565551757812e+02, 1.00524365234375e+03, 1.012229125976562e+03, 1.019114440917969e+03, 1.025901123046875e+03, 1.032590454101562e+03, 1.039183959960938e+03, 1.045682983398438e+03, 1.052088989257812e+03, 1.058403198242188e+03, 6.9623193359375e+02, 6.789993896484375e+02, 6.71979736328125e+02, 6.691168823242188e+02, 6.679443359375e+02, 6.674598999023438e+02, 6.672552490234375e+02, 6.67164306640625e+02, 6.671192016601562e+02, 6.67091796875e+02, 6.670712890625e+02, 6.670533447265625e+02, 6.670359497070312e+02, 6.67018310546875e+02, 6.670004272460938e+02, 6.669819946289062e+02, 6.669630126953125e+02, 6.669434204101562e+02, 6.669232788085938e+02, 6.669025268554688e+02, 6.668811645507812e+02, 6.668593139648438e+02, 6.668369750976562e+02, 6.66814208984375e+02, 6.66791015625e+02, 6.667673950195312e+02, 6.667434692382812e+02, 6.667191162109375e+02, 6.666945190429688e+02, 6.666695556640625e+02, 6.666443481445312e+02, 6.66618896484375e+02, 6.665932006835938e+02, 6.665672607421875e+02, 6.665411987304688e+02, 6.665149536132812e+02, 6.664885864257812e+02, 6.664620971679688e+02, 6.664354858398438e+02, 6.664088134765625e+02, 6.66382080078125e+02, 6.663552856445312e+02, 6.663284912109375e+02, 6.663016357421875e+02, 6.662747802734375e+02, 6.662479858398438e+02, 6.6622119140625e+02, 6.661943969726562e+02, 6.661676635742188e+02, 6.661409912109375e+02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_DistrictHeatingCooling_Demands_Examples_OpenLoopHeatPumpCarnot.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_DistrictHeatingCooling_Demands_Examples_OpenLoopHeatPumpCarnot.txt index 8a2c6f07f1..c3bb336dd0 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_DistrictHeatingCooling_Demands_Examples_OpenLoopHeatPumpCarnot.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_DistrictHeatingCooling_Demands_Examples_OpenLoopHeatPumpCarnot.txt @@ -1,4 +1,4 @@ -last-generated=2021-05-19 +last-generated=2022-05-23 statistics-initialization= { "nonlinear": "1, 1", @@ -6,12 +6,12 @@ statistics-initialization= } statistics-simulation= { - "linear": "0, 0", + "linear": " ", "nonlinear": "1, 1", - "number of continuous time states": "9", + "number of continuous time states": "11", "numerical Jacobians": "0" } time=[0e+00, 1e+05] -demand.senT_supply.T=[2.881499938964844e+02, 2.930913696289062e+02, 2.93099365234375e+02, 2.931001586914062e+02, 2.930943603515625e+02, 2.930802612304688e+02, 2.930549011230469e+02, 2.930208435058594e+02, 2.930064697265625e+02, 2.930370483398438e+02, 2.93072265625e+02, 2.930913696289062e+02, 2.93099365234375e+02, 2.931001586914062e+02, 2.930944213867188e+02, 2.930802612304688e+02, 2.930549011230469e+02, 2.930215148925781e+02, 2.930062561035156e+02, 2.930369262695312e+02, 2.930721740722656e+02, 2.930913391113281e+02, 2.930993347167969e+02, 2.931001586914062e+02, 2.930943603515625e+02, 2.930802612304688e+02, 2.93054931640625e+02, 2.930214538574219e+02, 2.930065002441406e+02, 2.930369873046875e+02, 2.93072265625e+02, 2.930913696289062e+02, 2.93099365234375e+02, 2.931001892089844e+02, 2.930943908691406e+02, 2.930802612304688e+02, 2.930550537109375e+02, 2.930215759277344e+02, 2.930063171386719e+02, 2.930368957519531e+02, 2.93072265625e+02, 2.930913391113281e+02, 2.93099365234375e+02, 2.931001586914062e+02, 2.930944213867188e+02, 2.930802917480469e+02, 2.930549926757812e+02, 2.930215148925781e+02, 2.930065002441406e+02, 2.930369567871094e+02, 2.930723266601562e+02, 2.930913391113281e+02, 2.930993041992188e+02, 2.931000671386719e+02, 2.930943908691406e+02, 2.930802612304688e+02, 2.930549011230469e+02, 2.930214538574219e+02, 2.930062561035156e+02, 2.930370788574219e+02, 2.930722351074219e+02, 2.930913696289062e+02, 2.93099365234375e+02, 2.931001586914062e+02, 2.930943298339844e+02, 2.930803527832031e+02, 2.93054931640625e+02, 2.930214538574219e+02, 2.930065002441406e+02, 2.930370483398438e+02, 2.930723266601562e+02, 2.930913391113281e+02, 2.93099365234375e+02, 2.931001586914062e+02, 2.930944213867188e+02, 2.930803527832031e+02, 2.930549621582031e+02, 2.930215454101562e+02, 2.930065002441406e+02, 2.930370178222656e+02, 2.930722351074219e+02, 2.930913391113281e+02, 2.93099365234375e+02, 2.931001586914062e+02, 2.930943298339844e+02, 2.930802917480469e+02, 2.93054931640625e+02, 2.930215148925781e+02, 2.930065002441406e+02, 2.930369262695312e+02, 2.930722351074219e+02, 2.930913696289062e+02, 2.93099365234375e+02, 2.931001586914062e+02, 2.930943603515625e+02, 2.930803833007812e+02, 2.930551147460938e+02, 2.930216674804688e+02, 2.930065002441406e+02, 2.930370788574219e+02, 2.93072021484375e+02] +demand.senT_supply.T=[2.881499938964844e+02, 2.93091552734375e+02, 2.930994262695312e+02, 2.931001281738281e+02, 2.930942077636719e+02, 2.930798950195312e+02, 2.930540466308594e+02, 2.930201721191406e+02, 2.930067443847656e+02, 2.930382385253906e+02, 2.930728149414062e+02, 2.93091552734375e+02, 2.930994262695312e+02, 2.931001586914062e+02, 2.930942077636719e+02, 2.93079833984375e+02, 2.930540466308594e+02, 2.93020263671875e+02, 2.930067443847656e+02, 2.930382385253906e+02, 2.930728759765625e+02, 2.930915222167969e+02, 2.930993957519531e+02, 2.931001586914062e+02, 2.930942077636719e+02, 2.930799560546875e+02, 2.930540771484375e+02, 2.930202331542969e+02, 2.930067443847656e+02, 2.930381774902344e+02, 2.930728454589844e+02, 2.93091552734375e+02, 2.930994262695312e+02, 2.931001892089844e+02, 2.930942077636719e+02, 2.930798645019531e+02, 2.930540466308594e+02, 2.930202941894531e+02, 2.930067749023438e+02, 2.930381774902344e+02, 2.930728149414062e+02, 2.93091552734375e+02, 2.930994262695312e+02, 2.931001586914062e+02, 2.930942077636719e+02, 2.930799560546875e+02, 2.930540466308594e+02, 2.930202941894531e+02, 2.930067443847656e+02, 2.930382690429688e+02, 2.930728454589844e+02, 2.93091552734375e+02, 2.930994262695312e+02, 2.931001281738281e+02, 2.930941772460938e+02, 2.930799560546875e+02, 2.930541076660156e+02, 2.930203247070312e+02, 2.930067749023438e+02, 2.930384826660156e+02, 2.930728454589844e+02, 2.930915222167969e+02, 2.930994262695312e+02, 2.931001281738281e+02, 2.9309423828125e+02, 2.930798950195312e+02, 2.930540466308594e+02, 2.93020263671875e+02, 2.930067443847656e+02, 2.930379638671875e+02, 2.930728454589844e+02, 2.93091552734375e+02, 2.930994262695312e+02, 2.931001281738281e+02, 2.930941772460938e+02, 2.930801086425781e+02, 2.930540466308594e+02, 2.930203247070312e+02, 2.930067443847656e+02, 2.930382385253906e+02, 2.930727844238281e+02, 2.930914001464844e+02, 2.930994262695312e+02, 2.9310009765625e+02, 2.930942077636719e+02, 2.93079833984375e+02, 2.930540771484375e+02, 2.930202331542969e+02, 2.930067749023438e+02, 2.930380554199219e+02, 2.930727844238281e+02, 2.930915222167969e+02, 2.930994262695312e+02, 2.931001281738281e+02, 2.930942077636719e+02, 2.93079833984375e+02, 2.930541381835938e+02, 2.930202331542969e+02, 2.930067443847656e+02, 2.930382385253906e+02, 2.930728149414062e+02] demand.senT_return.T=[2.881499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02] -demand.port_a.m_flow=[3.529320359230042e-01, 4.925858080387115e-01, 5.599589943885803e-01, 5.599657893180847e-01, 4.926082789897919e-01, 3.826679885387421e-01, 2.715424001216888e-01, 2.02252984046936e-01, 2.022065818309784e-01, 2.714682221412659e-01, 3.826211094856262e-01, 4.92585688829422e-01, 5.599589943885803e-01, 5.599660277366638e-01, 4.926089048385618e-01, 3.826679289340973e-01, 2.715423405170441e-01, 2.02253133058548e-01, 2.022066116333008e-01, 2.714683711528778e-01, 3.826212286949158e-01, 4.925853908061981e-01, 5.599586367607117e-01, 5.599657893180847e-01, 4.92608368396759e-01, 3.826680481433868e-01, 2.715424597263336e-01, 2.02253058552742e-01, 2.022066563367845e-01, 2.714677751064297e-01, 3.826212286949158e-01, 4.92585688829422e-01, 5.599589943885803e-01, 5.599660873413086e-01, 4.926086366176605e-01, 3.826680183410645e-01, 2.715429365634918e-01, 2.022533863782883e-01, 2.022067010402679e-01, 2.714675962924957e-01, 3.826211392879486e-01, 4.925855100154877e-01, 5.599590539932251e-01, 5.599658489227295e-01, 4.926088750362396e-01, 3.826681077480316e-01, 2.715427279472351e-01, 2.022531181573868e-01, 2.02206626534462e-01, 2.714678347110748e-01, 3.826214373111725e-01, 4.925853908061981e-01, 5.599589943885803e-01, 5.599657893180847e-01, 4.926085472106934e-01, 3.826679885387412e-01, 2.715424299240106e-01, 2.022530585527423e-01, 2.022066116333006e-01, 2.714683413505554e-01, 3.826209306716919e-01, 4.92585688829422e-01, 5.599591135978699e-01, 5.599659085273743e-01, 4.926081299781799e-01, 3.82668524980545e-01, 2.715424597263336e-01, 2.02252984046936e-01, 2.02206626534462e-01, 2.714682519435883e-01, 3.826214373111725e-01, 4.925853908061981e-01, 5.599588751792908e-01, 5.599657893180847e-01, 4.926087856292725e-01, 3.826684355735779e-01, 2.715426087379456e-01, 2.022533118724823e-01, 2.022066116333008e-01, 2.714681029319763e-01, 3.826209604740143e-01, 4.925855994224548e-01, 5.599589943885803e-01, 5.599658489227295e-01, 4.926081001758575e-01, 3.826681971549988e-01, 2.715424597263336e-01, 2.022532671689987e-01, 2.022065967321396e-01, 2.714677155017853e-01, 3.826209008693695e-01, 4.925856292247772e-01, 5.599590539932251e-01, 5.599659085273743e-01, 4.926083087921143e-01, 3.826687932014465e-01, 2.715432047843933e-01, 2.022536993026733e-01, 2.02206626534462e-01, 2.714683413505554e-01, 3.826196789741516e-01] +demand.port_a.m_flow=[3.529320359230042e-01, 4.925872385501862e-01, 5.599595904350281e-01, 5.599656105041504e-01, 4.92607057094574e-01, 3.826657831668854e-01, 2.715386748313904e-01, 2.022492438554764e-01, 2.022075057029724e-01, 2.71473228931427e-01, 3.826243579387665e-01, 4.925871193408966e-01, 5.599595308303833e-01, 5.599657297134399e-01, 4.926071166992186e-01, 3.826653957366943e-01, 2.715387642383575e-01, 2.022492736577988e-01, 2.022075057029724e-01, 2.714733481407166e-01, 3.826247155666351e-01, 4.925870001316071e-01, 5.599594116210938e-01, 5.599657893180847e-01, 4.926070272922516e-01, 3.826662003993988e-01, 2.715388834476471e-01, 2.022491544485092e-01, 2.022075057029726e-01, 2.714729905128476e-01, 3.826245367527008e-01, 4.925870001316071e-01, 5.599594712257385e-01, 5.599660873413086e-01, 4.926071166992188e-01, 3.826656639575958e-01, 2.715387046337128e-01, 2.022493183612823e-01, 2.022075653076172e-01, 2.714730799198151e-01, 3.82624477148056e-01, 4.925870597362518e-01, 5.599595308303833e-01, 5.599657297134399e-01, 4.926071763038635e-01, 3.826662302017212e-01, 2.715387344360352e-01, 2.022492587566376e-01, 2.022075057029724e-01, 2.714734077453613e-01, 3.826243579387665e-01, 4.925870895385742e-01, 5.599596500396729e-01, 5.599654316902161e-01, 4.926069378852844e-01, 3.826661109924308e-01, 2.71539002656936e-01, 2.022493928670887e-01, 2.022074460983274e-01, 2.714733183383942e-01, 3.826242983341217e-01, 4.925869405269623e-01, 5.599595308303833e-01, 5.599654912948608e-01, 4.926072657108307e-01, 3.826657831668854e-01, 2.71538645029068e-01, 2.022492587566376e-01, 2.022075057029724e-01, 2.714721262454987e-01, 3.826245665550232e-01, 4.925871789455414e-01, 5.599595904350281e-01, 5.599655508995056e-01, 4.926069378852844e-01, 3.826670348644257e-01, 2.71538645029068e-01, 2.022494822740555e-01, 2.022075057029724e-01, 2.714732587337494e-01, 3.826241791248322e-01, 4.925859272480011e-01, 5.599594712257385e-01, 5.599654316902161e-01, 4.926070868968964e-01, 3.826654553413391e-01, 2.715388536453247e-01, 2.022491693496704e-01, 2.022075206041336e-01, 2.714724838733673e-01, 3.826242685317993e-01, 4.925870299339294e-01, 5.599595308303833e-01, 5.599654912948608e-01, 4.926072061061859e-01, 3.826653361320496e-01, 2.715390920639038e-01, 2.02249139547348e-01, 2.022074908018112e-01, 2.714732885360718e-01, 3.826243579387665e-01] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_DistrictHeatingCooling_Demands_Examples_OpenLoopVarTSupplyDp.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_DistrictHeatingCooling_Demands_Examples_OpenLoopVarTSupplyDp.txt index e570a8c4e9..8a88563544 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_DistrictHeatingCooling_Demands_Examples_OpenLoopVarTSupplyDp.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_DistrictHeatingCooling_Demands_Examples_OpenLoopVarTSupplyDp.txt @@ -1,4 +1,4 @@ -last-generated=2021-05-19 +last-generated=2022-05-23 statistics-initialization= { "nonlinear": "1", @@ -6,12 +6,12 @@ statistics-initialization= } statistics-simulation= { - "linear": "0, 0", + "linear": " ", "nonlinear": "1", - "number of continuous time states": "9", + "number of continuous time states": "11", "numerical Jacobians": "0" } time=[0e+00, 1e+05] -demand.senT_supply.T=[3.331499938964844e+02, 3.476392822265625e+02, 3.47713134765625e+02, 3.477219543457031e+02, 3.4767333984375e+02, 3.475538330078125e+02, 3.473417663574219e+02, 3.470574951171875e+02, 3.468970642089844e+02, 3.471374206542969e+02, 3.474627685546875e+02, 3.476391296386719e+02, 3.477131958007812e+02, 3.47721923828125e+02, 3.476731567382812e+02, 3.475552368164062e+02, 3.473419799804688e+02, 3.470574951171875e+02, 3.468970336914062e+02, 3.471376953125e+02, 3.474626159667969e+02, 3.4763916015625e+02, 3.47713134765625e+02, 3.47721923828125e+02, 3.476733093261719e+02, 3.475538635253906e+02, 3.473420715332031e+02, 3.470574035644531e+02, 3.468970031738281e+02, 3.471380004882812e+02, 3.47462646484375e+02, 3.476392211914062e+02, 3.47713134765625e+02, 3.477218933105469e+02, 3.476733703613281e+02, 3.475538330078125e+02, 3.47341796875e+02, 3.470574035644531e+02, 3.468971557617188e+02, 3.471381530761719e+02, 3.4746240234375e+02, 3.476391296386719e+02, 3.47713134765625e+02, 3.47721923828125e+02, 3.4767333984375e+02, 3.475540466308594e+02, 3.47341796875e+02, 3.470576171875e+02, 3.468970947265625e+02, 3.471380310058594e+02, 3.474625854492188e+02, 3.476391906738281e+02, 3.477130432128906e+02, 3.477219543457031e+02, 3.476734008789062e+02, 3.475541381835938e+02, 3.473417663574219e+02, 3.470574645996094e+02, 3.468971252441406e+02, 3.471380920410156e+02, 3.474624938964844e+02, 3.476390686035156e+02, 3.47713134765625e+02, 3.477219543457031e+02, 3.476732482910156e+02, 3.475539855957031e+02, 3.47342041015625e+02, 3.470577697753906e+02, 3.468970336914062e+02, 3.4713818359375e+02, 3.474626770019531e+02, 3.476391296386719e+02, 3.477131958007812e+02, 3.477219543457031e+02, 3.476733703613281e+02, 3.475538024902344e+02, 3.473421325683594e+02, 3.470578002929688e+02, 3.468968811035156e+02, 3.471382141113281e+02, 3.474625854492188e+02, 3.476390686035156e+02, 3.477131042480469e+02, 3.47721923828125e+02, 3.476733703613281e+02, 3.475538330078125e+02, 3.473419189453125e+02, 3.470576171875e+02, 3.468971862792969e+02, 3.471381225585938e+02, 3.474627380371094e+02, 3.476390686035156e+02, 3.477131652832031e+02, 3.477219543457031e+02, 3.476732788085938e+02, 3.475538024902344e+02, 3.473417358398438e+02, 3.470575866699219e+02, 3.468970947265625e+02, 3.471381225585938e+02, 3.474625549316406e+02] -demand.senT_return.T=[3.331499938964844e+02, 3.276388854980469e+02, 3.277130126953125e+02, 3.277220153808594e+02, 3.276736145019531e+02, 3.275545349121094e+02, 3.273433532714844e+02, 3.270597839355469e+02, 3.268968505859375e+02, 3.271351928710938e+02, 3.27461669921875e+02, 3.276387634277344e+02, 3.277130737304688e+02, 3.277219543457031e+02, 3.276734313964844e+02, 3.27555908203125e+02, 3.273435363769531e+02, 3.27059814453125e+02, 3.268968505859375e+02, 3.271354064941406e+02, 3.274615173339844e+02, 3.276387939453125e+02, 3.277130126953125e+02, 3.277219543457031e+02, 3.27673583984375e+02, 3.275545654296875e+02, 3.273436889648438e+02, 3.270597229003906e+02, 3.268968200683594e+02, 3.271357116699219e+02, 3.274615783691406e+02, 3.276388244628906e+02, 3.277130432128906e+02, 3.277219543457031e+02, 3.276736450195312e+02, 3.275545349121094e+02, 3.273434143066406e+02, 3.270597229003906e+02, 3.2689697265625e+02, 3.271358642578125e+02, 3.274613037109375e+02, 3.276387329101562e+02, 3.277130126953125e+02, 3.277219848632812e+02, 3.276736145019531e+02, 3.275547485351562e+02, 3.273433837890625e+02, 3.270599365234375e+02, 3.268968811035156e+02, 3.271357727050781e+02, 3.274614868164062e+02, 3.276387939453125e+02, 3.277129211425781e+02, 3.277220153808594e+02, 3.276736755371094e+02, 3.275548400878906e+02, 3.273433532714844e+02, 3.270597534179688e+02, 3.268969421386719e+02, 3.271358337402344e+02, 3.274613952636719e+02, 3.27638671875e+02, 3.277130432128906e+02, 3.277220153808594e+02, 3.276734924316406e+02, 3.275546569824219e+02, 3.273435974121094e+02, 3.2706005859375e+02, 3.268968505859375e+02, 3.271359252929688e+02, 3.274615783691406e+02, 3.276387634277344e+02, 3.277130737304688e+02, 3.277220153808594e+02, 3.276736450195312e+02, 3.275545043945312e+02, 3.273437194824219e+02, 3.270600280761719e+02, 3.26896728515625e+02, 3.271359252929688e+02, 3.274614868164062e+02, 3.27638671875e+02, 3.277129821777344e+02, 3.277219848632812e+02, 3.276736450195312e+02, 3.275545349121094e+02, 3.27343505859375e+02, 3.270599060058594e+02, 3.268970031738281e+02, 3.271358337402344e+02, 3.274616394042969e+02, 3.27638671875e+02, 3.277130737304688e+02, 3.277220153808594e+02, 3.276735534667969e+02, 3.275545043945312e+02, 3.273433532714844e+02, 3.270599060058594e+02, 3.268969116210938e+02, 3.271358642578125e+02, 3.274614562988281e+02] +demand.senT_supply.T=[3.331499938964844e+02, 3.476416625976562e+02, 3.477138366699219e+02, 3.477216491699219e+02, 3.476716003417969e+02, 3.47549560546875e+02, 3.473323364257812e+02, 3.470433349609375e+02, 3.468971862792969e+02, 3.4715185546875e+02, 3.47469482421875e+02, 3.476415100097656e+02, 3.477138366699219e+02, 3.477215881347656e+02, 3.47671630859375e+02, 3.475496215820312e+02, 3.473323974609375e+02, 3.470435791015625e+02, 3.468972778320312e+02, 3.471519470214844e+02, 3.474693603515625e+02, 3.476415405273438e+02, 3.477136840820312e+02, 3.477215881347656e+02, 3.476715698242188e+02, 3.475496520996094e+02, 3.473325805664062e+02, 3.470435791015625e+02, 3.46897216796875e+02, 3.471519775390625e+02, 3.47469482421875e+02, 3.476415405273438e+02, 3.477138671875e+02, 3.477216186523438e+02, 3.476716918945312e+02, 3.475498046875e+02, 3.473329162597656e+02, 3.470435791015625e+02, 3.468972778320312e+02, 3.471520080566406e+02, 3.474693603515625e+02, 3.476414184570312e+02, 3.477138366699219e+02, 3.477216186523438e+02, 3.476724243164062e+02, 3.475496520996094e+02, 3.47332275390625e+02, 3.470435485839844e+02, 3.468973083496094e+02, 3.471520385742188e+02, 3.474694213867188e+02, 3.476415710449219e+02, 3.477138671875e+02, 3.477216796875e+02, 3.476716918945312e+02, 3.475496826171875e+02, 3.47332275390625e+02, 3.470437316894531e+02, 3.468970642089844e+02, 3.471522216796875e+02, 3.474694213867188e+02, 3.476413879394531e+02, 3.477138671875e+02, 3.477215881347656e+02, 3.476716918945312e+02, 3.475496520996094e+02, 3.47332275390625e+02, 3.470439453125e+02, 3.468975830078125e+02, 3.471521911621094e+02, 3.47469482421875e+02, 3.476416015625e+02, 3.477138061523438e+02, 3.477216186523438e+02, 3.476716918945312e+02, 3.475498352050781e+02, 3.47332275390625e+02, 3.470435791015625e+02, 3.46897216796875e+02, 3.471519165039062e+02, 3.47469482421875e+02, 3.476416625976562e+02, 3.477138061523438e+02, 3.477215881347656e+02, 3.476718139648438e+02, 3.475496215820312e+02, 3.473323669433594e+02, 3.470441284179688e+02, 3.468973999023438e+02, 3.471517944335938e+02, 3.474692993164062e+02, 3.476414794921875e+02, 3.477138366699219e+02, 3.477216796875e+02, 3.476718444824219e+02, 3.475496826171875e+02, 3.473328552246094e+02, 3.470437622070312e+02, 3.468975219726562e+02, 3.471517944335938e+02, 3.474693908691406e+02] +demand.senT_return.T=[3.331499938964844e+02, 3.276412963867188e+02, 3.277137145996094e+02, 3.277217102050781e+02, 3.27671875e+02, 3.2755029296875e+02, 3.273339538574219e+02, 3.270457153320312e+02, 3.268967895507812e+02, 3.271495666503906e+02, 3.274684143066406e+02, 3.2764111328125e+02, 3.277137451171875e+02, 3.277216491699219e+02, 3.276719055175781e+02, 3.275503540039062e+02, 3.273340148925781e+02, 3.270458679199219e+02, 3.268968505859375e+02, 3.27149658203125e+02, 3.274683227539062e+02, 3.276411437988281e+02, 3.277135925292969e+02, 3.277216491699219e+02, 3.276718444824219e+02, 3.275503845214844e+02, 3.27334228515625e+02, 3.270458374023438e+02, 3.268970031738281e+02, 3.271502075195312e+02, 3.274684448242188e+02, 3.276411743164062e+02, 3.277137451171875e+02, 3.277216796875e+02, 3.276719665527344e+02, 3.275505065917969e+02, 3.273345642089844e+02, 3.270458984375e+02, 3.268968811035156e+02, 3.271497497558594e+02, 3.274683227539062e+02, 3.276410217285156e+02, 3.277137451171875e+02, 3.277216796875e+02, 3.276726684570312e+02, 3.275503540039062e+02, 3.273339233398438e+02, 3.270458679199219e+02, 3.268969116210938e+02, 3.271497802734375e+02, 3.274683532714844e+02, 3.276411743164062e+02, 3.277137451171875e+02, 3.277217407226562e+02, 3.276719665527344e+02, 3.275504150390625e+02, 3.273339233398438e+02, 3.270460510253906e+02, 3.268968200683594e+02, 3.271494445800781e+02, 3.274683837890625e+02, 3.276409912109375e+02, 3.277137756347656e+02, 3.277216491699219e+02, 3.276719665527344e+02, 3.275503845214844e+02, 3.273338928222656e+02, 3.270462341308594e+02, 3.268971557617188e+02, 3.271497802734375e+02, 3.274683532714844e+02, 3.276412048339844e+02, 3.277137145996094e+02, 3.277216796875e+02, 3.276719360351562e+02, 3.275505676269531e+02, 3.273338928222656e+02, 3.270458679199219e+02, 3.268968200683594e+02, 3.27149658203125e+02, 3.274684143066406e+02, 3.276412658691406e+02, 3.277137145996094e+02, 3.277216491699219e+02, 3.276720886230469e+02, 3.275503540039062e+02, 3.27333984375e+02, 3.270464782714844e+02, 3.268970031738281e+02, 3.271495056152344e+02, 3.2746826171875e+02, 3.276410827636719e+02, 3.277137451171875e+02, 3.277217407226562e+02, 3.27672119140625e+02, 3.275504150390625e+02, 3.273345031738281e+02, 3.270460815429688e+02, 3.268971252441406e+02, 3.271495056152344e+02, 3.274683227539062e+02] demand.port_a.m_flow=[2.869678437709808e-01, 3.713055551052094e-01, 4.234291315078735e-01, 4.234291315078735e-01, 3.713055551052094e-01, 2.869678437709808e-01, 2.026301026344299e-01, 1.505065113306045e-01, 1.505065113306046e-01, 2.026301026344299e-01, 2.869678437709808e-01, 3.713055551052094e-01, 4.234291315078735e-01, 4.234291315078735e-01, 3.713055551052092e-01, 2.869678437709808e-01, 2.026301026344299e-01, 1.505065113306046e-01, 1.505065113306046e-01, 2.026301026344299e-01, 2.869678437709808e-01, 3.713055551052094e-01, 4.234291315078735e-01, 4.234291315078735e-01, 3.713055551052094e-01, 2.869678437709808e-01, 2.026301026344299e-01, 1.505065113306046e-01, 1.505065113306047e-01, 2.026301026344297e-01, 2.869678437709808e-01, 3.713055551052094e-01, 4.234291315078735e-01, 4.234291315078735e-01, 3.713055551052094e-01, 2.869678437709808e-01, 2.026301026344299e-01, 1.505065113306046e-01, 1.505065113306046e-01, 2.026301026344299e-01, 2.869678437709808e-01, 3.713055551052094e-01, 4.234291315078735e-01, 4.234291315078735e-01, 3.713055551052094e-01, 2.869678437709808e-01, 2.026301026344299e-01, 1.505065113306046e-01, 1.505065113306046e-01, 2.026301026344299e-01, 2.869678437709808e-01, 3.713055551052094e-01, 4.234291315078735e-01, 4.234291315078735e-01, 3.713055551052094e-01, 2.869678437709802e-01, 2.026301026344294e-01, 1.505065113306048e-01, 1.505065113306044e-01, 2.026301026344299e-01, 2.869678437709808e-01, 3.713055551052094e-01, 4.234291315078735e-01, 4.234291315078735e-01, 3.713055551052094e-01, 2.869678437709808e-01, 2.026301026344299e-01, 1.505065113306046e-01, 1.505065113306046e-01, 2.026301026344299e-01, 2.869678437709808e-01, 3.713055551052094e-01, 4.234291315078735e-01, 4.234291315078735e-01, 3.713055551052094e-01, 2.869678437709808e-01, 2.026301026344299e-01, 1.505065113306046e-01, 1.505065113306046e-01, 2.026301026344299e-01, 2.869678437709808e-01, 3.713055551052094e-01, 4.234291315078735e-01, 4.234291315078735e-01, 3.713055551052094e-01, 2.869678437709808e-01, 2.026301026344299e-01, 1.505065113306046e-01, 1.505065113306046e-01, 2.026301026344299e-01, 2.869678437709808e-01, 3.713055551052094e-01, 4.234291315078735e-01, 4.234291315078735e-01, 3.713055551052094e-01, 2.869678437709808e-01, 2.026301026344299e-01, 1.505065113306046e-01, 1.505065113306046e-01, 2.026301026344299e-01, 2.869678437709808e-01] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_DistrictHeatingCooling_Demands_Examples_OpenLoopVarTSupplyDpBypass.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_DistrictHeatingCooling_Demands_Examples_OpenLoopVarTSupplyDpBypass.txt index b3bfb1b032..962afbe638 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_DistrictHeatingCooling_Demands_Examples_OpenLoopVarTSupplyDpBypass.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_DistrictHeatingCooling_Demands_Examples_OpenLoopVarTSupplyDpBypass.txt @@ -1,4 +1,4 @@ -last-generated=2021-05-19 +last-generated=2022-05-23 statistics-initialization= { "nonlinear": "1", @@ -6,12 +6,12 @@ statistics-initialization= } statistics-simulation= { - "linear": "0, 0", + "linear": " ", "nonlinear": "1", - "number of continuous time states": "9", + "number of continuous time states": "11", "numerical Jacobians": "0" } -time=[0e+00, 1e+05] -demand.senT_supply.T=[3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02] -demand.senT_return.T=[3.331499938964844e+02, 3.321312561035156e+02, 3.323014221191406e+02, 3.323338012695312e+02, 3.322584533691406e+02, 3.320647583007812e+02, 3.317274780273438e+02, 3.312704467773438e+02, 3.308843383789062e+02, 3.310396118164062e+02, 3.317176208496094e+02, 3.321310424804688e+02, 3.323013305664062e+02, 3.323337707519531e+02, 3.322586059570312e+02, 3.3206396484375e+02, 3.317266845703125e+02, 3.312698364257812e+02, 3.308843078613281e+02, 3.310396118164062e+02, 3.317177124023438e+02, 3.321310119628906e+02, 3.323011779785156e+02, 3.323337097167969e+02, 3.322589416503906e+02, 3.320647583007812e+02, 3.317268981933594e+02, 3.312695007324219e+02, 3.308840942382812e+02, 3.3103955078125e+02, 3.317176818847656e+02, 3.321312561035156e+02, 3.323014221191406e+02, 3.323338012695312e+02, 3.322584533691406e+02, 3.320647583007812e+02, 3.317282104492188e+02, 3.312702941894531e+02, 3.308843994140625e+02, 3.310396118164062e+02, 3.317164916992188e+02, 3.32131103515625e+02, 3.323011779785156e+02, 3.32333740234375e+02, 3.322586364746094e+02, 3.320640563964844e+02, 3.317270812988281e+02, 3.312703247070312e+02, 3.308843688964844e+02, 3.31039794921875e+02, 3.317169494628906e+02, 3.321304931640625e+02, 3.323013000488281e+02, 3.32333740234375e+02, 3.322589111328125e+02, 3.320646667480469e+02, 3.317273864746094e+02, 3.312704467773438e+02, 3.308841552734375e+02, 3.310395202636719e+02, 3.317175598144531e+02, 3.32130615234375e+02, 3.323013000488281e+02, 3.323338012695312e+02, 3.322590026855469e+02, 3.320643310546875e+02, 3.317277526855469e+02, 3.312705078125e+02, 3.308844909667969e+02, 3.310399780273438e+02, 3.317168579101562e+02, 3.321304321289062e+02, 3.323013305664062e+02, 3.323337707519531e+02, 3.322589721679688e+02, 3.320645141601562e+02, 3.317274475097656e+02, 3.31269775390625e+02, 3.308847961425781e+02, 3.310403442382812e+02, 3.317170715332031e+02, 3.321306457519531e+02, 3.323011474609375e+02, 3.323337707519531e+02, 3.322587280273438e+02, 3.32064208984375e+02, 3.317267761230469e+02, 3.312695617675781e+02, 3.308841552734375e+02, 3.310394897460938e+02, 3.317171630859375e+02, 3.321311340332031e+02, 3.323013000488281e+02, 3.323337707519531e+02, 3.322586364746094e+02, 3.32064208984375e+02, 3.317277526855469e+02, 3.312695922851562e+02, 3.308849792480469e+02, 3.310394287109375e+02, 3.317174377441406e+02] -demand.port_a.m_flow=[1.147871315479279e-01, 1.485222280025482e-01, 1.693716645240784e-01, 1.693716645240784e-01, 1.485222280025482e-01, 1.147871315479279e-01, 8.105204254388809e-02, 6.020260602235793e-02, 6.020260602235794e-02, 8.105204254388809e-02, 1.147871315479279e-01, 1.485222280025482e-01, 1.693716645240784e-01, 1.693716645240784e-01, 1.485222280025482e-01, 1.147871315479279e-01, 8.105204254388809e-02, 6.020260602235794e-02, 6.020260602235794e-02, 8.105204254388809e-02, 1.147871315479279e-01, 1.485222280025482e-01, 1.693716645240784e-01, 1.693716645240784e-01, 1.485222280025482e-01, 1.147871315479279e-01, 8.105204254388809e-02, 6.020260602235794e-02, 6.020260602235799e-02, 8.105204254388799e-02, 1.147871315479279e-01, 1.485222280025482e-01, 1.693716645240784e-01, 1.693716645240784e-01, 1.485222280025482e-01, 1.147871315479279e-01, 8.105204254388809e-02, 6.020260602235794e-02, 6.020260602235794e-02, 8.105204254388809e-02, 1.147871315479279e-01, 1.485222280025482e-01, 1.693716645240784e-01, 1.693716645240784e-01, 1.485222280025482e-01, 1.147871315479279e-01, 8.105204254388809e-02, 6.020260602235794e-02, 6.020260602235794e-02, 8.105204254388809e-02, 1.147871315479279e-01, 1.485222280025482e-01, 1.693716645240784e-01, 1.693716645240784e-01, 1.485222280025482e-01, 1.147871315479276e-01, 8.105204254388788e-02, 6.020260602235804e-02, 6.020260602235788e-02, 8.105204254388809e-02, 1.147871315479279e-01, 1.485222280025482e-01, 1.693716645240784e-01, 1.693716645240784e-01, 1.485222280025482e-01, 1.147871315479279e-01, 8.105204254388809e-02, 6.020260602235794e-02, 6.020260602235794e-02, 8.105204254388809e-02, 1.147871315479279e-01, 1.485222280025482e-01, 1.693716645240784e-01, 1.693716645240784e-01, 1.485222280025482e-01, 1.147871315479279e-01, 8.105204254388809e-02, 6.020260602235794e-02, 6.020260602235794e-02, 8.105204254388809e-02, 1.147871315479279e-01, 1.485222280025482e-01, 1.693716645240784e-01, 1.693716645240784e-01, 1.485222280025482e-01, 1.147871315479279e-01, 8.105204254388809e-02, 6.020260602235794e-02, 6.020260602235794e-02, 8.105204254388809e-02, 1.147871315479279e-01, 1.485222280025482e-01, 1.693716645240784e-01, 1.693716645240784e-01, 1.485222280025482e-01, 1.147871315479279e-01, 8.105204254388809e-02, 6.020260602235794e-02, 6.020260602235794e-02, 8.105204254388809e-02, 1.147871315479279e-01] +time=[0e+00, 7.070167541503906e+01] +demand.senT_supply.T=[3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02] +demand.senT_return.T=[3.331499938964844e+02, 3.365259833704773e+02, 3.399019728444703e+02, 3.432779623184633e+02, 3.466539517924562e+02, 3.500299412664492e+02, 3.534059307404421e+02, 3.56781920214435e+02, 3.60157909688428e+02, 3.63533899162421e+02, 3.669098886364139e+02, 3.702858781104069e+02, 3.736618675843998e+02, 3.770378570583928e+02, 3.804138465323857e+02, 3.837898360063787e+02, 3.871658254803717e+02, 3.905418149543646e+02, 3.939178044283576e+02, 3.972937939023506e+02, 4.006697833763435e+02, 4.040457728503364e+02, 4.074217623243294e+02, 4.108244323730469e+02] +demand.port_a.m_flow=[1.147871315479279e-01, 1.148979474772923e-01, 1.150087634066568e-01, 1.151195793360212e-01, 1.152303952653857e-01, 1.153412111947502e-01, 1.154520271241146e-01, 1.155628430534791e-01, 1.156736589828435e-01, 1.15784474912208e-01, 1.158952908415724e-01, 1.160061067709369e-01, 1.161169227003014e-01, 1.162277386296658e-01, 1.163385545590303e-01, 1.164493704883948e-01, 1.165601864177592e-01, 1.166710023471237e-01, 1.167818182764881e-01, 1.168926342058526e-01, 1.170034501352171e-01, 1.171142660645815e-01, 1.17225081993946e-01, 1.173359006643295e-01] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_DistrictHeatingCooling_Demands_Examples_OpenLoopVarTSupplyDpFixedTempDifferenceBypass.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_DistrictHeatingCooling_Demands_Examples_OpenLoopVarTSupplyDpFixedTempDifferenceBypass.txt index 9ff4b38f04..f9d1fde3c6 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_DistrictHeatingCooling_Demands_Examples_OpenLoopVarTSupplyDpFixedTempDifferenceBypass.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_DistrictHeatingCooling_Demands_Examples_OpenLoopVarTSupplyDpFixedTempDifferenceBypass.txt @@ -1,4 +1,4 @@ -last-generated=2020-04-27 +last-generated=2022-05-23 statistics-initialization= { "nonlinear": "1", @@ -6,12 +6,10 @@ statistics-initialization= } statistics-simulation= { - "linear": "0, 0", + "linear": " ", "nonlinear": "1", - "number of continuous time states": "10", + "number of continuous time states": "12", "numerical Jacobians": "0" } -demand.senT_supply.T=[3.331499938964844e+02, 3.478037109375e+02, 3.478518676757812e+02, 3.478564147949219e+02, 3.478211059570312e+02, 3.477356262207031e+02, 3.475822448730469e+02, 3.473799743652344e+02, 3.47291015625e+02, 3.474761047363281e+02, 3.476888427734375e+02, 3.478035583496094e+02, 3.478518371582031e+02, 3.478563842773438e+02, 3.478213500976562e+02, 3.477354736328125e+02, 3.475821533203125e+02, 3.473800354003906e+02, 3.472909240722656e+02, 3.474765319824219e+02, 3.476887817382812e+02, 3.478036193847656e+02, 3.478518981933594e+02, 3.478563842773438e+02, 3.478212890625e+02, 3.477354125976562e+02, 3.475821533203125e+02, 3.473795776367188e+02, 3.472911376953125e+02, 3.474766540527344e+02, 3.476886901855469e+02, 3.478036193847656e+02, 3.47851806640625e+02, 3.478563842773438e+02, 3.478211975097656e+02, 3.477362365722656e+02, 3.475820922851562e+02, 3.473799133300781e+02, 3.47291015625e+02, 3.474765014648438e+02, 3.476887512207031e+02, 3.478035888671875e+02, 3.478518371582031e+02, 3.478563842773438e+02, 3.478213806152344e+02, 3.477356872558594e+02, 3.4758251953125e+02, 3.473801879882812e+02, 3.472910461425781e+02, 3.474766845703125e+02, 3.476886596679688e+02, 3.478035888671875e+02, 3.478518371582031e+02, 3.478564758300781e+02, 3.47821044921875e+02, 3.477356872558594e+02, 3.475820007324219e+02, 3.473801879882812e+02, 3.47291015625e+02, 3.474764404296875e+02, 3.476885986328125e+02, 3.478034362792969e+02, 3.478518676757812e+02, 3.478564147949219e+02, 3.478215637207031e+02, 3.477357177734375e+02, 3.475822448730469e+02, 3.473799133300781e+02, 3.472910461425781e+02, 3.474765625e+02, 3.476887817382812e+02, 3.478035888671875e+02, 3.478518371582031e+02, 3.478564147949219e+02, 3.478212585449219e+02, 3.477365417480469e+02, 3.4758203125e+02, 3.473805541992188e+02, 3.47291015625e+02, 3.474761047363281e+02, 3.476888122558594e+02, 3.478035888671875e+02, 3.478517456054688e+02, 3.478564147949219e+02, 3.478209838867188e+02, 3.477356567382812e+02, 3.475823669433594e+02, 3.473800354003906e+02, 3.472909851074219e+02, 3.474761962890625e+02, 3.476888427734375e+02, 3.478035888671875e+02, 3.478518676757812e+02, 3.478564758300781e+02, 3.478215026855469e+02, 3.477355346679688e+02, 3.475822143554688e+02, 3.473798217773438e+02, 3.47291015625e+02, 3.474762878417969e+02, 3.476886291503906e+02] -demand.senT_return.T=[3.331499938964844e+02, 3.327950439453125e+02, 3.328500366210938e+02, 3.328572387695312e+02, 3.328252868652344e+02, 3.327463073730469e+02, 3.326065673828125e+02, 3.324163513183594e+02, 3.322919311523438e+02, 3.324404296875e+02, 3.326709594726562e+02, 3.327972106933594e+02, 3.328498840332031e+02, 3.328572082519531e+02, 3.328255310058594e+02, 3.327463073730469e+02, 3.32606689453125e+02, 3.324164733886719e+02, 3.322918701171875e+02, 3.324404296875e+02, 3.326709594726562e+02, 3.327972412109375e+02, 3.328500366210938e+02, 3.328572082519531e+02, 3.32825439453125e+02, 3.327462158203125e+02, 3.326065673828125e+02, 3.324164428710938e+02, 3.322919616699219e+02, 3.324407043457031e+02, 3.326708679199219e+02, 3.327972106933594e+02, 3.328499755859375e+02, 3.328572082519531e+02, 3.328252563476562e+02, 3.327466430664062e+02, 3.326065673828125e+02, 3.324163818359375e+02, 3.322919616699219e+02, 3.324405822753906e+02, 3.326709289550781e+02, 3.32797119140625e+02, 3.328500061035156e+02, 3.328572082519531e+02, 3.3282568359375e+02, 3.327463684082031e+02, 3.326067810058594e+02, 3.324165649414062e+02, 3.322921142578125e+02, 3.32440673828125e+02, 3.326709289550781e+02, 3.327972717285156e+02, 3.328499450683594e+02, 3.328572998046875e+02, 3.328251953125e+02, 3.327463073730469e+02, 3.326063842773438e+02, 3.3241650390625e+02, 3.322920227050781e+02, 3.324404602050781e+02, 3.326708068847656e+02, 3.327971496582031e+02, 3.328499755859375e+02, 3.328572387695312e+02, 3.328255615234375e+02, 3.327465209960938e+02, 3.326066589355469e+02, 3.324163513183594e+02, 3.322919616699219e+02, 3.324406127929688e+02, 3.326709289550781e+02, 3.327972106933594e+02, 3.328499755859375e+02, 3.328572082519531e+02, 3.328253784179688e+02, 3.327474060058594e+02, 3.326063842773438e+02, 3.324171752929688e+02, 3.322919921875e+02, 3.324404296875e+02, 3.326710815429688e+02, 3.327972106933594e+02, 3.328498229980469e+02, 3.328572387695312e+02, 3.328251342773438e+02, 3.32746337890625e+02, 3.326067810058594e+02, 3.3241650390625e+02, 3.322919616699219e+02, 3.324402770996094e+02, 3.326710510253906e+02, 3.327972106933594e+02, 3.328499755859375e+02, 3.328572692871094e+02, 3.328255310058594e+02, 3.327463684082031e+02, 3.326065673828125e+02, 3.324164428710938e+02, 3.322919311523438e+02, 3.324404907226562e+02, 3.326708679199219e+02] time=[0e+00, 1e+05] demand.port_a.m_flow=[3.826237618923187e-01, 4.950740933418274e-01, 5.645722150802612e-01, 5.645722150802612e-01, 4.950740933418274e-01, 3.826237618923187e-01, 2.701734602451324e-01, 2.006753534078598e-01, 2.006753534078598e-01, 2.701734602451324e-01, 3.826237618923187e-01, 4.950740933418274e-01, 5.645722150802612e-01, 5.645722150802612e-01, 4.950740933418272e-01, 3.826237618923187e-01, 2.701734602451324e-01, 2.006753534078598e-01, 2.006753534078598e-01, 2.701734602451324e-01, 3.826237618923187e-01, 4.950740933418274e-01, 5.645722150802612e-01, 5.645722150802612e-01, 4.950740933418274e-01, 3.826237618923187e-01, 2.701734602451324e-01, 2.006753534078598e-01, 2.0067535340786e-01, 2.701734602451321e-01, 3.826237618923187e-01, 4.950740933418274e-01, 5.645722150802612e-01, 5.645722150802612e-01, 4.950740933418274e-01, 3.826237618923187e-01, 2.701734602451324e-01, 2.006753534078598e-01, 2.006753534078598e-01, 2.701734602451324e-01, 3.826237618923187e-01, 4.950740933418274e-01, 5.645722150802612e-01, 5.645722150802612e-01, 4.950740933418274e-01, 3.826237618923187e-01, 2.701734602451324e-01, 2.006753534078598e-01, 2.006753534078598e-01, 2.701734602451324e-01, 3.826237618923187e-01, 4.950740933418274e-01, 5.645722150802612e-01, 5.645722150802612e-01, 4.950740933418274e-01, 3.826237618923178e-01, 2.701734602451318e-01, 2.006753534078601e-01, 2.006753534078596e-01, 2.701734602451324e-01, 3.826237618923187e-01, 4.950740933418274e-01, 5.645722150802612e-01, 5.645722150802612e-01, 4.950740933418274e-01, 3.826237618923187e-01, 2.701734602451324e-01, 2.006753534078598e-01, 2.006753534078598e-01, 2.701734602451324e-01, 3.826237618923187e-01, 4.950740933418274e-01, 5.645722150802612e-01, 5.645722150802612e-01, 4.950740933418274e-01, 3.826237618923187e-01, 2.701734602451324e-01, 2.006753534078598e-01, 2.006753534078598e-01, 2.701734602451324e-01, 3.826237618923187e-01, 4.950740933418274e-01, 5.645722150802612e-01, 5.645722150802612e-01, 4.950740933418274e-01, 3.826237618923187e-01, 2.701734602451324e-01, 2.006753534078598e-01, 2.006753534078598e-01, 2.701734602451324e-01, 3.826237618923187e-01, 4.950740933418274e-01, 5.645722150802612e-01, 5.645722150802612e-01, 4.950740933418274e-01, 3.826237618923187e-01, 2.701734602451324e-01, 2.006753534078598e-01, 2.006753534078598e-01, 2.701734602451324e-01, 3.826237618923187e-01] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_DistrictHeatingCooling_Pipes_Examples_DHCPipe.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_DistrictHeatingCooling_Pipes_Examples_DHCPipe.txt index 66ee68c734..ff2c6f9b83 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_DistrictHeatingCooling_Pipes_Examples_DHCPipe.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_DistrictHeatingCooling_Pipes_Examples_DHCPipe.txt @@ -1,4 +1,4 @@ -last-generated=2021-02-17 +last-generated=2022-07-06 statistics-simulation= { "linear": "0, 0", @@ -7,11 +7,11 @@ statistics-simulation= "numerical Jacobians": "0" } time=[0e+00, 3.6e+03] -senTemIn.T=[3.231499938964844e+02, 3.231499938964844e+02, 3.231499938964844e+02, 3.431431579589844e+02, 3.427833251953125e+02, 3.231508178710938e+02, 3.232001342773438e+02, 3.258565063476562e+02, 3.431429748535156e+02, 3.427833251953125e+02, 3.231509704589844e+02, 3.232001342773438e+02, 3.258565063476562e+02, 3.431429748535156e+02, 3.427833251953125e+02, 3.231509704589844e+02, 3.232001342773438e+02, 3.258565063476562e+02, 3.431429748535156e+02, 3.427833251953125e+02, 3.231509704589844e+02, 3.232001342773438e+02, 3.258565063476562e+02, 3.431429748535156e+02, 3.427833251953125e+02, 3.231509704589844e+02, 3.231994934082031e+02, 3.258565673828124e+02, 3.431434631347656e+02, 3.427840270996094e+02, 3.231511840820312e+02, 3.231997680664062e+02, 3.258565673828125e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231511840820312e+02, 3.231997375488281e+02, 3.258565368652344e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.2315087890625e+02, 3.231995849609375e+02, 3.258565368652344e+02, 3.431433410644531e+02, 3.427840576171875e+02, 3.231509094238281e+02, 3.231995849609375e+02, 3.258565368652344e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.2315087890625e+02, 3.231997375488281e+02, 3.258566284179688e+02, 3.431434020996094e+02, 3.427840270996094e+02, 3.231511840820319e+02, 3.231995849609375e+02, 3.258565979003906e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231510009765625e+02, 3.231997985839844e+02, 3.25856689453125e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231508483886719e+02, 3.231998291015625e+02, 3.258566284179688e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231510009765625e+02, 3.2319970703125e+02, 3.258566589355469e+02, 3.431432495117188e+02, 3.427839965820312e+02, 3.231511840820312e+02, 3.2319970703125e+02, 3.25856689453125e+02, 3.431431579589844e+02, 3.427840270996094e+02, 3.231511535644531e+02, 3.231995849609375e+02, 3.25856689453125e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231511535644531e+02, 3.2319970703125e+02, 3.25856689453125e+02, 3.431434936523438e+02, 3.427840270996094e+02, 3.231511535644531e+02, 3.2319970703125e+02, 3.258565368652344e+02, 3.431432495117188e+02, 3.427840881347656e+02, 3.231511535644531e+02, 3.231997985839844e+02, 3.25856689453125e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231510620117188e+02] +senTemIn.T=[3.231499938964844e+02, 3.231499938964844e+02, 3.231499938964844e+02, 3.431431579589844e+02, 3.427833251953125e+02, 3.231508178710938e+02, 3.232001342773438e+02, 3.258565063476562e+02, 3.431429748535156e+02, 3.427833251953125e+02, 3.231509704589844e+02, 3.232001342773438e+02, 3.258565063476562e+02, 3.431429748535156e+02, 3.427833251953125e+02, 3.231509704589844e+02, 3.232001342773438e+02, 3.258565063476562e+02, 3.431429748535156e+02, 3.427833251953125e+02, 3.231509704589844e+02, 3.232001342773438e+02, 3.258565063476562e+02, 3.431429748535156e+02, 3.427833251953125e+02, 3.231509704589844e+02, 3.231994934082031e+02, 3.258565673828124e+02, 3.431434631347656e+02, 3.427840270996094e+02, 3.231511840820312e+02, 3.231997680664062e+02, 3.258565673828125e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231511840820312e+02, 3.231997375488281e+02, 3.258565368652344e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.2315087890625e+02, 3.231995849609375e+02, 3.258565368652344e+02, 3.431433410644531e+02, 3.427840576171875e+02, 3.231509094238281e+02, 3.231995849609375e+02, 3.258565979003906e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.2315087890625e+02, 3.231997375488281e+02, 3.258566284179688e+02, 3.431434020996094e+02, 3.427840270996094e+02, 3.231511840820319e+02, 3.231995849609375e+02, 3.258565979003906e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231510009765625e+02, 3.231997985839844e+02, 3.25856689453125e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231508483886719e+02, 3.231998291015625e+02, 3.258566284179688e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231510009765625e+02, 3.2319970703125e+02, 3.258565673828125e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231508483886719e+02, 3.2319970703125e+02, 3.25856689453125e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231510620117188e+02, 3.231995849609375e+02, 3.25856689453125e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231511535644531e+02, 3.2319970703125e+02, 3.25856689453125e+02, 3.431434936523438e+02, 3.427840270996094e+02, 3.231511535644531e+02, 3.2319970703125e+02, 3.25856689453125e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.23151123046875e+02, 3.2319970703125e+02, 3.258567199707031e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231511535644531e+02] senTemOut.T=[3.231499938964844e+02, 3.23078125e+02, 3.230263366699219e+02, 3.243440246582031e+02, 3.265996704101562e+02, 3.282265930175781e+02, 3.299019165039062e+02, 3.311763305664062e+02, 3.316387023925781e+02, 3.316739501953125e+02, 3.3175634765625e+02, 3.323572692871094e+02, 3.328843383789062e+02, 3.328268127441406e+02, 3.325004272460938e+02, 3.323312377929688e+02, 3.327571716308594e+02, 3.331625061035156e+02, 3.330202941894531e+02, 3.32635009765625e+02, 3.324248657226562e+02, 3.328223266601562e+02, 3.332078247070312e+02, 3.330518188476562e+02, 3.326569519042969e+02, 3.324401245117188e+02, 3.328329467773438e+02, 3.332152099609375e+02, 3.330569458007812e+02, 3.326605224609375e+02, 3.324425964355469e+02, 3.328346557617188e+02, 3.332164001464844e+02, 3.330578002929688e+02, 3.326611022949219e+02, 3.324430236816406e+02, 3.328349304199219e+02, 3.332166137695312e+02, 3.330579223632812e+02, 3.326611938476562e+02, 3.324430847167969e+02, 3.328349914550781e+02, 3.332166442871094e+02, 3.330579528808594e+02, 3.326611938476562e+02, 3.324430847167969e+02, 3.328349914550781e+02, 3.332166442871094e+02, 3.330579528808594e+02, 3.326611938476562e+02, 3.324430847167969e+02, 3.328349914550781e+02, 3.332166442871094e+02, 3.330579528808594e+02, 3.326611938476562e+02, 3.324430847167969e+02, 3.328349914550781e+02, 3.332166442871094e+02, 3.330579528808594e+02, 3.326611938476562e+02, 3.324430847167969e+02, 3.328349914550781e+02, 3.332166442871094e+02, 3.330579528808594e+02, 3.326611938476562e+02, 3.324430847167969e+02, 3.328349914550781e+02, 3.332166442871094e+02, 3.330579528808594e+02, 3.326611938476562e+02, 3.324430847167969e+02, 3.328349914550781e+02, 3.332166442871094e+02, 3.330579528808594e+02, 3.326611938476562e+02, 3.324430847167969e+02, 3.328349914550781e+02, 3.332166442871094e+02, 3.330579528808594e+02, 3.326611938476562e+02, 3.324430847167969e+02, 3.328349914550781e+02, 3.332166442871094e+02, 3.330579528808594e+02, 3.326611938476562e+02, 3.324430847167969e+02, 3.328349914550781e+02, 3.332166442871094e+02, 3.330579528808594e+02, 3.326611938476562e+02, 3.324430847167969e+02, 3.328349914550781e+02, 3.332166442871094e+02, 3.330579528808594e+02, 3.326611938476562e+02, 3.324430847167969e+02, 3.328349914550781e+02, 3.332166442871094e+02, 3.330579528808594e+02, 3.326611938476562e+02, 3.324430847167969e+02] -senTemIn1.T=[3.231499938964844e+02, 3.231499938964844e+02, 3.231499938964844e+02, 3.431431579589844e+02, 3.427833251953125e+02, 3.231508178710938e+02, 3.232001342773438e+02, 3.258565063476562e+02, 3.431429748535156e+02, 3.427833251953125e+02, 3.231509704589844e+02, 3.232001342773438e+02, 3.258565063476562e+02, 3.431429748535156e+02, 3.427833251953125e+02, 3.231509704589844e+02, 3.232001342773438e+02, 3.258565063476562e+02, 3.431429748535156e+02, 3.427833251953125e+02, 3.231509704589844e+02, 3.232001342773438e+02, 3.258565063476562e+02, 3.431429748535156e+02, 3.427833251953125e+02, 3.231509704589844e+02, 3.231994934082031e+02, 3.258565673828124e+02, 3.431434631347656e+02, 3.427840270996094e+02, 3.231511840820312e+02, 3.231997680664062e+02, 3.258565673828125e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231511840820312e+02, 3.231997375488281e+02, 3.258565368652344e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.2315087890625e+02, 3.231995849609375e+02, 3.258565368652344e+02, 3.431433410644531e+02, 3.427840576171875e+02, 3.231509094238281e+02, 3.231995849609375e+02, 3.258565368652344e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.2315087890625e+02, 3.231997375488281e+02, 3.258566284179688e+02, 3.431434020996094e+02, 3.427840270996094e+02, 3.231511840820319e+02, 3.231995849609375e+02, 3.258565979003906e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231510009765625e+02, 3.231997985839844e+02, 3.25856689453125e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231508483886719e+02, 3.231998291015625e+02, 3.258566284179688e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231510009765625e+02, 3.2319970703125e+02, 3.258566589355469e+02, 3.431432495117188e+02, 3.427839965820312e+02, 3.231511840820312e+02, 3.2319970703125e+02, 3.25856689453125e+02, 3.431431579589844e+02, 3.427840270996094e+02, 3.231511535644531e+02, 3.231995849609375e+02, 3.25856689453125e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231511535644531e+02, 3.2319970703125e+02, 3.25856689453125e+02, 3.431434936523438e+02, 3.427840270996094e+02, 3.231511535644531e+02, 3.2319970703125e+02, 3.258565368652344e+02, 3.431432495117188e+02, 3.427840881347656e+02, 3.231511535644531e+02, 3.231997985839844e+02, 3.25856689453125e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231510620117188e+02] -senTemOut1.T=[3.231499938964844e+02, 3.23078125e+02, 3.230263366699219e+02, 3.229902954101562e+02, 3.229652709960938e+02, 3.229478759765625e+02, 3.229357604980469e+02, 3.229273376464844e+02, 3.229214782714844e+02, 3.229173889160156e+02, 3.2291455078125e+02, 3.2291259765625e+02, 3.229112243652344e+02, 3.229102783203125e+02, 3.229096069335938e+02, 3.229091491699219e+02, 3.229088134765625e+02, 3.229085998535156e+02, 3.22908447265625e+02, 3.229083251953125e+02, 3.229082641601562e+02, 3.22908203125e+02, 3.229081726074219e+02, 3.229081420898438e+02, 3.229081115722656e+02, 3.251618347167969e+02, 3.277839050292969e+02, 3.295740356445312e+02, 3.303312377929688e+02, 3.306990966796875e+02, 3.313598022460938e+02, 3.321110534667969e+02, 3.326002197265625e+02, 3.323809204101562e+02, 3.321159973144531e+02, 3.323475036621094e+02, 3.327998352050781e+02, 3.33080078125e+02, 3.327156677246094e+02, 3.323496704101562e+02, 3.325107727050781e+02, 3.329139404296875e+02, 3.331596984863281e+02, 3.327871704101562e+02, 3.324149169921875e+02, 3.325648193359375e+02, 3.329658813476562e+02, 3.332376403808594e+02, 3.328053283691406e+02, 3.323761291503906e+02, 3.325154724121094e+02, 3.328884887695312e+02, 3.331064147949219e+02, 3.326919555664062e+02, 3.3228955078125e+02, 3.324185485839844e+02, 3.328010559082031e+02, 3.330509033203125e+02, 3.326552734375e+02, 3.322615356445312e+02, 3.324017944335938e+02, 3.327901611328125e+02, 3.330440368652344e+02, 3.326513671875e+02, 3.322596435546875e+02, 3.324113159179688e+02, 3.328046264648438e+02, 3.330582275390625e+02, 3.326737670898438e+02, 3.322915954589844e+02, 3.324325561523438e+02, 3.328352966308594e+02, 3.330576171875e+02, 3.326521301269531e+02, 3.323348083496094e+02, 3.324600219726562e+02, 3.328503723144531e+02, 3.33085205078125e+02, 3.327161865234375e+02, 3.323321838378906e+02, 3.324501037597656e+02, 3.328235473632812e+02, 3.330668029785156e+02, 3.326706237792969e+02, 3.322718505859375e+02, 3.324081726074219e+02, 3.327940368652344e+02, 3.330461120605469e+02, 3.326560668945312e+02, 3.322618103027344e+02, 3.32401123046875e+02, 3.327892456054688e+02, 3.33044677734375e+02, 3.326623840332031e+02, 3.322737121582031e+02, 3.324102172851562e+02, 3.327981262207031e+02, 3.330437927246094e+02, 3.32677734375e+02, 3.322769165039062e+02, 3.324771118164062e+02] -senTemIn2.T=[3.231499938964844e+02, 3.231499938964844e+02, 3.231499938964844e+02, 3.431431579589844e+02, 3.427833251953125e+02, 3.231508178710938e+02, 3.232001342773438e+02, 3.258565063476562e+02, 3.431429748535156e+02, 3.427833251953125e+02, 3.231509704589844e+02, 3.232001342773438e+02, 3.258565063476562e+02, 3.431429748535156e+02, 3.427833251953125e+02, 3.231509704589844e+02, 3.232001342773438e+02, 3.258565063476562e+02, 3.431429748535156e+02, 3.427833251953125e+02, 3.231509704589844e+02, 3.232001342773438e+02, 3.258565063476562e+02, 3.431429748535156e+02, 3.427833251953125e+02, 3.231509704589844e+02, 3.231994934082031e+02, 3.258565673828124e+02, 3.431434631347656e+02, 3.427840270996094e+02, 3.231511840820312e+02, 3.231997680664062e+02, 3.258565673828125e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231511840820312e+02, 3.231997375488281e+02, 3.258565368652344e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.2315087890625e+02, 3.231995849609375e+02, 3.258565368652344e+02, 3.431433410644531e+02, 3.427840576171875e+02, 3.231509094238281e+02, 3.231995849609375e+02, 3.258565368652344e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.2315087890625e+02, 3.231997375488281e+02, 3.258566284179688e+02, 3.431434020996094e+02, 3.427840270996094e+02, 3.231511840820319e+02, 3.231995849609375e+02, 3.258565979003906e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231510009765625e+02, 3.231997985839844e+02, 3.25856689453125e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231508483886719e+02, 3.231998291015625e+02, 3.258566284179688e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231510009765625e+02, 3.2319970703125e+02, 3.258566589355469e+02, 3.431432495117188e+02, 3.427839965820312e+02, 3.231511840820312e+02, 3.2319970703125e+02, 3.25856689453125e+02, 3.431431579589844e+02, 3.427840270996094e+02, 3.231511535644531e+02, 3.231995849609375e+02, 3.25856689453125e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231511535644531e+02, 3.2319970703125e+02, 3.25856689453125e+02, 3.431434936523438e+02, 3.427840270996094e+02, 3.231511535644531e+02, 3.2319970703125e+02, 3.258565368652344e+02, 3.431432495117188e+02, 3.427840881347656e+02, 3.231511535644531e+02, 3.231997985839844e+02, 3.25856689453125e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231510620117188e+02] -senTemOut2.T=[3.231499938964844e+02, 3.230794067382812e+02, 3.230285034179688e+02, 3.229931335449219e+02, 3.229685363769531e+02, 3.229514465332031e+02, 3.229395751953125e+02, 3.229313049316406e+02, 3.229255676269531e+02, 3.229216003417969e+02, 3.229188232421875e+02, 3.229169006347656e+02, 3.229155578613281e+02, 3.229146423339844e+02, 3.229140014648438e+02, 3.2291357421875e+02, 3.229132690429688e+02, 3.229130859375e+02, 3.229129333496094e+02, 3.22912841796875e+02, 3.229128112792969e+02, 3.229127807617188e+02, 3.229127502441406e+02, 3.229127502441406e+02, 3.229127502441406e+02, 3.251667175292969e+02, 3.277890625e+02, 3.295794372558594e+02, 3.303367309570312e+02, 3.307046203613281e+02, 3.313654479980469e+02, 3.321167907714844e+02, 3.326060180664062e+02, 3.323867492675781e+02, 3.321217956542969e+02, 3.323533630371094e+02, 3.328057556152344e+02, 3.330860290527344e+02, 3.327216186523438e+02, 3.323555908203125e+02, 3.325167236328125e+02, 3.329199829101562e+02, 3.331658020019531e+02, 3.327932434082031e+02, 3.324209594726562e+02, 3.325709228515625e+02, 3.329720153808594e+02, 3.332438354492188e+02, 3.328114929199219e+02, 3.323822631835938e+02, 3.325216369628906e+02, 3.328947143554688e+02, 3.331127014160156e+02, 3.326982116699219e+02, 3.322957763671875e+02, 3.324248046875e+02, 3.32807373046875e+02, 3.330572814941406e+02, 3.3266162109375e+02, 3.322678833007812e+02, 3.324081420898438e+02, 3.327966003417969e+02, 3.330505065917969e+02, 3.326578063964844e+02, 3.322660522460938e+02, 3.324177856445312e+02, 3.328111572265625e+02, 3.330647888183594e+02, 3.326802978515625e+02, 3.322981262207031e+02, 3.324390869140625e+02, 3.328419189453125e+02, 3.330642700195312e+02, 3.326587829589844e+02, 3.323414306640625e+02, 3.324666748046875e+02, 3.328570556640625e+02, 3.330919494628906e+02, 3.32722900390625e+02, 3.323388671875e+02, 3.324568481445312e+02, 3.32830322265625e+02, 3.330736389160156e+02, 3.326774291992188e+02, 3.322786560058594e+02, 3.324149780273438e+02, 3.328009033203125e+02, 3.330530090332031e+02, 3.326629638671875e+02, 3.322686767578125e+02, 3.324080200195312e+02, 3.327962036132812e+02, 3.330516967773438e+02, 3.326693725585938e+02, 3.322806701660156e+02, 3.324171752929688e+02, 3.3280517578125e+02, 3.330508728027344e+02, 3.32684814453125e+02, 3.322839660644531e+02, 3.324841918945312e+02] -senTemIn3.T=[3.231499938964844e+02, 3.231499938964844e+02, 3.231499938964844e+02, 3.431431579589844e+02, 3.427833251953125e+02, 3.231508178710938e+02, 3.232001342773438e+02, 3.258565063476562e+02, 3.431429748535156e+02, 3.427833251953125e+02, 3.231509704589844e+02, 3.232001342773438e+02, 3.258565063476562e+02, 3.431429748535156e+02, 3.427833251953125e+02, 3.231509704589844e+02, 3.232001342773438e+02, 3.258565063476562e+02, 3.431429748535156e+02, 3.427833251953125e+02, 3.231509704589844e+02, 3.232001342773438e+02, 3.258565063476562e+02, 3.431429748535156e+02, 3.427833251953125e+02, 3.231509704589844e+02, 3.231994934082031e+02, 3.258565673828124e+02, 3.431434631347656e+02, 3.427840270996094e+02, 3.231511840820312e+02, 3.231997680664062e+02, 3.258565673828125e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231511840820312e+02, 3.231997375488281e+02, 3.258565368652344e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.2315087890625e+02, 3.231995849609375e+02, 3.258565368652344e+02, 3.431433410644531e+02, 3.427840576171875e+02, 3.231509094238281e+02, 3.231995849609375e+02, 3.258565368652344e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.2315087890625e+02, 3.231997375488281e+02, 3.258566284179688e+02, 3.431434020996094e+02, 3.427840270996094e+02, 3.231511840820319e+02, 3.231995849609375e+02, 3.258565979003906e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231510009765625e+02, 3.231997985839844e+02, 3.25856689453125e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231508483886719e+02, 3.231998291015625e+02, 3.258566284179688e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231510009765625e+02, 3.2319970703125e+02, 3.258566589355469e+02, 3.431432495117188e+02, 3.427839965820312e+02, 3.231511840820312e+02, 3.2319970703125e+02, 3.25856689453125e+02, 3.431431579589844e+02, 3.427840270996094e+02, 3.231511535644531e+02, 3.231995849609375e+02, 3.25856689453125e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231511535644531e+02, 3.2319970703125e+02, 3.25856689453125e+02, 3.431434936523438e+02, 3.427840270996094e+02, 3.231511535644531e+02, 3.2319970703125e+02, 3.258565368652344e+02, 3.431432495117188e+02, 3.427840881347656e+02, 3.231511535644531e+02, 3.231997985839844e+02, 3.25856689453125e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231510620117188e+02] -senTemOut3.T=[3.231499938964844e+02, 3.23078125e+02, 3.230263366699219e+02, 3.229902954101562e+02, 3.229652709960938e+02, 3.229478759765625e+02, 3.229357604980469e+02, 3.229273376464844e+02, 3.229214782714844e+02, 3.229173889160156e+02, 3.2291455078125e+02, 3.2291259765625e+02, 3.229112243652344e+02, 3.229102783203125e+02, 3.229096069335938e+02, 3.229091491699219e+02, 3.229088134765625e+02, 3.229085998535156e+02, 3.22908447265625e+02, 3.229083251953125e+02, 3.229082641601562e+02, 3.22908203125e+02, 3.229081726074219e+02, 3.229081420898438e+02, 3.229081115722656e+02, 3.251618347167969e+02, 3.277839050292969e+02, 3.295740356445312e+02, 3.303312377929688e+02, 3.306990966796875e+02, 3.313598022460938e+02, 3.321110534667969e+02, 3.326002197265625e+02, 3.323809204101562e+02, 3.321159973144531e+02, 3.323475036621094e+02, 3.327998352050781e+02, 3.33080078125e+02, 3.327156677246094e+02, 3.323496704101562e+02, 3.325107727050781e+02, 3.329139404296875e+02, 3.331596984863281e+02, 3.327871704101562e+02, 3.324149169921875e+02, 3.325648193359375e+02, 3.329658813476562e+02, 3.332376403808594e+02, 3.328053283691406e+02, 3.323761291503906e+02, 3.325154724121094e+02, 3.328884887695312e+02, 3.331064147949219e+02, 3.326919555664062e+02, 3.3228955078125e+02, 3.324185485839844e+02, 3.328010559082031e+02, 3.330509033203125e+02, 3.326552734375e+02, 3.322615356445312e+02, 3.324017944335938e+02, 3.327901611328125e+02, 3.330440368652344e+02, 3.326513671875e+02, 3.322596435546875e+02, 3.324113159179688e+02, 3.328046264648438e+02, 3.330582275390625e+02, 3.326737670898438e+02, 3.322915954589844e+02, 3.324325561523438e+02, 3.328352966308594e+02, 3.330576171875e+02, 3.326521301269531e+02, 3.323348083496094e+02, 3.324600219726562e+02, 3.328503723144531e+02, 3.33085205078125e+02, 3.327161865234375e+02, 3.323321838378906e+02, 3.324501037597656e+02, 3.328235473632812e+02, 3.330668029785156e+02, 3.326706237792969e+02, 3.322718505859375e+02, 3.324081726074219e+02, 3.327940368652344e+02, 3.330461120605469e+02, 3.326560668945312e+02, 3.322618103027344e+02, 3.32401123046875e+02, 3.327892456054688e+02, 3.33044677734375e+02, 3.326623840332031e+02, 3.322737121582031e+02, 3.324102172851562e+02, 3.327981262207031e+02, 3.330437927246094e+02, 3.32677734375e+02, 3.322769165039062e+02, 3.324771118164062e+02] +senTemIn1.T=[3.231499938964844e+02, 3.231499938964844e+02, 3.231499938964844e+02, 3.431431579589844e+02, 3.427833251953125e+02, 3.231508178710938e+02, 3.232001342773438e+02, 3.258565063476562e+02, 3.431429748535156e+02, 3.427833251953125e+02, 3.231509704589844e+02, 3.232001342773438e+02, 3.258565063476562e+02, 3.431429748535156e+02, 3.427833251953125e+02, 3.231509704589844e+02, 3.232001342773438e+02, 3.258565063476562e+02, 3.431429748535156e+02, 3.427833251953125e+02, 3.231509704589844e+02, 3.232001342773438e+02, 3.258565063476562e+02, 3.431429748535156e+02, 3.427833251953125e+02, 3.231509704589844e+02, 3.231994934082031e+02, 3.258565673828124e+02, 3.431434631347656e+02, 3.427840270996094e+02, 3.231511840820312e+02, 3.231997680664062e+02, 3.258565673828125e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231511840820312e+02, 3.231997375488281e+02, 3.258565368652344e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.2315087890625e+02, 3.231995849609375e+02, 3.258565368652344e+02, 3.431433410644531e+02, 3.427840576171875e+02, 3.231509094238281e+02, 3.231995849609375e+02, 3.258565979003906e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.2315087890625e+02, 3.231997375488281e+02, 3.258566284179688e+02, 3.431434020996094e+02, 3.427840270996094e+02, 3.231511840820319e+02, 3.231995849609375e+02, 3.258565979003906e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231510009765625e+02, 3.231997985839844e+02, 3.25856689453125e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231508483886719e+02, 3.231998291015625e+02, 3.258566284179688e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231510009765625e+02, 3.2319970703125e+02, 3.258565673828125e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231508483886719e+02, 3.2319970703125e+02, 3.25856689453125e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231510620117188e+02, 3.231995849609375e+02, 3.25856689453125e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231511535644531e+02, 3.2319970703125e+02, 3.25856689453125e+02, 3.431434936523438e+02, 3.427840270996094e+02, 3.231511535644531e+02, 3.2319970703125e+02, 3.25856689453125e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.23151123046875e+02, 3.2319970703125e+02, 3.258567199707031e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231511535644531e+02] +senTemOut1.T=[3.231499938964844e+02, 3.23078125e+02, 3.230263366699219e+02, 3.229902954101562e+02, 3.229652709960938e+02, 3.229478759765625e+02, 3.229357604980469e+02, 3.229273376464844e+02, 3.229214782714844e+02, 3.229173889160156e+02, 3.2291455078125e+02, 3.2291259765625e+02, 3.229112243652344e+02, 3.229102783203125e+02, 3.229096069335938e+02, 3.229091491699219e+02, 3.229088134765625e+02, 3.229085998535156e+02, 3.22908447265625e+02, 3.229083251953125e+02, 3.229082641601562e+02, 3.22908203125e+02, 3.229081726074219e+02, 3.229081420898438e+02, 3.229081115722656e+02, 3.251618347167969e+02, 3.277672729492188e+02, 3.295624694824219e+02, 3.303231811523438e+02, 3.306934814453125e+02, 3.313558959960938e+02, 3.321083374023438e+02, 3.325983276367188e+02, 3.32379638671875e+02, 3.321150817871094e+02, 3.323468933105469e+02, 3.327993774414062e+02, 3.330797729492188e+02, 3.327154541015625e+02, 3.323495178222656e+02, 3.325106506347656e+02, 3.329138793945312e+02, 3.3315966796875e+02, 3.327871398925781e+02, 3.324148864746094e+02, 3.325648193359375e+02, 3.329658813476562e+02, 3.332366333007812e+02, 3.328019714355469e+02, 3.323737487792969e+02, 3.324495849609375e+02, 3.328414916992188e+02, 3.3307373046875e+02, 3.326692199707031e+02, 3.322737426757812e+02, 3.324075317382812e+02, 3.327933654785156e+02, 3.330455627441406e+02, 3.326515808105469e+02, 3.322589721679688e+02, 3.323999938964844e+02, 3.327889099121094e+02, 3.330431823730469e+02, 3.326507568359375e+02, 3.322592163085938e+02, 3.324110107421875e+02, 3.32804443359375e+02, 3.330580749511719e+02, 3.326736450195312e+02, 3.322915344238281e+02, 3.324232788085938e+02, 3.328421630859375e+02, 3.330853576660156e+02, 3.327119445800781e+02, 3.32301025390625e+02, 3.324324035644531e+02, 3.328441162109375e+02, 3.33096435546875e+02, 3.326912536621094e+02, 3.323147888183594e+02, 3.324383239746094e+02, 3.328153381347656e+02, 3.330610656738281e+02, 3.326666259765625e+02, 3.322690734863281e+02, 3.324062194824219e+02, 3.327926940917969e+02, 3.33045166015625e+02, 3.326553955078125e+02, 3.322613525390625e+02, 3.324008178710938e+02, 3.327890319824219e+02, 3.330425720214844e+02, 3.326765441894531e+02, 3.322760925292969e+02, 3.323958740234375e+02, 3.327855529785156e+02, 3.330335998535156e+02, 3.3266650390625e+02, 3.322695007324219e+02, 3.324291381835938e+02] +senTemIn2.T=[3.231499938964844e+02, 3.231499938964844e+02, 3.231499938964844e+02, 3.431431579589844e+02, 3.427833251953125e+02, 3.231508178710938e+02, 3.232001342773438e+02, 3.258565063476562e+02, 3.431429748535156e+02, 3.427833251953125e+02, 3.231509704589844e+02, 3.232001342773438e+02, 3.258565063476562e+02, 3.431429748535156e+02, 3.427833251953125e+02, 3.231509704589844e+02, 3.232001342773438e+02, 3.258565063476562e+02, 3.431429748535156e+02, 3.427833251953125e+02, 3.231509704589844e+02, 3.232001342773438e+02, 3.258565063476562e+02, 3.431429748535156e+02, 3.427833251953125e+02, 3.231509704589844e+02, 3.231994934082031e+02, 3.258565673828124e+02, 3.431434631347656e+02, 3.427840270996094e+02, 3.231511840820312e+02, 3.231997680664062e+02, 3.258565673828125e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231511840820312e+02, 3.231997375488281e+02, 3.258565368652344e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.2315087890625e+02, 3.231995849609375e+02, 3.258565368652344e+02, 3.431433410644531e+02, 3.427840576171875e+02, 3.231509094238281e+02, 3.231995849609375e+02, 3.258565979003906e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.2315087890625e+02, 3.231997375488281e+02, 3.258566284179688e+02, 3.431434020996094e+02, 3.427840270996094e+02, 3.231511840820319e+02, 3.231995849609375e+02, 3.258565979003906e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231510009765625e+02, 3.231997985839844e+02, 3.25856689453125e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231508483886719e+02, 3.231998291015625e+02, 3.258566284179688e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231510009765625e+02, 3.2319970703125e+02, 3.258565673828125e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231508483886719e+02, 3.2319970703125e+02, 3.25856689453125e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231510620117188e+02, 3.231995849609375e+02, 3.25856689453125e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231511535644531e+02, 3.2319970703125e+02, 3.25856689453125e+02, 3.431434936523438e+02, 3.427840270996094e+02, 3.231511535644531e+02, 3.2319970703125e+02, 3.25856689453125e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.23151123046875e+02, 3.2319970703125e+02, 3.258567199707031e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231511535644531e+02] +senTemOut2.T=[3.231499938964844e+02, 3.230794067382812e+02, 3.230285034179688e+02, 3.229931335449219e+02, 3.229685363769531e+02, 3.229514465332031e+02, 3.229395751953125e+02, 3.229313049316406e+02, 3.229255676269531e+02, 3.229216003417969e+02, 3.229188232421875e+02, 3.229169006347656e+02, 3.229155578613281e+02, 3.229146423339844e+02, 3.229140014648438e+02, 3.2291357421875e+02, 3.229132690429688e+02, 3.229130859375e+02, 3.229129333496094e+02, 3.22912841796875e+02, 3.229128112792969e+02, 3.229127807617188e+02, 3.229127502441406e+02, 3.229127502441406e+02, 3.229127502441406e+02, 3.251667175292969e+02, 3.277724304199219e+02, 3.2956787109375e+02, 3.303286743164062e+02, 3.306990356445312e+02, 3.313615417480469e+02, 3.321140747070312e+02, 3.326041259765625e+02, 3.323854370117188e+02, 3.321208801269531e+02, 3.323527221679688e+02, 3.328052978515625e+02, 3.330857238769531e+02, 3.327214050292969e+02, 3.323554382324219e+02, 3.325166320800781e+02, 3.32919921875e+02, 3.331657409667969e+02, 3.32793212890625e+02, 3.324209289550781e+02, 3.325708923339844e+02, 3.329720153808594e+02, 3.332428283691406e+02, 3.328081359863281e+02, 3.323798828125e+02, 3.324557495117188e+02, 3.328477172851562e+02, 3.330799865722656e+02, 3.326754760742188e+02, 3.322799682617188e+02, 3.324137878417969e+02, 3.327996826171875e+02, 3.330519409179688e+02, 3.326578979492188e+02, 3.322652893066406e+02, 3.324063415527344e+02, 3.327953491210938e+02, 3.330496215820312e+02, 3.326571960449219e+02, 3.32265625e+02, 3.3241748046875e+02, 3.328109436035156e+02, 3.330646362304688e+02, 3.326802062988281e+02, 3.322980346679688e+02, 3.324298095703125e+02, 3.328487548828125e+02, 3.330920104980469e+02, 3.327185668945312e+02, 3.323076477050781e+02, 3.324390258789062e+02, 3.32850830078125e+02, 3.331031799316406e+02, 3.326979675292969e+02, 3.323214721679688e+02, 3.32445068359375e+02, 3.328221130371094e+02, 3.330679016113281e+02, 3.326734313964844e+02, 3.322758483886719e+02, 3.324130554199219e+02, 3.32799560546875e+02, 3.330520629882812e+02, 3.326622924804688e+02, 3.322682189941406e+02, 3.3240771484375e+02, 3.327959594726562e+02, 3.330495910644531e+02, 3.326835021972656e+02, 3.322830200195312e+02, 3.324028625488281e+02, 3.327925720214844e+02, 3.330406799316406e+02, 3.32673583984375e+02, 3.322765197753906e+02, 3.324362182617188e+02] +senTemIn3.T=[3.231499938964844e+02, 3.231499938964844e+02, 3.231499938964844e+02, 3.431431579589844e+02, 3.427833251953125e+02, 3.231508178710938e+02, 3.232001342773438e+02, 3.258565063476562e+02, 3.431429748535156e+02, 3.427833251953125e+02, 3.231509704589844e+02, 3.232001342773438e+02, 3.258565063476562e+02, 3.431429748535156e+02, 3.427833251953125e+02, 3.231509704589844e+02, 3.232001342773438e+02, 3.258565063476562e+02, 3.431429748535156e+02, 3.427833251953125e+02, 3.231509704589844e+02, 3.232001342773438e+02, 3.258565063476562e+02, 3.431429748535156e+02, 3.427833251953125e+02, 3.231509704589844e+02, 3.231994934082031e+02, 3.258565673828124e+02, 3.431434631347656e+02, 3.427840270996094e+02, 3.231511840820312e+02, 3.231997680664062e+02, 3.258565673828125e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231511840820312e+02, 3.231997375488281e+02, 3.258565368652344e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.2315087890625e+02, 3.231995849609375e+02, 3.258565368652344e+02, 3.431433410644531e+02, 3.427840576171875e+02, 3.231509094238281e+02, 3.231995849609375e+02, 3.258565979003906e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.2315087890625e+02, 3.231997375488281e+02, 3.258566284179688e+02, 3.431434020996094e+02, 3.427840270996094e+02, 3.231511840820319e+02, 3.231995849609375e+02, 3.258565979003906e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231510009765625e+02, 3.231997985839844e+02, 3.25856689453125e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231508483886719e+02, 3.231998291015625e+02, 3.258566284179688e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231510009765625e+02, 3.2319970703125e+02, 3.258565673828125e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231508483886719e+02, 3.2319970703125e+02, 3.25856689453125e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231510620117188e+02, 3.231995849609375e+02, 3.25856689453125e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231511535644531e+02, 3.2319970703125e+02, 3.25856689453125e+02, 3.431434936523438e+02, 3.427840270996094e+02, 3.231511535644531e+02, 3.2319970703125e+02, 3.25856689453125e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.23151123046875e+02, 3.2319970703125e+02, 3.258567199707031e+02, 3.431432495117188e+02, 3.427840270996094e+02, 3.231511535644531e+02] +senTemOut3.T=[3.231499938964844e+02, 3.23078125e+02, 3.230263366699219e+02, 3.229902954101562e+02, 3.229652709960938e+02, 3.229478759765625e+02, 3.229357604980469e+02, 3.229273376464844e+02, 3.229214782714844e+02, 3.229173889160156e+02, 3.2291455078125e+02, 3.2291259765625e+02, 3.229112243652344e+02, 3.229102783203125e+02, 3.229096069335938e+02, 3.229091491699219e+02, 3.229088134765625e+02, 3.229085998535156e+02, 3.22908447265625e+02, 3.229083251953125e+02, 3.229082641601562e+02, 3.22908203125e+02, 3.229081726074219e+02, 3.229081420898438e+02, 3.229081115722656e+02, 3.251618347167969e+02, 3.277672729492188e+02, 3.295624694824219e+02, 3.303231811523438e+02, 3.306934814453125e+02, 3.313558959960938e+02, 3.321083374023438e+02, 3.325983276367188e+02, 3.32379638671875e+02, 3.321150817871094e+02, 3.323468933105469e+02, 3.327993774414062e+02, 3.330797729492188e+02, 3.327154541015625e+02, 3.323495178222656e+02, 3.325106506347656e+02, 3.329138793945312e+02, 3.3315966796875e+02, 3.327871398925781e+02, 3.324148864746094e+02, 3.325648193359375e+02, 3.329658813476562e+02, 3.332366333007812e+02, 3.328019714355469e+02, 3.323737487792969e+02, 3.324495849609375e+02, 3.328414916992188e+02, 3.3307373046875e+02, 3.326692199707031e+02, 3.322737426757812e+02, 3.324075317382812e+02, 3.327933654785156e+02, 3.330455627441406e+02, 3.326515808105469e+02, 3.322589721679688e+02, 3.323999938964844e+02, 3.327889099121094e+02, 3.330431823730469e+02, 3.326507568359375e+02, 3.322592163085938e+02, 3.324110107421875e+02, 3.32804443359375e+02, 3.330580749511719e+02, 3.326736450195312e+02, 3.322915344238281e+02, 3.324232788085938e+02, 3.328421630859375e+02, 3.330853576660156e+02, 3.327119445800781e+02, 3.32301025390625e+02, 3.324324035644531e+02, 3.328441162109375e+02, 3.33096435546875e+02, 3.326912536621094e+02, 3.323147888183594e+02, 3.324383239746094e+02, 3.328153381347656e+02, 3.330610656738281e+02, 3.326666259765625e+02, 3.322690734863281e+02, 3.324062194824219e+02, 3.327926940917969e+02, 3.33045166015625e+02, 3.326553955078125e+02, 3.322613525390625e+02, 3.324008178710938e+02, 3.327890319824219e+02, 3.330425720214844e+02, 3.326765441894531e+02, 3.322760925292969e+02, 3.323958740234375e+02, 3.327855529785156e+02, 3.330335998535156e+02, 3.3266650390625e+02, 3.322695007324219e+02, 3.324291381835938e+02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Examples_FlowSystem_Basic.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Examples_FlowSystem_Basic.txt index fffa4a355b..8c379c2466 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Examples_FlowSystem_Basic.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Examples_FlowSystem_Basic.txt @@ -1,7 +1,7 @@ -last-generated=2021-03-24 +last-generated=2022-05-23 statistics-initialization= { - "nonlinear": "0, 0, 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, 1, 0, 1, 1, 1", + "nonlinear": "0, 0, 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, 1, 0, 1, 1, 1", "numerical Jacobians": "0" } statistics-simulation= @@ -12,5 +12,5 @@ statistics-simulation= "numerical Jacobians": "0" } time=[0e+00, 1e+03] -pmpNorth.m_flow=[-5.951683931519971e-19, 3.940259456634521e+00, 5.780949115753174e+00, 5.80854606628418e+00, 5.689211368560791e+00, 5.604321479797363e+00, 5.557230949401855e+00, 5.54053783416748e+00, 5.547830581665039e+00, 5.572251319885254e+00, 5.607269763946533e+00, 5.646347999572754e+00, 5.6820068359375e+00, 5.722008228302002e+00, 5.762612819671631e+00, 5.800474643707275e+00, 5.834405422210693e+00, 5.864439964294434e+00, 5.890819072723389e+00, 5.913846015930176e+00, 5.933794975280762e+00, 5.950905799865723e+00, 5.965383529663086e+00, 5.977397441864014e+00, 5.987080574035645e+00, 5.994532585144043e+00, 5.999839305877686e+00, 6.391313076019287e+00, 6.808255672454834e+00, 6.981492519378662e+00, 7.000439643859863e+00, 6.957545757293701e+00, 6.904160499572754e+00, 6.857441902160645e+00, 6.818737983703613e+00, 6.784757614135742e+00, 6.752568244934082e+00, 6.71914005279541e+00, 6.682178497314453e+00, 6.64255428314209e+00, 6.599846363067627e+00, 6.552388668060303e+00, 6.499032974243164e+00, 6.439064502716064e+00, 6.371935367584229e+00, 6.297025680541992e+00, 6.213579654693604e+00, 6.120823860168457e+00, 6.01792573928833e+00, 5.904001235961914e+00, 5.778128623962402e+00, 4.468202114105225e+00, 1.739773869514465e+00, 4.999841153621674e-01, 9.249894320964813e-02, 2.046386711299419e-02, 1.303396373987198e-02, 1.241523679345846e-02, 1.200814824551344e-02, 1.149851176887751e-02, 1.088306773453951e-02, 1.016378961503506e-02, 9.34457965195179e-03, 8.430240675806999e-03, 7.433011662214994e-03, 6.376351695507765e-03, 5.294537637382746e-03, 4.231808707118034e-03, 3.237056080251932e-03, 2.354720840230584e-03, 1.619373331777751e-03, 1.045171520672739e-03, 6.271822494454682e-04, 3.45812295563519e-04, 1.728136703604832e-04, 7.751656812615693e-05, 3.186337926308624e-05, 1.339137270406354e-05, 7.036144779704046e-06, 5.840371159138158e-06, 6.757406936230836e-06, 7.565248324681306e-06, 6.634785222559003e-06, 4.666759650717722e-06, 2.836348585333326e-06, 1.57732165462221e-06, 7.94891150235344e-07, 3.779262272018968e-07, 1.74874031699801e-07, 7.329615669959821e-08, 2.930653408839134e-08, 1.298729035426049e-08, 6.395400209413538e-09, 3.227918821124831e-09, 1.574490315903176e-09, 8.413854057920389e-10, 5.578522643823192e-10, 4.679692744424813e-10, 5.214274012566023e-10, 6.025122067931932e-10, 6.060710822097803e-10] -pmpSouth.m_flow=[-5.086676349554894e-19, 3.545428037643433e+00, 5.229358196258545e+00, 5.277117252349854e+00, 5.182936668395996e+00, 5.114248752593994e+00, 5.076250076293945e+00, 5.063342094421387e+00, 5.070395946502686e+00, 5.091778755187988e+00, 5.122066974639893e+00, 5.155210971832275e+00, 5.18637228012085e+00, 5.221340656280518e+00, 5.256575107574463e+00, 5.289433002471924e+00, 5.318981647491455e+00, 5.345248699188232e+00, 5.368416309356689e+00, 5.388721466064453e+00, 5.406378269195557e+00, 5.42157506942749e+00, 5.434471130371094e+00, 5.445199966430664e+00, 5.453864574432373e+00, 5.460544109344482e+00, 5.465306758880615e+00, 5.778447151184082e+00, 6.106536388397217e+00, 6.24411678314209e+00, 6.263262271881104e+00, 6.233721256256104e+00, 6.194432735443115e+00, 6.158893585205078e+00, 6.128529071807861e+00, 6.101089477539062e+00, 6.074480533599854e+00, 6.043421268463135e+00, 6.012546062469482e+00, 5.980756759643555e+00, 5.945412635803223e+00, 5.905574798583984e+00, 5.860711574554443e+00, 5.810431957244873e+00, 5.754367351531982e+00, 5.69205379486084e+00, 5.622910976409912e+00, 5.546338558197021e+00, 5.461676120758057e+00, 5.368204116821289e+00, 5.26514720916748e+00, 4.081791877746582e+00, 1.589492082595825e+00, 4.613491892814636e-01, 8.253474533557892e-02, 1.745142787694931e-02, 1.111135259270668e-02, 1.071987580507994e-02, 1.044838689267635e-02, 1.006150525063276e-02, 9.574728086590767e-03, 8.996186777949333e-03, 8.330019190907478e-03, 7.578242570161819e-03, 6.74752239137888e-03, 5.853172857314348e-03, 4.920070059597492e-03, 3.983594011515379e-03, 3.086698707193136e-03, 2.272665966302156e-03, 1.579550793394446e-03, 1.028244034387171e-03, 6.209962302818894e-04, 3.439128631725907e-04, 1.723363966448233e-04, 7.742021989542991e-05, 3.184707020409405e-05, 1.319766488450114e-05, 6.446861334552523e-06, 5.013695499656023e-06, 5.05006983075873e-06, 4.681906375481049e-06, 3.653496833067038e-06, 2.476699364706292e-06, 1.487962094870454e-06, 8.214697118091863e-07, 4.107845370526775e-07, 1.935371187755663e-07, 8.863484879384487e-08, 3.674371740203242e-08, 1.453043818600008e-08, 6.372297356449508e-09, 3.108459933898189e-09, 1.556082040998774e-09, 7.537615531738595e-10, 4.004889198050421e-10, 2.642878971226281e-10, 2.208669219738724e-10, 2.453437730753905e-10, 2.827954259654319e-10, 2.838974888508261e-10] +pmpNorth.m_flow=[0e+00, 3.935724020004272e+00, 5.780118465423584e+00, 5.809208869934082e+00, 5.690212726593018e+00, 5.605245590209961e+00, 5.558028697967529e+00, 5.541175365447998e+00, 5.548319339752197e+00, 5.572464466094971e+00, 5.607481002807617e+00, 5.646369457244873e+00, 5.681735038757324e+00, 5.72193431854248e+00, 5.762411117553711e+00, 5.800228595733643e+00, 5.834198474884033e+00, 5.864230155944824e+00, 5.89064884185791e+00, 5.913696765899658e+00, 5.933657169342041e+00, 5.950778961181641e+00, 5.965269088745117e+00, 5.977297306060791e+00, 5.986998558044434e+00, 5.9944748878479e+00, 5.999798774719238e+00, 6.3902268409729e+00, 6.807069301605225e+00, 6.980991363525391e+00, 7.000593662261963e+00, 6.958019256591797e+00, 6.904678344726562e+00, 6.857888221740723e+00, 6.819098472595215e+00, 6.785050868988037e+00, 6.752820491790771e+00, 6.716575145721436e+00, 6.678925514221191e+00, 6.641193389892578e+00, 6.599531173706055e+00, 6.552486896514893e+00, 6.499288082122803e+00, 6.439398288726807e+00, 6.372330188751221e+00, 6.297479152679443e+00, 6.214093685150146e+00, 6.121401786804199e+00, 6.018572330474854e+00, 5.904721736907959e+00, 5.778929710388184e+00, 4.47222375869751e+00, 1.745699048042297e+00, 5.036171674728394e-01, 9.377436339855194e-02, 1.978908851742744e-02, 1.248623803257942e-02, 1.202286221086979e-02, 1.169310603290796e-02, 1.12301018089056e-02, 1.065045781433582e-02, 9.964198805391788e-03, 9.177707135677338e-03, 8.295927196741104e-03, 7.330215070396662e-03, 6.302594672888517e-03, 5.245842039585114e-03, 4.203033167868853e-03, 3.222585888579488e-03, 2.349353628233075e-03, 1.618833048269153e-03, 1.046625315211713e-03, 6.29027490504086e-04, 3.473415563348681e-04, 1.738473365548998e-04, 7.811961404513568e-05, 3.217469929950312e-05, 1.334789158136118e-05, 6.513616426673252e-06, 5.050420440966263e-06, 5.084565145807574e-06, 4.724148766399594e-06, 3.699633680298575e-06, 2.51979986387596e-06, 1.523279024695512e-06, 8.47593582875561e-07, 4.281127132799156e-07, 2.039845554691055e-07, 9.459198935246604e-08, 3.976019513629581e-08, 1.592701970309918e-08, 7.053657213873521e-09, 3.465641773559014e-09, 1.755281586746094e-09, 8.613355029218894e-10, 4.554035204495932e-10, 2.943428278889826e-10, 2.655826114583704e-10, 2.776880669852488e-10, 3.206765686325497e-10, 3.199153719712911e-10] +pmpSouth.m_flow=[-0e+00, 3.541325807571411e+00, 5.228494167327881e+00, 5.277606010437012e+00, 5.183747291564941e+00, 5.11500072479248e+00, 5.076899528503418e+00, 5.063858985900879e+00, 5.070789337158203e+00, 5.091943264007568e+00, 5.122228622436523e+00, 5.155235767364502e+00, 5.186134338378906e+00, 5.221257209777832e+00, 5.256392478942871e+00, 5.289219856262207e+00, 5.318800926208496e+00, 5.345064163208008e+00, 5.36826753616333e+00, 5.388591289520264e+00, 5.406257629394531e+00, 5.421462535858154e+00, 5.434368133544922e+00, 5.445109367370605e+00, 5.45379114151001e+00, 5.460492610931396e+00, 5.465270519256592e+00, 5.777584075927734e+00, 6.105603694915771e+00, 6.243701457977295e+00, 6.263343334197998e+00, 6.234053611755371e+00, 6.194809436798096e+00, 6.159224987030029e+00, 6.128802299499512e+00, 6.101316928863525e+00, 6.074681282043457e+00, 6.046490669250488e+00, 6.015296459197998e+00, 5.982007026672363e+00, 5.945979118347168e+00, 5.905919075012207e+00, 5.861014366149902e+00, 5.810750961303711e+00, 5.754717826843262e+00, 5.692442417144775e+00, 5.623343467712402e+00, 5.546819686889648e+00, 5.462211132049561e+00, 5.36879825592041e+00, 5.265806198120117e+00, 4.085400104522705e+00, 1.59485936164856e+00, 4.647243022918701e-01, 8.380109071731567e-02, 1.835094578564167e-02, 1.158771384507418e-02, 1.104761473834515e-02, 1.070825103670359e-02, 1.028449833393097e-02, 9.770855307579041e-03, 9.167879819869995e-03, 8.477493189275265e-03, 7.701354566961527e-03, 6.846601143479347e-03, 5.929496604949236e-03, 4.976001102477312e-03, 4.022412467747927e-03, 3.112199017778039e-03, 2.288640476763248e-03, 1.589175080880523e-03, 1.033950597047806e-03, 6.243749521672726e-04, 3.45907494192943e-04, 1.734857069095597e-04, 7.804632332408801e-05, 3.216224649804644e-05, 1.353727202513255e-05, 7.105197710188804e-06, 5.877755484107183e-06, 6.787786333006807e-06, 7.6057458500145e-06, 6.684305844828486e-06, 4.705678293248639e-06, 2.857600975403329e-06, 1.584779965924099e-06, 7.951966836117208e-07, 3.75594083834585e-07, 1.7240412830688e-07, 7.167732007928862e-08, 2.839781565455723e-08, 1.244594383109643e-08, 6.057523815883314e-09, 3.04289748953579e-09, 1.482835521038339e-09, 7.795023515555499e-10, 5.014581527795769e-10, 4.507439144152414e-10, 4.698462729990638e-10, 5.412420511774485e-10, 5.388780532911142e-10] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Examples_FlowSystem_Simplified1.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Examples_FlowSystem_Simplified1.txt index 80f3ddc107..c8154292a6 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Examples_FlowSystem_Simplified1.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Examples_FlowSystem_Simplified1.txt @@ -1,4 +1,4 @@ -last-generated=2021-05-19 +last-generated=2022-07-06 statistics-initialization= { "nonlinear": "0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 1", @@ -12,5 +12,5 @@ statistics-simulation= "numerical Jacobians": "0" } time=[0e+00, 1e+03] -pmpNorth.m_flow=[-0e+00, 3.940263509750366e+00, 5.780935764312744e+00, 5.80853271484375e+00, 5.689324855804443e+00, 5.60432243347168e+00, 5.557219982147217e+00, 5.54059886932373e+00, 5.547805786132812e+00, 5.572302341461182e+00, 5.607206344604492e+00, 5.646755218505859e+00, 5.681702136993408e+00, 5.721827507019043e+00, 5.762673854827881e+00, 5.800498008728027e+00, 5.834410190582275e+00, 5.864452838897705e+00, 5.890842437744141e+00, 5.913857460021973e+00, 5.933788299560547e+00, 5.950903415679932e+00, 5.965390205383301e+00, 5.977397918701172e+00, 5.987072944641113e+00, 5.994526386260986e+00, 5.999836921691895e+00, 6.391308784484863e+00, 6.808254241943359e+00, 6.981491565704346e+00, 7.000439167022705e+00, 6.957545757293701e+00, 6.904160022735596e+00, 6.857442855834961e+00, 6.818714141845703e+00, 6.784787178039551e+00, 6.752536773681641e+00, 6.716242790222168e+00, 6.678735256195068e+00, 6.640989303588867e+00, 6.599349498748779e+00, 6.552220344543457e+00, 6.49892520904541e+00, 6.439027786254883e+00, 6.371938705444336e+00, 6.297018527984619e+00, 6.213562965393066e+00, 6.120803356170654e+00, 6.017908573150635e+00, 5.903994083404541e+00, 5.778133869171143e+00, 4.468172073364258e+00, 1.74953281879425e+00, 5.354320406913757e-01, 1.113155707716942e-01, 2.316842041909695e-02, 1.446881145238876e-02, 1.361215766519308e-02, 1.283377036452293e-02, 1.19008319452405e-02, 1.085144095122814e-02, 9.720861911773682e-03, 8.540802635252476e-03, 7.341337855905294e-03, 6.155630573630333e-03, 5.019578151404858e-03, 3.967080265283585e-03, 3.02738300524652e-03, 2.221622737124562e-03, 1.559951691888273e-03, 1.042424933984876e-03, 6.582434871234e-04, 3.888771461788565e-04, 2.122129226336256e-04, 1.053925516316667e-04, 4.712013469543308e-05, 1.934135434566997e-05, 8.008286386029795e-06, 3.91123194276588e-06, 3.041844593099086e-06, 3.06587776321976e-06, 2.846283223334467e-06, 2.238127763121156e-06, 1.519980514785857e-06, 9.315281204180792e-07, 5.200315058573324e-07, 2.70656215661802e-07, 1.339140567324648e-07, 6.053355861013188e-08, 2.732171999753064e-08, 1.284570760873294e-08, 5.80649173187453e-09, 2.414239919090733e-09, 1.078075184679506e-09, 6.558200649209311e-10, 5.502853173133815e-10, 4.450178836545859e-10, 3.707237572481148e-10, 3.374356072338713e-10, 3.300479889389862e-10, 3.340843435228891e-10] -pmpSouth.m_flow=[0e+00, 3.545600891113281e+00, 5.22934627532959e+00, 5.277104377746582e+00, 5.183039665222168e+00, 5.114249706268311e+00, 5.076241016387939e+00, 5.063392639160156e+00, 5.070375919342041e+00, 5.091820240020752e+00, 5.12201452255249e+00, 5.155563354492188e+00, 5.186133861541748e+00, 5.221200942993164e+00, 5.25662088394165e+00, 5.289449214935303e+00, 5.318985462188721e+00, 5.345258235931396e+00, 5.368434429168701e+00, 5.388731002807617e+00, 5.406374454498291e+00, 5.42157506942749e+00, 5.434478282928467e+00, 5.445199966430664e+00, 5.453857421875e+00, 5.460538387298584e+00, 5.465304374694824e+00, 5.778443336486816e+00, 6.106534957885742e+00, 6.244116306304932e+00, 6.263262271881104e+00, 6.233721256256104e+00, 6.194432258605957e+00, 6.158894538879395e+00, 6.128511428833008e+00, 6.101110458374023e+00, 6.074457168579102e+00, 6.046280860900879e+00, 6.01513147354126e+00, 5.981799602508545e+00, 5.945781230926514e+00, 5.905688762664795e+00, 5.860719680786133e+00, 5.810447216033936e+00, 5.754390716552734e+00, 5.692057132720947e+00, 5.622901916503906e+00, 5.546324729919434e+00, 5.461665153503418e+00, 5.368202209472656e+00, 5.265155792236328e+00, 4.081765651702881e+00, 1.599245667457581e+00, 4.928883910179138e-01, 9.854736179113388e-02, 2.147683128714561e-02, 1.346618868410587e-02, 1.255640853196383e-02, 1.180986780673265e-02, 1.096524205058813e-02, 1.003162935376167e-02, 9.029141627252102e-03, 7.979928515851498e-03, 6.90654618665576e-03, 5.835467949509621e-03, 4.797216970473528e-03, 3.822560887783766e-03, 2.940213773399591e-03, 2.173257060348988e-03, 1.535517047159374e-03, 1.03130447678268e-03, 6.537465960718691e-04, 3.872921224683523e-04, 2.117378608090803e-04, 1.052749212249182e-04, 4.709657514467835e-05, 1.933737985382322e-05, 8.123441148200072e-06, 4.26787801188766e-06, 3.542372724041343e-06, 4.099829766346375e-06, 4.59281091025332e-06, 4.050214556627907e-06, 2.844800292223226e-06, 1.753680749061459e-06, 9.778611911315238e-07, 5.069657049716625e-07, 2.494049908818852e-07, 1.119211674449616e-07, 5.008149983609655e-08, 2.332058279819194e-08, 1.04339425988087e-08, 4.293514432873735e-09, 1.89810545059288e-09, 1.143226069366676e-09, 9.518102972450038e-10, 7.641170474137482e-10, 6.32607188855161e-10, 5.728430507723203e-10, 5.579552375678531e-10, 5.628830179738031e-10] +pmpNorth.m_flow=[0e+00, 3.935720205307007e+00, 5.780133724212646e+00, 5.809316635131836e+00, 5.690308094024658e+00, 5.605256080627441e+00, 5.558041572570801e+00, 5.541244506835938e+00, 5.548245429992676e+00, 5.572551250457764e+00, 5.607280731201172e+00, 5.646827697753906e+00, 5.681689262390137e+00, 5.721626758575439e+00, 5.762426376342773e+00, 5.800256729125977e+00, 5.834187984466553e+00, 5.86425256729126e+00, 5.890666007995605e+00, 5.913703918457031e+00, 5.933653831481934e+00, 5.950782775878906e+00, 5.965287685394287e+00, 5.977311134338379e+00, 5.987000465393066e+00, 5.994467258453369e+00, 5.999790668487549e+00, 6.390214443206787e+00, 6.807059764862061e+00, 6.980985641479492e+00, 7.000590324401855e+00, 6.958016872406006e+00, 6.904677391052246e+00, 6.857887268066406e+00, 6.819073677062988e+00, 6.785080432891846e+00, 6.752789497375488e+00, 6.716590881347656e+00, 6.678966045379639e+00, 6.641195297241211e+00, 6.599578380584717e+00, 6.552490234375e+00, 6.499238014221191e+00, 6.439386367797852e+00, 6.372347354888916e+00, 6.297480583190918e+00, 6.21408224105835e+00, 6.121385097503662e+00, 6.018558025360107e+00, 5.904716968536377e+00, 5.778936862945557e+00, 4.472194194793701e+00, 1.755364298820496e+00, 5.398046970367432e-01, 1.101362928748131e-01, 2.323172800242901e-02, 1.472689863294363e-02, 1.36083671823144e-02, 1.284055784344673e-02, 1.190677657723427e-02, 1.085832808166742e-02, 9.728372097015381e-03, 8.548622950911522e-03, 7.349188905209303e-03, 6.163512822240591e-03, 5.027101840823889e-03, 3.973898012191057e-03, 3.033336251974106e-03, 2.226575976237655e-03, 1.563824596814811e-03, 1.045828801579773e-03, 6.609202828258276e-04, 3.907776554115117e-04, 2.134303649654612e-04, 1.060925351339392e-04, 4.748052742797881e-05, 1.951186459336895e-05, 8.086847628874239e-06, 3.945888693124289e-06, 3.061108600377338e-06, 3.084407126152655e-06, 2.870599018933717e-06, 2.255183062516153e-06, 1.545322106721869e-06, 9.434331786906114e-07, 5.326573955244385e-07, 2.753911587660696e-07, 1.345557762988392e-07, 6.470528290947186e-08, 2.860066139476203e-08, 1.193482201955476e-08, 5.470191410950065e-09, 2.81679124469747e-09, 1.544170125100663e-09, 8.183028143982085e-10, 4.590280378025113e-10, 3.081005728322594e-10, 2.701930901238825e-10, 3.017648908532067e-10, 3.541045234811691e-10, 3.749970889366239e-10] +pmpSouth.m_flow=[0e+00, 3.541495084762573e+00, 5.228507995605469e+00, 5.277704238891602e+00, 5.183835029602051e+00, 5.115010261535645e+00, 5.076910018920898e+00, 5.063915729522705e+00, 5.070728302001953e+00, 5.092014789581299e+00, 5.122064113616943e+00, 5.155633926391602e+00, 5.186098575592041e+00, 5.221019268035889e+00, 5.256403923034668e+00, 5.289239406585693e+00, 5.31879186630249e+00, 5.345083236694336e+00, 5.368279457092285e+00, 5.388595104217529e+00, 5.40625524520874e+00, 5.421467781066895e+00, 5.434386730194092e+00, 5.445122718811035e+00, 5.453792572021484e+00, 5.460485458374023e+00, 5.465262889862061e+00, 5.777573585510254e+00, 6.105595588684082e+00, 6.243696689605713e+00, 6.263339996337891e+00, 6.234051704406738e+00, 6.194808483123779e+00, 6.159224033355713e+00, 6.1287841796875e+00, 6.101338386535645e+00, 6.074658393859863e+00, 6.046496868133545e+00, 6.015351295471191e+00, 5.982001304626465e+00, 5.945986747741699e+00, 5.90592098236084e+00, 5.860984802246094e+00, 5.81074857711792e+00, 5.754732131958008e+00, 5.692440986633301e+00, 5.623331546783447e+00, 5.546803951263428e+00, 5.462198734283447e+00, 5.368794918060303e+00, 5.265812397003174e+00, 4.085372447967529e+00, 1.604533791542053e+00, 4.969585537910461e-01, 9.750480204820633e-02, 2.153401263058186e-02, 1.370237674564123e-02, 1.255391631275415e-02, 1.181641314178705e-02, 1.097066886723042e-02, 1.00378068163991e-02, 9.035816416144371e-03, 7.986911572515965e-03, 6.913607940077782e-03, 5.842627491801977e-03, 4.804136697202921e-03, 3.828918561339378e-03, 2.945843618363142e-03, 2.178003313019872e-03, 1.53927190694958e-03, 1.034636981785297e-03, 6.563871866092086e-04, 3.89177177567035e-04, 2.129498607246205e-04, 1.059733403963037e-04, 4.745661135530099e-05, 1.950781916093547e-05, 8.202218850783538e-06, 4.304500635043951e-06, 3.5628449950309e-06, 4.118366177863209e-06, 4.623551376425894e-06, 4.078509391547414e-06, 2.891469875976327e-06, 1.776026124389318e-06, 1.001598093353095e-06, 5.158456701792602e-07, 2.506085934328439e-07, 1.196393668578821e-07, 5.242847933573103e-08, 2.166808421577571e-08, 9.830182889913885e-09, 5.009721970594683e-09, 2.718902214482455e-09, 1.427411189247607e-09, 7.940009760787348e-10, 5.290427540494136e-10, 4.610747617039834e-10, 5.123008683938224e-10, 5.986371398591928e-10, 6.31826813091152e-10] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Examples_FlowSystem_Simplified2.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Examples_FlowSystem_Simplified2.txt index 78ffc5e523..d8286f7ad0 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Examples_FlowSystem_Simplified2.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Examples_FlowSystem_Simplified2.txt @@ -1,4 +1,4 @@ -last-generated=2019-08-15 +last-generated=2022-05-23 statistics-initialization= { "nonlinear": "0, 0, 8, 0, 0, 0, 0, 1, 0, 1, 1, 1", @@ -11,6 +11,6 @@ statistics-simulation= "number of continuous time states": "74", "numerical Jacobians": "0" } -pmpSouth.m_flow=[0e+00, 3.545589685440063e+00, 5.229341506958008e+00, 5.277145385742188e+00, 5.182984352111816e+00, 5.114256858825684e+00, 5.076239585876465e+00, 5.063357353210449e+00, 5.070402145385742e+00, 5.09177827835083e+00, 5.122071743011475e+00, 5.155331611633301e+00, 5.186187267303467e+00, 5.221305370330811e+00, 5.25661563873291e+00, 5.289435386657715e+00, 5.318986892700195e+00, 5.345248222351074e+00, 5.368416309356689e+00, 5.388722896575928e+00, 5.40638256072998e+00, 5.421582221984863e+00, 5.434478282928467e+00, 5.445202827453613e+00, 5.453861713409424e+00, 5.460540771484375e+00, 5.465303421020508e+00, 5.778443336486816e+00, 6.106607913970947e+00, 6.244128704071045e+00, 6.263260841369629e+00, 6.233723640441895e+00, 6.194434642791748e+00, 6.158917427062988e+00, 6.128511905670166e+00, 6.101109027862549e+00, 6.074444770812988e+00, 6.043452739715576e+00, 6.012558937072754e+00, 5.98076343536377e+00, 5.945428848266602e+00, 5.905557632446289e+00, 5.860683441162109e+00, 5.810428142547607e+00, 5.754377365112305e+00, 5.692053318023682e+00, 5.622911930084229e+00, 5.546345233917236e+00, 5.461686134338379e+00, 5.368211269378662e+00, 5.265146255493164e+00, 4.08165979385376e+00, 1.599243879318237e+00, 4.928982257843018e-01, 9.571131318807602e-02, 1.892388984560966e-02, 1.220981031656265e-02, 1.13538121804595e-02, 1.070151664316654e-02, 9.921330958604813e-03, 9.04795341193676e-03, 8.113988675177097e-03, 7.143198046833277e-03, 6.158003117889166e-03, 5.182980094105005e-03, 4.244865849614143e-03, 3.370566293597221e-03, 2.584451343864202e-03, 1.905250479467213e-03, 1.343581243418157e-03, 9.009149507619441e-04, 5.700818146578968e-04, 3.371471248101443e-04, 1.84075950528495e-04, 9.148122626356781e-05, 4.096851262147538e-05, 1.685604911472183e-05, 6.987515916989651e-06, 3.412257456147927e-06, 2.650920805535861e-06, 2.66905180978938e-06, 2.476684130670037e-06, 1.943098368428764e-06, 1.323725882684812e-06, 8.078603173089505e-07, 4.510931717049971e-07, 2.338907023613501e-07, 1.139976717468016e-07, 5.286950255367628e-08, 2.368362395088752e-08, 1.04334061390432e-08, 4.637364714454861e-09, 2.155972067541256e-09, 1.093548696040614e-09, 6.30568042225832e-10, 4.231094363760235e-10, 3.283114613505944e-10, 2.871784754443496e-10, 2.725328573927044e-10, 2.711333935145888e-10, 2.751115446564256e-10] -pmpNorth.m_flow=[0e+00, 3.940251111984253e+00, 5.780930519104004e+00, 5.808577537536621e+00, 5.689263343811035e+00, 5.604329586029053e+00, 5.557217597961426e+00, 5.54055643081665e+00, 5.547837257385254e+00, 5.572250843048096e+00, 5.60727596282959e+00, 5.646487712860107e+00, 5.681770801544189e+00, 5.721962451934814e+00, 5.762667179107666e+00, 5.800478935241699e+00, 5.834411144256592e+00, 5.864440441131592e+00, 5.890819549560547e+00, 5.913846492767334e+00, 5.933797836303711e+00, 5.950912475585938e+00, 5.965391635894775e+00, 5.977401256561279e+00, 5.987078189849854e+00, 5.994529247283936e+00, 5.999835968017578e+00, 6.391308307647705e+00, 6.808347225189209e+00, 6.981506824493408e+00, 7.00043773651123e+00, 6.957549571990967e+00, 6.904163360595703e+00, 6.857474803924561e+00, 6.818714618682861e+00, 6.78478479385376e+00, 6.752520084381104e+00, 6.719164848327637e+00, 6.682228565216064e+00, 6.64252758026123e+00, 6.599846363067627e+00, 6.552374362945557e+00, 6.499002456665039e+00, 6.439060211181641e+00, 6.3719482421875e+00, 6.297025680541992e+00, 6.21358060836792e+00, 6.120831966400146e+00, 6.017938137054443e+00, 5.904009342193604e+00, 5.778127193450928e+00, 4.468057155609131e+00, 1.74953019618988e+00, 5.354424118995667e-01, 1.081430166959763e-01, 2.237624302506447e-02, 1.442556921392679e-02, 1.321790274232626e-02, 1.232659444212914e-02, 1.132428273558617e-02, 1.023181434720755e-02, 9.082951582968235e-03, 7.907446473836899e-03, 6.735146977007389e-03, 5.597519222646952e-03, 4.526099655777216e-03, 3.549471497535706e-03, 2.690345514565706e-03, 1.963079674169421e-03, 1.372437225654721e-03, 9.139185422100127e-04, 5.752962897531688e-04, 3.389726334717125e-04, 1.846204249886796e-04, 9.161575144389644e-05, 4.099549551028758e-05, 1.686061841610353e-05, 7.089355221978622e-06, 3.723917416209588e-06, 3.087681534452713e-06, 3.570681428755051e-06, 4.000442459073383e-06, 3.52487313648453e-06, 2.489242660885793e-06, 1.534339276076935e-06, 8.610592772129166e-07, 4.486526563596271e-07, 2.199805351210671e-07, 1.02773221044572e-07, 4.644013529286894e-08, 2.065973347953332e-08, 9.279879087387144e-09, 4.361226935145623e-09, 2.23576890334698e-09, 1.302198238128938e-09, 8.818105134977827e-10, 6.897936666305782e-10, 6.075696612484194e-10, 5.799378199888849e-10, 5.797032298637816e-10, 5.904514654986315e-10] time=[0e+00, 1e+03] +pmpNorth.m_flow=[0e+00, 3.935720205307007e+00, 5.780133724212646e+00, 5.809339046478271e+00, 5.690319538116455e+00, 5.605257511138916e+00, 5.55803918838501e+00, 5.541248321533203e+00, 5.548248767852783e+00, 5.572531700134277e+00, 5.607296466827393e+00, 5.646836757659912e+00, 5.681631565093994e+00, 5.721641063690186e+00, 5.762433528900146e+00, 5.80025577545166e+00, 5.834188938140869e+00, 5.864257335662842e+00, 5.890666961669922e+00, 5.913698673248291e+00, 5.933649063110352e+00, 5.950788974761963e+00, 5.965288162231445e+00, 5.977309703826904e+00, 5.986999034881592e+00, 5.994466781616211e+00, 5.999791145324707e+00, 6.390215396881104e+00, 6.807060241699219e+00, 6.98098611831665e+00, 7.000590324401855e+00, 6.958017349243164e+00, 6.904677867889404e+00, 6.857887268066406e+00, 6.819098472595215e+00, 6.785050392150879e+00, 6.752820491790771e+00, 6.719400405883789e+00, 6.682451725006104e+00, 6.642800807952881e+00, 6.600092887878418e+00, 6.552662372589111e+00, 6.499347686767578e+00, 6.439424991607666e+00, 6.372344493865967e+00, 6.297487258911133e+00, 6.214098453521729e+00, 6.121405124664307e+00, 6.018575191497803e+00, 5.90472412109375e+00, 5.778931617736816e+00, 4.472237110137939e+00, 1.755508184432983e+00, 5.400038361549377e-01, 1.109490096569061e-01, 2.333405986428261e-02, 1.434283331036568e-02, 1.324154529720545e-02, 1.23370373621583e-02, 1.133059244602919e-02, 1.023909542709589e-02, 9.090508334338665e-03, 7.915210910141468e-03, 6.742837373167276e-03, 5.604757461696863e-03, 4.5330417342484e-03, 3.555943956598639e-03, 2.696010982617736e-03, 1.967719057574868e-03, 1.375687425024807e-03, 9.164009825326502e-04, 5.774452001787722e-04, 3.407415060792118e-04, 1.858797331806272e-04, 9.235114703187719e-05, 4.133416223339736e-05, 1.699298081803136e-05, 7.145816653064685e-06, 3.749550842258031e-06, 3.102081564065884e-06, 3.585194690458593e-06, 4.025718226330355e-06, 3.554767090463429e-06, 2.523868715798017e-06, 1.555002086206514e-06, 8.813708518573549e-07, 4.55388345699248e-07, 2.2434771551616e-07, 1.07970123508494e-07, 4.726743085825547e-08, 2.007135257997561e-08, 9.507412634945922e-09, 4.955547971974283e-09, 2.602722037892136e-09, 1.327356002889246e-09, 7.352414788108774e-10, 5.170914807450799e-10, 4.838917044835966e-10, 5.759780430381056e-10, 6.646403982735194e-10, 6.547649644694786e-10] +pmpSouth.m_flow=[0e+00, 3.541494846343994e+00, 5.228507995605469e+00, 5.277724742889404e+00, 5.183845520019531e+00, 5.115011692047119e+00, 5.076908111572266e+00, 5.063919067382812e+00, 5.070731163024902e+00, 5.09199857711792e+00, 5.122076988220215e+00, 5.155642032623291e+00, 5.186053276062012e+00, 5.221030235290527e+00, 5.256409645080566e+00, 5.289238452911377e+00, 5.318792343139648e+00, 5.345087051391602e+00, 5.368280410766602e+00, 5.388591289520264e+00, 5.406251430511475e+00, 5.421473026275635e+00, 5.434386730194092e+00, 5.445120811462402e+00, 5.45379114151001e+00, 5.460484981536865e+00, 5.465263366699219e+00, 5.777574062347412e+00, 6.10559606552124e+00, 6.243696689605713e+00, 6.263340473175049e+00, 6.234051704406738e+00, 6.194808483123779e+00, 6.159224033355713e+00, 6.128801822662354e+00, 6.101316452026367e+00, 6.074681282043457e+00, 6.043686866760254e+00, 6.0127272605896e+00, 5.980929851531982e+00, 5.945608139038086e+00, 5.905802726745605e+00, 5.86097526550293e+00, 5.810733795166016e+00, 5.754707813262939e+00, 5.692437171936035e+00, 5.623340129852295e+00, 5.546817779541016e+00, 5.462209224700928e+00, 5.368796825408936e+00, 5.265804290771484e+00, 4.085410118103027e+00, 1.604665398597717e+00, 4.971445798873901e-01, 9.81929674744606e-02, 1.976783387362957e-02, 1.213589310646057e-02, 1.137293875217438e-02, 1.070970669388771e-02, 9.926196187734604e-03, 9.053779765963554e-03, 8.120154961943626e-03, 7.14966282248497e-03, 6.164523307234049e-03, 5.189244635403156e-03, 4.251011181622744e-03, 3.376426408067346e-03, 2.58969166316092e-03, 1.909625483676791e-03, 1.346697797998786e-03, 9.0332783292979e-04, 5.721920751966536e-04, 3.388970217201859e-04, 1.85327822691761e-04, 9.221446089213714e-05, 4.130673187319189e-05, 1.698834057606291e-05, 7.043841378617799e-06, 3.436700581005425e-06, 2.664715566425002e-06, 2.683965703909053e-06, 2.496819661246263e-06, 1.96102291738498e-06, 1.342465111520141e-06, 8.187917615032347e-07, 4.617528190919984e-07, 2.374092957779794e-07, 1.162650065111848e-07, 5.554543847097193e-08, 2.410675215003266e-08, 1.013683359474271e-08, 4.751354421017595e-09, 2.449934033421641e-09, 1.273131933210436e-09, 6.427864907010417e-10, 3.52799761627054e-10, 2.461228998384968e-10, 2.287280226331845e-10, 2.706803947649661e-10, 3.108675816765327e-10, 3.050838470741724e-10] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Examples_FlowSystem_Simplified3.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Examples_FlowSystem_Simplified3.txt index e49b072052..21051abfb6 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Examples_FlowSystem_Simplified3.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Examples_FlowSystem_Simplified3.txt @@ -1,4 +1,4 @@ -last-generated=2021-03-24 +last-generated=2022-05-23 statistics-initialization= { "nonlinear": "0, 0, 1, 1, 6, 1, 1", @@ -12,5 +12,5 @@ statistics-simulation= "numerical Jacobians": "0" } time=[0e+00, 1e+03] -pmpNorth.m_flow=[0e+00, 3.940237283706665e+00, 5.781059741973877e+00, 5.808435916900635e+00, 5.689287662506104e+00, 5.604490756988525e+00, 5.557560920715332e+00, 5.541074752807617e+00, 5.548578262329102e+00, 5.573080539703369e+00, 5.60833740234375e+00, 5.647341251373291e+00, 5.682881832122803e+00, 5.723257541656494e+00, 5.763827800750732e+00, 5.801682472229004e+00, 5.835650444030762e+00, 5.865682125091553e+00, 5.892092704772949e+00, 5.915132522583008e+00, 5.935088634490967e+00, 5.952206611633301e+00, 5.966692447662354e+00, 5.978714466094971e+00, 5.988407135009766e+00, 5.995871543884277e+00, 6.00118350982666e+00, 6.391912937164307e+00, 6.80839729309082e+00, 6.981548309326172e+00, 7.000471115112305e+00, 6.957560062408447e+00, 6.904165267944336e+00, 6.85744571685791e+00, 6.818737983703613e+00, 6.784758567810059e+00, 6.75256872177124e+00, 6.716224193572998e+00, 6.678695201873779e+00, 6.640986919403076e+00, 6.599302768707275e+00, 6.552218914031982e+00, 6.498973369598389e+00, 6.439035892486572e+00, 6.371923923492432e+00, 6.297018527984619e+00, 6.213574409484863e+00, 6.120820045471191e+00, 6.017922401428223e+00, 5.903998374938965e+00, 5.77812671661377e+00, 4.468206405639648e+00, 1.749451518058777e+00, 5.347880721092224e-01, 1.022196114063263e-01, 9.965530596673489e-03, 8.253690903075039e-04, 6.658312486251816e-05, 1.232972681464162e-05, 3.890972948283888e-07, 3.141663285077811e-07, 2.216796168852397e-08, -1.492387546875307e-08, 8.742877533052251e-09, 2.457753334184076e-09, -4.187303281888433e-10, -6.625367476864596e-10, -1.456383624809376e-10, 1.821470752005894e-10, 8.204734114336532e-11, 1.192100931857176e-11, -5.393823408750276e-12, -4.846290469623371e-12, -1.574321510829091e-12, 1.003110490721895e-13, 3.15236091353796e-13, 7.419002342806333e-14, 2.88999615965992e-15, 1.69611147907622e-16, 2.075221290914053e-17, 3.22284290465563e-18, 1.052567166946297e-18, 1.168417301402557e-19, 1.386237867377351e-19, -2.42061223072631e-20, 3.865738119887077e-20, 7.458836116432773e-22, 2.326789592864909e-21, 1.533954848165501e-21, -6.469136525887774e-22, -5.350726137611426e-22, 7.215100058607082e-22, 4.015537782322303e-22, 4.612257982560295e-23, -1.815834236646575e-22, -2.476762728968637e-22, -1.620818606980568e-22, 1.563788318045286e-23, 1.767505083495881e-22, 1.684522091194169e-22, 1.98690806405687e-23] -pmpSouth.m_flow=[0e+00, 3.54557728767395e+00, 5.229458332061768e+00, 5.277016639709473e+00, 5.183005332946777e+00, 5.114405155181885e+00, 5.076554775238037e+00, 5.063834190368652e+00, 5.071077346801758e+00, 5.092538833618164e+00, 5.123032093048096e+00, 5.156118869781494e+00, 5.18720006942749e+00, 5.222466945648193e+00, 5.257678031921387e+00, 5.290535449981689e+00, 5.32011604309082e+00, 5.346380710601807e+00, 5.369577884674072e+00, 5.389894962310791e+00, 5.407557964324951e+00, 5.422760009765625e+00, 5.435662746429443e+00, 5.446399211883545e+00, 5.455073356628418e+00, 5.461763858795166e+00, 5.466531276702881e+00, 5.778991222381592e+00, 6.106664180755615e+00, 6.244166851043701e+00, 6.263290405273438e+00, 6.233734130859375e+00, 6.194437026977539e+00, 6.158896446228027e+00, 6.128529071807861e+00, 6.101089954376221e+00, 6.074480533599854e+00, 6.04341983795166e+00, 6.012546062469482e+00, 5.980756282806396e+00, 5.945414066314697e+00, 5.905575752258301e+00, 5.860710144042969e+00, 5.81043004989624e+00, 5.754369258880615e+00, 5.692054271697998e+00, 5.622910976409912e+00, 5.546338081359863e+00, 5.461675643920898e+00, 5.368204116821289e+00, 5.265147686004639e+00, 4.081797122955322e+00, 1.599171757698059e+00, 4.922831058502197e-01, 9.013812988996506e-02, 8.805612102150917e-03, 7.310216897167265e-04, 5.916169175179675e-05, 1.100162899092538e-05, 3.490320352739218e-07, 2.836453916188475e-07, 2.016799349746634e-08, -1.369694135888722e-08, 8.102396975573356e-09, 2.301465462650754e-09, -3.963025740905124e-10, -6.336528524109042e-10, -1.406659372316099e-10, 1.77482098462356e-10, 8.054503591869988e-11, 1.177313541794733e-11, -5.351144874432556e-12, -4.823474952786455e-12, -1.570257921086615e-12, 1.001820832237724e-13, 3.150545688050677e-13, 7.417246612913264e-14, 2.889701392194276e-15, 1.695998188419525e-16, 2.075029550448063e-17, 3.222174129130381e-18, 1.052033221860894e-18, 1.167075071611719e-19, 1.382991183473081e-19, -2.410125131522786e-20, 3.837244332724039e-20, 7.37174839685127e-22, 2.286335694929021e-21, 1.496348927424078e-21, -6.256092584638208e-22, -5.124108235211286e-22, 6.837181916246917e-22, 3.764311711082591e-22, 4.277876568688298e-23, -1.66740608147028e-22, -2.253563055534128e-22, -1.462875274674369e-22, 1.401848111522258e-23, 1.575146337358658e-22, 1.494155187288193e-22, 1.755422668990462e-23] +pmpNorth.m_flow=[0e+00, 3.935693740844727e+00, 5.780270576477051e+00, 5.809206962585449e+00, 5.69027042388916e+00, 5.605422496795654e+00, 5.558379650115967e+00, 5.541720867156982e+00, 5.549016952514648e+00, 5.573320865631104e+00, 5.608416080474854e+00, 5.647425651550293e+00, 5.682847023010254e+00, 5.723065853118896e+00, 5.763582229614258e+00, 5.801438808441162e+00, 5.835427761077881e+00, 5.865483283996582e+00, 5.891916751861572e+00, 5.914977073669434e+00, 5.934952735900879e+00, 5.952088356018066e+00, 5.966590404510498e+00, 5.978627681732178e+00, 5.988334655761719e+00, 5.99581241607666e+00, 6.001137256622314e+00, 6.390820980072021e+00, 6.807203769683838e+00, 6.981042861938477e+00, 7.000621795654297e+00, 6.958031177520752e+00, 6.904683113098145e+00, 6.857889652252197e+00, 6.819098949432373e+00, 6.785050868988037e+00, 6.752820491790771e+00, 6.716576099395752e+00, 6.678925514221191e+00, 6.641193389892578e+00, 6.599531650543213e+00, 6.552486419677734e+00, 6.499286651611328e+00, 6.439396381378174e+00, 6.372331619262695e+00, 6.297479629516602e+00, 6.214093208312988e+00, 6.121401309967041e+00, 6.018571853637695e+00, 5.904721260070801e+00, 5.778929710388184e+00, 4.472226619720459e+00, 1.75528609752655e+00, 5.383802652359009e-01, 1.038829907774925e-01, 1.018001697957516e-02, 8.446178981103003e-04, 6.91475797793828e-05, 1.267714014829835e-05, 4.149906942529924e-07, 3.212111323591671e-07, 2.336528126534176e-08, -1.528663595706803e-08, 8.835661091666225e-09, 2.536146626042068e-09, -4.161397337831829e-10, -6.749610870215861e-10, -1.509533331667257e-10, 1.844647767867968e-10, 8.396584122438711e-11, 1.228859028423734e-11, -5.462464248290333e-12, -4.941092673904635e-12, -1.610595120812852e-12, 1.005974410760516e-13, 3.222503644137453e-13, 7.614120109151329e-14, 2.982883486721721e-15, 1.753638648131282e-16, 2.14416828389545e-17, 3.320063923590825e-18, 1.10961657302316e-18, 1.028877360437632e-19, 1.487737839922495e-19, -2.508288690454242e-20, 4.082896941371828e-20, 1.354677586782054e-21, 1.965255725474725e-21, 1.675692932750994e-21, -6.081570803983374e-22, -5.929451663294858e-22, 6.903155931472361e-22, 4.287756136447542e-22, 6.525434688794139e-23, -1.734180695851214e-22, -2.51208728921571e-22, -1.749369739264701e-22, -2.913434900228082e-25, 1.684036152876552e-22, 1.830632005051073e-22, 2.529804663384867e-23] +pmpSouth.m_flow=[0e+00, 3.541471004486084e+00, 5.228631973266602e+00, 5.277604579925537e+00, 5.183800220489502e+00, 5.115163803100586e+00, 5.077221393585205e+00, 5.064357757568359e+00, 5.071428775787354e+00, 5.09272575378418e+00, 5.123085021972656e+00, 5.156198501586914e+00, 5.187148094177246e+00, 5.222291946411133e+00, 5.257462978363037e+00, 5.290323734283447e+00, 5.319921970367432e+00, 5.346206665039062e+00, 5.369422912597656e+00, 5.389757633209229e+00, 5.407437801361084e+00, 5.42265510559082e+00, 5.435572147369385e+00, 5.446321487426758e+00, 5.455008029937744e+00, 5.461710929870605e+00, 5.466489791870117e+00, 5.778122901916504e+00, 6.105725288391113e+00, 6.243747711181641e+00, 6.263368606567383e+00, 6.234064102172852e+00, 6.19481372833252e+00, 6.159226417541504e+00, 6.12880277633667e+00, 6.101316928863525e+00, 6.074681282043457e+00, 6.043686866760254e+00, 6.0127272605896e+00, 5.980929851531982e+00, 5.945608615875244e+00, 5.905802726745605e+00, 5.860974311828613e+00, 5.810732364654541e+00, 5.754709720611572e+00, 5.692437648773193e+00, 5.623340129852295e+00, 5.546817302703857e+00, 5.46220874786377e+00, 5.368796825408936e+00, 5.265804767608643e+00, 4.085402011871338e+00, 1.604462742805481e+00, 4.956248998641968e-01, 9.160257130861282e-02, 8.995029143989086e-03, 7.480579079128802e-04, 6.143894279375672e-05, 1.131128738052212e-05, 3.72245381186076e-07, 2.899926130339736e-07, 2.125615594650299e-08, -1.402902416458573e-08, 8.18783529865641e-09, 2.374705543317646e-09, -3.93822391364651e-10, -6.45490383366365e-10, -1.45789977312738e-10, 1.797301335537682e-10, 8.242443533257315e-11, 1.213569175706475e-11, -5.419086620411795e-12, -4.917731152853655e-12, -1.606416388799659e-12, 1.004672826052447e-13, 3.220633124339373e-13, 7.612301360006984e-14, 2.982575802003631e-15, 1.75352046056536e-16, 2.143969595112315e-17, 3.319375916116334e-18, 1.109055227579966e-18, 1.0276988219352e-19, 1.48426329360886e-19, -2.497450685725237e-20, 4.052874808780128e-20, 1.338894815096861e-21, 1.93115391225252e-21, 1.634683070892655e-21, -5.881593428550144e-22, -5.678649431242304e-22, 6.541981835142055e-22, 4.019766329209777e-22, 6.053014291649863e-23, -1.592492315813637e-22, -2.28580613575879e-22, -1.578982599495184e-22, -2.65494169836236e-25, 1.500668275357187e-22, 1.623524841647583e-22, 2.234201916119544e-23] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Examples_FlowSystem_Simplified4.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Examples_FlowSystem_Simplified4.txt index 0637f893ba..8aaae90f59 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Examples_FlowSystem_Simplified4.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Examples_FlowSystem_Simplified4.txt @@ -1,16 +1,16 @@ -last-generated=2017-12-04 +last-generated=2022-05-23 statistics-initialization= { - "numerical Jacobians": "0", - "nonlinear": "0, 1, 0, 1, 5, 1, 1" + "nonlinear": "0, 0, 1, 1, 5, 1, 1", + "numerical Jacobians": "0" } statistics-simulation= { - "numerical Jacobians": "0", - "nonlinear": "0, 1, 0, 1, 5, 1, 1", - "number of continuous time states": "8", - "linear": "24" + "linear": "24", + "nonlinear": "0, 0, 1, 1, 6, 1, 1", + "number of continuous time states": "8", + "numerical Jacobians": "0" } -pmpSouth.m_flow=[0e+00, 5.018579483032227e+00, 4.72824239730835e+00, 4.816677093505859e+00, 4.896131038665771e+00, 4.967477798461914e+00, 5.031513214111328e+00, 5.0889573097229e+00, 5.140457630157471e+00, 5.186591148376465e+00, 5.227872371673584e+00, 5.264757633209229e+00, 5.297648906707764e+00, 5.326901912689209e+00, 5.352827548980713e+00, 5.375698566436768e+00, 5.395751953125e+00, 5.413193225860596e+00, 5.428199291229248e+00, 5.440919399261475e+00, 5.451479911804199e+00, 5.459984302520752e+00, 5.466515064239502e+00, 5.47113561630249e+00, 5.473890781402588e+00, 5.47480583190918e+00, 5.473890781402588e+00, 6.153408050537109e+00, 6.146831035614014e+00, 6.137541770935059e+00, 6.125458240509033e+00, 6.110471248626709e+00, 6.092447757720947e+00, 6.071224689483643e+00, 6.046609878540039e+00, 6.018378257751465e+00, 5.986271858215332e+00, 5.949994087219238e+00, 5.90920877456665e+00, 5.863537311553955e+00, 5.812554359436035e+00, 5.75578498840332e+00, 5.692702770233154e+00, 5.622726440429688e+00, 5.545217514038086e+00, 5.459481716156006e+00, 5.36476993560791e+00, 5.260281085968018e+00, 5.145174026489258e+00, 5.018579483032227e+00, 4.879621982574463e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -0e+00] -pmpNorth.m_flow=[0e+00, 5.476596832275391e+00, 5.134872913360596e+00, 5.241344451904297e+00, 5.336724758148193e+00, 5.422045230865479e+00, 5.498278141021729e+00, 5.566324234008789e+00, 5.627007007598877e+00, 5.681071758270264e+00, 5.729185581207275e+00, 5.771944999694824e+00, 5.80987548828125e+00, 5.843441486358643e+00, 5.873050212860107e+00, 5.899055004119873e+00, 5.921764850616455e+00, 5.94144344329834e+00, 5.958318710327148e+00, 5.972582817077637e+00, 5.984395027160645e+00, 5.993887901306152e+00, 6.001165866851807e+00, 6.006309032440186e+00, 6.009372234344482e+00, 6.010389804840088e+00, 6.009372234344482e+00, 6.842513561248779e+00, 6.83491849899292e+00, 6.824180126190186e+00, 6.810193061828613e+00, 6.792816638946533e+00, 6.771877288818359e+00, 6.747164249420166e+00, 6.718426704406738e+00, 6.685370445251465e+00, 6.647656440734863e+00, 6.60489559173584e+00, 6.556644916534424e+00, 6.502403736114502e+00, 6.441612243652344e+00, 6.373644828796387e+00, 6.297811508178711e+00, 6.213356971740723e+00, 6.119462966918945e+00, 6.01525354385376e+00, 5.899808406829834e+00, 5.772178649902344e+00, 5.63141393661499e+00, 5.476596832275391e+00, 5.306889057159424e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] time=[0e+00, 1e+03] +pmpNorth.m_flow=[-0e+00, 5.476596832275391e+00, 5.134872913360596e+00, 5.241344451904297e+00, 5.336724758148193e+00, 5.422045230865479e+00, 5.498278141021729e+00, 5.566324234008789e+00, 5.627007007598877e+00, 5.681071758270264e+00, 5.729185581207275e+00, 5.771944999694824e+00, 5.80987548828125e+00, 5.843441486358643e+00, 5.873050212860107e+00, 5.899055004119873e+00, 5.921764850616455e+00, 5.94144344329834e+00, 5.958318710327148e+00, 5.972582817077637e+00, 5.984395027160645e+00, 5.993887901306152e+00, 6.001165866851807e+00, 6.006309032440186e+00, 6.009372234344482e+00, 6.010389804840088e+00, 6.009372234344482e+00, 6.842513561248779e+00, 6.83491849899292e+00, 6.824180126190186e+00, 6.810193061828613e+00, 6.792816638946533e+00, 6.771877288818359e+00, 6.747164249420166e+00, 6.718426704406738e+00, 6.685370445251465e+00, 6.647656440734863e+00, 6.60489559173584e+00, 6.556644916534424e+00, 6.502403736114502e+00, 6.441612243652344e+00, 6.373644828796387e+00, 6.297811508178711e+00, 6.213356971740723e+00, 6.119462966918945e+00, 6.01525354385376e+00, 5.899808406829834e+00, 5.772178649902344e+00, 5.63141393661499e+00, 5.476596832275391e+00, 5.306889057159424e+00, 0e+00, -0e+00, 0e+00, -0e+00, 0e+00, -0e+00, -0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00] +pmpSouth.m_flow=[-0e+00, 5.018579483032227e+00, 4.72824239730835e+00, 4.816677093505859e+00, 4.896131038665771e+00, 4.967477798461914e+00, 5.031513214111328e+00, 5.0889573097229e+00, 5.140457630157471e+00, 5.186591148376465e+00, 5.227872371673584e+00, 5.264757633209229e+00, 5.297648906707764e+00, 5.326901912689209e+00, 5.352827548980713e+00, 5.375698566436768e+00, 5.395751953125e+00, 5.413193225860596e+00, 5.428199291229248e+00, 5.440919399261475e+00, 5.451479911804199e+00, 5.459984302520752e+00, 5.466515064239502e+00, 5.47113561630249e+00, 5.473890781402588e+00, 5.47480583190918e+00, 5.473890781402588e+00, 6.153408050537109e+00, 6.146831035614014e+00, 6.137541770935059e+00, 6.125458240509033e+00, 6.110471248626709e+00, 6.092447757720947e+00, 6.071224689483643e+00, 6.046609878540039e+00, 6.018378257751465e+00, 5.986271858215332e+00, 5.949994087219238e+00, 5.90920877456665e+00, 5.863537311553955e+00, 5.812554359436035e+00, 5.75578498840332e+00, 5.692702770233154e+00, 5.622726440429688e+00, 5.545217514038086e+00, 5.459481716156006e+00, 5.36476993560791e+00, 5.260281085968018e+00, 5.145174026489258e+00, 5.018579483032227e+00, 4.879621982574463e+00, 0e+00, -0e+00, 0e+00, -0e+00, 0e+00, -0e+00, -0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Examples_FlowSystem_Simplified5.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Examples_FlowSystem_Simplified5.txt index b39e052aad..3464c4a262 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Examples_FlowSystem_Simplified5.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Examples_FlowSystem_Simplified5.txt @@ -1,4 +1,4 @@ -last-generated=2018-07-08 +last-generated=2022-05-23 statistics-initialization= { "nonlinear": "0, 5, 1, 1, 0, 1, 1", @@ -6,11 +6,11 @@ statistics-initialization= } statistics-simulation= { - "linear": "26", + "linear": "27", "nonlinear": "0, 5, 1, 1, 0, 1, 1", "number of continuous time states": "3", "numerical Jacobians": "0" } -pmpSouth.m_flow=[0e+00, 5.018579483032227e+00, 4.728241920471191e+00, 4.816676616668701e+00, 4.896131038665771e+00, 4.967477321624756e+00, 5.03151273727417e+00, 5.0889573097229e+00, 5.140457153320312e+00, 5.186590671539307e+00, 5.227871894836426e+00, 5.26475715637207e+00, 5.297648906707764e+00, 5.326901435852051e+00, 5.352827072143555e+00, 5.375698089599609e+00, 5.395751476287842e+00, 5.413193225860596e+00, 5.42819881439209e+00, 5.440918922424316e+00, 5.451479434967041e+00, 5.459983825683594e+00, 5.466514587402344e+00, 5.471135139465332e+00, 5.47389030456543e+00, 5.474805355072021e+00, 5.47389030456543e+00, 6.153408050537109e+00, 6.146831035614014e+00, 6.137541770935059e+00, 6.125458240509033e+00, 6.110471248626709e+00, 6.092447757720947e+00, 6.071224689483643e+00, 6.046609878540039e+00, 6.018378257751465e+00, 5.986271858215332e+00, 5.949994087219238e+00, 5.90920877456665e+00, 5.863537311553955e+00, 5.812554359436035e+00, 5.75578498840332e+00, 5.692702770233154e+00, 5.622726440429688e+00, 5.545217514038086e+00, 5.459481716156006e+00, 5.36476993560791e+00, 5.260281085968018e+00, 5.145174026489258e+00, 5.018579483032227e+00, 4.879621982574463e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -pmpNorth.m_flow=[0e+00, 5.476596832275391e+00, 5.134872913360596e+00, 5.241343975067139e+00, 5.336724281311035e+00, 5.42204475402832e+00, 5.49827766418457e+00, 5.566323757171631e+00, 5.627006530761719e+00, 5.681071281433105e+00, 5.729185581207275e+00, 5.771944522857666e+00, 5.809875011444092e+00, 5.843441009521484e+00, 5.873049736022949e+00, 5.899054527282715e+00, 5.921764373779297e+00, 5.941442966461182e+00, 5.95831823348999e+00, 5.972582340240479e+00, 5.984394550323486e+00, 5.993887424468994e+00, 6.001165390014648e+00, 6.006308555603027e+00, 6.009371757507324e+00, 6.01038932800293e+00, 6.009371757507324e+00, 6.842513561248779e+00, 6.83491849899292e+00, 6.824180126190186e+00, 6.810193061828613e+00, 6.792816638946533e+00, 6.771877288818359e+00, 6.747164249420166e+00, 6.718426704406738e+00, 6.685370445251465e+00, 6.647656440734863e+00, 6.60489559173584e+00, 6.556644916534424e+00, 6.502403736114502e+00, 6.441612243652344e+00, 6.373644828796387e+00, 6.297811508178711e+00, 6.213356971740723e+00, 6.119462966918945e+00, 6.01525354385376e+00, 5.899808406829834e+00, 5.772178649902344e+00, 5.63141393661499e+00, 5.476596832275391e+00, 5.306889057159424e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -0e+00] time=[0e+00, 1e+03] +pmpNorth.m_flow=[0e+00, 5.476596832275391e+00, 5.134872913360596e+00, 5.241343975067139e+00, 5.336724281311035e+00, 5.42204475402832e+00, 5.49827766418457e+00, 5.566323757171631e+00, 5.627006530761719e+00, 5.681071281433105e+00, 5.729185581207275e+00, 5.771944522857666e+00, 5.809875011444092e+00, 5.843441009521484e+00, 5.873049736022949e+00, 5.899054527282715e+00, 5.921764373779297e+00, 5.941442966461182e+00, 5.95831823348999e+00, 5.972582340240479e+00, 5.984394550323486e+00, 5.993887424468994e+00, 6.001165390014648e+00, 6.006308555603027e+00, 6.009371757507324e+00, 6.01038932800293e+00, 6.009371757507324e+00, 6.842513561248779e+00, 6.83491849899292e+00, 6.824180126190186e+00, 6.810193061828613e+00, 6.792816638946533e+00, 6.771877288818359e+00, 6.747164249420166e+00, 6.718426704406738e+00, 6.685370445251465e+00, 6.647656440734863e+00, 6.60489559173584e+00, 6.556644916534424e+00, 6.502403736114502e+00, 6.441612243652344e+00, 6.373644828796387e+00, 6.297811508178711e+00, 6.213356971740723e+00, 6.119462966918945e+00, 6.01525354385376e+00, 5.899808406829834e+00, 5.772178649902344e+00, 5.63141393661499e+00, 5.476596832275391e+00, 5.306889057159424e+00, -1.263664266270686e-27, -2.382207389352189e-44, 4.06376554654197e-44, 7.006492321624085e-45, 8.407790785948902e-45, 3.503246160812043e-44, -2.522337235784671e-44, -9.809089250273719e-45, 5.885453550164232e-44, -4.06376554654197e-44, -2.662467082217152e-44, 4.764414778704378e-44, -4.203895392974451e-45, -1.121038771459854e-44, 1.68155815718978e-44, -7.006492321624085e-45, -0e+00, 0e+00, -0e+00, -0e+00, 0e+00, 0e+00, 0e+00, -0e+00, -0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 0e+00, -0e+00, 0e+00, 0e+00, -0e+00, -0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 0e+00, 0e+00] +pmpSouth.m_flow=[0e+00, 5.018579483032227e+00, 4.728241920471191e+00, 4.816676616668701e+00, 4.896131038665771e+00, 4.967477321624756e+00, 5.03151273727417e+00, 5.0889573097229e+00, 5.140457153320312e+00, 5.186590671539307e+00, 5.227871894836426e+00, 5.26475715637207e+00, 5.297648906707764e+00, 5.326901435852051e+00, 5.352827072143555e+00, 5.375698089599609e+00, 5.395751476287842e+00, 5.413193225860596e+00, 5.42819881439209e+00, 5.440918922424316e+00, 5.451479434967041e+00, 5.459983825683594e+00, 5.466514587402344e+00, 5.471135139465332e+00, 5.47389030456543e+00, 5.474805355072021e+00, 5.47389030456543e+00, 6.153408050537109e+00, 6.146831035614014e+00, 6.137541770935059e+00, 6.125458240509033e+00, 6.110471248626709e+00, 6.092447757720947e+00, 6.071224689483643e+00, 6.046609878540039e+00, 6.018378257751465e+00, 5.986271858215332e+00, 5.949994087219238e+00, 5.90920877456665e+00, 5.863537311553955e+00, 5.812554359436035e+00, 5.75578498840332e+00, 5.692702770233154e+00, 5.622726440429688e+00, 5.545217514038086e+00, 5.459481716156006e+00, 5.36476993560791e+00, 5.260281085968018e+00, 5.145174026489258e+00, 5.018579483032227e+00, 4.879621982574463e+00, 3.510178490669545e-28, 1.68155815718978e-44, 4.90454462513686e-44, -5.605193857299268e-45, -6.025583396596713e-44, 2.802596928649634e-45, 2.382207389352189e-44, 9.809089250273719e-45, 5.184804318001823e-44, -3.082856621514598e-44, -2.802596928649634e-45, 6.305843089461677e-44, -1.541428310757299e-44, -2.802596928649634e-45, -2.242077542919707e-44, 4.203895392974451e-45, 2.802596928649634e-45, -2.802596928649634e-45, 1.401298464324817e-45, -0e+00, 0e+00, 0e+00, -0e+00, -0e+00, -0e+00, 0e+00, -0e+00, -0e+00, 0e+00, -0e+00, 0e+00, -0e+00, 0e+00, -0e+00, 0e+00, 0e+00, 0e+00, -0e+00, 0e+00, -0e+00, 0e+00, -0e+00, 0e+00, -0e+00, -0e+00, -0e+00, 0e+00, 0e+00, 0e+00, -0e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Examples_GeothermalHeatPump.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Examples_GeothermalHeatPump.txt index b78138d30d..0992023f63 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Examples_GeothermalHeatPump.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Examples_GeothermalHeatPump.txt @@ -1,19 +1,19 @@ -last-generated=2021-05-21 +last-generated=2022-07-06 statistics-initialization= { - "nonlinear": "1, 0, 2, 0, 1, 0, 1, 0, 1, 0", + "nonlinear": "1, 0, 1, 0, 1, 0, 1, 0, 1, 0", "numerical Jacobians": "0" } statistics-simulation= { - "linear": "0, 0", - "nonlinear": "1, 1, 1, 1, 0, 0", - "number of continuous time states": "55", + "linear": "0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0", + "nonlinear": "2, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1", + "number of continuous time states": "113", "numerical Jacobians": "0" } time=[0e+00, 8.64e+04] -heatPumpPower=[1.4345e+03, 4.42386767578125e+03, 4.6409931640625e+03, 0e+00, 0e+00, 0e+00, 0e+00, 4.318208984375001e+03, 4.5277685546875e+03, 0e+00, 0e+00, 0e+00, 0e+00, 4.3625849609375e+03, 0e+00, 0e+00, 0e+00, 0e+00, 3.998827392578125e+03, 4.42309716796875e+03, 0e+00, 0e+00, 0e+00, 0e+00, 4.3084814453125e+03, 4.4858369140625e+03, 0e+00, 0e+00, 0e+00, 0e+00, 4.3696005859375e+03, 0e+00, 0e+00, 0e+00, 0e+00, 4.223259277343747e+03, 4.4418466796875e+03, 0e+00, 0e+00, 0e+00, 0e+00, 4.3294462890625e+03, 0e+00, 0e+00, 0e+00, 0e+00, 2.933275390625e+03, 4.3955634765625e+03, 0e+00, 0e+00, 0e+00, 0e+00, 4.28214013671875e+03, 4.46506787109375e+03, 0e+00, 0e+00, 0e+00, 0e+00, 4.34936279296875e+03, 0e+00, 0e+00, 0e+00, 0e+00, 4.064894287109375e+03, 4.4208994140625e+03, 0e+00, 0e+00, 0e+00, 0e+00, 4.310643066406248e+03, 3.81714926334098e-09, 0e+00, 0e+00, 0e+00, 0e+00, 4.3730126953125e+03, 0e+00, 0e+00, 0e+00, 0e+00, 4.23611328125e+03, 4.44516455078125e+03, 0e+00, 0e+00, 0e+00, 0e+00, 4.332404296875e+03, 0e+00, 0e+00, 0e+00, 0e+00, 3.26808251953125e+03, 4.39930078125e+03, 0e+00, 0e+00, 0e+00, 0e+00, 4.28718017578125e+03, 4.4683701171875e+03, 0e+00, 0e+00] -heatStorage.layer[1].T=[3e+02, 3.038170776367188e+02, 3.057808227539062e+02, 3.052456665039062e+02, 3.0425146484375e+02, 3.038265991210938e+02, 3.035934753417969e+02, 3.041246643066406e+02, 3.058272399902344e+02, 3.047745056152344e+02, 3.04052978515625e+02, 3.037186889648438e+02, 3.035254211425781e+02, 3.050009155273438e+02, 3.057067260742188e+02, 3.044132690429688e+02, 3.038963623046875e+02, 3.036319885253906e+02, 3.036293334960938e+02, 3.055513305664062e+02, 3.050584716796875e+02, 3.04166748046875e+02, 3.037777709960938e+02, 3.035618286132812e+02, 3.045522766113281e+02, 3.059392700195312e+02, 3.046178588867188e+02, 3.039872131347656e+02, 3.0368310546875e+02, 3.035030822753906e+02, 3.052258605957031e+02, 3.054479370117188e+02, 3.043146057128906e+02, 3.038503112792969e+02, 3.03605224609375e+02, 3.039739074707031e+02, 3.057012023925781e+02, 3.048827209472656e+02, 3.040972595214844e+02, 3.037420654296875e+02, 3.035399475097656e+02, 3.048179626464844e+02, 3.058942565917969e+02, 3.044989318847656e+02, 3.039351501464844e+02, 3.036540832519531e+02, 3.034848327636719e+02, 3.054106140136719e+02, 3.052244873046875e+02, 3.042305297851562e+02, 3.038096008300781e+02, 3.035810546875e+02, 3.043018493652344e+02, 3.058349914550781e+02, 3.047315368652344e+02, 3.040353393554688e+02, 3.037092590332031e+02, 3.035195617675781e+02, 3.050497131347656e+02, 3.056579895019531e+02, 3.043944091796875e+02, 3.038876953125e+02, 3.036270141601562e+02, 3.036866760253906e+02, 3.055747985839844e+02, 3.050293273925781e+02, 3.041554260253906e+02, 3.037720336914062e+02, 3.03558349609375e+02, 3.045951538085938e+02, 3.059555053710938e+02, 3.045992431640625e+02, 3.039791870117188e+02, 3.036786804199219e+02, 3.035002746582031e+02, 3.052543029785156e+02, 3.054135131835938e+02, 3.043016967773438e+02, 3.038441467285156e+02, 3.036015930175781e+02, 3.040234985351562e+02, 3.057215270996094e+02, 3.048594360351562e+02, 3.040878601074219e+02, 3.037371520996094e+02, 3.035369262695312e+02, 3.04853515625e+02, 3.058642883300781e+02, 3.044829406738281e+02, 3.039280090332031e+02, 3.036500549316406e+02, 3.034893188476562e+02, 3.054356384277344e+02, 3.051944274902344e+02, 3.042191162109375e+02, 3.038039855957031e+02, 3.035776672363281e+02, 3.043467102050781e+02, 3.05853271484375e+02, 3.047112121582031e+02, 3.0402685546875e+02] -heatStorage.layer[5].T=[3e+02, 3.0436767578125e+02, 3.089742431640625e+02, 3.103680725097656e+02, 3.090579833984375e+02, 3.076457824707031e+02, 3.063719177246094e+02, 3.064977722167969e+02, 3.10144287109375e+02, 3.098427124023438e+02, 3.084295654296875e+02, 3.070652770996094e+02, 3.059130554199219e+02, 3.080125732421875e+02, 3.106697082519531e+02, 3.092971496582031e+02, 3.078811340332031e+02, 3.065830688476562e+02, 3.058273010253906e+02, 3.093593139648438e+02, 3.101635437011719e+02, 3.087554931640625e+02, 3.073625793457031e+02, 3.061510620117188e+02, 3.071657409667969e+02, 3.106192932128906e+02, 3.096365661621094e+02, 3.082177124023438e+02, 3.068748474121094e+02, 3.057629699707031e+02, 3.085176086425781e+02, 3.104975280761719e+02, 3.091028442382812e+02, 3.076915283203125e+02, 3.064224548339844e+02, 3.062793579101562e+02, 3.098123168945312e+02, 3.099784851074219e+02, 3.085650329589844e+02, 3.071866760253906e+02, 3.060091857910156e+02, 3.076478881835938e+02, 3.107616577148438e+02, 3.094500427246094e+02, 3.080311889648438e+02, 3.067117614746094e+02, 3.056427001953125e+02, 3.08978271484375e+02, 3.10317626953125e+02, 3.089144897460938e+02, 3.075116577148438e+02, 3.062730102539062e+02, 3.067582397460938e+02, 3.102512817382812e+02, 3.097942199707031e+02, 3.083770141601562e+02, 3.070165100097656e+02, 3.058740234375e+02, 3.081200256347656e+02, 3.1064208984375e+02, 3.092630920410156e+02, 3.078470153808594e+02, 3.065537109375e+02, 3.058994140625e+02, 3.094311828613281e+02, 3.101351928710938e+02, 3.087260131835938e+02, 3.073349914550781e+02, 3.061286010742188e+02, 3.072397766113281e+02, 3.106793823242188e+02, 3.096090698242188e+02, 3.081899719238281e+02, 3.068503723144531e+02, 3.057439270019531e+02, 3.085856323242188e+02, 3.104716186523438e+02, 3.090753784179688e+02, 3.076650695800781e+02, 3.064003295898438e+02, 3.063483276367188e+02, 3.098766479492188e+02, 3.099517211914062e+02, 3.085376281738281e+02, 3.071616821289062e+02, 3.059891967773438e+02, 3.077169189453125e+02, 3.10751708984375e+02, 3.094229431152344e+02, 3.080043029785156e+02, 3.066885070800781e+02, 3.056509704589844e+02, 3.090445251464844e+02, 3.102912292480469e+02, 3.088871154785156e+02, 3.074858093261719e+02, 3.062517395019531e+02, 3.068283081054688e+02, 3.103143615722656e+02, 3.097673950195312e+02, 3.083497924804688e+02] -coldStorage.layer[5].T=[3e+02, 2.962242126464844e+02, 2.935152893066406e+02, 2.921585388183594e+02, 2.918456420898438e+02, 2.915948791503906e+02, 2.913804321289062e+02, 2.908291320800781e+02, 2.894996337890625e+02, 2.895317077636719e+02, 2.897060852050781e+02, 2.898100891113281e+02, 2.898818969726562e+02, 2.892098083496094e+02, 2.887135314941406e+02, 2.891473693847656e+02, 2.893928527832031e+02, 2.895562133789062e+02, 2.896052856445312e+02, 2.887305297851562e+02, 2.887669067382812e+02, 2.891376647949219e+02, 2.893673706054688e+02, 2.895301208496094e+02, 2.891537780761719e+02, 2.884548034667969e+02, 2.888932800292969e+02, 2.892041625976562e+02, 2.894094848632812e+02, 2.895604553222656e+02, 2.888290405273438e+02, 2.88579345703125e+02, 2.890184326171875e+02, 2.892818603515625e+02, 2.894646606445312e+02, 2.893689880371094e+02, 2.885751037597656e+02, 2.88773193359375e+02, 2.891285400390625e+02, 2.893554382324219e+02, 2.895191040039062e+02, 2.890137634277344e+02, 2.884291687011719e+02, 2.889289245605469e+02, 2.892236328125e+02, 2.894221801757812e+02, 2.895697631835938e+02, 2.887295837402344e+02, 2.886490173339844e+02, 2.890562744140625e+02, 2.893063049316406e+02, 2.894823913574219e+02, 2.892333374023438e+02, 2.884967651367188e+02, 2.888306884765625e+02, 2.891627502441406e+02, 2.893790588378906e+02, 2.89536865234375e+02, 2.889070129394531e+02, 2.885055847167969e+02, 2.889761047363281e+02, 2.89253662109375e+02, 2.8944384765625e+02, 2.894866638183594e+02, 2.886428527832031e+02, 2.88717529296875e+02, 2.890955505371094e+02, 2.89332763671875e+02, 2.895020446777344e+02, 2.891105651855469e+02, 2.884247741699219e+02, 2.888851013183594e+02, 2.891961364746094e+02, 2.894025573730469e+02, 2.895547485351562e+02, 2.88808349609375e+02, 2.885853576660156e+02, 2.890204772949219e+02, 2.892825622558594e+02, 2.894649047851562e+02, 2.893465881347656e+02, 2.885618896484375e+02, 2.887806396484375e+02, 2.891326599121094e+02, 2.89358154296875e+02, 2.895210876464844e+02, 2.889972534179688e+02, 2.884383544921875e+02, 2.889356689453125e+02, 2.892278137207031e+02, 2.894251708984375e+02, 2.895704956054688e+02, 2.887164916992188e+02, 2.886592102050781e+02, 2.890620422363281e+02, 2.893101501464844e+02, 2.894852294921875e+02, 2.892148132324219e+02, 2.884859924316406e+02, 2.888388366699219e+02, 2.891676940917969e+02] -coldStorage.layer[1].T=[3e+02, 2.967335510253906e+02, 2.936954040527344e+02, 2.924543762207031e+02, 2.921620788574219e+02, 2.9187890625e+02, 2.916347961425781e+02, 2.907200012207031e+02, 2.882923889160156e+02, 2.882566528320312e+02, 2.886118469238281e+02, 2.888880310058594e+02, 2.891168212890625e+02, 2.875628662109375e+02, 2.861292724609375e+02, 2.868271179199219e+02, 2.873977966308594e+02, 2.878840942382812e+02, 2.880740966796875e+02, 2.860600891113281e+02, 2.858305358886719e+02, 2.865864868164062e+02, 2.872141418457031e+02, 2.877467651367188e+02, 2.870047302246094e+02, 2.852257080078125e+02, 2.859789733886719e+02, 2.867106628417969e+02, 2.873249206542969e+02, 2.878449096679688e+02, 2.862146911621094e+02, 2.853872985839844e+02, 2.862300109863281e+02, 2.869210205078125e+02, 2.875047302246094e+02, 2.874161682128906e+02, 2.855444946289062e+02, 2.857141418457031e+02, 2.86494140625e+02, 2.871437683105469e+02, 2.87693603515625e+02, 2.86646728515625e+02, 2.851421203613281e+02, 2.860236511230469e+02, 2.867492980957031e+02, 2.873598022460938e+02, 2.878707580566406e+02, 2.859535217285156e+02, 2.854900817871094e+02, 2.863125e+02, 2.869908447265625e+02, 2.875644226074219e+02, 2.871310119628906e+02, 2.853235473632812e+02, 2.858214721679688e+02, 2.865821533203125e+02, 2.872183532714844e+02, 2.877567138671875e+02, 2.863946533203125e+02, 2.852583618164062e+02, 2.86126220703125e+02, 2.868347778320312e+02, 2.874322509765625e+02, 2.876487426757812e+02, 2.857257385253906e+02, 2.856091918945312e+02, 2.864087829589844e+02, 2.870719299316406e+02, 2.876330261230469e+02, 2.868645629882812e+02, 2.851177978515625e+02, 2.859309387207031e+02, 2.866724243164062e+02, 2.872947692871094e+02, 2.878211364746094e+02, 2.86153076171875e+02, 2.853842468261719e+02, 2.862275085449219e+02, 2.869195251464844e+02, 2.875040588378906e+02, 2.873662719726562e+02, 2.855058288574219e+02, 2.857250671386719e+02, 2.865031433105469e+02, 2.871515502929688e+02, 2.877003479003906e+02, 2.866075134277344e+02, 2.851553344726562e+02, 2.860374450683594e+02, 2.867607727050781e+02, 2.873695678710938e+02, 2.878539428710938e+02, 2.8591943359375e+02, 2.855071716308594e+02, 2.863262634277344e+02, 2.8700244140625e+02, 2.875742492675781e+02, 2.870915222167969e+02, 2.852928466796875e+02, 2.858374633789062e+02, 2.865953063964844e+02] +heatPumpPower=[1.4345e+03, 3.896387451171875e+03, 3.948070556640625e+03, 3.981284423828125e+03, 4.0029033203125e+03, 4.017043212890625e+03, 4.026296875e+03, 4.01835791015625e+03, 4.062794677734375e+03, 6.257839965820312e+02, 8.745105590820312e+02, 3.966314697265625e+03, 3.988554443359375e+03, 3.992769287109375e+03, 4.050381591796875e+03, 4.044908935546875e+03, 8.746222534179688e+02, 6.600349731445311e+02, 3.916833740234375e+03, 3.947125732421875e+03, 4.019474853515625e+03, 4.024126220703125e+03, 4.016660400390625e+03, 4.055726318359375e+03, 6.267014770507812e+02, 8.745106201171875e+02, 3.961543212890625e+03, 3.98491748046875e+03, 3.990190673828125e+03, 4.047609130859375e+03, 4.04412744140625e+03, 9.539927978515625e+02, 6.602987060546875e+02, 3.87441162109375e+03, 3.94232958984375e+03, 4.016078857421874e+03, 4.022084716796875e+03, 4.015318359375e+03, 4.052810302734375e+03, 6.270133056640625e+02, 8.745106201171875e+02, 3.957061279296875e+03, 3.982141357421875e+03, 3.988316650390625e+03, 4.045515625e+03, 4.04343359375e+03, 1.4332451171875e+03, 6.643651123046875e+02, 3.8370849609375e+03, 3.938772705078125e+03, 4.01360693359375e+03, 4.020560791015625e+03, 4.014320068359375e+03, 4.051552734375e+03, 6.27177001953125e+02, 8.745106811523438e+02, 3.953599609375e+03, 3.980117919921875e+03, 3.9869697265625e+03, 4.04405224609375e+03, 4.042918212890625e+03, 2.80371337890625e+03, 6.677594604492188e+02, 3.78389306640625e+03, 3.936125e+03, 4.0120146484375e+03, 4.019367431640625e+03, 4.01354150390625e+03, 4.053092529296875e+03, 6.271268310546877e+02, 8.74510681152344e+02, 3.951143310546875e+03, 3.9786376953125e+03, 3.9860146484375e+03, 4.043724609375e+03, 4.04250146484375e+03, 4.02937939453125e+03, 6.646435546875e+02, 3.436643310546875e+03, 3.934267822265625e+03, 4.01107080078125e+03, 4.01845556640625e+03, 4.012952880859375e+03, 4.056391845703125e+03, 6.268676147460938e+02, 8.745106201171875e+02, 3.949607666015625e+03, 3.97762451171875e+03, 3.98540087890625e+03, 4.044221435546875e+03, 4.04216455078125e+03, 4.02912158203125e+03, 6.599116821289062e+02, 2.955962890625e+03, 3.933100830078125e+03, 4.0103681640625e+03, 4.0177841796875e+03, 4.01255126953125e+03, 4.0600634765625e+03, 6.264298095703125e+02, 8.745106201171875e+02] +heatStorage.layer[1].T=[2.981499938964844e+02, 3.016968078613281e+02, 3.029641723632812e+02, 3.035884094238281e+02, 3.039617614746094e+02, 3.042005004882812e+02, 3.043561706542969e+02, 3.044581604003906e+02, 3.045218200683594e+02, 3.03759521484375e+02, 3.033175354003906e+02, 3.037633972167969e+02, 3.040765380859375e+02, 3.042713012695312e+02, 3.04395751953125e+02, 3.044883117675781e+02, 3.042914428710938e+02, 3.034690856933594e+02, 3.035163879394531e+02, 3.039264221191406e+02, 3.0416845703125e+02, 3.043354187011719e+02, 3.044450073242188e+02, 3.045134887695312e+02, 3.038678283691406e+02, 3.0334912109375e+02, 3.037118225097656e+02, 3.040462951660156e+02, 3.042523193359375e+02, 3.043835144042969e+02, 3.044803466796875e+02, 3.044676208496094e+02, 3.035207824707031e+02, 3.03459228515625e+02, 3.038890075683594e+02, 3.041451416015625e+02, 3.043203430175781e+02, 3.044353332519531e+02, 3.045074462890625e+02, 3.039541320800781e+02, 3.033743896484375e+02, 3.036736145019531e+02, 3.040243835449219e+02, 3.042386474609375e+02, 3.043748168945312e+02, 3.044748840332031e+02, 3.04536865234375e+02, 3.035638732910156e+02, 3.034568481445312e+02, 3.038610229492188e+02, 3.041279907226562e+02, 3.043093566894531e+02, 3.044284057617188e+02, 3.04503173828125e+02, 3.040205688476562e+02, 3.033939514160156e+02, 3.036455688476562e+02, 3.040086364746094e+02, 3.042289428710938e+02, 3.043687744140625e+02, 3.044711608886719e+02, 3.045381774902344e+02, 3.035979614257812e+02, 3.034754333496094e+02, 3.038401794433594e+02, 3.041153869628906e+02, 3.043014526367188e+02, 3.044234008789062e+02, 3.045001831054688e+02, 3.040693969726562e+02, 3.03408447265625e+02, 3.03625732421875e+02, 3.039977416992188e+02, 3.042222900390625e+02, 3.043646850585938e+02, 3.044687805175781e+02, 3.045370178222656e+02, 3.03622802734375e+02, 3.034818725585938e+02, 3.038256530761719e+02, 3.041067504882812e+02, 3.04296142578125e+02, 3.044201049804688e+02, 3.04498291015625e+02, 3.0410107421875e+02, 3.034179382324219e+02, 3.0361328125e+02, 3.039910888671875e+02, 3.042182922363281e+02, 3.043623657226562e+02, 3.044676208496094e+02, 3.045364990234375e+02, 3.036387939453125e+02, 3.034779052734375e+02, 3.03816650390625e+02, 3.041015319824219e+02, 3.042930908203125e+02, 3.044182739257812e+02, 3.04497314453125e+02, 3.041169738769531e+02, 3.034230041503906e+02] +heatStorage.layer[5].T=[2.981499938964844e+02, 3.027097473144531e+02, 3.061161499023438e+02, 3.085168151855469e+02, 3.102352600097656e+02, 3.1142138671875e+02, 3.122183837890625e+02, 3.127379760742188e+02, 3.130661315917969e+02, 3.106401062011719e+02, 3.081675720214844e+02, 3.09175048828125e+02, 3.10759033203125e+02, 3.117455749511719e+02, 3.124004516601562e+02, 3.129135131835938e+02, 3.119848327636719e+02, 3.093453369140625e+02, 3.078632202148438e+02, 3.099534606933594e+02, 3.112000427246094e+02, 3.120983581542969e+02, 3.126643676757812e+02, 3.130160217285156e+02, 3.109778137207031e+02, 3.084613037109375e+02, 3.089139099121094e+02, 3.106021423339844e+02, 3.116443176269531e+02, 3.123274230957031e+02, 3.128676147460938e+02, 3.124396057128906e+02, 3.096885070800781e+02, 3.075147094726562e+02, 3.097561950683594e+02, 3.11073974609375e+02, 3.120152587890625e+02, 3.126097412109375e+02, 3.129799499511719e+02, 3.112145385742188e+02, 3.086705017089844e+02, 3.087220153808594e+02, 3.104881286621094e+02, 3.115704040527344e+02, 3.122767333984375e+02, 3.128350830078125e+02, 3.129615783691406e+02, 3.09912109375e+02, 3.07276611328125e+02, 3.096092834472656e+02, 3.109812622070312e+02, 3.119542541503906e+02, 3.125696105957031e+02, 3.12953857421875e+02, 3.113809509277344e+02, 3.088193969726562e+02, 3.085813903808594e+02, 3.104056701660156e+02, 3.115171508789062e+02, 3.12240966796875e+02, 3.128121948242188e+02, 3.131569519042969e+02, 3.100731201171875e+02, 3.071260375976562e+02, 3.094991760253906e+02, 3.109135131835938e+02, 3.119095458984375e+02, 3.125399169921875e+02, 3.129352416992188e+02, 3.114954833984375e+02, 3.089227905273438e+02, 3.084823303222656e+02, 3.103480224609375e+02, 3.114798278808594e+02, 3.122169799804688e+02, 3.127968139648438e+02, 3.131474304199219e+02, 3.101835327148438e+02, 3.071091613769531e+02, 3.094214477539062e+02, 3.108676452636719e+02, 3.118789367675781e+02, 3.125191345214844e+02, 3.129231872558594e+02, 3.115664672851562e+02, 3.089874877929688e+02, 3.084205932617188e+02, 3.103121337890625e+02, 3.114562683105469e+02, 3.122033996582031e+02, 3.127879638671875e+02, 3.131415405273438e+02, 3.102514343261719e+02, 3.071721801757812e+02, 3.093722229003906e+02, 3.108407287597656e+02, 3.118605041503906e+02, 3.125060424804688e+02, 3.129172058105469e+02, 3.116008605957031e+02, 3.09019287109375e+02] +coldStorage.layer[5].T=[2.981499938964844e+02, 2.907706909179688e+02, 2.886040649414062e+02, 2.876393432617188e+02, 2.870844421386719e+02, 2.867330932617188e+02, 2.865041198730469e+02, 2.865075988769531e+02, 2.868320617675781e+02, 2.865350036621094e+02, 2.866257934570312e+02, 2.868024291992188e+02, 2.865132446289062e+02, 2.8656982421875e+02, 2.868181762695312e+02, 2.865293579101562e+02, 2.864901733398438e+02, 2.868446960449219e+02, 2.865313110351562e+02, 2.865607299804688e+02, 2.868206787109375e+02, 2.86531494140625e+02, 2.864883117675781e+02, 2.868399658203125e+02, 2.865440979003906e+02, 2.865964660644531e+02, 2.868117065429688e+02, 2.865213928222656e+02, 2.865403442382812e+02, 2.868251647949219e+02, 2.865372009277344e+02, 2.864586486816406e+02, 2.868521118164062e+02, 2.865357360839844e+02, 2.865538635253906e+02, 2.86822021484375e+02, 2.865328979492188e+02, 2.86482666015625e+02, 2.868414916992188e+02, 2.86546875e+02, 2.865848693847656e+02, 2.868144836425781e+02, 2.86524169921875e+02, 2.865300903320312e+02, 2.86827392578125e+02, 2.865395202636719e+02, 2.864488220214844e+02, 2.868563842773438e+02, 2.865384521484375e+02, 2.865508117675781e+02, 2.868223571777344e+02, 2.865331726074219e+02, 2.864811401367188e+02, 2.868416442871094e+02, 2.865480346679688e+02, 2.865784606933594e+02, 2.868157348632812e+02, 2.865254516601562e+02, 2.86525146484375e+02, 2.868283081054688e+02, 2.865404052734375e+02, 2.864447631835938e+02, 2.868586120605469e+02, 2.865392456054688e+02, 2.865543823242188e+02, 2.868211059570312e+02, 2.865316467285156e+02, 2.864866333007812e+02, 2.868394165039062e+02, 2.865469360351562e+02, 2.865789489746094e+02, 2.868152160644531e+02, 2.865247497558594e+02, 2.865274353027344e+02, 2.868273010253906e+02, 2.865392761230469e+02, 2.864485778808594e+02, 2.868559265136719e+02, 2.865377502441406e+02, 2.865640869140625e+02, 2.868183288574219e+02, 2.865283508300781e+02, 2.864987487792969e+02, 2.868351440429688e+02, 2.865437622070312e+02, 2.865858764648438e+02, 2.868130187988281e+02, 2.865221557617188e+02, 2.865365295410156e+02, 2.868246459960938e+02, 2.865362854003906e+02, 2.864598083496094e+02, 2.868494262695312e+02, 2.865341796875e+02, 2.865788879394531e+02, 2.868140869140625e+02, 2.865235595703125e+02, 2.865162963867188e+02, 2.868297729492188e+02, 2.865387573242188e+02, 2.865982055664062e+02] +coldStorage.layer[1].T=[2.981499938964844e+02, 2.937610168457031e+02, 2.901888427734375e+02, 2.870999450683594e+02, 2.8467431640625e+02, 2.82936279296875e+02, 2.817501831054688e+02, 2.816019592285156e+02, 2.832658386230469e+02, 2.817357788085938e+02, 2.818509521484375e+02, 2.830223693847656e+02, 2.816957702636719e+02, 2.817525634765625e+02, 2.831559143066406e+02, 2.817844543457031e+02, 2.814944152832031e+02, 2.831917724609375e+02, 2.8171484375e+02, 2.817188110351562e+02, 2.831773071289062e+02, 2.817918090820312e+02, 2.815389099121094e+02, 2.832839660644531e+02, 2.817866821289062e+02, 2.8176220703125e+02, 2.830953063964844e+02, 2.817353820800781e+02, 2.816723327636719e+02, 2.832197875976562e+02, 2.818228454589844e+02, 2.814604797363281e+02, 2.832069702148438e+02, 2.817265930175781e+02, 2.816995849609375e+02, 2.831923828125e+02, 2.817996520996094e+02, 2.815254821777344e+02, 2.832851257324219e+02, 2.818074340820312e+02, 2.8172900390625e+02, 2.831231689453125e+02, 2.817495422363281e+02, 2.816456298828125e+02, 2.832386474609375e+02, 2.818352355957031e+02, 2.8144384765625e+02, 2.832257385253906e+02, 2.817344055175781e+02, 2.816914672851562e+02, 2.831986389160156e+02, 2.818023376464844e+02, 2.815223083496094e+02, 2.832851257324219e+02, 2.818192138671875e+02, 2.817113037109375e+02, 2.831380920410156e+02, 2.817567138671875e+02, 2.816331787109375e+02, 2.832467956542969e+02, 2.818407287597656e+02, 2.814346008300781e+02, 2.832281188964844e+02, 2.817342529296875e+02, 2.817013854980469e+02, 2.831906127929688e+02, 2.817963562011719e+02, 2.815367431640625e+02, 2.832840576171875e+02, 2.818191223144531e+02, 2.817138671875e+02, 2.831364135742188e+02, 2.817544250488281e+02, 2.816398620605469e+02, 2.832428588867188e+02, 2.818367614746094e+02, 2.814444885253906e+02, 2.832278137207031e+02, 2.817257995605469e+02, 2.817286071777344e+02, 2.8316845703125e+02, 2.817820434570312e+02, 2.815679626464844e+02, 2.832780456542969e+02, 2.818078918457031e+02, 2.817354431152344e+02, 2.831190490722656e+02, 2.817432250976562e+02, 2.816646728515625e+02, 2.832263793945312e+02, 2.818238830566406e+02, 2.814724426269531e+02, 2.832250671386719e+02, 2.817092590332031e+02, 2.817708129882812e+02, 2.831331481933594e+02, 2.817605895996094e+02, 2.816138305664062e+02, 2.83259765625e+02, 2.817870178222656e+02, 2.817733459472656e+02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Examples_SimpleHouse.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Examples_SimpleHouse.txt index 95d954fbb4..b258794031 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Examples_SimpleHouse.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Examples_SimpleHouse.txt @@ -1,4 +1,4 @@ -last-generated=2020-04-17 +last-generated=2022-07-06 statistics-initialization= { "nonlinear": "5", @@ -12,8 +12,8 @@ statistics-simulation= "numerical Jacobians": "0" } time=[0e+00, 3.1536e+07] -zone.T=[2.931499938964844e+02, 2.936580505371094e+02, 2.951419677734375e+02, 2.933544616699219e+02, 2.943117980957031e+02, 2.932275390625e+02, 2.931507873535156e+02, 2.942293701171875e+02, 2.951411743164062e+02, 2.947664489746094e+02, 2.931815185546875e+02, 2.951128845214844e+02, 2.93157470703125e+02, 2.942505187988281e+02, 2.950146789550781e+02, 2.931921691894531e+02, 2.944391784667969e+02, 2.9505517578125e+02, 2.932373962402344e+02, 2.934900817871094e+02, 2.93336669921875e+02, 2.935121765136719e+02, 2.935026245117188e+02, 2.931674499511719e+02, 2.936946105957031e+02, 2.936110229492188e+02, 2.931544799804688e+02, 2.931904296875e+02, 2.942474060058594e+02, 2.967212829589844e+02, 2.974004821777344e+02, 2.972779846191406e+02, 2.973038330078125e+02, 2.972035217285156e+02, 2.974526977539062e+02, 2.974382629394531e+02, 2.97402587890625e+02, 2.974246215820312e+02, 2.974088134765625e+02, 2.974887084960938e+02, 2.97528076171875e+02, 2.975379333496094e+02, 2.975238952636719e+02, 2.975830383300781e+02, 2.975098876953125e+02, 2.974816284179688e+02, 2.975858459472656e+02, 2.975862426757812e+02, 2.975217590332031e+02, 2.975988464355469e+02, 2.974871520996094e+02, 2.975801086425781e+02, 2.975681457519531e+02, 2.975058898925781e+02, 2.975872802734375e+02, 2.976447448730469e+02, 2.975877075195312e+02, 2.975962524414062e+02, 2.976087036132812e+02, 2.975819396972656e+02, 2.975243835449219e+02, 2.975371398925781e+02, 2.974706115722656e+02, 2.975225830078125e+02, 2.975242614746094e+02, 2.97474609375e+02, 2.974830017089844e+02, 2.974789428710938e+02, 2.974937438964844e+02, 2.9748876953125e+02, 2.97445068359375e+02, 2.974119567871094e+02, 2.973481750488281e+02, 2.973294982910156e+02, 2.974190673828125e+02, 2.974136962890625e+02, 2.973048706054688e+02, 2.970635681152344e+02, 2.971886596679688e+02, 2.964529724121094e+02, 2.962098693847656e+02, 2.965521850585938e+02, 2.959494934082031e+02, 2.960566101074219e+02, 2.95908935546875e+02, 2.955783996582031e+02, 2.95142578125e+02, 2.940065612792969e+02, 2.933768310546875e+02, 2.931611328125e+02, 2.933978881835938e+02, 2.933771362304688e+02, 2.934723510742188e+02, 2.932039489746094e+02, 2.931869201660156e+02, 2.931719665527344e+02, 2.94416015625e+02, 2.950885620117188e+02, 2.931631469726562e+02, 2.943238830566406e+02, 2.950051879882812e+02] +zone.T=[2.931499938964844e+02, 2.936578369140625e+02, 2.951420593261719e+02, 2.933593444824219e+02, 2.943050842285156e+02, 2.932278442382812e+02, 2.931508178710938e+02, 2.94230712890625e+02, 2.951410522460938e+02, 2.947713317871094e+02, 2.931816101074219e+02, 2.951129760742188e+02, 2.93157470703125e+02, 2.942505493164062e+02, 2.950146484375e+02, 2.931921691894531e+02, 2.944356689453125e+02, 2.950559692382812e+02, 2.932372741699219e+02, 2.935555419921875e+02, 2.933862609863281e+02, 2.934927978515625e+02, 2.934856567382812e+02, 2.932257385253906e+02, 2.93742919921875e+02, 2.931764831542969e+02, 2.932100830078125e+02, 2.932481994628906e+02, 2.942229919433594e+02, 2.967001342773438e+02, 2.973991394042969e+02, 2.972774353027344e+02, 2.973036499023438e+02, 2.972030944824219e+02, 2.974526977539062e+02, 2.974382629394531e+02, 2.97402587890625e+02, 2.974246215820312e+02, 2.974088134765625e+02, 2.974887084960938e+02, 2.975280456542969e+02, 2.975379638671875e+02, 2.975239562988281e+02, 2.975830383300781e+02, 2.975099182128906e+02, 2.974816284179688e+02, 2.975858764648438e+02, 2.975862731933594e+02, 2.975217590332031e+02, 2.975988464355469e+02, 2.974871826171875e+02, 2.975801086425781e+02, 2.97568115234375e+02, 2.975058898925781e+02, 2.975872802734375e+02, 2.97644775390625e+02, 2.975876770019531e+02, 2.975962524414062e+02, 2.976087036132812e+02, 2.975819396972656e+02, 2.975243835449219e+02, 2.97537109375e+02, 2.974706420898438e+02, 2.975225830078125e+02, 2.975242614746094e+02, 2.97474609375e+02, 2.974830017089844e+02, 2.974789428710938e+02, 2.974937438964844e+02, 2.9748876953125e+02, 2.974450988769531e+02, 2.974119567871094e+02, 2.973482360839844e+02, 2.973294982910156e+02, 2.974190673828125e+02, 2.974136962890625e+02, 2.973048400878906e+02, 2.970633850097656e+02, 2.971885681152344e+02, 2.96452880859375e+02, 2.96208740234375e+02, 2.965526123046875e+02, 2.959505004882812e+02, 2.960564880371094e+02, 2.959083862304688e+02, 2.955782775878906e+02, 2.951429138183594e+02, 2.940066223144531e+02, 2.933763122558594e+02, 2.931607055664062e+02, 2.933904724121094e+02, 2.933707885742188e+02, 2.934678344726562e+02, 2.9320361328125e+02, 2.931845397949219e+02, 2.931708984375e+02, 2.944317932128906e+02, 2.950898132324219e+02, 2.931630859375e+02, 2.943138427734375e+02, 2.950073852539062e+02] heaWat.u=[1e+00, 0e+00, 1e+00, 1e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00, 0e+00, 0e+00, 1e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00, 1e+00, 0e+00, 0e+00, 1e+00] -vavDam.y=[1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 2.504731118679047e-01, 1.279934197664261e-01, 1.538316756486893e-01, 1.000000014901161e-01, 3.026994168758392e-01, 2.882679104804993e-01, 2.525744438171387e-01, 2.74629533290863e-01, 2.588005661964417e-01, 3.387115597724915e-01, 3.780661523342133e-01, 3.879471719264984e-01, 3.739103376865387e-01, 4.330258369445801e-01, 3.598995506763458e-01, 3.316216468811035e-01, 4.358472228050232e-01, 4.362572431564331e-01, 3.717502057552338e-01, 4.488327503204346e-01, 3.371629416942596e-01, 4.301001131534576e-01, 4.18131023645401e-01, 3.559028804302216e-01, 4.372664988040924e-01, 4.947578907012939e-01, 4.37696248292923e-01, 4.462555646896362e-01, 4.587088227272034e-01, 4.319357872009277e-01, 3.743860423564911e-01, 3.871329128742218e-01, 3.206120729446411e-01, 3.725920915603638e-01, 3.742465376853943e-01, 3.246133923530579e-01, 3.329953849315643e-01, 3.289305865764618e-01, 3.437498509883881e-01, 3.387558460235596e-01, 2.950809597969055e-01, 2.619665861129761e-01, 1.981901973485947e-01, 1.794890165328979e-01, 2.690573930740356e-01, 2.637080550193787e-01, 1.548582911491394e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01] -fan.sta_a.T=[2.883200073242188e+02, 2.90427978515625e+02, 2.885890502929688e+02, 2.905945739746094e+02, 2.914585266113281e+02, 2.904709167480469e+02, 2.893808898925781e+02, 2.894774475097656e+02, 2.892625122070312e+02, 2.91138916015625e+02, 2.883468017578125e+02, 2.915386047363281e+02, 2.900222778320312e+02, 2.909187927246094e+02, 2.90358154296875e+02, 2.903508605957031e+02, 2.909787902832031e+02, 2.917873840332031e+02, 2.910642700195312e+02, 2.915362243652344e+02, 2.902186889648438e+02, 2.915533142089844e+02, 2.905046081542969e+02, 2.902584838867188e+02, 2.924859924316406e+02, 2.910368957519531e+02, 2.901730346679688e+02, 2.913699951171875e+02, 2.920601196289062e+02, 2.970225219726562e+02, 2.949328918457031e+02, 2.950687866210938e+02, 2.949390563964844e+02, 2.9591748046875e+02, 2.961604919433594e+02, 2.954600219726562e+02, 2.959786987304688e+02, 2.946870422363281e+02, 2.964678649902344e+02, 2.969415283203125e+02, 2.952813415527344e+02, 2.982254943847656e+02, 2.966038208007812e+02, 2.979476623535156e+02, 2.962223205566406e+02, 2.965768737792969e+02, 2.962604675292969e+02, 2.985108337402344e+02, 2.948569030761719e+02, 2.9739111328125e+02, 2.97256591796875e+02, 2.973014526367188e+02, 2.968691101074219e+02, 2.978995056152344e+02, 2.976356811523438e+02, 2.979755554199219e+02, 2.981031188964844e+02, 2.967643127441406e+02, 2.979931640625e+02, 2.976788024902344e+02, 2.957882385253906e+02, 2.974443054199219e+02, 2.967667846679688e+02, 2.963309020996094e+02, 2.979713439941406e+02, 2.966609191894531e+02, 2.968990478515625e+02, 2.969129638671875e+02, 2.965253295898438e+02, 2.967495727539062e+02, 2.962158203125e+02, 2.966826782226562e+02, 2.955990295410156e+02, 2.966191711425781e+02, 2.959070129394531e+02, 2.960241394042969e+02, 2.960367431640625e+02, 2.944245300292969e+02, 2.953696594238281e+02, 2.939766845703125e+02, 2.936658935546875e+02, 2.944255065917969e+02, 2.932402954101562e+02, 2.937660217285156e+02, 2.955518493652344e+02, 2.942091369628906e+02, 2.920986938476562e+02, 2.925059814453125e+02, 2.906808776855469e+02, 2.897331848144531e+02, 2.892807006835938e+02, 2.886454467773438e+02, 2.902491760253906e+02, 2.908221740722656e+02, 2.890638122558594e+02, 2.900786743164062e+02, 2.902158203125e+02, 2.909700012207031e+02, 2.896880187988281e+02, 2.904220581054688e+02, 2.908794250488281e+02] -fan.sta_b.T=[2.886552734375e+02, 2.907632446289062e+02, 2.8892431640625e+02, 2.909298400878906e+02, 2.917937927246094e+02, 2.908061828613281e+02, 2.897161560058594e+02, 2.898127136230469e+02, 2.895977478027344e+02, 2.914741821289062e+02, 2.886820678710938e+02, 2.918738708496094e+02, 2.903575439453125e+02, 2.912540588378906e+02, 2.906934204101562e+02, 2.906861267089844e+02, 2.913140563964844e+02, 2.921226501464844e+02, 2.913995361328125e+02, 2.918714904785156e+02, 2.90553955078125e+02, 2.918885803222656e+02, 2.908398742675781e+02, 2.905937194824219e+02, 2.928212585449219e+02, 2.913721313476562e+02, 2.9050830078125e+02, 2.917052612304688e+02, 2.923953857421875e+02, 2.973577880859375e+02, 2.952681579589844e+02, 2.95404052734375e+02, 2.952742919921875e+02, 2.962527465820312e+02, 2.964957580566406e+02, 2.957952880859375e+02, 2.9631396484375e+02, 2.950223083496094e+02, 2.968031005859375e+02, 2.972767944335938e+02, 2.956166076660156e+02, 2.985607604980469e+02, 2.969390869140625e+02, 2.982829284667969e+02, 2.965575866699219e+02, 2.969121398925781e+02, 2.965957336425781e+02, 2.988460693359375e+02, 2.951921691894531e+02, 2.977263793945312e+02, 2.975918579101562e+02, 2.9763671875e+02, 2.972043762207031e+02, 2.982347717285156e+02, 2.97970947265625e+02, 2.98310791015625e+02, 2.984383544921875e+02, 2.970995788574219e+02, 2.983284301757812e+02, 2.980140686035156e+02, 2.961235046386719e+02, 2.977795715332031e+02, 2.9710205078125e+02, 2.966661682128906e+02, 2.983066101074219e+02, 2.969961853027344e+02, 2.972343139648438e+02, 2.972482299804688e+02, 2.96860595703125e+02, 2.970848388671875e+02, 2.965510864257812e+02, 2.970179443359375e+02, 2.959342956542969e+02, 2.969544372558594e+02, 2.962422790527344e+02, 2.963594055175781e+02, 2.963720092773438e+02, 2.947597961425781e+02, 2.957049255371094e+02, 2.943119506835938e+02, 2.940011291503906e+02, 2.947607727050781e+02, 2.935755310058594e+02, 2.941012878417969e+02, 2.958871154785156e+02, 2.945444030761719e+02, 2.924339599609375e+02, 2.928412475585938e+02, 2.9101611328125e+02, 2.900684509277344e+02, 2.89615966796875e+02, 2.88980712890625e+02, 2.905844116210938e+02, 2.911574401855469e+02, 2.893990783691406e+02, 2.904139404296875e+02, 2.905510864257812e+02, 2.913052673339844e+02, 2.900232849121094e+02, 2.9075732421875e+02, 2.912146606445312e+02] +vavDam.y=[1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 2.49133363366127e-01, 1.274234801530838e-01, 1.536576747894287e-01, 1.000000014901161e-01, 3.026860058307648e-01, 2.882484495639801e-01, 2.525792121887207e-01, 2.746173143386841e-01, 2.58812814950943e-01, 3.387176990509033e-01, 3.780508935451508e-01, 3.879553079605103e-01, 3.739668428897858e-01, 4.330349564552307e-01, 3.599090874195099e-01, 3.316365778446198e-01, 4.358618259429932e-01, 4.362718164920807e-01, 3.717495203018188e-01, 4.488597512245178e-01, 3.371910154819489e-01, 4.301055669784546e-01, 4.181217849254608e-01, 3.559044599533081e-01, 4.372726678848267e-01, 4.947755336761475e-01, 4.37691330909729e-01, 4.462632834911346e-01, 4.5871701836586e-01, 4.319450557231903e-01, 3.743723332881927e-01, 3.871187269687653e-01, 3.206291794776917e-01, 3.725926280021667e-01, 3.742466866970062e-01, 3.246009349822998e-01, 3.330047726631165e-01, 3.289320766925812e-01, 3.437554836273193e-01, 3.387627005577087e-01, 2.950838208198547e-01, 2.619584798812866e-01, 1.98225200176239e-01, 1.795092672109604e-01, 2.690543830394745e-01, 2.637024819850922e-01, 1.5484619140625e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01] +fan.sta_a.T=[2.883200073242188e+02, 2.904277954101562e+02, 2.885891418457031e+02, 2.905987243652344e+02, 2.914528198242188e+02, 2.904711608886719e+02, 2.893808898925781e+02, 2.894786071777344e+02, 2.892623901367188e+02, 2.9114306640625e+02, 2.883468627929688e+02, 2.915386962890625e+02, 2.900222778320312e+02, 2.909187927246094e+02, 2.90358154296875e+02, 2.90350830078125e+02, 2.909757995605469e+02, 2.917880554199219e+02, 2.910641784667969e+02, 2.915918579101562e+02, 2.902608032226562e+02, 2.915368347167969e+02, 2.904901733398438e+02, 2.903080139160156e+02, 2.925270690917969e+02, 2.906675109863281e+02, 2.902203063964844e+02, 2.914190673828125e+02, 2.920393676757812e+02, 2.970045471191406e+02, 2.949317626953125e+02, 2.950682983398438e+02, 2.949389038085938e+02, 2.959171447753906e+02, 2.961604919433594e+02, 2.954600219726562e+02, 2.959786987304688e+02, 2.9468701171875e+02, 2.964678649902344e+02, 2.969415588378906e+02, 2.952813415527344e+02, 2.982254943847656e+02, 2.966038818359375e+02, 2.979476928710938e+02, 2.962223205566406e+02, 2.96576904296875e+02, 2.962604675292969e+02, 2.985108337402344e+02, 2.948569030761719e+02, 2.973911437988281e+02, 2.972566223144531e+02, 2.973014831542969e+02, 2.968691101074219e+02, 2.978995056152344e+02, 2.976356811523438e+02, 2.979755554199219e+02, 2.981031188964844e+02, 2.967643127441406e+02, 2.979931640625e+02, 2.976788330078125e+02, 2.957882080078125e+02, 2.974442749023438e+02, 2.967668151855469e+02, 2.963309020996094e+02, 2.979713439941406e+02, 2.966609191894531e+02, 2.968990478515625e+02, 2.969129638671875e+02, 2.965253295898438e+02, 2.967495727539062e+02, 2.962158203125e+02, 2.966826782226562e+02, 2.955990600585938e+02, 2.966191711425781e+02, 2.959070129394531e+02, 2.960241394042969e+02, 2.960367431640625e+02, 2.944243774414062e+02, 2.953695678710938e+02, 2.939765930175781e+02, 2.936649475097656e+02, 2.944258728027344e+02, 2.932411499023438e+02, 2.937659301757812e+02, 2.955513610839844e+02, 2.942090454101562e+02, 2.920989685058594e+02, 2.925060119628906e+02, 2.90680419921875e+02, 2.897328186035156e+02, 2.892743835449219e+02, 2.886400451660156e+02, 2.902453002929688e+02, 2.908218994140625e+02, 2.890617980957031e+02, 2.900777587890625e+02, 2.90229248046875e+02, 2.909710693359375e+02, 2.896879577636719e+02, 2.904135131835938e+02, 2.908812866210938e+02] +fan.sta_b.T=[2.886552734375e+02, 2.907630615234375e+02, 2.889244079589844e+02, 2.909339904785156e+02, 2.917880859375e+02, 2.908064270019531e+02, 2.897161560058594e+02, 2.898138732910156e+02, 2.8959765625e+02, 2.914783325195312e+02, 2.8868212890625e+02, 2.918739624023438e+02, 2.903575439453125e+02, 2.912540588378906e+02, 2.906934204101562e+02, 2.906860961914062e+02, 2.913110656738281e+02, 2.921233215332031e+02, 2.913994445800781e+02, 2.919271240234375e+02, 2.905960693359375e+02, 2.918720703125e+02, 2.90825439453125e+02, 2.906432800292969e+02, 2.928623046875e+02, 2.910027770996094e+02, 2.905555725097656e+02, 2.917543334960938e+02, 2.923746337890625e+02, 2.973398132324219e+02, 2.952670288085938e+02, 2.95403564453125e+02, 2.95274169921875e+02, 2.962524108886719e+02, 2.964957275390625e+02, 2.957952575683594e+02, 2.9631396484375e+02, 2.950222778320312e+02, 2.968031311035156e+02, 2.972767944335938e+02, 2.956166076660156e+02, 2.985607604980469e+02, 2.969391479492188e+02, 2.982829284667969e+02, 2.965575866699219e+02, 2.969121398925781e+02, 2.965957336425781e+02, 2.988460998535156e+02, 2.951921691894531e+02, 2.977264099121094e+02, 2.975918884277344e+02, 2.9763671875e+02, 2.972043762207031e+02, 2.982347717285156e+02, 2.97970947265625e+02, 2.983108215332031e+02, 2.984383544921875e+02, 2.970995788574219e+02, 2.983284301757812e+02, 2.980140686035156e+02, 2.961234741210938e+02, 2.97779541015625e+02, 2.971020812988281e+02, 2.966661682128906e+02, 2.983066101074219e+02, 2.969961853027344e+02, 2.972343139648438e+02, 2.972482299804688e+02, 2.96860595703125e+02, 2.970848388671875e+02, 2.965510864257812e+02, 2.970179138183594e+02, 2.95934326171875e+02, 2.969544372558594e+02, 2.962422790527344e+02, 2.963594055175781e+02, 2.963720092773438e+02, 2.947596435546875e+02, 2.95704833984375e+02, 2.943118591308594e+02, 2.940001831054688e+02, 2.947611389160156e+02, 2.935763854980469e+02, 2.941011657714844e+02, 2.958866271972656e+02, 2.945443115234375e+02, 2.924342346191406e+02, 2.928412780761719e+02, 2.910156860351562e+02, 2.900680541992188e+02, 2.896096496582031e+02, 2.889753112792969e+02, 2.9058056640625e+02, 2.911571655273438e+02, 2.893970642089844e+02, 2.904130249023438e+02, 2.905645141601562e+02, 2.913063354492188e+02, 2.900232238769531e+02, 2.90748779296875e+02, 2.912165222167969e+02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FMI_Adaptors_Examples_ThermalZoneHVACNoExhaust.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FMI_Adaptors_Examples_ThermalZoneHVACNoExhaust.txt index 2fa7aa5b77..337d38d8e4 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FMI_Adaptors_Examples_ThermalZoneHVACNoExhaust.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FMI_Adaptors_Examples_ThermalZoneHVACNoExhaust.txt @@ -1,4 +1,4 @@ -last-generated=2020-08-17 +last-generated=2022-07-06 statistics-simulation= { "linear": "0", @@ -9,6 +9,6 @@ statistics-simulation= time=[0e+00, 1.728e+05] vol.T=[2.931499938964844e+02, 2.906447448730469e+02, 2.890402526855469e+02, 2.891534118652344e+02, 2.891515808105469e+02, 2.891515502929688e+02, 2.891518249511719e+02, 2.891520690917969e+02, 2.891522827148438e+02, 2.891524353027344e+02, 2.89152587890625e+02, 2.891526489257812e+02, 2.891527099609375e+02, 2.891766357421875e+02, 2.893485412597656e+02, 2.916920166015625e+02, 2.931203918457031e+02, 2.931500549316406e+02, 2.9315234375e+02, 2.931518859863281e+02, 2.931524658203125e+02, 2.9321533203125e+02, 2.933444519042969e+02, 2.935014038085938e+02, 2.936575317382812e+02, 2.937914733886719e+02, 2.93887451171875e+02, 2.939341735839844e+02, 2.939237670898438e+02, 2.93851318359375e+02, 2.937142639160156e+02, 2.935120849609375e+02, 2.9324609375e+02, 2.931510925292969e+02, 2.931472473144531e+02, 2.931474304199219e+02, 2.931473388671875e+02, 2.931473083496094e+02, 2.931472778320312e+02, 2.931473388671875e+02, 2.92457275390625e+02, 2.910179443359375e+02, 2.898218383789062e+02, 2.891372375488281e+02, 2.891507263183594e+02, 2.891483154296875e+02, 2.891486511230469e+02, 2.891489868164062e+02, 2.891492919921875e+02, 2.891496276855469e+02, 2.891499633789062e+02, 2.891503295898438e+02, 2.891506652832031e+02, 2.891509704589844e+02, 2.891512756347656e+02, 2.891515808105469e+02, 2.891518249511719e+02, 2.891520690917969e+02, 2.891522827148438e+02, 2.891524353027344e+02, 2.89152587890625e+02, 2.891526489257812e+02, 2.891527099609375e+02, 2.891766357421875e+02, 2.893485412597656e+02, 2.916920166015625e+02, 2.931203918457031e+02, 2.931500549316406e+02, 2.9315234375e+02, 2.931518859863281e+02, 2.931524658203125e+02, 2.932153625488281e+02, 2.933444519042969e+02, 2.935014038085938e+02, 2.936575317382812e+02, 2.937914733886719e+02, 2.93887451171875e+02, 2.939341735839844e+02, 2.939237670898438e+02, 2.93851318359375e+02, 2.937142639160156e+02, 2.935120849609375e+02, 2.9324609375e+02, 2.931510925292969e+02, 2.931472473144531e+02, 2.931474304199219e+02, 2.931473388671875e+02, 2.931473083496094e+02, 2.931472778320312e+02, 2.931473388671875e+02, 2.92457275390625e+02, 2.910179443359375e+02, 2.898218383789062e+02, 2.891372375488281e+02, 2.891507263183594e+02, 2.891483154296875e+02, 2.891486511230469e+02, 2.891489868164062e+02, 2.891492919921875e+02, 2.891496276855469e+02, 2.891499633789062e+02] TSet.y=[2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02] -conPI.y=[0e+00, 0e+00, 3.496665358543396e-01, 2.979194521903992e-01, 2.719815075397491e-01, 2.516436874866486e-01, 2.267784625291824e-01, 1.983282566070556e-01, 1.667489558458328e-01, 1.325477361679077e-01, 9.62374210357666e-02, 5.84404356777668e-02, 1.969005353748798e-02, 0e+00, 0e+00, 1e+00, 4.854131117463112e-02, 8.806402981281268e-02, 5.061835795640945e-02, 2.213096804916859e-02, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.386982440948486e-02, 1.161477714776994e-01, 1.524827033281325e-01, 1.902679204940796e-01, 2.290043532848358e-01, 2.680522203445435e-01, 3.067946434020996e-01, 0e+00, 0e+00, 0e+00, 2.680134475231171e-01, 2.247905880212784e-01, 2.51269668340683e-01, 2.724054157733917e-01, 2.890396416187286e-01, 3.011242747306824e-01, 3.084641396999359e-01, 3.109369575977325e-01, 3.0850550532341e-01, 3.012104332447052e-01, 2.891643941402435e-01, 2.725576758384705e-01, 2.516523301601408e-01, 2.267782390117643e-01, 1.983272880315783e-01, 1.66750967502594e-01, 1.325431913137436e-01, 9.624723345041275e-02, 5.842940881848335e-02, 1.969297043979168e-02, 0e+00, 0e+00, 1e+00, 4.855448752641678e-02, 8.80638062953949e-02, 5.061864480376218e-02, 2.213165722787403e-02, 8.088148206741863e-17, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.387071847915649e-02, 1.161477565765381e-01, 1.524827033281326e-01, 1.902679204940796e-01, 2.29004442691803e-01, 2.680529356002808e-01, 3.067952394485474e-01, 0e+00, 0e+00, 0e+00, 2.680122852325439e-01, 2.247913628816605e-01, 2.512696087360382e-01, 2.72404283285141e-01, 2.890373468399048e-01, 3.01121711730957e-01, 3.084661662578583e-01, 3.109345734119415e-01] -hea.Q_flow=[0e+00, 0e+00, 3.776398315429688e+02, 3.217529907226562e+02, 2.937400512695312e+02, 2.717751770019531e+02, 2.449207458496094e+02, 2.141945190429687e+02, 1.800888824462891e+02, 1.431515502929688e+02, 1.039364166259766e+02, 6.311566925048828e+01, 2.126525688171387e+01, 0e+00, 0e+00, 1.08e+03, 5.242461776733398e+01, 9.510915374755847e+01, 5.466782760620117e+01, 2.390144538879395e+01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.977941131591797e+01, 1.254395980834963e+02, 1.646813201904295e+02, 2.054893646240234e+02, 2.4732470703125e+02, 2.894963989257812e+02, 3.313382263183594e+02, 0e+00, 0e+00, 0e+00, 2.894544982910156e+02, 2.427738342285156e+02, 2.713712158203125e+02, 2.941978454589844e+02, 3.121628112792969e+02, 3.252142333984375e+02, 3.331412658691406e+02, 3.358119201660156e+02, 3.331859436035156e+02, 3.253072814941406e+02, 3.122975463867188e+02, 2.943622741699219e+02, 2.717845153808591e+02, 2.449204864501951e+02, 2.141934661865237e+02, 1.800910491943359e+02, 1.431466522216797e+02, 1.039470138549805e+02, 6.3103759765625e+01, 2.126840782165527e+01, 0e+00, 0e+00, 1.08e+03, 5.243884658813477e+01, 9.510890960693359e+01, 5.466813659667941e+01, 2.390219116210962e+01, 8.704148513061227e-14, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.978038024902344e+01, 1.254395751953125e+02, 1.646813201904297e+02, 2.054893493652344e+02, 2.473247985839844e+02, 2.894971618652344e+02, 3.313388366699219e+02, 0e+00, 0e+00, 0e+00, 2.894532775878906e+02, 2.427746734619141e+02, 2.713711547851562e+02, 2.941966247558594e+02, 3.121603393554688e+02, 3.252114562988281e+02, 3.331434631347656e+02, 3.35809326171875e+02] -hex.Q1_flow=[4.733437805175781e+02, 3.395086364746094e+02, 2.489354400634766e+02, 2.44680908203125e+02, 2.305247802734375e+02, 2.12827880859375e+02, 1.917926483154297e+02, 1.677317962646484e+02, 1.41025390625e+02, 1.120952682495117e+02, 8.139717102050781e+01, 4.941511917114258e+01, 1.665420150756836e+01, -1.511163330078125e+01, -3.883414077758793e+01, 5.243206405639648e+01, 9.685141754150391e+01, 6.947139739990229e+01, 4.28750114440918e+01, 1.877762603759766e+01, -2.241530656814575e+00, -1.662953948974609e+01, -2.390019798278809e+01, -2.585012054443359e+01, -2.382691192626953e+01, -1.885653305053711e+01, -1.173419570922852e+01, -3.089491367340088e+00, 6.56845283508305e+00, 1.681844711303711e+01, 2.730487823486328e+01, 3.772251892089844e+01, 4.780619430541992e+01, 6.952756500244141e+01, 9.826337432861341e+01, 1.289779357910155e+02, 1.609597015380859e+02, 1.937207641601562e+02, 2.267444763183594e+02, 2.595100402832031e+02, 2.552043762207031e+02, 2.102085266113281e+02, 1.762404479980469e+02, 1.669513702392578e+02, 1.917339019775391e+02, 2.126572113037109e+02, 2.303710632324219e+02, 2.444483489990234e+02, 2.546703338623047e+02, 2.608759460449219e+02, 2.629674682617188e+02, 2.609118041992188e+02, 2.547413330078125e+02, 2.44553466796875e+02, 2.305088500976562e+02, 2.128289642333983e+02, 1.917926635742186e+02, 1.677317199707033e+02, 1.410254974365234e+02, 1.120952072143555e+02, 8.139713287353516e+01, 4.941535949707031e+01, 1.66542797088623e+01, -1.511160850524902e+01, -3.883385848999023e+01, 5.243259048461914e+01, 9.685151672363281e+01, 6.947142028808594e+01, 4.287499237060526e+01, 1.877762222290058e+01, -2.241283416747882e+00, -1.66292839050293e+01, -2.390008354187012e+01, -2.585014724731445e+01, -2.382708740234375e+01, -1.88566722869873e+01, -1.173440933227539e+01, -3.08939790725708e+00, 6.568758964538574e+00, 1.681872367858887e+01, 2.730513000488281e+01, 3.772276306152344e+01, 4.780638122558594e+01, 6.952755737304688e+01, 9.826337432861328e+01, 1.289779357910156e+02, 1.609597015380859e+02, 1.937207336425781e+02, 2.267444458007812e+02, 2.59510009765625e+02, 2.552044067382812e+02, 2.102085418701172e+02, 1.762404479980469e+02, 1.669513549804688e+02, 1.9173388671875e+02, 2.126572265625e+02, 2.303711090087891e+02, 2.444482574462891e+02, 2.546704864501953e+02, 2.608759765625e+02, 2.629673767089844e+02] +conPI.y=[0e+00, 0e+00, 3.496665358543396e-01, 2.979194521903992e-01, 2.719815075397491e-01, 2.516436874866486e-01, 2.267784625291824e-01, 1.983282566070556e-01, 1.667489558458328e-01, 1.325477361679077e-01, 9.62374210357666e-02, 5.84404356777668e-02, 1.969005353748798e-02, 0e+00, 0e+00, 1e+00, 4.854131117463112e-02, 8.806402981281268e-02, 5.061835795640945e-02, 2.213096804916859e-02, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.386982440948486e-02, 1.161477714776994e-01, 1.524827033281325e-01, 1.902679204940796e-01, 2.290043532848358e-01, 2.680522203445435e-01, 3.067946434020996e-01, 0e+00, 0e+00, 0e+00, 2.680134475231171e-01, 2.247905880212784e-01, 2.51269668340683e-01, 2.724054157733917e-01, 2.890396416187286e-01, 3.011242747306824e-01, 3.084641396999359e-01, 3.109369575977325e-01, 3.0850550532341e-01, 3.012104332447052e-01, 2.891643941402435e-01, 2.725576758384705e-01, 2.516523301601408e-01, 2.267782390117643e-01, 1.983272880315783e-01, 1.66750967502594e-01, 1.325431913137436e-01, 9.624723345041275e-02, 5.842940881848335e-02, 1.969297043979168e-02, 0e+00, 0e+00, 1e+00, 4.855448752641678e-02, 8.80638062953949e-02, 5.061864480376218e-02, 2.213165722787403e-02, 8.088148206741863e-17, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.387071847915649e-02, 1.161477565765381e-01, 1.524827033281326e-01, 1.902679204940796e-01, 2.29004442691803e-01, 2.680529356002808e-01, 3.067952394485474e-01, 0e+00, 0e+00, 0e+00, 2.680123448371887e-01, 2.247909903526306e-01, 2.512696385383606e-01, 2.724053859710693e-01, 2.890385985374451e-01, 3.011226654052734e-01, 3.084635138511658e-01, 3.109365999698639e-01] +hea.Q_flow=[0e+00, 0e+00, 3.776398315429688e+02, 3.217529907226562e+02, 2.937400512695312e+02, 2.717751770019531e+02, 2.449207458496094e+02, 2.141945190429687e+02, 1.800888824462891e+02, 1.431515502929688e+02, 1.039364166259766e+02, 6.311566925048828e+01, 2.126525688171387e+01, 0e+00, 0e+00, 1.08e+03, 5.242461776733398e+01, 9.510915374755847e+01, 5.466782760620117e+01, 2.390144538879395e+01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.977941131591797e+01, 1.254395980834963e+02, 1.646813201904295e+02, 2.054893646240234e+02, 2.4732470703125e+02, 2.894963989257812e+02, 3.313382263183594e+02, 0e+00, 0e+00, 0e+00, 2.894544982910156e+02, 2.427738342285156e+02, 2.713712158203125e+02, 2.941978454589844e+02, 3.121628112792969e+02, 3.252142333984375e+02, 3.331412658691406e+02, 3.358119201660156e+02, 3.331859436035156e+02, 3.253072814941406e+02, 3.122975463867188e+02, 2.943622741699219e+02, 2.717845153808591e+02, 2.449204864501951e+02, 2.141934661865237e+02, 1.800910491943359e+02, 1.431466522216797e+02, 1.039470138549805e+02, 6.3103759765625e+01, 2.126840782165527e+01, 0e+00, 0e+00, 1.08e+03, 5.243884658813477e+01, 9.510890960693359e+01, 5.466813659667941e+01, 2.390219116210962e+01, 8.704148513061227e-14, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.978038024902344e+01, 1.254395751953125e+02, 1.646813201904297e+02, 2.054893493652344e+02, 2.473247985839844e+02, 2.894971618652344e+02, 3.313388366699219e+02, 0e+00, 0e+00, 0e+00, 2.894533386230469e+02, 2.427742767333984e+02, 2.713711853027344e+02, 2.941978149414062e+02, 3.121616821289062e+02, 3.252124938964844e+02, 3.331405944824219e+02, 3.358115234375e+02] +hex.Q1_flow=[4.733437805175781e+02, 3.395086364746094e+02, 2.489354400634766e+02, 2.44680908203125e+02, 2.305247802734375e+02, 2.12827880859375e+02, 1.917926483154297e+02, 1.677317962646484e+02, 1.41025390625e+02, 1.120952682495117e+02, 8.139717102050781e+01, 4.941511917114258e+01, 1.665420150756836e+01, -1.511163330078125e+01, -3.883414077758793e+01, 5.243206405639648e+01, 9.685141754150391e+01, 6.947139739990229e+01, 4.28750114440918e+01, 1.877762603759766e+01, -2.241530656814575e+00, -1.662953948974609e+01, -2.390019798278809e+01, -2.585012054443359e+01, -2.382691192626953e+01, -1.885653305053711e+01, -1.173419570922852e+01, -3.089491367340088e+00, 6.56845283508305e+00, 1.681844711303711e+01, 2.730487823486328e+01, 3.772251892089844e+01, 4.780619430541992e+01, 6.952756500244141e+01, 9.826337432861341e+01, 1.289779357910155e+02, 1.609597015380859e+02, 1.937207641601562e+02, 2.267444763183594e+02, 2.595100402832031e+02, 2.552043762207031e+02, 2.102085266113281e+02, 1.762404479980469e+02, 1.669513702392578e+02, 1.917339019775391e+02, 2.126572113037109e+02, 2.303710632324219e+02, 2.444483489990234e+02, 2.546703338623047e+02, 2.608759460449219e+02, 2.629674682617188e+02, 2.609118041992188e+02, 2.547413330078125e+02, 2.44553466796875e+02, 2.305088500976562e+02, 2.128289642333983e+02, 1.917926635742186e+02, 1.677317199707033e+02, 1.410254974365234e+02, 1.120952072143555e+02, 8.139713287353516e+01, 4.941535949707031e+01, 1.66542797088623e+01, -1.511160850524902e+01, -3.883385848999023e+01, 5.243259048461914e+01, 9.685151672363281e+01, 6.947142028808594e+01, 4.287499237060526e+01, 1.877762222290058e+01, -2.241283416747882e+00, -1.66292839050293e+01, -2.390008354187012e+01, -2.585014724731445e+01, -2.382708740234375e+01, -1.88566722869873e+01, -1.173440933227539e+01, -3.08939790725708e+00, 6.568758964538574e+00, 1.681872367858887e+01, 2.730513000488281e+01, 3.772276306152344e+01, 4.780638122558594e+01, 6.952755737304688e+01, 9.826337432861328e+01, 1.289779357910156e+02, 1.609597015380859e+02, 1.937207336425781e+02, 2.267444458007812e+02, 2.59510009765625e+02, 2.552044067382812e+02, 2.102085418701172e+02, 1.762404479980469e+02, 1.669513549804688e+02, 1.917339019775391e+02, 2.126572265625e+02, 2.303710632324219e+02, 2.444483032226562e+02, 2.546703948974609e+02, 2.608760070800781e+02, 2.629673767089844e+02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FMI_ExportContainers_Examples_FMUs_HVACZone.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FMI_ExportContainers_Examples_FMUs_HVACZone.txt index 52f8c6d848..4d6cdb607f 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FMI_ExportContainers_Examples_FMUs_HVACZone.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FMI_ExportContainers_Examples_FMUs_HVACZone.txt @@ -1,22 +1,22 @@ -last-generated=2020-04-17 +last-generated=2022-05-23 statistics-fmu-dependencies= { "Derivatives": { - "der(fan.filter.x[1])": [ - "fan.filter.x[1]" + "der(fan.filter.s[1])": [ + "fan.filter.s[1]" ], - "der(fan.filter.x[2])": [ - "fan.filter.x[1]", - "fan.filter.x[2]" + "der(fan.filter.s[2])": [ + "fan.filter.s[1]", + "fan.filter.s[2]" ], "der(senTemHXOut.T)": [ - "fan.filter.x[2]", + "fan.filter.s[2]", "senTemHXOut.T", "fluPor[1].backward.T", "fluPor[1].backward.X_w" ], "der(senTemSupAir.T)": [ - "fan.filter.x[2]", + "fan.filter.s[2]", "senTemSupAir.T", "fluPor[1].backward.T", "fluPor[1].backward.X_w" @@ -33,8 +33,8 @@ statistics-fmu-dependencies= "zero.k" ], "TOut": [], - "der(fan.filter.x[1])": [], - "der(fan.filter.x[2])": [ + "der(fan.filter.s[1])": [], + "der(fan.filter.s[2])": [ "fan.riseTime", "fan.m_flow_start" ], @@ -56,10 +56,10 @@ statistics-fmu-dependencies= "fluPor[1].backward.T", "fluPor[1].backward.X_w" ], - "fan.filter.x[1]": [ + "fan.filter.s[1]": [ "fan.riseTime" ], - "fan.filter.x[2]": [ + "fan.filter.s[2]": [ "fan.m_flow_start" ], "fluPor[1].forward.T": [ @@ -102,6 +102,7 @@ statistics-fmu-dependencies= "weaBus.TBlaSky": [], "weaBus.TDewPoi": [], "weaBus.TDryBul": [], + "weaBus.alt": [], "weaBus.ceiHei": [], "weaBus.cloTim": [], "weaBus.lat": [], @@ -126,20 +127,20 @@ statistics-fmu-dependencies= "QGaiSenCon_flow": [], "TOut": [], "fluPor[1].forward.T": [ - "fan.filter.x[2]", + "fan.filter.s[2]", "fluPor[1].backward.T", "fluPor[1].backward.X_w" ], "fluPor[1].forward.X_w": [ - "fan.filter.x[2]" + "fan.filter.s[2]" ], "fluPor[1].m_flow": [ - "fan.filter.x[2]" + "fan.filter.s[2]" ], "fluPor[2].forward.T": [], "fluPor[2].forward.X_w": [], "fluPor[2].m_flow": [ - "fan.filter.x[2]" + "fan.filter.s[2]" ], "weaBus.HDifHor": [], "weaBus.HDirNor": [], @@ -148,6 +149,7 @@ statistics-fmu-dependencies= "weaBus.TBlaSky": [], "weaBus.TDewPoi": [], "weaBus.TDryBul": [], + "weaBus.alt": [], "weaBus.ceiHei": [], "weaBus.cloTim": [], "weaBus.lat": [], diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FMI_ExportContainers_Examples_FMUs_HVACZones.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FMI_ExportContainers_Examples_FMUs_HVACZones.txt index ca2dd66ef3..0131aef988 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FMI_ExportContainers_Examples_FMUs_HVACZones.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FMI_ExportContainers_Examples_FMUs_HVACZones.txt @@ -1,38 +1,38 @@ -last-generated=2020-04-17 +last-generated=2022-05-23 statistics-fmu-dependencies= { "Derivatives": { - "der(fan.filter.x[1])": [ - "fan.filter.x[1]" + "der(fan.filter.s[1])": [ + "fan.filter.s[1]" ], - "der(fan.filter.x[2])": [ - "fan.filter.x[1]", - "fan.filter.x[2]" + "der(fan.filter.s[2])": [ + "fan.filter.s[1]", + "fan.filter.s[2]" ], - "der(fan2.filter.x[1])": [ - "fan2.filter.x[1]" + "der(fan2.filter.s[1])": [ + "fan2.filter.s[1]" ], - "der(fan2.filter.x[2])": [ - "fan2.filter.x[1]", - "fan2.filter.x[2]" + "der(fan2.filter.s[2])": [ + "fan2.filter.s[1]", + "fan2.filter.s[2]" ], "der(senTemHXOut.T)": [ "fluPor[1,1].backward.T", "fluPor[1,1].backward.X_w", "fluPor[2,1].backward.T", "fluPor[2,1].backward.X_w", - "fan.filter.x[2]", + "fan.filter.s[2]", "senTemHXOut.T", - "fan2.filter.x[2]" + "fan2.filter.s[2]" ], "der(senTemSupAir.T)": [ "fluPor[1,1].backward.T", "fluPor[1,1].backward.X_w", "fluPor[2,1].backward.T", "fluPor[2,1].backward.X_w", - "fan.filter.x[2]", + "fan.filter.s[2]", "senTemSupAir.T", - "fan2.filter.x[2]" + "fan2.filter.s[2]" ] }, "InitialUnknowns": { @@ -55,13 +55,13 @@ statistics-fmu-dependencies= "zer[2].k" ], "TOut": [], - "der(fan.filter.x[1])": [], - "der(fan.filter.x[2])": [ + "der(fan.filter.s[1])": [], + "der(fan.filter.s[2])": [ "fan.riseTime", "fan.m_flow_start" ], - "der(fan2.filter.x[1])": [], - "der(fan2.filter.x[2])": [ + "der(fan2.filter.s[1])": [], + "der(fan2.filter.s[2])": [ "fan2.riseTime", "fan2.m_flow_start" ], @@ -89,16 +89,16 @@ statistics-fmu-dependencies= "weaDat.pAtm", "fan2.m_flow_start" ], - "fan.filter.x[1]": [ + "fan.filter.s[1]": [ "fan.riseTime" ], - "fan.filter.x[2]": [ + "fan.filter.s[2]": [ "fan.m_flow_start" ], - "fan2.filter.x[1]": [ + "fan2.filter.s[1]": [ "fan2.riseTime" ], - "fan2.filter.x[2]": [ + "fan2.filter.s[2]": [ "fan2.m_flow_start" ], "fluPor[1,1].forward.T": [ @@ -226,6 +226,7 @@ statistics-fmu-dependencies= "weaBus.TBlaSky": [], "weaBus.TDewPoi": [], "weaBus.TDryBul": [], + "weaBus.alt": [], "weaBus.ceiHei": [], "weaBus.cloTim": [], "weaBus.lat": [], @@ -257,90 +258,90 @@ statistics-fmu-dependencies= "fluPor[1,1].backward.X_w", "fluPor[2,1].backward.T", "fluPor[2,1].backward.X_w", - "fan.filter.x[2]", - "fan2.filter.x[2]" + "fan.filter.s[2]", + "fan2.filter.s[2]" ], "fluPor[1,1].forward.X_w": [ "fluPor[2,1].backward.X_w", - "fan.filter.x[2]" + "fan.filter.s[2]" ], "fluPor[1,1].m_flow": [ - "fan.filter.x[2]" + "fan.filter.s[2]" ], "fluPor[1,2].forward.T": [ "fluPor[2,1].backward.T", "fluPor[2,1].backward.X_w", - "fan.filter.x[2]", - "fan2.filter.x[2]" + "fan.filter.s[2]", + "fan2.filter.s[2]" ], "fluPor[1,2].forward.X_w": [ "fluPor[2,1].backward.X_w", - "fan.filter.x[2]", - "fan2.filter.x[2]" + "fan.filter.s[2]", + "fan2.filter.s[2]" ], "fluPor[1,2].m_flow": [ - "fan.filter.x[2]", - "fan2.filter.x[2]" + "fan.filter.s[2]", + "fan2.filter.s[2]" ], "fluPor[1,3].forward.T": [ "fluPor[2,1].backward.T", "fluPor[2,1].backward.X_w", - "fan.filter.x[2]", - "fan2.filter.x[2]" + "fan.filter.s[2]", + "fan2.filter.s[2]" ], "fluPor[1,3].forward.X_w": [ "fluPor[2,1].backward.X_w", - "fan.filter.x[2]", - "fan2.filter.x[2]" + "fan.filter.s[2]", + "fan2.filter.s[2]" ], "fluPor[1,3].m_flow": [ - "fan.filter.x[2]", - "fan2.filter.x[2]" + "fan.filter.s[2]", + "fan2.filter.s[2]" ], "fluPor[2,1].forward.T": [ "fluPor[1,1].backward.T", "fluPor[1,1].backward.X_w", "fluPor[2,1].backward.T", "fluPor[2,1].backward.X_w", - "fan.filter.x[2]", - "fan2.filter.x[2]" + "fan.filter.s[2]", + "fan2.filter.s[2]" ], "fluPor[2,1].forward.X_w": [ "fluPor[1,1].backward.X_w", - "fan.filter.x[2]" + "fan.filter.s[2]" ], "fluPor[2,1].m_flow": [ - "fan.filter.x[2]" + "fan.filter.s[2]" ], "fluPor[2,2].forward.T": [ "fluPor[1,1].backward.T", "fluPor[1,1].backward.X_w", - "fan.filter.x[2]", - "fan2.filter.x[2]" + "fan.filter.s[2]", + "fan2.filter.s[2]" ], "fluPor[2,2].forward.X_w": [ "fluPor[1,1].backward.X_w", - "fan.filter.x[2]", - "fan2.filter.x[2]" + "fan.filter.s[2]", + "fan2.filter.s[2]" ], "fluPor[2,2].m_flow": [ - "fan.filter.x[2]", - "fan2.filter.x[2]" + "fan.filter.s[2]", + "fan2.filter.s[2]" ], "fluPor[2,3].forward.T": [ "fluPor[1,1].backward.T", "fluPor[1,1].backward.X_w", - "fan.filter.x[2]", - "fan2.filter.x[2]" + "fan.filter.s[2]", + "fan2.filter.s[2]" ], "fluPor[2,3].forward.X_w": [ "fluPor[1,1].backward.X_w", - "fan.filter.x[2]", - "fan2.filter.x[2]" + "fan.filter.s[2]", + "fan2.filter.s[2]" ], "fluPor[2,3].m_flow": [ - "fan.filter.x[2]", - "fan2.filter.x[2]" + "fan.filter.s[2]", + "fan2.filter.s[2]" ], "weaBus.HDifHor": [], "weaBus.HDirNor": [], @@ -349,6 +350,7 @@ statistics-fmu-dependencies= "weaBus.TBlaSky": [], "weaBus.TDewPoi": [], "weaBus.TDryBul": [], + "weaBus.alt": [], "weaBus.ceiHei": [], "weaBus.cloTim": [], "weaBus.lat": [], diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FMI_ExportContainers_Examples_FMUs_ThermalZone.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FMI_ExportContainers_Examples_FMUs_ThermalZone.txt index dd917d8e28..f66469d68b 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FMI_ExportContainers_Examples_FMUs_ThermalZone.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FMI_ExportContainers_Examples_FMUs_ThermalZone.txt @@ -1,4 +1,4 @@ -last-generated=2020-04-17 +last-generated=2022-05-23 statistics-fmu-dependencies= { "Derivatives": { @@ -98,6 +98,7 @@ statistics-fmu-dependencies= "weaBus.TBlaSky": [], "weaBus.TDewPoi": [], "weaBus.TDryBul": [], + "weaBus.alt": [], "weaBus.ceiHei": [], "weaBus.cloTim": [], "weaBus.lat": [], @@ -148,6 +149,7 @@ statistics-fmu-dependencies= "weaBus.TBlaSky": [], "weaBus.TDewPoi": [], "weaBus.TDryBul": [], + "weaBus.alt": [], "weaBus.ceiHei": [], "weaBus.cloTim": [], "weaBus.lat": [], diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FMI_ExportContainers_Examples_FMUs_ThermalZones.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FMI_ExportContainers_Examples_FMUs_ThermalZones.txt index 83933addf1..9b66a530cd 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FMI_ExportContainers_Examples_FMUs_ThermalZones.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FMI_ExportContainers_Examples_FMUs_ThermalZones.txt @@ -1,4 +1,4 @@ -last-generated=2020-04-17 +last-generated=2022-05-23 statistics-fmu-dependencies= { "Derivatives": { @@ -222,6 +222,7 @@ statistics-fmu-dependencies= "weaBus.TBlaSky": [], "weaBus.TDewPoi": [], "weaBus.TDryBul": [], + "weaBus.alt": [], "weaBus.ceiHei": [], "weaBus.cloTim": [], "weaBus.lat": [], @@ -313,6 +314,7 @@ statistics-fmu-dependencies= "weaBus.TBlaSky": [], "weaBus.TDewPoi": [], "weaBus.TDryBul": [], + "weaBus.alt": [], "weaBus.ceiHei": [], "weaBus.cloTim": [], "weaBus.lat": [], diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FMI_Validation_HeaterFan.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FMI_Validation_HeaterFan.txt index c89800ff34..c79a4b400c 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FMI_Validation_HeaterFan.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FMI_Validation_HeaterFan.txt @@ -1,7 +1,7 @@ -last-generated=2021-05-19 +last-generated=2022-05-23 statistics-initialization= { - "linear": "0, 0, 0, 0" + "linear": "0, 0" } statistics-simulation= { diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FMI_Validation_HeaterFanPressureDriven.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FMI_Validation_HeaterFanPressureDriven.txt index 249989314c..dcf372f185 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FMI_Validation_HeaterFanPressureDriven.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FMI_Validation_HeaterFanPressureDriven.txt @@ -1,7 +1,7 @@ -last-generated=2021-05-19 +last-generated=2022-05-23 statistics-initialization= { - "nonlinear": "0, 0", + "nonlinear": "0", "numerical Jacobians": "0" } statistics-simulation= diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FixedResistances_Examples_PlugFlowPipe.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FixedResistances_Examples_PlugFlowPipe.txt index 3f4a99e3c4..7753cab8c7 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FixedResistances_Examples_PlugFlowPipe.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FixedResistances_Examples_PlugFlowPipe.txt @@ -1,11 +1,13 @@ -last-generated=2020-03-07 +last-generated=2022-05-23 statistics-simulation= { "linear": " ", "nonlinear": " ", - "number of continuous time states": "5", + "number of continuous time states": "6", "numerical Jacobians": "0" } time=[0e+00, 1e+03] senTemIn.T=[3.231499938964844e+02, 3.231499938964844e+02, 3.231499938964844e+02, 3.231499938964844e+02, 3.231499938964844e+02, 3.231499938964844e+02, 3.231499938964844e+02, 3.231499938964844e+02, 3.231499938964844e+02, 3.231499938964844e+02, 3.231499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02] -senTemOut.T=[3.231499938964844e+02, 3.230866394042969e+02, 3.230395202636719e+02, 3.230065002441406e+02, 3.229838256835938e+02, 3.2296875e+02, 3.229592590332031e+02, 3.229539184570312e+02, 3.2295166015625e+02, 3.229516906738281e+02, 3.229533996582031e+02, 3.229563903808594e+02, 3.229602966308594e+02, 3.229647827148438e+02, 3.229698181152344e+02, 3.229751892089844e+02, 3.229808654785156e+02, 3.229867858886719e+02, 3.229928283691406e+02, 3.229990234375e+02, 3.230052795410156e+02, 3.230115661621094e+02, 3.230179138183594e+02, 3.230242919921875e+02, 3.230307006835938e+02, 3.230370788574219e+02, 3.230433044433594e+02, 3.230489807128906e+02, 3.230534362792969e+02, 3.23056640625e+02, 3.230589904785156e+02, 3.230607299804688e+02, 3.230619812011719e+02, 3.230628967285156e+02, 3.230635375976562e+02, 3.230640258789062e+02, 3.232365112304688e+02, 3.282808837890625e+02, 3.32128662109375e+02, 3.349722595214844e+02, 3.370736083984375e+02, 3.3862646484375e+02, 3.397740478515625e+02, 3.406220397949219e+02, 3.412487182617188e+02, 3.417118530273438e+02, 3.420541076660156e+02, 3.423070373535156e+02, 3.424939575195312e+02, 3.42632080078125e+02, 3.427341613769531e+02, 3.428096008300781e+02, 3.428653564453125e+02, 3.429065551757812e+02, 3.4293701171875e+02, 3.429595031738281e+02, 3.429761047363281e+02, 3.429884033203125e+02, 3.429974975585938e+02, 3.430042419433594e+02, 3.430092163085938e+02, 3.430129089355469e+02, 3.430155944824219e+02, 3.430176086425781e+02, 3.430190734863281e+02, 3.430201416015625e+02, 3.430209655761719e+02, 3.430215454101562e+02, 3.430219421386719e+02, 3.430222778320312e+02, 3.430225219726562e+02, 3.43022705078125e+02, 3.430228576660156e+02, 3.4302294921875e+02, 3.430230407714844e+02, 3.430230712890625e+02, 3.430231323242188e+02, 3.430231323242188e+02, 3.430231628417969e+02, 3.430231628417969e+02, 3.430231628417969e+02, 3.43023193359375e+02, 3.43023193359375e+02, 3.43023193359375e+02, 3.43023193359375e+02, 3.43023193359375e+02, 3.43023193359375e+02, 3.43023193359375e+02, 3.43023193359375e+02, 3.43023193359375e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02] +senTemInNoMix.T=[3.231499938964844e+02, 3.231499938964844e+02, 3.231499938964844e+02, 3.231499938964844e+02, 3.231499938964844e+02, 3.231499938964844e+02, 3.231499938964844e+02, 3.231499938964844e+02, 3.231499938964844e+02, 3.231499938964844e+02, 3.231499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02] +senTemOutNoMix.T=[3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.365987548828125e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02] +senTemOut.T=[3.231499938964844e+02, 3.231114501953125e+02, 3.230905151367188e+02, 3.230792236328125e+02, 3.230731201171875e+02, 3.230697631835938e+02, 3.2306787109375e+02, 3.230668029785156e+02, 3.230662231445312e+02, 3.230658874511719e+02, 3.230657043457031e+02, 3.230656127929688e+02, 3.230655517578125e+02, 3.230655212402344e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.230654907226562e+02, 3.252765808105469e+02, 3.295852355957031e+02, 3.336383666992188e+02, 3.367803955078125e+02, 3.390037231445312e+02, 3.404948120117188e+02, 3.414606018066406e+02, 3.420702514648438e+02, 3.424481506347656e+02, 3.426795654296875e+02, 3.428195495605469e+02, 3.429032287597656e+02, 3.429528503417969e+02, 3.429821472167969e+02, 3.429993591308594e+02, 3.430093688964844e+02, 3.430151672363281e+02, 3.430184631347656e+02, 3.430203247070312e+02, 3.430214233398438e+02, 3.430220642089844e+02, 3.430224914550781e+02, 3.430227661132812e+02, 3.430229797363281e+02, 3.430231018066406e+02, 3.430231628417969e+02, 3.43023193359375e+02, 3.430231628417969e+02, 3.430231323242188e+02, 3.430230712890625e+02, 3.430231018066406e+02, 3.430230712890625e+02, 3.430231018066406e+02, 3.430231323242188e+02, 3.430231628417969e+02, 3.43023193359375e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.43023193359375e+02, 3.43023193359375e+02, 3.43023193359375e+02, 3.43023193359375e+02, 3.430231628417969e+02, 3.43023193359375e+02, 3.43023193359375e+02, 3.430231628417969e+02, 3.430231628417969e+02, 3.43023193359375e+02, 3.43023193359375e+02, 3.43023193359375e+02, 3.43023193359375e+02, 3.43023193359375e+02, 3.43023193359375e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02, 3.430232238769531e+02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FixedResistances_Examples_PlugFlowPipeDiscretized.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FixedResistances_Examples_PlugFlowPipeDiscretized.txt new file mode 100644 index 0000000000..3655838b55 --- /dev/null +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FixedResistances_Examples_PlugFlowPipeDiscretized.txt @@ -0,0 +1,17 @@ +last-generated=2021-10-20 +statistics-simulation= +{ + "linear": " ", + "nonlinear": " ", + "number of continuous time states": "42", + "numerical Jacobians": "0" +} +time=[0e+00, 1e+03] +senTemIn.T=[3.231499938964844e+02, 3.231499938964844e+02, 3.231499938964844e+02, 3.231499938964844e+02, 3.231499938964844e+02, 3.231499938964844e+02, 3.231499938964844e+02, 3.231499938964844e+02, 3.231499938964844e+02, 3.231499938964844e+02, 3.231499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02] +senTemOut.T=[3.231499938964844e+02, 3.231484985351562e+02, 3.231467590332031e+02, 3.231448364257812e+02, 3.231427612304688e+02, 3.231405029296875e+02, 3.231380615234375e+02, 3.231354370117188e+02, 3.231327819824219e+02, 3.23131591796875e+02, 3.23131591796875e+02, 3.23131591796875e+02, 3.23131591796875e+02, 3.23131591796875e+02, 3.23131591796875e+02, 3.23131591796875e+02, 3.23131591796875e+02, 3.23131591796875e+02, 3.231326293945312e+02, 3.431186828613281e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02, 3.431189270019531e+02] +bou[1].T=[2.851499938964844e+02, 2.851499938964844e+02] +pip.QEnv_flow=[0e+00, -7.6994287109375e+02, -7.6988916015625e+02, -7.698411865234375e+02, -7.698001098632812e+02, -7.69765625e+02, -7.697383422851562e+02, -7.6971875e+02, -7.697075805664062e+02, -7.6970458984375e+02, -7.697046508789062e+02, -8.227899169921875e+02, -8.759011840820312e+02, -9.289952392578125e+02, -9.825446166992188e+02, -1.067649658203125e+03, -1.1390888671875e+03, -1.19426611328125e+03, -1.24748681640625e+03, -1.300554565429688e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03, -1.3005546875e+03] +pip.dp=[1.510887109375e+04, 1.510887109375e+04] +pip.v=[1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00, 1.278884530067444e+00] +pip.m_flow_nominal=[1e+01, 1e+01] +pip.m_flow=[1e+01, 1e+01] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FixedResistances_Examples_SimplePipe.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FixedResistances_Examples_SimplePipe.txt index b99f31326b..445ea34934 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FixedResistances_Examples_SimplePipe.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FixedResistances_Examples_SimplePipe.txt @@ -1,4 +1,4 @@ -last-generated=2020-11-23 +last-generated=2022-02-01 statistics-simulation= { "linear": " ", @@ -8,4 +8,4 @@ statistics-simulation= } time=[0e+00, 1e+03] senTemIn.T=[3.231499938964844e+02, 3.231499938964844e+02, 3.231499938964844e+02, 3.231499938964844e+02, 3.231499938964844e+02, 3.231499938964844e+02, 3.231499938964844e+02, 3.231499938964844e+02, 3.231499938964844e+02, 3.231499938964844e+02, 3.231499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02, 3.431499938964844e+02] -senTemOut.T=[3.231499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02, 2.781499938964844e+02] +senTemOut.T=[3.231499938964844e+02, 3.22968017578125e+02, 3.22631591796875e+02, 3.223530578613281e+02, 3.221845703125e+02, 3.2209814453125e+02, 3.220574951171875e+02, 3.220392761230469e+02, 3.220312805175781e+02, 3.2202783203125e+02, 3.220263366699219e+02, 3.246845703125e+02, 3.327286987304688e+02, 3.382636108398438e+02, 3.405086975097656e+02, 3.412278747558594e+02, 3.414364318847656e+02, 3.414965515136719e+02, 3.415149841308594e+02, 3.415212707519531e+02, 3.415236206054688e+02, 3.415245971679688e+02, 3.415249633789062e+02, 3.415251159667969e+02, 3.415252075195312e+02, 3.415252380371094e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02, 3.415252685546875e+02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FixedResistances_Validation_PlugFlowPipes_FlowReversal.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FixedResistances_Validation_PlugFlowPipes_FlowReversal.txt index 98d6c19a1d..55ac2961e5 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FixedResistances_Validation_PlugFlowPipes_FlowReversal.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FixedResistances_Validation_PlugFlowPipes_FlowReversal.txt @@ -1,15 +1,14 @@ -last-generated=2017-10-25 +last-generated=2022-05-23 statistics-simulation= { - "numerical Jacobians": "0", - "nonlinear": "1", - "number of continuous time states": "3", - "linear": " " + "linear": " ", + "nonlinear": "1", + "number of continuous time states": "4", + "numerical Jacobians": "0" } -m_flow.y=[2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00] time=[0e+00, 1.5e+02] -senTemIn.T=[3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02] +m_flow.y=[2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00] +senTemIn.T=[3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.024570617675781e+02, 3.024518737792969e+02, 3.024421997070312e+02, 3.024279479980469e+02, 3.024090881347656e+02, 3.023854675292969e+02, 3.0235693359375e+02, 3.023233032226562e+02, 3.022843627929688e+02, 3.022398376464844e+02, 3.021894836425781e+02, 3.021329650878906e+02, 3.020699157714844e+02, 3.019999084472656e+02, 3.019225463867188e+02, 3.018372802734375e+02, 3.017435913085938e+02, 3.016408386230469e+02, 3.015284118652344e+02, 3.014055786132812e+02, 3.012715454101562e+02, 3.011254272460938e+02, 3.0096630859375e+02, 3.007931823730469e+02, 3.006049194335938e+02, 3.004002990722656e+02, 3.001780395507812e+02, 2.999367065429688e+02, 2.996747131347656e+02, 2.993904418945312e+02, 2.990820007324219e+02, 2.987474365234375e+02, 2.983846130371094e+02, 2.97994873046875e+02, 2.976219787597656e+02, 2.972776794433594e+02, 2.969598388671875e+02, 2.966664428710938e+02, 2.963957214355469e+02, 2.961458435058594e+02, 2.959151916503906e+02, 2.957023010253906e+02, 2.955057678222656e+02, 2.953243713378906e+02, 2.951569519042969e+02, 2.9500244140625e+02, 2.948598022460938e+02, 2.947281494140625e+02, 2.946066589355469e+02, 2.944945068359375e+02, 2.943909912109375e+02, 2.942954406738281e+02, 2.942072448730469e+02, 2.941258239746094e+02, 2.940506896972656e+02, 2.939813232421875e+02, 2.939173278808594e+02, 2.938582153320312e+02, 2.938037109375e+02, 2.937533569335938e+02, 2.937069091796875e+02, 2.936640319824219e+02, 2.936244812011719e+02, 2.935879516601562e+02, 2.935542297363281e+02, 2.935231018066406e+02, 2.934944458007812e+02] senTemOut.T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02] -pip.cor.del.v=[2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00] -pip.cor.res.v_nominal=[2e+00, 2e+00] -pip.cor.v_nominal=[2e+00, 2e+00] +pip.v_nominal=[2e+00, 2e+00] +pip.v=[2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FixedResistances_Validation_PlugFlowPipes_MSLAIT.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FixedResistances_Validation_PlugFlowPipes_MSLAIT.txt index 00dd048b95..f2af14f3f9 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FixedResistances_Validation_PlugFlowPipes_MSLAIT.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FixedResistances_Validation_PlugFlowPipes_MSLAIT.txt @@ -1,4 +1,4 @@ -last-generated=2021-05-19 +last-generated=2022-07-06 statistics-initialization= { "nonlinear": "1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1", @@ -12,11 +12,11 @@ statistics-simulation= "numerical Jacobians": "0" } time=[0e+00, 6.039e+05] -senTem_p1.T=[2.931499938964844e+02, 3.724580078125e+02, 3.715299377441406e+02, 3.70135009765625e+02, 3.704120178222656e+02, 3.716500549316406e+02, 3.713180236816406e+02, 3.721540832519531e+02, 3.724399719238281e+02, 3.735660095214844e+02, 3.71e+02, 3.733090209960938e+02, 3.734440002441406e+02, 3.741310119628906e+02, 3.767000122070312e+02, 3.745350646972656e+02, 3.752000122070312e+02, 3.744769592285156e+02, 3.711100158691406e+02, 3.710269165039062e+02, 3.709199829101562e+02, 3.723260498046875e+02, 3.748760070800781e+02, 3.747309875488281e+02, 3.744720153808594e+02, 3.721499633789062e+02, 3.7285400390625e+02, 3.739790344238281e+02, 3.751520690917968e+02, 3.760330505371094e+02, 3.754600219726562e+02, 3.758731079101562e+02, 3.724320678710938e+02, 3.71e+02, 3.715859985351562e+02, 3.737300109863281e+02, 3.735080261230469e+02, 3.747269897460938e+02, 3.754220581054688e+02, 3.718480224609375e+02, 3.716599731445312e+02, 3.720780029296875e+02, 3.750199279785156e+02, 3.740239562988281e+02, 3.734879150390625e+02, 3.733199157714844e+02, 3.708899230957031e+02, 3.709329528808594e+02, 3.712479553222656e+02, 3.694680480957031e+02, 3.729000244140625e+02, 3.74e+02, 3.715440979003906e+02, 3.727559509277344e+02, 3.727540588378906e+02, 3.731650390625e+02, 3.727599792480469e+02, 3.741349792480468e+02, 3.740799865722656e+02, 3.739029235839844e+02, 3.735800476074219e+02, 3.710450134277344e+02, 3.709960021972656e+02, 3.717539978027344e+02, 3.719479370117188e+02, 3.727850036621094e+02, 3.718999938964844e+02, 3.708999938964844e+02, 3.723440246582031e+02, 3.718999938964844e+02, 3.730500183105469e+02, 3.739447631835938e+02, 3.761440734863281e+02, 3.740279235839844e+02, 3.737719421386719e+02, 3.713250122070312e+02, 3.722558288574219e+02, 3.72302978515625e+02, 3.715300598144531e+02, 3.726899719238281e+02, 3.709800109863281e+02, 3.72447021484375e+02, 3.703360595703126e+02, 3.70135009765625e+02, 3.700800170898438e+02, 3.733550415039062e+02, 3.755239868164062e+02, 3.748539733886719e+02, 3.756520080566406e+02, 3.719849243164062e+02, 3.689700927734375e+02, 3.690709533691406e+02, 3.716080322265625e+02, 3.717419128417969e+02, 3.731399536132812e+02, 3.718650207519531e+02, 3.703440551757812e+02, 3.704829711914062e+02, 3.679159851074219e+02, 3.701669006347656e+02, 3.73e+02] +senTem_p1.T=[2.931499938964844e+02, 3.724580078125e+02, 3.715299377441406e+02, 3.70135009765625e+02, 3.704120178222656e+02, 3.716500549316406e+02, 3.713180236816406e+02, 3.721540832519531e+02, 3.724399719238281e+02, 3.735660095214844e+02, 3.71e+02, 3.733090209960938e+02, 3.734440002441406e+02, 3.741310119628906e+02, 3.767000122070312e+02, 3.745350646972656e+02, 3.752000122070312e+02, 3.744769592285156e+02, 3.711100158691406e+02, 3.710269165039062e+02, 3.709199829101562e+02, 3.723260498046875e+02, 3.748760070800781e+02, 3.747309875488281e+02, 3.744720153808594e+02, 3.721499633789062e+02, 3.7285400390625e+02, 3.739790344238281e+02, 3.751520690917968e+02, 3.760330505371094e+02, 3.754600219726562e+02, 3.758731079101562e+02, 3.724320678710938e+02, 3.71e+02, 3.715859985351562e+02, 3.737300109863281e+02, 3.735080261230469e+02, 3.747269897460938e+02, 3.754227294921875e+02, 3.718480224609375e+02, 3.716599731445312e+02, 3.720780029296875e+02, 3.750199279785156e+02, 3.740239562988281e+02, 3.734879150390625e+02, 3.733199157714844e+02, 3.708899230957031e+02, 3.709329528808594e+02, 3.712479553222656e+02, 3.694680480957031e+02, 3.729000244140625e+02, 3.74e+02, 3.715440979003906e+02, 3.727559509277344e+02, 3.727540588378906e+02, 3.731650390625e+02, 3.727599792480469e+02, 3.741349792480468e+02, 3.740799865722656e+02, 3.739029235839844e+02, 3.735800476074219e+02, 3.710450134277344e+02, 3.709960021972656e+02, 3.717539978027344e+02, 3.719479370117188e+02, 3.727850036621094e+02, 3.718999938964844e+02, 3.708999938964844e+02, 3.723440246582031e+02, 3.718999938964844e+02, 3.730500183105469e+02, 3.739447631835938e+02, 3.761440734863281e+02, 3.740279235839844e+02, 3.737719421386719e+02, 3.713250122070312e+02, 3.722555847167969e+02, 3.72302978515625e+02, 3.715300598144531e+02, 3.726899719238281e+02, 3.709800109863281e+02, 3.72447021484375e+02, 3.703360595703126e+02, 3.70135009765625e+02, 3.700800170898438e+02, 3.733550415039062e+02, 3.755239868164062e+02, 3.748539733886719e+02, 3.756520080566406e+02, 3.719849243164062e+02, 3.689700927734375e+02, 3.690709533691406e+02, 3.716080322265625e+02, 3.717419128417969e+02, 3.731399536132812e+02, 3.718650207519531e+02, 3.703440551757812e+02, 3.704829711914062e+02, 3.679159851074219e+02, 3.701669006347656e+02, 3.73e+02] pip0.port_a.m_flow=[2.666699981689453e+01, 2.702643013000488e+01, 2.619314002990723e+01, 2.506500053405762e+01, 2.585972023010254e+01, 2.732485008239746e+01, 2.814999961853027e+01, 2.648500061035157e+01, 2.620643997192383e+01, 3.106513023376465e+01, 3.323360061645508e+01, 3.634827041625977e+01, 3.92599983215332e+01, 4.074359130859375e+01, 4.019998168945307e+01, 4.193355178833008e+01, 3.70731201171875e+01, 3.384199905395512e+01, 3.16302604675293e+01, 3.606800079345703e+01, 3.016659927368164e+01, 2.789496994018555e+01, 2.957299995422363e+01, 2.966699981689453e+01, 2.933967971801758e+01, 3.216675186157227e+01, 2.714299964904785e+01, 2.994338989257812e+01, 2.869308090209965e+01, 2.857699966430664e+01, 3.066699981689453e+01, 3.065866088867188e+01, 3.307347869873047e+01, 2.833161926269531e+01, 2.885638046264649e+01, 2.65169506072998e+01, 2.808651924133301e+01, 2.695491027832031e+01, 2.702334022521973e+01, 2.41200008392334e+01, 2.003339958190918e+01, 1.803663063049315e+01, 1.745693969726562e+01, 1.893199920654297e+01, 1.849308013916016e+01, 1.97996997833252e+01, 1.945322036743164e+01, 2.044978904724121e+01, 2.123971939086914e+01, 2.135199928283691e+01, 2e+01, 2.268499946594238e+01, 2.323364067077637e+01, 2.805699920654297e+01, 3.481999969482422e+01, 3.226634979248047e+01, 3.481299972534167e+01, 4.220999908447311e+01, 4.464305877685547e+01, 3.7e+01, 3.796680068969727e+01, 3.048800086975098e+01, 2.945000076293945e+01, 2.789699935913086e+01, 2.471999931335449e+01, 2.51919002532959e+01, 2.66463794708252e+01, 2.319161987304688e+01, 2.258699989318857e+01, 2.31620006561279e+01, 2.306679916381836e+01, 2.166699981689453e+01, 2.420696067810059e+01, 2.732699966430664e+01, 2.752981948852539e+01, 2.89997501373291e+01, 2.982667922973633e+01, 2.983300018310547e+01, 2.861700057983398e+01, 3.23650016784668e+01, 2.730019950866699e+01, 2.70100002288819e+01, 2.842674064636233e+01, 2.341031074523926e+01, 2.078000068664551e+01, 1.987509918212891e+01, 1.90030403137207e+01, 1.917981910705566e+01, 2.005299949645996e+01, 2.083300018310547e+01, 2.013330078125e+01, 2.015826034545898e+01, 1.992655944824219e+01, 2.003000068664551e+01, 2.133300018310547e+01, 2.531685066223145e+01, 3.111355972290039e+01, 3.028170967102051e+01, 2.68498592376709e+01, 2.94085693359375e+01, 3.083300018310547e+01] -senTem_p2.T=[2.931499938964844e+02, 3.628540954589844e+02, 3.646825561523438e+02, 3.666275634765625e+02, 3.639780578613281e+02, 3.635722045898438e+02, 3.650527954101562e+02, 3.631888122558594e+02, 3.647799987792969e+02, 3.656265258789062e+02, 3.646937255859375e+02, 3.628479309082031e+02, 3.651078796386719e+02, 3.652442321777344e+02, 3.653854370117188e+02, 3.683063659667969e+02, 3.666227416992188e+02, 3.666315307617188e+02, 3.682086791992188e+02, 3.642520446777344e+02, 3.657487182617188e+02, 3.6509814453125e+02, 3.639656372070312e+02, 3.659787902832031e+02, 3.603385314941406e+02, 3.649622192382812e+02, 3.646064147949219e+02, 3.637359313964844e+02, 3.637539672851562e+02, 3.681795349121094e+02, 3.671466064453125e+02, 3.675236511230469e+02, 3.664842834472656e+02, 3.653154907226562e+02, 3.650376281738281e+02, 3.643817749023438e+02, 3.637707214355469e+02, 3.606305541992188e+02, 3.659044494628906e+02, 3.653787231445312e+02, 3.633101501464844e+02, 3.649653625488281e+02, 3.634980163574219e+02, 3.684169616699219e+02, 3.657189331054688e+02, 3.672863159179688e+02, 3.64592041015625e+02, 3.652427368164062e+02, 3.633211669921875e+02, 3.640171508789062e+02, 3.61509521484375e+02, 3.613536682128906e+02, 3.642144470214844e+02, 3.634682312011719e+02, 3.642535095214844e+02, 3.639972534179688e+02, 3.653719482421876e+02, 3.657865295410157e+02, 3.660252990722656e+02, 3.680043029785156e+02, 3.658013916015625e+02, 3.648915710449219e+02, 3.655870971679688e+02, 3.654288940429688e+02, 3.639319152832031e+02, 3.648283081054688e+02, 3.659062194824219e+02, 3.647466430664062e+02, 3.630371704101562e+02, 3.635445556640625e+02, 3.641108703613281e+02, 3.645582885742188e+02, 3.67201416015625e+02, 3.678045349121094e+02, 3.646632995605469e+02, 3.681182250976562e+02, 3.644933776855469e+02, 3.642989501953125e+02, 3.642947692871094e+02, 3.638880615234375e+02, 3.659790954589844e+02, 3.651146240234374e+02, 3.639577636718751e+02, 3.622059326171875e+02, 3.636660461425781e+02, 3.618727416992188e+02, 3.644691467285156e+02, 3.677403869628906e+02, 3.655337219238281e+02, 3.659491271972656e+02, 3.657105102539062e+02, 3.602413330078125e+02, 3.626372680664062e+02, 3.645875244140625e+02, 3.647978820800781e+02, 3.662337951660156e+02, 3.636736755371094e+02, 3.614200439453125e+02, 3.616186218261719e+02, 3.597965698242188e+02, 3.628750305175781e+02] +senTem_p2.T=[2.931499938964844e+02, 3.628533935546875e+02, 3.646826171875e+02, 3.666261596679688e+02, 3.639783935546875e+02, 3.635723266601562e+02, 3.650529174804688e+02, 3.631895446777344e+02, 3.647797241210938e+02, 3.656266174316406e+02, 3.646952514648438e+02, 3.62846923828125e+02, 3.651106262207031e+02, 3.652439880371094e+02, 3.653851623535156e+02, 3.683062438964844e+02, 3.666228332519531e+02, 3.666327819824219e+02, 3.682068481445312e+02, 3.642511596679688e+02, 3.657495727539062e+02, 3.650981140136719e+02, 3.639662475585938e+02, 3.659794311523438e+02, 3.602828979492188e+02, 3.649613647460938e+02, 3.646063842773438e+02, 3.637354736328125e+02, 3.63755615234375e+02, 3.681789855957031e+02, 3.671470336914062e+02, 3.675235595703125e+02, 3.664846801757812e+02, 3.653160095214844e+02, 3.650377807617188e+02, 3.643819885253906e+02, 3.637698059082031e+02, 3.606258544921875e+02, 3.659054565429688e+02, 3.653794250488281e+02, 3.63310302734375e+02, 3.649649353027344e+02, 3.634990539550781e+02, 3.684167785644531e+02, 3.657192993164062e+02, 3.672858276367188e+02, 3.645889892578125e+02, 3.652426147460938e+02, 3.633209533691406e+02, 3.640169677734375e+02, 3.615097045898438e+02, 3.613524475097656e+02, 3.642149658203125e+02, 3.634677734375e+02, 3.642531127929688e+02, 3.639964294433594e+02, 3.653720703125001e+02, 3.657868041992188e+02, 3.660246887207031e+02, 3.6800390625e+02, 3.658021850585938e+02, 3.648920288085938e+02, 3.655872192382812e+02, 3.654297485351562e+02, 3.6393212890625e+02, 3.648284301757812e+02, 3.659046020507812e+02, 3.647451782226562e+02, 3.630371398925781e+02, 3.635445556640625e+02, 3.641107177734375e+02, 3.645586547851562e+02, 3.672014465332031e+02, 3.678039245605469e+02, 3.646633911132812e+02, 3.681176147460938e+02, 3.644934997558594e+02, 3.642987365722656e+02, 3.64294921875e+02, 3.638872680664062e+02, 3.659787902832031e+02, 3.651147460937499e+02, 3.639576721191407e+02, 3.622071838378906e+02, 3.63666015625e+02, 3.618726501464844e+02, 3.64469970703125e+02, 3.677400512695312e+02, 3.655328674316406e+02, 3.659488525390625e+02, 3.657109680175781e+02, 3.602407836914062e+02, 3.626360473632812e+02, 3.645877685546875e+02, 3.647984008789062e+02, 3.662337341308594e+02, 3.636733093261719e+02, 3.614191589355469e+02, 3.616199645996094e+02, 3.597957763671875e+02, 3.628732299804688e+02] pip2.port_a.m_flow=[1.679999977350235e-01, 9.17700007557869e-02, 9.4480000436306e-02, 1.549900025129318e-01, 1.092400029301643e-01, 9.229999780654907e-02, 1.079799979925156e-01, 8.332999795675269e-02, 1.281200051307678e-01, 1.245300024747849e-01, 7.699999958276749e-02, 7.900000363588333e-02, 1.204800009727478e-01, 8.77700001001358e-02, 8.24799984693526e-02, 1.251499950885773e-01, 8.596000075340271e-02, 8.990000188350791e-02, 9.781999886035919e-02, 8.549000322818756e-02, 1.64000004529953e-01, 1.550000011920929e-01, 9.458000212907791e-02, 8.449000120162964e-02, 8.935999870300293e-02, 6.724999845027924e-02, 1.238000020384789e-01, 8.299999684095383e-02, 8.352000266313565e-02, 1.135199964046478e-01, 8.209999650716782e-02, 1.509999930858612e-01, 8.799999952316284e-02, 8.071000128984451e-02, 1.440600007772423e-01, 8.285000175237656e-02, 7.556000351905823e-02, 3.123000077903271e-02, 1.556800007820129e-01, 8.267000317573547e-02, 8.500000089406967e-02, 7.900000363588333e-02, 8.500000089406967e-02, 1.225500032305717e-01, 8.128000050783157e-02, 1.411000043153763e-01, 9.081999957561493e-02, 1.138999983668327e-01, 8.844000101089478e-02, 8.799999952316284e-02, 7.94999971985817e-02, 3.03799994289875e-02, 8.603999763727188e-02, 8.370000123977661e-02, 8.79800021648407e-02, 9.345000237226486e-02, 1.266400068998362e-01, 9.000000357627869e-02, 8.900000154972076e-02, 1.509999930858612e-01, 1.164000034332275e-01, 8.838000148534775e-02, 1.517799943685532e-01, 1.118199974298477e-01, 9.031999856233597e-02, 9.200000017881393e-02, 1.031000018119812e-01, 8.699999749660492e-02, 8.827999979257591e-02, 9.001000225543983e-02, 1.120999976992607e-01, 9.212999790906906e-02, 1.407999992370605e-01, 1.023899987339973e-01, 8.754000067710876e-02, 1.560000032186508e-01, 8.699999749660492e-02, 8.934000134468079e-02, 8.975999802350998e-02, 8.918000012636185e-02, 9.300000220537186e-02, 1.232599988579702e-01, 9.03400033712389e-02, 8.714000135660172e-02, 1.415600031614304e-01, 9.030000120401382e-02, 9.482000023126602e-02, 1.456699967384338e-01, 7.992000132799149e-02, 8.923999965190887e-02, 1.526000052690506e-01, 8.94400030374527e-02, 9.600000083446503e-02, 9.399999678134918e-02, 8.829999715089798e-02, 1.24949999153614e-01, 8.832000195980072e-02, 8.886999636888504e-02, 1.348599940538406e-01, 1.110000014305115e-01, 9.49999988079071e-02] -senTem_p3.T=[2.931499938964844e+02, 3.571359252929688e+02, 3.63124267578125e+02, 3.6305908203125e+02, 3.624759521484375e+02, 3.639989624023438e+02, 3.646165771484375e+02, 3.625313415527344e+02, 3.63336669921875e+02, 3.624162292480469e+02, 3.633453979492188e+02, 3.620117797851562e+02, 3.629714965820312e+02, 3.595691833496094e+02, 3.616213989257812e+02, 3.642519226074219e+02, 3.634463195800781e+02, 3.640916442871094e+02, 3.690306091308594e+02, 3.650762023925781e+02, 3.641337585449219e+02, 3.629377746582031e+02, 3.629772338867188e+02, 3.636442565917969e+02, 3.631794738769531e+02, 3.649512023925781e+02, 3.615716247558594e+02, 3.584727478027344e+02, 3.601169738769531e+02, 3.631854248046875e+02, 3.63873046875e+02, 3.626796569824219e+02, 3.658321533203125e+02, 3.651068725585938e+02, 3.627060852050782e+02, 3.630014953613281e+02, 3.633524475097656e+02, 3.612798461914062e+02, 3.632678833007812e+02, 3.664135437011719e+02, 3.628847961425781e+02, 3.604002380371093e+02, 3.61289794921875e+02, 3.658177795410156e+02, 3.651471557617188e+02, 3.654611511230469e+02, 3.645144958496094e+02, 3.664087829589844e+02, 3.640736389160156e+02, 3.628783569335938e+02, 3.612608337402344e+02, 3.638215026855469e+02, 3.63115966796875e+02, 3.631222229003906e+02, 3.646443176269531e+02, 3.625687866210938e+02, 3.614952697753906e+02, 3.62736846923828e+02, 3.631236877441406e+02, 3.637828674316406e+02, 3.629720764160156e+02, 3.655299682617188e+02, 3.642688598632812e+02, 3.638321838378906e+02, 3.631026306152344e+02, 3.63876953125e+02, 3.642368774414062e+02, 3.639451293945312e+02, 3.626904296875e+02, 3.6325048828125e+02, 3.581577453613281e+02, 3.604334716796875e+02, 3.609411010742188e+02, 3.628871459960938e+02, 3.616334533691406e+02, 3.663129272460938e+02, 3.646495361328125e+02, 3.641845703125e+02, 3.641539001464844e+02, 3.630794982910156e+02, 3.644826354980469e+02, 3.620969238281251e+02, 3.632051391601562e+02, 3.616138305664062e+02, 3.621498718261719e+02, 3.577943420410156e+02, 3.602712707519531e+02, 3.627681579589844e+02, 3.622142639160156e+02, 3.623124084472656e+02, 3.647830505371094e+02, 3.601634216308594e+02, 3.622041320800781e+02, 3.639834289550781e+02, 3.642579650878906e+02, 3.635655212402344e+02, 3.624927368164062e+02, 3.608388977050781e+02, 3.605758361816406e+02, 3.559496459960938e+02, 3.591124877929688e+02] +senTem_p3.T=[2.931499938964844e+02, 3.571363220214844e+02, 3.631242980957031e+02, 3.630588989257812e+02, 3.624654235839844e+02, 3.639990539550781e+02, 3.646166076660156e+02, 3.625322570800781e+02, 3.633373107910156e+02, 3.624164123535156e+02, 3.633462219238281e+02, 3.620119934082031e+02, 3.629713134765625e+02, 3.595703125e+02, 3.61622314453125e+02, 3.6425146484375e+02, 3.634463195800781e+02, 3.640919494628906e+02, 3.690299682617188e+02, 3.650755310058594e+02, 3.641337890625e+02, 3.629375610351562e+02, 3.629783020019531e+02, 3.636435546875e+02, 3.631791076660156e+02, 3.64950927734375e+02, 3.615713195800781e+02, 3.584730834960938e+02, 3.601178283691406e+02, 3.6318603515625e+02, 3.638736572265625e+02, 3.626799926757812e+02, 3.658323669433594e+02, 3.651073913574219e+02, 3.627060546875001e+02, 3.630013122558594e+02, 3.633524780273438e+02, 3.612797546386719e+02, 3.632679138183594e+02, 3.664140930175781e+02, 3.628847351074219e+02, 3.604000854492187e+02, 3.612908630371094e+02, 3.658178405761719e+02, 3.651475830078125e+02, 3.654600524902344e+02, 3.645116882324219e+02, 3.664087219238281e+02, 3.640734558105469e+02, 3.628782348632812e+02, 3.612609252929688e+02, 3.638212890625e+02, 3.631157836914062e+02, 3.631213684082031e+02, 3.6464404296875e+02, 3.625690002441406e+02, 3.614951171875e+02, 3.627369995117186e+02, 3.63123046875e+02, 3.637813720703125e+02, 3.629721069335938e+02, 3.655306701660156e+02, 3.642689208984375e+02, 3.638309631347656e+02, 3.631025695800781e+02, 3.638771667480469e+02, 3.64237548828125e+02, 3.639436340332031e+02, 3.626904907226562e+02, 3.632505493164062e+02, 3.581578674316406e+02, 3.604337158203125e+02, 3.609415893554688e+02, 3.628870849609375e+02, 3.616341857910156e+02, 3.663125305175781e+02, 3.646497497558594e+02, 3.641842651367188e+02, 3.64154296875e+02, 3.630784301757812e+02, 3.644829711914062e+02, 3.620976562500001e+02, 3.63205078125e+02, 3.616147155761719e+02, 3.621497802734375e+02, 3.577944641113281e+02, 3.602709655761719e+02, 3.627683715820312e+02, 3.622143249511719e+02, 3.623121032714844e+02, 3.647833862304688e+02, 3.601630249023438e+02, 3.622030639648438e+02, 3.639837951660156e+02, 3.64258056640625e+02, 3.635655517578125e+02, 3.624923095703125e+02, 3.608384704589844e+02, 3.605779113769531e+02, 3.559499206542969e+02, 3.591109924316406e+02] pip3.port_a.m_flow=[2.899999916553497e-02, 3.18400003015995e-02, 3.158000111579895e-02, 3.950000181794167e-02, 5.448000133037567e-02, 5.449999868869781e-02, 4.044000059366226e-02, 3.602999821305274e-02, 3.324000164866447e-02, 2.899999916553497e-02, 2.910000085830688e-02, 3.01900003105402e-02, 1.635999977588654e-02, 1.714999973773956e-02, 2.005999907851217e-02, 2.005000039935112e-02, 2.22800001502037e-02, 2.593000046908854e-02, 9.021999686956406e-02, 5.499999970197678e-02, 4.4599998742342e-02, 3.654000163078308e-02, 3.413999825716019e-02, 2.799000032246113e-02, 4.85600009560585e-02, 3.950000181794167e-02, 3.522000089287758e-02, 1.816999912261963e-02, 2.188000082969669e-02, 2.099999971687794e-02, 2.099999971687794e-02, 2.298000082373619e-02, 3.643999993801117e-02, 3.813999891281128e-02, 3.863999992609108e-02, 3.015000000596046e-02, 2.93199997395277e-02, 2.934999950230122e-02, 3.109999932348728e-02, 4.261999949812889e-02, 3.90000008046627e-02, 1.97700001299379e-02, 2.663999982178211e-02, 3.252999857068062e-02, 3.576000034809113e-02, 3.889999911189079e-02, 5.352000147104263e-02, 5.895999819040298e-02, 5.683999881148338e-02, 3.299999982118607e-02, 3.950000181794167e-02, 3.400000184774399e-02, 3.339999914169312e-02, 4.078000038862228e-02, 4.896000027656555e-02, 3.000000026077032e-03, 2.400000020861626e-02, 2.687999978661511e-02, 2.48199999332428e-02, 2.878000028431416e-02, 2.759999968111515e-02, 5.437999963760376e-02, 4.492000117897987e-02, 4.538000002503395e-02, 3.500000014901161e-02, 3.599999845027924e-02, 3.799999877810478e-02, 3.700000047683716e-02, 4.055999964475645e-02, 4.199000075459474e-02, 1.860000006854534e-02, 2.040999941527843e-02, 2.12399996817112e-02, 2.133999951183796e-02, 2.400000020861626e-02, 4.850000143051147e-02, 4.416000097990036e-02, 4.30000014603138e-02, 4.224000126123428e-02, 3.700000047683716e-02, 3.299999982118607e-02, 3.299999982118607e-02, 4.05200012028207e-02, 3.799999877810478e-02, 3.971999883651733e-02, 2.03000009059906e-02, 2.294000051915646e-02, 2.277000062167645e-02, 2.243999950587749e-02, 2.400000020861626e-02, 4.8700001090765e-02, 4.30000014603138e-02, 4.4599998742342e-02, 3.799999877810478e-02, 3.751999884843826e-02, 3.290000185370445e-02, 3.463999927043915e-02, 3.612999990582466e-02, 3.90000008046627e-02, 1.999999955296516e-02, 2.400000020861626e-02] -senTem_p4.T=[2.931499938964844e+02, 3.538532104492188e+02, 3.588838806152344e+02, 3.577882690429688e+02, 3.622301330566406e+02, 3.652367248535156e+02, 3.615055236816406e+02, 3.629490966796875e+02, 3.603093872070312e+02, 3.599811706542969e+02, 3.610219421386719e+02, 3.582311706542969e+02, 3.191005554199219e+02, 3.033984375e+02, 2.971973571777344e+02, 2.947483825683594e+02, 2.9378125e+02, 2.933992919921875e+02, 3.662410278320312e+02, 3.654256896972656e+02, 3.647735290527344e+02, 3.588869018554688e+02, 3.346548156738281e+02, 3.095412902832031e+02, 2.99623291015625e+02, 2.957064819335938e+02, 2.941596069335938e+02, 2.935487365722656e+02, 2.933074645996094e+02, 2.932121887207031e+02, 2.93174560546875e+02, 2.931596984863281e+02, 2.931538391113281e+02, 3.642011413574219e+02, 3.620864562988281e+02, 3.586385803222656e+02, 3.437311096191406e+02, 3.131256103515625e+02, 3.010387573242188e+02, 2.962654418945312e+02, 2.9438037109375e+02, 3.596208190917969e+02, 3.593257141113281e+02, 3.620679931640625e+02, 3.622850036621094e+02, 3.619296569824219e+02, 3.652549133300781e+02, 3.632046508789062e+02, 3.480296325683594e+02, 3.634749755859375e+02, 3.628016052246094e+02, 3.658628540039062e+02, 3.57103271484375e+02, 3.588086242675781e+02, 3.459169006347656e+02, 3.144871520996094e+02, 3.574974365234376e+02, 3.598298034667967e+02, 3.588782958984375e+02, 3.600405578613281e+02, 3.624425659179688e+02, 3.668936462402344e+02, 3.658887023925781e+02, 3.673257141113281e+02, 3.619532470703125e+02, 3.614746398925781e+02, 3.599956359863281e+02, 3.627573547363281e+02, 3.63467559814453e+02, 3.262271728515628e+02, 3.062129516601562e+02, 2.983088684082031e+02, 2.951873474121094e+02, 2.9395458984375e+02, 2.934677429199219e+02, 3.607399597167969e+02, 3.657388305664062e+02, 3.657026977539062e+02, 3.645826721191406e+02, 3.6449267578125e+02, 3.642853393554688e+02, 3.634585876464843e+02, 3.628470458984372e+02, 3.586387634277344e+02, 3.226824035644531e+02, 3.048129272460938e+02, 2.977560119628906e+02, 2.94968994140625e+02, 2.938683776855469e+02, 2.934336853027344e+02, 3.633534851074219e+02, 3.609143676757812e+02, 3.647899475097656e+02, 3.642505798339844e+02, 3.61510009765625e+02, 3.630919799804688e+02, 3.623818969726562e+02, 3.576414794921875e+02, 3.330738525390625e+02, 3.089168090820312e+02, 2.993766479492188e+02] +senTem_p4.T=[2.931499938964844e+02, 3.538528137207031e+02, 3.588839111328125e+02, 3.57788330078125e+02, 3.622300109863281e+02, 3.652364501953125e+02, 3.61505859375e+02, 3.629488830566406e+02, 3.603098754882812e+02, 3.599812316894531e+02, 3.610228271484375e+02, 3.582302551269531e+02, 3.190997924804688e+02, 3.033981323242188e+02, 2.971972045898438e+02, 2.947483215332031e+02, 2.937812194824219e+02, 2.933992919921875e+02, 3.662401428222656e+02, 3.654263305664062e+02, 3.647730712890625e+02, 3.588869934082031e+02, 3.346546630859375e+02, 3.095411682128906e+02, 2.996232604980469e+02, 2.957064514160156e+02, 2.941596069335938e+02, 2.935487365722656e+02, 2.933074645996094e+02, 2.932121887207031e+02, 2.93174560546875e+02, 2.931596984863281e+02, 2.931538391113281e+02, 3.642009582519531e+02, 3.620863647460938e+02, 3.586384887695312e+02, 3.437298278808594e+02, 3.131250610351562e+02, 3.0103857421875e+02, 2.962653503417969e+02, 2.943803100585938e+02, 3.596207275390625e+02, 3.593265380859375e+02, 3.620680541992188e+02, 3.622852172851562e+02, 3.61928466796875e+02, 3.652579650878906e+02, 3.632053833007812e+02, 3.480342407226562e+02, 3.634754943847656e+02, 3.628023071289062e+02, 3.658623962402344e+02, 3.571023864746094e+02, 3.588078308105469e+02, 3.45917236328125e+02, 3.14488037109375e+02, 3.574972534179688e+02, 3.598297424316405e+02, 3.588783569335938e+02, 3.600394592285156e+02, 3.624420471191406e+02, 3.668937377929688e+02, 3.65887939453125e+02, 3.673271484375e+02, 3.61953857421875e+02, 3.614736633300781e+02, 3.599959106445312e+02, 3.627556457519531e+02, 3.634665527343749e+02, 3.262243652343753e+02, 3.062118225097656e+02, 2.983085021972656e+02, 2.951872253417969e+02, 2.939545288085938e+02, 2.934677429199219e+02, 3.607388610839844e+02, 3.657389526367188e+02, 3.657032470703125e+02, 3.645817260742188e+02, 3.644922790527344e+02, 3.642859802246094e+02, 3.634587097167968e+02, 3.62845031738281e+02, 3.586408996582031e+02, 3.226822814941406e+02, 3.048128662109375e+02, 2.977559814453125e+02, 2.94968994140625e+02, 2.938683776855469e+02, 2.934336853027344e+02, 3.633536376953125e+02, 3.609138793945312e+02, 3.647905883789062e+02, 3.642503662109375e+02, 3.615096740722656e+02, 3.630917358398438e+02, 3.623822631835938e+02, 3.576409301757812e+02, 3.330730285644531e+02, 3.089164123535156e+02, 2.993765563964844e+02] pip4.port_a.m_flow=[1.30000002682209e-02, 1.271000038832426e-02, 1.200000010430813e-02, 1.113000046461821e-02, 3.260000050067902e-02, 3.060000017285347e-02, 1.099999994039536e-02, 2.500000037252903e-02, 1.499999966472387e-02, 1.400000043213367e-02, 1.339999958872795e-02, 2.090000081807375e-03, 4.799999878741801e-04, 0e+00, 0e+00, 6.500000017695129e-04, 3.600000054575503e-04, 1.000000047497451e-03, 2.400000020861626e-02, 3.700000047683716e-02, 3.159999847412109e-02, 1.30000002682209e-02, 6.200000061653554e-04, 0e+00, 0e+00, 7.50000006519258e-04, 0e+00, 0e+00, 0e+00, 0e+00, 3.000000142492354e-04, 9.899999713525176e-04, 7.200000109151006e-04, 2.342999912798405e-02, 2.057999931275835e-02, 1.154999993741512e-02, 4.400000034365803e-04, 7.300000288523734e-04, 1.000000047497451e-03, 0e+00, 0e+00, 1.21099995449185e-02, 1.400000043213367e-02, 1.35300001129508e-02, 1.499999966472387e-02, 1.400000043213367e-02, 3.299999982118607e-02, 2.96000000089407e-02, 5.200000014156103e-03, 2.542000077664852e-02, 3.750000149011612e-02, 3.178999945521355e-02, 1.099999994039536e-02, 1.425999961793423e-02, 0e+00, 1.649999991059303e-03, 1.228000037372132e-02, 1.30000002682209e-02, 1.035999972373247e-02, 1.200000010430813e-02, 1.999999955296516e-02, 6.100000068545341e-02, 4.707999899983406e-02, 5.099999904632568e-02, 2.703999914228916e-02, 1.759999990463257e-02, 1.31400004029274e-02, 1.600999943912029e-02, 2.652000077068702e-02, 1.000000047497451e-03, 0e+00, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 2.15000007301569e-02, 3.440000116825104e-02, 4.171000048518181e-02, 3.276000171899796e-02, 2.999999932944775e-02, 1.520000025629997e-02, 2.135000005364321e-02, 2.835999988019544e-02, 1.765000075101852e-02, 0e+00, 6.500000017695129e-04, 5.999999848427251e-05, 0e+00, 1.000000047497451e-03, 1.000000047497451e-03, 2.400000020861626e-02, 3.610000014305115e-02, 5.299999937415123e-02, 3.599999845027924e-02, 2.309999987483025e-02, 1.675000041723251e-02, 1.200000010430813e-02, 1.30000002682209e-02, 1.000000047497451e-03, 0e+00, 0e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FixedResistances_Validation_PlugFlowPipes_MSLAIT2Nodes.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FixedResistances_Validation_PlugFlowPipes_MSLAIT2Nodes.txt index 76670ee914..2a3b0ffa4d 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FixedResistances_Validation_PlugFlowPipes_MSLAIT2Nodes.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FixedResistances_Validation_PlugFlowPipes_MSLAIT2Nodes.txt @@ -1,4 +1,4 @@ -last-generated=2021-05-19 +last-generated=2022-07-06 statistics-initialization= { "nonlinear": "1, 1, 1, 1, 1, 1", @@ -12,11 +12,11 @@ statistics-simulation= "numerical Jacobians": "0" } time=[0e+00, 6.039e+05] -senTem_p1.T=[2.931499938964844e+02, 3.724580078125e+02, 3.715299377441406e+02, 3.70135009765625e+02, 3.704120178222656e+02, 3.716500549316406e+02, 3.713180236816406e+02, 3.721540832519531e+02, 3.724399719238281e+02, 3.735660095214844e+02, 3.71e+02, 3.733090209960938e+02, 3.734440002441406e+02, 3.741310119628906e+02, 3.767000122070312e+02, 3.745350646972656e+02, 3.752000122070312e+02, 3.744769592285156e+02, 3.711100158691406e+02, 3.710269165039062e+02, 3.709199829101562e+02, 3.723260498046875e+02, 3.748760070800781e+02, 3.747309875488281e+02, 3.744720153808594e+02, 3.721499633789062e+02, 3.7285400390625e+02, 3.739790344238281e+02, 3.751520690917968e+02, 3.760330505371094e+02, 3.754600219726562e+02, 3.758731079101562e+02, 3.724320678710938e+02, 3.71e+02, 3.715859985351562e+02, 3.737300109863281e+02, 3.735080261230469e+02, 3.747269897460938e+02, 3.754220581054688e+02, 3.718480224609375e+02, 3.716599731445312e+02, 3.720780029296875e+02, 3.750199279785156e+02, 3.740239562988281e+02, 3.734879150390625e+02, 3.733199157714844e+02, 3.708899230957031e+02, 3.709329528808594e+02, 3.712479553222656e+02, 3.694680480957031e+02, 3.729000244140625e+02, 3.74e+02, 3.715440979003906e+02, 3.727559509277344e+02, 3.727540588378906e+02, 3.731650390625e+02, 3.727599792480469e+02, 3.741349792480468e+02, 3.740799865722656e+02, 3.739029235839844e+02, 3.735800476074219e+02, 3.710450134277344e+02, 3.709960021972656e+02, 3.717539978027344e+02, 3.719479370117188e+02, 3.727850036621094e+02, 3.718999938964844e+02, 3.708999938964844e+02, 3.723440246582031e+02, 3.718999938964844e+02, 3.730500183105469e+02, 3.739447631835938e+02, 3.761440734863281e+02, 3.740279235839844e+02, 3.737719421386719e+02, 3.713250122070312e+02, 3.722559509277344e+02, 3.72302978515625e+02, 3.715300598144531e+02, 3.726899719238281e+02, 3.709800109863281e+02, 3.72447021484375e+02, 3.703360595703126e+02, 3.70136474609375e+02, 3.700800170898438e+02, 3.733550415039062e+02, 3.755239868164062e+02, 3.748539733886719e+02, 3.756520080566406e+02, 3.719849243164062e+02, 3.689700927734375e+02, 3.690709533691406e+02, 3.716080322265625e+02, 3.717419128417969e+02, 3.731399536132812e+02, 3.718650207519531e+02, 3.703440551757812e+02, 3.704829711914062e+02, 3.679159851074219e+02, 3.701669006347656e+02, 3.73e+02] +senTem_p1.T=[2.931499938964844e+02, 3.724580078125e+02, 3.715299377441406e+02, 3.70135009765625e+02, 3.704120178222656e+02, 3.716500549316406e+02, 3.713180236816406e+02, 3.721540832519531e+02, 3.724399719238281e+02, 3.735660095214844e+02, 3.71e+02, 3.733090209960938e+02, 3.734440002441406e+02, 3.741310119628906e+02, 3.767000122070312e+02, 3.745350646972656e+02, 3.752000122070312e+02, 3.744769592285156e+02, 3.711100158691406e+02, 3.710269165039062e+02, 3.709199829101562e+02, 3.723260498046875e+02, 3.748760070800781e+02, 3.747309875488281e+02, 3.744720153808594e+02, 3.721499633789062e+02, 3.7285400390625e+02, 3.739790344238281e+02, 3.751520690917968e+02, 3.760330505371094e+02, 3.754600219726562e+02, 3.758731079101562e+02, 3.724320678710938e+02, 3.71e+02, 3.715859985351562e+02, 3.737300109863281e+02, 3.735080261230469e+02, 3.747269897460938e+02, 3.754220581054688e+02, 3.718480224609375e+02, 3.716599731445312e+02, 3.720780029296875e+02, 3.750199279785156e+02, 3.740239562988281e+02, 3.734879150390625e+02, 3.733199157714844e+02, 3.708899230957031e+02, 3.709329528808594e+02, 3.712479553222656e+02, 3.694680480957031e+02, 3.729000244140625e+02, 3.74e+02, 3.715440979003906e+02, 3.727559509277344e+02, 3.727540588378906e+02, 3.731650390625e+02, 3.727599792480469e+02, 3.741349792480468e+02, 3.740799865722656e+02, 3.739029235839844e+02, 3.735800476074219e+02, 3.710450134277344e+02, 3.709960021972656e+02, 3.717539978027344e+02, 3.719479370117188e+02, 3.727850036621094e+02, 3.718999938964844e+02, 3.708999938964844e+02, 3.723440246582031e+02, 3.718999938964844e+02, 3.730500183105469e+02, 3.739447631835938e+02, 3.761440734863281e+02, 3.740279235839844e+02, 3.737719421386719e+02, 3.713250122070312e+02, 3.722557983398438e+02, 3.72302978515625e+02, 3.715300598144531e+02, 3.726899719238281e+02, 3.709800109863281e+02, 3.72447021484375e+02, 3.703360595703126e+02, 3.70135009765625e+02, 3.700800170898438e+02, 3.733550415039062e+02, 3.755239868164062e+02, 3.748539733886719e+02, 3.756520080566406e+02, 3.719849243164062e+02, 3.689700927734375e+02, 3.690709533691406e+02, 3.716080322265625e+02, 3.717419128417969e+02, 3.731399536132812e+02, 3.718650207519531e+02, 3.703440551757812e+02, 3.704829711914062e+02, 3.679159851074219e+02, 3.701669006347656e+02, 3.73e+02] pip0.port_a.m_flow=[2.666699981689453e+01, 2.702643013000488e+01, 2.619314002990723e+01, 2.506500053405762e+01, 2.585972023010254e+01, 2.732485008239746e+01, 2.814999961853027e+01, 2.648500061035157e+01, 2.620643997192383e+01, 3.106513023376465e+01, 3.323360061645508e+01, 3.634827041625977e+01, 3.92599983215332e+01, 4.074359130859375e+01, 4.019998168945307e+01, 4.193355178833008e+01, 3.70731201171875e+01, 3.384199905395512e+01, 3.16302604675293e+01, 3.606800079345703e+01, 3.016659927368164e+01, 2.789496994018555e+01, 2.957299995422363e+01, 2.966699981689453e+01, 2.933967971801758e+01, 3.216675186157227e+01, 2.714299964904785e+01, 2.994338989257812e+01, 2.869308090209965e+01, 2.857699966430664e+01, 3.066699981689453e+01, 3.065866088867188e+01, 3.307347869873047e+01, 2.833161926269531e+01, 2.885638046264649e+01, 2.65169506072998e+01, 2.808651924133301e+01, 2.695491027832031e+01, 2.702334022521973e+01, 2.41200008392334e+01, 2.003339958190918e+01, 1.803663063049315e+01, 1.745693969726562e+01, 1.893199920654297e+01, 1.849308013916016e+01, 1.97996997833252e+01, 1.945322036743164e+01, 2.044978904724121e+01, 2.123971939086914e+01, 2.135199928283691e+01, 2e+01, 2.268499946594238e+01, 2.323364067077637e+01, 2.805699920654297e+01, 3.481999969482422e+01, 3.226634979248047e+01, 3.481299972534167e+01, 4.220999908447311e+01, 4.464305877685547e+01, 3.7e+01, 3.796680068969727e+01, 3.048800086975098e+01, 2.945000076293945e+01, 2.789699935913086e+01, 2.471999931335449e+01, 2.51919002532959e+01, 2.66463794708252e+01, 2.319161987304688e+01, 2.258699989318857e+01, 2.31620006561279e+01, 2.306679916381836e+01, 2.166699981689453e+01, 2.420696067810059e+01, 2.732699966430664e+01, 2.752981948852539e+01, 2.89997501373291e+01, 2.982667922973633e+01, 2.983300018310547e+01, 2.861700057983398e+01, 3.23650016784668e+01, 2.730019950866699e+01, 2.70100002288819e+01, 2.842674064636233e+01, 2.341031074523926e+01, 2.078000068664551e+01, 1.987509918212891e+01, 1.90030403137207e+01, 1.917981910705566e+01, 2.005299949645996e+01, 2.083300018310547e+01, 2.013330078125e+01, 2.015826034545898e+01, 1.992655944824219e+01, 2.003000068664551e+01, 2.133300018310547e+01, 2.531685066223145e+01, 3.111355972290039e+01, 3.028170967102051e+01, 2.68498592376709e+01, 2.94085693359375e+01, 3.083300018310547e+01] -senTem_p2.T=[2.931499938964844e+02, 3.429071655273438e+02, 3.622205810546875e+02, 3.656761779785156e+02, 3.64222412109375e+02, 3.638775329589844e+02, 3.647058715820312e+02, 3.639132995605469e+02, 3.647347717285156e+02, 3.65687744140625e+02, 3.647446899414062e+02, 3.636094055175781e+02, 3.645419311523438e+02, 3.653693542480469e+02, 3.661102294921875e+02, 3.675415649414062e+02, 3.666963500976562e+02, 3.666106872558594e+02, 3.671680908203125e+02, 3.645938415527344e+02, 3.658860778808594e+02, 3.658232421875e+02, 3.647137756347656e+02, 3.650184631347656e+02, 3.598565979003906e+02, 3.642818298339844e+02, 3.651184997558594e+02, 3.637701110839844e+02, 3.640598449707031e+02, 3.67954345703125e+02, 3.663526916503906e+02, 3.671321411132812e+02, 3.662230529785156e+02, 3.648307495117188e+02, 3.65486572265625e+02, 3.649986572265625e+02, 3.641103515625e+02, 3.624234313964844e+02, 3.6565576171875e+02, 3.640979614257812e+02, 3.641046447753906e+02, 3.646819152832031e+02, 3.64095458984375e+02, 3.678888244628906e+02, 3.656052856445312e+02, 3.667708435058594e+02, 3.654393920898438e+02, 3.650315551757812e+02, 3.638025512695312e+02, 3.637481689453125e+02, 3.630099182128906e+02, 3.617328491210938e+02, 3.645204772949219e+02, 3.6417724609375e+02, 3.638086853027344e+02, 3.641802368164062e+02, 3.649829101562501e+02, 3.655814514160157e+02, 3.656978149414062e+02, 3.671882934570312e+02, 3.666880493164062e+02, 3.649411010742188e+02, 3.652906188964844e+02, 3.65574462890625e+02, 3.639590454101562e+02, 3.643482360839844e+02, 3.653507385253906e+02, 3.6389794921875e+02, 3.634614868164062e+02, 3.63336669921875e+02, 3.646847534179688e+02, 3.652919921875e+02, 3.665833740234375e+02, 3.668542785644531e+02, 3.651107177734375e+02, 3.668253784179688e+02, 3.64564208984375e+02, 3.644423828125e+02, 3.638973693847656e+02, 3.643045043945312e+02, 3.6470458984375e+02, 3.652448730468749e+02, 3.636030273437501e+02, 3.628029479980469e+02, 3.635390014648438e+02, 3.625839233398438e+02, 3.645825500488281e+02, 3.663128662109375e+02, 3.651549377441406e+02, 3.647377014160156e+02, 3.653265991210938e+02, 3.60885009765625e+02, 3.629676818847656e+02, 3.641938781738281e+02, 3.643712158203125e+02, 3.65921142578125e+02, 3.642113342285156e+02, 3.619306030273438e+02, 3.615406494140625e+02, 3.600601196289062e+02, 3.621076049804688e+02] +senTem_p2.T=[2.931499938964844e+02, 3.429075622558594e+02, 3.622210998535156e+02, 3.656753845214844e+02, 3.642227478027344e+02, 3.638775634765625e+02, 3.647062683105469e+02, 3.639133911132812e+02, 3.647341003417969e+02, 3.656880493164062e+02, 3.647449340820312e+02, 3.636094360351562e+02, 3.645422058105469e+02, 3.653682250976562e+02, 3.66110107421875e+02, 3.675415649414062e+02, 3.66696044921875e+02, 3.666098327636719e+02, 3.67167724609375e+02, 3.64593994140625e+02, 3.658868713378906e+02, 3.658232116699219e+02, 3.647141723632812e+02, 3.650177917480469e+02, 3.598557434082031e+02, 3.642824401855469e+02, 3.651181945800781e+02, 3.637700500488281e+02, 3.6406005859375e+02, 3.679539184570312e+02, 3.663525695800781e+02, 3.671315612792969e+02, 3.662229309082031e+02, 3.648304138183594e+02, 3.654862670898438e+02, 3.649978637695312e+02, 3.641102294921875e+02, 3.6242138671875e+02, 3.6565478515625e+02, 3.640984191894531e+02, 3.641034240722656e+02, 3.646820373535156e+02, 3.640956420898438e+02, 3.678886413574219e+02, 3.656050720214844e+02, 3.667723999023438e+02, 3.65439208984375e+02, 3.650314331054688e+02, 3.638025207519531e+02, 3.637484436035156e+02, 3.630101013183594e+02, 3.617333679199219e+02, 3.645195617675781e+02, 3.641780700683594e+02, 3.638086853027344e+02, 3.641802062988281e+02, 3.649829406738282e+02, 3.655815124511719e+02, 3.656968383789062e+02, 3.671890869140625e+02, 3.666878967285156e+02, 3.6494091796875e+02, 3.65291259765625e+02, 3.655749206542969e+02, 3.639590148925781e+02, 3.643478088378906e+02, 3.653511962890625e+02, 3.638979797363281e+02, 3.634614868164062e+02, 3.633367309570312e+02, 3.646847839355469e+02, 3.652918090820312e+02, 3.665841064453125e+02, 3.668537292480469e+02, 3.651109619140625e+02, 3.668251953125e+02, 3.645641784667969e+02, 3.644408874511719e+02, 3.638976745605469e+02, 3.643049926757812e+02, 3.647043762207031e+02, 3.652451782226562e+02, 3.636026916503907e+02, 3.628028869628906e+02, 3.635425415039062e+02, 3.625841064453125e+02, 3.645825805664062e+02, 3.663116760253906e+02, 3.6515478515625e+02, 3.647380981445312e+02, 3.653267822265625e+02, 3.608857727050781e+02, 3.62967529296875e+02, 3.641944580078125e+02, 3.643706359863281e+02, 3.659215393066406e+02, 3.642118835449219e+02, 3.619306945800781e+02, 3.615376892089844e+02, 3.600589904785156e+02, 3.62107421875e+02] pip2.port_a.m_flow=[1.679999977350235e-01, 9.17700007557869e-02, 9.4480000436306e-02, 1.549900025129318e-01, 1.092400029301643e-01, 9.229999780654907e-02, 1.079799979925156e-01, 8.332999795675269e-02, 1.281200051307678e-01, 1.245300024747849e-01, 7.699999958276749e-02, 7.900000363588333e-02, 1.204800009727478e-01, 8.77700001001358e-02, 8.24799984693526e-02, 1.251499950885773e-01, 8.596000075340271e-02, 8.990000188350791e-02, 9.781999886035919e-02, 8.549000322818756e-02, 1.64000004529953e-01, 1.550000011920929e-01, 9.458000212907791e-02, 8.449000120162964e-02, 8.935999870300293e-02, 6.724999845027924e-02, 1.238000020384789e-01, 8.299999684095383e-02, 8.352000266313565e-02, 1.135199964046478e-01, 8.209999650716782e-02, 1.509999930858612e-01, 8.799999952316284e-02, 8.071000128984451e-02, 1.440600007772423e-01, 8.285000175237656e-02, 7.556000351905823e-02, 3.123000077903271e-02, 1.556800007820129e-01, 8.267000317573547e-02, 8.500000089406967e-02, 7.900000363588333e-02, 8.500000089406967e-02, 1.225500032305717e-01, 8.128000050783157e-02, 1.411000043153763e-01, 9.081999957561493e-02, 1.138999983668327e-01, 8.844000101089478e-02, 8.799999952316284e-02, 7.94999971985817e-02, 3.03799994289875e-02, 8.603999763727188e-02, 8.370000123977661e-02, 8.79800021648407e-02, 9.345000237226486e-02, 1.266400068998362e-01, 9.000000357627869e-02, 8.900000154972076e-02, 1.509999930858612e-01, 1.164000034332275e-01, 8.838000148534775e-02, 1.517799943685532e-01, 1.118199974298477e-01, 9.031999856233597e-02, 9.200000017881393e-02, 1.031000018119812e-01, 8.699999749660492e-02, 8.827999979257591e-02, 9.001000225543983e-02, 1.120999976992607e-01, 9.212999790906906e-02, 1.407999992370605e-01, 1.023899987339973e-01, 8.754000067710876e-02, 1.560000032186508e-01, 8.699999749660492e-02, 8.934000134468079e-02, 8.975999802350998e-02, 8.918000012636185e-02, 9.300000220537186e-02, 1.232599988579702e-01, 9.03400033712389e-02, 8.714000135660172e-02, 1.415600031614304e-01, 9.030000120401382e-02, 9.482000023126602e-02, 1.456699967384338e-01, 7.992000132799149e-02, 8.923999965190887e-02, 1.526000052690506e-01, 8.94400030374527e-02, 9.600000083446503e-02, 9.399999678134918e-02, 8.829999715089798e-02, 1.24949999153614e-01, 8.832000195980072e-02, 8.886999636888504e-02, 1.348599940538406e-01, 1.110000014305115e-01, 9.49999988079071e-02] -senTem_p3.T=[2.931499938964844e+02, 3.395287170410156e+02, 3.605060424804688e+02, 3.629453125e+02, 3.626927490234375e+02, 3.6430126953125e+02, 3.643262634277344e+02, 3.632278137207031e+02, 3.632586669921875e+02, 3.627100830078125e+02, 3.632490539550781e+02, 3.625247497558594e+02, 3.623728637695312e+02, 3.597082214355469e+02, 3.618087768554688e+02, 3.634323425292969e+02, 3.630027465820312e+02, 3.640990295410156e+02, 3.677607421875e+02, 3.653921508789062e+02, 3.644437866210938e+02, 3.636223754882812e+02, 3.636834106445312e+02, 3.628629760742188e+02, 3.632472534179688e+02, 3.641549377441406e+02, 3.627250671386719e+02, 3.586633605957031e+02, 3.605994873046875e+02, 3.627803039550781e+02, 3.627817077636719e+02, 3.626227416992188e+02, 3.652869262695312e+02, 3.646398010253906e+02, 3.634046630859376e+02, 3.637467041015625e+02, 3.636205139160156e+02, 3.627916259765625e+02, 3.631578979492188e+02, 3.650707092285156e+02, 3.634354858398438e+02, 3.602784118652344e+02, 3.617273254394531e+02, 3.649657592773438e+02, 3.649865112304688e+02, 3.652713928222656e+02, 3.651325073242188e+02, 3.663474731445312e+02, 3.645899963378906e+02, 3.626817016601562e+02, 3.627402038574219e+02, 3.638348999023438e+02, 3.635984191894531e+02, 3.637547302246094e+02, 3.642064819335938e+02, 3.625791625976562e+02, 3.613614501953125e+02, 3.6271142578125e+02, 3.630703735351562e+02, 3.636435852050781e+02, 3.632549743652344e+02, 3.655952453613281e+02, 3.642408752441406e+02, 3.643147888183594e+02, 3.630621643066406e+02, 3.633942565917969e+02, 3.637217712402344e+02, 3.631470947265625e+02, 3.631636047363281e+02, 3.63017578125e+02, 3.583387451171875e+02, 3.609111633300781e+02, 3.618898315429688e+02, 3.623825988769531e+02, 3.621368713378906e+02, 3.6558251953125e+02, 3.646879577636719e+02, 3.642505798339844e+02, 3.63774658203125e+02, 3.635689392089844e+02, 3.634325866699219e+02, 3.625254821777344e+02, 3.627122192382812e+02, 3.6224755859375e+02, 3.623190002441406e+02, 3.5812060546875e+02, 3.605949096679688e+02, 3.619792175292969e+02, 3.618244323730469e+02, 3.618493347167969e+02, 3.644619750976562e+02, 3.607390441894531e+02, 3.626247253417969e+02, 3.635038452148438e+02, 3.637508239746094e+02, 3.632485656738281e+02, 3.629729614257812e+02, 3.611511535644531e+02, 3.603399353027344e+02, 3.550472412109375e+02, 3.590050048828125e+02] +senTem_p3.T=[2.931499938964844e+02, 3.3952734375e+02, 3.605065002441406e+02, 3.629452819824219e+02, 3.626939086914062e+02, 3.643012084960938e+02, 3.643263854980469e+02, 3.632277526855469e+02, 3.632583618164062e+02, 3.627100524902344e+02, 3.632489318847656e+02, 3.625246887207031e+02, 3.623724670410156e+02, 3.597074584960938e+02, 3.618088073730469e+02, 3.634325256347656e+02, 3.63002685546875e+02, 3.640989379882812e+02, 3.677605285644531e+02, 3.653919677734375e+02, 3.644443054199219e+02, 3.636224975585938e+02, 3.636840515136719e+02, 3.628638000488281e+02, 3.632466735839844e+02, 3.641552124023438e+02, 3.627252502441406e+02, 3.586635131835938e+02, 3.605997314453125e+02, 3.627807006835938e+02, 3.627813720703125e+02, 3.62622314453125e+02, 3.652867126464844e+02, 3.646392517089844e+02, 3.634044799804688e+02, 3.637460327148438e+02, 3.636204528808594e+02, 3.6279150390625e+02, 3.631579895019531e+02, 3.650704650878906e+02, 3.634354248046875e+02, 3.602782287597656e+02, 3.617275085449219e+02, 3.6496533203125e+02, 3.64986083984375e+02, 3.652715148925781e+02, 3.651311645507812e+02, 3.663473205566406e+02, 3.645899963378906e+02, 3.626818542480469e+02, 3.627411499023438e+02, 3.638352355957031e+02, 3.635982971191406e+02, 3.637546081542969e+02, 3.642064819335938e+02, 3.625771789550781e+02, 3.613615112304688e+02, 3.627115173339844e+02, 3.630694885253906e+02, 3.636433715820312e+02, 3.632549438476562e+02, 3.655950622558594e+02, 3.642408142089844e+02, 3.643145751953125e+02, 3.630621032714844e+02, 3.633939208984375e+02, 3.637217712402344e+02, 3.631470642089844e+02, 3.631632080078125e+02, 3.630171813964844e+02, 3.583387756347656e+02, 3.609110412597656e+02, 3.618904418945312e+02, 3.623829040527344e+02, 3.621370239257812e+02, 3.6558251953125e+02, 3.646880187988281e+02, 3.642495727539062e+02, 3.637746887207031e+02, 3.63569580078125e+02, 3.634325561523438e+02, 3.625254821777344e+02, 3.62712158203125e+02, 3.622475280761719e+02, 3.623187561035156e+02, 3.581210632324219e+02, 3.605946655273438e+02, 3.619798889160156e+02, 3.618243408203125e+02, 3.618492126464844e+02, 3.644618530273438e+02, 3.607390747070312e+02, 3.626243286132812e+02, 3.635044555664062e+02, 3.637502136230469e+02, 3.632483215332031e+02, 3.629731140136719e+02, 3.611517639160156e+02, 3.603399963378906e+02, 3.5504736328125e+02, 3.590053100585938e+02] pip3.port_a.m_flow=[2.899999916553497e-02, 3.18400003015995e-02, 3.158000111579895e-02, 3.950000181794167e-02, 5.448000133037567e-02, 5.449999868869781e-02, 4.044000059366226e-02, 3.602999821305274e-02, 3.324000164866447e-02, 2.899999916553497e-02, 2.910000085830688e-02, 3.01900003105402e-02, 1.635999977588654e-02, 1.714999973773956e-02, 2.005999907851217e-02, 2.005000039935112e-02, 2.22800001502037e-02, 2.593000046908854e-02, 9.021999686956406e-02, 5.499999970197678e-02, 4.4599998742342e-02, 3.654000163078308e-02, 3.413999825716019e-02, 2.799000032246113e-02, 4.85600009560585e-02, 3.950000181794167e-02, 3.522000089287758e-02, 1.816999912261963e-02, 2.188000082969669e-02, 2.099999971687794e-02, 2.099999971687794e-02, 2.298000082373619e-02, 3.643999993801117e-02, 3.813999891281128e-02, 3.863999992609108e-02, 3.015000000596046e-02, 2.93199997395277e-02, 2.934999950230122e-02, 3.109999932348728e-02, 4.261999949812889e-02, 3.90000008046627e-02, 1.97700001299379e-02, 2.663999982178211e-02, 3.252999857068062e-02, 3.576000034809113e-02, 3.889999911189079e-02, 5.352000147104263e-02, 5.895999819040298e-02, 5.683999881148338e-02, 3.299999982118607e-02, 3.950000181794167e-02, 3.400000184774399e-02, 3.339999914169312e-02, 4.078000038862228e-02, 4.896000027656555e-02, 3.000000026077032e-03, 2.400000020861626e-02, 2.687999978661511e-02, 2.48199999332428e-02, 2.878000028431416e-02, 2.759999968111515e-02, 5.437999963760376e-02, 4.492000117897987e-02, 4.538000002503395e-02, 3.500000014901161e-02, 3.599999845027924e-02, 3.799999877810478e-02, 3.700000047683716e-02, 4.055999964475645e-02, 4.199000075459474e-02, 1.860000006854534e-02, 2.040999941527843e-02, 2.12399996817112e-02, 2.133999951183796e-02, 2.400000020861626e-02, 4.850000143051147e-02, 4.416000097990036e-02, 4.30000014603138e-02, 4.224000126123428e-02, 3.700000047683716e-02, 3.299999982118607e-02, 3.299999982118607e-02, 4.05200012028207e-02, 3.799999877810478e-02, 3.971999883651733e-02, 2.03000009059906e-02, 2.294000051915646e-02, 2.277000062167645e-02, 2.243999950587749e-02, 2.400000020861626e-02, 4.8700001090765e-02, 4.30000014603138e-02, 4.4599998742342e-02, 3.799999877810478e-02, 3.751999884843826e-02, 3.290000185370445e-02, 3.463999927043915e-02, 3.612999990582466e-02, 3.90000008046627e-02, 1.999999955296516e-02, 2.400000020861626e-02] -senTem_p4.T=[2.931499938964844e+02, 3.366858215332031e+02, 3.564235229492188e+02, 3.579564208984375e+02, 3.625367126464844e+02, 3.655638427734375e+02, 3.616874389648438e+02, 3.632928161621094e+02, 3.605806274414062e+02, 3.602784423828125e+02, 3.611571044921875e+02, 3.592423706054688e+02, 3.195120849609375e+02, 3.035610656738281e+02, 2.972615966796875e+02, 2.947737731933594e+02, 2.93791259765625e+02, 2.934032592773438e+02, 3.652035827636719e+02, 3.655263366699219e+02, 3.650528869628906e+02, 3.6012890625e+02, 3.342782897949219e+02, 3.09392333984375e+02, 2.995645446777344e+02, 2.956833190917969e+02, 2.941504516601562e+02, 2.935451049804688e+02, 2.933060302734375e+02, 2.932116394042969e+02, 2.931743469238281e+02, 2.931596069335938e+02, 2.9315380859375e+02, 3.639096069335938e+02, 3.626955261230469e+02, 3.598946228027344e+02, 3.444324035644531e+02, 3.134024353027344e+02, 3.01148193359375e+02, 2.963086547851562e+02, 2.943974609375e+02, 3.605017395019532e+02, 3.599940490722656e+02, 3.615897521972656e+02, 3.622982482910156e+02, 3.618088989257812e+02, 3.652619934082031e+02, 3.636159973144531e+02, 3.48018798828125e+02, 3.635457153320312e+02, 3.644735107421875e+02, 3.652146301269531e+02, 3.588826599121094e+02, 3.5959033203125e+02, 3.466001281738281e+02, 3.148269653320312e+02, 3.577508239746094e+02, 3.598650817871093e+02, 3.590650939941406e+02, 3.599540710449219e+02, 3.626537780761719e+02, 3.66704833984375e+02, 3.657116394042969e+02, 3.662279663085938e+02, 3.62611328125e+02, 3.613322448730469e+02, 3.598489379882812e+02, 3.617061157226562e+02, 3.637246093749999e+02, 3.265067138671878e+02, 3.063232727050781e+02, 2.983525085449219e+02, 2.952045288085938e+02, 2.939613647460938e+02, 2.934704284667969e+02, 3.517348327636719e+02, 3.653919982910156e+02, 3.652127075195312e+02, 3.642733459472656e+02, 3.647093200683594e+02, 3.629367370605469e+02, 3.63597930908203e+02, 3.619982604980466e+02, 3.595983581542969e+02, 3.227667846679688e+02, 3.048462219238281e+02, 2.977691040039062e+02, 2.949742126464844e+02, 2.938704223632812e+02, 2.934345397949219e+02, 3.632616577148438e+02, 3.609111633300781e+02, 3.653220825195312e+02, 3.648883361816406e+02, 3.619601440429688e+02, 3.631670227050781e+02, 3.627832946777344e+02, 3.589775085449219e+02, 3.331012573242188e+02, 3.089277648925781e+02, 2.993812866210938e+02] +senTem_p4.T=[2.931499938964844e+02, 3.366851196289062e+02, 3.564241638183594e+02, 3.5795654296875e+02, 3.625367431640625e+02, 3.655662231445312e+02, 3.616889038085938e+02, 3.632932739257812e+02, 3.605801086425781e+02, 3.602783508300781e+02, 3.611570739746094e+02, 3.592384948730469e+02, 3.195121765136719e+02, 3.035610961914062e+02, 2.972616271972656e+02, 2.947737731933594e+02, 2.93791259765625e+02, 2.934032592773438e+02, 3.652037048339844e+02, 3.655265197753906e+02, 3.650532836914062e+02, 3.601288146972656e+02, 3.342758178710938e+02, 3.09391845703125e+02, 2.995643005371094e+02, 2.956831665039062e+02, 2.94150390625e+02, 2.935450744628906e+02, 2.933060302734375e+02, 2.932116088867188e+02, 2.931743469238281e+02, 2.931596069335938e+02, 2.9315380859375e+02, 3.639087524414062e+02, 3.626953430175781e+02, 3.598929138183594e+02, 3.44434326171875e+02, 3.134031066894531e+02, 3.011484680175781e+02, 2.963087463378906e+02, 2.943974609375e+02, 3.605021972656251e+02, 3.599942016601562e+02, 3.615893859863281e+02, 3.62298095703125e+02, 3.618089599609375e+02, 3.652627258300781e+02, 3.636177368164062e+02, 3.480115356445312e+02, 3.635460510253906e+02, 3.644714660644531e+02, 3.652153625488281e+02, 3.588824768066406e+02, 3.595905151367188e+02, 3.4659912109375e+02, 3.148255920410156e+02, 3.577513427734376e+02, 3.598650817871093e+02, 3.590640258789062e+02, 3.599540100097656e+02, 3.626536560058594e+02, 3.667037658691406e+02, 3.657115478515625e+02, 3.662282104492188e+02, 3.626124877929688e+02, 3.613316955566406e+02, 3.598489990234375e+02, 3.617063903808594e+02, 3.637241821289061e+02, 3.265096130371097e+02, 3.063243713378906e+02, 2.983529357910156e+02, 2.952047729492188e+02, 2.939614868164062e+02, 2.934704895019531e+02, 3.517341918945312e+02, 3.653921203613281e+02, 3.652114868164062e+02, 3.642728271484375e+02, 3.647109375e+02, 3.629362487792969e+02, 3.635978698730468e+02, 3.619991455078123e+02, 3.595984497070312e+02, 3.227661437988281e+02, 3.048460693359375e+02, 2.9776904296875e+02, 2.949741516113281e+02, 2.938704223632812e+02, 2.934345092773438e+02, 3.632616271972656e+02, 3.609118957519531e+02, 3.653222351074219e+02, 3.648883056640625e+02, 3.619591674804688e+02, 3.631663818359375e+02, 3.627836303710938e+02, 3.589779663085938e+02, 3.330983276367188e+02, 3.089263305664062e+02, 2.9938037109375e+02] pip4.port_a.m_flow=[1.30000002682209e-02, 1.271000038832426e-02, 1.200000010430813e-02, 1.113000046461821e-02, 3.260000050067902e-02, 3.060000017285347e-02, 1.099999994039536e-02, 2.500000037252903e-02, 1.499999966472387e-02, 1.400000043213367e-02, 1.339999958872795e-02, 2.090000081807375e-03, 4.799999878741801e-04, 0e+00, 0e+00, 6.500000017695129e-04, 3.600000054575503e-04, 1.000000047497451e-03, 2.400000020861626e-02, 3.700000047683716e-02, 3.159999847412109e-02, 1.30000002682209e-02, 6.200000061653554e-04, 0e+00, 0e+00, 7.50000006519258e-04, 0e+00, 0e+00, 0e+00, 0e+00, 3.000000142492354e-04, 9.899999713525176e-04, 7.200000109151006e-04, 2.342999912798405e-02, 2.057999931275835e-02, 1.154999993741512e-02, 4.400000034365803e-04, 7.300000288523734e-04, 1.000000047497451e-03, 0e+00, 0e+00, 1.21099995449185e-02, 1.400000043213367e-02, 1.35300001129508e-02, 1.499999966472387e-02, 1.400000043213367e-02, 3.299999982118607e-02, 2.96000000089407e-02, 5.200000014156103e-03, 2.542000077664852e-02, 3.750000149011612e-02, 3.178999945521355e-02, 1.099999994039536e-02, 1.425999961793423e-02, 0e+00, 1.649999991059303e-03, 1.228000037372132e-02, 1.30000002682209e-02, 1.035999972373247e-02, 1.200000010430813e-02, 1.999999955296516e-02, 6.100000068545341e-02, 4.707999899983406e-02, 5.099999904632568e-02, 2.703999914228916e-02, 1.759999990463257e-02, 1.31400004029274e-02, 1.600999943912029e-02, 2.652000077068702e-02, 1.000000047497451e-03, 0e+00, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 2.15000007301569e-02, 3.440000116825104e-02, 4.171000048518181e-02, 3.276000171899796e-02, 2.999999932944775e-02, 1.520000025629997e-02, 2.135000005364321e-02, 2.835999988019544e-02, 1.765000075101852e-02, 0e+00, 6.500000017695129e-04, 5.999999848427251e-05, 0e+00, 1.000000047497451e-03, 1.000000047497451e-03, 2.400000020861626e-02, 3.610000014305115e-02, 5.299999937415123e-02, 3.599999845027924e-02, 2.309999987483025e-02, 1.675000041723251e-02, 1.200000010430813e-02, 1.30000002682209e-02, 1.000000047497451e-03, 0e+00, 0e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FixedResistances_Validation_PlugFlowPipes_PlugFlowAIT.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FixedResistances_Validation_PlugFlowPipes_PlugFlowAIT.txt index b0ad02b083..d12affc29e 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FixedResistances_Validation_PlugFlowPipes_PlugFlowAIT.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FixedResistances_Validation_PlugFlowPipes_PlugFlowAIT.txt @@ -1,17 +1,17 @@ -last-generated=2021-05-19 +last-generated=2022-07-06 statistics-simulation= { "linear": " ", "nonlinear": " ", - "number of continuous time states": "23", + "number of continuous time states": "31", "numerical Jacobians": "0" } time=[0e+00, 6.039e+05] -senTem_p1.T=[2.931499938964844e+02, 3.724581268310547e+02, 3.715302020263672e+02, 3.701357958984375e+02, 3.704126135253906e+02, 3.716493711782934e+02, 3.713182342529297e+02, 3.721553646850586e+02, 3.724386755371094e+02, 3.735652764892578e+02, 3.710003021240234e+02, 3.733089306348991e+02, 3.7344357421875e+02, 3.741314227294922e+02, 3.767000982666016e+02, 3.745357437133789e+02, 3.752001879882812e+02, 3.74475622253418e+02, 3.711112579345703e+02, 3.710275473022461e+02, 3.709193237304688e+02, 3.723273977661133e+02, 3.748766870117187e+02, 3.747291644287109e+02, 3.744715405273437e+02, 3.721491317749023e+02, 3.728539416503907e+02, 3.739785470581054e+02, 3.751534594726562e+02, 3.760338311767578e+02, 3.754607360839844e+02, 3.758729315185547e+02, 3.72432919921875e+02, 3.710003652954102e+02, 3.715857763671875e+02, 3.737298583984375e+02, 3.735079370117188e+02, 3.747269381713867e+02, 3.75422837524414e+02, 3.718494128417969e+02, 3.716603942871094e+02, 3.720792123413086e+02, 3.750192462158203e+02, 3.740247091674805e+02, 3.734884545898437e+02, 3.733188217163086e+02, 3.708895654296875e+02, 3.709322538351711e+02, 3.712478679333183e+02, 3.694682919311524e+02, 3.729007873535156e+02, 3.740004580688476e+02, 3.715444482421875e+02, 3.727553045654297e+02, 3.727538696289063e+02, 3.73163687133789e+02, 3.727593530273438e+02, 3.74133765258789e+02, 3.740788037109375e+02, 3.739025204467773e+02, 3.735798522949219e+02, 3.710448110961914e+02, 3.709968853759765e+02, 3.717539276123047e+02, 3.719480627441406e+02, 3.727831527709961e+02, 3.718999597167969e+02, 3.709010437011719e+02, 3.723437646484375e+02, 3.719000244140625e+02, 3.730502990722656e+02, 3.739455996704102e+02, 3.761420727539062e+02, 3.740278530883789e+02, 3.737723443603516e+02, 3.713257522583008e+02, 3.722544641113281e+02, 3.723020809936523e+02, 3.715305114746094e+02, 3.726900784301758e+02, 3.709794189453125e+02, 3.724469418334961e+02, 3.703362988281251e+02, 3.701361560058594e+02, 3.700807275390625e+02, 3.733541839599609e+02, 3.755224731445313e+02, 3.748534317016602e+02, 3.756522607421875e+02, 3.719871194458008e+02, 3.689716827392578e+02, 3.69069211730957e+02, 3.716085620117187e+02, 3.717421649169922e+02, 3.731394989013672e+02, 3.718660263061523e+02, 3.703450219726562e+02, 3.70482778930664e+02, 3.679151007080078e+02, 3.701659848022461e+02, 3.73e+02] +senTem_p1.T=[2.931499938964844e+02, 3.724580606079102e+02, 3.715296978759766e+02, 3.70135383605957e+02, 3.704133801269531e+02, 3.716498295802464e+02, 3.713192388916016e+02, 3.721543008422851e+02, 3.724392346191406e+02, 3.735657995605468e+02, 3.710025268554688e+02, 3.733089605720059e+02, 3.734440270996094e+02, 3.741327420043945e+02, 3.767000469970703e+02, 3.745359283447266e+02, 3.752001489257813e+02, 3.744757736206055e+02, 3.711109313964844e+02, 3.71026943359375e+02, 3.709192199707031e+02, 3.723277642822266e+02, 3.748758020019531e+02, 3.747298593139648e+02, 3.744699597167969e+02, 3.721499481201172e+02, 3.728534338378906e+02, 3.73978840637207e+02, 3.751534960937499e+02, 3.760335052490234e+02, 3.754604766845703e+02, 3.758723062133789e+02, 3.724317907714844e+02, 3.710001565551758e+02, 3.715852874755859e+02, 3.737306457519531e+02, 3.735083117675781e+02, 3.747271963500976e+02, 3.754225775146484e+02, 3.718486474609375e+02, 3.716602783203125e+02, 3.720782049560547e+02, 3.750195263671875e+02, 3.740244421386719e+02, 3.734879602050781e+02, 3.733199295043945e+02, 3.708894207763672e+02, 3.709328614826444e+02, 3.712478719389051e+02, 3.694687982177734e+02, 3.728997344970703e+02, 3.740003134155273e+02, 3.715441223144531e+02, 3.727549472045898e+02, 3.727538507080078e+02, 3.731637405395508e+02, 3.727596765136719e+02, 3.741323745727539e+02, 3.740794982910156e+02, 3.739027963256836e+02, 3.735809387207031e+02, 3.710448739624023e+02, 3.709966357421875e+02, 3.717538729858398e+02, 3.719483532714844e+02, 3.72784780883789e+02, 3.718998699951172e+02, 3.709001382446289e+02, 3.723440979003906e+02, 3.718999969482422e+02, 3.730498901367188e+02, 3.739454815673828e+02, 3.761439074707031e+02, 3.740273138427734e+02, 3.73771875e+02, 3.713251571655273e+02, 3.722558032226563e+02, 3.723023181152344e+02, 3.715303564453125e+02, 3.726905633544922e+02, 3.709795959472656e+02, 3.724469705200195e+02, 3.703361511230469e+02, 3.701363577270508e+02, 3.700805126953125e+02, 3.733552124023437e+02, 3.755230914306641e+02, 3.748536517333985e+02, 3.756516784667969e+02, 3.719855706787109e+02, 3.689723754882813e+02, 3.690697381591797e+02, 3.716083947753907e+02, 3.717452767944336e+02, 3.731396643066406e+02, 3.718656127929688e+02, 3.703449499511719e+02, 3.704821423339844e+02, 3.679151293945313e+02, 3.701653146362304e+02, 3.73e+02] pip0.port_a.m_flow=[2.666699981689453e+01, 2.702643013000488e+01, 2.619314010620117e+01, 2.5065e+01, 2.58597201538086e+01, 2.732485150310383e+01, 2.815e+01, 2.6485e+01, 2.620644012451172e+01, 3.106512992858887e+01, 3.323359985351563e+01, 3.634826709526906e+01, 3.926e+01, 4.074358985900879e+01, 4.019998001098627e+01, 4.193354988098145e+01, 3.70731201171875e+01, 3.384199981689457e+01, 3.163025985717773e+01, 3.606800018310547e+01, 3.016660003662109e+01, 2.789497001647949e+01, 2.957300018310547e+01, 2.966699981689453e+01, 2.933968017578125e+01, 3.216674995422363e+01, 2.714300018310547e+01, 2.994338996887207e+01, 2.869308013916019e+01, 2.857699981689453e+01, 3.066699981689453e+01, 3.065865982055664e+01, 3.307347991943359e+01, 2.833162002563477e+01, 2.885638015747071e+01, 2.651694984436035e+01, 2.808652008056641e+01, 2.695491004943848e+01, 2.702333999633789e+01, 2.412e+01, 2.00333999633789e+01, 1.803663002014159e+01, 1.745693984985352e+01, 1.893199981689453e+01, 1.849308013916016e+01, 1.979970016479492e+01, 1.945322006225586e+01, 2.044979029788247e+01, 2.123971710678603e+01, 2.135199981689453e+01, 2e+01, 2.2685e+01, 2.323363983154297e+01, 2.805699981689453e+01, 3.482e+01, 3.226635017395019e+01, 3.481300018310534e+01, 4.221000000000046e+01, 4.464306015014648e+01, 3.7e+01, 3.796679992675782e+01, 3.048800018310547e+01, 2.945e+01, 2.789699981689453e+01, 2.472e+01, 2.519189987182617e+01, 2.66463801574707e+01, 2.319162002563477e+01, 2.258699981689463e+01, 2.31619998168945e+01, 2.306679992675781e+01, 2.166699981689453e+01, 2.420695983886719e+01, 2.732699981689453e+01, 2.752982009887695e+01, 2.89997501373291e+01, 2.982667999267578e+01, 2.983300018310547e+01, 2.861699981689453e+01, 3.2365e+01, 2.730019989013672e+01, 2.701000000000007e+01, 2.842673995971682e+01, 2.341030982971191e+01, 2.078e+01, 1.987509994506836e+01, 1.900304016113281e+01, 1.917982009887695e+01, 2.005300018310547e+01, 2.083300018310547e+01, 2.013330001831055e+01, 2.01582600402832e+01, 1.992656005859375e+01, 2.003e+01, 2.133300018310547e+01, 2.531684989929199e+01, 3.111355987548828e+01, 3.028170997619629e+01, 2.68498600769043e+01, 2.940856986999512e+01, 3.083300018310547e+01] -senTem_p2.T=[2.931499938964844e+02, 3.300694564819336e+02, 3.645767260742188e+02, 3.651322540283203e+02, 3.642048083496094e+02, 3.638063073379656e+02, 3.650029217529297e+02, 3.636029306030273e+02, 3.65030029296875e+02, 3.651989739990235e+02, 3.647083221435547e+02, 3.642237802906698e+02, 3.649343347167969e+02, 3.653101287841797e+02, 3.653175018310547e+02, 3.684773056030273e+02, 3.67428623046875e+02, 3.666733279418946e+02, 3.674505328369141e+02, 3.644964538574219e+02, 3.655367797851562e+02, 3.649850250244141e+02, 3.64724839477539e+02, 3.65522412109375e+02, 3.55734912109375e+02, 3.648203430175781e+02, 3.642295031738281e+02, 3.637985903930664e+02, 3.635316638183594e+02, 3.678238110351563e+02, 3.677299255371094e+02, 3.669131188964844e+02, 3.673782592773438e+02, 3.649786660766601e+02, 3.646503411865234e+02, 3.641973937988281e+02, 3.640198791503906e+02, 3.633602609252929e+02, 3.657994140625e+02, 3.649703399658203e+02, 3.646111145019531e+02, 3.64707727355957e+02, 3.641632525634766e+02, 3.680263623046875e+02, 3.658775659179688e+02, 3.668393676757813e+02, 3.6543486328125e+02, 3.651314631594887e+02, 3.639318883138302e+02, 3.638685137939453e+02, 3.620458221435547e+02, 3.634024972534179e+02, 3.636762915039063e+02, 3.645434097290039e+02, 3.638584716796875e+02, 3.643974273681641e+02, 3.651933984375001e+02, 3.654148031616211e+02, 3.655274951171875e+02, 3.670262268066406e+02, 3.662421997070313e+02, 3.655527392578125e+02, 3.650830010986328e+02, 3.647564517211914e+02, 3.643008825683594e+02, 3.645420211791992e+02, 3.657429760742187e+02, 3.641311849975586e+02, 3.629664318847657e+02, 3.636872924804687e+02, 3.641755249023437e+02, 3.646605307006836e+02, 3.657673278808594e+02, 3.673052642822266e+02, 3.650833813476563e+02, 3.667091369628906e+02, 3.643310668945313e+02, 3.646489825439453e+02, 3.644781433105469e+02, 3.63593392944336e+02, 3.6548583984375e+02, 3.643275109863282e+02, 3.646296710205079e+02, 3.623220367431641e+02, 3.63401748046875e+02, 3.627076904296875e+02, 3.634695703125e+02, 3.673056329345703e+02, 3.659172424316406e+02, 3.647504898071289e+02, 3.657658996582031e+02, 3.613161291503906e+02, 3.617733654785156e+02, 3.649919747924804e+02, 3.649791522216797e+02, 3.657150375366211e+02, 3.64275341796875e+02, 3.624281149291992e+02, 3.621559478759766e+02, 3.610891641235352e+02, 3.60423095703125e+02] +senTem_p2.T=[2.931499938964844e+02, 3.267019125366211e+02, 3.646437640380859e+02, 3.650527053833008e+02, 3.64100166015625e+02, 3.638284206725452e+02, 3.649741900634766e+02, 3.636399908447266e+02, 3.652434460449219e+02, 3.652059857177734e+02, 3.645126556396484e+02, 3.64345165069212e+02, 3.650266943359375e+02, 3.651791979980469e+02, 3.651344549560547e+02, 3.686297286987304e+02, 3.673204699707031e+02, 3.668120620727539e+02, 3.673042028808593e+02, 3.644882928466797e+02, 3.657065856933594e+02, 3.649092681884766e+02, 3.647395703125e+02, 3.653732580566406e+02, 3.555819799804688e+02, 3.648610992431641e+02, 3.64288408203125e+02, 3.636709594726562e+02, 3.635826306152344e+02, 3.678551351928711e+02, 3.677671875e+02, 3.669168762207031e+02, 3.673703576660157e+02, 3.650592761230469e+02, 3.646924365234375e+02, 3.641088592529297e+02, 3.63976806640625e+02, 3.62818405456543e+02, 3.661841424560547e+02, 3.650109851074219e+02, 3.645967895507812e+02, 3.647198837280274e+02, 3.642938677978516e+02, 3.680135116577148e+02, 3.657934631347656e+02, 3.668793991088867e+02, 3.655184869384765e+02, 3.652112526422815e+02, 3.639874821580271e+02, 3.638585690307617e+02, 3.620424194335938e+02, 3.630776168823242e+02, 3.634628601074219e+02, 3.647478927612304e+02, 3.637721734619141e+02, 3.644957595825196e+02, 3.652847949218751e+02, 3.652329913330078e+02, 3.654025396728516e+02, 3.669444815063476e+02, 3.662315246582031e+02, 3.656852383422852e+02, 3.651447259521485e+02, 3.645800021362305e+02, 3.643118347167969e+02, 3.644670989990234e+02, 3.656226751708984e+02, 3.639150964355469e+02, 3.629677087402344e+02, 3.636524325561523e+02, 3.641079742431641e+02, 3.646775933837891e+02, 3.658386413574219e+02, 3.671386965942383e+02, 3.651491589355469e+02, 3.668381195068359e+02, 3.641642224121094e+02, 3.646511184692383e+02, 3.645490844726563e+02, 3.635978503417969e+02, 3.654266296386719e+02, 3.642648248291015e+02, 3.645774285888672e+02, 3.624110977172851e+02, 3.634297668457031e+02, 3.626089645385742e+02, 3.633278021240234e+02, 3.673806204223633e+02, 3.658301989746094e+02, 3.646093612670899e+02, 3.661270812988281e+02, 3.612623403930664e+02, 3.618466589355469e+02, 3.649543325805664e+02, 3.649546112060547e+02, 3.657193710327148e+02, 3.641586462402344e+02, 3.624559628295899e+02, 3.623808642578125e+02, 3.610607873535157e+02, 3.599902954101562e+02] pip2.port_a.m_flow=[1.679999977350235e-01, 9.177000068128109e-02, 9.448000088334084e-02, 1.549900056421757e-01, 1.092399999499321e-01, 9.229999552042481e-02, 1.07980001270771e-01, 8.33299968391656e-02, 1.281199997663498e-01, 1.245299975574017e-01, 7.699999958276749e-02, 7.900000363588333e-02, 1.204800027608871e-01, 8.776999905705452e-02, 8.24800023436545e-02, 1.251500051468611e-01, 8.595999866724015e-02, 8.990000091493243e-02, 9.781999826431274e-02, 8.549000188708306e-02, 1.64000004529953e-01, 1.550000011920929e-01, 9.457999899983406e-02, 8.449000079184771e-02, 8.936000138521194e-02, 6.724999938160181e-02, 1.238000030815601e-01, 8.299999684095383e-02, 8.351999878883375e-02, 1.135200006514788e-01, 8.209999725222587e-02, 1.509999930858612e-01, 8.799999952316284e-02, 8.071000285446644e-02, 1.440599988400913e-01, 8.284999765455722e-02, 7.555999889969825e-02, 3.122999988496303e-02, 1.556800051033497e-01, 8.267000038176775e-02, 8.500000238418579e-02, 7.900000363588333e-02, 8.500000089406967e-02, 1.225500025600195e-01, 8.128000259399414e-02, 1.410999942570925e-01, 9.081999748945237e-02, 1.139000046479551e-01, 8.843998563679761e-02, 8.799999952316284e-02, 7.950000092387199e-02, 3.038000037893653e-02, 8.604000061750412e-02, 8.370000019669532e-02, 8.798000201582909e-02, 9.345000311732292e-02, 1.266400063037897e-01, 9.000000357627869e-02, 8.900000154972076e-02, 1.509999930858612e-01, 1.163999974727631e-01, 8.838000029325485e-02, 1.517799971997738e-01, 1.118199966847897e-01, 9.032000094652176e-02, 9.200000017881393e-02, 1.030999964475632e-01, 8.699999749660492e-02, 8.828000009059912e-02, 9.001000352203853e-02, 1.120999984443188e-01, 9.212999910116196e-02, 1.408000016212463e-01, 1.023899997025728e-01, 8.75399985909462e-02, 1.560000032186508e-01, 8.699999749660492e-02, 8.934000223875045e-02, 8.976000025868416e-02, 8.918000124394894e-02, 9.29999977350235e-02, 1.232599979639006e-01, 9.033999845385571e-02, 8.713999778032303e-02, 1.415600004792213e-01, 9.029999934136868e-02, 9.481999889016152e-02, 1.456699999421835e-01, 7.992000192403793e-02, 8.924000345170498e-02, 1.525999970734119e-01, 8.943999789655209e-02, 9.600000083446503e-02, 9.399999678134918e-02, 8.829999819397927e-02, 1.249500006437302e-01, 8.832000017166138e-02, 8.887000128626824e-02, 1.348600018024445e-01, 1.110000014305115e-01, 9.49999988079071e-02] -senTem_p3.T=[2.931499938964844e+02, 3.157639779663086e+02, 3.628961157226562e+02, 3.625634191894531e+02, 3.628280920410156e+02, 3.642746131174672e+02, 3.643301715087891e+02, 3.629449758911133e+02, 3.638227624511719e+02, 3.626616024780274e+02, 3.629809814453125e+02, 3.632752877294722e+02, 3.626581994628907e+02, 3.591112014770508e+02, 3.60471416015625e+02, 3.63984733581543e+02, 3.630112731933594e+02, 3.638231982421875e+02, 3.682821472167969e+02, 3.652830053710937e+02, 3.643951599121094e+02, 3.629880462646485e+02, 3.638500341796875e+02, 3.633632238769531e+02, 3.621289880371094e+02, 3.645136566162109e+02, 3.626157177734375e+02, 3.580857717895508e+02, 3.600770446777344e+02, 3.623463110351562e+02, 3.635609466552734e+02, 3.619252807617187e+02, 3.66105810546875e+02, 3.647665057373047e+02, 3.631591284179688e+02, 3.629514556884766e+02, 3.633137524414062e+02, 3.625676617431641e+02, 3.635595727539063e+02, 3.65986266784668e+02, 3.637702697753906e+02, 3.594197662353515e+02, 3.618732611083984e+02, 3.643942227172852e+02, 3.652081127929687e+02, 3.653201766967774e+02, 3.649075701904297e+02, 3.665565246582031e+02, 3.646898672706079e+02, 3.627787847900391e+02, 3.618873291015625e+02, 3.636957647705078e+02, 3.628379028320313e+02, 3.64271572265625e+02, 3.642259149169922e+02, 3.640437744140625e+02, 3.612955773925781e+02, 3.617425448608398e+02, 3.624999499511719e+02, 3.621934616088867e+02, 3.628943664550781e+02, 3.661615194702148e+02, 3.641636743164062e+02, 3.635083047485352e+02, 3.634461560058594e+02, 3.634436447143555e+02, 3.638649206542969e+02, 3.630816534423828e+02, 3.627385021972656e+02, 3.633320492553711e+02, 3.5755439453125e+02, 3.603624673461914e+02, 3.620710461425781e+02, 3.617958892822265e+02, 3.622081848144531e+02, 3.656009979248047e+02, 3.644665747070313e+02, 3.642823315429687e+02, 3.643674713134766e+02, 3.628764926147461e+02, 3.639660827636719e+02, 3.616870986938477e+02, 3.63630484008789e+02, 3.617998104858398e+02, 3.620080578613281e+02, 3.579165893554688e+02, 3.588903344726563e+02, 3.626590600585938e+02, 3.616927685546875e+02, 3.614779675292968e+02, 3.649450866699219e+02, 3.610839321899414e+02, 3.615494494628906e+02, 3.642708270263672e+02, 3.642966577148438e+02, 3.631521011352539e+02, 3.630218957519531e+02, 3.616241604614258e+02, 3.61082607421875e+02, 3.550759548950195e+02, 3.563623962402344e+02] +senTem_p3.T=[2.931499938964844e+02, 3.099012582397461e+02, 3.629156591796875e+02, 3.625586804199219e+02, 3.629883862304687e+02, 3.643017065381507e+02, 3.642637182617187e+02, 3.629935192871094e+02, 3.638885473632812e+02, 3.626609820556641e+02, 3.628503692626953e+02, 3.632840215012087e+02, 3.624128271484375e+02, 3.592464291381836e+02, 3.605394647216797e+02, 3.640419082641602e+02, 3.629797021484375e+02, 3.63885859375e+02, 3.684331695556641e+02, 3.653071835327148e+02, 3.644791564941406e+02, 3.627924780273437e+02, 3.638227935791016e+02, 3.631447009277344e+02, 3.619807141113281e+02, 3.647021942138672e+02, 3.626777874755859e+02, 3.57816897277832e+02, 3.601632019042969e+02, 3.622113125610351e+02, 3.634744506835938e+02, 3.61909857788086e+02, 3.662144384765625e+02, 3.648458157348633e+02, 3.63137666015625e+02, 3.628204620361328e+02, 3.632488586425781e+02, 3.625931982421875e+02, 3.63622265625e+02, 3.658374493408203e+02, 3.638906555175781e+02, 3.59199390258789e+02, 3.620084948730469e+02, 3.644327291870117e+02, 3.652036547851562e+02, 3.653930435180664e+02, 3.651409765625e+02, 3.665105284099337e+02, 3.647221592537467e+02, 3.626692471313477e+02, 3.619329528808594e+02, 3.636581326293945e+02, 3.625832580566406e+02, 3.644839669799805e+02, 3.641551538085938e+02, 3.636354690551758e+02, 3.612196911621094e+02, 3.617074053955077e+02, 3.623927618408203e+02, 3.618972543334961e+02, 3.628151184082031e+02, 3.662647030639648e+02, 3.640484051513672e+02, 3.63508742980957e+02, 3.63420556640625e+02, 3.633345962524414e+02, 3.638723547363281e+02, 3.629380709838867e+02, 3.627249108886719e+02, 3.633160171508789e+02, 3.578636108398438e+02, 3.604331448364258e+02, 3.621861547851562e+02, 3.61607248840332e+02, 3.623823858642578e+02, 3.657136306762695e+02, 3.643216979980469e+02, 3.643291537475586e+02, 3.644289154052734e+02, 3.629137600708008e+02, 3.639032165527344e+02, 3.616285168457031e+02, 3.636868585205078e+02, 3.619285549926758e+02, 3.619800903320312e+02, 3.578669982910156e+02, 3.588459240722656e+02, 3.626557794189453e+02, 3.615746362304687e+02, 3.61463083190918e+02, 3.650927551269531e+02, 3.610709588623047e+02, 3.616655139160156e+02, 3.64170908203125e+02, 3.642647540283203e+02, 3.631005020141602e+02, 3.630283605957031e+02, 3.617325866699219e+02, 3.611949774169922e+02, 3.554167883300781e+02, 3.5588916015625e+02] pip3.port_a.m_flow=[2.899999916553497e-02, 3.183999963104725e-02, 3.158000066876412e-02, 3.949999943375587e-02, 5.447999909520149e-02, 5.449999352181279e-02, 4.043999917805195e-02, 3.602999851107597e-02, 3.323999926447868e-02, 2.899999916553497e-02, 2.909999918192625e-02, 3.018999815645823e-02, 1.635999993886799e-02, 1.715000052005053e-02, 2.005999956279991e-02, 2.00499995611608e-02, 2.227999992668629e-02, 2.593000052496789e-02, 9.022000297904015e-02, 5.499999970197678e-02, 4.460000023245812e-02, 3.653999853879213e-02, 3.413999930024147e-02, 2.799000024795532e-02, 4.855999872088432e-02, 3.950000088661909e-02, 3.52200011909008e-02, 1.816999925300479e-02, 2.187999986112121e-02, 2.099999971687794e-02, 2.099999971687794e-02, 2.298000004142523e-02, 3.6440000385046e-02, 3.814000066369772e-02, 3.86400002241143e-02, 3.014999935403466e-02, 2.932000026106834e-02, 2.93500005826354e-02, 3.109999947249889e-02, 4.261999953538179e-02, 3.90000008046627e-02, 1.9769999515265e-02, 2.664000064134598e-02, 3.253000061959029e-02, 3.5759998857975e-02, 3.890000078827142e-02, 5.352000072598458e-02, 5.89599985113556e-02, 5.683999345929337e-02, 3.299999982118607e-02, 3.949999995529652e-02, 3.400000184774399e-02, 3.339999973773956e-02, 4.078000109642744e-02, 4.895999997854233e-02, 3.000000026077032e-03, 2.400000020861626e-02, 2.687999980524156e-02, 2.482000034302473e-02, 2.877999933436513e-02, 2.760000079870224e-02, 5.437999960035086e-02, 4.492000177502632e-02, 4.537999913096428e-02, 3.500000014901161e-02, 3.599999845027924e-02, 3.799999877810478e-02, 3.700000047683716e-02, 4.055999919772161e-02, 4.198999945074313e-02, 1.859999932348728e-02, 2.04099996201694e-02, 2.1239999756217e-02, 2.133999977260828e-02, 2.400000020861626e-02, 4.849999863654375e-02, 4.415999978780746e-02, 4.30000014603138e-02, 4.224000133574009e-02, 3.700000047683716e-02, 3.299999982118607e-02, 3.299999982118607e-02, 4.052000023424522e-02, 3.799999877810478e-02, 3.97200009226799e-02, 2.0299999602139e-02, 2.294000003486872e-02, 2.277000000700355e-02, 2.243999995291233e-02, 2.400000020861626e-02, 4.869999885559082e-02, 4.30000014603138e-02, 4.460000112652779e-02, 3.799999877810478e-02, 3.75200005620718e-02, 3.290000166743993e-02, 3.464000135660172e-02, 3.612999871373176e-02, 3.90000008046627e-02, 1.999999955296516e-02, 2.400000020861626e-02] -senTem_p4.T=[2.931499938964844e+02, 3.11556081237793e+02, 3.582847418212891e+02, 3.571484097290039e+02, 3.621512609863281e+02, 3.651814135813813e+02, 3.629170593261719e+02, 3.623942575073243e+02, 3.609192687988281e+02, 3.59990591430664e+02, 3.610169525146484e+02, 3.61777243333714e+02, 3.206459204101562e+02, 3.040006756591797e+02, 2.974304736328125e+02, 2.948432479858399e+02, 2.938186779785156e+02, 2.934136669921875e+02, 3.656162896728516e+02, 3.654136666870117e+02, 3.650336059570312e+02, 3.600251431274414e+02, 3.347142797851562e+02, 3.09561506652832e+02, 2.99620048828125e+02, 2.957089462280273e+02, 2.941611236572265e+02, 2.93548896484375e+02, 2.933075061035156e+02, 2.932122756958008e+02, 2.931745788574219e+02, 2.931596859741211e+02, 2.931538403320312e+02, 3.640938891601563e+02, 3.62110698852539e+02, 3.598757125854492e+02, 3.448840063476562e+02, 3.135701223754883e+02, 3.0120099609375e+02, 2.963355068969727e+02, 2.944082702636719e+02, 3.607705349731445e+02, 3.597484417724609e+02, 3.60911195678711e+02, 3.624089123535156e+02, 3.619295394897461e+02, 3.647882177734375e+02, 3.664097948291634e+02, 3.489550580098943e+02, 3.638496759033203e+02, 3.623935394287109e+02, 3.650097393798828e+02, 3.583991723632813e+02, 3.59660210571289e+02, 3.483855297851562e+02, 3.161169281005859e+02, 3.576380346679687e+02, 3.584799197387695e+02, 3.587289849853516e+02, 3.584128311157227e+02, 3.611205017089844e+02, 3.665758383178711e+02, 3.658844567871094e+02, 3.662968768310547e+02, 3.630179846191406e+02, 3.622084716796875e+02, 3.599593524169922e+02, 3.619779479980469e+02, 3.631161926269531e+02, 3.274035739135745e+02, 3.067040466308594e+02, 2.9850412109375e+02, 2.95261640625e+02, 2.939842895507812e+02, 2.93479794921875e+02, 3.365509414672852e+02, 3.656642797851562e+02, 3.653867681884765e+02, 3.648684759521485e+02, 3.641841525268555e+02, 3.644638732910156e+02, 3.630449194335937e+02, 3.610236370849608e+02, 3.59083291015625e+02, 3.230069567871094e+02, 3.049401535034179e+02, 2.97798583984375e+02, 2.949880758666992e+02, 2.938763623046875e+02, 2.934365734863281e+02, 3.637468444824219e+02, 3.610181716918945e+02, 3.645880908203125e+02, 3.651303552246094e+02, 3.627665130615234e+02, 3.638403884887695e+02, 3.633946704101563e+02, 3.604191180419922e+02, 3.341736206054687e+02, 3.093442617797851e+02, 2.995330810546875e+02] -pip4.port_a.m_flow=[1.30000002682209e-02, 1.27100002206862e-02, 1.200000010430813e-02, 1.112999996170402e-02, 3.260000005364418e-02, 3.06000404236197e-02, 1.099999994039536e-02, 2.500000037252903e-02, 1.499999966472387e-02, 1.400000043213367e-02, 1.340000033378601e-02, 2.089976832638146e-03, 4.800000227987766e-04, 0e+00, 0e+00, 6.500000308733433e-04, 3.600000170990825e-04, 1.000000047497451e-03, 2.400000020861626e-02, 3.700000047683716e-02, 3.159999996423721e-02, 1.30000002682209e-02, 6.200000294484198e-04, 0e+00, 0e+00, 7.500000356230885e-04, 0e+00, 0e+00, 0e+00, 0e+00, 3.000000142492354e-04, 9.900000470224768e-04, 7.20000034198165e-04, 2.343000011518597e-02, 2.057999964803447e-02, 1.155000003054738e-02, 4.400000208988786e-04, 7.300000346731394e-04, 1.000000047497451e-03, 0e+00, 0e+00, 1.21100001223385e-02, 1.400000043213367e-02, 1.353000035509467e-02, 1.499999966472387e-02, 1.400000043213367e-02, 3.299999982118607e-02, 2.959999938295046e-02, 5.200162105353977e-03, 2.54200004413724e-02, 3.749999962747097e-02, 3.179000109434128e-02, 1.099999994039536e-02, 1.425999988801777e-02, 0e+00, 1.650000066729263e-03, 1.22800001502039e-02, 1.30000002682209e-02, 1.035999983549118e-02, 1.200000010430813e-02, 1.999999955296516e-02, 6.100000068545341e-02, 4.707999840378761e-02, 5.099999904632568e-02, 2.703999906778336e-02, 1.760000018402934e-02, 1.314000029116869e-02, 1.600999996066093e-02, 2.651999954134122e-02, 1.000000047497451e-03, 0e+00, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 2.149999979883432e-02, 3.440000176429749e-02, 4.171000000089407e-02, 3.276000164449215e-02, 2.999999932944775e-02, 1.520000025629997e-02, 2.134999981149934e-02, 2.835999947041351e-02, 1.764999929815531e-02, 0e+00, 6.500000308733433e-04, 6.000000284984708e-05, 0e+00, 1.000000047497451e-03, 1.000000047497451e-03, 2.400000020861626e-02, 3.609999919310212e-02, 5.299999937415123e-02, 3.599999845027924e-02, 2.31000005453825e-02, 1.674999985843897e-02, 1.200000010430813e-02, 1.30000002682209e-02, 1.000000047497451e-03, 0e+00, -0e+00] +senTem_p4.T=[2.931499938964844e+02, 3.066148568725586e+02, 3.5835630859375e+02, 3.571197372436524e+02, 3.62502353515625e+02, 3.650698103889684e+02, 3.621503472900391e+02, 3.626200527954102e+02, 3.610682739257812e+02, 3.600350494384766e+02, 3.608663452148438e+02, 3.613650017817321e+02, 3.204671105957031e+02, 3.039300765991211e+02, 2.974026098632812e+02, 2.948322052001953e+02, 2.938143090820312e+02, 2.934119445800781e+02, 3.656293438720703e+02, 3.65407692565918e+02, 3.648517211914062e+02, 3.593678573608398e+02, 3.348533544921875e+02, 3.0961626953125e+02, 2.996416345214844e+02, 2.957174911499023e+02, 2.941644836425781e+02, 2.935502081298828e+02, 2.933080053710938e+02, 2.932124838256836e+02, 2.931746612548828e+02, 2.931597164916992e+02, 2.931538403320312e+02, 3.641900756835938e+02, 3.620232788085937e+02, 3.591827697753906e+02, 3.445331042480469e+02, 3.134315081787109e+02, 3.011463299560547e+02, 2.963138909912109e+02, 2.943997131347656e+02, 3.596520169067383e+02, 3.599788458251953e+02, 3.608701327514648e+02, 3.624121337890625e+02, 3.618981094360352e+02, 3.648525158691406e+02, 3.664521835906596e+02, 3.488526956398346e+02, 3.637857232666016e+02, 3.624671478271484e+02, 3.650268280029297e+02, 3.571262109375e+02, 3.600423016357422e+02, 3.484332470703125e+02, 3.156561218261719e+02, 3.574230517578125e+02, 3.585199844360351e+02, 3.584718182373047e+02, 3.582376406860351e+02, 3.615139526367187e+02, 3.668203118896485e+02, 3.658240710449219e+02, 3.663711474609375e+02, 3.629787890625e+02, 3.621721557617187e+02, 3.597850158691406e+02, 3.617639739990234e+02, 3.631495812988281e+02, 3.270361770629886e+02, 3.065584655761719e+02, 2.984465887451172e+02, 2.952389587402344e+02, 2.939753079223633e+02, 2.934762438964844e+02, 3.476069488525391e+02, 3.655603198242188e+02, 3.654330596923828e+02, 3.648945849609375e+02, 3.640770532226563e+02, 3.641703430175781e+02, 3.628812240600586e+02, 3.616691052246093e+02, 3.58804670715332e+02, 3.228955078125e+02, 3.048961044311524e+02, 2.977812023925781e+02, 2.949811679077148e+02, 2.93873623046875e+02, 2.93435498046875e+02, 3.638926971435547e+02, 3.61025573425293e+02, 3.645767004394531e+02, 3.652082028198242e+02, 3.626737213134766e+02, 3.636275039672852e+02, 3.63090634765625e+02, 3.597397225952149e+02, 3.34080679321289e+02, 3.093076528930664e+02, 2.995186157226562e+02] +pip4.port_a.m_flow=[1.30000002682209e-02, 1.27100002206862e-02, 1.200000010430813e-02, 1.112999996170402e-02, 3.260000005364418e-02, 3.06000404236197e-02, 1.099999994039536e-02, 2.500000037252903e-02, 1.499999966472387e-02, 1.400000043213367e-02, 1.340000033378601e-02, 2.089976832638146e-03, 4.800000227987766e-04, 0e+00, 0e+00, 6.500000308733433e-04, 3.600000170990825e-04, 1.000000047497451e-03, 2.400000020861626e-02, 3.700000047683716e-02, 3.159999996423721e-02, 1.30000002682209e-02, 6.200000294484198e-04, 0e+00, 0e+00, 7.500000356230885e-04, 0e+00, 0e+00, 0e+00, 0e+00, 3.000000142492354e-04, 9.900000470224768e-04, 7.20000034198165e-04, 2.343000011518597e-02, 2.057999964803447e-02, 1.155000003054738e-02, 4.400000208988786e-04, 7.300000346731394e-04, 1.000000047497451e-03, 0e+00, 0e+00, 1.21100001223385e-02, 1.400000043213367e-02, 1.353000035509467e-02, 1.499999966472387e-02, 1.400000043213367e-02, 3.299999982118607e-02, 2.959999938295046e-02, 5.200162105353977e-03, 2.54200004413724e-02, 3.749999962747097e-02, 3.179000109434128e-02, 1.099999994039536e-02, 1.425999988801777e-02, 0e+00, 1.650000066729263e-03, 1.22800001502039e-02, 1.30000002682209e-02, 1.035999983549118e-02, 1.200000010430813e-02, 1.999999955296516e-02, 6.100000068545341e-02, 4.707999840378761e-02, 5.099999904632568e-02, 2.703999906778336e-02, 1.760000018402934e-02, 1.314000029116869e-02, 1.600999996066093e-02, 2.651999954134122e-02, 1.000000047497451e-03, 0e+00, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 2.149999979883432e-02, 3.440000176429749e-02, 4.171000000089407e-02, 3.276000164449215e-02, 2.999999932944775e-02, 1.520000025629997e-02, 2.134999981149934e-02, 2.835999947041351e-02, 1.764999929815531e-02, 0e+00, 6.500000308733433e-04, 6.000000284984708e-05, 0e+00, 1.000000047497451e-03, 1.000000047497451e-03, 2.400000020861626e-02, 3.609999919310212e-02, 5.299999937415123e-02, 3.599999845027924e-02, 2.31000005453825e-02, 1.674999985843897e-02, 1.200000010430813e-02, 1.30000002682209e-02, 1.000000047497451e-03, 0e+00, 0e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FixedResistances_Validation_PlugFlowPipes_PlugFlowULg.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FixedResistances_Validation_PlugFlowPipes_PlugFlowULg.txt index f176cc0532..0dfd955922 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FixedResistances_Validation_PlugFlowPipes_PlugFlowULg.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FixedResistances_Validation_PlugFlowPipes_PlugFlowULg.txt @@ -1,13 +1,13 @@ -last-generated=2020-12-10 +last-generated=2022-05-23 statistics-simulation= { "linear": " ", "nonlinear": " ", - "number of continuous time states": "4", + "number of continuous time states": "5", "numerical Jacobians": "0" } time=[0e+00, 8.75e+02] DataReader.y[5]=[1.879999923706055e+01, 3.778725433349609e+01, 4.556969833374023e+01, 4.873749923706055e+01, 5.02354850769043e+01, 5.094193649291992e+01, 5.139696884155273e+01, 5.174354934692383e+01, 5.18258056640625e+01, 5.190000152587891e+01, 5.2e+01, 5.209218597412109e+01, 5.216875076293945e+01, 5.228921508789062e+01, 5.226153945922852e+01, 5.229999923706055e+01, 5.220000076293945e+01, 5.220000076293945e+01, 5.229999923706055e+01, 5.229999923706055e+01, 5.229999923706055e+01, 5.229999923706055e+01, 5.229999923706055e+01, 5.240000152587891e+01, 5.240000152587891e+01, 5.240000152587891e+01, 5.240000152587891e+01, 5.240000152587891e+01, 5.25e+01, 5.25e+01, 5.25e+01, 5.25e+01, 5.248529434204102e+01, 5.25e+01, 5.240000152587891e+01, 5.240000152587891e+01, 5.240000152587891e+01, 5.237403869628906e+01, 5.229999923706055e+01, 5.240000152587891e+01, 5.240000152587891e+01, 5.25e+01, 5.240000152587891e+01, 5.240000152587891e+01, 5.240000152587891e+01, 5.240000152587891e+01, 5.240000152587891e+01, 5.240000152587891e+01, 5.240000152587891e+01, 5.240000152587891e+01, 5.240000152587891e+01, 5.240000152587891e+01, 5.240000152587891e+01, 5.240000152587891e+01, 5.245882415771484e+01, 5.259999847412109e+01, 5.259999847412109e+01, 5.259999847412109e+01, 5.25e+01, 5.25e+01, 5.25363655090332e+01, 5.259999847412109e+01, 5.259999847412109e+01, 5.259999847412109e+01, 5.259999847412109e+01, 5.240000152587891e+01, 5.230625152587891e+01, 5.224264526367188e+01, 5.220000076293945e+01, 5.220000076293945e+01, 5.220000076293945e+01, 5.220000076293945e+01, 5.220000076293945e+01, 5.220000076293945e+01, 5.220000076293945e+01, 5.220000076293945e+01, 5.220000076293945e+01, 5.220000076293945e+01, 5.220000076293945e+01, 5.220000076293945e+01, 5.220000076293945e+01, 5.220000076293945e+01, 5.220000076293945e+01, 5.220000076293945e+01, 5.220000076293945e+01, 5.220000076293945e+01, 5.220000076293945e+01, 5.220000076293945e+01, 5.220000076293945e+01, 5.220000076293945e+01, 5.220000076293945e+01, 5.220000076293945e+01, 5.220000076293945e+01, 5.220000076293945e+01, 5.220000076293945e+01, 5.220000076293945e+01, 5.220000076293945e+01, 5.220000076293945e+01, 5.220000076293945e+01, 5.220000076293945e+01, 5.220000076293945e+01] senTem_in.T=[2.931499938964844e+02, 3.10937255859375e+02, 3.187196960449219e+02, 3.218875122070312e+02, 3.23385498046875e+02, 3.240919494628906e+02, 3.245469665527344e+02, 3.248935546875e+02, 3.249757995605469e+02, 3.250499877929688e+02, 3.251499938964844e+02, 3.252421875e+02, 3.253187561035156e+02, 3.25439208984375e+02, 3.254115295410156e+02, 3.254500122070312e+02, 3.253500061035156e+02, 3.253500061035156e+02, 3.254500122070312e+02, 3.254500122070312e+02, 3.254500122070312e+02, 3.254500122070312e+02, 3.254500122070312e+02, 3.255499877929688e+02, 3.255499877929688e+02, 3.255499877929688e+02, 3.255499877929688e+02, 3.255499877929688e+02, 3.256499938964844e+02, 3.256499938964844e+02, 3.256499938964844e+02, 3.256499938964844e+02, 3.256352844238281e+02, 3.256499938964844e+02, 3.255499877929688e+02, 3.255499877929688e+02, 3.255499877929688e+02, 3.255240478515625e+02, 3.254500122070312e+02, 3.255499877929688e+02, 3.255499877929688e+02, 3.256499938964844e+02, 3.255499877929688e+02, 3.255499877929688e+02, 3.255499877929688e+02, 3.255499877929688e+02, 3.255499877929688e+02, 3.255499877929688e+02, 3.255499877929688e+02, 3.255499877929688e+02, 3.255499877929688e+02, 3.255499877929688e+02, 3.255499877929688e+02, 3.255499877929688e+02, 3.256088256835938e+02, 3.2575e+02, 3.2575e+02, 3.2575e+02, 3.256499938964844e+02, 3.256499938964844e+02, 3.256863708496094e+02, 3.2575e+02, 3.2575e+02, 3.2575e+02, 3.2575e+02, 3.255499877929688e+02, 3.254562377929688e+02, 3.253926391601562e+02, 3.253500061035156e+02, 3.253500061035156e+02, 3.253500061035156e+02, 3.253500061035156e+02, 3.253500061035156e+02, 3.253500061035156e+02, 3.253500061035156e+02, 3.253500061035156e+02, 3.253500061035156e+02, 3.253500061035156e+02, 3.253500061035156e+02, 3.253500061035156e+02, 3.253500061035156e+02, 3.253500061035156e+02, 3.253500061035156e+02, 3.253500061035156e+02, 3.253500061035156e+02, 3.253500061035156e+02, 3.253500061035156e+02, 3.253500061035156e+02, 3.253500061035156e+02, 3.253500061035156e+02, 3.253500061035156e+02, 3.253500061035156e+02, 3.253500061035156e+02, 3.253500061035156e+02, 3.253500061035156e+02, 3.253500061035156e+02, 3.253500061035156e+02, 3.253500061035156e+02, 3.253500061035156e+02, 3.253500061035156e+02, 3.253500061035156e+02] DataReader.y[3]=[1.820000076293945e+01, 1.820000076293945e+01, 1.820000076293945e+01, 1.829999923706055e+01, 1.829999923706055e+01, 1.820000076293945e+01, 1.820000076293945e+01, 1.829999923706055e+01, 1.829999923706055e+01, 1.829999923706055e+01, 1.827878761291504e+01, 1.829999923706055e+01, 1.826874923706055e+01, 1.829999923706055e+01, 1.820000076293945e+01, 1.827903175354004e+01, 1.883030319213867e+01, 2.054677391052246e+01, 2.320000076293945e+01, 2.644696998596191e+01, 2.985000038146973e+01, 3.313548278808594e+01, 3.643125152587891e+01, 3.940312576293945e+01, 4.195000076293945e+01, 4.406406402587891e+01, 4.590000152587891e+01, 4.738281250000001e+01, 4.852500152587891e+01, 4.945937347412109e+01, 5.009999847412109e+01, 5.06639518737793e+01, 5.102941131591797e+01, 5.136162948608398e+01, 5.151874923706055e+01, 5.170000076293945e+01, 5.1765625e+01, 5.190000152587891e+01, 5.190000152587891e+01, 5.192656326293945e+01, 5.209999847412109e+01, 5.209999847412109e+01, 5.209999847412109e+01, 5.209999847412109e+01, 5.209999847412109e+01, 5.209999847412109e+01, 5.217499923706055e+01, 5.209999847412109e+01, 5.209999847412109e+01, 5.209999847412109e+01, 5.209999847412109e+01, 5.209999847412109e+01, 5.209999847412109e+01, 5.209999847412109e+01, 5.21588249206543e+01, 5.229999923706055e+01, 5.229999923706055e+01, 5.229999923706055e+01, 5.229999923706055e+01, 5.229999923706055e+01, 5.229999923706055e+01, 5.229999923706055e+01, 5.236764526367188e+01, 5.240000152587891e+01, 5.233235168457031e+01, 5.229999923706055e+01, 5.220000076293945e+01, 5.220000076293945e+01, 5.229999923706055e+01, 5.229999923706055e+01, 5.229999923706055e+01, 5.229999923706055e+01, 5.229999923706055e+01, 5.229999923706055e+01, 5.229999923706055e+01, 5.229999923706055e+01, 5.229999923706055e+01, 5.229999923706055e+01, 5.229999923706055e+01, 5.229999923706055e+01, 5.229999923706055e+01, 5.229999923706055e+01, 5.229999923706055e+01, 5.229999923706055e+01, 5.229999923706055e+01, 5.229999923706055e+01, 5.229999923706055e+01, 5.229999923706055e+01, 5.229999923706055e+01, 5.229999923706055e+01, 5.229999923706055e+01, 5.229999923706055e+01, 5.229999923706055e+01, 5.229999923706055e+01, 5.229999923706055e+01, 5.229999923706055e+01, 5.229999923706055e+01, 5.229999923706055e+01, 5.229999923706055e+01, 5.229999923706055e+01, 5.229999923706055e+01] -senTem_out.T=[2.913500061035156e+02, 2.913584594726562e+02, 2.913719787597656e+02, 2.913897094726562e+02, 2.914108276367188e+02, 2.914347534179688e+02, 2.914609680175781e+02, 2.914890747070312e+02, 2.915186767578125e+02, 2.91549560546875e+02, 2.915814819335938e+02, 2.916142272949219e+02, 2.916476745605469e+02, 2.916816711425781e+02, 2.917161254882812e+02, 2.917509765625e+02, 2.917861328125e+02, 2.9294580078125e+02, 2.965771789550781e+02, 3.007063598632812e+02, 3.045810241699219e+02, 3.079853820800781e+02, 3.108902893066406e+02, 3.133408813476562e+02, 3.154007568359375e+02, 3.171046447753906e+02, 3.18506591796875e+02, 3.196707458496094e+02, 3.206403503417969e+02, 3.214515075683594e+02, 3.221347351074219e+02, 3.22687255859375e+02, 3.231396789550781e+02, 3.235006103515625e+02, 3.237962036132812e+02, 3.240540161132812e+02, 3.242671508789062e+02, 3.244416198730469e+02, 3.2458447265625e+02, 3.247108154296875e+02, 3.248228149414062e+02, 3.249145202636719e+02, 3.249895935058594e+02, 3.250510559082031e+02, 3.251033020019531e+02, 3.251619567871094e+02, 3.252101745605469e+02, 3.252496337890625e+02, 3.252819213867188e+02, 3.253014831542969e+02, 3.253178405761719e+02, 3.253197631835938e+02, 3.253213500976562e+02, 3.253226318359375e+02, 3.253132019042969e+02, 3.25298828125e+02, 3.253032531738281e+02, 3.253177490234375e+02, 3.253299255371094e+02, 3.253296813964844e+02, 3.253294677734375e+02, 3.253292846679688e+02, 3.253291625976562e+02, 3.253290405273438e+02, 3.253289489746094e+02, 3.25328857421875e+02, 3.253287963867188e+02, 3.253287353515625e+02, 3.253287048339844e+02, 3.253286743164062e+02, 3.253286437988281e+02, 3.253431701660156e+02, 3.253754272460938e+02, 3.254028930664062e+02, 3.25425048828125e+02, 3.254273071289062e+02, 3.254273986816406e+02, 3.254396362304688e+02, 3.254554748535156e+02, 3.254684448242188e+02, 3.254790954589844e+02, 3.254789733886719e+02, 3.254521484375e+02, 3.254140625e+02, 3.253670959472656e+02, 3.253240966796875e+02, 3.252889099121094e+02, 3.252600708007812e+02, 3.252364807128906e+02, 3.252171630859375e+02, 3.252013549804688e+02, 3.251884155273438e+02, 3.251777954101562e+02, 3.251691284179688e+02, 3.251620178222656e+02, 3.251562194824219e+02, 3.251514587402344e+02, 3.251475524902344e+02, 3.251443481445312e+02, 3.251417541503906e+02, 3.251396179199219e+02] +senTem_out.T=[2.913500061035156e+02, 2.913655700683594e+02, 2.913880310058594e+02, 2.914151611328125e+02, 2.914454040527344e+02, 2.914777221679688e+02, 2.915114135742188e+02, 2.915460815429688e+02, 2.915813293457031e+02, 2.916170349121094e+02, 2.916530151367188e+02, 2.916891784667969e+02, 2.917254638671875e+02, 2.917618408203125e+02, 2.917982788085938e+02, 2.918347473144531e+02, 2.918712463378906e+02, 2.919805603027344e+02, 2.936300048828125e+02, 2.96908203125e+02, 3.010030212402344e+02, 3.052192077636719e+02, 3.091268310546875e+02, 3.125261535644531e+02, 3.153643188476562e+02, 3.176602783203125e+02, 3.194709777832031e+02, 3.208731689453125e+02, 3.21948974609375e+02, 3.227712707519531e+02, 3.234024047851562e+02, 3.238818664550781e+02, 3.2423974609375e+02, 3.244985961914062e+02, 3.246835632324219e+02, 3.248201599121094e+02, 3.249259033203125e+02, 3.250063781738281e+02, 3.250667724609375e+02, 3.251134033203125e+02, 3.251566162109375e+02, 3.251947021484375e+02, 3.252263793945312e+02, 3.25251708984375e+02, 3.252716064453125e+02, 3.252936401367188e+02, 3.253180847167969e+02, 3.253410339355469e+02, 3.253607482910156e+02, 3.25375e+02, 3.25384033203125e+02, 3.253840637207031e+02, 3.253780212402344e+02, 3.253699340820312e+02, 3.253594665527344e+02, 3.253416137695312e+02, 3.253273010253906e+02, 3.253229064941406e+02, 3.253300476074219e+02, 3.253346557617188e+02, 3.253360290527344e+02, 3.253358459472656e+02, 3.253349609375e+02, 3.253338623046875e+02, 3.253327941894531e+02, 3.253318481445312e+02, 3.253310546875e+02, 3.253304138183594e+02, 3.253299255371094e+02, 3.253295593261719e+02, 3.253293151855469e+02, 3.253327941894531e+02, 3.253501586914062e+02, 3.25377197265625e+02, 3.254055786132812e+02, 3.25426513671875e+02, 3.254360046386719e+02, 3.254422607421875e+02, 3.254537963867188e+02, 3.254668579101562e+02, 3.254792785644531e+02, 3.254887084960938e+02, 3.254818115234375e+02, 3.254573059082031e+02, 3.254180297851562e+02, 3.253693237304688e+02, 3.253214111328125e+02, 3.25279052734375e+02, 3.252438049316406e+02, 3.252156066894531e+02, 3.251936340332031e+02, 3.251768188476562e+02, 3.251641845703125e+02, 3.2515478515625e+02, 3.251478576660156e+02, 3.251427917480469e+02, 3.251391296386719e+02, 3.25136474609375e+02, 3.251345825195312e+02, 3.251332397460938e+02, 3.251322631835938e+02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FixedResistances_Validation_PlugFlowPipes_TransportWaterAir.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FixedResistances_Validation_PlugFlowPipes_TransportWaterAir.txt index c258b0085d..a3416da56d 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FixedResistances_Validation_PlugFlowPipes_TransportWaterAir.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FixedResistances_Validation_PlugFlowPipes_TransportWaterAir.txt @@ -1,20 +1,20 @@ -last-generated=2017-10-25 +last-generated=2022-05-23 statistics-simulation= { - "numerical Jacobians": "0", - "nonlinear": "1, 1", - "number of continuous time states": "8", - "linear": "0" + "linear": "0, 0", + "nonlinear": "1, 0, 1", + "number of continuous time states": "13", + "numerical Jacobians": "0" } -senTemOutW.T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 3.002175903320312e+02, 3.025613098144531e+02, 3.030317993164062e+02, 3.031262512207031e+02, 3.031452331542969e+02, 3.031490173339844e+02, 3.031498107910156e+02, 3.031499633789062e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031500244140625e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02] -Tin.y=[2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02] -senTemOutA.T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.999855041503906e+02, 3.024477844238281e+02, 3.02994140625e+02, 3.031154174804688e+02, 3.031423034667969e+02, 3.031482849121094e+02, 3.031495971679688e+02, 3.0314990234375e+02, 3.031499633789062e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031500244140625e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02] time=[0e+00, 1e+03] -duc.ports_b[1].Xi_outflow[1]=[9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 1.999982818961143e-02, 2.000000141561031e-02, 1.999999582767487e-02, 2.000000141561031e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02] +Tin.y=[2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02] +senTemOutW.T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.99456298828125e+02, 3.028486022949219e+02, 3.031318359375e+02, 3.0314892578125e+02, 3.031499328613281e+02, 3.031500244140625e+02, 3.031500549316406e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031500549316406e+02, 3.031500549316406e+02, 3.031499938964844e+02, 3.031499633789062e+02, 3.031499633789062e+02, 3.031499633789062e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031500244140625e+02, 3.031500244140625e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02] +senTemOutA.T=[2.881499938964844e+02, 2.931499938964844e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.991083068847656e+02, 3.027514038085938e+02, 3.031206665039062e+02, 3.031479797363281e+02, 3.031498718261719e+02, 3.031500244140625e+02, 3.031500549316406e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031500549316406e+02, 3.031500549316406e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499633789062e+02, 3.031499633789062e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031500244140625e+02, 3.031500244140625e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02] +duc.port_b.Xi_outflow[1]=[9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 2.0000034943223e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02] XiIn[1].y=[9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02, 1.999999955296516e-02] -duc.ports_b[1].C_outflow[1]=[0e+00, 0e+00, 9.998738532885909e-04, 9.999989997595549e-04, 9.999998146668077e-04, 9.999999310821295e-04, 9.999999310821295e-04, 1.000000047497451e-03, 1.000000047497451e-03, 9.999999310821295e-04, 9.999999310821295e-04, 1.000000047497451e-03, 1.099982764571905e-02, 1.10000018030405e-02, 1.099999621510506e-02, 1.100000087171793e-02, 1.099999900907278e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02] +duc.port_b.C_outflow[1]=[0e+00, 0e+00, 9.991354309022427e-04, 1.00233475677669e-03, 1.00085255689919e-03, 9.992331033572555e-04, 9.870518697425723e-04, 1.002171193249524e-03, 1.00075057707727e-03, 1.000776304863393e-03, 1.005846774205565e-03, 9.990941034629941e-04, 1.100003439933062e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02] CIn[1].y=[1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02] -duc.cor.res.v=[1.5e+00, 1.5e+00] pip.v_nominal=[1.5e+00, 1.5e+00] -pip.cor.res.v=[1.5e+00, 1.5e+00] -duc.cor.res.v_nominal=[1.5e+00, 1.5e+00] +pip.v=[1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00] +duc.v_nominal=[1.5e+00, 1.5e+00] +duc.v=[0e+00, 1.507161378860474e+00, 1.499926209449768e+00, 1.552633762359619e+00, 1.452576041221619e+00, 1.520830869674683e+00, 1.568472862243652e+00, 1.454182982444763e+00, 1.508243203163147e+00, 1.517868876457214e+00, 1.515429258346558e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00, 1.5e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FixedResistances_Validation_PressureDropsExplicit.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FixedResistances_Validation_PressureDropsExplicit.txt index b37ba2294d..08b16eaf3e 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FixedResistances_Validation_PressureDropsExplicit.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_FixedResistances_Validation_PressureDropsExplicit.txt @@ -1,7 +1,7 @@ -last-generated=2021-05-19 +last-generated=2022-05-23 statistics-initialization= { - "nonlinear": "0, 0, 0, 0, 1, 0, 1, 0", + "nonlinear": "0, 0, 1, 0, 1, 0", "numerical Jacobians": "0" } statistics-simulation= @@ -12,6 +12,6 @@ statistics-simulation= } time=[-1e+00, 1e+00] res11.m_flow=[-2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -1.959591745415846e+00, -1.91833257488339e+00, -1.87616634082318e+00, -1.833030219935111e+00, -1.788854363904185e+00, -1.743559592753025e+00, -1.697056294888564e+00, -1.649242273214387e+00, -1.600000041667563e+00, -1.549193389932589e+00, -1.496662971160134e+00, -1.442220553721059e+00, -1.385640593539562e+00, -1.326649907829207e+00, -1.264911093075421e+00, -1.20000002370785e+00, -1.131370914627385e+00, -1.05830054883521e+00, -9.797958535334435e-01, -8.944272066848777e-01, -7.999999455152141e-01, -6.92820296590192e-01, -5.649875992881604e-01, -3.469959632448059e-01, 0e+00, 3.469963948688536e-01, 5.649873682217298e-01, 6.92820296590192e-01, 8.000000943495461e-01, 8.944270725782018e-01, 9.797958535334435e-01, 1.05830054883521e+00, 1.131370808751474e+00, 1.20000002370785e+00, 1.264911093075421e+00, 1.326649817592914e+00, 1.385640593539562e+00, 1.442220595006066e+00, 1.496663050550369e+00, 1.549193351380217e+00, 1.600000041667563e+00, 1.649242345334755e+00, 1.697056259675731e+00, 1.743559609833375e+00, 1.788854413760197e+00, 1.833030187340813e+00, 1.876166348760524e+00, 1.918332621397505e+00, 1.959591707315291e+00, 2e+00] -res21.m_flow=[-2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -1.959591745415846e+00, -1.91833257488339e+00, -1.87616634082318e+00, -1.833030219935111e+00, -1.788854363904185e+00, -1.743559592753025e+00, -1.697056294888564e+00, -1.649242273214387e+00, -1.600000041667563e+00, -1.549193389932589e+00, -1.496662971160134e+00, -1.442220553721059e+00, -1.385640593539562e+00, -1.326649907829207e+00, -1.264911093075421e+00, -1.20000002370785e+00, -1.131370914627385e+00, -1.05830054883521e+00, -9.797958535334435e-01, -8.944272066848777e-01, -7.999999455152141e-01, -6.92820296590192e-01, -5.649875992881604e-01, -3.469959632448059e-01, 3.355532540195993e-13, 3.469963948688536e-01, 5.649873682217298e-01, 6.92820296590192e-01, 8.000000943495461e-01, 8.944270725782018e-01, 9.797958535334435e-01, 1.05830054883521e+00, 1.131370808751474e+00, 1.20000002370785e+00, 1.264911093075421e+00, 1.326649817592914e+00, 1.385640593539562e+00, 1.442220595006066e+00, 1.496663050550369e+00, 1.549193351380217e+00, 1.600000041667563e+00, 1.649242345334755e+00, 1.697056259675731e+00, 1.743559609833375e+00, 1.788854413760197e+00, 1.833030187340813e+00, 1.876166348760524e+00, 1.918332621397505e+00, 1.959591707315291e+00, 2e+00] +res21.m_flow=[-2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -2e+00, -1.959591745415846e+00, -1.91833257488339e+00, -1.87616634082318e+00, -1.833030219935111e+00, -1.788854363904185e+00, -1.743559592753025e+00, -1.697056294888564e+00, -1.649242273214387e+00, -1.600000041667563e+00, -1.549193389932589e+00, -1.496662971160134e+00, -1.442220553721059e+00, -1.385640593539562e+00, -1.326649907829207e+00, -1.264911093075421e+00, -1.20000002370785e+00, -1.131370914627385e+00, -1.05830054883521e+00, -9.797958535334435e-01, -8.944272066848777e-01, -7.999999455152141e-01, -6.92820296590192e-01, -5.649875992881604e-01, -3.469959632448059e-01, 3.35553226914545e-13, 3.469963948688536e-01, 5.649873682217298e-01, 6.92820296590192e-01, 8.000000943495461e-01, 8.944270725782018e-01, 9.797958535334435e-01, 1.05830054883521e+00, 1.131370808751474e+00, 1.20000002370785e+00, 1.264911093075421e+00, 1.326649817592914e+00, 1.385640593539562e+00, 1.442220595006066e+00, 1.496663050550369e+00, 1.549193351380217e+00, 1.600000041667563e+00, 1.649242345334755e+00, 1.697056259675731e+00, 1.743559609833375e+00, 1.788854413760197e+00, 1.833030187340813e+00, 1.876166348760524e+00, 1.918332621397505e+00, 1.959591707315291e+00, 2e+00] res31.dp=[1.25e+00, 1.25e+00] res41.dp=[1.25e+00, 1.25e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Geothermal_Borefields_BaseClasses_Boreholes_BaseClasses_Examples_InternalHEXTwoUTube.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Geothermal_Borefields_BaseClasses_Boreholes_BaseClasses_Examples_InternalHEXTwoUTube.txt index 67381c0fdc..22b0a4d4b1 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Geothermal_Borefields_BaseClasses_Boreholes_BaseClasses_Examples_InternalHEXTwoUTube.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Geothermal_Borefields_BaseClasses_Boreholes_BaseClasses_Examples_InternalHEXTwoUTube.txt @@ -1,7 +1,7 @@ -last-generated=2021-05-19 +last-generated=2022-05-23 statistics-initialization= { - "nonlinear": "1, 1, 1, 0, 1, 0", + "nonlinear": "1, 1", "numerical Jacobians": "0" } statistics-simulation= diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Geothermal_Borefields_BaseClasses_Boreholes_Examples_BoreholeDynamics.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Geothermal_Borefields_BaseClasses_Boreholes_Examples_BoreholeDynamics.txt index b8bd53cee7..61e01b83ba 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Geothermal_Borefields_BaseClasses_Boreholes_Examples_BoreholeDynamics.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Geothermal_Borefields_BaseClasses_Boreholes_Examples_BoreholeDynamics.txt @@ -1,8 +1,8 @@ -last-generated=2021-05-19 +last-generated=2022-05-23 statistics-initialization= { "linear": "30, 100", - "nonlinear": "1, 1, 1, 0, 1, 0", + "nonlinear": "1, 1", "numerical Jacobians": "0" } statistics-simulation= diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Geothermal_Borefields_BaseClasses_Boreholes_Examples_BoreholeTwoUTube.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Geothermal_Borefields_BaseClasses_Boreholes_Examples_BoreholeTwoUTube.txt index 40feafe10e..083aa30f19 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Geothermal_Borefields_BaseClasses_Boreholes_Examples_BoreholeTwoUTube.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Geothermal_Borefields_BaseClasses_Boreholes_Examples_BoreholeTwoUTube.txt @@ -1,7 +1,7 @@ -last-generated=2021-05-19 +last-generated=2022-05-23 statistics-initialization= { - "nonlinear": "1, 1, 0", + "nonlinear": "1", "numerical Jacobians": "0" } statistics-simulation= diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Geothermal_Borefields_Examples_Borefields.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Geothermal_Borefields_Examples_Borefields.txt index aae7223440..e5b5191c4b 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Geothermal_Borefields_Examples_Borefields.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Geothermal_Borefields_Examples_Borefields.txt @@ -1,7 +1,7 @@ -last-generated=2021-05-19 +last-generated=2022-05-23 statistics-initialization= { - "nonlinear": "1, 1, 0", + "nonlinear": "1", "numerical Jacobians": "0" } statistics-simulation= diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatExchangers_ActiveBeams_Examples_CoolingAndHeating.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatExchangers_ActiveBeams_Examples_CoolingAndHeating.txt index fce3ad7af5..9c064c1149 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatExchangers_ActiveBeams_Examples_CoolingAndHeating.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatExchangers_ActiveBeams_Examples_CoolingAndHeating.txt @@ -1,4 +1,4 @@ -last-generated=2020-08-17 +last-generated=2022-05-23 statistics-initialization= { "linear": "0, 0" @@ -11,5 +11,5 @@ statistics-simulation= "numerical Jacobians": "0" } time=[0e+00, 1.728e+05] -vol.T=[2.931499938964844e+02, 2.95150146484375e+02, 2.951503295898438e+02, 2.951504821777344e+02, 2.95150634765625e+02, 2.951507873535156e+02, 2.951509094238281e+02, 2.951510314941406e+02, 2.951511840820312e+02, 2.951513061523438e+02, 2.954037475585938e+02, 2.959230651855469e+02, 2.964556579589844e+02, 2.969931335449219e+02, 2.975270080566406e+02, 2.980488891601562e+02, 2.981504211425781e+02, 2.98150390625e+02, 2.981503601074219e+02, 2.981503295898438e+02, 2.981502990722656e+02, 2.981502685546875e+02, 2.981502380371094e+02, 2.981501770019531e+02, 2.981501159667969e+02, 2.981499938964844e+02, 2.9814990234375e+02, 2.981498413085938e+02, 2.981497802734375e+02, 2.981497192382812e+02, 2.981496887207031e+02, 2.981496887207031e+02, 2.98149658203125e+02, 2.981496276855469e+02, 2.981495971679688e+02, 2.981183776855469e+02, 2.97606689453125e+02, 2.970740661621094e+02, 2.965365905761719e+02, 2.960027160644531e+02, 2.954808654785156e+02, 2.95148681640625e+02, 2.951488037109375e+02, 2.9514892578125e+02, 2.951490783691406e+02, 2.951492004394531e+02, 2.951493530273438e+02, 2.951495056152344e+02, 2.95149658203125e+02, 2.951498107910156e+02, 2.951499938964844e+02, 2.95150146484375e+02, 2.951503295898438e+02, 2.951504821777344e+02, 2.95150634765625e+02, 2.951507873535156e+02, 2.951509094238281e+02, 2.951510314941406e+02, 2.951511840820312e+02, 2.951513061523438e+02, 2.954037475585938e+02, 2.959230651855469e+02, 2.964556579589844e+02, 2.969931335449219e+02, 2.975270080566406e+02, 2.980488891601562e+02, 2.981504211425781e+02, 2.98150390625e+02, 2.981503601074219e+02, 2.981503295898438e+02, 2.981502990722656e+02, 2.981502685546875e+02, 2.981502380371094e+02, 2.981501770019531e+02, 2.981501159667969e+02, 2.981499938964844e+02, 2.9814990234375e+02, 2.981498413085938e+02, 2.981497802734375e+02, 2.981497192382812e+02, 2.981496887207031e+02, 2.981496887207031e+02, 2.98149658203125e+02, 2.981496276855469e+02, 2.981495971679688e+02, 2.981183776855469e+02, 2.97606689453125e+02, 2.970740661621094e+02, 2.965365905761719e+02, 2.960027160644531e+02, 2.954808349609375e+02, 2.95148681640625e+02, 2.951488037109375e+02, 2.9514892578125e+02, 2.951490783691406e+02, 2.951492004394531e+02, 2.951493530273438e+02, 2.951495056152344e+02, 2.95149658203125e+02, 2.951498107910156e+02, 2.951499938964844e+02] -beaCooHea.heaToRoo.Q_flow=[2.832e+03, 7.378547973632812e+02, 7.09662841796875e+02, 6.631393432617188e+02, 5.990181884765625e+02, 5.18310791015625e+02, 4.222864685058594e+02, 3.124732666015624e+02, 1.905912780761719e+02, 5.856990051269531e+01, -0e+00, -0e+00, -0e+00, -0e+00, 0e+00, -0e+00, -1.224943618774414e+02, -2.545621185302737e+02, -3.764867553710938e+02, -4.863475341796875e+02, -5.82412841796875e+02, -6.631690063476562e+02, -7.27343994140625e+02, -7.739254150390625e+02, -8.02182373046875e+02, -8.116643676757812e+02, -8.022376098632812e+02, -7.740238037109375e+02, -7.274803466796873e+02, -6.633027954101562e+02, -5.8257958984375e+02, -4.8655322265625e+02, -3.76681884765625e+02, -2.547662353515625e+02, -1.227250289916986e+02, -2.344791028008331e-13, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 5.783964538574219e+01, 1.899324493408203e+02, 3.118839721679688e+02, 4.217740783691406e+02, 5.17870361328125e+02, 5.986583251953125e+02, 6.628646240234375e+02, 7.094772338867188e+02, 7.377611083984375e+02, 7.47270263671875e+02, 7.37854736328125e+02, 7.096629028320312e+02, 6.63139404296875e+02, 5.990181274414062e+02, 5.183107910156242e+02, 4.222908935546866e+02, 3.124736633300791e+02, 1.905922088623047e+02, 5.856990432739258e+01, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -1.224943008422852e+02, -2.545617980957031e+02, -3.76486083984376e+02, -4.863475341796866e+02, -5.824128417968742e+02, -6.631702270507812e+02, -7.27347900390625e+02, -7.739236450195312e+02, -8.021831665039062e+02, -8.116669921875e+02, -8.022379760742188e+02, -7.740244750976562e+02, -7.27476318359375e+02, -6.633229370117188e+02, -5.82575927734375e+02, -4.86516357421875e+02, -3.766820678710938e+02, -2.547632904052734e+02, -1.227249755859375e+02, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 5.783953475952148e+01, 1.899322662353516e+02, 3.118828735351562e+02, 4.217740173339844e+02, 5.178703002929688e+02, 5.986582641601562e+02, 6.6286474609375e+02, 7.094775390625e+02, 7.377616577148438e+02, 7.472706298828125e+02] +vol.T=[2.931499938964844e+02, 2.95150146484375e+02, 2.951503295898438e+02, 2.951504821777344e+02, 2.95150634765625e+02, 2.951507873535156e+02, 2.951509094238281e+02, 2.951510314941406e+02, 2.951511840820312e+02, 2.951513061523438e+02, 2.954037475585938e+02, 2.959230651855469e+02, 2.964556579589844e+02, 2.969931335449219e+02, 2.975270080566406e+02, 2.980488891601562e+02, 2.981504211425781e+02, 2.98150390625e+02, 2.981503601074219e+02, 2.981503295898438e+02, 2.981502990722656e+02, 2.981502685546875e+02, 2.981502380371094e+02, 2.981501770019531e+02, 2.981501159667969e+02, 2.981499938964844e+02, 2.9814990234375e+02, 2.981498413085938e+02, 2.981497802734375e+02, 2.981497192382812e+02, 2.981496887207031e+02, 2.981496887207031e+02, 2.98149658203125e+02, 2.981496276855469e+02, 2.981495971679688e+02, 2.981183776855469e+02, 2.97606689453125e+02, 2.970740661621094e+02, 2.965365905761719e+02, 2.960027160644531e+02, 2.954808654785156e+02, 2.95148681640625e+02, 2.951488037109375e+02, 2.9514892578125e+02, 2.951490783691406e+02, 2.951492004394531e+02, 2.951493530273438e+02, 2.951495056152344e+02, 2.95149658203125e+02, 2.951498107910156e+02, 2.951499938964844e+02, 2.95150146484375e+02, 2.951503295898438e+02, 2.951504821777344e+02, 2.95150634765625e+02, 2.951507873535156e+02, 2.951509094238281e+02, 2.951510314941406e+02, 2.951511840820312e+02, 2.951513061523438e+02, 2.954037475585938e+02, 2.959230651855469e+02, 2.964556579589844e+02, 2.969931335449219e+02, 2.975270080566406e+02, 2.980488891601562e+02, 2.981504211425781e+02, 2.98150390625e+02, 2.981503601074219e+02, 2.981503295898438e+02, 2.981502990722656e+02, 2.981502685546875e+02, 2.981502380371094e+02, 2.981501770019531e+02, 2.981501159667969e+02, 2.981499938964844e+02, 2.9814990234375e+02, 2.981498413085938e+02, 2.981497802734375e+02, 2.981497192382812e+02, 2.981496887207031e+02, 2.981496887207031e+02, 2.98149658203125e+02, 2.981496276855469e+02, 2.981495971679688e+02, 2.981183776855469e+02, 2.97606689453125e+02, 2.970740661621094e+02, 2.965365905761719e+02, 2.960027160644531e+02, 2.954808654785156e+02, 2.95148681640625e+02, 2.951488037109375e+02, 2.9514892578125e+02, 2.951490783691406e+02, 2.951492004394531e+02, 2.951493530273438e+02, 2.951495056152344e+02, 2.95149658203125e+02, 2.951498107910156e+02, 2.951499938964844e+02] +beaCooHea.heaToRoo.Q_flow=[2.832e+03, 7.378547973632812e+02, 7.09662841796875e+02, 6.631393432617188e+02, 5.990181884765625e+02, 5.18310791015625e+02, 4.222864685058594e+02, 3.124732666015624e+02, 1.905912780761719e+02, 5.856990051269531e+01, -0e+00, -0e+00, -0e+00, -0e+00, 0e+00, -0e+00, -1.224943618774414e+02, -2.545621185302737e+02, -3.764867553710938e+02, -4.863475341796875e+02, -5.82412841796875e+02, -6.631690063476562e+02, -7.27343994140625e+02, -7.739254150390625e+02, -8.02182373046875e+02, -8.116643676757812e+02, -8.022376098632812e+02, -7.740238037109375e+02, -7.274803466796873e+02, -6.633027954101562e+02, -5.8257958984375e+02, -4.8655322265625e+02, -3.76681884765625e+02, -2.547662353515625e+02, -1.227250289916986e+02, -2.344791028008331e-13, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 5.783964538574219e+01, 1.899324493408203e+02, 3.118839721679688e+02, 4.217740783691406e+02, 5.17870361328125e+02, 5.986583251953125e+02, 6.628646240234375e+02, 7.094772338867188e+02, 7.377611083984375e+02, 7.47270263671875e+02, 7.37854736328125e+02, 7.096629028320312e+02, 6.63139404296875e+02, 5.990181274414062e+02, 5.183107910156242e+02, 4.222908935546866e+02, 3.124736633300791e+02, 1.905922088623047e+02, 5.856990432739258e+01, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -1.224943008422852e+02, -2.545617980957031e+02, -3.76486083984376e+02, -4.863475036621085e+02, -5.824128417968742e+02, -6.63170166015625e+02, -7.27347900390625e+02, -7.7392431640625e+02, -8.021837158203125e+02, -8.11668212890625e+02, -8.02244140625e+02, -7.74024658203125e+02, -7.27470947265625e+02, -6.63322509765625e+02, -5.825852661132812e+02, -4.865639038085938e+02, -3.766802062988281e+02, -2.547705993652344e+02, -1.227207565307617e+02, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 5.783964538574219e+01, 1.899324493408203e+02, 3.118839721679688e+02, 4.217740783691406e+02, 5.17870361328125e+02, 5.986583251953125e+02, 6.628646240234375e+02, 7.094772338867188e+02, 7.377611083984375e+02, 7.47270263671875e+02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatExchangers_ActiveBeams_Examples_HeatingOnly.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatExchangers_ActiveBeams_Examples_HeatingOnly.txt index e962628f39..8da5de61a8 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatExchangers_ActiveBeams_Examples_HeatingOnly.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatExchangers_ActiveBeams_Examples_HeatingOnly.txt @@ -1,7 +1,7 @@ -last-generated=2021-05-19 +last-generated=2022-05-23 statistics-initialization= { - "nonlinear": "0, 0", + "nonlinear": "0", "numerical Jacobians": "0" } statistics-simulation= @@ -12,5 +12,5 @@ statistics-simulation= "numerical Jacobians": "0" } time=[0e+00, 1.728e+05] -vol.T=[2.931499938964844e+02, 2.95150146484375e+02, 2.951503295898438e+02, 2.951504821777344e+02, 2.95150634765625e+02, 2.951507873535156e+02, 2.951509094238281e+02, 2.951510314941406e+02, 2.951511840820312e+02, 2.951513061523438e+02, 2.954037475585938e+02, 2.959230651855469e+02, 2.964556579589844e+02, 2.969931335449219e+02, 2.975270080566406e+02, 2.980488891601562e+02, 2.985505065917969e+02, 2.990239562988281e+02, 2.994617614746094e+02, 2.998570556640625e+02, 3.002035827636719e+02, 3.004958801269531e+02, 3.007293395996094e+02, 3.009002990722656e+02, 3.010059814453125e+02, 3.010448303222656e+02, 3.010161437988281e+02, 3.009204406738281e+02, 3.007591857910156e+02, 3.005349426269531e+02, 3.002512512207031e+02, 2.999125671386719e+02, 2.995242614746094e+02, 2.990924072265625e+02, 2.986238708496094e+02, 2.981260070800781e+02, 2.97606689453125e+02, 2.970740661621094e+02, 2.965365905761719e+02, 2.960027160644531e+02, 2.954808654785156e+02, 2.95148681640625e+02, 2.951488037109375e+02, 2.9514892578125e+02, 2.951490783691406e+02, 2.951492004394531e+02, 2.951493530273438e+02, 2.951495056152344e+02, 2.95149658203125e+02, 2.951498107910156e+02, 2.951499938964844e+02, 2.95150146484375e+02, 2.951503295898438e+02, 2.951504821777344e+02, 2.95150634765625e+02, 2.951507873535156e+02, 2.951509094238281e+02, 2.951510314941406e+02, 2.951511840820312e+02, 2.951513061523438e+02, 2.954037475585938e+02, 2.959230651855469e+02, 2.964556579589844e+02, 2.969931335449219e+02, 2.975270080566406e+02, 2.980488891601562e+02, 2.985505065917969e+02, 2.990239562988281e+02, 2.994617614746094e+02, 2.998570556640625e+02, 3.0020361328125e+02, 3.004958801269531e+02, 3.007293395996094e+02, 3.009002685546875e+02, 3.010060119628906e+02, 3.010448303222656e+02, 3.010161437988281e+02, 3.009204406738281e+02, 3.007591857910156e+02, 3.005349426269531e+02, 3.002512512207031e+02, 2.999125671386719e+02, 2.995242309570312e+02, 2.990924072265625e+02, 2.986238708496094e+02, 2.981260070800781e+02, 2.97606689453125e+02, 2.970740661621094e+02, 2.965365905761719e+02, 2.960027160644531e+02, 2.954808654785156e+02, 2.95148681640625e+02, 2.951488037109375e+02, 2.9514892578125e+02, 2.951490783691406e+02, 2.951492004394531e+02, 2.951493530273438e+02, 2.951495056152344e+02, 2.95149658203125e+02, 2.951498107910156e+02, 2.951499938964844e+02] -beaCooHea.heaToRoo.Q_flow=[2.832e+03, 7.37854736328125e+02, 7.096629028320312e+02, 6.631393432617188e+02, 5.990181274414062e+02, 5.18310791015625e+02, 4.222908020019531e+02, 3.124737243652343e+02, 1.905921783447266e+02, 5.857040786743164e+01, -0e+00, -0e+00, -0e+00, -0e+00, 0e+00, -0e+00, -0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 5.78395881652832e+01, 1.899322814941406e+02, 3.118841552734375e+02, 4.217731323242188e+02, 5.178701171875e+02, 5.986583251953125e+02, 6.628650512695312e+02, 7.094778442382812e+02, 7.37762939453125e+02, 7.47270263671875e+02, 7.378570556640625e+02, 7.096632690429688e+02, 6.631409301757812e+02, 5.99018310546875e+02, 5.18310729980468e+02, 4.222903747558585e+02, 3.12473388671876e+02, 1.905921936035156e+02, 5.857041549682617e+01, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 0e+00, 0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 5.783953094482422e+01, 1.899322662353516e+02, 3.118841552734375e+02, 4.217740783691406e+02, 5.17870361328125e+02, 5.986583251953125e+02, 6.628646240234375e+02, 7.094772338867188e+02, 7.377611083984375e+02, 7.47270263671875e+02] +vol.T=[2.931499938964844e+02, 2.95150146484375e+02, 2.951503295898438e+02, 2.951504821777344e+02, 2.95150634765625e+02, 2.951507873535156e+02, 2.951509094238281e+02, 2.951510314941406e+02, 2.951511840820312e+02, 2.951513061523438e+02, 2.954037475585938e+02, 2.959230651855469e+02, 2.964556579589844e+02, 2.969931335449219e+02, 2.975270080566406e+02, 2.980488891601562e+02, 2.985505065917969e+02, 2.990239562988281e+02, 2.994617614746094e+02, 2.998570556640625e+02, 3.002035827636719e+02, 3.004958801269531e+02, 3.007293395996094e+02, 3.009002990722656e+02, 3.010059814453125e+02, 3.010448303222656e+02, 3.010161437988281e+02, 3.009204406738281e+02, 3.007591857910156e+02, 3.005349426269531e+02, 3.002512512207031e+02, 2.999125671386719e+02, 2.995242614746094e+02, 2.990924072265625e+02, 2.986238708496094e+02, 2.981260070800781e+02, 2.97606689453125e+02, 2.970740661621094e+02, 2.965365905761719e+02, 2.960027160644531e+02, 2.954808654785156e+02, 2.95148681640625e+02, 2.951488037109375e+02, 2.9514892578125e+02, 2.951490783691406e+02, 2.951492004394531e+02, 2.951493530273438e+02, 2.951495056152344e+02, 2.95149658203125e+02, 2.951498107910156e+02, 2.951499938964844e+02, 2.95150146484375e+02, 2.951503295898438e+02, 2.951504821777344e+02, 2.95150634765625e+02, 2.951507873535156e+02, 2.951509094238281e+02, 2.951510314941406e+02, 2.951511840820312e+02, 2.951513061523438e+02, 2.954037475585938e+02, 2.959230651855469e+02, 2.964556579589844e+02, 2.969931335449219e+02, 2.975270385742188e+02, 2.980488891601562e+02, 2.985505065917969e+02, 2.990239562988281e+02, 2.994617614746094e+02, 2.998570556640625e+02, 3.002035827636719e+02, 3.004958801269531e+02, 3.007293395996094e+02, 3.009002990722656e+02, 3.010059814453125e+02, 3.010448303222656e+02, 3.010161437988281e+02, 3.009204406738281e+02, 3.007591857910156e+02, 3.005349426269531e+02, 3.002512512207031e+02, 2.999125671386719e+02, 2.995242614746094e+02, 2.990924072265625e+02, 2.986238708496094e+02, 2.981260070800781e+02, 2.97606689453125e+02, 2.970740661621094e+02, 2.965365905761719e+02, 2.960027160644531e+02, 2.954808654785156e+02, 2.95148681640625e+02, 2.951488037109375e+02, 2.9514892578125e+02, 2.951490783691406e+02, 2.951492004394531e+02, 2.951493530273438e+02, 2.951495056152344e+02, 2.95149658203125e+02, 2.951498107910156e+02, 2.951499938964844e+02] +beaCooHea.heaToRoo.Q_flow=[2.832e+03, 7.37854736328125e+02, 7.096629028320312e+02, 6.631393432617188e+02, 5.990181274414062e+02, 5.18310791015625e+02, 4.222908020019531e+02, 3.124737243652343e+02, 1.905921783447266e+02, 5.857040786743164e+01, -0e+00, -0e+00, -0e+00, -0e+00, 0e+00, -0e+00, -0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 5.783954238891602e+01, 1.899322814941406e+02, 3.118841247558594e+02, 4.217740783691406e+02, 5.178703002929688e+02, 5.986581420898438e+02, 6.6286474609375e+02, 7.094783325195312e+02, 7.377625122070312e+02, 7.47271240234375e+02, 7.378568115234375e+02, 7.096630859375e+02, 6.63140869140625e+02, 5.990183715820312e+02, 5.18310729980468e+02, 4.222902832031241e+02, 3.12473388671876e+02, 1.905922088623047e+02, 5.857040405273438e+01, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 0e+00, 0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 5.783962249755859e+01, 1.899322814941406e+02, 3.118841552734375e+02, 4.217731628417969e+02, 5.17869873046875e+02, 5.986583251953125e+02, 6.628648071289062e+02, 7.094776611328125e+02, 7.37761474609375e+02, 7.472706909179688e+02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatExchangers_Examples_AirHeater_u.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatExchangers_Examples_AirHeater_u.txt index 4a77b334d2..64906396e0 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatExchangers_Examples_AirHeater_u.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatExchangers_Examples_AirHeater_u.txt @@ -1,4 +1,4 @@ -last-generated=2020-08-17 +last-generated=2022-05-23 statistics-simulation= { "linear": "0, 0", @@ -9,6 +9,6 @@ statistics-simulation= time=[0e+00, 1.728e+05] TSet.y=[2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02] TOut.y=[2.841499938964844e+02, 2.841894226074219e+02, 2.843070983886719e+02, 2.845011291503906e+02, 2.847684631347656e+02, 2.851049194335938e+02, 2.855051574707031e+02, 2.85962890625e+02, 2.864708557128906e+02, 2.870211181640625e+02, 2.876049194335938e+02, 2.882131042480469e+02, 2.888360595703125e+02, 2.894639587402344e+02, 2.900869140625e+02, 2.906950988769531e+02, 2.912789001464844e+02, 2.918291320800781e+02, 2.923371276855469e+02, 2.927948303222656e+02, 2.931950988769531e+02, 2.935315246582031e+02, 2.937988891601562e+02, 2.93992919921875e+02, 2.941105651855469e+02, 2.941499938964844e+02, 2.941105651855469e+02, 2.93992919921875e+02, 2.937988891601562e+02, 2.935315246582031e+02, 2.931950988769531e+02, 2.927948303222656e+02, 2.923371276855469e+02, 2.918291320800781e+02, 2.912789001464844e+02, 2.906950988769531e+02, 2.900869140625e+02, 2.894639587402344e+02, 2.888360595703125e+02, 2.882131042480469e+02, 2.876049194335938e+02, 2.870211181640625e+02, 2.864708557128906e+02, 2.85962890625e+02, 2.855051574707031e+02, 2.851049194335938e+02, 2.847684631347656e+02, 2.845011291503906e+02, 2.843070983886719e+02, 2.841894226074219e+02, 2.841499938964844e+02, 2.841894226074219e+02, 2.843070983886719e+02, 2.845011291503906e+02, 2.847684631347656e+02, 2.851049194335938e+02, 2.855051574707031e+02, 2.85962890625e+02, 2.864708557128906e+02, 2.870211181640625e+02, 2.876049194335938e+02, 2.882131042480469e+02, 2.888360595703125e+02, 2.894639587402344e+02, 2.900869140625e+02, 2.906950988769531e+02, 2.912789001464844e+02, 2.918291320800781e+02, 2.923371276855469e+02, 2.927948303222656e+02, 2.931950988769531e+02, 2.935315246582031e+02, 2.937988891601562e+02, 2.93992919921875e+02, 2.941105651855469e+02, 2.941499938964844e+02, 2.941105651855469e+02, 2.93992919921875e+02, 2.937988891601562e+02, 2.935315246582031e+02, 2.931950988769531e+02, 2.927948303222656e+02, 2.923371276855469e+02, 2.918291320800781e+02, 2.912789001464844e+02, 2.906950988769531e+02, 2.900869140625e+02, 2.894639587402344e+02, 2.888360595703125e+02, 2.882131042480469e+02, 2.876049194335938e+02, 2.870211181640625e+02, 2.864708557128906e+02, 2.85962890625e+02, 2.855051574707031e+02, 2.851049194335938e+02, 2.847684631347656e+02, 2.845011291503906e+02, 2.843070983886719e+02, 2.841894226074219e+02, 2.841499938964844e+02] -TVol.T=[2.891499938964844e+02, 2.891552429199219e+02, 2.891502380371094e+02, 2.891507873535156e+02, 2.891510314941406e+02, 2.891512756347656e+02, 2.891514892578125e+02, 2.891516723632812e+02, 2.8915185546875e+02, 2.891519775390625e+02, 2.891520690917969e+02, 2.891521606445312e+02, 2.891521911621094e+02, 2.891802368164062e+02, 2.893769836425781e+02, 2.925571594238281e+02, 2.931549377441406e+02, 2.9315087890625e+02, 2.931517028808594e+02, 2.931515197753906e+02, 2.9315234375e+02, 2.932249450683594e+02, 2.933701477050781e+02, 2.935419921875e+02, 2.937080078125e+02, 2.938453063964844e+02, 2.9393798828125e+02, 2.939751586914062e+02, 2.939498291015625e+02, 2.938581237792969e+02, 2.936984558105469e+02, 2.934713439941406e+02, 2.931789855957031e+02, 2.931484680175781e+02, 2.931480102539062e+02, 2.931479187011719e+02, 2.931478576660156e+02, 2.931478271484375e+02, 2.931478271484375e+02, 2.931478576660156e+02, 2.923747253417969e+02, 2.907518615722656e+02, 2.894662170410156e+02, 2.891388549804688e+02, 2.891487121582031e+02, 2.891487121582031e+02, 2.8914892578125e+02, 2.89149169921875e+02, 2.891494445800781e+02, 2.891497192382812e+02, 2.891499938964844e+02, 2.891502685546875e+02, 2.891505432128906e+02, 2.891507873535156e+02, 2.891510314941406e+02, 2.891512756347656e+02, 2.891514892578125e+02, 2.891516723632812e+02, 2.891518249511719e+02, 2.891519775390625e+02, 2.891520690917969e+02, 2.891521301269531e+02, 2.891521911621094e+02, 2.891802368164062e+02, 2.893769836425781e+02, 2.925571594238281e+02, 2.931549377441406e+02, 2.9315087890625e+02, 2.931517028808594e+02, 2.931515197753906e+02, 2.931523132324219e+02, 2.932249450683594e+02, 2.933701782226562e+02, 2.935420227050781e+02, 2.937080078125e+02, 2.938453063964844e+02, 2.939379577636719e+02, 2.9397509765625e+02, 2.939497680664062e+02, 2.938580627441406e+02, 2.936983947753906e+02, 2.934712829589844e+02, 2.93178955078125e+02, 2.931484375e+02, 2.931479797363281e+02, 2.931479187011719e+02, 2.931478576660156e+02, 2.931478271484375e+02, 2.931478271484375e+02, 2.931478576660156e+02, 2.923747253417969e+02, 2.907518615722656e+02, 2.894662170410156e+02, 2.891388244628906e+02, 2.891487121582031e+02, 2.891487121582031e+02, 2.8914892578125e+02, 2.89149169921875e+02, 2.891494445800781e+02, 2.891497192382812e+02, 2.891499938964844e+02] -THeaOut.T=[2.891499938964844e+02, 2.905536193847656e+02, 2.904776000976562e+02, 2.90424072265625e+02, 2.903511962890625e+02, 2.902593688964844e+02, 2.901500549316406e+02, 2.900249633789062e+02, 2.898860473632812e+02, 2.897355651855469e+02, 2.895758056640625e+02, 2.894093627929688e+02, 2.892388305664062e+02, 2.891783142089844e+02, 2.893721313476562e+02, 2.979071655273438e+02, 2.938719177246094e+02, 2.93512939453125e+02, 2.933744812011719e+02, 2.932491149902344e+02, 2.931520690917969e+02, 2.932228393554688e+02, 2.933672180175781e+02, 2.935388793945312e+02, 2.937052307128906e+02, 2.938432006835938e+02, 2.93936767578125e+02, 2.939750061035156e+02, 2.939508666992188e+02, 2.938603515625e+02, 2.93701904296875e+02, 2.934759826660156e+02, 2.931847839355469e+02, 2.935198364257812e+02, 2.936596374511719e+02, 2.938193359375e+02, 2.9398583984375e+02, 2.941563110351562e+02, 2.943283081054688e+02, 2.944989318847656e+02, 2.924078063964844e+02, 2.907777099609375e+02, 2.894869384765625e+02, 2.900108337402344e+02, 2.901439514160156e+02, 2.902559509277344e+02, 2.903484191894531e+02, 2.904219665527344e+02, 2.904753723144531e+02, 2.905081481933594e+02, 2.905192260742188e+02, 2.905087585449219e+02, 2.904768371582031e+02, 2.904240417480469e+02, 2.903511352539062e+02, 2.902593383789062e+02, 2.901500244140625e+02, 2.900249633789062e+02, 2.898860473632812e+02, 2.89735595703125e+02, 2.895758056640625e+02, 2.89409423828125e+02, 2.892388305664062e+02, 2.891783447265625e+02, 2.893721008300781e+02, 2.979071655273438e+02, 2.938721313476562e+02, 2.935128784179688e+02, 2.933744812011719e+02, 2.932490844726562e+02, 2.931520690917969e+02, 2.932228393554688e+02, 2.933672180175781e+02, 2.935389099121094e+02, 2.937052307128906e+02, 2.938432006835938e+02, 2.93936767578125e+02, 2.939749450683594e+02, 2.939508056640625e+02, 2.938602905273438e+02, 2.937018432617188e+02, 2.934759216308594e+02, 2.931847534179688e+02, 2.9352001953125e+02, 2.936595764160156e+02, 2.938193359375e+02, 2.939857482910156e+02, 2.941563110351562e+02, 2.943283386230469e+02, 2.944989013671875e+02, 2.924078063964844e+02, 2.907777099609375e+02, 2.894869384765625e+02, 2.900109252929688e+02, 2.901439208984375e+02, 2.902560119628906e+02, 2.90348388671875e+02, 2.904219665527344e+02, 2.904754638671875e+02, 2.905079956054688e+02, 2.905191345214844e+02] -hea.Q_flow=[0e+00, 2.735466613769531e+02, 2.617063903808594e+02, 2.509040222167969e+02, 2.364073028564453e+02, 2.181869506835938e+02, 1.965241546630859e+02, 1.717627716064453e+02, 1.442914733886719e+02, 1.145451812744141e+02, 8.299182891845703e+01, 5.012946319580078e+01, 1.647669792175293e+01, 0e+00, 0e+00, 1.08e+03, 1.364735412597656e+02, 7.118145751953119e+01, 4.346450805664062e+01, 1.883429336547852e+01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.34931640625e+01, 1.014683532714845e+02, 1.329985198974608e+02, 1.658687591552734e+02, 1.995116424560547e+02, 2.334307708740234e+02, 2.670633850097656e+02, 0e+00, 0e+00, 0e+00, 1.752845611572266e+02, 1.966855163574219e+02, 2.187367248535156e+02, 2.368638153076172e+02, 2.512543182373047e+02, 2.616580200195312e+02, 2.679931945800781e+02, 2.700484924316406e+02, 2.678502807617188e+02, 2.614307250976562e+02, 2.508923492431641e+02, 2.3640087890625e+02, 2.181833343505858e+02, 1.965254211425779e+02, 1.717661285400393e+02, 1.442932281494141e+02, 1.145546188354492e+02, 8.299350738525391e+01, 5.01427116394043e+01, 1.64827823638916e+01, 0e+00, 0e+00, 1.08e+03, 1.365142822265625e+02, 7.117060852050781e+01, 4.347146606445291e+01, 1.882967376709004e+01, 5.484501741648273e-14, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.353297424316406e+01, 1.014636154174805e+02, 1.329958801269531e+02, 1.658518524169922e+02, 1.995042266845703e+02, 2.334302062988281e+02, 2.670569458007812e+02, 0e+00, 0e+00, 0e+00, 1.753034515380859e+02, 1.966776885986328e+02, 2.187481994628906e+02, 2.368625030517578e+02, 2.512526702880859e+02, 2.616769714355469e+02, 2.679642333984375e+02, 2.700322570800781e+02] +TVol.T=[2.891499938964844e+02, 2.891552429199219e+02, 2.891502380371094e+02, 2.891507873535156e+02, 2.891510314941406e+02, 2.891512756347656e+02, 2.891514892578125e+02, 2.891516723632812e+02, 2.891518249511719e+02, 2.891519775390625e+02, 2.891520690917969e+02, 2.891521301269531e+02, 2.891521606445312e+02, 2.891802368164062e+02, 2.893769836425781e+02, 2.925571594238281e+02, 2.931549377441406e+02, 2.9315087890625e+02, 2.931517028808594e+02, 2.931515197753906e+02, 2.931523132324219e+02, 2.932249450683594e+02, 2.933702087402344e+02, 2.935420532226562e+02, 2.937080383300781e+02, 2.938453369140625e+02, 2.9393798828125e+02, 2.939751281738281e+02, 2.939498291015625e+02, 2.938580932617188e+02, 2.936984252929688e+02, 2.934713134765625e+02, 2.931789855957031e+02, 2.931484375e+02, 2.931479797363281e+02, 2.931479187011719e+02, 2.931478576660156e+02, 2.931478271484375e+02, 2.931477966308594e+02, 2.931478576660156e+02, 2.923747253417969e+02, 2.907518615722656e+02, 2.894661865234375e+02, 2.891388244628906e+02, 2.891487121582031e+02, 2.891487121582031e+02, 2.8914892578125e+02, 2.89149169921875e+02, 2.891494445800781e+02, 2.891497192382812e+02, 2.891499938964844e+02, 2.891502685546875e+02, 2.891505126953125e+02, 2.891507873535156e+02, 2.891510314941406e+02, 2.891512756347656e+02, 2.891514892578125e+02, 2.891516723632812e+02, 2.891518249511719e+02, 2.891519775390625e+02, 2.891520690917969e+02, 2.891521301269531e+02, 2.891521911621094e+02, 2.891802368164062e+02, 2.89376953125e+02, 2.9255712890625e+02, 2.931549377441406e+02, 2.9315087890625e+02, 2.931517028808594e+02, 2.931515197753906e+02, 2.931523132324219e+02, 2.932249450683594e+02, 2.933702392578125e+02, 2.935420532226562e+02, 2.937080383300781e+02, 2.938453369140625e+02, 2.939379272460938e+02, 2.939750671386719e+02, 2.939497680664062e+02, 2.938580322265625e+02, 2.936983642578125e+02, 2.934712524414062e+02, 2.931789245605469e+02, 2.931484375e+02, 2.931479797363281e+02, 2.931479187011719e+02, 2.931478576660156e+02, 2.931478271484375e+02, 2.931478271484375e+02, 2.931478576660156e+02, 2.923747253417969e+02, 2.907518615722656e+02, 2.894661865234375e+02, 2.891388549804688e+02, 2.891487121582031e+02, 2.891487121582031e+02, 2.8914892578125e+02, 2.89149169921875e+02, 2.891494445800781e+02, 2.891497192382812e+02, 2.891499938964844e+02] +THeaOut.T=[2.891499938964844e+02, 2.905536193847656e+02, 2.904776306152344e+02, 2.904240417480469e+02, 2.903511962890625e+02, 2.902593994140625e+02, 2.901500854492188e+02, 2.900249938964844e+02, 2.898860778808594e+02, 2.897355651855469e+02, 2.895758972167969e+02, 2.894093322753906e+02, 2.892388610839844e+02, 2.891783142089844e+02, 2.893721313476562e+02, 2.979071960449219e+02, 2.938719787597656e+02, 2.93512939453125e+02, 2.933744812011719e+02, 2.932491149902344e+02, 2.931520690917969e+02, 2.932228393554688e+02, 2.933672485351562e+02, 2.935389404296875e+02, 2.937052612304688e+02, 2.938432312011719e+02, 2.93936767578125e+02, 2.939750061035156e+02, 2.939508361816406e+02, 2.938603210449219e+02, 2.937018737792969e+02, 2.934759521484375e+02, 2.931847534179688e+02, 2.9352001953125e+02, 2.936595764160156e+02, 2.938193664550781e+02, 2.939858093261719e+02, 2.941564025878906e+02, 2.943282165527344e+02, 2.944988403320312e+02, 2.924078063964844e+02, 2.907777099609375e+02, 2.894869384765625e+02, 2.900109252929688e+02, 2.901439208984375e+02, 2.902560119628906e+02, 2.90348388671875e+02, 2.904219360351562e+02, 2.904754638671875e+02, 2.905079956054688e+02, 2.905191345214844e+02, 2.905086975097656e+02, 2.904768676757812e+02, 2.904241027832031e+02, 2.903511657714844e+02, 2.902593383789062e+02, 2.901500549316406e+02, 2.900249633789062e+02, 2.898860778808594e+02, 2.897355346679688e+02, 2.895758056640625e+02, 2.894093933105469e+02, 2.892388610839844e+02, 2.891783142089844e+02, 2.893721313476562e+02, 2.979071350097656e+02, 2.938721313476562e+02, 2.935129089355469e+02, 2.9337451171875e+02, 2.932490844726562e+02, 2.931520385742188e+02, 2.932228393554688e+02, 2.933672790527344e+02, 2.935389404296875e+02, 2.937052307128906e+02, 2.938432006835938e+02, 2.939367370605469e+02, 2.939749450683594e+02, 2.939507751464844e+02, 2.938602600097656e+02, 2.937018127441406e+02, 2.934758911132812e+02, 2.931847229003906e+02, 2.935199890136719e+02, 2.936595764160156e+02, 2.938193664550781e+02, 2.939858093261719e+02, 2.941563720703125e+02, 2.943281555175781e+02, 2.944988403320312e+02, 2.924077758789062e+02, 2.907777099609375e+02, 2.894869384765625e+02, 2.900111694335938e+02, 2.901439514160156e+02, 2.902559814453125e+02, 2.903484191894531e+02, 2.904219360351562e+02, 2.904754028320312e+02, 2.905079345703125e+02, 2.905190734863281e+02] +hea.Q_flow=[0e+00, 2.735514221191406e+02, 2.617113037109375e+02, 2.508968353271484e+02, 2.364153747558594e+02, 2.181974487304688e+02, 1.965351104736328e+02, 1.717710723876953e+02, 1.442974395751953e+02, 1.145488128662109e+02, 8.300727081298828e+01, 5.012912368774414e+01, 1.649258041381836e+01, 0e+00, 0e+00, 1.08e+03, 1.364828643798828e+02, 7.117877960205072e+01, 4.346701049804688e+01, 1.8832763671875e+01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.353146362304688e+01, 1.014656143188478e+02, 1.330048065185545e+02, 1.658587493896484e+02, 1.995254364013672e+02, 2.334222259521484e+02, 2.670507507324219e+02, 0e+00, 0e+00, 0e+00, 1.75303955078125e+02, 1.966775817871094e+02, 2.187484588623047e+02, 2.368617858886719e+02, 2.512510681152344e+02, 2.616770324707031e+02, 2.679672241210938e+02, 2.700325622558594e+02, 2.678479614257812e+02, 2.614415283203125e+02, 2.509045104980469e+02, 2.364060363769531e+02, 2.181846466064451e+02, 1.965281982421873e+02, 1.717695770263674e+02, 1.442959289550781e+02, 1.14546875e+02, 8.299698638916016e+01, 5.014008712768555e+01, 1.648790740966797e+01, 0e+00, 0e+00, 1.08e+03, 1.365145263671875e+02, 7.117420196533203e+01, 4.347166824340799e+01, 1.882853698730489e+01, 5.506706202140776e-14, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.352573394775391e+01, 1.014649810791016e+02, 1.33003173828125e+02, 1.658591613769531e+02, 1.995229187011719e+02, 2.334048461914062e+02, 2.670480346679688e+02, 0e+00, 0e+00, 0e+00, 1.753431701660156e+02, 1.966870422363281e+02, 2.187445526123047e+02, 2.368639068603516e+02, 2.512498016357422e+02, 2.616694946289062e+02, 2.679602661132812e+02, 2.700237731933594e+02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatExchangers_Examples_DryCoilEffectivenessNTUPControl.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatExchangers_Examples_DryCoilEffectivenessNTUPControl.txt index d02ed2551e..5c2166097a 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatExchangers_Examples_DryCoilEffectivenessNTUPControl.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatExchangers_Examples_DryCoilEffectivenessNTUPControl.txt @@ -1,7 +1,7 @@ -last-generated=2021-05-19 +last-generated=2022-05-23 statistics-initialization= { - "nonlinear": "0, 0, 1", + "nonlinear": "0, 1", "numerical Jacobians": "0" } statistics-simulation= @@ -13,12 +13,12 @@ statistics-simulation= } time=[0e+00, 3.6e+03] P.u_s=[3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02] -P.u_m=[2.931499938964844e+02, 2.974213562011719e+02, 2.991560363769531e+02, 2.999032592773438e+02, 3.000382995605469e+02, 3.001161193847656e+02, 3.00136962890625e+02, 3.001456604003906e+02, 3.001484069824219e+02, 3.001494445800781e+02, 3.001498107910156e+02, 3.001499328613281e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 2.960334167480469e+02, 2.954539489746094e+02, 2.953346557617188e+02, 2.952474975585938e+02, 2.952000122070312e+02, 2.951759643554688e+02, 2.951635437011719e+02, 2.951570739746094e+02, 2.951536865234375e+02, 2.951519165039062e+02, 2.951510009765625e+02, 2.951505126953125e+02, 2.951502685546875e+02, 2.95150146484375e+02, 2.951500854492188e+02, 2.951500244140625e+02, 2.951500244140625e+02, 2.951500244140625e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02] +P.u_m=[2.931499938964844e+02, 2.974283142089844e+02, 2.991485290527344e+02, 2.999058532714844e+02, 3.000377807617188e+02, 3.001163940429688e+02, 3.00136962890625e+02, 3.001456909179688e+02, 3.001484375e+02, 3.001494750976562e+02, 3.001498107910156e+02, 3.001499328613281e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 2.960359191894531e+02, 2.954528198242188e+02, 2.953340454101562e+02, 2.952472229003906e+02, 2.951998291015625e+02, 2.951758422851562e+02, 2.951634521484375e+02, 2.951570129394531e+02, 2.951536560058594e+02, 2.951519165039062e+02, 2.951510009765625e+02, 2.951505126953125e+02, 2.951502685546875e+02, 2.95150146484375e+02, 2.951500854492188e+02, 2.951500244140625e+02, 2.951500244140625e+02, 2.951500244140625e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02] hex.sta_a1.T=[3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02] -hex.sta_b1.T=[3.224120178222656e+02, 3.051651916503906e+02, 3.077429504394531e+02, 3.085579223632812e+02, 3.087304992675781e+02, 3.088185729980469e+02, 3.088434448242188e+02, 3.088534851074219e+02, 3.08856689453125e+02, 3.0885791015625e+02, 3.088583068847656e+02, 3.088584594726562e+02, 3.088585205078125e+02, 3.088585205078125e+02, 3.088585510253906e+02, 3.088585205078125e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585205078125e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585205078125e+02, 3.088585205078125e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.015624694824219e+02, 2.990969543457031e+02, 2.9849072265625e+02, 2.980428466796875e+02, 2.977993469238281e+02, 2.97676025390625e+02, 2.976123352050781e+02, 2.975791320800781e+02, 2.975618286132812e+02, 2.975528259277344e+02, 2.975481262207031e+02, 2.97545654296875e+02, 2.975443725585938e+02, 2.97543701171875e+02, 2.975433349609375e+02, 2.975431518554688e+02, 2.975430603027344e+02, 2.975430297851562e+02, 2.975429992675781e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.975429382324219e+02, 2.975429382324219e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02] +hex.sta_b1.T=[3.224120178222656e+02, 3.051754150390625e+02, 3.077341918945312e+02, 3.085609130859375e+02, 3.087298889160156e+02, 3.088188781738281e+02, 3.088434448242188e+02, 3.08853515625e+02, 3.08856689453125e+02, 3.0885791015625e+02, 3.088583068847656e+02, 3.088584594726562e+02, 3.088585205078125e+02, 3.088585205078125e+02, 3.088585205078125e+02, 3.088585510253906e+02, 3.088585205078125e+02, 3.088585205078125e+02, 3.088585205078125e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.015717163085938e+02, 2.990910949707031e+02, 2.984875183105469e+02, 2.980413513183594e+02, 2.977983703613281e+02, 2.976754455566406e+02, 2.976119689941406e+02, 2.975789184570312e+02, 2.975617065429688e+02, 2.97552734375e+02, 2.975480651855469e+02, 2.975456237792969e+02, 2.975443420410156e+02, 2.97543701171875e+02, 2.975433654785156e+02, 2.975431518554688e+02, 2.975430603027344e+02, 2.975430297851562e+02, 2.975429992675781e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02] hex.sta_a2.T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02] -hex.sta_b2.T=[3.122243957519531e+02, 2.973274841308594e+02, 2.992330932617188e+02, 2.99900390625e+02, 3.000434875488281e+02, 3.001167297363281e+02, 3.001374206542969e+02, 3.001457824707031e+02, 3.001484680175781e+02, 3.001494750976562e+02, 3.001498107910156e+02, 3.001499328613281e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 2.959868774414062e+02, 2.954497985839844e+02, 2.953316955566406e+02, 2.952456970214844e+02, 2.951990966796875e+02, 2.951755065917969e+02, 2.951632995605469e+02, 2.951569213867188e+02, 2.951536254882812e+02, 2.951518859863281e+02, 2.951510009765625e+02, 2.951505126953125e+02, 2.951502685546875e+02, 2.95150146484375e+02, 2.951500854492188e+02, 2.951500244140625e+02, 2.951500244140625e+02, 2.951500244140625e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02] -hex.Q1_flow=[-2.03193328125e+05, -4.450139453125e+04, -6.48011015625e+04, -7.19098359375e+04, -7.34339921875e+04, -7.42143046875e+04, -7.4434734375e+04, -7.45238125e+04, -7.45522578125e+04, -7.45630546875e+04, -7.456665625e+04, -7.4568e+04, -7.45685234375e+04, -7.4568546875e+04, -7.456871875e+04, -7.45686328125e+04, -7.456871875e+04, -7.4568734375e+04, -7.45686640625e+04, -7.4568703125e+04, -7.45687109375e+04, -7.4568671875e+04, -7.45686640625e+04, -7.45686875e+04, -7.45686953125e+04, -7.45686953125e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -3.022034765625e+04, -2.4498849609375e+04, -2.324080859375e+04, -2.2324619140625e+04, -2.1828298828125e+04, -2.1576890625e+04, -2.1446958984375e+04, -2.1379208984375e+04, -2.13438828125e+04, -2.1325458984375e+04, -2.1315873046875e+04, -2.1310826171875e+04, -2.1308228515625e+04, -2.130684765625e+04, -2.1306125e+04, -2.130575390625e+04, -2.1305552734375e+04, -2.13054609375e+04, -2.13054140625e+04, -2.130537890625e+04, -2.1305353515625e+04, -2.13053359375e+04, -2.130532421875e+04, -2.1305326171875e+04, -2.1305328125e+04, -2.1305333984375e+04, -2.1305337890625e+04, -2.130533984375e+04, -2.130533984375e+04, -2.1305341796875e+04, -2.130534375e+04, -2.130534375e+04, -2.1305345703125e+04, -2.1305345703125e+04, -2.130534375e+04, -2.130534375e+04, -2.1305341796875e+04, -2.1305341796875e+04, -2.1305341796875e+04, -2.130533984375e+04, -2.130533984375e+04, -2.130533984375e+04, -2.130533984375e+04, -2.1305337890625e+04, -2.1305337890625e+04, -2.1305337890625e+04, -2.1305337890625e+04, -2.1305337890625e+04, -2.1305337890625e+04, -2.1305337890625e+04] -hex.Q2_flow=[2.03193328125e+05, 4.450139453125e+04, 6.48011015625e+04, 7.19098359375e+04, 7.34339921875e+04, 7.42143046875e+04, 7.4434734375e+04, 7.45238125e+04, 7.45522578125e+04, 7.45630546875e+04, 7.456665625e+04, 7.4568e+04, 7.45685234375e+04, 7.4568546875e+04, 7.456871875e+04, 7.45686328125e+04, 7.456871875e+04, 7.4568734375e+04, 7.45686640625e+04, 7.4568703125e+04, 7.45687109375e+04, 7.4568671875e+04, 7.45686640625e+04, 7.45686875e+04, 7.45686953125e+04, 7.45686953125e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 3.022034765625e+04, 2.4498849609375e+04, 2.324080859375e+04, 2.2324619140625e+04, 2.1828298828125e+04, 2.1576890625e+04, 2.1446958984375e+04, 2.1379208984375e+04, 2.13438828125e+04, 2.1325458984375e+04, 2.1315873046875e+04, 2.1310826171875e+04, 2.1308228515625e+04, 2.130684765625e+04, 2.1306125e+04, 2.130575390625e+04, 2.1305552734375e+04, 2.13054609375e+04, 2.13054140625e+04, 2.130537890625e+04, 2.1305353515625e+04, 2.13053359375e+04, 2.130532421875e+04, 2.1305326171875e+04, 2.1305328125e+04, 2.1305333984375e+04, 2.1305337890625e+04, 2.130533984375e+04, 2.130533984375e+04, 2.1305341796875e+04, 2.130534375e+04, 2.130534375e+04, 2.1305345703125e+04, 2.1305345703125e+04, 2.130534375e+04, 2.130534375e+04, 2.1305341796875e+04, 2.1305341796875e+04, 2.1305341796875e+04, 2.130533984375e+04, 2.130533984375e+04, 2.130533984375e+04, 2.130533984375e+04, 2.1305337890625e+04, 2.1305337890625e+04, 2.1305337890625e+04, 2.1305337890625e+04, 2.1305337890625e+04, 2.1305337890625e+04, 2.1305337890625e+04] -hex.m1_flow=[4.522670269012451e+00, 3.800666630268097e-01, 6.09588086605072e-01, 6.988778710365295e-01, 7.187347412109375e-01, 7.290018796920776e-01, 7.319146990776062e-01, 7.330934405326843e-01, 7.334699630737305e-01, 7.336128950119019e-01, 7.336606383323669e-01, 7.336784601211548e-01, 7.336853742599487e-01, 7.336856126785278e-01, 7.336879968643188e-01, 7.336868047714233e-01, 7.336879968643188e-01, 7.336881756782532e-01, 7.33687162399292e-01, 7.33687698841095e-01, 7.336878180503845e-01, 7.336872816085815e-01, 7.336872220039368e-01, 7.336875200271606e-01, 7.33687698841095e-01, 7.336876392364502e-01, 7.336875796318054e-01, 7.336875200271606e-01, 7.336875200271606e-01, 7.336875200271606e-01, 7.336875200271606e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 2.286609411239624e-01, 1.719483137130737e-01, 1.602654457092285e-01, 1.519836336374283e-01, 1.475811749696731e-01, 1.453742533922195e-01, 1.442398279905319e-01, 1.436499953269958e-01, 1.433428972959518e-01, 1.431828588247299e-01, 1.430996209383011e-01, 1.430558115243912e-01, 1.430332660675049e-01, 1.43021285533905e-01, 1.430149972438812e-01, 1.430117785930634e-01, 1.430100351572037e-01, 1.430092453956604e-01, 1.43008828163147e-01, 1.430085301399231e-01, 1.430083066225052e-01, 1.430081576108932e-01, 1.430080533027649e-01, 1.430080831050873e-01, 1.430080980062485e-01, 1.430081427097321e-01, 1.430081576108932e-01, 1.430081874132156e-01, 1.430082023143768e-01, 1.43008217215538e-01, 1.43008217215538e-01, 1.430082321166992e-01, 1.430082321166992e-01, 1.430082321166992e-01, 1.430082321166992e-01, 1.43008217215538e-01, 1.43008217215538e-01, 1.430082023143768e-01, 1.430082023143768e-01, 1.430081874132156e-01, 1.430081874132156e-01, 1.430081874132156e-01, 1.430081874132156e-01, 1.430081874132156e-01, 1.430081725120544e-01, 1.430081725120544e-01, 1.430081725120544e-01, 1.430081725120544e-01, 1.430081725120544e-01, 1.430081874132156e-01] +hex.sta_b2.T=[3.122243957519531e+02, 2.973334045410156e+02, 2.992259826660156e+02, 2.999028930664062e+02, 3.000429992675781e+02, 3.001169738769531e+02, 3.001374206542969e+02, 3.001458129882812e+02, 3.001484680175781e+02, 3.001494750976562e+02, 3.001498107910156e+02, 3.001499328613281e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 2.959891967773438e+02, 2.954486389160156e+02, 2.953310852050781e+02, 2.952453918457031e+02, 2.951989135742188e+02, 2.951753845214844e+02, 2.951632385253906e+02, 2.951568908691406e+02, 2.951535949707031e+02, 2.951518859863281e+02, 2.951509704589844e+02, 2.951505126953125e+02, 2.951502685546875e+02, 2.95150146484375e+02, 2.951500854492188e+02, 2.951500244140625e+02, 2.951500244140625e+02, 2.951500244140625e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02] +hex.Q1_flow=[-2.03193328125e+05, -4.456452734375e+04, -6.472556640625e+04, -7.1936234375e+04, -7.34287109375e+04, -7.4217e+04, -7.44346875e+04, -7.45240234375e+04, -7.4552421875e+04, -7.4563109375e+04, -7.45667578125e+04, -7.4567984375e+04, -7.4568484375e+04, -7.4568578125e+04, -7.45686484375e+04, -7.4568703125e+04, -7.4568671875e+04, -7.4568671875e+04, -7.45686796875e+04, -7.45686875e+04, -7.45686953125e+04, -7.45686953125e+04, -7.45686953125e+04, -7.45686953125e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -3.0244904296875e+04, -2.4486568359375e+04, -2.32342578125e+04, -2.2321564453125e+04, -2.1826306640625e+04, -2.157566015625e+04, -2.1446205078125e+04, -2.1378751953125e+04, -2.1343609375e+04, -2.13253046875e+04, -2.1315751953125e+04, -2.1310771484375e+04, -2.1308171875e+04, -2.1306837890625e+04, -2.1306142578125e+04, -2.130574609375e+04, -2.1305552734375e+04, -2.13054609375e+04, -2.130539453125e+04, -2.1305369140625e+04, -2.1305361328125e+04, -2.130534375e+04, -2.1305333984375e+04, -2.1305333984375e+04, -2.130533984375e+04, -2.130533984375e+04, -2.1305337890625e+04, -2.130533203125e+04, -2.1305333984375e+04, -2.1305333984375e+04, -2.1305337890625e+04, -2.130533984375e+04, -2.1305341796875e+04, -2.130533984375e+04, -2.1305337890625e+04, -2.1305337890625e+04, -2.1305337890625e+04, -2.1305337890625e+04, -2.130533984375e+04, -2.1305341796875e+04, -2.1305341796875e+04, -2.1305341796875e+04, -2.1305341796875e+04, -2.1305341796875e+04, -2.130533984375e+04, -2.130533984375e+04, -2.130533984375e+04, -2.1305337890625e+04, -2.130533984375e+04, -2.130533984375e+04] +hex.Q2_flow=[2.03193328125e+05, 4.456452734375e+04, 6.472556640625e+04, 7.1936234375e+04, 7.34287109375e+04, 7.4217e+04, 7.44346875e+04, 7.45240234375e+04, 7.4552421875e+04, 7.4563109375e+04, 7.45667578125e+04, 7.4567984375e+04, 7.4568484375e+04, 7.4568578125e+04, 7.45686484375e+04, 7.4568703125e+04, 7.4568671875e+04, 7.4568671875e+04, 7.45686796875e+04, 7.45686875e+04, 7.45686953125e+04, 7.45686953125e+04, 7.45686953125e+04, 7.45686953125e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 3.0244904296875e+04, 2.4486568359375e+04, 2.32342578125e+04, 2.2321564453125e+04, 2.1826306640625e+04, 2.157566015625e+04, 2.1446205078125e+04, 2.1378751953125e+04, 2.1343609375e+04, 2.13253046875e+04, 2.1315751953125e+04, 2.1310771484375e+04, 2.1308171875e+04, 2.1306837890625e+04, 2.1306142578125e+04, 2.130574609375e+04, 2.1305552734375e+04, 2.13054609375e+04, 2.130539453125e+04, 2.1305369140625e+04, 2.1305361328125e+04, 2.130534375e+04, 2.1305333984375e+04, 2.1305333984375e+04, 2.130533984375e+04, 2.130533984375e+04, 2.1305337890625e+04, 2.130533203125e+04, 2.1305333984375e+04, 2.1305333984375e+04, 2.1305337890625e+04, 2.130533984375e+04, 2.1305341796875e+04, 2.130533984375e+04, 2.1305337890625e+04, 2.1305337890625e+04, 2.1305337890625e+04, 2.1305337890625e+04, 2.130533984375e+04, 2.1305341796875e+04, 2.1305341796875e+04, 2.1305341796875e+04, 2.1305341796875e+04, 2.1305341796875e+04, 2.130533984375e+04, 2.130533984375e+04, 2.130533984375e+04, 2.1305337890625e+04, 2.130533984375e+04, 2.130533984375e+04] +hex.m1_flow=[4.522670269012451e+00, 3.807449340820312e-01, 6.0866779088974e-01, 6.992195844650269e-01, 7.186655402183533e-01, 7.290374040603638e-01, 7.319140434265137e-01, 7.33096182346344e-01, 7.334721684455872e-01, 7.336136102676392e-01, 7.336620092391968e-01, 7.336781620979309e-01, 7.336848378181458e-01, 7.336861491203308e-01, 7.336870431900024e-01, 7.336877584457397e-01, 7.336872816085815e-01, 7.336872816085815e-01, 7.336874008178711e-01, 7.336875200271606e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 2.289137095212936e-01, 1.718326210975647e-01, 1.602055579423904e-01, 1.519563645124435e-01, 1.475636214017868e-01, 1.453634798526764e-01, 1.442332714796066e-01, 1.436460167169571e-01, 1.43340528011322e-01, 1.431815177202225e-01, 1.430985629558563e-01, 1.43055334687233e-01, 1.430327594280243e-01, 1.430211812257767e-01, 1.430151611566544e-01, 1.430117189884186e-01, 1.430100351572037e-01, 1.430092453956604e-01, 1.430086642503738e-01, 1.430084407329559e-01, 1.430083811283112e-01, 1.430082321166992e-01, 1.430081278085709e-01, 1.430081427097321e-01, 1.430081874132156e-01, 1.430082023143768e-01, 1.430081725120544e-01, 1.430081278085709e-01, 1.430081427097321e-01, 1.430081278085709e-01, 1.430081725120544e-01, 1.430081874132156e-01, 1.430082023143768e-01, 1.430082023143768e-01, 1.430081725120544e-01, 1.430081725120544e-01, 1.430081725120544e-01, 1.430081725120544e-01, 1.430081874132156e-01, 1.430082023143768e-01, 1.430082023143768e-01, 1.430082023143768e-01, 1.430082023143768e-01, 1.430082023143768e-01, 1.430081874132156e-01, 1.430081874132156e-01, 1.430081874132156e-01, 1.430081874132156e-01, 1.430081874132156e-01, 1.430081874132156e-01] hex.m2_flow=[1.05e+01, 1.05e+01] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatExchangers_Examples_HeatingRod.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatExchangers_Examples_HeatingRod.txt index 0a128d9a3c..2920584c42 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatExchangers_Examples_HeatingRod.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatExchangers_Examples_HeatingRod.txt @@ -1,4 +1,4 @@ -last-generated=2021-05-26 +last-generated=2022-05-23 statistics-simulation= { "linear": "0", @@ -9,6 +9,6 @@ statistics-simulation= time=[0e+00, 1.728e+05] TSet.y=[2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02] TOut.y=[2.841499938964844e+02, 2.841894226074219e+02, 2.843070983886719e+02, 2.845011291503906e+02, 2.847684631347656e+02, 2.851049194335938e+02, 2.855051574707031e+02, 2.85962890625e+02, 2.864708557128906e+02, 2.870211181640625e+02, 2.876049194335938e+02, 2.882131042480469e+02, 2.888360595703125e+02, 2.894639587402344e+02, 2.900869140625e+02, 2.906950988769531e+02, 2.912789001464844e+02, 2.918291320800781e+02, 2.923371276855469e+02, 2.927948303222656e+02, 2.931950988769531e+02, 2.935315246582031e+02, 2.937988891601562e+02, 2.93992919921875e+02, 2.941105651855469e+02, 2.941499938964844e+02, 2.941105651855469e+02, 2.93992919921875e+02, 2.937988891601562e+02, 2.935315246582031e+02, 2.931950988769531e+02, 2.927948303222656e+02, 2.923371276855469e+02, 2.918291320800781e+02, 2.912789001464844e+02, 2.906950988769531e+02, 2.900869140625e+02, 2.894639587402344e+02, 2.888360595703125e+02, 2.882131042480469e+02, 2.876049194335938e+02, 2.870211181640625e+02, 2.864708557128906e+02, 2.85962890625e+02, 2.855051574707031e+02, 2.851049194335938e+02, 2.847684631347656e+02, 2.845011291503906e+02, 2.843070983886719e+02, 2.841894226074219e+02, 2.841499938964844e+02, 2.841894226074219e+02, 2.843070983886719e+02, 2.845011291503906e+02, 2.847684631347656e+02, 2.851049194335938e+02, 2.855051574707031e+02, 2.85962890625e+02, 2.864708557128906e+02, 2.870211181640625e+02, 2.876049194335938e+02, 2.882131042480469e+02, 2.888360595703125e+02, 2.894639587402344e+02, 2.900869140625e+02, 2.906950988769531e+02, 2.912789001464844e+02, 2.918291320800781e+02, 2.923371276855469e+02, 2.927948303222656e+02, 2.931950988769531e+02, 2.935315246582031e+02, 2.937988891601562e+02, 2.93992919921875e+02, 2.941105651855469e+02, 2.941499938964844e+02, 2.941105651855469e+02, 2.93992919921875e+02, 2.937988891601562e+02, 2.935315246582031e+02, 2.931950988769531e+02, 2.927948303222656e+02, 2.923371276855469e+02, 2.918291320800781e+02, 2.912789001464844e+02, 2.906950988769531e+02, 2.900869140625e+02, 2.894639587402344e+02, 2.888360595703125e+02, 2.882131042480469e+02, 2.876049194335938e+02, 2.870211181640625e+02, 2.864708557128906e+02, 2.85962890625e+02, 2.855051574707031e+02, 2.851049194335938e+02, 2.847684631347656e+02, 2.845011291503906e+02, 2.843070983886719e+02, 2.841894226074219e+02, 2.841499938964844e+02] -TVol.T=[2.891499938964844e+02, 2.891498413085938e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891500244140625e+02, 2.891500244140625e+02, 2.891500244140625e+02, 2.891500244140625e+02, 2.891500244140625e+02, 2.891500244140625e+02, 2.891500244140625e+02, 2.891500244140625e+02, 2.891500244140625e+02, 2.891502685546875e+02, 2.891515808105469e+02, 2.893247680664062e+02, 2.897407836914062e+02, 2.901571350097656e+02, 2.905736999511719e+02, 2.909904174804688e+02, 2.914071655273438e+02, 2.918237915039062e+02, 2.922401733398438e+02, 2.926561889648438e+02, 2.930716857910156e+02, 2.931884765625e+02, 2.931904296875e+02, 2.931922302246094e+02, 2.931936645507812e+02, 2.931946411132812e+02, 2.931950073242188e+02, 2.93194580078125e+02, 2.931932678222656e+02, 2.931909790039062e+02, 2.931875915527344e+02, 2.931830444335938e+02, 2.931772766113281e+02, 2.931702575683594e+02, 2.931619262695312e+02, 2.9315234375e+02, 2.931450500488281e+02, 2.931329956054688e+02, 2.931198120117188e+02, 2.931055297851562e+02, 2.930903015136719e+02, 2.930742492675781e+02, 2.930574340820312e+02, 2.930400390625e+02, 2.930221862792969e+02, 2.930040893554688e+02, 2.929858093261719e+02, 2.92967529296875e+02, 2.929495239257812e+02, 2.929319458007812e+02, 2.929149169921875e+02, 2.928985290527344e+02, 2.928829040527344e+02, 2.928681335449219e+02, 2.928544006347656e+02, 2.928417358398438e+02, 2.928302917480469e+02, 2.928199768066406e+02, 2.928111267089844e+02, 2.928036804199219e+02, 2.927975769042969e+02, 2.929633178710938e+02, 2.931851196289062e+02, 2.931817932128906e+02, 2.931795349121094e+02, 2.931783142089844e+02, 2.931779479980469e+02, 2.931783447265625e+02, 2.931793823242188e+02, 2.931808776855469e+02, 2.931826782226562e+02, 2.931846618652344e+02, 2.931866149902344e+02, 2.931884155273438e+02, 2.931901245117188e+02, 2.931911926269531e+02, 2.931914672851562e+02, 2.9319091796875e+02, 2.93189453125e+02, 2.931870422363281e+02, 2.9318359375e+02, 2.931790161132812e+02, 2.931733093261719e+02, 2.931663818359375e+02, 2.931581726074219e+02, 2.931491394042969e+02, 2.931455993652344e+02, 2.93133544921875e+02, 2.931203308105469e+02, 2.931060791015625e+02, 2.930908508300781e+02, 2.930747680664062e+02, 2.930579528808594e+02, 2.930405578613281e+02, 2.93022705078125e+02, 2.930046081542969e+02, 2.929863586425781e+02] -THeaOut.T=[2.891499938964844e+02, 2.891500549316406e+02, 2.891502075195312e+02, 2.891502075195312e+02, 2.891502075195312e+02, 2.891501770019531e+02, 2.891501770019531e+02, 2.89150146484375e+02, 2.89150146484375e+02, 2.891501159667969e+02, 2.891500854492188e+02, 2.891500549316406e+02, 2.891500244140625e+02, 2.891502380371094e+02, 2.891515197753906e+02, 2.893262023925781e+02, 2.897422180175781e+02, 2.901585693359375e+02, 2.905751342773438e+02, 2.909918518066406e+02, 2.914085693359375e+02, 2.918251953125e+02, 2.922416076660156e+02, 2.926576232910156e+02, 2.930731201171875e+02, 2.931884460449219e+02, 2.931903991699219e+02, 2.931921997070312e+02, 2.931936645507812e+02, 2.931946411132812e+02, 2.931950073242188e+02, 2.931946105957031e+02, 2.931932983398438e+02, 2.931910400390625e+02, 2.931876831054688e+02, 2.931831359863281e+02, 2.931773986816406e+02, 2.931703796386719e+02, 2.931620788574219e+02, 2.931525268554688e+02, 2.93145263671875e+02, 2.931332397460938e+02, 2.931200561523438e+02, 2.931058044433594e+02, 2.930906066894531e+02, 2.930745239257812e+02, 2.930577392578125e+02, 2.930403442382812e+02, 2.930225219726562e+02, 2.9300439453125e+02, 2.929861450195312e+02, 2.929678344726562e+02, 2.929498596191406e+02, 2.929322814941406e+02, 2.929152221679688e+02, 2.928988037109375e+02, 2.928831787109375e+02, 2.92868408203125e+02, 2.928546142578125e+02, 2.928419494628906e+02, 2.928305053710938e+02, 2.928201599121094e+02, 2.92811279296875e+02, 2.928038024902344e+02, 2.927976684570312e+02, 2.929649047851562e+02, 2.931852111816406e+02, 2.931818542480469e+02, 2.931795654296875e+02, 2.931783142089844e+02, 2.931779479980469e+02, 2.931783447265625e+02, 2.931793518066406e+02, 2.931808471679688e+02, 2.931826477050781e+02, 2.931846313476562e+02, 2.931865844726562e+02, 2.931883850097656e+02, 2.931900939941406e+02, 2.93191162109375e+02, 2.931914672851562e+02, 2.931909484863281e+02, 2.931894836425781e+02, 2.931871032714844e+02, 2.931836547851562e+02, 2.931791076660156e+02, 2.931734313964844e+02, 2.931665344238281e+02, 2.931583251953125e+02, 2.931493225097656e+02, 2.931457824707031e+02, 2.931337585449219e+02, 2.931205749511719e+02, 2.931063232421875e+02, 2.930911254882812e+02, 2.930750427246094e+02, 2.930582580566406e+02, 2.930408630371094e+02, 2.930230407714844e+02, 2.930049133300781e+02, 2.929866943359375e+02] -Pel=[0e+00, 2.537832260131836e+01, 2.51815128326416e+01, 2.391186141967773e+01, 2.25770320892334e+01, 2.082236099243164e+01, 1.876030158996582e+01, 1.638795661926269e+01, 1.376486587524414e+01, 1.092699241638184e+01, 7.913140773773193e+00, 4.775206089019775e+00, 1.706844329833984e+00, 0e+00, 0e+00, 1.030927856445312e+03, 1.030927856445312e+03, 1.030927856445312e+03, 1.030927856445312e+03, 1.030927856445312e+03, 1.030927856445312e+03, 1.030927856445312e+03, 1.030927856445312e+03, 1.030927856445312e+03, 1.030927856445312e+03, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.030927856445312e+03, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 2.030120277404785e+01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +TVol.T=[2.891499938964844e+02, 2.891498413085938e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891500244140625e+02, 2.891500244140625e+02, 2.891500244140625e+02, 2.891500244140625e+02, 2.891500244140625e+02, 2.891500244140625e+02, 2.891500244140625e+02, 2.891500244140625e+02, 2.891500244140625e+02, 2.891502685546875e+02, 2.891515502929688e+02, 2.893247680664062e+02, 2.897407836914062e+02, 2.901571350097656e+02, 2.905736999511719e+02, 2.909904174804688e+02, 2.914071655273438e+02, 2.918237915039062e+02, 2.922401733398438e+02, 2.926561889648438e+02, 2.930716857910156e+02, 2.931881408691406e+02, 2.931901245117188e+02, 2.9319189453125e+02, 2.93193359375e+02, 2.931943359375e+02, 2.931947021484375e+02, 2.931942749023438e+02, 2.931929626464844e+02, 2.93190673828125e+02, 2.931872863769531e+02, 2.931827392578125e+02, 2.931769714355469e+02, 2.93169921875e+02, 2.9316162109375e+02, 2.931520385742188e+02, 2.931451721191406e+02, 2.931331176757812e+02, 2.931199035644531e+02, 2.931056518554688e+02, 2.930904235839844e+02, 2.930743408203125e+02, 2.930575256347656e+02, 2.930401306152344e+02, 2.930223083496094e+02, 2.93004150390625e+02, 2.929859008789062e+02, 2.929677124023438e+02, 2.929497680664062e+02, 2.929321594238281e+02, 2.929150390625e+02, 2.928985595703125e+02, 2.928828735351562e+02, 2.928681335449219e+02, 2.928542175292969e+02, 2.928415832519531e+02, 2.928302917480469e+02, 2.928202514648438e+02, 2.928115234375e+02, 2.928040771484375e+02, 2.927978515625e+02, 2.929635009765625e+02, 2.931851806640625e+02, 2.931818542480469e+02, 2.931795959472656e+02, 2.931783752441406e+02, 2.931780090332031e+02, 2.931784057617188e+02, 2.93179443359375e+02, 2.931809387207031e+02, 2.931827697753906e+02, 2.931847229003906e+02, 2.931866760253906e+02, 2.931884460449219e+02, 2.931899108886719e+02, 2.931908874511719e+02, 2.931912841796875e+02, 2.931908874511719e+02, 2.931895751953125e+02, 2.931872863769531e+02, 2.931838989257812e+02, 2.931793518066406e+02, 2.93173583984375e+02, 2.931665649414062e+02, 2.931582641601562e+02, 2.93149169921875e+02, 2.931455993652344e+02, 2.93133544921875e+02, 2.931203308105469e+02, 2.931060791015625e+02, 2.930908508300781e+02, 2.930747680664062e+02, 2.930579528808594e+02, 2.930405578613281e+02, 2.930227355957031e+02, 2.930046081542969e+02, 2.929863586425781e+02] +THeaOut.T=[2.891499938964844e+02, 2.891500549316406e+02, 2.891502075195312e+02, 2.891502075195312e+02, 2.891502075195312e+02, 2.891501770019531e+02, 2.891501770019531e+02, 2.89150146484375e+02, 2.89150146484375e+02, 2.891501159667969e+02, 2.891500854492188e+02, 2.891500549316406e+02, 2.891500244140625e+02, 2.891502380371094e+02, 2.891515197753906e+02, 2.893262023925781e+02, 2.897422180175781e+02, 2.901585693359375e+02, 2.905751342773438e+02, 2.909918212890625e+02, 2.914085693359375e+02, 2.918251953125e+02, 2.922416076660156e+02, 2.926576232910156e+02, 2.930731201171875e+02, 2.931881103515625e+02, 2.931900634765625e+02, 2.931918640136719e+02, 2.931933288574219e+02, 2.931943359375e+02, 2.931947021484375e+02, 2.931943054199219e+02, 2.931929931640625e+02, 2.931907043457031e+02, 2.931873474121094e+02, 2.931828308105469e+02, 2.931770935058594e+02, 2.931700744628906e+02, 2.931617736816406e+02, 2.931522216796875e+02, 2.931453552246094e+02, 2.931333312988281e+02, 2.931201477050781e+02, 2.931059265136719e+02, 2.930906982421875e+02, 2.930746459960938e+02, 2.930578308105469e+02, 2.930404357910156e+02, 2.930226135253906e+02, 2.930044860839844e+02, 2.929862365722656e+02, 2.929680480957031e+02, 2.929500732421875e+02, 2.929324645996094e+02, 2.929153442382812e+02, 2.928988647460938e+02, 2.928831481933594e+02, 2.928683776855469e+02, 2.928544616699219e+02, 2.928418273925781e+02, 2.928304748535156e+02, 2.928204345703125e+02, 2.928116760253906e+02, 2.9280419921875e+02, 2.927979431152344e+02, 2.929650573730469e+02, 2.931852722167969e+02, 2.93181884765625e+02, 2.931796264648438e+02, 2.931783752441406e+02, 2.931780090332031e+02, 2.931784057617188e+02, 2.931794128417969e+02, 2.93180908203125e+02, 2.931827087402344e+02, 2.931846923828125e+02, 2.931866455078125e+02, 2.931884155273438e+02, 2.931898803710938e+02, 2.931908874511719e+02, 2.931912841796875e+02, 2.931908874511719e+02, 2.931896057128906e+02, 2.931873474121094e+02, 2.931839599609375e+02, 2.93179443359375e+02, 2.931737060546875e+02, 2.931667175292969e+02, 2.931584167480469e+02, 2.931493835449219e+02, 2.931458129882812e+02, 2.931337585449219e+02, 2.931205749511719e+02, 2.931063537597656e+02, 2.930911254882812e+02, 2.930750732421875e+02, 2.930582580566406e+02, 2.930408630371094e+02, 2.930230407714844e+02, 2.930049438476562e+02, 2.929866943359375e+02] +Pel=[0e+00, 2.537812423706055e+01, 2.518207550048828e+01, 2.391185188293457e+01, 2.257701683044434e+01, 2.082238388061523e+01, 1.876025581359863e+01, 1.638795661926269e+01, 1.376489734649658e+01, 1.09269905090332e+01, 7.913133144378662e+00, 4.775211811065674e+00, 1.703271389007568e+00, 0e+00, 0e+00, 1.030927856445312e+03, 1.030927856445312e+03, 1.030927856445312e+03, 1.030927856445312e+03, 1.030927856445312e+03, 1.030927856445312e+03, 1.030927856445312e+03, 1.030927856445312e+03, 1.030927856445312e+03, 1.030927856445312e+03, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.030927856445312e+03, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.933403778076172e+01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatExchangers_Examples_WaterCooler_T.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatExchangers_Examples_WaterCooler_T.txt index c8574d5d3e..955bfda250 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatExchangers_Examples_WaterCooler_T.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatExchangers_Examples_WaterCooler_T.txt @@ -1,4 +1,4 @@ -last-generated=2020-08-17 +last-generated=2022-05-23 statistics-simulation= { "linear": "0", @@ -10,6 +10,6 @@ time=[0e+00, 1.728e+05] TSet.y=[2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02] TOut.y=[2.901499938964844e+02, 2.901894226074219e+02, 2.903070983886719e+02, 2.905011291503906e+02, 2.907684631347656e+02, 2.911049194335938e+02, 2.915051574707031e+02, 2.91962890625e+02, 2.924708557128906e+02, 2.930211181640625e+02, 2.936049194335938e+02, 2.942131042480469e+02, 2.948360595703125e+02, 2.954639587402344e+02, 2.960869140625e+02, 2.966950988769531e+02, 2.972789001464844e+02, 2.978291320800781e+02, 2.983371276855469e+02, 2.987948303222656e+02, 2.991950988769531e+02, 2.995315246582031e+02, 2.997988891601562e+02, 2.99992919921875e+02, 3.001105651855469e+02, 3.001499938964844e+02, 3.001105651855469e+02, 2.99992919921875e+02, 2.997988891601562e+02, 2.995315246582031e+02, 2.991950988769531e+02, 2.987948303222656e+02, 2.983371276855469e+02, 2.978291320800781e+02, 2.972789001464844e+02, 2.966950988769531e+02, 2.960869140625e+02, 2.954639587402344e+02, 2.948360595703125e+02, 2.942131042480469e+02, 2.936049194335938e+02, 2.930211181640625e+02, 2.924708557128906e+02, 2.91962890625e+02, 2.915051574707031e+02, 2.911049194335938e+02, 2.907684631347656e+02, 2.905011291503906e+02, 2.903070983886719e+02, 2.901894226074219e+02, 2.901499938964844e+02, 2.901894226074219e+02, 2.903070983886719e+02, 2.905011291503906e+02, 2.907684631347656e+02, 2.911049194335938e+02, 2.915051574707031e+02, 2.91962890625e+02, 2.924708557128906e+02, 2.930211181640625e+02, 2.936049194335938e+02, 2.942131042480469e+02, 2.948360595703125e+02, 2.954639587402344e+02, 2.960869140625e+02, 2.966950988769531e+02, 2.972789001464844e+02, 2.978291320800781e+02, 2.983371276855469e+02, 2.987948303222656e+02, 2.991950988769531e+02, 2.995315246582031e+02, 2.997988891601562e+02, 2.99992919921875e+02, 3.001105651855469e+02, 3.001499938964844e+02, 3.001105651855469e+02, 2.99992919921875e+02, 2.997988891601562e+02, 2.995315246582031e+02, 2.991950988769531e+02, 2.987948303222656e+02, 2.983371276855469e+02, 2.978291320800781e+02, 2.972789001464844e+02, 2.966950988769531e+02, 2.960869140625e+02, 2.954639587402344e+02, 2.948360595703125e+02, 2.942131042480469e+02, 2.936049194335938e+02, 2.930211181640625e+02, 2.924708557128906e+02, 2.91962890625e+02, 2.915051574707031e+02, 2.911049194335938e+02, 2.907684631347656e+02, 2.905011291503906e+02, 2.903070983886719e+02, 2.901894226074219e+02, 2.901499938964844e+02] TVol.T=[2.891499938964844e+02, 2.890717468261719e+02, 2.891900329589844e+02, 2.891500854492188e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.894725952148438e+02, 2.902336120605469e+02, 2.909750061035156e+02, 2.916949768066406e+02, 2.923909912109375e+02, 2.930599365234375e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.923056030273438e+02, 2.903829956054688e+02, 2.890553283691406e+02, 2.891507568359375e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.894725952148438e+02, 2.902336120605469e+02, 2.909750061035156e+02, 2.916949768066406e+02, 2.923909912109375e+02, 2.930599365234375e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.923056030273438e+02, 2.903829956054688e+02, 2.890553283691406e+02, 2.891507568359375e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02] -THeaOut.T=[2.891499938964844e+02, 2.890716552734375e+02, 2.8918994140625e+02, 2.891494750976562e+02, 2.891492919921875e+02, 2.891491394042969e+02, 2.891489562988281e+02, 2.891487426757812e+02, 2.891485290527344e+02, 2.891482849121094e+02, 2.891480407714844e+02, 2.891477661132812e+02, 2.891474914550781e+02, 2.89147216796875e+02, 2.891469421386719e+02, 2.894721374511719e+02, 2.90233154296875e+02, 2.90974609375e+02, 2.91694580078125e+02, 2.923905944824219e+02, 2.930595703125e+02, 2.93147216796875e+02, 2.931470642089844e+02, 2.9314697265625e+02, 2.931469116210938e+02, 2.931469116210938e+02, 2.931469116210938e+02, 2.9314697265625e+02, 2.931470642089844e+02, 2.931471862792969e+02, 2.931473388671875e+02, 2.931474914550781e+02, 2.93147705078125e+02, 2.931479187011719e+02, 2.931481628417969e+02, 2.931484375e+02, 2.931487121582031e+02, 2.931489868164062e+02, 2.931492614746094e+02, 2.931495361328125e+02, 2.922979125976562e+02, 2.903752136230469e+02, 2.890551147460938e+02, 2.891494750976562e+02, 2.891489562988281e+02, 2.891491394042969e+02, 2.891492919921875e+02, 2.891494140625e+02, 2.891494750976562e+02, 2.891495361328125e+02, 2.891495666503906e+02, 2.891495361328125e+02, 2.891494750976562e+02, 2.891494140625e+02, 2.891492919921875e+02, 2.891491394042969e+02, 2.891489562988281e+02, 2.891487426757812e+02, 2.891485290527344e+02, 2.891482849121094e+02, 2.891480407714844e+02, 2.891477661132812e+02, 2.891474914550781e+02, 2.89147216796875e+02, 2.891469421386719e+02, 2.894721374511719e+02, 2.90233154296875e+02, 2.90974609375e+02, 2.91694580078125e+02, 2.923905944824219e+02, 2.930595703125e+02, 2.931471862792969e+02, 2.931470642089844e+02, 2.9314697265625e+02, 2.931469116210938e+02, 2.931469116210938e+02, 2.931469116210938e+02, 2.9314697265625e+02, 2.931470642089844e+02, 2.931471862792969e+02, 2.931473388671875e+02, 2.931474914550781e+02, 2.93147705078125e+02, 2.931479187011719e+02, 2.931481628417969e+02, 2.931484375e+02, 2.931487121582031e+02, 2.931489868164062e+02, 2.931492614746094e+02, 2.931495361328125e+02, 2.922979125976562e+02, 2.903752136230469e+02, 2.890551147460938e+02, 2.891495056152344e+02, 2.891489562988281e+02, 2.891491394042969e+02, 2.891492919921875e+02, 2.891494140625e+02, 2.891494750976562e+02, 2.891495361328125e+02, 2.891495666503906e+02] -coo.TSet=[2.831499938964844e+02, 3.031499938964844e+02, 3.003883972167969e+02, 2.891494750976562e+02, 2.891492919921875e+02, 2.891491394042969e+02, 2.891489562988281e+02, 2.891487426757812e+02, 2.891485290527344e+02, 2.891482849121094e+02, 2.891480407714844e+02, 2.891477661132812e+02, 2.891474914550781e+02, 2.89147216796875e+02, 2.891469421386719e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 2.931471862792969e+02, 2.931470642089844e+02, 2.9314697265625e+02, 2.931469116210938e+02, 2.931469116210938e+02, 2.931469116210938e+02, 2.9314697265625e+02, 2.931470642089844e+02, 2.931471862792969e+02, 2.931473388671875e+02, 2.931474914550781e+02, 2.93147705078125e+02, 2.931479187011719e+02, 2.931481628417969e+02, 2.931484375e+02, 2.931487121582031e+02, 2.931489868164062e+02, 2.931492614746094e+02, 2.931495361328125e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.962586975097656e+02, 2.891494445800781e+02, 2.891489562988281e+02, 2.891491394042969e+02, 2.891492919921875e+02, 2.891494140625e+02, 2.891494750976562e+02, 2.891495361328125e+02, 2.891495666503906e+02, 2.891495361328125e+02, 2.891494750976562e+02, 2.891494140625e+02, 2.891492919921875e+02, 2.891491394042969e+02, 2.891489562988281e+02, 2.891487426757812e+02, 2.891485290527344e+02, 2.891482849121094e+02, 2.891480407714844e+02, 2.891477661132812e+02, 2.891474914550781e+02, 2.89147216796875e+02, 2.891469421386719e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 2.931471862792969e+02, 2.931470642089844e+02, 2.9314697265625e+02, 2.931469116210938e+02, 2.931469116210938e+02, 2.931469116210938e+02, 2.9314697265625e+02, 2.931470642089844e+02, 2.931471862792969e+02, 2.931473388671875e+02, 2.931474914550781e+02, 2.93147705078125e+02, 2.931479187011719e+02, 2.931481628417969e+02, 2.931484375e+02, 2.931487121582031e+02, 2.931489868164062e+02, 2.931492614746094e+02, 2.931495361328125e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.962587890625e+02, 2.891494140625e+02, 2.891489562988281e+02, 2.891491394042969e+02, 2.891492919921875e+02, 2.891494140625e+02, 2.891494750976562e+02, 2.891495361328125e+02, 2.891495666503906e+02] -coo.Q_flow=[-0e+00, -1.129679977893829e-01, -1.129679977893829e-01, -6.843327331542969e+01, -8.092319488525391e+01, -9.774091339111328e+01, -1.177476272583008e+02, -1.406300811767578e+02, -1.660302734375e+02, -1.935506896972656e+02, -2.227395172119141e+02, -2.531406402587891e+02, -2.843042297363281e+02, -3.156975402832031e+02, -3.468454589843751e+02, -1.129679977893829e-01, -1.129679977893829e-01, -1.129679977893829e-01, -1.129679977893829e-01, -1.129679977893829e-01, -1.129679977893829e-01, -3.182400512695312e+02, -3.324434814453125e+02, -3.421451110839844e+02, -3.48025146484375e+02, -3.499963989257812e+02, -3.480376892089844e+02, -3.421561584472656e+02, -3.324538574218749e+02, -3.19081787109375e+02, -3.022571105957031e+02, -2.822512512207031e+02, -2.593641967773438e+02, -2.339754943847656e+02, -2.064457244873046e+02, -1.772558746337892e+02, -1.468440704345703e+02, -1.156887664794922e+02, -8.430225372314453e+01, -5.31452751159668e+01, -9.998870239257812e+02, -9.998870239257812e+02, -1.129679977893829e-01, -1.456581268310547e+02, -1.177579498291016e+02, -9.774571990966797e+01, -8.09283447265625e+01, -6.756130218505859e+01, -5.785476684570312e+01, -5.197268295288086e+01, -5.000054168701172e+01, -5.197108840942383e+01, -5.782734680175781e+01, -6.755493927001953e+01, -8.091651153564453e+01, -9.774053955078141e+01, -1.177545089721682e+02, -1.406339263916014e+02, -1.660315246582031e+02, -1.935527648925781e+02, -2.227371368408203e+02, -2.531400146484375e+02, -2.843023986816406e+02, -3.156975708007812e+02, -3.468453369140625e+02, -1.129679977893829e-01, -1.129679977893829e-01, -1.129679977893829e-01, -1.129679977893829e-01, -1.129679977893829e-01, -1.129679977893829e-01, -3.20439453125e+02, -3.324431762695312e+02, -3.421454467773438e+02, -3.480040588378906e+02, -3.499986267089844e+02, -3.480295715332031e+02, -3.421689147949219e+02, -3.324508361816406e+02, -3.190802001953125e+02, -3.022623596191406e+02, -2.822498779296875e+02, -2.593579711914062e+02, -2.339666748046875e+02, -2.064577941894531e+02, -1.772588653564453e+02, -1.468975524902344e+02, -1.157519836425781e+02, -8.431084442138672e+01, -5.318785858154297e+01, -9.998870239257812e+02, -9.998870239257812e+02, -1.129679977893829e-01, -1.451210479736328e+02, -1.177195816040039e+02, -9.728438568115234e+01, -8.0923583984375e+01, -6.755707550048828e+01, -5.785472869873047e+01, -5.197208023071289e+01, -5.000006866455078e+01] +THeaOut.T=[2.891499938964844e+02, 2.890716552734375e+02, 2.8918994140625e+02, 2.891495056152344e+02, 2.891492919921875e+02, 2.891491394042969e+02, 2.891489562988281e+02, 2.891487426757812e+02, 2.891485290527344e+02, 2.891482849121094e+02, 2.891480407714844e+02, 2.891477661132812e+02, 2.891474914550781e+02, 2.89147216796875e+02, 2.891469421386719e+02, 2.894721374511719e+02, 2.90233154296875e+02, 2.90974609375e+02, 2.91694580078125e+02, 2.923905944824219e+02, 2.930595703125e+02, 2.931471862792969e+02, 2.931470642089844e+02, 2.9314697265625e+02, 2.931469116210938e+02, 2.931469116210938e+02, 2.931469116210938e+02, 2.9314697265625e+02, 2.931470642089844e+02, 2.931471862792969e+02, 2.931473388671875e+02, 2.931474914550781e+02, 2.93147705078125e+02, 2.931479187011719e+02, 2.931481628417969e+02, 2.931484375e+02, 2.931487121582031e+02, 2.931489868164062e+02, 2.931492614746094e+02, 2.931495361328125e+02, 2.922979125976562e+02, 2.903752136230469e+02, 2.890551147460938e+02, 2.891494750976562e+02, 2.891489562988281e+02, 2.891491394042969e+02, 2.891492919921875e+02, 2.891494140625e+02, 2.891494750976562e+02, 2.891495361328125e+02, 2.891495666503906e+02, 2.891495361328125e+02, 2.891494750976562e+02, 2.891494140625e+02, 2.891492919921875e+02, 2.891491394042969e+02, 2.891489562988281e+02, 2.891487426757812e+02, 2.891485290527344e+02, 2.891482849121094e+02, 2.891480407714844e+02, 2.891477661132812e+02, 2.891474914550781e+02, 2.89147216796875e+02, 2.891469421386719e+02, 2.894721374511719e+02, 2.90233154296875e+02, 2.90974609375e+02, 2.91694580078125e+02, 2.923905944824219e+02, 2.930595703125e+02, 2.931471862792969e+02, 2.931470642089844e+02, 2.9314697265625e+02, 2.931469116210938e+02, 2.931469116210938e+02, 2.931469116210938e+02, 2.9314697265625e+02, 2.931470642089844e+02, 2.931471862792969e+02, 2.931473388671875e+02, 2.931474914550781e+02, 2.93147705078125e+02, 2.931479187011719e+02, 2.931481628417969e+02, 2.931484375e+02, 2.931487121582031e+02, 2.931489868164062e+02, 2.931492614746094e+02, 2.931495361328125e+02, 2.922979125976562e+02, 2.903752136230469e+02, 2.890551147460938e+02, 2.891494750976562e+02, 2.891489562988281e+02, 2.891491394042969e+02, 2.891492919921875e+02, 2.891494140625e+02, 2.891494750976562e+02, 2.891495361328125e+02, 2.891495666503906e+02] +coo.TSet=[2.831499938964844e+02, 3.031499938964844e+02, 3.003883972167969e+02, 2.891494445800781e+02, 2.891492919921875e+02, 2.891491394042969e+02, 2.891489562988281e+02, 2.891487426757812e+02, 2.891485290527344e+02, 2.891482849121094e+02, 2.891480407714844e+02, 2.891477661132812e+02, 2.891474914550781e+02, 2.89147216796875e+02, 2.891469421386719e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 2.931471862792969e+02, 2.931470642089844e+02, 2.9314697265625e+02, 2.931469116210938e+02, 2.931469116210938e+02, 2.931469116210938e+02, 2.9314697265625e+02, 2.931470642089844e+02, 2.931471862792969e+02, 2.931473388671875e+02, 2.931474914550781e+02, 2.93147705078125e+02, 2.931479187011719e+02, 2.931481628417969e+02, 2.931484375e+02, 2.931487121582031e+02, 2.931489868164062e+02, 2.931492614746094e+02, 2.931495361328125e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.962586975097656e+02, 2.891493835449219e+02, 2.891489562988281e+02, 2.891491394042969e+02, 2.891492919921875e+02, 2.891494140625e+02, 2.891494750976562e+02, 2.891495361328125e+02, 2.891495666503906e+02, 2.891495361328125e+02, 2.891494750976562e+02, 2.891494140625e+02, 2.891492919921875e+02, 2.891491394042969e+02, 2.891489562988281e+02, 2.891487426757812e+02, 2.891485290527344e+02, 2.891482849121094e+02, 2.891480407714844e+02, 2.891477661132812e+02, 2.891474914550781e+02, 2.89147216796875e+02, 2.891469421386719e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 2.931471862792969e+02, 2.931470642089844e+02, 2.9314697265625e+02, 2.931469116210938e+02, 2.931469116210938e+02, 2.931469116210938e+02, 2.9314697265625e+02, 2.931470642089844e+02, 2.931471862792969e+02, 2.931473388671875e+02, 2.931474914550781e+02, 2.93147705078125e+02, 2.931479187011719e+02, 2.931481628417969e+02, 2.931484375e+02, 2.931487121582031e+02, 2.931489868164062e+02, 2.931492614746094e+02, 2.931495361328125e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.962587585449219e+02, 2.891494140625e+02, 2.891489562988281e+02, 2.891491394042969e+02, 2.891492919921875e+02, 2.891494140625e+02, 2.891494750976562e+02, 2.891495361328125e+02, 2.891495666503906e+02] +coo.Q_flow=[-0e+00, -1.129679977893829e-01, -1.129679977893829e-01, -6.817494964599609e+01, -8.0923095703125e+01, -9.774171447753906e+01, -1.177551498413086e+02, -1.406342010498047e+02, -1.660401153564453e+02, -1.935538330078125e+02, -2.227446899414062e+02, -2.531539154052734e+02, -2.843019104003906e+02, -3.156974792480469e+02, -3.468453369140626e+02, -1.129679977893829e-01, -1.129679977893829e-01, -1.129679977893829e-01, -1.129679977893829e-01, -1.129679977893829e-01, -1.129679977893829e-01, -3.19232177734375e+02, -3.324442443847656e+02, -3.421458740234375e+02, -3.480237121582031e+02, -3.499956665039062e+02, -3.480340576171875e+02, -3.421580810546875e+02, -3.324603576660156e+02, -3.190775451660156e+02, -3.022607727050781e+02, -2.82250244140625e+02, -2.593571472167969e+02, -2.339660797119141e+02, -2.064559326171874e+02, -1.772555236816407e+02, -1.469039154052734e+02, -1.157516326904297e+02, -8.431493377685547e+01, -5.319212341308594e+01, -9.998870239257812e+02, -9.998870239257812e+02, -1.129679977893829e-01, -1.462227478027344e+02, -1.177578125e+02, -9.774803924560547e+01, -8.094710540771484e+01, -6.755624389648438e+01, -5.785603713989258e+01, -5.197446060180664e+01, -4.999689102172852e+01, -5.19683952331543e+01, -5.785284042358398e+01, -6.755523681640625e+01, -8.091987609863281e+01, -9.77414169311525e+01, -1.177488098144533e+02, -1.406324615478514e+02, -1.660393524169922e+02, -1.935519866943359e+02, -2.227488555908203e+02, -2.531572570800781e+02, -2.843070373535156e+02, -3.157004089355469e+02, -3.468505554199219e+02, -1.129679977893829e-01, -1.129679977893829e-01, -1.129679977893829e-01, -1.129679977893829e-01, -1.129679977893829e-01, -1.129679977893829e-01, -3.192900695800781e+02, -3.324441528320312e+02, -3.421458740234375e+02, -3.480287170410156e+02, -3.500001525878906e+02, -3.480397033691406e+02, -3.421552429199219e+02, -3.324519653320312e+02, -3.190907897949219e+02, -3.022596130371094e+02, -2.822516784667969e+02, -2.593664245605469e+02, -2.339590301513672e+02, -2.064529571533203e+02, -1.772597045898438e+02, -1.468457336425781e+02, -1.157013397216797e+02, -8.43031005859375e+01, -5.315482330322266e+01, -9.998870239257812e+02, -9.998870239257812e+02, -1.129679977893829e-01, -1.456608734130859e+02, -1.177638931274414e+02, -9.774880981445312e+01, -8.092660522460938e+01, -6.755613708496094e+01, -5.785922241210938e+01, -5.196827697753906e+01, -4.999477386474609e+01] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatExchangers_Examples_WaterHeater_T.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatExchangers_Examples_WaterHeater_T.txt index b951b7b596..6960e8b512 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatExchangers_Examples_WaterHeater_T.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatExchangers_Examples_WaterHeater_T.txt @@ -1,4 +1,4 @@ -last-generated=2020-08-17 +last-generated=2022-05-23 statistics-simulation= { "linear": "0", @@ -9,7 +9,7 @@ statistics-simulation= time=[0e+00, 1.728e+05] TSet.y=[2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02] TOut.y=[2.841499938964844e+02, 2.841894226074219e+02, 2.843070983886719e+02, 2.845011291503906e+02, 2.847684631347656e+02, 2.851049194335938e+02, 2.855051574707031e+02, 2.85962890625e+02, 2.864708557128906e+02, 2.870211181640625e+02, 2.876049194335938e+02, 2.882131042480469e+02, 2.888360595703125e+02, 2.894639587402344e+02, 2.900869140625e+02, 2.906950988769531e+02, 2.912789001464844e+02, 2.918291320800781e+02, 2.923371276855469e+02, 2.927948303222656e+02, 2.931950988769531e+02, 2.935315246582031e+02, 2.937988891601562e+02, 2.93992919921875e+02, 2.941105651855469e+02, 2.941499938964844e+02, 2.941105651855469e+02, 2.93992919921875e+02, 2.937988891601562e+02, 2.935315246582031e+02, 2.931950988769531e+02, 2.927948303222656e+02, 2.923371276855469e+02, 2.918291320800781e+02, 2.912789001464844e+02, 2.906950988769531e+02, 2.900869140625e+02, 2.894639587402344e+02, 2.888360595703125e+02, 2.882131042480469e+02, 2.876049194335938e+02, 2.870211181640625e+02, 2.864708557128906e+02, 2.85962890625e+02, 2.855051574707031e+02, 2.851049194335938e+02, 2.847684631347656e+02, 2.845011291503906e+02, 2.843070983886719e+02, 2.841894226074219e+02, 2.841499938964844e+02, 2.841894226074219e+02, 2.843070983886719e+02, 2.845011291503906e+02, 2.847684631347656e+02, 2.851049194335938e+02, 2.855051574707031e+02, 2.85962890625e+02, 2.864708557128906e+02, 2.870211181640625e+02, 2.876049194335938e+02, 2.882131042480469e+02, 2.888360595703125e+02, 2.894639587402344e+02, 2.900869140625e+02, 2.906950988769531e+02, 2.912789001464844e+02, 2.918291320800781e+02, 2.923371276855469e+02, 2.927948303222656e+02, 2.931950988769531e+02, 2.935315246582031e+02, 2.937988891601562e+02, 2.93992919921875e+02, 2.941105651855469e+02, 2.941499938964844e+02, 2.941105651855469e+02, 2.93992919921875e+02, 2.937988891601562e+02, 2.935315246582031e+02, 2.931950988769531e+02, 2.927948303222656e+02, 2.923371276855469e+02, 2.918291320800781e+02, 2.912789001464844e+02, 2.906950988769531e+02, 2.900869140625e+02, 2.894639587402344e+02, 2.888360595703125e+02, 2.882131042480469e+02, 2.876049194335938e+02, 2.870211181640625e+02, 2.864708557128906e+02, 2.85962890625e+02, 2.855051574707031e+02, 2.851049194335938e+02, 2.847684631347656e+02, 2.845011291503906e+02, 2.843070983886719e+02, 2.841894226074219e+02, 2.841499938964844e+02] -TVol.T=[2.891499938964844e+02, 2.891349182128906e+02, 2.891422424316406e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891503295898438e+02, 2.891571960449219e+02, 2.892588806152344e+02, 2.894892578125e+02, 2.897232360839844e+02, 2.899603271484375e+02, 2.902000732421875e+02, 2.904418029785156e+02, 2.906848754882812e+02, 2.909285888671875e+02, 2.911721801757812e+02, 2.914148254394531e+02, 2.916557312011719e+02, 2.918940734863281e+02, 2.921290893554688e+02, 2.923599243164062e+02, 2.925858764648438e+02, 2.928062744140625e+02, 2.930203552246094e+02, 2.932276000976562e+02, 2.932452087402344e+02, 2.932275085449219e+02, 2.932040100097656e+02, 2.931744079589844e+02, 2.931385498046875e+02, 2.9310595703125e+02, 2.931511840820312e+02, 2.931219177246094e+02, 2.930604858398438e+02, 2.929936828613281e+02, 2.929219360351562e+02, 2.928458557128906e+02, 2.927660217285156e+02, 2.9268310546875e+02, 2.925978698730469e+02, 2.925111083984375e+02, 2.92423583984375e+02, 2.923361511230469e+02, 2.922496337890625e+02, 2.921648864746094e+02, 2.920827026367188e+02, 2.920038452148438e+02, 2.919290161132812e+02, 2.9185888671875e+02, 2.917940979003906e+02, 2.91735107421875e+02, 2.916823425292969e+02, 2.916361999511719e+02, 2.915968627929688e+02, 2.915644836425781e+02, 2.915390930175781e+02, 2.915206298828125e+02, 2.915967407226562e+02, 2.918023071289062e+02, 2.920117492675781e+02, 2.922245483398438e+02, 2.924402465820312e+02, 2.92658203125e+02, 2.928777770996094e+02, 2.930982055664062e+02, 2.932619934082031e+02, 2.932706604003906e+02, 2.932801208496094e+02, 2.932894287109375e+02, 2.932978515625e+02, 2.933045043945312e+02, 2.933086242675781e+02, 2.933095092773438e+02, 2.933064880371094e+02, 2.932989196777344e+02, 2.932862854003906e+02, 2.932681884765625e+02, 2.932442626953125e+02, 2.932142333984375e+02, 2.931780090332031e+02, 2.93135498046875e+02, 2.931216125488281e+02, 2.931483154296875e+02, 2.930866088867188e+02, 2.930195007324219e+02, 2.92947509765625e+02, 2.928711242675781e+02, 2.92791015625e+02, 2.927078552246094e+02, 2.926223449707031e+02, 2.925352783203125e+02, 2.92447509765625e+02, 2.923598327636719e+02] -THeaOut.T=[2.891499938964844e+02, 2.891357116699219e+02, 2.891430358886719e+02, 2.891502075195312e+02, 2.891502075195312e+02, 2.891501770019531e+02, 2.89150146484375e+02, 2.89150146484375e+02, 2.891501159667969e+02, 2.891500854492188e+02, 2.891500549316406e+02, 2.891500549316406e+02, 2.891500244140625e+02, 2.891503295898438e+02, 2.891571960449219e+02, 2.892596130371094e+02, 2.894900207519531e+02, 2.897239685058594e+02, 2.899610900878906e+02, 2.902008056640625e+02, 2.904425354003906e+02, 2.906856384277344e+02, 2.909293518066406e+02, 2.911729125976562e+02, 2.914155578613281e+02, 2.916564636230469e+02, 2.918948364257812e+02, 2.921298217773438e+02, 2.923606872558594e+02, 2.925866394042969e+02, 2.928070373535156e+02, 2.930211181640625e+02, 2.932283630371094e+02, 2.932452087402344e+02, 2.932275390625e+02, 2.932040100097656e+02, 2.931744079589844e+02, 2.931385803222656e+02, 2.931067199707031e+02, 2.931512145996094e+02, 2.931219482421875e+02, 2.930605163574219e+02, 2.929937133789062e+02, 2.929219970703125e+02, 2.928459167480469e+02, 2.927660827636719e+02, 2.926831665039062e+02, 2.925979309082031e+02, 2.925111389160156e+02, 2.924236145019531e+02, 2.923362121582031e+02, 2.922496948242188e+02, 2.921649475097656e+02, 2.92082763671875e+02, 2.920038757324219e+02, 2.919290466308594e+02, 2.918589477539062e+02, 2.917941284179688e+02, 2.917351379394531e+02, 2.91682373046875e+02, 2.9163623046875e+02, 2.915968933105469e+02, 2.915645141601562e+02, 2.915391235351562e+02, 2.915206298828125e+02, 2.915975036621094e+02, 2.918030700683594e+02, 2.920124816894531e+02, 2.922253112792969e+02, 2.924410095214844e+02, 2.926589660644531e+02, 2.928785400390625e+02, 2.930989685058594e+02, 2.932619934082031e+02, 2.932706604003906e+02, 2.932800903320312e+02, 2.932894287109375e+02, 2.932978515625e+02, 2.933045043945312e+02, 2.933086242675781e+02, 2.933095092773438e+02, 2.933064880371094e+02, 2.932989196777344e+02, 2.932863159179688e+02, 2.932682189941406e+02, 2.932442626953125e+02, 2.932142639160156e+02, 2.931780395507812e+02, 2.93135498046875e+02, 2.931224060058594e+02, 2.931483459472656e+02, 2.930866394042969e+02, 2.9301953125e+02, 2.929475402832031e+02, 2.928711853027344e+02, 2.927910766601562e+02, 2.927078857421875e+02, 2.926223754882812e+02, 2.925353393554688e+02, 2.924475708007812e+02, 2.923598937988281e+02] -hea.TSet=[2.831499938964844e+02, 2.901033325195312e+02, 2.891697082519531e+02, 2.891502075195312e+02, 2.891502075195312e+02, 2.891501770019531e+02, 2.89150146484375e+02, 2.89150146484375e+02, 2.891501159667969e+02, 2.891500854492188e+02, 2.891500549316406e+02, 2.891500244140625e+02, 2.891500244140625e+02, 2.891392822265625e+02, 2.880762023925781e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 2.973328247070312e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.838749694824219e+02, 2.936720275878906e+02, 2.912059936523438e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 2.8446337890625e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.841206665039062e+02, 2.946230163574219e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02] -hea.Q_flow=[0e+00, 9.988703155517578e+01, 9.988703155517578e+01, 2.324970817565918e+01, 2.190702629089355e+01, 2.022614669799805e+01, 1.814243507385254e+01, 1.581651592254638e+01, 1.332746696472168e+01, 1.0500732421875e+01, 7.673997402191162e+00, 4.471966743469238e+00, 1.117506742477417e+00, 1.129679977893829e-01, 1.129679977893829e-01, 9.988703155517578e+01, 9.988703155517578e+01, 9.988703155517578e+01, 9.988703155517578e+01, 9.988703155517578e+01, 9.988703155517578e+01, 9.988703155517578e+01, 9.988703155517578e+01, 9.988703155517578e+01, 9.988703155517578e+01, 9.988703155517578e+01, 9.988703155517578e+01, 9.988703155517578e+01, 9.988703155517578e+01, 9.988703155517578e+01, 9.988703155517578e+01, 9.988703155517578e+01, 9.988703155517578e+01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 9.988703155517578e+01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 9.988703155517578e+01, 9.988703155517578e+01, 9.988703155517578e+01, 9.988703155517578e+01, 9.988703155517578e+01, 9.988703155517578e+01, 9.988703155517578e+01, 9.988703155517578e+01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 9.988703155517578e+01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01] +TVol.T=[2.891499938964844e+02, 2.891349487304688e+02, 2.891425170898438e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891506042480469e+02, 2.891575012207031e+02, 2.892590942382812e+02, 2.894894714355469e+02, 2.897234497070312e+02, 2.899605407714844e+02, 2.902002868652344e+02, 2.904420166015625e+02, 2.906850891113281e+02, 2.909288024902344e+02, 2.9117236328125e+02, 2.914150085449219e+02, 2.916559143066406e+02, 2.918942565917969e+02, 2.921292419433594e+02, 2.923600769042969e+02, 2.925859985351562e+02, 2.928063354492188e+02, 2.930204162597656e+02, 2.932276306152344e+02, 2.932452697753906e+02, 2.932276000976562e+02, 2.932040710449219e+02, 2.931744995117188e+02, 2.93138671875e+02, 2.93105712890625e+02, 2.931511840820312e+02, 2.931217041015625e+02, 2.930602722167969e+02, 2.929934387207031e+02, 2.929217224121094e+02, 2.928456420898438e+02, 2.927658081054688e+02, 2.926828918457031e+02, 2.9259765625e+02, 2.925108642578125e+02, 2.924233703613281e+02, 2.923359375e+02, 2.922494201660156e+02, 2.921646728515625e+02, 2.920824890136719e+02, 2.920036315917969e+02, 2.919288024902344e+02, 2.918586730957031e+02, 2.917938537597656e+02, 2.9173486328125e+02, 2.9168212890625e+02, 2.91635986328125e+02, 2.915966796875e+02, 2.915643005371094e+02, 2.915389404296875e+02, 2.915204772949219e+02, 2.915965881347656e+02, 2.918021545410156e+02, 2.920115966796875e+02, 2.922243957519531e+02, 2.924400939941406e+02, 2.926580505371094e+02, 2.928776245117188e+02, 2.930980834960938e+02, 2.93261962890625e+02, 2.932706604003906e+02, 2.932800903320312e+02, 2.932894287109375e+02, 2.932978210449219e+02, 2.933044738769531e+02, 2.933086242675781e+02, 2.933095092773438e+02, 2.933064880371094e+02, 2.932989196777344e+02, 2.932863159179688e+02, 2.932681884765625e+02, 2.932442626953125e+02, 2.932142639160156e+02, 2.931780090332031e+02, 2.93135498046875e+02, 2.931218566894531e+02, 2.931476135253906e+02, 2.930859069824219e+02, 2.930188293457031e+02, 2.929468383789062e+02, 2.928704833984375e+02, 2.927903747558594e+02, 2.927071838378906e+02, 2.926217041015625e+02, 2.9253466796875e+02, 2.924468688964844e+02, 2.923591918945312e+02] +THeaOut.T=[2.891499938964844e+02, 2.891357421875e+02, 2.891432800292969e+02, 2.891502075195312e+02, 2.891502075195312e+02, 2.891501770019531e+02, 2.89150146484375e+02, 2.89150146484375e+02, 2.891501159667969e+02, 2.891500854492188e+02, 2.891500549316406e+02, 2.891500549316406e+02, 2.891500244140625e+02, 2.891506042480469e+02, 2.891575012207031e+02, 2.892598571777344e+02, 2.89490234375e+02, 2.897241821289062e+02, 2.899613037109375e+02, 2.902010192871094e+02, 2.904427490234375e+02, 2.906858215332031e+02, 2.909295349121094e+02, 2.911731262207031e+02, 2.91415771484375e+02, 2.916566772460938e+02, 2.9189501953125e+02, 2.921300048828125e+02, 2.9236083984375e+02, 2.925867614746094e+02, 2.928070983886719e+02, 2.930211791992188e+02, 2.932283935546875e+02, 2.932453002929688e+02, 2.932276306152344e+02, 2.932041015625e+02, 2.931744995117188e+02, 2.93138671875e+02, 2.931065063476562e+02, 2.931512145996094e+02, 2.931217346191406e+02, 2.93060302734375e+02, 2.929934997558594e+02, 2.929217834472656e+02, 2.92845703125e+02, 2.927658386230469e+02, 2.926829528808594e+02, 2.925977172851562e+02, 2.925109252929688e+02, 2.924234008789062e+02, 2.923359680175781e+02, 2.922494812011719e+02, 2.921647338867188e+02, 2.920825500488281e+02, 2.92003662109375e+02, 2.919288330078125e+02, 2.918587341308594e+02, 2.917939147949219e+02, 2.917349243164062e+02, 2.916821594238281e+02, 2.916360168457031e+02, 2.915967102050781e+02, 2.915643310546875e+02, 2.915389404296875e+02, 2.915204772949219e+02, 2.915973510742188e+02, 2.918029174804688e+02, 2.920123596191406e+02, 2.922251586914062e+02, 2.924408569335938e+02, 2.926588134765625e+02, 2.928783874511719e+02, 2.930988159179688e+02, 2.93261962890625e+02, 2.932706604003906e+02, 2.932800903320312e+02, 2.932894287109375e+02, 2.932978210449219e+02, 2.933044738769531e+02, 2.933086242675781e+02, 2.933095092773438e+02, 2.933064880371094e+02, 2.932989196777344e+02, 2.932863159179688e+02, 2.932682189941406e+02, 2.932442932128906e+02, 2.932142639160156e+02, 2.931780090332031e+02, 2.93135498046875e+02, 2.931226501464844e+02, 2.931476440429688e+02, 2.930859375e+02, 2.930188598632812e+02, 2.929468688964844e+02, 2.928705139160156e+02, 2.927904052734375e+02, 2.927072448730469e+02, 2.926217346191406e+02, 2.925346984863281e+02, 2.924469299316406e+02, 2.923592529296875e+02] +hea.TSet=[2.831499938964844e+02, 2.901029052734375e+02, 2.891699829101562e+02, 2.891502075195312e+02, 2.891502075195312e+02, 2.891501770019531e+02, 2.89150146484375e+02, 2.89150146484375e+02, 2.891501159667969e+02, 2.891500854492188e+02, 2.891500549316406e+02, 2.891500549316406e+02, 2.891500244140625e+02, 2.891206359863281e+02, 2.879745483398438e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 2.973264770507812e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.838648376464844e+02, 2.936448669433594e+02, 2.912017517089844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 2.844855346679688e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.841210021972656e+02, 2.946079711914062e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02] +hea.Q_flow=[0e+00, 9.988703155517578e+01, 9.988703155517578e+01, 2.324679374694824e+01, 2.190492057800293e+01, 2.02187442779541e+01, 1.822239112854004e+01, 1.593581104278564e+01, 1.33952522277832e+01, 1.064444160461426e+01, 7.725541591644287e+00, 4.610069274902344e+00, 1.106446862220764e+00, 1.129679977893829e-01, 1.129679977893829e-01, 9.988703155517578e+01, 9.988703155517578e+01, 9.988703155517578e+01, 9.988703155517578e+01, 9.988703155517578e+01, 9.988703155517578e+01, 9.988703155517578e+01, 9.988703155517578e+01, 9.988703155517578e+01, 9.988703155517578e+01, 9.988703155517578e+01, 9.988703155517578e+01, 9.988703155517578e+01, 9.988703155517578e+01, 9.988703155517578e+01, 9.988703155517578e+01, 9.988703155517578e+01, 9.988703155517578e+01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 9.988703155517578e+01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 9.988703155517578e+01, 9.988703155517578e+01, 9.988703155517578e+01, 9.988703155517578e+01, 9.988703155517578e+01, 9.988703155517578e+01, 9.988703155517578e+01, 9.988703155517578e+01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 9.988703155517578e+01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01, 1.129679977893829e-01] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatExchangers_Examples_WaterHeater_u.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatExchangers_Examples_WaterHeater_u.txt index 882d5ad4f7..544cbea8c6 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatExchangers_Examples_WaterHeater_u.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatExchangers_Examples_WaterHeater_u.txt @@ -1,4 +1,4 @@ -last-generated=2021-05-19 +last-generated=2022-05-23 statistics-simulation= { "linear": "0", @@ -9,6 +9,6 @@ statistics-simulation= time=[0e+00, 1.728e+05] TSet.y=[2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02] TOut.y=[2.841499938964844e+02, 2.841894226074219e+02, 2.843070983886719e+02, 2.845011291503906e+02, 2.847684631347656e+02, 2.851049194335938e+02, 2.855051574707031e+02, 2.85962890625e+02, 2.864708557128906e+02, 2.870211181640625e+02, 2.876049194335938e+02, 2.882131042480469e+02, 2.888360595703125e+02, 2.894639587402344e+02, 2.900869140625e+02, 2.906950988769531e+02, 2.912789001464844e+02, 2.918291320800781e+02, 2.923371276855469e+02, 2.927948303222656e+02, 2.931950988769531e+02, 2.935315246582031e+02, 2.937988891601562e+02, 2.93992919921875e+02, 2.941105651855469e+02, 2.941499938964844e+02, 2.941105651855469e+02, 2.93992919921875e+02, 2.937988891601562e+02, 2.935315246582031e+02, 2.931950988769531e+02, 2.927948303222656e+02, 2.923371276855469e+02, 2.918291320800781e+02, 2.912789001464844e+02, 2.906950988769531e+02, 2.900869140625e+02, 2.894639587402344e+02, 2.888360595703125e+02, 2.882131042480469e+02, 2.876049194335938e+02, 2.870211181640625e+02, 2.864708557128906e+02, 2.85962890625e+02, 2.855051574707031e+02, 2.851049194335938e+02, 2.847684631347656e+02, 2.845011291503906e+02, 2.843070983886719e+02, 2.841894226074219e+02, 2.841499938964844e+02, 2.841894226074219e+02, 2.843070983886719e+02, 2.845011291503906e+02, 2.847684631347656e+02, 2.851049194335938e+02, 2.855051574707031e+02, 2.85962890625e+02, 2.864708557128906e+02, 2.870211181640625e+02, 2.876049194335938e+02, 2.882131042480469e+02, 2.888360595703125e+02, 2.894639587402344e+02, 2.900869140625e+02, 2.906950988769531e+02, 2.912789001464844e+02, 2.918291320800781e+02, 2.923371276855469e+02, 2.927948303222656e+02, 2.931950988769531e+02, 2.935315246582031e+02, 2.937988891601562e+02, 2.93992919921875e+02, 2.941105651855469e+02, 2.941499938964844e+02, 2.941105651855469e+02, 2.93992919921875e+02, 2.937988891601562e+02, 2.935315246582031e+02, 2.931950988769531e+02, 2.927948303222656e+02, 2.923371276855469e+02, 2.918291320800781e+02, 2.912789001464844e+02, 2.906950988769531e+02, 2.900869140625e+02, 2.894639587402344e+02, 2.888360595703125e+02, 2.882131042480469e+02, 2.876049194335938e+02, 2.870211181640625e+02, 2.864708557128906e+02, 2.85962890625e+02, 2.855051574707031e+02, 2.851049194335938e+02, 2.847684631347656e+02, 2.845011291503906e+02, 2.843070983886719e+02, 2.841894226074219e+02, 2.841499938964844e+02] -TVol.T=[2.891499938964844e+02, 2.891498107910156e+02, 2.891499938964844e+02, 2.891500244140625e+02, 2.891499938964844e+02, 2.891500244140625e+02, 2.891500244140625e+02, 2.891500244140625e+02, 2.891500244140625e+02, 2.891500244140625e+02, 2.891500244140625e+02, 2.891500244140625e+02, 2.891500244140625e+02, 2.891502075195312e+02, 2.891514892578125e+02, 2.893240966796875e+02, 2.897386474609375e+02, 2.901535034179688e+02, 2.90568603515625e+02, 2.909838256835938e+02, 2.913991088867188e+02, 2.918142700195312e+02, 2.922292175292969e+02, 2.926437683105469e+02, 2.930577697753906e+02, 2.931883850097656e+02, 2.931903381347656e+02, 2.931921081542969e+02, 2.931935729980469e+02, 2.931945190429688e+02, 2.931948852539062e+02, 2.931944580078125e+02, 2.931931762695312e+02, 2.931908874511719e+02, 2.931875305175781e+02, 2.931829833984375e+02, 2.9317724609375e+02, 2.931702575683594e+02, 2.931619567871094e+02, 2.931524047851562e+02, 2.9314501953125e+02, 2.931330261230469e+02, 2.93119873046875e+02, 2.931056518554688e+02, 2.930904846191406e+02, 2.93074462890625e+02, 2.930577087402344e+02, 2.930403747558594e+02, 2.930226135253906e+02, 2.930045776367188e+02, 2.929863891601562e+02, 2.9296826171875e+02, 2.929503173828125e+02, 2.929327697753906e+02, 2.929156799316406e+02, 2.928992919921875e+02, 2.928836669921875e+02, 2.928689575195312e+02, 2.928552856445312e+02, 2.928427124023438e+02, 2.928313598632812e+02, 2.928212280273438e+02, 2.928124084472656e+02, 2.928048706054688e+02, 2.927986450195312e+02, 2.929637451171875e+02, 2.931850891113281e+02, 2.931817626953125e+02, 2.931795349121094e+02, 2.931782836914062e+02, 2.931779479980469e+02, 2.931783447265625e+02, 2.931793518066406e+02, 2.931808471679688e+02, 2.931826477050781e+02, 2.931846008300781e+02, 2.931865539550781e+02, 2.931883544921875e+02, 2.931898193359375e+02, 2.931907958984375e+02, 2.93191162109375e+02, 2.931907958984375e+02, 2.931895141601562e+02, 2.93187255859375e+02, 2.931838684082031e+02, 2.931793518066406e+02, 2.931736145019531e+02, 2.931666259765625e+02, 2.931583557128906e+02, 2.931492004394531e+02, 2.931456298828125e+02, 2.931336364746094e+02, 2.931204833984375e+02, 2.931062622070312e+02, 2.930910949707031e+02, 2.930750732421875e+02, 2.930583190917969e+02, 2.930409851074219e+02, 2.930232238769531e+02, 2.930051574707031e+02, 2.929869995117188e+02] -THeaOut.T=[2.891499938964844e+02, 2.891500549316406e+02, 2.891502075195312e+02, 2.891502075195312e+02, 2.891502075195312e+02, 2.891501770019531e+02, 2.891501770019531e+02, 2.89150146484375e+02, 2.89150146484375e+02, 2.891501159667969e+02, 2.891500854492188e+02, 2.891500549316406e+02, 2.891500244140625e+02, 2.891501770019531e+02, 2.891514587402344e+02, 2.893255004882812e+02, 2.897400512695312e+02, 2.901549072265625e+02, 2.905700073242188e+02, 2.909852294921875e+02, 2.914005126953125e+02, 2.91815673828125e+02, 2.922306213378906e+02, 2.926451721191406e+02, 2.930592041015625e+02, 2.931883544921875e+02, 2.931902770996094e+02, 2.931920776367188e+02, 2.931935424804688e+02, 2.931945190429688e+02, 2.931948852539062e+02, 2.931944885253906e+02, 2.931932067871094e+02, 2.931909484863281e+02, 2.931875915527344e+02, 2.931830749511719e+02, 2.931773681640625e+02, 2.931703796386719e+02, 2.931621398925781e+02, 2.93152587890625e+02, 2.931452331542969e+02, 2.931332397460938e+02, 2.931201171875e+02, 2.931059265136719e+02, 2.930907592773438e+02, 2.930747375488281e+02, 2.930580139160156e+02, 2.930407104492188e+02, 2.9302294921875e+02, 2.930048828125e+02, 2.929867248535156e+02, 2.929685974121094e+02, 2.929506530761719e+02, 2.929330749511719e+02, 2.929159851074219e+02, 2.928995666503906e+02, 2.928839416503906e+02, 2.928692321777344e+02, 2.928555297851562e+02, 2.928429260253906e+02, 2.9283154296875e+02, 2.928214111328125e+02, 2.928125610351562e+02, 2.928049926757812e+02, 2.927987365722656e+02, 2.929653015136719e+02, 2.931851806640625e+02, 2.931818237304688e+02, 2.931795654296875e+02, 2.931783142089844e+02, 2.931779479980469e+02, 2.931783142089844e+02, 2.931793212890625e+02, 2.931808166503906e+02, 2.931826171875e+02, 2.931845703125e+02, 2.931865234375e+02, 2.931883239746094e+02, 2.931897888183594e+02, 2.931907958984375e+02, 2.93191162109375e+02, 2.931907958984375e+02, 2.931895446777344e+02, 2.931872863769531e+02, 2.931839599609375e+02, 2.93179443359375e+02, 2.931737365722656e+02, 2.931667785644531e+02, 2.931585083007812e+02, 2.931493835449219e+02, 2.931458435058594e+02, 2.931338500976562e+02, 2.931207275390625e+02, 2.931065368652344e+02, 2.930913696289062e+02, 2.930753479003906e+02, 2.930586242675781e+02, 2.930412902832031e+02, 2.930235290527344e+02, 2.930054931640625e+02, 2.929873046875e+02] -hea.Q_flow=[0e+00, 2.49478702545166e+01, 2.455959701538086e+01, 2.323488235473633e+01, 2.189424324035645e+01, 2.023768997192383e+01, 1.82245922088623e+01, 1.590579891204834e+01, 1.338288879394531e+01, 1.063841152191162e+01, 7.727404117584229e+00, 4.683637142181396e+00, 1.562689423561096e+00, 0e+00, 0e+00, 1e+03, 1e+03, 1e+03, 1e+03, 1e+03, 1e+03, 1e+03, 1e+03, 1e+03, 1e+03, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+03, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.672416687011719e+01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +TVol.T=[2.891499938964844e+02, 2.891498107910156e+02, 2.891499938964844e+02, 2.891500244140625e+02, 2.891500244140625e+02, 2.891500244140625e+02, 2.891500244140625e+02, 2.891500244140625e+02, 2.891500244140625e+02, 2.891500244140625e+02, 2.891500244140625e+02, 2.891500244140625e+02, 2.891500244140625e+02, 2.891502075195312e+02, 2.891515197753906e+02, 2.893240966796875e+02, 2.897386474609375e+02, 2.901535034179688e+02, 2.90568603515625e+02, 2.909838562011719e+02, 2.913991088867188e+02, 2.918142700195312e+02, 2.922292175292969e+02, 2.926437683105469e+02, 2.930578002929688e+02, 2.931883850097656e+02, 2.931903076171875e+02, 2.931921081542969e+02, 2.931935424804688e+02, 2.931945190429688e+02, 2.931948852539062e+02, 2.931944580078125e+02, 2.931931762695312e+02, 2.931908874511719e+02, 2.931875e+02, 2.931829833984375e+02, 2.931772155761719e+02, 2.931702270507812e+02, 2.931619262695312e+02, 2.931523742675781e+02, 2.931450500488281e+02, 2.931330261230469e+02, 2.93119873046875e+02, 2.931056823730469e+02, 2.930904846191406e+02, 2.93074462890625e+02, 2.930577392578125e+02, 2.930404052734375e+02, 2.930226135253906e+02, 2.930045776367188e+02, 2.929863891601562e+02, 2.9296826171875e+02, 2.929503173828125e+02, 2.929327697753906e+02, 2.929156799316406e+02, 2.928992614746094e+02, 2.928836364746094e+02, 2.928689270019531e+02, 2.928552551269531e+02, 2.928426818847656e+02, 2.92831298828125e+02, 2.928211975097656e+02, 2.928123474121094e+02, 2.928048400878906e+02, 2.927986450195312e+02, 2.929637145996094e+02, 2.931850891113281e+02, 2.931817626953125e+02, 2.931795349121094e+02, 2.931782836914062e+02, 2.931779479980469e+02, 2.931783447265625e+02, 2.931793518066406e+02, 2.931808471679688e+02, 2.931826477050781e+02, 2.931846008300781e+02, 2.931865539550781e+02, 2.931883544921875e+02, 2.931898193359375e+02, 2.931907958984375e+02, 2.93191162109375e+02, 2.931907958984375e+02, 2.931895141601562e+02, 2.93187255859375e+02, 2.931838989257812e+02, 2.931793823242188e+02, 2.931736145019531e+02, 2.931666259765625e+02, 2.931583557128906e+02, 2.931492004394531e+02, 2.931456298828125e+02, 2.931336364746094e+02, 2.931204833984375e+02, 2.931062622070312e+02, 2.930910949707031e+02, 2.930750732421875e+02, 2.930583190917969e+02, 2.930409851074219e+02, 2.930232238769531e+02, 2.930051574707031e+02, 2.929869995117188e+02] +THeaOut.T=[2.891499938964844e+02, 2.891500549316406e+02, 2.891502075195312e+02, 2.891502075195312e+02, 2.891502075195312e+02, 2.891502075195312e+02, 2.891501770019531e+02, 2.89150146484375e+02, 2.89150146484375e+02, 2.891501159667969e+02, 2.891500854492188e+02, 2.891500549316406e+02, 2.891500244140625e+02, 2.891502075195312e+02, 2.891514892578125e+02, 2.893255310058594e+02, 2.897400512695312e+02, 2.901549072265625e+02, 2.905700073242188e+02, 2.909852600097656e+02, 2.914005126953125e+02, 2.91815673828125e+02, 2.922306213378906e+02, 2.926452026367188e+02, 2.930592346191406e+02, 2.931883239746094e+02, 2.931902770996094e+02, 2.931920776367188e+02, 2.931935424804688e+02, 2.931945190429688e+02, 2.931948852539062e+02, 2.931944885253906e+02, 2.931932067871094e+02, 2.9319091796875e+02, 2.931875915527344e+02, 2.931830749511719e+02, 2.931773376464844e+02, 2.931703491210938e+02, 2.931620788574219e+02, 2.931525573730469e+02, 2.93145263671875e+02, 2.931332702636719e+02, 2.931201171875e+02, 2.931059265136719e+02, 2.930907897949219e+02, 2.930747680664062e+02, 2.930580444335938e+02, 2.930407104492188e+02, 2.9302294921875e+02, 2.930049133300781e+02, 2.929867248535156e+02, 2.929685974121094e+02, 2.929506530761719e+02, 2.929330749511719e+02, 2.929159851074219e+02, 2.928995666503906e+02, 2.928839111328125e+02, 2.928692016601562e+02, 2.928554992675781e+02, 2.928428955078125e+02, 2.928315124511719e+02, 2.928213500976562e+02, 2.928125e+02, 2.928049621582031e+02, 2.927987365722656e+02, 2.929652709960938e+02, 2.931851806640625e+02, 2.931818237304688e+02, 2.931795654296875e+02, 2.931783142089844e+02, 2.931779479980469e+02, 2.931783142089844e+02, 2.931793212890625e+02, 2.931808166503906e+02, 2.931826171875e+02, 2.931845703125e+02, 2.931865234375e+02, 2.931883239746094e+02, 2.931897888183594e+02, 2.931907958984375e+02, 2.93191162109375e+02, 2.931907958984375e+02, 2.931895446777344e+02, 2.931872863769531e+02, 2.931839599609375e+02, 2.931794738769531e+02, 2.931737365722656e+02, 2.931667785644531e+02, 2.931585388183594e+02, 2.931493835449219e+02, 2.931458435058594e+02, 2.931338500976562e+02, 2.931207275390625e+02, 2.931065368652344e+02, 2.930913696289062e+02, 2.930753479003906e+02, 2.930586242675781e+02, 2.930412902832031e+02, 2.930235290527344e+02, 2.930054931640625e+02, 2.929873046875e+02] +hea.Q_flow=[0e+00, 2.503922271728516e+01, 2.465002632141113e+01, 2.320894813537598e+01, 2.18117618560791e+01, 2.014156150817871e+01, 1.816590881347656e+01, 1.588892841339111e+01, 1.33554801940918e+01, 1.060130023956299e+01, 7.678647041320801e+00, 4.630670070648193e+00, 1.512943863868713e+00, 0e+00, 0e+00, 1e+03, 1e+03, 1e+03, 1e+03, 1e+03, 1e+03, 1e+03, 1e+03, 1e+03, 1e+03, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+03, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.655368232727051e+01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatExchangers_Examples_WetCoilEffectivenessNTUMassFlow.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatExchangers_Examples_WetCoilEffectivenessNTUMassFlow.txt new file mode 100644 index 0000000000..fa7a4670dd --- /dev/null +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatExchangers_Examples_WetCoilEffectivenessNTUMassFlow.txt @@ -0,0 +1,18 @@ +last-generated=2021-11-10 +statistics-initialization= +{ + "nonlinear": "0, 1", + "numerical Jacobians": "0" +} +statistics-simulation= +{ + "linear": "2", + "nonlinear": "1, 1", + "number of continuous time states": "2", + "numerical Jacobians": "0" +} +time=[0e+00, 3.6e+03] +hex.Q2_flow=[-3.7494560546875e+03, -3.762437744140625e+03, -3.77401953125e+03, -3.7843623046875e+03, -3.7936015625e+03, -3.8018486328125e+03, -3.80921142578125e+03, -3.815789306640625e+03, -3.82166748046875e+03, -3.826925048828125e+03, -3.831625e+03, -3.64524609375e+03, -3.43510498046875e+03, -3.197364990234375e+03, -2.927271484375e+03, -2.61885986328125e+03, -2.264531982421875e+03, -1.854357666015625e+03, -1.374672485351562e+03, -7.855562133789062e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.038280792236328e+02, -1.036799240112305e+02, -1.015594100952148e+02, -9.35758361816406e+01, -2.566052171745495e-12, -1.020588989257813e+02, -1.033491058349609e+02, -1.036801452636719e+02, -1.038280792236328e+02, -1.039116287231445e+02, -1.038749542236328e+02, -1.038280792236328e+02, -1.037660522460938e+02, -1.036801452636719e+02, -1.035534973144531e+02, -1.033491058349609e+02, -1.029689712524414e+02, -1.020588989257812e+02, -9.821800994873047e+01, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00] +hex.QLat2_flow=[-2.36338427734375e+03, -2.372035400390625e+03, -2.379748291015625e+03, -2.386632080078125e+03, -2.392778076171875e+03, -2.398261474609375e+03, -2.40315478515625e+03, -2.407524658203125e+03, -2.4114287109375e+03, -2.41491943359375e+03, -2.418038818359375e+03, -2.29372021484375e+03, -2.152081787109375e+03, -1.990034301757812e+03, -1.803704711914062e+03, -1.588178344726562e+03, -1.337121948242188e+03, -1.042175048828125e+03, -6.917086791992188e+02, -2.312579040527344e+02, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -2.547457495854672e-13, -8.407790785948637e-45, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00] +hex.port_a1.m_flow=[1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 9.009999781847e-02, 8.020000159740448e-02, 7.029999792575836e-02, 6.040000170469283e-02, 5.050000175833702e-02, 4.06000018119812e-02, 3.070000000298023e-02, 2.080000005662441e-02, 1.090000011026859e-02, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03] +hex.port_a2.m_flow=[1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.120000034570694e-01, 8.399999886751175e-02, 5.60000017285347e-02, 2.800000086426717e-02, -7.140166331002833e-15, -2.800000086426753e-02, -5.60000017285347e-02, -8.399999886751175e-02, -1.120000034570694e-01, -1.400000005960464e-01, -1.260000020265579e-01, -1.120000034570694e-01, -9.799999743700027e-02, -8.399999886751175e-02, -7.000000029802322e-02, -5.60000017285347e-02, -4.199999943375587e-02, -2.800000086426735e-02, -1.400000043213367e-02, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatExchangers_Validation_DryCoilEffectivenessNTU.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatExchangers_Validation_DryCoilEffectivenessNTU.txt index 5e947bf055..8e18af6751 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatExchangers_Validation_DryCoilEffectivenessNTU.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatExchangers_Validation_DryCoilEffectivenessNTU.txt @@ -1,4 +1,4 @@ -last-generated=2020-03-03 +last-generated=2022-05-23 statistics-simulation= { "linear": " ", diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt new file mode 100644 index 0000000000..6709692803 --- /dev/null +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt @@ -0,0 +1,23 @@ +last-generated=2021-11-10 +statistics-initialization= +{ + "nonlinear": "0, 1, 1", + "numerical Jacobians": "0" +} +statistics-simulation= +{ + "linear": "0, 0", + "nonlinear": "1, 1, 1, 1, 1, 1", + "number of continuous time states": "8", + "numerical Jacobians": "0" +} +time=[0e+00, 1e+03] +hexWetNTU.Q1_flow=[4.52515390625e+04, 4.525468359375e+04, 4.525782421875e+04, 4.526096484375e+04, 4.526410546875e+04, 4.52672421875e+04, 4.527037890625e+04, 4.5273515625e+04, 4.52766484375e+04, 4.527978515625e+04, 4.52829140625e+04, 4.5286046875e+04, 4.528917578125e+04, 4.529230078125e+04, 4.52954296875e+04, 4.52985546875e+04, 4.530167578125e+04, 4.530480078125e+04, 4.5307921875e+04, 4.531104296875e+04, 4.531416015625e+04, 4.531727734375e+04, 4.532038671875e+04, 4.532303515625e+04, 4.532248046875e+04, 4.53144609375e+04, 4.5298390625e+04, 4.52810390625e+04, 4.527647265625e+04, 4.530363671875e+04, 4.538300390625e+04, 4.553337109375e+04, 4.576944921875e+04, 4.61003984375e+04, 4.652926953125e+04, 4.705319921875e+04, 4.76641015625e+04, 4.834965234375e+04, 4.90945078125e+04, 4.98816015625e+04, 5.069348046875e+04, 5.1513578125e+04, 5.232732421875e+04, 5.31230625e+04, 5.389259765625e+04, 5.4631421875e+04, 5.533859375e+04, 5.60162734375e+04, 5.6668984375e+04, 5.73026484375e+04, 5.79235e+04, 5.8536984375e+04, 5.91469453125e+04, 5.975540625e+04, 6.036305078125e+04, 6.09699921875e+04, 6.157624609375e+04, 6.218180859375e+04, 6.27866796875e+04, 6.339086328125e+04, 6.3994359375e+04, 6.45971640625e+04, 6.519928515625e+04, 6.58007265625e+04, 6.64014765625e+04, 6.7001546875e+04, 6.76009375e+04, 6.81996484375e+04, 6.87976796875e+04, 6.93950390625e+04, 6.999171875e+04, 7.05877265625e+04, 7.11830703125e+04, 7.17777421875e+04, 7.23717421875e+04, 7.29650703125e+04, 7.35577421875e+04, 7.41497421875e+04, 7.474109375e+04, 7.5331796875e+04, 7.5921828125e+04, 7.6511203125e+04, 7.70999296875e+04, 7.76880078125e+04, 7.82754453125e+04, 7.886225e+04, 7.94483984375e+04, 8.003390625e+04, 8.061878125e+04, 8.12030234375e+04, 8.1786640625e+04, 8.23696328125e+04, 8.2951984375e+04, 8.35337109375e+04, 8.41148203125e+04, 8.46953046875e+04, 8.52751796875e+04, 8.5854453125e+04, 8.6433109375e+04, 8.701115625e+04, 8.75886015625e+04] +hexWetNTU_TX.Q1_flow=[4.53355859375e+04, 4.533874609375e+04, 4.534190234375e+04, 4.534505859375e+04, 4.534821484375e+04, 4.53513671875e+04, 4.53545234375e+04, 4.5357671875e+04, 4.536082421875e+04, 4.536397265625e+04, 4.536712109375e+04, 4.5370265625e+04, 4.537341015625e+04, 4.53765546875e+04, 4.53796953125e+04, 4.53828359375e+04, 4.53859765625e+04, 4.53891171875e+04, 4.539225390625e+04, 4.5395390625e+04, 4.53985234375e+04, 4.540165625e+04, 4.540477734375e+04, 4.540739453125e+04, 4.540666796875e+04, 4.539839453125e+04, 4.53822265625e+04, 4.536520703125e+04, 4.536162109375e+04, 4.53905e+04, 4.54722890625e+04, 4.562567578125e+04, 4.586521484375e+04, 4.619987890625e+04, 4.663255078125e+04, 4.716023828125e+04, 4.777473046875e+04, 4.84636484375e+04, 4.921160546875e+04, 5.00015390625e+04, 5.081601171875e+04, 5.16384921875e+04, 5.245446484375e+04, 5.325230859375e+04, 5.402385546875e+04, 5.47646328125e+04, 5.5473703125e+04, 5.615321875e+04, 5.68076953125e+04, 5.7443046875e+04, 5.80655e+04, 5.868051171875e+04, 5.92919453125e+04, 5.990184765625e+04, 6.05109296875e+04, 6.111930859375e+04, 6.172699609375e+04, 6.233398828125e+04, 6.294029296875e+04, 6.354590625e+04, 6.4150828125e+04, 6.475506640625e+04, 6.535861328125e+04, 6.59614765625e+04, 6.65636484375e+04, 6.7165140625e+04, 6.7765953125e+04, 6.83660859375e+04, 6.896553125e+04, 6.95643046875e+04, 7.016240625e+04, 7.0759828125e+04, 7.13565859375e+04, 7.19526640625e+04, 7.2548078125e+04, 7.31428125e+04, 7.3736890625e+04, 7.43303046875e+04, 7.49230625e+04, 7.55151640625e+04, 7.610659375e+04, 7.6697375e+04, 7.72875e+04, 7.78769765625e+04, 7.84658125e+04, 7.9054015625e+04, 7.96415625e+04, 8.02284609375e+04, 8.08147265625e+04, 8.14003515625e+04, 8.1985359375e+04, 8.25697421875e+04, 8.3153484375e+04, 8.373659375e+04, 8.43190859375e+04, 8.4900953125e+04, 8.54822109375e+04, 8.6062859375e+04, 8.6642890625e+04, 8.72223203125e+04, 8.78011328125e+04] +hexWetNTU.sta_b2.T=[2.828675231933594e+02, 2.828683471679688e+02, 2.828692016601562e+02, 2.828700256347656e+02, 2.82870849609375e+02, 2.828716735839844e+02, 2.828725280761719e+02, 2.828733520507812e+02, 2.828741760253906e+02, 2.82875e+02, 2.828758544921875e+02, 2.828766784667969e+02, 2.828775024414062e+02, 2.828783264160156e+02, 2.82879150390625e+02, 2.828799743652344e+02, 2.828808288574219e+02, 2.828816528320312e+02, 2.828824768066406e+02, 2.8288330078125e+02, 2.828841247558594e+02, 2.828849487304688e+02, 2.828857727050781e+02, 2.828867797851562e+02, 2.828889770507812e+02, 2.828939514160156e+02, 2.829019470214844e+02, 2.829103393554688e+02, 2.829310913085938e+02, 2.829620361328125e+02, 2.830042114257812e+02, 2.830580749511719e+02, 2.831233215332031e+02, 2.83198974609375e+02, 2.832834777832031e+02, 2.83375e+02, 2.834713439941406e+02, 2.835703430175781e+02, 2.836697692871094e+02, 2.83767578125e+02, 2.838619384765625e+02, 2.83951416015625e+02, 2.840349731445312e+02, 2.841120300292969e+02, 2.841824645996094e+02, 2.842465515136719e+02, 2.84304931640625e+02, 2.843585205078125e+02, 2.844083251953125e+02, 2.844554748535156e+02, 2.845009460449219e+02, 2.845455322265625e+02, 2.845897827148438e+02, 2.846339111328125e+02, 2.846780395507812e+02, 2.8472216796875e+02, 2.847663269042969e+02, 2.848104858398438e+02, 2.848546447753906e+02, 2.848988037109375e+02, 2.849429931640625e+02, 2.849871520996094e+02, 2.850313415527344e+02, 2.850755310058594e+02, 2.851197509765625e+02, 2.851639404296875e+02, 2.852081604003906e+02, 2.852523803710938e+02, 2.852966003417969e+02, 2.853408203125e+02, 2.853850402832031e+02, 2.854292602539062e+02, 2.854735107421875e+02, 2.855177307128906e+02, 2.855619506835938e+02, 2.85606201171875e+02, 2.856504211425781e+02, 2.856946716308594e+02, 2.857389221191406e+02, 2.857831420898438e+02, 2.85827392578125e+02, 2.858716125488281e+02, 2.859158630371094e+02, 2.859600830078125e+02, 2.860043029785156e+02, 2.860485229492188e+02, 2.860927429199219e+02, 2.86136962890625e+02, 2.861811828613281e+02, 2.862253723144531e+02, 2.862695922851562e+02, 2.863137817382812e+02, 2.863579711914062e+02, 2.864021301269531e+02, 2.864463195800781e+02, 2.86490478515625e+02, 2.865346374511719e+02, 2.865787963867188e+02, 2.866229248046875e+02, 2.866670532226562e+02, 2.867111511230469e+02] +hexWetNTU_TX.sta_b2.T=[2.828360595703125e+02, 2.828368835449219e+02, 2.828377075195312e+02, 2.828385314941406e+02, 2.8283935546875e+02, 2.828402099609375e+02, 2.828410339355469e+02, 2.828418579101562e+02, 2.828426818847656e+02, 2.82843505859375e+02, 2.828443298339844e+02, 2.828451538085938e+02, 2.828460083007812e+02, 2.828468322753906e+02, 2.8284765625e+02, 2.828484802246094e+02, 2.828493041992188e+02, 2.828501281738281e+02, 2.828509521484375e+02, 2.828517761230469e+02, 2.828526000976562e+02, 2.828534240722656e+02, 2.82854248046875e+02, 2.828552551269531e+02, 2.828575439453125e+02, 2.828626098632812e+02, 2.828706359863281e+02, 2.828792724609375e+02, 2.829005737304688e+02, 2.829319458007812e+02, 2.82974609375e+02, 2.830289611816406e+02, 2.830946350097656e+02, 2.831706848144531e+02, 2.832555541992188e+02, 2.833473510742188e+02, 2.834439086914062e+02, 2.835430603027344e+02, 2.836425476074219e+02, 2.837403869628906e+02, 2.838347473144531e+02, 2.839241943359375e+02, 2.840076904296875e+02, 2.84084716796875e+02, 2.841550903320312e+02, 2.842191162109375e+02, 2.842774353027344e+02, 2.843309326171875e+02, 2.843807067871094e+02, 2.844277648925781e+02, 2.8447314453125e+02, 2.845176696777344e+02, 2.845617980957031e+02, 2.846058349609375e+02, 2.846498718261719e+02, 2.846939086914062e+02, 2.847379760742188e+02, 2.847820129394531e+02, 2.848260803222656e+02, 2.848701782226562e+02, 2.849142456054688e+02, 2.849583435058594e+02, 2.8500244140625e+02, 2.850465393066406e+02, 2.850906372070312e+02, 2.85134765625e+02, 2.851788940429688e+02, 2.852230224609375e+02, 2.852671508789062e+02, 2.85311279296875e+02, 2.853554077148438e+02, 2.853995666503906e+02, 2.854436950683594e+02, 2.854878540039062e+02, 2.855320129394531e+02, 2.855761413574219e+02, 2.856203002929688e+02, 2.856644592285156e+02, 2.857086181640625e+02, 2.857527770996094e+02, 2.857969360351562e+02, 2.858410949707031e+02, 2.8588525390625e+02, 2.859293823242188e+02, 2.859735412597656e+02, 2.860177001953125e+02, 2.860618286132812e+02, 2.8610595703125e+02, 2.861501159667969e+02, 2.861942443847656e+02, 2.862383728027344e+02, 2.86282470703125e+02, 2.863265991210938e+02, 2.863706970214844e+02, 2.86414794921875e+02, 2.864588928222656e+02, 2.865029907226562e+02, 2.865470581054688e+02, 2.865911254882812e+02, 2.866351928710938e+02, 2.866792297363281e+02] +relHumOut_eps.phi=[5e-01, 4.923497140407562e-01, 5.111605525016785e-01, 5.299617052078247e-01, 5.4875248670578e-01, 5.675325989723206e-01, 5.863022208213806e-01, 6.050612330436707e-01, 6.238097548484802e-01, 6.425477266311646e-01, 6.612751483917236e-01, 6.799920797348022e-01, 6.986984610557556e-01, 7.173943519592285e-01, 7.360797524452209e-01, 7.547546625137329e-01, 7.734190821647644e-01, 7.920730113983154e-01, 8.107165098190308e-01, 8.293495774269104e-01, 8.479721546173096e-01, 8.665842413902283e-01, 8.851854801177979e-01, 9.037680625915527e-01, 9.222760796546936e-01, 9.406039118766785e-01, 9.58713710308075e-01, 9.767370820045471e-01, 9.93256151676178e-01, 1.007805705070496e+00, 1.019930958747864e+00, 1.029149055480957e+00, 1.035206437110901e+00, 1.03804886341095e+00, 1.037809491157532e+00, 1.034799337387085e+00, 1.029469132423401e+00, 1.022361397743225e+00, 1.014062643051147e+00, 1.005163073539734e+00, 9.962171912193298e-01, 9.877109527587891e-01, 9.800402522087097e-01, 9.73473072052002e-01, 9.681712985038757e-01, 9.641796350479126e-01, 9.614344835281372e-01, 9.597887396812439e-01, 9.590369462966919e-01, 9.589440226554871e-01, 9.592790007591248e-01, 9.59847092628479e-01, 9.605103731155396e-01, 9.612061977386475e-01, 9.6189945936203e-01, 9.625873565673828e-01, 9.632716178894043e-01, 9.639506936073303e-01, 9.646247625350952e-01, 9.652947783470154e-01, 9.659604430198669e-01, 9.666213393211365e-01, 9.672784209251404e-01, 9.679309725761414e-01, 9.685778021812439e-01, 9.692213535308838e-01, 9.698604941368103e-01, 9.704940915107727e-01, 9.711238145828247e-01, 9.71749484539032e-01, 9.723706841468811e-01, 9.729876518249512e-01, 9.73600447177887e-01, 9.742090106010437e-01, 9.748133420944214e-01, 9.7541344165802e-01, 9.760093688964844e-01, 9.766011238098145e-01, 9.771888256072998e-01, 9.777724146842957e-01, 9.78351891040802e-01, 9.789272546768188e-01, 9.79498565196991e-01, 9.800658822059631e-01, 9.806291460990906e-01, 9.811884760856628e-01, 9.817438125610352e-01, 9.822952151298523e-01, 9.82842743396759e-01, 9.833862781524658e-01, 9.83925998210907e-01, 9.844618439674377e-01, 9.849938750267029e-01, 9.855220317840576e-01, 9.860464334487915e-01, 9.865670800209045e-01, 9.870839715003967e-01, 9.875971078872681e-01, 9.881065487861633e-01, 9.886122345924377e-01, 9.891141653060913e-01] +hexWetNTU.SHR=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1.000003576278687e+00, 9.989973902702332e-01, 9.966943860054016e-01, 9.92591381072998e-01, 9.862805604934692e-01, 9.775184392929077e-01, 9.662570357322693e-01, 9.526430368423462e-01, 9.369899034500122e-01, 9.197337031364441e-01, 9.013803601264954e-01, 8.824540972709656e-01, 8.634523153305054e-01, 8.448102474212646e-01, 8.26877772808075e-01, 8.099069595336914e-01, 7.940503358840942e-01, 7.793670892715454e-01, 7.658352255821228e-01, 7.533681392669678e-01, 7.41832971572876e-01, 7.310706377029419e-01, 7.209159135818481e-01, 7.112168669700623e-01, 7.01851487159729e-01, 6.927374601364136e-01, 6.838306188583374e-01, 6.751126050949097e-01, 6.665754914283752e-01, 6.582135558128357e-01, 6.500214338302612e-01, 6.419938802719116e-01, 6.341259479522705e-01, 6.264128684997559e-01, 6.188501119613647e-01, 6.114331483840942e-01, 6.041578650474548e-01, 5.97020149230957e-01, 5.900160670280457e-01, 5.831418633460999e-01, 5.763939023017883e-01, 5.697687268257141e-01, 5.632628798484802e-01, 5.568732619285583e-01, 5.505965948104858e-01, 5.444299578666687e-01, 5.383703708648682e-01, 5.324150919914246e-01, 5.26561439037323e-01, 5.208067297935486e-01, 5.151484608650208e-01, 5.095841884613037e-01, 5.041115283966064e-01, 4.987282454967499e-01, 4.934321343898773e-01, 4.882210493087769e-01, 4.830929040908813e-01, 4.780457317829132e-01, 4.730775952339172e-01, 4.68186616897583e-01, 4.633710086345673e-01, 4.586290121078491e-01, 4.539588987827301e-01, 4.493590295314789e-01, 4.448278248310089e-01, 4.403637051582336e-01, 4.359652101993561e-01, 4.316308498382568e-01, 4.273592531681061e-01, 4.231489896774292e-01, 4.189987480640411e-01, 4.149072766304016e-01, 4.108732640743256e-01, 4.068955183029175e-01] +hexWetNTU.dryFra=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.999983310699463e-01, 9.998849034309387e-01, 9.988121390342712e-01, 9.946661591529846e-01, 9.846230149269104e-01, 9.660594463348389e-01, 9.371666312217712e-01, 8.972086310386658e-01, 8.465222120285034e-01, 7.863500714302063e-01, 7.185908555984497e-01, 6.455324292182922e-01, 5.696135759353638e-01, 4.932344257831573e-01, 4.186176955699921e-01, 3.477114737033844e-01, 2.821237146854401e-01, 2.230798602104187e-01, 1.714001446962357e-01, 1.274963617324829e-01, 9.138908982276917e-02, 6.274590641260147e-02, 4.093839973211288e-02, 2.511384338140488e-02, 1.42756849527359e-02, 7.366773206740618e-03, 3.350349143147469e-03, 1.284816185943782e-03, 3.879146534018219e-04, 8.244327909778804e-05, 1.014771714835661e-05, 4.987246029486414e-07, 4.369183237429297e-09, 8.053820197556627e-13, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +hexWetNTU.UA_nominal=[4.748e+03, 4.748e+03] +hexWetNTU_TX.UA_nominal=[4.77145166015625e+03, 4.77145166015625e+03] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatPumps_Validation_ScrollWaterToWater_ScalingFactor.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatPumps_Validation_ScrollWaterToWater_ScalingFactor.txt index 461a602d1c..bc06e6733d 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatPumps_Validation_ScrollWaterToWater_ScalingFactor.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_HeatPumps_Validation_ScrollWaterToWater_ScalingFactor.txt @@ -1,4 +1,4 @@ -last-generated=2021-05-19 +last-generated=2022-05-23 statistics-simulation= { "linear": " ", @@ -7,6 +7,6 @@ statistics-simulation= "numerical Jacobians": "0" } time=[0e+00, 1e+03] -heaPum.QCon_flow=[2.8120263671875e+04, 2.4849548828125e+04, 2.269644140625e+04, 2.124419140625e+04, 2.024877734375e+04, 1.9559107421875e+04, 1.9077888671875e+04, 1.874059375e+04, 1.8503525390625e+04, 1.8336658203125e+04, 1.8219140625e+04, 1.813641796875e+04, 1.8078236328125e+04, 1.8037384765625e+04, 1.8008779296875e+04, 1.79887890625e+04, 1.79748671875e+04, 1.7965234375e+04, 1.7958615234375e+04, 1.7954095703125e+04, 1.7951041015625e+04, 1.7949005859375e+04, 1.794767578125e+04, 1.7946828125e+04, 1.7946306640625e+04, 1.794601171875e+04, 1.7945869140625e+04, 1.7945814453125e+04, 1.7945814453125e+04, 1.794584375e+04, 1.794589453125e+04, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 2.0806671875e+04, 1.9999080078125e+04, 1.942970703125e+04, 1.902496875e+04, 1.8735306640625e+04, 1.852680078125e+04, 1.8375939453125e+04, 1.826623046875e+04, 1.81860625e+04, 1.8127177734375e+04, 1.8083693359375e+04, 1.80514140625e+04, 1.802730078125e+04, 1.800917578125e+04, 1.7995466796875e+04, 1.798502734375e+04, 1.7977021484375e+04, 1.797083984375e+04, 1.796603515625e+04, 1.79622734375e+04, 1.79593046875e+04, 1.79569453125e+04, 1.79550625e+04, 1.7953548828125e+04, 1.795232421875e+04, 1.795133203125e+04, 1.7950521484375e+04, 1.7949857421875e+04, 1.7949310546875e+04, 1.7948861328125e+04, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +heaPum.QCon_flow=[2.8120263671875e+04, 2.4849548828125e+04, 2.269644140625e+04, 2.124419140625e+04, 2.024877734375e+04, 1.9559107421875e+04, 1.9077888671875e+04, 1.874059375e+04, 1.8503525390625e+04, 1.8336658203125e+04, 1.8219140625e+04, 1.813641796875e+04, 1.8078236328125e+04, 1.8037384765625e+04, 1.8008779296875e+04, 1.79887890625e+04, 1.79748671875e+04, 1.7965234375e+04, 1.7958615234375e+04, 1.7954095703125e+04, 1.7951041015625e+04, 1.7949005859375e+04, 1.794767578125e+04, 1.7946828125e+04, 1.7946306640625e+04, 1.794601171875e+04, 1.7945869140625e+04, 1.7945814453125e+04, 1.79458125e+04, 1.794584375e+04, 1.794589453125e+04, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 2.0806671875e+04, 1.9999080078125e+04, 1.942970703125e+04, 1.902496875e+04, 1.8735306640625e+04, 1.852680078125e+04, 1.8375939453125e+04, 1.826623046875e+04, 1.81860625e+04, 1.8127177734375e+04, 1.8083693359375e+04, 1.80514140625e+04, 1.802730078125e+04, 1.800917578125e+04, 1.7995466796875e+04, 1.798502734375e+04, 1.7977021484375e+04, 1.797083984375e+04, 1.796603515625e+04, 1.79622734375e+04, 1.79593046875e+04, 1.79569453125e+04, 1.79550625e+04, 1.7953548828125e+04, 1.795232421875e+04, 1.795133203125e+04, 1.7950521484375e+04, 1.7949857421875e+04, 1.7949310546875e+04, 1.7948861328125e+04, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] heaPum1.QCon_flow=[6.77698359375e+04, 5.988741015625e+04, 5.4698421875e+04, 5.11985e+04, 4.87995546875e+04, 4.713744921875e+04, 4.59777109375e+04, 4.516483203125e+04, 4.45935e+04, 4.419134765625e+04, 4.390812890625e+04, 4.3708765625e+04, 4.356855078125e+04, 4.34701015625e+04, 4.340115625e+04, 4.335298046875e+04, 4.33194296875e+04, 4.329621484375e+04, 4.3280265625e+04, 4.326937109375e+04, 4.32620078125e+04, 4.325710546875e+04, 4.32538984375e+04, 4.325185546875e+04, 4.32506015625e+04, 4.324988671875e+04, 4.3249546875e+04, 4.32494140625e+04, 4.324941015625e+04, 4.3249484375e+04, 4.324960546875e+04, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 5.0144078125e+04, 4.819778125e+04, 4.682559375e+04, 4.585017578125e+04, 4.515208984375e+04, 4.464959375e+04, 4.428601171875e+04, 4.40216171875e+04, 4.382841015625e+04, 4.36865e+04, 4.358169921875e+04, 4.350390625e+04, 4.3445796875e+04, 4.340211328125e+04, 4.336907421875e+04, 4.334391796875e+04, 4.332462109375e+04, 4.33097265625e+04, 4.329814453125e+04, 4.3289078125e+04, 4.328192578125e+04, 4.32762421875e+04, 4.327169921875e+04, 4.326805078125e+04, 4.32651015625e+04, 4.32627109375e+04, 4.326075390625e+04, 4.325915625e+04, 4.325783984375e+04, 4.325675390625e+04, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -capErr.y=[-7.275957614183426e-11, -8.003553375601768e-11, -7.275957614183426e-11, -6.548361852765083e-11, -5.820766091346741e-11, -6.548361852765083e-11, -5.820766091346741e-11, -5.820766091346741e-11, -5.820766091346741e-11, -5.820766091346741e-11, -5.093170329928398e-11, -5.093170329928398e-11, -5.093170329928398e-11, -5.093170329928398e-11, -2.306478563696146e-09, -5.093170329928398e-11, -5.820766091346741e-11, -5.093170329928398e-11, -5.093170329928398e-11, -5.820766091346741e-11, -5.820766091346741e-11, -5.820766091346741e-11, -5.093170329928398e-11, -5.820766091346741e-11, -5.820766091346741e-11, -5.093170329928398e-11, -5.820766091346741e-11, -5.093170329928398e-11, -5.093170329928398e-11, -5.093170329928398e-11, -5.093170329928398e-11, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -6.548361852765083e-11, -6.548361852765083e-11, -5.820766091346741e-11, -5.820766091346741e-11, -5.093170329928398e-11, -5.820766091346741e-11, -5.093170329928398e-11, -5.820766091346741e-11, -5.820766091346741e-11, -5.820766091346741e-11, -5.820766091346741e-11, -5.820766091346741e-11, -5.820766091346741e-11, -5.093170329928398e-11, -5.093170329928398e-11, -5.093170329928398e-11, -5.093170329928398e-11, -5.820766091346741e-11, -5.093170329928398e-11, -5.820766091346741e-11, -5.093170329928398e-11, -5.820766091346741e-11, -5.820766091346741e-11, -5.820766091346741e-11, -5.093170329928398e-11, -5.093170329928398e-11, -5.093170329928398e-11, -5.093170329928398e-11, -5.820766091346741e-11, -2.306478563696146e-09, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +capErr.y=[-7.275957614183426e-11, -7.275957614183426e-11, -7.275957614183426e-11, -5.820766091346741e-11, -5.820766091346741e-11, -5.820766091346741e-11, -5.093170329928398e-11, -6.548361852765083e-11, -5.093170329928398e-11, -5.093170329928398e-11, -5.820766091346741e-11, -5.093170329928398e-11, -5.820766091346741e-11, -5.820766091346741e-11, -5.820766091346741e-11, -5.093170329928398e-11, -5.093170329928398e-11, -5.093170329928398e-11, -5.820766091346741e-11, -5.820766091346741e-11, -5.093170329928398e-11, -4.365574568510056e-11, -5.093170329928398e-11, -5.093170329928398e-11, -5.820766091346741e-11, -5.093170329928398e-11, -5.820766091346741e-11, -5.093170329928398e-11, -5.820766091346741e-11, -5.093170329928398e-11, -5.093170329928398e-11, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -5.820766091346741e-11, 4.445610102266073e-09, 6.708432920277119e-09, -5.820766091346741e-11, -2.306478563696146e-09, -6.824848242104053e-09, -9.065843187272549e-09, -4.562025424093008e-09, -1.358421286568046e-08, -9.073119144886732e-09, 2.197339199483395e-09, -6.81757228448987e-09, -6.81757228448987e-09, 2.197339199483395e-09, -2.306478563696146e-09, 2.204615157097578e-09, 4.46016201749444e-09, -5.093170329928398e-11, -4.562025424093008e-09, -9.073119144886732e-09, -6.810296326875687e-09, -4.562025424093008e-09, -2.306478563696146e-09, -2.313754521310329e-09, -2.313754521310329e-09, -5.820766091346741e-11, -5.820766091346741e-11, -5.820766091346741e-11, -5.820766091346741e-11, -2.306478563696146e-09, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Humidifiers_Validation_SprayAirWasher_X_dynamic.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Humidifiers_Validation_SprayAirWasher_X_dynamic.txt index 3a558c3190..2e11b16213 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Humidifiers_Validation_SprayAirWasher_X_dynamic.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Humidifiers_Validation_SprayAirWasher_X_dynamic.txt @@ -1,14 +1,14 @@ -last-generated=2020-08-17 +last-generated=2022-05-23 statistics-simulation= { "linear": " ", "nonlinear": " ", - "number of continuous time states": "1", + "number of continuous time states": "2", "numerical Jacobians": "0" } time=[0e+00, 1.08e+03] XSet.y[1]=[9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03] -senHum.X=[1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.060531938039566e-02, 1.152612946758439e-02, 1.183837563495442e-02, 1.194479037076235e-02, 1.198132987420862e-02, 1.199371367257938e-02, 1.199800986925041e-02, 1.199946086760583e-02, 1.199983526021242e-02, 1.200000569258042e-02, 1.200029533344323e-02, 1.200052350783191e-02, 1.2000707909628e-02, 1.200065482407808e-02, 1.200044527623037e-02, 1.200021617127176e-02, 1.200004946431248e-02, 1.354235584153497e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.169718150138923e-02, 1.057616401085849e-02, 1.019461971863696e-02, 1.006580246337164e-02, 1.002180203795433e-02, 1.000751088515732e-02, 1.00025078211865e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02] +senHum.X=[1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.060432938662784e-02, 1.152586217922129e-02, 1.183904804983093e-02, 1.194545347243547e-02, 1.198154780381082e-02, 1.199380494228643e-02, 1.199774909870057e-02, 1.199891325015301e-02, 1.199949625879526e-02, 1.199985202418719e-02, 1.199989859017381e-02, 1.199986971913716e-02, 1.199989859010539e-02, 1.199996285140514e-02, 1.200000382962474e-02, 1.200001500546143e-02, 1.200001593678663e-02, 1.354005640800354e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.16984862813373e-02, 1.057669952471787e-02, 1.019572799376392e-02, 1.006637895239797e-02, 1.002257037907839e-02, 1.000802963140507e-02, 1.000282633423334e-02, 1.00009925686103e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02] hum.sta_a.T=[2.931499938964844e+02, 2.931499938964844e+02] -hum.sta_b.T=[2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.916733116530084e+02, 2.894298394572656e+02, 2.886698912498457e+02, 2.884109802246094e+02, 2.883220825352257e+02, 2.882919616805286e+02, 2.882815246550125e+02, 2.882779846213827e+02, 2.882770690917969e+02, 2.882766723624189e+02, 2.882759399417512e+02, 2.882753906244826e+02, 2.882749633783889e+02, 2.882750854492188e+02, 2.882755737311586e+02, 2.882761535641082e+02, 2.882765502932274e+02, 2.845296373996733e+02, 2.83422119140625e+02, 2.83422119140625e+02, 2.83422119140625e+02, 2.83422119140625e+02, 2.83422119140625e+02, 2.83422119140625e+02, 2.83422119140625e+02, 2.83422119140625e+02, 2.83422119140625e+02, 2.83422119140625e+02, 2.83422119140625e+02, 2.83422119140625e+02, 2.83422119140625e+02, 2.83422119140625e+02, 2.83422119140625e+02, 2.83422119140625e+02, 2.890134933018961e+02, 2.917443878637757e+02, 2.92675047529123e+02, 2.929894101798087e+02, 2.930968017578125e+02, 2.931316833687529e+02, 2.931438903977609e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02] -hum.mWat_flow=[1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 6.053195384278375e-05, 1.526129458269844e-04, 1.838375363707052e-04, 1.94479085621424e-04, 1.981329835791894e-04, 1.993714099822049e-04, 1.998009976351605e-04, 1.999460654564801e-04, 1.999834930757061e-04, 2.000005625059045e-04, 2.000295498752325e-04, 2.000523236585032e-04, 2.000707609277783e-04, 2.00065434910357e-04, 2.000445674367808e-04, 2.000216336581021e-04, 2.00004898934043e-04, 3.542356181466718e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 1.697181608491326e-04, 5.761638414770792e-05, 1.946193018800165e-05, 6.580254136822398e-06, 2.180186584155308e-06, 7.510505568017155e-07, 2.508138088860395e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07] +hum.sta_b.T=[2.931499938964844e+02, 2.931484069824407e+02, 2.931475524902559e+02, 2.931473693847656e+02, 2.931472778320312e+02, 2.931473693847656e+02, 2.931474304198787e+02, 2.931474914550781e+02, 2.931475219726562e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931476135253044e+02, 2.931476440429688e+02, 2.931476745605469e+02, 2.931476745605469e+02, 2.93147705078125e+02, 2.928991094557731e+02, 2.910914296864341e+02, 2.896560666122892e+02, 2.888890991210938e+02, 2.885335999239252e+02, 2.883808289163193e+02, 2.883175353798671e+02, 2.882924804863416e+02, 2.882837829589844e+02, 2.882796630828331e+02, 2.882773742687854e+02, 2.882762451169288e+02, 2.882760925294693e+02, 2.882759704589844e+02, 2.882763061528611e+02, 2.88276733398265e+02, 2.882770080566406e+02, 2.870910673988588e+02, 2.847448120117188e+02, 2.838719477478975e+02, 2.835741273022979e+02, 2.834726562218017e+02, 2.834390259023617e+02, 2.83427001953125e+02, 2.834232788068691e+02, 2.834221496585481e+02, 2.834220275878906e+02, 2.834221496580307e+02, 2.834221496582031e+02, 2.834221496582031e+02, 2.834221496582031e+02, 2.834221496582031e+02, 2.83422119140625e+02, 2.83422119140625e+02, 2.854791608430033e+02, 2.890252748386009e+02, 2.912324486162973e+02, 2.923233023429153e+02, 2.928096008300781e+02, 2.930148316724895e+02, 2.930972291084197e+02, 2.931297301773541e+02, 2.931413268960186e+02, 2.931455993652344e+02, 2.931475830098821e+02, 2.931484680189578e+02, 2.931484680186129e+02, 2.93147979737018e+02, 2.931476135253906e+02, 2.931473083494369e+02, 2.931473693851106e+02, 2.931474914550781e+02, 2.931475219726562e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02] +hum.mWat_flow=[1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 6.043290644489293e-05, 1.525862431842535e-04, 1.839048389763543e-04, 1.945453404914588e-04, 1.981547969120207e-04, 1.993804903869705e-04, 1.997749351320419e-04, 1.998913648292589e-04, 1.999496162170544e-04, 1.999851811150604e-04, 1.999898668170844e-04, 1.999869709823354e-04, 1.99989823154554e-04, 1.999963133130223e-04, 2.000004169555838e-04, 2.000014937941856e-04, 2.000016247613816e-04, 3.540056398688673e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 1.698485893677894e-04, 5.766994644702272e-05, 1.957282136380533e-05, 6.637932052303116e-06, 2.257047071907436e-06, 8.029894258274961e-07, 2.825935316002191e-07, 9.923994707576853e-08, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Humidifiers_Validation_SteamHumidifier_X_dynamic.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Humidifiers_Validation_SteamHumidifier_X_dynamic.txt index 38d40dc39b..4acea9c207 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Humidifiers_Validation_SteamHumidifier_X_dynamic.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Humidifiers_Validation_SteamHumidifier_X_dynamic.txt @@ -1,14 +1,14 @@ -last-generated=2017-05-10 +last-generated=2022-05-23 statistics-simulation= { - "numerical Jacobians": "0", - "nonlinear": " ", - "number of continuous time states": "1", - "linear": " " + "linear": " ", + "nonlinear": " ", + "number of continuous time states": "2", + "numerical Jacobians": "0" } -XSet.y[1]=[9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03] -senHum.X=[1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.060534266539954e-02, 1.152623936488769e-02, 1.183950626049027e-02, 1.194559223949909e-02, 1.198126840707923e-02, 1.19938477829617e-02, 1.199795771502307e-02, 1.199935842198051e-02, 1.199995446950197e-02, 1.200011651961943e-02, 1.200007088487117e-02, 1.19999712332741e-02, 1.199993584310838e-02, 1.199991442263126e-02, 1.199993491174369e-02, 1.199995726345391e-02, 1.199998054654459e-02, 1.354040006752835e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.169755961553871e-02, 1.057627111798619e-02, 1.019598876335849e-02, 1.006658384330649e-02, 1.002262812107801e-02, 1.000779773233662e-02, 1.000308058575937e-02, 1.000106148749135e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02] time=[0e+00, 1.08e+03] +XSet.y[1]=[9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03] +senHum.X=[1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.060562392298546e-02, 1.152617975931658e-02, 1.183926318560225e-02, 1.19464211165905e-02, 1.198201998449036e-02, 1.199410855336418e-02, 1.199832186215764e-02, 1.199944876075973e-02, 1.199972629547119e-02, 1.2000041082833e-02, 1.200027298166722e-02, 1.200028788295737e-02, 1.200016029196991e-02, 1.200003363192081e-02, 1.19999796151378e-02, 1.199992559852321e-02, 1.199993677437569e-02, 1.354156235425402e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.169620920135818e-02, 1.057692490225459e-02, 1.019276080435701e-02, 1.006383550805194e-02, 1.002141647040844e-02, 1.000707502621346e-02, 1.000232435203931e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02] hum.sta_a.T=[2.931499938964844e+02, 2.931499938964844e+02] -hum.sta_b.T=[2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.932507322634642e+02, 2.93403778119461e+02, 2.934558105542048e+02, 2.934734191894531e+02, 2.934793395985746e+02, 2.93481414794232e+02, 2.934820861818993e+02, 2.934823303220932e+02, 2.93482421875e+02, 2.934824523925781e+02, 2.934824523925781e+02, 2.93482421875e+02, 2.93482421875e+02, 2.93482421875e+02, 2.93482421875e+02, 2.93482421875e+02, 2.93482421875e+02, 2.93737731604527e+02, 2.938135986328125e+02, 2.938135986328125e+02, 2.938135986328125e+02, 2.938135986328125e+02, 2.938135986328125e+02, 2.938135986328125e+02, 2.938135986328125e+02, 2.938135986328125e+02, 2.938135986328125e+02, 2.938135986328125e+02, 2.938135986328125e+02, 2.938135986328125e+02, 2.938135986328125e+02, 2.938135986328125e+02, 2.938135986328125e+02, 2.938135986328125e+02, 2.934322506668164e+02, 2.932459104337797e+02, 2.931826172761467e+02, 2.931610717925206e+02, 2.931537780761719e+02, 2.93151306150964e+02, 2.931505126942777e+02, 2.93150177002643e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02] -hum.mWat_flow=[1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 6.053423504982561e-05, 1.526239326469566e-04, 1.839506047450805e-04, 1.945591939147562e-04, 1.981268281351049e-04, 1.993848122892633e-04, 1.997958171370559e-04, 1.999358645494311e-04, 1.999954838538542e-04, 2.000116801342698e-04, 2.000070380793154e-04, 1.999971718723611e-04, 1.99993577559045e-04, 1.999914238695055e-04, 1.999934611393645e-04, 1.999957457866014e-04, 1.999980158881731e-04, 3.540399534351435e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 1.697559809949835e-04, 5.762709485991012e-05, 1.959887285800291e-05, 6.658384763353706e-06, 2.262776433781255e-06, 7.797840349258192e-07, 3.080973440389264e-07, 1.06108680452693e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07] +hum.sta_b.T=[2.931499938964844e+02, 2.931501159667942e+02, 2.931501770019477e+02, 2.931502075195097e+02, 2.931502380371094e+02, 2.931502380371094e+02, 2.931502075195312e+02, 2.931502075195312e+02, 2.931502380371094e+02, 2.931502380371094e+02, 2.931502380371094e+02, 2.931502380371094e+02, 2.931502075195312e+02, 2.931502075195312e+02, 2.931502075195312e+02, 2.931502075195312e+02, 2.931501770019531e+02, 2.931668700788999e+02, 2.93290496893089e+02, 2.933883667184057e+02, 2.934402160644531e+02, 2.934646911571941e+02, 2.934752807576658e+02, 2.934796142591923e+02, 2.934812927234021e+02, 2.934820251464844e+02, 2.934823913575943e+02, 2.934825134276481e+02, 2.934825744628044e+02, 2.934824218751725e+02, 2.934823608398438e+02, 2.934823913574219e+02, 2.934824218749138e+02, 2.93482421875e+02, 2.935628965277642e+02, 2.93724365234375e+02, 2.937830810879736e+02, 2.938031616139364e+02, 2.938102722188665e+02, 2.938127136213222e+02, 2.938133239746094e+02, 2.938135375978287e+02, 2.938136901855469e+02, 2.938137512207031e+02, 2.938136901857193e+02, 2.938135986328125e+02, 2.938135375976562e+02, 2.938135375976562e+02, 2.938135375976562e+02, 2.938135681152344e+02, 2.938135986328125e+02, 2.936726376426419e+02, 2.934306331182449e+02, 2.932813723265946e+02, 2.932074890740344e+02, 2.931734924316406e+02, 2.931593627840006e+02, 2.931535644458815e+02, 2.931512146030587e+02, 2.931504516605012e+02, 2.931502990722656e+02, 2.9315026855486e+02, 2.931502685546875e+02, 2.931502380371094e+02, 2.931502075195312e+02, 2.931501770019531e+02, 2.93150146484375e+02, 2.931501464847199e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02] +hum.mWat_flow=[1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 6.056235280476718e-05, 1.526179808210686e-04, 1.839262885250593e-04, 1.94642081623897e-04, 1.982019742346988e-04, 1.994108165701236e-04, 1.998321532703269e-04, 1.999449013378843e-04, 1.999726227950305e-04, 2.000040986206471e-04, 2.000273088768333e-04, 2.000288222888874e-04, 2.00015987520339e-04, 2.000033418880776e-04, 1.999979867757076e-04, 1.999925734729057e-04, 1.99993693968569e-04, 3.541562228522836e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 1.696209395770945e-04, 5.769244709380458e-05, 1.927611006328161e-05, 6.38354614472638e-06, 2.141617642337224e-06, 7.074899687296654e-07, 2.323901593592012e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Interfaces_Examples_ReverseFlowMassExchanger.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Interfaces_Examples_ReverseFlowMassExchanger.txt index e243c0257e..e146cc60ed 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Interfaces_Examples_ReverseFlowMassExchanger.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Interfaces_Examples_ReverseFlowMassExchanger.txt @@ -1,7 +1,7 @@ -last-generated=2021-05-19 +last-generated=2022-05-23 statistics-initialization= { - "nonlinear": "0, 0, 0, 0, 0, 0, 0, 0", + "nonlinear": "0, 0, 0, 0", "numerical Jacobians": "0" } statistics-simulation= diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_MassExchangers_MembraneBasedEnthalpyExchangers_Validation_DynamicValidation.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_MassExchangers_MembraneBasedEnthalpyExchangers_Validation_DynamicValidation.txt index 4d50182977..9d909c1517 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_MassExchangers_MembraneBasedEnthalpyExchangers_Validation_DynamicValidation.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_MassExchangers_MembraneBasedEnthalpyExchangers_Validation_DynamicValidation.txt @@ -1,4 +1,4 @@ -last-generated=2021-05-19 +last-generated=2022-05-23 statistics-initialization= { "nonlinear": "0, 0", @@ -12,9 +12,9 @@ statistics-simulation= "numerical Jacobians": "0" } time=[0e+00, 7.2e+03] -m3hOda.y=[3.941553344726562e+02, 3.925064697265625e+02, 3.953459167480469e+02, 3.969554443359375e+02, 3.978680114746094e+02, 3.983854675292969e+02, 3.986788940429688e+02, 3.988453063964844e+02, 3.98939697265625e+02, 3.989932250976562e+02, 3.990235900878906e+02, 3.990408020019531e+02, 3.990505676269531e+02, 3.990561218261719e+02, 3.990592346191406e+02, 3.990610046386719e+02, 3.990620422363281e+02, 3.990626220703125e+02, 3.990629272460938e+02, 3.990631408691406e+02, 3.99063232421875e+02, 3.990632934570312e+02, 3.990633239746094e+02, 3.990633544921875e+02, 3.990633544921875e+02, 3.990633544921875e+02, 3.990633544921875e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633544921875e+02, 3.990633544921875e+02, 3.990633544921875e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 4.017814025878906e+02, 2.718468322753906e+02, 1.874183197021484e+02, 1.816861572265636e+02, 1.817433319091793e+02, 1.840787200927724e+02, 1.826497344970703e+02, 1.841957702636719e+02, 1.845822296142578e+02, 1.818635101318359e+02, 1.840628204345703e+02, 1.872478485107422e+02, 3.257807312011719e+02, 3.947831726074219e+02, 3.980560302734375e+02, 4.00416259765625e+02, 4.038206176757812e+02, 3.973701171875e+02, 3.950036315917969e+02, 3.949581298828125e+02, 3.949873352050781e+02, 3.950038757324219e+02, 3.950132446289062e+02, 3.950185852050781e+02, 3.950216064453125e+02, 3.950233154296875e+02, 3.950242614746094e+02, 3.950248107910156e+02, 3.950251159667969e+02, 3.950252990722656e+02, 3.95025390625e+02, 3.950254516601562e+02, 3.950255126953125e+02, 3.950255126953125e+02, 3.950255126953125e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02] +m3hOda.y=[3.941553344726562e+02, 3.925064086914062e+02, 3.953459777832031e+02, 3.969555053710938e+02, 3.978680114746094e+02, 3.98385498046875e+02, 3.986789245605469e+02, 3.988453369140625e+02, 3.98939697265625e+02, 3.989932250976562e+02, 3.990235900878906e+02, 3.990408020019531e+02, 3.990505676269531e+02, 3.990561218261719e+02, 3.990592956542969e+02, 3.990610656738281e+02, 3.990620727539062e+02, 3.990626525878906e+02, 3.990629577636719e+02, 3.990631408691406e+02, 3.99063232421875e+02, 3.990632934570312e+02, 3.990633239746094e+02, 3.990633544921875e+02, 3.990633544921875e+02, 3.990633544921875e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 4.01796630859375e+02, 2.719816589355469e+02, 1.874279479980469e+02, 1.816837921142589e+02, 1.817510070800777e+02, 1.841110229492177e+02, 1.826294708251953e+02, 1.842173461914062e+02, 1.845731353759766e+02, 1.818460540771484e+02, 1.840957946777344e+02, 1.872675323486328e+02, 3.257389526367188e+02, 3.947886352539062e+02, 3.980542602539062e+02, 4.004254150390625e+02, 4.038362121582031e+02, 3.97358642578125e+02, 3.950048828125e+02, 3.949580383300781e+02, 3.949872741699219e+02, 3.950038452148438e+02, 3.950132446289062e+02, 3.950185852050781e+02, 3.950216064453125e+02, 3.950233154296875e+02, 3.950242614746094e+02, 3.950248107910156e+02, 3.950251159667969e+02, 3.950252990722656e+02, 3.950254211425781e+02, 3.950254821777344e+02, 3.950255126953125e+02, 3.950255126953125e+02, 3.950255126953125e+02, 3.950255126953125e+02, 3.950255126953125e+02, 3.950255126953125e+02, 3.950255126953125e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02] V_flow_exp.showNumber=[3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 3.990633850097656e+02, 4.017327270507812e+02, 2.655954895019531e+02, 1.820243988037109e+02, 1.790644531250013e+02, 1.79064453125e+02, 1.820243988037103e+02, 1.820243988037109e+02, 1.820243988037109e+02, 1.849369659423828e+02, 1.820243988037109e+02, 1.79064453125e+02, 1.878043823242188e+02, 3.459853820800781e+02, 4.004002685546875e+02, 3.92310546875e+02, 3.963760681152344e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02, 3.950255432128906e+02] -senTemSup.T=[2.931499938964844e+02, 2.903805541992188e+02, 2.9063525390625e+02, 2.906484985351562e+02, 2.906465759277344e+02, 2.9064501953125e+02, 2.906441040039062e+02, 2.906435852050781e+02, 2.90643310546875e+02, 2.906431274414062e+02, 2.906430358886719e+02, 2.906430053710938e+02, 2.906429748535156e+02, 2.906429443359375e+02, 2.906429443359375e+02, 2.906429443359375e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906479797363281e+02, 2.907236633300781e+02, 2.91192138671875e+02, 2.913280639648438e+02, 2.913502502441406e+02, 2.913598022460938e+02, 2.9135693359375e+02, 2.913572692871094e+02, 2.913692932128906e+02, 2.913872680664062e+02, 2.914140014648438e+02, 2.914541320800781e+02, 2.913896484375e+02, 2.907829895019531e+02, 2.906530456542969e+02, 2.906100463867188e+02, 2.906246032714844e+02, 2.906544189453125e+02, 2.906625671386719e+02, 2.906692504882812e+02, 2.906695251464844e+02, 2.906694946289062e+02, 2.906694641113281e+02, 2.906694641113281e+02, 2.9066943359375e+02, 2.9066943359375e+02, 2.9066943359375e+02, 2.9066943359375e+02, 2.9066943359375e+02, 2.9066943359375e+02, 2.9066943359375e+02, 2.9066943359375e+02, 2.9066943359375e+02, 2.9066943359375e+02, 2.9066943359375e+02, 2.9066943359375e+02, 2.9066943359375e+02, 2.9066943359375e+02, 2.9066943359375e+02, 2.9066943359375e+02, 2.9066943359375e+02, 2.9066943359375e+02, 2.9066943359375e+02, 2.9066943359375e+02, 2.9066943359375e+02, 2.9066943359375e+02, 2.9066943359375e+02, 2.9066943359375e+02, 2.9066943359375e+02, 2.9066943359375e+02] +senTemSup.T=[2.931499938964844e+02, 2.903805541992188e+02, 2.9063525390625e+02, 2.906485290527344e+02, 2.906466064453125e+02, 2.9064501953125e+02, 2.906441040039062e+02, 2.906435852050781e+02, 2.90643310546875e+02, 2.906431274414062e+02, 2.906430358886719e+02, 2.906430053710938e+02, 2.906429748535156e+02, 2.906429443359375e+02, 2.906429443359375e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906429138183594e+02, 2.906479797363281e+02, 2.907236328125e+02, 2.91192138671875e+02, 2.913280639648438e+02, 2.913502502441406e+02, 2.913598022460938e+02, 2.9135693359375e+02, 2.913572692871094e+02, 2.913692932128906e+02, 2.913872680664062e+02, 2.914140014648438e+02, 2.914541015625e+02, 2.913897094726562e+02, 2.907829895019531e+02, 2.906530456542969e+02, 2.906100463867188e+02, 2.906246032714844e+02, 2.906544189453125e+02, 2.906625671386719e+02, 2.906692504882812e+02, 2.906695251464844e+02, 2.906694946289062e+02, 2.906694641113281e+02, 2.906694641113281e+02, 2.9066943359375e+02, 2.9066943359375e+02, 2.9066943359375e+02, 2.9066943359375e+02, 2.9066943359375e+02, 2.9066943359375e+02, 2.9066943359375e+02, 2.9066943359375e+02, 2.9066943359375e+02, 2.9066943359375e+02, 2.9066943359375e+02, 2.9066943359375e+02, 2.9066943359375e+02, 2.9066943359375e+02, 2.9066943359375e+02, 2.9066943359375e+02, 2.9066943359375e+02, 2.9066943359375e+02, 2.9066943359375e+02, 2.9066943359375e+02, 2.9066943359375e+02, 2.9066943359375e+02, 2.9066943359375e+02, 2.9066943359375e+02, 2.9066943359375e+02, 2.9066943359375e+02] T_Sup_exp.showNumber=[1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.756399917602539e+01, 1.761199951171875e+01, 1.764800071716309e+01, 1.813999938964844e+01, 1.835600090026855e+01, 1.847599983215332e+01, 1.847599983215332e+01, 1.848800086975098e+01, 1.852400016784668e+01, 1.852400016784668e+01, 1.857200050354004e+01, 1.86200008392334e+01, 1.86200008392334e+01, 1.86560001373291e+01, 1.804400062561035e+01, 1.774399948120117e+01, 1.764800071716309e+01, 1.761199951171875e+01, 1.764800071716309e+01, 1.764800071716309e+01, 1.764800071716309e+01, 1.764800071716309e+01, 1.764800071716309e+01, 1.764800071716309e+01, 1.764800071716309e+01, 1.764800071716309e+01, 1.764800071716309e+01, 1.764800071716309e+01, 1.764800071716309e+01, 1.764800071716309e+01, 1.764800071716309e+01, 1.764800071716309e+01, 1.764800071716309e+01, 1.764800071716309e+01, 1.764800071716309e+01, 1.764800071716309e+01, 1.764800071716309e+01, 1.764800071716309e+01, 1.764800071716309e+01, 1.764800071716309e+01, 1.764800071716309e+01, 1.764800071716309e+01, 1.764800071716309e+01, 1.764800071716309e+01, 1.764800071716309e+01, 1.764800071716309e+01, 1.764800071716309e+01, 1.764800071716309e+01, 1.764800071716309e+01, 1.764800071716309e+01, 1.764800071716309e+01] -toDryAirSup.XiDry=[1.01010100916028e-02, 5.140919703990221e-03, 5.13035710901022e-03, 5.124813411384821e-03, 5.121684167534113e-03, 5.119913257658482e-03, 5.118910688906908e-03, 5.118342116475105e-03, 5.118019878864288e-03, 5.117837339639664e-03, 5.117733497172594e-03, 5.117674823850393e-03, 5.117641296237707e-03, 5.117622669786215e-03, 5.117611959576607e-03, 5.117605905979872e-03, 5.117602646350861e-03, 5.117600318044424e-03, 5.117599386721849e-03, 5.117598455399275e-03, 5.117598455399275e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.102215334773064e-03, 5.76063571497798e-03, 6.322776433080435e-03, 6.225863005965947e-03, 6.22027646750212e-03, 6.240732967853548e-03, 6.253619212657213e-03, 6.186080165207386e-03, 6.195083726197481e-03, 6.193670909851789e-03, 6.223541684448719e-03, 6.198749411851168e-03, 5.522115156054497e-03, 5.038133356720209e-03, 5.013829562813044e-03, 5.06509467959404e-03, 5.074845161288977e-03, 5.136700812727213e-03, 5.142677575349808e-03, 5.141924601048231e-03, 5.14181749895215e-03, 5.141757894307375e-03, 5.141725298017263e-03, 5.141706205904484e-03, 5.141695961356163e-03, 5.141689907759428e-03, 5.141686648130417e-03, 5.141684785485268e-03, 5.141683854162693e-03, 5.141682922840118e-03, 5.141682922840118e-03, 5.141682457178831e-03, 5.141682457178831e-03, 5.141682457178831e-03, 5.141682457178831e-03, 5.141682457178831e-03, 5.141682457178831e-03, 5.141682457178831e-03, 5.141682457178831e-03, 5.141682457178831e-03, 5.141682457178831e-03, 5.141682457178831e-03, 5.141682457178831e-03, 5.141682457178831e-03, 5.141682457178831e-03, 5.141682457178831e-03, 5.141682457178831e-03, 5.141682457178831e-03, 5.141682457178831e-03, 5.141682457178831e-03] +toDryAirSup.XiDry=[1.01010100916028e-02, 5.140919238328934e-03, 5.13035710901022e-03, 5.124812945723534e-03, 5.121683701872826e-03, 5.119913257658482e-03, 5.118910688906908e-03, 5.118342116475105e-03, 5.118019878864288e-03, 5.117837339639664e-03, 5.117733497172594e-03, 5.117674823850393e-03, 5.117641761898994e-03, 5.117622669786215e-03, 5.117611959576607e-03, 5.117605905979872e-03, 5.117602180689573e-03, 5.117600318044424e-03, 5.117599386721849e-03, 5.117598455399275e-03, 5.117598455399275e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.117597989737988e-03, 5.1022176630795e-03, 5.76058542355895e-03, 6.322789937257767e-03, 6.2258574180305e-03, 6.220273207873109e-03, 6.240730639547111e-03, 6.253613159060478e-03, 6.186080630868673e-03, 6.195081397891045e-03, 6.193650886416435e-03, 6.223538890480995e-03, 6.198739167302847e-03, 5.522183142602444e-03, 5.038134753704071e-03, 5.013839341700077e-03, 5.065110977739096e-03, 5.074873566627502e-03, 5.136713851243258e-03, 5.142680834978819e-03, 5.14192646369338e-03, 5.141817033290863e-03, 5.141757894307375e-03, 5.141725298017263e-03, 5.141706671565771e-03, 5.141695961356163e-03, 5.141689907759428e-03, 5.141686648130417e-03, 5.141684785485268e-03, 5.141683854162693e-03, 5.141682922840118e-03, 5.141682457178831e-03, 5.141682457178831e-03, 5.141682457178831e-03, 5.141682457178831e-03, 5.141682457178831e-03, 5.141682457178831e-03, 5.141682457178831e-03, 5.141682457178831e-03, 5.141682457178831e-03, 5.141682457178831e-03, 5.141682457178831e-03, 5.141682457178831e-03, 5.141682457178831e-03, 5.141682457178831e-03, 5.141682457178831e-03, 5.141682457178831e-03, 5.141682457178831e-03, 5.141682457178831e-03, 5.141682457178831e-03, 5.141682457178831e-03] X_Sup_exp.showNumber=[4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.872284829616547e-03, 4.878391977399588e-03, 5.508048925548792e-03, 6.145332008600235e-03, 6.135051138699055e-03, 6.148584187030798e-03, 6.106084212660796e-03, 6.120020989328623e-03, 6.06736121699214e-03, 6.063365843147039e-03, 6.091131828725338e-03, 6.094884127378464e-03, 6.037270184606314e-03, 5.263752769678831e-03, 4.717763047665358e-03, 4.732483997941017e-03, 4.802913870662451e-03, 4.809486214071512e-03, 4.879510030150414e-03, 4.884533118456602e-03, 4.884533118456602e-03, 4.884533118456602e-03, 4.884533118456602e-03, 4.884533118456602e-03, 4.884533118456602e-03, 4.884533118456602e-03, 4.884533118456602e-03, 4.884533118456602e-03, 4.884533118456602e-03, 4.884533118456602e-03, 4.884533118456602e-03, 4.884533118456602e-03, 4.884533118456602e-03, 4.884533118456602e-03, 4.884533118456602e-03, 4.884533118456602e-03, 4.884533118456602e-03, 4.884533118456602e-03, 4.884533118456602e-03, 4.884533118456602e-03, 4.884533118456602e-03, 4.884533118456602e-03, 4.884533118456602e-03, 4.884533118456602e-03, 4.884533118456602e-03, 4.884533118456602e-03, 4.884533118456602e-03, 4.884533118456602e-03, 4.884533118456602e-03, 4.884533118456602e-03, 4.884533118456602e-03] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_MassExchangers_MembraneBasedEnthalpyExchangers_Validation_StaticValidation.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_MassExchangers_MembraneBasedEnthalpyExchangers_Validation_StaticValidation.txt index 135b26bf48..161182286c 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_MassExchangers_MembraneBasedEnthalpyExchangers_Validation_StaticValidation.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_MassExchangers_MembraneBasedEnthalpyExchangers_Validation_StaticValidation.txt @@ -1,4 +1,4 @@ -last-generated=2021-05-19 +last-generated=2022-05-23 statistics-initialization= { "nonlinear": "0, 0", @@ -12,9 +12,9 @@ statistics-simulation= "numerical Jacobians": "0" } time=[0e+00, 2.96e+04] -m3hOda.y=[3.941553344726562e+02, 3.876320190429688e+02, 3.885975036621094e+02, 3.885799560546875e+02, 3.885862731933594e+02, 3.885868225097656e+02, 3.882914123535156e+02, 3.882878112792969e+02, 3.882874450683594e+02, 3.878499755859375e+02, 3.878472595214844e+02, 3.87179931640625e+02, 3.871583251953125e+02, 3.871562194824219e+02, 3.849268493652344e+02, 3.848915100097656e+02, 3.848880920410156e+02, 4.019666442871094e+02, 4.021052551269531e+02, 3.933613586425781e+02, 3.929779968261719e+02, 3.9294140625e+02, 3.846756591796875e+02, 3.845047607421875e+02, 3.844882507324219e+02, 3.893580322265625e+02, 3.894073181152344e+02, 3.894120788574219e+02, 3.896519775390625e+02, 3.896532287597656e+02, 3.896632690429688e+02, 3.896635437011719e+02, 3.8966357421875e+02, 3.896981811523438e+02, 3.896986389160156e+02, 3.896986694335938e+02, 3.873906860351562e+02, 3.873756103515625e+02, 3.490848083496094e+02, 3.478172607421875e+02, 3.476961364746094e+02, 3.486866455078125e+02, 3.487008056640625e+02, 3.487021484375e+02, 3.490534057617188e+02, 3.490560607910156e+02, 3.848138122558594e+02, 3.865516967773438e+02, 3.867042236328125e+02, 3.756725769042969e+02, 3.75435546875e+02, 3.754127502441406e+02, 3.553856811523438e+02, 3.55181884765625e+02, 3.55162353515625e+02, 3.554623718261719e+02, 3.554636840820312e+02, 3.55353515625e+02, 3.553506469726562e+02, 3.553503723144531e+02, 3.560115356445312e+02, 3.5602001953125e+02, 3.560208129882812e+02, 3.5689306640625e+02, 3.568985595703125e+02, 3.56843994140625e+02, 3.568421630859375e+02, 3.568420104980469e+02, 3.580549621582031e+02, 3.580751647949219e+02, 3.580770874023438e+02, 3.706728210449219e+02, 3.707785949707031e+02, 2.314431457519531e+02, 1.797640228271484e+02, 1.791052551269531e+02, 1.786481018066406e+02, 1.786384429931641e+02, 1.786375732421875e+02, 1.769746856689453e+02, 1.769660186767578e+02, 1.769652404785156e+02, 1.825930786132812e+02, 1.826075286865234e+02, 1.858893127441406e+02, 1.859367980957031e+02, 1.859411010742188e+02, 1.842957000732422e+02, 1.842841339111328e+02, 1.842830963134766e+02, 1.867819976806641e+02, 1.867905883789062e+02, 1.740963439941406e+02, 1.738605499267578e+02, 1.738391876220703e+02, 1.682542724609375e+02, 1.682068939208984e+02, 1.682026214599609e+02, 1.64906005859375e+02, 1.648927764892578e+02, 1.648915863037109e+02] +m3hOda.y=[3.941553344726562e+02, 3.876320190429688e+02, 3.885975036621094e+02, 3.885799560546875e+02, 3.885862731933594e+02, 3.885868225097656e+02, 3.882914428710938e+02, 3.882878112792969e+02, 3.882874450683594e+02, 3.878499755859375e+02, 3.878472595214844e+02, 3.87179931640625e+02, 3.871583251953125e+02, 3.871562194824219e+02, 3.849268493652344e+02, 3.848915100097656e+02, 3.848880920410156e+02, 4.019666748046875e+02, 4.021052856445312e+02, 3.933602294921875e+02, 3.929779968261719e+02, 3.929413452148438e+02, 3.846756286621094e+02, 3.845047607421875e+02, 3.8448828125e+02, 3.893580322265625e+02, 3.894073181152344e+02, 3.894120788574219e+02, 3.896519775390625e+02, 3.896532287597656e+02, 3.896632385253906e+02, 3.896635437011719e+02, 3.8966357421875e+02, 3.896981811523438e+02, 3.896986389160156e+02, 3.896986694335938e+02, 3.873906860351562e+02, 3.873756103515625e+02, 3.490848999023438e+02, 3.478172302246094e+02, 3.476961669921875e+02, 3.486866455078125e+02, 3.487008056640625e+02, 3.487021484375e+02, 3.490534057617188e+02, 3.490560607910156e+02, 3.847976989746094e+02, 3.865516662597656e+02, 3.867042236328125e+02, 3.756725463867188e+02, 3.754355773925781e+02, 3.754127502441406e+02, 3.553856506347656e+02, 3.55181884765625e+02, 3.55162353515625e+02, 3.554623718261719e+02, 3.554636535644531e+02, 3.55353515625e+02, 3.553506469726562e+02, 3.553503723144531e+02, 3.560115356445312e+02, 3.5602001953125e+02, 3.560208129882812e+02, 3.5689306640625e+02, 3.568985595703125e+02, 3.56843994140625e+02, 3.568421630859375e+02, 3.568420104980469e+02, 3.580549621582031e+02, 3.580751647949219e+02, 3.580770874023438e+02, 3.706728515625e+02, 3.707785949707031e+02, 2.317685852050781e+02, 1.7976416015625e+02, 1.791052703857422e+02, 1.786481018066406e+02, 1.786384429931641e+02, 1.786375732421875e+02, 1.769746856689453e+02, 1.769660186767578e+02, 1.769652404785156e+02, 1.825930786132812e+02, 1.826075286865234e+02, 1.858893127441406e+02, 1.859367980957031e+02, 1.859411010742188e+02, 1.842957000732422e+02, 1.842841339111328e+02, 1.842830963134766e+02, 1.867819976806641e+02, 1.867905883789062e+02, 1.740959014892578e+02, 1.738605499267578e+02, 1.738391876220703e+02, 1.682542572021484e+02, 1.682068939208984e+02, 1.682026214599609e+02, 1.64906005859375e+02, 1.648927764892578e+02, 1.648915863037109e+02] V_flow_exp.showNumber=[3.887010192871094e+02, 3.887010192871094e+02, 3.887010192871094e+02, 3.885869140625e+02, 3.885869140625e+02, 3.885869140625e+02, 3.882874145507812e+02, 3.882874145507812e+02, 3.882874145507812e+02, 3.878469848632812e+02, 3.878469848632812e+02, 3.871559753417969e+02, 3.871559753417969e+02, 3.871559753417969e+02, 3.848877563476562e+02, 3.848877563476562e+02, 3.848877563476562e+02, 4.021201782226562e+02, 4.021201782226562e+02, 3.929374389648438e+02, 3.929374389648438e+02, 3.929374389648438e+02, 3.844864807128906e+02, 3.844864807128906e+02, 3.844864807128906e+02, 3.8941259765625e+02, 3.8941259765625e+02, 3.8941259765625e+02, 3.896533508300781e+02, 3.896533508300781e+02, 3.8966357421875e+02, 3.8966357421875e+02, 3.8966357421875e+02, 3.896986999511719e+02, 3.896986999511719e+02, 3.896986999511719e+02, 3.873740234375e+02, 3.873740234375e+02, 3.47683349609375e+02, 3.47683349609375e+02, 3.47683349609375e+02, 3.487022705078125e+02, 3.487022705078125e+02, 3.487022705078125e+02, 3.490563354492188e+02, 3.490563354492188e+02, 3.867205810546875e+02, 3.867205810546875e+02, 3.867205810546875e+02, 3.754102783203125e+02, 3.754102783203125e+02, 3.754102783203125e+02, 3.551602783203125e+02, 3.551602783203125e+02, 3.551602783203125e+02, 3.554638366699219e+02, 3.554638366699219e+02, 3.55350341796875e+02, 3.55350341796875e+02, 3.55350341796875e+02, 3.560209045410156e+02, 3.560209045410156e+02, 3.560209045410156e+02, 3.56899169921875e+02, 3.56899169921875e+02, 3.568419799804688e+02, 3.568419799804688e+02, 3.568419799804688e+02, 3.580773010253906e+02, 3.580773010253906e+02, 3.580773010253906e+02, 3.707898864746094e+02, 3.707898864746094e+02, 1.790398254394531e+02, 1.790398254394531e+02, 1.790398254394531e+02, 1.786374816894531e+02, 1.786374816894531e+02, 1.786374816894531e+02, 1.769651641845703e+02, 1.769651641845703e+02, 1.769651641845703e+02, 1.826089630126953e+02, 1.826089630126953e+02, 1.859415283203125e+02, 1.859415283203125e+02, 1.859415283203125e+02, 1.842829895019531e+02, 1.842829895019531e+02, 1.842829895019531e+02, 1.867914581298828e+02, 1.867914581298828e+02, 1.738370666503906e+02, 1.738370666503906e+02, 1.738370666503906e+02, 1.682022094726562e+02, 1.682022094726562e+02, 1.682022094726562e+02, 1.648914642333984e+02, 1.648914642333984e+02, 1.648914642333984e+02] -senTemSup.T=[2.931499938964844e+02, 2.906252136230469e+02, 2.906221923828125e+02, 2.908875122070312e+02, 2.908955383300781e+02, 2.908955078125e+02, 2.911309814453125e+02, 2.911309509277344e+02, 2.911309509277344e+02, 2.913261413574219e+02, 2.913262634277344e+02, 2.914015502929688e+02, 2.913718872070312e+02, 2.913718566894531e+02, 2.898948669433594e+02, 2.898810729980469e+02, 2.898810729980469e+02, 2.891718139648438e+02, 2.891710815429688e+02, 2.889906921386719e+02, 2.883087158203125e+02, 2.883089904785156e+02, 2.888890380859375e+02, 2.889091796875e+02, 2.889092407226562e+02, 2.915928344726562e+02, 2.915975952148438e+02, 2.915975952148438e+02, 2.917847595214844e+02, 2.917847595214844e+02, 2.918853149414062e+02, 2.918835144042969e+02, 2.918835144042969e+02, 2.92114013671875e+02, 2.921140441894531e+02, 2.921140441894531e+02, 2.926720275878906e+02, 2.926720581054688e+02, 2.923992919921875e+02, 2.922740783691406e+02, 2.92274169921875e+02, 2.924443054199219e+02, 2.924474487304688e+02, 2.924474182128906e+02, 2.925908508300781e+02, 2.925910339355469e+02, 2.922239379882812e+02, 2.919702758789062e+02, 2.91969970703125e+02, 2.927374267578125e+02, 2.928394470214844e+02, 2.928394165039062e+02, 2.936225280761719e+02, 2.936222839355469e+02, 2.936222839355469e+02, 2.937306213378906e+02, 2.937305908203125e+02, 2.938635559082031e+02, 2.938759460449219e+02, 2.938759460449219e+02, 2.940441284179688e+02, 2.940443115234375e+02, 2.940443420410156e+02, 2.942371826171875e+02, 2.942372131347656e+02, 2.943760070800781e+02, 2.944203491210938e+02, 2.944202880859375e+02, 2.94618896484375e+02, 2.946200561523438e+02, 2.946200561523438e+02, 2.936163024902344e+02, 2.936175231933594e+02, 2.935905456542969e+02, 2.915516052246094e+02, 2.914699401855469e+02, 2.915965881347656e+02, 2.915835571289062e+02, 2.915829772949219e+02, 2.917744140625e+02, 2.918063354492188e+02, 2.918067016601562e+02, 2.9087109375e+02, 2.90827392578125e+02, 2.907338562011719e+02, 2.903302917480469e+02, 2.903220825195312e+02, 2.906134033203125e+02, 2.906626586914062e+02, 2.906631164550781e+02, 2.900879516601562e+02, 2.900549621582031e+02, 2.902120666503906e+02, 2.919155578613281e+02, 2.919850769042969e+02, 2.922768859863281e+02, 2.9283056640625e+02, 2.928450927734375e+02, 2.935257568359375e+02, 2.936604919433594e+02, 2.936634216308594e+02] +senTemSup.T=[2.931499938964844e+02, 2.906252136230469e+02, 2.906221923828125e+02, 2.908875122070312e+02, 2.908955383300781e+02, 2.908955078125e+02, 2.911307373046875e+02, 2.911309509277344e+02, 2.911309509277344e+02, 2.913261413574219e+02, 2.913262634277344e+02, 2.914015502929688e+02, 2.913718872070312e+02, 2.913718566894531e+02, 2.898948669433594e+02, 2.898810729980469e+02, 2.898810729980469e+02, 2.891719360351562e+02, 2.891711120605469e+02, 2.889906921386719e+02, 2.883087158203125e+02, 2.883089599609375e+02, 2.888890075683594e+02, 2.889091796875e+02, 2.889092407226562e+02, 2.915928039550781e+02, 2.9159765625e+02, 2.915975952148438e+02, 2.917847595214844e+02, 2.917847595214844e+02, 2.918853454589844e+02, 2.918835144042969e+02, 2.918835144042969e+02, 2.92114013671875e+02, 2.921140441894531e+02, 2.921140441894531e+02, 2.926720581054688e+02, 2.926720581054688e+02, 2.923992919921875e+02, 2.922740478515625e+02, 2.92274169921875e+02, 2.924443054199219e+02, 2.924474487304688e+02, 2.924474182128906e+02, 2.925908813476562e+02, 2.925910339355469e+02, 2.922239379882812e+02, 2.919702453613281e+02, 2.919700012207031e+02, 2.927374267578125e+02, 2.928394165039062e+02, 2.928394165039062e+02, 2.936225280761719e+02, 2.936222839355469e+02, 2.936222839355469e+02, 2.937305908203125e+02, 2.937305908203125e+02, 2.938635559082031e+02, 2.938759460449219e+02, 2.938759460449219e+02, 2.94044189453125e+02, 2.940443115234375e+02, 2.940443115234375e+02, 2.942371826171875e+02, 2.942372131347656e+02, 2.943760070800781e+02, 2.944203186035156e+02, 2.944202880859375e+02, 2.946189270019531e+02, 2.946200561523438e+02, 2.946200561523438e+02, 2.936162719726562e+02, 2.936175231933594e+02, 2.935905151367188e+02, 2.915516052246094e+02, 2.914699401855469e+02, 2.915965881347656e+02, 2.915835571289062e+02, 2.915829772949219e+02, 2.917744140625e+02, 2.918062744140625e+02, 2.918067016601562e+02, 2.908710632324219e+02, 2.908273315429688e+02, 2.907338562011719e+02, 2.903302307128906e+02, 2.903221435546875e+02, 2.906134338378906e+02, 2.906626586914062e+02, 2.906631164550781e+02, 2.900879516601562e+02, 2.900549621582031e+02, 2.902120666503906e+02, 2.919156188964844e+02, 2.919850158691406e+02, 2.922769165039062e+02, 2.9283056640625e+02, 2.928451232910156e+02, 2.935258178710938e+02, 2.936605224609375e+02, 2.936634216308594e+02] T_Sup_exp.showNumber=[2.906692504882812e+02, 2.906692504882812e+02, 2.906692504882812e+02, 2.907151794433594e+02, 2.907151794433594e+02, 2.907151794433594e+02, 2.907124633789062e+02, 2.907124633789062e+02, 2.907124633789062e+02, 2.9076513671875e+02, 2.9076513671875e+02, 2.906073303222656e+02, 2.906073303222656e+02, 2.906073303222656e+02, 2.895309753417969e+02, 2.895309753417969e+02, 2.895309753417969e+02, 2.881856994628906e+02, 2.881856994628906e+02, 2.869608764648438e+02, 2.869608764648438e+02, 2.869608764648438e+02, 2.872671813964844e+02, 2.872671813964844e+02, 2.872671813964844e+02, 2.921065063476562e+02, 2.921065063476562e+02, 2.921065063476562e+02, 2.921016235351562e+02, 2.921016235351562e+02, 2.920142211914062e+02, 2.920142211914062e+02, 2.920142211914062e+02, 2.9206005859375e+02, 2.9206005859375e+02, 2.9206005859375e+02, 2.9238330078125e+02, 2.9238330078125e+02, 2.920047912597656e+02, 2.920047912597656e+02, 2.920047912597656e+02, 2.92034423828125e+02, 2.92034423828125e+02, 2.92034423828125e+02, 2.920925903320312e+02, 2.920925903320312e+02, 2.927229919433594e+02, 2.927229919433594e+02, 2.927229919433594e+02, 2.941772766113281e+02, 2.941772766113281e+02, 2.941772766113281e+02, 2.940899353027344e+02, 2.940899353027344e+02, 2.940899353027344e+02, 2.940643310546875e+02, 2.940643310546875e+02, 2.940803527832031e+02, 2.940803527832031e+02, 2.940803527832031e+02, 2.940978393554688e+02, 2.940978393554688e+02, 2.940978393554688e+02, 2.941227111816406e+02, 2.941227111816406e+02, 2.941412963867188e+02, 2.941412963867188e+02, 2.941412963867188e+02, 2.941655883789062e+02, 2.941655883789062e+02, 2.941655883789062e+02, 2.954275512695312e+02, 2.954275512695312e+02, 2.917047729492188e+02, 2.917047729492188e+02, 2.917047729492188e+02, 2.916176147460938e+02, 2.916176147460938e+02, 2.916176147460938e+02, 2.91858642578125e+02, 2.91858642578125e+02, 2.91858642578125e+02, 2.908044128417969e+02, 2.908044128417969e+02, 2.901828918457031e+02, 2.901828918457031e+02, 2.901828918457031e+02, 2.903371887207031e+02, 2.903371887207031e+02, 2.903371887207031e+02, 2.897791442871094e+02, 2.897791442871094e+02, 2.924515380859375e+02, 2.924515380859375e+02, 2.924515380859375e+02, 2.936644287109375e+02, 2.936644287109375e+02, 2.936644287109375e+02, 2.945941467285156e+02, 2.945941467285156e+02, 2.945941467285156e+02] -toDryAirSup.XiDry=[1.01010100916028e-02, 5.140176042914391e-03, 5.136840511113405e-03, 5.55723300203681e-03, 5.556736141443253e-03, 5.556734744459391e-03, 6.075573619455099e-03, 6.075586657971144e-03, 6.075587123632431e-03, 6.560546811670065e-03, 6.560546346008778e-03, 7.037938106805086e-03, 7.036923430860043e-03, 7.036925293505192e-03, 5.122426897287369e-03, 5.122595466673374e-03, 5.122608970850706e-03, 5.020846612751484e-03, 5.02039073035121e-03, 4.629759583622217e-03, 4.647811874747276e-03, 4.647953901439905e-03, 5.189151968806982e-03, 5.189584568142891e-03, 5.189637653529644e-03, 5.1625263877213e-03, 5.162364803254604e-03, 5.162349436432123e-03, 5.575198214501143e-03, 5.575194489210844e-03, 6.02513225749135e-03, 6.024558562785387e-03, 6.024558562785387e-03, 6.59584067761898e-03, 6.59584254026413e-03, 6.59584254026413e-03, 7.193289697170258e-03, 7.193298544734716e-03, 7.630159612745047e-03, 7.6304548420012e-03, 7.630473468452692e-03, 8.139938116073608e-03, 8.139930665493011e-03, 8.139931596815586e-03, 8.626232855021954e-03, 8.626233786344528e-03, 5.240962840616703e-03, 5.175819154828787e-03, 5.175318103283644e-03, 5.063551943749189e-03, 5.064273253083229e-03, 5.064347293227911e-03, 7.676794659346342e-03, 7.676796056330204e-03, 7.676796056330204e-03, 8.184437640011311e-03, 8.184436708688736e-03, 8.746572770178318e-03, 8.745750412344933e-03, 8.745749481022358e-03, 9.299098514020443e-03, 9.299105033278465e-03, 9.299106895923615e-03, 9.770750999450684e-03, 9.770763106644154e-03, 1.026498433202505e-02, 1.025361940264702e-02, 1.025361940264702e-02, 1.06767900288105e-02, 1.067681051790714e-02, 1.067681889981031e-02, 5.10828010737896e-03, 5.107928533107042e-03, 5.306059494614601e-03, 6.085619796067476e-03, 6.0901646502316e-03, 6.586930248886347e-03, 6.575908046215773e-03, 6.575908977538347e-03, 9.316843934357166e-03, 9.31700412184e-03, 9.317011572420597e-03, 6.047829519957304e-03, 6.047829054296017e-03, 5.820597987622023e-03, 5.832529161125422e-03, 5.83249656483531e-03, 6.21021306142211e-03, 6.208428647369146e-03, 6.208439357578754e-03, 5.789660848677158e-03, 5.789725109934807e-03, 6.227649282664061e-03, 6.226384080946445e-03, 6.226520985364914e-03, 6.290331482887268e-03, 6.290029268711805e-03, 6.290059071034193e-03, 6.316585931926966e-03, 6.316684186458588e-03, 6.316692568361759e-03] +toDryAirSup.XiDry=[1.01010100916028e-02, 5.140176042914391e-03, 5.136840511113405e-03, 5.557229742407799e-03, 5.556736141443253e-03, 5.556734744459391e-03, 6.075590383261442e-03, 6.075586192309856e-03, 6.075587123632431e-03, 6.560546811670065e-03, 6.560546346008778e-03, 7.037938106805086e-03, 7.036923430860043e-03, 7.036925293505192e-03, 5.122426431626081e-03, 5.122595466673374e-03, 5.122608970850706e-03, 5.020846612751484e-03, 5.020390264689922e-03, 4.629760049283504e-03, 4.647811874747276e-03, 4.647954367101192e-03, 5.189153831452131e-03, 5.189584568142891e-03, 5.189637653529644e-03, 5.1625263877213e-03, 5.162364803254604e-03, 5.162349436432123e-03, 5.575198214501143e-03, 5.575194489210844e-03, 6.02512015029788e-03, 6.024558562785387e-03, 6.024558562785387e-03, 6.59584067761898e-03, 6.59584254026413e-03, 6.59584254026413e-03, 7.193289697170258e-03, 7.193298544734716e-03, 7.630159147083759e-03, 7.6304548420012e-03, 7.630473468452692e-03, 8.139938116073608e-03, 8.139930665493011e-03, 8.139931596815586e-03, 8.626232855021954e-03, 8.626233786344528e-03, 5.240988917648792e-03, 5.175821483135223e-03, 5.175317637622356e-03, 5.063551943749189e-03, 5.064273253083229e-03, 5.064347293227911e-03, 7.676795590668917e-03, 7.676795590668917e-03, 7.676796056330204e-03, 8.184435777366161e-03, 8.184436708688736e-03, 8.746572770178318e-03, 8.745750412344933e-03, 8.745749481022358e-03, 9.299087338149548e-03, 9.29910596460104e-03, 9.299106895923615e-03, 9.770750999450684e-03, 9.770763106644154e-03, 1.026498526334763e-02, 1.025361940264702e-02, 1.025361940264702e-02, 1.067678444087505e-02, 1.067680958658457e-02, 1.067681703716516e-02, 5.108279641717672e-03, 5.107928533107042e-03, 5.305675324052572e-03, 6.085618864744902e-03, 6.0901646502316e-03, 6.586890667676926e-03, 6.575912237167358e-03, 6.575911305844784e-03, 9.316843934357166e-03, 9.317026473581791e-03, 9.317006915807724e-03, 6.047892849892378e-03, 6.047823000699282e-03, 5.820594262331724e-03, 5.832532420754433e-03, 5.83249656483531e-03, 6.210201419889927e-03, 6.208430510014296e-03, 6.208440754562616e-03, 5.789660848677158e-03, 5.789725109934807e-03, 6.227647420018911e-03, 6.226386409252882e-03, 6.226521451026201e-03, 6.290333811193705e-03, 6.290029734373093e-03, 6.290059071034193e-03, 6.316586397588253e-03, 6.316684186458588e-03, 6.316692568361759e-03] X_Sup_exp.showNumber=[4.911481868475676e-03, 4.911481868475676e-03, 4.911481868475676e-03, 5.518328864127398e-03, 5.518328864127398e-03, 5.518328864127398e-03, 6.131977774202824e-03, 6.131977774202824e-03, 6.131977774202824e-03, 6.733139045536518e-03, 6.733139045536518e-03, 7.356536109000444e-03, 7.356536109000444e-03, 7.356536109000444e-03, 4.967799875885248e-03, 4.967799875885248e-03, 4.967799875885248e-03, 5.039686802774668e-03, 5.039686802774668e-03, 4.868071991950274e-03, 4.868071991950274e-03, 4.868071991950274e-03, 5.718022119253874e-03, 5.718022119253874e-03, 5.718022119253874e-03, 4.884995985776186e-03, 4.884995985776186e-03, 4.884995985776186e-03, 5.489309784024954e-03, 5.489309784024954e-03, 6.035864818841219e-03, 6.035864818841219e-03, 6.035864818841219e-03, 6.669470109045506e-03, 6.669470109045506e-03, 6.669470109045506e-03, 7.296016905456781e-03, 7.296016905456781e-03, 7.788327056914568e-03, 7.788327056914568e-03, 7.788327056914568e-03, 8.279485628008842e-03, 8.279485628008842e-03, 8.279485628008842e-03, 8.742858655750751e-03, 8.742858655750751e-03, 4.872914869338274e-03, 4.872914869338274e-03, 4.872914869338274e-03, 4.81527904048562e-03, 4.81527904048562e-03, 4.81527904048562e-03, 7.69476406276226e-03, 7.69476406276226e-03, 7.69476406276226e-03, 8.170225657522678e-03, 8.170225657522678e-03, 8.717336691915989e-03, 8.717336691915989e-03, 8.717336691915989e-03, 9.299861267209053e-03, 9.299861267209053e-03, 9.299861267209053e-03, 9.827320463955402e-03, 9.827320463955402e-03, 1.036798022687435e-02, 1.036798022687435e-02, 1.036798022687435e-02, 1.087072771042585e-02, 1.087072771042585e-02, 1.087072771042585e-02, 4.895957186818123e-03, 4.895957186818123e-03, 5.965779069811106e-03, 5.965779069811106e-03, 5.965779069811106e-03, 6.714848801493645e-03, 6.714848801493645e-03, 6.714848801493645e-03, 9.790797717869282e-03, 9.790797717869282e-03, 9.790797717869282e-03, 5.94951119273901e-03, 5.94951119273901e-03, 5.709921009838581e-03, 5.709921009838581e-03, 5.709921009838581e-03, 6.336342077702284e-03, 6.336342077702284e-03, 6.336342077702284e-03, 5.6688510812819e-03, 5.6688510812819e-03, 6.065653171390295e-03, 6.065653171390295e-03, 6.065653171390295e-03, 6.09950115904212e-03, 6.09950115904212e-03, 6.09950115904212e-03, 6.133574992418289e-03, 6.133574992418289e-03, 6.133574992418289e-03] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Movers_DpControlledMovers_Examples_DpControlled_dpConst.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Movers_DpControlledMovers_Examples_DpControlled_dpConst.txt new file mode 100644 index 0000000000..2f4d93f9ba --- /dev/null +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Movers_DpControlledMovers_Examples_DpControlled_dpConst.txt @@ -0,0 +1,20 @@ +last-generated=2022-05-23 +statistics-initialization= +{ + "nonlinear": "1, 0, 1", + "numerical Jacobians": "0" +} +statistics-simulation= +{ + "linear": " ", + "nonlinear": "1, 1", + "number of continuous time states": "5", + "numerical Jacobians": "0" +} +time=[0e+00, 3.6e+03] +dpControlled_dp.mov.dpMachine=[0e+00, 9.99911875e+04, 1.000000234375e+05, 1e+05, 1e+05, 1e+05, 1e+05, 1e+05, 1e+05, 1e+05, 1e+05, 1e+05, 1e+05, 1e+05, 1e+05, 1e+05, 1e+05, 1e+05, 1e+05, 1e+05, 1e+05, 1e+05, 1e+05, 1e+05, 1e+05, 1e+05, 1e+05, 1e+05, 1e+05, 1e+05, 1e+05, 1e+05, 1e+05, 1e+05, 1e+05, 1e+05, 1e+05, 1e+05, 1e+05, 1e+05, 1e+05, 1e+05, 1e+05, 1e+05, 1e+05, 9.9826375e+04, 9.80484375e+04, 9.63080234375e+04, 9.463771875e+04, 9.30351953125e+04, 9.14981171875e+04, 9.0024140625e+04, 8.86109375e+04, 8.7256203125e+04, 8.595767187499999e+04, 8.471310156249999e+04, 8.352031249999999e+04, 8.2377171875e+04, 8.128159375e+04, 8.02315703125e+04, 7.92251484375e+04, 7.82604296875e+04, 7.73356015625e+04, 7.6448890625e+04, 7.55986171875e+04, 7.45276328125e+04, 7.3137390625e+04, 7.1819140625e+04, 7.05687734375e+04, 6.9382046875e+04, 6.82550234375e+04, 6.718403125e+04, 6.61656640625e+04, 6.519673828125e+04, 6.427430078125e+04, 6.339560546875e+04, 6.278283203125e+04, 6.263913671875e+04, 6.261700390625e+04, 6.261404296875e+04, 6.2613703125e+04, 6.261365234375e+04, 6.26136484375e+04, 6.26136484375e+04, 6.261364453125e+04, 6.261364453125e+04, 6.261364453125e+04, 6.261364453125e+04, 6.261364453125e+04, 6.261364453125e+04, 6.261364453125e+04, 6.261364453125e+04, 6.261364453125e+04, 6.261364453125e+04, 6.261364453125e+04, 6.261364453125e+04, 6.261364453125e+04, 6.261364453125e+04, 6.261364453125e+04, 6.261364453125e+04, 6.261364453125e+04] +dpControlled_dp.mov.m_flow=[0e+00, 2.812251750583528e-06, 2.812500270010787e-06, 2.812499587889761e-06, 2.812499587889761e-06, 2.812499587889761e-06, 2.812499587889761e-06, 2.812499587889761e-06, 2.812499587889761e-06, 2.812499587889761e-06, 2.812499587889761e-06, 2.812499587889761e-06, 2.812499587889761e-06, 2.812499587889761e-06, 2.812499587889761e-06, 2.812499587889761e-06, 2.812499587889761e-06, 2.812499587889761e-06, 2.812499587889761e-06, 2.812499587889761e-06, 2.812499587889761e-06, 2.812499587889761e-06, 2.812499587889761e-06, 2.812499587889761e-06, 2.812499587889761e-06, 2.812499587889761e-06, 1.184050273150206e-02, 6.628116220235841e-02, 1.212369054555895e-01, 1.77162379026413e-01, 2.330518215894699e-01, 2.887530922889709e-01, 3.442236185073853e-01, 3.994203805923462e-01, 4.542765319347382e-01, 5.086791515350342e-01, 5.624399185180664e-01, 6.153948903083801e-01, 6.676467657089233e-01, 7.191846370697021e-01, 7.699679136276245e-01, 8.199595808982849e-01, 8.691262006759644e-01, 9.174379706382751e-01, 9.648687839508057e-01, 1.010517716407776e+00, 1.046635746955872e+00, 1.081138849258423e+00, 1.114249706268311e+00, 1.146014809608459e+00, 1.176481127738953e+00, 1.205695509910583e+00, 1.233704209327698e+00, 1.260553479194641e+00, 1.286288380622864e+00, 1.310953378677368e+00, 1.33459210395813e+00, 1.357246994972229e+00, 1.378959178924561e+00, 1.399768829345703e+00, 1.41971480846405e+00, 1.438834547996521e+00, 1.457164287567139e+00, 1.474738955497742e+00, 1.491592049598694e+00, 1.505177974700928e+00, 1.514347672462463e+00, 1.523036241531372e+00, 1.531278491020203e+00, 1.53910219669342e+00, 1.546533226966858e+00, 1.553595781326294e+00, 1.560312271118164e+00, 1.56670343875885e+00, 1.572788596153259e+00, 1.578586101531982e+00, 1.581841826438904e+00, 1.582470059394836e+00, 1.582562208175659e+00, 1.582574009895325e+00, 1.582575440406799e+00, 1.582575678825378e+00, 1.582575678825378e+00, 1.582575678825378e+00, 1.582575678825378e+00, 1.582575678825378e+00, 1.582575678825378e+00, 1.582575678825378e+00, 1.582575678825378e+00, 1.582575678825378e+00, 1.582575678825378e+00, 1.582575678825378e+00, 1.582575678825378e+00, 1.582575678825378e+00, 1.582575678825378e+00, 1.582575678825378e+00, 1.582575678825378e+00, 1.582575678825378e+00, 1.582575678825378e+00, 1.582575678825378e+00, 1.582575678825378e+00] +m_flow_nominal=[1e+00, 1e+00] +dp_nominal=[1e+05, 1e+05] +val.y_actual=[0e+00, -8.284050232855438e-27, -8.060059341793754e-26, -1.933522576525593e-26, -7.661461793081176e-27, -2.877533663245919e-27, -1.84640540808857e-27, -8.152773455242151e-28, -3.962367582312224e-28, -3.262789659676845e-28, -2.563211737041466e-28, -1.863633934776708e-28, -1.16405613251195e-28, -4.802146223402945e-29, -4.384181508725135e-29, -3.966216794047325e-29, -3.548252079369514e-29, -3.13028706376515e-29, -2.71232234908734e-29, -2.29435763440953e-29, -1.876392919731719e-29, -1.458428054590632e-29, -1.040463339912822e-29, -6.224985500033732e-30, -2.045337789018341e-30, -4.202930680602354e-31, 6.450829096138477e-03, 2.337789908051497e-02, 4.290844127535826e-02, 6.284619122743607e-02, 8.283859491348267e-02, 1.028376296162605e-01, 1.228374913334846e-01, 1.428374946117401e-01, 1.62837490439415e-01, 1.828374862670898e-01, 2.028374969959259e-01, 2.228374928236008e-01, 2.428374886512756e-01, 2.628374993801117e-01, 2.828374803066254e-01, 3.028374910354614e-01, 3.228375017642975e-01, 3.428374826908112e-01, 3.628374934196472e-01, 3.828374743461609e-01, 4.028374850749969e-01, 4.22837495803833e-01, 4.428374767303467e-01, 4.628374874591827e-01, 4.828374981880188e-01, 5.028374791145325e-01, 5.228374600410461e-01, 5.428375005722046e-01, 5.628374814987184e-01, 5.82837462425232e-01, 6.028375029563905e-01, 6.228374838829041e-01, 6.428374648094177e-01, 6.628375053405762e-01, 6.828374862670898e-01, 7.028374671936035e-01, 7.22837507724762e-01, 7.428374886512756e-01, 7.628374695777893e-01, 7.828375101089478e-01, 8.028374910354614e-01, 8.228374719619751e-01, 8.428375124931335e-01, 8.628374934196472e-01, 8.828374743461609e-01, 9.028375148773193e-01, 9.22837495803833e-01, 9.428374767303467e-01, 9.628374576568604e-01, 9.828374981880188e-01, 9.963865876197815e-01, 9.994597434997559e-01, 9.999293088912964e-01, 9.999914765357971e-01, 9.999987483024597e-01, 9.999998807907104e-01, 9.999999403953552e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] +elEnergy=[0e+00, 1.741578988730907e-02, 3.817027062177658e-02, 5.892514437437057e-02, 7.968001812696457e-02, 1.004348918795586e-01, 1.211897656321526e-01, 1.419446468353272e-01, 1.626995205879211e-01, 1.834543943405151e-01, 2.042092680931091e-01, 2.249641418457031e-01, 2.457190155982971e-01, 2.664738893508911e-01, 2.872287631034852e-01, 3.079836368560791e-01, 3.287385106086731e-01, 3.494933843612671e-01, 3.702482581138611e-01, 3.910031318664551e-01, 4.117580056190491e-01, 4.325128793716431e-01, 4.532677531242371e-01, 4.740226268768311e-01, 4.94777500629425e-01, 5.15532374382019e-01, 1.71873836517334e+01, 3.107840881347673e+02, 1.001270141601565e+03, 2.1021943359375e+03, 3.615877685546875e+03, 5.5413408203125e+03, 7.87702392578125e+03, 1.06210732421875e+04, 1.37712421875e+04, 1.7324638671875e+04, 2.12772734375e+04, 2.5623703125e+04, 3.0358208984375e+04, 3.547570703125e+04, 4.0970796875e+04, 4.683773828125e+04, 5.307056640625e+04, 5.96630859375e+04, 6.66088984375e+04, 7.38999296875e+04, 8.1411421875e+04, 8.9040875e+04, 9.6774625e+04, 1.04600453125e+05, 1.12507265625e+05, 1.2048490625e+05, 1.285242109375e+05, 1.366169375e+05, 1.447555312500001e+05, 1.529332812500001e+05, 1.611441562500001e+05, 1.6938271875e+05, 1.776440625e+05, 1.859238125e+05, 1.9421803125e+05, 2.0252321875e+05, 2.1083625e+05, 2.19154375e+05, 2.27475125e+05, 2.3578790625e+05, 2.44013328125e+05, 2.5213565625e+05, 2.601585e+05, 2.680855e+05, 2.759201875e+05, 2.8366596875e+05, 2.9132621875e+05, 2.989040625e+05, 3.06402625e+05, 3.13824875e+05, 3.211774375e+05, 3.2849734375e+05, 3.3581084375e+05, 3.4312340625e+05, 3.5043584375e+05, 3.5774825e+05, 3.650606875e+05, 3.7237309375e+05, 3.7968553125e+05, 3.869979375e+05, 3.94310375e+05, 4.0162278125e+05, 4.089351875e+05, 4.16247625e+05, 4.2356003125e+05, 4.3087246875e+05, 4.38184875e+05, 4.454973125e+05, 4.5280971875e+05, 4.6012215625e+05, 4.674345625e+05, 4.7474696875e+05, 4.8205940625e+05, 4.893718125e+05, 4.9668425e+05] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Movers_DpControlledMovers_Examples_DpControlled_dpVar.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Movers_DpControlledMovers_Examples_DpControlled_dpVar.txt new file mode 100644 index 0000000000..65c313d5b9 --- /dev/null +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Movers_DpControlledMovers_Examples_DpControlled_dpVar.txt @@ -0,0 +1,20 @@ +last-generated=2022-05-23 +statistics-initialization= +{ + "nonlinear": "1, 0, 1", + "numerical Jacobians": "0" +} +statistics-simulation= +{ + "linear": " ", + "nonlinear": "1, 1", + "number of continuous time states": "5", + "numerical Jacobians": "0" +} +time=[0e+00, 3.6e+03] +dpControlled_dp.mov.dpMachine=[0e+00, 4.999550390625e+04, 5.00000390625e+04, 5.000006640625e+04, 5.00000703125e+04, 5.00000703125e+04, 5.00000703125e+04, 5.00000703125e+04, 5.00000703125e+04, 5.00000703125e+04, 5.00000703125e+04, 5.00000703125e+04, 5.00000703125e+04, 5.00000703125e+04, 5.00000703125e+04, 5.00000703125e+04, 5.00000703125e+04, 5.00000703125e+04, 5.00000703125e+04, 5.00000703125e+04, 5.00000703125e+04, 5.00000703125e+04, 5.00000703125e+04, 5.00000703125e+04, 5.00000703125e+04, 5.00000703125e+04, 5.013146875e+04, 5.195680078125001e+04, 5.399589843750001e+04, 5.615390625e+04, 5.839734765625e+04, 6.07192734375e+04, 6.3119484375e+04, 6.5598421875e+04, 6.81555703125e+04, 7.07892265625e+04, 7.3494921875e+04, 7.6263296875e+04, 7.9077640625e+04, 8.19307890625e+04, 8.4831078125e+04, 8.77740390625e+04, 9.0755203125e+04, 9.37696796875e+04, 9.681259375e+04, 9.96583828125e+04, 9.80484375e+04, 9.6308015625e+04, 9.463771875e+04, 9.30351953125e+04, 9.14981171875e+04, 9.0024140625e+04, 8.86109375e+04, 8.7256203125e+04, 8.595767187499999e+04, 8.471310156249999e+04, 8.352031249999999e+04, 8.2377171875e+04, 8.128159375e+04, 8.02315703125e+04, 7.92251484375e+04, 7.82604296875e+04, 7.73356015625e+04, 7.6448890625e+04, 7.55986171875e+04, 7.4527625e+04, 7.31374140625e+04, 7.18191328125e+04, 7.05687734375e+04, 6.9382046875e+04, 6.825503125e+04, 6.71840390625e+04, 6.6165671875e+04, 6.519674609375e+04, 6.42743046875e+04, 6.3395609375e+04, 6.278280078125e+04, 6.263912890625e+04, 6.2617e+04, 6.261405859375e+04, 6.2613703125e+04, 6.261365625e+04, 6.26136484375e+04, 6.26136484375e+04, 6.261364453125e+04, 6.261364453125e+04, 6.261364453125e+04, 6.261364453125e+04, 6.261364453125e+04, 6.261364453125e+04, 6.261364453125e+04, 6.261364453125e+04, 6.261364453125e+04, 6.261364453125e+04, 6.261364453125e+04, 6.261364453125e+04, 6.261364453125e+04, 6.261364453125e+04, 6.261364453125e+04, 6.261364453125e+04, 6.261364453125e+04] +dpControlled_dp.mov.m_flow=[0e+00, 1.406123260494496e-06, 1.40625081712642e-06, 1.406251726621122e-06, 1.406251726621122e-06, 1.406251726621122e-06, 1.406251726621122e-06, 1.406251726621122e-06, 1.406251726621122e-06, 1.406251726621122e-06, 1.406251726621122e-06, 1.406251726621122e-06, 1.406251726621122e-06, 1.406251726621122e-06, 1.406251726621122e-06, 1.406251726621122e-06, 1.406251726621122e-06, 1.406251726621122e-06, 1.406251726621122e-06, 1.406251726621122e-06, 1.406251726621122e-06, 1.406251726621122e-06, 1.406251726621122e-06, 1.406251726621122e-06, 1.406251726621122e-06, 1.406251726621122e-06, 6.017619278281927e-03, 4.774345457553876e-02, 8.89835506677629e-02, 1.325507164001465e-01, 1.777599304914474e-01, 2.245334684848785e-01, 2.728754580020905e-01, 3.227908909320831e-01, 3.74267041683197e-01, 4.272601902484894e-01, 4.816660284996033e-01, 5.37266731262207e-01, 5.937086343765259e-01, 6.50974452495575e-01, 7.091696262359619e-01, 7.682020664215088e-01, 8.279775977134705e-01, 8.883987665176392e-01, 9.493671059608459e-01, 1.009667038917542e+00, 1.046635746955872e+00, 1.081138849258423e+00, 1.114249706268311e+00, 1.146014809608459e+00, 1.176481127738953e+00, 1.205695509910583e+00, 1.233704209327698e+00, 1.260553479194641e+00, 1.286288380622864e+00, 1.310953378677368e+00, 1.33459210395813e+00, 1.357246994972229e+00, 1.378959178924561e+00, 1.399768829345703e+00, 1.41971480846405e+00, 1.438834547996521e+00, 1.457164287567139e+00, 1.474738955497742e+00, 1.491592049598694e+00, 1.505177736282349e+00, 1.514347910881042e+00, 1.523036122322083e+00, 1.531278491020203e+00, 1.53910219669342e+00, 1.546533346176147e+00, 1.553595900535583e+00, 1.560312390327454e+00, 1.56670355796814e+00, 1.572788715362549e+00, 1.578586101531982e+00, 1.581841707229614e+00, 1.582470297813416e+00, 1.58256208896637e+00, 1.582574009895325e+00, 1.582575440406799e+00, 1.582575678825378e+00, 1.582575678825378e+00, 1.582575678825378e+00, 1.582575678825378e+00, 1.582575678825378e+00, 1.582575678825378e+00, 1.582575678825378e+00, 1.582575678825378e+00, 1.582575678825378e+00, 1.582575678825378e+00, 1.582575678825378e+00, 1.582575678825378e+00, 1.582575678825378e+00, 1.582575678825378e+00, 1.582575678825378e+00, 1.582575678825378e+00, 1.582575678825378e+00, 1.582575678825378e+00, 1.582575678825378e+00, 1.582575678825378e+00] +m_flow_nominal=[1e+00, 1e+00] +dp_nominal=[1e+05, 1e+05] +val.y_actual=[0e+00, -9.110714831768838e-27, 2.054392167979787e-27, 7.147010467824369e-28, 3.010373910788051e-28, 9.089485955993214e-29, 6.776033027111639e-29, 4.462579797303508e-29, 2.14912656749538e-29, 1.082622623480205e-29, 1.262591673754939e-29, 1.442560648798035e-29, 1.622529774304408e-29, 1.802498749347504e-29, 1.982467874853877e-29, 2.162436849896973e-29, 2.122785262534131e-29, 1.840601016348052e-29, 1.558416770161972e-29, 1.276232523975892e-29, 9.940482025581742e-30, 7.118639563720945e-30, 4.296796725701956e-30, 1.474953981722515e-30, -1.346888762256926e-30, -4.168731412196819e-30, 6.45081140100956e-03, 2.337789162993437e-02, 4.290840402245528e-02, 6.284619867801666e-02, 8.28385204076767e-02, 1.028376296162605e-01, 1.228375285863876e-01, 1.428375244140625e-01, 1.628374755382538e-01, 1.82837501168251e-01, 2.028374820947647e-01, 2.228374928236008e-01, 2.428374886512756e-01, 2.628374993801117e-01, 2.828374803066254e-01, 3.028374910354614e-01, 3.228374719619751e-01, 3.428374826908112e-01, 3.628374934196472e-01, 3.828374743461609e-01, 4.028374850749969e-01, 4.22837495803833e-01, 4.428374767303467e-01, 4.628374874591827e-01, 4.828374981880188e-01, 5.028374791145325e-01, 5.228374600410461e-01, 5.428375005722046e-01, 5.628374814987184e-01, 5.82837462425232e-01, 6.028375029563905e-01, 6.228374838829041e-01, 6.428374648094177e-01, 6.628375053405762e-01, 6.828374862670898e-01, 7.028374671936035e-01, 7.22837507724762e-01, 7.428374886512756e-01, 7.628374695777893e-01, 7.828375101089478e-01, 8.028374910354614e-01, 8.228374719619751e-01, 8.428375124931335e-01, 8.628374934196472e-01, 8.828374743461609e-01, 9.028375148773193e-01, 9.22837495803833e-01, 9.428374767303467e-01, 9.628374576568604e-01, 9.828374981880188e-01, 9.963869452476501e-01, 9.994602203369141e-01, 9.999291896820068e-01, 9.999912977218628e-01, 9.999988079071045e-01, 9.999998211860657e-01, 9.999999403953552e-01, 9.999999403953552e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] +elEnergy=[0e+00, 4.353961907327175e-03, 9.542594663798809e-03, 1.473132707178593e-02, 1.992006041109562e-02, 2.510879375040531e-02, 3.0297527089715e-02, 3.548625856637955e-02, 4.067499190568924e-02, 4.586372524499893e-02, 5.105245858430862e-02, 5.624119192361832e-02, 6.142992526292801e-02, 6.66186586022377e-02, 7.180739194154741e-02, 7.699612528085709e-02, 8.218485862016678e-02, 8.737359195947647e-02, 9.256232529878616e-02, 9.775105863809586e-02, 1.029397919774055e-01, 1.081285253167152e-01, 1.133172586560249e-01, 1.185059919953346e-01, 1.236947253346443e-01, 1.288834512233734e-01, 4.330331802368164e+00, 1.039218139648444e+02, 3.706001892089856e+02, 8.20700927734375e+02, 1.476484497070312e+03, 2.360545166015625e+03, 3.496956787109375e+03, 4.91147265625e+03, 6.6315380859375e+03, 8.6861826171875e+03, 1.11057431640625e+04, 1.3921201171875e+04, 1.716294140625e+04, 2.0860490234375e+04, 2.50454375e+04, 2.9750376953125e+04, 3.500816796875e+04, 4.08517734375e+04, 4.73140625e+04, 5.4426578125e+04, 6.19365390625e+04, 6.9565984375e+04, 7.72997421875e+04, 8.51255625e+04, 9.30323125e+04, 1.01009875e+05, 1.090491015625e+05, 1.17141734375e+05, 1.252803046875001e+05, 1.334580781250001e+05, 1.416689843750001e+05, 1.499075625e+05, 1.58168921875e+05, 1.664486875e+05, 1.7474290625e+05, 1.83048109375e+05, 1.913611875e+05, 1.9967934375e+05, 2.08000140625e+05, 2.16312921875e+05, 2.24538328125e+05, 2.32660671875e+05, 2.4068353125e+05, 2.4861053125e+05, 2.5644521875e+05, 2.64191e+05, 2.7185125e+05, 2.7942909375e+05, 2.8692765625e+05, 2.9434990625e+05, 3.0170246875e+05, 3.09022375e+05, 3.1633584375e+05, 3.2364840625e+05, 3.3096084375e+05, 3.3827328125e+05, 3.455856875e+05, 3.52898125e+05, 3.6021053125e+05, 3.6752296875e+05, 3.74835375e+05, 3.8214778125e+05, 3.8946021875e+05, 3.96772625e+05, 4.040850625e+05, 4.1139746875e+05, 4.1870990625e+05, 4.260223125e+05, 4.3333475e+05, 4.4064715625e+05, 4.479595625e+05, 4.55272e+05, 4.6258440625e+05, 4.6989684375e+05, 4.7720925e+05] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Movers_Examples_ClosedLoop_y.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Movers_Examples_ClosedLoop_y.txt index 089dbf45e1..9cd2f42ae4 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Movers_Examples_ClosedLoop_y.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Movers_Examples_ClosedLoop_y.txt @@ -1,4 +1,4 @@ -last-generated=2021-05-19 +last-generated=2022-05-23 statistics-initialization= { "nonlinear": "0, 1", @@ -13,5 +13,5 @@ statistics-simulation= } time=[0e+00, 3.6e+03] conPID.u_s=[7.5e-01, 7.5e-01, 7.5e-01, 7.5e-01, 7.5e-01, 7.5e-01, 7.5e-01, 7.5e-01, 7.5e-01, 7.5e-01, 7.5e-01, 7.5e-01, 7.5e-01, 2.5e-01, 2.5e-01, 2.5e-01, 2.5e-01, 2.5e-01, 2.5e-01, 2.5e-01, 2.5e-01, 2.5e-01, 2.5e-01, 2.5e-01, 2.5e-01, 2.5e-01, 7.5e-01, 7.5e-01, 7.5e-01, 7.5e-01, 7.5e-01, 7.5e-01, 7.5e-01, 7.5e-01, 7.5e-01, 7.5e-01, 7.5e-01, 7.5e-01, 2.5e-01, 2.5e-01, 2.5e-01, 2.5e-01, 2.5e-01, 2.5e-01, 2.5e-01, 2.5e-01, 2.5e-01, 2.5e-01, 2.5e-01, 2.5e-01, 2.5e-01, 7.5e-01, 7.5e-01, 7.5e-01, 7.5e-01, 7.5e-01, 7.5e-01, 7.5e-01, 7.5e-01, 7.5e-01, 7.5e-01, 7.5e-01, 7.5e-01, 2.5e-01, 2.5e-01, 2.5e-01, 2.5e-01, 2.5e-01, 2.5e-01, 2.5e-01, 2.5e-01, 2.5e-01, 2.5e-01, 2.5e-01, 2.5e-01, 2.5e-01, 7.5e-01, 7.5e-01, 7.5e-01, 7.5e-01, 7.5e-01, 7.5e-01, 7.5e-01, 7.5e-01, 7.5e-01, 7.5e-01, 7.5e-01, 7.5e-01, 2.5e-01, 2.5e-01, 2.5e-01, 2.5e-01, 2.5e-01, 2.5e-01, 2.5e-01, 2.5e-01, 2.5e-01, 2.5e-01, 2.5e-01, 2.5e-01, 2.5e-01] -conPID.u_m=[0e+00, 5.239059925079346e-01, 6.585351824760437e-01, 7.132495045661926e-01, 7.354500889778137e-01, 7.451563477516174e-01, 7.476317882537842e-01, 7.490484118461609e-01, 7.496169209480286e-01, 7.498464584350586e-01, 7.499386072158813e-01, 7.499758005142212e-01, 7.499904632568359e-01, 4.752587974071503e-01, 3.409955501556395e-01, 2.864581048488617e-01, 2.642678320407867e-01, 2.554869055747986e-01, 2.520987093448639e-01, 2.507965862751007e-01, 2.503017783164978e-01, 2.501148283481598e-01, 2.500680387020111e-01, 2.500520050525665e-01, 2.501018941402435e-01, 2.500458657741547e-01, 6.069340109825134e-01, 6.924217939376832e-01, 7.270705103874208e-01, 7.418561577796936e-01, 7.473304271697998e-01, 7.485125660896301e-01, 7.494020462036133e-01, 7.49759316444397e-01, 7.499051690101624e-01, 7.499639987945557e-01, 7.499862313270569e-01, 7.499946355819702e-01, 4.752607941627502e-01, 3.409963548183441e-01, 2.86458432674408e-01, 2.642679214477539e-01, 2.554869651794434e-01, 2.520987391471863e-01, 2.507966160774231e-01, 2.50301867723465e-01, 2.501150071620941e-01, 2.50068187713623e-01, 2.500551342964172e-01, 2.501134276390076e-01, 2.500484883785248e-01, 6.069541573524475e-01, 6.928738355636597e-01, 7.286262512207031e-01, 7.407456040382385e-01, 7.462829351425171e-01, 7.485116124153137e-01, 7.494059801101685e-01, 7.497622966766357e-01, 7.499050498008728e-01, 7.499620318412781e-01, 7.499850392341614e-01, 7.499943375587463e-01, 4.752603471279144e-01, 3.409961760044098e-01, 2.864583730697632e-01, 2.642678916454315e-01, 2.55486935377121e-01, 2.520987093448639e-01, 2.507966160774231e-01, 2.50301867723465e-01, 2.501149773597717e-01, 2.500681579113007e-01, 2.500544488430023e-01, 2.50110924243927e-01, 2.500479221343994e-01, 6.069495677947998e-01, 6.925187110900879e-01, 7.270228862762451e-01, 7.406539916992188e-01, 7.462004423141479e-01, 7.495582699775696e-01, 7.497891187667847e-01, 7.490941882133484e-01, 7.499082684516907e-01, 7.499633431434631e-01, 7.499848008155823e-01, 7.499937415122986e-01, 4.752600193023682e-01, 3.409960567951202e-01, 2.864583134651184e-01, 2.642678916454315e-01, 2.55486935377121e-01, 2.520987093448639e-01, 2.507966160774231e-01, 2.503018379211426e-01, 2.501149475574493e-01, 2.500681281089783e-01, 2.500539422035217e-01, 2.501090168952942e-01, 2.500474750995636e-01] -conPID.y=[3.75e-01, 5.638429522514343e-01, 6.758241057395935e-01, 7.204530835151672e-01, 7.382534742355347e-01, 7.450096607208252e-01, 7.484360933303833e-01, 7.495926022529602e-01, 7.500559091567993e-01, 7.502431869506836e-01, 7.503182888031006e-01, 7.503486275672913e-01, 7.503605484962463e-01, 4.351249039173126e-01, 3.241538703441619e-01, 2.798387706279755e-01, 2.62495219707489e-01, 2.558555006980896e-01, 2.533198893070221e-01, 2.523501813411713e-01, 2.519822418689728e-01, 2.518415749073029e-01, 2.517761588096619e-01, 2.517517805099487e-01, 2.517150342464447e-01, 2.517380118370056e-01, 6.337044239044189e-01, 7.03599512577057e-01, 7.31496274471283e-01, 7.422620058059692e-01, 7.468250393867493e-01, 7.491551637649536e-01, 7.498809099197388e-01, 7.501720786094666e-01, 7.502910494804382e-01, 7.503393292427063e-01, 7.503570914268494e-01, 7.503640055656433e-01, 4.351265132427216e-01, 3.241545259952545e-01, 2.79839038848877e-01, 2.624953091144562e-01, 2.558555603027344e-01, 2.533198893070221e-01, 2.523502111434937e-01, 2.519822120666504e-01, 2.518414855003357e-01, 2.517760992050171e-01, 2.517502009868622e-01, 2.517093122005463e-01, 2.517367303371429e-01, 6.336943507194519e-01, 7.033748030662537e-01, 7.307252287864685e-01, 7.428250312805176e-01, 7.473384141921997e-01, 7.491550445556641e-01, 7.498841285705566e-01, 7.501745820045471e-01, 7.502909302711487e-01, 7.503373622894287e-01, 7.50356137752533e-01, 7.503637075424194e-01, 4.351261258125305e-01, 3.241543769836426e-01, 2.798389792442322e-01, 2.624952793121338e-01, 2.55855530500412e-01, 2.533198893070221e-01, 2.523501813411713e-01, 2.519822418689728e-01, 2.518414855003357e-01, 2.517760992050171e-01, 2.517505586147308e-01, 2.517105638980865e-01, 2.517369985580444e-01, 6.336966156959534e-01, 7.035495042800903e-01, 7.315225601196289e-01, 7.428640723228455e-01, 7.473798990249634e-01, 7.486302852630615e-01, 7.496899366378784e-01, 7.505179047584534e-01, 7.502933740615845e-01, 7.503380179405212e-01, 7.503560185432434e-01, 7.503632307052612e-01, 4.351258873939514e-01, 3.241542875766754e-01, 2.798389196395874e-01, 2.624952793121338e-01, 2.55855530500412e-01, 2.533198893070221e-01, 2.523501813411713e-01, 2.519822418689728e-01, 2.518415153026581e-01, 2.517760992050171e-01, 2.517507970333099e-01, 2.51711517572403e-01, 2.517372071743011e-01] +conPID.u_m=[0e+00, 5.233249664306641e-01, 6.585752964019775e-01, 7.149104475975037e-01, 7.352728843688965e-01, 7.440879344940186e-01, 7.476274967193604e-01, 7.4904865026474e-01, 7.496180534362793e-01, 7.498466968536377e-01, 7.499381303787231e-01, 7.499749064445496e-01, 7.499897480010986e-01, 4.747349917888641e-01, 3.408009409904479e-01, 2.865175902843475e-01, 2.642642259597778e-01, 2.554986476898193e-01, 2.520947754383087e-01, 2.507993876934052e-01, 2.503007352352142e-01, 2.501133978366852e-01, 2.500426173210144e-01, 2.500148117542267e-01, 2.500044405460358e-01, 2.500020563602448e-01, 6.068195700645447e-01, 6.925905346870423e-01, 7.268923521041871e-01, 7.405785918235779e-01, 7.460326552391052e-01, 7.47828483581543e-01, 7.491768002510071e-01, 7.497633099555969e-01, 7.499048709869385e-01, 7.49960720539093e-01, 7.499838471412659e-01, 7.499933838844299e-01, 4.747366905212402e-01, 3.408015370368958e-01, 2.865176796913147e-01, 2.642644047737122e-01, 2.554985880851746e-01, 2.520948052406311e-01, 2.507993876934052e-01, 2.503007352352142e-01, 2.501133978366852e-01, 2.500426173210144e-01, 2.500148117542267e-01, 2.500044405460358e-01, 2.500020563602448e-01, 6.068195700645447e-01, 6.925905346870422e-01, 7.26892352104187e-01, 7.405785918235779e-01, 7.4603271484375e-01, 7.478284239768982e-01, 7.491761445999146e-01, 7.497633099555969e-01, 7.499048709869385e-01, 7.49960720539093e-01, 7.499838471412659e-01, 7.499933838844299e-01, 4.747367203235626e-01, 3.408015370368958e-01, 2.865176498889923e-01, 2.642644047737122e-01, 2.554985880851746e-01, 2.520948052406311e-01, 2.507993876934052e-01, 2.503007352352142e-01, 2.501133978366852e-01, 2.500426173210144e-01, 2.500148117542267e-01, 2.500044405460358e-01, 2.500020563602448e-01, 6.068195700645447e-01, 6.925905346870422e-01, 7.26892352104187e-01, 7.405785918235779e-01, 7.4603271484375e-01, 7.47828483581543e-01, 7.491767406463623e-01, 7.497633099555969e-01, 7.499048709869385e-01, 7.49960720539093e-01, 7.499838471412659e-01, 7.499933838844299e-01, 4.747366011142731e-01, 3.408015370368958e-01, 2.865177690982819e-01, 2.642644047737122e-01, 2.554985880851746e-01, 2.520948052406311e-01, 2.507993876934052e-01, 2.503007352352142e-01, 2.501133978366852e-01, 2.500426173210144e-01, 2.500148117542267e-01, 2.500044405460358e-01, 2.500020563602448e-01] +conPID.y=[3.75e-01, 5.642012357711792e-01, 6.758684515953064e-01, 7.196626663208008e-01, 7.383686900138855e-01, 7.455520629882812e-01, 7.484354376792908e-01, 7.49593198299408e-01, 7.5005704164505e-01, 7.502434253692627e-01, 7.503178119659424e-01, 7.503477931022644e-01, 7.503600120544434e-01, 4.353031516075134e-01, 3.241865634918212e-01, 2.797642648220062e-01, 2.624715268611908e-01, 2.558377087116241e-01, 2.533158957958221e-01, 2.523509860038757e-01, 2.51980185508728e-01, 2.518409490585327e-01, 2.51788318157196e-01, 2.517672777175903e-01, 2.517598867416382e-01, 2.517580687999725e-01, 6.338385343551636e-01, 7.035706639289857e-01, 7.316158413887024e-01, 7.429143190383911e-01, 7.474696636199951e-01, 7.494956254959106e-01, 7.500022053718567e-01, 7.501756548881531e-01, 7.502906322479248e-01, 7.503364086151123e-01, 7.503551244735718e-01, 7.503629326820374e-01, 4.353042542934418e-01, 3.241870403289795e-01, 2.797645330429077e-01, 2.624715566635132e-01, 2.558377981185913e-01, 2.533159255981445e-01, 2.523510158061981e-01, 2.51980185508728e-01, 2.518409490585327e-01, 2.51788318157196e-01, 2.517672777175903e-01, 2.517598867416382e-01, 2.517580687999725e-01, 6.338385343551636e-01, 7.035706639289856e-01, 7.316157817840576e-01, 7.429143190383911e-01, 7.474696040153503e-01, 7.494956254959106e-01, 7.500025033950806e-01, 7.501756548881531e-01, 7.502906322479248e-01, 7.503364086151123e-01, 7.503551244735718e-01, 7.503629326820374e-01, 4.353042542934418e-01, 3.241870403289795e-01, 2.797645330429077e-01, 2.624715566635132e-01, 2.558377981185913e-01, 2.533159255981445e-01, 2.523510158061981e-01, 2.51980185508728e-01, 2.518409490585327e-01, 2.51788318157196e-01, 2.517672777175903e-01, 2.517598867416382e-01, 2.517580687999725e-01, 6.338385343551636e-01, 7.035706639289856e-01, 7.316158413887024e-01, 7.429143190383911e-01, 7.474696636199951e-01, 7.494956254959106e-01, 7.500022053718567e-01, 7.501756548881531e-01, 7.502906322479248e-01, 7.503364086151123e-01, 7.503551244735718e-01, 7.503629326820374e-01, 4.353043138980865e-01, 3.241870701313019e-01, 2.797644734382629e-01, 2.624715566635132e-01, 2.558377981185913e-01, 2.533159255981445e-01, 2.523510158061981e-01, 2.51980185508728e-01, 2.518409490585327e-01, 2.51788318157196e-01, 2.517672777175903e-01, 2.517598867416382e-01, 2.517580687999725e-01] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Movers_Examples_MoverParameter.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Movers_Examples_MoverParameter.txt index d819e50a1b..a539d97cbe 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Movers_Examples_MoverParameter.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Movers_Examples_MoverParameter.txt @@ -1,7 +1,7 @@ -last-generated=2021-05-19 +last-generated=2022-05-23 statistics-initialization= { - "nonlinear": "0, 1, 0, 1, 1", + "nonlinear": "0, 1, 1, 1", "numerical Jacobians": "0" } statistics-simulation= diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Movers_Examples_PumpsParallel.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Movers_Examples_PumpsParallel.txt index afafb7c73c..d14014c362 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Movers_Examples_PumpsParallel.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Movers_Examples_PumpsParallel.txt @@ -1,4 +1,4 @@ -last-generated=2020-08-17 +last-generated=2022-05-23 statistics-initialization= { "nonlinear": "2", @@ -13,7 +13,7 @@ statistics-simulation= } time=[0e+00, 3e+02] floMac1.y=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -floMac1.dp=[0e+00, -1.166659423828125e+03, -2.484049560546875e+03, -3.2535810546875e+03, -3.6414951171875e+03, -3.8270029296875e+03, -3.913734375e+03, -3.95386572265625e+03, -3.972391357421875e+03, -3.980929443359375e+03, -3.984842529296875e+03, -3.986699951171875e+03, -3.987513916015625e+03, -3.987886962890625e+03, -3.988053466796875e+03, -3.9881318359375e+03, -3.988166015625e+03, -3.9881826171875e+03, -3.98819091796875e+03, -3.988195068359375e+03, -3.988197021484375e+03, -3.988197509765625e+03, -3.988197998046875e+03, -3.9881982421875e+03, -3.988198486328125e+03, -3.988198974609375e+03, -3.98819970703125e+03, -3.988199462890625e+03, -3.988199951171875e+03, -3.988199951171875e+03, -3.9882001953125e+03, -3.988201904296875e+03, -3.988204345703125e+03, -3.98820556640625e+03, -3.988203857421875e+03, -3.988208251953125e+03, -3.98821337890625e+03, -3.98821728515625e+03, -3.988216552734375e+03, -3.98821240234375e+03, -3.98821484375e+03, -3.988216064453125e+03, -3.988215576171875e+03, -3.988211181640625e+03, -3.98820703125e+03, -3.98820458984375e+03, -3.988201904296875e+03, -3.98819970703125e+03, -3.988198486328125e+03, -3.988196533203125e+03, -3.9881953125e+03, -2.815784423828125e+03, -1.454473388671875e+03, -7.5138330078125e+02, -4.090782470703125e+02, -2.027139129638672e+02, -9.875360107421812e+01, -4.250237655639691e+01, -1.391851711273193e+01, -4.115043640136719e+00, -1.359681487083435e+00, -6.415013074874878e-01, -4.602790772914886e-01, -4.153478145599365e-01, -4.043747782707214e-01, -4.016946256160736e-01, -4.010427594184875e-01, -4.008892774581909e-01, -4.008534550666809e-01, -4.008433818817139e-01, -4.008396863937378e-01, -4.008384943008423e-01, -4.008382558822632e-01, -4.008381962776184e-01, -4.008381962776184e-01, -4.00838166475296e-01, -4.00838166475296e-01, -4.00838166475296e-01, -4.00838166475296e-01, -4.00838166475296e-01, -4.00838166475296e-01, -4.00838166475296e-01, -4.00838166475296e-01, -4.00838166475296e-01, -4.00838166475296e-01, -4.00838166475296e-01, -4.00838166475296e-01, -4.00838166475296e-01, -4.00838166475296e-01, -4.00838166475296e-01, -4.00838166475296e-01, -4.00838166475296e-01, -4.00838166475296e-01, -4.00838166475296e-01, -4.00838166475296e-01, -4.00838166475296e-01, -4.00838166475296e-01, -4.00838166475296e-01, -4.00838166475296e-01, -4.00838166475296e-01, -4.00838166475296e-01] -floMac2.dp=[0e+00, -1.166659423828125e+03, -2.484049560546875e+03, -3.2535810546875e+03, -3.6414951171875e+03, -3.8270029296875e+03, -3.913734375e+03, -3.95386572265625e+03, -3.972391357421875e+03, -3.980929443359375e+03, -3.984842529296875e+03, -3.986699951171875e+03, -3.987513916015625e+03, -3.987886962890625e+03, -3.988053466796875e+03, -3.9881318359375e+03, -3.988166015625e+03, -3.9881826171875e+03, -3.98819091796875e+03, -3.988195068359375e+03, -3.988197021484375e+03, -3.988197509765625e+03, -3.988197998046875e+03, -3.9881982421875e+03, -3.988198486328125e+03, -3.988198974609375e+03, -3.98819970703125e+03, -3.988199462890625e+03, -3.988199951171875e+03, -3.988199951171875e+03, -3.9882001953125e+03, -3.988201904296875e+03, -3.988204345703125e+03, -3.98820556640625e+03, -3.988203857421875e+03, -3.988208251953125e+03, -3.98821337890625e+03, -3.98821728515625e+03, -3.988216552734375e+03, -3.98821240234375e+03, -3.98821484375e+03, -3.988216064453125e+03, -3.988215576171875e+03, -3.988211181640625e+03, -3.98820703125e+03, -3.98820458984375e+03, -3.988201904296875e+03, -3.98819970703125e+03, -3.988198486328125e+03, -3.988196533203125e+03, -3.9881953125e+03, -3.811515625e+03, -3.56699365234375e+03, -3.380199462890625e+03, -3.264414794921875e+03, -3.22050537109375e+03, -3.202815673828125e+03, -3.194102294921875e+03, -3.189877685546875e+03, -3.188458740234375e+03, -3.1880625e+03, -3.18795947265625e+03, -3.187933349609375e+03, -3.187927001953125e+03, -3.18792529296875e+03, -3.187925048828125e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03] -floMac1.m_flow=[-0e+00, 2.700300216674805e-01, 3.940216898918152e-01, 4.509421288967133e-01, 4.770675599575043e-01, 4.890681803226471e-01, 4.94579017162323e-01, 4.971082508563995e-01, 4.982714653015137e-01, 4.988066554069519e-01, 4.990517497062683e-01, 4.991680383682251e-01, 4.992190003395081e-01, 4.9924236536026e-01, 4.992527663707733e-01, 4.992576837539673e-01, 4.992598295211792e-01, 4.992608726024628e-01, 4.992614090442657e-01, 4.992616474628448e-01, 4.992617666721344e-01, 4.992617964744568e-01, 4.992618262767792e-01, 4.992618560791016e-01, 4.992618560791016e-01, 4.99261885881424e-01, 4.992619454860687e-01, 4.992619156837463e-01, 4.992619454860687e-01, 4.992619454860687e-01, 4.992619752883911e-01, 4.992620646953583e-01, 4.992622137069702e-01, 4.992623031139374e-01, 4.992621839046478e-01, 4.992624819278717e-01, 4.99262809753418e-01, 4.992630183696747e-01, 4.992629885673523e-01, 4.992627501487732e-01, 4.992628693580627e-01, 4.992629587650299e-01, 4.992629289627075e-01, 4.99262660741806e-01, 4.992623925209045e-01, 4.992622435092926e-01, 4.992620944976807e-01, 4.992619454860687e-01, 4.992618560791016e-01, 4.99261736869812e-01, 4.992616474628448e-01, 3.837114870548248e-01, 2.007126659154892e-01, 3.165432810783386e-02, -9.64425727725029e-02, -1.530920565128326e-01, -1.777564138174058e-01, -1.903776377439498e-01, -1.966200172901154e-01, -1.987360119819641e-01, -1.993284821510315e-01, -1.994827538728714e-01, -1.995216757059097e-01, -1.995313167572021e-01, -1.995336711406708e-01, -1.995342522859573e-01, -1.995343863964081e-01, -1.995344161987305e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01] -floMac2.m_flow=[0e+00, 2.700300216674805e-01, 3.940216898918152e-01, 4.509421288967133e-01, 4.770675599575043e-01, 4.890681803226471e-01, 4.94579017162323e-01, 4.971082508563995e-01, 4.982714653015137e-01, 4.988066554069519e-01, 4.990517497062683e-01, 4.991680383682251e-01, 4.992190003395081e-01, 4.9924236536026e-01, 4.992527663707733e-01, 4.992576837539673e-01, 4.992598295211792e-01, 4.992608726024628e-01, 4.992614090442657e-01, 4.992616474628448e-01, 4.992617666721344e-01, 4.992617964744568e-01, 4.992618262767792e-01, 4.992618560791016e-01, 4.992618560791016e-01, 4.99261885881424e-01, 4.992619454860687e-01, 4.992619156837463e-01, 4.992619454860687e-01, 4.992619454860687e-01, 4.992619752883911e-01, 4.992620646953583e-01, 4.992622137069702e-01, 4.992623031139374e-01, 4.992621839046478e-01, 4.992624819278717e-01, 4.99262809753418e-01, 4.992630183696747e-01, 4.992629885673523e-01, 4.992627501487732e-01, 4.992628693580627e-01, 4.992629587650299e-01, 4.992629289627075e-01, 4.99262660741806e-01, 4.992623925209045e-01, 4.992622435092926e-01, 4.992620944976807e-01, 4.992619454860687e-01, 4.992618560791016e-01, 4.99261736869812e-01, 4.992616474628448e-01, 5.212493538856506e-01, 5.51679790019989e-01, 5.749260783195496e-01, 5.893352627754211e-01, 5.947997570037842e-01, 5.970011949539185e-01, 5.980855822563171e-01, 5.986112952232361e-01, 5.987879037857056e-01, 5.988371968269348e-01, 5.988500118255615e-01, 5.988532900810242e-01, 5.988540649414062e-01, 5.988542437553406e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01] +floMac1.dp=[0e+00, -1.1634990234375e+03, -2.479821044921875e+03, -3.250246826171875e+03, -3.639493896484375e+03, -3.8258408203125e+03, -3.913047607421875e+03, -3.953544677734375e+03, -3.97224365234375e+03, -3.98091162109375e+03, -3.984892578125e+03, -3.98668798828125e+03, -3.98750927734375e+03, -3.98789306640625e+03, -3.98808203125e+03, -3.988166259765625e+03, -3.988186767578125e+03, -3.988185302734375e+03, -3.988188232421875e+03, -3.988196044921875e+03, -3.988198974609375e+03, -3.98819677734375e+03, -3.98818408203125e+03, -3.9881767578125e+03, -3.988173095703125e+03, -3.988184326171875e+03, -3.988195068359375e+03, -3.9882021484375e+03, -3.988205810546875e+03, -3.98820654296875e+03, -3.988204833984375e+03, -3.988203125e+03, -3.98820068359375e+03, -3.988198974609375e+03, -3.988197998046875e+03, -3.988197509765625e+03, -3.98819775390625e+03, -3.9881982421875e+03, -3.98819921875e+03, -3.98819921875e+03, -3.9882001953125e+03, -3.98820263671875e+03, -3.98820556640625e+03, -3.98820751953125e+03, -3.988208251953125e+03, -3.9882060546875e+03, -3.988205810546875e+03, -3.98820751953125e+03, -3.988208984375e+03, -3.988209228515625e+03, -3.988208251953125e+03, -2.81905810546875e+03, -1.458623046875e+03, -7.54064453125e+02, -4.1129638671875e+02, -2.041957244873047e+02, -9.961580657958922e+01, -4.310785675048871e+01, -1.419166088104248e+01, -4.206310272216797e+00, -1.386677622795105e+00, -6.490764617919922e-01, -4.623441398143768e-01, -4.158974587917328e-01, -4.045192897319794e-01, -4.017325043678284e-01, -4.010524153709412e-01, -4.008915722370148e-01, -4.008540511131287e-01, -4.00843620300293e-01, -4.00839775800705e-01, -4.008384943008423e-01, -4.008382558822632e-01, -4.008381962776184e-01, -4.008381962776184e-01, -4.00838166475296e-01, -4.00838166475296e-01, -4.00838166475296e-01, -4.00838166475296e-01, -4.00838166475296e-01, -4.00838166475296e-01, -4.00838166475296e-01, -4.00838166475296e-01, -4.00838166475296e-01, -4.00838166475296e-01, -4.00838166475296e-01, -4.00838166475296e-01, -4.00838166475296e-01, -4.00838166475296e-01, -4.00838166475296e-01, -4.00838166475296e-01, -4.00838166475296e-01, -4.00838166475296e-01, -4.00838166475296e-01, -4.00838166475296e-01, -4.00838166475296e-01, -4.00838166475296e-01, -4.00838166475296e-01, -4.00838166475296e-01, -4.00838166475296e-01, -4.00838166475296e-01] +floMac2.dp=[0e+00, -1.1634990234375e+03, -2.479821044921875e+03, -3.250246826171875e+03, -3.639493896484375e+03, -3.8258408203125e+03, -3.913047607421875e+03, -3.953544677734375e+03, -3.97224365234375e+03, -3.98091162109375e+03, -3.984892578125e+03, -3.98668798828125e+03, -3.98750927734375e+03, -3.98789306640625e+03, -3.98808203125e+03, -3.988166259765625e+03, -3.988186767578125e+03, -3.988185302734375e+03, -3.988188232421875e+03, -3.988196044921875e+03, -3.988198974609375e+03, -3.98819677734375e+03, -3.98818408203125e+03, -3.9881767578125e+03, -3.988173095703125e+03, -3.988184326171875e+03, -3.988195068359375e+03, -3.9882021484375e+03, -3.988205810546875e+03, -3.98820654296875e+03, -3.988204833984375e+03, -3.988203125e+03, -3.98820068359375e+03, -3.988198974609375e+03, -3.988197998046875e+03, -3.988197509765625e+03, -3.98819775390625e+03, -3.9881982421875e+03, -3.98819921875e+03, -3.98819921875e+03, -3.9882001953125e+03, -3.98820263671875e+03, -3.98820556640625e+03, -3.98820751953125e+03, -3.988208251953125e+03, -3.9882060546875e+03, -3.988205810546875e+03, -3.98820751953125e+03, -3.988208984375e+03, -3.988209228515625e+03, -3.988208251953125e+03, -3.81204345703125e+03, -3.56787109375e+03, -3.381185546875e+03, -3.26497998046875e+03, -3.2207744140625e+03, -3.20295361328125e+03, -3.194193115234375e+03, -3.18991748046875e+03, -3.1884716796875e+03, -3.18806640625e+03, -3.18796044921875e+03, -3.18793359375e+03, -3.187927001953125e+03, -3.18792529296875e+03, -3.187925048828125e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03, -3.1879248046875e+03] +floMac1.m_flow=[-0e+00, 2.696640193462372e-01, 3.936861753463745e-01, 4.507110118865967e-01, 4.769364297389984e-01, 4.88993912935257e-01, 4.945356249809265e-01, 4.970880746841431e-01, 4.982622265815735e-01, 4.988055527210236e-01, 4.990549087524414e-01, 4.991672933101654e-01, 4.992187321186066e-01, 4.99242752790451e-01, 4.992545545101166e-01, 4.992598295211792e-01, 4.992611408233643e-01, 4.992610216140747e-01, 4.992612302303314e-01, 4.992617070674896e-01, 4.99261885881424e-01, 4.99261736869812e-01, 4.992609620094299e-01, 4.992605149745941e-01, 4.99260276556015e-01, 4.992609620094299e-01, 4.992616474628448e-01, 4.992620944976807e-01, 4.992623031139374e-01, 4.992623627185822e-01, 4.992622435092926e-01, 4.992621541023254e-01, 4.992620050907135e-01, 4.99261885881424e-01, 4.992618262767792e-01, 4.992617964744568e-01, 4.992617964744568e-01, 4.992618560791016e-01, 4.99261885881424e-01, 4.992619156837463e-01, 4.992619454860687e-01, 4.992621243000031e-01, 4.992623031139374e-01, 4.992624223232269e-01, 4.992624819278717e-01, 4.992623329162598e-01, 4.992623031139374e-01, 4.992624223232269e-01, 4.992625117301941e-01, 4.992625415325165e-01, 4.992624819278717e-01, 3.840707838535309e-01, 2.014315128326416e-01, 3.26470285654068e-02, -9.575036913156509e-02, -1.52726411819458e-01, -1.775592863559724e-01, -1.902441978454589e-01, -1.965608894824982e-01, -1.987163573503494e-01, -1.993226855993271e-01, -1.994811296463013e-01, -1.995212286710739e-01, -1.995311975479126e-01, -1.995336413383484e-01, -1.995342373847961e-01, -1.995343863964081e-01, -1.995344161987305e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01, -1.995344310998917e-01] +floMac2.m_flow=[0e+00, 2.696640193462372e-01, 3.936861753463745e-01, 4.507110118865967e-01, 4.769364297389984e-01, 4.88993912935257e-01, 4.945356249809265e-01, 4.970880746841431e-01, 4.982622265815735e-01, 4.988055527210236e-01, 4.990549087524414e-01, 4.991672933101654e-01, 4.992187321186066e-01, 4.99242752790451e-01, 4.992545545101166e-01, 4.992598295211792e-01, 4.992611408233643e-01, 4.992610216140747e-01, 4.992612302303314e-01, 4.992617070674896e-01, 4.99261885881424e-01, 4.99261736869812e-01, 4.992609620094299e-01, 4.992605149745941e-01, 4.99260276556015e-01, 4.992609620094299e-01, 4.992616474628448e-01, 4.992620944976807e-01, 4.992623031139374e-01, 4.992623627185822e-01, 4.992622435092926e-01, 4.992621541023254e-01, 4.992620050907135e-01, 4.99261885881424e-01, 4.992618262767792e-01, 4.992617964744568e-01, 4.992617964744568e-01, 4.992618560791016e-01, 4.99261885881424e-01, 4.992619156837463e-01, 4.992619454860687e-01, 4.992621243000031e-01, 4.992623031139374e-01, 4.992624223232269e-01, 4.992624819278717e-01, 4.992623329162598e-01, 4.992623031139374e-01, 4.992624223232269e-01, 4.992625117301941e-01, 4.992625415325165e-01, 4.992624819278717e-01, 5.211847424507141e-01, 5.515710711479187e-01, 5.748035907745361e-01, 5.892650485038757e-01, 5.947663187980652e-01, 5.969840288162231e-01, 5.980742573738098e-01, 5.986063480377197e-01, 5.987862944602966e-01, 5.988367199897766e-01, 5.98849892616272e-01, 5.988532304763794e-01, 5.988540649414062e-01, 5.988542437553406e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01, 5.988543033599854e-01] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Movers_Examples_PumpsSeries.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Movers_Examples_PumpsSeries.txt index 39a119896e..dd4d26c1c2 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Movers_Examples_PumpsSeries.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Movers_Examples_PumpsSeries.txt @@ -1,4 +1,4 @@ -last-generated=2020-08-17 +last-generated=2022-05-23 statistics-initialization= { "nonlinear": "1", @@ -13,7 +13,7 @@ statistics-simulation= } time=[0e+00, 3e+02] floMac1.y=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -floMac1.dp=[-2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -1.138008911132812e+03, -1.088608932495117e+02, 3.464339904785156e+02, 3.927900085449219e+02, 2.912673950195312e+02, 1.811321716308585e+02, 8.684265899658286e+01, 2.9256103515625e+01, 8.808419227600098e+00, 3.017595052719116e+00, 1.506599068641663e+00, 1.125170588493347e+00, 1.03038227558136e+00, 1.007165312767029e+00, 1.001529455184937e+00, 1.000177621841431e+00, 9.998551607131958e-01, 9.997757077217102e-01, 9.997560977935791e-01, 9.997518658638e-01, 9.99751091003418e-01, 9.997531175613403e-01, 9.997525811195374e-01, 9.997507333755493e-01, 9.997500777244568e-01, 9.997500777244568e-01, 9.997500777244568e-01, 9.99750554561615e-01, 9.997509121894836e-01, 9.99750554561615e-01, 9.997500777244568e-01, 9.997500777244568e-01, 9.997500777244568e-01, 9.997500777244568e-01, 9.997500777244568e-01, 9.997500777244568e-01, 9.997500777244568e-01, 9.997500777244568e-01, 9.997500777244568e-01, 9.997500777244568e-01, 9.997500777244568e-01, 9.997500777244568e-01, 9.997500777244568e-01, 9.997500777244568e-01, 9.997500777244568e-01, 9.997500777244568e-01, 9.997500777244568e-01, 9.997500777244568e-01, 9.997500777244568e-01, 9.997500777244568e-01] -floMac2.dp=[-2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2.861990966796875e+03, -3.89113916015625e+03, -4.34643408203125e+03, -4.3927900390625e+03, -4.291267578125e+03, -4.181132324218749e+03, -4.086842773437501e+03, -4.029256103515625e+03, -4.008808349609375e+03, -4.003017578125e+03, -4.001506591796875e+03, -4.001125244140625e+03, -4.0010302734375e+03, -4.001007080078125e+03, -4.00100146484375e+03, -4.001000244140625e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03] -floMac1.m_flow=[-9.955859985351562e+02, 7.832260429859161e-02, 4.703455865383148e-01, 6.23677670955658e-01, 6.908822655677795e-01, 7.211975455284119e-01, 7.350092530250549e-01, 7.413291931152344e-01, 7.442253828048706e-01, 7.455555200576782e-01, 7.461690902709961e-01, 7.464502453804016e-01, 7.465832233428955e-01, 7.466458082199097e-01, 7.466704845428467e-01, 7.466796636581421e-01, 7.466850876808167e-01, 7.466887831687927e-01, 7.466906905174255e-01, 7.466909289360046e-01, 7.466903328895569e-01, 7.466896176338196e-01, 7.466893196105957e-01, 7.466892004013062e-01, 7.466893196105957e-01, 7.466895580291748e-01, 7.466899752616882e-01, 7.466907501220703e-01, 7.466914057731628e-01, 7.466912865638733e-01, 7.466915249824524e-01, 7.466921210289001e-01, 7.466922402381897e-01, 7.466914653778076e-01, 7.466912865638733e-01, 7.466910481452942e-01, 7.466906905174255e-01, 7.466902136802673e-01, 7.466897964477539e-01, 7.4668949842453e-01, 7.466893792152405e-01, 7.466893196105957e-01, 7.466892600059509e-01, 7.466892600059509e-01, 7.466893196105957e-01, 7.466894388198853e-01, 7.4668949842453e-01, 7.466895580291748e-01, 7.466896176338196e-01, 7.466896772384644e-01, 7.466899156570435e-01, 6.394163966178894e-01, 5.113406181335449e-01, 4.54679936170578e-01, 4.489109814167023e-01, 4.615452885627747e-01, 4.752514362335206e-01, 4.869855940341948e-01, 4.941521286964417e-01, 4.96696799993515e-01, 4.974174797534943e-01, 4.976055026054382e-01, 4.976529777050018e-01, 4.976647794246674e-01, 4.97667670249939e-01, 4.976683557033539e-01, 4.976685345172882e-01, 4.976685643196106e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01] -floMac2.m_flow=[-9.955859985351562e+02, 7.832260429859161e-02, 4.703455865383148e-01, 6.23677670955658e-01, 6.908822655677795e-01, 7.211975455284119e-01, 7.350092530250549e-01, 7.413291931152344e-01, 7.442253828048706e-01, 7.455555200576782e-01, 7.461690902709961e-01, 7.464502453804016e-01, 7.465832233428955e-01, 7.466458082199097e-01, 7.466704845428467e-01, 7.466796636581421e-01, 7.466850876808167e-01, 7.466887831687927e-01, 7.466906905174255e-01, 7.466909289360046e-01, 7.466903328895569e-01, 7.466896176338196e-01, 7.466893196105957e-01, 7.466892004013062e-01, 7.466893196105957e-01, 7.466895580291748e-01, 7.466899752616882e-01, 7.466907501220703e-01, 7.466914057731628e-01, 7.466912865638733e-01, 7.466915249824524e-01, 7.466921210289001e-01, 7.466922402381897e-01, 7.466914653778076e-01, 7.466912865638733e-01, 7.466910481452942e-01, 7.466906905174255e-01, 7.466902136802673e-01, 7.466897964477539e-01, 7.4668949842453e-01, 7.466893792152405e-01, 7.466893196105957e-01, 7.466892600059509e-01, 7.466892600059509e-01, 7.466893196105957e-01, 7.466894388198853e-01, 7.4668949842453e-01, 7.466895580291748e-01, 7.466896176338196e-01, 7.466896772384644e-01, 7.466899156570435e-01, 6.394163966178894e-01, 5.113406181335449e-01, 4.54679936170578e-01, 4.489109814167023e-01, 4.615452885627747e-01, 4.752514362335206e-01, 4.869855940341948e-01, 4.941521286964417e-01, 4.96696799993515e-01, 4.974174797534943e-01, 4.976055026054382e-01, 4.976529777050018e-01, 4.976647794246674e-01, 4.97667670249939e-01, 4.976683557033539e-01, 4.976685345172882e-01, 4.976685643196106e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01] +floMac1.dp=[-2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -1.140467895507812e+03, -1.119023895263672e+02, 3.452047729492188e+02, 3.932883911132812e+02, 2.924685363769531e+02, 1.823004913330069e+02, 8.801720428466879e+01, 2.982197189331055e+01, 8.999917984008789e+00, 3.074394702911377e+00, 1.522541642189026e+00, 1.129523158073425e+00, 1.031545400619507e+00, 1.007470607757568e+00, 1.001608490943909e+00, 1.000197649002075e+00, 9.998603463172913e-01, 9.9977707862854e-01, 9.997564554214478e-01, 9.997519254684448e-01, 9.997510313987732e-01, 9.997530579566956e-01, 9.997526407241821e-01, 9.997508525848389e-01, 9.997500777244568e-01, 9.997500777244568e-01, 9.997500777244568e-01, 9.997504949569702e-01, 9.997509121894836e-01, 9.997506141662598e-01, 9.997500777244568e-01, 9.997500777244568e-01, 9.997500777244568e-01, 9.997500777244568e-01, 9.997500777244568e-01, 9.997500777244568e-01, 9.997500777244568e-01, 9.997500777244568e-01, 9.997500777244568e-01, 9.997500777244568e-01, 9.997500777244568e-01, 9.997500777244568e-01, 9.997500777244568e-01, 9.997500777244568e-01, 9.997500777244568e-01, 9.997500777244568e-01, 9.997500777244568e-01, 9.997500777244568e-01, 9.997500777244568e-01, 9.997500777244568e-01] +floMac2.dp=[-2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2e+03, -2.8595322265625e+03, -3.88809765625e+03, -4.34520458984375e+03, -4.39328857421875e+03, -4.29246875e+03, -4.182300292968749e+03, -4.088017089843751e+03, -4.029822021484375e+03, -4.009e+03, -4.003074462890625e+03, -4.0015224609375e+03, -4.001129638671875e+03, -4.001031494140625e+03, -4.001007568359375e+03, -4.001001708984375e+03, -4.001000244140625e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03, -4.000999755859375e+03] +floMac1.m_flow=[-9.955859985351562e+02, 7.698646187782288e-02, 4.694104492664337e-01, 6.230761408805847e-01, 6.905182600021362e-01, 7.209883332252502e-01, 7.348966598510742e-01, 7.412737011909485e-01, 7.441999316215515e-01, 7.455441355705261e-01, 7.461614012718201e-01, 7.464463710784912e-01, 7.465773820877075e-01, 7.466378808021545e-01, 7.466645836830139e-01, 7.466752529144287e-01, 7.466810345649719e-01, 7.46685802936554e-01, 7.466890811920166e-01, 7.466908097267151e-01, 7.466919422149658e-01, 7.466914057731628e-01, 7.46690571308136e-01, 7.466898560523987e-01, 7.466892600059509e-01, 7.466888427734375e-01, 7.466889023780823e-01, 7.466889023780823e-01, 7.466890811920166e-01, 7.466892600059509e-01, 7.466894388198853e-01, 7.466896176338196e-01, 7.466897964477539e-01, 7.466898560523987e-01, 7.466897964477539e-01, 7.466897964477539e-01, 7.466897964477539e-01, 7.466897368431091e-01, 7.466896772384644e-01, 7.466896176338196e-01, 7.466895580291748e-01, 7.466895580291748e-01, 7.4668949842453e-01, 7.4668949842453e-01, 7.466894388198853e-01, 7.466894388198853e-01, 7.466894388198853e-01, 7.466894388198853e-01, 7.466894388198853e-01, 7.466894388198853e-01, 7.466893792152405e-01, 6.397221684455872e-01, 5.117190480232239e-01, 4.548328518867493e-01, 4.488489329814911e-01, 4.61395800113678e-01, 4.751060307025911e-01, 4.868394136428832e-01, 4.940817058086395e-01, 4.966729879379272e-01, 4.97410386800766e-01, 4.976035356521606e-01, 4.976524412631989e-01, 4.976646304130554e-01, 4.976676106452942e-01, 4.976683557033539e-01, 4.976685345172882e-01, 4.976685643196106e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01] +floMac2.m_flow=[-9.955859985351562e+02, 7.698646187782288e-02, 4.694104492664337e-01, 6.230761408805847e-01, 6.905182600021362e-01, 7.209883332252502e-01, 7.348966598510742e-01, 7.412737011909485e-01, 7.441999316215515e-01, 7.455441355705261e-01, 7.461614012718201e-01, 7.464463710784912e-01, 7.465773820877075e-01, 7.466378808021545e-01, 7.466645836830139e-01, 7.466752529144287e-01, 7.466810345649719e-01, 7.46685802936554e-01, 7.466890811920166e-01, 7.466908097267151e-01, 7.466919422149658e-01, 7.466914057731628e-01, 7.46690571308136e-01, 7.466898560523987e-01, 7.466892600059509e-01, 7.466888427734375e-01, 7.466889023780823e-01, 7.466889023780823e-01, 7.466890811920166e-01, 7.466892600059509e-01, 7.466894388198853e-01, 7.466896176338196e-01, 7.466897964477539e-01, 7.466898560523987e-01, 7.466897964477539e-01, 7.466897964477539e-01, 7.466897964477539e-01, 7.466897368431091e-01, 7.466896772384644e-01, 7.466896176338196e-01, 7.466895580291748e-01, 7.466895580291748e-01, 7.4668949842453e-01, 7.4668949842453e-01, 7.466894388198853e-01, 7.466894388198853e-01, 7.466894388198853e-01, 7.466894388198853e-01, 7.466894388198853e-01, 7.466894388198853e-01, 7.466893792152405e-01, 6.397221684455872e-01, 5.117190480232239e-01, 4.548328518867493e-01, 4.488489329814911e-01, 4.61395800113678e-01, 4.751060307025911e-01, 4.868394136428832e-01, 4.940817058086395e-01, 4.966729879379272e-01, 4.97410386800766e-01, 4.976035356521606e-01, 4.976524412631989e-01, 4.976646304130554e-01, 4.976676106452942e-01, 4.976683557033539e-01, 4.976685345172882e-01, 4.976685643196106e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01, 4.97668594121933e-01] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Movers_PumpsPolynomialBased_Examples_PumpHeadControlled.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Movers_PumpsPolynomialBased_Examples_PumpHeadControlled.txt new file mode 100644 index 0000000000..d9f45a4940 --- /dev/null +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Movers_PumpsPolynomialBased_Examples_PumpHeadControlled.txt @@ -0,0 +1,18 @@ +last-generated=2021-07-20 +statistics-initialization= +{ + "nonlinear": "1", + "numerical Jacobians": "0" +} +statistics-simulation= +{ + "linear": " ", + "nonlinear": "0", + "number of continuous time states": "4", + "numerical Jacobians": "0" +} +time=[0e+00, 6e+02] +rampValvePosition.y=[5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5.249999761581421e-01, 5.50000011920929e-01, 5.74999988079071e-01, 6.000000238418579e-01, 6.25e-01, 6.499999761581421e-01, 6.75000011920929e-01, 6.999999880790712e-01, 7.250000238418579e-01, 7.5e-01, 7.749999761581421e-01, 8.00000011920929e-01, 8.24999988079071e-01, 8.50000023841858e-01, 8.75e-01, 8.999999761581421e-01, 9.25000011920929e-01, 9.49999988079071e-01, 9.750000238418579e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] +pump.pumpBus.dpMea=[3.813213109970093e+00, 2.000015497207642e+00, 1.99999988079071e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2.020731210708619e+00, 2.139513731002808e+00, 2.259513854980469e+00, 2.379513740539551e+00, 2.499513864517212e+00, 2.619513750076294e+00, 2.739513874053955e+00, 2.859513759613037e+00, 2.979513645172119e+00, 3.09951376914978e+00, 3.219513654708862e+00, 3.339513778686524e+00, 3.459513664245605e+00, 3.579513788223267e+00, 3.699513673782349e+00, 3.81951379776001e+00, 3.939513683319092e+00, 3.999957799911499e+00, 3.999999761581421e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 1.429434213787317e-02, 1.872007828751521e-07, -1.488145162653609e-08, -1.61492486050463e-09, -2.688640698966793e-10, -8.969994885754673e-11, -5.230772412434526e-11, -1.491550286059073e-11, -3.040396710438098e-12, -2.515976142702936e-12, -1.991555574967774e-12, -1.467135007232612e-12, -9.427144394974496e-13, -4.182938175521789e-13, -4.170324702972364e-14, -2.175307155271363e-14, -1.802895016912438e-15] +pump.pumpBus.dpSet=[2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2e+00, 2.039999961853028e+00, 2.160000085830688e+00, 2.279999971389771e+00, 2.400000095367432e+00, 2.519999980926514e+00, 2.640000104904175e+00, 2.759999990463257e+00, 2.880000114440918e+00, 3e+00, 3.119999885559082e+00, 3.240000009536743e+00, 3.359999895095826e+00, 3.480000019073486e+00, 3.599999904632568e+00, 3.720000028610229e+00, 3.839999914169312e+00, 3.960000038146973e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00, 4e+00] +pump.pumpBus.onSet=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Movers_PumpsPolynomialBased_Examples_PumpSpeedControlled.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Movers_PumpsPolynomialBased_Examples_PumpSpeedControlled.txt new file mode 100644 index 0000000000..b1dccfc937 --- /dev/null +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Movers_PumpsPolynomialBased_Examples_PumpSpeedControlled.txt @@ -0,0 +1,18 @@ +last-generated=2022-05-23 +statistics-initialization= +{ + "nonlinear": "1", + "numerical Jacobians": "0" +} +statistics-simulation= +{ + "linear": " ", + "nonlinear": "0", + "number of continuous time states": "4", + "numerical Jacobians": "0" +} +time=[0e+00, 6e+02] +rampValvePosition.y=[5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5.288000106811523e-01, 5.576000213623047e-01, 5.863999724388123e-01, 6.151999831199646e-01, 6.439999938011169e-01, 6.728000044822695e-01, 7.016000151634214e-01, 7.30400025844574e-01, 7.591999769210815e-01, 7.879999876022339e-01, 8.167999982833862e-01, 8.456000089645386e-01, 8.744000196456909e-01, 9.031999707221985e-01, 9.319999814033508e-01, 9.607999920845032e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01] +pumpBus.rpmMea=[1.2e+03, 1.2e+03, 1.2e+03, 1.2e+03, 1.2e+03, 1.2e+03, 1.2e+03, 1.2e+03, 1.2e+03, 1.2e+03, 1.2e+03, 1.2e+03, 1.2e+03, 1.2e+03, 1.2e+03, 1.2e+03, 1.2e+03, 1.2e+03, 1.36e+03, 1.555e+03, 1.75e+03, 1.945e+03, 2.14e+03, 2.335e+03, 2.53e+03, 2.725e+03, 2.92e+03, 3.0913173828125e+03, 3.091232666015625e+03, 3.091232421875e+03, 3.091232177734375e+03, 3.091232177734375e+03, 3.09123193359375e+03, 3.09123193359375e+03, 3.09123193359375e+03, 3.09123193359375e+03, 3.09123193359375e+03, 3.09123193359375e+03, 3.09123193359375e+03, 3.09123193359375e+03, 3.09123193359375e+03, 3.09123193359375e+03, 3.09123193359375e+03, 3.09123193359375e+03, 3.09123193359375e+03, 3.09123193359375e+03, 3.09123193359375e+03, 3.09123193359375e+03, 3.09123193359375e+03, 3.09123193359375e+03, 3.09123193359375e+03, 3.091294921875e+03, 3.091583740234375e+03, 3.09215087890625e+03, 3.09296484375e+03, 3.093956787109375e+03, 3.09505078125e+03, 3.096180908203125e+03, 3.097298828125e+03, 3.09837158203125e+03, 3.099380859375e+03, 3.100317626953125e+03, 3.101179443359375e+03, 3.101968017578125e+03, 3.102687255859375e+03, 3.10334228515625e+03, 3.103939697265625e+03, 3.104482177734375e+03, 3.104949951171875e+03, 3.105325439453125e+03, 3.105615966796875e+03, 3.10583642578125e+03, 3.106001708984375e+03, 3.106124755859375e+03, 3.106215576171875e+03, 3.106282470703125e+03, 3.106331298828125e+03, 3.1063671875e+03, 3.10639306640625e+03, 3.106411865234375e+03, 3.106425537109375e+03, 3.106435302734375e+03, 3.106442138671875e+03, 3.106447265625e+03, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +pumpBus.rpmSet=[1.1e+03, 1.1e+03, 1.1e+03, 1.1e+03, 1.1e+03, 1.1e+03, 1.1e+03, 1.1e+03, 1.1e+03, 1.1e+03, 1.1e+03, 1.1e+03, 1.1e+03, 1.1e+03, 1.1e+03, 1.1e+03, 1.1e+03, 1.165e+03, 1.36e+03, 1.555e+03, 1.75e+03, 1.945e+03, 2.14e+03, 2.335e+03, 2.53e+03, 2.725e+03, 2.92e+03, 3.115e+03, 3.310000000000001e+03, 3.505e+03, 3.7e+03, 3.895e+03, 4.09e+03, 4.285e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03, 4.35e+03] +pumpBus.onSet=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Movers_PumpsPolynomialBased_Examples_PumpSpeedControlledDpV.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Movers_PumpsPolynomialBased_Examples_PumpSpeedControlledDpV.txt new file mode 100644 index 0000000000..34bd4bf893 --- /dev/null +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Movers_PumpsPolynomialBased_Examples_PumpSpeedControlledDpV.txt @@ -0,0 +1,18 @@ +last-generated=2022-05-23 +statistics-initialization= +{ + "nonlinear": "1", + "numerical Jacobians": "0" +} +statistics-simulation= +{ + "linear": " ", + "nonlinear": "0", + "number of continuous time states": "6", + "numerical Jacobians": "0" +} +time=[0e+00, 6e+02] +rampValvePosition.y=[5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5e-01, 5.239999890327454e-01, 5.479999780654907e-01, 5.720000267028809e-01, 5.960000157356262e-01, 6.200000047683716e-01, 6.439999938011169e-01, 6.679999828338623e-01, 6.919999718666078e-01, 7.160000205039978e-01, 7.400000095367432e-01, 7.639999985694885e-01, 7.879999876022339e-01, 8.119999766349792e-01, 8.360000252723695e-01, 8.600000143051147e-01, 8.840000033378601e-01, 9.079999923706055e-01, 9.319999814033508e-01, 9.559999704360962e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01, 9.800000190734863e-01] +pump.pumpBus.rpmMea=[3.64e+03, 3.103951416015625e+03, 3.101478759765625e+03, 3.099161376953125e+03, 3.097162353515625e+03, 3.095548583984375e+03, 3.094309814453125e+03, 3.093393798828125e+03, 3.092734130859375e+03, 3.092267822265625e+03, 3.0919423828125e+03, 3.091717529296875e+03, 3.09156298828125e+03, 3.091457275390625e+03, 3.091385009765625e+03, 3.0913359375e+03, 3.091302490234375e+03, 3.09127978515625e+03, 3.091264404296875e+03, 3.09125390625e+03, 3.091246826171875e+03, 3.091294677734375e+03, 3.091532470703125e+03, 3.092005859375e+03, 3.09269287109375e+03, 3.0935400390625e+03, 3.09448681640625e+03, 3.095479736328125e+03, 3.0964765625e+03, 3.097448486328125e+03, 3.098377197265625e+03, 3.099252197265625e+03, 3.100069091796875e+03, 3.1008271484375e+03, 3.101528076171875e+03, 3.1021748046875e+03, 3.10277099609375e+03, 3.103320556640625e+03, 3.10382763671875e+03, 3.104295654296875e+03, 3.104728515625e+03, 3.1051171875e+03, 3.105439453125e+03, 3.1056943359375e+03, 3.105890625e+03, 3.10603955078125e+03, 3.106151123046875e+03, 3.106234130859375e+03, 3.10629541015625e+03, 3.106340576171875e+03, 3.10637353515625e+03, 3.106397705078125e+03, 3.1064150390625e+03, 3.106427734375e+03, 3.106436767578125e+03, 3.106443359375e+03, 3.106447998046875e+03, 3.106451416015625e+03, 3.106453857421875e+03, 3.10645556640625e+03, 3.106456787109375e+03, 3.10645751953125e+03, 3.106458251953125e+03, 3.10645849609375e+03, 3.106458984375e+03, 3.106458984375e+03, 3.106459228515625e+03, 3.106459228515625e+03, 3.10645947265625e+03, 3.10645947265625e+03, 3.10645947265625e+03, 3.10645947265625e+03, 3.10645947265625e+03, 3.10645947265625e+03, 3.10645947265625e+03, 3.10645947265625e+03, 3.10645947265625e+03, 3.10645947265625e+03, 3.10645947265625e+03, 3.10645947265625e+03, 3.10645947265625e+03, 3.10645947265625e+03, 3.10645947265625e+03, 3.10645947265625e+03, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +pump.pumpBus.rpmSet=[3.64e+03, 3.62918896484375e+03, 3.69191162109375e+03, 3.753548095703125e+03, 3.81427880859375e+03, 3.874301025390625e+03, 3.933794189453125e+03, 3.992905029296875e+03, 4.051744873046875e+03, 4.1103955078125e+03, 4.16891552734375e+03, 4.227345703125e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 4.25e+03, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +pump.pumpBus.onSet=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Movers_Validation_ControlledFlowMachine.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Movers_Validation_ControlledFlowMachine.txt index f20eefd903..968a38092a 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Movers_Validation_ControlledFlowMachine.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Movers_Validation_ControlledFlowMachine.txt @@ -1,4 +1,4 @@ -last-generated=2020-08-17 +last-generated=2022-05-23 statistics-initialization= { "nonlinear": "1, 1, 0, 1, 1", @@ -12,11 +12,11 @@ statistics-simulation= "numerical Jacobians": "0" } time=[0e+00, 6e+02] -fan1.m_flow=[0e+00, 3.504536347463727e-03, 4.243363160640001e-03, 4.399021621793509e-03, 4.431862384080887e-03, 4.43872669711709e-03, 4.440243355929852e-03, 4.44057397544384e-03, 4.440656863152981e-03, 4.440659657120705e-03, 4.440649412572384e-03, 2.393228467553854e-03, 6.901297601871192e-04, 8.963691652752459e-05, 6.81765095578154e-06, 4.601461114361882e-07, 3.084733180003241e-08, 2.763363227131801e-08, 3.173681761836633e-09, -5.502442945726216e-11, 2.271826815558597e-08, 2.046965528279543e-03, 3.628980601206422e-03, 4.204808734357357e-03, 4.377286415547132e-03, 4.424413666129112e-03, 4.436607006937265e-03, 4.439667798578739e-03, 4.440417978912592e-03, 4.440574441105127e-03, 4.440614487975836e-03, 2.393003087490797e-03, 6.901393062435091e-04, 8.967603207565844e-05, 6.779395334888183e-06, 4.567200448946096e-07, 3.143713911413215e-08, 8.346432878170162e-09, 5.624315235763788e-09, 5.836182026541792e-08, 2.011483957176097e-07, 2.046975539997209e-03, 3.628980601206422e-03, 4.204809200018644e-03, 4.37728688120842e-03, 4.424413666129112e-03, 4.436607006937265e-03, 4.439668264240026e-03, 4.440417978912592e-03, 4.44057397544384e-03, 4.440614953637123e-03, 2.393003087490797e-03, 6.901393062435091e-04, 8.967603207565844e-05, 6.779395789635601e-06, 4.567191353999078e-07, 3.143713911413156e-08, 8.34552338346813e-09, 5.624315235763788e-09, 5.836454874952324e-08, 2.01147031475557e-07, 2.046981360763311e-03, 3.628980135545135e-03, 4.204809200018644e-03, 4.37728688120842e-03, 4.424413666129112e-03, 4.436607006937265e-03, 4.439668264240026e-03, 4.440417978912592e-03, 4.44057397544384e-03, 4.440614953637123e-03, 2.393003087490797e-03, 6.901393062435091e-04, 8.967603207565844e-05, 6.779395789635601e-06, 4.567191353999078e-07, 3.143713911413215e-08, 8.346432878170162e-09, 5.623860488412902e-09, 5.836318450747058e-08, 2.011483957176097e-07, 2.046980662271401e-03, 3.628980135545125e-03, 4.204809200018644e-03, 4.37728688120842e-03, 4.424413666129112e-03, 4.436607006937265e-03, 4.439668264240026e-03, 4.440417978912592e-03, 4.44057397544384e-03, 4.440614953637123e-03, 2.393003087490797e-03, 6.901393062435091e-04, 8.967603207565844e-05, 6.77939533488825e-06, 4.567200448946096e-07, 3.143713911413215e-08, 8.34552338346839e-09, 5.623860488412902e-09, 5.836409400217235e-08, 2.011483957176097e-07] -fan2.m_flow=[0e+00, 3.504383144900203e-03, 4.24333056434989e-03, 4.399015102535486e-03, 4.431860521435738e-03, 4.43872669711709e-03, 4.440243355929852e-03, 4.44057397544384e-03, 4.440656863152981e-03, 4.440659657120705e-03, 4.440649412572384e-03, 2.393466886132956e-03, 6.902466411702335e-04, 8.965840243035927e-05, 6.821021088398959e-06, 4.603011802828405e-07, 3.085642674705014e-08, 2.761180439847546e-08, 3.178229235345498e-09, -3.228706191293895e-11, 2.280285116285086e-08, 2.04671430401504e-03, 3.628880018368363e-03, 4.20477706938982e-03, 4.377277567982674e-03, 4.424411337822676e-03, 4.436606075614691e-03, 4.439667798578739e-03, 4.440417978912592e-03, 4.440574441105127e-03, 4.440614487975836e-03, 2.393241273239255e-03, 6.902539753355086e-04, 8.969890041043982e-05, 6.781577667425087e-06, 4.567928044707514e-07, 3.144577931379899e-08, 8.3518898463808e-09, 5.558831617236137e-09, 5.784295353805646e-08, 2.010760908888187e-07, 2.046724315732706e-03, 3.628880018368363e-03, 4.204777535051107e-03, 4.377277567982674e-03, 4.424411337822676e-03, 4.436606075614691e-03, 4.439667798578739e-03, 4.440417978912592e-03, 4.440574441105127e-03, 4.440614487975836e-03, 2.393241273239255e-03, 6.902539753355086e-04, 8.969890041043982e-05, 6.781578576919856e-06, 4.567928044707514e-07, 3.144532456644751e-08, 8.351435099029654e-09, 5.558831617236137e-09, 5.784295353805646e-08, 2.010760908888187e-07, 2.046730136498809e-03, 3.628879552707076e-03, 4.204777535051107e-03, 4.377278033643961e-03, 4.424411337822676e-03, 4.436606075614691e-03, 4.439667798578739e-03, 4.440417978912592e-03, 4.44057397544384e-03, 4.440614953637123e-03, 2.393241506069899e-03, 6.902539753355086e-04, 8.969890041043982e-05, 6.781577667425154e-06, 4.567928044707514e-07, 3.144577931379899e-08, 8.351435099029914e-09, 5.558831617236137e-09, 5.784340828540735e-08, 2.010760908888187e-07, 2.046729438006898e-03, 3.62887978553771e-03, 4.204777535051107e-03, 4.377277567982674e-03, 4.424411337822676e-03, 4.436606075614691e-03, 4.439667798578739e-03, 4.440417978912592e-03, 4.44057397544384e-03, 4.440614953637123e-03, 2.393241506069899e-03, 6.902539753355086e-04, 8.969890041043982e-05, 6.781578576919856e-06, 4.567923497234005e-07, 3.144532456644811e-08, 8.350980351679027e-09, 5.558831617236137e-09, 5.784431778010912e-08, 2.010760908888187e-07] -fan3.m_flow=[0e+00, 3.504383144900203e-03, 4.24333056434989e-03, 4.399015102535486e-03, 4.431860521435738e-03, 4.43872669711709e-03, 4.440243355929852e-03, 4.44057397544384e-03, 4.440656863152981e-03, 4.440659657120705e-03, 4.440649412572384e-03, 2.393466886132956e-03, 6.902466411702335e-04, 8.965840243035927e-05, 6.821021088398959e-06, 4.603011802828405e-07, 3.085642674705014e-08, 2.761134965112457e-08, 3.178229235345498e-09, -3.228706191293895e-11, 2.280330591020174e-08, 2.04671430401504e-03, 3.628880018368363e-03, 4.20477706938982e-03, 4.377277567982674e-03, 4.424411337822676e-03, 4.436606075614691e-03, 4.439667798578739e-03, 4.440417978912592e-03, 4.440574441105127e-03, 4.440614487975836e-03, 2.393241273239255e-03, 6.902539753355086e-04, 8.969890041043982e-05, 6.781577667425087e-06, 4.567928044707514e-07, 3.144577931379899e-08, 8.351435099029914e-09, 5.558831617236137e-09, 5.784477252746001e-08, 2.010760908888187e-07, 2.046724315732706e-03, 3.628880018368363e-03, 4.204777535051107e-03, 4.377277567982674e-03, 4.424411337822676e-03, 4.436606075614691e-03, 4.439667798578739e-03, 4.440417978912592e-03, 4.440574441105127e-03, 4.440614487975836e-03, 2.393241273239255e-03, 6.902539753355086e-04, 8.969890041043982e-05, 6.781578122172505e-06, 4.567923497234005e-07, 3.144532456644751e-08, 8.351435099029654e-09, 5.558831617236137e-09, 5.784113454865292e-08, 2.010760908888187e-07, 2.046730136498809e-03, 3.628879552707076e-03, 4.204777535051107e-03, 4.377278033643961e-03, 4.424411337822676e-03, 4.436606075614691e-03, 4.439667798578739e-03, 4.440417978912592e-03, 4.44057397544384e-03, 4.440614953637123e-03, 2.393241506069899e-03, 6.902539753355086e-04, 8.969890041043982e-05, 6.781578122172505e-06, 4.567923497234005e-07, 3.144532456644811e-08, 8.351435099029914e-09, 5.558831617236137e-09, 5.784295353805646e-08, 2.010760908888187e-07, 2.046729438006898e-03, 3.62887978553771e-03, 4.204777535051107e-03, 4.377277567982674e-03, 4.424411337822676e-03, 4.436606075614691e-03, 4.439667798578739e-03, 4.440417978912592e-03, 4.44057397544384e-03, 4.440614953637123e-03, 2.393241506069899e-03, 6.902539753355086e-04, 8.969890041043982e-05, 6.781577667425154e-06, 4.567932592181023e-07, 3.144532456644811e-08, 8.351435099029914e-09, 5.558831617236137e-09, 5.784295353805646e-08, 2.010760908888187e-07] -fan4.m_flow=[0e+00, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 0e+00, 0e+00, 0e+00, -1.077060828369086e-26, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 4.547473508864641e-13, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 0e+00, -9.094947017729282e-13, 0e+00, 4.547473508864534e-13, 0e+00, 0e+00, 0e+00, 0e+00, 4.547473508864641e-13, 0e+00, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 0e+00, 4.547473508864641e-13, 0e+00, 0e+00, 0e+00, 0e+00, 4.547473508864426e-13, 0e+00, 0e+00, 0e+00, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 0e+00, -9.094947017729282e-13, 0e+00, -9.094947017729282e-13, 4.547473508864641e-13, 0e+00, 0e+00, 0e+00, 1.818989403545856e-12, 0e+00, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 0e+00, -9.094947017729282e-13, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -9.094947017729282e-13, 1.364242052659392e-12] -fan1.dp=[0e+00, -1.705822265625e+04, -2.5008474609375e+04, -2.687707421875e+04, -2.72798671875e+04, -2.736444140625e+04, -2.738314453125e+04, -2.738721875e+04, -2.738824609375e+04, -2.7388275390625e+04, -2.7388154296875e+04, -7.954994140625e+03, -1.26612646484375e+03, -1.594367065429688e+02, -1.201969623565668e+01, -7.922856211662292e-01, -4.887661337852478e-02, -2.924963366240248e-03, -1.713335368549451e-04, -1.300781150348485e-05, -1.366614014841616e-06, -5.82040478515625e+03, -1.829101171875e+04, -2.45563203125e+04, -2.661213671875e+04, -2.718824609375e+04, -2.733830859375e+04, -2.7376046875e+04, -2.7385298828125e+04, -2.73872265625e+04, -2.738772265625e+04, -7.95349462890625e+03, -1.266106201171875e+03, -1.594530334472656e+02, -1.201654243469226e+01, -7.919855713844299e-01, -4.88739050924778e-02, -2.928508911281824e-03, -1.70268802321516e-04, -1.651767524890602e-05, -4.178247763775289e-06, -5.820428222656194e+03, -1.8291021484375e+04, -2.455632421875e+04, -2.6612138671875e+04, -2.7188248046875e+04, -2.733830859375e+04, -2.7376048828125e+04, -2.7385298828125e+04, -2.7387224609375e+04, -2.7387724609375e+04, -7.95349462890625e+03, -1.266106201171875e+03, -1.594530334472656e+02, -1.201654243469238e+01, -7.919855713844299e-01, -4.88739088177671e-02, -2.928508911281928e-03, -1.70268802321516e-04, -1.651767524890602e-05, -4.178247763775289e-06, -5.82042724609375e+03, -1.829101953125e+04, -2.455632421875e+04, -2.6612138671875e+04, -2.7188248046875e+04, -2.733830859375e+04, -2.7376048828125e+04, -2.7385298828125e+04, -2.7387224609375e+04, -2.7387724609375e+04, -7.9534951171875e+03, -1.266106201171875e+03, -1.594530334472656e+02, -1.201654243469238e+01, -7.919855713844299e-01, -4.88739088177681e-02, -2.928508911281824e-03, -1.70268802321516e-04, -1.651767524890602e-05, -4.178247763775289e-06, -5.820427246093877e+03, -1.82910195312499e+04, -2.455632421875e+04, -2.6612138671875e+04, -2.7188248046875e+04, -2.733830859375e+04, -2.7376048828125e+04, -2.7385298828125e+04, -2.7387224609375e+04, -2.7387724609375e+04, -7.9534951171875e+03, -1.266106201171875e+03, -1.594530334472656e+02, -1.201654243469238e+01, -7.919855713844299e-01, -4.88739088177681e-02, -2.928508911281824e-03, -1.70268802321516e-04, -1.651767524890602e-05, -4.178247763775289e-06] -fan2.dp=[0e+00, -1.705822265625e+04, -2.5008474609375e+04, -2.687707421875e+04, -2.72798671875e+04, -2.736444140625e+04, -2.738314453125e+04, -2.738721875e+04, -2.738824609375e+04, -2.7388275390625e+04, -2.7388154296875e+04, -7.954994140625e+03, -8.325730590820312e+02, -8.445372009277344e+01, -6.338775634765594e+00, -4.178138971328735e-01, -2.577524445950985e-02, -1.542878337204449e-03, -9.039981523528695e-05, -6.859481800347567e-06, -1.066990080289543e-06, -5.82040478515625e+03, -1.829101171875e+04, -2.45563203125e+04, -2.661213671875e+04, -2.718824609375e+04, -2.733830859375e+04, -2.7376046875e+04, -2.7385298828125e+04, -2.73872265625e+04, -2.738772265625e+04, -7.95349462890625e+03, -8.325551147460938e+02, -8.446244049072266e+01, -6.337111473083434e+00, -4.176555871963501e-01, -2.577382512390614e-02, -1.544457278214395e-03, -8.987316687125713e-05, -9.576615411788225e-06, -5.243418854661286e-06, -5.820428222656193e+03, -1.8291021484375e+04, -2.455632421875e+04, -2.6612138671875e+04, -2.7188248046875e+04, -2.733830859375e+04, -2.7376048828125e+04, -2.7385298828125e+04, -2.7387224609375e+04, -2.7387724609375e+04, -7.95349462890625e+03, -8.3255517578125e+02, -8.446244812011719e+01, -6.337111473083496e+00, -4.176556169986725e-01, -2.577382512390561e-02, -1.54445727821445e-03, -8.98731523193419e-05, -9.57657175604254e-06, -5.243447958491743e-06, -5.82042724609375e+03, -1.829101953125e+04, -2.455632421875e+04, -2.6612138671875e+04, -2.7188248046875e+04, -2.733830859375e+04, -2.7376048828125e+04, -2.7385298828125e+04, -2.7387224609375e+04, -2.7387724609375e+04, -7.9534951171875e+03, -8.3255517578125e+02, -8.446244812011719e+01, -6.337111473083496e+00, -4.176556169986725e-01, -2.577382512390614e-02, -1.544457278214395e-03, -8.987316687125713e-05, -9.576600859872997e-06, -5.243433406576514e-06, -5.820427246093877e+03, -1.82910195312499e+04, -2.455632421875e+04, -2.6612138671875e+04, -2.7188248046875e+04, -2.733830859375e+04, -2.7376048828125e+04, -2.7385298828125e+04, -2.7387224609375e+04, -2.7387724609375e+04, -7.9534951171875e+03, -8.3255517578125e+02, -8.446244812011719e+01, -6.337111473083496e+00, -4.176556169986725e-01, -2.577382512390614e-02, -1.544457278214395e-03, -8.987316687125713e-05, -9.576615411788225e-06, -5.243433406576514e-06] -fan3.dp=[0e+00, -1.705822265625e+04, -2.5008474609375e+04, -2.687707421875e+04, -2.72798671875e+04, -2.736444140625e+04, -2.738314453125e+04, -2.738721875e+04, -2.738824609375e+04, -2.7388275390625e+04, -2.7388154296875e+04, -7.954994140625e+03, -1.26612646484375e+03, -1.594367065429688e+02, -1.201969623565668e+01, -7.922856211662292e-01, -4.887661337852478e-02, -2.924963366240248e-03, -1.713335368549451e-04, -1.300781150348485e-05, -1.366614014841616e-06, -5.82040478515625e+03, -1.829101171875e+04, -2.45563203125e+04, -2.661213671875e+04, -2.718824609375e+04, -2.733830859375e+04, -2.7376046875e+04, -2.7385298828125e+04, -2.73872265625e+04, -2.738772265625e+04, -7.95349462890625e+03, -1.266106201171875e+03, -1.594530334472656e+02, -1.201654243469226e+01, -7.919855713844299e-01, -4.88739050924778e-02, -2.928508911281824e-03, -1.70268802321516e-04, -1.651767524890602e-05, -4.178247763775289e-06, -5.820428222656194e+03, -1.8291021484375e+04, -2.455632421875e+04, -2.6612138671875e+04, -2.7188248046875e+04, -2.733830859375e+04, -2.7376048828125e+04, -2.7385298828125e+04, -2.7387224609375e+04, -2.7387724609375e+04, -7.95349462890625e+03, -1.266106201171875e+03, -1.594530334472656e+02, -1.201654243469238e+01, -7.919855713844299e-01, -4.88739088177671e-02, -2.928508911281928e-03, -1.70268802321516e-04, -1.651767524890602e-05, -4.178247763775289e-06, -5.82042724609375e+03, -1.829101953125e+04, -2.455632421875e+04, -2.6612138671875e+04, -2.7188248046875e+04, -2.733830859375e+04, -2.7376048828125e+04, -2.7385298828125e+04, -2.7387224609375e+04, -2.7387724609375e+04, -7.9534951171875e+03, -1.266106201171875e+03, -1.594530334472656e+02, -1.201654243469238e+01, -7.919855713844299e-01, -4.88739088177681e-02, -2.928508911281824e-03, -1.70268802321516e-04, -1.651767524890602e-05, -4.178247763775289e-06, -5.820427246093877e+03, -1.82910195312499e+04, -2.455632421875e+04, -2.6612138671875e+04, -2.7188248046875e+04, -2.733830859375e+04, -2.7376048828125e+04, -2.7385298828125e+04, -2.7387224609375e+04, -2.7387724609375e+04, -7.9534951171875e+03, -1.266106201171875e+03, -1.594530334472656e+02, -1.201654243469238e+01, -7.919855713844299e-01, -4.88739088177681e-02, -2.928508911281824e-03, -1.70268802321516e-04, -1.651767524890602e-05, -4.178247763775289e-06] +fan1.m_flow=[0e+00, 3.501554718241096e-03, 4.24210075289011e-03, 4.398650955408812e-03, 4.431774839758873e-03, 4.438804462552071e-03, 4.440273623913527e-03, 4.440587013959885e-03, 4.44067595526576e-03, 4.440652672201395e-03, 4.440652672201395e-03, 2.397827338427305e-03, 6.946366629563272e-04, 9.096522990148515e-05, 6.965171451156459e-06, 4.735684342449531e-07, 3.211198418284766e-08, 2.439173840684844e-08, 3.014065441675484e-09, -1.346052158623934e-10, 2.678780219866894e-08, 2.042373875156045e-03, 3.625104203820229e-03, 4.202964249998331e-03, 4.376594442874193e-03, 4.424185026437044e-03, 4.436537623405457e-03, 4.439647775143385e-03, 4.440412390977144e-03, 4.440573509782553e-03, 4.440613556653261e-03, 2.397601725533605e-03, 6.946418434381485e-04, 9.100652096094564e-05, 6.934275461389848e-06, 4.693797563959379e-07, 3.242530510760844e-08, 8.574716048315167e-09, 5.600668373517692e-09, 5.617994247586466e-08, 1.968587639566977e-07, 2.042373176664103e-03, 3.625105135142803e-03, 4.202964715659618e-03, 4.376594442874193e-03, 4.424185026437044e-03, 4.436537623405457e-03, 4.439647775143385e-03, 4.440412390977144e-03, 4.440573509782553e-03, 4.440613556653261e-03, 2.397601725533605e-03, 6.946418434381485e-04, 9.100652096094564e-05, 6.934274097147863e-06, 4.693802111432888e-07, 3.242530510760782e-08, 8.574261300964015e-09, 5.600668373517692e-09, 5.618267095996998e-08, 1.968601281987503e-07, 2.042372245341539e-03, 3.625105367973447e-03, 4.202964715659618e-03, 4.376594442874193e-03, 4.424185026437044e-03, 4.436537623405457e-03, 4.439647775143385e-03, 4.440412390977144e-03, 4.440573509782553e-03, 4.440613556653261e-03, 2.397601725533605e-03, 6.946418434381485e-04, 9.100652096094564e-05, 6.934275916137267e-06, 4.693811206379905e-07, 3.242530510760844e-08, 8.57562554301694e-09, 5.600668373517692e-09, 5.618130671791732e-08, 1.968583092093468e-07, 2.042379230260869e-03, 3.625104669481506e-03, 4.202964715659618e-03, 4.376594442874193e-03, 4.424185492098331e-03, 4.436537623405457e-03, 4.439647775143385e-03, 4.440412390977144e-03, 4.440573044121265e-03, 4.440614022314548e-03, 2.397601725533605e-03, 6.946418434381485e-04, 9.100651368498802e-05, 6.934275916137267e-06, 4.693797563959379e-07, 3.242530510760844e-08, 8.574716048315167e-09, 5.599758878815919e-09, 5.617721399175934e-08, 1.968596734513994e-07] +fan2.m_flow=[0e+00, 3.501401515677571e-03, 4.242068622261286e-03, 4.398644436150789e-03, 4.431773442775011e-03, 4.438804462552071e-03, 4.440273623913527e-03, 4.440587013959885e-03, 4.44067595526576e-03, 4.440652672201395e-03, 4.440652672201395e-03, 2.398065524175763e-03, 6.94753834977746e-04, 9.098674490815029e-05, 6.968459729250719e-06, 4.737253220810089e-07, 3.212153387721628e-08, 2.437400326016387e-08, 3.020886651938781e-09, -1.095941115636379e-10, 2.686601874302141e-08, 2.04212311655283e-03, 3.62500362098217e-03, 4.202932585030794e-03, 4.376585595309734e-03, 4.424182698130608e-03, 4.436536692082882e-03, 4.439647775143385e-03, 4.440412390977144e-03, 4.440573509782553e-03, 4.440613556653261e-03, 2.397839911282063e-03, 6.947556976228952e-04, 9.102960029849783e-05, 6.936556019354544e-06, 4.694561539508868e-07, 3.243440005462617e-08, 8.579718269174919e-09, 5.536548997042701e-09, 5.568062988459133e-08, 1.967900971067138e-07, 2.042122418060888e-03, 3.625004552304745e-03, 4.202932585030794e-03, 4.376585595309734e-03, 4.424182698130608e-03, 4.436536692082882e-03, 4.439647775143385e-03, 4.440412390977144e-03, 4.440573509782553e-03, 4.440613556653261e-03, 2.397839911282063e-03, 6.947556976228952e-04, 9.102959302254021e-05, 6.936553745617857e-06, 4.694561539508868e-07, 3.243440005462555e-08, 8.579263521823766e-09, 5.537003744393587e-09, 5.568381311604753e-08, 1.967905518540647e-07, 2.042121253907681e-03, 3.625004552304745e-03, 4.202932585030794e-03, 4.376585595309734e-03, 4.424182698130608e-03, 4.436536692082882e-03, 4.439647775143385e-03, 4.440412390977144e-03, 4.440573509782553e-03, 4.440613556653261e-03, 2.397839911282063e-03, 6.947556976228952e-04, 9.102960029849783e-05, 6.936556474101963e-06, 4.694566086982377e-07, 3.243485480197705e-08, 8.579718269174919e-09, 5.537003744393587e-09, 5.568517735810019e-08, 1.967900971067138e-07, 2.042128238827011e-03, 3.625003853812804e-03, 4.202932585030794e-03, 4.376585595309734e-03, 4.424182698130608e-03, 4.436536692082882e-03, 4.439647775143385e-03, 4.440412390977144e-03, 4.440573509782553e-03, 4.440614022314548e-03, 2.397839911282063e-03, 6.947556976228952e-04, 9.102960029849783e-05, 6.936556928849313e-06, 4.694556992035359e-07, 3.243485480197705e-08, 8.580173016525805e-09, 5.536548997042701e-09, 5.568199412664399e-08, 1.967900971067138e-07] +fan3.m_flow=[0e+00, 3.501401515677571e-03, 4.242068622261286e-03, 4.398644436150789e-03, 4.431773442775011e-03, 4.438804462552071e-03, 4.440273623913527e-03, 4.440587013959885e-03, 4.44067595526576e-03, 4.440652672201395e-03, 4.440652672201395e-03, 2.398065524175763e-03, 6.94753834977746e-04, 9.098674490815029e-05, 6.968459729250719e-06, 4.737262315757107e-07, 3.212198862456717e-08, 2.437491275486564e-08, 3.020886651938781e-09, -1.095941115636379e-10, 2.68664734903723e-08, 2.04212311655283e-03, 3.62500362098217e-03, 4.202932585030794e-03, 4.376585595309734e-03, 4.424182698130608e-03, 4.436536692082882e-03, 4.439647775143385e-03, 4.440412390977144e-03, 4.440573509782553e-03, 4.440613556653261e-03, 2.397839911282063e-03, 6.947556394152343e-04, 9.102959302254021e-05, 6.936556474101895e-06, 4.694566086982377e-07, 3.243485480197705e-08, 8.580173016525805e-09, 5.537003744393587e-09, 5.568426786339842e-08, 1.967896423593629e-07, 2.042122418060888e-03, 3.625004552304745e-03, 4.202932585030794e-03, 4.376585595309734e-03, 4.424182698130608e-03, 4.436536692082882e-03, 4.439647775143385e-03, 4.440412390977144e-03, 4.440573509782553e-03, 4.440613556653261e-03, 2.397839911282063e-03, 6.947556394152343e-04, 9.102960029849783e-05, 6.93655510985991e-06, 4.694566086982377e-07, 3.243440005462555e-08, 8.579263521823766e-09, 5.536548997042701e-09, 5.56815393792931e-08, 1.967905518540647e-07, 2.042121253907681e-03, 3.625004552304745e-03, 4.202932585030794e-03, 4.376585595309734e-03, 4.424182698130608e-03, 4.436536692082882e-03, 4.439647775143385e-03, 4.440412390977144e-03, 4.440573509782553e-03, 4.440613556653261e-03, 2.397839911282063e-03, 6.947556394152343e-04, 9.102960029849783e-05, 6.936556928849313e-06, 4.694561539508868e-07, 3.243485480197705e-08, 8.579718269174919e-09, 5.536548997042701e-09, 5.568062988459133e-08, 1.967896423593629e-07, 2.042128238827011e-03, 3.625003853812804e-03, 4.202932585030794e-03, 4.376585595309734e-03, 4.424182698130608e-03, 4.436536692082882e-03, 4.439647775143385e-03, 4.440412390977144e-03, 4.440573044121265e-03, 4.440614022314548e-03, 2.397839911282063e-03, 6.947556976228952e-04, 9.102960029849783e-05, 6.936556019354612e-06, 4.694556992035359e-07, 3.243485480197705e-08, 8.580627763876691e-09, 5.536548997042701e-09, 5.568062988459133e-08, 1.96789187612012e-07] +fan4.m_flow=[0e+00, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 0e+00, 0e+00, -9.094947017729282e-13, 4.547473508864587e-13, 0e+00, 4.547473508864641e-13, 0e+00, -9.094947017729282e-13, 0e+00, -9.094947017729282e-13, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 0e+00, -9.094947017729282e-13, 0e+00, 0e+00, 0e+00, 0e+00, -9.094947017729282e-13, 0e+00, -9.094947017729282e-13, 0e+00, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 0e+00, 1.364242052659392e-12, 0e+00, 0e+00, -9.094947017729282e-13, 0e+00, 0e+00, 0e+00, 1.818989403545856e-12, 0e+00, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 0e+00, 0e+00, 4.547473508864641e-13, -9.094947017729282e-13, -9.094947017729282e-13, 4.547473508864641e-13, 4.547473508864641e-13, 0e+00, 4.547473508864641e-13, 0e+00, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 4.440655466169119e-03, 0e+00, -9.094947017729282e-13, 0e+00, -9.094947017729282e-13, 0e+00, 0e+00, -9.094947017729282e-13, 0e+00, 1.364242052659392e-12, 0e+00] +fan1.dp=[0e+00, -1.703012109375e+04, -2.4994837890625e+04, -2.6873333984375e+04, -2.727879296875e+04, -2.7365400390625e+04, -2.738351953125e+04, -2.7387380859375e+04, -2.738848046875e+04, -2.738819140625e+04, -2.738819140625e+04, -7.98559619140625e+03, -1.274951049804688e+03, -1.618009185791016e+02, -1.228352355957025e+01, -8.147192597389221e-01, -5.057528614997864e-02, -3.044552169740184e-03, -1.794220152078196e-04, -1.349870581179857e-05, -1.448250259272754e-06, -5.7942861328125e+03, -1.8251892578125e+04, -2.453478515625e+04, -2.660372265625e+04, -2.7185439453125e+04, -2.7337455078125e+04, -2.737580078125e+04, -2.738523046875e+04, -2.7387212890625e+04, -2.7387712890625e+04, -7.98409326171875e+03, -1.274929321289062e+03, -1.618170166015625e+02, -1.228036117553699e+01, -8.144035935401917e-01, -5.057092010974884e-02, -3.048124024644494e-03, -1.782525796443224e-04, -1.708815398160368e-05, -4.110319423489273e-06, -5.794309082031195e+03, -1.8251904296875e+04, -2.4534787109375e+04, -2.6603724609375e+04, -2.7185439453125e+04, -2.7337455078125e+04, -2.737580078125e+04, -2.738523046875e+04, -2.7387212890625e+04, -2.7387712890625e+04, -7.98409326171875e+03, -1.274929321289062e+03, -1.618170166015625e+02, -1.228036117553711e+01, -8.144035935401917e-01, -5.057092010974781e-02, -3.048123791813959e-03, -1.782526087481529e-04, -1.708813942968845e-05, -4.110363079234958e-06, -5.7943095703125e+03, -1.8251904296875e+04, -2.4534787109375e+04, -2.6603724609375e+04, -2.7185439453125e+04, -2.7337455078125e+04, -2.737580078125e+04, -2.738523046875e+04, -2.738721484375e+04, -2.73877109375e+04, -7.98409326171875e+03, -1.274929321289062e+03, -1.618170166015625e+02, -1.228036117553711e+01, -8.144035935401917e-01, -5.057092010974884e-02, -3.048124024644494e-03, -1.782525796443224e-04, -1.708815398160368e-05, -4.110319423489273e-06, -5.794308593750126e+03, -1.82519023437499e+04, -2.4534787109375e+04, -2.6603724609375e+04, -2.718544140625e+04, -2.7337455078125e+04, -2.737580078125e+04, -2.738523046875e+04, -2.7387212890625e+04, -2.7387712890625e+04, -7.98409326171875e+03, -1.274929321289062e+03, -1.618170166015625e+02, -1.228036117553711e+01, -8.144035935401917e-01, -5.057092010974884e-02, -3.048124024644494e-03, -1.782525796443224e-04, -1.708815398160368e-05, -4.110319423489273e-06] +fan2.dp=[0e+00, -1.703012109375e+04, -2.4994837890625e+04, -2.6873333984375e+04, -2.727879296875e+04, -2.7365400390625e+04, -2.738351953125e+04, -2.7387380859375e+04, -2.738848046875e+04, -2.738819140625e+04, -2.738819140625e+04, -7.98559619140625e+03, -8.403944702148438e+02, -8.571736907958984e+01, -6.477916240692107e+00, -4.296443462371826e-01, -2.667104639112949e-02, -1.605893950909368e-03, -9.466288611292839e-05, -7.1172253228724e-06, -1.171400072053075e-06, -5.7942861328125e+03, -1.8251892578125e+04, -2.453478515625e+04, -2.660372265625e+04, -2.7185439453125e+04, -2.7337455078125e+04, -2.737580078125e+04, -2.738523046875e+04, -2.7387212890625e+04, -2.7387712890625e+04, -7.98409326171875e+03, -8.403751831054688e+02, -8.572597503662109e+01, -6.47624826431268e+00, -4.294778108596802e-01, -2.666874974966049e-02, -1.607538899406791e-03, -9.408303594682366e-05, -9.845069143921137e-06, -5.142836016602814e-06, -5.794309082031193e+03, -1.8251904296875e+04, -2.4534787109375e+04, -2.6603724609375e+04, -2.7185439453125e+04, -2.7337455078125e+04, -2.737580078125e+04, -2.738523046875e+04, -2.7387212890625e+04, -2.7387712890625e+04, -7.98409326171875e+03, -8.403751831054688e+02, -8.572597503662109e+01, -6.476248264312744e+00, -4.294778108596802e-01, -2.666874974965995e-02, -1.607538899406848e-03, -9.408307960256934e-05, -9.84512735158205e-06, -5.142850568518043e-06, -5.7943095703125e+03, -1.8251904296875e+04, -2.4534787109375e+04, -2.6603724609375e+04, -2.7185439453125e+04, -2.7337455078125e+04, -2.737580078125e+04, -2.738523046875e+04, -2.738721484375e+04, -2.73877109375e+04, -7.98409326171875e+03, -8.403751220703125e+02, -8.572597503662109e+01, -6.476248264312744e+00, -4.294778108596802e-01, -2.666874974966049e-02, -1.607538899406791e-03, -9.408305049873888e-05, -9.845200111158192e-06, -5.142850568518043e-06, -5.794308593750126e+03, -1.82519023437499e+04, -2.4534787109375e+04, -2.6603724609375e+04, -2.718544140625e+04, -2.7337455078125e+04, -2.737580078125e+04, -2.738523046875e+04, -2.7387212890625e+04, -2.7387712890625e+04, -7.98409326171875e+03, -8.403751831054688e+02, -8.572597503662109e+01, -6.476248264312744e+00, -4.294778108596802e-01, -2.666874974966049e-02, -1.607539015822113e-03, -9.408306505065411e-05, -9.845171007327735e-06, -5.142821464687586e-06] +fan3.dp=[0e+00, -1.703012109375e+04, -2.4994837890625e+04, -2.6873333984375e+04, -2.727879296875e+04, -2.7365400390625e+04, -2.738351953125e+04, -2.7387380859375e+04, -2.738848046875e+04, -2.738819140625e+04, -2.738819140625e+04, -7.98559619140625e+03, -1.274951049804688e+03, -1.618009185791016e+02, -1.228352355957025e+01, -8.147192597389221e-01, -5.057528614997864e-02, -3.044552169740184e-03, -1.794220152078196e-04, -1.349870581179857e-05, -1.448250259272754e-06, -5.7942861328125e+03, -1.8251892578125e+04, -2.453478515625e+04, -2.660372265625e+04, -2.7185439453125e+04, -2.7337455078125e+04, -2.737580078125e+04, -2.738523046875e+04, -2.7387212890625e+04, -2.7387712890625e+04, -7.98409326171875e+03, -1.274929321289062e+03, -1.618170166015625e+02, -1.228036117553699e+01, -8.144035935401917e-01, -5.057092010974884e-02, -3.048124024644494e-03, -1.782525796443224e-04, -1.708815398160368e-05, -4.110319423489273e-06, -5.794309082031195e+03, -1.8251904296875e+04, -2.4534787109375e+04, -2.6603724609375e+04, -2.7185439453125e+04, -2.7337455078125e+04, -2.737580078125e+04, -2.738523046875e+04, -2.7387212890625e+04, -2.7387712890625e+04, -7.98409326171875e+03, -1.274929321289062e+03, -1.618170166015625e+02, -1.228036117553711e+01, -8.144035935401917e-01, -5.057092010974781e-02, -3.048123791813959e-03, -1.782526087481529e-04, -1.708813942968845e-05, -4.110363079234958e-06, -5.7943095703125e+03, -1.8251904296875e+04, -2.4534787109375e+04, -2.6603724609375e+04, -2.7185439453125e+04, -2.7337455078125e+04, -2.737580078125e+04, -2.738523046875e+04, -2.738721484375e+04, -2.73877109375e+04, -7.98409326171875e+03, -1.274929321289062e+03, -1.618170166015625e+02, -1.228036117553711e+01, -8.144035935401917e-01, -5.057092010974884e-02, -3.048124024644494e-03, -1.782525796443224e-04, -1.708815398160368e-05, -4.110319423489273e-06, -5.794308593750126e+03, -1.82519023437499e+04, -2.4534787109375e+04, -2.6603724609375e+04, -2.718544140625e+04, -2.7337455078125e+04, -2.737580078125e+04, -2.738523046875e+04, -2.7387212890625e+04, -2.7387712890625e+04, -7.98409326171875e+03, -1.274929321289062e+03, -1.618170166015625e+02, -1.228036117553711e+01, -8.144035935401917e-01, -5.057092010974884e-02, -3.048124024644494e-03, -1.782525796443224e-04, -1.708815398160368e-05, -4.110319423489273e-06] fan4.dp=[-2.7388189453125e+04, -2.73882265625e+04, -2.73882265625e+04, -2.73882265625e+04, -2.73882265625e+04, -2.73882265625e+04, -2.73882265625e+04, -2.73882265625e+04, -2.73882265625e+04, -2.73882265625e+04, -2.73882265625e+04, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -2.73882265625e+04, -2.73882265625e+04, -2.73882265625e+04, -2.73882265625e+04, -2.73882265625e+04, -2.73882265625e+04, -2.73882265625e+04, -2.73882265625e+04, -2.73882265625e+04, -2.73882265625e+04, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -2.73882265625e+04, -2.73882265625e+04, -2.73882265625e+04, -2.73882265625e+04, -2.73882265625e+04, -2.73882265625e+04, -2.73882265625e+04, -2.73882265625e+04, -2.73882265625e+04, -2.73882265625e+04, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -2.73882265625e+04, -2.73882265625e+04, -2.73882265625e+04, -2.73882265625e+04, -2.73882265625e+04, -2.73882265625e+04, -2.73882265625e+04, -2.73882265625e+04, -2.73882265625e+04, -2.73882265625e+04, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -2.73882265625e+04, -2.73882265625e+04, -2.73882265625e+04, -2.73882265625e+04, -2.73882265625e+04, -2.73882265625e+04, -2.73882265625e+04, -2.73882265625e+04, -2.73882265625e+04, -2.73882265625e+04, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Movers_Validation_ControlledFlowMachineDynamic.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Movers_Validation_ControlledFlowMachineDynamic.txt index 99e6411696..9ca385e37c 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Movers_Validation_ControlledFlowMachineDynamic.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Movers_Validation_ControlledFlowMachineDynamic.txt @@ -1,4 +1,4 @@ -last-generated=2021-05-19 +last-generated=2022-07-06 statistics-initialization= { "nonlinear": "1, 1, 0, 1, 1", @@ -12,11 +12,11 @@ statistics-simulation= "numerical Jacobians": "0" } time=[0e+00, 6e+02] -fan1.m_flow=[0e+00, 3.504561027511954e-03, 4.243341740220785e-03, 4.399062599986792e-03, 4.431885201483965e-03, 4.438805393874645e-03, 4.440262913703918e-03, 4.440572112798691e-03, 4.440637771040201e-03, 4.44065174087882e-03, 4.440654534846544e-03, 2.393163507804275e-03, 6.901032757014036e-04, 8.963842265075073e-05, 6.758502422599089e-06, 4.452654138731305e-07, 2.75449565378949e-08, 1.653006620472289e-09, 9.777068044058979e-11, 5.002220859751105e-12, 4.547473508864641e-13, 2.047141315415502e-03, 3.628941951319575e-03, 4.204812459647655e-03, 4.377292934805155e-03, 4.424421582370996e-03, 4.436626099050045e-03, 4.439675714820623e-03, 4.440421238541603e-03, 4.440600052475929e-03, 4.4406414963305e-03, 2.393151167780161e-03, 6.901070009917021e-04, 8.963505388237536e-05, 6.758502877346406e-06, 4.456314854905941e-07, 2.768410922726616e-08, 1.690295903244987e-09, 9.185896487906575e-11, 4.547473508864641e-12, 0e+00, 2.047138521447766e-03, 3.628943115472794e-03, 4.204810597002506e-03, 4.377293400466442e-03, 4.424422048032284e-03, 4.43662703037262e-03, 4.439678508788347e-03, 4.440422635525465e-03, 4.440600983798504e-03, 4.440642893314362e-03, 2.393151633441448e-03, 6.90107059199363e-04, 8.963506843429059e-05, 6.758503332093824e-06, 4.456314854905941e-07, 2.76841092272656e-08, 1.690295903245047e-09, 9.413270163349807e-11, 5.002220859751105e-12, 0e+00, 2.047127345576882e-03, 3.628944046795368e-03, 4.204809665679932e-03, 4.377292934805155e-03, 4.424419719725847e-03, 4.436625633388758e-03, 4.439677577465773e-03, 4.440422169864178e-03, 4.440600518137217e-03, 4.440642427653074e-03, 2.393151400610805e-03, 6.90107059199363e-04, 8.963506843429059e-05, 6.758502877346473e-06, 4.456310307432432e-07, 2.768365447991528e-08, 1.690295903244987e-09, 9.413270163349807e-11, 5.002220859751105e-12, 1.364242052659392e-12, 2.047127112746259e-03, 3.628942649811496e-03, 4.204810597002506e-03, 4.377292934805155e-03, 4.424419719725847e-03, 4.43662516772747e-03, 4.439677577465773e-03, 4.440422169864178e-03, 4.440600518137217e-03, 4.440642427653074e-03, 2.393151400610805e-03, 6.90107059199363e-04, 8.963506115833297e-05, 6.758502877346473e-06, 4.456314854905941e-07, 2.768365447991528e-08, 1.690295903244987e-09, 9.276845958083868e-11, 5.911715561524034e-12, 4.547473508864641e-13] -fan2.m_flow=[0e+00, 8.985279710032046e-04, 2.665964886546135e-03, 3.749056020751595e-03, 4.20670211315155e-03, 4.368273075670004e-03, 4.419581033289433e-03, 4.43477975204587e-03, 4.439069889485836e-03, 4.440238233655691e-03, 4.440547898411751e-03, 4.116570111364126e-03, 2.748803701251745e-03, 1.307153957895935e-03, 4.752028908114869e-04, 1.460415951441973e-04, 4.070816430612467e-05, 1.068886376742736e-05, 2.698858224903233e-06, 6.631175892835017e-07, 1.599464667378925e-07, 2.835754712577909e-04, 1.656115986406803e-03, 3.036695066839457e-03, 3.851995337754488e-03, 4.22249548137188e-03, 4.366545472294092e-03, 4.417043179273605e-03, 4.433490801602602e-03, 4.438562784343958e-03, 4.440055228769779e-03, 4.116431809961796e-03, 2.748757367953658e-03, 1.307136728428304e-03, 4.752015229314543e-04, 1.460425846744329e-04, 4.070871364092454e-05, 1.068934307113523e-05, 2.698706794035388e-06, 6.632812983298209e-07, 1.597786649654154e-07, 2.835797786246949e-04, 1.656119711697102e-03, 3.036697395145893e-03, 3.85199417360127e-03, 4.222494550049305e-03, 4.366544540971518e-03, 4.417046904563904e-03, 4.433497320860624e-03, 4.438570700585842e-03, 4.440070129930973e-03, 4.116436932235956e-03, 2.748759230598807e-03, 1.307137310504913e-03, 4.752016684506088e-04, 1.460426283301786e-04, 4.070872455486052e-05, 1.068934670911419e-05, 2.69870770353009e-06, 6.632817530771717e-07, 1.597782102180645e-07, 2.835947962012142e-04, 1.656120992265642e-03, 3.036698093637824e-03, 3.851996269077063e-03, 4.22250060364604e-03, 4.366545937955379e-03, 4.417045973241329e-03, 4.433494992554188e-03, 4.438564646989107e-03, 4.440062679350376e-03, 4.11643460392952e-03, 2.748758299276233e-03, 1.30713707767427e-03, 4.752016102429479e-04, 1.460426137782633e-04, 4.070872091688216e-05, 1.068934579961933e-05, 2.698707248782739e-06, 6.632817530771717e-07, 1.597782102180645e-07, 2.835943887475977e-04, 1.656121341511592e-03, 3.036697162315249e-03, 3.851996967568994e-03, 4.222502000629902e-03, 4.366545937955379e-03, 4.417045507580042e-03, 4.4334945268929e-03, 4.438566043972969e-03, 4.440060816705227e-03, 4.116433672606945e-03, 2.748758066445589e-03, 1.307136961258948e-03, 4.752015811391175e-04, 1.460425992263481e-04, 4.070872091688216e-05, 1.068934489012463e-05, 2.698706794035388e-06, 6.632812983298209e-07, 1.597786649654154e-07] -fan3.m_flow=[0e+00, 1.455419580452144e-03, 3.085539443418384e-03, 3.914820030331612e-03, 4.258277826011181e-03, 4.382484126836061e-03, 4.423238802701235e-03, 4.435663111507893e-03, 4.439265467226505e-03, 4.440291784703732e-03, 4.44055674597621e-03, 4.148350097239017e-03, 3.02916974760592e-03, 1.886959304101765e-03, 8.56596918310968e-04, 2.587672497611493e-04, 6.97692739777267e-05, 1.789189991541202e-05, 4.44393072029925e-06, 1.078896730177803e-06, 2.579117790446617e-07, 3.264680854044855e-04, 2.091148169711232e-03, 3.281525569036603e-03, 3.948167897760868e-03, 4.253250546753407e-03, 4.375227261334658e-03, 4.419317934662104e-03, 4.434059839695692e-03, 4.438701551407576e-03, 4.440088290721178e-03, 4.148213658481836e-03, 3.029126673936844e-03, 1.886949641630054e-03, 8.565972093492706e-04, 2.587699855212122e-04, 6.976992881391197e-05, 1.789252746675629e-05, 4.443613306648331e-06, 1.0791773092933e-06, 2.576084625616204e-07, 3.264665137976364e-04, 2.092484151944518e-03, 3.281538607552648e-03, 3.948167897760868e-03, 4.253252409398556e-03, 4.37522679567337e-03, 4.419317469000816e-03, 4.434064030647278e-03, 4.438707605004311e-03, 4.440102260559797e-03, 4.148218315094709e-03, 3.029128769412637e-03, 1.886950572952628e-03, 8.565979078412056e-04, 2.58770160144195e-04, 6.976997246965687e-05, 1.789254019968238e-05, 4.443615580385085e-06, 1.0791773092933e-06, 2.576080078142695e-07, 3.264592378400266e-04, 2.091045957058668e-03, 3.281551646068692e-03, 3.948166966438293e-03, 4.25329152494669e-03, 4.375238437205553e-03, 4.419317934662104e-03, 4.434062633663416e-03, 4.438702948391438e-03, 4.440095741301775e-03, 4.148215986788273e-03, 3.029127838090062e-03, 1.886950223706663e-03, 8.56597616802901e-04, 2.587700728327036e-04, 6.976995064178482e-05, 1.789253474271391e-05, 4.443613761395682e-06, 1.079177764040651e-06, 2.576075530669186e-07, 3.264585684519405e-04, 2.093330956995473e-03, 3.28154070302844e-03, 3.948170226067305e-03, 4.253291059285402e-03, 4.375237505882978e-03, 4.419317003339529e-03, 4.434062168002129e-03, 4.438703879714012e-03, 4.440094344317913e-03, 4.148215521126986e-03, 3.029127605259418e-03, 1.886949990876019e-03, 8.565975003875792e-04, 2.587700728327036e-04, 6.97699433658272e-05, 1.78925329237245e-05, 4.443613761395682e-06, 1.079176854545949e-06, 2.576075530669186e-07] -fan4.m_flow=[0e+00, 3.504561027511954e-03, 4.243341740220785e-03, 4.399062599986792e-03, 4.431885201483965e-03, 4.438805393874645e-03, 4.440262913703918e-03, 4.440572112798691e-03, 4.440637771040201e-03, 4.44065174087882e-03, 4.440654534846544e-03, 2.393163507804275e-03, 6.901032757014036e-04, 8.963842265075073e-05, 6.758501513104387e-06, 4.452654138731305e-07, 2.754450179054402e-08, 1.653461367823175e-09, 9.777068044058979e-11, 5.002220859751105e-12, 4.547473508864641e-13, 2.047141315415502e-03, 3.628941951319575e-03, 4.204812459647655e-03, 4.377292934805155e-03, 4.424421582370996e-03, 4.436626099050045e-03, 4.439675714820623e-03, 4.440421238541603e-03, 4.440600052475929e-03, 4.4406414963305e-03, 2.393151167780161e-03, 6.901070009917021e-04, 8.963505388237536e-05, 6.758502422599055e-06, 4.456314854905941e-07, 2.768410922726616e-08, 1.690295903244987e-09, 9.276845958083868e-11, 5.002220859751105e-12, 0e+00, 2.047138521447766e-03, 3.628943115472794e-03, 4.204810597002506e-03, 4.377293400466442e-03, 4.424422048032284e-03, 4.43662703037262e-03, 4.439678508788347e-03, 4.440422635525465e-03, 4.440600983798504e-03, 4.440642893314362e-03, 2.393151633441448e-03, 6.90107059199363e-04, 8.963506843429059e-05, 6.758503332093824e-06, 4.456323949852958e-07, 2.768365447991471e-08, 1.690295903245047e-09, 9.276845958083868e-11, 4.547473508864641e-12, 0e+00, 2.047127345576882e-03, 3.628944046795368e-03, 4.204809665679932e-03, 4.377292934805155e-03, 4.424419719725847e-03, 4.436625633388758e-03, 4.439677577465773e-03, 4.440422169864178e-03, 4.440600518137217e-03, 4.440642427653074e-03, 2.393151400610805e-03, 6.90107059199363e-04, 8.963506843429059e-05, 6.758502877346473e-06, 4.456314854905941e-07, 2.76827449852135e-08, 1.690295903244987e-09, 9.276845958083868e-11, 5.911715561524034e-12, 4.547473508864641e-13, 2.047127112746259e-03, 3.628942649811496e-03, 4.204810597002506e-03, 4.377292934805155e-03, 4.424419719725847e-03, 4.43662516772747e-03, 4.439677577465773e-03, 4.440422169864178e-03, 4.440600518137217e-03, 4.440642427653074e-03, 2.393151400610805e-03, 6.90107059199363e-04, 8.963506115833297e-05, 6.758502422599122e-06, 4.456314854905941e-07, 2.768365447991528e-08, 1.690295903244987e-09, 9.276845958083868e-11, 5.002220859751105e-12, 4.547473508864641e-13] -fan1.dp=[0e+00, -1.7058375e+04, -2.5008396484375e+04, -2.68775703125e+04, -2.72801484375e+04, -2.7365412109375e+04, -2.738338671875e+04, -2.738719921875e+04, -2.73880078125e+04, -2.73881796875e+04, -2.7388216796875e+04, -7.9545615234375e+03, -1.266071411132812e+03, -1.594414215087891e+02, -1.20152740478515e+01, -7.910208702087402e-01, -4.872336238622665e-02, -2.86600692197679e-03, -1.629459438845515e-04, -9.023046004585922e-06, -4.912435542792082e-07, -5.820607421875e+03, -1.8290701171875e+04, -2.45563046875e+04, -2.6612212890625e+04, -2.718834765625e+04, -2.7338546875e+04, -2.7376142578125e+04, -2.7385337890625e+04, -2.738754296875e+04, -2.7388056640625e+04, -7.95447998046875e+03, -1.26607373046875e+03, -1.594427642822266e+02, -1.201532745361316e+01, -7.910096049308777e-01, -4.872555285692215e-02, -2.866331953555346e-03, -1.628942263778299e-04, -9.02813917491585e-06, -4.897010512650013e-07, -5.820590820312444e+03, -1.82907109375e+04, -2.45562890625e+04, -2.661221875e+04, -2.71883515625e+04, -2.733855859375e+04, -2.737617578125e+04, -2.738535546875e+04, -2.73875546875e+04, -2.7388072265625e+04, -7.95448193359375e+03, -1.266073852539062e+03, -1.594427795410156e+02, -1.20153284072876e+01, -7.910097241401672e-01, -4.872556030750175e-02, -2.866332186386093e-03, -1.628942263778299e-04, -9.02813917491585e-06, -4.897010512650013e-07, -5.82052685546875e+03, -1.829072265625e+04, -2.4556279296875e+04, -2.661221484375e+04, -2.718832421875e+04, -2.7338541015625e+04, -2.737616796875e+04, -2.73853515625e+04, -2.7387546875e+04, -2.738806640625e+04, -7.9544814453125e+03, -1.26607373046875e+03, -1.594427795410156e+02, -1.20153284072876e+01, -7.910096645355225e-01, -4.872555658221245e-02, -2.866331953555346e-03, -1.628942118259147e-04, -9.02813917491585e-06, -4.897010512650013e-07, -5.820525878906377e+03, -1.82907070312499e+04, -2.455629296875e+04, -2.661221484375e+04, -2.7188318359375e+04, -2.7338537109375e+04, -2.737616796875e+04, -2.7385349609375e+04, -2.7387548828125e+04, -2.7388064453125e+04, -7.95448095703125e+03, -1.26607373046875e+03, -1.594427642822266e+02, -1.201532745361328e+01, -7.910096645355225e-01, -4.872555285692215e-02, -2.866331953555346e-03, -1.628942118259147e-04, -9.02813917491585e-06, -4.897010512650013e-07] -fan2.dp=[0e+00, -1.245190551757812e+03, -9.8725966796875e+03, -1.952231640625e+04, -2.4578712890625e+04, -2.6502765625e+04, -2.7128919921875e+04, -2.73158046875e+04, -2.7368673828125e+04, -2.7383083984375e+04, -2.738690234375e+04, -2.3535349609375e+04, -1.0493140625e+04, -2.4039853515625e+03, -5.06823333740233e+02, -1.387006988525391e+02, -3.819895935058594e+01, -1.002042484283444e+01, -2.529906749725342e+00, -6.216021180152893e-01, -1.499325484037399e-01, -2.791060791015625e+02, -3.81117822265625e+03, -1.28087451171875e+04, -2.060889453125e+04, -2.476356640625e+04, -2.6481798828125e+04, -2.7097775390625e+04, -2.7299931640625e+04, -2.736242578125e+04, -2.738082421875e+04, -2.3533765625e+04, -1.0492787109375e+04, -2.40392578125e+03, -5.068215332031222e+02, -1.387016754150391e+02, -3.81994743347168e+01, -1.00208740234375e+01, -2.529764652252197e+00, -6.21755063533783e-01, -1.497746109962463e-01, -2.79110748291012e+02, -3.8111953125e+03, -1.2808763671875e+04, -2.06088828125e+04, -2.4763556640625e+04, -2.6481791015625e+04, -2.70978203125e+04, -2.7300013671875e+04, -2.7362521484375e+04, -2.73810078125e+04, -2.353382421875e+04, -1.049280078125e+04, -2.403927734375e+03, -5.068217468261719e+02, -1.387017059326172e+02, -3.819948577880817e+01, -1.00208768844606e+01, -2.529765367507935e+00, -6.217552423477173e-01, -1.497746407985687e-01, -2.791268920898438e+02, -3.811201416015625e+03, -1.280876953125e+04, -2.060890625e+04, -2.4763626953125e+04, -2.6481802734375e+04, -2.7097806640625e+04, -2.7299986328125e+04, -2.7362447265625e+04, -2.738091796875e+04, -2.3533796875e+04, -1.0492794921875e+04, -2.4039267578125e+03, -5.068216552734375e+02, -1.387016906738281e+02, -3.819948196411133e+01, -1.002087593078613e+01, -2.529765129089355e+00, -6.217551827430725e-01, -1.497746556997299e-01, -2.791264648437619e+02, -3.811202880859314e+03, -1.280876171875e+04, -2.06089140625e+04, -2.4763640625e+04, -2.64818046875e+04, -2.70978046875e+04, -2.729998046875e+04, -2.73624609375e+04, -2.738089453125e+04, -2.35337890625e+04, -1.049279296875e+04, -2.403926513671875e+03, -5.068216247558594e+02, -1.387016906738281e+02, -3.819947814941406e+01, -1.002087497711182e+01, -2.529764890670776e+00, -6.217551231384277e-01, -1.497746556997299e-01] -fan3.dp=[0e+00, -3.097157470703125e+03, -1.3224197265625e+04, -2.1286525390625e+04, -2.518470703125e+04, -2.667521484375e+04, -2.7173859375e+04, -2.7327015625e+04, -2.7371400390625e+04, -2.7383736328125e+04, -2.73870546875e+04, -2.39002890625e+04, -1.2743255859375e+04, -4.94481103515625e+03, -1.600882934570308e+03, -4.6191845703125e+02, -1.240576782226562e+02, -3.180492782592764e+01, -7.899402141571045e+00, -1.917785406112671e+00, -4.584504067897797e-01, -5.84552001953125e+02, -6.07441357421875e+03, -1.49574306640625e+04, -2.165065625e+04, -2.51255625e+04, -2.65871953125e+04, -2.71256875e+04, -2.730694140625e+04, -2.73641328125e+04, -2.738125390625e+04, -2.389871875e+04, -1.2742892578125e+04, -4.94477001953125e+03, -1.600878662109367e+03, -4.619197387695312e+02, -1.240597152709961e+02, -3.180650901794434e+01, -7.898754119873047e+00, -1.918283462524414e+00, -4.579079747200012e-01, -5.845492553710858e+02, -6.07438037109375e+03, -1.49574462890625e+04, -2.165066015625e+04, -2.512555859375e+04, -2.6587181640625e+04, -2.7125685546875e+04, -2.73069921875e+04, -2.7364208984375e+04, -2.738140234375e+04, -2.38987734375e+04, -1.274291015625e+04, -4.94477490234375e+03, -1.600880126953125e+03, -4.619200744628906e+02, -1.240598068237291e+02, -3.180652999877977e+01, -7.898759365081787e+00, -1.91828465461731e+00, -4.579082131385803e-01, -5.84535888671875e+02, -6.074349609375e+03, -1.4957478515625e+04, -2.16506796875e+04, -2.5125634765625e+04, -2.658721484375e+04, -2.7125685546875e+04, -2.730697265625e+04, -2.7364150390625e+04, -2.7381326171875e+04, -2.3898748046875e+04, -1.274290234375e+04, -4.9447724609375e+03, -1.600879516601562e+03, -4.61919921875e+02, -1.240597686767578e+02, -3.180652046203613e+01, -7.898756504058838e+00, -1.918284058570862e+00, -4.579081535339355e-01, -5.845347290039331e+02, -6.074367187499925e+03, -1.495744921875e+04, -2.165067578125e+04, -2.5125646484375e+04, -2.6587220703125e+04, -2.7125685546875e+04, -2.7306970703125e+04, -2.736416015625e+04, -2.738130859375e+04, -2.3898740234375e+04, -1.27428994140625e+04, -4.94477197265625e+03, -1.600879272460938e+03, -4.619198913574219e+02, -1.240597534179688e+02, -3.180651664733887e+01, -7.89875602722168e+00, -1.918283820152283e+00, -4.579081237316132e-01] -fan4.dp=[0e+00, -1.7058375e+04, -2.5008396484375e+04, -2.68775703125e+04, -2.72801484375e+04, -2.7365412109375e+04, -2.738338671875e+04, -2.738719921875e+04, -2.73880078125e+04, -2.73881796875e+04, -2.7388216796875e+04, -7.9545615234375e+03, -1.266071411132812e+03, -1.594414215087891e+02, -1.20152740478515e+01, -7.910208702087402e-01, -4.872336238622665e-02, -2.86600692197679e-03, -1.629459438845515e-04, -9.023046004585922e-06, -4.912435542792082e-07, -5.820607421875e+03, -1.8290701171875e+04, -2.45563046875e+04, -2.6612212890625e+04, -2.718834765625e+04, -2.7338546875e+04, -2.7376142578125e+04, -2.7385337890625e+04, -2.738754296875e+04, -2.7388056640625e+04, -7.95447998046875e+03, -1.26607373046875e+03, -1.594427642822266e+02, -1.201532745361316e+01, -7.910096049308777e-01, -4.872555285692215e-02, -2.866331953555346e-03, -1.628942263778299e-04, -9.02813917491585e-06, -4.897010512650013e-07, -5.820590820312444e+03, -1.82907109375e+04, -2.45562890625e+04, -2.661221875e+04, -2.71883515625e+04, -2.733855859375e+04, -2.737617578125e+04, -2.738535546875e+04, -2.73875546875e+04, -2.7388072265625e+04, -7.95448193359375e+03, -1.266073852539062e+03, -1.594427795410156e+02, -1.20153284072876e+01, -7.910097241401672e-01, -4.872556030750175e-02, -2.866332186386093e-03, -1.628942263778299e-04, -9.02813917491585e-06, -4.897010512650013e-07, -5.82052685546875e+03, -1.829072265625e+04, -2.4556279296875e+04, -2.661221484375e+04, -2.718832421875e+04, -2.7338541015625e+04, -2.737616796875e+04, -2.73853515625e+04, -2.7387546875e+04, -2.738806640625e+04, -7.9544814453125e+03, -1.26607373046875e+03, -1.594427795410156e+02, -1.20153284072876e+01, -7.910096645355225e-01, -4.872555658221245e-02, -2.866331953555346e-03, -1.628942118259147e-04, -9.02813917491585e-06, -4.897010512650013e-07, -5.820525390625127e+03, -1.82907070312499e+04, -2.455629296875e+04, -2.661221484375e+04, -2.7188318359375e+04, -2.7338537109375e+04, -2.737616796875e+04, -2.7385349609375e+04, -2.7387548828125e+04, -2.7388064453125e+04, -7.95448095703125e+03, -1.26607373046875e+03, -1.594427642822266e+02, -1.201532745361328e+01, -7.910096645355225e-01, -4.872555285692215e-02, -2.866331953555346e-03, -1.628942118259147e-04, -9.02813917491585e-06, -4.897010512650013e-07] +fan1.m_flow=[0e+00, 3.501605708152056e-03, 4.242090508341789e-03, 4.398665856570005e-03, 4.431774374097586e-03, 4.438775591552258e-03, 4.440256860107183e-03, 4.440570715814829e-03, 4.440637305378914e-03, 4.44065174087882e-03, 4.440654534846544e-03, 2.397751668468118e-03, 6.946114008314908e-04, 9.096450958168134e-05, 6.906901944603271e-06, 4.597268343786709e-07, 2.871638571377844e-08, 1.793523551896206e-09, 9.777068044058979e-11, 5.002220859751105e-12, 1.364242052659392e-12, 2.042543608695269e-03, 3.62505903467536e-03, 4.20296797528863e-03, 4.376600496470928e-03, 4.424193408340216e-03, 4.436556715518236e-03, 4.439655691385269e-03, 4.440415650606155e-03, 4.440598655492067e-03, 4.4406414963305e-03, 2.397749107331038e-03, 6.946109933778644e-04, 9.096309804590419e-05, 6.906884209456553e-06, 4.581775101542007e-07, 2.864408088498749e-08, 1.758508005877957e-09, 9.640643838793039e-11, 5.002220859751105e-12, 4.547473508864641e-13, 2.042540814727534e-03, 3.625059733167291e-03, 4.202965646982193e-03, 4.376601427793503e-03, 4.424192477017641e-03, 4.436556249856949e-03, 4.439655225723982e-03, 4.440415184944868e-03, 4.440598655492067e-03, 4.440641961991787e-03, 2.397749340161681e-03, 6.946110515855253e-04, 9.09631053218618e-05, 6.906885573698673e-06, 4.581775101542007e-07, 2.864408088498691e-08, 1.757598511176246e-09, 9.731593308970332e-11, 5.002220859751105e-12, 4.547473508864641e-13, 2.042529406026006e-03, 3.625062759965658e-03, 4.202965646982193e-03, 4.376600962132215e-03, 4.424190614372492e-03, 4.436555318534374e-03, 4.439657554030418e-03, 4.44041658192873e-03, 4.440599121153355e-03, 4.440642427653074e-03, 2.397749572992325e-03, 6.946110515855253e-04, 9.09631053218618e-05, 6.906884664203972e-06, 4.581775101542007e-07, 2.864499037968926e-08, 1.757598511176184e-09, 9.640643838793039e-11, 4.547473508864641e-12, 4.547473508864641e-13, 2.042529173195382e-03, 3.625062759965648e-03, 4.202965646982193e-03, 4.376600962132215e-03, 4.424190614372492e-03, 4.436555318534374e-03, 4.439657554030418e-03, 4.44041658192873e-03, 4.440599121153355e-03, 4.440642427653074e-03, 2.397749572992325e-03, 6.946110515855253e-04, 9.09631053218618e-05, 6.906885573698673e-06, 4.581770554068498e-07, 2.864499037968926e-08, 1.757598511176184e-09, 9.640643838793039e-11, 4.547473508864641e-12, 4.547473508864641e-13] +fan2.m_flow=[0e+00, 8.949422626756132e-04, 2.65989825129509e-03, 3.74473980627954e-03, 4.204541444778442e-03, 4.367383662611246e-03, 4.419260192662477e-03, 4.434677306562662e-03, 4.439040087163448e-03, 4.440230317413807e-03, 4.440546035766602e-03, 4.118424374610186e-03, 2.755261026322842e-03, 1.314262044616044e-03, 4.79495764011516e-04, 1.478799385949969e-04, 4.13616253354121e-05, 1.089719989977308e-05, 2.760303232207661e-06, 6.805807970522437e-07, 1.645253178139683e-07, 2.817388158291578e-04, 1.649767975322902e-03, 3.029945539310575e-03, 3.847505198791623e-03, 4.220185335725546e-03, 4.365534987300634e-03, 4.416648298501968e-03, 4.433348309248686e-03, 4.438514821231365e-03, 4.440039396286011e-03, 4.11828001961112e-03, 2.755221212282777e-03, 1.314251101575792e-03, 4.794951237272448e-04, 1.478827762184665e-04, 4.136259667575359e-05, 1.089728357328568e-05, 2.760236839094432e-06, 6.80599896440981e-07, 1.644789335841779e-07, 2.817427739500964e-04, 1.649768673814833e-03, 3.029946470633149e-03, 3.847502404823899e-03, 4.220187664031982e-03, 4.365534987300634e-03, 4.416648764163256e-03, 4.433346446603537e-03, 4.438513424247503e-03, 4.440045915544033e-03, 4.118282347917557e-03, 2.755221910774708e-03, 1.314251334406435e-03, 4.79495181934908e-04, 1.478827907703817e-04, 4.136260395171075e-05, 1.089728448278054e-05, 2.760237293841783e-06, 6.806008059356827e-07, 1.64478478836827e-07, 2.817582280840725e-04, 1.649774960242212e-03, 3.029949031770229e-03, 3.847504733130336e-03, 4.220192786306143e-03, 4.365536384284496e-03, 4.416650161147118e-03, 4.433352034538984e-03, 4.438518546521664e-03, 4.44005336612463e-03, 4.118285141885281e-03, 2.755222842097282e-03, 1.314251683652401e-03, 4.794952692463994e-04, 1.478828198742121e-04, 4.136260758969001e-05, 1.089728630176978e-05, 2.760237748589134e-06, 6.806003511883318e-07, 1.64478478836827e-07, 2.817578206304559e-04, 1.649774610996232e-03, 3.029948798939586e-03, 3.847504733130336e-03, 4.220192786306143e-03, 4.365536384284496e-03, 4.416650161147118e-03, 4.433352034538984e-03, 4.438518080860376e-03, 4.440049175173044e-03, 4.118283744901419e-03, 2.755222376435995e-03, 1.314251567237079e-03, 4.794952401425689e-04, 1.478828053222969e-04, 4.136260395171121e-05, 1.089728539227508e-05, 2.760236839094432e-06, 6.806008059356827e-07, 1.64478478836827e-07] +fan3.m_flow=[0e+00, 1.450155978091061e-03, 3.080699359998107e-03, 3.911585081368685e-03, 4.256639629602432e-03, 4.381787963211536e-03, 4.422962199896574e-03, 4.435587208718061e-03, 4.439258016645908e-03, 4.440281540155411e-03, 4.440558608621359e-03, 4.14996175095439e-03, 3.034239402040839e-03, 1.893000560812652e-03, 8.640975574962774e-04, 2.62132118223235e-04, 7.091530278557912e-05, 1.824597347876983e-05, 4.546242053038441e-06, 1.10757673610351e-06, 2.65324160864111e-07, 3.240198420826346e-04, 2.085372572764754e-03, 3.275953233242035e-03, 3.944502212107182e-03, 4.251319915056229e-03, 4.374356009066105e-03, 4.418967757374048e-03, 4.433930851519108e-03, 4.438656847923994e-03, 4.440073855221272e-03, 4.149814136326313e-03, 3.034184454008937e-03, 1.892974833026528e-03, 8.640866726636846e-04, 2.621267340146005e-04, 7.091510633472353e-05, 1.824564242269844e-05, 4.545953743217979e-06, 1.107564912672387e-06, 2.652295734151267e-07, 3.240197838749693e-04, 2.087092027068138e-03, 3.275977913290262e-03, 3.944502212107182e-03, 4.251324106007814e-03, 4.37435694038868e-03, 4.418968688696623e-03, 4.433928988873959e-03, 4.438655450940132e-03, 4.440079908818007e-03, 4.149815998971462e-03, 3.034185385331511e-03, 1.892975182272494e-03, 8.640870219096541e-04, 2.621268213260919e-04, 7.091512816259559e-05, 1.824564787966692e-05, 4.545955107460031e-06, 1.107565367419738e-06, 2.652291186677758e-07, 3.240110236220062e-04, 2.085343934595585e-03, 3.275912255048752e-03, 3.944504540413618e-03, 4.251477774232626e-03, 4.374396521598101e-03, 4.418965429067612e-03, 4.433930851519108e-03, 4.438660573214293e-03, 4.440086428076029e-03, 4.149818327277899e-03, 3.03418654948473e-03, 1.892975764349103e-03, 8.640873129479587e-04, 2.621269086375833e-04, 7.091514999046922e-05, 1.824565333663486e-05, 4.545956471702084e-06, 1.107564912672387e-06, 2.652295734151267e-07, 3.240103833377504e-04, 2.085328334942446e-03, 3.275912255048752e-03, 3.944504540413618e-03, 4.251478239893913e-03, 4.374353215098381e-03, 4.418969620019197e-03, 4.433930851519108e-03, 4.438659641891718e-03, 4.440083168447018e-03, 4.149817395955324e-03, 3.034185850992799e-03, 1.892975531518459e-03, 8.64087138324976e-04, 2.621268504299223e-04, 7.09151427145116e-05, 1.824565151764546e-05, 4.545956016954733e-06, 1.107565822167089e-06, 2.652295734151267e-07] +fan4.m_flow=[0e+00, 3.501605940982699e-03, 4.242090508341789e-03, 4.398665856570005e-03, 4.431774374097586e-03, 4.438775591552258e-03, 4.440256860107183e-03, 4.440570715814829e-03, 4.440637305378914e-03, 4.44065174087882e-03, 4.440654534846544e-03, 2.397751668468118e-03, 6.946114008314908e-04, 9.096450958168134e-05, 6.906901944603271e-06, 4.597272891260218e-07, 2.871729520848021e-08, 1.793523551896206e-09, 9.777068044058979e-11, 5.911715561524034e-12, 4.547473508864641e-13, 2.042543608695269e-03, 3.62505903467536e-03, 4.20296797528863e-03, 4.376600496470928e-03, 4.424193408340216e-03, 4.436556715518236e-03, 4.439655691385269e-03, 4.440415650606155e-03, 4.440598655492067e-03, 4.4406414963305e-03, 2.397749107331038e-03, 6.946109933778644e-04, 9.096309804590419e-05, 6.906884209456553e-06, 4.581775101542007e-07, 2.864408088498749e-08, 1.758508005877957e-09, 9.640643838793039e-11, 5.002220859751105e-12, 4.547473508864641e-13, 2.042540814727534e-03, 3.625059733167291e-03, 4.202965646982193e-03, 4.376601427793503e-03, 4.424192477017641e-03, 4.436556249856949e-03, 4.439655225723982e-03, 4.440415184944868e-03, 4.440598655492067e-03, 4.440641961991787e-03, 2.397749340161681e-03, 6.946110515855253e-04, 9.09631053218618e-05, 6.906884209456621e-06, 4.581770554068498e-07, 2.864408088498691e-08, 1.757598511176246e-09, 9.731593308970332e-11, 5.002220859751105e-12, 4.547473508864641e-13, 2.042529406026006e-03, 3.625062759965658e-03, 4.202965646982193e-03, 4.376600962132215e-03, 4.424190614372492e-03, 4.436555318534374e-03, 4.439657554030418e-03, 4.44041658192873e-03, 4.440599121153355e-03, 4.440642427653074e-03, 2.397749572992325e-03, 6.946110515855253e-04, 9.09631053218618e-05, 6.906884664203972e-06, 4.581775101542007e-07, 2.864408088498749e-08, 1.757598511176184e-09, 9.640643838793039e-11, 5.002220859751105e-12, 0e+00, 2.042529173195382e-03, 3.625062759965648e-03, 4.202965646982193e-03, 4.376600962132215e-03, 4.424190614372492e-03, 4.436555318534374e-03, 4.439657554030418e-03, 4.44041658192873e-03, 4.440599121153355e-03, 4.440642427653074e-03, 2.397749572992325e-03, 6.946110515855253e-04, 9.09631053218618e-05, 6.906885573698673e-06, 4.581775101542007e-07, 2.864544512704015e-08, 1.758508005877957e-09, 9.640643838793039e-11, 5.002220859751105e-12, 0e+00] +fan1.dp=[0e+00, -1.7029619140625e+04, -2.4993654296875e+04, -2.6872728515625e+04, -2.7278783203125e+04, -2.736504296875e+04, -2.738330859375e+04, -2.738718359375e+04, -2.7388005859375e+04, -2.73881796875e+04, -2.7388216796875e+04, -7.98509130859375e+03, -1.274897583007812e+03, -1.618067779541016e+02, -1.227907276153558e+01, -8.134369254112244e-01, -5.04227913916111e-02, -2.984987571835503e-03, -1.70716259162873e-04, -9.519848390482366e-06, -5.200854502618313e-07, -5.79449072265625e+03, -1.825158203125e+04, -2.4534767578125e+04, -2.6603796875e+04, -2.7185541015625e+04, -2.733769140625e+04, -2.737589453125e+04, -2.738526953125e+04, -2.7387525390625e+04, -2.738805078125e+04, -7.9850751953125e+03, -1.274897338867188e+03, -1.618069305419922e+02, -1.227913665771472e+01, -8.134126663208008e-01, -5.041937157511711e-02, -2.984585706144571e-03, -1.706803595880046e-04, -9.518960723653436e-06, -5.195761332288384e-07, -5.794474609374945e+03, -1.82515859375e+04, -2.45347421875e+04, -2.66038046875e+04, -2.7185529296875e+04, -2.73376875e+04, -2.7375888671875e+04, -2.7385263671875e+04, -2.73875234375e+04, -2.7388060546875e+04, -7.985076171875e+03, -1.274897338867188e+03, -1.618069458007812e+02, -1.227913665771484e+01, -8.134127259254456e-01, -5.041937157511608e-02, -2.98458570614468e-03, -1.706803450360894e-04, -9.518960723653436e-06, -5.195761332288384e-07, -5.79441015625e+03, -1.8251619140625e+04, -2.453474609375e+04, -2.6603802734375e+04, -2.71855078125e+04, -2.7337673828125e+04, -2.7375916015625e+04, -2.738528125e+04, -2.738753125e+04, -2.738806640625e+04, -7.9850771484375e+03, -1.2748974609375e+03, -1.618069610595703e+02, -1.227913761138916e+01, -8.134127855300903e-01, -5.041937530040741e-02, -2.984585938975215e-03, -1.706803595880046e-04, -9.518960723653436e-06, -5.195761332288384e-07, -5.794408691406376e+03, -1.82516171874999e+04, -2.453474609375e+04, -2.6603802734375e+04, -2.71855078125e+04, -2.7337673828125e+04, -2.7375916015625e+04, -2.738528125e+04, -2.738753125e+04, -2.7388064453125e+04, -7.9850771484375e+03, -1.2748974609375e+03, -1.618069458007812e+02, -1.227913761138916e+01, -8.134127259254456e-01, -5.041937530040741e-02, -2.984585706144571e-03, -1.706803595880046e-04, -9.518960723653436e-06, -5.195761332288384e-07] +fan2.dp=[0e+00, -1.237165161132812e+03, -9.8277197265625e+03, -1.947739453125e+04, -2.455347265625e+04, -2.649197265625e+04, -2.7124984375e+04, -2.7314544921875e+04, -2.7368306640625e+04, -2.7382982421875e+04, -2.7386875e+04, -2.355655859375e+04, -1.054250390625e+04, -2.428723876953125e+03, -5.12512329101561e+02, -1.404928131103516e+02, -3.881343460083008e+01, -1.02157640457153e+01, -2.587506532669067e+00, -6.37971818447113e-01, -1.542247980833054e-01, -2.771304321289062e+02, -3.78216455078125e+03, -1.27518720703125e+04, -2.0560880859375e+04, -2.47364765625e+04, -2.6469544921875e+04, -2.7092931640625e+04, -2.72981796875e+04, -2.736183203125e+04, -2.7380630859375e+04, -2.3554912109375e+04, -1.054219921875e+04, -2.428685546875e+03, -5.125114746093722e+02, -1.404955749511719e+02, -3.881435012817383e+01, -1.021584224700928e+01, -2.587444305419922e+00, -6.379900574684143e-01, -1.541806310415268e-01, -2.771347045898401e+02, -3.782167724609375e+03, -1.27518798828125e+04, -2.05608515625e+04, -2.47365078125e+04, -2.6469548828125e+04, -2.709293359375e+04, -2.7298154296875e+04, -2.73618125e+04, -2.738070703125e+04, -2.35549375e+04, -1.0542205078125e+04, -2.4286865234375e+03, -5.125115356445312e+02, -1.4049560546875e+02, -3.881435394287067e+01, -1.021584415435806e+01, -2.587444543838501e+00, -6.379901170730591e-01, -1.541807055473328e-01, -2.771513061523438e+02, -3.782196044921875e+03, -1.275190234375e+04, -2.0560876953125e+04, -2.473656640625e+04, -2.64695625e+04, -2.7092953125e+04, -2.7298224609375e+04, -2.736187890625e+04, -2.7380798828125e+04, -2.3554966796875e+04, -1.05422109375e+04, -2.4286875e+03, -5.125116577148438e+02, -1.404956207275391e+02, -3.881435775756836e+01, -1.021584510803223e+01, -2.58744478225708e+00, -6.379901766777039e-01, -1.541806608438492e-01, -2.771508483886837e+02, -3.78219433593744e+03, -1.27519013671875e+04, -2.0560876953125e+04, -2.473656640625e+04, -2.64695625e+04, -2.7092953125e+04, -2.7298224609375e+04, -2.736187109375e+04, -2.738075e+04, -2.3554953125e+04, -1.05422080078125e+04, -2.42868701171875e+03, -5.125115966796875e+02, -1.4049560546875e+02, -3.881435775756836e+01, -1.021584415435791e+01, -2.587444543838501e+00, -6.379901170730591e-01, -1.54180645942688e-01] +fan3.dp=[0e+00, -3.0810517578125e+03, -1.31828935546875e+04, -2.1251384765625e+04, -2.5165314453125e+04, -2.6666724609375e+04, -2.717064453125e+04, -2.732594140625e+04, -2.737107421875e+04, -2.7383642578125e+04, -2.738703125e+04, -2.3918869140625e+04, -1.2785947265625e+04, -4.97652294921875e+03, -1.616463745117183e+03, -4.679663696289062e+02, -1.260984344482422e+02, -3.243524932861319e+01, -8.081191062927246e+00, -1.968765139579773e+00, -4.716250896453857e-01, -5.801092529296875e+02, -6.04066259765625e+03, -1.4906681640625e+04, -2.1610474609375e+04, -2.5102759765625e+04, -2.6576609375e+04, -2.7121388671875e+04, -2.7305349609375e+04, -2.73635859375e+04, -2.738107421875e+04, -2.3917166015625e+04, -1.27854853515625e+04, -4.97639990234375e+03, -1.616437011718742e+03, -4.679638977050781e+02, -1.260972290039062e+02, -3.243424987792969e+01, -8.080669403076172e+00, -1.968744993209839e+00, -4.714556634426117e-01, -5.801091918945234e+02, -6.04065478515625e+03, -1.49067294921875e+04, -2.161048828125e+04, -2.5102802734375e+04, -2.6576619140625e+04, -2.7121396484375e+04, -2.7305333984375e+04, -2.73635703125e+04, -2.7381130859375e+04, -2.391719140625e+04, -1.27854931640625e+04, -4.97640234375e+03, -1.616437622070312e+03, -4.679640502929688e+02, -1.26097274780272e+02, -3.243426132202197e+01, -8.080671310424805e+00, -1.968745589256287e+00, -4.714558720588684e-01, -5.800933227539062e+02, -6.04057568359375e+03, -1.49067197265625e+04, -2.16104921875e+04, -2.5102853515625e+04, -2.6576658203125e+04, -2.7121390625e+04, -2.7305380859375e+04, -2.736362109375e+04, -2.7381208984375e+04, -2.391721875e+04, -1.2785501953125e+04, -4.97640478515625e+03, -1.616438354492188e+03, -4.679642333984375e+02, -1.260973205566406e+02, -3.243426895141602e+01, -8.080674171447754e+00, -1.968746066093445e+00, -4.714559018611908e-01, -5.800921630859641e+02, -6.040574707031175e+03, -1.49067197265625e+04, -2.16104921875e+04, -2.510285546875e+04, -2.6576658203125e+04, -2.7121390625e+04, -2.730537890625e+04, -2.7363615234375e+04, -2.7381166015625e+04, -2.3917203125e+04, -1.2785498046875e+04, -4.97640380859375e+03, -1.61643798828125e+03, -4.679641418457031e+02, -1.26097297668457e+02, -3.243426513671875e+01, -8.080673217773438e+00, -1.968745827674866e+00, -4.71455842256546e-01] +fan4.dp=[0e+00, -1.702962109375e+04, -2.4993654296875e+04, -2.6872728515625e+04, -2.7278783203125e+04, -2.736504296875e+04, -2.738330859375e+04, -2.738718359375e+04, -2.7388005859375e+04, -2.73881796875e+04, -2.7388216796875e+04, -7.98509130859375e+03, -1.274897583007812e+03, -1.618067779541016e+02, -1.227907276153558e+01, -8.134369254112244e-01, -5.04227913916111e-02, -2.984987571835503e-03, -1.70716259162873e-04, -9.519848390482366e-06, -5.200854502618313e-07, -5.79449072265625e+03, -1.825158203125e+04, -2.4534767578125e+04, -2.6603796875e+04, -2.7185541015625e+04, -2.733769140625e+04, -2.737589453125e+04, -2.738526953125e+04, -2.7387525390625e+04, -2.738805078125e+04, -7.9850751953125e+03, -1.274897338867188e+03, -1.618069305419922e+02, -1.227913665771472e+01, -8.134126663208008e-01, -5.041937157511711e-02, -2.984585706144571e-03, -1.706803595880046e-04, -9.518960723653436e-06, -5.195761332288384e-07, -5.794474609374945e+03, -1.82515859375e+04, -2.4534744140625e+04, -2.66038046875e+04, -2.7185529296875e+04, -2.73376875e+04, -2.7375888671875e+04, -2.7385263671875e+04, -2.73875234375e+04, -2.7388060546875e+04, -7.985076171875e+03, -1.274897338867188e+03, -1.618069458007812e+02, -1.227913665771484e+01, -8.134127259254456e-01, -5.041937157511608e-02, -2.98458570614468e-03, -1.706803450360894e-04, -9.518960723653436e-06, -5.195761332288384e-07, -5.79441015625e+03, -1.8251619140625e+04, -2.453474609375e+04, -2.6603802734375e+04, -2.71855078125e+04, -2.7337673828125e+04, -2.7375916015625e+04, -2.738528125e+04, -2.738753125e+04, -2.738806640625e+04, -7.9850771484375e+03, -1.2748974609375e+03, -1.618069610595703e+02, -1.227913761138916e+01, -8.134127855300903e-01, -5.041937530040741e-02, -2.984585938975215e-03, -1.706803595880046e-04, -9.518960723653436e-06, -5.195761332288384e-07, -5.794408691406376e+03, -1.82516171874999e+04, -2.453474609375e+04, -2.6603802734375e+04, -2.71855078125e+04, -2.7337673828125e+04, -2.7375916015625e+04, -2.738528125e+04, -2.738753125e+04, -2.7388064453125e+04, -7.9850771484375e+03, -1.2748974609375e+03, -1.618069458007812e+02, -1.227913761138916e+01, -8.134127259254456e-01, -5.041937530040741e-02, -2.984585706144571e-03, -1.706803595880046e-04, -9.518960723653436e-06, -5.195761332288384e-07] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Movers_Validation_PumpCurveDerivatives.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Movers_Validation_PumpCurveDerivatives.txt index 489885cabb..d0e947453f 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Movers_Validation_PumpCurveDerivatives.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Movers_Validation_PumpCurveDerivatives.txt @@ -1,4 +1,4 @@ -last-generated=2021-05-19 +last-generated=2022-05-23 statistics-initialization= { "nonlinear": "1", @@ -12,6 +12,6 @@ statistics-simulation= "numerical Jacobians": "0" } time=[0e+00, 1e+00] -ddp_dNrpm.y=[0e+00, 8.454426869497842e-01, 2.608634561975957e+00, 4.708931593135562e+00, 6.933461391209572e+00, 9.203671285530575e+00, 1.149077064730584e+01, 1.37840432436893e+01, 1.607960551312222e+01, 1.837592996485394e+01, 2.067247737995281e+01, 2.296901525834318e+01, 2.526549973093915e+01, 2.756196322270586e+01, 2.985833345077577e+01, 3.215455872048373e+01, 3.445064245319524e+01, 3.674658162071288e+01, 3.904236438580634e+01, 4.133798653972806e+01, 4.363343742627651e+01, 4.592870862761779e+01, 4.822378567397062e+01, 5.051866054156506e+01, 5.28133328348888e+01, 5.510778427124023e+01, 5.740201405914115e+01, 5.969600431382832e+01, 6.198976107911368e+01, 6.428327370327382e+01, 6.657652772288029e+01, 6.886953680684675e+01, 7.116228649083527e+01, 7.345476231384573e+01, 7.57469855694297e+01, 7.80389417957003e+01, 8.03306317926429e+01, 8.26220615905317e+01, 8.491323961783706e+01, 8.720415824521906e+01, 8.949482590522261e+01, 9.178525625120453e+01, 9.407545771489123e+01, 9.636543110140668e+01, 9.865519768944139e+01, 1.009447659128454e+02, 1.032341442078152e+02, 1.055233614789389e+02, 1.078124261618491e+02, 1.101013466940975e+02, 1.123901672363281e+02, 1.146788962256099e+02, 1.169675718090573e+02, 1.192562092453501e+02, 1.215448177820921e+02, 1.23833401812896e+02, 1.261219782141073e+02, 1.284106766858909e+02, 1.306996192979467e+02, 1.329882414759961e+02, 1.352771094107425e+02, 1.375664792687284e+02, 1.398560780100782e+02, 1.421453105399812e+02, 1.444351991991598e+02, 1.467260644235669e+02, 1.490177399617131e+02, 1.513093986411688e+02, 1.536012709437078e+02, 1.558935552340951e+02, 1.581863278067732e+02, 1.60479634438267e+02, 1.627735224892041e+02, 1.650680650810113e+02, 1.673632485433416e+02, 1.696591491699219e+02, 1.71955705925305e+02, 1.742517743981284e+02, 1.765472172597272e+02, 1.788420055745807e+02, 1.811361972166405e+02, 1.834296869532593e+02, 1.85722367972417e+02, 1.880140876859376e+02, 1.903047850586993e+02, 1.925943854115372e+02, 1.948828244859732e+02, 1.971701191488649e+02, 1.994561015534598e+02, 2.017405428177037e+02, 2.04023717599254e+02, 2.063051545411066e+02, 2.085849418745591e+02, 2.108633864323732e+02, 2.131399846733617e+02, 2.154144619381273e+02, 2.176867114171594e+02, 2.199574977781239e+02, 2.222261919635789e+02, 2.24492673620691e+02, 2.267567901611328e+02] -ddp_dm_flow.y=[-1.083289861679077e+00, 1.836464410791655e+02, 2.655389425208451e+02, 2.963598639538888e+02, 2.952748398253218e+02, 2.693557765382816e+02, 2.211941904264775e+02, 1.581559770901988e+02, 1.270210272132919e+02, 1.57407037913163e+02, 2.602036544785254e+02, 4.401833631199096e+02, 6.984201869264209e+02, 1.106771273706332e+03, 2.675006476516693e+03, 4.801907391828265e+03, 6.927962636572359e+03, 8.847992839639852e+03, 1.048724207106105e+04, 1.203077285182909e+04, 1.377555510998927e+04, 1.583658645215334e+04, 1.826003547192464e+04, 2.1112326840448e+04, 2.432381618318297e+04, 2.7499345703125e+04, 3.048399688388597e+04, 3.343327017933512e+04, 3.664035116559442e+04, 4.01728546840122e+04, 4.387852682571451e+04, 4.784172947275374e+04, 5.240864044269631e+04, 5.812353529913323e+04, 6.297816655874213e+04, 6.510890633522748e+04, 6.476173099348402e+04, 6.455584381195145e+04, 6.448492576448623e+04, 6.446163670357878e+04, 6.445475000240979e+04, 6.445208203039085e+04, 6.444943749564607e+04, 6.444630078291241e+04, 6.444507812484633e+04, 6.44446054684706e+04, 6.444444140633149e+04, 6.444444140625466e+04, 6.444446093745809e+04, 6.444449609369412e+04, 6.444449609375e+04, 6.444446874998137e+04, 6.444444140613824e+04, 6.444440624988824e+04, 6.444438281254191e+04, 6.444436718752328e+04, 6.4444359375e+04, 6.444435546875e+04, 6.4444359375e+04, 6.4444359375e+04, 6.4444359375e+04, 6.444436328125e+04, 6.44443671875e+04, 6.44443671875e+04, 6.44443671875e+04, 6.44443671875e+04, 6.44443671875e+04, 4.617505408072082e+04, 1.69922126663639e+04, 6.247086537918037e+03, 2.294633260100614e+03, 8.429251776326615e+02, 3.096163395132825e+02, 1.129822512431311e+02, 4.180484556021855e+01, 1.515667629241943e+01, 2.839639239882622e+00, -9.996730913669696e-02, 2.382789262482564e-01, 1.982627165443947e+00, 2.759226852416136e+00, 1.908828375198245e+00, 7.966150062833494e-01, 1.482077338499614e-01, -7.295675802503472e-02, -7.931919114193763e-02, -2.172884948762821e-02, 1.10001492409819e-01, 2.121710999666925e-01, 1.770660653463901e-01, 2.245906668713153e-01, 1.983536251444979e-01, 1.446499525144477e-01, 1.589466963010971e-01, 1.702491341484824e-01, 1.531647749215193e-01, 1.075483896814129e-01, 1.309782348082541e-01, 1.47591780760199e-01, 1.388299100672927e-01, 8.680993318557739e-02] -dm_flow_dNrpm.y=[-0e+00, 1.192864428166495e-03, 3.680613019013269e-03, 6.643994918831707e-03, 9.782661968780729e-03, 1.298577873285556e-02, 1.62127264455091e-02, 1.944838082082634e-02, 2.268726436609652e-02, 2.59272202437585e-02, 2.916748773451187e-02, 3.240773101092659e-02, 3.564789233090228e-02, 3.888800894740328e-02, 4.212798158884774e-02, 4.536772326251573e-02, 4.860724624611455e-02, 5.184652970924571e-02, 5.508555612759938e-02, 5.832431170071949e-02, 6.15627681498729e-02, 6.480090532406294e-02, 6.803870239705667e-02, 7.127612694138914e-02, 7.451316142863498e-02, 7.774977385997772e-02, 8.098594407881962e-02, 8.422163526781283e-02, 8.745683691084406e-02, 9.069150956157375e-02, 9.392562123074448e-02, 9.715915394227871e-02, 1.003920682543799e-01, 1.03624339633918e-01, 1.068559426434123e-01, 1.100868452968916e-01, 1.133170007159366e-01, 1.165464058022141e-01, 1.197750211253674e-01, 1.230028168829675e-01, 1.262297462066314e-01, 1.294558059783573e-01, 1.326809418762508e-01, 1.359051293918239e-01, 1.391283579403384e-01, 1.423505732077956e-01, 1.455717506950337e-01, 1.487918648981409e-01, 1.520108913141628e-01, 1.552288054538229e-01, 1.584455370903015e-01, 1.616610915324422e-01, 1.648753942746268e-01, 1.680884453168553e-01, 1.713001659154146e-01, 1.745125464046788e-01, 1.777242861483587e-01, 1.809330009504466e-01, 1.841373050130616e-01, 1.873458558978773e-01, 1.90551273336959e-01, 1.93751971318725e-01, 1.969505235179315e-01, 2.001522198674434e-01, 2.03349848190748e-01, 2.065415756401514e-01, 2.097290968731537e-01, 2.129177397916222e-01, 2.161059505789207e-01, 2.192927159513678e-01, 2.224775888724079e-01, 2.256603756267469e-01, 2.288409231532403e-01, 2.320191948609422e-01, 2.351950674774287e-01, 2.383684515953064e-01, 2.415391385966842e-01, 2.447053999439506e-01, 2.478668631082888e-01, 2.510234049822424e-01, 2.541749141820585e-01, 2.573210291519433e-01, 2.604614518667152e-01, 2.635958843025503e-01, 2.667239986341022e-01, 2.698455974604863e-01, 2.729603603671691e-01, 2.760684177373884e-01, 2.791691139201226e-01, 2.822616442518145e-01, 2.853470220092938e-01, 2.884235003475566e-01, 2.914913841583853e-01, 2.94551817376538e-01, 2.9760286284561e-01, 3.006432390609133e-01, 3.036726480080285e-01, 3.066942009427049e-01, 3.097051026698925e-01, 3.127045900872844e-01, 3.156920373439789e-01] +ddp_dNrpm.y=[0e+00, 8.454426869497842e-01, 2.608634561975957e+00, 4.708931593135562e+00, 6.933461391209572e+00, 9.203671285530575e+00, 1.149077064730584e+01, 1.37840432436893e+01, 1.607960551312222e+01, 1.837592996485394e+01, 2.067247737995281e+01, 2.296901525834318e+01, 2.526549973093915e+01, 2.756196322270586e+01, 2.985833345077577e+01, 3.215455872048373e+01, 3.445064245319524e+01, 3.674658162071288e+01, 3.904236438580634e+01, 4.133798653972806e+01, 4.363343742627651e+01, 4.592870862761779e+01, 4.822378567397062e+01, 5.051866054156506e+01, 5.28133328348888e+01, 5.510778427124023e+01, 5.740201405914115e+01, 5.969600431382832e+01, 6.198976107911368e+01, 6.428327370327382e+01, 6.657652772288029e+01, 6.886953680684675e+01, 7.116228649083527e+01, 7.345476231384573e+01, 7.57469855694297e+01, 7.80389417957003e+01, 8.03306317926429e+01, 8.26220615905317e+01, 8.491323961783706e+01, 8.720415824521906e+01, 8.949482590522261e+01, 9.178525625120453e+01, 9.407545771489123e+01, 9.636543110140668e+01, 9.865519768944139e+01, 1.009447659128454e+02, 1.032341442078152e+02, 1.055233614789389e+02, 1.078124261618491e+02, 1.101013466940975e+02, 1.123901672363281e+02, 1.146788962256099e+02, 1.169675718090573e+02, 1.192562092453501e+02, 1.215448177820921e+02, 1.23833401812896e+02, 1.261219782141073e+02, 1.284106766858909e+02, 1.306996192979467e+02, 1.329882414759961e+02, 1.352771094107425e+02, 1.375664792687284e+02, 1.398560780101146e+02, 1.421453105399812e+02, 1.444351839404799e+02, 1.467260644235669e+02, 1.490177399617131e+02, 1.513093986411688e+02, 1.536012709436532e+02, 1.558935552340951e+02, 1.581863278067732e+02, 1.60479634438267e+02, 1.627735224892041e+02, 1.650680650810113e+02, 1.673632485433416e+02, 1.696591491699219e+02, 1.719556906665159e+02, 1.742517743979829e+02, 1.765472172597272e+02, 1.788420666095732e+02, 1.811362735105858e+02, 1.834297327296265e+02, 1.857223527136279e+02, 1.880140571683594e+02, 1.90304754540921e+02, 1.9259433963517e+02, 1.948827939682859e+02, 1.971699818197997e+02, 1.994558421540093e+02, 2.017402834179622e+02, 2.040232445764293e+02, 2.063046357420784e+02, 2.085843925587895e+02, 2.108624709053023e+02, 2.131387639702004e+02, 2.154133785647405e+02, 2.17686207877284e+02, 2.199570247556629e+02, 2.222256121300311e+02, 2.244924142206948e+02, 2.267572631835938e+02] +ddp_dm_flow.y=[-1.083289861679077e+00, 1.836464410791655e+02, 2.655389425208451e+02, 2.963598639538888e+02, 2.952748398253218e+02, 2.693557765382816e+02, 2.211941904264775e+02, 1.581559770901988e+02, 1.270210272132919e+02, 1.57407037913163e+02, 2.602036544785254e+02, 4.401833631199096e+02, 6.984201869264209e+02, 1.106771273706332e+03, 2.675006476516693e+03, 4.801907391828265e+03, 6.927962636572359e+03, 8.847992839639852e+03, 1.048724207106105e+04, 1.203077285182909e+04, 1.377555510998927e+04, 1.583658645215334e+04, 1.826003547192464e+04, 2.1112326840448e+04, 2.432381618318297e+04, 2.7499345703125e+04, 3.048399688388597e+04, 3.343327017933512e+04, 3.664035116559442e+04, 4.01728546840122e+04, 4.387852682571451e+04, 4.784172947275374e+04, 5.240864044269631e+04, 5.812353529913323e+04, 6.297816655874213e+04, 6.510890633522748e+04, 6.476173099348402e+04, 6.455584381195145e+04, 6.448492576448623e+04, 6.446163670357878e+04, 6.445475000240979e+04, 6.445208203039085e+04, 6.444943749564607e+04, 6.444630078291241e+04, 6.444507812484633e+04, 6.44446054684706e+04, 6.444444140633149e+04, 6.444444140625466e+04, 6.444446093745809e+04, 6.444449609369412e+04, 6.444449609375e+04, 6.444446874998137e+04, 6.444444140613824e+04, 6.444440624988824e+04, 6.444438281254191e+04, 6.444436718752328e+04, 6.4444359375e+04, 6.444435546875e+04, 6.4444359375e+04, 6.4444359375e+04, 6.4444359375e+04, 6.444436328125e+04, 6.44443671875e+04, 6.44443671875e+04, 6.44443671875e+04, 6.44443671875e+04, 6.44443671875e+04, 4.617589001721035e+04, 1.699297243233116e+04, 6.251220816957398e+03, 2.295225043953325e+03, 8.425447555697267e+02, 3.102969462822969e+02, 1.146027943194907e+02, 4.090987516569808e+01, 1.196562099456787e+01, 2.573107630879595e+00, 8.74637248618256e-01, 3.137337026087672e-01, -6.367735687447964e-01, -1.420955554681931e+00, -1.922168209954507e+00, -1.734162641982286e+00, -8.786503020152869e-01, -2.389630308860372e-01, 1.184126028803113e-01, 1.034133632370922e-01, -9.596472354816941e-03, -7.985205000773081e-02, -2.06635127527084e-01, -1.990548516915853e-01, -2.010741967011486e-01, -1.543111600040089e-01, -8.549058031025958e-02, -3.558237390610144e-02, 1.542633510528725e-02, 6.837971079717203e-02, 9.46277871744463e-02, 7.705351738628846e-02, 6.977082785284122e-02, 7.17436894774437e-02] +dm_flow_dNrpm.y=[-0e+00, 1.192864428166495e-03, 3.680613019013269e-03, 6.643994918831707e-03, 9.782661968780729e-03, 1.298577873285556e-02, 1.62127264455091e-02, 1.944838082082634e-02, 2.268726436609652e-02, 2.59272202437585e-02, 2.916748773451187e-02, 3.240773101092659e-02, 3.564789233090228e-02, 3.888800894740328e-02, 4.212798158884774e-02, 4.536772326251573e-02, 4.860724624611455e-02, 5.184652970924571e-02, 5.508555612759938e-02, 5.832431170071949e-02, 6.15627681498729e-02, 6.480090532406294e-02, 6.803870239705667e-02, 7.127612694138914e-02, 7.451316142863498e-02, 7.774977385997772e-02, 8.098594407881962e-02, 8.422163526781283e-02, 8.745683691084406e-02, 9.069150956157375e-02, 9.392562123074448e-02, 9.715915394227871e-02, 1.003920682543799e-01, 1.03624339633918e-01, 1.068559426434123e-01, 1.100868452968916e-01, 1.133170007159366e-01, 1.165464058022141e-01, 1.197750211253674e-01, 1.230028168829675e-01, 1.262297462066314e-01, 1.294558059783573e-01, 1.326809418762508e-01, 1.359051293918239e-01, 1.391283579403384e-01, 1.423505732077956e-01, 1.455717506950337e-01, 1.487918648981409e-01, 1.520108913141628e-01, 1.552288054538229e-01, 1.584455370903015e-01, 1.616610915324422e-01, 1.648753942746268e-01, 1.680884453168553e-01, 1.713001659154146e-01, 1.745125315036065e-01, 1.777242861483587e-01, 1.809330009504999e-01, 1.841372901120248e-01, 1.873458558978773e-01, 1.90551273336959e-01, 1.937519862198862e-01, 1.969505086168059e-01, 2.001522198674789e-01, 2.033498481908546e-01, 2.065416054424737e-01, 2.097291117743149e-01, 2.129177397917465e-01, 2.161059505789207e-01, 2.192927159513678e-01, 2.224775888724079e-01, 2.256603756267469e-01, 2.288409231532403e-01, 2.320191948609422e-01, 2.351950674774287e-01, 2.383684515953064e-01, 2.41539123695452e-01, 2.447053850427894e-01, 2.478668631082888e-01, 2.510234645865674e-01, 2.541749141820585e-01, 2.573209695473341e-01, 2.604613624596415e-01, 2.63595735291187e-01, 2.667238794248126e-01, 2.698454782511967e-01, 2.729602411576664e-01, 2.76067911098121e-01, 2.791681602457351e-01, 2.822607203785415e-01, 2.853453232754966e-01, 2.884216228004647e-01, 2.914893874050235e-01, 2.945482709013462e-01, 2.975980646715635e-01, 3.006390369364764e-01, 3.036709194739695e-01, 3.066925320135039e-01, 3.097026886840528e-01, 3.127037258169509e-01, 3.156947493553162e-01] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Movers_Validation_Pump_Nrpm_stratos.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Movers_Validation_Pump_Nrpm_stratos.txt index 806384f990..ff27e992c6 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Movers_Validation_Pump_Nrpm_stratos.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Movers_Validation_Pump_Nrpm_stratos.txt @@ -1,4 +1,4 @@ -last-generated=2020-08-17 +last-generated=2022-05-23 statistics-simulation= { "linear": " ", @@ -7,18 +7,18 @@ statistics-simulation= "numerical Jacobians": "0" } time=[0e+00, 1e+03] -pump1.m_flow=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.530119270086288e-02, 2.593111097812653e-01, 4.64754194021225e-01, 6.727915406227112e-01, 8.810967803001404e-01, 1.089427590370178e+00, 1.297760725021362e+00, 1.506093978881836e+00, 1.714427351951599e+00, 1.922760605812073e+00, 2.131093978881836e+00, 2.33942723274231e+00, 2.547760725021362e+00, 2.756093978881836e+00, 2.96442723274231e+00, 3.172760725021362e+00, 3.381093978881836e+00, 3.58942723274231e+00, 3.797760725021362e+00, 4.006093978881836e+00, 4.214427471160889e+00, 4.422760486602783e+00, 4.631093978881836e+00, 4.839427471160889e+00, 5.047760486602783e+00, 5.256093978881836e+00, 5.464427471160889e+00, 5.672760486602783e+00, 5.881093978881836e+00, 6.089427471160889e+00, 6.297760486602783e+00, 6.506093978881836e+00, 6.714427471160889e+00, 6.922760486602783e+00, 7.131093978881836e+00, 7.339427471160889e+00, 7.547760486602783e+00, 7.756093978881836e+00, 7.964427471160889e+00, 8.172760963439941e+00, 8.381093978881836e+00, 8.58942699432373e+00, 8.797760963439941e+00, 9.006093978881836e+00, 9.21442699432373e+00, 9.422760963439941e+00, 9.631093978881836e+00, 9.83942699432373e+00, 1.004776096343994e+01, 1.025609397888184e+01, 1.046442699432373e+01, 1.067276096343994e+01, 1.088109397888184e+01, 1.105801582336426e+01, 1.110439014434814e+01, 1.111040306091309e+01, 1.111104297637939e+01, 1.111110496520996e+01, 1.111110973358154e+01, 1.111111164093018e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01] -pump2.m_flow=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.530119270086288e-02, 2.593111097812653e-01, 4.64754194021225e-01, 6.727915406227112e-01, 8.810967803001404e-01, 1.089427590370178e+00, 1.297760725021362e+00, 1.506093978881836e+00, 1.714427351951599e+00, 1.922760605812073e+00, 2.131093978881836e+00, 2.33942723274231e+00, 2.547760725021362e+00, 2.756093978881836e+00, 2.96442723274231e+00, 3.172760725021362e+00, 3.381093978881836e+00, 3.58942723274231e+00, 3.797760725021362e+00, 4.006093978881836e+00, 4.214427471160889e+00, 4.422760486602783e+00, 4.631093978881836e+00, 4.839427471160889e+00, 5.047760486602783e+00, 5.256093978881836e+00, 5.464427471160889e+00, 5.672760486602783e+00, 5.881093978881836e+00, 6.089427471160889e+00, 6.297760486602783e+00, 6.506093978881836e+00, 6.714427471160889e+00, 6.922760486602783e+00, 7.131093978881836e+00, 7.339427471160889e+00, 7.547760486602783e+00, 7.756093978881836e+00, 7.964427471160889e+00, 8.172760963439941e+00, 8.381093978881836e+00, 8.58942699432373e+00, 8.797760963439941e+00, 9.006093978881836e+00, 9.21442699432373e+00, 9.422760963439941e+00, 9.631093978881836e+00, 9.83942699432373e+00, 1.004776096343994e+01, 1.025609397888184e+01, 1.046442699432373e+01, 1.067276096343994e+01, 1.088109397888184e+01, 1.108942699432373e+01, 1.129776096343994e+01, 1.150609397888184e+01, 1.171442699432373e+01, 1.192276096343994e+01, 1.213109397888184e+01, 1.233942699432373e+01, 1.254776096343994e+01, 1.275609397888184e+01, 1.296442699432373e+01, 1.317276096343994e+01, 1.338109397888184e+01, 1.358942699432373e+01, 1.379776096343994e+01, 1.400609397888184e+01, 1.421442699432373e+01, 1.442276096343994e+01, 1.463109397888184e+01, 1.483942699432373e+01, 1.504776096343994e+01, 1.522468376159668e+01, 1.527105712890625e+01, 1.527706909179688e+01, 1.527770900726318e+01, 1.527777099609375e+01, 1.527777671813965e+01, 1.527777862548828e+01, 1.527777767181396e+01, 1.527777767181396e+01, 1.527777767181396e+01, 1.527777767181396e+01, 1.527777767181396e+01, 1.527777767181396e+01, 1.527777767181396e+01, 1.527777767181396e+01, 1.527777767181396e+01, 1.527777767181396e+01] -pump3.m_flow=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.530119270086288e-02, 2.593111097812653e-01, 4.64754194021225e-01, 6.727915406227112e-01, 8.810967803001404e-01, 1.089427590370178e+00, 1.297760725021362e+00, 1.506093978881836e+00, 1.714427351951599e+00, 1.922760605812073e+00, 2.131093978881836e+00, 2.33942723274231e+00, 2.547760725021362e+00, 2.756093978881836e+00, 2.96442723274231e+00, 3.172760725021362e+00, 3.381093978881836e+00, 3.58942723274231e+00, 3.797760725021362e+00, 4.006093978881836e+00, 4.214427471160889e+00, 4.422760486602783e+00, 4.631093978881836e+00, 4.839427471160889e+00, 5.047760486602783e+00, 5.256093978881836e+00, 5.464427471160889e+00, 5.672760486602783e+00, 5.881093978881836e+00, 6.089427471160889e+00, 6.297760486602783e+00, 6.506093978881836e+00, 6.714427471160889e+00, 6.922760486602783e+00, 7.131093978881836e+00, 7.339427471160889e+00, 7.547760486602783e+00, 7.756093978881836e+00, 7.964427471160889e+00, 8.172760963439941e+00, 8.381093978881836e+00, 8.58942699432373e+00, 8.797760963439941e+00, 9.006093978881836e+00, 9.21442699432373e+00, 9.422760963439941e+00, 9.631093978881836e+00, 9.83942699432373e+00, 1.004776096343994e+01, 1.025609397888184e+01, 1.046442699432373e+01, 1.067276096343994e+01, 1.088109397888184e+01, 1.105801582336426e+01, 1.110439014434814e+01, 1.111040306091309e+01, 1.111104297637939e+01, 1.111110496520996e+01, 1.111110973358154e+01, 1.111111164093018e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01] -pump4.m_flow=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.530119270086288e-02, 2.593111097812653e-01, 4.64754194021225e-01, 6.727915406227112e-01, 8.810967803001404e-01, 1.089427590370178e+00, 1.297760725021362e+00, 1.506093978881836e+00, 1.714427351951599e+00, 1.922760605812073e+00, 2.131093978881836e+00, 2.33942723274231e+00, 2.547760725021362e+00, 2.756093978881836e+00, 2.96442723274231e+00, 3.172760725021362e+00, 3.381093978881836e+00, 3.58942723274231e+00, 3.797760725021362e+00, 4.006093978881836e+00, 4.214427471160889e+00, 4.422760486602783e+00, 4.631093978881836e+00, 4.839427471160889e+00, 5.047760486602783e+00, 5.256093978881836e+00, 5.464427471160889e+00, 5.672760486602783e+00, 5.881093978881836e+00, 6.058016777038574e+00, 6.104390144348145e+00, 6.110403060913086e+00, 6.111042499542236e+00, 6.111104488372803e+00, 6.111110687255859e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00] -pump5.m_flow=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.530119270086288e-02, 2.593111097812653e-01, 4.64754194021225e-01, 6.727915406227112e-01, 8.810967803001404e-01, 1.089427590370178e+00, 1.297760725021362e+00, 1.506093978881836e+00, 1.714427351951599e+00, 1.922760605812073e+00, 2.131093978881836e+00, 2.33942723274231e+00, 2.547760725021362e+00, 2.756093978881836e+00, 2.96442723274231e+00, 3.172760725021362e+00, 3.381093978881836e+00, 3.58942723274231e+00, 3.797760725021362e+00, 4.006093978881836e+00, 4.214427471160889e+00, 4.391349315643311e+00, 4.437723159790039e+00, 4.443736553192139e+00, 4.444375991821289e+00, 4.444437980651855e+00, 4.444443702697754e+00, 4.444444179534912e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00] -forcedPump1.dp=[7.83562578125e+04, 9.90089765625e+04, 1.00647609375e+05, 1.00770484375e+05, 1.0077965625e+05, 1.0078034375e+05, 1.00780390625e+05, 1.007803984375e+05, 1.007803984375e+05, 1.007803984375e+05, 1.007803984375e+05, 1.007768984375e+05, 1.007680078125e+05, 1.007576015625e+05, 1.007466875e+05, 1.00735515625e+05, 1.0072421875e+05, 1.00712953125e+05, 1.007018515625e+05, 1.006910390625e+05, 1.006806640625e+05, 1.006708671875e+05, 1.006617734375e+05, 1.006535234375e+05, 1.006462578125e+05, 1.00640109375e+05, 1.006352109375e+05, 1.0063134375e+05, 1.0062796875e+05, 1.00624546875e+05, 1.00620578125e+05, 1.00615515625e+05, 1.00608859375e+05, 1.006000859375e+05, 1.005886640625e+05, 1.005740703125e+05, 1.00555796875e+05, 1.005333125e+05, 1.005061015625e+05, 1.00473640625e+05, 1.004353984375e+05, 1.00390828125e+05, 1.003189453125e+05, 1.002041640625e+05, 1.000486484375e+05, 9.98545390625e+04, 9.96240078125e+04, 9.93592109375e+04, 9.9062296875e+04, 9.87354296875e+04, 9.8380765625e+04, 9.800046875e+04, 9.75966875e+04, 9.71715625e+04, 9.67250625e+04, 9.62545234375e+04, 9.5757390625e+04, 9.52311015625e+04, 9.46731015625e+04, 9.40808359375e+04, 9.345175e+04, 9.27832890625e+04, 9.2072890625e+04, 9.13180078125e+04, 9.06401015625e+04, 9.0456375e+04, 9.043234375e+04, 9.04297890625e+04, 9.04295390625e+04, 9.0429515625e+04, 9.04295078125e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04] -forcedPump2.dp=[7.83562578125e+04, 7.83562578125e+04, 7.83562578125e+04, 7.83562578125e+04, 7.83562578125e+04, 7.83562578125e+04, 7.83562578125e+04, 7.83562578125e+04, 7.83562578125e+04, 7.83562578125e+04, 7.83562578125e+04, 7.835315625e+04, 7.83452421875e+04, 7.83359609375e+04, 7.83262109375e+04, 7.8316265625e+04, 7.83062890625e+04, 7.82964296875e+04, 7.828684375e+04, 7.82776875e+04, 7.82691171875e+04, 7.82612890625e+04, 7.82543515625e+04, 7.824846875e+04, 7.8243796875e+04, 7.824025e+04, 7.8237234375e+04, 7.823415625e+04, 7.82304296875e+04, 7.82254609375e+04, 7.82186640625e+04, 7.82094375e+04, 7.81971953125e+04, 7.818134375e+04, 7.8161296875e+04, 7.81364609375e+04, 7.810625e+04, 7.80700625e+04, 7.80201171875e+04, 7.7929359375e+04, 7.779740625e+04, 7.76266875e+04, 7.74196640625e+04, 7.71787734375e+04, 7.69064609375e+04, 7.66051875e+04, 7.62773828125e+04, 7.59255078125e+04, 7.5551984375e+04, 7.51570390625e+04, 7.473771875e+04, 7.4291140625e+04, 7.3814390625e+04, 7.33045859375e+04, 7.2758828125e+04, 7.2174203125e+04, 7.15478203125e+04, 7.08767890625e+04, 7.01574765625e+04, 6.9383515625e+04, 6.855575e+04, 6.767634375e+04, 6.67474453125e+04, 6.577121875e+04, 6.47498125e+04, 6.3685390625e+04, 6.257675390625e+04, 6.1419390625e+04, 6.021051953125e+04, 5.89473671875e+04, 5.762715625e+04, 5.6247109375e+04, 5.48053046875e+04, 5.33065625e+04, 5.174723828125e+04, 5.012122265625e+04, 4.84224140625e+04, 4.664469921875e+04, 4.4778953125e+04, 4.28016875e+04, 4.073221875e+04, 3.85990703125e+04, 3.64307578125e+04, 3.42558046875e+04, 3.242482421875e+04, 3.19496953125e+04, 3.188827734375e+04, 3.1881744140625e+04, 3.1881109375e+04, 3.1881060546875e+04, 3.1881041015625e+04, 3.188104296875e+04, 3.1881044921875e+04, 3.1881044921875e+04, 3.1881044921875e+04, 3.1881044921875e+04, 3.1881044921875e+04, 3.1881044921875e+04, 3.1881044921875e+04, 3.1881044921875e+04, 3.1881044921875e+04] -forcedPump3.dp=[7.83562578125e+04, 4.512932421875e+04, 4.3014140625e+04, 4.2858265625e+04, 4.2846640625e+04, 4.28457734375e+04, 4.28457109375e+04, 4.2845703125e+04, 4.284570703125e+04, 4.2845703125e+04, 4.2845703125e+04, 4.284337890625e+04, 4.283737890625e+04, 4.283029296875e+04, 4.28228984375e+04, 4.281548046875e+04, 4.28082578125e+04, 4.280144140625e+04, 4.27952421875e+04, 4.27898671875e+04, 4.27855234375e+04, 4.278239453125e+04, 4.278004296875e+04, 4.277765625e+04, 4.27744375e+04, 4.27695859375e+04, 4.27623046875e+04, 4.27517890625e+04, 4.273723828125e+04, 4.271786328125e+04, 4.26928515625e+04, 4.26557109375e+04, 4.25791640625e+04, 4.246258984375e+04, 4.230929296875e+04, 4.212258203125e+04, 4.1905765625e+04, 4.166216015625e+04, 4.139506640625e+04, 4.110669921875e+04, 4.07941484375e+04, 4.045346875e+04, 4.008073828125e+04, 3.967204296875e+04, 3.922345703125e+04, 3.873106640625e+04, 3.818964453125e+04, 3.759371875e+04, 3.694563671875e+04, 3.62483203125e+04, 3.55046875e+04, 3.471760546875e+04, 3.3885296875e+04, 3.3002796875e+04, 3.20663515625e+04, 3.1072205078125e+04, 3.00169296875e+04, 2.8903662109375e+04, 2.7728056640625e+04, 2.6481849609375e+04, 2.515678125e+04, 2.3734591796875e+04, 2.221242578125e+04, 2.0627994140625e+04, 1.926232421875e+04, 1.8904478515625e+04, 1.8858134765625e+04, 1.8853208984375e+04, 1.8852728515625e+04, 1.88526875e+04, 1.8852677734375e+04, 1.88526796875e+04, 1.88526796875e+04, 1.88526796875e+04, 1.88526796875e+04, 1.88526796875e+04, 1.8852681640625e+04, 1.8852681640625e+04, 1.8852681640625e+04, 1.8852681640625e+04, 1.8852681640625e+04, 1.8852681640625e+04, 1.8852681640625e+04, 1.88526796875e+04, 1.88526796875e+04, 1.88526796875e+04, 1.88526796875e+04, 1.88526796875e+04, 1.88526796875e+04, 1.88526796875e+04, 1.88526796875e+04, 1.88526796875e+04, 1.88526796875e+04, 1.88526796875e+04, 1.88526796875e+04, 1.88526796875e+04, 1.88526796875e+04, 1.88526796875e+04, 1.88526796875e+04, 1.88526796875e+04, 1.88526796875e+04] -forcedPump4.dp=[7.83562578125e+04, 1.21382234375e+05, 1.249705625e+05, 1.25240546875e+05, 1.252607109375e+05, 1.2526221875e+05, 1.25262328125e+05, 1.2526234375e+05, 1.252623359375e+05, 1.2526234375e+05, 1.2526234375e+05, 1.25258453125e+05, 1.25248609375e+05, 1.252371328125e+05, 1.2522509375e+05, 1.252127421875e+05, 1.2520021875e+05, 1.251876484375e+05, 1.251751484375e+05, 1.251628515625e+05, 1.251508671875e+05, 1.251393203125e+05, 1.2512834375e+05, 1.251180546875e+05, 1.251085703125e+05, 1.251000234375e+05, 1.250925234375e+05, 1.250862109375e+05, 1.2508115625e+05, 1.25077015625e+05, 1.250732890625e+05, 1.250695234375e+05, 1.250652421875e+05, 1.250599765625e+05, 1.250532578125e+05, 1.25044625e+05, 1.25033609375e+05, 1.250197421875e+05, 1.25002546875e+05, 1.249815703125e+05, 1.249604296875e+05, 1.2495434375e+05, 1.249535390625e+05, 1.24953453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05] -forcedPump5.dp=[7.83562578125e+04, 1.21476435546875e+04, 9.51540625e+03, 9.3317724609375e+03, 9.318134765625e+03, 9.3171171875e+03, 9.317044921875e+03, 9.3170341796875e+03, 9.317037109375e+03, 9.3170341796875e+03, 9.317033203125e+03, 9.3158857421875e+03, 9.3128330078125e+03, 9.3093193359375e+03, 9.306072265625e+03, 9.30358203125e+03, 9.3021455078125e+03, 9.3006884765625e+03, 9.29749609375e+03, 9.2908525390625e+03, 9.2789912109375e+03, 9.2408076171875e+03, 9.164931640625e+03, 9.0584609375e+03, 8.928126953125e+03, 8.772828125e+03, 8.5843662109375e+03, 8.3542978515625e+03, 8.07286181640625e+03, 7.7413671875e+03, 7.36500390625e+03, 6.9387421875e+03, 6.53136962890625e+03, 6.4175234375e+03, 6.40255615234375e+03, 6.40096044921875e+03, 6.40080615234375e+03, 6.40079248046875e+03, 6.40079052734375e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03] -pump1.P=[4.36944091796875e+02, 6.206221313476562e+02, 6.360929565429688e+02, 6.372581176757812e+02, 6.373451538085938e+02, 6.373516845703125e+02, 6.373521118164062e+02, 6.373521728515625e+02, 6.373521728515625e+02, 6.373521728515625e+02, 6.373522338867188e+02, 6.426599731445312e+02, 6.554689331054688e+02, 6.6954248046875e+02, 6.83611328125e+02, 6.97579345703125e+02, 7.11495361328125e+02, 7.2542333984375e+02, 7.394284057617188e+02, 7.535760498046875e+02, 7.679315795898438e+02, 7.82560546875e+02, 7.975281982421875e+02, 8.129000854492188e+02, 8.287415771484375e+02, 8.451179809570312e+02, 8.620972290039062e+02, 8.79808349609375e+02, 8.982250366210938e+02, 9.17248779296875e+02, 9.367811279296875e+02, 9.567235107421875e+02, 9.769774169921875e+02, 9.974443969726562e+02, 1.01802587890625e+03, 1.038623413085938e+03, 1.059138427734375e+03, 1.079472412109375e+03, 1.099526977539062e+03, 1.119203491210938e+03, 1.138403442382812e+03, 1.15702880859375e+03, 1.175201293945312e+03, 1.193089233398438e+03, 1.210715209960938e+03, 1.228101806640625e+03, 1.245271728515625e+03, 1.262247436523438e+03, 1.279051635742188e+03, 1.295706909179688e+03, 1.31223583984375e+03, 1.328661010742188e+03, 1.345005004882812e+03, 1.36129150390625e+03, 1.377591186523438e+03, 1.393895751953125e+03, 1.4101474609375e+03, 1.426288818359375e+03, 1.44226220703125e+03, 1.458010131835938e+03, 1.473474731445312e+03, 1.488598754882812e+03, 1.503324340820312e+03, 1.517593994140625e+03, 1.529311401367188e+03, 1.5323212890625e+03, 1.5327099609375e+03, 1.532751342773438e+03, 1.532755249023438e+03, 1.532755615234375e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03] -pump2.P=[4.36944091796875e+02, 4.36944091796875e+02, 4.36944091796875e+02, 4.36944091796875e+02, 4.36944091796875e+02, 4.36944091796875e+02, 4.36944091796875e+02, 4.36944091796875e+02, 4.36944091796875e+02, 4.36944091796875e+02, 4.36944091796875e+02, 4.410687561035156e+02, 4.510078125e+02, 4.619131774902344e+02, 4.728125e+02, 4.836459350585938e+02, 4.94466064453125e+02, 5.053371276855469e+02, 5.163244018554688e+02, 5.274932250976562e+02, 5.389091186523438e+02, 5.506373901367188e+02, 5.627434692382812e+02, 5.752927856445312e+02, 5.883507690429688e+02, 6.020260620117188e+02, 6.163313598632812e+02, 6.311682739257812e+02, 6.464382934570312e+02, 6.620429077148438e+02, 6.778836059570312e+02, 6.938619384765625e+02, 7.098792724609375e+02, 7.258372802734375e+02, 7.416372680664062e+02, 7.571808471679688e+02, 7.723694458007812e+02, 7.871046142578125e+02, 8.013530883789062e+02, 8.153215942382812e+02, 8.290548095703125e+02, 8.425753784179688e+02, 8.559059448242188e+02, 8.690690307617188e+02, 8.820872802734375e+02, 8.949832763671875e+02, 9.077796630859375e+02, 9.204989624023438e+02, 9.331644897460938e+02, 9.4583837890625e+02, 9.585100708007812e+02, 9.711220092773438e+02, 9.836165771484375e+02, 9.959361572265625e+02, 1.008023193359375e+03, 1.019820068359375e+03, 1.031269287109375e+03, 1.042313110351562e+03, 1.05290673828125e+03, 1.063102294921875e+03, 1.072906860351562e+03, 1.082311401367188e+03, 1.091307006835938e+03, 1.099884643554688e+03, 1.108035400390625e+03, 1.115750366210938e+03, 1.123005981445312e+03, 1.129784912109375e+03, 1.136087524414062e+03, 1.141914184570312e+03, 1.147265380859375e+03, 1.152141357421875e+03, 1.15654296875e+03, 1.160464111328125e+03, 1.163878173828125e+03, 1.166755249023438e+03, 1.16906591796875e+03, 1.170780395507812e+03, 1.171843139648438e+03, 1.172058715820312e+03, 1.171569213867188e+03, 1.17059326171875e+03, 1.169349487304688e+03, 1.16805615234375e+03, 1.167082153320312e+03, 1.166863647460938e+03, 1.166836791992188e+03, 1.166833862304688e+03, 1.166833618164062e+03, 1.166833618164062e+03, 1.166833618164062e+03, 1.166833618164062e+03, 1.166833618164062e+03, 1.166833618164062e+03, 1.166833618164062e+03, 1.166833618164062e+03, 1.166833618164062e+03, 1.166833618164062e+03, 1.166833618164062e+03, 1.166833618164062e+03, 1.166833618164062e+03] -pump3.P=[4.36944091796875e+02, 1.909869232177734e+02, 1.777183532714844e+02, 1.767532043457031e+02, 1.766812896728516e+02, 1.766759185791016e+02, 1.76675537109375e+02, 1.766754913330078e+02, 1.766755065917969e+02, 1.766754913330078e+02, 1.766754760742188e+02, 1.789274749755859e+02, 1.843316955566406e+02, 1.902439880371094e+02, 1.961623840332031e+02, 2.020842895507812e+02, 2.080681610107422e+02, 2.141787872314453e+02, 2.204814758300781e+02, 2.270416564941406e+02, 2.339247131347656e+02, 2.412034301757812e+02, 2.489526977539062e+02, 2.570982360839844e+02, 2.655415954589844e+02, 2.741841735839844e+02, 2.829275512695312e+02, 2.916731872558594e+02, 3.003225402832031e+02, 3.087771606445312e+02, 3.169385070800781e+02, 3.247470703125e+02, 3.323451843261719e+02, 3.397773742675781e+02, 3.470662231445312e+02, 3.542343139648438e+02, 3.613042907714844e+02, 3.682987365722656e+02, 3.75240234375e+02, 3.821669311523438e+02, 3.890924987792969e+02, 3.959611511230469e+02, 4.0271533203125e+02, 4.092973937988281e+02, 4.156497802734375e+02, 4.217148742675781e+02, 4.274548950195312e+02, 4.329044799804688e+02, 4.380598449707031e+02, 4.429120178222656e+02, 4.474520568847656e+02, 4.516707763671875e+02, 4.55546875e+02, 4.590706787109375e+02, 4.622424926757812e+02, 4.650627136230469e+02, 4.675318603515625e+02, 4.696452331542969e+02, 4.713772277832031e+02, 4.726981811523438e+02, 4.735784912109375e+02, 4.739219970703125e+02, 4.737006225585938e+02, 4.731275939941406e+02, 4.725277709960938e+02, 4.72371337890625e+02, 4.723513793945312e+02, 4.723492736816406e+02, 4.723490600585938e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02] -pump4.P=[4.36944091796875e+02, 8.424577026367188e+02, 8.800897216796875e+02, 8.829432983398438e+02, 8.831565551757812e+02, 8.831724853515625e+02, 8.831736450195312e+02, 8.831737670898438e+02, 8.831737670898438e+02, 8.831737670898438e+02, 8.83173828125e+02, 8.897735595703125e+02, 9.057191162109375e+02, 9.232597045898438e+02, 9.408016967773438e+02, 9.5820947265625e+02, 9.755277099609375e+02, 9.928200073242188e+02, 1.010151428222656e+03, 1.027587524414062e+03, 1.045193603515625e+03, 1.06303515625e+03, 1.081177490234375e+03, 1.09968603515625e+03, 1.118626220703125e+03, 1.1380634765625e+03, 1.158063110351562e+03, 1.178690673828125e+03, 1.200027587890625e+03, 1.222202880859375e+03, 1.245151489257812e+03, 1.26877490234375e+03, 1.292974487304688e+03, 1.317651733398438e+03, 1.342708251953125e+03, 1.36804541015625e+03, 1.393564819335938e+03, 1.419167846679688e+03, 1.444756103515625e+03, 1.470231079101562e+03, 1.49170263671875e+03, 1.4972978515625e+03, 1.498022216796875e+03, 1.498099243164062e+03, 1.498106689453125e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03] -pump5.P=[4.36944091796875e+02, 2.66718692779541e+01, 1.84908275604248e+01, 1.795815086364746e+01, 1.791879844665527e+01, 1.791586303710938e+01, 1.79156551361084e+01, 1.791562271118164e+01, 1.791563034057617e+01, 1.791562461853027e+01, 1.791562080383301e+01, 1.840224456787109e+01, 1.955545234680176e+01, 2.08275203704834e+01, 2.216099166870117e+01, 2.360690307617188e+01, 2.523238945007324e+01, 2.703916931152344e+01, 2.893294906616211e+01, 3.081521606445312e+01, 3.258761978149414e+01, 3.423546981811523e+01, 3.581338500976562e+01, 3.734397125244141e+01, 3.885184860229492e+01, 4.034844207763672e+01, 4.178400039672852e+01, 4.310113525390625e+01, 4.427668380737305e+01, 4.531203079223633e+01, 4.619688415527344e+01, 4.69188346862793e+01, 4.740321731567383e+01, 4.751062393188477e+01, 4.752394104003906e+01, 4.752534866333008e+01, 4.752548599243164e+01, 4.752549743652344e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01] +pump1.m_flow=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.514491677284241e-02, 2.590211033821106e-01, 4.644336700439453e-01, 6.724663376808167e-01, 8.807709813117981e-01, 1.089101672172546e+00, 1.29743480682373e+00, 1.505768179893494e+00, 1.714101552963257e+00, 1.92243480682373e+00, 2.130768060684204e+00, 2.339101552963257e+00, 2.54743480682373e+00, 2.755768060684204e+00, 2.964101552963257e+00, 3.17243480682373e+00, 3.380768060684204e+00, 3.589101552963257e+00, 3.79743480682373e+00, 4.005768299102783e+00, 4.214101314544678e+00, 4.42243480682373e+00, 4.630768299102783e+00, 4.839101314544678e+00, 5.04743480682373e+00, 5.255768299102783e+00, 5.464101314544678e+00, 5.67243480682373e+00, 5.880768299102783e+00, 6.089101314544678e+00, 6.29743480682373e+00, 6.505768299102783e+00, 6.714101314544678e+00, 6.92243480682373e+00, 7.130768299102783e+00, 7.339101314544678e+00, 7.54743480682373e+00, 7.755768299102783e+00, 7.964101314544678e+00, 8.17243480682373e+00, 8.380767822265625e+00, 8.589101791381836e+00, 8.79743480682373e+00, 9.005767822265625e+00, 9.214101791381836e+00, 9.42243480682373e+00, 9.630767822265625e+00, 9.839101791381836e+00, 1.004743480682373e+01, 1.025576782226562e+01, 1.046410179138184e+01, 1.067243480682373e+01, 1.088076782226562e+01, 1.105775451660156e+01, 1.1104323387146e+01, 1.111039257049561e+01, 1.111104106903076e+01, 1.111110496520996e+01, 1.111110973358154e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01] +pump2.m_flow=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.514491677284241e-02, 2.590211033821106e-01, 4.644336700439453e-01, 6.724663376808167e-01, 8.807709813117981e-01, 1.089101672172546e+00, 1.29743480682373e+00, 1.505768179893494e+00, 1.714101552963257e+00, 1.92243480682373e+00, 2.130768060684204e+00, 2.339101552963257e+00, 2.54743480682373e+00, 2.755768060684204e+00, 2.964101552963257e+00, 3.17243480682373e+00, 3.380768060684204e+00, 3.589101552963257e+00, 3.79743480682373e+00, 4.005768299102783e+00, 4.214101314544678e+00, 4.42243480682373e+00, 4.630768299102783e+00, 4.839101314544678e+00, 5.04743480682373e+00, 5.255768299102783e+00, 5.464101314544678e+00, 5.67243480682373e+00, 5.880768299102783e+00, 6.089101314544678e+00, 6.29743480682373e+00, 6.505768299102783e+00, 6.714101314544678e+00, 6.92243480682373e+00, 7.130768299102783e+00, 7.339101314544678e+00, 7.54743480682373e+00, 7.755768299102783e+00, 7.964101314544678e+00, 8.17243480682373e+00, 8.380767822265625e+00, 8.589101791381836e+00, 8.79743480682373e+00, 9.005767822265625e+00, 9.214101791381836e+00, 9.42243480682373e+00, 9.630767822265625e+00, 9.839101791381836e+00, 1.004743480682373e+01, 1.025576782226562e+01, 1.046410179138184e+01, 1.067243480682373e+01, 1.088076782226562e+01, 1.108910179138184e+01, 1.129743480682373e+01, 1.150576782226562e+01, 1.171410179138184e+01, 1.192243480682373e+01, 1.213076782226562e+01, 1.233910179138184e+01, 1.254743480682373e+01, 1.275576782226562e+01, 1.296410179138184e+01, 1.317243480682373e+01, 1.338076782226562e+01, 1.358910179138184e+01, 1.379743480682373e+01, 1.400576782226562e+01, 1.421410179138184e+01, 1.442243480682373e+01, 1.463076782226562e+01, 1.483910179138184e+01, 1.504743480682373e+01, 1.522443866729736e+01, 1.527099323272705e+01, 1.527705955505371e+01, 1.527770805358887e+01, 1.527777099609375e+01, 1.527777671813965e+01, 1.527777671813965e+01, 1.527777767181396e+01, 1.527777767181396e+01, 1.527777767181396e+01, 1.527777767181396e+01, 1.527777767181396e+01, 1.527777767181396e+01, 1.527777767181396e+01, 1.527777767181396e+01, 1.527777767181396e+01, 1.527777767181396e+01] +pump3.m_flow=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.514491677284241e-02, 2.590211033821106e-01, 4.644336700439453e-01, 6.724663376808167e-01, 8.807709813117981e-01, 1.089101672172546e+00, 1.29743480682373e+00, 1.505768179893494e+00, 1.714101552963257e+00, 1.92243480682373e+00, 2.130768060684204e+00, 2.339101552963257e+00, 2.54743480682373e+00, 2.755768060684204e+00, 2.964101552963257e+00, 3.17243480682373e+00, 3.380768060684204e+00, 3.589101552963257e+00, 3.79743480682373e+00, 4.005768299102783e+00, 4.214101314544678e+00, 4.42243480682373e+00, 4.630768299102783e+00, 4.839101314544678e+00, 5.04743480682373e+00, 5.255768299102783e+00, 5.464101314544678e+00, 5.67243480682373e+00, 5.880768299102783e+00, 6.089101314544678e+00, 6.29743480682373e+00, 6.505768299102783e+00, 6.714101314544678e+00, 6.92243480682373e+00, 7.130768299102783e+00, 7.339101314544678e+00, 7.54743480682373e+00, 7.755768299102783e+00, 7.964101314544678e+00, 8.17243480682373e+00, 8.380767822265625e+00, 8.589101791381836e+00, 8.79743480682373e+00, 9.005767822265625e+00, 9.214101791381836e+00, 9.42243480682373e+00, 9.630767822265625e+00, 9.839101791381836e+00, 1.004743480682373e+01, 1.025576782226562e+01, 1.046410179138184e+01, 1.067243480682373e+01, 1.088076782226562e+01, 1.105775451660156e+01, 1.1104323387146e+01, 1.111039257049561e+01, 1.111104106903076e+01, 1.111110496520996e+01, 1.111110973358154e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01, 1.111111068725586e+01] +pump4.m_flow=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.514491677284241e-02, 2.590211033821106e-01, 4.644336700439453e-01, 6.724663376808167e-01, 8.807709813117981e-01, 1.089101672172546e+00, 1.29743480682373e+00, 1.505768179893494e+00, 1.714101552963257e+00, 1.92243480682373e+00, 2.130768060684204e+00, 2.339101552963257e+00, 2.54743480682373e+00, 2.755768060684204e+00, 2.964101552963257e+00, 3.17243480682373e+00, 3.380768060684204e+00, 3.589101552963257e+00, 3.79743480682373e+00, 4.005768299102783e+00, 4.214101314544678e+00, 4.42243480682373e+00, 4.630768299102783e+00, 4.839101314544678e+00, 5.04743480682373e+00, 5.255768299102783e+00, 5.464101314544678e+00, 5.67243480682373e+00, 5.880768299102783e+00, 6.057771682739258e+00, 6.104327201843262e+00, 6.110393047332764e+00, 6.111041069030762e+00, 6.111104488372803e+00, 6.111110687255859e+00, 6.111110687255859e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00, 6.111111164093018e+00] +pump5.m_flow=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.514491677284241e-02, 2.590211033821106e-01, 4.644336700439453e-01, 6.724663376808167e-01, 8.807709813117981e-01, 1.089101672172546e+00, 1.29743480682373e+00, 1.505768179893494e+00, 1.714101552963257e+00, 1.92243480682373e+00, 2.130768060684204e+00, 2.339101552963257e+00, 2.54743480682373e+00, 2.755768060684204e+00, 2.964101552963257e+00, 3.17243480682373e+00, 3.380768060684204e+00, 3.589101552963257e+00, 3.79743480682373e+00, 4.005768299102783e+00, 4.214101314544678e+00, 4.391105651855469e+00, 4.437659740447998e+00, 4.443726062774658e+00, 4.444374561309814e+00, 4.444437980651855e+00, 4.444443702697754e+00, 4.444444179534912e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00, 4.44444465637207e+00] +forcedPump1.dp=[7.83562578125e+04, 9.89996875e+04, 1.00646203125e+05, 1.007703203125e+05, 1.00779640625e+05, 1.0078034375e+05, 1.00780390625e+05, 1.007803984375e+05, 1.007803984375e+05, 1.007803984375e+05, 1.007803984375e+05, 1.0077690625e+05, 1.007680234375e+05, 1.00757625e+05, 1.00746703125e+05, 1.0073553125e+05, 1.007242421875e+05, 1.0071296875e+05, 1.007018671875e+05, 1.006910546875e+05, 1.006806796875e+05, 1.006708828125e+05, 1.006617890625e+05, 1.006535390625e+05, 1.00646265625e+05, 1.006401171875e+05, 1.006352109375e+05, 1.006313515625e+05, 1.0062796875e+05, 1.006245546875e+05, 1.00620578125e+05, 1.0061553125e+05, 1.00608875e+05, 1.006001015625e+05, 1.005886796875e+05, 1.005741015625e+05, 1.00555828125e+05, 1.005333515625e+05, 1.005061484375e+05, 1.004736953125e+05, 1.0043546875e+05, 1.0039090625e+05, 1.0031909375e+05, 1.002043828125e+05, 1.00048921875e+05, 9.9854875e+04, 9.96243984375e+04, 9.93596484375e+04, 9.90627890625e+04, 9.87359609375e+04, 9.838134375e+04, 9.8001078125e+04, 9.75973359375e+04, 9.71722421875e+04, 9.672578125e+04, 9.625528125e+04, 9.57581875e+04, 9.52319453125e+04, 9.4674e+04, 9.40817890625e+04, 9.3452765625e+04, 9.27843671875e+04, 9.20740390625e+04, 9.13192265625e+04, 9.06411328125e+04, 9.0456640625e+04, 9.0432390625e+04, 9.0429796875e+04, 9.04295390625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04, 9.0429515625e+04] +forcedPump2.dp=[7.83562578125e+04, 7.83562578125e+04, 7.83562578125e+04, 7.83562578125e+04, 7.83562578125e+04, 7.83562578125e+04, 7.83562578125e+04, 7.83562578125e+04, 7.83562578125e+04, 7.83562578125e+04, 7.83562578125e+04, 7.835315625e+04, 7.83452578125e+04, 7.833596875e+04, 7.83262265625e+04, 7.831628125e+04, 7.83063046875e+04, 7.82964453125e+04, 7.8286859375e+04, 7.8277703125e+04, 7.82691328125e+04, 7.8261296875e+04, 7.82543671875e+04, 7.82484765625e+04, 7.82438046875e+04, 7.824025e+04, 7.8237234375e+04, 7.82341640625e+04, 7.82304375e+04, 7.822546875e+04, 7.8218671875e+04, 7.8209453125e+04, 7.819721875e+04, 7.8181375e+04, 7.81613359375e+04, 7.81365078125e+04, 7.8106296875e+04, 7.8070125e+04, 7.80202265625e+04, 7.79295390625e+04, 7.7797640625e+04, 7.7626984375e+04, 7.74200078125e+04, 7.7179171875e+04, 7.69069140625e+04, 7.66056796875e+04, 7.62779140625e+04, 7.5926078125e+04, 7.55525859375e+04, 7.5157671875e+04, 7.47383984375e+04, 7.4291859375e+04, 7.38151640625e+04, 7.33054140625e+04, 7.27597109375e+04, 7.21751484375e+04, 7.15488359375e+04, 7.0877875e+04, 7.01586484375e+04, 6.9384765625e+04, 6.85570859375e+04, 6.76777578125e+04, 6.67489375e+04, 6.577278125e+04, 6.47514453125e+04, 6.368708984375e+04, 6.257852734375e+04, 6.142123828125e+04, 6.0212453125e+04, 5.894938671875e+04, 5.7629265625e+04, 5.624931640625e+04, 5.480760546875e+04, 5.330894921875e+04, 5.17497265625e+04, 5.012382421875e+04, 4.84251328125e+04, 4.664754296875e+04, 4.478195703125e+04, 4.2804859375e+04, 4.073551171875e+04, 3.860244140625e+04, 3.643416015625e+04, 3.425919921875e+04, 3.2427341796875e+04, 3.1950345703125e+04, 3.188837890625e+04, 3.18817578125e+04, 3.1881111328125e+04, 3.188105078125e+04, 3.188105078125e+04, 3.1881044921875e+04, 3.188104296875e+04, 3.1881044921875e+04, 3.188104296875e+04, 3.188104296875e+04, 3.1881044921875e+04, 3.1881044921875e+04, 3.1881044921875e+04, 3.1881044921875e+04, 3.1881044921875e+04] +forcedPump3.dp=[7.83562578125e+04, 4.514151171875e+04, 4.3015921875e+04, 4.285846875e+04, 4.284666015625e+04, 4.284577734375e+04, 4.28457109375e+04, 4.2845703125e+04, 4.284570703125e+04, 4.2845703125e+04, 4.2845703125e+04, 4.28433828125e+04, 4.2837390625e+04, 4.28303046875e+04, 4.282291015625e+04, 4.28154921875e+04, 4.280826953125e+04, 4.2801453125e+04, 4.279525e+04, 4.2789875e+04, 4.278553125e+04, 4.27823984375e+04, 4.2780046875e+04, 4.277766015625e+04, 4.27744453125e+04, 4.276959765625e+04, 4.276231640625e+04, 4.275180859375e+04, 4.2737265625e+04, 4.27178984375e+04, 4.26928984375e+04, 4.2655796875e+04, 4.257931640625e+04, 4.246280078125e+04, 4.230955859375e+04, 4.21228984375e+04, 4.190612890625e+04, 4.166255859375e+04, 4.13955e+04, 4.110716796875e+04, 4.079465625e+04, 4.04540234375e+04, 4.008134765625e+04, 3.96727109375e+04, 3.922419140625e+04, 3.873187109375e+04, 3.819053515625e+04, 3.759469140625e+04, 3.694669140625e+04, 3.624944921875e+04, 3.550588671875e+04, 3.471887109375e+04, 3.388663671875e+04, 3.300421875e+04, 3.2067859375e+04, 3.1073806640625e+04, 3.0018625e+04, 2.890544921875e+04, 2.7729947265625e+04, 2.6483857421875e+04, 2.5158919921875e+04, 2.3736904296875e+04, 2.2214865234375e+04, 2.06305e+04, 1.9264341796875e+04, 1.8904994140625e+04, 1.885821875e+04, 1.8853220703125e+04, 1.885273046875e+04, 1.8852689453125e+04, 1.8852681640625e+04, 1.88526796875e+04, 1.8852681640625e+04, 1.885268359375e+04, 1.8852681640625e+04, 1.88526796875e+04, 1.8852681640625e+04, 1.88526796875e+04, 1.8852681640625e+04, 1.8852681640625e+04, 1.8852681640625e+04, 1.8852681640625e+04, 1.8852681640625e+04, 1.88526796875e+04, 1.88526796875e+04, 1.88526796875e+04, 1.88526796875e+04, 1.88526796875e+04, 1.88526796875e+04, 1.88526796875e+04, 1.88526796875e+04, 1.88526796875e+04, 1.88526796875e+04, 1.88526796875e+04, 1.88526796875e+04, 1.88526796875e+04, 1.88526796875e+04, 1.88526796875e+04, 1.88526796875e+04, 1.88526796875e+04, 1.88526796875e+04] +forcedPump4.dp=[7.83562578125e+04, 1.21361953125e+05, 1.249674765625e+05, 1.25240203125e+05, 1.252606796875e+05, 1.2526221875e+05, 1.25262328125e+05, 1.2526234375e+05, 1.252623359375e+05, 1.2526234375e+05, 1.2526234375e+05, 1.252584609375e+05, 1.25248625e+05, 1.252371484375e+05, 1.25225109375e+05, 1.252127578125e+05, 1.252002421875e+05, 1.251876640625e+05, 1.25175171875e+05, 1.251628671875e+05, 1.251508828125e+05, 1.2513934375e+05, 1.25128359375e+05, 1.251180703125e+05, 1.251085859375e+05, 1.2510003125e+05, 1.250925390625e+05, 1.2508621875e+05, 1.250811640625e+05, 1.25077015625e+05, 1.25073296875e+05, 1.2506953125e+05, 1.2506525e+05, 1.25059984375e+05, 1.250532734375e+05, 1.25044640625e+05, 1.250336328125e+05, 1.25019765625e+05, 1.25002578125e+05, 1.249816015625e+05, 1.249604609375e+05, 1.249543515625e+05, 1.249535390625e+05, 1.24953453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05, 1.249534453125e+05] +forcedPump5.dp=[7.83562578125e+04, 1.216355078125e+04, 9.5175126953125e+03, 9.3320068359375e+03, 9.318158203125e+03, 9.317119140625e+03, 9.317044921875e+03, 9.3170341796875e+03, 9.317037109375e+03, 9.3170341796875e+03, 9.317033203125e+03, 9.3158876953125e+03, 9.312837890625e+03, 9.30932421875e+03, 9.3060771484375e+03, 9.3035849609375e+03, 9.3021474609375e+03, 9.30069140625e+03, 9.2975029296875e+03, 9.2908662109375e+03, 9.279017578125e+03, 9.2408984375e+03, 9.165076171875e+03, 9.0586474609375e+03, 8.92834765625e+03, 8.7730947265625e+03, 8.58469140625e+03, 8.3546953125e+03, 8.07334228515625e+03, 7.741921875e+03, 7.36562939453125e+03, 6.9394521484375e+03, 6.5319609375e+03, 6.41768115234375e+03, 6.40258154296875e+03, 6.4009638671875e+03, 6.400806640625e+03, 6.40079248046875e+03, 6.40079052734375e+03, 6.4007890625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03, 6.4007900390625e+03] +pump1.P=[4.36944091796875e+02, 6.205347290039062e+02, 6.360796508789062e+02, 6.372566528320312e+02, 6.373450317382812e+02, 6.373516845703125e+02, 6.373521118164062e+02, 6.373521728515625e+02, 6.373521728515625e+02, 6.373521728515625e+02, 6.373522338867188e+02, 6.426489868164062e+02, 6.554489135742188e+02, 6.695206909179688e+02, 6.835894775390625e+02, 6.975575561523438e+02, 7.114736328125e+02, 7.254014892578125e+02, 7.394064331054688e+02, 7.535537719726562e+02, 7.67908935546875e+02, 7.825374145507812e+02, 7.975045166015625e+02, 8.12875732421875e+02, 8.287163696289062e+02, 8.450919189453125e+02, 8.620701293945312e+02, 8.79780029296875e+02, 8.981957397460938e+02, 9.172186279296875e+02, 9.36750244140625e+02, 9.566920166015625e+02, 9.76945556640625e+02, 9.974122314453125e+02, 1.01799365234375e+03, 1.038591186523438e+03, 1.0591064453125e+03, 1.079440795898438e+03, 1.099495849609375e+03, 1.119173095703125e+03, 1.138373901367188e+03, 1.157000244140625e+03, 1.175173095703125e+03, 1.1930615234375e+03, 1.210687866210938e+03, 1.228074829101562e+03, 1.245244995117188e+03, 1.262221069335938e+03, 1.279025512695312e+03, 1.295680908203125e+03, 1.312210083007812e+03, 1.328635375976562e+03, 1.3449794921875e+03, 1.361265991210938e+03, 1.377565673828125e+03, 1.393870239257812e+03, 1.410122192382812e+03, 1.426263671875e+03, 1.442237426757812e+03, 1.457985595703125e+03, 1.473450805664062e+03, 1.488575317382812e+03, 1.503301635742188e+03, 1.517572143554688e+03, 1.529294311523438e+03, 1.53231689453125e+03, 1.532709228515625e+03, 1.532751220703125e+03, 1.532755249023438e+03, 1.532755615234375e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03, 1.532755737304688e+03] +pump2.P=[4.36944091796875e+02, 4.36944091796875e+02, 4.36944091796875e+02, 4.36944091796875e+02, 4.36944091796875e+02, 4.36944091796875e+02, 4.36944091796875e+02, 4.36944091796875e+02, 4.36944091796875e+02, 4.36944091796875e+02, 4.36944091796875e+02, 4.410602416992188e+02, 4.509922790527344e+02, 4.618962707519531e+02, 4.727955322265625e+02, 4.836289978027344e+02, 4.944491271972656e+02, 5.053200378417969e+02, 5.163070678710938e+02, 5.274755859375e+02, 5.388909912109375e+02, 5.506187744140625e+02, 5.627241821289062e+02, 5.752727661132812e+02, 5.883298950195312e+02, 6.02004150390625e+02, 6.163085327148438e+02, 6.311447143554688e+02, 6.464141235351562e+02, 6.62018310546875e+02, 6.778587036132812e+02, 6.938368530273438e+02, 7.09854248046875e+02, 7.258123779296875e+02, 7.416127319335938e+02, 7.571567993164062e+02, 7.723460083007812e+02, 7.870819702148438e+02, 8.013310546875e+02, 8.152999267578125e+02, 8.290335083007812e+02, 8.425543823242188e+02, 8.5588525390625e+02, 8.69048583984375e+02, 8.820670166015625e+02, 8.949631958007812e+02, 9.077597045898438e+02, 9.204791259765625e+02, 9.331446533203125e+02, 9.458185424804688e+02, 9.584902954101562e+02, 9.711023559570312e+02, 9.835971069335938e+02, 9.959170532226562e+02, 1.008004455566406e+03, 1.019801879882812e+03, 1.031251586914062e+03, 1.042296142578125e+03, 1.052890502929688e+03, 1.063086669921875e+03, 1.072891845703125e+03, 1.082296997070312e+03, 1.091293212890625e+03, 1.09987158203125e+03, 1.10802294921875e+03, 1.115738647460938e+03, 1.122994995117188e+03, 1.129774658203125e+03, 1.136078002929688e+03, 1.141905517578125e+03, 1.147257446289062e+03, 1.152134155273438e+03, 1.156536376953125e+03, 1.160458374023438e+03, 1.163873168945312e+03, 1.166751220703125e+03, 1.169062744140625e+03, 1.170778198242188e+03, 1.171842163085938e+03, 1.172058959960938e+03, 1.171570434570312e+03, 1.170595092773438e+03, 1.169351440429688e+03, 1.16805810546875e+03, 1.167083251953125e+03, 1.166863891601562e+03, 1.166836791992188e+03, 1.166833862304688e+03, 1.166833618164062e+03, 1.166833618164062e+03, 1.166833618164062e+03, 1.166833618164062e+03, 1.166833618164062e+03, 1.166833618164062e+03, 1.166833618164062e+03, 1.166833618164062e+03, 1.166833618164062e+03, 1.166833618164062e+03, 1.166833618164062e+03, 1.166833618164062e+03, 1.166833618164062e+03] +pump3.P=[4.36944091796875e+02, 1.910643005371094e+02, 1.777293853759766e+02, 1.767544403076172e+02, 1.766814117431641e+02, 1.766759338378906e+02, 1.76675537109375e+02, 1.766754913330078e+02, 1.766755065917969e+02, 1.766754913330078e+02, 1.766754760742188e+02, 1.789228363037109e+02, 1.843232727050781e+02, 1.902348327636719e+02, 1.961531524658203e+02, 2.020749969482422e+02, 2.080587310791016e+02, 2.141690979003906e+02, 2.20471435546875e+02, 2.270311584472656e+02, 2.339136657714844e+02, 2.411916809082031e+02, 2.489402465820312e+02, 2.570852661132812e+02, 2.655281982421875e+02, 2.741705627441406e+02, 2.829138488769531e+02, 2.916595458984375e+02, 3.003091430664062e+02, 3.087641296386719e+02, 3.169259948730469e+02, 3.247350463867188e+02, 3.323334350585938e+02, 3.39765869140625e+02, 3.47054931640625e+02, 3.542232055664062e+02, 3.612933044433594e+02, 3.68287841796875e+02, 3.752294006347656e+02, 3.821560668945312e+02, 3.890816955566406e+02, 3.959505004882812e+02, 4.027048645019531e+02, 4.092872619628906e+02, 4.156400451660156e+02, 4.217056579589844e+02, 4.274461364746094e+02, 4.328961791992188e+02, 4.38052001953125e+02, 4.429046630859375e+02, 4.474451904296875e+02, 4.516644287109375e+02, 4.555411071777344e+02, 4.590654296875e+02, 4.6223779296875e+02, 4.6505859375e+02, 4.675282592773438e+02, 4.696422119140625e+02, 4.713748168945312e+02, 4.726964416503906e+02, 4.735774536132812e+02, 4.739219665527344e+02, 4.737012939453125e+02, 4.731286315917969e+02, 4.725286560058594e+02, 4.7237158203125e+02, 4.723514099121094e+02, 4.723492736816406e+02, 4.723490600585938e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02, 4.723490295410156e+02] +pump4.P=[4.36944091796875e+02, 8.422465209960938e+02, 8.800571899414062e+02, 8.829396362304688e+02, 8.831561889648438e+02, 8.831724853515625e+02, 8.831736450195312e+02, 8.831737670898438e+02, 8.831737670898438e+02, 8.831737670898438e+02, 8.83173828125e+02, 8.897598876953125e+02, 9.056941528320312e+02, 9.232324829101562e+02, 9.407744140625e+02, 9.581823120117188e+02, 9.755006713867188e+02, 9.927929077148438e+02, 1.010124267578125e+03, 1.027560180664062e+03, 1.045165893554688e+03, 1.063006958007812e+03, 1.081148803710938e+03, 1.09965673828125e+03, 1.11859619140625e+03, 1.138032592773438e+03, 1.158031372070312e+03, 1.178657958984375e+03, 1.199993530273438e+03, 1.222167602539062e+03, 1.245115112304688e+03, 1.268737426757812e+03, 1.292936157226562e+03, 1.31761279296875e+03, 1.342668823242188e+03, 1.368005615234375e+03, 1.393524780273438e+03, 1.419127807617188e+03, 1.444716186523438e+03, 1.47019140625e+03, 1.491673095703125e+03, 1.497290283203125e+03, 1.49802099609375e+03, 1.49809912109375e+03, 1.498106689453125e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03, 1.498107421875e+03] +pump5.P=[4.36944091796875e+02, 2.672427558898926e+01, 1.849697113037109e+01, 1.795882797241211e+01, 1.791886520385742e+01, 1.791586875915527e+01, 1.79156551361084e+01, 1.791562271118164e+01, 1.79156322479248e+01, 1.791562461853027e+01, 1.791562080383301e+01, 1.840124702453613e+01, 1.955365753173828e+01, 2.082551765441895e+01, 2.215883827209473e+01, 2.360452079772949e+01, 2.522968292236328e+01, 2.703625106811523e+01, 2.892996978759766e+01, 3.081233406066895e+01, 3.258497619628906e+01, 3.423295211791992e+01, 3.581096267700195e+01, 3.734160232543945e+01, 3.884949111938477e+01, 4.034613418579102e+01, 4.178182983398438e+01, 4.309918975830078e+01, 4.427495193481445e+01, 4.531052398681641e+01, 4.619562911987305e+01, 4.69178352355957e+01, 4.740262985229492e+01, 4.751048278808594e+01, 4.752391815185547e+01, 4.752534866333008e+01, 4.752548599243164e+01, 4.752549743652344e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01, 4.75255012512207e+01] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Sources_Examples_Outside_CpData.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Sources_Examples_Outside_CpData.txt new file mode 100644 index 0000000000..6e3beb3a16 --- /dev/null +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Sources_Examples_Outside_CpData.txt @@ -0,0 +1,13 @@ +last-generated=2022-02-15 +statistics-simulation= +{ + "linear": "0, 0, 0, 0", + "nonlinear": "1", + "numerical Jacobians": "0" +} +time=[1.728e+07, 1.78848e+07] +weaDat.weaBus.winDir=[4.886921882629395e+00, 4.886921882629395e+00, 4.685044765472412e+00, 4.893903255462646e+00, 5.187118530273438e+00, 5.061454772949219e+00, 4.886921882629395e+00, 4.886921882629395e+00, 4.886921882629395e+00, 4.71238899230957e+00, 4.71238899230957e+00, 4.886921882629395e+00, 4.876823902130127e+00, 4.700660228729248e+00, 4.8747239112854e+00, 5.096361637115479e+00, 5.234144687652588e+00, 5.225365161895752e+00, 4.803995132446289e+00, 4.537856101989746e+00, 4.537856101989746e+00, 4.72012996673584e+00, 4.886240482330322e+00, 4.886921882629395e+00, 4.886921882629395e+00, 4.71238899230957e+00, 4.71238899230957e+00, 4.936463356018066e+00, 4.166589260101318e+00, 3.069958686828613e+00, 4.017049789428711e+00, 5.263913154602051e+00, 5.850343704223633e+00, 1.485678553581238e-01, 5.519338846206665e-01, 2.314498871564865e-01, 5.597146034240723e+00, 5.235987663269043e+00, 5.235987663269043e+00, 5.328487396240234e+00, 5.410520553588867e+00, 5.410520553588867e+00, 5.410520553588867e+00, 5.410520553588867e+00, 5.245069026947021e+00, 5.127079010009766e+00, 5.100941181182861e+00, 5.2232985496521e+00, 5.808455944061279e+00, 6.283185482025146e+00, 5.759586334228516e+00, 5.466371059417725e+00, 5.346080303192139e+00, 5.235987663269043e+00, 5.235987663269043e+00, 5.235987663269043e+00, 5.235987663269043e+00, 5.235987663269043e+00, 5.235987663269043e+00, 5.235987663269043e+00, 5.235987663269043e+00, 5.400936603546143e+00, 5.612978935241699e+00, 5.92589807510376e+00, 5.668829441070557e+00, 5.399350643157959e+00, 5.410520553588867e+00, 5.410520553588867e+00, 5.410520553588867e+00, 5.410520553588867e+00, 5.235987663269043e+00, 5.235987663269043e+00, 5.235987663269043e+00, 5.346080303192139e+00, 5.459535121917725e+00, 5.585053443908691e+00, 6.140968799591064e+00, 4.36737984418869e-01, 2.134700268507004e-01, 5.351524829864502e+00, 5.406332015991211e+00, 5.591476440429688e+00, 5.432034492492676e+00, 5.410520553588867e+00, 5.410520553588867e+00, 5.410520553588867e+00, 5.410520553588867e+00, 5.401360988616943e+00, 5.292284965515137e+00, 4.440117835998535e+00, 3.489262342453003e+00, 1.696460008621216e+00, 1.655004024505615e-01, 6.21532678604126e+00, 5.77354907989502e+00, 5.480333805084229e+00, 5.4565749168396e+00, 5.585053443908691e+00, 5.585053443908691e+00, 5.548951625823975e+00, 5.410520553588867e+00] +north.pWin=[-7.645541667938232e+00, -7.998879909515381e+00, -9.889426231384277e+00, -7.135144233703613e+00, -2.100931644439697e+00, -4.085946559906006e+00, -6.37278938293457e+00, -8.784263610839844e+00, -1.214793872833252e+01, -2.322035980224609e+01, -2.371010971069336e+01, -1.239923763275146e+01, -1.158016204833984e+01, -1.592830085754395e+01, -7.465826034545898e+00, -1.853970170021057e+00, -3.617303073406219e-01, -4.3793123960495e-01, -8.722079277038574e+00, -1.419378471374512e+01, -1.094379806518555e+01, -9.855703353881836e+00, -8.287787437438965e+00, -8.27796459197998e+00, -8.015615463256836e+00, -8.079555511474609e+00, -6.180750846862793e+00, -3.038156509399414e+00, -2.738255023956299e+00, -3.411908745765686e-01, -8.700677156448364e-01, -8.99260938167572e-02, 1.96749746799469e-01, 2.060505375266075e-02, 6.470210552215576e-01, 2.912013530731201e+00, 2.062379598617554e+00, -1.013927340507507e+00, -1.728916049003601e+00, 4.394559860229492e-01, 1.076262712478638e+00, 6.691262125968933e-01, 4.862397313117981e-01, 8.204551935195923e-01, -4.546363651752472e-01, -8.772529363632202e-01, -8.038411140441895e-01, -2.639646828174591e-01, 2.344334125518799e+00, 5.622951507568359e+00, 6.185222148895264e+00, 3.290743350982666e+00, 1.040125727653503e+00, -1.892157554626465e+00, -2.041915893554688e+00, -1.270782709121704e+00, -6.270527839660645e-01, -5.484027862548828e-01, -4.907733500003815e-01, -4.937309324741364e-01, -3.829503953456879e-01, 2.631401121616364e-01, 1.324465751647949e+00, 5.789284229278564e+00, 4.234417915344238e+00, 1.510138869285583e+00, 2.792571067810059e+00, 3.488918304443359e+00, 2.450083494186401e+00, 1.730853319168091e+00, -8.266069889068604e-01, -6.994840502738953e-01, -6.328722238540649e-01, 3.383226692676544e-01, 9.756245017051697e-01, 9.214009642601013e-01, 1.747198939323425e+00, 1.907225251197815e+00, 4.536021709442139e+00, 5.656250715255737e-01, 1.953594088554382e+00, 7.552590370178223e+00, 3.790945053100586e+00, 2.990229368209839e+00, 1.47330904006958e+00, 8.006818890571594e-01, 4.998959600925446e-01, 4.144668579101562e-01, -4.957448691129684e-02, -1.098371386528015e+00, -1.75620436668396e-01, -1.340906739234924e+00, 3.283197164535522e+00, 4.505700588226318e+00, 5.378589630126953e+00, 4.751522064208984e+00, 4.278645038604736e+00, 6.586739540100098e+00, 4.635358333587646e+00, 2.591675758361816e+00, 7.050049304962158e-01] +west.pWin=[1.245210647583008e+01, 1.302769947052002e+01, 1.284466552734375e+01, 1.173145484924316e+01, 7.982819080352783e+00, 9.196577072143555e+00, 1.037886333465576e+01, 1.430713748931885e+01, 1.978736114501953e+01, 3.09770450592041e+01, 3.163075065612793e+01, 2.019682502746582e+01, 1.861081504821777e+01, 2.100760841369629e+01, 1.196435642242432e+01, 4.623433113098145e+00, 2.10391640663147e+00, 2.301506519317627e+00, 1.283203220367432e+01, 1.575443553924561e+01, 1.214628124237061e+01, 1.32497730255127e+01, 1.348597431182861e+01, 1.348233890533447e+01, 1.305496215820312e+01, 1.077474594116211e+01, 8.24217414855957e+00, 5.315049648284912e+00, 1.656762361526489e+00, -5.349505543708801e-01, 3.486912250518799e-01, 8.605980277061462e-01, -6.599321961402893e-02, -1.787654310464859e-02, -1.076919794082642e+00, -2.784982681274414e+00, 7.265419363975525e-01, 6.035701751708984e+00, 1.029238796234131e+01, 5.736966133117676e+00, 2.620726823806763e+00, 1.629329919815063e+00, 1.183996200561523e+00, 1.997821927070618e+00, 3.068608999252319e+00, 2.444035768508911e+00, 2.035104513168335e+00, 1.357093691825867e+00, -6.227667331695557e-01, -4.216804027557373e+00, -1.047422528266907e+00, 4.397058010101318e+00, 7.619843006134033e+00, 1.126430511474609e+01, 1.215596485137939e+01, 7.564842224121094e+00, 3.732617378234863e+00, 3.264425277709961e+00, 2.921368360519409e+00, 2.938974142074585e+00, 2.279526472091675e+00, 7.24107563495636e-01, 3.717353641986847e-01, -2.542847633361816e+00, 3.019575476646423e-01, 4.244151592254639e+00, 6.800146579742432e+00, 8.495894432067871e+00, 5.966131687164307e+00, 4.214710712432861e+00, 4.920558929443359e+00, 4.163795471191406e+00, 3.767260074615479e+00, 2.478404760360718e+00, 1.393019795417786e+00, 3.791347444057465e-01, -1.127607822418213e+00, -2.49556827545166e+00, -4.242284774780273e+00, 3.62205958366394e+00, 5.013336181640625e+00, 2.866288423538208e+00, 7.192133903503418e+00, 7.281481742858887e+00, 3.587564945220947e+00, 1.949673056602478e+00, 1.217249393463135e+00, 1.134167551994324e+00, 1.571215867996216e+00, 1.077237486839294e+00, -9.683262556791306e-02, -8.503618836402893e-01, -2.902456045150757e+00, -3.159215211868286e+00, -1.068989753723145e+00, 5.566645622253418e+00, 6.290149688720703e+00, 2.710198640823364e+00, 1.907299399375916e+00, 1.595805048942566e+00, 1.716695785522461e+00] +east.pWin=[-7.129565715789795e+00, -7.459060192108154e+00, -6.446913242340088e+00, -6.788891792297363e+00, -9.048351287841797e+00, -7.462776660919189e+00, -5.942702770233154e+00, -8.191444396972656e+00, -1.132814311981201e+01, -1.548142242431641e+01, -1.580797290802002e+01, -1.156248569488525e+01, -1.049822235107422e+01, -1.050837802886963e+01, -6.729553699493408e+00, -4.092195987701416e+00, -2.744577884674072e+00, -2.92274284362793e+00, -6.656642436981201e+00, -9.1005859375e+00, -7.016721248626709e+00, -6.621747970581055e+00, -7.713512897491455e+00, -7.719311237335205e+00, -7.474666595458984e+00, -5.386513710021973e+00, -4.120584487915039e+00, -3.304535388946533e+00, -2.347211837768555e+00, -4.641100466251373e-01, -8.327227830886841e-01, -1.232585072517395e+00, -2.58197158575058e-01, -1.308937277644873e-02, -6.696873903274536e-02, -1.645345449447632e+00, -4.992015838623047e+00, -7.917750358581543e+00, -1.35004415512085e+01, -1.019337844848633e+01, -6.314631462097168e+00, -3.925995111465454e+00, -2.852972269058228e+00, -4.813845157623291e+00, -4.140769004821777e+00, -2.344127893447876e+00, -1.822627782821655e+00, -1.712657332420349e+00, -3.330321788787842e+00, -4.216804027557373e+00, -9.72523307800293e+00, -1.335914325714111e+01, -1.440668392181396e+01, -1.477497100830078e+01, -1.594420337677002e+01, -9.923359870910645e+00, -4.896777153015137e+00, -4.282606601715088e+00, -3.832579612731934e+00, -3.855675458908081e+00, -2.990583181381226e+00, -1.680428862571716e+00, -3.049657106399536e+00, -6.685013771057129e+00, -8.298492431640625e+00, -9.787657737731934e+00, -1.638262367248535e+01, -2.04667797088623e+01, -1.437375354766846e+01, -1.015478515625e+01, -6.455048561096191e+00, -5.462380886077881e+00, -4.942220211029053e+00, -4.686557292938232e+00, -4.109135627746582e+00, -2.320457935333252e+00, -1.517225861549377e+00, -6.218849420547485e-01, -2.635365009307861e+00, -6.984272480010986e+00, -1.188083648681641e+01, -1.861733627319336e+01, -1.889509963989258e+01, -1.754195213317871e+01, -8.643942832946777e+00, -4.697835922241211e+00, -2.933096408843994e+00, -2.63637113571167e+00, -2.468305349349976e+00, -7.435199618339539e-01, -2.443242222070694e-01, 1.584250092506409e+00, -2.040539979934692e+00, -3.613118648529053e+00, -8.206335067749023e+00, -1.798884963989258e+01, -1.831670188903809e+01, -1.658479499816895e+01, -1.167218971252441e+01, -7.404973030090332e+00, -4.136497974395752e+00] +south.pWin=[-1.111979198455811e+01, -1.163367462158203e+01, -9.380016326904297e+00, -1.056096935272217e+01, -1.123427772521973e+01, -1.036953735351562e+01, -9.268733978271484e+00, -1.277590084075928e+01, -1.766778945922852e+01, -2.322035980224609e+01, -2.371010971069336e+01, -1.803325653076172e+01, -1.642815589904785e+01, -1.557371807098389e+01, -1.053757858276367e+01, -5.514879703521729e+00, -3.268582105636597e+00, -3.507544755935669e+00, -1.048431587219238e+01, -9.759193420410156e+00, -7.524531364440918e+00, -1.00029764175415e+01, -1.203342056274414e+01, -1.203956317901611e+01, -1.165801429748535e+01, -8.079555511474609e+00, -6.180750846862793e+00, -5.03622579574585e+00, -1.971649378538132e-01, 6.644816398620605e-01, 1.385838985443115e-01, -1.431010842323303e+00, -2.002175897359848e-01, -1.137580629438162e-02, -9.279115796089172e-01, -1.835211038589478e+00, -4.750768184661865e+00, -9.41425895690918e+00, -1.605195045471191e+01, -1.123940181732178e+01, -6.586840152740479e+00, -4.095239639282227e+00, -2.975961446762085e+00, -5.021361827850342e+00, -4.884969711303711e+00, -3.073075294494629e+00, -2.44628119468689e+00, -2.059072017669678e+00, -2.682278394699097e+00, -2.811241865158081e+00, -8.179295539855957e+00, -1.353210735321045e+01, -1.568040752410889e+01, -1.756731605529785e+01, -1.895748329162598e+01, -1.179889869689941e+01, -5.822334289550781e+00, -5.09208345413208e+00, -4.556998252868652e+00, -4.58445930480957e+00, -3.555856466293335e+00, -1.763035774230957e+00, -2.873192548751831e+00, -4.84531831741333e+00, -7.51628303527832e+00, -1.027879238128662e+01, -1.708876609802246e+01, -2.134892463684082e+01, -1.499332046508789e+01, -1.059251594543457e+01, -7.675117969512939e+00, -6.494837760925293e+00, -5.87636661529541e+00, -5.100948810577393e+00, -4.175537586212158e+00, -2.224558591842651e+00, -9.642741680145264e-01, -1.942039370536804e+00, -2.767450332641602e+00, -7.572197437286377e+00, -1.242400360107422e+01, -1.777942848205566e+01, -1.947030639648438e+01, -1.829805564880371e+01, -9.01655387878418e+00, -4.900352001190186e+00, -3.059539318084717e+00, -2.765249252319336e+00, -2.799497365951538e+00, -5.734745264053345e-01, 2.171171605587006e-01, -1.035155653953552e+00, -1.855298280715942e+00, -2.307267665863037e+00, -6.818151950836182e+00, -1.811155700683594e+01, -1.863889503479004e+01, -1.589947414398193e+01, -1.118984699249268e+01, -7.241341114044189e+00, -4.314816474914551e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Sources_Examples_Outside_CpData_Angles.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Sources_Examples_Outside_CpData_Angles.txt new file mode 100644 index 0000000000..8b6a8322d0 --- /dev/null +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Sources_Examples_Outside_CpData_Angles.txt @@ -0,0 +1,13 @@ +last-generated=2022-02-15 +statistics-simulation= +{ + "linear": "0, 0, 0, 0", + "nonlinear": "1", + "numerical Jacobians": "0" +} +time=[0e+00, 2e+01] +weaDat.weaBus.winDir=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.25663832463048e-01, 2.513273653202432e-01, 3.769911828822365e-01, 5.026547306404148e-01, 6.283185482025146e-01, 7.539823657643303e-01, 8.79645883720542e-01, 1.00530976088686e+00, 1.130973219238285e+00, 1.256637096405029e+00, 1.382300854362484e+00, 1.507964431922915e+00, 1.633628189880369e+00, 1.7592917674408e+00, 1.884955644607544e+00, 2.010619521773719e+00, 2.136283160523591e+00, 2.261946438477706e+00, 2.387610315643883e+00, 2.513274192810059e+00, 2.638937831558793e+00, 2.764601708726105e+00, 2.890264986680221e+00, 3.015928863845261e+00, 3.141592741012573e+00, 3.267256379761307e+00, 3.39292025692862e+00, 3.518583534882736e+00, 3.644247412047775e+00, 3.769911289215088e+00, 3.895574927963823e+00, 4.021239043547439e+00, 4.146901844666671e+00, 4.272565721832847e+00, 4.398229598999023e+00, 4.523893476165199e+00, 4.649557353331376e+00, 4.775220631287764e+00, 4.900884508453942e+00, 5.026548385620117e+00, 5.152212262786294e+00, 5.277875663119859e+00, 5.403538941071702e+00, 5.529202818237876e+00, 5.654866695404053e+00, 5.780530572570228e+00, 5.906194449736404e+00, 6.031857727692794e+00, 6.157521604858971e+00, 6.283185482025146e+00, 6.283185482025146e+00, 6.283185482025146e+00, 6.283185482025146e+00, 6.283185482025146e+00, 6.283185482025146e+00, 6.283185482025146e+00, 6.283185482025146e+00, 6.283185482025146e+00, 6.283185482025146e+00, 6.283185482025146e+00, 6.283185482025146e+00, 6.283185482025146e+00, 6.283185482025146e+00, 6.283185482025146e+00, 6.283185482025146e+00, 6.283185482025146e+00, 6.283185482025146e+00, 6.283185482025146e+00, 6.283185482025146e+00, 6.283185482025146e+00, 6.283185482025146e+00, 6.283185482025146e+00, 6.283185482025146e+00, 6.283185482025146e+00, 6.283185482025146e+00] +symNor.CpAct=[4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 3.89766370590342e-01, 3.555712304867789e-01, 3.041727858797587e-01, 2.423296588889645e-01, 1.767999976873398e-01, 1.143423439710007e-01, 5.442883144602517e-02, -1.462083417836391e-02, -8.807352589413554e-02, -1.60400003194809e-01, -2.2607046055202e-01, -2.795551789839194e-01, -3.164384203695351e-01, -3.406367708307802e-01, -3.547999858856201e-01, -3.607712107820208e-01, -3.603936071376604e-01, -3.555104255542688e-01, -3.474560183130205e-01, -3.28000009059906e-01, -2.98303959954607e-01, -2.64511938483675e-01, -2.327680553440782e-01, -2.092160165793075e-01, -2.000000029802322e-01, -2.092160165793075e-01, -2.327680553440782e-01, -2.64511938483675e-01, -2.983039599546073e-01, -3.28000009059906e-01, -3.474560183130206e-01, -3.555104255542687e-01, -3.603936071376604e-01, -3.607712107820208e-01, -3.547999858856201e-01, -3.406367708307802e-01, -3.164383475195794e-01, -2.795552849587694e-01, -2.2607046055202e-01, -1.60400003194809e-01, -8.807352589413488e-02, -1.462066282261406e-02, 5.442867512935251e-02, 1.143039438541436e-01, 1.759999990463257e-01, 2.402560567509372e-01, 3.009281031004195e-01, 3.518719101844306e-01, 3.869439699663283e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01] +symWes.CpAct=[-3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.299072306521037e-01, -3.488576042603956e-01, -3.586944068334811e-01, -3.612608014578028e-01, -3.583999872207642e-01, -3.519551977784872e-01, -3.393920151423314e-01, -3.140479776249523e-01, -2.815360452219431e-01, -2.479999959468842e-01, -2.195839814990074e-01, -2.024320119246405e-01, -2.024320119246405e-01, -2.195839814990074e-01, -2.479999959468842e-01, -2.815360452219431e-01, -3.140480479130437e-01, -3.393919663385149e-01, -3.519551977784872e-01, -3.583999872207642e-01, -3.612608014578028e-01, -3.586943917108436e-01, -3.488576365704388e-01, -3.299072306521036e-01, -3.00000011920929e-01, -2.546815346017934e-01, -1.944126702669769e-01, -1.247233410589984e-01, -5.114246865894437e-02, 2.080000005662441e-02, 8.557445875701911e-02, 1.444481163726716e-01, 2.081918826869715e-01, 2.714239367935823e-01, 3.28000009059906e-01, 3.717760464121245e-01, 3.966080155605792e-01, 3.983008115026364e-01, 3.752416383014188e-01, 3.3160001039505e-01, 2.741343376289359e-01, 2.096030798254783e-01, 1.447649167095346e-01, 8.557445875701911e-02, 2.080000005662441e-02, -5.114246865894437e-02, -1.247233410589984e-01, -1.944126702669769e-01, -2.546815346017934e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01] +asyNor.CpAct=[4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.067007743344242e-01, 3.777664199741835e-01, 3.236415674002717e-01, 2.547712717169848e-01, 1.816000044345856e-01, 1.145727446721414e-01, 5.442883144602517e-02, -1.462083417836391e-02, -8.807352589413554e-02, -1.60400003194809e-01, -2.2607046055202e-01, -2.795551789839194e-01, -3.164384203695351e-01, -3.406367708307802e-01, -3.547999858856201e-01, -3.607712107820208e-01, -3.603936071376604e-01, -3.555104255542688e-01, -3.472640028276819e-01, -3.240000009536743e-01, -2.879359641657039e-01, -2.482879336005963e-01, -2.142720637108622e-01, -1.951040134591679e-01, -2.000000029802322e-01, -2.340288480009906e-01, -2.907905364263651e-01, -3.622974505641761e-01, -4.40563126514362e-01, -5.175999999046326e-01, -5.854208433886439e-01, -6.476161644449273e-01, -7.223038391713047e-01, -7.985279451469757e-01, -8.640000224113464e-01, -9.064319951071053e-01, -9.135359749800145e-01, -8.723585041907459e-01, -7.776769282457279e-01, -6.448000073432922e-01, -4.909310613681693e-01, -3.332732990044815e-01, -1.890306509710226e-01, -7.385610342143052e-02, 3.200000151991844e-02, 1.352960964982559e-01, 2.298881723476008e-01, 3.096318653482333e-01, 3.683839570228838e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01] +asyWes.CpAct=[-3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.299072306521037e-01, -3.488576042603956e-01, -3.586944068334811e-01, -3.612608014578028e-01, -3.583999872207642e-01, -3.519551977784872e-01, -3.378080233791919e-01, -3.069919766398897e-01, -2.679840410451754e-01, -2.300000041723251e-01, -2.022559773493367e-01, -1.939679972141938e-01, -2.136736241488418e-01, -2.600671420886227e-01, -3.251999914646149e-01, -4.010848856656114e-01, -4.797345374474537e-01, -5.531614886825637e-01, -6.146879226711834e-01, -6.840000152587891e-01, -7.609920632298341e-01, -8.333761128662927e-01, -8.888638934511467e-01, -9.151679762064654e-01, -8.999999761581421e-01, -8.30867075955064e-01, -7.149373670798485e-01, -5.694146694794929e-01, -4.115009629640855e-01, -2.583999931812286e-01, -1.273150882188062e-01, -2.099179724366361e-02, 8.435180304173664e-02, 1.840639093067838e-01, 2.720000147819519e-01, 3.420160654169934e-01, 3.879680587010013e-01, 4.084575871544113e-01, 3.960352194392225e-01, 3.531999886035919e-01, 2.903967426410571e-01, 2.180702626568033e-01, 1.466657336320159e-01, 8.557445875701911e-02, 2.080000005662441e-02, -5.114246865894437e-02, -1.247233410589984e-01, -1.944126702669769e-01, -2.546815346017934e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01, -3.00000011920929e-01] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Sources_Examples_Outside_CpData_Specification.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Sources_Examples_Outside_CpData_Specification.txt new file mode 100644 index 0000000000..bd67a4b67b --- /dev/null +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Sources_Examples_Outside_CpData_Specification.txt @@ -0,0 +1,11 @@ +last-generated=2022-02-14 +statistics-simulation= +{ + "linear": "0", + "nonlinear": "1", + "numerical Jacobians": "0" +} +time=[0e+00, 8.64e+04] +winDir.y=[0e+00, 6.283185631036758e-02, 1.256637126207352e-01, 1.884955614805222e-01, 2.513274252414703e-01, 3.141592741012573e-01, 3.769911229610443e-01, 4.398229718208314e-01, 5.026548504829407e-01, 5.654866695404053e-01, 6.283185482025146e-01, 6.911503672599792e-01, 7.539822459220886e-01, 8.168140649795532e-01, 8.796459436416627e-01, 9.42477822303772e-01, 1.005309700965881e+00, 1.068141460418701e+00, 1.130973339080811e+00, 1.19380521774292e+00, 1.256637096405029e+00, 1.319468855857849e+00, 1.382300734519958e+00, 1.445132613182068e+00, 1.507964491844177e+00, 1.570796370506287e+00, 1.633628129959106e+00, 1.696460008621216e+00, 1.759291887283325e+00, 1.822123765945435e+00, 1.884955644607544e+00, 1.947787404060364e+00, 2.010619401931763e+00, 2.073451042175293e+00, 2.136282920837403e+00, 2.199114799499511e+00, 2.261946678161621e+00, 2.32477855682373e+00, 2.38761043548584e+00, 2.450442314147949e+00, 2.513274192810059e+00, 2.576106071472168e+00, 2.638937711715698e+00, 2.701769590377808e+00, 2.764601469039917e+00, 2.827433347702026e+00, 2.890265226364136e+00, 2.953097105026245e+00, 3.015928983688354e+00, 3.078760862350464e+00, 3.141592741012573e+00, 3.204424619674683e+00, 3.267256259918213e+00, 3.330088138580322e+00, 3.392920017242432e+00, 3.455751895904541e+00, 3.518583774566651e+00, 3.581415653228759e+00, 3.644247531890869e+00, 3.707079410552979e+00, 3.769911289215088e+00, 3.832742929458618e+00, 3.895574808120728e+00, 3.958406686782837e+00, 4.021238803863525e+00, 4.084070682525635e+00, 4.146902084350586e+00, 4.209733963012695e+00, 4.272565841674806e+00, 4.335397720336913e+00, 4.398229598999023e+00, 4.461061477661133e+00, 4.523893356323242e+00, 4.586725234985352e+00, 4.649557113647461e+00, 4.71238899230957e+00, 4.77522087097168e+00, 4.838052749633789e+00, 4.900884628295898e+00, 4.963716506958008e+00, 5.026548385620117e+00, 5.089380264282227e+00, 5.152212142944336e+00, 5.215044021606445e+00, 5.277875423431396e+00, 5.340707302093506e+00, 5.403539180755615e+00, 5.466371059417725e+00, 5.529202938079834e+00, 5.592034816741943e+00, 5.654866695404053e+00, 5.717698574066162e+00, 5.780530452728271e+00, 5.843362331390381e+00, 5.90619421005249e+00, 5.9690260887146e+00, 6.031857967376709e+00, 6.094689846038818e+00, 6.157521724700928e+00, 6.220353603363037e+00, 6.283185482025146e+00] +nor.pWin=[1.000009894371033e+00, 9.86518383026123e-01, 9.683196544647217e-01, 9.458264112472534e-01, 9.194515347480774e-01, 8.896077871322632e-01, 8.567080497741699e-01, 8.211650252342224e-01, 7.833916544914246e-01, 7.438006401062012e-01, 7.028048634529114e-01, 6.608170866966248e-01, 6.182501912117004e-01, 5.755168795585632e-01, 5.330300331115722e-01, 4.912023842334747e-01, 4.504468142986298e-01, 4.111760556697845e-01, 3.738029897212982e-01, 3.387403190135956e-01, 3.064009249210358e-01, 2.771975696086884e-01, 2.515430152416229e-01, 2.298501282930374e-01, 2.12531641125679e-01, 2.000003904104233e-01, 1.918019652366638e-01, 1.870531439781189e-01, 1.855235397815704e-01, 1.869827508926392e-01, 1.912003606557846e-01, 1.979459822177887e-01, 2.069892287254333e-01, 2.180996686220169e-01, 2.310469299554825e-01, 2.456005960702896e-01, 2.615302801132202e-01, 2.78605580329895e-01, 2.965960800647736e-01, 3.152713775634766e-01, 3.344011008739471e-01, 3.53754848241806e-01, 3.731021881103516e-01, 3.922127187252045e-01, 4.108560681343079e-01, 4.288018047809601e-01, 4.458195567131042e-01, 4.616788923740387e-01, 4.761494398117065e-01, 4.890007674694061e-01, 5.000024437904358e-01, 5.097935199737549e-01, 5.191834568977356e-01, 5.281979441642761e-01, 5.368625521659851e-01, 5.452029109001161e-01, 5.532446503639222e-01, 5.610132217407225e-01, 5.685343742370605e-01, 5.758336782455444e-01, 5.82936704158783e-01, 5.898690223693848e-01, 5.96656322479248e-01, 6.033241152763367e-01, 6.098980903625488e-01, 6.164037585258484e-01, 6.228667497634888e-01, 6.293126940727234e-01, 6.357671618461609e-01, 6.422557830810547e-01, 6.488041281700134e-01, 6.554378271102905e-01, 6.621824502944946e-01, 6.690636277198792e-01, 6.761069297790527e-01, 6.83337926864624e-01, 6.907823085784912e-01, 6.984655857086182e-01, 7.064134478569031e-01, 7.146514654159546e-01, 7.232051491737366e-01, 7.32100248336792e-01, 7.413622140884399e-01, 7.510167956352234e-01, 7.610894441604614e-01, 7.716058492660522e-01, 7.825916409492493e-01, 7.940723299980164e-01, 8.066239953041077e-01, 8.231619000434875e-01, 8.432070016860962e-01, 8.656842112541199e-01, 8.895182013511658e-01, 9.136338233947754e-01, 9.369558691978455e-01, 9.584090709686279e-01, 9.769182205200195e-01, 9.91408109664917e-01, 1.000803470611572e+00, 1.004029154777527e+00, 1.000009894371033e+00] +weaDat.winSpe=[1e+00, 1e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Sources_Validation_Boundary.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Sources_Validation_Boundary.txt index 684d39155f..c1cd441d71 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Sources_Validation_Boundary.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Sources_Validation_Boundary.txt @@ -1,40 +1,34 @@ -last-generated=2019-09-13 +last-generated=2020-10-29 statistics-simulation= { "linear": " ", "nonlinear": " ", "numerical Jacobians": "0" } -bouMoiAir.p=[1.01325e+05, 1.01325e+05] -bouMoiAirCO2.p=[1.01325e+05, 1.01325e+05] -bouNatGasFix.p=[1.01325e+05, 1.01325e+05] -bouNatGas.p=[1.01325e+05, 1.01325e+05] time=[0e+00, 1e+00] -bouProFluGas.p=[1.01325e+05, 1.01325e+05] bouWat.p=[3e+05, 3e+05] bouProGly.p=[3e+05, 3e+05] +bouMoiAir.p=[1.01325e+05, 1.01325e+05] +bouMoiAirCO2.p=[1.01325e+05, 1.01325e+05] +bouProFluGas.p=[1.01325e+05, 1.01325e+05] +bouNatGas.p=[1.01325e+05, 1.01325e+05] +bouNatGasFix.p=[1.01325e+05, 1.01325e+05] +bouWat.T=[2.931499938964844e+02, 2.931499938964844e+02] +bouProGly.T=[2.931499938964844e+02, 2.931499938964844e+02] bouMoiAir.T=[2.931499938964844e+02, 2.931499938964844e+02] bouMoiAirCO2.T=[2.931499938964844e+02, 2.931499938964844e+02] +bouProFluGas.T=[2.931499938964844e+02, 2.931499938964844e+02] bouNatGas.T=[2.931499938964844e+02, 2.931499938964844e+02] bouNatGasFix.T=[2.931499938964844e+02, 2.931499938964844e+02] -bouWat.T=[2.931499938964844e+02, 2.931499938964844e+02] -bouProGly.T=[2.931499938964844e+02, 2.931499938964844e+02] -bouProFluGas.T=[2.931499938964844e+02, 2.931499938964844e+02] -bouProGly.Xi[1]=[1e+00, 1e+00] bouMoiAir.Xi[1]=[9.999999776482582e-03, 9.999999776482582e-03] bouMoiAirCO2.Xi[1]=[9.999999776482582e-03, 9.999999776482582e-03] bouProFluGas.Xi[1]=[7.680000066757202e-01, 7.680000066757202e-01] bouProFluGas.Xi[2]=[0e+00, 0e+00] bouProFluGas.Xi[3]=[0e+00, 0e+00] -bouProFluGas.Xi[5]=[0e+00, 0e+00] bouProFluGas.Xi[4]=[2.319999933242798e-01, 2.319999933242798e-01] +bouProFluGas.Xi[5]=[0e+00, 0e+00] bouNatGas.Xi[1]=[9.200000166893005e-01, 9.200000166893005e-01] -bouNatGas.Xi[3]=[4.999999888241291e-03, 4.999999888241291e-03] bouNatGas.Xi[2]=[4.800000041723251e-02, 4.800000041723251e-02] +bouNatGas.Xi[3]=[4.999999888241291e-03, 4.999999888241291e-03] bouNatGas.Xi[4]=[2.000000094994903e-03, 2.000000094994903e-03] bouNatGas.Xi[5]=[1.499999966472387e-02, 1.499999966472387e-02] -bouNatGasFix.Xi[1]=[9.200000166893005e-01, 9.200000166893005e-01] -bouNatGasFix.Xi[4]=[2.000000094994903e-03, 2.000000094994903e-03] -bouNatGasFix.Xi[5]=[1.499999966472387e-02, 1.499999966472387e-02] -bouNatGasFix.Xi[3]=[4.999999888241291e-03, 4.999999888241291e-03] -bouNatGasFix.Xi[2]=[4.800000041723251e-02, 4.800000041723251e-02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Sources_Validation_BoundaryWithX_in.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Sources_Validation_BoundaryWithX_in.txt index 33f8a9cae3..add516b86d 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Sources_Validation_BoundaryWithX_in.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Sources_Validation_BoundaryWithX_in.txt @@ -1,28 +1,20 @@ -last-generated=2019-09-13 +last-generated=2020-10-29 statistics-simulation= { "linear": " ", "nonlinear": " ", "numerical Jacobians": "0" } -bouMoiAir.p=[1.01325e+05, 1.01325e+05] -bouProFluGas.p=[1.01325e+05, 1.01325e+05] -bouNatGas.p=[1.01325e+05, 1.01325e+05] -bouMoiAirCO2.p=[1.01325e+05, 1.01325e+05] time=[0e+00, 1e+00] -bouNatGas.T=[2.931499938964844e+02, 2.931499938964844e+02] -bouMoiAirCO2.T=[2.931499938964844e+02, 2.931499938964844e+02] -bouMoiAir.T=[2.931499938964844e+02, 2.931499938964844e+02] -bouProFluGas.T=[2.931499938964844e+02, 2.931499938964844e+02] -bouMoiAir.Xi[1]=[0.015, 0.015] -bouMoiAirCO2.Xi[1]=[0.015, 0.015] +bouMoiAir.Xi[1]=[1.499999966472387e-02, 1.499999966472387e-02] +bouMoiAirCO2.Xi[1]=[1.499999966472387e-02, 1.499999966472387e-02] bouProFluGas.Xi[1]=[5e-01, 5e-01] -bouProFluGas.Xi[4]=[3.00000011920929e-01, 3.00000011920929e-01] -bouProFluGas.Xi[5]=[0e+00, 0e+00] bouProFluGas.Xi[2]=[2.000000029802322e-01, 2.000000029802322e-01] bouProFluGas.Xi[3]=[0e+00, 0e+00] +bouProFluGas.Xi[4]=[3.00000011920929e-01, 3.00000011920929e-01] +bouProFluGas.Xi[5]=[0e+00, 0e+00] bouNatGas.Xi[1]=[5e-01, 5e-01] bouNatGas.Xi[2]=[2.000000029802322e-01, 2.000000029802322e-01] bouNatGas.Xi[3]=[0e+00, 0e+00] -bouNatGas.Xi[5]=[0e+00, 0e+00] bouNatGas.Xi[4]=[3.00000011920929e-01, 3.00000011920929e-01] +bouNatGas.Xi[5]=[0e+00, 0e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Sources_Validation_BoundaryWithXi_in.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Sources_Validation_BoundaryWithXi_in.txt index 33f8a9cae3..add516b86d 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Sources_Validation_BoundaryWithXi_in.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Sources_Validation_BoundaryWithXi_in.txt @@ -1,28 +1,20 @@ -last-generated=2019-09-13 +last-generated=2020-10-29 statistics-simulation= { "linear": " ", "nonlinear": " ", "numerical Jacobians": "0" } -bouMoiAir.p=[1.01325e+05, 1.01325e+05] -bouProFluGas.p=[1.01325e+05, 1.01325e+05] -bouNatGas.p=[1.01325e+05, 1.01325e+05] -bouMoiAirCO2.p=[1.01325e+05, 1.01325e+05] time=[0e+00, 1e+00] -bouNatGas.T=[2.931499938964844e+02, 2.931499938964844e+02] -bouMoiAirCO2.T=[2.931499938964844e+02, 2.931499938964844e+02] -bouMoiAir.T=[2.931499938964844e+02, 2.931499938964844e+02] -bouProFluGas.T=[2.931499938964844e+02, 2.931499938964844e+02] -bouMoiAir.Xi[1]=[0.015, 0.015] -bouMoiAirCO2.Xi[1]=[0.015, 0.015] +bouMoiAir.Xi[1]=[1.499999966472387e-02, 1.499999966472387e-02] +bouMoiAirCO2.Xi[1]=[1.499999966472387e-02, 1.499999966472387e-02] bouProFluGas.Xi[1]=[5e-01, 5e-01] -bouProFluGas.Xi[4]=[3.00000011920929e-01, 3.00000011920929e-01] -bouProFluGas.Xi[5]=[0e+00, 0e+00] bouProFluGas.Xi[2]=[2.000000029802322e-01, 2.000000029802322e-01] bouProFluGas.Xi[3]=[0e+00, 0e+00] +bouProFluGas.Xi[4]=[3.00000011920929e-01, 3.00000011920929e-01] +bouProFluGas.Xi[5]=[0e+00, 0e+00] bouNatGas.Xi[1]=[5e-01, 5e-01] bouNatGas.Xi[2]=[2.000000029802322e-01, 2.000000029802322e-01] bouNatGas.Xi[3]=[0e+00, 0e+00] -bouNatGas.Xi[5]=[0e+00, 0e+00] bouNatGas.Xi[4]=[3.00000011920929e-01, 3.00000011920929e-01] +bouNatGas.Xi[5]=[0e+00, 0e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Sources_Validation_Outside_CpData_Directions.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Sources_Validation_Outside_CpData_Directions.txt new file mode 100644 index 0000000000..b40834e14d --- /dev/null +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Sources_Validation_Outside_CpData_Directions.txt @@ -0,0 +1,17 @@ +last-generated=2022-02-14 +statistics-simulation= +{ + "linear": "0, 0, 0, 0", + "nonlinear": "1", + "numerical Jacobians": "0" +} +time=[0e+00, 8.64e+04] +winDir.y=[0e+00, 6.283185631036758e-02, 1.256637126207352e-01, 1.884955614805222e-01, 2.513274252414703e-01, 3.141592741012573e-01, 3.769911229610443e-01, 4.398229718208314e-01, 5.026548504829407e-01, 5.654866695404053e-01, 6.283185482025146e-01, 6.911503672599792e-01, 7.539822459220886e-01, 8.168140649795532e-01, 8.796459436416627e-01, 9.42477822303772e-01, 1.005309700965881e+00, 1.068141460418701e+00, 1.130973339080811e+00, 1.19380521774292e+00, 1.256637096405029e+00, 1.319468855857849e+00, 1.382300734519958e+00, 1.445132613182068e+00, 1.507964491844177e+00, 1.570796370506287e+00, 1.633628129959106e+00, 1.696460008621216e+00, 1.759291887283325e+00, 1.822123765945435e+00, 1.884955644607544e+00, 1.947787404060364e+00, 2.010619401931763e+00, 2.073451042175293e+00, 2.136282920837403e+00, 2.199114799499511e+00, 2.261946678161621e+00, 2.32477855682373e+00, 2.38761043548584e+00, 2.450442314147949e+00, 2.513274192810059e+00, 2.576106071472168e+00, 2.638937711715698e+00, 2.701769590377808e+00, 2.764601469039917e+00, 2.827433347702026e+00, 2.890265226364136e+00, 2.953097105026245e+00, 3.015928983688354e+00, 3.078760862350464e+00, 3.141592741012573e+00, 3.204424619674683e+00, 3.267256259918213e+00, 3.330088138580322e+00, 3.392920017242432e+00, 3.455751895904541e+00, 3.518583774566651e+00, 3.581415653228759e+00, 3.644247531890869e+00, 3.707079410552979e+00, 3.769911289215088e+00, 3.832742929458618e+00, 3.895574808120728e+00, 3.958406686782837e+00, 4.021238803863525e+00, 4.084070682525635e+00, 4.146902084350586e+00, 4.209733963012695e+00, 4.272565841674806e+00, 4.335397720336913e+00, 4.398229598999023e+00, 4.461061477661133e+00, 4.523893356323242e+00, 4.586725234985352e+00, 4.649557113647461e+00, 4.71238899230957e+00, 4.77522087097168e+00, 4.838052749633789e+00, 4.900884628295898e+00, 4.963716506958008e+00, 5.026548385620117e+00, 5.089380264282227e+00, 5.152212142944336e+00, 5.215044021606445e+00, 5.277875423431396e+00, 5.340707302093506e+00, 5.403539180755615e+00, 5.466371059417725e+00, 5.529202938079834e+00, 5.592034816741943e+00, 5.654866695404053e+00, 5.717698574066162e+00, 5.780530452728271e+00, 5.843362331390381e+00, 5.90619421005249e+00, 5.9690260887146e+00, 6.031857967376709e+00, 6.094689846038818e+00, 6.157521724700928e+00, 6.220353603363037e+00, 6.283185482025146e+00] +nor.pWin=[6.000035405158997e-01, -9.269916266202927e-02, -1.565693528391421e-03, -3.776606637984514e-03, -5.576925352215767e-03, -6.995708681643009e-03, -8.062016218900681e-03, -8.804907090961933e-03, -9.253439493477345e-03, -9.436672553420067e-03, -9.383667260408401e-03, -9.123480878770351e-03, -8.685172535479069e-03, -8.09780228883028e-03, -7.390428334474562e-03, -6.592110265046358e-03, -5.731907207518816e-03, -4.838878288865088e-03, -3.942082170397043e-03, -3.070578211918473e-03, -2.253425540402532e-03, -1.519683282822371e-03, -8.984105079434812e-04, -4.186662845313549e-04, -1.09509754111059e-04, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -5.801624865853228e-05, -4.729387583211064e-04, -1.177031197585166e-03, -2.039073733612895e-03, -2.927846275269985e-03, -3.712128615006804e-03, -4.26070112735033e-03, -4.442343488335609e-03, -4.125836305320263e-03, -3.179958555847406e-03, -1.473491196520627e-03, -9.269916266202927e-02, 6.000035405158997e-01] +eas.pWin=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -5.801624865853228e-05, -4.729387583211077e-04, -1.177031197585166e-03, -2.039073733612895e-03, -2.927846275269987e-03, -3.712128615006804e-03, -4.26070112735033e-03, -4.442343488335609e-03, -4.125836305320263e-03, -3.179958555847406e-03, -1.473491196520627e-03, -9.269916266202927e-02, 6.000035405158997e-01, -9.269916266202927e-02, -1.565693528391421e-03, -3.776606637984522e-03, -5.576925352215767e-03, -6.995708681643009e-03, -8.062016218900681e-03, -8.804907090961933e-03, -9.253439493477345e-03, -9.436672553420067e-03, -9.383667260408401e-03, -9.123480878770351e-03, -8.685172535479069e-03, -8.09780228883028e-03, -7.390428334474564e-03, -6.592110265046358e-03, -5.731907207518816e-03, -4.838878288865089e-03, -3.942082170397043e-03, -3.070578211918473e-03, -2.253425540402532e-03, -1.519683282822371e-03, -8.984105079434812e-04, -4.186662845313549e-04, -1.09509754111059e-04, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +sou.pWin=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -5.801624865853228e-05, -4.729387583211064e-04, -1.177031197585166e-03, -2.039073733612895e-03, -2.927846275269985e-03, -3.712128615006804e-03, -4.26070112735033e-03, -4.442343488335609e-03, -4.125836305320263e-03, -3.179958555847406e-03, -1.473491196520627e-03, -9.269916266202927e-02, 6.000035405158997e-01, -9.269916266202927e-02, -1.565693528391421e-03, -3.776606637984514e-03, -5.576925352215767e-03, -6.99570868164302e-03, -8.062016218900687e-03, -8.804907090961928e-03, -9.253439493477345e-03, -9.436672553420067e-03, -9.383667260408401e-03, -9.123480878770351e-03, -8.685172535479069e-03, -8.09780228883028e-03, -7.390428334474564e-03, -6.592110265046358e-03, -5.731907207518816e-03, -4.838878288865089e-03, -3.942082170397035e-03, -3.070578211918481e-03, -2.253425540402538e-03, -1.519683282822371e-03, -8.984105079434812e-04, -4.186662845313549e-04, -1.09509754111059e-04, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +wes.pWin=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -5.801624865853228e-05, -4.729387583211064e-04, -1.177031197585166e-03, -2.039073733612895e-03, -2.927846275269985e-03, -3.71212861500681e-03, -4.260701127350327e-03, -4.442343488335609e-03, -4.125836305320263e-03, -3.179958555847406e-03, -1.473491196520627e-03, -9.269916266202927e-02, 6.000035405158997e-01, -9.269916266202927e-02, -1.565693528391421e-03, -3.776606637984514e-03, -5.576925352215767e-03, -6.995708681643009e-03, -8.062016218900681e-03, -8.804907090961933e-03, -9.253439493477345e-03, -9.436672553420067e-03, -9.383667260408401e-03, -9.123480878770351e-03, -8.685172535479069e-03, -8.09780228883028e-03, -7.390428334474564e-03, -6.592110265046358e-03, -5.731907207518816e-03, -4.838878288865089e-03, -3.942082170397043e-03, -3.070578211918473e-03, -2.253425540402532e-03, -1.519683282822371e-03, -8.984105079434812e-04, -4.186662845313549e-04, -1.09509754111059e-04, 0e+00] +nor.alpha=[0e+00, 6.283185631036758e-02, 1.256637126207352e-01, 1.884955614805222e-01, 2.513274252414703e-01, 3.141592741012573e-01, 3.769911229610443e-01, 4.398229718208314e-01, 5.026548504829407e-01, 5.654866695404053e-01, 6.283185482025146e-01, 6.911503672599792e-01, 7.539822459220886e-01, 8.168140649795532e-01, 8.796459436416627e-01, 9.42477822303772e-01, 1.005309700965881e+00, 1.068141460418701e+00, 1.130973339080811e+00, 1.19380521774292e+00, 1.256637096405029e+00, 1.319468855857849e+00, 1.382300734519958e+00, 1.445132613182068e+00, 1.507964491844177e+00, 1.570796370506287e+00, 1.633628129959106e+00, 1.696460008621216e+00, 1.759291887283325e+00, 1.822123765945435e+00, 1.884955644607544e+00, 1.947787404060364e+00, 2.010619401931763e+00, 2.073451042175293e+00, 2.136282920837403e+00, 2.199114799499511e+00, 2.261946678161621e+00, 2.32477855682373e+00, 2.38761043548584e+00, 2.450442314147949e+00, 2.513274192810059e+00, 2.576106071472168e+00, 2.638937711715698e+00, 2.701769590377808e+00, 2.764601469039917e+00, 2.827433347702026e+00, 2.890265226364136e+00, 2.953097105026245e+00, 3.015928983688354e+00, 3.078760862350464e+00, 3.141592741012573e+00, 3.204424619674683e+00, 3.267256259918213e+00, 3.330088138580322e+00, 3.392920017242432e+00, 3.455751895904541e+00, 3.518583774566651e+00, 3.581415653228759e+00, 3.644247531890869e+00, 3.707079410552979e+00, 3.769911289215088e+00, 3.832742929458618e+00, 3.895574808120728e+00, 3.958406686782837e+00, 4.021238803863525e+00, 4.084070682525635e+00, 4.146902084350586e+00, 4.209733963012695e+00, 4.272565841674806e+00, 4.335397720336913e+00, 4.398229598999023e+00, 4.461061477661133e+00, 4.523893356323242e+00, 4.586725234985352e+00, 4.649557113647461e+00, 4.71238899230957e+00, 4.77522087097168e+00, 4.838052749633789e+00, 4.900884628295898e+00, 4.963716506958008e+00, 5.026548385620117e+00, 5.089380264282227e+00, 5.152212142944336e+00, 5.215044021606445e+00, 5.277875423431396e+00, 5.340707302093506e+00, 5.403539180755615e+00, 5.466371059417725e+00, 5.529202938079834e+00, 5.592034816741943e+00, 5.654866695404053e+00, 5.717698574066162e+00, 5.780530452728271e+00, 5.843362331390381e+00, 5.90619421005249e+00, 5.9690260887146e+00, 6.031857967376709e+00, 6.094689846038818e+00, 6.157521724700928e+00, 6.220353603363037e+00, 6.283185482025146e+00] +eas.alpha=[4.71238899230957e+00, 4.77522087097168e+00, 4.838052749633789e+00, 4.900884628295898e+00, 4.963716506958008e+00, 5.026548385620117e+00, 5.089380264282227e+00, 5.152212142944336e+00, 5.215044021606445e+00, 5.277875423431396e+00, 5.340707302093506e+00, 5.403539180755615e+00, 5.466371059417725e+00, 5.529202938079834e+00, 5.592034816741943e+00, 5.654866695404053e+00, 5.717698574066162e+00, 5.780530452728271e+00, 5.843362331390381e+00, 5.90619421005249e+00, 5.9690260887146e+00, 6.031857967376709e+00, 6.094689846038818e+00, 6.157521724700928e+00, 6.220353603363037e+00, 6.283185482025146e+00, 6.346017360687256e+00, 6.408849239349365e+00, 6.471680641174316e+00, 6.534512519836426e+00, 6.597344398498535e+00, 6.660176277160645e+00, 6.723008155822754e+00, 6.785840034484863e+00, 6.848671913146973e+00, 6.911503791809082e+00, 6.974335670471191e+00, 7.037167549133301e+00, 7.09999942779541e+00, 7.16283130645752e+00, 7.225663185119629e+00, 7.288495063781738e+00, 7.351326942443848e+00, 7.414158821105957e+00, 7.476990699768066e+00, 7.539822578430176e+00, 7.602654457092285e+00, 7.665485858917236e+00, 7.728317737579346e+00, 7.791149616241455e+00, 7.853981494903564e+00, 7.916813373565674e+00, 7.979645252227783e+00, 8.042477607727051e+00, 8.10530948638916e+00, 8.16814136505127e+00, 8.230972290039062e+00, 8.293804168701172e+00, 8.356636047363281e+00, 8.419467926025391e+00, 8.4822998046875e+00, 8.545131683349609e+00, 8.607963562011719e+00, 8.670795440673828e+00, 8.733627319335938e+00, 8.796459197998047e+00, 8.859291076660156e+00, 8.922122955322266e+00, 8.984954833984375e+00, 9.047786712646484e+00, 9.110618591308594e+00, 9.173450469970703e+00, 9.236282348632812e+00, 9.299114227294922e+00, 9.361946105957031e+00, 9.424777984619141e+00, 9.48760986328125e+00, 9.550441741943359e+00, 9.613273620605469e+00, 9.676105499267578e+00, 9.738937377929688e+00, 9.801769256591797e+00, 9.864601135253906e+00, 9.927433013916016e+00, 9.990264892578125e+00, 1.005309677124023e+01, 1.011592864990234e+01, 1.017876052856445e+01, 1.024159240722656e+01, 1.030442428588867e+01, 1.036725616455078e+01, 1.043008804321289e+01, 1.0492919921875e+01, 1.055575084686279e+01, 1.06185827255249e+01, 1.068141460418701e+01, 1.074424648284912e+01, 1.080707836151123e+01, 1.086991024017334e+01, 1.093274211883545e+01, 1.099557399749756e+01] +sou.alpha=[3.141592741012573e+00, 3.204424619674683e+00, 3.267256259918213e+00, 3.330088138580322e+00, 3.392920017242432e+00, 3.455751895904541e+00, 3.51858377456665e+00, 3.58141565322876e+00, 3.644247531890869e+00, 3.707079410552979e+00, 3.769911289215088e+00, 3.832742929458618e+00, 3.895574808120728e+00, 3.958406686782837e+00, 4.021238803863525e+00, 4.084070682525635e+00, 4.146902084350586e+00, 4.209733963012695e+00, 4.272565841674805e+00, 4.335397720336914e+00, 4.398229598999023e+00, 4.461061477661133e+00, 4.523893356323242e+00, 4.586725234985352e+00, 4.649557113647461e+00, 4.71238899230957e+00, 4.77522087097168e+00, 4.838052749633789e+00, 4.900884628295898e+00, 4.963716506958008e+00, 5.026548385620117e+00, 5.089380264282227e+00, 5.152212142944336e+00, 5.215044021606445e+00, 5.277875423431396e+00, 5.340707302093506e+00, 5.403539180755615e+00, 5.466371059417725e+00, 5.529202938079834e+00, 5.592034816741943e+00, 5.654866695404053e+00, 5.717698574066162e+00, 5.780530452728271e+00, 5.843362331390381e+00, 5.90619421005249e+00, 5.9690260887146e+00, 6.031857967376709e+00, 6.094689846038818e+00, 6.157521724700928e+00, 6.220353603363037e+00, 6.283185482025146e+00, 6.346017360687256e+00, 6.408849239349365e+00, 6.471680641174316e+00, 6.534512519836426e+00, 6.597344398498536e+00, 6.660176277160645e+00, 6.723008155822753e+00, 6.785840034484863e+00, 6.848671913146973e+00, 6.911503791809082e+00, 6.974335670471191e+00, 7.037167549133301e+00, 7.09999942779541e+00, 7.16283130645752e+00, 7.225663185119629e+00, 7.288495063781738e+00, 7.351326942443848e+00, 7.414158821105958e+00, 7.476990699768066e+00, 7.539822578430175e+00, 7.602654457092285e+00, 7.665485858917236e+00, 7.728317737579346e+00, 7.791149616241455e+00, 7.853981494903564e+00, 7.916813373565674e+00, 7.979645252227783e+00, 8.042477607727051e+00, 8.10530948638916e+00, 8.16814136505127e+00, 8.230972290039062e+00, 8.293804168701172e+00, 8.356636047363281e+00, 8.419467926025391e+00, 8.4822998046875e+00, 8.545131683349609e+00, 8.607963562011719e+00, 8.670795440673828e+00, 8.733627319335938e+00, 8.796459197998047e+00, 8.859291076660156e+00, 8.922122955322266e+00, 8.984954833984375e+00, 9.047786712646484e+00, 9.110618591308594e+00, 9.173450469970703e+00, 9.236282348632812e+00, 9.299114227294922e+00, 9.361946105957031e+00, 9.424777984619141e+00] +wes.alpha=[1.570796370506287e+00, 1.633628129959106e+00, 1.696460008621216e+00, 1.759291887283325e+00, 1.822123765945435e+00, 1.884955644607544e+00, 1.947787404060364e+00, 2.010619401931763e+00, 2.073451042175293e+00, 2.136282920837402e+00, 2.199114799499512e+00, 2.261946678161621e+00, 2.32477855682373e+00, 2.38761043548584e+00, 2.450442314147949e+00, 2.513274192810059e+00, 2.576106071472168e+00, 2.638937711715698e+00, 2.701769590377808e+00, 2.764601469039917e+00, 2.827433347702026e+00, 2.890265226364136e+00, 2.953097105026245e+00, 3.015928983688354e+00, 3.078760862350464e+00, 3.141592741012573e+00, 3.204424619674683e+00, 3.267256259918213e+00, 3.330088138580323e+00, 3.392920017242432e+00, 3.455751895904541e+00, 3.51858377456665e+00, 3.58141565322876e+00, 3.644247531890869e+00, 3.707079410552979e+00, 3.769911289215087e+00, 3.832742929458618e+00, 3.895574808120728e+00, 3.958406686782837e+00, 4.021238803863525e+00, 4.084070682525635e+00, 4.146902084350586e+00, 4.209733963012695e+00, 4.272565841674805e+00, 4.335397720336914e+00, 4.398229598999023e+00, 4.461061477661133e+00, 4.523893356323242e+00, 4.586725234985352e+00, 4.649557113647461e+00, 4.71238899230957e+00, 4.77522087097168e+00, 4.838052749633789e+00, 4.900884628295898e+00, 4.963716506958008e+00, 5.026548385620118e+00, 5.089380264282227e+00, 5.152212142944335e+00, 5.215044021606445e+00, 5.277875423431396e+00, 5.340707302093506e+00, 5.403539180755615e+00, 5.466371059417725e+00, 5.529202938079834e+00, 5.592034816741943e+00, 5.654866695404053e+00, 5.717698574066162e+00, 5.780530452728271e+00, 5.843362331390382e+00, 5.906194210052489e+00, 5.969026088714599e+00, 6.031857967376709e+00, 6.094689846038818e+00, 6.157521724700928e+00, 6.220353603363037e+00, 6.283185482025146e+00, 6.346017360687256e+00, 6.408849239349365e+00, 6.471680641174316e+00, 6.534512519836426e+00, 6.597344398498535e+00, 6.660176277160645e+00, 6.723008155822754e+00, 6.785840034484863e+00, 6.848671913146973e+00, 6.911503791809082e+00, 6.974335670471191e+00, 7.037167549133301e+00, 7.09999942779541e+00, 7.16283130645752e+00, 7.225663185119629e+00, 7.288495063781738e+00, 7.351326942443848e+00, 7.414158821105957e+00, 7.476990699768066e+00, 7.539822578430176e+00, 7.602654457092285e+00, 7.665485858917236e+00, 7.728317737579346e+00, 7.791149616241455e+00, 7.853981494903564e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Storage_Examples_BufferStorage.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Storage_Examples_BufferStorage.txt index 000aed21b8..d900fc152b 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Storage_Examples_BufferStorage.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Storage_Examples_BufferStorage.txt @@ -1,13 +1,13 @@ -last-generated=2021-05-19 +last-generated=2022-05-23 statistics-simulation= { "linear": "0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0", "nonlinear": "1, 1, 1, 1, 1, 1, 1, 1", - "number of continuous time states": "58", + "number of continuous time states": "66", "numerical Jacobians": "0" } time=[0e+00, 8.64e+04] -bufferStorage.heatingCoil1.Therm1[4].Q_flow=[0e+00, 2.089016571044922e+02, 2.102523345947266e+02, 2.456511383056641e+02, 3.51256591796875e+02, 5.344742431640625e+02, 7.674219970703125e+02, 1.0078916015625e+03, 1.2214853515625e+03, 1.390571655273438e+03, 1.512841918945312e+03, 1.594992797851562e+03, 1.647029663085938e+03, 1.678463500976562e+03, 1.696881591796875e+03, 1.707471557617188e+03, 1.7135888671875e+03, 1.717248413085938e+03, 1.719530395507812e+03, 1.721060302734375e+03, 1.722143432617188e+03, 1.722948608398438e+03, 1.723556274414062e+03, 1.724028442382812e+03, 1.724403198242188e+03, 1.724701293945312e+03, 1.7249404296875e+03, 1.7251328125e+03, 1.725290649414062e+03, 1.725424682617188e+03, 1.725537841796875e+03, 1.72563525390625e+03, 1.725722778320312e+03, 1.725799194335938e+03, 1.7258681640625e+03, 1.72593212890625e+03, 1.725994018554688e+03, 1.726046997070312e+03, 1.726098266601562e+03, 1.726147583007812e+03, 1.726193969726562e+03, 1.726239868164062e+03, 1.726283203125e+03, 1.726324951171875e+03, 1.726365478515625e+03, 1.726404907226562e+03, 1.726442749023438e+03, 1.7264794921875e+03, 1.726515258789062e+03, 1.726549926757812e+03, 1.726583984375e+03, 1.72661669921875e+03, 1.726648071289062e+03, 1.726678955078125e+03, 1.726708984375e+03, 1.726738159179688e+03, 1.726766479492188e+03, 1.726794067382812e+03, 1.726820922851562e+03, 1.726846923828125e+03, 1.726872192382812e+03, 1.72689697265625e+03, 1.726921020507812e+03, 1.7269443359375e+03, 1.726967163085938e+03, 1.726989135742188e+03, 1.727010620117188e+03, 1.727031494140625e+03, 1.7270517578125e+03, 1.727071411132812e+03, 1.727090576171875e+03, 1.727109252929688e+03, 1.72712744140625e+03, 1.72714501953125e+03, 1.727162231445312e+03, 1.727178955078125e+03, 1.727195190429688e+03, 1.727211059570312e+03, 1.727226318359375e+03, 1.727241333007812e+03, 1.727255859375e+03, 1.72727001953125e+03, 1.72728369140625e+03, 1.727297119140625e+03, 1.727310180664062e+03, 1.72732275390625e+03, 1.727335083007812e+03, 1.72734716796875e+03, 1.727358764648438e+03, 1.7273701171875e+03, 1.727381103515625e+03, 1.727391845703125e+03, 1.727402221679688e+03, 1.727412353515625e+03, 1.727422241210938e+03, 1.727431762695312e+03, 1.727441162109375e+03, 1.7274501953125e+03, 1.727459106445312e+03, 1.727467651367188e+03, 1.72747607421875e+03] -bufferStorage.layer[4].T=[3.031499938964844e+02, 3.029785461425781e+02, 3.028784790039062e+02, 3.032481384277344e+02, 3.046156921386719e+02, 3.071954345703125e+02, 3.107311096191406e+02, 3.147042541503906e+02, 3.186063232421875e+02, 3.22092041015625e+02, 3.250027160644531e+02, 3.273209533691406e+02, 3.291090393066406e+02, 3.30460693359375e+02, 3.314702453613281e+02, 3.32220703125e+02, 3.327774963378906e+02, 3.331912536621094e+02, 3.334993896484375e+02, 3.337294311523438e+02, 3.339015808105469e+02, 3.340306396484375e+02, 3.341276245117188e+02, 3.342006530761719e+02, 3.342557067871094e+02, 3.342973022460938e+02, 3.343288269042969e+02, 3.343528442382812e+02, 3.343711853027344e+02, 3.343852844238281e+02, 3.343962097167969e+02, 3.344047546386719e+02, 3.344114685058594e+02, 3.344168395996094e+02, 3.344212036132812e+02, 3.344247436523438e+02, 3.34427734375e+02, 3.344302673339844e+02, 3.344324340820312e+02, 3.34434326171875e+02, 3.3443603515625e+02, 3.344375610351562e+02, 3.3443896484375e+02, 3.344402465820312e+02, 3.344414672851562e+02, 3.34442626953125e+02, 3.344437255859375e+02, 3.344447631835938e+02, 3.344457397460938e+02, 3.344467163085938e+02, 3.344476318359375e+02, 3.344485168457031e+02, 3.344494018554688e+02, 3.344502258300781e+02, 3.344510498046875e+02, 3.344518127441406e+02, 3.344525756835938e+02, 3.344533386230469e+02, 3.344540405273438e+02, 3.344547424316406e+02, 3.344554138183594e+02, 3.344560852050781e+02, 3.344567260742188e+02, 3.344573669433594e+02, 3.344579772949219e+02, 3.344585571289062e+02, 3.344591369628906e+02, 3.344596862792969e+02, 3.344602355957031e+02, 3.344607543945312e+02, 3.344612731933594e+02, 3.344617919921875e+02, 3.344622802734375e+02, 3.344627380371094e+02, 3.344631958007812e+02, 3.344636535644531e+02, 3.344640808105469e+02, 3.344645080566406e+02, 3.344649047851562e+02, 3.3446533203125e+02, 3.344656982421875e+02, 3.344660949707031e+02, 3.344664611816406e+02, 3.344668273925781e+02, 3.344671630859375e+02, 3.344674987792969e+02, 3.344678344726562e+02, 3.344681396484375e+02, 3.344684753417969e+02, 3.344687805175781e+02, 3.344690551757812e+02, 3.344693603515625e+02, 3.344696350097656e+02, 3.344699096679688e+02, 3.344701538085938e+02, 3.344704284667969e+02, 3.344706726074219e+02, 3.344709167480469e+02, 3.344711608886719e+02, 3.344713745117188e+02, 3.344716186523438e+02] +bufferStorage.heatingCoil1.Therm1[4].Q_flow=[0e+00, 2.089322357177734e+02, 2.10279296875e+02, 2.456749267578125e+02, 3.512670288085938e+02, 5.345086669921875e+02, 7.674417114257812e+02, 1.007915405273438e+03, 1.22147998046875e+03, 1.390572021484375e+03, 1.512841064453125e+03, 1.594987426757812e+03, 1.6470283203125e+03, 1.678455688476562e+03, 1.696874267578125e+03, 1.707472900390625e+03, 1.713564697265625e+03, 1.717232666015625e+03, 1.719527709960938e+03, 1.721064819335938e+03, 1.7221396484375e+03, 1.722940185546875e+03, 1.723549438476562e+03, 1.72402587890625e+03, 1.724404418945312e+03, 1.724701293945312e+03, 1.724939208984375e+03, 1.7251328125e+03, 1.7252919921875e+03, 1.725425048828125e+03, 1.7255390625e+03, 1.725636596679688e+03, 1.725722412109375e+03, 1.725800903320312e+03, 1.725869873046875e+03, 1.725932373046875e+03, 1.725990478515625e+03, 1.726046020507812e+03, 1.72609814453125e+03, 1.726147338867188e+03, 1.726194580078125e+03, 1.72623974609375e+03, 1.726284301757812e+03, 1.726326782226562e+03, 1.726365966796875e+03, 1.7264052734375e+03, 1.726442626953125e+03, 1.726479125976562e+03, 1.72651513671875e+03, 1.726549438476562e+03, 1.726583251953125e+03, 1.726616088867188e+03, 1.72664794921875e+03, 1.726678833007812e+03, 1.726708984375e+03, 1.726738159179688e+03, 1.726766479492188e+03, 1.726794067382812e+03, 1.726820922851562e+03, 1.726847045898438e+03, 1.726872436523438e+03, 1.726897216796875e+03, 1.726921264648438e+03, 1.726944458007812e+03, 1.726967041015625e+03, 1.726989135742188e+03, 1.727010620117188e+03, 1.727031616210938e+03, 1.727051879882812e+03, 1.727071655273438e+03, 1.7270908203125e+03, 1.727109497070312e+03, 1.727127563476562e+03, 1.727145263671875e+03, 1.727162475585938e+03, 1.727179321289062e+03, 1.727195556640625e+03, 1.727211303710938e+03, 1.727226684570312e+03, 1.727241577148438e+03, 1.727256103515625e+03, 1.727270263671875e+03, 1.727284057617188e+03, 1.72729736328125e+03, 1.727310424804688e+03, 1.727323120117188e+03, 1.72733544921875e+03, 1.727347412109375e+03, 1.727359130859375e+03, 1.727370361328125e+03, 1.727381469726562e+03, 1.727392211914062e+03, 1.727402587890625e+03, 1.727412719726562e+03, 1.727422607421875e+03, 1.72743212890625e+03, 1.72744140625e+03, 1.727450561523438e+03, 1.727459350585938e+03, 1.727467895507812e+03, 1.727476318359375e+03] +bufferStorage.layer[4].T=[3.031499938964844e+02, 3.029797973632812e+02, 3.028795471191406e+02, 3.032489929199219e+02, 3.046163635253906e+02, 3.071959228515625e+02, 3.107314147949219e+02, 3.147044677734375e+02, 3.186065368652344e+02, 3.220921325683594e+02, 3.250028381347656e+02, 3.273210144042969e+02, 3.291090393066406e+02, 3.304604187011719e+02, 3.314702758789062e+02, 3.322204895019531e+02, 3.3277734375e+02, 3.331911315917969e+02, 3.33499267578125e+02, 3.337293701171875e+02, 3.33901611328125e+02, 3.3403076171875e+02, 3.341277465820312e+02, 3.342007751464844e+02, 3.342558288574219e+02, 3.342974243164062e+02, 3.343289489746094e+02, 3.343529357910156e+02, 3.343712768554688e+02, 3.343853759765625e+02, 3.343963012695312e+02, 3.344048156738281e+02, 3.344115295410156e+02, 3.344169006347656e+02, 3.344212341308594e+02, 3.344248046875e+02, 3.344277648925781e+02, 3.344302673339844e+02, 3.344324340820312e+02, 3.34434326171875e+02, 3.3443603515625e+02, 3.344375610351562e+02, 3.3443896484375e+02, 3.344402770996094e+02, 3.344414672851562e+02, 3.34442626953125e+02, 3.344437255859375e+02, 3.344447631835938e+02, 3.344457397460938e+02, 3.344467163085938e+02, 3.344476318359375e+02, 3.344485168457031e+02, 3.344494018554688e+02, 3.344502258300781e+02, 3.344510498046875e+02, 3.344518127441406e+02, 3.344525756835938e+02, 3.344533386230469e+02, 3.344540405273438e+02, 3.344547424316406e+02, 3.344554443359375e+02, 3.344560852050781e+02, 3.344567260742188e+02, 3.344573669433594e+02, 3.344579772949219e+02, 3.344585571289062e+02, 3.344591369628906e+02, 3.344596862792969e+02, 3.344602355957031e+02, 3.344607849121094e+02, 3.344612731933594e+02, 3.344617919921875e+02, 3.344622802734375e+02, 3.344627380371094e+02, 3.344631958007812e+02, 3.344636535644531e+02, 3.344640808105469e+02, 3.344645080566406e+02, 3.344649353027344e+02, 3.3446533203125e+02, 3.344657287597656e+02, 3.344660949707031e+02, 3.344664611816406e+02, 3.344668273925781e+02, 3.344671630859375e+02, 3.344674987792969e+02, 3.344678344726562e+02, 3.344681701660156e+02, 3.344684753417969e+02, 3.344687805175781e+02, 3.344690856933594e+02, 3.344693603515625e+02, 3.344696350097656e+02, 3.344699096679688e+02, 3.344701843261719e+02, 3.344704284667969e+02, 3.344706726074219e+02, 3.344709167480469e+02, 3.344711608886719e+02, 3.344714050292969e+02, 3.344716186523438e+02] bufferStorage.portHC1In.p=[1.155022890625e+05, 1.155022890625e+05] bufferStorage.portHC1Out.p=[1.01325e+05, 1.01325e+05] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Storage_Validation_HeatExchangerDynamics.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Storage_Validation_HeatExchangerDynamics.txt index 6dc8ee02bb..cd9781e968 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Storage_Validation_HeatExchangerDynamics.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Storage_Validation_HeatExchangerDynamics.txt @@ -1,4 +1,4 @@ -last-generated=2021-05-19 +last-generated=2022-07-06 statistics-simulation= { "linear": "0, 0", @@ -8,12 +8,12 @@ statistics-simulation= } time=[0e+00, 1.44e+04] senTanDyn.port_a.m_flow=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.142857182770975e-03, 1.666666753590107e-02, 2.619047649204731e-02, 3.57142873108387e-02, 4.523809626698494e-02, 5.476190522313118e-02, 6.428571790456772e-02, 7.380952686071397e-02, 8.33333358168602e-02, 9.285714477300644e-02, 1.023809537291527e-01, 1.119047626852989e-01, 1.190476194024086e-01, 1.190476194024086e-01, 1.190476194024086e-01, 1.190476194024086e-01, 1.190476194024086e-01, 1.190476194024086e-01, 1.190476194024086e-01, 1.190476194024086e-01, 1.190476194024086e-01, 1.190476194024086e-01, 1.190476194024086e-01, 1.190476194024086e-01, 1.190476194024086e-01, 1.119047626852989e-01, 1.023809537291527e-01, 9.285714477300644e-02, 8.33333358168602e-02, 7.380952686071396e-02, 6.428571790456772e-02, 5.476190522313118e-02, 4.523809626698494e-02, 3.57142873108387e-02, 2.619047649204731e-02, 1.666666753590107e-02, 7.142857182770967e-03, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.142857182770967e-03, 1.666666753590107e-02, 2.619047649204731e-02, 3.57142873108387e-02, 4.523809626698494e-02, 5.476190522313118e-02, 6.428571790456772e-02, 7.380952686071396e-02, 8.33333358168602e-02, 9.285714477300644e-02, 1.023809537291527e-01, 1.119047626852989e-01, 1.190476194024086e-01, 1.190476194024086e-01, 1.190476194024086e-01, 1.190476194024086e-01, 1.190476194024086e-01, 1.190476194024086e-01, 1.190476194024086e-01, 1.190476194024086e-01, 1.190476194024086e-01, 1.190476194024086e-01, 1.190476194024086e-01, 1.190476194024086e-01, 1.190476194024086e-01, 1.119047626852989e-01, 1.023809537291527e-01, 9.285714477300644e-02, 8.33333358168602e-02, 7.380952686071396e-02, 6.428571790456772e-02, 5.476190522313118e-02, 4.523809626698494e-02, 3.57142873108387e-02, 2.619047649204731e-02, 1.666666753590107e-02, 7.142857182770967e-03, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -senTanDyn.T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.961549377441407e+02, 3.166266479492188e+02, 3.18701171875e+02, 3.201121215820312e+02, 3.212000427246094e+02, 3.220903015136719e+02, 3.228448791503906e+02, 3.234999084472656e+02, 3.240780029296875e+02, 3.245949401855469e+02, 3.250619201660156e+02, 3.254871826171875e+02, 3.258146362304688e+02, 3.2589794921875e+02, 3.259804992675781e+02, 3.260623474121094e+02, 3.261434936523438e+02, 3.262239379882812e+02, 3.263036804199219e+02, 3.263826904296875e+02, 3.264609680175781e+02, 3.265385437011719e+02, 3.266153564453125e+02, 3.266914672851562e+02, 3.26766845703125e+02, 3.266513366699219e+02, 3.264372253417969e+02, 3.261933288574219e+02, 3.259136047363281e+02, 3.255899658203125e+02, 3.252115173339844e+02, 3.24762451171875e+02, 3.242190246582031e+02, 3.235468444824219e+02, 3.226806640625e+02, 3.215118408203125e+02, 3.197465515136719e+02, 3.138562622070312e+02, 3.090408935546875e+02, 3.067517700195312e+02, 3.056107177734375e+02, 3.050227355957031e+02, 3.047113037109375e+02, 3.045421142578125e+02, 3.044479064941406e+02, 3.043941650390625e+02, 3.043627319335938e+02, 3.043437194824219e+02, 3.043318786621094e+02, 3.043243713378906e+02, 3.064169006347656e+02, 3.210226440429688e+02, 3.225746154785156e+02, 3.236304016113281e+02, 3.2444921875e+02, 3.251158752441406e+02, 3.256829528808594e+02, 3.261735534667969e+02, 3.266063232421875e+02, 3.269923400878906e+02, 3.273397827148438e+02, 3.276558837890625e+02, 3.278992919921875e+02, 3.279622192382812e+02, 3.280243835449219e+02, 3.280857849121094e+02, 3.28146484375e+02, 3.282065124511719e+02, 3.28265869140625e+02, 3.283245544433594e+02, 3.283825378417969e+02, 3.284398803710938e+02, 3.284965515136719e+02, 3.285525817871094e+02, 3.286079711914062e+02, 3.285233764648438e+02, 3.283660583496094e+02, 3.281866455078125e+02, 3.2798046875e+02, 3.277415466308594e+02, 3.274616088867188e+02, 3.271295776367188e+02, 3.267276916503906e+02, 3.262278137207031e+02, 3.255838928222656e+02, 3.247090759277344e+02, 3.233952026367188e+02, 3.190606079101562e+02, 3.155611877441406e+02, 3.139384155273438e+02, 3.1315234375e+02, 3.127597961425781e+02, 3.125572814941406e+02, 3.124503173828125e+02] +senTanDyn.T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.961549377441407e+02, 3.166266479492188e+02, 3.18701171875e+02, 3.201121215820312e+02, 3.212000427246094e+02, 3.220903015136719e+02, 3.228448791503906e+02, 3.234999084472656e+02, 3.240780029296875e+02, 3.245949401855469e+02, 3.250619201660156e+02, 3.254871826171875e+02, 3.258146362304688e+02, 3.2589794921875e+02, 3.259804992675781e+02, 3.260623474121094e+02, 3.261434936523438e+02, 3.262239379882812e+02, 3.263036804199219e+02, 3.263826904296875e+02, 3.264609680175781e+02, 3.265385437011719e+02, 3.266153564453125e+02, 3.266914672851562e+02, 3.26766845703125e+02, 3.266513366699219e+02, 3.264372253417969e+02, 3.261933288574219e+02, 3.259136047363281e+02, 3.255899658203125e+02, 3.252115173339844e+02, 3.24762451171875e+02, 3.242190246582031e+02, 3.235468444824219e+02, 3.226806640625e+02, 3.215118408203125e+02, 3.197465515136719e+02, 3.138562622070312e+02, 3.090408935546875e+02, 3.067517700195312e+02, 3.056107177734375e+02, 3.050227355957031e+02, 3.047113037109375e+02, 3.045421142578125e+02, 3.044479064941406e+02, 3.043941650390625e+02, 3.043627319335938e+02, 3.043437194824219e+02, 3.043318786621094e+02, 3.043243713378906e+02, 3.064169006347656e+02, 3.210226440429688e+02, 3.225746154785156e+02, 3.236304016113281e+02, 3.2444921875e+02, 3.251158752441406e+02, 3.256829528808594e+02, 3.261735534667969e+02, 3.266063232421875e+02, 3.269923400878906e+02, 3.273397827148438e+02, 3.276558837890625e+02, 3.278992919921875e+02, 3.279622192382812e+02, 3.280243835449219e+02, 3.280857849121094e+02, 3.28146484375e+02, 3.282065124511719e+02, 3.28265869140625e+02, 3.283245544433594e+02, 3.283825378417969e+02, 3.284398803710938e+02, 3.284965515136719e+02, 3.285525817871094e+02, 3.286079711914062e+02, 3.285233764648438e+02, 3.283660583496094e+02, 3.281866455078125e+02, 3.2798046875e+02, 3.277415466308594e+02, 3.274616088867188e+02, 3.271295776367188e+02, 3.267276916503906e+02, 3.262278137207031e+02, 3.255838928222656e+02, 3.247090759277344e+02, 3.233952026367188e+02, 3.190606079101562e+02, 3.155611877441406e+02, 3.139384155273438e+02, 3.1315234375e+02, 3.127597961425781e+02, 3.125572814941406e+02, 3.124502868652344e+02] senTanSte.T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 3.135401916503906e+02, 3.170700378417969e+02, 3.189023742675781e+02, 3.202342529296875e+02, 3.212852478027344e+02, 3.221548461914062e+02, 3.22896484375e+02, 3.235425720214844e+02, 3.241143798828125e+02, 3.246265869140625e+02, 3.250898742675781e+02, 3.2551220703125e+02, 3.258268127441406e+02, 3.259100036621094e+02, 3.259924926757812e+02, 3.260742797851562e+02, 3.261553649902344e+02, 3.262357177734375e+02, 3.263153686523438e+02, 3.263943176269531e+02, 3.264725036621094e+02, 3.265499877929688e+02, 3.266267395019531e+02, 3.267027587890625e+02, 3.267780456542969e+02, 3.266520690917969e+02, 3.264364624023438e+02, 3.261906433105469e+02, 3.259082336425781e+02, 3.25580810546875e+02, 3.251966857910156e+02, 3.247391357421875e+02, 3.241827697753906e+02, 3.234862670898438e+02, 3.225741882324219e+02, 3.212807312011719e+02, 3.187142028808594e+02, 3.043334045410156e+02, 3.043167419433594e+02, 3.043080139160156e+02, 3.043028564453125e+02, 3.042994384765625e+02, 3.042969665527344e+02, 3.042951049804688e+02, 3.042937316894531e+02, 3.042926025390625e+02, 3.042916870117188e+02, 3.042909240722656e+02, 3.04290283203125e+02, 3.042897338867188e+02, 3.187185668945312e+02, 3.213471984863281e+02, 3.227193603515625e+02, 3.23718994140625e+02, 3.245081481933594e+02, 3.251609497070312e+02, 3.2571728515625e+02, 3.262013854980469e+02, 3.266291809082031e+02, 3.2701171875e+02, 3.273570861816406e+02, 3.276712646484375e+02, 3.279051208496094e+02, 3.279679260253906e+02, 3.280299682617188e+02, 3.280913391113281e+02, 3.281520080566406e+02, 3.282119750976562e+02, 3.282713012695312e+02, 3.283299255371094e+02, 3.283878784179688e+02, 3.284451904296875e+02, 3.285018310546875e+02, 3.285578002929688e+02, 3.286131286621094e+02, 3.285206604003906e+02, 3.283621520996094e+02, 3.281811218261719e+02, 3.279728393554688e+02, 3.2773095703125e+02, 3.274467163085938e+02, 3.271075439453125e+02, 3.266943664550781e+02, 3.261761169433594e+02, 3.254962768554688e+02, 3.245306091308594e+02, 3.226193542480469e+02, 3.123182067871094e+02, 3.123040771484375e+02, 3.122962951660156e+02, 3.122915344238281e+02, 3.12288330078125e+02, 3.122860412597656e+02, 3.122843017578125e+02] -tanDyn.QHex_flow=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 3.100171508789071e+02, 1.090112915039062e+03, 1.541015747070312e+03, 1.915294067382812e+03, 2.23466162109375e+03, 2.510817138671875e+03, 2.751458740234375e+03, 2.962088623046875e+03, 3.1468525390625e+03, 3.308978515625e+03, 3.451074951171875e+03, 3.57529638671875e+03, 3.65082421875e+03, 3.609363037109375e+03, 3.56826806640625e+03, 3.5275205078125e+03, 3.487123779296875e+03, 3.4470810546875e+03, 3.407394287109375e+03, 3.36806591796875e+03, 3.32909765625e+03, 3.29049072265625e+03, 3.25224658203125e+03, 3.214365966796875e+03, 3.176850341796875e+03, 3.04840185546875e+03, 2.881937255859375e+03, 2.71010986328125e+03, 2.531537109375e+03, 2.344513671875e+03, 2.146844482421875e+03, 1.935648315429688e+03, 1.707021362304688e+03, 1.45582421875e+03, 1.173736206054688e+03, 8.484619140625e+02, 4.663902893066406e+02, 1.997109680175781e+02, 8.893399810791016e+01, 4.285954284667969e+01, 2.163767051696777e+01, 1.12864294052124e+01, 6.052057266235352e+00, 3.325195789337158e+00, 1.871854066848755e+00, 1.080026149749756e+00, 6.394078135490417e-01, 3.881351947784413e-01, 2.413842380046838e-01, 1.537162959575649e-01, 2.319176025390625e+02, 7.998963623046875e+02, 1.127575805664062e+03, 1.39775244140625e+03, 1.626688842773438e+03, 1.82327099609375e+03, 1.99333642578125e+03, 2.1410771484375e+03, 2.2696669921875e+03, 2.381591796875e+03, 2.47884814453125e+03, 2.563094482421875e+03, 2.61308935546875e+03, 2.58183642578125e+03, 2.55094384765625e+03, 2.520384765625e+03, 2.49016845703125e+03, 2.46029345703125e+03, 2.430756103515625e+03, 2.401554443359375e+03, 2.372686279296875e+03, 2.344148193359375e+03, 2.315938720703125e+03, 2.28805517578125e+03, 2.260494384765625e+03, 2.170378662109375e+03, 2.053968505859375e+03, 1.933735107421875e+03, 1.808647216796875e+03, 1.677438720703125e+03, 1.538493286132812e+03, 1.389793334960938e+03, 1.228335571289062e+03, 1.050018920898438e+03, 8.491681518554688e+02, 6.1584521484375e+02, 3.402645568847656e+02, 1.466743621826172e+02, 6.466918182373047e+01, 3.043252372741699e+01, 1.49218168258667e+01, 7.551479816436768e+00, 3.956156492233276e+00, 2.090723037719727e+00] -tanSte.QHex_flow=[-0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 5.860529174804692e+02, 1.121308959960938e+03, 1.5612685546875e+03, 1.929980102539062e+03, 2.245715576171875e+03, 2.5192529296875e+03, 2.757901611328125e+03, 2.96695263671875e+03, 3.1504228515625e+03, 3.311470703125e+03, 3.4526533203125e+03, 3.576087646484375e+03, 3.64765087890625e+03, 3.6062021484375e+03, 3.565118408203125e+03, 3.5243828125e+03, 3.48399853515625e+03, 3.44396875e+03, 3.40429541015625e+03, 3.36498046875e+03, 3.326026123046875e+03, 3.28743359375e+03, 3.249204345703125e+03, 3.211339111328125e+03, 3.173838623046875e+03, 3.0423994140625e+03, 2.87581982421875e+03, 2.703808837890625e+03, 2.524958984375e+03, 2.33750830078125e+03, 2.139212158203125e+03, 1.92712939453125e+03, 1.69728173828125e+03, 1.444038940429688e+03, 1.158908935546875e+03, 8.276846923828125e+02, 4.314243774414062e+02, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 0e+00, 0e+00, 0e+00, 4.312932434082031e+02, 8.230497436523438e+02, 1.14299853515625e+03, 1.409263916015625e+03, 1.635694213867188e+03, 1.83047900390625e+03, 1.999186157226562e+03, 2.1458642578125e+03, 2.2735947265625e+03, 2.384805908203125e+03, 2.481465087890625e+03, 2.56520068359375e+03, 2.612450439453125e+03, 2.581172119140625e+03, 2.55026513671875e+03, 2.5197021484375e+03, 2.489482666015625e+03, 2.459604248046875e+03, 2.430063720703125e+03, 2.400859375e+03, 2.37198828125e+03, 2.343447998046875e+03, 2.315236328125e+03, 2.2873505859375e+03, 2.259787841796875e+03, 2.167502685546875e+03, 2.0509306640625e+03, 1.930476928710938e+03, 1.8051005859375e+03, 1.673502807617188e+03, 1.534021362304688e+03, 1.384473754882812e+03, 1.221899169921875e+03, 1.04209521484375e+03, 8.387035522460938e+02, 6.010579223632812e+02, 3.147159423828125e+02, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00] -tanDyn.vol[1].T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931773986816406e+02, 2.932858276367188e+02, 2.934566650390625e+02, 2.936791687011719e+02, 2.939415893554688e+02, 2.942359313964844e+02, 2.945578002929688e+02, 2.94903564453125e+02, 2.952702331542969e+02, 2.956551818847656e+02, 2.9605615234375e+02, 2.964709777832031e+02, 2.968900451660156e+02, 2.973047790527344e+02, 2.977147827148438e+02, 2.981200866699219e+02, 2.985207824707031e+02, 2.989168701171875e+02, 2.993084106445312e+02, 2.996954345703125e+02, 3.000780029296875e+02, 3.004561157226562e+02, 3.00829833984375e+02, 3.0119921875e+02, 3.015624389648438e+02, 3.019095153808594e+02, 3.022374572753906e+02, 3.025455932617188e+02, 3.028331909179688e+02, 3.030992431640625e+02, 3.033425598144531e+02, 3.035615844726562e+02, 3.037544250488281e+02, 3.039186706542969e+02, 3.040510559082031e+02, 3.041475524902344e+02, 3.042064208984375e+02, 3.042386779785156e+02, 3.042569274902344e+02, 3.0426806640625e+02, 3.042752685546875e+02, 3.042802124023438e+02, 3.0428369140625e+02, 3.042862854003906e+02, 3.042882385253906e+02, 3.042897644042969e+02, 3.042909851074219e+02, 3.042919921875e+02, 3.042928161621094e+02, 3.042935791015625e+02, 3.0431298828125e+02, 3.043886413574219e+02, 3.045104675292969e+02, 3.04669921875e+02, 3.048591003417969e+02, 3.050715026855469e+02, 3.053035278320312e+02, 3.055525207519531e+02, 3.058161315917969e+02, 3.060924682617188e+02, 3.063798217773438e+02, 3.066766357421875e+02, 3.069765625e+02, 3.072733154296875e+02, 3.075665283203125e+02, 3.078562622070312e+02, 3.081425476074219e+02, 3.084253540039062e+02, 3.087048034667969e+02, 3.089808959960938e+02, 3.092536926269531e+02, 3.09523193359375e+02, 3.097894592285156e+02, 3.100525207519531e+02, 3.10311279296875e+02, 3.1055908203125e+02, 3.107935791015625e+02, 3.110142517089844e+02, 3.112206115722656e+02, 3.114118957519531e+02, 3.115872802734375e+02, 3.117456665039062e+02, 3.118857116699219e+02, 3.120055847167969e+02, 3.121030883789062e+02, 3.121752014160156e+02, 3.122204284667969e+02, 3.122460632324219e+02, 3.122608947753906e+02, 3.122700500488281e+02, 3.122760620117188e+02, 3.122802124023438e+02, 3.12283203125e+02] -tanDyn.vol[5].T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931609191894531e+02, 2.933013610839844e+02, 2.934597778320312e+02, 2.936616821289062e+02, 2.939076232910156e+02, 2.941860046386719e+02, 2.944931945800781e+02, 2.948257446289062e+02, 2.951805114746094e+02, 2.955548400878906e+02, 2.959463806152344e+02, 2.963529663085938e+02, 2.967721252441406e+02, 2.971900329589844e+02, 2.976030578613281e+02, 2.980113525390625e+02, 2.984150085449219e+02, 2.988139953613281e+02, 2.992084045410156e+02, 2.995982666015625e+02, 2.999836120605469e+02, 3.00364501953125e+02, 3.00740966796875e+02, 3.01113037109375e+02, 3.014807739257812e+02, 3.018395080566406e+02, 3.021790161132812e+02, 3.024988708496094e+02, 3.027984008789062e+02, 3.0307666015625e+02, 3.0333251953125e+02, 3.035645141601562e+02, 3.037707214355469e+02, 3.0394873046875e+02, 3.040951843261719e+02, 3.042053833007812e+02, 3.042721557617188e+02, 3.0429833984375e+02, 3.043065795898438e+02, 3.043090515136719e+02, 3.043093872070312e+02, 3.043089294433594e+02, 3.043082580566406e+02, 3.043075256347656e+02, 3.043069152832031e+02, 3.043063354492188e+02, 3.043058776855469e+02, 3.043054504394531e+02, 3.043051147460938e+02, 3.043048095703125e+02, 3.043134155273438e+02, 3.044165344238281e+02, 3.045353088378906e+02, 3.04683837890625e+02, 3.048639831542969e+02, 3.050669555664062e+02, 3.052901916503906e+02, 3.055311584472656e+02, 3.0578759765625e+02, 3.060575561523438e+02, 3.063392639160156e+02, 3.066311645507812e+02, 3.069314575195312e+02, 3.0723046875e+02, 3.075257263183594e+02, 3.078174743652344e+02, 3.081056823730469e+02, 3.083904724121094e+02, 3.086718139648438e+02, 3.089497680664062e+02, 3.092243957519531e+02, 3.094956970214844e+02, 3.097637634277344e+02, 3.10028564453125e+02, 3.102902221679688e+02, 3.105453796386719e+02, 3.107869567871094e+02, 3.110148010253906e+02, 3.112283630371094e+02, 3.114270324707031e+02, 3.116098937988281e+02, 3.117759399414062e+02, 3.119237365722656e+02, 3.12051513671875e+02, 3.1215673828125e+02, 3.122359008789062e+02, 3.122835693359375e+02, 3.123016967773438e+02, 3.123068542480469e+02, 3.123078918457031e+02, 3.123075561523438e+02, 3.123068237304688e+02, 3.123059997558594e+02, 3.123052673339844e+02] +tanDyn.QHex_flow=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 3.100171508789071e+02, 1.090112915039062e+03, 1.541015747070312e+03, 1.915294067382812e+03, 2.23466162109375e+03, 2.510817138671875e+03, 2.751458740234375e+03, 2.962088623046875e+03, 3.1468525390625e+03, 3.308978515625e+03, 3.451074951171875e+03, 3.57529638671875e+03, 3.65082421875e+03, 3.609363037109375e+03, 3.56826806640625e+03, 3.5275205078125e+03, 3.487123779296875e+03, 3.4470810546875e+03, 3.407394287109375e+03, 3.36806591796875e+03, 3.32909765625e+03, 3.29049072265625e+03, 3.25224658203125e+03, 3.214365966796875e+03, 3.176850341796875e+03, 3.04840185546875e+03, 2.881937255859375e+03, 2.71010986328125e+03, 2.531537109375e+03, 2.344513671875e+03, 2.146844482421875e+03, 1.935648315429688e+03, 1.707021362304688e+03, 1.45582421875e+03, 1.173736206054688e+03, 8.484619140625e+02, 4.663902893066406e+02, 1.997109680175781e+02, 8.893399810791016e+01, 4.285954284667969e+01, 2.163767051696777e+01, 1.12864294052124e+01, 6.052057266235352e+00, 3.325195789337158e+00, 1.871854066848755e+00, 1.080026149749756e+00, 6.394078135490417e-01, 3.881351947784413e-01, 2.413842231035226e-01, 1.537162959575649e-01, 2.319176025390625e+02, 7.998963623046875e+02, 1.127575805664062e+03, 1.39775244140625e+03, 1.626688842773438e+03, 1.82327099609375e+03, 1.99333642578125e+03, 2.1410771484375e+03, 2.2696669921875e+03, 2.381591796875e+03, 2.47884814453125e+03, 2.563094482421875e+03, 2.61308935546875e+03, 2.581836181640625e+03, 2.55094384765625e+03, 2.520384765625e+03, 2.49016845703125e+03, 2.46029345703125e+03, 2.430756103515625e+03, 2.401554443359375e+03, 2.372686279296875e+03, 2.344148193359375e+03, 2.315938720703125e+03, 2.28805517578125e+03, 2.260494384765625e+03, 2.170378662109375e+03, 2.053968505859375e+03, 1.933735229492188e+03, 1.808647216796875e+03, 1.677438720703125e+03, 1.538493286132812e+03, 1.389793334960938e+03, 1.228335571289062e+03, 1.050018920898438e+03, 8.491681518554688e+02, 6.1584521484375e+02, 3.402645568847656e+02, 1.466743621826172e+02, 6.4669189453125e+01, 3.043252372741699e+01, 1.49218168258667e+01, 7.551479816436768e+00, 3.956156492233276e+00, 2.090723037719727e+00] +tanSte.QHex_flow=[-0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 5.860529174804692e+02, 1.121308959960938e+03, 1.5612685546875e+03, 1.929980102539062e+03, 2.245715576171875e+03, 2.5192529296875e+03, 2.757901611328125e+03, 2.96695263671875e+03, 3.1504228515625e+03, 3.311470703125e+03, 3.4526533203125e+03, 3.576087646484375e+03, 3.64765087890625e+03, 3.6062021484375e+03, 3.565118408203125e+03, 3.5243828125e+03, 3.48399853515625e+03, 3.44396875e+03, 3.40429541015625e+03, 3.36498046875e+03, 3.326026123046875e+03, 3.28743359375e+03, 3.249204345703125e+03, 3.211339111328125e+03, 3.173838623046875e+03, 3.0423994140625e+03, 2.87581982421875e+03, 2.703808837890625e+03, 2.524958984375e+03, 2.33750830078125e+03, 2.139212158203125e+03, 1.92712939453125e+03, 1.69728173828125e+03, 1.444038940429688e+03, 1.158908935546875e+03, 8.276846923828125e+02, 4.314243774414062e+02, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 0e+00, 0e+00, 0e+00, 4.312932434082031e+02, 8.230497436523438e+02, 1.14299853515625e+03, 1.409263916015625e+03, 1.635694213867188e+03, 1.83047900390625e+03, 1.999186157226562e+03, 2.1458642578125e+03, 2.2735947265625e+03, 2.384805908203125e+03, 2.481465087890625e+03, 2.56520068359375e+03, 2.612450439453125e+03, 2.581172119140625e+03, 2.55026513671875e+03, 2.5197021484375e+03, 2.489482666015625e+03, 2.459604248046875e+03, 2.430063720703125e+03, 2.400859375e+03, 2.37198828125e+03, 2.343447998046875e+03, 2.315236328125e+03, 2.2873505859375e+03, 2.2597880859375e+03, 2.167502685546875e+03, 2.0509306640625e+03, 1.930476928710938e+03, 1.805100708007812e+03, 1.6735029296875e+03, 1.534021362304688e+03, 1.384473754882812e+03, 1.221899169921875e+03, 1.04209521484375e+03, 8.387035522460938e+02, 6.010579223632812e+02, 3.147159423828125e+02, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00] +tanDyn.vol[1].T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931773986816406e+02, 2.932858276367188e+02, 2.934566650390625e+02, 2.936791687011719e+02, 2.939415893554688e+02, 2.942359313964844e+02, 2.945578002929688e+02, 2.94903564453125e+02, 2.952702331542969e+02, 2.956551818847656e+02, 2.9605615234375e+02, 2.964709777832031e+02, 2.968900451660156e+02, 2.973047790527344e+02, 2.977147827148438e+02, 2.981200866699219e+02, 2.985207824707031e+02, 2.989168701171875e+02, 2.993084106445312e+02, 2.996954345703125e+02, 3.000780029296875e+02, 3.004561157226562e+02, 3.00829833984375e+02, 3.0119921875e+02, 3.015624389648438e+02, 3.019095153808594e+02, 3.022374572753906e+02, 3.025455932617188e+02, 3.028331909179688e+02, 3.030992431640625e+02, 3.033425598144531e+02, 3.035615844726562e+02, 3.037544250488281e+02, 3.039186706542969e+02, 3.040510559082031e+02, 3.041475524902344e+02, 3.042064208984375e+02, 3.042386779785156e+02, 3.042569274902344e+02, 3.0426806640625e+02, 3.042752685546875e+02, 3.042802124023438e+02, 3.0428369140625e+02, 3.042862854003906e+02, 3.042882385253906e+02, 3.042897644042969e+02, 3.042909851074219e+02, 3.042919921875e+02, 3.042928161621094e+02, 3.042935791015625e+02, 3.0431298828125e+02, 3.043886413574219e+02, 3.045104675292969e+02, 3.04669921875e+02, 3.048591003417969e+02, 3.050715026855469e+02, 3.053035278320312e+02, 3.055525207519531e+02, 3.058161315917969e+02, 3.060924682617188e+02, 3.063798217773438e+02, 3.066766357421875e+02, 3.069765625e+02, 3.072733154296875e+02, 3.075665283203125e+02, 3.078562622070312e+02, 3.081425476074219e+02, 3.084253540039062e+02, 3.087048034667969e+02, 3.089808959960938e+02, 3.092536926269531e+02, 3.09523193359375e+02, 3.097894592285156e+02, 3.100525207519531e+02, 3.10311279296875e+02, 3.1055908203125e+02, 3.107935791015625e+02, 3.110142517089844e+02, 3.112206115722656e+02, 3.114118957519531e+02, 3.115872802734375e+02, 3.117456665039062e+02, 3.118857116699219e+02, 3.120055847167969e+02, 3.121030883789062e+02, 3.121752014160156e+02, 3.122204284667969e+02, 3.122460632324219e+02, 3.122608642578125e+02, 3.122700500488281e+02, 3.122760620117188e+02, 3.122802124023438e+02, 3.12283203125e+02] +tanDyn.vol[5].T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931609191894531e+02, 2.933013610839844e+02, 2.934597778320312e+02, 2.936616821289062e+02, 2.939076232910156e+02, 2.941860046386719e+02, 2.944931945800781e+02, 2.948257446289062e+02, 2.951805114746094e+02, 2.955548400878906e+02, 2.959463806152344e+02, 2.963529663085938e+02, 2.967721252441406e+02, 2.971900329589844e+02, 2.976030578613281e+02, 2.980113525390625e+02, 2.984150085449219e+02, 2.988139953613281e+02, 2.992084045410156e+02, 2.995982666015625e+02, 2.999836120605469e+02, 3.00364501953125e+02, 3.00740966796875e+02, 3.01113037109375e+02, 3.014807739257812e+02, 3.018395080566406e+02, 3.021790161132812e+02, 3.024988708496094e+02, 3.027984008789062e+02, 3.0307666015625e+02, 3.0333251953125e+02, 3.035645141601562e+02, 3.037707214355469e+02, 3.0394873046875e+02, 3.040951843261719e+02, 3.042053833007812e+02, 3.042721557617188e+02, 3.0429833984375e+02, 3.043065795898438e+02, 3.043090515136719e+02, 3.043093872070312e+02, 3.043089294433594e+02, 3.043082580566406e+02, 3.043075256347656e+02, 3.043069152832031e+02, 3.043063354492188e+02, 3.043058776855469e+02, 3.043054504394531e+02, 3.043051147460938e+02, 3.043048095703125e+02, 3.043134155273438e+02, 3.044165344238281e+02, 3.045353088378906e+02, 3.04683837890625e+02, 3.048639831542969e+02, 3.050669555664062e+02, 3.052901916503906e+02, 3.055311584472656e+02, 3.0578759765625e+02, 3.060575561523438e+02, 3.063392639160156e+02, 3.066311645507812e+02, 3.069314575195312e+02, 3.0723046875e+02, 3.075257263183594e+02, 3.078174743652344e+02, 3.081056823730469e+02, 3.083904724121094e+02, 3.086718139648438e+02, 3.089497680664062e+02, 3.092243957519531e+02, 3.094956970214844e+02, 3.097637634277344e+02, 3.10028564453125e+02, 3.102902221679688e+02, 3.105453796386719e+02, 3.107869567871094e+02, 3.110148010253906e+02, 3.112283630371094e+02, 3.11427001953125e+02, 3.116098937988281e+02, 3.117759399414062e+02, 3.119237365722656e+02, 3.12051513671875e+02, 3.1215673828125e+02, 3.122359008789062e+02, 3.122835693359375e+02, 3.123016967773438e+02, 3.123068542480469e+02, 3.123078918457031e+02, 3.123075561523438e+02, 3.123067932128906e+02, 3.123059997558594e+02, 3.123052673339844e+02] tanDyn.vol[7].T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931503295898438e+02, 2.93249755859375e+02, 2.93458251953125e+02, 2.937188110351562e+02, 2.939765625e+02, 2.9426171875e+02, 2.945742797851562e+02, 2.949113159179688e+02, 2.952698974609375e+02, 2.956475524902344e+02, 2.960419311523438e+02, 2.964510192871094e+02, 2.968722534179688e+02, 2.972899475097656e+02, 2.977024230957031e+02, 2.981101989746094e+02, 2.985133056640625e+02, 2.989117431640625e+02, 2.993056335449219e+02, 2.996949462890625e+02, 3.000797424316406e+02, 3.004600830078125e+02, 3.008360290527344e+02, 3.012075500488281e+02, 3.015747375488281e+02, 3.019320373535156e+02, 3.022685852050781e+02, 3.025853576660156e+02, 3.028815612792969e+02, 3.031562194824219e+02, 3.03408203125e+02, 3.036359252929688e+02, 3.0383740234375e+02, 3.040100708007812e+02, 3.041504211425781e+02, 3.042535095214844e+02, 3.043121643066406e+02, 3.043294067382812e+02, 3.043311157226562e+02, 3.043287353515625e+02, 3.043255310058594e+02, 3.043224487304688e+02, 3.043197631835938e+02, 3.043175048828125e+02, 3.043156433105469e+02, 3.043140869140625e+02, 3.043128051757812e+02, 3.043117370605469e+02, 3.043108520507812e+02, 3.0431005859375e+02, 3.043097534179688e+02, 3.043837585449219e+02, 3.045374755859375e+02, 3.047313537597656e+02, 3.049225769042969e+02, 3.051315612792969e+02, 3.053594055175781e+02, 3.056041870117188e+02, 3.058638610839844e+02, 3.061365356445312e+02, 3.064205932617188e+02, 3.067145690917969e+02, 3.070165710449219e+02, 3.073154602050781e+02, 3.076102294921875e+02, 3.079014892578125e+02, 3.081892395019531e+02, 3.084735107421875e+02, 3.0875439453125e+02, 3.090318603515625e+02, 3.093059997558594e+02, 3.095768432617188e+02, 3.098444213867188e+02, 3.101087646484375e+02, 3.103699340820312e+02, 3.106239624023438e+02, 3.108631591796875e+02, 3.110884094238281e+02, 3.112992248535156e+02, 3.114949035644531e+02, 3.11674560546875e+02, 3.118370971679688e+02, 3.119809875488281e+02, 3.121043395996094e+02, 3.122045288085938e+02, 3.122778625488281e+02, 3.123188781738281e+02, 3.123296203613281e+02, 3.123291320800781e+02, 3.12325927734375e+02, 3.123224487304688e+02, 3.123193359375e+02, 3.123167114257812e+02, 3.123145751953125e+02] tanSte.vol[1].T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931506652832031e+02, 2.931957397460938e+02, 2.933149108886719e+02, 2.934924011230469e+02, 2.937186889648438e+02, 2.939825134277344e+02, 2.942778625488281e+02, 2.946004333496094e+02, 2.949467163085938e+02, 2.953137817382812e+02, 2.956990051269531e+02, 2.961001281738281e+02, 2.965150146484375e+02, 2.969337768554688e+02, 2.973481140136719e+02, 2.977577819824219e+02, 2.981627197265625e+02, 2.985630798339844e+02, 2.989588012695312e+02, 2.993499755859375e+02, 2.997366638183594e+02, 3.001188659667969e+02, 3.004966125488281e+02, 3.008699951171875e+02, 3.012390441894531e+02, 3.016017456054688e+02, 3.019481506347656e+02, 3.022753601074219e+02, 3.025828247070312e+02, 3.028696594238281e+02, 3.031348876953125e+02, 3.033773193359375e+02, 3.035953674316406e+02, 3.03787109375e+02, 3.039499816894531e+02, 3.040807189941406e+02, 3.041749572753906e+02, 3.042291564941406e+02, 3.042483825683594e+02, 3.042572631835938e+02, 3.042624816894531e+02, 3.042660522460938e+02, 3.042684020996094e+02, 3.042702026367188e+02, 3.042715759277344e+02, 3.042726745605469e+02, 3.042735900878906e+02, 3.042743530273438e+02, 3.042749938964844e+02, 3.042755432128906e+02, 3.042767944335938e+02, 3.043072204589844e+02, 3.04390625e+02, 3.045171203613281e+02, 3.046798095703125e+02, 3.048702697753906e+02, 3.050835266113281e+02, 3.053162536621094e+02, 3.055657653808594e+02, 3.05829833984375e+02, 3.061065368652344e+02, 3.063941955566406e+02, 3.066912231445312e+02, 3.069910888671875e+02, 3.072878112792969e+02, 3.075809326171875e+02, 3.078705749511719e+02, 3.081567687988281e+02, 3.084395141601562e+02, 3.087189025878906e+02, 3.089949035644531e+02, 3.092676086425781e+02, 3.095370178222656e+02, 3.098031921386719e+02, 3.100661926269531e+02, 3.103247680664062e+02, 3.10572265625e+02, 3.10806396484375e+02, 3.110267028808594e+02, 3.112326354980469e+02, 3.114234924316406e+02, 3.115983581542969e+02, 3.117561340332031e+02, 3.118954467773438e+02, 3.120144653320312e+02, 3.121108093261719e+02, 3.121813659667969e+02, 3.122234497070312e+02, 3.122399291992188e+02, 3.122478637695312e+02, 3.122526245117188e+02, 3.122558288574219e+02, 3.122581481933594e+02, 3.122598571777344e+02] tanSte.vol[5].T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.93206787109375e+02, 2.933294677734375e+02, 2.934924926757812e+02, 2.937012023925781e+02, 2.939480895996094e+02, 2.942274780273438e+02, 2.945354919433594e+02, 2.9486865234375e+02, 2.95223876953125e+02, 2.955985412597656e+02, 2.959902954101562e+02, 2.963970336914062e+02, 2.968161010742188e+02, 2.972336120605469e+02, 2.976462707519531e+02, 2.980542297363281e+02, 2.9845751953125e+02, 2.988561401367188e+02, 2.992502136230469e+02, 2.996397094726562e+02, 3.000247192382812e+02, 3.004052429199219e+02, 3.007813415527344e+02, 3.01153076171875e+02, 3.015204467773438e+02, 3.018785705566406e+02, 3.022173461914062e+02, 3.025364990234375e+02, 3.028352966308594e+02, 3.031127624511719e+02, 3.033677673339844e+02, 3.035987854003906e+02, 3.03803955078125e+02, 3.039806823730469e+02, 3.041255493164062e+02, 3.042335815429688e+02, 3.042969970703125e+02, 3.043038024902344e+02, 3.042958984375e+02, 3.042924499511719e+02, 3.042904968261719e+02, 3.042893676757812e+02, 3.042882690429688e+02, 3.042872619628906e+02, 3.042869262695312e+02, 3.042864990234375e+02, 3.042861328125e+02, 3.042858276367188e+02, 3.042855834960938e+02, 3.042853698730469e+02, 3.043267517089844e+02, 3.044190368652344e+02, 3.04540771484375e+02, 3.046940002441406e+02, 3.048748474121094e+02, 3.050786743164062e+02, 3.053026123046875e+02, 3.05544189453125e+02, 3.058011169433594e+02, 3.060714416503906e+02, 3.063534851074219e+02, 3.066456604003906e+02, 3.069460754394531e+02, 3.072449645996094e+02, 3.075401611328125e+02, 3.078318176269531e+02, 3.081199645996094e+02, 3.084046630859375e+02, 3.086859436035156e+02, 3.089638061523438e+02, 3.092383728027344e+02, 3.095095825195312e+02, 3.097775573730469e+02, 3.100422973632812e+02, 3.103038635253906e+02, 3.105587463378906e+02, 3.107999877929688e+02, 3.110274353027344e+02, 3.112406311035156e+02, 3.114388122558594e+02, 3.116211853027344e+02, 3.117866516113281e+02, 3.119337768554688e+02, 3.120606994628906e+02, 3.121648254394531e+02, 3.12242431640625e+02, 3.122876281738281e+02, 3.122913513183594e+02, 3.122845153808594e+02, 3.122814331054688e+02, 3.122796020507812e+02, 3.122783508300781e+02, 3.122774658203125e+02, 3.122767944335938e+02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Storage_Validation_HeatExchangerLocation.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Storage_Validation_HeatExchangerLocation.txt index 2cd2343926..901f7fecd6 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Storage_Validation_HeatExchangerLocation.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Storage_Validation_HeatExchangerLocation.txt @@ -1,7 +1,7 @@ -last-generated=2021-05-19 +last-generated=2022-05-23 statistics-initialization= { - "nonlinear": "1, 1", + "nonlinear": "1", "numerical Jacobians": "0" } statistics-simulation= @@ -15,7 +15,7 @@ time=[0e+00, 6e+05] tan_aTop.vol[1].T=[2.931499938964844e+02, 2.9434130859375e+02, 2.956369018554688e+02, 2.968821105957031e+02, 2.980795288085938e+02, 2.992316589355469e+02, 3.003414611816406e+02, 3.01416748046875e+02, 3.024571228027344e+02, 3.034634094238281e+02, 3.044365539550781e+02, 3.053775024414062e+02, 3.062872924804688e+02, 3.071668701171875e+02, 3.080172424316406e+02, 3.088393859863281e+02, 3.096342163085938e+02, 3.104026794433594e+02, 3.111455993652344e+02, 3.118638916015625e+02, 3.125583801269531e+02, 3.132298278808594e+02, 3.138790588378906e+02, 3.145067749023438e+02, 3.151137084960938e+02, 3.157005920410156e+02, 3.162680969238281e+02, 3.168168334960938e+02, 3.173474731445312e+02, 3.17860595703125e+02, 3.183567810058594e+02, 3.188366394042969e+02, 3.193006896972656e+02, 3.197494506835938e+02, 3.201834411621094e+02, 3.206031799316406e+02, 3.210090942382812e+02, 3.214017028808594e+02, 3.217813720703125e+02, 3.221486206054688e+02, 3.225037841796875e+02, 3.228473205566406e+02, 3.231795654296875e+02, 3.235009460449219e+02, 3.238117980957031e+02, 3.241125183105469e+02, 3.244034423828125e+02, 3.246848754882812e+02, 3.249571228027344e+02, 3.252204284667969e+02, 3.254750366210938e+02, 3.257211608886719e+02, 3.259593811035156e+02, 3.261901550292969e+02, 3.264128723144531e+02, 3.266287536621094e+02, 3.268376159667969e+02, 3.27041259765625e+02, 3.272349853515625e+02, 3.274239807128906e+02, 3.276068420410156e+02, 3.277837829589844e+02, 3.279549560546875e+02, 3.281205749511719e+02, 3.282807922363281e+02, 3.284358215332031e+02, 3.285857849121094e+02, 3.287308959960938e+02, 3.288713073730469e+02, 3.290071716308594e+02, 3.291386413574219e+02, 3.292658386230469e+02, 3.29388916015625e+02, 3.295080261230469e+02, 3.29623291015625e+02, 3.2973486328125e+02, 3.298428039550781e+02, 3.29947265625e+02, 3.3004833984375e+02, 3.301461791992188e+02, 3.302408752441406e+02, 3.303324890136719e+02, 3.304211730957031e+02, 3.305070190429688e+02, 3.30590087890625e+02, 3.306704711914062e+02, 3.30748291015625e+02, 3.308236083984375e+02, 3.30896484375e+02, 3.30967041015625e+02, 3.310353393554688e+02, 3.311014404296875e+02, 3.311654357910156e+02, 3.312273864746094e+02, 3.31287353515625e+02, 3.313454284667969e+02, 3.31401611328125e+02, 3.314560241699219e+02, 3.315086975097656e+02, 3.315596923828125e+02, 3.316090393066406e+02] tan_bTop.vol[1].T=[2.931499938964844e+02, 2.943346557617188e+02, 2.956302490234375e+02, 2.968754272460938e+02, 2.980727844238281e+02, 2.992247619628906e+02, 3.003336181640625e+02, 3.014014282226562e+02, 3.0243017578125e+02, 3.034216918945312e+02, 3.043776550292969e+02, 3.052997131347656e+02, 3.061893615722656e+02, 3.070480041503906e+02, 3.07876953125e+02, 3.08677490234375e+02, 3.094507446289062e+02, 3.101979064941406e+02, 3.10919921875e+02, 3.116178588867188e+02, 3.122926330566406e+02, 3.129451293945312e+02, 3.13576171875e+02, 3.141865844726562e+02, 3.147771606445312e+02, 3.153485412597656e+02, 3.159014892578125e+02, 3.164366455078125e+02, 3.169546203613281e+02, 3.174560546875e+02, 3.179414672851562e+02, 3.184114379882812e+02, 3.188665161132812e+02, 3.193071594238281e+02, 3.197339172363281e+02, 3.201471862792969e+02, 3.205474548339844e+02, 3.209351501464844e+02, 3.213106994628906e+02, 3.216744689941406e+02, 3.220268859863281e+02, 3.223682861328125e+02, 3.226990356445312e+02, 3.230194396972656e+02, 3.233298950195312e+02, 3.236307067871094e+02, 3.239221496582031e+02, 3.242045593261719e+02, 3.244781799316406e+02, 3.247433471679688e+02, 3.250002746582031e+02, 3.25249267578125e+02, 3.254905395507812e+02, 3.257243347167969e+02, 3.25950927734375e+02, 3.261705017089844e+02, 3.2638330078125e+02, 3.265895080566406e+02, 3.267893676757812e+02, 3.269830932617188e+02, 3.271708374023438e+02, 3.273528137207031e+02, 3.275291442871094e+02, 3.277000732421875e+02, 3.278656921386719e+02, 3.280262145996094e+02, 3.281817932128906e+02, 3.283325805664062e+02, 3.284787292480469e+02, 3.286203918457031e+02, 3.287576904296875e+02, 3.288907775878906e+02, 3.290197448730469e+02, 3.29144775390625e+02, 3.292659912109375e+02, 3.293834533691406e+02, 3.29497314453125e+02, 3.296076965332031e+02, 3.297146911621094e+02, 3.298183898925781e+02, 3.299189453125e+02, 3.300163879394531e+02, 3.3011083984375e+02, 3.302024230957031e+02, 3.302911987304688e+02, 3.303772583007812e+02, 3.304606628417969e+02, 3.3054150390625e+02, 3.306199035644531e+02, 3.306958923339844e+02, 3.307695617675781e+02, 3.308410034179688e+02, 3.309102478027344e+02, 3.309773559570312e+02, 3.310424499511719e+02, 3.311055603027344e+02, 3.311667175292969e+02, 3.312260437011719e+02, 3.312835388183594e+02, 3.313392944335938e+02, 3.313933410644531e+02] tan_aTop.vol[9].T=[2.931499938964844e+02, 2.945831909179688e+02, 2.958740844726562e+02, 2.9711474609375e+02, 2.983077697753906e+02, 2.994556274414062e+02, 3.00561767578125e+02, 3.01633544921875e+02, 3.0267041015625e+02, 3.036732177734375e+02, 3.046429138183594e+02, 3.055804748535156e+02, 3.064868774414062e+02, 3.073631896972656e+02, 3.082103271484375e+02, 3.090292663574219e+02, 3.098209533691406e+02, 3.105863037109375e+02, 3.113262023925781e+02, 3.120415344238281e+02, 3.127330627441406e+02, 3.13401611328125e+02, 3.140480041503906e+02, 3.146729125976562e+02, 3.152771301269531e+02, 3.158612976074219e+02, 3.164261474609375e+02, 3.169722595214844e+02, 3.175003356933594e+02, 3.180109252929688e+02, 3.18504638671875e+02, 3.189820556640625e+02, 3.194436950683594e+02, 3.198901062011719e+02, 3.2032177734375e+02, 3.207391967773438e+02, 3.211428833007812e+02, 3.215332641601562e+02, 3.219107666015625e+02, 3.2227587890625e+02, 3.226289672851562e+02, 3.22970458984375e+02, 3.233007507324219e+02, 3.236201782226562e+02, 3.239291076660156e+02, 3.242278747558594e+02, 3.245167541503906e+02, 3.247961120605469e+02, 3.250662841796875e+02, 3.253275756835938e+02, 3.255804443359375e+02, 3.25825439453125e+02, 3.260624084472656e+02, 3.262907104492188e+02, 3.265126647949219e+02, 3.267264099121094e+02, 3.269336242675781e+02, 3.27134521484375e+02, 3.273278503417969e+02, 3.275153503417969e+02, 3.276967163085938e+02, 3.278721923828125e+02, 3.280419006347656e+02, 3.282060852050781e+02, 3.283648986816406e+02, 3.285185546875e+02, 3.286671752929688e+02, 3.288109436035156e+02, 3.289500732421875e+02, 3.290846252441406e+02, 3.292148132324219e+02, 3.293407897949219e+02, 3.29462646484375e+02, 3.2958056640625e+02, 3.296946411132812e+02, 3.298050231933594e+02, 3.299118347167969e+02, 3.300151672363281e+02, 3.301151428222656e+02, 3.302118835449219e+02, 3.303055114746094e+02, 3.303960876464844e+02, 3.304837341308594e+02, 3.305685424804688e+02, 3.306506042480469e+02, 3.307300415039062e+02, 3.30806884765625e+02, 3.308812255859375e+02, 3.309531860351562e+02, 3.310228271484375e+02, 3.310902404785156e+02, 3.311554565429688e+02, 3.312185668945312e+02, 3.312796630859375e+02, 3.313387756347656e+02, 3.3139599609375e+02, 3.314513854980469e+02, 3.315049743652344e+02, 3.315568542480469e+02, 3.316070861816406e+02, 3.316556701660156e+02] -tan_aTop.vol[10].T=[2.931499938964844e+02, 2.946051635742188e+02, 2.958953552246094e+02, 2.971353454589844e+02, 2.983277587890625e+02, 2.994750061035156e+02, 3.005807800292969e+02, 3.016522521972656e+02, 3.026887512207031e+02, 3.036912231445312e+02, 3.046605834960938e+02, 3.055978088378906e+02, 3.0650390625e+02, 3.073798828125e+02, 3.082267150878906e+02, 3.090453491210938e+02, 3.098367614746094e+02, 3.10601806640625e+02, 3.113414306640625e+02, 3.120564575195312e+02, 3.127477111816406e+02, 3.13416015625e+02, 3.140621337890625e+02, 3.146867980957031e+02, 3.152907409667969e+02, 3.158746948242188e+02, 3.164392700195312e+02, 3.169851684570312e+02, 3.175130004882812e+02, 3.180233764648438e+02, 3.185168762207031e+02, 3.189940795898438e+02, 3.194555053710938e+02, 3.199017028808594e+02, 3.203331909179688e+02, 3.207504272460938e+02, 3.211539001464844e+02, 3.215440673828125e+02, 3.2192138671875e+02, 3.222863159179688e+02, 3.226392211914062e+02, 3.229805297851562e+02, 3.233106689453125e+02, 3.236299438476562e+02, 3.239387512207031e+02, 3.242373962402344e+02, 3.245261535644531e+02, 3.248053283691406e+02, 3.250752563476562e+02, 3.253362121582031e+02, 3.255888366699219e+02, 3.258338012695312e+02, 3.260709533691406e+02, 3.262989196777344e+02, 3.265208129882812e+02, 3.267343444824219e+02, 3.269408264160156e+02, 3.271301574707031e+02, 3.2733544921875e+02, 3.275227966308594e+02, 3.277040710449219e+02, 3.2787939453125e+02, 3.280490112304688e+02, 3.282130737304688e+02, 3.283717956542969e+02, 3.285253295898438e+02, 3.28673828125e+02, 3.288175048828125e+02, 3.289565124511719e+02, 3.290909729003906e+02, 3.292210693359375e+02, 3.29346923828125e+02, 3.294686889648438e+02, 3.295865173339844e+02, 3.297005004882812e+02, 3.29810791015625e+02, 3.2991748046875e+02, 3.300207214355469e+02, 3.301206359863281e+02, 3.3021728515625e+02, 3.303108215332031e+02, 3.304013061523438e+02, 3.304888916015625e+02, 3.305736083984375e+02, 3.306556091308594e+02, 3.307349548339844e+02, 3.308117065429688e+02, 3.30885986328125e+02, 3.309578552246094e+02, 3.310274353027344e+02, 3.310947570800781e+02, 3.31159912109375e+02, 3.312229614257812e+02, 3.312839660644531e+02, 3.31343017578125e+02, 3.314001770019531e+02, 3.314555053710938e+02, 3.31509033203125e+02, 3.315608520507812e+02, 3.316109924316406e+02, 3.316595458984375e+02] +tan_aTop.vol[10].T=[2.931499938964844e+02, 2.946051635742188e+02, 2.958953552246094e+02, 2.971353454589844e+02, 2.983277587890625e+02, 2.994750061035156e+02, 3.005807800292969e+02, 3.016522521972656e+02, 3.026887512207031e+02, 3.036912231445312e+02, 3.046605834960938e+02, 3.055978088378906e+02, 3.0650390625e+02, 3.073798828125e+02, 3.082267150878906e+02, 3.090453491210938e+02, 3.098367614746094e+02, 3.10601806640625e+02, 3.113414306640625e+02, 3.120564575195312e+02, 3.127477111816406e+02, 3.13416015625e+02, 3.140621337890625e+02, 3.146867980957031e+02, 3.152907409667969e+02, 3.158746948242188e+02, 3.164392700195312e+02, 3.169851684570312e+02, 3.175130004882812e+02, 3.180233764648438e+02, 3.185168762207031e+02, 3.189940795898438e+02, 3.194555053710938e+02, 3.199017028808594e+02, 3.203331909179688e+02, 3.207504272460938e+02, 3.211539001464844e+02, 3.215440673828125e+02, 3.2192138671875e+02, 3.222863159179688e+02, 3.226392211914062e+02, 3.229805297851562e+02, 3.233106689453125e+02, 3.236299438476562e+02, 3.239387512207031e+02, 3.242373962402344e+02, 3.245261535644531e+02, 3.248053283691406e+02, 3.250752563476562e+02, 3.253362121582031e+02, 3.255888366699219e+02, 3.258338012695312e+02, 3.260709533691406e+02, 3.262989196777344e+02, 3.265208129882812e+02, 3.267343444824219e+02, 3.269408264160156e+02, 3.271302185058594e+02, 3.2733544921875e+02, 3.275227966308594e+02, 3.277040710449219e+02, 3.2787939453125e+02, 3.280490112304688e+02, 3.282130737304688e+02, 3.283717956542969e+02, 3.285253295898438e+02, 3.28673828125e+02, 3.288175048828125e+02, 3.289565124511719e+02, 3.290909729003906e+02, 3.292210693359375e+02, 3.29346923828125e+02, 3.294686889648438e+02, 3.295865173339844e+02, 3.297005004882812e+02, 3.29810791015625e+02, 3.2991748046875e+02, 3.300207214355469e+02, 3.301206359863281e+02, 3.3021728515625e+02, 3.303108215332031e+02, 3.304013061523438e+02, 3.304888916015625e+02, 3.305736083984375e+02, 3.306556091308594e+02, 3.307349548339844e+02, 3.308117065429688e+02, 3.30885986328125e+02, 3.309578552246094e+02, 3.310274353027344e+02, 3.310947570800781e+02, 3.31159912109375e+02, 3.312229614257812e+02, 3.312839660644531e+02, 3.31343017578125e+02, 3.314001770019531e+02, 3.314555053710938e+02, 3.31509033203125e+02, 3.315608520507812e+02, 3.316109924316406e+02, 3.316595458984375e+02] tan_aTop.vol[11].T=[2.931499938964844e+02, 2.94613037109375e+02, 2.959020080566406e+02, 2.971406555175781e+02, 2.983315124511719e+02, 2.994766235351562e+02, 3.005686950683594e+02, 3.015658264160156e+02, 3.025041198730469e+02, 3.033982543945312e+02, 3.042577514648438e+02, 3.050887145996094e+02, 3.058950500488281e+02, 3.066793823242188e+02, 3.074433898925781e+02, 3.081882629394531e+02, 3.089147033691406e+02, 3.096231689453125e+02, 3.103140869140625e+02, 3.109877624511719e+02, 3.116444396972656e+02, 3.122843627929688e+02, 3.129078063964844e+02, 3.135149536132812e+02, 3.141060791015625e+02, 3.14681396484375e+02, 3.152411804199219e+02, 3.157857360839844e+02, 3.163152770996094e+02, 3.168301391601562e+02, 3.1733056640625e+02, 3.178168640136719e+02, 3.182893371582031e+02, 3.18748291015625e+02, 3.191940307617188e+02, 3.196268615722656e+02, 3.200470275878906e+02, 3.204548950195312e+02, 3.208507385253906e+02, 3.2123486328125e+02, 3.216075744628906e+02, 3.219691162109375e+02, 3.223197326660156e+02, 3.226598815917969e+02, 3.229898071289062e+02, 3.233097229003906e+02, 3.236197509765625e+02, 3.239201965332031e+02, 3.242115783691406e+02, 3.244942932128906e+02, 3.247683410644531e+02, 3.250336303710938e+02, 3.252905883789062e+02, 3.255396728515625e+02, 3.257809448242188e+02, 3.260147705078125e+02, 3.262412414550781e+02, 3.26459716796875e+02, 3.266725769042969e+02, 3.268787841796875e+02, 3.270784301757812e+02, 3.272717590332031e+02, 3.274589233398438e+02, 3.276401672363281e+02, 3.278156433105469e+02, 3.279855651855469e+02, 3.281500854492188e+02, 3.283093872070312e+02, 3.28463623046875e+02, 3.286129455566406e+02, 3.287575378417969e+02, 3.288975219726562e+02, 3.290330505371094e+02, 3.291642761230469e+02, 3.292913208007812e+02, 3.29414306640625e+02, 3.295333557128906e+02, 3.296485900878906e+02, 3.297601623535156e+02, 3.298681640625e+02, 3.299727172851562e+02, 3.300739135742188e+02, 3.30171875e+02, 3.302667236328125e+02, 3.303584899902344e+02, 3.304473571777344e+02, 3.305333557128906e+02, 3.306165771484375e+02, 3.306971435546875e+02, 3.30775146484375e+02, 3.308506469726562e+02, 3.309237060546875e+02, 3.309944152832031e+02, 3.310628967285156e+02, 3.31129150390625e+02, 3.311932983398438e+02, 3.312554016113281e+02, 3.313154907226562e+02, 3.313736572265625e+02, 3.314299621582031e+02, 3.314844665527344e+02] tan_aTop.vol[12].T=[2.931499938964844e+02, 2.932191467285156e+02, 2.934034118652344e+02, 2.936851806640625e+02, 2.940511779785156e+02, 2.944895629882812e+02, 2.949896545410156e+02, 2.955391235351562e+02, 2.961268310546875e+02, 2.96744873046875e+02, 2.973869934082031e+02, 2.980482177734375e+02, 2.987243957519531e+02, 2.994120483398438e+02, 3.001081237792969e+02, 3.0081005859375e+02, 3.015155029296875e+02, 3.022225036621094e+02, 3.029292297363281e+02, 3.036340942382812e+02, 3.043356323242188e+02, 3.050326232910156e+02, 3.05723876953125e+02, 3.064084167480469e+02, 3.070853576660156e+02, 3.0775390625e+02, 3.084133605957031e+02, 3.090631713867188e+02, 3.097027587890625e+02, 3.103317260742188e+02, 3.109497375488281e+02, 3.11556396484375e+02, 3.121515197753906e+02, 3.1273486328125e+02, 3.133062744140625e+02, 3.138656616210938e+02, 3.144129638671875e+02, 3.149480590820312e+02, 3.154710083007812e+02, 3.159818115234375e+02, 3.1648046875e+02, 3.169671325683594e+02, 3.174418640136719e+02, 3.179047241210938e+02, 3.183559265136719e+02, 3.187955322265625e+02, 3.192237243652344e+02, 3.196406860351562e+02, 3.200465698242188e+02, 3.204415283203125e+02, 3.208258056640625e+02, 3.211995849609375e+02, 3.215630493164062e+02, 3.219163818359375e+02, 3.222597961425781e+02, 3.22593505859375e+02, 3.229176940917969e+02, 3.232326049804688e+02, 3.235383911132812e+02, 3.238353576660156e+02, 3.241237182617188e+02, 3.244036560058594e+02, 3.246753540039062e+02, 3.249389953613281e+02, 3.2519482421875e+02, 3.254429931640625e+02, 3.256837463378906e+02, 3.259172668457031e+02, 3.261437377929688e+02, 3.263633422851562e+02, 3.265762634277344e+02, 3.2678271484375e+02, 3.269828796386719e+02, 3.271769104003906e+02, 3.273649597167969e+02, 3.275472412109375e+02, 3.277239074707031e+02, 3.278950805664062e+02, 3.280609741210938e+02, 3.282217102050781e+02, 3.283774719238281e+02, 3.285283508300781e+02, 3.286745300292969e+02, 3.288161315917969e+02, 3.289533081054688e+02, 3.29086181640625e+02, 3.292148742675781e+02, 3.293395080566406e+02, 3.294602355957031e+02, 3.295771789550781e+02, 3.296903991699219e+02, 3.29800048828125e+02, 3.2990625e+02, 3.300090942382812e+02, 3.301086730957031e+02, 3.302051086425781e+02, 3.302984924316406e+02, 3.30388916015625e+02, 3.304764709472656e+02, 3.305612487792969e+02, 3.30643310546875e+02] tan_bTop.vol[9].T=[2.931499938964844e+02, 2.945765380859375e+02, 2.95867431640625e+02, 2.971080322265625e+02, 2.983009948730469e+02, 2.994486999511719e+02, 3.005534057617188e+02, 3.016171875e+02, 3.026420288085938e+02, 3.036297302246094e+02, 3.045820007324219e+02, 3.055004577636719e+02, 3.063865966796875e+02, 3.072417907714844e+02, 3.080674133300781e+02, 3.088646850585938e+02, 3.096347961425781e+02, 3.103788146972656e+02, 3.110978393554688e+02, 3.117927856445312e+02, 3.124646606445312e+02, 3.131143188476562e+02, 3.137425842285156e+02, 3.143502807617188e+02, 3.149381408691406e+02, 3.155069274902344e+02, 3.160573120117188e+02, 3.165899353027344e+02, 3.1710546875e+02, 3.176044616699219e+02, 3.180874938964844e+02, 3.185551452636719e+02, 3.190079345703125e+02, 3.194463195800781e+02, 3.19870849609375e+02, 3.202819519042969e+02, 3.206801147460938e+02, 3.210657043457031e+02, 3.214391784667969e+02, 3.218009338378906e+02, 3.221513366699219e+02, 3.224907836914062e+02, 3.228196105957031e+02, 3.231381530761719e+02, 3.234467468261719e+02, 3.237456970214844e+02, 3.240353393554688e+02, 3.243159790039062e+02, 3.245878601074219e+02, 3.248512878417969e+02, 3.251065368652344e+02, 3.253538513183594e+02, 3.25593505859375e+02, 3.258257141113281e+02, 3.260507202148438e+02, 3.262687377929688e+02, 3.2647998046875e+02, 3.266847229003906e+02, 3.268830871582031e+02, 3.270753479003906e+02, 3.272616577148438e+02, 3.274421997070312e+02, 3.276171569824219e+02, 3.277867126464844e+02, 3.279509887695312e+02, 3.281101989746094e+02, 3.282644653320312e+02, 3.284139709472656e+02, 3.285588684082031e+02, 3.286992492675781e+02, 3.288353271484375e+02, 3.289671936035156e+02, 3.290950012207031e+02, 3.292188720703125e+02, 3.293389282226562e+02, 3.294552612304688e+02, 3.295680236816406e+02, 3.296773071289062e+02, 3.29783203125e+02, 3.298858642578125e+02, 3.299853515625e+02, 3.300817565917969e+02, 3.301752319335938e+02, 3.302658081054688e+02, 3.303535766601562e+02, 3.304386901855469e+02, 3.305211486816406e+02, 3.3060107421875e+02, 3.306785278320312e+02, 3.307536315917969e+02, 3.308263854980469e+02, 3.308969421386719e+02, 3.3096533203125e+02, 3.310315856933594e+02, 3.310958557128906e+02, 3.311581115722656e+02, 3.312184753417969e+02, 3.312770080566406e+02, 3.313337097167969e+02, 3.313887023925781e+02, 3.314419860839844e+02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Storage_Validation_StratifiedLoadingUnloading.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Storage_Validation_StratifiedLoadingUnloading.txt index 2e140b11e5..2a655fbb1f 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Storage_Validation_StratifiedLoadingUnloading.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Fluid_Storage_Validation_StratifiedLoadingUnloading.txt @@ -1,4 +1,4 @@ -last-generated=2020-12-10 +last-generated=2022-05-23 statistics-simulation= { "linear": "0, 0", @@ -7,19 +7,19 @@ statistics-simulation= "numerical Jacobians": "0" } time=[0e+00, 1.44e+04] -tanEnh.vol[1].T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 3.03248046875e+02, 3.082461547851562e+02, 3.107204284667969e+02, 3.119454345703125e+02, 3.125521545410156e+02, 3.12852783203125e+02, 3.130018920898438e+02, 3.13075927734375e+02, 3.131127624511719e+02, 3.131311645507812e+02, 3.131404113769531e+02, 3.131450500488281e+02, 3.131474304199219e+02, 3.131486511230469e+02, 3.131494445800781e+02, 3.131521301269531e+02, 3.131540222167969e+02, 3.131544189453125e+02, 3.131539611816406e+02, 3.131531982421875e+02, 3.131524047851562e+02, 3.131517028808594e+02, 3.131511535644531e+02, 3.131507263183594e+02, 3.131504516601562e+02, 3.131513977050781e+02, 3.131531066894531e+02, 3.131264038085938e+02, 3.129450073242188e+02, 3.12394287109375e+02, 3.112860107421875e+02, 3.095666198730469e+02, 3.07345947265625e+02, 3.048489685058594e+02, 3.02334228515625e+02, 3.000225830078125e+02, 2.980573120117188e+02, 2.964975280761719e+02, 2.953365173339844e+02, 2.945251159667969e+02, 2.939861755371094e+02, 2.936419982910156e+02, 2.934291076660156e+02, 2.933010864257812e+02, 2.932261962890625e+02, 2.931838073730469e+02, 2.931607666015625e+02, 2.931490478515625e+02, 2.931438293457031e+02, 2.9314208984375e+02, 3.032440185546875e+02, 3.082441711425781e+02, 3.107194213867188e+02, 3.119450378417969e+02, 3.125519714355469e+02, 3.128527221679688e+02, 3.130018615722656e+02, 3.130758972167969e+02, 3.131127624511719e+02, 3.131311645507812e+02, 3.13140380859375e+02, 3.131450500488281e+02, 3.131474304199219e+02, 3.131486511230469e+02, 3.131494750976562e+02, 3.131521911621094e+02, 3.13154052734375e+02, 3.131544494628906e+02, 3.131539916992188e+02, 3.131532287597656e+02, 3.131524353027344e+02, 3.131517333984375e+02, 3.131511535644531e+02, 3.131507568359375e+02, 3.131504821777344e+02] -tanEnh.vol[2].T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.965625e+02, 3.021443176269531e+02, 3.067415161132812e+02, 3.097691345214844e+02, 3.115111999511719e+02, 3.124127197265625e+02, 3.128367004394531e+02, 3.130187683105469e+02, 3.13091064453125e+02, 3.131188659667969e+02, 3.131306457519531e+02, 3.131376953125e+02, 3.131436462402344e+02, 3.131463012695312e+02, 3.131524047851562e+02, 3.131575927734375e+02, 3.131592102050781e+02, 3.131589660644531e+02, 3.131578063964844e+02, 3.131563720703125e+02, 3.131549682617188e+02, 3.131536865234375e+02, 3.131526489257812e+02, 3.131518249511719e+02, 3.131511840820312e+02, 3.131537780761719e+02, 3.131511840820312e+02, 3.130244750976562e+02, 3.124807739257812e+02, 3.112494506835938e+02, 3.09270751953125e+02, 3.067246704101562e+02, 3.039328918457031e+02, 3.012281494140625e+02, 2.988602294921875e+02, 2.969593811035156e+02, 2.955471496582031e+02, 2.94570556640625e+02, 2.939511108398438e+02, 2.935846862792969e+02, 2.933755187988281e+02, 2.93259033203125e+02, 2.931958618164062e+02, 2.931628723144531e+02, 2.931466979980469e+02, 2.931397094726562e+02, 2.931375427246094e+02, 2.931378479003906e+02, 2.931394653320312e+02, 2.931412048339844e+02, 2.965555419921875e+02, 3.021397705078125e+02, 3.067388916015625e+02, 3.09767578125e+02, 3.115103759765625e+02, 3.124123229980469e+02, 3.128365478515625e+02, 3.130187072753906e+02, 3.13091064453125e+02, 3.13118896484375e+02, 3.131306457519531e+02, 3.131377868652344e+02, 3.131437072753906e+02, 3.131463317871094e+02, 3.131525268554688e+02, 3.131576538085938e+02, 3.131592712402344e+02, 3.131590270996094e+02, 3.131578674316406e+02, 3.131564025878906e+02, 3.131549987792969e+02, 3.131537170410156e+02, 3.131526489257812e+02, 3.131519470214844e+02, 3.131512756347656e+02] -tanEnh.vol[3].T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.936793823242188e+02, 2.963542175292969e+02, 3.004335021972656e+02, 3.045593566894531e+02, 3.079075927734375e+02, 3.102439270019531e+02, 3.116876525878906e+02, 3.12486572265625e+02, 3.128822631835938e+02, 3.130558471679688e+02, 3.131217956542969e+02, 3.131421813964844e+02, 3.131469421386719e+02, 3.131481018066406e+02, 3.131617126464844e+02, 3.131669311523438e+02, 3.13167236328125e+02, 3.131655883789062e+02, 3.131633605957031e+02, 3.131609191894531e+02, 3.131586608886719e+02, 3.131566772460938e+02, 3.131550598144531e+02, 3.131537170410156e+02, 3.131526794433594e+02, 3.131579284667969e+02, 3.13057861328125e+02, 3.123804626464844e+02, 3.10709716796875e+02, 3.080707702636719e+02, 3.048696594238281e+02, 3.016341857910156e+02, 2.987913513183594e+02, 2.965696716308594e+02, 2.950085144042969e+02, 2.940209045410156e+02, 2.934643249511719e+02, 2.931947937011719e+02, 2.931224670410156e+02, 2.931056823730469e+02, 2.931061706542969e+02, 2.931112670898438e+02, 2.931173706054688e+02, 2.931232604980469e+02, 2.931284790039062e+02, 2.931329040527344e+02, 2.931365966796875e+02, 2.931394653320312e+02, 2.931415710449219e+02, 2.931434326171875e+02, 2.936719055175781e+02, 2.963473815917969e+02, 3.004281921386719e+02, 3.045558166503906e+02, 3.079053955078125e+02, 3.102426452636719e+02, 3.116869506835938e+02, 3.124862060546875e+02, 3.128821105957031e+02, 3.130557861328125e+02, 3.131217956542969e+02, 3.1314208984375e+02, 3.131469421386719e+02, 3.131481628417969e+02, 3.13161865234375e+02, 3.131669616699219e+02, 3.131673278808594e+02, 3.131657104492188e+02, 3.131633911132812e+02, 3.131609802246094e+02, 3.1315869140625e+02, 3.131566162109375e+02, 3.131559143066406e+02, 3.131539306640625e+02, 3.1315283203125e+02] -tanEnh.vol[4].T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931774291992188e+02, 2.938815307617188e+02, 2.959543762207031e+02, 2.991723327636719e+02, 3.028030090332031e+02, 3.061507568359375e+02, 3.088123779296875e+02, 3.106864013671875e+02, 3.118694458007812e+02, 3.125408020019531e+02, 3.128812866210938e+02, 3.130333557128906e+02, 3.1309228515625e+02, 3.131575622558594e+02, 3.131760559082031e+02, 3.131792297363281e+02, 3.131773071289062e+02, 3.131737365722656e+02, 3.131698303222656e+02, 3.131661376953125e+02, 3.131628723144531e+02, 3.131601257324219e+02, 3.131578369140625e+02, 3.13156005859375e+02, 3.131546325683594e+02, 3.131280517578125e+02, 3.124249877929688e+02, 3.103521728515625e+02, 3.0713330078125e+02, 3.035010986328125e+02, 3.001519775390625e+02, 2.974892883300781e+02, 2.95614501953125e+02, 2.944312133789062e+02, 2.937595520019531e+02, 2.934188537597656e+02, 2.932666931152344e+02, 2.932077331542969e+02, 2.931424560546875e+02, 2.931239318847656e+02, 2.931207275390625e+02, 2.931226806640625e+02, 2.931262512207031e+02, 2.931301574707031e+02, 2.931338500976562e+02, 2.931371154785156e+02, 2.931398620605469e+02, 2.931422119140625e+02, 2.931438598632812e+02, 2.931452331542969e+02, 2.931719360351562e+02, 2.938750305175781e+02, 2.959478759765625e+02, 2.991668395996094e+02, 3.027989501953125e+02, 3.061480407714844e+02, 3.088106689453125e+02, 3.106853942871094e+02, 3.118688659667969e+02, 3.125404968261719e+02, 3.128811645507812e+02, 3.130332946777344e+02, 3.130921630859375e+02, 3.1315771484375e+02, 3.131763000488281e+02, 3.131792602539062e+02, 3.131773681640625e+02, 3.131737976074219e+02, 3.131698913574219e+02, 3.131661682128906e+02, 3.131629333496094e+02, 3.131603698730469e+02, 3.131566772460938e+02, 3.131560974121094e+02, 3.131546325683594e+02] -tanEnh.vol[5].T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931457824707031e+02, 2.932469787597656e+02, 2.939253540039062e+02, 2.955963745117188e+02, 2.982349548339844e+02, 3.014349975585938e+02, 3.046692504882812e+02, 3.07510986328125e+02, 3.097317810058594e+02, 3.112923278808594e+02, 3.12279541015625e+02, 3.128359069824219e+02, 3.131053161621094e+02, 3.131775512695312e+02, 3.131943969726562e+02, 3.131937866210938e+02, 3.131887817382812e+02, 3.131826782226562e+02, 3.131766967773438e+02, 3.131715087890625e+02, 3.131670837402344e+02, 3.131633911132812e+02, 3.131604919433594e+02, 3.13158447265625e+02, 3.1315673828125e+02, 3.126281127929688e+02, 3.099526672363281e+02, 3.058718566894531e+02, 3.017442626953125e+02, 2.983946533203125e+02, 2.960574340820312e+02, 2.946131591796875e+02, 2.938139953613281e+02, 2.934178466796875e+02, 2.932441711425781e+02, 2.931781921386719e+02, 2.931579284667969e+02, 2.931528930664062e+02, 2.9315185546875e+02, 2.931382751464844e+02, 2.931330871582031e+02, 2.931327209472656e+02, 2.931343078613281e+02, 2.931366271972656e+02, 2.931390686035156e+02, 2.931413269042969e+02, 2.93143310546875e+02, 2.931448974609375e+02, 2.931463317871094e+02, 2.931473083496094e+02, 2.931420288085938e+02, 2.932421264648438e+02, 2.939195251464844e+02, 2.955902099609375e+02, 2.982292175292969e+02, 3.014303283691406e+02, 3.046658020019531e+02, 3.075086059570312e+02, 3.097303161621094e+02, 3.1129150390625e+02, 3.122791137695312e+02, 3.128357238769531e+02, 3.131052551269531e+02, 3.131772766113281e+02, 3.131939392089844e+02, 3.1319384765625e+02, 3.131887817382812e+02, 3.131826477050781e+02, 3.131767578125e+02, 3.131715698242188e+02, 3.131670837402344e+02, 3.131633605957031e+02, 3.131607971191406e+02, 3.131583251953125e+02, 3.1315673828125e+02] -tanEnh.vol[6].T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931488952636719e+02, 2.931519165039062e+02, 2.932796020507812e+02, 2.938241882324219e+02, 2.950560607910156e+02, 2.970347290039062e+02, 2.995802307128906e+02, 3.023711242675781e+02, 3.050748901367188e+02, 3.074420166015625e+02, 3.093421630859375e+02, 3.107538757324219e+02, 3.117300720214844e+02, 3.123492431640625e+02, 3.12715576171875e+02, 3.129246215820312e+02, 3.13041015625e+02, 3.131041564941406e+02, 3.131371154785156e+02, 3.131532592773438e+02, 3.131602478027344e+02, 3.131624450683594e+02, 3.131621398925781e+02, 3.131605834960938e+02, 3.131587829589844e+02, 3.097444458007812e+02, 3.041602478027344e+02, 2.995610656738281e+02, 2.965322265625e+02, 2.947895202636719e+02, 2.938876037597656e+02, 2.9346337890625e+02, 2.932811584472656e+02, 2.932089538574219e+02, 2.931811218261719e+02, 2.931693725585938e+02, 2.931621704101562e+02, 2.931565246582031e+02, 2.931537170410156e+02, 2.931475219726562e+02, 2.931424255371094e+02, 2.931407775878906e+02, 2.931410217285156e+02, 2.931421508789062e+02, 2.931435852050781e+02, 2.9314501953125e+02, 2.931462707519531e+02, 2.931473388671875e+02, 2.931481323242188e+02, 2.931487426757812e+02, 2.931461791992188e+02, 2.931487731933594e+02, 2.932754821777344e+02, 2.938191833496094e+02, 2.95050537109375e+02, 2.970292663574219e+02, 2.995753784179688e+02, 3.023671569824219e+02, 3.050718383789062e+02, 3.074397888183594e+02, 3.093406372070312e+02, 3.107528686523438e+02, 3.117294616699219e+02, 3.123489379882812e+02, 3.127153015136719e+02, 3.129243774414062e+02, 3.130409240722656e+02, 3.131040954589844e+02, 3.131370849609375e+02, 3.131532592773438e+02, 3.131603088378906e+02, 3.131624450683594e+02, 3.131622924804688e+02, 3.131604309082031e+02, 3.131587524414062e+02] -tanEnh.vol[7].T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931500244140625e+02, 2.931493530273438e+02, 2.931766662597656e+02, 2.933588256835938e+02, 2.939102783203125e+02, 2.9501904296875e+02, 2.967384948730469e+02, 2.989588012695312e+02, 3.014551696777344e+02, 3.039691162109375e+02, 3.062799987792969e+02, 3.082445678710938e+02, 3.098037719726562e+02, 3.1096435546875e+02, 3.117754516601562e+02, 3.12314208984375e+02, 3.12658203125e+02, 3.128709716796875e+02, 3.129989318847656e+02, 3.1307373046875e+02, 3.131160888671875e+02, 3.131391296386719e+02, 3.131509094238281e+02, 3.131561889648438e+02, 3.131578979492188e+02, 3.030559997558594e+02, 2.980558166503906e+02, 2.9558056640625e+02, 2.943550415039062e+02, 2.937480773925781e+02, 2.934472961425781e+02, 2.932981567382812e+02, 2.932240905761719e+02, 2.931872253417969e+02, 2.931688232421875e+02, 2.931596069335938e+02, 2.931549377441406e+02, 2.931525573730469e+02, 2.931513366699219e+02, 2.931505432128906e+02, 2.931478576660156e+02, 2.931459655761719e+02, 2.931455688476562e+02, 2.9314599609375e+02, 2.931467590332031e+02, 2.931475830078125e+02, 2.931482849121094e+02, 2.931488342285156e+02, 2.931492614746094e+02, 2.931495361328125e+02, 2.931485595703125e+02, 2.931468811035156e+02, 2.93173583984375e+02, 2.933549499511719e+02, 2.939056701660156e+02, 2.950139770507812e+02, 2.967333679199219e+02, 2.989540405273438e+02, 3.014510498046875e+02, 3.039657592773438e+02, 3.062774047851562e+02, 3.0824267578125e+02, 3.098024597167969e+02, 3.109635009765625e+02, 3.1177490234375e+02, 3.123137817382812e+02, 3.126579284667969e+02, 3.128707885742188e+02, 3.12998779296875e+02, 3.130736999511719e+02, 3.131161499023438e+02, 3.131392211914062e+02, 3.131509704589844e+02, 3.131561889648438e+02, 3.131578369140625e+02] -dHTan.y=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 8.3679625e+05, 1.673424375000003e+06, 2.507990250000003e+06, 3.3330575e+06, 4.13326925e+06, 4.887543e+06, 5.5744365e+06, 6.177397e+06, 6.6877495e+06, 7.1050345e+06, 7.4354685e+06, 7.689584e+06, 7.879889e+06, 8.019026e+06, 8.1185715e+06, 8.188408e+06, 8.236538e+06, 8.2691805e+06, 8.2909965e+06, 8.3053815e+06, 8.3147535e+06, 8.3207975e+06, 8.3246555e+06, 8.3270925e+06, 8.3286195e+06, 7.4918245e+06, 6.6552045e+06, 5.820671e+06, 4.995681499999994e+06, 4.195609999999995e+06, 3.441535249999995e+06, 2.7548875e+06, 2.1521965e+06, 1.642114875e+06, 1.225081875e+06, 8.94868375e+05, 6.40937375e+05, 4.50780375e+05, 3.1175665625e+05, 2.12295921875e+05, 1.42520390625e+05, 9.4431140625e+04, 6.18173515625e+04, 4.00200078125e+04, 2.5644798828125e+04, 1.62790625e+04, 1.02445537109375e+04, 6.39575390625e+03, 3.96373974609375e+03, 2.440025146484375e+03, 8.3923525e+05, 1.675855125e+06, 2.510389e+06, 3.33537825e+06, 4.1354515e+06, 4.889527e+06, 5.5761755e+06, 6.178866e+06, 6.6889475e+06, 7.1059805e+06, 7.436194e+06, 7.690126e+06, 7.8802835e+06, 8.0193075e+06, 8.1187685e+06, 8.1885445e+06, 8.236632e+06, 8.269241e+06, 8.291034e+06, 8.305409e+06, 8.314779e+06, 8.320816e+06, 8.3246665e+06, 8.3270995e+06, 8.3286235e+06] -dHTanEnh.y=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 8.36798375e+05, 1.673620250000003e+06, 2.510115750000003e+06, 3.34287775e+06, 4.16108175e+06, 4.945021e+06, 5.669683e+06, 6.311293e+06, 6.8533345e+06, 7.2896885e+06, 7.62446e+06, 7.869441e+06, 8.040634e+06, 8.1550295e+06, 8.2284165e+06, 8.273848e+06, 8.3010585e+06, 8.316814e+06, 8.325575e+06, 8.3301795e+06, 8.3323915e+06, 8.333277e+06, 8.3334575e+06, 8.3332935e+06, 8.332991e+06, 7.496157e+06, 6.6592495e+06, 5.8226395e+06, 4.989733999999994e+06, 4.171355749999995e+06, 3.387214749999995e+06, 2.66233775e+06, 2.020518625e+06, 1.478289375e+06, 1.04177825e+06, 7.06883375e+05, 4.618095e+05, 2.9055184375e+05, 1.7611184375e+05, 1.02695078125e+05, 5.72438515625e+04, 3.0016228515625e+04, 1.4250990234375e+04, 5.48387939453125e+03, 8.72655517578125e+02, -1.342316772460938e+03, -2.224088134765625e+03, -2.400294189453125e+03, -2.234341064453125e+03, -1.93130517578125e+03, 8.349035625e+05, 1.671812125e+06, 2.50842275e+06, 3.34132825e+06, 4.15970825e+06, 4.9438505e+06, 5.6687275e+06, 6.310547e+06, 6.8527755e+06, 7.2892865e+06, 7.6241805e+06, 7.8692555e+06, 8.040514e+06, 8.154954e+06, 8.2283705e+06, 8.273823e+06, 8.3010505e+06, 8.316812e+06, 8.325576e+06, 8.33019e+06, 8.3324105e+06, 8.333294e+06, 8.333471e+06, 8.333304e+06, 8.3330025e+06] +tanEnh.vol[1].T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 3.03248046875e+02, 3.082461547851562e+02, 3.107204284667969e+02, 3.119454345703125e+02, 3.125521545410156e+02, 3.12852783203125e+02, 3.130018920898438e+02, 3.13075927734375e+02, 3.131127624511719e+02, 3.131311645507812e+02, 3.131404113769531e+02, 3.131450500488281e+02, 3.131474304199219e+02, 3.131486511230469e+02, 3.131494445800781e+02, 3.131521301269531e+02, 3.131540222167969e+02, 3.131544189453125e+02, 3.131539611816406e+02, 3.131531982421875e+02, 3.131524047851562e+02, 3.131517028808594e+02, 3.131511535644531e+02, 3.131507263183594e+02, 3.131504516601562e+02, 3.131513977050781e+02, 3.131531066894531e+02, 3.131264038085938e+02, 3.129450073242188e+02, 3.12394287109375e+02, 3.112860107421875e+02, 3.095666198730469e+02, 3.07345947265625e+02, 3.048489685058594e+02, 3.02334228515625e+02, 3.000225830078125e+02, 2.980573120117188e+02, 2.964975280761719e+02, 2.953365173339844e+02, 2.945251159667969e+02, 2.939861755371094e+02, 2.936419982910156e+02, 2.934291076660156e+02, 2.933010864257812e+02, 2.932261962890625e+02, 2.931838073730469e+02, 2.931607666015625e+02, 2.931490478515625e+02, 2.931438293457031e+02, 2.9314208984375e+02, 3.032440185546875e+02, 3.082441711425781e+02, 3.107194213867188e+02, 3.119450378417969e+02, 3.125519714355469e+02, 3.128527221679688e+02, 3.130018615722656e+02, 3.130758972167969e+02, 3.131127624511719e+02, 3.131311645507812e+02, 3.13140380859375e+02, 3.131450500488281e+02, 3.131474304199219e+02, 3.131486511230469e+02, 3.131494750976562e+02, 3.131521606445312e+02, 3.131540222167969e+02, 3.131544189453125e+02, 3.131539916992188e+02, 3.131532287597656e+02, 3.131524353027344e+02, 3.131517333984375e+02, 3.131511535644531e+02, 3.131507568359375e+02, 3.131504516601562e+02] +tanEnh.vol[2].T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.965625e+02, 3.021443176269531e+02, 3.067415161132812e+02, 3.097691345214844e+02, 3.115111999511719e+02, 3.124127197265625e+02, 3.128367004394531e+02, 3.130187683105469e+02, 3.13091064453125e+02, 3.131188659667969e+02, 3.131306457519531e+02, 3.131376953125e+02, 3.131436462402344e+02, 3.131463012695312e+02, 3.131524047851562e+02, 3.131575927734375e+02, 3.131592102050781e+02, 3.131589660644531e+02, 3.131578063964844e+02, 3.131563720703125e+02, 3.131549682617188e+02, 3.131536865234375e+02, 3.131526489257812e+02, 3.131518249511719e+02, 3.131511840820312e+02, 3.131537780761719e+02, 3.131511840820312e+02, 3.130244750976562e+02, 3.124807739257812e+02, 3.112494506835938e+02, 3.09270751953125e+02, 3.067246704101562e+02, 3.039328918457031e+02, 3.012281494140625e+02, 2.988602294921875e+02, 2.969593811035156e+02, 2.955471496582031e+02, 2.94570556640625e+02, 2.939511108398438e+02, 2.935846862792969e+02, 2.933755187988281e+02, 2.93259033203125e+02, 2.931958618164062e+02, 2.931628723144531e+02, 2.931466979980469e+02, 2.931397094726562e+02, 2.931375427246094e+02, 2.931378479003906e+02, 2.931394653320312e+02, 2.931412048339844e+02, 2.965555419921875e+02, 3.021397705078125e+02, 3.067388916015625e+02, 3.09767578125e+02, 3.115103759765625e+02, 3.124123229980469e+02, 3.128365478515625e+02, 3.130187072753906e+02, 3.13091064453125e+02, 3.13118896484375e+02, 3.131306457519531e+02, 3.131377868652344e+02, 3.131437072753906e+02, 3.131463317871094e+02, 3.131524658203125e+02, 3.131575622558594e+02, 3.131592102050781e+02, 3.131589660644531e+02, 3.131578369140625e+02, 3.131564025878906e+02, 3.131549682617188e+02, 3.131537475585938e+02, 3.131526794433594e+02, 3.1315185546875e+02, 3.131512145996094e+02] +tanEnh.vol[3].T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.936793823242188e+02, 2.963542175292969e+02, 3.004335021972656e+02, 3.045593566894531e+02, 3.079075927734375e+02, 3.102439270019531e+02, 3.116876525878906e+02, 3.12486572265625e+02, 3.128822631835938e+02, 3.130558471679688e+02, 3.131217956542969e+02, 3.131421813964844e+02, 3.131469421386719e+02, 3.131481018066406e+02, 3.131617126464844e+02, 3.131669311523438e+02, 3.13167236328125e+02, 3.131655883789062e+02, 3.131633605957031e+02, 3.131609191894531e+02, 3.131586608886719e+02, 3.131566772460938e+02, 3.131550598144531e+02, 3.131537170410156e+02, 3.131526794433594e+02, 3.131579284667969e+02, 3.13057861328125e+02, 3.123804626464844e+02, 3.10709716796875e+02, 3.080707702636719e+02, 3.048696594238281e+02, 3.016341857910156e+02, 2.987913513183594e+02, 2.965696716308594e+02, 2.950085144042969e+02, 2.940209045410156e+02, 2.934643249511719e+02, 2.931947937011719e+02, 2.931224670410156e+02, 2.931056823730469e+02, 2.931061706542969e+02, 2.931112670898438e+02, 2.931173706054688e+02, 2.931232604980469e+02, 2.931284790039062e+02, 2.931329040527344e+02, 2.931365966796875e+02, 2.931394653320312e+02, 2.931415710449219e+02, 2.931434326171875e+02, 2.936719055175781e+02, 2.963473815917969e+02, 3.004281921386719e+02, 3.045558166503906e+02, 3.079053955078125e+02, 3.102426452636719e+02, 3.116869506835938e+02, 3.124862060546875e+02, 3.128821105957031e+02, 3.130557861328125e+02, 3.131217956542969e+02, 3.1314208984375e+02, 3.131469421386719e+02, 3.13148193359375e+02, 3.131618041992188e+02, 3.131669311523438e+02, 3.131672668457031e+02, 3.131656799316406e+02, 3.131633605957031e+02, 3.131609497070312e+02, 3.131586303710938e+02, 3.131567687988281e+02, 3.131550598144531e+02, 3.131537475585938e+02, 3.131527099609375e+02] +tanEnh.vol[4].T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931774291992188e+02, 2.938815307617188e+02, 2.959543762207031e+02, 2.991723327636719e+02, 3.028030090332031e+02, 3.061507568359375e+02, 3.088123779296875e+02, 3.106864013671875e+02, 3.118694458007812e+02, 3.125408020019531e+02, 3.128812866210938e+02, 3.130333557128906e+02, 3.1309228515625e+02, 3.131575622558594e+02, 3.131760559082031e+02, 3.131792297363281e+02, 3.131773071289062e+02, 3.131737365722656e+02, 3.131698303222656e+02, 3.131661376953125e+02, 3.131628723144531e+02, 3.131601257324219e+02, 3.131578369140625e+02, 3.13156005859375e+02, 3.131546325683594e+02, 3.131280517578125e+02, 3.124249877929688e+02, 3.103521728515625e+02, 3.0713330078125e+02, 3.035010986328125e+02, 3.001519775390625e+02, 2.974892883300781e+02, 2.95614501953125e+02, 2.944312133789062e+02, 2.937595520019531e+02, 2.934188537597656e+02, 2.932666931152344e+02, 2.932077331542969e+02, 2.931424560546875e+02, 2.931239318847656e+02, 2.931207275390625e+02, 2.931226806640625e+02, 2.931262512207031e+02, 2.931301574707031e+02, 2.931338500976562e+02, 2.931371154785156e+02, 2.931398620605469e+02, 2.931422119140625e+02, 2.931438598632812e+02, 2.931452331542969e+02, 2.931719360351562e+02, 2.938750305175781e+02, 2.959478759765625e+02, 2.991668395996094e+02, 3.027989501953125e+02, 3.061480407714844e+02, 3.088106689453125e+02, 3.106853942871094e+02, 3.118688659667969e+02, 3.125404968261719e+02, 3.128811645507812e+02, 3.130332946777344e+02, 3.130921630859375e+02, 3.131576843261719e+02, 3.131760559082031e+02, 3.131792297363281e+02, 3.131773071289062e+02, 3.131737060546875e+02, 3.13169921875e+02, 3.131659545898438e+02, 3.1316357421875e+02, 3.131601257324219e+02, 3.131578674316406e+02, 3.131560668945312e+02, 3.131546325683594e+02] +tanEnh.vol[5].T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931457824707031e+02, 2.932469787597656e+02, 2.939253540039062e+02, 2.955963745117188e+02, 2.982349548339844e+02, 3.014349975585938e+02, 3.046692504882812e+02, 3.07510986328125e+02, 3.097317810058594e+02, 3.112923278808594e+02, 3.12279541015625e+02, 3.128359069824219e+02, 3.131053161621094e+02, 3.131775512695312e+02, 3.131943969726562e+02, 3.131937866210938e+02, 3.131887817382812e+02, 3.131826782226562e+02, 3.131766967773438e+02, 3.131715087890625e+02, 3.131670837402344e+02, 3.131633911132812e+02, 3.131604919433594e+02, 3.13158447265625e+02, 3.1315673828125e+02, 3.126281127929688e+02, 3.099526672363281e+02, 3.058718566894531e+02, 3.017442626953125e+02, 2.983946533203125e+02, 2.960574340820312e+02, 2.946131591796875e+02, 2.938139953613281e+02, 2.934178466796875e+02, 2.932441711425781e+02, 2.931781921386719e+02, 2.931579284667969e+02, 2.931528930664062e+02, 2.9315185546875e+02, 2.931382751464844e+02, 2.931330871582031e+02, 2.931327209472656e+02, 2.931343078613281e+02, 2.931366271972656e+02, 2.931390686035156e+02, 2.931413269042969e+02, 2.93143310546875e+02, 2.931448974609375e+02, 2.931463317871094e+02, 2.931473083496094e+02, 2.931420288085938e+02, 2.932421264648438e+02, 2.939195251464844e+02, 2.955902099609375e+02, 2.982292175292969e+02, 3.014303283691406e+02, 3.046658020019531e+02, 3.075086059570312e+02, 3.097303161621094e+02, 3.1129150390625e+02, 3.122791137695312e+02, 3.128357238769531e+02, 3.131052551269531e+02, 3.131773071289062e+02, 3.131942443847656e+02, 3.1319384765625e+02, 3.131887512207031e+02, 3.131826477050781e+02, 3.131766662597656e+02, 3.131716613769531e+02, 3.131665344238281e+02, 3.131634521484375e+02, 3.131606140136719e+02, 3.13158447265625e+02, 3.131567687988281e+02] +tanEnh.vol[6].T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931488952636719e+02, 2.931519165039062e+02, 2.932796020507812e+02, 2.938241882324219e+02, 2.950560607910156e+02, 2.970347290039062e+02, 2.995802307128906e+02, 3.023711242675781e+02, 3.050748901367188e+02, 3.074420166015625e+02, 3.093421630859375e+02, 3.107538757324219e+02, 3.117300720214844e+02, 3.123492431640625e+02, 3.12715576171875e+02, 3.129246215820312e+02, 3.13041015625e+02, 3.131041564941406e+02, 3.131371154785156e+02, 3.131532592773438e+02, 3.131602478027344e+02, 3.131624450683594e+02, 3.131621398925781e+02, 3.131605834960938e+02, 3.131587829589844e+02, 3.097444458007812e+02, 3.041602478027344e+02, 2.995610656738281e+02, 2.965322265625e+02, 2.947895202636719e+02, 2.938876037597656e+02, 2.9346337890625e+02, 2.932811584472656e+02, 2.932089538574219e+02, 2.931811218261719e+02, 2.931693725585938e+02, 2.931621704101562e+02, 2.931565246582031e+02, 2.931537170410156e+02, 2.931475219726562e+02, 2.931424255371094e+02, 2.931407775878906e+02, 2.931410217285156e+02, 2.931421508789062e+02, 2.931435852050781e+02, 2.9314501953125e+02, 2.931462707519531e+02, 2.931473388671875e+02, 2.931481323242188e+02, 2.931487426757812e+02, 2.931461791992188e+02, 2.931487731933594e+02, 2.932754821777344e+02, 2.938191833496094e+02, 2.95050537109375e+02, 2.970292663574219e+02, 2.995753784179688e+02, 3.023671569824219e+02, 3.050718383789062e+02, 3.074397888183594e+02, 3.093406372070312e+02, 3.107528686523438e+02, 3.117294616699219e+02, 3.123489074707031e+02, 3.127153625488281e+02, 3.129244995117188e+02, 3.130409545898438e+02, 3.131040954589844e+02, 3.131370849609375e+02, 3.131532897949219e+02, 3.131601867675781e+02, 3.131623840332031e+02, 3.13162109375e+02, 3.131605834960938e+02, 3.131588439941406e+02] +tanEnh.vol[7].T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931500244140625e+02, 2.931493530273438e+02, 2.931766662597656e+02, 2.933588256835938e+02, 2.939102783203125e+02, 2.9501904296875e+02, 2.967384948730469e+02, 2.989588012695312e+02, 3.014551696777344e+02, 3.039691162109375e+02, 3.062799987792969e+02, 3.082445678710938e+02, 3.098037719726562e+02, 3.1096435546875e+02, 3.117754516601562e+02, 3.12314208984375e+02, 3.12658203125e+02, 3.128709716796875e+02, 3.129989318847656e+02, 3.1307373046875e+02, 3.131160888671875e+02, 3.131391296386719e+02, 3.131509094238281e+02, 3.131561889648438e+02, 3.131578979492188e+02, 3.030559997558594e+02, 2.980558166503906e+02, 2.9558056640625e+02, 2.943550415039062e+02, 2.937480773925781e+02, 2.934472961425781e+02, 2.932981567382812e+02, 2.932240905761719e+02, 2.931872253417969e+02, 2.931688232421875e+02, 2.931596069335938e+02, 2.931549377441406e+02, 2.931525573730469e+02, 2.931513366699219e+02, 2.931505432128906e+02, 2.931478576660156e+02, 2.931459655761719e+02, 2.931455688476562e+02, 2.9314599609375e+02, 2.931467590332031e+02, 2.931475830078125e+02, 2.931482849121094e+02, 2.931488342285156e+02, 2.931492614746094e+02, 2.931495361328125e+02, 2.931485595703125e+02, 2.931468811035156e+02, 2.93173583984375e+02, 2.933549499511719e+02, 2.939056701660156e+02, 2.950139770507812e+02, 2.967333679199219e+02, 2.989540405273438e+02, 3.014510498046875e+02, 3.039657592773438e+02, 3.062774047851562e+02, 3.0824267578125e+02, 3.098024597167969e+02, 3.109635009765625e+02, 3.1177490234375e+02, 3.123138732910156e+02, 3.12657958984375e+02, 3.128708190917969e+02, 3.129988708496094e+02, 3.130737609863281e+02, 3.131161804199219e+02, 3.1313916015625e+02, 3.1315087890625e+02, 3.131561584472656e+02, 3.131578979492188e+02] +dHTan.y=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 8.3679625e+05, 1.673424375000003e+06, 2.507990250000003e+06, 3.3330575e+06, 4.13326925e+06, 4.887543e+06, 5.5744365e+06, 6.177397e+06, 6.6877495e+06, 7.1050345e+06, 7.4354685e+06, 7.689584e+06, 7.879889e+06, 8.019026e+06, 8.1185715e+06, 8.188408e+06, 8.236538e+06, 8.2691805e+06, 8.2909965e+06, 8.3053815e+06, 8.3147535e+06, 8.3207975e+06, 8.3246555e+06, 8.3270925e+06, 8.3286195e+06, 7.4918245e+06, 6.6552045e+06, 5.820671e+06, 4.995681499999994e+06, 4.195609999999995e+06, 3.441535249999995e+06, 2.7548875e+06, 2.1521965e+06, 1.642114875e+06, 1.225081875e+06, 8.94868375e+05, 6.40937375e+05, 4.50780375e+05, 3.1175665625e+05, 2.12295921875e+05, 1.42520390625e+05, 9.4431140625e+04, 6.18173515625e+04, 4.00200078125e+04, 2.5644798828125e+04, 1.62790625e+04, 1.02445537109375e+04, 6.39575390625e+03, 3.96373974609375e+03, 2.440025146484375e+03, 8.3923525e+05, 1.675855125e+06, 2.510389e+06, 3.33537825e+06, 4.1354515e+06, 4.889527e+06, 5.5761755e+06, 6.178866e+06, 6.6889475e+06, 7.1059805e+06, 7.436194e+06, 7.690126e+06, 7.8802835e+06, 8.0193075e+06, 8.1187685e+06, 8.188544e+06, 8.2366295e+06, 8.269239e+06, 8.291039e+06, 8.305416e+06, 8.314783e+06, 8.3208185e+06, 8.3246675e+06, 8.3271e+06, 8.3286235e+06] +dHTanEnh.y=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 8.36798375e+05, 1.673620250000003e+06, 2.510115750000003e+06, 3.34287775e+06, 4.16108175e+06, 4.945021e+06, 5.669683e+06, 6.311293e+06, 6.8533345e+06, 7.2896885e+06, 7.62446e+06, 7.869441e+06, 8.040634e+06, 8.1550295e+06, 8.2284165e+06, 8.273848e+06, 8.3010585e+06, 8.316814e+06, 8.325575e+06, 8.3301795e+06, 8.3323915e+06, 8.333277e+06, 8.3334575e+06, 8.3332935e+06, 8.332991e+06, 7.496157e+06, 6.6592495e+06, 5.8226395e+06, 4.989733999999994e+06, 4.171355749999995e+06, 3.387214749999995e+06, 2.66233775e+06, 2.020518625e+06, 1.478289375e+06, 1.04177825e+06, 7.06883375e+05, 4.618095e+05, 2.9055184375e+05, 1.7611184375e+05, 1.02695078125e+05, 5.72438515625e+04, 3.0016228515625e+04, 1.4250990234375e+04, 5.48387939453125e+03, 8.726555786132812e+02, -1.342316650390625e+03, -2.224088134765625e+03, -2.400294189453125e+03, -2.23434130859375e+03, -1.931306518554688e+03, 8.349035625e+05, 1.671812125e+06, 2.50842275e+06, 3.34132825e+06, 4.15970825e+06, 4.9438505e+06, 5.6687275e+06, 6.310547e+06, 6.8527755e+06, 7.2892865e+06, 7.6241805e+06, 7.8692555e+06, 8.040514e+06, 8.154954e+06, 8.228371e+06, 8.2738205e+06, 8.3010415e+06, 8.316802e+06, 8.3255735e+06, 8.3301875e+06, 8.332404e+06, 8.333288e+06, 8.3334675e+06, 8.3333035e+06, 8.333001e+06] tan.vol[1].T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 3.032480163574219e+02, 3.082461242675781e+02, 3.107203063964844e+02, 3.119452819824219e+02, 3.125519714355469e+02, 3.128526000976562e+02, 3.13001708984375e+02, 3.130757751464844e+02, 3.131126098632812e+02, 3.131310119628906e+02, 3.131402587890625e+02, 3.131449279785156e+02, 3.131473083496094e+02, 3.131485595703125e+02, 3.131492004394531e+02, 3.131495361328125e+02, 3.131497497558594e+02, 3.131498413085938e+02, 3.1314990234375e+02, 3.131499328613281e+02, 3.131499633789062e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131495666503906e+02, 3.131360473632812e+02, 3.130270690917969e+02, 3.126460876464844e+02, 3.118119201660156e+02, 3.104461364746094e+02, 3.08609375e+02, 3.064653930664062e+02, 3.042160339355469e+02, 3.0204443359375e+02, 3.000830688476562e+02, 2.984056701660156e+02, 2.970348815917969e+02, 2.959569396972656e+02, 2.951368103027344e+02, 2.945303649902344e+02, 2.94093017578125e+02, 2.93784423828125e+02, 2.935709228515625e+02, 2.934257507324219e+02, 2.933285522460938e+02, 2.93264404296875e+02, 2.932225952148438e+02, 2.931956481933594e+02, 2.93178466796875e+02, 3.032620239257812e+02, 3.082530212402344e+02, 3.107237548828125e+02, 3.119470825195312e+02, 3.125528869628906e+02, 3.128530883789062e+02, 3.13001953125e+02, 3.130758972167969e+02, 3.131126708984375e+02, 3.131310424804688e+02, 3.131402587890625e+02, 3.131449279785156e+02, 3.131473083496094e+02, 3.131485595703125e+02, 3.131492004394531e+02, 3.131495361328125e+02, 3.131497497558594e+02, 3.131498413085938e+02, 3.1314990234375e+02, 3.131499328613281e+02, 3.131499633789062e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02, 3.131499938964844e+02] tan.vol[2].T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.962876281738281e+02, 3.013550109863281e+02, 3.056026611328125e+02, 3.085664672851562e+02, 3.104600524902344e+02, 3.116087036132812e+02, 3.122821960449219e+02, 3.12667724609375e+02, 3.128845825195312e+02, 3.130049743652344e+02, 3.130711364746094e+02, 3.131072387695312e+02, 3.131268310546875e+02, 3.131374206542969e+02, 3.131431579589844e+02, 3.131462707519531e+02, 3.1314794921875e+02, 3.131488647460938e+02, 3.131493530273438e+02, 3.131496276855469e+02, 3.131497802734375e+02, 3.131498718261719e+02, 3.131499328613281e+02, 3.131499633789062e+02, 3.131499633789062e+02, 3.131476745605469e+02, 3.130826416015625e+02, 3.127287292480469e+02, 3.118187255859375e+02, 3.102518310546875e+02, 3.0814208984375e+02, 3.057349243164062e+02, 3.032960815429688e+02, 3.010362854003906e+02, 2.990830993652344e+02, 2.97486328125e+02, 2.962390441894531e+02, 2.95301025390625e+02, 2.946178283691406e+02, 2.941336975097656e+02, 2.937987060546875e+02, 2.935716247558594e+02, 2.934205017089844e+02, 2.933215026855469e+02, 2.932575988769531e+02, 2.932168579101562e+02, 2.931911926269531e+02, 2.931751708984375e+02, 2.93165283203125e+02, 2.931592102050781e+02, 2.963023376464844e+02, 3.013671875e+02, 3.05611083984375e+02, 3.085716552734375e+02, 3.104631652832031e+02, 3.116105346679688e+02, 3.122832641601562e+02, 3.126683654785156e+02, 3.128849487304688e+02, 3.130051879882812e+02, 3.130712585449219e+02, 3.131072998046875e+02, 3.131268615722656e+02, 3.13137451171875e+02, 3.131431579589844e+02, 3.131462707519531e+02, 3.1314794921875e+02, 3.131488647460938e+02, 3.131493530273438e+02, 3.131496276855469e+02, 3.131497802734375e+02, 3.131498718261719e+02, 3.131499328613281e+02, 3.131499633789062e+02, 3.131499633789062e+02] tan.vol[3].T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.938406677246094e+02, 2.965103149414062e+02, 3.002068481445312e+02, 3.038175354003906e+02, 3.067862854003906e+02, 3.089891662597656e+02, 3.105163269042969e+02, 3.115250854492188e+02, 3.121679077148438e+02, 3.125662536621094e+02, 3.128077697753906e+02, 3.129515991210938e+02, 3.130360107421875e+02, 3.130850219726562e+02, 3.131131591796875e+02, 3.131292114257812e+02, 3.131382751464844e+02, 3.131434020996094e+02, 3.131463012695312e+02, 3.131479187011719e+02, 3.131488342285156e+02, 3.131493225097656e+02, 3.131496276855469e+02, 3.131497802734375e+02, 3.131498718261719e+02, 3.131327514648438e+02, 3.128561706542969e+02, 3.118819885253906e+02, 3.100557861328125e+02, 3.075911560058594e+02, 3.048666076660156e+02, 3.022315979003906e+02, 2.999156494140625e+02, 2.980211181640625e+02, 2.96555419921875e+02, 2.954709777832031e+02, 2.946972961425781e+02, 2.941618347167969e+02, 2.938005981445312e+02, 2.935621337890625e+02, 2.934076843261719e+02, 2.933092346191406e+02, 2.932474060058594e+02, 2.932090454101562e+02, 2.931854858398438e+02, 2.931712036132812e+02, 2.931625671386719e+02, 2.931574096679688e+02, 2.931543579101562e+02, 2.931525573730469e+02, 2.938484802246094e+02, 2.9652099609375e+02, 3.002172241210938e+02, 3.038260192871094e+02, 3.0679248046875e+02, 3.08993408203125e+02, 3.105191040039062e+02, 3.115268859863281e+02, 3.121690063476562e+02, 3.125669250488281e+02, 3.128081665039062e+02, 3.129518432617188e+02, 3.130361633300781e+02, 3.130850830078125e+02, 3.131131896972656e+02, 3.131292114257812e+02, 3.131383056640625e+02, 3.131434326171875e+02, 3.131463012695312e+02, 3.131479187011719e+02, 3.131488342285156e+02, 3.131493225097656e+02, 3.131496276855469e+02, 3.131497802734375e+02, 3.131498718261719e+02] -tan.vol[4].T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.932670593261719e+02, 2.942392578125e+02, 2.964131774902344e+02, 2.993664245605469e+02, 3.024826354980469e+02, 3.053075561523438e+02, 3.076217956542969e+02, 3.093856506347656e+02, 3.106592712402344e+02, 3.115411682128906e+02, 3.121317138671875e+02, 3.125165710449219e+02, 3.127617797851562e+02, 3.129150695800781e+02, 3.130093994140625e+02, 3.130666198730469e+02, 3.131009521484375e+02, 3.13121337890625e+02, 3.131333618164062e+02, 3.131403503417969e+02, 3.131444396972656e+02, 3.131468200683594e+02, 3.131481628417969e+02, 3.131489562988281e+02, 3.131494140625e+02, 3.130298156738281e+02, 3.120542602539062e+02, 3.098782043457031e+02, 3.069245910644531e+02, 3.038091735839844e+02, 3.009857788085938e+02, 2.986731567382812e+02, 2.969107360839844e+02, 2.956382446289062e+02, 2.947571716308594e+02, 2.941672058105469e+02, 2.937827453613281e+02, 2.935377807617188e+02, 2.933846740722656e+02, 2.932904357910156e+02, 2.932332763671875e+02, 2.93198974609375e+02, 2.931786193847656e+02, 2.931666259765625e+02, 2.931596069335938e+02, 2.931555480957031e+02, 2.931531677246094e+02, 2.931518249511719e+02, 2.931510314941406e+02, 2.931506042480469e+02, 2.932701721191406e+02, 2.942456970214844e+02, 2.964217834472656e+02, 2.993755493164062e+02, 3.024908752441406e+02, 3.05314208984375e+02, 3.076268005371094e+02, 3.093892211914062e+02, 3.106617431640625e+02, 3.115428161621094e+02, 3.121328125e+02, 3.125172729492188e+02, 3.1276220703125e+02, 3.129153442382812e+02, 3.130095520019531e+02, 3.130667419433594e+02, 3.131010131835938e+02, 3.131213684082031e+02, 3.131333618164062e+02, 3.13140380859375e+02, 3.131444702148438e+02, 3.131468200683594e+02, 3.131481628417969e+02, 3.131489562988281e+02, 3.131494140625e+02] -tan.vol[5].T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931662292480469e+02, 2.934407653808594e+02, 2.944125366210938e+02, 2.962369689941406e+02, 2.987008972167969e+02, 3.014257202148438e+02, 3.040616760253906e+02, 3.063788757324219e+02, 3.082746887207031e+02, 3.097414855957031e+02, 3.108268432617188e+02, 3.116011962890625e+02, 3.121371765136719e+02, 3.124987487792969e+02, 3.127374267578125e+02, 3.128920593261719e+02, 3.129905700683594e+02, 3.130524597167969e+02, 3.130908813476562e+02, 3.131144409179688e+02, 3.131287536621094e+02, 3.131373901367188e+02, 3.131425476074219e+02, 3.131456298828125e+02, 3.131474304199219e+02, 3.124514770507812e+02, 3.097789916992188e+02, 3.06082763671875e+02, 3.024739685058594e+02, 2.995074462890625e+02, 2.973065490722656e+02, 2.957808532714844e+02, 2.947731018066406e+02, 2.941309814453125e+02, 2.937330627441406e+02, 2.934918212890625e+02, 2.933481750488281e+02, 2.932638244628906e+02, 2.932149047851562e+02, 2.931867980957031e+02, 2.931707763671875e+02, 2.931616821289062e+02, 2.931565856933594e+02, 2.931536865234375e+02, 2.931520690917969e+02, 2.931511840820312e+02, 2.931506652832031e+02, 2.93150390625e+02, 2.931502075195312e+02, 2.931501159667969e+02, 2.93167236328125e+02, 2.934438171386719e+02, 2.9441796875e+02, 2.962442321777344e+02, 2.987088928222656e+02, 3.014334106445312e+02, 3.040683898925781e+02, 3.063843383789062e+02, 3.082788696289062e+02, 3.097445678710938e+02, 3.108290405273438e+02, 3.116026916503906e+02, 3.1213818359375e+02, 3.124994201660156e+02, 3.127378845214844e+02, 3.12892333984375e+02, 3.129907531738281e+02, 3.130525817871094e+02, 3.130909423828125e+02, 3.131144714355469e+02, 3.131287841796875e+02, 3.131374206542969e+02, 3.13142578125e+02, 3.131456298828125e+02, 3.131474609375e+02] -tan.vol[6].T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931520385742188e+02, 2.932161865234375e+02, 2.935684509277344e+02, 2.944765930175781e+02, 2.960419921875e+02, 2.9815087890625e+02, 3.005579833984375e+02, 3.029973754882812e+02, 3.05258056640625e+02, 3.072123107910156e+02, 3.088100891113281e+02, 3.100582885742188e+02, 3.109970703125e+02, 3.116808166503906e+02, 3.121653442382812e+02, 3.125006713867188e+02, 3.127279357910156e+02, 3.128792114257812e+02, 3.12978271484375e+02, 3.13042236328125e+02, 3.130829772949219e+02, 3.131087036132812e+02, 3.13124755859375e+02, 3.131346740722656e+02, 3.131407775878906e+02, 3.099976501464844e+02, 3.049328308105469e+02, 3.006889038085938e+02, 2.977281799316406e+02, 2.958367919921875e+02, 2.94689453125e+02, 2.940167236328125e+02, 2.936316528320312e+02, 2.934150695800781e+02, 2.932948303222656e+02, 2.93228759765625e+02, 2.931927185058594e+02, 2.931731262207031e+02, 2.931625671386719e+02, 2.931568298339844e+02, 2.931537475585938e+02, 2.931520690917969e+02, 2.931511535644531e+02, 2.93150634765625e+02, 2.931503601074219e+02, 2.931502075195312e+02, 2.931501159667969e+02, 2.931500854492188e+02, 2.931500549316406e+02, 2.931500244140625e+02, 2.931523132324219e+02, 2.932173767089844e+02, 2.935712585449219e+02, 2.944812316894531e+02, 2.960481872558594e+02, 2.981579284667969e+02, 3.005650939941406e+02, 3.030039367675781e+02, 3.052637023925781e+02, 3.072168884277344e+02, 3.088136596679688e+02, 3.100609436035156e+02, 3.109989929199219e+02, 3.116821899414062e+02, 3.121662902832031e+02, 3.125013122558594e+02, 3.127283630371094e+02, 3.128794860839844e+02, 3.129784240722656e+02, 3.130423583984375e+02, 3.130830993652344e+02, 3.131087951660156e+02, 3.131248168945312e+02, 3.131347045898438e+02, 3.131407775878906e+02] -tan.vol[7].T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.93150390625e+02, 2.931635437011719e+02, 2.932716979980469e+02, 2.936513366699219e+02, 2.944840087890625e+02, 2.958484497070312e+02, 2.976843566894531e+02, 2.998280334472656e+02, 3.020776672363281e+02, 3.042498779296875e+02, 3.062120666503906e+02, 3.07890380859375e+02, 3.092620239257812e+02, 3.103407287597656e+02, 3.111614685058594e+02, 3.117684020996094e+02, 3.122061157226562e+02, 3.125149536132812e+02, 3.127286376953125e+02, 3.128739013671875e+02, 3.129711608886719e+02, 3.13035400390625e+02, 3.130772705078125e+02, 3.131042785644531e+02, 3.131214599609375e+02, 3.030379638671875e+02, 2.980469360351562e+02, 2.955762634277344e+02, 2.9435302734375e+02, 2.937471618652344e+02, 2.934469299316406e+02, 2.932980651855469e+02, 2.9322412109375e+02, 2.931873168945312e+02, 2.931689453125e+02, 2.931597290039062e+02, 2.931550598144531e+02, 2.931526794433594e+02, 2.931514587402344e+02, 2.931507873535156e+02, 2.931504516601562e+02, 2.931502685546875e+02, 2.93150146484375e+02, 2.931500854492188e+02, 2.931500549316406e+02, 2.931500244140625e+02, 2.931500244140625e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931504516601562e+02, 2.931639404296875e+02, 2.9327294921875e+02, 2.936538696289062e+02, 2.944880676269531e+02, 2.958538513183594e+02, 2.976906127929688e+02, 2.998345947265625e+02, 3.02083984375e+02, 3.042555541992188e+02, 3.062169189453125e+02, 3.078943176269531e+02, 3.092651062011719e+02, 3.103430480957031e+02, 3.111631774902344e+02, 3.117696228027344e+02, 3.122070007324219e+02, 3.125155334472656e+02, 3.1272900390625e+02, 3.128741760253906e+02, 3.129714050292969e+02, 3.130355529785156e+02, 3.13077392578125e+02, 3.131043395996094e+02, 3.131215209960938e+02] +tan.vol[4].T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.932670593261719e+02, 2.942392578125e+02, 2.964131774902344e+02, 2.993664245605469e+02, 3.024826354980469e+02, 3.053075561523438e+02, 3.076217956542969e+02, 3.093856506347656e+02, 3.106592712402344e+02, 3.115411682128906e+02, 3.121317138671875e+02, 3.125165710449219e+02, 3.127617797851562e+02, 3.129150695800781e+02, 3.130093994140625e+02, 3.130666198730469e+02, 3.131009521484375e+02, 3.13121337890625e+02, 3.131333618164062e+02, 3.131403503417969e+02, 3.131444396972656e+02, 3.131468200683594e+02, 3.131481628417969e+02, 3.131489562988281e+02, 3.131494140625e+02, 3.130298156738281e+02, 3.120542602539062e+02, 3.098782043457031e+02, 3.069245910644531e+02, 3.038091735839844e+02, 3.009857788085938e+02, 2.986731567382812e+02, 2.969107360839844e+02, 2.956382446289062e+02, 2.947571716308594e+02, 2.941672058105469e+02, 2.937827453613281e+02, 2.935377807617188e+02, 2.933846740722656e+02, 2.932904357910156e+02, 2.932332763671875e+02, 2.93198974609375e+02, 2.931786193847656e+02, 2.931666259765625e+02, 2.931596069335938e+02, 2.931555480957031e+02, 2.931531677246094e+02, 2.931518249511719e+02, 2.931510314941406e+02, 2.931506042480469e+02, 2.932701721191406e+02, 2.942456970214844e+02, 2.964217834472656e+02, 2.993755493164062e+02, 3.024908752441406e+02, 3.05314208984375e+02, 3.076268005371094e+02, 3.093892211914062e+02, 3.106617431640625e+02, 3.115428161621094e+02, 3.121328125e+02, 3.125172729492188e+02, 3.1276220703125e+02, 3.129153442382812e+02, 3.130095520019531e+02, 3.130667114257812e+02, 3.131010131835938e+02, 3.131213684082031e+02, 3.131333618164062e+02, 3.13140380859375e+02, 3.131444702148438e+02, 3.131468200683594e+02, 3.131481628417969e+02, 3.131489562988281e+02, 3.131494140625e+02] +tan.vol[5].T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931662292480469e+02, 2.934407653808594e+02, 2.944125366210938e+02, 2.962369689941406e+02, 2.987008972167969e+02, 3.014257202148438e+02, 3.040616760253906e+02, 3.063788757324219e+02, 3.082746887207031e+02, 3.097414855957031e+02, 3.108268432617188e+02, 3.116011962890625e+02, 3.121371765136719e+02, 3.124987487792969e+02, 3.127374267578125e+02, 3.128920593261719e+02, 3.129905700683594e+02, 3.130524597167969e+02, 3.130908813476562e+02, 3.131144409179688e+02, 3.131287536621094e+02, 3.131373901367188e+02, 3.131425476074219e+02, 3.131456298828125e+02, 3.131474304199219e+02, 3.124514770507812e+02, 3.097789916992188e+02, 3.06082763671875e+02, 3.024739685058594e+02, 2.995074462890625e+02, 2.973065490722656e+02, 2.957808532714844e+02, 2.947731018066406e+02, 2.941309814453125e+02, 2.937330627441406e+02, 2.934918212890625e+02, 2.933481750488281e+02, 2.932638244628906e+02, 2.932149047851562e+02, 2.931867980957031e+02, 2.931707763671875e+02, 2.931616821289062e+02, 2.931565856933594e+02, 2.931536865234375e+02, 2.931520690917969e+02, 2.931511840820312e+02, 2.931506652832031e+02, 2.93150390625e+02, 2.931502075195312e+02, 2.931501159667969e+02, 2.93167236328125e+02, 2.934438171386719e+02, 2.9441796875e+02, 2.962442321777344e+02, 2.987088928222656e+02, 3.014334106445312e+02, 3.040683898925781e+02, 3.063843383789062e+02, 3.082788696289062e+02, 3.097445678710938e+02, 3.108290405273438e+02, 3.116026916503906e+02, 3.1213818359375e+02, 3.124994201660156e+02, 3.127378845214844e+02, 3.12892333984375e+02, 3.129907531738281e+02, 3.130525817871094e+02, 3.130909423828125e+02, 3.13114501953125e+02, 3.131288146972656e+02, 3.131374206542969e+02, 3.13142578125e+02, 3.131456298828125e+02, 3.131474609375e+02] +tan.vol[6].T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931520385742188e+02, 2.932161865234375e+02, 2.935684509277344e+02, 2.944765930175781e+02, 2.960419921875e+02, 2.9815087890625e+02, 3.005579833984375e+02, 3.029973754882812e+02, 3.05258056640625e+02, 3.072123107910156e+02, 3.088100891113281e+02, 3.100582885742188e+02, 3.109970703125e+02, 3.116808166503906e+02, 3.121653442382812e+02, 3.125006713867188e+02, 3.127279357910156e+02, 3.128792114257812e+02, 3.12978271484375e+02, 3.13042236328125e+02, 3.130829772949219e+02, 3.131087036132812e+02, 3.13124755859375e+02, 3.131346740722656e+02, 3.131407775878906e+02, 3.099976501464844e+02, 3.049328308105469e+02, 3.006889038085938e+02, 2.977281799316406e+02, 2.958367919921875e+02, 2.94689453125e+02, 2.940167236328125e+02, 2.936316528320312e+02, 2.934150695800781e+02, 2.932948303222656e+02, 2.93228759765625e+02, 2.931927185058594e+02, 2.931731262207031e+02, 2.931625671386719e+02, 2.931568298339844e+02, 2.931537475585938e+02, 2.931520690917969e+02, 2.931511535644531e+02, 2.93150634765625e+02, 2.931503601074219e+02, 2.931502075195312e+02, 2.931501159667969e+02, 2.931500854492188e+02, 2.931500549316406e+02, 2.931500244140625e+02, 2.931523132324219e+02, 2.932173767089844e+02, 2.935712585449219e+02, 2.944812316894531e+02, 2.960481872558594e+02, 2.981579284667969e+02, 3.005650939941406e+02, 3.030039367675781e+02, 3.052637023925781e+02, 3.072168884277344e+02, 3.088136596679688e+02, 3.100609436035156e+02, 3.109989929199219e+02, 3.116821899414062e+02, 3.121662902832031e+02, 3.125012817382812e+02, 3.127283325195312e+02, 3.128794555664062e+02, 3.129784545898438e+02, 3.130423889160156e+02, 3.130831298828125e+02, 3.131087951660156e+02, 3.131248168945312e+02, 3.131347045898438e+02, 3.131407775878906e+02] +tan.vol[7].T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.93150390625e+02, 2.931635437011719e+02, 2.932716979980469e+02, 2.936513366699219e+02, 2.944840087890625e+02, 2.958484497070312e+02, 2.976843566894531e+02, 2.998280334472656e+02, 3.020776672363281e+02, 3.042498779296875e+02, 3.062120666503906e+02, 3.07890380859375e+02, 3.092620239257812e+02, 3.103407287597656e+02, 3.111614685058594e+02, 3.117684020996094e+02, 3.122061157226562e+02, 3.125149536132812e+02, 3.127286376953125e+02, 3.128739013671875e+02, 3.129711608886719e+02, 3.13035400390625e+02, 3.130772705078125e+02, 3.131042785644531e+02, 3.131214599609375e+02, 3.030379638671875e+02, 2.980469360351562e+02, 2.955762634277344e+02, 2.9435302734375e+02, 2.937471618652344e+02, 2.934469299316406e+02, 2.932980651855469e+02, 2.9322412109375e+02, 2.931873168945312e+02, 2.931689453125e+02, 2.931597290039062e+02, 2.931550598144531e+02, 2.931526794433594e+02, 2.931514587402344e+02, 2.931507873535156e+02, 2.931504516601562e+02, 2.931502685546875e+02, 2.93150146484375e+02, 2.931500854492188e+02, 2.931500549316406e+02, 2.931500244140625e+02, 2.931500244140625e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931504516601562e+02, 2.931639404296875e+02, 2.9327294921875e+02, 2.936538696289062e+02, 2.944880676269531e+02, 2.958538513183594e+02, 2.976906127929688e+02, 2.998345947265625e+02, 3.02083984375e+02, 3.042555541992188e+02, 3.062169189453125e+02, 3.078943176269531e+02, 3.092651062011719e+02, 3.103430480957031e+02, 3.111631774902344e+02, 3.117696228027344e+02, 3.122069702148438e+02, 3.125155334472656e+02, 3.127290344238281e+02, 3.128742370605469e+02, 3.12971435546875e+02, 3.130355834960938e+02, 3.13077392578125e+02, 3.131043395996094e+02, 3.131215209960938e+02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Media_Antifreeze_Validation_EthyleneGlycolWater.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Media_Antifreeze_Validation_EthyleneGlycolWater.txt index 41284e3c93..928e0c915e 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Media_Antifreeze_Validation_EthyleneGlycolWater.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Media_Antifreeze_Validation_EthyleneGlycolWater.txt @@ -1,4 +1,4 @@ -last-generated=2020-12-18 +last-generated=2022-05-18 statistics-simulation= { "linear": " ", diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Media_Examples_AirProperties.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Media_Examples_AirProperties.txt index bf4563cdb7..bb40172cc9 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Media_Examples_AirProperties.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Media_Examples_AirProperties.txt @@ -1,30 +1,30 @@ -last-generated=2016-09-09 +last-generated=2022-05-19 statistics-simulation= { - "numerical Jacobians": "0", - "nonlinear": " ", - "linear": " " + "linear": " ", + "nonlinear": " ", + "numerical Jacobians": "0" } -p=[101325., 101325.] -time=[0., 1.] -X[1]=[0.00999999977648258209, 0.00999999977648258209] -d=[1.20000004768371582031, 1.20000004768371582031] -eta=[0.00001578539740876295, 0.00001582945151411215, 0.00001587350561946135, 0.00001591755972481055, 0.00001596161564914835, 0.00001600566974629231, 0.00001604972385984757, 0.00001609377795699072, 0.00001613783207054596, 0.00001618188797026645, 0.00001622594208382169, 0.00001626999619737693, 0.00001631405031093217, 0.00001635810442448741, 0.00001640215850521904, 0.00001644621440493899, 0.00001649026855131839, 0.00001653432263204947, 0.00001657837671278056, 0.00001662243085915995, 0.00001666648493989375, 0.00001671054090525387, 0.00001675459498599092, 0.00001679864906672201, 0.0000168427032131014, 0.00001688675729383249, 0.00001693081325919261, 0.00001697486727428406, 0.00001701892142066346, 0.00001706297556704285, 0.00001710702958212563, 0.00001715108372850719, 0.00001719513969386732, 0.0000172391937089566, 0.00001728324785533599, 0.00001732730200171539, 0.00001737135601679817, 0.00001741541198216697, 0.00001745946612854636, 0.00001750352027492575, 0.00001754757429000853, 0.00001759162843638793, 0.00001763568258276732, 0.0000176797384168395, 0.0000177237925632189, 0.00001776784670959829, 0.00001781190072468107, 0.00001785595487106046, 0.00001790000901743986, 0.00001794406485151204, 0.00001798811899789143, 0.0000180321731442702, 0.00001807622729064897, 0.00001812028143702774, 0.00001816433713980659, 0.00001820839128618536, 0.00001825244543256381, 0.0000182964995789429, 0.00001834055372532166, 0.00001838460787170043, 0.00001842866357447928, 0.00001847271772085805, 0.00001851677186723682, 0.00001856082601361559, 0.00001860488015999436, 0.00001864893430637312, 0.00001869299000915198, 0.00001873704415553074, 0.00001878109830190951, 0.0000188251524482886, 0.00001886920659466705, 0.00001891326256001571, 0.00001895731644382467, 0.00001900137059020344, 0.00001904542473658221, 0.00001908947888296098, 0.00001913353302933974, 0.00001917758899469057, 0.00001922164314108668, 0.00001926569702487613, 0.0000193097511712549, 0.00001935380531763336, 0.00001939785946401244, 0.00001944191542938061, 0.00001948596957575938, 0.00001953002345954883, 0.00001957407760592759, 0.0000196181317523107, 0.0000196621877176702, 0.0000197062418640533, 0.00001975029601043207, 0.00001979434989422152, 0.00001983840404060029, 0.00001988245818698556, 0.00001992651415234537, 0.000019970568298726, 0.00002001462244510477, 0.00002005867632889421, 0.00002010273047529033, 0.00002014678644064115, 0.00002019084058701992] -h=[-5426.05517578125, -4512.96921787213796051219, -3599.88301582250960564124, -2686.79705791342712473124, -1773.71097793402691422671, -860.62506803019232393126, 52.4611209895128567382, 965.54696985818543453206, 1878.63321991278303357831, 2791.71866759630893284339, 3704.80479558049410115927, 4617.89116770530290523311, 5530.97729568948670930695, 6444.06342367367142287549, 7357.14887135719891375629, 8270.23480732051757513545, 9183.32161560681561240926, 10096.40706329034401278477, 11009.49251097386695619207, 11922.57931925871162093244, 12835.66476694223820231855, 13748.75157522707922908012, 14661.83702291060581046622, 15574.92247059413239185233, 16488.0102554414734186139, 17401.095703125, 18314.18251140984284575097, 19227.26659849205316277221, 20140.35340677689600852318, 21053.44021506173521629535, 21966.52430214394553331658, 22879.61111042878837906756, 23792.69791871363122481853, 24705.78200579584154183976, 25618.86881408068802556954, 26531.9556223655235953629, 27445.03970944773391238414, 28358.12651773257675813511, 29271.21332601742324186489, 30184.30013430226608761586, 31097.3842213844764046371, 32010.47102966931197443046, 32923.55979107915482018143, 33836.64387816136877518147, 34749.73068644620798295364, 35662.81749473105446668342, 36575.90158181326114572585, 37488.98839009810035349801, 38402.07519838294683722779, 39315.15928546515351627022, 40228.24609375, 41141.33290202186617534608, 42054.41971029373235069215, 42967.50651856560580199584, 43880.58788451330474345013, 44793.67469278517091879621, 45706.76150105054693995044, 46619.84830932889599353075, 47532.93511760076216887683, 48446.0219258726283442229, 49359.10329182032728567719, 50272.19010009220073698089, 51185.27690836406691232696, 52098.36371663593308767304, 53011.45052490779926301911, 53924.53733317967271432281, 54837.6186991273716557771, 55750.70550739923783112317, 56663.79231567110400646925, 57576.87912394945306004956, 58489.96593221482908120379, 59403.05274048669525654987, 60316.13410643439419800416, 61229.22091470626764930785, 62142.30772297813382465392, 63055.39453125, 63968.48133952186617534608, 64881.56814779373235069215, 65794.65886231559852603823, 66707.74022826329746749252, 67620.8270365351636428386, 68533.91384480055421590805, 69447.00065307889599353075, 70360.08746135076216887683, 71273.1742696226283442229, 72186.25563557032728567719, 73099.34244384219346102327, 74012.42925211405963636935, 74925.51606038594036363065, 75838.60286865780653897673, 76751.68967692967271432281, 77664.7710428773716557771, 78577.85785114923783112317, 79490.94465942110400646925, 80404.03146769944578409195, 81317.1182759648363571614, 82230.20508423670253250748, 83143.28645018440147396177, 84056.37325845626764930785, 84969.46006672813382465392, 85882.546875] -hLiq=[-125520., -121754.39835333260998595506, -117988.79670666521997191012, -114223.20287249544344376773, -110457.60122582694748416543, -106692.00028055797156412154, -102926.39793249565991573036, -99160.79698722455941606313, -95395.2024516551464330405, -91629.602909175751847215, -87864.00056111489539034665, -84098.3982130540389334783, -80332.79586499319702852517, -76567.20132941371412016451, -72801.60178694594651460648, -69036.00224445958156138659, -65270.39709082425542874262, -61504.80145459136110730469, -57739.201912115458981134, -53973.60066471151367295533, -50208.00112223560427082703, -46442.39596859447192400694, -42676.80033235575683647767, -38911.20078987984743434936, -35145.59954247590940212831, -31380., -27614.39679947105469182134, -23848.80482128770381677896, -20083.19966764423224958591, -16317.59646712345602281857, -12552.00448893661268812139, -8786.40128841115802060813, -5020.79711132727879885351, -1255.2048890013384152553, 2510.39855566321330115898, 6276.00224446829633961897, 10041.59422265805005736183, 13807.19839973785565234721, 17572.80257682231604121625, 21338.40577734195176162757, 25103.9977555346158624161, 28869.60095605771857663058, 32635.20415658666752278805, 36400.798087884541018866, 40166.39933528848632704467, 43932.00448894243163522333, 47697.59842024030513130128, 51463.19966764423588756472, 55228.80482129818119574338, 58994.39484636468114331365, 62760., 66525.60515358181146439165, 70291.2103071636229287833, 74056.80764835717855021358, 77822.39035756594967097044, 81587.99551114776113536209, 85353.60066469349840190262, 89119.2058183113404083997, 92884.80315945832990109921, 96650.40831307739426847547, 100415.99102229547861497849, 104181.59617582141072489321, 107947.20132944047509226948, 111712.79867055952490773052, 115478.40382417858927510679, 119244.00897770452138502151, 123009.59168692260573152453, 126775.19684054167009890079, 130540.7941816886595916003, 134306.40714778786059468985, 138072.00448889881954528391, 141837.60183001786936074495, 145603.19235164282144978642, 149368.78969291088287718594, 153134.40265888095018453896, 156900., 160665.59734111904981546104, 164431.21030708911712281406, 168196.80764835717855021358, 171962.39816998213063925505, 175727.99551110118045471609, 179493.59285221213940531015, 183259.20581828340073116124, 187024.80315945832990109921, 190790.4161253725178539753, 194555.99102220233180560172, 198321.58836343316943384707, 202087.20132944046054035425, 205852.79867055953945964575, 209618.41163656683056615293, 213384.00897779766819439828, 217149.5838746274821460247, 220915.19684054167009890079, 224680.79418171659926883876, 228446.40714778786059468985, 232212.00448889881954528391, 235977.60183001786936074495, 239743.19235164282144978642, 243508.78969291088287718594, 247274.40265888095018453896, 251040.] -u=[-89863.5546875, -88950.46872959093889221549, -88037.38277168187778443098, -87124.29681377288943622261, -86211.21085586377012077719, -85298.1250680301891406998, -84385.03894004564790520817, -83471.9531522121251327917, -82558.86702422784583177418, -81645.78157654432288836688, -80732.69544856013089884073, -79819.6093205759534612298, -78906.52319259176147170365, -77993.43706460758403409272, -77080.3516169240465387702, -76167.2661692405235953629, -75254.17936095567711163312, -74341.09391327215416822582, -73428.00846558863122481853, -72514.92165730378474108875, -71601.83620962026179768145, -70688.74940133541531395167, -69775.66395365189237054437, -68862.57850596836942713708, -67949.4916976835229434073, -67036.40625, -66123.31944171515351627022, -65210.23535463294683722779, -64297.14854634810035349801, -63384.06173806326114572585, -62470.97765098105446668342, -61557.89084269620798295364, -60644.80403441136877518147, -59731.71994732915482018143, -58818.63313904431561240926, -57905.5463307594764046371, -56992.46224367726244963706, -56079.37152914242324186489, -55166.28472085757675813511, -54253.19791257273755036294, -53340.1138254905235953629, -52427.02701720568438759074, -51513.94020892084517981857, -50600.85612183863122481853, -49687.76931355379201704636, -48774.68250526894553331658, -47861.59841818673885427415, -46948.51160990189964650199, -46035.42480161705316277221, -45122.34071453484648372978, -44209.25390625, -43296.16709797813382465392, -42383.08028970626764930785, -41469.99348143439419800416, -40556.91211548669525654987, -39643.82530721482908120379, -38730.73849894945306004956, -37817.65169067110400646925, -36904.56488239923783112317, -35991.4780741273716557771, -35078.39670817967271432281, -34165.30989990779926301911, -33252.22309163593308767304, -32339.13628336406691232696, -31426.04947509219709900208, -30512.962666820330923656, -29599.88130087263198220171, -28686.79449260076216887683, -27773.70768432889599353075, -26860.62087605055057792924, -25947.53406778517091879621, -25034.44725951330110547133, -24121.36589356560216401704, -23208.27908529373598867096, -22295.19227702186617534608, -21382.10546875, -20469.01866047813382465392, -19555.93185220626401132904, -18642.84504393439783598296, -17729.76367798669889452867, -16816.67686971482908120379, -15903.58908488694942207076, -14990.50227660860400646925, -14077.41546833673601213377, -13164.32866006486801779829, -12251.247294117169076344, -11338.16048584530108200852, -10425.07367757343308767304, -9511.98686930156691232696, -8598.90006102969891799148, -7685.8127644765800141613, -6772.73139852888198220171, -5859.64459025701398786623, -4946.55778198514599353075, -4033.47072956617512318189, -3120.38392130079500930151, -2207.29711302761779734283, -1294.21562501091625563276, -381.12875570389201129728, 531.95811360313211935136, 1445.0450439453125] -s=[-94.3657989501953125, -90.61749259218562713158, -86.88298780949688193687, -83.16217779059819292797, -79.45496335335570847747, -75.76124600234000183718, -72.08092449529485179482, -68.41391002123755527009, -64.76010066641670448462, -61.11940513925183182664, -57.49172264672613152925, -53.87696816879290651059, -50.27504633819105350767, -46.68586560175190669497, -43.1093446952977714659, -39.54538557465891557285, -35.99389521692848603607, -32.45480028405616934606, -28.9280077375600654932, -25.41342842405480340062, -21.91098698902219155116, -18.42059097795944566656, -14.94216686829604157083, -11.47562743619570468923, -8.02088743274526905225, -4.577877044677734375, -1.14650626239008346374, 2.27328768531454183943, 5.6816035027827993531, 9.07850739127815309359, 12.46406533593515320035, 15.83837333445175232782, 19.20149471028357979208, 22.55349673946037469818, 25.89446902159481211925, 29.22447402683071970841, 32.54357817443684552927, 35.85186610032133813775, 39.14940037303177433614, 42.43625347203446551703, 45.71248050213294078503, 48.97817346789305759103, 52.23338743906879244605, 55.4781814284544125826, 58.71263962466154140429, 61.93682100538485713059, 65.15077704559641347259, 68.35459175082918648059, 71.54832037560515800578, 74.73202211408965922601, 77.90576934814453125, 81.06962123671105757694, 84.22363881702790422423, 87.36788312436046055609, 90.50238891235953531123, 93.62726220967785195626, 96.7425377103095485154, 99.84827644824937920021, 102.94453945965140917451, 106.03138015096337198884, 109.10884124346593182509, 112.17701282824198472099, 115.23592993966222763902, 118.2856536122280743939, 121.32623725186495278194, 124.35774189471133865936, 127.38018770049471584116, 130.39367173463097060448, 133.39823698933466289418, 136.39393687020680090427, 139.38081715287793826974, 142.35892361530682137527, 145.32828436145601358476, 148.2890110832604193547, 151.24113183151743555754, 154.1846771240234375, 157.11969273561771842651, 160.04625496191900424492, 162.96440957951278960536, 165.87416978883638307707, 168.77561605208785522336, 171.66879203560370115156, 174.55374351504875107821, 177.43051626758349925694, 180.29915606997766985842, 183.15969167414621665557, 186.01220295540028359937, 188.85670335711731127049, 191.69326917255136777385, 194.52191566070979433789, 197.34270385733094599345, 200.15564753807953479736, 202.96082601213407770047, 205.75826826503654842782, 208.54803533199935827724, 211.33014247111566419335, 214.10463546012158531084, 216.87155886479300193059, 219.63096092915097301557, 222.38288617238939082199, 225.127349853515625] -g=[17518.98828125, 17602.23047056542418431491, 17682.10547223023604601622, 17758.62305187204765388742, 17831.80078761326149106026, 17901.64647927018813788891, 17968.17578990562469698489, 18031.39648253010454936884, 18091.32422911385219777003, 18147.9687302117636136245, 18201.34374224093335215002, 18251.4570341207945602946, 18298.32423080157968797721, 18341.95705112904033740051, 18382.3632789182047417853, 18419.55661922208673786372, 18453.54883959770813817158, 18484.34960409615814569406, 18511.97068427972408244386, 18536.42383350337695446797, 18557.71874403081528726034, 18575.86719816711411112919, 18590.87890781694659381174, 18602.76757368376274826005, 18611.53906620898487744853, 18617.208984375, 18619.78320381417870521545, 18619.27539248996981768869, 18615.69531307276338338852, 18609.05077418476867023855, 18599.35743487856598221697, 18586.61914395214262185618, 18570.85154992018578923307, 18552.06057310098913148977, 18530.25782072821675683372, 18505.45310914426590898074, 18477.65824458739734836854, 18446.87892149106482975185, 18413.12693618427510955371, 18376.41205431997877894901, 18336.74416497321362840012, 18294.13279663029607036151, 18248.5878285943872469943, 18200.11722300427209120244, 18148.7304560817101446446, 18094.43743320102294092067, 18037.24614244061012868769, 17977.16796138208883348852, 17914.21086810846099979244, 17848.38482949497119989246, 17779.697265625, 17708.15618015198924695142, 17633.77329238377205911092, 17556.55641487622779095545, 17476.51579917299750377424, 17393.65635011548147303984, 17307.98830194192487397231, 17219.52141990528616588563, 17128.26546990947826998308, 17034.22435838781530037522, 16937.41234283033554675058, 16837.832175276598718483, 16735.49614307201045448892, 16630.41010535874011111446, 16522.58382778973100357689, 16412.02512313040278968401, 16298.74346400499234732706, 16182.74433602015233191196, 16064.03719505056869820692, 15942.62985348011898167897, 15818.53012357859370240476, 15691.74679481448401929811, 15562.28748281040498113725, 15430.15845716687181266025, 15295.36927018374626641162, 15157.9267578125, 15017.83970864066395733971, 14875.11398257408473000396, 14729.75836870320199523121, 14581.78059321217006072402, 14431.18768076082960760687, 14277.98734146124479593709, 14122.18641088790900539607, 13963.79270181534957373515, 13802.81305033247735991608, 13639.25722833198415173683, 13473.12914536069547466468, 13304.4375809235771157546, 13133.18937073694360151421, 12959.39135076623279019259, 12783.05133376522644539364, 12604.17722957876867440064, 12422.77471849039829976391, 12238.84974164617779024411, 12052.4110880025018559536, 11863.46559328318289772142, 11672.01911724337878695223, 11478.0806358194568019826, 11281.65369684915640391409, 11082.74628438384752371348, 10881.3662109375] -f=[-52701.74609375, -52878.42187899406417272985, -53058.46094563917722553015, -53241.85938743270526174456, -53428.59767312556505203247, -53618.66795449057826772332, -53812.05861995129816932604, -54008.75390034831798402593, -54208.74222361196007113904, -54412.01164559010067023337, -54618.55465652776911156252, -54828.35548137172008864582, -55041.40630766213871538639, -55257.6915103064602590166, -55477.19920558927697129548, -55699.92174148353660712019, -55925.84773772891639964655, -56154.96089630303322337568, -56387.25764543504192261025, -56622.72271283704321831465, -56861.34367850949638523161, -57103.10953475059795891866, -57348.01565441809361800551, -57596.04286474359832936898, -57847.18763572369061876088, -58101.43359375, -58358.77759092250926187262, -58619.19893804063030984253, -58882.69918719220004277304, -59149.2580364523601019755, -59418.86686465768434572965, -59691.51946595510526094586, -59967.207229733066924382, -60245.9136954385758144781, -60527.63271131666260771453, -60812.35173328092787414789, -61100.06599296713102376089, -61390.76157956412498606369, -61684.42982838088209973648, -61981.05902061152301030234, -62280.64435198240971658379, -62583.17198381783964578062, -62888.63321536604780703783, -63197.01930984247883316129, -63508.32429338603833457455, -63822.53553287608519895002, -64139.64035942226473707706, -64459.63285085411189356819, -64782.50816074641625164077, -65108.24968826834083301947, -65436.85546875, -65768.31281772462534718215, -66102.61001588810177054256, -66439.74315687862690538168, -66779.70239310459874104708, -67122.47615253874391783029, -67468.06241733474598731846, -67816.44556286321312654763, -68167.61777637460909318179, -68521.57124514789029490203, -68878.30383432982489466667, -69237.79635918640997260809, -69600.05451423968770541251, -69965.05486232491966802627, -70332.79740338622650597245, -70703.27432466286700218916, -71076.46776848644367419183, -71452.38218333706026896834, -71831.00754093093564733863, -72212.33602879873069468886, -72596.35202219303755555302, -72983.04770823089347686619, -73372.42075799060694407672, -73764.46800018625799566507, -74159.17149759722815360874, -74556.53125, -74956.53944545336707960814, -75359.18045847302710171789, -75764.45428894725046120584, -76172.34287251341447699815, -76582.85107193414296489209, -76995.9686512599146226421, -77411.687798446582746692, -77830.0007006779924267903, -78250.89173292914347257465, -78674.36617544888576958328, -79100.41345158136391546577, -79529.02323263112339191139, -79960.1877063217107206583, -80393.89906009723199531436, -80830.15729371554334647954, -81268.94415908583323471248, -81710.26488677172164898366, -82154.10124432833981700242, -82600.46104427750105969608, -83049.32084939836931880563, -83500.68847169759101234376, -83954.53776120362454093993, -84410.881940200793906115, -84869.70268650350044481456, -85331.] -hIse=[-5426.05517578125, -4512.96921787213796051219, -3599.88301582250960564124, -2686.79705791342712473124, -1773.71097793402691422671, -860.62506803019232393126, 52.4611209895128567382, 965.54696985818543453206, 1878.63321991278303357831, 2791.71866759630893284339, 3704.80479558049410115927, 4617.89116770530290523311, 5530.97729568948670930695, 6444.06342367367142287549, 7357.14887135719891375629, 8270.23480732051757513545, 9183.32161560681561240926, 10096.40706329034401278477, 11009.49251097386695619207, 11922.57931925871162093244, 12835.66476694223820231855, 13748.75157522707922908012, 14661.83702291060581046622, 15574.92247059413239185233, 16488.0102554414734186139, 17401.095703125, 18314.18251140984284575097, 19227.26659849205316277221, 20140.35340677689600852318, 21053.44021506173521629535, 21966.52430214394553331658, 22879.61111042878837906756, 23792.69791871363122481853, 24705.78200579584154183976, 25618.86881408068802556954, 26531.9556223655235953629, 27445.03970944773391238414, 28358.12651773257675813511, 29271.21332601742324186489, 30184.30013430226608761586, 31097.3842213844764046371, 32010.47102966931197443046, 32923.55979107915482018143, 33836.64387816136877518147, 34749.73068644620798295364, 35662.81749473105446668342, 36575.90158181326114572585, 37488.98839009810035349801, 38402.07519838294683722779, 39315.15928546515351627022, 40228.24609375, 41141.33290202186617534608, 42054.41971029373235069215, 42967.50651856560580199584, 43880.58788451330474345013, 44793.67469278517091879621, 45706.76150105054693995044, 46619.84830932889599353075, 47532.93511760076216887683, 48446.0219258726283442229, 49359.10329182032728567719, 50272.19010009220073698089, 51185.27690836406691232696, 52098.36371663593308767304, 53011.45052490779926301911, 53924.53733317967271432281, 54837.6186991273716557771, 55750.70550739923783112317, 56663.79231567110400646925, 57576.87912394945306004956, 58489.96593221482908120379, 59403.05274048669525654987, 60316.13410643439419800416, 61229.22091470626764930785, 62142.30772297813382465392, 63055.39453125, 63968.48133952186617534608, 64881.56814779373235069215, 65794.65886231559852603823, 66707.74022826329746749252, 67620.8270365351636428386, 68533.91384480055421590805, 69447.00065307889599353075, 70360.08746135076216887683, 71273.1742696226283442229, 72186.25563557032728567719, 73099.34244384219346102327, 74012.42925211405963636935, 74925.51606038594036363065, 75838.60286865780653897673, 76751.68967692967271432281, 77664.7710428773716557771, 78577.85785114923783112317, 79490.94465942110400646925, 80404.03146769944578409195, 81317.1182759648363571614, 82230.20508423670253250748, 83143.28645018440147396177, 84056.37325845626764930785, 84969.46006672813382465392, 85882.546875] -beta=[0., 0.] -kappa=[-0.00000986923259915784, -0.00000986923259915784] -ddpT=[0.00001184307893709047, 0.00001184307893709047] -ddTp=[0., 0.] -dddX[1]=[0., 0.] -cp=[1014.53997802734375, 1014.53997802734375] -cv=[725.74407958984375, 725.74407958984375] -lambda=[0.02183416485786437988, 0.02190585993390485597, 0.02197747677884531736, 0.02204901166739670765, 0.02212047018749241367, 0.02219184860055531394, 0.02226314880909471827, 0.0223343707599881168, 0.02240551264365095788, 0.0224765743806248329, 0.02254755793944775849, 0.02261846326713944783, 0.02268929036369989397, 0.02276003736648395115, 0.02283070608552451725, 0.02290129471090027527, 0.02297180521027936476, 0.02304223551087405605, 0.02311258944309423427, 0.02318286152368328329, 0.02325305713112184314, 0.02332317274932240239, 0.02339320816933974576, 0.02346316722097813515, 0.02353304442038976069, 0.02360284514725208282, 0.02367256588427743905, 0.02374220631999228448, 0.0238117705947718146, 0.02388125477564450455, 0.02395065865591278209, 0.02401998451190227174, 0.02408923213662895677, 0.02415839946145400055, 0.02422748876128526935, 0.02429649982986706314, 0.02436543059923777094, 0.02443428334292192458, 0.02450305599270923354, 0.02457175041124484358, 0.02464036639417263586, 0.02470890248781060922, 0.02477736035018689165, 0.0248457379150340725, 0.02491403745252048635, 0.02498225875875076732, 0.02505039976814360872, 0.02511846274948291088, 0.02518644749955830167, 0.02525435195350680256, 0.02532217651605606079, 0.02538992470998448561, 0.02545759281001162486, 0.02552518081619076576, 0.0255926901889422867, 0.02566012173307100075, 0.02572747504596086324, 0.02579474826494817033, 0.02586194139004481876, 0.02592905814652381874, 0.02599609254718253035, 0.02606305097900813925, 0.02612992931695022614, 0.0261967294236406141, 0.02626344943643415739, 0.02633009121796711996, 0.02639665250915152958, 0.0264631359660288841, 0.02652954119166786584, 0.02659586632341935306, 0.02666211322391820113, 0.02672828189315916425, 0.02679437007482263905, 0.02686038041942353377, 0.02692631067012314292, 0.02699216268956661224, 0.02705793647775394523, 0.0271236301720577562, 0.02718924563509654904, 0.02725478247652695502, 0.02732023961493456124, 0.02738561665944041351, 0.02745091733532954714, 0.02751613791731470984, 0.02758127840544743678, 0.02764634027475394717, 0.02771132430083846424, 0.02777622823304390018, 0.02784105393399319631, 0.02790580140368635609, 0.02797046877950043475, 0.0280350575393104387, 0.02809956659047112629, 0.02816399741037567753, 0.02822834999902454692, 0.0282926224937712148, 0.02835681675728218831, 0.02842093240761788681, 0.02848496834645992959, 0.02854892419142732521, 0.02861280366778373718] -pMed=[101325., 101325.] -TMed=[243.149993896484375, 244.05000307187356156646, 244.94999698847709623806, 245.85000616386281535597, 246.75000008046299626585, 247.64999382943187811179, 248.55000317245227847707, 249.4499969214211319013, 250.3500062644413048929, 251.24999967814866863591, 252.14999376237966544068, 253.05000310539969632373, 253.94999718965115675928, 254.85000653265072401155, 255.74999994635811617627, 256.64999336006547991929, 257.5499881148746794679, 258.45001204607831368776, 259.35000545981296227183, 260.25000021456753529492, 261.14999362827495588135, 262.04998838312957332164, 262.95001231431501764746, 263.85000572802238139047, 264.75000048277701125699, 265.649993896484375, 266.54998865138446717538, 267.45001124131351843971, 268.35000599623185735254, 269.25000075098643037563, 270.14999282364658483857, 271.04998757840121470508, 271.95001285073391272817, 272.85000492339406719111, 273.74999967814869705762, 274.64999443290327008071, 275.54998650556342454365, 276.4500117778233629906, 277.35000653265075243326, 278.25000128740532545635, 279.14999336006547991929, 280.04998811487462262448, 280.95001338715280780889, 281.85000545981296227183, 282.75000021456753529492, 283.64999496932216516143, 284.54998704198231962437, 285.45001231431501764746, 286.35000706906964751397, 287.24999914172980197691, 288.149993896484375, 289.04998865137167740613, 289.95001392354612335112, 290.85000867828790660496, 291.74999806892077458542, 292.64999282366261468269, 293.54998757839797463021, 294.45001285072430619039, 295.35000760546614628765, 296.2500023602079295415, 297.14999175084079752196, 298.04998650558258077581, 298.95001177782978629693, 299.85000653264432912692, 300.75000128738616922419, 301.64999604212795247804, 302.5499854327608204585, 303.45001070482607019585, 304.35000545982256880961, 305.25000021457077536979, 306.14999496930613531731, 307.04998972437539350722, 307.95000963182241093818, 308.85000438700075164888, 309.74999914174259174615, 310.649993896484375, 311.54998865137167740613, 312.45001392354612335112, 313.35000867828790660496, 314.24999806892077458542, 315.14999282366261468269, 316.04998757839797463021, 316.95001285072430619039, 317.85000760546614628765, 318.7500023602079295415, 319.64999175084079752196, 320.54998650558258077581, 321.45001177782978629693, 322.35000653264432912692, 323.25000128738616922419, 324.14999604212795247804, 325.0499854327608204585, 325.95001070482607019585, 326.85000545982256880961, 327.75000021457077536979, 328.64999496930613531731, 329.54998972437539350722, 330.45000963182241093818, 331.35000438700075164888, 332.24999914174259174615, 333.149993896484375] -MM=[0.02879012748599052429, 0.02879012748599052429] +time=[0e+00, 1e+00] +p=[1.01325e+05, 1.01325e+05] +X[1]=[9.999999776482582e-03, 9.999999776482582e-03] +d=[1.200000047683716e+00, 1.200000047683716e+00] +eta=[1.578539740876295e-05, 1.582945151411215e-05, 1.587350561946135e-05, 1.591755972481055e-05, 1.596161564914835e-05, 1.600566974629231e-05, 1.604972385984757e-05, 1.609377795699072e-05, 1.613783207054596e-05, 1.618188797026645e-05, 1.622594208382169e-05, 1.626999619737693e-05, 1.631405031093217e-05, 1.635810442448741e-05, 1.640215850521904e-05, 1.644621440493899e-05, 1.649026855131839e-05, 1.653432263204947e-05, 1.657837671278056e-05, 1.662243085915995e-05, 1.666648493989375e-05, 1.671054090525387e-05, 1.675459498599092e-05, 1.679864906672201e-05, 1.68427032131014e-05, 1.688675729383249e-05, 1.693081325919261e-05, 1.697486727428406e-05, 1.701892142066346e-05, 1.706297556704285e-05, 1.710702958212563e-05, 1.715108372850719e-05, 1.719513969386732e-05, 1.72391937089566e-05, 1.728324785533599e-05, 1.732730200171539e-05, 1.737135601679817e-05, 1.741541198216697e-05, 1.745946612854636e-05, 1.750352027492575e-05, 1.754757429000853e-05, 1.759162843638793e-05, 1.763568258276732e-05, 1.76797384168395e-05, 1.77237925632189e-05, 1.776784670959829e-05, 1.781190072468107e-05, 1.785595487106046e-05, 1.790000901743986e-05, 1.794406485151204e-05, 1.798811899789143e-05, 1.80321731442702e-05, 1.807622729064897e-05, 1.812028143702774e-05, 1.816433713980659e-05, 1.820839128618536e-05, 1.825244543256381e-05, 1.82964995789429e-05, 1.834055372532166e-05, 1.838460787170043e-05, 1.842866357447928e-05, 1.847271772085805e-05, 1.851677186723682e-05, 1.856082601361559e-05, 1.860488015999436e-05, 1.864893430637312e-05, 1.869299000915198e-05, 1.873704415553074e-05, 1.878109830190951e-05, 1.88251524482886e-05, 1.886920659466705e-05, 1.891326256001571e-05, 1.895731644382467e-05, 1.900137059020344e-05, 1.904542473658221e-05, 1.908947888296098e-05, 1.913353302933974e-05, 1.917758899469057e-05, 1.922164314108668e-05, 1.926569702487613e-05, 1.93097511712549e-05, 1.935380531763336e-05, 1.939785946401244e-05, 1.944191542938061e-05, 1.948596957575938e-05, 1.953002345954883e-05, 1.957407760592759e-05, 1.96181317523107e-05, 1.96621877176702e-05, 1.97062418640533e-05, 1.975029601043207e-05, 1.979434989422152e-05, 1.983840404060029e-05, 1.988245818698556e-05, 1.992651415234537e-05, 1.9970568298726e-05, 2.001462244510477e-05, 2.005867632889421e-05, 2.010273047529033e-05, 2.014678644064115e-05, 2.019084058701992e-05] +h=[-5.42605517578125e+03, -4.512969217872138e+03, -3.59988301582251e+03, -2.686797057913427e+03, -1.773710977934027e+03, -8.606250680301923e+02, 5.246112098951286e+01, 9.655469698581854e+02, 1.878633219912783e+03, 2.791718667596309e+03, 3.704804795580494e+03, 4.617891167705303e+03, 5.530977295689487e+03, 6.444063423673671e+03, 7.357148871357199e+03, 8.270234807320518e+03, 9.183321615606816e+03, 1.009640706329034e+04, 1.100949251097387e+04, 1.192257931925871e+04, 1.283566476694224e+04, 1.374875157522708e+04, 1.466183702291061e+04, 1.557492247059413e+04, 1.648801025544147e+04, 1.7401095703125e+04, 1.831418251140984e+04, 1.922726659849205e+04, 2.01403534067769e+04, 2.105344021506174e+04, 2.196652430214395e+04, 2.287961111042879e+04, 2.379269791871363e+04, 2.470578200579584e+04, 2.561886881408069e+04, 2.653195562236552e+04, 2.744503970944773e+04, 2.835812651773258e+04, 2.927121332601742e+04, 3.018430013430227e+04, 3.109738422138448e+04, 3.201047102966931e+04, 3.292355979107915e+04, 3.383664387816137e+04, 3.474973068644621e+04, 3.566281749473105e+04, 3.657590158181326e+04, 3.74889883900981e+04, 3.840207519838295e+04, 3.931515928546515e+04, 4.022824609375e+04, 4.114133290202187e+04, 4.205441971029373e+04, 4.296750651856561e+04, 4.38805878845133e+04, 4.479367469278517e+04, 4.570676150105055e+04, 4.66198483093289e+04, 4.753293511760076e+04, 4.844602192587263e+04, 4.935910329182033e+04, 5.02721901000922e+04, 5.118527690836407e+04, 5.209836371663593e+04, 5.30114505249078e+04, 5.392453733317967e+04, 5.483761869912737e+04, 5.575070550739924e+04, 5.66637923156711e+04, 5.757687912394945e+04, 5.848996593221483e+04, 5.94030527404867e+04, 6.031613410643439e+04, 6.122922091470627e+04, 6.214230772297813e+04, 6.305539453125e+04, 6.396848133952187e+04, 6.488156814779373e+04, 6.57946588623156e+04, 6.67077402282633e+04, 6.762082703653516e+04, 6.853391384480055e+04, 6.94470006530789e+04, 7.036008746135076e+04, 7.127317426962263e+04, 7.218625563557033e+04, 7.309934244384219e+04, 7.401242925211406e+04, 7.492551606038594e+04, 7.583860286865781e+04, 7.675168967692967e+04, 7.766477104287737e+04, 7.857785785114924e+04, 7.94909446594211e+04, 8.040403146769945e+04, 8.131711827596484e+04, 8.22302050842367e+04, 8.31432864501844e+04, 8.405637325845627e+04, 8.496946006672813e+04, 8.5882546875e+04] +hLiq=[-1.2552e+05, -1.217543983533326e+05, -1.179887967066652e+05, -1.142232028724954e+05, -1.104576012258269e+05, -1.06692000280558e+05, -1.029263979324957e+05, -9.916079698722456e+04, -9.539520245165515e+04, -9.162960290917575e+04, -8.78640005611149e+04, -8.409839821305404e+04, -8.03327958649932e+04, -7.656720132941371e+04, -7.280160178694595e+04, -6.903600224445958e+04, -6.527039709082426e+04, -6.150480145459136e+04, -5.773920191211546e+04, -5.397360066471151e+04, -5.02080011222356e+04, -4.644239596859447e+04, -4.267680033235576e+04, -3.891120078987985e+04, -3.514559954247591e+04, -3.138e+04, -2.761439679947105e+04, -2.38488048212877e+04, -2.008319966764423e+04, -1.631759646712346e+04, -1.255200448893661e+04, -8.786401288411158e+03, -5.020797111327279e+03, -1.255204889001338e+03, 2.510398555663213e+03, 6.276002244468296e+03, 1.004159422265805e+04, 1.380719839973786e+04, 1.757280257682232e+04, 2.133840577734195e+04, 2.510399775553462e+04, 2.886960095605772e+04, 3.263520415658667e+04, 3.640079808788454e+04, 4.016639933528849e+04, 4.393200448894243e+04, 4.769759842024031e+04, 5.146319966764424e+04, 5.522880482129818e+04, 5.899439484636468e+04, 6.276e+04, 6.652560515358181e+04, 7.029121030716362e+04, 7.405680764835718e+04, 7.782239035756595e+04, 8.158799551114776e+04, 8.53536006646935e+04, 8.911920581831134e+04, 9.288480315945833e+04, 9.665040831307739e+04, 1.004159910222955e+05, 1.041815961758214e+05, 1.079472013294405e+05, 1.117127986705595e+05, 1.154784038241786e+05, 1.192440089777045e+05, 1.230095916869226e+05, 1.267751968405417e+05, 1.305407941816887e+05, 1.343064071477879e+05, 1.380720044888988e+05, 1.418376018300179e+05, 1.456031923516428e+05, 1.493687896929109e+05, 1.53134402658881e+05, 1.569e+05, 1.60665597341119e+05, 1.644312103070891e+05, 1.681968076483572e+05, 1.719623981699821e+05, 1.757279955111012e+05, 1.794935928522121e+05, 1.832592058182834e+05, 1.870248031594583e+05, 1.907904161253725e+05, 1.945559910222023e+05, 1.983215883634332e+05, 2.020872013294405e+05, 2.058527986705595e+05, 2.096184116365668e+05, 2.133840089777977e+05, 2.171495838746275e+05, 2.209151968405417e+05, 2.246807941817166e+05, 2.284464071477879e+05, 2.322120044888988e+05, 2.359776018300179e+05, 2.397431923516428e+05, 2.435087896929109e+05, 2.47274402658881e+05, 2.5104e+05] +u=[-8.98635546875e+04, -8.895046872959094e+04, -8.803738277168188e+04, -8.712429681377289e+04, -8.621121085586377e+04, -8.529812506803019e+04, -8.438503894004565e+04, -8.347195315221213e+04, -8.255886702422785e+04, -8.164578157654432e+04, -8.073269544856013e+04, -7.981960932057595e+04, -7.890652319259176e+04, -7.799343706460758e+04, -7.708035161692405e+04, -7.616726616924052e+04, -7.525417936095568e+04, -7.434109391327215e+04, -7.342800846558863e+04, -7.251492165730378e+04, -7.160183620962026e+04, -7.068874940133542e+04, -6.977566395365189e+04, -6.886257850596837e+04, -6.794949169768352e+04, -6.703640625e+04, -6.612331944171515e+04, -6.521023535463295e+04, -6.42971485463481e+04, -6.338406173806326e+04, -6.247097765098105e+04, -6.155789084269621e+04, -6.064480403441137e+04, -5.973171994732915e+04, -5.881863313904432e+04, -5.790554633075948e+04, -5.699246224367726e+04, -5.607937152914242e+04, -5.516628472085758e+04, -5.425319791257274e+04, -5.334011382549052e+04, -5.242702701720568e+04, -5.151394020892085e+04, -5.060085612183863e+04, -4.968776931355379e+04, -4.877468250526895e+04, -4.786159841818674e+04, -4.69485116099019e+04, -4.603542480161705e+04, -4.512234071453485e+04, -4.420925390625e+04, -4.329616709797813e+04, -4.238308028970627e+04, -4.146999348143439e+04, -4.05569121154867e+04, -3.964382530721483e+04, -3.873073849894945e+04, -3.78176516906711e+04, -3.690456488239924e+04, -3.599147807412737e+04, -3.507839670817967e+04, -3.41653098999078e+04, -3.325222309163593e+04, -3.233913628336407e+04, -3.14260494750922e+04, -3.051296266682033e+04, -2.959988130087263e+04, -2.868679449260076e+04, -2.77737076843289e+04, -2.686062087605055e+04, -2.594753406778517e+04, -2.50344472595133e+04, -2.41213658935656e+04, -2.320827908529374e+04, -2.229519227702187e+04, -2.138210546875e+04, -2.046901866047813e+04, -1.955593185220626e+04, -1.86428450439344e+04, -1.77297636779867e+04, -1.681667686971483e+04, -1.590358908488695e+04, -1.49905022766086e+04, -1.407741546833674e+04, -1.316432866006487e+04, -1.225124729411717e+04, -1.13381604858453e+04, -1.042507367757343e+04, -9.511986869301567e+03, -8.598900061029699e+03, -7.68581276447658e+03, -6.772731398528882e+03, -5.859644590257014e+03, -4.946557781985146e+03, -4.033470729566175e+03, -3.120383921300795e+03, -2.207297113027618e+03, -1.294215625010916e+03, -3.81128755703892e+02, 5.319581136031321e+02, 1.445045043945312e+03] +s=[-9.436579132080078e+01, -9.06174849627911e+01, -8.688298018010235e+01, -8.316217016120366e+01, -7.945495572396118e+01, -7.576123837294547e+01, -7.208091686590032e+01, -6.841390239184302e+01, -6.476009303702217e+01, -6.111939369516686e+01, -5.74917150173316e+01, -5.387696053939838e+01, -5.027503870879652e+01, -4.668585797235738e+01, -4.310933706590324e+01, -3.954537413057849e+01, -3.599388758753395e+01, -3.245479265466164e+01, -2.892800010815871e+01, -2.541342079466027e+01, -2.191097935962766e+01, -1.842058334856491e+01, -1.494215828522776e+01, -1.147561980680117e+01, -8.020879803350738e+00, -4.577868938446045e+00, -1.146498275367541e+00, 2.273295791545592e+00, 5.681611132177331e+00, 9.078515020676663e+00, 1.246407296533537e+01, 1.583838096384742e+01, 1.920150233967811e+01, 2.255350436886741e+01, 2.589447665098934e+01, 2.922448165622525e+01, 3.254358580384502e+01, 3.585187372971587e+01, 3.914940800242631e+01, 4.2436261101429e+01, 4.571249194621337e+01, 4.897818109728759e+01, 5.223339888313558e+01, 5.547818905784894e+01, 5.871265106874879e+01, 6.193682863477939e+01, 6.515078467499094e+01, 6.835459938022372e+01, 7.154833563435329e+01, 7.473202974348419e+01, 7.790577697753906e+01, 8.106962886610559e+01, 8.422364644642244e+01, 8.736789075375499e+01, 9.050239654175407e+01, 9.362726983907238e+01, 9.674254533970408e+01, 9.984828407764391e+01, 1.029445470890459e+02, 1.060313877803579e+02, 1.091088488728605e+02, 1.121770204576365e+02, 1.152359375690568e+02, 1.182856612416226e+02, 1.213262448812595e+02, 1.243577495241059e+02, 1.273801953298892e+02, 1.303936869932927e+02, 1.333982522480692e+02, 1.363939521289777e+02, 1.393808171529689e+02, 1.423589236153068e+02, 1.453282996200268e+02, 1.48289026341904e+02, 1.512411318315174e+02, 1.541846771240234e+02, 1.57119707994334e+02, 1.600462702207081e+02, 1.629644095795128e+02, 1.658741697890001e+02, 1.68775631310786e+02, 1.716688072943928e+02, 1.745537587737832e+02, 1.774305315262452e+02, 1.802991713287667e+02, 1.831597069327534e+02, 1.860122029554003e+02, 1.8885671861587e+02, 1.916932691725514e+02, 1.945219156607098e+02, 1.973427038575128e+02, 2.001556475382796e+02, 2.029608412707958e+02, 2.057582835238256e+02, 2.085480353320175e+02, 2.113301424712066e+02, 2.141046507189106e+02, 2.168715588650113e+02, 2.196309609292965e+02, 2.223828861723894e+02, 2.251273651123047e+02] +g=[1.7518986328125e+04, 1.760222851744042e+04, 1.768210351910524e+04, 1.775862109874639e+04, 1.783179883448826e+04, 1.790164452614519e+04, 1.796817383678062e+04, 1.80313945294051e+04, 1.809132227598885e+04, 1.814796677708676e+04, 1.820133983599239e+04, 1.825145508099579e+04, 1.829832227767658e+04, 1.834195509800404e+04, 1.83823613257932e+04, 1.841955466609709e+04, 1.845354688647271e+04, 1.848434765097116e+04, 1.851196873115472e+04, 1.853642188037838e+04, 1.855771679090582e+04, 1.857586524504211e+04, 1.859087695469078e+04, 1.860276562055876e+04, 1.861153711308398e+04, 1.8617205078125e+04, 1.861978125068918e+04, 1.861927343936497e+04, 1.861569335994776e+04, 1.860904882105162e+04, 1.859935548175357e+04, 1.858661719082714e+04, 1.857084959679519e+04, 1.855205861997599e+04, 1.853025586760322e+04, 1.850545115601927e+04, 1.847765433835137e+04, 1.844687696836606e+04, 1.841312498305928e+04, 1.837641010119498e+04, 1.833674221184821e+04, 1.82941308435053e+04, 1.824858587546939e+04, 1.820011331675427e+04, 1.814872850295671e+04, 1.809443352696266e+04, 1.803724418931561e+04, 1.797716600825709e+04, 1.791420891498346e+04, 1.784838287636997e+04, 1.77796953125e+04, 1.770815422702699e+04, 1.763377133925877e+04, 1.755655446172329e+04, 1.747651384602705e+04, 1.739365439699048e+04, 1.730798634881692e+04, 1.721951946678029e+04, 1.712826156367578e+04, 1.703422240526282e+04, 1.693740843658034e+04, 1.68378302221516e+04, 1.673549223682201e+04, 1.663040815222908e+04, 1.652258187465076e+04, 1.64120231700054e+04, 1.629874053431749e+04, 1.61827414063408e+04, 1.606403426536656e+04, 1.594262692379378e+04, 1.581852817045359e+04, 1.569174386513746e+04, 1.556228455313687e+04, 1.543015650404187e+04, 1.529536731705409e+04, 1.51579248046875e+04, 1.501783677895782e+04, 1.48751110528959e+04, 1.47297554390157e+04, 1.458177864007669e+04, 1.443118572763583e+04, 1.427798441177491e+04, 1.412218348120041e+04, 1.396378977212785e+04, 1.380281109719467e+04, 1.363925429865612e+04, 1.34731262156732e+04, 1.330443465123841e+04, 1.313318644105177e+04, 1.295938842107873e+04, 1.278304938062858e+04, 1.260417527645377e+04, 1.24227717888029e+04, 1.223884778852118e+04, 1.20524091348775e+04, 1.18634626636015e+04, 1.167201618755588e+04, 1.147807770614593e+04, 1.128165076717097e+04, 1.108274335469635e+04, 1.088136328125e+04] +f=[-5.270174609375e+04, -5.287842187899406e+04, -5.30584648518883e+04, -5.324185938743271e+04, -5.342860157937382e+04, -5.361867186073912e+04, -5.38120586199513e+04, -5.40087539003489e+04, -5.420874222361545e+04, -5.441201555183312e+04, -5.461855856277777e+04, -5.482835938762056e+04, -5.504140630766738e+04, -5.525769151030646e+04, -5.547720311183928e+04, -5.569992564773354e+04, -5.59258477377359e+04, -5.615496480255303e+04, -5.638725764544901e+04, -5.66227227128417e+04, -5.68613436785095e+04, -5.71031134410006e+04, -5.734801565441809e+04, -5.75960467709936e+04, -5.784718763572369e+04, -5.81014375e+04, -5.835877759094114e+04, -5.861920284426968e+04, -5.88826991871922e+04, -5.914925803646866e+04, -5.94188707708844e+04, -5.969152337220511e+04, -5.996720722973307e+04, -6.024591369546419e+04, -6.052763271132365e+04, -6.081235563953093e+04, -6.110006599296713e+04, -6.139076157957344e+04, -6.168442982838088e+04, -6.198106292686152e+04, -6.228064435198241e+04, -6.258317198382482e+04, -6.288863712159044e+04, -6.319702321609248e+04, -6.350832429339069e+04, -6.382253553289937e+04, -6.413964035942226e+04, -6.445963675710178e+04, -6.478251206699642e+04, -6.510825359449971e+04, -6.543685546875e+04, -6.576831281772463e+04, -6.61026100158881e+04, -6.643974315699039e+04, -6.67797023931046e+04, -6.712247615258531e+04, -6.746806241733475e+04, -6.781644556289115e+04, -6.816761777637461e+04, -6.852157905764789e+04, -6.887830383442296e+04, -6.923780417163053e+04, -6.960005451423969e+04, -6.996505486232492e+04, -7.033279740344211e+04, -7.070327432466287e+04, -7.1076475580884e+04, -7.145238999583706e+04, -7.1831015353403e+04, -7.221233602879873e+04, -7.259635202219304e+04, -7.298305552064707e+04, -7.337242857037885e+04, -7.376446800026076e+04, -7.415917931005998e+04, -7.45565390625e+04, -7.495653944549062e+04, -7.535918045847303e+04, -7.576445428894725e+04, -7.617235068501341e+04, -7.658285888438758e+04, -7.69959764637506e+04, -7.741168779847452e+04, -7.783000070074319e+04, -7.82508995453267e+04, -7.867436617544889e+04, -7.910041345158136e+04, -7.952902323263112e+04, -7.996018770632171e+04, -8.039389906009723e+04, -8.083015729371554e+04, -8.126894415908583e+04, -8.171026488683691e+04, -8.215410905682834e+04, -8.26004610442775e+04, -8.30493286618518e+04, -8.350068847169759e+04, -8.395454557359187e+04, -8.44108819402753e+04, -8.48697104990035e+04, -8.53310078125e+04] +hIse=[-5.42605517578125e+03, -4.512969217872138e+03, -3.59988301582251e+03, -2.686797057913427e+03, -1.773710977934027e+03, -8.606250680301923e+02, 5.246112098951286e+01, 9.655469698581854e+02, 1.878633219912783e+03, 2.791718667596309e+03, 3.704804795580494e+03, 4.617891167705303e+03, 5.530977295689487e+03, 6.444063423673671e+03, 7.357148871357199e+03, 8.270234807320518e+03, 9.183321615606816e+03, 1.009640706329034e+04, 1.100949251097387e+04, 1.192257931925871e+04, 1.283566476694224e+04, 1.374875157522708e+04, 1.466183702291061e+04, 1.557492247059413e+04, 1.648801025544147e+04, 1.7401095703125e+04, 1.831418251140984e+04, 1.922726659849205e+04, 2.01403534067769e+04, 2.105344021506174e+04, 2.196652430214395e+04, 2.287961111042879e+04, 2.379269791871363e+04, 2.470578200579584e+04, 2.561886881408069e+04, 2.653195562236552e+04, 2.744503970944773e+04, 2.835812651773258e+04, 2.927121332601742e+04, 3.018430013430227e+04, 3.109738422138448e+04, 3.201047102966931e+04, 3.292355979107915e+04, 3.383664387816137e+04, 3.474973068644621e+04, 3.566281749473105e+04, 3.657590158181326e+04, 3.74889883900981e+04, 3.840207519838295e+04, 3.931515928546515e+04, 4.022824609375e+04, 4.114133290202187e+04, 4.205441971029373e+04, 4.296750651856561e+04, 4.38805878845133e+04, 4.479367469278517e+04, 4.570676150105055e+04, 4.66198483093289e+04, 4.753293511760076e+04, 4.844602192587263e+04, 4.935910329182033e+04, 5.02721901000922e+04, 5.118527690836407e+04, 5.209836371663593e+04, 5.30114505249078e+04, 5.392453733317967e+04, 5.483761869912737e+04, 5.575070550739924e+04, 5.66637923156711e+04, 5.757687912394945e+04, 5.848996593221483e+04, 5.94030527404867e+04, 6.031613410643439e+04, 6.122922091470627e+04, 6.214230772297813e+04, 6.305539453125e+04, 6.396848133952187e+04, 6.488156814779373e+04, 6.57946588623156e+04, 6.67077402282633e+04, 6.762082703653516e+04, 6.853391384480055e+04, 6.94470006530789e+04, 7.036008746135076e+04, 7.127317426962263e+04, 7.218625563557033e+04, 7.309934244384219e+04, 7.401242925211406e+04, 7.492551606038594e+04, 7.583860286865781e+04, 7.675168967692967e+04, 7.766477104287737e+04, 7.857785785114924e+04, 7.94909446594211e+04, 8.040403146769945e+04, 8.131711827596484e+04, 8.22302050842367e+04, 8.31432864501844e+04, 8.405637325845627e+04, 8.496946006672813e+04, 8.5882546875e+04] +beta=[0e+00, 0e+00] +kappa=[-9.86923259915784e-06, -9.86923259915784e-06] +ddpT=[1.184307893709047e-05, 1.184307893709047e-05] +ddTp=[0e+00, 0e+00] +dddX[1]=[0e+00, 0e+00] +cp=[1.014539978027344e+03, 1.014539978027344e+03] +cv=[7.257440795898438e+02, 7.257440795898438e+02] +lambda=[2.183416485786438e-02, 2.190585993390486e-02, 2.197747677884532e-02, 2.204901166739671e-02, 2.212047018749241e-02, 2.219184860055531e-02, 2.226314880909472e-02, 2.233437075998812e-02, 2.240551264365096e-02, 2.247657438062483e-02, 2.254755793944776e-02, 2.261846326713945e-02, 2.268929036369989e-02, 2.276003736648395e-02, 2.283070608552452e-02, 2.290129471090028e-02, 2.297180521027936e-02, 2.304223551087406e-02, 2.311258944309423e-02, 2.318286152368328e-02, 2.325305713112184e-02, 2.33231727493224e-02, 2.339320816933975e-02, 2.346316722097814e-02, 2.353304442038976e-02, 2.360284514725208e-02, 2.367256588427744e-02, 2.374220631999228e-02, 2.381177059477181e-02, 2.38812547756445e-02, 2.395065865591278e-02, 2.401998451190227e-02, 2.408923213662896e-02, 2.4158399461454e-02, 2.422748876128527e-02, 2.429649982986706e-02, 2.436543059923777e-02, 2.443428334292192e-02, 2.450305599270923e-02, 2.457175041124484e-02, 2.464036639417264e-02, 2.470890248781061e-02, 2.477736035018689e-02, 2.484573791503407e-02, 2.491403745252049e-02, 2.498225875875077e-02, 2.505039976814361e-02, 2.511846274948291e-02, 2.51864474995583e-02, 2.52543519535068e-02, 2.532217651605606e-02, 2.538992470998449e-02, 2.545759281001162e-02, 2.552518081619077e-02, 2.559269018894229e-02, 2.5660121733071e-02, 2.572747504596086e-02, 2.579474826494817e-02, 2.586194139004482e-02, 2.592905814652382e-02, 2.599609254718253e-02, 2.606305097900814e-02, 2.612992931695023e-02, 2.619672942364061e-02, 2.626344943643416e-02, 2.633009121796712e-02, 2.639665250915153e-02, 2.646313596602888e-02, 2.652954119166787e-02, 2.659586632341935e-02, 2.66621132239182e-02, 2.672828189315916e-02, 2.679437007482264e-02, 2.686038041942353e-02, 2.692631067012314e-02, 2.699216268956661e-02, 2.705793647775395e-02, 2.712363017205776e-02, 2.718924563509655e-02, 2.725478247652696e-02, 2.732023961493456e-02, 2.738561665944041e-02, 2.745091733532955e-02, 2.751613791731471e-02, 2.758127840544744e-02, 2.764634027475395e-02, 2.771132430083846e-02, 2.77762282330439e-02, 2.78410539339932e-02, 2.790580140368636e-02, 2.797046877950043e-02, 2.803505753931044e-02, 2.809956659047113e-02, 2.816399741037568e-02, 2.822834999902455e-02, 2.829262249377121e-02, 2.835681675728219e-02, 2.842093240761789e-02, 2.848496834645993e-02, 2.854892419142733e-02, 2.861280366778374e-02] +pMed=[1.01325e+05, 1.01325e+05] +TMed=[2.431499938964844e+02, 2.440500030718736e+02, 2.449499969884771e+02, 2.458500061638628e+02, 2.46750000080463e+02, 2.476499938294319e+02, 2.485500031724523e+02, 2.494499969214211e+02, 2.503500062644413e+02, 2.512499996781487e+02, 2.521499937623797e+02, 2.530500031053997e+02, 2.539499971896512e+02, 2.548500065326507e+02, 2.557499999463581e+02, 2.566499933600655e+02, 2.575499881148747e+02, 2.584500120460783e+02, 2.59350005459813e+02, 2.602500002145675e+02, 2.61149993628275e+02, 2.620499883831296e+02, 2.62950012314315e+02, 2.638500057280224e+02, 2.64750000482777e+02, 2.656499938964844e+02, 2.665499886513845e+02, 2.674500112413135e+02, 2.683500059962319e+02, 2.692500007509864e+02, 2.701499928236466e+02, 2.710499875784012e+02, 2.719500128507339e+02, 2.728500049233941e+02, 2.737499996781487e+02, 2.746499944329033e+02, 2.755499865055634e+02, 2.764500117778234e+02, 2.773500065326508e+02, 2.782500012874053e+02, 2.791499933600655e+02, 2.800499881148746e+02, 2.809500133871528e+02, 2.81850005459813e+02, 2.827500002145675e+02, 2.836499949693222e+02, 2.845499870419823e+02, 2.85450012314315e+02, 2.863500070690696e+02, 2.872499991417298e+02, 2.881499938964844e+02, 2.890499886513717e+02, 2.899500139235461e+02, 2.908500086782879e+02, 2.917499980689208e+02, 2.926499928236626e+02, 2.93549987578398e+02, 2.944500128507243e+02, 2.953500076054661e+02, 2.962500023602079e+02, 2.971499917508408e+02, 2.980499865055826e+02, 2.989500117778298e+02, 2.998500065326443e+02, 3.007500012873862e+02, 3.01649996042128e+02, 3.025499854327608e+02, 3.034500107048261e+02, 3.043500054598226e+02, 3.052500002145708e+02, 3.061499949693061e+02, 3.070499897243754e+02, 3.079500096318224e+02, 3.088500043870008e+02, 3.097499991417426e+02, 3.106499938964844e+02, 3.115499886513717e+02, 3.124500139235461e+02, 3.133500086782879e+02, 3.142499980689208e+02, 3.151499928236626e+02, 3.16049987578398e+02, 3.169500128507243e+02, 3.178500076054661e+02, 3.187500023602079e+02, 3.196499917508408e+02, 3.205499865055826e+02, 3.214500117778298e+02, 3.223500065326443e+02, 3.232500012873862e+02, 3.24149996042128e+02, 3.250499854327608e+02, 3.259500107048261e+02, 3.268500054598226e+02, 3.277500002145708e+02, 3.286499949693061e+02, 3.295499897243754e+02, 3.304500096318224e+02, 3.313500043870008e+02, 3.322499991417426e+02, 3.331499938964844e+02] +MM=[2.879012748599052e-02, 2.879012748599052e-02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Media_Examples_SteamDerivativeCheck.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Media_Examples_SteamDerivativeCheck.txt new file mode 100644 index 0000000000..248c475deb --- /dev/null +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Media_Examples_SteamDerivativeCheck.txt @@ -0,0 +1,15 @@ +last-generated=2021-06-08 +statistics-simulation= +{ + "linear": " ", + "nonlinear": " ", + "number of continuous time states": "3", + "numerical Jacobians": "0" +} +time=[0e+00, 1e+00] +der(hVapSym)=[0e+00, 1.676395498694539e+02, 6.70558197978998e+02, 1.508755929069794e+03, 2.682232788918425e+03, 4.190988647128018e+03, 6.035023711783002e+03, 8.214337821679364e+03, 1.072893114967755e+04, 1.357880166722119e+04, 1.676395458351659e+04, 2.028438498744929e+04, 2.414009483813646e+04, 2.833108412558999e+04, 3.285735128472022e+04, 3.771889545985821e+04, 4.291572458671714e+04, 4.844782711180459e+04, 5.431520664491256e+04, 6.051787652678851e+04, 6.705581832407213e+04, 7.39290437008123e+04, 8.113753994579714e+04, 8.86813171090409e+04, 9.656037933456671e+04, 1.047747109375e+05, 1.133243364703784e+05, 1.222092168861572e+05, 1.314294051348832e+05, 1.409848675165589e+05, 1.508755817994792e+05, 1.611015912799699e+05, 1.716628983229243e+05, 1.825594542854442e+05, 1.937913084352323e+05, 2.05358444514428e+05, 2.172608265317059e+05, 2.294985253506795e+05, 2.420715060911726e+05, 2.549797687530734e+05, 2.682232732763117e+05, 2.81802067428102e+05, 2.957161747594026e+05, 3.099655209620729e+05, 3.245501597751978e+05, 3.394700805257119e+05, 3.547252684081309e+05, 3.703157518825157e+05, 3.862415173023923e+05, 4.025025156143922e+05, 4.1909884375e+05, 4.360304538388467e+05, 4.532973458172404e+05, 4.708995196851811e+05, 4.888368674732902e+05, 5.071096030576666e+05, 5.257176205314569e+05, 5.446608886928922e+05, 5.639394700096855e+05, 5.835533019660258e+05, 6.035023271181642e+05, 6.237867207916853e+05, 6.444063651040083e+05, 6.653613850877663e+05, 6.866515932434064e+05, 7.082771145376994e+05, 7.302378170545374e+05, 7.525339000660111e+05, 7.751652337172554e+05, 7.98131880523708e+05, 8.214337780174339e+05, 8.450709886508717e+05, 8.690433060317389e+05, 8.933510783816122e+05, 9.179941013710327e+05, 9.429724375e+05, 9.682860243322903e+05, 9.939349243041276e+05, 1.019919074915512e+06, 1.046238318238042e+06, 1.072893093065862e+06, 1.099882993533111e+06, 1.127208269688422e+06, 1.15486892149769e+06, 1.182864698947996e+06, 1.21119568213381e+06, 1.239862083801073e+06, 1.268863736106989e+06, 1.298200639084637e+06, 1.327872917733125e+06, 1.357880322022053e+06, 1.388222920072567e+06, 1.418901073576963e+06, 1.449914352721949e+06, 1.481263007522203e+06, 1.512946913009238e+06, 1.54496606913679e+06, 1.577320407050514e+06, 1.610010062394725e+06, 1.643035093377887e+06, 1.676395375e+06] +der(hVapCod)=[0e+00, 1.676395498694539e+02, 6.70558197978998e+02, 1.508755929069794e+03, 2.682232788918425e+03, 4.190988647128018e+03, 6.035023711783002e+03, 8.214337821679364e+03, 1.072893114967755e+04, 1.357880166722119e+04, 1.676395458351659e+04, 2.028438498744929e+04, 2.414009483813646e+04, 2.833108412558999e+04, 3.285735128472022e+04, 3.771889545985821e+04, 4.291572458671714e+04, 4.844782711180459e+04, 5.431520664491256e+04, 6.051787652678851e+04, 6.705581832407213e+04, 7.39290437008123e+04, 8.113753994579714e+04, 8.86813171090409e+04, 9.656037933456671e+04, 1.047747109375e+05, 1.133243364703784e+05, 1.222092168861572e+05, 1.314294051348832e+05, 1.409848675165589e+05, 1.508755817994792e+05, 1.611015912799699e+05, 1.716628983229243e+05, 1.825594542854442e+05, 1.937913084352323e+05, 2.05358444514428e+05, 2.172608265317059e+05, 2.294985253506795e+05, 2.420715060911726e+05, 2.549797687530734e+05, 2.682232732763117e+05, 2.81802067428102e+05, 2.957161747594026e+05, 3.099655209620729e+05, 3.245501597751978e+05, 3.394700805257119e+05, 3.547252684081309e+05, 3.703157518825157e+05, 3.862415173023923e+05, 4.025025156143922e+05, 4.1909884375e+05, 4.360304538388467e+05, 4.532973458172404e+05, 4.708995196851811e+05, 4.888368674732902e+05, 5.071096030576666e+05, 5.257176205314569e+05, 5.446608886928922e+05, 5.639394700096855e+05, 5.835533019660258e+05, 6.035023271181642e+05, 6.237867207916853e+05, 6.444063651040083e+05, 6.653613850877663e+05, 6.866515932434064e+05, 7.082771145376994e+05, 7.302378170545374e+05, 7.525339000660111e+05, 7.751652337172554e+05, 7.98131880523708e+05, 8.214337780174339e+05, 8.450709886508717e+05, 8.690433060317389e+05, 8.933510783816122e+05, 9.179941013710327e+05, 9.429724375e+05, 9.682860243322903e+05, 9.939349243041276e+05, 1.019919074915512e+06, 1.046238318238042e+06, 1.072893093065862e+06, 1.099882993533111e+06, 1.127208269688422e+06, 1.15486892149769e+06, 1.182864698947996e+06, 1.21119568213381e+06, 1.239862083801073e+06, 1.268863736106989e+06, 1.298200639084637e+06, 1.327872917733125e+06, 1.357880322022053e+06, 1.388222920072567e+06, 1.418901073576963e+06, 1.449914352721949e+06, 1.481263007522203e+06, 1.512946913009238e+06, 1.54496606913679e+06, 1.577320407050514e+06, 1.610010062394725e+06, 1.643035093377887e+06, 1.676395375e+06] +der(cpSym)=[-0e+00, -2.097850843112202e-01, -8.390676176930032e-01, -1.887458173150796e+00, -3.353945170336036e+00, -5.236586418118923e+00, -7.532209260365725e+00, -1.023611155552265e+01, -1.334179175075864e+01, -1.684067976937118e+01, -2.072192322743623e+01, -2.497217204957283e+01, -2.95754331130824e+01, -3.451296097223763e+01, -3.976320234717898e+01, -4.530181548139581e+01, -5.110173247235549e+01, -5.713326154053602e+01, -6.336434867180291e+01, -6.976080476759358e+01, -7.62865733597904e+01, -8.29041791685661e+01, -8.957502063340527e+01, -9.625984676085338e+01, -1.029191472315288e+02, -1.095135040283203e+02, -1.160040268052929e+02, -1.223526162450926e+02, -1.285223076236931e+02, -1.344773608061652e+02, -1.40183465005647e+02, -1.456078020801677e+02, -1.50719012911348e+02, -1.554871155187516e+02, -1.598834823700394e+02, -1.638805869494654e+02, -1.674519604756668e+02, -1.705720353443277e+02, -1.732160045374453e+02, -1.753598353863946e+02, -1.769802085128066e+02, -1.780546267284966e+02, -1.785615083850021e+02, -1.784804537207851e+02, -1.777924191808639e+02, -1.764800700022283e+02, -1.745280627582105e+02, -1.719234615563226e+02, -1.686559561468773e+02, -1.647182809895667e+02, -1.601063690185547e+02, -1.548196509451709e+02, -1.488611481497953e+02, -1.422375592663645e+02, -1.349592904645351e+02, -1.270401785032306e+02, -1.184976980178813e+02, -1.093524636054758e+02, -9.96281036323749e+01, -8.935088621149704e+01, -7.85495028584662e+01, -6.725438807213708e+01, -5.549775883344964e+01, -4.331295946763592e+01, -3.073411636374365e+01, -1.779578891148775e+01, -4.53265553266464e+00, 9.021147815797054e+00, 2.283188016034245e+01, 3.6866817034637e+01, 5.109444991306008e+01, 6.548472649447999e+01, 8.000918987794275e+01, 9.464150491880056e+01, 1.093571102684634e+02, 1.241336517333984e+02, 1.389510334335143e+02, 1.537914406719364e+02, 1.686394315135344e+02, 1.834817644275432e+02, 1.983078436647637e+02, 2.131090662980625e+02, 2.27879160940021e+02, 2.426139619316882e+02, 2.573113788176667e+02, 2.71971156490248e+02, 2.865951023911812e+02, 3.011863333802625e+02, 3.157496712441488e+02, 3.30291219517455e+02, 3.448181803740114e+02, 3.593387680720815e+02, 3.738621888909213e+02, 3.883980303695877e+02, 4.029564548913487e+02, 4.175477469150825e+02, 4.321824045144951e+02, 4.468705938950437e+02, 4.616224388515226e+02, 4.764473430099385e+02, 4.913540954589844e+02] +der(cpCod)=[-0e+00, -2.097850843112202e-01, -8.390676176930032e-01, -1.887458173150796e+00, -3.353945170336036e+00, -5.236586418118923e+00, -7.532209260365725e+00, -1.023611155552265e+01, -1.334179175075864e+01, -1.684067976937118e+01, -2.072192322743623e+01, -2.497217204957283e+01, -2.95754331130824e+01, -3.451296097223763e+01, -3.976320234717898e+01, -4.530181548139581e+01, -5.110173247235549e+01, -5.713326154053602e+01, -6.336434867180291e+01, -6.976080476759358e+01, -7.62865733597904e+01, -8.29041791685661e+01, -8.957502063340527e+01, -9.625984676085338e+01, -1.029191472315288e+02, -1.095135040283203e+02, -1.160040268052929e+02, -1.223526162450926e+02, -1.285223076236931e+02, -1.344773608061652e+02, -1.40183465005647e+02, -1.456078020801677e+02, -1.50719012911348e+02, -1.554871155187516e+02, -1.598834823700394e+02, -1.638805869494654e+02, -1.674519604756668e+02, -1.705720353443277e+02, -1.732160045374453e+02, -1.753598353863946e+02, -1.769802085128066e+02, -1.780546267284966e+02, -1.785615083850021e+02, -1.784804537207851e+02, -1.777924191808639e+02, -1.764800700022283e+02, -1.745280627582105e+02, -1.719234615563226e+02, -1.686559561468773e+02, -1.647182809895667e+02, -1.601063690185547e+02, -1.548196509451709e+02, -1.488611481497953e+02, -1.422375592663645e+02, -1.349592904645351e+02, -1.270401785032306e+02, -1.184976980178813e+02, -1.093524636054758e+02, -9.96281036323749e+01, -8.935088621149704e+01, -7.85495028584662e+01, -6.725438807213708e+01, -5.549775883344964e+01, -4.331295946763592e+01, -3.073411636374365e+01, -1.779578891148775e+01, -4.53265553266464e+00, 9.021147815797054e+00, 2.283188016034245e+01, 3.6866817034637e+01, 5.109444991306008e+01, 6.548472649447999e+01, 8.000918987794275e+01, 9.464150491880056e+01, 1.093571102684634e+02, 1.241336517333984e+02, 1.389510334335143e+02, 1.537914406719364e+02, 1.686394315135344e+02, 1.834817644275432e+02, 1.983078436647637e+02, 2.131090662980625e+02, 2.27879160940021e+02, 2.426139619316882e+02, 2.573113788176667e+02, 2.71971156490248e+02, 2.865951023911812e+02, 3.011863333802625e+02, 3.157496712441488e+02, 3.30291219517455e+02, 3.448181803740114e+02, 3.593387680720815e+02, 3.738621888909213e+02, 3.883980303695877e+02, 4.029564548913487e+02, 4.175477469150825e+02, 4.321824045144951e+02, 4.468705938950437e+02, 4.616224388515226e+02, 4.764473430099385e+02, 4.913540954589844e+02] +der(cvSym)=[0e+00, -1.365275748152334e-01, -5.460548061086368e-01, -1.228284296468565e+00, -2.182443957037376e+00, -3.407050987163066e+00, -4.899683697042568e+00, -6.656754915065583e+00, -8.673305899413105e+00, -1.09428053967397e+01, -1.345698699209793e+01, -1.620569437052301e+01, -1.91767719950026e+01, -2.235600056510566e+01, -2.572705439069804e+01, -2.927153562957805e+01, -3.296904126870094e+01, -3.679726722093828e+01, -4.073219778185769e+01, -4.474833775834654e+01, -4.881893417662965e+01, -5.291630441612075e+01, -5.701213885335066e+01, -6.107784102395614e+01, -6.508484862053889e+01, -6.900494384765625e+01, -7.281055042747911e+01, -7.647494883353249e+01, -7.997252614201254e+01, -8.327884176597861e+01, -8.637073922063425e+01, -8.92263634786427e+01, -9.182509787266838e+01, -9.414742752554271e+01, -9.617491081765412e+01, -9.788989348409358e+01, -9.927541172537529e+01, -1.003150554192516e+02, -1.0099276755028e+02, -1.012928009985442e+02, -1.01199646147547e+02, -1.006980893302403e+02, -9.977322995216079e+01, -9.84106685216298e+01, -9.659664867148341e+01, -9.431834106186106e+01, -9.156404359708678e+01, -8.832350116536414e+01, -8.45881609538034e+01, -8.035145992132909e+01, -7.56090087890625e+01, -7.035883564502964e+01, -6.460152042326729e+01, -5.834025985388995e+01, -5.158096661790309e+01, -4.433207063927588e+01, -3.66046809949418e+01, -2.841230168499736e+01, -1.97706970397945e+01, -1.069767700305817e+01, -1.21291838736743e+00, 8.662525139502971e+00, 1.890616112462718e+01, 2.949456538415442e+01, 4.040361846511836e+01, 5.160877268734785e+01, 6.308528152248004e+01, 7.480871898820178e+01, 8.675482843214031e+01, 9.890001970642086e+01, 1.112215266435509e+02, 1.236975901209592e+02, 1.363075657118625e+02, 1.49032339542294e+02, 1.618540679394684e+02, 1.747565307617188e+02, 1.877251710913199e+02, 2.00747110459736e+02, 2.138112709568588e+02, 2.269082055158756e+02, 2.400305019251677e+02, 2.531722685936472e+02, 2.663293856368697e+02, 2.794993811222872e+02, 2.926814005567687e+02, 3.058760061267619e+02, 3.190854303132945e+02, 3.323128598998059e+02, 3.455629030541261e+02, 3.588411445109504e+02, 3.721540845315905e+02, 3.855089676125688e+02, 3.989138875040672e+02, 4.123771571003996e+02, 4.259075654923197e+02, 4.395139628121551e+02, 4.532052907257557e+02, 4.669901337888442e+02, 4.808771096620317e+02, 4.94873979528021e+02, 5.089879150390625e+02] +der(cvCod)=[0e+00, -1.365275748152334e-01, -5.460548061086368e-01, -1.228284296468565e+00, -2.182443957037376e+00, -3.407050987163066e+00, -4.899683697042568e+00, -6.656754915065583e+00, -8.673305899413105e+00, -1.09428053967397e+01, -1.345698699209793e+01, -1.620569437052301e+01, -1.91767719950026e+01, -2.235600056510566e+01, -2.572705439069804e+01, -2.927153562957805e+01, -3.296904126870094e+01, -3.679726722093828e+01, -4.073219778185769e+01, -4.474833775834654e+01, -4.881893417662965e+01, -5.291630441612075e+01, -5.701213885335066e+01, -6.107784102395614e+01, -6.508484862053889e+01, -6.900494384765625e+01, -7.281055042747911e+01, -7.647494883353249e+01, -7.997252614201254e+01, -8.327884176597861e+01, -8.637073922063425e+01, -8.92263634786427e+01, -9.182509787266838e+01, -9.414742752554271e+01, -9.617491081765412e+01, -9.788989348409358e+01, -9.927541172537529e+01, -1.003150554192516e+02, -1.0099276755028e+02, -1.012928009985442e+02, -1.01199646147547e+02, -1.006980893302403e+02, -9.977322995216079e+01, -9.84106685216298e+01, -9.659664867148341e+01, -9.431834106186106e+01, -9.156404359708678e+01, -8.832350116536414e+01, -8.45881609538034e+01, -8.035145992132909e+01, -7.56090087890625e+01, -7.035883564502964e+01, -6.460152042326729e+01, -5.834025985388995e+01, -5.158096661790309e+01, -4.433207063927588e+01, -3.66046809949418e+01, -2.841230168499736e+01, -1.97706970397945e+01, -1.069767700305817e+01, -1.21291838736743e+00, 8.662525139502971e+00, 1.890616112462718e+01, 2.949456538415442e+01, 4.040361846511836e+01, 5.160877268734785e+01, 6.308528152248004e+01, 7.480871898820178e+01, 8.675482843214031e+01, 9.890001970642086e+01, 1.112215266435509e+02, 1.236975901209592e+02, 1.363075657118625e+02, 1.49032339542294e+02, 1.618540679394684e+02, 1.747565307617188e+02, 1.877251710913199e+02, 2.00747110459736e+02, 2.138112709568588e+02, 2.269082055158756e+02, 2.400305019251677e+02, 2.531722685936472e+02, 2.663293856368697e+02, 2.794993811222872e+02, 2.926814005567687e+02, 3.058760061267619e+02, 3.190854303132945e+02, 3.323128598998059e+02, 3.455629030541261e+02, 3.588411445109504e+02, 3.721540845315905e+02, 3.855089676125688e+02, 3.989138875040672e+02, 4.123771571003996e+02, 4.259075654923197e+02, 4.395139628121551e+02, 4.532052907257557e+02, 4.669901337888442e+02, 4.808771096620317e+02, 4.94873979528021e+02, 5.089879150390625e+02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Media_Examples_SteamProperties.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Media_Examples_SteamProperties.txt new file mode 100644 index 0000000000..fc13f511d9 --- /dev/null +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Media_Examples_SteamProperties.txt @@ -0,0 +1,28 @@ +last-generated=2021-06-08 +statistics-simulation= +{ + "linear": " ", + "nonlinear": " ", + "numerical Jacobians": "0" +} +time=[0e+00, 1e+00] +p=[2e+05, 2e+05] +X[1]=[1e+00, 1e+00] +d=[1.201283812522888e+00, 1.19886219496117e+00, 1.196465730560639e+00, 1.194093227228281e+00, 1.191743373661897e+00, 1.189415097409473e+00, 1.187107443501596e+00, 1.184819340773835e+00, 1.182550072266147e+00, 1.180298686830296e+00, 1.178064585063967e+00, 1.17584705339624e+00, 1.17364537657111e+00, 1.171459077750514e+00, 1.169287562499406e+00, 1.167130352349116e+00, 1.164986967276919e+00, 1.162857056043918e+00, 1.160740019401399e+00, 1.158635735011843e+00, 1.156543613102242e+00, 1.154463528227597e+00, 1.15239512895802e+00, 1.150338054559795e+00, 1.148292063572905e+00, 1.146256923675537e+00, 1.144232509595672e+00, 1.142218472729776e+00, 1.140214562654463e+00, 1.138220666180292e+00, 1.136236669993475e+00, 1.134262323849327e+00, 1.132297395258522e+00, 1.130341770824496e+00, 1.128395438888971e+00, 1.126458047669064e+00, 1.124529602896638e+00, 1.122609973867268e+00, 1.120698927924083e+00, 1.118796465066231e+00, 1.116902352506313e+00, 1.11501669816454e+00, 1.113139150071083e+00, 1.111269713782943e+00, 1.109408378158407e+00, 1.10755491036375e+00, 1.105709315883712e+00, 1.103871464510818e+00, 1.102041361757376e+00, 1.10021877462361e+00, 1.098403692245483e+00, 1.096596120068541e+00, 1.094795819671903e+00, 1.093002910264859e+00, 1.09121716405027e+00, 1.089438678950778e+00, 1.087667227213023e+00, 1.085902808837396e+00, 1.08414530461436e+00, 1.082394714543759e+00, 1.080651048996502e+00, 1.078914167977147e+00, 1.077183962691933e+00, 1.075460433140009e+00, 1.073743460112935e+00, 1.072033162816877e+00, 1.070329432180396e+00, 1.068632009473257e+00, 1.066941024080685e+00, 1.065256476001532e+00, 1.063578246027395e+00, 1.061906214948952e+00, 1.060240392675984e+00, 1.05858075934788e+00, 1.056927324915906e+00, 1.055279850959778e+00, 1.053638456689922e+00, 1.052003022895913e+00, 1.05037354957775e+00, 1.048749927184813e+00, 1.047132255572389e+00, 1.045520306017385e+00, 1.043914197729057e+00, 1.042313811498291e+00, 1.04071914732323e+00, 1.039130095450041e+00, 1.037546636936118e+00, 1.035968781269035e+00, 1.034396528449646e+00, 1.032829759267808e+00, 1.031268354515936e+00, 1.029712442658552e+00, 1.028162005146824e+00, 1.026616812856058e+00, 1.025076984992831e+00, 1.023542402349451e+00, 1.022013064925032e+00, 1.02048898178752e+00, 1.018970134766229e+00, 1.017456294548172e+00, 1.015947699546814e+00] +eta=[1.218632223753957e-05, 1.220919239182172e-05, 1.223207436953541e-05, 1.225496726118622e-05, 1.227787288576347e-05, 1.230079032950205e-05, 1.232371960521256e-05, 1.23466606958102e-05, 1.236961452788368e-05, 1.239258107577038e-05, 1.241555946420202e-05, 1.243854967606912e-05, 1.24615535303619e-05, 1.248456829859707e-05, 1.250759669209448e-05, 1.253063690901055e-05, 1.255368989320017e-05, 1.257675466646505e-05, 1.259983308213745e-05, 1.262292335564291e-05, 1.264602541816997e-05, 1.266914024806274e-05, 1.26922677764306e-05, 1.271540712821983e-05, 1.27385592474279e-05, 1.276172406505793e-05, 1.278490074065222e-05, 1.280808917057723e-05, 1.283129040253551e-05, 1.285450345795093e-05, 1.28777282675892e-05, 1.290096587936862e-05, 1.292421531460518e-05, 1.294747650395671e-05, 1.297075049555727e-05, 1.299403540112027e-05, 1.301733297018506e-05, 1.304064152261952e-05, 1.30639628080015e-05, 1.308729500734808e-05, 1.311063987004358e-05, 1.313399571625783e-05, 1.315736338592651e-05, 1.318074189986038e-05, 1.320413321639835e-05, 1.322753453740407e-05, 1.32509485215565e-05, 1.327437348943097e-05, 1.329780937126408e-05, 1.332125700665489e-05, 1.334471562586259e-05, 1.336818606852277e-05, 1.339166651565069e-05, 1.341515878622274e-05, 1.343866183064491e-05, 1.346217592906487e-05, 1.348570094144819e-05, 1.350923686778886e-05, 1.353278370808422e-05, 1.355634146234527e-05, 1.357990908055842e-05, 1.360348866265437e-05, 1.362707824921806e-05, 1.365067784024732e-05, 1.367428925472505e-05, 1.369790976417798e-05, 1.372154104670042e-05, 1.374518338398825e-05, 1.376883572574708e-05, 1.379249807196622e-05, 1.381617133214205e-05, 1.383985459677711e-05, 1.38635477246292e-05, 1.388725099811951e-05, 1.39109642760819e-05, 1.393468755850336e-05, 1.395842084538388e-05, 1.398216413672347e-05, 1.400591652304043e-05, 1.402967968162677e-05, 1.405345207679898e-05, 1.40772344764301e-05, 1.410102597102591e-05, 1.412482747008821e-05, 1.41486389735944e-05, 1.417245943007157e-05, 1.419628912345987e-05, 1.422012882130723e-05, 1.424397761412113e-05, 1.426783550190156e-05, 1.429170339413021e-05, 1.431557932950881e-05, 1.433946541161849e-05, 1.436336058868928e-05, 1.438726486073111e-05, 1.441117731824444e-05, 1.443509978020616e-05, 1.445903028499147e-05, 1.448297002733843e-05, 1.450691886464975e-05, 1.453087679692544e-05] +h=[2.66529675e+06, 2.666538500027744e+06, 2.667780250055488e+06, 2.669022000083316e+06, 2.670263750111088e+06, 2.67150549990752e+06, 2.672747250166632e+06, 2.673989249962971e+06, 2.675231000221952e+06, 2.676472749555648e+06, 2.677714499814854e+06, 2.678956250073984e+06, 2.680198000332929e+06, 2.681439750592469e+06, 2.682681499926016e+06, 2.683923249260159e+06, 2.685165000444352e+06, 2.686406749778048e+06, 2.687648749111297e+06, 2.688890500295937e+06, 2.690132249629707e+06, 2.691374000813825e+06, 2.692615750147968e+06, 2.693857499482111e+06, 2.695099250666528e+06, 2.696341e+06, 2.697582751184938e+06, 2.698824498668286e+06, 2.700066499851883e+06, 2.701308251035777e+06, 2.702549998518827e+06, 2.703791749703765e+06, 2.705033500887809e+06, 2.706275248372349e+06, 2.707516999556095e+06, 2.708758750740586e+06, 2.710000498224381e+06, 2.711242249408127e+06, 2.712484250591873e+06, 2.713726001775619e+06, 2.714967749259414e+06, 2.716209500443905e+06, 2.717451251627651e+06, 2.718692999112191e+06, 2.719934750296235e+06, 2.721176501481173e+06, 2.722418248964223e+06, 2.723660000148117e+06, 2.724902001331714e+06, 2.726143748815062e+06, 2.7273855e+06, 2.728627251183728e+06, 2.729869002367456e+06, 2.731110753551185e+06, 2.732352497336612e+06, 2.73359424852034e+06, 2.734835999704059e+06, 2.73607775088869e+06, 2.737319502073611e+06, 2.738561503255253e+06, 2.739803247037699e+06, 2.74104499822262e+06, 2.74228674940754e+06, 2.743528500591864e+06, 2.744770251775592e+06, 2.746012002962301e+06, 2.747253746744747e+06, 2.748495497928475e+06, 2.749737249112204e+06, 2.750979250295941e+06, 2.75222100147966e+06, 2.753462752663388e+06, 2.754704496445239e+06, 2.755946247632544e+06, 2.757187998816272e+06, 2.75842975e+06, 2.75967150118492e+06, 2.760913252369841e+06, 2.762155003554761e+06, 2.763396997333929e+06, 2.76463874851885e+06, 2.765880499703761e+06, 2.767122250887796e+06, 2.768364002071525e+06, 2.769605753255253e+06, 2.77084749704068e+06, 2.772089248224408e+06, 2.773330999408136e+06, 2.77457275059246e+06, 2.775814751775592e+06, 2.77705650295932e+06, 2.778298246741469e+06, 2.779539997926389e+06, 2.78078174911131e+06, 2.782023500295941e+06, 2.78326525148115e+06, 2.784507002666071e+06, 2.785748746448815e+06, 2.786990497632544e+06, 2.788232248816272e+06, 2.78947425e+06] +u=[2.49880825e+06, 2.499713750020256e+06, 2.500621250040624e+06, 2.50153100006102e+06, 2.502442500081584e+06, 2.50335574993192e+06, 2.504270500122879e+06, 2.505186999972656e+06, 2.506104750164285e+06, 2.507023999670983e+06, 2.507944499862724e+06, 2.508866000054985e+06, 2.509788750247769e+06, 2.510712500441073e+06, 2.511637249944866e+06, 2.512562749448658e+06, 2.513489250331699e+06, 2.514416749834151e+06, 2.515344749335708e+06, 2.516273500221729e+06, 2.517203249722839e+06, 2.518133250610574e+06, 2.519064250111014e+06, 2.519995499611453e+06, 2.520927500500231e+06, 2.52186e+06, 2.522793250889299e+06, 2.523726748998197e+06, 2.524660749888688e+06, 2.525595250780223e+06, 2.526530248885395e+06, 2.527465749776781e+06, 2.528401500669657e+06, 2.529337748770657e+06, 2.530274249664724e+06, 2.531211250558048e+06, 2.532148498658898e+06, 2.533085999552966e+06, 2.53402400044763e+06, 2.534962501341102e+06, 2.535900999440462e+06, 2.536840000335723e+06, 2.537779251230983e+06, 2.538718749327661e+06, 2.539658500224113e+06, 2.540598501122055e+06, 2.541538999214561e+06, 2.542479500112206e+06, 2.54342050100985e+06, 2.544361499103548e+06, 2.545303e+06, 2.546244750897631e+06, 2.547186501797646e+06, 2.548128502696468e+06, 2.549070997977649e+06, 2.550013498876472e+06, 2.550956249775288e+06, 2.551899250675011e+06, 2.552842501575026e+06, 2.553786002475041e+06, 2.554729497749963e+06, 2.555673498648189e+06, 2.556617499549396e+06, 2.557561750450008e+06, 2.558506001351811e+06, 2.559450752250037e+06, 2.560395497521681e+06, 2.561340498422888e+06, 2.562285499324095e+06, 2.563231000225308e+06, 2.564176501126509e+06, 2.565122252027716e+06, 2.566067997292803e+06, 2.567013998195202e+06, 2.567960249097601e+06, 2.5689065e+06, 2.569853000903591e+06, 2.570799751807182e+06, 2.571746752707197e+06, 2.57269374796692e+06, 2.573640748870511e+06, 2.574588249774096e+06, 2.575535500677693e+06, 2.576483251581285e+06, 2.577431002484876e+06, 2.578378747741022e+06, 2.579326998642825e+06, 2.580274999548204e+06, 2.581223500451796e+06, 2.582171751357175e+06, 2.583120502261958e+06, 2.584069247511846e+06, 2.58501799841663e+06, 2.585966999321413e+06, 2.586916250226202e+06, 2.587865501130979e+06, 2.588814752038444e+06, 2.589764247285651e+06, 2.59071399818805e+06, 2.591663749094025e+06, 2.5926135e+06] +s=[7.03915625e+03, 7.04221679694343e+03, 7.045277343886752e+03, 7.048337402549041e+03, 7.051397949492472e+03, 7.054458495865649e+03, 7.057519043379005e+03, 7.060579101471332e+03, 7.063639648984942e+03, 7.066700194217616e+03, 7.069760253450412e+03, 7.072820800963731e+03, 7.075881348476758e+03, 7.078941895989931e+03, 7.082001952942665e+03, 7.085062498175193e+03, 7.088123047969011e+03, 7.091183104921744e+03, 7.094243650155729e+03, 7.09730419994809e+03, 7.100364745181347e+03, 7.103424806694788e+03, 7.106485351927461e+03, 7.109545897160136e+03, 7.112605958673576e+03, 7.11566650390625e+03, 7.118727053698613e+03, 7.121787594371598e+03, 7.12484765588533e+03, 7.127908205679729e+03, 7.130968746350387e+03, 7.13402880786441e+03, 7.137089357658518e+03, 7.140149898329176e+03, 7.143210448123866e+03, 7.146270509637307e+03, 7.149331050307965e+03, 7.152391600102655e+03, 7.155451661616095e+03, 7.158512211410785e+03, 7.161572752081443e+03, 7.164633301875261e+03, 7.167693363389574e+03, 7.170753904060232e+03, 7.17381445385434e+03, 7.176874515368363e+03, 7.179935056041058e+03, 7.18299560583342e+03, 7.186056155625783e+03, 7.189116208020137e+03, 7.1921767578125e+03, 7.195237307604819e+03, 7.198297369120543e+03, 7.201357918915191e+03, 7.204418450462044e+03, 7.207479000256692e+03, 7.210539061770649e+03, 7.213599611564735e+03, 7.216660161355308e+03, 7.219720222872779e+03, 7.222780754425454e+03, 7.22584130421428e+03, 7.228901854008926e+03, 7.231961915522324e+03, 7.23502246531697e+03, 7.238083015105796e+03, 7.241143058383624e+03, 7.244203608175942e+03, 7.247264157966515e+03, 7.250324707760601e+03, 7.253384769274558e+03, 7.256445319069206e+03, 7.259505850616059e+03, 7.262565912134113e+03, 7.265626461926431e+03, 7.26868701171875e+03, 7.271747561511069e+03, 7.274807623026793e+03, 7.277868172821441e+03, 7.280928704368294e+03, 7.283988765884602e+03, 7.287049315676899e+03, 7.290109865469239e+03, 7.293170415261558e+03, 7.296230476779029e+03, 7.299291008331704e+03, 7.30235155812053e+03, 7.305412107915176e+03, 7.308472169428574e+03, 7.311532719219728e+03, 7.314593269012046e+03, 7.317653312289874e+03, 7.320713862082192e+03, 7.323774411872765e+03, 7.326834961666851e+03, 7.329895023180808e+03, 7.332955572970217e+03, 7.336016104522309e+03, 7.339076166040363e+03, 7.342136715832681e+03, 7.345197265625e+03] +g=[3.86355078125e+04, 3.450996084523753e+04, 3.038074004968634e+04, 2.62478493320954e+04, 2.211128478621523e+04, 1.797104718358132e+04, 1.382713811583797e+04, 9.679556764276615e+03, 5.528301503399261e+03, 1.373376852650924e+03, -2.785223257055892e+03, -6.947495853690306e+03, -1.111344154766872e+04, -1.528305862990038e+04, -1.945634545429067e+04, -2.363330610321222e+04, -2.781394290214777e+04, -3.199824729840225e+04, -3.618622356598965e+04, -4.037787990614383e+04, -4.45732018742596e+04, -4.877220197327295e+04, -5.297487159500775e+04, -5.718120918186738e+04, -6.139122882209935e+04, -6.56049140625e+04, -6.982227746158768e+04, -7.404330015725816e+04, -7.826800730870209e+04, -8.249638634276885e+04, -8.672842464076632e+04, -9.096415523977783e+04, -9.520354990882371e+04, -9.944661162164819e+04, -1.036933500432273e+05, -1.079437681597522e+05, -1.121978454749037e+05, -1.164556073440504e+05, -1.207170410955544e+05, -1.24982146729416e+05, -1.292509115172239e+05, -1.335233609037163e+05, -1.377994899851082e+05, -1.420792625628176e+05, -1.463627353967706e+05, -1.5064988011323e+05, -1.549406682932617e+05, -1.592351567622077e+05, -1.635333171138092e+05, -1.678351365210795e+05, -1.72140640625e+05, -1.764498166115333e+05, -1.8076266448007e+05, -1.850791842308337e+05, -1.893993501019222e+05, -1.93723213593913e+05, -1.980507489678764e+05, -2.023819562244636e+05, -2.067168509880793e+05, -2.110554020089592e+05, -2.153975990190545e+05, -2.197435094060684e+05, -2.240930760503092e+05, -2.284463302017769e+05, -2.328032406106951e+05, -2.371638385263933e+05, -2.415280666756817e+05, -2.458960083328118e+05, -2.502676062472061e+05, -2.546428916686907e+05, -2.590218489725823e+05, -2.634044781586947e+05, -2.677907374465803e+05, -2.721807103741991e+05, -2.765743708085233e+05, -2.8097165625e+05, -2.853726604490762e+05, -2.897773209053047e+05, -2.941856376186857e+05, -2.985976155299508e+05, -3.030133072343913e+05, -3.074326551959901e+05, -3.118556906650648e+05, -3.162823823914096e+05, -3.207127303749069e+05, -3.251467706748249e+05, -3.295844623999777e+05, -3.340258416315378e+05, -3.384709083706228e+05, -3.429196313670094e+05, -3.473720418706229e+05, -3.518280820599389e+05, -3.562878363046119e+05, -3.607512780564372e+05, -3.652183448155957e+05, -3.69689130332104e+05, -3.741635721054984e+05, -3.786416434341752e+05, -3.831234289489644e+05, -3.87608870721055e+05, -3.92098e+05] +f=[-1.33581921875e+05, -1.379843907234507e+05, -1.42390515822069e+05, -1.468003284208442e+05, -1.512137972697946e+05, -1.556309527957892e+05, -1.600517818431662e+05, -1.644762654930966e+05, -1.68904438292214e+05, -1.733362796645383e+05, -1.777717962138322e+05, -1.822109846397279e+05, -1.866538449422395e+05, -1.911003771212877e+05, -1.955505778596574e+05, -2.000044504693856e+05, -2.044620015949332e+05, -2.089232179520025e+05, -2.133881061804396e+05, -2.178566729409152e+05, -2.223289205417213e+05, -2.268048310610816e+05, -2.312844067842707e+05, -2.357676543788463e+05, -2.402545961581578e+05, -2.447451875e+05, -2.49239473038173e+05, -2.537374014227041e+05, -2.582390307131868e+05, -2.627443162613435e+05, -2.672532758731131e+05, -2.717659051737658e+05, -2.762822219819436e+05, -2.808022128208773e+05, -2.853258733816813e+05, -2.898531901998055e+05, -2.943841810162199e+05, -2.989188415870263e+05, -3.034571896651344e+05, -3.079992252505439e+05, -3.125449035396706e+05, -3.170942516277623e+05, -3.216472872233791e+05, -3.262039967397815e+05, -3.307643760878198e+05, -3.353284429433832e+05, -3.398961524371545e+05, -3.444675630452138e+05, -3.490426299107795e+05, -3.536213393820315e+05, -3.5820378125e+05, -3.627898481256519e+05, -3.673796337581582e+05, -3.719730443979661e+05, -3.765701463826554e+05, -3.811709007638579e+05, -3.857753739018448e+05, -3.903835032974966e+05, -3.949952889504172e+05, -3.996107621100805e+05, -4.04229863983758e+05, -4.08852680885114e+05, -4.134791852932499e+05, -4.181093459588363e+05, -4.22743162881873e+05, -4.273806673116898e+05, -4.320218315743555e+05, -4.366666797456042e+05, -4.413151841741172e+05, -4.45967376109741e+05, -4.506232555528237e+05, -4.552827912527939e+05, -4.599459866544479e+05, -4.646128660958128e+05, -4.692834330444792e+05, -4.7395765625e+05, -4.786355669631202e+05, -4.833171339333929e+05, -4.88002388410371e+05, -4.926912711855163e+05, -4.973838694043362e+05, -5.020801238799398e+05, -5.067800658630979e+05, -5.114836641034868e+05, -5.161909498510282e+05, -5.209018637650872e+05, -5.256164932539115e+05, -5.303348102495157e+05, -5.350567522527194e+05, -5.397824442630756e+05, -5.445117612799881e+05, -5.492446750838177e+05, -5.539813670925347e+05, -5.587216841084041e+05, -5.634656886316087e+05, -5.682133806623453e+05, -5.729647601995977e+05, -5.777197363915959e+05, -5.824784284205781e+05, -5.872408079570109e+05, -5.920068125e+05] +hIse=[2.67176075e+06, 2.672964500026906e+06, 2.674168250053868e+06, 2.675372250080718e+06, 2.676576000107624e+06, 2.677779999910314e+06, 2.678983750161435e+06, 2.680187499964125e+06, 2.681391500215247e+06, 2.682595249569506e+06, 2.683799249820628e+06, 2.685003000071749e+06, 2.686206750323206e+06, 2.687410750573992e+06, 2.688614499928251e+06, 2.68981849928251e+06, 2.691022250430494e+06, 2.692225999784753e+06, 2.693429999139013e+06, 2.694633750286996e+06, 2.695837749641255e+06, 2.697041500789239e+06, 2.698245250143647e+06, 2.699449249497757e+06, 2.70065300064574e+06, 2.701857e+06, 2.703060751147983e+06, 2.704264498708519e+06, 2.705468499856502e+06, 2.706671751004485e+06, 2.707875498565021e+06, 2.709080749712706e+06, 2.710287750864564e+06, 2.711496498414967e+06, 2.712706999566824e+06, 2.713919250722705e+06, 2.715132998261932e+06, 2.716348749420048e+06, 2.717566250580548e+06, 2.718785251747008e+06, 2.720006499271335e+06, 2.721229250437646e+06, 2.722454001606342e+06, 2.723680499122025e+06, 2.724908750292956e+06, 2.726139001467762e+06, 2.727370998970481e+06, 2.728604750147223e+06, 2.72984050132635e+06, 2.73107799881983e+06, 2.7323175e+06, 2.73355875118492e+06, 2.734802002372225e+06, 2.736047003565489e+06, 2.737293997323201e+06, 2.738542748511399e+06, 2.739793499701675e+06, 2.741046000896737e+06, 2.742300502096558e+06, 2.743557003297869e+06, 2.744815246995977e+06, 2.746075248197586e+06, 2.747337249398003e+06, 2.748601250603189e+06, 2.749867001813143e+06, 2.751134753024884e+06, 2.752404496669349e+06, 2.753675997876322e+06, 2.754949499088064e+06, 2.756224750304285e+06, 2.757502001524363e+06, 2.758781252746535e+06, 2.760062246334376e+06, 2.761345247551483e+06, 2.762630248773357e+06, 2.763917e+06, 2.765205751230219e+06, 2.766496502462822e+06, 2.767789003701386e+06, 2.769083497221278e+06, 2.770379998453286e+06, 2.771678499690052e+06, 2.772978750930711e+06, 2.774281002175831e+06, 2.775585253422441e+06, 2.77689124688571e+06, 2.77819924812785e+06, 2.779509499374758e+06, 2.780821250626434e+06, 2.782135251881091e+06, 2.783451253138131e+06, 2.784768996541499e+06, 2.78608874779705e+06, 2.78741049905409e+06, 2.788734250315909e+06, 2.790060001582476e+06, 2.79138775285114e+06, 2.792717246194904e+06, 2.794048997458501e+06, 2.795382498728058e+06, 2.79671825e+06] +beta=[3.377925371751189e-03, 3.348738885787138e-03, 3.321269293062302e-03, 3.295376895181668e-03, 3.270934333775164e-03, 3.247824964866193e-03, 3.225942139465969e-03, 3.205188550660724e-03, 3.185474543206036e-03, 3.166718647872838e-03, 3.148845865210236e-03, 3.131787757331294e-03, 3.115481692763518e-03, 3.099870162278876e-03, 3.084900557009827e-03, 3.070524436473304e-03, 3.056697775432781e-03, 3.043379869796063e-03, 3.030533445745202e-03, 3.018124491802283e-03, 3.006121612890828e-03, 2.994496367840703e-03, 2.983221782913856e-03, 2.972274091885196e-03, 2.961630927370615e-03, 2.951271831989288e-03, 2.941177915612566e-03, 2.931331993296489e-03, 2.92171794103385e-03, 2.912321353044244e-03, 2.903128519343301e-03, 2.894127277923315e-03, 2.88530601496363e-03, 2.876654511400072e-03, 2.868162703921062e-03, 2.85982153817783e-03, 2.851623122122148e-03, 2.843559490611761e-03, 2.835623916215176e-03, 2.827809413993099e-03, 2.820110418739493e-03, 2.812521063825046e-03, 2.805036250080265e-03, 2.797651109883992e-03, 2.790361175451509e-03, 2.783162510817578e-03, 2.77605117889203e-03, 2.769023412006745e-03, 2.762076204690421e-03, 2.75520631764413e-03, 2.748410915955901e-03, 2.741686993426359e-03, 2.735032687385832e-03, 2.728444971035954e-03, 2.7219222532298e-03, 2.715461895090735e-03, 2.709062305867946e-03, 2.702721855749289e-03, 2.696438449248283e-03, 2.690210689374637e-03, 2.684036982944478e-03, 2.67791585938045e-03, 2.671846424319786e-03, 2.665826815117893e-03, 2.659856100448865e-03, 2.653933116152267e-03, 2.648056965783147e-03, 2.642226415142448e-03, 2.636440335242115e-03, 2.630698260419433e-03, 2.624998793692605e-03, 2.619341469391894e-03, 2.613725622372338e-03, 2.608150021530962e-03, 2.602614001978942e-03, 2.597117098048329e-03, 2.591658611253854e-03, 2.586237610266281e-03, 2.580853862248305e-03, 2.575506467639461e-03, 2.570194897038307e-03, 2.56491871676136e-03, 2.559677228322407e-03, 2.554469966056108e-03, 2.549296464293645e-03, 2.544156287912951e-03, 2.539048677148813e-03, 2.533973662733628e-03, 2.528930080521393e-03, 2.523918163339421e-03, 2.518937212690231e-03, 2.513986792327952e-03, 2.509066610406258e-03, 2.504176230864682e-03, 2.499315188042735e-03, 2.494483016279511e-03, 2.489679715569078e-03, 2.484904615798858e-03, 2.480157427209153e-03, 2.475437945520444e-03, 2.470745705068111e-03] +kappa=[5.224015694693662e-06, 5.218520072840038e-06, 5.213366421008816e-06, 5.208526999609914e-06, 5.203976797537357e-06, 5.199693078195688e-06, 5.195654466137968e-06, 5.191841864982157e-06, 5.188237991491632e-06, 5.184826023935322e-06, 5.181591405306728e-06, 5.178520950544174e-06, 5.175601926716348e-06, 5.172823419874291e-06, 5.170174063250961e-06, 5.167644759810358e-06, 5.165226865823339e-06, 5.162912203056325e-06, 5.160693037138672e-06, 5.15856299848985e-06, 5.156515727012557e-06, 5.154544850130752e-06, 5.15264628098204e-06, 5.150814104880963e-06, 5.149044681253817e-06, 5.14733301315573e-06, 5.145675912258694e-06, 5.144069747868505e-06, 5.142511327178054e-06, 5.140997926569664e-06, 5.139526367117783e-06, 5.138094366312849e-06, 5.136699654867667e-06, 5.13534041778323e-06, 5.134013918464804e-06, 5.132718342032646e-06, 5.13145278271086e-06, 5.130215413958046e-06, 5.129004420607962e-06, 5.127818893159402e-06, 5.126657016040087e-06, 5.125518327583847e-06, 5.124401467046527e-06, 5.123305528154314e-06, 5.122229140143692e-06, 5.121172306307104e-06, 5.120133210718555e-06, 5.11911184718645e-06, 5.11810730934292e-06, 5.117119145352232e-06, 5.116146439831937e-06, 5.11518828625941e-06, 5.114245139375483e-06, 5.113316089685453e-06, 5.112400233106865e-06, 5.111497558734456e-06, 5.110607617309019e-06, 5.109729954088065e-06, 5.108864114324261e-06, 5.108010098011636e-06, 5.107167455389003e-06, 5.106335721667841e-06, 5.105514447157433e-06, 5.104703631858864e-06, 5.10390327576888e-06, 5.103112469390611e-06, 5.102331672098706e-06, 5.101560419831048e-06, 5.100797807787993e-06, 5.100044745453395e-06, 5.099300323337449e-06, 5.098564996180982e-06, 5.09783785880652e-06, 5.097118902542217e-06, 5.096408131741072e-06, 5.09570554640959e-06, 5.09501069180042e-06, 5.094323567909226e-06, 5.093644174736007e-06, 5.092972061522665e-06, 5.09230767499251e-06, 5.091650109690511e-06, 5.090999365613404e-06, 5.090355897507467e-06, 5.089719250624804e-06, 5.089089428697717e-06, 5.088465969471424e-06, 5.087849331468405e-06, 5.087238605193958e-06, 5.086634700142784e-06, 5.086036706820182e-06, 5.085445083475959e-06, 5.084859368315026e-06, 5.084279564884291e-06, 5.083705673178329e-06, 5.083137238453596e-06, 5.082575170199903e-06, 5.082018107482503e-06, 5.081466953151137e-06, 5.080921255803161e-06, 5.080380560684716e-06] +ddhp=[-1.556861775497964e-06, -1.55811085280772e-06, -1.559048087107934e-06, -1.559683141780423e-06, -1.560026134954507e-06, -1.560087412148282e-06, -1.559878228314061e-06, -1.559409724921956e-06, -1.558693270299872e-06, -1.557740461440154e-06, -1.55656255192963e-06, -1.555171138443912e-06, -1.55357724861058e-06, -1.551792023752926e-06, -1.549826151980053e-06, -1.547690204863831e-06, -1.545394297010015e-06, -1.542948325997983e-06, -1.540361610820103e-06, -1.53764324228883e-06, -1.534801982367384e-06, -1.53184623543167e-06, -1.528783741005638e-06, -1.52562211175574e-06, -1.522368505039024e-06, -1.519029751761991e-06, -1.515612208431853e-06, -1.512122029589627e-06, -1.508564878776823e-06, -1.504946109569632e-06, -1.501270848935608e-06, -1.49754396350739e-06, -1.493769670570265e-06, -1.48995241536534e-06, -1.486096040500683e-06, -1.482204308955498e-06, -1.478280529400332e-06, -1.474327975372774e-06, -1.4703496143802e-06, -1.466348402288519e-06, -1.46232685223411e-06, -1.4582874413533e-06, -1.454232341658798e-06, -1.450163839038801e-06, -1.446083841918842e-06, -1.441994067712001e-06, -1.43789646132233e-06, -1.433792362569531e-06, -1.429683375272275e-06, -1.425570762252009e-06, -1.421455976924335e-06, -1.417340054726174e-06, -1.413224132529097e-06, -1.409109233517897e-06, -1.404996291695521e-06, -1.400886167525813e-06, -1.396779567654608e-06, -1.392677401578554e-06, -1.388580351420256e-06, -1.384488871929745e-06, -1.380403783243158e-06, -1.376325491409695e-06, -1.372254475548212e-06, -1.368191417779736e-06, -1.364136431794355e-06, -1.36009019971147e-06, -1.35605297294301e-06, -1.352025044419722e-06, -1.34800666560964e-06, -1.343998404946247e-06, -1.34000026243261e-06, -1.336012579128749e-06, -1.332035492393601e-06, -1.328069409562481e-06, -1.324114240690008e-06, -1.320170440521906e-06, -1.316238009061429e-06, -1.312317059994329e-06, -1.308407820692656e-06, -1.304510428038819e-06, -1.300624835572694e-06, -1.296751293934163e-06, -1.292889803125177e-06, -1.289040476832248e-06, -1.285203428740154e-06, -1.281378795295869e-06, -1.277566417218966e-06, -1.273766431031497e-06, -1.26997906410741e-06, -1.266204089073841e-06, -1.26244161961763e-06, -1.258691905419938e-06, -1.254954674411886e-06, -1.251230062666672e-06, -1.247518070184814e-06, -1.243818810654989e-06, -1.240132170387841e-06, -1.236458284931581e-06, -1.232797110485455e-06, -1.229148555303252e-06, -1.22551273307181e-06] +ddph=[5.90711215409101e-06, 5.89920773546038e-06, 5.891240106945131e-06, 5.883210178040271e-06, 5.87512113197715e-06, 5.866974334520875e-06, 5.858772509587316e-06, 5.850517937025076e-06, 5.84221379391426e-06, 5.833862818045476e-06, 5.825467270713811e-06, 5.81703034135492e-06, 5.808554303706979e-06, 5.800042795750491e-06, 5.791497642859102e-06, 5.782922476670744e-06, 5.774319103339247e-06, 5.765690276983407e-06, 5.757039168030141e-06, 5.748367582531231e-06, 5.73967827481201e-06, 5.730973037970103e-06, 5.722254626431267e-06, 5.71352484622045e-06, 5.704785503296191e-06, 5.696038897440303e-06, 5.687286366829452e-06, 5.678530224333233e-06, 5.669771782002483e-06, 5.661012884924383e-06, 5.652254468695747e-06, 5.643498754848019e-06, 5.63474622424042e-06, 5.625998721923811e-06, 5.617257105255614e-06, 5.608522309812047e-06, 5.599795725831567e-06, 5.591078665536853e-06, 5.582371154958191e-06, 5.573674558337635e-06, 5.564989811034831e-06, 5.556317316034171e-06, 5.547658008732708e-06, 5.539012369622392e-06, 5.530381256666442e-06, 5.521764695658789e-06, 5.513164076442698e-06, 5.504579347758551e-06, 5.496010990013188e-06, 5.487459483410705e-06, 5.478925231727771e-06, 5.470408715228506e-06, 5.461910388657971e-06, 5.453429797268813e-06, 5.444968355681856e-06, 5.436525508278914e-06, 5.42810176030434e-06, 5.419697111756331e-06, 5.411312017384042e-06, 5.402946931928261e-06, 5.394601905073335e-06, 5.386276382598049e-06, 5.377971323787163e-06, 5.369686728648266e-06, 5.361422597178105e-06, 5.35317892938427e-06, 5.344955774206276e-06, 5.336753488369873e-06, 5.328572120950641e-06, 5.320411671949607e-06, 5.312272141369113e-06, 5.304153529210611e-06, 5.29605588367155e-06, 5.287979562961388e-06, 5.279924160674901e-06, 5.271890131552937e-06, 5.263877020854648e-06, 5.255885283320883e-06, 5.24791491895164e-06, 5.239965520320397e-06, 5.23203744740383e-06, 5.224130292909369e-06, 5.216244966329922e-06, 5.208380103425229e-06, 5.200536613689396e-06, 5.192714543669144e-06, 5.184913800126832e-06, 5.177133520259763e-06, 5.169374613560467e-06, 5.161637080025694e-06, 5.153920010167247e-06, 5.146224359275209e-06, 5.138549580868896e-06, 5.130896175625478e-06, 5.123263234056163e-06, 5.115651210905755e-06, 5.108059651429992e-06, 5.100489510176888e-06, 5.09293978740645e-06, 5.085410983051014e-06, 5.077902642369736e-06] +cp=[2.621486572265625e+03, 2.588361327417886e+03, 2.557665526032768e+03, 2.529203611457206e+03, 2.502795896180062e+03, 2.478277589663866e+03, 2.455497555670234e+03, 2.434317139284948e+03, 2.41460863920267e+03, 2.39625562161334e+03, 2.379150393103004e+03, 2.363194823306419e+03, 2.348298580149335e+03, 2.33437841159386e+03, 2.321358155052482e+03, 2.309167731687412e+03, 2.297743160131745e+03, 2.287025148352619e+03, 2.276959479677826e+03, 2.267496091575075e+03, 2.258589602200338e+03, 2.250197260313853e+03, 2.242281004947845e+03, 2.2348049346899e+03, 2.227736324456615e+03, 2.221044921875e+03, 2.214703363281454e+03, 2.20868579733871e+03, 2.202969238949036e+03, 2.197531733876685e+03, 2.19235352168004e+03, 2.187416505061379e+03, 2.182703610000964e+03, 2.178199468691589e+03, 2.173889649951915e+03, 2.169760983929247e+03, 2.165801519244083e+03, 2.162000245924104e+03, 2.158346189704262e+03, 2.154830561488877e+03, 2.15144409378539e+03, 2.148178709794595e+03, 2.145027339701811e+03, 2.141982424023731e+03, 2.139038329389821e+03, 2.136188473230118e+03, 2.133427736650624e+03, 2.130750976249198e+03, 2.128153805855231e+03, 2.12563135003461e+03, 2.12318017578125e+03, 2.120796140341824e+03, 2.118476069862562e+03, 2.116216546367729e+03, 2.114014653112951e+03, 2.111867678316151e+03, 2.10977343799448e+03, 2.107728758324137e+03, 2.105732174448317e+03, 2.103781244951444e+03, 2.101874027942697e+03, 2.100008791707994e+03, 2.098184082893873e+03, 2.096397948378245e+03, 2.094649411591627e+03, 2.092936519406688e+03, 2.09125854928854e+03, 2.089614016393619e+03, 2.088001710128136e+03, 2.086420653924341e+03, 2.08487011535981e+03, 2.083348873726147e+03, 2.081856205408157e+03, 2.080390871915919e+03, 2.078952638080786e+03, 2.07754052734375e+03, 2.076154051425889e+03, 2.074792233757718e+03, 2.073454341917363e+03, 2.072140139518782e+03, 2.070849122621675e+03, 2.06958032256598e+03, 2.068333495211046e+03, 2.067108152273902e+03, 2.065903805466014e+03, 2.064719973505777e+03, 2.063556153997401e+03, 2.062412109916904e+03, 2.061287597124823e+03, 2.060181639058658e+03, 2.059094479854961e+03, 2.058025393410189e+03, 2.05697436697621e+03, 2.055940674562402e+03, 2.054924560306765e+03, 2.05392504764944e+03, 2.052942380724918e+03, 2.051976076963777e+03, 2.051025880706e+03, 2.050091553619116e+03, 2.049172607421875e+03] +cv=[1.943012329101562e+03, 1.918434691858043e+03, 1.895651000003394e+03, 1.874521605091195e+03, 1.854917845004071e+03, 1.836720826511169e+03, 1.819821164824107e+03, 1.804117798305983e+03, 1.789517697696135e+03, 1.775935063312708e+03, 1.763291017455809e+03, 1.751512694639621e+03, 1.740532956160563e+03, 1.730290278517709e+03, 1.720727661687348e+03, 1.711792973932654e+03, 1.703437741269829e+03, 1.695617799213401e+03, 1.688292241432781e+03, 1.681423460338093e+03, 1.674976930584129e+03, 1.668920650471184e+03, 1.663225463212644e+03, 1.65786413792588e+03, 1.652812009102685e+03, 1.648046142578125e+03, 1.643545283936904e+03, 1.639290287667134e+03, 1.6352630619931e+03, 1.631447140470779e+03, 1.627827518874305e+03, 1.624390137521723e+03, 1.621122068044152e+03, 1.618011478609543e+03, 1.61504748639144e+03, 1.612219846993906e+03, 1.609519412973364e+03, 1.606937623279574e+03, 1.604466429515628e+03, 1.602098629509513e+03, 1.599827393909986e+03, 1.59764672775427e+03, 1.595550656494501e+03, 1.593534059037743e+03, 1.591591918492458e+03, 1.589719724378262e+03, 1.587913331564309e+03, 1.586168945108774e+03, 1.584482908382957e+03, 1.58285180817614e+03, 1.581272827148438e+03, 1.579742918489991e+03, 1.578259518706752e+03, 1.576820308454054e+03, 1.575422854526238e+03, 1.574065187146831e+03, 1.572745239568937e+03, 1.571461302807279e+03, 1.570211667869362e+03, 1.568994747836021e+03, 1.567809206899849e+03, 1.566653566089315e+03, 1.565526611860134e+03, 1.564427245576875e+03, 1.56335412446348e+03, 1.562306516092545e+03, 1.561283327854048e+03, 1.560283693058446e+03, 1.559306641317368e+03, 1.558351684345628e+03, 1.557417723511452e+03, 1.556504392596897e+03, 1.555610842377487e+03, 1.554736573918695e+03, 1.553880982253803e+03, 1.55304345703125e+03, 1.552223509970367e+03, 1.551420774854978e+03, 1.550634641333521e+03, 1.549864747732122e+03, 1.549110718664727e+03, 1.548372070487125e+03, 1.547648559059112e+03, 1.546939696097272e+03, 1.546245359528957e+03, 1.545564943015665e+03, 1.544898438445568e+03, 1.54424523956689e+03, 1.543605346378468e+03, 1.542978392669364e+03, 1.542364134295752e+03, 1.541762330667031e+03, 1.541172730468022e+03, 1.540595093182922e+03, 1.54002917467139e+03, 1.539474852862983e+03, 1.538931883614443e+03, 1.53840002592278e+03, 1.537879273445795e+03, 1.537369141107533e+03, 1.536869750976562e+03] +lambda=[2.596278861165047e-02, 2.598454430748892e-02, 2.600697428090096e-02, 2.603005990543383e-02, 2.605378441728079e-02, 2.607813291068403e-02, 2.610308677297563e-02, 2.612863294703427e-02, 2.615475655075171e-02, 2.618144265345126e-02, 2.620867825635443e-02, 2.623645030129484e-02, 2.626474761240159e-02, 2.62935571511331e-02, 2.632286771956061e-02, 2.635266816318719e-02, 2.638294735153555e-02, 2.641369401855543e-02, 2.64448988958224e-02, 2.647655271754655e-02, 2.650864421359591e-02, 2.654116602900653e-02, 2.657410689093975e-02, 2.66074612596853e-02, 2.664121800994508e-02, 2.667536959052086e-02, 2.670990865267868e-02, 2.674482759050586e-02, 2.678011729890862e-02, 2.681577208650781e-02, 2.6851782532162e-02, 2.688814512515105e-02, 2.692485044556253e-02, 2.696189279449444e-02, 2.699926494210805e-02, 2.703696119063266e-02, 2.707497583834517e-02, 2.711330166116003e-02, 2.715193482103736e-02, 2.719086786738322e-02, 2.723009509483081e-02, 2.726961301196226e-02, 2.730941405173482e-02, 2.734949436888995e-02, 2.738984861445946e-02, 2.743047294411961e-02, 2.747135978497124e-02, 2.75125075180893e-02, 2.755391043412683e-02, 2.759556468319787e-02, 2.763746306300163e-02, 2.76796054498256e-02, 2.772198439304537e-02, 2.776459802998913e-02, 2.780744237926026e-02, 2.785051050107866e-02, 2.789380214074098e-02, 2.793731171033934e-02, 2.79810354845492e-02, 2.802497160069022e-02, 2.806911606972751e-02, 2.811346382998466e-02, 2.815801275628652e-02, 2.820276098602345e-02, 2.82477029312467e-02, 2.829283672927114e-02, 2.83381583841298e-02, 2.838366657339404e-02, 2.842935730223817e-02, 2.847522870802402e-02, 2.852127706545145e-02, 2.856749864923778e-02, 2.861389318226462e-02, 2.866045749234098e-02, 2.870718757815536e-02, 2.875408343970776e-02, 2.880113948908049e-02, 2.884835572623803e-02, 2.889572842589009e-02, 2.894325730423736e-02, 2.899093920260894e-02, 2.903877011289854e-02, 2.908675003509384e-02, 2.913487710653092e-02, 2.918314760193537e-02, 2.923155936964701e-02, 2.92801129867722e-02, 2.932880443990488e-02, 2.937763186641323e-02, 2.942659526628392e-02, 2.947569091420889e-02, 2.952491851639035e-02, 2.95742749343298e-02, 2.962375987503323e-02, 2.967336961321514e-02, 2.972310414888334e-02, 2.977296348198562e-02, 2.982294172638753e-02, 2.987304134043873e-02, 2.992325830136525e-02, 2.997359447181225e-02] +pMed=[2e+05, 2e+05] +TMed=[3.731499938964844e+02, 3.737500000134105e+02, 3.743500061303366e+02, 3.749500122472627e+02, 3.755499878466244e+02, 3.761499938517827e+02, 3.76750000080463e+02, 3.773500060856349e+02, 3.77950012314315e+02, 3.785499875784012e+02, 3.791499938070812e+02, 3.797500000357613e+02, 3.803500062644413e+02, 3.809500124931213e+02, 3.815499877572075e+02, 3.821499935388718e+02, 3.827500002145675e+02, 3.833500059962319e+02, 3.83950011777787e+02, 3.845499879360502e+02, 3.851499937176781e+02, 3.857500003933739e+02, 3.863500061750381e+02, 3.869500119566388e+02, 3.87549988114902e+02, 3.881499938964844e+02, 3.887500005721802e+02, 3.89350005459813e+02, 3.899500121354906e+02, 3.905499882937537e+02, 3.911499931812592e+02, 3.91749999856955e+02, 3.923500065326508e+02, 3.929500114200835e+02, 3.935499875784012e+02, 3.94149994254097e+02, 3.947499991417298e+02, 3.953500058174255e+02, 3.959500124931213e+02, 3.965499886514572e+02, 3.971499935388718e+02, 3.977500002145675e+02, 3.983500068902633e+02, 3.98950011777787e+02, 3.995499879360502e+02, 4.001499946117096e+02, 4.007499994993424e+02, 4.013500061750381e+02, 4.019500128507339e+02, 4.025499872207886e+02, 4.031499938964844e+02, 4.037500005721716e+02, 4.043500072478589e+02, 4.049500139235461e+02, 4.055499865055826e+02, 4.061499931812698e+02, 4.067499998569529e+02, 4.073500065326443e+02, 4.079500132083316e+02, 4.085499893668409e+02, 4.091499924660553e+02, 4.097499991417426e+02, 4.103500058174298e+02, 4.109500124931171e+02, 4.115499886514444e+02, 4.121499953269134e+02, 4.127499984265281e+02, 4.133500051022153e+02, 4.139500117777934e+02, 4.145499879360523e+02, 4.151499946116989e+02, 4.157500012873862e+02, 4.163500043870008e+02, 4.16950011062397e+02, 4.175499872207971e+02, 4.181499938964844e+02, 4.187500005721716e+02, 4.193500072478589e+02, 4.199500139235461e+02, 4.205499865055826e+02, 4.211499931812698e+02, 4.217499998569529e+02, 4.223500065326443e+02, 4.229500132083316e+02, 4.235499893668409e+02, 4.241499924660553e+02, 4.247499991417426e+02, 4.253500058174298e+02, 4.259500124931171e+02, 4.265499886514444e+02, 4.271499953269134e+02, 4.277499984265281e+02, 4.283500051022153e+02, 4.289500117777934e+02, 4.295499879360523e+02, 4.301499946116989e+02, 4.307500012873862e+02, 4.313500043870008e+02, 4.31950011062397e+02, 4.325499872207971e+02, 4.331499938964844e+02] +MM=[1.801528036594391e-02, 1.801528036594391e-02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Media_Examples_SteamSaturationConsistencyCheck.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Media_Examples_SteamSaturationConsistencyCheck.txt new file mode 100644 index 0000000000..b23f5eb283 --- /dev/null +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Media_Examples_SteamSaturationConsistencyCheck.txt @@ -0,0 +1,20 @@ +last-generated=2021-06-08 +statistics-simulation= +{ + "linear": " ", + "nonlinear": " ", + "numerical Jacobians": "0" +} +time=[0e+00, 1e+00] +TSat0=[3.731499938964844e+02, 3.739488525569204e+02, 3.747477112173565e+02, 3.755465698777925e+02, 3.763454285382286e+02, 3.771442870498599e+02, 3.779431458591007e+02, 3.787420348882987e+02, 3.795408936975234e+02, 3.803397519115393e+02, 3.811386107207911e+02, 3.819374695300338e+02, 3.827363283392538e+02, 3.835351871484737e+02, 3.843340453625352e+02, 3.851329035765239e+02, 3.859317629809842e+02, 3.867306211950548e+02, 3.875294794091253e+02, 3.883283388134947e+02, 3.891271970275653e+02, 3.899260564320346e+02, 3.907249146460234e+02, 3.915237728600757e+02, 3.923226322645269e+02, 3.931214904785156e+02, 3.939203498830305e+02, 3.947192069066568e+02, 3.955180663110261e+02, 3.963169257155228e+02, 3.971158132565635e+02, 3.979146726610783e+02, 3.987135320654841e+02, 3.995123890890557e+02, 4.003112484935706e+02, 4.011101078979945e+02, 4.01908964921548e+02, 4.027078243260629e+02, 4.03506683730505e+02, 4.043055431348743e+02, 4.051044001586461e+02, 4.059032595630155e+02, 4.067021189673848e+02, 4.075009759911566e+02, 4.082998353955623e+02, 4.090986948000772e+02, 4.098975518236671e+02, 4.106964112280546e+02, 4.114952706325694e+02, 4.122941276561775e+02, 4.130929870605469e+02, 4.138918464650504e+02, 4.14690736386841e+02, 4.15489595791199e+02, 4.162884504341054e+02, 4.170873098386089e+02, 4.178861692431067e+02, 4.186850286475068e+02, 4.194838880518648e+02, 4.202827474562228e+02, 4.210816020990928e+02, 4.218804615038146e+02, 4.226793209081725e+02, 4.234781803125306e+02, 4.242770397168886e+02, 4.250758991216103e+02, 4.258747537644804e+02, 4.266736131688384e+02, 4.274724725731963e+02, 4.282713319775964e+02, 4.290701913820942e+02, 4.298690507865977e+02, 4.306679054295042e+02, 4.314667648338622e+02, 4.322656242382201e+02, 4.330645141601562e+02, 4.338633735645142e+02, 4.346622329688722e+02, 4.354610923732302e+02, 4.362599470161367e+02, 4.370588064206402e+02, 4.37857665825138e+02, 4.38656525229538e+02, 4.39455384633896e+02, 4.40254244038254e+02, 4.410530986814878e+02, 4.418519580858458e+02, 4.426508174902038e+02, 4.434496768946346e+02, 4.442485362991381e+02, 4.450473957036416e+02, 4.458462503465116e+02, 4.466451097508696e+02, 4.474439691552276e+02, 4.482428285596276e+02, 4.490416879641255e+02, 4.49840547368629e+02, 4.50639432528677e+02, 4.514382919331805e+02, 4.52237151337684e+02, 4.530360107421875e+02] +TSat=[3.731499938964844e+02, 3.739488525569204e+02, 3.747477112173565e+02, 3.755465698777925e+02, 3.763454285382286e+02, 3.771442870498599e+02, 3.779431458591007e+02, 3.787420348882987e+02, 3.795408936975234e+02, 3.803397519115393e+02, 3.811386107207911e+02, 3.819374695300338e+02, 3.827363283392538e+02, 3.835351871484737e+02, 3.843340453625352e+02, 3.851329035765239e+02, 3.859317629809842e+02, 3.867306211950548e+02, 3.875294794091253e+02, 3.883283388134947e+02, 3.891271970275653e+02, 3.899260564320346e+02, 3.907249146460234e+02, 3.915237728600757e+02, 3.923226322645269e+02, 3.931214904785156e+02, 3.939203498830305e+02, 3.947192069066568e+02, 3.955180663110261e+02, 3.963169257155228e+02, 3.971158132565635e+02, 3.979146726610783e+02, 3.987135320654841e+02, 3.995123890890557e+02, 4.003112484935706e+02, 4.011101078979945e+02, 4.01908964921548e+02, 4.027078243260629e+02, 4.03506683730505e+02, 4.043055431348743e+02, 4.051044001586461e+02, 4.059032595630155e+02, 4.067021189673848e+02, 4.075009759911566e+02, 4.082998353955623e+02, 4.090986948000772e+02, 4.098975518236671e+02, 4.106964112280546e+02, 4.114952706325694e+02, 4.122941276561775e+02, 4.130929870605469e+02, 4.138918464650504e+02, 4.14690736386841e+02, 4.15489595791199e+02, 4.162884504341054e+02, 4.170873098386089e+02, 4.178861692431067e+02, 4.186850286475068e+02, 4.194838880518648e+02, 4.202827474562228e+02, 4.210816020990928e+02, 4.218804615038146e+02, 4.226793209081725e+02, 4.234781803125306e+02, 4.242770397168886e+02, 4.250758991216103e+02, 4.258747537644804e+02, 4.266736131688384e+02, 4.274724725731963e+02, 4.282713319775964e+02, 4.290701913820942e+02, 4.298690507865977e+02, 4.306679054295042e+02, 4.314667648338622e+02, 4.322656242382201e+02, 4.330645141601562e+02, 4.338633735645142e+02, 4.346622329688722e+02, 4.354610923732302e+02, 4.362599470161367e+02, 4.370588064206402e+02, 4.37857665825138e+02, 4.38656525229538e+02, 4.39455384633896e+02, 4.40254244038254e+02, 4.410530986814878e+02, 4.418519580858458e+02, 4.426508174902038e+02, 4.434496768946346e+02, 4.442485362991381e+02, 4.450473957036416e+02, 4.458462503465116e+02, 4.466451097508696e+02, 4.474439691552276e+02, 4.482428285596276e+02, 4.490416879641255e+02, 4.49840547368629e+02, 4.50639432528677e+02, 4.514382919331805e+02, 4.52237151337684e+02, 4.530360107421875e+02] +pSat=[1.014179765625e+05, 1.043435313163183e+05, 1.073385704482781e+05, 1.104043595834603e+05, 1.135421643469538e+05, 1.167532731960459e+05, 1.200390004467292e+05, 1.234006561489001e+05, 1.26839578748319e+05, 1.303571081056751e+05, 1.339546244591122e+05, 1.376334845972224e+05, 1.413950791474225e+05, 1.45240845608171e+05, 1.491721716386122e+05, 1.531904975839679e+05, 1.572972983629245e+05, 1.614940304930738e+05, 1.657821687814693e+05, 1.701632041829617e+05, 1.746386549048703e+05, 1.792100655354535e+05, 1.83878953688626e+05, 1.886468729939958e+05, 1.935154245194432e+05, 1.9848615625e+05, 2.035607080244919e+05, 2.087406506468767e+05, 2.140276556145879e+05, 2.194233639325388e+05, 2.249294152581528e+05, 2.305475142747526e+05, 2.362793322740337e+05, 2.42126570396426e+05, 2.480909822250741e+05, 2.541743005438913e+05, 2.603782254306334e+05, 2.667045907097968e+05, 2.731551593617287e+05, 2.797316970171289e+05, 2.864360584731556e+05, 2.932700337221535e+05, 3.0023550923831e+05, 3.073342761341437e+05, 3.145682829942519e+05, 3.219393838861032e+05, 3.294494624363722e+05, 3.371004696722496e+05, 3.448943522046409e+05, 3.528329611234521e+05, 3.6091840625e+05, 3.691525391886082e+05, 3.775374224168902e+05, 3.860750559406572e+05, 3.947673874644614e+05, 4.036165518758382e+05, 4.126245915870314e+05, 4.21793537877738e+05, 4.31125484488787e+05, 4.4062252516879e+05, 4.502867267981672e+05, 4.601202983354939e+05, 4.701253701963195e+05, 4.803040361536656e+05, 4.906585462142378e+05, 5.011910253676799e+05, 5.119036279648711e+05, 5.227987004444941e+05, 5.338784295219044e+05, 5.451450027131638e+05, 5.566007012922813e+05, 5.682478377398301e+05, 5.800885284007599e+05, 5.921253518916704e+05, 6.043604882556996e+05, 6.1679625e+05, 6.294350121701683e+05, 6.422790872349129e+05, 6.553309127004917e+05, 6.685927838618687e+05, 6.82067233835494e+05, 6.957566217155183e+05, 7.096633225409029e+05, 7.237898987974966e+05, 7.381386629836834e+05, 7.527121525387423e+05, 7.675129161969154e+05, 7.825434302888541e+05, 7.97806132344658e+05, 8.133036473723737e+05, 8.290384753565043e+05, 8.45013082852183e+05, 8.612302227723887e+05, 8.77692425654895e+05, 8.944021915197144e+05, 9.113622703978542e+05, 9.285751622626284e+05, 9.460435122291014e+05, 9.637700909919535e+05, 9.817575452459395e+05, 1.0000084375e+06] +hlvErr=[7.259366661310196e-02, 6.434945743780227e-02, 5.614313819188183e-02, 4.797695150025195e-02, 3.985317724073324e-02, 3.177415639613258e-02, 2.374227051402878e-02, 1.575996005421577e-02, 7.829711291573673e-03, 4.592791028945001e-05, 7.864355810746501e-03, 1.562293106147401e-02, 2.331894096479408e-02, 3.094962228666609e-02, 3.851214751395163e-02, 4.600365015125675e-02, 5.342119823282897e-02, 6.076177823977912e-02, 6.802235026755792e-02, 7.519980689911077e-02, 8.229095278506443e-02, 8.929256805244999e-02, 9.620133124012677e-02, 1.030138926260089e-01, 1.097268348851464e-01, 1.163366362452507e-01, 1.228397624492761e-01, 1.292325637185257e-01, 1.355113826713177e-01, 1.416724226023266e-01, 1.477118659140085e-01, 1.536258445113063e-01, 1.594103466546872e-01, 1.650613472982581e-01, 1.705747376236979e-01, 1.759463580159462e-01, 1.811719015845207e-01, 1.862471079759564e-01, 1.911675207975303e-01, 1.959286994890313e-01, 2.005260410721965e-01, 2.049549833509201e-01, 2.092108035860032e-01, 2.132886917551234e-01, 2.171838292558962e-01, 2.208912713439324e-01, 2.244059861832893e-01, 2.277229283089631e-01, 2.308369012962028e-01, 2.337426516330422e-01, 2.364348620176315e-01, 2.389081440824916e-01, 2.411569844230315e-01, 2.431758248901389e-01, 2.449590229540464e-01, 2.465008480025553e-01, 2.477954921258884e-01, 2.48837054410309e-01, 2.496195743968387e-01, 2.501370022084457e-01, 2.503831681342261e-01, 2.503518762261301e-01, 2.500368358755303e-01, 2.494316395368222e-01, 2.485298349867455e-01, 2.47324850822131e-01, 2.458100808961898e-01, 2.439787867584912e-01, 2.418241666213817e-01, 2.393393510136501e-01, 2.365173512371264e-01, 2.333511190693667e-01, 2.298335388702743e-01, 2.259573715138126e-01, 2.217152905608233e-01, 2.170999348163605e-01, 2.121038089009906e-01, 2.067193579755833e-01, 2.009389377224909e-01, 1.947548674645571e-01, 1.881592205310255e-01, 1.81144164725503e-01, 1.737016831381171e-01, 1.658237142564643e-01, 1.575020773399429e-01, 1.487285857346459e-01, 1.394947902007352e-01, 1.297923075636956e-01, 1.196126366402793e-01, 1.089471645323517e-01, 9.778719643276611e-02, 8.612401170286328e-02, 7.394860516195231e-02, 6.125206678407656e-02, 4.802534406209014e-02, 3.425928760356036e-02, 1.994465314958268e-02, 5.072191245995492e-03, 1.036770633442125e-02, 2.638447970196308e-02, 4.298775270581245e-02] +hlErr=[1.668232828378677e-01, 1.722802670045169e-01, 1.778531673092756e-01, 1.835419390486547e-01, 1.893465673214893e-01, 1.95267021211481e-01, 2.013033189617358e-01, 2.07455426269816e-01, 2.137233775265427e-01, 2.201071805607786e-01, 2.266068746826064e-01, 2.332224998882514e-01, 2.39954100883322e-01, 2.468017074667234e-01, 2.537654038065619e-01, 2.608452992877567e-01, 2.680414047000195e-01, 2.753538774205913e-01, 2.827827876980786e-01, 2.903282362498095e-01, 2.979903794202798e-01, 3.05769329448893e-01, 3.136651823480301e-01, 3.216781582582528e-01, 3.298083587769386e-01, 3.380559682846069e-01, 3.464211902006419e-01, 3.549041358505044e-01, 3.635050644101895e-01, 3.722241594232607e-01, 3.810616327703614e-01, 3.900176861278027e-01, 3.990925913903576e-01, 4.082865295819215e-01, 4.175998237033942e-01, 4.270326849846163e-01, 4.365853529918689e-01, 4.462581528563968e-01, 4.560513543441733e-01, 4.659652852815976e-01, 4.760001539687531e-01, 4.861563778743193e-01, 4.964342551064655e-01, 5.068340226778938e-01, 5.173562194336887e-01, 5.280010231952471e-01, 5.387688188885106e-01, 5.496600283343129e-01, 5.606750368839258e-01, 5.718141687498463e-01, 5.830778479576111e-01, 5.944665183673546e-01, 6.059805971890124e-01, 6.176204420530109e-01, 6.29386459267667e-01, 6.412792659480852e-01, 6.532991499731565e-01, 6.654467074087702e-01, 6.777222958721643e-01, 6.901263921962483e-01, 7.026595173246583e-01, 7.153222379002339e-01, 7.281150160576899e-01, 7.410383882530399e-01, 7.540928313251474e-01, 7.672789413096599e-01, 7.805971152592374e-01, 7.940481675794878e-01, 8.07632436534897e-01, 8.213506373879792e-01, 8.352033065957331e-01, 8.491910401867818e-01, 8.633143496200022e-01, 8.775739992826249e-01, 8.919705610740666e-01, 9.065046310424805e-01, 9.211768648673803e-01, 9.359879181754162e-01, 9.509384466202386e-01, 9.660290750691973e-01, 9.81260579481439e-01, 9.966335855889195e-01, 1.012148868274731e+00, 1.027806904366041e+00, 1.043608707134103e+00, 1.059554777135438e+00, 1.075646019721596e+00, 1.091883055545981e+00, 1.108266719089253e+00, 1.124797725609706e+00, 1.141476790352561e+00, 1.158304766234761e+00, 1.175282449898786e+00, 1.192410814388874e+00, 1.209690336554242e+00, 1.227122089294044e+00, 1.244706787846053e+00, 1.262445160484229e+00, 1.280338372316362e+00, 1.298387033357082e+00, 1.316592216491699e+00] +hvErr=[8.735370635986328e-02, 8.138361559985222e-02, 7.549623373880458e-02, 6.969370654407256e-02, 6.397817978301687e-02, 5.835185986683621e-02, 5.281695650053671e-02, 4.737573878178618e-02, 4.203049744011081e-02, 3.678357042325708e-02, 3.163730801722509e-02, 2.659411326168386e-02, 2.165642436267005e-02, 1.682671118613415e-02, 1.210748059597159e-02, 7.501275668515207e-03, 3.010669772223622e-03, 1.361706335755435e-03, 5.613203414234307e-03, 9.741133113819786e-03, 1.374275212722137e-02, 1.761530029669506e-02, 2.135595722916928e-02, 2.496187799517425e-02, 2.843017871438612e-02, 3.175792098045349e-02, 3.494214189342527e-02, 3.797982313572117e-02, 4.086792435317912e-02, 4.360334795678297e-02, 4.618295727190777e-02, 4.86035825654885e-02, 5.086200838781128e-02, 5.295496540835615e-02, 5.48791655221348e-02, 5.663125687678972e-02, 5.820785247482344e-02, 5.960553448782541e-02, 6.082082219925126e-02, 6.185019892400146e-02, 6.269011601014544e-02, 6.33369686112642e-02, 6.378711803383565e-02, 6.403686839195391e-02, 6.408250330007274e-02, 6.392024423042278e-02, 6.354627796615564e-02, 6.295675030701382e-02, 6.214775789003008e-02, 6.11153590955325e-02, 5.985556542873383e-02, 5.836434879248889e-02, 5.66376449267558e-02, 5.46713373739244e-02, 5.246129009764429e-02, 5.000328205007409e-02, 4.72930862753695e-02, 4.432642609068844e-02, 4.109898389569252e-02, 3.760640110042391e-02, 3.384430139288785e-02, 2.980820310238381e-02, 2.549364628884711e-02, 2.089611586011339e-02, 1.601105204652236e-02, 1.083386157892034e-02, 5.359943259305899e-03, 4.154522881453537e-04, 6.49696424096213e-03, 1.288937654790319e-02, 1.959746222135391e-02, 2.66260380311821e-02, 3.397991601915618e-02, 4.166407509723427e-02, 4.968339917237348e-02, 5.804285034537315e-02, 6.674742803686762e-02, 7.580215761303957e-02, 8.521210920848005e-02, 9.49823122050915e-02, 1.051180314624688e-01, 1.156243581996066e-01, 1.265064855406846e-01, 1.377696586746587e-01, 1.494191451589071e-01, 1.614601321249529e-01, 1.738981126340628e-01, 1.867383656491112e-01, 1.999862854455164e-01, 2.136472662605768e-01, 2.27726761895984e-01, 2.422301682435779e-01, 2.571631715916217e-01, 2.725312002589781e-01, 2.883398571194599e-01, 3.045946854648709e-01, 3.213013476896989e-01, 3.384653727586214e-01, 3.560926872471053e-01, 3.741888229515491e-01, 3.927595913410187e-01] +hlvIF97=[2.25647275e+06, 2.254360749952726e+06, 2.252244249905284e+06, 2.250123499857591e+06, 2.247997999809787e+06, 2.245868000158884e+06, 2.243733499713339e+06, 2.241594250063814e+06, 2.239450249616222e+06, 2.237301750768899e+06, 2.23514825032112e+06, 2.23298974987118e+06, 2.230826499418968e+06, 2.22865799896467e+06, 2.22648475012964e+06, 2.224306251300124e+06, 2.22212274921769e+06, 2.219934000391602e+06, 2.217739751570877e+06, 2.215540499474884e+06, 2.213335750657512e+06, 2.211125498548555e+06, 2.208909749735505e+06, 2.206688500927819e+06, 2.204461748803737e+06, 2.20222925e+06, 2.19999124786139e+06, 2.19774725240996e+06, 2.195497500268518e+06, 2.193241748115156e+06, 2.190980252698595e+06, 2.188712750541209e+06, 2.186438998371902e+06, 2.184159502991402e+06, 2.181873500818519e+06, 2.179581498631331e+06, 2.177283003291958e+06, 2.174978251100299e+06, 2.172667248896124e+06, 2.170349746679432e+06, 2.16802575138655e+06, 2.165694999164941e+06, 2.16335774692992e+06, 2.16101375167906e+06, 2.158663249438525e+06, 2.156305747185176e+06, 2.153941501974549e+06, 2.151570249716878e+06, 2.14919199744386e+06, 2.146806752278085e+06, 2.1444145e+06, 2.142015247707644e+06, 2.139608495400983e+06, 2.137194743080018e+06, 2.134773505200715e+06, 2.132344752899717e+06, 2.129908750581749e+06, 2.127465248249441e+06, 2.125014245902846e+06, 2.122555743538668e+06, 2.120089255888839e+06, 2.117615253544032e+06, 2.11513350118492e+06, 2.112643748810311e+06, 2.110146246420206e+06, 2.107640494015795e+06, 2.105127006599016e+06, 2.102605254213977e+06, 2.100075501811354e+06, 2.097537499393664e+06, 2.094991121958724e+06, 2.092436494506929e+06, 2.089873507341976e+06, 2.087302004910148e+06, 2.084721877464014e+06, 2.082133375e+06, 2.079536122518105e+06, 2.07693012001952e+06, 2.074315367504247e+06, 2.071691755637908e+06, 2.069059253142602e+06, 2.066417875630625e+06, 2.063767373100134e+06, 2.061107745552377e+06, 2.058438992986291e+06, 2.05576100639398e+06, 2.053073753848905e+06, 2.050377001287736e+06, 2.047670873706899e+06, 2.044955246107287e+06, 2.042229993489793e+06, 2.039495257182536e+06, 2.036750629587394e+06, 2.033996251972731e+06, 2.031231999339572e+06, 2.028457871685293e+06, 2.025673619013411e+06, 2.022879383005364e+06, 2.020075005355983e+06, 2.017260252688124e+06, 2.01443525e+06] +hlvWatSte=[2.25483475e+06, 2.252909999956917e+06, 2.250979749913555e+06, 2.249043749869997e+06, 2.247101999826103e+06, 2.245154500145286e+06, 2.243200749737479e+06, 2.241241000058487e+06, 2.239274999647737e+06, 2.237302750706314e+06, 2.235324000295229e+06, 2.233338499881462e+06, 2.2313464994649e+06, 2.229347749045135e+06, 2.22734225011973e+06, 2.225329501201776e+06, 2.223309749276252e+06, 2.221282750362991e+06, 2.219248251457331e+06, 2.217206499512137e+06, 2.215157000611691e+06, 2.213099748648542e+06, 2.211034749753237e+06, 2.208961750866277e+06, 2.206880748880851e+06, 2.20479125e+06, 2.202693747993712e+06, 2.200587502262439e+06, 2.198472750252425e+06, 2.196348998223636e+06, 2.194216752545113e+06, 2.192075250511407e+06, 2.189924498457733e+06, 2.187764502837325e+06, 2.185595250777392e+06, 2.183416248697641e+06, 2.18122775313639e+06, 2.179029251050232e+06, 2.176820748943808e+06, 2.174601996817118e+06, 2.172373001331416e+06, 2.17013374919668e+06, 2.16788374704138e+06, 2.165623001620051e+06, 2.163351499456705e+06, 2.161068747271603e+06, 2.158775001918223e+06, 2.156469749724478e+06, 2.154153247506892e+06, 2.151824752225633e+06, 2.14948475e+06, 2.147132497750559e+06, 2.144768245477276e+06, 2.142391743180152e+06, 2.140002755136343e+06, 2.137601002869915e+06, 2.135186750576682e+06, 2.132759248258382e+06, 2.130318745913277e+06, 2.127864993541946e+06, 2.1253977558948e+06, 2.122916753556549e+06, 2.120422001192073e+06, 2.117913248800179e+06, 2.115390496379079e+06, 2.11285324393235e+06, 2.110301506707197e+06, 2.10773525429325e+06, 2.105154001850693e+06, 2.102557749378614e+06, 2.09994624687528e+06, 2.097319244343317e+06, 2.094676632579794e+06, 2.092018380081806e+06, 2.0893441275564e+06, 2.086653625e+06, 2.08394687240903e+06, 2.081223494787066e+06, 2.07848349213232e+06, 2.075726505930264e+06, 2.072952378315452e+06, 2.070161000667283e+06, 2.06735212298346e+06, 2.064525620264491e+06, 2.061681117510952e+06, 2.058818506842498e+06, 2.055937629131426e+06, 2.053038251386082e+06, 2.050120123603189e+06, 2.047183245781851e+06, 2.044227117925048e+06, 2.041251757823424e+06, 2.038256755011921e+06, 2.035242127161824e+06, 2.032207499273559e+06, 2.029152746344062e+06, 2.026077618375056e+06, 2.02298200887975e+06, 2.019865505960364e+06, 2.016728003000447e+06, 2.013569375e+06] +hlIF97=[4.1909915625e+05, 4.224702500753638e+05, 4.258422501507555e+05, 4.292150939761959e+05, 4.325888128016786e+05, 4.35963437248543e+05, 4.393390004527694e+05, 4.427154373993658e+05, 4.460928443540267e+05, 4.494711862916673e+05, 4.528504994963884e+05, 4.562307502015192e+05, 4.596120321570877e+05, 4.629942828630474e+05, 4.663775310483132e+05, 4.697618104825731e+05, 4.731471262109032e+05, 4.765334681444087e+05, 4.799208725768526e+05, 4.833093445580511e+05, 4.866989052397033e+05, 4.900895959734723e+05, 4.934813441544167e+05, 4.968742173342156e+05, 5.002682518210486e+05, 5.0366340625e+05, 5.070597532396549e+05, 5.104572463543824e+05, 5.138559370947824e+05, 5.172558465875665e+05, 5.206569334450297e+05, 5.240592491887079e+05, 5.274628149349939e+05, 5.308676830342056e+05, 5.342737487817208e+05, 5.376811270313967e+05, 5.410898076228598e+05, 5.444998108736905e+05, 5.479111266269055e+05, 5.513237548829516e+05, 5.54737747964878e+05, 5.581531262217438e+05, 5.615698794817759e+05, 5.649880600547245e+05, 5.684076258154644e+05, 5.718286290791846e+05, 5.752510596435277e+05, 5.78674937908291e+05, 5.821003161762953e+05, 5.855271842312879e+05, 5.889555625e+05, 5.923855032716435e+05, 5.958169440462673e+05, 5.992498848247653e+05, 6.026844301294144e+05, 6.061205584033676e+05, 6.09558311680202e+05, 6.129976899606616e+05, 6.16438693244673e+05, 6.198813840306214e+05, 6.233256792866189e+05, 6.267716825697363e+05, 6.302193733556847e+05, 6.336688141453584e+05, 6.371200049383102e+05, 6.405729457349874e+05, 6.440276784374162e+05, 6.47484181729772e+05, 6.509424975259276e+05, 6.544026258252369e+05, 6.578646291282969e+05, 6.613285074349575e+05, 6.64794240082253e+05, 6.682618683845925e+05, 6.717314966905081e+05, 6.75203e+05, 6.786765033136641e+05, 6.821520066309045e+05, 6.856295099517211e+05, 6.89108992532186e+05, 6.925905583486068e+05, 6.96074186669175e+05, 6.995598774939651e+05, 7.030476933229027e+05, 7.065376341560126e+05, 7.10029741671882e+05, 7.13523995e+05, 7.170204358324392e+05, 7.205191266689018e+05, 7.240200675098347e+05, 7.275232583549396e+05, 7.310286783046491e+05, 7.345364316447624e+05, 7.380465599888243e+05, 7.415590008378285e+05, 7.450738166916256e+05, 7.485910700502906e+05, 7.521107399266876e+05, 7.556328057802861e+05, 7.591573716377589e+05, 7.626844375e+05] +hlWat=[4.184e+05, 4.217424375747072e+05, 4.250848751494144e+05, 4.284272814741319e+05, 4.317697190488427e+05, 4.351121560009644e+05, 4.384545941982432e+05, 4.417969999003902e+05, 4.451394380976844e+05, 4.484818738046313e+05, 4.518243120019297e+05, 4.551667189492281e+05, 4.585091571465266e+05, 4.61851595343825e+05, 4.651940310507719e+05, 4.685364667577188e+05, 4.718788761953687e+05, 4.752213119023156e+05, 4.785637476092625e+05, 4.819061882968752e+05, 4.85248592753906e+05, 4.885910334415094e+05, 4.919334691484376e+05, 4.952759048554032e+05, 4.986183142930531e+05, 5.0196075e+05, 5.053031906876499e+05, 5.086456214138938e+05, 5.119880308515624e+05, 5.153304715391937e+05, 5.186729022654376e+05, 5.220153429530875e+05, 5.253577523907374e+05, 5.287001831169813e+05, 5.320426238046313e+05, 5.353850644922812e+05, 5.387274952185251e+05, 5.420699359061751e+05, 5.454123765936759e+05, 5.487547547814749e+05, 5.520971855079051e+05, 5.554396261953687e+05, 5.587820668830187e+05, 5.621244976092626e+05, 5.654669382969125e+05, 5.688093789845625e+05, 5.721518097108064e+05, 5.75494250398419e+05, 5.788366285861062e+05, 5.82179059312648e+05, 5.855215e+05, 5.888639406876025e+05, 5.922063813752049e+05, 5.955488220628074e+05, 5.988912428278945e+05, 6.02233683515497e+05, 6.055760617031502e+05, 6.089185023907018e+05, 6.122609430783043e+05, 6.156033837659067e+05, 6.189458045309939e+05, 6.222882452185963e+05, 6.256306859061988e+05, 6.289731265936522e+05, 6.323155672809567e+05, 6.356579454690061e+05, 6.390003662349129e+05, 6.423428069216957e+05, 6.456852476092982e+05, 6.490276882969243e+05, 6.52370128984503e+05, 6.557125696721055e+05, 6.590549904371926e+05, 6.623974311247951e+05, 6.657398093126955e+05, 6.6908225e+05, 6.724246906876025e+05, 6.757671313752049e+05, 6.791095720628074e+05, 6.824519928278945e+05, 6.85794433515497e+05, 6.891368742030757e+05, 6.924792523907018e+05, 6.958216930783043e+05, 6.991641337659067e+05, 7.025065545309939e+05, 7.058489952185963e+05, 7.091914359061988e+05, 7.125338765938012e+05, 7.158763172809567e+05, 7.19218757968261e+05, 7.225611162349129e+05, 7.259035569222172e+05, 7.292459976092982e+05, 7.325884382969243e+05, 7.35930878984503e+05, 7.392733196721055e+05, 7.426157404371926e+05, 7.459581811247951e+05, 7.493006218123975e+05, 7.52643e+05] +hvIF97=[2.675572e+06, 2.676831000028107e+06, 2.678086500056047e+06, 2.679338500083819e+06, 2.680586750111423e+06, 2.681831499907333e+06, 2.683072500166129e+06, 2.684309749963157e+06, 2.685543250220164e+06, 2.686772749561013e+06, 2.687998749817461e+06, 2.689220500072718e+06, 2.690438500325888e+06, 2.691652250578164e+06, 2.692862249927953e+06, 2.69406799928251e+06, 2.695269750429153e+06, 2.696467249786318e+06, 2.697660749147059e+06, 2.698849750282824e+06, 2.700034499647588e+06, 2.701215000772847e+06, 2.702391250139772e+06, 2.703562749511839e+06, 2.704730000624953e+06, 2.70589275e+06, 2.707051001101492e+06, 2.708204498764845e+06, 2.709353499863208e+06, 2.710497750952331e+06, 2.711637248643997e+06, 2.712771999729991e+06, 2.713902000805555e+06, 2.715026998528066e+06, 2.716147249600352e+06, 2.7172625006631e+06, 2.718372748415712e+06, 2.719478249473692e+06, 2.720578250523328e+06, 2.721673501561042e+06, 2.722763499351056e+06, 2.723848250386684e+06, 2.724927751411286e+06, 2.72600199923289e+06, 2.727070750254213e+06, 2.728134251265106e+06, 2.729192499118598e+06, 2.73024525012502e+06, 2.73129250111982e+06, 2.732333999009373e+06, 2.73337025e+06, 2.734400500979884e+06, 2.735425501947847e+06, 2.736444502907465e+06, 2.73745799783013e+06, 2.738465498801967e+06, 2.739467249761578e+06, 2.740463000709879e+06, 2.741453001645954e+06, 2.742437002570109e+06, 2.743414997675458e+06, 2.744386998612427e+06, 2.745352749541052e+06, 2.746312500455968e+06, 2.747266251358963e+06, 2.748213502250037e+06, 2.749154747538072e+06, 2.750089498443749e+06, 2.751017999337506e+06, 2.75194000021905e+06, 2.752855751087766e+06, 2.753765001941886e+06, 2.754667747425123e+06, 2.75556374829772e+06, 2.756453499153628e+06, 2.75733625e+06, 2.758212500832067e+06, 2.759082001652213e+06, 2.759944752456862e+06, 2.760800748170765e+06, 2.761649748991209e+06, 2.762491999800024e+06, 2.763327250594546e+06, 2.764155501374758e+06, 2.764976752140664e+06, 2.765790748065862e+06, 2.766597748848458e+06, 2.767397499619729e+06, 2.768190000376099e+06, 2.768975251117568e+06, 2.769753251844733e+06, 2.770523997983907e+06, 2.771286998731635e+06, 2.772042749461779e+06, 2.772791000177326e+06, 2.773531750877663e+06, 2.774264751563701e+06, 2.774989997936522e+06, 2.775707748636269e+06, 2.776417749325287e+06, 2.77711975e+06] +hvSte=[2.67323475e+06, 2.674652500031628e+06, 2.676064750062976e+06, 2.677471250094045e+06, 2.678871750124946e+06, 2.680266499896344e+06, 2.681655250185911e+06, 2.683037999958873e+06, 2.684414500245422e+06, 2.685784499510945e+06, 2.687148249797158e+06, 2.68850525008069e+06, 2.689855750361091e+06, 2.691199500638364e+06, 2.692536249920502e+06, 2.69386599920875e+06, 2.695188750471174e+06, 2.696503999765307e+06, 2.697811999066593e+06, 2.69911275030905e+06, 2.700405749615551e+06, 2.701691000839232e+06, 2.702968250151693e+06, 2.70423774947168e+06, 2.705499000673904e+06, 2.706752e+06, 2.707996751182554e+06, 2.709232998677674e+06, 2.710460749853969e+06, 2.71167950101283e+06, 2.712889498562041e+06, 2.714090499714494e+06, 2.71528225084847e+06, 2.716464748454306e+06, 2.717637999581576e+06, 2.718801500689922e+06, 2.719955248354915e+06, 2.721098999456407e+06, 2.722233000537633e+06, 2.723356751598593e+06, 2.724470249339135e+06, 2.725573250392496e+06, 2.726665751424399e+06, 2.727747499229313e+06, 2.728818500253617e+06, 2.729878251254675e+06, 2.730926749129029e+06, 2.731964000122934e+06, 2.732989751092998e+06, 2.734003999036791e+06, 2.73500625e+06, 2.735996500938161e+06, 2.736974751850097e+06, 2.737940502742959e+06, 2.738893997964238e+06, 2.739834748885412e+06, 2.740762749780056e+06, 2.741677750649083e+06, 2.742579751491581e+06, 2.743468252311131e+06, 2.744343497925793e+06, 2.745204998775146e+06, 2.746052749598272e+06, 2.746886500393384e+06, 2.747706001160483e+06, 2.748511251898376e+06, 2.74930199794129e+06, 2.750077998714946e+06, 2.750839249459991e+06, 2.751585250175836e+06, 2.752316250859783e+06, 2.753031751515422e+06, 2.753731748015199e+06, 2.754415748707793e+06, 2.755083999368201e+06, 2.755736e+06, 2.756371500597228e+06, 2.756990751161079e+06, 2.757593001695127e+06, 2.758178498758158e+06, 2.758746749330949e+06, 2.75929799987006e+06, 2.759831500373715e+06, 2.760347250842795e+06, 2.760845251278498e+06, 2.761324998873491e+06, 2.761786499350917e+06, 2.762229749791984e+06, 2.762654000197288e+06, 2.763059500563255e+06, 2.763445750894055e+06, 2.763812749059157e+06, 2.76416024943466e+06, 2.764487999772016e+06, 2.764796000070334e+06, 2.76508375032782e+06, 2.765351000547161e+06, 2.765597749316942e+06, 2.765823749585159e+06, 2.766028749811653e+06, 2.76621225e+06] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Media_Examples_SteamTemperatureEnthalpyInversion.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Media_Examples_SteamTemperatureEnthalpyInversion.txt new file mode 100644 index 0000000000..306d3e03f7 --- /dev/null +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Media_Examples_SteamTemperatureEnthalpyInversion.txt @@ -0,0 +1,10 @@ +last-generated=2021-06-08 +statistics-simulation= +{ + "linear": " ", + "nonlinear": " ", + "numerical Jacobians": "0" +} +time=[0e+00, 1e+00] +T=[5.731500244140625e+02, 5.731500244140625e+02] +h=[3.087167e+06, 3.087167e+06] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Systems_HeatPumpSystems_Examples_HeatPumpSystem.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Systems_HeatPumpSystems_Examples_HeatPumpSystem.txt new file mode 100644 index 0000000000..374564b616 --- /dev/null +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Systems_HeatPumpSystems_Examples_HeatPumpSystem.txt @@ -0,0 +1,21 @@ +last-generated=2022-05-19 +statistics-initialization= +{ + "linear": "0", + "nonlinear": "5, 1, 1", + "numerical Jacobians": "0" +} +statistics-simulation= +{ + "linear": "0, 0, 0, 0, 0, 0, 0", + "nonlinear": "1, 1, 1", + "number of continuous time states": "30", + "numerical Jacobians": "0" +} +time=[0e+00, 8.64e+04] +heatPumpSystem.heatPump.sigBus.TConInMea=[3.131499938964844e+02, 3.093436584472656e+02, 3.099256896972656e+02, 3.110107421875e+02, 3.020694580078125e+02, 2.950986633300781e+02, 3.027249145507812e+02, 3.096626281738281e+02, 3.085666809082031e+02, 3.047350463867188e+02, 3.0756982421875e+02, 3.050577392578125e+02, 3.095773010253906e+02, 3.096895141601562e+02, 3.085575256347656e+02, 3.038237915039062e+02, 3.057195739746094e+02, 3.087052001953125e+02, 3.081207580566406e+02, 3.039710998535156e+02, 3.028799743652344e+02, 3.073792114257812e+02, 3.061592712402344e+02, 3.048906860351562e+02, 3.004508056640625e+02, 3.091408996582031e+02, 3.150147399902344e+02, 3.167561340332031e+02, 3.135498657226563e+02, 3.177550354003906e+02, 3.190783996582031e+02, 3.11018798828125e+02, 3.187181701660156e+02, 3.189839172363281e+02, 3.186634216308594e+02, 3.130034179687501e+02, 3.190186462402344e+02, 3.181971130371094e+02, 3.177764282226562e+02, 3.123070983886719e+02, 3.172625122070312e+02, 3.148847045898438e+02, 3.139867553710938e+02, 3.122628784179688e+02, 3.145279235839844e+02, 3.111396484375e+02, 3.118958129882812e+02, 3.126818542480469e+02, 3.11982666015625e+02, 3.104354248046875e+02, 3.118531188964844e+02, 3.131487426757812e+02, 3.092267456054688e+02, 3.100436096191406e+02, 3.119784240722656e+02, 3.137442016601562e+02, 3.087391052246093e+02, 3.107680053710938e+02, 3.130341186523438e+02, 3.110213012695312e+02, 3.101443176269531e+02, 3.122140808105469e+02, 3.133218383789062e+02, 3.094666137695312e+02, 3.114571533203125e+02, 3.137597961425781e+02, 3.090685729980469e+02, 3.107320556640625e+02, 3.128827819824218e+02, 3.113992309570311e+02, 3.100336914062501e+02, 3.1208984375e+02, 3.138140563964844e+02, 3.093240051269531e+02, 3.111818237304688e+02, 3.13186767578125e+02, 3.089981994628906e+02, 3.075475158691406e+02, 3.112958984375e+02, 3.118217163085938e+02, 3.063461608886719e+02, 3.094463806152344e+02, 3.1150390625e+02, 3.089872131347656e+02, 3.06718017578125e+02, 3.100815734863281e+02, 3.117001037597656e+02, 3.069874572753906e+02, 3.08447265625e+02, 3.115730895996094e+02, 3.097602233886719e+02, 3.064600524902344e+02, 3.0910205078125e+02, 3.025176086425781e+02, 3.038289794921875e+02, 3.013777160644531e+02, 2.994424743652344e+02, 3.005146789550781e+02, 2.991291809082031e+02, 2.987870483398438e+02, 2.999447937011719e+02] +heatPumpSystem.heatPump.sigBus.TConOutMea=[3.131499938964844e+02, 3.092700805664062e+02, 3.127317199707031e+02, 3.10933349609375e+02, 3.020374450683594e+02, 2.951065063476562e+02, 3.055523681640625e+02, 3.095878295898438e+02, 3.113683471679688e+02, 3.046874084472656e+02, 3.103783264160156e+02, 3.050080871582031e+02, 3.123839416503906e+02, 3.096150512695312e+02, 3.113646850585938e+02, 3.03781005859375e+02, 3.085296630859375e+02, 3.115104370117188e+02, 3.109275512695312e+02, 3.039273071289062e+02, 3.057051696777344e+02, 3.07530029296875e+02, 3.089693908691406e+02, 3.048415222167969e+02, 3.032887573242188e+02, 3.090692749023438e+02, 3.178163757324219e+02, 3.195469055175781e+02, 3.161427001953126e+02, 3.176330871582031e+02, 3.218597717285156e+02, 3.109344177246094e+02, 3.2150146484375e+02, 3.188599548339844e+02, 3.214362792968751e+02, 3.128970947265626e+02, 3.188838806152344e+02, 3.209718627929688e+02, 3.205530090332031e+02, 3.122038269042969e+02, 3.192256469726562e+02, 3.176720581054688e+02, 3.16770263671875e+02, 3.121586608886719e+02, 3.173155212402344e+02, 3.13933837890625e+02, 3.120081176757812e+02, 3.125742492675781e+02, 3.147706298828125e+02, 3.103401489257812e+02, 3.117496032714844e+02, 3.130376586914062e+02, 3.1201318359375e+02, 3.099498291015625e+02, 3.118738403320312e+02, 3.136297302246093e+02, 3.086522521972656e+02, 3.106694030761719e+02, 3.129233703613281e+02, 3.138068542480469e+02, 3.10049072265625e+02, 3.121072692871094e+02, 3.155163879394531e+02, 3.09375244140625e+02, 3.113544616699219e+02, 3.136495971679688e+02, 3.118715209960938e+02, 3.106334533691406e+02, 3.127726440429687e+02, 3.141853637695311e+02, 3.099390869140626e+02, 3.119837036132812e+02, 3.140453186035156e+02, 3.099692993164062e+02, 3.110809020996094e+02, 3.130752868652344e+02, 3.117975463867188e+02, 3.074776611328125e+02, 3.112055358886719e+02, 3.146200561523438e+02, 3.090573425292969e+02, 3.093657836914062e+02, 3.114132385253906e+02, 3.1178662109375e+02, 3.066524047851562e+02, 3.099973754882812e+02, 3.144981689453125e+02, 3.097840270996094e+02, 3.083721313476562e+02, 3.11482421875e+02, 3.125592956542969e+02, 3.063959045410156e+02, 3.090230102539062e+02, 3.024761047363281e+02, 3.037940063476562e+02, 3.042047729492188e+02, 3.017640075683594e+02, 3.004850463867188e+02, 3.019695129394531e+02, 3.015386352539062e+02, 2.999183654785156e+02] +heatPumpSystem.hPSystemController.hPControls.heatCurve.TSet=[3.113250122070312e+02, 3.113712768554688e+02, 3.113970642089844e+02, 3.113902587890625e+02, 3.113387756347656e+02, 3.112481079101562e+02, 3.111468811035156e+02, 3.110384521484375e+02, 3.109256286621094e+02, 3.108070068359375e+02, 3.106759643554688e+02, 3.105425415039062e+02, 3.1041796875e+02, 3.103248596191406e+02, 3.103177795410156e+02, 3.103548583984375e+02, 3.103800354003906e+02, 3.1033837890625e+02, 3.102214660644531e+02, 3.100787048339844e+02, 3.099628601074219e+02, 3.099249877929688e+02, 3.099249877929688e+02, 3.099249877929688e+02, 3.099249877929688e+02, 3.099249877929688e+02, 3.199249877929688e+02, 3.199249877929688e+02, 3.199249877929688e+02, 3.199249877929688e+02, 3.198921508789062e+02, 3.197831726074219e+02, 3.196274108886719e+02, 3.194555358886719e+02, 3.192882995605469e+02, 3.191019592285156e+02, 3.188784484863281e+02, 3.18601318359375e+02, 3.182456665039062e+02, 3.177791748046875e+02, 3.172656860351562e+02, 3.167814636230469e+02, 3.163934936523438e+02, 3.160364990234375e+02, 3.156795043945312e+02, 3.15322509765625e+02, 3.149655151367188e+02, 3.146084899902344e+02, 3.142514953613281e+02, 3.138945007324219e+02, 3.135375061035156e+02, 3.132337341308594e+02, 3.130073547363281e+02, 3.128148498535156e+02, 3.126127014160156e+02, 3.123517150878906e+02, 3.120471496582031e+02, 3.11778076171875e+02, 3.116243286132812e+02, 3.116124877929688e+02, 3.116124877929688e+02, 3.116124877929688e+02, 3.116124877929688e+02, 3.116124877929688e+02, 3.116124877929688e+02, 3.116124877929688e+02, 3.116124877929688e+02, 3.116124877929688e+02, 3.116124877929688e+02, 3.116124877929688e+02, 3.116124877929688e+02, 3.116141967773438e+02, 3.116846313476562e+02, 3.1182568359375e+02, 3.119918212890625e+02, 3.121375122070312e+02, 3.122547302246094e+02, 3.123650817871094e+02, 3.124673767089844e+02, 3.125604553222656e+02, 3.125245361328125e+02, 3.122417907714844e+02, 3.118868103027344e+02, 3.116397399902344e+02, 3.116377563476562e+02, 3.11789794921875e+02, 3.119863891601562e+02, 3.121236267089844e+02, 3.121060180664062e+02, 3.119544982910156e+02, 3.117633972167969e+02, 3.116268310546875e+02, 3.016318969726562e+02, 3.017416076660156e+02, 3.018941345214844e+02, 3.020450134277344e+02, 3.021495666503906e+02, 3.021701049804688e+02, 3.021397705078125e+02, 3.02111328125e+02, 3.021375122070312e+02] +heatPumpSystem.heatPump.innerCycle.QCon=[1.99165e+04, 0e+00, 1.9902572265625e+04, 0e+00, 0e+00, 0e+00, 1.975e+04, 0e+00, 1.9857171875e+04, 0e+00, 1.9824203125e+04, 0e+00, 1.9890990234375e+04, 0e+00, 1.9857048828125e+04, 0e+00, 1.9762642578125e+04, 1.986190234375e+04, 1.98424921875e+04, 0e+00, 1.975e+04, 1.975e+04, 1.977728515625e+04, 0e+00, 1.975e+04, 0e+00, 2.0071890625e+04, 2.0083e+04, 2.001615625e+04, 0e+00, 2.0083e+04, 0e+00, 2.0083e+04, 0e+00, 2.0083e+04, 0e+00, 0e+00, 2.0083e+04, 2.0083e+04, 0e+00, 0e+00, 2.0067083984375e+04, 2.00370546875e+04, 0e+00, 2.0055212890625e+04, 1.99426015625e+04, 1.9878474609375e+04, 0e+00, 1.9970466796875e+04, 0e+00, 0e+00, 0e+00, 1.987864453125e+04, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.9938373046875e+04, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.9873927734375e+04, 0e+00, 0e+00, 1.99509765625e+04, 0e+00, 0e+00, 0e+00, 1.9810583984375e+04, 0e+00, 0e+00, 1.9871462890625e+04, 0e+00, 0e+00, 1.9965453125e+04, 1.978021484375e+04, 0e+00, 0e+00, 1.9871099609375e+04, 0e+00, 0e+00, 0e+00, 1.9804412109375e+04, 0e+00, 0e+00, 1.9896830078125e+04, 0e+00, 0e+00, 0e+00, 0e+00, 1.975e+04, 1.975e+04, 0e+00, 1.975e+04, 1.975e+04, 0e+00] +heatPumpSystem.heatPump.innerCycle.Pel=[4.396e+03, 0e+00, 4.34195947265625e+03, 0e+00, 0e+00, 0e+00, 3.75e+03, 0e+00, 4.1658115234375e+03, 0e+00, 4.037899169921875e+03, 0e+00, 4.2970244140625e+03, 0e+00, 4.165335449218753e+03, 0e+00, 3.79905126953125e+03, 4.184169921875003e+03, 4.108861328125e+03, 0e+00, 3.75e+03, 3.75e+03, 3.855865478515625e+03, 0e+00, 3.75e+03, 0e+00, 4.9988935546875e+03, 5.15249462890625e+03, 4.782656738281255e+03, 0e+00, 5.33544384765625e+03, 0e+00, 5.30710107421875e+03, 0e+00, 5.301945312500004e+03, 0e+00, 0e+00, 5.265208984375e+03, 5.232078125e+03, 0e+00, 0e+00, 4.980248046875e+03, 4.86373876953125e+03, 0e+00, 4.93418603515625e+03, 4.4972734375e+03, 4.2484697265625e+03, 0e+00, 4.60538330078125e+03, 0e+00, 0e+00, 0e+00, 4.2491220703125e+03, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 4.4808642578125e+03, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 4.2308212890625e+03, 0e+00, 0e+00, 4.529768554687483e+03, 0e+00, 0e+00, 0e+00, 3.98505517578125e+03, 0e+00, 0e+00, 4.22126318359375e+03, 0e+00, 0e+00, 4.585931640625e+03, 3.867229736328125e+03, 0e+00, 0e+00, 4.21985205078125e+03, 0e+00, 0e+00, 0e+00, 3.961115234375e+03, 0e+00, 0e+00, 4.3196806640625e+03, 0e+00, 0e+00, 0e+00, 0e+00, 3.75e+03, 3.75e+03, 0e+00, 3.75e+03, 3.75e+03, 0e+00] +vol.T=[2.931499938964844e+02, 2.966627502441406e+02, 2.961690368652344e+02, 2.97196044921875e+02, 2.910291442871094e+02, 2.856705322265625e+02, 2.901432189941406e+02, 2.966185913085938e+02, 2.956480712890625e+02, 2.932276916503906e+02, 2.940753784179688e+02, 2.935411071777344e+02, 2.956989440917969e+02, 2.966663513183594e+02, 2.950101623535156e+02, 2.926453247070312e+02, 2.927235107421875e+02, 2.955755920410156e+02, 2.949188842773438e+02, 2.928238830566406e+02, 2.907245788574219e+02, 2.953780822753906e+02, 2.943104248046875e+02, 2.935719604492188e+02, 2.892540893554688e+02, 2.963092956542969e+02, 3.000858764648438e+02, 3.024348449707031e+02, 3.003503112792969e+02, 3.033309936523438e+02, 3.03308837890625e+02, 2.983899841308594e+02, 3.030709838867188e+02, 3.038641967773438e+02, 3.066246032714844e+02, 3.037589721679688e+02, 3.074442749023438e+02, 3.065357666015625e+02, 3.06392578125e+02, 3.035722045898438e+02, 3.06029052734375e+02, 3.047973327636719e+02, 3.045490417480469e+02, 3.040151977539062e+02, 3.044122924804688e+02, 3.033595886230469e+02, 3.040217590332031e+02, 3.047088012695312e+02, 3.030947570800781e+02, 3.032240600585938e+02, 3.043478393554688e+02, 3.053858642578125e+02, 3.0220068359375e+02, 3.032345886230469e+02, 3.045828247070312e+02, 3.057808837890625e+02, 3.024835510253906e+02, 3.040462341308594e+02, 3.052839965820312e+02, 3.034258422851562e+02, 3.036696166992188e+02, 3.050963134765625e+02, 3.047238464355469e+02, 3.031658935546875e+02, 3.046138000488281e+02, 3.055076904296875e+02, 3.028337097167969e+02, 3.041004333496094e+02, 3.054167785644531e+02, 3.036061096191406e+02, 3.035877380371094e+02, 3.050232238769531e+02, 3.050151672363281e+02, 3.030054626464844e+02, 3.043270874023438e+02, 3.054686889648438e+02, 2.97852294921875e+02, 2.976203308105469e+02, 3.001350708007812e+02, 2.995021362304688e+02, 2.966776123046875e+02, 2.9904345703125e+02, 3.0017626953125e+02, 2.977406311035156e+02, 2.971781921386719e+02, 2.995258483886719e+02, 2.995362548828125e+02, 2.9681982421875e+02, 2.983547058105469e+02, 3.001903381347656e+02, 2.982318115234375e+02, 2.969792785644531e+02, 2.989297790527344e+02, 2.939403381347656e+02, 2.935113525390625e+02, 2.920346069335938e+02, 2.9148779296875e+02, 2.922662658691406e+02, 2.901874084472656e+02, 2.910008239746094e+02, 2.918457336425781e+02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Systems_ModularAHU_Examples_GenericAHU.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Systems_ModularAHU_Examples_GenericAHU.txt new file mode 100644 index 0000000000..b0546b5083 --- /dev/null +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Systems_ModularAHU_Examples_GenericAHU.txt @@ -0,0 +1,21 @@ +last-generated=2022-05-17 +statistics-initialization= +{ + "nonlinear": "0, 0, 0, 1, 0, 1, 0, 0, 3, 0, 3, 0, 3, 0", + "numerical Jacobians": "0" +} +statistics-simulation= +{ + "linear": "0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0", + "nonlinear": "0, 0, 0, 1, 0, 1, 0, 0, 0, 2, 2, 2", + "number of continuous time states": "260", + "numerical Jacobians": "0" +} +time=[0e+00, 7.2e+03] +ctrAHUBasic.genericAHUBus.TOdaMea=[2.931499938964844e+02, 2.832560729980469e+02, 2.8315087890625e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02] +ctrAHUBasic.genericAHUBus.TSupMea=[2.931499938964844e+02, 2.93266845703125e+02, 2.934320983886719e+02, 2.933821105957031e+02, 2.930579528808594e+02, 2.925771484375e+02, 2.922150573730469e+02, 2.922376403808594e+02, 2.923662414550781e+02, 2.924306640625e+02, 2.924151306152344e+02, 2.923479614257812e+02, 2.922407531738281e+02, 2.920894165039062e+02, 2.919002685546875e+02, 2.916728820800781e+02, 2.913870544433594e+02, 2.910610961914062e+02, 2.907317810058594e+02, 2.904922180175781e+02, 2.904402770996094e+02, 2.905653381347656e+02, 2.907625427246094e+02, 2.909747924804688e+02, 2.911790466308594e+02, 2.913673400878906e+02, 2.915381164550781e+02, 2.916920776367188e+02, 2.918306884765625e+02, 2.919555358886719e+02, 2.920680847167969e+02, 2.92169677734375e+02, 2.922614440917969e+02, 2.923443908691406e+02, 2.9241943359375e+02, 2.924873657226562e+02, 2.925488891601562e+02, 2.926046447753906e+02, 2.926551818847656e+02, 2.927009887695312e+02, 2.927425231933594e+02, 2.927801818847656e+02, 2.928143310546875e+02, 2.928453369140625e+02, 2.928734741210938e+02, 2.928989868164062e+02, 2.929221496582031e+02, 2.929431762695312e+02, 2.929622497558594e+02, 2.929795532226562e+02, 2.929952697753906e+02, 2.93009521484375e+02, 2.930224609375e+02, 2.930342407226562e+02, 2.930448913574219e+02, 2.930545654296875e+02, 2.930633850097656e+02, 2.930713500976562e+02, 2.930785827636719e+02, 2.930851745605469e+02, 2.930911560058594e+02, 2.930965576171875e+02, 2.931015014648438e+02, 2.9310595703125e+02, 2.931100158691406e+02, 2.931136779785156e+02, 2.931170349121094e+02, 2.931200561523438e+02, 2.93122802734375e+02, 2.931253051757812e+02, 2.931275939941406e+02, 2.93129638671875e+02, 2.931315307617188e+02, 2.931332092285156e+02, 2.93134765625e+02, 2.931361694335938e+02, 2.93137451171875e+02, 2.931385803222656e+02, 2.931396484375e+02, 2.931405944824219e+02, 2.931414489746094e+02, 2.931422424316406e+02, 2.931429748535156e+02, 2.931436157226562e+02, 2.931441955566406e+02, 2.931447143554688e+02, 2.931452026367188e+02, 2.931456604003906e+02, 2.931460571289062e+02, 2.931464233398438e+02, 2.931467590332031e+02, 2.931470336914062e+02, 2.931473083496094e+02, 2.931475524902344e+02, 2.931477966308594e+02, 2.931479797363281e+02, 2.931481628417969e+02, 2.931483459472656e+02, 2.931484985351562e+02, 2.931486206054688e+02, 2.931487731933594e+02] +ctrAHUBasic.genericAHUBus.TEtaMea=[2.931499938964844e+02, 2.941393432617188e+02, 2.9414990234375e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02, 2.941499938964844e+02] +ctrAHUBasic.genericAHUBus.TEhaMea=[2.931499938964844e+02, 2.925507507324219e+02, 2.910284423828125e+02, 2.897291564941406e+02, 2.888067626953125e+02, 2.881987915039062e+02, 2.878167419433594e+02, 2.875845031738281e+02, 2.874466857910156e+02, 2.873663024902344e+02, 2.873200378417969e+02, 2.87293701171875e+02, 2.8727880859375e+02, 2.872704467773438e+02, 2.872657775878906e+02, 2.8726318359375e+02, 2.872617492675781e+02, 2.872609558105469e+02, 2.872605285644531e+02, 2.872602844238281e+02, 2.872601623535156e+02, 2.872601013183594e+02, 2.872600402832031e+02, 2.872600402832031e+02, 2.87260009765625e+02, 2.87260009765625e+02, 2.87260009765625e+02, 2.87260009765625e+02, 2.87260009765625e+02, 2.87260009765625e+02, 2.87260009765625e+02, 2.87260009765625e+02, 2.87260009765625e+02, 2.87260009765625e+02, 2.87260009765625e+02, 2.87260009765625e+02, 2.87260009765625e+02, 2.87260009765625e+02, 2.87260009765625e+02, 2.87260009765625e+02, 2.87260009765625e+02, 2.87260009765625e+02, 2.87260009765625e+02, 2.87260009765625e+02, 2.87260009765625e+02, 2.87260009765625e+02, 2.87260009765625e+02, 2.87260009765625e+02, 2.87260009765625e+02, 2.87260009765625e+02, 2.87260009765625e+02, 2.87260009765625e+02, 2.87260009765625e+02, 2.87260009765625e+02, 2.87260009765625e+02, 2.87260009765625e+02, 2.87260009765625e+02, 2.87260009765625e+02, 2.872600402832031e+02, 2.872600402832031e+02, 2.872600402832031e+02, 2.872600402832031e+02, 2.872600402832031e+02, 2.872600402832031e+02, 2.872600402832031e+02, 2.872600402832031e+02, 2.872600402832031e+02, 2.872600402832031e+02, 2.872600402832031e+02, 2.872600402832031e+02, 2.872600402832031e+02, 2.872600402832031e+02, 2.872600402832031e+02, 2.872600402832031e+02, 2.872600402832031e+02, 2.872600402832031e+02, 2.872600402832031e+02, 2.872600402832031e+02, 2.872600402832031e+02, 2.872600402832031e+02, 2.872600402832031e+02, 2.872600402832031e+02, 2.872600402832031e+02, 2.872600402832031e+02, 2.872600402832031e+02, 2.872600402832031e+02, 2.872600402832031e+02, 2.872600402832031e+02, 2.872600402832031e+02, 2.872600402832031e+02, 2.872600402832031e+02, 2.872600402832031e+02, 2.872600402832031e+02, 2.872600402832031e+02, 2.872600402832031e+02, 2.872600402832031e+02, 2.872600402832031e+02, 2.872600402832031e+02, 2.872600402832031e+02, 2.872600402832031e+02, 2.872600402832031e+02] +ctrAHUBasic.genericAHUBus.preheaterBus.hydraulicBus.valveMea=[0e+00, -1.543422502765256e-29, 2.159947284517298e-28, -9.547089769581883e-30, -1.124678376276014e-27, -1.319251660031805e-28, -4.974348735482023e-29, 2.557629910580133e-28, 5.544761939540574e-28, 9.544485701648483e-29, -2.428003029001975e-29, 1.825052863536392e-28, -4.743927527855307e-26, -7.994522102827794e-27, -1.372503093363374e-27, 1.174725399217867e-27, 5.835423768229982e-28, -1.001983891569728e-28, -1.249668051882338e-28, 8.934655031085956e-29, -2.637620570073601e-27, 5.125616413139736e-27, 1.6326094271875e-26, 3.915449858492261e-27, 1.499463573081793e-27, -1.254448980376285e-27, 7.145711668818123e-29, -7.679715949687084e-28, 6.149774053752862e-28, -3.411493118095414e-28, -2.965031356921353e-27, 2.131403076811535e-28, 1.636789696650391e-27, 3.161269318224576e-28, -3.510962825639396e-28, -1.128507799080937e-28, 1.916729536301655e-28, 2.478500671402565e-28, -8.522782153192864e-28, -1.579994600369395e-27, -2.70892494848013e-28, 3.083646156263506e-28, 1.352662752892346e-29, 8.298719583833474e-29, -5.949892377439609e-28, -2.538821326891508e-27, -3.866995001835433e-27, -1.636794896661241e-27, 5.464937921135556e-28, 5.644455777181835e-28, 3.401185541033053e-28, -8.495030465659216e-28, -1.773274381426287e-27, -8.010211787416242e-28, -1.114821779784238e-28, 5.882904682114184e-29, 2.334309907584921e-28, -1.173235234997521e-28, -2.709600468408124e-28, -1.234150954691031e-28, -6.292330304900816e-29, 1.581292725300161e-28, 6.40545377241491e-28, 1.246820179273572e-27, 1.743480630372605e-27, 1.742668850901046e-27, 7.160543496061092e-28, -7.172167927722927e-29, -8.510383016210899e-28, -1.072179451921963e-27, -1.100158014003059e-27, -1.282576802028071e-27, -1.182378467037878e-27, -7.757776779228004e-28, -2.357878956761863e-28, 3.60199984892188e-28, 7.910068726615453e-28, 1.224516754959601e-27, 1.514481685898633e-27, 1.44819512536921e-27, 9.750881234145523e-28, 2.439543923452472e-28, -8.337020432266882e-28, -2.199774649098751e-27, -3.095964163446564e-27, -3.205386258422914e-27, -1.845570324864684e-27, 4.204139920104605e-28, 2.598309451013741e-27, 4.758486017490919e-27, 6.459961152811466e-27, 9.100864085289287e-27, 1.196032000711221e-26, 1.506204790110335e-26, 1.671082265979766e-26, 1.571367320146315e-26, 1.095268655653243e-26, 2.979367979427372e-27, -2.517916127717162e-27, -5.234015068943638e-27, -1.575935606715102e-27] +ctrAHUBasic.genericAHUBus.coolerBus.hydraulicBus.valveMea=[0e+00, 3.211295465007424e-03, 4.849312826991081e-03, 1.607668027281761e-02, 4.046797007322311e-02, 7.446768134832382e-02, 1.147264242172241e-01, 1.594904214143753e-01, 2.077927589416504e-01, 2.589394748210907e-01, 3.125889599323273e-01, 3.687737584114075e-01, 4.28556352853775e-01, 4.931754469871521e-01, 5.630654692649842e-01, 6.39414370059967e-01, 7.242030501365662e-01, 8.17409873008728e-01, 9.184290766716003e-01, 9.933680295944214e-01, 9.996712207794189e-01, 9.999881982803345e-01, 9.999997019767761e-01, 9.999985694885254e-01, 9.999998211860657e-01, 9.999998807907104e-01, 1e+00, 1e+00, 1e+00, 1e+00, 9.999996423721313e-01, 9.999998211860657e-01, 1.00000011920929e+00, 1e+00, 9.999998807907104e-01, 1e+00, 1.00000011920929e+00, 1e+00, 9.999999403953552e-01, 9.999998807907104e-01, 9.999997019767761e-01, 9.999998211860657e-01, 1.00000011920929e+00, 1.000000238418579e+00, 1e+00, 1e+00, 9.999998807907104e-01, 9.999999403953552e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] +ctrAHUBasic.genericAHUBus.heaterBus.hydraulicBus.valveMea=[0e+00, 2.046649569820147e-07, 1.012211559014986e-08, 4.994535340863138e-10, 3.449813229963183e-04, 5.387674551457167e-03, 1.323241461068392e-02, 1.921668648719788e-02, 2.302025444805622e-02, 2.642428129911423e-02, 3.034467063844204e-02, 3.500198572874069e-02, 4.048433527350426e-02, 4.703377559781075e-02, 5.486400797963144e-02, 6.413064152002335e-02, 7.524985074996948e-02, 8.847098052501678e-02, 1.036764904856682e-01, 1.200405731797218e-01, 1.359782367944717e-01, 1.500934660434723e-01, 1.624313592910767e-01, 1.733622997999191e-01, 1.831452548503876e-01, 1.919514834880829e-01, 1.999034434556961e-01, 2.070960402488709e-01, 2.136083841323853e-01, 2.195083051919937e-01, 2.248557657003403e-01, 2.29703813791275e-01, 2.341000884771347e-01, 2.380875945091248e-01, 2.417048811912537e-01, 2.449866086244583e-01, 2.479642331600189e-01, 2.506662607192993e-01, 2.531183362007141e-01, 2.553436756134033e-01, 2.573633790016174e-01, 2.591964304447174e-01, 2.608602046966553e-01, 2.623704671859741e-01, 2.637414336204529e-01, 2.649859488010406e-01, 2.66115665435791e-01, 2.671412229537964e-01, 2.680721879005432e-01, 2.689174115657806e-01, 2.696846723556519e-01, 2.703812718391418e-01, 2.710136473178864e-01, 2.715877592563629e-01, 2.721089720726013e-01, 2.725821733474731e-01, 2.730118036270142e-01, 2.734018266201019e-01, 2.737559378147125e-01, 2.74077445268631e-01, 2.743692994117737e-01, 2.746343016624451e-01, 2.748748660087585e-01, 2.75093287229538e-01, 2.752915620803833e-01, 2.754715085029602e-01, 2.756348252296448e-01, 2.757830619812012e-01, 2.75917649269104e-01, 2.760398983955383e-01, 2.761509120464325e-01, 2.762516438961029e-01, 2.763431370258331e-01, 2.764262557029724e-01, 2.765016853809357e-01, 2.76570200920105e-01, 2.766324579715729e-01, 2.766889631748199e-01, 2.767402827739716e-01, 2.767868638038635e-01, 2.768291831016541e-01, 2.768675982952118e-01, 2.769024670124054e-01, 2.769341170787811e-01, 2.769628465175629e-01, 2.769889235496521e-01, 2.770126163959503e-01, 2.770341634750366e-01, 2.770536839962006e-01, 2.770714163780212e-01, 2.77087539434433e-01, 2.771021723747253e-01, 2.771154642105103e-01, 2.771275341510773e-01, 2.771384716033936e-01, 2.77148425579071e-01, 2.771574556827545e-01, 2.771656513214111e-01, 2.771731019020081e-01, 2.771798670291901e-01, 2.771860063076019e-01] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Examples_ASHREA140_CompareDynamicAndStaticSolarFrac_Case270.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Examples_ASHREA140_CompareDynamicAndStaticSolarFrac_Case270.txt index 686d738ba0..2cf3567857 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Examples_ASHREA140_CompareDynamicAndStaticSolarFrac_Case270.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Examples_ASHREA140_CompareDynamicAndStaticSolarFrac_Case270.txt @@ -1,9 +1,9 @@ -last-generated=2021-03-08 +last-generated=2022-03-16 statistics-simulation= { "linear": "0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0", "nonlinear": "13, 13", - "number of continuous time states": "43", + "number of continuous time states": "47", "numerical Jacobians": "0" } time=[0e+00, 8.64e+04] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Examples_OFDHeatLoad.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Examples_OFDHeatLoad.txt index 0a99f0bab5..3e459e9728 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Examples_OFDHeatLoad.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Examples_OFDHeatLoad.txt @@ -1,4 +1,4 @@ -last-generated=2021-05-25 +last-generated=2022-03-24 statistics-initialization= { "nonlinear": "0, 1, 0, 1", @@ -7,18 +7,18 @@ statistics-initialization= statistics-simulation= { "linear": "0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0", - "nonlinear": "9, 8, 7, 8, 7, 8, 9, 8, 9, 8, 10", - "number of continuous time states": "229", + "nonlinear": "5, 9, 5, 8, 5, 7, 5, 8, 5, 7, 5, 8, 5, 9, 5, 8, 5, 9, 5, 8, 10", + "number of continuous time states": "251", "numerical Jacobians": "0" } time=[0e+00, 2.592e+07] -totalHeatLoad=[4.7266953125e+03, 5.4441279296875e+03, 5.728228515625e+03, 5.8078935546875e+03, 5.8408671875e+03, 5.8566650390625e+03, 5.86463134765625e+03, 5.86876025390625e+03, 5.870931640625e+03, 5.8720908203125e+03, 5.87271875e+03, 5.8730556640625e+03, 5.8732314453125e+03, 5.87332275390625e+03, 5.8733720703125e+03, 5.87340283203125e+03, 5.87341748046875e+03, 5.873421875e+03, 5.87342724609375e+03, 5.87343115234375e+03, 5.87343310546875e+03, 5.87343212890625e+03, 5.873431640625e+03, 5.8734306640625e+03, 5.8734296875e+03, 5.8734287109375e+03, 5.87342822265625e+03, 5.87342724609375e+03, 5.87342724609375e+03, 5.87342724609375e+03, 5.8734267578125e+03, 5.8734267578125e+03, 5.8734267578125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03] -roomHeatLoads[1]=[1.09054248046875e+03, 1.062708251953125e+03, 1.098964599609375e+03, 1.112084594726562e+03, 1.11841943359375e+03, 1.121747924804688e+03, 1.1235302734375e+03, 1.124488037109375e+03, 1.125004638671875e+03, 1.125285522460938e+03, 1.125439331054688e+03, 1.125522827148438e+03, 1.12556689453125e+03, 1.125590209960938e+03, 1.125602783203125e+03, 1.125610473632812e+03, 1.1256142578125e+03, 1.125615478515625e+03, 1.125616821289062e+03, 1.125617919921875e+03, 1.125618408203125e+03, 1.125618286132812e+03, 1.125618041992188e+03, 1.125617797851562e+03, 1.12561767578125e+03, 1.125617431640625e+03, 1.1256171875e+03, 1.125617065429688e+03, 1.125617065429688e+03, 1.125616943359375e+03, 1.125616943359375e+03, 1.125616943359375e+03, 1.125616821289062e+03, 1.125616821289062e+03, 1.125616821289062e+03, 1.125616821289062e+03, 1.125616821289062e+03, 1.125616821289062e+03, 1.125616821289062e+03, 1.125616821289062e+03, 1.125616821289062e+03, 1.125616821289062e+03, 1.125616821289062e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03] -roomHeatLoads[2]=[4.775008544921875e+02, 5.244562377929688e+02, 5.538925170898438e+02, 5.625191650390625e+02, 5.663964233398438e+02, 5.683944702148438e+02, 5.694560546875e+02, 5.700241088867188e+02, 5.703294677734375e+02, 5.704949340820312e+02, 5.705852661132812e+02, 5.706341552734375e+02, 5.706598510742188e+02, 5.7067333984375e+02, 5.706805419921875e+02, 5.7068505859375e+02, 5.70687255859375e+02, 5.706878662109375e+02, 5.70688720703125e+02, 5.706892700195312e+02, 5.706895751953125e+02, 5.706895141601562e+02, 5.706893920898438e+02, 5.70689208984375e+02, 5.706890869140625e+02, 5.7068896484375e+02, 5.706888427734375e+02, 5.706887817382812e+02, 5.706887817382812e+02, 5.70688720703125e+02, 5.70688720703125e+02, 5.706886596679688e+02, 5.706886596679688e+02, 5.706886596679688e+02, 5.706886596679688e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02] -roomHeatLoads[3]=[-4.256495971679688e+02, 1.348667335510254e+01, 5.571290588378906e+01, 6.845783233642578e+01, 7.427991485595703e+01, 7.730323791503906e+01, 7.889966583251953e+01, 7.973834991455078e+01, 8.018106842041016e+01, 8.04168701171875e+01, 8.054357147216797e+01, 8.061099243164062e+01, 8.064569091796875e+01, 8.066352081298828e+01, 8.067293548583984e+01, 8.067876434326172e+01, 8.068155670166016e+01, 8.068224334716797e+01, 8.06832275390625e+01, 8.068389892578125e+01, 8.068426513671875e+01, 8.068412780761719e+01, 8.06839599609375e+01, 8.068379211425781e+01, 8.068361663818359e+01, 8.068344879150391e+01, 8.068328094482422e+01, 8.068315887451172e+01, 8.068312835693359e+01, 8.068309783935547e+01, 8.068305969238281e+01, 8.068302917480469e+01, 8.068299102783203e+01, 8.068296051025391e+01, 8.068295288085938e+01, 8.068295288085938e+01, 8.068294525146484e+01, 8.068294525146484e+01, 8.068293762207031e+01, 8.068293762207031e+01, 8.068292999267578e+01, 8.068292999267578e+01, 8.068292236328125e+01, 8.068292236328125e+01, 8.068291473388672e+01, 8.068291473388672e+01, 8.068291473388672e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01] -roomHeatLoads[4]=[6.322332763671875e+02, 6.398997802734375e+02, 6.64912841796875e+02, 6.729744262695312e+02, 6.76729248046875e+02, 6.78678955078125e+02, 6.797150268554688e+02, 6.802689819335938e+02, 6.805663452148438e+02, 6.80727294921875e+02, 6.808150634765625e+02, 6.808624877929688e+02, 6.808873901367188e+02, 6.809004516601562e+02, 6.809074096679688e+02, 6.809117431640625e+02, 6.809138793945312e+02, 6.809144897460938e+02, 6.80915283203125e+02, 6.809158325195312e+02, 6.809161376953125e+02, 6.80916015625e+02, 6.809158935546875e+02, 6.80915771484375e+02, 6.809156494140625e+02, 6.8091552734375e+02, 6.809154052734375e+02, 6.809153442382812e+02, 6.809153442382812e+02, 6.80915283203125e+02, 6.80915283203125e+02, 6.809152221679688e+02, 6.809152221679688e+02, 6.809152221679688e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02] -roomHeatLoads[5]=[7.7418408203125e+02, 7.5519384765625e+02, 7.878541259765625e+02, 7.990148315429688e+02, 8.043147583007812e+02, 8.070897216796875e+02, 8.0857421875e+02, 8.09371337890625e+02, 8.098009033203125e+02, 8.100341796875e+02, 8.101618041992188e+02, 8.102310180664062e+02, 8.10267578125e+02, 8.102868041992188e+02, 8.102971801757812e+02, 8.103035278320312e+02, 8.103067016601562e+02, 8.103076171875e+02, 8.10308837890625e+02, 8.103096313476562e+02, 8.103101196289062e+02, 8.103099365234375e+02, 8.10309814453125e+02, 8.103096313476562e+02, 8.103094482421875e+02, 8.103092651367188e+02, 8.1030908203125e+02, 8.103089599609375e+02, 8.103089599609375e+02, 8.103088989257812e+02, 8.10308837890625e+02, 8.10308837890625e+02, 8.103087768554688e+02, 8.103087768554688e+02, 8.103087768554688e+02, 8.103087768554688e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02] -roomHeatLoads[6]=[7.299152221679688e+02, 7.510157470703125e+02, 7.826781005859375e+02, 7.897803344726562e+02, 7.919388427734375e+02, 7.926888427734375e+02, 7.929728393554688e+02, 7.9308740234375e+02, 7.931375732421875e+02, 7.93161376953125e+02, 7.9317333984375e+02, 7.931792602539062e+02, 7.931820678710938e+02, 7.931834716796875e+02, 7.931842651367188e+02, 7.93184814453125e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851806640625e+02, 7.931852416992188e+02, 7.931852416992188e+02, 7.931852416992188e+02, 7.931851806640625e+02, 7.931851806640625e+02, 7.931851806640625e+02, 7.931851806640625e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02] -roomHeatLoads[7]=[4.876688842773438e+02, 5.34806640625e+02, 5.5576025390625e+02, 5.600908203125e+02, 5.61330810546875e+02, 5.61746826171875e+02, 5.619002685546875e+02, 5.619608764648438e+02, 5.6198681640625e+02, 5.619989013671875e+02, 5.620048828125e+02, 5.620078125e+02, 5.620091552734375e+02, 5.620098266601562e+02, 5.620101928710938e+02, 5.62010498046875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106811523438e+02, 5.620106811523438e+02, 5.620106811523438e+02, 5.620106811523438e+02, 5.620106811523438e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02] -roomHeatLoads[8]=[-6.375133666992188e+02, -9.676878356933594e+01, -7.184263610839844e+01, -6.690968322753906e+01, -6.533921051025391e+01, -6.478348541259766e+01, -6.458836364746094e+01, -6.449853515625e+01, -6.44586181640625e+01, -6.444107055664062e+01, -6.443228149414062e+01, -6.442786407470703e+01, -6.442587280273438e+01, -6.442487335205078e+01, -6.442431640625e+01, -6.442391967773438e+01, -6.442372894287109e+01, -6.442372131347656e+01, -6.442367553710938e+01, -6.442364501953125e+01, -6.442363739013672e+01, -6.442365264892578e+01, -6.442366790771484e+01, -6.442367553710938e+01, -6.442369079589844e+01, -6.44237060546875e+01, -6.442372131347656e+01, -6.442372894287109e+01, -6.442372894287109e+01, -6.442372894287109e+01, -6.442373657226562e+01, -6.442373657226562e+01, -6.442373657226562e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01] -roomHeatLoads[9]=[9.719187622070312e+02, 6.541995239257812e+02, 6.696292114257812e+02, 6.734947509765625e+02, 6.746792602539062e+02, 6.750817260742188e+02, 6.75229248046875e+02, 6.752867431640625e+02, 6.7531103515625e+02, 6.75322265625e+02, 6.753277587890625e+02, 6.753303833007812e+02, 6.753316040039062e+02, 6.753322143554688e+02, 6.7533251953125e+02, 6.75332763671875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753329467773438e+02, 6.753329467773438e+02, 6.753329467773438e+02, 6.753329467773438e+02, 6.753329467773438e+02, 6.753329467773438e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02] +totalHeatLoad=[4.7266953125e+03, 5.4441484375e+03, 5.7282021484375e+03, 5.80786279296875e+03, 5.84085400390625e+03, 5.8566552734375e+03, 5.8646396484375e+03, 5.86876611328125e+03, 5.8709404296875e+03, 5.87208935546875e+03, 5.8726943359375e+03, 5.873021484375e+03, 5.87320361328125e+03, 5.8733056640625e+03, 5.87336279296875e+03, 5.8733974609375e+03, 5.87341357421875e+03, 5.87342138671875e+03, 5.87342822265625e+03, 5.87343212890625e+03, 5.87343212890625e+03, 5.873431640625e+03, 5.8734306640625e+03, 5.8734296875e+03, 5.8734287109375e+03, 5.873427734375e+03, 5.87342724609375e+03, 5.87342724609375e+03, 5.87342724609375e+03, 5.8734267578125e+03, 5.8734267578125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03, 5.87342626953125e+03] +roomHeatLoads[1]=[1.09054248046875e+03, 1.062708984375e+03, 1.098963989257812e+03, 1.112082763671875e+03, 1.118417846679688e+03, 1.121747680664062e+03, 1.123530029296875e+03, 1.12448974609375e+03, 1.125006591796875e+03, 1.12528515625e+03, 1.12543408203125e+03, 1.12551513671875e+03, 1.125560546875e+03, 1.125586059570312e+03, 1.1256005859375e+03, 1.125609252929688e+03, 1.125613403320312e+03, 1.125615478515625e+03, 1.1256171875e+03, 1.125618286132812e+03, 1.125618286132812e+03, 1.125618041992188e+03, 1.125617797851562e+03, 1.125617553710938e+03, 1.125617309570312e+03, 1.1256171875e+03, 1.125617065429688e+03, 1.125617065429688e+03, 1.125616943359375e+03, 1.125616943359375e+03, 1.125616821289062e+03, 1.125616821289062e+03, 1.125616821289062e+03, 1.125616821289062e+03, 1.125616821289062e+03, 1.125616821289062e+03, 1.125616821289062e+03, 1.125616821289062e+03, 1.125616821289062e+03, 1.125616821289062e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03, 1.12561669921875e+03] +roomHeatLoads[2]=[4.775008544921875e+02, 5.244566650390625e+02, 5.538900146484375e+02, 5.625169067382812e+02, 5.663948974609375e+02, 5.683942260742188e+02, 5.694559326171875e+02, 5.700250854492188e+02, 5.7033056640625e+02, 5.704946899414062e+02, 5.705820922851562e+02, 5.706295776367188e+02, 5.70656005859375e+02, 5.706708984375e+02, 5.706792602539062e+02, 5.70684326171875e+02, 5.706867065429688e+02, 5.706878662109375e+02, 5.706889038085938e+02, 5.70689453125e+02, 5.706895141601562e+02, 5.706893920898438e+02, 5.70689208984375e+02, 5.706890869140625e+02, 5.7068896484375e+02, 5.706888427734375e+02, 5.706887817382812e+02, 5.706887817382812e+02, 5.70688720703125e+02, 5.70688720703125e+02, 5.706886596679688e+02, 5.706886596679688e+02, 5.706886596679688e+02, 5.706886596679688e+02, 5.706886596679688e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02, 5.706885986328125e+02] +roomHeatLoads[3]=[-4.256495971679688e+02, 1.348681449890137e+01, 5.570709609985352e+01, 6.845440673828125e+01, 7.427794647216797e+01, 7.730278778076172e+01, 7.889949798583984e+01, 7.974004364013672e+01, 8.018283081054688e+01, 8.041652679443359e+01, 8.05386962890625e+01, 8.060402679443359e+01, 8.063993835449219e+01, 8.065996551513672e+01, 8.067105865478516e+01, 8.067774963378906e+01, 8.068077087402344e+01, 8.068218231201172e+01, 8.06834716796875e+01, 8.068416595458984e+01, 8.068417358398438e+01, 8.068398284912109e+01, 8.068379974365234e+01, 8.068360900878906e+01, 8.068341827392578e+01, 8.068323516845703e+01, 8.068316650390625e+01, 8.068312835693359e+01, 8.068309020996094e+01, 8.068304443359375e+01, 8.068300628662109e+01, 8.068296813964844e+01, 8.068296051025391e+01, 8.068296051025391e+01, 8.068295288085938e+01, 8.068294525146484e+01, 8.068294525146484e+01, 8.068293762207031e+01, 8.068293762207031e+01, 8.068292999267578e+01, 8.068292236328125e+01, 8.068292236328125e+01, 8.068291473388672e+01, 8.068291473388672e+01, 8.068291473388672e+01, 8.068291473388672e+01, 8.068291473388672e+01, 8.068291473388672e+01, 8.068291473388672e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01, 8.068290710449219e+01] +roomHeatLoads[4]=[6.322332763671875e+02, 6.399002685546875e+02, 6.6491162109375e+02, 6.72972900390625e+02, 6.767281494140625e+02, 6.786787109375e+02, 6.797149658203125e+02, 6.802699584960938e+02, 6.805675048828125e+02, 6.8072705078125e+02, 6.808119506835938e+02, 6.808580322265625e+02, 6.808836059570312e+02, 6.808980712890625e+02, 6.809061889648438e+02, 6.809110717773438e+02, 6.80913330078125e+02, 6.809144897460938e+02, 6.809154663085938e+02, 6.80916015625e+02, 6.80916015625e+02, 6.809158935546875e+02, 6.80915771484375e+02, 6.809156494140625e+02, 6.8091552734375e+02, 6.809154052734375e+02, 6.809153442382812e+02, 6.80915283203125e+02, 6.80915283203125e+02, 6.80915283203125e+02, 6.809152221679688e+02, 6.809152221679688e+02, 6.809152221679688e+02, 6.809152221679688e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02, 6.809151611328125e+02] +roomHeatLoads[5]=[7.7418408203125e+02, 7.551945190429688e+02, 7.878529663085938e+02, 7.990128784179688e+02, 8.04313232421875e+02, 8.070894165039062e+02, 8.085740966796875e+02, 8.093727416992188e+02, 8.09802490234375e+02, 8.100338134765625e+02, 8.101574096679688e+02, 8.102246704101562e+02, 8.1026220703125e+02, 8.102833862304688e+02, 8.102953491210938e+02, 8.103025512695312e+02, 8.103059692382812e+02, 8.103076171875e+02, 8.103091430664062e+02, 8.103099365234375e+02, 8.103099975585938e+02, 8.10309814453125e+02, 8.103095703125e+02, 8.103093872070312e+02, 8.103092041015625e+02, 8.103090209960938e+02, 8.103089599609375e+02, 8.103088989257812e+02, 8.103088989257812e+02, 8.10308837890625e+02, 8.103087768554688e+02, 8.103087768554688e+02, 8.103087768554688e+02, 8.103087768554688e+02, 8.103087768554688e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02, 8.103087158203125e+02] +roomHeatLoads[6]=[7.299152221679688e+02, 7.510208740234375e+02, 7.826742553710938e+02, 7.897774658203125e+02, 7.919366455078125e+02, 7.926880493164062e+02, 7.9297265625e+02, 7.930880737304688e+02, 7.931380615234375e+02, 7.931612548828125e+02, 7.9317236328125e+02, 7.931781616210938e+02, 7.931813354492188e+02, 7.9318310546875e+02, 7.9318408203125e+02, 7.931846313476562e+02, 7.931848754882812e+02, 7.931849975585938e+02, 7.931851196289062e+02, 7.931851806640625e+02, 7.931851806640625e+02, 7.931851806640625e+02, 7.931851806640625e+02, 7.931851806640625e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02, 7.931851196289062e+02] +roomHeatLoads[7]=[4.876688842773438e+02, 5.348095703125e+02, 5.5575732421875e+02, 5.600884399414062e+02, 5.613292236328125e+02, 5.617460327148438e+02, 5.61900390625e+02, 5.619611206054688e+02, 5.61987060546875e+02, 5.619988403320312e+02, 5.620043334960938e+02, 5.620072021484375e+02, 5.620087890625e+02, 5.620096435546875e+02, 5.620101318359375e+02, 5.620103759765625e+02, 5.62010498046875e+02, 5.620105590820312e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02, 5.620106201171875e+02] +roomHeatLoads[8]=[-6.375133666992188e+02, -9.676573944091797e+01, -7.184738922119141e+01, -6.692112731933594e+01, -6.533802795410156e+01, -6.47884521484375e+01, -6.457949829101562e+01, -6.450078582763672e+01, -6.445851898193359e+01, -6.444115447998047e+01, -6.443296813964844e+01, -6.442873382568359e+01, -6.442641448974609e+01, -6.442514038085938e+01, -6.442446136474609e+01, -6.442405700683594e+01, -6.442388153076172e+01, -6.442379760742188e+01, -6.442372131347656e+01, -6.442367553710938e+01, -6.442366790771484e+01, -6.442368316650391e+01, -6.442369079589844e+01, -6.44237060546875e+01, -6.442371368408203e+01, -6.442372894287109e+01, -6.442372894287109e+01, -6.442372894287109e+01, -6.442373657226562e+01, -6.442373657226562e+01, -6.442373657226562e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01, -6.442374420166016e+01] +roomHeatLoads[9]=[9.719187622070312e+02, 6.542027587890625e+02, 6.696284790039062e+02, 6.734935302734375e+02, 6.746781005859375e+02, 6.750809936523438e+02, 6.752293701171875e+02, 6.752869873046875e+02, 6.753113403320312e+02, 6.753222045898438e+02, 6.753272094726562e+02, 6.75329833984375e+02, 6.753312377929688e+02, 6.7533203125e+02, 6.753324584960938e+02, 6.753327026367188e+02, 6.75332763671875e+02, 6.753328247070312e+02, 6.753328857421875e+02, 6.753329467773438e+02, 6.753329467773438e+02, 6.753329467773438e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02, 6.753328857421875e+02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Examples_RoomGFOw2_DayNightMode.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Examples_RoomGFOw2_DayNightMode.txt index a842e196f1..9246e6668b 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Examples_RoomGFOw2_DayNightMode.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Examples_RoomGFOw2_DayNightMode.txt @@ -1,4 +1,4 @@ -last-generated=2021-05-25 +last-generated=2022-06-02 statistics-initialization= { "nonlinear": "73, 1", @@ -7,12 +7,12 @@ statistics-initialization= statistics-simulation= { "linear": "0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0", - "nonlinear": "1, 23", - "number of continuous time states": "55", + "nonlinear": "23, 1", + "number of continuous time states": "57", "numerical Jacobians": "0" } time=[0e+00, 8.64e+04] -TRoom=[2.941499938964844e+02, 2.901150817871094e+02, 2.9150244140625e+02, 2.916674377441406e+02, 2.916838195800781e+02, 2.916827087402344e+02, 2.916768493652344e+02, 2.916696899414063e+02, 2.916619384765625e+02, 2.9165947265625e+02, 2.916661987304688e+02, 2.916743774414062e+02, 2.916831359863281e+02, 2.916906005859375e+02, 2.91693310546875e+02, 2.916954345703125e+02, 2.916976745605469e+02, 2.916995544433594e+02, 2.91698779296875e+02, 2.916975341796875e+02, 2.916962890625e+02, 2.916952514648438e+02, 2.916971984863281e+02, 2.91700146484375e+02, 2.917033630371094e+02, 2.917068176269531e+02, 2.917855407714844e+02, 2.917966430664063e+02, 2.918012634277344e+02, 2.918046020507812e+02, 2.918112182617188e+02, 2.918210815429687e+02, 2.918313110351563e+02, 2.9184169921875e+02, 2.918510864257813e+02, 2.918597106933594e+02, 2.918692993164062e+02, 2.918797302246094e+02, 2.918931213378906e+02, 2.919157470703125e+02, 2.919419555664062e+02, 2.919703002929688e+02, 2.920005310058594e+02, 2.920345520019531e+02, 2.920709045410156e+02, 2.921088562011719e+02, 2.921488464355469e+02, 2.922102600097656e+02, 2.922824401855469e+02, 2.923590637207031e+02, 2.924384460449219e+02, 2.924894592285156e+02, 2.925168395996094e+02, 2.925359924316406e+02, 2.925507019042969e+02, 2.925536804199219e+02, 2.925443176269531e+02, 2.925307312011719e+02, 2.925143371582031e+02, 2.924984985351563e+02, 2.9248828125e+02, 2.924796997070313e+02, 2.924715454101562e+02, 2.924608276367188e+02, 2.924421691894531e+02, 2.924222106933594e+02, 2.924018310546875e+02, 2.923804748535156e+02, 2.923559936523437e+02, 2.923295837402344e+02, 2.923018798828125e+02, 2.922736206054688e+02, 2.922589050292969e+02, 2.922504211425781e+02, 2.922439331054687e+02, 2.922386474609375e+02, 2.922291442871094e+02, 2.922176025390625e+02, 2.922061401367188e+02, 2.921948059082031e+02, 2.921777038574219e+02, 2.921550842285156e+02, 2.921317687988281e+02, 2.921081298828125e+02, 2.920869567871094e+02, 2.920700378417969e+02, 2.920535827636719e+02, 2.920371520996094e+02, 2.92020703125e+02, 2.920042358398438e+02, 2.919877319335938e+02, 2.919711853027344e+02, 2.919069946289063e+02, 2.918500793457031e+02, 2.918320495605469e+02, 2.918169250488281e+02, 2.918019897460937e+02, 2.917904602050781e+02, 2.91780224609375e+02, 2.917703796386719e+02, 2.917608032226562e+02] -Q_flowToRoomConv=[-6.904750823974609e+00, 2.407760864257812e+02, 5.244493896484375e+02, 5.218718872070312e+02, 5.203004638671875e+02, 5.200010375976562e+02, 5.20084912109375e+02, 5.2024228515625e+02, 5.204232421875e+02, 5.20510791015625e+02, 5.20405517578125e+02, 5.202294067382812e+02, 5.200198120117187e+02, 5.198276733398437e+02, 5.19728662109375e+02, 5.19660888671875e+02, 5.196030395507812e+02, 5.195519653320313e+02, 5.195527954101562e+02, 5.19573583984375e+02, 5.1960205078125e+02, 5.196275756835937e+02, 5.195959838867187e+02, 5.19533544921875e+02, 5.194549560546875e+02, 5.193689575195312e+02, 5.340561767578125e+02, 5.337439819335938e+02, 5.335879516601562e+02, 5.335085327148438e+02, 5.33375732421875e+02, 5.331771118164063e+02, 5.329610595703125e+02, 5.327381469726563e+02, 5.325339965820312e+02, 5.323468627929688e+02, 5.321430786132812e+02, 5.319216430664062e+02, 5.316441162109375e+02, 5.311856201171875e+02, 5.306305541992188e+02, 5.300063598632812e+02, 5.293267456054688e+02, 5.28554541015625e+02, 5.277046997070313e+02, 5.267852172851562e+02, 5.257882690429688e+02, 5.243346557617188e+02, 5.224947998046875e+02, 5.203104736328125e+02, 5.178238525390625e+02, 5.155709716796875e+02, 5.138883178710937e+02, 5.12785498046875e+02, 5.11999609375e+02, 5.115552062988281e+02, 5.11587158203125e+02, 5.119919799804687e+02, 5.125978881835938e+02, 5.1326318359375e+02, 5.138037109375e+02, 5.14218505859375e+02, 5.14561767578125e+02, 5.149359985351563e+02, 5.155135375976563e+02, 5.162210083007812e+02, 5.169837158203125e+02, 5.1775712890625e+02, 5.185887573242187e+02, 5.194562744140625e+02, 5.203544921875e+02, 5.212580200195313e+02, 5.2187548828125e+02, 5.222573120117188e+02, 5.2249443359375e+02, 5.2267236328125e+02, 5.229179809570312e+02, 5.232260864257812e+02, 5.235592041015625e+02, 5.238906494140625e+02, 5.24328125e+02, 5.249048217773437e+02, 5.255354736328125e+02, 5.261753662109375e+02, 5.267582763671875e+02, 5.272337036132812e+02, 5.276667602539062e+02, 5.280828979492187e+02, 5.28492529296875e+02, 5.28897021484375e+02, 5.292969970703125e+02, 5.296930053710937e+02, 5.126204956054687e+02, 5.144632934570312e+02, 5.1560634765625e+02, 5.162030029296875e+02, 5.166439086914063e+02, 5.170015502929688e+02, 5.173082641601562e+02, 5.175848999023438e+02, 5.178475341796875e+02] -Q_flowToRoomRad=[-3.270439147949219e+00, 1.176645660400391e+02, 2.777508483886719e+02, 2.777387756347656e+02, 2.770281372070312e+02, 2.768823852539062e+02, 2.769185485839844e+02, 2.76991943359375e+02, 2.770769592285156e+02, 2.771593383789062e+02, 2.772147216796875e+02, 2.772394592285156e+02, 2.772475036621094e+02, 2.772501647949219e+02, 2.772603332519531e+02, 2.772820129394531e+02, 2.773092590332031e+02, 2.773361267089844e+02, 2.773674255371094e+02, 2.774052490234375e+02, 2.774470520019531e+02, 2.774885375976563e+02, 2.775242553710938e+02, 2.775502136230469e+02, 2.775681335449219e+02, 2.775824584960938e+02, 2.860328735351562e+02, 2.859505676269531e+02, 2.859076477050781e+02, 2.859019592285156e+02, 2.858998718261719e+02, 2.858906677246094e+02, 2.858744323730469e+02, 2.858546875e+02, 2.857613159179688e+02, 2.856239013671875e+02, 2.854780456542969e+02, 2.853245422363281e+02, 2.850807006835938e+02, 2.847179809570313e+02, 2.843150939941406e+02, 2.838796264648437e+02, 2.833974792480469e+02, 2.828384704589844e+02, 2.822433166503906e+02, 2.816129150390625e+02, 2.808937622070313e+02, 2.798005859375e+02, 2.785458190917969e+02, 2.771111755371094e+02, 2.75512451171875e+02, 2.747624938964844e+02, 2.742038269042969e+02, 2.739391967773437e+02, 2.738400756835937e+02, 2.74031982421875e+02, 2.744525268554688e+02, 2.750674377441406e+02, 2.757886169433594e+02, 2.763621459960938e+02, 2.768014221191406e+02, 2.771774780273437e+02, 2.775151550292969e+02, 2.778466918945313e+02, 2.782221008300781e+02, 2.786614074707031e+02, 2.791312438964844e+02, 2.796258544921875e+02, 2.801798706054688e+02, 2.807478149414063e+02, 2.813293762207031e+02, 2.818745544433594e+02, 2.821580810546875e+02, 2.823462585449219e+02, 2.824606384277344e+02, 2.825455017089844e+02, 2.826253479003906e+02, 2.827196472167969e+02, 2.828276306152344e+02, 2.829353210449219e+02, 2.830498657226562e+02, 2.83194384765625e+02, 2.833650207519531e+02, 2.835400085449219e+02, 2.837076110839844e+02, 2.838544006347656e+02, 2.839812072753906e+02, 2.840987060546875e+02, 2.842126220703125e+02, 2.843236694335938e+02, 2.844321594238281e+02, 2.845383483886719e+02, 2.749777160644531e+02, 2.755590393066406e+02, 2.76087744140625e+02, 2.763377075195312e+02, 2.764996948242188e+02, 2.766421081542969e+02, 2.767646667480469e+02, 2.768720397949219e+02, 2.769723815917969e+02] -m_flowHC=[8.198654651641846e-02, 1.996700502932072e-02, 8.118743151426315e-02, 8.177464753389359e-02, 7.719973176717758e-02, 7.625418901443481e-02, 7.621289938688278e-02, 7.632803171873093e-02, 7.648434191942215e-02, 7.663847357034684e-02, 7.66843780875206e-02, 7.657872587442398e-02, 7.640205472707748e-02, 7.620813697576523e-02, 7.60499119758606e-02, 7.59609267115593e-02, 7.590719014406204e-02, 7.585465759038926e-02, 7.58212760090828e-02, 7.582501769065857e-02, 7.58528932929039e-02, 7.58823961019516e-02, 7.589492052793503e-02, 7.58640393614769e-02, 7.57972925901413e-02, 7.571942359209061e-02, 2.287953108549118e-01, 2.256593465805054e-01, 2.237391829490662e-01, 2.232441127300263e-01, 2.228857725858688e-01, 2.223290205001831e-01, 2.215000659227371e-01, 2.205635219812393e-01, 2.195994704961777e-01, 2.186808735132217e-01, 2.177934974431991e-01, 2.168299645185471e-01, 2.157386362552643e-01, 2.142004251480102e-01, 2.11872860789299e-01, 2.08852756023407e-01, 2.053944647312164e-01, 2.014478951692581e-01, 1.96857026219368e-01, 1.916123181581497e-01, 1.858138263225556e-01, 1.787986516952515e-01, 1.690492987632752e-01, 1.565109193325043e-01, 1.4262954890728e-01, 1.286962687969208e-01, 1.185138642787933e-01, 1.128691256046295e-01, 1.092800557613373e-01, 1.068300306797027e-01, 1.061730653047562e-01, 1.074345961213112e-01, 1.097126752138138e-01, 1.125082209706307e-01, 1.151870414614677e-01, 1.172301784157753e-01, 1.188484698534012e-01, 1.204012408852577e-01, 1.225445941090584e-01, 1.256970465183258e-01, 1.294186264276505e-01, 1.333018928766251e-01, 1.374617367982865e-01, 1.418948024511337e-01, 1.46690770983696e-01, 1.517328888177872e-01, 1.563753873109817e-01, 1.595138341188431e-01, 1.612215876579285e-01, 1.624292880296707e-01, 1.635582983493805e-01, 1.650919616222382e-01, 1.670499742031097e-01, 1.690523058176041e-01, 1.711578965187073e-01, 1.739930063486099e-01, 1.776229858398438e-01, 1.814422994852066e-01, 1.851748645305634e-01, 1.884540170431137e-01, 1.911597013473511e-01, 1.936121433973312e-01, 1.959904700517655e-01, 1.983059257268906e-01, 2.005598545074463e-01, 2.027529001235962e-01, 6.643655449151993e-02, 6.871166974306106e-02, 7.097392529249191e-02, 7.188177853822708e-02, 7.241377085447312e-02, 7.288243770599365e-02, 7.326914966106415e-02, 7.359049916267395e-02, 7.388611882925034e-02] +TRoom=[2.941499938964844e+02, 2.911652954101563e+02, 2.916948120117187e+02, 2.917238403320313e+02, 2.917199645996094e+02, 2.917113952636719e+02, 2.917000915527344e+02, 2.916892944335938e+02, 2.916790588378906e+02, 2.916747680664063e+02, 2.9168017578125e+02, 2.916873107910156e+02, 2.916953186035156e+02, 2.917023132324219e+02, 2.917045104980469e+02, 2.91706298828125e+02, 2.917082092285156e+02, 2.917098693847656e+02, 2.917088439941406e+02, 2.917073547363281e+02, 2.917059020996094e+02, 2.917046813964844e+02, 2.917063903808594e+02, 2.917091491699219e+02, 2.917122131347656e+02, 2.917154846191406e+02, 2.917938903808594e+02, 2.918049682617187e+02, 2.918096801757812e+02, 2.918129333496094e+02, 2.918193359375e+02, 2.918290771484375e+02, 2.91839208984375e+02, 2.918494506835938e+02, 2.918587585449219e+02, 2.918672180175781e+02, 2.918767456054687e+02, 2.91887060546875e+02, 2.919003295898438e+02, 2.919227478027344e+02, 2.919487609863281e+02, 2.919769104003906e+02, 2.920070007324219e+02, 2.920408325195312e+02, 2.920769775390625e+02, 2.921147155761719e+02, 2.921545227050781e+02, 2.922154846191406e+02, 2.922869812011719e+02, 2.923629638671875e+02, 2.924417114257812e+02, 2.92492529296875e+02, 2.925204895019531e+02, 2.925402709960937e+02, 2.92555126953125e+02, 2.925583190917969e+02, 2.925495483398437e+02, 2.925364013671875e+02, 2.92520166015625e+02, 2.925044006347656e+02, 2.924939880371094e+02, 2.924852111816406e+02, 2.924769775390625e+02, 2.924663208007813e+02, 2.92447802734375e+02, 2.924280395507812e+02, 2.924076599121094e+02, 2.923863037109375e+02, 2.923618835449219e+02, 2.923355346679688e+02, 2.923078308105469e+02, 2.922795349121094e+02, 2.922646179199219e+02, 2.922558166503906e+02, 2.922491333007812e+02, 2.922437744140625e+02, 2.922342712402344e+02, 2.922227844238281e+02, 2.92211328125e+02, 2.921999633789063e+02, 2.921828918457031e+02, 2.921603942871094e+02, 2.921371398925781e+02, 2.921135009765625e+02, 2.920922241210938e+02, 2.920752563476562e+02, 2.920587219238281e+02, 2.920422546386719e+02, 2.920257995605469e+02, 2.920093017578125e+02, 2.919927673339844e+02, 2.919761901855469e+02, 2.919125854492187e+02, 2.918568237304688e+02, 2.9183798828125e+02, 2.91822021484375e+02, 2.918069946289062e+02, 2.917953735351563e+02, 2.917850524902344e+02, 2.917751708984375e+02, 2.917655639648438e+02] +Q_flowToRoomConv=[-6.904750823974609e+00, 5.218639282226562e+02, 5.198139404296875e+02, 5.19089990234375e+02, 5.190717041015625e+02, 5.192357177734375e+02, 5.194980712890625e+02, 5.197634155273438e+02, 5.200159790039063e+02, 5.20150830078125e+02, 5.200565795898438e+02, 5.198947143554688e+02, 5.19701806640625e+02, 5.195198974609375e+02, 5.194424682617188e+02, 5.193895874023438e+02, 5.193385009765625e+02, 5.192921630859375e+02, 5.193035278320312e+02, 5.193345825195313e+02, 5.193684692382812e+02, 5.193985717773437e+02, 5.193679809570312e+02, 5.193038818359375e+02, 5.192278686523438e+02, 5.191448974609375e+02, 5.33831005859375e+02, 5.335359130859375e+02, 5.3341025390625e+02, 5.33331787109375e+02, 5.332003784179688e+02, 5.329976318359375e+02, 5.327815551757812e+02, 5.3256005859375e+02, 5.323569702148437e+02, 5.321737670898438e+02, 5.319699584960938e+02, 5.317482421875e+02, 5.314697021484375e+02, 5.31000927734375e+02, 5.3043505859375e+02, 5.298050659179687e+02, 5.291193359375e+02, 5.283362182617187e+02, 5.274720581054687e+02, 5.265386352539062e+02, 5.255266723632812e+02, 5.240173950195312e+02, 5.220800048828125e+02, 5.198219848632813e+02, 5.1725146484375e+02, 5.149822875976563e+02, 5.134989868164063e+02, 5.124612182617187e+02, 5.116878173828125e+02, 5.112890930175781e+02, 5.114411926269531e+02, 5.118871826171875e+02, 5.12503564453125e+02, 5.131738403320312e+02, 5.136746826171875e+02, 5.14067138671875e+02, 5.14411767578125e+02, 5.147921508789062e+02, 5.154248413085937e+02, 5.161565551757812e+02, 5.169151000976562e+02, 5.176893676757812e+02, 5.185326049804687e+02, 5.194091430664063e+02, 5.203104248046875e+02, 5.212156494140625e+02, 5.217985229492188e+02, 5.22134423828125e+02, 5.223669311523438e+02, 5.225447387695312e+02, 5.22799267578125e+02, 5.23124951171875e+02, 5.234589721679688e+02, 5.237900024414063e+02, 5.242364501953125e+02, 5.248385131835937e+02, 5.254720458984375e+02, 5.261095581054688e+02, 5.266901611328125e+02, 5.271517944335938e+02, 5.27581298828125e+02, 5.279987670898438e+02, 5.284089721679687e+02, 5.2881376953125e+02, 5.29214111328125e+02, 5.296103881835937e+02, 5.126035400390625e+02, 5.14701513671875e+02, 5.155526733398438e+02, 5.161013793945312e+02, 5.165583374023438e+02, 5.16915185546875e+02, 5.172151489257812e+02, 5.17491796875e+02, 5.177551879882812e+02] +Q_flowToRoomRad=[-3.270439386367798e+00, 2.727572937011719e+02, 2.764569946289063e+02, 2.7640498046875e+02, 2.764428100585938e+02, 2.765351257324219e+02, 2.766536010742187e+02, 2.767750122070312e+02, 2.768915283203125e+02, 2.769935668945312e+02, 2.770505981445312e+02, 2.770796142578125e+02, 2.770943176269531e+02, 2.771017578125e+02, 2.771217041015625e+02, 2.771505737304688e+02, 2.771806091308594e+02, 2.772098999023438e+02, 2.772461059570313e+02, 2.772888488769531e+02, 2.773330993652344e+02, 2.773765869140625e+02, 2.774119750976562e+02, 2.77436572265625e+02, 2.774554565429688e+02, 2.774709777832031e+02, 2.85919189453125e+02, 2.858466674804687e+02, 2.858216430664062e+02, 2.858163757324219e+02, 2.8581396484375e+02, 2.858024536132813e+02, 2.857858947753906e+02, 2.857665283203125e+02, 2.8567412109375e+02, 2.855379333496094e+02, 2.853918518066406e+02, 2.852378479003906e+02, 2.849931274414063e+02, 2.846236389160156e+02, 2.842140197753906e+02, 2.837746704101563e+02, 2.832885986328125e+02, 2.827226623535156e+02, 2.821188537597656e+02, 2.814800720214844e+02, 2.807517700195312e+02, 2.79625634765625e+02, 2.783142395019531e+02, 2.768357116699219e+02, 2.751879272460938e+02, 2.744281311035156e+02, 2.739819580078125e+02, 2.737575988769531e+02, 2.736665588378906e+02, 2.738847961425781e+02, 2.74374365234375e+02, 2.750148742675781e+02, 2.757428466796875e+02, 2.763196533203125e+02, 2.76736328125e+02, 2.770989868164062e+02, 2.774370727539062e+02, 2.777726989746094e+02, 2.781788757324219e+02, 2.786329040527344e+02, 2.791007202148438e+02, 2.795958251953125e+02, 2.801566650390625e+02, 2.807299438476563e+02, 2.813134460449219e+02, 2.818593994140625e+02, 2.821230285644531e+02, 2.822842895507812e+02, 2.823951354980469e+02, 2.824796752929688e+02, 2.825645080566406e+02, 2.826689025878906e+02, 2.827776245117187e+02, 2.828849975585937e+02, 2.830049133300781e+02, 2.831639831542969e+02, 2.833367553710938e+02, 2.835104858398437e+02, 2.836762268066406e+02, 2.838153381347656e+02, 2.839398681640625e+02, 2.840579895019531e+02, 2.841721862792969e+02, 2.842834167480469e+02, 2.843920288085938e+02, 2.8449833984375e+02, 2.749772216796875e+02, 2.757027221679688e+02, 2.760697387695312e+02, 2.762875061035156e+02, 2.764577575683594e+02, 2.765993286132813e+02, 2.767180725097656e+02, 2.768252746582031e+02, 2.769259948730469e+02] +m_flowHC=[8.198654651641846e-02, 6.396539136767387e-02, 7.628165930509567e-02, 7.557349503040314e-02, 7.533157467842103e-02, 7.539687305688858e-02, 7.56183460354805e-02, 7.587444186210632e-02, 7.612179666757583e-02, 7.632181495428085e-02, 7.632529735565186e-02, 7.621154189109802e-02, 7.604820728302002e-02, 7.586357295513153e-02, 7.574906349182128e-02, 7.568740844726562e-02, 7.563780844211579e-02, 7.558928579092025e-02, 7.557661384344101e-02, 7.559994012117385e-02, 7.563357800245285e-02, 7.566730529069901e-02, 7.566869109869004e-02, 7.562272995710373e-02, 7.555555552244186e-02, 7.547873258590698e-02, 2.266300290822983e-01, 2.2405746281147e-01, 2.229890555143356e-01, 2.224773675203323e-01, 2.220560908317566e-01, 2.213452100753784e-01, 2.204665184020996e-01, 2.195167362689972e-01, 2.18547597527504e-01, 2.176669090986252e-01, 2.167488366365433e-01, 2.157358944416046e-01, 2.145767748355865e-01, 2.126986920833588e-01, 2.100628912448883e-01, 2.068851500749588e-01, 2.032844692468643e-01, 1.990927189588547e-01, 1.942324787378311e-01, 1.887802630662918e-01, 1.82794252038002e-01, 1.748682498931885e-01, 1.638725727796554e-01, 1.509414792060852e-01, 1.369103789329529e-01, 1.23916032910347e-01, 1.160174176096916e-01, 1.110911801457405e-01, 1.077070236206055e-01, 1.056627184152603e-01, 1.058427780866623e-01, 1.073966175317764e-01, 1.097633570432663e-01, 1.125990837812424e-01, 1.149539723992348e-01, 1.168008908629417e-01, 1.184101104736328e-01, 1.200192987918854e-01, 1.226408898830414e-01, 1.260280162096024e-01, 1.297325223684311e-01, 1.336437046527862e-01, 1.379633873701096e-01, 1.425358176231384e-01, 1.47415667772293e-01, 1.525196522474289e-01, 1.566683143377304e-01, 1.591107994318008e-01, 1.607097178697586e-01, 1.618888825178146e-01, 1.631488710641861e-01, 1.649479389190674e-01, 1.669149696826935e-01, 1.688985824584961e-01, 1.711701154708862e-01, 1.744572252035141e-01, 1.781664222478866e-01, 1.819634228944778e-01, 1.856399476528168e-01, 1.886474788188934e-01, 1.912694752216339e-01, 1.937405586242676e-01, 1.961254000663757e-01, 1.984430611133575e-01, 2.006981074810028e-01, 2.028921157121658e-01, 6.669948399066924e-02, 6.965685039758682e-02, 7.107253819704056e-02, 7.184145599603653e-02, 7.241519838571549e-02, 7.287400662899017e-02, 7.323768883943557e-02, 7.355694472789764e-02, 7.38530308008194e-02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case210.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case210.txt index 35ce3bd51b..24445ced09 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case210.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case210.txt @@ -1,20 +1,20 @@ -last-generated=2021-05-25 +last-generated=2022-07-06 statistics-simulation= { "linear": "0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0", "nonlinear": "13", - "number of continuous time states": "23", + "number of continuous time states": "25", "numerical Jacobians": "0" } time=[0e+00, 3.15396e+07] checkResultsAccordingToASHRAEHeatingOrTempMax.lowerLimit=[6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03, 6.456e+03] -AnnualHeatingLoad=[0e+00, 2.072940237426758e+02, 3.456736010742188e+02, 4.472296459960937e+02, 5.645642919921875e+02, 6.928213073730469e+02, 8.661491870117187e+02, 9.670379174804688e+02, 1.09539583984375e+03, 1.238005573730469e+03, 1.415880102539063e+03, 1.551017299804688e+03, 1.642816606445313e+03, 1.789833278808594e+03, 1.928486264648438e+03, 2.062511010742187e+03, 2.166970625e+03, 2.2989458984375e+03, 2.442035517578125e+03, 2.562402119140625e+03, 2.647212939453125e+03, 2.75357599609375e+03, 2.85162451171875e+03, 2.953406801757812e+03, 3.014234609375e+03, 3.073525634765625e+03, 3.181237939453125e+03, 3.249791459960938e+03, 3.320658857421875e+03, 3.4195330859375e+03, 3.465699560546875e+03, 3.515914208984375e+03, 3.537361572265625e+03, 3.606742890625e+03, 3.661681611328125e+03, 3.720695556640625e+03, 3.77891765625e+03, 3.820797446289062e+03, 3.836171142578125e+03, 3.865542978515625e+03, 3.885739142378121e+03, 3.920826416015625e+03, 3.94837482421875e+03, 3.963968949894348e+03, 4.0067876953125e+03, 4.0361728515625e+03, 4.056236884765625e+03, 4.07817578125e+03, 4.093773681640625e+03, 4.10182177734375e+03, 4.1059375e+03, 4.123328642578125e+03, 4.1350546875e+03, 4.13801708984375e+03, 4.14451517578125e+03, 4.15083740234375e+03, 4.153142578125e+03, 4.15534521484375e+03, 4.1575986328125e+03, 4.15918896484375e+03, 4.16490006554826e+03, 4.1777412109375e+03, 4.1879853125e+03, 4.19127734375e+03, 4.207556640625e+03, 4.223551220703125e+03, 4.22839599609375e+03, 4.23226318359375e+03, 4.24893708984375e+03, 4.25866455078125e+03, 4.28478173828125e+03, 4.3121661328125e+03, 4.35154833984375e+03, 4.39396849609375e+03, 4.44033873046875e+03, 4.4833095703125e+03, 4.54747013671875e+03, 4.595540126953125e+03, 4.66029189453125e+03, 4.71549525390625e+03, 4.768521875e+03, 4.82161986328125e+03, 4.8940008203125e+03, 4.994769130859375e+03, 5.11386578125e+03, 5.212424951171875e+03, 5.29536041015625e+03, 5.40647744140625e+03, 5.51378150390625e+03, 5.614066181640625e+03, 5.737244419642857e+03, 5.833781982421875e+03, 5.9349728515625e+03, 6.071144296875e+03, 6.24634982421875e+03, 6.392252734375e+03, 6.55139068359375e+03, 6.649691181640625e+03, 6.7419611328125e+03, 6.8464870703125e+03, 6.97143408203125e+03] +AnnualHeatingLoad=[0e+00, 2.072945153808594e+02, 3.456739978027344e+02, 4.472299206542968e+02, 5.6456294921875e+02, 6.928199645996094e+02, 8.661484960937501e+02, 9.670370629882813e+02, 1.095395107421875e+03, 1.238005085449219e+03, 1.415879711914062e+03, 1.5510164453125e+03, 1.642815952148437e+03, 1.789832041015625e+03, 1.928484921875e+03, 2.062509790039062e+03, 2.166970986328125e+03, 2.298949560546875e+03, 2.44203869140625e+03, 2.562404560546875e+03, 2.64721708984375e+03, 2.753580971679688e+03, 2.8516298828125e+03, 2.953412661132812e+03, 3.0142398046875e+03, 3.073531127929688e+03, 3.1812435546875e+03, 3.249796586914063e+03, 3.320664228515625e+03, 3.419539677734375e+03, 3.4657056640625e+03, 3.515920356445312e+03, 3.537368408203125e+03, 3.60675021484375e+03, 3.6616890625e+03, 3.720703857421875e+03, 3.77892595703125e+03, 3.820805747070312e+03, 3.83617626953125e+03, 3.865548735351562e+03, 3.885744535385884e+03, 3.9208310546875e+03, 3.9483782421875e+03, 3.963972287557041e+03, 4.0067916015625e+03, 4.036176025390625e+03, 4.056240087890625e+03, 4.0781787109375e+03, 4.093774169921875e+03, 4.101822265625e+03, 4.1059375e+03, 4.123328154296875e+03, 4.13505419921875e+03, 4.1380166015625e+03, 4.14451419921875e+03, 4.1508369140625e+03, 4.1531416015625e+03, 4.15534375e+03, 4.15759765625e+03, 4.15918701171875e+03, 4.164898121083092e+03, 4.1777392578125e+03, 4.187983046875e+03, 4.1912744140625e+03, 4.20755419921875e+03, 4.223548291015625e+03, 4.22839306640625e+03, 4.232259765625e+03, 4.24893318359375e+03, 4.25866064453125e+03, 4.28477685546875e+03, 4.31216125e+03, 4.3515439453125e+03, 4.39396166015625e+03, 4.44033140625e+03, 4.4833017578125e+03, 4.547461484375e+03, 4.595531337890625e+03, 4.6602826953125e+03, 4.71548646484375e+03, 4.76851259765625e+03, 4.821610673828125e+03, 4.89399203125e+03, 4.99475998046875e+03, 5.11385673828125e+03, 5.212416162109375e+03, 5.29535015625e+03, 5.4064671875e+03, 5.51377173828125e+03, 5.614054462890625e+03, 5.737233189174107e+03, 5.833771240234375e+03, 5.93496455078125e+03, 6.071136259765625e+03, 6.2463415234375e+03, 6.39224638671875e+03, 6.5513843359375e+03, 6.649684833984375e+03, 6.74195576171875e+03, 6.846482080078125e+03, 6.97142919921875e+03] checkResultsAccordingToASHRAEHeatingOrTempMax.upperLimit=[6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03, 6.967e+03] checkResultsAccordingToASHRAECoolingOrTempMin.lowerLimit=[-6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02, -6.68e+02] -AnnualCoolingLoad=[0e+00, -1.099197044968605e-01, -1.099197044968605e-01, -1.099197044968605e-01, -1.099197044968605e-01, -1.099197044968605e-01, -1.099197044968605e-01, -1.099197044968605e-01, -1.099197044968605e-01, -1.099197044968605e-01, -1.099197044968605e-01, -1.099197044968605e-01, -1.099197044968605e-01, -1.099197044968605e-01, -1.099197044968605e-01, -1.099197044968605e-01, -1.099197044968605e-01, -1.099197044968605e-01, -1.099197044968605e-01, -1.099197044968605e-01, -1.099197044968605e-01, -1.099197044968605e-01, -1.099197044968605e-01, -1.099197044968605e-01, -3.437386035919189e+00, -5.348906517028809e+00, -5.348906517028809e+00, -5.348906517028809e+00, -5.523085594177246e+00, -5.523085594177246e+00, -6.409916400909424e+00, -7.478236198425293e+00, -1.614330468526701e+01, -1.614568519592285e+01, -1.725732231140137e+01, -1.739095249176025e+01, -1.739509010314941e+01, -2.212519073486328e+01, -3.358290191650391e+01, -4.137610626220703e+01, -5.0775146484375e+01, -5.095749504089355e+01, -5.937938690185547e+01, -7.339349365234375e+01, -7.678791809082031e+01, -8.644774627685547e+01, -9.374983215332031e+01, -1.008569107055664e+02, -1.139534759521484e+02, -1.419729940795899e+02, -1.779348907470703e+02, -1.883248901367188e+02, -2.051800762939453e+02, -2.242921884155273e+02, -2.46327880859375e+02, -2.735025268554688e+02, -3.073393139648438e+02, -3.463371612548828e+02, -3.804452453613281e+02, -3.976807580566406e+02, -4.21769775390625e+02, -4.350388641357422e+02, -4.500466918945312e+02, -4.842087835693359e+02, -4.89717900390625e+02, -5.017320251464844e+02, -5.331888525390625e+02, -5.566478405761719e+02, -5.780625e+02, -6.050135278320313e+02, -6.08538232421875e+02, -6.144990234375e+02, -6.229718627929688e+02, -6.252698364257812e+02, -6.315191040039062e+02, -6.400109252929688e+02, -6.423799438476562e+02, -6.471585693359375e+02, -6.480905151367188e+02, -6.499932861328125e+02, -6.563123168945312e+02, -6.584358520507812e+02, -6.585899047851562e+02, -6.585899047851562e+02, -6.585899047851562e+02, -6.585899047851562e+02, -6.585899047851562e+02, -6.585899047851562e+02, -6.585899047851562e+02, -6.585899047851562e+02, -6.585899047851562e+02, -6.588179321289062e+02, -6.588179321289062e+02, -6.588179321289062e+02, -6.588179321289062e+02, -6.588179321289062e+02, -6.588179321289062e+02, -6.588179321289062e+02, -6.588179321289062e+02, -6.588179321289062e+02, -6.588179321289062e+02] +AnnualCoolingLoad=[0e+00, -1.122336834669113e-01, -1.122336834669113e-01, -1.122336834669113e-01, -1.122336834669113e-01, -1.122336834669113e-01, -1.122336834669113e-01, -1.122336834669113e-01, -1.122336834669113e-01, -1.122336834669113e-01, -1.122336834669113e-01, -1.122336834669113e-01, -1.122336834669113e-01, -1.122336834669113e-01, -1.122336834669113e-01, -1.122336834669113e-01, -1.122336834669113e-01, -1.122336834669113e-01, -1.122336834669113e-01, -1.122336834669113e-01, -1.122336834669113e-01, -1.122336834669113e-01, -1.122336834669113e-01, -1.122336834669113e-01, -3.439573764801025e+00, -5.350968837738037e+00, -5.350968837738037e+00, -5.350968837738037e+00, -5.52509880065918e+00, -5.52509880065918e+00, -6.411886692047119e+00, -7.480137825012207e+00, -1.614482502821015e+01, -1.614720726013184e+01, -1.725870895385742e+01, -1.739229393005371e+01, -1.739642906188965e+01, -2.212619018554688e+01, -3.358353515625e+01, -4.137648010253906e+01, -5.077560424804688e+01, -5.09579222869873e+01, -5.937957000732422e+01, -7.339310455322266e+01, -7.67874755859375e+01, -8.644706802368164e+01, -9.374903869628906e+01, -1.008560256958008e+02, -1.139522247314453e+02, -1.419720022583008e+02, -1.779326477050781e+02, -1.883226776123047e+02, -2.051777941894531e+02, -2.242893350219726e+02, -2.463250579833984e+02, -2.734994110107422e+02, -3.073361096191406e+02, -3.463339874267578e+02, -3.804419799804688e+02, -3.976769744873047e+02, -4.217657775878906e+02, -4.350347686767578e+02, -4.500419616699219e+02, -4.842037744140625e+02, -4.897124377441406e+02, -5.017265319824219e+02, -5.331839990234375e+02, -5.566427136230469e+02, -5.780570678710938e+02, -6.050080346679688e+02, -6.08532470703125e+02, -6.144929809570312e+02, -6.229655151367188e+02, -6.252633666992188e+02, -6.315123291015625e+02, -6.4000390625e+02, -6.42372802734375e+02, -6.471512451171875e+02, -6.480831298828125e+02, -6.4998583984375e+02, -6.563046264648438e+02, -6.58427978515625e+02, -6.585819702148438e+02, -6.585819702148438e+02, -6.585819702148438e+02, -6.585819702148438e+02, -6.585819702148438e+02, -6.585819702148438e+02, -6.585819702148438e+02, -6.585819702148438e+02, -6.585819702148438e+02, -6.588099365234375e+02, -6.588099365234375e+02, -6.588099365234375e+02, -6.588099365234375e+02, -6.588099365234375e+02, -6.588099365234375e+02, -6.588099365234375e+02, -6.588099365234375e+02, -6.588099365234375e+02, -6.588099365234375e+02] checkResultsAccordingToASHRAECoolingOrTempMin.upperLimit=[-1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02, -1.62e+02] checkResultsAccordingToASHRAEHeatingOrTempMax.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] checkResultsAccordingToASHRAECoolingOrTempMin.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00] -Room.thermRoom.T=[2.941499938964844e+02, 2.930499572753906e+02, 2.930499877929688e+02, 2.930499774169922e+02, 2.930499914550781e+02, 2.930499908447266e+02, 2.930499572753906e+02, 2.930500183105469e+02, 2.930499877929688e+02, 2.930499572753906e+02, 2.93050048828125e+02, 2.930499749755859e+02, 2.930499572753906e+02, 2.930500183105469e+02, 2.930499877929688e+02, 2.930499786376953e+02, 2.930500646972656e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.93050048828125e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.930500183105469e+02, 2.930500164794922e+02, 2.930500183105469e+02, 2.930500335693359e+02, 2.930499877929688e+02, 2.93050048828125e+02, 2.930499877929688e+02, 2.930499572753906e+02, 2.930500183105469e+02, 2.930499572753906e+02, 2.931499633789062e+02, 2.93050048828125e+02, 2.930499877929688e+02, 2.931499725341797e+02, 2.930500183105469e+02, 2.930499877929688e+02, 2.931499938964844e+02, 2.93050048828125e+02, 2.930499850537171e+02, 2.93150023803711e+02, 2.93050048828125e+02, 2.930500118532856e+02, 2.930500183105469e+02, 2.931499938964844e+02, 2.930499877929688e+02, 2.931389719195071e+02, 2.930500048828125e+02, 2.931499633789062e+02, 2.931499938964844e+02, 2.93049994506836e+02, 2.931499633789062e+02, 2.931500244140625e+02, 2.930499877929688e+02, 2.931499633789062e+02, 2.931500451660156e+02, 2.931499774169922e+02, 2.931499633789062e+02, 2.931500244140625e+02, 2.930499877929688e+02, 2.9314990234375e+02, 2.93050048828125e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.93050048828125e+02, 2.931499633789062e+02, 2.931500244140625e+02, 2.930499877929688e+02, 2.931499633789062e+02, 2.931500244140625e+02, 2.930499877929688e+02, 2.930499572753906e+02, 2.93050048828125e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.930500793457031e+02, 2.930500183105469e+02, 2.930499877929688e+02, 2.930500793457031e+02, 2.930500061035156e+02, 2.930499932861328e+02, 2.9305001953125e+02, 2.930499877929688e+02, 2.930500183105469e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.930499700927734e+02, 2.930500215328998e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.930500183105469e+02, 2.930499975585938e+02, 2.930499877929688e+02, 2.930500793457031e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.93050103149414e+02, 2.930499877929688e+02] -Room.starRoom.T=[2.875967712402344e+02, 2.852758868408203e+02, 2.874619873046875e+02, 2.880939581298828e+02, 2.873018237304688e+02, 2.878247528076172e+02, 2.873042419433594e+02, 2.8833423828125e+02, 2.862878186035156e+02, 2.884177624511719e+02, 2.878858093261719e+02, 2.881799780273437e+02, 2.901536779785156e+02, 2.87212314453125e+02, 2.873885803222656e+02, 2.911388427734375e+02, 2.900407824707031e+02, 2.879688555908203e+02, 2.87681943359375e+02, 2.890208996582031e+02, 2.884875732421875e+02, 2.884977844238281e+02, 2.8769083984375e+02, 2.898796728515625e+02, 2.917958068847656e+02, 2.897962036132812e+02, 2.892560510253906e+02, 2.931156481933594e+02, 2.883018615722656e+02, 2.905329278564453e+02, 2.908593444824219e+02, 2.901405297851563e+02, 2.929606233922447e+02, 2.903030767822266e+02, 2.906805871582031e+02, 2.930369537353516e+02, 2.909181848144531e+02, 2.911156451416016e+02, 2.932716955566406e+02, 2.915373907470703e+02, 2.914066083018307e+02, 2.9373521484375e+02, 2.917319262695312e+02, 2.925554478565487e+02, 2.903329675292969e+02, 2.935151245117187e+02, 2.911021313476563e+02, 2.932982119477051e+02, 2.917342211914063e+02, 2.935734375e+02, 2.96608154296875e+02, 2.913393634033203e+02, 2.956720788574219e+02, 2.941462225341797e+02, 2.918596789550782e+02, 2.960480163574219e+02, 2.951302612304688e+02, 2.935190466308593e+02, 2.955852624511719e+02, 2.9391501953125e+02, 2.921358120906564e+02, 2.94266474609375e+02, 2.929643371582031e+02, 2.932825903320312e+02, 2.942904919433594e+02, 2.923388488769531e+02, 2.943480310058594e+02, 2.961890161132812e+02, 2.913203686523437e+02, 2.940015118408203e+02, 2.951195678710938e+02, 2.902300323486328e+02, 2.9219783203125e+02, 2.920311175537109e+02, 2.898207214355469e+02, 2.889718475341797e+02, 2.922029064941406e+02, 2.891967846679688e+02, 2.924012707519531e+02, 2.910114074707031e+02, 2.899469055175781e+02, 2.920475598144531e+02, 2.899107348632813e+02, 2.883421862792969e+02, 2.887762927246094e+02, 2.888184326171875e+02, 2.888555981445313e+02, 2.885231396484375e+02, 2.876801928710938e+02, 2.897154772949219e+02, 2.931877299243619e+02, 2.906510485839844e+02, 2.874745080566406e+02, 2.886516400146484e+02, 2.8786994140625e+02, 2.878377197265625e+02, 2.886688024902344e+02, 2.877155187988281e+02, 2.89783720703125e+02, 2.876301477050781e+02, 2.880650939941406e+02] +Room.thermRoom.T=[2.941499938964844e+02, 2.930499572753906e+02, 2.930499877929688e+02, 2.930499774169922e+02, 2.930499914550781e+02, 2.930499908447266e+02, 2.930499572753906e+02, 2.930500183105469e+02, 2.930499877929688e+02, 2.930499572753906e+02, 2.93050048828125e+02, 2.930499749755859e+02, 2.930499572753906e+02, 2.930500183105469e+02, 2.930499877929688e+02, 2.930499786376953e+02, 2.930500646972656e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.93050048828125e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.930500183105469e+02, 2.930500164794922e+02, 2.930500183105469e+02, 2.930500335693359e+02, 2.930499877929688e+02, 2.93050048828125e+02, 2.930499877929688e+02, 2.930499572753906e+02, 2.930500183105469e+02, 2.930499572753906e+02, 2.931499633789062e+02, 2.93050048828125e+02, 2.930499877929688e+02, 2.931499725341797e+02, 2.930500183105469e+02, 2.930499877929688e+02, 2.931499938964844e+02, 2.93050048828125e+02, 2.930499850537171e+02, 2.93150023803711e+02, 2.93050048828125e+02, 2.93050012105494e+02, 2.930500183105469e+02, 2.931499938964844e+02, 2.930499877929688e+02, 2.931386173875299e+02, 2.930500048828125e+02, 2.931499633789062e+02, 2.931499938964844e+02, 2.93049994506836e+02, 2.931499633789062e+02, 2.931500244140625e+02, 2.930499877929688e+02, 2.931499633789062e+02, 2.931500451660156e+02, 2.931499774169922e+02, 2.931499633789062e+02, 2.931500244140625e+02, 2.930499877929688e+02, 2.9314990234375e+02, 2.93050048828125e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.93050048828125e+02, 2.931499633789062e+02, 2.931500244140625e+02, 2.930499877929688e+02, 2.931499633789062e+02, 2.931500244140625e+02, 2.930499877929688e+02, 2.930499572753906e+02, 2.93050048828125e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.930500793457031e+02, 2.930500183105469e+02, 2.930499877929688e+02, 2.930500793457031e+02, 2.930500061035156e+02, 2.930499932861328e+02, 2.9305001953125e+02, 2.930499877929688e+02, 2.930500183105469e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.930499700927734e+02, 2.930500215328998e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.930500183105469e+02, 2.930499975585938e+02, 2.930499877929688e+02, 2.930500793457031e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.93050103149414e+02, 2.930499877929688e+02] +Room.starRoom.T=[2.875967712402344e+02, 2.852758868408203e+02, 2.874619873046875e+02, 2.880939379882813e+02, 2.873018237304688e+02, 2.878247497558594e+02, 2.873042419433594e+02, 2.8833423828125e+02, 2.862878186035156e+02, 2.884177624511719e+02, 2.878858093261719e+02, 2.881799957275391e+02, 2.901536779785156e+02, 2.87212314453125e+02, 2.873885827636719e+02, 2.911388427734375e+02, 2.900407971191406e+02, 2.879688555908203e+02, 2.87681943359375e+02, 2.890208996582031e+02, 2.884875732421875e+02, 2.884977844238281e+02, 2.8769083984375e+02, 2.898796746826172e+02, 2.917958068847656e+02, 2.897962036132812e+02, 2.892560510253906e+02, 2.931156481933594e+02, 2.883018615722656e+02, 2.905329278564453e+02, 2.908593444824219e+02, 2.901405297851563e+02, 2.9296062041492e+02, 2.903031072998047e+02, 2.906805871582031e+02, 2.930369537353516e+02, 2.909181823730469e+02, 2.911156451416016e+02, 2.932716955566406e+02, 2.915373907470703e+02, 2.914066083018307e+02, 2.937351843261719e+02, 2.917318957519531e+02, 2.925554510599584e+02, 2.903329675292969e+02, 2.935151245117187e+02, 2.91102158203125e+02, 2.932981330747137e+02, 2.917342211914063e+02, 2.935734442138672e+02, 2.96608154296875e+02, 2.913393634033203e+02, 2.956720788574219e+02, 2.941462023925781e+02, 2.918596789550782e+02, 2.960479888916016e+02, 2.951302819824219e+02, 2.935190325927734e+02, 2.955852624511719e+02, 2.939150189208984e+02, 2.921358120906564e+02, 2.942664617919922e+02, 2.929643566894531e+02, 2.932825946044922e+02, 2.942904919433594e+02, 2.923388580322265e+02, 2.943480310058594e+02, 2.961890161132812e+02, 2.913203698730469e+02, 2.940015118408203e+02, 2.951195678710938e+02, 2.902300439453125e+02, 2.921978625488281e+02, 2.920310888671875e+02, 2.898207434082031e+02, 2.889718627929688e+02, 2.922028759765625e+02, 2.891967846679688e+02, 2.924012707519531e+02, 2.910114379882813e+02, 2.899469055175781e+02, 2.920475598144531e+02, 2.899107629394532e+02, 2.883421862792969e+02, 2.887763073730468e+02, 2.888184539794922e+02, 2.888555981445313e+02, 2.885231396484375e+02, 2.876802038574219e+02, 2.897154595947266e+02, 2.931877299243619e+02, 2.906510479736328e+02, 2.874745080566406e+02, 2.886516094970703e+02, 2.878699206542969e+02, 2.878377197265625e+02, 2.886688024902344e+02, 2.877155187988281e+02, 2.89783720703125e+02, 2.876301477050781e+02, 2.880650939941406e+02] TransmittedSolarRadiation_room=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case220.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case220.txt index 31d37f05ab..8e9c7a6058 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case220.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case220.txt @@ -1,20 +1,20 @@ -last-generated=2021-05-25 +last-generated=2022-07-06 statistics-simulation= { "linear": "0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0", "nonlinear": "13", - "number of continuous time states": "23", + "number of continuous time states": "25", "numerical Jacobians": "0" } time=[0e+00, 3.15396e+07] checkResultsAccordingToASHRAEHeatingOrTempMax.lowerLimit=[6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03, 6.944e+03] -AnnualHeatingLoad=[0e+00, 2.13719264831543e+02, 3.570912463378907e+02, 4.625344415283203e+02, 5.841320654296875e+02, 7.170745056152343e+02, 8.963053613281249e+02, 1.001051674804688e+03, 1.134037412109375e+03, 1.281755124511719e+03, 1.465467919921875e+03, 1.605405895996094e+03, 1.700828334960938e+03, 1.852794272460937e+03, 1.996415327148437e+03, 2.135360595703125e+03, 2.243664267578125e+03, 2.380232763671875e+03, 2.5283313671875e+03, 2.652966547851563e+03, 2.741047412109375e+03, 2.851488642578125e+03, 2.953152734375e+03, 3.05871814453125e+03, 3.121820166015625e+03, 3.183375366210938e+03, 3.295157978515625e+03, 3.3665425390625e+03, 3.4400896484375e+03, 3.542799379882812e+03, 3.590833740234375e+03, 3.643081884765625e+03, 3.6653828125e+03, 3.737434721679687e+03, 3.79456384765625e+03, 3.85605029296875e+03, 3.916574150390625e+03, 3.960163154296875e+03, 3.976131103515625e+03, 4.0065871875e+03, 4.027537040855128e+03, 4.06418603515625e+03, 4.092773388671875e+03, 4.10896826171875e+03, 4.15345201171875e+03, 4.184083984375e+03, 4.20493728515625e+03, 4.22777197265625e+03, 4.2439184765625e+03, 4.25222216796875e+03, 4.2564248046875e+03, 4.274500498046875e+03, 4.2867138671875e+03, 4.28976806640625e+03, 4.2964562890625e+03, 4.30297412109375e+03, 4.305310546875e+03, 4.3075751953125e+03, 4.3098876953125e+03, 4.3115205078125e+03, 4.317367402663497e+03, 4.3307626953125e+03, 4.3413819140625e+03, 4.344751953125e+03, 4.36167138671875e+03, 4.3782228515625e+03, 4.3832109375e+03, 4.38717333984375e+03, 4.40432158203125e+03, 4.41434765625e+03, 4.4414560546875e+03, 4.469854296875e+03, 4.5107880078125e+03, 4.554766396484375e+03, 4.6028764453125e+03, 4.647314453125e+03, 4.71390208984375e+03, 4.76366630859375e+03, 4.831001328125e+03, 4.888221728515625e+03, 4.9430947265625e+03, 4.99825416015625e+03, 5.0733470703125e+03, 5.177803779296875e+03, 5.30106787109375e+03, 5.403151171875e+03, 5.48930267578125e+03, 5.604430146484375e+03, 5.71569578125e+03, 5.819797099609375e+03, 5.9473146484375e+03, 6.047219296875e+03, 6.15199787109375e+03, 6.292944697265625e+03, 6.4739026171875e+03, 6.624878125e+03, 6.78935236328125e+03, 6.891397890625e+03, 6.98720572265625e+03, 7.09542361328125e+03, 7.224900390625e+03] +AnnualHeatingLoad=[0e+00, 2.137208517456055e+02, 3.570928637695313e+02, 4.625357537841797e+02, 5.84133828125e+02, 7.170767700195313e+02, 8.963080468749999e+02, 1.001054970703125e+03, 1.134040219726563e+03, 1.281758051757813e+03, 1.465471557617188e+03, 1.605409873046875e+03, 1.700832319335937e+03, 1.8527978125e+03, 1.996418745117187e+03, 2.135362548828125e+03, 2.243664755859375e+03, 2.38023349609375e+03, 2.528331611328125e+03, 2.652966303710938e+03, 2.74104677734375e+03, 2.851487270507812e+03, 2.953152001953125e+03, 3.058717900390625e+03, 3.121816748046875e+03, 3.1833720703125e+03, 3.295155048828125e+03, 3.36653912109375e+03, 3.44008623046875e+03, 3.542797182617187e+03, 3.590831787109375e+03, 3.64308408203125e+03, 3.665386962890625e+03, 3.737438935546875e+03, 3.79456775390625e+03, 3.8560537109375e+03, 3.91657732421875e+03, 3.96016681640625e+03, 3.97613623046875e+03, 4.006591826171875e+03, 4.027543388511378e+03, 4.06419189453125e+03, 4.09277900390625e+03, 4.10897314453125e+03, 4.153458359375e+03, 4.1840908203125e+03, 4.2049436328125e+03, 4.2277783203125e+03, 4.2439243359375e+03, 4.252228515625e+03, 4.25642919921875e+03, 4.274504404296875e+03, 4.28671728515625e+03, 4.289771484375e+03, 4.29645921875e+03, 4.30297705078125e+03, 4.30531298828125e+03, 4.30757763671875e+03, 4.30989013671875e+03, 4.31152294921875e+03, 4.317369844069747e+03, 4.330763671875e+03, 4.3413841796875e+03, 4.34475390625e+03, 4.361673828125e+03, 4.37822529296875e+03, 4.383212890625e+03, 4.38717529296875e+03, 4.404323046875e+03, 4.414349609375e+03, 4.44145751953125e+03, 4.46985576171875e+03, 4.51078947265625e+03, 4.554768349609375e+03, 4.60287826171875e+03, 4.647316162109375e+03, 4.7139035546875e+03, 4.7636677734375e+03, 4.83100279296875e+03, 4.888223193359375e+03, 4.94309794921875e+03, 4.99825708984375e+03, 5.0733490234375e+03, 5.17780609375e+03, 5.3010703125e+03, 5.40315361328125e+03, 5.4893051171875e+03, 5.6044330078125e+03, 5.7156987109375e+03, 5.81980080078125e+03, 5.9473185546875e+03, 6.04722271484375e+03, 6.15200275390625e+03, 6.29295126953125e+03, 6.4739084765625e+03, 6.62488447265625e+03, 6.78935822265625e+03, 6.89140375e+03, 6.9872108203125e+03, 7.095428984375e+03, 7.2249052734375e+03] checkResultsAccordingToASHRAEHeatingOrTempMax.upperLimit=[8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03, 8.787e+03] checkResultsAccordingToASHRAECoolingOrTempMin.lowerLimit=[-8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02, -8.35e+02] -AnnualCoolingLoad=[0e+00, -1.10137440264225e-01, -1.10137440264225e-01, -1.10137440264225e-01, -1.10137440264225e-01, -1.10137440264225e-01, -1.10137440264225e-01, -1.10137440264225e-01, -1.10137440264225e-01, -1.10137440264225e-01, -1.10137440264225e-01, -1.10137440264225e-01, -1.10137440264225e-01, -1.10137440264225e-01, -1.10137440264225e-01, -1.10137440264225e-01, -1.10137440264225e-01, -1.10137440264225e-01, -1.10137440264225e-01, -1.10137440264225e-01, -1.10137440264225e-01, -1.10137440264225e-01, -1.10137440264225e-01, -1.10137440264225e-01, -3.455886363983154e+00, -5.350168704986572e+00, -5.350168704986572e+00, -5.350168704986572e+00, -5.498577117919922e+00, -5.498577117919922e+00, -6.385844230651855e+00, -7.457724571228027e+00, -1.631512869931339e+01, -1.63187084197998e+01, -1.741533470153809e+01, -1.752398796081543e+01, -1.752791786193848e+01, -2.234910583496094e+01, -3.411255264282227e+01, -4.214899063110352e+01, -5.174345016479492e+01, -5.190843116760254e+01, -6.055644607543945e+01, -7.497379302978516e+01, -7.846437835693359e+01, -8.843821029663086e+01, -9.594781494140625e+01, -1.032278442382812e+02, -1.167172241210938e+02, -1.456882553100586e+02, -1.828889312744141e+02, -1.936911773681641e+02, -2.109886163330078e+02, -2.309054455566406e+02, -2.536911010742188e+02, -2.817031097412109e+02, -3.168760070800781e+02, -3.5733537109375e+02, -3.926890173339844e+02, -4.106881262207031e+02, -4.355793762207031e+02, -4.492112591552734e+02, -4.648092041015625e+02, -5.001934368896484e+02, -5.057683654785156e+02, -5.181240234375e+02, -5.506582763671875e+02, -5.749585021972656e+02, -5.970775756835938e+02, -6.248728051757812e+02, -6.284143798828125e+02, -6.34541748046875e+02, -6.432127075195312e+02, -6.455145874023438e+02, -6.51920166015625e+02, -6.605460815429688e+02, -6.6288232421875e+02, -6.67695556640625e+02, -6.686116943359375e+02, -6.704967041015625e+02, -6.768370971679688e+02, -6.789334106445312e+02, -6.790707397460938e+02, -6.790707397460938e+02, -6.790707397460938e+02, -6.790707397460938e+02, -6.790707397460938e+02, -6.790707397460938e+02, -6.790707397460938e+02, -6.790707397460938e+02, -6.790707397460938e+02, -6.792769775390625e+02, -6.792769775390625e+02, -6.792769775390625e+02, -6.792769775390625e+02, -6.792769775390625e+02, -6.792769775390625e+02, -6.792769775390625e+02, -6.792769775390625e+02, -6.792769775390625e+02, -6.792769775390625e+02] +AnnualCoolingLoad=[0e+00, -1.12454429268837e-01, -1.12454429268837e-01, -1.12454429268837e-01, -1.12454429268837e-01, -1.12454429268837e-01, -1.12454429268837e-01, -1.12454429268837e-01, -1.12454429268837e-01, -1.12454429268837e-01, -1.12454429268837e-01, -1.12454429268837e-01, -1.12454429268837e-01, -1.12454429268837e-01, -1.12454429268837e-01, -1.12454429268837e-01, -1.12454429268837e-01, -1.12454429268837e-01, -1.12454429268837e-01, -1.12454429268837e-01, -1.12454429268837e-01, -1.12454429268837e-01, -1.12454429268837e-01, -1.12454429268837e-01, -3.458089828491211e+00, -5.352277755737305e+00, -5.352277755737305e+00, -5.352277755737305e+00, -5.500625610351562e+00, -5.500625610351562e+00, -6.387824058532715e+00, -7.459638595581055e+00, -1.631673468686222e+01, -1.632031440734863e+01, -1.741679954528809e+01, -1.752539958953857e+01, -1.752933120727539e+01, -2.235028266906738e+01, -3.411346160888672e+01, -4.214949035644531e+01, -5.174369812011719e+01, -5.190860656738281e+01, -6.05566520690918e+01, -7.497373962402344e+01, -7.846428680419922e+01, -8.843743896484375e+01, -9.594685363769531e+01, -1.032265319824219e+02, -1.167155838012695e+02, -1.456850628662109e+02, -1.828849945068359e+02, -1.936869812011719e+02, -2.109842626953125e+02, -2.309005221557617e+02, -2.536859283447266e+02, -2.816975250244141e+02, -3.168697814941406e+02, -3.573291595458984e+02, -3.926827685546875e+02, -4.106820843505859e+02, -4.355733947753906e+02, -4.492047973632813e+02, -4.648028869628906e+02, -5.001869061279297e+02, -5.0576162109375e+02, -5.181173095703125e+02, -5.50651806640625e+02, -5.749521545410156e+02, -5.970709838867188e+02, -6.248659692382812e+02, -6.284072631835937e+02, -6.345343627929688e+02, -6.43205078125e+02, -6.455068969726562e+02, -6.519122314453125e+02, -6.605376586914062e+02, -6.62873779296875e+02, -6.67686767578125e+02, -6.686028442382812e+02, -6.704877319335938e+02, -6.76827880859375e+02, -6.789241943359375e+02, -6.790614013671875e+02, -6.790614013671875e+02, -6.790614013671875e+02, -6.790614013671875e+02, -6.790614013671875e+02, -6.790614013671875e+02, -6.790614013671875e+02, -6.790614013671875e+02, -6.790614013671875e+02, -6.79267578125e+02, -6.79267578125e+02, -6.79267578125e+02, -6.79267578125e+02, -6.79267578125e+02, -6.79267578125e+02, -6.79267578125e+02, -6.79267578125e+02, -6.79267578125e+02, -6.79267578125e+02] checkResultsAccordingToASHRAECoolingOrTempMin.upperLimit=[-1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02, -1.86e+02] checkResultsAccordingToASHRAEHeatingOrTempMax.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00] checkResultsAccordingToASHRAECoolingOrTempMin.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00] -Room.thermRoom.T=[2.941499938964844e+02, 2.930499572753906e+02, 2.930499877929688e+02, 2.930499572753906e+02, 2.930499914550781e+02, 2.930499908447266e+02, 2.930499572753906e+02, 2.930500183105469e+02, 2.930499877929688e+02, 2.930499572753906e+02, 2.93050048828125e+02, 2.930499749755859e+02, 2.930499572753906e+02, 2.930500183105469e+02, 2.930499877929688e+02, 2.930499572753906e+02, 2.930500646972656e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.93050048828125e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.930500183105469e+02, 2.930500164794922e+02, 2.930500183105469e+02, 2.930500335693359e+02, 2.930499877929688e+02, 2.93050048828125e+02, 2.930499877929688e+02, 2.930499572753906e+02, 2.930500183105469e+02, 2.930499572753906e+02, 2.931499633789062e+02, 2.93050048828125e+02, 2.930499877929688e+02, 2.931499725341797e+02, 2.930500183105469e+02, 2.930499877929688e+02, 2.931499938964844e+02, 2.930500665283203e+02, 2.930499850537171e+02, 2.93150023803711e+02, 2.93050048828125e+02, 2.930605245450648e+02, 2.930500183105469e+02, 2.931499938964844e+02, 2.930499877929688e+02, 2.931209779238371e+02, 2.930500048828125e+02, 2.931499633789062e+02, 2.931499938964844e+02, 2.93049994506836e+02, 2.931499633789062e+02, 2.931500244140625e+02, 2.930499877929688e+02, 2.931499633789062e+02, 2.931500451660156e+02, 2.931499774169922e+02, 2.931499633789062e+02, 2.931500244140625e+02, 2.930499877929688e+02, 2.9314990234375e+02, 2.93050048828125e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.93050048828125e+02, 2.931499633789062e+02, 2.931500244140625e+02, 2.930499877929688e+02, 2.931499633789062e+02, 2.931500427246094e+02, 2.930499877929688e+02, 2.930499572753906e+02, 2.93050048828125e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.930500793457031e+02, 2.930500183105469e+02, 2.930499877929688e+02, 2.930500793457031e+02, 2.930500061035156e+02, 2.930499932861328e+02, 2.9305001953125e+02, 2.930499877929688e+02, 2.930500183105469e+02, 2.930499877929688e+02, 2.930499853515625e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.930499700927734e+02, 2.930500244140625e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.930500183105469e+02, 2.930499975585938e+02, 2.930499877929688e+02, 2.930500793457031e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.930500793457031e+02, 2.930499877929688e+02] -Room.starRoom.T=[2.894175109863281e+02, 2.88675474243164e+02, 2.898958715820312e+02, 2.903742529296875e+02, 2.898570751953125e+02, 2.901261840820313e+02, 2.899448278808593e+02, 2.903491784667969e+02, 2.8918123046875e+02, 2.905830651855469e+02, 2.899963745117187e+02, 2.903646539306641e+02, 2.916037524414062e+02, 2.897439819335938e+02, 2.899138134765625e+02, 2.921113189697265e+02, 2.912236047363281e+02, 2.90234970703125e+02, 2.900992932128906e+02, 2.906921954345703e+02, 2.904945434570312e+02, 2.905455157470703e+02, 2.899885388183594e+02, 2.912790148925781e+02, 2.924037854003906e+02, 2.911511840820312e+02, 2.909665148925781e+02, 2.929476306152344e+02, 2.904434606933594e+02, 2.918353332519531e+02, 2.918414733886719e+02, 2.915233959960938e+02, 2.931850561934911e+02, 2.914560125732422e+02, 2.917908325195312e+02, 2.931683410644531e+02, 2.918550402832032e+02, 2.920802319335937e+02, 2.932768896484375e+02, 2.920608520507812e+02, 2.922477112973837e+02, 2.934889331054687e+02, 2.922204553222657e+02, 2.929989884539348e+02, 2.91526962890625e+02, 2.933963195800781e+02, 2.920499780273437e+02, 2.931526641705069e+02, 2.923655346679687e+02, 2.934961364746094e+02, 2.950800476074219e+02, 2.92114326171875e+02, 2.946367224121093e+02, 2.936502728271485e+02, 2.924894555664063e+02, 2.948910949707031e+02, 2.941212878417969e+02, 2.934346765136719e+02, 2.946315258789062e+02, 2.934882568359375e+02, 2.925883820704191e+02, 2.94143154296875e+02, 2.928589794921875e+02, 2.932848181152344e+02, 2.938146350097657e+02, 2.925440948486328e+02, 2.938894067382813e+02, 2.948023651123047e+02, 2.921531652832031e+02, 2.937511254882813e+02, 2.94125e+02, 2.915137408447266e+02, 2.927386157226563e+02, 2.924098333740234e+02, 2.9130673828125e+02, 2.90780517578125e+02, 2.9237328125e+02, 2.908251983642578e+02, 2.927157690429688e+02, 2.917182965087891e+02, 2.913261413574219e+02, 2.925723852539062e+02, 2.913035778808594e+02, 2.903975122070312e+02, 2.906189013671875e+02, 2.905831878662109e+02, 2.907925854492187e+02, 2.905048645019531e+02, 2.900315698242188e+02, 2.913239916992188e+02, 2.930156799316406e+02, 2.917482946777343e+02, 2.8992654296875e+02, 2.904973822021485e+02, 2.901367919921875e+02, 2.901581268310547e+02, 2.903918347167969e+02, 2.900873760986328e+02, 2.912270056152344e+02, 2.897540447998047e+02, 2.902552490234375e+02] +Room.thermRoom.T=[2.941499938964844e+02, 2.930499572753906e+02, 2.930499877929688e+02, 2.930499572753906e+02, 2.930499914550781e+02, 2.930499908447266e+02, 2.930499572753906e+02, 2.930500183105469e+02, 2.930499877929688e+02, 2.930499572753906e+02, 2.93050048828125e+02, 2.930499749755859e+02, 2.930499572753906e+02, 2.930500183105469e+02, 2.930499877929688e+02, 2.930499572753906e+02, 2.930500646972656e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.93050048828125e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.930500183105469e+02, 2.930500164794922e+02, 2.930500183105469e+02, 2.930500335693359e+02, 2.930499877929688e+02, 2.93050048828125e+02, 2.930499877929688e+02, 2.930499572753906e+02, 2.930500183105469e+02, 2.930499572753906e+02, 2.931499633789062e+02, 2.93050048828125e+02, 2.930499877929688e+02, 2.931499725341797e+02, 2.930500183105469e+02, 2.930499877929688e+02, 2.931499938964844e+02, 2.930500665283203e+02, 2.930499850537171e+02, 2.93150023803711e+02, 2.93050048828125e+02, 2.930609466939033e+02, 2.930500183105469e+02, 2.931499938964844e+02, 2.930499877929688e+02, 2.931206776647804e+02, 2.930500048828125e+02, 2.931499633789062e+02, 2.931499938964844e+02, 2.93049994506836e+02, 2.931499633789062e+02, 2.931500244140625e+02, 2.930499877929688e+02, 2.931499633789062e+02, 2.931500451660156e+02, 2.931499774169922e+02, 2.931499633789062e+02, 2.931500244140625e+02, 2.930499877929688e+02, 2.9314990234375e+02, 2.93050048828125e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.93050048828125e+02, 2.931499633789062e+02, 2.931500244140625e+02, 2.930499877929688e+02, 2.931499633789062e+02, 2.931500427246094e+02, 2.930499877929688e+02, 2.930499572753906e+02, 2.93050048828125e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.930500793457031e+02, 2.930500183105469e+02, 2.930499877929688e+02, 2.930500793457031e+02, 2.930500061035156e+02, 2.930499932861328e+02, 2.9305001953125e+02, 2.930499877929688e+02, 2.930500183105469e+02, 2.930499877929688e+02, 2.930499853515625e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.930499700927734e+02, 2.930500244140625e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.930500183105469e+02, 2.930499975585938e+02, 2.930499877929688e+02, 2.930500793457031e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.930500793457031e+02, 2.930499877929688e+02] +Room.starRoom.T=[2.894175109863281e+02, 2.88675498046875e+02, 2.898958715820312e+02, 2.90374263305664e+02, 2.898571020507812e+02, 2.901259796142578e+02, 2.899448583984375e+02, 2.903491949462891e+02, 2.891812377929688e+02, 2.905830651855469e+02, 2.899963439941406e+02, 2.903646539306641e+02, 2.916037524414062e+02, 2.897439819335938e+02, 2.899138134765625e+02, 2.921112976074219e+02, 2.912236047363281e+02, 2.90234970703125e+02, 2.900992919921875e+02, 2.906921954345703e+02, 2.904945434570312e+02, 2.905455157470703e+02, 2.899885388183594e+02, 2.912790148925781e+02, 2.924037854003906e+02, 2.911511993408203e+02, 2.909665148925781e+02, 2.929476611328125e+02, 2.904434606933594e+02, 2.918353332519531e+02, 2.918414916992188e+02, 2.915233959960938e+02, 2.931850561934911e+02, 2.914560125732422e+02, 2.917908325195312e+02, 2.931683197021484e+02, 2.918550378417969e+02, 2.920802319335937e+02, 2.932768896484375e+02, 2.920608520507812e+02, 2.922477390757101e+02, 2.934889331054687e+02, 2.922204626464843e+02, 2.929990686344195e+02, 2.91526962890625e+02, 2.933963195800781e+02, 2.92049951171875e+02, 2.931526070515242e+02, 2.92365517578125e+02, 2.934961364746094e+02, 2.950800476074219e+02, 2.92114326171875e+02, 2.946367224121093e+02, 2.936502728271485e+02, 2.92489482421875e+02, 2.948910949707031e+02, 2.941212878417969e+02, 2.934346765136719e+02, 2.946315417480469e+02, 2.934882263183594e+02, 2.925883826116585e+02, 2.94143154296875e+02, 2.928589880371094e+02, 2.932848181152344e+02, 2.938146350097657e+02, 2.925441131591797e+02, 2.938894067382813e+02, 2.948023651123047e+02, 2.921531652832031e+02, 2.937510949707032e+02, 2.94125e+02, 2.915137408447266e+02, 2.927386462402344e+02, 2.924098028564453e+02, 2.9130673828125e+02, 2.907805480957031e+02, 2.9237328125e+02, 2.908251965332031e+02, 2.927157641601563e+02, 2.917182965087891e+02, 2.913261535644531e+02, 2.925723852539062e+02, 2.913036083984375e+02, 2.903975201416015e+02, 2.9061888671875e+02, 2.905832183837891e+02, 2.907925854492187e+02, 2.905048602294922e+02, 2.900315698242188e+02, 2.913239739990235e+02, 2.930156799316406e+02, 2.917483245849609e+02, 2.8992654296875e+02, 2.904973822021485e+02, 2.901367919921875e+02, 2.901581268310547e+02, 2.903918078613281e+02, 2.900873760986328e+02, 2.912270190429688e+02, 2.897540686035156e+02, 2.902552490234375e+02] TransmittedSolarRadiation_room=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case230.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case230.txt index fcf2cdf621..476cd143f8 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case230.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case230.txt @@ -1,20 +1,20 @@ -last-generated=2021-05-25 +last-generated=2022-07-06 statistics-simulation= { "linear": "0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0", "nonlinear": "13", - "number of continuous time states": "23", + "number of continuous time states": "25", "numerical Jacobians": "0" } time=[0e+00, 3.15396e+07] checkResultsAccordingToASHRAEHeatingOrTempMax.lowerLimit=[1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04, 1.0376e+04] -AnnualHeatingLoad=[0e+00, 3.168413134765625e+02, 5.298485522460937e+02, 6.871720471191406e+02, 8.685773461914063e+02, 1.066331689453125e+03, 1.332838725585937e+03, 1.488798168945312e+03, 1.687087114257813e+03, 1.907301279296875e+03, 2.180961962890625e+03, 2.389750244140625e+03, 2.532145341796875e+03, 2.759402641601563e+03, 2.9736146484375e+03, 3.18022958984375e+03, 3.342391513671875e+03, 3.547224619140625e+03, 3.768272109375e+03, 3.955556362304687e+03, 4.0884083984375e+03, 4.25301359375e+03, 4.40586353515625e+03, 4.56463177734375e+03, 4.6600540234375e+03, 4.7529033203125e+03, 4.920031796875e+03, 5.0270031640625e+03, 5.1380374609375e+03, 5.29195880859375e+03, 5.36480322265625e+03, 5.444194130859375e+03, 5.47798193359375e+03, 5.58680287109375e+03, 5.67361720703125e+03, 5.76638427734375e+03, 5.85821712890625e+03, 5.924188232421875e+03, 5.94838037109375e+03, 5.995141357421875e+03, 6.027372572791562e+03, 6.0833359375e+03, 6.12717240234375e+03, 6.1520932421875e+03, 6.2195094921875e+03, 6.2655400390625e+03, 6.2977548828125e+03, 6.33246533203125e+03, 6.3573294921875e+03, 6.37001806640625e+03, 6.376732421875e+03, 6.404715185546875e+03, 6.4234345703125e+03, 6.42835107421875e+03, 6.4389926171875e+03, 6.44911083984375e+03, 6.45293994140625e+03, 6.45654638671875e+03, 6.46023388671875e+03, 6.46293212890625e+03, 6.472235054463677e+03, 6.4927783203125e+03, 6.50930560546875e+03, 6.514619140625e+03, 6.5408544921875e+03, 6.5664515625e+03, 6.5742265625e+03, 6.5806435546875e+03, 6.60756611328125e+03, 6.6230693359375e+03, 6.66478125e+03, 6.708736748046875e+03, 6.7706976171875e+03, 6.838264140625e+03, 6.9113752734375e+03, 6.978961181640625e+03, 7.07886259765625e+03, 7.1544428125e+03, 7.25578568359375e+03, 7.342739658203125e+03, 7.4258435546875e+03, 7.508887587890625e+03, 7.622206484375e+03, 7.77874158203125e+03, 7.96433138671875e+03, 8.11843828125e+03, 8.247686093750001e+03, 8.42030794921875e+03, 8.586848515625001e+03, 8.74253677734375e+03, 8.93316796875e+03, 9.08415884765625e+03, 9.241650625e+03, 9.452336777343749e+03, 9.72263296875e+03, 9.948308789062499e+03, 1.01942409375e+04, 1.034682787109375e+04, 1.049009375e+04, 1.065267841796875e+04, 1.08460419921875e+04] +AnnualHeatingLoad=[0e+00, 3.168430596923828e+02, 5.2984763671875e+02, 6.871710095214844e+02, 8.685772241210938e+02, 1.06633193359375e+03, 1.332839619140625e+03, 1.48879951171875e+03, 1.687088334960938e+03, 1.907302380371094e+03, 2.1809626953125e+03, 2.389751850585938e+03, 2.53214671875e+03, 2.759404106445313e+03, 2.973617333984375e+03, 3.180233251953125e+03, 3.3423995703125e+03, 3.547234140625e+03, 3.768282119140625e+03, 3.955566860351562e+03, 4.088419873046875e+03, 4.253022685546875e+03, 4.40587232421875e+03, 4.5646410546875e+03, 4.66006232421875e+03, 4.752913818359375e+03, 4.920040234375e+03, 5.02700853515625e+03, 5.13804185546875e+03, 5.2919641796875e+03, 5.36480712890625e+03, 5.444197060546875e+03, 5.4779873046875e+03, 5.586808369140625e+03, 5.67362208984375e+03, 5.766390625e+03, 5.8582225e+03, 5.924188232421875e+03, 5.94837939453125e+03, 5.995139892578125e+03, 6.027371107947812e+03, 6.08333447265625e+03, 6.1271738671875e+03, 6.15209373046875e+03, 6.2195132421875e+03, 6.26554345703125e+03, 6.2977607421875e+03, 6.33247021484375e+03, 6.35733486328125e+03, 6.3700234375e+03, 6.37674267578125e+03, 6.40472533203125e+03, 6.42344482421875e+03, 6.42836083984375e+03, 6.43900287109375e+03, 6.44912109375e+03, 6.4529501953125e+03, 6.456556640625e+03, 6.460244140625e+03, 6.46294189453125e+03, 6.472244340467258e+03, 6.4927900390625e+03, 6.50931732421875e+03, 6.51463037109375e+03, 6.54086669921875e+03, 6.56646376953125e+03, 6.57423876953125e+03, 6.5806552734375e+03, 6.60757734375e+03, 6.62308056640625e+03, 6.6647919921875e+03, 6.7087471875e+03, 6.770708359375e+03, 6.8382748828125e+03, 6.911386015625e+03, 6.978970703125e+03, 7.078871875e+03, 7.154451630859375e+03, 7.2557949609375e+03, 7.342749912109375e+03, 7.42585361328125e+03, 7.50889744140625e+03, 7.62221478515625e+03, 7.778749755859375e+03, 7.9643396875e+03, 8.118444140625e+03, 8.247687070312501e+03, 8.42030990234375e+03, 8.586851445312501e+03, 8.74254458984375e+03, 8.9331767578125e+03, 9.08416861328125e+03, 9.241660625e+03, 9.452345566406249e+03, 9.7226417578125e+03, 9.948317578124999e+03, 1.0194250703125e+04, 1.034683958984375e+04, 1.049010546875e+04, 1.065269013671875e+04, 1.08460556640625e+04] checkResultsAccordingToASHRAEHeatingOrTempMax.upperLimit=[1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04, 1.2243e+04] checkResultsAccordingToASHRAECoolingOrTempMin.lowerLimit=[-1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03, -1.139e+03] -AnnualCoolingLoad=[0e+00, -9.979254752397537e-02, -9.979254752397537e-02, -9.979254752397537e-02, -9.979254752397537e-02, -9.979254752397537e-02, -9.979254752397537e-02, -9.979254752397537e-02, -9.979254752397537e-02, -9.979254752397537e-02, -9.979254752397537e-02, -9.979254752397537e-02, -9.979254752397537e-02, -9.979254752397537e-02, -9.979254752397537e-02, -9.979254752397537e-02, -9.979254752397537e-02, -9.979254752397537e-02, -9.979254752397537e-02, -9.979254752397537e-02, -9.979254752397537e-02, -9.979254752397537e-02, -9.979254752397537e-02, -9.979254752397537e-02, -4.965376377105713e+00, -7.579541206359863e+00, -7.579541206359863e+00, -7.579541206359863e+00, -7.777688503265381e+00, -7.777688503265381e+00, -9.010138511657715e+00, -1.053895568847656e+01, -2.323147201538086e+01, -2.323147201538086e+01, -2.471243858337402e+01, -2.485013389587402e+01, -2.485013389587402e+01, -3.166222381591797e+01, -4.864978500366211e+01, -6.030741882324219e+01, -7.406691741943359e+01, -7.433378158569336e+01, -8.675247955322266e+01, -1.077335357666016e+02, -1.128277206420898e+02, -1.273483283996582e+02, -1.381686706542969e+02, -1.487386949316183e+02, -1.682621307373047e+02, -2.106223419189453e+02, -2.654717407226562e+02, -2.807484130859375e+02, -3.061553698730469e+02, -3.350163299560547e+02, -3.681619262695312e+02, -4.093742370605469e+02, -4.60825810546875e+02, -5.199771301269532e+02, -5.720445483398438e+02, -5.980644909667968e+02, -6.342210693359375e+02, -6.542549768066406e+02, -6.767528076171875e+02, -7.285305017089844e+02, -7.3638412109375e+02, -7.541567993164062e+02, -8.019601586914063e+02, -8.377266442871094e+02, -8.6983154296875e+02, -9.109384643554688e+02, -9.161467041015625e+02, -9.248490600585938e+02, -9.375161743164062e+02, -9.407640991210938e+02, -9.501574096679688e+02, -9.627344360351562e+02, -9.660328979492188e+02, -9.730978393554688e+02, -9.743934326171875e+02, -9.771128540039062e+02, -9.864227294921875e+02, -9.894857788085938e+02, -9.89694580078125e+02, -9.89694580078125e+02, -9.89694580078125e+02, -9.89694580078125e+02, -9.89694580078125e+02, -9.89694580078125e+02, -9.89694580078125e+02, -9.89694580078125e+02, -9.89694580078125e+02, -9.900182495117188e+02, -9.900182495117188e+02, -9.900182495117188e+02, -9.900182495117188e+02, -9.900182495117188e+02, -9.900182495117188e+02, -9.900182495117188e+02, -9.900182495117188e+02, -9.900182495117188e+02, -9.900182495117188e+02] +AnnualCoolingLoad=[0e+00, -1.019567027688026e-01, -1.019567027688026e-01, -1.019567027688026e-01, -1.019567027688026e-01, -1.019567027688026e-01, -1.019567027688026e-01, -1.019567027688026e-01, -1.019567027688026e-01, -1.019567027688026e-01, -1.019567027688026e-01, -1.019567027688026e-01, -1.019567027688026e-01, -1.019567027688026e-01, -1.019567027688026e-01, -1.019567027688026e-01, -1.019567027688026e-01, -1.019567027688026e-01, -1.019567027688026e-01, -1.019567027688026e-01, -1.019567027688026e-01, -1.019567027688026e-01, -1.019567027688026e-01, -1.019567027688026e-01, -4.967441082000732e+00, -7.581531524658203e+00, -7.581531524658203e+00, -7.581531524658203e+00, -7.779626369476318e+00, -7.779626369476318e+00, -9.011962890625e+00, -1.054074001312256e+01, -2.323291015625e+01, -2.323291015625e+01, -2.47137565612793e+01, -2.485142517089844e+01, -2.485142517089844e+01, -3.166341590881348e+01, -4.865095092773438e+01, -6.030815124511719e+01, -7.406753540039062e+01, -7.433433853149414e+01, -8.675286102294922e+01, -1.077334594726562e+02, -1.128274612426758e+02, -1.273478393554688e+02, -1.381679840087891e+02, -1.487381533801478e+02, -1.682609100341797e+02, -2.106222775268555e+02, -2.654712219238281e+02, -2.807476806640625e+02, -3.061545629882813e+02, -3.350152313232422e+02, -3.681607055664062e+02, -4.093726806640625e+02, -4.608232775878906e+02, -5.199745385742187e+02, -5.720412060546874e+02, -5.98059365234375e+02, -6.342150268554688e+02, -6.542490917968749e+02, -6.767466430664062e+02, -7.285239184570313e+02, -7.363772241210937e+02, -7.541500244140625e+02, -8.019546044921875e+02, -8.377211669921875e+02, -8.69826171875e+02, -9.109333984375e+02, -9.16140966796875e+02, -9.248433837890625e+02, -9.375101318359375e+02, -9.40758056640625e+02, -9.501512451171875e+02, -9.6272802734375e+02, -9.660263671875e+02, -9.73091064453125e+02, -9.743865356445312e+02, -9.771058959960938e+02, -9.86415771484375e+02, -9.894788818359375e+02, -9.896875610351562e+02, -9.896875610351562e+02, -9.896875610351562e+02, -9.896875610351562e+02, -9.896875610351562e+02, -9.896875610351562e+02, -9.896875610351562e+02, -9.896875610351562e+02, -9.896875610351562e+02, -9.900112915039062e+02, -9.900112915039062e+02, -9.900112915039062e+02, -9.900112915039062e+02, -9.900112915039062e+02, -9.900112915039062e+02, -9.900112915039062e+02, -9.900112915039062e+02, -9.900112915039062e+02, -9.900112915039062e+02] checkResultsAccordingToASHRAECoolingOrTempMin.upperLimit=[-4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02, -4.54e+02] checkResultsAccordingToASHRAEHeatingOrTempMax.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00] checkResultsAccordingToASHRAECoolingOrTempMin.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00] -Room.thermRoom.T=[2.941499938964844e+02, 2.930499505615234e+02, 2.930499877929688e+02, 2.930499572753906e+02, 2.930499914550781e+02, 2.930499908447266e+02, 2.930499267578125e+02, 2.93050034790039e+02, 2.930499877929688e+02, 2.930499566650391e+02, 2.930500732421875e+02, 2.930499572753906e+02, 2.930499267578125e+02, 2.930500183105469e+02, 2.930499877929688e+02, 2.930499572753906e+02, 2.930501098632812e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.930500543212891e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.930500183105469e+02, 2.930500146484375e+02, 2.930500183105469e+02, 2.93050048828125e+02, 2.930499877929688e+02, 2.930500793457031e+02, 2.930499877929688e+02, 2.930499267578125e+02, 2.930500366210937e+02, 2.930499572753906e+02, 2.931386968216661e+02, 2.93050048828125e+02, 2.930499877929688e+02, 2.93141256782446e+02, 2.93050048828125e+02, 2.930499572753906e+02, 2.931499938964844e+02, 2.930501098632812e+02, 2.930499572753906e+02, 2.93150023803711e+02, 2.930500793457031e+02, 2.930499267578125e+02, 2.930500183105469e+02, 2.931499664306641e+02, 2.930499877929688e+02, 2.931500075705919e+02, 2.930500085449219e+02, 2.931499633789062e+02, 2.931499938964844e+02, 2.930500183105469e+02, 2.931499633789062e+02, 2.931500244140625e+02, 2.930499841308594e+02, 2.931499328613281e+02, 2.931500659179687e+02, 2.931499633789062e+02, 2.931499560546875e+02, 2.931500549316406e+02, 2.930499877929688e+02, 2.931498413085938e+02, 2.930500793457031e+02, 2.931499633789062e+02, 2.931499938964844e+02, 2.930500793457031e+02, 2.931499633789062e+02, 2.931500549316406e+02, 2.930499877929688e+02, 2.931499328613281e+02, 2.931500549316406e+02, 2.930499877929688e+02, 2.930499572753906e+02, 2.930500775146484e+02, 2.930499658203125e+02, 2.930499877929688e+02, 2.930501184082031e+02, 2.930500183105469e+02, 2.930499877929688e+02, 2.930501403808594e+02, 2.930500061035156e+02, 2.930499682617187e+02, 2.930500219726562e+02, 2.930499957275391e+02, 2.930500341796875e+02, 2.930500091552734e+02, 2.930499853515625e+02, 2.930500183105469e+02, 2.930499877929688e+02, 2.93049921875e+02, 2.9305281505846e+02, 2.930499877929688e+02, 2.930499572753906e+02, 2.93050048828125e+02, 2.930499975585938e+02, 2.930499877929688e+02, 2.930501098632812e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.930501403808594e+02, 2.930499877929688e+02] -Room.starRoom.T=[2.894175109863281e+02, 2.886754437255859e+02, 2.898958850097656e+02, 2.90374263305664e+02, 2.898570446777344e+02, 2.901261840820313e+02, 2.899448486328125e+02, 2.903491949462891e+02, 2.8918123046875e+02, 2.905830950927734e+02, 2.899963684082031e+02, 2.903646411132813e+02, 2.916037414550781e+02, 2.897439819335938e+02, 2.899138134765625e+02, 2.921113189697265e+02, 2.912236511230469e+02, 2.90234917602539e+02, 2.900992626953125e+02, 2.906922509765625e+02, 2.9049453125e+02, 2.905455346679688e+02, 2.899885131835937e+02, 2.912790148925781e+02, 2.924037634277344e+02, 2.911511993408203e+02, 2.909665148925781e+02, 2.929476611328125e+02, 2.904434558105469e+02, 2.91835302734375e+02, 2.918414916992188e+02, 2.915233294677735e+02, 2.931828306574998e+02, 2.914560430908203e+02, 2.917907250976563e+02, 2.931706676697463e+02, 2.918550402832032e+02, 2.920794989013672e+02, 2.932769702148437e+02, 2.920608648681641e+02, 2.9224679615585e+02, 2.934901751708985e+02, 2.922204858398438e+02, 2.929798864746094e+02, 2.9152697265625e+02, 2.933962921142578e+02, 2.92049951171875e+02, 2.931642490937615e+02, 2.923648034667969e+02, 2.934961059570313e+02, 2.950802001953125e+02, 2.92114326171875e+02, 2.946366918945312e+02, 2.936517114257812e+02, 2.924885229492187e+02, 2.94891064453125e+02, 2.941224328613282e+02, 2.934346624755859e+02, 2.946315185546875e+02, 2.934920336914063e+02, 2.925875319081472e+02, 2.94143154296875e+02, 2.928589880371094e+02, 2.932848443603515e+02, 2.938150830078125e+02, 2.925440734863281e+02, 2.938893762207031e+02, 2.948024566650391e+02, 2.921530395507813e+02, 2.937511004638672e+02, 2.941267578125e+02, 2.915136987304688e+02, 2.927324475097656e+02, 2.924098333740234e+02, 2.913066772460937e+02, 2.90780517578125e+02, 2.923733203125e+02, 2.908251983642578e+02, 2.927157690429688e+02, 2.917183459472656e+02, 2.913260375976562e+02, 2.925723852539062e+02, 2.913035803222656e+02, 2.903975427246094e+02, 2.906189013671875e+02, 2.905831787109375e+02, 2.907925854492187e+02, 2.905048645019531e+02, 2.900315698242188e+02, 2.913239739990235e+02, 2.930188611174283e+02, 2.917482940673828e+02, 2.899265356445313e+02, 2.904974127197266e+02, 2.901367810058593e+02, 2.901580993652344e+02, 2.90391865234375e+02, 2.900873657226563e+02, 2.912269750976562e+02, 2.897541058349609e+02, 2.902552795410156e+02] +Room.thermRoom.T=[2.941499938964844e+02, 2.930499505615234e+02, 2.930499877929688e+02, 2.930499572753906e+02, 2.930499914550781e+02, 2.930499908447266e+02, 2.930499267578125e+02, 2.93050034790039e+02, 2.930499877929688e+02, 2.930499566650391e+02, 2.930500732421875e+02, 2.930499572753906e+02, 2.930499267578125e+02, 2.930500183105469e+02, 2.930499877929688e+02, 2.930499572753906e+02, 2.930501098632812e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.930500543212891e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.930500183105469e+02, 2.930500146484375e+02, 2.930500183105469e+02, 2.93050048828125e+02, 2.930499877929688e+02, 2.930500793457031e+02, 2.930499877929688e+02, 2.930499267578125e+02, 2.930500366210937e+02, 2.930499572753906e+02, 2.931387595901946e+02, 2.93050048828125e+02, 2.930499877929688e+02, 2.931413305046853e+02, 2.93050048828125e+02, 2.930499572753906e+02, 2.931499938964844e+02, 2.930501098632812e+02, 2.930499572753906e+02, 2.93150023803711e+02, 2.930500793457031e+02, 2.930499926757813e+02, 2.930500183105469e+02, 2.931499664306641e+02, 2.930499877929688e+02, 2.931500074154115e+02, 2.930500085449219e+02, 2.931499633789062e+02, 2.931499938964844e+02, 2.930500183105469e+02, 2.931499633789062e+02, 2.931500244140625e+02, 2.930499841308594e+02, 2.931499328613281e+02, 2.931500659179687e+02, 2.931499633789062e+02, 2.931499560546875e+02, 2.931500549316406e+02, 2.930499877929688e+02, 2.931498413085938e+02, 2.930500793457031e+02, 2.931499633789062e+02, 2.931499938964844e+02, 2.930500793457031e+02, 2.931499633789062e+02, 2.931500549316406e+02, 2.930499877929688e+02, 2.931499328613281e+02, 2.931500549316406e+02, 2.930499877929688e+02, 2.930499572753906e+02, 2.930500775146484e+02, 2.930499658203125e+02, 2.930499877929688e+02, 2.930501184082031e+02, 2.930500183105469e+02, 2.930499877929688e+02, 2.930501403808594e+02, 2.930500061035156e+02, 2.930499682617187e+02, 2.930500219726562e+02, 2.930499957275391e+02, 2.930500341796875e+02, 2.930500091552734e+02, 2.930499853515625e+02, 2.930500183105469e+02, 2.930499877929688e+02, 2.93049921875e+02, 2.93052787885274e+02, 2.930499877929688e+02, 2.930499572753906e+02, 2.93050048828125e+02, 2.930499975585938e+02, 2.930499877929688e+02, 2.930501098632812e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.930501403808594e+02, 2.930499877929688e+02] +Room.starRoom.T=[2.894175109863281e+02, 2.886754675292969e+02, 2.898958715820312e+02, 2.903742529296875e+02, 2.898570483398437e+02, 2.901260070800781e+02, 2.899448486328125e+02, 2.903491949462891e+02, 2.891812377929688e+02, 2.905830352783203e+02, 2.899963684082031e+02, 2.903646411132813e+02, 2.916037414550781e+02, 2.897439819335938e+02, 2.899138110351562e+02, 2.921112976074219e+02, 2.912236206054687e+02, 2.902349096679687e+02, 2.900992626953125e+02, 2.906922259521484e+02, 2.9049453125e+02, 2.905455157470703e+02, 2.899885131835937e+02, 2.912790130615234e+02, 2.924037854003906e+02, 2.911512145996094e+02, 2.909665148925781e+02, 2.929476629638672e+02, 2.904434558105469e+02, 2.918352838134766e+02, 2.918414916992188e+02, 2.915233294677735e+02, 2.931828383028864e+02, 2.914560430908203e+02, 2.917907250976563e+02, 2.931706897864181e+02, 2.918550402832032e+02, 2.920794989013672e+02, 2.932769702148437e+02, 2.920608648681641e+02, 2.9224679615585e+02, 2.934901452636719e+02, 2.922204626464843e+02, 2.929799334716797e+02, 2.91526962890625e+02, 2.933962921142578e+02, 2.920499780273437e+02, 2.931642069285381e+02, 2.923648168945313e+02, 2.934961364746094e+02, 2.950801696777344e+02, 2.921143328857422e+02, 2.946367053222656e+02, 2.936517114257812e+02, 2.924885229492187e+02, 2.94891064453125e+02, 2.941224328613282e+02, 2.934346624755859e+02, 2.946315417480469e+02, 2.934920336914063e+02, 2.925875319081472e+02, 2.941431414794922e+02, 2.928589880371094e+02, 2.932848443603515e+02, 2.938150830078125e+02, 2.925440734863281e+02, 2.938893762207031e+02, 2.948024645996094e+02, 2.921530114746094e+02, 2.937511254882813e+02, 2.941267272949219e+02, 2.915136987304688e+02, 2.927324780273437e+02, 2.924098333740234e+02, 2.913066857910156e+02, 2.90780517578125e+02, 2.923733203125e+02, 2.908251965332031e+02, 2.927157690429688e+02, 2.91718369140625e+02, 2.913260375976562e+02, 2.925723852539062e+02, 2.913035815429687e+02, 2.903975427246094e+02, 2.906189013671875e+02, 2.905831787109375e+02, 2.907925854492187e+02, 2.90504833984375e+02, 2.900315698242188e+02, 2.913239739990235e+02, 2.930188556827911e+02, 2.917482940673828e+02, 2.899265356445313e+02, 2.904973962402344e+02, 2.901367919921875e+02, 2.901581268310547e+02, 2.90391865234375e+02, 2.900873657226563e+02, 2.912270056152344e+02, 2.897540991210938e+02, 2.902552795410156e+02] TransmittedSolarRadiation_room=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case240.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case240.txt index aaa4500dc6..abf68ea5fa 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case240.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case240.txt @@ -1,20 +1,20 @@ -last-generated=2021-05-25 +last-generated=2022-06-02 statistics-simulation= { "linear": "0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0", "nonlinear": "13", - "number of continuous time states": "23", + "number of continuous time states": "25", "numerical Jacobians": "0" } time=[0e+00, 3.15396e+07] checkResultsAccordingToASHRAEHeatingOrTempMax.lowerLimit=[5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03, 5.649e+03] -AnnualHeatingLoad=[0e+00, 1.977032763671875e+02, 3.249846228027343e+02, 4.143519683837891e+02, 5.198665454101563e+02, 6.367253601074219e+02, 7.998468701171874e+02, 8.885297534179688e+02, 1.00542791015625e+03, 1.137042971191406e+03, 1.3046373046875e+03, 1.428474223632812e+03, 1.507825083007813e+03, 1.643679211425781e+03, 1.771202915039062e+03, 1.894059729003906e+03, 1.986287744140625e+03, 2.106757055664063e+03, 2.238754716796875e+03, 2.347278149414063e+03, 2.419290576171875e+03, 2.513660732421875e+03, 2.599478212890625e+03, 2.688943120117187e+03, 2.738734296875e+03, 2.786647583007812e+03, 2.8823468359375e+03, 2.937941162109375e+03, 2.996284677734375e+03, 3.082912934570313e+03, 3.117840576171875e+03, 3.156333559570312e+03, 3.17072802734375e+03, 3.227141875e+03, 3.270848515625e+03, 3.3169892578125e+03, 3.361642041015625e+03, 3.3931567578125e+03, 3.401663330078125e+03, 3.421754790039062e+03, 3.434708554119587e+03, 3.456872314453125e+03, 3.475352978515625e+03, 3.48429345703125e+03, 3.515382265625e+03, 3.537224609375e+03, 3.548756103515625e+03, 3.561992919921875e+03, 3.570818935546875e+03, 3.57464501953125e+03, 3.57588525390625e+03, 3.5844229296875e+03, 3.589560302734375e+03, 3.59010546875e+03, 3.591702734375e+03, 3.593661865234375e+03, 3.59400146484375e+03, 3.5943369140625e+03, 3.594728515625e+03, 3.594728515625e+03, 3.596115772949885e+03, 3.6013271484375e+03, 3.605458251953125e+03, 3.6065400390625e+03, 3.614462158203125e+03, 3.622512524414063e+03, 3.62383447265625e+03, 3.624545654296875e+03, 3.6343523828125e+03, 3.638935546875e+03, 3.655345458984375e+03, 3.672410908203125e+03, 3.702616455078125e+03, 3.733923759765625e+03, 3.770411953125e+03, 3.804157836914062e+03, 3.857516943359375e+03, 3.895136186523438e+03, 3.947538330078125e+03, 3.991590991210937e+03, 4.034597900390625e+03, 4.076242119140625e+03, 4.136221328125e+03, 4.224623046875e+03, 4.331768203125e+03, 4.41807275390625e+03, 4.48815669921875e+03, 4.5871848046875e+03, 4.6823603125e+03, 4.770376953125e+03, 4.88188232421875e+03, 4.966386416015625e+03, 5.0550788671875e+03, 5.179914677734375e+03, 5.34474595703125e+03, 5.47960947265625e+03, 5.62795951171875e+03, 5.71392869140625e+03, 5.79378169921875e+03, 5.885906806640625e+03, 5.999283203125e+03] +AnnualHeatingLoad=[0e+00, 1.977048141479492e+02, 3.249855993652343e+02, 4.143540844726563e+02, 5.1986923828125e+02, 6.367282958984375e+02, 7.998495141601562e+02, 8.885326831054688e+02, 1.005431328125e+03, 1.137046999511719e+03, 1.304641821289063e+03, 1.428479299316406e+03, 1.507831430664063e+03, 1.643686047363281e+03, 1.771209506835937e+03, 1.894066687011719e+03, 1.98629384765625e+03, 2.106763403320313e+03, 2.238761552734375e+03, 2.347285229492188e+03, 2.419296923828125e+03, 2.51366732421875e+03, 2.59948484375e+03, 2.688950200195312e+03, 2.738741376953125e+03, 2.786653930664062e+03, 2.88235416015625e+03, 2.937951171875e+03, 2.996296640625e+03, 3.082925385742188e+03, 3.11785302734375e+03, 3.156344990234375e+03, 3.17073876953125e+03, 3.227153349609375e+03, 3.270859501953125e+03, 3.317000732421875e+03, 3.361653271484375e+03, 3.393167744140625e+03, 3.401674072265625e+03, 3.421765532226562e+03, 3.434719052166462e+03, 3.45688232421875e+03, 3.475363720703125e+03, 3.48430419921875e+03, 3.51539146484375e+03, 3.537234130859375e+03, 3.54876513671875e+03, 3.562001708984375e+03, 3.570827236328125e+03, 3.574653076171875e+03, 3.57589306640625e+03, 3.5844307421875e+03, 3.58956787109375e+03, 3.59011279296875e+03, 3.591709814453125e+03, 3.5936689453125e+03, 3.594008544921875e+03, 3.594343994140625e+03, 3.5947353515625e+03, 3.5947353515625e+03, 3.596122360416844e+03, 3.60133349609375e+03, 3.60546435546875e+03, 3.6065458984375e+03, 3.6144677734375e+03, 3.622517895507813e+03, 3.62383935546875e+03, 3.624550537109375e+03, 3.63435701171875e+03, 3.638939697265625e+03, 3.655349609375e+03, 3.67241505859375e+03, 3.702619873046875e+03, 3.733927421875e+03, 3.770415439453125e+03, 3.804161254882812e+03, 3.857519873046875e+03, 3.895138872070313e+03, 3.947541259765625e+03, 3.991593188476562e+03, 4.03459970703125e+03, 4.076244072265625e+03, 4.13622279296875e+03, 4.224625e+03, 4.33176966796875e+03, 4.418078125e+03, 4.4881601171875e+03, 4.587189130859375e+03, 4.6823632421875e+03, 4.770380859375e+03, 4.8818857421875e+03, 4.9663903125e+03, 5.05508216796875e+03, 5.179918095703125e+03, 5.34474888671875e+03, 5.4796119140625e+03, 5.627961953125e+03, 5.7139311328125e+03, 5.7937863671875e+03, 5.885911689453125e+03, 5.9992890625e+03] checkResultsAccordingToASHRAEHeatingOrTempMax.upperLimit=[7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03, 7.448e+03] checkResultsAccordingToASHRAECoolingOrTempMin.lowerLimit=[-1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03, -1.246e+03] -AnnualCoolingLoad=[0e+00, -1.115858852863312e-01, -1.115858852863312e-01, -1.115858852863312e-01, -1.115858852863312e-01, -1.115858852863312e-01, -1.115858852863312e-01, -1.115858852863312e-01, -1.115858852863312e-01, -1.115858852863312e-01, -1.115858852863312e-01, -1.115858852863312e-01, -1.115858852863312e-01, -1.115858852863312e-01, -1.115858852863312e-01, -1.115858852863312e-01, -1.115858852863312e-01, -1.115858852863312e-01, -1.115858852863312e-01, -1.115858852863312e-01, -1.164883151650429e-01, -1.164883151650429e-01, -3.231168389320374e-01, -3.231168389320374e-01, -6.387692928314209e+00, -1.064764785766602e+01, -1.064764785766602e+01, -1.084973496314617e+01, -1.185831832885742e+01, -1.185831832885742e+01, -1.555397129058838e+01, -1.886388969421387e+01, -3.575857315063477e+01, -3.612370681762695e+01, -3.980086135864258e+01, -4.060831604003906e+01, -4.079849624633789e+01, -4.95462760925293e+01, -6.977882659912109e+01, -8.340110778808594e+01, -1.009382629394531e+02, -1.025413423156738e+02, -1.170365600585938e+02, -1.401435693359375e+02, -1.462295684814453e+02, -1.633583953857422e+02, -1.774447631835938e+02, -1.909827966308594e+02, -2.130976409912109e+02, -2.535148941040039e+02, -3.036855773925781e+02, -3.208592834472656e+02, -3.469994799804688e+02, -3.802893029785157e+02, -4.138347778320312e+02, -4.532618957519531e+02, -5.023444970703125e+02, -5.568138977050781e+02, -6.062255322265624e+02, -6.383937976074219e+02, -6.747324829101562e+02, -6.960952783203124e+02, -7.210725727231484e+02, -7.701410144042969e+02, -7.826152001953125e+02, -8.024073486328125e+02, -8.47213173828125e+02, -8.8410994140625e+02, -9.148626098632812e+02, -9.531840625e+02, -9.619669311523437e+02, -9.727261352539062e+02, -9.866330810546875e+02, -9.922723388671875e+02, -1.00305615234375e+03, -1.017002868652344e+03, -1.022129760742188e+03, -1.0308154296875e+03, -1.032847778320312e+03, -1.037566040039062e+03, -1.048070678710938e+03, -1.05267431640625e+03, -1.053738525390625e+03, -1.053742919921875e+03, -1.053742919921875e+03, -1.0540439453125e+03, -1.0540439453125e+03, -1.0540439453125e+03, -1.0540439453125e+03, -1.0540439453125e+03, -1.054104125976562e+03, -1.055032958984375e+03, -1.055032958984375e+03, -1.055032958984375e+03, -1.055032958984375e+03, -1.055032958984375e+03, -1.055032958984375e+03, -1.055032958984375e+03, -1.055138671875e+03, -1.055138671875e+03, -1.055138671875e+03] +AnnualCoolingLoad=[0e+00, -1.139223724603653e-01, -1.139223724603653e-01, -1.139223724603653e-01, -1.139223724603653e-01, -1.139223724603653e-01, -1.139223724603653e-01, -1.139223724603653e-01, -1.139223724603653e-01, -1.139223724603653e-01, -1.139223724603653e-01, -1.139223724603653e-01, -1.139223724603653e-01, -1.139223724603653e-01, -1.139223724603653e-01, -1.139223724603653e-01, -1.139223724603653e-01, -1.139223724603653e-01, -1.139223724603653e-01, -1.139223724603653e-01, -1.187938153743744e-01, -1.187938153743744e-01, -3.253641128540039e-01, -3.253641128540039e-01, -6.389769077301025e+00, -1.064961624145508e+01, -1.064961624145508e+01, -1.085160889436304e+01, -1.186018371582031e+01, -1.186018371582031e+01, -1.555566501617432e+01, -1.886555480957031e+01, -3.576007629394531e+01, -3.612509918212891e+01, -3.980229187011719e+01, -4.060971717834472e+01, -4.079989624023438e+01, -4.954730224609375e+01, -6.977914154052735e+01, -8.340126800537109e+01, -1.009382019042969e+02, -1.025410220336914e+02, -1.170358352661133e+02, -1.401426385498047e+02, -1.46228515625e+02, -1.633572509765625e+02, -1.774434814453125e+02, -1.90981799621582e+02, -2.130964660644531e+02, -2.535137191772461e+02, -3.036852416992188e+02, -3.208587951660156e+02, -3.469985852050781e+02, -3.802885095214844e+02, -4.138330688476562e+02, -4.532602142333984e+02, -5.023432458496094e+02, -5.568126159667969e+02, -6.062242358398438e+02, -6.383928198242188e+02, -6.747316284179688e+02, -6.960941796874999e+02, -7.210709891941236e+02, -7.701389392089844e+02, -7.826130078125e+02, -8.024050903320312e+02, -8.472132641601562e+02, -8.841110241699218e+02, -9.148636474609375e+02, -9.531849060058594e+02, -9.619682739257812e+02, -9.727274169921875e+02, -9.866343017578125e+02, -9.922733154296875e+02, -1.003056945800781e+03, -1.017003723144531e+03, -1.022130493164062e+03, -1.030816040039062e+03, -1.032848266601562e+03, -1.037566284179688e+03, -1.048070922851562e+03, -1.052674560546875e+03, -1.053738647460938e+03, -1.053742919921875e+03, -1.053742919921875e+03, -1.0540439453125e+03, -1.0540439453125e+03, -1.0540439453125e+03, -1.0540439453125e+03, -1.0540439453125e+03, -1.054104125976562e+03, -1.055032958984375e+03, -1.055032958984375e+03, -1.055032958984375e+03, -1.055032958984375e+03, -1.055032958984375e+03, -1.055032958984375e+03, -1.055032958984375e+03, -1.055138549804688e+03, -1.055138549804688e+03, -1.055138549804688e+03] checkResultsAccordingToASHRAECoolingOrTempMin.upperLimit=[-4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02, -4.15e+02] checkResultsAccordingToASHRAEHeatingOrTempMax.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00] checkResultsAccordingToASHRAECoolingOrTempMin.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00] -Room.thermRoom.T=[2.941499938964844e+02, 2.930499572753906e+02, 2.930499877929688e+02, 2.930499572753906e+02, 2.930499914550781e+02, 2.930499908447266e+02, 2.930499572753906e+02, 2.930500183105469e+02, 2.930499877929688e+02, 2.930499572753906e+02, 2.93050048828125e+02, 2.930499749755859e+02, 2.930499572753906e+02, 2.930500183105469e+02, 2.930499877929688e+02, 2.930499572753906e+02, 2.930500646972656e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.93050048828125e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.930500183105469e+02, 2.930500164794922e+02, 2.930500183105469e+02, 2.930500335693359e+02, 2.930499877929688e+02, 2.931500506568048e+02, 2.930499877929688e+02, 2.930499572753906e+02, 2.930500183105469e+02, 2.930499572753906e+02, 2.931499633789062e+02, 2.93050048828125e+02, 2.930499877929688e+02, 2.931499725341797e+02, 2.930500183105469e+02, 2.930499877929688e+02, 2.931499938964844e+02, 2.93050048828125e+02, 2.930499850537171e+02, 2.93150023803711e+02, 2.93050048828125e+02, 2.931499633789062e+02, 2.930500183105469e+02, 2.931499938964844e+02, 2.930499877929688e+02, 2.931500244140625e+02, 2.930500048828125e+02, 2.931499633789062e+02, 2.931499938964844e+02, 2.93049994506836e+02, 2.931499633789062e+02, 2.931500244140625e+02, 2.930499841308594e+02, 2.931499633789062e+02, 2.931500451660156e+02, 2.931499774169922e+02, 2.931499633789062e+02, 2.931500244140625e+02, 2.930499877929688e+02, 2.9314990234375e+02, 2.931500160037063e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.93050048828125e+02, 2.931499633789062e+02, 2.931500244140625e+02, 2.930499877929688e+02, 2.931499633789062e+02, 2.931500427246094e+02, 2.930499877929688e+02, 2.931499633789062e+02, 2.93050048828125e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.930500793457031e+02, 2.930500183105469e+02, 2.931045544433593e+02, 2.930500793457031e+02, 2.930500061035156e+02, 2.930499932861328e+02, 2.9305001953125e+02, 2.930499877929688e+02, 2.930500183105469e+02, 2.930499877929688e+02, 2.930499853515625e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.930499700927734e+02, 2.931500244140625e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.930500183105469e+02, 2.930499975585938e+02, 2.930499877929688e+02, 2.930500793457031e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.930500793457031e+02, 2.930499877929688e+02] -Room.starRoom.T=[2.895909423828125e+02, 2.890070886230469e+02, 2.90226123046875e+02, 2.907037713623047e+02, 2.901874047851563e+02, 2.90455923461914e+02, 2.902748742675781e+02, 2.906789398193359e+02, 2.895124072265625e+02, 2.909125299072265e+02, 2.903263916015625e+02, 2.906948846435547e+02, 2.919323937988281e+02, 2.900742559814453e+02, 2.902434387207031e+02, 2.924394104003906e+02, 2.915522583007813e+02, 2.905648962402344e+02, 2.90429580078125e+02, 2.910222235107422e+02, 2.908241516113281e+02, 2.908744763183594e+02, 2.903189624023437e+02, 2.916078759765625e+02, 2.927327600097656e+02, 2.914800567626953e+02, 2.912964538574219e+02, 2.933217078776675e+02, 2.907728735351562e+02, 2.921645043945313e+02, 2.921698303222656e+02, 2.918534655761719e+02, 2.935146154785156e+02, 2.917847625732422e+02, 2.921201062011719e+02, 2.935015625e+02, 2.921841516113281e+02, 2.924139373779297e+02, 2.936066369628906e+02, 2.923896740722656e+02, 2.925856231033576e+02, 2.938277966308594e+02, 2.925500903320312e+02, 2.93350228881836e+02, 2.918559729003906e+02, 2.937242828369141e+02, 2.923786181640625e+02, 2.935406652832031e+02, 2.927048010253906e+02, 2.938244696044922e+02, 2.95404296875e+02, 2.924435327148437e+02, 2.949614294433593e+02, 2.939850012207031e+02, 2.928465954589844e+02, 2.952150085449219e+02, 2.944543518066406e+02, 2.937636108398438e+02, 2.949561975097656e+02, 2.938377453613281e+02, 2.929380090565181e+02, 2.944694854736328e+02, 2.932188480407234e+02, 2.936143444824219e+02, 2.941457116699219e+02, 2.928745880126953e+02, 2.942156896972656e+02, 2.951273449707031e+02, 2.924843493652344e+02, 2.9407923828125e+02, 2.944549682617188e+02, 2.918430065917969e+02, 2.931300903320313e+02, 2.927400726318359e+02, 2.916361096191406e+02, 2.911100463867188e+02, 2.927022924804688e+02, 2.911552581787109e+02, 2.930661560058594e+02, 2.920471160888672e+02, 2.916562805175781e+02, 2.929015893554687e+02, 2.916335192871094e+02, 2.907279156494141e+02, 2.909492248535156e+02, 2.909146392822266e+02, 2.911221520996094e+02, 2.908357061767578e+02, 2.90361953125e+02, 2.916529809570313e+02, 2.933987976074219e+02, 2.920770611572266e+02, 2.902572766113281e+02, 2.908272680664062e+02, 2.90466572265625e+02, 2.904879150390625e+02, 2.907212426757812e+02, 2.904175048828125e+02, 2.915574768066406e+02, 2.9008484375e+02, 2.905856628417969e+02] +Room.thermRoom.T=[2.941499938964844e+02, 2.930499572753906e+02, 2.930499877929688e+02, 2.930499572753906e+02, 2.930499914550781e+02, 2.930499908447266e+02, 2.930499572753906e+02, 2.930500183105469e+02, 2.930499877929688e+02, 2.930499572753906e+02, 2.93050048828125e+02, 2.930499749755859e+02, 2.930499572753906e+02, 2.930500183105469e+02, 2.930499877929688e+02, 2.930499572753906e+02, 2.930500646972656e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.93050048828125e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.930500183105469e+02, 2.930500164794922e+02, 2.930500183105469e+02, 2.930500335693359e+02, 2.930499877929688e+02, 2.931500506428983e+02, 2.930499877929688e+02, 2.930499572753906e+02, 2.930500183105469e+02, 2.930499572753906e+02, 2.931499633789062e+02, 2.93050048828125e+02, 2.930499877929688e+02, 2.931499725341797e+02, 2.930500183105469e+02, 2.930499877929688e+02, 2.931499938964844e+02, 2.93050048828125e+02, 2.930499850537171e+02, 2.93150023803711e+02, 2.93050048828125e+02, 2.931499633789062e+02, 2.930500183105469e+02, 2.931499938964844e+02, 2.930499877929688e+02, 2.931500244140625e+02, 2.930500048828125e+02, 2.931499633789062e+02, 2.931499938964844e+02, 2.93049994506836e+02, 2.931499633789062e+02, 2.931500244140625e+02, 2.930499877929688e+02, 2.931499633789062e+02, 2.931500451660156e+02, 2.931499774169922e+02, 2.931499633789062e+02, 2.931500244140625e+02, 2.930499877929688e+02, 2.9314990234375e+02, 2.93150015849841e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.93050048828125e+02, 2.931499633789062e+02, 2.931500244140625e+02, 2.930499877929688e+02, 2.931499633789062e+02, 2.931500427246094e+02, 2.930499877929688e+02, 2.931499633789062e+02, 2.93050048828125e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.930500793457031e+02, 2.930500183105469e+02, 2.931044116210937e+02, 2.930500793457031e+02, 2.930500061035156e+02, 2.930499932861328e+02, 2.9305001953125e+02, 2.930499877929688e+02, 2.930500183105469e+02, 2.930499877929688e+02, 2.930499853515625e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.930499700927734e+02, 2.931500305175781e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.930500183105469e+02, 2.930499975585938e+02, 2.930499877929688e+02, 2.930500793457031e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.930500793457031e+02, 2.930499877929688e+02] +Room.starRoom.T=[2.895909423828125e+02, 2.890070886230469e+02, 2.90226123046875e+02, 2.907037713623047e+02, 2.901874047851563e+02, 2.904558349609375e+02, 2.902748742675781e+02, 2.906789398193359e+02, 2.895124072265625e+02, 2.909125299072265e+02, 2.903263916015625e+02, 2.906948669433594e+02, 2.919323937988281e+02, 2.900742517089844e+02, 2.902434387207031e+02, 2.924394104003906e+02, 2.915522741699219e+02, 2.905648962402344e+02, 2.904295788574219e+02, 2.910222235107422e+02, 2.908241516113281e+02, 2.908744763183594e+02, 2.903189624023437e+02, 2.916078759765625e+02, 2.927327600097656e+02, 2.914800567626953e+02, 2.912964538574219e+02, 2.933216489396005e+02, 2.907728735351562e+02, 2.921644927978516e+02, 2.921698303222656e+02, 2.918534655761719e+02, 2.935146154785156e+02, 2.917847625732422e+02, 2.921201220703125e+02, 2.935015625e+02, 2.921841516113281e+02, 2.924139678955078e+02, 2.936066369628906e+02, 2.923896740722656e+02, 2.925856231033576e+02, 2.938277960205078e+02, 2.925501208496094e+02, 2.93350228881836e+02, 2.918559729003906e+02, 2.937242828369141e+02, 2.923786181640625e+02, 2.935406756591797e+02, 2.927048181152344e+02, 2.938244763183594e+02, 2.95404296875e+02, 2.924435327148437e+02, 2.949614294433593e+02, 2.939850012207031e+02, 2.928466027832031e+02, 2.952150085449219e+02, 2.944543518066406e+02, 2.937636108398438e+02, 2.949561975097656e+02, 2.938377453613281e+02, 2.929380390328568e+02, 2.944694854736328e+02, 2.932189022260221e+02, 2.936143487548828e+02, 2.941457116699219e+02, 2.928745880126953e+02, 2.942156750488281e+02, 2.951273675537109e+02, 2.924843493652344e+02, 2.9407923828125e+02, 2.944549682617188e+02, 2.918430181884765e+02, 2.931300903320313e+02, 2.927400708007813e+02, 2.916361315917969e+02, 2.911100463867188e+02, 2.927022924804688e+02, 2.911552581787109e+02, 2.930660900878906e+02, 2.920471160888672e+02, 2.916562805175781e+02, 2.929016143798828e+02, 2.916335485839843e+02, 2.907278930664062e+02, 2.909492248535156e+02, 2.909146392822266e+02, 2.911221520996094e+02, 2.908357061767578e+02, 2.90361953125e+02, 2.916529809570313e+02, 2.933987365722656e+02, 2.920770611572266e+02, 2.902572766113281e+02, 2.908272515869141e+02, 2.90466572265625e+02, 2.904878845214844e+02, 2.907212426757812e+02, 2.904175048828125e+02, 2.91557490234375e+02, 2.900848742675781e+02, 2.905856628417969e+02] TransmittedSolarRadiation_room=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case250.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case250.txt index 311dce73b7..5026197a64 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case250.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case250.txt @@ -1,20 +1,20 @@ -last-generated=2021-05-25 +last-generated=2022-07-06 statistics-simulation= { "linear": "0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0", "nonlinear": "13", - "number of continuous time states": "23", + "number of continuous time states": "25", "numerical Jacobians": "0" } time=[0e+00, 3.15396e+07] checkResultsAccordingToASHRAEHeatingOrTempMax.lowerLimit=[4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03, 4.751e+03] -AnnualHeatingLoad=[0e+00, 2.077236898803711e+02, 3.427180847167969e+02, 4.373966021728515e+02, 5.494149755859376e+02, 6.730989196777343e+02, 8.43387587890625e+02, 9.394469543457031e+02, 1.061699521484375e+03, 1.1960905859375e+03, 1.373300317382812e+03, 1.503722302246094e+03, 1.588582861328125e+03, 1.733253444824219e+03, 1.862962080078125e+03, 1.990622338867187e+03, 2.0869466796875e+03, 2.208630043945313e+03, 2.343570439453125e+03, 2.453157836914062e+03, 2.526210302734375e+03, 2.62428611328125e+03, 2.71250623046875e+03, 2.802306391601563e+03, 2.8553955078125e+03, 2.908417114257812e+03, 3.005594912109375e+03, 3.06563916015625e+03, 3.129565439453125e+03, 3.214277963867187e+03, 3.254303466796875e+03, 3.2960298828125e+03, 3.31459521484375e+03, 3.375851640625e+03, 3.4193679296875e+03, 3.46673583984375e+03, 3.5164469140625e+03, 3.55135955078125e+03, 3.565137939453125e+03, 3.5905654296875e+03, 3.607054371753022e+03, 3.6351796875e+03, 3.658752004108816e+03, 3.670716796875e+03, 3.709525087890625e+03, 3.73510888671875e+03, 3.75162015625e+03, 3.77076806640625e+03, 3.784917763671875e+03, 3.7920107421875e+03, 3.79553125e+03, 3.809759477539063e+03, 3.81956982421875e+03, 3.82204736328125e+03, 3.82787822265625e+03, 3.833403564453125e+03, 3.8353916015625e+03, 3.83741943359375e+03, 3.83938818359375e+03, 3.84082373046875e+03, 3.84599897714071e+03, 3.856706298828125e+03, 3.86573388671875e+03, 3.8688076171875e+03, 3.882700927734375e+03, 3.897400537109375e+03, 3.90170849609375e+03, 3.90487548828125e+03, 3.9190369140625e+03, 3.927381591796875e+03, 3.949847900390625e+03, 3.973772509765625e+03, 4.008269553202699e+03, 4.044645263671875e+03, 4.086373935546875e+03, 4.124954345703125e+03, 4.18553466796875e+03, 4.23064482421875e+03, 4.2887470703125e+03, 4.340068212890625e+03, 4.38807001953125e+03, 4.43462353515625e+03, 4.500590703125e+03, 4.5946276171875e+03, 4.7048850390625e+03, 4.79438896484375e+03, 4.87066314453125e+03, 4.97647412109375e+03, 5.0763787109375e+03, 5.1688694140625e+03, 5.286365234375e+03, 5.37734673828125e+03, 5.4756714453125e+03, 5.6072362109375e+03, 5.78005642578125e+03, 5.9202029296875e+03, 6.07538357421875e+03, 6.16933490234375e+03, 6.2568680859375e+03, 6.357872412109375e+03, 6.4782900390625e+03] +AnnualHeatingLoad=[0e+00, 2.077252581787109e+02, 3.427198852539062e+02, 4.373985247802734e+02, 5.494172949218751e+02, 6.731013671875e+02, 8.433904565429688e+02, 9.394499780273437e+02, 1.061702573242188e+03, 1.196093881835938e+03, 1.373303955078125e+03, 1.503725424804687e+03, 1.588585712890625e+03, 1.733256357421875e+03, 1.862964877929687e+03, 1.990625024414062e+03, 2.086949609375e+03, 2.208633217773438e+03, 2.34357384765625e+03, 2.45316056640625e+03, 2.526212744140625e+03, 2.6242885546875e+03, 2.712508671875e+03, 2.802309077148438e+03, 2.855398193359375e+03, 2.908419311523438e+03, 3.005597109375e+03, 3.06564111328125e+03, 3.12956767578125e+03, 3.214280405273437e+03, 3.254305908203125e+03, 3.29603232421875e+03, 3.3145986328125e+03, 3.37585505859375e+03, 3.419370859375e+03, 3.466736572265625e+03, 3.516447890625e+03, 3.55136052734375e+03, 3.565138916015625e+03, 3.590566162109375e+03, 3.607054881948286e+03, 3.63518017578125e+03, 3.658752498246844e+03, 3.670716796875e+03, 3.70952435546875e+03, 3.735108154296875e+03, 3.7516191796875e+03, 3.77076708984375e+03, 3.78491654296875e+03, 3.79200927734375e+03, 3.79552978515625e+03, 3.809757768554688e+03, 3.819568115234375e+03, 3.822045654296875e+03, 3.827876025390625e+03, 3.8334013671875e+03, 3.835388916015625e+03, 3.83741650390625e+03, 3.83938525390625e+03, 3.840820556640625e+03, 3.845995554842045e+03, 3.856703369140625e+03, 3.86573095703125e+03, 3.868804443359375e+03, 3.882697265625e+03, 3.89739638671875e+03, 3.9017041015625e+03, 3.904870849609375e+03, 3.91903228515625e+03, 3.927376708984375e+03, 3.9498427734375e+03, 3.9737673828125e+03, 4.008265138725385e+03, 4.044638916015625e+03, 4.086367587890625e+03, 4.124947998046875e+03, 4.18552783203125e+03, 4.23063798828125e+03, 4.28873974609375e+03, 4.340060888671875e+03, 4.38806318359375e+03, 4.4346162109375e+03, 4.50058240234375e+03, 4.59461931640625e+03, 4.70487673828125e+03, 4.79438115234375e+03, 4.87065533203125e+03, 4.97646630859375e+03, 5.07637107421875e+03, 5.1688616015625e+03, 5.2863583984375e+03, 5.377340390625e+03, 5.47566607421875e+03, 5.607231328125e+03, 5.78005154296875e+03, 5.9201990234375e+03, 6.0753791796875e+03, 6.16933001953125e+03, 6.25686341796875e+03, 6.357868017578125e+03, 6.47828662109375e+03] checkResultsAccordingToASHRAEHeatingOrTempMax.upperLimit=[7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03, 7.024e+03] checkResultsAccordingToASHRAECoolingOrTempMin.lowerLimit=[-3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03, -3.38e+03] -AnnualCoolingLoad=[0e+00, -1.10137440264225e-01, -1.10137440264225e-01, -1.482387483119965e-01, -3.051081895828247e-01, -3.051081895828247e-01, -3.051081895828247e-01, -7.734861373901367e-01, -7.734861373901367e-01, -7.734861373901367e-01, -7.734861373901367e-01, -7.734861373901367e-01, -1.372396469116211e+00, -1.372396469116211e+00, -1.372396469116211e+00, -1.372396469116211e+00, -1.372396469116211e+00, -1.372396469116211e+00, -1.372396469116211e+00, -1.372396469116211e+00, -6.741167068481445e+00, -6.899428844451904e+00, -9.886247634887695e+00, -9.921425819396973e+00, -2.079504867553711e+01, -3.222015380859375e+01, -3.222015380859375e+01, -3.537195556640625e+01, -3.740984344482422e+01, -3.954777908325195e+01, -4.93922119140625e+01, -5.867190933227539e+01, -8.573210937499999e+01, -8.936460113525391e+01, -1.008019485473633e+02, -1.044576629638672e+02, -1.047927017211914e+02, -1.213696136474609e+02, -1.502080651855469e+02, -1.700043334960938e+02, -1.986504516601562e+02, -2.064593936157227e+02, -2.302760467529297e+02, -2.62601318359375e+02, -2.709707946777344e+02, -2.936022186279297e+02, -3.138017272949219e+02, -3.326118157958985e+02, -3.623690185546875e+02, -4.119112451171875e+02, -4.707117309570312e+02, -4.92822021484375e+02, -5.307935327148438e+02, -5.662278393554687e+02, -6.087701416015625e+02, -6.608217590332031e+02, -7.150166455078125e+02, -7.770979614257812e+02, -8.32257197265625e+02, -8.644339221191407e+02, -9.126795654296875e+02, -9.408539440917968e+02, -9.718655132328698e+02, -1.031260270996094e+03, -1.0549821875e+03, -1.084240112304688e+03, -1.138932143554687e+03, -1.179770041503906e+03, -1.221055419921875e+03, -1.267059724121094e+03, -1.282405395507812e+03, -1.300130737304688e+03, -1.322427124023438e+03, -1.337697785644531e+03, -1.355161010742188e+03, -1.377064453125e+03, -1.390272583007812e+03, -1.403900634765625e+03, -1.409472485351562e+03, -1.422095458984375e+03, -1.440082885742188e+03, -1.448477360839844e+03, -1.451133178710938e+03, -1.4517158203125e+03, -1.4517158203125e+03, -1.454409545898438e+03, -1.454909912109375e+03, -1.454909912109375e+03, -1.454909912109375e+03, -1.45498876953125e+03, -1.45526328125e+03, -1.45650048828125e+03, -1.45650048828125e+03, -1.45650048828125e+03, -1.45650048828125e+03, -1.45650048828125e+03, -1.45650048828125e+03, -1.45650048828125e+03, -1.456932006835938e+03, -1.457076538085938e+03, -1.457076538085938e+03] +AnnualCoolingLoad=[0e+00, -1.12454429268837e-01, -1.12454429268837e-01, -1.505186408758163e-01, -3.073258996009827e-01, -3.073258996009827e-01, -3.073258996009827e-01, -7.756425738334656e-01, -7.756425738334656e-01, -7.756425738334656e-01, -7.756425738334656e-01, -7.756425738334656e-01, -1.374441385269165e+00, -1.374441385269165e+00, -1.374441385269165e+00, -1.374441385269165e+00, -1.374441385269165e+00, -1.374441385269165e+00, -1.374441385269165e+00, -1.374441385269165e+00, -6.743113040924072e+00, -6.901308059692383e+00, -9.888031959533691e+00, -9.923163414001465e+00, -2.079652252197265e+01, -3.222150802612305e+01, -3.222150802612305e+01, -3.537313003540039e+01, -3.741098022460938e+01, -3.954879379272461e+01, -4.939302444458008e+01, -5.867255401611328e+01, -8.573245239257812e+01, -8.936476135253906e+01, -1.008019180297852e+02, -1.044574600219727e+02, -1.047924423217773e+02, -1.213687973022461e+02, -1.502066003417969e+02, -1.700025177001953e+02, -1.986484222412109e+02, -2.064571810913086e+02, -2.302737884521484e+02, -2.625987854003906e+02, -2.709682312011719e+02, -2.935995941162109e+02, -3.137989807128906e+02, -3.326087744140625e+02, -3.623649597167969e+02, -4.11906996459961e+02, -4.7070654296875e+02, -4.92816650390625e+02, -5.307880737304688e+02, -5.662221838378906e+02, -6.0876416015625e+02, -6.608154113769531e+02, -7.150101147460938e+02, -7.770914306640625e+02, -8.322504833984375e+02, -8.644269030761719e+02, -9.126723022460938e+02, -9.408464978027343e+02, -9.718578932682217e+02, -1.031251970214844e+03, -1.054973520507813e+03, -1.084231201171875e+03, -1.138923232421875e+03, -1.179763937988281e+03, -1.221048950195312e+03, -1.267053154296875e+03, -1.282398681640625e+03, -1.300123901367188e+03, -1.322419921875e+03, -1.337690705566406e+03, -1.35515380859375e+03, -1.377057006835938e+03, -1.390264892578125e+03, -1.403892944335938e+03, -1.409464672851562e+03, -1.422087524414062e+03, -1.440074829101562e+03, -1.448469282226562e+03, -1.451125e+03, -1.451707397460938e+03, -1.451707397460938e+03, -1.454401000976562e+03, -1.454901245117188e+03, -1.454901245117188e+03, -1.454901245117188e+03, -1.454980102539062e+03, -1.455254516601562e+03, -1.45649169921875e+03, -1.45649169921875e+03, -1.45649169921875e+03, -1.45649169921875e+03, -1.45649169921875e+03, -1.45649169921875e+03, -1.45649169921875e+03, -1.456923217773438e+03, -1.457067749023438e+03, -1.457067749023438e+03] checkResultsAccordingToASHRAECoolingOrTempMin.upperLimit=[-2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03, -2.177e+03] checkResultsAccordingToASHRAEHeatingOrTempMax.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00] checkResultsAccordingToASHRAECoolingOrTempMin.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -Room.thermRoom.T=[2.941499938964844e+02, 2.930499505615234e+02, 2.930499877929688e+02, 2.930499572753906e+02, 2.930499914550781e+02, 2.930499908447266e+02, 2.930499572753906e+02, 2.93050034790039e+02, 2.930499877929688e+02, 2.930499572753906e+02, 2.93050048828125e+02, 2.930499749755859e+02, 2.930499572753906e+02, 2.930500183105469e+02, 2.930499877929688e+02, 2.93049935913086e+02, 2.930500793457031e+02, 2.930499877929688e+02, 2.930499584960937e+02, 2.930500793457031e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.930500183105469e+02, 2.930500164794922e+02, 2.931500244140625e+02, 2.930500335693359e+02, 2.930499877929688e+02, 2.931500549316406e+02, 2.930499877929688e+02, 2.930499267578125e+02, 2.930500061035156e+02, 2.930499572753906e+02, 2.931499328613281e+02, 2.93050048828125e+02, 2.930499877929688e+02, 2.931499420166016e+02, 2.93050048828125e+02, 2.930499877929688e+02, 2.931499938964844e+02, 2.930500793457031e+02, 2.930499850537171e+02, 2.931499938964844e+02, 2.930501098632812e+02, 2.93075566845008e+02, 2.93050048828125e+02, 2.931499938964844e+02, 2.930499877929688e+02, 2.931500549316406e+02, 2.930500219726562e+02, 2.931499633789062e+02, 2.931499938964844e+02, 2.93049994506836e+02, 2.931499328613281e+02, 2.931499938964844e+02, 2.930499877929688e+02, 2.931499298095703e+02, 2.931500451660156e+02, 2.931499774169922e+02, 2.931499328613281e+02, 2.931500549316406e+02, 2.930499877929688e+02, 2.931498718261719e+02, 2.931500592712962e+02, 2.931499938964844e+02, 2.931499914550781e+02, 2.930500793457031e+02, 2.931499633789062e+02, 2.931500323486328e+02, 2.930499877929688e+02, 2.931499633789062e+02, 2.931500366210938e+02, 2.930499877929688e+02, 2.930499441370328e+02, 2.931500799560547e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.9305748188579e+02, 2.930500183105469e+02, 2.931499890136719e+02, 2.930501098632812e+02, 2.930500061035156e+02, 2.931499688720703e+02, 2.930500500488281e+02, 2.930499877929688e+02, 2.930500341796875e+02, 2.930499877929688e+02, 2.930499853515625e+02, 2.930500140380859e+02, 2.930499877929688e+02, 2.930499700927734e+02, 2.931500244140625e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.93050048828125e+02, 2.930499975585938e+02, 2.930499877929688e+02, 2.930501062011719e+02, 2.930499877929688e+02, 2.930499743652344e+02, 2.930501165771485e+02, 2.930499877929688e+02] -Room.starRoom.T=[2.894175109863281e+02, 2.894479821777344e+02, 2.898966540527344e+02, 2.903787292480469e+02, 2.906642858886719e+02, 2.901261260986328e+02, 2.899604382324219e+02, 2.904754559326172e+02, 2.891813061523437e+02, 2.906036999511718e+02, 2.908070129394531e+02, 2.903648114013672e+02, 2.916480041503906e+02, 2.898422094726562e+02, 2.89914169921875e+02, 2.923518585205078e+02, 2.917293798828125e+02, 2.902364868164062e+02, 2.909978186035156e+02, 2.91086875e+02, 2.904976379394531e+02, 2.909368267822265e+02, 2.900038134765625e+02, 2.912882531738281e+02, 2.936120764160156e+02, 2.911571807861328e+02, 2.909926098632812e+02, 2.93724780883789e+02, 2.904435217285156e+02, 2.919255255126953e+02, 2.925319396972656e+02, 2.915239837646484e+02, 2.934171899414063e+02, 2.923561303710937e+02, 2.917922766113281e+02, 2.936820098876953e+02, 2.929077685546875e+02, 2.920842724609375e+02, 2.937812390136719e+02, 2.927151293945312e+02, 2.922578142361454e+02, 2.948387396240234e+02, 2.928286498724036e+02, 2.930173169336285e+02, 2.920591101074219e+02, 2.934431671142578e+02, 2.920577416992188e+02, 2.939884112548828e+02, 2.923773388671875e+02, 2.935665521240234e+02, 2.959344787597656e+02, 2.921146618652344e+02, 2.950236877441406e+02, 2.947348547363281e+02, 2.924907995605469e+02, 2.955486480712891e+02, 2.951032739257813e+02, 2.934362744140625e+02, 2.951608874511719e+02, 2.942512127685547e+02, 2.925937914672685e+02, 2.948361712646484e+02, 2.934663902072732e+02, 2.932955139160156e+02, 2.950617517089844e+02, 2.926178344726562e+02, 2.939074548339844e+02, 2.959095458984375e+02, 2.921534375e+02, 2.937735693359375e+02, 2.951225158691406e+02, 2.915141650390625e+02, 2.929182835716642e+02, 2.940651013183594e+02, 2.913078259277344e+02, 2.9083837890625e+02, 2.930349503097001e+02, 2.908256024169922e+02, 2.9324513671875e+02, 2.921233233642578e+02, 2.913285461425781e+02, 2.93577152709961e+02, 2.914763598632812e+02, 2.904028515625e+02, 2.918339892578125e+02, 2.905832183837891e+02, 2.907979089355469e+02, 2.914404040527344e+02, 2.90031650390625e+02, 2.913337408447265e+02, 2.93707568359375e+02, 2.917484460449219e+02, 2.899633544921875e+02, 2.908791101074219e+02, 2.901370043945312e+02, 2.901760467529297e+02, 2.907920617675781e+02, 2.900876806640625e+02, 2.914196362304688e+02, 2.901180023193359e+02, 2.902564392089844e+02] +Room.thermRoom.T=[2.941499938964844e+02, 2.930499505615234e+02, 2.930499877929688e+02, 2.930499572753906e+02, 2.930499914550781e+02, 2.930499908447266e+02, 2.930499572753906e+02, 2.93050034790039e+02, 2.930499877929688e+02, 2.930499572753906e+02, 2.93050048828125e+02, 2.930499749755859e+02, 2.930499572753906e+02, 2.930500183105469e+02, 2.930499877929688e+02, 2.93049935913086e+02, 2.930500793457031e+02, 2.930499877929688e+02, 2.930499584960937e+02, 2.930500793457031e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.930500183105469e+02, 2.930500164794922e+02, 2.931500244140625e+02, 2.930500335693359e+02, 2.930499877929688e+02, 2.931500549316406e+02, 2.930499877929688e+02, 2.930499267578125e+02, 2.930500061035156e+02, 2.930499572753906e+02, 2.931499328613281e+02, 2.93050048828125e+02, 2.930499877929688e+02, 2.931499420166016e+02, 2.93050048828125e+02, 2.930499877929688e+02, 2.931499938964844e+02, 2.930500793457031e+02, 2.930499850537171e+02, 2.931499938964844e+02, 2.930501098632812e+02, 2.930759626270395e+02, 2.93050048828125e+02, 2.931499938964844e+02, 2.930499877929688e+02, 2.931500549316406e+02, 2.930500219726562e+02, 2.931499633789062e+02, 2.931499938964844e+02, 2.93049994506836e+02, 2.931499328613281e+02, 2.931499938964844e+02, 2.930499877929688e+02, 2.931499298095703e+02, 2.931500451660156e+02, 2.931499774169922e+02, 2.931499328613281e+02, 2.931500549316406e+02, 2.930499877929688e+02, 2.931498718261719e+02, 2.931500592062038e+02, 2.931499938964844e+02, 2.931499914550781e+02, 2.930500793457031e+02, 2.931499633789062e+02, 2.931500323486328e+02, 2.930499877929688e+02, 2.931499633789062e+02, 2.931500366210938e+02, 2.930499877929688e+02, 2.93049944399481e+02, 2.931500799560547e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.930574129544772e+02, 2.930500183105469e+02, 2.931499890136719e+02, 2.930501098632812e+02, 2.930500061035156e+02, 2.931499688720703e+02, 2.930500500488281e+02, 2.930499877929688e+02, 2.930500341796875e+02, 2.930499877929688e+02, 2.930499853515625e+02, 2.930500140380859e+02, 2.930499877929688e+02, 2.930499700927734e+02, 2.931500244140625e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.93050048828125e+02, 2.930499975585938e+02, 2.930499877929688e+02, 2.930501062011719e+02, 2.930499877929688e+02, 2.930499743652344e+02, 2.930501165771485e+02, 2.930499877929688e+02] +Room.starRoom.T=[2.894175109863281e+02, 2.894480603027343e+02, 2.898966540527344e+02, 2.903787292480469e+02, 2.906642858886719e+02, 2.901260070800781e+02, 2.899604382324219e+02, 2.904754229736328e+02, 2.891813061523437e+02, 2.906036999511718e+02, 2.908070373535156e+02, 2.903648291015625e+02, 2.916479846191406e+02, 2.898422094726562e+02, 2.899141723632812e+02, 2.923518676757812e+02, 2.917293798828125e+02, 2.902364562988281e+02, 2.909978186035156e+02, 2.91086875e+02, 2.904976379394531e+02, 2.909368267822265e+02, 2.900038134765625e+02, 2.912882531738281e+02, 2.936120678710938e+02, 2.911571807861328e+02, 2.909926098632812e+02, 2.937247503662109e+02, 2.904435217285156e+02, 2.919255255126953e+02, 2.925319213867188e+02, 2.915239892578125e+02, 2.934171899414063e+02, 2.923561077880859e+02, 2.917922766113281e+02, 2.936820098876953e+02, 2.929077685546875e+02, 2.920842724609375e+02, 2.937812390136719e+02, 2.927151293945312e+02, 2.922578142361454e+02, 2.948387390136719e+02, 2.928287062892405e+02, 2.930174497891317e+02, 2.920591101074219e+02, 2.934431671142578e+02, 2.920577416992188e+02, 2.939883911132812e+02, 2.923773522949219e+02, 2.935665521240234e+02, 2.959344482421875e+02, 2.921146618652344e+02, 2.950236840820313e+02, 2.947348547363281e+02, 2.924908264160156e+02, 2.955486511230469e+02, 2.951032739257813e+02, 2.934362884521485e+02, 2.951609033203125e+02, 2.942512426757813e+02, 2.925937914672685e+02, 2.948361712646484e+02, 2.9346648129311e+02, 2.932955139160156e+02, 2.950617517089844e+02, 2.926178344726562e+02, 2.939074548339844e+02, 2.959095458984375e+02, 2.921534375e+02, 2.937735638427735e+02, 2.951225158691406e+02, 2.915141650390625e+02, 2.929182971693065e+02, 2.940650708007813e+02, 2.913078344726562e+02, 2.908383636474609e+02, 2.930349357978448e+02, 2.908255737304688e+02, 2.9324513671875e+02, 2.921233117675781e+02, 2.913285766601563e+02, 2.93577177734375e+02, 2.914763000488281e+02, 2.904028210449219e+02, 2.91833974609375e+02, 2.905832183837891e+02, 2.907979113769532e+02, 2.914403778076172e+02, 2.90031630859375e+02, 2.913337408447265e+02, 2.937075622558594e+02, 2.917484460449219e+02, 2.899633544921875e+02, 2.908791265869141e+02, 2.901370043945312e+02, 2.901760467529297e+02, 2.907920617675781e+02, 2.900876806640625e+02, 2.914196362304688e+02, 2.90118032836914e+02, 2.902564392089844e+02] TransmittedSolarRadiation_room=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case270.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case270.txt index f5539aeadb..1f21f727b2 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case270.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case270.txt @@ -1,20 +1,20 @@ -last-generated=2021-05-25 +last-generated=2022-07-06 statistics-simulation= { "linear": "0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0", "nonlinear": "13", - "number of continuous time states": "23", + "number of continuous time states": "25", "numerical Jacobians": "0" } time=[0e+00, 3.15396e+07] checkResultsAccordingToASHRAEHeatingOrTempMax.lowerLimit=[4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03, 4.51e+03] -AnnualHeatingLoad=[0e+00, 1.616527404785156e+02, 2.590305822753906e+02, 3.237918084716797e+02, 4.044119567871094e+02, 4.861728363037109e+02, 6.149589526367188e+02, 6.8875611328125e+02, 7.702527978515625e+02, 8.54575341796875e+02, 1.004739379882812e+03, 1.107092009277344e+03, 1.164532568359375e+03, 1.276203161621094e+03, 1.36052607421875e+03, 1.446454345703125e+03, 1.5153759765625e+03, 1.599423383789062e+03, 1.7022939453125e+03, 1.783860285644531e+03, 1.835680200195312e+03, 1.904336059570312e+03, 1.976219765625e+03, 2.043987685546875e+03, 2.09032080078125e+03, 2.1369794921875e+03, 2.212443662109375e+03, 2.264400634765625e+03, 2.31752763671875e+03, 2.388913637695312e+03, 2.42697412109375e+03, 2.46467099609375e+03, 2.484139892578125e+03, 2.540151123046875e+03, 2.583282607421875e+03, 2.626871337890625e+03, 2.672448974609375e+03, 2.705502338867188e+03, 2.720858642578125e+03, 2.748468090820313e+03, 2.767446906049996e+03, 2.796942138671875e+03, 2.822221328125e+03, 2.836565673828125e+03, 2.87314177734375e+03, 2.9006630859375e+03, 2.9187101953125e+03, 2.939753662109375e+03, 2.955489384765625e+03, 2.963721923828125e+03, 2.967907470703125e+03, 2.9828568359375e+03, 2.99424072265625e+03, 2.9972666015625e+03, 3.003759326171875e+03, 3.010240966796875e+03, 3.012570556640625e+03, 3.01479736328125e+03, 3.01709423828125e+03, 3.018682861328125e+03, 3.024304375413007e+03, 3.034996337890625e+03, 3.04454798828125e+03, 3.04784033203125e+03, 3.06196435546875e+03, 3.076646118164062e+03, 3.081337890625e+03, 3.084797607421875e+03, 3.099095517578125e+03, 3.1075849609375e+03, 3.127417724609375e+03, 3.148751303710937e+03, 3.177146484375e+03, 3.209073486328125e+03, 3.24140794921875e+03, 3.271283569335938e+03, 3.322291748046875e+03, 3.356676865234375e+03, 3.399703857421875e+03, 3.441339599609375e+03, 3.47787919921875e+03, 3.5129091796875e+03, 3.563855738589638e+03, 3.6334616796875e+03, 3.70930029296875e+03, 3.775812548828125e+03, 3.82780427734375e+03, 3.906931396484375e+03, 3.97431181640625e+03, 4.033397124023437e+03, 4.115705078125e+03, 4.180665576171875e+03, 4.25505228515625e+03, 4.34764501953125e+03, 4.4770301953125e+03, 4.56478212890625e+03, 4.6715107421875e+03, 4.73461076171875e+03, 4.79653173828125e+03, 4.868197265625e+03, 4.94475146484375e+03] +AnnualHeatingLoad=[0e+00, 1.616542053222656e+02, 2.590315893554687e+02, 3.237925817871094e+02, 4.044122314453125e+02, 4.861732391357422e+02, 6.149593994140625e+02, 6.887565734863281e+02, 7.702548876953125e+02, 8.545771118164063e+02, 1.004741149902344e+03, 1.107093525390625e+03, 1.164533911132813e+03, 1.276204609375e+03, 1.360527416992187e+03, 1.446455078125e+03, 1.515376831054688e+03, 1.599423903808594e+03, 1.70229443359375e+03, 1.78386091796875e+03, 1.835681298828125e+03, 1.904337036132812e+03, 1.97622025390625e+03, 2.043988173828125e+03, 2.0903232421875e+03, 2.1369814453125e+03, 2.212445546875e+03, 2.264402099609375e+03, 2.317529306640625e+03, 2.388913149414062e+03, 2.426973388671875e+03, 2.464668842773438e+03, 2.484138427734375e+03, 2.540149658203125e+03, 2.5832808984375e+03, 2.626869873046875e+03, 2.672447021484375e+03, 2.705500385742188e+03, 2.720856689453125e+03, 2.748465791015625e+03, 2.767443976362496e+03, 2.79693896484375e+03, 2.8222223046875e+03, 2.83656640625e+03, 2.873142998046875e+03, 2.900667724609375e+03, 2.91871458984375e+03, 2.939758056640625e+03, 2.95549353515625e+03, 2.9637255859375e+03, 2.9679111328125e+03, 2.982860551757813e+03, 2.994244140625e+03, 2.99727001953125e+03, 3.0037625e+03, 3.010244140625e+03, 3.01257373046875e+03, 3.014800537109375e+03, 3.01709716796875e+03, 3.018685791015625e+03, 3.024306821149173e+03, 3.03499951171875e+03, 3.04455076171875e+03, 3.0478427734375e+03, 3.061966796875e+03, 3.076648803710938e+03, 3.08134033203125e+03, 3.0847998046875e+03, 3.09909771484375e+03, 3.1075869140625e+03, 3.12741943359375e+03, 3.148752919921875e+03, 3.17714794921875e+03, 3.209073974609375e+03, 3.2414084375e+03, 3.271283569335938e+03, 3.32229150390625e+03, 3.356675888671875e+03, 3.399703125e+03, 3.441338623046875e+03, 3.477877978515625e+03, 3.51290771484375e+03, 3.563853991056743e+03, 3.6334577734375e+03, 3.709296142578125e+03, 3.775808154296875e+03, 3.82780037109375e+03, 3.906926513671875e+03, 3.974306845703125e+03, 4.033391508789062e+03, 4.11569921875e+03, 4.180659228515625e+03, 4.25503958984375e+03, 4.34763232421875e+03, 4.47701734375e+03, 4.5647689453125e+03, 4.6714970703125e+03, 4.734596923828125e+03, 4.79651708984375e+03, 4.86818359375e+03, 4.9447373046875e+03] checkResultsAccordingToASHRAEHeatingOrTempMax.upperLimit=[5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03, 5.92e+03] checkResultsAccordingToASHRAECoolingOrTempMin.lowerLimit=[-1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04, -1.035e+04] -AnnualCoolingLoad=[0e+00, -6.275338371276855e+01, -1.8422705078125e+02, -3.34388916015625e+02, -4.498421936035156e+02, -5.703267822265625e+02, -6.41150390625e+02, -7.690818481445312e+02, -8.827388916015625e+02, -1.023190856933594e+03, -1.07164580078125e+03, -1.1675576171875e+03, -1.301461791992188e+03, -1.336627319335938e+03, -1.44811865234375e+03, -1.546143786621094e+03, -1.654708232421875e+03, -1.76811572265625e+03, -1.861546435546875e+03, -1.944528198242188e+03, -2.0609560546875e+03, -2.157856357421875e+03, -2.256336669921875e+03, -2.3162685546875e+03, -2.436727890625e+03, -2.54145751953125e+03, -2.592985107421875e+03, -2.676329365234375e+03, -2.724180419921875e+03, -2.785285888671875e+03, -2.85537529296875e+03, -2.926253662109375e+03, -3.02207806640625e+03, -3.057182900390625e+03, -3.123302978515625e+03, -3.157949169921875e+03, -3.173512774578937e+03, -3.224779541015625e+03, -3.291101123046875e+03, -3.335859375e+03, -3.3931806640625e+03, -3.421681904296875e+03, -3.461394287109375e+03, -3.514380615234375e+03, -3.535582275390625e+03, -3.572960009765625e+03, -3.608773193359375e+03, -3.643506870117188e+03, -3.68740966796875e+03, -3.75518240234375e+03, -3.825378173828125e+03, -3.86107861328125e+03, -3.91408869140625e+03, -3.961779521484375e+03, -4.024687744140625e+03, -4.101271142578125e+03, -4.1755729296875e+03, -4.270791279296875e+03, -4.3620595703125e+03, -4.415898740234375e+03, -4.50594921875e+03, -4.5730003515625e+03, -4.63575634765625e+03, -4.758535224609375e+03, -4.8344771484375e+03, -4.91595166015625e+03, -5.0565227734375e+03, -5.172689951171875e+03, -5.297666015625e+03, -5.4362096484375e+03, -5.53828798828125e+03, -5.63563818359375e+03, -5.75387201171875e+03, -5.872474931640625e+03, -5.99239208984375e+03, -6.13124365234375e+03, -6.2589013671875e+03, -6.382611328125e+03, -6.4953343359375e+03, -6.63417345703125e+03, -6.81879833984375e+03, -6.98154908203125e+03, -7.102810546875e+03, -7.2197353515625e+03, -7.3094590234375e+03, -7.4380087890625e+03, -7.56529345703125e+03, -7.63055482421875e+03, -7.7357666015625e+03, -7.88556982421875e+03, -7.9756638671875e+03, -8.06779248046875e+03, -8.14810205078125e+03, -8.24028400390625e+03, -8.3162568359375e+03, -8.4381611328125e+03, -8.5394812890625e+03, -8.6643251953125e+03, -8.805290078124999e+03, -8.915711550858221e+03, -9.0640185546875e+03] +AnnualCoolingLoad=[0e+00, -6.275586067199707e+01, -1.842292175292969e+02, -3.343904724121094e+02, -4.49843818359375e+02, -5.703269653320312e+02, -6.411513061523438e+02, -7.690828857421875e+02, -8.827355346679688e+02, -1.023184814453125e+03, -1.071639208984375e+03, -1.167549682617188e+03, -1.30145361328125e+03, -1.336618530273438e+03, -1.448111572265625e+03, -1.546143542480469e+03, -1.6547070703125e+03, -1.76811083984375e+03, -1.861539721679688e+03, -1.944523193359375e+03, -2.060949462890625e+03, -2.157850498046875e+03, -2.256328857421875e+03, -2.31626025390625e+03, -2.43672123046875e+03, -2.541450439453125e+03, -2.592978515625e+03, -2.67632326171875e+03, -2.724175048828125e+03, -2.78528076171875e+03, -2.85537001953125e+03, -2.926249755859375e+03, -3.022066591796875e+03, -3.057171181640625e+03, -3.123286376953125e+03, -3.157928735351562e+03, -3.173492488103115e+03, -3.224760009765625e+03, -3.291081015625e+03, -3.33583935546875e+03, -3.393160400390625e+03, -3.421660908203125e+03, -3.46137255859375e+03, -3.514359619140625e+03, -3.5355615234375e+03, -3.5729373046875e+03, -3.608747314453125e+03, -3.643481806640625e+03, -3.687384521484375e+03, -3.755158530273437e+03, -3.825353271484375e+03, -3.861053466796875e+03, -3.9140637890625e+03, -3.961754375e+03, -4.024662353515625e+03, -4.101246240234375e+03, -4.17554900390625e+03, -4.270768818359375e+03, -4.36203576171875e+03, -4.41587482421875e+03, -4.5059267578125e+03, -4.5729749609375e+03, -4.6357333984375e+03, -4.758511298828125e+03, -4.834448828125e+03, -4.9159228515625e+03, -5.0564925e+03, -5.17266224609375e+03, -5.29763623046875e+03, -5.436179375e+03, -5.53825625e+03, -5.63560498046875e+03, -5.753839296875e+03, -5.87244224609375e+03, -5.99235791015625e+03, -6.13120947265625e+03, -6.2588648828125e+03, -6.382576171875e+03, -6.495298203125e+03, -6.634136044921875e+03, -6.818759765625e+03, -6.981509130859375e+03, -7.1027705078125e+03, -7.21969580078125e+03, -7.3094219140625e+03, -7.43797216796875e+03, -7.5652578125e+03, -7.63051966796875e+03, -7.73573193359375e+03, -7.88553369140625e+03, -7.97562724609375e+03, -8.06775537109375e+03, -8.148064453125e+03, -8.24024494140625e+03, -8.316220703125e+03, -8.438119140625e+03, -8.5394402734375e+03, -8.664283203125e+03, -8.805247109374999e+03, -8.915667515991061e+03, -9.0639736328125e+03] checkResultsAccordingToASHRAECoolingOrTempMin.upperLimit=[-7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03, -7.528e+03] checkResultsAccordingToASHRAEHeatingOrTempMax.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00] checkResultsAccordingToASHRAECoolingOrTempMin.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00] -Room.thermRoom.T=[2.941499938964844e+02, 2.931503283691407e+02, 2.930500012207031e+02, 2.930499572753906e+02, 2.931498291015625e+02, 2.930499908447266e+02, 2.930499267578125e+02, 2.930505126953125e+02, 2.930499877929688e+02, 2.930498950195313e+02, 2.931502746582031e+02, 2.930499749755859e+02, 2.930498962402344e+02, 2.930500183105469e+02, 2.930499877929688e+02, 2.93149560546875e+02, 2.931504968261719e+02, 2.930499877929688e+02, 2.931495385742188e+02, 2.930502679443359e+02, 2.930499877929688e+02, 2.931498107910156e+02, 2.930500183105469e+02, 2.930499877929688e+02, 2.931498547363281e+02, 2.930500335693359e+02, 2.930499792480469e+02, 2.931501806640625e+02, 2.930499877929688e+02, 2.930499267578125e+02, 2.931501831054687e+02, 2.930499572753906e+02, 2.931499328613281e+02, 2.931503137207031e+02, 2.930499877929688e+02, 2.931499237060547e+02, 2.931501694716416e+02, 2.930499877929688e+02, 2.931499133300781e+02, 2.930501452636719e+02, 2.930499850537171e+02, 2.931498419189453e+02, 2.93050048828125e+02, 2.930712775577442e+02, 2.930499975585938e+02, 2.931499938964844e+02, 2.930499877929688e+02, 2.931500445556641e+02, 2.930500048828125e+02, 2.931499633789062e+02, 2.931500854492188e+02, 2.93049994506836e+02, 2.931499633789062e+02, 2.931501873779297e+02, 2.930499877929688e+02, 2.931499328613281e+02, 2.931502380371094e+02, 2.931499774169922e+02, 2.931498571777344e+02, 2.931501751708984e+02, 2.930499877929688e+02, 2.931496148681641e+02, 2.93050068359375e+02, 2.931499938964844e+02, 2.931498059082031e+02, 2.93050048828125e+02, 2.931499633789062e+02, 2.931500018310547e+02, 2.930499877929688e+02, 2.931499633789062e+02, 2.931501342773437e+02, 2.930499877929688e+02, 2.931498974609375e+02, 2.931502972412109e+02, 2.930499877929688e+02, 2.930499725341797e+02, 2.9315046875e+02, 2.930500183105469e+02, 2.931496728515625e+02, 2.931505126953125e+02, 2.930499877929688e+02, 2.931494970703125e+02, 2.930503331234581e+02, 2.930499877929688e+02, 2.931498132324219e+02, 2.930499877929688e+02, 2.930499572753906e+02, 2.931501947021484e+02, 2.930499877929688e+02, 2.930499267578125e+02, 2.931501586914063e+02, 2.930499877929688e+02, 2.930499267578125e+02, 2.931501629638672e+02, 2.930499975585938e+02, 2.930499542236328e+02, 2.931505395507813e+02, 2.930499877929688e+02, 2.931496789550781e+02, 2.931504866877213e+02, 2.930499877929688e+02] -Room.starRoom.T=[2.894175109863281e+02, 3.007442602539062e+02, 2.899111071777344e+02, 2.904991394042969e+02, 3.039518981933594e+02, 2.901272216796875e+02, 2.9025392578125e+02, 2.920844708251953e+02, 2.8918376953125e+02, 2.913124786376953e+02, 3.031961730957031e+02, 2.903680682373047e+02, 2.924303332519531e+02, 2.903096636962891e+02, 2.899252941894531e+02, 2.956183227539062e+02, 2.9738736328125e+02, 2.902590216064453e+02, 2.969715051269531e+02, 2.922578259277344e+02, 2.905446166992188e+02, 2.955469805908203e+02, 2.900129284667969e+02, 2.913479449462891e+02, 3.024975366210937e+02, 2.911516876220703e+02, 2.911112023925782e+02, 2.997500207519531e+02, 2.90443955078125e+02, 2.92073110961914e+02, 2.982185668945312e+02, 2.915246075439453e+02, 2.935521533203125e+02, 2.961075604248047e+02, 2.917935205078125e+02, 2.937976104736328e+02, 2.935937333540483e+02, 2.920848309326172e+02, 2.941654675292968e+02, 2.922559063720703e+02, 2.922551325859523e+02, 2.953024920654297e+02, 2.922206079101563e+02, 2.930117295410613e+02, 2.92915322265625e+02, 2.933964416503906e+02, 2.920677502441406e+02, 2.95764819946289e+02, 2.923657751464844e+02, 2.935500512695313e+02, 2.98311767578125e+02, 2.921145263671875e+02, 2.947746997070312e+02, 2.959777398681641e+02, 2.924908605957031e+02, 2.952858123779297e+02, 2.954562548828125e+02, 2.934382006835938e+02, 2.956151428222656e+02, 2.938924993896484e+02, 2.925994738986027e+02, 2.96946328125e+02, 2.928878820800781e+02, 2.933140576171875e+02, 3.000144104003906e+02, 2.925444641113281e+02, 2.939742272949219e+02, 3.032053295898438e+02, 2.921539721679687e+02, 2.938766876220703e+02, 3.036966796875e+02, 2.915160565185547e+02, 2.934627600097656e+02, 3.018058044433594e+02, 2.913129052734375e+02, 2.910243988037109e+02, 2.999665515136719e+02, 2.908281958007813e+02, 2.960721936035156e+02, 2.965061730957031e+02, 2.913608581542969e+02, 3.012386614990235e+02, 2.927697416606702e+02, 2.904693499755859e+02, 3.026641845703125e+02, 2.905837707519531e+02, 2.908957055664063e+02, 2.97691410522461e+02, 2.900328503417969e+02, 2.916225720214844e+02, 3.06304150390625e+02, 2.917508435058594e+02, 2.904988146972656e+02, 2.944939440917969e+02, 2.901425427246094e+02, 2.905742858886719e+02, 2.998311462402344e+02, 2.900998114013672e+02, 2.943081713867188e+02, 2.950165254188876e+02, 2.902822570800781e+02] -TransmittedSolarRadiation_room=[0e+00, 1.130971858978272e+01, 2.615980491638184e+01, 4.389707565307617e+01, 5.918971405029297e+01, 7.433201599121094e+01, 8.556283569335938e+01, 1.003812002563477e+02, 1.156256408691406e+02, 1.345753021240234e+02, 1.428026916503906e+02, 1.544996643066406e+02, 1.705421142578125e+02, 1.774784768676758e+02, 1.932699737548828e+02, 2.075358520507812e+02, 2.213117425537109e+02, 2.364083251953125e+02, 2.496899133300781e+02, 2.609889758300781e+02, 2.750867919921875e+02, 2.882625085449219e+02, 2.998657958984375e+02, 3.089285278320312e+02, 3.219341479492188e+02, 3.322996215820312e+02, 3.404494323730469e+02, 3.503684698486328e+02, 3.563353881835938e+02, 3.649208984375e+02, 3.726045104980469e+02, 3.801168823242188e+02, 3.884651794433594e+02, 3.934240618896484e+02, 4.005413818359375e+02, 4.054572143554688e+02, 4.083215125938515e+02, 4.135369262695312e+02, 4.187101135253906e+02, 4.22322119140625e+02, 4.269241638183594e+02, 4.303584222412109e+02, 4.334206848144531e+02, 4.371674499511719e+02, 4.396268579101563e+02, 4.423782653808594e+02, 4.452743530273438e+02, 4.481329168701172e+02, 4.50844970703125e+02, 4.544393310546875e+02, 4.576493225097656e+02, 4.60077880859375e+02, 4.634675903320312e+02, 4.661384881591797e+02, 4.697528686523438e+02, 4.742668762207031e+02, 4.779026843261719e+02, 4.829019775390625e+02, 4.881350634765625e+02, 4.913910827636719e+02, 4.974126281738281e+02, 5.027958447265625e+02, 5.070654357910156e+02, 5.151380615234375e+02, 5.222810668945312e+02, 5.284793701171875e+02, 5.384882202148438e+02, 5.474913708496093e+02, 5.567906494140625e+02, 5.671702270507812e+02, 5.7749951171875e+02, 5.861028442382812e+02, 5.974595336914062e+02, 6.097965014648438e+02, 6.213001098632812e+02, 6.347162475585938e+02, 6.481382495117188e+02, 6.6021826171875e+02, 6.730890893554688e+02, 6.872265258789063e+02, 7.052407836914062e+02, 7.225670629882812e+02, 7.355922594572369e+02, 7.496473999023438e+02, 7.630181176757812e+02, 7.775482788085938e+02, 7.925709228515625e+02, 8.023115649414062e+02, 8.157594604492188e+02, 8.338806762695312e+02, 8.470885131835937e+02, 8.581264038085938e+02, 8.684561157226562e+02, 8.816254846191406e+02, 8.932083740234375e+02, 9.103759155273438e+02, 9.255235400390625e+02, 9.402899169921875e+02, 9.567682250976562e+02, 9.704182579904941e+02, 9.888836669921875e+02] +Room.thermRoom.T=[2.941499938964844e+02, 2.931503045654297e+02, 2.930500012207031e+02, 2.930499572753906e+02, 2.931498291015625e+02, 2.930499908447266e+02, 2.930499267578125e+02, 2.930505456542969e+02, 2.930499877929688e+02, 2.930498950195313e+02, 2.931502746582031e+02, 2.930499749755859e+02, 2.930499072265625e+02, 2.930500183105469e+02, 2.930499877929688e+02, 2.93149560546875e+02, 2.931504968261719e+02, 2.930499877929688e+02, 2.931495373535156e+02, 2.930502679443359e+02, 2.930499877929688e+02, 2.931498107910156e+02, 2.930500183105469e+02, 2.930499877929688e+02, 2.931498547363281e+02, 2.930500335693359e+02, 2.930499792480469e+02, 2.931501806640625e+02, 2.930499877929688e+02, 2.930499267578125e+02, 2.931501831054687e+02, 2.930499572753906e+02, 2.931499328613281e+02, 2.931503137207031e+02, 2.930499877929688e+02, 2.931499237060547e+02, 2.931501693477072e+02, 2.930499877929688e+02, 2.931499133300781e+02, 2.930501452636719e+02, 2.930499850537171e+02, 2.931498419189453e+02, 2.93050048828125e+02, 2.930716385654897e+02, 2.930499975585938e+02, 2.931499938964844e+02, 2.930499877929688e+02, 2.931500445556641e+02, 2.930500048828125e+02, 2.931499633789062e+02, 2.931500854492188e+02, 2.93049994506836e+02, 2.931499633789062e+02, 2.931501873779297e+02, 2.930499877929688e+02, 2.931499328613281e+02, 2.931502380371094e+02, 2.931499774169922e+02, 2.931498571777344e+02, 2.931501751708984e+02, 2.930499877929688e+02, 2.931495971679688e+02, 2.93050068359375e+02, 2.931499938964844e+02, 2.931498059082031e+02, 2.93050048828125e+02, 2.931499633789062e+02, 2.931500018310547e+02, 2.930499877929688e+02, 2.931499633789062e+02, 2.931501342773437e+02, 2.930499877929688e+02, 2.931498974609375e+02, 2.931502972412109e+02, 2.930499877929688e+02, 2.930499725341797e+02, 2.9315046875e+02, 2.930500183105469e+02, 2.931496728515625e+02, 2.931505126953125e+02, 2.930499877929688e+02, 2.931494970703125e+02, 2.930503331234581e+02, 2.930499877929688e+02, 2.931498132324219e+02, 2.930499877929688e+02, 2.930499572753906e+02, 2.931501947021484e+02, 2.930499877929688e+02, 2.930499267578125e+02, 2.931501586914063e+02, 2.930499877929688e+02, 2.930499267578125e+02, 2.931501629638672e+02, 2.930499975585938e+02, 2.930499542236328e+02, 2.931505395507813e+02, 2.930499877929688e+02, 2.931496789550781e+02, 2.931505095344289e+02, 2.930499877929688e+02] +Room.starRoom.T=[2.894175109863281e+02, 3.007444604492188e+02, 2.8991109375e+02, 2.90499169921875e+02, 3.039519140625e+02, 2.901270446777344e+02, 2.902539465332031e+02, 2.920844708251953e+02, 2.891837463378906e+02, 2.913124792480469e+02, 3.031962158203125e+02, 2.903680682373047e+02, 2.924303637695313e+02, 2.903096942138672e+02, 2.899252941894531e+02, 2.956182922363281e+02, 2.973873327636718e+02, 2.902590216064453e+02, 2.96971474609375e+02, 2.922578204345703e+02, 2.9054462890625e+02, 2.955470111083985e+02, 2.900129284667969e+02, 2.913479449462891e+02, 3.024975280761719e+02, 2.911517028808594e+02, 2.911112023925782e+02, 2.99749990234375e+02, 2.904439245605469e+02, 2.920731298828125e+02, 2.982185363769531e+02, 2.915246075439453e+02, 2.935521557617187e+02, 2.961076440429687e+02, 2.917935205078125e+02, 2.937976409912109e+02, 2.93593680714163e+02, 2.920848309326172e+02, 2.94165498046875e+02, 2.922558935546875e+02, 2.922551325859523e+02, 2.953024920654297e+02, 2.922206079101563e+02, 2.930117750114569e+02, 2.92915322265625e+02, 2.933964141845703e+02, 2.920677502441406e+02, 2.95764819946289e+02, 2.923657580566406e+02, 2.935500512695313e+02, 2.983117980957031e+02, 2.921145263671875e+02, 2.947746997070312e+02, 2.959777398681641e+02, 2.924908605957031e+02, 2.9528583984375e+02, 2.954562854003906e+02, 2.934382006835938e+02, 2.956151574707031e+02, 2.938924688720703e+02, 2.925994738986027e+02, 2.969464501953125e+02, 2.928879211425781e+02, 2.933140576171875e+02, 3.000143212890625e+02, 2.925444641113281e+02, 2.939742114257813e+02, 3.032053295898438e+02, 2.921539721679687e+02, 2.938766876220703e+02, 3.036967102050781e+02, 2.915160565185547e+02, 2.934627600097656e+02, 3.018058026123047e+02, 2.913129138183594e+02, 2.910243682861328e+02, 2.999665649414063e+02, 2.908281958007813e+02, 2.960722241210938e+02, 2.965061236572266e+02, 2.913608581542969e+02, 3.012386114501953e+02, 2.927697159616571e+02, 2.904693579101562e+02, 3.026641723632812e+02, 2.905837921142578e+02, 2.908957080078125e+02, 2.976913842773437e+02, 2.900328503417969e+02, 2.916225848388672e+02, 3.063041564941406e+02, 2.917508435058594e+02, 2.904988146972656e+02, 2.944939276123047e+02, 2.901425329589844e+02, 2.905742553710937e+02, 2.998310852050781e+02, 2.900998010253906e+02, 2.943081237792969e+02, 2.95016429670642e+02, 2.902822570800781e+02] +TransmittedSolarRadiation_room=[0e+00, 1.130976680755615e+01, 2.615984985351562e+01, 4.38970947265625e+01, 5.918977127075195e+01, 7.433197021484375e+01, 8.556285858154297e+01, 1.003812495422363e+02, 1.156253662109375e+02, 1.345748138427734e+02, 1.428021575927734e+02, 1.544990386962891e+02, 1.705414733886719e+02, 1.774778033447266e+02, 1.932694549560547e+02, 2.075359329223633e+02, 2.213117651367187e+02, 2.364080352783203e+02, 2.496894860839844e+02, 2.60988701171875e+02, 2.750863952636719e+02, 2.882621728515625e+02, 2.998653381347656e+02, 3.089280395507812e+02, 3.219338647460938e+02, 3.3229931640625e+02, 3.404491882324219e+02, 3.503683172607422e+02, 3.563353576660156e+02, 3.649210205078125e+02, 3.726046325683594e+02, 3.801171264648438e+02, 3.884648132324219e+02, 3.934237036132812e+02, 4.005406494140625e+02, 4.05456167602539e+02, 4.083204697599629e+02, 4.135359802246094e+02, 4.187091369628906e+02, 4.223211248779297e+02, 4.269231872558594e+02, 4.303574450683594e+02, 4.334196166992188e+02, 4.371664123535156e+02, 4.396258203125e+02, 4.423771057128906e+02, 4.452729797363281e+02, 4.481315942382813e+02, 4.508436889648438e+02, 4.544381713867188e+02, 4.576481323242188e+02, 4.600766906738281e+02, 4.634664306640625e+02, 4.661373181152344e+02, 4.69751708984375e+02, 4.742657470703125e+02, 4.7790173828125e+02, 4.829010925292969e+02, 4.881342163085938e+02, 4.913902587890625e+02, 4.974119262695312e+02, 5.027949597167969e+02, 5.070647338867187e+02, 5.151373901367188e+02, 5.22280029296875e+02, 5.284783325195312e+02, 5.384871215820312e+02, 5.474905004882812e+02, 5.5678955078125e+02, 5.671691284179688e+02, 5.774983154296875e+02, 5.861015014648438e+02, 5.97458251953125e+02, 6.097952770996094e+02, 6.212987670898438e+02, 6.3471484375e+02, 6.481367846679688e+02, 6.602169799804688e+02, 6.730876245117188e+02, 6.87225e+02, 7.052391967773438e+02, 7.225654150390625e+02, 7.355906018708881e+02, 7.4964599609375e+02, 7.630169580078125e+02, 7.77547119140625e+02, 7.925699462890625e+02, 8.023107104492187e+02, 8.157586669921875e+02, 8.338798217773438e+02, 8.47087646484375e+02, 8.5812548828125e+02, 8.684555053710938e+02, 8.816248742675781e+02, 8.932080078125e+02, 9.103751220703125e+02, 9.255227465820312e+02, 9.402890625e+02, 9.567673706054687e+02, 9.704172643245222e+02, 9.888826904296875e+02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case280.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case280.txt index 9e9ec345f6..063330f1d0 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case280.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case280.txt @@ -1,20 +1,20 @@ -last-generated=2021-05-25 +last-generated=2022-07-06 statistics-simulation= { "linear": "0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0", "nonlinear": "13", - "number of continuous time states": "23", + "number of continuous time states": "25", "numerical Jacobians": "0" } time=[0e+00, 3.15396e+07] checkResultsAccordingToASHRAEHeatingOrTempMax.lowerLimit=[4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03, 4.675e+03] -AnnualHeatingLoad=[0e+00, 1.677370300292969e+02, 2.716868542480469e+02, 3.415509832763672e+02, 4.266680603027344e+02, 5.148030090332031e+02, 6.508135717773438e+02, 7.28388017578125e+02, 8.157334228515625e+02, 9.064175415039062e+02, 1.062082397460938e+03, 1.170162282714844e+03, 1.231626606445313e+03, 1.349824594726563e+03, 1.441065009765625e+03, 1.533037353515625e+03, 1.606481323242188e+03, 1.69642072265625e+03, 1.804042846679688e+03, 1.891295688476562e+03, 1.947269262695313e+03, 2.019771118164062e+03, 2.09567708984375e+03, 2.169523354492188e+03, 2.217854248046875e+03, 2.266977172851562e+03, 2.347612802734375e+03, 2.401720947265625e+03, 2.4587595703125e+03, 2.534630927734375e+03, 2.573789306640625e+03, 2.61317197265625e+03, 2.632990234375e+03, 2.691737548828125e+03, 2.73625953125e+03, 2.782244873046875e+03, 2.829987060546875e+03, 2.86426171875e+03, 2.879754638671875e+03, 2.907941416015625e+03, 2.927207294526806e+03, 2.957704345703125e+03, 2.983370556640625e+03, 2.997863037109375e+03, 3.0361486328125e+03, 3.064434814453125e+03, 3.082989052734375e+03, 3.10425341796875e+03, 3.120132587890625e+03, 3.128396240234375e+03, 3.132591064453125e+03, 3.148079790039063e+03, 3.159624755859375e+03, 3.16266162109375e+03, 3.1692065625e+03, 3.17570458984375e+03, 3.17803759765625e+03, 3.180283447265625e+03, 3.182586181640625e+03, 3.184197509765625e+03, 3.189904006437585e+03, 3.200859130859375e+03, 3.210598017578125e+03, 3.213918701171875e+03, 3.228474853515625e+03, 3.243504028320312e+03, 3.248261474609375e+03, 3.251855712890625e+03, 3.2665112890625e+03, 3.2752099609375e+03, 3.295788818359375e+03, 3.318147114257813e+03, 3.348247314453125e+03, 3.3817109375e+03, 3.415876484375e+03, 3.447771240234375e+03, 3.50090234375e+03, 3.537882158203125e+03, 3.583623291015625e+03, 3.6276005859375e+03, 3.666471630859375e+03, 3.70358740234375e+03, 3.757700274493243e+03, 3.832470439453125e+03, 3.9140537109375e+03, 3.985044482421875e+03, 4.040860302734375e+03, 4.12559814453125e+03, 4.1981375e+03, 4.261932646484375e+03, 4.34921875e+03, 4.419334033203125e+03, 4.49873708984375e+03, 4.597140625e+03, 4.73273236328125e+03, 4.827123095703125e+03, 4.93998095703125e+03, 5.007780693359375e+03, 5.0729634129957e+03, 5.149408203125e+03, 5.2316318359375e+03] +AnnualHeatingLoad=[0e+00, 1.677389984130859e+02, 2.716890209960937e+02, 3.415531298828125e+02, 4.266714172363281e+02, 5.148059997558594e+02, 6.508157495117188e+02, 7.283898815917969e+02, 8.157334838867188e+02, 9.064176025390625e+02, 1.062082275390625e+03, 1.170161967773437e+03, 1.231626196289063e+03, 1.349824245605469e+03, 1.441064399414063e+03, 1.533036254882812e+03, 1.606480224609375e+03, 1.696419135742188e+03, 1.804041137695312e+03, 1.891294467773437e+03, 1.94726748046875e+03, 2.019769165039062e+03, 2.09567509765625e+03, 2.169521401367188e+03, 2.217852294921875e+03, 2.266974853515625e+03, 2.34761126953125e+03, 2.401719482421875e+03, 2.458757861328125e+03, 2.534628974609375e+03, 2.573787353515625e+03, 2.613170751953125e+03, 2.6329892578125e+03, 2.69173583984375e+03, 2.7362576953125e+03, 2.78224365234375e+03, 2.829984375e+03, 2.864259033203125e+03, 2.879751708984375e+03, 2.9079382421875e+03, 2.927203876558056e+03, 2.95770068359375e+03, 2.9833668359375e+03, 2.99785888671875e+03, 3.03614423828125e+03, 3.06443017578125e+03, 3.082984169921875e+03, 3.104248046875e+03, 3.120126591796875e+03, 3.128390380859375e+03, 3.132583740234375e+03, 3.148072465820313e+03, 3.159616943359375e+03, 3.162653564453125e+03, 3.169198017578125e+03, 3.17569580078125e+03, 3.178028564453125e+03, 3.1802744140625e+03, 3.182577392578125e+03, 3.1841884765625e+03, 3.18989497323446e+03, 3.200850341796875e+03, 3.210588896484375e+03, 3.2139091796875e+03, 3.22846435546875e+03, 3.243492797851562e+03, 3.248250244140625e+03, 3.251843994140625e+03, 3.2664995703125e+03, 3.275197998046875e+03, 3.2957763671875e+03, 3.318134418945313e+03, 3.348234619140625e+03, 3.38169775390625e+03, 3.4158634765625e+03, 3.4477578125e+03, 3.500888427734375e+03, 3.537867998046875e+03, 3.583609375e+03, 3.627586669921875e+03, 3.66645830078125e+03, 3.703573974609375e+03, 3.757686587771854e+03, 3.8324565234375e+03, 3.9140400390625e+03, 3.985031713867188e+03, 4.040847119140625e+03, 4.1255859375e+03, 4.1981248046875e+03, 4.261919462890625e+03, 4.3492060546875e+03, 4.419320849609375e+03, 4.49872341796875e+03, 4.59712646484375e+03, 4.73271771484375e+03, 4.827108447265625e+03, 4.93996630859375e+03, 5.007765556640625e+03, 5.072948115596065e+03, 5.149392578125e+03, 5.23161669921875e+03] checkResultsAccordingToASHRAEHeatingOrTempMax.upperLimit=[6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03, 6.148e+03] checkResultsAccordingToASHRAECoolingOrTempMin.lowerLimit=[-7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03, -7.114e+03] -AnnualCoolingLoad=[0e+00, -3.323147933959961e+01, -1.071699676513672e+02, -2.017584228515625e+02, -2.728397399902344e+02, -3.441788024902344e+02, -3.836999816894531e+02, -4.648739318847656e+02, -5.317833251953125e+02, -6.13924072265625e+02, -6.424070556640625e+02, -7.00872802734375e+02, -7.842113037109375e+02, -8.01756103515625e+02, -8.657943115234375e+02, -9.22175244140625e+02, -9.880090991210938e+02, -1.054285034179688e+03, -1.108944931640625e+03, -1.156865844726562e+03, -1.2287470703125e+03, -1.285704216308594e+03, -1.34691552734375e+03, -1.381767456054688e+03, -1.4622194140625e+03, -1.531177490234375e+03, -1.559871704101562e+03, -1.612885769042969e+03, -1.642539916992188e+03, -1.678687622070312e+03, -1.724836987304687e+03, -1.770120849609375e+03, -1.83765955078125e+03, -1.859288845214844e+03, -1.901351440429688e+03, -1.92173740234375e+03, -1.929641479492188e+03, -1.96385009765625e+03, -2.012810888671875e+03, -2.045354736328125e+03, -2.087066162109375e+03, -2.105387543945313e+03, -2.134279052734375e+03, -2.174479736328125e+03, -2.1892802734375e+03, -2.21755888671875e+03, -2.243910888671875e+03, -2.269631435546875e+03, -2.303678955078125e+03, -2.359068315429688e+03, -2.418885986328125e+03, -2.445998779296875e+03, -2.4875057421875e+03, -2.526382290039062e+03, -2.5763662109375e+03, -2.637506005859375e+03, -2.6992739453125e+03, -2.776982421875e+03, -2.850547958984375e+03, -2.89279828125e+03, -2.96206201171875e+03, -3.011750805664063e+03, -3.058968505859375e+03, -3.1538696484375e+03, -3.20734484375e+03, -3.266010009765625e+03, -3.372108349609375e+03, -3.459484326171875e+03, -3.55054736328125e+03, -3.6535056640625e+03, -3.7230880859375e+03, -3.78951904296875e+03, -3.870623982174296e+03, -3.95018283203125e+03, -4.030232666015625e+03, -4.1249951171875e+03, -4.21013794921875e+03, -4.2933271484375e+03, -4.36576099609375e+03, -4.4580737890625e+03, -4.582302734375e+03, -4.69028515625e+03, -4.76772265625e+03, -4.8414716796875e+03, -4.89416392578125e+03, -4.974111328125e+03, -5.05381201171875e+03, -5.092829091796875e+03, -5.15542822265625e+03, -5.24804638671875e+03, -5.3007576171875e+03, -5.3569150390625e+03, -5.4070771484375e+03, -5.460495443618881e+03, -5.501875e+03, -5.57160791015625e+03, -5.62879048828125e+03, -5.70587890625e+03, -5.79490478515625e+03, -5.862987449048913e+03, -5.9529248046875e+03] +AnnualCoolingLoad=[0e+00, -3.323346847534179e+01, -1.071718826293945e+02, -2.017599487304688e+02, -2.72840537109375e+02, -3.441802978515625e+02, -3.837012939453125e+02, -4.648733215332031e+02, -5.31782958984375e+02, -6.139229736328125e+02, -6.424058227539062e+02, -7.008734130859375e+02, -7.842120971679688e+02, -8.017568359375e+02, -8.65795166015625e+02, -9.221759765625e+02, -9.880068701171875e+02, -1.054281982421875e+03, -1.10894115234375e+03, -1.156862670898438e+03, -1.228744750976562e+03, -1.285700310058594e+03, -1.346915283203125e+03, -1.381766357421875e+03, -1.462216850585937e+03, -1.531178833007812e+03, -1.559873168945312e+03, -1.612889309082031e+03, -1.642543579101562e+03, -1.67869140625e+03, -1.724840771484375e+03, -1.77012451171875e+03, -1.83766162109375e+03, -1.859289577636719e+03, -1.90135302734375e+03, -1.921738537597656e+03, -1.929641357421875e+03, -1.9638515625e+03, -2.012811665039063e+03, -2.045353759765625e+03, -2.087063720703125e+03, -2.105384858398438e+03, -2.13427587890625e+03, -2.174476806640625e+03, -2.18927783203125e+03, -2.217555712890625e+03, -2.24390771484375e+03, -2.269626552734375e+03, -2.303673583984375e+03, -2.359062211914063e+03, -2.418879150390625e+03, -2.445991943359375e+03, -2.48749890625e+03, -2.526375454101562e+03, -2.576358642578125e+03, -2.637498193359375e+03, -2.69926662109375e+03, -2.776975209960938e+03, -2.850541611328125e+03, -2.8927894921875e+03, -2.96204833984375e+03, -3.0117389453125e+03, -3.058954833984375e+03, -3.1538559765625e+03, -3.20732970703125e+03, -3.26599462890625e+03, -3.372094189453125e+03, -3.459469614257812e+03, -3.550532470703125e+03, -3.6534900390625e+03, -3.72306904296875e+03, -3.7895e+03, -3.87060664037492e+03, -3.950164765625e+03, -4.030216552734375e+03, -4.12497705078125e+03, -4.21012001953125e+03, -4.2933095703125e+03, -4.36574244140625e+03, -4.458059140625e+03, -4.58228759765625e+03, -4.69027001953125e+03, -4.76770068359375e+03, -4.84144970703125e+03, -4.89414146484375e+03, -4.9740888671875e+03, -5.05379150390625e+03, -5.092808583984375e+03, -5.155408203125e+03, -5.24802392578125e+03, -5.30073564453125e+03, -5.3568935546875e+03, -5.4070556640625e+03, -5.460471911158836e+03, -5.5018515625e+03, -5.57158447265625e+03, -5.62876705078125e+03, -5.70585498046875e+03, -5.794880859375e+03, -5.862963034986413e+03, -5.9528994140625e+03] checkResultsAccordingToASHRAECoolingOrTempMin.upperLimit=[-4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03, -4.873e+03] checkResultsAccordingToASHRAEHeatingOrTempMax.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00] checkResultsAccordingToASHRAECoolingOrTempMin.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00] -Room.thermRoom.T=[2.941499938964844e+02, 2.931500628662109e+02, 2.930500012207031e+02, 2.930499572753906e+02, 2.931498559570313e+02, 2.930499908447266e+02, 2.930499267578125e+02, 2.930503643798828e+02, 2.930499877929688e+02, 2.93049926147461e+02, 2.931501892089844e+02, 2.930499749755859e+02, 2.930499157714844e+02, 2.930500183105469e+02, 2.930499877929688e+02, 2.931496826171875e+02, 2.931503601074219e+02, 2.930499877929688e+02, 2.931496594238281e+02, 2.930502069091797e+02, 2.930499877929688e+02, 2.931498718261719e+02, 2.930500183105469e+02, 2.930500164794922e+02, 2.931498937988281e+02, 2.930500335693359e+02, 2.930499877929688e+02, 2.931501196289062e+02, 2.930499877929688e+02, 2.930499267578125e+02, 2.931501281738281e+02, 2.930499572753906e+02, 2.931499340820312e+02, 2.931502301025391e+02, 2.930499877929688e+02, 2.931499633789062e+02, 2.931131324281084e+02, 2.930499877929688e+02, 2.931499438476562e+02, 2.930501147460938e+02, 2.930499850537171e+02, 2.931498724365234e+02, 2.93050048828125e+02, 2.930656994117234e+02, 2.930499975585938e+02, 2.931499938964844e+02, 2.930499877929688e+02, 2.931500445556641e+02, 2.930500048828125e+02, 2.931499633789062e+02, 2.931500549316406e+02, 2.93049994506836e+02, 2.931499633789062e+02, 2.931501263427734e+02, 2.930499877929688e+02, 2.931499328613281e+02, 2.931501977539062e+02, 2.931499774169922e+02, 2.931498950195312e+02, 2.931501452636719e+02, 2.930499877929688e+02, 2.931497192382812e+02, 2.93050068359375e+02, 2.931499938964844e+02, 2.931498388671875e+02, 2.93050048828125e+02, 2.931499633789062e+02, 2.931500018310547e+02, 2.930499877929688e+02, 2.931499633789062e+02, 2.931500915527344e+02, 2.930499877929688e+02, 2.931499328613281e+02, 2.931502056884765e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.931503381347656e+02, 2.930500183105469e+02, 2.931497595214844e+02, 2.93150390625e+02, 2.930500061035156e+02, 2.93149644165039e+02, 2.930502661627692e+02, 2.930499877929688e+02, 2.931498583984375e+02, 2.930499877929688e+02, 2.930499853515625e+02, 2.931501336669922e+02, 2.930499877929688e+02, 2.930499395751953e+02, 2.9315009765625e+02, 2.930499877929688e+02, 2.930499572753906e+02, 2.931500122497132e+02, 2.930499975585938e+02, 2.930499572753906e+02, 2.931503869628907e+02, 2.930499877929688e+02, 2.930500032084189e+02, 2.931500628927479e+02, 2.930499877929688e+02] -Room.starRoom.T=[2.894175109863281e+02, 2.966581866455078e+02, 2.899060925292969e+02, 2.904341571044922e+02, 2.993162817382812e+02, 2.901266845703125e+02, 2.900928100585937e+02, 2.915618572998047e+02, 2.891824389648438e+02, 2.909353308105469e+02, 2.990921997070312e+02, 2.903662847900391e+02, 2.920061987304687e+02, 2.901522723388672e+02, 2.899193298339844e+02, 2.941291534423828e+02, 2.957135034179688e+02, 2.902464562988282e+02, 2.94487861328125e+02, 2.918573455810547e+02, 2.905183044433594e+02, 2.937936413574218e+02, 2.900058520507812e+02, 2.91311650390625e+02, 2.992120349121094e+02, 2.911514282226562e+02, 2.91035390625e+02, 2.977382983398438e+02, 2.904436901855469e+02, 2.919503503417969e+02, 2.963654479980469e+02, 2.915239532470703e+02, 2.933599877929688e+02, 2.948357189941406e+02, 2.917920922851562e+02, 2.934780639648437e+02, 2.931349327574385e+02, 2.920824005126953e+02, 2.937426782226563e+02, 2.922005841064453e+02, 2.922512001008662e+02, 2.946011297607422e+02, 2.922205541992187e+02, 2.930049458577961e+02, 2.925002722167969e+02, 2.933963806152344e+02, 2.92058291015625e+02, 2.950174334716797e+02, 2.923656396484375e+02, 2.935212963867187e+02, 2.9739990234375e+02, 2.921144110107422e+02, 2.947015112304687e+02, 2.953625756835938e+02, 2.924900952148437e+02, 2.950804565429688e+02, 2.951168371582031e+02, 2.934363189697266e+02, 2.95147548828125e+02, 2.937839996337891e+02, 2.925935484091224e+02, 2.958626226806641e+02, 2.928774108886719e+02, 2.932985974121094e+02, 2.979448010253906e+02, 2.925442779541016e+02, 2.939294982910156e+02, 3.005345397949219e+02, 2.921535668945313e+02, 2.938105395507812e+02, 3.007540588378906e+02, 2.915148376464844e+02, 2.931187820336883e+02, 2.990414569091797e+02, 2.913097302246094e+02, 2.909033660888672e+02, 2.978395056152344e+02, 2.90826572265625e+02, 2.947602990722656e+02, 2.952462823486328e+02, 2.913428588867188e+02, 2.982161376953125e+02, 2.92393556130899e+02, 2.904318377685547e+02, 2.986797875976562e+02, 2.905834899902344e+02, 2.908422241210938e+02, 2.955842169189453e+02, 2.900321948242188e+02, 2.914674365234375e+02, 3.021480895996094e+02, 2.917495379638672e+02, 2.90199052734375e+02, 2.9332857563579e+02, 2.901395458984375e+02, 2.903572113037109e+02, 2.9717560546875e+02, 2.900933349609375e+02, 2.928583689225528e+02, 2.936639391028363e+02, 2.902682189941406e+02] -TransmittedSolarRadiation_room=[0e+00, 1.130984733581543e+01, 2.616001960754394e+01, 4.38972282409668e+01, 5.918988861083984e+01, 7.433207702636719e+01, 8.556280517578125e+01, 1.003811926269531e+02, 1.156247863769531e+02, 1.345743103027344e+02, 1.428016418457031e+02, 1.544988403320312e+02, 1.705406951904297e+02, 1.774771166992188e+02, 1.932686004638672e+02, 2.075342086791992e+02, 2.213097052001953e+02, 2.364062957763672e+02, 2.496877301025391e+02, 2.609868395996094e+02, 2.750851745605469e+02, 2.882606469726563e+02, 2.998643310546875e+02, 3.089271850585938e+02, 3.219330407714844e+02, 3.322984924316406e+02, 3.404482727050781e+02, 3.50367066040039e+02, 3.563341369628906e+02, 3.649197387695312e+02, 3.726031982421875e+02, 3.801151123046875e+02, 3.884625854492188e+02, 3.934209265136719e+02, 4.005378723144531e+02, 4.054534912109375e+02, 4.083175786444481e+02, 4.135331420898438e+02, 4.187064929199219e+02, 4.22318701171875e+02, 4.269211120605469e+02, 4.303549731445312e+02, 4.334170532226562e+02, 4.371637573242188e+02, 4.396233081054688e+02, 4.423744506835938e+02, 4.452703552246094e+02, 4.481288781738281e+02, 4.508409118652344e+02, 4.544355773925781e+02, 4.576456298828125e+02, 4.600741577148438e+02, 4.634638366699219e+02, 4.661345513916016e+02, 4.697490844726562e+02, 4.742631225585938e+02, 4.778989611816406e+02, 4.828982849121094e+02, 4.881316833496094e+02, 4.913880920410156e+02, 4.974101257324219e+02, 5.027932202148438e+02, 5.070628723144531e+02, 5.151350708007812e+02, 5.22277705078125e+02, 5.284756469726562e+02, 5.384841918945312e+02, 5.474872204589843e+02, 5.567864990234375e+02, 5.67166259765625e+02, 5.774957885742188e+02, 5.860990600585938e+02, 5.97455810546875e+02, 6.097929577636719e+02, 6.212968139648438e+02, 6.347132568359375e+02, 6.481366625976563e+02, 6.602168579101562e+02, 6.730877465820313e+02, 6.872251245117187e+02, 7.052396850585938e+02, 7.225659753417968e+02, 7.35592335469014e+02, 7.496469116210938e+02, 7.630179663085937e+02, 7.775482177734375e+02, 7.925711059570312e+02, 8.023114343261718e+02, 8.157593383789062e+02, 8.338807373046875e+02, 8.470884521484375e+02, 8.581262817382812e+02, 8.684557495117188e+02, 8.816248813442417e+02, 8.932084350585938e+02, 9.103753662109375e+02, 9.255228076171875e+02, 9.402884521484375e+02, 9.567664526718108e+02, 9.704139473293138e+02, 9.888817749023438e+02] +Room.thermRoom.T=[2.941499938964844e+02, 2.931500628662109e+02, 2.930500012207031e+02, 2.930499572753906e+02, 2.931498559570313e+02, 2.930499908447266e+02, 2.930499267578125e+02, 2.930503973388672e+02, 2.930499877929688e+02, 2.93049926147461e+02, 2.931501892089844e+02, 2.930499749755859e+02, 2.930499157714844e+02, 2.930500183105469e+02, 2.930499877929688e+02, 2.931496826171875e+02, 2.931503601074219e+02, 2.930499877929688e+02, 2.931496594238281e+02, 2.930502069091797e+02, 2.930499877929688e+02, 2.931498718261719e+02, 2.930500183105469e+02, 2.930500164794922e+02, 2.931498937988281e+02, 2.930500335693359e+02, 2.930499877929688e+02, 2.931501483154297e+02, 2.930499877929688e+02, 2.930499267578125e+02, 2.931501281738281e+02, 2.930499572753906e+02, 2.931499340820312e+02, 2.931502301025391e+02, 2.930499877929688e+02, 2.931499633789062e+02, 2.931125185702709e+02, 2.930499877929688e+02, 2.931499438476562e+02, 2.930501147460938e+02, 2.930499850537171e+02, 2.931498724365234e+02, 2.93050048828125e+02, 2.930661653791155e+02, 2.930499975585938e+02, 2.931499938964844e+02, 2.930499877929688e+02, 2.931500445556641e+02, 2.930500048828125e+02, 2.931499633789062e+02, 2.931500549316406e+02, 2.93049994506836e+02, 2.931499633789062e+02, 2.931501263427734e+02, 2.930499877929688e+02, 2.931499328613281e+02, 2.931501977539062e+02, 2.931499774169922e+02, 2.931498950195312e+02, 2.931501452636719e+02, 2.930499877929688e+02, 2.931496887207031e+02, 2.93050068359375e+02, 2.931499938964844e+02, 2.931498388671875e+02, 2.93050048828125e+02, 2.931499633789062e+02, 2.931500018310547e+02, 2.930499877929688e+02, 2.931499633789062e+02, 2.931500915527344e+02, 2.930499877929688e+02, 2.931499328613281e+02, 2.931502056884765e+02, 2.930499877929688e+02, 2.930499877929688e+02, 2.931503381347656e+02, 2.930500183105469e+02, 2.931497595214844e+02, 2.93150390625e+02, 2.930500061035156e+02, 2.93149644165039e+02, 2.930502661627692e+02, 2.930499877929688e+02, 2.931498583984375e+02, 2.930499877929688e+02, 2.930499853515625e+02, 2.931501336669922e+02, 2.930499877929688e+02, 2.930499395751953e+02, 2.9315009765625e+02, 2.930499877929688e+02, 2.930499572753906e+02, 2.931500119587816e+02, 2.930499975585938e+02, 2.930499572753906e+02, 2.931503869628907e+02, 2.930499877929688e+02, 2.930499979654948e+02, 2.93150049889606e+02, 2.930499877929688e+02] +Room.starRoom.T=[2.894175109863281e+02, 2.966581323242187e+02, 2.899061059570312e+02, 2.904341571044922e+02, 2.993162780761719e+02, 2.901266876220703e+02, 2.900928405761719e+02, 2.915618408203125e+02, 2.891824389648438e+02, 2.909353009033203e+02, 2.99092236328125e+02, 2.903662847900391e+02, 2.920062292480468e+02, 2.901522723388672e+02, 2.899193298339844e+02, 2.941291931152344e+02, 2.957135034179688e+02, 2.902464562988282e+02, 2.944878332519531e+02, 2.918573760986328e+02, 2.905183044433594e+02, 2.937936413574218e+02, 2.900058520507812e+02, 2.91311650390625e+02, 2.992120568847656e+02, 2.911514434814453e+02, 2.91035390625e+02, 2.977382696533203e+02, 2.904436901855469e+02, 2.919503503417969e+02, 2.963654357910156e+02, 2.915239837646484e+02, 2.933599597167969e+02, 2.948357189941406e+02, 2.917920922851562e+02, 2.934780548095703e+02, 2.931348269198803e+02, 2.920824005126953e+02, 2.937426782226563e+02, 2.922005841064453e+02, 2.922512001008662e+02, 2.946011297607422e+02, 2.922205541992187e+02, 2.930050888061523e+02, 2.925002722167969e+02, 2.933963836669922e+02, 2.92058291015625e+02, 2.950174438476562e+02, 2.923656225585938e+02, 2.935212963867187e+02, 2.9739990234375e+02, 2.921144177246094e+02, 2.947015112304687e+02, 2.953625653076172e+02, 2.924900952148437e+02, 2.950804840087891e+02, 2.951168273925781e+02, 2.934363189697266e+02, 2.951475793457032e+02, 2.937839996337891e+02, 2.925935783854611e+02, 2.958626531982422e+02, 2.928774304199219e+02, 2.932985974121094e+02, 2.979447985839844e+02, 2.92544287109375e+02, 2.939294982910156e+02, 3.005345318603515e+02, 2.921535668945313e+02, 2.938105395507812e+02, 3.007540588378906e+02, 2.915148376464844e+02, 2.931187830105634e+02, 2.990414569091797e+02, 2.913097302246094e+02, 2.909033355712891e+02, 2.978395190429687e+02, 2.90826572265625e+02, 2.947602941894531e+02, 2.952462329101563e+02, 2.913428894042969e+02, 2.982160321044922e+02, 2.923934988073401e+02, 2.904318377685547e+02, 2.986797875976562e+02, 2.905834991455078e+02, 2.908422241210938e+02, 2.955842169189453e+02, 2.900321948242188e+02, 2.914674493408203e+02, 3.02148046875e+02, 2.917495379638672e+02, 2.90199052734375e+02, 2.933285091020282e+02, 2.901395458984375e+02, 2.903572113037109e+02, 2.9717560546875e+02, 2.900933349609375e+02, 2.928580390082465e+02, 2.936649594514266e+02, 2.902682189941406e+02] +TransmittedSolarRadiation_room=[0e+00, 1.130975355148315e+01, 2.615991088867187e+01, 4.389706802368164e+01, 5.918965591430664e+01, 7.433195495605469e+01, 8.556275939941406e+01, 1.003809561157227e+02, 1.15624626159668e+02, 1.345740661621094e+02, 1.428014251708984e+02, 1.544988555908203e+02, 1.705407562255859e+02, 1.77477177734375e+02, 1.932687530517578e+02, 2.075344375610352e+02, 2.213095831298828e+02, 2.364061279296875e+02, 2.496874719238281e+02, 2.609866314697265e+02, 2.750851745605469e+02, 2.882605249023438e+02, 2.998646362304688e+02, 3.089273986816406e+02, 3.219331018066407e+02, 3.322990417480469e+02, 3.404488830566406e+02, 3.503679815673828e+02, 3.563350830078125e+02, 3.649206848144531e+02, 3.726041564941406e+02, 3.801160278320312e+02, 3.884633483886719e+02, 3.934215979003906e+02, 4.005386657714844e+02, 4.054542846679688e+02, 4.083183204163896e+02, 4.135340576171875e+02, 4.187073669433594e+02, 4.223194158935547e+02, 4.26921630859375e+02, 4.303554919433594e+02, 4.334175415039062e+02, 4.37164306640625e+02, 4.39623857421875e+02, 4.423750305175781e+02, 4.452709350585938e+02, 4.481293054199219e+02, 4.5084130859375e+02, 4.544359741210938e+02, 4.5764599609375e+02, 4.600745849609375e+02, 4.634642333984375e+02, 4.661349481201172e+02, 4.697494201660156e+02, 4.742634582519531e+02, 4.778992663574219e+02, 4.828985595703125e+02, 4.881321032714844e+02, 4.9138818359375e+02, 4.974096984863281e+02, 5.027930065917969e+02, 5.070624865722656e+02, 5.151347045898438e+02, 5.22277099609375e+02, 5.284751586914062e+02, 5.384838256835938e+02, 5.474868994140625e+02, 5.567861328125e+02, 5.671658935546875e+02, 5.774949584960938e+02, 5.860983276367188e+02, 5.974552001953125e+02, 6.097923474121094e+02, 6.212964477539062e+02, 6.347127075195312e+02, 6.481362353515625e+02, 6.602164306640625e+02, 6.73087197265625e+02, 6.872250634765625e+02, 7.052396240234375e+02, 7.225657922363281e+02, 7.355914809768265e+02, 7.496460571289062e+02, 7.63017080078125e+02, 7.775473022460938e+02, 7.925703735351562e+02, 8.023108325195312e+02, 8.157588500976562e+02, 8.338800048828125e+02, 8.47087890625e+02, 8.581257934570312e+02, 8.68455322265625e+02, 8.816241256478459e+02, 8.932078247070312e+02, 9.10374755859375e+02, 9.255221362304687e+02, 9.402877197265625e+02, 9.567657809787327e+02, 9.704133900518003e+02, 9.888810424804688e+02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case300.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case300.txt index 5d40fde767..8115079aad 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case300.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case300.txt @@ -1,20 +1,20 @@ -last-generated=2021-05-25 +last-generated=2022-07-06 statistics-simulation= { "linear": "0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0", "nonlinear": "19", - "number of continuous time states": "23", + "number of continuous time states": "25", "numerical Jacobians": "0" } time=[0e+00, 3.15396e+07] checkResultsAccordingToASHRAEHeatingOrTempMax.lowerLimit=[4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03, 4.761e+03] -AnnualHeatingLoad=[0e+00, 1.89657507019043e+02, 2.966013354492188e+02, 3.681592443847656e+02, 4.597365161132813e+02, 5.512537048339843e+02, 6.943880615234375e+02, 7.720897290039062e+02, 8.604346289062501e+02, 9.544799938964844e+02, 1.110222900390625e+03, 1.218549797363281e+03, 1.2776580078125e+03, 1.404400974121094e+03, 1.493202294921875e+03, 1.585836303710938e+03, 1.653904663085938e+03, 1.743651396484375e+03, 1.84651416015625e+03, 1.923905639648438e+03, 1.970769897460938e+03, 2.034371826171875e+03, 2.098892509765625e+03, 2.163375048828125e+03, 2.202849609375e+03, 2.2427509765625e+03, 2.312180302734375e+03, 2.35487060546875e+03, 2.4057996484375e+03, 2.462977742572422e+03, 2.491783935546875e+03, 2.520478930664062e+03, 2.53364794921875e+03, 2.58000146484375e+03, 2.609730625e+03, 2.642222412109375e+03, 2.676165771484375e+03, 2.699332587890625e+03, 2.708869384765625e+03, 2.726734619140625e+03, 2.737792656706799e+03, 2.7588740234375e+03, 2.77593603515625e+03, 2.783618408203125e+03, 2.8136298828125e+03, 2.83095068359375e+03, 2.842768017578125e+03, 2.85766748046875e+03, 2.86778517578125e+03, 2.872427978515625e+03, 2.8748701171875e+03, 2.884598286132813e+03, 2.891557373046875e+03, 2.8932470703125e+03, 2.897409697265625e+03, 2.901397705078125e+03, 2.902654541015625e+03, 2.904065673828125e+03, 2.905482177734375e+03, 2.906545654296875e+03, 2.910389787327869e+03, 2.919083251953125e+03, 2.926221923828125e+03, 2.928761474609375e+03, 2.939933837890625e+03, 2.95153466796875e+03, 2.95481982421875e+03, 2.957067138671875e+03, 2.967545625e+03, 2.973208984375e+03, 2.98972509765625e+03, 3.008654243164062e+03, 3.0363837890625e+03, 3.063621337890625e+03, 3.094391328125e+03, 3.122721313476562e+03, 3.17089013671875e+03, 3.20771001953125e+03, 3.25122216796875e+03, 3.2914033203125e+03, 3.327050048828125e+03, 3.36153955078125e+03, 3.412379638671875e+03, 3.486953115234375e+03, 3.572466064453125e+03, 3.6407396484375e+03, 3.696155869140625e+03, 3.785752084960937e+03, 3.85955142578125e+03, 3.923427622070312e+03, 4.01796875e+03, 4.091445659179687e+03, 4.1744416796875e+03, 4.28038451171875e+03, 4.4275455859375e+03, 4.5317111328125e+03, 4.65322705078125e+03, 4.725360498046875e+03, 4.79293046875e+03, 4.87203693359375e+03, 4.95846337890625e+03] +AnnualHeatingLoad=[0e+00, 1.896589837646484e+02, 2.966025732421875e+02, 3.681599768066406e+02, 4.597371496582031e+02, 5.512545654296875e+02, 6.94388671875e+02, 7.720907336425781e+02, 8.604354223632813e+02, 9.544804833984375e+02, 1.1102236328125e+03, 1.218549309082031e+03, 1.27765654296875e+03, 1.404399875488281e+03, 1.493200952148437e+03, 1.585834106445312e+03, 1.653901611328125e+03, 1.743648833007813e+03, 1.8465107421875e+03, 1.923901611328125e+03, 1.97076640625e+03, 2.034368286132812e+03, 2.09888888671875e+03, 2.16337041015625e+03, 2.202846435546875e+03, 2.24274755859375e+03, 2.3121756640625e+03, 2.354865966796875e+03, 2.405795009765625e+03, 2.462972503014699e+03, 2.49177880859375e+03, 2.520473759765625e+03, 2.533642578125e+03, 2.57999609375e+03, 2.609725009765625e+03, 2.642216796875e+03, 2.676157958984375e+03, 2.699324775390625e+03, 2.708861572265625e+03, 2.726726318359375e+03, 2.737784111784924e+03, 2.758865234375e+03, 2.77592724609375e+03, 2.783609375e+03, 2.81362060546875e+03, 2.83094140625e+03, 2.842756787109375e+03, 2.85765625e+03, 2.86777359375e+03, 2.872415283203125e+03, 2.874857421875e+03, 2.884584858398438e+03, 2.891543212890625e+03, 2.89323291015625e+03, 2.89739529296875e+03, 2.901383056640625e+03, 2.9026396484375e+03, 2.90405078125e+03, 2.90546728515625e+03, 2.906530517578125e+03, 2.91037441079841e+03, 2.919067626953125e+03, 2.926206298828125e+03, 2.928745849609375e+03, 2.93991845703125e+03, 2.951519287109375e+03, 2.954804443359375e+03, 2.957051513671875e+03, 2.96753e+03, 2.973193115234375e+03, 2.989708740234375e+03, 3.00863779296875e+03, 3.036366943359375e+03, 3.063604736328125e+03, 3.09437423828125e+03, 3.122703735351562e+03, 3.1708720703125e+03, 3.207691953125e+03, 3.251204345703125e+03, 3.291385498046875e+03, 3.327035009765625e+03, 3.36152392578125e+03, 3.412364501953125e+03, 3.486937553710938e+03, 3.57244921875e+03, 3.640721752929688e+03, 3.696136337890625e+03, 3.78573234375e+03, 3.85953189453125e+03, 3.923409067382812e+03, 4.017951416015625e+03, 4.091428330078125e+03, 4.1744241015625e+03, 4.28036693359375e+03, 4.42752751953125e+03, 4.531692578125e+03, 4.65320849609375e+03, 4.72534177734375e+03, 4.79291142578125e+03, 4.872017890625e+03, 4.9584443359375e+03] checkResultsAccordingToASHRAEHeatingOrTempMax.upperLimit=[5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03, 5.964e+03] checkResultsAccordingToASHRAECoolingOrTempMin.lowerLimit=[-7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03, -7.1e+03] -AnnualCoolingLoad=[0e+00, -2.785348176956177e+00, -1.596069526672363e+01, -3.754825210571289e+01, -5.436140060424805e+01, -6.597512054443359e+01, -7.094692993164062e+01, -9.739737701416016e+01, -1.14166259765625e+02, -1.321806030273438e+02, -1.403677274298042e+02, -1.549395751953125e+02, -1.836271667480469e+02, -1.849936370849609e+02, -2.075753326416016e+02, -2.336054428100586e+02, -2.642913488769531e+02, -2.904704284667969e+02, -3.154181323242187e+02, -3.429818389892578e+02, -3.9821630859375e+02, -4.369177551269531e+02, -4.923839721679688e+02, -5.244524536132812e+02, -6.0176302734375e+02, -6.838029174804688e+02, -7.143106689453125e+02, -7.783610083007812e+02, -8.170820922851562e+02, -8.7722412109375e+02, -9.522753784179688e+02, -1.024834594726562e+03, -1.138031606445312e+03, -1.189785900878906e+03, -1.287197143554688e+03, -1.333418835449219e+03, -1.358387119140625e+03, -1.449731811523438e+03, -1.567972329101563e+03, -1.658583950195313e+03, -1.777988525390625e+03, -1.820006806640625e+03, -1.9174246875e+03, -2.04451587890625e+03, -2.085882305059081e+03, -2.17868466796875e+03, -2.26839794921875e+03, -2.352732309570312e+03, -2.47011279296875e+03, -2.6205882421875e+03, -2.773177734375e+03, -2.85415625e+03, -2.97233923828125e+03, -3.073041284179687e+03, -3.1932392578125e+03, -3.338464013671875e+03, -3.47374560546875e+03, -3.622128359375e+03, -3.753307626953125e+03, -3.842122177734375e+03, -3.9782568359375e+03, -4.063030874023438e+03, -4.149697578125e+03, -4.298976044921875e+03, -4.3787781640625e+03, -4.47507626953125e+03, -4.62269390625e+03, -4.7363473046875e+03, -4.8543193359375e+03, -4.96869884765625e+03, -5.03938291015625e+03, -5.1056796875e+03, -5.1879636328125e+03, -5.26547748046875e+03, -5.336044921875e+03, -5.4167978515625e+03, -5.48445306640625e+03, -5.54463037109375e+03, -5.58944638671875e+03, -5.6541690234375e+03, -5.7329228515625e+03, -5.792845537109375e+03, -5.83343798828125e+03, -5.863595703125e+03, -5.876540625e+03, -5.91145166015625e+03, -5.9374462890625e+03, -5.946326171875e+03, -5.96352001953125e+03, -5.985623046875e+03, -5.99430869140625e+03, -6.01117431640625e+03, -6.0232021484375e+03, -6.02932373046875e+03, -6.0330244140625e+03, -6.03770068359375e+03, -6.04185205078125e+03, -6.05662109375e+03, -6.07464306640625e+03, -6.0875966796875e+03, -6.09964208984375e+03] +AnnualCoolingLoad=[0e+00, -2.787554740905762e+00, -1.596255683898926e+01, -3.754988861083984e+01, -5.436282730102539e+01, -6.597602081298828e+01, -7.094760894775391e+01, -9.739724731445312e+01, -1.141653518676758e+02, -1.321792297363281e+02, -1.403663037955877e+02, -1.549380187988281e+02, -1.836250305175781e+02, -1.849913635253906e+02, -2.075731658935547e+02, -2.336028182983399e+02, -2.642886022949219e+02, -2.90466552734375e+02, -3.154145288085937e+02, -3.429777996826172e+02, -3.982113342285156e+02, -4.36912353515625e+02, -4.923786315917969e+02, -5.244464721679688e+02, -6.017550927734375e+02, -6.837953491210938e+02, -7.14302734375e+02, -7.783529516601562e+02, -8.170737915039062e+02, -8.772156982421875e+02, -9.522672607421875e+02, -1.0248251953125e+03, -1.13802232421875e+03, -1.189775524902344e+03, -1.287186401367188e+03, -1.333406750488281e+03, -1.358375024414062e+03, -1.44972021484375e+03, -1.5679608984375e+03, -1.658570888671875e+03, -1.777975708007812e+03, -1.81999533203125e+03, -1.917412416992187e+03, -2.044503859863281e+03, -2.085869838919691e+03, -2.178672216796875e+03, -2.268386474609375e+03, -2.352721728515625e+03, -2.470101806640625e+03, -2.62057701171875e+03, -2.77316650390625e+03, -2.854145751953125e+03, -2.972327763671875e+03, -3.073029565429687e+03, -3.1932275390625e+03, -3.33845302734375e+03, -3.47373486328125e+03, -3.622117241210938e+03, -3.753297373046875e+03, -3.84211216796875e+03, -3.97824658203125e+03, -4.063020375976563e+03, -4.14968701171875e+03, -4.298963349609375e+03, -4.37876546875e+03, -4.475062939453125e+03, -4.62267876953125e+03, -4.73633265625e+03, -4.8543037109375e+03, -4.968684111328125e+03, -5.039367578125e+03, -5.1056640625e+03, -5.1879480078125e+03, -5.26546283203125e+03, -5.33603076171875e+03, -5.4167841796875e+03, -5.48443876953125e+03, -5.544615234375e+03, -5.5894302734375e+03, -5.654152421875e+03, -5.73290625e+03, -5.792828447265625e+03, -5.8334208984375e+03, -5.86357958984375e+03, -5.87652451171875e+03, -5.9114345703125e+03, -5.9374287109375e+03, -5.94630859375e+03, -5.96350244140625e+03, -5.98560400390625e+03, -5.9942892578125e+03, -6.01115625e+03, -6.02318359375e+03, -6.02930517578125e+03, -6.03300537109375e+03, -6.0376826171875e+03, -6.04183306640625e+03, -6.05660205078125e+03, -6.07462255859375e+03, -6.08757568359375e+03, -6.09962060546875e+03] checkResultsAccordingToASHRAECoolingOrTempMin.upperLimit=[-4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03, -4.302e+03] checkResultsAccordingToASHRAEHeatingOrTempMax.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00] checkResultsAccordingToASHRAECoolingOrTempMin.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00] -Room.thermRoom.T=[2.941499938964844e+02, 2.930503515625e+02, 2.930500012207031e+02, 2.930499572753906e+02, 2.930501708984375e+02, 2.930499908447266e+02, 2.930499267578125e+02, 2.930500842285156e+02, 2.930499877929688e+02, 2.93049926147461e+02, 2.931497965554107e+02, 2.930499749755859e+02, 2.930499157714844e+02, 2.930500183105469e+02, 2.930499877929688e+02, 2.931495880126953e+02, 2.931501147460938e+02, 2.930499877929688e+02, 2.931499975585937e+02, 2.93150166015625e+02, 2.930499877929688e+02, 2.93087018883037e+02, 2.930500183105469e+02, 2.930499877929688e+02, 2.931502380371094e+02, 2.930499114990234e+02, 2.930499487304688e+02, 2.931501409912109e+02, 2.930499877929688e+02, 2.930499900205292e+02, 2.931498657226563e+02, 2.930499572753906e+02, 2.931497521972656e+02, 2.931498254394531e+02, 2.930499877929688e+02, 2.931497467041016e+02, 2.931499401855469e+02, 2.930499615478516e+02, 2.931498840332031e+02, 2.931501721191406e+02, 2.930499572753906e+02, 2.931502062988282e+02, 2.931502917480469e+02, 2.931499328613281e+02, 2.931500018433924e+02, 2.931498870849609e+02, 2.930499877929688e+02, 2.9315013671875e+02, 2.930501245117188e+02, 2.931499261474609e+02, 2.931498107910156e+02, 2.93049994506836e+02, 2.931500573730469e+02, 2.931498010253906e+02, 2.930499841308594e+02, 2.931497955322266e+02, 2.931499645996093e+02, 2.931499633789062e+02, 2.931496240234375e+02, 2.93150087890625e+02, 2.930499877929688e+02, 2.931493316650391e+02, 2.931506372070313e+02, 2.931499633789062e+02, 2.931502075195312e+02, 2.931494750976562e+02, 2.931499328613281e+02, 2.931501837158203e+02, 2.930499877929688e+02, 2.931499633789062e+02, 2.93149951171875e+02, 2.930499877929688e+02, 2.931498315429687e+02, 2.93149839477539e+02, 2.930499877929688e+02, 2.930499725341797e+02, 2.931499975585937e+02, 2.930500183105469e+02, 2.931497241210938e+02, 2.931502032470703e+02, 2.930500061035156e+02, 2.931499908447266e+02, 2.9308662237123e+02, 2.930499877929688e+02, 2.931502392578125e+02, 2.930499877929688e+02, 2.930499853515625e+02, 2.930501708984375e+02, 2.930499877929688e+02, 2.930499395751953e+02, 2.931500366210938e+02, 2.930499877929688e+02, 2.930499572753906e+02, 2.930499877929688e+02, 2.930499975585938e+02, 2.930499847412109e+02, 2.931500439453125e+02, 2.930499877929688e+02, 2.930495300292969e+02, 2.93050302734375e+02, 2.930499877929688e+02] -Room.starRoom.T=[2.894546508789062e+02, 2.926921417236328e+02, 2.900861706542969e+02, 2.905712573242188e+02, 2.925617883300781e+02, 2.902913269042969e+02, 2.902574609375e+02, 2.907530670166016e+02, 2.894031469726563e+02, 2.911147912597656e+02, 2.933637279810781e+02, 2.905135028076172e+02, 2.919947485351562e+02, 2.90247056274414e+02, 2.900938537597656e+02, 2.954256408691406e+02, 2.970466223144531e+02, 2.904106573486328e+02, 2.962679772949219e+02, 2.938419769287109e+02, 2.907044799804688e+02, 2.931694103057372e+02, 2.902286352539062e+02, 2.915157171630859e+02, 2.968672546386719e+02, 2.914865264892578e+02, 2.913969580078125e+02, 2.948696392822266e+02, 2.905871057128906e+02, 2.928611907290716e+02, 2.943839965820313e+02, 2.916063928222656e+02, 2.962210815429688e+02, 2.969880059814453e+02, 2.918766552734375e+02, 2.984131896972656e+02, 2.987767529296875e+02, 2.921925152587891e+02, 2.978647119140625e+02, 2.983575469970703e+02, 2.924297275085063e+02, 3.001601281738281e+02, 2.969285510253906e+02, 2.933120080566407e+02, 2.932977253191536e+02, 2.941478332519531e+02, 2.921493664550781e+02, 2.952718145751953e+02, 2.926478662109375e+02, 2.942993060302734e+02, 2.986455688476562e+02, 2.921674310302735e+02, 2.982641845703125e+02, 2.991373754882812e+02, 2.925360314941406e+02, 3.015718048095703e+02, 3.010819201660156e+02, 2.935723657226562e+02, 2.983362133789062e+02, 3.001180810546875e+02, 2.927076388120976e+02, 2.987713305664063e+02, 2.975408801269531e+02, 2.935336169433594e+02, 2.98946513671875e+02, 2.938867889404297e+02, 2.945369299316406e+02, 2.984416760253906e+02, 2.922025268554688e+02, 2.941164331054687e+02, 2.973133850097656e+02, 2.916035681152344e+02, 2.945931274414062e+02, 2.974236212158203e+02, 2.914118859863281e+02, 2.911521301269531e+02, 2.976656201171875e+02, 2.909555346679688e+02, 2.972127416992187e+02, 2.961008502197266e+02, 2.914554992675781e+02, 2.99249525756836e+02, 2.931850607228833e+02, 2.905986108398437e+02, 2.957771716308594e+02, 2.907255645751953e+02, 2.909684777832031e+02, 2.925445220947266e+02, 2.902011560058594e+02, 2.915678649902344e+02, 2.949194274902344e+02, 2.918231848144531e+02, 2.903878002929687e+02, 2.915635327148437e+02, 2.903053625488281e+02, 2.904129272460938e+02, 2.938310046386719e+02, 2.902552825927734e+02, 2.926258081054688e+02, 2.928612225341797e+02, 2.904215698242188e+02] -TransmittedSolarRadiation_room=[0e+00, 2.331186146736145e+00, 6.243463134765625e+00, 1.068803977966309e+01, 1.451186946868896e+01, 1.874282836914062e+01, 2.202204132080078e+01, 2.644075328826904e+01, 3.145893096923828e+01, 3.727953720092773e+01, 4.04545733393455e+01, 4.400544738769531e+01, 4.940359497070312e+01, 5.146023292541504e+01, 5.778456878662109e+01, 6.407183380126953e+01, 7.004801269531249e+01, 7.567191314697266e+01, 8.173405364990235e+01, 8.766589279174805e+01, 9.534886169433594e+01, 1.027453472688236e+02, 1.103782043457031e+02, 1.163307266235352e+02, 1.247054702758789e+02, 1.331432189941406e+02, 1.391574249267578e+02, 1.471497711181641e+02, 1.52224794921875e+02, 1.610867767333984e+02, 1.690646728515625e+02, 1.768772888183594e+02, 1.866222772216797e+02, 1.932615878295898e+02, 2.03378173828125e+02, 2.097523696899414e+02, 2.140586260986328e+02, 2.227472229003906e+02, 2.326835192871094e+02, 2.409047958374023e+02, 2.507307434082031e+02, 2.555406729125976e+02, 2.6392265625e+02, 2.7409814453125e+02, 2.785444917622134e+02, 2.867025848388672e+02, 2.944622192382812e+02, 3.018210760498047e+02, 3.112677868652344e+02, 3.22106743774414e+02, 3.322598876953125e+02, 3.387553472900391e+02, 3.478340380859375e+02, 3.54897587890625e+02, 3.630544738769531e+02, 3.734779510498047e+02, 3.821123010253907e+02, 3.910039978027344e+02, 3.993378930664063e+02, 4.055120751953125e+02, 4.146815490722656e+02, 4.21165034790039e+02, 4.273151867675781e+02, 4.367369689941406e+02, 4.4332837890625e+02, 4.505835784912109e+02, 4.604342651367188e+02, 4.682493231201172e+02, 4.766043994140625e+02, 4.841535949707031e+02, 4.906868286132812e+02, 4.962146301269531e+02, 5.0337060546875e+02, 5.1095990234375e+02, 5.1740380859375e+02, 5.246063842773438e+02, 5.31748544921875e+02, 5.37147216796875e+02, 5.429107421875e+02, 5.493875915527344e+02, 5.566755981445312e+02, 5.634406091308593e+02, 5.685593091388081e+02, 5.734446411132812e+02, 5.775279321289063e+02, 5.82766357421875e+02, 5.874164428710938e+02, 5.900921691894531e+02, 5.943963623046875e+02, 5.994313354492188e+02, 6.0268896484375e+02, 6.059911499023438e+02, 6.087918090820312e+02, 6.120117712402343e+02, 6.149470825195312e+02, 6.189833984375e+02, 6.22896953125e+02, 6.263602294921875e+02, 6.301783325195313e+02, 6.336574914550781e+02, 6.380502319335938e+02] +Room.thermRoom.T=[2.941499938964844e+02, 2.930503753662109e+02, 2.930500012207031e+02, 2.930499572753906e+02, 2.930501708984375e+02, 2.930499908447266e+02, 2.930499267578125e+02, 2.930500842285156e+02, 2.930499877929688e+02, 2.93049926147461e+02, 2.931497965507977e+02, 2.930499749755859e+02, 2.930499157714844e+02, 2.930500183105469e+02, 2.930499877929688e+02, 2.93149609375e+02, 2.931501147460938e+02, 2.930499877929688e+02, 2.931499975585937e+02, 2.93150166015625e+02, 2.930499877929688e+02, 2.930869181606673e+02, 2.930500183105469e+02, 2.930499877929688e+02, 2.931502380371094e+02, 2.930498962402344e+02, 2.930499487304688e+02, 2.931501409912109e+02, 2.930499877929688e+02, 2.930499846898646e+02, 2.931498657226563e+02, 2.930499572753906e+02, 2.931497521972656e+02, 2.931498254394531e+02, 2.930499877929688e+02, 2.931497680664062e+02, 2.931499401855469e+02, 2.930499615478516e+02, 2.931498840332031e+02, 2.931501593017578e+02, 2.930499572753906e+02, 2.931502062988282e+02, 2.931502917480469e+02, 2.931499328613281e+02, 2.931500109600764e+02, 2.931499145507813e+02, 2.930499877929688e+02, 2.9315013671875e+02, 2.93050107421875e+02, 2.931499261474609e+02, 2.931498107910156e+02, 2.93049994506836e+02, 2.931500537109375e+02, 2.931498010253906e+02, 2.930499841308594e+02, 2.931497955322266e+02, 2.931499645996093e+02, 2.931499633789062e+02, 2.931496008300781e+02, 2.93150087890625e+02, 2.930499877929688e+02, 2.931492352294922e+02, 2.931506481933594e+02, 2.931499633789062e+02, 2.931502099609375e+02, 2.931497528076172e+02, 2.931499328613281e+02, 2.931501837158203e+02, 2.930499877929688e+02, 2.931499633789062e+02, 2.93149951171875e+02, 2.930499877929688e+02, 2.931498315429687e+02, 2.93149839477539e+02, 2.930499877929688e+02, 2.930499725341797e+02, 2.931499975585937e+02, 2.930500183105469e+02, 2.931497192382812e+02, 2.931502032470703e+02, 2.930500061035156e+02, 2.931499908447266e+02, 2.930863013634315e+02, 2.930499877929688e+02, 2.931502392578125e+02, 2.930499877929688e+02, 2.930499853515625e+02, 2.930501708984375e+02, 2.930499877929688e+02, 2.930499395751953e+02, 2.931500366210938e+02, 2.930499877929688e+02, 2.930499572753906e+02, 2.930499877929688e+02, 2.930499975585938e+02, 2.930499847412109e+02, 2.931500439453125e+02, 2.930499877929688e+02, 2.930491271972656e+02, 2.93050302734375e+02, 2.930499877929688e+02] +Room.starRoom.T=[2.894546508789062e+02, 2.926921112060547e+02, 2.900861706542969e+02, 2.905712573242188e+02, 2.925617883300781e+02, 2.902911834716797e+02, 2.902574609375e+02, 2.907531280517578e+02, 2.894031469726563e+02, 2.911147619628906e+02, 2.933636649052045e+02, 2.90513515625e+02, 2.919947485351562e+02, 2.902470257568359e+02, 2.900938537597656e+02, 2.954255584716797e+02, 2.970465002441406e+02, 2.904106799316406e+02, 2.962679162597656e+02, 2.938419213867188e+02, 2.907044799804688e+02, 2.93169311329058e+02, 2.902286352539062e+02, 2.915157171630859e+02, 2.968672546386719e+02, 2.914865264892578e+02, 2.913969665527344e+02, 2.948695782470703e+02, 2.905871313476562e+02, 2.928611361567087e+02, 2.943840698242187e+02, 2.916063623046875e+02, 2.962211108398437e+02, 2.96987998046875e+02, 2.918766552734375e+02, 2.984132202148438e+02, 2.987767529296875e+02, 2.921925152587891e+02, 2.978647338867187e+02, 2.983575164794922e+02, 2.92429730247758e+02, 3.00160219116211e+02, 2.96928505859375e+02, 2.933120220947266e+02, 2.932975050403226e+02, 2.941478332519531e+02, 2.921493664550781e+02, 2.952718145751953e+02, 2.926478662109375e+02, 2.942992993164062e+02, 2.986455688476562e+02, 2.921674548339844e+02, 2.982640759277344e+02, 2.991373858642578e+02, 2.9253603515625e+02, 3.015718658447266e+02, 3.010819396972656e+02, 2.935723657226562e+02, 2.983361901855469e+02, 3.001180499267578e+02, 2.927076393533371e+02, 2.987713000488282e+02, 2.975408276367187e+02, 2.935336126708984e+02, 2.989464880371094e+02, 2.938868011474609e+02, 2.945369299316406e+02, 2.984417065429687e+02, 2.922025256347656e+02, 2.941164276123047e+02, 2.973133544921875e+02, 2.916035797119141e+02, 2.945931274414062e+02, 2.974237109375e+02, 2.914119079589844e+02, 2.911522216796875e+02, 2.976656372070312e+02, 2.909555346679688e+02, 2.972126293945312e+02, 2.961008880615234e+02, 2.914554870605469e+02, 2.992494592285156e+02, 2.931850576547476e+02, 2.905986029052734e+02, 2.957771411132812e+02, 2.907255645751953e+02, 2.909684777832031e+02, 2.925444915771484e+02, 2.902011560058594e+02, 2.915678649902344e+02, 2.949194274902344e+02, 2.918231842041016e+02, 2.9038779296875e+02, 2.915635327148437e+02, 2.903053625488281e+02, 2.904129272460938e+02, 2.938310009765625e+02, 2.902552825927734e+02, 2.926258154296875e+02, 2.928611920166015e+02, 2.904215698242188e+02] +TransmittedSolarRadiation_room=[0e+00, 2.331188898086548e+00, 6.243470973968506e+00, 1.06880521774292e+01, 1.451186466217041e+01, 1.874279975891113e+01, 2.202204513549805e+01, 2.644068565368652e+01, 3.145881843566895e+01, 3.727941513061523e+01, 4.045443514207702e+01, 4.400539398193359e+01, 4.940354537963867e+01, 5.146015335083008e+01, 5.778453826904297e+01, 6.407183151245117e+01, 7.004805847167968e+01, 7.567186737060547e+01, 8.17341146850586e+01, 8.766597671508789e+01, 9.5348876953125e+01, 1.027453483775923e+02, 1.103782577514648e+02, 1.163308029174805e+02, 1.247054321289063e+02, 1.331432876586914e+02, 1.391575317382812e+02, 1.471498635864258e+02, 1.522248712158203e+02, 1.610869293212891e+02, 1.690648956298828e+02, 1.768773956298828e+02, 1.866224145507813e+02, 1.932616488647461e+02, 2.033782196044922e+02, 2.097523193359375e+02, 2.140586108398437e+02, 2.227472534179688e+02, 2.326835858154297e+02, 2.40904719543457e+02, 2.50730712890625e+02, 2.555407489013672e+02, 2.639226867675781e+02, 2.740982360839844e+02, 2.785445048014323e+02, 2.867026153564453e+02, 2.944623413085938e+02, 3.018213201904297e+02, 3.112680004882812e+02, 3.221069812011719e+02, 3.322601318359375e+02, 3.387557440185547e+02, 3.478343737792969e+02, 3.548979541015625e+02, 3.630548400878906e+02, 3.734784393310547e+02, 3.821128503417969e+02, 3.910045166015625e+02, 3.993384729003906e+02, 4.055127160644531e+02, 4.146821594238281e+02, 4.211656274414062e+02, 4.273157971191406e+02, 4.367373962402344e+02, 4.433288647460938e+02, 4.505840148925781e+02, 4.604345703125e+02, 4.682497503662109e+02, 4.766047351074219e+02, 4.841539611816406e+02, 4.906872253417969e+02, 4.962149963378906e+02, 5.033710021972656e+02, 5.109604498291015e+02, 5.174044189453125e+02, 5.246070556640625e+02, 5.317491552734375e+02, 5.371477661132812e+02, 5.42911220703125e+02, 5.493880187988282e+02, 5.56676025390625e+02, 5.634409753417968e+02, 5.685596811147836e+02, 5.734451293945312e+02, 5.775285424804688e+02, 5.827669067382812e+02, 5.874169921875e+02, 5.900927270507813e+02, 5.943968505859375e+02, 5.994317016601562e+02, 6.026893920898438e+02, 6.0599169921875e+02, 6.087923583984375e+02, 6.120123486328125e+02, 6.149476928710938e+02, 6.18984130859375e+02, 6.228976245117187e+02, 6.263609008789062e+02, 6.30178916015625e+02, 6.336580541992188e+02, 6.3805078125e+02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case320.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case320.txt index b0187abdbe..cff69fa2b2 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case320.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case320.txt @@ -1,20 +1,20 @@ -last-generated=2021-05-25 +last-generated=2022-07-06 statistics-simulation= { "linear": "0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0", "nonlinear": "13", - "number of continuous time states": "23", + "number of continuous time states": "25", "numerical Jacobians": "0" } time=[0e+00, 3.15396e+07] checkResultsAccordingToASHRAEHeatingOrTempMax.lowerLimit=[3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03, 3.859e+03] -AnnualHeatingLoad=[0e+00, 1.568736114501953e+02, 2.441414685058594e+02, 2.993939727783203e+02, 3.72787353515625e+02, 4.446326599121094e+02, 5.692199584960938e+02, 6.355783239746094e+02, 7.072598754882813e+02, 7.8318505859375e+02, 9.296018676757812e+02, 1.024851298828125e+03, 1.07509228515625e+03, 1.178985556640625e+03, 1.25353443359375e+03, 1.332335693359375e+03, 1.39177880859375e+03, 1.466125183105469e+03, 1.564182006835938e+03, 1.635930158691406e+03, 1.678282739257812e+03, 1.739633422851562e+03, 1.801951845703125e+03, 1.862636608886719e+03, 1.902487426757812e+03, 1.940034240722656e+03, 2.008428857421875e+03, 2.0534267578125e+03, 2.1002571875e+03, 2.166843994140625e+03, 2.197527099609375e+03, 2.2273049609375e+03, 2.24169921875e+03, 2.2917822265625e+03, 2.32702404296875e+03, 2.366300048828125e+03, 2.405474853515625e+03, 2.431855712890625e+03, 2.441757080078125e+03, 2.462602924804688e+03, 2.47596728515625e+03, 2.499131591796875e+03, 2.517764296875e+03, 2.52704296875e+03, 2.558031884765625e+03, 2.58260302734375e+03, 2.594698388671875e+03, 2.6109765625e+03, 2.62113330078125e+03, 2.62508056640625e+03, 2.626176025390625e+03, 2.636367407226563e+03, 2.643570556640625e+03, 2.64429833984375e+03, 2.646579833984375e+03, 2.64827001953125e+03, 2.64827001953125e+03, 2.648842529296875e+03, 2.648941162109375e+03, 2.648941162109375e+03, 2.6503173828125e+03, 2.65664013671875e+03, 2.661303818359375e+03, 2.662288330078125e+03, 2.6704423828125e+03, 2.678677172851562e+03, 2.67993701171875e+03, 2.6804970703125e+03, 2.68824232421875e+03, 2.692190673828125e+03, 2.705016845703125e+03, 2.718761928710937e+03, 2.74287939453125e+03, 2.76665966796875e+03, 2.790875673828125e+03, 2.812964965820312e+03, 2.856830810546875e+03, 2.883797294921875e+03, 2.920194091796875e+03, 2.952902587890625e+03, 2.9808369140625e+03, 3.00951806640625e+03, 3.051330645027807e+03, 3.114079150390625e+03, 3.18454736328125e+03, 3.24149345703125e+03, 3.284463232421875e+03, 3.358699462890625e+03, 3.41652689453125e+03, 3.46744970703125e+03, 3.54138330078125e+03, 3.599151943359375e+03, 3.6674697265625e+03, 3.75199267578125e+03, 3.873968037109375e+03, 3.952410766601562e+03, 4.050962158203125e+03, 4.1045117578125e+03, 4.15930126953125e+03, 4.2214013671875e+03, 4.28806982421875e+03] +AnnualHeatingLoad=[0e+00, 1.568662872314453e+02, 2.44119853515625e+02, 2.993594897460937e+02, 3.727425842285156e+02, 4.445738525390625e+02, 5.691540454101563e+02, 6.355016638183594e+02, 7.071695434570313e+02, 7.830840454101562e+02, 9.294935913085938e+02, 1.024732717285156e+03, 1.0749638671875e+03, 1.17884712890625e+03, 1.253382333984375e+03, 1.332173706054688e+03, 1.391603759765625e+03, 1.465936706542969e+03, 1.563986572265625e+03, 1.635720686035156e+03, 1.678060083007812e+03, 1.739400512695312e+03, 1.801705283203125e+03, 1.862380498046875e+03, 1.902221923828125e+03, 1.939755859375e+03, 2.00814130859375e+03, 2.053128173828125e+03, 2.099950546875e+03, 2.16653125e+03, 2.19720263671875e+03, 2.226969067382813e+03, 2.241355224609375e+03, 2.291428955078125e+03, 2.32665857421875e+03, 2.3659287109375e+03, 2.405095458984375e+03, 2.431468505859375e+03, 2.44135986328125e+03, 2.462195209960938e+03, 2.4755517578125e+03, 2.49870556640625e+03, 2.5173277734375e+03, 2.5265986328125e+03, 2.557579326171875e+03, 2.58214892578125e+03, 2.594236904296875e+03, 2.610506103515625e+03, 2.6206552734375e+03, 2.62459814453125e+03, 2.625691162109375e+03, 2.635876494140625e+03, 2.6430732421875e+03, 2.643798828125e+03, 2.64607470703125e+03, 2.64775830078125e+03, 2.64775830078125e+03, 2.64832861328125e+03, 2.64842578125e+03, 2.64842578125e+03, 2.64979736328125e+03, 2.6561142578125e+03, 2.660771103515625e+03, 2.6617529296875e+03, 2.669898193359375e+03, 2.678123388671875e+03, 2.67937890625e+03, 2.679935791015625e+03, 2.687671533203125e+03, 2.691612060546875e+03, 2.704427978515625e+03, 2.718162075195312e+03, 2.7422734375e+03, 2.7660419921875e+03, 2.790246279296875e+03, 2.812324951171875e+03, 2.85618017578125e+03, 2.88313689453125e+03, 2.9195244140625e+03, 2.95222021484375e+03, 2.980143017578125e+03, 3.008815185546875e+03, 3.050615031614142e+03, 3.113354360351563e+03, 3.183815185546875e+03, 3.2407478515625e+03, 3.283704970703125e+03, 3.357933349609375e+03, 3.415747197265625e+03, 3.466659912109375e+03, 3.540580322265625e+03, 3.598338955078125e+03, 3.666643193359375e+03, 3.751154052734375e+03, 3.873118916015625e+03, 3.9515490234375e+03, 4.05008837890625e+03, 4.10362455078125e+03, 4.158404296875e+03, 4.2204912109375e+03, 4.2871474609375e+03] checkResultsAccordingToASHRAEHeatingOrTempMax.upperLimit=[5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03, 5.141e+03] checkResultsAccordingToASHRAECoolingOrTempMin.lowerLimit=[-7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03, -7.304e+03] -AnnualCoolingLoad=[0e+00, -4.397423217773437e+01, -1.408445434570312e+02, -2.603628845214844e+02, -3.490292468261719e+02, -4.440921630859375e+02, -4.992906494140625e+02, -6.02379150390625e+02, -6.87090576171875e+02, -7.964497680664062e+02, -8.3276728515625e+02, -9.093999633789062e+02, -1.011603454589844e+03, -1.033234497070312e+03, -1.115954467773438e+03, -1.186053857421875e+03, -1.268502319335938e+03, -1.353296264648438e+03, -1.4239867578125e+03, -1.483542602539062e+03, -1.5689169921875e+03, -1.6363115234375e+03, -1.709990478515625e+03, -1.747313842773438e+03, -1.837254106445313e+03, -1.915347412109375e+03, -1.944923095703125e+03, -2.000706770019531e+03, -2.03095751953125e+03, -2.070224853515625e+03, -2.11354521484375e+03, -2.15774560546875e+03, -2.219990966796875e+03, -2.238990478515625e+03, -2.27704150390625e+03, -2.291203369140625e+03, -2.29383203125e+03, -2.317509521484375e+03, -2.352498291015625e+03, -2.37399169921875e+03, -2.40022900390625e+03, -2.406184086914062e+03, -2.42212451171875e+03, -2.442362548828125e+03, -2.44880859375e+03, -2.461976318359375e+03, -2.47212060546875e+03, -2.48301171875e+03, -2.499261962890625e+03, -2.532554443359375e+03, -2.568281494140625e+03, -2.5839697265625e+03, -2.60663748046875e+03, -2.625569580078125e+03, -2.657036865234375e+03, -2.698605688476563e+03, -2.739603515625e+03, -2.79768408203125e+03, -2.852741494140625e+03, -2.87918896484375e+03, -2.934050048828125e+03, -2.972538076171875e+03, -3.00841357421875e+03, -3.09213720703125e+03, -3.139051640625e+03, -3.192632568359375e+03, -3.29350537109375e+03, -3.3746346484375e+03, -3.4672294921875e+03, -3.56715087890625e+03, -3.638769384765625e+03, -3.707774169921875e+03, -3.797e+03, -3.885900161132813e+03, -3.976266845703125e+03, -4.081939697265625e+03, -4.1812060546875e+03, -4.27882861328125e+03, -4.36158296875e+03, -4.47248193359375e+03, -4.622876953125e+03, -4.7525251953125e+03, -4.84717724609375e+03, -4.93950732421875e+03, -5.0068984765625e+03, -5.10923046875e+03, -5.2051201171875e+03, -5.25263177734375e+03, -5.33205126953125e+03, -5.44994580078125e+03, -5.5139751953125e+03, -5.58677587890625e+03, -5.64610888671875e+03, -5.71588134765625e+03, -5.77136767578125e+03, -5.8638818359375e+03, -5.94018125e+03, -6.0374345703125e+03, -6.147842145876025e+03, -6.2338642578125e+03, -6.35112548828125e+03] +AnnualCoolingLoad=[0e+00, -4.396255615234375e+01, -1.408217926025391e+02, -2.603245544433594e+02, -3.489764855957031e+02, -4.440273742675781e+02, -4.992178649902344e+02, -6.022945556640625e+02, -6.86991455078125e+02, -7.96335205078125e+02, -8.326455932617188e+02, -9.092686767578125e+02, -1.011456970214844e+03, -1.033080810546875e+03, -1.115787231445312e+03, -1.185872094726562e+03, -1.268308349609375e+03, -1.35308740234375e+03, -1.423766669921875e+03, -1.48331201171875e+03, -1.568671997070312e+03, -1.636052414550781e+03, -1.7097197265625e+03, -1.747032470703125e+03, -1.836957231445313e+03, -1.915039306640625e+03, -1.944606079101562e+03, -2.000375607910156e+03, -2.030618408203125e+03, -2.069875e+03, -2.11318212890625e+03, -2.157368408203125e+03, -2.219599365234375e+03, -2.238591796875e+03, -2.27662744140625e+03, -2.290778564453125e+03, -2.29340380859375e+03, -2.31706982421875e+03, -2.3520439453125e+03, -2.373528076171875e+03, -2.39975146484375e+03, -2.405694096679687e+03, -2.421623779296875e+03, -2.441847900390625e+03, -2.448287353515625e+03, -2.46144482421875e+03, -2.47158203125e+03, -2.482463134765625e+03, -2.49869921875e+03, -2.53198046875e+03, -2.5676982421875e+03, -2.5833798828125e+03, -2.606033720703125e+03, -2.624959228515625e+03, -2.65641357421875e+03, -2.69796943359375e+03, -2.73896142578125e+03, -2.797033203125e+03, -2.85208255859375e+03, -2.878522705078125e+03, -2.933371337890625e+03, -2.97185078125e+03, -3.00771728515625e+03, -3.091427978515625e+03, -3.13832849609375e+03, -3.1918974609375e+03, -3.29275732421875e+03, -3.37387537109375e+03, -3.466458984375e+03, -3.566369384765625e+03, -3.63797421875e+03, -3.706968505859375e+03, -3.79618359375e+03, -3.885069594726563e+03, -3.975424560546875e+03, -4.08108251953125e+03, -4.18033509765625e+03, -4.27794677734375e+03, -4.36068599609375e+03, -4.47157373046875e+03, -4.6219541015625e+03, -4.751587119140625e+03, -4.84622705078125e+03, -4.9385458984375e+03, -5.0059258203125e+03, -5.10824609375e+03, -5.20411962890625e+03, -5.251621875e+03, -5.33102783203125e+03, -5.44890771484375e+03, -5.51292197265625e+03, -5.585712890625e+03, -5.64503466796875e+03, -5.714794921875e+03, -5.77027099609375e+03, -5.86277001953125e+03, -5.939055703125e+03, -6.03629638671875e+03, -6.146686872438525e+03, -6.23269775390625e+03, -6.34994287109375e+03] checkResultsAccordingToASHRAECoolingOrTempMin.upperLimit=[-5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03, -5.061e+03] checkResultsAccordingToASHRAEHeatingOrTempMax.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00] checkResultsAccordingToASHRAECoolingOrTempMin.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00] -Room.thermRoom.T=[2.941499938964844e+02, 3.001503045654297e+02, 2.931500073242187e+02, 2.931499224853516e+02, 3.001498596191406e+02, 2.931499938964844e+02, 2.931498510742188e+02, 2.931505023193359e+02, 2.931499938964844e+02, 2.944013818359375e+02, 3.001503356933594e+02, 2.931499633789062e+02, 2.972799047851562e+02, 2.931500244140625e+02, 2.931499938964844e+02, 3.001495391845703e+02, 2.99538906654005e+02, 2.931499633789062e+02, 3.001495385742188e+02, 2.931502490234375e+02, 2.931499755859375e+02, 3.001498107910156e+02, 2.9315001953125e+02, 2.931499633789062e+02, 3.001498547363281e+02, 2.931500244140625e+02, 2.931498852539062e+02, 3.001502435302734e+02, 2.931499938964844e+02, 2.956825103759766e+02, 3.001503295898438e+02, 2.931499633789062e+02, 2.992872192382812e+02, 2.978656951904297e+02, 2.931499633789062e+02, 2.996824676513672e+02, 2.936492868487754e+02, 2.935004596416767e+02, 3.001165530556127e+02, 2.931501336669922e+02, 2.942634767322564e+02, 3.001498419189453e+02, 2.931500549316406e+02, 2.975284136962891e+02, 2.931500036621094e+02, 2.966528045654297e+02, 2.931499060058593e+02, 2.997336650357558e+02, 2.936914086914063e+02, 2.9902896484375e+02, 3.001501159667969e+02, 2.931499938964844e+02, 3.001499633789062e+02, 2.986079461669922e+02, 2.947260803222656e+02, 3.001499328613281e+02, 2.980646032714844e+02, 2.981860473632813e+02, 3.001498571777344e+02, 2.946663214111328e+02, 2.950071972772824e+02, 3.001496325683594e+02, 2.931500744628906e+02, 2.978647802734375e+02, 3.001498059082031e+02, 2.931500244140625e+02, 2.999069897460938e+02, 3.00150009765625e+02, 2.931499621582032e+02, 2.998423199462891e+02, 3.001501708984375e+02, 2.931499938964844e+02, 2.992552673339844e+02, 3.001503851318359e+02, 2.931499719238281e+02, 2.9314990234375e+02, 3.001506640625e+02, 2.931500244140625e+02, 3.001496728515625e+02, 2.9789296875e+02, 2.93149951171875e+02, 3.001495275878906e+02, 2.931503389002913e+02, 2.931499633789062e+02, 3.001498291015625e+02, 2.931499938964844e+02, 2.931498974609375e+02, 3.001504217529297e+02, 2.931499938964844e+02, 2.941077716064453e+02, 3.001501892089844e+02, 2.931499938964844e+02, 2.93149794921875e+02, 2.951055792236328e+02, 2.931499938964844e+02, 2.931498321533203e+02, 3.001507995605469e+02, 2.931499938964844e+02, 3.001497033291176e+02, 2.950564605712891e+02, 2.931499633789062e+02] -Room.starRoom.T=[2.894175109863281e+02, 3.066550909423828e+02, 2.899986535644532e+02, 2.909926525878906e+02, 3.098349047851563e+02, 2.902156616210938e+02, 2.910444274902344e+02, 2.921708966064453e+02, 2.892741723632813e+02, 2.942153076171875e+02, 3.085876220703125e+02, 2.904677880859375e+02, 2.971020678710938e+02, 2.903962811279297e+02, 2.900385864257813e+02, 3.015668182373047e+02, 3.001721129502266e+02, 2.904168505859375e+02, 3.029671948242187e+02, 2.923449676513672e+02, 2.907537475585938e+02, 3.014916754150391e+02, 2.901010241699219e+02, 2.917753265380859e+02, 3.083528601074219e+02, 2.912404327392578e+02, 2.91912333984375e+02, 3.051722143554687e+02, 2.905322875976562e+02, 2.955082043457031e+02, 3.030625732421875e+02, 2.917079431152344e+02, 2.991618176269531e+02, 2.982602185058594e+02, 2.920517944335937e+02, 2.995682067871094e+02, 2.937745246115695e+02, 2.933673015887921e+02, 3.000645735891242e+02, 2.923420989990234e+02, 2.941319631776677e+02, 3.011146954345703e+02, 2.923223718261719e+02, 2.974019537353516e+02, 2.93001513671875e+02, 2.965940216064453e+02, 2.927305017089844e+02, 2.998670374609816e+02, 2.935884753417969e+02, 2.989314892578125e+02, 3.04048095703125e+02, 2.922010473632812e+02, 3.007776953125e+02, 2.988697930908203e+02, 2.946100598144531e+02, 3.012830596923828e+02, 2.98365029296875e+02, 2.981026214599609e+02, 3.016079772949219e+02, 2.948134942626953e+02, 2.949065368985414e+02, 3.028943194580078e+02, 2.930142919921875e+02, 2.977733532714844e+02, 3.059258178710937e+02, 2.927291931152344e+02, 2.998419165039062e+02, 3.091772790527344e+02, 2.925226428222657e+02, 2.997593341064453e+02, 3.094220336914062e+02, 2.916631427001953e+02, 2.991124780273437e+02, 3.070709704589844e+02, 2.914783898925782e+02, 2.917167053222656e+02, 3.044210778808594e+02, 2.909178918457031e+02, 3.019650659179687e+02, 2.984282928466797e+02, 2.917934753417969e+02, 3.071708282470703e+02, 2.928596377615201e+02, 2.907517163085938e+02, 3.085866418457031e+02, 2.906755859375e+02, 2.915903601074219e+02, 3.021211590576172e+02, 2.901231921386719e+02, 2.939312060546875e+02, 3.120639099121094e+02, 2.91844853515625e+02, 2.916475354003906e+02, 2.953449517822266e+02, 2.902406005859375e+02, 2.915617828369141e+02, 3.038673413085937e+02, 2.902273797607422e+02, 3.003033236144019e+02, 2.956252789306641e+02, 2.904396057128906e+02] -TransmittedSolarRadiation_room=[0e+00, 1.130982191085815e+01, 2.615988693237305e+01, 4.389689636230469e+01, 5.918927490234375e+01, 7.433139038085938e+01, 8.556211090087891e+01, 1.00380196685791e+02, 1.156235809326172e+02, 1.345729217529297e+02, 1.428001617431641e+02, 1.544971008300781e+02, 1.705389556884766e+02, 1.774753619384766e+02, 1.932667083740234e+02, 2.075320571899414e+02, 2.213040864883368e+02, 2.36403076171875e+02, 2.496841900634766e+02, 2.609826892089844e+02, 2.750802001953125e+02, 2.882548791503907e+02, 2.998580444335938e+02, 3.089207153320312e+02, 3.219262353515625e+02, 3.322915649414062e+02, 3.404412841796875e+02, 3.503600775146484e+02, 3.563272094726562e+02, 3.649127502441406e+02, 3.725961486816406e+02, 3.801080932617188e+02, 3.884555358886719e+02, 3.934139685058594e+02, 4.005307312011719e+02, 4.054465026855469e+02, 4.083111001003994e+02, 4.135261535644531e+02, 4.186993713378906e+02, 4.223112243652344e+02, 4.269131774902344e+02, 4.303471606445312e+02, 4.334091796875e+02, 4.371559143066406e+02, 4.396151599121094e+02, 4.423662414550781e+02, 4.452620239257812e+02, 4.481209026534724e+02, 4.508327331542969e+02, 4.544273071289062e+02, 4.576372985839844e+02, 4.6006591796875e+02, 4.634557189941406e+02, 4.661265557861328e+02, 4.697409362792969e+02, 4.742548828125e+02, 4.778906201171875e+02, 4.828898620605469e+02, 4.881227954101562e+02, 4.913787841796875e+02, 4.974002380371094e+02, 5.027829534912109e+02, 5.070521301269531e+02, 5.151240844726562e+02, 5.222662963867188e+02, 5.2846435546875e+02, 5.384725952148438e+02, 5.47475546875e+02, 5.567747192382812e+02, 5.671541137695312e+02, 5.774833618164063e+02, 5.8608642578125e+02, 5.974430541992188e+02, 6.097798352050781e+02, 6.212833251953125e+02, 6.346991577148438e+02, 6.481209155273438e+02, 6.602008056640625e+02, 6.73071572265625e+02, 6.872085205078125e+02, 7.05222412109375e+02, 7.225485083007812e+02, 7.355734511553231e+02, 7.496284790039062e+02, 7.629989526367187e+02, 7.775289306640625e+02, 7.925514526367188e+02, 8.022919641113281e+02, 8.1573974609375e+02, 8.33860595703125e+02, 8.470681884765625e+02, 8.581065063476562e+02, 8.684361572265625e+02, 8.816054040527343e+02, 8.931883544921875e+02, 9.103551635742188e+02, 9.255025439453125e+02, 9.4026806640625e+02, 9.567460593301741e+02, 9.70396083984375e+02, 9.888606567382812e+02] +Room.thermRoom.T=[2.941499938964844e+02, 3.001503283691407e+02, 2.931500073242187e+02, 2.931499224853516e+02, 3.001498596191406e+02, 2.931499938964844e+02, 2.931498510742188e+02, 2.931505847167969e+02, 2.931499938964844e+02, 2.944107586669922e+02, 3.001503356933594e+02, 2.931499633789062e+02, 2.972857348632813e+02, 2.931500244140625e+02, 2.931499938964844e+02, 3.00149560546875e+02, 2.995238424272679e+02, 2.931499633789062e+02, 3.001495373535156e+02, 2.931502490234375e+02, 2.931499755859375e+02, 3.001498107910156e+02, 2.9315001953125e+02, 2.931499633789062e+02, 3.001498547363281e+02, 2.931500244140625e+02, 2.931498852539062e+02, 3.001502435302734e+02, 2.931499938964844e+02, 2.956891973876953e+02, 3.001503295898438e+02, 2.931499633789062e+02, 2.99289501953125e+02, 2.978548266601563e+02, 2.931499633789062e+02, 2.99684033203125e+02, 2.936464825919505e+02, 2.935069874472642e+02, 3.001167217053865e+02, 2.931501336669922e+02, 2.942694030067261e+02, 3.001498419189453e+02, 2.931500549316406e+02, 2.975321478271484e+02, 2.931499938964844e+02, 2.966551971435547e+02, 2.931499060058593e+02, 2.997242348658206e+02, 2.936967517089844e+02, 2.990310443115234e+02, 3.001501159667969e+02, 2.931499938964844e+02, 3.001499633789062e+02, 2.985981524658203e+02, 2.947312463378906e+02, 3.001499328613281e+02, 2.980586376953125e+02, 2.981884704589844e+02, 3.001498571777344e+02, 2.946659252929687e+02, 2.950118980667926e+02, 3.001496148681641e+02, 2.931500744628906e+02, 2.978675579833985e+02, 3.001498059082031e+02, 2.931500244140625e+02, 2.999077905273438e+02, 3.00150009765625e+02, 2.931499621582032e+02, 2.998432928466797e+02, 3.001501708984375e+02, 2.931499938964844e+02, 2.992579748535156e+02, 3.001503851318359e+02, 2.931499719238281e+02, 2.9314990234375e+02, 3.001506384277343e+02, 2.931500244140625e+02, 3.001496728515625e+02, 2.978796740722656e+02, 2.93149951171875e+02, 3.001495275878906e+02, 2.931503389002913e+02, 2.931499633789062e+02, 3.001498291015625e+02, 2.931499938964844e+02, 2.931498974609375e+02, 3.001503955078125e+02, 2.931499938964844e+02, 2.941158966064453e+02, 3.001501892089844e+02, 2.931499938964844e+02, 2.93149794921875e+02, 2.951006518554688e+02, 2.931499938964844e+02, 2.931498352050781e+02, 3.001508032226562e+02, 2.931499938964844e+02, 3.001497033291176e+02, 2.950480615234375e+02, 2.931499633789062e+02] +Room.starRoom.T=[2.894175109863281e+02, 3.066549517822266e+02, 2.899986401367187e+02, 2.909935705566406e+02, 3.09834755859375e+02, 2.902157775878906e+02, 2.910459313964844e+02, 2.921709271240234e+02, 2.892741723632813e+02, 2.942212957763672e+02, 3.085866882324219e+02, 2.904678186035156e+02, 2.971053063964844e+02, 2.903962811279297e+02, 2.900386755371094e+02, 3.015668792724609e+02, 3.001649446330104e+02, 2.904169885253907e+02, 3.029670739746094e+02, 2.923450787353515e+02, 2.907539978027344e+02, 3.01491572265625e+02, 2.901010595703125e+02, 2.917761950683594e+02, 3.083526416015625e+02, 2.912404327392578e+02, 2.919143029785157e+02, 3.051711492919922e+02, 2.905322875976562e+02, 2.955126519775391e+02, 3.030602905273437e+02, 2.917082702636719e+02, 2.991628771972656e+02, 2.982545959472656e+02, 2.9205236328125e+02, 2.995687835693359e+02, 2.937737383553151e+02, 2.933724269303127e+02, 3.000646121376439e+02, 2.923421295166016e+02, 2.941365161611217e+02, 3.011143920898438e+02, 2.923224487304688e+02, 2.974044390869141e+02, 2.93001513671875e+02, 2.965959686279297e+02, 2.927327685546875e+02, 2.998602296282243e+02, 2.935928125e+02, 2.98932734375e+02, 3.040477905273438e+02, 2.922010540771485e+02, 3.007777087402344e+02, 2.988642291259766e+02, 2.946140930175781e+02, 3.01283056640625e+02, 2.983628466796875e+02, 2.981043377685547e+02, 3.016079699707032e+02, 2.948147595214843e+02, 2.949103227019473e+02, 3.028943676757813e+02, 2.930144665527343e+02, 2.97775341796875e+02, 3.059256750488281e+02, 2.927296142578125e+02, 2.998422424316406e+02, 3.091772485351563e+02, 2.925239526367188e+02, 2.997596691894531e+02, 3.094215881347656e+02, 2.916633489990234e+02, 2.991136730957031e+02, 3.070698040771484e+02, 2.914785864257813e+02, 2.917182312011719e+02, 3.044183447265625e+02, 2.909178918457031e+02, 3.019648620605469e+02, 2.984222741699219e+02, 2.917944580078125e+02, 3.07170767211914e+02, 2.928596636238745e+02, 2.90752134399414e+02, 3.085865209960937e+02, 2.906755859375e+02, 2.91591865234375e+02, 3.02117680053711e+02, 2.9012322265625e+02, 2.939368621826172e+02, 3.12063671875e+02, 2.91844853515625e+02, 2.9164994140625e+02, 2.953426037597656e+02, 2.902406311035156e+02, 2.915638977050781e+02, 3.03864072265625e+02, 2.902274810791016e+02, 3.003033236144019e+02, 2.956224328613282e+02, 2.904397583007812e+02] +TransmittedSolarRadiation_room=[0e+00, 1.130976425170898e+01, 2.615992042541504e+01, 4.389690780639648e+01, 5.918927536010742e+01, 7.433134460449219e+01, 8.556208801269531e+01, 1.003801245117187e+02, 1.156235656738281e+02, 1.345728912353516e+02, 1.428001770019531e+02, 1.544969940185547e+02, 1.705388336181641e+02, 1.774751940917969e+02, 1.932666473388672e+02, 2.075320114135742e+02, 2.213039715954945e+02, 2.364029388427734e+02, 2.496840533447265e+02, 2.609826586914062e+02, 2.750802307128906e+02, 2.882550012207032e+02, 2.998581665039063e+02, 3.089208984375e+02, 3.21926357421875e+02, 3.322917175292969e+02, 3.404415893554688e+02, 3.503603826904297e+02, 3.563274230957031e+02, 3.649129638671875e+02, 3.725963623046875e+02, 3.80108154296875e+02, 3.884555969238281e+02, 3.934140600585937e+02, 4.005308227539062e+02, 4.054465942382812e+02, 4.083111916531338e+02, 4.135262451171875e+02, 4.186994323730469e+02, 4.223114379882812e+02, 4.269134216308594e+02, 4.303474041748047e+02, 4.334093933105469e+02, 4.371560974121094e+02, 4.396153527832032e+02, 4.423664855957031e+02, 4.452622985839844e+02, 4.481211148356966e+02, 4.508329162597656e+02, 4.544275512695312e+02, 4.576375122070312e+02, 4.600661010742188e+02, 4.634558715820312e+02, 4.661267083740235e+02, 4.697411499023438e+02, 4.742550964355469e+02, 4.778908337402344e+02, 4.828900451660156e+02, 4.881230090332031e+02, 4.913789672851562e+02, 4.974003601074219e+02, 5.027831188964844e+02, 5.070522827148437e+02, 5.151240234375e+02, 5.222662353515625e+02, 5.284642333984375e+02, 5.384724731445312e+02, 5.47475302734375e+02, 5.567744750976562e+02, 5.671541748046875e+02, 5.77483544921875e+02, 5.860867309570312e+02, 5.97443359375e+02, 6.097801403808594e+02, 6.212835693359375e+02, 6.34699462890625e+02, 6.481211157226562e+02, 6.602008666992188e+02, 6.730716333007813e+02, 6.87208642578125e+02, 7.052225341796875e+02, 7.225485693359375e+02, 7.355735121904794e+02, 7.496284790039062e+02, 7.62999013671875e+02, 7.775288696289062e+02, 7.925513916015625e+02, 8.022919116210937e+02, 8.1573974609375e+02, 8.33860595703125e+02, 8.470681762695312e+02, 8.581063232421875e+02, 8.68436279296875e+02, 8.816054650878906e+02, 8.931884765625e+02, 9.103553466796875e+02, 9.255027270507812e+02, 9.402682495117188e+02, 9.567460699362833e+02, 9.703960974121094e+02, 9.888606567382812e+02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case395.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case395.txt index c5ee87176c..73a1bcfcf0 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case395.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case395.txt @@ -1,20 +1,20 @@ -last-generated=2021-05-25 +last-generated=2022-03-16 statistics-simulation= { "linear": "0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0", "nonlinear": "13", - "number of continuous time states": "23", + "number of continuous time states": "25", "numerical Jacobians": "0" } time=[0e+00, 3.15396e+07] checkResultsAccordingToASHRAEHeatingOrTempMax.lowerLimit=[4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03, 4.799e+03] -AnnualHeatingLoad=[0e+00, 1.41659235534668e+02, 2.372674310302734e+02, 3.076393963623047e+02, 3.886146313476563e+02, 4.771178131103516e+02, 5.962966845703126e+02, 6.660646911621094e+02, 7.542983154296875e+02, 8.530315624999999e+02, 9.757871704101562e+02, 1.069702841796875e+03, 1.133707456054688e+03, 1.235686086425781e+03, 1.331320087890625e+03, 1.42422880859375e+03, 1.496568022460938e+03, 1.5881337109375e+03, 1.68688505859375e+03, 1.771238918457031e+03, 1.830134130859375e+03, 1.903513737792969e+03, 1.971605830078125e+03, 2.043367307128906e+03, 2.085052490234375e+03, 2.125269165039062e+03, 2.199831201171875e+03, 2.247991611328125e+03, 2.29737443359375e+03, 2.366065209960937e+03, 2.398011474609375e+03, 2.43272939453125e+03, 2.4453466796875e+03, 2.493197338867188e+03, 2.53113978515625e+03, 2.572763916015625e+03, 2.613967958984375e+03, 2.6423173828125e+03, 2.64953759765625e+03, 2.667510908203125e+03, 2.678742612508395e+03, 2.703657470703125e+03, 2.720094033203125e+03, 2.72821630859375e+03, 2.7558812109375e+03, 2.775946533203125e+03, 2.787417607421875e+03, 2.800829345703125e+03, 2.809455078125e+03, 2.81103125e+03, 2.811129150390625e+03, 2.821362470703125e+03, 2.827834716796875e+03, 2.828318603515625e+03, 2.830244140625e+03, 2.830341796875e+03, 2.830341796875e+03, 2.8303623046875e+03, 2.8303623046875e+03, 2.8303623046875e+03, 2.83070703125e+03, 2.83813134765625e+03, 2.841933622472427e+03, 2.8419423828125e+03, 2.851030029296875e+03, 2.858870458984375e+03, 2.858992431640625e+03, 2.85918017578125e+03, 2.864946044921875e+03, 2.866794921875e+03, 2.882448486328125e+03, 2.899595512695313e+03, 2.924818310546875e+03, 2.953681650390625e+03, 2.98411859375e+03, 3.011054077148438e+03, 3.054763984375e+03, 3.086450649414062e+03, 3.132004931640625e+03, 3.169645336914063e+03, 3.203906982421875e+03, 3.240136752929688e+03, 3.29067408203125e+03, 3.36064828125e+03, 3.4444328515625e+03, 3.513688159179687e+03, 3.57193625e+03, 3.649682641601562e+03, 3.72424513671875e+03, 3.794356079101562e+03, 3.88043125e+03, 3.948592094726563e+03, 4.019552861328125e+03, 4.114484619140625e+03, 4.23610826171875e+03, 4.337412890625e+03, 4.44815046875e+03, 4.516748115234375e+03, 4.58146779296875e+03, 4.65461224609375e+03, 4.74164892578125e+03] +AnnualHeatingLoad=[0e+00, 1.41658518371582e+02, 2.372666223144531e+02, 3.076387860107422e+02, 3.886141162109375e+02, 4.771173858642578e+02, 5.962963793945313e+02, 6.660643249511719e+02, 7.54298193359375e+02, 8.530315002441406e+02, 9.757876586914062e+02, 1.069703208007812e+03, 1.13370869140625e+03, 1.235688649902344e+03, 1.3313230078125e+03, 1.424231494140625e+03, 1.496570708007813e+03, 1.588136518554687e+03, 1.686888110351563e+03, 1.771241704101562e+03, 1.830136450195313e+03, 1.903516057128906e+03, 1.971608413085937e+03, 2.043368405761719e+03, 2.0850517578125e+03, 2.12526904296875e+03, 2.199829912109375e+03, 2.247990146484375e+03, 2.297372724609375e+03, 2.36606365234375e+03, 2.398009423828125e+03, 2.432728129882812e+03, 2.445343505859375e+03, 2.49319349609375e+03, 2.53113576171875e+03, 2.572760009765625e+03, 2.613964052734375e+03, 2.64231298828125e+03, 2.64952978515625e+03, 2.667500756835937e+03, 2.678730183250533e+03, 2.70364453125e+03, 2.720078896484375e+03, 2.72819873046875e+03, 2.755861923828125e+03, 2.775927001953125e+03, 2.787395390625e+03, 2.800804931640625e+03, 2.80942919921875e+03, 2.811001708984375e+03, 2.811097900390625e+03, 2.82132951171875e+03, 2.827801025390625e+03, 2.828283935546875e+03, 2.830208984375e+03, 2.8303046875e+03, 2.8303046875e+03, 2.83032373046875e+03, 2.83032373046875e+03, 2.83032373046875e+03, 2.830667236328125e+03, 2.83808935546875e+03, 2.8418880859375e+03, 2.841895263671875e+03, 2.850981201171875e+03, 2.858819287109375e+03, 2.858939208984375e+03, 2.859126220703125e+03, 2.864886962890625e+03, 2.866730224609375e+03, 2.88238134765625e+03, 2.899526665039063e+03, 2.924747225674716e+03, 2.953609873046875e+03, 2.984045107421875e+03, 3.010978637695312e+03, 3.0546878125e+03, 3.086373271484375e+03, 3.1319275390625e+03, 3.169567211914063e+03, 3.203827490234375e+03, 3.240056674804688e+03, 3.29059400390625e+03, 3.360568383789062e+03, 3.44435326171875e+03, 3.513608251953125e+03, 3.571856416015625e+03, 3.649602563476562e+03, 3.72416521484375e+03, 3.794276489257812e+03, 3.880351220703125e+03, 3.948512021484375e+03, 4.01947296875e+03, 4.114404765625e+03, 4.23602818359375e+03, 4.33733330078125e+03, 4.44807087890625e+03, 4.516669013671875e+03, 4.58138896484375e+03, 4.6545336328125e+03, 4.74157275390625e+03] checkResultsAccordingToASHRAEHeatingOrTempMax.upperLimit=[5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03, 5.835e+03] checkResultsAccordingToASHRAECoolingOrTempMin.lowerLimit=[-1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01, -1.8e+01] -AnnualCoolingLoad=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -4.132972285151482e-02, -2.658535242080688e+00, -4.326797962188721e+00, -4.609379558563233e+00, -5.465463638305664e+00, -5.465463638305664e+00, -5.986809539794922e+00, -8.562186241149902e+00, -1.270483684539795e+01, -1.422260135650635e+01, -1.444482326507568e+01, -1.444482326507568e+01, -1.444482326507568e+01, -1.444482326507568e+01, -1.586310005187988e+01, -1.586310005187988e+01, -1.586310005187988e+01, -1.626572608947754e+01, -1.626572608947754e+01, -1.701922416687012e+01, -1.701922416687012e+01, -1.701922416687012e+01, -1.701922416687012e+01, -1.701922416687012e+01, -1.701922416687012e+01, -1.701922416687012e+01, -1.701922416687012e+01, -1.701922416687012e+01, -1.701922416687012e+01, -1.701922416687012e+01, -1.701922416687012e+01, -1.701922416687012e+01, -1.701922416687012e+01, -1.701922416687012e+01, -1.701922416687012e+01, -1.701922416687012e+01, -1.701922416687012e+01, -1.701922416687012e+01, -1.701922416687012e+01, -1.701922416687012e+01, -1.701922416687012e+01, -1.701922416687012e+01, -1.701922416687012e+01, -1.701922416687012e+01, -1.701922416687012e+01, -1.701922416687012e+01, -1.701922416687012e+01, -1.701922416687012e+01, -1.701922416687012e+01, -1.701922416687012e+01, -1.701922416687012e+01, -1.701922416687012e+01] +AnnualCoolingLoad=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -4.005859792232513e-02, -2.652419328689575e+00, -4.319765090942383e+00, -4.600459842681885e+00, -5.45529317855835e+00, -5.45529317855835e+00, -5.974992799758911e+00, -8.546747207641602e+00, -1.268557167053223e+01, -1.420126556396484e+01, -1.442343902587891e+01, -1.442343902587891e+01, -1.442343902587891e+01, -1.442343902587891e+01, -1.583911609649658e+01, -1.583911609649658e+01, -1.583911609649658e+01, -1.623816871643066e+01, -1.623816871643066e+01, -1.699011611938477e+01, -1.699011611938477e+01, -1.699011611938477e+01, -1.699011611938477e+01, -1.699011611938477e+01, -1.699011611938477e+01, -1.699011611938477e+01, -1.699011611938477e+01, -1.699011611938477e+01, -1.699011611938477e+01, -1.699011611938477e+01, -1.699011611938477e+01, -1.699011611938477e+01, -1.699011611938477e+01, -1.699011611938477e+01, -1.699011611938477e+01, -1.699011611938477e+01, -1.699011611938477e+01, -1.699011611938477e+01, -1.699011611938477e+01, -1.699011611938477e+01, -1.699011611938477e+01, -1.699011611938477e+01, -1.699011611938477e+01, -1.699011611938477e+01, -1.699011611938477e+01, -1.699011611938477e+01, -1.699011611938477e+01, -1.699011611938477e+01, -1.699011611938477e+01, -1.699011611938477e+01, -1.699011611938477e+01, -1.699011611938477e+01] checkResultsAccordingToASHRAECoolingOrTempMin.upperLimit=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] checkResultsAccordingToASHRAEHeatingOrTempMax.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] checkResultsAccordingToASHRAECoolingOrTempMin.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00] -Room.thermRoom.T=[2.941499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931500103759765e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931500549316406e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931500024414062e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931500122070312e+02, 2.931499938964844e+02, 2.941627172851562e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.934672698974609e+02, 2.931500244140625e+02, 2.934046052631579e+02, 2.942076831054687e+02, 2.931500549316406e+02, 2.931499058546218e+02, 2.937327014160156e+02, 2.931500244140625e+02, 2.961436102294922e+02, 2.931500244140625e+02, 2.966178771972656e+02, 2.931499938964844e+02, 2.932160522460937e+02, 2.94895693359375e+02, 2.987674456787109e+02, 2.996963806152344e+02, 2.931499938964844e+02, 3.001499938964844e+02, 2.9391466796875e+02, 2.960269091796875e+02, 3.001499908447266e+02, 2.963668395996094e+02, 2.987953845214844e+02, 3.001499865722656e+02, 2.9428478515625e+02, 2.946524095314099e+02, 3.000093341064453e+02, 2.931500244140625e+02, 2.969313079833984e+02, 2.944590393066406e+02, 2.931499938964844e+02, 2.989012609863281e+02, 2.989492022705078e+02, 2.936055590820313e+02, 2.986703521728516e+02, 2.945173522949219e+02, 2.931499938964844e+02, 2.931500305175781e+02, 2.931500531005859e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931500549316406e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931500549316406e+02, 2.931499938964844e+02, 2.931499993896484e+02, 2.931499951171875e+02, 2.931499938964844e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.931499914550781e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499761962891e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931500549316406e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931500549316406e+02, 2.931499938964844e+02] -Room.starRoom.T=[2.897989501953125e+02, 2.901707946777344e+02, 2.90991005859375e+02, 2.913756170654297e+02, 2.910259692382813e+02, 2.911682739257812e+02, 2.91083330078125e+02, 2.913005749511719e+02, 2.904599365234375e+02, 2.915293115234375e+02, 2.910512817382813e+02, 2.913299627685547e+02, 2.922460766601562e+02, 2.908842590332031e+02, 2.910461413574219e+02, 2.925835418701172e+02, 2.918880053710938e+02, 2.912460034179687e+02, 2.911884204101563e+02, 2.915148236083984e+02, 2.914165405273437e+02, 2.914993072509766e+02, 2.9103115234375e+02, 2.919592413330078e+02, 2.92783173828125e+02, 2.918438720703125e+02, 2.917425500488282e+02, 2.930569677734375e+02, 2.914041320800781e+02, 2.924035607910157e+02, 2.923752685546875e+02, 2.921557531738281e+02, 2.941473120117187e+02, 2.920871954345703e+02, 2.923439611816406e+02, 2.934638061523438e+02, 2.923663525390625e+02, 2.933475119339793e+02, 2.942052844238281e+02, 2.924457244873047e+02, 2.929084994271492e+02, 2.937563122558594e+02, 2.925719421386719e+02, 2.961035498046875e+02, 2.921377465820312e+02, 2.966035095214844e+02, 2.925140783691406e+02, 2.932295001220703e+02, 2.948444128417969e+02, 2.987346667480469e+02, 2.99754150390625e+02, 2.925254724121094e+02, 3.004130578613281e+02, 2.939454010009766e+02, 2.959711840820312e+02, 3.006098754882813e+02, 2.964112927246094e+02, 2.987640173339844e+02, 3.004987365722656e+02, 2.943080816650391e+02, 2.946166264844949e+02, 2.999825921630859e+02, 2.931297697179457e+02, 2.969063482666016e+02, 2.94491181640625e+02, 2.930793853759766e+02, 2.988885729980469e+02, 2.990061065673828e+02, 2.935540356445313e+02, 2.986511254882813e+02, 2.945753051757812e+02, 2.921302508544922e+02, 2.931169799804687e+02, 2.927506604003906e+02, 2.919965832519531e+02, 2.916190795898438e+02, 2.926504833984375e+02, 2.916089569091797e+02, 2.929513940429687e+02, 2.922003625488281e+02, 2.9200673828125e+02, 2.928999993896484e+02, 2.9195916015625e+02, 2.913198297119141e+02, 2.915245178222656e+02, 2.913940124511719e+02, 2.916516870117188e+02, 2.914204370117188e+02, 2.910807482910157e+02, 2.920394360351563e+02, 2.931226684570312e+02, 2.922926373291016e+02, 2.910058764648438e+02, 2.913913580322265e+02, 2.911651745605469e+02, 2.912022705078125e+02, 2.912975305175781e+02, 2.911375952148438e+02, 2.919150402832031e+02, 2.907854290771484e+02, 2.912313232421875e+02] +Room.thermRoom.T=[2.941499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931500103759765e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931500549316406e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931500024414062e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931500122070312e+02, 2.931499938964844e+02, 2.941622412109375e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.934670288085937e+02, 2.931500244140625e+02, 2.934069978896886e+02, 2.942070031738281e+02, 2.931500549316406e+02, 2.931499277686349e+02, 2.937316619873047e+02, 2.931500244140625e+02, 2.961432879638672e+02, 2.931500244140625e+02, 2.966178649902344e+02, 2.931499938964844e+02, 2.932157757568359e+02, 2.948983288574219e+02, 2.987669140625e+02, 2.996941223144531e+02, 2.931499938964844e+02, 3.001499938964844e+02, 2.939134588623047e+02, 2.960297106933594e+02, 3.001499908447266e+02, 2.963676391601563e+02, 2.987971502685547e+02, 3.001499865722656e+02, 2.942855236816406e+02, 2.946544868916802e+02, 3.000061016845703e+02, 2.931500244140625e+02, 2.969314349365234e+02, 2.944572058105469e+02, 2.931499938964844e+02, 2.98898857421875e+02, 2.989463903808594e+02, 2.936090283203125e+02, 2.986677990722656e+02, 2.945149841308594e+02, 2.931499938964844e+02, 2.931500022194602e+02, 2.931500531005859e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931500549316406e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931500549316406e+02, 2.931499938964844e+02, 2.931499993896484e+02, 2.931499951171875e+02, 2.931499938964844e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.931499914550781e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499761962891e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931500549316406e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931500549316406e+02, 2.931499938964844e+02] +Room.starRoom.T=[2.897989501953125e+02, 2.901707946777344e+02, 2.90991005859375e+02, 2.913756170654297e+02, 2.910259692382813e+02, 2.911682739257812e+02, 2.9108333984375e+02, 2.91300591430664e+02, 2.904599365234375e+02, 2.915293115234375e+02, 2.910512817382813e+02, 2.913299627685547e+02, 2.922460961914063e+02, 2.908842590332031e+02, 2.910461413574219e+02, 2.925835205078125e+02, 2.918880053710938e+02, 2.912460034179687e+02, 2.911884204101563e+02, 2.915148236083984e+02, 2.914165405273437e+02, 2.914993072509766e+02, 2.9103115234375e+02, 2.919592700195312e+02, 2.92783173828125e+02, 2.918438720703125e+02, 2.917425500488282e+02, 2.930569696044922e+02, 2.914041320800781e+02, 2.924035607910157e+02, 2.923752685546875e+02, 2.921557531738281e+02, 2.941466479492187e+02, 2.920871954345703e+02, 2.923439611816406e+02, 2.934635528564453e+02, 2.923663525390625e+02, 2.933490755264073e+02, 2.942045629882812e+02, 2.924457244873047e+02, 2.929088597737733e+02, 2.937556384277344e+02, 2.925719189453125e+02, 2.961026361083984e+02, 2.921377465820312e+02, 2.966032867431641e+02, 2.925140783691406e+02, 2.932293872070313e+02, 2.948462451171875e+02, 2.987336535644531e+02, 2.997527770996094e+02, 2.925254724121094e+02, 3.0041255859375e+02, 2.939446392822265e+02, 2.959731616210938e+02, 3.006095489501953e+02, 2.964127014160156e+02, 2.987653063964844e+02, 3.004986682128906e+02, 2.943091839599609e+02, 2.946181550695984e+02, 2.999790661621093e+02, 2.931304036458333e+02, 2.96906078491211e+02, 2.944898291015625e+02, 2.930809020996094e+02, 2.988860302734375e+02, 2.990041186523438e+02, 2.935567126464844e+02, 2.986483117675782e+02, 2.945737854003906e+02, 2.921302508544922e+02, 2.931172096946023e+02, 2.927506604003906e+02, 2.919965832519531e+02, 2.916190643310547e+02, 2.926504919433594e+02, 2.916089569091797e+02, 2.929514196777343e+02, 2.922003509521484e+02, 2.920067687988281e+02, 2.928999993896484e+02, 2.919591003417969e+02, 2.913198297119141e+02, 2.915245031738281e+02, 2.913940124511719e+02, 2.916516870117188e+02, 2.914204370117188e+02, 2.910807482910157e+02, 2.920394232177734e+02, 2.931226684570312e+02, 2.922926373291016e+02, 2.910058764648438e+02, 2.913913415527344e+02, 2.911651745605469e+02, 2.912022705078125e+02, 2.912975305175781e+02, 2.911375952148438e+02, 2.919150268554687e+02, 2.907854357910156e+02, 2.912313232421875e+02] TransmittedSolarRadiation_room=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case400.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case400.txt index 2d6a5e8633..adabd80e89 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case400.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case400.txt @@ -1,20 +1,20 @@ -last-generated=2021-05-25 +last-generated=2022-07-06 statistics-simulation= { "linear": "0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0", "nonlinear": "13", - "number of continuous time states": "23", + "number of continuous time states": "25", "numerical Jacobians": "0" } time=[0e+00, 3.15396e+07] checkResultsAccordingToASHRAEHeatingOrTempMax.lowerLimit=[6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03, 6.9e+03] -AnnualHeatingLoad=[0e+00, 2.143589263916016e+02, 3.58423466796875e+02, 4.64552318725586e+02, 5.868389868164063e+02, 7.204748657226562e+02, 9.004015600585938e+02, 1.005837935791016e+03, 1.139516577148438e+03, 1.28792337890625e+03, 1.472328442382812e+03, 1.612952407226562e+03, 1.70905849609375e+03, 1.861711433105469e+03, 2.006023935546875e+03, 2.14566083984375e+03, 2.25465140625e+03, 2.391904047851563e+03, 2.54069228515625e+03, 2.666003627929687e+03, 2.7547578125e+03, 2.86589072265625e+03, 2.96823169921875e+03, 3.0744708203125e+03, 3.136776337890625e+03, 3.1981015625e+03, 3.3105677734375e+03, 3.382628012695312e+03, 3.456750185546875e+03, 3.560141196289062e+03, 3.60841640625e+03, 3.660772607421875e+03, 3.680958984375e+03, 3.753302192382812e+03, 3.810528779296875e+03, 3.87265234375e+03, 3.93378552734375e+03, 3.97648541015625e+03, 3.98951318359375e+03, 4.017846391601563e+03, 4.03620477225476e+03, 4.07339208984375e+03, 4.09969669921875e+03, 4.11333984375e+03, 4.1560166796875e+03, 4.18637841796875e+03, 4.2052566015625e+03, 4.22628662109375e+03, 4.2401064453125e+03, 4.24448583984375e+03, 4.24566357421875e+03, 4.261851455078125e+03, 4.27221630859375e+03, 4.27359326171875e+03, 4.27728955078125e+03, 4.27956982421875e+03, 4.27956982421875e+03, 4.280431640625e+03, 4.28055712890625e+03, 4.28055712890625e+03, 4.28246728515625e+03, 4.29442822265625e+03, 4.30218462890625e+03, 4.30332861328125e+03, 4.3182265625e+03, 4.331609228515625e+03, 4.33346044921875e+03, 4.334822265625e+03, 4.34641759765625e+03, 4.35229248046875e+03, 4.37722265625e+03, 4.403927705078125e+03, 4.44283810546875e+03, 4.486426787109375e+03, 4.533237265625e+03, 4.57494921875e+03, 4.64092296875e+03, 4.68904009765625e+03, 4.756509765625e+03, 4.8133612109375e+03, 4.8658947265625e+03, 4.920578251953125e+03, 4.99624515625e+03, 5.101382431640625e+03, 5.22531876953125e+03, 5.3280669921875e+03, 5.414895625e+03, 5.530703154296875e+03, 5.64265111328125e+03, 5.74743294921875e+03, 5.87562646484375e+03, 5.97605140625e+03, 6.08150759765625e+03, 6.223138876953125e+03, 6.40478271484375e+03, 6.55644462890625e+03, 6.7216033203125e+03, 6.82433232421875e+03, 6.92081701171875e+03, 7.02971279296875e+03, 7.159873046875e+03] +AnnualHeatingLoad=[0e+00, 2.143581787109375e+02, 3.584226428222656e+02, 4.64551098022461e+02, 5.868380102539063e+02, 7.204745666503907e+02, 9.004019067382812e+02, 1.005836926269531e+03, 1.139515478515625e+03, 1.287922768554688e+03, 1.472328442382812e+03, 1.612952702636719e+03, 1.709058862304687e+03, 1.861711450195312e+03, 2.006023935546875e+03, 2.145659448242187e+03, 2.254648232421875e+03, 2.391901118164063e+03, 2.540689111328125e+03, 2.666000698242187e+03, 2.754755126953125e+03, 2.86588779296875e+03, 2.9682292578125e+03, 3.07446837890625e+03, 3.136772119140625e+03, 3.198097045898438e+03, 3.310568505859375e+03, 3.382629248046875e+03, 3.456751689453125e+03, 3.560144033203125e+03, 3.608418603515625e+03, 3.660774604492187e+03, 3.680958984375e+03, 3.753301948242187e+03, 3.810528046875e+03, 3.872652099609375e+03, 3.933785263671875e+03, 3.976484189453125e+03, 3.9895078125e+03, 4.017838334960938e+03, 4.03619354178601e+03, 4.07338037109375e+03, 4.09968205078125e+03, 4.113322265625e+03, 4.155996171875e+03, 4.18635693359375e+03, 4.20523408203125e+03, 4.22626171875e+03, 4.2400791015625e+03, 4.24445458984375e+03, 4.24563037109375e+03, 4.261815703125e+03, 4.27217822265625e+03, 4.27355322265625e+03, 4.27724609375e+03, 4.27952099609375e+03, 4.27952099609375e+03, 4.2803818359375e+03, 4.28050537109375e+03, 4.28050537109375e+03, 4.28241162109375e+03, 4.2943701171875e+03, 4.3021226171875e+03, 4.30326416015625e+03, 4.3181591796875e+03, 4.33153828125e+03, 4.33338525390625e+03, 4.33474462890625e+03, 4.34633265625e+03, 4.352201171875e+03, 4.3771279296875e+03, 4.403831025390625e+03, 4.44273890625e+03, 4.486326689453125e+03, 4.5331353515625e+03, 4.57484423828125e+03, 4.64081701171875e+03, 4.68893267578125e+03, 4.75640185546875e+03, 4.8132528125e+03, 4.86578486328125e+03, 4.920467900390625e+03, 4.996133359375e+03, 5.10127146484375e+03, 5.2252076953125e+03, 5.32795615234375e+03, 5.41478572265625e+03, 5.53059322265625e+03, 5.64254271484375e+03, 5.7473250390625e+03, 5.8755185546875e+03, 5.97594251953125e+03, 6.08140115234375e+03, 6.223032919921875e+03, 6.4046766015625e+03, 6.556338671875e+03, 6.721496875e+03, 6.8242263671875e+03, 6.92071126953125e+03, 7.02960732421875e+03, 7.1597685546875e+03] checkResultsAccordingToASHRAEHeatingOrTempMax.upperLimit=[8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03, 8.77e+03] checkResultsAccordingToASHRAECoolingOrTempMin.lowerLimit=[-6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01, -6.1e+01] -AnnualCoolingLoad=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -1.249073422513902e-03, -1.377263426780701e+00, -6.920119762420654e+00, -9.564507484436035e+00, -1.07571907043457e+01, -1.224911022186279e+01, -1.26203031539917e+01, -1.422100410461426e+01, -1.89159049987793e+01, -2.635695457458496e+01, -2.953229629516602e+01, -2.978167915344238e+01, -3.005594062805176e+01, -3.066695594787598e+01, -3.085596084594727e+01, -3.418157196044922e+01, -3.418157196044922e+01, -3.420590972900391e+01, -3.605721282958984e+01, -3.687530136108398e+01, -3.837622451782227e+01, -3.862960815429688e+01, -3.862960815429688e+01, -3.862960815429688e+01, -3.862960815429688e+01, -3.862960815429688e+01, -3.862960815429688e+01, -3.862960815429688e+01, -3.862960815429688e+01, -3.862960815429688e+01, -3.862960815429688e+01, -3.862960815429688e+01, -3.862960815429688e+01, -3.862960815429688e+01, -3.862960815429688e+01, -3.862960815429688e+01, -3.862960815429688e+01, -3.862960815429688e+01, -3.862960815429688e+01, -3.862960815429688e+01, -3.862960815429688e+01, -3.862960815429688e+01, -3.862960815429688e+01, -3.862960815429688e+01, -3.862960815429688e+01, -3.862960815429688e+01, -3.862960815429688e+01, -3.862960815429688e+01, -3.862960815429688e+01, -3.862960815429688e+01, -3.862960815429688e+01, -3.862960815429688e+01, -3.862960815429688e+01] +AnnualCoolingLoad=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -5.624511977657676e-04, -1.37129008769989e+00, -6.907763004302979e+00, -9.551223754882812e+00, -1.074156463623047e+01, -1.223206520080566e+01, -1.259947395324707e+01, -1.419630241394043e+01, -1.888622856140137e+01, -2.632191467285156e+01, -2.94926050567627e+01, -2.974195289611816e+01, -3.001294326782227e+01, -3.062193298339844e+01, -3.080928993225098e+01, -3.412953186035156e+01, -3.412953186035156e+01, -3.415247344970703e+01, -3.599963760375977e+01, -3.681404876708984e+01, -3.831153106689453e+01, -3.856275939941406e+01, -3.856275939941406e+01, -3.856275939941406e+01, -3.856275939941406e+01, -3.856275939941406e+01, -3.856275939941406e+01, -3.856275939941406e+01, -3.856275939941406e+01, -3.856275939941406e+01, -3.856275939941406e+01, -3.856275939941406e+01, -3.856275939941406e+01, -3.856275939941406e+01, -3.856275939941406e+01, -3.856275939941406e+01, -3.856275939941406e+01, -3.856275939941406e+01, -3.856275939941406e+01, -3.856275939941406e+01, -3.856275939941406e+01, -3.856275939941406e+01, -3.856275939941406e+01, -3.856275939941406e+01, -3.856275939941406e+01, -3.856275939941406e+01, -3.856275939941406e+01, -3.856275939941406e+01, -3.856275939941406e+01, -3.856275939941406e+01, -3.856275939941406e+01, -3.856275939941406e+01, -3.856275939941406e+01] checkResultsAccordingToASHRAECoolingOrTempMin.upperLimit=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] checkResultsAccordingToASHRAEHeatingOrTempMax.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00] checkResultsAccordingToASHRAECoolingOrTempMin.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00] -Room.thermRoom.T=[2.941499938964844e+02, 2.931499633789062e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931500549316406e+02, 2.931499633789062e+02, 2.931499633789062e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931500549316406e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931500299072266e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931500244140625e+02, 2.931500396728516e+02, 2.931499938964844e+02, 2.931500549316406e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931500122070312e+02, 2.931499633789062e+02, 2.9416302734375e+02, 2.931500549316406e+02, 2.931499938964844e+02, 2.933989135742187e+02, 2.931500244140625e+02, 2.931499371337891e+02, 2.942943579101562e+02, 2.931500549316406e+02, 2.931499633789062e+02, 2.937952703857422e+02, 2.931500549316406e+02, 2.960454620361328e+02, 2.931500244140625e+02, 2.963834411621094e+02, 2.931499938964844e+02, 2.932060308837891e+02, 2.936151135253906e+02, 2.986448272705078e+02, 3.001500854492188e+02, 2.931499938964844e+02, 3.001499633789062e+02, 2.941173291015625e+02, 2.946497973632813e+02, 3.001499633789062e+02, 2.959312951660156e+02, 2.981238494873047e+02, 3.001499633789062e+02, 2.938197937011719e+02, 2.93757637721292e+02, 3.000583706828944e+02, 2.931500549316406e+02, 2.967581512451172e+02, 2.947275427246093e+02, 2.931500244140625e+02, 2.995544836425781e+02, 2.994790496826172e+02, 2.931499633789062e+02, 2.993913275146484e+02, 2.951116577148438e+02, 2.931499938964844e+02, 2.931499584960937e+02, 2.931500549316406e+02, 2.931499719238281e+02, 2.931499938964844e+02, 2.931500634765625e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.931500854492188e+02, 2.931499938964844e+02, 2.931499993896484e+02, 2.931499963378906e+02, 2.931499938964844e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.931499914550781e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931500244140625e+02, 2.931500036621094e+02, 2.931499938964844e+02, 2.931500854492188e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931500854492188e+02, 2.931499938964844e+02] -Room.starRoom.T=[2.894175109863281e+02, 2.88762269897461e+02, 2.899824536132812e+02, 2.904606176757812e+02, 2.899437182617187e+02, 2.902125793457031e+02, 2.900313452148437e+02, 2.904356372070313e+02, 2.892679919433594e+02, 2.906694598388672e+02, 2.900828552246094e+02, 2.904513543701172e+02, 2.916898205566406e+02, 2.89830503540039e+02, 2.900000891113281e+02, 2.921970092773437e+02, 2.913096313476562e+02, 2.903214880371094e+02, 2.901859924316406e+02, 2.907788403320312e+02, 2.905809692382812e+02, 2.906316668701172e+02, 2.900752136230469e+02, 2.913651696777344e+02, 2.924897229003906e+02, 2.912373199462891e+02, 2.910531762695313e+02, 2.930326043701172e+02, 2.905297802734375e+02, 2.919216107177734e+02, 2.919273803710938e+02, 2.916154028320312e+02, 2.941056372070312e+02, 2.915421252441406e+02, 2.918858471679687e+02, 2.933732849121094e+02, 2.91941259765625e+02, 2.924803387451172e+02, 2.942702331542969e+02, 2.921467315673828e+02, 2.924665477960058e+02, 2.938425543212891e+02, 2.923098449707031e+02, 2.959360461425781e+02, 2.916132055664062e+02, 2.963296844482422e+02, 2.921357702636719e+02, 2.932344769287109e+02, 2.935131030273437e+02, 2.985521325683594e+02, 3.004674682617188e+02, 2.922004162597656e+02, 3.006187097167969e+02, 2.941917791748047e+02, 2.945346350097656e+02, 3.008551300048828e+02, 2.960485559082031e+02, 2.980413037109375e+02, 3.006187268066406e+02, 2.938881024169922e+02, 2.936733860572721e+02, 2.999941467909557e+02, 2.929778833007812e+02, 2.966830816650391e+02, 2.947940051269532e+02, 2.927011810302735e+02, 2.994937426757813e+02, 2.996027282714844e+02, 2.924651318359375e+02, 2.993124603271484e+02, 2.952364990234375e+02, 2.916014086914063e+02, 2.928512646484375e+02, 2.924961492919922e+02, 2.913930505371094e+02, 2.90866943359375e+02, 2.924589038085937e+02, 2.90911860961914e+02, 2.928013391113281e+02, 2.918043896484375e+02, 2.914287231445313e+02, 2.926582702636719e+02, 2.913902380371094e+02, 2.904842724609375e+02, 2.907057238769531e+02, 2.906704681396484e+02, 2.908789831542969e+02, 2.905919140625e+02, 2.901182592773437e+02, 2.914102392578125e+02, 2.931005737304687e+02, 2.91834384765625e+02, 2.900133654785157e+02, 2.90583916015625e+02, 2.902232165527344e+02, 2.902445465087891e+02, 2.904780700683594e+02, 2.90173974609375e+02, 2.913139208984375e+02, 2.8984076171875e+02, 2.903420104980469e+02] +Room.thermRoom.T=[2.941499938964844e+02, 2.931499633789062e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931500549316406e+02, 2.931499633789062e+02, 2.931499633789062e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931500549316406e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931500299072266e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931500244140625e+02, 2.931500396728516e+02, 2.931499938964844e+02, 2.931500549316406e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931500122070312e+02, 2.931499633789062e+02, 2.941629833984375e+02, 2.931500549316406e+02, 2.931499938964844e+02, 2.933988708496094e+02, 2.931500244140625e+02, 2.931499371337891e+02, 2.942939440917969e+02, 2.931500549316406e+02, 2.931499633789062e+02, 2.937941088867187e+02, 2.931500549316406e+02, 2.96046752319336e+02, 2.931500244140625e+02, 2.963847045898438e+02, 2.931499938964844e+02, 2.932057745361328e+02, 2.936198327636719e+02, 2.986464862060547e+02, 3.001501159667969e+02, 2.931499938964844e+02, 3.001499633789062e+02, 2.941156927490234e+02, 2.9465490234375e+02, 3.001499633789062e+02, 2.959303649902344e+02, 2.981262561035156e+02, 3.001499633789062e+02, 2.938199847412109e+02, 2.937602338803904e+02, 3.000584920247396e+02, 2.931500549316406e+02, 2.967592419433594e+02, 2.947254113769531e+02, 2.931500244140625e+02, 2.99553271484375e+02, 2.994756286621094e+02, 2.931499633789062e+02, 2.993903387451172e+02, 2.951084411621094e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931500549316406e+02, 2.931499719238281e+02, 2.931499938964844e+02, 2.931500634765625e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.931500854492188e+02, 2.931499938964844e+02, 2.931499993896484e+02, 2.931499963378906e+02, 2.931499938964844e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.931499914550781e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931500244140625e+02, 2.931500036621094e+02, 2.931499938964844e+02, 2.931500854492188e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931500854492188e+02, 2.931499938964844e+02] +Room.starRoom.T=[2.894175109863281e+02, 2.887623004150391e+02, 2.899824401855469e+02, 2.904606481933594e+02, 2.899437182617187e+02, 2.902123718261719e+02, 2.900313452148437e+02, 2.904356372070313e+02, 2.892679919433594e+02, 2.906694598388672e+02, 2.900828491210938e+02, 2.904513415527344e+02, 2.916898205566406e+02, 2.898305078125e+02, 2.900000891113281e+02, 2.921970306396485e+02, 2.913096313476562e+02, 2.903214880371094e+02, 2.901859912109375e+02, 2.907788403320312e+02, 2.905809692382812e+02, 2.906316668701172e+02, 2.900752136230469e+02, 2.913651696777344e+02, 2.924897229003906e+02, 2.912373199462891e+02, 2.910531762695313e+02, 2.930326043701172e+02, 2.905297802734375e+02, 2.91921591796875e+02, 2.919273803710938e+02, 2.916154028320312e+02, 2.941052209472657e+02, 2.915421252441406e+02, 2.918858471679687e+02, 2.933731353759766e+02, 2.919412573242187e+02, 2.924810064697265e+02, 2.942697473144531e+02, 2.921467315673828e+02, 2.924667363799779e+02, 2.938418499755859e+02, 2.923098449707031e+02, 2.959363787841797e+02, 2.916131848144531e+02, 2.963305633544922e+02, 2.921357702636719e+02, 2.9323439453125e+02, 2.935168334960937e+02, 2.985529876708985e+02, 3.004659118652344e+02, 2.922004162597656e+02, 3.006186181640625e+02, 2.941907733154297e+02, 2.945386340332032e+02, 3.008549835205078e+02, 2.960486535644531e+02, 2.980430505371094e+02, 3.006187194824219e+02, 2.938888110351563e+02, 2.936753108296518e+02, 2.99993896484375e+02, 2.929780163574219e+02, 2.966835748291016e+02, 2.947925e+02, 2.927014678955078e+02, 2.994921325683594e+02, 2.996004815673828e+02, 2.924660668945313e+02, 2.993108947753906e+02, 2.952344482421875e+02, 2.916014086914063e+02, 2.928512951660156e+02, 2.924961779785156e+02, 2.913930505371094e+02, 2.908669738769531e+02, 2.924589038085937e+02, 2.909118591308594e+02, 2.928013342285156e+02, 2.91804370727539e+02, 2.914287536621094e+02, 2.926582452392578e+02, 2.913902380371094e+02, 2.904842724609375e+02, 2.907057092285156e+02, 2.906704681396484e+02, 2.908789831542969e+02, 2.905919140625e+02, 2.901182592773437e+02, 2.914102392578125e+02, 2.931005676269531e+02, 2.91834384765625e+02, 2.900133654785157e+02, 2.90583916015625e+02, 2.902231958007812e+02, 2.902445465087891e+02, 2.904780700683594e+02, 2.901739642333985e+02, 2.913139074707031e+02, 2.898407855224609e+02, 2.903420104980469e+02] TransmittedSolarRadiation_room=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case410.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case410.txt index f2af7a1f34..d4a9f3a4ff 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case410.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case410.txt @@ -1,20 +1,20 @@ -last-generated=2021-05-25 +last-generated=2022-07-06 statistics-simulation= { "linear": "0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0", "nonlinear": "13", - "number of continuous time states": "23", + "number of continuous time states": "25", "numerical Jacobians": "0" } time=[0e+00, 3.15396e+07] checkResultsAccordingToASHRAEHeatingOrTempMax.lowerLimit=[8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03, 8.596e+03] -AnnualHeatingLoad=[0e+00, 2.65961439819336e+02, 4.449190002441406e+02, 5.770874877929688e+02, 7.29366728515625e+02, 8.954917785644532e+02, 1.119112338867187e+03, 1.250254016113281e+03, 1.4166651953125e+03, 1.601393103027344e+03, 1.830824658203125e+03, 2.005948735351562e+03, 2.125640146484375e+03, 2.316008120117187e+03, 2.495691796875e+03, 2.669243579101562e+03, 2.805269130859375e+03, 2.976731577148437e+03, 3.162067314453125e+03, 3.318787758789063e+03, 3.430033544921875e+03, 3.568344692382812e+03, 3.69637439453125e+03, 3.82931232421875e+03, 3.907766240234375e+03, 3.984802368164062e+03, 4.12504046875e+03, 4.215012548828125e+03, 4.307981796875e+03, 4.43707490234375e+03, 4.49785849609375e+03, 4.56385923828125e+03, 4.589826171875e+03, 4.680647802734375e+03, 4.75280611328125e+03, 4.8306875e+03, 4.90760001953125e+03, 4.96148712890625e+03, 4.97869921875e+03, 5.015235859375e+03, 5.039210283166087e+03, 5.0862099609375e+03, 5.12015919921875e+03, 5.13811572265625e+03, 5.1923091796875e+03, 5.23043896484375e+03, 5.25499068359375e+03, 5.281958984375e+03, 5.29989802734375e+03, 5.30668017578125e+03, 5.30864501953125e+03, 5.32985001953125e+03, 5.3434599609375e+03, 5.34571484375e+03, 5.3512099609375e+03, 5.3553837890625e+03, 5.35572705078125e+03, 5.35718017578125e+03, 5.357943359375e+03, 5.35834716796875e+03, 5.36172900390625e+03, 5.37734814453125e+03, 5.38812201171875e+03, 5.39008056640625e+03, 5.40978076171875e+03, 5.42769853515625e+03, 5.43086279296875e+03, 5.43333154296875e+03, 5.44981162109375e+03, 5.458646484375e+03, 5.49095166015625e+03, 5.52546533203125e+03, 5.5749217578125e+03, 5.63038224609375e+03, 5.68972833984375e+03, 5.742916259765625e+03, 5.82555201171875e+03, 5.886462744140625e+03, 5.97100146484375e+03, 6.0427396875e+03, 6.10920185546875e+03, 6.177820771484375e+03, 6.272696640625e+03, 6.40397126953125e+03, 6.5591562109375e+03, 6.68801328125e+03, 6.79649669921875e+03, 6.9411435546875e+03, 7.08082369140625e+03, 7.211501416015625e+03, 7.371336328125e+03, 7.497375927734375e+03, 7.62928892578125e+03, 7.8058650390625e+03, 8.03223123046875e+03, 8.221314453125e+03, 8.427265195312501e+03, 8.555363964843749e+03, 8.675680625000001e+03, 8.811855605468751e+03, 8.974044921875e+03] +AnnualHeatingLoad=[0e+00, 2.65960463256836e+02, 4.44919658203125e+02, 5.770879760742188e+02, 7.293674072265625e+02, 8.954924499511719e+02, 1.119113315429687e+03, 1.250254692382812e+03, 1.416668002929687e+03, 1.601396398925781e+03, 1.83082841796875e+03, 2.005953181152344e+03, 2.125647958984375e+03, 2.316016176757812e+03, 2.495701337890625e+03, 2.6692525390625e+03, 2.80527767578125e+03, 2.976740854492187e+03, 3.1620768359375e+03, 3.318797080078125e+03, 3.43004501953125e+03, 3.568355922851562e+03, 3.6963953515625e+03, 3.829333564453125e+03, 3.907784306640625e+03, 3.9848193359375e+03, 4.125059375e+03, 4.215031591796875e+03, 4.30800125e+03, 4.43709541015625e+03, 4.49787998046875e+03, 4.5638812109375e+03, 4.589845703125e+03, 4.680665869140625e+03, 4.75282369140625e+03, 4.83070654296875e+03, 4.90761857421875e+03, 4.96150666015625e+03, 4.97871533203125e+03, 5.01524953125e+03, 5.039220048791087e+03, 5.08621875e+03, 5.1201656640625e+03, 5.138119140625e+03, 5.19231146484375e+03, 5.23043994140625e+03, 5.2549882421875e+03, 5.28195361328125e+03, 5.29988994140625e+03, 5.30666552734375e+03, 5.3086279296875e+03, 5.32983e+03, 5.34343798828125e+03, 5.34569091796875e+03, 5.3511826171875e+03, 5.35534912109375e+03, 5.35569091796875e+03, 5.357142578125e+03, 5.35790185546875e+03, 5.35830322265625e+03, 5.36167919921875e+03, 5.3772958984375e+03, 5.388065859375e+03, 5.3900224609375e+03, 5.40971923828125e+03, 5.42763310546875e+03, 5.4307939453125e+03, 5.433259765625e+03, 5.44973205078125e+03, 5.45856103515625e+03, 5.49086279296875e+03, 5.52537451171875e+03, 5.5748280859375e+03, 5.63028849609375e+03, 5.6896327734375e+03, 5.7428173828125e+03, 5.82545275390625e+03, 5.886361669921875e+03, 5.9708994140625e+03, 6.042636845703125e+03, 6.109096875e+03, 6.17771587890625e+03, 6.27259212890625e+03, 6.40386677734375e+03, 6.55905171875e+03, 6.687909130859375e+03, 6.79639419921875e+03, 6.9410419921875e+03, 7.0807226171875e+03, 7.211400341796875e+03, 7.37123583984375e+03, 7.4972753515625e+03, 7.62918552734375e+03, 7.8057625e+03, 8.0321290234375e+03, 8.2212119140625e+03, 8.427161796875e+03, 8.555261757812499e+03, 8.675578085937501e+03, 8.811753281249999e+03, 8.973943359375e+03] checkResultsAccordingToASHRAEHeatingOrTempMax.upperLimit=[1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04, 1.0506e+04] checkResultsAccordingToASHRAECoolingOrTempMin.lowerLimit=[-8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01, -8.4e+01] -AnnualCoolingLoad=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -3.022044599056244e-01, -3.039945363998413e+00, -1.097001457214355e+01, -1.430007934570312e+01, -1.621200454711914e+01, -1.822119903564453e+01, -1.935423278808594e+01, -2.202856922149658e+01, -2.858437538146973e+01, -3.872335815429688e+01, -4.36335173034668e+01, -4.389158630371094e+01, -4.481894683837891e+01, -4.593295669555664e+01, -4.644615173339844e+01, -5.139534759521484e+01, -5.139534759521484e+01, -5.172450637817383e+01, -5.495378494262695e+01, -5.660085296630859e+01, -5.906633377075195e+01, -6.042307281494141e+01, -6.042307281494141e+01, -6.042307281494141e+01, -6.042307281494141e+01, -6.042307281494141e+01, -6.042307281494141e+01, -6.042307281494141e+01, -6.042307281494141e+01, -6.042307281494141e+01, -6.042307281494141e+01, -6.042307281494141e+01, -6.042307281494141e+01, -6.042307281494141e+01, -6.042307281494141e+01, -6.042307281494141e+01, -6.042307281494141e+01, -6.042307281494141e+01, -6.042307281494141e+01, -6.042307281494141e+01, -6.042307281494141e+01, -6.042307281494141e+01, -6.042307281494141e+01, -6.042307281494141e+01, -6.042307281494141e+01, -6.042307281494141e+01, -6.042307281494141e+01, -6.042307281494141e+01, -6.042307281494141e+01, -6.042307281494141e+01, -6.042307281494141e+01, -6.042307281494141e+01, -6.042307281494141e+01] +AnnualCoolingLoad=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -3.002009391784668e-01, -3.031482696533203e+00, -1.095425224304199e+01, -1.428366184234619e+01, -1.619326637268066e+01, -1.820087623596191e+01, -1.932974815368652e+01, -2.199979496002197e+01, -2.855017852783203e+01, -3.868256378173828e+01, -4.358632080078125e+01, -4.384432601928711e+01, -4.476755142211914e+01, -4.587932968139648e+01, -4.638987350463867e+01, -5.133343887329102e+01, -5.133343887329102e+01, -5.166058731079102e+01, -5.488337707519531e+01, -5.65267219543457e+01, -5.898796081542969e+01, -6.033815002441406e+01, -6.033815002441406e+01, -6.033815002441406e+01, -6.033815002441406e+01, -6.033815002441406e+01, -6.033815002441406e+01, -6.033815002441406e+01, -6.033815002441406e+01, -6.033815002441406e+01, -6.033815002441406e+01, -6.033815002441406e+01, -6.033815002441406e+01, -6.033815002441406e+01, -6.033815002441406e+01, -6.033815002441406e+01, -6.033815002441406e+01, -6.033815002441406e+01, -6.033815002441406e+01, -6.033815002441406e+01, -6.033815002441406e+01, -6.033815002441406e+01, -6.033815002441406e+01, -6.033815002441406e+01, -6.033815002441406e+01, -6.033815002441406e+01, -6.033815002441406e+01, -6.033815002441406e+01, -6.033815002441406e+01, -6.033815002441406e+01, -6.033815002441406e+01, -6.033815002441406e+01, -6.033815002441406e+01] checkResultsAccordingToASHRAECoolingOrTempMin.upperLimit=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] checkResultsAccordingToASHRAEHeatingOrTempMax.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00] checkResultsAccordingToASHRAECoolingOrTempMin.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00] -Room.thermRoom.T=[2.941499938964844e+02, 2.931499633789062e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931499670410156e+02, 2.931499938964844e+02, 2.931499328613281e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.931499627685547e+02, 2.931500549316406e+02, 2.931499633789062e+02, 2.931499328613281e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931500854492188e+02, 2.931499713134766e+02, 2.931499938964844e+02, 2.931500549316406e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931500207519532e+02, 2.931500244140625e+02, 2.931500549316406e+02, 2.931499938964844e+02, 2.931500549316406e+02, 2.931499938964844e+02, 2.931499328613281e+02, 2.931500244140625e+02, 2.931499633789062e+02, 2.941237426757813e+02, 2.931500549316406e+02, 2.931499938964844e+02, 2.933657623291016e+02, 2.931500244140625e+02, 2.931499633789062e+02, 2.942944543457031e+02, 2.931500854492188e+02, 2.931499606396546e+02, 2.938958282470703e+02, 2.931500622558594e+02, 2.957697985839844e+02, 2.931500244140625e+02, 2.961381225585938e+02, 2.931499938964844e+02, 2.932326721191406e+02, 2.931498999023437e+02, 2.983115228271485e+02, 3.001500549316406e+02, 2.931500006103516e+02, 3.001499633789062e+02, 2.943152301025391e+02, 2.937810949707031e+02, 3.001499633789062e+02, 2.960071643066406e+02, 2.97707388305664e+02, 3.001499633789062e+02, 2.938895489501953e+02, 2.932463381917853e+02, 2.999348352050781e+02, 2.931500549316406e+02, 2.964977679443359e+02, 2.949789013671875e+02, 2.931500549316406e+02, 2.994827026367187e+02, 2.999486828613281e+02, 2.931499633789062e+02, 2.992156408691406e+02, 2.955862060546875e+02, 2.931499938964844e+02, 2.931499584960937e+02, 2.931500549316406e+02, 2.931499719238281e+02, 2.931499938964844e+02, 2.931500939941406e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.931501159667969e+02, 2.931499938964844e+02, 2.931499743652344e+02, 2.931500268554688e+02, 2.931499938964844e+02, 2.93150009765625e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499456787109e+02, 2.931500305175781e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931500384521485e+02, 2.931500036621094e+02, 2.931499938964844e+02, 2.931500891113281e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931501159667969e+02, 2.931499938964844e+02] -Room.starRoom.T=[2.894175109863281e+02, 2.88762269897461e+02, 2.899824536132812e+02, 2.904606176757812e+02, 2.899437182617187e+02, 2.902124908447266e+02, 2.900313452148437e+02, 2.904356536865234e+02, 2.892679919433594e+02, 2.906694598388672e+02, 2.900828552246094e+02, 2.904513415527344e+02, 2.916898205566406e+02, 2.898305078125e+02, 2.900001171875e+02, 2.921970092773437e+02, 2.913096313476562e+02, 2.903214575195312e+02, 2.901859912109375e+02, 2.907788708496093e+02, 2.905809692382812e+02, 2.906316668701172e+02, 2.900752136230469e+02, 2.913651409912109e+02, 2.924897229003906e+02, 2.912373199462891e+02, 2.91053154296875e+02, 2.930326043701172e+02, 2.905297802734375e+02, 2.91921591796875e+02, 2.91927392578125e+02, 2.916146514892578e+02, 2.941297119140625e+02, 2.915421557617187e+02, 2.918844189453125e+02, 2.93366162109375e+02, 2.91941259765625e+02, 2.923909332275391e+02, 2.943013073730469e+02, 2.921467443847656e+02, 2.924379342292564e+02, 2.939036895751953e+02, 2.923089416503906e+02, 2.958284313964843e+02, 2.916132055664062e+02, 2.961485229492188e+02, 2.921357971191406e+02, 2.932427203369141e+02, 2.929570080566406e+02, 2.983522717285156e+02, 3.006177673339844e+02, 2.922004467773438e+02, 3.006304797363281e+02, 2.943085516357422e+02, 2.938541198730469e+02, 3.008689392089844e+02, 2.959680822753906e+02, 2.97742015991211e+02, 3.006222692871094e+02, 2.938875299072266e+02, 2.932887106443706e+02, 2.999842419433594e+02, 2.929631176757812e+02, 2.965253839111328e+02, 2.949726220703125e+02, 2.926671691894531e+02, 2.99495927734375e+02, 2.999034906005859e+02, 2.923574963378906e+02, 2.992445422363281e+02, 2.955364685058594e+02, 2.916012139892578e+02, 2.928414123535156e+02, 2.924961779785156e+02, 2.913930200195313e+02, 2.908669738769531e+02, 2.924589123535156e+02, 2.90911860961914e+02, 2.928013647460937e+02, 2.918043591308594e+02, 2.914272155761719e+02, 2.926582452392578e+02, 2.913902380371094e+02, 2.904842724609375e+02, 2.907057238769531e+02, 2.906704376220703e+02, 2.908789831542969e+02, 2.905919140625e+02, 2.901182397460938e+02, 2.914102392578125e+02, 2.931005737304687e+02, 2.918343548583985e+02, 2.900133654785157e+02, 2.905839324951172e+02, 2.902232067871093e+02, 2.902445465087891e+02, 2.904781005859375e+02, 2.901739544677735e+02, 2.913139208984375e+02, 2.898407922363281e+02, 2.903420104980469e+02] +Room.thermRoom.T=[2.941499938964844e+02, 2.931499633789062e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931499670410156e+02, 2.931499938964844e+02, 2.931499328613281e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.931499627685547e+02, 2.931500549316406e+02, 2.931499633789062e+02, 2.931499328613281e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931500854492188e+02, 2.931499713134766e+02, 2.931499938964844e+02, 2.931500549316406e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931500207519532e+02, 2.931500244140625e+02, 2.931500549316406e+02, 2.931499938964844e+02, 2.931500549316406e+02, 2.931499938964844e+02, 2.931499328613281e+02, 2.931500244140625e+02, 2.931499633789062e+02, 2.941240661621094e+02, 2.931500549316406e+02, 2.931499938964844e+02, 2.933658264160156e+02, 2.931500244140625e+02, 2.931499633789062e+02, 2.942942846679687e+02, 2.931500854492188e+02, 2.931499606396546e+02, 2.938946362304687e+02, 2.931500622558594e+02, 2.957719573974609e+02, 2.931500244140625e+02, 2.961396850585937e+02, 2.931499938964844e+02, 2.932323034667968e+02, 2.9314998046875e+02, 2.983138293457031e+02, 3.001500549316406e+02, 2.931500006103516e+02, 3.001499633789062e+02, 2.943134106445312e+02, 2.937861767578125e+02, 3.001499633789062e+02, 2.960052661132813e+02, 2.9770998046875e+02, 3.001499633789062e+02, 2.938883343505859e+02, 2.932493576683556e+02, 2.999356140136719e+02, 2.931500549316406e+02, 2.964994122314453e+02, 2.949767724609375e+02, 2.931500549316406e+02, 2.994837158203125e+02, 2.999446966552734e+02, 2.931499633789062e+02, 2.992171990966797e+02, 2.955826477050781e+02, 2.931499938964844e+02, 2.931499584960937e+02, 2.931500549316406e+02, 2.931499719238281e+02, 2.931499938964844e+02, 2.931500939941406e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.931501159667969e+02, 2.931499938964844e+02, 2.931499743652344e+02, 2.931500268554688e+02, 2.931499938964844e+02, 2.93150009765625e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499456787109e+02, 2.931500305175781e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931500384521485e+02, 2.931500036621094e+02, 2.931499938964844e+02, 2.931500891113281e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931501159667969e+02, 2.931499938964844e+02] +Room.starRoom.T=[2.894175109863281e+02, 2.88762269897461e+02, 2.899824536132812e+02, 2.904606176757812e+02, 2.899437182617187e+02, 2.9021240234375e+02, 2.900313452148437e+02, 2.904356536865234e+02, 2.892679846191406e+02, 2.906694598388672e+02, 2.900828552246094e+02, 2.904513415527344e+02, 2.916898205566406e+02, 2.89830503540039e+02, 2.900000891113281e+02, 2.921970306396485e+02, 2.913096472167969e+02, 2.903214575195312e+02, 2.901859912109375e+02, 2.907788458251953e+02, 2.9058095703125e+02, 2.906316668701172e+02, 2.900752087402344e+02, 2.913651373291016e+02, 2.924897229003906e+02, 2.912373352050781e+02, 2.91053154296875e+02, 2.930326043701172e+02, 2.905297802734375e+02, 2.91921591796875e+02, 2.91927392578125e+02, 2.916146514892578e+02, 2.941295104980469e+02, 2.915421557617187e+02, 2.918844189453125e+02, 2.933660247802734e+02, 2.91941259765625e+02, 2.923913391113281e+02, 2.943009851074219e+02, 2.921467315673828e+02, 2.924380617780722e+02, 2.939029241943359e+02, 2.923089416503906e+02, 2.958294494628906e+02, 2.916131848144531e+02, 2.961497009277344e+02, 2.921357971191406e+02, 2.932425866699219e+02, 2.929591088867188e+02, 2.9835373046875e+02, 3.006168212890625e+02, 2.922004162597656e+02, 3.006304321289062e+02, 2.943074139404297e+02, 2.938581872558594e+02, 3.008688201904297e+02, 2.959674169921875e+02, 2.977439013671875e+02, 3.006222387695312e+02, 2.938869250488281e+02, 2.932910588176106e+02, 2.999843280029297e+02, 2.929631701660156e+02, 2.965263610839844e+02, 2.949710302734375e+02, 2.926673034667969e+02, 2.994963903808594e+02, 2.999006866455078e+02, 2.923578991699219e+02, 2.992453350830078e+02, 2.955341430664063e+02, 2.916012329101562e+02, 2.928414123535156e+02, 2.924961187744141e+02, 2.913930200195313e+02, 2.908669586181641e+02, 2.924589123535156e+02, 2.909118591308594e+02, 2.928013391113281e+02, 2.918043591308594e+02, 2.914272277832031e+02, 2.926582702636719e+02, 2.913902673339844e+02, 2.904842724609375e+02, 2.907057238769531e+02, 2.906704376220703e+02, 2.908789831542969e+02, 2.90591918334961e+02, 2.901182397460938e+02, 2.914102087402344e+02, 2.931005737304687e+02, 2.918343548583985e+02, 2.900133422851562e+02, 2.905839324951172e+02, 2.902231860351562e+02, 2.902445495605469e+02, 2.904781005859375e+02, 2.901739440917969e+02, 2.913139074707031e+02, 2.898407922363281e+02, 2.903420104980469e+02] TransmittedSolarRadiation_room=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case420.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case420.txt index c6fb4b6895..c2b70a3c74 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case420.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case420.txt @@ -1,20 +1,20 @@ -last-generated=2021-05-25 +last-generated=2022-07-06 statistics-simulation= { "linear": "0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0", "nonlinear": "13", - "number of continuous time states": "23", + "number of continuous time states": "25", "numerical Jacobians": "0" } time=[0e+00, 3.15396e+07] checkResultsAccordingToASHRAEHeatingOrTempMax.lowerLimit=[7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03, 7.298e+03] -AnnualHeatingLoad=[0e+00, 2.499434948730469e+02, 4.128115393066406e+02, 5.289044653320312e+02, 6.6510060546875e+02, 8.151420227050781e+02, 1.022652321777344e+03, 1.137725385742187e+03, 1.288049467773438e+03, 1.456675456542969e+03, 1.669987939453125e+03, 1.829014011230469e+03, 1.932636430664063e+03, 2.106893286132813e+03, 2.270478662109375e+03, 2.427941943359375e+03, 2.5478777734375e+03, 2.70323951171875e+03, 2.8724750390625e+03, 3.013085200195313e+03, 3.108247802734375e+03, 3.230488950195313e+03, 3.342502607421875e+03, 3.459339057617187e+03, 3.523891796875e+03, 3.586430541992188e+03, 3.710588388671875e+03, 3.78457958984375e+03, 3.861946845703125e+03, 3.974959697265625e+03, 4.021390966796875e+03, 4.072770815429687e+03, 4.089544677734375e+03, 4.16404984375e+03, 4.2218254296875e+03, 4.28432080078125e+03, 4.34494912109375e+03, 4.38636083984375e+03, 4.39491455078125e+03, 4.419687294921875e+03, 4.43459619140625e+03, 4.46597607421875e+03, 4.488603984375e+03, 4.498435546875e+03, 4.53837111328125e+03, 4.5668193359375e+03, 4.58097869140625e+03, 4.59727001953125e+03, 4.60739892578125e+03, 4.61037841796875e+03, 4.61090966796875e+03, 4.6224553125e+03, 4.6287900390625e+03, 4.6289853515625e+03, 4.63049658203125e+03, 4.630732421875e+03, 4.630732421875e+03, 4.63075927734375e+03, 4.63075927734375e+03, 4.63075927734375e+03, 4.63108935546875e+03, 4.637888671875e+03, 4.64212255859375e+03, 4.64255712890625e+03, 4.65250634765625e+03, 4.661108376295868e+03, 4.661359375e+03, 4.66143798828125e+03, 4.6705365234375e+03, 4.6738837890625e+03, 4.69415087890625e+03, 4.7160951953125e+03, 4.754134765625e+03, 4.795222470703125e+03, 4.8419267578125e+03, 4.883423828125e+03, 4.951682421875e+03, 4.99937892578125e+03, 5.06852640625e+03, 5.125733310546875e+03, 5.17933310546875e+03, 5.233788955078125e+03, 5.31312509765625e+03, 5.428318369140625e+03, 5.5673836328125e+03, 5.680220654296875e+03, 5.77263392578125e+03, 5.901180927734375e+03, 6.0247709375e+03, 6.139359306640625e+03, 6.283177734375e+03, 6.393423916015625e+03, 6.50924736328125e+03, 6.66971099609375e+03, 6.879950546875e+03, 7.052919873046875e+03, 7.24274587890625e+03, 7.35476732421875e+03, 7.4590303125e+03, 7.579112236328125e+03, 7.72520166015625e+03] +AnnualHeatingLoad=[0e+00, 2.499427896118164e+02, 4.1280951171875e+02, 5.28901962890625e+02, 6.6509865234375e+02, 8.151403198242188e+02, 1.022650632324219e+03, 1.137723676757812e+03, 1.288047758789063e+03, 1.456673017578125e+03, 1.669986572265625e+03, 1.829011691894531e+03, 1.932635517578125e+03, 2.106896005859375e+03, 2.27048232421875e+03, 2.42794560546875e+03, 2.547889248046875e+03, 2.703250805664063e+03, 2.872486513671875e+03, 3.013094965820313e+03, 3.10825830078125e+03, 3.230499204101563e+03, 3.342511884765625e+03, 3.459348090820312e+03, 3.52390125e+03, 3.586439208984375e+03, 3.710595048828125e+03, 3.78458740234375e+03, 3.861954619140625e+03, 3.974967021484375e+03, 4.02139697265625e+03, 4.072776430664062e+03, 4.089546875e+03, 4.16405228515625e+03, 4.22182666015625e+03, 4.28432177734375e+03, 4.34494912109375e+03, 4.38635986328125e+03, 4.39490771484375e+03, 4.419676064453125e+03, 4.434580078125e+03, 4.46595947265625e+03, 4.4885825e+03, 4.49840966796875e+03, 4.53834083984375e+03, 4.56678759765625e+03, 4.58094646484375e+03, 4.597234375e+03, 4.60735986328125e+03, 4.6103359375e+03, 4.610865234375e+03, 4.622408544921875e+03, 4.62874169921875e+03, 4.628935546875e+03, 4.6304462890625e+03, 4.63067919921875e+03, 4.63067919921875e+03, 4.630705078125e+03, 4.630705078125e+03, 4.630705078125e+03, 4.631033203125e+03, 4.637830078125e+03, 4.6420615234375e+03, 4.642494140625e+03, 4.65244189453125e+03, 4.66103905957616e+03, 4.661287109375e+03, 4.66136376953125e+03, 4.67045548828125e+03, 4.67379541015625e+03, 4.69405810546875e+03, 4.715998515625e+03, 4.7540341796875e+03, 4.795120390625e+03, 4.8418212890625e+03, 4.883313720703125e+03, 4.9515707421875e+03, 4.9992641796875e+03, 5.06841158203125e+03, 5.125616611328125e+03, 5.17921298828125e+03, 5.233668349609375e+03, 5.313003515625e+03, 5.428196787109375e+03, 5.5672615625e+03, 5.6800994140625e+03, 5.7725133203125e+03, 5.901060810546875e+03, 6.02465033203125e+03, 6.139241142578125e+03, 6.2830595703125e+03, 6.39330623046875e+03, 6.50913103515625e+03, 6.66959576171875e+03, 6.87983564453125e+03, 7.0528060546875e+03, 7.24263265625e+03, 7.35465453125e+03, 7.4589192578125e+03, 7.579001015625e+03, 7.72509130859375e+03] checkResultsAccordingToASHRAEHeatingOrTempMax.upperLimit=[9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03, 9.151e+03] checkResultsAccordingToASHRAECoolingOrTempMin.lowerLimit=[-1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02, -1.89e+02] -AnnualCoolingLoad=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -2.000453174114227e-01, -5.777589678764343e-01, -5.777589678764343e-01, -1.327840089797974e+00, -1.739169478416443e+00, -1.815266370773315e+00, -3.657832384109497e+00, -1.14700813293457e+01, -2.697012901306152e+01, -3.190374565124512e+01, -3.654064346313476e+01, -4.113601684570312e+01, -4.604111480712891e+01, -5.280375289916992e+01, -6.643900299072266e+01, -8.500301361083984e+01, -9.749299255371093e+01, -9.882056427001953e+01, -1.032752304077148e+02, -1.060715256791088e+02, -1.095098037719727e+02, -1.213856353759766e+02, -1.213856353759766e+02, -1.229934158325195e+02, -1.322845611572266e+02, -1.380683734130859e+02, -1.436390686035156e+02, -1.498672485351562e+02, -1.498672485351562e+02, -1.50333740234375e+02, -1.503719787597656e+02, -1.503719787597656e+02, -1.508023223876953e+02, -1.508023223876953e+02, -1.508023223876953e+02, -1.508023223876953e+02, -1.508023223876953e+02, -1.508023223876953e+02, -1.508023223876953e+02, -1.508023223876953e+02, -1.508023223876953e+02, -1.508023223876953e+02, -1.508023223876953e+02, -1.508023223876953e+02, -1.508023223876953e+02, -1.508023223876953e+02, -1.508023223876953e+02, -1.508023223876953e+02, -1.508023223876953e+02, -1.508023223876953e+02, -1.508023223876953e+02, -1.508023223876953e+02, -1.508023223876953e+02, -1.508023223876953e+02, -1.508023223876953e+02, -1.508023223876953e+02, -1.508023223876953e+02, -1.508023223876953e+02, -1.508023223876953e+02] +AnnualCoolingLoad=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -1.983975321054459e-01, -5.740681886672974e-01, -5.740681886672974e-01, -1.322022318840027e+00, -1.731423020362854e+00, -1.805977582931519e+00, -3.646051645278931e+00, -1.145280170440674e+01, -2.694634056091309e+01, -3.187973213195801e+01, -3.651271377563477e+01, -4.110701370239258e+01, -4.600626373291016e+01, -5.276364669799805e+01, -6.639449310302734e+01, -8.495280456542969e+01, -9.743771759033203e+01, -9.876436614990234e+01, -1.032137298583984e+02, -1.060069882935582e+02, -1.094411087036133e+02, -1.213094711303711e+02, -1.213094711303711e+02, -1.229147109985352e+02, -1.321975250244141e+02, -1.379770315551758e+02, -1.435431823730469e+02, -1.497616271972656e+02, -1.497616271972656e+02, -1.502259979248047e+02, -1.502628173828125e+02, -1.502628173828125e+02, -1.506912841796875e+02, -1.506912841796875e+02, -1.506912841796875e+02, -1.506912841796875e+02, -1.506912841796875e+02, -1.506912841796875e+02, -1.506912841796875e+02, -1.506912841796875e+02, -1.506912841796875e+02, -1.506912841796875e+02, -1.506912841796875e+02, -1.506912841796875e+02, -1.506912841796875e+02, -1.506912841796875e+02, -1.506912841796875e+02, -1.506912841796875e+02, -1.506912841796875e+02, -1.506912841796875e+02, -1.506912841796875e+02, -1.506912841796875e+02, -1.506912841796875e+02, -1.506912841796875e+02, -1.506912841796875e+02, -1.506912841796875e+02, -1.506912841796875e+02, -1.506912841796875e+02, -1.506912841796875e+02] checkResultsAccordingToASHRAECoolingOrTempMin.upperLimit=[-1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01, -1.1e+01] checkResultsAccordingToASHRAEHeatingOrTempMax.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00] checkResultsAccordingToASHRAECoolingOrTempMin.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00] -Room.thermRoom.T=[2.941499938964844e+02, 2.931499633789062e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931499670410156e+02, 2.931499938964844e+02, 2.931499328613281e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.931499627685547e+02, 2.931500549316406e+02, 2.931499633789062e+02, 2.931499328613281e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931500854492188e+02, 2.931499713134766e+02, 2.931499938964844e+02, 2.931500549316406e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931500207519532e+02, 2.931500244140625e+02, 2.931500549316406e+02, 2.931499938964844e+02, 2.934125378417968e+02, 2.931499938964844e+02, 2.931499328613281e+02, 2.931500244140625e+02, 2.931499633789062e+02, 2.956176037597656e+02, 2.931500549316406e+02, 2.931499938964844e+02, 2.944922332763672e+02, 2.931500244140625e+02, 2.932633026453221e+02, 2.958067346191406e+02, 2.931500854492188e+02, 2.932396483294732e+02, 2.948575549316406e+02, 2.931500549316406e+02, 2.975826568603516e+02, 2.931500244140625e+02, 2.978824279785156e+02, 2.931499938964844e+02, 2.939277325439453e+02, 2.943363305664063e+02, 2.992789318847656e+02, 3.001500244140625e+02, 2.931500006103516e+02, 3.001499633789062e+02, 2.953721392822266e+02, 2.952235656738281e+02, 3.001499603271484e+02, 2.978639404296875e+02, 2.988960882568359e+02, 3.001499633789062e+02, 2.95732275390625e+02, 2.951026108808114e+02, 3.001498718261719e+02, 2.933608447265625e+02, 2.980628558349609e+02, 2.961248510742187e+02, 2.93150034246695e+02, 3.00116212949648e+02, 3.001500549316406e+02, 2.93149921875e+02, 2.999469714355469e+02, 2.965449951171875e+02, 2.931499938964844e+02, 2.93861630859375e+02, 2.931500549316406e+02, 2.931499719238281e+02, 2.931499938964844e+02, 2.931500939941406e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.931501159667969e+02, 2.931499938964844e+02, 2.931499743652344e+02, 2.931500268554688e+02, 2.931499938964844e+02, 2.93150009765625e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499456787109e+02, 2.935706481933594e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931500384521485e+02, 2.931500036621094e+02, 2.931499938964844e+02, 2.931500891113281e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931501159667969e+02, 2.931499938964844e+02] -Room.starRoom.T=[2.895909423828125e+02, 2.890937384033203e+02, 2.903125524902344e+02, 2.907900140380859e+02, 2.902738989257812e+02, 2.905419616699219e+02, 2.903612390136719e+02, 2.907652600097656e+02, 2.895990393066406e+02, 2.909988323974609e+02, 2.904127502441406e+02, 2.907814324951172e+02, 2.920183203125e+02, 2.901606292724609e+02, 2.903295922851563e+02, 2.925249908447266e+02, 2.916381628417969e+02, 2.906512609863281e+02, 2.905161560058594e+02, 2.911087463378906e+02, 2.909104431152344e+02, 2.909604937744141e+02, 2.904055102539062e+02, 2.916938494873047e+02, 2.928185534667969e+02, 2.915660400390625e+02, 2.913829711914062e+02, 2.934433892822266e+02, 2.908590502929687e+02, 2.922506292724609e+02, 2.922555969238281e+02, 2.91962822265625e+02, 2.956559460449218e+02, 2.918707531738281e+02, 2.92243525390625e+02, 2.945163391113281e+02, 2.922702465820312e+02, 2.933987698444443e+02, 2.958416027832031e+02, 2.924754010009765e+02, 2.933581144041117e+02, 2.948848303222656e+02, 2.926484265136719e+02, 2.976854852294922e+02, 2.919420727539062e+02, 2.97925732421875e+02, 2.924641662597656e+02, 2.939554669189453e+02, 2.94445439453125e+02, 2.993428753662109e+02, 3.012410583496094e+02, 2.925295007324219e+02, 3.009590734863281e+02, 2.953895727539062e+02, 2.953366931152344e+02, 3.012081817626953e+02, 2.97862568359375e+02, 2.989577844238281e+02, 3.009513354492187e+02, 2.957590606689453e+02, 2.95190151407156e+02, 3.004091810363432e+02, 2.933952917480469e+02, 2.981242065429688e+02, 2.9614126953125e+02, 2.930970761246784e+02, 3.001549189640925e+02, 3.009620562744141e+02, 2.92946669921875e+02, 2.999944097900391e+02, 2.9652177734375e+02, 2.919362426757813e+02, 2.939181311035156e+02, 2.928262646484375e+02, 2.917236755371094e+02, 2.911963500976562e+02, 2.9278783203125e+02, 2.912417987060547e+02, 2.931305041503906e+02, 2.921331481933594e+02, 2.917823486328125e+02, 2.929873217773438e+02, 2.91720146484375e+02, 2.908145233154297e+02, 2.910359252929687e+02, 2.910017669677734e+02, 2.9120830078125e+02, 2.90922611694336e+02, 2.904485009765625e+02, 2.917390454101562e+02, 2.935956359863281e+02, 2.921629693603516e+02, 2.903439538574219e+02, 2.909136798095703e+02, 2.905528137207031e+02, 2.905742156982422e+02, 2.908073596191406e+02, 2.905039508056641e+02, 2.916442700195312e+02, 2.901714453125e+02, 2.906723022460938e+02] +Room.thermRoom.T=[2.941499938964844e+02, 2.931499633789062e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931499670410156e+02, 2.931499938964844e+02, 2.931499328613281e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.931499627685547e+02, 2.931500549316406e+02, 2.931499633789062e+02, 2.931499328613281e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931500854492188e+02, 2.931499713134766e+02, 2.931499938964844e+02, 2.931500549316406e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931500207519532e+02, 2.931500244140625e+02, 2.931500549316406e+02, 2.931499938964844e+02, 2.934115441894531e+02, 2.931499938964844e+02, 2.931499328613281e+02, 2.931500244140625e+02, 2.931499633789062e+02, 2.956171643066406e+02, 2.931500549316406e+02, 2.931499938964844e+02, 2.944913940429688e+02, 2.931500244140625e+02, 2.9326771414226e+02, 2.958058129882813e+02, 2.931500854492188e+02, 2.932425838812865e+02, 2.948553863525391e+02, 2.931500549316406e+02, 2.975843859863281e+02, 2.931500244140625e+02, 2.978838989257812e+02, 2.931499938964844e+02, 2.939263977050781e+02, 2.943406750488281e+02, 2.992805059814453e+02, 3.001500244140625e+02, 2.931500006103516e+02, 3.001499633789062e+02, 2.953695471191406e+02, 2.952278503417969e+02, 3.001499603271484e+02, 2.978617065429688e+02, 2.988977624511719e+02, 3.001499633789062e+02, 2.957317956542969e+02, 2.951054500980559e+02, 3.001498718261719e+02, 2.933603039550781e+02, 2.980647833251953e+02, 2.96121748046875e+02, 2.931500342820219e+02, 3.001163866650927e+02, 3.001500549316406e+02, 2.9314994140625e+02, 2.999477001953125e+02, 2.965405212402344e+02, 2.931499938964844e+02, 2.938622338867187e+02, 2.931500549316406e+02, 2.931499719238281e+02, 2.931499938964844e+02, 2.931500939941406e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.931501159667969e+02, 2.931499938964844e+02, 2.931499743652344e+02, 2.931500268554688e+02, 2.931499938964844e+02, 2.93150009765625e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499456787109e+02, 2.935695434570313e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931500384521485e+02, 2.931500036621094e+02, 2.931499938964844e+02, 2.931500891113281e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931501159667969e+02, 2.931499938964844e+02] +Room.starRoom.T=[2.895909423828125e+02, 2.890937384033203e+02, 2.903125390625e+02, 2.907900140380859e+02, 2.9027392578125e+02, 2.905419891357422e+02, 2.903612390136719e+02, 2.907652600097656e+02, 2.895990393066406e+02, 2.909988323974609e+02, 2.90412744140625e+02, 2.907814324951172e+02, 2.920183288574219e+02, 2.901606292724609e+02, 2.903295922851563e+02, 2.925249603271484e+02, 2.916381628417969e+02, 2.906512609863281e+02, 2.905161560058594e+02, 2.911087463378906e+02, 2.909104553222656e+02, 2.909604748535156e+02, 2.904055151367187e+02, 2.916938494873047e+02, 2.928185534667969e+02, 2.915660400390625e+02, 2.913829711914062e+02, 2.934430413818359e+02, 2.908590502929687e+02, 2.922506292724609e+02, 2.922555786132813e+02, 2.919628582763672e+02, 2.956550146484375e+02, 2.918707531738281e+02, 2.922435717773437e+02, 2.945154388427734e+02, 2.922702465820312e+02, 2.934020384361302e+02, 2.958406286621094e+02, 2.924754187011719e+02, 2.933600733934251e+02, 2.948833319091797e+02, 2.926484875488281e+02, 2.976861065673828e+02, 2.919420727539062e+02, 2.979268249511719e+02, 2.924641662597656e+02, 2.939546820068359e+02, 2.944490368652343e+02, 2.993437915039062e+02, 3.012408752441406e+02, 2.925295007324219e+02, 3.0095904296875e+02, 2.953878448486328e+02, 2.953400280761718e+02, 3.01208154296875e+02, 2.978615979003906e+02, 2.989588763427735e+02, 3.009513354492187e+02, 2.957592510986328e+02, 2.95192380272838e+02, 3.004091518676083e+02, 2.933953210449219e+02, 2.981255932617187e+02, 2.961388842773438e+02, 2.930976763513988e+02, 3.001549561888307e+02, 3.009617724609375e+02, 2.929483972167969e+02, 2.999946478271484e+02, 2.96518701171875e+02, 2.919362615966797e+02, 2.939181127929688e+02, 2.928262646484375e+02, 2.917236755371094e+02, 2.911963500976562e+02, 2.9278783203125e+02, 2.912417681884766e+02, 2.931305297851562e+02, 2.921331671142578e+02, 2.917823791503906e+02, 2.929873468017578e+02, 2.917200866699219e+02, 2.9081453125e+02, 2.910359106445313e+02, 2.910017578125e+02, 2.9120830078125e+02, 2.909226379394531e+02, 2.904485009765625e+02, 2.917390631103515e+02, 2.935951110839844e+02, 2.921629693603516e+02, 2.903439538574219e+02, 2.909136798095703e+02, 2.905528552246094e+02, 2.905741851806641e+02, 2.908073864746094e+02, 2.905039508056641e+02, 2.916442700195312e+02, 2.901714691162109e+02, 2.906723022460938e+02] TransmittedSolarRadiation_room=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case430.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case430.txt index 4e2abb35c6..d5d257e202 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case430.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case430.txt @@ -1,20 +1,20 @@ -last-generated=2021-05-25 +last-generated=2022-06-02 statistics-simulation= { "linear": "0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0", "nonlinear": "13", - "number of continuous time states": "23", + "number of continuous time states": "25", "numerical Jacobians": "0" } time=[0e+00, 3.15396e+07] checkResultsAccordingToASHRAEHeatingOrTempMax.lowerLimit=[5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03, 5.429e+03] -AnnualHeatingLoad=[0e+00, 2.46196452331543e+02, 4.038286804199219e+02, 5.131637683105469e+02, 6.433214868164063e+02, 7.875762878417969e+02, 9.894979150390625e+02, 1.099033046875e+03, 1.242649321289063e+03, 1.402946662597656e+03, 1.612193139648437e+03, 1.765272260742187e+03, 1.8620043359375e+03, 2.031696201171875e+03, 2.186587041015625e+03, 2.336989697265625e+03, 2.449439658203125e+03, 2.5954996484375e+03, 2.75650990234375e+03, 2.887717836914062e+03, 2.97176591796875e+03, 3.08619396484375e+03, 3.18885814453125e+03, 3.295811137695312e+03, 3.353217529296875e+03, 3.409021606445312e+03, 3.524050625e+03, 3.59046142578125e+03, 3.661437041015625e+03, 3.762466166992187e+03, 3.802940087890625e+03, 3.846611059570313e+03, 3.860327880859375e+03, 3.926938203125e+03, 3.974462705078125e+03, 4.027634521484375e+03, 4.08087427734375e+03, 4.11624169921875e+03, 4.1229111328125e+03, 4.14375109375e+03, 4.1553212890625e+03, 4.180443359375e+03, 4.198745836576957e+03, 4.2055302734375e+03, 4.24164240234375e+03, 4.2661982421875e+03, 4.27745125e+03, 4.291314453125e+03, 4.29934912109375e+03, 4.30197509765625e+03, 4.30240576171875e+03, 4.311123388671875e+03, 4.31564453125e+03, 4.31565869140625e+03, 4.31672314453125e+03, 4.31683056640625e+03, 4.31683056640625e+03, 4.31683056640625e+03, 4.31683056640625e+03, 4.31683056640625e+03, 4.3170849609375e+03, 4.32218017578125e+03, 4.325509765625e+03, 4.32588671875e+03, 4.333236328125e+03, 4.340139184794295e+03, 4.34029052734375e+03, 4.3403125e+03, 4.34763673828125e+03, 4.35027490234375e+03, 4.3666953125e+03, 4.385008974609375e+03, 4.41862841796875e+03, 4.4522646484375e+03, 4.49353873046875e+03, 4.530664306640625e+03, 4.5930595703125e+03, 4.63681837890625e+03, 4.699576171875e+03, 4.750868701171875e+03, 4.79899130859375e+03, 4.8471708984375e+03, 4.919896015625e+03, 5.028528564453125e+03, 5.15946345703125e+03, 5.263662548828125e+03, 5.3497987109375e+03, 5.472517666015625e+03, 5.58900775390625e+03, 5.696326923828125e+03, 5.833974609375e+03, 5.938312587890625e+03, 6.05013208984375e+03, 6.20473216796875e+03, 6.40988365234375e+03, 6.576086181640625e+03, 6.76010505859375e+03, 6.867063388671875e+03, 6.96612478515625e+03, 7.08167607421875e+03, 7.2221044921875e+03] +AnnualHeatingLoad=[0e+00, 2.461959606933594e+02, 4.038277954101562e+02, 5.13162568359375e+02, 6.4332044921875e+02, 7.875749450683594e+02, 9.89496572265625e+02, 1.099031516113281e+03, 1.242647734375e+03, 1.402945073242187e+03, 1.612191772460938e+03, 1.765271091308594e+03, 1.862001694335938e+03, 2.03169302734375e+03, 2.186584130859375e+03, 2.336986767578125e+03, 2.44943685546875e+03, 2.595496962890625e+03, 2.756507216796875e+03, 2.887715395507812e+03, 2.97176240234375e+03, 3.086191127929687e+03, 3.1888547265625e+03, 3.295807719726562e+03, 3.353209228515625e+03, 3.409009887695312e+03, 3.52403921875e+03, 3.590449462890625e+03, 3.661425078125e+03, 3.762454204101562e+03, 3.80292509765625e+03, 3.846594458007813e+03, 3.86030517578125e+03, 3.926913237304687e+03, 3.9744351171875e+03, 4.02760693359375e+03, 4.080846201171875e+03, 4.1162119140625e+03, 4.122873046875e+03, 4.143706171875e+03, 4.1552705078125e+03, 4.18038916015625e+03, 4.198684926531917e+03, 4.2054638671875e+03, 4.2415716015625e+03, 4.266125e+03, 4.27737404296875e+03, 4.29123193359375e+03, 4.29926171875e+03, 4.30188525390625e+03, 4.302314453125e+03, 4.311028662109375e+03, 4.315546875e+03, 4.31556005859375e+03, 4.31662353515625e+03, 4.316728515625e+03, 4.316728515625e+03, 4.316728515625e+03, 4.316728515625e+03, 4.316728515625e+03, 4.31698095703125e+03, 4.3220732421875e+03, 4.3253994140625e+03, 4.32577490234375e+03, 4.33311962890625e+03, 4.340016156033987e+03, 4.3401650390625e+03, 4.34018603515625e+03, 4.34750248046875e+03, 4.3501337890625e+03, 4.36654833984375e+03, 4.38485693359375e+03, 4.4184716796875e+03, 4.4521025390625e+03, 4.49337173828125e+03, 4.530490966796875e+03, 4.59288232421875e+03, 4.63663625e+03, 4.699392578125e+03, 4.75068138671875e+03, 4.7987974609375e+03, 4.8469755859375e+03, 4.9196977734375e+03, 5.028330322265625e+03, 5.15926521484375e+03, 5.263463671875e+03, 5.34960095703125e+03, 5.47232130859375e+03, 5.58881341796875e+03, 5.69613328125e+03, 5.83378125e+03, 5.93811921875e+03, 6.049937265625e+03, 6.20453734375e+03, 6.40968916015625e+03, 6.575891845703125e+03, 6.759911640625e+03, 6.86686986328125e+03, 6.9659306640625e+03, 7.08148271484375e+03, 7.221912109375e+03] checkResultsAccordingToASHRAEHeatingOrTempMax.upperLimit=[7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03, 7.827e+03] checkResultsAccordingToASHRAECoolingOrTempMin.lowerLimit=[-8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02, -8.75e+02] -AnnualCoolingLoad=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -1.925951838493347e-01, -6.626084446907043e-01, -6.626084446907043e-01, -6.626084446907043e-01, -6.626084446907043e-01, -6.626084446907043e-01, -6.626084446907043e-01, -6.626084446907043e-01, -1.503531336784363e+00, -1.503531336784363e+00, -1.503531336784363e+00, -1.503531336784363e+00, -1.503531336784363e+00, -2.901191711425781e+00, -5.50141716003418e+00, -7.535253047943115e+00, -9.29857349395752e+00, -9.29857349395752e+00, -1.214264392852783e+01, -1.622999000549316e+01, -1.652868270874023e+01, -1.882126617431641e+01, -2.162690734863281e+01, -2.330549430847168e+01, -2.77515926361084e+01, -4.490623474121094e+01, -7.210820007324219e+01, -7.886502838134766e+01, -8.932368133544922e+01, -9.839833831787109e+01, -1.117216339111328e+02, -1.297363296508789e+02, -1.533839263916016e+02, -1.839387817382812e+02, -2.071879248046875e+02, -2.136570587158203e+02, -2.291884613037109e+02, -2.366708700561524e+02, -2.461369018554688e+02, -2.704253845214844e+02, -2.71872314453125e+02, -2.783208618164062e+02, -2.990023193359375e+02, -3.109974639892578e+02, -3.2499462890625e+02, -3.400458068847656e+02, -3.400458068847656e+02, -3.425897827148438e+02, -3.457656555175781e+02, -3.458477478027344e+02, -3.476662902832031e+02, -3.496750793457031e+02, -3.496750793457031e+02, -3.497781677246094e+02, -3.497781677246094e+02, -3.497781677246094e+02, -3.507335510253906e+02, -3.507335510253906e+02, -3.507335510253906e+02, -3.507335510253906e+02, -3.507335510253906e+02, -3.507335510253906e+02, -3.507335510253906e+02, -3.507335510253906e+02, -3.507335510253906e+02, -3.507335510253906e+02, -3.507335510253906e+02, -3.507335510253906e+02, -3.507335510253906e+02, -3.507335510253906e+02, -3.507335510253906e+02, -3.507335510253906e+02, -3.507335510253906e+02, -3.507335510253906e+02, -3.507335510253906e+02, -3.507335510253906e+02, -3.507335510253906e+02] +AnnualCoolingLoad=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -1.906495541334152e-01, -6.585839986801147e-01, -6.585839986801147e-01, -6.585839986801147e-01, -6.585839986801147e-01, -6.585839986801147e-01, -6.585839986801147e-01, -6.585839986801147e-01, -1.495771169662476e+00, -1.495771169662476e+00, -1.495771169662476e+00, -1.495771169662476e+00, -1.495771169662476e+00, -2.890789031982422e+00, -5.484135627746582e+00, -7.513307094573975e+00, -9.272046089172363e+00, -9.272046089172363e+00, -1.211132049560547e+01, -1.619174003601074e+01, -1.648847007751465e+01, -1.877862167358398e+01, -2.158172225952148e+01, -2.325775337219238e+01, -2.77004508972168e+01, -4.484724807739258e+01, -7.204277801513672e+01, -7.879960632324219e+01, -8.925372406005859e+01, -9.832605743408203e+01, -1.116427841186523e+02, -1.296491851806641e+02, -1.532925720214844e+02, -1.838416900634766e+02, -2.070857366943359e+02, -2.135506591796875e+02, -2.2907421875e+02, -2.365525381469727e+02, -2.460142059326172e+02, -2.702948913574219e+02, -2.717400817871094e+02, -2.781832885742188e+02, -2.988557434082031e+02, -3.108449755859375e+02, -3.248339233398438e+02, -3.398744506835938e+02, -3.398744506835938e+02, -3.424156799316406e+02, -3.45586181640625e+02, -3.456663818359375e+02, -3.474822998046875e+02, -3.49486083984375e+02, -3.49486083984375e+02, -3.495873413085938e+02, -3.495873413085938e+02, -3.495873413085938e+02, -3.50538330078125e+02, -3.50538330078125e+02, -3.50538330078125e+02, -3.50538330078125e+02, -3.50538330078125e+02, -3.50538330078125e+02, -3.50538330078125e+02, -3.50538330078125e+02, -3.50538330078125e+02, -3.50538330078125e+02, -3.50538330078125e+02, -3.50538330078125e+02, -3.50538330078125e+02, -3.50538330078125e+02, -3.50538330078125e+02, -3.50538330078125e+02, -3.50538330078125e+02, -3.50538330078125e+02, -3.50538330078125e+02, -3.50538330078125e+02, -3.50538330078125e+02] checkResultsAccordingToASHRAECoolingOrTempMin.upperLimit=[-4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02, -4.22e+02] checkResultsAccordingToASHRAEHeatingOrTempMax.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00] checkResultsAccordingToASHRAECoolingOrTempMin.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -Room.thermRoom.T=[2.941499938964844e+02, 2.93149956665039e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.93149970703125e+02, 2.931499938964844e+02, 2.931499328613281e+02, 2.931500408935547e+02, 2.931499938964844e+02, 2.931499627685547e+02, 2.931500549316406e+02, 2.931499633789062e+02, 2.931499328613281e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499420166016e+02, 2.931500854492188e+02, 2.931499713134766e+02, 2.931499633789062e+02, 2.931500854492188e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931500207519532e+02, 2.935219555664062e+02, 2.931500549316406e+02, 2.931499938964844e+02, 2.942310498046875e+02, 2.931499938964844e+02, 2.9314990234375e+02, 2.931500122070312e+02, 2.931499633789062e+02, 2.974474963378906e+02, 2.931500549316406e+02, 2.931499633789062e+02, 2.965246673583985e+02, 2.931500268554688e+02, 2.937674133300781e+02, 2.97243564453125e+02, 2.931500854492188e+02, 2.943220368781976e+02, 2.977137164306641e+02, 2.931500854492188e+02, 2.979932897949218e+02, 2.931500244140625e+02, 2.979357299804688e+02, 2.931499938964844e+02, 2.95392978515625e+02, 2.943572644042969e+02, 2.994441754150391e+02, 3.001500244140625e+02, 2.931500006103516e+02, 3.001499328613281e+02, 2.976136175537109e+02, 2.9525263671875e+02, 3.001499298095703e+02, 2.994756787109375e+02, 2.989056109619141e+02, 3.001499560546875e+02, 2.967835662841797e+02, 2.953447087015982e+02, 3.001498590087891e+02, 2.938598669433593e+02, 2.982796173095703e+02, 2.993086633300781e+02, 2.931500549316406e+02, 3.001311849296291e+02, 3.001500549316406e+02, 2.931499206542969e+02, 2.999748815917969e+02, 2.983875366210938e+02, 2.931499938964844e+02, 2.958270886230468e+02, 2.93886244506836e+02, 2.931499719238281e+02, 2.931499938964844e+02, 2.931572274221501e+02, 2.931500244140625e+02, 2.938235815429687e+02, 2.931501275634766e+02, 2.931499938964844e+02, 2.940196832275391e+02, 2.931500573730469e+02, 2.931499938964844e+02, 2.931500256347656e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499456787109e+02, 2.943906982421875e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931500549316406e+02, 2.931500036621094e+02, 2.931499938964844e+02, 2.931501159667969e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.93150146484375e+02, 2.931499938964844e+02] -Room.starRoom.T=[2.895909423828125e+02, 2.895756396484375e+02, 2.903130224609375e+02, 2.90792787475586e+02, 2.907774609375e+02, 2.905420776367188e+02, 2.903709545898437e+02, 2.908440380859375e+02, 2.895990771484375e+02, 2.910117059326172e+02, 2.909184936523437e+02, 2.907815417480469e+02, 2.920516259765625e+02, 2.902219409179688e+02, 2.903298315429687e+02, 2.926738525390625e+02, 2.919537158203125e+02, 2.906522106933594e+02, 2.910766979980469e+02, 2.913549475097656e+02, 2.909123657226563e+02, 2.912046673583984e+02, 2.904150988769532e+02, 2.916996350097656e+02, 2.936864807128906e+02, 2.915697937011719e+02, 2.913992614746094e+02, 2.943028460693359e+02, 2.90859111328125e+02, 2.924666833496094e+02, 2.926864624023438e+02, 2.920015972900391e+02, 2.975136657714844e+02, 2.924324060058594e+02, 2.923234008789062e+02, 2.965858734130859e+02, 2.9292703125e+02, 2.93913560180664e+02, 2.973183068847656e+02, 2.928836492919922e+02, 2.944626927815858e+02, 2.978257305908203e+02, 2.930372986708672e+02, 2.981044055175781e+02, 2.922741552734375e+02, 2.979860595703125e+02, 2.924856335449219e+02, 2.954721734619141e+02, 2.944696166992188e+02, 2.995104718017578e+02, 3.018372802734375e+02, 2.925297076416016e+02, 3.012060803222656e+02, 2.976843634033203e+02, 2.9536634765625e+02, 3.016270172119141e+02, 2.995424609375e+02, 2.989674597167969e+02, 3.012855236816406e+02, 2.968578576660156e+02, 2.954367293582932e+02, 3.008530975341797e+02, 2.939482446289063e+02, 2.983446948242188e+02, 2.993975769042969e+02, 2.931481366638744e+02, 3.001732660337936e+02, 3.017522869873047e+02, 2.929553076171875e+02, 3.000232720947266e+02, 2.984364196777344e+02, 2.919521850585937e+02, 2.959165930175781e+02, 2.940805487060547e+02, 2.917346374511719e+02, 2.912324523925781e+02, 2.932021368322238e+02, 2.912420483398437e+02, 2.938858483886719e+02, 2.923862097167969e+02, 2.918333801269531e+02, 2.941379730224609e+02, 2.9182810546875e+02, 2.9081783203125e+02, 2.917938220214844e+02, 2.910018981933594e+02, 2.912173400878906e+02, 2.915063146972656e+02, 2.904485314941406e+02, 2.917465002441406e+02, 2.944441650390625e+02, 2.921630603027344e+02, 2.903669177246094e+02, 2.911518786621094e+02, 2.905529553222656e+02, 2.905853729248047e+02, 2.910570373535156e+02, 2.905041436767578e+02, 2.91764462890625e+02, 2.903984631347656e+02, 2.906730346679688e+02] +Room.thermRoom.T=[2.941499938964844e+02, 2.93149956665039e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.93149970703125e+02, 2.931499938964844e+02, 2.931499328613281e+02, 2.931500408935547e+02, 2.931499938964844e+02, 2.931499627685547e+02, 2.931500549316406e+02, 2.931499633789062e+02, 2.931499328613281e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499420166016e+02, 2.931500854492188e+02, 2.931499713134766e+02, 2.931499633789062e+02, 2.931500854492188e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931500207519532e+02, 2.9352109375e+02, 2.931500549316406e+02, 2.931499938964844e+02, 2.942287957763672e+02, 2.931499938964844e+02, 2.9314990234375e+02, 2.931500122070312e+02, 2.931499633789062e+02, 2.974472766113281e+02, 2.931500549316406e+02, 2.931499633789062e+02, 2.965233184814453e+02, 2.931500268554688e+02, 2.937730236816406e+02, 2.972420544433594e+02, 2.931500854492188e+02, 2.943258879573547e+02, 2.977093530273438e+02, 2.931500854492188e+02, 2.979964721679688e+02, 2.931500244140625e+02, 2.979371765136719e+02, 2.931499938964844e+02, 2.953903009033203e+02, 2.943615234375e+02, 2.994456884765625e+02, 3.001500244140625e+02, 2.931500006103516e+02, 3.001499328613281e+02, 2.976097729492187e+02, 2.952569213867188e+02, 3.001499298095703e+02, 2.994717053222656e+02, 2.9890728515625e+02, 3.001499560546875e+02, 2.967818988037109e+02, 2.953484934225252e+02, 3.001498590087891e+02, 2.938581433105469e+02, 2.982816931152344e+02, 2.993036242675781e+02, 2.931500549316406e+02, 3.001312969625986e+02, 3.001500549316406e+02, 2.931499487304687e+02, 2.999756103515625e+02, 2.983813598632813e+02, 2.931499938964844e+02, 2.958278247070313e+02, 2.938840093994141e+02, 2.931499719238281e+02, 2.931499938964844e+02, 2.931569618252057e+02, 2.931500244140625e+02, 2.938230859375e+02, 2.931501275634766e+02, 2.931499938964844e+02, 2.940189489746094e+02, 2.931500573730469e+02, 2.931499938964844e+02, 2.931500256347656e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499456787109e+02, 2.9438857421875e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931500549316406e+02, 2.931500036621094e+02, 2.931499938964844e+02, 2.931501159667969e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.93150146484375e+02, 2.931499938964844e+02] +Room.starRoom.T=[2.895909423828125e+02, 2.895756396484375e+02, 2.903130224609375e+02, 2.90792787475586e+02, 2.907774609375e+02, 2.905420501708984e+02, 2.903709545898437e+02, 2.908440380859375e+02, 2.895990771484375e+02, 2.910117059326172e+02, 2.909184997558594e+02, 2.907815417480469e+02, 2.920516259765625e+02, 2.902219409179688e+02, 2.903298315429687e+02, 2.926738525390625e+02, 2.919537158203125e+02, 2.906522106933594e+02, 2.910766979980469e+02, 2.913549725341797e+02, 2.909123962402344e+02, 2.912046673583984e+02, 2.904150988769532e+02, 2.916996350097656e+02, 2.936860632324219e+02, 2.915697937011719e+02, 2.913992614746094e+02, 2.943016796875e+02, 2.908590808105469e+02, 2.924668127441406e+02, 2.926864624023438e+02, 2.920016998291015e+02, 2.975125866699219e+02, 2.924323980712891e+02, 2.92323662109375e+02, 2.965841979980469e+02, 2.9292703125e+02, 2.939179541015625e+02, 2.973167248535156e+02, 2.928836492919922e+02, 2.944653841927742e+02, 2.978223107910156e+02, 2.930373667652497e+02, 2.981064025878906e+02, 2.922741552734375e+02, 2.979872131347656e+02, 2.924856640625e+02, 2.954704016113281e+02, 2.944731628417969e+02, 2.995112829589844e+02, 3.018371887207031e+02, 2.925297143554687e+02, 3.012060803222656e+02, 2.976816082763672e+02, 2.953696826171875e+02, 3.016270446777344e+02, 2.995401586914062e+02, 2.989685656738282e+02, 3.012855236816406e+02, 2.968573486328125e+02, 2.954398432337408e+02, 3.008530670166016e+02, 2.939477624511719e+02, 2.983461645507812e+02, 2.993933728027343e+02, 2.93148674890193e+02, 3.001732918875558e+02, 3.017521875e+02, 2.929570983886719e+02, 3.00023510131836e+02, 2.984319641113281e+02, 2.919521966552734e+02, 2.959162963867187e+02, 2.940795788574219e+02, 2.917346594238281e+02, 2.912324523925781e+02, 2.932017934415028e+02, 2.912420178222656e+02, 2.938853491210937e+02, 2.92386171875e+02, 2.9183349609375e+02, 2.941372741699219e+02, 2.918280749511719e+02, 2.9081783203125e+02, 2.917938220214844e+02, 2.910019073486328e+02, 2.912173425292969e+02, 2.915063146972656e+02, 2.904485314941406e+02, 2.917464825439453e+02, 2.944428833007813e+02, 2.921630603027344e+02, 2.903669177246094e+02, 2.911518621826172e+02, 2.905529760742187e+02, 2.905853698730469e+02, 2.910570678710938e+02, 2.905041436767578e+02, 2.917644763183594e+02, 2.903984631347656e+02, 2.906730041503906e+02] TransmittedSolarRadiation_room=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case440.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case440.txt index 5a0ca1e64b..54588a9af8 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case440.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case440.txt @@ -1,20 +1,20 @@ -last-generated=2021-05-25 +last-generated=2022-07-06 statistics-simulation= { "linear": "0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0", "nonlinear": "13", - "number of continuous time states": "23", + "number of continuous time states": "25", "numerical Jacobians": "0" } time=[0e+00, 3.15396e+07] checkResultsAccordingToASHRAEHeatingOrTempMax.lowerLimit=[4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03, 4.449e+03] -AnnualHeatingLoad=[0e+00, 1.953831939697266e+02, 3.05490732421875e+02, 3.747193884277344e+02, 4.6588427734375e+02, 5.564992248535157e+02, 7.103348095703125e+02, 7.90435673828125e+02, 8.810189404296875e+02, 9.772047241210937e+02, 1.156053100585938e+03, 1.273592087402344e+03, 1.334922241210938e+03, 1.465093344726562e+03, 1.561956298828125e+03, 1.661274780273438e+03, 1.7345400390625e+03, 1.828545830078125e+03, 1.947425659179688e+03, 2.036365559082031e+03, 2.0883646484375e+03, 2.16213720703125e+03, 2.237858408203125e+03, 2.312443393554688e+03, 2.357818359375e+03, 2.400642211914062e+03, 2.4837812109375e+03, 2.534489501953125e+03, 2.588212880859375e+03, 2.665972412109375e+03, 2.698170166015625e+03, 2.730298178710937e+03, 2.743145751953125e+03, 2.79801611328125e+03, 2.835403408203125e+03, 2.876279296875e+03, 2.91667333984375e+03, 2.943853515625e+03, 2.95037939453125e+03, 2.969084428710938e+03, 2.980060302734375e+03, 3.00028515625e+03, 3.016331273933642e+03, 3.0224716796875e+03, 3.052707265625e+03, 3.07543408203125e+03, 3.084838095703125e+03, 3.097452880859375e+03, 3.104735107421875e+03, 3.1073466796875e+03, 3.107767333984375e+03, 3.114546025390625e+03, 3.11860009765625e+03, 3.1186005859375e+03, 3.11946142578125e+03, 3.11956103515625e+03, 3.11956103515625e+03, 3.11956103515625e+03, 3.11956103515625e+03, 3.11956103515625e+03, 3.119798828125e+03, 3.123384521484375e+03, 3.126068603515625e+03, 3.12641748046875e+03, 3.132413330078125e+03, 3.138314921270941e+03, 3.138438720703125e+03, 3.138451904296875e+03, 3.145025712890625e+03, 3.147376708984375e+03, 3.159552978515625e+03, 3.172869306640625e+03, 3.19913623046875e+03, 3.225207763671875e+03, 3.25356220703125e+03, 3.279091430664062e+03, 3.329854736328125e+03, 3.361517612304688e+03, 3.403802001953125e+03, 3.44209130859375e+03, 3.47579384765625e+03, 3.509119140625e+03, 3.559468058821299e+03, 3.636949536132813e+03, 3.724762451171875e+03, 3.79561826171875e+03, 3.848730703125e+03, 3.938882568359375e+03, 4.011028818359375e+03, 4.074534814453125e+03, 4.1664111328125e+03, 4.237353564453125e+03, 4.319751953125e+03, 4.4251328125e+03, 4.57673779296875e+03, 4.677014453125e+03, 4.80102880859375e+03, 4.86794615234375e+03, 4.93393115234375e+03, 5.01078662109375e+03, 5.09575830078125e+03] +AnnualHeatingLoad=[0e+00, 1.953787994384766e+02, 3.054728356933594e+02, 3.746888513183594e+02, 4.658463134765625e+02, 5.564478271484375e+02, 7.102764624023438e+02, 7.903678967285156e+02, 8.809380688476563e+02, 9.771121594682605e+02, 1.155955322265625e+03, 1.273484909667969e+03, 1.334805786132812e+03, 1.464969948730469e+03, 1.561822143554688e+03, 1.661132568359375e+03, 1.734385375976562e+03, 1.828378471679687e+03, 1.94725146484375e+03, 2.036178403320313e+03, 2.088165087890625e+03, 2.161927978515625e+03, 2.23763693359375e+03, 2.312213168945313e+03, 2.3575771484375e+03, 2.400389038085938e+03, 2.48352126953125e+03, 2.53422021484375e+03, 2.58793525390625e+03, 2.665687744140625e+03, 2.697874755859375e+03, 2.729993002929687e+03, 2.7428330078125e+03, 2.797694580078125e+03, 2.835071376953125e+03, 2.87594140625e+03, 2.916326904296875e+03, 2.94350048828125e+03, 2.95001806640625e+03, 2.968714067382813e+03, 2.979682861328125e+03, 2.99989892578125e+03, 3.015935766121142e+03, 3.0220693359375e+03, 3.052298330078125e+03, 3.0750205078125e+03, 3.0844190625e+03, 3.09702587890625e+03, 3.10430126953125e+03, 3.10691064453125e+03, 3.10732958984375e+03, 3.114103154296875e+03, 3.118153076171875e+03, 3.118153076171875e+03, 3.11901220703125e+03, 3.119109619140625e+03, 3.119109619140625e+03, 3.119109619140625e+03, 3.119109619140625e+03, 3.119109619140625e+03, 3.119345947265625e+03, 3.12292626953125e+03, 3.1256064453125e+03, 3.12595361328125e+03, 3.131943603515625e+03, 3.137836993328937e+03, 3.137959228515625e+03, 3.137971435546875e+03, 3.1445372265625e+03, 3.14688232421875e+03, 3.1590498046875e+03, 3.1723563671875e+03, 3.198617919921875e+03, 3.22467919921875e+03, 3.25302443359375e+03, 3.27854345703125e+03, 3.329297607421875e+03, 3.36095244140625e+03, 3.40322802734375e+03, 3.44150634765625e+03, 3.47519775390625e+03, 3.508515625e+03, 3.558852353231189e+03, 3.636325205078125e+03, 3.724132080078125e+03, 3.794975439453125e+03, 3.848076689453125e+03, 3.93822216796875e+03, 4.010356455078125e+03, 4.073851733398437e+03, 4.16571630859375e+03, 4.236649462890625e+03, 4.31903943359375e+03, 4.42440966796875e+03, 4.57600455078125e+03, 4.67626884765625e+03, 4.8002724609375e+03, 4.86717759765625e+03, 4.93315283203125e+03, 5.00999609375e+03, 5.09495458984375e+03] checkResultsAccordingToASHRAEHeatingOrTempMax.upperLimit=[5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03, 5.811e+03] checkResultsAccordingToASHRAECoolingOrTempMin.lowerLimit=[-5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03, -5.204e+03] -AnnualCoolingLoad=[0e+00, -1.701638721466064e+01, -6.825442504882812e+01, -1.365470275878906e+02, -1.864968048095703e+02, -2.335522918701172e+02, -2.574597778320312e+02, -3.180311584472656e+02, -3.583099365234375e+02, -4.111535034179688e+02, -4.287951721191406e+02, -4.705610961914062e+02, -5.272662963867188e+02, -5.353549194335938e+02, -5.759391479492188e+02, -6.084746704101562e+02, -6.534240112304688e+02, -6.943316650390625e+02, -7.287812377929688e+02, -7.58058837890625e+02, -8.08824462890625e+02, -8.40201171875e+02, -8.849075317382812e+02, -9.032283935546875e+02, -9.64684716796875e+02, -1.018638244628906e+03, -1.03233984375e+03, -1.065852006835938e+03, -1.083269287109375e+03, -1.105329833984375e+03, -1.135644218732467e+03, -1.164848266601562e+03, -1.21598291015625e+03, -1.228225830078125e+03, -1.254209228515625e+03, -1.262492065429688e+03, -1.263382568359375e+03, -1.284225708007812e+03, -1.317455932617188e+03, -1.338252563476562e+03, -1.36506787109375e+03, -1.369760236816406e+03, -1.38788525390625e+03, -1.411959350585938e+03, -1.418268432617188e+03, -1.433489990234375e+03, -1.446247314453125e+03, -1.458629028320312e+03, -1.479171997070312e+03, -1.521501586914062e+03, -1.570899536132812e+03, -1.58937548828125e+03, -1.619032495117187e+03, -1.644188972377847e+03, -1.682934814453125e+03, -1.732805139160156e+03, -1.782468466796875e+03, -1.849395629882812e+03, -1.910145849609375e+03, -1.93962744140625e+03, -1.997386474609375e+03, -2.034552885742188e+03, -2.070503662109375e+03, -2.152612548828125e+03, -2.192970478515625e+03, -2.24010791015625e+03, -2.331653706631525e+03, -2.403597333984375e+03, -2.4831767578125e+03, -2.56951220703125e+03, -2.621654345703125e+03, -2.673056640625e+03, -2.7415126953125e+03, -2.805810498046875e+03, -2.87176416015625e+03, -2.949269775390625e+03, -3.0184411328125e+03, -3.087863037109375e+03, -3.13883724609375e+03, -3.215981201171875e+03, -3.320393798828125e+03, -3.4059469140625e+03, -3.46418603515625e+03, -3.518192138671875e+03, -3.552675908203125e+03, -3.6138955078125e+03, -3.667755615234375e+03, -3.69286279296875e+03, -3.732900390625e+03, -3.79811083984375e+03, -3.82733505859375e+03, -3.867974853515625e+03, -3.899651611328125e+03, -3.93236767578125e+03, -3.953333251953125e+03, -3.99459765625e+03, -4.027619873046875e+03, -4.079890625e+03, -4.14226708984375e+03, -4.188650390625e+03, -4.24869384765625e+03] +AnnualCoolingLoad=[0e+00, -1.700966251373291e+01, -6.823713684082031e+01, -1.365158386230469e+02, -1.864552221679687e+02, -2.335008239746094e+02, -2.574015197753906e+02, -3.179611206054688e+02, -3.582265625e+02, -4.110560607910156e+02, -4.2869169921875e+02, -4.704495239257812e+02, -5.271407470703125e+02, -5.352259521484375e+02, -5.757998657226562e+02, -6.083253784179688e+02, -6.532638549804688e+02, -6.94158935546875e+02, -7.28598310546875e+02, -7.57865478515625e+02, -8.086179809570312e+02, -8.3998095703125e+02, -8.846763916015625e+02, -9.02987548828125e+02, -9.644296948242187e+02, -1.018372924804688e+03, -1.032067749023438e+03, -1.065568344726563e+03, -1.082978271484375e+03, -1.10502880859375e+03, -1.135331820936088e+03, -1.164523803710938e+03, -1.215643310546875e+03, -1.227880004882812e+03, -1.25385009765625e+03, -1.26212353515625e+03, -1.26301123046875e+03, -1.283844848632812e+03, -1.31706298828125e+03, -1.337850219726562e+03, -1.364651977539062e+03, -1.369334455566406e+03, -1.387450317382812e+03, -1.411511962890625e+03, -1.417815185546875e+03, -1.433026977539062e+03, -1.445780029296875e+03, -1.45815234375e+03, -1.4786826171875e+03, -1.521002807617188e+03, -1.570393798828125e+03, -1.588864868164062e+03, -1.618510454101563e+03, -1.643661459960937e+03, -1.682397705078125e+03, -1.7322583984375e+03, -1.781916264648437e+03, -1.848837524414062e+03, -1.90958115234375e+03, -1.939056030273438e+03, -1.996805541992188e+03, -2.033964365234375e+03, -2.069908203125e+03, -2.1520078125e+03, -2.192353779296875e+03, -2.239480712890625e+03, -2.331016391544691e+03, -2.402953046875e+03, -2.48252099609375e+03, -2.56884375e+03, -2.62097275390625e+03, -2.672364501953125e+03, -2.740809814453125e+03, -2.805094418945313e+03, -2.871040283203125e+03, -2.948531982421875e+03, -3.01769158203125e+03, -3.08710498046875e+03, -3.13806669921875e+03, -3.215199462890625e+03, -3.319597900390625e+03, -3.40513734375e+03, -3.46336572265625e+03, -3.517361328125e+03, -3.551834716796875e+03, -3.613043701171875e+03, -3.6668896484375e+03, -3.69198974609375e+03, -3.732015380859375e+03, -3.7972119140625e+03, -3.826422509765625e+03, -3.867055908203125e+03, -3.898723876953125e+03, -3.931429443359375e+03, -3.952385009765625e+03, -3.993635498046875e+03, -4.0266474609375e+03, -4.078904541015625e+03, -4.14126708984375e+03, -4.18764013671875e+03, -4.247669921875e+03] checkResultsAccordingToASHRAECoolingOrTempMin.upperLimit=[-3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03, -3.967e+03] checkResultsAccordingToASHRAEHeatingOrTempMax.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00] checkResultsAccordingToASHRAECoolingOrTempMin.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00] -Room.thermRoom.T=[2.941499938964844e+02, 3.001500628662109e+02, 2.931500073242187e+02, 2.931499328613281e+02, 3.001498864746094e+02, 2.931499938964844e+02, 2.931498815917969e+02, 2.931503869628907e+02, 2.931499938964844e+02, 2.931495989990235e+02, 3.001503295898438e+02, 2.931499633789062e+02, 2.955897619628906e+02, 2.931500244140625e+02, 2.931499938964844e+02, 3.000789840839026e+02, 2.971824682617187e+02, 2.931499633789062e+02, 3.001496594238281e+02, 2.931502435302734e+02, 2.931499938964844e+02, 2.990371600341797e+02, 2.931500244140625e+02, 2.931499920654297e+02, 3.001499157714844e+02, 2.931500549316406e+02, 2.931499243164063e+02, 3.001502130126953e+02, 2.931499938964844e+02, 2.951261529541015e+02, 3.001501281299968e+02, 2.931499633789062e+02, 2.993943432617187e+02, 2.965706555175781e+02, 2.931499633789062e+02, 2.998169616699219e+02, 2.94072353515625e+02, 2.938396691894531e+02, 3.001279558197224e+02, 2.931501513671875e+02, 2.947352246309804e+02, 3.0014990234375e+02, 2.931500854492188e+02, 2.980271002197265e+02, 2.931500036621094e+02, 2.979439758300781e+02, 2.931499328613281e+02, 3.000892818576687e+02, 2.94364765625e+02, 2.995090032958984e+02, 3.001500549316406e+02, 2.931500006103516e+02, 3.001499328613281e+02, 3.001501343984274e+02, 2.952698376464843e+02, 3.0014990234375e+02, 3.001504235839844e+02, 2.989196661376953e+02, 3.001498876953125e+02, 2.97130009765625e+02, 2.954628322544072e+02, 3.001496759033203e+02, 2.93877294921875e+02, 2.984346795654297e+02, 3.001498364257812e+02, 2.931500549316406e+02, 3.001499633789062e+02, 3.00150009765625e+02, 2.931498986816407e+02, 3.00058472290039e+02, 3.001501342773437e+02, 2.931499938964844e+02, 2.987843481445312e+02, 3.001503527832031e+02, 2.931499719238281e+02, 2.931499481201172e+02, 3.00153291015625e+02, 2.931500244140625e+02, 3.001497546386719e+02, 2.963999011230469e+02, 2.931499816894531e+02, 3.00149619140625e+02, 2.931502770877579e+02, 2.931499938964844e+02, 3.001498742675781e+02, 2.931499938964844e+02, 2.931499304199219e+02, 2.980134747314453e+02, 2.931499938964844e+02, 2.93148759765625e+02, 3.001501281738281e+02, 2.931499938964844e+02, 2.931498791503906e+02, 2.933589135742188e+02, 2.931500036621094e+02, 2.931499298095703e+02, 2.991688507531077e+02, 2.931499835205078e+02, 2.982631628417969e+02, 2.934257334311177e+02, 2.931499938964844e+02] -Room.starRoom.T=[2.895909423828125e+02, 3.032895220947266e+02, 2.903237731933594e+02, 2.910650164794922e+02, 3.059815905761719e+02, 2.905437103271485e+02, 2.908779064941406e+02, 2.92055054321289e+02, 2.896023156738281e+02, 2.926035034179687e+02, 3.048898376464844e+02, 2.907906439208984e+02, 2.958754113769531e+02, 2.906296643066406e+02, 2.903500793457031e+02, 3.005228253507377e+02, 2.980473400878906e+02, 2.9070705078125e+02, 3.013785607910156e+02, 2.925189227294922e+02, 2.910056762695312e+02, 2.998050872802734e+02, 2.904333605957031e+02, 2.919485540771485e+02, 3.060812292480469e+02, 2.915717163085938e+02, 2.919159777832031e+02, 3.0378736328125e+02, 2.908605639648438e+02, 2.9536759765625e+02, 3.015188061150871e+02, 2.920482147216797e+02, 2.995003979492187e+02, 2.972743768310547e+02, 2.923974255371094e+02, 2.999431365966797e+02, 2.944948962402344e+02, 2.939873553466797e+02, 3.002902303089881e+02, 2.930234838867187e+02, 2.948846383076703e+02, 3.015784027099609e+02, 2.930392653681938e+02, 2.98138920288086e+02, 2.932462145996094e+02, 2.979944549560547e+02, 2.93047939453125e+02, 3.003858391059624e+02, 2.944772839355469e+02, 2.995768756103516e+02, 3.041625061035156e+02, 2.925320080566406e+02, 3.012708020019531e+02, 3.008883871040653e+02, 2.953838879394531e+02, 3.018166229248047e+02, 3.009523742675781e+02, 2.989817590332031e+02, 3.018020617675782e+02, 2.972758868408203e+02, 2.955570774468686e+02, 3.025785693359375e+02, 2.939743408203125e+02, 2.985025030517578e+02, 3.049513745117188e+02, 2.931595252912069e+02, 3.002176796505336e+02, 3.075318389892578e+02, 2.929785778808593e+02, 3.001126208496094e+02, 3.073913330078125e+02, 2.919825152587891e+02, 2.989388562011719e+02, 3.054774841308594e+02, 2.917859020996094e+02, 2.916557312011719e+02, 3.026475354003906e+02, 2.912436755371094e+02, 3.012594274902344e+02, 2.97087348022461e+02, 2.919916442871094e+02, 3.050490960693359e+02, 2.929184780083814e+02, 2.909619921875e+02, 3.056435827636719e+02, 2.910046630859375e+02, 2.916383935546875e+02, 2.991042327880859e+02, 2.90451103515625e+02, 2.929507641601563e+02, 3.085502197265625e+02, 2.921687042236328e+02, 2.911062231445313e+02, 2.940114575195312e+02, 2.905614099121094e+02, 2.911789337158203e+02, 3.004363535613262e+02, 2.905320391845703e+02, 2.987014758300782e+02, 2.943424802765133e+02, 2.907228088378906e+02] -TransmittedSolarRadiation_room=[0e+00, 1.13098678779602e+01, 2.616000816345215e+01, 4.389702224731445e+01, 5.918946899414063e+01, 7.433148193359375e+01, 8.556221771240234e+01, 1.003803457641602e+02, 1.156238861083984e+02, 1.345734252929688e+02, 1.428007415771484e+02, 1.544977569580078e+02, 1.705395050048828e+02, 1.774759875488281e+02, 1.932674865722656e+02, 2.07533004024335e+02, 2.213079046630859e+02, 2.364044189453125e+02, 2.496856561279297e+02, 2.609842761230469e+02, 2.750820007324219e+02, 2.8825716796875e+02, 2.998603942871094e+02, 3.089231262207031e+02, 3.219286462402344e+02, 3.322940368652344e+02, 3.404440002441406e+02, 3.503628240966797e+02, 3.563298645019531e+02, 3.649153442382812e+02, 3.725986760959591e+02, 3.801107482910156e+02, 3.884582214355469e+02, 3.934166845703125e+02, 4.005338134765625e+02, 4.054497375488281e+02, 4.083146032714844e+02, 4.135294189453125e+02, 4.187025146484375e+02, 4.223145025634765e+02, 4.269164733886719e+02, 4.303503649902344e+02, 4.334124145507812e+02, 4.371591796875e+02, 4.396185473632813e+02, 4.423697509765625e+02, 4.45265625e+02, 4.48124752002758e+02, 4.508363037109375e+02, 4.544309692382812e+02, 4.576408996582031e+02, 4.600694580078125e+02, 4.63459228515625e+02, 4.661294517545118e+02, 4.69744384765625e+02, 4.742583618164062e+02, 4.778941906738281e+02, 4.828934326171875e+02, 4.881265795898437e+02, 4.913827813720703e+02, 4.974044189453125e+02, 5.027870428466797e+02, 5.070563415527344e+02, 5.151288452148438e+02, 5.222710522460937e+02, 5.284690551757812e+02, 5.384776000976562e+02, 5.474805065917968e+02, 5.567799072265625e+02, 5.671594848632812e+02, 5.774887329101563e+02, 5.86092041015625e+02, 5.974486694335938e+02, 6.097855114746094e+02, 6.212889404296875e+02, 6.34704833984375e+02, 6.481266088867187e+02, 6.6020654296875e+02, 6.730773706054688e+02, 6.872152111816406e+02, 7.052291259765625e+02, 7.225552221679687e+02, 7.355805952053626e+02, 7.4963525390625e+02, 7.63005849609375e+02, 7.77535888671875e+02, 7.925584716796875e+02, 8.022992272949218e+02, 8.157471313476562e+02, 8.338680419921875e+02, 8.47075634765625e+02, 8.581134033203125e+02, 8.684429321289062e+02, 8.816122680664063e+02, 8.931954956054688e+02, 9.103622436523438e+02, 9.255087214126962e+02, 9.402752075195312e+02, 9.567530541992187e+02, 9.704003858190822e+02, 9.888678588867188e+02] +Room.thermRoom.T=[2.941499938964844e+02, 3.001500628662109e+02, 2.931500073242187e+02, 2.931499328613281e+02, 3.001498864746094e+02, 2.931499938964844e+02, 2.931498815917969e+02, 2.93150419921875e+02, 2.931499938964844e+02, 2.93149786378649e+02, 3.001503295898438e+02, 2.931499633789062e+02, 2.955965673828125e+02, 2.931500244140625e+02, 2.931499938964844e+02, 3.000793261666768e+02, 2.971725170898437e+02, 2.931499633789062e+02, 3.001496594238281e+02, 2.931502435302734e+02, 2.931499938964844e+02, 2.990394409179688e+02, 2.931500244140625e+02, 2.931499920654297e+02, 3.001499157714844e+02, 2.931500549316406e+02, 2.931499243164063e+02, 3.001502130126953e+02, 2.931499938964844e+02, 2.95132816772461e+02, 3.001501269972468e+02, 2.931499633789062e+02, 2.993965026855469e+02, 2.965631311035156e+02, 2.931499633789062e+02, 2.998181335449219e+02, 2.940690014648437e+02, 2.93845336303711e+02, 3.001279667220867e+02, 2.931501513671875e+02, 2.947404267013299e+02, 3.0014990234375e+02, 2.931500854492188e+02, 2.980302990722656e+02, 2.931500036621094e+02, 2.97945425415039e+02, 2.931499060058593e+02, 3.000814788120111e+02, 2.943690246582031e+02, 2.995104418945313e+02, 3.001500549316406e+02, 2.931500006103516e+02, 3.001499328613281e+02, 3.001501330566406e+02, 2.952741223144531e+02, 3.0014990234375e+02, 3.001514611816406e+02, 2.989213403320313e+02, 3.001498876953125e+02, 2.971269879150391e+02, 2.95466677469251e+02, 3.00149658203125e+02, 2.938754516601563e+02, 2.984367858886719e+02, 3.001498364257812e+02, 2.931500549316406e+02, 3.001499633789062e+02, 3.00150009765625e+02, 2.931499096679688e+02, 3.00058959350586e+02, 3.001501342773437e+02, 2.931499938964844e+02, 2.987874401855469e+02, 3.001503527832031e+02, 2.931499719238281e+02, 2.931499481201172e+02, 3.001543505859375e+02, 2.931500244140625e+02, 3.001497546386719e+02, 2.963905505371094e+02, 2.931499816894531e+02, 3.00149619140625e+02, 2.931502770877579e+02, 2.931499938964844e+02, 3.001498742675781e+02, 2.931499938964844e+02, 2.931499304199219e+02, 2.980057983398438e+02, 2.931499938964844e+02, 2.931500799560547e+02, 3.001501281738281e+02, 2.931499938964844e+02, 2.931498791503906e+02, 2.933580572509766e+02, 2.931500036621094e+02, 2.931499298095703e+02, 2.991552112885635e+02, 2.931499835205078e+02, 2.982686547851562e+02, 2.934236080139641e+02, 2.931499938964844e+02] +Room.starRoom.T=[2.895909423828125e+02, 3.032892065429688e+02, 2.903238000488281e+02, 2.910654449462891e+02, 3.059812744140625e+02, 2.905436798095703e+02, 2.908785705566406e+02, 2.920550708007813e+02, 2.8960228515625e+02, 2.926064098683553e+02, 3.048881469726563e+02, 2.907906616210938e+02, 2.95879775390625e+02, 2.906296685791016e+02, 2.903500793457031e+02, 3.005229253938132e+02, 2.980426245117188e+02, 2.907071423339844e+02, 3.013785583496094e+02, 2.925189532470703e+02, 2.910058166503906e+02, 2.998059234619141e+02, 2.904333862304687e+02, 2.91949033203125e+02, 3.060810546875e+02, 2.915717315673828e+02, 2.919169604492188e+02, 3.037860949707031e+02, 2.908605639648438e+02, 2.953721441650391e+02, 3.015157967073372e+02, 2.920485473632813e+02, 2.995013647460938e+02, 2.972705010986328e+02, 2.923980090332032e+02, 2.999435089111328e+02, 2.944936437988281e+02, 2.939918103027344e+02, 3.00290135918731e+02, 2.930235015869141e+02, 2.948886474532213e+02, 3.015780987548828e+02, 2.930393333366817e+02, 2.981409478759766e+02, 2.932462145996094e+02, 2.979956115722656e+02, 2.930495910644531e+02, 3.003801431771403e+02, 2.94480830078125e+02, 2.995776019287109e+02, 3.041623840332031e+02, 2.925320080566406e+02, 3.012708020019531e+02, 3.008856062825521e+02, 2.953872229003906e+02, 3.018166229248047e+02, 3.009506958007813e+02, 2.989828649902344e+02, 3.018020153808594e+02, 2.972748370361328e+02, 2.955602218398944e+02, 3.025786480712891e+02, 2.9397384765625e+02, 2.985039727783203e+02, 3.049512548828125e+02, 2.931601978648793e+02, 3.002176796505336e+02, 3.075318084716797e+02, 2.929804943847656e+02, 3.001127673339844e+02, 3.073908447265625e+02, 2.919826605224609e+02, 2.989404626464844e+02, 3.054761993408203e+02, 2.917860375976563e+02, 2.916563262939453e+02, 3.026440454101563e+02, 2.912437042236328e+02, 3.012592846679688e+02, 2.97083306274414e+02, 2.919922180175781e+02, 3.050490350341797e+02, 2.929185347770024e+02, 2.909621594238281e+02, 3.056432885742187e+02, 2.910046722412109e+02, 2.916391577148437e+02, 2.990995660400391e+02, 2.90451103515625e+02, 2.929541925048828e+02, 3.085498596191406e+02, 2.921687042236328e+02, 2.911068969726563e+02, 2.940111767578125e+02, 2.905614099121094e+02, 2.91179638671875e+02, 3.004290486356638e+02, 2.9053208984375e+02, 2.987038830566406e+02, 2.943418538251261e+02, 2.90722900390625e+02] +TransmittedSolarRadiation_room=[0e+00, 1.130987646102905e+01, 2.616004417419434e+01, 4.389710235595703e+01, 5.918954956054687e+01, 7.433168029785156e+01, 8.556251525878906e+01, 1.003805136108398e+02, 1.156240158081055e+02, 1.345735626220703e+02, 1.4280087890625e+02, 1.544979095458984e+02, 1.705396575927734e+02, 1.774761706542969e+02, 1.932677001953125e+02, 2.07533232906171e+02, 2.213081109619141e+02, 2.364047088623047e+02, 2.49686005859375e+02, 2.609846478271484e+02, 2.750823974609375e+02, 2.882575036621094e+02, 2.998606689453125e+02, 3.089234008789062e+02, 3.219288903808594e+02, 3.322942504882812e+02, 3.404441833496094e+02, 3.50363159790039e+02, 3.563302307128906e+02, 3.649157409667969e+02, 3.725991295504283e+02, 3.801111145019531e+02, 3.8845849609375e+02, 3.9341705078125e+02, 4.005342102050781e+02, 4.054500732421875e+02, 4.083151220703125e+02, 4.135299377441406e+02, 4.18703125e+02, 4.223151000976562e+02, 4.269170227050781e+02, 4.303509448242187e+02, 4.334129943847656e+02, 4.371597595214844e+02, 4.396190966796875e+02, 4.423703002929688e+02, 4.452661743164062e+02, 4.481252506713046e+02, 4.508367614746094e+02, 4.54431396484375e+02, 4.57641357421875e+02, 4.600699462890625e+02, 4.634596862792969e+02, 4.661298689778646e+02, 4.697447814941406e+02, 4.742587280273438e+02, 4.778945471191406e+02, 4.828937377929688e+02, 4.881267932128906e+02, 4.913828118896485e+02, 4.974044189453125e+02, 5.027871166992188e+02, 5.070564331054687e+02, 5.1512890625e+02, 5.222710571289062e+02, 5.284690551757812e+02, 5.384776000976562e+02, 5.474805517578125e+02, 5.567798461914062e+02, 5.671594848632812e+02, 5.774887329101563e+02, 5.860919799804688e+02, 5.974486694335938e+02, 6.097854541015626e+02, 6.212889404296875e+02, 6.34704833984375e+02, 6.481267138671875e+02, 6.602067260742188e+02, 6.730777270507813e+02, 6.872154174804688e+02, 7.052294311523438e+02, 7.2255552734375e+02, 7.355808436125227e+02, 7.496355590820312e+02, 7.6300609375e+02, 7.775361328125e+02, 7.925586547851562e+02, 8.022994714355468e+02, 8.157474365234375e+02, 8.338683471679688e+02, 8.470759399414062e+02, 8.581137084960938e+02, 8.68443359375e+02, 8.816127282714843e+02, 8.931959228515625e+02, 9.103627319335938e+02, 9.255091820041629e+02, 9.40275634765625e+02, 9.567535766601562e+02, 9.704009034164309e+02, 9.888684692382812e+02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case600.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case600.txt index 6ae354adf1..9df324ffb7 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case600.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case600.txt @@ -1,20 +1,20 @@ -last-generated=2021-05-25 +last-generated=2022-07-06 statistics-simulation= { "linear": "0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0", "nonlinear": "13", - "number of continuous time states": "23", + "number of continuous time states": "25", "numerical Jacobians": "0" } time=[0e+00, 3.15396e+07] checkResultsAccordingToASHRAEHeatingOrTempMax.lowerLimit=[4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03, 4.296e+03] -AnnualHeatingLoad=[0e+00, 1.874038238525391e+02, 2.921682238769531e+02, 3.573979309082031e+02, 4.434742431640625e+02, 5.290581604003906e+02, 6.767653466796875e+02, 7.537158093261719e+02, 8.39403701171875e+02, 9.305454731925589e+02, 1.104192626953125e+03, 1.217035717773437e+03, 1.275347412109375e+03, 1.397809318847656e+03, 1.487616391601563e+03, 1.581140258789062e+03, 1.650778442382812e+03, 1.739883720703125e+03, 1.854656616210938e+03, 1.93912955537221e+03, 1.987963330078125e+03, 2.058555908203125e+03, 2.13094767578125e+03, 2.200301923828125e+03, 2.2441787109375e+03, 2.285318237304688e+03, 2.363554482421875e+03, 2.4126455078125e+03, 2.463246533203125e+03, 2.53763134765625e+03, 2.568889404296875e+03, 2.599883247070312e+03, 2.6125009765625e+03, 2.665089111328125e+03, 2.701609052734375e+03, 2.7403876953125e+03, 2.778327880859375e+03, 2.804334228515625e+03, 2.81077978515625e+03, 2.829153091063737e+03, 2.840031982421875e+03, 2.85964794921875e+03, 2.875426936722486e+03, 2.88151953125e+03, 2.910148681640625e+03, 2.9323232421875e+03, 2.941427001953125e+03, 2.953728271484375e+03, 2.960927978515625e+03, 2.963529052734375e+03, 2.96394287109375e+03, 2.97037662109375e+03, 2.974368408203125e+03, 2.974368408203125e+03, 2.9751728515625e+03, 2.975267333984375e+03, 2.975267333984375e+03, 2.975267333984375e+03, 2.975267333984375e+03, 2.975267333984375e+03, 2.97549462890625e+03, 2.978727294921875e+03, 2.9813388671875e+03, 2.98166943359375e+03, 2.987442138671875e+03, 2.993150448720786e+03, 2.99326025390625e+03, 2.993268310546875e+03, 2.99964556640625e+03, 3.001904541015625e+03, 3.013522216796875e+03, 3.026174340820312e+03, 3.0506201171875e+03, 3.07561181640625e+03, 3.101798134765625e+03, 3.125785278320312e+03, 3.174826416015625e+03, 3.203842895507812e+03, 3.244078125e+03, 3.28059814453125e+03, 3.312530029296875e+03, 3.3442900390625e+03, 3.39214306276236e+03, 3.46547287109375e+03, 3.5477314453125e+03, 3.615078051757812e+03, 3.665117880859375e+03, 3.750390380859375e+03, 3.818214677734375e+03, 3.8781787109375e+03, 3.965586669921875e+03, 4.032188271484375e+03, 4.11051474609375e+03, 4.21080078125e+03, 4.35704896484375e+03, 4.45185283203125e+03, 4.570447265625e+03, 4.63351123046875e+03, 4.69682958984375e+03, 4.76988232421875e+03, 4.8503046875e+03] +AnnualHeatingLoad=[0e+00, 1.873975372314453e+02, 2.921483874511719e+02, 3.573657257080078e+02, 4.434339599609375e+02, 5.290048156738281e+02, 6.767049462890625e+02, 7.536447033691406e+02, 8.393200830078125e+02, 9.304514857828182e+02, 1.104092651367188e+03, 1.216926149902344e+03, 1.275228393554688e+03, 1.397680185546875e+03, 1.48747490234375e+03, 1.580989135742188e+03, 1.650614624023438e+03, 1.739706994628906e+03, 1.854473022460938e+03, 1.938933388380022e+03, 1.987754541015625e+03, 2.05833837890625e+03, 2.130717451171875e+03, 2.200062666015625e+03, 2.243930908203125e+03, 2.285058471679688e+03, 2.36328599609375e+03, 2.412367431640625e+03, 2.46296015625e+03, 2.537337646484375e+03, 2.568584716796875e+03, 2.59956810546875e+03, 2.61217822265625e+03, 2.664758056640625e+03, 2.701267744140625e+03, 2.7400400390625e+03, 2.777972412109375e+03, 2.80397119140625e+03, 2.810408203125e+03, 2.828773113601998e+03, 2.839644775390625e+03, 2.859251220703125e+03, 2.875020686722486e+03, 2.881106689453125e+03, 2.909728759765625e+03, 2.93189892578125e+03, 2.940996826171875e+03, 2.9532890625e+03, 2.96048193359375e+03, 2.96308056640625e+03, 2.96349267578125e+03, 2.96992154296875e+03, 2.9739091796875e+03, 2.9739091796875e+03, 2.9747119140625e+03, 2.974803955078125e+03, 2.974803955078125e+03, 2.974803955078125e+03, 2.974803955078125e+03, 2.974803955078125e+03, 2.975029541015625e+03, 2.9782568359375e+03, 2.9808642578125e+03, 2.981193115234375e+03, 2.986959716796875e+03, 2.992660239955357e+03, 2.992768310546875e+03, 2.992775634765625e+03, 2.99914509765625e+03, 3.001397705078125e+03, 3.01300634765625e+03, 3.025649438476562e+03, 3.050089599609375e+03, 3.07507080078125e+03, 3.10124662109375e+03, 3.1252236328125e+03, 3.174255126953125e+03, 3.203262802734375e+03, 3.243489501953125e+03, 3.279998779296875e+03, 3.31191962890625e+03, 3.343672119140625e+03, 3.391512935809235e+03, 3.464833955078125e+03, 3.547085693359375e+03, 3.614419677734375e+03, 3.66444822265625e+03, 3.74971337890625e+03, 3.81752498046875e+03, 3.8774794921875e+03, 3.964875e+03, 4.031463911132812e+03, 4.10978232421875e+03, 4.2100576171875e+03, 4.35629587890625e+03, 4.451086767578125e+03, 4.56967041015625e+03, 4.632721845703125e+03, 4.69603125e+03, 4.7690712890625e+03, 4.8494814453125e+03] checkResultsAccordingToASHRAEHeatingOrTempMax.upperLimit=[5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03, 5.709e+03] checkResultsAccordingToASHRAECoolingOrTempMin.lowerLimit=[-7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03, -7.964e+03] -AnnualCoolingLoad=[0e+00, -3.709764038085937e+01, -1.279214553833008e+02, -2.430620269775391e+02, -3.280832275390625e+02, -4.160138244628906e+02, -4.659924621582031e+02, -5.6602783203125e+02, -6.450244140625e+02, -7.46591552734375e+02, -7.807613525390625e+02, -8.541264038085938e+02, -9.530911865234375e+02, -9.72025390625e+02, -1.049550048828125e+03, -1.114864379882812e+03, -1.194683715820312e+03, -1.275081787109375e+03, -1.342216557617187e+03, -1.40015771484375e+03, -1.487803955078125e+03, -1.55209326171875e+03, -1.627497314453125e+03, -1.665628051757812e+03, -1.7611034375e+03, -1.84494970703125e+03, -1.875411987304688e+03, -1.934064643554688e+03, -1.966202392578125e+03, -2.00884814453125e+03, -2.05859404296875e+03, -2.109191650390625e+03, -2.18405810546875e+03, -2.206358642578125e+03, -2.252556396484375e+03, -2.271273681640625e+03, -2.274693359375e+03, -2.30749267578125e+03, -2.35530017578125e+03, -2.385921875e+03, -2.425690673828125e+03, -2.43778162109375e+03, -2.4645009765625e+03, -2.499027587890625e+03, -2.509449462890625e+03, -2.532055908203125e+03, -2.551166748046875e+03, -2.570266791992187e+03, -2.5992099609375e+03, -2.65207373046875e+03, -2.710486083984375e+03, -2.735220947265625e+03, -2.774375849609375e+03, -2.806813012695312e+03, -2.856356201171875e+03, -2.919472827148437e+03, -2.97987837890625e+03, -3.06184228515625e+03, -3.137921064453125e+03, -3.177034912109375e+03, -3.25251171875e+03, -3.302937880859375e+03, -3.35148583984375e+03, -3.457501953125e+03, -3.516827021484375e+03, -3.582807861328125e+03, -3.703942965328921e+03, -3.800775791015625e+03, -3.909044189453125e+03, -4.025843505859375e+03, -4.105392578125e+03, -4.1823671875e+03, -4.28125341796875e+03, -4.378486728515625e+03, -4.47555859375e+03, -4.5899013671875e+03, -4.69477953125e+03, -4.7968583984375e+03, -4.88169779296875e+03, -4.99757958984375e+03, -5.15352490234375e+03, -5.285776875e+03, -5.38035107421875e+03, -5.47074560546875e+03, -5.53549259765625e+03, -5.63709912109375e+03, -5.73050537109375e+03, -5.77624083984375e+03, -5.85184326171875e+03, -5.96490234375e+03, -6.02514755859375e+03, -6.09533447265625e+03, -6.15176611328125e+03, -6.2163564453125e+03, -6.265421875e+03, -6.34968212890625e+03, -6.41856490234375e+03, -6.5109130859375e+03, -6.61702490234375e+03, -6.698529296875e+03, -6.80765771484375e+03] +AnnualCoolingLoad=[0e+00, -3.708689422607422e+01, -1.279001083374023e+02, -2.430255432128906e+02, -3.280357763671875e+02, -4.159551086425781e+02, -4.659260864257812e+02, -5.6594970703125e+02, -6.449324340820312e+02, -7.464848022460938e+02, -7.806482177734375e+02, -8.540057373046875e+02, -9.529564819335938e+02, -9.718845825195312e+02, -1.049395629882812e+03, -1.114695922851562e+03, -1.194504516601562e+03, -1.27488818359375e+03, -1.342013061523438e+03, -1.399941528320312e+03, -1.487572875976562e+03, -1.551848388671875e+03, -1.627240966796875e+03, -1.665361083984375e+03, -1.76082251953125e+03, -1.844657348632812e+03, -1.87511181640625e+03, -1.933752897949219e+03, -1.965884155273438e+03, -2.008519287109375e+03, -2.058252685546875e+03, -2.108838623046875e+03, -2.183692626953125e+03, -2.205986083984375e+03, -2.2521689453125e+03, -2.270877197265625e+03, -2.27429345703125e+03, -2.307080810546875e+03, -2.3548768359375e+03, -2.385488037109375e+03, -2.425242919921875e+03, -2.4373221484375e+03, -2.46403125e+03, -2.49854443359375e+03, -2.508960693359375e+03, -2.5315576171875e+03, -2.5506591796875e+03, -2.569748315429687e+03, -2.598678955078125e+03, -2.651533447265625e+03, -2.709938720703125e+03, -2.73466845703125e+03, -2.77381212890625e+03, -2.806243193359375e+03, -2.8557783203125e+03, -2.918884912109375e+03, -2.9792859375e+03, -3.061243408203125e+03, -3.13731583984375e+03, -3.176423828125e+03, -3.25189111328125e+03, -3.30230580078125e+03, -3.35084716796875e+03, -3.456854248046875e+03, -3.51616708984375e+03, -3.582137451171875e+03, -3.703259371578921e+03, -3.800084384765625e+03, -3.908342529296875e+03, -4.02512841796875e+03, -4.10466357421875e+03, -4.18162744140625e+03, -4.2805029296875e+03, -4.3777215625e+03, -4.47478271484375e+03, -4.58910888671875e+03, -4.69397337890625e+03, -4.7960439453125e+03, -4.8808692578125e+03, -4.996736328125e+03, -5.1526640625e+03, -5.28490138671875e+03, -5.37946533203125e+03, -5.4698486328125e+03, -5.53458537109375e+03, -5.6361806640625e+03, -5.7295732421875e+03, -5.775300341796875e+03, -5.85089111328125e+03, -5.96393505859375e+03, -6.024165234375e+03, -6.0943447265625e+03, -6.1507666015625e+03, -6.21534521484375e+03, -6.26440087890625e+03, -6.34864697265625e+03, -6.41751693359375e+03, -6.50985205078125e+03, -6.61594873046875e+03, -6.69744287109375e+03, -6.80655615234375e+03] checkResultsAccordingToASHRAECoolingOrTempMin.upperLimit=[-6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03, -6.137e+03] checkResultsAccordingToASHRAEHeatingOrTempMax.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00] checkResultsAccordingToASHRAECoolingOrTempMin.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00] -Room.thermRoom.T=[2.941499938964844e+02, 3.001501788330078e+02, 2.931500073242187e+02, 2.931499224853516e+02, 3.001498327636719e+02, 2.931499938964844e+02, 2.931498510742188e+02, 2.931505352783203e+02, 2.931499938964844e+02, 2.931466779865202e+02, 3.001503356933594e+02, 2.931499633789062e+02, 2.965700463867187e+02, 2.931500244140625e+02, 2.931499938964844e+02, 3.001495391845703e+02, 2.996654325906704e+02, 2.931499633789062e+02, 3.001495373535156e+02, 2.931503048664029e+02, 2.931499938964844e+02, 3.001498223876953e+02, 2.931500244140625e+02, 2.931499633789062e+02, 3.001498852539062e+02, 2.931500549316406e+02, 2.931498937988281e+02, 3.001502416992187e+02, 2.931499938964844e+02, 2.955914776611328e+02, 3.001502868652344e+02, 2.931499578857422e+02, 2.996350939941406e+02, 2.986315150179315e+02, 2.931499633789062e+02, 3.000845312040801e+02, 2.946542590332031e+02, 2.938822857666016e+02, 3.001499133300781e+02, 2.931501651707982e+02, 2.947836936439485e+02, 3.001498419189453e+02, 2.931500854492188e+02, 2.980485894775391e+02, 2.933591760253906e+02, 2.979491485595703e+02, 2.932318680811113e+02, 3.001501763916016e+02, 2.943700769042969e+02, 2.995540447998047e+02, 3.001500854492188e+02, 2.931500006103516e+02, 3.001499328613281e+02, 3.001503302001953e+02, 2.952824780273438e+02, 3.0014990234375e+02, 3.001504956054687e+02, 2.989297967529297e+02, 3.001498498535156e+02, 2.972607855224609e+02, 2.95535992173511e+02, 3.001495843505859e+02, 2.938867504882812e+02, 2.985227850341797e+02, 3.00149775390625e+02, 2.931500549316406e+02, 3.001499633789062e+02, 3.00150009765625e+02, 2.931499963378906e+02, 3.001005419921875e+02, 3.001501525878906e+02, 2.931499938964844e+02, 2.9926021484375e+02, 3.001503833007812e+02, 2.931499719238281e+02, 2.931499176025391e+02, 3.001506640625e+02, 2.931500244140625e+02, 3.0014966796875e+02, 2.981928510787451e+02, 2.931499816894531e+02, 3.001494970703125e+02, 2.931503710390916e+02, 2.931499713134766e+02, 3.001498291015625e+02, 2.931499938964844e+02, 2.931499279785156e+02, 3.001504217529297e+02, 2.931499938964844e+02, 2.93323141328957e+02, 3.001501586914063e+02, 2.931499938964844e+02, 2.931498254394531e+02, 2.948351873779297e+02, 2.931500036621094e+02, 2.931498657226563e+02, 3.001508837890625e+02, 2.931499633789062e+02, 2.996341931269719e+02, 2.948173419122708e+02, 2.931499633789062e+02] -Room.starRoom.T=[2.895909423828125e+02, 3.067704504394531e+02, 2.903282824707031e+02, 2.911962243652344e+02, 3.099385046386719e+02, 2.90544564819336e+02, 2.9114345703125e+02, 2.925246557617187e+02, 2.896039196777344e+02, 2.934916656994429e+02, 3.088321044921875e+02, 2.907944647216797e+02, 2.968849047851563e+02, 2.907783038330078e+02, 2.903596813964843e+02, 3.016633911132812e+02, 3.008006670662526e+02, 2.907281384277344e+02, 3.03375791015625e+02, 2.92915043864123e+02, 2.910494873046875e+02, 3.017381945800781e+02, 2.904401293945313e+02, 2.920446124267578e+02, 3.088949743652344e+02, 2.915723876953125e+02, 2.921200427246094e+02, 3.058024749755859e+02, 2.908612060546875e+02, 2.958448950195312e+02, 3.037891052246094e+02, 2.920553118896485e+02, 2.997493786621094e+02, 2.995301893462762e+02, 2.924128100585938e+02, 3.002531006433373e+02, 2.951567626953125e+02, 2.940309051513672e+02, 3.006019604492187e+02, 2.930722696164486e+02, 2.949341531360496e+02, 3.021612963867187e+02, 2.930401230086414e+02, 2.981608532714844e+02, 2.937027258300781e+02, 2.979996887207031e+02, 2.933625820557583e+02, 3.015729290771484e+02, 2.944826867675781e+02, 2.996230895996094e+02, 3.050167236328125e+02, 2.925358355712891e+02, 3.013191345214844e+02, 3.016690338134766e+02, 2.953968029785156e+02, 3.019542266845703e+02, 3.013542443847657e+02, 2.989920867919922e+02, 3.02131025390625e+02, 2.974310559082031e+02, 2.956316090332697e+02, 3.034296990966797e+02, 2.939875598144531e+02, 2.985922082519531e+02, 3.067174743652344e+02, 2.931673037607339e+02, 3.00247041971972e+02, 3.098489581298828e+02, 2.929941345214844e+02, 3.001672235107422e+02, 3.100340881347656e+02, 2.919904064941406e+02, 2.994310241699219e+02, 3.08157568359375e+02, 2.9179958984375e+02, 2.919049530029297e+02, 3.050750805664063e+02, 2.912474542236328e+02, 3.022795556640625e+02, 2.99093093288594e+02, 2.920588684082031e+02, 3.075319348144531e+02, 2.932903829546117e+02, 2.910271264648438e+02, 3.090397973632813e+02, 2.91005859375e+02, 2.91779677734375e+02, 3.028186730957031e+02, 2.90452333984375e+02, 2.936023952330174e+02, 3.122119934082031e+02, 2.921712530517578e+02, 2.915966174316407e+02, 2.95678969116211e+02, 2.905660876464844e+02, 2.915671203613281e+02, 3.041019799804687e+02, 2.905453063964844e+02, 3.00244820521428e+02, 2.960584008551745e+02, 2.907479553222656e+02] -TransmittedSolarRadiation_room=[0e+00, 1.130990159988403e+01, 2.61599536895752e+01, 4.38969841003418e+01, 5.918934448242187e+01, 7.433143615722656e+01, 8.556222534179688e+01, 1.003803305053711e+02, 1.156237869262695e+02, 1.345731506347656e+02, 1.428003295898438e+02, 1.544972839355469e+02, 1.705390167236328e+02, 1.774754229736328e+02, 1.93266845703125e+02, 2.075322662353516e+02, 2.213040319435605e+02, 2.364034729003906e+02, 2.496845721435547e+02, 2.609830916164699e+02, 2.750808410644531e+02, 2.882558557128907e+02, 2.998590209960938e+02, 3.089217224121094e+02, 3.219271203613282e+02, 3.322925415039062e+02, 3.404421997070312e+02, 3.503610235595703e+02, 3.563279724121094e+02, 3.649133605957031e+02, 3.725966796875e+02, 3.801086120605469e+02, 3.884560546875e+02, 3.934143160421283e+02, 4.005316162109375e+02, 4.054472961425781e+02, 4.083121899414062e+02, 4.135269775390625e+02, 4.186999816894531e+02, 4.223117552815994e+02, 4.269139709472656e+02, 4.303478015136719e+02, 4.334098205566406e+02, 4.371565856933594e+02, 4.396158410644532e+02, 4.423669738769531e+02, 4.452628479003906e+02, 4.481213507080078e+02, 4.508335571289062e+02, 4.5442822265625e+02, 4.576381530761719e+02, 4.600667724609375e+02, 4.6345654296875e+02, 4.66127318725586e+02, 4.697417602539062e+02, 4.742557373046875e+02, 4.778915356445312e+02, 4.828907775878906e+02, 4.881238330078125e+02, 4.913799438476562e+02, 4.974015808105469e+02, 5.027843572998047e+02, 5.070536254882812e+02, 5.151260986328125e+02, 5.222682495117188e+02, 5.284662475585938e+02, 5.384747924804688e+02, 5.474776379394531e+02, 5.567770385742188e+02, 5.671566162109375e+02, 5.774858642578125e+02, 5.860891723632812e+02, 5.974457397460938e+02, 6.097826428222656e+02, 6.212860717773438e+02, 6.347020874023438e+02, 6.481238623046875e+02, 6.602037963867188e+02, 6.7307474609375e+02, 6.872122790003983e+02, 7.052265625e+02, 7.225526586914062e+02, 7.355776166773554e+02, 7.49632568359375e+02, 7.630030419921875e+02, 7.775330200195312e+02, 7.925554809570312e+02, 8.02296123046875e+02, 8.157439575195312e+02, 8.338648071289062e+02, 8.470724487304688e+02, 8.581100463867188e+02, 8.684396362304688e+02, 8.816088500976563e+02, 8.9319189453125e+02, 9.103585815429688e+02, 9.255059619140625e+02, 9.40271484375e+02, 9.567493403508113e+02, 9.7039909983898e+02, 9.888641357421875e+02] +Room.thermRoom.T=[2.941499938964844e+02, 3.001502026367187e+02, 2.931500073242187e+02, 2.931499224853516e+02, 3.001498327636719e+02, 2.931499938964844e+02, 2.931498510742188e+02, 2.931505847167969e+02, 2.931499938964844e+02, 2.931466870384495e+02, 3.001503356933594e+02, 2.931499633789062e+02, 2.965764086914062e+02, 2.931500244140625e+02, 2.931499938964844e+02, 3.001495391845703e+02, 2.996513084105688e+02, 2.931499633789062e+02, 3.001495373535156e+02, 2.931503048664029e+02, 2.931499938964844e+02, 3.001498413085938e+02, 2.931500244140625e+02, 2.931499633789062e+02, 3.001498852539062e+02, 2.931500549316406e+02, 2.931498937988281e+02, 3.001502416992187e+02, 2.931499938964844e+02, 2.955979815673828e+02, 3.001502868652344e+02, 2.931499578857422e+02, 2.996368908691406e+02, 2.986206751119039e+02, 2.931499633789062e+02, 3.000849434305508e+02, 2.946493725585938e+02, 2.938879528808594e+02, 3.001499133300781e+02, 2.931501651707982e+02, 2.947889234926245e+02, 3.001498419189453e+02, 2.931500854492188e+02, 2.98051771850586e+02, 2.933585571289062e+02, 2.979505950927734e+02, 2.932371857937384e+02, 3.001501763916016e+02, 2.943744006347656e+02, 2.995554901123047e+02, 3.001500854492188e+02, 2.931500006103516e+02, 3.001499328613281e+02, 3.001506726074219e+02, 2.952867895507812e+02, 3.0014990234375e+02, 3.001506408691406e+02, 2.989314874267578e+02, 3.001498498535156e+02, 2.972575244140625e+02, 2.955398379295942e+02, 3.001495843505859e+02, 2.938848791503906e+02, 2.985248565673828e+02, 3.00149775390625e+02, 2.931500549316406e+02, 3.001499633789062e+02, 3.00150009765625e+02, 2.931498522949219e+02, 3.001007928466797e+02, 3.001501525878906e+02, 2.931499938964844e+02, 2.992627746582031e+02, 3.001503833007812e+02, 2.931499719238281e+02, 2.931499176025391e+02, 3.001506640625e+02, 2.931500244140625e+02, 3.001496423339844e+02, 2.981801055591412e+02, 2.931499816894531e+02, 3.001494970703125e+02, 2.931503710390916e+02, 2.931499713134766e+02, 3.001498291015625e+02, 2.931499938964844e+02, 2.931499279785156e+02, 3.001503955078125e+02, 2.931499938964844e+02, 2.933312091714532e+02, 3.001501586914063e+02, 2.931499938964844e+02, 2.931498254394531e+02, 2.948309240722656e+02, 2.931500036621094e+02, 2.931498657226563e+02, 3.001509106445312e+02, 2.931499633789062e+02, 2.996364480532133e+02, 2.948098562062149e+02, 2.931499633789062e+02] +Room.starRoom.T=[2.895909423828125e+02, 3.067703485107422e+02, 2.903282824707031e+02, 2.911968157958984e+02, 3.099384216308594e+02, 2.905445953369141e+02, 2.911444384765625e+02, 2.925246887207031e+02, 2.89603896484375e+02, 2.934964827266053e+02, 3.088312194824219e+02, 2.90794482421875e+02, 2.968887231445312e+02, 2.907783038330078e+02, 2.903597119140625e+02, 3.016633911132812e+02, 3.007938967543528e+02, 2.907282153320313e+02, 3.03375732421875e+02, 2.92915043864123e+02, 2.910496459960938e+02, 3.017381219482422e+02, 2.904401245117188e+02, 2.92045244140625e+02, 3.088948913574219e+02, 2.915723876953125e+02, 2.921214514160156e+02, 3.058017150878906e+02, 2.908612060546875e+02, 2.958491900634766e+02, 3.037873168945313e+02, 2.920556750488281e+02, 2.997500415039062e+02, 2.995243934700916e+02, 2.924134558105468e+02, 3.002531804291058e+02, 2.951547717285156e+02, 2.940353601074219e+02, 3.006019104003906e+02, 2.930722577852937e+02, 2.94938159542349e+02, 3.021611145019531e+02, 2.930401988009529e+02, 2.981628668212891e+02, 2.937023889160157e+02, 2.98000845336914e+02, 2.933668406887126e+02, 3.015706066894531e+02, 2.944862976074219e+02, 2.996238092041016e+02, 3.050166320800781e+02, 2.92535859375e+02, 3.013191345214844e+02, 3.016668994140625e+02, 2.954001379394531e+02, 3.019542022705078e+02, 3.013527795410157e+02, 2.989931951904297e+02, 3.021309948730469e+02, 2.974300671386719e+02, 2.956347534262955e+02, 3.034295593261719e+02, 2.939870776367188e+02, 2.985936169433594e+02, 3.067174182128906e+02, 2.931679722377232e+02, 3.00247041971972e+02, 3.098489276123047e+02, 2.929960632324219e+02, 3.00167314453125e+02, 3.100337707519531e+02, 2.919905822753906e+02, 2.994320922851563e+02, 3.081565509033203e+02, 2.917997863769531e+02, 2.919059906005859e+02, 3.050727563476563e+02, 2.912474560546875e+02, 3.022794128417969e+02, 2.990874579934513e+02, 2.920596313476562e+02, 3.075318292236328e+02, 2.932904025405201e+02, 2.910274078369141e+02, 3.090396594238281e+02, 2.910058685302735e+02, 2.917806982421875e+02, 3.028153558349609e+02, 2.90452333984375e+02, 2.936082321257281e+02, 3.122117553710938e+02, 2.921712835693359e+02, 2.915980114746094e+02, 2.95676982421875e+02, 2.905660974121094e+02, 2.915683441162109e+02, 3.040983898925781e+02, 2.905453674316406e+02, 3.002456041482779e+02, 2.960560748075947e+02, 2.90748046875e+02] +TransmittedSolarRadiation_room=[0e+00, 1.130978734970093e+01, 2.615987464904785e+01, 4.38968620300293e+01, 5.918918716430664e+01, 7.433126831054688e+01, 8.556202697753906e+01, 1.00380071105957e+02, 1.156235656738281e+02, 1.345728759765625e+02, 1.428000854492188e+02, 1.544970703125e+02, 1.705388488769531e+02, 1.774753009033203e+02, 1.932666473388672e+02, 2.075320068359375e+02, 2.213038422993364e+02, 2.364032287597656e+02, 2.49684404296875e+02, 2.609827501289732e+02, 2.750804138183594e+02, 2.88255458984375e+02, 2.998585632324219e+02, 3.089212951660156e+02, 3.219266625976563e+02, 3.322919921875e+02, 3.404418334960938e+02, 3.503608709716797e+02, 3.563278503417969e+02, 3.649132385253906e+02, 3.725965759277344e+02, 3.801085205078125e+02, 3.884560852050781e+02, 3.934143608673003e+02, 4.005315246582031e+02, 4.054473266601562e+02, 4.083121923828125e+02, 4.135269775390625e+02, 4.187001037597656e+02, 4.223118468343338e+02, 4.269140625e+02, 4.303479235839844e+02, 4.33409912109375e+02, 4.371566162109375e+02, 4.396159228515625e+02, 4.423670959472656e+02, 4.452629699707031e+02, 4.481214727783203e+02, 4.508335571289062e+02, 4.5442822265625e+02, 4.5763818359375e+02, 4.600667724609375e+02, 4.6345654296875e+02, 4.661273492431641e+02, 4.697418212890625e+02, 4.742557678222656e+02, 4.778915966796875e+02, 4.828908081054688e+02, 4.881238024902344e+02, 4.913798522949219e+02, 4.974014892578125e+02, 5.027842175292969e+02, 5.070535144042969e+02, 5.151260375976562e+02, 5.222681274414062e+02, 5.284661254882812e+02, 5.384744262695312e+02, 5.47477255859375e+02, 5.567766723632812e+02, 5.6715625e+02, 5.77485498046875e+02, 5.860888061523438e+02, 5.974454345703125e+02, 6.097821582031251e+02, 6.2128564453125e+02, 6.347014770507812e+02, 6.481231909179687e+02, 6.602031860351562e+02, 6.730741357421875e+02, 6.872113508072691e+02, 7.052252807617188e+02, 7.225513269042968e+02, 7.355763349390742e+02, 7.496312255859375e+02, 7.630017602539062e+02, 7.7753173828125e+02, 7.925542602539062e+02, 8.022949548339843e+02, 8.157427978515625e+02, 8.338636474609375e+02, 8.470712280273438e+02, 8.581089477539062e+02, 8.684385375976562e+02, 8.816077233886718e+02, 8.931907958984375e+02, 9.103575439453125e+02, 9.255048706054688e+02, 9.402703857421875e+02, 9.567482417179988e+02, 9.703980012061675e+02, 9.888629760742188e+02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case600FF.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case600FF.txt index bd0df76eff..24d5ca6435 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case600FF.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case600FF.txt @@ -1,19 +1,19 @@ -last-generated=2021-05-25 +last-generated=2022-06-02 statistics-simulation= { "linear": "0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0", "nonlinear": "13", - "number of continuous time states": "21", + "number of continuous time states": "23", "numerical Jacobians": "0" } time=[0e+00, 3.15396e+07] checkResultsAccordingToASHRAEHeatingOrTempMax.lowerLimit=[6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01, 6.490000152587891e+01] -FreeFloatRoomTemperature=[2.1e+01, 3.508128532409668e+01, 4.383071670532226e+00, 2.087890617370606e+01, 4.600550491333008e+01, 7.451551866531372e+00, 2.361666557312012e+01, 7.324716873168946e+00, 2.369385032653809e+00, 3.310838165283203e+01, 2.564485359191895e+01, 1.040758361816406e+01, 3.641749008178711e+01, 1.322588517665863e+00, 1.112477005004883e+01, 5.016684684753418e+01, 1.984547828674317e+01, 1.47305961227417e+01, 4.185162185668946e+01, 9.381814041137694e+00, 1.638111915588379e+01, 3.0530774269104e+01, 5.463018074035644e+00, 1.932685176849365e+01, 4.974874099731446e+01, 1.219481945037842e+01, 2.269003921508789e+01, 3.463751636505127e+01, 8.513863868713379e+00, 2.82202991104126e+01, 2.79147834777832e+01, 1.872671207427979e+01, 3.489063720703125e+01, 1.933516731262207e+01, 2.035457046508789e+01, 3.210422744750976e+01, 1.617297782897949e+01, 2.392697357177734e+01, 3.363105163574219e+01, 1.437479862213135e+01, 2.39794120016954e+01, 3.326469505310059e+01, 1.86708812713623e+01, 2.800738224029541e+01, 1.44706916809082e+01, 2.591075782775879e+01, 1.997844161987305e+01, 2.828827651977539e+01, 2.28801350402832e+01, 3.286082351684571e+01, 3.964418411254883e+01, 1.744427131652832e+01, 3.950878799438477e+01, 2.902009407043457e+01, 2.510765678405762e+01, 4.351858291625977e+01, 2.933624732971191e+01, 3.083963291168213e+01, 4.549735427856445e+01, 2.485329624176025e+01, 2.680066992120886e+01, 4.957974731445312e+01, 2.193799842834473e+01, 3.262544052124024e+01, 4.919468139648438e+01, 2.265149612426758e+01, 3.897870727539063e+01, 5.739289390563965e+01, 2.350964279174805e+01, 3.921985534667969e+01, 4.934214630126953e+01, 1.959533157348633e+01, 4.097961547851563e+01, 3.821431076049804e+01, 1.971100402832031e+01, 1.842490768432617e+01, 3.082341529846191e+01, 9.305664520263672e+00, 3.931372817993164e+01, 2.287709495544433e+01, 2.575110740661621e+01, 5.993311386108398e+01, 1.701968002319336e+01, 1.87395336151123e+01, 4.765606369018555e+01, 1.146548147201538e+01, 2.389177268981934e+01, 2.002226051330566e+01, 8.421295547485352e+00, 3.050795673370361e+01, 5.343391418457031e+01, 1.720578330993652e+01, 1.436553691864014e+01, 1.289562154769897e+01, 9.135440788269044e+00, 1.846881694793701e+01, 1.951801666259766e+01, 1.358189615249634e+01, 4.345347061157226e+01, 8.194011421203614e+00, 1.580699443817139e+01] +FreeFloatRoomTemperature=[2.1e+01, 3.505353034973145e+01, 4.393938732147217e+00, 2.089313274383545e+01, 4.597402130126953e+01, 7.464434719085693e+00, 2.363319694519043e+01, 7.32408727645874e+00, 2.384297475814819e+00, 3.312467300415039e+01, 2.560200729370117e+01, 1.041721584320068e+01, 3.64278237915039e+01, 1.325580410957336e+00, 1.113901741027832e+01, 5.017034072875977e+01, 1.983051139831543e+01, 1.474417259216309e+01, 4.184280288696289e+01, 9.381691894531251e+00, 1.639428291320801e+01, 3.052332336425781e+01, 5.47216609954834e+00, 1.933480319976807e+01, 4.972131637573242e+01, 1.220132064819336e+01, 2.270056495666504e+01, 3.461529964447021e+01, 8.521409492492676e+00, 2.822806663513184e+01, 2.789733352661133e+01, 1.873457416534424e+01, 3.489511032104492e+01, 1.932183292388916e+01, 2.036285247802734e+01, 3.210237770080566e+01, 1.616515586853027e+01, 2.393584259033203e+01, 3.36311994934082e+01, 1.437338172912598e+01, 2.398528310773345e+01, 3.325634719848633e+01, 1.867300277709961e+01, 2.801391162872314e+01, 1.44649728012085e+01, 2.59134162902832e+01, 1.998247489929199e+01, 2.827959201812744e+01, 2.288592750549316e+01, 3.286615768432617e+01, 3.96308708190918e+01, 1.744683212280274e+01, 3.950889556884766e+01, 2.901053657531738e+01, 2.51162109375e+01, 4.35173957824707e+01, 2.933026008605957e+01, 3.084727756500244e+01, 4.549706161499024e+01, 2.485143085479736e+01, 2.680853830678401e+01, 4.957792465209961e+01, 2.194021903991699e+01, 3.263478813171387e+01, 4.917696899414062e+01, 2.26586799621582e+01, 3.898737335205078e+01, 5.736873977661133e+01, 2.352066673278809e+01, 3.922744842529297e+01, 4.931274261474609e+01, 1.960527164459229e+01, 4.098616012573243e+01, 3.818869117736816e+01, 1.972447135925293e+01, 1.843351936340332e+01, 3.080423942565918e+01, 9.31068748474121e+00, 3.930858917236328e+01, 2.28687353515625e+01, 2.576867790222168e+01, 5.991805625915527e+01, 1.702300117492676e+01, 1.875380073547363e+01, 4.762865707397461e+01, 1.147831363677978e+01, 2.39058708190918e+01, 1.999985942840576e+01, 8.434072189331054e+00, 3.052136661529541e+01, 5.339687652587891e+01, 1.721424503326416e+01, 1.436969165802002e+01, 1.28882732963562e+01, 9.146695709228515e+00, 1.847671585083008e+01, 1.949138282775879e+01, 1.35974280166626e+01, 4.34592903137207e+01, 8.183784790039063e+00, 1.582010650634766e+01] checkResultsAccordingToASHRAEHeatingOrTempMax.upperLimit=[6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01, 6.95e+01] checkResultsAccordingToASHRAECoolingOrTempMin.lowerLimit=[-1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01, -1.879999923706055e+01] checkResultsAccordingToASHRAECoolingOrTempMin.upperLimit=[-1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01, -1.560000038146973e+01] checkResultsAccordingToASHRAEHeatingOrTempMax.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] checkResultsAccordingToASHRAECoolingOrTempMin.satisfied=[0e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] -Room.thermRoom.T=[2.941499938964844e+02, 3.082312817382813e+02, 2.775330749511719e+02, 2.940289178466797e+02, 3.191555078125e+02, 2.806015411376953e+02, 2.967666772460938e+02, 2.804747113037109e+02, 2.755193896484375e+02, 3.062583868408203e+02, 2.987948608398438e+02, 2.835575927734375e+02, 3.095674951171875e+02, 2.744725750732422e+02, 2.842747802734375e+02, 3.233168548583984e+02, 2.929954797363282e+02, 2.878805950927734e+02, 3.150016235351562e+02, 2.825318212890625e+02, 2.895311157226562e+02, 3.036807702636719e+02, 2.786130261230469e+02, 2.924768603515625e+02, 3.228987512207031e+02, 2.853448181152344e+02, 2.95840029296875e+02, 3.077875103759766e+02, 2.816638598632812e+02, 3.013703002929688e+02, 3.010647827148438e+02, 2.91876704711914e+02, 3.080406237792969e+02, 2.924851574707031e+02, 2.935045764160157e+02, 3.052542358398438e+02, 2.893229797363281e+02, 2.970769775390625e+02, 3.067810510253906e+02, 2.875247961425781e+02, 2.971294128186483e+02, 3.064146850585938e+02, 2.918208776855469e+02, 3.011573803710937e+02, 2.876206896972656e+02, 2.990607635498047e+02, 2.931284448242188e+02, 3.014382794189453e+02, 2.960301293945312e+02, 3.060108386230469e+02, 3.12794189453125e+02, 2.905942736816406e+02, 3.126587780761719e+02, 3.021701013183594e+02, 2.982576477050781e+02, 3.166685821533203e+02, 3.024862536621094e+02, 3.039896319580078e+02, 3.186473510742188e+02, 2.980032940673828e+02, 2.999506731852991e+02, 3.227297418212891e+02, 2.950880065917969e+02, 3.057754486083984e+02, 3.223446899414063e+02, 2.958014984130859e+02, 3.121287182617187e+02, 3.305428887939453e+02, 2.966596533203125e+02, 3.123698492431641e+02, 3.224921569824219e+02, 2.927453326416016e+02, 3.141296215820312e+02, 3.113642974853516e+02, 2.928610009765625e+02, 2.915749053955078e+02, 3.039734118652344e+02, 2.82455673828125e+02, 3.124637341308594e+02, 2.960271008300781e+02, 2.989010986328125e+02, 3.330831164550781e+02, 2.901696887207031e+02, 2.9188953125e+02, 3.208060693359375e+02, 2.846154876708985e+02, 2.970417822265625e+02, 2.931722521972656e+02, 2.815713049316406e+02, 3.036579656982422e+02, 3.265839050292969e+02, 2.903557775878906e+02, 2.875155322265625e+02, 2.860456359863281e+02, 2.822854516601562e+02, 2.916188262939453e+02, 2.926680236816406e+02, 2.867318975830078e+02, 3.166034716796875e+02, 2.813440100097656e+02, 2.889570007324219e+02] -Room.starRoom.T=[2.895909423828125e+02, 3.103918377685547e+02, 2.776966345214844e+02, 2.945314721679687e+02, 3.215754699707031e+02, 2.80776724243164e+02, 2.974724096679687e+02, 2.809576416015625e+02, 2.757726196289062e+02, 3.070964819335937e+02, 3.006195190429688e+02, 2.837862188720703e+02, 3.102501977539063e+02, 2.746530023193359e+02, 2.845887109375e+02, 3.242632171630859e+02, 2.939669567871094e+02, 2.88233267211914e+02, 3.165010607910156e+02, 2.829394451904297e+02, 2.898580200195312e+02, 3.04675902709961e+02, 2.787876745605469e+02, 2.927104888916016e+02, 3.244610388183594e+02, 2.854384460449219e+02, 2.962568395996093e+02, 3.086930029296875e+02, 2.818109716796875e+02, 3.017738665771485e+02, 3.020163940429687e+02, 2.920890295410156e+02, 3.083480578613281e+02, 2.932343688964844e+02, 2.936818627929687e+02, 3.054971771240234e+02, 2.897253076171875e+02, 2.972982946777344e+02, 3.070547119140625e+02, 2.876629718017578e+02, 2.973319275442478e+02, 3.06710933227539e+02, 2.919455969238281e+02, 3.013370172119141e+02, 2.878474255371094e+02, 2.991294281005859e+02, 2.932568920898437e+02, 3.018184967041016e+02, 2.961763635253906e+02, 3.06214478149414e+02, 3.132103271484375e+02, 2.906626086425781e+02, 3.128179797363281e+02, 3.0257107421875e+02, 2.984352026367188e+02, 3.169054443359375e+02, 3.027795727539062e+02, 3.041537261962891e+02, 3.189766967773438e+02, 2.981804370117188e+02, 3.001386643392815e+02, 3.233869403076172e+02, 2.952013500976562e+02, 3.059993084716797e+02, 3.232887768554688e+02, 2.959025360107422e+02, 3.124068212890625e+02, 3.317561181640625e+02, 2.968503369140625e+02, 3.126855114746094e+02, 3.237696350097656e+02, 2.929555059814453e+02, 3.146816296386719e+02, 3.128005419921875e+02, 2.931212377929688e+02, 2.919045867919922e+02, 3.050818078613281e+02, 2.825660791015625e+02, 3.129776147460938e+02, 2.968831384277344e+02, 2.993170532226562e+02, 3.345783038330078e+02, 2.906719787597656e+02, 2.923091168212891e+02, 3.22857744140625e+02, 2.848363403320312e+02, 2.975323962402344e+02, 2.9432603515625e+02, 2.818061254882812e+02, 3.042249237060547e+02, 3.284552490234375e+02, 2.904692883300781e+02, 2.879427868652344e+02, 2.866665216064453e+02, 2.824926916503906e+02, 2.920923736572266e+02, 2.940572705078125e+02, 2.870862713623047e+02, 3.175595202636719e+02, 2.823658038330078e+02, 2.893377990722656e+02] -TransmittedSolarRadiation_room=[0e+00, 1.130989562988281e+01, 2.615989479064941e+01, 4.389695739746094e+01, 5.918936218261719e+01, 7.433140563964844e+01, 8.556210327148438e+01, 1.003800846862793e+02, 1.156234512329102e+02, 1.345727996826172e+02, 1.427998718261719e+02, 1.544969787597656e+02, 1.70538818359375e+02, 1.774752551269531e+02, 1.932666931152344e+02, 2.07531884765625e+02, 2.213068823242187e+02, 2.364033966064453e+02, 2.496846020507813e+02, 2.609831774902344e+02, 2.750807800292969e+02, 2.882561798095703e+02, 2.998596313476563e+02, 3.089225463867188e+02, 3.219283410644532e+02, 3.322938842773438e+02, 3.404437255859375e+02, 3.503629766845703e+02, 3.563301391601562e+02, 3.649158020019531e+02, 3.725991394042969e+02, 3.801110229492188e+02, 3.884588317871094e+02, 3.934172259521484e+02, 4.005342712402344e+02, 4.054501953125e+02, 4.083151806640625e+02, 4.135298461914062e+02, 4.187032775878906e+02, 4.223152526855469e+02, 4.269171142578125e+02, 4.303510668945312e+02, 4.334131469726562e+02, 4.37159912109375e+02, 4.396194323730469e+02, 4.423707275390625e+02, 4.452666625976562e+02, 4.481251959228516e+02, 4.508374499511719e+02, 4.544322814941406e+02, 4.576422729492188e+02, 4.600709228515625e+02, 4.63460693359375e+02, 4.661316522216797e+02, 4.6974609375e+02, 4.742601623535156e+02, 4.778960827636719e+02, 4.828953552246094e+02, 4.881283874511719e+02, 4.913847344970703e+02, 4.974064636230469e+02, 5.027894055175781e+02, 5.07058935546875e+02, 5.151317138671875e+02, 5.222742260742187e+02, 5.28472412109375e+02, 5.38481201171875e+02, 5.474842749023437e+02, 5.567841186523438e+02, 5.671640014648438e+02, 5.774936157226563e+02, 5.860970458984375e+02, 5.97453857421875e+02, 6.097907604980469e+02, 6.212943115234375e+02, 6.347105712890625e+02, 6.481325903320312e+02, 6.602127075195312e+02, 6.730839013671875e+02, 6.872219250488281e+02, 7.052362060546875e+02, 7.225623022460937e+02, 7.35588583984375e+02, 7.496431884765625e+02, 7.630137841796875e+02, 7.775438842773438e+02, 7.92566650390625e+02, 8.023077111816406e+02, 8.157559204101562e+02, 8.338771362304688e+02, 8.4708515625e+02, 8.581228637695312e+02, 8.684522705078125e+02, 8.816214562988281e+02, 8.9320458984375e+02, 9.1037158203125e+02, 9.255189624023437e+02, 9.402844848632812e+02, 9.567626367187499e+02, 9.70413173828125e+02, 9.888775634765625e+02] +Room.thermRoom.T=[2.941499938964844e+02, 3.082035327148437e+02, 2.77543935546875e+02, 2.940431329345703e+02, 3.191240161132812e+02, 2.806144378662109e+02, 2.967832055664063e+02, 2.804740850830078e+02, 2.755343005371094e+02, 3.062746594238281e+02, 2.98752001953125e+02, 2.835672265625e+02, 3.095778173828125e+02, 2.74475581665039e+02, 2.842890124511719e+02, 3.233203399658203e+02, 2.929805187988281e+02, 2.878941821289063e+02, 3.149928112792969e+02, 2.825316802978516e+02, 2.895442810058594e+02, 3.036733197021484e+02, 2.786221606445313e+02, 2.924847900390625e+02, 3.228713293457031e+02, 2.85351318359375e+02, 2.958505749511719e+02, 3.077652862548828e+02, 2.816714086914063e+02, 3.013780725097656e+02, 3.010473266601563e+02, 2.91884584350586e+02, 3.080451196289063e+02, 2.924718341064453e+02, 2.935128479003906e+02, 3.052523712158203e+02, 2.893151611328125e+02, 2.970858312988281e+02, 3.067811950683594e+02, 2.875233837890625e+02, 2.971352948792816e+02, 3.064063525390625e+02, 2.918229931640625e+02, 3.011639221191406e+02, 2.876149645996094e+02, 2.990634063720703e+02, 2.931324841308594e+02, 3.014295904541016e+02, 2.9603591796875e+02, 3.060161499023437e+02, 3.127808837890625e+02, 2.905968347167969e+02, 3.126589025878906e+02, 3.021605285644531e+02, 2.982662158203125e+02, 3.166674072265625e+02, 3.024802624511719e+02, 3.039972686767578e+02, 3.186470593261719e+02, 2.980014379882812e+02, 2.999585380606242e+02, 3.227279211425781e+02, 2.950902209472656e+02, 3.057847912597656e+02, 3.223269714355469e+02, 2.958086883544922e+02, 3.121373706054687e+02, 3.305187298583984e+02, 2.966706591796875e+02, 3.123774499511719e+02, 3.22462744140625e+02, 2.927552624511719e+02, 3.141361730957031e+02, 3.113386962890625e+02, 2.928744616699219e+02, 2.915835113525391e+02, 3.039542443847656e+02, 2.824606951904297e+02, 3.124585766601563e+02, 2.960187268066406e+02, 2.989186767578125e+02, 3.330680633544922e+02, 2.901730139160156e+02, 2.919037908935547e+02, 3.207786547851563e+02, 2.846283020019531e+02, 2.970558715820313e+02, 2.931498486328125e+02, 2.815840844726562e+02, 3.036713562011719e+02, 3.265468688964844e+02, 2.903642559814453e+02, 2.875196862792969e+02, 2.860382720947266e+02, 2.82296689453125e+02, 2.91626708984375e+02, 2.926413781738281e+02, 2.867474304199219e+02, 3.16609296875e+02, 2.813337890625e+02, 2.889700927734375e+02] +Room.starRoom.T=[2.895909423828125e+02, 3.103645654296875e+02, 2.777067175292969e+02, 2.945421966552734e+02, 3.215477258300782e+02, 2.807886016845703e+02, 2.974841638183594e+02, 2.809605316162109e+02, 2.75786142578125e+02, 3.071070678710938e+02, 3.005873779296875e+02, 2.83794248046875e+02, 3.102553942871094e+02, 2.746563970947266e+02, 2.846009411621094e+02, 3.242591796875e+02, 2.939607873535156e+02, 2.882444647216797e+02, 3.16487646484375e+02, 2.829426702880859e+02, 2.898690185546875e+02, 3.046668518066406e+02, 2.787960473632813e+02, 2.927167938232422e+02, 3.244368640136719e+02, 2.854447326660156e+02, 2.962644091796875e+02, 3.086771392822266e+02, 2.818175842285156e+02, 3.017783239746093e+02, 3.020045654296875e+02, 2.920952362060547e+02, 3.08349658203125e+02, 2.932273638916016e+02, 2.936888049316406e+02, 3.054932220458984e+02, 2.897215075683594e+02, 2.973054174804687e+02, 3.070528857421875e+02, 2.876635681152344e+02, 2.973361561771591e+02, 3.06702134399414e+02, 2.919485034179688e+02, 3.013418499755859e+02, 2.878430786132812e+02, 2.991315887451172e+02, 2.932598742675781e+02, 3.018124603271484e+02, 2.96181181640625e+02, 3.062178771972656e+02, 3.13200927734375e+02, 2.906648236083984e+02, 3.128163684082031e+02, 3.02565478515625e+02, 2.984423022460937e+02, 3.169022094726562e+02, 3.027776135253906e+02, 3.041599615478515e+02, 3.189735998535156e+02, 2.981806707763672e+02, 3.001450959709136e+02, 3.233808850097656e+02, 2.952047729492188e+02, 3.060067419433594e+02, 3.232719104003907e+02, 2.959096405029297e+02, 3.124129736328125e+02, 3.317366223144531e+02, 2.968599340820313e+02, 3.126903155517578e+02, 3.237477722167969e+02, 2.929639288330078e+02, 3.146836108398438e+02, 3.127844183349609e+02, 2.931328527832031e+02, 2.919109191894531e+02, 3.050722290039063e+02, 2.825706030273437e+02, 3.129692980957032e+02, 2.968825537109375e+02, 2.993319519042969e+02, 3.345602081298828e+02, 2.906781469726562e+02, 2.923206097412109e+02, 3.228332434082031e+02, 2.848479278564453e+02, 2.975430737304687e+02, 2.943098553466797e+02, 2.818174621582031e+02, 3.042341589355469e+02, 3.284265441894531e+02, 2.904770043945313e+02, 2.879438415527344e+02, 2.866632611083984e+02, 2.825026782226562e+02, 2.920969299316406e+02, 2.940418798828125e+02, 2.870995062255859e+02, 3.175587268066406e+02, 2.823654229736328e+02, 2.89348388671875e+02] +TransmittedSolarRadiation_room=[0e+00, 1.130990272521973e+01, 2.616036674499512e+01, 4.38975944519043e+01, 5.919010177612304e+01, 7.433236694335938e+01, 8.556321716308594e+01, 1.003815730285644e+02, 1.156251602172852e+02, 1.345748291015625e+02, 1.428020812988281e+02, 1.544994201660156e+02, 1.705415496826172e+02, 1.774779711914063e+02, 1.932696838378906e+02, 2.075354751586914e+02, 2.213107965087891e+02, 2.364077301025391e+02, 2.496891339111328e+02, 2.609879437255859e+02, 2.750859680175781e+02, 2.882614709472657e+02, 2.998650329589844e+02, 3.089279174804688e+02, 3.219338342285157e+02, 3.322996215820312e+02, 3.404496459960938e+02, 3.503689599609375e+02, 3.563362426757812e+02, 3.64921875e+02, 3.72605517578125e+02, 3.8011767578125e+02, 3.884656982421875e+02, 3.934242834472656e+02, 4.005416259765625e+02, 4.054575500488281e+02, 4.083224438476562e+02, 4.135373840332031e+02, 4.187109375e+02, 4.22323095703125e+02, 4.269252014160156e+02, 4.303592144775391e+02, 4.334213562011719e+02, 4.37168212890625e+02, 4.396275805664063e+02, 4.423789367675781e+02, 4.4527490234375e+02, 4.481334661865234e+02, 4.508457641601562e+02, 4.544405822753906e+02, 4.57650634765625e+02, 4.600793151855469e+02, 4.634691772460938e+02, 4.661401971435547e+02, 4.697547302246094e+02, 4.742688598632812e+02, 4.779048413085937e+02, 4.829042358398438e+02, 4.881374133300781e+02, 4.913937683105469e+02, 4.974157409667969e+02, 5.027988049316406e+02, 5.070683654785156e+02, 5.151412963867188e+02, 5.2228380859375e+02, 5.284821166992188e+02, 5.384910888671875e+02, 5.474944067382812e+02, 5.567943115234375e+02, 5.671742553710938e+02, 5.775038696289063e+02, 5.861073608398438e+02, 5.974642944335938e+02, 6.098013195800781e+02, 6.213050537109375e+02, 6.347213745117188e+02, 6.481435766601562e+02, 6.60223876953125e+02, 6.730951928710938e+02, 6.872334838867188e+02, 7.052479858398438e+02, 7.225745092773437e+02, 7.356007885742188e+02, 7.496554565429688e+02, 7.630262353515625e+02, 7.77556640625e+02, 7.925797119140625e+02, 8.023207116699218e+02, 8.157689819335938e+02, 8.338903198242188e+02, 8.470982177734375e+02, 8.5813623046875e+02, 8.68466064453125e+02, 8.8163564453125e+02, 8.932188110351562e+02, 9.103859252929688e+02, 9.25533427734375e+02, 9.402991943359375e+02, 9.567774682617187e+02, 9.704280053710937e+02, 9.888928833007812e+02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case620.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case620.txt index 91de8f8721..9ef378ea37 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case620.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case620.txt @@ -1,20 +1,20 @@ -last-generated=2021-05-25 +last-generated=2022-07-06 statistics-simulation= { "linear": "0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0", "nonlinear": "19", - "number of continuous time states": "23", + "number of continuous time states": "25", "numerical Jacobians": "0" } time=[0e+00, 3.15396e+07] checkResultsAccordingToASHRAEHeatingOrTempMax.lowerLimit=[4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03, 4.613e+03] -AnnualHeatingLoad=[0e+00, 2.250771255493164e+02, 3.461372192382813e+02, 4.204450067138672e+02, 5.222693554687499e+02, 6.268327026367188e+02, 7.960267553710937e+02, 8.777591809082031e+02, 9.768152416992187e+02, 1.086513234863281e+03, 1.267628295898438e+03, 1.389857351074219e+03, 1.45110595703125e+03, 1.598293393554688e+03, 1.697886806640625e+03, 1.803876220703125e+03, 1.87318701171875e+03, 1.975844448242188e+03, 2.09254150390625e+03, 2.17628857421875e+03, 2.221670263671875e+03, 2.287416098632812e+03, 2.355043115234375e+03, 2.424073344726562e+03, 2.461585693359375e+03, 2.496455444335938e+03, 2.572372119140625e+03, 2.612431640625e+03, 2.662742626953125e+03, 2.72394970703125e+03, 2.746525146484375e+03, 2.769617719726562e+03, 2.777173583984375e+03, 2.822365966796875e+03, 2.847289501953125e+03, 2.87781298828125e+03, 2.908513671875e+03, 2.926490478515625e+03, 2.929146484375e+03, 2.94058984375e+03, 2.9461494140625e+03, 2.959373779296875e+03, 2.969101318359375e+03, 2.97124072265625e+03, 2.996599609375e+03, 3.01045458984375e+03, 3.0165361328125e+03, 3.02460498046875e+03, 3.028264892578125e+03, 3.0296337890625e+03, 3.029741455078125e+03, 3.033258818359375e+03, 3.03509228515625e+03, 3.03509228515625e+03, 3.0352470703125e+03, 3.0352470703125e+03, 3.0352470703125e+03, 3.0352470703125e+03, 3.0352470703125e+03, 3.0352470703125e+03, 3.03527880859375e+03, 3.037536865234375e+03, 3.039176025390625e+03, 3.03929931640625e+03, 3.043490478515625e+03, 3.047229736328125e+03, 3.0472490234375e+03, 3.0472490234375e+03, 3.050713270399306e+03, 3.05152734375e+03, 3.06024755859375e+03, 3.071131357421875e+03, 3.09656591796875e+03, 3.11733544921875e+03, 3.14399896484375e+03, 3.167364868164062e+03, 3.214045166015625e+03, 3.247490263671875e+03, 3.288895751953125e+03, 3.324141357421875e+03, 3.3552990234375e+03, 3.386634033203125e+03, 3.434609066087372e+03, 3.513800390625e+03, 3.6116103515625e+03, 3.68218271484375e+03, 3.737505771484375e+03, 3.836902299804688e+03, 3.916147978515625e+03, 3.983539521484375e+03, 4.091917724609375e+03, 4.17027744140625e+03, 4.26071853515625e+03, 4.383279140625e+03, 4.55837931640625e+03, 4.6826791015625e+03, 4.8277470703125e+03, 4.90365146484375e+03, 4.97479443359375e+03, 5.060393056640625e+03, 5.158041015625e+03] +AnnualHeatingLoad=[0e+00, 2.250758557128906e+02, 3.461316821289063e+02, 4.204309588623047e+02, 5.222494580078124e+02, 6.268082824707031e+02, 7.960012841796874e+02, 8.777258557128906e+02, 9.767786352539063e+02, 1.086472602539063e+03, 1.267585693359375e+03, 1.389809499511719e+03, 1.451052001953125e+03, 1.598238356933594e+03, 1.697826381835938e+03, 1.803812866210938e+03, 1.873113159179688e+03, 1.975764614257813e+03, 2.09245654296875e+03, 2.1761953125e+03, 2.22156650390625e+03, 2.287302177734375e+03, 2.3549193359375e+03, 2.423941982421875e+03, 2.461445068359375e+03, 2.496302856445312e+03, 2.572214853515625e+03, 2.612263671875e+03, 2.662566640625e+03, 2.723767333984375e+03, 2.74633203125e+03, 2.769414150390625e+03, 2.776962890625e+03, 2.822146728515625e+03, 2.8470596484375e+03, 2.877576416015625e+03, 2.90827099609375e+03, 2.926239501953125e+03, 2.92888916015625e+03, 2.9403251953125e+03, 2.9458779296875e+03, 2.959092529296875e+03, 2.968810302734375e+03, 2.970943359375e+03, 2.99629541015625e+03, 3.010145751953125e+03, 3.01622265625e+03, 3.0242822265625e+03, 3.027935546875e+03, 3.02930224609375e+03, 3.02940869140625e+03, 3.032920629882813e+03, 3.03475048828125e+03, 3.03475048828125e+03, 3.034903564453125e+03, 3.034903564453125e+03, 3.034903564453125e+03, 3.034903564453125e+03, 3.034903564453125e+03, 3.034903564453125e+03, 3.03493408203125e+03, 3.037187255859375e+03, 3.038822509765625e+03, 3.0389443359375e+03, 3.043129638671875e+03, 3.046862060546875e+03, 3.04688037109375e+03, 3.04688037109375e+03, 3.050337552505557e+03, 3.051147705078125e+03, 3.05985888671875e+03, 3.070733559570313e+03, 3.096163330078125e+03, 3.116922119140625e+03, 3.14357708984375e+03, 3.166933715820312e+03, 3.21360498046875e+03, 3.247042509765625e+03, 3.288439453125e+03, 3.323673583984375e+03, 3.354820361328125e+03, 3.38614794921875e+03, 3.434111507493622e+03, 3.5132955078125e+03, 3.6111025390625e+03, 3.68166513671875e+03, 3.73697966796875e+03, 3.8363723046875e+03, 3.915614287109375e+03, 3.982999443359375e+03, 4.09137451171875e+03, 4.1697291015625e+03, 4.26016666015625e+03, 4.382725654296875e+03, 4.5578249609375e+03, 4.682122998046875e+03, 4.827189453125e+03, 4.903089775390625e+03, 4.97422705078125e+03, 5.05981921875e+03, 5.15746435546875e+03] checkResultsAccordingToASHRAEHeatingOrTempMax.upperLimit=[5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03, 5.944e+03] checkResultsAccordingToASHRAECoolingOrTempMin.lowerLimit=[-5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03, -5.004e+03] -AnnualCoolingLoad=[0e+00, 0e+00, -6.567172706127167e-02, -9.990075826644897e-01, -3.277071952819824e+00, -3.717465400695801e+00, -3.717465400695801e+00, -6.865355968475342e+00, -7.534707546234131e+00, -8.5924072265625e+00, -8.5924072265625e+00, -8.962191581726074e+00, -1.076581287384033e+01, -1.076581287384033e+01, -1.128353786468506e+01, -1.738175466746708e+01, -2.092930221557617e+01, -2.665413665771484e+01, -3.08997802734375e+01, -3.370475006103516e+01, -5.421630096435547e+01, -6.100397109985352e+01, -8.365853118896484e+01, -8.967044067382812e+01, -1.296315856933594e+02, -1.769851379394531e+02, -1.827877960205078e+02, -2.109975738525391e+02, -2.257499694824219e+02, -2.502878570556641e+02, -2.904725036621094e+02, -3.272362365722656e+02, -4.007724499511719e+02, -4.24481689453125e+02, -4.8101171875e+02, -4.98382177734375e+02, -5.042732006835938e+02, -5.5764990234375e+02, -6.368990844726562e+02, -6.930075109863282e+02, -7.7275341796875e+02, -7.849688720703125e+02, -8.492244873046875e+02, -9.3486328125e+02, -9.567424926757812e+02, -1.014178588867188e+03, -1.068435546875e+03, -1.118763540039062e+03, -1.200359619140625e+03, -1.313468573641348e+03, -1.433419799804688e+03, -1.487208129882812e+03, -1.568593813476562e+03, -1.636883601074219e+03, -1.723974975585938e+03, -1.833638598632813e+03, -1.93701873046875e+03, -2.0540224609375e+03, -2.153620458984375e+03, -2.21244724609375e+03, -2.31445654296875e+03, -2.37112384765625e+03, -2.428852739057149e+03, -2.543515869140625e+03, -2.591112041015625e+03, -2.657221435546875e+03, -2.768632763671875e+03, -2.84993859375e+03, -2.935757568359375e+03, -3.01551953125e+03, -3.05441689453125e+03, -3.092906494140625e+03, -3.146043905612296e+03, -3.18917806640625e+03, -3.2331474609375e+03, -3.282527099609375e+03, -3.319144287109375e+03, -3.355609130859375e+03, -3.37308291015625e+03, -3.40810546875e+03, -3.453242919921875e+03, -3.4800931640625e+03, -3.494653076171875e+03, -3.502124267578125e+03, -3.505042236328125e+03, -3.51466796875e+03, -3.518702392578125e+03, -3.519281982421875e+03, -3.520057373046875e+03, -3.52171533203125e+03, -3.52171533203125e+03, -3.526301025390625e+03, -3.526301025390625e+03, -3.526301025390625e+03, -3.526301025390625e+03, -3.526301025390625e+03, -3.526301025390625e+03, -3.526301025390625e+03, -3.528095458984375e+03, -3.529176025390625e+03, -3.529176025390625e+03] +AnnualCoolingLoad=[0e+00, 0e+00, -6.447364389896393e-02, -9.931560158729553e-01, -3.267458200454712e+00, -3.706362009048462e+00, -3.706362009048462e+00, -6.850075244903564e+00, -7.517870903015137e+00, -8.572151184082031e+00, -8.572151184082031e+00, -8.940395355224609e+00, -1.073960590362549e+01, -1.073960590362549e+01, -1.125451469421387e+01, -1.734931842425397e+01, -2.089285469055176e+01, -2.661307525634766e+01, -3.085549163818359e+01, -3.365729141235352e+01, -5.416051864624023e+01, -6.093882369995117e+01, -8.358370208740234e+01, -8.958829498291016e+01, -1.2953599609375e+02, -1.768777160644531e+02, -1.826769256591797e+02, -2.108748931884766e+02, -2.256186981201172e+02, -2.501480712890625e+02, -2.903229370117188e+02, -3.270773010253906e+02, -4.006000231933594e+02, -4.242995434570312e+02, -4.808192443847656e+02, -4.981815826416016e+02, -5.040669616699219e+02, -5.574324951171875e+02, -6.366712622070313e+02, -6.927698071289062e+02, -7.72503662109375e+02, -7.847090429687501e+02, -8.489549560546875e+02, -9.345819702148438e+02, -9.564553833007812e+02, -1.013881591796875e+03, -1.068130126953125e+03, -1.118445791015625e+03, -1.200032348632812e+03, -1.313133153276352e+03, -1.433078491210938e+03, -1.48686181640625e+03, -1.568236635742187e+03, -1.636520483398438e+03, -1.723603759765625e+03, -1.833261767578125e+03, -1.936637504882812e+03, -2.053636962890625e+03, -2.15322958984375e+03, -2.212050517578125e+03, -2.3140537109375e+03, -2.370713935546875e+03, -2.428435180664062e+03, -2.543091796875e+03, -2.590677490234375e+03, -2.65677783203125e+03, -2.768181591796875e+03, -2.849481806640625e+03, -2.935290771484375e+03, -3.0150419921875e+03, -3.0539267578125e+03, -3.09241015625e+03, -3.145538290377921e+03, -3.188659755859375e+03, -3.2326220703125e+03, -3.2819921875e+03, -3.318598525390625e+03, -3.35505517578125e+03, -3.372519150390625e+03, -3.40753271484375e+03, -3.45265869140625e+03, -3.479498725585937e+03, -3.49405126953125e+03, -3.501518798828125e+03, -3.50443408203125e+03, -3.51405224609375e+03, -3.51808056640625e+03, -3.518657958984375e+03, -3.519429443359375e+03, -3.5210830078125e+03, -3.5210830078125e+03, -3.525664306640625e+03, -3.525664306640625e+03, -3.525664306640625e+03, -3.525664306640625e+03, -3.525664306640625e+03, -3.525664306640625e+03, -3.525664306640625e+03, -3.527455322265625e+03, -3.52853369140625e+03, -3.52853369140625e+03] checkResultsAccordingToASHRAECoolingOrTempMin.upperLimit=[-3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03, -3.417e+03] checkResultsAccordingToASHRAEHeatingOrTempMax.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00] checkResultsAccordingToASHRAECoolingOrTempMin.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00] -Room.thermRoom.T=[2.941499938964844e+02, 2.931503033447266e+02, 2.931500073242187e+02, 2.931499530029297e+02, 2.931501501464843e+02, 2.931499938964844e+02, 2.931499328613281e+02, 2.931500903320313e+02, 2.931499938964844e+02, 2.931497680664062e+02, 2.93403399775887e+02, 2.931499633789062e+02, 2.946616137695312e+02, 2.931500244140625e+02, 2.931499938964844e+02, 3.001495894536684e+02, 2.994297379566571e+02, 2.931499633789062e+02, 2.979780749511719e+02, 2.935133966064453e+02, 2.931499755859375e+02, 2.931500433349609e+02, 2.931500244140625e+02, 2.931499328613281e+02, 3.001502380371094e+02, 2.931499633789062e+02, 2.931498022460938e+02, 2.983041021728516e+02, 2.931499938964844e+02, 2.975634851074219e+02, 2.990590881347656e+02, 2.931499328613281e+02, 3.001497216796875e+02, 3.001498864746094e+02, 2.931499475097656e+02, 3.001497467041016e+02, 3.001500317382813e+02, 2.946735205078125e+02, 3.001499060058593e+02, 3.001501452636719e+02, 2.959447867180093e+02, 3.001502062988282e+02, 2.989356973287943e+02, 2.986541522216797e+02, 2.932448436630769e+02, 2.988386749267578e+02, 2.938059814453125e+02, 3.001501470947265e+02, 2.948093176269531e+02, 3.001499298801766e+02, 3.001498107910156e+02, 2.931499938964844e+02, 3.001499890136719e+02, 3.001498211669922e+02, 2.955826867675781e+02, 3.001497741699219e+02, 3.001499951171875e+02, 2.990770568847656e+02, 3.001496630859375e+02, 3.001501489257813e+02, 2.964340147093894e+02, 3.001493957519531e+02, 3.001500092806882e+02, 2.990224151611328e+02, 3.001501794433594e+02, 2.945525787353516e+02, 3.001499328613281e+02, 3.001501916503906e+02, 2.931499373824508e+02, 3.001359728329145e+02, 3.001499816894531e+02, 2.931499938964844e+02, 3.001498393548436e+02, 3.001498986816407e+02, 2.931499719238281e+02, 2.931499481201172e+02, 3.0015013671875e+02, 2.931500244140625e+02, 3.00149775390625e+02, 2.975723522949219e+02, 2.931499816894531e+02, 3.001499963378906e+02, 2.931502909757653e+02, 2.931499938964844e+02, 2.960175598144531e+02, 2.931499938964844e+02, 2.931499304199219e+02, 2.931501727294922e+02, 2.931499938964844e+02, 2.931498492431641e+02, 2.995002563476563e+02, 2.931499938964844e+02, 2.931499401855469e+02, 2.931499938964844e+02, 2.931500036621094e+02, 2.931499633789062e+02, 2.935548193359375e+02, 2.931499835205078e+02, 2.941207214355469e+02, 2.931502917480469e+02, 2.931499938964844e+02] -Room.starRoom.T=[2.896278686523438e+02, 2.92989985961914e+02, 2.904902307128907e+02, 2.910892248535156e+02, 2.928784606933594e+02, 2.906958221435547e+02, 2.907189013671875e+02, 2.91143173828125e+02, 2.898088403320313e+02, 2.924830035400391e+02, 2.941929322091453e+02, 2.909205438232422e+02, 2.949905859375e+02, 2.906430767822266e+02, 2.905093566894531e+02, 3.014797880964173e+02, 3.004274867894032e+02, 2.908592913818359e+02, 2.994295629882812e+02, 2.943323309326172e+02, 2.912068359375e+02, 2.936678356933594e+02, 2.906339880371094e+02, 2.923521630859375e+02, 3.029544384765625e+02, 2.918837585449219e+02, 2.928875634765625e+02, 2.986393408203125e+02, 2.909916552734375e+02, 2.979471575927735e+02, 2.995639526367187e+02, 2.921526721191406e+02, 3.021609802246094e+02, 3.025006103515625e+02, 2.926264184570313e+02, 3.043618316650391e+02, 3.040999560546875e+02, 2.948686456298828e+02, 3.039695361328125e+02, 3.026664715576172e+02, 2.961532754427865e+02, 3.061647546386719e+02, 2.997556927020733e+02, 2.988088684082031e+02, 2.937181173507643e+02, 2.990452117919922e+02, 2.939711474609375e+02, 3.012700341796875e+02, 2.950172888183594e+02, 3.003483502307097e+02, 3.046232604980469e+02, 2.925981683349609e+02, 3.042909912109375e+02, 3.050124792480469e+02, 2.957215930175781e+02, 3.077225677490234e+02, 3.070437414550781e+02, 2.991429766845703e+02, 3.044759338378906e+02, 3.057376531982422e+02, 2.965510099861176e+02, 3.049406915283203e+02, 3.009990394905822e+02, 2.991031030273438e+02, 3.051024609375e+02, 2.949059936523437e+02, 3.00584443359375e+02, 3.04526968383789e+02, 2.930502368314766e+02, 3.002347839968887e+02, 3.03128369140625e+02, 2.920816137695313e+02, 3.005557991447888e+02, 3.029135662841797e+02, 2.918981884765625e+02, 2.916159362792969e+02, 3.023493957519531e+02, 2.913597393798828e+02, 3.028484375e+02, 2.983149291992187e+02, 2.921321350097656e+02, 3.05187807006836e+02, 2.935834693130182e+02, 2.910802142333985e+02, 2.972666271972656e+02, 2.911344482421875e+02, 2.916836596679688e+02, 2.929228314208984e+02, 2.906072521972656e+02, 2.927904437255859e+02, 2.997479797363281e+02, 2.92228384399414e+02, 2.9079767578125e+02, 2.919267816162109e+02, 2.907096447753906e+02, 2.908015991210938e+02, 2.943108251953125e+02, 2.906685223388672e+02, 2.945354541015625e+02, 2.932400994873047e+02, 2.908397216796875e+02] -TransmittedSolarRadiation_room=[0e+00, 2.331190409660339e+00, 6.243444271087647e+00, 1.068799018859863e+01, 1.451181949615479e+01, 1.87428035736084e+01, 2.202202606201172e+01, 2.644070663452148e+01, 3.145893669128418e+01, 3.727958679199219e+01, 4.045468334562417e+01, 4.400567245483398e+01, 4.940409469604492e+01, 5.146078224182129e+01, 5.778524017333984e+01, 6.407268207592502e+01, 7.004910042565932e+01, 7.567282104492188e+01, 8.173506011962891e+01, 8.766690750122071e+01, 9.534991455078125e+01, 1.027474449157715e+02, 1.103795178222656e+02, 1.163321380615234e+02, 1.247066702270508e+02, 1.331443328857422e+02, 1.3915869140625e+02, 1.471513131713867e+02, 1.522264733886719e+02, 1.610886688232422e+02, 1.690667022705078e+02, 1.768794097900391e+02, 1.866242456054688e+02, 1.932636172485352e+02, 2.033802947998047e+02, 2.097545776367188e+02, 2.140608856201172e+02, 2.227496490478516e+02, 2.326861743164062e+02, 2.409074966430664e+02, 2.507335205078125e+02, 2.555438009643555e+02, 2.639252658657261e+02, 2.7410107421875e+02, 2.785475565907387e+02, 2.867055114746094e+02, 2.94465087890625e+02, 3.018241278076172e+02, 3.112708996582031e+02, 3.221098908176766e+02, 3.322628479003906e+02, 3.387584600830078e+02, 3.478370288085937e+02, 3.549006597900391e+02, 3.630576171875e+02, 3.734810943603516e+02, 3.821154748535157e+02, 3.910070495605469e+02, 3.993409143066406e+02, 4.055150964355469e+02, 4.146845703125e+02, 4.211678424072265e+02, 4.273160013277237e+02, 4.367394714355469e+02, 4.433310009765625e+02, 4.505860595703125e+02, 4.604365234375e+02, 4.682516119384766e+02, 4.766066269109278e+02, 4.841558227539062e+02, 4.906891174316406e+02, 4.962169799804688e+02, 5.033729858398438e+02, 5.109621893310547e+02, 5.174061279296875e+02, 5.246087646484375e+02, 5.317511083984375e+02, 5.371497802734375e+02, 5.4291318359375e+02, 5.493899951171875e+02, 5.56677978515625e+02, 5.634426232910156e+02, 5.685613104372609e+02, 5.734465942382812e+02, 5.775300073242188e+02, 5.827681884765625e+02, 5.87418212890625e+02, 5.900939392089844e+02, 5.943981323242188e+02, 5.994327392578125e+02, 6.026904296875e+02, 6.0599267578125e+02, 6.087932739257812e+02, 6.120131750488281e+02, 6.14948486328125e+02, 6.1898486328125e+02, 6.228983642578125e+02, 6.263616943359375e+02, 6.301796752929688e+02, 6.3365884765625e+02, 6.380515747070312e+02] +Room.thermRoom.T=[2.941499938964844e+02, 2.931503033447266e+02, 2.931500073242187e+02, 2.931499530029297e+02, 2.931501501464843e+02, 2.931499938964844e+02, 2.931499328613281e+02, 2.931500903320313e+02, 2.931499938964844e+02, 2.931497967529297e+02, 2.934060844242106e+02, 2.931499633789062e+02, 2.946685546875e+02, 2.931500244140625e+02, 2.931499938964844e+02, 3.001496095147752e+02, 2.994188240711879e+02, 2.931499633789062e+02, 2.979723754882813e+02, 2.935112359619141e+02, 2.931499755859375e+02, 2.931500433349609e+02, 2.931500244140625e+02, 2.931499328613281e+02, 3.001502380371094e+02, 2.931499633789062e+02, 2.931491271972656e+02, 2.982983081054688e+02, 2.931499938964844e+02, 2.975695745849609e+02, 2.990593811035156e+02, 2.931499328613281e+02, 3.001497216796875e+02, 3.001498864746094e+02, 2.931499475097656e+02, 3.001497680664062e+02, 3.001500317382813e+02, 2.946794970703125e+02, 3.001498950195312e+02, 3.001500811767578e+02, 2.959501636760726e+02, 3.001502062988282e+02, 2.98922704198127e+02, 2.986574072265625e+02, 2.932441134142802e+02, 2.988373565673828e+02, 2.938117565917969e+02, 3.001501470947265e+02, 2.948126684570312e+02, 3.001499298978849e+02, 3.001498107910156e+02, 2.931499938964844e+02, 3.001499719238281e+02, 3.001498211669922e+02, 2.955872692871094e+02, 3.001497741699219e+02, 3.001499951171875e+02, 2.99078735961914e+02, 3.001496398925781e+02, 3.001501489257813e+02, 2.964379520182069e+02, 3.001493426513672e+02, 3.001499664306641e+02, 2.990244171142578e+02, 3.001501794433594e+02, 2.945493377685547e+02, 3.001499328613281e+02, 3.001501916503906e+02, 2.931499374581181e+02, 3.001360506604065e+02, 3.001499816894531e+02, 2.931499938964844e+02, 3.001498393548436e+02, 3.001498986816407e+02, 2.931499719238281e+02, 2.931499481201172e+02, 3.001501281738281e+02, 2.931500244140625e+02, 3.001497705078125e+02, 2.975621142578125e+02, 2.931499816894531e+02, 3.001499963378906e+02, 2.931502909757653e+02, 2.931499938964844e+02, 2.960098059082031e+02, 2.931499938964844e+02, 2.931499304199219e+02, 2.931501727294922e+02, 2.931499938964844e+02, 2.931498107910156e+02, 2.994955871582031e+02, 2.931499938964844e+02, 2.931499401855469e+02, 2.931499938964844e+02, 2.931500036621094e+02, 2.931499633789062e+02, 2.935532531738281e+02, 2.931499835205078e+02, 2.941247229003906e+02, 2.931502917480469e+02, 2.931499938964844e+02] +Room.starRoom.T=[2.896278686523438e+02, 2.929900164794922e+02, 2.904902307128907e+02, 2.910894085693359e+02, 2.928784301757813e+02, 2.906959991455078e+02, 2.907189221191406e+02, 2.911432043457031e+02, 2.898088403320313e+02, 2.924851177978516e+02, 2.941932434400753e+02, 2.909205615234375e+02, 2.94994697265625e+02, 2.906430767822266e+02, 2.90509384765625e+02, 3.014795494953185e+02, 3.004210203005624e+02, 2.908593682861328e+02, 2.994256103515625e+02, 2.943317944335938e+02, 2.912070129394531e+02, 2.936680682373047e+02, 2.906339880371094e+02, 2.923532379150391e+02, 3.029543249511719e+02, 2.918837585449219e+02, 2.928905529785156e+02, 2.986358984375e+02, 2.909916552734375e+02, 2.979500122070312e+02, 2.995621643066406e+02, 2.921531072998047e+02, 3.021610119628906e+02, 3.024996136474609e+02, 2.926275732421875e+02, 3.043616088867187e+02, 3.040984729003906e+02, 2.948728692626953e+02, 3.039695776367187e+02, 3.026628979492187e+02, 2.961568463852373e+02, 3.061641174316406e+02, 2.997497340947183e+02, 2.988105108642578e+02, 2.937179688255853e+02, 2.990454284667969e+02, 2.9397546875e+02, 3.012699627685547e+02, 2.950206640625e+02, 3.003481669435164e+02, 3.046232299804688e+02, 2.9259822265625e+02, 3.042909912109375e+02, 3.050123162841797e+02, 2.9572486328125e+02, 3.077226531982422e+02, 3.070436401367188e+02, 2.991439770507812e+02, 3.044759265136719e+02, 3.057370678710938e+02, 2.965538502858411e+02, 3.049406481933594e+02, 3.009939453125e+02, 2.991042852783203e+02, 3.051023974609375e+02, 2.949064208984375e+02, 3.00584443359375e+02, 3.045269604492187e+02, 2.930523391787477e+02, 3.002348040096724e+02, 3.031280883789062e+02, 2.920818316650391e+02, 3.005557991447888e+02, 3.029125775146484e+02, 2.918983935546875e+02, 2.916161346435547e+02, 3.023465698242188e+02, 2.913597393798828e+02, 3.028475659179687e+02, 2.983100958251953e+02, 2.921328552246094e+02, 3.05187158203125e+02, 2.935834693130182e+02, 2.910802752685547e+02, 2.972633459472656e+02, 2.911344482421875e+02, 2.916843249511719e+02, 2.929228356933594e+02, 2.906072521972656e+02, 2.927927777099609e+02, 2.997440368652344e+02, 2.92228384399414e+02, 2.907976525878906e+02, 2.919267980957031e+02, 2.907096240234375e+02, 2.908015716552734e+02, 2.94310341796875e+02, 2.906685528564453e+02, 2.945363439941406e+02, 2.932401062011719e+02, 2.908397216796875e+02] +TransmittedSolarRadiation_room=[0e+00, 2.331195178031921e+00, 6.243494281768799e+00, 1.06880521774292e+01, 1.451188766479492e+01, 1.874287796020508e+01, 2.202209091186523e+01, 2.644080772399902e+01, 3.145904541015625e+01, 3.727968597412109e+01, 4.04546917648913e+01, 4.400571823120117e+01, 4.940413284301758e+01, 5.146070594787598e+01, 5.778517532348633e+01, 6.40726439497853e+01, 7.004902643744529e+01, 7.567277526855469e+01, 8.17349838256836e+01, 8.766684646606446e+01, 9.534989929199219e+01, 1.027474838256836e+02, 1.103795623779297e+02, 1.163321380615234e+02, 1.247066604614258e+02, 1.331440887451172e+02, 1.391584320068359e+02, 1.471508706665039e+02, 1.522259698486328e+02, 1.610881958007812e+02, 1.690661926269531e+02, 1.7687890625e+02, 1.866237268066406e+02, 1.932630526733398e+02, 2.033797912597656e+02, 2.097541854858399e+02, 2.140604736328125e+02, 2.227491607666016e+02, 2.326858135986328e+02, 2.409071304321289e+02, 2.507331390380859e+02, 2.555432821655273e+02, 2.639247658640583e+02, 2.741006164550781e+02, 2.78547111204165e+02, 2.867050262451172e+02, 2.944646606445312e+02, 3.018236804199219e+02, 3.112704724121094e+02, 3.221094301082697e+02, 3.322623901367188e+02, 3.387579718017578e+02, 3.478366015625e+02, 3.549001409912109e+02, 3.630569763183594e+02, 3.734805450439453e+02, 3.821149047851562e+02, 3.910064392089844e+02, 3.993402429199219e+02, 4.055143334960937e+02, 4.146838684082031e+02, 4.211672143554687e+02, 4.273153533935547e+02, 4.367389526367188e+02, 4.433305151367188e+02, 4.505855499267578e+02, 4.604360961914062e+02, 4.682511846923828e+02, 4.766061691220335e+02, 4.841553955078125e+02, 4.906885986328125e+02, 4.962164916992188e+02, 5.033725891113281e+02, 5.109617639160156e+02, 5.174057006835938e+02, 5.246084289550781e+02, 5.317507421875e+02, 5.371493530273438e+02, 5.429128173828125e+02, 5.493896899414062e+02, 5.566776733398438e+02, 5.634423791503906e+02, 5.685610052614796e+02, 5.734462890625e+02, 5.775296704101562e+02, 5.827678833007812e+02, 5.874179077148438e+02, 5.900936950683594e+02, 5.943978271484375e+02, 5.994324951171875e+02, 6.0269013671875e+02, 6.059922485351562e+02, 6.087928466796875e+02, 6.120127478027343e+02, 6.149481811523438e+02, 6.189844970703125e+02, 6.228981127929687e+02, 6.26361328125e+02, 6.30179404296875e+02, 6.336585900878906e+02, 6.3805126953125e+02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case640.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case640.txt index 4d1a66a991..12599d11e5 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case640.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case640.txt @@ -1,20 +1,20 @@ -last-generated=2021-05-25 +last-generated=2022-07-06 statistics-simulation= { "linear": "0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0", "nonlinear": "13", - "number of continuous time states": "23", + "number of continuous time states": "25", "numerical Jacobians": "0" } time=[0e+00, 3.15396e+07] checkResultsAccordingToASHRAEHeatingOrTempMax.lowerLimit=[2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03, 2.751e+03] -AnnualHeatingLoad=[0e+00, 1.584822082519531e+02, 2.296133981698285e+02, 2.756768914794922e+02, 3.330334167480469e+02, 3.864440460205078e+02, 5.144124389648438e+02, 5.628477221679688e+02, 6.157545361328125e+02, 6.851626433098924e+02, 8.286319580078125e+02, 9.122332153320312e+02, 9.496602783203125e+02, 1.0448254296875e+03, 1.104769130859375e+03, 1.174004028320312e+03, 1.214761962890625e+03, 1.278064086914062e+03, 1.366414306640625e+03, 1.420951926269531e+03, 1.448189331054688e+03, 1.491140014648438e+03, 1.532155477897701e+03, 1.582888305664062e+03, 1.605968383789062e+03, 1.621671508789062e+03, 1.680780209960938e+03, 1.70612744140625e+03, 1.7355721875e+03, 1.791528198242188e+03, 1.807740966796875e+03, 1.824050170898438e+03, 1.831703369140625e+03, 1.863850463867188e+03, 1.883196044921875e+03, 1.907938354492188e+03, 1.930664916992188e+03, 1.944346069335938e+03, 1.947515991210938e+03, 1.956798784179688e+03, 1.96314794921875e+03, 1.973552368164062e+03, 1.98227576171875e+03, 1.985807250976562e+03, 2.006010864257812e+03, 2.019099243164062e+03, 2.0234326171875e+03, 2.029252197265625e+03, 2.0320302734375e+03, 2.03313671875e+03, 2.033172729492188e+03, 2.035654541015625e+03, 2.038159912109375e+03, 2.038160400390625e+03, 2.038298828125e+03, 2.038304077148438e+03, 2.038304077148438e+03, 2.038304077148438e+03, 2.038304077148438e+03, 2.038304077148438e+03, 2.03832373046875e+03, 2.040184326171875e+03, 2.041172485351562e+03, 2.041228149414062e+03, 2.044370239257812e+03, 2.047042602539062e+03, 2.04706298828125e+03, 2.04706591796875e+03, 2.05082373046875e+03, 2.05223291015625e+03, 2.05911376953125e+03, 2.0643583984375e+03, 2.08009814453125e+03, 2.092193359375e+03, 2.105444580078125e+03, 2.119024780273438e+03, 2.144511474609375e+03, 2.160103759765625e+03, 2.183089111328125e+03, 2.1987724609375e+03, 2.214325927734375e+03, 2.230173583984375e+03, 2.254633816510262e+03, 2.307670654296875e+03, 2.362966064453125e+03, 2.39944384765625e+03, 2.43370451171875e+03, 2.492318359375e+03, 2.530777705078125e+03, 2.571685546875e+03, 2.633109619140625e+03, 2.6764658203125e+03, 2.738329375e+03, 2.8094755859375e+03, 2.92543017578125e+03, 2.997103149414062e+03, 3.084737548828125e+03, 3.122129638671875e+03, 3.1635712890625e+03, 3.208860107421875e+03, 3.263146728515625e+03] +AnnualHeatingLoad=[0e+00, 1.584935913085938e+02, 2.296322448091233e+02, 2.75699892578125e+02, 3.330704956054688e+02, 3.864818237304688e+02, 5.144675366210937e+02, 5.629167248535156e+02, 6.158235815429688e+02, 6.852450080587392e+02, 8.28728759765625e+02, 9.123338891601562e+02, 9.497765502929688e+02, 1.044952016601562e+03, 1.104896625976563e+03, 1.174143310546875e+03, 1.214914306640625e+03, 1.278219604492188e+03, 1.366582763671875e+03, 1.421128928222656e+03, 1.448373413085938e+03, 1.491339599609375e+03, 1.532363273741481e+03, 1.5831025390625e+03, 1.6061982421875e+03, 1.621908813476562e+03, 1.68102705078125e+03, 1.706388305664062e+03, 1.735837958984375e+03, 1.791815063476562e+03, 1.80803857421875e+03, 1.824357666015625e+03, 1.832016235351562e+03, 1.86418115234375e+03, 1.88353759765625e+03, 1.908291748046875e+03, 1.931027221679688e+03, 1.944715942382812e+03, 1.947887329101562e+03, 1.957175288085938e+03, 1.963526611328125e+03, 1.973935302734375e+03, 1.982664438476563e+03, 1.9861962890625e+03, 2.006406372070312e+03, 2.01950390625e+03, 2.023838989257812e+03, 2.029661743164062e+03, 2.032442504882812e+03, 2.033550048828125e+03, 2.033586059570312e+03, 2.036068725585938e+03, 2.038575805664062e+03, 2.038576293945312e+03, 2.038714965820312e+03, 2.03872021484375e+03, 2.03872021484375e+03, 2.03872021484375e+03, 2.03872021484375e+03, 2.03872021484375e+03, 2.038739868164062e+03, 2.040599853515625e+03, 2.041588623046875e+03, 2.041644165039062e+03, 2.04478759765625e+03, 2.047461181640625e+03, 2.047481323242188e+03, 2.047484130859375e+03, 2.051243408203125e+03, 2.052651123046875e+03, 2.059534423828125e+03, 2.0647822265625e+03, 2.0805322265625e+03, 2.092638916015625e+03, 2.105896728515625e+03, 2.11948681640625e+03, 2.14499072265625e+03, 2.160589599609375e+03, 2.1835927734375e+03, 2.199294677734375e+03, 2.214860107421875e+03, 2.230719482421875e+03, 2.255195313944619e+03, 2.308240478515625e+03, 2.36355126953125e+03, 2.400032373046875e+03, 2.43430755859375e+03, 2.4929375e+03, 2.53139953125e+03, 2.572322021484375e+03, 2.633753662109375e+03, 2.67711767578125e+03, 2.73899044921875e+03, 2.810146240234375e+03, 2.926102041015625e+03, 2.997785571289062e+03, 3.0854287109375e+03, 3.12282666015625e+03, 3.164283203125e+03, 3.20958203125e+03, 3.263871826171875e+03] checkResultsAccordingToASHRAEHeatingOrTempMax.upperLimit=[3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03, 3.803e+03] checkResultsAccordingToASHRAECoolingOrTempMin.lowerLimit=[-7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03, -7.811e+03] -AnnualCoolingLoad=[0e+00, -3.664967781066895e+01, -1.255242156982422e+02, -2.38417724609375e+02, -3.214129663085938e+02, -4.074569702148438e+02, -4.563611450195312e+02, -5.539898681640625e+02, -6.307188110351562e+02, -7.298455200195312e+02, -7.62992041015625e+02, -8.352074584960938e+02, -9.314638061523438e+02, -9.502479248046875e+02, -1.02569091796875e+03, -1.08877236328125e+03, -1.166759033203125e+03, -1.244977661132812e+03, -1.31011740234375e+03, -1.36629931640625e+03, -1.451071166992188e+03, -1.512642741699219e+03, -1.585932495117188e+03, -1.622464111328125e+03, -1.715219755859375e+03, -1.7966240234375e+03, -1.825716918945312e+03, -1.88210990234375e+03, -1.913351684570312e+03, -1.954709350585938e+03, -2.002987866210937e+03, -2.052095458984375e+03, -2.125759521484375e+03, -2.147358154296875e+03, -2.1917822265625e+03, -2.209726806640625e+03, -2.21285791015625e+03, -2.24441455078125e+03, -2.2915254296875e+03, -2.3215439453125e+03, -2.3602216796875e+03, -2.371639711914062e+03, -2.397654052734375e+03, -2.431509765625e+03, -2.441691650390625e+03, -2.463576171875e+03, -2.4822275390625e+03, -2.50062041015625e+03, -2.528760986328125e+03, -2.58131689453125e+03, -2.6395986328125e+03, -2.664037841796875e+03, -2.7027462109375e+03, -2.735183862304687e+03, -2.78454443359375e+03, -2.847628344726562e+03, -2.908034140625e+03, -2.989998046875e+03, -3.066076640625e+03, -3.105189697265625e+03, -3.1805869140625e+03, -3.230703994140625e+03, -3.278974853515625e+03, -3.384754638671875e+03, -3.443575341796875e+03, -3.508831298828125e+03, -3.629877779782046e+03, -3.72670767578125e+03, -3.83428857421875e+03, -3.950741943359375e+03, -4.029369287109375e+03, -4.10535791015625e+03, -4.20249853515625e+03, -4.297380673828125e+03, -4.39273291015625e+03, -4.50475048828125e+03, -4.606799296875e+03, -4.70754638671875e+03, -4.790481171875e+03, -4.90370703125e+03, -5.05646484375e+03, -5.18626373046875e+03, -5.278255859375e+03, -5.36665966796875e+03, -5.4294858984375e+03, -5.52882568359375e+03, -5.61973291015625e+03, -5.664041201171875e+03, -5.737984375e+03, -5.84822314453125e+03, -5.9068869140625e+03, -5.97567236328125e+03, -6.03104443359375e+03, -6.09437646484375e+03, -6.1424140625e+03, -6.2244150390625e+03, -6.29159521484375e+03, -6.38228857421875e+03, -6.4861337890625e+03, -6.56567431640625e+03, -6.67229736328125e+03] +AnnualCoolingLoad=[0e+00, -3.664737747192382e+01, -1.255197982788086e+02, -2.384052429199219e+02, -3.213984167480469e+02, -4.074379272460938e+02, -4.563429260253906e+02, -5.53968994140625e+02, -6.306900024414062e+02, -7.298093872070312e+02, -7.62957763671875e+02, -8.351716918945312e+02, -9.314224243164062e+02, -9.502083740234375e+02, -1.02564501953125e+03, -1.088721948242187e+03, -1.166706665039062e+03, -1.244917236328125e+03, -1.310053930664063e+03, -1.366233276367188e+03, -1.4509970703125e+03, -1.512562739257813e+03, -1.585851440429688e+03, -1.622378173828125e+03, -1.715128203125e+03, -1.796526977539062e+03, -1.8256142578125e+03, -1.881998718261719e+03, -1.913236450195312e+03, -1.954591918945312e+03, -2.002861352539062e+03, -2.051960205078125e+03, -2.125614013671875e+03, -2.147212646484375e+03, -2.191628173828125e+03, -2.209565185546875e+03, -2.212693359375e+03, -2.244240966796875e+03, -2.291340126953125e+03, -2.321349609375e+03, -2.36001513671875e+03, -2.371421455078125e+03, -2.3974267578125e+03, -2.431270751953125e+03, -2.441447509765625e+03, -2.46332470703125e+03, -2.4819677734375e+03, -2.500350224609375e+03, -2.528479736328125e+03, -2.58102685546875e+03, -2.6393017578125e+03, -2.66373583984375e+03, -2.70243322265625e+03, -2.734863715820312e+03, -2.78421533203125e+03, -2.847289453125e+03, -2.907690556640625e+03, -2.989648681640625e+03, -3.065721357421875e+03, -3.104830078125e+03, -3.18021875e+03, -3.230324599609375e+03, -3.278589111328125e+03, -3.384361083984375e+03, -3.443171533203125e+03, -3.50841845703125e+03, -3.62945556205215e+03, -3.726279272460938e+03, -3.833852783203125e+03, -3.950295654296875e+03, -4.028910546875e+03, -4.1048896484375e+03, -4.20202392578125e+03, -4.2968953515625e+03, -4.39224072265625e+03, -4.50424853515625e+03, -4.6062911328125e+03, -4.70703466796875e+03, -4.78996310546875e+03, -4.90318603515625e+03, -5.05593310546875e+03, -5.185723203125e+03, -5.2777119140625e+03, -5.36611181640625e+03, -5.42893560546875e+03, -5.52827099609375e+03, -5.61917236328125e+03, -5.6634805859375e+03, -5.73741796875e+03, -5.847650390625e+03, -5.9063072265625e+03, -5.97509130859375e+03, -6.0304580078125e+03, -6.09378759765625e+03, -6.1418203125e+03, -6.22381591796875e+03, -6.29099255859375e+03, -6.3816796875e+03, -6.48551904296875e+03, -6.565056640625e+03, -6.671671875e+03] checkResultsAccordingToASHRAECoolingOrTempMin.upperLimit=[-5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03, -5.952e+03] checkResultsAccordingToASHRAEHeatingOrTempMax.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00] checkResultsAccordingToASHRAECoolingOrTempMin.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00] -Room.thermRoom.T=[2.941499938964844e+02, 3.001501788330078e+02, 2.931525182400062e+02, 2.931499224853516e+02, 3.001498327636719e+02, 2.831499938964844e+02, 2.931498510742188e+02, 2.931505023193359e+02, 2.831499938964844e+02, 2.931472287420933e+02, 3.001503601074219e+02, 2.831491815185547e+02, 2.965659106445312e+02, 2.931500592041016e+02, 2.831498461914063e+02, 3.001495391845703e+02, 2.981695141601563e+02, 2.852608380126953e+02, 3.001495373535156e+02, 2.931504766845703e+02, 2.879521606445313e+02, 3.001498413085938e+02, 2.931512083143513e+02, 2.9301458984375e+02, 3.001498852539062e+02, 2.843548583984375e+02, 2.931498937988281e+02, 3.001502435302734e+02, 2.831499328613281e+02, 2.955877978515625e+02, 3.001503295898438e+02, 2.899034014892578e+02, 2.996336901855469e+02, 2.979315148925782e+02, 2.911858447265625e+02, 3.000815170883398e+02, 2.93967459091412e+02, 2.938818627929688e+02, 3.001499133300781e+02, 2.931502685546875e+02, 2.947833524720859e+02, 3.001498419189453e+02, 2.931502465820312e+02, 2.98048359375e+02, 2.933281237792969e+02, 2.97949087524414e+02, 2.932152675236341e+02, 3.001501763916016e+02, 2.943700366210937e+02, 2.995540447998047e+02, 3.001500854492188e+02, 2.906758178710937e+02, 3.001499328613281e+02, 3.001503198242187e+02, 2.952824780273438e+02, 3.0014990234375e+02, 3.001504956054687e+02, 2.989297967529297e+02, 3.001498498535156e+02, 2.972607244873047e+02, 2.955359932559899e+02, 3.001495843505859e+02, 2.935817944335938e+02, 2.985227197265625e+02, 3.00149775390625e+02, 2.929660461425781e+02, 3.001499633789062e+02, 3.00150009765625e+02, 2.927642065429687e+02, 3.001005059814453e+02, 3.001501647949219e+02, 2.889528186035157e+02, 2.992584851074218e+02, 3.001504138183594e+02, 2.882327416992188e+02, 2.931499176025391e+02, 3.001506823730469e+02, 2.859597717285156e+02, 3.0014966796875e+02, 2.96821049194336e+02, 2.901934631347656e+02, 3.001495025634766e+02, 2.931505175709019e+02, 2.889497406005859e+02, 3.001498291015625e+02, 2.831499633789062e+02, 2.931499279785156e+02, 3.001504742431641e+02, 2.831499633789062e+02, 2.933206813646399e+02, 3.001501586914063e+02, 2.880157055664063e+02, 2.931498254394531e+02, 2.944906018066406e+02, 2.831499328613281e+02, 2.931498687744141e+02, 3.00150595703125e+02, 2.835423834772393e+02, 2.996299761195382e+02, 2.937820859448663e+02, 2.857813110351562e+02] -Room.starRoom.T=[2.895909423828125e+02, 3.067527612304688e+02, 2.846947297878909e+02, 2.911958569335937e+02, 3.09898642578125e+02, 2.820304931640625e+02, 2.91142802734375e+02, 2.924640740966797e+02, 2.810784851074219e+02, 2.934894159639169e+02, 3.086135559082031e+02, 2.830800146484375e+02, 2.968806555175781e+02, 2.904818200683594e+02, 2.828638854980469e+02, 3.016603881835937e+02, 2.992523937988281e+02, 2.855425012207031e+02, 3.033688098144531e+02, 2.913409716796875e+02, 2.882272277832031e+02, 3.017197174072265e+02, 2.859404457414121e+02, 2.919933392333984e+02, 3.088552282714843e+02, 2.844324951171875e+02, 2.921188122558594e+02, 3.056869268798828e+02, 2.82757236328125e+02, 2.958411047363281e+02, 3.035181945800781e+02, 2.9007109375e+02, 2.997479150390625e+02, 2.988072143554688e+02, 2.913129248046875e+02, 3.002492843095282e+02, 2.944294844002559e+02, 2.940304821777344e+02, 3.006011938476562e+02, 2.921169543457031e+02, 2.949337841858605e+02, 3.021477044677735e+02, 2.92282744140625e+02, 2.981606396484375e+02, 2.936703100585938e+02, 2.97999658203125e+02, 2.933456559129043e+02, 3.014863665771484e+02, 2.94482646484375e+02, 2.996230895996094e+02, 3.050167236328125e+02, 2.907454858398438e+02, 3.013191345214844e+02, 3.016692175292969e+02, 2.953968029785156e+02, 3.019542266845703e+02, 3.013543566894531e+02, 2.989921032714844e+02, 3.021309948730469e+02, 2.974309948730469e+02, 2.956316101157486e+02, 3.034296685791016e+02, 2.936761071777344e+02, 2.985921209716797e+02, 3.067066552734375e+02, 2.930247161865234e+02, 3.00247041971972e+02, 3.098489581298828e+02, 2.928721826171875e+02, 3.001671624755859e+02, 3.09961328125e+02, 2.890795599365234e+02, 2.994291931152344e+02, 3.078953833007812e+02, 2.883850439453125e+02, 2.918948364257812e+02, 3.044154992675781e+02, 2.861411737060547e+02, 3.022716149902344e+02, 2.976747583007813e+02, 2.903898803710937e+02, 3.075213861083984e+02, 2.921850445087139e+02, 2.892624645996094e+02, 3.090130139160156e+02, 2.826073699951172e+02, 2.917789514160156e+02, 3.027128735351562e+02, 2.819806262207031e+02, 2.935998641304348e+02, 3.121374938964844e+02, 2.880863427734375e+02, 2.915941979980469e+02, 2.95319828491211e+02, 2.825294299316406e+02, 2.915613464355469e+02, 3.033675378417969e+02, 2.838126382571467e+02, 3.002400264534407e+02, 2.948617848363416e+02, 2.860752258300781e+02] -TransmittedSolarRadiation_room=[0e+00, 1.130978723526001e+01, 2.615976440351086e+01, 4.389682388305664e+01, 5.918916046142578e+01, 7.433132934570312e+01, 8.556227111816406e+01, 1.003804449462891e+02, 1.156240615844727e+02, 1.345736083984375e+02, 1.428010009765625e+02, 1.544980163574219e+02, 1.705398712158203e+02, 1.774764300537109e+02, 1.932680358886719e+02, 2.075334609985352e+02, 2.213086297607422e+02, 2.364051513671875e+02, 2.496863885498047e+02, 2.609852526855469e+02, 2.750830078125e+02, 2.882583581542969e+02, 2.998615144109608e+02, 3.0892431640625e+02, 3.219296533203125e+02, 3.322950134277344e+02, 3.404449462890625e+02, 3.503639227294922e+02, 3.563308715820312e+02, 3.649166564941406e+02, 3.725999633789062e+02, 3.801119689941406e+02, 3.884594421386719e+02, 3.934179052734375e+02, 4.00534912109375e+02, 4.054509887695312e+02, 4.083158456586265e+02, 4.1353076171875e+02, 4.187038879394531e+02, 4.223159289550781e+02, 4.269179382324219e+02, 4.303518603515625e+02, 4.334138488769531e+02, 4.3716064453125e+02, 4.396199609375e+02, 4.423712158203125e+02, 4.4526708984375e+02, 4.481257653808594e+02, 4.508379516601562e+02, 4.544326171875e+02, 4.576425476074219e+02, 4.600711669921875e+02, 4.634609375e+02, 4.661317639160156e+02, 4.697461853027344e+02, 4.742601928710938e+02, 4.778960119628906e+02, 4.82895263671875e+02, 4.881283190917969e+02, 4.913843383789062e+02, 4.974059753417969e+02, 5.027887341308594e+02, 5.070580200195312e+02, 5.151304321289062e+02, 5.222725830078125e+02, 5.284706420898438e+02, 5.384789428710938e+02, 5.474818334960937e+02, 5.567811889648438e+02, 5.671607055664062e+02, 5.774900512695312e+02, 5.860933837890625e+02, 5.974500732421875e+02, 6.097869189453126e+02, 6.212904663085938e+02, 6.347063598632812e+02, 6.481281787109375e+02, 6.602080688476562e+02, 6.73078896484375e+02, 6.872165539550781e+02, 7.052306518554688e+02, 7.225568090820312e+02, 7.355826054860854e+02, 7.496370849609375e+02, 7.630076196289062e+02, 7.775377197265625e+02, 7.925601196289062e+02, 8.023008837890625e+02, 8.15748779296875e+02, 8.338697509765625e+02, 8.470774536132812e+02, 8.581152954101562e+02, 8.684447631835938e+02, 8.816140100097656e+02, 8.93197021484375e+02, 9.103638305664062e+02, 9.25511279296875e+02, 9.402767944335938e+02, 9.567547733146987e+02, 9.704026036755793e+02, 9.8886962890625e+02] +Room.thermRoom.T=[2.941499938964844e+02, 3.001502026367187e+02, 2.931524027869533e+02, 2.931499224853516e+02, 3.001498327636719e+02, 2.831499938964844e+02, 2.931498510742188e+02, 2.931505847167969e+02, 2.831499938964844e+02, 2.931463068658779e+02, 3.001503601074219e+02, 2.831495532226563e+02, 2.965722729492188e+02, 2.931500592041016e+02, 2.831498461914063e+02, 3.001495391845703e+02, 2.981563122558593e+02, 2.852699377441406e+02, 3.001495373535156e+02, 2.931504766845703e+02, 2.879599304199219e+02, 3.001498413085938e+02, 2.931510227910848e+02, 2.930149267578125e+02, 3.001498852539062e+02, 2.843593139648438e+02, 2.931498937988281e+02, 3.001502435302734e+02, 2.831499328613281e+02, 2.955942407226563e+02, 3.001503295898438e+02, 2.899104736328125e+02, 2.9963548828125e+02, 2.979212365722656e+02, 2.911918579101563e+02, 3.000819522301519e+02, 2.939641982421875e+02, 2.938874993896484e+02, 3.001499133300781e+02, 2.931502685546875e+02, 2.947885545424354e+02, 3.001498419189453e+02, 2.931502465820312e+02, 2.980515441894531e+02, 2.933276159667969e+02, 2.979505645751953e+02, 2.932205747208505e+02, 3.001501763916016e+02, 2.943743127441406e+02, 2.995554901123047e+02, 3.001500854492188e+02, 2.906782019042969e+02, 3.001499328613281e+02, 3.001506726074219e+02, 2.952867895507812e+02, 3.0014990234375e+02, 3.001506408691406e+02, 2.989314874267578e+02, 3.001498498535156e+02, 2.972575238037109e+02, 2.955398689884118e+02, 3.001495843505859e+02, 2.935817053222656e+02, 2.985247692871094e+02, 3.00149775390625e+02, 2.929684295654297e+02, 3.001499633789062e+02, 3.00150009765625e+02, 2.927691796875e+02, 3.001007568359375e+02, 3.001501647949219e+02, 2.889593304443359e+02, 2.99261044921875e+02, 3.001504138183594e+02, 2.882401940917969e+02, 2.931499176025391e+02, 3.001508361816406e+02, 2.859663098144531e+02, 3.0014966796875e+02, 2.968107946777343e+02, 2.902006225585938e+02, 3.001495025634766e+02, 2.931505175709019e+02, 2.889581823730469e+02, 3.001498291015625e+02, 2.831499633789062e+02, 2.931499279785156e+02, 3.001504479980469e+02, 2.831499633789062e+02, 2.933287470333654e+02, 3.001501586914063e+02, 2.880191241455078e+02, 2.931498254394531e+02, 2.944866625976563e+02, 2.831499328613281e+02, 2.931498657226563e+02, 3.001500048828125e+02, 2.835520518793721e+02, 2.996322063149092e+02, 2.937778871470484e+02, 2.857903137207031e+02] +Room.starRoom.T=[2.895909423828125e+02, 3.067525848388672e+02, 2.84696890710989e+02, 2.911964385986328e+02, 3.098984143066406e+02, 2.820307922363281e+02, 2.911437536621094e+02, 2.924640905761719e+02, 2.810787744140625e+02, 2.934941685192906e+02, 3.086125793457031e+02, 2.830844372558594e+02, 2.968844543457031e+02, 2.904818548583984e+02, 2.828677612304688e+02, 3.016603576660156e+02, 2.992465856933593e+02, 2.855495855712891e+02, 3.033686889648437e+02, 2.913412854003906e+02, 2.882328002929688e+02, 3.017196447753906e+02, 2.859417154928956e+02, 2.919941790771484e+02, 3.088550622558594e+02, 2.844368896484375e+02, 2.921201989746094e+02, 3.056862261962891e+02, 2.82759423828125e+02, 2.958453576660156e+02, 3.035162475585938e+02, 2.900768591308594e+02, 2.997485791015625e+02, 2.988020733642578e+02, 2.913180212402344e+02, 3.00249365898618e+02, 2.944288732534555e+02, 2.940348760986328e+02, 3.006011328125e+02, 2.921179754638672e+02, 2.949377628138334e+02, 3.021474920654297e+02, 2.922848583984375e+02, 2.9816263671875e+02, 2.936700646972656e+02, 2.980008148193359e+02, 2.933499047621241e+02, 3.014840240478516e+02, 2.944861926269531e+02, 2.996238092041016e+02, 3.050166320800781e+02, 2.907475238037109e+02, 3.013191345214844e+02, 3.016670526123047e+02, 2.954001379394531e+02, 3.019542297363281e+02, 3.013528002929688e+02, 2.989932092285156e+02, 3.021309948730469e+02, 2.974300372314453e+02, 2.956347839438736e+02, 3.034295416259766e+02, 2.936773828125e+02, 2.985935296630859e+02, 3.06706591796875e+02, 2.930274505615234e+02, 3.00247041971972e+02, 3.098489276123047e+02, 2.928763305664062e+02, 3.001672534179688e+02, 3.099610290527344e+02, 2.890852172851563e+02, 2.994302966308594e+02, 3.078945471191406e+02, 2.883913830566406e+02, 2.918957977294922e+02, 3.044134191894531e+02, 2.861466021728515e+02, 3.022714721679687e+02, 2.97671752319336e+02, 2.903957275390625e+02, 3.075213610839844e+02, 2.921869257639146e+02, 2.892677954101562e+02, 3.090129370117187e+02, 2.826088043212891e+02, 2.917800024414062e+02, 3.027094293212891e+02, 2.819811901855469e+02, 2.936056917909345e+02, 3.121373962402344e+02, 2.880893627929688e+02, 2.915955688476562e+02, 2.953181494140625e+02, 2.825313500976562e+02, 2.915625701904297e+02, 3.033633081054688e+02, 2.838204507867662e+02, 3.002407965928494e+02, 2.948605971500791e+02, 2.860821228027344e+02] +TransmittedSolarRadiation_room=[0e+00, 1.130975440979004e+01, 2.615977678705871e+01, 4.389682769775391e+01, 5.918918334960937e+01, 7.433133697509766e+01, 8.556216430664062e+01, 1.003802847290039e+02, 1.156238479614258e+02, 1.345732727050781e+02, 1.428005096435547e+02, 1.5449755859375e+02, 1.705394134521484e+02, 1.774759875488281e+02, 1.932676239013672e+02, 2.075331359863281e+02, 2.213081414794922e+02, 2.364045715332031e+02, 2.496857629394531e+02, 2.609845812988281e+02, 2.750823364257812e+02, 2.88257412109375e+02, 2.998608732623467e+02, 3.089236145019531e+02, 3.219290734863282e+02, 3.322944946289062e+02, 3.404444274902344e+02, 3.503633123779297e+02, 3.56330322265625e+02, 3.649158630371094e+02, 3.725992431640625e+02, 3.801112060546875e+02, 3.884588012695312e+02, 3.934172644042969e+02, 4.005342712402344e+02, 4.054503479003906e+02, 4.08315175011268e+02, 4.135301513671875e+02, 4.187032775878906e+02, 4.223153442382812e+02, 4.269173889160156e+02, 4.303513104248047e+02, 4.334132690429688e+02, 4.371600341796875e+02, 4.396193200683594e+02, 4.423705139160156e+02, 4.452664184570312e+02, 4.481250433349609e+02, 4.508371887207031e+02, 4.544318542480469e+02, 4.576418151855469e+02, 4.600704040527344e+02, 4.634601745605469e+02, 4.661309197998047e+02, 4.697453002929688e+02, 4.742592468261719e+02, 4.778950756835937e+02, 4.828943176269531e+02, 4.881273193359375e+02, 4.913834228515625e+02, 4.974050903320312e+02, 5.027877270507813e+02, 5.070570739746094e+02, 5.151295166015625e+02, 5.222717236328125e+02, 5.284697875976562e+02, 5.384780883789062e+02, 5.474809790039062e+02, 5.567804565429688e+02, 5.671600952148438e+02, 5.774893432617188e+02, 5.860926513671875e+02, 5.974494018554688e+02, 6.097863049316406e+02, 6.21289794921875e+02, 6.347057189941406e+02, 6.481275854492187e+02, 6.602076416015625e+02, 6.730785913085938e+02, 6.872163708496093e+02, 7.052301635742188e+02, 7.225563818359375e+02, 7.355819308489738e+02, 7.49636474609375e+02, 7.630069482421875e+02, 7.775369873046875e+02, 7.925595092773438e+02, 8.023003259277343e+02, 8.157482299804688e+02, 8.33869384765625e+02, 8.470769775390625e+02, 8.581148681640625e+02, 8.684443359375e+02, 8.816136108398438e+02, 8.93196533203125e+02, 9.103633422851562e+02, 9.255107299804688e+02, 9.402762451171875e+02, 9.567542239982924e+02, 9.704020283139985e+02, 9.888690185546875e+02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case650.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case650.txt index fd38b56da9..a3d9d293ef 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case650.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case650.txt @@ -1,16 +1,16 @@ -last-generated=2021-05-25 +last-generated=2022-07-06 statistics-simulation= { "linear": "0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0", "nonlinear": "13", - "number of continuous time states": "22", + "number of continuous time states": "24", "numerical Jacobians": "0" } time=[0e+00, 3.15396e+07] checkResultsAccordingToASHRAECoolingOrTempMin.lowerLimit=[-6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03, -6.545e+03] -AnnualCoolingLoad=[0e+00, -2.095597541809082e+01, -8.900757598876953e+01, -1.796287384033203e+02, -2.444520758056641e+02, -3.118481140136719e+02, -3.437890014648438e+02, -4.254019165039062e+02, -4.81034912109375e+02, -5.517774658203125e+02, -5.740341186523438e+02, -6.261965942382812e+02, -7.02596435546875e+02, -7.124371948242188e+02, -7.68365234375e+02, -8.119043579101562e+02, -8.739537353515625e+02, -9.27064453125e+02, -9.735577758789062e+02, -1.01272802734375e+03, -1.080933227539062e+03, -1.124565866699219e+03, -1.183364379882812e+03, -1.205746215820312e+03, -1.282021186523438e+03, -1.353546264648438e+03, -1.370431884765625e+03, -1.4137165234375e+03, -1.439130493164062e+03, -1.465326171875e+03, -1.503394409179688e+03, -1.539652954101562e+03, -1.6028232421875e+03, -1.617630126953125e+03, -1.646593994140625e+03, -1.655932250976562e+03, -1.657044555664062e+03, -1.679960327148438e+03, -1.720586748046875e+03, -1.743912109375e+03, -1.772186889648438e+03, -1.777717263183594e+03, -1.796412109375e+03, -1.8221162109375e+03, -1.829717163085938e+03, -1.845039306640625e+03, -1.859189331054688e+03, -1.8732880859375e+03, -1.896048217773438e+03, -1.941316284179688e+03, -1.989360473632812e+03, -2.010357666015625e+03, -2.042597778320312e+03, -2.070269775390625e+03, -2.11380224609375e+03, -2.1689697265625e+03, -2.220715576171875e+03, -2.291884765625e+03, -2.361228916015625e+03, -2.3966337890625e+03, -2.4648193359375e+03, -2.510752875976562e+03, -2.553935791015625e+03, -2.6499609375e+03, -2.702898056640625e+03, -2.7612783203125e+03, -2.8711962890625e+03, -2.958870673828125e+03, -3.053091064453125e+03, -3.156452880859375e+03, -3.2247087890625e+03, -3.292220947265625e+03, -3.37779638671875e+03, -3.458970512695313e+03, -3.54286865234375e+03, -3.6392255859375e+03, -3.726194580078125e+03, -3.8187822265625e+03, -3.886593125e+03, -3.985958251953125e+03, -4.1205322265625e+03, -4.23566140625e+03, -4.31362451171875e+03, -4.3890751953125e+03, -4.434321328125e+03, -4.5161962890625e+03, -4.58863330078125e+03, -4.62237060546875e+03, -4.67951171875e+03, -4.76736669921875e+03, -4.803805078125e+03, -4.8611103515625e+03, -4.908130859375e+03, -4.95131103515625e+03, -4.97667724609375e+03, -5.03073388671875e+03, -5.0744951171875e+03, -5.1446591796875e+03, -5.22726708984375e+03, -5.2938017578125e+03, -5.3721064453125e+03] +AnnualCoolingLoad=[0e+00, -2.093112052917481e+01, -8.893947601318359e+01, -1.795138092041016e+02, -2.443005023193359e+02, -3.116576232910156e+02, -3.435679626464844e+02, -4.251445007324219e+02, -4.807392272949219e+02, -5.514263305664062e+02, -5.73669921875e+02, -6.257853393554688e+02, -7.021400146484375e+02, -7.11966064453125e+02, -7.678538208007812e+02, -8.11356689453125e+02, -8.733703002929688e+02, -9.264308471679688e+02, -9.72886337890625e+02, -1.012018249511719e+03, -1.080183349609375e+03, -1.123773403320313e+03, -1.182539672851562e+03, -1.204889038085938e+03, -1.281124145507812e+03, -1.3526220703125e+03, -1.369483520507812e+03, -1.412733959960937e+03, -1.438129150390625e+03, -1.464291870117188e+03, -1.50233544921875e+03, -1.538559448242188e+03, -1.601700805664062e+03, -1.616491088867188e+03, -1.645418334960938e+03, -1.654733764648438e+03, -1.655839721679688e+03, -1.67873291015625e+03, -1.719336215820312e+03, -1.742641967773438e+03, -1.770888427734375e+03, -1.776399143066406e+03, -1.795074584960938e+03, -1.820756103515625e+03, -1.828346435546875e+03, -1.843649169921875e+03, -1.857790771484375e+03, -1.871873168945312e+03, -1.89461279296875e+03, -1.93986279296875e+03, -1.987892211914062e+03, -2.0088798828125e+03, -2.041101806640625e+03, -2.06876416015625e+03, -2.112279052734375e+03, -2.167428466796875e+03, -2.219163330078125e+03, -2.290319091796875e+03, -2.359651337890625e+03, -2.395046142578125e+03, -2.463215087890625e+03, -2.5091336328125e+03, -2.552303466796875e+03, -2.648311767578125e+03, -2.7012269140625e+03, -2.75958935546875e+03, -2.86948779296875e+03, -2.957144907226562e+03, -3.051342041015625e+03, -3.154677734375e+03, -3.222906201171875e+03, -3.29039697265625e+03, -3.37594677734375e+03, -3.457088833007812e+03, -3.54096435546875e+03, -3.637285888671875e+03, -3.72422314453125e+03, -3.81678759765625e+03, -3.884560654296875e+03, -3.983894287109375e+03, -4.11842724609375e+03, -4.23352029296875e+03, -4.31144921875e+03, -4.3868681640625e+03, -4.43207646484375e+03, -4.5139130859375e+03, -4.5863076171875e+03, -4.62002099609375e+03, -4.67713037109375e+03, -4.76493603515625e+03, -4.8013291015625e+03, -4.8586103515625e+03, -4.90561572265625e+03, -4.9487568359375e+03, -4.97408056640625e+03, -5.02808251953125e+03, -5.07180078125e+03, -5.14191845703125e+03, -5.2244794921875e+03, -5.290984375e+03, -5.36923388671875e+03] checkResultsAccordingToASHRAECoolingOrTempMin.upperLimit=[-4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03, -4.816e+03] checkResultsAccordingToASHRAECoolingOrTempMin.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00] -Room.thermRoom.T=[2.941499938964844e+02, 3.001503790283203e+02, 2.705859509277344e+02, 2.750903436279297e+02, 3.001499548339844e+02, 2.724675079345703e+02, 2.726050219726562e+02, 2.778365551757813e+02, 2.649041979980469e+02, 2.782309503173828e+02, 2.976920514717388e+02, 2.735847131347657e+02, 2.861608129882812e+02, 2.712280895996093e+02, 2.712642248535156e+02, 2.976049041748047e+02, 2.888692907714844e+02, 2.732518713378906e+02, 3.001495385742188e+02, 2.780098022460937e+02, 2.755468933105469e+02, 3.001498718261719e+02, 2.713771875e+02, 2.817236437988281e+02, 3.001499157714844e+02, 2.804198760986328e+02, 2.793822412109375e+02, 3.001504034423828e+02, 2.748860534667969e+02, 2.856689465332031e+02, 2.986533386230469e+02, 2.822830560302734e+02, 2.94543916015625e+02, 2.88982055053711e+02, 2.847800366210938e+02, 2.968573944091797e+02, 2.869190771484375e+02, 2.86788013305664e+02, 3.001499133300781e+02, 2.844027429199219e+02, 2.877487132461876e+02, 3.001498718261719e+02, 2.872769116210937e+02, 2.925068951416015e+02, 2.868180871582031e+02, 2.94972021484375e+02, 2.869576281738281e+02, 3.000676924080684e+02, 2.88864296875e+02, 2.957686218261719e+02, 3.001500854492188e+02, 2.86984497680664e+02, 3.029637426757812e+02, 3.001179400664832e+02, 2.89514443359375e+02, 3.035673767089844e+02, 2.996861144654051e+02, 2.953393566894531e+02, 3.001498498535156e+02, 2.954006823730469e+02, 2.903683696502227e+02, 3.001495843505859e+02, 2.906885009765625e+02, 2.944493377685547e+02, 3.001498034667969e+02, 2.903375823974609e+02, 2.984006799316406e+02, 3.00150009765625e+02, 2.871537756347656e+02, 2.974225244140625e+02, 3.001502136230469e+02, 2.826286236572266e+02, 2.923988452148437e+02, 3.001506811523437e+02, 2.809776489257812e+02, 2.813876190185547e+02, 2.993784225636174e+02, 2.773723913574219e+02, 3.001496728515625e+02, 2.906026751708985e+02, 2.813785705566406e+02, 3.001495025634766e+02, 2.842835510253906e+02, 2.747330938720703e+02, 3.001498913574219e+02, 2.747068023681641e+02, 2.781701672363281e+02, 2.92074878540039e+02, 2.713421484375e+02, 2.823007464599609e+02, 3.001502197265625e+02, 2.840181420898438e+02, 2.735292626953125e+02, 2.830408874511719e+02, 2.725911291503906e+02, 2.776051422119141e+02, 2.889345336914063e+02, 2.721250024414063e+02, 2.995909843444824e+02, 2.753558001708984e+02, 2.732153625488281e+02] -Room.starRoom.T=[2.895909423828125e+02, 3.050795520019531e+02, 2.708676928710938e+02, 2.771487139892578e+02, 3.089822888183594e+02, 2.728525390625e+02, 2.758519897460938e+02, 2.782722729492187e+02, 2.654465002441406e+02, 2.822858520507813e+02, 2.994819213385624e+02, 2.746483233642578e+02, 2.905002233886719e+02, 2.713596228027343e+02, 2.72242353515625e+02, 3.00635693359375e+02, 2.897511584472657e+02, 2.743462243652344e+02, 3.031614038085938e+02, 2.783505627441406e+02, 2.764017272949219e+02, 3.013914208984375e+02, 2.714887255859375e+02, 2.825057214355469e+02, 3.084749645996094e+02, 2.800934295654297e+02, 2.814049548339844e+02, 3.043801055908203e+02, 2.755837939453125e+02, 2.886162396240234e+02, 2.995417663574219e+02, 2.836605487060547e+02, 2.967176293945312e+02, 2.896575964355468e+02, 2.856005212402344e+02, 2.989273101806641e+02, 2.872884582519531e+02, 2.88095521850586e+02, 3.005829284667969e+02, 2.845088116455078e+02, 2.89197848313979e+02, 3.019401599121094e+02, 2.873678869628906e+02, 2.942526037597656e+02, 2.870310180664063e+02, 2.956249938964844e+02, 2.882202819824219e+02, 3.004221774818157e+02, 2.897214672851562e+02, 2.971139538574218e+02, 3.04879638671875e+02, 2.874350579833985e+02, 3.034448571777344e+02, 3.004851418481085e+02, 2.906791870117187e+02, 3.034675384521485e+02, 2.999601440429688e+02, 2.963595080566406e+02, 3.021273693847656e+02, 2.955643975830078e+02, 2.911136926336145e+02, 3.034207318115234e+02, 2.9076296875e+02, 2.95378974609375e+02, 3.066243786621094e+02, 2.898597442626953e+02, 2.994860681152344e+02, 3.097954187011719e+02, 2.879829125976563e+02, 2.988156726074219e+02, 3.095078918457031e+02, 2.833106726074218e+02, 2.950157299804687e+02, 3.059402856445312e+02, 2.818944506835937e+02, 2.8579443359375e+02, 3.003801369469617e+02, 2.777289685058594e+02, 3.021330297851562e+02, 2.913513439941406e+02, 2.824268127441406e+02, 3.074243884277344e+02, 2.846816845703125e+02, 2.758644323730469e+02, 3.084582604980469e+02, 2.753068695068359e+02, 2.801947241210938e+02, 2.93198676147461e+02, 2.720969555664062e+02, 2.849055676269531e+02, 3.117259765625e+02, 2.842903942871094e+02, 2.775432275390625e+02, 2.835946398925781e+02, 2.728356872558594e+02, 2.829795867919922e+02, 2.902251916503906e+02, 2.731972393798828e+02, 3.001958452860515e+02, 2.762637982177735e+02, 2.742692260742188e+02] -TransmittedSolarRadiation_room=[0e+00, 1.130982601165771e+01, 2.61600569152832e+01, 4.389704132080078e+01, 5.91894270324707e+01, 7.433159637451172e+01, 8.5562255859375e+01, 1.003803968811035e+02, 1.156239395141602e+02, 1.345735015869141e+02, 1.428006742162162e+02, 1.544976959228516e+02, 1.705396118164062e+02, 1.774760485839844e+02, 1.932675476074219e+02, 2.075331359863281e+02, 2.213082025146484e+02, 2.364048614501953e+02, 2.496861126708984e+02, 2.609848864746094e+02, 2.750825805664062e+02, 2.882577783203125e+02, 2.998609130859375e+02, 3.089237365722656e+02, 3.219292956542969e+02, 3.322947692871094e+02, 3.404447021484375e+02, 3.50363648071289e+02, 3.563306884765625e+02, 3.649161987304688e+02, 3.725995971679687e+02, 3.801116333007812e+02, 3.884592590332031e+02, 3.934176306152344e+02, 4.0053466796875e+02, 4.054505920410156e+02, 4.083155163574219e+02, 4.135303955078125e+02, 4.187037658691406e+02, 4.223158325195312e+02, 4.269179077148438e+02, 4.303518908691406e+02, 4.334140014648438e+02, 4.371608276367188e+02, 4.396201953125e+02, 4.423714904785156e+02, 4.452673950195312e+02, 4.48126617305361e+02, 4.508381213378906e+02, 4.544328002929688e+02, 4.576427612304688e+02, 4.600713806152344e+02, 4.634611206054688e+02, 4.661307799992303e+02, 4.697463684082031e+02, 4.742603759765625e+02, 4.778945732801974e+02, 4.828953552246094e+02, 4.881282885742187e+02, 4.913844604492188e+02, 4.974060974121094e+02, 5.027888995361328e+02, 5.070582336425781e+02, 5.151307373046875e+02, 5.222728881835938e+02, 5.284710083007812e+02, 5.38479248046875e+02, 5.47482138671875e+02, 5.567816772460938e+02, 5.67161376953125e+02, 5.774906860351563e+02, 5.860940551757812e+02, 5.9745068359375e+02, 6.097875256347656e+02, 6.212910766601562e+02, 6.3470703125e+02, 6.481277655741501e+02, 6.602089233398438e+02, 6.730799340820313e+02, 6.872177746582031e+02, 7.052318725585938e+02, 7.225580297851562e+02, 7.355838232421875e+02, 7.496382446289062e+02, 7.630090234375e+02, 7.775391235351562e+02, 7.925618286132812e+02, 8.023025842285156e+02, 8.157505493164062e+02, 8.338715209960938e+02, 8.470791748046875e+02, 8.581170043945312e+02, 8.684465942382812e+02, 8.816160241699218e+02, 8.931991577148438e+02, 9.103662719726562e+02, 9.25513720703125e+02, 9.40279296875e+02, 9.567573776245117e+02, 9.704076196289062e+02, 9.88872314453125e+02] +Room.thermRoom.T=[2.941499938964844e+02, 3.001504028320313e+02, 2.705857434082031e+02, 2.750926947021484e+02, 3.001499548339844e+02, 2.724675720214844e+02, 2.7260880859375e+02, 2.778289404296875e+02, 2.649046643066406e+02, 2.78235029296875e+02, 2.976464434412425e+02, 2.735861474609375e+02, 2.861652380371094e+02, 2.712249499511719e+02, 2.712647412109375e+02, 2.976064178466797e+02, 2.888452160644531e+02, 2.73252671508789e+02, 3.001495385742188e+02, 2.780013739013672e+02, 2.755474670410156e+02, 3.001498718261719e+02, 2.713759899902344e+02, 2.817241693115234e+02, 3.001499157714844e+02, 2.804184112548828e+02, 2.793842102050781e+02, 3.001504034423828e+02, 2.748865307617187e+02, 2.856724938964844e+02, 2.986309875488281e+02, 2.822847900390625e+02, 2.945462353515625e+02, 2.889618927001953e+02, 2.84780830078125e+02, 2.968594451904297e+02, 2.869078381347656e+02, 2.867896923828125e+02, 3.001499133300781e+02, 2.843969812011719e+02, 2.877501166689713e+02, 3.001498718261719e+02, 2.872740368652344e+02, 2.9250927734375e+02, 2.868113757324219e+02, 2.949727813720703e+02, 2.869586437988281e+02, 3.000553756672738e+02, 2.888645129394531e+02, 2.95770140991211e+02, 3.001500854492188e+02, 2.869845184326172e+02, 3.0296404296875e+02, 3.001041332898733e+02, 2.895156176757812e+02, 3.035670379638672e+02, 2.996754081635607e+02, 2.953405541992187e+02, 3.001498498535156e+02, 2.953949792480469e+02, 2.903690056482084e+02, 3.001495666503906e+02, 2.906851550292969e+02, 2.944502404785156e+02, 3.001498059082031e+02, 2.90335791015625e+02, 2.984020593261719e+02, 3.00150009765625e+02, 2.871544799804688e+02, 2.974243713378906e+02, 3.001502136230469e+02, 2.826290991210938e+02, 2.924015148925781e+02, 3.001506811523437e+02, 2.809786657714844e+02, 2.813931274414062e+02, 2.993524637959545e+02, 2.773722766113281e+02, 3.001496728515625e+02, 2.905833520507812e+02, 2.813792175292969e+02, 3.001495025634766e+02, 2.842762731933594e+02, 2.747338690185547e+02, 3.001498901367187e+02, 2.747070007324219e+02, 2.781720092773438e+02, 2.920512329101563e+02, 2.71342919921875e+02, 2.823040563964844e+02, 3.001502197265625e+02, 2.840180548095703e+02, 2.735314916992187e+02, 2.830265228271484e+02, 2.725912890625e+02, 2.776115875244141e+02, 2.889022644042969e+02, 2.721256848144531e+02, 2.995932324727376e+02, 2.753336242675781e+02, 2.732156677246094e+02] +Room.starRoom.T=[2.895909423828125e+02, 3.050736779785156e+02, 2.708676452636719e+02, 2.771511157226562e+02, 3.089797082519531e+02, 2.728526489257812e+02, 2.7585564453125e+02, 2.782687994384765e+02, 2.654468823242187e+02, 2.822901055908203e+02, 2.994472056862837e+02, 2.746495184326172e+02, 2.905042211914063e+02, 2.713574029541016e+02, 2.722426586914062e+02, 3.006368469238281e+02, 2.897366516113281e+02, 2.743465972900391e+02, 3.031607238769531e+02, 2.783462689208984e+02, 2.764023132324219e+02, 3.013902819824219e+02, 2.714879638671875e+02, 2.825067431640625e+02, 3.08473876953125e+02, 2.800927124023438e+02, 2.8140716796875e+02, 3.043750091552735e+02, 2.755842504882813e+02, 2.886192419433594e+02, 2.995254028320313e+02, 2.836620440673828e+02, 2.967194006347656e+02, 2.896444305419922e+02, 2.856013757324219e+02, 2.989286804199219e+02, 2.872817077636719e+02, 2.880973974609375e+02, 3.005828588867187e+02, 2.845055981445312e+02, 2.891990189389543e+02, 3.019392803955078e+02, 2.873666662597656e+02, 2.942545349121094e+02, 2.870258374023438e+02, 2.956253051757812e+02, 2.882212365722656e+02, 3.004127474473814e+02, 2.897223510742188e+02, 2.971151306152344e+02, 3.048792114257812e+02, 2.874353399658203e+02, 3.034445300292969e+02, 3.004757453924655e+02, 2.90680361328125e+02, 3.034662414550781e+02, 2.999539563326025e+02, 2.963601867675781e+02, 3.021274072265625e+02, 2.955612738037109e+02, 2.91114477972054e+02, 3.034205743408203e+02, 2.907614672851562e+02, 2.953796331787109e+02, 3.066240856933593e+02, 2.89858755493164e+02, 2.9948720703125e+02, 3.097952807617187e+02, 2.879834350585937e+02, 2.988168615722656e+02, 3.095064208984375e+02, 2.833110461425781e+02, 2.950178967285156e+02, 3.059336645507813e+02, 2.818952368164062e+02, 2.858014221191406e+02, 3.00364772045107e+02, 2.777291284179688e+02, 3.021325659179687e+02, 2.913408129882812e+02, 2.824278564453125e+02, 3.074242224121094e+02, 2.846784362792969e+02, 2.758657568359375e+02, 3.084566320800781e+02, 2.753073425292969e+02, 2.801967895507813e+02, 2.931814636230469e+02, 2.720978076171875e+02, 2.849084735107422e+02, 3.117247497558594e+02, 2.842897302246094e+02, 2.775441625976562e+02, 2.835848199462891e+02, 2.728359020996094e+02, 2.829873992919922e+02, 2.902048718261719e+02, 2.731976672363281e+02, 3.001965700785319e+02, 2.762526623535156e+02, 2.742690734863281e+02] +TransmittedSolarRadiation_room=[0e+00, 1.130986501693726e+01, 2.615997596740723e+01, 4.389709854125977e+01, 5.918952621459961e+01, 7.433171081542969e+01, 8.556250762939453e+01, 1.003805577087402e+02, 1.156239013671875e+02, 1.345734100341797e+02, 1.428006155962002e+02, 1.5449755859375e+02, 1.705394744873047e+02, 1.774759112548828e+02, 1.932674102783203e+02, 2.07532926940918e+02, 2.213079046630859e+02, 2.364044952392578e+02, 2.496858233642578e+02, 2.609844287109375e+02, 2.750821228027344e+02, 2.882572290039063e+02, 2.998605163574219e+02, 3.089232788085938e+02, 3.219287683105469e+02, 3.32294189453125e+02, 3.404441223144531e+02, 3.503630072021484e+02, 3.563299865722656e+02, 3.649154968261719e+02, 3.725988952636719e+02, 3.801110229492188e+02, 3.884586486816406e+02, 3.934170892333984e+02, 4.005342712402344e+02, 4.054501647949219e+02, 4.083150305175781e+02, 4.135298767089844e+02, 4.187032165527344e+02, 4.22315283203125e+02, 4.269175109863281e+02, 4.30351494140625e+02, 4.334135815429688e+02, 4.371604309082031e+02, 4.396197680664063e+02, 4.423710021972656e+02, 4.452669067382812e+02, 4.481260826748336e+02, 4.508375854492188e+02, 4.544322204589844e+02, 4.576421508789062e+02, 4.600707702636719e+02, 4.634605712890625e+02, 4.661302239102721e+02, 4.697457580566406e+02, 4.74259765625e+02, 4.778939581708946e+02, 4.828947448730469e+02, 4.881277697753906e+02, 4.913839111328125e+02, 4.974055480957031e+02, 5.027882763671875e+02, 5.070576232910156e+02, 5.15130126953125e+02, 5.222722778320312e+02, 5.284703369140625e+02, 5.384786376953125e+02, 5.474814672851562e+02, 5.567808837890625e+02, 5.671605224609375e+02, 5.774898315429688e+02, 5.860932006835938e+02, 5.974498901367188e+02, 6.097867321777344e+02, 6.212902221679688e+02, 6.347061767578125e+02, 6.481271044191279e+02, 6.602080688476562e+02, 6.730790795898438e+02, 6.872168823242188e+02, 7.0523095703125e+02, 7.225570532226562e+02, 7.35582724609375e+02, 7.496370239257812e+02, 7.630077124023437e+02, 7.775377807617188e+02, 7.925604248046875e+02, 8.023011804199218e+02, 8.157490844726562e+02, 8.338700561523438e+02, 8.470777709960937e+02, 8.581156005859375e+02, 8.684451904296875e+02, 8.816145874023438e+02, 8.931976928710938e+02, 9.103646240234375e+02, 9.255120727539063e+02, 9.40277587890625e+02, 9.567555465698242e+02, 9.70405849609375e+02, 9.888705444335938e+02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case650FF.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case650FF.txt index b8cdadd098..c6a33bc250 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case650FF.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case650FF.txt @@ -1,19 +1,19 @@ -last-generated=2021-05-25 +last-generated=2022-03-16 statistics-simulation= { "linear": "0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0", "nonlinear": "13", - "number of continuous time states": "21", + "number of continuous time states": "23", "numerical Jacobians": "0" } time=[0e+00, 3.15396e+07] checkResultsAccordingToASHRAEHeatingOrTempMax.lowerLimit=[6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01, 6.320000076293945e+01] -FreeFloatRoomTemperature=[2.1e+01, 3.373349502563477e+01, -2.537125053405762e+00, 2.551478571891785e+00, 4.441302932739258e+01, -6.509861350059509e-01, 6.763987827301026e-01, 4.703668432235718e+00, -8.205117645263671e+00, 7.656313762664794e+00, 2.452883720397949e+01, 4.826444600522518e-01, 1.675100250244141e+01, -1.910953044891357e+00, -1.760978121757507e+00, 4.333256931304932e+01, 1.573885681152344e+01, 3.073509699106217e-01, 4.051550674438477e+01, 4.880176973342896e+00, 2.663979005813599e+00, 2.948581977844238e+01, -1.746515502929687e+00, 8.772920513153077e+00, 4.821494247436524e+01, 7.284932613372803e+00, 6.885708045959473e+00, 3.265536094665527e+01, 1.74690411567688e+00, 1.352366743087769e+01, 2.550732612609863e+01, 9.169775848388673e+00, 2.34550040435791e+01, 1.584076435089111e+01, 1.169317451477051e+01, 2.636322784423828e+01, 1.376922428131104e+01, 1.375697521209717e+01, 3.287846954345703e+01, 1.12551496887207e+01, 1.471544177854709e+01, 3.245574348449707e+01, 1.41382763671875e+01, 1.956197105407715e+01, 1.36686784362793e+01, 2.183024253845215e+01, 1.380766887664795e+01, 2.690476787567139e+01, 1.573271842956543e+01, 2.362948944091797e+01, 3.775081253051758e+01, 1.383458770751953e+01, 3.205442321777344e+01, 2.697583988189697e+01, 1.643321731567383e+01, 3.554161567687989e+01, 2.657124641418457e+01, 2.235096298217773e+01, 4.477101028442383e+01, 2.226483554840088e+01, 1.744422203261725e+01, 4.871446266174316e+01, 1.756505531311035e+01, 2.183913562774658e+01, 4.795305084228516e+01, 1.721026840209961e+01, 2.639452629089356e+01, 5.552627151489258e+01, 1.404678340911865e+01, 2.603947673797607e+01, 4.667636108398438e+01, 9.545815906524659e+00, 2.266713226318359e+01, 3.419118515014648e+01, 7.946404781341553e+00, 8.461087703704834e+00, 2.627002189636231e+01, 4.222517700195312e+00, 3.793017211914062e+01, 1.749537042617798e+01, 8.673445510864259e+00, 5.813301475524902e+01, 1.116145011901856e+01, 2.042820029258728e+00, 4.598053268432617e+01, 1.582326471805573e+00, 5.788585319519043e+00, 1.892481639862061e+01, -1.769361481666565e+00, 1.072353036880493e+01, 5.18671989440918e+01, 1.092602676391602e+01, 3.78770432472229e-01, 9.906539115905762e+00, -4.885781860351562e-01, 5.096060991287231e+00, 1.580287940979004e+01, -8.521620607376099e-01, 4.224952850341797e+01, 2.233104374408722e+00, 3.466656506061554e-01] +FreeFloatRoomTemperature=[2.1e+01, 3.370357032775879e+01, -2.537277565002441e+00, 2.554589076042175e+00, 4.437756500244141e+01, -6.508354902267456e-01, 6.806286573410034e-01, 4.695653576850891e+00, -8.204608345031739e+00, 7.661602020263672e+00, 2.448343162536621e+01, 4.840225149691105e-01, 1.675724067687988e+01, -1.913873360157013e+00, -1.759999566078186e+00, 4.333545894622803e+01, 1.571513092041016e+01, 3.085341608524322e-01, 4.050194686889648e+01, 4.871805448532104e+00, 2.664735174179077e+00, 2.947555797576904e+01, -1.747619309425354e+00, 8.773160133361817e+00, 4.818393371582031e+01, 7.28357982635498e+00, 6.887749671936035e+00, 3.262797290802002e+01, 1.747467103004456e+00, 1.35271243095398e+01, 2.548525543212891e+01, 9.171216831207275e+00, 2.345773345947266e+01, 1.582051929473877e+01, 1.169394207000732e+01, 2.636260185241699e+01, 1.375802074432373e+01, 1.375803665161133e+01, 3.287697570800781e+01, 1.124935668945312e+01, 1.471692028359125e+01, 3.244471572875977e+01, 1.413533470153809e+01, 1.956453674316406e+01, 1.366153823852539e+01, 2.183105792999267e+01, 1.380860370635986e+01, 2.689261058807373e+01, 1.573279582977295e+01, 2.363152309417725e+01, 3.773328018188477e+01, 1.383452861785889e+01, 3.205554580688477e+01, 2.696240734100342e+01, 1.643447624206543e+01, 3.554359436035156e+01, 2.655994758605957e+01, 2.235237785339356e+01, 4.476851867675781e+01, 2.225916240692139e+01, 1.744480176251712e+01, 4.871033515930176e+01, 1.756154396057129e+01, 2.184046146392822e+01, 4.793228256225586e+01, 1.720859394073486e+01, 2.639639251708984e+01, 5.549721557617188e+01, 1.404751781463623e+01, 2.604228992462158e+01, 4.664054031372071e+01, 9.546302661895751e+00, 2.267105110168457e+01, 3.415603317260742e+01, 7.947471809387207e+00, 8.46508526802063e+00, 2.624050392150879e+01, 4.222347364425659e+00, 3.79210888671875e+01, 1.747558938980103e+01, 8.674269294738769e+00, 5.811190315246582e+01, 1.115431789398193e+01, 2.04359884262085e+00, 4.594853286743164e+01, 1.582556939125061e+00, 5.790927448272705e+00, 1.890138595581055e+01, -1.768691182136536e+00, 1.072731271743774e+01, 5.18263687133789e+01, 1.092624267578125e+01, 3.814575457572937e-01, 9.892063426971436e+00, -4.886698460578919e-01, 5.101036024093628e+00, 1.577013710021973e+01, -8.511317336559295e-01, 4.22518196105957e+01, 2.210936839580536e+00, 3.469441831111908e-01] checkResultsAccordingToASHRAEHeatingOrTempMax.upperLimit=[6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01, 6.819999694824219e+01] checkResultsAccordingToASHRAECoolingOrTempMin.lowerLimit=[-2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01, -2.3e+01] checkResultsAccordingToASHRAECoolingOrTempMin.upperLimit=[-2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01, -2.160000038146973e+01] checkResultsAccordingToASHRAEHeatingOrTempMax.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] checkResultsAccordingToASHRAECoolingOrTempMin.satisfied=[0e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] -Room.thermRoom.T=[2.941499938964844e+02, 3.068834948730469e+02, 2.706128686523438e+02, 2.75701474609375e+02, 3.17563037109375e+02, 2.724990173339844e+02, 2.738264025878906e+02, 2.778536596679688e+02, 2.649448876953125e+02, 2.808063018798828e+02, 2.976788330078125e+02, 2.736326385498047e+02, 2.899010034179688e+02, 2.7123904296875e+02, 2.71389013671875e+02, 3.164825653076172e+02, 2.888888562011718e+02, 2.734573468017578e+02, 3.136655187988281e+02, 2.780301794433594e+02, 2.758139892578125e+02, 3.026358160400391e+02, 2.714034875488281e+02, 2.819229156494141e+02, 3.213649389648438e+02, 2.804349365234375e+02, 2.800357067871093e+02, 3.058053723144531e+02, 2.748969177246094e+02, 2.866736706542969e+02, 2.986573364257812e+02, 2.823197882080078e+02, 2.966050109863281e+02, 2.889907757568359e+02, 2.848431774902344e+02, 2.995132354736328e+02, 2.869192297363281e+02, 2.869069738769531e+02, 3.060284606933594e+02, 2.844051440429687e+02, 2.878654465319685e+02, 3.056057489013672e+02, 2.872882690429688e+02, 2.927119708251953e+02, 2.868186767578125e+02, 2.949802368164063e+02, 2.86957666015625e+02, 3.000547705078125e+02, 2.888827136230469e+02, 2.967794952392578e+02, 3.109008178710938e+02, 2.869845819091797e+02, 3.052044323730469e+02, 3.001258331298828e+02, 2.895832153320313e+02, 3.086916320800781e+02, 2.997212548828125e+02, 2.955009759521485e+02, 3.179210107421875e+02, 2.954148333740234e+02, 2.905942142585453e+02, 3.218644549560547e+02, 2.907150549316406e+02, 2.949891314697265e+02, 3.211030444335938e+02, 2.903602600097656e+02, 2.995445324707031e+02, 3.286762731933593e+02, 2.871967907714844e+02, 2.991894696044922e+02, 3.198263610839844e+02, 2.826958111572266e+02, 2.958171398925781e+02, 3.073411761474609e+02, 2.810964099121094e+02, 2.81611083984375e+02, 2.994200354003906e+02, 2.773725152587891e+02, 3.110801684570313e+02, 2.906453692626953e+02, 2.818234436035156e+02, 3.312830169677734e+02, 2.843114392089844e+02, 2.751928302001953e+02, 3.191305358886719e+02, 2.747323181152344e+02, 2.789385754394531e+02, 2.920748266601562e+02, 2.713806396484375e+02, 2.838735162353516e+02, 3.250171997070312e+02, 2.840760388183594e+02, 2.735287585449219e+02, 2.830565472412109e+02, 2.726614123535156e+02, 2.782460540771484e+02, 2.889528857421875e+02, 2.722978247070312e+02, 3.153995397949218e+02, 2.753830950927734e+02, 2.734966735839844e+02] -Room.starRoom.T=[2.895909423828125e+02, 3.089991735839844e+02, 2.709045141601562e+02, 2.783072570800781e+02, 3.199314538574219e+02, 2.729120025634766e+02, 2.781717333984375e+02, 2.782897039794922e+02, 2.655233813476563e+02, 2.871815875244141e+02, 2.994693908691406e+02, 2.747390460205078e+02, 2.975968237304688e+02, 2.713706982421875e+02, 2.7247830078125e+02, 3.210483032226563e+02, 2.897711364746094e+02, 2.747351037597657e+02, 3.151224377441406e+02, 2.783711590576172e+02, 2.769070556640625e+02, 3.035980853271485e+02, 2.715173754882812e+02, 2.828827575683594e+02, 3.228816723632813e+02, 2.801218872070312e+02, 2.826448254394531e+02, 3.066624780273438e+02, 2.756043103027343e+02, 2.905234326171875e+02, 2.995458374023438e+02, 2.837301556396484e+02, 3.006204797363282e+02, 2.896664776611328e+02, 2.857199975585938e+02, 3.026465026855469e+02, 2.872885827636719e+02, 2.883209362792969e+02, 3.062837072753906e+02, 2.845112432861328e+02, 2.894193605598999e+02, 3.058837799072265e+02, 2.87379443359375e+02, 2.946415167236328e+02, 2.870316284179688e+02, 2.956405670166016e+02, 2.882203771972656e+02, 3.004080700683594e+02, 2.897563903808594e+02, 2.9903021484375e+02, 3.112841186523438e+02, 2.874352130126953e+02, 3.076875219726563e+02, 3.004946887207032e+02, 2.908095642089844e+02, 3.131306793212891e+02, 2.999973571777344e+02, 2.966659918212891e+02, 3.182320104980469e+02, 2.955786712646484e+02, 2.915417106180855e+02, 3.224968841552734e+02, 2.907899914550781e+02, 2.964018408203125e+02, 3.220128515625e+02, 2.899026824951172e+02, 3.016543664550781e+02, 3.298391876220703e+02, 2.880643493652344e+02, 3.021711773681641e+02, 3.2103330078125e+02, 2.834378369140625e+02, 3.015013757324219e+02, 3.086730291748047e+02, 2.821192395019531e+02, 2.862170715332031e+02, 3.004240808105469e+02, 2.777291839599609e+02, 3.115560546875e+02, 2.913947821044922e+02, 2.832701171875e+02, 3.327241888427735e+02, 2.847101477050781e+02, 2.767351385498047e+02, 3.211309912109375e+02, 2.753552642822266e+02, 2.816519262695313e+02, 2.931986242675781e+02, 2.721697705078125e+02, 2.878909722900391e+02, 3.268420837402344e+02, 2.843998059082031e+02, 2.775422875976562e+02, 2.836106353759766e+02, 2.729683032226562e+02, 2.841940704345703e+02, 2.902440283203125e+02, 2.735243151855469e+02, 3.163203234863281e+02, 2.762915173339844e+02, 2.748018188476562e+02] -TransmittedSolarRadiation_room=[0e+00, 1.130980237960815e+01, 2.615991470336914e+01, 4.389694213867188e+01, 5.918934310913086e+01, 7.4331298828125e+01, 8.556187438964844e+01, 1.003799473571777e+02, 1.15623291015625e+02, 1.34572509765625e+02, 1.427995819091797e+02, 1.544965972900391e+02, 1.705382843017578e+02, 1.774746752929688e+02, 1.932660675048828e+02, 2.075313705444336e+02, 2.213065777587891e+02, 2.364031829833984e+02, 2.496844647216797e+02, 2.609831219482422e+02, 2.750809326171875e+02, 2.882563629150391e+02, 2.99859814453125e+02, 3.089226684570312e+02, 3.219284936523438e+02, 3.322939758300781e+02, 3.404436950683594e+02, 3.503629138183594e+02, 3.56330078125e+02, 3.649159851074219e+02, 3.725994750976562e+02, 3.801114196777344e+02, 3.884591674804688e+02, 3.934175695800781e+02, 4.005346374511719e+02, 4.054505920410156e+02, 4.083156079101562e+02, 4.135303344726562e+02, 4.187037048339844e+02, 4.223157409667969e+02, 4.269176025390625e+02, 4.303516162109375e+02, 4.334136657714844e+02, 4.371604614257812e+02, 4.39619951171875e+02, 4.423711853027344e+02, 4.4526708984375e+02, 4.48125673828125e+02, 4.50837890625e+02, 4.544327392578125e+02, 4.576427917480469e+02, 4.600714416503906e+02, 4.634612426757812e+02, 4.661322216796875e+02, 4.697466735839844e+02, 4.742608032226562e+02, 4.778967236328125e+02, 4.828960266113281e+02, 4.881291125488281e+02, 4.913853454589844e+02, 4.974071655273438e+02, 5.027900158691406e+02, 5.070594958496094e+02, 5.151322631835938e+02, 5.222747143554687e+02, 5.28472900390625e+02, 5.384816284179688e+02, 5.474847631835937e+02, 5.567844848632812e+02, 5.671643676757812e+02, 5.774937377929688e+02, 5.860969848632812e+02, 5.97453857421875e+02, 6.097908215332031e+02, 6.2129443359375e+02, 6.347105712890625e+02, 6.481327734375e+02, 6.602129516601562e+02, 6.73084013671875e+02, 6.872220471191406e+02, 7.052364501953125e+02, 7.225625463867187e+02, 7.355885229492187e+02, 7.49642822265625e+02, 7.630132958984375e+02, 7.775433959960938e+02, 7.925662231445312e+02, 8.023069787597656e+02, 8.157548828125e+02, 8.338760375976562e+02, 8.470837524414062e+02, 8.581215209960938e+02, 8.684509887695312e+02, 8.816202966308593e+02, 8.932034912109375e+02, 9.103702392578125e+02, 9.255176879882813e+02, 9.40283203125e+02, 9.567611450195312e+02, 9.704114038085937e+02, 9.888760986328125e+02] +Room.thermRoom.T=[2.941499938964844e+02, 3.068535595703125e+02, 2.706127319335938e+02, 2.757045886230469e+02, 3.175275598144531e+02, 2.72499169921875e+02, 2.738306176757812e+02, 2.778456469726563e+02, 2.649453918457031e+02, 2.808116082763672e+02, 2.976334289550781e+02, 2.736340167236328e+02, 2.899072375488281e+02, 2.712361254882812e+02, 2.713900085449219e+02, 3.164854553222656e+02, 2.888651318359375e+02, 2.734585290527344e+02, 3.136519372558594e+02, 2.780217926025391e+02, 2.7581474609375e+02, 3.026255535888672e+02, 2.714023706054688e+02, 2.819231701660156e+02, 3.213339282226563e+02, 2.804335784912109e+02, 2.800377587890625e+02, 3.057779711914063e+02, 2.748974560546875e+02, 2.86677119140625e+02, 2.986352478027344e+02, 2.823212060546875e+02, 2.966077233886719e+02, 2.889705126953125e+02, 2.848439416503906e+02, 2.9951259765625e+02, 2.869080261230469e+02, 2.869080328369141e+02, 3.060269702148437e+02, 2.843993469238281e+02, 2.878669082506568e+02, 3.055947058105469e+02, 2.872853259277344e+02, 2.92714526977539e+02, 2.868115380859375e+02, 2.949810516357422e+02, 2.8695861328125e+02, 3.000426147460938e+02, 2.888827941894531e+02, 2.967815295410156e+02, 3.108832702636719e+02, 2.869845422363281e+02, 3.05205537109375e+02, 3.001124139404297e+02, 2.895844812011719e+02, 3.08693603515625e+02, 2.997099426269531e+02, 2.955023846435547e+02, 3.179185229492188e+02, 2.954091583251953e+02, 2.905948143265583e+02, 3.218603356933594e+02, 2.907115478515625e+02, 2.949904479980469e+02, 3.21082294921875e+02, 2.903586029052734e+02, 2.995463952636719e+02, 3.286472131347657e+02, 2.871975280761719e+02, 2.991922888183594e+02, 3.197905395507813e+02, 2.826962982177735e+02, 2.958210485839843e+02, 3.073060198974609e+02, 2.810974792480469e+02, 2.816150817871094e+02, 2.993905078125e+02, 2.773723394775391e+02, 3.110710815429687e+02, 2.90625595703125e+02, 2.818242736816406e+02, 3.312619140625e+02, 2.843043200683594e+02, 2.751935906982422e+02, 3.190985339355469e+02, 2.747325469970703e+02, 2.789409155273437e+02, 2.920513812255859e+02, 2.713813110351563e+02, 2.838773046875e+02, 3.249763671875e+02, 2.840762554931641e+02, 2.735314611816406e+02, 2.83042060546875e+02, 2.726613391113281e+02, 2.782510223388672e+02, 2.889201318359375e+02, 2.722988623046875e+02, 3.154018225097656e+02, 2.753609460449219e+02, 2.734969482421875e+02] +Room.starRoom.T=[2.895909423828125e+02, 3.08969619140625e+02, 2.709044970703125e+02, 2.783107574462891e+02, 3.198999377441406e+02, 2.729122589111328e+02, 2.7817546875e+02, 2.782857995605469e+02, 2.655237939453125e+02, 2.87186484375e+02, 2.994348754882812e+02, 2.747401110839844e+02, 2.976016198730469e+02, 2.713687225341797e+02, 2.724794177246094e+02, 3.210445983886719e+02, 2.897569494628906e+02, 2.74736088256836e+02, 3.151044055175781e+02, 2.783669317626953e+02, 2.769078247070312e+02, 3.035863635253907e+02, 2.715168981933594e+02, 2.828830865478516e+02, 3.228541223144532e+02, 2.801213684082031e+02, 2.826467687988281e+02, 3.066418017578125e+02, 2.756048840332031e+02, 2.905256805419922e+02, 2.9952978515625e+02, 2.8373107421875e+02, 3.006216198730469e+02, 2.896532110595703e+02, 2.8572076171875e+02, 3.026429046630859e+02, 2.87281923828125e+02, 2.883215936279297e+02, 3.062803576660156e+02, 2.845080120849609e+02, 2.894205534846985e+02, 3.058724224853515e+02, 2.873781079101562e+02, 2.946436547851562e+02, 2.870259899902344e+02, 2.956409637451172e+02, 2.882211755371094e+02, 3.003987902832031e+02, 2.8975697265625e+02, 2.990317645263672e+02, 3.112708740234375e+02, 2.874353399658203e+02, 3.076872314453125e+02, 3.004856439208984e+02, 2.908108569335938e+02, 3.131296325683594e+02, 2.999905334472656e+02, 2.966669592285156e+02, 3.182267785644531e+02, 2.955755749511719e+02, 2.915422420735899e+02, 3.224886041259766e+02, 2.907882983398438e+02, 2.964029522705078e+02, 3.219931066894531e+02, 2.899018798828125e+02, 3.016556848144531e+02, 3.298150506591797e+02, 2.880649365234375e+02, 3.021730841064453e+02, 3.210054260253906e+02, 2.834381988525391e+02, 3.015036962890625e+02, 3.086479876708984e+02, 2.821200476074219e+02, 2.862210083007812e+02, 3.004049609375e+02, 2.777292810058594e+02, 3.115439453125e+02, 2.913837512207031e+02, 2.832712280273437e+02, 3.327002319335937e+02, 2.847070288085937e+02, 2.76736181640625e+02, 3.211021032714844e+02, 2.753557586669922e+02, 2.816545104980469e+02, 2.931816119384766e+02, 2.721703698730469e+02, 2.878938092041016e+02, 3.268098083496094e+02, 2.843996887207031e+02, 2.775441015625e+02, 2.836006958007812e+02, 2.729680517578125e+02, 2.841987030029297e+02, 2.902232202148438e+02, 2.735252502441406e+02, 3.163161535644531e+02, 2.762803607177734e+02, 2.748014221191406e+02] +TransmittedSolarRadiation_room=[0e+00, 1.131000858306885e+01, 2.616035743713379e+01, 4.389765548706055e+01, 5.919030776977539e+01, 7.433255004882812e+01, 8.556338500976562e+01, 1.003816439819336e+02, 1.156252746582031e+02, 1.345751037597656e+02, 1.428023406982422e+02, 1.544996948242188e+02, 1.705418395996094e+02, 1.774783679199219e+02, 1.932700347900391e+02, 2.075357650756836e+02, 2.213110333251953e+02, 2.364078826904297e+02, 2.496893170166016e+02, 2.60988212890625e+02, 2.750863342285156e+02, 2.882618981933594e+02, 2.998655212402344e+02, 3.089285583496094e+02, 3.219345361328125e+02, 3.323003540039062e+02, 3.404503784179688e+02, 3.50369751586914e+02, 3.563370056152344e+02, 3.649226684570312e+02, 3.726062316894531e+02, 3.801183776855469e+02, 3.884663696289062e+02, 3.934249548339844e+02, 4.005422668457031e+02, 4.05458251953125e+02, 4.083232678222656e+02, 4.135381774902344e+02, 4.187117614746094e+02, 4.223239501953125e+02, 4.269260864257812e+02, 4.303601000976562e+02, 4.334222790527344e+02, 4.371691284179688e+02, 4.3962849609375e+02, 4.423798217773438e+02, 4.452757873535156e+02, 4.481343511962891e+02, 4.508466491699219e+02, 4.544415588378906e+02, 4.576516418457031e+02, 4.600802917480469e+02, 4.634701232910156e+02, 4.661411328125e+02, 4.697556762695312e+02, 4.742698089599609e+02, 4.779058178710937e+02, 4.829052124023438e+02, 4.881383898925781e+02, 4.913948358154297e+02, 4.974168395996094e+02, 5.027998858642578e+02, 5.070694641113281e+02, 5.151423950195312e+02, 5.222848510742188e+02, 5.28483154296875e+02, 5.384921264648438e+02, 5.474953991699218e+02, 5.567952880859375e+02, 5.6717529296875e+02, 5.7750478515625e+02, 5.861083374023438e+02, 5.974652709960938e+02, 6.098022961425781e+02, 6.213059692382812e+02, 6.34722412109375e+02, 6.481446142578125e+02, 6.602249755859375e+02, 6.7309623046875e+02, 6.872345825195313e+02, 7.052491455078125e+02, 7.225756689453125e+02, 7.356018872070313e+02, 7.49656494140625e+02, 7.630272729492187e+02, 7.775576782226562e+02, 7.925806884765625e+02, 8.023216271972656e+02, 8.15769775390625e+02, 8.338911743164062e+02, 8.470989990234375e+02, 8.581370239257812e+02, 8.684667358398438e+02, 8.816361938476563e+02, 8.93219482421875e+02, 9.103865356445312e+02, 9.255342211914062e+02, 9.402999267578125e+02, 9.56778173828125e+02, 9.704286157226562e+02, 9.888935546875e+02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case800.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case800.txt index d366b820f6..5509dd3ba8 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case800.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case800.txt @@ -1,20 +1,20 @@ -last-generated=2021-05-25 +last-generated=2022-07-06 statistics-simulation= { "linear": "0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0", "nonlinear": "13", - "number of continuous time states": "23", + "number of continuous time states": "25", "numerical Jacobians": "0" } time=[0e+00, 3.15396e+07] checkResultsAccordingToASHRAEHeatingOrTempMax.lowerLimit=[4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03, 4.868e+03] -AnnualHeatingLoad=[0e+00, 2.419278872680664e+02, 4.067514282226563e+02, 5.194200708007812e+02, 6.444760009765625e+02, 7.911334167480469e+02, 9.918148217773437e+02, 1.101697595214844e+03, 1.24273859375e+03, 1.406674272460938e+03, 1.6073337890625e+03, 1.767359755859375e+03, 1.867714135742187e+03, 2.030189384765625e+03, 2.187880419921875e+03, 2.341238354492188e+03, 2.4511534765625e+03, 2.596555874023437e+03, 2.754723603515625e+03, 2.88819322265625e+03, 2.97110732421875e+03, 3.083791416015625e+03, 3.186520439453125e+03, 3.2955268359375e+03, 3.345699853515625e+03, 3.394522216796875e+03, 3.509528544921875e+03, 3.575616782226562e+03, 3.64276203125e+03, 3.746204008789062e+03, 3.779336328125e+03, 3.820796284179688e+03, 3.824377197265625e+03, 3.881068374023438e+03, 3.927501748046875e+03, 3.976846435546875e+03, 4.0276658203125e+03, 4.0615078125e+03, 4.061539306640625e+03, 4.066715190429687e+03, 4.07131201171875e+03, 4.08673046875e+03, 4.093020751953125e+03, 4.093119384765625e+03, 4.11625759765625e+03, 4.139546875e+03, 4.13985888671875e+03, 4.14558203125e+03, 4.1464375e+03, 4.1464375e+03, 4.1464375e+03, 4.1464375e+03, 4.14648046875e+03, 4.14648046875e+03, 4.14648046875e+03, 4.14648046875e+03, 4.14648046875e+03, 4.14648046875e+03, 4.14648046875e+03, 4.14648046875e+03, 4.14648046875e+03, 4.14648046875e+03, 4.14648046875e+03, 4.14648046875e+03, 4.14648046875e+03, 4.146482421875e+03, 4.146482421875e+03, 4.146482421875e+03, 4.146482421875e+03, 4.146482421875e+03, 4.14866455078125e+03, 4.1560691796875e+03, 4.1761025390625e+03, 4.200222784024532e+03, 4.2302458984375e+03, 4.252307373046875e+03, 4.30823478515625e+03, 4.340996484375e+03, 4.40383125e+03, 4.447650986328125e+03, 4.485277734375e+03, 4.5260284765625e+03, 4.59779103515625e+03, 4.701822177734375e+03, 4.83152765625e+03, 4.937772265625e+03, 5.02457291015625e+03, 5.14276443359375e+03, 5.26045966796875e+03, 5.37036927734375e+03, 5.50804970703125e+03, 5.609555556640625e+03, 5.7178765625e+03, 5.872314072265625e+03, 6.07606376953125e+03, 6.242721484375e+03, 6.4250333203125e+03, 6.535838662109375e+03, 6.6357015625e+03, 6.746366455078125e+03, 6.88903466796875e+03] +AnnualHeatingLoad=[0e+00, 2.419274752807617e+02, 4.067510314941406e+02, 5.194193994140625e+02, 6.444752758789062e+02, 7.911325561523438e+02, 9.918129907226562e+02, 1.101696496582031e+03, 1.24273880859375e+03, 1.4066748828125e+03, 1.607335498046875e+03, 1.767361953125e+03, 1.8677171875e+03, 2.030192192382812e+03, 2.187883369140625e+03, 2.341243481445313e+03, 2.451160556640625e+03, 2.596563198242187e+03, 2.75473166015625e+03, 2.888201767578125e+03, 2.971117822265625e+03, 3.083801030273437e+03, 3.186530205078125e+03, 3.295537807617187e+03, 3.345710107421875e+03, 3.394532348632812e+03, 3.509539287109375e+03, 3.575627768554687e+03, 3.642770576171875e+03, 3.74621240234375e+03, 3.779342431640625e+03, 3.820803852539063e+03, 3.824384521484375e+03, 3.881074721679688e+03, 3.927506142578125e+03, 3.976850830078125e+03, 4.027670458984375e+03, 4.06151220703125e+03, 4.06154345703125e+03, 4.066718466796875e+03, 4.071315185546875e+03, 4.086733154296875e+03, 4.09302294921875e+03, 4.093121337890625e+03, 4.11625890625e+03, 4.13954833984375e+03, 4.13985943359375e+03, 4.14558203125e+03, 4.1464375e+03, 4.1464375e+03, 4.1464375e+03, 4.1464375e+03, 4.14647998046875e+03, 4.14647998046875e+03, 4.14647998046875e+03, 4.14647998046875e+03, 4.14647998046875e+03, 4.14647998046875e+03, 4.14647998046875e+03, 4.14647998046875e+03, 4.14647998046875e+03, 4.14647998046875e+03, 4.14647998046875e+03, 4.14647998046875e+03, 4.14647998046875e+03, 4.14648193359375e+03, 4.14648193359375e+03, 4.14648193359375e+03, 4.14648193359375e+03, 4.14648193359375e+03, 4.14866259765625e+03, 4.156067041015625e+03, 4.1761005859375e+03, 4.200221807462032e+03, 4.23024443359375e+03, 4.252304931640625e+03, 4.3082319921875e+03, 4.3409935546875e+03, 4.4038283203125e+03, 4.447647568359375e+03, 4.48527431640625e+03, 4.5260245703125e+03, 4.59778712890625e+03, 4.70181986328125e+03, 4.831525703125e+03, 4.9377703125e+03, 5.02457193359375e+03, 5.142765966796875e+03, 5.26046162109375e+03, 5.3703707421875e+03, 5.508051171875e+03, 5.609557021484375e+03, 5.717878515625e+03, 5.8723162890625e+03, 6.0760662109375e+03, 6.242725341796875e+03, 6.425038203125e+03, 6.535844033203125e+03, 6.63570763671875e+03, 6.746373291015625e+03, 6.88904541015625e+03] checkResultsAccordingToASHRAEHeatingOrTempMax.upperLimit=[7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03, 7.228e+03] checkResultsAccordingToASHRAECoolingOrTempMin.lowerLimit=[-3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02, -3.25e+02] -AnnualCoolingLoad=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -1.002366781234741e+00, -1.678127670288086e+01, -2.18901195526123e+01, -2.18901195526123e+01, -2.465838623046875e+01, -2.564303588867188e+01, -3.053337669372559e+01, -4.73704867553711e+01, -6.645637512207031e+01, -8.062681030273437e+01, -8.344558715820312e+01, -8.6227294921875e+01, -8.6227294921875e+01, -8.6227294921875e+01, -9.670815277099609e+01, -9.670815277099609e+01, -9.670815277099609e+01, -9.897732543945312e+01, -1.020267216491699e+02, -1.047125854492188e+02, -1.047861938476562e+02, -1.047861938476562e+02, -1.047861938476562e+02, -1.047861938476562e+02, -1.047861938476562e+02, -1.047861938476562e+02, -1.047861938476562e+02, -1.047861938476562e+02, -1.047861938476562e+02, -1.047861938476562e+02, -1.047861938476562e+02, -1.047861938476562e+02, -1.047861938476562e+02, -1.047861938476562e+02, -1.047861938476562e+02, -1.047861938476562e+02, -1.047861938476562e+02, -1.047861938476562e+02, -1.047861938476562e+02, -1.047861938476562e+02, -1.047861938476562e+02, -1.047861938476562e+02, -1.047861938476562e+02, -1.047861938476562e+02, -1.047861938476562e+02, -1.047861938476562e+02, -1.047861938476562e+02, -1.047861938476562e+02, -1.047861938476562e+02, -1.047861938476562e+02, -1.047861938476562e+02, -1.047861938476562e+02] +AnnualCoolingLoad=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -1.001171231269836e+00, -1.677864456176758e+01, -2.188740730285645e+01, -2.188740730285645e+01, -2.465415000915527e+01, -2.563814353942871e+01, -3.052769145965576e+01, -4.736412139892578e+01, -6.644913482666016e+01, -8.061882995605468e+01, -8.343758392333984e+01, -8.621833801269531e+01, -8.621833801269531e+01, -8.621833801269531e+01, -9.669728851318359e+01, -9.669728851318359e+01, -9.669728851318359e+01, -9.896501159667969e+01, -1.02013885345459e+02, -1.046993942260742e+02, -1.047727127075195e+02, -1.047727127075195e+02, -1.047727127075195e+02, -1.047727127075195e+02, -1.047727127075195e+02, -1.047727127075195e+02, -1.047727127075195e+02, -1.047727127075195e+02, -1.047727127075195e+02, -1.047727127075195e+02, -1.047727127075195e+02, -1.047727127075195e+02, -1.047727127075195e+02, -1.047727127075195e+02, -1.047727127075195e+02, -1.047727127075195e+02, -1.047727127075195e+02, -1.047727127075195e+02, -1.047727127075195e+02, -1.047727127075195e+02, -1.047727127075195e+02, -1.047727127075195e+02, -1.047727127075195e+02, -1.047727127075195e+02, -1.047727127075195e+02, -1.047727127075195e+02, -1.047727127075195e+02, -1.047727127075195e+02, -1.047727127075195e+02, -1.047727127075195e+02, -1.047727127075195e+02, -1.047727127075195e+02] checkResultsAccordingToASHRAECoolingOrTempMin.upperLimit=[-5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01, -5.5e+01] checkResultsAccordingToASHRAEHeatingOrTempMax.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00] checkResultsAccordingToASHRAECoolingOrTempMin.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00] -Room.thermRoom.T=[2.941499938964844e+02, 2.931499633789062e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931500103759765e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931500549316406e+02, 2.931499633789062e+02, 2.931499633789062e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931500549316406e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931500549316406e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499920654297e+02, 2.931500244140625e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.931500549316406e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931500122070312e+02, 2.931499633789062e+02, 2.947703686523437e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.934410980224609e+02, 2.931500244140625e+02, 2.940892993164063e+02, 2.960121728515625e+02, 2.931500549316406e+02, 2.946211351088417e+02, 2.942474102783203e+02, 2.9339453125e+02, 2.962732940673828e+02, 2.931500244140625e+02, 2.965345855712891e+02, 2.931499938964844e+02, 2.949119439697266e+02, 2.960392749023438e+02, 2.996919110107422e+02, 3.001500244140625e+02, 2.932530889892578e+02, 2.998509008789063e+02, 2.983527447509766e+02, 2.983420776367187e+02, 3.001499633789062e+02, 3.001500244140625e+02, 3.001233744497677e+02, 3.001499865722656e+02, 2.986135406494141e+02, 2.98190759302324e+02, 2.992438128662109e+02, 2.974841052246094e+02, 2.99347939453125e+02, 2.961252185058594e+02, 2.958274444580078e+02, 3.0002267578125e+02, 3.001500323486328e+02, 2.966672216796875e+02, 2.993097998046875e+02, 2.951141906738281e+02, 2.931499938964844e+02, 2.93198134765625e+02, 2.931500549316406e+02, 2.931499719238281e+02, 2.931499938964844e+02, 2.931500634765625e+02, 2.931500225830078e+02, 2.931499938964844e+02, 2.931500854492188e+02, 2.931499938964844e+02, 2.931499993896484e+02, 2.931500256347656e+02, 2.931499938964844e+02, 2.93150009765625e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499761962891e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931500854492188e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931500854492188e+02, 2.931499938964844e+02] -Room.starRoom.T=[2.896538391113281e+02, 2.888715240478516e+02, 2.905432788085938e+02, 2.913104321289063e+02, 2.904584655761719e+02, 2.908516876220703e+02, 2.905632824707031e+02, 2.909565759277344e+02, 2.900166162109375e+02, 2.912172180175781e+02, 2.898248779296875e+02, 2.909685650634765e+02, 2.921366577148438e+02, 2.902150311279297e+02, 2.907582141113281e+02, 2.92264028930664e+02, 2.916231945800781e+02, 2.909733422851563e+02, 2.906192602539062e+02, 2.912544482421875e+02, 2.911871826171875e+02, 2.91011284790039e+02, 2.909500439453125e+02, 2.918632885742188e+02, 2.92670107421875e+02, 2.917692108154297e+02, 2.916746789550782e+02, 2.930442645263672e+02, 2.912843505859375e+02, 2.924066357421875e+02, 2.924774230957031e+02, 2.927128057861328e+02, 2.947988220214844e+02, 2.921386029052734e+02, 2.929278381347656e+02, 2.934357482910156e+02, 2.924859143066406e+02, 2.943154675292969e+02, 2.960544067382813e+02, 2.927882464599609e+02, 2.948355541590945e+02, 2.94235859375e+02, 2.935402673339844e+02, 2.963885656738281e+02, 2.920494787597656e+02, 2.965613952636719e+02, 2.930567687988281e+02, 2.949387237548828e+02, 2.962520056152344e+02, 2.997987475585937e+02, 3.011384887695312e+02, 2.934226062011719e+02, 2.997717431640625e+02, 2.983801965332031e+02, 2.986089172363281e+02, 3.009837585449219e+02, 3.00251484375e+02, 3.002580607207378e+02, 3.010014245605469e+02, 2.986720849609375e+02, 2.984119593684052e+02, 2.992664721679687e+02, 2.9760470703125e+02, 2.994752014160156e+02, 2.961016711425781e+02, 2.959529357910156e+02, 3.000564147949219e+02, 3.007564483642578e+02, 2.969489868164063e+02, 2.99357308959961e+02, 2.949852478027344e+02, 2.926445654296875e+02, 2.932594018554688e+02, 2.931641268150829e+02, 2.921788427734375e+02, 2.917840423583984e+02, 2.928265710449219e+02, 2.914941217041016e+02, 2.929453491210937e+02, 2.924530889892578e+02, 2.923274841308594e+02, 2.92724595336914e+02, 2.9214224609375e+02, 2.910301025390625e+02, 2.912134729003906e+02, 2.915343292236328e+02, 2.917353857421875e+02, 2.911154962158203e+02, 2.909308227539062e+02, 2.919272467041015e+02, 2.930031982421875e+02, 2.919163299560547e+02, 2.905692492675781e+02, 2.909428344726563e+02, 2.904810009765625e+02, 2.90596826171875e+02, 2.905952282714844e+02, 2.9101548828125e+02, 2.917597229003906e+02, 2.904255401611328e+02, 2.909460144042969e+02] +Room.thermRoom.T=[2.941499938964844e+02, 2.931499633789062e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931500103759765e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931500549316406e+02, 2.931499633789062e+02, 2.931499633789062e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931500549316406e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931500549316406e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499920654297e+02, 2.931500244140625e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.931500549316406e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931500122070312e+02, 2.931499633789062e+02, 2.947706750488281e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.934412689208984e+02, 2.931500244140625e+02, 2.940896697998047e+02, 2.960121423339844e+02, 2.931500549316406e+02, 2.946215678334387e+02, 2.942469537353516e+02, 2.933939685058594e+02, 2.96273671875e+02, 2.931500244140625e+02, 2.965344146728515e+02, 2.931499938964844e+02, 2.949113537597656e+02, 2.9603931640625e+02, 2.996921484375e+02, 3.001500244140625e+02, 2.932536315917969e+02, 2.998504565429687e+02, 2.983524694824219e+02, 2.983426611328125e+02, 3.001499633789062e+02, 3.001499829101563e+02, 3.001234939804181e+02, 3.001499865722656e+02, 2.986131744384766e+02, 2.981911565720791e+02, 2.992444519042969e+02, 2.974835083007812e+02, 2.993481530761719e+02, 2.961250451660156e+02, 2.958270935058594e+02, 3.000228601074219e+02, 3.001500323486328e+02, 2.96667861328125e+02, 2.993100799560547e+02, 2.951132507324219e+02, 2.931499938964844e+02, 2.931985571289063e+02, 2.931500549316406e+02, 2.931499719238281e+02, 2.931499938964844e+02, 2.931500634765625e+02, 2.931500225830078e+02, 2.931499938964844e+02, 2.931500854492188e+02, 2.931499938964844e+02, 2.931499993896484e+02, 2.931500256347656e+02, 2.931499938964844e+02, 2.93150009765625e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499761962891e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931500854492188e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931500854492188e+02, 2.931499938964844e+02] +Room.starRoom.T=[2.896538391113281e+02, 2.888715002441406e+02, 2.905432922363281e+02, 2.913104321289063e+02, 2.904584655761719e+02, 2.908516876220703e+02, 2.905632824707031e+02, 2.909565759277344e+02, 2.900166162109375e+02, 2.912172174072265e+02, 2.898248474121094e+02, 2.909685778808594e+02, 2.921366687011719e+02, 2.902150311279297e+02, 2.907582141113281e+02, 2.92264028930664e+02, 2.916231945800781e+02, 2.909733648681641e+02, 2.906192602539062e+02, 2.912544427490234e+02, 2.911871826171875e+02, 2.91011284790039e+02, 2.909500390625e+02, 2.918632885742188e+02, 2.92670107421875e+02, 2.917692108154297e+02, 2.916747009277344e+02, 2.930442645263672e+02, 2.91284345703125e+02, 2.924066241455078e+02, 2.924774230957031e+02, 2.92712836303711e+02, 2.947988232421875e+02, 2.921386029052734e+02, 2.929278540039062e+02, 2.934357604980469e+02, 2.924859118652344e+02, 2.943155328369141e+02, 2.96054345703125e+02, 2.927882769775391e+02, 2.948357040077335e+02, 2.942356457519531e+02, 2.935401611328125e+02, 2.963885797119141e+02, 2.920494787597656e+02, 2.965610900878906e+02, 2.930568908691406e+02, 2.949384692382812e+02, 2.962519506835937e+02, 2.997986798095703e+02, 3.011384887695312e+02, 2.934230944824219e+02, 2.997712072753906e+02, 2.983801556396484e+02, 2.986091918945312e+02, 3.009836975097656e+02, 3.002514025878907e+02, 3.002580872831045e+02, 3.010014172363281e+02, 2.986720251464844e+02, 2.984121430151134e+02, 2.992663885498047e+02, 2.976045764160156e+02, 2.994752014160156e+02, 2.961015844726563e+02, 2.959528259277344e+02, 3.000564306640625e+02, 3.007563873291016e+02, 2.969493225097656e+02, 2.993572839355469e+02, 2.949848388671875e+02, 2.926445959472656e+02, 2.932595239257813e+02, 2.931641268150829e+02, 2.921788208007812e+02, 2.917840728759766e+02, 2.928265710449219e+02, 2.914941217041016e+02, 2.929453283691406e+02, 2.924530584716797e+02, 2.923275146484375e+02, 2.927246203613281e+02, 2.9214224609375e+02, 2.910301025390625e+02, 2.912134875488281e+02, 2.915343200683594e+02, 2.917353552246093e+02, 2.911155224609375e+02, 2.909307922363281e+02, 2.919272290039062e+02, 2.930031982421875e+02, 2.919163299560547e+02, 2.905692419433594e+02, 2.909428344726563e+02, 2.904810009765625e+02, 2.905968231201172e+02, 2.905952319335938e+02, 2.910154779052734e+02, 2.917597229003906e+02, 2.904255401611328e+02, 2.909460144042969e+02] TransmittedSolarRadiation_room=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case810.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case810.txt index d8a6b7085c..e5dd5c4f0c 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case810.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case810.txt @@ -1,20 +1,20 @@ -last-generated=2021-05-25 +last-generated=2022-07-06 statistics-simulation= { "linear": "0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0", "nonlinear": "13", - "number of continuous time states": "23", + "number of continuous time states": "25", "numerical Jacobians": "0" } time=[0e+00, 3.15396e+07] checkResultsAccordingToASHRAEHeatingOrTempMax.lowerLimit=[1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03, 1.839e+03] -AnnualHeatingLoad=[0e+00, 1.77833251953125e+02, 2.389240985107422e+02, 2.533382263183594e+02, 2.901542663574219e+02, 3.295054504394531e+02, 4.585085729980469e+02, 4.782617889404297e+02, 5.225550146484375e+02, 5.757916870117188e+02, 7.086436157226562e+02, 7.867732568359374e+02, 8.064981689453125e+02, 9.014311376953125e+02, 9.615179760742187e+02, 1.031311767578125e+03, 1.04426708984375e+03, 1.094442409667969e+03, 1.172680541992188e+03, 1.21750349609375e+03, 1.23002294921875e+03, 1.255879516601562e+03, 1.285445415039062e+03, 1.333700908203125e+03, 1.342260375976562e+03, 1.342325866699219e+03, 1.404643310546875e+03, 1.41588720703125e+03, 1.4425616796875e+03, 1.500133911132812e+03, 1.501567993164062e+03, 1.507424560546875e+03, 1.507424560546875e+03, 1.528038818359375e+03, 1.542373046875e+03, 1.56194775390625e+03, 1.586665180664063e+03, 1.601936279296875e+03, 1.601936279296875e+03, 1.601936279296875e+03, 1.601936279296875e+03, 1.603679931640625e+03, 1.603679931640625e+03, 1.603679931640625e+03, 1.615806225585937e+03, 1.633201171875e+03, 1.633201171875e+03, 1.633201171875e+03, 1.633201171875e+03, 1.633201171875e+03, 1.633201171875e+03, 1.633201171875e+03, 1.633201171875e+03, 1.633201171875e+03, 1.633201171875e+03, 1.633201171875e+03, 1.633201171875e+03, 1.633201171875e+03, 1.633201171875e+03, 1.633201171875e+03, 1.633201171875e+03, 1.633201171875e+03, 1.633201171875e+03, 1.633201171875e+03, 1.633201171875e+03, 1.633201171875e+03, 1.633201171875e+03, 1.633201171875e+03, 1.633201171875e+03, 1.633201171875e+03, 1.633201171875e+03, 1.633201171875e+03, 1.635697509765625e+03, 1.635697509765625e+03, 1.638021606445312e+03, 1.638021606445312e+03, 1.644480346679688e+03, 1.64728017578125e+03, 1.658575073242188e+03, 1.658848266601562e+03, 1.658881958007812e+03, 1.658881958007812e+03, 1.659869873046875e+03, 1.694519953613281e+03, 1.742338989257812e+03, 1.762346313476562e+03, 1.77081982421875e+03, 1.815714111328125e+03, 1.8516444140625e+03, 1.86537158203125e+03, 1.909939453125e+03, 1.9415302734375e+03, 1.987938173828125e+03, 2.05308390625e+03, 2.175732978515625e+03, 2.22768359375e+03, 2.3035625e+03, 2.32537138671875e+03, 2.341916748046875e+03, 2.357399479998289e+03, 2.3873984375e+03] +AnnualHeatingLoad=[0e+00, 1.778321838378906e+02, 2.389214605712891e+02, 2.533327178955078e+02, 2.901444396972656e+02, 3.294933929443359e+02, 4.584984716796875e+02, 4.782495324707031e+02, 5.225400756835937e+02, 5.757754516601562e+02, 7.086260375976562e+02, 7.867548852539062e+02, 8.064775390625e+02, 9.014102551269531e+02, 9.614959985351562e+02, 1.031288940429688e+03, 1.0442412109375e+03, 1.094413967285156e+03, 1.17264892578125e+03, 1.217470537109375e+03, 1.229988647460938e+03, 1.255842651367188e+03, 1.285406352539062e+03, 1.333660861816406e+03, 1.342219116210938e+03, 1.342283813476562e+03, 1.404600219726562e+03, 1.415842895507812e+03, 1.44251529296875e+03, 1.5000869140625e+03, 1.501520751953125e+03, 1.5073759765625e+03, 1.5073759765625e+03, 1.52798828125e+03, 1.542321411132812e+03, 1.561896118164062e+03, 1.586612934570313e+03, 1.601884643554688e+03, 1.601884643554688e+03, 1.601884643554688e+03, 1.601884643554688e+03, 1.603627075195312e+03, 1.603627075195312e+03, 1.603627075195312e+03, 1.615751538085937e+03, 1.6331455078125e+03, 1.6331455078125e+03, 1.6331455078125e+03, 1.6331455078125e+03, 1.6331455078125e+03, 1.6331455078125e+03, 1.6331455078125e+03, 1.6331455078125e+03, 1.6331455078125e+03, 1.6331455078125e+03, 1.6331455078125e+03, 1.6331455078125e+03, 1.6331455078125e+03, 1.6331455078125e+03, 1.6331455078125e+03, 1.6331455078125e+03, 1.6331455078125e+03, 1.6331455078125e+03, 1.6331455078125e+03, 1.6331455078125e+03, 1.6331455078125e+03, 1.6331455078125e+03, 1.6331455078125e+03, 1.6331455078125e+03, 1.6331455078125e+03, 1.6331455078125e+03, 1.6331455078125e+03, 1.635640380859375e+03, 1.635640380859375e+03, 1.63796337890625e+03, 1.63796337890625e+03, 1.644419799804688e+03, 1.647218293457031e+03, 1.658511596679688e+03, 1.658784423828125e+03, 1.658817749023438e+03, 1.658817749023438e+03, 1.659804565429688e+03, 1.694451137695313e+03, 1.74226806640625e+03, 1.7622744140625e+03, 1.770745361328125e+03, 1.815636474609375e+03, 1.851565390625e+03, 1.8652900390625e+03, 1.909856567382812e+03, 1.941446655273438e+03, 1.987851899414062e+03, 2.052996860351563e+03, 2.175646630859375e+03, 2.2275966796875e+03, 2.303474853515625e+03, 2.32528349609375e+03, 2.341827392578125e+03, 2.357306915060447e+03, 2.38730322265625e+03] checkResultsAccordingToASHRAEHeatingOrTempMax.upperLimit=[3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03, 3.004e+03] checkResultsAccordingToASHRAECoolingOrTempMin.lowerLimit=[-1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03, -1.711e+03] -AnnualCoolingLoad=[0e+00, 0e+00, -1.396632671356201e+00, -4.992428779602051e+00, -1.038463401794434e+01, -1.181366443634033e+01, -1.181366443634033e+01, -1.872395324707031e+01, -1.976372718811035e+01, -2.074897003173828e+01, -2.09559497833252e+01, -2.097117042541504e+01, -2.248151397705078e+01, -2.248151397705078e+01, -2.248151397705078e+01, -2.336743354797363e+01, -2.442476844787598e+01, -2.529596328735352e+01, -2.605131340026855e+01, -2.605131340026855e+01, -2.951123237609863e+01, -2.951123237609863e+01, -3.03101921081543e+01, -3.03101921081543e+01, -4.083812438964843e+01, -5.065191268920898e+01, -5.065191268920898e+01, -5.065191268920898e+01, -5.065191268920898e+01, -5.065191268920898e+01, -5.141210556030273e+01, -5.141210556030273e+01, -6.735041046142578e+01, -6.735041046142578e+01, -6.735041046142578e+01, -6.735041046142578e+01, -6.735041046142578e+01, -6.735041046142578e+01, -7.492259979248047e+01, -8.002297210693359e+01, -8.015385437011719e+01, -8.015385437011719e+01, -8.015385437011719e+01, -8.065278625488281e+01, -8.159267425537109e+01, -8.159267425537109e+01, -8.297946929931641e+01, -8.297946929931641e+01, -8.432276916503906e+01, -1.066339022827148e+02, -1.444866943359375e+02, -1.561077880859375e+02, -1.629872766113281e+02, -1.816270922851562e+02, -2.0164453125e+02, -2.338162384033203e+02, -2.781361804199219e+02, -3.319651812744141e+02, -3.800839599609375e+02, -4.0424560546875e+02, -4.441302490234375e+02, -4.593291296386719e+02, -4.820122375488281e+02, -5.487262890625e+02, -5.686332641601563e+02, -5.912533569335938e+02, -6.649238964843749e+02, -7.232320300292969e+02, -7.825142822265625e+02, -8.491736279296875e+02, -8.75816064453125e+02, -8.985420532226562e+02, -9.284791259765625e+02, -9.540403381347656e+02, -9.813421630859375e+02, -1.0193154296875e+03, -1.035668043053668e+03, -1.072323852539062e+03, -1.077667114257812e+03, -1.104132568359375e+03, -1.15259228515625e+03, -1.187620866699219e+03, -1.198064086914062e+03, -1.211101196289062e+03, -1.211782104492188e+03, -1.217301635742188e+03, -1.220358764648438e+03, -1.221704833984375e+03, -1.222849487304688e+03, -1.225442749023438e+03, -1.225812109375e+03, -1.229633056640625e+03, -1.2330908203125e+03, -1.2330908203125e+03, -1.2330908203125e+03, -1.2330908203125e+03, -1.2330908203125e+03, -1.233848999023438e+03, -1.238190063476562e+03, -1.241333984375e+03, -1.241946166992188e+03] +AnnualCoolingLoad=[0e+00, 0e+00, -1.394522547721863e+00, -4.98677921295166e+00, -1.03764066696167e+01, -1.180423069000244e+01, -1.180423069000244e+01, -1.871101379394531e+01, -1.974966049194336e+01, -2.073354148864746e+01, -2.093982887268066e+01, -2.095469093322754e+01, -2.246321105957031e+01, -2.246321105957031e+01, -2.246321105957031e+01, -2.334782981872559e+01, -2.440352249145508e+01, -2.527371788024902e+01, -2.602803421020508e+01, -2.602803421020508e+01, -2.948552703857422e+01, -2.948552703857422e+01, -3.028285217285156e+01, -3.028285217285156e+01, -4.080666198730469e+01, -5.061822891235352e+01, -5.061822891235352e+01, -5.061822891235352e+01, -5.061822891235352e+01, -5.061822891235352e+01, -5.137747192382812e+01, -5.137747192382812e+01, -6.731280517578125e+01, -6.731280517578125e+01, -6.731280517578125e+01, -6.731280517578125e+01, -6.731280517578125e+01, -6.731280517578125e+01, -7.488186645507812e+01, -7.998116302490234e+01, -8.011129760742188e+01, -8.011129760742188e+01, -8.011129760742188e+01, -8.060960388183594e+01, -8.154897308349609e+01, -8.154897308349609e+01, -8.293428802490234e+01, -8.293428802490234e+01, -8.427665710449219e+01, -1.065865084838867e+02, -1.444390716552734e+02, -1.560597381591797e+02, -1.629378161621094e+02, -1.815771453857422e+02, -2.015932312011719e+02, -2.337653823852539e+02, -2.780852978515625e+02, -3.319132263183594e+02, -3.800301879882812e+02, -4.041914978027344e+02, -4.44076904296875e+02, -4.592756066894531e+02, -4.819582214355469e+02, -5.486697705078125e+02, -5.685766796875e+02, -5.91193359375e+02, -6.648633496093749e+02, -7.231717883300781e+02, -7.82455322265625e+02, -8.491174145507813e+02, -8.757583618164062e+02, -8.984832763671875e+02, -9.284170532226562e+02, -9.539757019042969e+02, -9.812755737304688e+02, -1.01924755859375e+03, -1.03559651093199e+03, -1.072251586914062e+03, -1.07759326171875e+03, -1.1040556640625e+03, -1.152515014648438e+03, -1.187541520996094e+03, -1.197981811523438e+03, -1.211017578125e+03, -1.211697631835938e+03, -1.217214599609375e+03, -1.22026953125e+03, -1.221614624023438e+03, -1.222758056640625e+03, -1.225348266601562e+03, -1.225716918945312e+03, -1.2295361328125e+03, -1.232991943359375e+03, -1.232991943359375e+03, -1.232991943359375e+03, -1.232991943359375e+03, -1.232991943359375e+03, -1.233748413085938e+03, -1.238086059570312e+03, -1.241227905273438e+03, -1.241838623046875e+03] checkResultsAccordingToASHRAECoolingOrTempMin.upperLimit=[-1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03, -1.052e+03] checkResultsAccordingToASHRAEHeatingOrTempMax.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00] checkResultsAccordingToASHRAECoolingOrTempMin.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00] -Room.thermRoom.T=[2.941499938964844e+02, 2.931659135816557e+02, 2.931499768066406e+02, 2.936809436035156e+02, 2.971748303222656e+02, 2.931499664306641e+02, 2.9314990234375e+02, 2.93150224609375e+02, 2.931499633789062e+02, 2.958617364501953e+02, 2.9447138671875e+02, 2.931499633789062e+02, 2.9714693359375e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.985337127685547e+02, 2.951478259277344e+02, 2.931499633789062e+02, 2.951883166503906e+02, 2.931501159667969e+02, 2.934441345214844e+02, 2.938629187011718e+02, 2.931499890136719e+02, 2.931499920654297e+02, 3.001500158691406e+02, 2.931499938964844e+02, 2.933947668457031e+02, 2.982758172607422e+02, 2.931499633789062e+02, 2.952071923828125e+02, 2.96891943359375e+02, 2.950856597900391e+02, 2.997858630371094e+02, 2.943235101318359e+02, 2.953516967773438e+02, 2.958816040039063e+02, 2.931501159667969e+02, 2.967934320068359e+02, 2.9974466796875e+02, 2.940069311523437e+02, 2.976877363472612e+02, 2.965341632080078e+02, 2.95214375e+02, 2.989847821044922e+02, 2.931500036621094e+02, 2.982224182128906e+02, 2.947366076660156e+02, 2.979754266357422e+02, 2.979740783691406e+02, 3.001499633789062e+02, 3.001500244140625e+02, 2.945287567138672e+02, 3.001499633789062e+02, 3.001501684570313e+02, 2.990889611816406e+02, 3.001499633789062e+02, 3.001501159667969e+02, 3.001499633789062e+02, 3.001499560546875e+02, 2.995855364990234e+02, 2.994310175334936e+02, 3.001498284912109e+02, 2.98808701171875e+02, 3.001499633789062e+02, 3.001499609375e+02, 2.987652526855469e+02, 3.001499633789062e+02, 3.001500323486328e+02, 2.988126501464844e+02, 3.001499633789062e+02, 3.001500854492188e+02, 2.967174493408203e+02, 2.988510815429688e+02, 3.001501751708984e+02, 2.955744995117187e+02, 2.948517913818359e+02, 3.001500655464504e+02, 2.931499938964844e+02, 2.987989880371094e+02, 2.984405444335937e+02, 2.974041809082031e+02, 3.001498522949219e+02, 2.954923095703125e+02, 2.931499633789062e+02, 2.979279809570313e+02, 2.935072296142578e+02, 2.954479382324218e+02, 2.933150537109375e+02, 2.931499633789062e+02, 2.965256732177734e+02, 3.00150146484375e+02, 2.94004281616211e+02, 2.931499633789062e+02, 2.931500549316406e+02, 2.931499731445313e+02, 2.931499633789062e+02, 2.945929333496094e+02, 2.931499328613281e+02, 2.976631433105469e+02, 2.931502819200502e+02, 2.931499328613281e+02] -Room.starRoom.T=[2.896538391113281e+02, 2.944445791608123e+02, 2.920105493164062e+02, 2.943804473876953e+02, 2.982565747070312e+02, 2.925338195800781e+02, 2.936871313476562e+02, 2.928272784423828e+02, 2.91660751953125e+02, 2.966034680175781e+02, 2.953834167480469e+02, 2.920425823974609e+02, 2.976229113769531e+02, 2.909449084472656e+02, 2.929116247558593e+02, 2.9884736328125e+02, 2.957006274414063e+02, 2.930498199462891e+02, 2.960132055664063e+02, 2.928470397949219e+02, 2.940615844726562e+02, 2.94486376953125e+02, 2.923857531738281e+02, 2.933643011474609e+02, 3.009355444335937e+02, 2.934478149414062e+02, 2.938981262207031e+02, 2.98476332397461e+02, 2.918371655273438e+02, 2.955639086914063e+02, 2.973342102050781e+02, 2.955045697021484e+02, 2.999579748535156e+02, 2.947747302246094e+02, 2.956761840820312e+02, 2.959290893554688e+02, 2.93350703125e+02, 2.971106616210938e+02, 2.998842468261719e+02, 2.942063464355469e+02, 2.980033978680443e+02, 2.965328778076172e+02, 2.954142272949219e+02, 2.991838244628906e+02, 2.927270568847656e+02, 2.982919189453125e+02, 2.949794104003906e+02, 2.980955633544922e+02, 2.982501794433594e+02, 3.005182489013672e+02, 3.025406799316406e+02, 2.947382641601562e+02, 3.011087341308594e+02, 3.005249353027344e+02, 2.993809692382812e+02, 3.017931365966797e+02, 3.011397961425781e+02, 3.006276293945313e+02, 3.019528637695312e+02, 2.997040905761719e+02, 2.996928294599463e+02, 3.019894244384766e+02, 2.989731811523437e+02, 3.006318872070312e+02, 3.021107019042969e+02, 2.989792419433594e+02, 3.013164221191406e+02, 3.046588342285156e+02, 2.991683764648437e+02, 3.011091882324219e+02, 3.033326416015625e+02, 2.971655169677734e+02, 2.990832678222656e+02, 3.019201544189453e+02, 2.960502758789062e+02, 2.954465942382812e+02, 3.00633824887483e+02, 2.924177490234375e+02, 2.989530200195313e+02, 2.989734197998047e+02, 2.979441772460938e+02, 3.021537841796875e+02, 2.960540380859375e+02, 2.932911566162109e+02, 2.987484375e+02, 2.941265502929688e+02, 2.9608556640625e+02, 2.94047568359375e+02, 2.927403283691406e+02, 2.970526007080078e+02, 3.015266357421875e+02, 2.942855578613281e+02, 2.916614306640625e+02, 2.931900170898438e+02, 2.919000817871094e+02, 2.925326690673828e+02, 2.953679260253906e+02, 2.933702502441406e+02, 2.982443078613281e+02, 2.93778340360544e+02, 2.935010070800781e+02] -TransmittedSolarRadiation_room=[0e+00, 1.131357878188056e+01, 2.616032287597656e+01, 4.389755249023438e+01, 5.918997589111328e+01, 7.433226013183594e+01, 8.55634765625e+01, 1.003815817260742e+02, 1.156251068115234e+02, 1.345747680664062e+02, 1.428022979736328e+02, 1.544995422363281e+02, 1.705415802001953e+02, 1.774776965332031e+02, 1.932693786621094e+02, 2.075354141235352e+02, 2.213106439208984e+02, 2.364075164794922e+02, 2.496891796875e+02, 2.609881878662109e+02, 2.750860900878906e+02, 2.882615625e+02, 2.998650329589844e+02, 3.089280090332031e+02, 3.219337121582032e+02, 3.322992858886719e+02, 3.40449462890625e+02, 3.50368775024414e+02, 3.563360595703125e+02, 3.649216918945312e+02, 3.726051940917969e+02, 3.801172790527344e+02, 3.884649353027344e+02, 3.934234515380859e+02, 4.005405883789062e+02, 4.054566345214844e+02, 4.083215002441406e+02, 4.135363159179688e+02, 4.187095031738281e+02, 4.223215216064453e+02, 4.269236145019531e+02, 4.303575366210937e+02, 4.334196472167969e+02, 4.371664733886719e+02, 4.396257592773438e+02, 4.42376953125e+02, 4.452728881835938e+02, 4.481314825439453e+02, 4.508436889648438e+02, 4.544383544921875e+02, 4.576483764648438e+02, 4.600769653320312e+02, 4.63466796875e+02, 4.661375317382813e+02, 4.697521057128906e+02, 4.742662078857422e+02, 4.779020739746094e+02, 4.829014282226562e+02, 4.881345446777344e+02, 4.913909606933594e+02, 4.974130859375e+02, 5.027961676025391e+02, 5.070654663085937e+02, 5.151385498046875e+02, 5.2228076171875e+02, 5.284789428710938e+02, 5.384879760742188e+02, 5.474911108398437e+02, 5.567903442382812e+02, 5.671703491210938e+02, 5.774997192382813e+02, 5.861029663085938e+02, 5.974598388671875e+02, 6.097966198730469e+02, 6.213002319335938e+02, 6.347160034179688e+02, 6.481355829653533e+02, 6.602178955078125e+02, 6.7308890625e+02, 6.872265026855468e+02, 7.052398071289062e+02, 7.2256578125e+02, 7.355916967773437e+02, 7.4964599609375e+02, 7.630169287109375e+02, 7.775470581054688e+02, 7.9256982421875e+02, 8.023106408691406e+02, 8.157586059570312e+02, 8.338795776367188e+02, 8.4708740234375e+02, 8.581253051757812e+02, 8.68455078125e+02, 8.816246301269531e+02, 8.932081298828125e+02, 9.10375244140625e+02, 9.255230517578125e+02, 9.402887573242188e+02, 9.56766943359375e+02, 9.704155598661325e+02, 9.888818969726562e+02] +Room.thermRoom.T=[2.941499938964844e+02, 2.931671259781698e+02, 2.931499768066406e+02, 2.936820928955078e+02, 2.971740295410156e+02, 2.931499664306641e+02, 2.9314990234375e+02, 2.931502740478516e+02, 2.931499633789062e+02, 2.958629583740234e+02, 2.944688781738281e+02, 2.931499633789062e+02, 2.971478686523437e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.985351837158203e+02, 2.951446752929688e+02, 2.931499633789062e+02, 2.95190126953125e+02, 2.931501159667969e+02, 2.9344521484375e+02, 2.938635668945312e+02, 2.931499890136719e+02, 2.931499920654297e+02, 3.001500158691406e+02, 2.931499938964844e+02, 2.933955297851563e+02, 2.982731604003906e+02, 2.931499633789062e+02, 2.952079058837891e+02, 2.968902221679688e+02, 2.950864672851562e+02, 2.997865356445312e+02, 2.943214270019531e+02, 2.953520935058594e+02, 2.958816802978516e+02, 2.931501159667969e+02, 2.967937762451172e+02, 2.997449291992187e+02, 2.940062561035156e+02, 2.976882551460893e+02, 2.96534193725586e+02, 2.952139111328125e+02, 2.989853594970703e+02, 2.931499938964844e+02, 2.982223114013672e+02, 2.947373364257812e+02, 2.979743902587891e+02, 2.979745336914062e+02, 3.001499633789062e+02, 3.001500244140625e+02, 2.945293841552734e+02, 3.001499633789062e+02, 3.001499505615234e+02, 2.990896325683594e+02, 3.001499633789062e+02, 3.001501159667969e+02, 3.001499633789062e+02, 3.001499560546875e+02, 2.995845379638672e+02, 2.994314447795873e+02, 3.001498284912109e+02, 2.988082202148437e+02, 3.001499633789062e+02, 3.001499609375e+02, 2.987651458740235e+02, 3.001499633789062e+02, 3.001500323486328e+02, 2.988134118652344e+02, 3.001499633789062e+02, 3.001500854492188e+02, 2.967184100341797e+02, 2.988516003417969e+02, 3.001501751708984e+02, 2.955754296875e+02, 2.948530426025391e+02, 3.001500225964011e+02, 2.931499938964844e+02, 2.988000817871094e+02, 2.984372882080078e+02, 2.9740498046875e+02, 3.001498522949219e+02, 2.95491279296875e+02, 2.931499633789062e+02, 2.979270886230469e+02, 2.935084106445312e+02, 2.954490393066406e+02, 2.933142993164063e+02, 2.931499633789062e+02, 2.965267883300781e+02, 3.001501525878906e+02, 2.940048620605469e+02, 2.931499633789062e+02, 2.931500549316406e+02, 2.931499731445313e+02, 2.931499633789062e+02, 2.945896362304687e+02, 2.931499328613281e+02, 2.976644360351563e+02, 2.931502819200502e+02, 2.931499328613281e+02] +Room.starRoom.T=[2.896538391113281e+02, 2.944448224104663e+02, 2.920106579589844e+02, 2.943808642578125e+02, 2.98255908203125e+02, 2.925339996337891e+02, 2.936872338867187e+02, 2.928274475097656e+02, 2.916608203125e+02, 2.966038647460937e+02, 2.953825988769531e+02, 2.920425823974609e+02, 2.976231335449219e+02, 2.909449084472656e+02, 2.929116857910156e+02, 2.988474060058594e+02, 2.956996765136719e+02, 2.930499035644531e+02, 2.960135339355469e+02, 2.928470703125e+02, 2.940621643066406e+02, 2.944865673828125e+02, 2.923859313964844e+02, 2.933643603515625e+02, 3.009351257324219e+02, 2.934482116699219e+02, 2.938984008789063e+02, 2.984751458740234e+02, 2.918371655273438e+02, 2.95563950805664e+02, 2.973335815429688e+02, 2.955048388671875e+02, 2.999581909179688e+02, 2.947740576171875e+02, 2.95676259765625e+02, 2.959288879394531e+02, 2.933507312011719e+02, 2.971106353759766e+02, 2.998842053222656e+02, 2.942064105224609e+02, 2.980035171991051e+02, 2.965326342773437e+02, 2.954141821289062e+02, 2.99183960571289e+02, 2.927271179199219e+02, 2.982916381835938e+02, 2.949798413085937e+02, 2.980950854492187e+02, 2.982504943847656e+02, 3.005182489013672e+02, 3.025407104492188e+02, 2.947387829589844e+02, 3.011086730957031e+02, 3.00524771118164e+02, 2.993812707519531e+02, 3.017931701660156e+02, 3.011397961425781e+02, 3.006276293945313e+02, 3.019528259277344e+02, 2.997039099121094e+02, 2.99693012565415e+02, 3.019893939208985e+02, 2.9897318359375e+02, 3.006318524169922e+02, 3.021106433105469e+02, 2.989792938232422e+02, 3.013164221191406e+02, 3.046588342285156e+02, 2.991687426757812e+02, 3.0110921875e+02, 3.033325500488281e+02, 2.971660852050781e+02, 2.990832934570312e+02, 3.019200360107422e+02, 2.96050703125e+02, 2.954473724365234e+02, 3.006335142129641e+02, 2.92417964477539e+02, 2.989531567382812e+02, 2.989725830078125e+02, 2.979446472167969e+02, 3.021536676025391e+02, 2.960541418457031e+02, 2.932912786865234e+02, 2.9874763671875e+02, 2.94127294921875e+02, 2.960860827636719e+02, 2.940474072265625e+02, 2.927404809570313e+02, 2.970529766845703e+02, 3.015259704589844e+02, 2.942858325195313e+02, 2.916614538574219e+02, 2.931900170898438e+02, 2.919000817871094e+02, 2.925326690673828e+02, 2.953669470214843e+02, 2.933703723144531e+02, 2.98244619140625e+02, 2.937783321185703e+02, 2.93501220703125e+02] +TransmittedSolarRadiation_room=[0e+00, 1.131356820313706e+01, 2.616028854370117e+01, 4.389741516113281e+01, 5.918988052368164e+01, 7.433231353759766e+01, 8.556328582763672e+01, 1.003813182067871e+02, 1.156249694824219e+02, 1.345746459960938e+02, 1.428020690917969e+02, 1.544992828369141e+02, 1.705413055419922e+02, 1.774772998046875e+02, 1.932690124511719e+02, 2.075349365234375e+02, 2.213101788330078e+02, 2.364071197509766e+02, 2.496889202880859e+02, 2.609879992675781e+02, 2.750858764648438e+02, 2.882614099121094e+02, 2.998649108886719e+02, 3.089278259277344e+02, 3.219333764648438e+02, 3.322989501953125e+02, 3.404490661621094e+02, 3.503683782958984e+02, 3.563356628417969e+02, 3.649213256835938e+02, 3.726048156738281e+02, 3.801168823242188e+02, 3.884645385742188e+02, 3.934229711914062e+02, 4.005401611328125e+02, 4.054561462402344e+02, 4.083210095214844e+02, 4.135357666015625e+02, 4.187089233398438e+02, 4.223208807373047e+02, 4.269229431152344e+02, 4.303568957519531e+02, 4.334190063476562e+02, 4.371658325195312e+02, 4.396251086425781e+02, 4.423764038085938e+02, 4.452722778320312e+02, 4.481308923339844e+02, 4.508431396484375e+02, 4.544378356933594e+02, 4.576478881835938e+02, 4.600764770507812e+02, 4.634662780761719e+02, 4.661370434570313e+02, 4.697515258789062e+02, 4.742658081054688e+02, 4.779016979980469e+02, 4.829009704589844e+02, 4.881339038085937e+02, 4.913903503417969e+02, 4.9741259765625e+02, 5.0279572265625e+02, 5.070650695800781e+02, 5.151380004882812e+02, 5.222803344726562e+02, 5.284781494140625e+02, 5.384872436523438e+02, 5.474903173828125e+02, 5.56789794921875e+02, 5.671701049804688e+02, 5.774993530273438e+02, 5.861027221679688e+02, 5.974594116210938e+02, 6.097961926269531e+02, 6.212996826171875e+02, 6.347155151367188e+02, 6.481351310706063e+02, 6.602174072265625e+02, 6.7308841796875e+02, 6.872259533691406e+02, 7.05239501953125e+02, 7.225654760742187e+02, 7.355913305664062e+02, 7.496456909179688e+02, 7.630166528320312e+02, 7.775468139648438e+02, 7.925696411132812e+02, 8.023104577636718e+02, 8.157584838867188e+02, 8.338795166015625e+02, 8.470872192382812e+02, 8.58125e+02, 8.684547729492188e+02, 8.816243249511718e+02, 8.932077026367188e+02, 9.103748168945312e+02, 9.255225634765625e+02, 9.402879638671875e+02, 9.567659936523437e+02, 9.704146443387888e+02, 9.888810424804688e+02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case900.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case900.txt index 3e8e13f7dc..ee181ec929 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case900.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case900.txt @@ -1,20 +1,20 @@ -last-generated=2021-05-25 +last-generated=2022-07-06 statistics-simulation= { "linear": "0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0", "nonlinear": "13", - "number of continuous time states": "23", + "number of continuous time states": "25", "numerical Jacobians": "0" } time=[0e+00, 3.15396e+07] checkResultsAccordingToASHRAEHeatingOrTempMax.lowerLimit=[1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03, 1.17e+03] -AnnualHeatingLoad=[0e+00, 1.591378326416016e+02, 1.9440025390625e+02, 1.973946838378906e+02, 2.184739379882812e+02, 2.347775299072266e+02, 3.433570861816406e+02, 3.485539936071463e+02, 3.71370576171875e+02, 3.976520385742188e+02, 5.141412353515625e+02, 5.700336511230469e+02, 5.763576049804688e+02, 6.489047912597656e+02, 6.869116821289062e+02, 7.27682373046875e+02, 7.294406127929688e+02, 7.576296997070312e+02, 8.141908569335938e+02, 8.320536499023438e+02, 8.375370483398438e+02, 8.450923461914062e+02, 8.587893725585938e+02, 8.901051635742188e+02, 8.925127563476562e+02, 8.925127563476562e+02, 9.390480346679688e+02, 9.41110595703125e+02, 9.5633939453125e+02, 1.000269287109375e+03, 1.000269287109375e+03, 1.001314392089844e+03, 1.001314392089844e+03, 1.01465966796875e+03, 1.021064514160156e+03, 1.032402709960938e+03, 1.048083984375e+03, 1.058261108398438e+03, 1.058261108398438e+03, 1.058261108398438e+03, 1.058261108398438e+03, 1.0583017578125e+03, 1.0583017578125e+03, 1.0583017578125e+03, 1.067767548828125e+03, 1.08309228515625e+03, 1.08309228515625e+03, 1.08309228515625e+03, 1.08309228515625e+03, 1.08309228515625e+03, 1.08309228515625e+03, 1.08309228515625e+03, 1.08309228515625e+03, 1.08309228515625e+03, 1.08309228515625e+03, 1.08309228515625e+03, 1.08309228515625e+03, 1.08309228515625e+03, 1.08309228515625e+03, 1.08309228515625e+03, 1.08309228515625e+03, 1.08309228515625e+03, 1.08309228515625e+03, 1.08309228515625e+03, 1.08309228515625e+03, 1.08309228515625e+03, 1.08309228515625e+03, 1.08309228515625e+03, 1.08309228515625e+03, 1.08309228515625e+03, 1.08309228515625e+03, 1.08309228515625e+03, 1.084203002929688e+03, 1.084203002929688e+03, 1.084879150390625e+03, 1.084879150390625e+03, 1.087760009765625e+03, 1.088506943359375e+03, 1.094040405273438e+03, 1.094040405273438e+03, 1.094040405273438e+03, 1.094040405273438e+03, 1.094040405273438e+03, 1.120898315429688e+03, 1.146674194335938e+03, 1.153978271484375e+03, 1.155166259765625e+03, 1.185275390625e+03, 1.206002563476562e+03, 1.20791162109375e+03, 1.227208984375e+03, 1.246582763671875e+03, 1.282699599609375e+03, 1.322635986328125e+03, 1.42025279296875e+03, 1.443989501953125e+03, 1.485556274414062e+03, 1.491406616210938e+03, 1.494841186523438e+03, 1.499312255859375e+03, 1.511047973632812e+03] +AnnualHeatingLoad=[0e+00, 1.591354827880859e+02, 1.943959344482422e+02, 1.97388671875e+02, 2.184651489257812e+02, 2.347662261962891e+02, 3.433423156738281e+02, 3.485360845735443e+02, 3.713495642089844e+02, 3.976278686523438e+02, 5.141129760742188e+02, 5.700021313476562e+02, 5.763243408203125e+02, 6.488693298339844e+02, 6.868751220703125e+02, 7.27644287109375e+02, 7.29400634765625e+02, 7.575864868164062e+02, 8.14145263671875e+02, 8.320055541992188e+02, 8.374881591796875e+02, 8.450403442382812e+02, 8.587334228515625e+02, 8.900465698242188e+02, 8.924532470703125e+02, 8.924532470703125e+02, 9.389861450195312e+02, 9.410471801757812e+02, 9.562725610351563e+02, 1.000202331542969e+03, 1.000202331542969e+03, 1.001246459960938e+03, 1.001246459960938e+03, 1.014589965820312e+03, 1.020994079589844e+03, 1.032331909179688e+03, 1.048011962890625e+03, 1.0581884765625e+03, 1.0581884765625e+03, 1.0581884765625e+03, 1.0581884765625e+03, 1.058228637695312e+03, 1.058228637695312e+03, 1.058228637695312e+03, 1.067692514648438e+03, 1.08301708984375e+03, 1.08301708984375e+03, 1.08301708984375e+03, 1.08301708984375e+03, 1.08301708984375e+03, 1.08301708984375e+03, 1.08301708984375e+03, 1.08301708984375e+03, 1.08301708984375e+03, 1.08301708984375e+03, 1.08301708984375e+03, 1.08301708984375e+03, 1.08301708984375e+03, 1.08301708984375e+03, 1.08301708984375e+03, 1.08301708984375e+03, 1.08301708984375e+03, 1.08301708984375e+03, 1.08301708984375e+03, 1.08301708984375e+03, 1.08301708984375e+03, 1.08301708984375e+03, 1.08301708984375e+03, 1.08301708984375e+03, 1.08301708984375e+03, 1.08301708984375e+03, 1.08301708984375e+03, 1.084126708984375e+03, 1.084126708984375e+03, 1.084801879882812e+03, 1.084801879882812e+03, 1.08768115234375e+03, 1.088427116699219e+03, 1.093958740234375e+03, 1.093958740234375e+03, 1.093958740234375e+03, 1.093958740234375e+03, 1.093958740234375e+03, 1.1208134765625e+03, 1.14658642578125e+03, 1.153889038085938e+03, 1.155075927734375e+03, 1.185181518554688e+03, 1.205907348632812e+03, 1.207814453125e+03, 1.227107788085938e+03, 1.246478149414062e+03, 1.282591689453125e+03, 1.322525512695312e+03, 1.420140122070313e+03, 1.443872924804688e+03, 1.485438110351562e+03, 1.4912861328125e+03, 1.49471826171875e+03, 1.499187255859375e+03, 1.510919189453125e+03] checkResultsAccordingToASHRAEHeatingOrTempMax.upperLimit=[2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03, 2.041e+03] checkResultsAccordingToASHRAECoolingOrTempMin.lowerLimit=[-3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03, -3.415e+03] -AnnualCoolingLoad=[0e+00, -9.857014417648315e-01, -1.789130783081055e+01, -4.836938095092773e+01, -7.166316314697265e+01, -8.727519989013672e+01, -9.054016876220703e+01, -1.244821243286133e+02, -1.381351928710938e+02, -1.548545074462891e+02, -1.624746856689453e+02, -1.688543395996094e+02, -1.894577026367188e+02, -1.894577026367188e+02, -1.986943817138672e+02, -2.062903427124023e+02, -2.268353424072266e+02, -2.391437225341797e+02, -2.466938781738281e+02, -2.505662384033203e+02, -2.73159912109375e+02, -2.80988525390625e+02, -2.959428100585938e+02, -2.966163024902344e+02, -3.3129203125e+02, -3.651371459960938e+02, -3.652096862792969e+02, -3.722472130111501e+02, -3.765444946289062e+02, -3.767651977539062e+02, -3.895803527832031e+02, -3.940068054199219e+02, -4.332089965820313e+02, -4.350252990722656e+02, -4.364345703125e+02, -4.364345703125e+02, -4.364345703125e+02, -4.386680603027344e+02, -4.594477819824219e+02, -4.712919006347656e+02, -4.772627868652344e+02, -4.772627868652344e+02, -4.780501098632812e+02, -4.859589538574219e+02, -4.888988037109375e+02, -4.889921569824219e+02, -4.956744689941406e+02, -4.959971313476562e+02, -5.010590515136719e+02, -5.333970141601562e+02, -5.801449584960938e+02, -5.96455322265625e+02, -6.088048193359375e+02, -6.351437170410156e+02, -6.648171997070312e+02, -7.0872587890625e+02, -7.646689331054688e+02, -8.330895336914062e+02, -8.95103388671875e+02, -9.296680297851562e+02, -9.86194091796875e+02, -1.011592106933594e+03, -1.048115356445312e+03, -1.137971166992188e+03, -1.173346767578125e+03, -1.215115356445312e+03, -1.31741564453125e+03, -1.399779621582031e+03, -1.488722045898438e+03, -1.584743044433594e+03, -1.63597822265625e+03, -1.682470947265625e+03, -1.73912080078125e+03, -1.795096293945312e+03, -1.850475952148438e+03, -1.922833618164062e+03, -1.967798505859375e+03, -2.036950561523438e+03, -2.059167275390625e+03, -2.122013427734375e+03, -2.21859814453125e+03, -2.295273623046875e+03, -2.33785595703125e+03, -2.37371337890625e+03, -2.38265380859375e+03, -2.41305224609375e+03, -2.43917431640625e+03, -2.451191650390625e+03, -2.463177978515625e+03, -2.494592041015625e+03, -2.498404931640625e+03, -2.51506201171875e+03, -2.53581201171875e+03, -2.540602294921875e+03, -2.54184033203125e+03, -2.55084033203125e+03, -2.5552919921875e+03, -2.57116064453125e+03, -2.59880310546875e+03, -2.623923095703125e+03, -2.64516845703125e+03] +AnnualCoolingLoad=[0e+00, -9.84591007232666e-01, -1.788559150695801e+01, -4.835932540893555e+01, -7.165035156250001e+01, -8.725838470458984e+01, -9.052193450927734e+01, -1.244589920043945e+02, -1.381088562011719e+02, -1.548239593505859e+02, -1.624427947998047e+02, -1.688193206787109e+02, -1.894178314208984e+02, -1.894178314208984e+02, -1.986500091552734e+02, -2.062434188842773e+02, -2.267846984863281e+02, -2.390906219482422e+02, -2.466385498046875e+02, -2.505081329345703e+02, -2.730978393554688e+02, -2.809246520996094e+02, -2.958742370605469e+02, -2.965466918945312e+02, -3.312162475585938e+02, -3.650603332519531e+02, -3.651323547363281e+02, -3.721665726823558e+02, -3.7646337890625e+02, -3.766832885742188e+02, -3.894958801269531e+02, -3.939199523925781e+02, -4.3311912109375e+02, -4.34934814453125e+02, -4.363429260253906e+02, -4.363429260253906e+02, -4.363429260253906e+02, -4.385749816894531e+02, -4.593525061035156e+02, -4.711954650878906e+02, -4.771646423339844e+02, -4.771646423339844e+02, -4.779510192871094e+02, -4.858576354980469e+02, -4.887973327636719e+02, -4.888900756835938e+02, -4.955706787109375e+02, -4.95892578125e+02, -5.009532470703125e+02, -5.332901416015625e+02, -5.800385131835938e+02, -5.963484497070312e+02, -6.086966040039063e+02, -6.350342810058594e+02, -6.647070922851562e+02, -7.086158874511718e+02, -7.645577905273437e+02, -8.329776892089844e+02, -8.949918774414062e+02, -9.295560302734375e+02, -9.860830688476562e+02, -1.01148033203125e+03, -1.048005249023438e+03, -1.13786142578125e+03, -1.173235439453125e+03, -1.215003295898438e+03, -1.317307060546875e+03, -1.399670034179687e+03, -1.488612915039062e+03, -1.584636010742187e+03, -1.635871166992187e+03, -1.682363891601562e+03, -1.7390109375e+03, -1.794984599609375e+03, -1.850364990234375e+03, -1.9227236328125e+03, -1.967685102539062e+03, -2.036836669921875e+03, -2.059050048828125e+03, -2.121895263671875e+03, -2.218478271484375e+03, -2.2951527734375e+03, -2.337733642578125e+03, -2.37358935546875e+03, -2.38252734375e+03, -2.4129208984375e+03, -2.439039794921875e+03, -2.4510556640625e+03, -2.46303857421875e+03, -2.494446533203125e+03, -2.49825703125e+03, -2.5149111328125e+03, -2.53565869140625e+03, -2.540446533203125e+03, -2.541683349609375e+03, -2.550679443359375e+03, -2.55512744140625e+03, -2.570991455078125e+03, -2.598629521484375e+03, -2.623746337890625e+03, -2.644987060546875e+03] checkResultsAccordingToASHRAECoolingOrTempMin.upperLimit=[-2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03, -2.132e+03] checkResultsAccordingToASHRAEHeatingOrTempMax.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00] checkResultsAccordingToASHRAECoolingOrTempMin.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00] -Room.thermRoom.T=[2.941499938964844e+02, 2.96712578125e+02, 2.931499633789062e+02, 2.959261004638672e+02, 3.001500354003906e+02, 2.931499908447266e+02, 2.959132922363281e+02, 2.931502639701044e+02, 2.931499328613281e+02, 2.986942578125e+02, 2.965931457519531e+02, 2.931499328613281e+02, 2.996536279296875e+02, 2.931499938964844e+02, 2.939678662109375e+02, 3.001498382568359e+02, 2.970837353515625e+02, 2.943706805419922e+02, 2.990589331054687e+02, 2.932238839759986e+02, 2.959572021484375e+02, 2.966481341552735e+02, 2.931499633789062e+02, 2.949160595703125e+02, 3.001500158691406e+02, 2.945911560058594e+02, 2.956291625976563e+02, 3.00150133968305e+02, 2.931499633789062e+02, 2.973352429199219e+02, 2.988020263671875e+02, 2.965693188476562e+02, 3.001499340820312e+02, 2.953110369873047e+02, 2.967659704589844e+02, 2.972610748291016e+02, 2.932965634691482e+02, 2.977907739257813e+02, 3.001499633789062e+02, 2.946796166992187e+02, 2.984101173217619e+02, 2.977666162109375e+02, 2.961885302734375e+02, 2.994716156005859e+02, 2.931500036621094e+02, 2.989505462646484e+02, 2.954104418945312e+02, 2.990647827148438e+02, 2.983725830078125e+02, 3.001499633789062e+02, 3.001500549316406e+02, 2.949523596191406e+02, 3.001499633789062e+02, 3.001500958251953e+02, 2.993324572753907e+02, 3.001499328613281e+02, 3.0015013671875e+02, 3.001499633789062e+02, 3.001499487304687e+02, 2.998237200927734e+02, 2.998402088784586e+02, 3.001498284912109e+02, 2.990920739746094e+02, 3.001499633789062e+02, 3.001499609375e+02, 2.992161499023438e+02, 3.001499633789062e+02, 3.001500628662109e+02, 2.992597863769531e+02, 3.001499328613281e+02, 3.001501159667969e+02, 2.976808752441406e+02, 3.001499328613281e+02, 3.001502056884765e+02, 2.970071472167969e+02, 2.96517578125e+02, 3.001502551269531e+02, 2.931499938964844e+02, 3.001498815917969e+02, 2.999698551722935e+02, 2.990163818359375e+02, 3.001498272705078e+02, 2.969193811035156e+02, 2.950228521728516e+02, 3.001500109863281e+02, 2.951168914794922e+02, 2.975773327636718e+02, 2.943583605957031e+02, 2.933479248046875e+02, 2.989358862304687e+02, 3.001501770019531e+02, 2.960047430419922e+02, 2.931499633789062e+02, 2.935780596923828e+02, 2.931499426269531e+02, 2.938522155761719e+02, 2.964867932128906e+02, 2.945574847412109e+02, 3.001499194335938e+02, 2.941554766845703e+02, 2.951184387207031e+02] -Room.starRoom.T=[2.896538391113281e+02, 2.982431945800781e+02, 2.929595153808594e+02, 2.967192950439453e+02, 3.020245727539062e+02, 2.937599792480469e+02, 2.968704040527344e+02, 2.936063056911069e+02, 2.928271423339844e+02, 2.9955953125e+02, 2.9768544921875e+02, 2.929456646728515e+02, 3.00233076171875e+02, 2.913651629638672e+02, 2.948057067871094e+02, 3.012398284912109e+02, 2.977526257324218e+02, 2.951284539794922e+02, 3.000828259277343e+02, 2.937875800862971e+02, 2.966757446289063e+02, 2.974110296630859e+02, 2.932242456054688e+02, 2.953449627685547e+02, 3.03116904296875e+02, 2.950220336914062e+02, 2.962178430175781e+02, 3.009520588935176e+02, 2.922526513671875e+02, 2.977694482421875e+02, 2.993469848632812e+02, 2.970417950439453e+02, 3.007577404785156e+02, 2.958275366210938e+02, 2.97140595703125e+02, 2.973460388183594e+02, 2.936009099136982e+02, 2.981427160644531e+02, 3.005974951171875e+02, 2.949026739501953e+02, 2.987503118502958e+02, 2.977945758056641e+02, 2.964184899902344e+02, 2.996863250732422e+02, 2.929713952636719e+02, 2.990401092529297e+02, 2.956757299804688e+02, 2.992258203125e+02, 2.986620141601563e+02, 3.007571417236328e+02, 3.029194030761719e+02, 2.951754174804688e+02, 3.014848754882813e+02, 3.008750189208984e+02, 2.996325634765625e+02, 3.022234985351562e+02, 3.013460815429688e+02, 3.007983282470703e+02, 3.024940966796875e+02, 2.999541320800781e+02, 3.001155352208656e+02, 3.028856890869141e+02, 2.992656994628906e+02, 3.010146264648437e+02, 3.034333959960937e+02, 2.994443420410156e+02, 3.018678308105469e+02, 3.059355084228516e+02, 2.996310534667969e+02, 3.016864172363281e+02, 3.048793701171875e+02, 2.98164521484375e+02, 3.007128100585937e+02, 3.035020739746094e+02, 2.975367724609375e+02, 2.971782073974609e+02, 3.022046166992188e+02, 2.929804028320312e+02, 3.010011584472657e+02, 3.005923811968635e+02, 2.99617578125e+02, 3.046322668457031e+02, 2.975503979492187e+02, 2.957434680175782e+02, 3.022103198242187e+02, 2.957957458496094e+02, 2.983007788085937e+02, 2.951814678955078e+02, 2.941262658691406e+02, 2.99558833618164e+02, 3.038285400390625e+02, 2.963558251953125e+02, 2.924381567382812e+02, 2.942529943847656e+02, 2.93194091796875e+02, 2.94617300415039e+02, 2.974055102539062e+02, 2.953712213134766e+02, 3.012271630859375e+02, 2.951500805664062e+02, 2.958997802734375e+02] -TransmittedSolarRadiation_room=[0e+00, 1.130985122680664e+01, 2.616005668640137e+01, 4.389700317382812e+01, 5.91894189453125e+01, 7.433169555664062e+01, 8.556265258789062e+01, 1.003713561363394e+02, 1.156242980957031e+02, 1.345738220214844e+02, 1.428011993408203e+02, 1.544982604980469e+02, 1.705400848388672e+02, 1.774764910888672e+02, 1.932680969238281e+02, 2.075338073730469e+02, 2.213086608886719e+02, 2.364053039550781e+02, 2.496865551757813e+02, 2.609853453823712e+02, 2.750831298828125e+02, 2.882582055664063e+02, 2.998615234375e+02, 3.089244079589844e+02, 3.219298059082032e+02, 3.322951354980469e+02, 3.404452209472656e+02, 3.503641331926177e+02, 3.563311157226562e+02, 3.64916748046875e+02, 3.726000671386719e+02, 3.801121215820312e+02, 3.884596557617188e+02, 3.934182409667969e+02, 4.005354614257812e+02, 4.054514770507812e+02, 4.083158376035876e+02, 4.135309753417969e+02, 4.187041015625e+02, 4.223159674072265e+02, 4.269180297851562e+02, 4.303519519042969e+02, 4.334140319824219e+02, 4.371607666015625e+02, 4.396201037597656e+02, 4.423713989257812e+02, 4.452673034667969e+02, 4.481259283447266e+02, 4.508381652832031e+02, 4.544328308105469e+02, 4.57642822265625e+02, 4.600714416503906e+02, 4.634612731933594e+02, 4.661320794677735e+02, 4.697465209960938e+02, 4.742606201171875e+02, 4.778965502929688e+02, 4.828958129882812e+02, 4.881289599609375e+02, 4.913851623535156e+02, 4.974070129394531e+02, 5.027898071289063e+02, 5.070591491699219e+02, 5.151320190429688e+02, 5.222743530273438e+02, 5.284723510742188e+02, 5.384814453125e+02, 5.474843359375e+02, 5.567838134765625e+02, 5.671633911132812e+02, 5.77492578125e+02, 5.86095703125e+02, 5.974525756835938e+02, 6.097894177246094e+02, 6.212930297851562e+02, 6.347092895507812e+02, 6.481310473632813e+02, 6.602110595703125e+02, 6.730819482421875e+02, 6.872159826454996e+02, 7.052337036132812e+02, 7.225597998046875e+02, 7.355855932617187e+02, 7.496397094726562e+02, 7.630103662109375e+02, 7.775403442382812e+02, 7.925629272460938e+02, 8.023035607910156e+02, 8.1575146484375e+02, 8.338723754882812e+02, 8.470801513671875e+02, 8.581177368164062e+02, 8.684473266601562e+02, 8.816167565917968e+02, 8.932000122070312e+02, 9.103668212890625e+02, 9.255144458007812e+02, 9.402799072265625e+02, 9.567578491210937e+02, 9.704081213378906e+02, 9.888726806640625e+02] +Room.thermRoom.T=[2.941499938964844e+02, 2.967130749511718e+02, 2.931499633789062e+02, 2.959277380371093e+02, 3.001500354003906e+02, 2.931499359130859e+02, 2.959150305175781e+02, 2.931503314244867e+02, 2.931499328613281e+02, 2.986955102539063e+02, 2.965892272949219e+02, 2.931499328613281e+02, 2.996546301269531e+02, 2.931499938964844e+02, 2.939692724609375e+02, 3.001498382568359e+02, 2.970800500488281e+02, 2.943720379638672e+02, 2.990603430175781e+02, 2.932238272759188e+02, 2.959585144042969e+02, 2.966490338134765e+02, 2.931499633789062e+02, 2.949165374755859e+02, 3.001500158691406e+02, 2.945920104980469e+02, 2.956300476074219e+02, 3.001501339126073e+02, 2.931499633789062e+02, 2.973360900878906e+02, 2.987999572753906e+02, 2.965704675292969e+02, 3.001499340820312e+02, 2.953082214355469e+02, 2.967666101074219e+02, 2.972610809326172e+02, 2.932956364232392e+02, 2.977914190673828e+02, 3.001499633789062e+02, 2.946791247558594e+02, 2.984109107787932e+02, 2.977668310546875e+02, 2.961882116699219e+02, 2.994723315429687e+02, 2.931500036621094e+02, 2.989505615234375e+02, 2.954112316894531e+02, 2.990635021972656e+02, 2.983730249023437e+02, 3.001499633789062e+02, 3.001500549316406e+02, 2.949529565429688e+02, 3.001499633789062e+02, 3.001500958251953e+02, 2.993330676269532e+02, 3.001499328613281e+02, 3.0015013671875e+02, 3.001499633789062e+02, 3.001499487304687e+02, 2.998226000976563e+02, 2.998406361245524e+02, 3.001498107910156e+02, 2.990915649414063e+02, 3.001499633789062e+02, 3.001499609375e+02, 2.992160736083985e+02, 3.001499633789062e+02, 3.001500628662109e+02, 2.9926048828125e+02, 3.001499328613281e+02, 3.001501159667969e+02, 2.976818475341797e+02, 3.001499328613281e+02, 3.001502056884765e+02, 2.970081774902344e+02, 2.965188598632812e+02, 3.001502551269531e+02, 2.931499938964844e+02, 3.001498815917969e+02, 2.999668815325493e+02, 2.990171203613281e+02, 3.001498272705078e+02, 2.969179760742188e+02, 2.950239733886719e+02, 3.001500256347656e+02, 2.951181732177735e+02, 2.975785864257812e+02, 2.943565460205078e+02, 2.933494921875e+02, 2.98937080078125e+02, 3.001501770019531e+02, 2.960054150390625e+02, 2.931499633789062e+02, 2.935771234130859e+02, 2.931499426269531e+02, 2.938527374267578e+02, 2.964820727539063e+02, 2.945589093017578e+02, 3.001499194335938e+02, 2.941523638916016e+02, 2.951198425292969e+02] +Room.starRoom.T=[2.896538391113281e+02, 2.982429193115235e+02, 2.9295982421875e+02, 2.967201086425781e+02, 3.020240051269531e+02, 2.937606384277344e+02, 2.968710339355468e+02, 2.936065822914568e+02, 2.928273937988281e+02, 2.995598651123047e+02, 2.97684033203125e+02, 2.929458172607422e+02, 3.002332958984375e+02, 2.913651934814453e+02, 2.948064111328125e+02, 3.012395538330078e+02, 2.977516906738281e+02, 2.951290869140625e+02, 3.000827258300781e+02, 2.937878030352118e+02, 2.966764465332031e+02, 2.974115673828125e+02, 2.932246118164063e+02, 2.953451190185547e+02, 3.031167211914063e+02, 2.950228576660156e+02, 2.962181396484375e+02, 3.009516848729662e+02, 2.922527075195313e+02, 2.977695324707031e+02, 2.993464172363281e+02, 2.970423388671875e+02, 3.007577099609375e+02, 2.958265283203125e+02, 2.971408544921875e+02, 2.973456634521484e+02, 2.936008069085971e+02, 2.981429339599609e+02, 3.005974536132812e+02, 2.949029211425781e+02, 2.987506780612333e+02, 2.977944854736328e+02, 2.964185363769531e+02, 2.99686552734375e+02, 2.929714562988281e+02, 2.990399505615234e+02, 2.956762451171875e+02, 2.99225220336914e+02, 2.986622985839844e+02, 3.007570806884765e+02, 3.0291943359375e+02, 2.951758990478515e+02, 3.014848620605469e+02, 3.008749780273437e+02, 2.996328344726563e+02, 3.022234954833984e+02, 3.013460717773438e+02, 3.007982977294922e+02, 3.024941271972656e+02, 2.999538903808594e+02, 3.001156878087563e+02, 3.028857934570312e+02, 2.992656823730469e+02, 3.010145349121094e+02, 3.034333935546875e+02, 2.994444152832031e+02, 3.018677697753906e+02, 3.059355163574219e+02, 2.99631357421875e+02, 3.016865643310547e+02, 3.048793701171875e+02, 2.981650592041016e+02, 3.007126525878906e+02, 3.035020739746094e+02, 2.975372607421875e+02, 2.97178955078125e+02, 3.022044995117187e+02, 2.929807403564453e+02, 3.010011584472657e+02, 3.005922616615455e+02, 2.996179260253906e+02, 3.046321752929687e+02, 2.975503454589844e+02, 2.957439337158203e+02, 3.022097839355469e+02, 2.957965393066406e+02, 2.983013256835937e+02, 2.951809490966797e+02, 2.941271813964844e+02, 2.995591967773437e+02, 3.038281005859375e+02, 2.963561309814453e+02, 2.92438271484375e+02, 2.942528771972656e+02, 2.931942541503906e+02, 2.946171142578125e+02, 2.974038903808594e+02, 2.953719030761719e+02, 3.012271154785156e+02, 2.951495123291016e+02, 2.959004821777344e+02] +TransmittedSolarRadiation_room=[0e+00, 1.130983310699463e+01, 2.615992805480957e+01, 4.389693069458008e+01, 5.918939315795898e+01, 7.433171844482422e+01, 8.556270599365234e+01, 1.003712932167798e+02, 1.156241989135742e+02, 1.345737152099609e+02, 1.428011688232422e+02, 1.544982757568359e+02, 1.705400848388672e+02, 1.774764779663086e+02, 1.932679595947266e+02, 2.075335525512695e+02, 2.213084014892578e+02, 2.364050750732422e+02, 2.496862194824219e+02, 2.609849922088717e+02, 2.750827331542969e+02, 2.882581750488282e+02, 2.998613708496094e+02, 3.089242858886719e+02, 3.219294091796875e+02, 3.322948913574219e+02, 3.404449462890625e+02, 3.503638892734573e+02, 3.563309631347656e+02, 3.649165344238281e+02, 3.7259990234375e+02, 3.801119689941406e+02, 3.884593505859375e+02, 3.934178057861328e+02, 4.005350341796875e+02, 4.054509582519531e+02, 4.083153750736129e+02, 4.135305480957031e+02, 4.187036437988281e+02, 4.2231552734375e+02, 4.269175720214844e+02, 4.303515856933594e+02, 4.334136657714844e+02, 4.37160400390625e+02, 4.396197473144532e+02, 4.423710632324219e+02, 4.452669677734375e+02, 4.481255316162109e+02, 4.508377685546875e+02, 4.54432373046875e+02, 4.576424255371094e+02, 4.600709838867188e+02, 4.634608154296875e+02, 4.661315808105469e+02, 4.697460632324219e+02, 4.742601928710938e+02, 4.778960522460937e+02, 4.828953247070312e+02, 4.881285327148437e+02, 4.913847045898438e+02, 4.974066772460938e+02, 5.027895147705078e+02, 5.07058935546875e+02, 5.151318969726562e+02, 5.22274169921875e+02, 5.2847216796875e+02, 5.384815063476562e+02, 5.474845190429687e+02, 5.567839965820312e+02, 5.671638793945312e+02, 5.7749306640625e+02, 5.860963134765625e+02, 5.974530029296875e+02, 6.097898449707031e+02, 6.21293701171875e+02, 6.347100830078125e+02, 6.481318408203125e+02, 6.602117919921875e+02, 6.73082802734375e+02, 6.872170752361728e+02, 7.052345581054688e+02, 7.22560654296875e+02, 7.355865063476563e+02, 7.496406860351562e+02, 7.630113427734375e+02, 7.775413208007812e+02, 7.925638427734375e+02, 8.023044848632812e+02, 8.157523803710938e+02, 8.338731689453125e+02, 8.470809448242187e+02, 8.581185302734375e+02, 8.684480590820312e+02, 8.816174890136718e+02, 8.932007446289062e+02, 9.103673706054688e+02, 9.255148803710938e+02, 9.402803344726562e+02, 9.567583374023437e+02, 9.7040853515625e+02, 9.888731689453125e+02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case900FF.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case900FF.txt index ab83d8a449..7d2ad9e164 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case900FF.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case900FF.txt @@ -1,19 +1,19 @@ -last-generated=2021-05-25 +last-generated=2022-03-16 statistics-simulation= { "linear": "0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0", "nonlinear": "13", - "number of continuous time states": "21", + "number of continuous time states": "23", "numerical Jacobians": "0" } time=[0e+00, 3.15396e+07] checkResultsAccordingToASHRAEHeatingOrTempMax.lowerLimit=[4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01, 4.179999923706055e+01] -FreeFloatRoomTemperature=[2.1e+01, 9.798087177276612e+00, 1.736970512390137e+01, 2.470556518554687e+01, 2.612954818725586e+01, 2.074311618804932e+01, 1.681891731262207e+01, 2.106903469085693e+01, 1.856320877075195e+01, 2.620289497375488e+01, 1.075471973419189e+01, 1.260598836898804e+01, 2.787601219177246e+01, 1.008833578109741e+01, 1.956590827941895e+01, 2.607322826385498e+01, 2.497870979309082e+01, 1.969343063354492e+01, 2.081593826293945e+01, 1.876798755645752e+01, 2.445563850402832e+01, 2.311158794403076e+01, 1.991013999938965e+01, 2.026693168640137e+01, 3.247539840698242e+01, 2.373433685302734e+01, 1.940413154602051e+01, 2.765398128509521e+01, 1.642644348144531e+01, 2.193108615875244e+01, 2.616361923217773e+01, 2.390565887451172e+01, 3.100469207763672e+01, 2.119058837890625e+01, 2.341238304138184e+01, 2.298673896789551e+01, 1.804303718566895e+01, 2.421045330047608e+01, 2.905179679870605e+01, 2.240550716400146e+01, 2.606593146486921e+01, 2.470787414550781e+01, 2.308104652404785e+01, 2.713651317596436e+01, 1.794727806091309e+01, 2.515862445831299e+01, 2.248051666259765e+01, 2.597707973480225e+01, 2.592926086425781e+01, 3.086330944061279e+01, 3.538285064697266e+01, 2.289050411224365e+01, 3.109844902038574e+01, 2.953885082244873e+01, 2.934424873352051e+01, 3.494497947692871e+01, 3.326681884765625e+01, 3.445601745605469e+01, 3.684725250244141e+01, 2.973189109802246e+01, 3.156405996658305e+01, 3.498082214355469e+01, 2.980777778625488e+01, 3.55816096496582e+01, 3.493781478881836e+01, 3.059140644073486e+01, 3.829683959960938e+01, 4.296891891479492e+01, 3.396910888671875e+01, 3.766622398376465e+01, 3.848210906982422e+01, 2.837251052856445e+01, 3.124018684387207e+01, 3.575291984558105e+01, 2.743382949829101e+01, 2.854024982452393e+01, 3.351908493041992e+01, 2.278190353393555e+01, 3.065650077819824e+01, 3.23754150390625e+01, 3.329838027954101e+01, 3.980426765441894e+01, 2.749847457885742e+01, 2.084214683532715e+01, 2.614855651855469e+01, 2.436086940765381e+01, 2.723664810180664e+01, 1.7680784034729e+01, 2.045521133422852e+01, 2.852494071960449e+01, 3.101876831054688e+01, 2.249070934295654e+01, 1.415251987457275e+01, 1.814766822814941e+01, 1.252160190582275e+01, 1.865019130706787e+01, 2.053407974243164e+01, 2.182808650970459e+01, 3.022325721740723e+01, 2.20957241821289e+01, 2.260315322875977e+01] +FreeFloatRoomTemperature=[2.1e+01, 9.797526779174804e+00, 1.737037567138672e+01, 2.470699394226074e+01, 2.612667175292969e+01, 2.07442663192749e+01, 1.681981132507324e+01, 2.106723133087158e+01, 1.856478286743164e+01, 2.620459552764893e+01, 1.07496410369873e+01, 1.260584815979004e+01, 2.787590324401856e+01, 1.008922794342041e+01, 1.956724723815918e+01, 2.607455253601074e+01, 2.497413688659668e+01, 1.969389518737793e+01, 2.081706314086914e+01, 1.876503849029541e+01, 2.445668640136719e+01, 2.311184410095215e+01, 1.991142860412598e+01, 2.026753116607666e+01, 3.247422592163086e+01, 2.373457908630371e+01, 1.940522163391113e+01, 2.765021976470947e+01, 1.642680213928223e+01, 2.19319681930542e+01, 2.616167182922363e+01, 2.390695739746094e+01, 3.100585121154785e+01, 2.118819679260254e+01, 2.341350898742676e+01, 2.298776607513428e+01, 1.804088317871094e+01, 2.42109888458252e+01, 2.905198471069336e+01, 2.240450798034668e+01, 2.606750969820469e+01, 2.470791790008545e+01, 2.308116256713867e+01, 2.713888931274414e+01, 1.794691452026367e+01, 2.515862064361572e+01, 2.248093757629395e+01, 2.59761540222168e+01, 2.593217247009277e+01, 3.086460243225098e+01, 3.53822021484375e+01, 2.289183227539063e+01, 3.109813941955566e+01, 2.953732528686523e+01, 2.934514450073242e+01, 3.494503326416016e+01, 3.326528366088867e+01, 3.44566707611084e+01, 3.684807357788086e+01, 2.973128082275391e+01, 3.156544593248979e+01, 3.498291122436523e+01, 2.980806365966797e+01, 3.558377212524414e+01, 3.493800796508789e+01, 3.059209403991699e+01, 3.829795944213867e+01, 4.296692024230957e+01, 3.397034683227539e+01, 3.766742797851563e+01, 3.847902679443359e+01, 2.837420642852783e+01, 3.124128540039062e+01, 3.574899589538574e+01, 2.743468452453613e+01, 2.854121875762939e+01, 3.351453079223633e+01, 2.2783635597229e+01, 3.065782592773438e+01, 3.237135303497315e+01, 3.329956512451172e+01, 3.980579711914063e+01, 2.749769439697265e+01, 2.084336711883545e+01, 2.614699317932129e+01, 2.436138877868652e+01, 2.723802116394043e+01, 1.767904773712158e+01, 2.04556086730957e+01, 2.852564762115479e+01, 3.101338005065918e+01, 2.249162120819092e+01, 1.415377857208252e+01, 1.8145231590271e+01, 1.252155017852783e+01, 1.865072402954102e+01, 2.052825157165528e+01, 2.182866546630859e+01, 3.022444282531738e+01, 2.209140590667725e+01, 2.26037425994873e+01] checkResultsAccordingToASHRAEHeatingOrTempMax.upperLimit=[4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01, 4.479999923706055e+01] checkResultsAccordingToASHRAECoolingOrTempMin.lowerLimit=[-6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00, -6.400000095367432e+00] checkResultsAccordingToASHRAECoolingOrTempMin.upperLimit=[-1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00, -1.600000023841858e+00] checkResultsAccordingToASHRAEHeatingOrTempMax.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] checkResultsAccordingToASHRAECoolingOrTempMin.satisfied=[0e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] -Room.thermRoom.T=[2.941499938964844e+02, 2.829480889892578e+02, 2.905197058105469e+02, 2.978555755615234e+02, 2.992795568847656e+02, 2.938931182861328e+02, 2.899689099121094e+02, 2.942190399169922e+02, 2.917132043457031e+02, 2.993529095458985e+02, 2.839047241210938e+02, 2.857559814453125e+02, 3.010260119628906e+02, 2.832383288574219e+02, 2.927159106445313e+02, 2.992232360839844e+02, 2.981287109375e+02, 2.928434301757812e+02, 2.93965947265625e+02, 2.919179736328125e+02, 2.976056335449219e+02, 2.962615869140625e+02, 2.930601281738281e+02, 2.934169427490235e+02, 3.056253857421875e+02, 2.968843383789062e+02, 2.925541345214844e+02, 3.008039910888672e+02, 2.895764379882813e+02, 2.950810931396484e+02, 2.99313623046875e+02, 2.970556463623047e+02, 3.041546899414063e+02, 2.943405926513672e+02, 2.965623864746094e+02, 2.961367279052735e+02, 2.911930407714844e+02, 2.973604663085937e+02, 3.022018078613281e+02, 2.955555072021484e+02, 2.992159348980967e+02, 2.978578753662109e+02, 2.962310461425781e+02, 3.002865130615235e+02, 2.910972692871094e+02, 2.983086303710937e+02, 2.956305212402344e+02, 2.99127084350586e+02, 2.990792590332031e+02, 3.04013306274414e+02, 3.085328369140625e+02, 2.960404949951172e+02, 3.042484484863281e+02, 3.02688842163086e+02, 3.024942614746094e+02, 3.080949890136719e+02, 3.064168103027343e+02, 3.076060192871093e+02, 3.099972473144531e+02, 3.028818835449219e+02, 3.047140689865466e+02, 3.081308172607422e+02, 3.029577770996094e+02, 3.087316094970703e+02, 3.080878125e+02, 3.037414001464844e+02, 3.114468505859375e+02, 3.161189184570313e+02, 3.071191064453125e+02, 3.108162286376953e+02, 3.116321044921875e+02, 3.015225030517578e+02, 3.04390185546875e+02, 3.089029168701172e+02, 3.005838244628906e+02, 3.016902618408203e+02, 3.066690869140625e+02, 2.959319134521484e+02, 3.038064953613281e+02, 3.055254156494141e+02, 3.06448388671875e+02, 3.129542559814453e+02, 3.006484814453125e+02, 2.939921453857422e+02, 2.992985437011719e+02, 2.97510873413086e+02, 3.003866528320312e+02, 2.908307806396484e+02, 2.936052136230469e+02, 3.016749377441406e+02, 3.041687744140625e+02, 2.956407147216797e+02, 2.873025109863281e+02, 2.912976641845703e+02, 2.856716052246094e+02, 2.918001953125e+02, 2.936840905761719e+02, 2.949780963134766e+02, 3.033732543945313e+02, 2.952457214355469e+02, 2.957531433105469e+02] -Room.starRoom.T=[2.896538391113281e+02, 2.838898901367187e+02, 2.912181262207031e+02, 2.987293115234375e+02, 3.005433837890625e+02, 2.946413024902344e+02, 2.906791320800781e+02, 2.950484320068359e+02, 2.927014331054688e+02, 3.002462902832031e+02, 2.845120666503906e+02, 2.861569451904297e+02, 3.016575219726562e+02, 2.837007214355469e+02, 2.935012609863281e+02, 2.995761657714844e+02, 2.988367993164063e+02, 2.935396209716797e+02, 2.947799060058594e+02, 2.924973681640625e+02, 2.983910705566406e+02, 2.97008119506836e+02, 2.938259387207031e+02, 2.937910076904297e+02, 3.062670642089844e+02, 2.974012603759766e+02, 2.930275793457031e+02, 3.011127740478516e+02, 2.900652587890625e+02, 2.954338427734375e+02, 2.998773315429688e+02, 2.975459307861328e+02, 3.04474306640625e+02, 2.948235174560547e+02, 2.969296704101562e+02, 2.961907897949219e+02, 2.914570874023437e+02, 2.97697197265625e+02, 3.024192590332031e+02, 2.958058422851562e+02, 2.995840526248049e+02, 2.978880920410156e+02, 2.96462333984375e+02, 3.005279766845703e+02, 2.9135076171875e+02, 2.983803527832031e+02, 2.959033361816406e+02, 2.99289912109375e+02, 2.993927160644531e+02, 3.042554144287109e+02, 3.08607666015625e+02, 2.962992736816406e+02, 3.042479821777344e+02, 3.028977630615234e+02, 3.029047912597656e+02, 3.081530487060547e+02, 3.066216833496094e+02, 3.079779418945312e+02, 3.10168583984375e+02, 3.030995977783203e+02, 3.051597130581594e+02, 3.084044165039062e+02, 3.032517248535156e+02, 3.091764666748047e+02, 3.084005505371094e+02, 3.04122183227539e+02, 3.118444323730469e+02, 3.165127624511719e+02, 3.077824377441406e+02, 3.112303112792969e+02, 3.120680358886719e+02, 3.0215271484375e+02, 3.048205114746094e+02, 3.097186968994141e+02, 3.012518444824219e+02, 3.025589904785156e+02, 3.073676257324219e+02, 2.965461431884765e+02, 3.041364794921875e+02, 3.063576983642578e+02, 3.073408935546875e+02, 3.137242004394531e+02, 3.014195336914062e+02, 2.946722668457031e+02, 3.002451879882813e+02, 2.982795684814453e+02, 3.012244421386719e+02, 2.915227691650391e+02, 2.943939978027344e+02, 3.024071362304687e+02, 3.046601196289063e+02, 2.959788903808594e+02, 2.878974682617188e+02, 2.918896209716797e+02, 2.860863122558594e+02, 2.924818786621094e+02, 2.944951916503906e+02, 2.958091961669922e+02, 3.041865087890625e+02, 2.963200750732422e+02, 2.965600891113281e+02] -TransmittedSolarRadiation_room=[0e+00, 1.130992296218872e+01, 2.615977249145508e+01, 4.389670181274414e+01, 5.918912567138672e+01, 7.433107757568359e+01, 8.556184387207031e+01, 1.003801042175293e+02, 1.15623664855957e+02, 1.345726165771484e+02, 1.427996856689453e+02, 1.544969177246094e+02, 1.705384826660156e+02, 1.774749957275391e+02, 1.932662506103516e+02, 2.075314727783203e+02, 2.213068371582031e+02, 2.364033660888672e+02, 2.496844805908203e+02, 2.609831219482422e+02, 2.750808410644531e+02, 2.882561608886719e+02, 2.998593872070313e+02, 3.089221496582031e+02, 3.219278308105469e+02, 3.322932434082031e+02, 3.404428405761719e+02, 3.503619696044922e+02, 3.563292541503906e+02, 3.649154663085938e+02, 3.725987121582031e+02, 3.8011083984375e+02, 3.884585266113281e+02, 3.934165930175781e+02, 4.0053369140625e+02, 4.054497375488281e+02, 4.083144201660156e+02, 4.135290832519531e+02, 4.187026062011719e+02, 4.22314624633789e+02, 4.269164123535156e+02, 4.303503649902344e+02, 4.334123840332031e+02, 4.371590270996094e+02, 4.396184655761719e+02, 4.4236962890625e+02, 4.45265380859375e+02, 4.481238732910156e+02, 4.508360290527344e+02, 4.544308776855469e+02, 4.57640869140625e+02, 4.600695495605469e+02, 4.634594116210938e+02, 4.661303704833985e+02, 4.697448425292969e+02, 4.742589721679688e+02, 4.778948718261719e+02, 4.828941955566406e+02, 4.881271899414062e+02, 4.913833306884766e+02, 4.97405029296875e+02, 5.027875744628906e+02, 5.070569519042969e+02, 5.15129638671875e+02, 5.2227208984375e+02, 5.2847021484375e+02, 5.3847900390625e+02, 5.4748189453125e+02, 5.567816772460938e+02, 5.6716162109375e+02, 5.774910888671875e+02, 5.860941772460938e+02, 5.974512329101562e+02, 6.097881970214844e+02, 6.212920532226562e+02, 6.347081298828125e+02, 6.481302099609375e+02, 6.602103271484375e+02, 6.73081328125e+02, 6.872193615722656e+02, 7.052337646484375e+02, 7.225597998046875e+02, 7.355857788085938e+02, 7.49640380859375e+02, 7.630109155273437e+02, 7.775410766601562e+02, 7.9256396484375e+02, 8.023045458984375e+02, 8.157528076171875e+02, 8.338739013671875e+02, 8.47081787109375e+02, 8.581192626953125e+02, 8.684486694335938e+02, 8.816181884765625e+02, 8.932012329101562e+02, 9.103682250976562e+02, 9.2551560546875e+02, 9.40281005859375e+02, 9.567591577148437e+02, 9.7040951171875e+02, 9.888741455078125e+02] +Room.thermRoom.T=[2.941499938964844e+02, 2.829475274658203e+02, 2.9052037109375e+02, 2.97856987915039e+02, 2.99276669921875e+02, 2.938942626953125e+02, 2.89969814453125e+02, 2.942172265625e+02, 2.917147766113281e+02, 2.993545916748047e+02, 2.838996398925781e+02, 2.85755859375e+02, 3.010259094238281e+02, 2.832392181396484e+02, 2.927172534179688e+02, 2.992245452880859e+02, 2.98124140625e+02, 2.928438946533203e+02, 2.939670495605469e+02, 2.919150421142578e+02, 2.976066833496094e+02, 2.96261845703125e+02, 2.93061435546875e+02, 2.934175390625e+02, 3.056242236328125e+02, 2.968845825195312e+02, 2.92555224609375e+02, 3.008002319335938e+02, 2.895768090820313e+02, 2.950819561767578e+02, 2.99311669921875e+02, 2.97056947631836e+02, 3.041558508300781e+02, 2.943381896972656e+02, 2.96563515625e+02, 2.961377716064453e+02, 2.911908776855469e+02, 2.973609936523437e+02, 3.022019775390625e+02, 2.955545043945312e+02, 2.992175218121592e+02, 2.978579064941407e+02, 2.96231162109375e+02, 3.002888873291016e+02, 2.910969262695313e+02, 2.983086151123047e+02, 2.956309448242188e+02, 2.991261499023437e+02, 2.990821728515625e+02, 3.040146118164063e+02, 3.085321960449219e+02, 2.960418414306641e+02, 3.042481396484375e+02, 3.026873260498047e+02, 3.02495146484375e+02, 3.080950317382812e+02, 3.064152954101563e+02, 3.076066625976562e+02, 3.099980749511719e+02, 3.028812823486328e+02, 3.047154417363228e+02, 3.081329083251953e+02, 3.029580590820312e+02, 3.087337719726563e+02, 3.080880187988281e+02, 3.037420867919922e+02, 3.114479553222656e+02, 3.161169244384766e+02, 3.071203552246094e+02, 3.108174346923828e+02, 3.116290283203125e+02, 3.015242077636719e+02, 3.043912890625e+02, 3.088989929199219e+02, 3.005846850585938e+02, 3.016912231445312e+02, 3.0666453125e+02, 2.959336279296875e+02, 3.038078332519531e+02, 3.055213500976562e+02, 3.064495544433594e+02, 3.129558038330078e+02, 3.006477026367187e+02, 2.939933660888672e+02, 2.992970080566406e+02, 2.975113952636719e+02, 3.003880285644531e+02, 2.908290484619141e+02, 2.936056127929688e+02, 3.016756433105469e+02, 3.041633728027344e+02, 2.956416302490234e+02, 2.873037927246094e+02, 2.912952392578125e+02, 2.856715576171875e+02, 2.918007171630859e+02, 2.936782592773437e+02, 2.949786669921875e+02, 3.033744421386719e+02, 2.952413983154297e+02, 2.957537536621094e+02] +Room.starRoom.T=[2.896538391113281e+02, 2.838891571044922e+02, 2.91218251953125e+02, 2.987298797607422e+02, 3.005411645507813e+02, 2.946418182373047e+02, 2.906790808105468e+02, 2.950483026123047e+02, 2.927022497558594e+02, 3.00246962890625e+02, 2.845099548339844e+02, 2.861562561035156e+02, 3.016564318847657e+02, 2.837015191650391e+02, 2.935019348144531e+02, 2.995758728027344e+02, 2.9883490234375e+02, 2.93539360961914e+02, 2.947796813964844e+02, 2.924955346679687e+02, 2.983914367675781e+02, 2.970079858398437e+02, 2.938267529296875e+02, 2.93791318359375e+02, 3.062666235351563e+02, 2.974013519287109e+02, 2.930281726074219e+02, 3.011107922363281e+02, 2.900651416015625e+02, 2.954340533447266e+02, 2.998768371582031e+02, 2.975466522216797e+02, 3.044748571777343e+02, 2.948229827880859e+02, 2.969304333496094e+02, 2.961915130615234e+02, 2.914563391113281e+02, 2.976973236083984e+02, 3.024190649414062e+02, 2.958055529785156e+02, 2.995852122927737e+02, 2.97887817993164e+02, 2.964628381347656e+02, 3.005299072265625e+02, 2.913505383300781e+02, 2.983801666259766e+02, 2.959034545898438e+02, 2.99289658203125e+02, 2.99395537109375e+02, 3.042563165283203e+02, 3.086079406738281e+02, 2.963004571533203e+02, 3.042474462890625e+02, 3.028973565673828e+02, 3.029052453613281e+02, 3.081527160644531e+02, 3.066214709472656e+02, 3.079781579589844e+02, 3.101688659667969e+02, 3.030997534179688e+02, 3.051607195969981e+02, 3.084050476074219e+02, 3.032524182128906e+02, 3.091781713867188e+02, 3.084006665039062e+02, 3.041228973388672e+02, 3.118449877929688e+02, 3.165120220947265e+02, 3.077830163574219e+02, 3.112308654785156e+02, 3.120668334960938e+02, 3.021538818359375e+02, 3.048208776855469e+02, 3.097172302246094e+02, 3.012520190429688e+02, 3.025592346191406e+02, 3.073658679199219e+02, 2.965476080322265e+02, 3.0413673828125e+02, 3.063563006591797e+02, 3.0734150390625e+02, 3.137244482421875e+02, 3.014199572753906e+02, 2.946729156494141e+02, 3.00244189453125e+02, 2.982795104980469e+02, 3.0122501953125e+02, 2.91522533569336e+02, 2.943936950683594e+02, 3.024068713378906e+02, 3.046571044921875e+02, 2.959794390869141e+02, 2.878981091308594e+02, 2.918881115722656e+02, 2.860858557128906e+02, 2.924817260742187e+02, 2.944925793457031e+02, 2.958089935302734e+02, 3.041864880371094e+02, 2.963191320800781e+02, 2.965599365234375e+02] +TransmittedSolarRadiation_room=[0e+00, 1.130993780136108e+01, 2.616008636474609e+01, 4.38973503112793e+01, 5.918978942871094e+01, 7.433193206787109e+01, 8.556265258789062e+01, 1.003809509277344e+02, 1.156243743896484e+02, 1.345736541748047e+02, 1.428007263183594e+02, 1.544978179931641e+02, 1.705396881103516e+02, 1.774762622070313e+02, 1.932678070068359e+02, 2.075332321166992e+02, 2.213085766601563e+02, 2.364051361083984e+02, 2.496864178466797e+02, 2.609853137207031e+02, 2.750832824707031e+02, 2.882586938476563e+02, 2.998622863769531e+02, 3.089251098632812e+02, 3.2193099609375e+02, 3.322967834472656e+02, 3.404466857910156e+02, 3.503659063720703e+02, 3.563330688476562e+02, 3.649192199707031e+02, 3.726026916503906e+02, 3.801148071289062e+02, 3.884627685546875e+02, 3.934212701416016e+02, 4.005384216308594e+02, 4.054544067382812e+02, 4.083191174316406e+02, 4.135337829589844e+02, 4.18707275390625e+02, 4.223192938232422e+02, 4.269213256835938e+02, 4.303553997802734e+02, 4.334175415039062e+02, 4.371643981933594e+02, 4.396237353515625e+02, 4.423749694824219e+02, 4.452708435058594e+02, 4.481293768310547e+02, 4.508416748046875e+02, 4.544364929199219e+02, 4.576466064453125e+02, 4.600752868652344e+02, 4.634651489257812e+02, 4.661360772705078e+02, 4.697505798339844e+02, 4.742646789550781e+02, 4.779005993652344e+02, 4.828998718261719e+02, 4.881329577636719e+02, 4.913893737792969e+02, 4.974112243652344e+02, 5.027941662597656e+02, 5.070637268066406e+02, 5.151365356445312e+02, 5.222791088867187e+02, 5.284773559570312e+02, 5.38486328125e+02, 5.474894177246093e+02, 5.567891235351562e+02, 5.671690063476562e+02, 5.774986206054688e+02, 5.8610205078125e+02, 5.974591064453125e+02, 6.097960742187501e+02, 6.212998657226562e+02, 6.34716064453125e+02, 6.481381884765625e+02, 6.602186889648438e+02, 6.730898828125e+02, 6.872279675292968e+02, 7.052423095703125e+02, 7.225687109375e+02, 7.355948706054687e+02, 7.496492919921875e+02, 7.63020009765625e+02, 7.7755029296875e+02, 7.925731811523438e+02, 8.023140673828125e+02, 8.157621459960938e+02, 8.338833618164062e+02, 8.4709130859375e+02, 8.58129150390625e+02, 8.68458984375e+02, 8.816285974121093e+02, 8.932119140625e+02, 9.103787841796875e+02, 9.255262255859375e+02, 9.4029150390625e+02, 9.567695678710937e+02, 9.70420009765625e+02, 9.888847045898438e+02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case920.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case920.txt index 624bfa24f7..f8adfa4a9f 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case920.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case920.txt @@ -1,20 +1,20 @@ -last-generated=2021-05-25 +last-generated=2022-07-06 statistics-simulation= { "linear": "0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0", "nonlinear": "19", - "number of continuous time states": "23", + "number of continuous time states": "25", "numerical Jacobians": "0" } time=[0e+00, 3.15396e+07] checkResultsAccordingToASHRAEHeatingOrTempMax.lowerLimit=[3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03, 3.313e+03] -AnnualHeatingLoad=[0e+00, 2.237139398193359e+02, 3.434658020019531e+02, 4.108868310546875e+02, 4.981055810546875e+02, 5.974773376464843e+02, 7.66704345703125e+02, 8.287629040527344e+02, 9.181848364257812e+02, 1.025624873046875e+03, 1.193191967773437e+03, 1.311150700683594e+03, 1.360860037728742e+03, 1.497609013671875e+03, 1.592144267578125e+03, 1.691238403320312e+03, 1.734716918945312e+03, 1.822059509277344e+03, 1.924424799804688e+03, 1.991913186035156e+03, 2.010105932617188e+03, 2.0490740625e+03, 2.08207587890625e+03, 2.133850576171875e+03, 2.14071728515625e+03, 2.14071728515625e+03, 2.199526611328125e+03, 2.2053369140625e+03, 2.227568046875e+03, 2.2682216796875e+03, 2.2682216796875e+03, 2.2692919921875e+03, 2.2692919921875e+03, 2.27828857421875e+03, 2.27833056640625e+03, 2.282766357421875e+03, 2.291202392578125e+03, 2.29291748046875e+03, 2.29291748046875e+03, 2.29291748046875e+03, 2.29291748046875e+03, 2.29291748046875e+03, 2.29291748046875e+03, 2.29291748046875e+03, 2.29959130859375e+03, 2.308037109375e+03, 2.308037109375e+03, 2.308037109375e+03, 2.308037109375e+03, 2.308037109375e+03, 2.308037109375e+03, 2.308037109375e+03, 2.308037109375e+03, 2.308037109375e+03, 2.308037109375e+03, 2.308037109375e+03, 2.308037109375e+03, 2.308037109375e+03, 2.308037109375e+03, 2.308037109375e+03, 2.308037109375e+03, 2.308037109375e+03, 2.308037109375e+03, 2.308037109375e+03, 2.308037109375e+03, 2.308037109375e+03, 2.308037109375e+03, 2.308037109375e+03, 2.308037109375e+03, 2.308037109375e+03, 2.308037109375e+03, 2.308037109375e+03, 2.310692138671875e+03, 2.310692138671875e+03, 2.313197509765625e+03, 2.313197509765625e+03, 2.322483642578125e+03, 2.327592211914062e+03, 2.348432861328125e+03, 2.351393798828125e+03, 2.352967041015625e+03, 2.353818359375e+03, 2.368538818359375e+03, 2.427745859375e+03, 2.516225966796875e+03, 2.568722631835938e+03, 2.609456279296875e+03, 2.696476376953125e+03, 2.77039578125e+03, 2.830554765625e+03, 2.932710693359375e+03, 2.998921879882812e+03, 3.079750078125e+03, 3.198743349609375e+03, 3.371914228515625e+03, 3.495540112304688e+03, 3.637934033203125e+03, 3.710600776367187e+03, 3.773845166015625e+03, 3.845654736328125e+03, 3.941603515625e+03] +AnnualHeatingLoad=[0e+00, 2.237131005859375e+02, 3.434637878417969e+02, 4.108848474121094e+02, 4.981039331054687e+02, 5.974762390136718e+02, 7.667031665039062e+02, 8.287611950683594e+02, 9.181833715820312e+02, 1.025623405761719e+03, 1.193190869140625e+03, 1.311149653320313e+03, 1.360859256376379e+03, 1.497607915039062e+03, 1.592143901367187e+03, 1.691237670898438e+03, 1.734716918945312e+03, 1.822059111328125e+03, 1.92442443359375e+03, 1.991912841796875e+03, 2.010105639648438e+03, 2.049072841796875e+03, 2.082073681640625e+03, 2.133847875976563e+03, 2.14071337890625e+03, 2.14071337890625e+03, 2.199521484375e+03, 2.205331787109375e+03, 2.227561005859375e+03, 2.26821435546875e+03, 2.26821435546875e+03, 2.269283447265625e+03, 2.269283447265625e+03, 2.2782783203125e+03, 2.27831982421875e+03, 2.28275390625e+03, 2.291188720703125e+03, 2.29290283203125e+03, 2.29290283203125e+03, 2.29290283203125e+03, 2.29290283203125e+03, 2.29290283203125e+03, 2.29290283203125e+03, 2.29290283203125e+03, 2.299574951171875e+03, 2.308019775390625e+03, 2.308019775390625e+03, 2.308019775390625e+03, 2.308019775390625e+03, 2.308019775390625e+03, 2.308019775390625e+03, 2.308019775390625e+03, 2.308019775390625e+03, 2.308019775390625e+03, 2.308019775390625e+03, 2.308019775390625e+03, 2.308019775390625e+03, 2.308019775390625e+03, 2.308019775390625e+03, 2.308019775390625e+03, 2.308019775390625e+03, 2.308019775390625e+03, 2.308019775390625e+03, 2.308019775390625e+03, 2.308019775390625e+03, 2.308019775390625e+03, 2.308019775390625e+03, 2.308019775390625e+03, 2.308019775390625e+03, 2.308019775390625e+03, 2.308019775390625e+03, 2.308019775390625e+03, 2.31067333984375e+03, 2.31067333984375e+03, 2.31317724609375e+03, 2.31317724609375e+03, 2.322460693359375e+03, 2.3275678125e+03, 2.34840771484375e+03, 2.35136865234375e+03, 2.352941162109375e+03, 2.353791748046875e+03, 2.368510986328125e+03, 2.427717783203125e+03, 2.51619740234375e+03, 2.568694067382813e+03, 2.609426494140625e+03, 2.696448266601562e+03, 2.770365751953125e+03, 2.830524877929688e+03, 2.93268212890625e+03, 2.998893315429687e+03, 3.07972126953125e+03, 3.198714052734375e+03, 3.371885419921875e+03, 3.495509838867188e+03, 3.637902509765625e+03, 3.710569853515625e+03, 3.77381171875e+03, 3.84561982421875e+03, 3.9415693359375e+03] checkResultsAccordingToASHRAEHeatingOrTempMax.upperLimit=[4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03, 4.3e+03] checkResultsAccordingToASHRAECoolingOrTempMin.lowerLimit=[-3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03, -3.092e+03] -AnnualCoolingLoad=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -4.465314388275146e+00, -1.232976150512695e+01, -1.232976150512695e+01, -1.234132957458496e+01, -1.234132957458496e+01, -1.234132957458496e+01, -2.275714874267578e+01, -2.681255340576172e+01, -7.04900765991211e+01, -7.377304840087891e+01, -8.630056762695312e+01, -8.670858001708984e+01, -8.670858001708984e+01, -1.034877548217773e+02, -1.649217639160156e+02, -2.065085144042969e+02, -2.555495057232612e+02, -2.604822082519531e+02, -2.896947631835938e+02, -3.554283154296875e+02, -3.717973327636719e+02, -3.959846984863281e+02, -4.388007507324219e+02, -4.639504376220703e+02, -5.251342163085938e+02, -6.240782727050781e+02, -7.346832885742188e+02, -7.845203247070312e+02, -8.344023217773438e+02, -9.012219226074219e+02, -9.770100088489518e+02, -1.068829089355469e+03, -1.172773403320313e+03, -1.281802963867188e+03, -1.3713958203125e+03, -1.428654111328125e+03, -1.516403501669349e+03, -1.551207407226563e+03, -1.599749853515625e+03, -1.701485026855469e+03, -1.733007475585938e+03, -1.77708355330116e+03, -1.874478579101562e+03, -1.948324106445313e+03, -2.019284912109375e+03, -2.085614487304687e+03, -2.101836279296875e+03, -2.118474853515625e+03, -2.1409501953125e+03, -2.15187353515625e+03, -2.167958251953125e+03, -2.184260986328125e+03, -2.186116943359375e+03, -2.195802734375e+03, -2.195802734375e+03, -2.197317138671875e+03, -2.20454052734375e+03, -2.205207275390625e+03, -2.205207275390625e+03, -2.205207275390625e+03, -2.205207275390625e+03, -2.205207275390625e+03, -2.205207275390625e+03, -2.205207275390625e+03, -2.205207275390625e+03, -2.205207275390625e+03, -2.205207275390625e+03, -2.205207275390625e+03, -2.205207275390625e+03, -2.205207275390625e+03, -2.205207275390625e+03, -2.205207275390625e+03, -2.205207275390625e+03, -2.205207275390625e+03, -2.205207275390625e+03, -2.205207275390625e+03, -2.205207275390625e+03] +AnnualCoolingLoad=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -4.462822914123535e+00, -1.232558727264404e+01, -1.232558727264404e+01, -1.233684539794922e+01, -1.233684539794922e+01, -1.233684539794922e+01, -2.275049018859863e+01, -2.680394172668457e+01, -7.047822723388671e+01, -7.376006317138672e+01, -8.628298187255859e+01, -8.669087982177734e+01, -8.669087982177734e+01, -1.034688720703125e+02, -1.649027264404297e+02, -2.064872436523438e+02, -2.555248641485511e+02, -2.604570922851562e+02, -2.896668469238281e+02, -3.554010845947266e+02, -3.717691040039062e+02, -3.959546691894531e+02, -4.387710876464844e+02, -4.639202966308594e+02, -5.251014404296875e+02, -6.240460595703125e+02, -7.346513061523438e+02, -7.844879760742188e+02, -8.343701220703125e+02, -9.011901635742188e+02, -9.769786978137955e+02, -1.06879833984375e+03, -1.172744267578125e+03, -1.281774155273438e+03, -1.371365302734375e+03, -1.428623959960938e+03, -1.516372251669349e+03, -1.551175739746094e+03, -1.599717338867187e+03, -1.701452678222656e+03, -1.73297439453125e+03, -1.777049709992223e+03, -1.874445395507812e+03, -1.948290446777344e+03, -2.019250366210938e+03, -2.085580307617187e+03, -2.101801953125e+03, -2.118439697265625e+03, -2.140914794921875e+03, -2.1518369140625e+03, -2.1679208984375e+03, -2.1842216796875e+03, -2.186076171875e+03, -2.195760498046875e+03, -2.195760498046875e+03, -2.1972734375e+03, -2.2044951171875e+03, -2.20516064453125e+03, -2.20516064453125e+03, -2.20516064453125e+03, -2.20516064453125e+03, -2.20516064453125e+03, -2.20516064453125e+03, -2.20516064453125e+03, -2.20516064453125e+03, -2.20516064453125e+03, -2.20516064453125e+03, -2.20516064453125e+03, -2.20516064453125e+03, -2.20516064453125e+03, -2.20516064453125e+03, -2.20516064453125e+03, -2.20516064453125e+03, -2.20516064453125e+03, -2.20516064453125e+03, -2.20516064453125e+03, -2.20516064453125e+03] checkResultsAccordingToASHRAECoolingOrTempMin.upperLimit=[-1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03, -1.84e+03] checkResultsAccordingToASHRAEHeatingOrTempMax.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00] checkResultsAccordingToASHRAECoolingOrTempMin.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00] -Room.thermRoom.T=[2.941499938964844e+02, 2.931502081298828e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931500891113281e+02, 2.931499938964844e+02, 2.931499328613281e+02, 2.931500573730469e+02, 2.931499938964844e+02, 2.931499627685547e+02, 2.931499633789062e+02, 2.931499633789062e+02, 2.931499676363409e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.958530822753906e+02, 2.940519641113281e+02, 2.931499633789062e+02, 2.931499963378906e+02, 2.931500549316406e+02, 2.931499633789062e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.97660712890625e+02, 2.936273040771484e+02, 2.937558801269531e+02, 2.964905725097656e+02, 2.931499633789062e+02, 2.972656707763672e+02, 2.969318603515625e+02, 2.970102374267578e+02, 3.001499035644531e+02, 2.971267810058594e+02, 2.984918078613281e+02, 2.995141723632813e+02, 2.960146655273438e+02, 2.998466436767578e+02, 3.001499389648437e+02, 2.993709252929688e+02, 3.001499356005797e+02, 2.999874411190257e+02, 3.001498217773437e+02, 3.001499328613281e+02, 2.931500549316406e+02, 3.001498840332031e+02, 2.973065844726563e+02, 3.001500653076172e+02, 3.000419567871094e+02, 3.001499633789062e+02, 3.001499633789062e+02, 2.962731860351562e+02, 3.001501037597656e+02, 3.001499432373047e+02, 3.001499633789062e+02, 3.001499206542969e+02, 3.001500146484375e+02, 3.001499633789062e+02, 3.001498010253906e+02, 3.001500555419922e+02, 3.001499633789062e+02, 3.001496026611328e+02, 3.00150322265625e+02, 3.001499633789062e+02, 3.001500854492188e+02, 3.001500149490896e+02, 3.001499633789062e+02, 3.001501080322266e+02, 2.991689172363281e+02, 3.001499633789062e+02, 3.001500366210938e+02, 2.969606475830078e+02, 2.98770283203125e+02, 2.997669604492187e+02, 2.948719409179687e+02, 2.940978851318359e+02, 2.98446943359375e+02, 2.931499938964844e+02, 2.970352819824218e+02, 2.971100286865234e+02, 2.955757141113281e+02, 2.985882025146485e+02, 2.932771923828125e+02, 2.931499938964844e+02, 2.931501013183594e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931500854492188e+02, 2.931499633789062e+02, 2.931499456787109e+02, 2.942685546875e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931500512695313e+02, 2.931499633789062e+02, 2.931499499511719e+02, 2.931501599121094e+02, 2.931499633789062e+02] -Room.starRoom.T=[2.896913146972656e+02, 2.911223077392578e+02, 2.909879479980469e+02, 2.920214245605468e+02, 2.921690197753906e+02, 2.913564453125e+02, 2.9166748046875e+02, 2.914135308837891e+02, 2.906453002929687e+02, 2.927359741210938e+02, 2.91571435546875e+02, 2.913765301513672e+02, 2.933695911617659e+02, 2.906980346679687e+02, 2.916559582519531e+02, 2.961891418457031e+02, 2.948270776367187e+02, 2.920587353515625e+02, 2.943502062988281e+02, 2.931638317871094e+02, 2.930321105957031e+02, 2.932159295654297e+02, 2.921791174316406e+02, 2.934301837158203e+02, 2.983787780761719e+02, 2.940723724365234e+02, 2.942871850585938e+02, 2.967371563720703e+02, 2.91869970703125e+02, 2.9769607421875e+02, 2.97415234375e+02, 2.9750978515625e+02, 3.022163037109375e+02, 2.979045294189453e+02, 2.989424230957031e+02, 2.999279754638672e+02, 2.968513916015625e+02, 3.002855877685547e+02, 3.029342761230469e+02, 3.001748687744141e+02, 3.007408360458355e+02, 3.007466962028952e+02, 3.011838806152344e+02, 3.01124144897461e+02, 2.932019201660156e+02, 3.008853210449219e+02, 2.976485986328125e+02, 3.013236260986328e+02, 3.004388647460938e+02, 3.02014400024414e+02, 3.039936828613281e+02, 2.965522033691406e+02, 3.042163293457031e+02, 3.031796563720703e+02, 3.005169318704044e+02, 3.058251525878906e+02, 3.043220666503906e+02, 3.015220782470703e+02, 3.040353735351562e+02, 3.032899670410156e+02, 3.009209241671907e+02, 3.040351184082031e+02, 3.020585229492187e+02, 3.015447027587891e+02, 3.031248962402344e+02, 3.007203697978838e+02, 3.023723754882812e+02, 3.037782092285156e+02, 2.995485046386719e+02, 3.012513604736328e+02, 3.0165263671875e+02, 2.974316680908203e+02, 2.990037048339844e+02, 3.004072039794922e+02, 2.953335729980469e+02, 2.946701354980469e+02, 2.989802966308594e+02, 2.921470111083984e+02, 2.973718041992187e+02, 2.9775419921875e+02, 2.960634582519531e+02, 2.993030596923828e+02, 2.938282421875e+02, 2.920162561035156e+02, 2.938553955078125e+02, 2.92371240234375e+02, 2.927174194335938e+02, 2.919527557373047e+02, 2.915114526367187e+02, 2.930243096923828e+02, 2.944059326171875e+02, 2.924180450439453e+02, 2.913294580078125e+02, 2.915508856201172e+02, 2.910495458984375e+02, 2.912221099853516e+02, 2.922796374511719e+02, 2.916091577148438e+02, 2.930145666503906e+02, 2.920940057373047e+02, 2.916042785644531e+02] -TransmittedSolarRadiation_room=[0e+00, 2.331194181442261e+00, 6.243464984893799e+00, 1.068801403045654e+01, 1.451180278778076e+01, 1.874275588989258e+01, 2.202192687988281e+01, 2.644054069519043e+01, 3.145873832702637e+01, 3.727928161621094e+01, 4.045322265625e+01, 4.400528335571289e+01, 4.940356826782227e+01, 5.14601953125e+01, 5.778466415405273e+01, 6.407189254760742e+01, 7.004821868896484e+01, 7.567201232910156e+01, 8.173421356201172e+01, 8.766603149414063e+01, 9.534890747070312e+01, 1.027464367675781e+02, 1.103784942626953e+02, 1.163311233520508e+02, 1.247057470703125e+02, 1.331433563232422e+02, 1.391578063964844e+02, 1.471503213500977e+02, 1.522253442382813e+02, 1.610874176025391e+02, 1.690654357910156e+02, 1.768782501220703e+02, 1.866229797363281e+02, 1.93262366027832e+02, 2.033791656494141e+02, 2.097533874511719e+02, 2.140594805908203e+02, 2.22748046875e+02, 2.326843585205078e+02, 2.409056503295898e+02, 2.507322692871094e+02, 2.555420219870174e+02, 2.639239611816406e+02, 2.740994567871094e+02, 2.785469165039062e+02, 2.867040496826172e+02, 2.944637145996094e+02, 3.01822632446289e+02, 3.11269404296875e+02, 3.221083306884765e+02, 3.32261474609375e+02, 3.387570562744141e+02, 3.47835625e+02, 3.548992254638672e+02, 3.630561828613281e+02, 3.734797210693359e+02, 3.821141320800782e+02, 3.910057678222656e+02, 3.993398767089844e+02, 4.055140588378906e+02, 4.146835327148438e+02, 4.211670184326172e+02, 4.273169262695312e+02, 4.367386779785156e+02, 4.433303015136719e+02, 4.505850797020315e+02, 4.604359741210938e+02, 4.682511315917969e+02, 4.766061694335938e+02, 4.841552734375e+02, 4.906886596679688e+02, 4.962164916992188e+02, 5.033726196289062e+02, 5.109619451904297e+02, 5.174059448242188e+02, 5.246087341308594e+02, 5.31750986328125e+02, 5.371500854492188e+02, 5.429134790039062e+02, 5.493901782226562e+02, 5.56677978515625e+02, 5.634426843261718e+02, 5.68561787109375e+02, 5.734469604492188e+02, 5.775303417968749e+02, 5.827686767578125e+02, 5.874187622070312e+02, 5.900944274902344e+02, 5.943985595703125e+02, 5.9943310546875e+02, 6.02691162109375e+02, 6.059933471679688e+02, 6.087940063476562e+02, 6.120142407226563e+02, 6.149496459960938e+02, 6.18986328125e+02, 6.228998828125e+02, 6.263632202148438e+02, 6.3018111328125e+02, 6.336601904296875e+02, 6.380530395507812e+02] +Room.thermRoom.T=[2.941499938964844e+02, 2.931502081298828e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931500891113281e+02, 2.931499938964844e+02, 2.931499328613281e+02, 2.931500573730469e+02, 2.931499938964844e+02, 2.931499627685547e+02, 2.931499633789062e+02, 2.931499633789062e+02, 2.931499677590763e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.958552581787109e+02, 2.940502758789062e+02, 2.931499633789062e+02, 2.931499963378906e+02, 2.931500549316406e+02, 2.931499633789062e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.976582946777344e+02, 2.936276397705078e+02, 2.937564599609375e+02, 2.964888159179687e+02, 2.931499633789062e+02, 2.972664031982422e+02, 2.969327880859375e+02, 2.970112640380859e+02, 3.001499035644531e+02, 2.9712681640625e+02, 2.984924645996094e+02, 2.995143585205078e+02, 2.960134716796875e+02, 2.998472930908203e+02, 3.001499389648437e+02, 2.993687811279297e+02, 3.001499356005797e+02, 2.999845528031868e+02, 3.001502392578125e+02, 3.001499328613281e+02, 2.931500451660156e+02, 3.001499114990235e+02, 2.9730734375e+02, 3.001500653076172e+02, 3.000416857910157e+02, 3.001499633789062e+02, 3.001499633789062e+02, 2.962738745117188e+02, 3.001501037597656e+02, 3.001499432373047e+02, 3.001499633789062e+02, 3.001499206542969e+02, 3.001500146484375e+02, 3.001499633789062e+02, 3.001498010253906e+02, 3.001500555419922e+02, 3.001499633789062e+02, 3.001495495605469e+02, 3.001503332519531e+02, 3.001499633789062e+02, 3.00150087890625e+02, 3.001500144975955e+02, 3.001499633789062e+02, 3.001501080322266e+02, 2.991695581054688e+02, 3.001499633789062e+02, 3.001500366210938e+02, 2.969614978027344e+02, 2.9877091796875e+02, 2.997670666503906e+02, 2.948727270507812e+02, 2.940992736816406e+02, 2.984455786132813e+02, 2.931499938964844e+02, 2.970353759765625e+02, 2.971077600097656e+02, 2.955763916015625e+02, 2.985870837402344e+02, 2.932762487792968e+02, 2.931499938964844e+02, 2.931501013183594e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931500854492188e+02, 2.931499633789062e+02, 2.931499456787109e+02, 2.942676696777344e+02, 2.931499938964844e+02, 2.931499633789062e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931500512695313e+02, 2.931499633789062e+02, 2.931499499511719e+02, 2.931501599121094e+02, 2.931499633789062e+02] +Room.starRoom.T=[2.896913146972656e+02, 2.911223010253906e+02, 2.909878869628906e+02, 2.920214044189453e+02, 2.921690197753906e+02, 2.913564758300781e+02, 2.9166748046875e+02, 2.914135754394531e+02, 2.906452770996094e+02, 2.927360040283203e+02, 2.91571435546875e+02, 2.913765301513672e+02, 2.933696480784697e+02, 2.906980041503906e+02, 2.916559582519531e+02, 2.961893280029297e+02, 2.948266345214844e+02, 2.920587048339844e+02, 2.94350146484375e+02, 2.931638317871094e+02, 2.930322326660156e+02, 2.932158990478516e+02, 2.921791784667969e+02, 2.934302465820313e+02, 2.983780944824219e+02, 2.940730590820312e+02, 2.942872680664062e+02, 2.96736644897461e+02, 2.91869970703125e+02, 2.97696005859375e+02, 2.974156005859375e+02, 2.975102624511719e+02, 3.022162121582031e+02, 2.979043090820313e+02, 2.989426513671875e+02, 2.999275115966797e+02, 2.968507482910156e+02, 3.002857794189453e+02, 3.029342651367188e+02, 3.001743627929687e+02, 3.007407444931011e+02, 3.007456958431995e+02, 3.011837658691406e+02, 3.011240533447266e+02, 2.9320201171875e+02, 3.008853515625e+02, 2.976489953613281e+02, 3.013237481689453e+02, 3.00438876953125e+02, 3.020144305419922e+02, 3.039936828613281e+02, 2.965527459716797e+02, 3.04216376953125e+02, 3.031797375488281e+02, 3.005169321377674e+02, 3.058251892089844e+02, 3.043220764160156e+02, 3.015220782470703e+02, 3.040352978515625e+02, 3.032899975585938e+02, 3.009209546847688e+02, 3.04035087890625e+02, 3.02058583984375e+02, 3.015446459960938e+02, 3.031248986816406e+02, 3.007198664405526e+02, 3.023723583984375e+02, 3.037781256103515e+02, 2.995487780761719e+02, 3.012513659667969e+02, 3.016526672363281e+02, 2.974321142578125e+02, 2.9900361328125e+02, 3.004071179199219e+02, 2.953338916015625e+02, 2.946710357666016e+02, 2.989797131347656e+02, 2.921471655273438e+02, 2.97371318359375e+02, 2.977536383056641e+02, 2.960638061523438e+02, 2.99302427368164e+02, 2.938280773925781e+02, 2.920162561035156e+02, 2.938553344726562e+02, 2.923712707519531e+02, 2.927174194335938e+02, 2.919527557373047e+02, 2.915114331054688e+02, 2.930242358398438e+02, 2.944056762695312e+02, 2.924180450439453e+02, 2.913294885253906e+02, 2.915508856201172e+02, 2.910495458984375e+02, 2.912221099853516e+02, 2.9227966796875e+02, 2.916091271972657e+02, 2.930145056152344e+02, 2.920940057373047e+02, 2.916042785644531e+02] +TransmittedSolarRadiation_room=[0e+00, 2.331186118125915e+00, 6.243461170196533e+00, 1.068796730041504e+01, 1.451172542572021e+01, 1.874264526367188e+01, 2.202180290222168e+01, 2.644047187805176e+01, 3.145860481262207e+01, 3.727914047241211e+01, 4.045307846069336e+01, 4.400515365600586e+01, 4.940339660644531e+01, 5.146001602172851e+01, 5.77844352722168e+01, 6.407170181274414e+01, 7.004788299560546e+01, 7.567167663574219e+01, 8.173382446289062e+01, 8.766567153930664e+01, 9.534850311279297e+01, 1.027460429382324e+02, 1.103781369018555e+02, 1.163307876586914e+02, 1.247053579711914e+02, 1.331430358886719e+02, 1.391573791503906e+02, 1.471498635864258e+02, 1.522249017333984e+02, 1.610870208740234e+02, 1.690650634765625e+02, 1.768778686523438e+02, 1.866223840332031e+02, 1.932618167114258e+02, 2.033784790039062e+02, 2.09752751159668e+02, 2.140588244628906e+02, 2.227477111816406e+02, 2.326840740966797e+02, 2.409052383422851e+02, 2.507315368652344e+02, 2.555412474525481e+02, 2.6392314453125e+02, 2.740985412597656e+02, 2.785458483886719e+02, 2.867031616210937e+02, 2.944628295898438e+02, 3.018219305419922e+02, 3.112684887695312e+02, 3.221075372314453e+02, 3.322606811523438e+02, 3.387562322998047e+02, 3.478349536132812e+02, 3.548986456298828e+02, 3.630556335449219e+02, 3.734792327880859e+02, 3.821137048339844e+02, 3.9100537109375e+02, 3.993393884277344e+02, 4.055136315917969e+02, 4.146830444335938e+02, 4.211665301513672e+02, 4.273165185546875e+02, 4.367381896972656e+02, 4.4332984375e+02, 4.505845322248865e+02, 4.604355163574219e+02, 4.682505743408203e+02, 4.766055285644532e+02, 4.841547241210938e+02, 4.906881713867188e+02, 4.962159729003906e+02, 5.033721923828125e+02, 5.109615808105469e+02, 5.174055786132812e+02, 5.246083984375e+02, 5.317506201171875e+02, 5.371497192382812e+02, 5.429130517578125e+02, 5.493897277832032e+02, 5.566776123046875e+02, 5.634422680664062e+02, 5.685612963867187e+02, 5.734464721679688e+02, 5.775297924804687e+02, 5.827681274414062e+02, 5.87418212890625e+02, 5.900939392089844e+02, 5.94398193359375e+02, 5.994327392578125e+02, 6.02690673828125e+02, 6.059927978515625e+02, 6.0879345703125e+02, 6.120137243652343e+02, 6.1494921875e+02, 6.189859619140625e+02, 6.228996997070312e+02, 6.263629150390625e+02, 6.301809301757812e+02, 6.336600549316406e+02, 6.380527954101562e+02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case940.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case940.txt index a5403b3e18..1984adee87 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case940.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case940.txt @@ -1,20 +1,20 @@ -last-generated=2021-05-25 +last-generated=2022-07-06 statistics-simulation= { "linear": "0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0", "nonlinear": "13", - "number of continuous time states": "23", + "number of continuous time states": "25", "numerical Jacobians": "0" } time=[0e+00, 3.15396e+07] checkResultsAccordingToASHRAEHeatingOrTempMax.lowerLimit=[7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02, 7.93e+02] -AnnualHeatingLoad=[0e+00, 1.260588912963867e+02, 1.515616428108253e+02, 1.538113250732422e+02, 1.647730712890625e+02, 1.749276733398438e+02, 2.583368225097656e+02, 2.623338012695312e+02, 2.725069274902344e+02, 2.873079528808594e+02, 3.793365478515625e+02, 4.211843566894531e+02, 4.258999328613281e+02, 4.789964361572266e+02, 5.055029602050781e+02, 5.294905395507812e+02, 5.309129028320312e+02, 5.455914916992188e+02, 5.83988037109375e+02, 5.953950051812916e+02, 5.974164428710938e+02, 6.006836547851562e+02, 6.073380222648781e+02, 6.262518920898438e+02, 6.274931030273438e+02, 6.274931030273438e+02, 6.582737426757812e+02, 6.595673217773438e+02, 6.670469970703125e+02, 7.008553466796875e+02, 7.008794555664062e+02, 7.01385986328125e+02, 7.01385986328125e+02, 7.086058349609375e+02, 7.121777954101562e+02, 7.184713745117188e+02, 7.279329199218751e+02, 7.3362548828125e+02, 7.3362548828125e+02, 7.3362548828125e+02, 7.3362548828125e+02, 7.336548461914062e+02, 7.336548461914062e+02, 7.336548461914062e+02, 7.406620751953125e+02, 7.506790771484375e+02, 7.506790771484375e+02, 7.506791381835938e+02, 7.506791381835938e+02, 7.506791381835938e+02, 7.506791381835938e+02, 7.506791381835938e+02, 7.506791381835938e+02, 7.506791381835938e+02, 7.506791381835938e+02, 7.506791381835938e+02, 7.506791381835938e+02, 7.506791381835938e+02, 7.506791381835938e+02, 7.506791381835938e+02, 7.506791381835938e+02, 7.506791381835938e+02, 7.506791381835938e+02, 7.506791381835938e+02, 7.506791381835938e+02, 7.506791381835938e+02, 7.506791381835938e+02, 7.506791381835938e+02, 7.506791381835938e+02, 7.506791381835938e+02, 7.506791381835938e+02, 7.506791381835938e+02, 7.511219482421875e+02, 7.511219482421875e+02, 7.51467041015625e+02, 7.51467041015625e+02, 7.525465087890625e+02, 7.5255322265625e+02, 7.560530395507812e+02, 7.560530395507812e+02, 7.560530395507812e+02, 7.560530395507812e+02, 7.560531616210938e+02, 7.7276220703125e+02, 7.875662231445312e+02, 7.913118896484375e+02, 7.918119506835938e+02, 8.14215087890625e+02, 8.281201782226562e+02, 8.293764038085938e+02, 8.4020458984375e+02, 8.502099609375e+02, 8.79832509765625e+02, 9.05962646484375e+02, 9.78419921875e+02, 9.929775390625e+02, 1.01610888671875e+03, 1.020523864746094e+03, 1.023091796875e+03, 1.02572607421875e+03, 1.031789672851562e+03] +AnnualHeatingLoad=[0e+00, 1.260736846923828e+02, 1.515859655754888e+02, 1.538353881835938e+02, 1.648001098632812e+02, 1.749592437744141e+02, 2.583772277832031e+02, 2.623750438154888e+02, 2.725538635253906e+02, 2.873623657226562e+02, 3.793995971679688e+02, 4.21254150390625e+02, 4.259736633300781e+02, 4.79076967163086e+02, 5.055909118652344e+02, 5.295845336914062e+02, 5.310076293945312e+02, 5.456907958984375e+02, 5.840927124023438e+02, 5.955042925395536e+02, 5.975272216796875e+02, 6.0079638671875e+02, 6.074543249422047e+02, 6.263717651367188e+02, 6.276141967773438e+02, 6.276141967773438e+02, 6.584013061523438e+02, 6.596961059570312e+02, 6.671751098632812e+02, 7.009903564453125e+02, 7.01014404296875e+02, 7.015213623046875e+02, 7.015213623046875e+02, 7.087427368164062e+02, 7.12316650390625e+02, 7.186127319335938e+02, 7.280766625976562e+02, 7.337715454101562e+02, 7.337715454101562e+02, 7.337715454101562e+02, 7.337715454101562e+02, 7.338006591796875e+02, 7.338006591796875e+02, 7.338006591796875e+02, 7.408078271484375e+02, 7.508272094726562e+02, 7.508272094726562e+02, 7.508272705078125e+02, 7.508272705078125e+02, 7.508272705078125e+02, 7.508272705078125e+02, 7.508272705078125e+02, 7.508272705078125e+02, 7.508272705078125e+02, 7.508272705078125e+02, 7.508272705078125e+02, 7.508272705078125e+02, 7.508272705078125e+02, 7.508272705078125e+02, 7.508272705078125e+02, 7.508272705078125e+02, 7.508272705078125e+02, 7.508272705078125e+02, 7.508272705078125e+02, 7.508272705078125e+02, 7.508272705078125e+02, 7.508272705078125e+02, 7.508272705078125e+02, 7.508272705078125e+02, 7.508272705078125e+02, 7.508272705078125e+02, 7.508272705078125e+02, 7.512705078125e+02, 7.512705078125e+02, 7.516159057617188e+02, 7.516159057617188e+02, 7.526964111328125e+02, 7.527029418945312e+02, 7.562039184570312e+02, 7.562039184570312e+02, 7.562039184570312e+02, 7.562039184570312e+02, 7.562039794921875e+02, 7.729146728515625e+02, 7.877244873046875e+02, 7.91473388671875e+02, 7.919740600585938e+02, 8.14378662109375e+02, 8.282877197265625e+02, 8.295443725585938e+02, 8.403763427734375e+02, 8.503857421875e+02, 8.800084448242187e+02, 9.061476440429688e+02, 9.786160278320312e+02, 9.931826782226562e+02, 1.016323608398438e+03, 1.020740295410156e+03, 1.023308837890625e+03, 1.025944458007812e+03, 1.03201171875e+03] checkResultsAccordingToASHRAEHeatingOrTempMax.upperLimit=[1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03, 1.411e+03] checkResultsAccordingToASHRAECoolingOrTempMin.lowerLimit=[-3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03, -3.241e+03] -AnnualCoolingLoad=[0e+00, -1.2199667096138e-01, -1.223583507537842e+01, -4.158978271484375e+01, -6.438922119140625e+01, -7.681576538085938e+01, -7.756944274902344e+01, -1.085560531616211e+02, -1.193893966674805e+02, -1.320594635009766e+02, -1.39235595703125e+02, -1.422582092285156e+02, -1.601877899169922e+02, -1.601951904296875e+02, -1.651223907470703e+02, -1.698241273372545e+02, -1.886965179443359e+02, -1.988724212646484e+02, -2.052309265136719e+02, -2.06731689453125e+02, -2.2732373046875e+02, -2.349154357910156e+02, -2.467939147949219e+02, -2.467939147949219e+02, -2.794596264648437e+02, -3.132471618652344e+02, -3.132471618652344e+02, -3.182454656163711e+02, -3.223993225097656e+02, -3.223993225097656e+02, -3.339630432128906e+02, -3.381825561523438e+02, -3.773414721679687e+02, -3.791574096679688e+02, -3.801827697753906e+02, -3.801827697753906e+02, -3.801827697753906e+02, -3.816212768554688e+02, -4.018859265136718e+02, -4.137265319824219e+02, -4.196969909667969e+02, -4.196969909667969e+02, -4.204830322265625e+02, -4.283913879394531e+02, -4.313312072753906e+02, -4.313312072753906e+02, -4.375157165527344e+02, -4.378371276855469e+02, -4.42898681640625e+02, -4.752365460205078e+02, -5.219852294921875e+02, -5.382954711914062e+02, -5.50645029296875e+02, -5.769834387207031e+02, -6.066571044921875e+02, -6.505668823242188e+02, -7.065098559570313e+02, -7.749301708984375e+02, -8.36944208984375e+02, -8.715082397460938e+02, -9.280343017578125e+02, -9.534327600097656e+02, -9.899573364257812e+02, -1.07981259765625e+03, -1.115187963867188e+03, -1.156956665039062e+03, -1.25925841796875e+03, -1.3416223046875e+03, -1.430562622070312e+03, -1.526584985351562e+03, -1.577821362304687e+03, -1.624314697265625e+03, -1.68071216796875e+03, -1.736562602539062e+03, -1.791807373046875e+03, -1.864104125976562e+03, -1.90815384765625e+03, -1.977294189453125e+03, -1.998718764648437e+03, -2.061536376953125e+03, -2.158120361328125e+03, -2.234796328125e+03, -2.277379150390625e+03, -2.31176904296875e+03, -2.318661474609375e+03, -2.345486328125e+03, -2.37117822265625e+03, -2.38316943359375e+03, -2.39233203125e+03, -2.42316357421875e+03, -2.42570537109375e+03, -2.440002197265625e+03, -2.459640380859375e+03, -2.4617548828125e+03, -2.461882568359375e+03, -2.466627197265625e+03, -2.467613037109375e+03, -2.480767333984375e+03, -2.507743955078125e+03, -2.532726318359375e+03, -2.551586669921875e+03] +AnnualCoolingLoad=[0e+00, -1.261514872312546e-01, -1.224112510681152e+01, -4.159230422973633e+01, -6.438980102539062e+01, -7.681521606445312e+01, -7.757073974609375e+01, -1.085562210083008e+02, -1.193879547119141e+02, -1.320571136474609e+02, -1.392364654541016e+02, -1.422604370117188e+02, -1.601879730224609e+02, -1.601958923339844e+02, -1.651221466064453e+02, -1.698237000911608e+02, -1.886940612792969e+02, -1.988685150146484e+02, -2.052267456054688e+02, -2.067272033691406e+02, -2.273169403076172e+02, -2.349064331054688e+02, -2.467839813232422e+02, -2.467839813232422e+02, -2.794459155273437e+02, -3.132321472167969e+02, -3.132321472167969e+02, -3.182277226903809e+02, -3.223802185058594e+02, -3.223802185058594e+02, -3.33942138671875e+02, -3.381596374511719e+02, -3.773157458496094e+02, -3.791313171386719e+02, -3.801557006835938e+02, -3.801557006835938e+02, -3.801557006835938e+02, -3.815926208496094e+02, -4.018546044921875e+02, -4.136942443847656e+02, -4.196625671386719e+02, -4.196625671386719e+02, -4.2044775390625e+02, -4.283524780273438e+02, -4.312919616699219e+02, -4.312919616699219e+02, -4.374747009277344e+02, -4.377955017089844e+02, -4.428558654785156e+02, -4.751914782714844e+02, -5.219386596679688e+02, -5.382486572265625e+02, -5.5059693359375e+02, -5.769356481933594e+02, -6.066084594726562e+02, -6.505168273925781e+02, -7.064588720703125e+02, -7.748786572265625e+02, -8.368921313476562e+02, -8.714540405273438e+02, -9.279804077148438e+02, -9.533773657226562e+02, -9.899030151367188e+02, -1.0797623046875e+03, -1.115137182617188e+03, -1.156904663085938e+03, -1.259203911132812e+03, -1.341567373046875e+03, -1.430509399414062e+03, -1.526531984863281e+03, -1.577766967773438e+03, -1.624259765625e+03, -1.680655161132813e+03, -1.73650486328125e+03, -1.791749633789062e+03, -1.864047607421875e+03, -1.908095288085937e+03, -1.977230224609375e+03, -1.998652622070312e+03, -2.06146923828125e+03, -2.1580517578125e+03, -2.234726259765625e+03, -2.277306884765625e+03, -2.3116953125e+03, -2.31858701171875e+03, -2.345410888671875e+03, -2.37110009765625e+03, -2.383089111328125e+03, -2.392250244140625e+03, -2.4230791015625e+03, -2.425619677734375e+03, -2.439915283203125e+03, -2.45955224609375e+03, -2.461666259765625e+03, -2.461798095703125e+03, -2.466542236328125e+03, -2.467528076171875e+03, -2.480679931640625e+03, -2.507653271484375e+03, -2.5326337890625e+03, -2.5514921875e+03] checkResultsAccordingToASHRAECoolingOrTempMin.upperLimit=[-2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03, -2.079e+03] checkResultsAccordingToASHRAEHeatingOrTempMax.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00] checkResultsAccordingToASHRAECoolingOrTempMin.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00] -Room.thermRoom.T=[2.941499938964844e+02, 2.944613421630859e+02, 2.931503079543109e+02, 2.959147064208984e+02, 2.995510888671875e+02, 2.929070068359375e+02, 2.947454284667969e+02, 2.931501907753733e+02, 2.909229602050781e+02, 2.984078942871094e+02, 2.93947216796875e+02, 2.904650445556641e+02, 2.996085107421875e+02, 2.931500244140625e+02, 2.9367181640625e+02, 3.001498863850165e+02, 2.970574658203125e+02, 2.936008575439453e+02, 2.97296005859375e+02, 2.931501262987669e+02, 2.959275634765625e+02, 2.961080889892578e+02, 2.931500249975726e+02, 2.943492718505859e+02, 3.001500158691406e+02, 2.945910949707031e+02, 2.945172839355469e+02, 3.001501606277238e+02, 2.901261242675781e+02, 2.967140826416016e+02, 2.987888122558594e+02, 2.965543933105469e+02, 3.001499340820312e+02, 2.94740668334961e+02, 2.966304089355469e+02, 2.968224517822266e+02, 2.931501440429687e+02, 2.975974560546875e+02, 3.001499633789062e+02, 2.946796038818359e+02, 2.984100868041838e+02, 2.977648162841797e+02, 2.961882556152344e+02, 2.994716156005859e+02, 2.931500036621094e+02, 2.987595672607422e+02, 2.954055932617188e+02, 2.990642333984375e+02, 2.983725085449219e+02, 3.001499633789062e+02, 3.001500549316406e+02, 2.949523529052734e+02, 3.001499633789062e+02, 3.001500958251953e+02, 2.993324572753907e+02, 3.001499328613281e+02, 3.0015013671875e+02, 3.001499633789062e+02, 3.001499487304687e+02, 2.998236895751953e+02, 2.998402094196981e+02, 3.001498284912109e+02, 2.990920544433594e+02, 3.001499633789062e+02, 3.001499609375e+02, 2.992161193847656e+02, 3.001499633789062e+02, 3.001500628662109e+02, 2.992597253417969e+02, 3.001499328613281e+02, 3.001501159667969e+02, 2.976808752441406e+02, 3.001499328613281e+02, 3.001502056884765e+02, 2.969885217285157e+02, 2.965174255371094e+02, 3.001502551269531e+02, 2.921057983398438e+02, 3.001498815917969e+02, 2.999698208079619e+02, 2.990162902832031e+02, 3.001498272705078e+02, 2.969194104003906e+02, 2.941092669677735e+02, 3.001500415039063e+02, 2.950759826660156e+02, 2.975633740234375e+02, 2.934269702148438e+02, 2.932399572753906e+02, 2.989241418457031e+02, 3.001501831054687e+02, 2.955636218261719e+02, 2.931499633789062e+02, 2.932024369673296e+02, 2.906501940917969e+02, 2.931733298675156e+02, 2.954731115722656e+02, 2.944341223144531e+02, 3.001499194335938e+02, 2.939287251652898e+02, 2.947994689941406e+02] -Room.starRoom.T=[2.896538391113281e+02, 2.958947723388672e+02, 2.926107468670648e+02, 2.967074432373047e+02, 3.008285900878906e+02, 2.936149078369141e+02, 2.956535070800781e+02, 2.935951132985343e+02, 2.91877861328125e+02, 2.992613793945313e+02, 2.949178405761719e+02, 2.9104189453125e+02, 3.001858850097656e+02, 2.902525524902344e+02, 2.944971899414062e+02, 3.0066123248459e+02, 2.97725380859375e+02, 2.943275231933594e+02, 2.982467907714844e+02, 2.935431621874388e+02, 2.966449157714844e+02, 2.968487127685547e+02, 2.930941722279069e+02, 2.947573028564453e+02, 3.031016845703125e+02, 2.9502197265625e+02, 2.950638879394531e+02, 3.00896461048221e+02, 2.906360693359375e+02, 2.971255828857422e+02, 2.9933330078125e+02, 2.970262951660156e+02, 3.007577099609375e+02, 2.952356573486328e+02, 2.970001501464844e+02, 2.968950927734375e+02, 2.930169677734375e+02, 2.979425665283203e+02, 3.005964990234375e+02, 2.949026434326172e+02, 2.987502535543912e+02, 2.977927453613281e+02, 2.964181848144531e+02, 2.996863110351562e+02, 2.927379187011718e+02, 2.988437683105469e+02, 2.956707287597656e+02, 2.992252508544922e+02, 2.986619396972656e+02, 3.007571417236328e+02, 3.0291943359375e+02, 2.951754107666015e+02, 3.01484892578125e+02, 3.008749987792969e+02, 2.996325634765625e+02, 3.022234985351562e+02, 3.013460717773438e+02, 3.007982977294922e+02, 3.024941040039063e+02, 2.999541015625e+02, 3.001155352208656e+02, 3.028857629394531e+02, 2.992656799316406e+02, 3.010146264648437e+02, 3.034333935546875e+02, 2.994443115234375e+02, 3.01867861328125e+02, 3.059355084228516e+02, 2.996310217285156e+02, 3.016865087890625e+02, 3.048794616699219e+02, 2.98164521484375e+02, 3.006780224609375e+02, 3.035018621826172e+02, 2.975174536132812e+02, 2.971780548095703e+02, 3.022012658691406e+02, 2.925768530273438e+02, 3.00992529296875e+02, 3.005923468325319e+02, 2.996174865722656e+02, 3.046322723388672e+02, 2.975504284667969e+02, 2.947940643310547e+02, 3.014701049804688e+02, 2.957533111572266e+02, 2.982862683105469e+02, 2.942035693359375e+02, 2.940139453125e+02, 2.995466491699219e+02, 3.03592919921875e+02, 2.958990521240235e+02, 2.919393249511719e+02, 2.93821141477491e+02, 2.912560473632813e+02, 2.939106910177311e+02, 2.963482275390625e+02, 2.952427935791015e+02, 3.012164978027344e+02, 2.948800661241686e+02, 2.955680541992188e+02] -TransmittedSolarRadiation_room=[0e+00, 1.13098779296875e+01, 2.616010454773071e+01, 4.389717102050781e+01, 5.918961349487304e+01, 7.433197021484375e+01, 8.556302642822266e+01, 1.003724164709581e+02, 1.156246337890625e+02, 1.345742797851562e+02, 1.428017028808594e+02, 1.544989013671875e+02, 1.705409240722656e+02, 1.774770861816406e+02, 1.932689361572266e+02, 2.075347435627509e+02, 2.213095611572266e+02, 2.364062805175781e+02, 2.496878063964844e+02, 2.60985688403856e+02, 2.750845642089844e+02, 2.882597198486328e+02, 2.998629438061103e+02, 3.089258728027344e+02, 3.219311572265625e+02, 3.322965393066406e+02, 3.404468688964844e+02, 3.503659053501971e+02, 3.563330078125e+02, 3.649187927246094e+02, 3.726021301269531e+02, 3.801142272949219e+02, 3.884617309570312e+02, 3.934202777099609e+02, 4.005374450683594e+02, 4.054534301757812e+02, 4.083182958984375e+02, 4.135330505371094e+02, 4.187061462402344e+02, 4.22318042602539e+02, 4.269201049804688e+02, 4.303540270996094e+02, 4.334161376953125e+02, 4.371629028320312e+02, 4.396222497558594e+02, 4.423736267089844e+02, 4.4526953125e+02, 4.481280950927734e+02, 4.508403625488281e+02, 4.544350280761719e+02, 4.576450500488281e+02, 4.600736389160156e+02, 4.634634704589844e+02, 4.661341851806641e+02, 4.697486572265625e+02, 4.742628479003906e+02, 4.778987683105469e+02, 4.828980102539062e+02, 4.881311877441406e+02, 4.913873291015625e+02, 4.974091796875e+02, 5.027920172119141e+02, 5.070614074707031e+02, 5.1513427734375e+02, 5.222765502929688e+02, 5.28474609375e+02, 5.384838256835938e+02, 5.474867163085937e+02, 5.567859497070312e+02, 5.671657104492188e+02, 5.7749501953125e+02, 5.860980834960938e+02, 5.974549560546875e+02, 6.097917370605469e+02, 6.212953491210938e+02, 6.3471142578125e+02, 6.481332446289063e+02, 6.602135620117188e+02, 6.7308451171875e+02, 6.872186510102088e+02, 7.05236328125e+02, 7.225624243164062e+02, 7.355882788085937e+02, 7.496426391601562e+02, 7.630135400390625e+02, 7.775435791015625e+02, 7.925661010742188e+02, 8.023069262695312e+02, 8.157550048828125e+02, 8.338759155273438e+02, 8.470837524414062e+02, 8.581214599609375e+02, 8.684511108398438e+02, 8.816201848628447e+02, 8.932039794921875e+02, 9.103707885742188e+02, 9.2551853515625e+02, 9.402841186523438e+02, 9.567621215820312e+02, 9.70412335370038e+02, 9.888770141601562e+02] +Room.thermRoom.T=[2.941499938964844e+02, 2.944626293945312e+02, 2.931503195140905e+02, 2.959163745117187e+02, 2.995499719238281e+02, 2.92908642578125e+02, 2.947476147460937e+02, 2.931501253429508e+02, 2.909250207519531e+02, 2.984095129394531e+02, 2.939447631835938e+02, 2.904669012451172e+02, 2.996095935058594e+02, 2.931500244140625e+02, 2.936735229492188e+02, 3.001498917045943e+02, 2.970537963867188e+02, 2.936026727294922e+02, 2.972984509277344e+02, 2.931501263258281e+02, 2.959288879394531e+02, 2.961090380859375e+02, 2.931500444244707e+02, 2.943502056884765e+02, 3.001500158691406e+02, 2.945918273925781e+02, 2.945186572265625e+02, 3.001501323792461e+02, 2.901274719238281e+02, 2.967153875732422e+02, 2.987867736816406e+02, 2.965556335449219e+02, 3.001499340820312e+02, 2.947386077880859e+02, 2.966311108398438e+02, 2.968229156494141e+02, 2.931501440429687e+02, 2.975979528808594e+02, 3.001499633789062e+02, 2.946791247558594e+02, 2.984108775219634e+02, 2.977650921630859e+02, 2.961879138183594e+02, 2.994722235107422e+02, 2.931500036621094e+02, 2.987595489501953e+02, 2.954063256835938e+02, 2.990630139160156e+02, 2.983729162597656e+02, 3.001499633789062e+02, 3.001500549316406e+02, 2.949529803466797e+02, 3.001499633789062e+02, 3.001500958251953e+02, 2.993330712890625e+02, 3.001499328613281e+02, 3.0015013671875e+02, 3.001499633789062e+02, 3.001499487304687e+02, 2.998225390625e+02, 2.998406361245524e+02, 3.001498107910156e+02, 2.990915844726562e+02, 3.001499633789062e+02, 3.001499609375e+02, 2.992160430908203e+02, 3.001499633789062e+02, 3.001500628662109e+02, 2.992604260253906e+02, 3.001499328613281e+02, 3.001501159667969e+02, 2.976818170166015e+02, 3.001499328613281e+02, 3.001502056884765e+02, 2.969896435546875e+02, 2.965186920166016e+02, 3.001502551269531e+02, 2.921068377685547e+02, 3.001498815917969e+02, 2.999668728497238e+02, 2.990171081542969e+02, 3.001498272705078e+02, 2.969179760742188e+02, 2.94110776977539e+02, 3.001500415039063e+02, 2.950772644042969e+02, 2.975646276855469e+02, 2.934260809326172e+02, 2.932415856933594e+02, 2.989254449462891e+02, 3.001501831054687e+02, 2.95564599609375e+02, 2.931499633789062e+02, 2.932025402614049e+02, 2.906519055175781e+02, 2.931749795263561e+02, 2.954695056152344e+02, 2.944355572509766e+02, 3.001499194335938e+02, 2.939262590150576e+02, 2.948011169433594e+02] +Room.starRoom.T=[2.896538391113281e+02, 2.958953076171875e+02, 2.926119098716698e+02, 2.967082769775391e+02, 3.008281713867187e+02, 2.936159790039063e+02, 2.956546557617187e+02, 2.935953626534083e+02, 2.918792272949219e+02, 2.992620501708984e+02, 2.949176208496094e+02, 2.910431280517578e+02, 3.001861657714844e+02, 2.90253193359375e+02, 2.944982275390625e+02, 3.006612378041679e+02, 2.977244750976562e+02, 2.943286669921875e+02, 2.982478186035156e+02, 2.93543747228e+02, 2.966456298828125e+02, 2.968492999267578e+02, 2.930949581101161e+02, 2.947579168701172e+02, 3.031015405273437e+02, 2.950226593017578e+02, 2.950647119140625e+02, 3.008960556487384e+02, 2.906369543457031e+02, 2.971261743164063e+02, 2.993327331542969e+02, 2.970269555664062e+02, 3.007576794433594e+02, 2.952354119873047e+02, 2.970004858398437e+02, 2.968952362060547e+02, 2.930173059082031e+02, 2.979426361083985e+02, 3.00596376953125e+02, 2.949029211425781e+02, 2.987506170260771e+02, 2.977927160644531e+02, 2.964182312011719e+02, 2.996864471435547e+02, 2.927381420898437e+02, 2.988435485839844e+02, 2.956711560058594e+02, 2.992247015380859e+02, 2.986621899414063e+02, 3.007570739746094e+02, 3.0291943359375e+02, 2.951758990478515e+02, 3.014848620605469e+02, 3.008750085449219e+02, 2.996328381347656e+02, 3.022234954833984e+02, 3.013460717773438e+02, 3.007983282470703e+02, 3.024941271972656e+02, 2.999538293457031e+02, 3.001156878087563e+02, 3.028857757568359e+02, 2.992657019042969e+02, 3.010146569824219e+02, 3.034333630371094e+02, 2.994443634033203e+02, 3.018676940917969e+02, 3.059355163574219e+02, 2.996312963867188e+02, 3.016865393066406e+02, 3.048794006347656e+02, 2.981650286865234e+02, 3.006779870605469e+02, 3.035018927001953e+02, 2.975180249023438e+02, 2.971787872314453e+02, 3.022011706542969e+02, 2.925776483154297e+02, 3.009925598144531e+02, 3.0059225297872e+02, 2.996178833007813e+02, 3.04632211303711e+02, 2.975503454589844e+02, 2.947949798583984e+02, 3.014698742675781e+02, 2.957540954589844e+02, 2.982868176269531e+02, 2.942037310791015e+02, 2.94014921875e+02, 2.995471038818359e+02, 3.035927307128906e+02, 2.958996630859375e+02, 2.919395080566406e+02, 2.938215484619141e+02, 2.912572790527344e+02, 2.939116801311416e+02, 2.963477563476562e+02, 2.95243505859375e+02, 3.012163928222656e+02, 2.948799069378827e+02, 2.955690307617188e+02] +TransmittedSolarRadiation_room=[0e+00, 1.130984645843506e+01, 2.616013861422974e+01, 4.389719390869141e+01, 5.918962158203125e+01, 7.433191680908203e+01, 8.556304168701172e+01, 1.003724275755213e+02, 1.156246032714844e+02, 1.3457421875e+02, 1.428016418457031e+02, 1.544988861083984e+02, 1.705408782958984e+02, 1.774771472167969e+02, 1.932688751220703e+02, 2.075348503742743e+02, 2.213096069335938e+02, 2.364063415527344e+02, 2.496880810546875e+02, 2.609860191125405e+02, 2.750848388671875e+02, 2.882599450683594e+02, 2.998631931476721e+02, 3.089262084960938e+02, 3.219313012695313e+02, 3.322967834472656e+02, 3.404470520019531e+02, 3.503659054569783e+02, 3.563329772949219e+02, 3.649189758300781e+02, 3.726023742675781e+02, 3.801144104003906e+02, 3.884618225097656e+02, 3.934204302978516e+02, 4.0053759765625e+02, 4.0545361328125e+02, 4.083185375976562e+02, 4.135331726074219e+02, 4.187062377929688e+02, 4.223181518554687e+02, 4.26920166015625e+02, 4.303541796875e+02, 4.334162670898438e+02, 4.371630249023438e+02, 4.39622392578125e+02, 4.42373779296875e+02, 4.452697143554688e+02, 4.481282476806641e+02, 4.508405151367188e+02, 4.544350280761719e+02, 4.576450500488281e+02, 4.600736083984375e+02, 4.634634704589844e+02, 4.661343579101563e+02, 4.697488403320312e+02, 4.74262939453125e+02, 4.77898798828125e+02, 4.828980712890625e+02, 4.881312255859375e+02, 4.913872375488281e+02, 4.974091796875e+02, 5.027920477294922e+02, 5.070614685058594e+02, 5.151347045898438e+02, 5.222770385742188e+02, 5.284750366210938e+02, 5.384840087890625e+02, 5.47487021484375e+02, 5.567864379882812e+02, 5.67166259765625e+02, 5.774954467773438e+02, 5.860986328125e+02, 5.974553833007812e+02, 6.097922253417969e+02, 6.212959594726562e+02, 6.347122192382812e+02, 6.48133994140625e+02, 6.602139282226562e+02, 6.730849389648438e+02, 6.872192725017978e+02, 7.052367553710938e+02, 7.225627905273437e+02, 7.35588583984375e+02, 7.496429443359375e+02, 7.630137231445312e+02, 7.775437622070312e+02, 7.925662231445312e+02, 8.023069787597656e+02, 8.157550048828125e+02, 8.338759155273438e+02, 8.470838012695312e+02, 8.581213989257812e+02, 8.684510498046875e+02, 8.816199700491769e+02, 8.932039184570312e+02, 9.1037060546875e+02, 9.25518359375e+02, 9.40283935546875e+02, 9.567618774414062e+02, 9.704121250461887e+02, 9.888767700195312e+02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case950.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case950.txt index 3bc7787bbe..345cc15492 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case950.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case950.txt @@ -1,16 +1,16 @@ -last-generated=2021-05-25 +last-generated=2022-07-06 statistics-simulation= { "linear": "0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0", "nonlinear": "13", - "number of continuous time states": "22", + "number of continuous time states": "24", "numerical Jacobians": "0" } time=[0e+00, 3.15396e+07] checkResultsAccordingToASHRAECoolingOrTempMin.lowerLimit=[-9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02, -9.21e+02] -AnnualCoolingLoad=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -2.293781108164694e-05, -2.293781108164694e-05, -2.293781108164694e-05, -2.293781108164694e-05, -1.465215921401978e+00, -1.46570611000061e+00, -1.465763449668884e+00, -1.465797066688538e+00, -1.465976595878601e+00, -1.465976595878601e+00, -1.466283321380615e+00, -1.46633243560791e+00, -3.454582929611206e+00, -3.454617738723755e+00, -3.454629182815552e+00, -3.454755306243896e+00, -3.454862117767334e+00, -3.455064535140991e+00, -3.458279609680176e+00, -3.459680318832397e+00, -3.460367202758789e+00, -3.461555242538452e+00, -3.462714433670044e+00, -3.464360952377319e+00, -3.465991735458374e+00, -3.467041730880737e+00, -3.472912788391113e+00, -3.47537088394165e+00, -3.478099346160889e+00, -6.457096576690674e+00, -1.976033592224121e+01, -2.571200561523438e+01, -2.695017242431641e+01, -3.319369506835938e+01, -3.704421234130859e+01, -4.738106536865234e+01, -6.893975830078125e+01, -9.716921997070312e+01, -1.264950506591797e+02, -1.350859680175781e+02, -1.531717681884766e+02, -1.603478610229492e+02, -1.689779663085938e+02, -2.093344116210938e+02, -2.16246865234375e+02, -2.244742584228516e+02, -2.707675170898438e+02, -3.091989862060547e+02, -3.447758178710938e+02, -3.846230773925781e+02, -3.962960754394531e+02, -4.051353759765625e+02, -4.198894653320312e+02, -4.294671020507812e+02, -4.402741088867188e+02, -4.59512939453125e+02, -4.628730773925781e+02, -4.822987976074219e+02, -4.834573974609375e+02, -4.931379089355469e+02, -5.158106079101562e+02, -5.315004333496094e+02, -5.316914672851562e+02, -5.366063842773438e+02, -5.366063842773438e+02, -5.366063842773438e+02, -5.366063842773438e+02, -5.366063842773438e+02, -5.366063842773438e+02, -5.366063842773438e+02, -5.366063842773438e+02, -5.367400512695312e+02, -5.370385131835938e+02, -5.370385131835938e+02, -5.370385131835938e+02, -5.370385131835938e+02, -5.370385131835938e+02, -5.370385131835938e+02, -5.370385131835938e+02, -5.370385131835938e+02, -5.370385131835938e+02] +AnnualCoolingLoad=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -2.288044925080612e-05, -2.288044925080612e-05, -2.288044925080612e-05, -2.288044925080612e-05, -1.462166428565979e+00, -1.462655425071716e+00, -1.462712168693542e+00, -1.462745308876038e+00, -1.462921380996704e+00, -1.462921380996704e+00, -1.463227272033691e+00, -1.463276028633118e+00, -3.44852614402771e+00, -3.448567867279053e+00, -3.448581457138062e+00, -3.448727369308472e+00, -3.448855638504028e+00, -3.449079751968384e+00, -3.452298164367676e+00, -3.453706741333008e+00, -3.454423666000366e+00, -3.455642223358154e+00, -3.456831932067871e+00, -3.458476781845093e+00, -3.460120677947998e+00, -3.461184740066528e+00, -3.467055797576904e+00, -3.469518423080444e+00, -3.472253322601318e+00, -6.450663566589355e+00, -1.975155830383301e+01, -2.570258140563965e+01, -2.69389762878418e+01, -3.318161010742188e+01, -3.702878570556641e+01, -4.73602409362793e+01, -6.891712188720703e+01, -9.714144134521484e+01, -1.264630642700195e+02, -1.350507049560547e+02, -1.531279602050781e+02, -1.603020834350586e+02, -1.6892724609375e+02, -2.092808990478516e+02, -2.161896923828125e+02, -2.244134979248047e+02, -2.706975402832031e+02, -3.091242950439453e+02, -3.446920776367188e+02, -3.845289916992188e+02, -3.961926513671875e+02, -4.050243530273438e+02, -4.197708435058594e+02, -4.293401184082031e+02, -4.401391296386719e+02, -4.593663330078125e+02, -4.627217102050781e+02, -4.821360473632812e+02, -4.832913208007812e+02, -4.929610900878906e+02, -5.15618896484375e+02, -5.312954931640625e+02, -5.314845581054688e+02, -5.363931274414062e+02, -5.363931274414062e+02, -5.363931274414062e+02, -5.363931274414062e+02, -5.363931274414062e+02, -5.363931274414062e+02, -5.363931274414062e+02, -5.363931274414062e+02, -5.36525390625e+02, -5.36822021484375e+02, -5.36822021484375e+02, -5.36822021484375e+02, -5.36822021484375e+02, -5.36822021484375e+02, -5.36822021484375e+02, -5.36822021484375e+02, -5.36822021484375e+02, -5.36822021484375e+02] checkResultsAccordingToASHRAECoolingOrTempMin.upperLimit=[-3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02, -3.87e+02] checkResultsAccordingToASHRAECoolingOrTempMin.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00] -Room.thermRoom.T=[2.941499938964844e+02, 2.734813116455078e+02, 2.75940498046875e+02, 2.790116467285156e+02, 2.883763659667969e+02, 2.76395376586914e+02, 2.7459439453125e+02, 2.834683612060547e+02, 2.703461242675781e+02, 2.803632067871094e+02, 2.734846862792969e+02, 2.748872631835937e+02, 2.865314050292969e+02, 2.740406530761718e+02, 2.755635571289063e+02, 2.908864288330078e+02, 2.871028735351563e+02, 2.76287744140625e+02, 2.839059521484375e+02, 2.81709242553711e+02, 2.799051025390625e+02, 2.86528935546875e+02, 2.795038659667969e+02, 2.829689965820313e+02, 2.955269873046875e+02, 2.829763031005859e+02, 2.806912768554687e+02, 2.931188275146484e+02, 2.776469470214844e+02, 2.852419006347656e+02, 2.918799560546875e+02, 2.848948767089844e+02, 2.944730444335938e+02, 2.867419427490235e+02, 2.867228601074219e+02, 2.916908416748047e+02, 2.859987048339844e+02, 2.886977410888672e+02, 2.975431384277344e+02, 2.877169427490234e+02, 2.896095110752188e+02, 2.932209582519531e+02, 2.905934765625e+02, 2.930785949707031e+02, 2.856487145996094e+02, 2.951438232421875e+02, 2.878817175292968e+02, 2.946029187011719e+02, 2.909042944335937e+02, 2.965232299804687e+02, 3.001500549316406e+02, 2.882571893310547e+02, 3.01719404296875e+02, 2.974362554931641e+02, 2.91973544921875e+02, 3.029065063476563e+02, 2.992278039550781e+02, 2.968867938232422e+02, 3.001499560546875e+02, 2.966866162109375e+02, 2.928289955212019e+02, 3.001498284912109e+02, 2.949746276855469e+02, 2.96095283203125e+02, 3.001499914550781e+02, 2.92663525390625e+02, 2.991975830078125e+02, 3.001500628662109e+02, 2.903916186523438e+02, 2.981077770996094e+02, 3.001501770019531e+02, 2.863150091552735e+02, 2.924301037597656e+02, 2.971609661865234e+02, 2.843696435546875e+02, 2.828147430419922e+02, 2.948176879882812e+02, 2.80195673828125e+02, 2.952424523925781e+02, 2.925689215087891e+02, 2.855993286132813e+02, 3.00149888305664e+02, 2.893723364257813e+02, 2.778452166748047e+02, 2.904902355957031e+02, 2.790301513671875e+02, 2.820098706054687e+02, 2.82407724609375e+02, 2.760214990234375e+02, 2.847627239990234e+02, 2.970983032226562e+02, 2.849508892822266e+02, 2.73364287109375e+02, 2.814973571777344e+02, 2.739737512207032e+02, 2.762134979248047e+02, 2.819238610839844e+02, 2.769507397460937e+02, 2.944269775390625e+02, 2.811696069335937e+02, 2.76981201171875e+02] -Room.starRoom.T=[2.896538391113281e+02, 2.740537255859375e+02, 2.782241625976562e+02, 2.84784360961914e+02, 2.891973986816406e+02, 2.804196441650391e+02, 2.798082250976562e+02, 2.838983044433594e+02, 2.759464196777344e+02, 2.865603692626953e+02, 2.73800439453125e+02, 2.771827789306641e+02, 2.913808386230469e+02, 2.741938061523438e+02, 2.805560070800781e+02, 2.917632049560547e+02, 2.874386584472657e+02, 2.802265203857422e+02, 2.84330234375e+02, 2.819542352294922e+02, 2.848274475097656e+02, 2.8689822265625e+02, 2.805134716796875e+02, 2.849211041259766e+02, 2.958213061523438e+02, 2.849889984130859e+02, 2.839949230957031e+02, 2.932483587646485e+02, 2.809135693359375e+02, 2.878897174072266e+02, 2.92188818359375e+02, 2.887393695068359e+02, 2.966522619628906e+02, 2.869863757324219e+02, 2.893625329589844e+02, 2.913993865966797e+02, 2.861305859375e+02, 2.918154486083984e+02, 2.976180603027344e+02, 2.877782202148438e+02, 2.928333830899746e+02, 2.931646856689453e+02, 2.90702099609375e+02, 2.954078149414062e+02, 2.857415515136719e+02, 2.959646026611328e+02, 2.900364697265625e+02, 2.946562567138672e+02, 2.936779711914062e+02, 2.98608275756836e+02, 3.01958251953125e+02, 2.898937817382812e+02, 3.010512036132812e+02, 2.975169256591797e+02, 2.954584057617187e+02, 3.02162222290039e+02, 2.992790075683594e+02, 2.993721807861328e+02, 3.019138403320313e+02, 2.967488311767578e+02, 2.958786445815437e+02, 3.016913171386719e+02, 2.950627502441406e+02, 2.985764111328125e+02, 3.008059655761719e+02, 2.943080810546875e+02, 3.010519128417969e+02, 3.051459393310547e+02, 2.942491955566406e+02, 3.001785656738281e+02, 3.014583618164062e+02, 2.904334564208984e+02, 2.951672973632812e+02, 2.975834515380859e+02, 2.88457470703125e+02, 2.887102813720703e+02, 2.9512826171875e+02, 2.831740423583984e+02, 2.95292548828125e+02, 2.929468231201172e+02, 2.906086364746094e+02, 3.008634155273438e+02, 2.897667529296875e+02, 2.818990753173828e+02, 2.911048669433594e+02, 2.836694458007813e+02, 2.876741821289062e+02, 2.828084185791016e+02, 2.811365356445312e+02, 2.897473260498047e+02, 2.973815368652344e+02, 2.86083373413086e+02, 2.773637805175781e+02, 2.817541619873047e+02, 2.754897326660156e+02, 2.80502490234375e+02, 2.823302319335937e+02, 2.825351666259766e+02, 2.9490310546875e+02, 2.8172107421875e+02, 2.81560791015625e+02] -TransmittedSolarRadiation_room=[0e+00, 1.130984529495239e+01, 2.616017707824707e+01, 4.389722442626953e+01, 5.918968597412109e+01, 7.4331787109375e+01, 8.556234741210938e+01, 1.003806047058105e+02, 1.156240005493164e+02, 1.345734100341797e+02, 1.428005889892578e+02, 1.544976654052734e+02, 1.705397033691406e+02, 1.774761401367188e+02, 1.932674865722656e+02, 2.075330337524414e+02, 2.213083020019531e+02, 2.364050903320312e+02, 2.496863568115234e+02, 2.609852276611328e+02, 2.750832214355469e+02, 2.882586212158203e+02, 2.998622302246094e+02, 3.089251403808594e+02, 3.219310266113282e+02, 3.322968139648438e+02, 3.4044677734375e+02, 3.503660284423828e+02, 3.563331604003906e+02, 3.649189453125e+02, 3.726024475097656e+02, 3.801145629882812e+02, 3.884625854492188e+02, 3.934210485839844e+02, 4.005382385253906e+02, 4.054541625976562e+02, 4.083189367675781e+02, 4.135335083007812e+02, 4.187070922851562e+02, 4.22319189453125e+02, 4.269213256835938e+02, 4.303553393554687e+02, 4.334175415039062e+02, 4.371644287109375e+02, 4.396237963867188e+02, 4.423750915527344e+02, 4.4527099609375e+02, 4.481294989013672e+02, 4.50841796875e+02, 4.544365539550781e+02, 4.576465759277344e+02, 4.600752258300781e+02, 4.634650573730469e+02, 4.661358941650391e+02, 4.697503662109375e+02, 4.74264404296875e+02, 4.779001416015625e+02, 4.828993530273438e+02, 4.881323474121094e+02, 4.913884887695312e+02, 4.974102172851562e+02, 5.027931817626953e+02, 5.070625671386719e+02, 5.15135009765625e+02, 5.222772827148438e+02, 5.284754028320312e+02, 5.384839477539062e+02, 5.47487021484375e+02, 5.567864379882812e+02, 5.671660766601562e+02, 5.774953857421875e+02, 5.860987548828125e+02, 5.9745556640625e+02, 6.097924121093751e+02, 6.212960205078125e+02, 6.347120971679688e+02, 6.481343603515625e+02, 6.6021435546875e+02, 6.730854272460938e+02, 6.872232299804688e+02, 7.052374267578125e+02, 7.225637060546875e+02, 7.355897436523437e+02, 7.496441040039062e+02, 7.630147607421875e+02, 7.775450439453125e+02, 7.925680541992188e+02, 8.023088708496093e+02, 8.157569580078125e+02, 8.338782348632812e+02, 8.470861938476562e+02, 8.581238403320312e+02, 8.68453369140625e+02, 8.816227990722656e+02, 8.932059326171875e+02, 9.103726806640625e+02, 9.255200610351562e+02, 9.402855834960938e+02, 9.567637084960937e+02, 9.704140893554687e+02, 9.888787841796875e+02] +Room.thermRoom.T=[2.941499938964844e+02, 2.734788616943359e+02, 2.7593822265625e+02, 2.790121447753907e+02, 2.883726245117188e+02, 2.763952911376953e+02, 2.745952075195312e+02, 2.834654541015625e+02, 2.70346513671875e+02, 2.803635522460938e+02, 2.734765197753906e+02, 2.748873193359375e+02, 2.865320153808594e+02, 2.740389135742187e+02, 2.755638317871094e+02, 2.908862823486328e+02, 2.870965502929687e+02, 2.762878265380859e+02, 2.839054675292969e+02, 2.817040606689453e+02, 2.799046813964844e+02, 2.865273065185547e+02, 2.794988439941406e+02, 2.829685168457031e+02, 2.95523056640625e+02, 2.829747009277344e+02, 2.806912548828125e+02, 2.931136322021484e+02, 2.776471044921875e+02, 2.85242900390625e+02, 2.918760009765625e+02, 2.848961169433594e+02, 2.944737170410156e+02, 2.867376397705078e+02, 2.867232104492188e+02, 2.916909576416016e+02, 2.859958984375e+02, 2.886979895019531e+02, 2.975424951171875e+02, 2.877140191650391e+02, 2.896103874814194e+02, 2.932200744628906e+02, 2.905914575195313e+02, 2.930797308349609e+02, 2.856469982910156e+02, 2.951444671630859e+02, 2.878817102050782e+02, 2.946013024902344e+02, 2.909048852539062e+02, 2.965239929199219e+02, 3.001500549316406e+02, 2.882571081542969e+02, 3.017195837402344e+02, 2.974337219238281e+02, 2.919741320800781e+02, 3.029069366455078e+02, 2.992254040527343e+02, 2.968876062011719e+02, 3.001499560546875e+02, 2.966845776367188e+02, 2.928289644623844e+02, 3.001498284912109e+02, 2.949729943847656e+02, 2.960960028076172e+02, 3.001499914550781e+02, 2.926624084472656e+02, 2.991981372070313e+02, 3.001500628662109e+02, 2.90392138671875e+02, 2.981087976074219e+02, 3.001501770019531e+02, 2.863152099609375e+02, 2.924305310058594e+02, 2.971549993896484e+02, 2.843703552246094e+02, 2.828158874511719e+02, 2.94811484375e+02, 2.801955230712891e+02, 2.952418774414062e+02, 2.925633721923828e+02, 2.85599169921875e+02, 3.00149888305664e+02, 2.893678527832031e+02, 2.778448345947265e+02, 2.904869482421875e+02, 2.790302825927735e+02, 2.820099340820312e+02, 2.824038037109375e+02, 2.760216711425781e+02, 2.847633709716797e+02, 2.970922241210938e+02, 2.849508898925781e+02, 2.733646838378907e+02, 2.814938641357422e+02, 2.739732092285156e+02, 2.762138763427735e+02, 2.819168627929687e+02, 2.76950923461914e+02, 2.944264562988281e+02, 2.811620318603516e+02, 2.769806213378906e+02] +Room.starRoom.T=[2.896538391113281e+02, 2.740512530517578e+02, 2.782224816894531e+02, 2.847838720703125e+02, 2.891946606445313e+02, 2.804191528320313e+02, 2.798076037597656e+02, 2.83896962890625e+02, 2.759462829589844e+02, 2.865594244384766e+02, 2.737956726074219e+02, 2.771815789794922e+02, 2.913798266601563e+02, 2.741922192382813e+02, 2.805558850097656e+02, 2.917613708496094e+02, 2.87435419921875e+02, 2.802256341552734e+02, 2.843286071777344e+02, 2.819505871582031e+02, 2.848260375976562e+02, 2.868964642333984e+02, 2.805104321289062e+02, 2.849203308105469e+02, 2.958183190917969e+02, 2.849874267578125e+02, 2.839941906738281e+02, 2.932452191162109e+02, 2.809133911132812e+02, 2.8788935546875e+02, 2.921865112304687e+02, 2.887402740478516e+02, 2.966519287109375e+02, 2.86984185180664e+02, 2.893627001953125e+02, 2.913987915039062e+02, 2.861294079589844e+02, 2.918150518798828e+02, 2.976171447753906e+02, 2.877763232421875e+02, 2.928340294376185e+02, 2.931636181640625e+02, 2.907016455078125e+02, 2.954081079101563e+02, 2.85740107421875e+02, 2.959648010253906e+02, 2.900359509277343e+02, 2.94655463256836e+02, 2.936797692871094e+02, 2.986085437011719e+02, 3.019579772949219e+02, 2.898938836669922e+02, 3.010507421875e+02, 2.975157153320313e+02, 2.954588024902343e+02, 3.02161734008789e+02, 2.99278154296875e+02, 2.993723077392578e+02, 3.019138098144531e+02, 2.967477941894531e+02, 2.958781552178148e+02, 3.016911419677734e+02, 2.950623547363281e+02, 2.985768908691406e+02, 3.008052966308594e+02, 2.943076354980469e+02, 3.010518310546875e+02, 3.0514583984375e+02, 2.942494396972656e+02, 3.001786175537109e+02, 3.014570739746094e+02, 2.904331964111328e+02, 2.95166494140625e+02, 2.975803979492188e+02, 2.884576770019531e+02, 2.887112884521484e+02, 2.951252526855469e+02, 2.831739544677735e+02, 2.952910424804688e+02, 2.929444067382813e+02, 2.906082214355469e+02, 3.008619647216797e+02, 2.897643994140625e+02, 2.818983734130859e+02, 2.911023754882813e+02, 2.836695678710938e+02, 2.876735083007812e+02, 2.828062646484375e+02, 2.811360278320312e+02, 2.897461395263672e+02, 2.97378125e+02, 2.860827331542969e+02, 2.773633911132812e+02, 2.817518896484375e+02, 2.754884130859375e+02, 2.805021575927734e+02, 2.823268530273438e+02, 2.825345770263672e+02, 2.949015283203125e+02, 2.817174353027344e+02, 2.815589904785156e+02] +TransmittedSolarRadiation_room=[0e+00, 1.130991512298584e+01, 2.616013320922852e+01, 4.38970947265625e+01, 5.918957534790039e+01, 7.433193206787109e+01, 8.556259918212891e+01, 1.00380926361084e+02, 1.156243515014648e+02, 1.345738677978516e+02, 1.428012756347656e+02, 1.544985198974609e+02, 1.705406494140625e+02, 1.774770709228516e+02, 1.932686462402344e+02, 2.075341735839844e+02, 2.21309476928711e+02, 2.364063568115234e+02, 2.496876690673828e+02, 2.609865704345703e+02, 2.750846252441406e+02, 2.882602197265625e+02, 2.9986384765625e+02, 3.089267883300781e+02, 3.219327661132813e+02, 3.322985534667969e+02, 3.40448486328125e+02, 3.503677069091797e+02, 3.563348693847656e+02, 3.649205932617188e+02, 3.726041442871094e+02, 3.801162719726562e+02, 3.884642944335938e+02, 3.934226965332031e+02, 4.005398864746094e+02, 4.054558715820312e+02, 4.083207067871094e+02, 4.135352783203125e+02, 4.187088317871094e+02, 4.223209594726562e+02, 4.269231262207031e+02, 4.303571697998047e+02, 4.334193115234375e+02, 4.371662292480469e+02, 4.396255969238281e+02, 4.423768310546875e+02, 4.452727661132812e+02, 4.481313195800781e+02, 4.508435974121094e+02, 4.544384155273438e+02, 4.576484069824219e+02, 4.600770568847656e+02, 4.634668884277344e+02, 4.661376843261719e+02, 4.697521057128906e+02, 4.742661163330078e+02, 4.779019116210937e+02, 4.82901123046875e+02, 4.881341552734375e+02, 4.913902587890625e+02, 4.974119567871094e+02, 5.027949163818359e+02, 5.070642565917969e+02, 5.151367797851562e+02, 5.222791137695312e+02, 5.284772338867188e+02, 5.384855346679688e+02, 5.474886083984375e+02, 5.567879638671875e+02, 5.671676635742188e+02, 5.7749697265625e+02, 5.861002807617188e+02, 5.974569702148438e+02, 6.097939379882813e+02, 6.21297607421875e+02, 6.34713623046875e+02, 6.481357641601562e+02, 6.602156982421875e+02, 6.730868310546875e+02, 6.87224755859375e+02, 7.052388916015625e+02, 7.22565048828125e+02, 7.355912670898438e+02, 7.496455688476562e+02, 7.630162255859375e+02, 7.775465698242188e+02, 7.925693969726562e+02, 8.023102136230468e+02, 8.157582397460938e+02, 8.338795166015625e+02, 8.47087353515625e+02, 8.581250610351562e+02, 8.6845458984375e+02, 8.816240197753906e+02, 8.932071533203125e+02, 9.103739013671875e+02, 9.255213427734375e+02, 9.402867431640625e+02, 9.567648071289062e+02, 9.70415126953125e+02, 9.888796997070312e+02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case950FF.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case950FF.txt index 435cc5ab65..aeffb0c6ca 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case950FF.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case950FF.txt @@ -1,19 +1,19 @@ -last-generated=2021-05-25 +last-generated=2022-03-16 statistics-simulation= { "linear": "0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0", "nonlinear": "13", - "number of continuous time states": "21", + "number of continuous time states": "23", "numerical Jacobians": "0" } time=[0e+00, 3.15396e+07] checkResultsAccordingToASHRAEHeatingOrTempMax.lowerLimit=[3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01, 3.55e+01] -FreeFloatRoomTemperature=[2.1e+01, 3.315393137931824e-01, 2.790475616455078e+00, 5.8616881275177e+00, 1.522703464508057e+01, 3.245732116699219e+00, 1.444419198036194e+00, 1.031824842453003e+01, -2.80387001991272e+00, 7.212944192886352e+00, 3.346886694431305e-01, 1.737326488494873e+00, 1.338122158050537e+01, 8.906466913223267e-01, 2.413570709228515e+00, 1.773609123229981e+01, 1.395287620544434e+01, 3.13777449131012e+00, 1.075615875244141e+01, 8.559977951049804e+00, 6.754919242858887e+00, 1.337880393981934e+01, 6.353918113708496e+00, 9.818961887359619e+00, 2.240602798461914e+01, 9.826410293579102e+00, 7.541115741729737e+00, 1.996879173278809e+01, 4.497004585266113e+00, 1.209171926498413e+01, 1.872946853637695e+01, 1.17445778465271e+01, 2.135863075256348e+01, 1.359308031082153e+01, 1.357251045227051e+01, 1.854042282104492e+01, 1.284848838806152e+01, 1.554758163452149e+01, 2.439339691162109e+01, 1.456682729721069e+01, 1.645915377938793e+01, 2.007102046966553e+01, 1.744363487243652e+01, 1.992832492828369e+01, 1.249891166687012e+01, 2.199381999969482e+01, 1.473170745849609e+01, 2.145282508850098e+01, 1.775334800720215e+01, 2.351947052001953e+01, 3.02909984588623e+01, 1.512058574676514e+01, 2.86640438079834e+01, 2.433976860046387e+01, 1.896007102966309e+01, 3.040347785949707e+01, 2.68296085357666e+01, 2.440704845428467e+01, 3.178543792724609e+01, 2.371454406738281e+01, 2.00082953454365e+01, 3.041005947113037e+01, 2.231311065673828e+01, 2.369314563751221e+01, 2.791695648193359e+01, 1.973723602294922e+01, 2.704152038574219e+01, 3.609726341247558e+01, 1.776078239440918e+01, 2.577315898895264e+01, 2.891371040344238e+01, 1.325606916427612e+01, 1.936188316345215e+01, 2.440907444000244e+01, 1.126115760803223e+01, 9.974009037017822e+00, 2.190987663269043e+01, 7.179162740707397e+00, 2.216716644287109e+01, 1.989180477142334e+01, 1.264383029937744e+01, 2.826060684204101e+01, 1.623217323303223e+01, 4.708248720169068e+00, 1.734088081359863e+01, 5.880395555496216e+00, 8.859724922180176e+00, 9.257679576873779e+00, 2.871746606826782e+00, 1.161246704101563e+01, 2.394854698181152e+01, 1.180114009857178e+01, 2.1657470703125e-01, 8.347329387664795e+00, 8.238007211685181e-01, 3.063873863220215e+00, 8.773908653259276e+00, 3.800693564414978e+00, 2.12771435546875e+01, 8.020079822540284e+00, 3.831099510192871e+00] +FreeFloatRoomTemperature=[2.1e+01, 3.291137224435806e-01, 2.78824960231781e+00, 5.862247304916382e+00, 1.522237689971924e+01, 3.24520001411438e+00, 1.445209441184998e+00, 1.031473539352417e+01, -2.80345230102539e+00, 7.213175973892212e+00, 3.263896286487579e-01, 1.7372572016716e+00, 1.33819437789917e+01, 8.886706042289734e-01, 2.413744125366211e+00, 1.773628177642822e+01, 1.39465954208374e+01, 3.137778086662292e+00, 1.075509971618652e+01, 8.553586711883545e+00, 6.754666900634765e+00, 1.337735702514648e+01, 6.348658256530761e+00, 9.818422050476075e+00, 2.240210525512695e+01, 9.824566841125488e+00, 7.541271896362304e+00, 1.996387630462646e+01, 4.497135334014892e+00, 1.209288551330566e+01, 1.872601585388184e+01, 1.174611772537232e+01, 2.135939086914063e+01, 1.358874416351318e+01, 1.357314346313477e+01, 1.854086284637451e+01, 1.284588729858398e+01, 1.554799411773682e+01, 2.439272674560547e+01, 1.456403436660767e+01, 1.646037795962636e+01, 2.00700658416748e+01, 1.744176879882813e+01, 1.99297806930542e+01, 1.249711719512939e+01, 2.199448165893555e+01, 1.473176177978516e+01, 2.145160755157471e+01, 1.775495491027832e+01, 2.352025848388672e+01, 3.028870964050293e+01, 1.512035814285278e+01, 2.86640259552002e+01, 2.433718067169189e+01, 1.896063133239746e+01, 3.040388011932373e+01, 2.682692268371582e+01, 2.440770999908447e+01, 3.178534370422363e+01, 2.371237216949463e+01, 2.000812062657709e+01, 3.041141773223877e+01, 2.231100799560547e+01, 2.369375709533691e+01, 2.791532943725586e+01, 1.973613777160644e+01, 2.704208137512207e+01, 3.609338394165039e+01, 1.776108123779297e+01, 2.577386695861816e+01, 2.890825080871582e+01, 1.325618314743042e+01, 1.936229942321777e+01, 2.440258098602295e+01, 1.126181987762451e+01, 9.975276470184326e+00, 2.190319053649903e+01, 7.178902196884155e+00, 2.216644355773926e+01, 1.988553730010986e+01, 1.264332981109619e+01, 2.825923664093018e+01, 1.622758995056152e+01, 4.707630100250245e+00, 1.733735610961914e+01, 5.880227518081665e+00, 8.859969787597656e+00, 9.253589820861816e+00, 2.871670732498169e+00, 1.161320789337158e+01, 2.394212379455566e+01, 1.180107488632202e+01, 2.168756198883057e-01, 8.343939304351807e+00, 8.231436538696288e-01, 3.063797879219055e+00, 8.766542434692383e+00, 3.800678520202637e+00, 2.1276103515625e+01, 8.012046775817872e+00, 3.830542325973511e+00] checkResultsAccordingToASHRAEHeatingOrTempMax.upperLimit=[3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01, 3.85e+01] checkResultsAccordingToASHRAECoolingOrTempMin.lowerLimit=[-2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01, -2.020000076293945e+01] checkResultsAccordingToASHRAECoolingOrTempMin.upperLimit=[-1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01, -1.860000038146973e+01] checkResultsAccordingToASHRAEHeatingOrTempMax.satisfied=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] checkResultsAccordingToASHRAECoolingOrTempMin.satisfied=[0e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] -Room.thermRoom.T=[2.941499938964844e+02, 2.734815356445313e+02, 2.759404772949219e+02, 2.790116772460938e+02, 2.883770336914063e+02, 2.763957366943359e+02, 2.745944250488281e+02, 2.834682550048828e+02, 2.703461315917968e+02, 2.803629309082031e+02, 2.734846862792969e+02, 2.7488732421875e+02, 2.865312329101562e+02, 2.740406530761718e+02, 2.755635571289063e+02, 2.908860870361328e+02, 2.871028747558594e+02, 2.762877667236328e+02, 2.839061669921875e+02, 2.81709974975586e+02, 2.799049133300781e+02, 2.865288104248047e+02, 2.795039282226563e+02, 2.829689642333984e+02, 2.95556015625e+02, 2.829764099121094e+02, 2.806911242675781e+02, 2.931188006591797e+02, 2.776470080566406e+02, 2.852417175292969e+02, 2.918794555664062e+02, 2.848945715332031e+02, 2.945086364746094e+02, 2.867430944824219e+02, 2.867225085449219e+02, 2.916904266357422e+02, 2.859984887695313e+02, 2.886975885009766e+02, 2.975433935546875e+02, 2.877168206787109e+02, 2.896091421250296e+02, 2.93221019897461e+02, 2.90593623046875e+02, 2.930783227539063e+02, 2.856489074707031e+02, 2.951438232421875e+02, 2.878817138671875e+02, 2.946028271484375e+02, 2.909033520507812e+02, 2.966694714355469e+02, 3.034410095214844e+02, 2.882705841064453e+02, 3.018140441894531e+02, 2.974897668457031e+02, 2.921100793457031e+02, 3.03553466796875e+02, 2.999796142578125e+02, 2.975570373535156e+02, 3.049354309082031e+02, 2.968645532226562e+02, 2.931583003815655e+02, 3.035600512695312e+02, 2.954631030273438e+02, 2.968431359863282e+02, 3.010669653320313e+02, 2.928872406005859e+02, 3.001915234375e+02, 3.092472564697266e+02, 2.909107800292969e+02, 2.98923168334961e+02, 3.020637084960937e+02, 2.864060778808594e+02, 2.925118908691406e+02, 2.975590612792969e+02, 2.844111511230469e+02, 2.831240081787109e+02, 2.950598645019531e+02, 2.803291772460938e+02, 2.953171740722656e+02, 2.930418084716797e+02, 2.857938232421875e+02, 3.014106182861328e+02, 2.893821655273438e+02, 2.778582507324219e+02, 2.904908801269531e+02, 2.790303955078125e+02, 2.820097155761719e+02, 2.824076678466797e+02, 2.760217517089844e+02, 2.847624798583984e+02, 2.970985473632812e+02, 2.849511334228516e+02, 2.733665686035156e+02, 2.814973266601563e+02, 2.739738122558594e+02, 2.762138885498047e+02, 2.819239221191406e+02, 2.769506890869141e+02, 2.944271472167969e+02, 2.811700915527344e+02, 2.769811096191406e+02] -Room.starRoom.T=[2.896538391113281e+02, 2.740539019775391e+02, 2.782240405273437e+02, 2.847844421386719e+02, 2.891981237792968e+02, 2.804203399658203e+02, 2.798082763671875e+02, 2.838982830810547e+02, 2.759464501953125e+02, 2.865598791503906e+02, 2.73800439453125e+02, 2.771828704833985e+02, 2.913804638671875e+02, 2.741938104248047e+02, 2.805560656738281e+02, 2.917628356933594e+02, 2.874386596679688e+02, 2.802265655517578e+02, 2.8433044921875e+02, 2.819549981689453e+02, 2.848270935058594e+02, 2.868981048583984e+02, 2.805132885742187e+02, 2.849210412597656e+02, 2.958512194824219e+02, 2.849891815185547e+02, 2.839946179199219e+02, 2.932483319091797e+02, 2.8091369140625e+02, 2.878893627929688e+02, 2.921882995605469e+02, 2.887388092041016e+02, 2.967208569335937e+02, 2.869875354003906e+02, 2.89361845703125e+02, 2.913987487792969e+02, 2.861303979492188e+02, 2.918151434326172e+02, 2.976183349609375e+02, 2.877781158447266e+02, 2.92832647928848e+02, 2.931647473144531e+02, 2.907021997070312e+02, 2.954073034667969e+02, 2.857417346191406e+02, 2.959646057128906e+02, 2.900364392089843e+02, 2.946561651611328e+02, 2.936761340332031e+02, 2.988904956054687e+02, 3.034189453125e+02, 2.899196252441406e+02, 3.012331127929688e+02, 2.975713116455078e+02, 2.9572234375e+02, 3.033946960449219e+02, 3.000459838867188e+02, 3.006673767089844e+02, 3.049590270996094e+02, 2.969297393798828e+02, 2.965151082828621e+02, 3.03679868774414e+02, 2.955648876953125e+02, 3.000204736328125e+02, 3.011644909667968e+02, 2.947397125244141e+02, 3.029704016113281e+02, 3.094325463867187e+02, 2.952528479003906e+02, 3.017546704101562e+02, 3.022303466796875e+02, 2.906094323730469e+02, 2.953250952148438e+02, 2.979933892822266e+02, 2.885376599121093e+02, 2.893071136474609e+02, 2.95376845703125e+02, 2.834318145751953e+02, 2.953693920898438e+02, 2.934341516113281e+02, 2.909851684570312e+02, 3.017499822998047e+02, 2.897769458007813e+02, 2.819242358398437e+02, 2.911055419921875e+02, 2.836699340820313e+02, 2.876739050292969e+02, 2.828083923339844e+02, 2.81137001953125e+02, 2.897468249511719e+02, 2.97381787109375e+02, 2.860838604736328e+02, 2.773682141113281e+02, 2.817541149902344e+02, 2.7548982421875e+02, 2.805030487060547e+02, 2.823302893066406e+02, 2.825350854492187e+02, 2.949032885742188e+02, 2.817215521240234e+02, 2.815606079101562e+02] -TransmittedSolarRadiation_room=[0e+00, 1.13097435760498e+01, 2.61597078704834e+01, 4.389657592773438e+01, 5.91889616394043e+01, 7.433069610595703e+01, 8.556120300292969e+01, 1.003792994689941e+02, 1.156226425170898e+02, 1.345714721679688e+02, 1.427985260009766e+02, 1.544958648681641e+02, 1.70537353515625e+02, 1.774737902832031e+02, 1.932649841308594e+02, 2.075302871704102e+02, 2.21305517578125e+02, 2.364020690917969e+02, 2.496831524658203e+02, 2.609816821289062e+02, 2.750794067382812e+02, 2.882547570800782e+02, 2.998581359863281e+02, 3.089209594726562e+02, 3.219266931152344e+02, 3.322920532226562e+02, 3.404417114257812e+02, 3.503608404541015e+02, 3.563280944824219e+02, 3.649140319824219e+02, 3.725972473144531e+02, 3.801092529296875e+02, 3.884569702148438e+02, 3.934150671386719e+02, 4.005321655273438e+02, 4.054482116699219e+02, 4.083127722167969e+02, 4.135274353027344e+02, 4.18700927734375e+02, 4.223129943847656e+02, 4.269147644042969e+02, 4.3034880859375e+02, 4.334108349609375e+02, 4.37157470703125e+02, 4.396168078613281e+02, 4.423679504394531e+02, 4.452637329101562e+02, 4.481222357177734e+02, 4.508344421386719e+02, 4.544292907714844e+02, 4.576393127441406e+02, 4.600679626464844e+02, 4.634578247070312e+02, 4.66128783569336e+02, 4.697431945800781e+02, 4.7425732421875e+02, 4.778932543945313e+02, 4.828925476074219e+02, 4.881255725097656e+02, 4.913819268798828e+02, 4.974036865234375e+02, 5.027865673828125e+02, 5.070559448242187e+02, 5.151285400390625e+02, 5.222709912109375e+02, 5.284691162109375e+02, 5.384779663085938e+02, 5.474809790039062e+02, 5.5678076171875e+02, 5.6716064453125e+02, 5.774900512695312e+02, 5.8609326171875e+02, 5.974501342773438e+02, 6.097870373535156e+02, 6.212908935546875e+02, 6.34706787109375e+02, 6.48129033203125e+02, 6.602091674804688e+02, 6.73080107421875e+02, 6.872181640625e+02, 7.05232666015625e+02, 7.22558701171875e+02, 7.355846166992187e+02, 7.496390380859375e+02, 7.630096044921875e+02, 7.77539794921875e+02, 7.925624389648438e+02, 8.02302958984375e+02, 8.157509765625e+02, 8.33871826171875e+02, 8.470795288085938e+02, 8.581170043945312e+02, 8.684464721679688e+02, 8.81615625e+02, 8.931986083984375e+02, 9.10365478515625e+02, 9.2551267578125e+02, 9.402776489257812e+02, 9.56755712890625e+02, 9.704060327148437e+02, 9.888701782226562e+02] +Room.thermRoom.T=[2.941499938964844e+02, 2.734791033935547e+02, 2.759382397460938e+02, 2.790122467041016e+02, 2.883723803710938e+02, 2.763951995849609e+02, 2.745952075195312e+02, 2.834647479248047e+02, 2.703465441894531e+02, 2.803631854248047e+02, 2.734763977050781e+02, 2.748872583007812e+02, 2.86531943359375e+02, 2.740386694335937e+02, 2.75563740234375e+02, 2.908862884521484e+02, 2.870965966796875e+02, 2.762877734375e+02, 2.839051013183594e+02, 2.817035778808594e+02, 2.799046691894531e+02, 2.865273602294922e+02, 2.794986499023437e+02, 2.829684252929687e+02, 2.955521154785156e+02, 2.829745635986328e+02, 2.806912854003906e+02, 2.931138781738281e+02, 2.776471350097656e+02, 2.85242900390625e+02, 2.918760131835937e+02, 2.848961224365235e+02, 2.945093994140625e+02, 2.867387463378906e+02, 2.867231494140625e+02, 2.91690869140625e+02, 2.859958959960937e+02, 2.886979895019531e+02, 2.975427282714843e+02, 2.877140368652344e+02, 2.896103874814194e+02, 2.932200750732422e+02, 2.905917639160156e+02, 2.930797778320313e+02, 2.856471105957031e+02, 2.951444702148438e+02, 2.878817712402344e+02, 2.946016076660156e+02, 2.909049499511719e+02, 2.966702648925781e+02, 3.03438720703125e+02, 2.882703503417969e+02, 3.018140270996093e+02, 2.974871929931641e+02, 2.921106359863281e+02, 3.035538757324219e+02, 2.999769189453125e+02, 2.975576971435547e+02, 3.049353356933594e+02, 2.968623645019532e+02, 2.931581167348573e+02, 3.035614099121094e+02, 2.954610083007813e+02, 2.96843759765625e+02, 3.010653405761719e+02, 2.928861328125e+02, 3.00192080078125e+02, 3.092433929443359e+02, 2.909110864257813e+02, 2.989238751220703e+02, 3.020582458496094e+02, 2.86406187133789e+02, 2.925122875976563e+02, 2.975525756835938e+02, 2.844118188476563e+02, 2.831252746582031e+02, 2.950531945800781e+02, 2.803289044189453e+02, 2.953164367675781e+02, 2.930355352783203e+02, 2.857933288574219e+02, 3.014092279052734e+02, 2.893775952148437e+02, 2.778576324462891e+02, 2.904873608398437e+02, 2.790302215576172e+02, 2.820099670410156e+02, 2.824035900878906e+02, 2.760216711425781e+02, 2.847632055664063e+02, 2.970921325683594e+02, 2.849510723876953e+02, 2.733668664550781e+02, 2.814939416503906e+02, 2.739731481933593e+02, 2.762137878417969e+02, 2.819165307617188e+02, 2.76950669555664e+02, 2.94426103515625e+02, 2.811620520019531e+02, 2.769805297851562e+02] +Room.starRoom.T=[2.896538391113281e+02, 2.740512567138672e+02, 2.782225427246094e+02, 2.847840551757812e+02, 2.891944128417969e+02, 2.804190002441406e+02, 2.798076037597656e+02, 2.838965887451172e+02, 2.759463439941406e+02, 2.8655869140625e+02, 2.737955200195312e+02, 2.771814569091797e+02, 2.913797045898438e+02, 2.741919750976563e+02, 2.805557019042969e+02, 2.917614410400391e+02, 2.874354663085937e+02, 2.802255731201172e+02, 2.843282104492188e+02, 2.819500988769531e+02, 2.848259887695312e+02, 2.868965179443359e+02, 2.8051025390625e+02, 2.849201782226563e+02, 2.958482543945312e+02, 2.849871826171875e+02, 2.839942211914063e+02, 2.932454937744141e+02, 2.809134216308594e+02, 2.8788935546875e+02, 2.921865112304687e+02, 2.887402740478516e+02, 2.967206762695312e+02, 2.869853143310547e+02, 2.893625476074219e+02, 2.913986602783203e+02, 2.861294055175781e+02, 2.918150823974609e+02, 2.976173779296875e+02, 2.877763537597656e+02, 2.928340266983669e+02, 2.931636187744141e+02, 2.907018981933594e+02, 2.954081994628907e+02, 2.857402197265625e+02, 2.959648315429687e+02, 2.900360424804687e+02, 2.946557788085938e+02, 2.936799084472656e+02, 2.988907940673828e+02, 3.034176635742188e+02, 2.899194219970703e+02, 3.012322814941406e+02, 2.975700305175781e+02, 2.957226220703125e+02, 3.033937683105469e+02, 3.000448461914062e+02, 3.006671984863281e+02, 3.04958515625e+02, 2.969285815429687e+02, 2.965143132021125e+02, 3.03679859008789e+02, 2.955639123535156e+02, 3.000207092285156e+02, 3.011629565429687e+02, 2.947393280029297e+02, 3.029702160644531e+02, 3.094301049804687e+02, 2.952526342773438e+02, 3.017540948486328e+02, 3.022271118164062e+02, 2.906089892578125e+02, 2.953242663574219e+02, 2.979897863769531e+02, 2.885377917480469e+02, 2.893082275390625e+02, 2.9537333984375e+02, 2.83431509399414e+02, 2.9536775390625e+02, 2.934309997558594e+02, 2.909840698242188e+02, 3.017475665283203e+02, 2.897744775390625e+02, 2.819230841064453e+02, 2.911027880859375e+02, 2.836694763183594e+02, 2.876735717773437e+02, 2.828060205078125e+02, 2.811360278320312e+02, 2.897458215332031e+02, 2.973780090332031e+02, 2.860830688476562e+02, 2.773676342773438e+02, 2.817519647216797e+02, 2.7548830078125e+02, 2.805020050048828e+02, 2.823265747070312e+02, 2.825341094970703e+02, 2.949011450195313e+02, 2.817174554443359e+02, 2.815588073730469e+02] +TransmittedSolarRadiation_room=[0e+00, 1.130971008300781e+01, 2.61600740814209e+01, 4.389723205566406e+01, 5.91896711730957e+01, 7.433177185058594e+01, 8.556243896484375e+01, 1.003805271911621e+02, 1.156241455078125e+02, 1.345734252929688e+02, 1.428004211425781e+02, 1.544974822998047e+02, 1.705394134521484e+02, 1.774756976318359e+02, 1.932669677734375e+02, 2.075325103759766e+02, 2.213078900146485e+02, 2.364044799804688e+02, 2.496857769775391e+02, 2.6098455078125e+02, 2.750824890136719e+02, 2.88257900390625e+02, 2.998614978027344e+02, 3.089244079589844e+02, 3.219302941894532e+02, 3.322958984375e+02, 3.4044580078125e+02, 3.503650823974609e+02, 3.563323059082031e+02, 3.649181213378906e+02, 3.726015808105469e+02, 3.801137084960938e+02, 3.884616088867188e+02, 3.934201104736328e+02, 4.005371704101562e+02, 4.054530639648438e+02, 4.083178991699219e+02, 4.135325012207031e+02, 4.187059631347656e+02, 4.223180297851562e+02, 4.269200439453125e+02, 4.303540576171875e+02, 4.334161987304688e+02, 4.371629028320312e+02, 4.396223010253906e+02, 4.423735046386719e+02, 4.452694396972656e+02, 4.481279931640625e+02, 4.508403015136719e+02, 4.544351501464844e+02, 4.576452331542969e+02, 4.600739135742188e+02, 4.634637756347656e+02, 4.661347241210938e+02, 4.697491760253906e+02, 4.742633056640625e+02, 4.778992260742187e+02, 4.828984985351562e+02, 4.88131591796875e+02, 4.913880004882812e+02, 4.974098815917969e+02, 5.027928845214844e+02, 5.070622924804687e+02, 5.151350708007812e+02, 5.222774609375e+02, 5.284757080078125e+02, 5.384847412109375e+02, 5.474878759765625e+02, 5.5678759765625e+02, 5.6716748046875e+02, 5.774969482421875e+02, 5.861002807617188e+02, 5.974571533203125e+02, 6.097941210937501e+02, 6.212979736328125e+02, 6.347144165039062e+02, 6.481366796875e+02, 6.602168579101562e+02, 6.730879907226563e+02, 6.872260754394531e+02, 7.052403564453125e+02, 7.22566513671875e+02, 7.355925512695312e+02, 7.4964697265625e+02, 7.630175073242187e+02, 7.775477294921875e+02, 7.925706787109375e+02, 8.023113208007812e+02, 8.157594604492188e+02, 8.338805541992188e+02, 8.470882690429687e+02, 8.581259765625e+02, 8.684556274414062e+02, 8.816248742675781e+02, 8.932079467773438e+02, 9.103745727539062e+02, 9.2552177734375e+02, 9.402871704101562e+02, 9.567651391601562e+02, 9.704154931640625e+02, 9.888799438476562e+02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_EmpiricalValidation_TwinHouseN2.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_EmpiricalValidation_TwinHouseN2.txt index 06d20a980e..dc269dd3ac 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_EmpiricalValidation_TwinHouseN2.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_EmpiricalValidation_TwinHouseN2.txt @@ -1,11 +1,11 @@ -last-generated=2021-05-25 +last-generated=2022-03-16 statistics-simulation= { "linear": "0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0", "nonlinear": "33, 0, 1", - "number of continuous time states": "37", + "number of continuous time states": "39", "numerical Jacobians": "0" } time=[0e+00, 3.546e+06] meanMeasuredTemp=[3.009046363830566e+01, 3.017797241210938e+01, 3.009712333679199e+01, 3.016502017974853e+01, 3.005583877563476e+01, 3.012687206268311e+01, 3.010165328979492e+01, 3.007753944396973e+01, 3.01937931060791e+01, 3.003174934387207e+01, 3.009418296813965e+01, 3.011168804168701e+01, 3.011855087280274e+01, 3.017044544219971e+01, 3.009297981262207e+01, 3.01327486038208e+01, 3.008505516052246e+01, 3.010125904083252e+01, 3.010426445007324e+01, 3.010357780456543e+01, 3.01586971282959e+01, 3.008813247680664e+01, 2.855294011832293e+01, 2.811687450408936e+01, 2.766113128662109e+01, 2.644127178192139e+01, 2.725367088317871e+01, 2.557407569885254e+01, 2.557585601806642e+01, 2.415153884887696e+01, 2.384971618652344e+01, 2.346349029541016e+01, 2.26863525390625e+01, 2.308362998962402e+01, 2.28053726196289e+01, 2.330245494842529e+01, 2.454922523498535e+01, 2.326939468383789e+01, 2.458887138366699e+01, 2.386344680786133e+01, 2.425518798828125e+01, 2.453403167724609e+01, 2.386093597412109e+01, 2.543410034179687e+01, 2.413551254272461e+01, 2.422169303894043e+01, 2.345064582824707e+01, 2.258440113067627e+01, 2.317911605834961e+01, 2.154271278381348e+01, 2.153523826599121e+01, 2.052923374176025e+01, 2.020619163513184e+01, 2.019478645324707e+01, 1.938132171630859e+01, 1.894265842437744e+01, 1.900860748291016e+01, 1.836963348388671e+01, 1.820292930603028e+01, 2.449087352752685e+01, 2.509976387023926e+01, 2.511082897926538e+01, 2.504610862731933e+01, 2.503296585083008e+01, 2.506228561401367e+01, 2.507199478149414e+01, 2.509127807617188e+01, 2.505358200073242e+01, 2.510578079223633e+01, 2.506314353942871e+01, 2.506208038330078e+01, 2.508415641784668e+01, 2.509146003723145e+01, 2.510140075683594e+01, 2.229764366149902e+01, 2.148080158233643e+01, 2.046269111633301e+01, 2.070403900146484e+01, 1.955058135986328e+01, 1.939030570983887e+01, 1.92462158203125e+01, 1.841733436584473e+01, 1.968979148864746e+01, 1.819847526550293e+01, 1.850176734924316e+01, 1.84439582824707e+01, 1.786121788024902e+01, 1.939386558532715e+01, 1.834495887756348e+01, 1.826245307922363e+01, 1.796360206604004e+01, 1.772131824493408e+01, 1.763071937561035e+01, 1.723893527984619e+01, 1.730910568237305e+01, 1.695444107055664e+01, 1.653583297729492e+01, 1.634069118499756e+01, 1.585260848999024e+01, 1.565979280471802e+01, 1.537267875671387e+01] -roomTemp=[3e+01, 3.052709636688233e+01, 3.09245059967041e+01, 3.073815822601318e+01, 3.080993309020996e+01, 3.066498374938965e+01, 3.036810417175293e+01, 3.067664127349854e+01, 3.041465606689453e+01, 3.062522087097168e+01, 3.053304481506348e+01, 3.018005256652832e+01, 3.02078914642334e+01, 2.994187049865723e+01, 3.005406074523926e+01, 2.99878978729248e+01, 2.98002082824707e+01, 2.999406929016113e+01, 2.980922927856445e+01, 2.994632396697998e+01, 2.979969024658203e+01, 2.97561954498291e+01, 2.841636998162847e+01, 2.787610397338867e+01, 2.758335800170898e+01, 2.626682376861572e+01, 2.696301689147949e+01, 2.556327228546142e+01, 2.532232055664063e+01, 2.407948055267334e+01, 2.34788932800293e+01, 2.336935844421387e+01, 2.259073867797851e+01, 2.293850593566895e+01, 2.270629272460938e+01, 2.259513664245605e+01, 2.370735397338867e+01, 2.268044128417969e+01, 2.364891357421875e+01, 2.322967376708984e+01, 2.327884674072266e+01, 2.393797435760498e+01, 2.32746711730957e+01, 2.450849685668945e+01, 2.378294563293457e+01, 2.369390106201172e+01, 2.337599716186524e+01, 2.231001625061035e+01, 2.269051361083984e+01, 2.128900451660156e+01, 2.132599258422852e+01, 2.01549898147583e+01, 1.95000129699707e+01, 1.986681175231934e+01, 1.891460075378417e+01, 1.835169506072998e+01, 1.819314231872558e+01, 1.747898178100586e+01, 1.740140342712403e+01, 2.249354763031006e+01, 2.323299789428711e+01, 2.359954857609668e+01, 2.367324142456055e+01, 2.395592803955078e+01, 2.397230682373047e+01, 2.402120494842529e+01, 2.39869987487793e+01, 2.377136764526367e+01, 2.405390167236328e+01, 2.406286716461182e+01, 2.419145774841309e+01, 2.416133403778076e+01, 2.405277709960938e+01, 2.423501853942871e+01, 2.180391082763672e+01, 2.11639986038208e+01, 2.014995155334473e+01, 2.02944616317749e+01, 1.92617992401123e+01, 1.895190448760986e+01, 1.896243476867676e+01, 1.807263927459717e+01, 1.891713409423828e+01, 1.776089210510254e+01, 1.795086326599121e+01, 1.797167682647705e+01, 1.718099098205566e+01, 1.853305644989014e+01, 1.799432792663574e+01, 1.785294189453125e+01, 1.756313514709473e+01, 1.725551776885986e+01, 1.717521553039551e+01, 1.671707496643067e+01, 1.671294822692871e+01, 1.640254020690918e+01, 1.581182403564453e+01, 1.57277153968811e+01, 1.514276542663574e+01, 1.48704948425293e+01, 1.462739753723145e+01] +roomTemp=[3e+01, 3.052696762084961e+01, 3.092427673339844e+01, 3.073812999725342e+01, 3.08097469329834e+01, 3.066500377655029e+01, 3.036810493469238e+01, 3.067661590576172e+01, 3.041466217041016e+01, 3.062498474121094e+01, 3.05329418182373e+01, 3.01800989151001e+01, 3.020784721374512e+01, 2.99419958114624e+01, 3.005405883789063e+01, 2.998793601989746e+01, 2.980025520324707e+01, 2.999411106109619e+01, 2.980927505493164e+01, 2.994623928070068e+01, 2.979956436157227e+01, 2.975575428009033e+01, 2.841847253713842e+01, 2.787608280181885e+01, 2.758377304077148e+01, 2.626708984375e+01, 2.696312408447266e+01, 2.556354484558105e+01, 2.532224922180177e+01, 2.407976722717286e+01, 2.347910118103027e+01, 2.336964645385742e+01, 2.259099807739258e+01, 2.293857326507568e+01, 2.270648345947266e+01, 2.259492301940918e+01, 2.370727996826172e+01, 2.268052024841309e+01, 2.364861183166504e+01, 2.322961521148682e+01, 2.327850341796875e+01, 2.393793125152588e+01, 2.327461891174316e+01, 2.450813293457031e+01, 2.378279762268066e+01, 2.369401264190674e+01, 2.337598876953125e+01, 2.231005115509033e+01, 2.269053077697754e+01, 2.128908824920654e+01, 2.132607841491699e+01, 2.015514602661133e+01, 1.950012016296387e+01, 1.986699733734131e+01, 1.89147533416748e+01, 1.835184288024902e+01, 1.819318771362305e+01, 1.747914981842041e+01, 1.740171585083009e+01, 2.249289264678955e+01, 2.323240089416504e+01, 2.359900039370448e+01, 2.367278289794922e+01, 2.395558013916015e+01, 2.397204895019531e+01, 2.402090644836426e+01, 2.39866943359375e+01, 2.377124099731445e+01, 2.405361671447754e+01, 2.406267356872559e+01, 2.419125366210938e+01, 2.416115989685058e+01, 2.405253791809082e+01, 2.423481750488281e+01, 2.180401496887207e+01, 2.116422557830811e+01, 2.015018844604492e+01, 2.029448394775391e+01, 1.926206855773926e+01, 1.895188159942627e+01, 1.896279144287109e+01, 1.807279930114746e+01, 1.891702728271484e+01, 1.776114177703857e+01, 1.795088424682617e+01, 1.797187042236328e+01, 1.718109359741211e+01, 1.853308811187744e+01, 1.799439544677734e+01, 1.785298404693604e+01, 1.756324577331543e+01, 1.725562744140625e+01, 1.717535018920898e+01, 1.671721496582031e+01, 1.671302452087402e+01, 1.640273094177246e+01, 1.581196975708008e+01, 1.572790307998657e+01, 1.514298133850098e+01, 1.487066068649292e+01, 1.462759113311768e+01] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_EmpiricalValidation_Warehouse.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_EmpiricalValidation_Warehouse.txt index 76bd8f1d32..1948ba6f67 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_EmpiricalValidation_Warehouse.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_HighOrder_Validation_EmpiricalValidation_Warehouse.txt @@ -1,13 +1,13 @@ -last-generated=2021-05-25 +last-generated=2022-03-16 statistics-simulation= { "linear": "0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0", "nonlinear": "7, 0, 1", - "number of continuous time states": "23", + "number of continuous time states": "25", "numerical Jacobians": "0" } time=[0e+00, 3.1536e+07] meanMeasuredTemp=[1.069333362579346e+01, 1.116039237976074e+01, 9.770524787902833e+00, 9.901142883300782e+00, 1.003546772003174e+01, 9.834166526794434e+00, 1.005140476226807e+01, 1.098386745452881e+01, 1.047046642303467e+01, 1.075313396453857e+01, 1.003750038146973e+01, 8.586731719970704e+00, 9.376097869873046e+00, 8.59992961883545e+00, 8.79195957183838e+00, 9.027500152587891e+00, 7.855039596557617e+00, 6.936784365761604e+00, 8.969801139831542e+00, 9.525972938537597e+00, 9.183333396911621e+00, 9.299856758117675e+00, 9.005113029479981e+00, 1.002768898010254e+01, 1.036663589477539e+01, 1.008916664123535e+01, 1.086424312591553e+01, 1.277466354370117e+01, 1.282959499359131e+01, 1.368665084838867e+01, 1.55e+01, 1.488950023651123e+01, 1.514728736877441e+01, 1.418620471954346e+01, 1.452670478820801e+01, 1.684416580200195e+01, 1.600039253234863e+01, 1.705844955444336e+01, 1.702767601013183e+01, 1.666556167602539e+01, 1.834499931335449e+01, 2.039433288574219e+01, 1.844825172424316e+01, 1.97102596282959e+01, 1.994629020690918e+01, 1.764749908447266e+01, 1.910074081420898e+01, 1.934546737670899e+01, 1.772059936523437e+01, 1.960357322692871e+01, 1.89333324432373e+01, 1.930435218811035e+01, 1.931623306274414e+01, 1.851468276977539e+01, 1.926592483520508e+01, 2.095999908447266e+01, 2.02158088684082e+01, 2.225453149760428e+01, 2.33532112121582e+01, 2.169448547363281e+01, 2.258416748046875e+01, 2.103413429260254e+01, 1.961702270507812e+01, 2.028086090087891e+01, 2.101859474182129e+01, 1.815833282470703e+01, 1.942712440490723e+01, 1.81023006439209e+01, 1.828735542297363e+01, 1.870271530151367e+01, 1.853750038146973e+01, 1.704160041809082e+01, 1.916560401916504e+01, 1.762601776123047e+01, 1.701973609924316e+01, 1.679249954223633e+01, 1.561044902801514e+01, 1.573839225769043e+01, 1.735726623535156e+01, 1.682576026916504e+01, 1.632333374023438e+01, 1.603707809448242e+01, 1.543549690246582e+01, 1.436661720275879e+01, 1.443508110046387e+01, 1.395416641235352e+01, 1.426375770568848e+01, 1.451899166107178e+01, 1.297635231018066e+01, 1.281273899078369e+01, 1.199583339691162e+01, 1.188758029937744e+01, 1.212389450073242e+01, 1.243497562408447e+01, 1.203299255371094e+01, 1.180416679382324e+01, 1.107878971099854e+01, 1.127532939910889e+01, 1.168321151733398e+01, 1.108970909118652e+01, 1.135791683197021e+01] -roomTemp=[1e+01, 1.042385692596435e+01, 9.661840057373047e+00, 9.613597679138184e+00, 9.991351318359374e+00, 9.07430362701416e+00, 9.141259765625e+00, 1.00712516784668e+01, 9.545675086975098e+00, 9.474427223205566e+00, 9.665416717529297e+00, 8.437140274047852e+00, 8.622211837768555e+00, 8.999001121520996e+00, 8.198460388183594e+00, 8.289239883422852e+00, 7.917015266418457e+00, 7.170405925943694e+00, 8.305684471130371e+00, 9.101356887817383e+00, 8.804996490478516e+00, 9.374111557006836e+00, 8.77708911895752e+00, 9.309385871887207e+00, 1.016812725067139e+01, 9.550929069519043e+00, 1.035379409790039e+01, 1.232632312774658e+01, 1.223283920288086e+01, 1.301045417785645e+01, 1.505151176452637e+01, 1.444409790039063e+01, 1.501176776885986e+01, 1.513872985839844e+01, 1.528461265563965e+01, 1.69896183013916e+01, 1.725145645141601e+01, 1.75089427947998e+01, 1.762907028198242e+01, 1.809066505432129e+01, 1.883892822265625e+01, 2.037193489074707e+01, 1.966422996520996e+01, 2.014320259094238e+01, 2.089309158325195e+01, 1.94637336730957e+01, 2.011027183532715e+01, 2.018286628723144e+01, 1.846582374572754e+01, 2.007432060241699e+01, 2.07203311920166e+01, 1.955029716491699e+01, 2.039285049438477e+01, 1.982811470031738e+01, 1.941716384887695e+01, 2.132662391662598e+01, 2.165028419494629e+01, 2.31736871801271e+01, 2.357230224609375e+01, 2.324154891967773e+01, 2.377543067932129e+01, 2.273373107910156e+01, 2.172529182434082e+01, 2.083808479309082e+01, 2.215488471984863e+01, 1.99869441986084e+01, 2.067133102416992e+01, 1.998329010009765e+01, 1.863975486755371e+01, 1.970343971252441e+01, 1.934712600708008e+01, 1.737994766235352e+01, 1.926552352905274e+01, 1.856207160949707e+01, 1.759552536010742e+01, 1.754975891113281e+01, 1.698303375244141e+01, 1.44143123626709e+01, 1.714802322387695e+01, 1.693393058776855e+01, 1.654840278625488e+01, 1.641234664916992e+01, 1.584499073028564e+01, 1.517687072753906e+01, 1.547990188598633e+01, 1.46507682800293e+01, 1.479647636413574e+01, 1.506613349914551e+01, 1.370622539520264e+01, 1.315087509155273e+01, 1.272769451141357e+01, 1.211702136993408e+01, 1.24012659072876e+01, 1.24064811706543e+01, 1.193005523681641e+01, 1.137752342224121e+01, 1.101387023925781e+01, 1.083081665039063e+01, 1.080729217529297e+01, 1.044900588989258e+01, 1.043182373046875e+01] +roomTemp=[1e+01, 1.042382526397705e+01, 9.661434936523438e+00, 9.613727951049805e+00, 9.99133071899414e+00, 9.074422836303711e+00, 9.141437530517578e+00, 1.007112121582031e+01, 9.545844078063965e+00, 9.474588012695312e+00, 9.665180206298828e+00, 8.437324142456054e+00, 8.622537803649902e+00, 8.998742485046387e+00, 8.198695945739747e+00, 8.289626121520996e+00, 7.916832637786865e+00, 7.170626874099909e+00, 8.306725692749023e+00, 9.101141357421875e+00, 8.805146217346191e+00, 9.374288368225098e+00, 8.776676177978516e+00, 9.30950698852539e+00, 1.016802310943604e+01, 9.551034927368164e+00, 1.035391807556152e+01, 1.232614631652832e+01, 1.223283271789551e+01, 1.301055698394775e+01, 1.505079078674316e+01, 1.444396438598633e+01, 1.501190128326416e+01, 1.513825511932373e+01, 1.52845724105835e+01, 1.698964881896973e+01, 1.725048904418945e+01, 1.750900115966797e+01, 1.762895660400391e+01, 1.809008064270019e+01, 1.883879280090332e+01, 2.03717845916748e+01, 1.966252632141113e+01, 2.014321594238281e+01, 2.089247703552246e+01, 1.945869636535645e+01, 2.011028289794922e+01, 2.018264122009277e+01, 1.84657886505127e+01, 2.007445106506348e+01, 2.071990585327148e+01, 1.955031394958496e+01, 2.039290771484375e+01, 1.982770614624024e+01, 1.941750679016113e+01, 2.132644271850586e+01, 2.164940147399902e+01, 2.317367285746007e+01, 2.357184715270996e+01, 2.32410701751709e+01, 2.377534484863281e+01, 2.273354721069336e+01, 2.172504158020019e+01, 2.083890533447266e+01, 2.215462455749512e+01, 1.998018646240234e+01, 2.067135429382324e+01, 1.998324813842773e+01, 1.86398983001709e+01, 1.970348281860351e+01, 1.934698867797852e+01, 1.737697067260742e+01, 1.926541862487793e+01, 1.856175270080566e+01, 1.759548683166504e+01, 1.754981231689453e+01, 1.698239326477051e+01, 1.441474018096924e+01, 1.714818382263184e+01, 1.69336051940918e+01, 1.654837226867676e+01, 1.641227188110351e+01, 1.584488525390625e+01, 1.517681083679199e+01, 1.547981910705566e+01, 1.465082836151123e+01, 1.479645938873291e+01, 1.506586189270019e+01, 1.370634746551514e+01, 1.315102310180664e+01, 1.27277307510376e+01, 1.211713600158691e+01, 1.240137557983399e+01, 1.240643310546875e+01, 1.19302360534668e+01, 1.13777437210083e+01, 1.101396522521973e+01, 1.083099899291992e+01, 1.080804080963135e+01, 1.044908752441406e+01, 1.043200397491455e+01] coolingPower=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] heatingPower=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Examples_MultizoneMoistAirCO2.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Examples_MultizoneMoistAirCO2.txt index 946cf37b45..c1c2fd022f 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Examples_MultizoneMoistAirCO2.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Examples_MultizoneMoistAirCO2.txt @@ -1,4 +1,4 @@ -last-generated=2021-05-19 +last-generated=2022-06-07 statistics-initialization= { "linear": "5, 5, 5, 5, 5" @@ -11,5 +11,5 @@ statistics-simulation= "numerical Jacobians": "0" } time=[0e+00, 3.1536e+07] -multizone.TAir[1]=[2.931499938964844e+02, 2.909760155647356e+02, 2.879063898979513e+02, 2.883835388183594e+02, 2.897008511782512e+02, 2.884322814941406e+02, 2.886403442382813e+02, 2.884107727050781e+02, 2.880059143066406e+02, 2.889465087890625e+02, 2.89811767578125e+02, 2.885938842773438e+02, 2.900774780273438e+02, 2.919163513183594e+02, 2.905125244140625e+02, 2.907092895507812e+02, 2.911970198409452e+02, 2.910967346191406e+02, 2.930581298828125e+02, 2.911076660351344e+02, 2.917083129882812e+02, 2.934574292493027e+02, 2.911525875229433e+02, 2.906962097167969e+02, 2.931878330938457e+02, 2.920679626464844e+02, 2.920073364257813e+02, 2.928840515136719e+02, 2.9187509765625e+02, 2.919274963378906e+02, 2.937211303710938e+02, 2.915619140625e+02, 2.920695861816406e+02, 2.960339782714844e+02, 2.923178283691406e+02, 2.92966796875e+02, 2.949701721191406e+02, 2.931736083984375e+02, 2.938572773425107e+02, 2.929942542338768e+02, 2.924644470214844e+02, 2.94089892578125e+02, 2.934786454166274e+02, 2.937217712402344e+02, 2.953007568359375e+02, 2.925077514648438e+02, 2.920870239257812e+02, 2.929432678222656e+02, 2.919687133789063e+02, 2.928811950683594e+02, 2.949632873535156e+02, 2.928798828125e+02, 2.938371708094517e+02, 2.955991333007813e+02, 2.935321655273438e+02, 2.938746948242188e+02, 2.946241760253906e+02, 2.931918762207031e+02, 2.949001475367053e+02, 2.949376867099071e+02, 2.940681762695312e+02, 2.976383521019055e+02, 2.936967834472656e+02, 2.940737854003906e+02, 2.961077758789062e+02, 2.930222778320312e+02, 2.931916442871094e+02, 2.950381164550781e+02, 2.932293151855469e+02, 2.945377990722656e+02, 2.953743286132812e+02, 2.940165954589844e+02, 2.94423583984375e+02, 2.965675415039062e+02, 2.938639282226562e+02, 2.935624389648438e+02, 2.951937459822043e+02, 2.931619506835938e+02, 2.94312939453125e+02, 2.936921325683594e+02, 2.931336364746094e+02, 2.942034511057013e+02, 2.918910414364116e+02, 2.916232177734375e+02, 2.928781447679081e+02, 2.904996032714844e+02, 2.904919982910156e+02, 2.917495544433594e+02, 2.902505920410156e+02, 2.914307983398438e+02, 2.915066528320312e+02, 2.902258605957031e+02, 2.904359313964844e+02, 2.908011647919078e+02, 2.891410888671875e+02, 2.89539306640625e+02, 2.900460220616607e+02, 2.889272705078125e+02, 2.904092334400524e+02, 2.889377719258601e+02, 2.891471862792969e+02] -multizone.CO2Con[1]=[0e+00, 6.322560108802793e+02, 4.033231250297549e+02, 4.224227661132812e+02, 5.666862942485407e+02, 4.026673889160156e+02, 4.081434143066406e+02, 5.279502319335937e+02, 4.043342529296875e+02, 4.481295349121094e+02, 5.4124169921875e+02, 4.027722045898437e+02, 4.272560241699219e+02, 5.572339477539062e+02, 4.038502624511719e+02, 5.023736877441406e+02, 5.440261678303367e+02, 4.026782409667969e+02, 4.847618286132812e+02, 4.30944617716634e+02, 4.026780700683594e+02, 5.782885844224228e+02, 4.026879243046404e+02, 4.134215881347656e+02, 5.170161714320144e+02, 4.026660461425781e+02, 4.0415556640625e+02, 4.796027221679688e+02, 4.026661254882812e+02, 4.052323913574219e+02, 4.923397521972656e+02, 4.026814575195312e+02, 4.097333374023438e+02, 5.33675e+02, 4.026707275390625e+02, 4.445070495605469e+02, 5.066023315429687e+02, 4.026665893554688e+02, 4.75291723880671e+02, 4.219969483550066e+02, 4.026742858886719e+02, 5.685830078125e+02, 4.026660461425781e+02, 4.026834411621094e+02, 5.043227783203125e+02, 4.026664428710938e+02, 4.046954772949219e+02, 4.489525634765625e+02, 4.026661926269531e+02, 4.033049499511719e+02, 4.546189270019531e+02, 4.026664916992187e+02, 4.055958850896247e+02, 5.1951962890625e+02, 4.026661804199219e+02, 4.236285705566406e+02, 5.106796997070313e+02, 4.02666748046875e+02, 4.652070228313577e+02, 4.221837434543399e+02, 4.026698608398438e+02, 5.25390656033305e+02, 4.026660461425781e+02, 4.026834411621094e+02, 4.989716186523438e+02, 4.026660766601562e+02, 4.0313291015625e+02, 4.279840881347656e+02, 4.026660522460937e+02, 4.0317431640625e+02, 4.59514892578125e+02, 4.026660766601562e+02, 4.060763549804688e+02, 5.156847900390625e+02, 4.026664672851563e+02, 4.2230322265625e+02, 5.191046267798143e+02, 4.026666198730469e+02, 4.8455634765625e+02, 4.302095092773437e+02, 4.026730346679688e+02, 5.601155390494658e+02, 4.026660461425781e+02, 4.031686767578125e+02, 5.098154669480925e+02, 4.026817932128906e+02, 4.034820129394531e+02, 4.448265930175781e+02, 4.026703125e+02, 4.059437683105469e+02, 5.230003662109375e+02, 4.027117736816406e+02, 4.707002685546875e+02, 5.514322381667149e+02, 4.059533142089844e+02, 5.232770385742188e+02, 5.500305847043661e+02, 4.037568115234375e+02, 5.757596484097568e+02, 4.310345824579573e+02, 4.0501513671875e+02] +multizone.TAir[1]=[2.931499938964844e+02, 2.9097427593665e+02, 2.879444282698371e+02, 2.884226623535156e+02, 2.896875759622325e+02, 2.884502258300781e+02, 2.886631530761719e+02, 2.884130798339844e+02, 2.879802001953125e+02, 2.888958129882812e+02, 2.897324829101562e+02, 2.885783386230469e+02, 2.900247131347656e+02, 2.917818237304688e+02, 2.903857727050781e+02, 2.905791931152344e+02, 2.909695183927661e+02, 2.908861022949219e+02, 2.927913513183594e+02, 2.909040139280719e+02, 2.914458312988281e+02, 2.931185218777464e+02, 2.907939762254058e+02, 2.903955261230469e+02, 2.92814810765384e+02, 2.91688232421875e+02, 2.916593322753906e+02, 2.923642456054687e+02, 2.915810424804687e+02, 2.916387145996094e+02, 2.930679321289062e+02, 2.9106123046875e+02, 2.916648681640625e+02, 2.954352722167969e+02, 2.9175869140625e+02, 2.92373291015625e+02, 2.943909973144531e+02, 2.928446716308594e+02, 2.935498613788124e+02, 2.926639974643434e+02, 2.921000366210938e+02, 2.935464660644531e+02, 2.930987338420423e+02, 2.932797790527344e+02, 2.947367065429688e+02, 2.920966491699219e+02, 2.916665588378906e+02, 2.924018127441406e+02, 2.915695922851563e+02, 2.92527294921875e+02, 2.9444677734375e+02, 2.924813171386719e+02, 2.934312063394649e+02, 2.950914855957031e+02, 2.931205261230469e+02, 2.934563598632812e+02, 2.941217407226562e+02, 2.926968139648437e+02, 2.94476623278706e+02, 2.944792486531845e+02, 2.935603942871094e+02, 2.970175832289852e+02, 2.932174438476562e+02, 2.936723815917969e+02, 2.955227355957031e+02, 2.926001586914062e+02, 2.927453491210937e+02, 2.9448447265625e+02, 2.928010498046875e+02, 2.940546997070313e+02, 2.947996826171875e+02, 2.935684265136719e+02, 2.939662231445312e+02, 2.961370422363281e+02, 2.935559814453125e+02, 2.932963562011719e+02, 2.948577631950926e+02, 2.929641723632812e+02, 2.940834716796875e+02, 2.934727294921875e+02, 2.929306030273438e+02, 2.940386877138753e+02, 2.917942281710047e+02, 2.915165100097656e+02, 2.927408920755626e+02, 2.904247436523438e+02, 2.904578918457031e+02, 2.917075378417969e+02, 2.902521545410156e+02, 2.914306396484375e+02, 2.915012817382812e+02, 2.902527099609375e+02, 2.904588256835938e+02, 2.908048125117658e+02, 2.891845031738281e+02, 2.895716552734375e+02, 2.900527129222573e+02, 2.889603698730469e+02, 2.904315802881865e+02, 2.889939270019531e+02, 2.89178955078125e+02] +multizone.CO2Con[1]=[0e+00, 6.315611166012608e+02, 4.033229612746217e+02, 4.224227355957031e+02, 5.667101055642833e+02, 4.026673889160156e+02, 4.081434448242188e+02, 5.279516723632812e+02, 4.04334228515625e+02, 4.481291076660156e+02, 5.412446899414062e+02, 4.027722045898437e+02, 4.272556579589844e+02, 5.572339233398437e+02, 4.038502746582031e+02, 5.02375244140625e+02, 5.44299434701192e+02, 4.026782409667969e+02, 4.847614990234375e+02, 4.296632264690635e+02, 4.026780700683594e+02, 5.788324063470584e+02, 4.026879357370448e+02, 4.134216552734375e+02, 5.1701305904038e+02, 4.026660461425781e+02, 4.0415546875e+02, 4.796029113769531e+02, 4.026661254882812e+02, 4.052322082519531e+02, 4.923401184082031e+02, 4.026814575195312e+02, 4.097355712890625e+02, 5.33675e+02, 4.026707275390625e+02, 4.445066528320312e+02, 5.066026123046875e+02, 4.026665893554688e+02, 4.74937142366079e+02, 4.282058879327e+02, 4.026742858886719e+02, 5.685821044921875e+02, 4.026660461425781e+02, 4.026834411621094e+02, 5.043226135253906e+02, 4.026664428710938e+02, 4.046954345703125e+02, 4.489525695800781e+02, 4.026661926269531e+02, 4.03304931640625e+02, 4.5461865234375e+02, 4.026664916992187e+02, 4.055508093677686e+02, 5.19519970703125e+02, 4.026661804199219e+02, 4.236298828125e+02, 5.106796875e+02, 4.02666748046875e+02, 4.648811199284401e+02, 4.171421850343414e+02, 4.026698608398438e+02, 5.20443239431348e+02, 4.026660461425781e+02, 4.026834411621094e+02, 4.989715698242188e+02, 4.026660766601562e+02, 4.0313291015625e+02, 4.279841491699219e+02, 4.026660522460937e+02, 4.031745056152344e+02, 4.595148010253906e+02, 4.026660766601562e+02, 4.060762512207031e+02, 5.1568388671875e+02, 4.026664672851563e+02, 4.223033142089844e+02, 5.182855755380349e+02, 4.026666198730469e+02, 4.845564575195312e+02, 4.302094970703125e+02, 4.026730346679688e+02, 5.615971991053924e+02, 4.026660461425781e+02, 4.031686767578125e+02, 5.09682353835252e+02, 4.026817932128906e+02, 4.034820129394531e+02, 4.448266967773437e+02, 4.026703125e+02, 4.059437683105469e+02, 5.229991455078125e+02, 4.027117614746094e+02, 4.707013793945313e+02, 5.506795066006213e+02, 4.059533813476563e+02, 5.232808227539062e+02, 5.501517011772593e+02, 4.037568725585937e+02, 5.763812367594214e+02, 4.3687177734375e+02, 4.050151977539062e+02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Examples_MultizoneMoistAirCO2Equipped.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Examples_MultizoneMoistAirCO2Equipped.txt index e32261ea01..a2bc301a6c 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Examples_MultizoneMoistAirCO2Equipped.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Examples_MultizoneMoistAirCO2Equipped.txt @@ -1,4 +1,4 @@ -last-generated=2021-05-19 +last-generated=2022-01-27 statistics-initialization= { "linear": "5, 4, 4, 4, 4" @@ -11,5 +11,5 @@ statistics-simulation= "numerical Jacobians": "0" } time=[0e+00, 3.1536e+07] -multizone.TAir[1]=[2.931499938964844e+02, 2.935492935394157e+02, 2.931344452612315e+02, 2.9314990234375e+02, 2.934990755286238e+02, 2.931496887207031e+02, 2.931500793457031e+02, 2.932250610351563e+02, 2.931498657226563e+02, 2.931495788574219e+02, 2.9353662109375e+02, 2.931496887207031e+02, 2.931981994628906e+02, 2.940714721679688e+02, 2.931500183105469e+02, 2.934448852539062e+02, 2.93466904131619e+02, 2.931496154785156e+02, 2.943983642578125e+02, 2.933142578125e+02, 2.931493835449219e+02, 2.945232482910156e+02, 2.931932615716773e+02, 2.931498474121094e+02, 2.945423828125e+02, 2.931507263183594e+02, 2.931498413085938e+02, 2.940904113769531e+02, 2.931497985839844e+02, 2.931498840332031e+02, 2.944946899414062e+02, 2.931498901367187e+02, 2.932117370605469e+02, 2.960258239746094e+02, 2.93149853515625e+02, 2.938506774902344e+02, 2.950929931640625e+02, 2.933118957519531e+02, 2.942204638599644e+02, 2.938534267699521e+02, 2.931498413085938e+02, 2.945980346679688e+02, 2.938518665727362e+02, 2.935954040527344e+02, 2.951168579101562e+02, 2.9315087890625e+02, 2.931498779296875e+02, 2.939621826171875e+02, 2.931499084472656e+02, 2.934992797851563e+02, 2.947806396484375e+02, 2.931532653808594e+02, 2.938035556115836e+02, 2.952565490722656e+02, 2.934407592773438e+02, 2.941149291992188e+02, 2.946801818847656e+02, 2.932982421875e+02, 2.946665396854795e+02, 2.945704223632812e+02, 2.936547241210938e+02, 2.964217602777377e+02, 2.935706420898438e+02, 2.937381591796875e+02, 2.955911743164062e+02, 2.93150146484375e+02, 2.933387268066406e+02, 2.947966491699219e+02, 2.931742431640625e+02, 2.9404365234375e+02, 2.94873779296875e+02, 2.935379333496094e+02, 2.939690246582031e+02, 2.957129028320313e+02, 2.935220764160156e+02, 2.936832885742188e+02, 2.950190979003906e+02, 2.931739318847656e+02, 2.94369287109375e+02, 2.94094677734375e+02, 2.933816833496094e+02, 2.94561865234375e+02, 2.931525782673714e+02, 2.931498107910156e+02, 2.940704956054688e+02, 2.9314990234375e+02, 2.931496459960937e+02, 2.938642028808594e+02, 2.931502380371094e+02, 2.931606201171875e+02, 2.936064758300781e+02, 2.931495300292969e+02, 2.931659729003906e+02, 2.933491673623362e+02, 2.931495239257812e+02, 2.931497497558594e+02, 2.933254150390625e+02, 2.931499633789062e+02, 2.93701587677002e+02, 2.931534594655384e+02, 2.931501159667969e+02] -multizone.CO2Con[1]=[0e+00, 4.723498972711599e+02, 4.026660461425781e+02, 4.026660461425781e+02, 4.614140852271311e+02, 4.026660461425781e+02, 4.026660461425781e+02, 4.095234252929687e+02, 4.026660461425781e+02, 4.02666357421875e+02, 4.143571166992188e+02, 4.026660461425781e+02, 4.026721984863281e+02, 4.558861267089844e+02, 4.026660461425781e+02, 4.031303405761719e+02, 4.656829371541493e+02, 4.026660461425781e+02, 4.180386047363281e+02, 4.153057189941406e+02, 4.026660461425781e+02, 4.651676574707031e+02, 4.026660461425781e+02, 4.026660461425781e+02, 4.559099853515625e+02, 4.026660461425781e+02, 4.026660461425781e+02, 4.092150939941406e+02, 4.026660461425781e+02, 4.026660888671875e+02, 4.124180908203125e+02, 4.026660461425781e+02, 4.026684997558594e+02, 4.520613708496094e+02, 4.026660461425781e+02, 4.029310607910156e+02, 4.573078491210937e+02, 4.026660461425781e+02, 4.173294045713526e+02, 4.138572509091204e+02, 4.026660461425781e+02, 4.647574401855469e+02, 4.026660461425781e+02, 4.026660461425781e+02, 4.537499633789063e+02, 4.026660461425781e+02, 4.026660461425781e+02, 4.089276916503906e+02, 4.026660461425781e+02, 4.026660522460937e+02, 4.103835144042969e+02, 4.026660461425781e+02, 4.026670944071262e+02, 4.4965205078125e+02, 4.026660461425781e+02, 4.028302001953125e+02, 4.584612060546875e+02, 4.026660461425781e+02, 4.164762015507139e+02, 4.141554016113281e+02, 4.026660461425781e+02, 4.56213124902026e+02, 4.026660461425781e+02, 4.026660461425781e+02, 4.52539794921875e+02, 4.026660461425781e+02, 4.026660461425781e+02, 4.085533325195312e+02, 4.026660461425781e+02, 4.026660522460937e+02, 4.106955871582031e+02, 4.026660461425781e+02, 4.026674194335938e+02, 4.489550354003906e+02, 4.026660461425781e+02, 4.028245239257812e+02, 4.604624450683594e+02, 4.026660461425781e+02, 4.180166320800781e+02, 4.147026184082031e+02, 4.026660461425781e+02, 4.628052062988281e+02, 4.026660461425781e+02, 4.026660461425781e+02, 4.546258178710938e+02, 4.026660461425781e+02, 4.026660461425781e+02, 4.088774780273437e+02, 4.026660461425781e+02, 4.026660949707031e+02, 4.136947631835938e+02, 4.026660461425781e+02, 4.026794555664063e+02, 4.545081166913432e+02, 4.026660461425781e+02, 4.031784057617188e+02, 4.677402770996094e+02, 4.026660461425781e+02, 4.227065519853072e+02, 4.1505766042815e+02, 4.026660461425781e+02] +multizone.TAir[1]=[2.931499938964844e+02, 2.935500950601769e+02, 2.931344452612315e+02, 2.9314990234375e+02, 2.935000584732977e+02, 2.931496887207031e+02, 2.931500793457031e+02, 2.932246826171875e+02, 2.931498657226563e+02, 2.931495788574219e+02, 2.93537109375e+02, 2.931496887207031e+02, 2.931989013671875e+02, 2.940714111328125e+02, 2.931500183105469e+02, 2.934449157714844e+02, 2.934664260305035e+02, 2.931496154785156e+02, 2.943959838867187e+02, 2.933128967285156e+02, 2.931493835449219e+02, 2.945219604492187e+02, 2.93193257527179e+02, 2.931497741699219e+02, 2.945432434082031e+02, 2.931507263183594e+02, 2.931498413085938e+02, 2.94089990234375e+02, 2.931498107910156e+02, 2.93149853515625e+02, 2.944945678710938e+02, 2.931498901367187e+02, 2.932120910644531e+02, 2.960262390136719e+02, 2.93149853515625e+02, 2.938507385253906e+02, 2.950938659667969e+02, 2.933120971679688e+02, 2.942208390997712e+02, 2.938528636279027e+02, 2.931498413085938e+02, 2.945978332519531e+02, 2.938519820247788e+02, 2.935959533691406e+02, 2.951167114257813e+02, 2.9315087890625e+02, 2.931498718261719e+02, 2.939626098632813e+02, 2.931499084472656e+02, 2.935000671386719e+02, 2.947806396484375e+02, 2.931529724121094e+02, 2.938028711051584e+02, 2.952564575195312e+02, 2.934409362792969e+02, 2.941144409179688e+02, 2.946809204101563e+02, 2.932982971191406e+02, 2.946666007206358e+02, 2.945720458984375e+02, 2.93655029296875e+02, 2.964221660092699e+02, 2.935710144042969e+02, 2.937401184082031e+02, 2.955911804199219e+02, 2.93150146484375e+02, 2.933390014648438e+02, 2.947967468261719e+02, 2.931739318847656e+02, 2.940437683105469e+02, 2.948739013671875e+02, 2.93537646484375e+02, 2.939691711425781e+02, 2.95712255859375e+02, 2.935219299316406e+02, 2.936826171875e+02, 2.950160217285156e+02, 2.931739624023438e+02, 2.943678100585938e+02, 2.94094482421875e+02, 2.933828430175781e+02, 2.945629516601563e+02, 2.931525602072928e+02, 2.931497924804688e+02, 2.940710815429687e+02, 2.9314990234375e+02, 2.931496459960937e+02, 2.938644470214844e+02, 2.931502502441406e+02, 2.931595397949219e+02, 2.936064453125e+02, 2.931495239257812e+02, 2.931661315917969e+02, 2.933495808262979e+02, 2.931495239257812e+02, 2.931497192382812e+02, 2.933259521484375e+02, 2.931499633789062e+02, 2.937028232921253e+02, 2.931534594655384e+02, 2.931500854492188e+02] +multizone.CO2Con[1]=[0e+00, 4.723484803184062e+02, 4.026660461425781e+02, 4.026660461425781e+02, 4.614146905898111e+02, 4.026660461425781e+02, 4.026660461425781e+02, 4.095234252929687e+02, 4.026660461425781e+02, 4.02666357421875e+02, 4.143571472167969e+02, 4.026660461425781e+02, 4.026721984863281e+02, 4.558842041015625e+02, 4.026660461425781e+02, 4.031303100585938e+02, 4.656829320640821e+02, 4.026660461425781e+02, 4.180386596679688e+02, 4.153057189941406e+02, 4.026660461425781e+02, 4.651671203613281e+02, 4.026660461425781e+02, 4.026660461425781e+02, 4.55910009765625e+02, 4.026660461425781e+02, 4.026660461425781e+02, 4.092152587890625e+02, 4.026660461425781e+02, 4.026660888671875e+02, 4.124181518554688e+02, 4.026660461425781e+02, 4.026684997558594e+02, 4.520611511230469e+02, 4.026660461425781e+02, 4.029314880371094e+02, 4.573077514648438e+02, 4.026660461425781e+02, 4.1732953874035e+02, 4.138607831923343e+02, 4.026660461425781e+02, 4.647574401855469e+02, 4.026660461425781e+02, 4.026660461425781e+02, 4.5375e+02, 4.026660461425781e+02, 4.026660461425781e+02, 4.089277038574219e+02, 4.026660461425781e+02, 4.026660522460937e+02, 4.10383544921875e+02, 4.026660461425781e+02, 4.026670944071262e+02, 4.496517517089844e+02, 4.026660461425781e+02, 4.028302001953125e+02, 4.584611389160156e+02, 4.026660461425781e+02, 4.164762015507139e+02, 4.141549865722656e+02, 4.026660461425781e+02, 4.562131435038469e+02, 4.026660461425781e+02, 4.026660461425781e+02, 4.525398315429687e+02, 4.026660461425781e+02, 4.026660461425781e+02, 4.085532592773437e+02, 4.026660461425781e+02, 4.026660522460937e+02, 4.106956176757812e+02, 4.026660461425781e+02, 4.026674194335938e+02, 4.489566711425781e+02, 4.026660461425781e+02, 4.028245239257812e+02, 4.60462451171875e+02, 4.026660461425781e+02, 4.180158264160156e+02, 4.147019592285156e+02, 4.026660461425781e+02, 4.628123107910156e+02, 4.026660461425781e+02, 4.026660461425781e+02, 4.546257995605469e+02, 4.026660461425781e+02, 4.026660461425781e+02, 4.088773315429688e+02, 4.026660461425781e+02, 4.026660949707031e+02, 4.136947326660156e+02, 4.026660461425781e+02, 4.026794555664063e+02, 4.545034484863281e+02, 4.026660461425781e+02, 4.031784057617188e+02, 4.677400268554687e+02, 4.026660461425781e+02, 4.227065519853072e+02, 4.1505766042815e+02, 4.026660461425781e+02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomFourElements.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomFourElements.txt index f2fdbfb1b6..a2c1716790 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomFourElements.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomFourElements.txt @@ -1,14 +1,14 @@ -last-generated=2020-08-17 +last-generated=2022-07-06 statistics-initialization= { "linear": "8" } statistics-simulation= { - "linear": "0, 0, 5, 0", + "linear": "0, 5, 0, 0", "nonlinear": " ", "number of continuous time states": "6", "numerical Jacobians": "0" } time=[0e+00, 3.1536e+07] -thermalZoneFourElements.TAir=[2.951499938964844e+02, 2.9398779296875e+02, 2.898493286132813e+02, 2.90607275390625e+02, 2.931631042480469e+02, 2.907240295410156e+02, 2.917747619628906e+02, 2.931908752441406e+02, 2.911169982910156e+02, 2.925028381347656e+02, 2.955375671386719e+02, 2.925761169433594e+02, 2.935292785644531e+02, 2.984001953125e+02, 2.9492646484375e+02, 2.9660498046875e+02, 2.993022705078125e+02, 2.974285705566406e+02, 3.018964233398438e+02, 3.003300415039063e+02, 3.012616271972656e+02, 3.035078308105469e+02, 3.005458740234375e+02, 2.982721618652344e+02, 3.037384643554688e+02, 3.034784240722656e+02, 3.0359619140625e+02, 3.046877807617187e+02, 3.024187683105469e+02, 3.036750366210937e+02, 3.095003051757812e+02, 3.038954040527344e+02, 3.062339477539062e+02, 3.127435607910156e+02, 3.083260131835938e+02, 3.092297973632812e+02, 3.136564758300781e+02, 3.061638000488281e+02, 3.085571350097656e+02, 3.118833435058594e+02, 3.078091430664062e+02, 3.104681213378906e+02, 3.133966735839844e+02, 3.117370178222656e+02, 3.154102172851562e+02, 3.108584594726562e+02, 3.06628759765625e+02, 3.093175659179688e+02, 3.06763330078125e+02, 3.07364794921875e+02, 3.142978820800781e+02, 3.087929626464844e+02, 3.094664428710938e+02, 3.142511779785156e+02, 3.084812194824219e+02, 3.079248962402344e+02, 3.138970275878906e+02, 3.090798522949219e+02, 3.109793029785156e+02, 3.15109228515625e+02, 3.106250305175781e+02, 3.14769287109375e+02, 3.082785827636719e+02, 3.067324829101562e+02, 3.105731323242188e+02, 3.050104370117188e+02, 3.058599243164062e+02, 3.101869445800781e+02, 3.058940856933594e+02, 3.070443054199219e+02, 3.089323120117188e+02, 3.062410095214844e+02, 3.056044799804687e+02, 3.089684936523437e+02, 3.020569702148438e+02, 3.023941040039062e+02, 3.077953247070312e+02, 3.020648254394531e+02, 3.047056274414062e+02, 3.061400207519531e+02, 3.019323425292969e+02, 3.032013061523438e+02, 2.999759643554688e+02, 2.988748474121094e+02, 3.01500634765625e+02, 2.957142028808594e+02, 2.949599426269531e+02, 2.986498718261719e+02, 2.948956665039062e+02, 2.967729370117187e+02, 2.980691528320312e+02, 2.946531616210938e+02, 2.942496826171875e+02, 2.953588562011719e+02, 2.919244445800781e+02, 2.922913818359375e+02, 2.931380737304688e+02, 2.911126281738281e+02, 2.937566589355469e+02, 2.922345642089844e+02, 2.91360595703125e+02] +thermalZoneFourElements.TAir=[2.951499938964844e+02, 2.942879516601562e+02, 2.90194189453125e+02, 2.910700927734375e+02, 2.935303894042969e+02, 2.909283447265625e+02, 2.919836853027344e+02, 2.934537292480469e+02, 2.914991638183594e+02, 2.929500549316406e+02, 2.960037536621094e+02, 2.929283508300781e+02, 2.9384599609375e+02, 2.988871948242187e+02, 2.952496398925781e+02, 2.970132141113281e+02, 2.998269958496094e+02, 2.978570068359375e+02, 3.023730773925781e+02, 3.007809326171875e+02, 3.016784057617188e+02, 3.039461303710938e+02, 3.010254089355469e+02, 2.98600927734375e+02, 3.041201843261719e+02, 3.039886474609375e+02, 3.039057861328125e+02, 3.04921533203125e+02, 3.027284545898438e+02, 3.039502563476562e+02, 3.099257202148438e+02, 3.042633239746094e+02, 3.067031555175781e+02, 3.133324462890625e+02, 3.089435485839844e+02, 3.099277954101562e+02, 3.142971557617187e+02, 3.065792053222656e+02, 3.0896240234375e+02, 3.123648193359375e+02, 3.084266967773438e+02, 3.111930725097656e+02, 3.146996520996094e+02, 3.127593139648437e+02, 3.164975036621094e+02, 3.121695556640625e+02, 3.073761962890625e+02, 3.100421875e+02, 3.07506884765625e+02, 3.081186462402344e+02, 3.152620544433594e+02, 3.096618041992188e+02, 3.104438781738281e+02, 3.150465270996094e+02, 3.091955505371094e+02, 3.087073669433594e+02, 3.146598754882813e+02, 3.098284729003906e+02, 3.115802429199219e+02, 3.158510009765625e+02, 3.113008422851562e+02, 3.155175476074219e+02, 3.08833984375e+02, 3.071439453125e+02, 3.109962646484375e+02, 3.053082580566406e+02, 3.06255712890625e+02, 3.106231750488281e+02, 3.06328076171875e+02, 3.074967651367188e+02, 3.093984069824219e+02, 3.066617919921875e+02, 3.060222961425781e+02, 3.093501708984375e+02, 3.023078491210937e+02, 3.026992492675781e+02, 3.083192138671875e+02, 3.024416076660156e+02, 3.051522033691406e+02, 3.067762756347656e+02, 3.0237353515625e+02, 3.036220703125e+02, 3.004729125976563e+02, 2.992729797363281e+02, 3.020162170410156e+02, 2.960875549316406e+02, 2.952146240234375e+02, 2.9905087890625e+02, 2.952270568847656e+02, 2.972843933105469e+02, 2.985963439941406e+02, 2.951623657226563e+02, 2.948353454589844e+02, 2.957599182128906e+02, 2.922709350585938e+02, 2.927590942382812e+02, 2.935307861328125e+02, 2.9145751953125e+02, 2.942669738769531e+02, 2.929485473632812e+02, 2.918494873046875e+02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomFourElementsTraceSubstance.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomFourElementsTraceSubstance.txt index 35758af289..ab2a9b4a1b 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomFourElementsTraceSubstance.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomFourElementsTraceSubstance.txt @@ -1,15 +1,15 @@ -last-generated=2020-04-30 +last-generated=2022-06-07 statistics-initialization= { "linear": "8" } statistics-simulation= { - "linear": "0, 5, 0", + "linear": "5, 0, 0", "nonlinear": " ", "number of continuous time states": "7", "numerical Jacobians": "0" } -thermalZoneFourElements.TAir=[2.951499938964844e+02, 2.914476928710938e+02, 2.912712707519531e+02, 2.910437927246094e+02, 2.909283142089844e+02, 2.938579711914062e+02, 2.948686828613281e+02, 2.940953063964844e+02, 2.941466064453125e+02, 2.941595153808594e+02, 2.935063781738281e+02, 2.922729187011719e+02, 2.921208190917969e+02, 2.919379577636719e+02, 2.917140197753906e+02, 2.91614990234375e+02, 2.913622436523438e+02, 2.911587524414062e+02, 2.910886535644531e+02, 2.928405151367188e+02, 2.948938903808594e+02, 2.944249877929688e+02, 2.942879943847656e+02, 2.942935485839844e+02, 2.93738037109375e+02, 2.924239807128906e+02, 2.923162231445312e+02, 2.921077880859375e+02, 2.919567260742188e+02, 2.918091125488281e+02, 2.917217407226562e+02, 2.917277526855469e+02, 2.91583251953125e+02, 2.927510375976562e+02, 2.946160278320312e+02, 2.947566528320312e+02, 2.945548400878906e+02, 2.946983337402344e+02, 2.943751220703125e+02, 2.92841064453125e+02, 2.926642150878906e+02, 2.924691467285156e+02, 2.922912902832031e+02, 2.921400756835938e+02, 2.919592895507812e+02, 2.917916870117188e+02, 2.915243835449219e+02, 2.91427490234375e+02, 2.936539611816406e+02, 2.938767700195312e+02, 2.941807861328125e+02, 2.942742309570312e+02, 2.940802001953125e+02, 2.929750366210938e+02, 2.922174377441406e+02, 2.920619812011719e+02, 2.919269714355469e+02, 2.917530822753906e+02, 2.915961608886719e+02, 2.913449096679688e+02, 2.911517944335938e+02, 2.909981384277344e+02, 2.929313354492188e+02, 2.938295288085938e+02, 2.938802185058594e+02, 2.937262268066406e+02, 2.938322448730469e+02, 2.931800842285156e+02, 2.91957275390625e+02, 2.917855224609375e+02, 2.916269226074219e+02, 2.914724426269531e+02, 2.9131640625e+02, 2.911526489257812e+02, 2.91014404296875e+02, 2.908445129394531e+02, 2.921770935058594e+02, 2.942006225585938e+02, 2.936254577636719e+02, 2.936772766113281e+02, 2.936727905273438e+02, 2.932725830078125e+02, 2.918532409667969e+02, 2.916776428222656e+02, 2.914907531738281e+02, 2.91481689453125e+02, 2.913123168945312e+02, 2.912054138183594e+02, 2.909681396484375e+02, 2.90879638671875e+02, 2.918453674316406e+02, 2.922160949707031e+02, 2.929531860351562e+02, 2.927793579101562e+02, 2.932393493652344e+02, 2.931247253417969e+02, 2.91382080078125e+02, 2.911976928710938e+02, 2.910282592773438e+02, 2.908981628417969e+02, 2.907615661621094e+02] time=[0e+00, 6.048e+05] -thermalZoneFourElements.volAir.C[1]=[0e+00, 5.737139892578125e+02, 5.98146728515625e+02, 6.034967041015625e+02, 6.081876220703125e+02, 6.128550415039062e+02, 6.17521728515625e+02, 6.221884155273438e+02, 2.578884887695312e+02, 2.413738098144531e+02, 2.453042755126953e+02, 2.499453582763672e+02, 2.546111450195312e+02, 2.592777709960938e+02, 2.639444580078125e+02, 6.24060302734375e+02, 6.629541625976562e+02, 6.688125610351562e+02, 6.73520263671875e+02, 6.781883544921875e+02, 6.828551025390625e+02, 6.87521728515625e+02, 3.58588623046875e+02, 3.079344177246094e+02, 3.106802062988281e+02, 3.152801818847656e+02, 3.199445190429688e+02, 3.246111145019531e+02, 3.292777709960938e+02, 6.322381591796875e+02, 7.263090209960938e+02, 7.340753784179688e+02, 7.388512573242188e+02, 7.435216064453125e+02, 7.481884155273438e+02, 7.528551025390625e+02, 5.1629052734375e+02, 3.764745483398438e+02, 3.761245422363281e+02, 3.806173706054688e+02, 3.852779846191406e+02, 3.899444580078125e+02, 3.946111145019531e+02, 5.481615600585938e+02, 7.824763793945312e+02, 7.90619140625e+02, 7.909007568359375e+02, 7.909102783203125e+02, 7.9091064453125e+02, 7.9091064453125e+02, 7.9091064453125e+02, 4.135791931152344e+02, 4.004709777832031e+02, 4.000163269042969e+02, 4.000005493164062e+02, 4.000000305175781e+02, 4e+02, 4e+02, 7.68966552734375e+02, 7.901480712890625e+02, 7.908844604492188e+02, 7.909097290039062e+02, 7.909105834960938e+02, 7.9091064453125e+02, 7.9091064453125e+02, 4.354601135253906e+02, 4.012306823730469e+02, 4.00042724609375e+02, 4.0000146484375e+02, 4.000000610351562e+02, 4e+02, 4e+02, 7.336052856445312e+02, 7.889186401367188e+02, 7.908397216796875e+02, 7.90908203125e+02, 7.909105834960938e+02, 7.9091064453125e+02, 7.9091064453125e+02, 4.926209106445312e+02, 4.032102661132812e+02, 4.001109924316406e+02, 4.000038452148438e+02, 4.000001220703125e+02, 4e+02, 4e+02, 6.4123291015625e+02, 7.857100219726562e+02, 7.907295532226562e+02, 7.909050903320312e+02, 7.909104614257812e+02, 7.9091064453125e+02, 7.9091064453125e+02, 6.418892822265625e+02, 4.084017944335938e+02, 4.002919006347656e+02, 4.000101318359375e+02, 4.000002746582031e+02, 4e+02, 4e+02, 4e+02] +thermalZoneFourElements.TAir=[2.951499938964844e+02, 2.914476928710938e+02, 2.912712707519531e+02, 2.910437927246094e+02, 2.909283142089844e+02, 2.940839538574219e+02, 2.949805297851562e+02, 2.941975708007812e+02, 2.942367553710938e+02, 2.942658996582031e+02, 2.935904541015625e+02, 2.923547973632812e+02, 2.922005920410156e+02, 2.920157470703125e+02, 2.917899169921875e+02, 2.916890869140625e+02, 2.914346313476562e+02, 2.912295227050781e+02, 2.911578369140625e+02, 2.930788269042969e+02, 2.951578979492188e+02, 2.9465771484375e+02, 2.94465576171875e+02, 2.944655151367188e+02, 2.939017639160156e+02, 2.925767517089844e+02, 2.924653625488281e+02, 2.922534790039062e+02, 2.9209912109375e+02, 2.919483337402344e+02, 2.918578796386719e+02, 2.918609619140625e+02, 2.91713623046875e+02, 2.928839416503906e+02, 2.949505004882812e+02, 2.950164489746094e+02, 2.947754211425781e+02, 2.949342041015625e+02, 2.946092224121094e+02, 2.930447082519531e+02, 2.928631896972656e+02, 2.926636962890625e+02, 2.924815673828125e+02, 2.923262329101562e+02, 2.921414794921875e+02, 2.919700012207031e+02, 2.916989440917969e+02, 2.915984497070312e+02, 2.93991943359375e+02, 2.940973205566406e+02, 2.944192199707031e+02, 2.945201110839844e+02, 2.943117065429688e+02, 2.931872863769531e+02, 2.92425048828125e+02, 2.9226513671875e+02, 2.921257934570312e+02, 2.919477233886719e+02, 2.917867431640625e+02, 2.915315246582031e+02, 2.913345947265625e+02, 2.911771850585938e+02, 2.932841796875e+02, 2.941686096191406e+02, 2.94197265625e+02, 2.939933776855469e+02, 2.941231689453125e+02, 2.934292602539062e+02, 2.922004089355469e+02, 2.920232849121094e+02, 2.918595275878906e+02, 2.917000427246094e+02, 2.915392150878906e+02, 2.913707885742188e+02, 2.912279663085938e+02, 2.910536804199219e+02, 2.92416259765625e+02, 2.94615966796875e+02, 2.939431762695312e+02, 2.939676513671875e+02, 2.939642944335938e+02, 2.935650634765625e+02, 2.921220397949219e+02, 2.919406127929688e+02, 2.917479553222656e+02, 2.917332763671875e+02, 2.915585327148438e+02, 2.914465026855469e+02, 2.912041931152344e+02, 2.9111083984375e+02, 2.920718383789062e+02, 2.924350891113281e+02, 2.932182922363281e+02, 2.930014038085938e+02, 2.934664611816406e+02, 2.933905334472656e+02, 2.916015014648438e+02, 2.9141259765625e+02, 2.912387390136719e+02, 2.911043395996094e+02, 2.909635620117188e+02] +thermalZoneFourElements.volAir.C[1]=[0e+00, 5.737139892578125e+02, 5.98146728515625e+02, 6.034967041015625e+02, 6.081876220703125e+02, 6.128550415039062e+02, 6.17521728515625e+02, 6.221884155273438e+02, 2.57888427734375e+02, 2.413733673095703e+02, 2.453042755126953e+02, 2.499453582763672e+02, 2.546111450195312e+02, 2.592777709960938e+02, 2.639444580078125e+02, 6.24060302734375e+02, 6.629541625976562e+02, 6.688125610351562e+02, 6.73520263671875e+02, 6.781883544921875e+02, 6.828551025390625e+02, 6.87521728515625e+02, 3.5858837890625e+02, 3.079325256347656e+02, 3.106800842285156e+02, 3.152801818847656e+02, 3.199445190429688e+02, 3.246111145019531e+02, 3.292777709960938e+02, 6.322381591796875e+02, 7.263090209960938e+02, 7.340753784179688e+02, 7.388512573242188e+02, 7.435216064453125e+02, 7.481884155273438e+02, 7.528551025390625e+02, 5.162907104492188e+02, 3.764738464355469e+02, 3.761247253417969e+02, 3.806173706054688e+02, 3.852779846191406e+02, 3.899444580078125e+02, 3.946111145019531e+02, 5.481615600585938e+02, 7.824763793945312e+02, 7.90619140625e+02, 7.909007568359375e+02, 7.909102783203125e+02, 7.9091064453125e+02, 7.9091064453125e+02, 7.9091064453125e+02, 4.135789489746094e+02, 4.0047119140625e+02, 4.00016357421875e+02, 4.000005493164062e+02, 4.000000305175781e+02, 4e+02, 4e+02, 7.68966552734375e+02, 7.9014697265625e+02, 7.908843994140625e+02, 7.909097290039062e+02, 7.909105834960938e+02, 7.9091064453125e+02, 7.9091064453125e+02, 4.354601745605469e+02, 4.012261352539062e+02, 4.000425720214844e+02, 4.0000146484375e+02, 4.000000610351562e+02, 4e+02, 4e+02, 7.336052856445312e+02, 7.889186401367188e+02, 7.908397216796875e+02, 7.90908203125e+02, 7.909105834960938e+02, 7.9091064453125e+02, 7.9091064453125e+02, 4.926194458007812e+02, 4.03210205078125e+02, 4.001109313964844e+02, 4.000038452148438e+02, 4.000001220703125e+02, 4e+02, 4e+02, 6.4123291015625e+02, 7.857100219726562e+02, 7.907295532226562e+02, 7.909050903320312e+02, 7.909104614257812e+02, 7.9091064453125e+02, 7.9091064453125e+02, 6.418892822265625e+02, 4.084028930664062e+02, 4.002913208007812e+02, 4.000101318359375e+02, 4.000002746582031e+02, 4e+02, 4e+02, 4e+02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomOneElement.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomOneElement.txt index 90078791b7..e9b3b1368b 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomOneElement.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomOneElement.txt @@ -1,4 +1,4 @@ -last-generated=2020-08-17 +last-generated=2022-06-07 statistics-initialization= { "linear": "3" @@ -11,4 +11,4 @@ statistics-simulation= "numerical Jacobians": "0" } time=[0e+00, 3.1536e+07] -thermalZoneOneElement.TAir=[2.951499938964844e+02, 3.013315734863281e+02, 2.876994873046875e+02, 2.898204895019531e+02, 3.033323486328125e+02, 2.901597900390625e+02, 2.925299499511719e+02, 3.029416381835937e+02, 2.8899443359375e+02, 2.92119873046875e+02, 3.084262084960938e+02, 2.909875549316406e+02, 2.946828674316406e+02, 3.142947082519531e+02, 2.934225646972656e+02, 2.978739318847656e+02, 3.101801513671875e+02, 2.971365600585938e+02, 3.127464111328125e+02, 3.156766540527344e+02, 3.012147827148438e+02, 3.135536071777344e+02, 3.032779296875e+02, 2.962997619628906e+02, 3.195596130371094e+02, 3.04847900390625e+02, 3.002519348144531e+02, 3.157251770019531e+02, 3.012510437011719e+02, 3.017507263183594e+02, 3.259073791503906e+02, 3.000724914550781e+02, 3.059288879394531e+02, 3.380396301269531e+02, 3.045187316894531e+02, 3.107938537597656e+02, 3.438313537597656e+02, 3.026288330078125e+02, 3.201223022460937e+02, 3.457015258789062e+02, 3.055744323730469e+02, 3.216186889648437e+02, 3.358656921386719e+02, 3.102723083496094e+02, 3.288234802246094e+02, 3.162106628417969e+02, 3.028185974121094e+02, 3.199081665039063e+02, 3.0396396484375e+02, 3.085757385253906e+02, 3.312208557128906e+02, 3.051432434082031e+02, 3.1054619140625e+02, 3.377340942382813e+02, 3.051135986328125e+02, 3.106055603027344e+02, 3.434800476074219e+02, 3.067548767089844e+02, 3.210019226074219e+02, 3.460153564453125e+02, 3.083438415527344e+02, 3.271786071777344e+02, 3.067021545410156e+02, 3.054068359375e+02, 3.234801818847656e+02, 3.012769775390625e+02, 3.045464233398437e+02, 3.237337097167969e+02, 3.015522338867187e+02, 3.064763610839844e+02, 3.216593017578125e+02, 3.037917907714844e+02, 3.032390380859375e+02, 3.299263916015625e+02, 2.99021923828125e+02, 3.009212951660156e+02, 3.349424011230469e+02, 2.989919006347656e+02, 3.116450927734375e+02, 3.30355712890625e+02, 3.005621337890625e+02, 3.114396911621094e+02, 3.004295104980469e+02, 2.968423645019531e+02, 3.120720153808594e+02, 2.924379272460938e+02, 2.938720153808594e+02, 3.116636352539062e+02, 2.931703247070312e+02, 2.9695009765625e+02, 3.093069152832031e+02, 2.91650439453125e+02, 2.933483520507813e+02, 3.033173156738281e+02, 2.889228210449219e+02, 2.914081115722656e+02, 3.004611450195313e+02, 2.89642138671875e+02, 2.995428283691406e+02, 2.976946105957031e+02, 2.912431945800781e+02] +thermalZoneOneElement.TAir=[2.951499938964844e+02, 3.018570190429688e+02, 2.881768920898438e+02, 2.903403442382813e+02, 3.036267395019531e+02, 2.902289428710938e+02, 2.927307495117187e+02, 3.032560729980469e+02, 2.894250915527344e+02, 2.926132019042969e+02, 3.090889282226562e+02, 2.912822082519531e+02, 2.949494140625e+02, 3.151926330566406e+02, 2.936318481445313e+02, 2.984374389648438e+02, 3.110132629394531e+02, 2.975376525878906e+02, 3.135140319824219e+02, 3.171804260253906e+02, 3.016444091796875e+02, 3.141403381347656e+02, 3.045285034179688e+02, 2.965858947753906e+02, 3.199848754882813e+02, 3.057753601074219e+02, 3.004097229003906e+02, 3.158793640136719e+02, 3.015358825683594e+02, 3.019325012207031e+02, 3.2643408203125e+02, 3.004446044921875e+02, 3.066210510253906e+02, 3.387644409179687e+02, 3.051436706542969e+02, 3.122164306640625e+02, 3.445924011230469e+02, 3.028183410644531e+02, 3.208542053222656e+02, 3.464178039550781e+02, 3.062404174804688e+02, 3.224268127441406e+02, 3.3946611328125e+02, 3.113434753417969e+02, 3.299429626464844e+02, 3.197330627441406e+02, 3.0345078125e+02, 3.204941467285156e+02, 3.045642578125e+02, 3.0964970703125e+02, 3.323888549804688e+02, 3.060240783691406e+02, 3.125504699707031e+02, 3.383651733398438e+02, 3.056894409179687e+02, 3.125153503417969e+02, 3.442369506835938e+02, 3.074678344726562e+02, 3.214298767089844e+02, 3.473086853027344e+02, 3.089976806640625e+02, 3.28114404296875e+02, 3.071360717773438e+02, 3.057613403320312e+02, 3.238771301269531e+02, 3.014627990722656e+02, 3.04967626953125e+02, 3.242199279785156e+02, 3.019224548339844e+02, 3.069242431640625e+02, 3.220901794433594e+02, 3.041405090332031e+02, 3.036081970214844e+02, 3.303008972167969e+02, 2.99181298828125e+02, 3.011909790039062e+02, 3.360384399414062e+02, 2.992898559570312e+02, 3.120551574707031e+02, 3.321649658203125e+02, 3.00944091796875e+02, 3.118985473632812e+02, 3.013286254882813e+02, 2.972527465820312e+02, 3.126952514648438e+02, 2.926956481933594e+02, 2.939956237792969e+02, 3.122431396484375e+02, 2.934895141601563e+02, 2.975475891113281e+02, 3.09885986328125e+02, 2.921164733886719e+02, 2.939286499023438e+02, 3.036000610351563e+02, 2.892481689453125e+02, 2.919022827148438e+02, 3.007906677246094e+02, 2.899187255859375e+02, 3.002776794433594e+02, 2.993014038085938e+02, 2.916399230957031e+02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomThreeElements.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomThreeElements.txt index 3b9b061750..3ee3c653e5 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomThreeElements.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomThreeElements.txt @@ -1,4 +1,4 @@ -last-generated=2020-08-17 +last-generated=2022-07-06 statistics-initialization= { "linear": "6" @@ -11,4 +11,4 @@ statistics-simulation= "numerical Jacobians": "0" } time=[0e+00, 3.1536e+07] -thermalZoneThreeElements.TAir=[2.951499938964844e+02, 2.951436767578125e+02, 2.90746875e+02, 2.919099853515625e+02, 2.947773620605469e+02, 2.917028503417969e+02, 2.928719055175781e+02, 2.946701049804688e+02, 2.924613098144531e+02, 2.940460693359375e+02, 2.974691772460938e+02, 2.939093688964844e+02, 2.949183715820312e+02, 3.003763244628906e+02, 2.963240844726562e+02, 2.983421936035156e+02, 3.0147392578125e+02, 2.991309814453125e+02, 3.041858337402344e+02, 3.023326293945312e+02, 3.03309326171875e+02, 3.05913623046875e+02, 3.02505859375e+02, 3.00074755859375e+02, 3.063072021484375e+02, 3.057641906738281e+02, 3.057405090332031e+02, 3.070944458007813e+02, 3.044655578613281e+02, 3.058095336914063e+02, 3.125851745605469e+02, 3.060303466796875e+02, 3.087661315917969e+02, 3.163518432617187e+02, 3.10968603515625e+02, 3.120412902832031e+02, 3.170937194824219e+02, 3.08221923828125e+02, 3.110158508300781e+02, 3.150074462890625e+02, 3.101932983398438e+02, 3.133495056152344e+02, 3.16611328125e+02, 3.145457702636719e+02, 3.188369079589844e+02, 3.135606384277344e+02, 3.088628295898437e+02, 3.119974975585938e+02, 3.090523132324219e+02, 3.097031677246094e+02, 3.176018676757812e+02, 3.111934448242188e+02, 3.118467712402344e+02, 3.174243835449219e+02, 3.106497131347656e+02, 3.100827026367188e+02, 3.170584350585938e+02, 3.114572204589844e+02, 3.13619677734375e+02, 3.183126708984375e+02, 3.131541442871094e+02, 3.179244018554688e+02, 3.103416381835938e+02, 3.08684521484375e+02, 3.132066223144531e+02, 3.068056335449219e+02, 3.079443115234375e+02, 3.128966125488281e+02, 3.078520385742187e+02, 3.091973449707031e+02, 3.113764953613281e+02, 3.082266540527344e+02, 3.075076477050781e+02, 3.114375854492188e+02, 3.034154968261719e+02, 3.039237060546875e+02, 3.103900268554688e+02, 3.036339965820313e+02, 3.068787353515625e+02, 3.08591845703125e+02, 3.037550659179688e+02, 3.052599853515625e+02, 3.015749694824219e+02, 3.004513061523438e+02, 3.035587890625e+02, 2.970058288574219e+02, 2.960983215332031e+02, 3.003966064453125e+02, 2.961006652832031e+02, 2.983298217773437e+02, 2.999240112304688e+02, 2.959646179199219e+02, 2.957532104492187e+02, 2.9680888671875e+02, 2.929542114257812e+02, 2.935931396484375e+02, 2.945520385742187e+02, 2.922117126464844e+02, 2.953899658203125e+02, 2.937488647460938e+02, 2.926836242675781e+02] +thermalZoneThreeElements.TAir=[2.951499938964844e+02, 2.955013916015625e+02, 2.911482543945312e+02, 2.924536682128906e+02, 2.952003723144531e+02, 2.919334716796875e+02, 2.931109619140625e+02, 2.949760864257813e+02, 2.929073059082031e+02, 2.945654296875e+02, 2.980077209472656e+02, 2.943124084472656e+02, 2.952813537597656e+02, 3.0094091796875e+02, 2.966942016601562e+02, 2.988170166015625e+02, 3.020806213378906e+02, 2.996264099121094e+02, 3.047381896972656e+02, 3.028516967773438e+02, 3.03791748046875e+02, 3.064194946289062e+02, 3.030606079101562e+02, 3.004515563964844e+02, 3.067514953613281e+02, 3.063556823730469e+02, 3.060952209472656e+02, 3.07358154296875e+02, 3.048223327636719e+02, 3.061244567871094e+02, 3.130820007324219e+02, 3.064572814941406e+02, 3.093105773925781e+02, 3.170394470214844e+02, 3.1168662109375e+02, 3.128484497070312e+02, 3.178396362304687e+02, 3.086937194824219e+02, 3.114761962890625e+02, 3.155698059082031e+02, 3.109122009277344e+02, 3.141924743652344e+02, 3.181259826660156e+02, 3.157338928222656e+02, 3.201008850097656e+02, 3.150659790039062e+02, 3.097181884765625e+02, 3.128277404785156e+02, 3.099084838867187e+02, 3.105746215820312e+02, 3.187272338867188e+02, 3.1220009765625e+02, 3.129718505859375e+02, 3.183433410644531e+02, 3.114730834960938e+02, 3.109726867675781e+02, 3.179451110839844e+02, 3.123238647460938e+02, 3.143088989257812e+02, 3.191729858398438e+02, 3.139354248046875e+02, 3.187888916015625e+02, 3.109774536132812e+02, 3.091541687011719e+02, 3.136927368164062e+02, 3.071432189941406e+02, 3.084036193847656e+02, 3.1340576171875e+02, 3.083567565917969e+02, 3.097228271484375e+02, 3.119173583984375e+02, 3.087132690429688e+02, 3.079870971679687e+02, 3.11877587890625e+02, 3.037015319824219e+02, 3.042767028808594e+02, 3.110004516601563e+02, 3.040687316894531e+02, 3.073958190917969e+02, 3.093275939941406e+02, 3.042643737792969e+02, 3.057432189941406e+02, 3.021443115234375e+02, 3.009104187011719e+02, 3.041568664550781e+02, 2.974340209960938e+02, 2.963862976074219e+02, 3.008621765136719e+02, 2.964842712402344e+02, 2.989272827148437e+02, 3.005351257324219e+02, 2.965553588867188e+02, 2.964329772949219e+02, 2.972674194335938e+02, 2.933516235351562e+02, 2.941357421875e+02, 2.950040344238281e+02, 2.926099548339844e+02, 2.959846008300781e+02, 2.945745727539062e+02, 2.932497253417969e+02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomTwoElements.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomTwoElements.txt index 8ae3089530..80e5912dc3 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomTwoElements.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomTwoElements.txt @@ -1,4 +1,4 @@ -last-generated=2020-08-17 +last-generated=2022-07-06 statistics-initialization= { "linear": "5" @@ -11,4 +11,4 @@ statistics-simulation= "numerical Jacobians": "0" } time=[0e+00, 3.1536e+07] -thermalZoneTwoElements.TAir=[2.951499938964844e+02, 2.968261657714844e+02, 2.919173828125e+02, 2.936818237304688e+02, 2.97110595703125e+02, 2.933746948242188e+02, 2.948162231445312e+02, 2.969264587402344e+02, 2.944552307128906e+02, 2.964008972167969e+02, 3.004158935546875e+02, 2.961053283691406e+02, 2.973506469726562e+02, 3.038278869628906e+02, 2.989624206542969e+02, 3.014607849121094e+02, 3.051518249511719e+02, 3.0237724609375e+02, 3.084602905273438e+02, 3.059313720703125e+02, 3.073985595703125e+02, 3.104168334960938e+02, 3.062379272460938e+02, 3.034121643066406e+02, 3.109734558105469e+02, 3.103103637695312e+02, 3.101767395019531e+02, 3.116969177246094e+02, 3.086537353515625e+02, 3.102356201171875e+02, 3.184822998046875e+02, 3.105072448730469e+02, 3.138673461914062e+02, 3.230435668945312e+02, 3.164868041992187e+02, 3.1776513671875e+02, 3.236900695800781e+02, 3.129406433105469e+02, 3.162817993164062e+02, 3.210672790527344e+02, 3.154875183105469e+02, 3.192411987304687e+02, 3.231371337890625e+02, 3.207679992675781e+02, 3.258664489746094e+02, 3.192972717285156e+02, 3.137471984863281e+02, 3.175111511230469e+02, 3.140920715332031e+02, 3.148958801269531e+02, 3.244386901855469e+02, 3.166440856933594e+02, 3.173731201171875e+02, 3.2405859375e+02, 3.159032592773438e+02, 3.151930847167969e+02, 3.235741516113281e+02, 3.169797729492187e+02, 3.194732238769531e+02, 3.249997131347656e+02, 3.190032043457031e+02, 3.2472666015625e+02, 3.153712768554688e+02, 3.13471484375e+02, 3.189709594726563e+02, 3.112202758789062e+02, 3.127214782714844e+02, 3.186361999511719e+02, 3.125384704589844e+02, 3.142253662109375e+02, 3.167252197265625e+02, 3.130067016601562e+02, 3.1211396484375e+02, 3.167639831542969e+02, 3.070950500488281e+02, 3.077833557128906e+02, 3.155774108886719e+02, 3.074553283691406e+02, 3.114456237792969e+02, 3.133627624511719e+02, 3.077215270996094e+02, 3.094352661132813e+02, 3.049948425292969e+02, 3.037448913574219e+02, 3.0747763671875e+02, 2.995919799804688e+02, 2.98485498046875e+02, 3.036931335449219e+02, 2.985738098144531e+02, 3.013568542480469e+02, 3.031889038085938e+02, 2.984394348144531e+02, 2.982920043945313e+02, 2.993686401367187e+02, 2.948070495605469e+02, 2.957131958007812e+02, 2.9676669921875e+02, 2.940297790527344e+02, 2.979225769042969e+02, 2.958504455566406e+02, 2.947004699707031e+02] +thermalZoneTwoElements.TAir=[2.951499938964844e+02, 2.972677368164062e+02, 2.924033325195313e+02, 2.943452331542969e+02, 2.976182861328125e+02, 2.936435852050781e+02, 2.951010986328125e+02, 2.972940185546875e+02, 2.949968627929687e+02, 2.970311645507812e+02, 3.010638427734375e+02, 2.965884216308594e+02, 2.977847106933594e+02, 3.045078552246094e+02, 2.994024353027344e+02, 3.02033447265625e+02, 3.058788452148438e+02, 3.029743774414063e+02, 3.091245849609375e+02, 3.065530395507812e+02, 3.079814453125e+02, 3.110237670898438e+02, 3.069046020507812e+02, 3.038619873046875e+02, 3.1150888671875e+02, 3.110167541503906e+02, 3.105967468261719e+02, 3.120061218261719e+02, 3.090823120117187e+02, 3.106110412597656e+02, 3.190843200683594e+02, 3.110219665527344e+02, 3.145243591308594e+02, 3.238799255371094e+02, 3.173543640136719e+02, 3.187315673828125e+02, 3.245887023925781e+02, 3.134964111328125e+02, 3.168203369140625e+02, 3.21746240234375e+02, 3.163585815429688e+02, 3.202615234375e+02, 3.249592163085937e+02, 3.222049377441406e+02, 3.273913513183594e+02, 3.210853881835938e+02, 3.147637451171875e+02, 3.185016174316406e+02, 3.1511513671875e+02, 3.159422119140625e+02, 3.258027038574219e+02, 3.178560485839844e+02, 3.187177185058594e+02, 3.251622192382812e+02, 3.168859069824219e+02, 3.162510070800781e+02, 3.246413940429687e+02, 3.180212280273437e+02, 3.20292529296875e+02, 3.260333984375e+02, 3.1994091796875e+02, 3.257611145019531e+02, 3.16126953125e+02, 3.140261535644531e+02, 3.195508117675781e+02, 3.116177978515625e+02, 3.132739074707031e+02, 3.192496398925781e+02, 3.131428588867187e+02, 3.148549682617187e+02, 3.173744812011719e+02, 3.135885803222656e+02, 3.126880432128906e+02, 3.172893310546875e+02, 3.074325622558594e+02, 3.082057800292969e+02, 3.163145874023438e+02, 3.079766723632812e+02, 3.120678466796875e+02, 3.142459838867188e+02, 3.083330078125e+02, 3.100118835449219e+02, 3.056689636230469e+02, 3.042963012695312e+02, 3.08201123046875e+02, 3.0010400390625e+02, 2.98824072265625e+02, 3.042526489257813e+02, 2.990352844238281e+02, 3.020824951171875e+02, 3.039259338378906e+02, 2.991495178222656e+02, 2.991108581542969e+02, 2.999090698242188e+02, 2.952789306640625e+02, 2.963665161132812e+02, 2.973047241210937e+02, 2.945043212890625e+02, 2.986432556152344e+02, 2.968369995117188e+02, 2.95380615234375e+02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_RoomSteadyState.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_RoomSteadyState.txt index 30d784239f..c935a8333e 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_RoomSteadyState.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_RoomSteadyState.txt @@ -1,4 +1,4 @@ -last-generated=2020-04-16 +last-generated=2022-06-02 statistics-initialization= { "linear": "3" diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_RoomWithLatentGain.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_RoomWithLatentGain.txt index 4d01d29fd5..97e68064a3 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_RoomWithLatentGain.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_RoomWithLatentGain.txt @@ -1,12 +1,12 @@ -last-generated=2019-10-16 +last-generated=2022-06-02 statistics-simulation= { "linear": "2, 0", "nonlinear": " ", - "number of continuous time states": "6", + "number of continuous time states": "7", "numerical Jacobians": "0" } -thermalZoneTwoElements.TAir=[2.951499938964844e+02, 2.943123168945312e+02, 2.94062744140625e+02, 2.942751770019531e+02, 2.950402221679688e+02, 2.971297302246094e+02, 2.977590942382812e+02, 2.982715759277344e+02, 2.986346740722656e+02, 2.99208984375e+02, 2.994610900878906e+02, 2.98100341796875e+02, 2.974502258300781e+02, 2.970909118652344e+02, 2.967208251953125e+02, 2.960545349121094e+02, 2.958064270019531e+02, 2.957844848632812e+02, 2.965672607421875e+02, 2.990032348632812e+02, 2.992369689941406e+02, 2.998171691894531e+02, 3.001768188476562e+02, 3.004059448242188e+02, 3.009591979980469e+02, 2.998161926269531e+02, 2.991689147949219e+02, 2.984994506835938e+02, 2.982076416015625e+02, 2.976765747070312e+02, 2.971705627441406e+02, 2.970527648925781e+02, 2.973605346679688e+02, 3.002591552734375e+02, 3.004480590820312e+02, 3.009708557128906e+02, 3.014101867675781e+02, 3.016473693847656e+02, 3.023979797363281e+02, 3.009530334472656e+02, 3.0035888671875e+02, 2.999312438964844e+02, 2.994087524414062e+02, 2.988316650390625e+02, 2.983908386230469e+02, 2.980624084472656e+02, 2.984072875976562e+02, 2.989284057617188e+02, 3.013089904785156e+02, 3.019749755859375e+02, 3.023681335449219e+02, 3.02678955078125e+02, 3.033302307128906e+02, 3.028249816894531e+02, 3.016523132324219e+02, 3.008785400390625e+02, 3.004104614257812e+02, 3.000773315429688e+02, 2.993245849609375e+02, 2.989972229003906e+02, 2.989769592285156e+02, 2.997576293945312e+02, 3.022025451660156e+02, 3.026119384765625e+02, 3.031655578613281e+02, 3.034737548828125e+02, 3.03664794921875e+02, 3.041816711425781e+02, 3.024288024902344e+02, 3.02012451171875e+02, 3.012827453613281e+02, 3.008532104492188e+02, 3.003642883300781e+02, 2.9980908203125e+02, 2.997124328613281e+02, 2.999310913085938e+02, 3.030759887695312e+02, 3.032693786621094e+02, 3.037391662597656e+02, 3.041130065917969e+02, 3.043036193847656e+02, 3.048994445800781e+02, 3.033297119140625e+02, 3.026460571289062e+02, 3.019912109375e+02, 3.0164208984375e+02, 3.010040283203125e+02, 3.004607238769531e+02, 3.00177001953125e+02, 3.005146179199219e+02, 3.033135375976562e+02, 3.035558166503906e+02, 3.04215576171875e+02, 3.046128540039062e+02, 3.048618469238281e+02, 3.055132141113281e+02, 3.038790893554688e+02, 3.035561218261719e+02, 3.027326049804688e+02, 3.021739807128906e+02, 3.018659973144531e+02] time=[0e+00, 6.048e+05] -senMasFra.X=[9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 1.138187292963266e-02, 1.178160402923822e-02, 1.18634644895792e-02, 1.18802273645997e-02, 1.188366021960974e-02, 1.188436336815357e-02, 1.011527609080076e-02, 1.000483427196741e-02, 1.000020280480385e-02, 1.000000815838575e-02, 1.000000070780516e-02, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 1.109376177191734e-02, 1.172260567545891e-02, 1.185138244181871e-02, 1.187775190919638e-02, 1.188315358012915e-02, 1.188425999134779e-02, 1.028528716415167e-02, 1.001196261495352e-02, 1.00005017593503e-02, 1.00000211969018e-02, 1.000000070780516e-02, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 1.064051408320665e-02, 1.162978820502758e-02, 1.183237507939339e-02, 1.187386177480221e-02, 1.188235636800528e-02, 1.188409700989723e-02, 1.070604007691145e-02, 1.002960838377476e-02, 1.000124122947454e-02, 1.000005193054676e-02, 1.000000257045031e-02, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 1.148377265781164e-02, 1.180247217416763e-02, 1.186773739755154e-02, 1.188110280781984e-02, 1.188383996486664e-02, 1.174733601510525e-02, 1.007327623665333e-02, 1.000307500362396e-02, 1.000012923032045e-02, 1.000000536441803e-02, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 1.125406008213758e-02, 1.175543293356895e-02, 1.185810472816229e-02, 1.187913026660681e-02, 1.188343577086926e-02, 1.188431773334742e-02, 1.018134597688913e-02, 1.000760309398174e-02, 1.000031922012568e-02, 1.00000137463212e-02, 1.000000070780516e-02, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 1.089269854128361e-02, 1.168143190443516e-02, 1.184295024722815e-02, 1.187602709978819e-02, 1.188280060887337e-02, 1.188418734818697e-02, 1.04488003998995e-02, 1.001881621778011e-02, 1.000078953802586e-02, 1.000003330409527e-02, 1.000000163912773e-02, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 1.032421085983515e-02, 1.156501565128565e-02, 1.181911118328571e-02, 1.187114510685205e-02, 1.188180036842823e-02, 1.188398245722055e-02, 1.111071649938822e-02, 1.004657242447138e-02, 1.000195275992155e-02, 1.000008173286915e-02, 1.000000350177288e-02] -senRelHum.phi=[6.120145916938782e-01, 6.441865563392639e-01, 6.541358828544617e-01, 6.456563472747803e-01, 6.161256432533264e-01, 6.174419522285461e-01, 6.153332591056824e-01, 6.00928008556366e-01, 5.889229774475098e-01, 5.693914890289307e-01, 5.610118508338928e-01, 5.181745886802673e-01, 5.3285151720047e-01, 5.442094206809998e-01, 5.564481019973755e-01, 5.792915225028992e-01, 5.880669355392456e-01, 5.888495445251465e-01, 5.616205334663391e-01, 5.383086800575256e-01, 5.60801088809967e-01, 5.478530526161194e-01, 5.375849604606628e-01, 5.306519269943237e-01, 5.138165354728699e-01, 4.759342968463898e-01, 4.813919961452484e-01, 5.00306248664856e-01, 5.090422034263612e-01, 5.254307389259338e-01, 5.416015386581421e-01, 5.45447051525116e-01, 5.354654788970947e-01, 4.796259105205536e-01, 5.181384682655334e-01, 5.112414956092834e-01, 5.000654458999634e-01, 4.935759305953979e-01, 4.726686179637909e-01, 4.633723199367523e-01, 4.496200382709503e-01, 4.597491025924683e-01, 4.740596413612366e-01, 4.905151724815369e-01, 5.035216808319092e-01, 5.134647488594055e-01, 5.030298829078674e-01, 4.877117872238159e-01, 4.86606240272522e-01, 4.810613989830017e-01, 4.728364944458008e-01, 4.649596810340881e-01, 4.47992742061615e-01, 4.559153020381927e-01, 4.187663793563843e-01, 4.350166916847229e-01, 4.469537734985353e-01, 4.557651579380035e-01, 4.764182865619659e-01, 4.857287406921387e-01, 4.863119721412659e-01, 4.644104540348053e-01, 4.528612494468689e-01, 4.618559777736664e-01, 4.512691497802734e-01, 4.441510438919067e-01, 4.394828081130981e-01, 4.267463386058807e-01, 4.04641270637512e-01, 4.074613749980927e-01, 4.24775093793869e-01, 4.355283379554749e-01, 4.481590986251831e-01, 4.630066156387329e-01, 4.656474888324738e-01, 4.596965610980988e-01, 4.169090092182159e-01, 4.419546723365784e-01, 4.361394643783569e-01, 4.281218349933624e-01, 4.237415790557861e-01, 4.097003638744355e-01, 3.942480683326728e-01, 3.932658731937408e-01, 4.07686710357666e-01, 4.159862697124481e-01, 4.317125976085663e-01, 4.456349313259125e-01, 4.531067311763763e-01, 4.442311525344849e-01, 3.899373412132263e-01, 4.304624497890472e-01, 4.236035645008087e-01, 4.159571528434753e-01, 4.104919135570526e-01, 3.957306146621704e-01, 4.060970544815063e-01, 3.742810189723969e-01, 3.906564116477966e-01, 4.033715128898621e-01, 4.106208086013794e-01] +thermalZoneTwoElements.TAir=[2.951499938964844e+02, 2.943123168945312e+02, 2.940627746582031e+02, 2.942751159667969e+02, 2.950402221679688e+02, 2.971297302246094e+02, 2.977591247558594e+02, 2.982716064453125e+02, 2.986346740722656e+02, 2.992089538574219e+02, 2.994610900878906e+02, 2.98100341796875e+02, 2.974501342773438e+02, 2.970909118652344e+02, 2.967207641601562e+02, 2.960545349121094e+02, 2.958064270019531e+02, 2.957844848632812e+02, 2.965672607421875e+02, 2.990031127929688e+02, 2.992369689941406e+02, 2.998171691894531e+02, 3.001768188476562e+02, 3.004059448242188e+02, 3.009591979980469e+02, 2.998161315917969e+02, 2.991690979003906e+02, 2.984994201660156e+02, 2.982076416015625e+02, 2.976765441894531e+02, 2.971705932617188e+02, 2.970527648925781e+02, 2.973605346679688e+02, 3.002591857910156e+02, 3.004480590820312e+02, 3.009708557128906e+02, 3.014101867675781e+02, 3.016473693847656e+02, 3.023979187011719e+02, 3.009530334472656e+02, 3.003591613769531e+02, 2.999312438964844e+02, 2.994087524414062e+02, 2.988316955566406e+02, 2.983908081054688e+02, 2.980624084472656e+02, 2.984073181152344e+02, 2.989283752441406e+02, 3.013088989257812e+02, 3.019750061035156e+02, 3.023681640625e+02, 3.02678955078125e+02, 3.033302307128906e+02, 3.028249816894531e+02, 3.016523132324219e+02, 3.008785400390625e+02, 3.004104614257812e+02, 3.000773315429688e+02, 2.993246154785156e+02, 2.989972229003906e+02, 2.989769592285156e+02, 2.997576599121094e+02, 3.022026672363281e+02, 3.026119384765625e+02, 3.031655578613281e+02, 3.034737548828125e+02, 3.03664794921875e+02, 3.041816711425781e+02, 3.024290466308594e+02, 3.02012451171875e+02, 3.012827453613281e+02, 3.008532104492188e+02, 3.003642883300781e+02, 2.998090515136719e+02, 2.997124328613281e+02, 2.999311218261719e+02, 3.030761108398438e+02, 3.032693481445312e+02, 3.037391662597656e+02, 3.041129150390625e+02, 3.043036193847656e+02, 3.048994750976562e+02, 3.033297424316406e+02, 3.026460571289062e+02, 3.019912414550781e+02, 3.0164208984375e+02, 3.010040283203125e+02, 3.004607238769531e+02, 3.00177001953125e+02, 3.005146179199219e+02, 3.033135375976562e+02, 3.035558471679688e+02, 3.04215576171875e+02, 3.046128845214844e+02, 3.048618469238281e+02, 3.055132141113281e+02, 3.038792114257812e+02, 3.035561218261719e+02, 3.027326049804688e+02, 3.021739807128906e+02, 3.01865966796875e+02] +senMasFra.X=[9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 1.138187292963266e-02, 1.178160682320595e-02, 1.186346355825663e-02, 1.18802273645997e-02, 1.188366021960974e-02, 1.188436336815357e-02, 1.011527143418789e-02, 1.000483334064484e-02, 1.000020280480385e-02, 1.000000815838575e-02, 1.000000070780516e-02, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 1.109376084059477e-02, 1.172260567545891e-02, 1.185138244181871e-02, 1.187775284051895e-02, 1.188315637409687e-02, 1.188425999134779e-02, 1.028528716415167e-02, 1.001196261495352e-02, 1.00005017593503e-02, 1.00000211969018e-02, 1.000000070780516e-02, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 1.064051408320665e-02, 1.162978913635016e-02, 1.183237507939339e-02, 1.187386177480221e-02, 1.1882359161973e-02, 1.188409700989723e-02, 1.070604100823402e-02, 1.002960838377476e-02, 1.000124122947454e-02, 1.000005193054676e-02, 1.000000257045031e-02, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 1.148377265781164e-02, 1.180247310549021e-02, 1.186773832887411e-02, 1.188110280781984e-02, 1.188383996486664e-02, 1.174733601510525e-02, 1.007327623665333e-02, 1.000307593494654e-02, 1.000012923032045e-02, 1.000000536441803e-02, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 1.125406567007303e-02, 1.175543386489153e-02, 1.185810472816229e-02, 1.187913026660681e-02, 1.188343577086926e-02, 1.188431773334742e-02, 1.01813469082117e-02, 1.000760495662689e-02, 1.000031922012568e-02, 1.00000137463212e-02, 1.000000070780516e-02, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 1.089269854128361e-02, 1.168143190443516e-02, 1.184294745326042e-02, 1.187602616846561e-02, 1.188280060887337e-02, 1.188418734818697e-02, 1.044880133122208e-02, 1.001881994307041e-02, 1.000078953802586e-02, 1.000003330409527e-02, 1.000000163912773e-02, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 1.032421085983515e-02, 1.156501565128565e-02, 1.181911118328571e-02, 1.187114510685205e-02, 1.188180036842823e-02, 1.188398245722055e-02, 1.111071649938822e-02, 1.004657428711653e-02, 1.000195555388927e-02, 1.000008173286915e-02, 1.000000350177288e-02] +senRelHum.phi=[6.120145916938782e-01, 6.44186794757843e-01, 6.541358232498169e-01, 6.456583142280579e-01, 6.161261200904846e-01, 6.174418926239014e-01, 6.153315901756287e-01, 6.009265780448914e-01, 5.88922917842865e-01, 5.693920254707336e-01, 5.610118508338928e-01, 5.181744694709778e-01, 5.32854437828064e-01, 5.442094206809998e-01, 5.564497709274292e-01, 5.792915821075439e-01, 5.880669355392456e-01, 5.888498425483704e-01, 5.616206526756287e-01, 5.383120179176331e-01, 5.608009099960327e-01, 5.478528738021851e-01, 5.375844836235046e-01, 5.306527614593506e-01, 5.138164758682251e-01, 4.759358465671539e-01, 4.81386661529541e-01, 5.003072619438171e-01, 5.090424418449403e-01, 5.254316329956055e-01, 5.416013598442078e-01, 5.454469919204712e-01, 5.354655981063843e-01, 4.796247780323029e-01, 5.18138587474823e-01, 5.112415552139282e-01, 5.000655055046082e-01, 4.935759902000427e-01, 4.726702868938446e-01, 4.633720815181732e-01, 4.496126174926758e-01, 4.597493708133698e-01, 4.740595817565918e-01, 4.905146360397339e-01, 5.035229921340942e-01, 5.134647488594055e-01, 5.030285716056824e-01, 4.877124130725861e-01, 4.866081476211548e-01, 4.810607135295868e-01, 4.728353023529053e-01, 4.649596214294434e-01, 4.479921758174896e-01, 4.559150636196136e-01, 4.187664985656738e-01, 4.350170791149139e-01, 4.469540715217591e-01, 4.557652473449706e-01, 4.76417750120163e-01, 4.857288599014282e-01, 4.863119423389435e-01, 4.644100069999695e-01, 4.528580605983734e-01, 4.618557691574097e-01, 4.512690901756287e-01, 4.44150984287262e-01, 4.394826591014862e-01, 4.267463088035583e-01, 4.046358168125151e-01, 4.074614644050598e-01, 4.247751533985138e-01, 4.355282485485077e-01, 4.481588006019592e-01, 4.630075693130493e-01, 4.656474590301514e-01, 4.596960544586182e-01, 4.169055819511414e-01, 4.419547319412231e-01, 4.361393451690674e-01, 4.281235933303833e-01, 4.23741489648819e-01, 4.096994698047638e-01, 3.942472040653236e-01, 3.932659924030304e-01, 4.076859354972839e-01, 4.159863591194153e-01, 4.317127764225006e-01, 4.456351697444916e-01, 4.531061053276062e-01, 4.442315101623535e-01, 3.899375200271606e-01, 4.304617345333099e-01, 4.236036837100983e-01, 4.159561693668365e-01, 4.104919135570526e-01, 3.95730584859848e-01, 4.060947895050049e-01, 3.742807507514954e-01, 3.906567394733429e-01, 4.033714234828949e-01, 4.106210172176361e-01] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_RoomWithoutLatentGain.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_RoomWithoutLatentGain.txt index 86eac8343a..36691b1933 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_RoomWithoutLatentGain.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_RoomWithoutLatentGain.txt @@ -1,12 +1,12 @@ -last-generated=2019-10-16 +last-generated=2022-06-02 statistics-simulation= { "linear": "2, 0", "nonlinear": " ", - "number of continuous time states": "6", + "number of continuous time states": "7", "numerical Jacobians": "0" } -thermalZoneTwoElements.TAir=[2.951499938964844e+02, 2.943123168945312e+02, 2.94062744140625e+02, 2.942751770019531e+02, 2.950402221679688e+02, 2.971217041015625e+02, 2.977507934570312e+02, 2.982628479003906e+02, 2.986255493164062e+02, 2.991997375488281e+02, 2.994512634277344e+02, 2.980980224609375e+02, 2.974479675292969e+02, 2.970886840820312e+02, 2.967186279296875e+02, 2.960523986816406e+02, 2.958043212890625e+02, 2.957824096679688e+02, 2.965652465820312e+02, 2.989933166503906e+02, 2.992267761230469e+02, 2.998066711425781e+02, 3.001659851074219e+02, 3.003947143554688e+02, 3.009476623535156e+02, 2.998120422363281e+02, 2.991648864746094e+02, 2.984954223632812e+02, 2.982037353515625e+02, 2.976726989746094e+02, 2.971668090820312e+02, 2.970490417480469e+02, 2.973569030761719e+02, 3.002479858398438e+02, 3.004365539550781e+02, 3.00958984375e+02, 3.013980407714844e+02, 3.016348266601562e+02, 3.023851623535156e+02, 3.009474487304688e+02, 3.00353271484375e+02, 2.999259033203125e+02, 2.994035034179688e+02, 2.988265380859375e+02, 2.983857421875e+02, 2.980574035644531e+02, 2.984024047851562e+02, 2.989235534667969e+02, 3.012962341308594e+02, 3.019620666503906e+02, 3.0235498046875e+02, 3.026654357910156e+02, 3.033165283203125e+02, 3.028130493164062e+02, 3.016457214355469e+02, 3.008720703125e+02, 3.004041137695312e+02, 3.000710754394531e+02, 2.993184509277344e+02, 2.989911804199219e+02, 2.989710083007812e+02, 2.997518005371094e+02, 3.021890258789062e+02, 3.025982666015625e+02, 3.031515502929688e+02, 3.034594421386719e+02, 3.036502380371094e+02, 3.041668395996094e+02, 3.024213256835938e+02, 3.020050964355469e+02, 3.012755126953125e+02, 3.008460998535156e+02, 3.003572998046875e+02, 2.998022155761719e+02, 2.997056884765625e+02, 2.999244689941406e+02, 3.0306201171875e+02, 3.032550048828125e+02, 3.037245483398438e+02, 3.040980529785156e+02, 3.042884826660156e+02, 3.048839721679688e+02, 3.03321533203125e+02, 3.026380004882812e+02, 3.019833068847656e+02, 3.016343383789062e+02, 3.009963989257812e+02, 3.004532165527344e+02, 3.001696166992188e+02, 3.005073547363281e+02, 3.032997741699219e+02, 3.035409545898438e+02, 3.042004699707031e+02, 3.045974426269531e+02, 3.048462524414062e+02, 3.054974365234375e+02, 3.038697814941406e+02, 3.035474853515625e+02, 3.027241821289062e+02, 3.021656799316406e+02, 3.018578186035156e+02] time=[0e+00, 6.048e+05] +thermalZoneTwoElements.TAir=[2.951499938964844e+02, 2.943123168945312e+02, 2.940627746582031e+02, 2.942751159667969e+02, 2.950402221679688e+02, 2.971217041015625e+02, 2.977507934570312e+02, 2.982628479003906e+02, 2.986255493164062e+02, 2.991996765136719e+02, 2.994512634277344e+02, 2.980980224609375e+02, 2.974478759765625e+02, 2.970886840820312e+02, 2.967185668945312e+02, 2.960523986816406e+02, 2.958043212890625e+02, 2.957824096679688e+02, 2.965652465820312e+02, 2.989933166503906e+02, 2.992267761230469e+02, 2.998067016601562e+02, 3.001659851074219e+02, 3.003947448730469e+02, 3.009476623535156e+02, 2.998120727539062e+02, 2.991650390625e+02, 2.984954528808594e+02, 2.982037353515625e+02, 2.976726989746094e+02, 2.971668090820312e+02, 2.970490417480469e+02, 2.973569030761719e+02, 3.002480163574219e+02, 3.004365539550781e+02, 3.00958984375e+02, 3.013980407714844e+02, 3.016348266601562e+02, 3.023851623535156e+02, 3.009474792480469e+02, 3.003536987304688e+02, 2.999258728027344e+02, 2.994035034179688e+02, 2.988265075683594e+02, 2.983857421875e+02, 2.980574035644531e+02, 2.984024047851562e+02, 2.989235534667969e+02, 3.012962951660156e+02, 3.019620361328125e+02, 3.023550109863281e+02, 3.026654357910156e+02, 3.033165283203125e+02, 3.028130798339844e+02, 3.016457214355469e+02, 3.008720703125e+02, 3.004041137695312e+02, 3.000710754394531e+02, 2.993184814453125e+02, 2.989911804199219e+02, 2.989710083007812e+02, 2.997518005371094e+02, 3.021890563964844e+02, 3.025982055664062e+02, 3.031515502929688e+02, 3.034594421386719e+02, 3.036502685546875e+02, 3.041668701171875e+02, 3.024215698242188e+02, 3.020050964355469e+02, 3.012755126953125e+02, 3.008460998535156e+02, 3.003573303222656e+02, 2.998021850585938e+02, 2.997056884765625e+02, 2.999244995117188e+02, 3.030620422363281e+02, 3.032550048828125e+02, 3.037245788574219e+02, 3.040980529785156e+02, 3.042884826660156e+02, 3.048840026855469e+02, 3.033215942382812e+02, 3.026380004882812e+02, 3.019833374023438e+02, 3.016343383789062e+02, 3.009963989257812e+02, 3.004532165527344e+02, 3.001696472167969e+02, 3.005073547363281e+02, 3.032997436523438e+02, 3.035409545898438e+02, 3.042004699707031e+02, 3.045975646972656e+02, 3.048462524414062e+02, 3.054974365234375e+02, 3.038699951171875e+02, 3.035475463867188e+02, 3.027241516113281e+02, 3.021656799316406e+02, 3.018578186035156e+02] senMasFra.X=[9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03] -senRelHum.phi=[6.120145916938782e-01, 6.441865563392639e-01, 6.541358828544617e-01, 6.456563472747803e-01, 6.161256432533264e-01, 5.43192982673645e-01, 5.231040716171265e-01, 5.073705911636353e-01, 4.965486228466034e-01, 4.799454212188721e-01, 4.728701412677765e-01, 5.123759508132935e-01, 5.326681733131409e-01, 5.442713499069214e-01, 5.56520938873291e-01, 5.793668031692505e-01, 5.881421566009521e-01, 5.889235734939575e-01, 5.61689555644989e-01, 4.858406782150269e-01, 4.791786074638367e-01, 4.630720019340515e-01, 4.533993899822235e-01, 4.473603367805481e-01, 4.33133602142334e-01, 4.62926059961319e-01, 4.809352159500122e-01, 5.004008412361145e-01, 5.091596245765687e-01, 5.255519151687622e-01, 5.417242050170898e-01, 5.45568585395813e-01, 5.355826020240784e-01, 4.512237310409546e-01, 4.462656378746032e-01, 4.328480660915375e-01, 4.219228327274323e-01, 4.161603152751923e-01, 3.984795212745667e-01, 4.331393241882324e-01, 4.484482109546661e-01, 4.59837406873703e-01, 4.742046892642975e-01, 4.906639158725739e-01, 5.036742091178894e-01, 5.136180520057678e-01, 5.031757950782776e-01, 4.878517091274261e-01, 4.244283735752106e-01, 4.083428084850311e-01, 3.991740047931671e-01, 3.920935690402985e-01, 3.777016401290894e-01, 3.887771368026733e-01, 4.158974587917328e-01, 4.350479543209076e-01, 4.471144080162049e-01, 4.55932080745697e-01, 4.765910506248474e-01, 4.859023690223694e-01, 4.864829480648041e-01, 4.645700752735138e-01, 4.030180275440216e-01, 3.936137855052948e-01, 3.812910616397858e-01, 3.746226727962494e-01, 3.705570995807648e-01, 3.59796017408371e-01, 3.976491093635559e-01, 4.073266983032227e-01, 4.249399900436401e-01, 4.35708075761795e-01, 4.483421742916107e-01, 4.63193416595459e-01, 4.658323526382446e-01, 4.598757326602936e-01, 3.832550048828125e-01, 3.790355622768402e-01, 3.689868152141571e-01, 3.61208587884903e-01, 3.5731440782547e-01, 3.454394042491913e-01, 3.77593070268631e-01, 3.927135467529297e-01, 4.078411161899567e-01, 4.161723852157593e-01, 4.319047331809998e-01, 4.458307921886444e-01, 4.533030092716217e-01, 4.444199204444885e-01, 3.780642747879028e-01, 3.728796541690826e-01, 3.591078519821167e-01, 3.510963916778564e-01, 3.461779356002808e-01, 3.336703181266785e-01, 3.659403026103973e-01, 3.727403283119202e-01, 3.907704949378967e-01, 4.035617709159851e-01, 4.108148217201233e-01] +senRelHum.phi=[6.120145916938782e-01, 6.44186794757843e-01, 6.541358232498169e-01, 6.456583142280579e-01, 6.161261200904846e-01, 5.431928634643555e-01, 5.231040716171265e-01, 5.073705911636353e-01, 4.96548593044281e-01, 4.799465835094452e-01, 4.728701710700989e-01, 5.12376070022583e-01, 5.326711535453796e-01, 5.442712903022766e-01, 5.565226078033447e-01, 5.793668627738953e-01, 5.881421566009521e-01, 5.889238715171814e-01, 5.61689555644989e-01, 4.858408868312836e-01, 4.791785478591919e-01, 4.630718529224396e-01, 4.533991813659668e-01, 4.473603367805481e-01, 4.331336319446564e-01, 4.629256427288055e-01, 4.809302091598511e-01, 5.004006028175354e-01, 5.09159803390503e-01, 5.255522131919861e-01, 5.417240262031555e-01, 5.45568585395813e-01, 5.355826616287231e-01, 4.512231051921844e-01, 4.462656676769256e-01, 4.328480958938599e-01, 4.219227433204651e-01, 4.161602556705475e-01, 3.98479700088501e-01, 4.331381916999817e-01, 4.484369456768036e-01, 4.598376452922821e-01, 4.742046296596527e-01, 4.9066561460495e-01, 5.036742687225342e-01, 5.136181116104126e-01, 5.031759142875671e-01, 4.878523051738739e-01, 4.244268536567688e-01, 4.083429872989655e-01, 3.991731405258179e-01, 3.920935690402985e-01, 3.777014911174774e-01, 3.887764513492584e-01, 4.158975183963776e-01, 4.350483417510986e-01, 4.471147060394288e-01, 4.559321701526641e-01, 4.765905141830444e-01, 4.859024882316589e-01, 4.864829182624817e-01, 4.64569628238678e-01, 4.030171632766724e-01, 3.936152160167694e-01, 3.812912702560425e-01, 3.746227622032166e-01, 3.705562651157379e-01, 3.597957193851471e-01, 3.97643506526947e-01, 4.07326728105545e-01, 4.249399900436401e-01, 4.357079863548279e-01, 4.483418762683868e-01, 4.63194340467453e-01, 4.658323228359222e-01, 4.598752558231354e-01, 3.832546770572662e-01, 3.790356814861298e-01, 3.689866364002228e-01, 3.61208587884903e-01, 3.573143482208252e-01, 3.45438688993454e-01, 3.77591997385025e-01, 3.927135467529297e-01, 4.078401327133179e-01, 4.161724448204041e-01, 4.319048821926117e-01, 4.458310306072235e-01, 4.533023834228516e-01, 4.444202780723572e-01, 3.780650794506073e-01, 3.728795945644379e-01, 3.591078519821167e-01, 3.51094126701355e-01, 3.46177875995636e-01, 3.336702883243561e-01, 3.659356832504272e-01, 3.727393746376038e-01, 3.907707333564758e-01, 4.035617113113403e-01, 4.1081503033638e-01] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase1.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase1.txt index d27c13b806..c5d1ade1b7 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase1.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase1.txt @@ -1,18 +1,18 @@ -last-generated=2016-12-21 +last-generated=2022-06-02 statistics-initialization= { "linear": "4" } statistics-simulation= { - "numerical Jacobians": "0", - "nonlinear": " ", - "number of continuous time states": "3", - "linear": "3, 0" + "linear": "3, 0", + "nonlinear": " ", + "number of continuous time states": "4", + "numerical Jacobians": "0" } -mean.y=[0., 302.353485107421875, 297.562957763671875, 299.955718994140625, 305.80694580078125, 301.903076171875, 308.714385986328125, 303.594268798828125, 305.653900146484375, 311.210906982421875, 307.027984619140625, 313.556304931640625, 308.1861572265625, 309.992218017578125, 315.325225830078125, 310.929840087890625, 317.242706298828125, 311.682220458984375, 313.29522705078125, 318.457672119140625, 313.90057373046875, 320.04937744140625, 314.343963623046875, 315.80999755859375, 320.84259033203125, 316.162322998046875, 322.186248779296875, 316.370513916015625, 317.724609375, 322.658355712890625, 317.88433837890625, 323.81317138671875, 317.913421630859375, 319.182342529296875, 324.040802001953125, 319.195404052734375, 325.05181884765625, 319.088134765625, 320.29217529296875, 325.09332275390625, 320.193572998046875, 325.994903564453125, 319.98248291015625, 321.13714599609375, 325.894683837890625, 320.95355224609375, 326.712890625, 320.663421630859375, 321.780487060546875, 326.504791259765625, 321.53216552734375, 327.259552001953125, 321.181854248046875, 322.270294189453125, 326.96929931640625, 321.972686767578125, 327.675750732421875, 321.576568603515625, 322.6431884765625, 327.322967529296875, 322.308074951171875, 327.992645263671875, 321.8770751953125, 322.9271240234375, 327.59222412109375, 322.563446044921875, 328.23388671875, 322.10589599609375, 323.143280029296875, 327.797210693359375, 322.75787353515625, 328.417572021484375, 322.28009033203125, 323.307861328125, 327.95330810546875, 322.9058837890625, 328.55743408203125, 322.412689208984375, 323.43316650390625, 328.0721435546875, 323.018585205078125, 328.66387939453125, 322.513671875, 323.528564453125, 328.16259765625, 323.1043701171875, 328.744964599609375, 322.590545654296875, 323.6011962890625, 328.231475830078125, 323.169708251953125, 328.806671142578125, 322.649078369140625, 323.656494140625, 328.283935546875, 323.219451904296875, 328.853668212890625, 322.69366455078125, 323.6986083984375, 328.3238525390625, 323.257293701171875] -reference.y[1]=[295.149993896484375, 302.350006103515625, 297.649993896484375, 297.649993896484375, 297.649993896484375, 297.649993896484375, 297.649993896484375, 297.649993896484375, 297.649993896484375, 297.649993896484375, 297.649993896484375, 297.649993896484375, 297.649993896484375, 297.649993896484375, 297.649993896484375, 297.649993896484375, 317.25, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 311.95001220703125, 328.350006103515625, 323.25] -time=[0., 5184000.] -assEqu.threShold=[0.15000000596046447754, 0.15000000596046447754] -assEqu.satisfied=[1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.] -assEqu.diff=[0., 0.00348945148289203644, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.0072946338914334774, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.0261372588574886322, 0.00730660278350114822] +time=[0e+00, 5.184e+06] +mean.y=[0e+00, 3.023534851074219e+02, 2.9756298828125e+02, 2.999557800292969e+02, 3.05806884765625e+02, 3.019031066894531e+02, 3.0871435546875e+02, 3.035942687988281e+02, 3.056539611816406e+02, 3.112108459472656e+02, 3.070280456542969e+02, 3.135562438964844e+02, 3.081861877441406e+02, 3.099923095703125e+02, 3.153251342773438e+02, 3.109298706054688e+02, 3.172427062988281e+02, 3.116822509765625e+02, 3.132953491210938e+02, 3.184576416015625e+02, 3.139006042480469e+02, 3.200493469238281e+02, 3.14343994140625e+02, 3.158100891113281e+02, 3.20842529296875e+02, 3.161623840332031e+02, 3.221862182617188e+02, 3.163705139160156e+02, 3.177247009277344e+02, 3.226583251953125e+02, 3.178843688964844e+02, 3.238131408691406e+02, 3.179134521484375e+02, 3.191824035644531e+02, 3.24040771484375e+02, 3.191954345703125e+02, 3.250518188476562e+02, 3.19088134765625e+02, 3.20292236328125e+02, 3.2509326171875e+02, 3.20193603515625e+02, 3.25994873046875e+02, 3.199825134277344e+02, 3.2113720703125e+02, 3.258945922851562e+02, 3.209535827636719e+02, 3.26712890625e+02, 3.206634521484375e+02, 3.217805480957031e+02, 3.265047302246094e+02, 3.215321960449219e+02, 3.27259521484375e+02, 3.21181884765625e+02, 3.222703552246094e+02, 3.269692687988281e+02, 3.219727172851562e+02, 3.276757507324219e+02, 3.215765686035156e+02, 3.226432800292969e+02, 3.273229370117188e+02, 3.223081359863281e+02, 3.279926147460938e+02, 3.218771057128906e+02, 3.229271850585938e+02, 3.275921936035156e+02, 3.225634765625e+02, 3.2823388671875e+02, 3.221058959960938e+02, 3.231433410644531e+02, 3.277971801757812e+02, 3.227578735351562e+02, 3.284175415039062e+02, 3.222800903320312e+02, 3.233079223632812e+02, 3.279532775878906e+02, 3.229058837890625e+02, 3.285574035644531e+02, 3.224127197265625e+02, 3.234332275390625e+02, 3.280720520019531e+02, 3.230185852050781e+02, 3.286638793945312e+02, 3.225137023925781e+02, 3.235286254882812e+02, 3.281625366210938e+02, 3.231044311523438e+02, 3.287449340820312e+02, 3.22590576171875e+02, 3.236012878417969e+02, 3.282314147949219e+02, 3.231697082519531e+02, 3.288066711425781e+02, 3.226491088867188e+02, 3.236565551757812e+02, 3.282838745117188e+02, 3.23219482421875e+02, 3.288536376953125e+02, 3.226936645507812e+02, 3.236986694335938e+02, 3.283238525390625e+02, 3.232572937011719e+02] +reference.y[1]=[2.951499938964844e+02, 3.023500061035156e+02, 2.976499938964844e+02, 2.976499938964844e+02, 2.976499938964844e+02, 2.976499938964844e+02, 2.976499938964844e+02, 2.976499938964844e+02, 2.976499938964844e+02, 2.976499938964844e+02, 2.976499938964844e+02, 2.976499938964844e+02, 2.976499938964844e+02, 2.976499938964844e+02, 2.976499938964844e+02, 2.976499938964844e+02, 3.1725e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.119500122070312e+02, 3.283500061035156e+02, 3.2325e+02] +assEqu.diff=[0e+00, 3.492300398647785e-03, 7.098940102423512e-09, 1.08832675971749e-16, -2.452738751072427e-24, 2.535045538226271e-30, -2.125102396998472e-28, 1.350844554654212e-29, -1.921203869349755e-31, 7.791199879058042e-30, 1.930192992199928e-31, -1.075927980967243e-31, -1.439425893360508e-32, 7.203165168324732e-29, 1.946361557389609e-27, -5.125858935867982e-29, 7.284594234079123e-03, -3.084629662808279e-09, 5.601631936080764e-10, 1.425215501171806e-11, 3.837621626728849e-12, 3.739800136237648e-10, -3.131626291619227e-09, 6.648799288910823e-10, -6.792755247175819e-10, 9.924985278075837e-10, 1.862763943094592e-09, -3.960450190021447e-09, -5.214843556978413e-10, -1.345028866062137e-09, 6.540368246987782e-10, 4.011746934651228e-09, 4.628658345495751e-09, -9.152889002272957e-10, -1.483122069599864e-09, -6.143773823019671e-10, -1.378859426637291e-08, -4.561488520238299e-09, 3.637573020576212e-10, 8.918356331211186e-11, -2.287566580605471e-09, -1.328843701742244e-08, 2.392280817886672e-09, 1.888142697747952e-10, 4.344700155201053e-10, 2.490123662823862e-09, 2.386755459937717e-09, -4.134976805403312e-09, -1.683565370447226e-10, -7.887132613682013e-10, 2.536427956556508e-09, 1.307612507162048e-08, -2.430700529743035e-09, 2.70053396311809e-10, -1.016060235947691e-09, 6.422986587040214e-10, -3.358041400505233e-09, 4.157913569005978e-09, 6.75635825064802e-10, 5.054593410491748e-10, -4.322763536013241e-10, 3.004360094038816e-09, -4.122948205065313e-09, -3.597448727798991e-10, -4.748537674181819e-10, 4.183613455666091e-10, -1.684989148209581e-09, 4.958612631611459e-09, 4.240956197332218e-10, 6.346065339893334e-10, -7.278530000931482e-10, 2.053933689794007e-09, -4.993455871016295e-09, -4.185845281501344e-10, -6.854967149472202e-10, 9.353421370761339e-10, 2.271933752240329e-09, -4.968478961586698e-09, 3.89581839010944e-10, -5.512752032643675e-09, 1.136797989076399e-09, 2.258509601560377e-09, -4.981744794463339e-09, 4.173637269122565e-10, -1.918265990497048e-09, -6.24768636825479e-09, -2.144691313432645e-09, 2.292037670770242e-09, 3.247732083266897e-09, -3.813659610329978e-09, 9.249498944541301e-10, 2.692380762780999e-09, -4.284481214256175e-09, 7.907935972717439e-10, -3.436260609390729e-09, 3.955225313934108e-10, 7.963976145219931e-09, -5.283796955524167e-09, 3.522648006626383e-10, 2.615482173860073e-02, 7.308605592697859e-03] +assEqu.threShold=[1.500000059604645e-01, 1.500000059604645e-01] +assEqu.satisfied=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase10.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase10.txt index f2428ab602..47e2a5b85a 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase10.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase10.txt @@ -1,14 +1,14 @@ -last-generated=2016-12-21 +last-generated=2022-06-02 statistics-simulation= { - "numerical Jacobians": "0", - "nonlinear": " ", - "number of continuous time states": "3", - "linear": "3, 0" + "linear": "3, 0", + "nonlinear": " ", + "number of continuous time states": "4", + "numerical Jacobians": "0" } -mean.y=[0., 293.8006591796875, 292.430938720703125, 294.326324462890625, 295.751068115234375, 295.19818115234375, 297.53009033203125, 295.63385009765625, 297.0496826171875, 298.09197998046875, 297.210418701171875, 299.24114990234375, 297.10467529296875, 298.300384521484375, 299.16705322265625, 298.134521484375, 300.0269775390625, 297.7801513671875, 298.874755859375, 299.660797119140625, 298.558929443359375, 300.387847900390625, 298.090362548828125, 299.1385498046875, 299.887542724609375, 298.753814697265625, 300.5535888671875, 298.232818603515625, 299.259674072265625, 299.991668701171875, 298.84332275390625, 300.62969970703125, 298.298248291015625, 299.3153076171875, 300.03948974609375, 298.884429931640625, 300.664642333984375, 298.328277587890625, 299.34088134765625, 300.06146240234375, 298.9033203125, 300.680694580078125, 298.34210205078125, 299.35260009765625, 300.071533203125, 298.9119873046875, 300.688079833984375, 298.348419189453125, 299.358001708984375, 300.076171875, 298.91595458984375, 300.69146728515625, 298.351348876953125, 299.3604736328125, 300.07830810546875, 298.91778564453125, 300.693023681640625, 298.3526611328125, 299.361602783203125, 300.07928466796875, 298.91864013671875, 300.6937255859375, 298.353271484375, 299.36212158203125, 300.0797119140625, 298.91900634765625, 300.694061279296875, 298.35357666015625, 299.36236572265625, 300.079925537109375, 298.919189453125, 300.6942138671875, 298.35369873046875, 299.36248779296875, 300.08001708984375, 298.919281005859375, 300.69427490234375, 298.353759765625, 299.362518310546875, 300.080078125, 298.9193115234375, 300.694305419921875, 298.353790283203125, 299.362548828125, 300.080078125, 298.919342041015625, 300.6943359375, 298.353790283203125, 299.362548828125, 300.080108642578125, 298.919342041015625, 300.6943359375, 298.353790283203125, 299.362548828125, 300.080108642578125, 298.919342041015625, 300.6943359375, 298.353790283203125, 299.362579345703125, 300.080108642578125, 298.919342041015625] -reference.y[1]=[290.75, 293.850006103515625, 292.649993896484375, 292.649993896484375, 292.649993896484375, 292.649993896484375, 292.649993896484375, 292.649993896484375, 292.649993896484375, 292.649993896484375, 292.649993896484375, 292.649993896484375, 292.649993896484375, 292.649993896484375, 292.649993896484375, 292.649993896484375, 300.04998779296875, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 298.149993896484375, 300.04998779296875, 298.850006103515625] -time=[0., 5184000.] -assEqu.threShold=[0.15000000596046447754, 0.15000000596046447754] -assEqu.satisfied=[1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.] -assEqu.diff=[0., 0.04935332387685775757, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.02303342148661613464, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.03010139800608158112, 0.06934741884469985962] +time=[0e+00, 5.184e+06] +mean.y=[0e+00, 2.938006286621094e+02, 2.924309997558594e+02, 2.943263549804688e+02, 2.957509460449219e+02, 2.951982421875e+02, 2.975300598144531e+02, 2.956339416503906e+02, 2.970497436523438e+02, 2.980918884277344e+02, 2.972104797363281e+02, 2.992410888671875e+02, 2.971047058105469e+02, 2.98300537109375e+02, 2.991669616699219e+02, 2.981345825195312e+02, 3.000269165039062e+02, 2.977802124023438e+02, 2.988748168945312e+02, 2.996607055664062e+02, 2.985589904785156e+02, 3.003877258300781e+02, 2.980903930664062e+02, 2.991386108398438e+02, 2.998874206542969e+02, 2.987538757324219e+02, 3.005534973144531e+02, 2.982328491210938e+02, 2.99259765625e+02, 2.999915466308594e+02, 2.988433837890625e+02, 3.00629638671875e+02, 2.982982788085938e+02, 2.993153991699219e+02, 3.000393981933594e+02, 2.988844909667969e+02, 3.006646118164062e+02, 2.983283386230469e+02, 2.993409423828125e+02, 3.000613403320312e+02, 2.989033813476562e+02, 3.006806335449219e+02, 2.983421325683594e+02, 2.993526916503906e+02, 3.000714416503906e+02, 2.989120483398438e+02, 3.006880187988281e+02, 2.983484802246094e+02, 2.993580627441406e+02, 3.000760498046875e+02, 2.989161376953125e+02, 3.0069140625e+02, 2.983513793945312e+02, 2.993605346679688e+02, 3.000781860351562e+02, 2.989179382324219e+02, 3.006929321289062e+02, 2.983527221679688e+02, 2.993616638183594e+02, 3.000791625976562e+02, 2.989187622070312e+02, 3.006936645507812e+02, 2.983533325195312e+02, 2.993621826171875e+02, 3.000796203613281e+02, 2.989191284179688e+02, 3.006940002441406e+02, 2.983536376953125e+02, 2.993624267578125e+02, 3.000798034667969e+02, 2.989193115234375e+02, 3.006941528320312e+02, 2.98353759765625e+02, 2.99362548828125e+02, 3.000798950195312e+02, 2.989193725585938e+02, 3.006942138671875e+02, 2.983538208007812e+02, 2.993626098632812e+02, 3.000799560546875e+02, 2.9891943359375e+02, 3.006942443847656e+02, 2.983538818359375e+02, 2.993626403808594e+02, 3.000799560546875e+02, 2.9891943359375e+02, 3.006942749023438e+02, 2.983539123535156e+02, 2.993626403808594e+02, 3.000799865722656e+02, 2.9891943359375e+02, 3.006942749023438e+02, 2.983538208007812e+02, 2.993626708984375e+02, 3.000799865722656e+02, 2.9891943359375e+02, 3.006942749023438e+02, 2.983538208007812e+02, 2.993626708984375e+02, 3.000800170898438e+02, 2.989193725585938e+02] +reference.y[1]=[2.9075e+02, 2.938500061035156e+02, 2.926499938964844e+02, 2.926499938964844e+02, 2.926499938964844e+02, 2.926499938964844e+02, 2.926499938964844e+02, 2.926499938964844e+02, 2.926499938964844e+02, 2.926499938964844e+02, 2.926499938964844e+02, 2.926499938964844e+02, 2.926499938964844e+02, 2.926499938964844e+02, 2.926499938964844e+02, 2.926499938964844e+02, 3.000499877929688e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 3.000499877929688e+02, 2.988500061035156e+02] +assEqu.diff=[0e+00, 4.938330501317978e-02, 2.580521279787421e-14, 3.123082304920533e-12, -4.523194319518386e-17, -2.104671681234287e-22, -7.276725310234218e-30, -6.47020816835847e-33, 8.982323156322077e-43, 0e+00, 0e+00, -0e+00, -0e+00, 0e+00, 0e+00, 0e+00, 2.309037744998932e-02, -1.162385834285047e-12, 3.926817479597947e-16, 1.795171940078603e-28, -1.753705073612377e-37, 2.802596928649634e-45, -0e+00, 0e+00, 0e+00, 0e+00, -0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -0e+00, -0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -0e+00, -0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -0e+00, -0e+00, -0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 3.003142215311527e-02, 6.938740611076355e-02] +assEqu.threShold=[1.500000059604645e-01, 1.500000059604645e-01] +assEqu.satisfied=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase11.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase11.txt index 81622cfb42..a81c8a8b5a 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase11.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase11.txt @@ -1,4 +1,4 @@ -last-generated=2021-05-19 +last-generated=2022-07-06 statistics-initialization= { "nonlinear": "4", @@ -8,12 +8,12 @@ statistics-simulation= { "linear": "0", "nonlinear": "3", - "number of continuous time states": "4", + "number of continuous time states": "5", "numerical Jacobians": "0" } time=[0e+00, 5.184e+06] -mean.y=[0e+00, 4.641445007324219e+02, -5e+02, -4.999999694824219e+02, 1.254028854370117e+02, -5e+02, -5e+02, -5e+02, -5e+02, 3.263825607299805e+01, -5e+02, -5e+02, -5e+02, -5e+02, 2.897175788879395e+01, -5e+02, -5e+02, -5e+02, -5e+02, 2.88038215637207e+01, -5e+02, -5e+02, -5e+02, -5e+02, 2.879046249389648e+01, -5e+02, -5e+02, -5e+02, -5e+02, 2.878766632080078e+01, -5e+02, -5e+02, -5e+02, -5e+02, 2.879179382324219e+01, -5e+02, -5e+02, -5e+02, -5e+02, 2.880495262145996e+01, -5e+02, -5e+02, -5e+02, -5e+02, 2.879916954040527e+01, -5e+02, -5e+02, -5e+02, -5e+02, 2.878919792175293e+01, -5e+02, -5e+02, -5e+02, -5e+02, 2.88028564453125e+01, -5e+02, -5e+02, -5e+02, -5e+02, 2.880102157592773e+01, -5e+02, -5e+02, -5e+02, -5e+02, 2.879032516479492e+01, -5e+02, -5e+02, -5e+02, -5e+02, 2.879096412658691e+01, -5e+02, -5e+02, -5e+02, -5e+02, 2.878577423095703e+01, -5e+02, -5e+02, -5e+02, -5e+02, 2.87895450592041e+01, -5e+02, -5e+02, -5e+02, -5e+02, 2.878308868408203e+01, -5e+02, -5e+02, -5e+02, -5e+02, 2.880088996887207e+01, -5e+02, -5e+02, -5e+02, -5e+02, 2.878608703613281e+01, -5e+02, -5e+02, -5e+02, -5e+02, 2.878821754455566e+01, -5e+02] +mean.y=[0e+00, 4.641104431152344e+02, -5e+02, -4.999999694824219e+02, 1.254104309082031e+02, -5e+02, -5e+02, -5e+02, -5e+02, 3.265721130371094e+01, -5e+02, -5e+02, -5e+02, -5e+02, 2.897640037536621e+01, -5e+02, -5e+02, -5e+02, -5e+02, 2.881919479370117e+01, -5e+02, -5e+02, -5e+02, -5e+02, 2.881340789794922e+01, -5e+02, -5e+02, -5e+02, -5e+02, 2.881283187866211e+01, -5e+02, -5e+02, -5e+02, -5e+02, 2.881323051452637e+01, -5e+02, -5e+02, -5e+02, -5e+02, 2.881260108947754e+01, -5e+02, -5e+02, -5e+02, -5e+02, 2.881303024291992e+01, -5e+02, -5e+02, -5e+02, -5e+02, 2.881108665466309e+01, -5e+02, -5e+02, -5e+02, -5e+02, 2.881208038330078e+01, -5e+02, -5e+02, -5e+02, -5e+02, 2.88116512298584e+01, -5e+02, -5e+02, -5e+02, -5e+02, 2.881206130981445e+01, -5e+02, -5e+02, -5e+02, -5e+02, 2.881125068664551e+01, -5e+02, -5e+02, -5e+02, -5e+02, 2.880933380126953e+01, -5e+02, -5e+02, -5e+02, -5e+02, 2.881088829040527e+01, -5e+02, -5e+02, -5e+02, -5e+02, 2.881344032287598e+01, -5e+02, -5e+02, -5e+02, -5e+02, 2.88116569519043e+01, -5e+02, -5e+02, -5e+02, -5e+02, 2.881243896484375e+01, -5e+02, -5e+02, -5e+02, -5e+02, 2.881081008911133e+01, -5e+02] reference.y[2]=[0e+00, 4.64e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, 2.8e+01, -5e+02] -assEqu.diff=[0e+00, 1.445061713457108e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.085709300241433e-11, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.882168292999268e-01, 2.586375558166765e-11] +assEqu.diff=[0e+00, 1.104537844657898e-01, -9.129559333523264e-16, -0e+00, -0e+00, -0e+00, -0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -0e+00, 0e+00, -0e+00, 0e+00, 0e+00, 1.274813726803714e-10, -1.595681323617873e-14, -0e+00, -0e+00, -0e+00, -0e+00, 0e+00, -0e+00, -0e+00, -0e+00, 0e+00, -0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 8.108099102973938e-01, 1.972959816354258e-11] assEqu.threShold=[1.5e+00, 1.5e+00] assEqu.satisfied=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase12.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase12.txt index 0373e08896..f30179f2d2 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase12.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase12.txt @@ -1,14 +1,14 @@ -last-generated=2016-12-21 +last-generated=2022-06-02 statistics-simulation= { - "numerical Jacobians": "0", - "nonlinear": " ", - "number of continuous time states": "5", - "linear": "0, 2, 0" + "linear": "0, 2, 0", + "nonlinear": " ", + "number of continuous time states": "6", + "numerical Jacobians": "0" } -mean.y=[0., 298.6617431640625, 295.697296142578125, 299.543212890625, 300.205352783203125, 299.4207763671875, 302.67578125, 298.95172119140625, 302.434051513671875, 302.952728271484375, 301.682220458984375, 304.8345947265625, 300.703887939453125, 303.9906005859375, 304.43206787109375, 302.899871826171875, 305.99700927734375, 301.6473388671875, 304.8287353515625, 305.228607177734375, 303.5555419921875, 306.6229248046875, 302.15533447265625, 305.280029296875, 305.657501220703125, 303.9085693359375, 306.959930419921875, 302.428863525390625, 305.52301025390625, 305.888458251953125, 304.098663330078125, 307.141387939453125, 302.576141357421875, 305.65386962890625, 306.012786865234375, 304.201019287109375, 307.239105224609375, 302.65545654296875, 305.72430419921875, 306.079742431640625, 304.256134033203125, 307.291717529296875, 302.698150634765625, 305.762237548828125, 306.115814208984375, 304.28582763671875, 307.320037841796875, 302.721160888671875, 305.782684326171875, 306.135223388671875, 304.301788330078125, 307.335296630859375, 302.7335205078125, 305.793670654296875, 306.145660400390625, 304.310394287109375, 307.343505859375, 302.740203857421875, 305.799591064453125, 306.15130615234375, 304.315032958984375, 307.347930908203125, 302.743804931640625, 305.80279541015625, 306.154327392578125, 304.317535400390625, 307.350311279296875, 302.7457275390625, 305.80450439453125, 306.15594482421875, 304.318878173828125, 307.351593017578125, 302.74676513671875, 305.805419921875, 306.156829833984375, 304.319580078125, 307.352294921875, 302.747314453125, 305.805908203125, 306.157318115234375, 304.319976806640625, 307.3526611328125, 302.74761962890625, 305.806182861328125, 306.157562255859375, 304.3201904296875, 307.352874755859375, 302.747802734375, 305.80633544921875, 306.15771484375, 304.3203125, 307.35296630859375, 302.74786376953125, 305.806396484375, 306.15777587890625, 304.32037353515625, 307.35302734375, 302.7479248046875, 305.80645751953125, 306.157806396484375, 304.320404052734375] -reference.y[1]=[294.649993896484375, 298.649993896484375, 296.75, 296.75, 296.75, 296.75, 296.75, 296.75, 296.75, 296.75, 296.75, 296.75, 296.75, 296.75, 296.75, 296.75, 306.04998779296875, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 302.95001220703125, 306.149993896484375, 304.350006103515625] -time=[0., 5184000.] -assEqu.threShold=[0.15000000596046447754, 0.15000000596046447754] -assEqu.satisfied=[1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.] -assEqu.diff=[0., 0.01175128016620874405, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.05299238860607147217, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.00781595800071954727, 0.02960255928337574005] +time=[0e+00, 5.184e+06] +mean.y=[0e+00, 2.986617736816406e+02, 2.956973876953125e+02, 2.995431823730469e+02, 3.002051696777344e+02, 2.994207763671875e+02, 3.026757507324219e+02, 2.989517517089844e+02, 3.024341125488281e+02, 3.0295263671875e+02, 3.016822204589844e+02, 3.048345336914062e+02, 3.007039184570312e+02, 3.039906616210938e+02, 3.044319763183594e+02, 3.028999328613281e+02, 3.059970092773438e+02, 3.016473999023438e+02, 3.048287353515625e+02, 3.052284851074219e+02, 3.035556030273438e+02, 3.066228637695312e+02, 3.021553649902344e+02, 3.05280029296875e+02, 3.056573791503906e+02, 3.039086608886719e+02, 3.069597473144531e+02, 3.024288940429688e+02, 3.055230407714844e+02, 3.058883361816406e+02, 3.040987548828125e+02, 3.071412048339844e+02, 3.025762023925781e+02, 3.056538391113281e+02, 3.060126647949219e+02, 3.042010803222656e+02, 3.072389221191406e+02, 3.026554870605469e+02, 3.057243041992188e+02, 3.060796203613281e+02, 3.042562255859375e+02, 3.0729150390625e+02, 3.026982116699219e+02, 3.057622680664062e+02, 3.061156616210938e+02, 3.04285888671875e+02, 3.0731982421875e+02, 3.027211608886719e+02, 3.057826843261719e+02, 3.061351013183594e+02, 3.043018493652344e+02, 3.073350830078125e+02, 3.027335510253906e+02, 3.05793701171875e+02, 3.061455383300781e+02, 3.043104553222656e+02, 3.073433227539062e+02, 3.02740234375e+02, 3.057996215820312e+02, 3.061511840820312e+02, 3.043150939941406e+02, 3.073477478027344e+02, 3.027437438964844e+02, 3.058027954101562e+02, 3.061542053222656e+02, 3.043175964355469e+02, 3.073501892089844e+02, 3.027457580566406e+02, 3.058045043945312e+02, 3.061558532714844e+02, 3.043189392089844e+02, 3.073514709472656e+02, 3.02746826171875e+02, 3.058054809570312e+02, 3.061567077636719e+02, 3.043196716308594e+02, 3.073521728515625e+02, 3.027473449707031e+02, 3.058059692382812e+02, 3.061571960449219e+02, 3.043200378417969e+02, 3.073525695800781e+02, 3.027476501464844e+02, 3.058062438964844e+02, 3.061574401855469e+02, 3.043202514648438e+02, 3.07352783203125e+02, 3.027478332519531e+02, 3.05806396484375e+02, 3.061575927734375e+02, 3.043203735351562e+02, 3.073528747558594e+02, 3.027479248046875e+02, 3.058064575195312e+02, 3.061576538085938e+02, 3.043204345703125e+02, 3.073529357910156e+02, 3.027479553222656e+02, 3.058064880371094e+02, 3.061577758789062e+02, 3.043204345703125e+02] +reference.y[1]=[2.946499938964844e+02, 2.986499938964844e+02, 2.9675e+02, 2.9675e+02, 2.9675e+02, 2.9675e+02, 2.9675e+02, 2.9675e+02, 2.9675e+02, 2.9675e+02, 2.9675e+02, 2.9675e+02, 2.9675e+02, 2.9675e+02, 2.9675e+02, 2.9675e+02, 3.060499877929688e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.029500122070312e+02, 3.061499938964844e+02, 3.043500061035156e+02] +assEqu.diff=[0e+00, 1.176215708255768e-02, 7.228610397936323e-19, 0e+00, -0e+00, 0e+00, -0e+00, 0e+00, 0e+00, -0e+00, 0e+00, -0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 5.299650877714157e-02, -1.518096520251275e-16, -0e+00, -0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -0e+00, -0e+00, -0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.79069447889924e-03, 2.957859821617603e-02] +assEqu.threShold=[1.500000059604645e-01, 1.500000059604645e-01] +assEqu.satisfied=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase2.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase2.txt index 9c51a6f9a9..38ac6dfb98 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase2.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase2.txt @@ -1,18 +1,18 @@ -last-generated=2016-12-21 +last-generated=2022-06-02 statistics-initialization= { "linear": "4" } statistics-simulation= { - "numerical Jacobians": "0", - "nonlinear": " ", - "number of continuous time states": "3", - "linear": "3, 0" + "linear": "3, 0", + "nonlinear": " ", + "number of continuous time states": "4", + "numerical Jacobians": "0" } -mean.y=[0., 297.28466796875, 297.571868896484375, 299.96630859375, 300.7581787109375, 301.928436279296875, 303.67413330078125, 303.630523681640625, 305.690338134765625, 306.1866455078125, 307.07659912109375, 308.537994384765625, 308.243255615234375, 310.048370361328125, 310.31964111328125, 310.996185302734375, 312.24114990234375, 311.75518798828125, 313.366363525390625, 313.466339111328125, 313.980377197265625, 315.060577392578125, 314.42901611328125, 315.892547607421875, 315.862060546875, 316.252410888671875, 317.207122802734375, 316.464752197265625, 317.81585693359375, 317.686065673828125, 317.98223876953125, 318.8414306640625, 318.014678955078125, 319.28021240234375, 319.074798583984375, 319.29925537109375, 320.085723876953125, 319.1947021484375, 320.39508056640625, 320.132110595703125, 320.30194091796875, 321.0330810546875, 320.0931396484375, 321.243896484375, 320.937103271484375, 321.06536865234375, 321.75433349609375, 320.77716064453125, 321.89013671875, 321.54998779296875, 321.6466064453125, 322.303466796875, 321.297943115234375, 322.382171630859375, 322.0166015625, 322.089141845703125, 322.7215576171875, 321.6944580078125, 322.75677490234375, 322.371856689453125, 322.426055908203125, 323.039886474609375, 321.996337890625, 323.0419921875, 322.642333984375, 322.682586669921875, 323.2822265625, 322.226165771484375, 323.259124755859375, 322.8482666015625, 322.87786865234375, 323.46673583984375, 322.401153564453125, 323.424468994140625, 323.00506591796875, 323.026580810546875, 323.60723876953125, 322.534393310546875, 323.550323486328125, 323.124420166015625, 323.1397705078125, 323.714202880859375, 322.63580322265625, 323.646148681640625, 323.21533203125, 323.2259521484375, 323.795623779296875, 322.713043212890625, 323.7191162109375, 323.284515380859375, 323.291595458984375, 323.85760498046875, 322.7718505859375, 323.774658203125, 323.337188720703125, 323.341552734375, 323.904815673828125, 322.81658935546875, 323.81695556640625, 323.3773193359375, 323.37957763671875] -reference.y[1]=[295.149993896484375, 297.25, 297.649993896484375, 297.649993896484375, 297.649993896484375, 297.649993896484375, 297.649993896484375, 297.649993896484375, 297.649993896484375, 297.649993896484375, 297.649993896484375, 297.649993896484375, 297.649993896484375, 297.649993896484375, 297.649993896484375, 297.649993896484375, 312.25, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 312.04998779296875, 323.350006103515625, 323.350006103515625] -time=[0., 5184000.] -assEqu.threShold=[0.15000000596046447754, 0.15000000596046447754] -assEqu.satisfied=[1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.] -assEqu.diff=[0., 0.03467077016830444336, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.00884555000811815262, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.02730510011315345764, 0.02958946116268634796] +time=[0e+00, 5.184e+06] +mean.y=[0e+00, 2.9728466796875e+02, 2.975718688964844e+02, 2.999663696289062e+02, 3.007581176757812e+02, 3.01928466796875e+02, 3.03674072265625e+02, 3.036305236816406e+02, 3.056904296875e+02, 3.061866149902344e+02, 3.070765991210938e+02, 3.085379333496094e+02, 3.082432861328125e+02, 3.100484619140625e+02, 3.103196105957031e+02, 3.109962158203125e+02, 3.122411499023438e+02, 3.117552185058594e+02, 3.13366455078125e+02, 3.1346630859375e+02, 3.139804077148438e+02, 3.150605163574219e+02, 3.144290466308594e+02, 3.158926086425781e+02, 3.158620300292969e+02, 3.1625244140625e+02, 3.172071228027344e+02, 3.164647827148438e+02, 3.178159484863281e+02, 3.176860046386719e+02, 3.179822692871094e+02, 3.188414306640625e+02, 3.180147094726562e+02, 3.192803039550781e+02, 3.190747375488281e+02, 3.192992858886719e+02, 3.20085693359375e+02, 3.191947326660156e+02, 3.203951721191406e+02, 3.201320495605469e+02, 3.20302001953125e+02, 3.210330505371094e+02, 3.200931701660156e+02, 3.212439880371094e+02, 3.209370727539062e+02, 3.210653991699219e+02, 3.217543029785156e+02, 3.207771911621094e+02, 3.218902282714844e+02, 3.215498962402344e+02, 3.216466369628906e+02, 3.22303466796875e+02, 3.212979736328125e+02, 3.223822631835938e+02, 3.220165405273438e+02, 3.220891723632812e+02, 3.227215576171875e+02, 3.216944580078125e+02, 3.227568664550781e+02, 3.22371826171875e+02, 3.224260864257812e+02, 3.230398559570312e+02, 3.21996337890625e+02, 3.230420837402344e+02, 3.226423034667969e+02, 3.226826171875e+02, 3.232822265625e+02, 3.222261962890625e+02, 3.232592163085938e+02, 3.228482360839844e+02, 3.228778991699219e+02, 3.234667358398438e+02, 3.224011840820312e+02, 3.23424560546875e+02, 3.230050354003906e+02, 3.23026611328125e+02, 3.236072082519531e+02, 3.225343933105469e+02, 3.235504150390625e+02, 3.231243896484375e+02, 3.231398010253906e+02, 3.237141723632812e+02, 3.226358337402344e+02, 3.23646240234375e+02, 3.232152709960938e+02, 3.232260131835938e+02, 3.237955932617188e+02, 3.227130737304688e+02, 3.237192077636719e+02, 3.232844848632812e+02, 3.232916259765625e+02, 3.238576049804688e+02, 3.227718505859375e+02, 3.237747497558594e+02, 3.23337158203125e+02, 3.233415832519531e+02, 3.2390478515625e+02, 3.228166198730469e+02, 3.238170471191406e+02, 3.233772888183594e+02, 3.233795776367188e+02] +reference.y[1]=[2.951499938964844e+02, 2.9725e+02, 2.976499938964844e+02, 2.976499938964844e+02, 2.976499938964844e+02, 2.976499938964844e+02, 2.976499938964844e+02, 2.976499938964844e+02, 2.976499938964844e+02, 2.976499938964844e+02, 2.976499938964844e+02, 2.976499938964844e+02, 2.976499938964844e+02, 2.976499938964844e+02, 2.976499938964844e+02, 2.976499938964844e+02, 3.1225e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.120499877929688e+02, 3.233500061035156e+02, 3.233500061035156e+02] +assEqu.diff=[0e+00, 3.46747450530529e-02, 7.358949449809415e-09, -7.319343322339382e-19, -4.536204518630532e-20, -4.129987283903321e-26, -1.303576868659618e-23, -4.118739668138765e-25, -1.650826644457063e-27, 4.644388534981575e-27, 7.7634494903234e-26, -2.724853803862128e-22, -1.006546933177231e-21, 2.242292418623431e-17, -2.227837046988141e-15, 6.599117886772497e-18, 8.836455643177032e-03, 2.537778875932311e-09, -1.918967429404006e-09, 1.037045033180917e-10, 9.292277503014645e-10, 6.751201264698636e-10, 3.503164203166875e-09, -8.93606633134425e-10, -7.104893118281552e-09, 1.638371660561688e-09, 1.905283486536291e-09, -3.946809545851693e-09, 2.562921819216061e-10, -1.160715634718201e-09, 2.216604011451295e-09, 3.155710137647816e-09, 3.969699680084204e-09, -2.644484631275645e-09, -1.054587084325426e-09, -5.422504667507155e-10, 2.046880887007774e-09, 3.951281524194883e-09, -1.208529276652826e-09, -2.837873713801287e-09, -7.782415267776344e-10, 1.011641703740906e-08, 4.747603199461992e-09, -5.513338674489887e-09, 1.678932104454134e-09, 2.917273977942614e-09, -9.200293860089914e-09, -4.745129178473917e-09, 5.074397790849616e-09, 3.854604191388944e-09, -2.567853707446943e-09, -1.926022008547079e-09, -4.613367909911403e-09, -2.050147829280036e-09, -3.896000411174327e-09, 2.456610248557922e-09, 2.107422902854237e-09, 4.570981815279565e-09, 1.602006527434696e-09, -9.081301821645127e-10, -2.180744251845113e-09, -1.847399011545292e-09, -5.000062586191234e-09, -5.821259918548094e-09, -1.039815900050201e-09, -2.160914558402283e-09, 1.885543499113851e-09, 4.588890600842888e-09, 2.554312761304576e-09, -3.551305916006406e-10, -2.419590749980216e-09, -3.826622130276292e-09, -4.407262110817101e-09, -2.461072012849286e-09, 2.79507611500307e-10, 2.348780725469624e-09, -1.650414693799007e-09, -4.321441871013576e-09, 3.331340758805368e-09, -1.488132284066523e-09, -2.368275353603622e-09, 1.582616371287315e-09, 4.226715422106508e-09, 3.136348070142958e-09, -1.475102040515708e-09, 6.699895638284659e-10, -1.514466330121422e-09, -1.702648910750781e-09, 2.89403434550195e-09, 1.527945991952606e-09, 2.291649980890043e-09, -1.446336717059182e-09, 2.039498125938621e-09, -4.008435361413376e-09, -1.557952322706058e-09, -2.236111074083169e-09, 1.379314551464006e-09, 3.881733157129474e-09, -3.768849232699267e-09, 2.72980909794569e-02, 2.959253266453743e-02] +assEqu.threShold=[1.500000059604645e-01, 1.500000059604645e-01] +assEqu.satisfied=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase3.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase3.txt index 64e095799f..a45081c41b 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase3.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase3.txt @@ -1,18 +1,18 @@ -last-generated=2016-12-21 +last-generated=2022-06-02 statistics-initialization= { "linear": "4" } statistics-simulation= { - "numerical Jacobians": "0", - "nonlinear": " ", - "number of continuous time states": "3", - "linear": "3, 0" + "linear": "3, 0", + "nonlinear": " ", + "number of continuous time states": "4", + "numerical Jacobians": "0" } -mean.y=[0., 306.3118896484375, 299.579315185546875, 303.996551513671875, 312.10894775390625, 306.750885009765625, 316.63934326171875, 308.84466552734375, 312.244842529296875, 319.50897216796875, 313.389862060546875, 322.549560546875, 314.1470947265625, 316.9652099609375, 323.743896484375, 317.189239501953125, 325.931884765625, 317.18157958984375, 319.666595458984375, 326.16748046875, 319.36358642578125, 327.8675537109375, 318.91815185546875, 321.212554931640625, 327.554443359375, 320.60791015625, 328.97528076171875, 319.911956787109375, 322.0972900390625, 328.348175048828125, 321.32000732421875, 329.609222412109375, 320.480712890625, 322.603607177734375, 328.80242919921875, 321.7275390625, 329.972015380859375, 320.80621337890625, 322.89337158203125, 329.0623779296875, 321.960784912109375, 330.179656982421875, 320.992462158203125, 323.0592041015625, 329.211151123046875, 322.09423828125, 330.2984619140625, 321.09906005859375, 323.154083251953125, 329.296295166015625, 322.170623779296875, 330.366455078125, 321.160064697265625, 323.208404541015625, 329.34503173828125, 322.214324951171875, 330.405364990234375, 321.194976806640625, 323.239471435546875, 329.372894287109375, 322.239349365234375, 330.427642822265625, 321.2149658203125, 323.25726318359375, 329.38885498046875, 322.253662109375, 330.440399169921875, 321.226409912109375, 323.2674560546875, 329.397979736328125, 322.261871337890625, 330.44769287109375, 321.232940673828125, 323.27325439453125, 329.403228759765625, 322.26654052734375, 330.451873779296875, 321.2366943359375, 323.276611328125, 329.406219482421875, 322.26922607421875, 330.454254150390625, 321.23883056640625, 323.27850341796875, 329.407928466796875, 322.270782470703125, 330.45562744140625, 321.24005126953125, 323.27960205078125, 329.408905029296875, 322.271636962890625, 330.456390380859375, 321.240753173828125, 323.28021240234375, 329.409454345703125, 322.27215576171875, 330.45684814453125, 321.24114990234375, 323.28057861328125, 329.4097900390625, 322.272430419921875] -reference.y[1]=[295.149993896484375, 306.350006103515625, 299.75, 299.75, 299.75, 299.75, 299.75, 299.75, 299.75, 299.75, 299.75, 299.75, 299.75, 299.75, 299.75, 299.75, 325.95001220703125, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 317.850006103515625, 329.45001220703125, 322.25] -time=[0., 5184000.] -assEqu.threShold=[0.15000000596046447754, 0.15000000596046447754] -assEqu.satisfied=[1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.] -assEqu.diff=[0., 0.03811715170741081238, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.01810875721275806427, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.04022079333662986755, 0.02244150079786777496] +time=[0e+00, 5.184e+06] +mean.y=[0e+00, 3.063118591308594e+02, 2.99579345703125e+02, 3.0399658203125e+02, 3.1210888671875e+02, 3.067509155273438e+02, 3.166392517089844e+02, 3.088447265625e+02, 3.122449035644531e+02, 3.195089111328125e+02, 3.133899230957031e+02, 3.225494995117188e+02, 3.141471557617188e+02, 3.169652709960938e+02, 3.237438354492188e+02, 3.171893310546875e+02, 3.25931884765625e+02, 3.17181640625e+02, 3.196666564941406e+02, 3.261674194335938e+02, 3.193636474609375e+02, 3.278674621582031e+02, 3.189182434082031e+02, 3.212126159667969e+02, 3.275543823242188e+02, 3.206079711914062e+02, 3.289752197265625e+02, 3.199120483398438e+02, 3.220973510742188e+02, 3.283481140136719e+02, 3.213200988769531e+02, 3.296091613769531e+02, 3.204808044433594e+02, 3.226036682128906e+02, 3.288023681640625e+02, 3.217276306152344e+02, 3.299719543457031e+02, 3.208062744140625e+02, 3.228934020996094e+02, 3.290623168945312e+02, 3.219608459472656e+02, 3.301795654296875e+02, 3.209925537109375e+02, 3.230592346191406e+02, 3.292110900878906e+02, 3.220942993164062e+02, 3.302984008789062e+02, 3.210991516113281e+02, 3.231541442871094e+02, 3.292962341308594e+02, 3.221706848144531e+02, 3.303663940429688e+02, 3.2116015625e+02, 3.232084350585938e+02, 3.29344970703125e+02, 3.222144165039062e+02, 3.304053039550781e+02, 3.21195068359375e+02, 3.232395629882812e+02, 3.293728332519531e+02, 3.222394104003906e+02, 3.304275817871094e+02, 3.212150268554688e+02, 3.232573547363281e+02, 3.293887939453125e+02, 3.222537231445312e+02, 3.304403381347656e+02, 3.212264709472656e+02, 3.232675476074219e+02, 3.293979187011719e+02, 3.222619323730469e+02, 3.304476318359375e+02, 3.212330017089844e+02, 3.232733764648438e+02, 3.294031677246094e+02, 3.222666320800781e+02, 3.304517822265625e+02, 3.212367553710938e+02, 3.232767028808594e+02, 3.294061584472656e+02, 3.22269287109375e+02, 3.304541931152344e+02, 3.212388916015625e+02, 3.232785949707031e+02, 3.294078674316406e+02, 3.222708435058594e+02, 3.304555358886719e+02, 3.212401428222656e+02, 3.232796936035156e+02, 3.294088439941406e+02, 3.22271728515625e+02, 3.304563293457031e+02, 3.212408447265625e+02, 3.232803039550781e+02, 3.294093933105469e+02, 3.22272216796875e+02, 3.30456787109375e+02, 3.212412414550781e+02, 3.232806701660156e+02, 3.294097900390625e+02, 3.222724609375e+02] +reference.y[1]=[2.951499938964844e+02, 3.063500061035156e+02, 2.9975e+02, 2.9975e+02, 2.9975e+02, 2.9975e+02, 2.9975e+02, 2.9975e+02, 2.9975e+02, 2.9975e+02, 2.9975e+02, 2.9975e+02, 2.9975e+02, 2.9975e+02, 2.9975e+02, 2.9975e+02, 3.259500122070312e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.178500061035156e+02, 3.294500122070312e+02, 3.2225e+02] +assEqu.diff=[0e+00, 3.813721612095833e-02, -3.360597133905685e-09, 1.927879522287568e-38, -0e+00, -0e+00, -0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -0e+00, 0e+00, -0e+00, 1.811679825186729e-02, 6.58122653596178e-11, 6.438377063331724e-28, -5.360263701316862e-39, 0e+00, 0e+00, -0e+00, 0e+00, -0e+00, -0e+00, 0e+00, -0e+00, 0e+00, -0e+00, 0e+00, -0e+00, 0e+00, 0e+00, 0e+00, -0e+00, -0e+00, 0e+00, 0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 4.021602496504784e-02, 2.244793996214867e-02] +assEqu.threShold=[1.500000059604645e-01, 1.500000059604645e-01] +assEqu.satisfied=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase4.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase4.txt index 5cd0e818c0..12f7414a42 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase4.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase4.txt @@ -1,18 +1,18 @@ -last-generated=2016-12-21 +last-generated=2022-06-02 statistics-initialization= { "linear": "4" } statistics-simulation= { - "numerical Jacobians": "0", - "nonlinear": " ", - "number of continuous time states": "3", - "linear": "3, 0" + "linear": "3, 0", + "nonlinear": " ", + "number of continuous time states": "4", + "numerical Jacobians": "0" } -mean.y=[0., 301.245391845703125, 299.600494384765625, 304.02947998046875, 307.070159912109375, 306.806304931640625, 311.622161865234375, 308.91009521484375, 312.31719970703125, 314.505523681640625, 313.477020263671875, 317.560638427734375, 314.23785400390625, 317.06011962890625, 318.76068115234375, 317.2945556640625, 320.959136962890625, 317.286834716796875, 319.7744140625, 321.195831298828125, 319.479248046875, 322.904022216796875, 319.031707763671875, 321.3277587890625, 322.58941650390625, 320.72955322265625, 324.017059326171875, 320.0302734375, 322.216705322265625, 323.386962890625, 321.445068359375, 324.654022216796875, 320.60174560546875, 322.7254638671875, 323.8433837890625, 321.854522705078125, 325.0185546875, 320.92877197265625, 323.0166015625, 324.104583740234375, 322.0888671875, 325.2271728515625, 321.115936279296875, 323.183197021484375, 324.254058837890625, 322.22296142578125, 325.3465576171875, 321.223052978515625, 323.278564453125, 324.339599609375, 322.299713134765625, 325.414886474609375, 321.284332275390625, 323.3331298828125, 324.3885498046875, 322.343658447265625, 325.4539794921875, 321.319427490234375, 323.364349365234375, 324.41656494140625, 322.3687744140625, 325.476348876953125, 321.339508056640625, 323.382232666015625, 324.4326171875, 322.3831787109375, 325.489166259765625, 321.350982666015625, 323.3924560546875, 324.4417724609375, 322.391387939453125, 325.496490478515625, 321.357574462890625, 323.3983154296875, 324.447021484375, 322.3961181640625, 325.500701904296875, 321.361328125, 323.40167236328125, 324.450042724609375, 322.3988037109375, 325.503082275390625, 321.36346435546875, 323.403564453125, 324.451751708984375, 322.400360107421875, 325.50445556640625, 321.364715576171875, 323.4046630859375, 324.452728271484375, 322.401214599609375, 325.5052490234375, 321.36541748046875, 323.405303955078125, 324.45330810546875, 322.4017333984375, 325.505706787109375, 321.365814208984375, 323.405670166015625, 324.45361328125, 322.40203857421875] -reference.y[1]=[295.149993896484375, 301.25, 299.75, 299.75, 299.75, 299.75, 299.75, 299.75, 299.75, 299.75, 299.75, 299.75, 299.75, 299.75, 299.75, 299.75, 320.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 317.95001220703125, 324.45001220703125, 322.350006103515625] -time=[0., 5184000.] -assEqu.threShold=[0.15000000596046447754, 0.15000000596046447754] -assEqu.satisfied=[1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.] -assEqu.diff=[0., 0.00462318304926156998, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.00912328623235225677, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.00362766953185200691, 0.05202377960085868835] +time=[0e+00, 5.184e+06] +mean.y=[0e+00, 3.012453918457031e+02, 2.996004943847656e+02, 3.040295104980469e+02, 3.070700988769531e+02, 3.068063659667969e+02, 3.116221008300781e+02, 3.0891015625e+02, 3.123172607421875e+02, 3.145054626464844e+02, 3.134770812988281e+02, 3.175605773925781e+02, 3.142379150390625e+02, 3.170601806640625e+02, 3.187606201171875e+02, 3.172946166992188e+02, 3.209591369628906e+02, 3.172868957519531e+02, 3.197744750976562e+02, 3.211957702636719e+02, 3.194793395996094e+02, 3.229039306640625e+02, 3.190317993164062e+02, 3.213278198242188e+02, 3.2258935546875e+02, 3.207296142578125e+02, 3.240169982910156e+02, 3.200303649902344e+02, 3.222167663574219e+02, 3.233869018554688e+02, 3.214451293945312e+02, 3.246539611816406e+02, 3.20601806640625e+02, 3.227255249023438e+02, 3.238433227539062e+02, 3.218546142578125e+02, 3.250184936523438e+02, 3.209288635253906e+02, 3.230167236328125e+02, 3.241045227050781e+02, 3.220889282226562e+02, 3.252271118164062e+02, 3.211160278320312e+02, 3.23183349609375e+02, 3.242539978027344e+02, 3.222230529785156e+02, 3.253464965820312e+02, 3.212231140136719e+02, 3.232786865234375e+02, 3.243395385742188e+02, 3.222998046875e+02, 3.254148254394531e+02, 3.21284423828125e+02, 3.23333251953125e+02, 3.243884887695312e+02, 3.223437194824219e+02, 3.254539184570312e+02, 3.213194885253906e+02, 3.23364501953125e+02, 3.2441650390625e+02, 3.223688354492188e+02, 3.254762878417969e+02, 3.213395690917969e+02, 3.233823547363281e+02, 3.244325561523438e+02, 3.223832397460938e+02, 3.254891052246094e+02, 3.213510437011719e+02, 3.233926086425781e+02, 3.244417114257812e+02, 3.223914489746094e+02, 3.254964294433594e+02, 3.213576354980469e+02, 3.233984375e+02, 3.244469604492188e+02, 3.223961791992188e+02, 3.255006103515625e+02, 3.213613891601562e+02, 3.234017944335938e+02, 3.244499816894531e+02, 3.223988647460938e+02, 3.255030212402344e+02, 3.213635559082031e+02, 3.234037170410156e+02, 3.244516906738281e+02, 3.224004211425781e+02, 3.2550439453125e+02, 3.213647766113281e+02, 3.234048156738281e+02, 3.244526672363281e+02, 3.224013061523438e+02, 3.255051879882812e+02, 3.21365478515625e+02, 3.234054565429688e+02, 3.244532470703125e+02, 3.224017944335938e+02, 3.25505615234375e+02, 3.213658752441406e+02, 3.234057922363281e+02, 3.2445361328125e+02, 3.224020080566406e+02] +reference.y[1]=[2.951499938964844e+02, 3.0125e+02, 2.9975e+02, 2.9975e+02, 2.9975e+02, 2.9975e+02, 2.9975e+02, 2.9975e+02, 2.9975e+02, 2.9975e+02, 2.9975e+02, 2.9975e+02, 2.9975e+02, 2.9975e+02, 2.9975e+02, 2.9975e+02, 3.209500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.179500122070312e+02, 3.244500122070312e+02, 3.223500061035156e+02] +assEqu.diff=[0e+00, 4.62289759889245e-03, 3.424962535802933e-09, -4.118178974846596e-37, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -0e+00, -0e+00, 0e+00, 0e+00, -0e+00, 9.140073321759701e-03, 9.530808434132238e-12, 8.437674940315363e-31, 5.101763371005935e-40, 0e+00, -0e+00, -0e+00, -0e+00, 0e+00, -0e+00, 0e+00, -0e+00, 0e+00, -0e+00, -0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 3.626536810770631e-03, 5.202316492795944e-02] +assEqu.threShold=[1.500000059604645e-01, 1.500000059604645e-01] +assEqu.satisfied=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase5.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase5.txt index f0b00671c8..f3dac40e42 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase5.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase5.txt @@ -1,14 +1,14 @@ -last-generated=2016-12-21 +last-generated=2022-06-02 statistics-simulation= { - "numerical Jacobians": "0", - "nonlinear": " ", - "number of continuous time states": "3", - "linear": "3, 0" + "linear": "3, 0", + "nonlinear": " ", + "number of continuous time states": "4", + "numerical Jacobians": "0" } -mean.y=[0., 298.326416015625, 297.05145263671875, 299.247711181640625, 300.984222412109375, 300.769287109375, 303.5570068359375, 302.0078125, 303.9300537109375, 305.4248046875, 304.980560302734375, 307.535736083984375, 305.781097412109375, 307.494964599609375, 308.805633544921875, 308.18682861328125, 310.56494140625, 308.653900146484375, 310.209136962890625, 311.379669189453125, 310.627960205078125, 312.87127685546875, 310.841156005859375, 312.275604248046875, 313.33941650390625, 312.48651123046875, 314.627197265625, 312.50640869140625, 313.848907470703125, 314.83148193359375, 313.901519775390625, 315.964080810546875, 313.774261474609375, 315.0467529296875, 315.96746826171875, 314.978851318359375, 316.98193359375, 314.739532470703125, 315.958740234375, 316.832366943359375, 315.799102783203125, 317.756866455078125, 315.474456787109375, 316.653076171875, 317.4908447265625, 316.423583984375, 318.34686279296875, 316.03399658203125, 317.181732177734375, 317.992218017578125, 316.8990478515625, 318.79608154296875, 316.46002197265625, 317.584197998046875, 318.3739013671875, 317.26104736328125, 319.138092041015625, 316.78436279296875, 317.890625, 318.664520263671875, 317.536651611328125, 319.398468017578125, 317.03131103515625, 318.123931884765625, 318.885772705078125, 317.7464599609375, 319.596710205078125, 317.219329833984375, 318.30157470703125, 319.054229736328125, 317.906219482421875, 319.747650146484375, 317.362457275390625, 318.436798095703125, 319.1824951171875, 318.027862548828125, 319.862579345703125, 317.471435546875, 318.539764404296875, 319.280120849609375, 318.1204833984375, 319.950042724609375, 317.554412841796875, 318.6181640625, 319.3544921875, 318.19097900390625, 320.01666259765625, 317.617584228515625, 318.6778564453125, 319.41107177734375, 318.244659423828125, 320.0673828125, 317.665679931640625, 318.723297119140625, 319.45416259765625, 318.2855224609375, 320.105987548828125, 317.702301025390625, 318.757904052734375, 319.48699951171875, 318.316650390625] -reference.y[1]=[295.149993896484375, 298.350006103515625, 297.25, 297.25, 297.25, 297.25, 297.25, 297.25, 297.25, 297.25, 297.25, 297.25, 297.25, 297.25, 297.25, 297.25, 310.54998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 309.04998779296875, 319.45001220703125, 318.350006103515625] -time=[0., 5184000.] -assEqu.threShold=[0.15000000596046447754, 0.15000000596046447754] -assEqu.satisfied=[1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.] -assEqu.diff=[0., 0.02359818480908870697, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.01495191361755132675, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.03698739036917686462, 0.03335922583937644958] +time=[0e+00, 5.184e+06] +mean.y=[0e+00, 2.983263854980469e+02, 2.97051513671875e+02, 2.992477111816406e+02, 3.009841613769531e+02, 3.007693481445312e+02, 3.035569458007812e+02, 3.020078430175781e+02, 3.039300842285156e+02, 3.054247131347656e+02, 3.049806213378906e+02, 3.075356750488281e+02, 3.057811279296875e+02, 3.074950256347656e+02, 3.088055419921875e+02, 3.081868896484375e+02, 3.105649108886719e+02, 3.086539611816406e+02, 3.102091979980469e+02, 3.113795471191406e+02, 3.106280212402344e+02, 3.128712463378906e+02, 3.108411865234375e+02, 3.122756652832031e+02, 3.133393249511719e+02, 3.12486572265625e+02, 3.146271362304688e+02, 3.125064697265625e+02, 3.138489685058594e+02, 3.148313903808594e+02, 3.13901611328125e+02, 3.159640197753906e+02, 3.137744140625e+02, 3.150468139648438e+02, 3.159673767089844e+02, 3.149789428710938e+02, 3.169817810058594e+02, 3.147395629882812e+02, 3.159588012695312e+02, 3.16832275390625e+02, 3.157991943359375e+02, 3.177568359375e+02, 3.154744873046875e+02, 3.166531677246094e+02, 3.174907531738281e+02, 3.164236755371094e+02, 3.183467712402344e+02, 3.160341186523438e+02, 3.171817932128906e+02, 3.179920959472656e+02, 3.168991394042969e+02, 3.187960205078125e+02, 3.164601135253906e+02, 3.175842895507812e+02, 3.183738098144531e+02, 3.172611389160156e+02, 3.191380310058594e+02, 3.16784423828125e+02, 3.178907165527344e+02, 3.186643981933594e+02, 3.175367431640625e+02, 3.193984069824219e+02, 3.170313720703125e+02, 3.181240234375e+02, 3.188856506347656e+02, 3.177465515136719e+02, 3.195966491699219e+02, 3.172193908691406e+02, 3.183016357421875e+02, 3.190541076660156e+02, 3.179063110351562e+02, 3.197475891113281e+02, 3.173625183105469e+02, 3.184368896484375e+02, 3.19182373046875e+02, 3.180279541015625e+02, 3.198625183105469e+02, 3.174715270996094e+02, 3.185398559570312e+02, 3.19280029296875e+02, 3.181205444335938e+02, 3.199500122070312e+02, 3.175545043945312e+02, 3.186182556152344e+02, 3.193543701171875e+02, 3.181910705566406e+02, 3.200166320800781e+02, 3.1761767578125e+02, 3.186779174804688e+02, 3.194109802246094e+02, 3.182447509765625e+02, 3.200673522949219e+02, 3.176658020019531e+02, 3.187233581542969e+02, 3.194540710449219e+02, 3.182856140136719e+02, 3.2010595703125e+02, 3.177024230957031e+02, 3.187579650878906e+02, 3.194869689941406e+02, 3.18316650390625e+02] +reference.y[1]=[2.951499938964844e+02, 2.983500061035156e+02, 2.9725e+02, 2.9725e+02, 2.9725e+02, 2.9725e+02, 2.9725e+02, 2.9725e+02, 2.9725e+02, 2.9725e+02, 2.9725e+02, 2.9725e+02, 2.9725e+02, 2.9725e+02, 2.9725e+02, 2.9725e+02, 3.105499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.090499877929688e+02, 3.194500122070312e+02, 3.183500061035156e+02] +assEqu.diff=[0e+00, 2.360180206596851e-02, -3.75428719145629e-15, 3.800601326708897e-13, 2.351715615013135e-26, 1.587876950149286e-27, -8.588364683554142e-34, 1.401298464324817e-45, -7.314777983775545e-43, 0e+00, 0e+00, -0e+00, -0e+00, -0e+00, 0e+00, 0e+00, 1.491442415863276e-02, 3.706036345863613e-12, 3.725920297935121e-19, -1.058260948806871e-27, -1.036498014717598e-38, -0e+00, 0e+00, -0e+00, 0e+00, -0e+00, 0e+00, 0e+00, 0e+00, -0e+00, -0e+00, -0e+00, 0e+00, -0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -0e+00, 0e+00, -0e+00, 0e+00, 0e+00, 0e+00, -0e+00, -0e+00, 0e+00, -0e+00, -0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 3.696856275200844e-02, 3.336163610219955e-02] +assEqu.threShold=[1.500000059604645e-01, 1.500000059604645e-01] +assEqu.satisfied=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase6.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase6.txt index c68f967ccd..511cc04b2a 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase6.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase6.txt @@ -1,4 +1,4 @@ -last-generated=2020-08-17 +last-generated=2022-06-02 statistics-initialization= { "linear": "3" @@ -7,12 +7,12 @@ statistics-simulation= { "linear": "0, 2", "nonlinear": " ", - "number of continuous time states": "3", + "number of continuous time states": "4", "numerical Jacobians": "0" } time=[0e+00, 5.184e+06] -mean.y=[0e+00, -3.5101708984375e+02, 4.305131530761719e+02, 8.693585205078125e+02, -1.553040008544922e+02, 8.0131982421875e+02, 7.551782989501953e+01, 6.694329223632812e+02, 9.979004516601562e+02, -8.322010040283203e+01, 8.417435913085938e+02, 9.726963043212891e+01, 6.81631103515625e+02, 1.004464172363281e+03, -7.953928375244141e+01, 8.438078002929688e+02, 9.838034820556641e+01, 6.822539672851562e+02, 1.00479931640625e+03, -7.935125732421875e+01, 8.439132080078125e+02, 9.843708038330078e+01, 6.822857666015625e+02, 1.00481640625e+03, -7.934172058105469e+01, 8.439185791015625e+02, 9.843993377685547e+01, 6.822882080078125e+02, 1.004817199707031e+03, -7.934126281738281e+01, 8.439187622070312e+02, 9.844009399414062e+01, 6.822874755859375e+02, 1.004817321777344e+03, -7.93411865234375e+01, 8.439189453125e+02, 9.844010925292969e+01, 6.822882080078125e+02, 1.004817321777344e+03, -7.934132385253906e+01, 8.439188842773438e+02, 9.844007873535156e+01, 6.822874145507812e+02, 1.004817321777344e+03, -7.934127807617188e+01, 8.439193725585938e+02, 9.844007873535156e+01, 6.822874145507812e+02, 1.004817321777344e+03, -7.934129333496094e+01, 8.439187622070312e+02, 9.84400634765625e+01, 6.822880859375e+02, 1.004817260742188e+03, -7.934130096435547e+01, 8.439187622070312e+02, 9.84400634765625e+01, 6.82287353515625e+02, 1.004817260742188e+03, -7.934138488769531e+01, 8.439188842773438e+02, 9.84400634765625e+01, 6.82287353515625e+02, 1.004817260742188e+03, -7.934126281738281e+01, 8.439188232421875e+02, 9.84400634765625e+01, 6.822874145507812e+02, 1.004817321777344e+03, -7.934133911132812e+01, 8.439185180664062e+02, 9.844000244140625e+01, 6.82287841796875e+02, 1.004817260742188e+03, -7.934144592285156e+01, 8.439186401367188e+02, 9.843998718261719e+01, 6.822879638671875e+02, 1.004817260742188e+03, -7.934130859375e+01, 8.43918701171875e+02, 9.844003295898438e+01, 6.82287353515625e+02, 1.004817260742188e+03, -7.934136962890625e+01, 8.439185180664062e+02, 9.844001770019531e+01, 6.82287841796875e+02, 1.004817260742188e+03, -7.934134674072266e+01, 8.439186401367188e+02, 9.844001007080078e+01, 6.822872924804688e+02, 1.004817260742188e+03, -7.934140777587891e+01, 8.439188842773438e+02, 9.844003295898438e+01, 6.82287353515625e+02, 1.004817260742188e+03, -7.93414306640625e+01, 8.439198608398438e+02] +mean.y=[0e+00, -3.51016845703125e+02, 4.305129699707031e+02, 8.693595581054688e+02, -1.553041229248047e+02, 8.013197631835938e+02, 7.551776123046875e+01, 6.694329833984375e+02, 9.979004516601562e+02, -8.322003936767578e+01, 8.417437133789062e+02, 9.726958465576172e+01, 6.816311645507812e+02, 1.004464172363281e+03, -7.953934478759766e+01, 8.43807861328125e+02, 9.838013458251953e+01, 6.82253662109375e+02, 1.004799255371094e+03, -7.935140991210938e+01, 8.439132690429688e+02, 9.843698120117188e+01, 6.822858276367188e+02, 1.00481640625e+03, -7.934181213378906e+01, 8.439186401367188e+02, 9.843988800048828e+01, 6.822874145507812e+02, 1.004817260742188e+03, -7.934134674072266e+01, 8.439189453125e+02, 9.844004058837891e+01, 6.8228759765625e+02, 1.0048173828125e+03, -7.934130859375e+01, 8.439191284179688e+02, 9.844005584716797e+01, 6.822880249023438e+02, 1.0048173828125e+03, -7.934129333496094e+01, 8.439190063476562e+02, 9.844004821777344e+01, 6.8228759765625e+02, 1.004817321777344e+03, -7.934130096435547e+01, 8.439190063476562e+02, 9.844020080566406e+01, 6.8228759765625e+02, 1.0048173828125e+03, -7.934129333496094e+01, 8.439190063476562e+02, 9.844002532958984e+01, 6.822879638671875e+02, 1.004817321777344e+03, -7.934127807617188e+01, 8.439190063476562e+02, 9.844001007080078e+01, 6.8228759765625e+02, 1.004817321777344e+03, -7.934135437011719e+01, 8.439191284179688e+02, 9.844003295898438e+01, 6.8228759765625e+02, 1.0048173828125e+03, -7.934130096435547e+01, 8.439190063476562e+02, 9.844004821777344e+01, 6.822876586914062e+02, 1.0048173828125e+03, -7.934125518798828e+01, 8.439191284179688e+02, 9.844007873535156e+01, 6.822876586914062e+02, 1.0048173828125e+03, -7.934127807617188e+01, 8.43919189453125e+02, 9.844005584716797e+01, 6.8228759765625e+02, 1.0048173828125e+03, -7.934129333496094e+01, 8.439190673828125e+02, 9.844005584716797e+01, 6.822876586914062e+02, 1.0048173828125e+03, -7.934127044677734e+01, 8.439190673828125e+02, 9.844007873535156e+01, 6.822877197265625e+02, 1.0048173828125e+03, -7.934127044677734e+01, 8.439190063476562e+02, 9.84400634765625e+01, 6.822876586914062e+02, 1.0048173828125e+03, -7.934130096435547e+01, 8.43919189453125e+02, 9.844004821777344e+01, 6.8228759765625e+02, 1.0048173828125e+03, -7.9341552734375e+01, 8.439194946289062e+02] reference.y[1]=[0e+00, -3.51e+02, 5.11e+02, 5.11e+02, 5.11e+02, 5.11e+02, 5.11e+02, 5.11e+02, 5.11e+02, 5.11e+02, 5.11e+02, 5.11e+02, 5.11e+02, 5.11e+02, 5.11e+02, 5.11e+02, 9.9e+01, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, 8.08e+02, -7.8e+01, 8.43e+02] -assEqu.diff=[0e+00, 1.707678474485874e-02, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 6.19653046131134e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.341428756713867e+00, 9.198542237281799e-01] +assEqu.diff=[0e+00, 1.684681884944439e-02, -7.826567172131149e-10, -1.14206887902656e-23, -1.45465658181403e-26, -4.534169950368403e-38, -0e+00, 0e+00, 0e+00, -0e+00, -0e+00, 0e+00, 0e+00, -0e+00, 0e+00, -0e+00, 6.198630332946777e-01, 3.08164301368375e-12, 2.294224079443367e-31, 2.242077542919707e-44, 0e+00, -0e+00, -0e+00, -0e+00, 0e+00, -0e+00, -0e+00, 0e+00, 0e+00, 0e+00, -0e+00, -0e+00, -0e+00, 0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.341554999351501e+00, 9.195036292076111e-01] assEqu.threShold=[1.5e+00, 1.5e+00] assEqu.satisfied=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase7.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase7.txt index 0e3b85df56..3bbe45474e 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase7.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase7.txt @@ -1,4 +1,4 @@ -last-generated=2021-05-19 +last-generated=2022-07-06 statistics-initialization= { "nonlinear": "3", @@ -8,12 +8,12 @@ statistics-simulation= { "linear": "0", "nonlinear": "3", - "number of continuous time states": "4", + "number of continuous time states": "5", "numerical Jacobians": "0" } time=[0e+00, 5.184e+06] -mean.y=[0e+00, 3.744581604003906e+02, -4.289735412597656e+02, -4.997273559570312e+02, 7.942278289794922e+01, -5e+02, -1.947567901611328e+02, -5e+02, -4.999980163574219e+02, -1.507540283203125e+02, -5e+02, -3.0290234375e+02, -5e+02, -4.999990539550781e+02, -1.958242797851562e+02, -5e+02, -3.240790100097656e+02, -5e+02, -4.999992065429688e+02, -2.0464892578125e+02, -5e+02, -3.282255249023438e+02, -5e+02, -4.999992370605469e+02, -2.063831329345703e+02, -5e+02, -3.290317687988281e+02, -5e+02, -4.999992370605469e+02, -2.067167510986328e+02, -5e+02, -3.29202392578125e+02, -5e+02, -4.999992370605469e+02, -2.067880706787109e+02, -5e+02, -3.292280578613281e+02, -5e+02, -4.999992370605469e+02, -2.067998657226562e+02, -5e+02, -3.292330017089844e+02, -5e+02, -4.999992370605469e+02, -2.068013458251953e+02, -5e+02, -3.292346801757812e+02, -5e+02, -4.999992370605469e+02, -2.068204498291016e+02, -5e+02, -3.292427062988281e+02, -5e+02, -4.999992370605469e+02, -2.068124084472656e+02, -5e+02, -3.292382507324219e+02, -5e+02, -4.999992370605469e+02, -2.068019714355469e+02, -5e+02, -3.292398681640625e+02, -5e+02, -4.999992370605469e+02, -2.068051452636719e+02, -5e+02, -3.292341003417969e+02, -5e+02, -4.999992370605469e+02, -2.068072967529297e+02, -5e+02, -3.292381896972656e+02, -5e+02, -4.999992370605469e+02, -2.068062896728516e+02, -5e+02, -3.292409057617188e+02, -5e+02, -4.999992370605469e+02, -2.068067779541016e+02, -5e+02, -3.292377624511719e+02, -5e+02, -4.999992370605469e+02, -2.068068237304688e+02, -5e+02, -3.292480163574219e+02, -5e+02, -4.999992370605469e+02, -2.068214263916016e+02, -5e+02, -3.292467041015625e+02, -5e+02, -4.999992370605469e+02, -2.068135986328125e+02, -5e+02, -3.292417907714844e+02, -5e+02, -4.999992370605469e+02, -2.068240509033203e+02, -5e+02] +mean.y=[0e+00, 3.744549560546875e+02, -4.289735717773438e+02, -4.997273559570312e+02, 7.943101501464844e+01, -5e+02, -1.947563934326172e+02, -5e+02, -4.999980163574219e+02, -1.507620391845703e+02, -5e+02, -3.029000549316406e+02, -5e+02, -4.999990539550781e+02, -1.958281555175781e+02, -5e+02, -3.2408837890625e+02, -5e+02, -4.999992065429688e+02, -2.04656494140625e+02, -5e+02, -3.282312316894531e+02, -5e+02, -4.999992370605469e+02, -2.063805236816406e+02, -5e+02, -3.290336608886719e+02, -5e+02, -4.999992370605469e+02, -2.067273864746094e+02, -5e+02, -3.291946411132812e+02, -5e+02, -4.999992370605469e+02, -2.067838134765625e+02, -5e+02, -3.292244873046875e+02, -5e+02, -4.999992370605469e+02, -2.067988586425781e+02, -5e+02, -3.292330322265625e+02, -5e+02, -4.999992370605469e+02, -2.067982482910156e+02, -5e+02, -3.292293395996094e+02, -5e+02, -4.999992370605469e+02, -2.068003997802734e+02, -5e+02, -3.292356262207031e+02, -5e+02, -4.999992370605469e+02, -2.068051452636719e+02, -5e+02, -3.292420959472656e+02, -5e+02, -4.999992370605469e+02, -2.068099670410156e+02, -5e+02, -3.292437133789062e+02, -5e+02, -4.999992370605469e+02, -2.068094329833984e+02, -5e+02, -3.292345886230469e+02, -5e+02, -4.999992370605469e+02, -2.067975921630859e+02, -5e+02, -3.292333374023438e+02, -5e+02, -4.999992370605469e+02, -2.068057708740234e+02, -5e+02, -3.292410888671875e+02, -5e+02, -4.999992370605469e+02, -2.068051452636719e+02, -5e+02, -3.292401733398438e+02, -5e+02, -4.999992370605469e+02, -2.068108825683594e+02, -5e+02, -3.292388916015625e+02, -5e+02, -4.999992370605469e+02, -2.068118286132812e+02, -5e+02, -3.292404479980469e+02, -5e+02, -4.999992370605469e+02, -2.068119964599609e+02, -5e+02, -3.292412414550781e+02, -5e+02, -4.999992370605469e+02, -2.068325958251953e+02, -5e+02] reference.y[1]=[0e+00, 3.74e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -3.24e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -5e+02, -2.07e+02, -5e+02] -assEqu.diff=[0e+00, 4.58148866891861e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.901975512504578e-02, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.759428232908249e-01, 1.671196514507756e-11] +assEqu.diff=[0e+00, 4.549486637115479e-01, 1.117456384073785e-18, 1.779649049692518e-43, 0e+00, -0e+00, -0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -0e+00, 0e+00, 0e+00, 8.838574588298798e-02, -5.923136547209158e-12, -1.706490863027639e-34, 5.324934164434305e-44, 0e+00, -0e+00, 0e+00, 0e+00, 0e+00, -0e+00, -0e+00, -0e+00, 0e+00, 0e+00, 0e+00, -0e+00, 0e+00, -0e+00, 0e+00, 0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 1.673992872238159e-01, 6.909564032042681e-10] assEqu.threShold=[1.5e+00, 1.5e+00] assEqu.satisfied=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase8.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase8.txt index 26c63448c7..5bccd3e616 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase8.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase8.txt @@ -1,14 +1,14 @@ -last-generated=2016-12-21 +last-generated=2022-06-02 statistics-simulation= { - "numerical Jacobians": "0", - "nonlinear": " ", - "number of continuous time states": "3", - "linear": "3, 0" + "linear": "3, 0", + "nonlinear": " ", + "number of continuous time states": "4", + "numerical Jacobians": "0" } -mean.y=[0., 299.432647705078125, 298.2886962890625, 301.82379150390625, 303.610198974609375, 303.74859619140625, 306.952545166015625, 304.989501953125, 307.75299072265625, 308.9005126953125, 308.468963623046875, 311.130218505859375, 308.71710205078125, 311.05206298828125, 311.844146728515625, 311.095489501953125, 313.45477294921875, 310.791229248046875, 312.887725830078125, 313.4820556640625, 312.55694580078125, 314.74822998046875, 311.945343017578125, 313.90911865234375, 314.3934326171875, 313.3701171875, 315.467926025390625, 312.587493896484375, 314.47747802734375, 314.900543212890625, 313.822601318359375, 315.868377685546875, 312.94482421875, 314.793701171875, 315.182708740234375, 314.074371337890625, 316.0911865234375, 313.14361572265625, 314.96966552734375, 315.3397216796875, 314.214447021484375, 316.215179443359375, 313.2542724609375, 315.06756591796875, 315.427093505859375, 314.29241943359375, 316.2841796875, 313.315826416015625, 315.122039794921875, 315.475677490234375, 314.335784912109375, 316.32257080078125, 313.350067138671875, 315.152374267578125, 315.50274658203125, 314.35992431640625, 316.343902587890625, 313.369110107421875, 315.169219970703125, 315.517791748046875, 314.37335205078125, 316.355804443359375, 313.379730224609375, 315.178619384765625, 315.526153564453125, 314.38079833984375, 316.3624267578125, 313.3856201171875, 315.183837890625, 315.53082275390625, 314.384979248046875, 316.3660888671875, 313.388916015625, 315.186737060546875, 315.533416748046875, 314.38726806640625, 316.368133544921875, 313.3907470703125, 315.1883544921875, 315.53485107421875, 314.388580322265625, 316.369293212890625, 313.391754150390625, 315.18927001953125, 315.535675048828125, 314.3892822265625, 316.369903564453125, 313.392333984375, 315.18975830078125, 315.536102294921875, 314.389678955078125, 316.370269775390625, 313.39263916015625, 315.190032958984375, 315.536346435546875, 314.389892578125, 316.370452880859375, 313.392822265625, 315.190185546875, 315.5364990234375, 314.3900146484375] -reference.y[1]=[295.149993896484375, 299.45001220703125, 298.649993896484375, 298.649993896484375, 298.649993896484375, 298.649993896484375, 298.649993896484375, 298.649993896484375, 298.649993896484375, 298.649993896484375, 298.649993896484375, 298.649993896484375, 298.649993896484375, 298.649993896484375, 298.649993896484375, 298.649993896484375, 313.45001220703125, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 315.54998779296875, 314.350006103515625] -time=[0., 5184000.] -assEqu.threShold=[0.15000000596046447754, 0.15000000596046447754] -assEqu.satisfied=[1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.] -assEqu.diff=[0., 0.01736281253397464752, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.00478105992078781128, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.01350658386945724487, 0.04002973437309265137] +time=[0e+00, 5.184e+06] +mean.y=[0e+00, 2.994326477050781e+02, 2.982887573242188e+02, 3.018237609863281e+02, 3.03610107421875e+02, 3.037487182617188e+02, 3.069524841308594e+02, 3.049895629882812e+02, 3.077529602050781e+02, 3.089004211425781e+02, 3.084690246582031e+02, 3.111301574707031e+02, 3.087171936035156e+02, 3.110521545410156e+02, 3.118440551757812e+02, 3.110955505371094e+02, 3.134547729492188e+02, 3.107913513183594e+02, 3.128877868652344e+02, 3.134819641113281e+02, 3.125570068359375e+02, 3.147481384277344e+02, 3.119454040527344e+02, 3.139091796875e+02, 3.143933715820312e+02, 3.133702087402344e+02, 3.154678344726562e+02, 3.125875549316406e+02, 3.144775390625e+02, 3.149004821777344e+02, 3.138226928710938e+02, 3.158682861328125e+02, 3.129448852539062e+02, 3.147937622070312e+02, 3.151826477050781e+02, 3.14074462890625e+02, 3.160911560058594e+02, 3.131436767578125e+02, 3.149697265625e+02, 3.153396301269531e+02, 3.142145385742188e+02, 3.162151489257812e+02, 3.132543334960938e+02, 3.15067626953125e+02, 3.15427001953125e+02, 3.1429248046875e+02, 3.162841186523438e+02, 3.133158874511719e+02, 3.151221313476562e+02, 3.154755859375e+02, 3.143358764648438e+02, 3.16322509765625e+02, 3.133501281738281e+02, 3.151524353027344e+02, 3.155026550292969e+02, 3.143599853515625e+02, 3.163438720703125e+02, 3.133691711425781e+02, 3.151693115234375e+02, 3.155177001953125e+02, 3.143734130859375e+02, 3.163557739257812e+02, 3.133797912597656e+02, 3.151786804199219e+02, 3.155260620117188e+02, 3.143808898925781e+02, 3.163623657226562e+02, 3.133856811523438e+02, 3.151838989257812e+02, 3.155307312011719e+02, 3.143850402832031e+02, 3.163660278320312e+02, 3.133889770507812e+02, 3.151867980957031e+02, 3.155333251953125e+02, 3.143873596191406e+02, 3.163681030273438e+02, 3.133908081054688e+02, 3.151884155273438e+02, 3.155347595214844e+02, 3.143886413574219e+02, 3.163692321777344e+02, 3.133918151855469e+02, 3.151893310546875e+02, 3.155355529785156e+02, 3.143893737792969e+02, 3.16369873046875e+02, 3.133923645019531e+02, 3.151898193359375e+02, 3.155360107421875e+02, 3.143897705078125e+02, 3.163702087402344e+02, 3.133927001953125e+02, 3.151900939941406e+02, 3.155362548828125e+02, 3.143899841308594e+02, 3.163703918457031e+02, 3.133928833007812e+02, 3.151902465820312e+02, 3.155364685058594e+02, 3.143900146484375e+02] +reference.y[1]=[2.951499938964844e+02, 2.994500122070312e+02, 2.986499938964844e+02, 2.986499938964844e+02, 2.986499938964844e+02, 2.986499938964844e+02, 2.986499938964844e+02, 2.986499938964844e+02, 2.986499938964844e+02, 2.986499938964844e+02, 2.986499938964844e+02, 2.986499938964844e+02, 2.986499938964844e+02, 2.986499938964844e+02, 2.986499938964844e+02, 2.986499938964844e+02, 3.134500122070312e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.155499877929688e+02, 3.143500061035156e+02] +assEqu.diff=[0e+00, 1.736204698681831e-02, 1.55452161559877e-11, -2.945729789388731e-17, -9.90525800069777e-26, 8.99077399499685e-36, -1.121038771459854e-44, 0e+00, -0e+00, -0e+00, 0e+00, -0e+00, 0e+00, -0e+00, 0e+00, 0e+00, 4.783500451594591e-03, 1.112745229292529e-09, -1.763466317417084e-10, 2.126005101132922e-11, 4.274566269522884e-13, 1.161655288698911e-14, 2.935695848742259e-13, -3.032615459208805e-14, 1.074746099950265e-13, -3.808450543861877e-14, 1.570839435462927e-15, 3.863901928448377e-13, 1.899130029939207e-14, 1.982574633705835e-14, 5.709341539417376e-17, 5.087240383335078e-19, 1.093077754283749e-16, 5.206183979411831e-20, 7.255198729324738e-21, -1.304544012129419e-23, -4.526170332763219e-28, -3.685280815280575e-26, -7.110055633773501e-30, -2.095090239470566e-29, 5.896281133092533e-33, -1.328005577228484e-36, -3.498265161342692e-35, 5.694623323994014e-39, 1.125410542408854e-38, 7.722555836894067e-42, -1.401298464324817e-45, -2.242077542919707e-44, 0e+00, 0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 0e+00, 0e+00, 0e+00, -0e+00, -0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -0e+00, -0e+00, -0e+00, 0e+00, 0e+00, -0e+00, -0e+00, -0e+00, 0e+00, 0e+00, -0e+00, -0e+00, 0e+00, 0e+00, -0e+00, -0e+00, 0e+00, 0e+00, -0e+00, 0e+00, -0e+00, -0e+00, 0e+00, 0e+00, 0e+00, -0e+00, 1.354421861469746e-02, 4.002618044614792e-02] +assEqu.threShold=[1.500000059604645e-01, 1.500000059604645e-01] +assEqu.satisfied=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase9.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase9.txt index 383adf0921..2a6faa49b8 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase9.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase9.txt @@ -1,14 +1,14 @@ -last-generated=2016-12-21 +last-generated=2022-06-02 statistics-simulation= { - "numerical Jacobians": "0", - "nonlinear": " ", - "number of continuous time states": "3", - "linear": "3, 0" + "linear": "3, 0", + "nonlinear": " ", + "number of continuous time states": "4", + "numerical Jacobians": "0" } -mean.y=[0., 299.447662353515625, 298.277435302734375, 301.83880615234375, 303.620269775390625, 303.761444091796875, 306.97760009765625, 304.987274169921875, 307.7760009765625, 308.917694091796875, 308.488189697265625, 311.160919189453125, 308.71990966796875, 311.079498291015625, 311.865325927734375, 311.11822509765625, 313.488616943359375, 310.79681396484375, 312.91766357421875, 313.50543212890625, 312.5816650390625, 314.783782958984375, 311.952484130859375, 313.9404296875, 314.41802978515625, 313.39593505859375, 315.50445556640625, 312.59552001953125, 314.509552001953125, 314.92584228515625, 313.849029541015625, 315.90545654296875, 312.95330810546875, 314.826202392578125, 315.2083740234375, 314.10113525390625, 316.128570556640625, 313.15240478515625, 315.002410888671875, 315.3656005859375, 314.241424560546875, 316.252716064453125, 313.263153076171875, 315.100433349609375, 315.45306396484375, 314.319488525390625, 316.321807861328125, 313.324798583984375, 315.154998779296875, 315.501739501953125, 314.3629150390625, 316.360260009765625, 313.359100341796875, 315.18536376953125, 315.528839111328125, 314.3870849609375, 316.381622314453125, 313.378173828125, 315.202239990234375, 315.543914794921875, 314.4005126953125, 316.393524169921875, 313.3887939453125, 315.211639404296875, 315.552276611328125, 314.407989501953125, 316.400146484375, 313.39471435546875, 315.21685791015625, 315.55694580078125, 314.41217041015625, 316.403839111328125, 313.39801025390625, 315.21978759765625, 315.559539794921875, 314.41448974609375, 316.4058837890625, 313.39984130859375, 315.221405029296875, 315.561004638671875, 314.415771484375, 316.40704345703125, 313.400848388671875, 315.2222900390625, 315.561798095703125, 314.41650390625, 316.40765380859375, 313.40142822265625, 315.222808837890625, 315.562255859375, 314.416900634765625, 316.40802001953125, 313.4017333984375, 315.22308349609375, 315.5625, 314.4171142578125, 316.408203125, 313.40191650390625, 315.223236083984375, 315.5626220703125, 314.417236328125] -reference.y[1]=[295.149993896484375, 299.45001220703125, 298.649993896484375, 298.649993896484375, 298.649993896484375, 298.649993896484375, 298.649993896484375, 298.649993896484375, 298.649993896484375, 298.649993896484375, 298.649993896484375, 298.649993896484375, 298.649993896484375, 298.649993896484375, 298.649993896484375, 298.649993896484375, 313.45001220703125, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 311.54998779296875, 315.45001220703125, 314.350006103515625] -time=[0., 5184000.] -assEqu.threShold=[0.15000000596046447754, 0.15000000596046447754] -assEqu.satisfied=[1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.] -assEqu.diff=[0., 0.00234048254787921906, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.03860399127006530762, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.11263459175825119019, 0.06723441183567047119] +time=[0e+00, 5.184e+06] +mean.y=[0e+00, 2.994476318359375e+02, 2.982774963378906e+02, 3.018387756347656e+02, 3.036201477050781e+02, 3.037615661621094e+02, 3.069775390625e+02, 3.049873046875e+02, 3.077760009765625e+02, 3.089175720214844e+02, 3.084882202148438e+02, 3.111608276367188e+02, 3.087199401855469e+02, 3.110795288085938e+02, 3.118651733398438e+02, 3.111182861328125e+02, 3.134884948730469e+02, 3.10796875e+02, 3.129176940917969e+02, 3.135052795410156e+02, 3.125817260742188e+02, 3.1478369140625e+02, 3.119524841308594e+02, 3.139404602050781e+02, 3.144179077148438e+02, 3.1339599609375e+02, 3.155043334960938e+02, 3.125955200195312e+02, 3.145095825195312e+02, 3.149257202148438e+02, 3.138490905761719e+02, 3.159053344726562e+02, 3.129533081054688e+02, 3.148262329101562e+02, 3.15208251953125e+02, 3.141011962890625e+02, 3.161284790039062e+02, 3.131524047851562e+02, 3.1500244140625e+02, 3.153654479980469e+02, 3.14241455078125e+02, 3.162526550292969e+02, 3.1326318359375e+02, 3.151004638671875e+02, 3.154529418945312e+02, 3.143195190429688e+02, 3.163217163085938e+02, 3.133247985839844e+02, 3.15155029296875e+02, 3.155016174316406e+02, 3.143629455566406e+02, 3.163601684570312e+02, 3.133591003417969e+02, 3.151853637695312e+02, 3.155286865234375e+02, 3.143871154785156e+02, 3.163815307617188e+02, 3.133782043457031e+02, 3.152022705078125e+02, 3.155437622070312e+02, 3.144005737304688e+02, 3.163934326171875e+02, 3.133888244628906e+02, 3.15211669921875e+02, 3.155521545410156e+02, 3.144080505371094e+02, 3.164000854492188e+02, 3.133947143554688e+02, 3.152168884277344e+02, 3.155567932128906e+02, 3.144122009277344e+02, 3.164037475585938e+02, 3.133980102539062e+02, 3.152197875976562e+02, 3.155594177246094e+02, 3.144145202636719e+02, 3.164057922363281e+02, 3.133998413085938e+02, 3.152214050292969e+02, 3.155608520507812e+02, 3.144158020019531e+02, 3.164069519042969e+02, 3.134008483886719e+02, 3.152222900390625e+02, 3.155616455078125e+02, 3.144165344238281e+02, 3.164075927734375e+02, 3.134014282226562e+02, 3.152228088378906e+02, 3.155621032714844e+02, 3.144169311523438e+02, 3.164079284667969e+02, 3.134017333984375e+02, 3.152230834960938e+02, 3.155623474121094e+02, 3.144171447753906e+02, 3.164081420898438e+02, 3.134019165039062e+02, 3.152232360839844e+02, 3.155625610351562e+02, 3.144172058105469e+02] +reference.y[1]=[2.951499938964844e+02, 2.994500122070312e+02, 2.986499938964844e+02, 2.986499938964844e+02, 2.986499938964844e+02, 2.986499938964844e+02, 2.986499938964844e+02, 2.986499938964844e+02, 2.986499938964844e+02, 2.986499938964844e+02, 2.986499938964844e+02, 2.986499938964844e+02, 2.986499938964844e+02, 2.986499938964844e+02, 2.986499938964844e+02, 2.986499938964844e+02, 3.134500122070312e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.115499877929688e+02, 3.154500122070312e+02, 3.143500061035156e+02] +assEqu.diff=[0e+00, 2.377409487962723e-03, -5.138820792505161e-12, 2.855179940734745e-18, -1.84802081192208e-29, 7.513133182699187e-39, -0e+00, 0e+00, -0e+00, -0e+00, 0e+00, 0e+00, 0e+00, -0e+00, 0e+00, -0e+00, 3.849508613348007e-02, 2.57267274150774e-09, 2.025558887286394e-10, -1.611456940109335e-10, -1.712235171355547e-12, 3.947727493752544e-15, -6.788134744790172e-16, 4.808587843589187e-17, 3.647079025415702e-17, -1.722991056361085e-18, -8.254814061631816e-23, 2.106656960142802e-22, -1.075957661167651e-24, -7.195867458653584e-27, 8.092202958491182e-27, 5.014190583658511e-31, -1.568534334675093e-30, 1.086994785380517e-29, 4.36121118302128e-29, -1.786172834930402e-31, -4.747490214227274e-35, 3.458136550749941e-34, -3.997869990724542e-36, -1.152620496363217e-35, 1.209375785871812e-38, 7.665102599856749e-43, -2.799794331720985e-42, 1.401298464324817e-45, 5.605193857299268e-45, -0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 0e+00, 0e+00, -0e+00, -0e+00, 0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 0e+00, -0e+00, 0e+00, 0e+00, -0e+00, 0e+00, -0e+00, -0e+00, -0e+00, 0e+00, -0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -0e+00, 0e+00, 0e+00, -0e+00, -0e+00, 0e+00, -0e+00, 0e+00, 0e+00, 0e+00, -0e+00, -0e+00, 0e+00, 0e+00, -0e+00, 0e+00, 0e+00, -0e+00, 1.125598475337029e-01, 6.721100211143494e-02] +assEqu.threShold=[1.500000059604645e-01, 1.500000059604645e-01] +assEqu.satisfied=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Utilities_IO_SignalExchange_Examples_WeatherStation.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Utilities_IO_SignalExchange_Examples_WeatherStation.txt index 7fd1558e37..faf62a1cf7 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Utilities_IO_SignalExchange_Examples_WeatherStation.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Utilities_IO_SignalExchange_Examples_WeatherStation.txt @@ -1,14 +1,14 @@ -last-generated=2020-10-02 +last-generated=2022-05-18 statistics-simulation= { "linear": " ", "nonlinear": "1", "numerical Jacobians": "0" } -weaSta.reaWeaTBlaSky.y=[2.491556701660156e+02, 2.518007965087891e+02, 2.528040008544922e+02, 2.528537445068359e+02, 2.4706494140625e+02, 2.540329895019531e+02, 2.618754272460938e+02, 2.641112365722656e+02, 2.631077575683594e+02, 2.642126159667969e+02, 2.569654235839844e+02, 2.554220733642578e+02, 2.604988403320312e+02, 2.647346496582031e+02, 2.65799072265625e+02, 2.672486877441406e+02, 2.659972839355469e+02, 2.671484680175781e+02, 2.671919555664062e+02, 2.687167053222656e+02, 2.66510498046875e+02, 2.667216796875e+02, 2.650717468261719e+02, 2.61948974609375e+02, 2.608114318847656e+02, 2.620969543457031e+02, 2.625825805664062e+02, 2.627130432128906e+02, 2.626117553710938e+02, 2.628800964355469e+02, 2.627281494140625e+02, 2.627281494140625e+02, 2.622422485351562e+02, 2.630119323730469e+02, 2.6388330078125e+02, 2.649124450683594e+02, 2.652734985351562e+02, 2.630911560058594e+02, 2.598755798339844e+02, 2.60566650390625e+02, 2.480502777099609e+02, 2.541735076904297e+02, 2.434555511474609e+02, 2.393827362060547e+02, 2.424917602539062e+02, 2.468424224853516e+02, 2.515264129638672e+02, 2.532401885986328e+02, 2.505587310791016e+02, 2.465009918212891e+02, 2.466476593017578e+02, 2.443144989013672e+02, 2.403919219970703e+02, 2.393772430419922e+02, 2.401752014160157e+02, 2.467585906982422e+02, 2.491104431152343e+02, 2.41545394897461e+02, 2.355012512207032e+02, 2.340198974609375e+02, 2.3340869140625e+02, 2.325770111083984e+02, 2.331719665527344e+02, 2.294149627685547e+02, 2.3557763671875e+02, 2.379766540527344e+02, 2.395352478027344e+02, 2.367822570800781e+02, 2.341572875976562e+02, 2.326791687011719e+02, 2.323988494873047e+02, 2.313890228271484e+02, 2.320125579833984e+02, 2.306893005371094e+02, 2.382817840576172e+02, 2.425250701904297e+02, 2.438956909179688e+02, 2.445096893310547e+02, 2.437394104003906e+02, 2.451863861083984e+02, 2.447164611816406e+02, 2.455099639892578e+02, 2.461102905273438e+02, 2.465906524658203e+02, 2.5298876953125e+02, 2.579058227539062e+02, 2.589493408203125e+02, 2.567998657226562e+02, 2.597377014160156e+02, 2.65432861328125e+02, 2.64526123046875e+02, 2.623775939941406e+02, 2.619805603027344e+02, 2.551067810058594e+02, 2.556009368896484e+02, 2.577059936523438e+02, 2.576716613769531e+02, 2.551581268310547e+02, 2.513739013671875e+02, 2.557283477783203e+02, 2.597425537109375e+02] -weaSta.reaWeaTDewPoi.y=[2.570499877929688e+02, 2.577903747558594e+02, 2.586622924804688e+02, 2.593822326660156e+02, 2.598500061035156e+02, 2.6375e+02, 2.655794677734375e+02, 2.670499877929688e+02, 2.670845336914062e+02, 2.681499938964844e+02, 2.670499877929688e+02, 2.667976684570312e+02, 2.675149536132812e+02, 2.675499877929688e+02, 2.681499938964844e+02, 2.6875e+02, 2.720499877929688e+02, 2.724979858398438e+02, 2.725404052734375e+02, 2.73510009765625e+02, 2.725499877929688e+02, 2.725499877929688e+02, 2.701216735839844e+02, 2.674332885742188e+02, 2.670499877929688e+02, 2.675499877929688e+02, 2.675499877929688e+02, 2.680875854492188e+02, 2.676700134277344e+02, 2.6877880859375e+02, 2.681499938964844e+02, 2.681499938964844e+02, 2.681499938964844e+02, 2.6925e+02, 2.6925e+02, 2.703500061035156e+02, 2.705350036621094e+02, 2.684736938476562e+02, 2.657981872558594e+02, 2.665877075195312e+02, 2.625499877929688e+02, 2.629891967773438e+02, 2.587436828613281e+02, 2.544598083496094e+02, 2.575499877929688e+02, 2.598500061035156e+02, 2.618869018554688e+02, 2.630616149902344e+02, 2.624432983398438e+02, 2.609819946289062e+02, 2.5925e+02, 2.579100036621094e+02, 2.565134582519531e+02, 2.535903625488281e+02, 2.505446319580078e+02, 2.525500030517578e+02, 2.523899993896484e+02, 2.522388000488281e+02, 2.496710052490235e+02, 2.481716003417969e+02, 2.470500030517578e+02, 2.464499969482422e+02, 2.464499969482422e+02, 2.454142303466797e+02, 2.484637451171875e+02, 2.4875e+02, 2.497218322753906e+02, 2.488919525146484e+02, 2.481212005615234e+02, 2.475630950927734e+02, 2.470500030517578e+02, 2.470500030517578e+02, 2.46414794921875e+02, 2.464370727539062e+02, 2.508435211181641e+02, 2.509499969482422e+02, 2.521940002441406e+02, 2.541304779052734e+02, 2.553500061035156e+02, 2.553500061035156e+02, 2.553500061035156e+02, 2.577708129882812e+02, 2.5875e+02, 2.5875e+02, 2.593044128417969e+02, 2.625499877929688e+02, 2.639400939941406e+02, 2.648310852050781e+02, 2.654588012695312e+02, 2.671340026855469e+02, 2.6875e+02, 2.695004577636719e+02, 2.698500061035156e+02, 2.680489807128906e+02, 2.677323913574219e+02, 2.681499938964844e+02, 2.679649963378906e+02, 2.67128173828125e+02, 2.664186401367188e+02, 2.669914245605469e+02, 2.670499877929688e+02] -weaSta.reaWeaTDryBul.y=[2.609500122070312e+02, 2.616917419433594e+02, 2.625067138671875e+02, 2.625875549316406e+02, 2.655892028808594e+02, 2.698500061035156e+02, 2.720499877929688e+02, 2.720499877929688e+02, 2.710076599121094e+02, 2.718775329589844e+02, 2.714500122070312e+02, 2.701487121582031e+02, 2.718394165039062e+02, 2.725657043457031e+02, 2.73510009765625e+02, 2.748500061035156e+02, 2.727458801269531e+02, 2.738165588378906e+02, 2.738507690429688e+02, 2.751761474609375e+02, 2.731499938964844e+02, 2.733664245605469e+02, 2.722699890136719e+02, 2.69726806640625e+02, 2.686510009765625e+02, 2.698500061035156e+02, 2.703500061035156e+02, 2.703500061035156e+02, 2.703500061035156e+02, 2.703500061035156e+02, 2.703500061035156e+02, 2.703500061035156e+02, 2.698500061035156e+02, 2.70368896484375e+02, 2.712646484375e+02, 2.720499877929688e+02, 2.723750915527344e+02, 2.706428833007812e+02, 2.680000305175781e+02, 2.685143737792969e+02, 2.659500122070312e+02, 2.663959655761719e+02, 2.615640869140625e+02, 2.582966918945312e+02, 2.605414733886719e+02, 2.653500061035156e+02, 2.68171142578125e+02, 2.689230041503906e+02, 2.673940124511719e+02, 2.646900024414062e+02, 2.631499938964844e+02, 2.616885375976562e+02, 2.592747192382812e+02, 2.5865966796875e+02, 2.595489196777344e+02, 2.620499877929688e+02, 2.618193054199219e+02, 2.591358337402344e+02, 2.558065338134766e+02, 2.546062316894531e+02, 2.5425e+02, 2.535099945068359e+02, 2.521596069335938e+02, 2.503481140136719e+02, 2.562203674316406e+02, 2.5875e+02, 2.601742553710938e+02, 2.574121704101562e+02, 2.547695465087891e+02, 2.533141326904297e+02, 2.531499938964844e+02, 2.520500030517578e+02, 2.515124053955078e+02, 2.514559326171875e+02, 2.577486877441406e+02, 2.609500122070312e+02, 2.633900146484375e+02, 2.632027893066406e+02, 2.631949462890625e+02, 2.642657165527344e+02, 2.6425e+02, 2.644612121582031e+02, 2.648500061035156e+02, 2.65366943359375e+02, 2.686072998046875e+02, 2.725499877929688e+02, 2.748500061035156e+02, 2.733268127441406e+02, 2.73276123046875e+02, 2.733900146484375e+02, 2.720499877929688e+02, 2.721736450195312e+02, 2.732769470214844e+02, 2.702107238769531e+02, 2.727099914550781e+02, 2.748500061035156e+02, 2.748602905273438e+02, 2.723900146484375e+02, 2.685275573730469e+02, 2.681803894042969e+02, 2.675499877929688e+02] time=[0e+00, 8.64e+05] +weaSta.reaWeaTDryBul.y=[2.609500122070312e+02, 2.616917419433594e+02, 2.625067138671875e+02, 2.625875549316406e+02, 2.655892028808594e+02, 2.698500061035156e+02, 2.720499877929688e+02, 2.720499877929688e+02, 2.710076599121094e+02, 2.718775329589844e+02, 2.714500122070312e+02, 2.701487121582031e+02, 2.718394165039062e+02, 2.725657043457031e+02, 2.73510009765625e+02, 2.748500061035156e+02, 2.727458801269531e+02, 2.738165588378906e+02, 2.738507690429688e+02, 2.751761474609375e+02, 2.731499938964844e+02, 2.733664245605469e+02, 2.722699890136719e+02, 2.69726806640625e+02, 2.686510009765625e+02, 2.698500061035156e+02, 2.703500061035156e+02, 2.703500061035156e+02, 2.703500061035156e+02, 2.703500061035156e+02, 2.703500061035156e+02, 2.703500061035156e+02, 2.698500061035156e+02, 2.70368896484375e+02, 2.712646484375e+02, 2.720499877929688e+02, 2.723750915527344e+02, 2.706428833007812e+02, 2.680000305175781e+02, 2.685143737792969e+02, 2.659500122070312e+02, 2.663959655761719e+02, 2.615640869140625e+02, 2.582966918945312e+02, 2.605414733886719e+02, 2.653500061035156e+02, 2.68171142578125e+02, 2.689230041503906e+02, 2.673940124511719e+02, 2.646900024414062e+02, 2.631499938964844e+02, 2.616885375976562e+02, 2.592747192382812e+02, 2.5865966796875e+02, 2.595489196777344e+02, 2.620499877929688e+02, 2.618193054199219e+02, 2.591358337402344e+02, 2.558065338134766e+02, 2.546062316894531e+02, 2.5425e+02, 2.535099945068359e+02, 2.521596069335938e+02, 2.503481140136719e+02, 2.562203674316406e+02, 2.5875e+02, 2.601742553710938e+02, 2.574121704101562e+02, 2.547695465087891e+02, 2.533141326904297e+02, 2.531499938964844e+02, 2.520500030517578e+02, 2.515124053955078e+02, 2.514559326171875e+02, 2.577486877441406e+02, 2.609500122070312e+02, 2.633900146484375e+02, 2.632027893066406e+02, 2.631949462890625e+02, 2.642657165527344e+02, 2.6425e+02, 2.644612121582031e+02, 2.648500061035156e+02, 2.65366943359375e+02, 2.686072998046875e+02, 2.725499877929688e+02, 2.748500061035156e+02, 2.733268127441406e+02, 2.73276123046875e+02, 2.733900146484375e+02, 2.720499877929688e+02, 2.721736450195312e+02, 2.732769470214844e+02, 2.702107238769531e+02, 2.727099914550781e+02, 2.748500061035156e+02, 2.748602905273438e+02, 2.723900146484375e+02, 2.685275573730469e+02, 2.681803894042969e+02, 2.675499877929688e+02] +weaSta.reaWeaTDewPoi.y=[2.570499877929688e+02, 2.577903747558594e+02, 2.586622924804688e+02, 2.593822326660156e+02, 2.598500061035156e+02, 2.6375e+02, 2.655794677734375e+02, 2.670499877929688e+02, 2.670845336914062e+02, 2.681499938964844e+02, 2.670499877929688e+02, 2.667976684570312e+02, 2.675149536132812e+02, 2.675499877929688e+02, 2.681499938964844e+02, 2.6875e+02, 2.720499877929688e+02, 2.724979858398438e+02, 2.725404052734375e+02, 2.73510009765625e+02, 2.725499877929688e+02, 2.725499877929688e+02, 2.701216735839844e+02, 2.674332885742188e+02, 2.670499877929688e+02, 2.675499877929688e+02, 2.675499877929688e+02, 2.680875854492188e+02, 2.676700134277344e+02, 2.6877880859375e+02, 2.681499938964844e+02, 2.681499938964844e+02, 2.681499938964844e+02, 2.6925e+02, 2.6925e+02, 2.703500061035156e+02, 2.705350036621094e+02, 2.684736938476562e+02, 2.657981872558594e+02, 2.665877075195312e+02, 2.625499877929688e+02, 2.629891967773438e+02, 2.587436828613281e+02, 2.544598083496094e+02, 2.575499877929688e+02, 2.598500061035156e+02, 2.618869018554688e+02, 2.630616149902344e+02, 2.624432983398438e+02, 2.609819946289062e+02, 2.5925e+02, 2.579100036621094e+02, 2.565134582519531e+02, 2.535903625488281e+02, 2.505446319580078e+02, 2.525500030517578e+02, 2.523899993896484e+02, 2.522388000488281e+02, 2.496710052490235e+02, 2.481716003417969e+02, 2.470500030517578e+02, 2.464499969482422e+02, 2.464499969482422e+02, 2.454142303466797e+02, 2.484637451171875e+02, 2.4875e+02, 2.497218322753906e+02, 2.488919525146484e+02, 2.481212005615234e+02, 2.475630950927734e+02, 2.470500030517578e+02, 2.470500030517578e+02, 2.46414794921875e+02, 2.464370727539062e+02, 2.508435211181641e+02, 2.509499969482422e+02, 2.521940002441406e+02, 2.541304779052734e+02, 2.553500061035156e+02, 2.553500061035156e+02, 2.553500061035156e+02, 2.577708129882812e+02, 2.5875e+02, 2.5875e+02, 2.593044128417969e+02, 2.625499877929688e+02, 2.639400939941406e+02, 2.648310852050781e+02, 2.654588012695312e+02, 2.671340026855469e+02, 2.6875e+02, 2.695004577636719e+02, 2.698500061035156e+02, 2.680489807128906e+02, 2.677323913574219e+02, 2.681499938964844e+02, 2.679649963378906e+02, 2.67128173828125e+02, 2.664186401367188e+02, 2.669914245605469e+02, 2.670499877929688e+02] +weaSta.reaWeaTBlaSky.y=[2.491556701660156e+02, 2.518007965087891e+02, 2.528040008544922e+02, 2.528537445068359e+02, 2.4706494140625e+02, 2.540329895019531e+02, 2.618754272460938e+02, 2.641112365722656e+02, 2.631077575683594e+02, 2.642126159667969e+02, 2.569654235839844e+02, 2.554220733642578e+02, 2.604988403320312e+02, 2.647346496582031e+02, 2.65799072265625e+02, 2.672486877441406e+02, 2.659972839355469e+02, 2.671484680175781e+02, 2.671919555664062e+02, 2.687167053222656e+02, 2.66510498046875e+02, 2.667216796875e+02, 2.650717468261719e+02, 2.61948974609375e+02, 2.608114318847656e+02, 2.620969543457031e+02, 2.625825805664062e+02, 2.627130432128906e+02, 2.626117553710938e+02, 2.628800964355469e+02, 2.627281494140625e+02, 2.627281494140625e+02, 2.622422485351562e+02, 2.630119323730469e+02, 2.6388330078125e+02, 2.649124450683594e+02, 2.652734985351562e+02, 2.630911560058594e+02, 2.598755798339844e+02, 2.60566650390625e+02, 2.480502777099609e+02, 2.541735076904297e+02, 2.434555511474609e+02, 2.393827362060547e+02, 2.424917602539062e+02, 2.468424224853516e+02, 2.515264129638672e+02, 2.532401885986328e+02, 2.505587310791016e+02, 2.465009918212891e+02, 2.466476593017578e+02, 2.443144989013672e+02, 2.403919219970703e+02, 2.393772430419922e+02, 2.401752014160157e+02, 2.467585906982422e+02, 2.491104431152343e+02, 2.41545394897461e+02, 2.355012512207032e+02, 2.340198974609375e+02, 2.3340869140625e+02, 2.325770111083984e+02, 2.331719665527344e+02, 2.294149627685547e+02, 2.3557763671875e+02, 2.379766540527344e+02, 2.395352478027344e+02, 2.367822570800781e+02, 2.341572875976562e+02, 2.326791687011719e+02, 2.323988494873047e+02, 2.313890228271484e+02, 2.320125579833984e+02, 2.306893005371094e+02, 2.382817840576172e+02, 2.425250701904297e+02, 2.438956909179688e+02, 2.445096893310547e+02, 2.437394104003906e+02, 2.451863861083984e+02, 2.447164611816406e+02, 2.455099639892578e+02, 2.461102905273438e+02, 2.465906524658203e+02, 2.5298876953125e+02, 2.579058227539062e+02, 2.589493408203125e+02, 2.567998657226562e+02, 2.597377014160156e+02, 2.65432861328125e+02, 2.64526123046875e+02, 2.623775939941406e+02, 2.619805603027344e+02, 2.551067810058594e+02, 2.556009368896484e+02, 2.577059936523438e+02, 2.576716613769531e+02, 2.551581268310547e+02, 2.513739013671875e+02, 2.557283477783203e+02, 2.597425537109375e+02] +weaSta.reaWeaHGloHor.y=[0e+00, 0e+00, 0e+00, 3.419684171676636e+00, 2.557314453125e+02, 2.981751403808594e+02, 1.243963775634766e+02, 2.312187433242789e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 4.345361709594727e+00, 1.262883834838867e+02, 1.851353454589844e+02, 1.274680023193359e+02, 4.900000095367432e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 9.800000190734863e+00, 1.732749786376953e+02, 2.17109130859375e+02, 1.550750274658203e+02, 4.33427286148064e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.745920181274414e+00, 1.343470611572266e+02, 1.952538757324219e+02, 1.337733459472656e+02, 7.031499862670898e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.30874547958374e+01, 2.820593872070312e+02, 4.466041564941406e+02, 2.559547119140625e+02, 9.745363235473633e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 8.371702194213867e+00, 2.668811950683609e+02, 2.210986633300786e+02, 1.543636322021476e+02, 7.532636165619635e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.274240970611572e+01, 2.958429565429688e+02, 4.508206481933594e+02, 2.808231506347656e+02, 1.134494113922119e+01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.415843963623047e+00, 2.673677978515625e+02, 4.19702392578125e+02, 2.716494750976562e+02, 1.10202579498291e+01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 9.197999954223633e+00, 2.155022735595703e+02, 3.465298156738281e+02, 2.187716064453125e+02, 6.860000133514404e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 9.368800163269043e+00, 2.6926318359375e+02, 4.256927795410156e+02, 2.623228454589844e+02, 1.005613613128662e+01, 0e+00, 0e+00, 0e+00] weaSta.reaWeaHDifHor.y=[0e+00, 0e+00, 0e+00, 4.644347667694092e+00, 7.274771881103516e+01, 1.593369750976562e+02, 9.878334808349609e+01, 1.75823533535003e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 4.385499954223633e+00, 1.252859191894532e+02, 1.845002899169922e+02, 1.274956817626953e+02, 4.900000095367432e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.000045490264893e+01, 1.731710815429688e+02, 2.166393127441406e+02, 1.55064208984375e+02, 4.33427286148064e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.91349983215332e+00, 1.333693389892578e+02, 1.952490844726562e+02, 1.337733459472656e+02, 7.031499862670898e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.286250019073486e+01, 5.679437637329102e+01, 6.916741180419922e+01, 8.858499145507812e+01, 4.998000144958496e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.03764705657959e+01, 7.015895080566509e+01, 1.828827667236332e+02, 1.257971267700189e+02, 5.799818038940987e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.750166893005371e+00, 4.508449935913086e+01, 5.752777862548828e+01, 4.308035659790039e+01, 6.288333415985107e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 8.62399959564209e+00, 6.680748748779297e+01, 1.208872528076172e+02, 4.829987335205078e+01, 7.586091041564941e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 9.36219596862793e+00, 1.412788238525391e+02, 2.004542388916016e+02, 1.018874969482422e+02, 4.796235084533691e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 8.885333061218262e+00, 6.864063262939453e+01, 8.775384521484375e+01, 6.769609832763672e+01, 8.918000221252441e+00, 0e+00, 0e+00, 0e+00] weaSta.reaWeaHDirNor.y=[0e+00, 0e+00, 0e+00, 8.499014854431152e+00, 6.0210009765625e+02, 3.283700256347656e+02, 9.55174560546875e+01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 9.585999846458423e-01, 2.5e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00, 1e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00, 5.416666865348816e-01, 2.500000037252903e-02, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.432712173461914e+01, 7.35454345703125e+02, 8.67183349609375e+02, 5.776929931640625e+02, 3.76297721862793e+01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.902279663085938e+01, 6.387160644531241e+02, 8.980270385742216e+01, 9.641504669189459e+01, 3.312400054931722e+01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.037647857666016e+02, 8.0977197265625e+02, 9.026729125976562e+02, 7.978860473632812e+02, 7.624749755859375e+01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.044872360229492e+02, 6.479664916992188e+02, 6.886032104492188e+02, 7.383609619140625e+02, 5.662009811401367e+01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 6.38116455078125e+00, 2.427689056396484e+02, 3.440480651855469e+02, 4.011776428222656e+02, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 3.092487907409668e+01, 6.417283325195312e+02, 7.64078125e+02, 6.391987915039062e+02, 2.106696891784668e+01, 0e+00, 0e+00, 0e+00] -weaSta.reaWeaHGloHor.y=[0e+00, 0e+00, 0e+00, 3.419684171676636e+00, 2.557314453125e+02, 2.981751403808594e+02, 1.243963775634766e+02, 2.312187433242789e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 4.345361709594727e+00, 1.262883834838867e+02, 1.851353454589844e+02, 1.274680023193359e+02, 4.900000095367432e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 9.800000190734863e+00, 1.732749786376953e+02, 2.17109130859375e+02, 1.550750274658203e+02, 4.33427286148064e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.745920181274414e+00, 1.343470611572266e+02, 1.952538757324219e+02, 1.337733459472656e+02, 7.031499862670898e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.30874547958374e+01, 2.820593872070312e+02, 4.466041564941406e+02, 2.559547119140625e+02, 9.745363235473633e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 8.371702194213867e+00, 2.668811950683609e+02, 2.210986633300786e+02, 1.543636322021476e+02, 7.532636165619635e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.274240970611572e+01, 2.958429565429688e+02, 4.508206481933594e+02, 2.808231506347656e+02, 1.134494113922119e+01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.415843963623047e+00, 2.673677978515625e+02, 4.19702392578125e+02, 2.716494750976562e+02, 1.10202579498291e+01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 9.197999954223633e+00, 2.155022735595703e+02, 3.465298156738281e+02, 2.187716064453125e+02, 6.860000133514404e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 9.368800163269043e+00, 2.6926318359375e+02, 4.256927795410156e+02, 2.623228454589844e+02, 1.005613613128662e+01, 0e+00, 0e+00, 0e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Utilities_Math_Examples_MovingAverage.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Utilities_Math_Examples_MovingAverage.txt new file mode 100644 index 0000000000..427ed04e62 --- /dev/null +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Utilities_Math_Examples_MovingAverage.txt @@ -0,0 +1,11 @@ +last-generated=2022-02-25 +statistics-simulation= +{ + "linear": " ", + "nonlinear": " ", + "number of continuous time states": "1", + "numerical Jacobians": "0" +} +time=[0e+00, 5e+01] +movingAverage.u=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +movingAverage.y=[0e+00, 1.000000014901161e-01, 2.000000029802322e-01, 3.00000011920929e-01, 4.000000059604645e-01, 5e-01, 6.000000238418579e-01, 6.999999880790712e-01, 8.00000011920929e-01, 8.999999761581421e-01, 1e+00, 8.999999761581421e-01, 8.00000011920929e-01, 6.99999988079071e-01, 6.000000238418577e-01, 5e-01, 4.000000059604645e-01, 3.00000011920929e-01, 2.000000029802322e-01, 1.000000014901161e-01, 3.552713678800501e-15, 1.000000014901161e-01, 2.000000029802322e-01, 3.00000011920929e-01, 4.000000059604645e-01, 5e-01, 6.000000238418579e-01, 6.99999988079071e-01, 8.000000119209293e-01, 8.999999761581418e-01, 1e+00, 8.999999761581421e-01, 8.00000011920929e-01, 6.99999988079071e-01, 6.000000238418579e-01, 5e-01, 4.000000059604645e-01, 3.00000011920929e-01, 2.000000029802322e-01, 1.000000014901161e-01, 2.000504623067556e-10, 1.000000014901161e-01, 2.000000029802322e-01, 3.00000011920929e-01, 4.000000059604645e-01, 5e-01, 6.000000238418579e-01, 6.99999988079071e-01, 8.00000011920929e-01, 8.999999761581421e-01, 1e+00, 8.999999761581421e-01, 8.00000011920929e-01, 6.99999988079071e-01, 6.000000238418579e-01, 4.999999999999993e-01, 4.000000059604638e-01, 3.000000119209297e-01, 2.00000002980233e-01, 1.000000014901161e-01, 2.000575677341132e-10, 1.000000014901161e-01, 2.000000029802322e-01, 3.00000011920929e-01, 4.000000059604645e-01, 5e-01, 6.000000238418579e-01, 6.99999988079071e-01, 8.00000011920929e-01, 8.999999761581421e-01, 1e+00, 8.999999761581421e-01, 8.00000011920929e-01, 6.99999988079071e-01, 6.000000238418579e-01, 5e-01, 4.000000059604645e-01, 3.00000011920929e-01, 2.000000029802322e-01, 1.000000014901161e-01, 2.001399879159038e-10, 1.000000014901161e-01, 2.000000029802322e-01, 3.00000011920929e-01, 4.000000059604645e-01, 5e-01, 6.000000238418579e-01, 6.99999988079071e-01, 8.00000011920929e-01, 8.999999761581421e-01, 1e+00, 8.999999761581421e-01, 8.00000011920929e-01, 6.99999988079071e-01, 6.000000238418579e-01, 5e-01, 4.000000059604645e-01, 3.00000011920929e-01, 2.000000029802322e-01, 1.000000014901161e-01, 2.001996762812652e-10] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Utilities_Math_Examples_Polynomial.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Utilities_Math_Examples_Polynomial.txt new file mode 100644 index 0000000000..b926c5dd1e --- /dev/null +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Utilities_Math_Examples_Polynomial.txt @@ -0,0 +1,4 @@ +last-generated=2015-05-08 +statistics-simulation={'numerical Jacobians': '0', 'nonlinear': ' ', 'linear': ' '} +polynominal.y=[1., 1.01999998137355607497, 1.0399999627471119279, 1.0599999441206666706, 1.08000004470348698327, 1.09999996274709421762, 1.12000000745054562046, 1.14000004470348148544, 1.15999997019768419371, 1.17999994039546174385, 1.20000004470347798602, 1.22000002980230459748, 1.24000001490108124891, 1.26000004470346360641, 1.27999997019767319806, 1.2999999403955329047, 1.32000005960453825615, 1.33999997019767769224, 1.35999999999978671283, 1.37999999999992906119, 1.39999997019767752349, 1.4199999701978729405, 1.44000005960460919496, 1.45999998509886319553, 1.48000002980216249782, 1.5, 1.52000000000000001776, 1.54000000000000003553, 1.55999994039539080504, 1.58000005960439615649, 1.59999999999964481745, 1.62000000000007116085, 1.64000000000000012434, 1.66000002980234917516, 1.67999994039546196589, 1.69999999999999995559, 1.71999999999957364771, 1.73999999999985788257, 1.76000000000014211743, 1.78000002980231353256, 1.7999999403955329047, 1.81999999999999984013, 1.84000005960425405682, 1.85999999999978671283, 1.87999999999992906119, 1.90000002980227788996, 1.91999994039535515356, 1.93999999999999994671, 1.96000005960432499563, 1.97999999999971576514, 2., 2.01999999999943158357, 2.04000000000056846972, 2.05999994039539080504, 2.07999988079135000874, 2.10000005960517777126, 2.11999988079078161007, 2.13999994039468033336, 2.16000011920829493306, 2.18000011920772651663, 2.20000000000142081902, 2.22000000000085240259, 2.24000000000028398617, 2.25999999999971601383, 2.28000000000042613024, 2.29999994039553268266, 2.31999988079149188636, 2.34000005960503543179, 2.35999988079092393178, 2.38000000000014200197, 2.4000001192089341906, 2.4200001192080105028, 2.44000000000170524928, 2.46000000000113683285, 2.48000000000056841643, 2.5, 2.51999999999943158357, 2.53999994039567500437, 2.56000000000085270457, 2.5800000596048935364, 2.5999998807910658094, 2.61999999999985799803, 2.64000011920907651231, 2.65999994039496456821, 2.68000011920772651663, 2.70000000000142081902, 2.72000000000085240259, 2.74000000000028398617, 2.75999999999971601383, 2.77999999999914759741, 2.8000000000007103651, 2.81999994039524892742, 2.83999988079120768703, 2.86000005960531966664, 2.88000011920921838993, 2.89999994039482222874, 2.9200001192080105028, 2.94000000000170524928, 2.96000000000113683285, 2.98000000000056841643, 3.] +time=[0., 1.] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Utilities_Math_Functions_Examples_SmoothHeavisideDerivatives.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Utilities_Math_Functions_Examples_SmoothHeavisideDerivatives.txt index c02b2992d4..8c183b5556 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Utilities_Math_Functions_Examples_SmoothHeavisideDerivatives.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Utilities_Math_Functions_Examples_SmoothHeavisideDerivatives.txt @@ -1,11 +1,11 @@ -last-generated=2019-10-21 +last-generated=2022-05-18 statistics-simulation= { "linear": " ", "nonlinear": " ", "numerical Jacobians": "0" } -y=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.339253995729331e-12, 1.15812645229198e-03, 8.559998003796317e-03, 2.661187650961834e-02, 5.791999649014933e-02, 1.035156290332981e-01, 1.630800010373592e-01, 2.351693757673128e-01, 3.174399993274455e-01, 4.06873134713867e-01, 4.999999999999959e-01, 5.931268950884554e-01, 6.825600304748769e-01, 7.648306540350046e-01, 8.36920028764957e-01, 8.964843709666939e-01, 9.420800258615751e-01, 9.733881346662535e-01, 9.914400001335609e-01, 9.988418802997387e-01, 9.999999999926725e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] time=[-1e+00, 1e+00] +y=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.339253995729331e-12, 1.15812645229198e-03, 8.559998003796317e-03, 2.661187650961834e-02, 5.791999649014933e-02, 1.035156290332981e-01, 1.630800010373592e-01, 2.351693757673128e-01, 3.174399993274455e-01, 4.06873134713867e-01, 4.999999999999959e-01, 5.931268950884554e-01, 6.825600304748769e-01, 7.648306540350046e-01, 8.36920028764957e-01, 8.964843709666939e-01, 9.420800258615751e-01, 9.733881346662535e-01, 9.914400001335609e-01, 9.988418802997387e-01, 9.999999999926725e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] der(y)=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 5.476724811445765e-09, 1.692188728209346e-01, 6.074999233224682e-01, 1.21921875112257e+00, 1.919999860787222e+00, 2.636718802009944e+00, 3.307499828388185e+00, 3.881718600332817e+00, 4.320000154837397e+00, 4.594218726372717e+00, 4.687499999999999e+00, 4.594218726372717e+00, 4.320000154837397e+00, 3.881718600332817e+00, 3.307499828388181e+00, 2.63671880200994e+00, 1.919999860787218e+00, 1.219218751122574e+00, 6.07499923322471e-01, 1.692188728209365e-01, 5.476723923328319e-09, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] der2_y=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 2.710702780874659e-06, 1.603125461473035e+01, 2.699999837659616e+01, 3.346875011969368e+01, 3.599999985365181e+01, 3.515624980470167e+01, 3.150000041540651e+01, 2.559375044734153e+01, 1.800000036360712e+01, 9.281250201920056e+00, -2.220446049250313e-16, -9.281250201920056e+00, -1.800000036360712e+01, -2.559375044734153e+01, -3.150000041540654e+01, -3.515624980470169e+01, -3.599999985365181e+01, -3.34687501196937e+01, -2.699999837659621e+01, -1.603125461473043e+01, -2.710701196395604e-06, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Utilities_Math_Functions_Examples_SpliceFunctionDerivativeCheck.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Utilities_Math_Functions_Examples_SpliceFunctionDerivativeCheck.txt index 20f9925471..b3f0240405 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Utilities_Math_Functions_Examples_SpliceFunctionDerivativeCheck.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Utilities_Math_Functions_Examples_SpliceFunctionDerivativeCheck.txt @@ -1,13 +1,15 @@ -last-generated=2015-08-18 +last-generated=2022-05-18 statistics-simulation= { - "numerical Jacobians": "0", + "linear": " ", "nonlinear": " ", "number of continuous time states": "1", - "linear": " " + "numerical Jacobians": "0" } -y=[-10., -8.80388727157727579709, -7.76066886103235287209, -6.84539280771493086064, -6.0340660438167565971, -5.30496108600483662343, -4.64313093101239893201, -4.0456710639121649109, -3.51298088866822366683, -3.04006688011215153722, -2.62143970231305534213, -2.25199654235701185456, -1.92699947752650824206, -1.64206480373948493501, -1.39314034606648373682, -1.17649007116983139731, -0.98867475798393278374, -0.82653932234873850327, -0.6871948582260736238, -0.56800231738621220767, -0.4665598967428166155, -0.38068700563090707156, -0.30840977252498713579, -0.2479490504498653991, -0.19770614768107006021, -0.15625, -0.12230592405704432402, -0.09474295858788425728, -0.07251586263125843479, -0.05425593995630223487, -0.0392473375695109386, -0.02751017611318867795, -0.01878694120466852663, -0.01254356935333953392, -0.00819813965525247393, -0.00524218661946153786, -0.00327352867733093, -0.00199032323081690596, -0.00117326708835110158, -0.0006667297229297713, -0.00036244795438178926, -0.0001865407101839163, -0.00008960474821446588, -0.00003936924163152269, -0.00001536026911905356, -0.00000508346105978453, -0.00000132192733157466, -0.00000023412175122458, -0.00000002050190238385, -0.00000000032004284111, -0., -0.00000000031995729838, -0.00000002045810273997, -0.00000023243797765905, -0.00000129950225624668, -0.00000491638144523785, -0.00001449817526371029, -0.00003591721095331928, -0.00007812322633701166, -0.00015339975273659598, -0.00027690863494690492, -0.00046505041183304418, -0.00073202847653583121, -0.001083857454116879, -0.00150896070654321559, -0.00196463215336001654, -0.0023594886189480615, -0.00253495945870907359, -0.00225704177646930508, -0.00124883579861363096, 0.00067457110280275232, 0.00333080276958045525, 0.00612513195579493085, 0.00922189973143772157, 0.01352605784398098858, 0.01953125, 0.0277990681700139089, 0.03904304415372368553, 0.05416169188381672606, 0.07427660863193349949, 0.10077692784162392559, 0.13537085633229845039, 0.18014401933005336209, 0.23762672295100006892, 0.3108709763123809755, 0.40353614459622672017, 0.5199868052318652456, 0.66540400581420677817, 0.84590653401173332426, 1.06868958722072693313, 1.34217709540169782834, 1.67619563646542180102, 2.08215796976846112543, 2.57326922751210096507, 3.15998044877867023672, 3.81391652784853274483, 4.48465577442976304212, 5.15397270574675925303, 5.83126476017807515717, 6.53732278516330200802, 7.29596662521362304688] -x=[-1., -0.94119191657187861733, -0.88473606106521174297, -0.8305839959671187378, -0.77868797136022072092, -0.72900003053713224865, -0.68147201458821504705, -0.63605597436194472039, -0.59270405386895730349, -0.55136801262172863147, -0.51200000154478075842, -0.47455205801680505617, -0.43897600643095746609, -0.40522397986477504128, -0.37324796662597220509, -0.34300001237887983718, -0.31443198528965726757, -0.28749596646347586049, -0.26214401702636508373, -0.23832798947918873433, -0.21599998002494866234, -0.19511202183532760923, -0.17561599389531068471, -0.15746397897004499322, -0.14060801336676970186, -0.125, -0.1105920076641665889, -0.09733599644295361231, -0.0851840018298506696, -0.07408800676681306929, -0.06400000020733062622, -0.0548720008147986979, -0.04665599585896855472, -0.03930399816846133487, -0.03276800214211120221, -0.02699999752443483711, -0.02195199923890168645, -0.01757600168583863323, -0.01382400096581082663, -0.01064800023031922671, -0.00800000002945688501, -0.00583199949001078112, -0.00409600027123986719, -0.0027439999053561117, -0.00172800012268984563, -0.00100000000455825961, -0.0005120000347848127, -0.0002160000158351098, -0.00006400000457340826, -0.00000800000063068461, -0., 0.00000800000063068461, 0.00006400000457340827, 0.0002160000158351098, 0.00051200003478481498, 0.00100000000455826264, 0.00172800012268985062, 0.00274399990535610563, 0.00409600027123985851, 0.00583199949001077071, 0.00800000002945688501, 0.01064800023031922671, 0.01382400096581082663, 0.01757600168583863323, 0.02195199923890168645, 0.02699999752443483364, 0.03276800214211123691, 0.03930399816846137651, 0.04665599585896859636, 0.05487200081479864933, 0.06400000020733058459, 0.07408800676681301378, 0.0851840018298506696, 0.09733599644295361231, 0.1105920076641665889, 0.125, 0.14060801336676970186, 0.15746397897004499322, 0.17561599389531068471, 0.19511202183532760923, 0.21599998002494877336, 0.23832798947918884536, 0.2621440170263649172, 0.28749596646347586049, 0.31443198528965726757, 0.34300001237887983718, 0.37324796662597220509, 0.40522397986477504128, 0.43897600643095746609, 0.47455205801680505617, 0.51200000154478075842, 0.55136801262172863147, 0.59270405386895752553, 0.63605597436194505345, 0.681472014588214825, 0.72900003053713202661, 0.77868797136022049887, 0.8305839959671187378, 0.88473606106521174297, 0.94119191657187861733, 1.] -time=[-1., 1.] -der(y)=[64.05605316162109375, 55.7716374267547152499, 48.75805981778367481638, 42.97028414104632076942, 38.34707308892477328754, 34.69483585141377801619, 31.50501708483471929867, 28.22493511550162637036, 25.09272017167625890011, 22.24439146732773053827, 19.6607994835719530613, 17.32304894037302034349, 15.21315289636172707333, 13.31403933532318717425, 11.60950337227093775994, 10.08420077392707803199, 8.72360088782045828282, 7.51399417252233092768, 6.44245172926821485504, 5.49679687614112921779, 4.66559890830686718743, 3.93814120518374366497, 3.30439059952502134365, 2.7549895615439790042, 2.28122467565281450419, 1.875, 1.52882402626949986946, 1.23577810245496766406, 0.99986573483791152395, 0.83147512392710432039, 0.66824097481261590659, 0.50777629711529592704, 0.36921036523283623509, 0.26007018832530826025, 0.17873134779877516976, 0.12020737842667049422, 0.07915787204041135894, 0.05097419794442885344, 0.03201468717722074503, 0.01953044782125351944, 0.01150521080517397446, 0.00649114985396444504, 0.00346698538776924131, 0.00172404813255259168, 0.00077875457025459115, 0.00030750913034024362, 0.00009956460930444998, 0.0000234542524654322, 0.0000030769274074412, 0.0000000960192654154, 0., -0.00000009598076819578, -0.0000030670725750811, -0.00002320168572952152, -0.00009704179415454639, -0.00029247196850739276, -0.00071409760392310989, -0.00150213247990212974, -0.00282115543134417186, -0.00483414214805850777, -0.00765618821133640364, -0.01128123445250229367, -0.01547442492161453693, -0.01962326082983968656, -0.02254609006491905751, -0.02227608616717094772, -0.01589826636745391569, 0.00032076968276240764, 0.02988074798125587087, 0.07273248227821921263, 0.11830962708010285545, 0.14126226337279160217, 0.13866765987779991476, 0.18042894155492708586, 0.25361357828398156666, 0.3515625, 0.48113768896077607762, 0.6507174741128134432, 0.87045577257017714423, 1.15256801606567638174, 1.51165390750698347411, 1.96506083111593521373, 2.53327535201000486609, 3.24036449672279891487, 4.11446871218348331212, 5.18832183473610086821, 6.49983537202321137727, 8.09275163792024088139, 10.01731402786546709649, 12.33103262229887597812, 15.0994922116004310908, 18.39726960119933352189, 22.30883592709701090939, 26.92650252721101367115, 31.48662642085429297367, 33.4301267695779671385, 33.50585571010530117064, 33.5187035144330209846, 34.39015363699290617205, 36.41614674760178615998, 39.649257659912109375] -der(x)=[3., 2.88119996322620819384, 2.76480019556962464122, 2.65080000317573283297, 2.53919997559556698263, 2.43000019578865922298, 2.32320001264566267096, 2.21879999425912188826, 2.11680020230188992159, 2.01720002840978906988, 1.91999990000758424813, 1.82520009590173315495, 1.73280005046839535865, 1.64279993125924783648, 1.55519985748358013922, 1.47000007882098526757, 1.38719996880546325713, 1.30679990427983838686, 1.22880011346777195946, 1.15320001264573357425, 1.07999995737043530397, 1.00920003519996304142, 0.94080000317573320157, 0.87479995715136571466, 0.81120008243549768245, 0.75, 0.69120004895683451185, 0.63479999394900255005, 0.58080000317573288182, 0.52920005065421837909, 0.47999997503760077899, 0.43320001264569812927, 0.3887999644565863222, 0.34679999222278867776, 0.30720002840989513171, 0.26999998941419600662, 0.23520000080108757756, 0.20280002066607299982, 0.1728000122713828357, 0.14520000080108305673, 0.11999999377728577665, 0.09719999115707221582, 0.07680000712393662832, 0.05880000020384718723, 0.04320000308394395666, 0.02999999845325986708, 0.01920000179171466384, 0.01080000077903223166, 0.00480000045329324193, 0.00120000011600552648, 0.00000000000000000025, 0.00120000011600552648, 0.00480000045329324193, 0.01080000077903223166, 0.01920000179171471935, 0.02999999845325992953, 0.04320000308394403993, 0.05880000020384709702, 0.07680000712393651729, 0.0971999911570721048, 0.11999999377728577665, 0.14520000080108305673, 0.1728000122713828357, 0.20280002066607299982, 0.23520000080108757756, 0.26999998941419600662, 0.30720002840989535375, 0.34679999222278889981, 0.38879996445658659976, 0.43320001264569790722, 0.47999997503760050144, 0.52920005065421804602, 0.58080000317573288182, 0.63479999394900255005, 0.69120004895683451185, 0.75, 0.81120008243549768245, 0.87479995715136571466, 0.94080000317573320157, 1.00920003519996304142, 1.07999995737043574806, 1.15320001264573401834, 1.22880011346777151537, 1.30679990427983838686, 1.38719996880546325713, 1.47000007882098526757, 1.55519985748358013922, 1.64279993125924783648, 1.73280005046839535865, 1.82520009590173315495, 1.91999990000758424813, 2.01720002840978906988, 2.11680020230189036567, 2.21879999425912233235, 2.32320001264566222687, 2.43000019578865877889, 2.53919997559556653854, 2.65080000317573283297, 2.76480019556962464122, 2.88119996322620819384, 3.] +time=[-1e+00, 1e+00] +x=[-1e+00, -9.411919165718786e-01, -8.847360610652117e-01, -8.305839959671187e-01, -7.786879713602207e-01, -7.290000305371322e-01, -6.81472014588215e-01, -6.360559743619447e-01, -5.927040538689573e-01, -5.513680126217286e-01, -5.120000015447808e-01, -4.745520580168051e-01, -4.389760064309575e-01, -4.05223979864775e-01, -3.732479666259722e-01, -3.430000123788798e-01, -3.144319852896573e-01, -2.874959664634759e-01, -2.621440170263651e-01, -2.383279894791887e-01, -2.159999800249487e-01, -1.951120218353276e-01, -1.756159938953107e-01, -1.57463978970045e-01, -1.406080133667697e-01, -1.25e-01, -1.105920076641666e-01, -9.733599644295361e-02, -8.518400182985067e-02, -7.408800676681307e-02, -6.400000020733063e-02, -5.48720008147987e-02, -4.665599585896855e-02, -3.930399816846133e-02, -3.27680021421112e-02, -2.699999752443484e-02, -2.195199923890169e-02, -1.757600168583863e-02, -1.382400096581083e-02, -1.064800023031923e-02, -8.000000029456885e-03, -5.831999490010781e-03, -4.096000271239867e-03, -2.743999905356112e-03, -1.728000122689846e-03, -1.00000000455826e-03, -5.120000347848127e-04, -2.160000158351098e-04, -6.400000457340826e-05, -8.00000063068461e-06, -1.376428539288238e-20, 8.00000063068461e-06, 6.400000457340827e-05, 2.160000158351098e-04, 5.12000034784815e-04, 1.000000004558263e-03, 1.728000122689851e-03, 2.743999905356106e-03, 4.096000271239859e-03, 5.831999490010771e-03, 8.000000029456885e-03, 1.064800023031923e-02, 1.382400096581083e-02, 1.757600168583863e-02, 2.195199923890169e-02, 2.699999752443483e-02, 3.276800214211124e-02, 3.930399816846138e-02, 4.66559958589686e-02, 5.487200081479865e-02, 6.400000020733058e-02, 7.408800676681301e-02, 8.518400182985067e-02, 9.733599644295361e-02, 1.105920076641666e-01, 1.25e-01, 1.406080133667697e-01, 1.57463978970045e-01, 1.756159938953107e-01, 1.951120218353276e-01, 2.159999800249488e-01, 2.383279894791888e-01, 2.621440170263649e-01, 2.874959664634759e-01, 3.144319852896573e-01, 3.430000123788798e-01, 3.732479666259722e-01, 4.05223979864775e-01, 4.389760064309575e-01, 4.745520580168051e-01, 5.120000015447808e-01, 5.513680126217286e-01, 5.927040538689575e-01, 6.360559743619451e-01, 6.814720145882148e-01, 7.29000030537132e-01, 7.786879713602205e-01, 8.305839959671187e-01, 8.847360610652117e-01, 9.411919165718786e-01, 1e+00] +y=[-1e+01, -8.803887271577276e+00, -7.760668861032353e+00, -6.845392807714931e+00, -6.034066043816757e+00, -5.304961086004837e+00, -4.643130931012399e+00, -4.045671063912165e+00, -3.512980888668224e+00, -3.040066880112152e+00, -2.621439702313055e+00, -2.251996542357012e+00, -1.926999477526508e+00, -1.642064803739485e+00, -1.393140346066484e+00, -1.176490071169831e+00, -9.886747579839328e-01, -8.265393223487385e-01, -6.871948582260736e-01, -5.680023173862122e-01, -4.665598967428166e-01, -3.806870056309071e-01, -3.084097725249871e-01, -2.479490504498654e-01, -1.977061476810701e-01, -1.5625e-01, -1.223059240570443e-01, -9.474295858788426e-02, -7.251586263125843e-02, -5.425593995630223e-02, -3.924733756951094e-02, -2.751017611318868e-02, -1.878694120466853e-02, -1.254356935333953e-02, -8.198139655252474e-03, -5.242186619461538e-03, -3.27352867733093e-03, -1.990323230816906e-03, -1.173267088351102e-03, -6.667297229297713e-04, -3.624479543817893e-04, -1.865407101839163e-04, -8.960474821446588e-05, -3.936924163152269e-05, -1.536026911905356e-05, -5.083461059784535e-06, -1.321927331574657e-06, -2.341217512245809e-07, -2.05019023838535e-08, -3.200428411075681e-10, -4.40499929475413e-27, -3.199572983837478e-10, -2.045810273997089e-08, -2.324379776590457e-07, -1.299502256246679e-06, -4.916381445237848e-06, -1.449817526371029e-05, -3.591721095331928e-05, -7.812322633701166e-05, -1.53399752736596e-04, -2.769086349469049e-04, -4.650504118330442e-04, -7.320284765358312e-04, -1.083857454116879e-03, -1.508960706543216e-03, -1.964632153360017e-03, -2.359488618948062e-03, -2.534959458709074e-03, -2.257041776469305e-03, -1.248835798613631e-03, 6.745711028027523e-04, 3.330802769580455e-03, 6.125131955794931e-03, 9.221899731437722e-03, 1.352605784398099e-02, 1.953125e-02, 2.779906817001391e-02, 3.904304415372369e-02, 5.416169188381673e-02, 7.42766086319335e-02, 1.007769278416239e-01, 1.353708563322985e-01, 1.801440193300534e-01, 2.376267229510001e-01, 3.10870976312381e-01, 4.035361445962267e-01, 5.199868052318652e-01, 6.654040058142068e-01, 8.459065340117333e-01, 1.068689587220727e+00, 1.342177095401698e+00, 1.676195636465422e+00, 2.082157969768461e+00, 2.573269227512101e+00, 3.15998044877867e+00, 3.813916527848533e+00, 4.484655774429763e+00, 5.153972705746759e+00, 5.831264760178075e+00, 6.537322785163302e+00, 7.295966625213623e+00] +der(x)=[3e+00, 2.881199963226208e+00, 2.764800195569625e+00, 2.650800003175733e+00, 2.539199975595567e+00, 2.430000195788659e+00, 2.323200012645663e+00, 2.218799994259122e+00, 2.11680020230189e+00, 2.017200028409789e+00, 1.919999900007584e+00, 1.825200095901733e+00, 1.732800050468395e+00, 1.642799931259248e+00, 1.55519985748358e+00, 1.470000078820985e+00, 1.387199968805463e+00, 1.306799904279838e+00, 1.228800113467772e+00, 1.153200012645734e+00, 1.079999957370435e+00, 1.009200035199963e+00, 9.408000031757332e-01, 8.747999571513657e-01, 8.112000824354977e-01, 7.5e-01, 6.912000489568345e-01, 6.347999939490026e-01, 5.808000031757329e-01, 5.292000506542184e-01, 4.799999750376008e-01, 4.332000126456981e-01, 3.887999644565863e-01, 3.467999922227887e-01, 3.072000284098951e-01, 2.69999989414196e-01, 2.352000008010876e-01, 2.02800020666073e-01, 1.728000122713828e-01, 1.452000008010831e-01, 1.199999937772858e-01, 9.719999115707222e-02, 7.680000712393663e-02, 5.880000020384719e-02, 4.320000308394396e-02, 2.999999845325987e-02, 1.920000179171466e-02, 1.080000077903223e-02, 4.800000453293242e-03, 1.200000116005526e-03, 1.032702569292443e-17, 1.200000116005526e-03, 4.800000453293242e-03, 1.080000077903223e-02, 1.920000179171472e-02, 2.999999845325993e-02, 4.320000308394404e-02, 5.88000002038471e-02, 7.680000712393652e-02, 9.71999911570721e-02, 1.199999937772858e-01, 1.452000008010831e-01, 1.728000122713828e-01, 2.02800020666073e-01, 2.352000008010876e-01, 2.69999989414196e-01, 3.072000284098954e-01, 3.467999922227889e-01, 3.887999644565866e-01, 4.332000126456979e-01, 4.799999750376005e-01, 5.29200050654218e-01, 5.808000031757329e-01, 6.347999939490026e-01, 6.912000489568345e-01, 7.5e-01, 8.112000824354977e-01, 8.747999571513657e-01, 9.408000031757332e-01, 1.009200035199963e+00, 1.079999957370436e+00, 1.153200012645734e+00, 1.228800113467772e+00, 1.306799904279838e+00, 1.387199968805463e+00, 1.470000078820985e+00, 1.55519985748358e+00, 1.642799931259248e+00, 1.732800050468395e+00, 1.825200095901733e+00, 1.919999900007584e+00, 2.017200028409789e+00, 2.11680020230189e+00, 2.218799994259122e+00, 2.323200012645662e+00, 2.430000195788659e+00, 2.539199975595567e+00, 2.650800003175733e+00, 2.764800195569625e+00, 2.881199963226208e+00, 3e+00] +der(y)=[6.405605316162109e+01, 5.577163742675472e+01, 4.875805981778367e+01, 4.297028414104632e+01, 3.834707308892477e+01, 3.469483585141378e+01, 3.150501708483472e+01, 2.822493511550163e+01, 2.509272017167626e+01, 2.224439146732773e+01, 1.966079948357195e+01, 1.732304894037302e+01, 1.521315289636173e+01, 1.331403933532319e+01, 1.160950337227094e+01, 1.008420077392708e+01, 8.723600887820458e+00, 7.513994172522331e+00, 6.442451729268215e+00, 5.496796876141129e+00, 4.665598908306867e+00, 3.938141205183744e+00, 3.304390599525021e+00, 2.754989561543979e+00, 2.281224675652815e+00, 1.875e+00, 1.5288240262695e+00, 1.235778102454968e+00, 9.998657348379115e-01, 8.314751239271043e-01, 6.682409748126159e-01, 5.077762971152959e-01, 3.692103652328362e-01, 2.600701883253083e-01, 1.787313477987752e-01, 1.202073784266705e-01, 7.915787204041136e-02, 5.097419794442885e-02, 3.201468717722075e-02, 1.953044782125352e-02, 1.150521080517397e-02, 6.491149853964445e-03, 3.466985387769241e-03, 1.724048132552592e-03, 7.787545702545912e-04, 3.075091303402436e-04, 9.956460930444998e-05, 2.34542524654322e-05, 3.076927407441198e-06, 9.601926541539834e-08, 6.610982551888651e-24, -9.598076819577806e-08, -3.067072575081095e-06, -2.320168572952152e-05, -9.704179415454639e-05, -2.924719685073928e-04, -7.140976039231099e-04, -1.50213247990213e-03, -2.821155431344172e-03, -4.834142148058508e-03, -7.656188211336404e-03, -1.128123445250229e-02, -1.547442492161454e-02, -1.962326082983969e-02, -2.254609006491906e-02, -2.227608616717095e-02, -1.589826636745392e-02, 3.207696827624076e-04, 2.988074798125587e-02, 7.273248227821921e-02, 1.183096270801029e-01, 1.412622633727916e-01, 1.386676598777999e-01, 1.804289415549271e-01, 2.536135782839816e-01, 3.515625e-01, 4.811376889607761e-01, 6.507174741128134e-01, 8.704557725701771e-01, 1.152568016065676e+00, 1.511653907506983e+00, 1.965060831115935e+00, 2.533275352010005e+00, 3.240364496722799e+00, 4.114468712183483e+00, 5.188321834736101e+00, 6.499835372023211e+00, 8.092751637920241e+00, 1.001731402786547e+01, 1.233103262229888e+01, 1.509949221160043e+01, 1.839726960119933e+01, 2.230883592709701e+01, 2.692650252721101e+01, 3.148662642085429e+01, 3.343012676957797e+01, 3.35058557101053e+01, 3.351870351443302e+01, 3.439015363699291e+01, 3.641614674760179e+01, 3.964925765991211e+01] +d2y=[-4.469961853027344e+02, -3.8200631792451e+02, -3.197010242358964e+02, -2.594958261370194e+02, -2.042460839275864e+02, -1.652352322292153e+02, -1.598863657518564e+02, -1.637177943595101e+02, -1.493614232057481e+02, -1.356365251529127e+02, -1.22879989983978e+02, -1.110451824338083e+02, -1.000865300268531e+02, -8.99597198263275e+01, -8.062155406440824e+01, -7.203000372816582e+01, -6.414412421702804e+01, -5.692420062878904e+01, -5.033165432261729e+01, -4.432900484448965e+01, -3.887999494984308e+01, -3.394949354164393e+01, -2.95034880435661e+01, -2.550916461513993e+01, -2.193485204097556e+01, -1.875e+01, -1.592524958778094e+01, -1.343180459857621e+01, -9.658030105564887e+00, -7.976858125427383e+00, -8.273711136910856e+00, -7.593859930812232e+00, -6.205518118046287e+00, -4.727146378867317e+00, -3.450616539405448e+00, -2.4470557897898e+00, -1.696438633273655e+00, -1.152192580008031e+00, -7.66524106082713e-01, -4.985622304231652e-01, -3.159078146632004e-01, -1.939142158837522e-01, -1.14335466819569e-01, -6.393442191696577e-02, -3.325281249098489e-02, -1.560044850820493e-02, -6.270030196913589e-03, -1.96083165666936e-03, -3.849853929093025e-04, -2.400770169389828e-05, -8.258571235729428e-21, -2.399230394415197e-05, -3.830144519890017e-04, -1.927156190076522e-03, -6.0177483697154e-03, -1.439747601376745e-02, -2.894235470934874e-02, -5.125360486853771e-02, -8.20445780101771e-02, -1.20273471289396e-01, -1.619694022160929e-01, -1.987016664698464e-01, -2.156742501709378e-01, -1.895496531120739e-01, -8.650319390348724e-02, 1.378361822590159e-01, 5.317762537571297e-01, 1.121800303971648e+00, 1.839810214602005e+00, 2.364862708403507e+00, 1.961236891775977e+00, 1.965237628833684e-01, 4.45530820754547e-01, 3.137203721689259e+00, 4.226892672589787e+00, 5.625e+00, 7.402118243653302e+00, 9.640259027461614e+00, 1.243508302653555e+01, 1.589748900215657e+01, 2.015538619769792e+01, 2.535562381367119e+01, 3.166594056473852e+01, 3.927714610136751e+01, 4.840551789104508e+01, 5.929510454192263e+01, 7.22203934513127e+01, 8.748921189976799e+01, 1.054454134624021e+02, 1.26472132280755e+02, 1.50994933825145e+02, 1.794855457887564e+02, 2.12465089217175e+02, 2.487325819951651e+02, 1.732951121707655e+02, 3.29716495208387e+01, -9.304643584991782e+00, 1.784187122517591e+01, 7.144218680322832e+01, 1.314518160634621e+02, 1.917873687744141e+02] +d3y=[3.34023828125e+03, 3.171503787192291e+03, 3.06584653473733e+03, 2.935456809446373e+03, 2.499114524156249e+03, 1.218708844524104e+03, -5.348612927441632e+02, 5.86021861012073e+02, 7.11244878947701e+02, 6.616416189608075e+02, 6.143999970852574e+02, 5.694624653288226e+02, 5.267711991341381e+02, 4.862687801292428e+02, 4.478975604278878e+02, 4.116000272524078e+02, 3.773183780561105e+02, 3.449951678623683e+02, 3.145728361672234e+02, 2.859935847524235e+02, 2.591999815134662e+02, 2.341344197651204e+02, 2.107391941048809e+02, 1.889567800092371e+02, 1.687296177090378e+02, 1.5e+02, 1.327104124156258e+02, 1.175520583953652e+02, 2.133902602021867e+02, -1.145560399804212e+01, 5.067784881856048e+00, 5.796048180133847e+01, 7.544504602302619e+01, 7.011011297481546e+01, 5.706001780549864e+01, 4.351242845250468e+01, 3.195593773941037e+01, 2.287262922541901e+01, 1.603564424258151e+01, 1.102976348259918e+01, 7.439878031156201e+00, 4.910350075521245e+00, 3.156807213997438e+00, 1.9612738807139e+00, 1.161986321876149e+00, 6.420002884144987e-01, 3.182234401263814e-01, 1.315633750532028e-01, 3.857243348138587e-02, 4.802694935323731e-03, 8.260265301623937e-18, -4.79730583604954e-03, -3.822751624374864e-02, -1.276345640722392e-01, -2.961487671707481e-01, -5.577922836021508e-01, -9.105439720231261e-01, -1.327242123182466e+00, -1.744145340693257e+00, -2.046926658463791e+00, -2.05400564796524e+00, -1.497780379786569e+00, -6.783511583173023e-03, 2.90058112161296e+00, 7.778023374394761e+00, 1.507678204474069e+01, 2.459270077293258e+01, 3.397365044930255e+01, 3.535616299259941e+01, 1.077551298467503e+01, -5.793499191490029e+01, -9.277612234471736e+01, 1.620885062985686e+02, 4.865819863359699e+01, 6.164218602278236e+01, 7.875e+01, 9.964389747758669e+01, 1.249663251222048e+02, 1.554385336972416e+02, 1.918662446391309e+02, 2.351461850973711e+02, 2.862731803603941e+02, 3.463462080690865e+02, 4.165757993903622e+02, 4.982920832691168e+02, 5.929510502288747e+02, 7.021427182051264e+02, 8.276006448722734e+02, 9.712077156926343e+02, 1.135006234459532e+03, 1.321205693888773e+03, 1.5321936846883e+03, 1.770542449904552e+03, 1.202570956792146e+03, -7.936155017402595e+03, -4.717116268353446e+03, 7.307730756098408e+01, 2.272855596676352e+03, 2.930916737510727e+03, 3.026197748066869e+03, 3.00696044921875e+03] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Utilities_Psychrometrics_Functions_BaseClasses_Examples_SaturationPressureDerivativeCheck.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Utilities_Psychrometrics_Functions_BaseClasses_Examples_SaturationPressureDerivativeCheck.txt index 6ece14e2ff..494e885996 100644 --- a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Utilities_Psychrometrics_Functions_BaseClasses_Examples_SaturationPressureDerivativeCheck.txt +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Utilities_Psychrometrics_Functions_BaseClasses_Examples_SaturationPressureDerivativeCheck.txt @@ -1,11 +1,11 @@ -last-generated=2016-03-15 +last-generated=2022-05-19 statistics-simulation= { - "numerical Jacobians": "0", - "nonlinear": " ", - "number of continuous time states": "1", - "linear": " " + "linear": " ", + "nonlinear": " ", + "number of continuous time states": "1", + "numerical Jacobians": "0" } -y=[0.03226286172866821289, 0.07858306324665023657, 0.1766820819340704507, 0.37002757241603811966, 0.72746747528858746179, 1.35149781468546548169, 2.38633650739464808765, 4.02460344084558929723, 6.51138736798267103723, 10.14460319099708662804, 15.27072226337863014578, 22.2756120863405371324, 31.57070431140159882943, 43.57486238974464498597, 58.69349835530860559629, 77.29606194737672808515, 99.69397096108089328936, 126.11977362982875661146, 156.70996837318617167512, 191.49257785543542809137, 230.37897070389448117567, 273.16231657137007005076, 319.52185634684701653896, 369.03127439114319940927, 421.17286199856670236841, 475.355560302734375, 530.93392993332145124441, 587.66152258044860445807, 640.03954499651172227459, 688.28866478553948127228, 735.29475243075057733222, 780.24736498953222962882, 822.76510494576257315202, 862.53113472447228105011, 899.29680126279379237531, 932.88295341936998283927, 963.17871262408175425662, 990.13951414738698986184, 1013.78295299484614133689, 1034.18383675033919644193, 1051.46863023743480880512, 1065.80908656008773505164, 1077.41589166461585591605, 1086.53222679313012122293, 1093.42748941959530384338, 1098.39196806693144026212, 1101.73083471384597942233, 1103.76037587043811072363, 1104.8039550456014694646, 1105.18859862833778606728, 1105.2435302734375, 1105.29846191853721393272, 1105.68334964192581537645, 1106.72839366113930736901, 1108.76611352986947167665, 1112.13269013319222722203, 1117.17175376083832816221, 1124.23791480170211798395, 1133.70190627687725282158, 1145.95653815156651944562, 1161.42443596417933804332, 1180.56579718380544363754, 1203.88953336180611586315, 1231.964736557826427088, 1265.43505646004336995247, 1305.03610763082565426885, 1351.61537475078466741252, 1406.15660584173679126252, 1469.80903367649807478301, 1543.92299296077226244961, 1630.09189169981641498453, 1730.20527194502187739999, 1846.51087941629316446779, 1981.69342158794916031184, 2138.96908649853321549017, 2322.2021484375, 2536.04954013159795067622, 2786.13667737084006148507, 3079.28072449750106898136, 3423.75764092060853727162, 3829.63864372583429940278, 4309.21374501336231332971, 4877.49898524083437223453, 5552.88332887657270475756, 6357.9303553785839540069, 7320.35610724308844510233, 8474.2589684406830201624, 9861.65358522957831155509, 11534.33292329456708102953, 13556.21613018908828962594, 16006.21424487878903164528, 18981.81369505791008123197, 22603.40768305691744899377, 27019.67431874941757996567, 32414.20848007762106135488, 39013.46589996075636008754, 47096.55910140355990733951, 57007.21227087878651218489, 69167.91316744957293849438, 84097.18769469257676973939, 102430.3828125] -y_comp=[0.03226286172866821289, 0.07858307069719530635, 0.17668208193415038676, 0.37002760221834274379, 0.72746747528858746179, 1.35149781468546548169, 2.38633650739464808765, 4.02460344084558929723, 6.51138736798267103723, 10.14460319099708662804, 15.27072226337863014578, 22.27561208632689471187, 31.57070431140159882943, 43.57486238973555003895, 58.69349835530860559629, 77.29606194737672808515, 99.69397096109453570989, 126.11977362982875661146, 156.70996837318617167512, 191.49257785543542809137, 230.37897070389448117567, 273.16231657137007005076, 319.52185634684701653896, 369.03127439114319940927, 421.17289251599930821612, 475.355560302734375, 530.93392993332145124441, 587.66152258044860445807, 640.03954499651172227459, 688.28866478553948127228, 735.29475243075057733222, 780.24736498953222962882, 822.76510494576257315202, 862.53113472447228105011, 899.29680126279379237531, 932.88295341936998283927, 963.17871262408175425662, 990.13951414738698986184, 1013.78295299484614133689, 1034.18383675033919644193, 1051.46863023743480880512, 1065.80908656008773505164, 1077.41589166461585591605, 1086.53222679313012122293, 1093.42748941959530384338, 1098.39196806693144026212, 1101.73083471384597942233, 1103.76037587043811072363, 1104.8039550456014694646, 1105.18859862833778606728, 1105.2435302734375, 1105.29846191853721393272, 1105.68334964192581537645, 1106.72839366113930736901, 1108.76611352986947167665, 1112.13269013319222722203, 1117.17187583106897363905, 1124.23791480170211798395, 1133.70190627687725282158, 1145.9566602216607407172, 1161.42443596417933804332, 1180.56579718380544363754, 1203.88953336180611586315, 1231.964736557826427088, 1265.43505646007974974054, 1305.03610763118945214956, 1351.61537475078466741252, 1406.15660584173679126252, 1469.80903367649807478301, 1543.92299296077226244961, 1630.09189169981641498453, 1730.20527194502187739999, 1846.51087941629316446779, 1981.69342158820381882833, 2138.96908649853321549017, 2322.2021484375, 2536.04954013276210389449, 2786.13667737084006148507, 3079.28096863812606898136, 3423.75764092060853727162, 3829.63864372583429940278, 4309.21374501336231332971, 4877.49898524083437223453, 5552.88381715462128340732, 6357.9308436589608390932, 7320.35610724308844510233, 8474.2589684406830201624, 9861.65358522957831155509, 11534.33292329456708102953, 13556.21710674460337031633, 16006.21522143837864859961, 18981.81369505791008123197, 22603.40768305691744899377, 27019.67431875640249927528, 32414.20848007762106135488, 39013.46589996075636008754, 47096.55910140355990733951, 57007.21227087878651218489, 69167.91316744957293849438, 84097.18769469257676973939, 102430.3828125] -time=[-1., 1.] +time=[-1e+00, 1e+00] +y=[3.226286172866821e-02, 7.858306324665024e-02, 1.766820819340705e-01, 3.700275724160381e-01, 7.274674752885875e-01, 1.351497814685465e+00, 2.386336507394648e+00, 4.024603440845589e+00, 6.511387367982671e+00, 1.014460319099709e+01, 1.527072226337863e+01, 2.227561208634054e+01, 3.15707043114016e+01, 4.357486238974464e+01, 5.869349835530861e+01, 7.729606194737673e+01, 9.969397096108089e+01, 1.261197736298288e+02, 1.567099683731862e+02, 1.914925778554354e+02, 2.303789707038945e+02, 2.731623165713701e+02, 3.19521856346847e+02, 3.690312743911432e+02, 4.211728619985667e+02, 4.753555603027344e+02, 5.309339299333215e+02, 5.876615225804486e+02, 6.400395449965117e+02, 6.882886647855395e+02, 7.352947524307506e+02, 7.802473649895322e+02, 8.227651049457626e+02, 8.625311347244723e+02, 8.992968012627938e+02, 9.3288295341937e+02, 9.631787126240818e+02, 9.90139514147387e+02, 1.013782952994846e+03, 1.034183836750339e+03, 1.051468630237435e+03, 1.065809086560088e+03, 1.077415891664616e+03, 1.08653222679313e+03, 1.093427489419595e+03, 1.098391968066931e+03, 1.101730834713846e+03, 1.103760375870438e+03, 1.104803955045601e+03, 1.105188598628338e+03, 1.105243530273438e+03, 1.105298461918537e+03, 1.105683349641926e+03, 1.106728393661139e+03, 1.108766113529869e+03, 1.112132690133192e+03, 1.117171753760838e+03, 1.124237914801702e+03, 1.133701906276877e+03, 1.145956538151567e+03, 1.161424435964179e+03, 1.180565797183805e+03, 1.203889533361806e+03, 1.231964736557826e+03, 1.265435056460043e+03, 1.305036107630826e+03, 1.351615374750785e+03, 1.406156605841737e+03, 1.469809033676498e+03, 1.543922992960772e+03, 1.630091891699816e+03, 1.730205271945022e+03, 1.846510879416293e+03, 1.981693421587949e+03, 2.138969086498533e+03, 2.3222021484375e+03, 2.536049540131598e+03, 2.78613667737084e+03, 3.079280724497501e+03, 3.423757640920609e+03, 3.829638643725834e+03, 4.309213745013362e+03, 4.877498985240834e+03, 5.552883328876573e+03, 6.357930355378584e+03, 7.320356107243088e+03, 8.474258968440683e+03, 9.861653585229578e+03, 1.153433292329457e+04, 1.355621613018909e+04, 1.600621424487879e+04, 1.898181369505791e+04, 2.260340768305692e+04, 2.701967431874942e+04, 3.241420848007762e+04, 3.901346589996076e+04, 4.709655910140356e+04, 5.700721227087879e+04, 6.916791316744957e+04, 8.409718769469258e+04, 1.024303828125e+05] +y_comp=[3.226286172866821e-02, 7.858307814781143e-02, 1.766821117363928e-01, 3.700276022183605e-01, 7.274674752885875e-01, 1.351497814685465e+00, 2.386336507394648e+00, 4.024603440845589e+00, 6.511387367982671e+00, 1.014460319099709e+01, 1.527072226337863e+01, 2.227561208632689e+01, 3.15707043114016e+01, 4.357486238973555e+01, 5.869349835530861e+01, 7.729606194737673e+01, 9.969397096109454e+01, 1.261197736299288e+02, 1.567099836319207e+02, 1.914925778554354e+02, 2.303789707038945e+02, 2.731623165713701e+02, 3.19521856346847e+02, 3.690312743911432e+02, 4.211728925159993e+02, 4.753555603027344e+02, 5.309339299333215e+02, 5.876615225804486e+02, 6.400395449965117e+02, 6.882886647855395e+02, 7.352947524307506e+02, 7.802474260246157e+02, 8.227651659807005e+02, 8.625311347245269e+02, 8.992968012627938e+02, 9.328829534195519e+02, 9.631787126240999e+02, 9.90139514147387e+02, 1.013782952994846e+03, 1.034183836750339e+03, 1.051468630237435e+03, 1.06580908655987e+03, 1.077415891664616e+03, 1.08653222679313e+03, 1.093427489419595e+03, 1.098391968066931e+03, 1.101730834713846e+03, 1.103760375870438e+03, 1.104803955045601e+03, 1.105188598628338e+03, 1.105243530273438e+03, 1.105298461918537e+03, 1.105683349641926e+03, 1.106728393661139e+03, 1.108766113529869e+03, 1.112132812203459e+03, 1.117171875831069e+03, 1.124238036871996e+03, 1.133701906276986e+03, 1.145956660221879e+03, 1.161424435964179e+03, 1.180565919254082e+03, 1.203889655431955e+03, 1.231964736557826e+03, 1.265435178530356e+03, 1.305036229701138e+03, 1.351615496820879e+03, 1.406156605841846e+03, 1.469809155746811e+03, 1.543923115031085e+03, 1.630092013770129e+03, 1.730205271945422e+03, 1.846510879416366e+03, 1.981693421588204e+03, 2.138969330638503e+03, 2.3222021484375e+03, 2.536049540132762e+03, 2.786136921511465e+03, 3.079280968638126e+03, 3.423757640920609e+03, 3.829638887866459e+03, 4.309213745013944e+03, 4.877499473520338e+03, 5.552883817157823e+03, 6.357930843658961e+03, 7.320356595522883e+03, 8.474258968447668e+03, 9.861653585231907e+03, 1.153433389985474e+04, 1.35562171067446e+04, 1.600621522144129e+04, 1.898181564817942e+04, 2.260340768306972e+04, 2.701967627187442e+04, 3.241420848007762e+04, 3.901346589998404e+04, 4.709656300763726e+04, 5.700721617712879e+04, 6.916791316744957e+04, 8.409718769469258e+04, 1.02430390625e+05] diff --git a/AixLib/Resources/ReferenceResults/Dymola/AixLib_Utilities_Sensors_Examples_ExergyMeters.txt b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Utilities_Sensors_Examples_ExergyMeters.txt new file mode 100644 index 0000000000..cd2d84490d --- /dev/null +++ b/AixLib/Resources/ReferenceResults/Dymola/AixLib_Utilities_Sensors_Examples_ExergyMeters.txt @@ -0,0 +1,11 @@ +last-generated=2022-05-19 +statistics-simulation= +{ + "linear": "0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0", + "nonlinear": "1, 1, 1, 1, 1, 1, 1, 1, 1", + "number of continuous time states": "81", + "numerical Jacobians": "0" +} +time=[0e+00, 7.2e+03] +calcExergyDestructionLoss_1.y=[-2.809915161132812e+01, 8.47181396484375e+02, 4.796566162109375e+02, 3.260004272460938e+02, 2.576920166015625e+02, 2.231594696044922e+02, 2.021144409179688e+02, 1.834994201660156e+02, 1.646245269775391e+02, 1.443641510009766e+02, 1.229949111938477e+02, 9.982244873046875e+01, 7.537297821044922e+01, 5.028591156005859e+01, 2.531649398803707e+01, -2.157377898693085e-01, -2.555892372131348e+01, -5.01982421875e+01, -7.373641204833984e+01, -9.586761474609375e+01, -1.160231552124023e+02, -1.338829345703125e+02, -1.495463104248047e+02, -1.624952392578125e+02, -1.721825408935547e+02, -1.784967346191406e+02, -1.819301452636719e+02, -1.822144012451172e+02, -1.79369140625e+02, -1.734698181152344e+02, -1.644579925537109e+02, -1.525889282226562e+02, -1.380698547363281e+02, -1.211239776611328e+02, -1.020287704467773e+02, -8.110501861572266e+01, -5.866793060302734e+01, -3.503179931640625e+01, -1.054138469696045e+01, 1.443301105499268e+01, 3.952675247192383e+01, 6.436393737792969e+01, 8.857762145996094e+01, 1.11791618347168e+02, 1.336641693115234e+02, 1.538517761230469e+02, 1.720440216064453e+02, 1.879901733398438e+02, 2.013853607177734e+02, 2.119829406738281e+02, 2.196073913574219e+02, 2.241714935302734e+02, 2.255471496582031e+02, 2.236181335449219e+02, 2.184808349609374e+02, 2.101358032226562e+02, 1.986631622314452e+02, 1.842591400146484e+02, 1.671931915283203e+02, 1.477256927490234e+02, 1.265347747802734e+02, 1.037881927490234e+02, 7.932408905029297e+01, 5.379601287841797e+01, 2.764523315429688e+01, 1.357666254043579e+00, -2.461800003051758e+01, -4.983815765380859e+01, -7.405979156494141e+01, -9.668334197998047e+01, -1.17383056640625e+02, -1.358478393554688e+02, -1.519288024902344e+02, -1.651790161132812e+02, -1.750903778076172e+02, -1.818320770263672e+02, -1.8538330078125e+02, -1.857389221191406e+02, -1.828680572509766e+02, -1.768624725341797e+02, -1.678009490966797e+02, -1.558663330078125e+02, -1.412315521240234e+02, -1.241742324829102e+02, -1.049456329345703e+02, -8.383344268798828e+01, -6.118498992919922e+01, -3.733578109741211e+01, -1.264315319061279e+01, 1.252662086486816e+01, 3.778979110717773e+01, 6.278577423095703e+01, 8.714192199707031e+01, 1.104809799194336e+02, 1.324539337158203e+02, 1.527316284179688e+02, 1.710111999511719e+02, 1.86972900390625e+02, 2.0039208984375e+02, 2.110257720947266e+02, 2.187105255126953e+02] +calcExergyDestructionLoss_2.y=[-2.809915161132812e+01, 8.622514038085938e+02, 4.989183654785156e+02, 3.490438232421875e+02, 2.845926513671875e+02, 2.541740570068359e+02, 2.360304107666016e+02, 2.205071563720703e+02, 2.044441070556641e+02, 1.865298004150391e+02, 1.669261016845703e+02, 1.448824615478516e+02, 1.208854904174805e+02, 9.552924346923828e+01, 6.958940124511714e+01, 4.241501617431641e+01, 1.481691932678223e+01, -1.261092090606689e+01, -3.937111282348633e+01, -6.505409240722656e+01, -8.896519470214844e+01, -1.106668548583984e+02, -1.301229095458984e+02, -1.46681640625e+02, -1.597450103759766e+02, -1.691152648925781e+02, -1.752163391113281e+02, -1.777585296630859e+02, -1.767468414306641e+02, -1.722724761962891e+02, -1.642881011962891e+02, -1.531078643798828e+02, -1.389845581054688e+02, -1.222003936767578e+02, -1.031001510620117e+02, -8.205540466308594e+01, -5.942817687988281e+01, -3.557367324829102e+01, -1.085197257995605e+01, 1.43596658706665e+01, 3.970915222167969e+01, 6.485508728027344e+01, 8.946418762207031e+01, 1.132248611450195e+02, 1.358383483886719e+02, 1.570177612304688e+02, 1.765024719238281e+02, 1.940748901367188e+02, 2.094540405273438e+02, 2.224116821289062e+02, 2.327558898925781e+02, 2.403565216064453e+02, 2.450279388427734e+02, 2.465868682861328e+02, 2.45028823852539e+02, 2.402498168945312e+02, 2.321867065429687e+02, 2.209736175537109e+02, 2.067260437011719e+02, 1.89601806640625e+02, 1.701785430908203e+02, 1.485802307128906e+02, 1.245701065063477e+02, 9.878471374511719e+01, 7.168146514892578e+01, 4.376366424560547e+01, 1.554234027862549e+01, -1.246404647827148e+01, -3.990685653686523e+01, -6.6071044921875e+01, -9.050305938720703e+01, -1.12770133972168e+02, -1.325677947998047e+02, -1.494968566894531e+02, -1.627771301269531e+02, -1.725706481933594e+02, -1.787881622314453e+02, -1.813877563476562e+02, -1.803478851318359e+02, -1.757490539550781e+02, -1.677048492431641e+02, -1.564477233886719e+02, -1.422055358886719e+02, -1.253022308349609e+02, -1.060629348754883e+02, -8.482801818847656e+01, -6.198830795288086e+01, -3.791233825683594e+01, -1.298471164703369e+01, 1.242741680145264e+01, 3.796009063720703e+01, 6.3273681640625e+01, 8.803018951416016e+01, 1.119176712036133e+02, 1.346383209228516e+02, 1.559082641601562e+02, 1.754772338867188e+02, 1.930710906982422e+02, 2.084809417724609e+02, 2.214705505371094e+02, 2.318709411621094e+02] diff --git a/AixLib/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Examples_DryCoilEffectivenessNTUPControl.txt b/AixLib/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Examples_DryCoilEffectivenessNTUPControl.txt deleted file mode 100644 index d5e56c2051..0000000000 --- a/AixLib/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Examples_DryCoilEffectivenessNTUPControl.txt +++ /dev/null @@ -1,24 +0,0 @@ -last-generated=2017-12-05 -statistics-initialization= -{ - "nonlinear": "0, 0, 1", - "numerical Jacobians": "0" -} -statistics-simulation= -{ - "linear": " ", - "nonlinear": "0", - "number of continuous time states": "4", - "numerical Jacobians": "0" -} -P.u_s=[3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02] -P.u_m=[2.931499938964844e+02, 2.974214172363281e+02, 2.991560363769531e+02, 2.999032287597656e+02, 3.00038330078125e+02, 3.001161193847656e+02, 3.00136962890625e+02, 3.001456604003906e+02, 3.001484375e+02, 3.001494445800781e+02, 3.001498107910156e+02, 3.001499328613281e+02, 3.001499633789062e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 2.960334167480469e+02, 2.954539794921875e+02, 2.953346557617188e+02, 2.952474975585938e+02, 2.952000122070312e+02, 2.951759643554688e+02, 2.951635437011719e+02, 2.951570739746094e+02, 2.951536865234375e+02, 2.951519165039062e+02, 2.951510009765625e+02, 2.951505126953125e+02, 2.951502685546875e+02, 2.95150146484375e+02, 2.951500854492188e+02, 2.951500244140625e+02, 2.951500244140625e+02, 2.951500244140625e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02] -time=[0e+00, 3.6e+03] -hex.sta_a2.T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02] -hex.sta_b1.T=[3.224120178222656e+02, 3.05165283203125e+02, 3.077429809570312e+02, 3.085578918457031e+02, 3.087305297851562e+02, 3.088185729980469e+02, 3.088434448242188e+02, 3.088534545898438e+02, 3.088567199707031e+02, 3.0885791015625e+02, 3.088583068847656e+02, 3.088584594726562e+02, 3.088585205078125e+02, 3.088585205078125e+02, 3.088585205078125e+02, 3.088585205078125e+02, 3.088585205078125e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.088585510253906e+02, 3.015624389648438e+02, 2.990970764160156e+02, 2.9849072265625e+02, 2.980428771972656e+02, 2.977993774414062e+02, 2.976760559082031e+02, 2.976123352050781e+02, 2.975791320800781e+02, 2.975618286132812e+02, 2.975527954101562e+02, 2.97548095703125e+02, 2.97545654296875e+02, 2.975443725585938e+02, 2.97543701171875e+02, 2.975433349609375e+02, 2.975431518554688e+02, 2.975430603027344e+02, 2.975430297851562e+02, 2.975429992675781e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02, 2.9754296875e+02] -hex.sta_b2.T=[3.122243957519531e+02, 2.973275451660156e+02, 2.992330932617188e+02, 2.99900390625e+02, 3.000435180664062e+02, 3.001167297363281e+02, 3.001374206542969e+02, 3.001457824707031e+02, 3.001484680175781e+02, 3.001494750976562e+02, 3.001498107910156e+02, 3.001499328613281e+02, 3.001499633789062e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 3.001499938964844e+02, 2.959868774414062e+02, 2.954497985839844e+02, 2.953316955566406e+02, 2.952456970214844e+02, 2.951990966796875e+02, 2.951755065917969e+02, 2.951632995605469e+02, 2.951569213867188e+02, 2.951536254882812e+02, 2.951518859863281e+02, 2.951509704589844e+02, 2.951505126953125e+02, 2.951502685546875e+02, 2.95150146484375e+02, 2.951500854492188e+02, 2.951500244140625e+02, 2.951500244140625e+02, 2.951500244140625e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02, 2.951499938964844e+02] -hex.sta_a1.T=[3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02, 3.331499938964844e+02] -hex.Q1_flow=[-2.03193328125e+05, -4.450192578125e+04, -6.480125390625e+04, -7.19096796875e+04, -7.3434296875e+04, -7.42142109375e+04, -7.4434765625e+04, -7.45236796875e+04, -7.45524375e+04, -7.45630546875e+04, -7.4566734375e+04, -7.45679765625e+04, -7.45684453125e+04, -7.45686015625e+04, -7.456865625e+04, -7.4568671875e+04, -7.45686796875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -7.45686875e+04, -3.022030859375e+04, -2.4499103515625e+04, -2.3240806640625e+04, -2.23246484375e+04, -2.1828345703125e+04, -2.1576943359375e+04, -2.144696875e+04, -2.1379201171875e+04, -2.13438671875e+04, -2.132544140625e+04, -2.13158359375e+04, -2.1310818359375e+04, -2.1308201171875e+04, -2.1306833984375e+04, -2.1306119140625e+04, -2.1305748046875e+04, -2.1305552734375e+04, -2.1305453125e+04, -2.130540234375e+04, -2.1305373046875e+04, -2.130535546875e+04, -2.130534765625e+04, -2.130534375e+04, -2.1305341796875e+04, -2.1305341796875e+04, -2.1305341796875e+04, -2.1305341796875e+04, -2.1305341796875e+04, -2.130533984375e+04, -2.130533984375e+04, -2.130533984375e+04, -2.130533984375e+04, -2.130533984375e+04, -2.130533984375e+04, -2.130533984375e+04, -2.130533984375e+04, -2.130533984375e+04, -2.130533984375e+04, -2.130533984375e+04, -2.130533984375e+04, -2.130533984375e+04, -2.130533984375e+04, -2.130533984375e+04, -2.130533984375e+04, -2.130533984375e+04, -2.130533984375e+04, -2.130533984375e+04, -2.130533984375e+04, -2.130533984375e+04, -2.130533984375e+04] -hex.Q2_flow=[2.03193328125e+05, 4.450192578125e+04, 6.480125390625e+04, 7.19096796875e+04, 7.3434296875e+04, 7.42142109375e+04, 7.4434765625e+04, 7.45236796875e+04, 7.45524375e+04, 7.45630546875e+04, 7.4566734375e+04, 7.45679765625e+04, 7.45684453125e+04, 7.45686015625e+04, 7.456865625e+04, 7.4568671875e+04, 7.45686796875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 7.45686875e+04, 3.022030859375e+04, 2.4499103515625e+04, 2.3240806640625e+04, 2.23246484375e+04, 2.1828345703125e+04, 2.1576943359375e+04, 2.144696875e+04, 2.1379201171875e+04, 2.13438671875e+04, 2.132544140625e+04, 2.13158359375e+04, 2.1310818359375e+04, 2.1308201171875e+04, 2.1306833984375e+04, 2.1306119140625e+04, 2.1305748046875e+04, 2.1305552734375e+04, 2.1305453125e+04, 2.130540234375e+04, 2.1305373046875e+04, 2.130535546875e+04, 2.130534765625e+04, 2.130534375e+04, 2.1305341796875e+04, 2.1305341796875e+04, 2.1305341796875e+04, 2.1305341796875e+04, 2.1305341796875e+04, 2.130533984375e+04, 2.130533984375e+04, 2.130533984375e+04, 2.130533984375e+04, 2.130533984375e+04, 2.130533984375e+04, 2.130533984375e+04, 2.130533984375e+04, 2.130533984375e+04, 2.130533984375e+04, 2.130533984375e+04, 2.130533984375e+04, 2.130533984375e+04, 2.130533984375e+04, 2.130533984375e+04, 2.130533984375e+04, 2.130533984375e+04, 2.130533984375e+04, 2.130533984375e+04, 2.130533984375e+04, 2.130533984375e+04, 2.130533984375e+04] -hex.m2_flow=[1.05e+01, 1.05e+01] -hex.m1_flow=[4.522670269012451e+00, 3.800723254680634e-01, 6.095899343490601e-01, 6.988758444786072e-01, 7.187387943267822e-01, 7.290006279945374e-01, 7.319151163101196e-01, 7.330915927886963e-01, 7.334723472595215e-01, 7.336129546165466e-01, 7.336616516113281e-01, 7.336781620979309e-01, 7.336843013763428e-01, 7.336864471435547e-01, 7.336871027946472e-01, 7.336873412132263e-01, 7.336874008178711e-01, 7.336874604225159e-01, 7.336875200271606e-01, 7.336875200271606e-01, 7.336875200271606e-01, 7.336875200271606e-01, 7.336875200271606e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 7.336875796318054e-01, 2.286605387926102e-01, 1.719507128000259e-01, 1.602654457092285e-01, 1.519839018583297e-01, 1.475815773010254e-01, 1.453747004270554e-01, 1.442399173974991e-01, 1.436499208211899e-01, 1.433427482843399e-01, 1.43182709813118e-01, 1.430992931127548e-01, 1.430557519197464e-01, 1.430330276489258e-01, 1.430211514234543e-01, 1.430149674415588e-01, 1.430117189884186e-01, 1.430100351572037e-01, 1.430091708898544e-01, 1.430087238550186e-01, 1.430084705352783e-01, 1.430083215236664e-01, 1.430082619190216e-01, 1.430082321166992e-01, 1.43008217215538e-01, 1.43008217215538e-01, 1.43008217215538e-01, 1.430082023143768e-01, 1.430082023143768e-01, 1.430082023143768e-01, 1.430082023143768e-01, 1.430082023143768e-01, 1.430081874132156e-01, 1.430081874132156e-01, 1.430081874132156e-01, 1.430081874132156e-01, 1.430081874132156e-01, 1.430081874132156e-01, 1.430081874132156e-01, 1.430081874132156e-01, 1.430081874132156e-01, 1.430081874132156e-01, 1.430081874132156e-01, 1.430081874132156e-01, 1.430081874132156e-01, 1.430081874132156e-01, 1.430081874132156e-01, 1.430081874132156e-01, 1.430081874132156e-01, 1.430081874132156e-01, 1.430081874132156e-01] diff --git a/AixLib/Resources/Scripts/Conversion/ConvertIBPSA_from_3.0_to_4.0.mos b/AixLib/Resources/Scripts/Conversion/ConvertIBPSA_from_3.0_to_4.0.mos new file mode 100644 index 0000000000..7418fe7845 --- /dev/null +++ b/AixLib/Resources/Scripts/Conversion/ConvertIBPSA_from_3.0_to_4.0.mos @@ -0,0 +1,188 @@ +// Conversion script for AixLib library +// from: Version 3.0 +// to: Version 4.0 +clear + +convertClear(); + +// Conversion for https://github.com/ibpsa/modelica-ibpsa/issues/1542 +convertClass("AixLib.Airflow.Multizone.MediumColumnDynamic", {"massDynamics"}, fill("",0), true); +convertClass("AixLib.Fluid.Actuators.Valves.ThreeWayEqualPercentageLinear", {"massDynamics"}, fill("",0), true); +convertClass("AixLib.Fluid.Actuators.Valves.ThreeWayLinear", {"massDynamics"}, fill("",0), true); +convertClass("AixLib.Fluid.Actuators.Valves.ThreeWayTable", {"massDynamics"}, fill("",0), true); +convertClass("AixLib.Fluid.HeatExchangers.Radiators.RadiatorEN442_2", {"massDynamics"}, fill("",0), true); +convertClass("AixLib.Fluid.Movers.FlowControlled_dp", {"massDynamics"}, fill("",0), true); +convertClass("AixLib.Fluid.Movers.FlowControlled_m_flow", {"massDynamics"}, fill("",0), true); +convertClass("AixLib.Fluid.Movers.SpeedControlled_Nrpm", {"massDynamics"}, fill("",0), true); +convertClass("AixLib.Fluid.Movers.SpeedControlled_y", {"massDynamics"}, fill("",0), true); +convertClass("AixLib.Fluid.Storage.Stratified", {"massDynamics"}, fill("",0), true); +convertClass("AixLib.Fluid.Storage.StratifiedEnhanced", {"massDynamics"}, fill("",0), true); +convertClass("AixLib.Fluid.Storage.StratifiedEnhancedInternalHex", {"massDynamics"}, fill("",0), true); +convertClass("AixLib.Fluid.HeatExchangers.EvaporatorCondenser", {"massDynamics"}, fill("",0), true); +convertClass("AixLib.Fluid.HeatExchangers.HeaterCooler_u", {"massDynamics"}, fill("",0), true); +convertClass("AixLib.Fluid.Humidifiers.Humidifier_u", {"massDynamics"}, fill("",0), true); +convertClass("AixLib.Fluid.Interfaces.TwoPortHeatMassExchanger", {"massDynamics"}, fill("",0), true); +convertClass("AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.BaseClasses.InternalHEXOneUTube", {"massDynamics"}, fill("",0), true); +convertClass("AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.BaseClasses.InternalHEXTwoUTube", {"massDynamics"}, fill("",0), true); +convertClass("AixLib.Fluid.HeatExchangers.PrescribedOutlet", {"massDynamics"}, fill("",0), true); +convertClass("AixLib.Fluid.Interfaces.PrescribedOutlet", {"massDynamics"}, fill("",0), true); +convertClass("AixLib.ThermalZones.ReducedOrder.RC.FourElements", {"massDynamics"}, fill("",0), true); +convertClass("AixLib.ThermalZones.ReducedOrder.RC.OneElement", {"massDynamics"}, fill("",0), true); +convertClass("AixLib.ThermalZones.ReducedOrder.RC.ThreeElements", {"massDynamics"}, fill("",0), true); +convertClass("AixLib.ThermalZones.ReducedOrder.RC.TwoElements", {"massDynamics"}, fill("",0), true); +convertClass("AixLib.Fluid.HeatExchangers.ActiveBeams.Cooling", {"massDynamics"}, fill("",0), true); +convertClass("AixLib.Fluid.HeatExchangers.ActiveBeams.CoolingAndHeating", {"massDynamics"}, fill("",0), true); +convertClass("AixLib.Fluid.HeatExchangers.WetCoilEffectivenessNTU", {"massDynamics"}, fill("",0), true); +convertClass("AixLib.Fluid.Delays.DelayFirstOrder", {"massDynamics"}, fill("",0), true); + +convertClass("AixLib.Fluid.Storage.StratifiedEnhancedInternalHex", {"massDynamicsHex"}, fill("",0), true); + +convertElement("AixLib.Fluid.Humidifiers.SteamHumidifier_X", + "massDynamics", + "energyDynamics"); +convertElement("AixLib.Fluid.Humidifiers.SprayAirWasher_X", + "massDynamics", + "energyDynamics"); + +// Conversion for https://github.com/ibpsa/modelica-ibpsa/issues/1522 +convertClass("AixLib.Controls.Continuous.PIDHysteresisTimer", + "AixLib.Obsolete.Controls.Continuous.PIDHysteresisTimer"); +convertClass("AixLib.Controls.Continuous.PIDHysteresis", + "AixLib.Obsolete.Controls.Continuous.PIDHysteresis"); + +// Conversion for https://github.com/ibpsa/modelica-ibpsa/issues/1477 +convertModifiers("AixLib.BoundaryConditions.SolarGeometry.IncidenceAngle", {"lat"}, fill("",0), true); +convertModifiers("AixLib.BoundaryConditions.SolarGeometry.BaseClasses.IncidenceAngle", {"lat"}, fill("",0), true); +convertModifiers("AixLib.BoundaryConditions.SolarGeometry.ZenithAngle", {"lat"}, fill("",0), true); +convertModifiers("AixLib.BoundaryConditions.SolarIrradiation.DiffusePerez", {"lat"}, fill("",0), true); +convertModifiers("AixLib.BoundaryConditions.SolarIrradiation.DirectTiltedSurface", {"lat"}, fill("",0), true); + +// Refactoring for https://github.com/ibpsa/modelica-ibpsa/issues/1494 +convertClass("AixLib.Fluid.FixedResistances.PlugFlowPipe", + "AixLib.Obsolete.Fluid.FixedResistances.PlugFlowPipe"); +convertClass("AixLib.Fluid.FixedResistances.BaseClasses.PlugFlowCore", + "AixLib.Obsolete.Fluid.FixedResistances.BaseClasses.PlugFlowCore"); + +// Conversion for https://github.com/ibpsa/modelica-ibpsa/issues/1498 +convertClass("AixLib.Utilities.Math.Polynominal", + "AixLib.Utilities.Math.Polynomial"); +convertClass("AixLib.Utilities.Math.Examples.Polynominal", + "AixLib.Utilities.Math.Examples.Polynomial"); + +// Conversion for https://github.com/ibpsa/modelica-ibpsa/issues/1498 +convertModifiers("AixLib.Fluid.Movers.FlowControlled_dp", + {"y_start"}, fill("",0), true); +convertModifiers("AixLib.Fluid.Movers.FlowControlled_m_flow", + {"y_start"}, fill("",0), true); + +// Conversion for https://github.com/ibpsa/modelica-ibpsa/issues/1365 +convertModifiers("AixLib.Controls.Continuous.LimPID", {"reverseAction"}, {"reverseActing=not %reverseAction%"}); +convertModifiers("AixLib.Controls.Continuous.PIDHysteresis", {"reverseAction"}, {"reverseActing=not %reverseAction%"}); +convertModifiers("AixLib.Controls.Continuous.PIDHysteresisTimer", {"reverseAction"}, {"reverseActing=not %reverseAction%"}); + + +// Conversion for https://github.com/ibpsa/modelica-ibpsa/issues/1362 +convertModifiers("AixLib.Airflow.Multizone.BaseClasses.PowerLawResistance", {"m_flow_small"}, fill("",0), true); +convertModifiers("AixLib.Airflow.Multizone.BaseClasses.TwoWayFlowElement", {"m1_flow_small", "m2_flow_small"}, fill("",0), true); +convertModifiers("AixLib.Airflow.Multizone.EffectiveAirLeakageArea", {"m_flow_small"}, fill("",0), true); +convertModifiers("AixLib.Airflow.Multizone.Orifice", {"m_flow_small"}, fill("",0), true); +convertModifiers("AixLib.Airflow.Multizone.DoorDiscretizedOpen", {"m1_flow_small", "m2_flow_small"}, fill("",0), true); +convertModifiers("AixLib.Airflow.Multizone.DoorDiscretizedOperable", {"m1_flow_small", "m2_flow_small"}, fill("",0), true); +convertModifiers("AixLib.Airflow.Multizone.ZonalFlow_ACS", {"m1_flow_small", "m2_flow_small"}, fill("",0), true); +convertModifiers("AixLib.Airflow.Multizone.ZonalFlow_m_flow", {"m1_flow_small", "m2_flow_small"}, fill("",0), true); + +convertClass("AixLib.Fluid.Sources.FixedBoundary", + "AixLib.Obsolete.Fluid.Sources.FixedBoundary"); +convertClass("AixLib.Controls.SetPoints.HotWaterTemperatureReset", + "AixLib.Controls.SetPoints.SupplyReturnTemperatureReset"); + +//refactoring of alpha to hCon or hRad +convertElement( + "AixLib.ThermalZones.ReducedOrder.RC.OneElement", + "alphaWin", + "hConWin"); +convertElement( + "AixLib.ThermalZones.ReducedOrder.RC.OneElement", + "alphaExt", + "hConExt"); +convertElement( + "AixLib.ThermalZones.ReducedOrder.RC.OneElement", + "alphaExtWallConst", + "hConExtWall_const"); +convertElement( + "AixLib.ThermalZones.ReducedOrder.RC.OneElement", + "alphaWinConst", + "hConWin_const"); +convertElement( + "AixLib.ThermalZones.ReducedOrder.RC.ThreeElements", + "alphaFloor", + "hConFloor"); +convertElement( + "AixLib.ThermalZones.ReducedOrder.RC.ThreeElements", + "alphaFloorConst", + "hConFloor_const"); +convertElement( + "AixLib.ThermalZones.ReducedOrder.RC.TwoElements", + "alphaInt", + "hConInt"); +convertElement( + "AixLib.ThermalZones.ReducedOrder.RC.TwoElements", + "alphaIntWall", + "hConIntWall"); +convertElement( + "AixLib.ThermalZones.ReducedOrder.RC.FourElements", + "alphaRoof", + "hConRoof"); +convertElement( + "AixLib.ThermalZones.ReducedOrder.RC.FourElements", + "alphaRoofConst", + "hConRoof_const"); +convertElement( + "AixLib.ThermalZones.ReducedOrder.RC.OneElement", + "alphaRad", + "hRad"); +convertElement( + "AixLib.ThermalZones.ReducedOrder.EquivalentAirTemperature.BaseClasses.PartialVDI6007", + "alphaWallOut", + "hConWallOut"); +convertElement( + "AixLib.ThermalZones.ReducedOrder.EquivalentAirTemperature.BaseClasses.PartialVDI6007", + "alphaRad", + "hRad"); +convertElement( + "AixLib.ThermalZones.ReducedOrder.EquivalentAirTemperature.VDI6007WithWindow", + "alphaWinOut", + "hConWinOut"); + +// Refactoring damper models. +convertElement( + "AixLib.Fluid.Actuators.Dampers.PressureIndependent", + "dp_nominal", + "dpDamper_nominal"); +convertModifiers( + "AixLib.Fluid.Actuators.Dampers.Exponential", + {"k1=0.45", "v_nominal=1"}, + {"k1=%k1%", + "dpDamper_nominal=%k1% * 1.2 * %v_nominal%^2 / 2"}, + true); +convertModifiers( + "AixLib.Fluid.Actuators.Dampers.VAVBoxExponential", + {"dp_nominal", "k1=0.45", "v_nominal=1", "dp_nominalIncludesDamper=true"}, + {"k1=%k1%", + "dpDamper_nominal=%k1% * 1.2 * %v_nominal%^2 / 2", + "dpFixed_nominal=if %dp_nominalIncludesDamper% then %dp_nominal% - %k1% * 1.2 * %v_nominal%^2 / 2 else %dp_nominal%"}, + true); +convertModifiers( + "AixLib.Fluid.Actuators.Dampers.MixingBox", + {"dpOut_nominal", "dpRec_nominal", "dpExh_nominal", "k1=0.45", "v_nominal=1", "dp_nominalIncludesDamper=false"}, + {"k1=%k1%", + "dpDamOut_nominal=%k1% * 1.2 * %v_nominal%^2 / 2", + "dpFixOut_nominal=if %dp_nominalIncludesDamper% then %dpOut_nominal% - %k1% * 1.2 * %v_nominal%^2 / 2 else %dpOut_nominal%", + "dpDamRec_nominal=%k1% * 1.2 * %v_nominal%^2 / 2", + "dpFixRec_nominal=if %dp_nominalIncludesDamper% then %dpRec_nominal% - %k1% * 1.2 * %v_nominal%^2 / 2 else %dpRec_nominal%", + "dpDamExh_nominal=%k1% * 1.2 * %v_nominal%^2 / 2", + "dpFixExh_nominal=if %dp_nominalIncludesDamper% then %dpExh_nominal% - %k1% * 1.2 * %v_nominal%^2 / 2 else %dpExh_nominal%"}, + true); +convertClass( + "AixLib.Fluid.Actuators.Dampers.VAVBoxExponential", + "AixLib.Fluid.Actuators.Dampers.Exponential"); diff --git a/AixLib/Resources/Scripts/ConvertAixLib_from_0.7.9_to_0.7.10.mos b/AixLib/Resources/Scripts/ConvertAixLib_from_0.7.9_to_0.7.10.mos index 03f82d4db6..46d1606d38 100644 --- a/AixLib/Resources/Scripts/ConvertAixLib_from_0.7.9_to_0.7.10.mos +++ b/AixLib/Resources/Scripts/ConvertAixLib_from_0.7.9_to_0.7.10.mos @@ -1,3 +1,7 @@ +// add missing convert class for HumanSensibleHeat_VDI2078 +convertClass("AixLib.Utilities.Sources.InternalGains.Humans.HumanSensibleHeat_VDI2078", + "AixLib.Utilities.Sources.InternalGains.Humans.Obsolete.HumanSensibleHeat_VDI2078"); + // correct renaming of hRad convertElement("AixLib.DataBase.ThermalZones.OfficePassiveHouse.OPH_1_Office","hConvRadWall","hRadWall"); convertElement("AixLib.DataBase.ThermalZones.ZoneBaseRecord","hConvRadWall","hRadWall"); diff --git a/AixLib/Resources/Scripts/ConvertAixLib_from_1.0.1_to_1.0.2.mos b/AixLib/Resources/Scripts/ConvertAixLib_from_1.0.1_to_1.0.2.mos new file mode 100644 index 0000000000..c6aa80f52c --- /dev/null +++ b/AixLib/Resources/Scripts/ConvertAixLib_from_1.0.1_to_1.0.2.mos @@ -0,0 +1,7 @@ +clear + +convertClear(); + +// Move obsolete Examples to Obsolete +convertClass("AixLib.Fluid.Examples.PumpRadiatorThermostaticValve", "AixLib.Obsolete.Year2021.Fluid.Examples.PumpRadiatorThermostaticValve"); +convertClass("AixLib.Fluid.Examples.PumpRadiatorValve", "AixLib.Obsolete.Year2021.Fluid.Examples.PumpRadiatorValve"); diff --git a/AixLib/Resources/Scripts/ConvertAixLib_from_1.0.2_to_1.0.3.mos b/AixLib/Resources/Scripts/ConvertAixLib_from_1.0.2_to_1.0.3.mos new file mode 100644 index 0000000000..d55b058c64 --- /dev/null +++ b/AixLib/Resources/Scripts/ConvertAixLib_from_1.0.2_to_1.0.3.mos @@ -0,0 +1,6 @@ +clear + +convertClear(); + +// remove modifiers for PartialHuman-Model +convertModifiers("AixLib.BoundaryConditions.InternalGains.Humans.BaseClasses.PartialHuman", {"ratioConvectiveHeat"}, fill("",0)); diff --git a/AixLib/Resources/Scripts/ConvertAixLib_from_1.0.3_to_1.0.4.mos b/AixLib/Resources/Scripts/ConvertAixLib_from_1.0.3_to_1.0.4.mos new file mode 100644 index 0000000000..550752d7f2 --- /dev/null +++ b/AixLib/Resources/Scripts/ConvertAixLib_from_1.0.3_to_1.0.4.mos @@ -0,0 +1,10 @@ +clear + +convertClear(); + +// replacing use_AirExchange by two booleans in order to set natural and mechenical ventilation seperatly +// use_MechanicalAirExchange replaces use_AirExchange +// use_NaturalAirExchange gets the same boolean value by default as use_MechanicalAirExchange within the thermal zone model to enable the use of conversion scripts + +convertElement("AixLib.ThermalZones.ReducedOrder.ThermalZone.ThermalZone","use_AirExchange","use_MechanicalAirExchange"); + diff --git a/AixLib/Resources/Scripts/ConvertAixLib_from_1.0.3_to_1.1.0.mos b/AixLib/Resources/Scripts/ConvertAixLib_from_1.0.3_to_1.1.0.mos new file mode 100644 index 0000000000..bfa2889f90 --- /dev/null +++ b/AixLib/Resources/Scripts/ConvertAixLib_from_1.0.3_to_1.1.0.mos @@ -0,0 +1,187 @@ +// Conversion script for IBPSA library +// from: Version 3.0 +// to: Version 4.0 +clear + +convertClear(); + +// Conversion for https://github.com/ibpsa/modelica-ibpsa/issues/1542 +ConvertModifiers("AixLib.Airflow.Multizone.MediumColumnDynamic", {"massDynamics"}, fill("",0), true); +ConvertModifiers("AixLib.Fluid.Actuators.Valves.ThreeWayEqualPercentageLinear", {"massDynamics"}, fill("",0), true); +ConvertModifiers("AixLib.Fluid.Actuators.Valves.ThreeWayLinear", {"massDynamics"}, fill("",0), true); +ConvertModifiers("AixLib.Fluid.Actuators.Valves.ThreeWayTable", {"massDynamics"}, fill("",0), true); +ConvertModifiers("AixLib.Fluid.HeatExchangers.Radiators.RadiatorEN442_2", {"massDynamics"}, fill("",0), true); +ConvertModifiers("AixLib.Fluid.Movers.FlowControlled_dp", {"massDynamics"}, fill("",0), true); +ConvertModifiers("AixLib.Fluid.Movers.FlowControlled_m_flow", {"massDynamics"}, fill("",0), true); +ConvertModifiers("AixLib.Fluid.Movers.SpeedControlled_Nrpm", {"massDynamics"}, fill("",0), true); +ConvertModifiers("AixLib.Fluid.Movers.SpeedControlled_y", {"massDynamics"}, fill("",0), true); +ConvertModifiers("AixLib.Fluid.Storage.Stratified", {"massDynamics"}, fill("",0), true); +ConvertModifiers("AixLib.Fluid.Storage.StratifiedEnhanced", {"massDynamics"}, fill("",0), true); +ConvertModifiers("AixLib.Fluid.Storage.StratifiedEnhancedInternalHex", {"massDynamics"}, fill("",0), true); +ConvertModifiers("AixLib.Fluid.HeatExchangers.EvaporatorCondenser", {"massDynamics"}, fill("",0), true); +ConvertModifiers("AixLib.Fluid.HeatExchangers.HeaterCooler_u", {"massDynamics"}, fill("",0), true); +ConvertModifiers("AixLib.Fluid.Interfaces.TwoPortHeatMassExchanger", {"massDynamics"}, fill("",0), true); +ConvertModifiers("AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.BaseClasses.InternalHEXOneUTube", {"massDynamics"}, fill("",0), true); +ConvertModifiers("AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.BaseClasses.InternalHEXTwoUTube", {"massDynamics"}, fill("",0), true); +ConvertModifiers("AixLib.Fluid.HeatExchangers.PrescribedOutlet", {"massDynamics"}, fill("",0), true); +ConvertModifiers("AixLib.Fluid.Interfaces.PrescribedOutlet", {"massDynamics"}, fill("",0), true); +ConvertModifiers("AixLib.ThermalZones.ReducedOrder.RC.FourElements", {"massDynamics"}, fill("",0), true); +ConvertModifiers("AixLib.ThermalZones.ReducedOrder.RC.OneElement", {"massDynamics"}, fill("",0), true); +ConvertModifiers("AixLib.ThermalZones.ReducedOrder.RC.ThreeElements", {"massDynamics"}, fill("",0), true); +ConvertModifiers("AixLib.ThermalZones.ReducedOrder.RC.TwoElements", {"massDynamics"}, fill("",0), true); +ConvertModifiers("AixLib.Fluid.HeatExchangers.ActiveBeams.Cooling", {"massDynamics"}, fill("",0), true); +ConvertModifiers("AixLib.Fluid.HeatExchangers.ActiveBeams.CoolingAndHeating", {"massDynamics"}, fill("",0), true); +ConvertModifiers("AixLib.Fluid.HeatExchangers.WetCoilEffectivenessNTU", {"massDynamics"}, fill("",0), true); +ConvertModifiers("AixLib.Fluid.Delays.DelayFirstOrder", {"massDynamics"}, fill("",0), true); + +ConvertModifiers("AixLib.Fluid.Storage.StratifiedEnhancedInternalHex", {"massDynamicsHex"}, fill("",0), true); + +convertElement("AixLib.Fluid.Humidifiers.SteamHumidifier_X", + "massDynamics", + "energyDynamics"); +convertElement("AixLib.Fluid.Humidifiers.SprayAirWasher_X", + "massDynamics", + "energyDynamics"); + +// Conversion for https://github.com/ibpsa/modelica-ibpsa/issues/1522 +convertClass("AixLib.Controls.Continuous.PIDHysteresisTimer", + "AixLib.Obsolete.Controls.Continuous.PIDHysteresisTimer"); +convertClass("AixLib.Controls.Continuous.PIDHysteresis", + "AixLib.Obsolete.Controls.Continuous.PIDHysteresis"); + +// Conversion for https://github.com/ibpsa/modelica-ibpsa/issues/1477 +convertModifiers("AixLib.BoundaryConditions.SolarGeometry.IncidenceAngle", {"lat"}, fill("",0), true); +convertModifiers("AixLib.BoundaryConditions.SolarGeometry.BaseClasses.IncidenceAngle", {"lat"}, fill("",0), true); +convertModifiers("AixLib.BoundaryConditions.SolarGeometry.ZenithAngle", {"lat"}, fill("",0), true); +convertModifiers("AixLib.BoundaryConditions.SolarIrradiation.DiffusePerez", {"lat"}, fill("",0), true); +convertModifiers("AixLib.BoundaryConditions.SolarIrradiation.DirectTiltedSurface", {"lat"}, fill("",0), true); + +// Refactoring for https://github.com/ibpsa/modelica-ibpsa/issues/1494 +convertClass("AixLib.Fluid.FixedResistances.PlugFlowPipe", + "AixLib.Obsolete.Fluid.FixedResistances.PlugFlowPipe"); +convertClass("AixLib.Fluid.FixedResistances.BaseClasses.PlugFlowCore", + "AixLib.Obsolete.Fluid.FixedResistances.BaseClasses.PlugFlowCore"); + +// Conversion for https://github.com/ibpsa/modelica-ibpsa/issues/1498 +convertClass("AixLib.Utilities.Math.Polynominal", + "AixLib.Utilities.Math.Polynomial"); +convertClass("AixLib.Utilities.Math.Examples.Polynominal", + "AixLib.Utilities.Math.Examples.Polynomial"); + +// Conversion for https://github.com/ibpsa/modelica-ibpsa/issues/1498 +convertModifiers("AixLib.Fluid.Movers.FlowControlled_dp", + {"y_start"}, fill("",0), true); +convertModifiers("AixLib.Fluid.Movers.FlowControlled_m_flow", + {"y_start"}, fill("",0), true); + +// Conversion for https://github.com/ibpsa/modelica-ibpsa/issues/1365 +convertModifiers("AixLib.Controls.Continuous.LimPID", {"reverseAction"}, {"reverseActing=not %reverseAction%"}); +convertModifiers("AixLib.Controls.Continuous.PIDHysteresis", {"reverseAction"}, {"reverseActing=not %reverseAction%"}); +convertModifiers("AixLib.Controls.Continuous.PIDHysteresisTimer", {"reverseAction"}, {"reverseActing=not %reverseAction%"}); + + +// Conversion for https://github.com/ibpsa/modelica-ibpsa/issues/1362 +convertModifiers("AixLib.Airflow.Multizone.BaseClasses.PowerLawResistance", {"m_flow_small"}, fill("",0), true); +convertModifiers("AixLib.Airflow.Multizone.BaseClasses.TwoWayFlowElement", {"m1_flow_small", "m2_flow_small"}, fill("",0), true); +convertModifiers("AixLib.Airflow.Multizone.EffectiveAirLeakageArea", {"m_flow_small"}, fill("",0), true); +convertModifiers("AixLib.Airflow.Multizone.Orifice", {"m_flow_small"}, fill("",0), true); +convertModifiers("AixLib.Airflow.Multizone.DoorDiscretizedOpen", {"m1_flow_small", "m2_flow_small"}, fill("",0), true); +convertModifiers("AixLib.Airflow.Multizone.DoorDiscretizedOperable", {"m1_flow_small", "m2_flow_small"}, fill("",0), true); +convertModifiers("AixLib.Airflow.Multizone.ZonalFlow_ACS", {"m1_flow_small", "m2_flow_small"}, fill("",0), true); +convertModifiers("AixLib.Airflow.Multizone.ZonalFlow_m_flow", {"m1_flow_small", "m2_flow_small"}, fill("",0), true); + +convertClass("AixLib.Fluid.Sources.FixedBoundary", + "AixLib.Obsolete.Fluid.Sources.FixedBoundary"); +convertClass("AixLib.Controls.SetPoints.HotWaterTemperatureReset", + "AixLib.Controls.SetPoints.SupplyReturnTemperatureReset"); + +//refactoring of alpha to hCon or hRad +convertElement( + "AixLib.ThermalZones.ReducedOrder.RC.OneElement", + "alphaWin", + "hConWin"); +convertElement( + "AixLib.ThermalZones.ReducedOrder.RC.OneElement", + "alphaExt", + "hConExt"); +convertElement( + "AixLib.ThermalZones.ReducedOrder.RC.OneElement", + "alphaExtWallConst", + "hConExtWall_const"); +convertElement( + "AixLib.ThermalZones.ReducedOrder.RC.OneElement", + "alphaWinConst", + "hConWin_const"); +convertElement( + "AixLib.ThermalZones.ReducedOrder.RC.ThreeElements", + "alphaFloor", + "hConFloor"); +convertElement( + "AixLib.ThermalZones.ReducedOrder.RC.ThreeElements", + "alphaFloorConst", + "hConFloor_const"); +convertElement( + "AixLib.ThermalZones.ReducedOrder.RC.TwoElements", + "alphaInt", + "hConInt"); +convertElement( + "AixLib.ThermalZones.ReducedOrder.RC.TwoElements", + "alphaIntWall", + "hConIntWall"); +convertElement( + "AixLib.ThermalZones.ReducedOrder.RC.FourElements", + "alphaRoof", + "hConRoof"); +convertElement( + "AixLib.ThermalZones.ReducedOrder.RC.FourElements", + "alphaRoofConst", + "hConRoof_const"); +convertElement( + "AixLib.ThermalZones.ReducedOrder.RC.OneElement", + "alphaRad", + "hRad"); +convertElement( + "AixLib.ThermalZones.ReducedOrder.EquivalentAirTemperature.BaseClasses.PartialVDI6007", + "alphaWallOut", + "hConWallOut"); +convertElement( + "AixLib.ThermalZones.ReducedOrder.EquivalentAirTemperature.BaseClasses.PartialVDI6007", + "alphaRad", + "hRad"); +convertElement( + "AixLib.ThermalZones.ReducedOrder.EquivalentAirTemperature.VDI6007WithWindow", + "alphaWinOut", + "hConWinOut"); + +// Refactoring damper models. +convertElement( + "AixLib.Fluid.Actuators.Dampers.PressureIndependent", + "dp_nominal", + "dpDamper_nominal"); +convertModifiers( + "AixLib.Fluid.Actuators.Dampers.Exponential", + {"k1=0.45", "v_nominal=1"}, + {"k1=%k1%", + "dpDamper_nominal=%k1% * 1.2 * %v_nominal%^2 / 2"}, + true); +convertModifiers( + "AixLib.Fluid.Actuators.Dampers.VAVBoxExponential", + {"dp_nominal", "k1=0.45", "v_nominal=1", "dp_nominalIncludesDamper=true"}, + {"k1=%k1%", + "dpDamper_nominal=%k1% * 1.2 * %v_nominal%^2 / 2", + "dpFixed_nominal=if %dp_nominalIncludesDamper% then %dp_nominal% - %k1% * 1.2 * %v_nominal%^2 / 2 else %dp_nominal%"}, + true); +convertModifiers( + "AixLib.Fluid.Actuators.Dampers.MixingBox", + {"dpOut_nominal", "dpRec_nominal", "dpExh_nominal", "k1=0.45", "v_nominal=1", "dp_nominalIncludesDamper=false"}, + {"k1=%k1%", + "dpDamOut_nominal=%k1% * 1.2 * %v_nominal%^2 / 2", + "dpFixOut_nominal=if %dp_nominalIncludesDamper% then %dpOut_nominal% - %k1% * 1.2 * %v_nominal%^2 / 2 else %dpOut_nominal%", + "dpDamRec_nominal=%k1% * 1.2 * %v_nominal%^2 / 2", + "dpFixRec_nominal=if %dp_nominalIncludesDamper% then %dpRec_nominal% - %k1% * 1.2 * %v_nominal%^2 / 2 else %dpRec_nominal%", + "dpDamExh_nominal=%k1% * 1.2 * %v_nominal%^2 / 2", + "dpFixExh_nominal=if %dp_nominalIncludesDamper% then %dpExh_nominal% - %k1% * 1.2 * %v_nominal%^2 / 2 else %dpExh_nominal%"}, + true); +convertClass( + "AixLib.Fluid.Actuators.Dampers.VAVBoxExponential", + "AixLib.Fluid.Actuators.Dampers.Exponential"); diff --git a/AixLib/Resources/Scripts/ConvertAixLib_from_1.1.0_to_1.2.0.mos b/AixLib/Resources/Scripts/ConvertAixLib_from_1.1.0_to_1.2.0.mos new file mode 100644 index 0000000000..e030666903 --- /dev/null +++ b/AixLib/Resources/Scripts/ConvertAixLib_from_1.1.0_to_1.2.0.mos @@ -0,0 +1,80 @@ +// Generated by conversion of AixLib +convertElement("AixLib.Airflow.AirHandlingUnit.Examples.AHU","tempAddInRoom.freqHz","tempAddInRoom.f"); +convertElement("AixLib.Airflow.AirHandlingUnit.Examples.AHU","tempOutside.freqHz","tempOutside.f"); +convertElement("AixLib.Airflow.AirHandlingUnit.Examples.AHU","waterLoadOutside.freqHz","waterLoadOutside.f"); +convertElement("AixLib.Airflow.FacadeVentilationUnit.Examples.FacadeVentilationUnit","outdoorTemperature.freqHz","outdoorTemperature.f"); +convertElement("AixLib.Airflow.FacadeVentilationUnit.Examples.FacadeVentilationUnit","roomSetTemperature.freqHz","roomSetTemperature.f"); +convertElement("AixLib.Airflow.FacadeVentilationUnit.Examples.FacadeVentilationUnit","roomTemperature.freqHz","roomTemperature.f"); +convertElement("AixLib.BoundaryConditions.InternalGains.Examples.InternalGains.HumansSenTDep","sine.freqHz","sine.f"); +convertElement("AixLib.BoundaryConditions.InternalGains.Examples.InternalGains.HumansSenTIndep","sine.freqHz","sine.f"); +convertElement("AixLib.BoundaryConditions.InternalGains.Examples.InternalGains.HumansTotTDep","sine.freqHz","sine.f"); +convertElement("AixLib.BoundaryConditions.InternalGains.Examples.InternalGains.BaseClasses.Humans","sine.freqHz","sine.f"); +convertElement("AixLib.Controls.HeatPump.Examples.HeatPumpController","T_meas.freqHz","T_meas.f"); +convertElement("AixLib.DataBase.CHP.ModularCHPEngineMedia.CHPCombustionMixtureGasNasa","data.R","data.R_s"); +convertElement("AixLib.DataBase.CHP.ModularCHPEngineMedia.CHPCombustionMixtureGasNasa.BaseProperties","R","R_s"); +convertElement("AixLib.DataBase.CHP.ModularCHPEngineMedia.CHPCombustionMixtureGasNasa.gasConstant","R","R_s"); +convertElement("AixLib.DataBase.CHP.ModularCHPEngineMedia.CHPCoolantPropyleneGlycolWater.BaseProperties","R","R_s"); +convertElement("AixLib.DataBase.CHP.ModularCHPEngineMedia.CHPFlueGasLambdaOnePlus","data.R","data.R_s"); +convertElement("AixLib.DataBase.CHP.ModularCHPEngineMedia.LiquidFuel_Diesel","data.R","data.R_s"); +convertElement("AixLib.DataBase.CHP.ModularCHPEngineMedia.LiquidFuel_LPG","data.R","data.R_s"); +convertElement("AixLib.DataBase.CHP.ModularCHPEngineMedia.LiquidFuel_Petrol","data.R","data.R_s"); +convertElement("AixLib.DataBase.CHP.ModularCHPEngineMedia.NaturalGasMixture_GeneralType","data.R","data.R_s"); +convertElement("AixLib.DataBase.CHP.ModularCHPEngineMedia.NaturalGasMixture_TypeAachen","data.R","data.R_s"); +convertElement("AixLib.DataBase.CHP.ModularCHPEngineMedia.NaturalGasMixture_TypeH","data.R","data.R_s"); +convertElement("AixLib.DataBase.CHP.ModularCHPEngineMedia.NaturalGasMixture_TypeL","data.R","data.R_s"); +convertElement("AixLib.Fluid.Actuators.Valves.ExpansionValves.Examples.ExpansionValveMassFlowRate","valOpe.freqHz","valOpe.f"); +convertElement("AixLib.Fluid.Actuators.Valves.ExpansionValves.Examples.ExpansionValvePressureDifference","valOpe.freqHz","valOpe.f"); +convertElement("AixLib.Fluid.Actuators.Valves.ExpansionValves.Examples.ModularExpansionValvesMassFlowRate","valOpe.freqHz","valOpe.f"); +convertElement("AixLib.Fluid.Actuators.Valves.ExpansionValves.Examples.ModularExpansionValvesPressureDifference","valOpe.freqHz","valOpe.f"); +convertElement("AixLib.Fluid.BoilerCHP.Examples.BoilerSystem","sine.freqHz","sine.f"); +convertElement("AixLib.Fluid.Chillers.Examples.Chiller","sine.freqHz","sine.f"); +convertElement("AixLib.Fluid.DistrictHeatingCooling.Demands.Examples.OpenLoopHeatPumpCarnot","sine.freqHz","sine.f"); +convertElement("AixLib.Fluid.DistrictHeatingCooling.Demands.Examples.OpenLoopVarTSupplyDp","sine.freqHz","sine.f"); +convertElement("AixLib.Fluid.DistrictHeatingCooling.Demands.Examples.OpenLoopVarTSupplyDpBypass","sine.freqHz","sine.f"); +convertElement("AixLib.Fluid.DistrictHeatingCooling.Demands.Examples.OpenLoopVarTSupplyDpFixedTempDifferenceBypass","sine.freqHz","sine.f"); +convertElement("AixLib.Fluid.HeatPumps.Examples.HeatPump","sine.freqHz","sine.f"); +convertElement("AixLib.Fluid.MassExchangers.MembraneBasedEnthalpyExchangers.Examples.Test_EnthalpyExchanger","sine.freqHz","sine.f"); +convertElement("AixLib.Fluid.MassExchangers.MembraneBasedEnthalpyExchangers.Examples.Test_EnthalpyExchanger","sine1.freqHz","sine1.f"); +convertElement("AixLib.Fluid.Movers.Compressors.Examples.ModularRotaryCompressor","rotSpe.freqHz","rotSpe.f"); +convertElement("AixLib.Fluid.Movers.Compressors.Examples.ModularRotaryCompressor","valOpe.freqHz","valOpe.f"); +convertElement("AixLib.Fluid.Movers.Compressors.Examples.RotaryCompressor","rotSpe.freqHz","rotSpe.f"); +convertElement("AixLib.Fluid.Movers.Compressors.Examples.RotaryCompressor","valOpe.freqHz","valOpe.f"); +convertElement("AixLib.Fluid.Movers.Compressors.Examples.RotaryCompressorPressureHeatLosses","rotSpe.freqHz","rotSpe.f"); +convertElement("AixLib.Fluid.Movers.Compressors.Examples.RotaryCompressorPressureHeatLosses","valOpe.freqHz","valOpe.f"); +convertElement("AixLib.Fluid.Movers.Compressors.Examples.RotaryCompressorPressureLosses","rotSpe.freqHz","rotSpe.f"); +convertElement("AixLib.Fluid.Movers.Compressors.Examples.RotaryCompressorPressureLosses","valOpe.freqHz","valOpe.f"); +convertElement("AixLib.Fluid.Movers.Compressors.Validation.ModularInactiveCompressors","rotSpe.freqHz","rotSpe.f"); +convertElement("AixLib.Fluid.Movers.Compressors.Validation.ModularInactiveCompressors","valOpe.freqHz","valOpe.f"); +convertElement("AixLib.Media.AirIncompressible.BaseProperties","R","R_s"); +convertElement("AixLib.Media.AirIncompressible.gasConstant","R","R_s"); +convertElement("AixLib.Media.Refrigerants.Interfaces.PartialHybridTwoPhaseMediumFormula.BaseProperties","R","R_s"); +convertElement("AixLib.ThermalZones.HighOrder.Components.Examples.DryAir.DryAir_test","sine.freqHz","sine.f"); +convertElement("AixLib.ThermalZones.HighOrder.Components.Examples.DryAir.DryAir_test","sine1.freqHz","sine1.f"); +convertElement("AixLib.ThermalZones.ReducedOrder.Windows.Validation.SkylineShadowingTest","solAziSine.freqHz","solAziSine.f"); +convertElement("AixLib.ThermalZones.ReducedOrder.Windows.Validation.SelfShadowing.SelfShadowingTestAbove","altSine.freqHz","altSine.f"); +convertElement("AixLib.ThermalZones.ReducedOrder.Windows.Validation.SelfShadowing.SelfShadowingTestAbove","solAziSine.freqHz","solAziSine.f"); +convertElement("AixLib.ThermalZones.ReducedOrder.Windows.Validation.SelfShadowing.SelfShadowingTestBelow","altSine.freqHz","altSine.f"); +convertElement("AixLib.ThermalZones.ReducedOrder.Windows.Validation.SelfShadowing.SelfShadowingTestBelow","altSine1.freqHz","altSine1.f"); +convertElement("AixLib.ThermalZones.ReducedOrder.Windows.Validation.SelfShadowing.SelfShadowingTestLeft","solAziSine.freqHz","solAziSine.f"); +convertElement("AixLib.ThermalZones.ReducedOrder.Windows.Validation.SelfShadowing.SelfShadowingTestRight","solAziSine.freqHz","solAziSine.f"); +convertElement("AixLib.ThermalZones.ReducedOrder.Examples.ComparisonThermalZoneMoistAndDryAir","sine.freqHz","sine.f"); +convertElement("AixLib.ThermalZones.ReducedOrder.Examples.ComparisonThermalZoneMoistAndDryAir","sine1.freqHz","sine1.f"); +convertElement("AixLib.ThermalZones.ReducedOrder.Examples.Multizone","sine.freqHz","sine.f"); +convertElement("AixLib.ThermalZones.ReducedOrder.Examples.MultizoneEquipped","sine.freqHz","sine.f"); +convertElement("AixLib.ThermalZones.ReducedOrder.Examples.MultizoneMoistAirCO2","sine.freqHz","sine.f"); +convertElement("AixLib.ThermalZones.ReducedOrder.Examples.MultizoneMoistAirCO2Equipped","sine.freqHz","sine.f"); +convertElement("AixLib.ThermalZones.ReducedOrder.Examples.MultizonePartlyCooled","sine.freqHz","sine.f"); +convertElement("AixLib.ThermalZones.ReducedOrder.Examples.ThermalZone","sine.freqHz","sine.f"); +convertElement("AixLib.ThermalZones.ReducedOrder.Examples.ThermalZoneAirExchange","sine.freqHz","sine.f"); +convertElement("AixLib.ThermalZones.ReducedOrder.Examples.ThermalZoneMoistAir","sine.freqHz","sine.f"); +convertElement("AixLib.ThermalZones.ReducedOrder.Examples.ThermalZoneMoistCO2AirExchange","sine.freqHz","sine.f"); +convertElement("AixLib.Utilities.Sensors.Examples.ExergyMeters","pulse.freqHz","pulse.f"); +convertElement("AixLib.Utilities.Examples.HeatTransfer_test","sine.freqHz","sine.f"); +convertElement("AixLib.Utilities.Examples.HeatTransfer_test","sineWindSpeed.freqHz","sineWindSpeed.f"); +convertElement("AixLib.Obsolete.Year2019.Fluid.HeatPumps.Examples.HeatPumpDetailed","sine.freqHz","sine.f"); +convertElement("AixLib.Obsolete.Year2021.Fluid.Examples.PumpRadiatorThermostaticValve","Source_opening.freqHz","Source_opening.f"); +convertElement("AixLib.Obsolete.Year2021.Fluid.Examples.PumpRadiatorValve","Source_opening.freqHz","Source_opening.f"); +convertElement("AixLib.Obsolete.YearIndependent.FastHVAC.Examples.Chiller.Chiller","sine.freqHz","sine.f"); +convertElement("AixLib.Obsolete.YearIndependent.FastHVAC.Examples.HeatGenerators.HeatPump.HeatPump","sine.freqHz","sine.f"); +convertElement("AixLib.Obsolete.YearIndependent.FastHVAC.Examples.Valves.ThermostaticValveRadiator","sine1.freqHz","sine1.f"); +convertElement("AixLib.Obsolete.YearIndependent.FastHVAC.Examples.Valves.ThreeWayValve","sine.freqHz","sine.f"); diff --git a/AixLib/Resources/Scripts/ConvertAixLib_from_1.2.0_to_1.2.1.mos b/AixLib/Resources/Scripts/ConvertAixLib_from_1.2.0_to_1.2.1.mos new file mode 100644 index 0000000000..8f1f27c699 --- /dev/null +++ b/AixLib/Resources/Scripts/ConvertAixLib_from_1.2.0_to_1.2.1.mos @@ -0,0 +1,5 @@ +clear + +convertClear(); + +ConvertModifiers("AixLib.Fluid.Interfaces.LumpedVolumeDeclarations", {"massDynamics"}, fill("",0), true); diff --git a/AixLib/Resources/Scripts/ConvertAixLib_from_1.2.1_to_1.2.2.mos b/AixLib/Resources/Scripts/ConvertAixLib_from_1.2.1_to_1.2.2.mos new file mode 100644 index 0000000000..d19a5baf0c --- /dev/null +++ b/AixLib/Resources/Scripts/ConvertAixLib_from_1.2.1_to_1.2.2.mos @@ -0,0 +1,14 @@ +clear + +convertClear(); + +convertClass("AixLib.ThermalZones.HighOrder.Examples.Appartment_VoWo", "AixLib.Obsolete.Year2022.ThermalZones.HighOrder.Examples.Appartment_VoWo"); +convertClass("AixLib.ThermalZones.HighOrder.House.MFD.EnergySystem.OneAppartment.Radiators", "AixLib.Obsolete.Year2022.ThermalZones.HighOrder.House.MFD.EnergySystem.OneAppartment.Radiators"); +convertClass("AixLib.ThermalZones.HighOrder.House.MFD.BuildingAndEnergySystem.OneAppartment_Radiators", "AixLib.Obsolete.Year2022.ThermalZones.HighOrder.House.MFD.BuildingAndEnergySystem.OneAppartment_Radiators"); +convertClass("AixLib.ThermalZones.HighOrder.House.MFD.BuildingEnvelope.OneAppartment_VoWo", "AixLib.Obsolete.Year2022.ThermalZones.HighOrder.House.MFD.BuildingEnvelope.OneAppartment_VoWo"); +convertClass("AixLib.ThermalZones.HighOrder.Rooms.MFD.OneAppartment.Bathroom_VoWo", "AixLib.Obsolete.Year2022.ThermalZones.HighOrder.Rooms.MFD.OneAppartment.Bathroom_VoWo"); +convertClass("AixLib.ThermalZones.HighOrder.Rooms.MFD.OneAppartment.Bedroom_VoWo", "AixLib.Obsolete.Year2022.ThermalZones.HighOrder.Rooms.MFD.OneAppartment.Bedroom_VoWo"); +convertClass("AixLib.ThermalZones.HighOrder.Rooms.MFD.OneAppartment.Children_VoWo", "AixLib.Obsolete.Year2022.ThermalZones.HighOrder.Rooms.MFD.OneAppartment.Children_VoWo"); +convertClass("AixLib.ThermalZones.HighOrder.Rooms.MFD.OneAppartment.Corridor_VoWo", "AixLib.Obsolete.Year2022.ThermalZones.HighOrder.Rooms.MFD.OneAppartment.Corridor_VoWo"); +convertClass("AixLib.ThermalZones.HighOrder.Rooms.MFD.OneAppartment.Kitchen_VoWo", "AixLib.Obsolete.Year2022.ThermalZones.HighOrder.Rooms.MFD.OneAppartment.Kitchen_VoWo"); +convertClass("AixLib.ThermalZones.HighOrder.Rooms.MFD.OneAppartment.Livingroom_VoWo", "AixLib.Obsolete.Year2022.ThermalZones.HighOrder.Rooms.MFD.OneAppartment.Livingroom_VoWo"); \ No newline at end of file diff --git a/AixLib/Resources/Scripts/Dymola/Airflow/Multizone/BaseClasses/Examples/Interpolate.mos b/AixLib/Resources/Scripts/Dymola/Airflow/Multizone/BaseClasses/Examples/Interpolate.mos new file mode 100644 index 0000000000..f506fa1de6 --- /dev/null +++ b/AixLib/Resources/Scripts/Dymola/Airflow/Multizone/BaseClasses/Examples/Interpolate.mos @@ -0,0 +1,2 @@ +simulateModel("AixLib.Airflow.Multizone.BaseClasses.Examples.Interpolate", stopTime=500, tolerance=1e-06, resultFile="Interpolate"); +createPlot(id=1, position={15, 15, 584, 361}, x="dp", y={"m_flow"}, range={-50.0, 50.0, -0.1, 0.04000000000000001}, grid=true, filename="Interpolate.mat", colors={{28,108,200}}, timeUnit="Pa", displayUnits={"kg/s"}); diff --git a/AixLib/Resources/Scripts/Dymola/Airflow/Multizone/BaseClasses/Examples/WindPressureProfile.mos b/AixLib/Resources/Scripts/Dymola/Airflow/Multizone/BaseClasses/Examples/WindPressureProfile.mos new file mode 100644 index 0000000000..852f22e805 --- /dev/null +++ b/AixLib/Resources/Scripts/Dymola/Airflow/Multizone/BaseClasses/Examples/WindPressureProfile.mos @@ -0,0 +1,2 @@ +simulateModel("AixLib.Airflow.Multizone.BaseClasses.Examples.WindPressureProfile", stopTime=500, tolerance=1e-06, resultFile="WindPressureProfile"); +createPlot(id=1, position={87, 39, 896, 477}, x="alpha", y={"CpAct"}, range={-360, 720.0, -0.5, 0.5}, erase=false, grid=true, filename="WindPressureProfile.mat", colors={{28,108,200}}, timeUnit="deg"); diff --git a/AixLib/Resources/Scripts/Dymola/Airflow/Multizone/Examples/OneOpenDoor.mos b/AixLib/Resources/Scripts/Dymola/Airflow/Multizone/Examples/OneOpenDoor.mos index 8f37a7fcc3..57274c2560 100644 --- a/AixLib/Resources/Scripts/Dymola/Airflow/Multizone/Examples/OneOpenDoor.mos +++ b/AixLib/Resources/Scripts/Dymola/Airflow/Multizone/Examples/OneOpenDoor.mos @@ -1,4 +1,4 @@ -simulateModel("AixLib.Airflow.Multizone.Examples.OneOpenDoor", stopTime=7200, method="CVode", tolerance=1e-06, resultFile="OneOpenDoor"); +simulateModel("AixLib.Airflow.Multizone.Examples.OneOpenDoor", stopTime=7200, method="dassl", tolerance=1e-06, resultFile="OneOpenDoor"); removePlots(); createPlot(id = 4, position = {73, 34, 537, 565}, diff --git a/AixLib/Resources/Scripts/Dymola/Airflow/Multizone/Examples/PowerLaw.mos b/AixLib/Resources/Scripts/Dymola/Airflow/Multizone/Examples/PowerLaw.mos new file mode 100644 index 0000000000..4b76738855 --- /dev/null +++ b/AixLib/Resources/Scripts/Dymola/Airflow/Multizone/Examples/PowerLaw.mos @@ -0,0 +1,2 @@ +simulateModel("AixLib.Airflow.Multizone.Examples.PowerLaw", stopTime=1, tolerance=1e-06, resultFile="PowerLaw2"); +createPlot(id=1, position={126, 35, 1073, 627}, x="pow_m_flow.dp", y={"pow_2dat.V_flow", "pow_1dat.V_flow", "pow_V_flow.V_flow", "pow_m_flow.V_flow"}, range={-1.0, 1.0, -3.0000000000000008E-05, 3.500000000000001E-05}, erase=false, grid=true, colors={{28,108,200}, {238,46,47}, {0,140,72}, {217,67,180}}, timeUnit="Pa", displayUnits={"m3/s", "m3/s", "m3/s", "m3/s"}); diff --git a/AixLib/Resources/Scripts/Dymola/Airflow/Multizone/Examples/PressurizationData.mos b/AixLib/Resources/Scripts/Dymola/Airflow/Multizone/Examples/PressurizationData.mos new file mode 100644 index 0000000000..c928a02bbb --- /dev/null +++ b/AixLib/Resources/Scripts/Dymola/Airflow/Multizone/Examples/PressurizationData.mos @@ -0,0 +1,7 @@ +simulateModel("AixLib.Airflow.Multizone.Examples.PressurizationData", method="Cvode", stopTime=2592000, numberOfIntervals=0, outputInterval=600, tolerance=1e-06, resultFile="PressurizationData"); +createPlot(id=1, position={40, 72, 1187, 361}, y=fill("", 0), range={0.0, 720.0, -60.0, 60.0}, grid=true, timeUnit="h"); +createPlot(id=1, position={40, 72, 1187, 361}, x="pow_1dat.dp", y=fill("", 0), range={-24.0, 24.0, -60.0, 60.0}, grid=true, subPlot=102, timeUnit="Pa"); +createPlot(id=1, position={40, 72, 1187, 361}, y=fill("", 0), range={0.0, 720.0, -60.0, 60.0}, erase=false, grid=true, timeUnit="h"); +createPlot(id=1, position={40, 72, 1187, 361}, x="pow_1dat.dp", y=fill("", 0), range={-24.0, 24.0, -60.0, 60.0}, erase=false, grid=true, subPlot=102, timeUnit="Pa"); +createPlot(id=1, position={40, 72, 1187, 361}, y={"pow_1dat1.V_flow", "pow_1dat.V_flow", "pow_1dat1.dp", "pow_1dat.dp"}, range={0.0, 720.0, -60.0, 60.0}, erase=false, grid=true, filename="PressurizationData.mat", colors={{244,125,35}, {238,46,47}, {217,67,180}, {0,140,72}}, timeUnit="h", displayUnits={"m3/s", "m3/s", "Pa", "Pa"}); +createPlot(id=1, position={40, 72, 1187, 361}, x="pow_1dat.dp", y={"pow_1dat.V_flow", "pow_1dat.dp"}, range={-24.0, 24.0, -60.0, 60.0}, erase=false, grid=true, subPlot=102, colors={{238,46,47}, {0,140,72}}, patterns={LinePattern.None, LinePattern.None}, markers={MarkerStyle.Dot, MarkerStyle.SmallSquare}, timeUnit="Pa", displayUnits={"m3/s", "Pa"}); diff --git a/AixLib/Resources/Scripts/Dymola/Airflow/Multizone/Examples/TrickleVent.mos b/AixLib/Resources/Scripts/Dymola/Airflow/Multizone/Examples/TrickleVent.mos new file mode 100644 index 0000000000..014630b1d1 --- /dev/null +++ b/AixLib/Resources/Scripts/Dymola/Airflow/Multizone/Examples/TrickleVent.mos @@ -0,0 +1,3 @@ +simulateModel("AixLib.Airflow.Multizone.Examples.TrickleVent", stopTime=2592000, numberOfIntervals=0, outputInterval=600, tolerance=1e-06, resultFile="TrickleVent"); +createPlot(id=1, position={55, 55, 584, 361}, y={"tabDat_m_flow.m_flow", "tabDat_V_flow.V_flow"}, range={0.0, 2600000.0, -0.08, 0.039999999999999994}, grid=true, filename="TrickleVent.mat", colors={{28,108,200}, {0,0,0}}, displayUnits={"kg/s", "m3/s"}); +createPlot(id=1, position={55, 55, 584, 361}, x="tabDat_m_flow.dp", y={"tabDat_V_flow.V_flow", "tabDat_m_flow.m_flow"}, range={-35.0, 45.0, -0.08, 0.039999999999999994}, grid=true, subPlot=102, colors={{238,46,47}, {28,108,200}}, patterns={LinePattern.None, LinePattern.None}, markers={MarkerStyle.Cross, MarkerStyle.Cross}, timeUnit="Pa", displayUnits={"m3/s", "kg/s"}); diff --git a/AixLib/Resources/Scripts/Dymola/Airflow/Multizone/Validation/OneWayFlow.mos b/AixLib/Resources/Scripts/Dymola/Airflow/Multizone/Validation/OneWayFlow.mos new file mode 100644 index 0000000000..2729bd3c8a --- /dev/null +++ b/AixLib/Resources/Scripts/Dymola/Airflow/Multizone/Validation/OneWayFlow.mos @@ -0,0 +1,3 @@ +simulateModel("AixLib.Airflow.Multizone.Validation.OneWayFlow", stopTime=500, numberOfIntervals=0, outputInterval=1, tolerance=1e-6, resultFile="OneWayFlow"); + +createPlot(id=1, position={15, 15, 584, 361}, x="dP", y={"m_flow_data[1]", "m_flow_data[2]", "m_flow_data[3]", "m_flow_data[4]", "m_flow_data[5]", "m_flow_data[6]", "m_flow_data[7]","m_flow_data[8]", "m_flow_testdata[1]", "m_flow_testdata[2]", "m_flow_testdata[3]", "m_flow_testdata[4]", "m_flow_testdata[5]", "m_flow_testdata[6]", "m_flow_testdata[7]","m_flow_testdata[8]"}, range={-50.0, 50.0, -0.15, 0.15}, grid=true, filename="OneWayFlow.mat", colors={{28,108,200},{238,46,47}, {0,140,72}, {217,67,180}, {0,0,0}, {162,29,33},{244,125,35}, {102,44,145}, {28,108,200}, {238,46,47}, {0,140,72},{217,67,180}, {0,0,0}, {162,29,33}, {244,125,35}, {102,44,145}}, patterns={LinePattern.Solid, LinePattern.Solid, LinePattern.Solid, LinePattern.Solid,LinePattern.Solid, LinePattern.Solid, LinePattern.Solid, LinePattern.Solid, LinePattern.Dash, LinePattern.Dash, LinePattern.Dash, LinePattern.Dash,LinePattern.Dash, LinePattern.Dash, LinePattern.Dash, LinePattern.Dash}, timeUnit="Pa", displayUnits={"kg/s", "kg/s", "kg/s", "kg/s", "kg/s", "kg/s", "kg/s", "kg/s", "kg/s", "kg/s", "kg/s", "kg/s", "kg/s", "kg/s","kg/s", "kg/s"}); diff --git a/AixLib/Resources/Scripts/Dymola/BoundaryConditions/WeatherData/BaseClasses/Examples/GetAltitudeTMY3.mos b/AixLib/Resources/Scripts/Dymola/BoundaryConditions/WeatherData/BaseClasses/Examples/GetAltitudeTMY3.mos new file mode 100644 index 0000000000..5112111536 --- /dev/null +++ b/AixLib/Resources/Scripts/Dymola/BoundaryConditions/WeatherData/BaseClasses/Examples/GetAltitudeTMY3.mos @@ -0,0 +1,2 @@ +simulateModel("AixLib.BoundaryConditions.WeatherData.BaseClasses.Examples.GetAltitudeTMY3", tolerance=1e-06, resultFile="GetAltitudeTMY3"); +createPlot(id=1, position={15, 15, 592, 372}, y={"alt"}, range={0.0, 1.0, 180.0, 230.0}, grid=true, colors={{28,108,200}}, timeUnit="s", displayUnits={"m"}); diff --git a/AixLib/Resources/Scripts/Dymola/Controls/Continuous/Examples/PIDHysteresis.mos b/AixLib/Resources/Scripts/Dymola/Controls/Continuous/Examples/PIDHysteresis.mos deleted file mode 100644 index c6b256025b..0000000000 --- a/AixLib/Resources/Scripts/Dymola/Controls/Continuous/Examples/PIDHysteresis.mos +++ /dev/null @@ -1,25 +0,0 @@ -simulateModel("AixLib.Controls.Continuous.Examples.PIDHysteresis", method="Cvode", tolerance=1e-6, stopTime=86400, resultFile="PIDHysteresis"); -createPlot(id = 1, - position = {8, 14, 561, 372}, - y = {"con.u_s", "con.u_m"}, - range = {0, 90000.0, 315.0, 290.0}, - autoscale = true, - autoerase = true, - autoreplot = true, - grid = true, - color = true, - filename = "PIDHysteresis.mat", - leftTitleType = 1, - bottomTitleType = 1); -createPlot(id = 1, - position = {8, 14, 561, 183}, - y = {"con.y"}, - range = {0, 90000.0, 1.5, (-0.5)}, - autoscale = true, - autoerase = true, - autoreplot = true, - grid = true, - color = true, - subPlot = 2, - leftTitleType = 1, - bottomTitleType = 1); diff --git a/AixLib/Resources/Scripts/Dymola/Controls/Continuous/Examples/PIDHysteresisTimer.mos b/AixLib/Resources/Scripts/Dymola/Controls/Continuous/Examples/PIDHysteresisTimer.mos deleted file mode 100644 index dd9a513412..0000000000 --- a/AixLib/Resources/Scripts/Dymola/Controls/Continuous/Examples/PIDHysteresisTimer.mos +++ /dev/null @@ -1,25 +0,0 @@ -simulateModel("AixLib.Controls.Continuous.Examples.PIDHysteresisTimer", method="Cvode", tolerance=1e-6, stopTime=86400, resultFile="PIDHysteresisTimer"); -createPlot(id = 1, - position = {8, 14, 561, 372}, - y = {"con.u_s", "con.u_m"}, - range = {0, 90000.0, 315.0, 290.0}, - autoscale = true, - autoerase = true, - autoreplot = true, - grid = true, - color = true, - filename = "PIDHysteresisTimer.mat", - leftTitleType = 1, - bottomTitleType = 1); -createPlot(id = 1, - position = {8, 14, 561, 183}, - y = {"con.y"}, - range = {0, 90000.0, 1.5, (-0.5)}, - autoscale = true, - autoerase = true, - autoreplot = true, - grid = true, - color = true, - subPlot = 2, - leftTitleType = 1, - bottomTitleType = 1); diff --git a/AixLib/Resources/Scripts/Dymola/Electrical/Examples/ExamplePVSystem.mos b/AixLib/Resources/Scripts/Dymola/Electrical/Examples/ExamplePVSystem.mos new file mode 100644 index 0000000000..6f987f3720 --- /dev/null +++ b/AixLib/Resources/Scripts/Dymola/Electrical/Examples/ExamplePVSystem.mos @@ -0,0 +1,7 @@ +simulateModel("AixLib.Electrical.PVSystem.Examples.ExamplePVSystem", stopTime=31536000, method="dassl", tolerance=1e-06, resultFile="ExamplePVSystem"); +createPlot( +id=1, +position={0, 0, 792, 1247}, +y={"DCOutputPower"}, +grid=true, +colors={{28,108,200}}); diff --git a/AixLib/Resources/Scripts/Dymola/Electrical/Validation/ValidationPVSystem.mos b/AixLib/Resources/Scripts/Dymola/Electrical/Validation/ValidationPVSystem.mos new file mode 100644 index 0000000000..07ce8748a1 --- /dev/null +++ b/AixLib/Resources/Scripts/Dymola/Electrical/Validation/ValidationPVSystem.mos @@ -0,0 +1,7 @@ +simulateModel("AixLib.Electrical.PVSystem.Validation.ValidationPVSystem", startTime=28684800, stopTime=28771200, tolerance=1e-06, method="dassl", resultFile="ValidationPVSystem"); +createPlot( +id=1, +position={0, 0, 792, 1247}, +y={"DCOutputPower","DCOutputPower_Measured"}, +grid=true, c +olors={{28,108,200},{238,46,47}}); diff --git a/AixLib/Resources/Scripts/Dymola/Fluid/BaseClasses/Validation/ActuatorFilter.mos b/AixLib/Resources/Scripts/Dymola/Fluid/BaseClasses/Validation/ActuatorFilter.mos new file mode 100644 index 0000000000..68f52eda8c --- /dev/null +++ b/AixLib/Resources/Scripts/Dymola/Fluid/BaseClasses/Validation/ActuatorFilter.mos @@ -0,0 +1,4 @@ +simulateModel("AixLib.Fluid.BaseClasses.Validation.ActuatorFilter", stopTime=20, method="Cvode", tolerance=1e-06, resultFile="ActuatorFilter"); +createPlot(id=2, position={218, 54, 894, 861}, y={"act_1.y"}, range={0.0, 20.0, -0.5, 1.5}, grid=true, colors={{28,108,200}}, timeUnit="s"); +createPlot(id=2, position={218, 54, 894, 861}, y={"act_2.y"}, range={0.0, 20.0, -50.0, 150.0}, grid=true, subPlot=102, colors={{28,108,200}}, timeUnit="s"); +createPlot(id=2, position={218, 54, 894, 861}, y={"act_y_start1.y", "act_y_start05.y"}, range={0.0, 20.0, 0.4, 1.2000000000000002}, grid=true, subPlot=103, colors={{28,108,200}, {238,46,47}}, timeUnit="s"); diff --git a/AixLib/Resources/Scripts/Dymola/Fluid/BoilerCHP/Examples/CHPSystemNoControl.mos b/AixLib/Resources/Scripts/Dymola/Fluid/BoilerCHP/Examples/CHPSystemNoControl.mos new file mode 100644 index 0000000000..b2db634d33 --- /dev/null +++ b/AixLib/Resources/Scripts/Dymola/Fluid/BoilerCHP/Examples/CHPSystemNoControl.mos @@ -0,0 +1,3 @@ +simulateModel("AixLib.Fluid.BoilerCHP.Examples.CHPSystemNoControl", tolerance=1e-06, stopTime=300, method="dassl", resultFile="CHPSystemNoControl"); +createPlot(id=1, position={15, 10, 1039, 644}, y={"TSet.y"}, range={0.0, 300.0, -0.2, 1.2000000000000002}, grid=true, filename="CHPSystemNoControl.mat", colors={{28,108,200}}); +createPlot(id=1, position={15, 10, 1039, 319}, y={"combinedHeatPower.electricalPower", "combinedHeatPower.thermalPower", "combinedHeatPower.fuelInput"}, range={0.0, 300.0, -20000.0, 160000.0}, grid=true, , filename="CHPSystemNoControl.mat", subPlot=2, colors={{28,108,200}, {238,46,47}, {0,140,72}}); diff --git a/AixLib/Resources/Scripts/Dymola/Fluid/DistrictHeatingCooling/Demands/Examples/OpenLoopHeatPumpCarnot.mos b/AixLib/Resources/Scripts/Dymola/Fluid/DistrictHeatingCooling/Demands/Examples/OpenLoopHeatPumpCarnot.mos index 97a5dad68f..72f47ed221 100644 --- a/AixLib/Resources/Scripts/Dymola/Fluid/DistrictHeatingCooling/Demands/Examples/OpenLoopHeatPumpCarnot.mos +++ b/AixLib/Resources/Scripts/Dymola/Fluid/DistrictHeatingCooling/Demands/Examples/OpenLoopHeatPumpCarnot.mos @@ -1,4 +1,10 @@ translateModel("AixLib.Fluid.DistrictHeatingCooling.Demands.Examples.OpenLoopHeatPumpCarnot"); simulateModel("AixLib.Fluid.DistrictHeatingCooling.Demands.Examples.OpenLoopHeatPumpCarnot", stopTime=100000, method="dassl", tolerance=1e-006, resultFile="OpenLoopHeatPumpCarnot"); -createPlot(id=1, y={"demand.senT_supply.T", "demand.senT_return.T"}, filename="OpenLoopHeatPumpCarnot.mat"); -createPlot(id=2, y={"demand.port_a.m_flow"}, filename="OpenLoopHeatPumpCarnot.mat"); +createPlot( +id=1, +y={"demand.senT_supply.T", "demand.senT_return.T"}, +filename="OpenLoopHeatPumpCarnot.mat"); +createPlot( +id=2, +y={"demand.port_a.m_flow"}, +filename="OpenLoopHeatPumpCarnot.mat"); diff --git a/AixLib/Resources/Scripts/Dymola/Fluid/DistrictHeatingCooling/Demands/Examples/OpenLoopVarTSupplyDpBypass.mos b/AixLib/Resources/Scripts/Dymola/Fluid/DistrictHeatingCooling/Demands/Examples/OpenLoopVarTSupplyDpBypass.mos deleted file mode 100644 index 6f889f04b4..0000000000 --- a/AixLib/Resources/Scripts/Dymola/Fluid/DistrictHeatingCooling/Demands/Examples/OpenLoopVarTSupplyDpBypass.mos +++ /dev/null @@ -1,4 +0,0 @@ -translateModel("AixLib.Fluid.DistrictHeatingCooling.Demands.Examples.OpenLoopVarTSupplyDpBypass"); -simulateModel("AixLib.Fluid.DistrictHeatingCooling.Demands.Examples.OpenLoopVarTSupplyDpBypass", stopTime=100000, method="dassl", tolerance=1e-006, resultFile="OpenLoopVarTSupplyDpBypass"); -createPlot(id=1, y={"demand.senT_supply.T", "demand.senT_return.T"}, filename="OpenLoopVarTSupplyDpBypass.mat"); -createPlot(id=3, y={"demand.port_a.m_flow"}, filename="OpenLoopVarTSupplyDpBypass.mat"); diff --git a/AixLib/Resources/Scripts/Dymola/Fluid/Examples/GeothermalHeatPump.mos b/AixLib/Resources/Scripts/Dymola/Fluid/Examples/GeothermalHeatPump.mos index 19674bd374..dae3f38943 100644 --- a/AixLib/Resources/Scripts/Dymola/Fluid/Examples/GeothermalHeatPump.mos +++ b/AixLib/Resources/Scripts/Dymola/Fluid/Examples/GeothermalHeatPump.mos @@ -1,3 +1,3 @@ -simulateModel("AixLib.Fluid.Examples.GeothermalHeatPump.GeothermalHeatPump", stopTime=86400, method="dassl", tolerance=1e-06, resultFile="GeothermalHeatPump"); +simulateModel("AixLib.Fluid.Examples.GeothermalHeatPump.GeothermalHeatPump", startTime=0, stopTime=86400, method="dassl", tolerance=1e-06, resultFile="GeothermalHeatPump"); createPlot(id=1, position={0, 0, 792, 1247}, y={"heatPumpPower"}, grid=true, colors={{28,108,200}}); createPlot(id=2, y={"heatStorage.layer[1].T","heatStorage.layer[5].T","coldStorage.layer[5].T","coldStorage.layer[1].T"}, colors={{28,108,200},{0,140,72},{238,46,47},{217,67,180}}); diff --git a/AixLib/Resources/Scripts/Dymola/Fluid/FixedResistances/BaseClasses/Validation/PlugFlowCore.mos b/AixLib/Resources/Scripts/Dymola/Fluid/FixedResistances/BaseClasses/Validation/PlugFlowCore.mos deleted file mode 100644 index 02ab576201..0000000000 --- a/AixLib/Resources/Scripts/Dymola/Fluid/FixedResistances/BaseClasses/Validation/PlugFlowCore.mos +++ /dev/null @@ -1,13 +0,0 @@ -translateModel("AixLib.Fluid.FixedResistances.BaseClasses.Validation.PlugFlowCore"); -simulateModel("AixLib.Fluid.FixedResistances.BaseClasses.Validation.PlugFlowCore", stopTime=1000, method="CVode", tolerance=1e-006, resultFile="PlugFlowCore"); -createPlot(id=1, position={15, 10, 584, 397}, - y={"senTemIn.T", "senTemOut.T"}, range={0.0, 1000.0, 48.0, 72.0}, - grid=true, filename="PlugFlowCore.mat", - colors={{28,108,200}, {238,46,47}}, - autoscale = true, - autoerase = true, - autoreplot = true, - color = true, - subPlot=1, - leftTitleType = 1, - bottomTitleType = 1); diff --git a/AixLib/Resources/Scripts/Dymola/Fluid/FixedResistances/Examples/PlugFlowPipe.mos b/AixLib/Resources/Scripts/Dymola/Fluid/FixedResistances/Examples/PlugFlowPipe.mos index 70a9f46963..ba7a170e00 100644 --- a/AixLib/Resources/Scripts/Dymola/Fluid/FixedResistances/Examples/PlugFlowPipe.mos +++ b/AixLib/Resources/Scripts/Dymola/Fluid/FixedResistances/Examples/PlugFlowPipe.mos @@ -1,3 +1,3 @@ -translateModel("AixLib.Fluid.FixedResistances.Examples.PlugFlowPipe"); +translateModel("AixLib.Fluid.FixedResistances.Examples.PlugFlowPipe"); simulateModel("AixLib.Fluid.FixedResistances.Examples.PlugFlowPipe", stopTime=1000, method="CVode", tolerance=1e-006, resultFile="PlugFlowPipe"); -createPlot(id=1, position={15, 10, 584, 397}, y={"senTemIn.T", "senTemOut.T"}, range={0.0, 1000.0, 48.0, 72.0}, grid=true, filename="PlugFlowPipe.mat", colors={{28,108,200}, {238,46,47}}); +createPlot(id=1, position={15, 10, 584, 397}, y={"senTemIn.T", "senTemInNoMix.T", "senTemOutNoMix.T", "senTemOut.T"}, range={0.0, 1000.0, 45.0, 75.0}, grid=true, colors={{28,108,200}, {0,140,72}, {217,67,180}, {238,46,47}}, timeUnit="s", displayUnits={"degC", "degC", "degC", "degC"}); diff --git a/AixLib/Resources/Scripts/Dymola/Fluid/FixedResistances/Examples/PlugFlowPipeDiscretized.mos b/AixLib/Resources/Scripts/Dymola/Fluid/FixedResistances/Examples/PlugFlowPipeDiscretized.mos new file mode 100644 index 0000000000..502a545173 --- /dev/null +++ b/AixLib/Resources/Scripts/Dymola/Fluid/FixedResistances/Examples/PlugFlowPipeDiscretized.mos @@ -0,0 +1,6 @@ +simulateModel("AixLib.Fluid.FixedResistances.Examples.PlugFlowPipeDiscretized", stopTime=1000, method="CVode", tolerance=1e-006, resultFile="PlugFlowPipeDiscretized"); +createPlot(id=1, position={15, 10, 1058, 1113}, y={"senTemIn.T", "senTemOut.T", "bou[1].T"}, range={0.0, 1000.0, 0.0, 80.0}, grid=true, colors={{28,108,200}, {238,46,47}, {0,140,72}}, timeUnit="s", displayUnits={"degC", "degC", "degC"}); +createPlot(id=1, position={15, 10, 1058, 1113}, y={"pip.QEnv_flow"}, range={0.0, 1000.0, -1500.0, 500.0}, grid=true, subPlot=102, colors={{28,108,200}}, timeUnit="s", displayUnits={"W"}); +createPlot(id=1, position={15, 10, 1058, 1113}, y={"pip.dp"}, range={0.0, 1000.0, -10000.0, 20000.0}, grid=true, subPlot=103, colors={{28,108,200}}, timeUnit="s", displayUnits={"Pa"}); +createPlot(id=1, position={15, 10, 1058, 1113}, y={"pip.v"}, range={0.0, 1000.0, -0.5, 1.5}, grid=true, subPlot=104, colors={{28,108,200}}, timeUnit="s", displayUnits={"m/s"}); +createPlot(id=2, position={198, 27, 592, 372}, y={"pip.m_flow_nominal", "pip.m_flow"}, range={0.0, 1000.0, 8.5, 11.5}, grid=true, colors={{28,108,200}, {238,46,47}}, timeUnit="s", displayUnits={"kg/s", "kg/s"}); diff --git a/AixLib/Resources/Scripts/Dymola/Fluid/FixedResistances/Validation/PlugFlowPipes/FlowReversal.mos b/AixLib/Resources/Scripts/Dymola/Fluid/FixedResistances/Validation/PlugFlowPipes/FlowReversal.mos index dcfa735332..2e93adad06 100644 --- a/AixLib/Resources/Scripts/Dymola/Fluid/FixedResistances/Validation/PlugFlowPipes/FlowReversal.mos +++ b/AixLib/Resources/Scripts/Dymola/Fluid/FixedResistances/Validation/PlugFlowPipes/FlowReversal.mos @@ -1,4 +1,4 @@ simulateModel("AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.FlowReversal", stopTime=150, method="CVode", tolerance=1e-06, resultFile="FlowReversal"); createPlot(id=2, position={35, 30, 1072, 772}, y={"m_flow.y"}, range={0.0, 150.0, -4.0, 4.0}, grid=true, colors={{28,108,200}}); createPlot(id=2, position={35, 30, 1072, 254}, y={"senTemIn.T", "senTemOut.T"}, range={0.0, 150.0, 10.0, 50.0}, grid=true, subPlot=2, colors={{28,108,200}, {238,46,47}}, displayUnits={"degC", "degC"}); -createPlot(id=2, position={35, 30, 1072, 255}, y={"pip.cor.v_nominal", "pip.cor.del.v", "pip.cor.res.v_nominal"}, range={0.0, 150.0, -4.0, 4.0}, grid=true, subPlot=3, colors={{28,108,200}, {238,46,47}, {0,140,72}}); +createPlot(id=2, position={35, 30, 1072, 255}, y={"pip.v_nominal", "pip.v"}, range={0.0, 150.0, -4.0, 4.0}, grid=true, subPlot=3, colors={{28,108,200}, {238,46,47}}); diff --git a/AixLib/Resources/Scripts/Dymola/Fluid/FixedResistances/Validation/PlugFlowPipes/TransportWaterAir.mos b/AixLib/Resources/Scripts/Dymola/Fluid/FixedResistances/Validation/PlugFlowPipes/TransportWaterAir.mos index fdd4030bf8..5726ae1d56 100644 --- a/AixLib/Resources/Scripts/Dymola/Fluid/FixedResistances/Validation/PlugFlowPipes/TransportWaterAir.mos +++ b/AixLib/Resources/Scripts/Dymola/Fluid/FixedResistances/Validation/PlugFlowPipes/TransportWaterAir.mos @@ -1,5 +1,5 @@ simulateModel("AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.TransportWaterAir", stopTime=1000, method="CVode", tolerance=1e-06, resultFile="TransportWaterAir"); createPlot(id=1, position={15, 10, 802, 881}, y={"Tin.y", "senTemOutW.T", "senTemOutA.T"}, range={0.0, 1000.0, 15.0, 35.0}, grid=true, colors={{28,108,200}, {238,46,47}, {0,140,72}}, displayUnits={"degC", "degC", "degC"}); -createPlot(id=1, position={15, 10, 802, 291}, y={"duc.ports_b[1].Xi_outflow[1]", "XiIn[1].y"}, range={0.0, 1000.0, 0.005, 0.025}, grid=true, subPlot=2, colors={{28,108,200}, {238,46,47}}); -createPlot(id=1, position={15, 10, 802, 291}, y={"duc.ports_b[1].C_outflow[1]", "CIn[1].y"}, range={0.0, 1000.0, -0.005, 0.015}, grid=true, subPlot=3, colors={{28,108,200}, {238,46,47}}); -createPlot(id=2, position={851, 18, 592, 427}, y={"pip.v_nominal", "pip.cor.res.v", "duc.cor.res.v_nominal", "duc.cor.res.v"}, range={0.0, 0.012, 1.3, 1.7000000000000002}, grid=true, colors={{28,108,200}, {238,46,47}, {0,140,72}, {217,67,180}}); +createPlot(id=1, position={15, 10, 802, 291}, y={"duc.port_b.Xi_outflow[1]", "XiIn[1].y"}, range={0.0, 1000.0, 0.005, 0.025}, grid=true, subPlot=2, colors={{28,108,200}, {238,46,47}}); +createPlot(id=1, position={15, 10, 802, 291}, y={"duc.port_b.C_outflow[1]", "CIn[1].y"}, range={0.0, 1000.0, -0.005, 0.015}, grid=true, subPlot=3, colors={{28,108,200}, {238,46,47}}); +createPlot(id=2, position={851, 18, 592, 427}, y={"pip.v_nominal", "pip.v", "duc.v_nominal", "duc.v"}, range={0.0, 0.012, 1.3, 1.7000000000000002}, grid=true, colors={{28,108,200}, {238,46,47}, {0,140,72}, {217,67,180}}); diff --git a/AixLib/Resources/Scripts/Dymola/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTUMassFlow.mos b/AixLib/Resources/Scripts/Dymola/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTUMassFlow.mos new file mode 100644 index 0000000000..c94da1aa27 --- /dev/null +++ b/AixLib/Resources/Scripts/Dymola/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTUMassFlow.mos @@ -0,0 +1,15 @@ +simulateModel("AixLib.Fluid.HeatExchangers.Examples.WetCoilEffectivenessNTUMassFlow", + stopTime=3600, + method="cvode", + tolerance=1e-6, + resultFile="WetCoilEffectivenessNTUMassFlow"); +createPlot( + id=1, + position={0, 0, 782, 636}, + y={"hex.Q2_flow", "hex.QLat2_flow"}, + grid=true); +createPlot( + id=1, + y={"hex.port_a1.m_flow", "hex.port_a2.m_flow"}, + grid=true, + subPlot=2); diff --git a/AixLib/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos b/AixLib/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos new file mode 100644 index 0000000000..de53eb913d --- /dev/null +++ b/AixLib/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos @@ -0,0 +1,62 @@ +simulateModel("AixLib.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU", + stopTime=1000, + method="cvode", + tolerance=1e-6, + resultFile="WetCoilEffectivenessNTU"); +createPlot( + id=1, + position={59, 59, 1186, 1286}, + y={"hexWetNTU.Q1_flow", "hexWetNTU_TX.Q1_flow"}, + range = {0, 1000, 1E4, 1E5}, + autoscale=false, + autoerase=true, + autoreplot=true, + grid=true, + color=true); +createPlot( + id=1, + y={"hexWetNTU.sta_b2.T", "hexWetNTU_TX.sta_b2.T"}, + range={0.0, 1000.0, 8.0, 16.0}, + autoscale=false, + autoerase=true, + autoreplot=true, + grid=true, + color=true, + subPlot=102); +createPlot( + id=1, + subPlot=3, + y={"relHumOut_eps.phi"}, + range={0.0, 1000.0, 0.4, 1.1}, + autoscale=false, + autoerase=true, + autoreplot=true, + grid=true, + color=true); +createPlot( + id=2, + position={1255, 58, 1140, 1286}, + y={"hexWetNTU.SHR"}, + autoscale=true, + autoerase=true, + autoreplot=true, + grid=true, + color=true); +createPlot( + id=2, + subPlot=2, + y={"hexWetNTU.dryFra"}, + autoscale=true, + autoerase=true, + autoreplot=true, + grid=true, + color=true); +createPlot( + id=2, + subPlot=3, + y={"hexWetNTU.UA_nominal", "hexWetNTU_TX.UA_nominal"}, + autoscale=true, + autoerase=true, + autoreplot=true, + grid=true, + color=true); \ No newline at end of file diff --git a/AixLib/Resources/Scripts/Dymola/Fluid/Movers/DpControlledMovers/Examples/DpControlled_dpConst.mos b/AixLib/Resources/Scripts/Dymola/Fluid/Movers/DpControlledMovers/Examples/DpControlled_dpConst.mos new file mode 100644 index 0000000000..82cadd26ca --- /dev/null +++ b/AixLib/Resources/Scripts/Dymola/Fluid/Movers/DpControlledMovers/Examples/DpControlled_dpConst.mos @@ -0,0 +1,29 @@ +removePlots(); +simulateModel("AixLib.Fluid.Movers.DpControlledMovers.Examples.DpControlled_dpConst", startTime=0, stopTime=3600, tolerance=1e-6, method="dassl", resultFile="DpControlled_dpConst"); + +createPlot(id=1, + x="dpControlled_dp.mov.VMachine_flow", + y={"dpControlled_dp.mov.dpMachine"}, + timeUnit="m3/s", + displayUnits={"Pa"}, + autoscale = true +); + +createPlot(id=2, subPlot=1, + y={"dpControlled_dp.mov.m_flow", "m_flow_nominal"}, + autoscale = true +); +createPlot(id=2, subPlot=2, + y={"dpControlled_dp.mov.dpMachine", "dp_nominal"}, + displayUnits={"bar", "bar"}, + autoscale = true +); +createPlot(id=2, subPlot=3, + y={"val.y_actual"}, + autoscale = true +); +createPlot(id=2, subPlot=4, + y={"elEnergy"}, + displayUnits={"kW.h"}, + autoscale = true +); \ No newline at end of file diff --git a/AixLib/Resources/Scripts/Dymola/Fluid/Movers/DpControlledMovers/Examples/DpControlled_dpVar.mos b/AixLib/Resources/Scripts/Dymola/Fluid/Movers/DpControlledMovers/Examples/DpControlled_dpVar.mos new file mode 100644 index 0000000000..c785e2f6ed --- /dev/null +++ b/AixLib/Resources/Scripts/Dymola/Fluid/Movers/DpControlledMovers/Examples/DpControlled_dpVar.mos @@ -0,0 +1,29 @@ +removePlots(); +simulateModel("AixLib.Fluid.Movers.DpControlledMovers.Examples.DpControlled_dpVar", startTime=0, stopTime=3600, tolerance=1e-6, method="dassl", resultFile="DpControlled_dpVar"); + +createPlot(id=1, + x="dpControlled_dp.mov.VMachine_flow", + y={"dpControlled_dp.mov.dpMachine"}, + timeUnit="m3/s", + displayUnits={"Pa"}, + autoscale = true +); + +createPlot(id=2, subPlot=1, + y={"dpControlled_dp.mov.m_flow", "m_flow_nominal"}, + autoscale = true +); +createPlot(id=2, subPlot=2, + y={"dpControlled_dp.mov.dpMachine", "dp_nominal"}, + displayUnits={"bar", "bar"}, + autoscale = true +); +createPlot(id=2, subPlot=3, + y={"val.y_actual"}, + autoscale = true +); +createPlot(id=2, subPlot=4, + y={"elEnergy"}, + displayUnits={"kW.h"}, + autoscale = true +); \ No newline at end of file diff --git a/AixLib/Resources/Scripts/Dymola/Fluid/Movers/PumpsPolynomialBased/Examples/PumpHdpVarControlTest.mos b/AixLib/Resources/Scripts/Dymola/Fluid/Movers/PumpsPolynomialBased/Examples/PumpHdpVarControlTest.mos deleted file mode 100644 index 1bf4835164..0000000000 --- a/AixLib/Resources/Scripts/Dymola/Fluid/Movers/PumpsPolynomialBased/Examples/PumpHdpVarControlTest.mos +++ /dev/null @@ -1,31 +0,0 @@ -// Script generated by Dymola Thu Feb 01 18:05:59 2018 -// Plot commands -removePlots(false); -Advanced.FilenameInLegend = false; -Advanced.SequenceInLegend = true; -Advanced.PlotLegendTooltip = true; -Advanced.ShowPlotTooltip = true; -Advanced.FullPlotTooltip = true; -Advanced.DefaultAutoErase = true; -Advanced.Legend.Horizontal = true; -Advanced.Legend.Frame = false; -Advanced.Legend.Transparent = true; -Advanced.Legend.Location = 1; -Advanced.FilesToKeep = 2; -createPlot(id=1, position={7, 10, 584, 630}, y={"ctrlDpVarH.headControl.y", "ctrlDpVarH.pumpBus.head", - "pump.Hnom", "pump.Hstart"}, range={0.0, 10.0, -0.1, 2.0}, grid=true, legendLocation=6, legendHorizontal=false, colors={{28,108,200}, {238,46,47}, {0,140,72}, {217,67,180}}, patterns={LinePattern.Solid, LinePattern.Dash, LinePattern.Dot, LinePattern.DashDot}, thicknesses={0.25, 0.5, 0.25, 0.25}, timeUnit="min"); -createPlot(id=2, position={357, 31, 581, 591}, y={"pump.maxMinTable.y[1]", "pump.maxMinTable.y[2]", -"pump.head", "ctrlDpVarH.headControl.y"}, heading="Maximum / minimum pump head limits and current head", range={0.0, 10.0, -1.0, 7.0}, grid=true, legendLocation=4, legendHorizontal=false, colors={{28,108,200}, {238,46,47}, {0,140,72}, {217,67,180}}, timeUnit="min"); -createPlot(id=2, position={357, 31, 581, 293}, y={"pump.Vflow_m3h.y"}, range={0.0, 10.0, -0.5, 2.5}, grid=true, legendLocation=4, legendHorizontal=false, subPlot=2, colors={{28,108,200}}, timeUnit="min"); -createPlot(id=3, position={634, 134, 584, 421}, x="pump.Vflow_m3h.y", y={"pump.head", "pump.headUnbound", "ctrlDpVarH.headControl.y"}, range={0.0, 2.4000000000000004, -0.2, 2.0}, grid=true, colors={{28,108,200}, {238,46,47}, {0,140,72}}); -createPlot(id=4, position={165, 8, 584, 734}, y={"pump.Vflow_m3h.y"}, range={0.0, 600.0, -1.0, 3.0}, grid=true, colors={{28,108,200}}); -createPlot(id=4, position={165, 8, 584, 143}, y={"pump.head"}, range={0.0, 600.0, -1.0, 2.0}, grid=true, subPlot=2, colors={{28,108,200}}); -createPlot(id=4, position={165, 8, 584, 142}, y={"pump.n"}, range={0.0, 600.0, -2000.0, 4000.0}, grid=true, subPlot=3, colors={{28,108,200}}); -createPlot(id=4, position={165, 8, 584, 143}, y={"pump.power"}, range={0.0, 600.0, -20.0, 40.0}, grid=true, subPlot=4, colors={{28,108,200}}); -createPlot(id=4, position={165, 8, 584, 143}, y={"pump.eta"}, range={0.0, 600.0, -0.5, 1.0}, grid=true, subPlot=5, colors={{28,108,200}}); - -// Non-standard flags -Advanced.InvisibleConnections = true; -Advanced.SaveModelicaPath = true; -Evaluate = true; -OutputCPUtime = true; diff --git a/AixLib/Resources/Scripts/Dymola/Fluid/Movers/PumpsPolynomialBased/Examples/PumpHeadControlled.mos b/AixLib/Resources/Scripts/Dymola/Fluid/Movers/PumpsPolynomialBased/Examples/PumpHeadControlled.mos new file mode 100644 index 0000000000..57e10540c3 --- /dev/null +++ b/AixLib/Resources/Scripts/Dymola/Fluid/Movers/PumpsPolynomialBased/Examples/PumpHeadControlled.mos @@ -0,0 +1,7 @@ +simulateModel("AixLib.Fluid.Movers.PumpsPolynomialBased.Examples.PumpHeadControlled", tolerance=1e-6, stopTime=600, method="dassl", resultFile="PumpHeadControlled"); +removePlots(false); +createPlot(id=1, position={0, 0, 1578, 755}, y={"rampValvePosition.y"}, heading="Valve opening", range={0.0, 600.0, 0.0, 0.6000000000000001}, grid=true, colors={{28,108,200}}); +createPlot(id=1, position={0, 0, 1578, 249}, y={"pump.pumpBus.dpMea", "pump.pumpBus.dpSet"}, heading="Head", range={0.0, 600.0, -1000.0, 5000.0}, grid=true, subPlot=2, colors={{28,108,200}, {238,46,47}}); +createPlot(id=1, position={0, 0, 1578, 248}, y={"pump.pumpBus.onSet"}, heading="On/Off", range={0.0, 600.0, -0.2, 1.2000000000000002}, grid=true, subPlot=3, colors={{28,108,200}}); + + diff --git a/AixLib/Resources/Scripts/Dymola/Fluid/Movers/PumpsPolynomialBased/Examples/PumpNdpVarControlTest.mos b/AixLib/Resources/Scripts/Dymola/Fluid/Movers/PumpsPolynomialBased/Examples/PumpNdpVarControlTest.mos deleted file mode 100644 index e6be507800..0000000000 --- a/AixLib/Resources/Scripts/Dymola/Fluid/Movers/PumpsPolynomialBased/Examples/PumpNdpVarControlTest.mos +++ /dev/null @@ -1,18 +0,0 @@ -// Script generated by Dymola Thu Feb 01 18:21:51 2018 -// Plot commands -removePlots(false); -createPlot(id=1, position={153, 60, 600, 583}, y={"ctrlDpVarN.headControl.y", "ctrlDpVarN.pumpBus.head", - "pump.Hnom", "pump.Hstart"}, range={0.0, 10.0, -0.5, 2.0}, grid=true, legendLocation=6, legendHorizontal=false, colors={{28,108,200}, {238,46,47}, {238,46,47}, {0,140,72}}, patterns={LinePattern.Solid, LinePattern.Dash, LinePattern.Dot, LinePattern.DashDot}, thicknesses={0.25, 0.5, 0.25, 0.25}, timeUnit="min"); -createPlot(id=1, position={153, 60, 600, 289}, y={"pump.n", "ctrlDpVarN.pumpParam.nMin", "ctrlDpVarN.pumpParam.nMax"}, range={0.0, 10.0, -1000.0, 5000.0}, grid=true, legendLocation=6, legendHorizontal=false, legends={"pump.physics.n (limited)", "", ""}, subPlot=2, colors={{0,0,0}, {28,108,200}, {238,46,47}}, patterns={LinePattern.Dash, LinePattern.Dot, LinePattern.DashDot}, thicknesses={0.5, 0.25, 0.25}, timeUnit="min"); -createPlot(id=2, position={10, 16, 600, 462}, y={"pump.Vflow_m3h.y", "pump.Qnom", "pump.Qstart"}, range={0.0, 10.0, -0.2, 2.4}, grid=true, legendLocation=4, legendHorizontal=false, colors={{28,108,200}, {238,46,47}, {0,140,72}}, patterns={LinePattern.Solid, LinePattern.Dash, LinePattern.Dot}, timeUnit="min"); -createPlot(id=3, position={722, 200, 584, 421}, x="pump.Vflow_m3h.y", y={"pump.head"}, range={0.0, 2.4000000000000004, -0.2, 2.0}, grid=true, colors={{28,108,200}}); -createPlot(id=4, position={106, 0, 584, 733}, y={"pump.Vflow_m3h.y"}, range={0.0, 600.0, -1.0, 3.0}, grid=true, colors={{28,108,200}}); -createPlot(id=4, position={106, 0, 584, 142}, y={"pump.head"}, range={0.0, 600.0, -1.0, 2.0}, grid=true, subPlot=2, colors={{28,108,200}}); -createPlot(id=4, position={106, 0, 584, 143}, y={"pump.n"}, range={0.0, 600.0, -1000.0, 3000.0}, grid=true, subPlot=3, colors={{0,0,0}}, patterns={LinePattern.Dash}, thicknesses={0.5}); -createPlot(id=4, position={106, 0, 584, 142}, y={"pump.power"}, range={0.0, 600.0, -20.0, 40.0}, grid=true, subPlot=4, colors={{28,108,200}}); -createPlot(id=4, position={106, 0, 584, 143}, y={"pump.eta"}, range={0.0, 600.0, -0.5, 1.0}, grid=true, subPlot=5, colors={{28,108,200}}); - -// Non-standard flags -Advanced.StoreProtectedVariables = true; -Evaluate = true; -OutputCPUtime = true; diff --git a/AixLib/Resources/Scripts/Dymola/Fluid/Movers/PumpsPolynomialBased/Examples/PumpSpeedControlled.mos b/AixLib/Resources/Scripts/Dymola/Fluid/Movers/PumpsPolynomialBased/Examples/PumpSpeedControlled.mos new file mode 100644 index 0000000000..928da9ed11 --- /dev/null +++ b/AixLib/Resources/Scripts/Dymola/Fluid/Movers/PumpsPolynomialBased/Examples/PumpSpeedControlled.mos @@ -0,0 +1,6 @@ +simulateModel("AixLib.Fluid.Movers.PumpsPolynomialBased.Examples.PumpSpeedControlled", tolerance=1e-6, stopTime=600.0, method="dassl", resultFile="PumpSpeedControlledTest"); +removePlots(false); +createPlot(id=1, position={0, 0, 1578, 755}, y={"rampValvePosition.y"}, heading="Valve opening", range={0.0, 600.0, 0.0, 0.6000000000000001}, grid=true, filename="PumpSpeedControlledTest.mat", colors={{28,108,200}}); +createPlot(id=1, position={0, 0, 1578, 249}, y={"pumpBus.rpmMea", "pumpBus.rpmSet"}, heading="Speed", range={0.0, 600.0, -1000.0, 5000.0}, grid=true, filename="PumpSpeedControlledTest.mat", subPlot=2, colors={{28,108,200}, {238,46,47}}); +createPlot(id=1, position={0, 0, 1578, 248}, y={"pumpBus.onSet"}, heading="On/Off", range={0.0, 600.0, -0.2, 1.2000000000000002}, grid=true, filename="PumpSpeedControlledTest.mat", subPlot=3, colors={{28,108,200}}); + diff --git a/AixLib/Resources/Scripts/Dymola/Fluid/Movers/PumpsPolynomialBased/Examples/PumpSpeedControlledDpV.mos b/AixLib/Resources/Scripts/Dymola/Fluid/Movers/PumpsPolynomialBased/Examples/PumpSpeedControlledDpV.mos new file mode 100644 index 0000000000..5431950ea6 --- /dev/null +++ b/AixLib/Resources/Scripts/Dymola/Fluid/Movers/PumpsPolynomialBased/Examples/PumpSpeedControlledDpV.mos @@ -0,0 +1,6 @@ +simulateModel("AixLib.Fluid.Movers.PumpsPolynomialBased.Examples.PumpSpeedControlledDpV", tolerance=1e-6, stopTime=600.0, method="dassl", resultFile="PumpSpeedControlledDpV"); +removePlots(false); +createPlot(id=1, position={0, 0, 1578, 755}, y={"rampValvePosition.y"}, heading="Valve opening", range={0.0, 600.0, 0.0, 0.6000000000000001}, grid=true, filename="PumpSpeedControlledDpV.mat", colors={{28,108,200}}); +createPlot(id=1, position={0, 0, 1578, 249}, y={"pump.pumpBus.rpmMea", "pump.pumpBus.rpmSet"}, heading="Speed", range={0.0, 600.0, -1000.0, 5000.0}, grid=true, filename="PumpSpeedControlledDpV.mat", subPlot=2, colors={{28,108,200}, {238,46,47}}); +createPlot(id=1, position={0, 0, 1578, 248}, y={"pump.pumpBus.onSet"}, heading="On/Off", range={0.0, 600.0, -0.2, 1.2000000000000002}, grid=true, filename="PumpSpeedControlledDpV.mat", subPlot=3, colors={{28,108,200}}); + diff --git a/AixLib/Resources/Scripts/Dymola/Fluid/Movers/PumpsPolynomialBased/Examples/PumpSpeedControlledLimiterTest.mos b/AixLib/Resources/Scripts/Dymola/Fluid/Movers/PumpsPolynomialBased/Examples/PumpSpeedControlledLimiterTest.mos deleted file mode 100644 index 621b7f1ed3..0000000000 --- a/AixLib/Resources/Scripts/Dymola/Fluid/Movers/PumpsPolynomialBased/Examples/PumpSpeedControlledLimiterTest.mos +++ /dev/null @@ -1,12 +0,0 @@ -// Script generated by Dymola Fri Dec 01 19:23:18 2017 -// Plot commands -createPlot(id=1, position={15, 10, 584, 617}, y={"pump.maxMinTable.y[2]", "pump.variableLimiter.u", "pump.variableLimiter.limit1", - "pump.n"}, range={0.0, 30.0, 0.0, 6000.0}, grid=true, legendLocation=4, legendHorizontal=false, colors={{238,46,47}, {28,108,200}, {0,140,72}, {0,0,0}}, patterns={LinePattern.Solid, LinePattern.Solid, LinePattern.Solid, LinePattern.Dash}, thicknesses={0.25, 0.25, 0.25, 0.5}); -createPlot(id=1, position={15, 10, 584, 306}, y={"pump.head", "pump.Hnom"}, range={0.0, 30.0, 0.0, 35.0}, grid=true, legendLocation=4, legendHorizontal=false, subPlot=2, colors={{28,108,200}, {238,46,47}}); -createPlot(id=2, position={355, 39, 584, 525}, y={"pump.Vflow_m3h.y"}, range={0.0, 30.0, -1.0, 7.0}, grid=true, colors={{28,108,200}}); -createPlot(id=2, position={355, 39, 584, 260}, y={"pump.head"}, range={0.0, 30.0, 0.0, 35.0}, grid=true, subPlot=2, colors={{28,108,200}}); - -// Non-standard flags -Advanced.StoreProtectedVariables = true; -Evaluate = true; -OutputCPUtime = true; diff --git a/AixLib/Resources/Scripts/Dymola/Fluid/Movers/PumpsPolynomialBased/Examples/PumpSpeedControlledTest.mos b/AixLib/Resources/Scripts/Dymola/Fluid/Movers/PumpsPolynomialBased/Examples/PumpSpeedControlledTest.mos deleted file mode 100644 index 67c20b3b2f..0000000000 --- a/AixLib/Resources/Scripts/Dymola/Fluid/Movers/PumpsPolynomialBased/Examples/PumpSpeedControlledTest.mos +++ /dev/null @@ -1,19 +0,0 @@ -// Script generated by Dymola Tue May 8 14:43:54 2018 -// Plot commands -removePlots(false); -createPlot(id=1, position={17, 10, 582, 611}, y={"pump.pumpBus.rpm_Input", "pump.n", "pump.pumpParam.nMin", "pump.pumpParam.nMax"}, heading="Pump speed", range={0.0, 600.0, -1000.0, 5000.0}, grid=true, legendLocation=4, legendHorizontal=false, colors={{28,108,200}, {238,46,47}, {0,140,72}, {217,67,180}}, patterns={LinePattern.Solid, LinePattern.Dash, LinePattern.Dot, LinePattern.DashDot}, thicknesses={0.25, 0.5, 0.25, 0.25}); -createPlot(id=1, position={17, 10, 582, 303}, y={"pump.maxMinTable.y[2]", "pump.variableLimiter.u", "pump.variableLimiter.limit1", - "pump.n"}, range={0.0, 600.0, -1000.0, 5000.0}, grid=true, legendLocation=4, legendHorizontal=false, subPlot=2, colors={{238,46,47}, {28,108,200}, {0,140,72}, {0,0,0}}, patterns={LinePattern.Solid, LinePattern.Solid, LinePattern.Solid, LinePattern.Dash}, thicknesses={0.25, 0.25, 0.25, 0.5}); -createPlot(id=2, position={631, 11, 584, 421}, y={"pump.Vflow_m3h.y", "pump.head"}, range={0.0, 600.0, -0.5, 6.5}, grid=true, colors={{28,108,200}, {238,46,47}}); -createPlot(id=3, position={465, 44, 584, 683}, y={"pump.eta"}, range={0.0, 600.0, -2.0, 4.0}, grid=true, colors={{28,108,200}}); -createPlot(id=3, position={465, 44, 584, 132}, y={"pump.head"}, range={0.0, 600.0, -5.0, 10.0}, grid=true, subPlot=2, colors={{28,108,200}}); -createPlot(id=3, position={465, 44, 584, 133}, y={"pump.power"}, range={0.0, 600.0, -50.0, 100.0}, grid=true, subPlot=3, colors={{28,108,200}}); -createPlot(id=3, position={465, 44, 584, 132}, y={"pump.Vflow_m3h.y"}, range={0.0, 600.0, -5.0, 10.0}, grid=true, subPlot=4, colors={{28,108,200}}); -createPlot(id=3, position={465, 44, 584, 133}, y={"pump.n"}, range={0.0, 600.0, -5000.0, 10000.0}, grid=true, subPlot=5, colors={{28,108,200}}); -createPlot(id=4, position={75, 70, 584, 597}, y={"pump.headUnbound", "pump.onOffHead.y", "pump.criticalDamping.y"}, heading="Check pump head calculation", range={0.0, 600.0, -1.0, 7.0}, grid=true, legendLocation=4, legendHorizontal=false, colors={{28,108,200}, {238,46,47}, {0,0,0}}, patterns={LinePattern.Solid, LinePattern.Dash, LinePattern.Dot}, thicknesses={0.5, 0.25, 0.25}); -createPlot(id=4, position={75, 70, 584, 296}, y={"pump.criticalDamping.y", "pump.head"}, heading="Values should match. Check initialization options of criticalDamping if head remains zero all the time.", range={0.0, 600.0, -1.0, 7.0}, grid=true, legendLocation=4, legendHorizontal=false, subPlot=2, colors={{28,108,200}, {238,46,47}}, patterns={LinePattern.Solid, LinePattern.Dash}, thicknesses={0.5, 0.25}); - -// Non-standard flags -Advanced.StoreProtectedVariables = true; -Evaluate = true; -OutputCPUtime = true; \ No newline at end of file diff --git a/AixLib/Resources/Scripts/Dymola/Fluid/Movers/Validation/PowerExact.mos b/AixLib/Resources/Scripts/Dymola/Fluid/Movers/Validation/PowerExact.mos index 2ea56dc2b1..c644ff936a 100644 --- a/AixLib/Resources/Scripts/Dymola/Fluid/Movers/Validation/PowerExact.mos +++ b/AixLib/Resources/Scripts/Dymola/Fluid/Movers/Validation/PowerExact.mos @@ -1,3 +1,3 @@ simulateModel("AixLib.Fluid.Movers.Validation.PowerExact", tolerance=1e-6, stopTime=200, method="CVode", resultFile="PowerExact"); createPlot(id=1, position={137, 58, 814, 653}, y={"pump_Nrpm.P", "pump_dp.P", "pump_m_flow.P"}, range={0.0, 200.0, 60.0, 200.0}, grid=true, filename="PowerExact.mat", colors={{0,0,255}, {255,0,0}, {0,128,0}}, patterns={LinePattern.Solid, LinePattern.Dash, LinePattern.DashDot}); -createPlot(id=1, position={137, 58, 814, 323}, y={"pump_Nrpm.per.speed_rpm_nominal", "pump_Nrpm.Nrpm"}, range={0.0, 200.0, 2200.0, 3600.0}, grid=true, subPlot=2, colors={{0,0,255}, {255,0,0}}); +createPlot(id=1, position={137, 58, 814, 323}, y={"pump_Nrpm.per.speed_rpm_nominal", "pump_Nrpm.Nrpm"}, range={0.0, 200.0, 2200.0, 3600.0}, grid=true, subPlot=2, colors={{0,0,255}, {255,0,0}}, displayUnits={"rev/min", "rev/min"}); diff --git a/AixLib/Resources/Scripts/Dymola/Fluid/Movers/Validation/PowerSimplified.mos b/AixLib/Resources/Scripts/Dymola/Fluid/Movers/Validation/PowerSimplified.mos index 405e475898..4ccec78c6b 100644 --- a/AixLib/Resources/Scripts/Dymola/Fluid/Movers/Validation/PowerSimplified.mos +++ b/AixLib/Resources/Scripts/Dymola/Fluid/Movers/Validation/PowerSimplified.mos @@ -1,3 +1,3 @@ simulateModel("AixLib.Fluid.Movers.Validation.PowerSimplified", tolerance=1e-6, stopTime=200, method="CVode", resultFile="PowerSimplified"); createPlot(id=1, position={137, 58, 814, 653}, y={"pump_Nrpm.P", "pump_dp.P", "pump_m_flow.P"}, range={0.0, 200.0, 60.0, 200.0}, grid=true, filename="PowerSimplified.mat", colors={{0,0,255}, {255,0,0}, {0,128,0}}, patterns={LinePattern.Solid, LinePattern.Dash, LinePattern.DashDot}); -createPlot(id=1, position={137, 58, 814, 323}, y={"pump_Nrpm.per.speed_rpm_nominal", "pump_Nrpm.Nrpm"}, range={0.0, 200.0, 2200.0, 3600.0}, grid=true, subPlot=2, colors={{0,0,255}, {255,0,0}}); +createPlot(id=1, position={137, 58, 814, 323}, y={"pump_Nrpm.per.speed_rpm_nominal", "pump_Nrpm.Nrpm"}, range={0.0, 200.0, 2200.0, 3600.0}, grid=true, subPlot=2, colors={{0,0,255}, {255,0,0}}, displayUnits={"rev/min", "rev/min"}); diff --git a/AixLib/Resources/Scripts/Dymola/Fluid/Sources/Examples/Outside_CpData.mos b/AixLib/Resources/Scripts/Dymola/Fluid/Sources/Examples/Outside_CpData.mos new file mode 100644 index 0000000000..c22293e551 --- /dev/null +++ b/AixLib/Resources/Scripts/Dymola/Fluid/Sources/Examples/Outside_CpData.mos @@ -0,0 +1,31 @@ +simulateModel("AixLib.Fluid.Sources.Examples.Outside_CpData", startTime=1.728e+07, stopTime=1.78848e+07, method="CVode", tolerance=1e-6, resultFile="Outside_CpData"); +createPlot(id = 3, + position = {55, 24, 679, 513}, + y = {"weaDat.weaBus.winDir"}, + range = {17250000.0, 17900000.0, 400.0, -100.0}, + autoscale = true, + autoerase = true, + autoreplot = true, + description = false, + grid = true, + color = true, + online = false, + filename = "Outside_CpData.mat", + leftTitleType = 1, + bottomTitleType = 1, + colors = {{0, 0, 255}}); +createPlot(id = 3, + position = {55, 24, 679, 253}, +y = {"north.pWin", "west.pWin", "east.pWin", "south.pWin"}, + range = {17250000.0, 17900000.0, 100.0, -100.0}, + autoscale = true, + autoerase = true, + autoreplot = true, + description = false, + grid = true, + color = true, + online = false, + subPlot = 2, + leftTitleType = 1, + bottomTitleType = 1, + colors = {{0, 0, 255}, {255, 0, 0}, {0, 128, 0}, {255, 0, 255}}); diff --git a/AixLib/Resources/Scripts/Dymola/Fluid/Sources/Examples/Outside_CpData_Angles.mos b/AixLib/Resources/Scripts/Dymola/Fluid/Sources/Examples/Outside_CpData_Angles.mos new file mode 100644 index 0000000000..f3a90582c0 --- /dev/null +++ b/AixLib/Resources/Scripts/Dymola/Fluid/Sources/Examples/Outside_CpData_Angles.mos @@ -0,0 +1,31 @@ +simulateModel("AixLib.Fluid.Sources.Examples.Outside_CpData_Angles", startTime=0, stopTime=20, method="CVode", tolerance=1e-6, resultFile="Outside_CpData_Angles"); +createPlot(id = 3, + position = {55, 24, 679, 513}, + y = {"weaDat.weaBus.winDir"}, + range = {17250000.0, 17900000.0, 400.0, -100.0}, + autoscale = true, + autoerase = true, + autoreplot = true, + description = false, + grid = true, + color = true, + online = false, + filename = "Outside_CpData_Angles.mat", + leftTitleType = 1, + bottomTitleType = 1, + colors = {{0, 0, 255}}); +createPlot(id = 3, + position = {55, 24, 679, 253}, + y = {"symNor.CpAct","symWes.CpAct","asyNor.CpAct","asyWes.CpAct"}, + range = {17250000.0, 17900000.0, 100.0, -100.0}, + autoscale = true, + autoerase = true, + autoreplot = true, + description = false, + grid = true, + color = true, + online = false, + subPlot = 2, + leftTitleType = 1, + bottomTitleType = 1, + colors = {{0, 0, 255}, {255, 0, 0}, {0, 128, 0}, {255, 0, 255}}); diff --git a/AixLib/Resources/Scripts/Dymola/Fluid/Sources/Examples/Outside_CpData_Specification.mos b/AixLib/Resources/Scripts/Dymola/Fluid/Sources/Examples/Outside_CpData_Specification.mos new file mode 100644 index 0000000000..013feb482e --- /dev/null +++ b/AixLib/Resources/Scripts/Dymola/Fluid/Sources/Examples/Outside_CpData_Specification.mos @@ -0,0 +1,2 @@ +simulateModel("AixLib.Fluid.Sources.Examples.Outside_CpData_Specification", stopTime=86400, tolerance=1e-06, resultFile="Outside_CpData_Specification"); +createPlot(id=1, position={15, 15, 989, 663}, x="winDir.y", y={"winDir.y", "nor.pWin", "weaDat.winSpe"}, range={0.0, 360.0, -0.5, 6.5}, grid=true, colors={{28,108,200}, {238,46,47}, {0,140,72}}, timeUnit="deg", displayUnits={"rad", "Pa", "m/s"}); diff --git a/AixLib/Resources/Scripts/Dymola/Fluid/Sources/Validation/Outside_CpData_Directions.mos b/AixLib/Resources/Scripts/Dymola/Fluid/Sources/Validation/Outside_CpData_Directions.mos new file mode 100644 index 0000000000..9e0d5eddba --- /dev/null +++ b/AixLib/Resources/Scripts/Dymola/Fluid/Sources/Validation/Outside_CpData_Directions.mos @@ -0,0 +1,4 @@ +simulateModel("AixLib.Fluid.Sources.Validation.Outside_CpData_Directions", stopTime=86400, method="Cvode", tolerance=1e-06, resultFile="Outside_CpData_Directions"); +createPlot(id=1, position={15, 15, 1140, 1003}, y={"winDir.y"}, range={0.0, 1.0, -100.0, 400.0}, grid=true, subPlot=101, colors={{28,108,200}}, timeUnit="d", displayUnits={"deg"}); +createPlot(id=1, position={15, 15, 1140, 1003}, y={"nor.pWin", "eas.pWin", "sou.pWin", "wes.pWin"}, range={0.0, 1.0, -0.2, 0.8}, grid=true, subPlot=102, colors={{28,108,200}, {238,46,47}, {0,140,72}, {217,67,180}}, timeUnit="d", displayUnits={"Pa", "Pa", "Pa", "Pa"}); +createPlot(id=1, position={15, 15, 1140, 1003}, y={"nor.alpha", "eas.alpha", "sou.alpha", "wes.alpha"}, range={0.0, 1.0, -200.0, 800.0}, grid=true, subPlot=103, colors={{28,108,200}, {238,46,47}, {0,140,72}, {217,67,180}}, timeUnit="d", displayUnits={"deg", "deg", "deg", "deg"}); diff --git a/AixLib/Resources/Scripts/Dymola/Media/Examples/SteamDerivativeCheck.mos b/AixLib/Resources/Scripts/Dymola/Media/Examples/SteamDerivativeCheck.mos new file mode 100644 index 0000000000..ca87b8cead --- /dev/null +++ b/AixLib/Resources/Scripts/Dymola/Media/Examples/SteamDerivativeCheck.mos @@ -0,0 +1,15 @@ +simulateModel("AixLib.Media.Examples.SteamDerivativeCheck", startTime=0, stopTime=1, tolerance=1E-10, method="dassl", resultFile="MediaExamplesSteamDerivativeCheck"); +createPlot(id=1, + position={34, 26, 626, 458}, + y={"der(hVapSym)", "der(hVapCod)"}, + range={0.0, 1.0, -100000.0, 500000.0}, + grid=true, + colors={{28,108,200}, {238,46,47}}); +createPlot(id=1, + position={34, 26, 626, 227}, + y={"der(cpSym)", "der(cpCod)", "der(cvSym)", "der(cvCod)"}, + range={0.0, 1.0, -20.0, 80.0}, + grid=true, + subPlot=2, + colors={{28,108,200}, {238,46,47}, {0,140,72}, {217,67,180}}); + diff --git a/AixLib/Resources/Scripts/Dymola/Media/Examples/SteamProperties.mos b/AixLib/Resources/Scripts/Dymola/Media/Examples/SteamProperties.mos new file mode 100644 index 0000000000..6989f0f8a7 --- /dev/null +++ b/AixLib/Resources/Scripts/Dymola/Media/Examples/SteamProperties.mos @@ -0,0 +1,121 @@ +simulateModel("AixLib.Media.Examples.SteamProperties", method="dassl", startTime=0, stopTime=1.0, tolerance=1e-06, resultFile="SteamProperties"); +createPlot( + id = 1, + x = "T_degC", + y = {"p"}, + grid = true +) +createPlot( + id = 2, + x = "T_degC", + y = {"X[1]"}, + grid = true +) +createPlot( + id = 3, + x = "T_degC", + y = {"d"}, + grid = true +) +createPlot( + id = 4, + x = "T_degC", + y = {"eta"}, + grid = true +) +createPlot( + id = 5, + x = "T_degC", + y = {"h"}, + grid = true +) +createPlot( + id = 6, + x = "T_degC", + y = {"u"}, + grid = true +) +createPlot( + id = 7, + x = "T_degC", + y = {"s"}, + grid = true +) +createPlot( + id = 8, + x = "T_degC", + y = {"g"}, + grid = true +) +createPlot( + id = 9, + x = "T_degC", + y = {"f"}, + grid = true +) +createPlot( + id = 10, + x = "T_degC", + y = {"hIse"}, + grid = true +) +createPlot( + id = 11, + x = "T_degC", + y = {"beta"}, + grid = true +) +createPlot( + id = 12, + x = "T_degC", + y = {"kappa"}, + grid = true +) +createPlot( + id = 13, + x = "T_degC", + y = {"ddhp"}, + grid = true +) +createPlot( + id = 14, + x = "T_degC", + y = {"ddph"}, + grid = true + ) +createPlot( + id = 15, + x = "T_degC", + y = {"cp"}, + grid = true +) +createPlot( + id = 16, + x = "T_degC", + y = {"cv"}, + grid = true +) +createPlot( + id = 17, + x = "T_degC", + y = {"lambda"}, + grid = true +) +createPlot( + id = 18, + x = "T_degC", + y = {"pMed"}, + grid = true +) +createPlot( + id = 19, + x = "T_degC", + y = {"TMed"}, + grid = true +) +createPlot( + id = 20, + x = "T_degC", + y = {"MM"}, + grid = true +) diff --git a/AixLib/Resources/Scripts/Dymola/Media/Examples/SteamSaturationConsistencyCheck.mos b/AixLib/Resources/Scripts/Dymola/Media/Examples/SteamSaturationConsistencyCheck.mos new file mode 100644 index 0000000000..7e136c86f8 --- /dev/null +++ b/AixLib/Resources/Scripts/Dymola/Media/Examples/SteamSaturationConsistencyCheck.mos @@ -0,0 +1,44 @@ +simulateModel("AixLib.Media.Examples.SteamSaturationConsistencyCheck", method="dassl", startTime=0, stopTime=1.0, tolerance=1e-06, resultFile="SteamSaturationConsistencyCheck"); +createPlot(id=1, position={15, 10, 498, 544}, + x="TSat_degC", + y={"TSat0", "TSat"}, + range={100.0, 180.0, 50.0, 200.0}, + grid=true, + filename="SteamSaturationConsistencyCheck.mat", + colors={{28,108,200}, {238,46,47}}, + displayUnits={"degC", "degC"}); +createPlot(id=1, position={15, 10, 498, 178}, + x="TSat_degC", + y={"pSat"}, + range={100.0, 180.0, 0.0, 15.0}, + grid=true, + subPlot=2, + colors={{28,108,200}}, + displayUnits={"bar"}); +createPlot(id=1, position={15, 10, 498, 544}, + x="TSat_degC", + y={"hlvErr", "hlErr", "hvErr"}, + range={100.0, 180.0, -0.5, 1.5}, + grid=true, + subPlot=3, + colors={{28,108,200}, {238,46,47}, {0,140,72}}); +createPlot(id=2, position={527, 11, 592, 542}, + x="TSat_degC", y={"hlvIF97", "hlvWatSte"}, + range={100.0, 180.0, 2000000.0, 2300000.0}, + grid=true, + colors={{28,108,200}, {238,46,47}}); +createPlot(id=2, position={527, 11, 592, 178}, + x="TSat_degC", + y={"hlIF97", "hlWat"}, + range={100.0, 180.0, 400000.0, 800000.0}, + grid=true, + subPlot=2, + colors={{28,108,200}, {238,46,47}}); +createPlot(id=2, position={527, 11, 592, 178}, + x="TSat_degC", + y={"hvIF97", "hvSte"}, + range={100.0, 180.0, 2600000.0, 2800000.0}, + grid=true, + subPlot=3, + colors={{28,108,200}, {238,46,47}}); + diff --git a/AixLib/Resources/Scripts/Dymola/Media/Examples/SteamTemperatureEnthalpyInversion.mos b/AixLib/Resources/Scripts/Dymola/Media/Examples/SteamTemperatureEnthalpyInversion.mos new file mode 100644 index 0000000000..67443cf84a --- /dev/null +++ b/AixLib/Resources/Scripts/Dymola/Media/Examples/SteamTemperatureEnthalpyInversion.mos @@ -0,0 +1,11 @@ +simulateModel("AixLib.Media.Examples.SteamTemperatureEnthalpyInversion", method="dassl", tolerance=1e-6, stopTime=1.0, resultFile="MediaExamplesSteamTemperatureEnthalpyInversion"); +createPlot(id = 1, + position = {31, 30, 400, 280}, + y = {"T"}, + grid = true, + subPlot = 1); +createPlot(id = 1, + position = {31, 30, 400, 137}, + y = {"h"}, + grid = true, + subPlot = 2); diff --git a/AixLib/Resources/Scripts/Dymola/Systems/ModularAHU/Examples/GenericAHU.mos b/AixLib/Resources/Scripts/Dymola/Systems/ModularAHU/Examples/GenericAHU.mos new file mode 100644 index 0000000000..3bcf8b62fb --- /dev/null +++ b/AixLib/Resources/Scripts/Dymola/Systems/ModularAHU/Examples/GenericAHU.mos @@ -0,0 +1,4 @@ +simulateModel("AixLib.Systems.ModularAHU.Examples.GenericAHU", stopTime=7200, method="dassl", tolerance=1e-6, resultFile="GenericAHU"); +createPlot(id=1, position={0, 0, 2559, 1770}, y={"ctrAHUBasic.genericAHUBus.TOdaMea", "ctrAHUBasic.genericAHUBus.TSupMea","ctrAHUBasic.genericAHUBus.TEtaMea", "ctrAHUBasic.genericAHUBus.TEhaMea"}, heading="Air temperatures", range={0.0, 7200.0, 9.0, 31.0}, grid=true, colors={{28,108,200}, {238,46,47}, {0,140,72}, {217,67,180}}, displayUnits={"degC", "degC", "degC", "degC"}); +createPlot(id=1, position={0, 0, 2559, 882}, y={"ctrAHUBasic.genericAHUBus.preheaterBus.hydraulicBus.valveMea","ctrAHUBasic.genericAHUBus.coolerBus.hydraulicBus.valveMea", "ctrAHUBasic.genericAHUBus.heaterBus.hydraulicBus.valveMea"}, heading="Valve opening", range={0.0, 7500.0, -0.02, 0.38}, grid=true, subPlot=2, leftTitleType=2, leftTitle="Opening", colors={{238,46,47}, {28,108,200}, {0,140,72}}); + diff --git a/AixLib/Resources/Scripts/Dymola/Systems/ModularAHU/Examples/Heater.mos b/AixLib/Resources/Scripts/Dymola/Systems/ModularAHU/Examples/Heater.mos new file mode 100644 index 0000000000..bd928df2bb --- /dev/null +++ b/AixLib/Resources/Scripts/Dymola/Systems/ModularAHU/Examples/Heater.mos @@ -0,0 +1,6 @@ +// Script generated by Dymola Mon Apr 26 15:37:32 2021 +// Plot commands +removePlots(false); +createPlot(id=1, position={0, 0, 2559, 1770}, y={"ctrBasic.registerBus.TAirInMea", "ctrBasic.registerBus.TAirOutMea"}, heading="Air temperatures", range={0.0, 3600.0, 9.5, 20.5}, grid=true, colors={{28,108,200}, {238,46,47}}, displayUnits={"degC", "degC"}); +createPlot(id=1, position={0, 0, 2559, 882}, y={"ctrBasic.registerBus.hydraulicBus.valveSet"}, heading="Valve opening", range={0.0, 3600.0, -0.05, 0.95}, grid=true, subPlot=2, leftTitleType=2, leftTitle="Opening", colors={{28,108,200}}); + diff --git a/AixLib/Resources/Scripts/Dymola/ThermalZones/ReducedOrder/Examples/MultizoneMoistAirCO2Equipped.mos b/AixLib/Resources/Scripts/Dymola/ThermalZones/ReducedOrder/Examples/MultizoneMoistAirCO2Equipped.mos deleted file mode 100644 index 795dc1f1f5..0000000000 --- a/AixLib/Resources/Scripts/Dymola/ThermalZones/ReducedOrder/Examples/MultizoneMoistAirCO2Equipped.mos +++ /dev/null @@ -1,23 +0,0 @@ -simulateModel("AixLib.ThermalZones.ReducedOrder.Examples.MultizoneMoistAirCO2Equipped", tolerance=1e-6, stopTime=3.1536e+007, numberOfIntervals=0, outputInterval=3600, method="Radau", resultFile="MultizoneMoistAirCO2Equipped"); -createPlot(id = 1, - position = {55, 50, 697, 502}, - x = "time", - y = {"multizone.TAir[1]"}, - autoscale = true, - autoerase = true, - autoreplot = true, - grid = true, - color = true, - leftTitleType = 1, - bottomTitleType = 1); -createPlot(id = 2, - position = {55, 50, 697, 502}, - x = "time", - y = {"multizone.CO2Con[1]"}, - autoscale = true, - autoerase = true, - autoreplot = true, - grid = true, - color = true, - leftTitleType = 1, - bottomTitleType = 1); diff --git a/AixLib/Resources/Scripts/Dymola/ThermalZones/ReducedOrder/Validation/VDI6007/TestCase11.mos b/AixLib/Resources/Scripts/Dymola/ThermalZones/ReducedOrder/Validation/VDI6007/TestCase11.mos index d0978f3dfa..3c36b64a48 100644 --- a/AixLib/Resources/Scripts/Dymola/ThermalZones/ReducedOrder/Validation/VDI6007/TestCase11.mos +++ b/AixLib/Resources/Scripts/Dymola/ThermalZones/ReducedOrder/Validation/VDI6007/TestCase11.mos @@ -1,4 +1,4 @@ -simulateModel("AixLib.ThermalZones.ReducedOrder.Validation.VDI6007.TestCase11", stopTime=5.184e+006, numberOfIntervals=0, outputInterval=60, method="CVode", tolerance=1e-6, resultFile="TestCase11"); +simulateModel("AixLib.ThermalZones.ReducedOrder.Validation.VDI6007.TestCase11", stopTime=5.184e+006, numberOfIntervals=0, outputInterval=60, method="CVode", tolerance=1e-7, resultFile="TestCase11"); createPlot(id = 1, position = {55, 50, 1297, 602}, x = "time", diff --git a/AixLib/Resources/Scripts/Dymola/Utilities/Math/Examples/MovingAverage.mos b/AixLib/Resources/Scripts/Dymola/Utilities/Math/Examples/MovingAverage.mos new file mode 100644 index 0000000000..783292e580 --- /dev/null +++ b/AixLib/Resources/Scripts/Dymola/Utilities/Math/Examples/MovingAverage.mos @@ -0,0 +1,4 @@ +simulateModel("AixLib.Utilities.Math.Examples.MovingAverage", method="CVode", tolerance=1e-6, stopTime=50.0, resultFile="MovingAverage"); +createPlot(id = 1, + y = {"movingAverage.u", "movingAverage.y"}, + grid = true); diff --git a/AixLib/Resources/Scripts/Dymola/Utilities/Math/Examples/Polynomial.mos b/AixLib/Resources/Scripts/Dymola/Utilities/Math/Examples/Polynomial.mos new file mode 100644 index 0000000000..d394fa344c --- /dev/null +++ b/AixLib/Resources/Scripts/Dymola/Utilities/Math/Examples/Polynomial.mos @@ -0,0 +1,4 @@ +simulateModel("AixLib.Utilities.Math.Examples.Polynomial", method="CVode", tolerance=1e-6, stopTime=1.0, resultFile="Polynomial"); +createPlot(id = 1, + y = {"polynominal.y"}, + grid = true); diff --git a/AixLib/Resources/Scripts/Dymola/Utilities/Math/Examples/Polynominal.mos b/AixLib/Resources/Scripts/Dymola/Utilities/Math/Examples/Polynominal.mos deleted file mode 100644 index 7a7a6e0b45..0000000000 --- a/AixLib/Resources/Scripts/Dymola/Utilities/Math/Examples/Polynominal.mos +++ /dev/null @@ -1,4 +0,0 @@ -simulateModel("AixLib.Utilities.Math.Examples.Polynominal", method="CVode", tolerance=1e-6, stopTime=1.0, resultFile="Polynominal"); -createPlot(id = 1, - y = {"polynominal.y"}, - grid = true); diff --git a/AixLib/Resources/Scripts/Dymola/Utilities/Math/Functions/Examples/Polynomial.mos b/AixLib/Resources/Scripts/Dymola/Utilities/Math/Functions/Examples/Polynomial.mos index 71990af724..d40576d075 100644 --- a/AixLib/Resources/Scripts/Dymola/Utilities/Math/Functions/Examples/Polynomial.mos +++ b/AixLib/Resources/Scripts/Dymola/Utilities/Math/Functions/Examples/Polynomial.mos @@ -1,4 +1,4 @@ -simulateModel("AixLib.Utilities.Math.Functions.Examples.Polynomial", startTime=0, stopTime=4, tolerance=1E-6, method="CVode", resultFile="Polynomial"); +simulateModel("AixLib.Utilities.Math.Functions.Examples.Polynomial", startTime=0, stopTime=4, tolerance=1E-6, method="CVode", resultFile="Functions_Polynomial"); createPlot(id = 5, position = {45, 33, 639, 463}, y = {"x"}, @@ -7,6 +7,6 @@ createPlot(id = 5, autoreplot = true, grid = true, color = true, - filename = "Polynomial.mat", + filename = "Functions_Polynomial.mat", leftTitleType = 1, bottomTitleType = 1); diff --git a/AixLib/Resources/Scripts/Dymola/Utilities/Math/Functions/Examples/SpliceFunctionDerivativeCheck.mos b/AixLib/Resources/Scripts/Dymola/Utilities/Math/Functions/Examples/SpliceFunctionDerivativeCheck.mos index 52d6cff1ae..c8396517d1 100644 --- a/AixLib/Resources/Scripts/Dymola/Utilities/Math/Functions/Examples/SpliceFunctionDerivativeCheck.mos +++ b/AixLib/Resources/Scripts/Dymola/Utilities/Math/Functions/Examples/SpliceFunctionDerivativeCheck.mos @@ -1,26 +1,5 @@ simulateModel("AixLib.Utilities.Math.Functions.Examples.SpliceFunctionDerivativeCheck", startTime=-1, method="CVode", tolerance=1e-6, stopTime=1.0, resultFile="SpliceFunctionDerivativeCheck"); -removePlots(); -createPlot(id = 5, - position = {45, 33, 639, 463}, - y = {"x", "y"}, - range = {(-1.0), 1, 2.5, 0}, - autoscale = true, - autoerase = true, - autoreplot = true, - grid = true, - color = true, - filename = "SpliceFunctionDerivativeCheck.mat", - leftTitleType = 1, - bottomTitleType = 1); -createPlot(id = 5, - position = {45, 33, 639, 226}, - y = {"der(x)", "der(y)"}, - range = {(-1.0), 1, 2, (-2.0)}, - autoscale = true, - autoerase = true, - autoreplot = true, - grid = true, - color = true, - subPlot = 2, - leftTitleType = 1, - bottomTitleType = 1); +createPlot(id=5, position={61, 52, 878, 851}, y={"x", "y"}, range={-1.0, 1.0, -20.0, 10.0}, grid=true, colors={{28,108,200}, {238,46,47}}, timeUnit="s", displayUnits={"s3", ""}); +createPlot(id=5, position={61, 52, 878, 851}, y={"der(x)", "der(y)"}, range={-1.0, 1.0, -50.0, 100.0}, grid=true, subPlot=102, colors={{28,108,200}, {238,46,47}}, timeUnit="s", displayUnits={"s2", ""}); +createPlot(id=5, position={61, 52, 878, 851}, y={"d2y"}, range={-1.0, 1.0, -500.0, 500.0}, grid=true, subPlot=103, colors={{28,108,200}}, timeUnit="s"); +createPlot(id=5, position={61, 52, 878, 851}, y={"d3y"}, range={-1.0, 1.0, -10000.0, 5000.0}, grid=true, subPlot=104, colors={{28,108,200}}, timeUnit="s"); diff --git a/AixLib/Resources/Scripts/Dymola/Utilities/Sensors/Examples/ExergyMeters.mos b/AixLib/Resources/Scripts/Dymola/Utilities/Sensors/Examples/ExergyMeters.mos new file mode 100644 index 0000000000..0466ea26af --- /dev/null +++ b/AixLib/Resources/Scripts/Dymola/Utilities/Sensors/Examples/ExergyMeters.mos @@ -0,0 +1,2 @@ +simulateModel("AixLib.Utilities.Sensors.Examples.ExergyMeters", tolerance=1e-6, stopTime=7200, method="dassl", resultFile="ExergyMeters"); +createPlot(id=1, position={405, 134, 811, 420}, y={"calcExergyDestructionLoss_1.y", "calcExergyDestructionLoss_2.y"}, range={0.0, 90000.0, -200.0, 1800.0}, grid=true, filename="ExergyMeters.mat", colors={{28,108,200}, {238,46,47}}); diff --git a/AixLib/Resources/Scripts/mergeModelicaIBPSA.py b/AixLib/Resources/Scripts/mergeModelicaIBPSA.py index 5cc03d19f8..c084470849 100644 --- a/AixLib/Resources/Scripts/mergeModelicaIBPSA.py +++ b/AixLib/Resources/Scripts/mergeModelicaIBPSA.py @@ -4,7 +4,6 @@ from builtins import input ''' This script merges the Modelica IBPSA Library into AixLib - This approach is taken from https://github.com/open-ideas/IDEAS/tree/master/IDEAS/Scripts/mergeAnnex60Script.py ''' @@ -25,5 +24,6 @@ json.dump(data, dataFile) mer = m.IBPSA(ibpsa_dir, aixlib_dir) -mer.set_excluded_packages(["Experimental", "Obsolete"]) +mer.set_excluded_directories(["Experimental", "Obsolete"]) mer.merge() +print("Merged.") \ No newline at end of file diff --git a/AixLib/Resources/Scripts/travis/dymola/dymola b/AixLib/Resources/Scripts/travis/dymola/dymola index a113bd9c6d..2c0ec55605 100755 --- a/AixLib/Resources/Scripts/travis/dymola/dymola +++ b/AixLib/Resources/Scripts/travis/dymola/dymola @@ -15,6 +15,6 @@ docker run \ --detach=false \ --rm \ -v ${sha_dir}:/mnt/shared \ - ${DOCKER_USERNAME}/travis_ubuntu-1804_dymola:2021-x86_64 /bin/bash -c \ + ${DOCKER_USERNAME}/travis_ubuntu-2004_dymola:2022x-x86_64 /bin/bash -c \ "cd /mnt/shared/${bas_nam} && \ dymola ${arg_lis}" diff --git a/AixLib/Resources/Scripts/github-actions/jmodelica/jm_ipython.sh b/AixLib/Resources/Scripts/travis/omc/omc similarity index 76% rename from AixLib/Resources/Scripts/github-actions/jmodelica/jm_ipython.sh rename to AixLib/Resources/Scripts/travis/omc/omc index 00aa2808cd..d51735ae81 100755 --- a/AixLib/Resources/Scripts/github-actions/jmodelica/jm_ipython.sh +++ b/AixLib/Resources/Scripts/travis/omc/omc @@ -1,15 +1,15 @@ #!/bin/bash ################################################# -# Shell script that simulates JModelica using -# a docker image of JModelica. +# Shell script that simulates with OpenModelica using +# a docker image of OMC # # The main purpose of this script is to export -# MODELICAPATH and PYTHONPATH with their values +# MODELICAPATH # updated for the docker, and to mount the # required directories. ################################################# set -e -IMG_NAME=ubuntu-1804_jmodelica_trunk +IMG_NAME=${OMC_VERSION} DOCKER_USERNAME=michaelwetter # Function declarations @@ -48,28 +48,24 @@ if [ -z ${MODELICAPATH+x} ]; then else # Add the current directory to the front of the Modelica path. # This will export the directory to the docker, and also set - # it in the MODELICAPATH so that JModelica finds it. + # it in the MODELICAPATH so that OPTIMICA finds it. MODELICAPATH=`pwd`:${MODELICAPATH} fi # Create the command to mount all directories in read-only mode -# a) for MODELICAPATH MOD_MOUNT=`create_mount_command ${MODELICAPATH}` -# b) for PYTHONPATH -PYT_MOUNT=`create_mount_command ${PYTHONPATH}` # Prepend /mnt/ in front of each entry, which will then be used as the MODELICAPATH DOCKER_MODELICAPATH=`update_path_variable ${MODELICAPATH}` -DOCKER_PYTHONPATH=`update_path_variable ${PYTHONPATH}` # If the current directory is part of the argument list, # replace it with . as the docker may have a different file structure cur_dir=`pwd` -bas_nam=`basename ${cur_dir}` +bas_nam=`basename "${cur_dir}"` arg_lis=`echo $@ | sed -e "s|${cur_dir}|.|g"` # Set variable for shared directory -sha_dir=`dirname ${cur_dir}` +sha_dir=`dirname "${cur_dir}"` # Check if the python script should be run interactively (if -i is specified) while [ $# -ne 0 ] @@ -92,14 +88,10 @@ docker run \ $DOCKER_INTERACTIVE \ --detach=false \ ${MOD_MOUNT} \ - ${PYT_MOUNT} \ -v ${sha_dir}:/mnt/shared \ - -e DISPLAY=${DISPLAY} \ - -v /tmp/.X11-unix:/tmp/.X11-unix \ --rm \ ${DOCKER_USERNAME}/${IMG_NAME} /bin/bash -c \ - "export MODELICAPATH=${DOCKER_MODELICAPATH}:/usr/local/JModelica/ThirdParty/MSL && \ - export PYTHONPATH=${DOCKER_PYTHONPATH} && \ - cd /mnt/shared/${bas_nam} && \ - /usr/local/JModelica/bin/jm_ipython.sh ${arg_lis}" + "export OPENMODELICALIBRARY=${DOCKER_MODELICAPATH}:/usr/lib/omlibrary && \ + cd \"/mnt/shared/${bas_nam}\" && \ + omc ${arg_lis}" exit $? diff --git a/AixLib/Resources/src/convertEPW/Makefile b/AixLib/Resources/src/convertEPW/Makefile old mode 100755 new mode 100644 diff --git a/AixLib/Resources/src/convertEPW/src/Makefile b/AixLib/Resources/src/convertEPW/src/Makefile old mode 100755 new mode 100644 diff --git a/AixLib/Resources/src/fluid/heatpumps/calibration/Examples/SomeManufacturer_ABC060_70kW_4_0COP_R410A.mo b/AixLib/Resources/src/fluid/heatpumps/calibration/Examples/SomeManufacturer_ABC060_70kW_4_0COP_R410A.mo index be7ace7490..0f4ba879d0 100644 --- a/AixLib/Resources/src/fluid/heatpumps/calibration/Examples/SomeManufacturer_ABC060_70kW_4_0COP_R410A.mo +++ b/AixLib/Resources/src/fluid/heatpumps/calibration/Examples/SomeManufacturer_ABC060_70kW_4_0COP_R410A.mo @@ -1,21 +1,22 @@ within AixLib.Fluid.HeatPumps.Data.ScrollWaterToWater.Heating; -record SomeManufacturer_ABC060_70kW_4_0COP_R410A = - AixLib.Fluid.HeatPumps.Data.ScrollWaterToWater.Generic ( - volRat = 2.36185869323, - V_flow_nominal = 0.00287086738316, - leaCoe = 0.00408074950474, - etaEle = 0.922319423243, - PLos = 398.665383784, - dTSup = 6.49606895698, - UACon = 7014.54967992, - UAEva = 49135.9514647) - - annotation ( - defaultComponentPrefixes = "parameter", - defaultComponentName="datHeaPum", - preferredView="info", - Documentation(info=" -

                                      -Generated by Mr Modeler on 2017-01-26. -

                                      -")); + record SomeManufacturer_ABC060_70kW_4_0COP_R410A = + AixLib.Fluid.HeatPumps.Data.ScrollWaterToWater.Generic ( + volRat = 2.36185869323, + V_flow_nominal = 0.00287086738316, + leaCoe = 0.00408074950474, + etaEle = 0.922319423243, + PLos = 398.665383784, + dTSup = 6.49606895698, + UACon = 7014.54967992, + UAEva = 49135.9514647) + + annotation ( + defaultComponentPrefixes = "parameter", + defaultComponentName="datHeaPum", + preferredView="info", + Documentation(info=" +

                                      + Generated by Mr Modeler on 2017-01-26. +

                                      + "), + __Dymola_LockedEditing="Model from IBPSA"); diff --git a/AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootstrap-3.4.1/css/bootstrap-theme.css b/AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootstrap-3.4.1/css/bootstrap-theme.css new file mode 100644 index 0000000000..ea33f76a77 --- /dev/null +++ b/AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootstrap-3.4.1/css/bootstrap-theme.css @@ -0,0 +1,587 @@ +/*! + * Bootstrap v3.4.1 (https://getbootstrap.com/) + * Copyright 2011-2019 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ +.btn-default, +.btn-primary, +.btn-success, +.btn-info, +.btn-warning, +.btn-danger { + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2); + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075); +} +.btn-default:active, +.btn-primary:active, +.btn-success:active, +.btn-info:active, +.btn-warning:active, +.btn-danger:active, +.btn-default.active, +.btn-primary.active, +.btn-success.active, +.btn-info.active, +.btn-warning.active, +.btn-danger.active { + -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); +} +.btn-default.disabled, +.btn-primary.disabled, +.btn-success.disabled, +.btn-info.disabled, +.btn-warning.disabled, +.btn-danger.disabled, +.btn-default[disabled], +.btn-primary[disabled], +.btn-success[disabled], +.btn-info[disabled], +.btn-warning[disabled], +.btn-danger[disabled], +fieldset[disabled] .btn-default, +fieldset[disabled] .btn-primary, +fieldset[disabled] .btn-success, +fieldset[disabled] .btn-info, +fieldset[disabled] .btn-warning, +fieldset[disabled] .btn-danger { + -webkit-box-shadow: none; + box-shadow: none; +} +.btn-default .badge, +.btn-primary .badge, +.btn-success .badge, +.btn-info .badge, +.btn-warning .badge, +.btn-danger .badge { + text-shadow: none; +} +.btn:active, +.btn.active { + background-image: none; +} +.btn-default { + background-image: -webkit-linear-gradient(top, #fff 0%, #e0e0e0 100%); + background-image: -o-linear-gradient(top, #fff 0%, #e0e0e0 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e0e0e0)); + background-image: linear-gradient(to bottom, #fff 0%, #e0e0e0 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); + background-repeat: repeat-x; + border-color: #dbdbdb; + text-shadow: 0 1px 0 #fff; + border-color: #ccc; +} +.btn-default:hover, +.btn-default:focus { + background-color: #e0e0e0; + background-position: 0 -15px; +} +.btn-default:active, +.btn-default.active { + background-color: #e0e0e0; + border-color: #dbdbdb; +} +.btn-default.disabled, +.btn-default[disabled], +fieldset[disabled] .btn-default, +.btn-default.disabled:hover, +.btn-default[disabled]:hover, +fieldset[disabled] .btn-default:hover, +.btn-default.disabled:focus, +.btn-default[disabled]:focus, +fieldset[disabled] .btn-default:focus, +.btn-default.disabled.focus, +.btn-default[disabled].focus, +fieldset[disabled] .btn-default.focus, +.btn-default.disabled:active, +.btn-default[disabled]:active, +fieldset[disabled] .btn-default:active, +.btn-default.disabled.active, +.btn-default[disabled].active, +fieldset[disabled] .btn-default.active { + background-color: #e0e0e0; + background-image: none; +} +.btn-primary { + background-image: -webkit-linear-gradient(top, #337ab7 0%, #265a88 100%); + background-image: -o-linear-gradient(top, #337ab7 0%, #265a88 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#265a88)); + background-image: linear-gradient(to bottom, #337ab7 0%, #265a88 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); + background-repeat: repeat-x; + border-color: #245580; +} +.btn-primary:hover, +.btn-primary:focus { + background-color: #265a88; + background-position: 0 -15px; +} +.btn-primary:active, +.btn-primary.active { + background-color: #265a88; + border-color: #245580; +} +.btn-primary.disabled, +.btn-primary[disabled], +fieldset[disabled] .btn-primary, +.btn-primary.disabled:hover, +.btn-primary[disabled]:hover, +fieldset[disabled] .btn-primary:hover, +.btn-primary.disabled:focus, +.btn-primary[disabled]:focus, +fieldset[disabled] .btn-primary:focus, +.btn-primary.disabled.focus, +.btn-primary[disabled].focus, +fieldset[disabled] .btn-primary.focus, +.btn-primary.disabled:active, +.btn-primary[disabled]:active, +fieldset[disabled] .btn-primary:active, +.btn-primary.disabled.active, +.btn-primary[disabled].active, +fieldset[disabled] .btn-primary.active { + background-color: #265a88; + background-image: none; +} +.btn-success { + background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%); + background-image: -o-linear-gradient(top, #5cb85c 0%, #419641 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#419641)); + background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); + background-repeat: repeat-x; + border-color: #3e8f3e; +} +.btn-success:hover, +.btn-success:focus { + background-color: #419641; + background-position: 0 -15px; +} +.btn-success:active, +.btn-success.active { + background-color: #419641; + border-color: #3e8f3e; +} +.btn-success.disabled, +.btn-success[disabled], +fieldset[disabled] .btn-success, +.btn-success.disabled:hover, +.btn-success[disabled]:hover, +fieldset[disabled] .btn-success:hover, +.btn-success.disabled:focus, +.btn-success[disabled]:focus, +fieldset[disabled] .btn-success:focus, +.btn-success.disabled.focus, +.btn-success[disabled].focus, +fieldset[disabled] .btn-success.focus, +.btn-success.disabled:active, +.btn-success[disabled]:active, +fieldset[disabled] .btn-success:active, +.btn-success.disabled.active, +.btn-success[disabled].active, +fieldset[disabled] .btn-success.active { + background-color: #419641; + background-image: none; +} +.btn-info { + background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%); + background-image: -o-linear-gradient(top, #5bc0de 0%, #2aabd2 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#2aabd2)); + background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); + background-repeat: repeat-x; + border-color: #28a4c9; +} +.btn-info:hover, +.btn-info:focus { + background-color: #2aabd2; + background-position: 0 -15px; +} +.btn-info:active, +.btn-info.active { + background-color: #2aabd2; + border-color: #28a4c9; +} +.btn-info.disabled, +.btn-info[disabled], +fieldset[disabled] .btn-info, +.btn-info.disabled:hover, +.btn-info[disabled]:hover, +fieldset[disabled] .btn-info:hover, +.btn-info.disabled:focus, +.btn-info[disabled]:focus, +fieldset[disabled] .btn-info:focus, +.btn-info.disabled.focus, +.btn-info[disabled].focus, +fieldset[disabled] .btn-info.focus, +.btn-info.disabled:active, +.btn-info[disabled]:active, +fieldset[disabled] .btn-info:active, +.btn-info.disabled.active, +.btn-info[disabled].active, +fieldset[disabled] .btn-info.active { + background-color: #2aabd2; + background-image: none; +} +.btn-warning { + background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%); + background-image: -o-linear-gradient(top, #f0ad4e 0%, #eb9316 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#eb9316)); + background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); + background-repeat: repeat-x; + border-color: #e38d13; +} +.btn-warning:hover, +.btn-warning:focus { + background-color: #eb9316; + background-position: 0 -15px; +} +.btn-warning:active, +.btn-warning.active { + background-color: #eb9316; + border-color: #e38d13; +} +.btn-warning.disabled, +.btn-warning[disabled], +fieldset[disabled] .btn-warning, +.btn-warning.disabled:hover, +.btn-warning[disabled]:hover, +fieldset[disabled] .btn-warning:hover, +.btn-warning.disabled:focus, +.btn-warning[disabled]:focus, +fieldset[disabled] .btn-warning:focus, +.btn-warning.disabled.focus, +.btn-warning[disabled].focus, +fieldset[disabled] .btn-warning.focus, +.btn-warning.disabled:active, +.btn-warning[disabled]:active, +fieldset[disabled] .btn-warning:active, +.btn-warning.disabled.active, +.btn-warning[disabled].active, +fieldset[disabled] .btn-warning.active { + background-color: #eb9316; + background-image: none; +} +.btn-danger { + background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%); + background-image: -o-linear-gradient(top, #d9534f 0%, #c12e2a 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c12e2a)); + background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); + background-repeat: repeat-x; + border-color: #b92c28; +} +.btn-danger:hover, +.btn-danger:focus { + background-color: #c12e2a; + background-position: 0 -15px; +} +.btn-danger:active, +.btn-danger.active { + background-color: #c12e2a; + border-color: #b92c28; +} +.btn-danger.disabled, +.btn-danger[disabled], +fieldset[disabled] .btn-danger, +.btn-danger.disabled:hover, +.btn-danger[disabled]:hover, +fieldset[disabled] .btn-danger:hover, +.btn-danger.disabled:focus, +.btn-danger[disabled]:focus, +fieldset[disabled] .btn-danger:focus, +.btn-danger.disabled.focus, +.btn-danger[disabled].focus, +fieldset[disabled] .btn-danger.focus, +.btn-danger.disabled:active, +.btn-danger[disabled]:active, +fieldset[disabled] .btn-danger:active, +.btn-danger.disabled.active, +.btn-danger[disabled].active, +fieldset[disabled] .btn-danger.active { + background-color: #c12e2a; + background-image: none; +} +.thumbnail, +.img-thumbnail { + -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075); + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075); +} +.dropdown-menu > li > a:hover, +.dropdown-menu > li > a:focus { + background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); + background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8)); + background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0); + background-repeat: repeat-x; + background-color: #e8e8e8; +} +.dropdown-menu > .active > a, +.dropdown-menu > .active > a:hover, +.dropdown-menu > .active > a:focus { + background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%); + background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4)); + background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0); + background-repeat: repeat-x; + background-color: #2e6da4; +} +.navbar-default { + background-image: -webkit-linear-gradient(top, #ffffff 0%, #f8f8f8 100%); + background-image: -o-linear-gradient(top, #ffffff 0%, #f8f8f8 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f8f8f8)); + background-image: linear-gradient(to bottom, #ffffff 0%, #f8f8f8 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075); +} +.navbar-default .navbar-nav > .open > a, +.navbar-default .navbar-nav > .active > a { + background-image: -webkit-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%); + background-image: -o-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#dbdbdb), to(#e2e2e2)); + background-image: linear-gradient(to bottom, #dbdbdb 0%, #e2e2e2 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0); + background-repeat: repeat-x; + -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075); +} +.navbar-brand, +.navbar-nav > li > a { + text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25); +} +.navbar-inverse { + background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222 100%); + background-image: -o-linear-gradient(top, #3c3c3c 0%, #222 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#3c3c3c), to(#222)); + background-image: linear-gradient(to bottom, #3c3c3c 0%, #222 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); + border-radius: 4px; +} +.navbar-inverse .navbar-nav > .open > a, +.navbar-inverse .navbar-nav > .active > a { + background-image: -webkit-linear-gradient(top, #080808 0%, #0f0f0f 100%); + background-image: -o-linear-gradient(top, #080808 0%, #0f0f0f 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#080808), to(#0f0f0f)); + background-image: linear-gradient(to bottom, #080808 0%, #0f0f0f 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0); + background-repeat: repeat-x; + -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25); + box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25); +} +.navbar-inverse .navbar-brand, +.navbar-inverse .navbar-nav > li > a { + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); +} +.navbar-static-top, +.navbar-fixed-top, +.navbar-fixed-bottom { + border-radius: 0; +} +@media (max-width: 767px) { + .navbar .navbar-nav .open .dropdown-menu > .active > a, + .navbar .navbar-nav .open .dropdown-menu > .active > a:hover, + .navbar .navbar-nav .open .dropdown-menu > .active > a:focus { + color: #fff; + background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%); + background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4)); + background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0); + background-repeat: repeat-x; + } +} +.alert { + text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2); + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05); + box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05); +} +.alert-success { + background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%); + background-image: -o-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#c8e5bc)); + background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0); + background-repeat: repeat-x; + border-color: #b2dba1; +} +.alert-info { + background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%); + background-image: -o-linear-gradient(top, #d9edf7 0%, #b9def0 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#b9def0)); + background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0); + background-repeat: repeat-x; + border-color: #9acfea; +} +.alert-warning { + background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%); + background-image: -o-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#f8efc0)); + background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0); + background-repeat: repeat-x; + border-color: #f5e79e; +} +.alert-danger { + background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%); + background-image: -o-linear-gradient(top, #f2dede 0%, #e7c3c3 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#e7c3c3)); + background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0); + background-repeat: repeat-x; + border-color: #dca7a7; +} +.progress { + background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%); + background-image: -o-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#ebebeb), to(#f5f5f5)); + background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0); + background-repeat: repeat-x; +} +.progress-bar { + background-image: -webkit-linear-gradient(top, #337ab7 0%, #286090 100%); + background-image: -o-linear-gradient(top, #337ab7 0%, #286090 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#286090)); + background-image: linear-gradient(to bottom, #337ab7 0%, #286090 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0); + background-repeat: repeat-x; +} +.progress-bar-success { + background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%); + background-image: -o-linear-gradient(top, #5cb85c 0%, #449d44 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#449d44)); + background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0); + background-repeat: repeat-x; +} +.progress-bar-info { + background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%); + background-image: -o-linear-gradient(top, #5bc0de 0%, #31b0d5 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#31b0d5)); + background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0); + background-repeat: repeat-x; +} +.progress-bar-warning { + background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%); + background-image: -o-linear-gradient(top, #f0ad4e 0%, #ec971f 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#ec971f)); + background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0); + background-repeat: repeat-x; +} +.progress-bar-danger { + background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%); + background-image: -o-linear-gradient(top, #d9534f 0%, #c9302c 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c9302c)); + background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0); + background-repeat: repeat-x; +} +.progress-bar-striped { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} +.list-group { + border-radius: 4px; + -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075); + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075); +} +.list-group-item.active, +.list-group-item.active:hover, +.list-group-item.active:focus { + text-shadow: 0 -1px 0 #286090; + background-image: -webkit-linear-gradient(top, #337ab7 0%, #2b669a 100%); + background-image: -o-linear-gradient(top, #337ab7 0%, #2b669a 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2b669a)); + background-image: linear-gradient(to bottom, #337ab7 0%, #2b669a 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0); + background-repeat: repeat-x; + border-color: #2b669a; +} +.list-group-item.active .badge, +.list-group-item.active:hover .badge, +.list-group-item.active:focus .badge { + text-shadow: none; +} +.panel { + -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); +} +.panel-default > .panel-heading { + background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); + background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8)); + background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0); + background-repeat: repeat-x; +} +.panel-primary > .panel-heading { + background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%); + background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4)); + background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0); + background-repeat: repeat-x; +} +.panel-success > .panel-heading { + background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%); + background-image: -o-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#d0e9c6)); + background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0); + background-repeat: repeat-x; +} +.panel-info > .panel-heading { + background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%); + background-image: -o-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#c4e3f3)); + background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0); + background-repeat: repeat-x; +} +.panel-warning > .panel-heading { + background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%); + background-image: -o-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#faf2cc)); + background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0); + background-repeat: repeat-x; +} +.panel-danger > .panel-heading { + background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%); + background-image: -o-linear-gradient(top, #f2dede 0%, #ebcccc 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#ebcccc)); + background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0); + background-repeat: repeat-x; +} +.well { + background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%); + background-image: -o-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#e8e8e8), to(#f5f5f5)); + background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0); + background-repeat: repeat-x; + border-color: #dcdcdc; + -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1); + box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1); +} +/*# sourceMappingURL=bootstrap-theme.css.map */ \ No newline at end of file diff --git a/AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootstrap-3.4.1/css/bootstrap-theme.css.map b/AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootstrap-3.4.1/css/bootstrap-theme.css.map new file mode 100644 index 0000000000..949d09738f --- /dev/null +++ b/AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootstrap-3.4.1/css/bootstrap-theme.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["bootstrap-theme.css","less/theme.less","less/mixins/vendor-prefixes.less","less/mixins/gradients.less","less/mixins/reset-filter.less"],"names":[],"mappings":"AAAA;;;;GAIG;ACiBH;;;;;;EAME,yCAAA;EC2CA,4FAAA;EACQ,oFAAA;CFzDT;ACkBC;;;;;;;;;;;;ECsCA,yDAAA;EACQ,iDAAA;CF1CT;ACQC;;;;;;;;;;;;;;;;;;ECiCA,yBAAA;EACQ,iBAAA;CFrBT;AC7BD;;;;;;EAuBI,kBAAA;CDcH;AC2BC;;EAEE,uBAAA;CDzBH;AC8BD;EEvEI,sEAAA;EACA,iEAAA;EACA,2FAAA;EAAA,oEAAA;EACA,uHAAA;EClBF,oEAAA;EH8CA,4BAAA;EACA,sBAAA;EAyCA,0BAAA;EACA,mBAAA;CDtBD;AClBC;;EAEE,0BAAA;EACA,6BAAA;CDoBH;ACjBC;;EAEE,0BAAA;EACA,sBAAA;CDmBH;ACbG;;;;;;;;;;;;;;;;;;EAME,0BAAA;EACA,uBAAA;CD2BL;ACPD;EE5EI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,uHAAA;EClBF,oEAAA;EH8CA,4BAAA;EACA,sBAAA;CD4DD;AC1DC;;EAEE,0BAAA;EACA,6BAAA;CD4DH;ACzDC;;EAEE,0BAAA;EACA,sBAAA;CD2DH;ACrDG;;;;;;;;;;;;;;;;;;EAME,0BAAA;EACA,uBAAA;CDmEL;AC9CD;EE7EI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,uHAAA;EClBF,oEAAA;EH8CA,4BAAA;EACA,sBAAA;CDoGD;AClGC;;EAEE,0BAAA;EACA,6BAAA;CDoGH;ACjGC;;EAEE,0BAAA;EACA,sBAAA;CDmGH;AC7FG;;;;;;;;;;;;;;;;;;EAME,0BAAA;EACA,uBAAA;CD2GL;ACrFD;EE9EI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,uHAAA;EClBF,oEAAA;EH8CA,4BAAA;EACA,sBAAA;CD4ID;AC1IC;;EAEE,0BAAA;EACA,6BAAA;CD4IH;ACzIC;;EAEE,0BAAA;EACA,sBAAA;CD2IH;ACrIG;;;;;;;;;;;;;;;;;;EAME,0BAAA;EACA,uBAAA;CDmJL;AC5HD;EE/EI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,uHAAA;EClBF,oEAAA;EH8CA,4BAAA;EACA,sBAAA;CDoLD;AClLC;;EAEE,0BAAA;EACA,6BAAA;CDoLH;ACjLC;;EAEE,0BAAA;EACA,sBAAA;CDmLH;AC7KG;;;;;;;;;;;;;;;;;;EAME,0BAAA;EACA,uBAAA;CD2LL;ACnKD;EEhFI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,uHAAA;EClBF,oEAAA;EH8CA,4BAAA;EACA,sBAAA;CD4ND;AC1NC;;EAEE,0BAAA;EACA,6BAAA;CD4NH;ACzNC;;EAEE,0BAAA;EACA,sBAAA;CD2NH;ACrNG;;;;;;;;;;;;;;;;;;EAME,0BAAA;EACA,uBAAA;CDmOL;ACpMD;;ECtCE,mDAAA;EACQ,2CAAA;CF8OT;AC/LD;;EEjGI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,uHAAA;EACA,4BAAA;EFgGF,0BAAA;CDqMD;ACnMD;;;EEtGI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,uHAAA;EACA,4BAAA;EFsGF,0BAAA;CDyMD;AChMD;EEnHI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,uHAAA;EACA,4BAAA;ECnBF,oEAAA;EHqIA,mBAAA;ECrEA,4FAAA;EACQ,oFAAA;CF4QT;AC3MD;;EEnHI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,uHAAA;EACA,4BAAA;ED6CF,yDAAA;EACQ,iDAAA;CFsRT;ACxMD;;EAEE,+CAAA;CD0MD;ACtMD;EEtII,sEAAA;EACA,iEAAA;EACA,2FAAA;EAAA,oEAAA;EACA,uHAAA;EACA,4BAAA;ECnBF,oEAAA;EHwJA,mBAAA;CD4MD;AC/MD;;EEtII,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,uHAAA;EACA,4BAAA;ED6CF,wDAAA;EACQ,gDAAA;CF6ST;ACzND;;EAYI,0CAAA;CDiNH;AC5MD;;;EAGE,iBAAA;CD8MD;AC1MD;EAEI;;;IAGE,YAAA;IEnKF,yEAAA;IACA,oEAAA;IACA,8FAAA;IAAA,uEAAA;IACA,uHAAA;IACA,4BAAA;GH+WD;CACF;ACrMD;EACE,8CAAA;EC/HA,2FAAA;EACQ,mFAAA;CFuUT;AC7LD;EE5LI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,uHAAA;EACA,4BAAA;EFoLF,sBAAA;CDyMD;ACpMD;EE7LI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,uHAAA;EACA,4BAAA;EFoLF,sBAAA;CDiND;AC3MD;EE9LI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,uHAAA;EACA,4BAAA;EFoLF,sBAAA;CDyND;AClND;EE/LI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,uHAAA;EACA,4BAAA;EFoLF,sBAAA;CDiOD;AClND;EEvMI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,uHAAA;EACA,4BAAA;CH4ZH;AC/MD;EEjNI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,uHAAA;EACA,4BAAA;CHmaH;ACrND;EElNI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,uHAAA;EACA,4BAAA;CH0aH;AC3ND;EEnNI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,uHAAA;EACA,4BAAA;CHibH;ACjOD;EEpNI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,uHAAA;EACA,4BAAA;CHwbH;ACvOD;EErNI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,uHAAA;EACA,4BAAA;CH+bH;AC1OD;EExLI,8MAAA;EACA,yMAAA;EACA,sMAAA;CHqaH;ACtOD;EACE,mBAAA;EClLA,mDAAA;EACQ,2CAAA;CF2ZT;ACvOD;;;EAGE,8BAAA;EEzOE,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,uHAAA;EACA,4BAAA;EFuOF,sBAAA;CD6OD;AClPD;;;EAQI,kBAAA;CD+OH;ACrOD;ECvME,kDAAA;EACQ,0CAAA;CF+aT;AC/ND;EElQI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,uHAAA;EACA,4BAAA;CHoeH;ACrOD;EEnQI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,uHAAA;EACA,4BAAA;CH2eH;AC3OD;EEpQI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,uHAAA;EACA,4BAAA;CHkfH;ACjPD;EErQI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,uHAAA;EACA,4BAAA;CHyfH;ACvPD;EEtQI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,uHAAA;EACA,4BAAA;CHggBH;AC7PD;EEvQI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,uHAAA;EACA,4BAAA;CHugBH;AC7PD;EE9QI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,uHAAA;EACA,4BAAA;EF4QF,sBAAA;EC/NA,0FAAA;EACQ,kFAAA;CFmeT","file":"bootstrap-theme.css","sourcesContent":["/*!\n * Bootstrap v3.4.1 (https://getbootstrap.com/)\n * Copyright 2011-2019 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n.btn-default,\n.btn-primary,\n.btn-success,\n.btn-info,\n.btn-warning,\n.btn-danger {\n text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.btn-default:active,\n.btn-primary:active,\n.btn-success:active,\n.btn-info:active,\n.btn-warning:active,\n.btn-danger:active,\n.btn-default.active,\n.btn-primary.active,\n.btn-success.active,\n.btn-info.active,\n.btn-warning.active,\n.btn-danger.active {\n -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.btn-default.disabled,\n.btn-primary.disabled,\n.btn-success.disabled,\n.btn-info.disabled,\n.btn-warning.disabled,\n.btn-danger.disabled,\n.btn-default[disabled],\n.btn-primary[disabled],\n.btn-success[disabled],\n.btn-info[disabled],\n.btn-warning[disabled],\n.btn-danger[disabled],\nfieldset[disabled] .btn-default,\nfieldset[disabled] .btn-primary,\nfieldset[disabled] .btn-success,\nfieldset[disabled] .btn-info,\nfieldset[disabled] .btn-warning,\nfieldset[disabled] .btn-danger {\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n.btn-default .badge,\n.btn-primary .badge,\n.btn-success .badge,\n.btn-info .badge,\n.btn-warning .badge,\n.btn-danger .badge {\n text-shadow: none;\n}\n.btn:active,\n.btn.active {\n background-image: none;\n}\n.btn-default {\n background-image: -webkit-linear-gradient(top, #fff 0%, #e0e0e0 100%);\n background-image: -o-linear-gradient(top, #fff 0%, #e0e0e0 100%);\n background-image: linear-gradient(to bottom, #fff 0%, #e0e0e0 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #dbdbdb;\n text-shadow: 0 1px 0 #fff;\n border-color: #ccc;\n}\n.btn-default:hover,\n.btn-default:focus {\n background-color: #e0e0e0;\n background-position: 0 -15px;\n}\n.btn-default:active,\n.btn-default.active {\n background-color: #e0e0e0;\n border-color: #dbdbdb;\n}\n.btn-default.disabled,\n.btn-default[disabled],\nfieldset[disabled] .btn-default,\n.btn-default.disabled:hover,\n.btn-default[disabled]:hover,\nfieldset[disabled] .btn-default:hover,\n.btn-default.disabled:focus,\n.btn-default[disabled]:focus,\nfieldset[disabled] .btn-default:focus,\n.btn-default.disabled.focus,\n.btn-default[disabled].focus,\nfieldset[disabled] .btn-default.focus,\n.btn-default.disabled:active,\n.btn-default[disabled]:active,\nfieldset[disabled] .btn-default:active,\n.btn-default.disabled.active,\n.btn-default[disabled].active,\nfieldset[disabled] .btn-default.active {\n background-color: #e0e0e0;\n background-image: none;\n}\n.btn-primary {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #265a88 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #265a88 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #265a88 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #245580;\n}\n.btn-primary:hover,\n.btn-primary:focus {\n background-color: #265a88;\n background-position: 0 -15px;\n}\n.btn-primary:active,\n.btn-primary.active {\n background-color: #265a88;\n border-color: #245580;\n}\n.btn-primary.disabled,\n.btn-primary[disabled],\nfieldset[disabled] .btn-primary,\n.btn-primary.disabled:hover,\n.btn-primary[disabled]:hover,\nfieldset[disabled] .btn-primary:hover,\n.btn-primary.disabled:focus,\n.btn-primary[disabled]:focus,\nfieldset[disabled] .btn-primary:focus,\n.btn-primary.disabled.focus,\n.btn-primary[disabled].focus,\nfieldset[disabled] .btn-primary.focus,\n.btn-primary.disabled:active,\n.btn-primary[disabled]:active,\nfieldset[disabled] .btn-primary:active,\n.btn-primary.disabled.active,\n.btn-primary[disabled].active,\nfieldset[disabled] .btn-primary.active {\n background-color: #265a88;\n background-image: none;\n}\n.btn-success {\n background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%);\n background-image: -o-linear-gradient(top, #5cb85c 0%, #419641 100%);\n background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #3e8f3e;\n}\n.btn-success:hover,\n.btn-success:focus {\n background-color: #419641;\n background-position: 0 -15px;\n}\n.btn-success:active,\n.btn-success.active {\n background-color: #419641;\n border-color: #3e8f3e;\n}\n.btn-success.disabled,\n.btn-success[disabled],\nfieldset[disabled] .btn-success,\n.btn-success.disabled:hover,\n.btn-success[disabled]:hover,\nfieldset[disabled] .btn-success:hover,\n.btn-success.disabled:focus,\n.btn-success[disabled]:focus,\nfieldset[disabled] .btn-success:focus,\n.btn-success.disabled.focus,\n.btn-success[disabled].focus,\nfieldset[disabled] .btn-success.focus,\n.btn-success.disabled:active,\n.btn-success[disabled]:active,\nfieldset[disabled] .btn-success:active,\n.btn-success.disabled.active,\n.btn-success[disabled].active,\nfieldset[disabled] .btn-success.active {\n background-color: #419641;\n background-image: none;\n}\n.btn-info {\n background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);\n background-image: -o-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);\n background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #28a4c9;\n}\n.btn-info:hover,\n.btn-info:focus {\n background-color: #2aabd2;\n background-position: 0 -15px;\n}\n.btn-info:active,\n.btn-info.active {\n background-color: #2aabd2;\n border-color: #28a4c9;\n}\n.btn-info.disabled,\n.btn-info[disabled],\nfieldset[disabled] .btn-info,\n.btn-info.disabled:hover,\n.btn-info[disabled]:hover,\nfieldset[disabled] .btn-info:hover,\n.btn-info.disabled:focus,\n.btn-info[disabled]:focus,\nfieldset[disabled] .btn-info:focus,\n.btn-info.disabled.focus,\n.btn-info[disabled].focus,\nfieldset[disabled] .btn-info.focus,\n.btn-info.disabled:active,\n.btn-info[disabled]:active,\nfieldset[disabled] .btn-info:active,\n.btn-info.disabled.active,\n.btn-info[disabled].active,\nfieldset[disabled] .btn-info.active {\n background-color: #2aabd2;\n background-image: none;\n}\n.btn-warning {\n background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);\n background-image: -o-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);\n background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #e38d13;\n}\n.btn-warning:hover,\n.btn-warning:focus {\n background-color: #eb9316;\n background-position: 0 -15px;\n}\n.btn-warning:active,\n.btn-warning.active {\n background-color: #eb9316;\n border-color: #e38d13;\n}\n.btn-warning.disabled,\n.btn-warning[disabled],\nfieldset[disabled] .btn-warning,\n.btn-warning.disabled:hover,\n.btn-warning[disabled]:hover,\nfieldset[disabled] .btn-warning:hover,\n.btn-warning.disabled:focus,\n.btn-warning[disabled]:focus,\nfieldset[disabled] .btn-warning:focus,\n.btn-warning.disabled.focus,\n.btn-warning[disabled].focus,\nfieldset[disabled] .btn-warning.focus,\n.btn-warning.disabled:active,\n.btn-warning[disabled]:active,\nfieldset[disabled] .btn-warning:active,\n.btn-warning.disabled.active,\n.btn-warning[disabled].active,\nfieldset[disabled] .btn-warning.active {\n background-color: #eb9316;\n background-image: none;\n}\n.btn-danger {\n background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%);\n background-image: -o-linear-gradient(top, #d9534f 0%, #c12e2a 100%);\n background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #b92c28;\n}\n.btn-danger:hover,\n.btn-danger:focus {\n background-color: #c12e2a;\n background-position: 0 -15px;\n}\n.btn-danger:active,\n.btn-danger.active {\n background-color: #c12e2a;\n border-color: #b92c28;\n}\n.btn-danger.disabled,\n.btn-danger[disabled],\nfieldset[disabled] .btn-danger,\n.btn-danger.disabled:hover,\n.btn-danger[disabled]:hover,\nfieldset[disabled] .btn-danger:hover,\n.btn-danger.disabled:focus,\n.btn-danger[disabled]:focus,\nfieldset[disabled] .btn-danger:focus,\n.btn-danger.disabled.focus,\n.btn-danger[disabled].focus,\nfieldset[disabled] .btn-danger.focus,\n.btn-danger.disabled:active,\n.btn-danger[disabled]:active,\nfieldset[disabled] .btn-danger:active,\n.btn-danger.disabled.active,\n.btn-danger[disabled].active,\nfieldset[disabled] .btn-danger.active {\n background-color: #c12e2a;\n background-image: none;\n}\n.thumbnail,\n.img-thumbnail {\n -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n}\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);\n background-repeat: repeat-x;\n background-color: #e8e8e8;\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);\n background-repeat: repeat-x;\n background-color: #2e6da4;\n}\n.navbar-default {\n background-image: -webkit-linear-gradient(top, #ffffff 0%, #f8f8f8 100%);\n background-image: -o-linear-gradient(top, #ffffff 0%, #f8f8f8 100%);\n background-image: linear-gradient(to bottom, #ffffff 0%, #f8f8f8 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);\n}\n.navbar-default .navbar-nav > .open > a,\n.navbar-default .navbar-nav > .active > a {\n background-image: -webkit-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);\n background-image: -o-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);\n background-image: linear-gradient(to bottom, #dbdbdb 0%, #e2e2e2 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);\n background-repeat: repeat-x;\n -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);\n}\n.navbar-brand,\n.navbar-nav > li > a {\n text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);\n}\n.navbar-inverse {\n background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222 100%);\n background-image: -o-linear-gradient(top, #3c3c3c 0%, #222 100%);\n background-image: linear-gradient(to bottom, #3c3c3c 0%, #222 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n border-radius: 4px;\n}\n.navbar-inverse .navbar-nav > .open > a,\n.navbar-inverse .navbar-nav > .active > a {\n background-image: -webkit-linear-gradient(top, #080808 0%, #0f0f0f 100%);\n background-image: -o-linear-gradient(top, #080808 0%, #0f0f0f 100%);\n background-image: linear-gradient(to bottom, #080808 0%, #0f0f0f 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);\n background-repeat: repeat-x;\n -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);\n box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);\n}\n.navbar-inverse .navbar-brand,\n.navbar-inverse .navbar-nav > li > a {\n text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);\n}\n.navbar-static-top,\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n border-radius: 0;\n}\n@media (max-width: 767px) {\n .navbar .navbar-nav .open .dropdown-menu > .active > a,\n .navbar .navbar-nav .open .dropdown-menu > .active > a:hover,\n .navbar .navbar-nav .open .dropdown-menu > .active > a:focus {\n color: #fff;\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);\n background-repeat: repeat-x;\n }\n}\n.alert {\n text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);\n}\n.alert-success {\n background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);\n background-image: -o-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);\n background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);\n background-repeat: repeat-x;\n border-color: #b2dba1;\n}\n.alert-info {\n background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%);\n background-image: -o-linear-gradient(top, #d9edf7 0%, #b9def0 100%);\n background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);\n background-repeat: repeat-x;\n border-color: #9acfea;\n}\n.alert-warning {\n background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);\n background-image: -o-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);\n background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);\n background-repeat: repeat-x;\n border-color: #f5e79e;\n}\n.alert-danger {\n background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);\n background-image: -o-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);\n background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);\n background-repeat: repeat-x;\n border-color: #dca7a7;\n}\n.progress {\n background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);\n background-image: -o-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);\n background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);\n background-repeat: repeat-x;\n}\n.progress-bar {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #286090 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #286090 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #286090 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0);\n background-repeat: repeat-x;\n}\n.progress-bar-success {\n background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%);\n background-image: -o-linear-gradient(top, #5cb85c 0%, #449d44 100%);\n background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);\n background-repeat: repeat-x;\n}\n.progress-bar-info {\n background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);\n background-image: -o-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);\n background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);\n background-repeat: repeat-x;\n}\n.progress-bar-warning {\n background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);\n background-image: -o-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);\n background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);\n background-repeat: repeat-x;\n}\n.progress-bar-danger {\n background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%);\n background-image: -o-linear-gradient(top, #d9534f 0%, #c9302c 100%);\n background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);\n background-repeat: repeat-x;\n}\n.progress-bar-striped {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.list-group {\n border-radius: 4px;\n -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n}\n.list-group-item.active,\n.list-group-item.active:hover,\n.list-group-item.active:focus {\n text-shadow: 0 -1px 0 #286090;\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2b669a 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2b669a 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #2b669a 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);\n background-repeat: repeat-x;\n border-color: #2b669a;\n}\n.list-group-item.active .badge,\n.list-group-item.active:hover .badge,\n.list-group-item.active:focus .badge {\n text-shadow: none;\n}\n.panel {\n -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);\n box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);\n}\n.panel-default > .panel-heading {\n background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);\n background-repeat: repeat-x;\n}\n.panel-primary > .panel-heading {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);\n background-repeat: repeat-x;\n}\n.panel-success > .panel-heading {\n background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);\n background-image: -o-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);\n background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);\n background-repeat: repeat-x;\n}\n.panel-info > .panel-heading {\n background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);\n background-image: -o-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);\n background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);\n background-repeat: repeat-x;\n}\n.panel-warning > .panel-heading {\n background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);\n background-image: -o-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);\n background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);\n background-repeat: repeat-x;\n}\n.panel-danger > .panel-heading {\n background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%);\n background-image: -o-linear-gradient(top, #f2dede 0%, #ebcccc 100%);\n background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);\n background-repeat: repeat-x;\n}\n.well {\n background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);\n background-image: -o-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);\n background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);\n background-repeat: repeat-x;\n border-color: #dcdcdc;\n -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);\n box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);\n}\n/*# sourceMappingURL=bootstrap-theme.css.map */","// stylelint-disable selector-no-qualifying-type, selector-max-compound-selectors\n\n/*!\n * Bootstrap v3.4.1 (https://getbootstrap.com/)\n * Copyright 2011-2019 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n\n//\n// Load core variables and mixins\n// --------------------------------------------------\n\n@import \"variables.less\";\n@import \"mixins.less\";\n\n\n//\n// Buttons\n// --------------------------------------------------\n\n// Common styles\n.btn-default,\n.btn-primary,\n.btn-success,\n.btn-info,\n.btn-warning,\n.btn-danger {\n text-shadow: 0 -1px 0 rgba(0, 0, 0, .2);\n @shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);\n .box-shadow(@shadow);\n\n // Reset the shadow\n &:active,\n &.active {\n .box-shadow(inset 0 3px 5px rgba(0, 0, 0, .125));\n }\n\n &.disabled,\n &[disabled],\n fieldset[disabled] & {\n .box-shadow(none);\n }\n\n .badge {\n text-shadow: none;\n }\n}\n\n// Mixin for generating new styles\n.btn-styles(@btn-color: #555) {\n #gradient > .vertical(@start-color: @btn-color; @end-color: darken(@btn-color, 12%));\n .reset-filter(); // Disable gradients for IE9 because filter bleeds through rounded corners; see https://github.com/twbs/bootstrap/issues/10620\n background-repeat: repeat-x;\n border-color: darken(@btn-color, 14%);\n\n &:hover,\n &:focus {\n background-color: darken(@btn-color, 12%);\n background-position: 0 -15px;\n }\n\n &:active,\n &.active {\n background-color: darken(@btn-color, 12%);\n border-color: darken(@btn-color, 14%);\n }\n\n &.disabled,\n &[disabled],\n fieldset[disabled] & {\n &,\n &:hover,\n &:focus,\n &.focus,\n &:active,\n &.active {\n background-color: darken(@btn-color, 12%);\n background-image: none;\n }\n }\n}\n\n// Common styles\n.btn {\n // Remove the gradient for the pressed/active state\n &:active,\n &.active {\n background-image: none;\n }\n}\n\n// Apply the mixin to the buttons\n.btn-default {\n .btn-styles(@btn-default-bg);\n text-shadow: 0 1px 0 #fff;\n border-color: #ccc;\n}\n.btn-primary { .btn-styles(@btn-primary-bg); }\n.btn-success { .btn-styles(@btn-success-bg); }\n.btn-info { .btn-styles(@btn-info-bg); }\n.btn-warning { .btn-styles(@btn-warning-bg); }\n.btn-danger { .btn-styles(@btn-danger-bg); }\n\n\n//\n// Images\n// --------------------------------------------------\n\n.thumbnail,\n.img-thumbnail {\n .box-shadow(0 1px 2px rgba(0, 0, 0, .075));\n}\n\n\n//\n// Dropdowns\n// --------------------------------------------------\n\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n #gradient > .vertical(@start-color: @dropdown-link-hover-bg; @end-color: darken(@dropdown-link-hover-bg, 5%));\n background-color: darken(@dropdown-link-hover-bg, 5%);\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n #gradient > .vertical(@start-color: @dropdown-link-active-bg; @end-color: darken(@dropdown-link-active-bg, 5%));\n background-color: darken(@dropdown-link-active-bg, 5%);\n}\n\n\n//\n// Navbar\n// --------------------------------------------------\n\n// Default navbar\n.navbar-default {\n #gradient > .vertical(@start-color: lighten(@navbar-default-bg, 10%); @end-color: @navbar-default-bg);\n .reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered\n border-radius: @navbar-border-radius;\n @shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075);\n .box-shadow(@shadow);\n\n .navbar-nav > .open > a,\n .navbar-nav > .active > a {\n #gradient > .vertical(@start-color: darken(@navbar-default-link-active-bg, 5%); @end-color: darken(@navbar-default-link-active-bg, 2%));\n .box-shadow(inset 0 3px 9px rgba(0, 0, 0, .075));\n }\n}\n.navbar-brand,\n.navbar-nav > li > a {\n text-shadow: 0 1px 0 rgba(255, 255, 255, .25);\n}\n\n// Inverted navbar\n.navbar-inverse {\n #gradient > .vertical(@start-color: lighten(@navbar-inverse-bg, 10%); @end-color: @navbar-inverse-bg);\n .reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered; see https://github.com/twbs/bootstrap/issues/10257\n border-radius: @navbar-border-radius;\n .navbar-nav > .open > a,\n .navbar-nav > .active > a {\n #gradient > .vertical(@start-color: @navbar-inverse-link-active-bg; @end-color: lighten(@navbar-inverse-link-active-bg, 2.5%));\n .box-shadow(inset 0 3px 9px rgba(0, 0, 0, .25));\n }\n\n .navbar-brand,\n .navbar-nav > li > a {\n text-shadow: 0 -1px 0 rgba(0, 0, 0, .25);\n }\n}\n\n// Undo rounded corners in static and fixed navbars\n.navbar-static-top,\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n border-radius: 0;\n}\n\n// Fix active state of dropdown items in collapsed mode\n@media (max-width: @grid-float-breakpoint-max) {\n .navbar .navbar-nav .open .dropdown-menu > .active > a {\n &,\n &:hover,\n &:focus {\n color: #fff;\n #gradient > .vertical(@start-color: @dropdown-link-active-bg; @end-color: darken(@dropdown-link-active-bg, 5%));\n }\n }\n}\n\n\n//\n// Alerts\n// --------------------------------------------------\n\n// Common styles\n.alert {\n text-shadow: 0 1px 0 rgba(255, 255, 255, .2);\n @shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05);\n .box-shadow(@shadow);\n}\n\n// Mixin for generating new styles\n.alert-styles(@color) {\n #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 7.5%));\n border-color: darken(@color, 15%);\n}\n\n// Apply the mixin to the alerts\n.alert-success { .alert-styles(@alert-success-bg); }\n.alert-info { .alert-styles(@alert-info-bg); }\n.alert-warning { .alert-styles(@alert-warning-bg); }\n.alert-danger { .alert-styles(@alert-danger-bg); }\n\n\n//\n// Progress bars\n// --------------------------------------------------\n\n// Give the progress background some depth\n.progress {\n #gradient > .vertical(@start-color: darken(@progress-bg, 4%); @end-color: @progress-bg)\n}\n\n// Mixin for generating new styles\n.progress-bar-styles(@color) {\n #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 10%));\n}\n\n// Apply the mixin to the progress bars\n.progress-bar { .progress-bar-styles(@progress-bar-bg); }\n.progress-bar-success { .progress-bar-styles(@progress-bar-success-bg); }\n.progress-bar-info { .progress-bar-styles(@progress-bar-info-bg); }\n.progress-bar-warning { .progress-bar-styles(@progress-bar-warning-bg); }\n.progress-bar-danger { .progress-bar-styles(@progress-bar-danger-bg); }\n\n// Reset the striped class because our mixins don't do multiple gradients and\n// the above custom styles override the new `.progress-bar-striped` in v3.2.0.\n.progress-bar-striped {\n #gradient > .striped();\n}\n\n\n//\n// List groups\n// --------------------------------------------------\n\n.list-group {\n border-radius: @border-radius-base;\n .box-shadow(0 1px 2px rgba(0, 0, 0, .075));\n}\n.list-group-item.active,\n.list-group-item.active:hover,\n.list-group-item.active:focus {\n text-shadow: 0 -1px 0 darken(@list-group-active-bg, 10%);\n #gradient > .vertical(@start-color: @list-group-active-bg; @end-color: darken(@list-group-active-bg, 7.5%));\n border-color: darken(@list-group-active-border, 7.5%);\n\n .badge {\n text-shadow: none;\n }\n}\n\n\n//\n// Panels\n// --------------------------------------------------\n\n// Common styles\n.panel {\n .box-shadow(0 1px 2px rgba(0, 0, 0, .05));\n}\n\n// Mixin for generating new styles\n.panel-heading-styles(@color) {\n #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 5%));\n}\n\n// Apply the mixin to the panel headings only\n.panel-default > .panel-heading { .panel-heading-styles(@panel-default-heading-bg); }\n.panel-primary > .panel-heading { .panel-heading-styles(@panel-primary-heading-bg); }\n.panel-success > .panel-heading { .panel-heading-styles(@panel-success-heading-bg); }\n.panel-info > .panel-heading { .panel-heading-styles(@panel-info-heading-bg); }\n.panel-warning > .panel-heading { .panel-heading-styles(@panel-warning-heading-bg); }\n.panel-danger > .panel-heading { .panel-heading-styles(@panel-danger-heading-bg); }\n\n\n//\n// Wells\n// --------------------------------------------------\n\n.well {\n #gradient > .vertical(@start-color: darken(@well-bg, 5%); @end-color: @well-bg);\n border-color: darken(@well-bg, 10%);\n @shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1);\n .box-shadow(@shadow);\n}\n","// stylelint-disable indentation, property-no-vendor-prefix, selector-no-vendor-prefix\n\n// Vendor Prefixes\n//\n// All vendor mixins are deprecated as of v3.2.0 due to the introduction of\n// Autoprefixer in our Gruntfile. They have been removed in v4.\n\n// - Animations\n// - Backface visibility\n// - Box shadow\n// - Box sizing\n// - Content columns\n// - Hyphens\n// - Placeholder text\n// - Transformations\n// - Transitions\n// - User Select\n\n\n// Animations\n.animation(@animation) {\n -webkit-animation: @animation;\n -o-animation: @animation;\n animation: @animation;\n}\n.animation-name(@name) {\n -webkit-animation-name: @name;\n animation-name: @name;\n}\n.animation-duration(@duration) {\n -webkit-animation-duration: @duration;\n animation-duration: @duration;\n}\n.animation-timing-function(@timing-function) {\n -webkit-animation-timing-function: @timing-function;\n animation-timing-function: @timing-function;\n}\n.animation-delay(@delay) {\n -webkit-animation-delay: @delay;\n animation-delay: @delay;\n}\n.animation-iteration-count(@iteration-count) {\n -webkit-animation-iteration-count: @iteration-count;\n animation-iteration-count: @iteration-count;\n}\n.animation-direction(@direction) {\n -webkit-animation-direction: @direction;\n animation-direction: @direction;\n}\n.animation-fill-mode(@fill-mode) {\n -webkit-animation-fill-mode: @fill-mode;\n animation-fill-mode: @fill-mode;\n}\n\n// Backface visibility\n// Prevent browsers from flickering when using CSS 3D transforms.\n// Default value is `visible`, but can be changed to `hidden`\n\n.backface-visibility(@visibility) {\n -webkit-backface-visibility: @visibility;\n -moz-backface-visibility: @visibility;\n backface-visibility: @visibility;\n}\n\n// Drop shadows\n//\n// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's\n// supported browsers that have box shadow capabilities now support it.\n\n.box-shadow(@shadow) {\n -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1\n box-shadow: @shadow;\n}\n\n// Box sizing\n.box-sizing(@boxmodel) {\n -webkit-box-sizing: @boxmodel;\n -moz-box-sizing: @boxmodel;\n box-sizing: @boxmodel;\n}\n\n// CSS3 Content Columns\n.content-columns(@column-count; @column-gap: @grid-gutter-width) {\n -webkit-column-count: @column-count;\n -moz-column-count: @column-count;\n column-count: @column-count;\n -webkit-column-gap: @column-gap;\n -moz-column-gap: @column-gap;\n column-gap: @column-gap;\n}\n\n// Optional hyphenation\n.hyphens(@mode: auto) {\n -webkit-hyphens: @mode;\n -moz-hyphens: @mode;\n -ms-hyphens: @mode; // IE10+\n -o-hyphens: @mode;\n hyphens: @mode;\n word-wrap: break-word;\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n // Firefox\n &::-moz-placeholder {\n color: @color;\n opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526\n }\n &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+\n &::-webkit-input-placeholder { color: @color; } // Safari and Chrome\n}\n\n// Transformations\n.scale(@ratio) {\n -webkit-transform: scale(@ratio);\n -ms-transform: scale(@ratio); // IE9 only\n -o-transform: scale(@ratio);\n transform: scale(@ratio);\n}\n.scale(@ratioX; @ratioY) {\n -webkit-transform: scale(@ratioX, @ratioY);\n -ms-transform: scale(@ratioX, @ratioY); // IE9 only\n -o-transform: scale(@ratioX, @ratioY);\n transform: scale(@ratioX, @ratioY);\n}\n.scaleX(@ratio) {\n -webkit-transform: scaleX(@ratio);\n -ms-transform: scaleX(@ratio); // IE9 only\n -o-transform: scaleX(@ratio);\n transform: scaleX(@ratio);\n}\n.scaleY(@ratio) {\n -webkit-transform: scaleY(@ratio);\n -ms-transform: scaleY(@ratio); // IE9 only\n -o-transform: scaleY(@ratio);\n transform: scaleY(@ratio);\n}\n.skew(@x; @y) {\n -webkit-transform: skewX(@x) skewY(@y);\n -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+\n -o-transform: skewX(@x) skewY(@y);\n transform: skewX(@x) skewY(@y);\n}\n.translate(@x; @y) {\n -webkit-transform: translate(@x, @y);\n -ms-transform: translate(@x, @y); // IE9 only\n -o-transform: translate(@x, @y);\n transform: translate(@x, @y);\n}\n.translate3d(@x; @y; @z) {\n -webkit-transform: translate3d(@x, @y, @z);\n transform: translate3d(@x, @y, @z);\n}\n.rotate(@degrees) {\n -webkit-transform: rotate(@degrees);\n -ms-transform: rotate(@degrees); // IE9 only\n -o-transform: rotate(@degrees);\n transform: rotate(@degrees);\n}\n.rotateX(@degrees) {\n -webkit-transform: rotateX(@degrees);\n -ms-transform: rotateX(@degrees); // IE9 only\n -o-transform: rotateX(@degrees);\n transform: rotateX(@degrees);\n}\n.rotateY(@degrees) {\n -webkit-transform: rotateY(@degrees);\n -ms-transform: rotateY(@degrees); // IE9 only\n -o-transform: rotateY(@degrees);\n transform: rotateY(@degrees);\n}\n.perspective(@perspective) {\n -webkit-perspective: @perspective;\n -moz-perspective: @perspective;\n perspective: @perspective;\n}\n.perspective-origin(@perspective) {\n -webkit-perspective-origin: @perspective;\n -moz-perspective-origin: @perspective;\n perspective-origin: @perspective;\n}\n.transform-origin(@origin) {\n -webkit-transform-origin: @origin;\n -moz-transform-origin: @origin;\n -ms-transform-origin: @origin; // IE9 only\n transform-origin: @origin;\n}\n\n\n// Transitions\n\n.transition(@transition) {\n -webkit-transition: @transition;\n -o-transition: @transition;\n transition: @transition;\n}\n.transition-property(@transition-property) {\n -webkit-transition-property: @transition-property;\n transition-property: @transition-property;\n}\n.transition-delay(@transition-delay) {\n -webkit-transition-delay: @transition-delay;\n transition-delay: @transition-delay;\n}\n.transition-duration(@transition-duration) {\n -webkit-transition-duration: @transition-duration;\n transition-duration: @transition-duration;\n}\n.transition-timing-function(@timing-function) {\n -webkit-transition-timing-function: @timing-function;\n transition-timing-function: @timing-function;\n}\n.transition-transform(@transition) {\n -webkit-transition: -webkit-transform @transition;\n -moz-transition: -moz-transform @transition;\n -o-transition: -o-transform @transition;\n transition: transform @transition;\n}\n\n\n// User select\n// For selecting text on the page\n\n.user-select(@select) {\n -webkit-user-select: @select;\n -moz-user-select: @select;\n -ms-user-select: @select; // IE10+\n user-select: @select;\n}\n","// stylelint-disable value-no-vendor-prefix, selector-max-id\n\n#gradient {\n\n // Horizontal gradient, from left to right\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Opera 12\n background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\", argb(@start-color), argb(@end-color))); // IE9 and down\n background-repeat: repeat-x;\n }\n\n // Vertical gradient, from top to bottom\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Opera 12\n background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\", argb(@start-color), argb(@end-color))); // IE9 and down\n background-repeat: repeat-x;\n }\n\n .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {\n background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(@deg, @start-color, @end-color); // Opera 12\n background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n background-repeat: repeat-x;\n }\n .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n background-image: -o-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\", argb(@start-color), argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n background-repeat: no-repeat;\n }\n .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-image: -o-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\", argb(@start-color), argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n background-repeat: no-repeat;\n }\n .radial(@inner-color: #555; @outer-color: #333) {\n background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);\n background-image: radial-gradient(circle, @inner-color, @outer-color);\n background-repeat: no-repeat;\n }\n .striped(@color: rgba(255, 255, 255, .15); @angle: 45deg) {\n background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n }\n}\n","// Reset filters for IE\n//\n// When you need to remove a gradient background, do not forget to use this to reset\n// the IE filter for IE9 and below.\n\n.reset-filter() {\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(enabled = false)\"));\n}\n"]} \ No newline at end of file diff --git a/AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootstrap-3.4.1/css/bootstrap-theme.min.css b/AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootstrap-3.4.1/css/bootstrap-theme.min.css new file mode 100644 index 0000000000..2a69f48c7f --- /dev/null +++ b/AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootstrap-3.4.1/css/bootstrap-theme.min.css @@ -0,0 +1,6 @@ +/*! + * Bootstrap v3.4.1 (https://getbootstrap.com/) + * Copyright 2011-2019 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */.btn-danger,.btn-default,.btn-info,.btn-primary,.btn-success,.btn-warning{text-shadow:0 -1px 0 rgba(0,0,0,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-danger.active,.btn-danger:active,.btn-default.active,.btn-default:active,.btn-info.active,.btn-info:active,.btn-primary.active,.btn-primary:active,.btn-success.active,.btn-success:active,.btn-warning.active,.btn-warning:active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-danger.disabled,.btn-danger[disabled],.btn-default.disabled,.btn-default[disabled],.btn-info.disabled,.btn-info[disabled],.btn-primary.disabled,.btn-primary[disabled],.btn-success.disabled,.btn-success[disabled],.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-danger,fieldset[disabled] .btn-default,fieldset[disabled] .btn-info,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-success,fieldset[disabled] .btn-warning{-webkit-box-shadow:none;box-shadow:none}.btn-danger .badge,.btn-default .badge,.btn-info .badge,.btn-primary .badge,.btn-success .badge,.btn-warning .badge{text-shadow:none}.btn.active,.btn:active{background-image:none}.btn-default{background-image:-webkit-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:-o-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e0e0e0));background-image:linear-gradient(to bottom,#fff 0,#e0e0e0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#dbdbdb;text-shadow:0 1px 0 #fff;border-color:#ccc}.btn-default:focus,.btn-default:hover{background-color:#e0e0e0;background-position:0 -15px}.btn-default.active,.btn-default:active{background-color:#e0e0e0;border-color:#dbdbdb}.btn-default.disabled,.btn-default.disabled.active,.btn-default.disabled.focus,.btn-default.disabled:active,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled],.btn-default[disabled].active,.btn-default[disabled].focus,.btn-default[disabled]:active,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default,fieldset[disabled] .btn-default.active,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:active,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#e0e0e0;background-image:none}.btn-primary{background-image:-webkit-linear-gradient(top,#337ab7 0,#265a88 100%);background-image:-o-linear-gradient(top,#337ab7 0,#265a88 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#265a88));background-image:linear-gradient(to bottom,#337ab7 0,#265a88 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#245580}.btn-primary:focus,.btn-primary:hover{background-color:#265a88;background-position:0 -15px}.btn-primary.active,.btn-primary:active{background-color:#265a88;border-color:#245580}.btn-primary.disabled,.btn-primary.disabled.active,.btn-primary.disabled.focus,.btn-primary.disabled:active,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled],.btn-primary[disabled].active,.btn-primary[disabled].focus,.btn-primary[disabled]:active,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-primary.active,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:active,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#265a88;background-image:none}.btn-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:-o-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#419641));background-image:linear-gradient(to bottom,#5cb85c 0,#419641 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#3e8f3e}.btn-success:focus,.btn-success:hover{background-color:#419641;background-position:0 -15px}.btn-success.active,.btn-success:active{background-color:#419641;border-color:#3e8f3e}.btn-success.disabled,.btn-success.disabled.active,.btn-success.disabled.focus,.btn-success.disabled:active,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled],.btn-success[disabled].active,.btn-success[disabled].focus,.btn-success[disabled]:active,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success,fieldset[disabled] .btn-success.active,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:active,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#419641;background-image:none}.btn-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:-o-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#2aabd2));background-image:linear-gradient(to bottom,#5bc0de 0,#2aabd2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#28a4c9}.btn-info:focus,.btn-info:hover{background-color:#2aabd2;background-position:0 -15px}.btn-info.active,.btn-info:active{background-color:#2aabd2;border-color:#28a4c9}.btn-info.disabled,.btn-info.disabled.active,.btn-info.disabled.focus,.btn-info.disabled:active,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled],.btn-info[disabled].active,.btn-info[disabled].focus,.btn-info[disabled]:active,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info,fieldset[disabled] .btn-info.active,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:active,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#2aabd2;background-image:none}.btn-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:-o-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#eb9316));background-image:linear-gradient(to bottom,#f0ad4e 0,#eb9316 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#e38d13}.btn-warning:focus,.btn-warning:hover{background-color:#eb9316;background-position:0 -15px}.btn-warning.active,.btn-warning:active{background-color:#eb9316;border-color:#e38d13}.btn-warning.disabled,.btn-warning.disabled.active,.btn-warning.disabled.focus,.btn-warning.disabled:active,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled],.btn-warning[disabled].active,.btn-warning[disabled].focus,.btn-warning[disabled]:active,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning,fieldset[disabled] .btn-warning.active,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:active,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#eb9316;background-image:none}.btn-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:-o-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9534f),to(#c12e2a));background-image:linear-gradient(to bottom,#d9534f 0,#c12e2a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#b92c28}.btn-danger:focus,.btn-danger:hover{background-color:#c12e2a;background-position:0 -15px}.btn-danger.active,.btn-danger:active{background-color:#c12e2a;border-color:#b92c28}.btn-danger.disabled,.btn-danger.disabled.active,.btn-danger.disabled.focus,.btn-danger.disabled:active,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled],.btn-danger[disabled].active,.btn-danger[disabled].focus,.btn-danger[disabled]:active,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger,fieldset[disabled] .btn-danger.active,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:active,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#c12e2a;background-image:none}.img-thumbnail,.thumbnail{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-o-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);background-repeat:repeat-x;background-color:#e8e8e8}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x;background-color:#2e6da4}.navbar-default{background-image:-webkit-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:-o-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#f8f8f8));background-image:linear-gradient(to bottom,#fff 0,#f8f8f8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075)}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.open>a{background-image:-webkit-linear-gradient(top,#dbdbdb 0,#e2e2e2 100%);background-image:-o-linear-gradient(top,#dbdbdb 0,#e2e2e2 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dbdbdb),to(#e2e2e2));background-image:linear-gradient(to bottom,#dbdbdb 0,#e2e2e2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,.075);box-shadow:inset 0 3px 9px rgba(0,0,0,.075)}.navbar-brand,.navbar-nav>li>a{text-shadow:0 1px 0 rgba(255,255,255,.25)}.navbar-inverse{background-image:-webkit-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:-o-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#3c3c3c),to(#222));background-image:linear-gradient(to bottom,#3c3c3c 0,#222 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);border-radius:4px}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.open>a{background-image:-webkit-linear-gradient(top,#080808 0,#0f0f0f 100%);background-image:-o-linear-gradient(top,#080808 0,#0f0f0f 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#080808),to(#0f0f0f));background-image:linear-gradient(to bottom,#080808 0,#0f0f0f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,.25);box-shadow:inset 0 3px 9px rgba(0,0,0,.25)}.navbar-inverse .navbar-brand,.navbar-inverse .navbar-nav>li>a{text-shadow:0 -1px 0 rgba(0,0,0,.25)}.navbar-fixed-bottom,.navbar-fixed-top,.navbar-static-top{border-radius:0}@media (max-width:767px){.navbar .navbar-nav .open .dropdown-menu>.active>a,.navbar .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}}.alert{text-shadow:0 1px 0 rgba(255,255,255,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05)}.alert-success{background-image:-webkit-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:-o-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dff0d8),to(#c8e5bc));background-image:linear-gradient(to bottom,#dff0d8 0,#c8e5bc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);background-repeat:repeat-x;border-color:#b2dba1}.alert-info{background-image:-webkit-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:-o-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9edf7),to(#b9def0));background-image:linear-gradient(to bottom,#d9edf7 0,#b9def0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);background-repeat:repeat-x;border-color:#9acfea}.alert-warning{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:-o-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fcf8e3),to(#f8efc0));background-image:linear-gradient(to bottom,#fcf8e3 0,#f8efc0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);background-repeat:repeat-x;border-color:#f5e79e}.alert-danger{background-image:-webkit-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:-o-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f2dede),to(#e7c3c3));background-image:linear-gradient(to bottom,#f2dede 0,#e7c3c3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);background-repeat:repeat-x;border-color:#dca7a7}.progress{background-image:-webkit-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:-o-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#f5f5f5));background-image:linear-gradient(to bottom,#ebebeb 0,#f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);background-repeat:repeat-x}.progress-bar{background-image:-webkit-linear-gradient(top,#337ab7 0,#286090 100%);background-image:-o-linear-gradient(top,#337ab7 0,#286090 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#286090));background-image:linear-gradient(to bottom,#337ab7 0,#286090 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0);background-repeat:repeat-x}.progress-bar-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:-o-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#449d44));background-image:linear-gradient(to bottom,#5cb85c 0,#449d44 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);background-repeat:repeat-x}.progress-bar-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:-o-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#31b0d5));background-image:linear-gradient(to bottom,#5bc0de 0,#31b0d5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);background-repeat:repeat-x}.progress-bar-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:-o-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#ec971f));background-image:linear-gradient(to bottom,#f0ad4e 0,#ec971f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);background-repeat:repeat-x}.progress-bar-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:-o-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9534f),to(#c9302c));background-image:linear-gradient(to bottom,#d9534f 0,#c9302c 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);background-repeat:repeat-x}.progress-bar-striped{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.list-group{border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{text-shadow:0 -1px 0 #286090;background-image:-webkit-linear-gradient(top,#337ab7 0,#2b669a 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2b669a 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2b669a));background-image:linear-gradient(to bottom,#337ab7 0,#2b669a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);background-repeat:repeat-x;border-color:#2b669a}.list-group-item.active .badge,.list-group-item.active:focus .badge,.list-group-item.active:hover .badge{text-shadow:none}.panel{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.05);box-shadow:0 1px 2px rgba(0,0,0,.05)}.panel-default>.panel-heading{background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-o-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);background-repeat:repeat-x}.panel-primary>.panel-heading{background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}.panel-success>.panel-heading{background-image:-webkit-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:-o-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dff0d8),to(#d0e9c6));background-image:linear-gradient(to bottom,#dff0d8 0,#d0e9c6 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);background-repeat:repeat-x}.panel-info>.panel-heading{background-image:-webkit-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:-o-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9edf7),to(#c4e3f3));background-image:linear-gradient(to bottom,#d9edf7 0,#c4e3f3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);background-repeat:repeat-x}.panel-warning>.panel-heading{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:-o-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fcf8e3),to(#faf2cc));background-image:linear-gradient(to bottom,#fcf8e3 0,#faf2cc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);background-repeat:repeat-x}.panel-danger>.panel-heading{background-image:-webkit-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:-o-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f2dede),to(#ebcccc));background-image:linear-gradient(to bottom,#f2dede 0,#ebcccc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);background-repeat:repeat-x}.well{background-image:-webkit-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:-o-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#e8e8e8),to(#f5f5f5));background-image:linear-gradient(to bottom,#e8e8e8 0,#f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);background-repeat:repeat-x;border-color:#dcdcdc;-webkit-box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1)} +/*# sourceMappingURL=bootstrap-theme.min.css.map */ \ No newline at end of file diff --git a/AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootstrap-3.4.1/css/bootstrap-theme.min.css.map b/AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootstrap-3.4.1/css/bootstrap-theme.min.css.map new file mode 100644 index 0000000000..5d75106e04 --- /dev/null +++ b/AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootstrap-3.4.1/css/bootstrap-theme.min.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["bootstrap-theme.css","dist/css/bootstrap-theme.css","less/theme.less","less/mixins/vendor-prefixes.less","less/mixins/gradients.less","less/mixins/reset-filter.less"],"names":[],"mappings":"AAAA;;;;ACUA,YCWA,aDbA,UAFA,aACA,aAEA,aCkBE,YAAA,EAAA,KAAA,EAAA,eC2CA,mBAAA,MAAA,EAAA,IAAA,EAAA,qBAAA,CAAA,EAAA,IAAA,IAAA,iBACQ,WAAA,MAAA,EAAA,IAAA,EAAA,qBAAA,CAAA,EAAA,IAAA,IAAA,iBF7CV,mBANA,mBACA,oBCWE,oBDRF,iBANA,iBAIA,oBANA,oBAOA,oBANA,oBAQA,oBANA,oBEmDE,mBAAA,MAAA,EAAA,IAAA,IAAA,iBACQ,WAAA,MAAA,EAAA,IAAA,IAAA,iBFpCV,qBAMA,sBCJE,sBDDF,uBAHA,mBAMA,oBARA,sBAMA,uBALA,sBAMA,uBAJA,sBAMA,uBAOA,+BALA,gCAGA,6BAFA,gCACA,gCAEA,gCEwBE,mBAAA,KACQ,WAAA,KFfV,mBCnCA,oBDiCA,iBAFA,oBACA,oBAEA,oBCXI,YAAA,KDgBJ,YCyBE,YAEE,iBAAA,KAKJ,aEvEI,iBAAA,iDACA,iBAAA,4CACA,iBAAA,qEAAA,iBAAA,+CACA,OAAA,+GClBF,OAAA,0DH8CA,kBAAA,SACA,aAAA,QAyCA,YAAA,EAAA,IAAA,EAAA,KACA,aAAA,KDnBF,mBCrBE,mBAEE,iBAAA,QACA,oBAAA,EAAA,MDuBJ,oBCpBE,oBAEE,iBAAA,QACA,aAAA,QAMA,sBD8BJ,6BANA,4BAGA,6BANA,4BAHA,4BAFA,uBAeA,8BANA,6BAGA,8BANA,6BAHA,6BAFA,gCAeA,uCANA,sCAGA,uCANA,sCAHA,sCCdM,iBAAA,QACA,iBAAA,KAoBN,aE5EI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GClBF,OAAA,0DH8CA,kBAAA,SACA,aAAA,QDgEF,mBC9DE,mBAEE,iBAAA,QACA,oBAAA,EAAA,MDgEJ,oBC7DE,oBAEE,iBAAA,QACA,aAAA,QAMA,sBDuEJ,6BANA,4BAGA,6BANA,4BAHA,4BAFA,uBAeA,8BANA,6BAGA,8BANA,6BAHA,6BAFA,gCAeA,uCANA,sCAGA,uCANA,sCAHA,sCCvDM,iBAAA,QACA,iBAAA,KAqBN,aE7EI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GClBF,OAAA,0DH8CA,kBAAA,SACA,aAAA,QDyGF,mBCvGE,mBAEE,iBAAA,QACA,oBAAA,EAAA,MDyGJ,oBCtGE,oBAEE,iBAAA,QACA,aAAA,QAMA,sBDgHJ,6BANA,4BAGA,6BANA,4BAHA,4BAFA,uBAeA,8BANA,6BAGA,8BANA,6BAHA,6BAFA,gCAeA,uCANA,sCAGA,uCANA,sCAHA,sCChGM,iBAAA,QACA,iBAAA,KAsBN,UE9EI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GClBF,OAAA,0DH8CA,kBAAA,SACA,aAAA,QDkJF,gBChJE,gBAEE,iBAAA,QACA,oBAAA,EAAA,MDkJJ,iBC/IE,iBAEE,iBAAA,QACA,aAAA,QAMA,mBDyJJ,0BANA,yBAGA,0BANA,yBAHA,yBAFA,oBAeA,2BANA,0BAGA,2BANA,0BAHA,0BAFA,6BAeA,oCANA,mCAGA,oCANA,mCAHA,mCCzIM,iBAAA,QACA,iBAAA,KAuBN,aE/EI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GClBF,OAAA,0DH8CA,kBAAA,SACA,aAAA,QD2LF,mBCzLE,mBAEE,iBAAA,QACA,oBAAA,EAAA,MD2LJ,oBCxLE,oBAEE,iBAAA,QACA,aAAA,QAMA,sBDkMJ,6BANA,4BAGA,6BANA,4BAHA,4BAFA,uBAeA,8BANA,6BAGA,8BANA,6BAHA,6BAFA,gCAeA,uCANA,sCAGA,uCANA,sCAHA,sCClLM,iBAAA,QACA,iBAAA,KAwBN,YEhFI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GClBF,OAAA,0DH8CA,kBAAA,SACA,aAAA,QDoOF,kBClOE,kBAEE,iBAAA,QACA,oBAAA,EAAA,MDoOJ,mBCjOE,mBAEE,iBAAA,QACA,aAAA,QAMA,qBD2OJ,4BANA,2BAGA,4BANA,2BAHA,2BAFA,sBAeA,6BANA,4BAGA,6BANA,4BAHA,4BAFA,+BAeA,sCANA,qCAGA,sCANA,qCAHA,qCC3NM,iBAAA,QACA,iBAAA,KD2ON,eC5MA,WCtCE,mBAAA,EAAA,IAAA,IAAA,iBACQ,WAAA,EAAA,IAAA,IAAA,iBFsPV,0BCvMA,0BEjGI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SFgGF,iBAAA,QAEF,yBD6MA,+BADA,+BGlTI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SFsGF,iBAAA,QASF,gBEnHI,iBAAA,iDACA,iBAAA,4CACA,iBAAA,qEAAA,iBAAA,+CACA,OAAA,+GACA,kBAAA,SCnBF,OAAA,0DHqIA,cAAA,ICrEA,mBAAA,MAAA,EAAA,IAAA,EAAA,qBAAA,CAAA,EAAA,IAAA,IAAA,iBACQ,WAAA,MAAA,EAAA,IAAA,EAAA,qBAAA,CAAA,EAAA,IAAA,IAAA,iBFuRV,sCCtNA,oCEnHI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SD6CF,mBAAA,MAAA,EAAA,IAAA,IAAA,iBACQ,WAAA,MAAA,EAAA,IAAA,IAAA,iBD8EV,cDoNA,iBClNE,YAAA,EAAA,IAAA,EAAA,sBAIF,gBEtII,iBAAA,iDACA,iBAAA,4CACA,iBAAA,qEAAA,iBAAA,+CACA,OAAA,+GACA,kBAAA,SCnBF,OAAA,0DHwJA,cAAA,IDyNF,sCC5NA,oCEtII,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SD6CF,mBAAA,MAAA,EAAA,IAAA,IAAA,gBACQ,WAAA,MAAA,EAAA,IAAA,IAAA,gBDoFV,8BDuOA,iCC3NI,YAAA,EAAA,KAAA,EAAA,gBDgOJ,qBADA,kBC1NA,mBAGE,cAAA,EAIF,yBAEI,mDDwNF,yDADA,yDCpNI,MAAA,KEnKF,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,UF2KJ,OACE,YAAA,EAAA,IAAA,EAAA,qBC/HA,mBAAA,MAAA,EAAA,IAAA,EAAA,qBAAA,CAAA,EAAA,IAAA,IAAA,gBACQ,WAAA,MAAA,EAAA,IAAA,EAAA,qBAAA,CAAA,EAAA,IAAA,IAAA,gBD0IV,eE5LI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SFoLF,aAAA,QAKF,YE7LI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SFoLF,aAAA,QAMF,eE9LI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SFoLF,aAAA,QAOF,cE/LI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SFoLF,aAAA,QAeF,UEvMI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SF6MJ,cEjNI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SF8MJ,sBElNI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SF+MJ,mBEnNI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SFgNJ,sBEpNI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SFiNJ,qBErNI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SFqNJ,sBExLI,iBAAA,yKACA,iBAAA,oKACA,iBAAA,iKF+LJ,YACE,cAAA,IClLA,mBAAA,EAAA,IAAA,IAAA,iBACQ,WAAA,EAAA,IAAA,IAAA,iBDoLV,wBDiQA,8BADA,8BC7PE,YAAA,EAAA,KAAA,EAAA,QEzOE,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SFuOF,aAAA,QALF,+BD6QA,qCADA,qCCpQI,YAAA,KAUJ,OCvME,mBAAA,EAAA,IAAA,IAAA,gBACQ,WAAA,EAAA,IAAA,IAAA,gBDgNV,8BElQI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SF+PJ,8BEnQI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SFgQJ,8BEpQI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SFiQJ,2BErQI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SFkQJ,8BEtQI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SFmQJ,6BEvQI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SF0QJ,ME9QI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SF4QF,aAAA,QC/NA,mBAAA,MAAA,EAAA,IAAA,IAAA,eAAA,CAAA,EAAA,IAAA,EAAA,qBACQ,WAAA,MAAA,EAAA,IAAA,IAAA,eAAA,CAAA,EAAA,IAAA,EAAA","sourcesContent":["/*!\n * Bootstrap v3.4.1 (https://getbootstrap.com/)\n * Copyright 2011-2019 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n.btn-default,\n.btn-primary,\n.btn-success,\n.btn-info,\n.btn-warning,\n.btn-danger {\n text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.btn-default:active,\n.btn-primary:active,\n.btn-success:active,\n.btn-info:active,\n.btn-warning:active,\n.btn-danger:active,\n.btn-default.active,\n.btn-primary.active,\n.btn-success.active,\n.btn-info.active,\n.btn-warning.active,\n.btn-danger.active {\n -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.btn-default.disabled,\n.btn-primary.disabled,\n.btn-success.disabled,\n.btn-info.disabled,\n.btn-warning.disabled,\n.btn-danger.disabled,\n.btn-default[disabled],\n.btn-primary[disabled],\n.btn-success[disabled],\n.btn-info[disabled],\n.btn-warning[disabled],\n.btn-danger[disabled],\nfieldset[disabled] .btn-default,\nfieldset[disabled] .btn-primary,\nfieldset[disabled] .btn-success,\nfieldset[disabled] .btn-info,\nfieldset[disabled] .btn-warning,\nfieldset[disabled] .btn-danger {\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n.btn-default .badge,\n.btn-primary .badge,\n.btn-success .badge,\n.btn-info .badge,\n.btn-warning .badge,\n.btn-danger .badge {\n text-shadow: none;\n}\n.btn:active,\n.btn.active {\n background-image: none;\n}\n.btn-default {\n background-image: -webkit-linear-gradient(top, #fff 0%, #e0e0e0 100%);\n background-image: -o-linear-gradient(top, #fff 0%, #e0e0e0 100%);\n background-image: linear-gradient(to bottom, #fff 0%, #e0e0e0 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #dbdbdb;\n text-shadow: 0 1px 0 #fff;\n border-color: #ccc;\n}\n.btn-default:hover,\n.btn-default:focus {\n background-color: #e0e0e0;\n background-position: 0 -15px;\n}\n.btn-default:active,\n.btn-default.active {\n background-color: #e0e0e0;\n border-color: #dbdbdb;\n}\n.btn-default.disabled,\n.btn-default[disabled],\nfieldset[disabled] .btn-default,\n.btn-default.disabled:hover,\n.btn-default[disabled]:hover,\nfieldset[disabled] .btn-default:hover,\n.btn-default.disabled:focus,\n.btn-default[disabled]:focus,\nfieldset[disabled] .btn-default:focus,\n.btn-default.disabled.focus,\n.btn-default[disabled].focus,\nfieldset[disabled] .btn-default.focus,\n.btn-default.disabled:active,\n.btn-default[disabled]:active,\nfieldset[disabled] .btn-default:active,\n.btn-default.disabled.active,\n.btn-default[disabled].active,\nfieldset[disabled] .btn-default.active {\n background-color: #e0e0e0;\n background-image: none;\n}\n.btn-primary {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #265a88 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #265a88 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #265a88 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #245580;\n}\n.btn-primary:hover,\n.btn-primary:focus {\n background-color: #265a88;\n background-position: 0 -15px;\n}\n.btn-primary:active,\n.btn-primary.active {\n background-color: #265a88;\n border-color: #245580;\n}\n.btn-primary.disabled,\n.btn-primary[disabled],\nfieldset[disabled] .btn-primary,\n.btn-primary.disabled:hover,\n.btn-primary[disabled]:hover,\nfieldset[disabled] .btn-primary:hover,\n.btn-primary.disabled:focus,\n.btn-primary[disabled]:focus,\nfieldset[disabled] .btn-primary:focus,\n.btn-primary.disabled.focus,\n.btn-primary[disabled].focus,\nfieldset[disabled] .btn-primary.focus,\n.btn-primary.disabled:active,\n.btn-primary[disabled]:active,\nfieldset[disabled] .btn-primary:active,\n.btn-primary.disabled.active,\n.btn-primary[disabled].active,\nfieldset[disabled] .btn-primary.active {\n background-color: #265a88;\n background-image: none;\n}\n.btn-success {\n background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%);\n background-image: -o-linear-gradient(top, #5cb85c 0%, #419641 100%);\n background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #3e8f3e;\n}\n.btn-success:hover,\n.btn-success:focus {\n background-color: #419641;\n background-position: 0 -15px;\n}\n.btn-success:active,\n.btn-success.active {\n background-color: #419641;\n border-color: #3e8f3e;\n}\n.btn-success.disabled,\n.btn-success[disabled],\nfieldset[disabled] .btn-success,\n.btn-success.disabled:hover,\n.btn-success[disabled]:hover,\nfieldset[disabled] .btn-success:hover,\n.btn-success.disabled:focus,\n.btn-success[disabled]:focus,\nfieldset[disabled] .btn-success:focus,\n.btn-success.disabled.focus,\n.btn-success[disabled].focus,\nfieldset[disabled] .btn-success.focus,\n.btn-success.disabled:active,\n.btn-success[disabled]:active,\nfieldset[disabled] .btn-success:active,\n.btn-success.disabled.active,\n.btn-success[disabled].active,\nfieldset[disabled] .btn-success.active {\n background-color: #419641;\n background-image: none;\n}\n.btn-info {\n background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);\n background-image: -o-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);\n background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #28a4c9;\n}\n.btn-info:hover,\n.btn-info:focus {\n background-color: #2aabd2;\n background-position: 0 -15px;\n}\n.btn-info:active,\n.btn-info.active {\n background-color: #2aabd2;\n border-color: #28a4c9;\n}\n.btn-info.disabled,\n.btn-info[disabled],\nfieldset[disabled] .btn-info,\n.btn-info.disabled:hover,\n.btn-info[disabled]:hover,\nfieldset[disabled] .btn-info:hover,\n.btn-info.disabled:focus,\n.btn-info[disabled]:focus,\nfieldset[disabled] .btn-info:focus,\n.btn-info.disabled.focus,\n.btn-info[disabled].focus,\nfieldset[disabled] .btn-info.focus,\n.btn-info.disabled:active,\n.btn-info[disabled]:active,\nfieldset[disabled] .btn-info:active,\n.btn-info.disabled.active,\n.btn-info[disabled].active,\nfieldset[disabled] .btn-info.active {\n background-color: #2aabd2;\n background-image: none;\n}\n.btn-warning {\n background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);\n background-image: -o-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);\n background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #e38d13;\n}\n.btn-warning:hover,\n.btn-warning:focus {\n background-color: #eb9316;\n background-position: 0 -15px;\n}\n.btn-warning:active,\n.btn-warning.active {\n background-color: #eb9316;\n border-color: #e38d13;\n}\n.btn-warning.disabled,\n.btn-warning[disabled],\nfieldset[disabled] .btn-warning,\n.btn-warning.disabled:hover,\n.btn-warning[disabled]:hover,\nfieldset[disabled] .btn-warning:hover,\n.btn-warning.disabled:focus,\n.btn-warning[disabled]:focus,\nfieldset[disabled] .btn-warning:focus,\n.btn-warning.disabled.focus,\n.btn-warning[disabled].focus,\nfieldset[disabled] .btn-warning.focus,\n.btn-warning.disabled:active,\n.btn-warning[disabled]:active,\nfieldset[disabled] .btn-warning:active,\n.btn-warning.disabled.active,\n.btn-warning[disabled].active,\nfieldset[disabled] .btn-warning.active {\n background-color: #eb9316;\n background-image: none;\n}\n.btn-danger {\n background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%);\n background-image: -o-linear-gradient(top, #d9534f 0%, #c12e2a 100%);\n background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #b92c28;\n}\n.btn-danger:hover,\n.btn-danger:focus {\n background-color: #c12e2a;\n background-position: 0 -15px;\n}\n.btn-danger:active,\n.btn-danger.active {\n background-color: #c12e2a;\n border-color: #b92c28;\n}\n.btn-danger.disabled,\n.btn-danger[disabled],\nfieldset[disabled] .btn-danger,\n.btn-danger.disabled:hover,\n.btn-danger[disabled]:hover,\nfieldset[disabled] .btn-danger:hover,\n.btn-danger.disabled:focus,\n.btn-danger[disabled]:focus,\nfieldset[disabled] .btn-danger:focus,\n.btn-danger.disabled.focus,\n.btn-danger[disabled].focus,\nfieldset[disabled] .btn-danger.focus,\n.btn-danger.disabled:active,\n.btn-danger[disabled]:active,\nfieldset[disabled] .btn-danger:active,\n.btn-danger.disabled.active,\n.btn-danger[disabled].active,\nfieldset[disabled] .btn-danger.active {\n background-color: #c12e2a;\n background-image: none;\n}\n.thumbnail,\n.img-thumbnail {\n -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n}\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);\n background-repeat: repeat-x;\n background-color: #e8e8e8;\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);\n background-repeat: repeat-x;\n background-color: #2e6da4;\n}\n.navbar-default {\n background-image: -webkit-linear-gradient(top, #ffffff 0%, #f8f8f8 100%);\n background-image: -o-linear-gradient(top, #ffffff 0%, #f8f8f8 100%);\n background-image: linear-gradient(to bottom, #ffffff 0%, #f8f8f8 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);\n}\n.navbar-default .navbar-nav > .open > a,\n.navbar-default .navbar-nav > .active > a {\n background-image: -webkit-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);\n background-image: -o-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);\n background-image: linear-gradient(to bottom, #dbdbdb 0%, #e2e2e2 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);\n background-repeat: repeat-x;\n -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);\n}\n.navbar-brand,\n.navbar-nav > li > a {\n text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);\n}\n.navbar-inverse {\n background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222 100%);\n background-image: -o-linear-gradient(top, #3c3c3c 0%, #222 100%);\n background-image: linear-gradient(to bottom, #3c3c3c 0%, #222 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n border-radius: 4px;\n}\n.navbar-inverse .navbar-nav > .open > a,\n.navbar-inverse .navbar-nav > .active > a {\n background-image: -webkit-linear-gradient(top, #080808 0%, #0f0f0f 100%);\n background-image: -o-linear-gradient(top, #080808 0%, #0f0f0f 100%);\n background-image: linear-gradient(to bottom, #080808 0%, #0f0f0f 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);\n background-repeat: repeat-x;\n -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);\n box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);\n}\n.navbar-inverse .navbar-brand,\n.navbar-inverse .navbar-nav > li > a {\n text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);\n}\n.navbar-static-top,\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n border-radius: 0;\n}\n@media (max-width: 767px) {\n .navbar .navbar-nav .open .dropdown-menu > .active > a,\n .navbar .navbar-nav .open .dropdown-menu > .active > a:hover,\n .navbar .navbar-nav .open .dropdown-menu > .active > a:focus {\n color: #fff;\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);\n background-repeat: repeat-x;\n }\n}\n.alert {\n text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);\n}\n.alert-success {\n background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);\n background-image: -o-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);\n background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);\n background-repeat: repeat-x;\n border-color: #b2dba1;\n}\n.alert-info {\n background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%);\n background-image: -o-linear-gradient(top, #d9edf7 0%, #b9def0 100%);\n background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);\n background-repeat: repeat-x;\n border-color: #9acfea;\n}\n.alert-warning {\n background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);\n background-image: -o-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);\n background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);\n background-repeat: repeat-x;\n border-color: #f5e79e;\n}\n.alert-danger {\n background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);\n background-image: -o-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);\n background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);\n background-repeat: repeat-x;\n border-color: #dca7a7;\n}\n.progress {\n background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);\n background-image: -o-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);\n background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);\n background-repeat: repeat-x;\n}\n.progress-bar {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #286090 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #286090 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #286090 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0);\n background-repeat: repeat-x;\n}\n.progress-bar-success {\n background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%);\n background-image: -o-linear-gradient(top, #5cb85c 0%, #449d44 100%);\n background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);\n background-repeat: repeat-x;\n}\n.progress-bar-info {\n background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);\n background-image: -o-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);\n background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);\n background-repeat: repeat-x;\n}\n.progress-bar-warning {\n background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);\n background-image: -o-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);\n background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);\n background-repeat: repeat-x;\n}\n.progress-bar-danger {\n background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%);\n background-image: -o-linear-gradient(top, #d9534f 0%, #c9302c 100%);\n background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);\n background-repeat: repeat-x;\n}\n.progress-bar-striped {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.list-group {\n border-radius: 4px;\n -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n}\n.list-group-item.active,\n.list-group-item.active:hover,\n.list-group-item.active:focus {\n text-shadow: 0 -1px 0 #286090;\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2b669a 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2b669a 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #2b669a 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);\n background-repeat: repeat-x;\n border-color: #2b669a;\n}\n.list-group-item.active .badge,\n.list-group-item.active:hover .badge,\n.list-group-item.active:focus .badge {\n text-shadow: none;\n}\n.panel {\n -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);\n box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);\n}\n.panel-default > .panel-heading {\n background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);\n background-repeat: repeat-x;\n}\n.panel-primary > .panel-heading {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);\n background-repeat: repeat-x;\n}\n.panel-success > .panel-heading {\n background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);\n background-image: -o-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);\n background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);\n background-repeat: repeat-x;\n}\n.panel-info > .panel-heading {\n background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);\n background-image: -o-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);\n background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);\n background-repeat: repeat-x;\n}\n.panel-warning > .panel-heading {\n background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);\n background-image: -o-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);\n background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);\n background-repeat: repeat-x;\n}\n.panel-danger > .panel-heading {\n background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%);\n background-image: -o-linear-gradient(top, #f2dede 0%, #ebcccc 100%);\n background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);\n background-repeat: repeat-x;\n}\n.well {\n background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);\n background-image: -o-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);\n background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);\n background-repeat: repeat-x;\n border-color: #dcdcdc;\n -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);\n box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);\n}\n/*# sourceMappingURL=bootstrap-theme.css.map */","/*!\n * Bootstrap v3.4.1 (https://getbootstrap.com/)\n * Copyright 2011-2019 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n.btn-default,\n.btn-primary,\n.btn-success,\n.btn-info,\n.btn-warning,\n.btn-danger {\n text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.btn-default:active,\n.btn-primary:active,\n.btn-success:active,\n.btn-info:active,\n.btn-warning:active,\n.btn-danger:active,\n.btn-default.active,\n.btn-primary.active,\n.btn-success.active,\n.btn-info.active,\n.btn-warning.active,\n.btn-danger.active {\n -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.btn-default.disabled,\n.btn-primary.disabled,\n.btn-success.disabled,\n.btn-info.disabled,\n.btn-warning.disabled,\n.btn-danger.disabled,\n.btn-default[disabled],\n.btn-primary[disabled],\n.btn-success[disabled],\n.btn-info[disabled],\n.btn-warning[disabled],\n.btn-danger[disabled],\nfieldset[disabled] .btn-default,\nfieldset[disabled] .btn-primary,\nfieldset[disabled] .btn-success,\nfieldset[disabled] .btn-info,\nfieldset[disabled] .btn-warning,\nfieldset[disabled] .btn-danger {\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n.btn-default .badge,\n.btn-primary .badge,\n.btn-success .badge,\n.btn-info .badge,\n.btn-warning .badge,\n.btn-danger .badge {\n text-shadow: none;\n}\n.btn:active,\n.btn.active {\n background-image: none;\n}\n.btn-default {\n background-image: -webkit-linear-gradient(top, #fff 0%, #e0e0e0 100%);\n background-image: -o-linear-gradient(top, #fff 0%, #e0e0e0 100%);\n background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e0e0e0));\n background-image: linear-gradient(to bottom, #fff 0%, #e0e0e0 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #dbdbdb;\n text-shadow: 0 1px 0 #fff;\n border-color: #ccc;\n}\n.btn-default:hover,\n.btn-default:focus {\n background-color: #e0e0e0;\n background-position: 0 -15px;\n}\n.btn-default:active,\n.btn-default.active {\n background-color: #e0e0e0;\n border-color: #dbdbdb;\n}\n.btn-default.disabled,\n.btn-default[disabled],\nfieldset[disabled] .btn-default,\n.btn-default.disabled:hover,\n.btn-default[disabled]:hover,\nfieldset[disabled] .btn-default:hover,\n.btn-default.disabled:focus,\n.btn-default[disabled]:focus,\nfieldset[disabled] .btn-default:focus,\n.btn-default.disabled.focus,\n.btn-default[disabled].focus,\nfieldset[disabled] .btn-default.focus,\n.btn-default.disabled:active,\n.btn-default[disabled]:active,\nfieldset[disabled] .btn-default:active,\n.btn-default.disabled.active,\n.btn-default[disabled].active,\nfieldset[disabled] .btn-default.active {\n background-color: #e0e0e0;\n background-image: none;\n}\n.btn-primary {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #265a88 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #265a88 100%);\n background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#265a88));\n background-image: linear-gradient(to bottom, #337ab7 0%, #265a88 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #245580;\n}\n.btn-primary:hover,\n.btn-primary:focus {\n background-color: #265a88;\n background-position: 0 -15px;\n}\n.btn-primary:active,\n.btn-primary.active {\n background-color: #265a88;\n border-color: #245580;\n}\n.btn-primary.disabled,\n.btn-primary[disabled],\nfieldset[disabled] .btn-primary,\n.btn-primary.disabled:hover,\n.btn-primary[disabled]:hover,\nfieldset[disabled] .btn-primary:hover,\n.btn-primary.disabled:focus,\n.btn-primary[disabled]:focus,\nfieldset[disabled] .btn-primary:focus,\n.btn-primary.disabled.focus,\n.btn-primary[disabled].focus,\nfieldset[disabled] .btn-primary.focus,\n.btn-primary.disabled:active,\n.btn-primary[disabled]:active,\nfieldset[disabled] .btn-primary:active,\n.btn-primary.disabled.active,\n.btn-primary[disabled].active,\nfieldset[disabled] .btn-primary.active {\n background-color: #265a88;\n background-image: none;\n}\n.btn-success {\n background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%);\n background-image: -o-linear-gradient(top, #5cb85c 0%, #419641 100%);\n background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#419641));\n background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #3e8f3e;\n}\n.btn-success:hover,\n.btn-success:focus {\n background-color: #419641;\n background-position: 0 -15px;\n}\n.btn-success:active,\n.btn-success.active {\n background-color: #419641;\n border-color: #3e8f3e;\n}\n.btn-success.disabled,\n.btn-success[disabled],\nfieldset[disabled] .btn-success,\n.btn-success.disabled:hover,\n.btn-success[disabled]:hover,\nfieldset[disabled] .btn-success:hover,\n.btn-success.disabled:focus,\n.btn-success[disabled]:focus,\nfieldset[disabled] .btn-success:focus,\n.btn-success.disabled.focus,\n.btn-success[disabled].focus,\nfieldset[disabled] .btn-success.focus,\n.btn-success.disabled:active,\n.btn-success[disabled]:active,\nfieldset[disabled] .btn-success:active,\n.btn-success.disabled.active,\n.btn-success[disabled].active,\nfieldset[disabled] .btn-success.active {\n background-color: #419641;\n background-image: none;\n}\n.btn-info {\n background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);\n background-image: -o-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);\n background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#2aabd2));\n background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #28a4c9;\n}\n.btn-info:hover,\n.btn-info:focus {\n background-color: #2aabd2;\n background-position: 0 -15px;\n}\n.btn-info:active,\n.btn-info.active {\n background-color: #2aabd2;\n border-color: #28a4c9;\n}\n.btn-info.disabled,\n.btn-info[disabled],\nfieldset[disabled] .btn-info,\n.btn-info.disabled:hover,\n.btn-info[disabled]:hover,\nfieldset[disabled] .btn-info:hover,\n.btn-info.disabled:focus,\n.btn-info[disabled]:focus,\nfieldset[disabled] .btn-info:focus,\n.btn-info.disabled.focus,\n.btn-info[disabled].focus,\nfieldset[disabled] .btn-info.focus,\n.btn-info.disabled:active,\n.btn-info[disabled]:active,\nfieldset[disabled] .btn-info:active,\n.btn-info.disabled.active,\n.btn-info[disabled].active,\nfieldset[disabled] .btn-info.active {\n background-color: #2aabd2;\n background-image: none;\n}\n.btn-warning {\n background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);\n background-image: -o-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);\n background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#eb9316));\n background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #e38d13;\n}\n.btn-warning:hover,\n.btn-warning:focus {\n background-color: #eb9316;\n background-position: 0 -15px;\n}\n.btn-warning:active,\n.btn-warning.active {\n background-color: #eb9316;\n border-color: #e38d13;\n}\n.btn-warning.disabled,\n.btn-warning[disabled],\nfieldset[disabled] .btn-warning,\n.btn-warning.disabled:hover,\n.btn-warning[disabled]:hover,\nfieldset[disabled] .btn-warning:hover,\n.btn-warning.disabled:focus,\n.btn-warning[disabled]:focus,\nfieldset[disabled] .btn-warning:focus,\n.btn-warning.disabled.focus,\n.btn-warning[disabled].focus,\nfieldset[disabled] .btn-warning.focus,\n.btn-warning.disabled:active,\n.btn-warning[disabled]:active,\nfieldset[disabled] .btn-warning:active,\n.btn-warning.disabled.active,\n.btn-warning[disabled].active,\nfieldset[disabled] .btn-warning.active {\n background-color: #eb9316;\n background-image: none;\n}\n.btn-danger {\n background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%);\n background-image: -o-linear-gradient(top, #d9534f 0%, #c12e2a 100%);\n background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c12e2a));\n background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #b92c28;\n}\n.btn-danger:hover,\n.btn-danger:focus {\n background-color: #c12e2a;\n background-position: 0 -15px;\n}\n.btn-danger:active,\n.btn-danger.active {\n background-color: #c12e2a;\n border-color: #b92c28;\n}\n.btn-danger.disabled,\n.btn-danger[disabled],\nfieldset[disabled] .btn-danger,\n.btn-danger.disabled:hover,\n.btn-danger[disabled]:hover,\nfieldset[disabled] .btn-danger:hover,\n.btn-danger.disabled:focus,\n.btn-danger[disabled]:focus,\nfieldset[disabled] .btn-danger:focus,\n.btn-danger.disabled.focus,\n.btn-danger[disabled].focus,\nfieldset[disabled] .btn-danger.focus,\n.btn-danger.disabled:active,\n.btn-danger[disabled]:active,\nfieldset[disabled] .btn-danger:active,\n.btn-danger.disabled.active,\n.btn-danger[disabled].active,\nfieldset[disabled] .btn-danger.active {\n background-color: #c12e2a;\n background-image: none;\n}\n.thumbnail,\n.img-thumbnail {\n -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n}\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8));\n background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);\n background-repeat: repeat-x;\n background-color: #e8e8e8;\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));\n background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);\n background-repeat: repeat-x;\n background-color: #2e6da4;\n}\n.navbar-default {\n background-image: -webkit-linear-gradient(top, #ffffff 0%, #f8f8f8 100%);\n background-image: -o-linear-gradient(top, #ffffff 0%, #f8f8f8 100%);\n background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f8f8f8));\n background-image: linear-gradient(to bottom, #ffffff 0%, #f8f8f8 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);\n}\n.navbar-default .navbar-nav > .open > a,\n.navbar-default .navbar-nav > .active > a {\n background-image: -webkit-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);\n background-image: -o-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);\n background-image: -webkit-gradient(linear, left top, left bottom, from(#dbdbdb), to(#e2e2e2));\n background-image: linear-gradient(to bottom, #dbdbdb 0%, #e2e2e2 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);\n background-repeat: repeat-x;\n -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);\n}\n.navbar-brand,\n.navbar-nav > li > a {\n text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);\n}\n.navbar-inverse {\n background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222 100%);\n background-image: -o-linear-gradient(top, #3c3c3c 0%, #222 100%);\n background-image: -webkit-gradient(linear, left top, left bottom, from(#3c3c3c), to(#222));\n background-image: linear-gradient(to bottom, #3c3c3c 0%, #222 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n border-radius: 4px;\n}\n.navbar-inverse .navbar-nav > .open > a,\n.navbar-inverse .navbar-nav > .active > a {\n background-image: -webkit-linear-gradient(top, #080808 0%, #0f0f0f 100%);\n background-image: -o-linear-gradient(top, #080808 0%, #0f0f0f 100%);\n background-image: -webkit-gradient(linear, left top, left bottom, from(#080808), to(#0f0f0f));\n background-image: linear-gradient(to bottom, #080808 0%, #0f0f0f 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);\n background-repeat: repeat-x;\n -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);\n box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);\n}\n.navbar-inverse .navbar-brand,\n.navbar-inverse .navbar-nav > li > a {\n text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);\n}\n.navbar-static-top,\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n border-radius: 0;\n}\n@media (max-width: 767px) {\n .navbar .navbar-nav .open .dropdown-menu > .active > a,\n .navbar .navbar-nav .open .dropdown-menu > .active > a:hover,\n .navbar .navbar-nav .open .dropdown-menu > .active > a:focus {\n color: #fff;\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));\n background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);\n background-repeat: repeat-x;\n }\n}\n.alert {\n text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);\n}\n.alert-success {\n background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);\n background-image: -o-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);\n background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#c8e5bc));\n background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);\n background-repeat: repeat-x;\n border-color: #b2dba1;\n}\n.alert-info {\n background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%);\n background-image: -o-linear-gradient(top, #d9edf7 0%, #b9def0 100%);\n background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#b9def0));\n background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);\n background-repeat: repeat-x;\n border-color: #9acfea;\n}\n.alert-warning {\n background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);\n background-image: -o-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);\n background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#f8efc0));\n background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);\n background-repeat: repeat-x;\n border-color: #f5e79e;\n}\n.alert-danger {\n background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);\n background-image: -o-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);\n background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#e7c3c3));\n background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);\n background-repeat: repeat-x;\n border-color: #dca7a7;\n}\n.progress {\n background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);\n background-image: -o-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);\n background-image: -webkit-gradient(linear, left top, left bottom, from(#ebebeb), to(#f5f5f5));\n background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);\n background-repeat: repeat-x;\n}\n.progress-bar {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #286090 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #286090 100%);\n background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#286090));\n background-image: linear-gradient(to bottom, #337ab7 0%, #286090 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0);\n background-repeat: repeat-x;\n}\n.progress-bar-success {\n background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%);\n background-image: -o-linear-gradient(top, #5cb85c 0%, #449d44 100%);\n background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#449d44));\n background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);\n background-repeat: repeat-x;\n}\n.progress-bar-info {\n background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);\n background-image: -o-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);\n background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#31b0d5));\n background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);\n background-repeat: repeat-x;\n}\n.progress-bar-warning {\n background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);\n background-image: -o-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);\n background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#ec971f));\n background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);\n background-repeat: repeat-x;\n}\n.progress-bar-danger {\n background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%);\n background-image: -o-linear-gradient(top, #d9534f 0%, #c9302c 100%);\n background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c9302c));\n background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);\n background-repeat: repeat-x;\n}\n.progress-bar-striped {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.list-group {\n border-radius: 4px;\n -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n}\n.list-group-item.active,\n.list-group-item.active:hover,\n.list-group-item.active:focus {\n text-shadow: 0 -1px 0 #286090;\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2b669a 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2b669a 100%);\n background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2b669a));\n background-image: linear-gradient(to bottom, #337ab7 0%, #2b669a 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);\n background-repeat: repeat-x;\n border-color: #2b669a;\n}\n.list-group-item.active .badge,\n.list-group-item.active:hover .badge,\n.list-group-item.active:focus .badge {\n text-shadow: none;\n}\n.panel {\n -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);\n box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);\n}\n.panel-default > .panel-heading {\n background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8));\n background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);\n background-repeat: repeat-x;\n}\n.panel-primary > .panel-heading {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));\n background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);\n background-repeat: repeat-x;\n}\n.panel-success > .panel-heading {\n background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);\n background-image: -o-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);\n background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#d0e9c6));\n background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);\n background-repeat: repeat-x;\n}\n.panel-info > .panel-heading {\n background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);\n background-image: -o-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);\n background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#c4e3f3));\n background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);\n background-repeat: repeat-x;\n}\n.panel-warning > .panel-heading {\n background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);\n background-image: -o-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);\n background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#faf2cc));\n background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);\n background-repeat: repeat-x;\n}\n.panel-danger > .panel-heading {\n background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%);\n background-image: -o-linear-gradient(top, #f2dede 0%, #ebcccc 100%);\n background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#ebcccc));\n background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);\n background-repeat: repeat-x;\n}\n.well {\n background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);\n background-image: -o-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);\n background-image: -webkit-gradient(linear, left top, left bottom, from(#e8e8e8), to(#f5f5f5));\n background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);\n background-repeat: repeat-x;\n border-color: #dcdcdc;\n -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);\n box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);\n}\n/*# sourceMappingURL=bootstrap-theme.css.map */","// stylelint-disable selector-no-qualifying-type, selector-max-compound-selectors\n\n/*!\n * Bootstrap v3.4.1 (https://getbootstrap.com/)\n * Copyright 2011-2019 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n\n//\n// Load core variables and mixins\n// --------------------------------------------------\n\n@import \"variables.less\";\n@import \"mixins.less\";\n\n\n//\n// Buttons\n// --------------------------------------------------\n\n// Common styles\n.btn-default,\n.btn-primary,\n.btn-success,\n.btn-info,\n.btn-warning,\n.btn-danger {\n text-shadow: 0 -1px 0 rgba(0, 0, 0, .2);\n @shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);\n .box-shadow(@shadow);\n\n // Reset the shadow\n &:active,\n &.active {\n .box-shadow(inset 0 3px 5px rgba(0, 0, 0, .125));\n }\n\n &.disabled,\n &[disabled],\n fieldset[disabled] & {\n .box-shadow(none);\n }\n\n .badge {\n text-shadow: none;\n }\n}\n\n// Mixin for generating new styles\n.btn-styles(@btn-color: #555) {\n #gradient > .vertical(@start-color: @btn-color; @end-color: darken(@btn-color, 12%));\n .reset-filter(); // Disable gradients for IE9 because filter bleeds through rounded corners; see https://github.com/twbs/bootstrap/issues/10620\n background-repeat: repeat-x;\n border-color: darken(@btn-color, 14%);\n\n &:hover,\n &:focus {\n background-color: darken(@btn-color, 12%);\n background-position: 0 -15px;\n }\n\n &:active,\n &.active {\n background-color: darken(@btn-color, 12%);\n border-color: darken(@btn-color, 14%);\n }\n\n &.disabled,\n &[disabled],\n fieldset[disabled] & {\n &,\n &:hover,\n &:focus,\n &.focus,\n &:active,\n &.active {\n background-color: darken(@btn-color, 12%);\n background-image: none;\n }\n }\n}\n\n// Common styles\n.btn {\n // Remove the gradient for the pressed/active state\n &:active,\n &.active {\n background-image: none;\n }\n}\n\n// Apply the mixin to the buttons\n.btn-default {\n .btn-styles(@btn-default-bg);\n text-shadow: 0 1px 0 #fff;\n border-color: #ccc;\n}\n.btn-primary { .btn-styles(@btn-primary-bg); }\n.btn-success { .btn-styles(@btn-success-bg); }\n.btn-info { .btn-styles(@btn-info-bg); }\n.btn-warning { .btn-styles(@btn-warning-bg); }\n.btn-danger { .btn-styles(@btn-danger-bg); }\n\n\n//\n// Images\n// --------------------------------------------------\n\n.thumbnail,\n.img-thumbnail {\n .box-shadow(0 1px 2px rgba(0, 0, 0, .075));\n}\n\n\n//\n// Dropdowns\n// --------------------------------------------------\n\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n #gradient > .vertical(@start-color: @dropdown-link-hover-bg; @end-color: darken(@dropdown-link-hover-bg, 5%));\n background-color: darken(@dropdown-link-hover-bg, 5%);\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n #gradient > .vertical(@start-color: @dropdown-link-active-bg; @end-color: darken(@dropdown-link-active-bg, 5%));\n background-color: darken(@dropdown-link-active-bg, 5%);\n}\n\n\n//\n// Navbar\n// --------------------------------------------------\n\n// Default navbar\n.navbar-default {\n #gradient > .vertical(@start-color: lighten(@navbar-default-bg, 10%); @end-color: @navbar-default-bg);\n .reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered\n border-radius: @navbar-border-radius;\n @shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075);\n .box-shadow(@shadow);\n\n .navbar-nav > .open > a,\n .navbar-nav > .active > a {\n #gradient > .vertical(@start-color: darken(@navbar-default-link-active-bg, 5%); @end-color: darken(@navbar-default-link-active-bg, 2%));\n .box-shadow(inset 0 3px 9px rgba(0, 0, 0, .075));\n }\n}\n.navbar-brand,\n.navbar-nav > li > a {\n text-shadow: 0 1px 0 rgba(255, 255, 255, .25);\n}\n\n// Inverted navbar\n.navbar-inverse {\n #gradient > .vertical(@start-color: lighten(@navbar-inverse-bg, 10%); @end-color: @navbar-inverse-bg);\n .reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered; see https://github.com/twbs/bootstrap/issues/10257\n border-radius: @navbar-border-radius;\n .navbar-nav > .open > a,\n .navbar-nav > .active > a {\n #gradient > .vertical(@start-color: @navbar-inverse-link-active-bg; @end-color: lighten(@navbar-inverse-link-active-bg, 2.5%));\n .box-shadow(inset 0 3px 9px rgba(0, 0, 0, .25));\n }\n\n .navbar-brand,\n .navbar-nav > li > a {\n text-shadow: 0 -1px 0 rgba(0, 0, 0, .25);\n }\n}\n\n// Undo rounded corners in static and fixed navbars\n.navbar-static-top,\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n border-radius: 0;\n}\n\n// Fix active state of dropdown items in collapsed mode\n@media (max-width: @grid-float-breakpoint-max) {\n .navbar .navbar-nav .open .dropdown-menu > .active > a {\n &,\n &:hover,\n &:focus {\n color: #fff;\n #gradient > .vertical(@start-color: @dropdown-link-active-bg; @end-color: darken(@dropdown-link-active-bg, 5%));\n }\n }\n}\n\n\n//\n// Alerts\n// --------------------------------------------------\n\n// Common styles\n.alert {\n text-shadow: 0 1px 0 rgba(255, 255, 255, .2);\n @shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05);\n .box-shadow(@shadow);\n}\n\n// Mixin for generating new styles\n.alert-styles(@color) {\n #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 7.5%));\n border-color: darken(@color, 15%);\n}\n\n// Apply the mixin to the alerts\n.alert-success { .alert-styles(@alert-success-bg); }\n.alert-info { .alert-styles(@alert-info-bg); }\n.alert-warning { .alert-styles(@alert-warning-bg); }\n.alert-danger { .alert-styles(@alert-danger-bg); }\n\n\n//\n// Progress bars\n// --------------------------------------------------\n\n// Give the progress background some depth\n.progress {\n #gradient > .vertical(@start-color: darken(@progress-bg, 4%); @end-color: @progress-bg)\n}\n\n// Mixin for generating new styles\n.progress-bar-styles(@color) {\n #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 10%));\n}\n\n// Apply the mixin to the progress bars\n.progress-bar { .progress-bar-styles(@progress-bar-bg); }\n.progress-bar-success { .progress-bar-styles(@progress-bar-success-bg); }\n.progress-bar-info { .progress-bar-styles(@progress-bar-info-bg); }\n.progress-bar-warning { .progress-bar-styles(@progress-bar-warning-bg); }\n.progress-bar-danger { .progress-bar-styles(@progress-bar-danger-bg); }\n\n// Reset the striped class because our mixins don't do multiple gradients and\n// the above custom styles override the new `.progress-bar-striped` in v3.2.0.\n.progress-bar-striped {\n #gradient > .striped();\n}\n\n\n//\n// List groups\n// --------------------------------------------------\n\n.list-group {\n border-radius: @border-radius-base;\n .box-shadow(0 1px 2px rgba(0, 0, 0, .075));\n}\n.list-group-item.active,\n.list-group-item.active:hover,\n.list-group-item.active:focus {\n text-shadow: 0 -1px 0 darken(@list-group-active-bg, 10%);\n #gradient > .vertical(@start-color: @list-group-active-bg; @end-color: darken(@list-group-active-bg, 7.5%));\n border-color: darken(@list-group-active-border, 7.5%);\n\n .badge {\n text-shadow: none;\n }\n}\n\n\n//\n// Panels\n// --------------------------------------------------\n\n// Common styles\n.panel {\n .box-shadow(0 1px 2px rgba(0, 0, 0, .05));\n}\n\n// Mixin for generating new styles\n.panel-heading-styles(@color) {\n #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 5%));\n}\n\n// Apply the mixin to the panel headings only\n.panel-default > .panel-heading { .panel-heading-styles(@panel-default-heading-bg); }\n.panel-primary > .panel-heading { .panel-heading-styles(@panel-primary-heading-bg); }\n.panel-success > .panel-heading { .panel-heading-styles(@panel-success-heading-bg); }\n.panel-info > .panel-heading { .panel-heading-styles(@panel-info-heading-bg); }\n.panel-warning > .panel-heading { .panel-heading-styles(@panel-warning-heading-bg); }\n.panel-danger > .panel-heading { .panel-heading-styles(@panel-danger-heading-bg); }\n\n\n//\n// Wells\n// --------------------------------------------------\n\n.well {\n #gradient > .vertical(@start-color: darken(@well-bg, 5%); @end-color: @well-bg);\n border-color: darken(@well-bg, 10%);\n @shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1);\n .box-shadow(@shadow);\n}\n","// stylelint-disable indentation, property-no-vendor-prefix, selector-no-vendor-prefix\n\n// Vendor Prefixes\n//\n// All vendor mixins are deprecated as of v3.2.0 due to the introduction of\n// Autoprefixer in our Gruntfile. They have been removed in v4.\n\n// - Animations\n// - Backface visibility\n// - Box shadow\n// - Box sizing\n// - Content columns\n// - Hyphens\n// - Placeholder text\n// - Transformations\n// - Transitions\n// - User Select\n\n\n// Animations\n.animation(@animation) {\n -webkit-animation: @animation;\n -o-animation: @animation;\n animation: @animation;\n}\n.animation-name(@name) {\n -webkit-animation-name: @name;\n animation-name: @name;\n}\n.animation-duration(@duration) {\n -webkit-animation-duration: @duration;\n animation-duration: @duration;\n}\n.animation-timing-function(@timing-function) {\n -webkit-animation-timing-function: @timing-function;\n animation-timing-function: @timing-function;\n}\n.animation-delay(@delay) {\n -webkit-animation-delay: @delay;\n animation-delay: @delay;\n}\n.animation-iteration-count(@iteration-count) {\n -webkit-animation-iteration-count: @iteration-count;\n animation-iteration-count: @iteration-count;\n}\n.animation-direction(@direction) {\n -webkit-animation-direction: @direction;\n animation-direction: @direction;\n}\n.animation-fill-mode(@fill-mode) {\n -webkit-animation-fill-mode: @fill-mode;\n animation-fill-mode: @fill-mode;\n}\n\n// Backface visibility\n// Prevent browsers from flickering when using CSS 3D transforms.\n// Default value is `visible`, but can be changed to `hidden`\n\n.backface-visibility(@visibility) {\n -webkit-backface-visibility: @visibility;\n -moz-backface-visibility: @visibility;\n backface-visibility: @visibility;\n}\n\n// Drop shadows\n//\n// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's\n// supported browsers that have box shadow capabilities now support it.\n\n.box-shadow(@shadow) {\n -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1\n box-shadow: @shadow;\n}\n\n// Box sizing\n.box-sizing(@boxmodel) {\n -webkit-box-sizing: @boxmodel;\n -moz-box-sizing: @boxmodel;\n box-sizing: @boxmodel;\n}\n\n// CSS3 Content Columns\n.content-columns(@column-count; @column-gap: @grid-gutter-width) {\n -webkit-column-count: @column-count;\n -moz-column-count: @column-count;\n column-count: @column-count;\n -webkit-column-gap: @column-gap;\n -moz-column-gap: @column-gap;\n column-gap: @column-gap;\n}\n\n// Optional hyphenation\n.hyphens(@mode: auto) {\n -webkit-hyphens: @mode;\n -moz-hyphens: @mode;\n -ms-hyphens: @mode; // IE10+\n -o-hyphens: @mode;\n hyphens: @mode;\n word-wrap: break-word;\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n // Firefox\n &::-moz-placeholder {\n color: @color;\n opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526\n }\n &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+\n &::-webkit-input-placeholder { color: @color; } // Safari and Chrome\n}\n\n// Transformations\n.scale(@ratio) {\n -webkit-transform: scale(@ratio);\n -ms-transform: scale(@ratio); // IE9 only\n -o-transform: scale(@ratio);\n transform: scale(@ratio);\n}\n.scale(@ratioX; @ratioY) {\n -webkit-transform: scale(@ratioX, @ratioY);\n -ms-transform: scale(@ratioX, @ratioY); // IE9 only\n -o-transform: scale(@ratioX, @ratioY);\n transform: scale(@ratioX, @ratioY);\n}\n.scaleX(@ratio) {\n -webkit-transform: scaleX(@ratio);\n -ms-transform: scaleX(@ratio); // IE9 only\n -o-transform: scaleX(@ratio);\n transform: scaleX(@ratio);\n}\n.scaleY(@ratio) {\n -webkit-transform: scaleY(@ratio);\n -ms-transform: scaleY(@ratio); // IE9 only\n -o-transform: scaleY(@ratio);\n transform: scaleY(@ratio);\n}\n.skew(@x; @y) {\n -webkit-transform: skewX(@x) skewY(@y);\n -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+\n -o-transform: skewX(@x) skewY(@y);\n transform: skewX(@x) skewY(@y);\n}\n.translate(@x; @y) {\n -webkit-transform: translate(@x, @y);\n -ms-transform: translate(@x, @y); // IE9 only\n -o-transform: translate(@x, @y);\n transform: translate(@x, @y);\n}\n.translate3d(@x; @y; @z) {\n -webkit-transform: translate3d(@x, @y, @z);\n transform: translate3d(@x, @y, @z);\n}\n.rotate(@degrees) {\n -webkit-transform: rotate(@degrees);\n -ms-transform: rotate(@degrees); // IE9 only\n -o-transform: rotate(@degrees);\n transform: rotate(@degrees);\n}\n.rotateX(@degrees) {\n -webkit-transform: rotateX(@degrees);\n -ms-transform: rotateX(@degrees); // IE9 only\n -o-transform: rotateX(@degrees);\n transform: rotateX(@degrees);\n}\n.rotateY(@degrees) {\n -webkit-transform: rotateY(@degrees);\n -ms-transform: rotateY(@degrees); // IE9 only\n -o-transform: rotateY(@degrees);\n transform: rotateY(@degrees);\n}\n.perspective(@perspective) {\n -webkit-perspective: @perspective;\n -moz-perspective: @perspective;\n perspective: @perspective;\n}\n.perspective-origin(@perspective) {\n -webkit-perspective-origin: @perspective;\n -moz-perspective-origin: @perspective;\n perspective-origin: @perspective;\n}\n.transform-origin(@origin) {\n -webkit-transform-origin: @origin;\n -moz-transform-origin: @origin;\n -ms-transform-origin: @origin; // IE9 only\n transform-origin: @origin;\n}\n\n\n// Transitions\n\n.transition(@transition) {\n -webkit-transition: @transition;\n -o-transition: @transition;\n transition: @transition;\n}\n.transition-property(@transition-property) {\n -webkit-transition-property: @transition-property;\n transition-property: @transition-property;\n}\n.transition-delay(@transition-delay) {\n -webkit-transition-delay: @transition-delay;\n transition-delay: @transition-delay;\n}\n.transition-duration(@transition-duration) {\n -webkit-transition-duration: @transition-duration;\n transition-duration: @transition-duration;\n}\n.transition-timing-function(@timing-function) {\n -webkit-transition-timing-function: @timing-function;\n transition-timing-function: @timing-function;\n}\n.transition-transform(@transition) {\n -webkit-transition: -webkit-transform @transition;\n -moz-transition: -moz-transform @transition;\n -o-transition: -o-transform @transition;\n transition: transform @transition;\n}\n\n\n// User select\n// For selecting text on the page\n\n.user-select(@select) {\n -webkit-user-select: @select;\n -moz-user-select: @select;\n -ms-user-select: @select; // IE10+\n user-select: @select;\n}\n","// stylelint-disable value-no-vendor-prefix, selector-max-id\n\n#gradient {\n\n // Horizontal gradient, from left to right\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Opera 12\n background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\", argb(@start-color), argb(@end-color))); // IE9 and down\n background-repeat: repeat-x;\n }\n\n // Vertical gradient, from top to bottom\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Opera 12\n background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\", argb(@start-color), argb(@end-color))); // IE9 and down\n background-repeat: repeat-x;\n }\n\n .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {\n background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(@deg, @start-color, @end-color); // Opera 12\n background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n background-repeat: repeat-x;\n }\n .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n background-image: -o-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\", argb(@start-color), argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n background-repeat: no-repeat;\n }\n .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-image: -o-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\", argb(@start-color), argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n background-repeat: no-repeat;\n }\n .radial(@inner-color: #555; @outer-color: #333) {\n background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);\n background-image: radial-gradient(circle, @inner-color, @outer-color);\n background-repeat: no-repeat;\n }\n .striped(@color: rgba(255, 255, 255, .15); @angle: 45deg) {\n background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n }\n}\n","// Reset filters for IE\n//\n// When you need to remove a gradient background, do not forget to use this to reset\n// the IE filter for IE9 and below.\n\n.reset-filter() {\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(enabled = false)\"));\n}\n"]} \ No newline at end of file diff --git a/AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootstrap-3.4.1/css/bootstrap.css b/AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootstrap-3.4.1/css/bootstrap.css new file mode 100644 index 0000000000..fcab41554a --- /dev/null +++ b/AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootstrap-3.4.1/css/bootstrap.css @@ -0,0 +1,6834 @@ +/*! + * Bootstrap v3.4.1 (https://getbootstrap.com/) + * Copyright 2011-2019 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ +/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ +html { + font-family: sans-serif; + -ms-text-size-adjust: 100%; + -webkit-text-size-adjust: 100%; +} +body { + margin: 0; +} +article, +aside, +details, +figcaption, +figure, +footer, +header, +hgroup, +main, +menu, +nav, +section, +summary { + display: block; +} +audio, +canvas, +progress, +video { + display: inline-block; + vertical-align: baseline; +} +audio:not([controls]) { + display: none; + height: 0; +} +[hidden], +template { + display: none; +} +a { + background-color: transparent; +} +a:active, +a:hover { + outline: 0; +} +abbr[title] { + border-bottom: none; + text-decoration: underline; + -webkit-text-decoration: underline dotted; + -moz-text-decoration: underline dotted; + text-decoration: underline dotted; +} +b, +strong { + font-weight: bold; +} +dfn { + font-style: italic; +} +h1 { + font-size: 2em; + margin: 0.67em 0; +} +mark { + background: #ff0; + color: #000; +} +small { + font-size: 80%; +} +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} +sup { + top: -0.5em; +} +sub { + bottom: -0.25em; +} +img { + border: 0; +} +svg:not(:root) { + overflow: hidden; +} +figure { + margin: 1em 40px; +} +hr { + -webkit-box-sizing: content-box; + -moz-box-sizing: content-box; + box-sizing: content-box; + height: 0; +} +pre { + overflow: auto; +} +code, +kbd, +pre, +samp { + font-family: monospace, monospace; + font-size: 1em; +} +button, +input, +optgroup, +select, +textarea { + color: inherit; + font: inherit; + margin: 0; +} +button { + overflow: visible; +} +button, +select { + text-transform: none; +} +button, +html input[type="button"], +input[type="reset"], +input[type="submit"] { + -webkit-appearance: button; + cursor: pointer; +} +button[disabled], +html input[disabled] { + cursor: default; +} +button::-moz-focus-inner, +input::-moz-focus-inner { + border: 0; + padding: 0; +} +input { + line-height: normal; +} +input[type="checkbox"], +input[type="radio"] { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + padding: 0; +} +input[type="number"]::-webkit-inner-spin-button, +input[type="number"]::-webkit-outer-spin-button { + height: auto; +} +input[type="search"] { + -webkit-appearance: textfield; + -webkit-box-sizing: content-box; + -moz-box-sizing: content-box; + box-sizing: content-box; +} +input[type="search"]::-webkit-search-cancel-button, +input[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} +fieldset { + border: 1px solid #c0c0c0; + margin: 0 2px; + padding: 0.35em 0.625em 0.75em; +} +legend { + border: 0; + padding: 0; +} +textarea { + overflow: auto; +} +optgroup { + font-weight: bold; +} +table { + border-collapse: collapse; + border-spacing: 0; +} +td, +th { + padding: 0; +} +/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */ +@media print { + *, + *:before, + *:after { + color: #000 !important; + text-shadow: none !important; + background: transparent !important; + -webkit-box-shadow: none !important; + box-shadow: none !important; + } + a, + a:visited { + text-decoration: underline; + } + a[href]:after { + content: " (" attr(href) ")"; + } + abbr[title]:after { + content: " (" attr(title) ")"; + } + a[href^="#"]:after, + a[href^="javascript:"]:after { + content: ""; + } + pre, + blockquote { + border: 1px solid #999; + page-break-inside: avoid; + } + thead { + display: table-header-group; + } + tr, + img { + page-break-inside: avoid; + } + img { + max-width: 100% !important; + } + p, + h2, + h3 { + orphans: 3; + widows: 3; + } + h2, + h3 { + page-break-after: avoid; + } + .navbar { + display: none; + } + .btn > .caret, + .dropup > .btn > .caret { + border-top-color: #000 !important; + } + .label { + border: 1px solid #000; + } + .table { + border-collapse: collapse !important; + } + .table td, + .table th { + background-color: #fff !important; + } + .table-bordered th, + .table-bordered td { + border: 1px solid #ddd !important; + } +} +@font-face { + font-family: "Glyphicons Halflings"; + src: url("../fonts/glyphicons-halflings-regular.eot"); + src: url("../fonts/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/glyphicons-halflings-regular.woff2") format("woff2"), url("../fonts/glyphicons-halflings-regular.woff") format("woff"), url("../fonts/glyphicons-halflings-regular.ttf") format("truetype"), url("../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg"); +} +.glyphicon { + position: relative; + top: 1px; + display: inline-block; + font-family: "Glyphicons Halflings"; + font-style: normal; + font-weight: 400; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} +.glyphicon-asterisk:before { + content: "\002a"; +} +.glyphicon-plus:before { + content: "\002b"; +} +.glyphicon-euro:before, +.glyphicon-eur:before { + content: "\20ac"; +} +.glyphicon-minus:before { + content: "\2212"; +} +.glyphicon-cloud:before { + content: "\2601"; +} +.glyphicon-envelope:before { + content: "\2709"; +} +.glyphicon-pencil:before { + content: "\270f"; +} +.glyphicon-glass:before { + content: "\e001"; +} +.glyphicon-music:before { + content: "\e002"; +} +.glyphicon-search:before { + content: "\e003"; +} +.glyphicon-heart:before { + content: "\e005"; +} +.glyphicon-star:before { + content: "\e006"; +} +.glyphicon-star-empty:before { + content: "\e007"; +} +.glyphicon-user:before { + content: "\e008"; +} +.glyphicon-film:before { + content: "\e009"; +} +.glyphicon-th-large:before { + content: "\e010"; +} +.glyphicon-th:before { + content: "\e011"; +} +.glyphicon-th-list:before { + content: "\e012"; +} +.glyphicon-ok:before { + content: "\e013"; +} +.glyphicon-remove:before { + content: "\e014"; +} +.glyphicon-zoom-in:before { + content: "\e015"; +} +.glyphicon-zoom-out:before { + content: "\e016"; +} +.glyphicon-off:before { + content: "\e017"; +} +.glyphicon-signal:before { + content: "\e018"; +} +.glyphicon-cog:before { + content: "\e019"; +} +.glyphicon-trash:before { + content: "\e020"; +} +.glyphicon-home:before { + content: "\e021"; +} +.glyphicon-file:before { + content: "\e022"; +} +.glyphicon-time:before { + content: "\e023"; +} +.glyphicon-road:before { + content: "\e024"; +} +.glyphicon-download-alt:before { + content: "\e025"; +} +.glyphicon-download:before { + content: "\e026"; +} +.glyphicon-upload:before { + content: "\e027"; +} +.glyphicon-inbox:before { + content: "\e028"; +} +.glyphicon-play-circle:before { + content: "\e029"; +} +.glyphicon-repeat:before { + content: "\e030"; +} +.glyphicon-refresh:before { + content: "\e031"; +} +.glyphicon-list-alt:before { + content: "\e032"; +} +.glyphicon-lock:before { + content: "\e033"; +} +.glyphicon-flag:before { + content: "\e034"; +} +.glyphicon-headphones:before { + content: "\e035"; +} +.glyphicon-volume-off:before { + content: "\e036"; +} +.glyphicon-volume-down:before { + content: "\e037"; +} +.glyphicon-volume-up:before { + content: "\e038"; +} +.glyphicon-qrcode:before { + content: "\e039"; +} +.glyphicon-barcode:before { + content: "\e040"; +} +.glyphicon-tag:before { + content: "\e041"; +} +.glyphicon-tags:before { + content: "\e042"; +} +.glyphicon-book:before { + content: "\e043"; +} +.glyphicon-bookmark:before { + content: "\e044"; +} +.glyphicon-print:before { + content: "\e045"; +} +.glyphicon-camera:before { + content: "\e046"; +} +.glyphicon-font:before { + content: "\e047"; +} +.glyphicon-bold:before { + content: "\e048"; +} +.glyphicon-italic:before { + content: "\e049"; +} +.glyphicon-text-height:before { + content: "\e050"; +} +.glyphicon-text-width:before { + content: "\e051"; +} +.glyphicon-align-left:before { + content: "\e052"; +} +.glyphicon-align-center:before { + content: "\e053"; +} +.glyphicon-align-right:before { + content: "\e054"; +} +.glyphicon-align-justify:before { + content: "\e055"; +} +.glyphicon-list:before { + content: "\e056"; +} +.glyphicon-indent-left:before { + content: "\e057"; +} +.glyphicon-indent-right:before { + content: "\e058"; +} +.glyphicon-facetime-video:before { + content: "\e059"; +} +.glyphicon-picture:before { + content: "\e060"; +} +.glyphicon-map-marker:before { + content: "\e062"; +} +.glyphicon-adjust:before { + content: "\e063"; +} +.glyphicon-tint:before { + content: "\e064"; +} +.glyphicon-edit:before { + content: "\e065"; +} +.glyphicon-share:before { + content: "\e066"; +} +.glyphicon-check:before { + content: "\e067"; +} +.glyphicon-move:before { + content: "\e068"; +} +.glyphicon-step-backward:before { + content: "\e069"; +} +.glyphicon-fast-backward:before { + content: "\e070"; +} +.glyphicon-backward:before { + content: "\e071"; +} +.glyphicon-play:before { + content: "\e072"; +} +.glyphicon-pause:before { + content: "\e073"; +} +.glyphicon-stop:before { + content: "\e074"; +} +.glyphicon-forward:before { + content: "\e075"; +} +.glyphicon-fast-forward:before { + content: "\e076"; +} +.glyphicon-step-forward:before { + content: "\e077"; +} +.glyphicon-eject:before { + content: "\e078"; +} +.glyphicon-chevron-left:before { + content: "\e079"; +} +.glyphicon-chevron-right:before { + content: "\e080"; +} +.glyphicon-plus-sign:before { + content: "\e081"; +} +.glyphicon-minus-sign:before { + content: "\e082"; +} +.glyphicon-remove-sign:before { + content: "\e083"; +} +.glyphicon-ok-sign:before { + content: "\e084"; +} +.glyphicon-question-sign:before { + content: "\e085"; +} +.glyphicon-info-sign:before { + content: "\e086"; +} +.glyphicon-screenshot:before { + content: "\e087"; +} +.glyphicon-remove-circle:before { + content: "\e088"; +} +.glyphicon-ok-circle:before { + content: "\e089"; +} +.glyphicon-ban-circle:before { + content: "\e090"; +} +.glyphicon-arrow-left:before { + content: "\e091"; +} +.glyphicon-arrow-right:before { + content: "\e092"; +} +.glyphicon-arrow-up:before { + content: "\e093"; +} +.glyphicon-arrow-down:before { + content: "\e094"; +} +.glyphicon-share-alt:before { + content: "\e095"; +} +.glyphicon-resize-full:before { + content: "\e096"; +} +.glyphicon-resize-small:before { + content: "\e097"; +} +.glyphicon-exclamation-sign:before { + content: "\e101"; +} +.glyphicon-gift:before { + content: "\e102"; +} +.glyphicon-leaf:before { + content: "\e103"; +} +.glyphicon-fire:before { + content: "\e104"; +} +.glyphicon-eye-open:before { + content: "\e105"; +} +.glyphicon-eye-close:before { + content: "\e106"; +} +.glyphicon-warning-sign:before { + content: "\e107"; +} +.glyphicon-plane:before { + content: "\e108"; +} +.glyphicon-calendar:before { + content: "\e109"; +} +.glyphicon-random:before { + content: "\e110"; +} +.glyphicon-comment:before { + content: "\e111"; +} +.glyphicon-magnet:before { + content: "\e112"; +} +.glyphicon-chevron-up:before { + content: "\e113"; +} +.glyphicon-chevron-down:before { + content: "\e114"; +} +.glyphicon-retweet:before { + content: "\e115"; +} +.glyphicon-shopping-cart:before { + content: "\e116"; +} +.glyphicon-folder-close:before { + content: "\e117"; +} +.glyphicon-folder-open:before { + content: "\e118"; +} +.glyphicon-resize-vertical:before { + content: "\e119"; +} +.glyphicon-resize-horizontal:before { + content: "\e120"; +} +.glyphicon-hdd:before { + content: "\e121"; +} +.glyphicon-bullhorn:before { + content: "\e122"; +} +.glyphicon-bell:before { + content: "\e123"; +} +.glyphicon-certificate:before { + content: "\e124"; +} +.glyphicon-thumbs-up:before { + content: "\e125"; +} +.glyphicon-thumbs-down:before { + content: "\e126"; +} +.glyphicon-hand-right:before { + content: "\e127"; +} +.glyphicon-hand-left:before { + content: "\e128"; +} +.glyphicon-hand-up:before { + content: "\e129"; +} +.glyphicon-hand-down:before { + content: "\e130"; +} +.glyphicon-circle-arrow-right:before { + content: "\e131"; +} +.glyphicon-circle-arrow-left:before { + content: "\e132"; +} +.glyphicon-circle-arrow-up:before { + content: "\e133"; +} +.glyphicon-circle-arrow-down:before { + content: "\e134"; +} +.glyphicon-globe:before { + content: "\e135"; +} +.glyphicon-wrench:before { + content: "\e136"; +} +.glyphicon-tasks:before { + content: "\e137"; +} +.glyphicon-filter:before { + content: "\e138"; +} +.glyphicon-briefcase:before { + content: "\e139"; +} +.glyphicon-fullscreen:before { + content: "\e140"; +} +.glyphicon-dashboard:before { + content: "\e141"; +} +.glyphicon-paperclip:before { + content: "\e142"; +} +.glyphicon-heart-empty:before { + content: "\e143"; +} +.glyphicon-link:before { + content: "\e144"; +} +.glyphicon-phone:before { + content: "\e145"; +} +.glyphicon-pushpin:before { + content: "\e146"; +} +.glyphicon-usd:before { + content: "\e148"; +} +.glyphicon-gbp:before { + content: "\e149"; +} +.glyphicon-sort:before { + content: "\e150"; +} +.glyphicon-sort-by-alphabet:before { + content: "\e151"; +} +.glyphicon-sort-by-alphabet-alt:before { + content: "\e152"; +} +.glyphicon-sort-by-order:before { + content: "\e153"; +} +.glyphicon-sort-by-order-alt:before { + content: "\e154"; +} +.glyphicon-sort-by-attributes:before { + content: "\e155"; +} +.glyphicon-sort-by-attributes-alt:before { + content: "\e156"; +} +.glyphicon-unchecked:before { + content: "\e157"; +} +.glyphicon-expand:before { + content: "\e158"; +} +.glyphicon-collapse-down:before { + content: "\e159"; +} +.glyphicon-collapse-up:before { + content: "\e160"; +} +.glyphicon-log-in:before { + content: "\e161"; +} +.glyphicon-flash:before { + content: "\e162"; +} +.glyphicon-log-out:before { + content: "\e163"; +} +.glyphicon-new-window:before { + content: "\e164"; +} +.glyphicon-record:before { + content: "\e165"; +} +.glyphicon-save:before { + content: "\e166"; +} +.glyphicon-open:before { + content: "\e167"; +} +.glyphicon-saved:before { + content: "\e168"; +} +.glyphicon-import:before { + content: "\e169"; +} +.glyphicon-export:before { + content: "\e170"; +} +.glyphicon-send:before { + content: "\e171"; +} +.glyphicon-floppy-disk:before { + content: "\e172"; +} +.glyphicon-floppy-saved:before { + content: "\e173"; +} +.glyphicon-floppy-remove:before { + content: "\e174"; +} +.glyphicon-floppy-save:before { + content: "\e175"; +} +.glyphicon-floppy-open:before { + content: "\e176"; +} +.glyphicon-credit-card:before { + content: "\e177"; +} +.glyphicon-transfer:before { + content: "\e178"; +} +.glyphicon-cutlery:before { + content: "\e179"; +} +.glyphicon-header:before { + content: "\e180"; +} +.glyphicon-compressed:before { + content: "\e181"; +} +.glyphicon-earphone:before { + content: "\e182"; +} +.glyphicon-phone-alt:before { + content: "\e183"; +} +.glyphicon-tower:before { + content: "\e184"; +} +.glyphicon-stats:before { + content: "\e185"; +} +.glyphicon-sd-video:before { + content: "\e186"; +} +.glyphicon-hd-video:before { + content: "\e187"; +} +.glyphicon-subtitles:before { + content: "\e188"; +} +.glyphicon-sound-stereo:before { + content: "\e189"; +} +.glyphicon-sound-dolby:before { + content: "\e190"; +} +.glyphicon-sound-5-1:before { + content: "\e191"; +} +.glyphicon-sound-6-1:before { + content: "\e192"; +} +.glyphicon-sound-7-1:before { + content: "\e193"; +} +.glyphicon-copyright-mark:before { + content: "\e194"; +} +.glyphicon-registration-mark:before { + content: "\e195"; +} +.glyphicon-cloud-download:before { + content: "\e197"; +} +.glyphicon-cloud-upload:before { + content: "\e198"; +} +.glyphicon-tree-conifer:before { + content: "\e199"; +} +.glyphicon-tree-deciduous:before { + content: "\e200"; +} +.glyphicon-cd:before { + content: "\e201"; +} +.glyphicon-save-file:before { + content: "\e202"; +} +.glyphicon-open-file:before { + content: "\e203"; +} +.glyphicon-level-up:before { + content: "\e204"; +} +.glyphicon-copy:before { + content: "\e205"; +} +.glyphicon-paste:before { + content: "\e206"; +} +.glyphicon-alert:before { + content: "\e209"; +} +.glyphicon-equalizer:before { + content: "\e210"; +} +.glyphicon-king:before { + content: "\e211"; +} +.glyphicon-queen:before { + content: "\e212"; +} +.glyphicon-pawn:before { + content: "\e213"; +} +.glyphicon-bishop:before { + content: "\e214"; +} +.glyphicon-knight:before { + content: "\e215"; +} +.glyphicon-baby-formula:before { + content: "\e216"; +} +.glyphicon-tent:before { + content: "\26fa"; +} +.glyphicon-blackboard:before { + content: "\e218"; +} +.glyphicon-bed:before { + content: "\e219"; +} +.glyphicon-apple:before { + content: "\f8ff"; +} +.glyphicon-erase:before { + content: "\e221"; +} +.glyphicon-hourglass:before { + content: "\231b"; +} +.glyphicon-lamp:before { + content: "\e223"; +} +.glyphicon-duplicate:before { + content: "\e224"; +} +.glyphicon-piggy-bank:before { + content: "\e225"; +} +.glyphicon-scissors:before { + content: "\e226"; +} +.glyphicon-bitcoin:before { + content: "\e227"; +} +.glyphicon-btc:before { + content: "\e227"; +} +.glyphicon-xbt:before { + content: "\e227"; +} +.glyphicon-yen:before { + content: "\00a5"; +} +.glyphicon-jpy:before { + content: "\00a5"; +} +.glyphicon-ruble:before { + content: "\20bd"; +} +.glyphicon-rub:before { + content: "\20bd"; +} +.glyphicon-scale:before { + content: "\e230"; +} +.glyphicon-ice-lolly:before { + content: "\e231"; +} +.glyphicon-ice-lolly-tasted:before { + content: "\e232"; +} +.glyphicon-education:before { + content: "\e233"; +} +.glyphicon-option-horizontal:before { + content: "\e234"; +} +.glyphicon-option-vertical:before { + content: "\e235"; +} +.glyphicon-menu-hamburger:before { + content: "\e236"; +} +.glyphicon-modal-window:before { + content: "\e237"; +} +.glyphicon-oil:before { + content: "\e238"; +} +.glyphicon-grain:before { + content: "\e239"; +} +.glyphicon-sunglasses:before { + content: "\e240"; +} +.glyphicon-text-size:before { + content: "\e241"; +} +.glyphicon-text-color:before { + content: "\e242"; +} +.glyphicon-text-background:before { + content: "\e243"; +} +.glyphicon-object-align-top:before { + content: "\e244"; +} +.glyphicon-object-align-bottom:before { + content: "\e245"; +} +.glyphicon-object-align-horizontal:before { + content: "\e246"; +} +.glyphicon-object-align-left:before { + content: "\e247"; +} +.glyphicon-object-align-vertical:before { + content: "\e248"; +} +.glyphicon-object-align-right:before { + content: "\e249"; +} +.glyphicon-triangle-right:before { + content: "\e250"; +} +.glyphicon-triangle-left:before { + content: "\e251"; +} +.glyphicon-triangle-bottom:before { + content: "\e252"; +} +.glyphicon-triangle-top:before { + content: "\e253"; +} +.glyphicon-console:before { + content: "\e254"; +} +.glyphicon-superscript:before { + content: "\e255"; +} +.glyphicon-subscript:before { + content: "\e256"; +} +.glyphicon-menu-left:before { + content: "\e257"; +} +.glyphicon-menu-right:before { + content: "\e258"; +} +.glyphicon-menu-down:before { + content: "\e259"; +} +.glyphicon-menu-up:before { + content: "\e260"; +} +* { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} +*:before, +*:after { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} +html { + font-size: 10px; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); +} +body { + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 14px; + line-height: 1.42857143; + color: #333333; + background-color: #fff; +} +input, +button, +select, +textarea { + font-family: inherit; + font-size: inherit; + line-height: inherit; +} +a { + color: #337ab7; + text-decoration: none; +} +a:hover, +a:focus { + color: #23527c; + text-decoration: underline; +} +a:focus { + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} +figure { + margin: 0; +} +img { + vertical-align: middle; +} +.img-responsive, +.thumbnail > img, +.thumbnail a > img, +.carousel-inner > .item > img, +.carousel-inner > .item > a > img { + display: block; + max-width: 100%; + height: auto; +} +.img-rounded { + border-radius: 6px; +} +.img-thumbnail { + padding: 4px; + line-height: 1.42857143; + background-color: #fff; + border: 1px solid #ddd; + border-radius: 4px; + -webkit-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; + display: inline-block; + max-width: 100%; + height: auto; +} +.img-circle { + border-radius: 50%; +} +hr { + margin-top: 20px; + margin-bottom: 20px; + border: 0; + border-top: 1px solid #eeeeee; +} +.sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + border: 0; +} +.sr-only-focusable:active, +.sr-only-focusable:focus { + position: static; + width: auto; + height: auto; + margin: 0; + overflow: visible; + clip: auto; +} +[role="button"] { + cursor: pointer; +} +h1, +h2, +h3, +h4, +h5, +h6, +.h1, +.h2, +.h3, +.h4, +.h5, +.h6 { + font-family: inherit; + font-weight: 500; + line-height: 1.1; + color: inherit; +} +h1 small, +h2 small, +h3 small, +h4 small, +h5 small, +h6 small, +.h1 small, +.h2 small, +.h3 small, +.h4 small, +.h5 small, +.h6 small, +h1 .small, +h2 .small, +h3 .small, +h4 .small, +h5 .small, +h6 .small, +.h1 .small, +.h2 .small, +.h3 .small, +.h4 .small, +.h5 .small, +.h6 .small { + font-weight: 400; + line-height: 1; + color: #777777; +} +h1, +.h1, +h2, +.h2, +h3, +.h3 { + margin-top: 20px; + margin-bottom: 10px; +} +h1 small, +.h1 small, +h2 small, +.h2 small, +h3 small, +.h3 small, +h1 .small, +.h1 .small, +h2 .small, +.h2 .small, +h3 .small, +.h3 .small { + font-size: 65%; +} +h4, +.h4, +h5, +.h5, +h6, +.h6 { + margin-top: 10px; + margin-bottom: 10px; +} +h4 small, +.h4 small, +h5 small, +.h5 small, +h6 small, +.h6 small, +h4 .small, +.h4 .small, +h5 .small, +.h5 .small, +h6 .small, +.h6 .small { + font-size: 75%; +} +h1, +.h1 { + font-size: 36px; +} +h2, +.h2 { + font-size: 30px; +} +h3, +.h3 { + font-size: 24px; +} +h4, +.h4 { + font-size: 18px; +} +h5, +.h5 { + font-size: 14px; +} +h6, +.h6 { + font-size: 12px; +} +p { + margin: 0 0 10px; +} +.lead { + margin-bottom: 20px; + font-size: 16px; + font-weight: 300; + line-height: 1.4; +} +@media (min-width: 768px) { + .lead { + font-size: 21px; + } +} +small, +.small { + font-size: 85%; +} +mark, +.mark { + padding: 0.2em; + background-color: #fcf8e3; +} +.text-left { + text-align: left; +} +.text-right { + text-align: right; +} +.text-center { + text-align: center; +} +.text-justify { + text-align: justify; +} +.text-nowrap { + white-space: nowrap; +} +.text-lowercase { + text-transform: lowercase; +} +.text-uppercase { + text-transform: uppercase; +} +.text-capitalize { + text-transform: capitalize; +} +.text-muted { + color: #777777; +} +.text-primary { + color: #337ab7; +} +a.text-primary:hover, +a.text-primary:focus { + color: #286090; +} +.text-success { + color: #3c763d; +} +a.text-success:hover, +a.text-success:focus { + color: #2b542c; +} +.text-info { + color: #31708f; +} +a.text-info:hover, +a.text-info:focus { + color: #245269; +} +.text-warning { + color: #8a6d3b; +} +a.text-warning:hover, +a.text-warning:focus { + color: #66512c; +} +.text-danger { + color: #a94442; +} +a.text-danger:hover, +a.text-danger:focus { + color: #843534; +} +.bg-primary { + color: #fff; + background-color: #337ab7; +} +a.bg-primary:hover, +a.bg-primary:focus { + background-color: #286090; +} +.bg-success { + background-color: #dff0d8; +} +a.bg-success:hover, +a.bg-success:focus { + background-color: #c1e2b3; +} +.bg-info { + background-color: #d9edf7; +} +a.bg-info:hover, +a.bg-info:focus { + background-color: #afd9ee; +} +.bg-warning { + background-color: #fcf8e3; +} +a.bg-warning:hover, +a.bg-warning:focus { + background-color: #f7ecb5; +} +.bg-danger { + background-color: #f2dede; +} +a.bg-danger:hover, +a.bg-danger:focus { + background-color: #e4b9b9; +} +.page-header { + padding-bottom: 9px; + margin: 40px 0 20px; + border-bottom: 1px solid #eeeeee; +} +ul, +ol { + margin-top: 0; + margin-bottom: 10px; +} +ul ul, +ol ul, +ul ol, +ol ol { + margin-bottom: 0; +} +.list-unstyled { + padding-left: 0; + list-style: none; +} +.list-inline { + padding-left: 0; + list-style: none; + margin-left: -5px; +} +.list-inline > li { + display: inline-block; + padding-right: 5px; + padding-left: 5px; +} +dl { + margin-top: 0; + margin-bottom: 20px; +} +dt, +dd { + line-height: 1.42857143; +} +dt { + font-weight: 700; +} +dd { + margin-left: 0; +} +@media (min-width: 768px) { + .dl-horizontal dt { + float: left; + width: 160px; + clear: left; + text-align: right; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } + .dl-horizontal dd { + margin-left: 180px; + } +} +abbr[title], +abbr[data-original-title] { + cursor: help; +} +.initialism { + font-size: 90%; + text-transform: uppercase; +} +blockquote { + padding: 10px 20px; + margin: 0 0 20px; + font-size: 17.5px; + border-left: 5px solid #eeeeee; +} +blockquote p:last-child, +blockquote ul:last-child, +blockquote ol:last-child { + margin-bottom: 0; +} +blockquote footer, +blockquote small, +blockquote .small { + display: block; + font-size: 80%; + line-height: 1.42857143; + color: #777777; +} +blockquote footer:before, +blockquote small:before, +blockquote .small:before { + content: "\2014 \00A0"; +} +.blockquote-reverse, +blockquote.pull-right { + padding-right: 15px; + padding-left: 0; + text-align: right; + border-right: 5px solid #eeeeee; + border-left: 0; +} +.blockquote-reverse footer:before, +blockquote.pull-right footer:before, +.blockquote-reverse small:before, +blockquote.pull-right small:before, +.blockquote-reverse .small:before, +blockquote.pull-right .small:before { + content: ""; +} +.blockquote-reverse footer:after, +blockquote.pull-right footer:after, +.blockquote-reverse small:after, +blockquote.pull-right small:after, +.blockquote-reverse .small:after, +blockquote.pull-right .small:after { + content: "\00A0 \2014"; +} +address { + margin-bottom: 20px; + font-style: normal; + line-height: 1.42857143; +} +code, +kbd, +pre, +samp { + font-family: Menlo, Monaco, Consolas, "Courier New", monospace; +} +code { + padding: 2px 4px; + font-size: 90%; + color: #c7254e; + background-color: #f9f2f4; + border-radius: 4px; +} +kbd { + padding: 2px 4px; + font-size: 90%; + color: #fff; + background-color: #333; + border-radius: 3px; + -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); + box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); +} +kbd kbd { + padding: 0; + font-size: 100%; + font-weight: 700; + -webkit-box-shadow: none; + box-shadow: none; +} +pre { + display: block; + padding: 9.5px; + margin: 0 0 10px; + font-size: 13px; + line-height: 1.42857143; + color: #333333; + word-break: break-all; + word-wrap: break-word; + background-color: #f5f5f5; + border: 1px solid #ccc; + border-radius: 4px; +} +pre code { + padding: 0; + font-size: inherit; + color: inherit; + white-space: pre-wrap; + background-color: transparent; + border-radius: 0; +} +.pre-scrollable { + max-height: 340px; + overflow-y: scroll; +} +.container { + padding-right: 15px; + padding-left: 15px; + margin-right: auto; + margin-left: auto; +} +@media (min-width: 768px) { + .container { + width: 750px; + } +} +@media (min-width: 992px) { + .container { + width: 970px; + } +} +@media (min-width: 1200px) { + .container { + width: 1170px; + } +} +.container-fluid { + padding-right: 15px; + padding-left: 15px; + margin-right: auto; + margin-left: auto; +} +.row { + margin-right: -15px; + margin-left: -15px; +} +.row-no-gutters { + margin-right: 0; + margin-left: 0; +} +.row-no-gutters [class*="col-"] { + padding-right: 0; + padding-left: 0; +} +.col-xs-1, +.col-sm-1, +.col-md-1, +.col-lg-1, +.col-xs-2, +.col-sm-2, +.col-md-2, +.col-lg-2, +.col-xs-3, +.col-sm-3, +.col-md-3, +.col-lg-3, +.col-xs-4, +.col-sm-4, +.col-md-4, +.col-lg-4, +.col-xs-5, +.col-sm-5, +.col-md-5, +.col-lg-5, +.col-xs-6, +.col-sm-6, +.col-md-6, +.col-lg-6, +.col-xs-7, +.col-sm-7, +.col-md-7, +.col-lg-7, +.col-xs-8, +.col-sm-8, +.col-md-8, +.col-lg-8, +.col-xs-9, +.col-sm-9, +.col-md-9, +.col-lg-9, +.col-xs-10, +.col-sm-10, +.col-md-10, +.col-lg-10, +.col-xs-11, +.col-sm-11, +.col-md-11, +.col-lg-11, +.col-xs-12, +.col-sm-12, +.col-md-12, +.col-lg-12 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; +} +.col-xs-1, +.col-xs-2, +.col-xs-3, +.col-xs-4, +.col-xs-5, +.col-xs-6, +.col-xs-7, +.col-xs-8, +.col-xs-9, +.col-xs-10, +.col-xs-11, +.col-xs-12 { + float: left; +} +.col-xs-12 { + width: 100%; +} +.col-xs-11 { + width: 91.66666667%; +} +.col-xs-10 { + width: 83.33333333%; +} +.col-xs-9 { + width: 75%; +} +.col-xs-8 { + width: 66.66666667%; +} +.col-xs-7 { + width: 58.33333333%; +} +.col-xs-6 { + width: 50%; +} +.col-xs-5 { + width: 41.66666667%; +} +.col-xs-4 { + width: 33.33333333%; +} +.col-xs-3 { + width: 25%; +} +.col-xs-2 { + width: 16.66666667%; +} +.col-xs-1 { + width: 8.33333333%; +} +.col-xs-pull-12 { + right: 100%; +} +.col-xs-pull-11 { + right: 91.66666667%; +} +.col-xs-pull-10 { + right: 83.33333333%; +} +.col-xs-pull-9 { + right: 75%; +} +.col-xs-pull-8 { + right: 66.66666667%; +} +.col-xs-pull-7 { + right: 58.33333333%; +} +.col-xs-pull-6 { + right: 50%; +} +.col-xs-pull-5 { + right: 41.66666667%; +} +.col-xs-pull-4 { + right: 33.33333333%; +} +.col-xs-pull-3 { + right: 25%; +} +.col-xs-pull-2 { + right: 16.66666667%; +} +.col-xs-pull-1 { + right: 8.33333333%; +} +.col-xs-pull-0 { + right: auto; +} +.col-xs-push-12 { + left: 100%; +} +.col-xs-push-11 { + left: 91.66666667%; +} +.col-xs-push-10 { + left: 83.33333333%; +} +.col-xs-push-9 { + left: 75%; +} +.col-xs-push-8 { + left: 66.66666667%; +} +.col-xs-push-7 { + left: 58.33333333%; +} +.col-xs-push-6 { + left: 50%; +} +.col-xs-push-5 { + left: 41.66666667%; +} +.col-xs-push-4 { + left: 33.33333333%; +} +.col-xs-push-3 { + left: 25%; +} +.col-xs-push-2 { + left: 16.66666667%; +} +.col-xs-push-1 { + left: 8.33333333%; +} +.col-xs-push-0 { + left: auto; +} +.col-xs-offset-12 { + margin-left: 100%; +} +.col-xs-offset-11 { + margin-left: 91.66666667%; +} +.col-xs-offset-10 { + margin-left: 83.33333333%; +} +.col-xs-offset-9 { + margin-left: 75%; +} +.col-xs-offset-8 { + margin-left: 66.66666667%; +} +.col-xs-offset-7 { + margin-left: 58.33333333%; +} +.col-xs-offset-6 { + margin-left: 50%; +} +.col-xs-offset-5 { + margin-left: 41.66666667%; +} +.col-xs-offset-4 { + margin-left: 33.33333333%; +} +.col-xs-offset-3 { + margin-left: 25%; +} +.col-xs-offset-2 { + margin-left: 16.66666667%; +} +.col-xs-offset-1 { + margin-left: 8.33333333%; +} +.col-xs-offset-0 { + margin-left: 0%; +} +@media (min-width: 768px) { + .col-sm-1, + .col-sm-2, + .col-sm-3, + .col-sm-4, + .col-sm-5, + .col-sm-6, + .col-sm-7, + .col-sm-8, + .col-sm-9, + .col-sm-10, + .col-sm-11, + .col-sm-12 { + float: left; + } + .col-sm-12 { + width: 100%; + } + .col-sm-11 { + width: 91.66666667%; + } + .col-sm-10 { + width: 83.33333333%; + } + .col-sm-9 { + width: 75%; + } + .col-sm-8 { + width: 66.66666667%; + } + .col-sm-7 { + width: 58.33333333%; + } + .col-sm-6 { + width: 50%; + } + .col-sm-5 { + width: 41.66666667%; + } + .col-sm-4 { + width: 33.33333333%; + } + .col-sm-3 { + width: 25%; + } + .col-sm-2 { + width: 16.66666667%; + } + .col-sm-1 { + width: 8.33333333%; + } + .col-sm-pull-12 { + right: 100%; + } + .col-sm-pull-11 { + right: 91.66666667%; + } + .col-sm-pull-10 { + right: 83.33333333%; + } + .col-sm-pull-9 { + right: 75%; + } + .col-sm-pull-8 { + right: 66.66666667%; + } + .col-sm-pull-7 { + right: 58.33333333%; + } + .col-sm-pull-6 { + right: 50%; + } + .col-sm-pull-5 { + right: 41.66666667%; + } + .col-sm-pull-4 { + right: 33.33333333%; + } + .col-sm-pull-3 { + right: 25%; + } + .col-sm-pull-2 { + right: 16.66666667%; + } + .col-sm-pull-1 { + right: 8.33333333%; + } + .col-sm-pull-0 { + right: auto; + } + .col-sm-push-12 { + left: 100%; + } + .col-sm-push-11 { + left: 91.66666667%; + } + .col-sm-push-10 { + left: 83.33333333%; + } + .col-sm-push-9 { + left: 75%; + } + .col-sm-push-8 { + left: 66.66666667%; + } + .col-sm-push-7 { + left: 58.33333333%; + } + .col-sm-push-6 { + left: 50%; + } + .col-sm-push-5 { + left: 41.66666667%; + } + .col-sm-push-4 { + left: 33.33333333%; + } + .col-sm-push-3 { + left: 25%; + } + .col-sm-push-2 { + left: 16.66666667%; + } + .col-sm-push-1 { + left: 8.33333333%; + } + .col-sm-push-0 { + left: auto; + } + .col-sm-offset-12 { + margin-left: 100%; + } + .col-sm-offset-11 { + margin-left: 91.66666667%; + } + .col-sm-offset-10 { + margin-left: 83.33333333%; + } + .col-sm-offset-9 { + margin-left: 75%; + } + .col-sm-offset-8 { + margin-left: 66.66666667%; + } + .col-sm-offset-7 { + margin-left: 58.33333333%; + } + .col-sm-offset-6 { + margin-left: 50%; + } + .col-sm-offset-5 { + margin-left: 41.66666667%; + } + .col-sm-offset-4 { + margin-left: 33.33333333%; + } + .col-sm-offset-3 { + margin-left: 25%; + } + .col-sm-offset-2 { + margin-left: 16.66666667%; + } + .col-sm-offset-1 { + margin-left: 8.33333333%; + } + .col-sm-offset-0 { + margin-left: 0%; + } +} +@media (min-width: 992px) { + .col-md-1, + .col-md-2, + .col-md-3, + .col-md-4, + .col-md-5, + .col-md-6, + .col-md-7, + .col-md-8, + .col-md-9, + .col-md-10, + .col-md-11, + .col-md-12 { + float: left; + } + .col-md-12 { + width: 100%; + } + .col-md-11 { + width: 91.66666667%; + } + .col-md-10 { + width: 83.33333333%; + } + .col-md-9 { + width: 75%; + } + .col-md-8 { + width: 66.66666667%; + } + .col-md-7 { + width: 58.33333333%; + } + .col-md-6 { + width: 50%; + } + .col-md-5 { + width: 41.66666667%; + } + .col-md-4 { + width: 33.33333333%; + } + .col-md-3 { + width: 25%; + } + .col-md-2 { + width: 16.66666667%; + } + .col-md-1 { + width: 8.33333333%; + } + .col-md-pull-12 { + right: 100%; + } + .col-md-pull-11 { + right: 91.66666667%; + } + .col-md-pull-10 { + right: 83.33333333%; + } + .col-md-pull-9 { + right: 75%; + } + .col-md-pull-8 { + right: 66.66666667%; + } + .col-md-pull-7 { + right: 58.33333333%; + } + .col-md-pull-6 { + right: 50%; + } + .col-md-pull-5 { + right: 41.66666667%; + } + .col-md-pull-4 { + right: 33.33333333%; + } + .col-md-pull-3 { + right: 25%; + } + .col-md-pull-2 { + right: 16.66666667%; + } + .col-md-pull-1 { + right: 8.33333333%; + } + .col-md-pull-0 { + right: auto; + } + .col-md-push-12 { + left: 100%; + } + .col-md-push-11 { + left: 91.66666667%; + } + .col-md-push-10 { + left: 83.33333333%; + } + .col-md-push-9 { + left: 75%; + } + .col-md-push-8 { + left: 66.66666667%; + } + .col-md-push-7 { + left: 58.33333333%; + } + .col-md-push-6 { + left: 50%; + } + .col-md-push-5 { + left: 41.66666667%; + } + .col-md-push-4 { + left: 33.33333333%; + } + .col-md-push-3 { + left: 25%; + } + .col-md-push-2 { + left: 16.66666667%; + } + .col-md-push-1 { + left: 8.33333333%; + } + .col-md-push-0 { + left: auto; + } + .col-md-offset-12 { + margin-left: 100%; + } + .col-md-offset-11 { + margin-left: 91.66666667%; + } + .col-md-offset-10 { + margin-left: 83.33333333%; + } + .col-md-offset-9 { + margin-left: 75%; + } + .col-md-offset-8 { + margin-left: 66.66666667%; + } + .col-md-offset-7 { + margin-left: 58.33333333%; + } + .col-md-offset-6 { + margin-left: 50%; + } + .col-md-offset-5 { + margin-left: 41.66666667%; + } + .col-md-offset-4 { + margin-left: 33.33333333%; + } + .col-md-offset-3 { + margin-left: 25%; + } + .col-md-offset-2 { + margin-left: 16.66666667%; + } + .col-md-offset-1 { + margin-left: 8.33333333%; + } + .col-md-offset-0 { + margin-left: 0%; + } +} +@media (min-width: 1200px) { + .col-lg-1, + .col-lg-2, + .col-lg-3, + .col-lg-4, + .col-lg-5, + .col-lg-6, + .col-lg-7, + .col-lg-8, + .col-lg-9, + .col-lg-10, + .col-lg-11, + .col-lg-12 { + float: left; + } + .col-lg-12 { + width: 100%; + } + .col-lg-11 { + width: 91.66666667%; + } + .col-lg-10 { + width: 83.33333333%; + } + .col-lg-9 { + width: 75%; + } + .col-lg-8 { + width: 66.66666667%; + } + .col-lg-7 { + width: 58.33333333%; + } + .col-lg-6 { + width: 50%; + } + .col-lg-5 { + width: 41.66666667%; + } + .col-lg-4 { + width: 33.33333333%; + } + .col-lg-3 { + width: 25%; + } + .col-lg-2 { + width: 16.66666667%; + } + .col-lg-1 { + width: 8.33333333%; + } + .col-lg-pull-12 { + right: 100%; + } + .col-lg-pull-11 { + right: 91.66666667%; + } + .col-lg-pull-10 { + right: 83.33333333%; + } + .col-lg-pull-9 { + right: 75%; + } + .col-lg-pull-8 { + right: 66.66666667%; + } + .col-lg-pull-7 { + right: 58.33333333%; + } + .col-lg-pull-6 { + right: 50%; + } + .col-lg-pull-5 { + right: 41.66666667%; + } + .col-lg-pull-4 { + right: 33.33333333%; + } + .col-lg-pull-3 { + right: 25%; + } + .col-lg-pull-2 { + right: 16.66666667%; + } + .col-lg-pull-1 { + right: 8.33333333%; + } + .col-lg-pull-0 { + right: auto; + } + .col-lg-push-12 { + left: 100%; + } + .col-lg-push-11 { + left: 91.66666667%; + } + .col-lg-push-10 { + left: 83.33333333%; + } + .col-lg-push-9 { + left: 75%; + } + .col-lg-push-8 { + left: 66.66666667%; + } + .col-lg-push-7 { + left: 58.33333333%; + } + .col-lg-push-6 { + left: 50%; + } + .col-lg-push-5 { + left: 41.66666667%; + } + .col-lg-push-4 { + left: 33.33333333%; + } + .col-lg-push-3 { + left: 25%; + } + .col-lg-push-2 { + left: 16.66666667%; + } + .col-lg-push-1 { + left: 8.33333333%; + } + .col-lg-push-0 { + left: auto; + } + .col-lg-offset-12 { + margin-left: 100%; + } + .col-lg-offset-11 { + margin-left: 91.66666667%; + } + .col-lg-offset-10 { + margin-left: 83.33333333%; + } + .col-lg-offset-9 { + margin-left: 75%; + } + .col-lg-offset-8 { + margin-left: 66.66666667%; + } + .col-lg-offset-7 { + margin-left: 58.33333333%; + } + .col-lg-offset-6 { + margin-left: 50%; + } + .col-lg-offset-5 { + margin-left: 41.66666667%; + } + .col-lg-offset-4 { + margin-left: 33.33333333%; + } + .col-lg-offset-3 { + margin-left: 25%; + } + .col-lg-offset-2 { + margin-left: 16.66666667%; + } + .col-lg-offset-1 { + margin-left: 8.33333333%; + } + .col-lg-offset-0 { + margin-left: 0%; + } +} +table { + background-color: transparent; +} +table col[class*="col-"] { + position: static; + display: table-column; + float: none; +} +table td[class*="col-"], +table th[class*="col-"] { + position: static; + display: table-cell; + float: none; +} +caption { + padding-top: 8px; + padding-bottom: 8px; + color: #777777; + text-align: left; +} +th { + text-align: left; +} +.table { + width: 100%; + max-width: 100%; + margin-bottom: 20px; +} +.table > thead > tr > th, +.table > tbody > tr > th, +.table > tfoot > tr > th, +.table > thead > tr > td, +.table > tbody > tr > td, +.table > tfoot > tr > td { + padding: 8px; + line-height: 1.42857143; + vertical-align: top; + border-top: 1px solid #ddd; +} +.table > thead > tr > th { + vertical-align: bottom; + border-bottom: 2px solid #ddd; +} +.table > caption + thead > tr:first-child > th, +.table > colgroup + thead > tr:first-child > th, +.table > thead:first-child > tr:first-child > th, +.table > caption + thead > tr:first-child > td, +.table > colgroup + thead > tr:first-child > td, +.table > thead:first-child > tr:first-child > td { + border-top: 0; +} +.table > tbody + tbody { + border-top: 2px solid #ddd; +} +.table .table { + background-color: #fff; +} +.table-condensed > thead > tr > th, +.table-condensed > tbody > tr > th, +.table-condensed > tfoot > tr > th, +.table-condensed > thead > tr > td, +.table-condensed > tbody > tr > td, +.table-condensed > tfoot > tr > td { + padding: 5px; +} +.table-bordered { + border: 1px solid #ddd; +} +.table-bordered > thead > tr > th, +.table-bordered > tbody > tr > th, +.table-bordered > tfoot > tr > th, +.table-bordered > thead > tr > td, +.table-bordered > tbody > tr > td, +.table-bordered > tfoot > tr > td { + border: 1px solid #ddd; +} +.table-bordered > thead > tr > th, +.table-bordered > thead > tr > td { + border-bottom-width: 2px; +} +.table-striped > tbody > tr:nth-of-type(odd) { + background-color: #f9f9f9; +} +.table-hover > tbody > tr:hover { + background-color: #f5f5f5; +} +.table > thead > tr > td.active, +.table > tbody > tr > td.active, +.table > tfoot > tr > td.active, +.table > thead > tr > th.active, +.table > tbody > tr > th.active, +.table > tfoot > tr > th.active, +.table > thead > tr.active > td, +.table > tbody > tr.active > td, +.table > tfoot > tr.active > td, +.table > thead > tr.active > th, +.table > tbody > tr.active > th, +.table > tfoot > tr.active > th { + background-color: #f5f5f5; +} +.table-hover > tbody > tr > td.active:hover, +.table-hover > tbody > tr > th.active:hover, +.table-hover > tbody > tr.active:hover > td, +.table-hover > tbody > tr:hover > .active, +.table-hover > tbody > tr.active:hover > th { + background-color: #e8e8e8; +} +.table > thead > tr > td.success, +.table > tbody > tr > td.success, +.table > tfoot > tr > td.success, +.table > thead > tr > th.success, +.table > tbody > tr > th.success, +.table > tfoot > tr > th.success, +.table > thead > tr.success > td, +.table > tbody > tr.success > td, +.table > tfoot > tr.success > td, +.table > thead > tr.success > th, +.table > tbody > tr.success > th, +.table > tfoot > tr.success > th { + background-color: #dff0d8; +} +.table-hover > tbody > tr > td.success:hover, +.table-hover > tbody > tr > th.success:hover, +.table-hover > tbody > tr.success:hover > td, +.table-hover > tbody > tr:hover > .success, +.table-hover > tbody > tr.success:hover > th { + background-color: #d0e9c6; +} +.table > thead > tr > td.info, +.table > tbody > tr > td.info, +.table > tfoot > tr > td.info, +.table > thead > tr > th.info, +.table > tbody > tr > th.info, +.table > tfoot > tr > th.info, +.table > thead > tr.info > td, +.table > tbody > tr.info > td, +.table > tfoot > tr.info > td, +.table > thead > tr.info > th, +.table > tbody > tr.info > th, +.table > tfoot > tr.info > th { + background-color: #d9edf7; +} +.table-hover > tbody > tr > td.info:hover, +.table-hover > tbody > tr > th.info:hover, +.table-hover > tbody > tr.info:hover > td, +.table-hover > tbody > tr:hover > .info, +.table-hover > tbody > tr.info:hover > th { + background-color: #c4e3f3; +} +.table > thead > tr > td.warning, +.table > tbody > tr > td.warning, +.table > tfoot > tr > td.warning, +.table > thead > tr > th.warning, +.table > tbody > tr > th.warning, +.table > tfoot > tr > th.warning, +.table > thead > tr.warning > td, +.table > tbody > tr.warning > td, +.table > tfoot > tr.warning > td, +.table > thead > tr.warning > th, +.table > tbody > tr.warning > th, +.table > tfoot > tr.warning > th { + background-color: #fcf8e3; +} +.table-hover > tbody > tr > td.warning:hover, +.table-hover > tbody > tr > th.warning:hover, +.table-hover > tbody > tr.warning:hover > td, +.table-hover > tbody > tr:hover > .warning, +.table-hover > tbody > tr.warning:hover > th { + background-color: #faf2cc; +} +.table > thead > tr > td.danger, +.table > tbody > tr > td.danger, +.table > tfoot > tr > td.danger, +.table > thead > tr > th.danger, +.table > tbody > tr > th.danger, +.table > tfoot > tr > th.danger, +.table > thead > tr.danger > td, +.table > tbody > tr.danger > td, +.table > tfoot > tr.danger > td, +.table > thead > tr.danger > th, +.table > tbody > tr.danger > th, +.table > tfoot > tr.danger > th { + background-color: #f2dede; +} +.table-hover > tbody > tr > td.danger:hover, +.table-hover > tbody > tr > th.danger:hover, +.table-hover > tbody > tr.danger:hover > td, +.table-hover > tbody > tr:hover > .danger, +.table-hover > tbody > tr.danger:hover > th { + background-color: #ebcccc; +} +.table-responsive { + min-height: 0.01%; + overflow-x: auto; +} +@media screen and (max-width: 767px) { + .table-responsive { + width: 100%; + margin-bottom: 15px; + overflow-y: hidden; + -ms-overflow-style: -ms-autohiding-scrollbar; + border: 1px solid #ddd; + } + .table-responsive > .table { + margin-bottom: 0; + } + .table-responsive > .table > thead > tr > th, + .table-responsive > .table > tbody > tr > th, + .table-responsive > .table > tfoot > tr > th, + .table-responsive > .table > thead > tr > td, + .table-responsive > .table > tbody > tr > td, + .table-responsive > .table > tfoot > tr > td { + white-space: nowrap; + } + .table-responsive > .table-bordered { + border: 0; + } + .table-responsive > .table-bordered > thead > tr > th:first-child, + .table-responsive > .table-bordered > tbody > tr > th:first-child, + .table-responsive > .table-bordered > tfoot > tr > th:first-child, + .table-responsive > .table-bordered > thead > tr > td:first-child, + .table-responsive > .table-bordered > tbody > tr > td:first-child, + .table-responsive > .table-bordered > tfoot > tr > td:first-child { + border-left: 0; + } + .table-responsive > .table-bordered > thead > tr > th:last-child, + .table-responsive > .table-bordered > tbody > tr > th:last-child, + .table-responsive > .table-bordered > tfoot > tr > th:last-child, + .table-responsive > .table-bordered > thead > tr > td:last-child, + .table-responsive > .table-bordered > tbody > tr > td:last-child, + .table-responsive > .table-bordered > tfoot > tr > td:last-child { + border-right: 0; + } + .table-responsive > .table-bordered > tbody > tr:last-child > th, + .table-responsive > .table-bordered > tfoot > tr:last-child > th, + .table-responsive > .table-bordered > tbody > tr:last-child > td, + .table-responsive > .table-bordered > tfoot > tr:last-child > td { + border-bottom: 0; + } +} +fieldset { + min-width: 0; + padding: 0; + margin: 0; + border: 0; +} +legend { + display: block; + width: 100%; + padding: 0; + margin-bottom: 20px; + font-size: 21px; + line-height: inherit; + color: #333333; + border: 0; + border-bottom: 1px solid #e5e5e5; +} +label { + display: inline-block; + max-width: 100%; + margin-bottom: 5px; + font-weight: 700; +} +input[type="search"] { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} +input[type="radio"], +input[type="checkbox"] { + margin: 4px 0 0; + margin-top: 1px \9; + line-height: normal; +} +input[type="radio"][disabled], +input[type="checkbox"][disabled], +input[type="radio"].disabled, +input[type="checkbox"].disabled, +fieldset[disabled] input[type="radio"], +fieldset[disabled] input[type="checkbox"] { + cursor: not-allowed; +} +input[type="file"] { + display: block; +} +input[type="range"] { + display: block; + width: 100%; +} +select[multiple], +select[size] { + height: auto; +} +input[type="file"]:focus, +input[type="radio"]:focus, +input[type="checkbox"]:focus { + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} +output { + display: block; + padding-top: 7px; + font-size: 14px; + line-height: 1.42857143; + color: #555555; +} +.form-control { + display: block; + width: 100%; + height: 34px; + padding: 6px 12px; + font-size: 14px; + line-height: 1.42857143; + color: #555555; + background-color: #fff; + background-image: none; + border: 1px solid #ccc; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; + -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; + -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s; + transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s; + transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; + transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s, -webkit-box-shadow ease-in-out .15s; +} +.form-control:focus { + border-color: #66afe9; + outline: 0; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6); +} +.form-control::-moz-placeholder { + color: #999; + opacity: 1; +} +.form-control:-ms-input-placeholder { + color: #999; +} +.form-control::-webkit-input-placeholder { + color: #999; +} +.form-control::-ms-expand { + background-color: transparent; + border: 0; +} +.form-control[disabled], +.form-control[readonly], +fieldset[disabled] .form-control { + background-color: #eeeeee; + opacity: 1; +} +.form-control[disabled], +fieldset[disabled] .form-control { + cursor: not-allowed; +} +textarea.form-control { + height: auto; +} +@media screen and (-webkit-min-device-pixel-ratio: 0) { + input[type="date"].form-control, + input[type="time"].form-control, + input[type="datetime-local"].form-control, + input[type="month"].form-control { + line-height: 34px; + } + input[type="date"].input-sm, + input[type="time"].input-sm, + input[type="datetime-local"].input-sm, + input[type="month"].input-sm, + .input-group-sm input[type="date"], + .input-group-sm input[type="time"], + .input-group-sm input[type="datetime-local"], + .input-group-sm input[type="month"] { + line-height: 30px; + } + input[type="date"].input-lg, + input[type="time"].input-lg, + input[type="datetime-local"].input-lg, + input[type="month"].input-lg, + .input-group-lg input[type="date"], + .input-group-lg input[type="time"], + .input-group-lg input[type="datetime-local"], + .input-group-lg input[type="month"] { + line-height: 46px; + } +} +.form-group { + margin-bottom: 15px; +} +.radio, +.checkbox { + position: relative; + display: block; + margin-top: 10px; + margin-bottom: 10px; +} +.radio.disabled label, +.checkbox.disabled label, +fieldset[disabled] .radio label, +fieldset[disabled] .checkbox label { + cursor: not-allowed; +} +.radio label, +.checkbox label { + min-height: 20px; + padding-left: 20px; + margin-bottom: 0; + font-weight: 400; + cursor: pointer; +} +.radio input[type="radio"], +.radio-inline input[type="radio"], +.checkbox input[type="checkbox"], +.checkbox-inline input[type="checkbox"] { + position: absolute; + margin-top: 4px \9; + margin-left: -20px; +} +.radio + .radio, +.checkbox + .checkbox { + margin-top: -5px; +} +.radio-inline, +.checkbox-inline { + position: relative; + display: inline-block; + padding-left: 20px; + margin-bottom: 0; + font-weight: 400; + vertical-align: middle; + cursor: pointer; +} +.radio-inline.disabled, +.checkbox-inline.disabled, +fieldset[disabled] .radio-inline, +fieldset[disabled] .checkbox-inline { + cursor: not-allowed; +} +.radio-inline + .radio-inline, +.checkbox-inline + .checkbox-inline { + margin-top: 0; + margin-left: 10px; +} +.form-control-static { + min-height: 34px; + padding-top: 7px; + padding-bottom: 7px; + margin-bottom: 0; +} +.form-control-static.input-lg, +.form-control-static.input-sm { + padding-right: 0; + padding-left: 0; +} +.input-sm { + height: 30px; + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} +select.input-sm { + height: 30px; + line-height: 30px; +} +textarea.input-sm, +select[multiple].input-sm { + height: auto; +} +.form-group-sm .form-control { + height: 30px; + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} +.form-group-sm select.form-control { + height: 30px; + line-height: 30px; +} +.form-group-sm textarea.form-control, +.form-group-sm select[multiple].form-control { + height: auto; +} +.form-group-sm .form-control-static { + height: 30px; + min-height: 32px; + padding: 6px 10px; + font-size: 12px; + line-height: 1.5; +} +.input-lg { + height: 46px; + padding: 10px 16px; + font-size: 18px; + line-height: 1.3333333; + border-radius: 6px; +} +select.input-lg { + height: 46px; + line-height: 46px; +} +textarea.input-lg, +select[multiple].input-lg { + height: auto; +} +.form-group-lg .form-control { + height: 46px; + padding: 10px 16px; + font-size: 18px; + line-height: 1.3333333; + border-radius: 6px; +} +.form-group-lg select.form-control { + height: 46px; + line-height: 46px; +} +.form-group-lg textarea.form-control, +.form-group-lg select[multiple].form-control { + height: auto; +} +.form-group-lg .form-control-static { + height: 46px; + min-height: 38px; + padding: 11px 16px; + font-size: 18px; + line-height: 1.3333333; +} +.has-feedback { + position: relative; +} +.has-feedback .form-control { + padding-right: 42.5px; +} +.form-control-feedback { + position: absolute; + top: 0; + right: 0; + z-index: 2; + display: block; + width: 34px; + height: 34px; + line-height: 34px; + text-align: center; + pointer-events: none; +} +.input-lg + .form-control-feedback, +.input-group-lg + .form-control-feedback, +.form-group-lg .form-control + .form-control-feedback { + width: 46px; + height: 46px; + line-height: 46px; +} +.input-sm + .form-control-feedback, +.input-group-sm + .form-control-feedback, +.form-group-sm .form-control + .form-control-feedback { + width: 30px; + height: 30px; + line-height: 30px; +} +.has-success .help-block, +.has-success .control-label, +.has-success .radio, +.has-success .checkbox, +.has-success .radio-inline, +.has-success .checkbox-inline, +.has-success.radio label, +.has-success.checkbox label, +.has-success.radio-inline label, +.has-success.checkbox-inline label { + color: #3c763d; +} +.has-success .form-control { + border-color: #3c763d; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); +} +.has-success .form-control:focus { + border-color: #2b542c; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; +} +.has-success .input-group-addon { + color: #3c763d; + background-color: #dff0d8; + border-color: #3c763d; +} +.has-success .form-control-feedback { + color: #3c763d; +} +.has-warning .help-block, +.has-warning .control-label, +.has-warning .radio, +.has-warning .checkbox, +.has-warning .radio-inline, +.has-warning .checkbox-inline, +.has-warning.radio label, +.has-warning.checkbox label, +.has-warning.radio-inline label, +.has-warning.checkbox-inline label { + color: #8a6d3b; +} +.has-warning .form-control { + border-color: #8a6d3b; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); +} +.has-warning .form-control:focus { + border-color: #66512c; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; +} +.has-warning .input-group-addon { + color: #8a6d3b; + background-color: #fcf8e3; + border-color: #8a6d3b; +} +.has-warning .form-control-feedback { + color: #8a6d3b; +} +.has-error .help-block, +.has-error .control-label, +.has-error .radio, +.has-error .checkbox, +.has-error .radio-inline, +.has-error .checkbox-inline, +.has-error.radio label, +.has-error.checkbox label, +.has-error.radio-inline label, +.has-error.checkbox-inline label { + color: #a94442; +} +.has-error .form-control { + border-color: #a94442; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); +} +.has-error .form-control:focus { + border-color: #843534; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; +} +.has-error .input-group-addon { + color: #a94442; + background-color: #f2dede; + border-color: #a94442; +} +.has-error .form-control-feedback { + color: #a94442; +} +.has-feedback label ~ .form-control-feedback { + top: 25px; +} +.has-feedback label.sr-only ~ .form-control-feedback { + top: 0; +} +.help-block { + display: block; + margin-top: 5px; + margin-bottom: 10px; + color: #737373; +} +@media (min-width: 768px) { + .form-inline .form-group { + display: inline-block; + margin-bottom: 0; + vertical-align: middle; + } + .form-inline .form-control { + display: inline-block; + width: auto; + vertical-align: middle; + } + .form-inline .form-control-static { + display: inline-block; + } + .form-inline .input-group { + display: inline-table; + vertical-align: middle; + } + .form-inline .input-group .input-group-addon, + .form-inline .input-group .input-group-btn, + .form-inline .input-group .form-control { + width: auto; + } + .form-inline .input-group > .form-control { + width: 100%; + } + .form-inline .control-label { + margin-bottom: 0; + vertical-align: middle; + } + .form-inline .radio, + .form-inline .checkbox { + display: inline-block; + margin-top: 0; + margin-bottom: 0; + vertical-align: middle; + } + .form-inline .radio label, + .form-inline .checkbox label { + padding-left: 0; + } + .form-inline .radio input[type="radio"], + .form-inline .checkbox input[type="checkbox"] { + position: relative; + margin-left: 0; + } + .form-inline .has-feedback .form-control-feedback { + top: 0; + } +} +.form-horizontal .radio, +.form-horizontal .checkbox, +.form-horizontal .radio-inline, +.form-horizontal .checkbox-inline { + padding-top: 7px; + margin-top: 0; + margin-bottom: 0; +} +.form-horizontal .radio, +.form-horizontal .checkbox { + min-height: 27px; +} +.form-horizontal .form-group { + margin-right: -15px; + margin-left: -15px; +} +@media (min-width: 768px) { + .form-horizontal .control-label { + padding-top: 7px; + margin-bottom: 0; + text-align: right; + } +} +.form-horizontal .has-feedback .form-control-feedback { + right: 15px; +} +@media (min-width: 768px) { + .form-horizontal .form-group-lg .control-label { + padding-top: 11px; + font-size: 18px; + } +} +@media (min-width: 768px) { + .form-horizontal .form-group-sm .control-label { + padding-top: 6px; + font-size: 12px; + } +} +.btn { + display: inline-block; + margin-bottom: 0; + font-weight: normal; + text-align: center; + white-space: nowrap; + vertical-align: middle; + -ms-touch-action: manipulation; + touch-action: manipulation; + cursor: pointer; + background-image: none; + border: 1px solid transparent; + padding: 6px 12px; + font-size: 14px; + line-height: 1.42857143; + border-radius: 4px; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.btn:focus, +.btn:active:focus, +.btn.active:focus, +.btn.focus, +.btn:active.focus, +.btn.active.focus { + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} +.btn:hover, +.btn:focus, +.btn.focus { + color: #333; + text-decoration: none; +} +.btn:active, +.btn.active { + background-image: none; + outline: 0; + -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); +} +.btn.disabled, +.btn[disabled], +fieldset[disabled] .btn { + cursor: not-allowed; + filter: alpha(opacity=65); + opacity: 0.65; + -webkit-box-shadow: none; + box-shadow: none; +} +a.btn.disabled, +fieldset[disabled] a.btn { + pointer-events: none; +} +.btn-default { + color: #333; + background-color: #fff; + border-color: #ccc; +} +.btn-default:focus, +.btn-default.focus { + color: #333; + background-color: #e6e6e6; + border-color: #8c8c8c; +} +.btn-default:hover { + color: #333; + background-color: #e6e6e6; + border-color: #adadad; +} +.btn-default:active, +.btn-default.active, +.open > .dropdown-toggle.btn-default { + color: #333; + background-color: #e6e6e6; + background-image: none; + border-color: #adadad; +} +.btn-default:active:hover, +.btn-default.active:hover, +.open > .dropdown-toggle.btn-default:hover, +.btn-default:active:focus, +.btn-default.active:focus, +.open > .dropdown-toggle.btn-default:focus, +.btn-default:active.focus, +.btn-default.active.focus, +.open > .dropdown-toggle.btn-default.focus { + color: #333; + background-color: #d4d4d4; + border-color: #8c8c8c; +} +.btn-default.disabled:hover, +.btn-default[disabled]:hover, +fieldset[disabled] .btn-default:hover, +.btn-default.disabled:focus, +.btn-default[disabled]:focus, +fieldset[disabled] .btn-default:focus, +.btn-default.disabled.focus, +.btn-default[disabled].focus, +fieldset[disabled] .btn-default.focus { + background-color: #fff; + border-color: #ccc; +} +.btn-default .badge { + color: #fff; + background-color: #333; +} +.btn-primary { + color: #fff; + background-color: #337ab7; + border-color: #2e6da4; +} +.btn-primary:focus, +.btn-primary.focus { + color: #fff; + background-color: #286090; + border-color: #122b40; +} +.btn-primary:hover { + color: #fff; + background-color: #286090; + border-color: #204d74; +} +.btn-primary:active, +.btn-primary.active, +.open > .dropdown-toggle.btn-primary { + color: #fff; + background-color: #286090; + background-image: none; + border-color: #204d74; +} +.btn-primary:active:hover, +.btn-primary.active:hover, +.open > .dropdown-toggle.btn-primary:hover, +.btn-primary:active:focus, +.btn-primary.active:focus, +.open > .dropdown-toggle.btn-primary:focus, +.btn-primary:active.focus, +.btn-primary.active.focus, +.open > .dropdown-toggle.btn-primary.focus { + color: #fff; + background-color: #204d74; + border-color: #122b40; +} +.btn-primary.disabled:hover, +.btn-primary[disabled]:hover, +fieldset[disabled] .btn-primary:hover, +.btn-primary.disabled:focus, +.btn-primary[disabled]:focus, +fieldset[disabled] .btn-primary:focus, +.btn-primary.disabled.focus, +.btn-primary[disabled].focus, +fieldset[disabled] .btn-primary.focus { + background-color: #337ab7; + border-color: #2e6da4; +} +.btn-primary .badge { + color: #337ab7; + background-color: #fff; +} +.btn-success { + color: #fff; + background-color: #5cb85c; + border-color: #4cae4c; +} +.btn-success:focus, +.btn-success.focus { + color: #fff; + background-color: #449d44; + border-color: #255625; +} +.btn-success:hover { + color: #fff; + background-color: #449d44; + border-color: #398439; +} +.btn-success:active, +.btn-success.active, +.open > .dropdown-toggle.btn-success { + color: #fff; + background-color: #449d44; + background-image: none; + border-color: #398439; +} +.btn-success:active:hover, +.btn-success.active:hover, +.open > .dropdown-toggle.btn-success:hover, +.btn-success:active:focus, +.btn-success.active:focus, +.open > .dropdown-toggle.btn-success:focus, +.btn-success:active.focus, +.btn-success.active.focus, +.open > .dropdown-toggle.btn-success.focus { + color: #fff; + background-color: #398439; + border-color: #255625; +} +.btn-success.disabled:hover, +.btn-success[disabled]:hover, +fieldset[disabled] .btn-success:hover, +.btn-success.disabled:focus, +.btn-success[disabled]:focus, +fieldset[disabled] .btn-success:focus, +.btn-success.disabled.focus, +.btn-success[disabled].focus, +fieldset[disabled] .btn-success.focus { + background-color: #5cb85c; + border-color: #4cae4c; +} +.btn-success .badge { + color: #5cb85c; + background-color: #fff; +} +.btn-info { + color: #fff; + background-color: #5bc0de; + border-color: #46b8da; +} +.btn-info:focus, +.btn-info.focus { + color: #fff; + background-color: #31b0d5; + border-color: #1b6d85; +} +.btn-info:hover { + color: #fff; + background-color: #31b0d5; + border-color: #269abc; +} +.btn-info:active, +.btn-info.active, +.open > .dropdown-toggle.btn-info { + color: #fff; + background-color: #31b0d5; + background-image: none; + border-color: #269abc; +} +.btn-info:active:hover, +.btn-info.active:hover, +.open > .dropdown-toggle.btn-info:hover, +.btn-info:active:focus, +.btn-info.active:focus, +.open > .dropdown-toggle.btn-info:focus, +.btn-info:active.focus, +.btn-info.active.focus, +.open > .dropdown-toggle.btn-info.focus { + color: #fff; + background-color: #269abc; + border-color: #1b6d85; +} +.btn-info.disabled:hover, +.btn-info[disabled]:hover, +fieldset[disabled] .btn-info:hover, +.btn-info.disabled:focus, +.btn-info[disabled]:focus, +fieldset[disabled] .btn-info:focus, +.btn-info.disabled.focus, +.btn-info[disabled].focus, +fieldset[disabled] .btn-info.focus { + background-color: #5bc0de; + border-color: #46b8da; +} +.btn-info .badge { + color: #5bc0de; + background-color: #fff; +} +.btn-warning { + color: #fff; + background-color: #f0ad4e; + border-color: #eea236; +} +.btn-warning:focus, +.btn-warning.focus { + color: #fff; + background-color: #ec971f; + border-color: #985f0d; +} +.btn-warning:hover { + color: #fff; + background-color: #ec971f; + border-color: #d58512; +} +.btn-warning:active, +.btn-warning.active, +.open > .dropdown-toggle.btn-warning { + color: #fff; + background-color: #ec971f; + background-image: none; + border-color: #d58512; +} +.btn-warning:active:hover, +.btn-warning.active:hover, +.open > .dropdown-toggle.btn-warning:hover, +.btn-warning:active:focus, +.btn-warning.active:focus, +.open > .dropdown-toggle.btn-warning:focus, +.btn-warning:active.focus, +.btn-warning.active.focus, +.open > .dropdown-toggle.btn-warning.focus { + color: #fff; + background-color: #d58512; + border-color: #985f0d; +} +.btn-warning.disabled:hover, +.btn-warning[disabled]:hover, +fieldset[disabled] .btn-warning:hover, +.btn-warning.disabled:focus, +.btn-warning[disabled]:focus, +fieldset[disabled] .btn-warning:focus, +.btn-warning.disabled.focus, +.btn-warning[disabled].focus, +fieldset[disabled] .btn-warning.focus { + background-color: #f0ad4e; + border-color: #eea236; +} +.btn-warning .badge { + color: #f0ad4e; + background-color: #fff; +} +.btn-danger { + color: #fff; + background-color: #d9534f; + border-color: #d43f3a; +} +.btn-danger:focus, +.btn-danger.focus { + color: #fff; + background-color: #c9302c; + border-color: #761c19; +} +.btn-danger:hover { + color: #fff; + background-color: #c9302c; + border-color: #ac2925; +} +.btn-danger:active, +.btn-danger.active, +.open > .dropdown-toggle.btn-danger { + color: #fff; + background-color: #c9302c; + background-image: none; + border-color: #ac2925; +} +.btn-danger:active:hover, +.btn-danger.active:hover, +.open > .dropdown-toggle.btn-danger:hover, +.btn-danger:active:focus, +.btn-danger.active:focus, +.open > .dropdown-toggle.btn-danger:focus, +.btn-danger:active.focus, +.btn-danger.active.focus, +.open > .dropdown-toggle.btn-danger.focus { + color: #fff; + background-color: #ac2925; + border-color: #761c19; +} +.btn-danger.disabled:hover, +.btn-danger[disabled]:hover, +fieldset[disabled] .btn-danger:hover, +.btn-danger.disabled:focus, +.btn-danger[disabled]:focus, +fieldset[disabled] .btn-danger:focus, +.btn-danger.disabled.focus, +.btn-danger[disabled].focus, +fieldset[disabled] .btn-danger.focus { + background-color: #d9534f; + border-color: #d43f3a; +} +.btn-danger .badge { + color: #d9534f; + background-color: #fff; +} +.btn-link { + font-weight: 400; + color: #337ab7; + border-radius: 0; +} +.btn-link, +.btn-link:active, +.btn-link.active, +.btn-link[disabled], +fieldset[disabled] .btn-link { + background-color: transparent; + -webkit-box-shadow: none; + box-shadow: none; +} +.btn-link, +.btn-link:hover, +.btn-link:focus, +.btn-link:active { + border-color: transparent; +} +.btn-link:hover, +.btn-link:focus { + color: #23527c; + text-decoration: underline; + background-color: transparent; +} +.btn-link[disabled]:hover, +fieldset[disabled] .btn-link:hover, +.btn-link[disabled]:focus, +fieldset[disabled] .btn-link:focus { + color: #777777; + text-decoration: none; +} +.btn-lg, +.btn-group-lg > .btn { + padding: 10px 16px; + font-size: 18px; + line-height: 1.3333333; + border-radius: 6px; +} +.btn-sm, +.btn-group-sm > .btn { + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} +.btn-xs, +.btn-group-xs > .btn { + padding: 1px 5px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} +.btn-block { + display: block; + width: 100%; +} +.btn-block + .btn-block { + margin-top: 5px; +} +input[type="submit"].btn-block, +input[type="reset"].btn-block, +input[type="button"].btn-block { + width: 100%; +} +.fade { + opacity: 0; + -webkit-transition: opacity 0.15s linear; + -o-transition: opacity 0.15s linear; + transition: opacity 0.15s linear; +} +.fade.in { + opacity: 1; +} +.collapse { + display: none; +} +.collapse.in { + display: block; +} +tr.collapse.in { + display: table-row; +} +tbody.collapse.in { + display: table-row-group; +} +.collapsing { + position: relative; + height: 0; + overflow: hidden; + -webkit-transition-property: height, visibility; + -o-transition-property: height, visibility; + transition-property: height, visibility; + -webkit-transition-duration: 0.35s; + -o-transition-duration: 0.35s; + transition-duration: 0.35s; + -webkit-transition-timing-function: ease; + -o-transition-timing-function: ease; + transition-timing-function: ease; +} +.caret { + display: inline-block; + width: 0; + height: 0; + margin-left: 2px; + vertical-align: middle; + border-top: 4px dashed; + border-top: 4px solid \9; + border-right: 4px solid transparent; + border-left: 4px solid transparent; +} +.dropup, +.dropdown { + position: relative; +} +.dropdown-toggle:focus { + outline: 0; +} +.dropdown-menu { + position: absolute; + top: 100%; + left: 0; + z-index: 1000; + display: none; + float: left; + min-width: 160px; + padding: 5px 0; + margin: 2px 0 0; + font-size: 14px; + text-align: left; + list-style: none; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #ccc; + border: 1px solid rgba(0, 0, 0, 0.15); + border-radius: 4px; + -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); + box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); +} +.dropdown-menu.pull-right { + right: 0; + left: auto; +} +.dropdown-menu .divider { + height: 1px; + margin: 9px 0; + overflow: hidden; + background-color: #e5e5e5; +} +.dropdown-menu > li > a { + display: block; + padding: 3px 20px; + clear: both; + font-weight: 400; + line-height: 1.42857143; + color: #333333; + white-space: nowrap; +} +.dropdown-menu > li > a:hover, +.dropdown-menu > li > a:focus { + color: #262626; + text-decoration: none; + background-color: #f5f5f5; +} +.dropdown-menu > .active > a, +.dropdown-menu > .active > a:hover, +.dropdown-menu > .active > a:focus { + color: #fff; + text-decoration: none; + background-color: #337ab7; + outline: 0; +} +.dropdown-menu > .disabled > a, +.dropdown-menu > .disabled > a:hover, +.dropdown-menu > .disabled > a:focus { + color: #777777; +} +.dropdown-menu > .disabled > a:hover, +.dropdown-menu > .disabled > a:focus { + text-decoration: none; + cursor: not-allowed; + background-color: transparent; + background-image: none; + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); +} +.open > .dropdown-menu { + display: block; +} +.open > a { + outline: 0; +} +.dropdown-menu-right { + right: 0; + left: auto; +} +.dropdown-menu-left { + right: auto; + left: 0; +} +.dropdown-header { + display: block; + padding: 3px 20px; + font-size: 12px; + line-height: 1.42857143; + color: #777777; + white-space: nowrap; +} +.dropdown-backdrop { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 990; +} +.pull-right > .dropdown-menu { + right: 0; + left: auto; +} +.dropup .caret, +.navbar-fixed-bottom .dropdown .caret { + content: ""; + border-top: 0; + border-bottom: 4px dashed; + border-bottom: 4px solid \9; +} +.dropup .dropdown-menu, +.navbar-fixed-bottom .dropdown .dropdown-menu { + top: auto; + bottom: 100%; + margin-bottom: 2px; +} +@media (min-width: 768px) { + .navbar-right .dropdown-menu { + right: 0; + left: auto; + } + .navbar-right .dropdown-menu-left { + right: auto; + left: 0; + } +} +.btn-group, +.btn-group-vertical { + position: relative; + display: inline-block; + vertical-align: middle; +} +.btn-group > .btn, +.btn-group-vertical > .btn { + position: relative; + float: left; +} +.btn-group > .btn:hover, +.btn-group-vertical > .btn:hover, +.btn-group > .btn:focus, +.btn-group-vertical > .btn:focus, +.btn-group > .btn:active, +.btn-group-vertical > .btn:active, +.btn-group > .btn.active, +.btn-group-vertical > .btn.active { + z-index: 2; +} +.btn-group .btn + .btn, +.btn-group .btn + .btn-group, +.btn-group .btn-group + .btn, +.btn-group .btn-group + .btn-group { + margin-left: -1px; +} +.btn-toolbar { + margin-left: -5px; +} +.btn-toolbar .btn, +.btn-toolbar .btn-group, +.btn-toolbar .input-group { + float: left; +} +.btn-toolbar > .btn, +.btn-toolbar > .btn-group, +.btn-toolbar > .input-group { + margin-left: 5px; +} +.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { + border-radius: 0; +} +.btn-group > .btn:first-child { + margin-left: 0; +} +.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} +.btn-group > .btn:last-child:not(:first-child), +.btn-group > .dropdown-toggle:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} +.btn-group > .btn-group { + float: left; +} +.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { + border-radius: 0; +} +.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, +.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} +.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} +.btn-group .dropdown-toggle:active, +.btn-group.open .dropdown-toggle { + outline: 0; +} +.btn-group > .btn + .dropdown-toggle { + padding-right: 8px; + padding-left: 8px; +} +.btn-group > .btn-lg + .dropdown-toggle { + padding-right: 12px; + padding-left: 12px; +} +.btn-group.open .dropdown-toggle { + -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); +} +.btn-group.open .dropdown-toggle.btn-link { + -webkit-box-shadow: none; + box-shadow: none; +} +.btn .caret { + margin-left: 0; +} +.btn-lg .caret { + border-width: 5px 5px 0; + border-bottom-width: 0; +} +.dropup .btn-lg .caret { + border-width: 0 5px 5px; +} +.btn-group-vertical > .btn, +.btn-group-vertical > .btn-group, +.btn-group-vertical > .btn-group > .btn { + display: block; + float: none; + width: 100%; + max-width: 100%; +} +.btn-group-vertical > .btn-group > .btn { + float: none; +} +.btn-group-vertical > .btn + .btn, +.btn-group-vertical > .btn + .btn-group, +.btn-group-vertical > .btn-group + .btn, +.btn-group-vertical > .btn-group + .btn-group { + margin-top: -1px; + margin-left: 0; +} +.btn-group-vertical > .btn:not(:first-child):not(:last-child) { + border-radius: 0; +} +.btn-group-vertical > .btn:first-child:not(:last-child) { + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} +.btn-group-vertical > .btn:last-child:not(:first-child) { + border-top-left-radius: 0; + border-top-right-radius: 0; + border-bottom-right-radius: 4px; + border-bottom-left-radius: 4px; +} +.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { + border-radius: 0; +} +.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, +.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle { + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} +.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child { + border-top-left-radius: 0; + border-top-right-radius: 0; +} +.btn-group-justified { + display: table; + width: 100%; + table-layout: fixed; + border-collapse: separate; +} +.btn-group-justified > .btn, +.btn-group-justified > .btn-group { + display: table-cell; + float: none; + width: 1%; +} +.btn-group-justified > .btn-group .btn { + width: 100%; +} +.btn-group-justified > .btn-group .dropdown-menu { + left: auto; +} +[data-toggle="buttons"] > .btn input[type="radio"], +[data-toggle="buttons"] > .btn-group > .btn input[type="radio"], +[data-toggle="buttons"] > .btn input[type="checkbox"], +[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] { + position: absolute; + clip: rect(0, 0, 0, 0); + pointer-events: none; +} +.input-group { + position: relative; + display: table; + border-collapse: separate; +} +.input-group[class*="col-"] { + float: none; + padding-right: 0; + padding-left: 0; +} +.input-group .form-control { + position: relative; + z-index: 2; + float: left; + width: 100%; + margin-bottom: 0; +} +.input-group .form-control:focus { + z-index: 3; +} +.input-group-lg > .form-control, +.input-group-lg > .input-group-addon, +.input-group-lg > .input-group-btn > .btn { + height: 46px; + padding: 10px 16px; + font-size: 18px; + line-height: 1.3333333; + border-radius: 6px; +} +select.input-group-lg > .form-control, +select.input-group-lg > .input-group-addon, +select.input-group-lg > .input-group-btn > .btn { + height: 46px; + line-height: 46px; +} +textarea.input-group-lg > .form-control, +textarea.input-group-lg > .input-group-addon, +textarea.input-group-lg > .input-group-btn > .btn, +select[multiple].input-group-lg > .form-control, +select[multiple].input-group-lg > .input-group-addon, +select[multiple].input-group-lg > .input-group-btn > .btn { + height: auto; +} +.input-group-sm > .form-control, +.input-group-sm > .input-group-addon, +.input-group-sm > .input-group-btn > .btn { + height: 30px; + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} +select.input-group-sm > .form-control, +select.input-group-sm > .input-group-addon, +select.input-group-sm > .input-group-btn > .btn { + height: 30px; + line-height: 30px; +} +textarea.input-group-sm > .form-control, +textarea.input-group-sm > .input-group-addon, +textarea.input-group-sm > .input-group-btn > .btn, +select[multiple].input-group-sm > .form-control, +select[multiple].input-group-sm > .input-group-addon, +select[multiple].input-group-sm > .input-group-btn > .btn { + height: auto; +} +.input-group-addon, +.input-group-btn, +.input-group .form-control { + display: table-cell; +} +.input-group-addon:not(:first-child):not(:last-child), +.input-group-btn:not(:first-child):not(:last-child), +.input-group .form-control:not(:first-child):not(:last-child) { + border-radius: 0; +} +.input-group-addon, +.input-group-btn { + width: 1%; + white-space: nowrap; + vertical-align: middle; +} +.input-group-addon { + padding: 6px 12px; + font-size: 14px; + font-weight: 400; + line-height: 1; + color: #555555; + text-align: center; + background-color: #eeeeee; + border: 1px solid #ccc; + border-radius: 4px; +} +.input-group-addon.input-sm { + padding: 5px 10px; + font-size: 12px; + border-radius: 3px; +} +.input-group-addon.input-lg { + padding: 10px 16px; + font-size: 18px; + border-radius: 6px; +} +.input-group-addon input[type="radio"], +.input-group-addon input[type="checkbox"] { + margin-top: 0; +} +.input-group .form-control:first-child, +.input-group-addon:first-child, +.input-group-btn:first-child > .btn, +.input-group-btn:first-child > .btn-group > .btn, +.input-group-btn:first-child > .dropdown-toggle, +.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), +.input-group-btn:last-child > .btn-group:not(:last-child) > .btn { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} +.input-group-addon:first-child { + border-right: 0; +} +.input-group .form-control:last-child, +.input-group-addon:last-child, +.input-group-btn:last-child > .btn, +.input-group-btn:last-child > .btn-group > .btn, +.input-group-btn:last-child > .dropdown-toggle, +.input-group-btn:first-child > .btn:not(:first-child), +.input-group-btn:first-child > .btn-group:not(:first-child) > .btn { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} +.input-group-addon:last-child { + border-left: 0; +} +.input-group-btn { + position: relative; + font-size: 0; + white-space: nowrap; +} +.input-group-btn > .btn { + position: relative; +} +.input-group-btn > .btn + .btn { + margin-left: -1px; +} +.input-group-btn > .btn:hover, +.input-group-btn > .btn:focus, +.input-group-btn > .btn:active { + z-index: 2; +} +.input-group-btn:first-child > .btn, +.input-group-btn:first-child > .btn-group { + margin-right: -1px; +} +.input-group-btn:last-child > .btn, +.input-group-btn:last-child > .btn-group { + z-index: 2; + margin-left: -1px; +} +.nav { + padding-left: 0; + margin-bottom: 0; + list-style: none; +} +.nav > li { + position: relative; + display: block; +} +.nav > li > a { + position: relative; + display: block; + padding: 10px 15px; +} +.nav > li > a:hover, +.nav > li > a:focus { + text-decoration: none; + background-color: #eeeeee; +} +.nav > li.disabled > a { + color: #777777; +} +.nav > li.disabled > a:hover, +.nav > li.disabled > a:focus { + color: #777777; + text-decoration: none; + cursor: not-allowed; + background-color: transparent; +} +.nav .open > a, +.nav .open > a:hover, +.nav .open > a:focus { + background-color: #eeeeee; + border-color: #337ab7; +} +.nav .nav-divider { + height: 1px; + margin: 9px 0; + overflow: hidden; + background-color: #e5e5e5; +} +.nav > li > a > img { + max-width: none; +} +.nav-tabs { + border-bottom: 1px solid #ddd; +} +.nav-tabs > li { + float: left; + margin-bottom: -1px; +} +.nav-tabs > li > a { + margin-right: 2px; + line-height: 1.42857143; + border: 1px solid transparent; + border-radius: 4px 4px 0 0; +} +.nav-tabs > li > a:hover { + border-color: #eeeeee #eeeeee #ddd; +} +.nav-tabs > li.active > a, +.nav-tabs > li.active > a:hover, +.nav-tabs > li.active > a:focus { + color: #555555; + cursor: default; + background-color: #fff; + border: 1px solid #ddd; + border-bottom-color: transparent; +} +.nav-tabs.nav-justified { + width: 100%; + border-bottom: 0; +} +.nav-tabs.nav-justified > li { + float: none; +} +.nav-tabs.nav-justified > li > a { + margin-bottom: 5px; + text-align: center; +} +.nav-tabs.nav-justified > .dropdown .dropdown-menu { + top: auto; + left: auto; +} +@media (min-width: 768px) { + .nav-tabs.nav-justified > li { + display: table-cell; + width: 1%; + } + .nav-tabs.nav-justified > li > a { + margin-bottom: 0; + } +} +.nav-tabs.nav-justified > li > a { + margin-right: 0; + border-radius: 4px; +} +.nav-tabs.nav-justified > .active > a, +.nav-tabs.nav-justified > .active > a:hover, +.nav-tabs.nav-justified > .active > a:focus { + border: 1px solid #ddd; +} +@media (min-width: 768px) { + .nav-tabs.nav-justified > li > a { + border-bottom: 1px solid #ddd; + border-radius: 4px 4px 0 0; + } + .nav-tabs.nav-justified > .active > a, + .nav-tabs.nav-justified > .active > a:hover, + .nav-tabs.nav-justified > .active > a:focus { + border-bottom-color: #fff; + } +} +.nav-pills > li { + float: left; +} +.nav-pills > li > a { + border-radius: 4px; +} +.nav-pills > li + li { + margin-left: 2px; +} +.nav-pills > li.active > a, +.nav-pills > li.active > a:hover, +.nav-pills > li.active > a:focus { + color: #fff; + background-color: #337ab7; +} +.nav-stacked > li { + float: none; +} +.nav-stacked > li + li { + margin-top: 2px; + margin-left: 0; +} +.nav-justified { + width: 100%; +} +.nav-justified > li { + float: none; +} +.nav-justified > li > a { + margin-bottom: 5px; + text-align: center; +} +.nav-justified > .dropdown .dropdown-menu { + top: auto; + left: auto; +} +@media (min-width: 768px) { + .nav-justified > li { + display: table-cell; + width: 1%; + } + .nav-justified > li > a { + margin-bottom: 0; + } +} +.nav-tabs-justified { + border-bottom: 0; +} +.nav-tabs-justified > li > a { + margin-right: 0; + border-radius: 4px; +} +.nav-tabs-justified > .active > a, +.nav-tabs-justified > .active > a:hover, +.nav-tabs-justified > .active > a:focus { + border: 1px solid #ddd; +} +@media (min-width: 768px) { + .nav-tabs-justified > li > a { + border-bottom: 1px solid #ddd; + border-radius: 4px 4px 0 0; + } + .nav-tabs-justified > .active > a, + .nav-tabs-justified > .active > a:hover, + .nav-tabs-justified > .active > a:focus { + border-bottom-color: #fff; + } +} +.tab-content > .tab-pane { + display: none; +} +.tab-content > .active { + display: block; +} +.nav-tabs .dropdown-menu { + margin-top: -1px; + border-top-left-radius: 0; + border-top-right-radius: 0; +} +.navbar { + position: relative; + min-height: 50px; + margin-bottom: 20px; + border: 1px solid transparent; +} +@media (min-width: 768px) { + .navbar { + border-radius: 4px; + } +} +@media (min-width: 768px) { + .navbar-header { + float: left; + } +} +.navbar-collapse { + padding-right: 15px; + padding-left: 15px; + overflow-x: visible; + border-top: 1px solid transparent; + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); + box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); + -webkit-overflow-scrolling: touch; +} +.navbar-collapse.in { + overflow-y: auto; +} +@media (min-width: 768px) { + .navbar-collapse { + width: auto; + border-top: 0; + -webkit-box-shadow: none; + box-shadow: none; + } + .navbar-collapse.collapse { + display: block !important; + height: auto !important; + padding-bottom: 0; + overflow: visible !important; + } + .navbar-collapse.in { + overflow-y: visible; + } + .navbar-fixed-top .navbar-collapse, + .navbar-static-top .navbar-collapse, + .navbar-fixed-bottom .navbar-collapse { + padding-right: 0; + padding-left: 0; + } +} +.navbar-fixed-top, +.navbar-fixed-bottom { + position: fixed; + right: 0; + left: 0; + z-index: 1030; +} +.navbar-fixed-top .navbar-collapse, +.navbar-fixed-bottom .navbar-collapse { + max-height: 340px; +} +@media (max-device-width: 480px) and (orientation: landscape) { + .navbar-fixed-top .navbar-collapse, + .navbar-fixed-bottom .navbar-collapse { + max-height: 200px; + } +} +@media (min-width: 768px) { + .navbar-fixed-top, + .navbar-fixed-bottom { + border-radius: 0; + } +} +.navbar-fixed-top { + top: 0; + border-width: 0 0 1px; +} +.navbar-fixed-bottom { + bottom: 0; + margin-bottom: 0; + border-width: 1px 0 0; +} +.container > .navbar-header, +.container-fluid > .navbar-header, +.container > .navbar-collapse, +.container-fluid > .navbar-collapse { + margin-right: -15px; + margin-left: -15px; +} +@media (min-width: 768px) { + .container > .navbar-header, + .container-fluid > .navbar-header, + .container > .navbar-collapse, + .container-fluid > .navbar-collapse { + margin-right: 0; + margin-left: 0; + } +} +.navbar-static-top { + z-index: 1000; + border-width: 0 0 1px; +} +@media (min-width: 768px) { + .navbar-static-top { + border-radius: 0; + } +} +.navbar-brand { + float: left; + height: 50px; + padding: 15px 15px; + font-size: 18px; + line-height: 20px; +} +.navbar-brand:hover, +.navbar-brand:focus { + text-decoration: none; +} +.navbar-brand > img { + display: block; +} +@media (min-width: 768px) { + .navbar > .container .navbar-brand, + .navbar > .container-fluid .navbar-brand { + margin-left: -15px; + } +} +.navbar-toggle { + position: relative; + float: right; + padding: 9px 10px; + margin-right: 15px; + margin-top: 8px; + margin-bottom: 8px; + background-color: transparent; + background-image: none; + border: 1px solid transparent; + border-radius: 4px; +} +.navbar-toggle:focus { + outline: 0; +} +.navbar-toggle .icon-bar { + display: block; + width: 22px; + height: 2px; + border-radius: 1px; +} +.navbar-toggle .icon-bar + .icon-bar { + margin-top: 4px; +} +@media (min-width: 768px) { + .navbar-toggle { + display: none; + } +} +.navbar-nav { + margin: 7.5px -15px; +} +.navbar-nav > li > a { + padding-top: 10px; + padding-bottom: 10px; + line-height: 20px; +} +@media (max-width: 767px) { + .navbar-nav .open .dropdown-menu { + position: static; + float: none; + width: auto; + margin-top: 0; + background-color: transparent; + border: 0; + -webkit-box-shadow: none; + box-shadow: none; + } + .navbar-nav .open .dropdown-menu > li > a, + .navbar-nav .open .dropdown-menu .dropdown-header { + padding: 5px 15px 5px 25px; + } + .navbar-nav .open .dropdown-menu > li > a { + line-height: 20px; + } + .navbar-nav .open .dropdown-menu > li > a:hover, + .navbar-nav .open .dropdown-menu > li > a:focus { + background-image: none; + } +} +@media (min-width: 768px) { + .navbar-nav { + float: left; + margin: 0; + } + .navbar-nav > li { + float: left; + } + .navbar-nav > li > a { + padding-top: 15px; + padding-bottom: 15px; + } +} +.navbar-form { + padding: 10px 15px; + margin-right: -15px; + margin-left: -15px; + border-top: 1px solid transparent; + border-bottom: 1px solid transparent; + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); + box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); + margin-top: 8px; + margin-bottom: 8px; +} +@media (min-width: 768px) { + .navbar-form .form-group { + display: inline-block; + margin-bottom: 0; + vertical-align: middle; + } + .navbar-form .form-control { + display: inline-block; + width: auto; + vertical-align: middle; + } + .navbar-form .form-control-static { + display: inline-block; + } + .navbar-form .input-group { + display: inline-table; + vertical-align: middle; + } + .navbar-form .input-group .input-group-addon, + .navbar-form .input-group .input-group-btn, + .navbar-form .input-group .form-control { + width: auto; + } + .navbar-form .input-group > .form-control { + width: 100%; + } + .navbar-form .control-label { + margin-bottom: 0; + vertical-align: middle; + } + .navbar-form .radio, + .navbar-form .checkbox { + display: inline-block; + margin-top: 0; + margin-bottom: 0; + vertical-align: middle; + } + .navbar-form .radio label, + .navbar-form .checkbox label { + padding-left: 0; + } + .navbar-form .radio input[type="radio"], + .navbar-form .checkbox input[type="checkbox"] { + position: relative; + margin-left: 0; + } + .navbar-form .has-feedback .form-control-feedback { + top: 0; + } +} +@media (max-width: 767px) { + .navbar-form .form-group { + margin-bottom: 5px; + } + .navbar-form .form-group:last-child { + margin-bottom: 0; + } +} +@media (min-width: 768px) { + .navbar-form { + width: auto; + padding-top: 0; + padding-bottom: 0; + margin-right: 0; + margin-left: 0; + border: 0; + -webkit-box-shadow: none; + box-shadow: none; + } +} +.navbar-nav > li > .dropdown-menu { + margin-top: 0; + border-top-left-radius: 0; + border-top-right-radius: 0; +} +.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu { + margin-bottom: 0; + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} +.navbar-btn { + margin-top: 8px; + margin-bottom: 8px; +} +.navbar-btn.btn-sm { + margin-top: 10px; + margin-bottom: 10px; +} +.navbar-btn.btn-xs { + margin-top: 14px; + margin-bottom: 14px; +} +.navbar-text { + margin-top: 15px; + margin-bottom: 15px; +} +@media (min-width: 768px) { + .navbar-text { + float: left; + margin-right: 15px; + margin-left: 15px; + } +} +@media (min-width: 768px) { + .navbar-left { + float: left !important; + } + .navbar-right { + float: right !important; + margin-right: -15px; + } + .navbar-right ~ .navbar-right { + margin-right: 0; + } +} +.navbar-default { + background-color: #f8f8f8; + border-color: #e7e7e7; +} +.navbar-default .navbar-brand { + color: #777; +} +.navbar-default .navbar-brand:hover, +.navbar-default .navbar-brand:focus { + color: #5e5e5e; + background-color: transparent; +} +.navbar-default .navbar-text { + color: #777; +} +.navbar-default .navbar-nav > li > a { + color: #777; +} +.navbar-default .navbar-nav > li > a:hover, +.navbar-default .navbar-nav > li > a:focus { + color: #333; + background-color: transparent; +} +.navbar-default .navbar-nav > .active > a, +.navbar-default .navbar-nav > .active > a:hover, +.navbar-default .navbar-nav > .active > a:focus { + color: #555; + background-color: #e7e7e7; +} +.navbar-default .navbar-nav > .disabled > a, +.navbar-default .navbar-nav > .disabled > a:hover, +.navbar-default .navbar-nav > .disabled > a:focus { + color: #ccc; + background-color: transparent; +} +.navbar-default .navbar-nav > .open > a, +.navbar-default .navbar-nav > .open > a:hover, +.navbar-default .navbar-nav > .open > a:focus { + color: #555; + background-color: #e7e7e7; +} +@media (max-width: 767px) { + .navbar-default .navbar-nav .open .dropdown-menu > li > a { + color: #777; + } + .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, + .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { + color: #333; + background-color: transparent; + } + .navbar-default .navbar-nav .open .dropdown-menu > .active > a, + .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, + .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { + color: #555; + background-color: #e7e7e7; + } + .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, + .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, + .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus { + color: #ccc; + background-color: transparent; + } +} +.navbar-default .navbar-toggle { + border-color: #ddd; +} +.navbar-default .navbar-toggle:hover, +.navbar-default .navbar-toggle:focus { + background-color: #ddd; +} +.navbar-default .navbar-toggle .icon-bar { + background-color: #888; +} +.navbar-default .navbar-collapse, +.navbar-default .navbar-form { + border-color: #e7e7e7; +} +.navbar-default .navbar-link { + color: #777; +} +.navbar-default .navbar-link:hover { + color: #333; +} +.navbar-default .btn-link { + color: #777; +} +.navbar-default .btn-link:hover, +.navbar-default .btn-link:focus { + color: #333; +} +.navbar-default .btn-link[disabled]:hover, +fieldset[disabled] .navbar-default .btn-link:hover, +.navbar-default .btn-link[disabled]:focus, +fieldset[disabled] .navbar-default .btn-link:focus { + color: #ccc; +} +.navbar-inverse { + background-color: #222; + border-color: #080808; +} +.navbar-inverse .navbar-brand { + color: #9d9d9d; +} +.navbar-inverse .navbar-brand:hover, +.navbar-inverse .navbar-brand:focus { + color: #fff; + background-color: transparent; +} +.navbar-inverse .navbar-text { + color: #9d9d9d; +} +.navbar-inverse .navbar-nav > li > a { + color: #9d9d9d; +} +.navbar-inverse .navbar-nav > li > a:hover, +.navbar-inverse .navbar-nav > li > a:focus { + color: #fff; + background-color: transparent; +} +.navbar-inverse .navbar-nav > .active > a, +.navbar-inverse .navbar-nav > .active > a:hover, +.navbar-inverse .navbar-nav > .active > a:focus { + color: #fff; + background-color: #080808; +} +.navbar-inverse .navbar-nav > .disabled > a, +.navbar-inverse .navbar-nav > .disabled > a:hover, +.navbar-inverse .navbar-nav > .disabled > a:focus { + color: #444; + background-color: transparent; +} +.navbar-inverse .navbar-nav > .open > a, +.navbar-inverse .navbar-nav > .open > a:hover, +.navbar-inverse .navbar-nav > .open > a:focus { + color: #fff; + background-color: #080808; +} +@media (max-width: 767px) { + .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { + border-color: #080808; + } + .navbar-inverse .navbar-nav .open .dropdown-menu .divider { + background-color: #080808; + } + .navbar-inverse .navbar-nav .open .dropdown-menu > li > a { + color: #9d9d9d; + } + .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, + .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus { + color: #fff; + background-color: transparent; + } + .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, + .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, + .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus { + color: #fff; + background-color: #080808; + } + .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, + .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, + .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus { + color: #444; + background-color: transparent; + } +} +.navbar-inverse .navbar-toggle { + border-color: #333; +} +.navbar-inverse .navbar-toggle:hover, +.navbar-inverse .navbar-toggle:focus { + background-color: #333; +} +.navbar-inverse .navbar-toggle .icon-bar { + background-color: #fff; +} +.navbar-inverse .navbar-collapse, +.navbar-inverse .navbar-form { + border-color: #101010; +} +.navbar-inverse .navbar-link { + color: #9d9d9d; +} +.navbar-inverse .navbar-link:hover { + color: #fff; +} +.navbar-inverse .btn-link { + color: #9d9d9d; +} +.navbar-inverse .btn-link:hover, +.navbar-inverse .btn-link:focus { + color: #fff; +} +.navbar-inverse .btn-link[disabled]:hover, +fieldset[disabled] .navbar-inverse .btn-link:hover, +.navbar-inverse .btn-link[disabled]:focus, +fieldset[disabled] .navbar-inverse .btn-link:focus { + color: #444; +} +.breadcrumb { + padding: 8px 15px; + margin-bottom: 20px; + list-style: none; + background-color: #f5f5f5; + border-radius: 4px; +} +.breadcrumb > li { + display: inline-block; +} +.breadcrumb > li + li:before { + padding: 0 5px; + color: #ccc; + content: "/\00a0"; +} +.breadcrumb > .active { + color: #777777; +} +.pagination { + display: inline-block; + padding-left: 0; + margin: 20px 0; + border-radius: 4px; +} +.pagination > li { + display: inline; +} +.pagination > li > a, +.pagination > li > span { + position: relative; + float: left; + padding: 6px 12px; + margin-left: -1px; + line-height: 1.42857143; + color: #337ab7; + text-decoration: none; + background-color: #fff; + border: 1px solid #ddd; +} +.pagination > li > a:hover, +.pagination > li > span:hover, +.pagination > li > a:focus, +.pagination > li > span:focus { + z-index: 2; + color: #23527c; + background-color: #eeeeee; + border-color: #ddd; +} +.pagination > li:first-child > a, +.pagination > li:first-child > span { + margin-left: 0; + border-top-left-radius: 4px; + border-bottom-left-radius: 4px; +} +.pagination > li:last-child > a, +.pagination > li:last-child > span { + border-top-right-radius: 4px; + border-bottom-right-radius: 4px; +} +.pagination > .active > a, +.pagination > .active > span, +.pagination > .active > a:hover, +.pagination > .active > span:hover, +.pagination > .active > a:focus, +.pagination > .active > span:focus { + z-index: 3; + color: #fff; + cursor: default; + background-color: #337ab7; + border-color: #337ab7; +} +.pagination > .disabled > span, +.pagination > .disabled > span:hover, +.pagination > .disabled > span:focus, +.pagination > .disabled > a, +.pagination > .disabled > a:hover, +.pagination > .disabled > a:focus { + color: #777777; + cursor: not-allowed; + background-color: #fff; + border-color: #ddd; +} +.pagination-lg > li > a, +.pagination-lg > li > span { + padding: 10px 16px; + font-size: 18px; + line-height: 1.3333333; +} +.pagination-lg > li:first-child > a, +.pagination-lg > li:first-child > span { + border-top-left-radius: 6px; + border-bottom-left-radius: 6px; +} +.pagination-lg > li:last-child > a, +.pagination-lg > li:last-child > span { + border-top-right-radius: 6px; + border-bottom-right-radius: 6px; +} +.pagination-sm > li > a, +.pagination-sm > li > span { + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; +} +.pagination-sm > li:first-child > a, +.pagination-sm > li:first-child > span { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; +} +.pagination-sm > li:last-child > a, +.pagination-sm > li:last-child > span { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; +} +.pager { + padding-left: 0; + margin: 20px 0; + text-align: center; + list-style: none; +} +.pager li { + display: inline; +} +.pager li > a, +.pager li > span { + display: inline-block; + padding: 5px 14px; + background-color: #fff; + border: 1px solid #ddd; + border-radius: 15px; +} +.pager li > a:hover, +.pager li > a:focus { + text-decoration: none; + background-color: #eeeeee; +} +.pager .next > a, +.pager .next > span { + float: right; +} +.pager .previous > a, +.pager .previous > span { + float: left; +} +.pager .disabled > a, +.pager .disabled > a:hover, +.pager .disabled > a:focus, +.pager .disabled > span { + color: #777777; + cursor: not-allowed; + background-color: #fff; +} +.label { + display: inline; + padding: 0.2em 0.6em 0.3em; + font-size: 75%; + font-weight: 700; + line-height: 1; + color: #fff; + text-align: center; + white-space: nowrap; + vertical-align: baseline; + border-radius: 0.25em; +} +a.label:hover, +a.label:focus { + color: #fff; + text-decoration: none; + cursor: pointer; +} +.label:empty { + display: none; +} +.btn .label { + position: relative; + top: -1px; +} +.label-default { + background-color: #777777; +} +.label-default[href]:hover, +.label-default[href]:focus { + background-color: #5e5e5e; +} +.label-primary { + background-color: #337ab7; +} +.label-primary[href]:hover, +.label-primary[href]:focus { + background-color: #286090; +} +.label-success { + background-color: #5cb85c; +} +.label-success[href]:hover, +.label-success[href]:focus { + background-color: #449d44; +} +.label-info { + background-color: #5bc0de; +} +.label-info[href]:hover, +.label-info[href]:focus { + background-color: #31b0d5; +} +.label-warning { + background-color: #f0ad4e; +} +.label-warning[href]:hover, +.label-warning[href]:focus { + background-color: #ec971f; +} +.label-danger { + background-color: #d9534f; +} +.label-danger[href]:hover, +.label-danger[href]:focus { + background-color: #c9302c; +} +.badge { + display: inline-block; + min-width: 10px; + padding: 3px 7px; + font-size: 12px; + font-weight: bold; + line-height: 1; + color: #fff; + text-align: center; + white-space: nowrap; + vertical-align: middle; + background-color: #777777; + border-radius: 10px; +} +.badge:empty { + display: none; +} +.btn .badge { + position: relative; + top: -1px; +} +.btn-xs .badge, +.btn-group-xs > .btn .badge { + top: 0; + padding: 1px 5px; +} +a.badge:hover, +a.badge:focus { + color: #fff; + text-decoration: none; + cursor: pointer; +} +.list-group-item.active > .badge, +.nav-pills > .active > a > .badge { + color: #337ab7; + background-color: #fff; +} +.list-group-item > .badge { + float: right; +} +.list-group-item > .badge + .badge { + margin-right: 5px; +} +.nav-pills > li > a > .badge { + margin-left: 3px; +} +.jumbotron { + padding-top: 30px; + padding-bottom: 30px; + margin-bottom: 30px; + color: inherit; + background-color: #eeeeee; +} +.jumbotron h1, +.jumbotron .h1 { + color: inherit; +} +.jumbotron p { + margin-bottom: 15px; + font-size: 21px; + font-weight: 200; +} +.jumbotron > hr { + border-top-color: #d5d5d5; +} +.container .jumbotron, +.container-fluid .jumbotron { + padding-right: 15px; + padding-left: 15px; + border-radius: 6px; +} +.jumbotron .container { + max-width: 100%; +} +@media screen and (min-width: 768px) { + .jumbotron { + padding-top: 48px; + padding-bottom: 48px; + } + .container .jumbotron, + .container-fluid .jumbotron { + padding-right: 60px; + padding-left: 60px; + } + .jumbotron h1, + .jumbotron .h1 { + font-size: 63px; + } +} +.thumbnail { + display: block; + padding: 4px; + margin-bottom: 20px; + line-height: 1.42857143; + background-color: #fff; + border: 1px solid #ddd; + border-radius: 4px; + -webkit-transition: border 0.2s ease-in-out; + -o-transition: border 0.2s ease-in-out; + transition: border 0.2s ease-in-out; +} +.thumbnail > img, +.thumbnail a > img { + margin-right: auto; + margin-left: auto; +} +a.thumbnail:hover, +a.thumbnail:focus, +a.thumbnail.active { + border-color: #337ab7; +} +.thumbnail .caption { + padding: 9px; + color: #333333; +} +.alert { + padding: 15px; + margin-bottom: 20px; + border: 1px solid transparent; + border-radius: 4px; +} +.alert h4 { + margin-top: 0; + color: inherit; +} +.alert .alert-link { + font-weight: bold; +} +.alert > p, +.alert > ul { + margin-bottom: 0; +} +.alert > p + p { + margin-top: 5px; +} +.alert-dismissable, +.alert-dismissible { + padding-right: 35px; +} +.alert-dismissable .close, +.alert-dismissible .close { + position: relative; + top: -2px; + right: -21px; + color: inherit; +} +.alert-success { + color: #3c763d; + background-color: #dff0d8; + border-color: #d6e9c6; +} +.alert-success hr { + border-top-color: #c9e2b3; +} +.alert-success .alert-link { + color: #2b542c; +} +.alert-info { + color: #31708f; + background-color: #d9edf7; + border-color: #bce8f1; +} +.alert-info hr { + border-top-color: #a6e1ec; +} +.alert-info .alert-link { + color: #245269; +} +.alert-warning { + color: #8a6d3b; + background-color: #fcf8e3; + border-color: #faebcc; +} +.alert-warning hr { + border-top-color: #f7e1b5; +} +.alert-warning .alert-link { + color: #66512c; +} +.alert-danger { + color: #a94442; + background-color: #f2dede; + border-color: #ebccd1; +} +.alert-danger hr { + border-top-color: #e4b9c0; +} +.alert-danger .alert-link { + color: #843534; +} +@-webkit-keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} +@-o-keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} +@keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} +.progress { + height: 20px; + margin-bottom: 20px; + overflow: hidden; + background-color: #f5f5f5; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); + box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); +} +.progress-bar { + float: left; + width: 0%; + height: 100%; + font-size: 12px; + line-height: 20px; + color: #fff; + text-align: center; + background-color: #337ab7; + -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); + box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); + -webkit-transition: width 0.6s ease; + -o-transition: width 0.6s ease; + transition: width 0.6s ease; +} +.progress-striped .progress-bar, +.progress-bar-striped { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + -webkit-background-size: 40px 40px; + background-size: 40px 40px; +} +.progress.active .progress-bar, +.progress-bar.active { + -webkit-animation: progress-bar-stripes 2s linear infinite; + -o-animation: progress-bar-stripes 2s linear infinite; + animation: progress-bar-stripes 2s linear infinite; +} +.progress-bar-success { + background-color: #5cb85c; +} +.progress-striped .progress-bar-success { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} +.progress-bar-info { + background-color: #5bc0de; +} +.progress-striped .progress-bar-info { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} +.progress-bar-warning { + background-color: #f0ad4e; +} +.progress-striped .progress-bar-warning { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} +.progress-bar-danger { + background-color: #d9534f; +} +.progress-striped .progress-bar-danger { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} +.media { + margin-top: 15px; +} +.media:first-child { + margin-top: 0; +} +.media, +.media-body { + overflow: hidden; + zoom: 1; +} +.media-body { + width: 10000px; +} +.media-object { + display: block; +} +.media-object.img-thumbnail { + max-width: none; +} +.media-right, +.media > .pull-right { + padding-left: 10px; +} +.media-left, +.media > .pull-left { + padding-right: 10px; +} +.media-left, +.media-right, +.media-body { + display: table-cell; + vertical-align: top; +} +.media-middle { + vertical-align: middle; +} +.media-bottom { + vertical-align: bottom; +} +.media-heading { + margin-top: 0; + margin-bottom: 5px; +} +.media-list { + padding-left: 0; + list-style: none; +} +.list-group { + padding-left: 0; + margin-bottom: 20px; +} +.list-group-item { + position: relative; + display: block; + padding: 10px 15px; + margin-bottom: -1px; + background-color: #fff; + border: 1px solid #ddd; +} +.list-group-item:first-child { + border-top-left-radius: 4px; + border-top-right-radius: 4px; +} +.list-group-item:last-child { + margin-bottom: 0; + border-bottom-right-radius: 4px; + border-bottom-left-radius: 4px; +} +.list-group-item.disabled, +.list-group-item.disabled:hover, +.list-group-item.disabled:focus { + color: #777777; + cursor: not-allowed; + background-color: #eeeeee; +} +.list-group-item.disabled .list-group-item-heading, +.list-group-item.disabled:hover .list-group-item-heading, +.list-group-item.disabled:focus .list-group-item-heading { + color: inherit; +} +.list-group-item.disabled .list-group-item-text, +.list-group-item.disabled:hover .list-group-item-text, +.list-group-item.disabled:focus .list-group-item-text { + color: #777777; +} +.list-group-item.active, +.list-group-item.active:hover, +.list-group-item.active:focus { + z-index: 2; + color: #fff; + background-color: #337ab7; + border-color: #337ab7; +} +.list-group-item.active .list-group-item-heading, +.list-group-item.active:hover .list-group-item-heading, +.list-group-item.active:focus .list-group-item-heading, +.list-group-item.active .list-group-item-heading > small, +.list-group-item.active:hover .list-group-item-heading > small, +.list-group-item.active:focus .list-group-item-heading > small, +.list-group-item.active .list-group-item-heading > .small, +.list-group-item.active:hover .list-group-item-heading > .small, +.list-group-item.active:focus .list-group-item-heading > .small { + color: inherit; +} +.list-group-item.active .list-group-item-text, +.list-group-item.active:hover .list-group-item-text, +.list-group-item.active:focus .list-group-item-text { + color: #c7ddef; +} +a.list-group-item, +button.list-group-item { + color: #555; +} +a.list-group-item .list-group-item-heading, +button.list-group-item .list-group-item-heading { + color: #333; +} +a.list-group-item:hover, +button.list-group-item:hover, +a.list-group-item:focus, +button.list-group-item:focus { + color: #555; + text-decoration: none; + background-color: #f5f5f5; +} +button.list-group-item { + width: 100%; + text-align: left; +} +.list-group-item-success { + color: #3c763d; + background-color: #dff0d8; +} +a.list-group-item-success, +button.list-group-item-success { + color: #3c763d; +} +a.list-group-item-success .list-group-item-heading, +button.list-group-item-success .list-group-item-heading { + color: inherit; +} +a.list-group-item-success:hover, +button.list-group-item-success:hover, +a.list-group-item-success:focus, +button.list-group-item-success:focus { + color: #3c763d; + background-color: #d0e9c6; +} +a.list-group-item-success.active, +button.list-group-item-success.active, +a.list-group-item-success.active:hover, +button.list-group-item-success.active:hover, +a.list-group-item-success.active:focus, +button.list-group-item-success.active:focus { + color: #fff; + background-color: #3c763d; + border-color: #3c763d; +} +.list-group-item-info { + color: #31708f; + background-color: #d9edf7; +} +a.list-group-item-info, +button.list-group-item-info { + color: #31708f; +} +a.list-group-item-info .list-group-item-heading, +button.list-group-item-info .list-group-item-heading { + color: inherit; +} +a.list-group-item-info:hover, +button.list-group-item-info:hover, +a.list-group-item-info:focus, +button.list-group-item-info:focus { + color: #31708f; + background-color: #c4e3f3; +} +a.list-group-item-info.active, +button.list-group-item-info.active, +a.list-group-item-info.active:hover, +button.list-group-item-info.active:hover, +a.list-group-item-info.active:focus, +button.list-group-item-info.active:focus { + color: #fff; + background-color: #31708f; + border-color: #31708f; +} +.list-group-item-warning { + color: #8a6d3b; + background-color: #fcf8e3; +} +a.list-group-item-warning, +button.list-group-item-warning { + color: #8a6d3b; +} +a.list-group-item-warning .list-group-item-heading, +button.list-group-item-warning .list-group-item-heading { + color: inherit; +} +a.list-group-item-warning:hover, +button.list-group-item-warning:hover, +a.list-group-item-warning:focus, +button.list-group-item-warning:focus { + color: #8a6d3b; + background-color: #faf2cc; +} +a.list-group-item-warning.active, +button.list-group-item-warning.active, +a.list-group-item-warning.active:hover, +button.list-group-item-warning.active:hover, +a.list-group-item-warning.active:focus, +button.list-group-item-warning.active:focus { + color: #fff; + background-color: #8a6d3b; + border-color: #8a6d3b; +} +.list-group-item-danger { + color: #a94442; + background-color: #f2dede; +} +a.list-group-item-danger, +button.list-group-item-danger { + color: #a94442; +} +a.list-group-item-danger .list-group-item-heading, +button.list-group-item-danger .list-group-item-heading { + color: inherit; +} +a.list-group-item-danger:hover, +button.list-group-item-danger:hover, +a.list-group-item-danger:focus, +button.list-group-item-danger:focus { + color: #a94442; + background-color: #ebcccc; +} +a.list-group-item-danger.active, +button.list-group-item-danger.active, +a.list-group-item-danger.active:hover, +button.list-group-item-danger.active:hover, +a.list-group-item-danger.active:focus, +button.list-group-item-danger.active:focus { + color: #fff; + background-color: #a94442; + border-color: #a94442; +} +.list-group-item-heading { + margin-top: 0; + margin-bottom: 5px; +} +.list-group-item-text { + margin-bottom: 0; + line-height: 1.3; +} +.panel { + margin-bottom: 20px; + background-color: #fff; + border: 1px solid transparent; + border-radius: 4px; + -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); +} +.panel-body { + padding: 15px; +} +.panel-heading { + padding: 10px 15px; + border-bottom: 1px solid transparent; + border-top-left-radius: 3px; + border-top-right-radius: 3px; +} +.panel-heading > .dropdown .dropdown-toggle { + color: inherit; +} +.panel-title { + margin-top: 0; + margin-bottom: 0; + font-size: 16px; + color: inherit; +} +.panel-title > a, +.panel-title > small, +.panel-title > .small, +.panel-title > small > a, +.panel-title > .small > a { + color: inherit; +} +.panel-footer { + padding: 10px 15px; + background-color: #f5f5f5; + border-top: 1px solid #ddd; + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; +} +.panel > .list-group, +.panel > .panel-collapse > .list-group { + margin-bottom: 0; +} +.panel > .list-group .list-group-item, +.panel > .panel-collapse > .list-group .list-group-item { + border-width: 1px 0; + border-radius: 0; +} +.panel > .list-group:first-child .list-group-item:first-child, +.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child { + border-top: 0; + border-top-left-radius: 3px; + border-top-right-radius: 3px; +} +.panel > .list-group:last-child .list-group-item:last-child, +.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child { + border-bottom: 0; + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; +} +.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child { + border-top-left-radius: 0; + border-top-right-radius: 0; +} +.panel-heading + .list-group .list-group-item:first-child { + border-top-width: 0; +} +.list-group + .panel-footer { + border-top-width: 0; +} +.panel > .table, +.panel > .table-responsive > .table, +.panel > .panel-collapse > .table { + margin-bottom: 0; +} +.panel > .table caption, +.panel > .table-responsive > .table caption, +.panel > .panel-collapse > .table caption { + padding-right: 15px; + padding-left: 15px; +} +.panel > .table:first-child, +.panel > .table-responsive:first-child > .table:first-child { + border-top-left-radius: 3px; + border-top-right-radius: 3px; +} +.panel > .table:first-child > thead:first-child > tr:first-child, +.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, +.panel > .table:first-child > tbody:first-child > tr:first-child, +.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child { + border-top-left-radius: 3px; + border-top-right-radius: 3px; +} +.panel > .table:first-child > thead:first-child > tr:first-child td:first-child, +.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, +.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, +.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, +.panel > .table:first-child > thead:first-child > tr:first-child th:first-child, +.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, +.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, +.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { + border-top-left-radius: 3px; +} +.panel > .table:first-child > thead:first-child > tr:first-child td:last-child, +.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, +.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, +.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, +.panel > .table:first-child > thead:first-child > tr:first-child th:last-child, +.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, +.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, +.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { + border-top-right-radius: 3px; +} +.panel > .table:last-child, +.panel > .table-responsive:last-child > .table:last-child { + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; +} +.panel > .table:last-child > tbody:last-child > tr:last-child, +.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, +.panel > .table:last-child > tfoot:last-child > tr:last-child, +.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child { + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; +} +.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, +.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, +.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, +.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, +.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, +.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, +.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, +.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { + border-bottom-left-radius: 3px; +} +.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, +.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, +.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, +.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, +.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, +.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, +.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, +.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { + border-bottom-right-radius: 3px; +} +.panel > .panel-body + .table, +.panel > .panel-body + .table-responsive, +.panel > .table + .panel-body, +.panel > .table-responsive + .panel-body { + border-top: 1px solid #ddd; +} +.panel > .table > tbody:first-child > tr:first-child th, +.panel > .table > tbody:first-child > tr:first-child td { + border-top: 0; +} +.panel > .table-bordered, +.panel > .table-responsive > .table-bordered { + border: 0; +} +.panel > .table-bordered > thead > tr > th:first-child, +.panel > .table-responsive > .table-bordered > thead > tr > th:first-child, +.panel > .table-bordered > tbody > tr > th:first-child, +.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, +.panel > .table-bordered > tfoot > tr > th:first-child, +.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, +.panel > .table-bordered > thead > tr > td:first-child, +.panel > .table-responsive > .table-bordered > thead > tr > td:first-child, +.panel > .table-bordered > tbody > tr > td:first-child, +.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, +.panel > .table-bordered > tfoot > tr > td:first-child, +.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { + border-left: 0; +} +.panel > .table-bordered > thead > tr > th:last-child, +.panel > .table-responsive > .table-bordered > thead > tr > th:last-child, +.panel > .table-bordered > tbody > tr > th:last-child, +.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, +.panel > .table-bordered > tfoot > tr > th:last-child, +.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, +.panel > .table-bordered > thead > tr > td:last-child, +.panel > .table-responsive > .table-bordered > thead > tr > td:last-child, +.panel > .table-bordered > tbody > tr > td:last-child, +.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, +.panel > .table-bordered > tfoot > tr > td:last-child, +.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { + border-right: 0; +} +.panel > .table-bordered > thead > tr:first-child > td, +.panel > .table-responsive > .table-bordered > thead > tr:first-child > td, +.panel > .table-bordered > tbody > tr:first-child > td, +.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, +.panel > .table-bordered > thead > tr:first-child > th, +.panel > .table-responsive > .table-bordered > thead > tr:first-child > th, +.panel > .table-bordered > tbody > tr:first-child > th, +.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th { + border-bottom: 0; +} +.panel > .table-bordered > tbody > tr:last-child > td, +.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, +.panel > .table-bordered > tfoot > tr:last-child > td, +.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, +.panel > .table-bordered > tbody > tr:last-child > th, +.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, +.panel > .table-bordered > tfoot > tr:last-child > th, +.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th { + border-bottom: 0; +} +.panel > .table-responsive { + margin-bottom: 0; + border: 0; +} +.panel-group { + margin-bottom: 20px; +} +.panel-group .panel { + margin-bottom: 0; + border-radius: 4px; +} +.panel-group .panel + .panel { + margin-top: 5px; +} +.panel-group .panel-heading { + border-bottom: 0; +} +.panel-group .panel-heading + .panel-collapse > .panel-body, +.panel-group .panel-heading + .panel-collapse > .list-group { + border-top: 1px solid #ddd; +} +.panel-group .panel-footer { + border-top: 0; +} +.panel-group .panel-footer + .panel-collapse .panel-body { + border-bottom: 1px solid #ddd; +} +.panel-default { + border-color: #ddd; +} +.panel-default > .panel-heading { + color: #333333; + background-color: #f5f5f5; + border-color: #ddd; +} +.panel-default > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #ddd; +} +.panel-default > .panel-heading .badge { + color: #f5f5f5; + background-color: #333333; +} +.panel-default > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #ddd; +} +.panel-primary { + border-color: #337ab7; +} +.panel-primary > .panel-heading { + color: #fff; + background-color: #337ab7; + border-color: #337ab7; +} +.panel-primary > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #337ab7; +} +.panel-primary > .panel-heading .badge { + color: #337ab7; + background-color: #fff; +} +.panel-primary > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #337ab7; +} +.panel-success { + border-color: #d6e9c6; +} +.panel-success > .panel-heading { + color: #3c763d; + background-color: #dff0d8; + border-color: #d6e9c6; +} +.panel-success > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #d6e9c6; +} +.panel-success > .panel-heading .badge { + color: #dff0d8; + background-color: #3c763d; +} +.panel-success > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #d6e9c6; +} +.panel-info { + border-color: #bce8f1; +} +.panel-info > .panel-heading { + color: #31708f; + background-color: #d9edf7; + border-color: #bce8f1; +} +.panel-info > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #bce8f1; +} +.panel-info > .panel-heading .badge { + color: #d9edf7; + background-color: #31708f; +} +.panel-info > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #bce8f1; +} +.panel-warning { + border-color: #faebcc; +} +.panel-warning > .panel-heading { + color: #8a6d3b; + background-color: #fcf8e3; + border-color: #faebcc; +} +.panel-warning > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #faebcc; +} +.panel-warning > .panel-heading .badge { + color: #fcf8e3; + background-color: #8a6d3b; +} +.panel-warning > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #faebcc; +} +.panel-danger { + border-color: #ebccd1; +} +.panel-danger > .panel-heading { + color: #a94442; + background-color: #f2dede; + border-color: #ebccd1; +} +.panel-danger > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #ebccd1; +} +.panel-danger > .panel-heading .badge { + color: #f2dede; + background-color: #a94442; +} +.panel-danger > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #ebccd1; +} +.embed-responsive { + position: relative; + display: block; + height: 0; + padding: 0; + overflow: hidden; +} +.embed-responsive .embed-responsive-item, +.embed-responsive iframe, +.embed-responsive embed, +.embed-responsive object, +.embed-responsive video { + position: absolute; + top: 0; + bottom: 0; + left: 0; + width: 100%; + height: 100%; + border: 0; +} +.embed-responsive-16by9 { + padding-bottom: 56.25%; +} +.embed-responsive-4by3 { + padding-bottom: 75%; +} +.well { + min-height: 20px; + padding: 19px; + margin-bottom: 20px; + background-color: #f5f5f5; + border: 1px solid #e3e3e3; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); +} +.well blockquote { + border-color: #ddd; + border-color: rgba(0, 0, 0, 0.15); +} +.well-lg { + padding: 24px; + border-radius: 6px; +} +.well-sm { + padding: 9px; + border-radius: 3px; +} +.close { + float: right; + font-size: 21px; + font-weight: bold; + line-height: 1; + color: #000; + text-shadow: 0 1px 0 #fff; + filter: alpha(opacity=20); + opacity: 0.2; +} +.close:hover, +.close:focus { + color: #000; + text-decoration: none; + cursor: pointer; + filter: alpha(opacity=50); + opacity: 0.5; +} +button.close { + padding: 0; + cursor: pointer; + background: transparent; + border: 0; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} +.modal-open { + overflow: hidden; +} +.modal { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1050; + display: none; + overflow: hidden; + -webkit-overflow-scrolling: touch; + outline: 0; +} +.modal.fade .modal-dialog { + -webkit-transform: translate(0, -25%); + -ms-transform: translate(0, -25%); + -o-transform: translate(0, -25%); + transform: translate(0, -25%); + -webkit-transition: -webkit-transform 0.3s ease-out; + -o-transition: -o-transform 0.3s ease-out; + transition: -webkit-transform 0.3s ease-out; + transition: transform 0.3s ease-out; + transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out, -o-transform 0.3s ease-out; +} +.modal.in .modal-dialog { + -webkit-transform: translate(0, 0); + -ms-transform: translate(0, 0); + -o-transform: translate(0, 0); + transform: translate(0, 0); +} +.modal-open .modal { + overflow-x: hidden; + overflow-y: auto; +} +.modal-dialog { + position: relative; + width: auto; + margin: 10px; +} +.modal-content { + position: relative; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #999; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 6px; + -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); + box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); + outline: 0; +} +.modal-backdrop { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1040; + background-color: #000; +} +.modal-backdrop.fade { + filter: alpha(opacity=0); + opacity: 0; +} +.modal-backdrop.in { + filter: alpha(opacity=50); + opacity: 0.5; +} +.modal-header { + padding: 15px; + border-bottom: 1px solid #e5e5e5; +} +.modal-header .close { + margin-top: -2px; +} +.modal-title { + margin: 0; + line-height: 1.42857143; +} +.modal-body { + position: relative; + padding: 15px; +} +.modal-footer { + padding: 15px; + text-align: right; + border-top: 1px solid #e5e5e5; +} +.modal-footer .btn + .btn { + margin-bottom: 0; + margin-left: 5px; +} +.modal-footer .btn-group .btn + .btn { + margin-left: -1px; +} +.modal-footer .btn-block + .btn-block { + margin-left: 0; +} +.modal-scrollbar-measure { + position: absolute; + top: -9999px; + width: 50px; + height: 50px; + overflow: scroll; +} +@media (min-width: 768px) { + .modal-dialog { + width: 600px; + margin: 30px auto; + } + .modal-content { + -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); + box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); + } + .modal-sm { + width: 300px; + } +} +@media (min-width: 992px) { + .modal-lg { + width: 900px; + } +} +.tooltip { + position: absolute; + z-index: 1070; + display: block; + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-style: normal; + font-weight: 400; + line-height: 1.42857143; + line-break: auto; + text-align: left; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + word-wrap: normal; + white-space: normal; + font-size: 12px; + filter: alpha(opacity=0); + opacity: 0; +} +.tooltip.in { + filter: alpha(opacity=90); + opacity: 0.9; +} +.tooltip.top { + padding: 5px 0; + margin-top: -3px; +} +.tooltip.right { + padding: 0 5px; + margin-left: 3px; +} +.tooltip.bottom { + padding: 5px 0; + margin-top: 3px; +} +.tooltip.left { + padding: 0 5px; + margin-left: -3px; +} +.tooltip.top .tooltip-arrow { + bottom: 0; + left: 50%; + margin-left: -5px; + border-width: 5px 5px 0; + border-top-color: #000; +} +.tooltip.top-left .tooltip-arrow { + right: 5px; + bottom: 0; + margin-bottom: -5px; + border-width: 5px 5px 0; + border-top-color: #000; +} +.tooltip.top-right .tooltip-arrow { + bottom: 0; + left: 5px; + margin-bottom: -5px; + border-width: 5px 5px 0; + border-top-color: #000; +} +.tooltip.right .tooltip-arrow { + top: 50%; + left: 0; + margin-top: -5px; + border-width: 5px 5px 5px 0; + border-right-color: #000; +} +.tooltip.left .tooltip-arrow { + top: 50%; + right: 0; + margin-top: -5px; + border-width: 5px 0 5px 5px; + border-left-color: #000; +} +.tooltip.bottom .tooltip-arrow { + top: 0; + left: 50%; + margin-left: -5px; + border-width: 0 5px 5px; + border-bottom-color: #000; +} +.tooltip.bottom-left .tooltip-arrow { + top: 0; + right: 5px; + margin-top: -5px; + border-width: 0 5px 5px; + border-bottom-color: #000; +} +.tooltip.bottom-right .tooltip-arrow { + top: 0; + left: 5px; + margin-top: -5px; + border-width: 0 5px 5px; + border-bottom-color: #000; +} +.tooltip-inner { + max-width: 200px; + padding: 3px 8px; + color: #fff; + text-align: center; + background-color: #000; + border-radius: 4px; +} +.tooltip-arrow { + position: absolute; + width: 0; + height: 0; + border-color: transparent; + border-style: solid; +} +.popover { + position: absolute; + top: 0; + left: 0; + z-index: 1060; + display: none; + max-width: 276px; + padding: 1px; + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-style: normal; + font-weight: 400; + line-height: 1.42857143; + line-break: auto; + text-align: left; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + word-wrap: normal; + white-space: normal; + font-size: 14px; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #ccc; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 6px; + -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); +} +.popover.top { + margin-top: -10px; +} +.popover.right { + margin-left: 10px; +} +.popover.bottom { + margin-top: 10px; +} +.popover.left { + margin-left: -10px; +} +.popover > .arrow { + border-width: 11px; +} +.popover > .arrow, +.popover > .arrow:after { + position: absolute; + display: block; + width: 0; + height: 0; + border-color: transparent; + border-style: solid; +} +.popover > .arrow:after { + content: ""; + border-width: 10px; +} +.popover.top > .arrow { + bottom: -11px; + left: 50%; + margin-left: -11px; + border-top-color: #999999; + border-top-color: rgba(0, 0, 0, 0.25); + border-bottom-width: 0; +} +.popover.top > .arrow:after { + bottom: 1px; + margin-left: -10px; + content: " "; + border-top-color: #fff; + border-bottom-width: 0; +} +.popover.right > .arrow { + top: 50%; + left: -11px; + margin-top: -11px; + border-right-color: #999999; + border-right-color: rgba(0, 0, 0, 0.25); + border-left-width: 0; +} +.popover.right > .arrow:after { + bottom: -10px; + left: 1px; + content: " "; + border-right-color: #fff; + border-left-width: 0; +} +.popover.bottom > .arrow { + top: -11px; + left: 50%; + margin-left: -11px; + border-top-width: 0; + border-bottom-color: #999999; + border-bottom-color: rgba(0, 0, 0, 0.25); +} +.popover.bottom > .arrow:after { + top: 1px; + margin-left: -10px; + content: " "; + border-top-width: 0; + border-bottom-color: #fff; +} +.popover.left > .arrow { + top: 50%; + right: -11px; + margin-top: -11px; + border-right-width: 0; + border-left-color: #999999; + border-left-color: rgba(0, 0, 0, 0.25); +} +.popover.left > .arrow:after { + right: 1px; + bottom: -10px; + content: " "; + border-right-width: 0; + border-left-color: #fff; +} +.popover-title { + padding: 8px 14px; + margin: 0; + font-size: 14px; + background-color: #f7f7f7; + border-bottom: 1px solid #ebebeb; + border-radius: 5px 5px 0 0; +} +.popover-content { + padding: 9px 14px; +} +.carousel { + position: relative; +} +.carousel-inner { + position: relative; + width: 100%; + overflow: hidden; +} +.carousel-inner > .item { + position: relative; + display: none; + -webkit-transition: 0.6s ease-in-out left; + -o-transition: 0.6s ease-in-out left; + transition: 0.6s ease-in-out left; +} +.carousel-inner > .item > img, +.carousel-inner > .item > a > img { + line-height: 1; +} +@media all and (transform-3d), (-webkit-transform-3d) { + .carousel-inner > .item { + -webkit-transition: -webkit-transform 0.6s ease-in-out; + -o-transition: -o-transform 0.6s ease-in-out; + transition: -webkit-transform 0.6s ease-in-out; + transition: transform 0.6s ease-in-out; + transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + -webkit-perspective: 1000px; + perspective: 1000px; + } + .carousel-inner > .item.next, + .carousel-inner > .item.active.right { + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + left: 0; + } + .carousel-inner > .item.prev, + .carousel-inner > .item.active.left { + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + left: 0; + } + .carousel-inner > .item.next.left, + .carousel-inner > .item.prev.right, + .carousel-inner > .item.active { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + left: 0; + } +} +.carousel-inner > .active, +.carousel-inner > .next, +.carousel-inner > .prev { + display: block; +} +.carousel-inner > .active { + left: 0; +} +.carousel-inner > .next, +.carousel-inner > .prev { + position: absolute; + top: 0; + width: 100%; +} +.carousel-inner > .next { + left: 100%; +} +.carousel-inner > .prev { + left: -100%; +} +.carousel-inner > .next.left, +.carousel-inner > .prev.right { + left: 0; +} +.carousel-inner > .active.left { + left: -100%; +} +.carousel-inner > .active.right { + left: 100%; +} +.carousel-control { + position: absolute; + top: 0; + bottom: 0; + left: 0; + width: 15%; + font-size: 20px; + color: #fff; + text-align: center; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + background-color: rgba(0, 0, 0, 0); + filter: alpha(opacity=50); + opacity: 0.5; +} +.carousel-control.left { + background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); + background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); + background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001))); + background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); + background-repeat: repeat-x; +} +.carousel-control.right { + right: 0; + left: auto; + background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); + background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); + background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5))); + background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); + background-repeat: repeat-x; +} +.carousel-control:hover, +.carousel-control:focus { + color: #fff; + text-decoration: none; + outline: 0; + filter: alpha(opacity=90); + opacity: 0.9; +} +.carousel-control .icon-prev, +.carousel-control .icon-next, +.carousel-control .glyphicon-chevron-left, +.carousel-control .glyphicon-chevron-right { + position: absolute; + top: 50%; + z-index: 5; + display: inline-block; + margin-top: -10px; +} +.carousel-control .icon-prev, +.carousel-control .glyphicon-chevron-left { + left: 50%; + margin-left: -10px; +} +.carousel-control .icon-next, +.carousel-control .glyphicon-chevron-right { + right: 50%; + margin-right: -10px; +} +.carousel-control .icon-prev, +.carousel-control .icon-next { + width: 20px; + height: 20px; + font-family: serif; + line-height: 1; +} +.carousel-control .icon-prev:before { + content: "\2039"; +} +.carousel-control .icon-next:before { + content: "\203a"; +} +.carousel-indicators { + position: absolute; + bottom: 10px; + left: 50%; + z-index: 15; + width: 60%; + padding-left: 0; + margin-left: -30%; + text-align: center; + list-style: none; +} +.carousel-indicators li { + display: inline-block; + width: 10px; + height: 10px; + margin: 1px; + text-indent: -999px; + cursor: pointer; + background-color: #000 \9; + background-color: rgba(0, 0, 0, 0); + border: 1px solid #fff; + border-radius: 10px; +} +.carousel-indicators .active { + width: 12px; + height: 12px; + margin: 0; + background-color: #fff; +} +.carousel-caption { + position: absolute; + right: 15%; + bottom: 20px; + left: 15%; + z-index: 10; + padding-top: 20px; + padding-bottom: 20px; + color: #fff; + text-align: center; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); +} +.carousel-caption .btn { + text-shadow: none; +} +@media screen and (min-width: 768px) { + .carousel-control .glyphicon-chevron-left, + .carousel-control .glyphicon-chevron-right, + .carousel-control .icon-prev, + .carousel-control .icon-next { + width: 30px; + height: 30px; + margin-top: -10px; + font-size: 30px; + } + .carousel-control .glyphicon-chevron-left, + .carousel-control .icon-prev { + margin-left: -10px; + } + .carousel-control .glyphicon-chevron-right, + .carousel-control .icon-next { + margin-right: -10px; + } + .carousel-caption { + right: 20%; + left: 20%; + padding-bottom: 30px; + } + .carousel-indicators { + bottom: 20px; + } +} +.clearfix:before, +.clearfix:after, +.dl-horizontal dd:before, +.dl-horizontal dd:after, +.container:before, +.container:after, +.container-fluid:before, +.container-fluid:after, +.row:before, +.row:after, +.form-horizontal .form-group:before, +.form-horizontal .form-group:after, +.btn-toolbar:before, +.btn-toolbar:after, +.btn-group-vertical > .btn-group:before, +.btn-group-vertical > .btn-group:after, +.nav:before, +.nav:after, +.navbar:before, +.navbar:after, +.navbar-header:before, +.navbar-header:after, +.navbar-collapse:before, +.navbar-collapse:after, +.pager:before, +.pager:after, +.panel-body:before, +.panel-body:after, +.modal-header:before, +.modal-header:after, +.modal-footer:before, +.modal-footer:after { + display: table; + content: " "; +} +.clearfix:after, +.dl-horizontal dd:after, +.container:after, +.container-fluid:after, +.row:after, +.form-horizontal .form-group:after, +.btn-toolbar:after, +.btn-group-vertical > .btn-group:after, +.nav:after, +.navbar:after, +.navbar-header:after, +.navbar-collapse:after, +.pager:after, +.panel-body:after, +.modal-header:after, +.modal-footer:after { + clear: both; +} +.center-block { + display: block; + margin-right: auto; + margin-left: auto; +} +.pull-right { + float: right !important; +} +.pull-left { + float: left !important; +} +.hide { + display: none !important; +} +.show { + display: block !important; +} +.invisible { + visibility: hidden; +} +.text-hide { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0; +} +.hidden { + display: none !important; +} +.affix { + position: fixed; +} +@-ms-viewport { + width: device-width; +} +.visible-xs, +.visible-sm, +.visible-md, +.visible-lg { + display: none !important; +} +.visible-xs-block, +.visible-xs-inline, +.visible-xs-inline-block, +.visible-sm-block, +.visible-sm-inline, +.visible-sm-inline-block, +.visible-md-block, +.visible-md-inline, +.visible-md-inline-block, +.visible-lg-block, +.visible-lg-inline, +.visible-lg-inline-block { + display: none !important; +} +@media (max-width: 767px) { + .visible-xs { + display: block !important; + } + table.visible-xs { + display: table !important; + } + tr.visible-xs { + display: table-row !important; + } + th.visible-xs, + td.visible-xs { + display: table-cell !important; + } +} +@media (max-width: 767px) { + .visible-xs-block { + display: block !important; + } +} +@media (max-width: 767px) { + .visible-xs-inline { + display: inline !important; + } +} +@media (max-width: 767px) { + .visible-xs-inline-block { + display: inline-block !important; + } +} +@media (min-width: 768px) and (max-width: 991px) { + .visible-sm { + display: block !important; + } + table.visible-sm { + display: table !important; + } + tr.visible-sm { + display: table-row !important; + } + th.visible-sm, + td.visible-sm { + display: table-cell !important; + } +} +@media (min-width: 768px) and (max-width: 991px) { + .visible-sm-block { + display: block !important; + } +} +@media (min-width: 768px) and (max-width: 991px) { + .visible-sm-inline { + display: inline !important; + } +} +@media (min-width: 768px) and (max-width: 991px) { + .visible-sm-inline-block { + display: inline-block !important; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .visible-md { + display: block !important; + } + table.visible-md { + display: table !important; + } + tr.visible-md { + display: table-row !important; + } + th.visible-md, + td.visible-md { + display: table-cell !important; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .visible-md-block { + display: block !important; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .visible-md-inline { + display: inline !important; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .visible-md-inline-block { + display: inline-block !important; + } +} +@media (min-width: 1200px) { + .visible-lg { + display: block !important; + } + table.visible-lg { + display: table !important; + } + tr.visible-lg { + display: table-row !important; + } + th.visible-lg, + td.visible-lg { + display: table-cell !important; + } +} +@media (min-width: 1200px) { + .visible-lg-block { + display: block !important; + } +} +@media (min-width: 1200px) { + .visible-lg-inline { + display: inline !important; + } +} +@media (min-width: 1200px) { + .visible-lg-inline-block { + display: inline-block !important; + } +} +@media (max-width: 767px) { + .hidden-xs { + display: none !important; + } +} +@media (min-width: 768px) and (max-width: 991px) { + .hidden-sm { + display: none !important; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .hidden-md { + display: none !important; + } +} +@media (min-width: 1200px) { + .hidden-lg { + display: none !important; + } +} +.visible-print { + display: none !important; +} +@media print { + .visible-print { + display: block !important; + } + table.visible-print { + display: table !important; + } + tr.visible-print { + display: table-row !important; + } + th.visible-print, + td.visible-print { + display: table-cell !important; + } +} +.visible-print-block { + display: none !important; +} +@media print { + .visible-print-block { + display: block !important; + } +} +.visible-print-inline { + display: none !important; +} +@media print { + .visible-print-inline { + display: inline !important; + } +} +.visible-print-inline-block { + display: none !important; +} +@media print { + .visible-print-inline-block { + display: inline-block !important; + } +} +@media print { + .hidden-print { + display: none !important; + } +} +/*# sourceMappingURL=bootstrap.css.map */ \ No newline at end of file diff --git a/AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootstrap-3.4.1/css/bootstrap.css.map b/AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootstrap-3.4.1/css/bootstrap.css.map new file mode 100644 index 0000000000..caac3e6125 --- /dev/null +++ b/AixLib/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootstrap-3.4.1/css/bootstrap.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["bootstrap.css","less/normalize.less","less/print.less","less/glyphicons.less","less/scaffolding.less","less/mixins/vendor-prefixes.less","less/mixins/tab-focus.less","less/mixins/image.less","less/type.less","less/mixins/text-emphasis.less","less/mixins/background-variant.less","less/mixins/text-overflow.less","less/code.less","less/grid.less","less/mixins/grid.less","less/mixins/grid-framework.less","less/tables.less","less/mixins/table-row.less","less/forms.less","less/mixins/forms.less","less/buttons.less","less/mixins/buttons.less","less/mixins/opacity.less","less/component-animations.less","less/dropdowns.less","less/mixins/nav-divider.less","less/mixins/reset-filter.less","less/button-groups.less","less/mixins/border-radius.less","less/input-groups.less","less/navs.less","less/navbar.less","less/mixins/nav-vertical-align.less","less/utilities.less","less/breadcrumbs.less","less/pagination.less","less/mixins/pagination.less","less/pager.less","less/labels.less","less/mixins/labels.less","less/badges.less","less/jumbotron.less","less/thumbnails.less","less/alerts.less","less/mixins/alerts.less","less/progress-bars.less","less/mixins/gradients.less","less/mixins/progress-bar.less","less/media.less","less/list-group.less","less/mixins/list-group.less","less/panels.less","less/mixins/panels.less","less/responsive-embed.less","less/wells.less","less/close.less","less/modals.less","less/tooltip.less","less/mixins/reset-text.less","less/popovers.less","less/carousel.less","less/mixins/clearfix.less","less/mixins/center-block.less","less/mixins/hide-text.less","less/responsive-utilities.less","less/mixins/responsive-visibility.less"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,4EAA4E;ACK5E;EACE,wBAAA;EACA,2BAAA;EACA,+BAAA;CDHD;ACUD;EACE,UAAA;CDRD;ACqBD;;;;;;;;;;;;;EAaE,eAAA;CDnBD;AC2BD;;;;EAIE,sBAAA;EACA,yBAAA;CDzBD;ACiCD;EACE,cAAA;EACA,UAAA;CD/BD;ACuCD;;EAEE,cAAA;CDrCD;AC+CD;EACE,8BAAA;CD7CD;ACqDD;;EAEE,WAAA;CDnDD;AC8DD;EACE,oBAAA;EACA,2BAAA;EACA,0CAAA;EAAA,uCAAA;EAAA,kCAAA;CD5DD;ACmED;;EAEE,kBAAA;CDjED;ACwED;EACE,mBAAA;CDtED;AC8ED;EACE,eAAA;EACA,iBAAA;CD5ED;ACmFD;EACE,iBAAA;EACA,YAAA;CDjFD;ACwFD;EACE,eAAA;CDtFD;AC6FD;;EAEE,eAAA;EACA,eAAA;EACA,mBAAA;EACA,yBAAA;CD3FD;AC8FD;EACE,YAAA;CD5FD;AC+FD;EACE,gBAAA;CD7FD;ACuGD;EACE,UAAA;CDrGD;AC4GD;EACE,iBAAA;CD1GD;ACoHD;EACE,iBAAA;CDlHD;ACyHD;EACE,gCAAA;EAAA,6BAAA;EAAA,wBAAA;EACA,UAAA;CDvHD;AC8HD;EACE,eAAA;CD5HD;ACmID;;;;EAIE,kCAAA;EACA,eAAA;CDjID;ACmJD;;;;;EAKE,eAAA;EACA,cAAA;EACA,UAAA;CDjJD;ACwJD;EACE,kBAAA;CDtJD;ACgKD;;EAEE,qBAAA;CD9JD;ACyKD;;;;EAIE,2BAAA;EACA,gBAAA;CDvKD;AC8KD;;EAEE,gBAAA;CD5KD;ACmLD;;EAEE,UAAA;EACA,WAAA;CDjLD;ACyLD;EACE,oBAAA;CDvLD;ACkMD;;EAEE,+BAAA;EAAA,4BAAA;EAAA,uBAAA;EACA,WAAA;CDhMD;ACyMD;;EAEE,aAAA;CDvMD;AC+MD;EACE,8BAAA;EACA,gCAAA;EAAA,6BAAA;EAAA,wBAAA;CD7MD;ACsND;;EAEE,yBAAA;CDpND;AC2ND;EACE,0BAAA;EACA,cAAA;EACA,+BAAA;CDzND;ACiOD;EACE,UAAA;EACA,WAAA;CD/ND;ACsOD;EACE,eAAA;CDpOD;AC4OD;EACE,kBAAA;CD1OD;ACoPD;EACE,0BAAA;EACA,kBAAA;CDlPD;ACqPD;;EAEE,WAAA;CDnPD;AACD,qFAAqF;AEhLrF;EACE;;;IAGE,uBAAA;IACA,6BAAA;IACA,mCAAA;IACA,oCAAA;IAAA,4BAAA;GFkLD;EE/KD;;IAEE,2BAAA;GFiLD;EE9KD;IACE,6BAAA;GFgLD;EE7KD;IACE,8BAAA;GF+KD;EE1KD;;IAEE,YAAA;GF4KD;EEzKD;;IAEE,uBAAA;IACA,yBAAA;GF2KD;EExKD;IACE,4BAAA;GF0KD;EEvKD;;IAEE,yBAAA;GFyKD;EEtKD;IACE,2BAAA;GFwKD;EErKD;;;IAGE,WAAA;IACA,UAAA;GFuKD;EEpKD;;IAEE,wBAAA;GFsKD;EEhKD;IACE,cAAA;GFkKD;EEhKD;;IAGI,kCAAA;GFiKH;EE9JD;IACE,uBAAA;GFgKD;EE7JD;IACE,qCAAA;GF+JD;EEhKD;;IAKI,kCAAA;GF+JH;EE5JD;;IAGI,kCAAA;GF6JH;CACF;AGnPD;EACE,oCAAA;EACA,sDAAA;EACA,gYAAA;CHqPD;AG7OD;EACE,mBAAA;EACA,SAAA;EACA,sBAAA;EACA,oCAAA;EACA,mBAAA;EACA,iBAAA;EACA,eAAA;EACA,oCAAA;EACA,mCAAA;CH+OD;AG3OmC;EAAW,iBAAA;CH8O9C;AG7OmC;EAAW,iBAAA;CHgP9C;AG9OmC;;EAAW,iBAAA;CHkP9C;AGjPmC;EAAW,iBAAA;CHoP9C;AGnPmC;EAAW,iBAAA;CHsP9C;AGrPmC;EAAW,iBAAA;CHwP9C;AGvPmC;EAAW,iBAAA;CH0P9C;AGzPmC;EAAW,iBAAA;CH4P9C;AG3PmC;EAAW,iBAAA;CH8P9C;AG7PmC;EAAW,iBAAA;CHgQ9C;AG/PmC;EAAW,iBAAA;CHkQ9C;AGjQmC;EAAW,iBAAA;CHoQ9C;AGnQmC;EAAW,iBAAA;CHsQ9C;AGrQmC;EAAW,iBAAA;CHwQ9C;AGvQmC;EAAW,iBAAA;CH0Q9C;AGzQmC;EAAW,iBAAA;CH4Q9C;AG3QmC;EAAW,iBAAA;CH8Q9C;AG7QmC;EAAW,iBAAA;CHgR9C;AG/QmC;EAAW,iBAAA;CHkR9C;AGjRmC;EAAW,iBAAA;CHoR9C;AGnRmC;EAAW,iBAAA;CHsR9C;AGrRmC;EAAW,iBAAA;CHwR9C;AGvRmC;EAAW,iBAAA;CH0R9C;AGzRmC;EAAW,iBAAA;CH4R9C;AG3RmC;EAAW,iBAAA;CH8R9C;AG7RmC;EAAW,iBAAA;CHgS9C;AG/RmC;EAAW,iBAAA;CHkS9C;AGjSmC;EAAW,iBAAA;CHoS9C;AGnSmC;EAAW,iBAAA;CHsS9C;AGrSmC;EAAW,iBAAA;CHwS9C;AGvSmC;EAAW,iBAAA;CH0S9C;AGzSmC;EAAW,iBAAA;CH4S9C;AG3SmC;EAAW,iBAAA;CH8S9C;AG7SmC;EAAW,iBAAA;CHgT9C;AG/SmC;EAAW,iBAAA;CHkT9C;AGjTmC;EAAW,iBAAA;CHoT9C;AGnTmC;EAAW,iBAAA;CHsT9C;AGrTmC;EAAW,iBAAA;CHwT9C;AGvTmC;EAAW,iBAAA;CH0T9C;AGzTmC;EAAW,iBAAA;CH4T9C;AG3TmC;EAAW,iBAAA;CH8T9C;AG7TmC;EAAW,iBAAA;CHgU9C;AG/TmC;EAAW,iBAAA;CHkU9C;AGjUmC;EAAW,iBAAA;CHoU9C;AGnUmC;EAAW,iBAAA;CHsU9C;AGrUmC;EAAW,iBAAA;CHwU9C;AGvUmC;EAAW,iBAAA;CH0U9C;AGzUmC;EAAW,iBAAA;CH4U9C;AG3UmC;EAAW,iBAAA;CH8U9C;AG7UmC;EAAW,iBAAA;CHgV9C;AG/UmC;EAAW,iBAAA;CHkV9C;AGjVmC;EAAW,iBAAA;CHoV9C;AGnVmC;EAAW,iBAAA;CHsV9C;AGrVmC;EAAW,iBAAA;CHwV9C;AGvVmC;EAAW,iBAAA;CH0V9C;AGzVmC;EAAW,iBAAA;CH4V9C;AG3VmC;EAAW,iBAAA;CH8V9C;AG7VmC;EAAW,iBAAA;CHgW9C;AG/VmC;EAAW,iBAAA;CHkW9C;AGjWmC;EAAW,iBAAA;CHoW9C;AGnWmC;EAAW,iBAAA;CHsW9C;AGrWmC;EAAW,iBAAA;CHwW9C;AGvWmC;EAAW,iBAAA;CH0W9C;AGzWmC;EAAW,iBAAA;CH4W9C;AG3WmC;EAAW,iBAAA;CH8W9C;AG7WmC;EAAW,iBAAA;CHgX9C;AG/WmC;EAAW,iBAAA;CHkX9C;AGjXmC;EAAW,iBAAA;CHoX9C;AGnXmC;EAAW,iBAAA;CHsX9C;AGrXmC;EAAW,iBAAA;CHwX9C;AGvXmC;EAAW,iBAAA;CH0X9C;AGzXmC;EAAW,iBAAA;CH4X9C;AG3XmC;EAAW,iBAAA;CH8X9C;AG7XmC;EAAW,iBAAA;CHgY9C;AG/XmC;EAAW,iBAAA;CHkY9C;AGjYmC;EAAW,iBAAA;CHoY9C;AGnYmC;EAAW,iBAAA;CHsY9C;AGrYmC;EAAW,iBAAA;CHwY9C;AGvYmC;EAAW,iBAAA;CH0Y9C;AGzYmC;EAAW,iBAAA;CH4Y9C;AG3YmC;EAAW,iBAAA;CH8Y9C;AG7YmC;EAAW,iBAAA;CHgZ9C;AG/YmC;EAAW,iBAAA;CHkZ9C;AGjZmC;EAAW,iBAAA;CHoZ9C;AGnZmC;EAAW,iBAAA;CHsZ9C;AGrZmC;EAAW,iBAAA;CHwZ9C;AGvZmC;EAAW,iBAAA;CH0Z9C;AGzZmC;EAAW,iBAAA;CH4Z9C;AG3ZmC;EAAW,iBAAA;CH8Z9C;AG7ZmC;EAAW,iBAAA;CHga9C;AG/ZmC;EAAW,iBAAA;CHka9C;AGjamC;EAAW,iBAAA;CHoa9C;AGnamC;EAAW,iBAAA;CHsa9C;AGramC;EAAW,iBAAA;CHwa9C;AGvamC;EAAW,iBAAA;CH0a9C;AGzamC;EAAW,iBAAA;CH4a9C;AG3amC;EAAW,iBAAA;CH8a9C;AG7amC;EAAW,iBAAA;CHgb9C;AG/amC;EAAW,iBAAA;CHkb9C;AGjbmC;EAAW,iBAAA;CHob9C;AGnbmC;EAAW,iBAAA;CHsb9C;AGrbmC;EAAW,iBAAA;CHwb9C;AGvbmC;EAAW,iBAAA;CH0b9C;AGzbmC;EAAW,iBAAA;CH4b9C;AG3bmC;EAAW,iBAAA;CH8b9C;AG7bmC;EAAW,iBAAA;CHgc9C;AG/bmC;EAAW,iBAAA;CHkc9C;AGjcmC;EAAW,iBAAA;CHoc9C;AGncmC;EAAW,iBAAA;CHsc9C;AGrcmC;EAAW,iBAAA;CHwc9C;AGvcmC;EAAW,iBAAA;CH0c9C;AGzcmC;EAAW,iBAAA;CH4c9C;AG3cmC;EAAW,iBAAA;CH8c9C;AG7cmC;EAAW,iBAAA;CHgd9C;AG/cmC;EAAW,iBAAA;CHkd9C;AGjdmC;EAAW,iBAAA;CHod9C;AGndmC;EAAW,iBAAA;CHsd9C;AGrdmC;EAAW,iBAAA;CHwd9C;AGvdmC;EAAW,iBAAA;CH0d9C;AGzdmC;EAAW,iBAAA;CH4d9C;AG3dmC;EAAW,iBAAA;CH8d9C;AG7dmC;EAAW,iBAAA;CHge9C;AG/dmC;EAAW,iBAAA;CHke9C;AGjemC;EAAW,iBAAA;CHoe9C;AGnemC;EAAW,iBAAA;CHse9C;AGremC;EAAW,iBAAA;CHwe9C;AGvemC;EAAW,iBAAA;CH0e9C;AGzemC;EAAW,iBAAA;CH4e9C;AG3emC;EAAW,iBAAA;CH8e9C;AG7emC;EAAW,iBAAA;CHgf9C;AG/emC;EAAW,iBAAA;CHkf9C;AGjfmC;EAAW,iBAAA;CHof9C;AGnfmC;EAAW,iBAAA;CHsf9C;AGrfmC;EAAW,iBAAA;CHwf9C;AGvfmC;EAAW,iBAAA;CH0f9C;AGzfmC;EAAW,iBAAA;CH4f9C;AG3fmC;EAAW,iBAAA;CH8f9C;AG7fmC;EAAW,iBAAA;CHggB9C;AG/fmC;EAAW,iBAAA;CHkgB9C;AGjgBmC;EAAW,iBAAA;CHogB9C;AGngBmC;EAAW,iBAAA;CHsgB9C;AGrgBmC;EAAW,iBAAA;CHwgB9C;AGvgBmC;EAAW,iBAAA;CH0gB9C;AGzgBmC;EAAW,iBAAA;CH4gB9C;AG3gBmC;EAAW,iBAAA;CH8gB9C;AG7gBmC;EAAW,iBAAA;CHghB9C;AG/gBmC;EAAW,iBAAA;CHkhB9C;AGjhBmC;EAAW,iBAAA;CHohB9C;AGnhBmC;EAAW,iBAAA;CHshB9C;AGrhBmC;EAAW,iBAAA;CHwhB9C;AGvhBmC;EAAW,iBAAA;CH0hB9C;AGzhBmC;EAAW,iBAAA;CH4hB9C;AG3hBmC;EAAW,iBAAA;CH8hB9C;AG7hBmC;EAAW,iBAAA;CHgiB9C;AG/hBmC;EAAW,iBAAA;CHkiB9C;AGjiBmC;EAAW,iBAAA;CHoiB9C;AGniBmC;EAAW,iBAAA;CHsiB9C;AGriBmC;EAAW,iBAAA;CHwiB9C;AGviBmC;EAAW,iBAAA;CH0iB9C;AGziBmC;EAAW,iBAAA;CH4iB9C;AG3iBmC;EAAW,iBAAA;CH8iB9C;AG7iBmC;EAAW,iBAAA;CHgjB9C;AG/iBmC;EAAW,iBAAA;CHkjB9C;AGjjBmC;EAAW,iBAAA;CHojB9C;AGnjBmC;EAAW,iBAAA;CHsjB9C;AGrjBmC;EAAW,iBAAA;CHwjB9C;AGvjBmC;EAAW,iBAAA;CH0jB9C;AGzjBmC;EAAW,iBAAA;CH4jB9C;AG3jBmC;EAAW,iBAAA;CH8jB9C;AG7jBmC;EAAW,iBAAA;CHgkB9C;AG/jBmC;EAAW,iBAAA;CHkkB9C;AGjkBmC;EAAW,iBAAA;CHokB9C;AGnkBmC;EAAW,iBAAA;CHskB9C;AGrkBmC;EAAW,iBAAA;CHwkB9C;AGvkBmC;EAAW,iBAAA;CH0kB9C;AGzkBmC;EAAW,iBAAA;CH4kB9C;AG3kBmC;EAAW,iBAAA;CH8kB9C;AG7kBmC;EAAW,iBAAA;CHglB9C;AG/kBmC;EAAW,iBAAA;CHklB9C;AGjlBmC;EAAW,iBAAA;CHolB9C;AGnlBmC;EAAW,iBAAA;CHslB9C;AGrlBmC;EAAW,iBAAA;CHwlB9C;AGvlBmC;EAAW,iBAAA;CH0lB9C;AGzlBmC;EAAW,iBAAA;CH4lB9C;AG3lBmC;EAAW,iBAAA;CH8lB9C;AG7lBmC;EAAW,iBAAA;CHgmB9C;AG/lBmC;EAAW,iBAAA;CHkmB9C;AGjmBmC;EAAW,iBAAA;CHomB9C;AGnmBmC;EAAW,iBAAA;CHsmB9C;AGrmBmC;EAAW,iBAAA;CHwmB9C;AGvmBmC;EAAW,iBAAA;CH0mB9C;AGzmBmC;EAAW,iBAAA;CH4mB9C;AG3mBmC;EAAW,iBAAA;CH8mB9C;AG7mBmC;EAAW,iBAAA;CHgnB9C;AG/mBmC;EAAW,iBAAA;CHknB9C;AGjnBmC;EAAW,iBAAA;CHonB9C;AGnnBmC;EAAW,iBAAA;CHsnB9C;AGrnBmC;EAAW,iBAAA;CHwnB9C;AGvnBmC;EAAW,iBAAA;CH0nB9C;AGznBmC;EAAW,iBAAA;CH4nB9C;AG3nBmC;EAAW,iBAAA;CH8nB9C;AG7nBmC;EAAW,iBAAA;CHgoB9C;AG/nBmC;EAAW,iBAAA;CHkoB9C;AGjoBmC;EAAW,iBAAA;CHooB9C;AGnoBmC;EAAW,iBAAA;CHsoB9C;AGroBmC;EAAW,iBAAA;CHwoB9C;AG/nBmC;EAAW,iBAAA;CHkoB9C;AGjoBmC;EAAW,iBAAA;CHooB9C;AGnoBmC;EAAW,iBAAA;CHsoB9C;AGroBmC;EAAW,iBAAA;CHwoB9C;AGvoBmC;EAAW,iBAAA;CH0oB9C;AGzoBmC;EAAW,iBAAA;CH4oB9C;AG3oBmC;EAAW,iBAAA;CH8oB9C;AG7oBmC;EAAW,iBAAA;CHgpB9C;AG/oBmC;EAAW,iBAAA;CHkpB9C;AGjpBmC;EAAW,iBAAA;CHopB9C;AGnpBmC;EAAW,iBAAA;CHspB9C;AGrpBmC;EAAW,iBAAA;CHwpB9C;AGvpBmC;EAAW,iBAAA;CH0pB9C;AGzpBmC;EAAW,iBAAA;CH4pB9C;AG3pBmC;EAAW,iBAAA;CH8pB9C;AG7pBmC;EAAW,iBAAA;CHgqB9C;AG/pBmC;EAAW,iBAAA;CHkqB9C;AGjqBmC;EAAW,iBAAA;CHoqB9C;AGnqBmC;EAAW,iBAAA;CHsqB9C;AGrqBmC;EAAW,iBAAA;CHwqB9C;AGvqBmC;EAAW,iBAAA;CH0qB9C;AGzqBmC;EAAW,iBAAA;CH4qB9C;AG3qBmC;EAAW,iBAAA;CH8qB9C;AG7qBmC;EAAW,iBAAA;CHgrB9C;AG/qBmC;EAAW,iBAAA;CHkrB9C;AGjrBmC;EAAW,iBAAA;CHorB9C;AGnrBmC;EAAW,iBAAA;CHsrB9C;AGrrBmC;EAAW,iBAAA;CHwrB9C;AGvrBmC;EAAW,iBAAA;CH0rB9C;AGzrBmC;EAAW,iBAAA;CH4rB9C;AG3rBmC;EAAW,iBAAA;CH8rB9C;AG7rBmC;EAAW,iBAAA;CHgsB9C;AG/rBmC;EAAW,iBAAA;CHksB9C;AGjsBmC;EAAW,iBAAA;CHosB9C;AGnsBmC;EAAW,iBAAA;CHssB9C;AGrsBmC;EAAW,iBAAA;CHwsB9C;AGvsBmC;EAAW,iBAAA;CH0sB9C;AGzsBmC;EAAW,iBAAA;CH4sB9C;AG3sBmC;EAAW,iBAAA;CH8sB9C;AG7sBmC;EAAW,iBAAA;CHgtB9C;AG/sBmC;EAAW,iBAAA;CHktB9C;AGjtBmC;EAAW,iBAAA;CHotB9C;AGntBmC;EAAW,iBAAA;CHstB9C;AGrtBmC;EAAW,iBAAA;CHwtB9C;AGvtBmC;EAAW,iBAAA;CH0tB9C;AGztBmC;EAAW,iBAAA;CH4tB9C;AG3tBmC;EAAW,iBAAA;CH8tB9C;AG7tBmC;EAAW,iBAAA;CHguB9C;AG/tBmC;EAAW,iBAAA;CHkuB9C;AGjuBmC;EAAW,iBAAA;CHouB9C;AGnuBmC;EAAW,iBAAA;CHsuB9C;AGruBmC;EAAW,iBAAA;CHwuB9C;AGvuBmC;EAAW,iBAAA;CH0uB9C;AGzuBmC;EAAW,iBAAA;CH4uB9C;AG3uBmC;EAAW,iBAAA;CH8uB9C;AG7uBmC;EAAW,iBAAA;CHgvB9C;AIxhCD;ECkEE,+BAAA;EACG,4BAAA;EACK,uBAAA;CLy9BT;AI1hCD;;EC+DE,+BAAA;EACG,4BAAA;EACK,uBAAA;CL+9BT;AIxhCD;EACE,gBAAA;EACA,8CAAA;CJ0hCD;AIvhCD;EACE,4DAAA;EACA,gBAAA;EACA,wBAAA;EACA,eAAA;EACA,uBAAA;CJyhCD;AIrhCD;;;;EAIE,qBAAA;EACA,mBAAA;EACA,qBAAA;CJuhCD;AIjhCD;EACE,eAAA;EACA,sBAAA;CJmhCD;AIjhCC;;EAEE,eAAA;EACA,2BAAA;CJmhCH;AIhhCC;EEnDA,2CAAA;EACA,qBAAA;CNskCD;AIzgCD;EACE,UAAA;CJ2gCD;AIrgCD;EACE,uBAAA;CJugCD;AIngCD;;;;;EG1EE,eAAA;EACA,gBAAA;EACA,aAAA;CPolCD;AIvgCD;EACE,mBAAA;CJygCD;AIngCD;EACE,aAAA;EACA,wBAAA;EACA,uBAAA;EACA,uBAAA;EACA,mBAAA;EC+FA,yCAAA;EACK,oCAAA;EACG,iCAAA;EE5LR,sBAAA;EACA,gBAAA;EACA,aAAA;CPomCD;AIngCD;EACE,mBAAA;CJqgCD;AI//BD;EACE,iBAAA;EACA,oBAAA;EACA,UAAA;EACA,8BAAA;CJigCD;AIz/BD;EACE,mBAAA;EACA,WAAA;EACA,YAAA;EACA,WAAA;EACA,aAAA;EACA,iBAAA;EACA,uBAAA;EACA,UAAA;CJ2/BD;AIn/BC;;EAEE,iBAAA;EACA,YAAA;EACA,aAAA;EACA,UAAA;EACA,kBAAA;EACA,WAAA;CJq/BH;AI1+BD;EACE,gBAAA;CJ4+BD;AQjoCD;;;;;;;;;;;;EAEE,qBAAA;EACA,iBAAA;EACA,iBAAA;EACA,eAAA;CR6oCD;AQlpCD;;;;;;;;;;;;;;;;;;;;;;;;EASI,iBAAA;EACA,eAAA;EACA,eAAA;CRmqCH;AQ/pCD;;;;;;EAGE,iBAAA;EACA,oBAAA;CRoqCD;AQxqCD;;;;;;;;;;;;EAQI,eAAA;CR8qCH;AQ3qCD;;;;;;EAGE,iBAAA;EACA,oBAAA;CRgrCD;AQprCD;;;;;;;;;;;;EAQI,eAAA;CR0rCH;AQtrCD;;EAAU,gBAAA;CR0rCT;AQzrCD;;EAAU,gBAAA;CR6rCT;AQ5rCD;;EAAU,gBAAA;CRgsCT;AQ/rCD;;EAAU,gBAAA;CRmsCT;AQlsCD;;EAAU,gBAAA;CRssCT;AQrsCD;;EAAU,gBAAA;CRysCT;AQnsCD;EACE,iBAAA;CRqsCD;AQlsCD;EACE,oBAAA;EACA,gBAAA;EACA,iBAAA;EACA,iBAAA;CRosCD;AQlsCC;EAAA;IACE,gBAAA;GRqsCD;CACF;AQ7rCD;;EAEE,eAAA;CR+rCD;AQ5rCD;;EAEE,eAAA;EACA,0BAAA;CR8rCD;AQ1rCD;EAAuB,iBAAA;CR6rCtB;AQ5rCD;EAAuB,kBAAA;CR+rCtB;AQ9rCD;EAAuB,mBAAA;CRisCtB;AQhsCD;EAAuB,oBAAA;CRmsCtB;AQlsCD;EAAuB,oBAAA;CRqsCtB;AQlsCD;EAAuB,0BAAA;CRqsCtB;AQpsCD;EAAuB,0BAAA;CRusCtB;AQtsCD;EAAuB,2BAAA;CRysCtB;AQtsCD;EACE,eAAA;CRwsCD;AQtsCD;ECvGE,eAAA;CTgzCD;AS/yCC;;EAEE,eAAA;CTizCH;AQ1sCD;EC1GE,eAAA;CTuzCD;AStzCC;;EAEE,eAAA;CTwzCH;AQ9sCD;EC7GE,eAAA;CT8zCD;AS7zCC;;EAEE,eAAA;CT+zCH;AQltCD;EChHE,eAAA;CTq0CD;ASp0CC;;EAEE,eAAA;CTs0CH;AQttCD;ECnHE,eAAA;CT40CD;AS30CC;;EAEE,eAAA;CT60CH;AQttCD;EAGE,YAAA;EE7HA,0BAAA;CVo1CD;AUn1CC;;EAEE,0BAAA;CVq1CH;AQxtCD;EEhIE,0BAAA;CV21CD;AU11CC;;EAEE,0BAAA;CV41CH;AQ5tCD;EEnIE,0BAAA;CVk2CD;AUj2CC;;EAEE,0BAAA;CVm2CH;AQhuCD;EEtIE,0BAAA;CVy2CD;AUx2CC;;EAEE,0BAAA;CV02CH;AQpuCD;EEzIE,0BAAA;CVg3CD;AU/2CC;;EAEE,0BAAA;CVi3CH;AQnuCD;EACE,oBAAA;EACA,oBAAA;EACA,iCAAA;CRquCD;AQ7tCD;;EAEE,cAAA;EACA,oBAAA;CR+tCD;AQluCD;;;;EAMI,iBAAA;CRkuCH;AQ3tCD;EACE,gBAAA;EACA,iBAAA;CR6tCD;AQztCD;EALE,gBAAA;EACA,iBAAA;EAMA,kBAAA;CR4tCD;AQ9tCD;EAKI,sBAAA;EACA,mBAAA;EACA,kBAAA;CR4tCH;AQvtCD;EACE,cAAA;EACA,oBAAA;CRytCD;AQvtCD;;EAEE,wBAAA;CRytCD;AQvtCD;EACE,iBAAA;CRytCD;AQvtCD;EACE,eAAA;CRytCD;AQ5sCC;EAAA;IAEI,YAAA;IACA,aAAA;IACA,YAAA;IACA,kBAAA;IGxNJ,iBAAA;IACA,wBAAA;IACA,oBAAA;GXu6CC;EQttCD;IASI,mBAAA;GRgtCH;CACF;AQtsCD;;EAEE,aAAA;CRwsCD;AQrsCD;EACE,eAAA;EA9IqB,0BAAA;CRs1CtB;AQnsCD;EACE,mBAAA;EACA,iBAAA;EACA,kBAAA;EACA,+BAAA;CRqsCD;AQhsCG;;;EACE,iBAAA;CRosCL;AQ9sCD;;;EAmBI,eAAA;EACA,eAAA;EACA,wBAAA;EACA,eAAA;CRgsCH;AQ9rCG;;;EACE,uBAAA;CRksCL;AQ1rCD;;EAEE,oBAAA;EACA,gBAAA;EACA,kBAAA;EACA,gCAAA;EACA,eAAA;CR4rCD;AQtrCG;;;;;;EAAW,YAAA;CR8rCd;AQ7rCG;;;;;;EACE,uBAAA;CRosCL;AQ9rCD;EACE,oBAAA;EACA,mBAAA;EACA,wBAAA;CRgsCD;AYx+CD;;;;EAIE,+DAAA;CZ0+CD;AYt+CD;EACE,iBAAA;EACA,eAAA;EACA,eAAA;EACA,0BAAA;EACA,mBAAA;CZw+CD;AYp+CD;EACE,iBAAA;EACA,eAAA;EACA,YAAA;EACA,uBAAA;EACA,mBAAA;EACA,uDAAA;EAAA,+CAAA;CZs+CD;AY5+CD;EASI,WAAA;EACA,gBAAA;EACA,iBAAA;EACA,yBAAA;EAAA,iBAAA;CZs+CH;AYj+CD;EACE,eAAA;EACA,eAAA;EACA,iBAAA;EACA,gBAAA;EACA,wBAAA;EACA,eAAA;EACA,sBAAA;EACA,sBAAA;EACA,0BAAA;EACA,uBAAA;EACA,mBAAA;CZm+CD;AY9+CD;EAeI,WAAA;EACA,mBAAA;EACA,eAAA;EACA,sBAAA;EACA,8BAAA;EACA,iBAAA;CZk+CH;AY79CD;EACE,kBAAA;EACA,mBAAA;CZ+9CD;AazhDD;ECHE,oBAAA;EACA,mBAAA;EACA,mBAAA;EACA,kBAAA;Cd+hDD;Aa5hDC;EAAA;IACE,aAAA;Gb+hDD;CACF;Aa9hDC;EAAA;IACE,aAAA;GbiiDD;CACF;AahiDC;EAAA;IACE,cAAA;GbmiDD;CACF;Aa1hDD;ECvBE,oBAAA;EACA,mBAAA;EACA,mBAAA;EACA,kBAAA;CdojDD;AavhDD;ECvBE,oBAAA;EACA,mBAAA;CdijDD;AavhDD;EACE,gBAAA;EACA,eAAA;CbyhDD;Aa3hDD;EAKI,iBAAA;EACA,gBAAA;CbyhDH;AczkDA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ECiBK,mBAAA;EAEA,gBAAA;EAEA,oBAAA;EACA,mBAAA;CfwmDL;Ac9nDA;;;;;;;;;;;;ECuCK,YAAA;CfqmDL;Ac5oDA;EC+CG,YAAA;CfgmDH;Ac/oDA;EC+CG,oBAAA;CfmmDH;AclpDA;EC+CG,oBAAA;CfsmDH;AcrpDA;EC+CG,WAAA;CfymDH;AcxpDA;EC+CG,oBAAA;Cf4mDH;Ac3pDA;EC+CG,oBAAA;Cf+mDH;Ac9pDA;EC+CG,WAAA;CfknDH;AcjqDA;EC+CG,oBAAA;CfqnDH;AcpqDA;EC+CG,oBAAA;CfwnDH;AcvqDA;EC+CG,WAAA;Cf2nDH;Ac1qDA;EC+CG,oBAAA;Cf8nDH;Ac7qDA;EC+CG,mBAAA;CfioDH;AchrDA;EC8DG,YAAA;CfqnDH;AcnrDA;EC8DG,oBAAA;CfwnDH;ActrDA;EC8DG,oBAAA;Cf2nDH;AczrDA;EC8DG,WAAA;Cf8nDH;Ac5rDA;EC8DG,oBAAA;CfioDH;Ac/rDA;EC8DG,oBAAA;CfooDH;AclsDA;EC8DG,WAAA;CfuoDH;AcrsDA;EC8DG,oBAAA;Cf0oDH;AcxsDA;EC8DG,oBAAA;Cf6oDH;Ac3sDA;EC8DG,WAAA;CfgpDH;Ac9sDA;EC8DG,oBAAA;CfmpDH;AcjtDA;EC8DG,mBAAA;CfspDH;AcptDA;ECmEG,YAAA;CfopDH;AcvtDA;ECoDG,WAAA;CfsqDH;Ac1tDA;ECoDG,mBAAA;CfyqDH;Ac7tDA;ECoDG,mBAAA;Cf4qDH;AchuDA;ECoDG,UAAA;Cf+qDH;AcnuDA;ECoDG,mBAAA;CfkrDH;ActuDA;ECoDG,mBAAA;CfqrDH;AczuDA;ECoDG,UAAA;CfwrDH;Ac5uDA;ECoDG,mBAAA;Cf2rDH;Ac/uDA;ECoDG,mBAAA;Cf8rDH;AclvDA;ECoDG,UAAA;CfisDH;AcrvDA;ECoDG,mBAAA;CfosDH;AcxvDA;ECoDG,kBAAA;CfusDH;Ac3vDA;ECyDG,WAAA;CfqsDH;Ac9vDA;ECwEG,kBAAA;CfyrDH;AcjwDA;ECwEG,0BAAA;Cf4rDH;AcpwDA;ECwEG,0BAAA;Cf+rDH;AcvwDA;ECwEG,iBAAA;CfksDH;Ac1wDA;ECwEG,0BAAA;CfqsDH;Ac7wDA;ECwEG,0BAAA;CfwsDH;AchxDA;ECwEG,iBAAA;Cf2sDH;AcnxDA;ECwEG,0BAAA;Cf8sDH;ActxDA;ECwEG,0BAAA;CfitDH;AczxDA;ECwEG,iBAAA;CfotDH;Ac5xDA;ECwEG,0BAAA;CfutDH;Ac/xDA;ECwEG,yBAAA;Cf0tDH;AclyDA;ECwEG,gBAAA;Cf6tDH;Aa5tDD;ECzEC;;;;;;;;;;;;ICuCK,YAAA;Gf6wDH;EcpzDF;IC+CG,YAAA;GfwwDD;EcvzDF;IC+CG,oBAAA;Gf2wDD;Ec1zDF;IC+CG,oBAAA;Gf8wDD;Ec7zDF;IC+CG,WAAA;GfixDD;Ech0DF;IC+CG,oBAAA;GfoxDD;Ecn0DF;IC+CG,oBAAA;GfuxDD;Ect0DF;IC+CG,WAAA;Gf0xDD;Ecz0DF;IC+CG,oBAAA;Gf6xDD;Ec50DF;IC+CG,oBAAA;GfgyDD;Ec/0DF;IC+CG,WAAA;GfmyDD;Ecl1DF;IC+CG,oBAAA;GfsyDD;Ecr1DF;IC+CG,mBAAA;GfyyDD;Ecx1DF;IC8DG,YAAA;Gf6xDD;Ec31DF;IC8DG,oBAAA;GfgyDD;Ec91DF;IC8DG,oBAAA;GfmyDD;Ecj2DF;IC8DG,WAAA;GfsyDD;Ecp2DF;IC8DG,oBAAA;GfyyDD;Ecv2DF;IC8DG,oBAAA;Gf4yDD;Ec12DF;IC8DG,WAAA;Gf+yDD;Ec72DF;IC8DG,oBAAA;GfkzDD;Ech3DF;IC8DG,oBAAA;GfqzDD;Ecn3DF;IC8DG,WAAA;GfwzDD;Ect3DF;IC8DG,oBAAA;Gf2zDD;Ecz3DF;IC8DG,mBAAA;Gf8zDD;Ec53DF;ICmEG,YAAA;Gf4zDD;Ec/3DF;ICoDG,WAAA;Gf80DD;Ecl4DF;ICoDG,mBAAA;Gfi1DD;Ecr4DF;ICoDG,mBAAA;Gfo1DD;Ecx4DF;ICoDG,UAAA;Gfu1DD;Ec34DF;ICoDG,mBAAA;Gf01DD;Ec94DF;ICoDG,mBAAA;Gf61DD;Ecj5DF;ICoDG,UAAA;Gfg2DD;Ecp5DF;ICoDG,mBAAA;Gfm2DD;Ecv5DF;ICoDG,mBAAA;Gfs2DD;Ec15DF;ICoDG,UAAA;Gfy2DD;Ec75DF;ICoDG,mBAAA;Gf42DD;Ech6DF;ICoDG,kBAAA;Gf+2DD;Ecn6DF;ICyDG,WAAA;Gf62DD;Ect6DF;ICwEG,kBAAA;Gfi2DD;Ecz6DF;ICwEG,0BAAA;Gfo2DD;Ec56DF;ICwEG,0BAAA;Gfu2DD;Ec/6DF;ICwEG,iBAAA;Gf02DD;Ecl7DF;ICwEG,0BAAA;Gf62DD;Ecr7DF;ICwEG,0BAAA;Gfg3DD;Ecx7DF;ICwEG,iBAAA;Gfm3DD;Ec37DF;ICwEG,0BAAA;Gfs3DD;Ec97DF;ICwEG,0BAAA;Gfy3DD;Ecj8DF;ICwEG,iBAAA;Gf43DD;Ecp8DF;ICwEG,0BAAA;Gf+3DD;Ecv8DF;ICwEG,yBAAA;Gfk4DD;Ec18DF;ICwEG,gBAAA;Gfq4DD;CACF;Aa53DD;EClFC;;;;;;;;;;;;ICuCK,YAAA;Gfs7DH;Ec79DF;IC+CG,YAAA;Gfi7DD;Ech+DF;IC+CG,oBAAA;Gfo7DD;Ecn+DF;IC+CG,oBAAA;Gfu7DD;Ect+DF;IC+CG,WAAA;Gf07DD;Ecz+DF;IC+CG,oBAAA;Gf67DD;Ec5+DF;IC+CG,oBAAA;Gfg8DD;Ec/+DF;IC+CG,WAAA;Gfm8DD;Ecl/DF;IC+CG,oBAAA;Gfs8DD;Ecr/DF;IC+CG,oBAAA;Gfy8DD;Ecx/DF;IC+CG,WAAA;Gf48DD;Ec3/DF;IC+CG,oBAAA;Gf+8DD;Ec9/DF;IC+CG,mBAAA;Gfk9DD;EcjgEF;IC8DG,YAAA;Gfs8DD;EcpgEF;IC8DG,oBAAA;Gfy8DD;EcvgEF;IC8DG,oBAAA;Gf48DD;Ec1gEF;IC8DG,WAAA;Gf+8DD;Ec7gEF;IC8DG,oBAAA;Gfk9DD;EchhEF;IC8DG,oBAAA;Gfq9DD;EcnhEF;IC8DG,WAAA;Gfw9DD;EcthEF;IC8DG,oBAAA;Gf29DD;EczhEF;IC8DG,oBAAA;Gf89DD;Ec5hEF;IC8DG,WAAA;Gfi+DD;Ec/hEF;IC8DG,oBAAA;Gfo+DD;EcliEF;IC8DG,mBAAA;Gfu+DD;EcriEF;ICmEG,YAAA;Gfq+DD;EcxiEF;ICoDG,WAAA;Gfu/DD;Ec3iEF;ICoDG,mBAAA;Gf0/DD;Ec9iEF;ICoDG,mBAAA;Gf6/DD;EcjjEF;ICoDG,UAAA;GfggED;EcpjEF;ICoDG,mBAAA;GfmgED;EcvjEF;ICoDG,mBAAA;GfsgED;Ec1jEF;ICoDG,UAAA;GfygED;Ec7jEF;ICoDG,mBAAA;Gf4gED;EchkEF;ICoDG,mBAAA;Gf+gED;EcnkEF;ICoDG,UAAA;GfkhED;EctkEF;ICoDG,mBAAA;GfqhED;EczkEF;ICoDG,kBAAA;GfwhED;Ec5kEF;ICyDG,WAAA;GfshED;Ec/kEF;ICwEG,kBAAA;Gf0gED;EcllEF;ICwEG,0BAAA;Gf6gED;EcrlEF;ICwEG,0BAAA;GfghED;EcxlEF;ICwEG,iBAAA;GfmhED;Ec3lEF;ICwEG,0BAAA;GfshED;Ec9lEF;ICwEG,0BAAA;GfyhED;EcjmEF;ICwEG,iBAAA;Gf4hED;EcpmEF;ICwEG,0BAAA;Gf+hED;EcvmEF;ICwEG,0BAAA;GfkiED;Ec1mEF;ICwEG,iBAAA;GfqiED;Ec7mEF;ICwEG,0BAAA;GfwiED;EchnEF;ICwEG,yBAAA;Gf2iED;EcnnEF;ICwEG,gBAAA;Gf8iED;CACF;Aa5hED;EC3FC;;;;;;;;;;;;ICuCK,YAAA;Gf+lEH;EctoEF;IC+CG,YAAA;Gf0lED;EczoEF;IC+CG,oBAAA;Gf6lED;Ec5oEF;IC+CG,oBAAA;GfgmED;Ec/oEF;IC+CG,WAAA;GfmmED;EclpEF;IC+CG,oBAAA;GfsmED;EcrpEF;IC+CG,oBAAA;GfymED;EcxpEF;IC+CG,WAAA;Gf4mED;Ec3pEF;IC+CG,oBAAA;Gf+mED;Ec9pEF;IC+CG,oBAAA;GfknED;EcjqEF;IC+CG,WAAA;GfqnED;EcpqEF;IC+CG,oBAAA;GfwnED;EcvqEF;IC+CG,mBAAA;Gf2nED;Ec1qEF;IC8DG,YAAA;Gf+mED;Ec7qEF;IC8DG,oBAAA;GfknED;EchrEF;IC8DG,oBAAA;GfqnED;EcnrEF;IC8DG,WAAA;GfwnED;EctrEF;IC8DG,oBAAA;Gf2nED;EczrEF;IC8DG,oBAAA;Gf8nED;Ec5rEF;IC8DG,WAAA;GfioED;Ec/rEF;IC8DG,oBAAA;GfooED;EclsEF;IC8DG,oBAAA;GfuoED;EcrsEF;IC8DG,WAAA;Gf0oED;EcxsEF;IC8DG,oBAAA;Gf6oED;Ec3sEF;IC8DG,mBAAA;GfgpED;Ec9sEF;ICmEG,YAAA;Gf8oED;EcjtEF;ICoDG,WAAA;GfgqED;EcptEF;ICoDG,mBAAA;GfmqED;EcvtEF;ICoDG,mBAAA;GfsqED;Ec1tEF;ICoDG,UAAA;GfyqED;Ec7tEF;ICoDG,mBAAA;Gf4qED;EchuEF;ICoDG,mBAAA;Gf+qED;EcnuEF;ICoDG,UAAA;GfkrED;EctuEF;ICoDG,mBAAA;GfqrED;EczuEF;ICoDG,mBAAA;GfwrED;Ec5uEF;ICoDG,UAAA;Gf2rED;Ec/uEF;ICoDG,mBAAA;Gf8rED;EclvEF;ICoDG,kBAAA;GfisED;EcrvEF;ICyDG,WAAA;Gf+rED;EcxvEF;ICwEG,kBAAA;GfmrED;Ec3vEF;ICwEG,0BAAA;GfsrED;Ec9vEF;ICwEG,0BAAA;GfyrED;EcjwEF;ICwEG,iBAAA;Gf4rED;EcpwEF;ICwEG,0BAAA;Gf+rED;EcvwEF;ICwEG,0BAAA;GfksED;Ec1wEF;ICwEG,iBAAA;GfqsED;Ec7wEF;ICwEG,0BAAA;GfwsED;EchxEF;ICwEG,0BAAA;Gf2sED;EcnxEF;ICwEG,iBAAA;Gf8sED;EctxEF;ICwEG,0BAAA;GfitED;EczxEF;ICwEG,yBAAA;GfotED;Ec5xEF;ICwEG,gBAAA;GfutED;CACF;AgBzxED;EACE,8BAAA;ChB2xED;AgB5xED;EAQI,iBAAA;EACA,sBAAA;EACA,YAAA;ChBuxEH;AgBlxEG;;EACE,iBAAA;EACA,oBAAA;EACA,YAAA;ChBqxEL;AgBhxED;EACE,iBAAA;EACA,oBAAA;EACA,eAAA;EACA,iBAAA;ChBkxED;AgB/wED;EACE,iBAAA;ChBixED;AgB3wED;EACE,YAAA;EACA,gBAAA;EACA,oBAAA;ChB6wED;AgBhxED;;;;;;EAWQ,aAAA;EACA,wBAAA;EACA,oBAAA;EACA,2BAAA;ChB6wEP;AgB3xED;EAoBI,uBAAA;EACA,8BAAA;ChB0wEH;AgB/xED;;;;;;EA8BQ,cAAA;ChBywEP;AgBvyED;EAoCI,2BAAA;ChBswEH;AgB1yED;EAyCI,uBAAA;ChBowEH;AgB7vED;;;;;;EAOQ,aAAA;ChB8vEP;AgBnvED;EACE,uBAAA;ChBqvED;AgBtvED;;;;;;EAQQ,uBAAA;ChBsvEP;AgB9vED;;EAeM,yBAAA;ChBmvEL;AgBzuED;EAEI,0BAAA;ChB0uEH;AgBjuED;EAEI,0BAAA;ChBkuEH;AiBj3EC;;;;;;;;;;;;EAOI,0BAAA;CjBw3EL;AiBl3EC;;;;;EAMI,0BAAA;CjBm3EL;AiBt4EC;;;;;;;;;;;;EAOI,0BAAA;CjB64EL;AiBv4EC;;;;;EAMI,0BAAA;CjBw4EL;AiB35EC;;;;;;;;;;;;EAOI,0BAAA;CjBk6EL;AiB55EC;;;;;EAMI,0BAAA;CjB65EL;AiBh7EC;;;;;;;;;;;;EAOI,0BAAA;CjBu7EL;AiBj7EC;;;;;EAMI,0BAAA;CjBk7EL;AiBr8EC;;;;;;;;;;;;EAOI,0BAAA;CjB48EL;AiBt8EC;;;;;EAMI,0BAAA;CjBu8EL;AgBnzED;EACE,kBAAA;EACA,iBAAA;ChBqzED;AgBnzEC;EAAA;IACE,YAAA;IACA,oBAAA;IACA,mBAAA;IACA,6CAAA;IACA,uBAAA;GhBszED;EgB3zED;IASI,iBAAA;GhBqzEH;EgB9zED;;;;;;IAkBU,oBAAA;GhBozET;EgBt0ED;IA0BI,UAAA;GhB+yEH;EgBz0ED;;;;;;IAmCU,eAAA;GhB8yET;EgBj1ED;;;;;;IAuCU,gBAAA;GhBkzET;EgBz1ED;;;;IAoDU,iBAAA;GhB2yET;CACF;AkBrgFD;EAIE,aAAA;EACA,WAAA;EACA,UAAA;EACA,UAAA;ClBogFD;AkBjgFD;EACE,eAAA;EACA,YAAA;EACA,WAAA;EACA,oBAAA;EACA,gBAAA;EACA,qBAAA;EACA,eAAA;EACA,UAAA;EACA,iCAAA;ClBmgFD;AkBhgFD;EACE,sBAAA;EACA,gBAAA;EACA,mBAAA;EACA,iBAAA;ClBkgFD;AkBx/ED;Eb6BE,+BAAA;EACG,4BAAA;EACK,uBAAA;EarBR,yBAAA;EACA,sBAAA;EAAA,iBAAA;ClBo/ED;AkBh/ED;;EAEE,gBAAA;EACA,mBAAA;EACA,oBAAA;ClBk/ED;AkB5+EC;;;;;;EAGE,oBAAA;ClBi/EH;AkB7+ED;EACE,eAAA;ClB++ED;AkB3+ED;EACE,eAAA;EACA,YAAA;ClB6+ED;AkBz+ED;;EAEE,aAAA;ClB2+ED;AkBv+ED;;;EZ1FE,2CAAA;EACA,qBAAA;CNskFD;AkBt+ED;EACE,eAAA;EACA,iBAAA;EACA,gBAAA;EACA,wBAAA;EACA,eAAA;ClBw+ED;AkB98ED;EACE,eAAA;EACA,YAAA;EACA,aAAA;EACA,kBAAA;EACA,gBAAA;EACA,wBAAA;EACA,eAAA;EACA,uBAAA;EACA,uBAAA;EACA,uBAAA;EACA,mBAAA;Eb3EA,yDAAA;EACQ,iDAAA;EAyHR,+EAAA;EACK,0EAAA;EACG,uFAAA;EAAA,+EAAA;EAAA,uEAAA;EAAA,4GAAA;CLo6ET;AmB9iFC;EACE,sBAAA;EACA,WAAA;EdYF,0FAAA;EACQ,kFAAA;CLqiFT;AKpgFC;EACE,YAAA;EACA,WAAA;CLsgFH;AKpgFC;EAA0B,YAAA;CLugF3B;AKtgFC;EAAgC,YAAA;CLygFjC;AkB19EC;EACE,8BAAA;EACA,UAAA;ClB49EH;AkBp9EC;;;EAGE,0BAAA;EACA,WAAA;ClBs9EH;AkBn9EC;;EAEE,oBAAA;ClBq9EH;AkBj9EC;EACE,aAAA;ClBm9EH;AkBr8ED;EAKI;;;;IACE,kBAAA;GlBs8EH;EkBn8EC;;;;;;;;IAEE,kBAAA;GlB28EH;EkBx8EC;;;;;;;;IAEE,kBAAA;GlBg9EH;CACF;AkBt8ED;EACE,oBAAA;ClBw8ED;AkBh8ED;;EAEE,mBAAA;EACA,eAAA;EACA,iBAAA;EACA,oBAAA;ClBk8ED;AkB/7EC;;;;EAGI,oBAAA;ClBk8EL;AkB78ED;;EAgBI,iBAAA;EACA,mBAAA;EACA,iBAAA;EACA,iBAAA;EACA,gBAAA;ClBi8EH;AkB97ED;;;;EAIE,mBAAA;EACA,mBAAA;EACA,mBAAA;ClBg8ED;AkB77ED;;EAEE,iBAAA;ClB+7ED;AkB37ED;;EAEE,mBAAA;EACA,sBAAA;EACA,mBAAA;EACA,iBAAA;EACA,iBAAA;EACA,uBAAA;EACA,gBAAA;ClB67ED;AkB17EC;;;;EAEE,oBAAA;ClB87EH;AkB37ED;;EAEE,cAAA;EACA,kBAAA;ClB67ED;AkBp7ED;EACE,iBAAA;EAEA,iBAAA;EACA,oBAAA;EAEA,iBAAA;ClBo7ED;AkBl7EC;;EAEE,iBAAA;EACA,gBAAA;ClBo7EH;AkBv6ED;EC3PE,aAAA;EACA,kBAAA;EACA,gBAAA;EACA,iBAAA;EACA,mBAAA;CnBqqFD;AmBnqFC;EACE,aAAA;EACA,kBAAA;CnBqqFH;AmBlqFC;;EAEE,aAAA;CnBoqFH;AkBn7ED;EAEI,aAAA;EACA,kBAAA;EACA,gBAAA;EACA,iBAAA;EACA,mBAAA;ClBo7EH;AkB17ED;EASI,aAAA;EACA,kBAAA;ClBo7EH;AkB97ED;;EAcI,aAAA;ClBo7EH;AkBl8ED;EAiBI,aAAA;EACA,iBAAA;EACA,kBAAA;EACA,gBAAA;EACA,iBAAA;ClBo7EH;AkBh7ED;ECvRE,aAAA;EACA,mBAAA;EACA,gBAAA;EACA,uBAAA;EACA,mBAAA;CnB0sFD;AmBxsFC;EACE,aAAA;EACA,kBAAA;CnB0sFH;AmBvsFC;;EAEE,aAAA;CnBysFH;AkB57ED;EAEI,aAAA;EACA,mBAAA;EACA,gBAAA;EACA,uBAAA;EACA,mBAAA;ClB67EH;AkBn8ED;EASI,aAAA;EACA,kBAAA;ClB67EH;AkBv8ED;;EAcI,aAAA;ClB67EH;AkB38ED;EAiBI,aAAA;EACA,iBAAA;EACA,mBAAA;EACA,gBAAA;EACA,uBAAA;ClB67EH;AkBp7ED;EAEE,mBAAA;ClBq7ED;AkBv7ED;EAMI,sBAAA;ClBo7EH;AkBh7ED;EACE,mBAAA;EACA,OAAA;EACA,SAAA;EACA,WAAA;EACA,eAAA;EACA,YAAA;EACA,aAAA;EACA,kBAAA;EACA,mBAAA;EACA,qBAAA;ClBk7ED;AkBh7ED;;;EAGE,YAAA;EACA,aAAA;EACA,kBAAA;ClBk7ED;AkBh7ED;;;EAGE,YAAA;EACA,aAAA;EACA,kBAAA;ClBk7ED;AkB96ED;;;;;;;;;;EClZI,eAAA;CnB40FH;AkB17ED;EC9YI,sBAAA;EdiDF,yDAAA;EACQ,iDAAA;CL2xFT;AmB30FG;EACE,sBAAA;Ed8CJ,0EAAA;EACQ,kEAAA;CLgyFT;AkBp8ED;ECpYI,eAAA;EACA,0BAAA;EACA,sBAAA;CnB20FH;AkBz8ED;EC9XI,eAAA;CnB00FH;AkBz8ED;;;;;;;;;;ECrZI,eAAA;CnB02FH;AkBr9ED;ECjZI,sBAAA;EdiDF,yDAAA;EACQ,iDAAA;CLyzFT;AmBz2FG;EACE,sBAAA;Ed8CJ,0EAAA;EACQ,kEAAA;CL8zFT;AkB/9ED;ECvYI,eAAA;EACA,0BAAA;EACA,sBAAA;CnBy2FH;AkBp+ED;ECjYI,eAAA;CnBw2FH;AkBp+ED;;;;;;;;;;ECxZI,eAAA;CnBw4FH;AkBh/ED;ECpZI,sBAAA;EdiDF,yDAAA;EACQ,iDAAA;CLu1FT;AmBv4FG;EACE,sBAAA;Ed8CJ,0EAAA;EACQ,kEAAA;CL41FT;AkB1/ED;EC1YI,eAAA;EACA,0BAAA;EACA,sBAAA;CnBu4FH;AkB//ED;ECpYI,eAAA;CnBs4FH;AkB3/EC;EACE,UAAA;ClB6/EH;AkB3/EC;EACE,OAAA;ClB6/EH;AkBn/ED;EACE,eAAA;EACA,gBAAA;EACA,oBAAA;EACA,eAAA;ClBq/ED;AkBn+EC;EAAA;IAGI,sBAAA;IACA,iBAAA;IACA,uBAAA;GlBo+EH;EkBz+ED;IAUI,sBAAA;IACA,YAAA;IACA,uBAAA;GlBk+EH;EkB9+ED;IAiBI,sBAAA;GlBg+EH;EkBj/ED;IAqBI,sBAAA;IACA,uBAAA;GlB+9EH;EkBr/ED;;;IA2BM,YAAA;GlB+9EL;EkB1/ED;IAiCI,YAAA;GlB49EH;EkB7/ED;IAqCI,iBAAA;IACA,uBAAA;GlB29EH;EkBjgFD;;IA6CI,sBAAA;IACA,cAAA;IACA,iBAAA;IACA,uBAAA;GlBw9EH;EkBxgFD;;IAmDM,gBAAA;GlBy9EL;EkB5gFD;;IAwDI,mBAAA;IACA,eAAA;GlBw9EH;EkBjhFD;IA8DI,OAAA;GlBs9EH;CACF;AkB58ED;;;;EASI,iBAAA;EACA,cAAA;EACA,iBAAA;ClBy8EH;AkBp9ED;;EAiBI,iBAAA;ClBu8EH;AkBx9ED;EJ9gBE,oBAAA;EACA,mBAAA;Cdy+FD;AkBj8EC;EAAA;IAEI,iBAAA;IACA,iBAAA;IACA,kBAAA;GlBm8EH;CACF;AkBn+ED;EAwCI,YAAA;ClB87EH;AkBt7EG;EAAA;IAEI,kBAAA;IACA,gBAAA;GlBw7EL;CACF;AkBp7EG;EAAA;IAEI,iBAAA;IACA,gBAAA;GlBs7EL;CACF;AoBrgGD;EACE,sBAAA;EACA,iBAAA;EACA,oBAAA;EACA,mBAAA;EACA,oBAAA;EACA,uBAAA;EACA,+BAAA;EAAA,2BAAA;EACA,gBAAA;EACA,uBAAA;EACA,8BAAA;ECoCA,kBAAA;EACA,gBAAA;EACA,wBAAA;EACA,mBAAA;EhBqKA,0BAAA;EACG,uBAAA;EACC,sBAAA;EACI,kBAAA;CLg0FT;AoBxgGG;;;;;;EdrBF,2CAAA;EACA,qBAAA;CNqiGD;AoB3gGC;;;EAGE,YAAA;EACA,sBAAA;CpB6gGH;AoB1gGC;;EAEE,uBAAA;EACA,WAAA;Ef2BF,yDAAA;EACQ,iDAAA;CLk/FT;AoB1gGC;;;EAGE,oBAAA;EE9CF,0BAAA;EACA,cAAA;EjBiEA,yBAAA;EACQ,iBAAA;CL2/FT;AoB1gGG;;EAEE,qBAAA;CpB4gGL;AoBngGD;EC7DE,YAAA;EACA,uBAAA;EACA,mBAAA;CrBmkGD;AqBjkGC;;EAEE,YAAA;EACA,0BAAA;EACA,sBAAA;CrBmkGH;AqBjkGC;EACE,YAAA;EACA,0BAAA;EACA,sBAAA;CrBmkGH;AqBjkGC;;;EAGE,YAAA;EACA,0BAAA;EACA,uBAAA;EACA,sBAAA;CrBmkGH;AqBjkGG;;;;;;;;;EAGE,YAAA;EACA,0BAAA;EACA,sBAAA;CrBykGL;AqBnkGG;;;;;;;;;EAGE,uBAAA;EACA,mBAAA;CrB2kGL;AoBpjGD;EClBI,YAAA;EACA,uBAAA;CrBykGH;AoBrjGD;EChEE,YAAA;EACA,0BAAA;EACA,sBAAA;CrBwnGD;AqBtnGC;;EAEE,YAAA;EACA,0BAAA;EACA,sBAAA;CrBwnGH;AqBtnGC;EACE,YAAA;EACA,0BAAA;EACA,sBAAA;CrBwnGH;AqBtnGC;;;EAGE,YAAA;EACA,0BAAA;EACA,uBAAA;EACA,sBAAA;CrBwnGH;AqBtnGG;;;;;;;;;EAGE,YAAA;EACA,0BAAA;EACA,sBAAA;CrB8nGL;AqBxnGG;;;;;;;;;EAGE,0BAAA;EACA,sBAAA;CrBgoGL;AoBtmGD;ECrBI,eAAA;EACA,uBAAA;CrB8nGH;AoBtmGD;ECpEE,YAAA;EACA,0BAAA;EACA,sBAAA;CrB6qGD;AqB3qGC;;EAEE,YAAA;EACA,0BAAA;EACA,sBAAA;CrB6qGH;AqB3qGC;EACE,YAAA;EACA,0BAAA;EACA,sBAAA;CrB6qGH;AqB3qGC;;;EAGE,YAAA;EACA,0BAAA;EACA,uBAAA;EACA,sBAAA;CrB6qGH;AqB3qGG;;;;;;;;;EAGE,YAAA;EACA,0BAAA;EACA,sBAAA;CrBmrGL;AqB7qGG;;;;;;;;;EAGE,0BAAA;EACA,sBAAA;CrBqrGL;AoBvpGD;ECzBI,eAAA;EACA,uBAAA;CrBmrGH;AoBvpGD;ECxEE,YAAA;EACA,0BAAA;EACA,sBAAA;CrBkuGD;AqBhuGC;;EAEE,YAAA;EACA,0BAAA;EACA,sBAAA;CrBkuGH;AqBhuGC;EACE,YAAA;EACA,0BAAA;EACA,sBAAA;CrBkuGH;AqBhuGC;;;EAGE,YAAA;EACA,0BAAA;EACA,uBAAA;EACA,sBAAA;CrBkuGH;AqBhuGG;;;;;;;;;EAGE,YAAA;EACA,0BAAA;EACA,sBAAA;CrBwuGL;AqBluGG;;;;;;;;;EAGE,0BAAA;EACA,sBAAA;CrB0uGL;AoBxsGD;EC7BI,eAAA;EACA,uBAAA;CrBwuGH;AoBxsGD;EC5EE,YAAA;EACA,0BAAA;EACA,sBAAA;CrBuxGD;AqBrxGC;;EAEE,YAAA;EACA,0BAAA;EACA,sBAAA;CrBuxGH;AqBrxGC;EACE,YAAA;EACA,0BAAA;EACA,sBAAA;CrBuxGH;AqBrxGC;;;EAGE,YAAA;EACA,0BAAA;EACA,uBAAA;EACA,sBAAA;CrBuxGH;AqBrxGG;;;;;;;;;EAGE,YAAA;EACA,0BAAA;EACA,sBAAA;CrB6xGL;AqBvxGG;;;;;;;;;EAGE,0BAAA;EACA,sBAAA;CrB+xGL;AoBzvGD;ECjCI,eAAA;EACA,uBAAA;CrB6xGH;AoBzvGD;EChFE,YAAA;EACA,0BAAA;EACA,sBAAA;CrB40GD;AqB10GC;;EAEE,YAAA;EACA,0BAAA;EACA,sBAAA;CrB40GH;AqB10GC;EACE,YAAA;EACA,0BAAA;EACA,sBAAA;CrB40GH;AqB10GC;;;EAGE,YAAA;EACA,0BAAA;EACA,uBAAA;EACA,sBAAA;CrB40GH;AqB10GG;;;;;;;;;EAGE,YAAA;EACA,0BAAA;EACA,sBAAA;CrBk1GL;AqB50GG;;;;;;;;;EAGE,0BAAA;EACA,sBAAA;CrBo1GL;AoB1yGD;ECrCI,eAAA;EACA,uBAAA;CrBk1GH;AoBryGD;EACE,iBAAA;EACA,eAAA;EACA,iBAAA;CpBuyGD;AoBryGC;;;;;EAKE,8BAAA;EfnCF,yBAAA;EACQ,iBAAA;CL20GT;AoBtyGC;;;;EAIE,0BAAA;CpBwyGH;AoBtyGC;;EAEE,eAAA;EACA,2BAAA;EACA,8BAAA;CpBwyGH;AoBpyGG;;;;EAEE,eAAA;EACA,sBAAA;CpBwyGL;AoB/xGD;;EC9EE,mBAAA;EACA,gBAAA;EACA,uBAAA;EACA,mBAAA;CrBi3GD;AoBlyGD;;EClFE,kBAAA;EACA,gBAAA;EACA,iBAAA;EACA,mBAAA;CrBw3GD;AoBryGD;;ECtFE,iBAAA;EACA,gBAAA;EACA,iBAAA;EACA,mBAAA;CrB+3GD;AoBpyGD;EACE,eAAA;EACA,YAAA;CpBsyGD;AoBlyGD;EACE,gBAAA;CpBoyGD;AoB7xGC;;;EACE,YAAA;CpBiyGH;AuB37GD;EACE,WAAA;ElBoLA,yCAAA;EACK,oCAAA;EACG,iCAAA;CL0wGT;AuB77GC;EACE,WAAA;CvB+7GH;AuB37GD;EACE,cAAA;CvB67GD;AuB37GC;EAAY,eAAA;CvB87Gb;AuB77GC;EAAY,mBAAA;CvBg8Gb;AuB/7GC;EAAY,yBAAA;CvBk8Gb;AuB/7GD;EACE,mBAAA;EACA,UAAA;EACA,iBAAA;ElBsKA,gDAAA;EACQ,2CAAA;EAAA,wCAAA;EAOR,mCAAA;EACQ,8BAAA;EAAA,2BAAA;EAGR,yCAAA;EACQ,oCAAA;EAAA,iCAAA;CLoxGT;AwBh+GD;EACE,sBAAA;EACA,SAAA;EACA,UAAA;EACA,iBAAA;EACA,uBAAA;EACA,uBAAA;EACA,yBAAA;EACA,oCAAA;EACA,mCAAA;CxBk+GD;AwB99GD;;EAEE,mBAAA;CxBg+GD;AwB59GD;EACE,WAAA;CxB89GD;AwB19GD;EACE,mBAAA;EACA,UAAA;EACA,QAAA;EACA,cAAA;EACA,cAAA;EACA,YAAA;EACA,iBAAA;EACA,eAAA;EACA,gBAAA;EACA,gBAAA;EACA,iBAAA;EACA,iBAAA;EACA,uBAAA;EACA,6BAAA;EACA,uBAAA;EACA,sCAAA;EACA,mBAAA;EnBuBA,oDAAA;EACQ,4CAAA;CLs8GT;AwBx9GC;EACE,SAAA;EACA,WAAA;CxB09GH;AwBn/GD;ECzBE,YAAA;EACA,cAAA;EACA,iBAAA;EACA,0BAAA;CzB+gHD;AwBz/GD;EAmCI,eAAA;EACA,kBAAA;EACA,YAAA;EACA,iBAAA;EACA,wBAAA;EACA,eAAA;EACA,oBAAA;CxBy9GH;AwBv9GG;;EAEE,eAAA;EACA,sBAAA;EACA,0BAAA;CxBy9GL;AwBl9GC;;;EAGE,YAAA;EACA,sBAAA;EACA,0BAAA;EACA,WAAA;CxBo9GH;AwB38GC;;;EAGE,eAAA;CxB68GH;AwBz8GC;;EAEE,sBAAA;EACA,oBAAA;EACA,8BAAA;EACA,uBAAA;EEzGF,oEAAA;C1BqjHD;AwBt8GD;EAGI,eAAA;CxBs8GH;AwBz8GD;EAQI,WAAA;CxBo8GH;AwB57GD;EACE,SAAA;EACA,WAAA;CxB87GD;AwBt7GD;EACE,YAAA;EACA,QAAA;CxBw7GD;AwBp7GD;EACE,eAAA;EACA,kBAAA;EACA,gBAAA;EACA,wBAAA;EACA,eAAA;EACA,oBAAA;CxBs7GD;AwBl7GD;EACE,gBAAA;EACA,OAAA;EACA,SAAA;EACA,UAAA;EACA,QAAA;EACA,aAAA;CxBo7GD;AwBh7GD;EACE,SAAA;EACA,WAAA;CxBk7GD;AwB16GD;;EAII,YAAA;EACA,cAAA;EACA,0BAAA;EACA,4BAAA;CxB06GH;AwBj7GD;;EAWI,UAAA;EACA,aAAA;EACA,mBAAA;CxB06GH;AwBj6GD;EACE;IApEA,SAAA;IACA,WAAA;GxBw+GC;EwBr6GD;IA1DA,YAAA;IACA,QAAA;GxBk+GC;CACF;A2B7mHD;;EAEE,mBAAA;EACA,sBAAA;EACA,uBAAA;C3B+mHD;A2BnnHD;;EAMI,mBAAA;EACA,YAAA;C3BinHH;A2B/mHG;;;;;;;;EAIE,WAAA;C3BqnHL;A2B/mHD;;;;EAKI,kBAAA;C3BgnHH;A2B3mHD;EACE,kBAAA;C3B6mHD;A2B9mHD;;;EAOI,YAAA;C3B4mHH;A2BnnHD;;;EAYI,iBAAA;C3B4mHH;A2BxmHD;EACE,iBAAA;C3B0mHD;A2BtmHD;EACE,eAAA;C3BwmHD;A2BvmHC;ECpDA,2BAAA;EACA,8BAAA;C5B8pHD;A2BtmHD;;ECjDE,0BAAA;EACA,6BAAA;C5B2pHD;A2BrmHD;EACE,YAAA;C3BumHD;A2BrmHD;EACE,iBAAA;C3BumHD;A2BrmHD;;ECrEE,2BAAA;EACA,8BAAA;C5B8qHD;A2BpmHD;ECnEE,0BAAA;EACA,6BAAA;C5B0qHD;A2BnmHD;;EAEE,WAAA;C3BqmHD;A2BplHD;EACE,mBAAA;EACA,kBAAA;C3BslHD;A2BplHD;EACE,oBAAA;EACA,mBAAA;C3BslHD;A2BjlHD;EtB/CE,yDAAA;EACQ,iDAAA;CLmoHT;A2BjlHC;EtBnDA,yBAAA;EACQ,iBAAA;CLuoHT;A2B9kHD;EACE,eAAA;C3BglHD;A2B7kHD;EACE,wBAAA;EACA,uBAAA;C3B+kHD;A2B5kHD;EACE,wBAAA;C3B8kHD;A2BvkHD;;;EAII,eAAA;EACA,YAAA;EACA,YAAA;EACA,gBAAA;C3BwkHH;A2B/kHD;EAcM,YAAA;C3BokHL;A2BllHD;;;;EAsBI,iBAAA;EACA,eAAA;C3BkkHH;A2B7jHC;EACE,iBAAA;C3B+jHH;A2B7jHC;EC7KA,4BAAA;EACA,6BAAA;EAOA,8BAAA;EACA,6BAAA;C5BuuHD;A2B/jHC;ECjLA,0BAAA;EACA,2BAAA;EAOA,gCAAA;EACA,+BAAA;C5B6uHD;A2BhkHD;EACE,iBAAA;C3BkkHD;A2BhkHD;;ECjLE,8BAAA;EACA,6BAAA;C5BqvHD;A2B/jHD;EC/LE,0BAAA;EACA,2BAAA;C5BiwHD;A2B3jHD;EACE,eAAA;EACA,YAAA;EACA,oBAAA;EACA,0BAAA;C3B6jHD;A2BjkHD;;EAOI,oBAAA;EACA,YAAA;EACA,UAAA;C3B8jHH;A2BvkHD;EAYI,YAAA;C3B8jHH;A2B1kHD;EAgBI,WAAA;C3B6jHH;A2B5iHD;;;;EAKM,mBAAA;EACA,uBAAA;EACA,qBAAA;C3B6iHL;A6BvxHD;EACE,mBAAA;EACA,eAAA;EACA,0BAAA;C7ByxHD;A6BtxHC;EACE,YAAA;EACA,iBAAA;EACA,gBAAA;C7BwxHH;A6BjyHD;EAeI,mBAAA;EACA,WAAA;EAKA,YAAA;EAEA,YAAA;EACA,iBAAA;C7BgxHH;A6B9wHG;EACE,WAAA;C7BgxHL;A6BtwHD;;;EVwBE,aAAA;EACA,mBAAA;EACA,gBAAA;EACA,uBAAA;EACA,mBAAA;CnBmvHD;AmBjvHC;;;EACE,aAAA;EACA,kBAAA;CnBqvHH;AmBlvHC;;;;;;EAEE,aAAA;CnBwvHH;A6BxxHD;;;EVmBE,aAAA;EACA,kBAAA;EACA,gBAAA;EACA,iBAAA;EACA,mBAAA;CnB0wHD;AmBxwHC;;;EACE,aAAA;EACA,kBAAA;CnB4wHH;AmBzwHC;;;;;;EAEE,aAAA;CnB+wHH;A6BtyHD;;;EAGE,oBAAA;C7BwyHD;A6BtyHC;;;EACE,iBAAA;C7B0yHH;A6BtyHD;;EAEE,UAAA;EACA,oBAAA;EACA,uBAAA;C7BwyHD;A6BnyHD;EACE,kBAAA;EACA,gBAAA;EACA,iBAAA;EACA,eAAA;EACA,eAAA;EACA,mBAAA;EACA,0BAAA;EACA,uBAAA;EACA,mBAAA;C7BqyHD;A6BlyHC;EACE,kBAAA;EACA,gBAAA;EACA,mBAAA;C7BoyHH;A6BlyHC;EACE,mBAAA;EACA,gBAAA;EACA,mBAAA;C7BoyHH;A6BxzHD;;EA0BI,cAAA;C7BkyHH;A6B7xHD;;;;;;;EDtGE,2BAAA;EACA,8BAAA;C5B44HD;A6B9xHD;EACE,gBAAA;C7BgyHD;A6B9xHD;;;;;;;ED1GE,0BAAA;EACA,6BAAA;C5Bi5HD;A6B/xHD;EACE,eAAA;C7BiyHD;A6B5xHD;EACE,mBAAA;EAGA,aAAA;EACA,oBAAA;C7B4xHD;A6BjyHD;EAUI,mBAAA;C7B0xHH;A6BpyHD;EAYM,kBAAA;C7B2xHL;A6BxxHG;;;EAGE,WAAA;C7B0xHL;A6BrxHC;;EAGI,mBAAA;C7BsxHL;A6BnxHC;;EAGI,WAAA;EACA,kBAAA;C7BoxHL;A8Bn7HD;EACE,gBAAA;EACA,iBAAA;EACA,iBAAA;C9Bq7HD;A8Bx7HD;EAOI,mBAAA;EACA,eAAA;C9Bo7HH;A8B57HD;EAWM,mBAAA;EACA,eAAA;EACA,mBAAA;C9Bo7HL;A8Bn7HK;;EAEE,sBAAA;EACA,0BAAA;C9Bq7HP;A8Bh7HG;EACE,eAAA;C9Bk7HL;A8Bh7HK;;EAEE,eAAA;EACA,sBAAA;EACA,oBAAA;EACA,8BAAA;C9Bk7HP;A8B36HG;;;EAGE,0BAAA;EACA,sBAAA;C9B66HL;A8Bt9HD;ELLE,YAAA;EACA,cAAA;EACA,iBAAA;EACA,0BAAA;CzB89HD;A8B59HD;EA0DI,gBAAA;C9Bq6HH;A8B55HD;EACE,8BAAA;C9B85HD;A8B/5HD;EAGI,YAAA;EAEA,oBAAA;C9B85HH;A8Bn6HD;EASM,kBAAA;EACA,wBAAA;EACA,8BAAA;EACA,2BAAA;C9B65HL;A8B55HK;EACE,mCAAA;C9B85HP;A8Bx5HK;;;EAGE,eAAA;EACA,gBAAA;EACA,uBAAA;EACA,uBAAA;EACA,iCAAA;C9B05HP;A8Br5HC;EAqDA,YAAA;EA8BA,iBAAA;C9Bs0HD;A8Bz5HC;EAwDE,YAAA;C9Bo2HH;A8B55HC;EA0DI,mBAAA;EACA,mBAAA;C9Bq2HL;A8Bh6HC;EAgEE,UAAA;EACA,WAAA;C9Bm2HH;A8Bh2HC;EAAA;IAEI,oBAAA;IACA,UAAA;G9Bk2HH;E8Br2HD;IAKM,iBAAA;G9Bm2HL;CACF;A8B76HC;EAuFE,gBAAA;EACA,mBAAA;C9By1HH;A8Bj7HC;;;EA8FE,uBAAA;C9Bw1HH;A8Br1HC;EAAA;IAEI,8BAAA;IACA,2BAAA;G9Bu1HH;E8B11HD;;;IAQI,0BAAA;G9Bu1HH;CACF;A8Bx7HD;EAEI,YAAA;C9By7HH;A8B37HD;EAMM,mBAAA;C9Bw7HL;A8B97HD;EASM,iBAAA;C9Bw7HL;A8Bn7HK;;;EAGE,YAAA;EACA,0BAAA;C9Bq7HP;A8B76HD;EAEI,YAAA;C9B86HH;A8Bh7HD;EAIM,gBAAA;EACA,eAAA;C9B+6HL;A8Bn6HD;EACE,YAAA;C9Bq6HD;A8Bt6HD;EAII,YAAA;C9Bq6HH;A8Bz6HD;EAMM,mBAAA;EACA,mBAAA;C9Bs6HL;A8B76HD;EAYI,UAAA;EACA,WAAA;C9Bo6HH;A8Bj6HC;EAAA;IAEI,oBAAA;IACA,UAAA;G9Bm6HH;E8Bt6HD;IAKM,iBAAA;G9Bo6HL;CACF;A8B55HD;EACE,iBAAA;C9B85HD;A8B/5HD;EAKI,gBAAA;EACA,mBAAA;C9B65HH;A8Bn6HD;;;EAYI,uBAAA;C9B45HH;A8Bz5HC;EAAA;IAEI,8BAAA;IACA,2BAAA;G9B25HH;E8B95HD;;;IAQI,0BAAA;G9B25HH;CACF;A8Bl5HD;EAEI,cAAA;C9Bm5HH;A8Br5HD;EAKI,eAAA;C9Bm5HH;A8B14HD;EAEE,iBAAA;EF7OA,0BAAA;EACA,2BAAA;C5BynID;A+BjnID;EACE,mBAAA;EACA,iBAAA;EACA,oBAAA;EACA,8BAAA;C/BmnID;A+B9mIC;EAAA;IACE,mBAAA;G/BinID;CACF;A+BrmIC;EAAA;IACE,YAAA;G/BwmID;CACF;A+B1lID;EACE,oBAAA;EACA,mBAAA;EACA,oBAAA;EACA,kCAAA;EACA,2DAAA;EAAA,mDAAA;EAEA,kCAAA;C/B2lID;A+BzlIC;EACE,iBAAA;C/B2lIH;A+BxlIC;EAAA;IACE,YAAA;IACA,cAAA;IACA,yBAAA;IAAA,iBAAA;G/B2lID;E+BzlIC;IACE,0BAAA;IACA,wBAAA;IACA,kBAAA;IACA,6BAAA;G/B2lIH;E+BxlIC;IACE,oBAAA;G/B0lIH;E+BrlIC;;;IAGE,iBAAA;IACA,gBAAA;G/BulIH;CACF;A+BnlID;;EAWE,gBAAA;EACA,SAAA;EACA,QAAA;EACA,cAAA;C/B4kID;A+B1lID;;EAGI,kBAAA;C/B2lIH;A+BzlIG;EAAA;;IACE,kBAAA;G/B6lIH;CACF;A+BnlIC;EAAA;;IACE,iBAAA;G/BulID;CACF;A+BplID;EACE,OAAA;EACA,sBAAA;C/BslID;A+BplID;EACE,UAAA;EACA,iBAAA;EACA,sBAAA;C/BslID;A+B9kID;;;;EAII,oBAAA;EACA,mBAAA;C/BglIH;A+B9kIG;EAAA;;;;IACE,gBAAA;IACA,eAAA;G/BolIH;CACF;A+BxkID;EACE,cAAA;EACA,sBAAA;C/B0kID;A+BxkIC;EAAA;IACE,iBAAA;G/B2kID;CACF;A+BrkID;EACE,YAAA;EACA,aAAA;EACA,mBAAA;EACA,gBAAA;EACA,kBAAA;C/BukID;A+BrkIC;;EAEE,sBAAA;C/BukIH;A+BhlID;EAaI,eAAA;C/BskIH;A+BnkIC;EACE;;IAEE,mBAAA;G/BqkIH;CACF;A+B3jID;EACE,mBAAA;EACA,aAAA;EACA,kBAAA;EACA,mBAAA;EC9LA,gBAAA;EACA,mBAAA;ED+LA,8BAAA;EACA,uBAAA;EACA,8BAAA;EACA,mBAAA;C/B8jID;A+B1jIC;EACE,WAAA;C/B4jIH;A+B1kID;EAmBI,eAAA;EACA,YAAA;EACA,YAAA;EACA,mBAAA;C/B0jIH;A+BhlID;EAyBI,gBAAA;C/B0jIH;A+BvjIC;EAAA;IACE,cAAA;G/B0jID;CACF;A+BjjID;EACE,oBAAA;C/BmjID;A+BpjID;EAII,kBAAA;EACA,qBAAA;EACA,kBAAA;C/BmjIH;A+BhjIC;EAAA;IAGI,iBAAA;IACA,YAAA;IACA,YAAA;IACA,cAAA;IACA,8BAAA;IACA,UAAA;IACA,yBAAA;IAAA,iBAAA;G/BijIH;E+B1jID;;IAYM,2BAAA;G/BkjIL;E+B9jID;IAeM,kBAAA;G/BkjIL;E+BjjIK;;IAEE,uBAAA;G/BmjIP;CACF;A+B7iIC;EAAA;IACE,YAAA;IACA,UAAA;G/BgjID;E+BljID;IAKI,YAAA;G/BgjIH;E+BrjID;IAOM,kBAAA;IACA,qBAAA;G/BijIL;CACF;A+BtiID;EACE,mBAAA;EACA,oBAAA;EACA,mBAAA;EACA,kCAAA;EACA,qCAAA;E1B5NA,6FAAA;EACQ,qFAAA;E2BjER,gBAAA;EACA,mBAAA;ChCu0ID;AkB13HC;EAAA;IAGI,sBAAA;IACA,iBAAA;IACA,uBAAA;GlB23HH;EkBh4HD;IAUI,sBAAA;IACA,YAAA;IACA,uBAAA;GlBy3HH;EkBr4HD;IAiBI,sBAAA;GlBu3HH;EkBx4HD;IAqBI,sBAAA;IACA,uBAAA;GlBs3HH;EkB54HD;;;IA2BM,YAAA;GlBs3HL;EkBj5HD;IAiCI,YAAA;GlBm3HH;EkBp5HD;IAqCI,iBAAA;IACA,uBAAA;GlBk3HH;EkBx5HD;;IA6CI,sBAAA;IACA,cAAA;IACA,iBAAA;IACA,uBAAA;GlB+2HH;EkB/5HD;;IAmDM,gBAAA;GlBg3HL;EkBn6HD;;IAwDI,mBAAA;IACA,eAAA;GlB+2HH;EkBx6HD;IA8DI,OAAA;GlB62HH;CACF;A+BtlIG;EAAA;IACE,mBAAA;G/BylIH;E+BvlIG;IACE,iBAAA;G/BylIL;CACF;A+BjlIC;EAAA;IACE,YAAA;IACA,eAAA;IACA,kBAAA;IACA,gBAAA;IACA,eAAA;IACA,UAAA;I1BvPF,yBAAA;IACQ,iBAAA;GL40IP;CACF;A+B9kID;EACE,cAAA;EHpUA,0BAAA;EACA,2BAAA;C5Bq5ID;A+B9kID;EACE,iBAAA;EHzUA,4BAAA;EACA,6BAAA;EAOA,8BAAA;EACA,6BAAA;C5Bo5ID;A+B1kID;EChVE,gBAAA;EACA,mBAAA;ChC65ID;A+B3kIC;ECnVA,iBAAA;EACA,oBAAA;ChCi6ID;A+B5kIC;ECtVA,iBAAA;EACA,oBAAA;ChCq6ID;A+BtkID;EChWE,iBAAA;EACA,oBAAA;ChCy6ID;A+BvkIC;EAAA;IACE,YAAA;IACA,mBAAA;IACA,kBAAA;G/B0kID;CACF;A+B9jID;EACE;IEtWA,uBAAA;GjCu6IC;E+BhkID;IE1WA,wBAAA;IF4WE,oBAAA;G/BkkID;E+BpkID;IAKI,gBAAA;G/BkkIH;CACF;A+BzjID;EACE,0BAAA;EACA,sBAAA;C/B2jID;A+B7jID;EAKI,YAAA;C/B2jIH;A+B1jIG;;EAEE,eAAA;EACA,8BAAA;C/B4jIL;A+BrkID;EAcI,YAAA;C/B0jIH;A+BxkID;EAmBM,YAAA;C/BwjIL;A+BtjIK;;EAEE,YAAA;EACA,8BAAA;C/BwjIP;A+BpjIK;;;EAGE,YAAA;EACA,0BAAA;C/BsjIP;A+BljIK;;;EAGE,YAAA;EACA,8BAAA;C/BojIP;A+B7iIK;;;EAGE,YAAA;EACA,0BAAA;C/B+iIP;A+B3iIG;EAAA;IAIM,YAAA;G/B2iIP;E+B1iIO;;IAEE,YAAA;IACA,8BAAA;G/B4iIT;E+BxiIO;;;IAGE,YAAA;IACA,0BAAA;G/B0iIT;E+BtiIO;;;IAGE,YAAA;IACA,8BAAA;G/BwiIT;CACF;A+BxnID;EAuFI,mBAAA;C/BoiIH;A+BniIG;;EAEE,uBAAA;C/BqiIL;A+B/nID;EA6FM,uBAAA;C/BqiIL;A+BloID;;EAmGI,sBAAA;C/BmiIH;A+BtoID;EA4GI,YAAA;C/B6hIH;A+B5hIG;EACE,YAAA;C/B8hIL;A+B5oID;EAmHI,YAAA;C/B4hIH;A+B3hIG;;EAEE,YAAA;C/B6hIL;A+BzhIK;;;;EAEE,YAAA;C/B6hIP;A+BrhID;EACE,uBAAA;EACA,sBAAA;C/BuhID;A+BzhID;EAKI,eAAA;C/BuhIH;A+BthIG;;EAEE,YAAA;EACA,8BAAA;C/BwhIL;A+BjiID;EAcI,eAAA;C/BshIH;A+BpiID;EAmBM,eAAA;C/BohIL;A+BlhIK;;EAEE,YAAA;EACA,8BAAA;C/BohIP;A+BhhIK;;;EAGE,YAAA;EACA,0BAAA;C/BkhIP;A+B9gIK;;;EAGE,YAAA;EACA,8BAAA;C/BghIP;A+B1gIK;;;EAGE,YAAA;EACA,0BAAA;C/B4gIP;A+BxgIG;EAAA;IAIM,sBAAA;G/BwgIP;E+B5gIC;IAOM,0BAAA;G/BwgIP;E+B/gIC;IAUM,eAAA;G/BwgIP;E+BvgIO;;IAEE,YAAA;IACA,8BAAA;G/BygIT;E+BrgIO;;;IAGE,YAAA;IACA,0BAAA;G/BugIT;E+BngIO;;;IAGE,YAAA;IACA,8BAAA;G/BqgIT;CACF;A+B1lID;EA6FI,mBAAA;C/BggIH;A+B//HG;;EAEE,uBAAA;C/BigIL;A+BjmID;EAmGM,uBAAA;C/BigIL;A+BpmID;;EAyGI,sBAAA;C/B+/HH;A+BxmID;EA6GI,eAAA;C/B8/HH;A+B7/HG;EACE,YAAA;C/B+/HL;A+B9mID;EAoHI,eAAA;C/B6/HH;A+B5/HG;;EAEE,YAAA;C/B8/HL;A+B1/HK;;;;EAEE,YAAA;C/B8/HP;AkCpoJD;EACE,kBAAA;EACA,oBAAA;EACA,iBAAA;EACA,0BAAA;EACA,mBAAA;ClCsoJD;AkC3oJD;EAQI,sBAAA;ClCsoJH;AkC9oJD;EAWM,eAAA;EACA,YAAA;EACA,kBAAA;ClCsoJL;AkCnpJD;EAkBI,eAAA;ClCooJH;AmCxpJD;EACE,sBAAA;EACA,gBAAA;EACA,eAAA;EACA,mBAAA;CnC0pJD;AmC9pJD;EAOI,gBAAA;CnC0pJH;AmCjqJD;;EAUM,mBAAA;EACA,YAAA;EACA,kBAAA;EACA,kBAAA;EACA,wBAAA;EACA,eAAA;EACA,sBAAA;EACA,uBAAA;EACA,uBAAA;CnC2pJL;AmCzpJK;;;;EAEE,WAAA;EACA,eAAA;EACA,0BAAA;EACA,mBAAA;CnC6pJP;AmC1pJG;;EAGI,eAAA;EPnBN,4BAAA;EACA,+BAAA;C5B+qJD;AmCzpJG;;EP/BF,6BAAA;EACA,gCAAA;C5B4rJD;AmCppJG;;;;;;EAGE,WAAA;EACA,YAAA;EACA,gBAAA;EACA,0BAAA;EACA,sBAAA;CnCypJL;AmC7sJD;;;;;;EA+DM,eAAA;EACA,oBAAA;EACA,uBAAA;EACA,mBAAA;CnCspJL;AmC7oJD;;ECxEM,mBAAA;EACA,gBAAA;EACA,uBAAA;CpCytJL;AoCvtJG;;ERKF,4BAAA;EACA,+BAAA;C5BstJD;AoCttJG;;ERTF,6BAAA;EACA,gCAAA;C5BmuJD;AmCxpJD;;EC7EM,kBAAA;EACA,gBAAA;EACA,iBAAA;CpCyuJL;AoCvuJG;;ERKF,4BAAA;EACA,+BAAA;C5BsuJD;AoCtuJG;;ERTF,6BAAA;EACA,gCAAA;C5BmvJD;AqCtvJD;EACE,gBAAA;EACA,eAAA;EACA,mBAAA;EACA,iBAAA;CrCwvJD;AqC5vJD;EAOI,gBAAA;CrCwvJH;AqC/vJD;;EAUM,sBAAA;EACA,kBAAA;EACA,uBAAA;EACA,uBAAA;EACA,oBAAA;CrCyvJL;AqCvwJD;;EAmBM,sBAAA;EACA,0BAAA;CrCwvJL;AqC5wJD;;EA2BM,aAAA;CrCqvJL;AqChxJD;;EAkCM,YAAA;CrCkvJL;AqCpxJD;;;;EA2CM,eAAA;EACA,oBAAA;EACA,uBAAA;CrC+uJL;AsC7xJD;EACE,gBAAA;EACA,2BAAA;EACA,eAAA;EACA,iBAAA;EACA,eAAA;EACA,YAAA;EACA,mBAAA;EACA,oBAAA;EACA,yBAAA;EACA,sBAAA;CtC+xJD;AsC3xJG;;EAEE,YAAA;EACA,sBAAA;EACA,gBAAA;CtC6xJL;AsCxxJC;EACE,cAAA;CtC0xJH;AsCtxJC;EACE,mBAAA;EACA,UAAA;CtCwxJH;AsCjxJD;ECtCE,0BAAA;CvC0zJD;AuCvzJG;;EAEE,0BAAA;CvCyzJL;AsCpxJD;EC1CE,0BAAA;CvCi0JD;AuC9zJG;;EAEE,0BAAA;CvCg0JL;AsCvxJD;EC9CE,0BAAA;CvCw0JD;AuCr0JG;;EAEE,0BAAA;CvCu0JL;AsC1xJD;EClDE,0BAAA;CvC+0JD;AuC50JG;;EAEE,0BAAA;CvC80JL;AsC7xJD;ECtDE,0BAAA;CvCs1JD;AuCn1JG;;EAEE,0BAAA;CvCq1JL;AsChyJD;EC1DE,0BAAA;CvC61JD;AuC11JG;;EAEE,0BAAA;CvC41JL;AwC91JD;EACE,sBAAA;EACA,gBAAA;EACA,iBAAA;EACA,gBAAA;EACA,kBAAA;EACA,eAAA;EACA,YAAA;EACA,mBAAA;EACA,oBAAA;EACA,uBAAA;EACA,0BAAA;EACA,oBAAA;CxCg2JD;AwC71JC;EACE,cAAA;CxC+1JH;AwC31JC;EACE,mBAAA;EACA,UAAA;CxC61JH;AwC11JC;;EAEE,OAAA;EACA,iBAAA;CxC41JH;AwCv1JG;;EAEE,YAAA;EACA,sBAAA;EACA,gBAAA;CxCy1JL;AwCp1JC;;EAEE,eAAA;EACA,uBAAA;CxCs1JH;AwCn1JC;EACE,aAAA;CxCq1JH;AwCl1JC;EACE,kBAAA;CxCo1JH;AwCj1JC;EACE,iBAAA;CxCm1JH;AyC74JD;EACE,kBAAA;EACA,qBAAA;EACA,oBAAA;EACA,eAAA;EACA,0BAAA;CzC+4JD;AyCp5JD;;EASI,eAAA;CzC+4JH;AyCx5JD;EAaI,oBAAA;EACA,gBAAA;EACA,iBAAA;CzC84JH;AyC75JD;EAmBI,0BAAA;CzC64JH;AyC14JC;;EAEE,oBAAA;EACA,mBAAA;EACA,mBAAA;CzC44JH;AyCt6JD;EA8BI,gBAAA;CzC24JH;AyCx4JC;EAAA;IACE,kBAAA;IACA,qBAAA;GzC24JD;EyCz4JC;;IAEE,oBAAA;IACA,mBAAA;GzC24JH;EyCl5JD;;IAYI,gBAAA;GzC04JH;CACF;A0Cr7JD;EACE,eAAA;EACA,aAAA;EACA,oBAAA;EACA,wBAAA;EACA,uBAAA;EACA,uBAAA;EACA,mBAAA;ErCiLA,4CAAA;EACK,uCAAA;EACG,oCAAA;CLuwJT;A0Cj8JD;;EAaI,mBAAA;EACA,kBAAA;C1Cw7JH;A0Cp7JC;;;EAGE,sBAAA;C1Cs7JH;A0C38JD;EA0BI,aAAA;EACA,eAAA;C1Co7JH;A2C/8JD;EACE,cAAA;EACA,oBAAA;EACA,8BAAA;EACA,mBAAA;C3Ci9JD;A2Cr9JD;EAQI,cAAA;EACA,eAAA;C3Cg9JH;A2Cz9JD;EAcI,kBAAA;C3C88JH;A2C59JD;;EAoBI,iBAAA;C3C48JH;A2Ch+JD;EAwBI,gBAAA;C3C28JH;A2Cl8JD;;EAEE,oBAAA;C3Co8JD;A2Ct8JD;;EAMI,mBAAA;EACA,UAAA;EACA,aAAA;EACA,eAAA;C3Co8JH;A2C57JD;ECvDE,eAAA;EACA,0BAAA;EACA,sBAAA;C5Cs/JD;A2Cj8JD;EClDI,0BAAA;C5Cs/JH;A2Cp8JD;EC9CI,eAAA;C5Cq/JH;A2Cn8JD;EC3DE,eAAA;EACA,0BAAA;EACA,sBAAA;C5CigKD;A2Cx8JD;ECtDI,0BAAA;C5CigKH;A2C38JD;EClDI,eAAA;C5CggKH;A2C18JD;EC/DE,eAAA;EACA,0BAAA;EACA,sBAAA;C5C4gKD;A2C/8JD;EC1DI,0BAAA;C5C4gKH;A2Cl9JD;ECtDI,eAAA;C5C2gKH;A2Cj9JD;ECnEE,eAAA;EACA,0BAAA;EACA,sBAAA;C5CuhKD;A2Ct9JD;EC9DI,0BAAA;C5CuhKH;A2Cz9JD;EC1DI,eAAA;C5CshKH;A6CvhKD;EACE;IAAQ,4BAAA;G7C0hKP;E6CzhKD;IAAQ,yBAAA;G7C4hKP;CACF;A6CzhKD;EACE;IAAQ,4BAAA;G7C4hKP;E6C3hKD;IAAQ,yBAAA;G7C8hKP;CACF;A6CjiKD;EACE;IAAQ,4BAAA;G7C4hKP;E6C3hKD;IAAQ,yBAAA;G7C8hKP;CACF;A6CvhKD;EACE,aAAA;EACA,oBAAA;EACA,iBAAA;EACA,0BAAA;EACA,mBAAA;ExCsCA,uDAAA;EACQ,+CAAA;CLo/JT;A6CthKD;EACE,YAAA;EACA,UAAA;EACA,aAAA;EACA,gBAAA;EACA,kBAAA;EACA,YAAA;EACA,mBAAA;EACA,0BAAA;ExCyBA,uDAAA;EACQ,+CAAA;EAyHR,oCAAA;EACK,+BAAA;EACG,4BAAA;CLw4JT;A6CnhKD;;ECDI,8MAAA;EACA,yMAAA;EACA,sMAAA;EDEF,mCAAA;EAAA,2BAAA;C7CuhKD;A6ChhKD;;ExC5CE,2DAAA;EACK,sDAAA;EACG,mDAAA;CLgkKT;A6C7gKD;EEvEE,0BAAA;C/CulKD;A+CplKC;EDgDE,8MAAA;EACA,yMAAA;EACA,sMAAA;C9CuiKH;A6CjhKD;EE3EE,0BAAA;C/C+lKD;A+C5lKC;EDgDE,8MAAA;EACA,yMAAA;EACA,sMAAA;C9C+iKH;A6CrhKD;EE/EE,0BAAA;C/CumKD;A+CpmKC;EDgDE,8MAAA;EACA,yMAAA;EACA,sMAAA;C9CujKH;A6CzhKD;EEnFE,0BAAA;C/C+mKD;A+C5mKC;EDgDE,8MAAA;EACA,yMAAA;EACA,sMAAA;C9C+jKH;AgDvnKD;EAEE,iBAAA;ChDwnKD;AgDtnKC;EACE,cAAA;ChDwnKH;AgDpnKD;;EAEE,iBAAA;EACA,QAAA;ChDsnKD;AgDnnKD;EACE,eAAA;ChDqnKD;AgDlnKD;EACE,eAAA;ChDonKD;AgDjnKC;EACE,gBAAA;ChDmnKH;AgD/mKD;;EAEE,mBAAA;ChDinKD;AgD9mKD;;EAEE,oBAAA;ChDgnKD;AgD7mKD;;;EAGE,oBAAA;EACA,oBAAA;ChD+mKD;AgD5mKD;EACE,uBAAA;ChD8mKD;AgD3mKD;EACE,uBAAA;ChD6mKD;AgDzmKD;EACE,cAAA;EACA,mBAAA;ChD2mKD;AgDrmKD;EACE,gBAAA;EACA,iBAAA;ChDumKD;AiD5pKD;EAEE,gBAAA;EACA,oBAAA;CjD6pKD;AiDrpKD;EACE,mBAAA;EACA,eAAA;EACA,mBAAA;EAEA,oBAAA;EACA,uBAAA;EACA,uBAAA;CjDspKD;AiDnpKC;ErB7BA,4BAAA;EACA,6BAAA;C5BmrKD;AiDppKC;EACE,iBAAA;ErBzBF,gCAAA;EACA,+BAAA;C5BgrKD;AiDnpKC;;;EAGE,eAAA;EACA,oBAAA;EACA,0BAAA;CjDqpKH;AiD1pKC;;;EASI,eAAA;CjDspKL;AiD/pKC;;;EAYI,eAAA;CjDwpKL;AiDnpKC;;;EAGE,WAAA;EACA,YAAA;EACA,0BAAA;EACA,sBAAA;CjDqpKH;AiD3pKC;;;;;;;;;EAYI,eAAA;CjD0pKL;AiDtqKC;;;EAeI,eAAA;CjD4pKL;AiDjpKD;;EAEE,YAAA;CjDmpKD;AiDrpKD;;EAKI,YAAA;CjDopKH;AiDhpKC;;;;EAEE,YAAA;EACA,sBAAA;EACA,0BAAA;CjDopKH;AiDhpKD;EACE,YAAA;EACA,iBAAA;CjDkpKD;AczvKA;EoCIG,eAAA;EACA,0BAAA;ClDwvKH;AkDtvKG;;EAEE,eAAA;ClDwvKL;AkD1vKG;;EAKI,eAAA;ClDyvKP;AkDtvKK;;;;EAEE,eAAA;EACA,0BAAA;ClD0vKP;AkDxvKK;;;;;;EAGE,YAAA;EACA,0BAAA;EACA,sBAAA;ClD6vKP;ActxKA;EoCIG,eAAA;EACA,0BAAA;ClDqxKH;AkDnxKG;;EAEE,eAAA;ClDqxKL;AkDvxKG;;EAKI,eAAA;ClDsxKP;AkDnxKK;;;;EAEE,eAAA;EACA,0BAAA;ClDuxKP;AkDrxKK;;;;;;EAGE,YAAA;EACA,0BAAA;EACA,sBAAA;ClD0xKP;AcnzKA;EoCIG,eAAA;EACA,0BAAA;ClDkzKH;AkDhzKG;;EAEE,eAAA;ClDkzKL;AkDpzKG;;EAKI,eAAA;ClDmzKP;AkDhzKK;;;;EAEE,eAAA;EACA,0BAAA;ClDozKP;AkDlzKK;;;;;;EAGE,YAAA;EACA,0BAAA;EACA,sBAAA;ClDuzKP;Ach1KA;EoCIG,eAAA;EACA,0BAAA;ClD+0KH;AkD70KG;;EAEE,eAAA;ClD+0KL;AkDj1KG;;EAKI,eAAA;ClDg1KP;AkD70KK;;;;EAEE,eAAA;EACA,0BAAA;ClDi1KP;AkD/0KK;;;;;;EAGE,YAAA;EACA,0BAAA;EACA,sBAAA;ClDo1KP;AiDnvKD;EACE,cAAA;EACA,mBAAA;CjDqvKD;AiDnvKD;EACE,iBAAA;EACA,iBAAA;CjDqvKD;AmD72KD;EACE,oBAAA;EACA,uBAAA;EACA,8BAAA;EACA,mBAAA;E9C0DA,kDAAA;EACQ,0CAAA;CLszKT;AmD52KD;EACE,cAAA;CnD82KD;AmDz2KD;EACE,mBAAA;EACA,qCAAA;EvBtBA,4BAAA;EACA,6BAAA;C5Bk4KD;AmD/2KD;EAMI,eAAA;CnD42KH;AmDv2KD;EACE,cAAA;EACA,iBAAA;EACA,gBAAA;EACA,eAAA;CnDy2KD;AmD72KD;;;;;EAWI,eAAA;CnDy2KH;AmDp2KD;EACE,mBAAA;EACA,0BAAA;EACA,2BAAA;EvB1CA,gCAAA;EACA,+BAAA;C5Bi5KD;AmD91KD;;EAGI,iBAAA;CnD+1KH;AmDl2KD;;EAMM,oBAAA;EACA,iBAAA;CnDg2KL;AmD51KG;;EAEI,cAAA;EvBzEN,4BAAA;EACA,6BAAA;C5Bw6KD;AmD11KG;;EAEI,iBAAA;EvBzEN,gCAAA;EACA,+BAAA;C5Bs6KD;AmDn3KD;EvB5DE,0BAAA;EACA,2BAAA;C5Bk7KD;AmDt1KD;EAEI,oBAAA;CnDu1KH;AmDp1KD;EACE,oBAAA;CnDs1KD;AmD90KD;;;EAII,iBAAA;CnD+0KH;AmDn1KD;;;EAOM,oBAAA;EACA,mBAAA;CnDi1KL;AmDz1KD;;EvB3GE,4BAAA;EACA,6BAAA;C5Bw8KD;AmD91KD;;;;EAmBQ,4BAAA;EACA,6BAAA;CnDi1KP;AmDr2KD;;;;;;;;EAwBU,4BAAA;CnDu1KT;AmD/2KD;;;;;;;;EA4BU,6BAAA;CnD61KT;AmDz3KD;;EvBnGE,gCAAA;EACA,+BAAA;C5Bg+KD;AmD93KD;;;;EAyCQ,gCAAA;EACA,+BAAA;CnD21KP;AmDr4KD;;;;;;;;EA8CU,+BAAA;CnDi2KT;AmD/4KD;;;;;;;;EAkDU,gCAAA;CnDu2KT;AmDz5KD;;;;EA2DI,2BAAA;CnDo2KH;AmD/5KD;;EA+DI,cAAA;CnDo2KH;AmDn6KD;;EAmEI,UAAA;CnDo2KH;AmDv6KD;;;;;;;;;;;;EA0EU,eAAA;CnD22KT;AmDr7KD;;;;;;;;;;;;EA8EU,gBAAA;CnDq3KT;AmDn8KD;;;;;;;;EAuFU,iBAAA;CnDs3KT;AmD78KD;;;;;;;;EAgGU,iBAAA;CnDu3KT;AmDv9KD;EAsGI,iBAAA;EACA,UAAA;CnDo3KH;AmD12KD;EACE,oBAAA;CnD42KD;AmD72KD;EAKI,iBAAA;EACA,mBAAA;CnD22KH;AmDj3KD;EASM,gBAAA;CnD22KL;AmDp3KD;EAcI,iBAAA;CnDy2KH;AmDv3KD;;EAkBM,2BAAA;CnDy2KL;AmD33KD;EAuBI,cAAA;CnDu2KH;AmD93KD;EAyBM,8BAAA;CnDw2KL;AmDj2KD;EC5PE,mBAAA;CpDgmLD;AoD9lLC;EACE,eAAA;EACA,0BAAA;EACA,mBAAA;CpDgmLH;AoDnmLC;EAMI,uBAAA;CpDgmLL;AoDtmLC;EASI,eAAA;EACA,0BAAA;CpDgmLL;AoD7lLC;EAEI,0BAAA;CpD8lLL;AmDh3KD;EC/PE,sBAAA;CpDknLD;AoDhnLC;EACE,YAAA;EACA,0BAAA;EACA,sBAAA;CpDknLH;AoDrnLC;EAMI,0BAAA;CpDknLL;AoDxnLC;EASI,eAAA;EACA,uBAAA;CpDknLL;AoD/mLC;EAEI,6BAAA;CpDgnLL;AmD/3KD;EClQE,sBAAA;CpDooLD;AoDloLC;EACE,eAAA;EACA,0BAAA;EACA,sBAAA;CpDooLH;AoDvoLC;EAMI,0BAAA;CpDooLL;AoD1oLC;EASI,eAAA;EACA,0BAAA;CpDooLL;AoDjoLC;EAEI,6BAAA;CpDkoLL;AmD94KD;ECrQE,sBAAA;CpDspLD;AoDppLC;EACE,eAAA;EACA,0BAAA;EACA,sBAAA;CpDspLH;AoDzpLC;EAMI,0BAAA;CpDspLL;AoD5pLC;EASI,eAAA;EACA,0BAAA;CpDspLL;AoDnpLC;EAEI,6BAAA;CpDopLL;AmD75KD;ECxQE,sBAAA;CpDwqLD;AoDtqLC;EACE,eAAA;EACA,0BAAA;EACA,sBAAA;CpDwqLH;AoD3qLC;EAMI,0BAAA;CpDwqLL;AoD9qLC;EASI,eAAA;EACA,0BAAA;CpDwqLL;AoDrqLC;EAEI,6BAAA;CpDsqLL;AmD56KD;EC3QE,sBAAA;CpD0rLD;AoDxrLC;EACE,eAAA;EACA,0BAAA;EACA,sBAAA;CpD0rLH;AoD7rLC;EAMI,0BAAA;CpD0rLL;AoDhsLC;EASI,eAAA;EACA,0BAAA;CpD0rLL;AoDvrLC;EAEI,6BAAA;CpDwrLL;AqDxsLD;EACE,mBAAA;EACA,eAAA;EACA,UAAA;EACA,WAAA;EACA,iBAAA;CrD0sLD;AqD/sLD;;;;;EAYI,mBAAA;EACA,OAAA;EACA,UAAA;EACA,QAAA;EACA,YAAA;EACA,aAAA;EACA,UAAA;CrD0sLH;AqDrsLD;EACE,uBAAA;CrDusLD;AqDnsLD;EACE,oBAAA;CrDqsLD;AsDhuLD;EACE,iBAAA;EACA,cAAA;EACA,oBAAA;EACA,0BAAA;EACA,0BAAA;EACA,mBAAA;EjD0DA,wDAAA;EACQ,gDAAA;CLyqLT;AsD1uLD;EASI,mBAAA;EACA,kCAAA;CtDouLH;AsD/tLD;EACE,cAAA;EACA,mBAAA;CtDiuLD;AsD/tLD;EACE,aAAA;EACA,mBAAA;CtDiuLD;AuDrvLD;EACE,aAAA;EACA,gBAAA;EACA,kBAAA;EACA,eAAA;EACA,YAAA;EACA,0BAAA;EjCTA,0BAAA;EACA,aAAA;CtBiwLD;AuDtvLC;;EAEE,YAAA;EACA,sBAAA;EACA,gBAAA;EjChBF,0BAAA;EACA,aAAA;CtBywLD;AuDlvLC;EACE,WAAA;EACA,gBAAA;EACA,wBAAA;EACA,UAAA;EACA,yBAAA;EACA,sBAAA;EAAA,iBAAA;CvDovLH;AwD5wLD;EACE,iBAAA;CxD8wLD;AwD1wLD;EACE,gBAAA;EACA,OAAA;EACA,SAAA;EACA,UAAA;EACA,QAAA;EACA,cAAA;EACA,cAAA;EACA,iBAAA;EACA,kCAAA;EAIA,WAAA;CxDywLD;AwDtwLC;EnDiHA,sCAAA;EACI,kCAAA;EACC,iCAAA;EACG,8BAAA;EAkER,oDAAA;EAEK,0CAAA;EACG,4CAAA;EAAA,oCAAA;EAAA,iGAAA;CLulLT;AwD5wLC;EnD6GA,mCAAA;EACI,+BAAA;EACC,8BAAA;EACG,2BAAA;CLkqLT;AwDhxLD;EACE,mBAAA;EACA,iBAAA;CxDkxLD;AwD9wLD;EACE,mBAAA;EACA,YAAA;EACA,aAAA;CxDgxLD;AwD5wLD;EACE,mBAAA;EACA,uBAAA;EACA,6BAAA;EACA,uBAAA;EACA,qCAAA;EACA,mBAAA;EnDcA,iDAAA;EACQ,yCAAA;EmDZR,WAAA;CxD8wLD;AwD1wLD;EACE,gBAAA;EACA,OAAA;EACA,SAAA;EACA,UAAA;EACA,QAAA;EACA,cAAA;EACA,uBAAA;CxD4wLD;AwD1wLC;ElCpEA,yBAAA;EACA,WAAA;CtBi1LD;AwD7wLC;ElCrEA,0BAAA;EACA,aAAA;CtBq1LD;AwD5wLD;EACE,cAAA;EACA,iCAAA;CxD8wLD;AwD1wLD;EACE,iBAAA;CxD4wLD;AwDxwLD;EACE,UAAA;EACA,wBAAA;CxD0wLD;AwDrwLD;EACE,mBAAA;EACA,cAAA;CxDuwLD;AwDnwLD;EACE,cAAA;EACA,kBAAA;EACA,8BAAA;CxDqwLD;AwDxwLD;EAQI,iBAAA;EACA,iBAAA;CxDmwLH;AwD5wLD;EAaI,kBAAA;CxDkwLH;AwD/wLD;EAiBI,eAAA;CxDiwLH;AwD5vLD;EACE,mBAAA;EACA,aAAA;EACA,YAAA;EACA,aAAA;EACA,iBAAA;CxD8vLD;AwD1vLD;EAEE;IACE,aAAA;IACA,kBAAA;GxD2vLD;EwDzvLD;InDrEA,kDAAA;IACQ,0CAAA;GLi0LP;EwDxvLD;IAAY,aAAA;GxD2vLX;CACF;AwDzvLD;EACE;IAAY,aAAA;GxD4vLX;CACF;AyD34LD;EACE,mBAAA;EACA,cAAA;EACA,eAAA;ECRA,4DAAA;EAEA,mBAAA;EACA,iBAAA;EACA,wBAAA;EACA,iBAAA;EACA,iBAAA;EACA,kBAAA;EACA,sBAAA;EACA,kBAAA;EACA,qBAAA;EACA,uBAAA;EACA,mBAAA;EACA,qBAAA;EACA,kBAAA;EACA,oBAAA;EDHA,gBAAA;EnCTA,yBAAA;EACA,WAAA;CtBm6LD;AyDv5LC;EnCbA,0BAAA;EACA,aAAA;CtBu6LD;AyD15LC;EACE,eAAA;EACA,iBAAA;CzD45LH;AyD15LC;EACE,eAAA;EACA,iBAAA;CzD45LH;AyD15LC;EACE,eAAA;EACA,gBAAA;CzD45LH;AyD15LC;EACE,eAAA;EACA,kBAAA;CzD45LH;AyDx5LC;EACE,UAAA;EACA,UAAA;EACA,kBAAA;EACA,wBAAA;EACA,uBAAA;CzD05LH;AyDx5LC;EACE,WAAA;EACA,UAAA;EACA,oBAAA;EACA,wBAAA;EACA,uBAAA;CzD05LH;AyDx5LC;EACE,UAAA;EACA,UAAA;EACA,oBAAA;EACA,wBAAA;EACA,uBAAA;CzD05LH;AyDx5LC;EACE,SAAA;EACA,QAAA;EACA,iBAAA;EACA,4BAAA;EACA,yBAAA;CzD05LH;AyDx5LC;EACE,SAAA;EACA,SAAA;EACA,iBAAA;EACA,4BAAA;EACA,wBAAA;CzD05LH;AyDx5LC;EACE,OAAA;EACA,UAAA;EACA,kBAAA;EACA,wBAAA;EACA,0BAAA;CzD05LH;AyDx5LC;EACE,OAAA;EACA,WAAA;EACA,iBAAA;EACA,wBAAA;EACA,0BAAA;CzD05LH;AyDx5LC;EACE,OAAA;EACA,UAAA;EACA,iBAAA;EACA,wBAAA;EACA,0BAAA;CzD05LH;AyDr5LD;EACE,iBAAA;EACA,iBAAA;EACA,YAAA;EACA,mBAAA;EACA,uBAAA;EACA,mBAAA;CzDu5LD;AyDn5LD;EACE,mBAAA;EACA,SAAA;EACA,UAAA;EACA,0BAAA;EACA,oBAAA;CzDq5LD;A2D9/LD;EACE,mBAAA;EACA,OAAA;EACA,QAAA;EACA,cAAA;EACA,cAAA;EACA,iBAAA;EACA,aAAA;EDXA,4DAAA;EAEA,mBAAA;EACA,iBAAA;EACA,wBAAA;EACA,iBAAA;EACA,iBAAA;EACA,kBAAA;EACA,sBAAA;EACA,kBAAA;EACA,qBAAA;EACA,uBAAA;EACA,mBAAA;EACA,qBAAA;EACA,kBAAA;EACA,oBAAA;ECAA,gBAAA;EACA,uBAAA;EACA,6BAAA;EACA,uBAAA;EACA,qCAAA;EACA,mBAAA;EtDiDA,kDAAA;EACQ,0CAAA;CL49LT;A2D1gMC;EAAQ,kBAAA;C3D6gMT;A2D5gMC;EAAU,kBAAA;C3D+gMX;A2D9gMC;EAAW,iBAAA;C3DihMZ;A2DhhMC;EAAS,mBAAA;C3DmhMV;A2D1iMD;EA4BI,mBAAA;C3DihMH;A2D/gMG;;EAEE,mBAAA;EACA,eAAA;EACA,SAAA;EACA,UAAA;EACA,0BAAA;EACA,oBAAA;C3DihML;A2D9gMG;EACE,YAAA;EACA,mBAAA;C3DghML;A2D5gMC;EACE,cAAA;EACA,UAAA;EACA,mBAAA;EACA,0BAAA;EACA,sCAAA;EACA,uBAAA;C3D8gMH;A2D7gMG;EACE,YAAA;EACA,mBAAA;EACA,aAAA;EACA,uBAAA;EACA,uBAAA;C3D+gML;A2D5gMC;EACE,SAAA;EACA,YAAA;EACA,kBAAA;EACA,4BAAA;EACA,wCAAA;EACA,qBAAA;C3D8gMH;A2D7gMG;EACE,cAAA;EACA,UAAA;EACA,aAAA;EACA,yBAAA;EACA,qBAAA;C3D+gML;A2D5gMC;EACE,WAAA;EACA,UAAA;EACA,mBAAA;EACA,oBAAA;EACA,6BAAA;EACA,yCAAA;C3D8gMH;A2D7gMG;EACE,SAAA;EACA,mBAAA;EACA,aAAA;EACA,oBAAA;EACA,0BAAA;C3D+gML;A2D3gMC;EACE,SAAA;EACA,aAAA;EACA,kBAAA;EACA,sBAAA;EACA,2BAAA;EACA,uCAAA;C3D6gMH;A2D5gMG;EACE,WAAA;EACA,cAAA;EACA,aAAA;EACA,sBAAA;EACA,wBAAA;C3D8gML;A2DzgMD;EACE,kBAAA;EACA,UAAA;EACA,gBAAA;EACA,0BAAA;EACA,iCAAA;EACA,2BAAA;C3D2gMD;A2DxgMD;EACE,kBAAA;C3D0gMD;A4D9nMD;EACE,mBAAA;C5DgoMD;A4D7nMD;EACE,mBAAA;EACA,YAAA;EACA,iBAAA;C5D+nMD;A4DloMD;EAMI,mBAAA;EACA,cAAA;EvD6KF,0CAAA;EACK,qCAAA;EACG,kCAAA;CLm9LT;A4DzoMD;;EAcM,eAAA;C5D+nML;A4D3nMG;EAAA;IvDuLF,uDAAA;IAEK,6CAAA;IACG,+CAAA;IAAA,uCAAA;IAAA,0GAAA;IA7JR,oCAAA;IAEQ,4BAAA;IA+GR,4BAAA;IAEQ,oBAAA;GLw/LP;E4DnoMG;;IvDmHJ,2CAAA;IACQ,mCAAA;IuDjHF,QAAA;G5DsoML;E4DpoMG;;IvD8GJ,4CAAA;IACQ,oCAAA;IuD5GF,QAAA;G5DuoML;E4DroMG;;;IvDyGJ,wCAAA;IACQ,gCAAA;IuDtGF,QAAA;G5DwoML;CACF;A4D9qMD;;;EA6CI,eAAA;C5DsoMH;A4DnrMD;EAiDI,QAAA;C5DqoMH;A4DtrMD;;EAsDI,mBAAA;EACA,OAAA;EACA,YAAA;C5DooMH;A4D5rMD;EA4DI,WAAA;C5DmoMH;A4D/rMD;EA+DI,YAAA;C5DmoMH;A4DlsMD;;EAmEI,QAAA;C5DmoMH;A4DtsMD;EAuEI,YAAA;C5DkoMH;A4DzsMD;EA0EI,WAAA;C5DkoMH;A4D1nMD;EACE,mBAAA;EACA,OAAA;EACA,UAAA;EACA,QAAA;EACA,WAAA;EACA,gBAAA;EACA,YAAA;EACA,mBAAA;EACA,0CAAA;EACA,mCAAA;EtCpGA,0BAAA;EACA,aAAA;CtBiuMD;A4DxnMC;EdrGE,mGAAA;EACA,8FAAA;EACA,qHAAA;EAAA,+FAAA;EACA,uHAAA;EACA,4BAAA;C9CguMH;A4D5nMC;EACE,SAAA;EACA,WAAA;Ed1GA,mGAAA;EACA,8FAAA;EACA,qHAAA;EAAA,+FAAA;EACA,uHAAA;EACA,4BAAA;C9CyuMH;A4D9nMC;;EAEE,YAAA;EACA,sBAAA;EACA,WAAA;EtCxHF,0BAAA;EACA,aAAA;CtByvMD;A4DhqMD;;;;EAuCI,mBAAA;EACA,SAAA;EACA,WAAA;EACA,sBAAA;EACA,kBAAA;C5D+nMH;A4D1qMD;;EA+CI,UAAA;EACA,mBAAA;C5D+nMH;A4D/qMD;;EAoDI,WAAA;EACA,oBAAA;C5D+nMH;A4DprMD;;EAyDI,YAAA;EACA,aAAA;EACA,mBAAA;EACA,eAAA;C5D+nMH;A4D3nMG;EACE,iBAAA;C5D6nML;A4DznMG;EACE,iBAAA;C5D2nML;A4DjnMD;EACE,mBAAA;EACA,aAAA;EACA,UAAA;EACA,YAAA;EACA,WAAA;EACA,gBAAA;EACA,kBAAA;EACA,mBAAA;EACA,iBAAA;C5DmnMD;A4D5nMD;EAYI,sBAAA;EACA,YAAA;EACA,aAAA;EACA,YAAA;EACA,oBAAA;EACA,gBAAA;EAUA,0BAAA;EACA,mCAAA;EAEA,uBAAA;EACA,oBAAA;C5DymMH;A4DxoMD;EAmCI,YAAA;EACA,aAAA;EACA,UAAA;EACA,uBAAA;C5DwmMH;A4DjmMD;EACE,mBAAA;EACA,WAAA;EACA,aAAA;EACA,UAAA;EACA,YAAA;EACA,kBAAA;EACA,qBAAA;EACA,YAAA;EACA,mBAAA;EACA,0CAAA;C5DmmMD;A4DjmMC;EACE,kBAAA;C5DmmMH;A4D7lMD;EAGE;;;;IAKI,YAAA;IACA,aAAA;IACA,kBAAA;IACA,gBAAA;G5D4lMH;E4DpmMD;;IAYI,mBAAA;G5D4lMH;E4DxmMD;;IAgBI,oBAAA;G5D4lMH;E4DvlMD;IACE,WAAA;IACA,UAAA;IACA,qBAAA;G5DylMD;E4DrlMD;IACE,aAAA;G5DulMD;CACF;A6Dz1MC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAEE,eAAA;EACA,aAAA;C7Dy3MH;A6Dv3MC;;;;;;;;;;;;;;;;EACE,YAAA;C7Dw4MH;AiC94MD;E6BVE,eAAA;EACA,mBAAA;EACA,kBAAA;C9D25MD;AiCh5MD;EACE,wBAAA;CjCk5MD;AiCh5MD;EACE,uBAAA;CjCk5MD;AiC14MD;EACE,yBAAA;CjC44MD;AiC14MD;EACE,0BAAA;CjC44MD;AiC14MD;EACE,mBAAA;CjC44MD;AiC14MD;E8BzBE,YAAA;EACA,mBAAA;EACA,kBAAA;EACA,8BAAA;EACA,UAAA;C/Ds6MD;AiCx4MD;EACE,yBAAA;CjC04MD;AiCn4MD;EACE,gBAAA;CjCq4MD;AgEt6MD;EACE,oBAAA;ChEw6MD;AgEl6MD;;;;EClBE,yBAAA;CjE07MD;AgEj6MD;;;;;;;;;;;;EAYE,yBAAA;ChEm6MD;AgE/5MC;EAAA;ICjDA,0BAAA;GjEo9MC;EiEn9MD;IAAU,0BAAA;GjEs9MT;EiEr9MD;IAAU,8BAAA;GjEw9MT;EiEv9MD;;IACU,+BAAA;GjE09MT;CACF;AgEz6MC;EAAA;IACE,0BAAA;GhE46MD;CACF;AgEz6MC;EAAA;IACE,2BAAA;GhE46MD;CACF;AgEz6MC;EAAA;IACE,iCAAA;GhE46MD;CACF;AgEx6MC;EAAA;ICtEA,0BAAA;GjEk/MC;EiEj/MD;IAAU,0BAAA;GjEo/MT;EiEn/MD;IAAU,8BAAA;GjEs/MT;EiEr/MD;;IACU,+BAAA;GjEw/MT;CACF;AgEl7MC;EAAA;IACE,0BAAA;GhEq7MD;CACF;AgEl7MC;EAAA;IACE,2BAAA;GhEq7MD;CACF;AgEl7MC;EAAA;IACE,iCAAA;GhEq7MD;CACF;AgEj7MC;EAAA;IC3FA,0BAAA;GjEghNC;EiE/gND;IAAU,0BAAA;GjEkhNT;EiEjhND;IAAU,8BAAA;GjEohNT;EiEnhND;;IACU,+BAAA;GjEshNT;CACF;AgE37MC;EAAA;IACE,0BAAA;GhE87MD;CACF;AgE37MC;EAAA;IACE,2BAAA;GhE87MD;CACF;AgE37MC;EAAA;IACE,iCAAA;GhE87MD;CACF;AgE17MC;EAAA;IChHA,0BAAA;GjE8iNC;EiE7iND;IAAU,0BAAA;GjEgjNT;EiE/iND;IAAU,8BAAA;GjEkjNT;EiEjjND;;IACU,+BAAA;GjEojNT;CACF;AgEp8MC;EAAA;IACE,0BAAA;GhEu8MD;CACF;AgEp8MC;EAAA;IACE,2BAAA;GhEu8MD;CACF;AgEp8MC;EAAA;IACE,iCAAA;GhEu8MD;CACF;AgEn8MC;EAAA;IC7HA,yBAAA;GjEokNC;CACF;AgEn8MC;EAAA;IClIA,yBAAA;GjEykNC;CACF;AgEn8MC;EAAA;ICvIA,yBAAA;GjE8kNC;CACF;AgEn8MC;EAAA;IC5IA,yBAAA;GjEmlNC;CACF;AgE77MD;ECvJE,yBAAA;CjEulND;AgE77MC;EAAA;IClKA,0BAAA;GjEmmNC;EiElmND;IAAU,0BAAA;GjEqmNT;EiEpmND;IAAU,8BAAA;GjEumNT;EiEtmND;;IACU,+BAAA;GjEymNT;CACF;AgEx8MD;EACE,yBAAA;ChE08MD;AgEx8MC;EAAA;IACE,0BAAA;GhE28MD;CACF;AgEz8MD;EACE,yBAAA;ChE28MD;AgEz8MC;EAAA;IACE,2BAAA;GhE48MD;CACF;AgE18MD;EACE,yBAAA;ChE48MD;AgE18MC;EAAA;IACE,iCAAA;GhE68MD;CACF;AgEz8MC;EAAA;ICrLA,yBAAA;GjEkoNC;CACF","file":"bootstrap.css","sourcesContent":["/*!\n * Bootstrap v3.4.1 (https://getbootstrap.com/)\n * Copyright 2011-2019 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */\nhtml {\n font-family: sans-serif;\n -ms-text-size-adjust: 100%;\n -webkit-text-size-adjust: 100%;\n}\nbody {\n margin: 0;\n}\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nmenu,\nnav,\nsection,\nsummary {\n display: block;\n}\naudio,\ncanvas,\nprogress,\nvideo {\n display: inline-block;\n vertical-align: baseline;\n}\naudio:not([controls]) {\n display: none;\n height: 0;\n}\n[hidden],\ntemplate {\n display: none;\n}\na {\n background-color: transparent;\n}\na:active,\na:hover {\n outline: 0;\n}\nabbr[title] {\n border-bottom: none;\n text-decoration: underline;\n text-decoration: underline dotted;\n}\nb,\nstrong {\n font-weight: bold;\n}\ndfn {\n font-style: italic;\n}\nh1 {\n font-size: 2em;\n margin: 0.67em 0;\n}\nmark {\n background: #ff0;\n color: #000;\n}\nsmall {\n font-size: 80%;\n}\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\nsup {\n top: -0.5em;\n}\nsub {\n bottom: -0.25em;\n}\nimg {\n border: 0;\n}\nsvg:not(:root) {\n overflow: hidden;\n}\nfigure {\n margin: 1em 40px;\n}\nhr {\n box-sizing: content-box;\n height: 0;\n}\npre {\n overflow: auto;\n}\ncode,\nkbd,\npre,\nsamp {\n font-family: monospace, monospace;\n font-size: 1em;\n}\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n color: inherit;\n font: inherit;\n margin: 0;\n}\nbutton {\n overflow: visible;\n}\nbutton,\nselect {\n text-transform: none;\n}\nbutton,\nhtml input[type=\"button\"],\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n -webkit-appearance: button;\n cursor: pointer;\n}\nbutton[disabled],\nhtml input[disabled] {\n cursor: default;\n}\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner {\n border: 0;\n padding: 0;\n}\ninput {\n line-height: normal;\n}\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n box-sizing: border-box;\n padding: 0;\n}\ninput[type=\"number\"]::-webkit-inner-spin-button,\ninput[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\ninput[type=\"search\"] {\n -webkit-appearance: textfield;\n box-sizing: content-box;\n}\ninput[type=\"search\"]::-webkit-search-cancel-button,\ninput[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\nfieldset {\n border: 1px solid #c0c0c0;\n margin: 0 2px;\n padding: 0.35em 0.625em 0.75em;\n}\nlegend {\n border: 0;\n padding: 0;\n}\ntextarea {\n overflow: auto;\n}\noptgroup {\n font-weight: bold;\n}\ntable {\n border-collapse: collapse;\n border-spacing: 0;\n}\ntd,\nth {\n padding: 0;\n}\n/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */\n@media print {\n *,\n *:before,\n *:after {\n color: #000 !important;\n text-shadow: none !important;\n background: transparent !important;\n box-shadow: none !important;\n }\n a,\n a:visited {\n text-decoration: underline;\n }\n a[href]:after {\n content: \" (\" attr(href) \")\";\n }\n abbr[title]:after {\n content: \" (\" attr(title) \")\";\n }\n a[href^=\"#\"]:after,\n a[href^=\"javascript:\"]:after {\n content: \"\";\n }\n pre,\n blockquote {\n border: 1px solid #999;\n page-break-inside: avoid;\n }\n thead {\n display: table-header-group;\n }\n tr,\n img {\n page-break-inside: avoid;\n }\n img {\n max-width: 100% !important;\n }\n p,\n h2,\n h3 {\n orphans: 3;\n widows: 3;\n }\n h2,\n h3 {\n page-break-after: avoid;\n }\n .navbar {\n display: none;\n }\n .btn > .caret,\n .dropup > .btn > .caret {\n border-top-color: #000 !important;\n }\n .label {\n border: 1px solid #000;\n }\n .table {\n border-collapse: collapse !important;\n }\n .table td,\n .table th {\n background-color: #fff !important;\n }\n .table-bordered th,\n .table-bordered td {\n border: 1px solid #ddd !important;\n }\n}\n@font-face {\n font-family: \"Glyphicons Halflings\";\n src: url(\"../fonts/glyphicons-halflings-regular.eot\");\n src: url(\"../fonts/glyphicons-halflings-regular.eot?#iefix\") format(\"embedded-opentype\"), url(\"../fonts/glyphicons-halflings-regular.woff2\") format(\"woff2\"), url(\"../fonts/glyphicons-halflings-regular.woff\") format(\"woff\"), url(\"../fonts/glyphicons-halflings-regular.ttf\") format(\"truetype\"), url(\"../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular\") format(\"svg\");\n}\n.glyphicon {\n position: relative;\n top: 1px;\n display: inline-block;\n font-family: \"Glyphicons Halflings\";\n font-style: normal;\n font-weight: 400;\n line-height: 1;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n.glyphicon-asterisk:before {\n content: \"\\002a\";\n}\n.glyphicon-plus:before {\n content: \"\\002b\";\n}\n.glyphicon-euro:before,\n.glyphicon-eur:before {\n content: \"\\20ac\";\n}\n.glyphicon-minus:before {\n content: \"\\2212\";\n}\n.glyphicon-cloud:before {\n content: \"\\2601\";\n}\n.glyphicon-envelope:before {\n content: \"\\2709\";\n}\n.glyphicon-pencil:before {\n content: \"\\270f\";\n}\n.glyphicon-glass:before {\n content: \"\\e001\";\n}\n.glyphicon-music:before {\n content: \"\\e002\";\n}\n.glyphicon-search:before {\n content: \"\\e003\";\n}\n.glyphicon-heart:before {\n content: \"\\e005\";\n}\n.glyphicon-star:before {\n content: \"\\e006\";\n}\n.glyphicon-star-empty:before {\n content: \"\\e007\";\n}\n.glyphicon-user:before {\n content: \"\\e008\";\n}\n.glyphicon-film:before {\n content: \"\\e009\";\n}\n.glyphicon-th-large:before {\n content: \"\\e010\";\n}\n.glyphicon-th:before {\n content: \"\\e011\";\n}\n.glyphicon-th-list:before {\n content: \"\\e012\";\n}\n.glyphicon-ok:before {\n content: \"\\e013\";\n}\n.glyphicon-remove:before {\n content: \"\\e014\";\n}\n.glyphicon-zoom-in:before {\n content: \"\\e015\";\n}\n.glyphicon-zoom-out:before {\n content: \"\\e016\";\n}\n.glyphicon-off:before {\n content: \"\\e017\";\n}\n.glyphicon-signal:before {\n content: \"\\e018\";\n}\n.glyphicon-cog:before {\n content: \"\\e019\";\n}\n.glyphicon-trash:before {\n content: \"\\e020\";\n}\n.glyphicon-home:before {\n content: \"\\e021\";\n}\n.glyphicon-file:before {\n content: \"\\e022\";\n}\n.glyphicon-time:before {\n content: \"\\e023\";\n}\n.glyphicon-road:before {\n content: \"\\e024\";\n}\n.glyphicon-download-alt:before {\n content: \"\\e025\";\n}\n.glyphicon-download:before {\n content: \"\\e026\";\n}\n.glyphicon-upload:before {\n content: \"\\e027\";\n}\n.glyphicon-inbox:before {\n content: \"\\e028\";\n}\n.glyphicon-play-circle:before {\n content: \"\\e029\";\n}\n.glyphicon-repeat:before {\n content: \"\\e030\";\n}\n.glyphicon-refresh:before {\n content: \"\\e031\";\n}\n.glyphicon-list-alt:before {\n content: \"\\e032\";\n}\n.glyphicon-lock:before {\n content: \"\\e033\";\n}\n.glyphicon-flag:before {\n content: \"\\e034\";\n}\n.glyphicon-headphones:before {\n content: \"\\e035\";\n}\n.glyphicon-volume-off:before {\n content: \"\\e036\";\n}\n.glyphicon-volume-down:before {\n content: \"\\e037\";\n}\n.glyphicon-volume-up:before {\n content: \"\\e038\";\n}\n.glyphicon-qrcode:before {\n content: \"\\e039\";\n}\n.glyphicon-barcode:before {\n content: \"\\e040\";\n}\n.glyphicon-tag:before {\n content: \"\\e041\";\n}\n.glyphicon-tags:before {\n content: \"\\e042\";\n}\n.glyphicon-book:before {\n content: \"\\e043\";\n}\n.glyphicon-bookmark:before {\n content: \"\\e044\";\n}\n.glyphicon-print:before {\n content: \"\\e045\";\n}\n.glyphicon-camera:before {\n content: \"\\e046\";\n}\n.glyphicon-font:before {\n content: \"\\e047\";\n}\n.glyphicon-bold:before {\n content: \"\\e048\";\n}\n.glyphicon-italic:before {\n content: \"\\e049\";\n}\n.glyphicon-text-height:before {\n content: \"\\e050\";\n}\n.glyphicon-text-width:before {\n content: \"\\e051\";\n}\n.glyphicon-align-left:before {\n content: \"\\e052\";\n}\n.glyphicon-align-center:before {\n content: \"\\e053\";\n}\n.glyphicon-align-right:before {\n content: \"\\e054\";\n}\n.glyphicon-align-justify:before {\n content: \"\\e055\";\n}\n.glyphicon-list:before {\n content: \"\\e056\";\n}\n.glyphicon-indent-left:before {\n content: \"\\e057\";\n}\n.glyphicon-indent-right:before {\n content: \"\\e058\";\n}\n.glyphicon-facetime-video:before {\n content: \"\\e059\";\n}\n.glyphicon-picture:before {\n content: \"\\e060\";\n}\n.glyphicon-map-marker:before {\n content: \"\\e062\";\n}\n.glyphicon-adjust:before {\n content: \"\\e063\";\n}\n.glyphicon-tint:before {\n content: \"\\e064\";\n}\n.glyphicon-edit:before {\n content: \"\\e065\";\n}\n.glyphicon-share:before {\n content: \"\\e066\";\n}\n.glyphicon-check:before {\n content: \"\\e067\";\n}\n.glyphicon-move:before {\n content: \"\\e068\";\n}\n.glyphicon-step-backward:before {\n content: \"\\e069\";\n}\n.glyphicon-fast-backward:before {\n content: \"\\e070\";\n}\n.glyphicon-backward:before {\n content: \"\\e071\";\n}\n.glyphicon-play:before {\n content: \"\\e072\";\n}\n.glyphicon-pause:before {\n content: \"\\e073\";\n}\n.glyphicon-stop:before {\n content: \"\\e074\";\n}\n.glyphicon-forward:before {\n content: \"\\e075\";\n}\n.glyphicon-fast-forward:before {\n content: \"\\e076\";\n}\n.glyphicon-step-forward:before {\n content: \"\\e077\";\n}\n.glyphicon-eject:before {\n content: \"\\e078\";\n}\n.glyphicon-chevron-left:before {\n content: \"\\e079\";\n}\n.glyphicon-chevron-right:before {\n content: \"\\e080\";\n}\n.glyphicon-plus-sign:before {\n content: \"\\e081\";\n}\n.glyphicon-minus-sign:before {\n content: \"\\e082\";\n}\n.glyphicon-remove-sign:before {\n content: \"\\e083\";\n}\n.glyphicon-ok-sign:before {\n content: \"\\e084\";\n}\n.glyphicon-question-sign:before {\n content: \"\\e085\";\n}\n.glyphicon-info-sign:before {\n content: \"\\e086\";\n}\n.glyphicon-screenshot:before {\n content: \"\\e087\";\n}\n.glyphicon-remove-circle:before {\n content: \"\\e088\";\n}\n.glyphicon-ok-circle:before {\n content: \"\\e089\";\n}\n.glyphicon-ban-circle:before {\n content: \"\\e090\";\n}\n.glyphicon-arrow-left:before {\n content: \"\\e091\";\n}\n.glyphicon-arrow-right:before {\n content: \"\\e092\";\n}\n.glyphicon-arrow-up:before {\n content: \"\\e093\";\n}\n.glyphicon-arrow-down:before {\n content: \"\\e094\";\n}\n.glyphicon-share-alt:before {\n content: \"\\e095\";\n}\n.glyphicon-resize-full:before {\n content: \"\\e096\";\n}\n.glyphicon-resize-small:before {\n content: \"\\e097\";\n}\n.glyphicon-exclamation-sign:before {\n content: \"\\e101\";\n}\n.glyphicon-gift:before {\n content: \"\\e102\";\n}\n.glyphicon-leaf:before {\n content: \"\\e103\";\n}\n.glyphicon-fire:before {\n content: \"\\e104\";\n}\n.glyphicon-eye-open:before {\n content: \"\\e105\";\n}\n.glyphicon-eye-close:before {\n content: \"\\e106\";\n}\n.glyphicon-warning-sign:before {\n content: \"\\e107\";\n}\n.glyphicon-plane:before {\n content: \"\\e108\";\n}\n.glyphicon-calendar:before {\n content: \"\\e109\";\n}\n.glyphicon-random:before {\n content: \"\\e110\";\n}\n.glyphicon-comment:before {\n content: \"\\e111\";\n}\n.glyphicon-magnet:before {\n content: \"\\e112\";\n}\n.glyphicon-chevron-up:before {\n content: \"\\e113\";\n}\n.glyphicon-chevron-down:before {\n content: \"\\e114\";\n}\n.glyphicon-retweet:before {\n content: \"\\e115\";\n}\n.glyphicon-shopping-cart:before {\n content: \"\\e116\";\n}\n.glyphicon-folder-close:before {\n content: \"\\e117\";\n}\n.glyphicon-folder-open:before {\n content: \"\\e118\";\n}\n.glyphicon-resize-vertical:before {\n content: \"\\e119\";\n}\n.glyphicon-resize-horizontal:before {\n content: \"\\e120\";\n}\n.glyphicon-hdd:before {\n content: \"\\e121\";\n}\n.glyphicon-bullhorn:before {\n content: \"\\e122\";\n}\n.glyphicon-bell:before {\n content: \"\\e123\";\n}\n.glyphicon-certificate:before {\n content: \"\\e124\";\n}\n.glyphicon-thumbs-up:before {\n content: \"\\e125\";\n}\n.glyphicon-thumbs-down:before {\n content: \"\\e126\";\n}\n.glyphicon-hand-right:before {\n content: \"\\e127\";\n}\n.glyphicon-hand-left:before {\n content: \"\\e128\";\n}\n.glyphicon-hand-up:before {\n content: \"\\e129\";\n}\n.glyphicon-hand-down:before {\n content: \"\\e130\";\n}\n.glyphicon-circle-arrow-right:before {\n content: \"\\e131\";\n}\n.glyphicon-circle-arrow-left:before {\n content: \"\\e132\";\n}\n.glyphicon-circle-arrow-up:before {\n content: \"\\e133\";\n}\n.glyphicon-circle-arrow-down:before {\n content: \"\\e134\";\n}\n.glyphicon-globe:before {\n content: \"\\e135\";\n}\n.glyphicon-wrench:before {\n content: \"\\e136\";\n}\n.glyphicon-tasks:before {\n content: \"\\e137\";\n}\n.glyphicon-filter:before {\n content: \"\\e138\";\n}\n.glyphicon-briefcase:before {\n content: \"\\e139\";\n}\n.glyphicon-fullscreen:before {\n content: \"\\e140\";\n}\n.glyphicon-dashboard:before {\n content: \"\\e141\";\n}\n.glyphicon-paperclip:before {\n content: \"\\e142\";\n}\n.glyphicon-heart-empty:before {\n content: \"\\e143\";\n}\n.glyphicon-link:before {\n content: \"\\e144\";\n}\n.glyphicon-phone:before {\n content: \"\\e145\";\n}\n.glyphicon-pushpin:before {\n content: \"\\e146\";\n}\n.glyphicon-usd:before {\n content: \"\\e148\";\n}\n.glyphicon-gbp:before {\n content: \"\\e149\";\n}\n.glyphicon-sort:before {\n content: \"\\e150\";\n}\n.glyphicon-sort-by-alphabet:before {\n content: \"\\e151\";\n}\n.glyphicon-sort-by-alphabet-alt:before {\n content: \"\\e152\";\n}\n.glyphicon-sort-by-order:before {\n content: \"\\e153\";\n}\n.glyphicon-sort-by-order-alt:before {\n content: \"\\e154\";\n}\n.glyphicon-sort-by-attributes:before {\n content: \"\\e155\";\n}\n.glyphicon-sort-by-attributes-alt:before {\n content: \"\\e156\";\n}\n.glyphicon-unchecked:before {\n content: \"\\e157\";\n}\n.glyphicon-expand:before {\n content: \"\\e158\";\n}\n.glyphicon-collapse-down:before {\n content: \"\\e159\";\n}\n.glyphicon-collapse-up:before {\n content: \"\\e160\";\n}\n.glyphicon-log-in:before {\n content: \"\\e161\";\n}\n.glyphicon-flash:before {\n content: \"\\e162\";\n}\n.glyphicon-log-out:before {\n content: \"\\e163\";\n}\n.glyphicon-new-window:before {\n content: \"\\e164\";\n}\n.glyphicon-record:before {\n content: \"\\e165\";\n}\n.glyphicon-save:before {\n content: \"\\e166\";\n}\n.glyphicon-open:before {\n content: \"\\e167\";\n}\n.glyphicon-saved:before {\n content: \"\\e168\";\n}\n.glyphicon-import:before {\n content: \"\\e169\";\n}\n.glyphicon-export:before {\n content: \"\\e170\";\n}\n.glyphicon-send:before {\n content: \"\\e171\";\n}\n.glyphicon-floppy-disk:before {\n content: \"\\e172\";\n}\n.glyphicon-floppy-saved:before {\n content: \"\\e173\";\n}\n.glyphicon-floppy-remove:before {\n content: \"\\e174\";\n}\n.glyphicon-floppy-save:before {\n content: \"\\e175\";\n}\n.glyphicon-floppy-open:before {\n content: \"\\e176\";\n}\n.glyphicon-credit-card:before {\n content: \"\\e177\";\n}\n.glyphicon-transfer:before {\n content: \"\\e178\";\n}\n.glyphicon-cutlery:before {\n content: \"\\e179\";\n}\n.glyphicon-header:before {\n content: \"\\e180\";\n}\n.glyphicon-compressed:before {\n content: \"\\e181\";\n}\n.glyphicon-earphone:before {\n content: \"\\e182\";\n}\n.glyphicon-phone-alt:before {\n content: \"\\e183\";\n}\n.glyphicon-tower:before {\n content: \"\\e184\";\n}\n.glyphicon-stats:before {\n content: \"\\e185\";\n}\n.glyphicon-sd-video:before {\n content: \"\\e186\";\n}\n.glyphicon-hd-video:before {\n content: \"\\e187\";\n}\n.glyphicon-subtitles:before {\n content: \"\\e188\";\n}\n.glyphicon-sound-stereo:before {\n content: \"\\e189\";\n}\n.glyphicon-sound-dolby:before {\n content: \"\\e190\";\n}\n.glyphicon-sound-5-1:before {\n content: \"\\e191\";\n}\n.glyphicon-sound-6-1:before {\n content: \"\\e192\";\n}\n.glyphicon-sound-7-1:before {\n content: \"\\e193\";\n}\n.glyphicon-copyright-mark:before {\n content: \"\\e194\";\n}\n.glyphicon-registration-mark:before {\n content: \"\\e195\";\n}\n.glyphicon-cloud-download:before {\n content: \"\\e197\";\n}\n.glyphicon-cloud-upload:before {\n content: \"\\e198\";\n}\n.glyphicon-tree-conifer:before {\n content: \"\\e199\";\n}\n.glyphicon-tree-deciduous:before {\n content: \"\\e200\";\n}\n.glyphicon-cd:before {\n content: \"\\e201\";\n}\n.glyphicon-save-file:before {\n content: \"\\e202\";\n}\n.glyphicon-open-file:before {\n content: \"\\e203\";\n}\n.glyphicon-level-up:before {\n content: \"\\e204\";\n}\n.glyphicon-copy:before {\n content: \"\\e205\";\n}\n.glyphicon-paste:before {\n content: \"\\e206\";\n}\n.glyphicon-alert:before {\n content: \"\\e209\";\n}\n.glyphicon-equalizer:before {\n content: \"\\e210\";\n}\n.glyphicon-king:before {\n content: \"\\e211\";\n}\n.glyphicon-queen:before {\n content: \"\\e212\";\n}\n.glyphicon-pawn:before {\n content: \"\\e213\";\n}\n.glyphicon-bishop:before {\n content: \"\\e214\";\n}\n.glyphicon-knight:before {\n content: \"\\e215\";\n}\n.glyphicon-baby-formula:before {\n content: \"\\e216\";\n}\n.glyphicon-tent:before {\n content: \"\\26fa\";\n}\n.glyphicon-blackboard:before {\n content: \"\\e218\";\n}\n.glyphicon-bed:before {\n content: \"\\e219\";\n}\n.glyphicon-apple:before {\n content: \"\\f8ff\";\n}\n.glyphicon-erase:before {\n content: \"\\e221\";\n}\n.glyphicon-hourglass:before {\n content: \"\\231b\";\n}\n.glyphicon-lamp:before {\n content: \"\\e223\";\n}\n.glyphicon-duplicate:before {\n content: \"\\e224\";\n}\n.glyphicon-piggy-bank:before {\n content: \"\\e225\";\n}\n.glyphicon-scissors:before {\n content: \"\\e226\";\n}\n.glyphicon-bitcoin:before {\n content: \"\\e227\";\n}\n.glyphicon-btc:before {\n content: \"\\e227\";\n}\n.glyphicon-xbt:before {\n content: \"\\e227\";\n}\n.glyphicon-yen:before {\n content: \"\\00a5\";\n}\n.glyphicon-jpy:before {\n content: \"\\00a5\";\n}\n.glyphicon-ruble:before {\n content: \"\\20bd\";\n}\n.glyphicon-rub:before {\n content: \"\\20bd\";\n}\n.glyphicon-scale:before {\n content: \"\\e230\";\n}\n.glyphicon-ice-lolly:before {\n content: \"\\e231\";\n}\n.glyphicon-ice-lolly-tasted:before {\n content: \"\\e232\";\n}\n.glyphicon-education:before {\n content: \"\\e233\";\n}\n.glyphicon-option-horizontal:before {\n content: \"\\e234\";\n}\n.glyphicon-option-vertical:before {\n content: \"\\e235\";\n}\n.glyphicon-menu-hamburger:before {\n content: \"\\e236\";\n}\n.glyphicon-modal-window:before {\n content: \"\\e237\";\n}\n.glyphicon-oil:before {\n content: \"\\e238\";\n}\n.glyphicon-grain:before {\n content: \"\\e239\";\n}\n.glyphicon-sunglasses:before {\n content: \"\\e240\";\n}\n.glyphicon-text-size:before {\n content: \"\\e241\";\n}\n.glyphicon-text-color:before {\n content: \"\\e242\";\n}\n.glyphicon-text-background:before {\n content: \"\\e243\";\n}\n.glyphicon-object-align-top:before {\n content: \"\\e244\";\n}\n.glyphicon-object-align-bottom:before {\n content: \"\\e245\";\n}\n.glyphicon-object-align-horizontal:before {\n content: \"\\e246\";\n}\n.glyphicon-object-align-left:before {\n content: \"\\e247\";\n}\n.glyphicon-object-align-vertical:before {\n content: \"\\e248\";\n}\n.glyphicon-object-align-right:before {\n content: \"\\e249\";\n}\n.glyphicon-triangle-right:before {\n content: \"\\e250\";\n}\n.glyphicon-triangle-left:before {\n content: \"\\e251\";\n}\n.glyphicon-triangle-bottom:before {\n content: \"\\e252\";\n}\n.glyphicon-triangle-top:before {\n content: \"\\e253\";\n}\n.glyphicon-console:before {\n content: \"\\e254\";\n}\n.glyphicon-superscript:before {\n content: \"\\e255\";\n}\n.glyphicon-subscript:before {\n content: \"\\e256\";\n}\n.glyphicon-menu-left:before {\n content: \"\\e257\";\n}\n.glyphicon-menu-right:before {\n content: \"\\e258\";\n}\n.glyphicon-menu-down:before {\n content: \"\\e259\";\n}\n.glyphicon-menu-up:before {\n content: \"\\e260\";\n}\n* {\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n}\n*:before,\n*:after {\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n}\nhtml {\n font-size: 10px;\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n}\nbody {\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n font-size: 14px;\n line-height: 1.42857143;\n color: #333333;\n background-color: #fff;\n}\ninput,\nbutton,\nselect,\ntextarea {\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\na {\n color: #337ab7;\n text-decoration: none;\n}\na:hover,\na:focus {\n color: #23527c;\n text-decoration: underline;\n}\na:focus {\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\nfigure {\n margin: 0;\n}\nimg {\n vertical-align: middle;\n}\n.img-responsive,\n.thumbnail > img,\n.thumbnail a > img,\n.carousel-inner > .item > img,\n.carousel-inner > .item > a > img {\n display: block;\n max-width: 100%;\n height: auto;\n}\n.img-rounded {\n border-radius: 6px;\n}\n.img-thumbnail {\n padding: 4px;\n line-height: 1.42857143;\n background-color: #fff;\n border: 1px solid #ddd;\n border-radius: 4px;\n -webkit-transition: all 0.2s ease-in-out;\n -o-transition: all 0.2s ease-in-out;\n transition: all 0.2s ease-in-out;\n display: inline-block;\n max-width: 100%;\n height: auto;\n}\n.img-circle {\n border-radius: 50%;\n}\nhr {\n margin-top: 20px;\n margin-bottom: 20px;\n border: 0;\n border-top: 1px solid #eeeeee;\n}\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n border: 0;\n}\n.sr-only-focusable:active,\n.sr-only-focusable:focus {\n position: static;\n width: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n clip: auto;\n}\n[role=\"button\"] {\n cursor: pointer;\n}\nh1,\nh2,\nh3,\nh4,\nh5,\nh6,\n.h1,\n.h2,\n.h3,\n.h4,\n.h5,\n.h6 {\n font-family: inherit;\n font-weight: 500;\n line-height: 1.1;\n color: inherit;\n}\nh1 small,\nh2 small,\nh3 small,\nh4 small,\nh5 small,\nh6 small,\n.h1 small,\n.h2 small,\n.h3 small,\n.h4 small,\n.h5 small,\n.h6 small,\nh1 .small,\nh2 .small,\nh3 .small,\nh4 .small,\nh5 .small,\nh6 .small,\n.h1 .small,\n.h2 .small,\n.h3 .small,\n.h4 .small,\n.h5 .small,\n.h6 .small {\n font-weight: 400;\n line-height: 1;\n color: #777777;\n}\nh1,\n.h1,\nh2,\n.h2,\nh3,\n.h3 {\n margin-top: 20px;\n margin-bottom: 10px;\n}\nh1 small,\n.h1 small,\nh2 small,\n.h2 small,\nh3 small,\n.h3 small,\nh1 .small,\n.h1 .small,\nh2 .small,\n.h2 .small,\nh3 .small,\n.h3 .small {\n font-size: 65%;\n}\nh4,\n.h4,\nh5,\n.h5,\nh6,\n.h6 {\n margin-top: 10px;\n margin-bottom: 10px;\n}\nh4 small,\n.h4 small,\nh5 small,\n.h5 small,\nh6 small,\n.h6 small,\nh4 .small,\n.h4 .small,\nh5 .small,\n.h5 .small,\nh6 .small,\n.h6 .small {\n font-size: 75%;\n}\nh1,\n.h1 {\n font-size: 36px;\n}\nh2,\n.h2 {\n font-size: 30px;\n}\nh3,\n.h3 {\n font-size: 24px;\n}\nh4,\n.h4 {\n font-size: 18px;\n}\nh5,\n.h5 {\n font-size: 14px;\n}\nh6,\n.h6 {\n font-size: 12px;\n}\np {\n margin: 0 0 10px;\n}\n.lead {\n margin-bottom: 20px;\n font-size: 16px;\n font-weight: 300;\n line-height: 1.4;\n}\n@media (min-width: 768px) {\n .lead {\n font-size: 21px;\n }\n}\nsmall,\n.small {\n font-size: 85%;\n}\nmark,\n.mark {\n padding: 0.2em;\n background-color: #fcf8e3;\n}\n.text-left {\n text-align: left;\n}\n.text-right {\n text-align: right;\n}\n.text-center {\n text-align: center;\n}\n.text-justify {\n text-align: justify;\n}\n.text-nowrap {\n white-space: nowrap;\n}\n.text-lowercase {\n text-transform: lowercase;\n}\n.text-uppercase {\n text-transform: uppercase;\n}\n.text-capitalize {\n text-transform: capitalize;\n}\n.text-muted {\n color: #777777;\n}\n.text-primary {\n color: #337ab7;\n}\na.text-primary:hover,\na.text-primary:focus {\n color: #286090;\n}\n.text-success {\n color: #3c763d;\n}\na.text-success:hover,\na.text-success:focus {\n color: #2b542c;\n}\n.text-info {\n color: #31708f;\n}\na.text-info:hover,\na.text-info:focus {\n color: #245269;\n}\n.text-warning {\n color: #8a6d3b;\n}\na.text-warning:hover,\na.text-warning:focus {\n color: #66512c;\n}\n.text-danger {\n color: #a94442;\n}\na.text-danger:hover,\na.text-danger:focus {\n color: #843534;\n}\n.bg-primary {\n color: #fff;\n background-color: #337ab7;\n}\na.bg-primary:hover,\na.bg-primary:focus {\n background-color: #286090;\n}\n.bg-success {\n background-color: #dff0d8;\n}\na.bg-success:hover,\na.bg-success:focus {\n background-color: #c1e2b3;\n}\n.bg-info {\n background-color: #d9edf7;\n}\na.bg-info:hover,\na.bg-info:focus {\n background-color: #afd9ee;\n}\n.bg-warning {\n background-color: #fcf8e3;\n}\na.bg-warning:hover,\na.bg-warning:focus {\n background-color: #f7ecb5;\n}\n.bg-danger {\n background-color: #f2dede;\n}\na.bg-danger:hover,\na.bg-danger:focus {\n background-color: #e4b9b9;\n}\n.page-header {\n padding-bottom: 9px;\n margin: 40px 0 20px;\n border-bottom: 1px solid #eeeeee;\n}\nul,\nol {\n margin-top: 0;\n margin-bottom: 10px;\n}\nul ul,\nol ul,\nul ol,\nol ol {\n margin-bottom: 0;\n}\n.list-unstyled {\n padding-left: 0;\n list-style: none;\n}\n.list-inline {\n padding-left: 0;\n list-style: none;\n margin-left: -5px;\n}\n.list-inline > li {\n display: inline-block;\n padding-right: 5px;\n padding-left: 5px;\n}\ndl {\n margin-top: 0;\n margin-bottom: 20px;\n}\ndt,\ndd {\n line-height: 1.42857143;\n}\ndt {\n font-weight: 700;\n}\ndd {\n margin-left: 0;\n}\n@media (min-width: 768px) {\n .dl-horizontal dt {\n float: left;\n width: 160px;\n clear: left;\n text-align: right;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n .dl-horizontal dd {\n margin-left: 180px;\n }\n}\nabbr[title],\nabbr[data-original-title] {\n cursor: help;\n}\n.initialism {\n font-size: 90%;\n text-transform: uppercase;\n}\nblockquote {\n padding: 10px 20px;\n margin: 0 0 20px;\n font-size: 17.5px;\n border-left: 5px solid #eeeeee;\n}\nblockquote p:last-child,\nblockquote ul:last-child,\nblockquote ol:last-child {\n margin-bottom: 0;\n}\nblockquote footer,\nblockquote small,\nblockquote .small {\n display: block;\n font-size: 80%;\n line-height: 1.42857143;\n color: #777777;\n}\nblockquote footer:before,\nblockquote small:before,\nblockquote .small:before {\n content: \"\\2014 \\00A0\";\n}\n.blockquote-reverse,\nblockquote.pull-right {\n padding-right: 15px;\n padding-left: 0;\n text-align: right;\n border-right: 5px solid #eeeeee;\n border-left: 0;\n}\n.blockquote-reverse footer:before,\nblockquote.pull-right footer:before,\n.blockquote-reverse small:before,\nblockquote.pull-right small:before,\n.blockquote-reverse .small:before,\nblockquote.pull-right .small:before {\n content: \"\";\n}\n.blockquote-reverse footer:after,\nblockquote.pull-right footer:after,\n.blockquote-reverse small:after,\nblockquote.pull-right small:after,\n.blockquote-reverse .small:after,\nblockquote.pull-right .small:after {\n content: \"\\00A0 \\2014\";\n}\naddress {\n margin-bottom: 20px;\n font-style: normal;\n line-height: 1.42857143;\n}\ncode,\nkbd,\npre,\nsamp {\n font-family: Menlo, Monaco, Consolas, \"Courier New\", monospace;\n}\ncode {\n padding: 2px 4px;\n font-size: 90%;\n color: #c7254e;\n background-color: #f9f2f4;\n border-radius: 4px;\n}\nkbd {\n padding: 2px 4px;\n font-size: 90%;\n color: #fff;\n background-color: #333;\n border-radius: 3px;\n box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);\n}\nkbd kbd {\n padding: 0;\n font-size: 100%;\n font-weight: 700;\n box-shadow: none;\n}\npre {\n display: block;\n padding: 9.5px;\n margin: 0 0 10px;\n font-size: 13px;\n line-height: 1.42857143;\n color: #333333;\n word-break: break-all;\n word-wrap: break-word;\n background-color: #f5f5f5;\n border: 1px solid #ccc;\n border-radius: 4px;\n}\npre code {\n padding: 0;\n font-size: inherit;\n color: inherit;\n white-space: pre-wrap;\n background-color: transparent;\n border-radius: 0;\n}\n.pre-scrollable {\n max-height: 340px;\n overflow-y: scroll;\n}\n.container {\n padding-right: 15px;\n padding-left: 15px;\n margin-right: auto;\n margin-left: auto;\n}\n@media (min-width: 768px) {\n .container {\n width: 750px;\n }\n}\n@media (min-width: 992px) {\n .container {\n width: 970px;\n }\n}\n@media (min-width: 1200px) {\n .container {\n width: 1170px;\n }\n}\n.container-fluid {\n padding-right: 15px;\n padding-left: 15px;\n margin-right: auto;\n margin-left: auto;\n}\n.row {\n margin-right: -15px;\n margin-left: -15px;\n}\n.row-no-gutters {\n margin-right: 0;\n margin-left: 0;\n}\n.row-no-gutters [class*=\"col-\"] {\n padding-right: 0;\n padding-left: 0;\n}\n.col-xs-1,\n.col-sm-1,\n.col-md-1,\n.col-lg-1,\n.col-xs-2,\n.col-sm-2,\n.col-md-2,\n.col-lg-2,\n.col-xs-3,\n.col-sm-3,\n.col-md-3,\n.col-lg-3,\n.col-xs-4,\n.col-sm-4,\n.col-md-4,\n.col-lg-4,\n.col-xs-5,\n.col-sm-5,\n.col-md-5,\n.col-lg-5,\n.col-xs-6,\n.col-sm-6,\n.col-md-6,\n.col-lg-6,\n.col-xs-7,\n.col-sm-7,\n.col-md-7,\n.col-lg-7,\n.col-xs-8,\n.col-sm-8,\n.col-md-8,\n.col-lg-8,\n.col-xs-9,\n.col-sm-9,\n.col-md-9,\n.col-lg-9,\n.col-xs-10,\n.col-sm-10,\n.col-md-10,\n.col-lg-10,\n.col-xs-11,\n.col-sm-11,\n.col-md-11,\n.col-lg-11,\n.col-xs-12,\n.col-sm-12,\n.col-md-12,\n.col-lg-12 {\n position: relative;\n min-height: 1px;\n padding-right: 15px;\n padding-left: 15px;\n}\n.col-xs-1,\n.col-xs-2,\n.col-xs-3,\n.col-xs-4,\n.col-xs-5,\n.col-xs-6,\n.col-xs-7,\n.col-xs-8,\n.col-xs-9,\n.col-xs-10,\n.col-xs-11,\n.col-xs-12 {\n float: left;\n}\n.col-xs-12 {\n width: 100%;\n}\n.col-xs-11 {\n width: 91.66666667%;\n}\n.col-xs-10 {\n width: 83.33333333%;\n}\n.col-xs-9 {\n width: 75%;\n}\n.col-xs-8 {\n width: 66.66666667%;\n}\n.col-xs-7 {\n width: 58.33333333%;\n}\n.col-xs-6 {\n width: 50%;\n}\n.col-xs-5 {\n width: 41.66666667%;\n}\n.col-xs-4 {\n width: 33.33333333%;\n}\n.col-xs-3 {\n width: 25%;\n}\n.col-xs-2 {\n width: 16.66666667%;\n}\n.col-xs-1 {\n width: 8.33333333%;\n}\n.col-xs-pull-12 {\n right: 100%;\n}\n.col-xs-pull-11 {\n right: 91.66666667%;\n}\n.col-xs-pull-10 {\n right: 83.33333333%;\n}\n.col-xs-pull-9 {\n right: 75%;\n}\n.col-xs-pull-8 {\n right: 66.66666667%;\n}\n.col-xs-pull-7 {\n right: 58.33333333%;\n}\n.col-xs-pull-6 {\n right: 50%;\n}\n.col-xs-pull-5 {\n right: 41.66666667%;\n}\n.col-xs-pull-4 {\n right: 33.33333333%;\n}\n.col-xs-pull-3 {\n right: 25%;\n}\n.col-xs-pull-2 {\n right: 16.66666667%;\n}\n.col-xs-pull-1 {\n right: 8.33333333%;\n}\n.col-xs-pull-0 {\n right: auto;\n}\n.col-xs-push-12 {\n left: 100%;\n}\n.col-xs-push-11 {\n left: 91.66666667%;\n}\n.col-xs-push-10 {\n left: 83.33333333%;\n}\n.col-xs-push-9 {\n left: 75%;\n}\n.col-xs-push-8 {\n left: 66.66666667%;\n}\n.col-xs-push-7 {\n left: 58.33333333%;\n}\n.col-xs-push-6 {\n left: 50%;\n}\n.col-xs-push-5 {\n left: 41.66666667%;\n}\n.col-xs-push-4 {\n left: 33.33333333%;\n}\n.col-xs-push-3 {\n left: 25%;\n}\n.col-xs-push-2 {\n left: 16.66666667%;\n}\n.col-xs-push-1 {\n left: 8.33333333%;\n}\n.col-xs-push-0 {\n left: auto;\n}\n.col-xs-offset-12 {\n margin-left: 100%;\n}\n.col-xs-offset-11 {\n margin-left: 91.66666667%;\n}\n.col-xs-offset-10 {\n margin-left: 83.33333333%;\n}\n.col-xs-offset-9 {\n margin-left: 75%;\n}\n.col-xs-offset-8 {\n margin-left: 66.66666667%;\n}\n.col-xs-offset-7 {\n margin-left: 58.33333333%;\n}\n.col-xs-offset-6 {\n margin-left: 50%;\n}\n.col-xs-offset-5 {\n margin-left: 41.66666667%;\n}\n.col-xs-offset-4 {\n margin-left: 33.33333333%;\n}\n.col-xs-offset-3 {\n margin-left: 25%;\n}\n.col-xs-offset-2 {\n margin-left: 16.66666667%;\n}\n.col-xs-offset-1 {\n margin-left: 8.33333333%;\n}\n.col-xs-offset-0 {\n margin-left: 0%;\n}\n@media (min-width: 768px) {\n .col-sm-1,\n .col-sm-2,\n .col-sm-3,\n .col-sm-4,\n .col-sm-5,\n .col-sm-6,\n .col-sm-7,\n .col-sm-8,\n .col-sm-9,\n .col-sm-10,\n .col-sm-11,\n .col-sm-12 {\n float: left;\n }\n .col-sm-12 {\n width: 100%;\n }\n .col-sm-11 {\n width: 91.66666667%;\n }\n .col-sm-10 {\n width: 83.33333333%;\n }\n .col-sm-9 {\n width: 75%;\n }\n .col-sm-8 {\n width: 66.66666667%;\n }\n .col-sm-7 {\n width: 58.33333333%;\n }\n .col-sm-6 {\n width: 50%;\n }\n .col-sm-5 {\n width: 41.66666667%;\n }\n .col-sm-4 {\n width: 33.33333333%;\n }\n .col-sm-3 {\n width: 25%;\n }\n .col-sm-2 {\n width: 16.66666667%;\n }\n .col-sm-1 {\n width: 8.33333333%;\n }\n .col-sm-pull-12 {\n right: 100%;\n }\n .col-sm-pull-11 {\n right: 91.66666667%;\n }\n .col-sm-pull-10 {\n right: 83.33333333%;\n }\n .col-sm-pull-9 {\n right: 75%;\n }\n .col-sm-pull-8 {\n right: 66.66666667%;\n }\n .col-sm-pull-7 {\n right: 58.33333333%;\n }\n .col-sm-pull-6 {\n right: 50%;\n }\n .col-sm-pull-5 {\n right: 41.66666667%;\n }\n .col-sm-pull-4 {\n right: 33.33333333%;\n }\n .col-sm-pull-3 {\n right: 25%;\n }\n .col-sm-pull-2 {\n right: 16.66666667%;\n }\n .col-sm-pull-1 {\n right: 8.33333333%;\n }\n .col-sm-pull-0 {\n right: auto;\n }\n .col-sm-push-12 {\n left: 100%;\n }\n .col-sm-push-11 {\n left: 91.66666667%;\n }\n .col-sm-push-10 {\n left: 83.33333333%;\n }\n .col-sm-push-9 {\n left: 75%;\n }\n .col-sm-push-8 {\n left: 66.66666667%;\n }\n .col-sm-push-7 {\n left: 58.33333333%;\n }\n .col-sm-push-6 {\n left: 50%;\n }\n .col-sm-push-5 {\n left: 41.66666667%;\n }\n .col-sm-push-4 {\n left: 33.33333333%;\n }\n .col-sm-push-3 {\n left: 25%;\n }\n .col-sm-push-2 {\n left: 16.66666667%;\n }\n .col-sm-push-1 {\n left: 8.33333333%;\n }\n .col-sm-push-0 {\n left: auto;\n }\n .col-sm-offset-12 {\n margin-left: 100%;\n }\n .col-sm-offset-11 {\n margin-left: 91.66666667%;\n }\n .col-sm-offset-10 {\n margin-left: 83.33333333%;\n }\n .col-sm-offset-9 {\n margin-left: 75%;\n }\n .col-sm-offset-8 {\n margin-left: 66.66666667%;\n }\n .col-sm-offset-7 {\n margin-left: 58.33333333%;\n }\n .col-sm-offset-6 {\n margin-left: 50%;\n }\n .col-sm-offset-5 {\n margin-left: 41.66666667%;\n }\n .col-sm-offset-4 {\n margin-left: 33.33333333%;\n }\n .col-sm-offset-3 {\n margin-left: 25%;\n }\n .col-sm-offset-2 {\n margin-left: 16.66666667%;\n }\n .col-sm-offset-1 {\n margin-left: 8.33333333%;\n }\n .col-sm-offset-0 {\n margin-left: 0%;\n }\n}\n@media (min-width: 992px) {\n .col-md-1,\n .col-md-2,\n .col-md-3,\n .col-md-4,\n .col-md-5,\n .col-md-6,\n .col-md-7,\n .col-md-8,\n .col-md-9,\n .col-md-10,\n .col-md-11,\n .col-md-12 {\n float: left;\n }\n .col-md-12 {\n width: 100%;\n }\n .col-md-11 {\n width: 91.66666667%;\n }\n .col-md-10 {\n width: 83.33333333%;\n }\n .col-md-9 {\n width: 75%;\n }\n .col-md-8 {\n width: 66.66666667%;\n }\n .col-md-7 {\n width: 58.33333333%;\n }\n .col-md-6 {\n width: 50%;\n }\n .col-md-5 {\n width: 41.66666667%;\n }\n .col-md-4 {\n width: 33.33333333%;\n }\n .col-md-3 {\n width: 25%;\n }\n .col-md-2 {\n width: 16.66666667%;\n }\n .col-md-1 {\n width: 8.33333333%;\n }\n .col-md-pull-12 {\n right: 100%;\n }\n .col-md-pull-11 {\n right: 91.66666667%;\n }\n .col-md-pull-10 {\n right: 83.33333333%;\n }\n .col-md-pull-9 {\n right: 75%;\n }\n .col-md-pull-8 {\n right: 66.66666667%;\n }\n .col-md-pull-7 {\n right: 58.33333333%;\n }\n .col-md-pull-6 {\n right: 50%;\n }\n .col-md-pull-5 {\n right: 41.66666667%;\n }\n .col-md-pull-4 {\n right: 33.33333333%;\n }\n .col-md-pull-3 {\n right: 25%;\n }\n .col-md-pull-2 {\n right: 16.66666667%;\n }\n .col-md-pull-1 {\n right: 8.33333333%;\n }\n .col-md-pull-0 {\n right: auto;\n }\n .col-md-push-12 {\n left: 100%;\n }\n .col-md-push-11 {\n left: 91.66666667%;\n }\n .col-md-push-10 {\n left: 83.33333333%;\n }\n .col-md-push-9 {\n left: 75%;\n }\n .col-md-push-8 {\n left: 66.66666667%;\n }\n .col-md-push-7 {\n left: 58.33333333%;\n }\n .col-md-push-6 {\n left: 50%;\n }\n .col-md-push-5 {\n left: 41.66666667%;\n }\n .col-md-push-4 {\n left: 33.33333333%;\n }\n .col-md-push-3 {\n left: 25%;\n }\n .col-md-push-2 {\n left: 16.66666667%;\n }\n .col-md-push-1 {\n left: 8.33333333%;\n }\n .col-md-push-0 {\n left: auto;\n }\n .col-md-offset-12 {\n margin-left: 100%;\n }\n .col-md-offset-11 {\n margin-left: 91.66666667%;\n }\n .col-md-offset-10 {\n margin-left: 83.33333333%;\n }\n .col-md-offset-9 {\n margin-left: 75%;\n }\n .col-md-offset-8 {\n margin-left: 66.66666667%;\n }\n .col-md-offset-7 {\n margin-left: 58.33333333%;\n }\n .col-md-offset-6 {\n margin-left: 50%;\n }\n .col-md-offset-5 {\n margin-left: 41.66666667%;\n }\n .col-md-offset-4 {\n margin-left: 33.33333333%;\n }\n .col-md-offset-3 {\n margin-left: 25%;\n }\n .col-md-offset-2 {\n margin-left: 16.66666667%;\n }\n .col-md-offset-1 {\n margin-left: 8.33333333%;\n }\n .col-md-offset-0 {\n margin-left: 0%;\n }\n}\n@media (min-width: 1200px) {\n .col-lg-1,\n .col-lg-2,\n .col-lg-3,\n .col-lg-4,\n .col-lg-5,\n .col-lg-6,\n .col-lg-7,\n .col-lg-8,\n .col-lg-9,\n .col-lg-10,\n .col-lg-11,\n .col-lg-12 {\n float: left;\n }\n .col-lg-12 {\n width: 100%;\n }\n .col-lg-11 {\n width: 91.66666667%;\n }\n .col-lg-10 {\n width: 83.33333333%;\n }\n .col-lg-9 {\n width: 75%;\n }\n .col-lg-8 {\n width: 66.66666667%;\n }\n .col-lg-7 {\n width: 58.33333333%;\n }\n .col-lg-6 {\n width: 50%;\n }\n .col-lg-5 {\n width: 41.66666667%;\n }\n .col-lg-4 {\n width: 33.33333333%;\n }\n .col-lg-3 {\n width: 25%;\n }\n .col-lg-2 {\n width: 16.66666667%;\n }\n .col-lg-1 {\n width: 8.33333333%;\n }\n .col-lg-pull-12 {\n right: 100%;\n }\n .col-lg-pull-11 {\n right: 91.66666667%;\n }\n .col-lg-pull-10 {\n right: 83.33333333%;\n }\n .col-lg-pull-9 {\n right: 75%;\n }\n .col-lg-pull-8 {\n right: 66.66666667%;\n }\n .col-lg-pull-7 {\n right: 58.33333333%;\n }\n .col-lg-pull-6 {\n right: 50%;\n }\n .col-lg-pull-5 {\n right: 41.66666667%;\n }\n .col-lg-pull-4 {\n right: 33.33333333%;\n }\n .col-lg-pull-3 {\n right: 25%;\n }\n .col-lg-pull-2 {\n right: 16.66666667%;\n }\n .col-lg-pull-1 {\n right: 8.33333333%;\n }\n .col-lg-pull-0 {\n right: auto;\n }\n .col-lg-push-12 {\n left: 100%;\n }\n .col-lg-push-11 {\n left: 91.66666667%;\n }\n .col-lg-push-10 {\n left: 83.33333333%;\n }\n .col-lg-push-9 {\n left: 75%;\n }\n .col-lg-push-8 {\n left: 66.66666667%;\n }\n .col-lg-push-7 {\n left: 58.33333333%;\n }\n .col-lg-push-6 {\n left: 50%;\n }\n .col-lg-push-5 {\n left: 41.66666667%;\n }\n .col-lg-push-4 {\n left: 33.33333333%;\n }\n .col-lg-push-3 {\n left: 25%;\n }\n .col-lg-push-2 {\n left: 16.66666667%;\n }\n .col-lg-push-1 {\n left: 8.33333333%;\n }\n .col-lg-push-0 {\n left: auto;\n }\n .col-lg-offset-12 {\n margin-left: 100%;\n }\n .col-lg-offset-11 {\n margin-left: 91.66666667%;\n }\n .col-lg-offset-10 {\n margin-left: 83.33333333%;\n }\n .col-lg-offset-9 {\n margin-left: 75%;\n }\n .col-lg-offset-8 {\n margin-left: 66.66666667%;\n }\n .col-lg-offset-7 {\n margin-left: 58.33333333%;\n }\n .col-lg-offset-6 {\n margin-left: 50%;\n }\n .col-lg-offset-5 {\n margin-left: 41.66666667%;\n }\n .col-lg-offset-4 {\n margin-left: 33.33333333%;\n }\n .col-lg-offset-3 {\n margin-left: 25%;\n }\n .col-lg-offset-2 {\n margin-left: 16.66666667%;\n }\n .col-lg-offset-1 {\n margin-left: 8.33333333%;\n }\n .col-lg-offset-0 {\n margin-left: 0%;\n }\n}\ntable {\n background-color: transparent;\n}\ntable col[class*=\"col-\"] {\n position: static;\n display: table-column;\n float: none;\n}\ntable td[class*=\"col-\"],\ntable th[class*=\"col-\"] {\n position: static;\n display: table-cell;\n float: none;\n}\ncaption {\n padding-top: 8px;\n padding-bottom: 8px;\n color: #777777;\n text-align: left;\n}\nth {\n text-align: left;\n}\n.table {\n width: 100%;\n max-width: 100%;\n margin-bottom: 20px;\n}\n.table > thead > tr > th,\n.table > tbody > tr > th,\n.table > tfoot > tr > th,\n.table > thead > tr > td,\n.table > tbody > tr > td,\n.table > tfoot > tr > td {\n padding: 8px;\n line-height: 1.42857143;\n vertical-align: top;\n border-top: 1px solid #ddd;\n}\n.table > thead > tr > th {\n vertical-align: bottom;\n border-bottom: 2px solid #ddd;\n}\n.table > caption + thead > tr:first-child > th,\n.table > colgroup + thead > tr:first-child > th,\n.table > thead:first-child > tr:first-child > th,\n.table > caption + thead > tr:first-child > td,\n.table > colgroup + thead > tr:first-child > td,\n.table > thead:first-child > tr:first-child > td {\n border-top: 0;\n}\n.table > tbody + tbody {\n border-top: 2px solid #ddd;\n}\n.table .table {\n background-color: #fff;\n}\n.table-condensed > thead > tr > th,\n.table-condensed > tbody > tr > th,\n.table-condensed > tfoot > tr > th,\n.table-condensed > thead > tr > td,\n.table-condensed > tbody > tr > td,\n.table-condensed > tfoot > tr > td {\n padding: 5px;\n}\n.table-bordered {\n border: 1px solid #ddd;\n}\n.table-bordered > thead > tr > th,\n.table-bordered > tbody > tr > th,\n.table-bordered > tfoot > tr > th,\n.table-bordered > thead > tr > td,\n.table-bordered > tbody > tr > td,\n.table-bordered > tfoot > tr > td {\n border: 1px solid #ddd;\n}\n.table-bordered > thead > tr > th,\n.table-bordered > thead > tr > td {\n border-bottom-width: 2px;\n}\n.table-striped > tbody > tr:nth-of-type(odd) {\n background-color: #f9f9f9;\n}\n.table-hover > tbody > tr:hover {\n background-color: #f5f5f5;\n}\n.table > thead > tr > td.active,\n.table > tbody > tr > td.active,\n.table > tfoot > tr > td.active,\n.table > thead > tr > th.active,\n.table > tbody > tr > th.active,\n.table > tfoot > tr > th.active,\n.table > thead > tr.active > td,\n.table > tbody > tr.active > td,\n.table > tfoot > tr.active > td,\n.table > thead > tr.active > th,\n.table > tbody > tr.active > th,\n.table > tfoot > tr.active > th {\n background-color: #f5f5f5;\n}\n.table-hover > tbody > tr > td.active:hover,\n.table-hover > tbody > tr > th.active:hover,\n.table-hover > tbody > tr.active:hover > td,\n.table-hover > tbody > tr:hover > .active,\n.table-hover > tbody > tr.active:hover > th {\n background-color: #e8e8e8;\n}\n.table > thead > tr > td.success,\n.table > tbody > tr > td.success,\n.table > tfoot > tr > td.success,\n.table > thead > tr > th.success,\n.table > tbody > tr > th.success,\n.table > tfoot > tr > th.success,\n.table > thead > tr.success > td,\n.table > tbody > tr.success > td,\n.table > tfoot > tr.success > td,\n.table > thead > tr.success > th,\n.table > tbody > tr.success > th,\n.table > tfoot > tr.success > th {\n background-color: #dff0d8;\n}\n.table-hover > tbody > tr > td.success:hover,\n.table-hover > tbody > tr > th.success:hover,\n.table-hover > tbody > tr.success:hover > td,\n.table-hover > tbody > tr:hover > .success,\n.table-hover > tbody > tr.success:hover > th {\n background-color: #d0e9c6;\n}\n.table > thead > tr > td.info,\n.table > tbody > tr > td.info,\n.table > tfoot > tr > td.info,\n.table > thead > tr > th.info,\n.table > tbody > tr > th.info,\n.table > tfoot > tr > th.info,\n.table > thead > tr.info > td,\n.table > tbody > tr.info > td,\n.table > tfoot > tr.info > td,\n.table > thead > tr.info > th,\n.table > tbody > tr.info > th,\n.table > tfoot > tr.info > th {\n background-color: #d9edf7;\n}\n.table-hover > tbody > tr > td.info:hover,\n.table-hover > tbody > tr > th.info:hover,\n.table-hover > tbody > tr.info:hover > td,\n.table-hover > tbody > tr:hover > .info,\n.table-hover > tbody > tr.info:hover > th {\n background-color: #c4e3f3;\n}\n.table > thead > tr > td.warning,\n.table > tbody > tr > td.warning,\n.table > tfoot > tr > td.warning,\n.table > thead > tr > th.warning,\n.table > tbody > tr > th.warning,\n.table > tfoot > tr > th.warning,\n.table > thead > tr.warning > td,\n.table > tbody > tr.warning > td,\n.table > tfoot > tr.warning > td,\n.table > thead > tr.warning > th,\n.table > tbody > tr.warning > th,\n.table > tfoot > tr.warning > th {\n background-color: #fcf8e3;\n}\n.table-hover > tbody > tr > td.warning:hover,\n.table-hover > tbody > tr > th.warning:hover,\n.table-hover > tbody > tr.warning:hover > td,\n.table-hover > tbody > tr:hover > .warning,\n.table-hover > tbody > tr.warning:hover > th {\n background-color: #faf2cc;\n}\n.table > thead > tr > td.danger,\n.table > tbody > tr > td.danger,\n.table > tfoot > tr > td.danger,\n.table > thead > tr > th.danger,\n.table > tbody > tr > th.danger,\n.table > tfoot > tr > th.danger,\n.table > thead > tr.danger > td,\n.table > tbody > tr.danger > td,\n.table > tfoot > tr.danger > td,\n.table > thead > tr.danger > th,\n.table > tbody > tr.danger > th,\n.table > tfoot > tr.danger > th {\n background-color: #f2dede;\n}\n.table-hover > tbody > tr > td.danger:hover,\n.table-hover > tbody > tr > th.danger:hover,\n.table-hover > tbody > tr.danger:hover > td,\n.table-hover > tbody > tr:hover > .danger,\n.table-hover > tbody > tr.danger:hover > th {\n background-color: #ebcccc;\n}\n.table-responsive {\n min-height: 0.01%;\n overflow-x: auto;\n}\n@media screen and (max-width: 767px) {\n .table-responsive {\n width: 100%;\n margin-bottom: 15px;\n overflow-y: hidden;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n border: 1px solid #ddd;\n }\n .table-responsive > .table {\n margin-bottom: 0;\n }\n .table-responsive > .table > thead > tr > th,\n .table-responsive > .table > tbody > tr > th,\n .table-responsive > .table > tfoot > tr > th,\n .table-responsive > .table > thead > tr > td,\n .table-responsive > .table > tbody > tr > td,\n .table-responsive > .table > tfoot > tr > td {\n white-space: nowrap;\n }\n .table-responsive > .table-bordered {\n border: 0;\n }\n .table-responsive > .table-bordered > thead > tr > th:first-child,\n .table-responsive > .table-bordered > tbody > tr > th:first-child,\n .table-responsive > .table-bordered > tfoot > tr > th:first-child,\n .table-responsive > .table-bordered > thead > tr > td:first-child,\n .table-responsive > .table-bordered > tbody > tr > td:first-child,\n .table-responsive > .table-bordered > tfoot > tr > td:first-child {\n border-left: 0;\n }\n .table-responsive > .table-bordered > thead > tr > th:last-child,\n .table-responsive > .table-bordered > tbody > tr > th:last-child,\n .table-responsive > .table-bordered > tfoot > tr > th:last-child,\n .table-responsive > .table-bordered > thead > tr > td:last-child,\n .table-responsive > .table-bordered > tbody > tr > td:last-child,\n .table-responsive > .table-bordered > tfoot > tr > td:last-child {\n border-right: 0;\n }\n .table-responsive > .table-bordered > tbody > tr:last-child > th,\n .table-responsive > .table-bordered > tfoot > tr:last-child > th,\n .table-responsive > .table-bordered > tbody > tr:last-child > td,\n .table-responsive > .table-bordered > tfoot > tr:last-child > td {\n border-bottom: 0;\n }\n}\nfieldset {\n min-width: 0;\n padding: 0;\n margin: 0;\n border: 0;\n}\nlegend {\n display: block;\n width: 100%;\n padding: 0;\n margin-bottom: 20px;\n font-size: 21px;\n line-height: inherit;\n color: #333333;\n border: 0;\n border-bottom: 1px solid #e5e5e5;\n}\nlabel {\n display: inline-block;\n max-width: 100%;\n margin-bottom: 5px;\n font-weight: 700;\n}\ninput[type=\"search\"] {\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n -webkit-appearance: none;\n appearance: none;\n}\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n margin: 4px 0 0;\n margin-top: 1px \\9;\n line-height: normal;\n}\ninput[type=\"radio\"][disabled],\ninput[type=\"checkbox\"][disabled],\ninput[type=\"radio\"].disabled,\ninput[type=\"checkbox\"].disabled,\nfieldset[disabled] input[type=\"radio\"],\nfieldset[disabled] input[type=\"checkbox\"] {\n cursor: not-allowed;\n}\ninput[type=\"file\"] {\n display: block;\n}\ninput[type=\"range\"] {\n display: block;\n width: 100%;\n}\nselect[multiple],\nselect[size] {\n height: auto;\n}\ninput[type=\"file\"]:focus,\ninput[type=\"radio\"]:focus,\ninput[type=\"checkbox\"]:focus {\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\noutput {\n display: block;\n padding-top: 7px;\n font-size: 14px;\n line-height: 1.42857143;\n color: #555555;\n}\n.form-control {\n display: block;\n width: 100%;\n height: 34px;\n padding: 6px 12px;\n font-size: 14px;\n line-height: 1.42857143;\n color: #555555;\n background-color: #fff;\n background-image: none;\n border: 1px solid #ccc;\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n}\n.form-control:focus {\n border-color: #66afe9;\n outline: 0;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);\n}\n.form-control::-moz-placeholder {\n color: #999;\n opacity: 1;\n}\n.form-control:-ms-input-placeholder {\n color: #999;\n}\n.form-control::-webkit-input-placeholder {\n color: #999;\n}\n.form-control::-ms-expand {\n background-color: transparent;\n border: 0;\n}\n.form-control[disabled],\n.form-control[readonly],\nfieldset[disabled] .form-control {\n background-color: #eeeeee;\n opacity: 1;\n}\n.form-control[disabled],\nfieldset[disabled] .form-control {\n cursor: not-allowed;\n}\ntextarea.form-control {\n height: auto;\n}\n@media screen and (-webkit-min-device-pixel-ratio: 0) {\n input[type=\"date\"].form-control,\n input[type=\"time\"].form-control,\n input[type=\"datetime-local\"].form-control,\n input[type=\"month\"].form-control {\n line-height: 34px;\n }\n input[type=\"date\"].input-sm,\n input[type=\"time\"].input-sm,\n input[type=\"datetime-local\"].input-sm,\n input[type=\"month\"].input-sm,\n .input-group-sm input[type=\"date\"],\n .input-group-sm input[type=\"time\"],\n .input-group-sm input[type=\"datetime-local\"],\n .input-group-sm input[type=\"month\"] {\n line-height: 30px;\n }\n input[type=\"date\"].input-lg,\n input[type=\"time\"].input-lg,\n input[type=\"datetime-local\"].input-lg,\n input[type=\"month\"].input-lg,\n .input-group-lg input[type=\"date\"],\n .input-group-lg input[type=\"time\"],\n .input-group-lg input[type=\"datetime-local\"],\n .input-group-lg input[type=\"month\"] {\n line-height: 46px;\n }\n}\n.form-group {\n margin-bottom: 15px;\n}\n.radio,\n.checkbox {\n position: relative;\n display: block;\n margin-top: 10px;\n margin-bottom: 10px;\n}\n.radio.disabled label,\n.checkbox.disabled label,\nfieldset[disabled] .radio label,\nfieldset[disabled] .checkbox label {\n cursor: not-allowed;\n}\n.radio label,\n.checkbox label {\n min-height: 20px;\n padding-left: 20px;\n margin-bottom: 0;\n font-weight: 400;\n cursor: pointer;\n}\n.radio input[type=\"radio\"],\n.radio-inline input[type=\"radio\"],\n.checkbox input[type=\"checkbox\"],\n.checkbox-inline input[type=\"checkbox\"] {\n position: absolute;\n margin-top: 4px \\9;\n margin-left: -20px;\n}\n.radio + .radio,\n.checkbox + .checkbox {\n margin-top: -5px;\n}\n.radio-inline,\n.checkbox-inline {\n position: relative;\n display: inline-block;\n padding-left: 20px;\n margin-bottom: 0;\n font-weight: 400;\n vertical-align: middle;\n cursor: pointer;\n}\n.radio-inline.disabled,\n.checkbox-inline.disabled,\nfieldset[disabled] .radio-inline,\nfieldset[disabled] .checkbox-inline {\n cursor: not-allowed;\n}\n.radio-inline + .radio-inline,\n.checkbox-inline + .checkbox-inline {\n margin-top: 0;\n margin-left: 10px;\n}\n.form-control-static {\n min-height: 34px;\n padding-top: 7px;\n padding-bottom: 7px;\n margin-bottom: 0;\n}\n.form-control-static.input-lg,\n.form-control-static.input-sm {\n padding-right: 0;\n padding-left: 0;\n}\n.input-sm {\n height: 30px;\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\nselect.input-sm {\n height: 30px;\n line-height: 30px;\n}\ntextarea.input-sm,\nselect[multiple].input-sm {\n height: auto;\n}\n.form-group-sm .form-control {\n height: 30px;\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\n.form-group-sm select.form-control {\n height: 30px;\n line-height: 30px;\n}\n.form-group-sm textarea.form-control,\n.form-group-sm select[multiple].form-control {\n height: auto;\n}\n.form-group-sm .form-control-static {\n height: 30px;\n min-height: 32px;\n padding: 6px 10px;\n font-size: 12px;\n line-height: 1.5;\n}\n.input-lg {\n height: 46px;\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n}\nselect.input-lg {\n height: 46px;\n line-height: 46px;\n}\ntextarea.input-lg,\nselect[multiple].input-lg {\n height: auto;\n}\n.form-group-lg .form-control {\n height: 46px;\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n}\n.form-group-lg select.form-control {\n height: 46px;\n line-height: 46px;\n}\n.form-group-lg textarea.form-control,\n.form-group-lg select[multiple].form-control {\n height: auto;\n}\n.form-group-lg .form-control-static {\n height: 46px;\n min-height: 38px;\n padding: 11px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n}\n.has-feedback {\n position: relative;\n}\n.has-feedback .form-control {\n padding-right: 42.5px;\n}\n.form-control-feedback {\n position: absolute;\n top: 0;\n right: 0;\n z-index: 2;\n display: block;\n width: 34px;\n height: 34px;\n line-height: 34px;\n text-align: center;\n pointer-events: none;\n}\n.input-lg + .form-control-feedback,\n.input-group-lg + .form-control-feedback,\n.form-group-lg .form-control + .form-control-feedback {\n width: 46px;\n height: 46px;\n line-height: 46px;\n}\n.input-sm + .form-control-feedback,\n.input-group-sm + .form-control-feedback,\n.form-group-sm .form-control + .form-control-feedback {\n width: 30px;\n height: 30px;\n line-height: 30px;\n}\n.has-success .help-block,\n.has-success .control-label,\n.has-success .radio,\n.has-success .checkbox,\n.has-success .radio-inline,\n.has-success .checkbox-inline,\n.has-success.radio label,\n.has-success.checkbox label,\n.has-success.radio-inline label,\n.has-success.checkbox-inline label {\n color: #3c763d;\n}\n.has-success .form-control {\n border-color: #3c763d;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.has-success .form-control:focus {\n border-color: #2b542c;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;\n}\n.has-success .input-group-addon {\n color: #3c763d;\n background-color: #dff0d8;\n border-color: #3c763d;\n}\n.has-success .form-control-feedback {\n color: #3c763d;\n}\n.has-warning .help-block,\n.has-warning .control-label,\n.has-warning .radio,\n.has-warning .checkbox,\n.has-warning .radio-inline,\n.has-warning .checkbox-inline,\n.has-warning.radio label,\n.has-warning.checkbox label,\n.has-warning.radio-inline label,\n.has-warning.checkbox-inline label {\n color: #8a6d3b;\n}\n.has-warning .form-control {\n border-color: #8a6d3b;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.has-warning .form-control:focus {\n border-color: #66512c;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;\n}\n.has-warning .input-group-addon {\n color: #8a6d3b;\n background-color: #fcf8e3;\n border-color: #8a6d3b;\n}\n.has-warning .form-control-feedback {\n color: #8a6d3b;\n}\n.has-error .help-block,\n.has-error .control-label,\n.has-error .radio,\n.has-error .checkbox,\n.has-error .radio-inline,\n.has-error .checkbox-inline,\n.has-error.radio label,\n.has-error.checkbox label,\n.has-error.radio-inline label,\n.has-error.checkbox-inline label {\n color: #a94442;\n}\n.has-error .form-control {\n border-color: #a94442;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.has-error .form-control:focus {\n border-color: #843534;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;\n}\n.has-error .input-group-addon {\n color: #a94442;\n background-color: #f2dede;\n border-color: #a94442;\n}\n.has-error .form-control-feedback {\n color: #a94442;\n}\n.has-feedback label ~ .form-control-feedback {\n top: 25px;\n}\n.has-feedback label.sr-only ~ .form-control-feedback {\n top: 0;\n}\n.help-block {\n display: block;\n margin-top: 5px;\n margin-bottom: 10px;\n color: #737373;\n}\n@media (min-width: 768px) {\n .form-inline .form-group {\n display: inline-block;\n margin-bottom: 0;\n vertical-align: middle;\n }\n .form-inline .form-control {\n display: inline-block;\n width: auto;\n vertical-align: middle;\n }\n .form-inline .form-control-static {\n display: inline-block;\n }\n .form-inline .input-group {\n display: inline-table;\n vertical-align: middle;\n }\n .form-inline .input-group .input-group-addon,\n .form-inline .input-group .input-group-btn,\n .form-inline .input-group .form-control {\n width: auto;\n }\n .form-inline .input-group > .form-control {\n width: 100%;\n }\n .form-inline .control-label {\n margin-bottom: 0;\n vertical-align: middle;\n }\n .form-inline .radio,\n .form-inline .checkbox {\n display: inline-block;\n margin-top: 0;\n margin-bottom: 0;\n vertical-align: middle;\n }\n .form-inline .radio label,\n .form-inline .checkbox label {\n padding-left: 0;\n }\n .form-inline .radio input[type=\"radio\"],\n .form-inline .checkbox input[type=\"checkbox\"] {\n position: relative;\n margin-left: 0;\n }\n .form-inline .has-feedback .form-control-feedback {\n top: 0;\n }\n}\n.form-horizontal .radio,\n.form-horizontal .checkbox,\n.form-horizontal .radio-inline,\n.form-horizontal .checkbox-inline {\n padding-top: 7px;\n margin-top: 0;\n margin-bottom: 0;\n}\n.form-horizontal .radio,\n.form-horizontal .checkbox {\n min-height: 27px;\n}\n.form-horizontal .form-group {\n margin-right: -15px;\n margin-left: -15px;\n}\n@media (min-width: 768px) {\n .form-horizontal .control-label {\n padding-top: 7px;\n margin-bottom: 0;\n text-align: right;\n }\n}\n.form-horizontal .has-feedback .form-control-feedback {\n right: 15px;\n}\n@media (min-width: 768px) {\n .form-horizontal .form-group-lg .control-label {\n padding-top: 11px;\n font-size: 18px;\n }\n}\n@media (min-width: 768px) {\n .form-horizontal .form-group-sm .control-label {\n padding-top: 6px;\n font-size: 12px;\n }\n}\n.btn {\n display: inline-block;\n margin-bottom: 0;\n font-weight: normal;\n text-align: center;\n white-space: nowrap;\n vertical-align: middle;\n touch-action: manipulation;\n cursor: pointer;\n background-image: none;\n border: 1px solid transparent;\n padding: 6px 12px;\n font-size: 14px;\n line-height: 1.42857143;\n border-radius: 4px;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n.btn:focus,\n.btn:active:focus,\n.btn.active:focus,\n.btn.focus,\n.btn:active.focus,\n.btn.active.focus {\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\n.btn:hover,\n.btn:focus,\n.btn.focus {\n color: #333;\n text-decoration: none;\n}\n.btn:active,\n.btn.active {\n background-image: none;\n outline: 0;\n -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.btn.disabled,\n.btn[disabled],\nfieldset[disabled] .btn {\n cursor: not-allowed;\n filter: alpha(opacity=65);\n opacity: 0.65;\n -webkit-box-shadow: none;\n box-shadow: none;\n}\na.btn.disabled,\nfieldset[disabled] a.btn {\n pointer-events: none;\n}\n.btn-default {\n color: #333;\n background-color: #fff;\n border-color: #ccc;\n}\n.btn-default:focus,\n.btn-default.focus {\n color: #333;\n background-color: #e6e6e6;\n border-color: #8c8c8c;\n}\n.btn-default:hover {\n color: #333;\n background-color: #e6e6e6;\n border-color: #adadad;\n}\n.btn-default:active,\n.btn-default.active,\n.open > .dropdown-toggle.btn-default {\n color: #333;\n background-color: #e6e6e6;\n background-image: none;\n border-color: #adadad;\n}\n.btn-default:active:hover,\n.btn-default.active:hover,\n.open > .dropdown-toggle.btn-default:hover,\n.btn-default:active:focus,\n.btn-default.active:focus,\n.open > .dropdown-toggle.btn-default:focus,\n.btn-default:active.focus,\n.btn-default.active.focus,\n.open > .dropdown-toggle.btn-default.focus {\n color: #333;\n background-color: #d4d4d4;\n border-color: #8c8c8c;\n}\n.btn-default.disabled:hover,\n.btn-default[disabled]:hover,\nfieldset[disabled] .btn-default:hover,\n.btn-default.disabled:focus,\n.btn-default[disabled]:focus,\nfieldset[disabled] .btn-default:focus,\n.btn-default.disabled.focus,\n.btn-default[disabled].focus,\nfieldset[disabled] .btn-default.focus {\n background-color: #fff;\n border-color: #ccc;\n}\n.btn-default .badge {\n color: #fff;\n background-color: #333;\n}\n.btn-primary {\n color: #fff;\n background-color: #337ab7;\n border-color: #2e6da4;\n}\n.btn-primary:focus,\n.btn-primary.focus {\n color: #fff;\n background-color: #286090;\n border-color: #122b40;\n}\n.btn-primary:hover {\n color: #fff;\n background-color: #286090;\n border-color: #204d74;\n}\n.btn-primary:active,\n.btn-primary.active,\n.open > .dropdown-toggle.btn-primary {\n color: #fff;\n background-color: #286090;\n background-image: none;\n border-color: #204d74;\n}\n.btn-primary:active:hover,\n.btn-primary.active:hover,\n.open > .dropdown-toggle.btn-primary:hover,\n.btn-primary:active:focus,\n.btn-primary.active:focus,\n.open > .dropdown-toggle.btn-primary:focus,\n.btn-primary:active.focus,\n.btn-primary.active.focus,\n.open > .dropdown-toggle.btn-primary.focus {\n color: #fff;\n background-color: #204d74;\n border-color: #122b40;\n}\n.btn-primary.disabled:hover,\n.btn-primary[disabled]:hover,\nfieldset[disabled] .btn-primary:hover,\n.btn-primary.disabled:focus,\n.btn-primary[disabled]:focus,\nfieldset[disabled] .btn-primary:focus,\n.btn-primary.disabled.focus,\n.btn-primary[disabled].focus,\nfieldset[disabled] .btn-primary.focus {\n background-color: #337ab7;\n border-color: #2e6da4;\n}\n.btn-primary .badge {\n color: #337ab7;\n background-color: #fff;\n}\n.btn-success {\n color: #fff;\n background-color: #5cb85c;\n border-color: #4cae4c;\n}\n.btn-success:focus,\n.btn-success.focus {\n color: #fff;\n background-color: #449d44;\n border-color: #255625;\n}\n.btn-success:hover {\n color: #fff;\n background-color: #449d44;\n border-color: #398439;\n}\n.btn-success:active,\n.btn-success.active,\n.open > .dropdown-toggle.btn-success {\n color: #fff;\n background-color: #449d44;\n background-image: none;\n border-color: #398439;\n}\n.btn-success:active:hover,\n.btn-success.active:hover,\n.open > .dropdown-toggle.btn-success:hover,\n.btn-success:active:focus,\n.btn-success.active:focus,\n.open > .dropdown-toggle.btn-success:focus,\n.btn-success:active.focus,\n.btn-success.active.focus,\n.open > .dropdown-toggle.btn-success.focus {\n color: #fff;\n background-color: #398439;\n border-color: #255625;\n}\n.btn-success.disabled:hover,\n.btn-success[disabled]:hover,\nfieldset[disabled] .btn-success:hover,\n.btn-success.disabled:focus,\n.btn-success[disabled]:focus,\nfieldset[disabled] .btn-success:focus,\n.btn-success.disabled.focus,\n.btn-success[disabled].focus,\nfieldset[disabled] .btn-success.focus {\n background-color: #5cb85c;\n border-color: #4cae4c;\n}\n.btn-success .badge {\n color: #5cb85c;\n background-color: #fff;\n}\n.btn-info {\n color: #fff;\n background-color: #5bc0de;\n border-color: #46b8da;\n}\n.btn-info:focus,\n.btn-info.focus {\n color: #fff;\n background-color: #31b0d5;\n border-color: #1b6d85;\n}\n.btn-info:hover {\n color: #fff;\n background-color: #31b0d5;\n border-color: #269abc;\n}\n.btn-info:active,\n.btn-info.active,\n.open > .dropdown-toggle.btn-info {\n color: #fff;\n background-color: #31b0d5;\n background-image: none;\n border-color: #269abc;\n}\n.btn-info:active:hover,\n.btn-info.active:hover,\n.open > .dropdown-toggle.btn-info:hover,\n.btn-info:active:focus,\n.btn-info.active:focus,\n.open > .dropdown-toggle.btn-info:focus,\n.btn-info:active.focus,\n.btn-info.active.focus,\n.open > .dropdown-toggle.btn-info.focus {\n color: #fff;\n background-color: #269abc;\n border-color: #1b6d85;\n}\n.btn-info.disabled:hover,\n.btn-info[disabled]:hover,\nfieldset[disabled] .btn-info:hover,\n.btn-info.disabled:focus,\n.btn-info[disabled]:focus,\nfieldset[disabled] .btn-info:focus,\n.btn-info.disabled.focus,\n.btn-info[disabled].focus,\nfieldset[disabled] .btn-info.focus {\n background-color: #5bc0de;\n border-color: #46b8da;\n}\n.btn-info .badge {\n color: #5bc0de;\n background-color: #fff;\n}\n.btn-warning {\n color: #fff;\n background-color: #f0ad4e;\n border-color: #eea236;\n}\n.btn-warning:focus,\n.btn-warning.focus {\n color: #fff;\n background-color: #ec971f;\n border-color: #985f0d;\n}\n.btn-warning:hover {\n color: #fff;\n background-color: #ec971f;\n border-color: #d58512;\n}\n.btn-warning:active,\n.btn-warning.active,\n.open > .dropdown-toggle.btn-warning {\n color: #fff;\n background-color: #ec971f;\n background-image: none;\n border-color: #d58512;\n}\n.btn-warning:active:hover,\n.btn-warning.active:hover,\n.open > .dropdown-toggle.btn-warning:hover,\n.btn-warning:active:focus,\n.btn-warning.active:focus,\n.open > .dropdown-toggle.btn-warning:focus,\n.btn-warning:active.focus,\n.btn-warning.active.focus,\n.open > .dropdown-toggle.btn-warning.focus {\n color: #fff;\n background-color: #d58512;\n border-color: #985f0d;\n}\n.btn-warning.disabled:hover,\n.btn-warning[disabled]:hover,\nfieldset[disabled] .btn-warning:hover,\n.btn-warning.disabled:focus,\n.btn-warning[disabled]:focus,\nfieldset[disabled] .btn-warning:focus,\n.btn-warning.disabled.focus,\n.btn-warning[disabled].focus,\nfieldset[disabled] .btn-warning.focus {\n background-color: #f0ad4e;\n border-color: #eea236;\n}\n.btn-warning .badge {\n color: #f0ad4e;\n background-color: #fff;\n}\n.btn-danger {\n color: #fff;\n background-color: #d9534f;\n border-color: #d43f3a;\n}\n.btn-danger:focus,\n.btn-danger.focus {\n color: #fff;\n background-color: #c9302c;\n border-color: #761c19;\n}\n.btn-danger:hover {\n color: #fff;\n background-color: #c9302c;\n border-color: #ac2925;\n}\n.btn-danger:active,\n.btn-danger.active,\n.open > .dropdown-toggle.btn-danger {\n color: #fff;\n background-color: #c9302c;\n background-image: none;\n border-color: #ac2925;\n}\n.btn-danger:active:hover,\n.btn-danger.active:hover,\n.open > .dropdown-toggle.btn-danger:hover,\n.btn-danger:active:focus,\n.btn-danger.active:focus,\n.open > .dropdown-toggle.btn-danger:focus,\n.btn-danger:active.focus,\n.btn-danger.active.focus,\n.open > .dropdown-toggle.btn-danger.focus {\n color: #fff;\n background-color: #ac2925;\n border-color: #761c19;\n}\n.btn-danger.disabled:hover,\n.btn-danger[disabled]:hover,\nfieldset[disabled] .btn-danger:hover,\n.btn-danger.disabled:focus,\n.btn-danger[disabled]:focus,\nfieldset[disabled] .btn-danger:focus,\n.btn-danger.disabled.focus,\n.btn-danger[disabled].focus,\nfieldset[disabled] .btn-danger.focus {\n background-color: #d9534f;\n border-color: #d43f3a;\n}\n.btn-danger .badge {\n color: #d9534f;\n background-color: #fff;\n}\n.btn-link {\n font-weight: 400;\n color: #337ab7;\n border-radius: 0;\n}\n.btn-link,\n.btn-link:active,\n.btn-link.active,\n.btn-link[disabled],\nfieldset[disabled] .btn-link {\n background-color: transparent;\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n.btn-link,\n.btn-link:hover,\n.btn-link:focus,\n.btn-link:active {\n border-color: transparent;\n}\n.btn-link:hover,\n.btn-link:focus {\n color: #23527c;\n text-decoration: underline;\n background-color: transparent;\n}\n.btn-link[disabled]:hover,\nfieldset[disabled] .btn-link:hover,\n.btn-link[disabled]:focus,\nfieldset[disabled] .btn-link:focus {\n color: #777777;\n text-decoration: none;\n}\n.btn-lg,\n.btn-group-lg > .btn {\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n}\n.btn-sm,\n.btn-group-sm > .btn {\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\n.btn-xs,\n.btn-group-xs > .btn {\n padding: 1px 5px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\n.btn-block {\n display: block;\n width: 100%;\n}\n.btn-block + .btn-block {\n margin-top: 5px;\n}\ninput[type=\"submit\"].btn-block,\ninput[type=\"reset\"].btn-block,\ninput[type=\"button\"].btn-block {\n width: 100%;\n}\n.fade {\n opacity: 0;\n -webkit-transition: opacity 0.15s linear;\n -o-transition: opacity 0.15s linear;\n transition: opacity 0.15s linear;\n}\n.fade.in {\n opacity: 1;\n}\n.collapse {\n display: none;\n}\n.collapse.in {\n display: block;\n}\ntr.collapse.in {\n display: table-row;\n}\ntbody.collapse.in {\n display: table-row-group;\n}\n.collapsing {\n position: relative;\n height: 0;\n overflow: hidden;\n -webkit-transition-property: height, visibility;\n transition-property: height, visibility;\n -webkit-transition-duration: 0.35s;\n transition-duration: 0.35s;\n -webkit-transition-timing-function: ease;\n transition-timing-function: ease;\n}\n.caret {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 2px;\n vertical-align: middle;\n border-top: 4px dashed;\n border-top: 4px solid \\9;\n border-right: 4px solid transparent;\n border-left: 4px solid transparent;\n}\n.dropup,\n.dropdown {\n position: relative;\n}\n.dropdown-toggle:focus {\n outline: 0;\n}\n.dropdown-menu {\n position: absolute;\n top: 100%;\n left: 0;\n z-index: 1000;\n display: none;\n float: left;\n min-width: 160px;\n padding: 5px 0;\n margin: 2px 0 0;\n font-size: 14px;\n text-align: left;\n list-style: none;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid #ccc;\n border: 1px solid rgba(0, 0, 0, 0.15);\n border-radius: 4px;\n -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\n box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\n}\n.dropdown-menu.pull-right {\n right: 0;\n left: auto;\n}\n.dropdown-menu .divider {\n height: 1px;\n margin: 9px 0;\n overflow: hidden;\n background-color: #e5e5e5;\n}\n.dropdown-menu > li > a {\n display: block;\n padding: 3px 20px;\n clear: both;\n font-weight: 400;\n line-height: 1.42857143;\n color: #333333;\n white-space: nowrap;\n}\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n color: #262626;\n text-decoration: none;\n background-color: #f5f5f5;\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n color: #fff;\n text-decoration: none;\n background-color: #337ab7;\n outline: 0;\n}\n.dropdown-menu > .disabled > a,\n.dropdown-menu > .disabled > a:hover,\n.dropdown-menu > .disabled > a:focus {\n color: #777777;\n}\n.dropdown-menu > .disabled > a:hover,\n.dropdown-menu > .disabled > a:focus {\n text-decoration: none;\n cursor: not-allowed;\n background-color: transparent;\n background-image: none;\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n}\n.open > .dropdown-menu {\n display: block;\n}\n.open > a {\n outline: 0;\n}\n.dropdown-menu-right {\n right: 0;\n left: auto;\n}\n.dropdown-menu-left {\n right: auto;\n left: 0;\n}\n.dropdown-header {\n display: block;\n padding: 3px 20px;\n font-size: 12px;\n line-height: 1.42857143;\n color: #777777;\n white-space: nowrap;\n}\n.dropdown-backdrop {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 990;\n}\n.pull-right > .dropdown-menu {\n right: 0;\n left: auto;\n}\n.dropup .caret,\n.navbar-fixed-bottom .dropdown .caret {\n content: \"\";\n border-top: 0;\n border-bottom: 4px dashed;\n border-bottom: 4px solid \\9;\n}\n.dropup .dropdown-menu,\n.navbar-fixed-bottom .dropdown .dropdown-menu {\n top: auto;\n bottom: 100%;\n margin-bottom: 2px;\n}\n@media (min-width: 768px) {\n .navbar-right .dropdown-menu {\n right: 0;\n left: auto;\n }\n .navbar-right .dropdown-menu-left {\n right: auto;\n left: 0;\n }\n}\n.btn-group,\n.btn-group-vertical {\n position: relative;\n display: inline-block;\n vertical-align: middle;\n}\n.btn-group > .btn,\n.btn-group-vertical > .btn {\n position: relative;\n float: left;\n}\n.btn-group > .btn:hover,\n.btn-group-vertical > .btn:hover,\n.btn-group > .btn:focus,\n.btn-group-vertical > .btn:focus,\n.btn-group > .btn:active,\n.btn-group-vertical > .btn:active,\n.btn-group > .btn.active,\n.btn-group-vertical > .btn.active {\n z-index: 2;\n}\n.btn-group .btn + .btn,\n.btn-group .btn + .btn-group,\n.btn-group .btn-group + .btn,\n.btn-group .btn-group + .btn-group {\n margin-left: -1px;\n}\n.btn-toolbar {\n margin-left: -5px;\n}\n.btn-toolbar .btn,\n.btn-toolbar .btn-group,\n.btn-toolbar .input-group {\n float: left;\n}\n.btn-toolbar > .btn,\n.btn-toolbar > .btn-group,\n.btn-toolbar > .input-group {\n margin-left: 5px;\n}\n.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {\n border-radius: 0;\n}\n.btn-group > .btn:first-child {\n margin-left: 0;\n}\n.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n.btn-group > .btn:last-child:not(:first-child),\n.btn-group > .dropdown-toggle:not(:first-child) {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n}\n.btn-group > .btn-group {\n float: left;\n}\n.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0;\n}\n.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,\n.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n}\n.btn-group .dropdown-toggle:active,\n.btn-group.open .dropdown-toggle {\n outline: 0;\n}\n.btn-group > .btn + .dropdown-toggle {\n padding-right: 8px;\n padding-left: 8px;\n}\n.btn-group > .btn-lg + .dropdown-toggle {\n padding-right: 12px;\n padding-left: 12px;\n}\n.btn-group.open .dropdown-toggle {\n -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.btn-group.open .dropdown-toggle.btn-link {\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n.btn .caret {\n margin-left: 0;\n}\n.btn-lg .caret {\n border-width: 5px 5px 0;\n border-bottom-width: 0;\n}\n.dropup .btn-lg .caret {\n border-width: 0 5px 5px;\n}\n.btn-group-vertical > .btn,\n.btn-group-vertical > .btn-group,\n.btn-group-vertical > .btn-group > .btn {\n display: block;\n float: none;\n width: 100%;\n max-width: 100%;\n}\n.btn-group-vertical > .btn-group > .btn {\n float: none;\n}\n.btn-group-vertical > .btn + .btn,\n.btn-group-vertical > .btn + .btn-group,\n.btn-group-vertical > .btn-group + .btn,\n.btn-group-vertical > .btn-group + .btn-group {\n margin-top: -1px;\n margin-left: 0;\n}\n.btn-group-vertical > .btn:not(:first-child):not(:last-child) {\n border-radius: 0;\n}\n.btn-group-vertical > .btn:first-child:not(:last-child) {\n border-top-left-radius: 4px;\n border-top-right-radius: 4px;\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n.btn-group-vertical > .btn:last-child:not(:first-child) {\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n border-bottom-right-radius: 4px;\n border-bottom-left-radius: 4px;\n}\n.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0;\n}\n.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,\n.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n}\n.btn-group-justified {\n display: table;\n width: 100%;\n table-layout: fixed;\n border-collapse: separate;\n}\n.btn-group-justified > .btn,\n.btn-group-justified > .btn-group {\n display: table-cell;\n float: none;\n width: 1%;\n}\n.btn-group-justified > .btn-group .btn {\n width: 100%;\n}\n.btn-group-justified > .btn-group .dropdown-menu {\n left: auto;\n}\n[data-toggle=\"buttons\"] > .btn input[type=\"radio\"],\n[data-toggle=\"buttons\"] > .btn-group > .btn input[type=\"radio\"],\n[data-toggle=\"buttons\"] > .btn input[type=\"checkbox\"],\n[data-toggle=\"buttons\"] > .btn-group > .btn input[type=\"checkbox\"] {\n position: absolute;\n clip: rect(0, 0, 0, 0);\n pointer-events: none;\n}\n.input-group {\n position: relative;\n display: table;\n border-collapse: separate;\n}\n.input-group[class*=\"col-\"] {\n float: none;\n padding-right: 0;\n padding-left: 0;\n}\n.input-group .form-control {\n position: relative;\n z-index: 2;\n float: left;\n width: 100%;\n margin-bottom: 0;\n}\n.input-group .form-control:focus {\n z-index: 3;\n}\n.input-group-lg > .form-control,\n.input-group-lg > .input-group-addon,\n.input-group-lg > .input-group-btn > .btn {\n height: 46px;\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n}\nselect.input-group-lg > .form-control,\nselect.input-group-lg > .input-group-addon,\nselect.input-group-lg > .input-group-btn > .btn {\n height: 46px;\n line-height: 46px;\n}\ntextarea.input-group-lg > .form-control,\ntextarea.input-group-lg > .input-group-addon,\ntextarea.input-group-lg > .input-group-btn > .btn,\nselect[multiple].input-group-lg > .form-control,\nselect[multiple].input-group-lg > .input-group-addon,\nselect[multiple].input-group-lg > .input-group-btn > .btn {\n height: auto;\n}\n.input-group-sm > .form-control,\n.input-group-sm > .input-group-addon,\n.input-group-sm > .input-group-btn > .btn {\n height: 30px;\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\nselect.input-group-sm > .form-control,\nselect.input-group-sm > .input-group-addon,\nselect.input-group-sm > .input-group-btn > .btn {\n height: 30px;\n line-height: 30px;\n}\ntextarea.input-group-sm > .form-control,\ntextarea.input-group-sm > .input-group-addon,\ntextarea.input-group-sm > .input-group-btn > .btn,\nselect[multiple].input-group-sm > .form-control,\nselect[multiple].input-group-sm > .input-group-addon,\nselect[multiple].input-group-sm > .input-group-btn > .btn {\n height: auto;\n}\n.input-group-addon,\n.input-group-btn,\n.input-group .form-control {\n display: table-cell;\n}\n.input-group-addon:not(:first-child):not(:last-child),\n.input-group-btn:not(:first-child):not(:last-child),\n.input-group .form-control:not(:first-child):not(:last-child) {\n border-radius: 0;\n}\n.input-group-addon,\n.input-group-btn {\n width: 1%;\n white-space: nowrap;\n vertical-align: middle;\n}\n.input-group-addon {\n padding: 6px 12px;\n font-size: 14px;\n font-weight: 400;\n line-height: 1;\n color: #555555;\n text-align: center;\n background-color: #eeeeee;\n border: 1px solid #ccc;\n border-radius: 4px;\n}\n.input-group-addon.input-sm {\n padding: 5px 10px;\n font-size: 12px;\n border-radius: 3px;\n}\n.input-group-addon.input-lg {\n padding: 10px 16px;\n font-size: 18px;\n border-radius: 6px;\n}\n.input-group-addon input[type=\"radio\"],\n.input-group-addon input[type=\"checkbox\"] {\n margin-top: 0;\n}\n.input-group .form-control:first-child,\n.input-group-addon:first-child,\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group > .btn,\n.input-group-btn:first-child > .dropdown-toggle,\n.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n.input-group-addon:first-child {\n border-right: 0;\n}\n.input-group .form-control:last-child,\n.input-group-addon:last-child,\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group > .btn,\n.input-group-btn:last-child > .dropdown-toggle,\n.input-group-btn:first-child > .btn:not(:first-child),\n.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n}\n.input-group-addon:last-child {\n border-left: 0;\n}\n.input-group-btn {\n position: relative;\n font-size: 0;\n white-space: nowrap;\n}\n.input-group-btn > .btn {\n position: relative;\n}\n.input-group-btn > .btn + .btn {\n margin-left: -1px;\n}\n.input-group-btn > .btn:hover,\n.input-group-btn > .btn:focus,\n.input-group-btn > .btn:active {\n z-index: 2;\n}\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group {\n margin-right: -1px;\n}\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group {\n z-index: 2;\n margin-left: -1px;\n}\n.nav {\n padding-left: 0;\n margin-bottom: 0;\n list-style: none;\n}\n.nav > li {\n position: relative;\n display: block;\n}\n.nav > li > a {\n position: relative;\n display: block;\n padding: 10px 15px;\n}\n.nav > li > a:hover,\n.nav > li > a:focus {\n text-decoration: none;\n background-color: #eeeeee;\n}\n.nav > li.disabled > a {\n color: #777777;\n}\n.nav > li.disabled > a:hover,\n.nav > li.disabled > a:focus {\n color: #777777;\n text-decoration: none;\n cursor: not-allowed;\n background-color: transparent;\n}\n.nav .open > a,\n.nav .open > a:hover,\n.nav .open > a:focus {\n background-color: #eeeeee;\n border-color: #337ab7;\n}\n.nav .nav-divider {\n height: 1px;\n margin: 9px 0;\n overflow: hidden;\n background-color: #e5e5e5;\n}\n.nav > li > a > img {\n max-width: none;\n}\n.nav-tabs {\n border-bottom: 1px solid #ddd;\n}\n.nav-tabs > li {\n float: left;\n margin-bottom: -1px;\n}\n.nav-tabs > li > a {\n margin-right: 2px;\n line-height: 1.42857143;\n border: 1px solid transparent;\n border-radius: 4px 4px 0 0;\n}\n.nav-tabs > li > a:hover {\n border-color: #eeeeee #eeeeee #ddd;\n}\n.nav-tabs > li.active > a,\n.nav-tabs > li.active > a:hover,\n.nav-tabs > li.active > a:focus {\n color: #555555;\n cursor: default;\n background-color: #fff;\n border: 1px solid #ddd;\n border-bottom-color: transparent;\n}\n.nav-tabs.nav-justified {\n width: 100%;\n border-bottom: 0;\n}\n.nav-tabs.nav-justified > li {\n float: none;\n}\n.nav-tabs.nav-justified > li > a {\n margin-bottom: 5px;\n text-align: center;\n}\n.nav-tabs.nav-justified > .dropdown .dropdown-menu {\n top: auto;\n left: auto;\n}\n@media (min-width: 768px) {\n .nav-tabs.nav-justified > li {\n display: table-cell;\n width: 1%;\n }\n .nav-tabs.nav-justified > li > a {\n margin-bottom: 0;\n }\n}\n.nav-tabs.nav-justified > li > a {\n margin-right: 0;\n border-radius: 4px;\n}\n.nav-tabs.nav-justified > .active > a,\n.nav-tabs.nav-justified > .active > a:hover,\n.nav-tabs.nav-justified > .active > a:focus {\n border: 1px solid #ddd;\n}\n@media (min-width: 768px) {\n .nav-tabs.nav-justified > li > a {\n border-bottom: 1px solid #ddd;\n border-radius: 4px 4px 0 0;\n }\n .nav-tabs.nav-justified > .active > a,\n .nav-tabs.nav-justified > .active > a:hover,\n .nav-tabs.nav-justified > .active > a:focus {\n border-bottom-color: #fff;\n }\n}\n.nav-pills > li {\n float: left;\n}\n.nav-pills > li > a {\n border-radius: 4px;\n}\n.nav-pills > li + li {\n margin-left: 2px;\n}\n.nav-pills > li.active > a,\n.nav-pills > li.active > a:hover,\n.nav-pills > li.active > a:focus {\n color: #fff;\n background-color: #337ab7;\n}\n.nav-stacked > li {\n float: none;\n}\n.nav-stacked > li + li {\n margin-top: 2px;\n margin-left: 0;\n}\n.nav-justified {\n width: 100%;\n}\n.nav-justified > li {\n float: none;\n}\n.nav-justified > li > a {\n margin-bottom: 5px;\n text-align: center;\n}\n.nav-justified > .dropdown .dropdown-menu {\n top: auto;\n left: auto;\n}\n@media (min-width: 768px) {\n .nav-justified > li {\n display: table-cell;\n width: 1%;\n }\n .nav-justified > li > a {\n margin-bottom: 0;\n }\n}\n.nav-tabs-justified {\n border-bottom: 0;\n}\n.nav-tabs-justified > li > a {\n margin-right: 0;\n border-radius: 4px;\n}\n.nav-tabs-justified > .active > a,\n.nav-tabs-justified > .active > a:hover,\n.nav-tabs-justified > .active > a:focus {\n border: 1px solid #ddd;\n}\n@media (min-width: 768px) {\n .nav-tabs-justified > li > a {\n border-bottom: 1px solid #ddd;\n border-radius: 4px 4px 0 0;\n }\n .nav-tabs-justified > .active > a,\n .nav-tabs-justified > .active > a:hover,\n .nav-tabs-justified > .active > a:focus {\n border-bottom-color: #fff;\n }\n}\n.tab-content > .tab-pane {\n display: none;\n}\n.tab-content > .active {\n display: block;\n}\n.nav-tabs .dropdown-menu {\n margin-top: -1px;\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n}\n.navbar {\n position: relative;\n min-height: 50px;\n margin-bottom: 20px;\n border: 1px solid transparent;\n}\n@media (min-width: 768px) {\n .navbar {\n border-radius: 4px;\n }\n}\n@media (min-width: 768px) {\n .navbar-header {\n float: left;\n }\n}\n.navbar-collapse {\n padding-right: 15px;\n padding-left: 15px;\n overflow-x: visible;\n border-top: 1px solid transparent;\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);\n -webkit-overflow-scrolling: touch;\n}\n.navbar-collapse.in {\n overflow-y: auto;\n}\n@media (min-width: 768px) {\n .navbar-collapse {\n width: auto;\n border-top: 0;\n box-shadow: none;\n }\n .navbar-collapse.collapse {\n display: block !important;\n height: auto !important;\n padding-bottom: 0;\n overflow: visible !important;\n }\n .navbar-collapse.in {\n overflow-y: visible;\n }\n .navbar-fixed-top .navbar-collapse,\n .navbar-static-top .navbar-collapse,\n .navbar-fixed-bottom .navbar-collapse {\n padding-right: 0;\n padding-left: 0;\n }\n}\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n position: fixed;\n right: 0;\n left: 0;\n z-index: 1030;\n}\n.navbar-fixed-top .navbar-collapse,\n.navbar-fixed-bottom .navbar-collapse {\n max-height: 340px;\n}\n@media (max-device-width: 480px) and (orientation: landscape) {\n .navbar-fixed-top .navbar-collapse,\n .navbar-fixed-bottom .navbar-collapse {\n max-height: 200px;\n }\n}\n@media (min-width: 768px) {\n .navbar-fixed-top,\n .navbar-fixed-bottom {\n border-radius: 0;\n }\n}\n.navbar-fixed-top {\n top: 0;\n border-width: 0 0 1px;\n}\n.navbar-fixed-bottom {\n bottom: 0;\n margin-bottom: 0;\n border-width: 1px 0 0;\n}\n.container > .navbar-header,\n.container-fluid > .navbar-header,\n.container > .navbar-collapse,\n.container-fluid > .navbar-collapse {\n margin-right: -15px;\n margin-left: -15px;\n}\n@media (min-width: 768px) {\n .container > .navbar-header,\n .container-fluid > .navbar-header,\n .container > .navbar-collapse,\n .container-fluid > .navbar-collapse {\n margin-right: 0;\n margin-left: 0;\n }\n}\n.navbar-static-top {\n z-index: 1000;\n border-width: 0 0 1px;\n}\n@media (min-width: 768px) {\n .navbar-static-top {\n border-radius: 0;\n }\n}\n.navbar-brand {\n float: left;\n height: 50px;\n padding: 15px 15px;\n font-size: 18px;\n line-height: 20px;\n}\n.navbar-brand:hover,\n.navbar-brand:focus {\n text-decoration: none;\n}\n.navbar-brand > img {\n display: block;\n}\n@media (min-width: 768px) {\n .navbar > .container .navbar-brand,\n .navbar > .container-fluid .navbar-brand {\n margin-left: -15px;\n }\n}\n.navbar-toggle {\n position: relative;\n float: right;\n padding: 9px 10px;\n margin-right: 15px;\n margin-top: 8px;\n margin-bottom: 8px;\n background-color: transparent;\n background-image: none;\n border: 1px solid transparent;\n border-radius: 4px;\n}\n.navbar-toggle:focus {\n outline: 0;\n}\n.navbar-toggle .icon-bar {\n display: block;\n width: 22px;\n height: 2px;\n border-radius: 1px;\n}\n.navbar-toggle .icon-bar + .icon-bar {\n margin-top: 4px;\n}\n@media (min-width: 768px) {\n .navbar-toggle {\n display: none;\n }\n}\n.navbar-nav {\n margin: 7.5px -15px;\n}\n.navbar-nav > li > a {\n padding-top: 10px;\n padding-bottom: 10px;\n line-height: 20px;\n}\n@media (max-width: 767px) {\n .navbar-nav .open .dropdown-menu {\n position: static;\n float: none;\n width: auto;\n margin-top: 0;\n background-color: transparent;\n border: 0;\n box-shadow: none;\n }\n .navbar-nav .open .dropdown-menu > li > a,\n .navbar-nav .open .dropdown-menu .dropdown-header {\n padding: 5px 15px 5px 25px;\n }\n .navbar-nav .open .dropdown-menu > li > a {\n line-height: 20px;\n }\n .navbar-nav .open .dropdown-menu > li > a:hover,\n .navbar-nav .open .dropdown-menu > li > a:focus {\n background-image: none;\n }\n}\n@media (min-width: 768px) {\n .navbar-nav {\n float: left;\n margin: 0;\n }\n .navbar-nav > li {\n float: left;\n }\n .navbar-nav > li > a {\n padding-top: 15px;\n padding-bottom: 15px;\n }\n}\n.navbar-form {\n padding: 10px 15px;\n margin-right: -15px;\n margin-left: -15px;\n border-top: 1px solid transparent;\n border-bottom: 1px solid transparent;\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);\n margin-top: 8px;\n margin-bottom: 8px;\n}\n@media (min-width: 768px) {\n .navbar-form .form-group {\n display: inline-block;\n margin-bottom: 0;\n vertical-align: middle;\n }\n .navbar-form .form-control {\n display: inline-block;\n width: auto;\n vertical-align: middle;\n }\n .navbar-form .form-control-static {\n display: inline-block;\n }\n .navbar-form .input-group {\n display: inline-table;\n vertical-align: middle;\n }\n .navbar-form .input-group .input-group-addon,\n .navbar-form .input-group .input-group-btn,\n .navbar-form .input-group .form-control {\n width: auto;\n }\n .navbar-form .input-group > .form-control {\n width: 100%;\n }\n .navbar-form .control-label {\n margin-bottom: 0;\n vertical-align: middle;\n }\n .navbar-form .radio,\n .navbar-form .checkbox {\n display: inline-block;\n margin-top: 0;\n margin-bottom: 0;\n vertical-align: middle;\n }\n .navbar-form .radio label,\n .navbar-form .checkbox label {\n padding-left: 0;\n }\n .navbar-form .radio input[type=\"radio\"],\n .navbar-form .checkbox input[type=\"checkbox\"] {\n position: relative;\n margin-left: 0;\n }\n .navbar-form .has-feedback .form-control-feedback {\n top: 0;\n }\n}\n@media (max-width: 767px) {\n .navbar-form .form-group {\n margin-bottom: 5px;\n }\n .navbar-form .form-group:last-child {\n margin-bottom: 0;\n }\n}\n@media (min-width: 768px) {\n .navbar-form {\n width: auto;\n padding-top: 0;\n padding-bottom: 0;\n margin-right: 0;\n margin-left: 0;\n border: 0;\n -webkit-box-shadow: none;\n box-shadow: none;\n }\n}\n.navbar-nav > li > .dropdown-menu {\n margin-top: 0;\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n}\n.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {\n margin-bottom: 0;\n border-top-left-radius: 4px;\n border-top-right-radius: 4px;\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n.navbar-btn {\n margin-top: 8px;\n margin-bottom: 8px;\n}\n.navbar-btn.btn-sm {\n margin-top: 10px;\n margin-bottom: 10px;\n}\n.navbar-btn.btn-xs {\n margin-top: 14px;\n margin-bottom: 14px;\n}\n.navbar-text {\n margin-top: 15px;\n margin-bottom: 15px;\n}\n@media (min-width: 768px) {\n .navbar-text {\n float: left;\n margin-right: 15px;\n margin-left: 15px;\n }\n}\n@media (min-width: 768px) {\n .navbar-left {\n float: left !important;\n }\n .navbar-right {\n float: right !important;\n margin-right: -15px;\n }\n .navbar-right ~ .navbar-right {\n margin-right: 0;\n }\n}\n.navbar-default {\n background-color: #f8f8f8;\n border-color: #e7e7e7;\n}\n.navbar-default .navbar-brand {\n color: #777;\n}\n.navbar-default .navbar-brand:hover,\n.navbar-default .navbar-brand:focus {\n color: #5e5e5e;\n background-color: transparent;\n}\n.navbar-default .navbar-text {\n color: #777;\n}\n.navbar-default .navbar-nav > li > a {\n color: #777;\n}\n.navbar-default .navbar-nav > li > a:hover,\n.navbar-default .navbar-nav > li > a:focus {\n color: #333;\n background-color: transparent;\n}\n.navbar-default .navbar-nav > .active > a,\n.navbar-default .navbar-nav > .active > a:hover,\n.navbar-default .navbar-nav > .active > a:focus {\n color: #555;\n background-color: #e7e7e7;\n}\n.navbar-default .navbar-nav > .disabled > a,\n.navbar-default .navbar-nav > .disabled > a:hover,\n.navbar-default .navbar-nav > .disabled > a:focus {\n color: #ccc;\n background-color: transparent;\n}\n.navbar-default .navbar-nav > .open > a,\n.navbar-default .navbar-nav > .open > a:hover,\n.navbar-default .navbar-nav > .open > a:focus {\n color: #555;\n background-color: #e7e7e7;\n}\n@media (max-width: 767px) {\n .navbar-default .navbar-nav .open .dropdown-menu > li > a {\n color: #777;\n }\n .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,\n .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {\n color: #333;\n background-color: transparent;\n }\n .navbar-default .navbar-nav .open .dropdown-menu > .active > a,\n .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,\n .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {\n color: #555;\n background-color: #e7e7e7;\n }\n .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,\n .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,\n .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {\n color: #ccc;\n background-color: transparent;\n }\n}\n.navbar-default .navbar-toggle {\n border-color: #ddd;\n}\n.navbar-default .navbar-toggle:hover,\n.navbar-default .navbar-toggle:focus {\n background-color: #ddd;\n}\n.navbar-default .navbar-toggle .icon-bar {\n background-color: #888;\n}\n.navbar-default .navbar-collapse,\n.navbar-default .navbar-form {\n border-color: #e7e7e7;\n}\n.navbar-default .navbar-link {\n color: #777;\n}\n.navbar-default .navbar-link:hover {\n color: #333;\n}\n.navbar-default .btn-link {\n color: #777;\n}\n.navbar-default .btn-link:hover,\n.navbar-default .btn-link:focus {\n color: #333;\n}\n.navbar-default .btn-link[disabled]:hover,\nfieldset[disabled] .navbar-default .btn-link:hover,\n.navbar-default .btn-link[disabled]:focus,\nfieldset[disabled] .navbar-default .btn-link:focus {\n color: #ccc;\n}\n.navbar-inverse {\n background-color: #222;\n border-color: #080808;\n}\n.navbar-inverse .navbar-brand {\n color: #9d9d9d;\n}\n.navbar-inverse .navbar-brand:hover,\n.navbar-inverse .navbar-brand:focus {\n color: #fff;\n background-color: transparent;\n}\n.navbar-inverse .navbar-text {\n color: #9d9d9d;\n}\n.navbar-inverse .navbar-nav > li > a {\n color: #9d9d9d;\n}\n.navbar-inverse .navbar-nav > li > a:hover,\n.navbar-inverse .navbar-nav > li > a:focus {\n color: #fff;\n background-color: transparent;\n}\n.navbar-inverse .navbar-nav > .active > a,\n.navbar-inverse .navbar-nav > .active > a:hover,\n.navbar-inverse .navbar-nav > .active > a:focus {\n color: #fff;\n background-color: #080808;\n}\n.navbar-inverse .navbar-nav > .disabled > a,\n.navbar-inverse .navbar-nav > .disabled > a:hover,\n.navbar-inverse .navbar-nav > .disabled > a:focus {\n color: #444;\n background-color: transparent;\n}\n.navbar-inverse .navbar-nav > .open > a,\n.navbar-inverse .navbar-nav > .open > a:hover,\n.navbar-inverse .navbar-nav > .open > a:focus {\n color: #fff;\n background-color: #080808;\n}\n@media (max-width: 767px) {\n .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {\n border-color: #080808;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu .divider {\n background-color: #080808;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {\n color: #9d9d9d;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,\n .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {\n color: #fff;\n background-color: transparent;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,\n .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,\n .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {\n color: #fff;\n background-color: #080808;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,\n .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,\n .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {\n color: #444;\n background-color: transparent;\n }\n}\n.navbar-inverse .navbar-toggle {\n border-color: #333;\n}\n.navbar-inverse .navbar-toggle:hover,\n.navbar-inverse .navbar-toggle:focus {\n background-color: #333;\n}\n.navbar-inverse .navbar-toggle .icon-bar {\n background-color: #fff;\n}\n.navbar-inverse .navbar-collapse,\n.navbar-inverse .navbar-form {\n border-color: #101010;\n}\n.navbar-inverse .navbar-link {\n color: #9d9d9d;\n}\n.navbar-inverse .navbar-link:hover {\n color: #fff;\n}\n.navbar-inverse .btn-link {\n color: #9d9d9d;\n}\n.navbar-inverse .btn-link:hover,\n.navbar-inverse .btn-link:focus {\n color: #fff;\n}\n.navbar-inverse .btn-link[disabled]:hover,\nfieldset[disabled] .navbar-inverse .btn-link:hover,\n.navbar-inverse .btn-link[disabled]:focus,\nfieldset[disabled] .navbar-inverse .btn-link:focus {\n color: #444;\n}\n.breadcrumb {\n padding: 8px 15px;\n margin-bottom: 20px;\n list-style: none;\n background-color: #f5f5f5;\n border-radius: 4px;\n}\n.breadcrumb > li {\n display: inline-block;\n}\n.breadcrumb > li + li:before {\n padding: 0 5px;\n color: #ccc;\n content: \"/\\00a0\";\n}\n.breadcrumb > .active {\n color: #777777;\n}\n.pagination {\n display: inline-block;\n padding-left: 0;\n margin: 20px 0;\n border-radius: 4px;\n}\n.pagination > li {\n display: inline;\n}\n.pagination > li > a,\n.pagination > li > span {\n position: relative;\n float: left;\n padding: 6px 12px;\n margin-left: -1px;\n line-height: 1.42857143;\n color: #337ab7;\n text-decoration: none;\n background-color: #fff;\n border: 1px solid #ddd;\n}\n.pagination > li > a:hover,\n.pagination > li > span:hover,\n.pagination > li > a:focus,\n.pagination > li > span:focus {\n z-index: 2;\n color: #23527c;\n background-color: #eeeeee;\n border-color: #ddd;\n}\n.pagination > li:first-child > a,\n.pagination > li:first-child > span {\n margin-left: 0;\n border-top-left-radius: 4px;\n border-bottom-left-radius: 4px;\n}\n.pagination > li:last-child > a,\n.pagination > li:last-child > span {\n border-top-right-radius: 4px;\n border-bottom-right-radius: 4px;\n}\n.pagination > .active > a,\n.pagination > .active > span,\n.pagination > .active > a:hover,\n.pagination > .active > span:hover,\n.pagination > .active > a:focus,\n.pagination > .active > span:focus {\n z-index: 3;\n color: #fff;\n cursor: default;\n background-color: #337ab7;\n border-color: #337ab7;\n}\n.pagination > .disabled > span,\n.pagination > .disabled > span:hover,\n.pagination > .disabled > span:focus,\n.pagination > .disabled > a,\n.pagination > .disabled > a:hover,\n.pagination > .disabled > a:focus {\n color: #777777;\n cursor: not-allowed;\n background-color: #fff;\n border-color: #ddd;\n}\n.pagination-lg > li > a,\n.pagination-lg > li > span {\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n}\n.pagination-lg > li:first-child > a,\n.pagination-lg > li:first-child > span {\n border-top-left-radius: 6px;\n border-bottom-left-radius: 6px;\n}\n.pagination-lg > li:last-child > a,\n.pagination-lg > li:last-child > span {\n border-top-right-radius: 6px;\n border-bottom-right-radius: 6px;\n}\n.pagination-sm > li > a,\n.pagination-sm > li > span {\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n}\n.pagination-sm > li:first-child > a,\n.pagination-sm > li:first-child > span {\n border-top-left-radius: 3px;\n border-bottom-left-radius: 3px;\n}\n.pagination-sm > li:last-child > a,\n.pagination-sm > li:last-child > span {\n border-top-right-radius: 3px;\n border-bottom-right-radius: 3px;\n}\n.pager {\n padding-left: 0;\n margin: 20px 0;\n text-align: center;\n list-style: none;\n}\n.pager li {\n display: inline;\n}\n.pager li > a,\n.pager li > span {\n display: inline-block;\n padding: 5px 14px;\n background-color: #fff;\n border: 1px solid #ddd;\n border-radius: 15px;\n}\n.pager li > a:hover,\n.pager li > a:focus {\n text-decoration: none;\n background-color: #eeeeee;\n}\n.pager .next > a,\n.pager .next > span {\n float: right;\n}\n.pager .previous > a,\n.pager .previous > span {\n float: left;\n}\n.pager .disabled > a,\n.pager .disabled > a:hover,\n.pager .disabled > a:focus,\n.pager .disabled > span {\n color: #777777;\n cursor: not-allowed;\n background-color: #fff;\n}\n.label {\n display: inline;\n padding: 0.2em 0.6em 0.3em;\n font-size: 75%;\n font-weight: 700;\n line-height: 1;\n color: #fff;\n text-align: center;\n white-space: nowrap;\n vertical-align: baseline;\n border-radius: 0.25em;\n}\na.label:hover,\na.label:focus {\n color: #fff;\n text-decoration: none;\n cursor: pointer;\n}\n.label:empty {\n display: none;\n}\n.btn .label {\n position: relative;\n top: -1px;\n}\n.label-default {\n background-color: #777777;\n}\n.label-default[href]:hover,\n.label-default[href]:focus {\n background-color: #5e5e5e;\n}\n.label-primary {\n background-color: #337ab7;\n}\n.label-primary[href]:hover,\n.label-primary[href]:focus {\n background-color: #286090;\n}\n.label-success {\n background-color: #5cb85c;\n}\n.label-success[href]:hover,\n.label-success[href]:focus {\n background-color: #449d44;\n}\n.label-info {\n background-color: #5bc0de;\n}\n.label-info[href]:hover,\n.label-info[href]:focus {\n background-color: #31b0d5;\n}\n.label-warning {\n background-color: #f0ad4e;\n}\n.label-warning[href]:hover,\n.label-warning[href]:focus {\n background-color: #ec971f;\n}\n.label-danger {\n background-color: #d9534f;\n}\n.label-danger[href]:hover,\n.label-danger[href]:focus {\n background-color: #c9302c;\n}\n.badge {\n display: inline-block;\n min-width: 10px;\n padding: 3px 7px;\n font-size: 12px;\n font-weight: bold;\n line-height: 1;\n color: #fff;\n text-align: center;\n white-space: nowrap;\n vertical-align: middle;\n background-color: #777777;\n border-radius: 10px;\n}\n.badge:empty {\n display: none;\n}\n.btn .badge {\n position: relative;\n top: -1px;\n}\n.btn-xs .badge,\n.btn-group-xs > .btn .badge {\n top: 0;\n padding: 1px 5px;\n}\na.badge:hover,\na.badge:focus {\n color: #fff;\n text-decoration: none;\n cursor: pointer;\n}\n.list-group-item.active > .badge,\n.nav-pills > .active > a > .badge {\n color: #337ab7;\n background-color: #fff;\n}\n.list-group-item > .badge {\n float: right;\n}\n.list-group-item > .badge + .badge {\n margin-right: 5px;\n}\n.nav-pills > li > a > .badge {\n margin-left: 3px;\n}\n.jumbotron {\n padding-top: 30px;\n padding-bottom: 30px;\n margin-bottom: 30px;\n color: inherit;\n background-color: #eeeeee;\n}\n.jumbotron h1,\n.jumbotron .h1 {\n color: inherit;\n}\n.jumbotron p {\n margin-bottom: 15px;\n font-size: 21px;\n font-weight: 200;\n}\n.jumbotron > hr {\n border-top-color: #d5d5d5;\n}\n.container .jumbotron,\n.container-fluid .jumbotron {\n padding-right: 15px;\n padding-left: 15px;\n border-radius: 6px;\n}\n.jumbotron .container {\n max-width: 100%;\n}\n@media screen and (min-width: 768px) {\n .jumbotron {\n padding-top: 48px;\n padding-bottom: 48px;\n }\n .container .jumbotron,\n .container-fluid .jumbotron {\n padding-right: 60px;\n padding-left: 60px;\n }\n .jumbotron h1,\n .jumbotron .h1 {\n font-size: 63px;\n }\n}\n.thumbnail {\n display: block;\n padding: 4px;\n margin-bottom: 20px;\n line-height: 1.42857143;\n background-color: #fff;\n border: 1px solid #ddd;\n border-radius: 4px;\n -webkit-transition: border 0.2s ease-in-out;\n -o-transition: border 0.2s ease-in-out;\n transition: border 0.2s ease-in-out;\n}\n.thumbnail > img,\n.thumbnail a > img {\n margin-right: auto;\n margin-left: auto;\n}\na.thumbnail:hover,\na.thumbnail:focus,\na.thumbnail.active {\n border-color: #337ab7;\n}\n.thumbnail .caption {\n padding: 9px;\n color: #333333;\n}\n.alert {\n padding: 15px;\n margin-bottom: 20px;\n border: 1px solid transparent;\n border-radius: 4px;\n}\n.alert h4 {\n margin-top: 0;\n color: inherit;\n}\n.alert .alert-link {\n font-weight: bold;\n}\n.alert > p,\n.alert > ul {\n margin-bottom: 0;\n}\n.alert > p + p {\n margin-top: 5px;\n}\n.alert-dismissable,\n.alert-dismissible {\n padding-right: 35px;\n}\n.alert-dismissable .close,\n.alert-dismissible .close {\n position: relative;\n top: -2px;\n right: -21px;\n color: inherit;\n}\n.alert-success {\n color: #3c763d;\n background-color: #dff0d8;\n border-color: #d6e9c6;\n}\n.alert-success hr {\n border-top-color: #c9e2b3;\n}\n.alert-success .alert-link {\n color: #2b542c;\n}\n.alert-info {\n color: #31708f;\n background-color: #d9edf7;\n border-color: #bce8f1;\n}\n.alert-info hr {\n border-top-color: #a6e1ec;\n}\n.alert-info .alert-link {\n color: #245269;\n}\n.alert-warning {\n color: #8a6d3b;\n background-color: #fcf8e3;\n border-color: #faebcc;\n}\n.alert-warning hr {\n border-top-color: #f7e1b5;\n}\n.alert-warning .alert-link {\n color: #66512c;\n}\n.alert-danger {\n color: #a94442;\n background-color: #f2dede;\n border-color: #ebccd1;\n}\n.alert-danger hr {\n border-top-color: #e4b9c0;\n}\n.alert-danger .alert-link {\n color: #843534;\n}\n@-webkit-keyframes progress-bar-stripes {\n from {\n background-position: 40px 0;\n }\n to {\n background-position: 0 0;\n }\n}\n@keyframes progress-bar-stripes {\n from {\n background-position: 40px 0;\n }\n to {\n background-position: 0 0;\n }\n}\n.progress {\n height: 20px;\n margin-bottom: 20px;\n overflow: hidden;\n background-color: #f5f5f5;\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);\n box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);\n}\n.progress-bar {\n float: left;\n width: 0%;\n height: 100%;\n font-size: 12px;\n line-height: 20px;\n color: #fff;\n text-align: center;\n background-color: #337ab7;\n -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);\n box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);\n -webkit-transition: width 0.6s ease;\n -o-transition: width 0.6s ease;\n transition: width 0.6s ease;\n}\n.progress-striped .progress-bar,\n.progress-bar-striped {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-size: 40px 40px;\n}\n.progress.active .progress-bar,\n.progress-bar.active {\n -webkit-animation: progress-bar-stripes 2s linear infinite;\n -o-animation: progress-bar-stripes 2s linear infinite;\n animation: progress-bar-stripes 2s linear infinite;\n}\n.progress-bar-success {\n background-color: #5cb85c;\n}\n.progress-striped .progress-bar-success {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.progress-bar-info {\n background-color: #5bc0de;\n}\n.progress-striped .progress-bar-info {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.progress-bar-warning {\n background-color: #f0ad4e;\n}\n.progress-striped .progress-bar-warning {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.progress-bar-danger {\n background-color: #d9534f;\n}\n.progress-striped .progress-bar-danger {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.media {\n margin-top: 15px;\n}\n.media:first-child {\n margin-top: 0;\n}\n.media,\n.media-body {\n overflow: hidden;\n zoom: 1;\n}\n.media-body {\n width: 10000px;\n}\n.media-object {\n display: block;\n}\n.media-object.img-thumbnail {\n max-width: none;\n}\n.media-right,\n.media > .pull-right {\n padding-left: 10px;\n}\n.media-left,\n.media > .pull-left {\n padding-right: 10px;\n}\n.media-left,\n.media-right,\n.media-body {\n display: table-cell;\n vertical-align: top;\n}\n.media-middle {\n vertical-align: middle;\n}\n.media-bottom {\n vertical-align: bottom;\n}\n.media-heading {\n margin-top: 0;\n margin-bottom: 5px;\n}\n.media-list {\n padding-left: 0;\n list-style: none;\n}\n.list-group {\n padding-left: 0;\n margin-bottom: 20px;\n}\n.list-group-item {\n position: relative;\n display: block;\n padding: 10px 15px;\n margin-bottom: -1px;\n background-color: #fff;\n border: 1px solid #ddd;\n}\n.list-group-item:first-child {\n border-top-left-radius: 4px;\n border-top-right-radius: 4px;\n}\n.list-group-item:last-child {\n margin-bottom: 0;\n border-bottom-right-radius: 4px;\n border-bottom-left-radius: 4px;\n}\n.list-group-item.disabled,\n.list-group-item.disabled:hover,\n.list-group-item.disabled:focus {\n color: #777777;\n cursor: not-allowed;\n background-color: #eeeeee;\n}\n.list-group-item.disabled .list-group-item-heading,\n.list-group-item.disabled:hover .list-group-item-heading,\n.list-group-item.disabled:focus .list-group-item-heading {\n color: inherit;\n}\n.list-group-item.disabled .list-group-item-text,\n.list-group-item.disabled:hover .list-group-item-text,\n.list-group-item.disabled:focus .list-group-item-text {\n color: #777777;\n}\n.list-group-item.active,\n.list-group-item.active:hover,\n.list-group-item.active:focus {\n z-index: 2;\n color: #fff;\n background-color: #337ab7;\n border-color: #337ab7;\n}\n.list-group-item.active .list-group-item-heading,\n.list-group-item.active:hover .list-group-item-heading,\n.list-group-item.active:focus .list-group-item-heading,\n.list-group-item.active .list-group-item-heading > small,\n.list-group-item.active:hover .list-group-item-heading > small,\n.list-group-item.active:focus .list-group-item-heading > small,\n.list-group-item.active .list-group-item-heading > .small,\n.list-group-item.active:hover .list-group-item-heading > .small,\n.list-group-item.active:focus .list-group-item-heading > .small {\n color: inherit;\n}\n.list-group-item.active .list-group-item-text,\n.list-group-item.active:hover .list-group-item-text,\n.list-group-item.active:focus .list-group-item-text {\n color: #c7ddef;\n}\na.list-group-item,\nbutton.list-group-item {\n color: #555;\n}\na.list-group-item .list-group-item-heading,\nbutton.list-group-item .list-group-item-heading {\n color: #333;\n}\na.list-group-item:hover,\nbutton.list-group-item:hover,\na.list-group-item:focus,\nbutton.list-group-item:focus {\n color: #555;\n text-decoration: none;\n background-color: #f5f5f5;\n}\nbutton.list-group-item {\n width: 100%;\n text-align: left;\n}\n.list-group-item-success {\n color: #3c763d;\n background-color: #dff0d8;\n}\na.list-group-item-success,\nbutton.list-group-item-success {\n color: #3c763d;\n}\na.list-group-item-success .list-group-item-heading,\nbutton.list-group-item-success .list-group-item-heading {\n color: inherit;\n}\na.list-group-item-success:hover,\nbutton.list-group-item-success:hover,\na.list-group-item-success:focus,\nbutton.list-group-item-success:focus {\n color: #3c763d;\n background-color: #d0e9c6;\n}\na.list-group-item-success.active,\nbutton.list-group-item-success.active,\na.list-group-item-success.active:hover,\nbutton.list-group-item-success.active:hover,\na.list-group-item-success.active:focus,\nbutton.list-group-item-success.active:focus {\n color: #fff;\n background-color: #3c763d;\n border-color: #3c763d;\n}\n.list-group-item-info {\n color: #31708f;\n background-color: #d9edf7;\n}\na.list-group-item-info,\nbutton.list-group-item-info {\n color: #31708f;\n}\na.list-group-item-info .list-group-item-heading,\nbutton.list-group-item-info .list-group-item-heading {\n color: inherit;\n}\na.list-group-item-info:hover,\nbutton.list-group-item-info:hover,\na.list-group-item-info:focus,\nbutton.list-group-item-info:focus {\n color: #31708f;\n background-color: #c4e3f3;\n}\na.list-group-item-info.active,\nbutton.list-group-item-info.active,\na.list-group-item-info.active:hover,\nbutton.list-group-item-info.active:hover,\na.list-group-item-info.active:focus,\nbutton.list-group-item-info.active:focus {\n color: #fff;\n background-color: #31708f;\n border-color: #31708f;\n}\n.list-group-item-warning {\n color: #8a6d3b;\n background-color: #fcf8e3;\n}\na.list-group-item-warning,\nbutton.list-group-item-warning {\n color: #8a6d3b;\n}\na.list-group-item-warning .list-group-item-heading,\nbutton.list-group-item-warning .list-group-item-heading {\n color: inherit;\n}\na.list-group-item-warning:hover,\nbutton.list-group-item-warning:hover,\na.list-group-item-warning:focus,\nbutton.list-group-item-warning:focus {\n color: #8a6d3b;\n background-color: #faf2cc;\n}\na.list-group-item-warning.active,\nbutton.list-group-item-warning.active,\na.list-group-item-warning.active:hover,\nbutton.list-group-item-warning.active:hover,\na.list-group-item-warning.active:focus,\nbutton.list-group-item-warning.active:focus {\n color: #fff;\n background-color: #8a6d3b;\n border-color: #8a6d3b;\n}\n.list-group-item-danger {\n color: #a94442;\n background-color: #f2dede;\n}\na.list-group-item-danger,\nbutton.list-group-item-danger {\n color: #a94442;\n}\na.list-group-item-danger .list-group-item-heading,\nbutton.list-group-item-danger .list-group-item-heading {\n color: inherit;\n}\na.list-group-item-danger:hover,\nbutton.list-group-item-danger:hover,\na.list-group-item-danger:focus,\nbutton.list-group-item-danger:focus {\n color: #a94442;\n background-color: #ebcccc;\n}\na.list-group-item-danger.active,\nbutton.list-group-item-danger.active,\na.list-group-item-danger.active:hover,\nbutton.list-group-item-danger.active:hover,\na.list-group-item-danger.active:focus,\nbutton.list-group-item-danger.active:focus {\n color: #fff;\n background-color: #a94442;\n border-color: #a94442;\n}\n.list-group-item-heading {\n margin-top: 0;\n margin-bottom: 5px;\n}\n.list-group-item-text {\n margin-bottom: 0;\n line-height: 1.3;\n}\n.panel {\n margin-bottom: 20px;\n background-color: #fff;\n border: 1px solid transparent;\n border-radius: 4px;\n -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);\n box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);\n}\n.panel-body {\n padding: 15px;\n}\n.panel-heading {\n padding: 10px 15px;\n border-bottom: 1px solid transparent;\n border-top-left-radius: 3px;\n border-top-right-radius: 3px;\n}\n.panel-heading > .dropdown .dropdown-toggle {\n color: inherit;\n}\n.panel-title {\n margin-top: 0;\n margin-bottom: 0;\n font-size: 16px;\n color: inherit;\n}\n.panel-title > a,\n.panel-title > small,\n.panel-title > .small,\n.panel-title > small > a,\n.panel-title > .small > a {\n color: inherit;\n}\n.panel-footer {\n padding: 10px 15px;\n background-color: #f5f5f5;\n border-top: 1px solid #ddd;\n border-bottom-right-radius: 3px;\n border-bottom-left-radius: 3px;\n}\n.panel > .list-group,\n.panel > .panel-collapse > .list-group {\n margin-bottom: 0;\n}\n.panel > .list-group .list-group-item,\n.panel > .panel-collapse > .list-group .list-group-item {\n border-width: 1px 0;\n border-radius: 0;\n}\n.panel > .list-group:first-child .list-group-item:first-child,\n.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {\n border-top: 0;\n border-top-left-radius: 3px;\n border-top-right-radius: 3px;\n}\n.panel > .list-group:last-child .list-group-item:last-child,\n.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {\n border-bottom: 0;\n border-bottom-right-radius: 3px;\n border-bottom-left-radius: 3px;\n}\n.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n}\n.panel-heading + .list-group .list-group-item:first-child {\n border-top-width: 0;\n}\n.list-group + .panel-footer {\n border-top-width: 0;\n}\n.panel > .table,\n.panel > .table-responsive > .table,\n.panel > .panel-collapse > .table {\n margin-bottom: 0;\n}\n.panel > .table caption,\n.panel > .table-responsive > .table caption,\n.panel > .panel-collapse > .table caption {\n padding-right: 15px;\n padding-left: 15px;\n}\n.panel > .table:first-child,\n.panel > .table-responsive:first-child > .table:first-child {\n border-top-left-radius: 3px;\n border-top-right-radius: 3px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {\n border-top-left-radius: 3px;\n border-top-right-radius: 3px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,\n.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {\n border-top-left-radius: 3px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,\n.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {\n border-top-right-radius: 3px;\n}\n.panel > .table:last-child,\n.panel > .table-responsive:last-child > .table:last-child {\n border-bottom-right-radius: 3px;\n border-bottom-left-radius: 3px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {\n border-bottom-right-radius: 3px;\n border-bottom-left-radius: 3px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,\n.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {\n border-bottom-left-radius: 3px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,\n.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {\n border-bottom-right-radius: 3px;\n}\n.panel > .panel-body + .table,\n.panel > .panel-body + .table-responsive,\n.panel > .table + .panel-body,\n.panel > .table-responsive + .panel-body {\n border-top: 1px solid #ddd;\n}\n.panel > .table > tbody:first-child > tr:first-child th,\n.panel > .table > tbody:first-child > tr:first-child td {\n border-top: 0;\n}\n.panel > .table-bordered,\n.panel > .table-responsive > .table-bordered {\n border: 0;\n}\n.panel > .table-bordered > thead > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,\n.panel > .table-bordered > tbody > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,\n.panel > .table-bordered > tfoot > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,\n.panel > .table-bordered > thead > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,\n.panel > .table-bordered > tbody > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,\n.panel > .table-bordered > tfoot > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {\n border-left: 0;\n}\n.panel > .table-bordered > thead > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,\n.panel > .table-bordered > tbody > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,\n.panel > .table-bordered > tfoot > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,\n.panel > .table-bordered > thead > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,\n.panel > .table-bordered > tbody > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,\n.panel > .table-bordered > tfoot > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {\n border-right: 0;\n}\n.panel > .table-bordered > thead > tr:first-child > td,\n.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,\n.panel > .table-bordered > tbody > tr:first-child > td,\n.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,\n.panel > .table-bordered > thead > tr:first-child > th,\n.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,\n.panel > .table-bordered > tbody > tr:first-child > th,\n.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {\n border-bottom: 0;\n}\n.panel > .table-bordered > tbody > tr:last-child > td,\n.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,\n.panel > .table-bordered > tfoot > tr:last-child > td,\n.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,\n.panel > .table-bordered > tbody > tr:last-child > th,\n.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,\n.panel > .table-bordered > tfoot > tr:last-child > th,\n.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {\n border-bottom: 0;\n}\n.panel > .table-responsive {\n margin-bottom: 0;\n border: 0;\n}\n.panel-group {\n margin-bottom: 20px;\n}\n.panel-group .panel {\n margin-bottom: 0;\n border-radius: 4px;\n}\n.panel-group .panel + .panel {\n margin-top: 5px;\n}\n.panel-group .panel-heading {\n border-bottom: 0;\n}\n.panel-group .panel-heading + .panel-collapse > .panel-body,\n.panel-group .panel-heading + .panel-collapse > .list-group {\n border-top: 1px solid #ddd;\n}\n.panel-group .panel-footer {\n border-top: 0;\n}\n.panel-group .panel-footer + .panel-collapse .panel-body {\n border-bottom: 1px solid #ddd;\n}\n.panel-default {\n border-color: #ddd;\n}\n.panel-default > .panel-heading {\n color: #333333;\n background-color: #f5f5f5;\n border-color: #ddd;\n}\n.panel-default > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #ddd;\n}\n.panel-default > .panel-heading .badge {\n color: #f5f5f5;\n background-color: #333333;\n}\n.panel-default > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #ddd;\n}\n.panel-primary {\n border-color: #337ab7;\n}\n.panel-primary > .panel-heading {\n color: #fff;\n background-color: #337ab7;\n border-color: #337ab7;\n}\n.panel-primary > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #337ab7;\n}\n.panel-primary > .panel-heading .badge {\n color: #337ab7;\n background-color: #fff;\n}\n.panel-primary > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #337ab7;\n}\n.panel-success {\n border-color: #d6e9c6;\n}\n.panel-success > .panel-heading {\n color: #3c763d;\n background-color: #dff0d8;\n border-color: #d6e9c6;\n}\n.panel-success > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #d6e9c6;\n}\n.panel-success > .panel-heading .badge {\n color: #dff0d8;\n background-color: #3c763d;\n}\n.panel-success > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #d6e9c6;\n}\n.panel-info {\n border-color: #bce8f1;\n}\n.panel-info > .panel-heading {\n color: #31708f;\n background-color: #d9edf7;\n border-color: #bce8f1;\n}\n.panel-info > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #bce8f1;\n}\n.panel-info > .panel-heading .badge {\n color: #d9edf7;\n background-color: #31708f;\n}\n.panel-info > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #bce8f1;\n}\n.panel-warning {\n border-color: #faebcc;\n}\n.panel-warning > .panel-heading {\n color: #8a6d3b;\n background-color: #fcf8e3;\n border-color: #faebcc;\n}\n.panel-warning > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #faebcc;\n}\n.panel-warning > .panel-heading .badge {\n color: #fcf8e3;\n background-color: #8a6d3b;\n}\n.panel-warning > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #faebcc;\n}\n.panel-danger {\n border-color: #ebccd1;\n}\n.panel-danger > .panel-heading {\n color: #a94442;\n background-color: #f2dede;\n border-color: #ebccd1;\n}\n.panel-danger > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #ebccd1;\n}\n.panel-danger > .panel-heading .badge {\n color: #f2dede;\n background-color: #a94442;\n}\n.panel-danger > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #ebccd1;\n}\n.embed-responsive {\n position: relative;\n display: block;\n height: 0;\n padding: 0;\n overflow: hidden;\n}\n.embed-responsive .embed-responsive-item,\n.embed-responsive iframe,\n.embed-responsive embed,\n.embed-responsive object,\n.embed-responsive video {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n width: 100%;\n height: 100%;\n border: 0;\n}\n.embed-responsive-16by9 {\n padding-bottom: 56.25%;\n}\n.embed-responsive-4by3 {\n padding-bottom: 75%;\n}\n.well {\n min-height: 20px;\n padding: 19px;\n margin-bottom: 20px;\n background-color: #f5f5f5;\n border: 1px solid #e3e3e3;\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);\n}\n.well blockquote {\n border-color: #ddd;\n border-color: rgba(0, 0, 0, 0.15);\n}\n.well-lg {\n padding: 24px;\n border-radius: 6px;\n}\n.well-sm {\n padding: 9px;\n border-radius: 3px;\n}\n.close {\n float: right;\n font-size: 21px;\n font-weight: bold;\n line-height: 1;\n color: #000;\n text-shadow: 0 1px 0 #fff;\n filter: alpha(opacity=20);\n opacity: 0.2;\n}\n.close:hover,\n.close:focus {\n color: #000;\n text-decoration: none;\n cursor: pointer;\n filter: alpha(opacity=50);\n opacity: 0.5;\n}\nbutton.close {\n padding: 0;\n cursor: pointer;\n background: transparent;\n border: 0;\n -webkit-appearance: none;\n appearance: none;\n}\n.modal-open {\n overflow: hidden;\n}\n.modal {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1050;\n display: none;\n overflow: hidden;\n -webkit-overflow-scrolling: touch;\n outline: 0;\n}\n.modal.fade .modal-dialog {\n -webkit-transform: translate(0, -25%);\n -ms-transform: translate(0, -25%);\n -o-transform: translate(0, -25%);\n transform: translate(0, -25%);\n -webkit-transition: -webkit-transform 0.3s ease-out;\n -moz-transition: -moz-transform 0.3s ease-out;\n -o-transition: -o-transform 0.3s ease-out;\n transition: transform 0.3s ease-out;\n}\n.modal.in .modal-dialog {\n -webkit-transform: translate(0, 0);\n -ms-transform: translate(0, 0);\n -o-transform: translate(0, 0);\n transform: translate(0, 0);\n}\n.modal-open .modal {\n overflow-x: hidden;\n overflow-y: auto;\n}\n.modal-dialog {\n position: relative;\n width: auto;\n margin: 10px;\n}\n.modal-content {\n position: relative;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid #999;\n border: 1px solid rgba(0, 0, 0, 0.2);\n border-radius: 6px;\n -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\n box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\n outline: 0;\n}\n.modal-backdrop {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1040;\n background-color: #000;\n}\n.modal-backdrop.fade {\n filter: alpha(opacity=0);\n opacity: 0;\n}\n.modal-backdrop.in {\n filter: alpha(opacity=50);\n opacity: 0.5;\n}\n.modal-header {\n padding: 15px;\n border-bottom: 1px solid #e5e5e5;\n}\n.modal-header .close {\n margin-top: -2px;\n}\n.modal-title {\n margin: 0;\n line-height: 1.42857143;\n}\n.modal-body {\n position: relative;\n padding: 15px;\n}\n.modal-footer {\n padding: 15px;\n text-align: right;\n border-top: 1px solid #e5e5e5;\n}\n.modal-footer .btn + .btn {\n margin-bottom: 0;\n margin-left: 5px;\n}\n.modal-footer .btn-group .btn + .btn {\n margin-left: -1px;\n}\n.modal-footer .btn-block + .btn-block {\n margin-left: 0;\n}\n.modal-scrollbar-measure {\n position: absolute;\n top: -9999px;\n width: 50px;\n height: 50px;\n overflow: scroll;\n}\n@media (min-width: 768px) {\n .modal-dialog {\n width: 600px;\n margin: 30px auto;\n }\n .modal-content {\n -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);\n box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);\n }\n .modal-sm {\n width: 300px;\n }\n}\n@media (min-width: 992px) {\n .modal-lg {\n width: 900px;\n }\n}\n.tooltip {\n position: absolute;\n z-index: 1070;\n display: block;\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n font-style: normal;\n font-weight: 400;\n line-height: 1.42857143;\n line-break: auto;\n text-align: left;\n text-align: start;\n text-decoration: none;\n text-shadow: none;\n text-transform: none;\n letter-spacing: normal;\n word-break: normal;\n word-spacing: normal;\n word-wrap: normal;\n white-space: normal;\n font-size: 12px;\n filter: alpha(opacity=0);\n opacity: 0;\n}\n.tooltip.in {\n filter: alpha(opacity=90);\n opacity: 0.9;\n}\n.tooltip.top {\n padding: 5px 0;\n margin-top: -3px;\n}\n.tooltip.right {\n padding: 0 5px;\n margin-left: 3px;\n}\n.tooltip.bottom {\n padding: 5px 0;\n margin-top: 3px;\n}\n.tooltip.left {\n padding: 0 5px;\n margin-left: -3px;\n}\n.tooltip.top .tooltip-arrow {\n bottom: 0;\n left: 50%;\n margin-left: -5px;\n border-width: 5px 5px 0;\n border-top-color: #000;\n}\n.tooltip.top-left .tooltip-arrow {\n right: 5px;\n bottom: 0;\n margin-bottom: -5px;\n border-width: 5px 5px 0;\n border-top-color: #000;\n}\n.tooltip.top-right .tooltip-arrow {\n bottom: 0;\n left: 5px;\n margin-bottom: -5px;\n border-width: 5px 5px 0;\n border-top-color: #000;\n}\n.tooltip.right .tooltip-arrow {\n top: 50%;\n left: 0;\n margin-top: -5px;\n border-width: 5px 5px 5px 0;\n border-right-color: #000;\n}\n.tooltip.left .tooltip-arrow {\n top: 50%;\n right: 0;\n margin-top: -5px;\n border-width: 5px 0 5px 5px;\n border-left-color: #000;\n}\n.tooltip.bottom .tooltip-arrow {\n top: 0;\n left: 50%;\n margin-left: -5px;\n border-width: 0 5px 5px;\n border-bottom-color: #000;\n}\n.tooltip.bottom-left .tooltip-arrow {\n top: 0;\n right: 5px;\n margin-top: -5px;\n border-width: 0 5px 5px;\n border-bottom-color: #000;\n}\n.tooltip.bottom-right .tooltip-arrow {\n top: 0;\n left: 5px;\n margin-top: -5px;\n border-width: 0 5px 5px;\n border-bottom-color: #000;\n}\n.tooltip-inner {\n max-width: 200px;\n padding: 3px 8px;\n color: #fff;\n text-align: center;\n background-color: #000;\n border-radius: 4px;\n}\n.tooltip-arrow {\n position: absolute;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n}\n.popover {\n position: absolute;\n top: 0;\n left: 0;\n z-index: 1060;\n display: none;\n max-width: 276px;\n padding: 1px;\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n font-style: normal;\n font-weight: 400;\n line-height: 1.42857143;\n line-break: auto;\n text-align: left;\n text-align: start;\n text-decoration: none;\n text-shadow: none;\n text-transform: none;\n letter-spacing: normal;\n word-break: normal;\n word-spacing: normal;\n word-wrap: normal;\n white-space: normal;\n font-size: 14px;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid #ccc;\n border: 1px solid rgba(0, 0, 0, 0.2);\n border-radius: 6px;\n -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);\n box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);\n}\n.popover.top {\n margin-top: -10px;\n}\n.popover.right {\n margin-left: 10px;\n}\n.popover.bottom {\n margin-top: 10px;\n}\n.popover.left {\n margin-left: -10px;\n}\n.popover > .arrow {\n border-width: 11px;\n}\n.popover > .arrow,\n.popover > .arrow:after {\n position: absolute;\n display: block;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n}\n.popover > .arrow:after {\n content: \"\";\n border-width: 10px;\n}\n.popover.top > .arrow {\n bottom: -11px;\n left: 50%;\n margin-left: -11px;\n border-top-color: #999999;\n border-top-color: rgba(0, 0, 0, 0.25);\n border-bottom-width: 0;\n}\n.popover.top > .arrow:after {\n bottom: 1px;\n margin-left: -10px;\n content: \" \";\n border-top-color: #fff;\n border-bottom-width: 0;\n}\n.popover.right > .arrow {\n top: 50%;\n left: -11px;\n margin-top: -11px;\n border-right-color: #999999;\n border-right-color: rgba(0, 0, 0, 0.25);\n border-left-width: 0;\n}\n.popover.right > .arrow:after {\n bottom: -10px;\n left: 1px;\n content: \" \";\n border-right-color: #fff;\n border-left-width: 0;\n}\n.popover.bottom > .arrow {\n top: -11px;\n left: 50%;\n margin-left: -11px;\n border-top-width: 0;\n border-bottom-color: #999999;\n border-bottom-color: rgba(0, 0, 0, 0.25);\n}\n.popover.bottom > .arrow:after {\n top: 1px;\n margin-left: -10px;\n content: \" \";\n border-top-width: 0;\n border-bottom-color: #fff;\n}\n.popover.left > .arrow {\n top: 50%;\n right: -11px;\n margin-top: -11px;\n border-right-width: 0;\n border-left-color: #999999;\n border-left-color: rgba(0, 0, 0, 0.25);\n}\n.popover.left > .arrow:after {\n right: 1px;\n bottom: -10px;\n content: \" \";\n border-right-width: 0;\n border-left-color: #fff;\n}\n.popover-title {\n padding: 8px 14px;\n margin: 0;\n font-size: 14px;\n background-color: #f7f7f7;\n border-bottom: 1px solid #ebebeb;\n border-radius: 5px 5px 0 0;\n}\n.popover-content {\n padding: 9px 14px;\n}\n.carousel {\n position: relative;\n}\n.carousel-inner {\n position: relative;\n width: 100%;\n overflow: hidden;\n}\n.carousel-inner > .item {\n position: relative;\n display: none;\n -webkit-transition: 0.6s ease-in-out left;\n -o-transition: 0.6s ease-in-out left;\n transition: 0.6s ease-in-out left;\n}\n.carousel-inner > .item > img,\n.carousel-inner > .item > a > img {\n line-height: 1;\n}\n@media all and (transform-3d), (-webkit-transform-3d) {\n .carousel-inner > .item {\n -webkit-transition: -webkit-transform 0.6s ease-in-out;\n -moz-transition: -moz-transform 0.6s ease-in-out;\n -o-transition: -o-transform 0.6s ease-in-out;\n transition: transform 0.6s ease-in-out;\n -webkit-backface-visibility: hidden;\n -moz-backface-visibility: hidden;\n backface-visibility: hidden;\n -webkit-perspective: 1000px;\n -moz-perspective: 1000px;\n perspective: 1000px;\n }\n .carousel-inner > .item.next,\n .carousel-inner > .item.active.right {\n -webkit-transform: translate3d(100%, 0, 0);\n transform: translate3d(100%, 0, 0);\n left: 0;\n }\n .carousel-inner > .item.prev,\n .carousel-inner > .item.active.left {\n -webkit-transform: translate3d(-100%, 0, 0);\n transform: translate3d(-100%, 0, 0);\n left: 0;\n }\n .carousel-inner > .item.next.left,\n .carousel-inner > .item.prev.right,\n .carousel-inner > .item.active {\n -webkit-transform: translate3d(0, 0, 0);\n transform: translate3d(0, 0, 0);\n left: 0;\n }\n}\n.carousel-inner > .active,\n.carousel-inner > .next,\n.carousel-inner > .prev {\n display: block;\n}\n.carousel-inner > .active {\n left: 0;\n}\n.carousel-inner > .next,\n.carousel-inner > .prev {\n position: absolute;\n top: 0;\n width: 100%;\n}\n.carousel-inner > .next {\n left: 100%;\n}\n.carousel-inner > .prev {\n left: -100%;\n}\n.carousel-inner > .next.left,\n.carousel-inner > .prev.right {\n left: 0;\n}\n.carousel-inner > .active.left {\n left: -100%;\n}\n.carousel-inner > .active.right {\n left: 100%;\n}\n.carousel-control {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n width: 15%;\n font-size: 20px;\n color: #fff;\n text-align: center;\n text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);\n background-color: rgba(0, 0, 0, 0);\n filter: alpha(opacity=50);\n opacity: 0.5;\n}\n.carousel-control.left {\n background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);\n background-repeat: repeat-x;\n}\n.carousel-control.right {\n right: 0;\n left: auto;\n background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);\n background-repeat: repeat-x;\n}\n.carousel-control:hover,\n.carousel-control:focus {\n color: #fff;\n text-decoration: none;\n outline: 0;\n filter: alpha(opacity=90);\n opacity: 0.9;\n}\n.carousel-control .icon-prev,\n.carousel-control .icon-next,\n.carousel-control .glyphicon-chevron-left,\n.carousel-control .glyphicon-chevron-right {\n position: absolute;\n top: 50%;\n z-index: 5;\n display: inline-block;\n margin-top: -10px;\n}\n.carousel-control .icon-prev,\n.carousel-control .glyphicon-chevron-left {\n left: 50%;\n margin-left: -10px;\n}\n.carousel-control .icon-next,\n.carousel-control .glyphicon-chevron-right {\n right: 50%;\n margin-right: -10px;\n}\n.carousel-control .icon-prev,\n.carousel-control .icon-next {\n width: 20px;\n height: 20px;\n font-family: serif;\n line-height: 1;\n}\n.carousel-control .icon-prev:before {\n content: \"\\2039\";\n}\n.carousel-control .icon-next:before {\n content: \"\\203a\";\n}\n.carousel-indicators {\n position: absolute;\n bottom: 10px;\n left: 50%;\n z-index: 15;\n width: 60%;\n padding-left: 0;\n margin-left: -30%;\n text-align: center;\n list-style: none;\n}\n.carousel-indicators li {\n display: inline-block;\n width: 10px;\n height: 10px;\n margin: 1px;\n text-indent: -999px;\n cursor: pointer;\n background-color: #000 \\9;\n background-color: rgba(0, 0, 0, 0);\n border: 1px solid #fff;\n border-radius: 10px;\n}\n.carousel-indicators .active {\n width: 12px;\n height: 12px;\n margin: 0;\n background-color: #fff;\n}\n.carousel-caption {\n position: absolute;\n right: 15%;\n bottom: 20px;\n left: 15%;\n z-index: 10;\n padding-top: 20px;\n padding-bottom: 20px;\n color: #fff;\n text-align: center;\n text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);\n}\n.carousel-caption .btn {\n text-shadow: none;\n}\n@media screen and (min-width: 768px) {\n .carousel-control .glyphicon-chevron-left,\n .carousel-control .glyphicon-chevron-right,\n .carousel-control .icon-prev,\n .carousel-control .icon-next {\n width: 30px;\n height: 30px;\n margin-top: -10px;\n font-size: 30px;\n }\n .carousel-control .glyphicon-chevron-left,\n .carousel-control .icon-prev {\n margin-left: -10px;\n }\n .carousel-control .glyphicon-chevron-right,\n .carousel-control .icon-next {\n margin-right: -10px;\n }\n .carousel-caption {\n right: 20%;\n left: 20%;\n padding-bottom: 30px;\n }\n .carousel-indicators {\n bottom: 20px;\n }\n}\n.clearfix:before,\n.clearfix:after,\n.dl-horizontal dd:before,\n.dl-horizontal dd:after,\n.container:before,\n.container:after,\n.container-fluid:before,\n.container-fluid:after,\n.row:before,\n.row:after,\n.form-horizontal .form-group:before,\n.form-horizontal .form-group:after,\n.btn-toolbar:before,\n.btn-toolbar:after,\n.btn-group-vertical > .btn-group:before,\n.btn-group-vertical > .btn-group:after,\n.nav:before,\n.nav:after,\n.navbar:before,\n.navbar:after,\n.navbar-header:before,\n.navbar-header:after,\n.navbar-collapse:before,\n.navbar-collapse:after,\n.pager:before,\n.pager:after,\n.panel-body:before,\n.panel-body:after,\n.modal-header:before,\n.modal-header:after,\n.modal-footer:before,\n.modal-footer:after {\n display: table;\n content: \" \";\n}\n.clearfix:after,\n.dl-horizontal dd:after,\n.container:after,\n.container-fluid:after,\n.row:after,\n.form-horizontal .form-group:after,\n.btn-toolbar:after,\n.btn-group-vertical > .btn-group:after,\n.nav:after,\n.navbar:after,\n.navbar-header:after,\n.navbar-collapse:after,\n.pager:after,\n.panel-body:after,\n.modal-header:after,\n.modal-footer:after {\n clear: both;\n}\n.center-block {\n display: block;\n margin-right: auto;\n margin-left: auto;\n}\n.pull-right {\n float: right !important;\n}\n.pull-left {\n float: left !important;\n}\n.hide {\n display: none !important;\n}\n.show {\n display: block !important;\n}\n.invisible {\n visibility: hidden;\n}\n.text-hide {\n font: 0/0 a;\n color: transparent;\n text-shadow: none;\n background-color: transparent;\n border: 0;\n}\n.hidden {\n display: none !important;\n}\n.affix {\n position: fixed;\n}\n@-ms-viewport {\n width: device-width;\n}\n.visible-xs,\n.visible-sm,\n.visible-md,\n.visible-lg {\n display: none !important;\n}\n.visible-xs-block,\n.visible-xs-inline,\n.visible-xs-inline-block,\n.visible-sm-block,\n.visible-sm-inline,\n.visible-sm-inline-block,\n.visible-md-block,\n.visible-md-inline,\n.visible-md-inline-block,\n.visible-lg-block,\n.visible-lg-inline,\n.visible-lg-inline-block {\n display: none !important;\n}\n@media (max-width: 767px) {\n .visible-xs {\n display: block !important;\n }\n table.visible-xs {\n display: table !important;\n }\n tr.visible-xs {\n display: table-row !important;\n }\n th.visible-xs,\n td.visible-xs {\n display: table-cell !important;\n }\n}\n@media (max-width: 767px) {\n .visible-xs-block {\n display: block !important;\n }\n}\n@media (max-width: 767px) {\n .visible-xs-inline {\n display: inline !important;\n }\n}\n@media (max-width: 767px) {\n .visible-xs-inline-block {\n display: inline-block !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .visible-sm {\n display: block !important;\n }\n table.visible-sm {\n display: table !important;\n }\n tr.visible-sm {\n display: table-row !important;\n }\n th.visible-sm,\n td.visible-sm {\n display: table-cell !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .visible-sm-block {\n display: block !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .visible-sm-inline {\n display: inline !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .visible-sm-inline-block {\n display: inline-block !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .visible-md {\n display: block !important;\n }\n table.visible-md {\n display: table !important;\n }\n tr.visible-md {\n display: table-row !important;\n }\n th.visible-md,\n td.visible-md {\n display: table-cell !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .visible-md-block {\n display: block !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .visible-md-inline {\n display: inline !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .visible-md-inline-block {\n display: inline-block !important;\n }\n}\n@media (min-width: 1200px) {\n .visible-lg {\n display: block !important;\n }\n table.visible-lg {\n display: table !important;\n }\n tr.visible-lg {\n display: table-row !important;\n }\n th.visible-lg,\n td.visible-lg {\n display: table-cell !important;\n }\n}\n@media (min-width: 1200px) {\n .visible-lg-block {\n display: block !important;\n }\n}\n@media (min-width: 1200px) {\n .visible-lg-inline {\n display: inline !important;\n }\n}\n@media (min-width: 1200px) {\n .visible-lg-inline-block {\n display: inline-block !important;\n }\n}\n@media (max-width: 767px) {\n .hidden-xs {\n display: none !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .hidden-sm {\n display: none !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .hidden-md {\n display: none !important;\n }\n}\n@media (min-width: 1200px) {\n .hidden-lg {\n display: none !important;\n }\n}\n.visible-print {\n display: none !important;\n}\n@media print {\n .visible-print {\n display: block !important;\n }\n table.visible-print {\n display: table !important;\n }\n tr.visible-print {\n display: table-row !important;\n }\n th.visible-print,\n td.visible-print {\n display: table-cell !important;\n }\n}\n.visible-print-block {\n display: none !important;\n}\n@media print {\n .visible-print-block {\n display: block !important;\n }\n}\n.visible-print-inline {\n display: none !important;\n}\n@media print {\n .visible-print-inline {\n display: inline !important;\n }\n}\n.visible-print-inline-block {\n display: none !important;\n}\n@media print {\n .visible-print-inline-block {\n display: inline-block !important;\n }\n}\n@media print {\n .hidden-print {\n display: none !important;\n }\n}\n/*# sourceMappingURL=bootstrap.css.map */","// stylelint-disable\n\n/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */\n\n//\n// 1. Set default font family to sans-serif.\n// 2. Prevent iOS and IE text size adjust after device orientation change,\n// without disabling user zoom.\n//\n\nhtml {\n font-family: sans-serif; // 1\n -ms-text-size-adjust: 100%; // 2\n -webkit-text-size-adjust: 100%; // 2\n}\n\n//\n// Remove default margin.\n//\n\nbody {\n margin: 0;\n}\n\n// HTML5 display definitions\n// ==========================================================================\n\n//\n// Correct `block` display not defined for any HTML5 element in IE 8/9.\n// Correct `block` display not defined for `details` or `summary` in IE 10/11\n// and Firefox.\n// Correct `block` display not defined for `main` in IE 11.\n//\n\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nmenu,\nnav,\nsection,\nsummary {\n display: block;\n}\n\n//\n// 1. Correct `inline-block` display not defined in IE 8/9.\n// 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.\n//\n\naudio,\ncanvas,\nprogress,\nvideo {\n display: inline-block; // 1\n vertical-align: baseline; // 2\n}\n\n//\n// Prevent modern browsers from displaying `audio` without controls.\n// Remove excess height in iOS 5 devices.\n//\n\naudio:not([controls]) {\n display: none;\n height: 0;\n}\n\n//\n// Address `[hidden]` styling not present in IE 8/9/10.\n// Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.\n//\n\n[hidden],\ntemplate {\n display: none;\n}\n\n// Links\n// ==========================================================================\n\n//\n// Remove the gray background color from active links in IE 10.\n//\n\na {\n background-color: transparent;\n}\n\n//\n// Improve readability of focused elements when they are also in an\n// active/hover state.\n//\n\na:active,\na:hover {\n outline: 0;\n}\n\n// Text-level semantics\n// ==========================================================================\n\n//\n// 1. Remove the bottom border in Chrome 57- and Firefox 39-.\n// 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.\n//\n\nabbr[title] {\n border-bottom: none; // 1\n text-decoration: underline; // 2\n text-decoration: underline dotted; // 2\n}\n\n//\n// Address style set to `bolder` in Firefox 4+, Safari, and Chrome.\n//\n\nb,\nstrong {\n font-weight: bold;\n}\n\n//\n// Address styling not present in Safari and Chrome.\n//\n\ndfn {\n font-style: italic;\n}\n\n//\n// Address variable `h1` font-size and margin within `section` and `article`\n// contexts in Firefox 4+, Safari, and Chrome.\n//\n\nh1 {\n font-size: 2em;\n margin: 0.67em 0;\n}\n\n//\n// Address styling not present in IE 8/9.\n//\n\nmark {\n background: #ff0;\n color: #000;\n}\n\n//\n// Address inconsistent and variable font size in all browsers.\n//\n\nsmall {\n font-size: 80%;\n}\n\n//\n// Prevent `sub` and `sup` affecting `line-height` in all browsers.\n//\n\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\n\nsup {\n top: -0.5em;\n}\n\nsub {\n bottom: -0.25em;\n}\n\n// Embedded content\n// ==========================================================================\n\n//\n// Remove border when inside `a` element in IE 8/9/10.\n//\n\nimg {\n border: 0;\n}\n\n//\n// Correct overflow not hidden in IE 9/10/11.\n//\n\nsvg:not(:root) {\n overflow: hidden;\n}\n\n// Grouping content\n// ==========================================================================\n\n//\n// Address margin not present in IE 8/9 and Safari.\n//\n\nfigure {\n margin: 1em 40px;\n}\n\n//\n// Address differences between Firefox and other browsers.\n//\n\nhr {\n box-sizing: content-box;\n height: 0;\n}\n\n//\n// Contain overflow in all browsers.\n//\n\npre {\n overflow: auto;\n}\n\n//\n// Address odd `em`-unit font size rendering in all browsers.\n//\n\ncode,\nkbd,\npre,\nsamp {\n font-family: monospace, monospace;\n font-size: 1em;\n}\n\n// Forms\n// ==========================================================================\n\n//\n// Known limitation: by default, Chrome and Safari on OS X allow very limited\n// styling of `select`, unless a `border` property is set.\n//\n\n//\n// 1. Correct color not being inherited.\n// Known issue: affects color of disabled elements.\n// 2. Correct font properties not being inherited.\n// 3. Address margins set differently in Firefox 4+, Safari, and Chrome.\n//\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n color: inherit; // 1\n font: inherit; // 2\n margin: 0; // 3\n}\n\n//\n// Address `overflow` set to `hidden` in IE 8/9/10/11.\n//\n\nbutton {\n overflow: visible;\n}\n\n//\n// Address inconsistent `text-transform` inheritance for `button` and `select`.\n// All other form control elements do not inherit `text-transform` values.\n// Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.\n// Correct `select` style inheritance in Firefox.\n//\n\nbutton,\nselect {\n text-transform: none;\n}\n\n//\n// 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`\n// and `video` controls.\n// 2. Correct inability to style clickable `input` types in iOS.\n// 3. Improve usability and consistency of cursor style between image-type\n// `input` and others.\n//\n\nbutton,\nhtml input[type=\"button\"], // 1\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n -webkit-appearance: button; // 2\n cursor: pointer; // 3\n}\n\n//\n// Re-set default cursor for disabled elements.\n//\n\nbutton[disabled],\nhtml input[disabled] {\n cursor: default;\n}\n\n//\n// Remove inner padding and border in Firefox 4+.\n//\n\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner {\n border: 0;\n padding: 0;\n}\n\n//\n// Address Firefox 4+ setting `line-height` on `input` using `!important` in\n// the UA stylesheet.\n//\n\ninput {\n line-height: normal;\n}\n\n//\n// It's recommended that you don't attempt to style these elements.\n// Firefox's implementation doesn't respect box-sizing, padding, or width.\n//\n// 1. Address box sizing set to `content-box` in IE 8/9/10.\n// 2. Remove excess padding in IE 8/9/10.\n//\n\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n box-sizing: border-box; // 1\n padding: 0; // 2\n}\n\n//\n// Fix the cursor style for Chrome's increment/decrement buttons. For certain\n// `font-size` values of the `input`, it causes the cursor style of the\n// decrement button to change from `default` to `text`.\n//\n\ninput[type=\"number\"]::-webkit-inner-spin-button,\ninput[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n//\n// 1. Address `appearance` set to `searchfield` in Safari and Chrome.\n// 2. Address `box-sizing` set to `border-box` in Safari and Chrome.\n//\n\ninput[type=\"search\"] {\n -webkit-appearance: textfield; // 1\n box-sizing: content-box; //2\n}\n\n//\n// Remove inner padding and search cancel button in Safari and Chrome on OS X.\n// Safari (but not Chrome) clips the cancel button when the search input has\n// padding (and `textfield` appearance).\n//\n\ninput[type=\"search\"]::-webkit-search-cancel-button,\ninput[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n//\n// Define consistent border, margin, and padding.\n//\n\nfieldset {\n border: 1px solid #c0c0c0;\n margin: 0 2px;\n padding: 0.35em 0.625em 0.75em;\n}\n\n//\n// 1. Correct `color` not being inherited in IE 8/9/10/11.\n// 2. Remove padding so people aren't caught out if they zero out fieldsets.\n//\n\nlegend {\n border: 0; // 1\n padding: 0; // 2\n}\n\n//\n// Remove default vertical scrollbar in IE 8/9/10/11.\n//\n\ntextarea {\n overflow: auto;\n}\n\n//\n// Don't inherit the `font-weight` (applied by a rule above).\n// NOTE: the default cannot safely be changed in Chrome and Safari on OS X.\n//\n\noptgroup {\n font-weight: bold;\n}\n\n// Tables\n// ==========================================================================\n\n//\n// Remove most spacing between table cells.\n//\n\ntable {\n border-collapse: collapse;\n border-spacing: 0;\n}\n\ntd,\nth {\n padding: 0;\n}\n","// stylelint-disable declaration-no-important, selector-no-qualifying-type\n\n/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */\n\n// ==========================================================================\n// Print styles.\n// Inlined to avoid the additional HTTP request: h5bp.com/r\n// ==========================================================================\n\n@media print {\n *,\n *:before,\n *:after {\n color: #000 !important; // Black prints faster: h5bp.com/s\n text-shadow: none !important;\n background: transparent !important;\n box-shadow: none !important;\n }\n\n a,\n a:visited {\n text-decoration: underline;\n }\n\n a[href]:after {\n content: \" (\" attr(href) \")\";\n }\n\n abbr[title]:after {\n content: \" (\" attr(title) \")\";\n }\n\n // Don't show links that are fragment identifiers,\n // or use the `javascript:` pseudo protocol\n a[href^=\"#\"]:after,\n a[href^=\"javascript:\"]:after {\n content: \"\";\n }\n\n pre,\n blockquote {\n border: 1px solid #999;\n page-break-inside: avoid;\n }\n\n thead {\n display: table-header-group; // h5bp.com/t\n }\n\n tr,\n img {\n page-break-inside: avoid;\n }\n\n img {\n max-width: 100% !important;\n }\n\n p,\n h2,\n h3 {\n orphans: 3;\n widows: 3;\n }\n\n h2,\n h3 {\n page-break-after: avoid;\n }\n\n // Bootstrap specific changes start\n\n // Bootstrap components\n .navbar {\n display: none;\n }\n .btn,\n .dropup > .btn {\n > .caret {\n border-top-color: #000 !important;\n }\n }\n .label {\n border: 1px solid #000;\n }\n\n .table {\n border-collapse: collapse !important;\n\n td,\n th {\n background-color: #fff !important;\n }\n }\n .table-bordered {\n th,\n td {\n border: 1px solid #ddd !important;\n }\n }\n}\n","// stylelint-disable value-list-comma-newline-after, value-list-comma-space-after, indentation, declaration-colon-newline-after, font-family-no-missing-generic-family-keyword\n\n//\n// Glyphicons for Bootstrap\n//\n// Since icons are fonts, they can be placed anywhere text is placed and are\n// thus automatically sized to match the surrounding child. To use, create an\n// inline element with the appropriate classes, like so:\n//\n// Star\n\n// Import the fonts\n@font-face {\n font-family: \"Glyphicons Halflings\";\n src: url(\"@{icon-font-path}@{icon-font-name}.eot\");\n src: url(\"@{icon-font-path}@{icon-font-name}.eot?#iefix\") format(\"embedded-opentype\"),\n url(\"@{icon-font-path}@{icon-font-name}.woff2\") format(\"woff2\"),\n url(\"@{icon-font-path}@{icon-font-name}.woff\") format(\"woff\"),\n url(\"@{icon-font-path}@{icon-font-name}.ttf\") format(\"truetype\"),\n url(\"@{icon-font-path}@{icon-font-name}.svg#@{icon-font-svg-id}\") format(\"svg\");\n}\n\n// Catchall baseclass\n.glyphicon {\n position: relative;\n top: 1px;\n display: inline-block;\n font-family: \"Glyphicons Halflings\";\n font-style: normal;\n font-weight: 400;\n line-height: 1;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n// Individual icons\n.glyphicon-asterisk { &:before { content: \"\\002a\"; } }\n.glyphicon-plus { &:before { content: \"\\002b\"; } }\n.glyphicon-euro,\n.glyphicon-eur { &:before { content: \"\\20ac\"; } }\n.glyphicon-minus { &:before { content: \"\\2212\"; } }\n.glyphicon-cloud { &:before { content: \"\\2601\"; } }\n.glyphicon-envelope { &:before { content: \"\\2709\"; } }\n.glyphicon-pencil { &:before { content: \"\\270f\"; } }\n.glyphicon-glass { &:before { content: \"\\e001\"; } }\n.glyphicon-music { &:before { content: \"\\e002\"; } }\n.glyphicon-search { &:before { content: \"\\e003\"; } }\n.glyphicon-heart { &:before { content: \"\\e005\"; } }\n.glyphicon-star { &:before { content: \"\\e006\"; } }\n.glyphicon-star-empty { &:before { content: \"\\e007\"; } }\n.glyphicon-user { &:before { content: \"\\e008\"; } }\n.glyphicon-film { &:before { content: \"\\e009\"; } }\n.glyphicon-th-large { &:before { content: \"\\e010\"; } }\n.glyphicon-th { &:before { content: \"\\e011\"; } }\n.glyphicon-th-list { &:before { content: \"\\e012\"; } }\n.glyphicon-ok { &:before { content: \"\\e013\"; } }\n.glyphicon-remove { &:before { content: \"\\e014\"; } }\n.glyphicon-zoom-in { &:before { content: \"\\e015\"; } }\n.glyphicon-zoom-out { &:before { content: \"\\e016\"; } }\n.glyphicon-off { &:before { content: \"\\e017\"; } }\n.glyphicon-signal { &:before { content: \"\\e018\"; } }\n.glyphicon-cog { &:before { content: \"\\e019\"; } }\n.glyphicon-trash { &:before { content: \"\\e020\"; } }\n.glyphicon-home { &:before { content: \"\\e021\"; } }\n.glyphicon-file { &:before { content: \"\\e022\"; } }\n.glyphicon-time { &:before { content: \"\\e023\"; } }\n.glyphicon-road { &:before { content: \"\\e024\"; } }\n.glyphicon-download-alt { &:before { content: \"\\e025\"; } }\n.glyphicon-download { &:before { content: \"\\e026\"; } }\n.glyphicon-upload { &:before { content: \"\\e027\"; } }\n.glyphicon-inbox { &:before { content: \"\\e028\"; } }\n.glyphicon-play-circle { &:before { content: \"\\e029\"; } }\n.glyphicon-repeat { &:before { content: \"\\e030\"; } }\n.glyphicon-refresh { &:before { content: \"\\e031\"; } }\n.glyphicon-list-alt { &:before { content: \"\\e032\"; } }\n.glyphicon-lock { &:before { content: \"\\e033\"; } }\n.glyphicon-flag { &:before { content: \"\\e034\"; } }\n.glyphicon-headphones { &:before { content: \"\\e035\"; } }\n.glyphicon-volume-off { &:before { content: \"\\e036\"; } }\n.glyphicon-volume-down { &:before { content: \"\\e037\"; } }\n.glyphicon-volume-up { &:before { content: \"\\e038\"; } }\n.glyphicon-qrcode { &:before { content: \"\\e039\"; } }\n.glyphicon-barcode { &:before { content: \"\\e040\"; } }\n.glyphicon-tag { &:before { content: \"\\e041\"; } }\n.glyphicon-tags { &:before { content: \"\\e042\"; } }\n.glyphicon-book { &:before { content: \"\\e043\"; } }\n.glyphicon-bookmark { &:before { content: \"\\e044\"; } }\n.glyphicon-print { &:before { content: \"\\e045\"; } }\n.glyphicon-camera { &:before { content: \"\\e046\"; } }\n.glyphicon-font { &:before { content: \"\\e047\"; } }\n.glyphicon-bold { &:before { content: \"\\e048\"; } }\n.glyphicon-italic { &:before { content: \"\\e049\"; } }\n.glyphicon-text-height { &:before { content: \"\\e050\"; } }\n.glyphicon-text-width { &:before { content: \"\\e051\"; } }\n.glyphicon-align-left { &:before { content: \"\\e052\"; } }\n.glyphicon-align-center { &:before { content: \"\\e053\"; } }\n.glyphicon-align-right { &:before { content: \"\\e054\"; } }\n.glyphicon-align-justify { &:before { content: \"\\e055\"; } }\n.glyphicon-list { &:before { content: \"\\e056\"; } }\n.glyphicon-indent-left { &:before { content: \"\\e057\"; } }\n.glyphicon-indent-right { &:before { content: \"\\e058\"; } }\n.glyphicon-facetime-video { &:before { content: \"\\e059\"; } }\n.glyphicon-picture { &:before { content: \"\\e060\"; } }\n.glyphicon-map-marker { &:before { content: \"\\e062\"; } }\n.glyphicon-adjust { &:before { content: \"\\e063\"; } }\n.glyphicon-tint { &:before { content: \"\\e064\"; } }\n.glyphicon-edit { &:before { content: \"\\e065\"; } }\n.glyphicon-share { &:before { content: \"\\e066\"; } }\n.glyphicon-check { &:before { content: \"\\e067\"; } }\n.glyphicon-move { &:before { content: \"\\e068\"; } }\n.glyphicon-step-backward { &:before { content: \"\\e069\"; } }\n.glyphicon-fast-backward { &:before { content: \"\\e070\"; } }\n.glyphicon-backward { &:before { content: \"\\e071\"; } }\n.glyphicon-play { &:before { content: \"\\e072\"; } }\n.glyphicon-pause { &:before { content: \"\\e073\"; } }\n.glyphicon-stop { &:before { content: \"\\e074\"; } }\n.glyphicon-forward { &:before { content: \"\\e075\"; } }\n.glyphicon-fast-forward { &:before { content: \"\\e076\"; } }\n.glyphicon-step-forward { &:before { content: \"\\e077\"; } }\n.glyphicon-eject { &:before { content: \"\\e078\"; } }\n.glyphicon-chevron-left { &:before { content: \"\\e079\"; } }\n.glyphicon-chevron-right { &:before { content: \"\\e080\"; } }\n.glyphicon-plus-sign { &:before { content: \"\\e081\"; } }\n.glyphicon-minus-sign { &:before { content: \"\\e082\"; } }\n.glyphicon-remove-sign { &:before { content: \"\\e083\"; } }\n.glyphicon-ok-sign { &:before { content: \"\\e084\"; } }\n.glyphicon-question-sign { &:before { content: \"\\e085\"; } }\n.glyphicon-info-sign { &:before { content: \"\\e086\"; } }\n.glyphicon-screenshot { &:before { content: \"\\e087\"; } }\n.glyphicon-remove-circle { &:before { content: \"\\e088\"; } }\n.glyphicon-ok-circle { &:before { content: \"\\e089\"; } }\n.glyphicon-ban-circle { &:before { content: \"\\e090\"; } }\n.glyphicon-arrow-left { &:before { content: \"\\e091\"; } }\n.glyphicon-arrow-right { &:before { content: \"\\e092\"; } }\n.glyphicon-arrow-up { &:before { content: \"\\e093\"; } }\n.glyphicon-arrow-down { &:before { content: \"\\e094\"; } }\n.glyphicon-share-alt { &:before { content: \"\\e095\"; } }\n.glyphicon-resize-full { &:before { content: \"\\e096\"; } }\n.glyphicon-resize-small { &:before { content: \"\\e097\"; } }\n.glyphicon-exclamation-sign { &:before { content: \"\\e101\"; } }\n.glyphicon-gift { &:before { content: \"\\e102\"; } }\n.glyphicon-leaf { &:before { content: \"\\e103\"; } }\n.glyphicon-fire { &:before { content: \"\\e104\"; } }\n.glyphicon-eye-open { &:before { content: \"\\e105\"; } }\n.glyphicon-eye-close { &:before { content: \"\\e106\"; } }\n.glyphicon-warning-sign { &:before { content: \"\\e107\"; } }\n.glyphicon-plane { &:before { content: \"\\e108\"; } }\n.glyphicon-calendar { &:before { content: \"\\e109\"; } }\n.glyphicon-random { &:before { content: \"\\e110\"; } }\n.glyphicon-comment { &:before { content: \"\\e111\"; } }\n.glyphicon-magnet { &:before { content: \"\\e112\"; } }\n.glyphicon-chevron-up { &:before { content: \"\\e113\"; } }\n.glyphicon-chevron-down { &:before { content: \"\\e114\"; } }\n.glyphicon-retweet { &:before { content: \"\\e115\"; } }\n.glyphicon-shopping-cart { &:before { content: \"\\e116\"; } }\n.glyphicon-folder-close { &:before { content: \"\\e117\"; } }\n.glyphicon-folder-open { &:before { content: \"\\e118\"; } }\n.glyphicon-resize-vertical { &:before { content: \"\\e119\"; } }\n.glyphicon-resize-horizontal { &:before { content: \"\\e120\"; } }\n.glyphicon-hdd { &:before { content: \"\\e121\"; } }\n.glyphicon-bullhorn { &:before { content: \"\\e122\"; } }\n.glyphicon-bell { &:before { content: \"\\e123\"; } }\n.glyphicon-certificate { &:before { content: \"\\e124\"; } }\n.glyphicon-thumbs-up { &:before { content: \"\\e125\"; } }\n.glyphicon-thumbs-down { &:before { content: \"\\e126\"; } }\n.glyphicon-hand-right { &:before { content: \"\\e127\"; } }\n.glyphicon-hand-left { &:before { content: \"\\e128\"; } }\n.glyphicon-hand-up { &:before { content: \"\\e129\"; } }\n.glyphicon-hand-down { &:before { content: \"\\e130\"; } }\n.glyphicon-circle-arrow-right { &:before { content: \"\\e131\"; } }\n.glyphicon-circle-arrow-left { &:before { content: \"\\e132\"; } }\n.glyphicon-circle-arrow-up { &:before { content: \"\\e133\"; } }\n.glyphicon-circle-arrow-down { &:before { content: \"\\e134\"; } }\n.glyphicon-globe { &:before { content: \"\\e135\"; } }\n.glyphicon-wrench { &:before { content: \"\\e136\"; } }\n.glyphicon-tasks { &:before { content: \"\\e137\"; } }\n.glyphicon-filter { &:before { content: \"\\e138\"; } }\n.glyphicon-briefcase { &:before { content: \"\\e139\"; } }\n.glyphicon-fullscreen { &:before { content: \"\\e140\"; } }\n.glyphicon-dashboard { &:before { content: \"\\e141\"; } }\n.glyphicon-paperclip { &:before { content: \"\\e142\"; } }\n.glyphicon-heart-empty { &:before { content: \"\\e143\"; } }\n.glyphicon-link { &:before { content: \"\\e144\"; } }\n.glyphicon-phone { &:before { content: \"\\e145\"; } }\n.glyphicon-pushpin { &:before { content: \"\\e146\"; } }\n.glyphicon-usd { &:before { content: \"\\e148\"; } }\n.glyphicon-gbp { &:before { content: \"\\e149\"; } }\n.glyphicon-sort { &:before { content: \"\\e150\"; } }\n.glyphicon-sort-by-alphabet { &:before { content: \"\\e151\"; } }\n.glyphicon-sort-by-alphabet-alt { &:before { content: \"\\e152\"; } }\n.glyphicon-sort-by-order { &:before { content: \"\\e153\"; } }\n.glyphicon-sort-by-order-alt { &:before { content: \"\\e154\"; } }\n.glyphicon-sort-by-attributes { &:before { content: \"\\e155\"; } }\n.glyphicon-sort-by-attributes-alt { &:before { content: \"\\e156\"; } }\n.glyphicon-unchecked { &:before { content: \"\\e157\"; } }\n.glyphicon-expand { &:before { content: \"\\e158\"; } }\n.glyphicon-collapse-down { &:before { content: \"\\e159\"; } }\n.glyphicon-collapse-up { &:before { content: \"\\e160\"; } }\n.glyphicon-log-in { &:before { content: \"\\e161\"; } }\n.glyphicon-flash { &:before { content: \"\\e162\"; } }\n.glyphicon-log-out { &:before { content: \"\\e163\"; } }\n.glyphicon-new-window { &:before { content: \"\\e164\"; } }\n.glyphicon-record { &:before { content: \"\\e165\"; } }\n.glyphicon-save { &:before { content: \"\\e166\"; } }\n.glyphicon-open { &:before { content: \"\\e167\"; } }\n.glyphicon-saved { &:before { content: \"\\e168\"; } }\n.glyphicon-import { &:before { content: \"\\e169\"; } }\n.glyphicon-export { &:before { content: \"\\e170\"; } }\n.glyphicon-send { &:before { content: \"\\e171\"; } }\n.glyphicon-floppy-disk { &:before { content: \"\\e172\"; } }\n.glyphicon-floppy-saved { &:before { content: \"\\e173\"; } }\n.glyphicon-floppy-remove { &:before { content: \"\\e174\"; } }\n.glyphicon-floppy-save { &:before { content: \"\\e175\"; } }\n.glyphicon-floppy-open { &:before { content: \"\\e176\"; } }\n.glyphicon-credit-card { &:before { content: \"\\e177\"; } }\n.glyphicon-transfer { &:before { content: \"\\e178\"; } }\n.glyphicon-cutlery { &:before { content: \"\\e179\"; } }\n.glyphicon-header { &:before { content: \"\\e180\"; } }\n.glyphicon-compressed { &:before { content: \"\\e181\"; } }\n.glyphicon-earphone { &:before { content: \"\\e182\"; } }\n.glyphicon-phone-alt { &:before { content: \"\\e183\"; } }\n.glyphicon-tower { &:before { content: \"\\e184\"; } }\n.glyphicon-stats { &:before { content: \"\\e185\"; } }\n.glyphicon-sd-video { &:before { content: \"\\e186\"; } }\n.glyphicon-hd-video { &:before { content: \"\\e187\"; } }\n.glyphicon-subtitles { &:before { content: \"\\e188\"; } }\n.glyphicon-sound-stereo { &:before { content: \"\\e189\"; } }\n.glyphicon-sound-dolby { &:before { content: \"\\e190\"; } }\n.glyphicon-sound-5-1 { &:before { content: \"\\e191\"; } }\n.glyphicon-sound-6-1 { &:before { content: \"\\e192\"; } }\n.glyphicon-sound-7-1 { &:before { content: \"\\e193\"; } }\n.glyphicon-copyright-mark { &:before { content: \"\\e194\"; } }\n.glyphicon-registration-mark { &:before { content: \"\\e195\"; } }\n.glyphicon-cloud-download { &:before { content: \"\\e197\"; } }\n.glyphicon-cloud-upload { &:before { content: \"\\e198\"; } }\n.glyphicon-tree-conifer { &:before { content: \"\\e199\"; } }\n.glyphicon-tree-deciduous { &:before { content: \"\\e200\"; } }\n.glyphicon-cd { &:before { content: \"\\e201\"; } }\n.glyphicon-save-file { &:before { content: \"\\e202\"; } }\n.glyphicon-open-file { &:before { content: \"\\e203\"; } }\n.glyphicon-level-up { &:before { content: \"\\e204\"; } }\n.glyphicon-copy { &:before { content: \"\\e205\"; } }\n.glyphicon-paste { &:before { content: \"\\e206\"; } }\n// The following 2 Glyphicons are omitted for the time being because\n// they currently use Unicode codepoints that are outside the\n// Basic Multilingual Plane (BMP). Older buggy versions of WebKit can't handle\n// non-BMP codepoints in CSS string escapes, and thus can't display these two icons.\n// Notably, the bug affects some older versions of the Android Browser.\n// More info: https://github.com/twbs/bootstrap/issues/10106\n// .glyphicon-door { &:before { content: \"\\1f6aa\"; } }\n// .glyphicon-key { &:before { content: \"\\1f511\"; } }\n.glyphicon-alert { &:before { content: \"\\e209\"; } }\n.glyphicon-equalizer { &:before { content: \"\\e210\"; } }\n.glyphicon-king { &:before { content: \"\\e211\"; } }\n.glyphicon-queen { &:before { content: \"\\e212\"; } }\n.glyphicon-pawn { &:before { content: \"\\e213\"; } }\n.glyphicon-bishop { &:before { content: \"\\e214\"; } }\n.glyphicon-knight { &:before { content: \"\\e215\"; } }\n.glyphicon-baby-formula { &:before { content: \"\\e216\"; } }\n.glyphicon-tent { &:before { content: \"\\26fa\"; } }\n.glyphicon-blackboard { &:before { content: \"\\e218\"; } }\n.glyphicon-bed { &:before { content: \"\\e219\"; } }\n.glyphicon-apple { &:before { content: \"\\f8ff\"; } }\n.glyphicon-erase { &:before { content: \"\\e221\"; } }\n.glyphicon-hourglass { &:before { content: \"\\231b\"; } }\n.glyphicon-lamp { &:before { content: \"\\e223\"; } }\n.glyphicon-duplicate { &:before { content: \"\\e224\"; } }\n.glyphicon-piggy-bank { &:before { content: \"\\e225\"; } }\n.glyphicon-scissors { &:before { content: \"\\e226\"; } }\n.glyphicon-bitcoin { &:before { content: \"\\e227\"; } }\n.glyphicon-btc { &:before { content: \"\\e227\"; } }\n.glyphicon-xbt { &:before { content: \"\\e227\"; } }\n.glyphicon-yen { &:before { content: \"\\00a5\"; } }\n.glyphicon-jpy { &:before { content: \"\\00a5\"; } }\n.glyphicon-ruble { &:before { content: \"\\20bd\"; } }\n.glyphicon-rub { &:before { content: \"\\20bd\"; } }\n.glyphicon-scale { &:before { content: \"\\e230\"; } }\n.glyphicon-ice-lolly { &:before { content: \"\\e231\"; } }\n.glyphicon-ice-lolly-tasted { &:before { content: \"\\e232\"; } }\n.glyphicon-education { &:before { content: \"\\e233\"; } }\n.glyphicon-option-horizontal { &:before { content: \"\\e234\"; } }\n.glyphicon-option-vertical { &:before { content: \"\\e235\"; } }\n.glyphicon-menu-hamburger { &:before { content: \"\\e236\"; } }\n.glyphicon-modal-window { &:before { content: \"\\e237\"; } }\n.glyphicon-oil { &:before { content: \"\\e238\"; } }\n.glyphicon-grain { &:before { content: \"\\e239\"; } }\n.glyphicon-sunglasses { &:before { content: \"\\e240\"; } }\n.glyphicon-text-size { &:before { content: \"\\e241\"; } }\n.glyphicon-text-color { &:before { content: \"\\e242\"; } }\n.glyphicon-text-background { &:before { content: \"\\e243\"; } }\n.glyphicon-object-align-top { &:before { content: \"\\e244\"; } }\n.glyphicon-object-align-bottom { &:before { content: \"\\e245\"; } }\n.glyphicon-object-align-horizontal{ &:before { content: \"\\e246\"; } }\n.glyphicon-object-align-left { &:before { content: \"\\e247\"; } }\n.glyphicon-object-align-vertical { &:before { content: \"\\e248\"; } }\n.glyphicon-object-align-right { &:before { content: \"\\e249\"; } }\n.glyphicon-triangle-right { &:before { content: \"\\e250\"; } }\n.glyphicon-triangle-left { &:before { content: \"\\e251\"; } }\n.glyphicon-triangle-bottom { &:before { content: \"\\e252\"; } }\n.glyphicon-triangle-top { &:before { content: \"\\e253\"; } }\n.glyphicon-console { &:before { content: \"\\e254\"; } }\n.glyphicon-superscript { &:before { content: \"\\e255\"; } }\n.glyphicon-subscript { &:before { content: \"\\e256\"; } }\n.glyphicon-menu-left { &:before { content: \"\\e257\"; } }\n.glyphicon-menu-right { &:before { content: \"\\e258\"; } }\n.glyphicon-menu-down { &:before { content: \"\\e259\"; } }\n.glyphicon-menu-up { &:before { content: \"\\e260\"; } }\n","//\n// Scaffolding\n// --------------------------------------------------\n\n\n// Reset the box-sizing\n//\n// Heads up! This reset may cause conflicts with some third-party widgets.\n// For recommendations on resolving such conflicts, see\n// https://getbootstrap.com/docs/3.4/getting-started/#third-box-sizing\n* {\n .box-sizing(border-box);\n}\n*:before,\n*:after {\n .box-sizing(border-box);\n}\n\n\n// Body reset\n\nhtml {\n font-size: 10px;\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n}\n\nbody {\n font-family: @font-family-base;\n font-size: @font-size-base;\n line-height: @line-height-base;\n color: @text-color;\n background-color: @body-bg;\n}\n\n// Reset fonts for relevant elements\ninput,\nbutton,\nselect,\ntextarea {\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\n\n// Links\n\na {\n color: @link-color;\n text-decoration: none;\n\n &:hover,\n &:focus {\n color: @link-hover-color;\n text-decoration: @link-hover-decoration;\n }\n\n &:focus {\n .tab-focus();\n }\n}\n\n\n// Figures\n//\n// We reset this here because previously Normalize had no `figure` margins. This\n// ensures we don't break anyone's use of the element.\n\nfigure {\n margin: 0;\n}\n\n\n// Images\n\nimg {\n vertical-align: middle;\n}\n\n// Responsive images (ensure images don't scale beyond their parents)\n.img-responsive {\n .img-responsive();\n}\n\n// Rounded corners\n.img-rounded {\n border-radius: @border-radius-large;\n}\n\n// Image thumbnails\n//\n// Heads up! This is mixin-ed into thumbnails.less for `.thumbnail`.\n.img-thumbnail {\n padding: @thumbnail-padding;\n line-height: @line-height-base;\n background-color: @thumbnail-bg;\n border: 1px solid @thumbnail-border;\n border-radius: @thumbnail-border-radius;\n .transition(all .2s ease-in-out);\n\n // Keep them at most 100% wide\n .img-responsive(inline-block);\n}\n\n// Perfect circle\n.img-circle {\n border-radius: 50%; // set radius in percents\n}\n\n\n// Horizontal rules\n\nhr {\n margin-top: @line-height-computed;\n margin-bottom: @line-height-computed;\n border: 0;\n border-top: 1px solid @hr-border;\n}\n\n\n// Only display content to screen readers\n//\n// See: https://a11yproject.com/posts/how-to-hide-content\n\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n border: 0;\n}\n\n// Use in conjunction with .sr-only to only display content when it's focused.\n// Useful for \"Skip to main content\" links; see https://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1\n// Credit: HTML5 Boilerplate\n\n.sr-only-focusable {\n &:active,\n &:focus {\n position: static;\n width: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n clip: auto;\n }\n}\n\n\n// iOS \"clickable elements\" fix for role=\"button\"\n//\n// Fixes \"clickability\" issue (and more generally, the firing of events such as focus as well)\n// for traditionally non-focusable elements with role=\"button\"\n// see https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile\n\n[role=\"button\"] {\n cursor: pointer;\n}\n","// stylelint-disable indentation, property-no-vendor-prefix, selector-no-vendor-prefix\n\n// Vendor Prefixes\n//\n// All vendor mixins are deprecated as of v3.2.0 due to the introduction of\n// Autoprefixer in our Gruntfile. They have been removed in v4.\n\n// - Animations\n// - Backface visibility\n// - Box shadow\n// - Box sizing\n// - Content columns\n// - Hyphens\n// - Placeholder text\n// - Transformations\n// - Transitions\n// - User Select\n\n\n// Animations\n.animation(@animation) {\n -webkit-animation: @animation;\n -o-animation: @animation;\n animation: @animation;\n}\n.animation-name(@name) {\n -webkit-animation-name: @name;\n animation-name: @name;\n}\n.animation-duration(@duration) {\n -webkit-animation-duration: @duration;\n animation-duration: @duration;\n}\n.animation-timing-function(@timing-function) {\n -webkit-animation-timing-function: @timing-function;\n animation-timing-function: @timing-function;\n}\n.animation-delay(@delay) {\n -webkit-animation-delay: @delay;\n animation-delay: @delay;\n}\n.animation-iteration-count(@iteration-count) {\n -webkit-animation-iteration-count: @iteration-count;\n animation-iteration-count: @iteration-count;\n}\n.animation-direction(@direction) {\n -webkit-animation-direction: @direction;\n animation-direction: @direction;\n}\n.animation-fill-mode(@fill-mode) {\n -webkit-animation-fill-mode: @fill-mode;\n animation-fill-mode: @fill-mode;\n}\n\n// Backface visibility\n// Prevent browsers from flickering when using CSS 3D transforms.\n// Default value is `visible`, but can be changed to `hidden`\n\n.backface-visibility(@visibility) {\n -webkit-backface-visibility: @visibility;\n -moz-backface-visibility: @visibility;\n backface-visibility: @visibility;\n}\n\n// Drop shadows\n//\n// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's\n// supported browsers that have box shadow capabilities now support it.\n\n.box-shadow(@shadow) {\n -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1\n box-shadow: @shadow;\n}\n\n// Box sizing\n.box-sizing(@boxmodel) {\n -webkit-box-sizing: @boxmodel;\n -moz-box-sizing: @boxmodel;\n box-sizing: @boxmodel;\n}\n\n// CSS3 Content Columns\n.content-columns(@column-count; @column-gap: @grid-gutter-width) {\n -webkit-column-count: @column-count;\n -moz-column-count: @column-count;\n column-count: @column-count;\n -webkit-column-gap: @column-gap;\n -moz-column-gap: @column-gap;\n column-gap: @column-gap;\n}\n\n// Optional hyphenation\n.hyphens(@mode: auto) {\n -webkit-hyphens: @mode;\n -moz-hyphens: @mode;\n -ms-hyphens: @mode; // IE10+\n -o-hyphens: @mode;\n hyphens: @mode;\n word-wrap: break-word;\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n // Firefox\n &::-moz-placeholder {\n color: @color;\n opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526\n }\n &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+\n &::-webkit-input-placeholder { color: @color; } // Safari and Chrome\n}\n\n// Transformations\n.scale(@ratio) {\n -webkit-transform: scale(@ratio);\n -ms-transform: scale(@ratio); // IE9 only\n -o-transform: scale(@ratio);\n transform: scale(@ratio);\n}\n.scale(@ratioX; @ratioY) {\n -webkit-transform: scale(@ratioX, @ratioY);\n -ms-transform: scale(@ratioX, @ratioY); // IE9 only\n -o-transform: scale(@ratioX, @ratioY);\n transform: scale(@ratioX, @ratioY);\n}\n.scaleX(@ratio) {\n -webkit-transform: scaleX(@ratio);\n -ms-transform: scaleX(@ratio); // IE9 only\n -o-transform: scaleX(@ratio);\n transform: scaleX(@ratio);\n}\n.scaleY(@ratio) {\n -webkit-transform: scaleY(@ratio);\n -ms-transform: scaleY(@ratio); // IE9 only\n -o-transform: scaleY(@ratio);\n transform: scaleY(@ratio);\n}\n.skew(@x; @y) {\n -webkit-transform: skewX(@x) skewY(@y);\n -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+\n -o-transform: skewX(@x) skewY(@y);\n transform: skewX(@x) skewY(@y);\n}\n.translate(@x; @y) {\n -webkit-transform: translate(@x, @y);\n -ms-transform: translate(@x, @y); // IE9 only\n -o-transform: translate(@x, @y);\n transform: translate(@x, @y);\n}\n.translate3d(@x; @y; @z) {\n -webkit-transform: translate3d(@x, @y, @z);\n transform: translate3d(@x, @y, @z);\n}\n.rotate(@degrees) {\n -webkit-transform: rotate(@degrees);\n -ms-transform: rotate(@degrees); // IE9 only\n -o-transform: rotate(@degrees);\n transform: rotate(@degrees);\n}\n.rotateX(@degrees) {\n -webkit-transform: rotateX(@degrees);\n -ms-transform: rotateX(@degrees); // IE9 only\n -o-transform: rotateX(@degrees);\n transform: rotateX(@degrees);\n}\n.rotateY(@degrees) {\n -webkit-transform: rotateY(@degrees);\n -ms-transform: rotateY(@degrees); // IE9 only\n -o-transform: rotateY(@degrees);\n transform: rotateY(@degrees);\n}\n.perspective(@perspective) {\n -webkit-perspective: @perspective;\n -moz-perspective: @perspective;\n perspective: @perspective;\n}\n.perspective-origin(@perspective) {\n -webkit-perspective-origin: @perspective;\n -moz-perspective-origin: @perspective;\n perspective-origin: @perspective;\n}\n.transform-origin(@origin) {\n -webkit-transform-origin: @origin;\n -moz-transform-origin: @origin;\n -ms-transform-origin: @origin; // IE9 only\n transform-origin: @origin;\n}\n\n\n// Transitions\n\n.transition(@transition) {\n -webkit-transition: @transition;\n -o-transition: @transition;\n transition: @transition;\n}\n.transition-property(@transition-property) {\n -webkit-transition-property: @transition-property;\n transition-property: @transition-property;\n}\n.transition-delay(@transition-delay) {\n -webkit-transition-delay: @transition-delay;\n transition-delay: @transition-delay;\n}\n.transition-duration(@transition-duration) {\n -webkit-transition-duration: @transition-duration;\n transition-duration: @transition-duration;\n}\n.transition-timing-function(@timing-function) {\n -webkit-transition-timing-function: @timing-function;\n transition-timing-function: @timing-function;\n}\n.transition-transform(@transition) {\n -webkit-transition: -webkit-transform @transition;\n -moz-transition: -moz-transform @transition;\n -o-transition: -o-transform @transition;\n transition: transform @transition;\n}\n\n\n// User select\n// For selecting text on the page\n\n.user-select(@select) {\n -webkit-user-select: @select;\n -moz-user-select: @select;\n -ms-user-select: @select; // IE10+\n user-select: @select;\n}\n","// WebKit-style focus\n\n.tab-focus() {\n // WebKit-specific. Other browsers will keep their default outline style.\n // (Initially tried to also force default via `outline: initial`,\n // but that seems to erroneously remove the outline in Firefox altogether.)\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\n","// stylelint-disable media-feature-name-no-vendor-prefix, media-feature-parentheses-space-inside, media-feature-name-no-unknown, indentation, at-rule-name-space-after\n\n// Responsive image\n//\n// Keep images from scaling beyond the width of their parents.\n.img-responsive(@display: block) {\n display: @display;\n max-width: 100%; // Part 1: Set a maximum relative to the parent\n height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching\n}\n\n\n// Retina image\n//\n// Short retina mixin for setting background-image and -size. Note that the\n// spelling of `min--moz-device-pixel-ratio` is intentional.\n.img-retina(@file-1x; @file-2x; @width-1x; @height-1x) {\n background-image: url(\"@{file-1x}\");\n\n @media\n only screen and (-webkit-min-device-pixel-ratio: 2),\n only screen and ( min--moz-device-pixel-ratio: 2),\n only screen and ( -o-min-device-pixel-ratio: 2/1),\n only screen and ( min-device-pixel-ratio: 2),\n only screen and ( min-resolution: 192dpi),\n only screen and ( min-resolution: 2dppx) {\n background-image: url(\"@{file-2x}\");\n background-size: @width-1x @height-1x;\n }\n}\n","// stylelint-disable selector-list-comma-newline-after, selector-no-qualifying-type\n\n//\n// Typography\n// --------------------------------------------------\n\n\n// Headings\n// -------------------------\n\nh1, h2, h3, h4, h5, h6,\n.h1, .h2, .h3, .h4, .h5, .h6 {\n font-family: @headings-font-family;\n font-weight: @headings-font-weight;\n line-height: @headings-line-height;\n color: @headings-color;\n\n small,\n .small {\n font-weight: 400;\n line-height: 1;\n color: @headings-small-color;\n }\n}\n\nh1, .h1,\nh2, .h2,\nh3, .h3 {\n margin-top: @line-height-computed;\n margin-bottom: (@line-height-computed / 2);\n\n small,\n .small {\n font-size: 65%;\n }\n}\nh4, .h4,\nh5, .h5,\nh6, .h6 {\n margin-top: (@line-height-computed / 2);\n margin-bottom: (@line-height-computed / 2);\n\n small,\n .small {\n font-size: 75%;\n }\n}\n\nh1, .h1 { font-size: @font-size-h1; }\nh2, .h2 { font-size: @font-size-h2; }\nh3, .h3 { font-size: @font-size-h3; }\nh4, .h4 { font-size: @font-size-h4; }\nh5, .h5 { font-size: @font-size-h5; }\nh6, .h6 { font-size: @font-size-h6; }\n\n\n// Body text\n// -------------------------\n\np {\n margin: 0 0 (@line-height-computed / 2);\n}\n\n.lead {\n margin-bottom: @line-height-computed;\n font-size: floor((@font-size-base * 1.15));\n font-weight: 300;\n line-height: 1.4;\n\n @media (min-width: @screen-sm-min) {\n font-size: (@font-size-base * 1.5);\n }\n}\n\n\n// Emphasis & misc\n// -------------------------\n\n// Ex: (12px small font / 14px base font) * 100% = about 85%\nsmall,\n.small {\n font-size: floor((100% * @font-size-small / @font-size-base));\n}\n\nmark,\n.mark {\n padding: .2em;\n background-color: @state-warning-bg;\n}\n\n// Alignment\n.text-left { text-align: left; }\n.text-right { text-align: right; }\n.text-center { text-align: center; }\n.text-justify { text-align: justify; }\n.text-nowrap { white-space: nowrap; }\n\n// Transformation\n.text-lowercase { text-transform: lowercase; }\n.text-uppercase { text-transform: uppercase; }\n.text-capitalize { text-transform: capitalize; }\n\n// Contextual colors\n.text-muted {\n color: @text-muted;\n}\n.text-primary {\n .text-emphasis-variant(@brand-primary);\n}\n.text-success {\n .text-emphasis-variant(@state-success-text);\n}\n.text-info {\n .text-emphasis-variant(@state-info-text);\n}\n.text-warning {\n .text-emphasis-variant(@state-warning-text);\n}\n.text-danger {\n .text-emphasis-variant(@state-danger-text);\n}\n\n// Contextual backgrounds\n// For now we'll leave these alongside the text classes until v4 when we can\n// safely shift things around (per SemVer rules).\n.bg-primary {\n // Given the contrast here, this is the only class to have its color inverted\n // automatically.\n color: #fff;\n .bg-variant(@brand-primary);\n}\n.bg-success {\n .bg-variant(@state-success-bg);\n}\n.bg-info {\n .bg-variant(@state-info-bg);\n}\n.bg-warning {\n .bg-variant(@state-warning-bg);\n}\n.bg-danger {\n .bg-variant(@state-danger-bg);\n}\n\n\n// Page header\n// -------------------------\n\n.page-header {\n padding-bottom: ((@line-height-computed / 2) - 1);\n margin: (@line-height-computed * 2) 0 @line-height-computed;\n border-bottom: 1px solid @page-header-border-color;\n}\n\n\n// Lists\n// -------------------------\n\n// Unordered and Ordered lists\nul,\nol {\n margin-top: 0;\n margin-bottom: (@line-height-computed / 2);\n ul,\n ol {\n margin-bottom: 0;\n }\n}\n\n// List options\n\n// Unstyled keeps list items block level, just removes default browser padding and list-style\n.list-unstyled {\n padding-left: 0;\n list-style: none;\n}\n\n// Inline turns list items into inline-block\n.list-inline {\n .list-unstyled();\n margin-left: -5px;\n\n > li {\n display: inline-block;\n padding-right: 5px;\n padding-left: 5px;\n }\n}\n\n// Description Lists\ndl {\n margin-top: 0; // Remove browser default\n margin-bottom: @line-height-computed;\n}\ndt,\ndd {\n line-height: @line-height-base;\n}\ndt {\n font-weight: 700;\n}\ndd {\n margin-left: 0; // Undo browser default\n}\n\n// Horizontal description lists\n//\n// Defaults to being stacked without any of the below styles applied, until the\n// grid breakpoint is reached (default of ~768px).\n\n.dl-horizontal {\n dd {\n &:extend(.clearfix all); // Clear the floated `dt` if an empty `dd` is present\n }\n\n @media (min-width: @dl-horizontal-breakpoint) {\n dt {\n float: left;\n width: (@dl-horizontal-offset - 20);\n clear: left;\n text-align: right;\n .text-overflow();\n }\n dd {\n margin-left: @dl-horizontal-offset;\n }\n }\n}\n\n\n// Misc\n// -------------------------\n\n// Abbreviations and acronyms\n// Add data-* attribute to help out our tooltip plugin, per https://github.com/twbs/bootstrap/issues/5257\nabbr[title],\nabbr[data-original-title] {\n cursor: help;\n}\n\n.initialism {\n font-size: 90%;\n .text-uppercase();\n}\n\n// Blockquotes\nblockquote {\n padding: (@line-height-computed / 2) @line-height-computed;\n margin: 0 0 @line-height-computed;\n font-size: @blockquote-font-size;\n border-left: 5px solid @blockquote-border-color;\n\n p,\n ul,\n ol {\n &:last-child {\n margin-bottom: 0;\n }\n }\n\n // Note: Deprecated small and .small as of v3.1.0\n // Context: https://github.com/twbs/bootstrap/issues/11660\n footer,\n small,\n .small {\n display: block;\n font-size: 80%; // back to default font-size\n line-height: @line-height-base;\n color: @blockquote-small-color;\n\n &:before {\n content: \"\\2014 \\00A0\"; // em dash, nbsp\n }\n }\n}\n\n// Opposite alignment of blockquote\n//\n// Heads up: `blockquote.pull-right` has been deprecated as of v3.1.0.\n.blockquote-reverse,\nblockquote.pull-right {\n padding-right: 15px;\n padding-left: 0;\n text-align: right;\n border-right: 5px solid @blockquote-border-color;\n border-left: 0;\n\n // Account for citation\n footer,\n small,\n .small {\n &:before { content: \"\"; }\n &:after {\n content: \"\\00A0 \\2014\"; // nbsp, em dash\n }\n }\n}\n\n// Addresses\naddress {\n margin-bottom: @line-height-computed;\n font-style: normal;\n line-height: @line-height-base;\n}\n","// Typography\n\n.text-emphasis-variant(@color) {\n color: @color;\n a&:hover,\n a&:focus {\n color: darken(@color, 10%);\n }\n}\n","// Contextual backgrounds\n\n.bg-variant(@color) {\n background-color: @color;\n a&:hover,\n a&:focus {\n background-color: darken(@color, 10%);\n }\n}\n","// Text overflow\n// Requires inline-block or block for proper styling\n\n.text-overflow() {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n","//\n// Code (inline and block)\n// --------------------------------------------------\n\n\n// Inline and block code styles\ncode,\nkbd,\npre,\nsamp {\n font-family: @font-family-monospace;\n}\n\n// Inline code\ncode {\n padding: 2px 4px;\n font-size: 90%;\n color: @code-color;\n background-color: @code-bg;\n border-radius: @border-radius-base;\n}\n\n// User input typically entered via keyboard\nkbd {\n padding: 2px 4px;\n font-size: 90%;\n color: @kbd-color;\n background-color: @kbd-bg;\n border-radius: @border-radius-small;\n box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);\n\n kbd {\n padding: 0;\n font-size: 100%;\n font-weight: 700;\n box-shadow: none;\n }\n}\n\n// Blocks of code\npre {\n display: block;\n padding: ((@line-height-computed - 1) / 2);\n margin: 0 0 (@line-height-computed / 2);\n font-size: (@font-size-base - 1); // 14px to 13px\n line-height: @line-height-base;\n color: @pre-color;\n word-break: break-all;\n word-wrap: break-word;\n background-color: @pre-bg;\n border: 1px solid @pre-border-color;\n border-radius: @border-radius-base;\n\n // Account for some code outputs that place code tags in pre tags\n code {\n padding: 0;\n font-size: inherit;\n color: inherit;\n white-space: pre-wrap;\n background-color: transparent;\n border-radius: 0;\n }\n}\n\n// Enable scrollable blocks of code\n.pre-scrollable {\n max-height: @pre-scrollable-max-height;\n overflow-y: scroll;\n}\n","//\n// Grid system\n// --------------------------------------------------\n\n\n// Container widths\n//\n// Set the container width, and override it for fixed navbars in media queries.\n\n.container {\n .container-fixed();\n\n @media (min-width: @screen-sm-min) {\n width: @container-sm;\n }\n @media (min-width: @screen-md-min) {\n width: @container-md;\n }\n @media (min-width: @screen-lg-min) {\n width: @container-lg;\n }\n}\n\n\n// Fluid container\n//\n// Utilizes the mixin meant for fixed width containers, but without any defined\n// width for fluid, full width layouts.\n\n.container-fluid {\n .container-fixed();\n}\n\n\n// Row\n//\n// Rows contain and clear the floats of your columns.\n\n.row {\n .make-row();\n}\n\n.row-no-gutters {\n margin-right: 0;\n margin-left: 0;\n\n [class*=\"col-\"] {\n padding-right: 0;\n padding-left: 0;\n }\n}\n\n\n// Columns\n//\n// Common styles for small and large grid columns\n\n.make-grid-columns();\n\n\n// Extra small grid\n//\n// Columns, offsets, pushes, and pulls for extra small devices like\n// smartphones.\n\n.make-grid(xs);\n\n\n// Small grid\n//\n// Columns, offsets, pushes, and pulls for the small device range, from phones\n// to tablets.\n\n@media (min-width: @screen-sm-min) {\n .make-grid(sm);\n}\n\n\n// Medium grid\n//\n// Columns, offsets, pushes, and pulls for the desktop device range.\n\n@media (min-width: @screen-md-min) {\n .make-grid(md);\n}\n\n\n// Large grid\n//\n// Columns, offsets, pushes, and pulls for the large desktop device range.\n\n@media (min-width: @screen-lg-min) {\n .make-grid(lg);\n}\n","// Grid system\n//\n// Generate semantic grid columns with these mixins.\n\n// Centered container element\n.container-fixed(@gutter: @grid-gutter-width) {\n padding-right: ceil((@gutter / 2));\n padding-left: floor((@gutter / 2));\n margin-right: auto;\n margin-left: auto;\n &:extend(.clearfix all);\n}\n\n// Creates a wrapper for a series of columns\n.make-row(@gutter: @grid-gutter-width) {\n margin-right: floor((@gutter / -2));\n margin-left: ceil((@gutter / -2));\n &:extend(.clearfix all);\n}\n\n// Generate the extra small columns\n.make-xs-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n float: left;\n width: percentage((@columns / @grid-columns));\n min-height: 1px;\n padding-right: (@gutter / 2);\n padding-left: (@gutter / 2);\n}\n.make-xs-column-offset(@columns) {\n margin-left: percentage((@columns / @grid-columns));\n}\n.make-xs-column-push(@columns) {\n left: percentage((@columns / @grid-columns));\n}\n.make-xs-column-pull(@columns) {\n right: percentage((@columns / @grid-columns));\n}\n\n// Generate the small columns\n.make-sm-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-right: (@gutter / 2);\n padding-left: (@gutter / 2);\n\n @media (min-width: @screen-sm-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-offset(@columns) {\n @media (min-width: @screen-sm-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-push(@columns) {\n @media (min-width: @screen-sm-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-pull(@columns) {\n @media (min-width: @screen-sm-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n\n// Generate the medium columns\n.make-md-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-right: (@gutter / 2);\n padding-left: (@gutter / 2);\n\n @media (min-width: @screen-md-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-offset(@columns) {\n @media (min-width: @screen-md-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-push(@columns) {\n @media (min-width: @screen-md-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-pull(@columns) {\n @media (min-width: @screen-md-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n\n// Generate the large columns\n.make-lg-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-right: (@gutter / 2);\n padding-left: (@gutter / 2);\n\n @media (min-width: @screen-lg-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-offset(@columns) {\n @media (min-width: @screen-lg-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-push(@columns) {\n @media (min-width: @screen-lg-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-pull(@columns) {\n @media (min-width: @screen-lg-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n","// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `@grid-columns`.\n\n.make-grid-columns() {\n // Common styles for all sizes of grid columns, widths 1-12\n .col(@index) { // initial\n @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n .col((@index + 1), @item);\n }\n .col(@index, @list) when (@index =< @grid-columns) { // general; \"=<\" isn't a typo\n @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n .col((@index + 1), ~\"@{list}, @{item}\");\n }\n .col(@index, @list) when (@index > @grid-columns) { // terminal\n @{list} {\n position: relative;\n // Prevent columns from collapsing when empty\n min-height: 1px;\n // Inner gutter via padding\n padding-right: floor((@grid-gutter-width / 2));\n padding-left: ceil((@grid-gutter-width / 2));\n }\n }\n .col(1); // kickstart it\n}\n\n.float-grid-columns(@class) {\n .col(@index) { // initial\n @item: ~\".col-@{class}-@{index}\";\n .col((@index + 1), @item);\n }\n .col(@index, @list) when (@index =< @grid-columns) { // general\n @item: ~\".col-@{class}-@{index}\";\n .col((@index + 1), ~\"@{list}, @{item}\");\n }\n .col(@index, @list) when (@index > @grid-columns) { // terminal\n @{list} {\n float: left;\n }\n }\n .col(1); // kickstart it\n}\n\n.calc-grid-column(@index, @class, @type) when (@type = width) and (@index > 0) {\n .col-@{class}-@{index} {\n width: percentage((@index / @grid-columns));\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = push) and (@index > 0) {\n .col-@{class}-push-@{index} {\n left: percentage((@index / @grid-columns));\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = push) and (@index = 0) {\n .col-@{class}-push-0 {\n left: auto;\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index > 0) {\n .col-@{class}-pull-@{index} {\n right: percentage((@index / @grid-columns));\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index = 0) {\n .col-@{class}-pull-0 {\n right: auto;\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = offset) {\n .col-@{class}-offset-@{index} {\n margin-left: percentage((@index / @grid-columns));\n }\n}\n\n// Basic looping in LESS\n.loop-grid-columns(@index, @class, @type) when (@index >= 0) {\n .calc-grid-column(@index, @class, @type);\n // next iteration\n .loop-grid-columns((@index - 1), @class, @type);\n}\n\n// Create grid for specific class\n.make-grid(@class) {\n .float-grid-columns(@class);\n .loop-grid-columns(@grid-columns, @class, width);\n .loop-grid-columns(@grid-columns, @class, pull);\n .loop-grid-columns(@grid-columns, @class, push);\n .loop-grid-columns(@grid-columns, @class, offset);\n}\n","// stylelint-disable selector-max-type, selector-max-compound-selectors, selector-no-qualifying-type\n\n//\n// Tables\n// --------------------------------------------------\n\n\ntable {\n background-color: @table-bg;\n\n // Table cell sizing\n //\n // Reset default table behavior\n\n col[class*=\"col-\"] {\n position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)\n display: table-column;\n float: none;\n }\n\n td,\n th {\n &[class*=\"col-\"] {\n position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)\n display: table-cell;\n float: none;\n }\n }\n}\n\ncaption {\n padding-top: @table-cell-padding;\n padding-bottom: @table-cell-padding;\n color: @text-muted;\n text-align: left;\n}\n\nth {\n text-align: left;\n}\n\n\n// Baseline styles\n\n.table {\n width: 100%;\n max-width: 100%;\n margin-bottom: @line-height-computed;\n // Cells\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n padding: @table-cell-padding;\n line-height: @line-height-base;\n vertical-align: top;\n border-top: 1px solid @table-border-color;\n }\n }\n }\n // Bottom align for column headings\n > thead > tr > th {\n vertical-align: bottom;\n border-bottom: 2px solid @table-border-color;\n }\n // Remove top border from thead by default\n > caption + thead,\n > colgroup + thead,\n > thead:first-child {\n > tr:first-child {\n > th,\n > td {\n border-top: 0;\n }\n }\n }\n // Account for multiple tbody instances\n > tbody + tbody {\n border-top: 2px solid @table-border-color;\n }\n\n // Nesting\n .table {\n background-color: @body-bg;\n }\n}\n\n\n// Condensed table w/ half padding\n\n.table-condensed {\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n padding: @table-condensed-cell-padding;\n }\n }\n }\n}\n\n\n// Bordered version\n//\n// Add borders all around the table and between all the columns.\n\n.table-bordered {\n border: 1px solid @table-border-color;\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n border: 1px solid @table-border-color;\n }\n }\n }\n > thead > tr {\n > th,\n > td {\n border-bottom-width: 2px;\n }\n }\n}\n\n\n// Zebra-striping\n//\n// Default zebra-stripe styles (alternating gray and transparent backgrounds)\n\n.table-striped {\n > tbody > tr:nth-of-type(odd) {\n background-color: @table-bg-accent;\n }\n}\n\n\n// Hover effect\n//\n// Placed here since it has to come after the potential zebra striping\n\n.table-hover {\n > tbody > tr:hover {\n background-color: @table-bg-hover;\n }\n}\n\n\n// Table backgrounds\n//\n// Exact selectors below required to override `.table-striped` and prevent\n// inheritance to nested tables.\n\n// Generate the contextual variants\n.table-row-variant(active; @table-bg-active);\n.table-row-variant(success; @state-success-bg);\n.table-row-variant(info; @state-info-bg);\n.table-row-variant(warning; @state-warning-bg);\n.table-row-variant(danger; @state-danger-bg);\n\n\n// Responsive tables\n//\n// Wrap your tables in `.table-responsive` and we'll make them mobile friendly\n// by enabling horizontal scrolling. Only applies <768px. Everything above that\n// will display normally.\n\n.table-responsive {\n min-height: .01%; // Workaround for IE9 bug (see https://github.com/twbs/bootstrap/issues/14837)\n overflow-x: auto;\n\n @media screen and (max-width: @screen-xs-max) {\n width: 100%;\n margin-bottom: (@line-height-computed * .75);\n overflow-y: hidden;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n border: 1px solid @table-border-color;\n\n // Tighten up spacing\n > .table {\n margin-bottom: 0;\n\n // Ensure the content doesn't wrap\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n white-space: nowrap;\n }\n }\n }\n }\n\n // Special overrides for the bordered tables\n > .table-bordered {\n border: 0;\n\n // Nuke the appropriate borders so that the parent can handle them\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th:first-child,\n > td:first-child {\n border-left: 0;\n }\n > th:last-child,\n > td:last-child {\n border-right: 0;\n }\n }\n }\n\n // Only nuke the last row's bottom-border in `tbody` and `tfoot` since\n // chances are there will be only one `tr` in a `thead` and that would\n // remove the border altogether.\n > tbody,\n > tfoot {\n > tr:last-child {\n > th,\n > td {\n border-bottom: 0;\n }\n }\n }\n\n }\n }\n}\n","// Tables\n\n.table-row-variant(@state; @background) {\n // Exact selectors below required to override `.table-striped` and prevent\n // inheritance to nested tables.\n .table > thead > tr,\n .table > tbody > tr,\n .table > tfoot > tr {\n > td.@{state},\n > th.@{state},\n &.@{state} > td,\n &.@{state} > th {\n background-color: @background;\n }\n }\n\n // Hover states for `.table-hover`\n // Note: this is not available for cells or rows within `thead` or `tfoot`.\n .table-hover > tbody > tr {\n > td.@{state}:hover,\n > th.@{state}:hover,\n &.@{state}:hover > td,\n &:hover > .@{state},\n &.@{state}:hover > th {\n background-color: darken(@background, 5%);\n }\n }\n}\n","// stylelint-disable selector-no-qualifying-type, property-no-vendor-prefix, media-feature-name-no-vendor-prefix\n\n//\n// Forms\n// --------------------------------------------------\n\n\n// Normalize non-controls\n//\n// Restyle and baseline non-control form elements.\n\nfieldset {\n // Chrome and Firefox set a `min-width: min-content;` on fieldsets,\n // so we reset that to ensure it behaves more like a standard block element.\n // See https://github.com/twbs/bootstrap/issues/12359.\n min-width: 0;\n padding: 0;\n margin: 0;\n border: 0;\n}\n\nlegend {\n display: block;\n width: 100%;\n padding: 0;\n margin-bottom: @line-height-computed;\n font-size: (@font-size-base * 1.5);\n line-height: inherit;\n color: @legend-color;\n border: 0;\n border-bottom: 1px solid @legend-border-color;\n}\n\nlabel {\n display: inline-block;\n max-width: 100%; // Force IE8 to wrap long content (see https://github.com/twbs/bootstrap/issues/13141)\n margin-bottom: 5px;\n font-weight: 700;\n}\n\n\n// Normalize form controls\n//\n// While most of our form styles require extra classes, some basic normalization\n// is required to ensure optimum display with or without those classes to better\n// address browser inconsistencies.\n\ninput[type=\"search\"] {\n // Override content-box in Normalize (* isn't specific enough)\n .box-sizing(border-box);\n\n // Search inputs in iOS\n //\n // This overrides the extra rounded corners on search inputs in iOS so that our\n // `.form-control` class can properly style them. Note that this cannot simply\n // be added to `.form-control` as it's not specific enough. For details, see\n // https://github.com/twbs/bootstrap/issues/11586.\n -webkit-appearance: none;\n appearance: none;\n}\n\n// Position radios and checkboxes better\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n margin: 4px 0 0;\n margin-top: 1px \\9; // IE8-9\n line-height: normal;\n\n // Apply same disabled cursor tweak as for inputs\n // Some special care is needed because
                ", "
                " ], + col: [ 2, "", "
                " ], + tr: [ 2, "", "
                " ], + td: [ 3, "", "
                " ], + + _default: [ 0, "", "" ] +}; + +wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; +wrapMap.th = wrapMap.td; + +// Support: IE <=9 only +if ( !support.option ) { + wrapMap.optgroup = wrapMap.option = [ 1, "" ]; +} + + +function getAll( context, tag ) { + + // Support: IE <=9 - 11 only + // Use typeof to avoid zero-argument method invocation on host objects (#15151) + var ret; + + if ( typeof context.getElementsByTagName !== "undefined" ) { + ret = context.getElementsByTagName( tag || "*" ); + + } else if ( typeof context.querySelectorAll !== "undefined" ) { + ret = context.querySelectorAll( tag || "*" ); + + } else { + ret = []; + } + + if ( tag === undefined || tag && nodeName( context, tag ) ) { + return jQuery.merge( [ context ], ret ); + } + + return ret; +} + + +// Mark scripts as having already been evaluated +function setGlobalEval( elems, refElements ) { + var i = 0, + l = elems.length; + + for ( ; i < l; i++ ) { + dataPriv.set( + elems[ i ], + "globalEval", + !refElements || dataPriv.get( refElements[ i ], "globalEval" ) + ); + } +} + + +var rhtml = /<|&#?\w+;/; + +function buildFragment( elems, context, scripts, selection, ignored ) { + var elem, tmp, tag, wrap, attached, j, + fragment = context.createDocumentFragment(), + nodes = [], + i = 0, + l = elems.length; + + for ( ; i < l; i++ ) { + elem = elems[ i ]; + + if ( elem || elem === 0 ) { + + // Add nodes directly + if ( toType( elem ) === "object" ) { + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); + + // Convert non-html into a text node + } else if ( !rhtml.test( elem ) ) { + nodes.push( context.createTextNode( elem ) ); + + // Convert html into DOM nodes + } else { + tmp = tmp || fragment.appendChild( context.createElement( "div" ) ); + + // Deserialize a standard representation + tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase(); + wrap = wrapMap[ tag ] || wrapMap._default; + tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ]; + + // Descend through wrappers to the right content + j = wrap[ 0 ]; + while ( j-- ) { + tmp = tmp.lastChild; + } + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( nodes, tmp.childNodes ); + + // Remember the top-level container + tmp = fragment.firstChild; + + // Ensure the created nodes are orphaned (#12392) + tmp.textContent = ""; + } + } + } + + // Remove wrapper from fragment + fragment.textContent = ""; + + i = 0; + while ( ( elem = nodes[ i++ ] ) ) { + + // Skip elements already in the context collection (trac-4087) + if ( selection && jQuery.inArray( elem, selection ) > -1 ) { + if ( ignored ) { + ignored.push( elem ); + } + continue; + } + + attached = isAttached( elem ); + + // Append to fragment + tmp = getAll( fragment.appendChild( elem ), "script" ); + + // Preserve script evaluation history + if ( attached ) { + setGlobalEval( tmp ); + } + + // Capture executables + if ( scripts ) { + j = 0; + while ( ( elem = tmp[ j++ ] ) ) { + if ( rscriptType.test( elem.type || "" ) ) { + scripts.push( elem ); + } + } + } + } + + return fragment; +} + + +var + rkeyEvent = /^key/, + rmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/, + rtypenamespace = /^([^.]*)(?:\.(.+)|)/; + +function returnTrue() { + return true; +} + +function returnFalse() { + return false; +} + +// Support: IE <=9 - 11+ +// focus() and blur() are asynchronous, except when they are no-op. +// So expect focus to be synchronous when the element is already active, +// and blur to be synchronous when the element is not already active. +// (focus and blur are always synchronous in other supported browsers, +// this just defines when we can count on it). +function expectSync( elem, type ) { + return ( elem === safeActiveElement() ) === ( type === "focus" ); +} + +// Support: IE <=9 only +// Accessing document.activeElement can throw unexpectedly +// https://bugs.jquery.com/ticket/13393 +function safeActiveElement() { + try { + return document.activeElement; + } catch ( err ) { } +} + +function on( elem, types, selector, data, fn, one ) { + var origFn, type; + + // Types can be a map of types/handlers + if ( typeof types === "object" ) { + + // ( types-Object, selector, data ) + if ( typeof selector !== "string" ) { + + // ( types-Object, data ) + data = data || selector; + selector = undefined; + } + for ( type in types ) { + on( elem, type, selector, data, types[ type ], one ); + } + return elem; + } + + if ( data == null && fn == null ) { + + // ( types, fn ) + fn = selector; + data = selector = undefined; + } else if ( fn == null ) { + if ( typeof selector === "string" ) { + + // ( types, selector, fn ) + fn = data; + data = undefined; + } else { + + // ( types, data, fn ) + fn = data; + data = selector; + selector = undefined; + } + } + if ( fn === false ) { + fn = returnFalse; + } else if ( !fn ) { + return elem; + } + + if ( one === 1 ) { + origFn = fn; + fn = function( event ) { + + // Can use an empty set, since event contains the info + jQuery().off( event ); + return origFn.apply( this, arguments ); + }; + + // Use same guid so caller can remove using origFn + fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); + } + return elem.each( function() { + jQuery.event.add( this, types, fn, data, selector ); + } ); +} + +/* + * Helper functions for managing events -- not part of the public interface. + * Props to Dean Edwards' addEvent library for many of the ideas. + */ +jQuery.event = { + + global: {}, + + add: function( elem, types, handler, data, selector ) { + + var handleObjIn, eventHandle, tmp, + events, t, handleObj, + special, handlers, type, namespaces, origType, + elemData = dataPriv.get( elem ); + + // Only attach events to objects that accept data + if ( !acceptData( elem ) ) { + return; + } + + // Caller can pass in an object of custom data in lieu of the handler + if ( handler.handler ) { + handleObjIn = handler; + handler = handleObjIn.handler; + selector = handleObjIn.selector; + } + + // Ensure that invalid selectors throw exceptions at attach time + // Evaluate against documentElement in case elem is a non-element node (e.g., document) + if ( selector ) { + jQuery.find.matchesSelector( documentElement, selector ); + } + + // Make sure that the handler has a unique ID, used to find/remove it later + if ( !handler.guid ) { + handler.guid = jQuery.guid++; + } + + // Init the element's event structure and main handler, if this is the first + if ( !( events = elemData.events ) ) { + events = elemData.events = Object.create( null ); + } + if ( !( eventHandle = elemData.handle ) ) { + eventHandle = elemData.handle = function( e ) { + + // Discard the second event of a jQuery.event.trigger() and + // when an event is called after a page has unloaded + return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ? + jQuery.event.dispatch.apply( elem, arguments ) : undefined; + }; + } + + // Handle multiple events separated by a space + types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; + t = types.length; + while ( t-- ) { + tmp = rtypenamespace.exec( types[ t ] ) || []; + type = origType = tmp[ 1 ]; + namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); + + // There *must* be a type, no attaching namespace-only handlers + if ( !type ) { + continue; + } + + // If event changes its type, use the special event handlers for the changed type + special = jQuery.event.special[ type ] || {}; + + // If selector defined, determine special event api type, otherwise given type + type = ( selector ? special.delegateType : special.bindType ) || type; + + // Update special based on newly reset type + special = jQuery.event.special[ type ] || {}; + + // handleObj is passed to all event handlers + handleObj = jQuery.extend( { + type: type, + origType: origType, + data: data, + handler: handler, + guid: handler.guid, + selector: selector, + needsContext: selector && jQuery.expr.match.needsContext.test( selector ), + namespace: namespaces.join( "." ) + }, handleObjIn ); + + // Init the event handler queue if we're the first + if ( !( handlers = events[ type ] ) ) { + handlers = events[ type ] = []; + handlers.delegateCount = 0; + + // Only use addEventListener if the special events handler returns false + if ( !special.setup || + special.setup.call( elem, data, namespaces, eventHandle ) === false ) { + + if ( elem.addEventListener ) { + elem.addEventListener( type, eventHandle ); + } + } + } + + if ( special.add ) { + special.add.call( elem, handleObj ); + + if ( !handleObj.handler.guid ) { + handleObj.handler.guid = handler.guid; + } + } + + // Add to the element's handler list, delegates in front + if ( selector ) { + handlers.splice( handlers.delegateCount++, 0, handleObj ); + } else { + handlers.push( handleObj ); + } + + // Keep track of which events have ever been used, for event optimization + jQuery.event.global[ type ] = true; + } + + }, + + // Detach an event or set of events from an element + remove: function( elem, types, handler, selector, mappedTypes ) { + + var j, origCount, tmp, + events, t, handleObj, + special, handlers, type, namespaces, origType, + elemData = dataPriv.hasData( elem ) && dataPriv.get( elem ); + + if ( !elemData || !( events = elemData.events ) ) { + return; + } + + // Once for each type.namespace in types; type may be omitted + types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; + t = types.length; + while ( t-- ) { + tmp = rtypenamespace.exec( types[ t ] ) || []; + type = origType = tmp[ 1 ]; + namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); + + // Unbind all events (on this namespace, if provided) for the element + if ( !type ) { + for ( type in events ) { + jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); + } + continue; + } + + special = jQuery.event.special[ type ] || {}; + type = ( selector ? special.delegateType : special.bindType ) || type; + handlers = events[ type ] || []; + tmp = tmp[ 2 ] && + new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ); + + // Remove matching events + origCount = j = handlers.length; + while ( j-- ) { + handleObj = handlers[ j ]; + + if ( ( mappedTypes || origType === handleObj.origType ) && + ( !handler || handler.guid === handleObj.guid ) && + ( !tmp || tmp.test( handleObj.namespace ) ) && + ( !selector || selector === handleObj.selector || + selector === "**" && handleObj.selector ) ) { + handlers.splice( j, 1 ); + + if ( handleObj.selector ) { + handlers.delegateCount--; + } + if ( special.remove ) { + special.remove.call( elem, handleObj ); + } + } + } + + // Remove generic event handler if we removed something and no more handlers exist + // (avoids potential for endless recursion during removal of special event handlers) + if ( origCount && !handlers.length ) { + if ( !special.teardown || + special.teardown.call( elem, namespaces, elemData.handle ) === false ) { + + jQuery.removeEvent( elem, type, elemData.handle ); + } + + delete events[ type ]; + } + } + + // Remove data and the expando if it's no longer used + if ( jQuery.isEmptyObject( events ) ) { + dataPriv.remove( elem, "handle events" ); + } + }, + + dispatch: function( nativeEvent ) { + + var i, j, ret, matched, handleObj, handlerQueue, + args = new Array( arguments.length ), + + // Make a writable jQuery.Event from the native event object + event = jQuery.event.fix( nativeEvent ), + + handlers = ( + dataPriv.get( this, "events" ) || Object.create( null ) + )[ event.type ] || [], + special = jQuery.event.special[ event.type ] || {}; + + // Use the fix-ed jQuery.Event rather than the (read-only) native event + args[ 0 ] = event; + + for ( i = 1; i < arguments.length; i++ ) { + args[ i ] = arguments[ i ]; + } + + event.delegateTarget = this; + + // Call the preDispatch hook for the mapped type, and let it bail if desired + if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { + return; + } + + // Determine handlers + handlerQueue = jQuery.event.handlers.call( this, event, handlers ); + + // Run delegates first; they may want to stop propagation beneath us + i = 0; + while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) { + event.currentTarget = matched.elem; + + j = 0; + while ( ( handleObj = matched.handlers[ j++ ] ) && + !event.isImmediatePropagationStopped() ) { + + // If the event is namespaced, then each handler is only invoked if it is + // specially universal or its namespaces are a superset of the event's. + if ( !event.rnamespace || handleObj.namespace === false || + event.rnamespace.test( handleObj.namespace ) ) { + + event.handleObj = handleObj; + event.data = handleObj.data; + + ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle || + handleObj.handler ).apply( matched.elem, args ); + + if ( ret !== undefined ) { + if ( ( event.result = ret ) === false ) { + event.preventDefault(); + event.stopPropagation(); + } + } + } + } + } + + // Call the postDispatch hook for the mapped type + if ( special.postDispatch ) { + special.postDispatch.call( this, event ); + } + + return event.result; + }, + + handlers: function( event, handlers ) { + var i, handleObj, sel, matchedHandlers, matchedSelectors, + handlerQueue = [], + delegateCount = handlers.delegateCount, + cur = event.target; + + // Find delegate handlers + if ( delegateCount && + + // Support: IE <=9 + // Black-hole SVG instance trees (trac-13180) + cur.nodeType && + + // Support: Firefox <=42 + // Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861) + // https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click + // Support: IE 11 only + // ...but not arrow key "clicks" of radio inputs, which can have `button` -1 (gh-2343) + !( event.type === "click" && event.button >= 1 ) ) { + + for ( ; cur !== this; cur = cur.parentNode || this ) { + + // Don't check non-elements (#13208) + // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) + if ( cur.nodeType === 1 && !( event.type === "click" && cur.disabled === true ) ) { + matchedHandlers = []; + matchedSelectors = {}; + for ( i = 0; i < delegateCount; i++ ) { + handleObj = handlers[ i ]; + + // Don't conflict with Object.prototype properties (#13203) + sel = handleObj.selector + " "; + + if ( matchedSelectors[ sel ] === undefined ) { + matchedSelectors[ sel ] = handleObj.needsContext ? + jQuery( sel, this ).index( cur ) > -1 : + jQuery.find( sel, this, null, [ cur ] ).length; + } + if ( matchedSelectors[ sel ] ) { + matchedHandlers.push( handleObj ); + } + } + if ( matchedHandlers.length ) { + handlerQueue.push( { elem: cur, handlers: matchedHandlers } ); + } + } + } + } + + // Add the remaining (directly-bound) handlers + cur = this; + if ( delegateCount < handlers.length ) { + handlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } ); + } + + return handlerQueue; + }, + + addProp: function( name, hook ) { + Object.defineProperty( jQuery.Event.prototype, name, { + enumerable: true, + configurable: true, + + get: isFunction( hook ) ? + function() { + if ( this.originalEvent ) { + return hook( this.originalEvent ); + } + } : + function() { + if ( this.originalEvent ) { + return this.originalEvent[ name ]; + } + }, + + set: function( value ) { + Object.defineProperty( this, name, { + enumerable: true, + configurable: true, + writable: true, + value: value + } ); + } + } ); + }, + + fix: function( originalEvent ) { + return originalEvent[ jQuery.expando ] ? + originalEvent : + new jQuery.Event( originalEvent ); + }, + + special: { + load: { + + // Prevent triggered image.load events from bubbling to window.load + noBubble: true + }, + click: { + + // Utilize native event to ensure correct state for checkable inputs + setup: function( data ) { + + // For mutual compressibility with _default, replace `this` access with a local var. + // `|| data` is dead code meant only to preserve the variable through minification. + var el = this || data; + + // Claim the first handler + if ( rcheckableType.test( el.type ) && + el.click && nodeName( el, "input" ) ) { + + // dataPriv.set( el, "click", ... ) + leverageNative( el, "click", returnTrue ); + } + + // Return false to allow normal processing in the caller + return false; + }, + trigger: function( data ) { + + // For mutual compressibility with _default, replace `this` access with a local var. + // `|| data` is dead code meant only to preserve the variable through minification. + var el = this || data; + + // Force setup before triggering a click + if ( rcheckableType.test( el.type ) && + el.click && nodeName( el, "input" ) ) { + + leverageNative( el, "click" ); + } + + // Return non-false to allow normal event-path propagation + return true; + }, + + // For cross-browser consistency, suppress native .click() on links + // Also prevent it if we're currently inside a leveraged native-event stack + _default: function( event ) { + var target = event.target; + return rcheckableType.test( target.type ) && + target.click && nodeName( target, "input" ) && + dataPriv.get( target, "click" ) || + nodeName( target, "a" ); + } + }, + + beforeunload: { + postDispatch: function( event ) { + + // Support: Firefox 20+ + // Firefox doesn't alert if the returnValue field is not set. + if ( event.result !== undefined && event.originalEvent ) { + event.originalEvent.returnValue = event.result; + } + } + } + } +}; + +// Ensure the presence of an event listener that handles manually-triggered +// synthetic events by interrupting progress until reinvoked in response to +// *native* events that it fires directly, ensuring that state changes have +// already occurred before other listeners are invoked. +function leverageNative( el, type, expectSync ) { + + // Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add + if ( !expectSync ) { + if ( dataPriv.get( el, type ) === undefined ) { + jQuery.event.add( el, type, returnTrue ); + } + return; + } + + // Register the controller as a special universal handler for all event namespaces + dataPriv.set( el, type, false ); + jQuery.event.add( el, type, { + namespace: false, + handler: function( event ) { + var notAsync, result, + saved = dataPriv.get( this, type ); + + if ( ( event.isTrigger & 1 ) && this[ type ] ) { + + // Interrupt processing of the outer synthetic .trigger()ed event + // Saved data should be false in such cases, but might be a leftover capture object + // from an async native handler (gh-4350) + if ( !saved.length ) { + + // Store arguments for use when handling the inner native event + // There will always be at least one argument (an event object), so this array + // will not be confused with a leftover capture object. + saved = slice.call( arguments ); + dataPriv.set( this, type, saved ); + + // Trigger the native event and capture its result + // Support: IE <=9 - 11+ + // focus() and blur() are asynchronous + notAsync = expectSync( this, type ); + this[ type ](); + result = dataPriv.get( this, type ); + if ( saved !== result || notAsync ) { + dataPriv.set( this, type, false ); + } else { + result = {}; + } + if ( saved !== result ) { + + // Cancel the outer synthetic event + event.stopImmediatePropagation(); + event.preventDefault(); + return result.value; + } + + // If this is an inner synthetic event for an event with a bubbling surrogate + // (focus or blur), assume that the surrogate already propagated from triggering the + // native event and prevent that from happening again here. + // This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the + // bubbling surrogate propagates *after* the non-bubbling base), but that seems + // less bad than duplication. + } else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) { + event.stopPropagation(); + } + + // If this is a native event triggered above, everything is now in order + // Fire an inner synthetic event with the original arguments + } else if ( saved.length ) { + + // ...and capture the result + dataPriv.set( this, type, { + value: jQuery.event.trigger( + + // Support: IE <=9 - 11+ + // Extend with the prototype to reset the above stopImmediatePropagation() + jQuery.extend( saved[ 0 ], jQuery.Event.prototype ), + saved.slice( 1 ), + this + ) + } ); + + // Abort handling of the native event + event.stopImmediatePropagation(); + } + } + } ); +} + +jQuery.removeEvent = function( elem, type, handle ) { + + // This "if" is needed for plain objects + if ( elem.removeEventListener ) { + elem.removeEventListener( type, handle ); + } +}; + +jQuery.Event = function( src, props ) { + + // Allow instantiation without the 'new' keyword + if ( !( this instanceof jQuery.Event ) ) { + return new jQuery.Event( src, props ); + } + + // Event object + if ( src && src.type ) { + this.originalEvent = src; + this.type = src.type; + + // Events bubbling up the document may have been marked as prevented + // by a handler lower down the tree; reflect the correct value. + this.isDefaultPrevented = src.defaultPrevented || + src.defaultPrevented === undefined && + + // Support: Android <=2.3 only + src.returnValue === false ? + returnTrue : + returnFalse; + + // Create target properties + // Support: Safari <=6 - 7 only + // Target should not be a text node (#504, #13143) + this.target = ( src.target && src.target.nodeType === 3 ) ? + src.target.parentNode : + src.target; + + this.currentTarget = src.currentTarget; + this.relatedTarget = src.relatedTarget; + + // Event type + } else { + this.type = src; + } + + // Put explicitly provided properties onto the event object + if ( props ) { + jQuery.extend( this, props ); + } + + // Create a timestamp if incoming event doesn't have one + this.timeStamp = src && src.timeStamp || Date.now(); + + // Mark it as fixed + this[ jQuery.expando ] = true; +}; + +// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding +// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html +jQuery.Event.prototype = { + constructor: jQuery.Event, + isDefaultPrevented: returnFalse, + isPropagationStopped: returnFalse, + isImmediatePropagationStopped: returnFalse, + isSimulated: false, + + preventDefault: function() { + var e = this.originalEvent; + + this.isDefaultPrevented = returnTrue; + + if ( e && !this.isSimulated ) { + e.preventDefault(); + } + }, + stopPropagation: function() { + var e = this.originalEvent; + + this.isPropagationStopped = returnTrue; + + if ( e && !this.isSimulated ) { + e.stopPropagation(); + } + }, + stopImmediatePropagation: function() { + var e = this.originalEvent; + + this.isImmediatePropagationStopped = returnTrue; + + if ( e && !this.isSimulated ) { + e.stopImmediatePropagation(); + } + + this.stopPropagation(); + } +}; + +// Includes all common event props including KeyEvent and MouseEvent specific props +jQuery.each( { + altKey: true, + bubbles: true, + cancelable: true, + changedTouches: true, + ctrlKey: true, + detail: true, + eventPhase: true, + metaKey: true, + pageX: true, + pageY: true, + shiftKey: true, + view: true, + "char": true, + code: true, + charCode: true, + key: true, + keyCode: true, + button: true, + buttons: true, + clientX: true, + clientY: true, + offsetX: true, + offsetY: true, + pointerId: true, + pointerType: true, + screenX: true, + screenY: true, + targetTouches: true, + toElement: true, + touches: true, + + which: function( event ) { + var button = event.button; + + // Add which for key events + if ( event.which == null && rkeyEvent.test( event.type ) ) { + return event.charCode != null ? event.charCode : event.keyCode; + } + + // Add which for click: 1 === left; 2 === middle; 3 === right + if ( !event.which && button !== undefined && rmouseEvent.test( event.type ) ) { + if ( button & 1 ) { + return 1; + } + + if ( button & 2 ) { + return 3; + } + + if ( button & 4 ) { + return 2; + } + + return 0; + } + + return event.which; + } +}, jQuery.event.addProp ); + +jQuery.each( { focus: "focusin", blur: "focusout" }, function( type, delegateType ) { + jQuery.event.special[ type ] = { + + // Utilize native event if possible so blur/focus sequence is correct + setup: function() { + + // Claim the first handler + // dataPriv.set( this, "focus", ... ) + // dataPriv.set( this, "blur", ... ) + leverageNative( this, type, expectSync ); + + // Return false to allow normal processing in the caller + return false; + }, + trigger: function() { + + // Force setup before trigger + leverageNative( this, type ); + + // Return non-false to allow normal event-path propagation + return true; + }, + + delegateType: delegateType + }; +} ); + +// Create mouseenter/leave events using mouseover/out and event-time checks +// so that event delegation works in jQuery. +// Do the same for pointerenter/pointerleave and pointerover/pointerout +// +// Support: Safari 7 only +// Safari sends mouseenter too often; see: +// https://bugs.chromium.org/p/chromium/issues/detail?id=470258 +// for the description of the bug (it existed in older Chrome versions as well). +jQuery.each( { + mouseenter: "mouseover", + mouseleave: "mouseout", + pointerenter: "pointerover", + pointerleave: "pointerout" +}, function( orig, fix ) { + jQuery.event.special[ orig ] = { + delegateType: fix, + bindType: fix, + + handle: function( event ) { + var ret, + target = this, + related = event.relatedTarget, + handleObj = event.handleObj; + + // For mouseenter/leave call the handler if related is outside the target. + // NB: No relatedTarget if the mouse left/entered the browser window + if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) { + event.type = handleObj.origType; + ret = handleObj.handler.apply( this, arguments ); + event.type = fix; + } + return ret; + } + }; +} ); + +jQuery.fn.extend( { + + on: function( types, selector, data, fn ) { + return on( this, types, selector, data, fn ); + }, + one: function( types, selector, data, fn ) { + return on( this, types, selector, data, fn, 1 ); + }, + off: function( types, selector, fn ) { + var handleObj, type; + if ( types && types.preventDefault && types.handleObj ) { + + // ( event ) dispatched jQuery.Event + handleObj = types.handleObj; + jQuery( types.delegateTarget ).off( + handleObj.namespace ? + handleObj.origType + "." + handleObj.namespace : + handleObj.origType, + handleObj.selector, + handleObj.handler + ); + return this; + } + if ( typeof types === "object" ) { + + // ( types-object [, selector] ) + for ( type in types ) { + this.off( type, selector, types[ type ] ); + } + return this; + } + if ( selector === false || typeof selector === "function" ) { + + // ( types [, fn] ) + fn = selector; + selector = undefined; + } + if ( fn === false ) { + fn = returnFalse; + } + return this.each( function() { + jQuery.event.remove( this, types, fn, selector ); + } ); + } +} ); + + +var + + // Support: IE <=10 - 11, Edge 12 - 13 only + // In IE/Edge using regex groups here causes severe slowdowns. + // See https://connect.microsoft.com/IE/feedback/details/1736512/ + rnoInnerhtml = /\s*$/g; + +// Prefer a tbody over its parent table for containing new rows +function manipulationTarget( elem, content ) { + if ( nodeName( elem, "table" ) && + nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ) { + + return jQuery( elem ).children( "tbody" )[ 0 ] || elem; + } + + return elem; +} + +// Replace/restore the type attribute of script elements for safe DOM manipulation +function disableScript( elem ) { + elem.type = ( elem.getAttribute( "type" ) !== null ) + "/" + elem.type; + return elem; +} +function restoreScript( elem ) { + if ( ( elem.type || "" ).slice( 0, 5 ) === "true/" ) { + elem.type = elem.type.slice( 5 ); + } else { + elem.removeAttribute( "type" ); + } + + return elem; +} + +function cloneCopyEvent( src, dest ) { + var i, l, type, pdataOld, udataOld, udataCur, events; + + if ( dest.nodeType !== 1 ) { + return; + } + + // 1. Copy private data: events, handlers, etc. + if ( dataPriv.hasData( src ) ) { + pdataOld = dataPriv.get( src ); + events = pdataOld.events; + + if ( events ) { + dataPriv.remove( dest, "handle events" ); + + for ( type in events ) { + for ( i = 0, l = events[ type ].length; i < l; i++ ) { + jQuery.event.add( dest, type, events[ type ][ i ] ); + } + } + } + } + + // 2. Copy user data + if ( dataUser.hasData( src ) ) { + udataOld = dataUser.access( src ); + udataCur = jQuery.extend( {}, udataOld ); + + dataUser.set( dest, udataCur ); + } +} + +// Fix IE bugs, see support tests +function fixInput( src, dest ) { + var nodeName = dest.nodeName.toLowerCase(); + + // Fails to persist the checked state of a cloned checkbox or radio button. + if ( nodeName === "input" && rcheckableType.test( src.type ) ) { + dest.checked = src.checked; + + // Fails to return the selected option to the default selected state when cloning options + } else if ( nodeName === "input" || nodeName === "textarea" ) { + dest.defaultValue = src.defaultValue; + } +} + +function domManip( collection, args, callback, ignored ) { + + // Flatten any nested arrays + args = flat( args ); + + var fragment, first, scripts, hasScripts, node, doc, + i = 0, + l = collection.length, + iNoClone = l - 1, + value = args[ 0 ], + valueIsFunction = isFunction( value ); + + // We can't cloneNode fragments that contain checked, in WebKit + if ( valueIsFunction || + ( l > 1 && typeof value === "string" && + !support.checkClone && rchecked.test( value ) ) ) { + return collection.each( function( index ) { + var self = collection.eq( index ); + if ( valueIsFunction ) { + args[ 0 ] = value.call( this, index, self.html() ); + } + domManip( self, args, callback, ignored ); + } ); + } + + if ( l ) { + fragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored ); + first = fragment.firstChild; + + if ( fragment.childNodes.length === 1 ) { + fragment = first; + } + + // Require either new content or an interest in ignored elements to invoke the callback + if ( first || ignored ) { + scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); + hasScripts = scripts.length; + + // Use the original fragment for the last item + // instead of the first because it can end up + // being emptied incorrectly in certain situations (#8070). + for ( ; i < l; i++ ) { + node = fragment; + + if ( i !== iNoClone ) { + node = jQuery.clone( node, true, true ); + + // Keep references to cloned scripts for later restoration + if ( hasScripts ) { + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( scripts, getAll( node, "script" ) ); + } + } + + callback.call( collection[ i ], node, i ); + } + + if ( hasScripts ) { + doc = scripts[ scripts.length - 1 ].ownerDocument; + + // Reenable scripts + jQuery.map( scripts, restoreScript ); + + // Evaluate executable scripts on first document insertion + for ( i = 0; i < hasScripts; i++ ) { + node = scripts[ i ]; + if ( rscriptType.test( node.type || "" ) && + !dataPriv.access( node, "globalEval" ) && + jQuery.contains( doc, node ) ) { + + if ( node.src && ( node.type || "" ).toLowerCase() !== "module" ) { + + // Optional AJAX dependency, but won't run scripts if not present + if ( jQuery._evalUrl && !node.noModule ) { + jQuery._evalUrl( node.src, { + nonce: node.nonce || node.getAttribute( "nonce" ) + }, doc ); + } + } else { + DOMEval( node.textContent.replace( rcleanScript, "" ), node, doc ); + } + } + } + } + } + } + + return collection; +} + +function remove( elem, selector, keepData ) { + var node, + nodes = selector ? jQuery.filter( selector, elem ) : elem, + i = 0; + + for ( ; ( node = nodes[ i ] ) != null; i++ ) { + if ( !keepData && node.nodeType === 1 ) { + jQuery.cleanData( getAll( node ) ); + } + + if ( node.parentNode ) { + if ( keepData && isAttached( node ) ) { + setGlobalEval( getAll( node, "script" ) ); + } + node.parentNode.removeChild( node ); + } + } + + return elem; +} + +jQuery.extend( { + htmlPrefilter: function( html ) { + return html; + }, + + clone: function( elem, dataAndEvents, deepDataAndEvents ) { + var i, l, srcElements, destElements, + clone = elem.cloneNode( true ), + inPage = isAttached( elem ); + + // Fix IE cloning issues + if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) && + !jQuery.isXMLDoc( elem ) ) { + + // We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2 + destElements = getAll( clone ); + srcElements = getAll( elem ); + + for ( i = 0, l = srcElements.length; i < l; i++ ) { + fixInput( srcElements[ i ], destElements[ i ] ); + } + } + + // Copy the events from the original to the clone + if ( dataAndEvents ) { + if ( deepDataAndEvents ) { + srcElements = srcElements || getAll( elem ); + destElements = destElements || getAll( clone ); + + for ( i = 0, l = srcElements.length; i < l; i++ ) { + cloneCopyEvent( srcElements[ i ], destElements[ i ] ); + } + } else { + cloneCopyEvent( elem, clone ); + } + } + + // Preserve script evaluation history + destElements = getAll( clone, "script" ); + if ( destElements.length > 0 ) { + setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); + } + + // Return the cloned set + return clone; + }, + + cleanData: function( elems ) { + var data, elem, type, + special = jQuery.event.special, + i = 0; + + for ( ; ( elem = elems[ i ] ) !== undefined; i++ ) { + if ( acceptData( elem ) ) { + if ( ( data = elem[ dataPriv.expando ] ) ) { + if ( data.events ) { + for ( type in data.events ) { + if ( special[ type ] ) { + jQuery.event.remove( elem, type ); + + // This is a shortcut to avoid jQuery.event.remove's overhead + } else { + jQuery.removeEvent( elem, type, data.handle ); + } + } + } + + // Support: Chrome <=35 - 45+ + // Assign undefined instead of using delete, see Data#remove + elem[ dataPriv.expando ] = undefined; + } + if ( elem[ dataUser.expando ] ) { + + // Support: Chrome <=35 - 45+ + // Assign undefined instead of using delete, see Data#remove + elem[ dataUser.expando ] = undefined; + } + } + } + } +} ); + +jQuery.fn.extend( { + detach: function( selector ) { + return remove( this, selector, true ); + }, + + remove: function( selector ) { + return remove( this, selector ); + }, + + text: function( value ) { + return access( this, function( value ) { + return value === undefined ? + jQuery.text( this ) : + this.empty().each( function() { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + this.textContent = value; + } + } ); + }, null, value, arguments.length ); + }, + + append: function() { + return domManip( this, arguments, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + var target = manipulationTarget( this, elem ); + target.appendChild( elem ); + } + } ); + }, + + prepend: function() { + return domManip( this, arguments, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + var target = manipulationTarget( this, elem ); + target.insertBefore( elem, target.firstChild ); + } + } ); + }, + + before: function() { + return domManip( this, arguments, function( elem ) { + if ( this.parentNode ) { + this.parentNode.insertBefore( elem, this ); + } + } ); + }, + + after: function() { + return domManip( this, arguments, function( elem ) { + if ( this.parentNode ) { + this.parentNode.insertBefore( elem, this.nextSibling ); + } + } ); + }, + + empty: function() { + var elem, + i = 0; + + for ( ; ( elem = this[ i ] ) != null; i++ ) { + if ( elem.nodeType === 1 ) { + + // Prevent memory leaks + jQuery.cleanData( getAll( elem, false ) ); + + // Remove any remaining nodes + elem.textContent = ""; + } + } + + return this; + }, + + clone: function( dataAndEvents, deepDataAndEvents ) { + dataAndEvents = dataAndEvents == null ? false : dataAndEvents; + deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; + + return this.map( function() { + return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); + } ); + }, + + html: function( value ) { + return access( this, function( value ) { + var elem = this[ 0 ] || {}, + i = 0, + l = this.length; + + if ( value === undefined && elem.nodeType === 1 ) { + return elem.innerHTML; + } + + // See if we can take a shortcut and just use innerHTML + if ( typeof value === "string" && !rnoInnerhtml.test( value ) && + !wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) { + + value = jQuery.htmlPrefilter( value ); + + try { + for ( ; i < l; i++ ) { + elem = this[ i ] || {}; + + // Remove element nodes and prevent memory leaks + if ( elem.nodeType === 1 ) { + jQuery.cleanData( getAll( elem, false ) ); + elem.innerHTML = value; + } + } + + elem = 0; + + // If using innerHTML throws an exception, use the fallback method + } catch ( e ) {} + } + + if ( elem ) { + this.empty().append( value ); + } + }, null, value, arguments.length ); + }, + + replaceWith: function() { + var ignored = []; + + // Make the changes, replacing each non-ignored context element with the new content + return domManip( this, arguments, function( elem ) { + var parent = this.parentNode; + + if ( jQuery.inArray( this, ignored ) < 0 ) { + jQuery.cleanData( getAll( this ) ); + if ( parent ) { + parent.replaceChild( elem, this ); + } + } + + // Force callback invocation + }, ignored ); + } +} ); + +jQuery.each( { + appendTo: "append", + prependTo: "prepend", + insertBefore: "before", + insertAfter: "after", + replaceAll: "replaceWith" +}, function( name, original ) { + jQuery.fn[ name ] = function( selector ) { + var elems, + ret = [], + insert = jQuery( selector ), + last = insert.length - 1, + i = 0; + + for ( ; i <= last; i++ ) { + elems = i === last ? this : this.clone( true ); + jQuery( insert[ i ] )[ original ]( elems ); + + // Support: Android <=4.0 only, PhantomJS 1 only + // .get() because push.apply(_, arraylike) throws on ancient WebKit + push.apply( ret, elems.get() ); + } + + return this.pushStack( ret ); + }; +} ); +var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); + +var getStyles = function( elem ) { + + // Support: IE <=11 only, Firefox <=30 (#15098, #14150) + // IE throws on elements created in popups + // FF meanwhile throws on frame elements through "defaultView.getComputedStyle" + var view = elem.ownerDocument.defaultView; + + if ( !view || !view.opener ) { + view = window; + } + + return view.getComputedStyle( elem ); + }; + +var swap = function( elem, options, callback ) { + var ret, name, + old = {}; + + // Remember the old values, and insert the new ones + for ( name in options ) { + old[ name ] = elem.style[ name ]; + elem.style[ name ] = options[ name ]; + } + + ret = callback.call( elem ); + + // Revert the old values + for ( name in options ) { + elem.style[ name ] = old[ name ]; + } + + return ret; +}; + + +var rboxStyle = new RegExp( cssExpand.join( "|" ), "i" ); + + + +( function() { + + // Executing both pixelPosition & boxSizingReliable tests require only one layout + // so they're executed at the same time to save the second computation. + function computeStyleTests() { + + // This is a singleton, we need to execute it only once + if ( !div ) { + return; + } + + container.style.cssText = "position:absolute;left:-11111px;width:60px;" + + "margin-top:1px;padding:0;border:0"; + div.style.cssText = + "position:relative;display:block;box-sizing:border-box;overflow:scroll;" + + "margin:auto;border:1px;padding:1px;" + + "width:60%;top:1%"; + documentElement.appendChild( container ).appendChild( div ); + + var divStyle = window.getComputedStyle( div ); + pixelPositionVal = divStyle.top !== "1%"; + + // Support: Android 4.0 - 4.3 only, Firefox <=3 - 44 + reliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12; + + // Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3 + // Some styles come back with percentage values, even though they shouldn't + div.style.right = "60%"; + pixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36; + + // Support: IE 9 - 11 only + // Detect misreporting of content dimensions for box-sizing:border-box elements + boxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36; + + // Support: IE 9 only + // Detect overflow:scroll screwiness (gh-3699) + // Support: Chrome <=64 + // Don't get tricked when zoom affects offsetWidth (gh-4029) + div.style.position = "absolute"; + scrollboxSizeVal = roundPixelMeasures( div.offsetWidth / 3 ) === 12; + + documentElement.removeChild( container ); + + // Nullify the div so it wouldn't be stored in the memory and + // it will also be a sign that checks already performed + div = null; + } + + function roundPixelMeasures( measure ) { + return Math.round( parseFloat( measure ) ); + } + + var pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal, + reliableTrDimensionsVal, reliableMarginLeftVal, + container = document.createElement( "div" ), + div = document.createElement( "div" ); + + // Finish early in limited (non-browser) environments + if ( !div.style ) { + return; + } + + // Support: IE <=9 - 11 only + // Style of cloned element affects source element cloned (#8908) + div.style.backgroundClip = "content-box"; + div.cloneNode( true ).style.backgroundClip = ""; + support.clearCloneStyle = div.style.backgroundClip === "content-box"; + + jQuery.extend( support, { + boxSizingReliable: function() { + computeStyleTests(); + return boxSizingReliableVal; + }, + pixelBoxStyles: function() { + computeStyleTests(); + return pixelBoxStylesVal; + }, + pixelPosition: function() { + computeStyleTests(); + return pixelPositionVal; + }, + reliableMarginLeft: function() { + computeStyleTests(); + return reliableMarginLeftVal; + }, + scrollboxSize: function() { + computeStyleTests(); + return scrollboxSizeVal; + }, + + // Support: IE 9 - 11+, Edge 15 - 18+ + // IE/Edge misreport `getComputedStyle` of table rows with width/height + // set in CSS while `offset*` properties report correct values. + // Behavior in IE 9 is more subtle than in newer versions & it passes + // some versions of this test; make sure not to make it pass there! + reliableTrDimensions: function() { + var table, tr, trChild, trStyle; + if ( reliableTrDimensionsVal == null ) { + table = document.createElement( "table" ); + tr = document.createElement( "tr" ); + trChild = document.createElement( "div" ); + + table.style.cssText = "position:absolute;left:-11111px"; + tr.style.height = "1px"; + trChild.style.height = "9px"; + + documentElement + .appendChild( table ) + .appendChild( tr ) + .appendChild( trChild ); + + trStyle = window.getComputedStyle( tr ); + reliableTrDimensionsVal = parseInt( trStyle.height ) > 3; + + documentElement.removeChild( table ); + } + return reliableTrDimensionsVal; + } + } ); +} )(); + + +function curCSS( elem, name, computed ) { + var width, minWidth, maxWidth, ret, + + // Support: Firefox 51+ + // Retrieving style before computed somehow + // fixes an issue with getting wrong values + // on detached elements + style = elem.style; + + computed = computed || getStyles( elem ); + + // getPropertyValue is needed for: + // .css('filter') (IE 9 only, #12537) + // .css('--customProperty) (#3144) + if ( computed ) { + ret = computed.getPropertyValue( name ) || computed[ name ]; + + if ( ret === "" && !isAttached( elem ) ) { + ret = jQuery.style( elem, name ); + } + + // A tribute to the "awesome hack by Dean Edwards" + // Android Browser returns percentage for some values, + // but width seems to be reliably pixels. + // This is against the CSSOM draft spec: + // https://drafts.csswg.org/cssom/#resolved-values + if ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) { + + // Remember the original values + width = style.width; + minWidth = style.minWidth; + maxWidth = style.maxWidth; + + // Put in the new values to get a computed value out + style.minWidth = style.maxWidth = style.width = ret; + ret = computed.width; + + // Revert the changed values + style.width = width; + style.minWidth = minWidth; + style.maxWidth = maxWidth; + } + } + + return ret !== undefined ? + + // Support: IE <=9 - 11 only + // IE returns zIndex value as an integer. + ret + "" : + ret; +} + + +function addGetHookIf( conditionFn, hookFn ) { + + // Define the hook, we'll check on the first run if it's really needed. + return { + get: function() { + if ( conditionFn() ) { + + // Hook not needed (or it's not possible to use it due + // to missing dependency), remove it. + delete this.get; + return; + } + + // Hook needed; redefine it so that the support test is not executed again. + return ( this.get = hookFn ).apply( this, arguments ); + } + }; +} + + +var cssPrefixes = [ "Webkit", "Moz", "ms" ], + emptyStyle = document.createElement( "div" ).style, + vendorProps = {}; + +// Return a vendor-prefixed property or undefined +function vendorPropName( name ) { + + // Check for vendor prefixed names + var capName = name[ 0 ].toUpperCase() + name.slice( 1 ), + i = cssPrefixes.length; + + while ( i-- ) { + name = cssPrefixes[ i ] + capName; + if ( name in emptyStyle ) { + return name; + } + } +} + +// Return a potentially-mapped jQuery.cssProps or vendor prefixed property +function finalPropName( name ) { + var final = jQuery.cssProps[ name ] || vendorProps[ name ]; + + if ( final ) { + return final; + } + if ( name in emptyStyle ) { + return name; + } + return vendorProps[ name ] = vendorPropName( name ) || name; +} + + +var + + // Swappable if display is none or starts with table + // except "table", "table-cell", or "table-caption" + // See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display + rdisplayswap = /^(none|table(?!-c[ea]).+)/, + rcustomProp = /^--/, + cssShow = { position: "absolute", visibility: "hidden", display: "block" }, + cssNormalTransform = { + letterSpacing: "0", + fontWeight: "400" + }; + +function setPositiveNumber( _elem, value, subtract ) { + + // Any relative (+/-) values have already been + // normalized at this point + var matches = rcssNum.exec( value ); + return matches ? + + // Guard against undefined "subtract", e.g., when used as in cssHooks + Math.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || "px" ) : + value; +} + +function boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) { + var i = dimension === "width" ? 1 : 0, + extra = 0, + delta = 0; + + // Adjustment may not be necessary + if ( box === ( isBorderBox ? "border" : "content" ) ) { + return 0; + } + + for ( ; i < 4; i += 2 ) { + + // Both box models exclude margin + if ( box === "margin" ) { + delta += jQuery.css( elem, box + cssExpand[ i ], true, styles ); + } + + // If we get here with a content-box, we're seeking "padding" or "border" or "margin" + if ( !isBorderBox ) { + + // Add padding + delta += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); + + // For "border" or "margin", add border + if ( box !== "padding" ) { + delta += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + + // But still keep track of it otherwise + } else { + extra += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + } + + // If we get here with a border-box (content + padding + border), we're seeking "content" or + // "padding" or "margin" + } else { + + // For "content", subtract padding + if ( box === "content" ) { + delta -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); + } + + // For "content" or "padding", subtract border + if ( box !== "margin" ) { + delta -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + } + } + } + + // Account for positive content-box scroll gutter when requested by providing computedVal + if ( !isBorderBox && computedVal >= 0 ) { + + // offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border + // Assuming integer scroll gutter, subtract the rest and round down + delta += Math.max( 0, Math.ceil( + elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - + computedVal - + delta - + extra - + 0.5 + + // If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter + // Use an explicit zero to avoid NaN (gh-3964) + ) ) || 0; + } + + return delta; +} + +function getWidthOrHeight( elem, dimension, extra ) { + + // Start with computed style + var styles = getStyles( elem ), + + // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322). + // Fake content-box until we know it's needed to know the true value. + boxSizingNeeded = !support.boxSizingReliable() || extra, + isBorderBox = boxSizingNeeded && + jQuery.css( elem, "boxSizing", false, styles ) === "border-box", + valueIsBorderBox = isBorderBox, + + val = curCSS( elem, dimension, styles ), + offsetProp = "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ); + + // Support: Firefox <=54 + // Return a confounding non-pixel value or feign ignorance, as appropriate. + if ( rnumnonpx.test( val ) ) { + if ( !extra ) { + return val; + } + val = "auto"; + } + + + // Support: IE 9 - 11 only + // Use offsetWidth/offsetHeight for when box sizing is unreliable. + // In those cases, the computed value can be trusted to be border-box. + if ( ( !support.boxSizingReliable() && isBorderBox || + + // Support: IE 10 - 11+, Edge 15 - 18+ + // IE/Edge misreport `getComputedStyle` of table rows with width/height + // set in CSS while `offset*` properties report correct values. + // Interestingly, in some cases IE 9 doesn't suffer from this issue. + !support.reliableTrDimensions() && nodeName( elem, "tr" ) || + + // Fall back to offsetWidth/offsetHeight when value is "auto" + // This happens for inline elements with no explicit setting (gh-3571) + val === "auto" || + + // Support: Android <=4.1 - 4.3 only + // Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602) + !parseFloat( val ) && jQuery.css( elem, "display", false, styles ) === "inline" ) && + + // Make sure the element is visible & connected + elem.getClientRects().length ) { + + isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box"; + + // Where available, offsetWidth/offsetHeight approximate border box dimensions. + // Where not available (e.g., SVG), assume unreliable box-sizing and interpret the + // retrieved value as a content box dimension. + valueIsBorderBox = offsetProp in elem; + if ( valueIsBorderBox ) { + val = elem[ offsetProp ]; + } + } + + // Normalize "" and auto + val = parseFloat( val ) || 0; + + // Adjust for the element's box model + return ( val + + boxModelAdjustment( + elem, + dimension, + extra || ( isBorderBox ? "border" : "content" ), + valueIsBorderBox, + styles, + + // Provide the current computed size to request scroll gutter calculation (gh-3589) + val + ) + ) + "px"; +} + +jQuery.extend( { + + // Add in style property hooks for overriding the default + // behavior of getting and setting a style property + cssHooks: { + opacity: { + get: function( elem, computed ) { + if ( computed ) { + + // We should always get a number back from opacity + var ret = curCSS( elem, "opacity" ); + return ret === "" ? "1" : ret; + } + } + } + }, + + // Don't automatically add "px" to these possibly-unitless properties + cssNumber: { + "animationIterationCount": true, + "columnCount": true, + "fillOpacity": true, + "flexGrow": true, + "flexShrink": true, + "fontWeight": true, + "gridArea": true, + "gridColumn": true, + "gridColumnEnd": true, + "gridColumnStart": true, + "gridRow": true, + "gridRowEnd": true, + "gridRowStart": true, + "lineHeight": true, + "opacity": true, + "order": true, + "orphans": true, + "widows": true, + "zIndex": true, + "zoom": true + }, + + // Add in properties whose names you wish to fix before + // setting or getting the value + cssProps: {}, + + // Get and set the style property on a DOM Node + style: function( elem, name, value, extra ) { + + // Don't set styles on text and comment nodes + if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { + return; + } + + // Make sure that we're working with the right name + var ret, type, hooks, + origName = camelCase( name ), + isCustomProp = rcustomProp.test( name ), + style = elem.style; + + // Make sure that we're working with the right name. We don't + // want to query the value if it is a CSS custom property + // since they are user-defined. + if ( !isCustomProp ) { + name = finalPropName( origName ); + } + + // Gets hook for the prefixed version, then unprefixed version + hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; + + // Check if we're setting a value + if ( value !== undefined ) { + type = typeof value; + + // Convert "+=" or "-=" to relative numbers (#7345) + if ( type === "string" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) { + value = adjustCSS( elem, name, ret ); + + // Fixes bug #9237 + type = "number"; + } + + // Make sure that null and NaN values aren't set (#7116) + if ( value == null || value !== value ) { + return; + } + + // If a number was passed in, add the unit (except for certain CSS properties) + // The isCustomProp check can be removed in jQuery 4.0 when we only auto-append + // "px" to a few hardcoded values. + if ( type === "number" && !isCustomProp ) { + value += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? "" : "px" ); + } + + // background-* props affect original clone's values + if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) { + style[ name ] = "inherit"; + } + + // If a hook was provided, use that value, otherwise just set the specified value + if ( !hooks || !( "set" in hooks ) || + ( value = hooks.set( elem, value, extra ) ) !== undefined ) { + + if ( isCustomProp ) { + style.setProperty( name, value ); + } else { + style[ name ] = value; + } + } + + } else { + + // If a hook was provided get the non-computed value from there + if ( hooks && "get" in hooks && + ( ret = hooks.get( elem, false, extra ) ) !== undefined ) { + + return ret; + } + + // Otherwise just get the value from the style object + return style[ name ]; + } + }, + + css: function( elem, name, extra, styles ) { + var val, num, hooks, + origName = camelCase( name ), + isCustomProp = rcustomProp.test( name ); + + // Make sure that we're working with the right name. We don't + // want to modify the value if it is a CSS custom property + // since they are user-defined. + if ( !isCustomProp ) { + name = finalPropName( origName ); + } + + // Try prefixed name followed by the unprefixed name + hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; + + // If a hook was provided get the computed value from there + if ( hooks && "get" in hooks ) { + val = hooks.get( elem, true, extra ); + } + + // Otherwise, if a way to get the computed value exists, use that + if ( val === undefined ) { + val = curCSS( elem, name, styles ); + } + + // Convert "normal" to computed value + if ( val === "normal" && name in cssNormalTransform ) { + val = cssNormalTransform[ name ]; + } + + // Make numeric if forced or a qualifier was provided and val looks numeric + if ( extra === "" || extra ) { + num = parseFloat( val ); + return extra === true || isFinite( num ) ? num || 0 : val; + } + + return val; + } +} ); + +jQuery.each( [ "height", "width" ], function( _i, dimension ) { + jQuery.cssHooks[ dimension ] = { + get: function( elem, computed, extra ) { + if ( computed ) { + + // Certain elements can have dimension info if we invisibly show them + // but it must have a current display style that would benefit + return rdisplayswap.test( jQuery.css( elem, "display" ) ) && + + // Support: Safari 8+ + // Table columns in Safari have non-zero offsetWidth & zero + // getBoundingClientRect().width unless display is changed. + // Support: IE <=11 only + // Running getBoundingClientRect on a disconnected node + // in IE throws an error. + ( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ? + swap( elem, cssShow, function() { + return getWidthOrHeight( elem, dimension, extra ); + } ) : + getWidthOrHeight( elem, dimension, extra ); + } + }, + + set: function( elem, value, extra ) { + var matches, + styles = getStyles( elem ), + + // Only read styles.position if the test has a chance to fail + // to avoid forcing a reflow. + scrollboxSizeBuggy = !support.scrollboxSize() && + styles.position === "absolute", + + // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991) + boxSizingNeeded = scrollboxSizeBuggy || extra, + isBorderBox = boxSizingNeeded && + jQuery.css( elem, "boxSizing", false, styles ) === "border-box", + subtract = extra ? + boxModelAdjustment( + elem, + dimension, + extra, + isBorderBox, + styles + ) : + 0; + + // Account for unreliable border-box dimensions by comparing offset* to computed and + // faking a content-box to get border and padding (gh-3699) + if ( isBorderBox && scrollboxSizeBuggy ) { + subtract -= Math.ceil( + elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - + parseFloat( styles[ dimension ] ) - + boxModelAdjustment( elem, dimension, "border", false, styles ) - + 0.5 + ); + } + + // Convert to pixels if value adjustment is needed + if ( subtract && ( matches = rcssNum.exec( value ) ) && + ( matches[ 3 ] || "px" ) !== "px" ) { + + elem.style[ dimension ] = value; + value = jQuery.css( elem, dimension ); + } + + return setPositiveNumber( elem, value, subtract ); + } + }; +} ); + +jQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft, + function( elem, computed ) { + if ( computed ) { + return ( parseFloat( curCSS( elem, "marginLeft" ) ) || + elem.getBoundingClientRect().left - + swap( elem, { marginLeft: 0 }, function() { + return elem.getBoundingClientRect().left; + } ) + ) + "px"; + } + } +); + +// These hooks are used by animate to expand properties +jQuery.each( { + margin: "", + padding: "", + border: "Width" +}, function( prefix, suffix ) { + jQuery.cssHooks[ prefix + suffix ] = { + expand: function( value ) { + var i = 0, + expanded = {}, + + // Assumes a single number if not a string + parts = typeof value === "string" ? value.split( " " ) : [ value ]; + + for ( ; i < 4; i++ ) { + expanded[ prefix + cssExpand[ i ] + suffix ] = + parts[ i ] || parts[ i - 2 ] || parts[ 0 ]; + } + + return expanded; + } + }; + + if ( prefix !== "margin" ) { + jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber; + } +} ); + +jQuery.fn.extend( { + css: function( name, value ) { + return access( this, function( elem, name, value ) { + var styles, len, + map = {}, + i = 0; + + if ( Array.isArray( name ) ) { + styles = getStyles( elem ); + len = name.length; + + for ( ; i < len; i++ ) { + map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles ); + } + + return map; + } + + return value !== undefined ? + jQuery.style( elem, name, value ) : + jQuery.css( elem, name ); + }, name, value, arguments.length > 1 ); + } +} ); + + +function Tween( elem, options, prop, end, easing ) { + return new Tween.prototype.init( elem, options, prop, end, easing ); +} +jQuery.Tween = Tween; + +Tween.prototype = { + constructor: Tween, + init: function( elem, options, prop, end, easing, unit ) { + this.elem = elem; + this.prop = prop; + this.easing = easing || jQuery.easing._default; + this.options = options; + this.start = this.now = this.cur(); + this.end = end; + this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" ); + }, + cur: function() { + var hooks = Tween.propHooks[ this.prop ]; + + return hooks && hooks.get ? + hooks.get( this ) : + Tween.propHooks._default.get( this ); + }, + run: function( percent ) { + var eased, + hooks = Tween.propHooks[ this.prop ]; + + if ( this.options.duration ) { + this.pos = eased = jQuery.easing[ this.easing ]( + percent, this.options.duration * percent, 0, 1, this.options.duration + ); + } else { + this.pos = eased = percent; + } + this.now = ( this.end - this.start ) * eased + this.start; + + if ( this.options.step ) { + this.options.step.call( this.elem, this.now, this ); + } + + if ( hooks && hooks.set ) { + hooks.set( this ); + } else { + Tween.propHooks._default.set( this ); + } + return this; + } +}; + +Tween.prototype.init.prototype = Tween.prototype; + +Tween.propHooks = { + _default: { + get: function( tween ) { + var result; + + // Use a property on the element directly when it is not a DOM element, + // or when there is no matching style property that exists. + if ( tween.elem.nodeType !== 1 || + tween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) { + return tween.elem[ tween.prop ]; + } + + // Passing an empty string as a 3rd parameter to .css will automatically + // attempt a parseFloat and fallback to a string if the parse fails. + // Simple values such as "10px" are parsed to Float; + // complex values such as "rotate(1rad)" are returned as-is. + result = jQuery.css( tween.elem, tween.prop, "" ); + + // Empty strings, null, undefined and "auto" are converted to 0. + return !result || result === "auto" ? 0 : result; + }, + set: function( tween ) { + + // Use step hook for back compat. + // Use cssHook if its there. + // Use .style if available and use plain properties where available. + if ( jQuery.fx.step[ tween.prop ] ) { + jQuery.fx.step[ tween.prop ]( tween ); + } else if ( tween.elem.nodeType === 1 && ( + jQuery.cssHooks[ tween.prop ] || + tween.elem.style[ finalPropName( tween.prop ) ] != null ) ) { + jQuery.style( tween.elem, tween.prop, tween.now + tween.unit ); + } else { + tween.elem[ tween.prop ] = tween.now; + } + } + } +}; + +// Support: IE <=9 only +// Panic based approach to setting things on disconnected nodes +Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = { + set: function( tween ) { + if ( tween.elem.nodeType && tween.elem.parentNode ) { + tween.elem[ tween.prop ] = tween.now; + } + } +}; + +jQuery.easing = { + linear: function( p ) { + return p; + }, + swing: function( p ) { + return 0.5 - Math.cos( p * Math.PI ) / 2; + }, + _default: "swing" +}; + +jQuery.fx = Tween.prototype.init; + +// Back compat <1.8 extension point +jQuery.fx.step = {}; + + + + +var + fxNow, inProgress, + rfxtypes = /^(?:toggle|show|hide)$/, + rrun = /queueHooks$/; + +function schedule() { + if ( inProgress ) { + if ( document.hidden === false && window.requestAnimationFrame ) { + window.requestAnimationFrame( schedule ); + } else { + window.setTimeout( schedule, jQuery.fx.interval ); + } + + jQuery.fx.tick(); + } +} + +// Animations created synchronously will run synchronously +function createFxNow() { + window.setTimeout( function() { + fxNow = undefined; + } ); + return ( fxNow = Date.now() ); +} + +// Generate parameters to create a standard animation +function genFx( type, includeWidth ) { + var which, + i = 0, + attrs = { height: type }; + + // If we include width, step value is 1 to do all cssExpand values, + // otherwise step value is 2 to skip over Left and Right + includeWidth = includeWidth ? 1 : 0; + for ( ; i < 4; i += 2 - includeWidth ) { + which = cssExpand[ i ]; + attrs[ "margin" + which ] = attrs[ "padding" + which ] = type; + } + + if ( includeWidth ) { + attrs.opacity = attrs.width = type; + } + + return attrs; +} + +function createTween( value, prop, animation ) { + var tween, + collection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ "*" ] ), + index = 0, + length = collection.length; + for ( ; index < length; index++ ) { + if ( ( tween = collection[ index ].call( animation, prop, value ) ) ) { + + // We're done with this property + return tween; + } + } +} + +function defaultPrefilter( elem, props, opts ) { + var prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display, + isBox = "width" in props || "height" in props, + anim = this, + orig = {}, + style = elem.style, + hidden = elem.nodeType && isHiddenWithinTree( elem ), + dataShow = dataPriv.get( elem, "fxshow" ); + + // Queue-skipping animations hijack the fx hooks + if ( !opts.queue ) { + hooks = jQuery._queueHooks( elem, "fx" ); + if ( hooks.unqueued == null ) { + hooks.unqueued = 0; + oldfire = hooks.empty.fire; + hooks.empty.fire = function() { + if ( !hooks.unqueued ) { + oldfire(); + } + }; + } + hooks.unqueued++; + + anim.always( function() { + + // Ensure the complete handler is called before this completes + anim.always( function() { + hooks.unqueued--; + if ( !jQuery.queue( elem, "fx" ).length ) { + hooks.empty.fire(); + } + } ); + } ); + } + + // Detect show/hide animations + for ( prop in props ) { + value = props[ prop ]; + if ( rfxtypes.test( value ) ) { + delete props[ prop ]; + toggle = toggle || value === "toggle"; + if ( value === ( hidden ? "hide" : "show" ) ) { + + // Pretend to be hidden if this is a "show" and + // there is still data from a stopped show/hide + if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) { + hidden = true; + + // Ignore all other no-op show/hide data + } else { + continue; + } + } + orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop ); + } + } + + // Bail out if this is a no-op like .hide().hide() + propTween = !jQuery.isEmptyObject( props ); + if ( !propTween && jQuery.isEmptyObject( orig ) ) { + return; + } + + // Restrict "overflow" and "display" styles during box animations + if ( isBox && elem.nodeType === 1 ) { + + // Support: IE <=9 - 11, Edge 12 - 15 + // Record all 3 overflow attributes because IE does not infer the shorthand + // from identically-valued overflowX and overflowY and Edge just mirrors + // the overflowX value there. + opts.overflow = [ style.overflow, style.overflowX, style.overflowY ]; + + // Identify a display type, preferring old show/hide data over the CSS cascade + restoreDisplay = dataShow && dataShow.display; + if ( restoreDisplay == null ) { + restoreDisplay = dataPriv.get( elem, "display" ); + } + display = jQuery.css( elem, "display" ); + if ( display === "none" ) { + if ( restoreDisplay ) { + display = restoreDisplay; + } else { + + // Get nonempty value(s) by temporarily forcing visibility + showHide( [ elem ], true ); + restoreDisplay = elem.style.display || restoreDisplay; + display = jQuery.css( elem, "display" ); + showHide( [ elem ] ); + } + } + + // Animate inline elements as inline-block + if ( display === "inline" || display === "inline-block" && restoreDisplay != null ) { + if ( jQuery.css( elem, "float" ) === "none" ) { + + // Restore the original display value at the end of pure show/hide animations + if ( !propTween ) { + anim.done( function() { + style.display = restoreDisplay; + } ); + if ( restoreDisplay == null ) { + display = style.display; + restoreDisplay = display === "none" ? "" : display; + } + } + style.display = "inline-block"; + } + } + } + + if ( opts.overflow ) { + style.overflow = "hidden"; + anim.always( function() { + style.overflow = opts.overflow[ 0 ]; + style.overflowX = opts.overflow[ 1 ]; + style.overflowY = opts.overflow[ 2 ]; + } ); + } + + // Implement show/hide animations + propTween = false; + for ( prop in orig ) { + + // General show/hide setup for this element animation + if ( !propTween ) { + if ( dataShow ) { + if ( "hidden" in dataShow ) { + hidden = dataShow.hidden; + } + } else { + dataShow = dataPriv.access( elem, "fxshow", { display: restoreDisplay } ); + } + + // Store hidden/visible for toggle so `.stop().toggle()` "reverses" + if ( toggle ) { + dataShow.hidden = !hidden; + } + + // Show elements before animating them + if ( hidden ) { + showHide( [ elem ], true ); + } + + /* eslint-disable no-loop-func */ + + anim.done( function() { + + /* eslint-enable no-loop-func */ + + // The final step of a "hide" animation is actually hiding the element + if ( !hidden ) { + showHide( [ elem ] ); + } + dataPriv.remove( elem, "fxshow" ); + for ( prop in orig ) { + jQuery.style( elem, prop, orig[ prop ] ); + } + } ); + } + + // Per-property setup + propTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim ); + if ( !( prop in dataShow ) ) { + dataShow[ prop ] = propTween.start; + if ( hidden ) { + propTween.end = propTween.start; + propTween.start = 0; + } + } + } +} + +function propFilter( props, specialEasing ) { + var index, name, easing, value, hooks; + + // camelCase, specialEasing and expand cssHook pass + for ( index in props ) { + name = camelCase( index ); + easing = specialEasing[ name ]; + value = props[ index ]; + if ( Array.isArray( value ) ) { + easing = value[ 1 ]; + value = props[ index ] = value[ 0 ]; + } + + if ( index !== name ) { + props[ name ] = value; + delete props[ index ]; + } + + hooks = jQuery.cssHooks[ name ]; + if ( hooks && "expand" in hooks ) { + value = hooks.expand( value ); + delete props[ name ]; + + // Not quite $.extend, this won't overwrite existing keys. + // Reusing 'index' because we have the correct "name" + for ( index in value ) { + if ( !( index in props ) ) { + props[ index ] = value[ index ]; + specialEasing[ index ] = easing; + } + } + } else { + specialEasing[ name ] = easing; + } + } +} + +function Animation( elem, properties, options ) { + var result, + stopped, + index = 0, + length = Animation.prefilters.length, + deferred = jQuery.Deferred().always( function() { + + // Don't match elem in the :animated selector + delete tick.elem; + } ), + tick = function() { + if ( stopped ) { + return false; + } + var currentTime = fxNow || createFxNow(), + remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ), + + // Support: Android 2.3 only + // Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497) + temp = remaining / animation.duration || 0, + percent = 1 - temp, + index = 0, + length = animation.tweens.length; + + for ( ; index < length; index++ ) { + animation.tweens[ index ].run( percent ); + } + + deferred.notifyWith( elem, [ animation, percent, remaining ] ); + + // If there's more to do, yield + if ( percent < 1 && length ) { + return remaining; + } + + // If this was an empty animation, synthesize a final progress notification + if ( !length ) { + deferred.notifyWith( elem, [ animation, 1, 0 ] ); + } + + // Resolve the animation and report its conclusion + deferred.resolveWith( elem, [ animation ] ); + return false; + }, + animation = deferred.promise( { + elem: elem, + props: jQuery.extend( {}, properties ), + opts: jQuery.extend( true, { + specialEasing: {}, + easing: jQuery.easing._default + }, options ), + originalProperties: properties, + originalOptions: options, + startTime: fxNow || createFxNow(), + duration: options.duration, + tweens: [], + createTween: function( prop, end ) { + var tween = jQuery.Tween( elem, animation.opts, prop, end, + animation.opts.specialEasing[ prop ] || animation.opts.easing ); + animation.tweens.push( tween ); + return tween; + }, + stop: function( gotoEnd ) { + var index = 0, + + // If we are going to the end, we want to run all the tweens + // otherwise we skip this part + length = gotoEnd ? animation.tweens.length : 0; + if ( stopped ) { + return this; + } + stopped = true; + for ( ; index < length; index++ ) { + animation.tweens[ index ].run( 1 ); + } + + // Resolve when we played the last frame; otherwise, reject + if ( gotoEnd ) { + deferred.notifyWith( elem, [ animation, 1, 0 ] ); + deferred.resolveWith( elem, [ animation, gotoEnd ] ); + } else { + deferred.rejectWith( elem, [ animation, gotoEnd ] ); + } + return this; + } + } ), + props = animation.props; + + propFilter( props, animation.opts.specialEasing ); + + for ( ; index < length; index++ ) { + result = Animation.prefilters[ index ].call( animation, elem, props, animation.opts ); + if ( result ) { + if ( isFunction( result.stop ) ) { + jQuery._queueHooks( animation.elem, animation.opts.queue ).stop = + result.stop.bind( result ); + } + return result; + } + } + + jQuery.map( props, createTween, animation ); + + if ( isFunction( animation.opts.start ) ) { + animation.opts.start.call( elem, animation ); + } + + // Attach callbacks from options + animation + .progress( animation.opts.progress ) + .done( animation.opts.done, animation.opts.complete ) + .fail( animation.opts.fail ) + .always( animation.opts.always ); + + jQuery.fx.timer( + jQuery.extend( tick, { + elem: elem, + anim: animation, + queue: animation.opts.queue + } ) + ); + + return animation; +} + +jQuery.Animation = jQuery.extend( Animation, { + + tweeners: { + "*": [ function( prop, value ) { + var tween = this.createTween( prop, value ); + adjustCSS( tween.elem, prop, rcssNum.exec( value ), tween ); + return tween; + } ] + }, + + tweener: function( props, callback ) { + if ( isFunction( props ) ) { + callback = props; + props = [ "*" ]; + } else { + props = props.match( rnothtmlwhite ); + } + + var prop, + index = 0, + length = props.length; + + for ( ; index < length; index++ ) { + prop = props[ index ]; + Animation.tweeners[ prop ] = Animation.tweeners[ prop ] || []; + Animation.tweeners[ prop ].unshift( callback ); + } + }, + + prefilters: [ defaultPrefilter ], + + prefilter: function( callback, prepend ) { + if ( prepend ) { + Animation.prefilters.unshift( callback ); + } else { + Animation.prefilters.push( callback ); + } + } +} ); + +jQuery.speed = function( speed, easing, fn ) { + var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : { + complete: fn || !fn && easing || + isFunction( speed ) && speed, + duration: speed, + easing: fn && easing || easing && !isFunction( easing ) && easing + }; + + // Go to the end state if fx are off + if ( jQuery.fx.off ) { + opt.duration = 0; + + } else { + if ( typeof opt.duration !== "number" ) { + if ( opt.duration in jQuery.fx.speeds ) { + opt.duration = jQuery.fx.speeds[ opt.duration ]; + + } else { + opt.duration = jQuery.fx.speeds._default; + } + } + } + + // Normalize opt.queue - true/undefined/null -> "fx" + if ( opt.queue == null || opt.queue === true ) { + opt.queue = "fx"; + } + + // Queueing + opt.old = opt.complete; + + opt.complete = function() { + if ( isFunction( opt.old ) ) { + opt.old.call( this ); + } + + if ( opt.queue ) { + jQuery.dequeue( this, opt.queue ); + } + }; + + return opt; +}; + +jQuery.fn.extend( { + fadeTo: function( speed, to, easing, callback ) { + + // Show any hidden elements after setting opacity to 0 + return this.filter( isHiddenWithinTree ).css( "opacity", 0 ).show() + + // Animate to the value specified + .end().animate( { opacity: to }, speed, easing, callback ); + }, + animate: function( prop, speed, easing, callback ) { + var empty = jQuery.isEmptyObject( prop ), + optall = jQuery.speed( speed, easing, callback ), + doAnimation = function() { + + // Operate on a copy of prop so per-property easing won't be lost + var anim = Animation( this, jQuery.extend( {}, prop ), optall ); + + // Empty animations, or finishing resolves immediately + if ( empty || dataPriv.get( this, "finish" ) ) { + anim.stop( true ); + } + }; + doAnimation.finish = doAnimation; + + return empty || optall.queue === false ? + this.each( doAnimation ) : + this.queue( optall.queue, doAnimation ); + }, + stop: function( type, clearQueue, gotoEnd ) { + var stopQueue = function( hooks ) { + var stop = hooks.stop; + delete hooks.stop; + stop( gotoEnd ); + }; + + if ( typeof type !== "string" ) { + gotoEnd = clearQueue; + clearQueue = type; + type = undefined; + } + if ( clearQueue ) { + this.queue( type || "fx", [] ); + } + + return this.each( function() { + var dequeue = true, + index = type != null && type + "queueHooks", + timers = jQuery.timers, + data = dataPriv.get( this ); + + if ( index ) { + if ( data[ index ] && data[ index ].stop ) { + stopQueue( data[ index ] ); + } + } else { + for ( index in data ) { + if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) { + stopQueue( data[ index ] ); + } + } + } + + for ( index = timers.length; index--; ) { + if ( timers[ index ].elem === this && + ( type == null || timers[ index ].queue === type ) ) { + + timers[ index ].anim.stop( gotoEnd ); + dequeue = false; + timers.splice( index, 1 ); + } + } + + // Start the next in the queue if the last step wasn't forced. + // Timers currently will call their complete callbacks, which + // will dequeue but only if they were gotoEnd. + if ( dequeue || !gotoEnd ) { + jQuery.dequeue( this, type ); + } + } ); + }, + finish: function( type ) { + if ( type !== false ) { + type = type || "fx"; + } + return this.each( function() { + var index, + data = dataPriv.get( this ), + queue = data[ type + "queue" ], + hooks = data[ type + "queueHooks" ], + timers = jQuery.timers, + length = queue ? queue.length : 0; + + // Enable finishing flag on private data + data.finish = true; + + // Empty the queue first + jQuery.queue( this, type, [] ); + + if ( hooks && hooks.stop ) { + hooks.stop.call( this, true ); + } + + // Look for any active animations, and finish them + for ( index = timers.length; index--; ) { + if ( timers[ index ].elem === this && timers[ index ].queue === type ) { + timers[ index ].anim.stop( true ); + timers.splice( index, 1 ); + } + } + + // Look for any animations in the old queue and finish them + for ( index = 0; index < length; index++ ) { + if ( queue[ index ] && queue[ index ].finish ) { + queue[ index ].finish.call( this ); + } + } + + // Turn off finishing flag + delete data.finish; + } ); + } +} ); + +jQuery.each( [ "toggle", "show", "hide" ], function( _i, name ) { + var cssFn = jQuery.fn[ name ]; + jQuery.fn[ name ] = function( speed, easing, callback ) { + return speed == null || typeof speed === "boolean" ? + cssFn.apply( this, arguments ) : + this.animate( genFx( name, true ), speed, easing, callback ); + }; +} ); + +// Generate shortcuts for custom animations +jQuery.each( { + slideDown: genFx( "show" ), + slideUp: genFx( "hide" ), + slideToggle: genFx( "toggle" ), + fadeIn: { opacity: "show" }, + fadeOut: { opacity: "hide" }, + fadeToggle: { opacity: "toggle" } +}, function( name, props ) { + jQuery.fn[ name ] = function( speed, easing, callback ) { + return this.animate( props, speed, easing, callback ); + }; +} ); + +jQuery.timers = []; +jQuery.fx.tick = function() { + var timer, + i = 0, + timers = jQuery.timers; + + fxNow = Date.now(); + + for ( ; i < timers.length; i++ ) { + timer = timers[ i ]; + + // Run the timer and safely remove it when done (allowing for external removal) + if ( !timer() && timers[ i ] === timer ) { + timers.splice( i--, 1 ); + } + } + + if ( !timers.length ) { + jQuery.fx.stop(); + } + fxNow = undefined; +}; + +jQuery.fx.timer = function( timer ) { + jQuery.timers.push( timer ); + jQuery.fx.start(); +}; + +jQuery.fx.interval = 13; +jQuery.fx.start = function() { + if ( inProgress ) { + return; + } + + inProgress = true; + schedule(); +}; + +jQuery.fx.stop = function() { + inProgress = null; +}; + +jQuery.fx.speeds = { + slow: 600, + fast: 200, + + // Default speed + _default: 400 +}; + + +// Based off of the plugin by Clint Helfers, with permission. +// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ +jQuery.fn.delay = function( time, type ) { + time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; + type = type || "fx"; + + return this.queue( type, function( next, hooks ) { + var timeout = window.setTimeout( next, time ); + hooks.stop = function() { + window.clearTimeout( timeout ); + }; + } ); +}; + + +( function() { + var input = document.createElement( "input" ), + select = document.createElement( "select" ), + opt = select.appendChild( document.createElement( "option" ) ); + + input.type = "checkbox"; + + // Support: Android <=4.3 only + // Default value for a checkbox should be "on" + support.checkOn = input.value !== ""; + + // Support: IE <=11 only + // Must access selectedIndex to make default options select + support.optSelected = opt.selected; + + // Support: IE <=11 only + // An input loses its value after becoming a radio + input = document.createElement( "input" ); + input.value = "t"; + input.type = "radio"; + support.radioValue = input.value === "t"; +} )(); + + +var boolHook, + attrHandle = jQuery.expr.attrHandle; + +jQuery.fn.extend( { + attr: function( name, value ) { + return access( this, jQuery.attr, name, value, arguments.length > 1 ); + }, + + removeAttr: function( name ) { + return this.each( function() { + jQuery.removeAttr( this, name ); + } ); + } +} ); + +jQuery.extend( { + attr: function( elem, name, value ) { + var ret, hooks, + nType = elem.nodeType; + + // Don't get/set attributes on text, comment and attribute nodes + if ( nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + // Fallback to prop when attributes are not supported + if ( typeof elem.getAttribute === "undefined" ) { + return jQuery.prop( elem, name, value ); + } + + // Attribute hooks are determined by the lowercase version + // Grab necessary hook if one is defined + if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { + hooks = jQuery.attrHooks[ name.toLowerCase() ] || + ( jQuery.expr.match.bool.test( name ) ? boolHook : undefined ); + } + + if ( value !== undefined ) { + if ( value === null ) { + jQuery.removeAttr( elem, name ); + return; + } + + if ( hooks && "set" in hooks && + ( ret = hooks.set( elem, value, name ) ) !== undefined ) { + return ret; + } + + elem.setAttribute( name, value + "" ); + return value; + } + + if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { + return ret; + } + + ret = jQuery.find.attr( elem, name ); + + // Non-existent attributes return null, we normalize to undefined + return ret == null ? undefined : ret; + }, + + attrHooks: { + type: { + set: function( elem, value ) { + if ( !support.radioValue && value === "radio" && + nodeName( elem, "input" ) ) { + var val = elem.value; + elem.setAttribute( "type", value ); + if ( val ) { + elem.value = val; + } + return value; + } + } + } + }, + + removeAttr: function( elem, value ) { + var name, + i = 0, + + // Attribute names can contain non-HTML whitespace characters + // https://html.spec.whatwg.org/multipage/syntax.html#attributes-2 + attrNames = value && value.match( rnothtmlwhite ); + + if ( attrNames && elem.nodeType === 1 ) { + while ( ( name = attrNames[ i++ ] ) ) { + elem.removeAttribute( name ); + } + } + } +} ); + +// Hooks for boolean attributes +boolHook = { + set: function( elem, value, name ) { + if ( value === false ) { + + // Remove boolean attributes when set to false + jQuery.removeAttr( elem, name ); + } else { + elem.setAttribute( name, name ); + } + return name; + } +}; + +jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( _i, name ) { + var getter = attrHandle[ name ] || jQuery.find.attr; + + attrHandle[ name ] = function( elem, name, isXML ) { + var ret, handle, + lowercaseName = name.toLowerCase(); + + if ( !isXML ) { + + // Avoid an infinite loop by temporarily removing this function from the getter + handle = attrHandle[ lowercaseName ]; + attrHandle[ lowercaseName ] = ret; + ret = getter( elem, name, isXML ) != null ? + lowercaseName : + null; + attrHandle[ lowercaseName ] = handle; + } + return ret; + }; +} ); + + + + +var rfocusable = /^(?:input|select|textarea|button)$/i, + rclickable = /^(?:a|area)$/i; + +jQuery.fn.extend( { + prop: function( name, value ) { + return access( this, jQuery.prop, name, value, arguments.length > 1 ); + }, + + removeProp: function( name ) { + return this.each( function() { + delete this[ jQuery.propFix[ name ] || name ]; + } ); + } +} ); + +jQuery.extend( { + prop: function( elem, name, value ) { + var ret, hooks, + nType = elem.nodeType; + + // Don't get/set properties on text, comment and attribute nodes + if ( nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { + + // Fix name and attach hooks + name = jQuery.propFix[ name ] || name; + hooks = jQuery.propHooks[ name ]; + } + + if ( value !== undefined ) { + if ( hooks && "set" in hooks && + ( ret = hooks.set( elem, value, name ) ) !== undefined ) { + return ret; + } + + return ( elem[ name ] = value ); + } + + if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { + return ret; + } + + return elem[ name ]; + }, + + propHooks: { + tabIndex: { + get: function( elem ) { + + // Support: IE <=9 - 11 only + // elem.tabIndex doesn't always return the + // correct value when it hasn't been explicitly set + // https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ + // Use proper attribute retrieval(#12072) + var tabindex = jQuery.find.attr( elem, "tabindex" ); + + if ( tabindex ) { + return parseInt( tabindex, 10 ); + } + + if ( + rfocusable.test( elem.nodeName ) || + rclickable.test( elem.nodeName ) && + elem.href + ) { + return 0; + } + + return -1; + } + } + }, + + propFix: { + "for": "htmlFor", + "class": "className" + } +} ); + +// Support: IE <=11 only +// Accessing the selectedIndex property +// forces the browser to respect setting selected +// on the option +// The getter ensures a default option is selected +// when in an optgroup +// eslint rule "no-unused-expressions" is disabled for this code +// since it considers such accessions noop +if ( !support.optSelected ) { + jQuery.propHooks.selected = { + get: function( elem ) { + + /* eslint no-unused-expressions: "off" */ + + var parent = elem.parentNode; + if ( parent && parent.parentNode ) { + parent.parentNode.selectedIndex; + } + return null; + }, + set: function( elem ) { + + /* eslint no-unused-expressions: "off" */ + + var parent = elem.parentNode; + if ( parent ) { + parent.selectedIndex; + + if ( parent.parentNode ) { + parent.parentNode.selectedIndex; + } + } + } + }; +} + +jQuery.each( [ + "tabIndex", + "readOnly", + "maxLength", + "cellSpacing", + "cellPadding", + "rowSpan", + "colSpan", + "useMap", + "frameBorder", + "contentEditable" +], function() { + jQuery.propFix[ this.toLowerCase() ] = this; +} ); + + + + + // Strip and collapse whitespace according to HTML spec + // https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace + function stripAndCollapse( value ) { + var tokens = value.match( rnothtmlwhite ) || []; + return tokens.join( " " ); + } + + +function getClass( elem ) { + return elem.getAttribute && elem.getAttribute( "class" ) || ""; +} + +function classesToArray( value ) { + if ( Array.isArray( value ) ) { + return value; + } + if ( typeof value === "string" ) { + return value.match( rnothtmlwhite ) || []; + } + return []; +} + +jQuery.fn.extend( { + addClass: function( value ) { + var classes, elem, cur, curValue, clazz, j, finalValue, + i = 0; + + if ( isFunction( value ) ) { + return this.each( function( j ) { + jQuery( this ).addClass( value.call( this, j, getClass( this ) ) ); + } ); + } + + classes = classesToArray( value ); + + if ( classes.length ) { + while ( ( elem = this[ i++ ] ) ) { + curValue = getClass( elem ); + cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); + + if ( cur ) { + j = 0; + while ( ( clazz = classes[ j++ ] ) ) { + if ( cur.indexOf( " " + clazz + " " ) < 0 ) { + cur += clazz + " "; + } + } + + // Only assign if different to avoid unneeded rendering. + finalValue = stripAndCollapse( cur ); + if ( curValue !== finalValue ) { + elem.setAttribute( "class", finalValue ); + } + } + } + } + + return this; + }, + + removeClass: function( value ) { + var classes, elem, cur, curValue, clazz, j, finalValue, + i = 0; + + if ( isFunction( value ) ) { + return this.each( function( j ) { + jQuery( this ).removeClass( value.call( this, j, getClass( this ) ) ); + } ); + } + + if ( !arguments.length ) { + return this.attr( "class", "" ); + } + + classes = classesToArray( value ); + + if ( classes.length ) { + while ( ( elem = this[ i++ ] ) ) { + curValue = getClass( elem ); + + // This expression is here for better compressibility (see addClass) + cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); + + if ( cur ) { + j = 0; + while ( ( clazz = classes[ j++ ] ) ) { + + // Remove *all* instances + while ( cur.indexOf( " " + clazz + " " ) > -1 ) { + cur = cur.replace( " " + clazz + " ", " " ); + } + } + + // Only assign if different to avoid unneeded rendering. + finalValue = stripAndCollapse( cur ); + if ( curValue !== finalValue ) { + elem.setAttribute( "class", finalValue ); + } + } + } + } + + return this; + }, + + toggleClass: function( value, stateVal ) { + var type = typeof value, + isValidValue = type === "string" || Array.isArray( value ); + + if ( typeof stateVal === "boolean" && isValidValue ) { + return stateVal ? this.addClass( value ) : this.removeClass( value ); + } + + if ( isFunction( value ) ) { + return this.each( function( i ) { + jQuery( this ).toggleClass( + value.call( this, i, getClass( this ), stateVal ), + stateVal + ); + } ); + } + + return this.each( function() { + var className, i, self, classNames; + + if ( isValidValue ) { + + // Toggle individual class names + i = 0; + self = jQuery( this ); + classNames = classesToArray( value ); + + while ( ( className = classNames[ i++ ] ) ) { + + // Check each className given, space separated list + if ( self.hasClass( className ) ) { + self.removeClass( className ); + } else { + self.addClass( className ); + } + } + + // Toggle whole class name + } else if ( value === undefined || type === "boolean" ) { + className = getClass( this ); + if ( className ) { + + // Store className if set + dataPriv.set( this, "__className__", className ); + } + + // If the element has a class name or if we're passed `false`, + // then remove the whole classname (if there was one, the above saved it). + // Otherwise bring back whatever was previously saved (if anything), + // falling back to the empty string if nothing was stored. + if ( this.setAttribute ) { + this.setAttribute( "class", + className || value === false ? + "" : + dataPriv.get( this, "__className__" ) || "" + ); + } + } + } ); + }, + + hasClass: function( selector ) { + var className, elem, + i = 0; + + className = " " + selector + " "; + while ( ( elem = this[ i++ ] ) ) { + if ( elem.nodeType === 1 && + ( " " + stripAndCollapse( getClass( elem ) ) + " " ).indexOf( className ) > -1 ) { + return true; + } + } + + return false; + } +} ); + + + + +var rreturn = /\r/g; + +jQuery.fn.extend( { + val: function( value ) { + var hooks, ret, valueIsFunction, + elem = this[ 0 ]; + + if ( !arguments.length ) { + if ( elem ) { + hooks = jQuery.valHooks[ elem.type ] || + jQuery.valHooks[ elem.nodeName.toLowerCase() ]; + + if ( hooks && + "get" in hooks && + ( ret = hooks.get( elem, "value" ) ) !== undefined + ) { + return ret; + } + + ret = elem.value; + + // Handle most common string cases + if ( typeof ret === "string" ) { + return ret.replace( rreturn, "" ); + } + + // Handle cases where value is null/undef or number + return ret == null ? "" : ret; + } + + return; + } + + valueIsFunction = isFunction( value ); + + return this.each( function( i ) { + var val; + + if ( this.nodeType !== 1 ) { + return; + } + + if ( valueIsFunction ) { + val = value.call( this, i, jQuery( this ).val() ); + } else { + val = value; + } + + // Treat null/undefined as ""; convert numbers to string + if ( val == null ) { + val = ""; + + } else if ( typeof val === "number" ) { + val += ""; + + } else if ( Array.isArray( val ) ) { + val = jQuery.map( val, function( value ) { + return value == null ? "" : value + ""; + } ); + } + + hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; + + // If set returns undefined, fall back to normal setting + if ( !hooks || !( "set" in hooks ) || hooks.set( this, val, "value" ) === undefined ) { + this.value = val; + } + } ); + } +} ); + +jQuery.extend( { + valHooks: { + option: { + get: function( elem ) { + + var val = jQuery.find.attr( elem, "value" ); + return val != null ? + val : + + // Support: IE <=10 - 11 only + // option.text throws exceptions (#14686, #14858) + // Strip and collapse whitespace + // https://html.spec.whatwg.org/#strip-and-collapse-whitespace + stripAndCollapse( jQuery.text( elem ) ); + } + }, + select: { + get: function( elem ) { + var value, option, i, + options = elem.options, + index = elem.selectedIndex, + one = elem.type === "select-one", + values = one ? null : [], + max = one ? index + 1 : options.length; + + if ( index < 0 ) { + i = max; + + } else { + i = one ? index : 0; + } + + // Loop through all the selected options + for ( ; i < max; i++ ) { + option = options[ i ]; + + // Support: IE <=9 only + // IE8-9 doesn't update selected after form reset (#2551) + if ( ( option.selected || i === index ) && + + // Don't return options that are disabled or in a disabled optgroup + !option.disabled && + ( !option.parentNode.disabled || + !nodeName( option.parentNode, "optgroup" ) ) ) { + + // Get the specific value for the option + value = jQuery( option ).val(); + + // We don't need an array for one selects + if ( one ) { + return value; + } + + // Multi-Selects return an array + values.push( value ); + } + } + + return values; + }, + + set: function( elem, value ) { + var optionSet, option, + options = elem.options, + values = jQuery.makeArray( value ), + i = options.length; + + while ( i-- ) { + option = options[ i ]; + + /* eslint-disable no-cond-assign */ + + if ( option.selected = + jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1 + ) { + optionSet = true; + } + + /* eslint-enable no-cond-assign */ + } + + // Force browsers to behave consistently when non-matching value is set + if ( !optionSet ) { + elem.selectedIndex = -1; + } + return values; + } + } + } +} ); + +// Radios and checkboxes getter/setter +jQuery.each( [ "radio", "checkbox" ], function() { + jQuery.valHooks[ this ] = { + set: function( elem, value ) { + if ( Array.isArray( value ) ) { + return ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 ); + } + } + }; + if ( !support.checkOn ) { + jQuery.valHooks[ this ].get = function( elem ) { + return elem.getAttribute( "value" ) === null ? "on" : elem.value; + }; + } +} ); + + + + +// Return jQuery for attributes-only inclusion + + +support.focusin = "onfocusin" in window; + + +var rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, + stopPropagationCallback = function( e ) { + e.stopPropagation(); + }; + +jQuery.extend( jQuery.event, { + + trigger: function( event, data, elem, onlyHandlers ) { + + var i, cur, tmp, bubbleType, ontype, handle, special, lastElement, + eventPath = [ elem || document ], + type = hasOwn.call( event, "type" ) ? event.type : event, + namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split( "." ) : []; + + cur = lastElement = tmp = elem = elem || document; + + // Don't do events on text and comment nodes + if ( elem.nodeType === 3 || elem.nodeType === 8 ) { + return; + } + + // focus/blur morphs to focusin/out; ensure we're not firing them right now + if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { + return; + } + + if ( type.indexOf( "." ) > -1 ) { + + // Namespaced trigger; create a regexp to match event type in handle() + namespaces = type.split( "." ); + type = namespaces.shift(); + namespaces.sort(); + } + ontype = type.indexOf( ":" ) < 0 && "on" + type; + + // Caller can pass in a jQuery.Event object, Object, or just an event type string + event = event[ jQuery.expando ] ? + event : + new jQuery.Event( type, typeof event === "object" && event ); + + // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true) + event.isTrigger = onlyHandlers ? 2 : 3; + event.namespace = namespaces.join( "." ); + event.rnamespace = event.namespace ? + new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ) : + null; + + // Clean up the event in case it is being reused + event.result = undefined; + if ( !event.target ) { + event.target = elem; + } + + // Clone any incoming data and prepend the event, creating the handler arg list + data = data == null ? + [ event ] : + jQuery.makeArray( data, [ event ] ); + + // Allow special events to draw outside the lines + special = jQuery.event.special[ type ] || {}; + if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { + return; + } + + // Determine event propagation path in advance, per W3C events spec (#9951) + // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) + if ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) { + + bubbleType = special.delegateType || type; + if ( !rfocusMorph.test( bubbleType + type ) ) { + cur = cur.parentNode; + } + for ( ; cur; cur = cur.parentNode ) { + eventPath.push( cur ); + tmp = cur; + } + + // Only add window if we got to document (e.g., not plain obj or detached DOM) + if ( tmp === ( elem.ownerDocument || document ) ) { + eventPath.push( tmp.defaultView || tmp.parentWindow || window ); + } + } + + // Fire handlers on the event path + i = 0; + while ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) { + lastElement = cur; + event.type = i > 1 ? + bubbleType : + special.bindType || type; + + // jQuery handler + handle = ( + dataPriv.get( cur, "events" ) || Object.create( null ) + )[ event.type ] && + dataPriv.get( cur, "handle" ); + if ( handle ) { + handle.apply( cur, data ); + } + + // Native handler + handle = ontype && cur[ ontype ]; + if ( handle && handle.apply && acceptData( cur ) ) { + event.result = handle.apply( cur, data ); + if ( event.result === false ) { + event.preventDefault(); + } + } + } + event.type = type; + + // If nobody prevented the default action, do it now + if ( !onlyHandlers && !event.isDefaultPrevented() ) { + + if ( ( !special._default || + special._default.apply( eventPath.pop(), data ) === false ) && + acceptData( elem ) ) { + + // Call a native DOM method on the target with the same name as the event. + // Don't do default actions on window, that's where global variables be (#6170) + if ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) { + + // Don't re-trigger an onFOO event when we call its FOO() method + tmp = elem[ ontype ]; + + if ( tmp ) { + elem[ ontype ] = null; + } + + // Prevent re-triggering of the same event, since we already bubbled it above + jQuery.event.triggered = type; + + if ( event.isPropagationStopped() ) { + lastElement.addEventListener( type, stopPropagationCallback ); + } + + elem[ type ](); + + if ( event.isPropagationStopped() ) { + lastElement.removeEventListener( type, stopPropagationCallback ); + } + + jQuery.event.triggered = undefined; + + if ( tmp ) { + elem[ ontype ] = tmp; + } + } + } + } + + return event.result; + }, + + // Piggyback on a donor event to simulate a different one + // Used only for `focus(in | out)` events + simulate: function( type, elem, event ) { + var e = jQuery.extend( + new jQuery.Event(), + event, + { + type: type, + isSimulated: true + } + ); + + jQuery.event.trigger( e, null, elem ); + } + +} ); + +jQuery.fn.extend( { + + trigger: function( type, data ) { + return this.each( function() { + jQuery.event.trigger( type, data, this ); + } ); + }, + triggerHandler: function( type, data ) { + var elem = this[ 0 ]; + if ( elem ) { + return jQuery.event.trigger( type, data, elem, true ); + } + } +} ); + + +// Support: Firefox <=44 +// Firefox doesn't have focus(in | out) events +// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787 +// +// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1 +// focus(in | out) events fire after focus & blur events, +// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order +// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857 +if ( !support.focusin ) { + jQuery.each( { focus: "focusin", blur: "focusout" }, function( orig, fix ) { + + // Attach a single capturing handler on the document while someone wants focusin/focusout + var handler = function( event ) { + jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) ); + }; + + jQuery.event.special[ fix ] = { + setup: function() { + + // Handle: regular nodes (via `this.ownerDocument`), window + // (via `this.document`) & document (via `this`). + var doc = this.ownerDocument || this.document || this, + attaches = dataPriv.access( doc, fix ); + + if ( !attaches ) { + doc.addEventListener( orig, handler, true ); + } + dataPriv.access( doc, fix, ( attaches || 0 ) + 1 ); + }, + teardown: function() { + var doc = this.ownerDocument || this.document || this, + attaches = dataPriv.access( doc, fix ) - 1; + + if ( !attaches ) { + doc.removeEventListener( orig, handler, true ); + dataPriv.remove( doc, fix ); + + } else { + dataPriv.access( doc, fix, attaches ); + } + } + }; + } ); +} +var location = window.location; + +var nonce = { guid: Date.now() }; + +var rquery = ( /\?/ ); + + + +// Cross-browser xml parsing +jQuery.parseXML = function( data ) { + var xml; + if ( !data || typeof data !== "string" ) { + return null; + } + + // Support: IE 9 - 11 only + // IE throws on parseFromString with invalid input. + try { + xml = ( new window.DOMParser() ).parseFromString( data, "text/xml" ); + } catch ( e ) { + xml = undefined; + } + + if ( !xml || xml.getElementsByTagName( "parsererror" ).length ) { + jQuery.error( "Invalid XML: " + data ); + } + return xml; +}; + + +var + rbracket = /\[\]$/, + rCRLF = /\r?\n/g, + rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i, + rsubmittable = /^(?:input|select|textarea|keygen)/i; + +function buildParams( prefix, obj, traditional, add ) { + var name; + + if ( Array.isArray( obj ) ) { + + // Serialize array item. + jQuery.each( obj, function( i, v ) { + if ( traditional || rbracket.test( prefix ) ) { + + // Treat each array item as a scalar. + add( prefix, v ); + + } else { + + // Item is non-scalar (array or object), encode its numeric index. + buildParams( + prefix + "[" + ( typeof v === "object" && v != null ? i : "" ) + "]", + v, + traditional, + add + ); + } + } ); + + } else if ( !traditional && toType( obj ) === "object" ) { + + // Serialize object item. + for ( name in obj ) { + buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add ); + } + + } else { + + // Serialize scalar item. + add( prefix, obj ); + } +} + +// Serialize an array of form elements or a set of +// key/values into a query string +jQuery.param = function( a, traditional ) { + var prefix, + s = [], + add = function( key, valueOrFunction ) { + + // If value is a function, invoke it and use its return value + var value = isFunction( valueOrFunction ) ? + valueOrFunction() : + valueOrFunction; + + s[ s.length ] = encodeURIComponent( key ) + "=" + + encodeURIComponent( value == null ? "" : value ); + }; + + if ( a == null ) { + return ""; + } + + // If an array was passed in, assume that it is an array of form elements. + if ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) { + + // Serialize the form elements + jQuery.each( a, function() { + add( this.name, this.value ); + } ); + + } else { + + // If traditional, encode the "old" way (the way 1.3.2 or older + // did it), otherwise encode params recursively. + for ( prefix in a ) { + buildParams( prefix, a[ prefix ], traditional, add ); + } + } + + // Return the resulting serialization + return s.join( "&" ); +}; + +jQuery.fn.extend( { + serialize: function() { + return jQuery.param( this.serializeArray() ); + }, + serializeArray: function() { + return this.map( function() { + + // Can add propHook for "elements" to filter or add form elements + var elements = jQuery.prop( this, "elements" ); + return elements ? jQuery.makeArray( elements ) : this; + } ) + .filter( function() { + var type = this.type; + + // Use .is( ":disabled" ) so that fieldset[disabled] works + return this.name && !jQuery( this ).is( ":disabled" ) && + rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) && + ( this.checked || !rcheckableType.test( type ) ); + } ) + .map( function( _i, elem ) { + var val = jQuery( this ).val(); + + if ( val == null ) { + return null; + } + + if ( Array.isArray( val ) ) { + return jQuery.map( val, function( val ) { + return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; + } ); + } + + return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; + } ).get(); + } +} ); + + +var + r20 = /%20/g, + rhash = /#.*$/, + rantiCache = /([?&])_=[^&]*/, + rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg, + + // #7653, #8125, #8152: local protocol detection + rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/, + rnoContent = /^(?:GET|HEAD)$/, + rprotocol = /^\/\//, + + /* Prefilters + * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example) + * 2) These are called: + * - BEFORE asking for a transport + * - AFTER param serialization (s.data is a string if s.processData is true) + * 3) key is the dataType + * 4) the catchall symbol "*" can be used + * 5) execution will start with transport dataType and THEN continue down to "*" if needed + */ + prefilters = {}, + + /* Transports bindings + * 1) key is the dataType + * 2) the catchall symbol "*" can be used + * 3) selection will start with transport dataType and THEN go to "*" if needed + */ + transports = {}, + + // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression + allTypes = "*/".concat( "*" ), + + // Anchor tag for parsing the document origin + originAnchor = document.createElement( "a" ); + originAnchor.href = location.href; + +// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport +function addToPrefiltersOrTransports( structure ) { + + // dataTypeExpression is optional and defaults to "*" + return function( dataTypeExpression, func ) { + + if ( typeof dataTypeExpression !== "string" ) { + func = dataTypeExpression; + dataTypeExpression = "*"; + } + + var dataType, + i = 0, + dataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || []; + + if ( isFunction( func ) ) { + + // For each dataType in the dataTypeExpression + while ( ( dataType = dataTypes[ i++ ] ) ) { + + // Prepend if requested + if ( dataType[ 0 ] === "+" ) { + dataType = dataType.slice( 1 ) || "*"; + ( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func ); + + // Otherwise append + } else { + ( structure[ dataType ] = structure[ dataType ] || [] ).push( func ); + } + } + } + }; +} + +// Base inspection function for prefilters and transports +function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) { + + var inspected = {}, + seekingTransport = ( structure === transports ); + + function inspect( dataType ) { + var selected; + inspected[ dataType ] = true; + jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) { + var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR ); + if ( typeof dataTypeOrTransport === "string" && + !seekingTransport && !inspected[ dataTypeOrTransport ] ) { + + options.dataTypes.unshift( dataTypeOrTransport ); + inspect( dataTypeOrTransport ); + return false; + } else if ( seekingTransport ) { + return !( selected = dataTypeOrTransport ); + } + } ); + return selected; + } + + return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" ); +} + +// A special extend for ajax options +// that takes "flat" options (not to be deep extended) +// Fixes #9887 +function ajaxExtend( target, src ) { + var key, deep, + flatOptions = jQuery.ajaxSettings.flatOptions || {}; + + for ( key in src ) { + if ( src[ key ] !== undefined ) { + ( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ]; + } + } + if ( deep ) { + jQuery.extend( true, target, deep ); + } + + return target; +} + +/* Handles responses to an ajax request: + * - finds the right dataType (mediates between content-type and expected dataType) + * - returns the corresponding response + */ +function ajaxHandleResponses( s, jqXHR, responses ) { + + var ct, type, finalDataType, firstDataType, + contents = s.contents, + dataTypes = s.dataTypes; + + // Remove auto dataType and get content-type in the process + while ( dataTypes[ 0 ] === "*" ) { + dataTypes.shift(); + if ( ct === undefined ) { + ct = s.mimeType || jqXHR.getResponseHeader( "Content-Type" ); + } + } + + // Check if we're dealing with a known content-type + if ( ct ) { + for ( type in contents ) { + if ( contents[ type ] && contents[ type ].test( ct ) ) { + dataTypes.unshift( type ); + break; + } + } + } + + // Check to see if we have a response for the expected dataType + if ( dataTypes[ 0 ] in responses ) { + finalDataType = dataTypes[ 0 ]; + } else { + + // Try convertible dataTypes + for ( type in responses ) { + if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[ 0 ] ] ) { + finalDataType = type; + break; + } + if ( !firstDataType ) { + firstDataType = type; + } + } + + // Or just use first one + finalDataType = finalDataType || firstDataType; + } + + // If we found a dataType + // We add the dataType to the list if needed + // and return the corresponding response + if ( finalDataType ) { + if ( finalDataType !== dataTypes[ 0 ] ) { + dataTypes.unshift( finalDataType ); + } + return responses[ finalDataType ]; + } +} + +/* Chain conversions given the request and the original response + * Also sets the responseXXX fields on the jqXHR instance + */ +function ajaxConvert( s, response, jqXHR, isSuccess ) { + var conv2, current, conv, tmp, prev, + converters = {}, + + // Work with a copy of dataTypes in case we need to modify it for conversion + dataTypes = s.dataTypes.slice(); + + // Create converters map with lowercased keys + if ( dataTypes[ 1 ] ) { + for ( conv in s.converters ) { + converters[ conv.toLowerCase() ] = s.converters[ conv ]; + } + } + + current = dataTypes.shift(); + + // Convert to each sequential dataType + while ( current ) { + + if ( s.responseFields[ current ] ) { + jqXHR[ s.responseFields[ current ] ] = response; + } + + // Apply the dataFilter if provided + if ( !prev && isSuccess && s.dataFilter ) { + response = s.dataFilter( response, s.dataType ); + } + + prev = current; + current = dataTypes.shift(); + + if ( current ) { + + // There's only work to do if current dataType is non-auto + if ( current === "*" ) { + + current = prev; + + // Convert response if prev dataType is non-auto and differs from current + } else if ( prev !== "*" && prev !== current ) { + + // Seek a direct converter + conv = converters[ prev + " " + current ] || converters[ "* " + current ]; + + // If none found, seek a pair + if ( !conv ) { + for ( conv2 in converters ) { + + // If conv2 outputs current + tmp = conv2.split( " " ); + if ( tmp[ 1 ] === current ) { + + // If prev can be converted to accepted input + conv = converters[ prev + " " + tmp[ 0 ] ] || + converters[ "* " + tmp[ 0 ] ]; + if ( conv ) { + + // Condense equivalence converters + if ( conv === true ) { + conv = converters[ conv2 ]; + + // Otherwise, insert the intermediate dataType + } else if ( converters[ conv2 ] !== true ) { + current = tmp[ 0 ]; + dataTypes.unshift( tmp[ 1 ] ); + } + break; + } + } + } + } + + // Apply converter (if not an equivalence) + if ( conv !== true ) { + + // Unless errors are allowed to bubble, catch and return them + if ( conv && s.throws ) { + response = conv( response ); + } else { + try { + response = conv( response ); + } catch ( e ) { + return { + state: "parsererror", + error: conv ? e : "No conversion from " + prev + " to " + current + }; + } + } + } + } + } + } + + return { state: "success", data: response }; +} + +jQuery.extend( { + + // Counter for holding the number of active queries + active: 0, + + // Last-Modified header cache for next request + lastModified: {}, + etag: {}, + + ajaxSettings: { + url: location.href, + type: "GET", + isLocal: rlocalProtocol.test( location.protocol ), + global: true, + processData: true, + async: true, + contentType: "application/x-www-form-urlencoded; charset=UTF-8", + + /* + timeout: 0, + data: null, + dataType: null, + username: null, + password: null, + cache: null, + throws: false, + traditional: false, + headers: {}, + */ + + accepts: { + "*": allTypes, + text: "text/plain", + html: "text/html", + xml: "application/xml, text/xml", + json: "application/json, text/javascript" + }, + + contents: { + xml: /\bxml\b/, + html: /\bhtml/, + json: /\bjson\b/ + }, + + responseFields: { + xml: "responseXML", + text: "responseText", + json: "responseJSON" + }, + + // Data converters + // Keys separate source (or catchall "*") and destination types with a single space + converters: { + + // Convert anything to text + "* text": String, + + // Text to html (true = no transformation) + "text html": true, + + // Evaluate text as a json expression + "text json": JSON.parse, + + // Parse text as xml + "text xml": jQuery.parseXML + }, + + // For options that shouldn't be deep extended: + // you can add your own custom options here if + // and when you create one that shouldn't be + // deep extended (see ajaxExtend) + flatOptions: { + url: true, + context: true + } + }, + + // Creates a full fledged settings object into target + // with both ajaxSettings and settings fields. + // If target is omitted, writes into ajaxSettings. + ajaxSetup: function( target, settings ) { + return settings ? + + // Building a settings object + ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) : + + // Extending ajaxSettings + ajaxExtend( jQuery.ajaxSettings, target ); + }, + + ajaxPrefilter: addToPrefiltersOrTransports( prefilters ), + ajaxTransport: addToPrefiltersOrTransports( transports ), + + // Main method + ajax: function( url, options ) { + + // If url is an object, simulate pre-1.5 signature + if ( typeof url === "object" ) { + options = url; + url = undefined; + } + + // Force options to be an object + options = options || {}; + + var transport, + + // URL without anti-cache param + cacheURL, + + // Response headers + responseHeadersString, + responseHeaders, + + // timeout handle + timeoutTimer, + + // Url cleanup var + urlAnchor, + + // Request state (becomes false upon send and true upon completion) + completed, + + // To know if global events are to be dispatched + fireGlobals, + + // Loop variable + i, + + // uncached part of the url + uncached, + + // Create the final options object + s = jQuery.ajaxSetup( {}, options ), + + // Callbacks context + callbackContext = s.context || s, + + // Context for global events is callbackContext if it is a DOM node or jQuery collection + globalEventContext = s.context && + ( callbackContext.nodeType || callbackContext.jquery ) ? + jQuery( callbackContext ) : + jQuery.event, + + // Deferreds + deferred = jQuery.Deferred(), + completeDeferred = jQuery.Callbacks( "once memory" ), + + // Status-dependent callbacks + statusCode = s.statusCode || {}, + + // Headers (they are sent all at once) + requestHeaders = {}, + requestHeadersNames = {}, + + // Default abort message + strAbort = "canceled", + + // Fake xhr + jqXHR = { + readyState: 0, + + // Builds headers hashtable if needed + getResponseHeader: function( key ) { + var match; + if ( completed ) { + if ( !responseHeaders ) { + responseHeaders = {}; + while ( ( match = rheaders.exec( responseHeadersString ) ) ) { + responseHeaders[ match[ 1 ].toLowerCase() + " " ] = + ( responseHeaders[ match[ 1 ].toLowerCase() + " " ] || [] ) + .concat( match[ 2 ] ); + } + } + match = responseHeaders[ key.toLowerCase() + " " ]; + } + return match == null ? null : match.join( ", " ); + }, + + // Raw string + getAllResponseHeaders: function() { + return completed ? responseHeadersString : null; + }, + + // Caches the header + setRequestHeader: function( name, value ) { + if ( completed == null ) { + name = requestHeadersNames[ name.toLowerCase() ] = + requestHeadersNames[ name.toLowerCase() ] || name; + requestHeaders[ name ] = value; + } + return this; + }, + + // Overrides response content-type header + overrideMimeType: function( type ) { + if ( completed == null ) { + s.mimeType = type; + } + return this; + }, + + // Status-dependent callbacks + statusCode: function( map ) { + var code; + if ( map ) { + if ( completed ) { + + // Execute the appropriate callbacks + jqXHR.always( map[ jqXHR.status ] ); + } else { + + // Lazy-add the new callbacks in a way that preserves old ones + for ( code in map ) { + statusCode[ code ] = [ statusCode[ code ], map[ code ] ]; + } + } + } + return this; + }, + + // Cancel the request + abort: function( statusText ) { + var finalText = statusText || strAbort; + if ( transport ) { + transport.abort( finalText ); + } + done( 0, finalText ); + return this; + } + }; + + // Attach deferreds + deferred.promise( jqXHR ); + + // Add protocol if not provided (prefilters might expect it) + // Handle falsy url in the settings object (#10093: consistency with old signature) + // We also use the url parameter if available + s.url = ( ( url || s.url || location.href ) + "" ) + .replace( rprotocol, location.protocol + "//" ); + + // Alias method option to type as per ticket #12004 + s.type = options.method || options.type || s.method || s.type; + + // Extract dataTypes list + s.dataTypes = ( s.dataType || "*" ).toLowerCase().match( rnothtmlwhite ) || [ "" ]; + + // A cross-domain request is in order when the origin doesn't match the current origin. + if ( s.crossDomain == null ) { + urlAnchor = document.createElement( "a" ); + + // Support: IE <=8 - 11, Edge 12 - 15 + // IE throws exception on accessing the href property if url is malformed, + // e.g. http://example.com:80x/ + try { + urlAnchor.href = s.url; + + // Support: IE <=8 - 11 only + // Anchor's host property isn't correctly set when s.url is relative + urlAnchor.href = urlAnchor.href; + s.crossDomain = originAnchor.protocol + "//" + originAnchor.host !== + urlAnchor.protocol + "//" + urlAnchor.host; + } catch ( e ) { + + // If there is an error parsing the URL, assume it is crossDomain, + // it can be rejected by the transport if it is invalid + s.crossDomain = true; + } + } + + // Convert data if not already a string + if ( s.data && s.processData && typeof s.data !== "string" ) { + s.data = jQuery.param( s.data, s.traditional ); + } + + // Apply prefilters + inspectPrefiltersOrTransports( prefilters, s, options, jqXHR ); + + // If request was aborted inside a prefilter, stop there + if ( completed ) { + return jqXHR; + } + + // We can fire global events as of now if asked to + // Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118) + fireGlobals = jQuery.event && s.global; + + // Watch for a new set of requests + if ( fireGlobals && jQuery.active++ === 0 ) { + jQuery.event.trigger( "ajaxStart" ); + } + + // Uppercase the type + s.type = s.type.toUpperCase(); + + // Determine if request has content + s.hasContent = !rnoContent.test( s.type ); + + // Save the URL in case we're toying with the If-Modified-Since + // and/or If-None-Match header later on + // Remove hash to simplify url manipulation + cacheURL = s.url.replace( rhash, "" ); + + // More options handling for requests with no content + if ( !s.hasContent ) { + + // Remember the hash so we can put it back + uncached = s.url.slice( cacheURL.length ); + + // If data is available and should be processed, append data to url + if ( s.data && ( s.processData || typeof s.data === "string" ) ) { + cacheURL += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data; + + // #9682: remove data so that it's not used in an eventual retry + delete s.data; + } + + // Add or update anti-cache param if needed + if ( s.cache === false ) { + cacheURL = cacheURL.replace( rantiCache, "$1" ); + uncached = ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + ( nonce.guid++ ) + + uncached; + } + + // Put hash and anti-cache on the URL that will be requested (gh-1732) + s.url = cacheURL + uncached; + + // Change '%20' to '+' if this is encoded form body content (gh-2658) + } else if ( s.data && s.processData && + ( s.contentType || "" ).indexOf( "application/x-www-form-urlencoded" ) === 0 ) { + s.data = s.data.replace( r20, "+" ); + } + + // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. + if ( s.ifModified ) { + if ( jQuery.lastModified[ cacheURL ] ) { + jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] ); + } + if ( jQuery.etag[ cacheURL ] ) { + jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] ); + } + } + + // Set the correct header, if data is being sent + if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) { + jqXHR.setRequestHeader( "Content-Type", s.contentType ); + } + + // Set the Accepts header for the server, depending on the dataType + jqXHR.setRequestHeader( + "Accept", + s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ? + s.accepts[ s.dataTypes[ 0 ] ] + + ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) : + s.accepts[ "*" ] + ); + + // Check for headers option + for ( i in s.headers ) { + jqXHR.setRequestHeader( i, s.headers[ i ] ); + } + + // Allow custom headers/mimetypes and early abort + if ( s.beforeSend && + ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) { + + // Abort if not done already and return + return jqXHR.abort(); + } + + // Aborting is no longer a cancellation + strAbort = "abort"; + + // Install callbacks on deferreds + completeDeferred.add( s.complete ); + jqXHR.done( s.success ); + jqXHR.fail( s.error ); + + // Get transport + transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR ); + + // If no transport, we auto-abort + if ( !transport ) { + done( -1, "No Transport" ); + } else { + jqXHR.readyState = 1; + + // Send global event + if ( fireGlobals ) { + globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] ); + } + + // If request was aborted inside ajaxSend, stop there + if ( completed ) { + return jqXHR; + } + + // Timeout + if ( s.async && s.timeout > 0 ) { + timeoutTimer = window.setTimeout( function() { + jqXHR.abort( "timeout" ); + }, s.timeout ); + } + + try { + completed = false; + transport.send( requestHeaders, done ); + } catch ( e ) { + + // Rethrow post-completion exceptions + if ( completed ) { + throw e; + } + + // Propagate others as results + done( -1, e ); + } + } + + // Callback for when everything is done + function done( status, nativeStatusText, responses, headers ) { + var isSuccess, success, error, response, modified, + statusText = nativeStatusText; + + // Ignore repeat invocations + if ( completed ) { + return; + } + + completed = true; + + // Clear timeout if it exists + if ( timeoutTimer ) { + window.clearTimeout( timeoutTimer ); + } + + // Dereference transport for early garbage collection + // (no matter how long the jqXHR object will be used) + transport = undefined; + + // Cache response headers + responseHeadersString = headers || ""; + + // Set readyState + jqXHR.readyState = status > 0 ? 4 : 0; + + // Determine if successful + isSuccess = status >= 200 && status < 300 || status === 304; + + // Get response data + if ( responses ) { + response = ajaxHandleResponses( s, jqXHR, responses ); + } + + // Use a noop converter for missing script + if ( !isSuccess && jQuery.inArray( "script", s.dataTypes ) > -1 ) { + s.converters[ "text script" ] = function() {}; + } + + // Convert no matter what (that way responseXXX fields are always set) + response = ajaxConvert( s, response, jqXHR, isSuccess ); + + // If successful, handle type chaining + if ( isSuccess ) { + + // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. + if ( s.ifModified ) { + modified = jqXHR.getResponseHeader( "Last-Modified" ); + if ( modified ) { + jQuery.lastModified[ cacheURL ] = modified; + } + modified = jqXHR.getResponseHeader( "etag" ); + if ( modified ) { + jQuery.etag[ cacheURL ] = modified; + } + } + + // if no content + if ( status === 204 || s.type === "HEAD" ) { + statusText = "nocontent"; + + // if not modified + } else if ( status === 304 ) { + statusText = "notmodified"; + + // If we have data, let's convert it + } else { + statusText = response.state; + success = response.data; + error = response.error; + isSuccess = !error; + } + } else { + + // Extract error from statusText and normalize for non-aborts + error = statusText; + if ( status || !statusText ) { + statusText = "error"; + if ( status < 0 ) { + status = 0; + } + } + } + + // Set data for the fake xhr object + jqXHR.status = status; + jqXHR.statusText = ( nativeStatusText || statusText ) + ""; + + // Success/Error + if ( isSuccess ) { + deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] ); + } else { + deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] ); + } + + // Status-dependent callbacks + jqXHR.statusCode( statusCode ); + statusCode = undefined; + + if ( fireGlobals ) { + globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError", + [ jqXHR, s, isSuccess ? success : error ] ); + } + + // Complete + completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] ); + + if ( fireGlobals ) { + globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] ); + + // Handle the global AJAX counter + if ( !( --jQuery.active ) ) { + jQuery.event.trigger( "ajaxStop" ); + } + } + } + + return jqXHR; + }, + + getJSON: function( url, data, callback ) { + return jQuery.get( url, data, callback, "json" ); + }, + + getScript: function( url, callback ) { + return jQuery.get( url, undefined, callback, "script" ); + } +} ); + +jQuery.each( [ "get", "post" ], function( _i, method ) { + jQuery[ method ] = function( url, data, callback, type ) { + + // Shift arguments if data argument was omitted + if ( isFunction( data ) ) { + type = type || callback; + callback = data; + data = undefined; + } + + // The url can be an options object (which then must have .url) + return jQuery.ajax( jQuery.extend( { + url: url, + type: method, + dataType: type, + data: data, + success: callback + }, jQuery.isPlainObject( url ) && url ) ); + }; +} ); + +jQuery.ajaxPrefilter( function( s ) { + var i; + for ( i in s.headers ) { + if ( i.toLowerCase() === "content-type" ) { + s.contentType = s.headers[ i ] || ""; + } + } +} ); + + +jQuery._evalUrl = function( url, options, doc ) { + return jQuery.ajax( { + url: url, + + // Make this explicit, since user can override this through ajaxSetup (#11264) + type: "GET", + dataType: "script", + cache: true, + async: false, + global: false, + + // Only evaluate the response if it is successful (gh-4126) + // dataFilter is not invoked for failure responses, so using it instead + // of the default converter is kludgy but it works. + converters: { + "text script": function() {} + }, + dataFilter: function( response ) { + jQuery.globalEval( response, options, doc ); + } + } ); +}; + + +jQuery.fn.extend( { + wrapAll: function( html ) { + var wrap; + + if ( this[ 0 ] ) { + if ( isFunction( html ) ) { + html = html.call( this[ 0 ] ); + } + + // The elements to wrap the target around + wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true ); + + if ( this[ 0 ].parentNode ) { + wrap.insertBefore( this[ 0 ] ); + } + + wrap.map( function() { + var elem = this; + + while ( elem.firstElementChild ) { + elem = elem.firstElementChild; + } + + return elem; + } ).append( this ); + } + + return this; + }, + + wrapInner: function( html ) { + if ( isFunction( html ) ) { + return this.each( function( i ) { + jQuery( this ).wrapInner( html.call( this, i ) ); + } ); + } + + return this.each( function() { + var self = jQuery( this ), + contents = self.contents(); + + if ( contents.length ) { + contents.wrapAll( html ); + + } else { + self.append( html ); + } + } ); + }, + + wrap: function( html ) { + var htmlIsFunction = isFunction( html ); + + return this.each( function( i ) { + jQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html ); + } ); + }, + + unwrap: function( selector ) { + this.parent( selector ).not( "body" ).each( function() { + jQuery( this ).replaceWith( this.childNodes ); + } ); + return this; + } +} ); + + +jQuery.expr.pseudos.hidden = function( elem ) { + return !jQuery.expr.pseudos.visible( elem ); +}; +jQuery.expr.pseudos.visible = function( elem ) { + return !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length ); +}; + + + + +jQuery.ajaxSettings.xhr = function() { + try { + return new window.XMLHttpRequest(); + } catch ( e ) {} +}; + +var xhrSuccessStatus = { + + // File protocol always yields status code 0, assume 200 + 0: 200, + + // Support: IE <=9 only + // #1450: sometimes IE returns 1223 when it should be 204 + 1223: 204 + }, + xhrSupported = jQuery.ajaxSettings.xhr(); + +support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported ); +support.ajax = xhrSupported = !!xhrSupported; + +jQuery.ajaxTransport( function( options ) { + var callback, errorCallback; + + // Cross domain only allowed if supported through XMLHttpRequest + if ( support.cors || xhrSupported && !options.crossDomain ) { + return { + send: function( headers, complete ) { + var i, + xhr = options.xhr(); + + xhr.open( + options.type, + options.url, + options.async, + options.username, + options.password + ); + + // Apply custom fields if provided + if ( options.xhrFields ) { + for ( i in options.xhrFields ) { + xhr[ i ] = options.xhrFields[ i ]; + } + } + + // Override mime type if needed + if ( options.mimeType && xhr.overrideMimeType ) { + xhr.overrideMimeType( options.mimeType ); + } + + // X-Requested-With header + // For cross-domain requests, seeing as conditions for a preflight are + // akin to a jigsaw puzzle, we simply never set it to be sure. + // (it can always be set on a per-request basis or even using ajaxSetup) + // For same-domain requests, won't change header if already provided. + if ( !options.crossDomain && !headers[ "X-Requested-With" ] ) { + headers[ "X-Requested-With" ] = "XMLHttpRequest"; + } + + // Set headers + for ( i in headers ) { + xhr.setRequestHeader( i, headers[ i ] ); + } + + // Callback + callback = function( type ) { + return function() { + if ( callback ) { + callback = errorCallback = xhr.onload = + xhr.onerror = xhr.onabort = xhr.ontimeout = + xhr.onreadystatechange = null; + + if ( type === "abort" ) { + xhr.abort(); + } else if ( type === "error" ) { + + // Support: IE <=9 only + // On a manual native abort, IE9 throws + // errors on any property access that is not readyState + if ( typeof xhr.status !== "number" ) { + complete( 0, "error" ); + } else { + complete( + + // File: protocol always yields status 0; see #8605, #14207 + xhr.status, + xhr.statusText + ); + } + } else { + complete( + xhrSuccessStatus[ xhr.status ] || xhr.status, + xhr.statusText, + + // Support: IE <=9 only + // IE9 has no XHR2 but throws on binary (trac-11426) + // For XHR2 non-text, let the caller handle it (gh-2498) + ( xhr.responseType || "text" ) !== "text" || + typeof xhr.responseText !== "string" ? + { binary: xhr.response } : + { text: xhr.responseText }, + xhr.getAllResponseHeaders() + ); + } + } + }; + }; + + // Listen to events + xhr.onload = callback(); + errorCallback = xhr.onerror = xhr.ontimeout = callback( "error" ); + + // Support: IE 9 only + // Use onreadystatechange to replace onabort + // to handle uncaught aborts + if ( xhr.onabort !== undefined ) { + xhr.onabort = errorCallback; + } else { + xhr.onreadystatechange = function() { + + // Check readyState before timeout as it changes + if ( xhr.readyState === 4 ) { + + // Allow onerror to be called first, + // but that will not handle a native abort + // Also, save errorCallback to a variable + // as xhr.onerror cannot be accessed + window.setTimeout( function() { + if ( callback ) { + errorCallback(); + } + } ); + } + }; + } + + // Create the abort callback + callback = callback( "abort" ); + + try { + + // Do send the request (this may raise an exception) + xhr.send( options.hasContent && options.data || null ); + } catch ( e ) { + + // #14683: Only rethrow if this hasn't been notified as an error yet + if ( callback ) { + throw e; + } + } + }, + + abort: function() { + if ( callback ) { + callback(); + } + } + }; + } +} ); + + + + +// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432) +jQuery.ajaxPrefilter( function( s ) { + if ( s.crossDomain ) { + s.contents.script = false; + } +} ); + +// Install script dataType +jQuery.ajaxSetup( { + accepts: { + script: "text/javascript, application/javascript, " + + "application/ecmascript, application/x-ecmascript" + }, + contents: { + script: /\b(?:java|ecma)script\b/ + }, + converters: { + "text script": function( text ) { + jQuery.globalEval( text ); + return text; + } + } +} ); + +// Handle cache's special case and crossDomain +jQuery.ajaxPrefilter( "script", function( s ) { + if ( s.cache === undefined ) { + s.cache = false; + } + if ( s.crossDomain ) { + s.type = "GET"; + } +} ); + +// Bind script tag hack transport +jQuery.ajaxTransport( "script", function( s ) { + + // This transport only deals with cross domain or forced-by-attrs requests + if ( s.crossDomain || s.scriptAttrs ) { + var script, callback; + return { + send: function( _, complete ) { + script = jQuery( " - - - -
                - - diff --git a/bin/02_CITests/Converter/google_charts.py b/bin/02_CITests/Converter/google_charts.py deleted file mode 100644 index 1baaba0cf5..0000000000 --- a/bin/02_CITests/Converter/google_charts.py +++ /dev/null @@ -1,533 +0,0 @@ -# Libraries -import matplotlib.pyplot as plt -from matplotlib.widgets import CheckButtons -import numpy as np -import sys,difflib -import os -from git import Repo -from shutil import copyfile -import shutil -import pathlib -import glob -import gviz_api -from matplotlib.pyplot import figure -import mpld3 -# get datas and create a line chart - - -def read_data(): - ref_file = "bin"+os.sep+"02_CITests"+os.sep+"Converter"+os.sep+"IBPSA_Airflow_Multizone_Examples_CO2TransportStep.txt" - Entire = 0 - ## Lists - Value_List= [] - time_List =[] - X_Axis, Y_Axis = [], [] - ## Dictionary - distriction_values = {} - distriction_time = {} - for line in open(ref_file, 'r'): - if line.find("last-generated=") > -1: - continue - if line.find("statistics-simulation=") > -1: - continue - values = (line.split("=")) - if len(values) < 2: - continue - legend = values[0] - #print(legend) - numbers = values[1] - #print(numbers) - if legend.find("time") > -1 : - distriction_time[legend] = numbers - continue - distriction_values[legend] = numbers - Value_List.append(legend) - continue - for i in Value_List: - y = distriction_values.get(i) - y = y.split(",") - for v in y: - v = v.replace("[","") - v = v.replace("]","") - v = v.replace("\n","") - v = v.replace("'","") - v = v.lstrip() - v = float(v) - Y_Axis.append(v) - - x = distriction_time.get("time") - x = x.replace("[","") - x = x.replace("]","") - x = x.replace("\n","") - x = x.replace("'","") - x = x.lstrip() - x = x.split(",") - - time_end = float((x[len(x)-1])) - time_beg = float((x[0])) - time_int = time_end - time_beg - tim_seq = time_int/ (float(len(Y_Axis))/float(len(Value_List))) - - num_times = time_beg - times_list = [] - t = ((float(len(Y_Axis))/float(len(Value_List)))) - i = 0 - while (i) < t: - times_list.append(num_times) - num_times = num_times + tim_seq - i = i +1 - X_Axis = times_list - - return distriction_values, distriction_time, Value_List,X_Axis,ref_file - - - -def func_plot(distriction_values, distriction_time, Value_List,X_Axis,ref_file): - dia_name = ref_file.replace(".txt","") - dia_name = dia_name.replace("_",".") - - counter = 0 - - fig, ax = plt.subplots() - lines_list = [] - for i in Value_List: - Y_Axis = [] - counter = counter + 1 - y = distriction_values.get(i) - y = y.split(",") - for v in y: - v = v.replace("[","") - v = v.replace("]","") - v = v.replace("\n","") - v = v.replace("'","") - v = v.lstrip() - v = float(v) - Y_Axis.append(v) - - l0, = ax.plot(X_Axis,Y_Axis, visible=False, lw=2, color='k', label=i) - lines_list.append(l0,) - lines = [] - for k in lines_list: - lines.append(k) - - - #check = CheckButtons(rax, Value_List, [False, True]) - #plt.title(dia_name) - #plt.xlabel("Time") - #plt.ylabel(Value_List[0]) - #plt.yticks(Y_Axis) - #check.on_clicked(func) - #plt.plot(X_Axis, Y_Axis, marker = 'o', c = 'g') - - #plt.show() - - return lines, fig - -def write_data_rows(): - - print("testq") - for i, j in zip((1,2,3), (4,5,6)): - print (i, j) - -def _CloneRepository(): - git_url = "https://github.com/ibpsa/modelica-ibpsa.git" - repo_dir = "modelica-ibpsa" - if os.path.exists(repo_dir): - print("IBPSA folder exists already!") - else: - print("Clone IBPSA Repo") - repo = Repo.clone_from(git_url, repo_dir) - - -def createFolder(directory): - try: - if not os.path.exists(directory): - os.makedirs(directory) - except OSError: - print ('Error: Creating directory. ' + directory) - - -def diff_ref(path_aix,path_ibpsa,path_diff,path_new): - aix_ref_files = os.listdir(path_aix) - ibpsa_ref_files = os.listdir(path_ibpsa) - ibpsa_list = [] - ## Give double reference files - for i in ibpsa_ref_files: - i = i.replace("IBPSA","AixLib") - ibpsa_list.append(i) - - set1 = set(aix_ref_files) - set2 = set(ibpsa_list) - set3 = set1.intersection(set2) - list3 = list(set3) - - for f in list3: - aix_ref = f - ibpsa_ref = f.replace("AixLib","IBPSA") - - aix_ref = path_aix+os.sep+ aix_ref - ibpsa_ref = path_ibpsa+os.sep+ibpsa_ref - result = path_diff +os.sep+f - - - outputFile = open(result,"w") - inputFile1 = open(aix_ref,"r") - inputFile2 = open(ibpsa_ref,"r") - - line1 = inputFile1.readline() - line2 = inputFile2.readline() - - while line1 != "" or line2 != "": - if line1 != line2: - outputFile.write("AixLib: "+line1) - outputFile.write("IBPSA: "+line2+"\n") - - line1 = inputFile1.readline() - line2 = inputFile2.readline() - inputFile1.close() - inputFile2.close() - outputFile.close() - - for root,dirs,files in os.walk(path_diff): - for name in files: - filename = os.path.join(root,name) - if os.stat(filename).st_size == 0: - os.remove(filename) - - - diff_ref = os.listdir(path_diff) - new_ref =(set1^set2)&set2 - - for i in new_ref: - i = i.replace("AixLib","IBPSA") - source = path_ibpsa+os.sep+i - shutil.copy2(source,path_new) - - - new_ref =os.listdir(path_new) - return diff_ref, new_ref - -def get_lines(filename): - f = open(filename,"r") - lines = f.readline() - f.close - return lines - - -def add_new_ref(diff_ref,new_ref,path_aix,path_ibpsa,path_new,path_diff): - new_ref_list = [] - for i in new_ref: - source = path_new+os.sep+i - ibp = path_new+os.sep+i.replace("IBPSA","AixLib") - file = pathlib.Path(ibp) - - if file.exists (): - new_ref_list.append(file) - continue - - if i.find("IBPSA")> -1 : - i = i.replace("IBPSA","AixLib") - i = path_new+os.sep+i - os.rename(source, i) - else: - i = path_new+os.sep+i - new_ref_list.append(i) - - ## Copy New Files - for i in new_ref_list: - path = path_aix - shutil.copy2(i,path) - - for i in diff_ref: - path = path_aix - i = i.replace("AixLib","IBPSA") - source = path_ibpsa+os.sep+i - target = path+os.sep+i.replace("IBPSA","AixLib") - shutil.copy2(source,target) - - -#def delte_ibpsa_dir(): - - ''' - for i in new_ref: - #i = i.replace("IBPSA","AixLib") - new_ref_list.append(i) - for k in diff_ref: - #k = i.replace("AixLib","IBPSA") - new_ref_list.append(k) - #print(new_ref_list) - - # Delte AixLib Reference Files - for l in diff_ref: - file = path_aix+os.sep+l - os.remove(file) - # Add new and updated reference files - #for - #shutil.copy2(source,path_new)''' - -def func(label): - index = labels.index(label) - lines[index].set_visible(not lines[index].get_visible()) - plt.draw() - -def diff_mos(path_aix_mos,path_ibpsa_mos,path_diff_mos,path_new_mos): - - aix_mos_files = glob.glob(path_aix_mos+os.sep+'**/*.mos',recursive=True) - ibpsa_mos_files = glob.glob(path_ibpsa_mos+os.sep+'**/*.mos',recursive=True) - - ibpsa_list = [] - aixlib_list = [] - ## Give double mos files - for i in ibpsa_mos_files: - ibpsa_list.append(i.split(os.sep)[-1]) - for i in aix_mos_files: - aixlib_list.append(i.split(os.sep)[-1]) - - - set1 = set(aixlib_list) - set2 = set(ibpsa_list) - set3 = set1.intersection(set2) - list3 = list(set3) - for i in list3: - aixlib = glob.glob(path_aix_mos+os.sep+'**/*'+os.sep+i,recursive=True) - ibpsa = glob.glob(path_ibpsa_mos+os.sep+'**/*'+os.sep+i,recursive=True) - for l in aixlib: - aix = l - ibpsa = "modelica-ibpsa"+os.sep+l.replace("AixLib","IBPSA") - result = path_diff_mos +os.sep+l - result = (result.replace(os.sep+"AixLib"+os.sep+"Resources"+os.sep+"Scripts"+os.sep+"Dymola","")) - createFolder(result[:result.rfind(os.sep)]) - - outputFile = open(result,"w") - inputFile1 = open(aix,"r") - inputFile2 = open(ibpsa,"r") - - line1 = inputFile1.readline() - line2 = inputFile2.readline() - line3 = line2.replace("IBPSA","AixLib") - while line1 != "" or line3 != "": - if line1 != line3: - outputFile.write("AixLib: "+line1) - outputFile.write("IBPSA: "+line2+"\n") - - line1 = inputFile1.readline() - line3 = inputFile2.readline() - inputFile1.close() - inputFile2.close() - outputFile.close() - #print(result) - if os.stat(result).st_size == 0: - os.remove(result) - - new_ref =(set1^set2)&set2 - new_mos_list = [] - for i in new_ref: - if i.find("ConvertIBPSA") > -1 : - continue - else: - ibpsa = glob.glob(path_ibpsa_mos+os.sep+'**/*'+os.sep+i,recursive=True) - new_mos_list.append(ibpsa) - source = path_new_mos+os.sep+i - for l in ibpsa: - shutil.copy2(l,source) - - - - -def removeEmptyFolders(path, removeRoot=True): - #'Function to remove empty folders' - if not os.path.isdir(path): - return - - # remove empty subfolders - files = os.listdir(path) - if len(files): - for f in files: - fullpath = os.path.join(path, f) - if os.path.isdir(fullpath): - removeEmptyFolders(fullpath) - - # if folder empty, delete it - files = os.listdir(path) - if len(files) == 0 and removeRoot: - #print("Removing empty folder: "+ path) - os.rmdir(path) - -def usageString(): - 'Return usage string to be output in error cases' - return 'Usage: %s directory [removeRoot]' % sys.argv[0] - - - - -def main(): - # Creating the data - description = {"name": ("string", "Name"), - "salary": ("number", "Salary"), - "full_time": ("boolean", "Full Time Employee")} - data = [{"name": "Mike", "salary": (10000, "$10,000"), "full_time": True}, - {"name": "Jim", "salary": (800, "$800"), "full_time": False}, - {"name": "Alice", "salary": (12500, "$12,500"), "full_time": True}, - {"name": "Bob", "salary": (7000, "$7,000"), "full_time": True}] - - # Loading it into gviz_api.DataTable - data_table = gviz_api.DataTable(description) - data_table.LoadData(data) - - # Create a JavaScript code string. - jscode = data_table.ToJSCode("jscode_data", - columns_order=("name", "salary", "full_time"), - order_by="salary") - # Create a JSON string. - json = data_table.ToJSon(columns_order=("name", "salary", "full_time"), - order_by="salary") - - # Put the JS code and JSON string into the template. - #print("Content-type: text/html") - - #print( page_template % vars()) - ref_file = "bin"+os.sep+"02_CITests"+os.sep+"Converter"+os.sep+"index.html" - file = open(ref_file,"w") - file.write(page_template % vars()) - -if __name__ == '__main__': - ### Settings - ''' - path_aix = "AixLib"+os.sep+"Resources"+os.sep+"ReferenceResults"+os.sep+"Dymola" - path_ibpsa = "modelica-ibpsa"+os.sep+"IBPSA"+os.sep+"Resources"+os.sep+"ReferenceResults"+os.sep+"Dymola" - - path_aix_mos = "AixLib"+os.sep+"Resources"+os.sep+"Scripts"+os.sep+"Dymola" - path_ibpsa_mos = "modelica-ibpsa"+os.sep+"IBPSA"+os.sep+"Resources"+os.sep+"Scripts"+os.sep+"Dymola" - - path_diff = "bin"+os.sep+"03_WhiteLists"+os.sep+"Ref_list"+os.sep+"diff_ref" - createFolder(path_diff) - path_new = "bin"+os.sep+"03_WhiteLists"+os.sep+"Ref_list"+os.sep+"new_ref" - createFolder(path_new) - - path_diff_mos = "bin"+os.sep+"03_WhiteLists"+os.sep+"mos_list"+os.sep+"diff_mos" - createFolder(path_diff_mos) - path_new_mos = "bin"+os.sep+"03_WhiteLists"+os.sep+"mos_list"+os.sep+"new_mos" - createFolder(path_new_mos) - - - _CloneRepository() - - results = diff_ref(path_aix,path_ibpsa,path_diff,path_new) - diff_ref = results[0] - new_ref = results[1] - - add_new_ref(diff_ref,new_ref,path_aix,path_ibpsa,path_new,path_diff) - - mos_results = diff_mos(path_aix_mos,path_ibpsa_mos,path_diff_mos,path_new_mos) - #print(mos_results) - - removeRoot = True - removeEmptyFolders(path_diff_mos, removeRoot) - - - ''' - - - #write_data_rows() - results = read_data() - ## Value Number with Legend - distriction_values = results[0] - ## Value time with time sequence - distriction_time = results[1] - ## Legend name - Value_List = results[2] - ## Reference File - ref_file = results[4] - ## Number value - X_Axis = results[3] - - - - result = func_plot(distriction_values, distriction_time, Value_List,X_Axis,ref_file) - lines = result[0] - fig = result[1] - plt.subplots_adjust(left=0.2) - rax = plt.axes([0.05, 0.4, 0.1, 0.15]) - labels = [str(line.get_label()) for line in lines] - visibility = [line.get_visible() for line in lines] - check = CheckButtons(rax, labels, visibility) - - #check.on_clicked(func) - check.on_clicked(func) - - t = plt.show() - #func_plot.check.on_clicked(func) - #Create_Line_Chart(distriction_values, distriction_time, Value_List,X_Axis,ref_file) - #mpld3.save_html(fig,'myfig.html') - - - fig = figure() - ax = fig.gca() - ax.plot([1,2,3,4]) - #print(type(fig)) - mpld3.save_html(fig,'myfig.html') - - - ''' - - page_template = """ - - - - - - -
                - - - """ - main()''' - - \ No newline at end of file diff --git a/bin/02_CITests/Converter/index.html b/bin/02_CITests/Converter/index.html deleted file mode 100644 index dfd5dc77fe..0000000000 --- a/bin/02_CITests/Converter/index.html +++ /dev/null @@ -1,58 +0,0 @@ - - - - - - - -
                - - - \ No newline at end of file diff --git a/bin/02_CITests/SyntaxTests/StyleChecking.py b/bin/02_CITests/SyntaxTests/StyleChecking.py deleted file mode 100644 index 81b96c24cf..0000000000 --- a/bin/02_CITests/SyntaxTests/StyleChecking.py +++ /dev/null @@ -1,245 +0,0 @@ -from buildingspy.development import error_dictionary_jmodelica -from buildingspy.development import error_dictionary_dymola - -import codecs -import multiprocessing -import argparse -import os -import sys -import platform - - -from git import Repo - -from sort_models import git_models - -class Git_Repository_Clone(object): - """work with Repository in Git""" - def __init__(self, Repository): - self.Repository = Repository - - def _CloneRepository(self): - git_url = "https://github.com/ibpsa/modelica-ibpsa.git" - repo_dir = "IBPSA" - repo = Repo.clone_from(git_url, repo_dir) - print(repo) - - def _git_push_WhiteList(self): - WhiteList_file = "bin"+os.sep+"03_WhiteLists"+os.sep+"WhiteList_CheckModel.txt" - repo_dir = "" - try: - repo = Repo(repo_dir) - commit_message = "Update new WhiteList [ci skip]" - repo.git.add(WhiteList_file) - repo.index.commit(commit_message) - origin = repo.remote('origin') - origin.push('master') - repo.git.add(update=True) - print("repo push succesfully") - except Exception as e: - print(str(e)) - - - -class StyleCheck(object): - """ Class to Check the Style of Packages and Models - Export a HTML-Log File""" - - def __init__(self, Package, Library, tool,DymolaVersion,Changedmodels): - self.Package = Package - self.Library = Library - self.tool = tool - self.DymolaVersion = DymolaVersion - self.Changedmodels = Changedmodels - - def _CheckStyle(self): - DymolaVersion = self.DymolaVersion - from dymola.dymola_interface import DymolaInterface - from dymola.dymola_exception import DymolaException - import buildingspy.development.regressiontest as u - ut = u.Tester(tool = self.tool) - if platform.system() == "Windows": - dymola = DymolaInterface(showwindow=True) - else: - dymola = DymolaInterface(dymolapath="/usr/local/bin/dymola") - # Load AixLib - LibraryCheck = dymola.openModel(self.Library) - if LibraryCheck == True: - print("Found AixLib Library and start style check") - elif LibraryCheck == False: - print("Library Path is wrong. Please Check Path of AixLib Library Path") - exit(1) - - # Load ModelManagement - if platform.system() == "Windows": - dymola.ExecuteCommand('cd("C:\Program Files\Dymola '+DymolaVersion+'\Modelica\Library\ModelManagement 1.1.8\package.moe");') - - else: - dymola.ExecuteCommand('cd("/opt/dymola-'+DymolaVersion+'-x86_64/Modelica/Library/ModelManagement 1.1.8/package.moe");') - # Start CheckLibrary in ModelManagement - print("Start Style Check") - if self.Changedmodels == False: - print("Check package or model "+ self.Package) - dymola.ExecuteCommand('ModelManagement.Check.checkLibrary(false, false, false, true, "'+self.Package+'", translationStructure=false);') - Logfile = self.Library.replace("package.mo",self.Package+"_StyleCheckLog.html") - model_list = [] - else: - changed_model_list=[] - list_mo_models = git_models(".mo",self.Package) - model_list= list_mo_models.sort_mo_models() - #print(model_list) - if len(model_list) > 100: - print("Over 100 changed models. Check all models in AixLib Library") - print("Check AixLib Library: "+ self.Package) - dymola.ExecuteCommand('ModelManagement.Check.checkLibrary(false, false, false, true, "'+self.Package+'", translationStructure=false);') - Logfile = self.Library.replace("package.mo",self.Package+"_StyleCheckLog.html") - self.Changedmodels = False - else: - for l in model_list: - print("Check package or model "+ l) - path = self.Library.replace("package.mo", "") - dymola.ExecuteCommand('ModelManagement.Check.checkLibrary(false, false, false, true, "'+l+'", translationStructure=false);') - inputfile = path+l+"_StyleCheckLog.html" - log = codecs.open(inputfile,"r",encoding='utf8') - for line in log: - changed_model_list.append(line) - log.close() - os.remove(inputfile) - path_outfile = "ChangedModels_StyleCheckLog.html" - all_logs = codecs.open(path+path_outfile, "w", encoding='utf8') - for i in changed_model_list: - all_logs.write(i) - all_logs.close() - Logfile = path+path_outfile - dymola.close() - print("Style Check Complete") - return Logfile, model_list - - def _StyleCheckLog_Check(self): - CRED = '\033[91m' - CEND = '\033[0m' - green = "\033[0;32m" - result = StyleCheck._CheckStyle(self) - inputfile = result[0] - model_list = result[1] - #print(inputfile) - #outputfile = self.Package+"_StyleErrorLog.html" - outputfile = inputfile.replace("_StyleCheckLog.html", "_StyleErrorLog.html") - Logfile = codecs.open(inputfile, "r", encoding='utf8') - ErrorLog = codecs.open(outputfile, "w", encoding='utf8') - ErrorCount = 0 - - for line in Logfile: - line = line.strip() - if line.find("Check ok") > -1 : - continue - if line.find("Library style check log") > -1: - continue - if self.Changedmodels == False: - if line.find("HTML style check log for "+ self.Package) > -1: - continue - if self.Changedmodels == True: - correct = 0 - for l in model_list: - if line.find("HTML style check log for "+ l) > -1: - correct = correct + 1 - break - if correct > 0 : - continue - - if len(line) == 0: - continue - else: - print(CRED+"Error in model: \n "+CEND+line.lstrip()) - ErrorCount = ErrorCount + 1 - ErrorLog.write(line) - - - Logfile.close() - ErrorLog.close() - if self.Changedmodels == False: - if ErrorCount == 0: - print(green+"Style Check of model or package "+self.Package+ " was successful"+CEND) - exit(0) - elif ErrorCount > 0 : - print(CRED+"Test failed. Look in "+ self.Package + "_StyleErrorLog.html"+CEND) - exit(1) - else: - if ErrorCount == 0: - for l in model_list: - print(green+"\n Style Check of model or package "+l+ " was successful"+CEND) - continue - exit(0) - elif ErrorCount > 0 : - print(CRED+"\nTest failed. Look in "+ outputfile.lstrip() +CEND) - exit(1) - - - -### Add to the environemtn variable 'var' the value 'value' -def _setEnvironmentVariables(var,value): - import os - import platform - - if var in os.environ: - if platform.system() == "Windows": - os.environ[var] = value + ";" + os.environ[var] - else: - os.environ[var] = value + ":" + os.environ[var] - else: - os.environ[var] = value - -if __name__ == '__main__': - - """Parser""" - # Configure the argument parser - parser = argparse.ArgumentParser(description = "Check the Style of Packages") - check_test_group = parser.add_argument_group("arguments to run check tests") - check_test_group.add_argument("-t", "--tool", metavar="dymola",default="dymola", help="Tool for the Checking Tests. Set to Dymola") - check_test_group.add_argument('-s',"--single-package",metavar="AixLib.Package", help="Test only the Modelica package AixLib.Package") - check_test_group.add_argument("-p","--path", default=".", help = "Path where top-level package.mo of the library is located") - check_test_group.add_argument("-DS", "--DymolaVersion",default="2020", help="Version of Dymola(Give the number e.g. 2020") - check_test_group.add_argument("-CM", "--Changedmodels",default=False, action="store_true") - - # Parse the arguments - args = parser.parse_args() - - from StyleChecking import StyleCheck - - CheckStyleTest = StyleCheck(Package = args.single_package, - Library = args.path, - tool = args.tool, - DymolaVersion = args.DymolaVersion, - Changedmodels = args.Changedmodels) - - # Set path for python-dymola-interface: Operating System windows and linux - if platform.system() == "Windows": - _setEnvironmentVariables("PATH", os.path.join(os.path.abspath('.'), "Resources", "Library", "win32")) - sys.path.insert(0, os.path.join('C:\\', - 'Program Files', - 'Dymola '+ args.DymolaVersion, - 'Modelica', - 'Library', - 'python_interface', - 'dymola.egg')) - print("operating system Windows") - else: - print("operating system Linux") - _setEnvironmentVariables("LD_LIBRARY_PATH", os.path.join(os.path.abspath('.'), "Resources", "Library", "linux32") + ":" + - os.path.join(os.path.abspath('.'),"Resources","Library","linux64")) - sys.path.insert(0, os.path.join('opt', - 'dymola-'+args.DymolaVersion+'-x86_64', - 'Modelica', - 'Library', - 'python_interface', - 'dymola.egg')) - sys.path.append(os.path.join(os.path.abspath('.'), "..", "..", "BuildingsPy")) - - - """Start Check and Validate Test""" - if args.single_package: - single_package = args.single_package - - else: - single_package = None - CheckStyleTest._StyleCheckLog_Check() \ No newline at end of file diff --git a/bin/02_CITests/SyntaxTests/api_github.py b/bin/02_CITests/SyntaxTests/api_github.py deleted file mode 100644 index ada58e1c67..0000000000 --- a/bin/02_CITests/SyntaxTests/api_github.py +++ /dev/null @@ -1,136 +0,0 @@ -import requests -import json -import argparse -import os -import sys - -#url = "https://api.github.com/repos/SvenHinrichs/GitLabCI/branches/master" - -#url = "https://api.github.com/repos/RWTH-EBC/AixLib/branches/issue802_CleanCI_Infrastructure" -#url = "https://api.github.com/repos/RWTH-EBC/AixLib/branches/issue740_Release" - - - -#response = requests.request("GET", url, headers=headers, data = payload) - -class GET_API_GITHUB(object): - - def __init__(self,Correct_Branch,GITHUB_REPOSITORY, Working_Branch): - self.GITHUB_REPOSITORY = GITHUB_REPOSITORY - self.Correct_Branch = Correct_Branch - self.Working_Branch = Working_Branch - - def jprint(self): - # create a formatted string of the Python JSON object - text = json.dumps(obj, sort_keys=True, indent=4) - print(type(text)) - print(text) - - def get_GitHub_Username(self): - url = "https://api.github.com/repos/"+self.GITHUB_REPOSITORY+"/branches/"+self.Working_Branch - print(url) - payload = {} - headers= {} - - response = requests.request("GET", url, headers=headers, data = payload) - print(response) - branch = response.json() - print(branch) - commit = branch["commit"] - author = commit["author"] - login = author["login"] - return login - - def return_owner(self): - owner = self.GITHUB_REPOSITORY - owner = owner.split("/") - print(owner[0]) - return owner[0] - -class PULL_REQUEST_GITHUB(object): - - def __init__(self,Correct_Branch,GITHUB_REPOSITORY, Working_Branch, OWNER, GITHUB_TOKEN): - self.GITHUB_REPOSITORY = GITHUB_REPOSITORY - self.Correct_Branch = Correct_Branch - self.Working_Branch = Working_Branch - #self.GITHUB_USERNAME = GITHUB_USERNAME - self.GITHUB_TOKEN = GITHUB_TOKEN - self.OWNER = OWNER - - def post_pull_request(self): - #print(self.GITHUB_USERNAME) - #print(self.Correct_Branch) - #print(self.Working_Branch) - #print(self.OWNER) - - url = "https://api.github.com/repos/"+self.GITHUB_REPOSITORY+"/pulls" - payload = '{\n \"title\": \"Corrected HTML Code in branch '+self.Working_Branch+'\",\n \"body\": \"Merge the corrected HTML Code. After confirm the pull request, **pull** your branch to your local repository. **Delete** the Branch ' +self.Correct_Branch+ '\",\n \"head\": \"'+self.OWNER+':'+self.Correct_Branch+'\",\n \"base\": \"'+self.Working_Branch+'\"\n \n}' - #payload = '{\n \"title\": \"Correct HTML master in branch '+self.Working_Branch+'\",\n \"body\": \"Merge the corrected HTML Code. After confirm the pull request, **pull** your branch to your local repository. **Delete** the Branch ' +self.Correct_Branch+'\",\n \"head\": \"SvenHinrichs:issue802_CleanCI_Infrastructure\",\n \"base\": \"master\"\n}' - headers = { - 'Authorization': 'Bearer '+self.GITHUB_TOKEN, - 'Content-Type': 'application/json' - } - response = requests.request("POST", url, headers=headers, data = payload) - print(response.text.encode('utf8')) - #pull_request_response = response.text.encode('utf8') - return response - - - def get_pull_request_number(self, pull_request_response): - pull_request_number = pull_request_response.json() - pull_request_number = pull_request_number["number"] - print(pull_request_number) - return pull_request_number - - - def update_pull_request_assignees(self,pull_request_number,assignees_owner): - - url = "https://api.github.com/repos/"+self.GITHUB_REPOSITORY+"/issues/"+str(pull_request_number) - - payload = '{ \"assignees\": [\r\n \"'+assignees_owner+'\"\r\n ],\r\n \"labels\": [\r\n \"CI\", \r\n \"Correct HTML\"\r\n \r\n ]\r\n}' - - headers = { - 'Authorization': 'Bearer '+self.GITHUB_TOKEN, - 'Content-Type': 'application/json' - } - - response = requests.request("PATCH", url, headers=headers, data = payload) - - print("User "+assignees_owner+" assignee to pull request Number "+str(pull_request_number)) - - - - - - -if __name__ == '__main__': - # GITHUB_REPOSITORY - # python api.py --GITHUB-REPOSITORY SvenHinrichs/GitLabCI --Working-Branch master - """Parser""" - # Configure the argument parser - parser = argparse.ArgumentParser(description = "Set Github Environment Variables") - check_test_group = parser.add_argument_group("Arguments to set Environment Variables") - check_test_group.add_argument("-CB", "--Correct-Branch", default ="${Newbranch}", help="Branch to correct your Code") - check_test_group.add_argument("-GR", "--GITHUB-REPOSITORY", default="RWTH-EBC/AixLib", help="Environment Variable owner/RepositoryName" ) - check_test_group.add_argument('-WB',"--Working-Branch",default="${TARGET_BRANCH}", help="Your current working Branch") - check_test_group.add_argument('-GT',"--GITHUB-TOKEN",default="${GITHUB_API_TOKEN}", help="Your Set GITHUB Token") - - # Parse the arguments - args = parser.parse_args() - - - GET_API_DATA = GET_API_GITHUB(GITHUB_REPOSITORY = args.GITHUB_REPOSITORY, Correct_Branch = args.Correct_Branch, Working_Branch = args.Working_Branch) - owner = GET_API_DATA.return_owner() - #print("USERNAME is "+ Username) - #sys.stdout.write(Username) - #sys.exit(0) - - PULL_REQUEST = PULL_REQUEST_GITHUB(GITHUB_REPOSITORY = args.GITHUB_REPOSITORY, Correct_Branch = args.Correct_Branch, Working_Branch = args.Working_Branch, GITHUB_TOKEN = args.GITHUB_TOKEN, OWNER = owner) - pull_request_response = PULL_REQUEST.post_pull_request() - pull_request_number = PULL_REQUEST.get_pull_request_number(pull_request_response) - - assignees_owner = GET_API_DATA.get_GitHub_Username() - PULL_REQUEST.update_pull_request_assignees(pull_request_number,assignees_owner) - print("Pull Request") - exit(0) - diff --git a/bin/02_CITests/SyntaxTests/git_commands.py b/bin/02_CITests/SyntaxTests/git_commands.py deleted file mode 100644 index b8112e4656..0000000000 --- a/bin/02_CITests/SyntaxTests/git_commands.py +++ /dev/null @@ -1,39 +0,0 @@ -#from git import repo -import git - -class Git_Repository_Clone(object): - """work with Repository in Git""" - def __init__(self, Repository): - self.Repository = Repository - - def _CloneRepository(self): - git_url = "https://github.com/ibpsa/modelica-ibpsa.git" - #git diff --raw HEAD^1 - repo_dir = "IBPSA" - repo = Repo.clone_from(git_url, repo_dir) - print(repo) - - def _git_push_WhiteList(self): - WhiteList_file = "bin"+os.sep+"03_WhiteLists"+os.sep+"WhiteList_CheckModel.txt" - repo_dir = "" - try: - repo = Repo(repo_dir) - commit_message = "Update new WhiteList [ci skip]" - repo.git.add(WhiteList_file) - repo.index.commit(commit_message) - origin = repo.remote('origin') - origin.push('master') - repo.git.add(update=True) - print("repo push succesfully") - except Exception as e: - print(str(e)) - -class collect_diff_files(object): - def __init__(self) - - - -if __name__ == '__main__': - hcommit = repo.heads.commit - hcommit.diff() # diff tree against index - hcommit.diff('HEAD~1') \ No newline at end of file diff --git a/bin/02_CITests/SyntaxTests/html_tidy_errors.py b/bin/02_CITests/SyntaxTests/html_tidy_errors.py deleted file mode 100644 index 5ee139890f..0000000000 --- a/bin/02_CITests/SyntaxTests/html_tidy_errors.py +++ /dev/null @@ -1,819 +0,0 @@ -import os -import io -import argparse -import shutil -from git import Repo -#! /usr/bin/env python3.6 -# -*- coding: utf-8 -*- -"""View errors in the HTML code of a Modelica .mo file - -@author: Sven Hinrichs -The script will -* collect all the HTML code (...) in the Modelica file and -* print out the original code with line numbers as well as -* the tidy version of the code (with line numbers). -* tidylib will look for errors and present the respective line numbers. - -You can then inspect the code and make corrections to your Modelica -file by hand. You might want to use the tidy version as produced by -tidylib. - -Example -------- -You can use this script on the command line and point it -to your Modelica file:: - - $ python html_tidy_errors.py [file [...]] - -Note: ------ - * This script uses Python 3.6 for printing syntax and - function parameter annotations. - * The script assumes that you have installed pytidylib - - `$ pip install pytidylib` - - * You also need to install the necessary dll's and - your python interpreter must be able to find the files. - In case of trouble just put the dll in your working dir. - - [http://binaries.html-tidy.org/](http://binaries.html-tidy.org/) -""" - - -class HTML_Tidy(object): - """Class to Check Packages and run CheckModel Tests""" - """Import Python Libraries""" - - def __init__(self, package, rootDir, correct_overwrite, correct_backup, log, font, align, WhiteList, correct_view): - self.package = package - self.rootDir = rootDir - self.correct_overwrite = correct_overwrite - self.correct_backup = correct_backup - self.log = log - self.font = font - self.align = align - self.WhiteList = WhiteList - self.correct_view = correct_view - - def run_files(self): - # Make sure that the parameter rootDir points to a Modelica package. - CRED = '\033[91m' - CEND = '\033[0m' - green = "\033[0;32m" - rootDir = self.package.replace(".", os.sep) - - topPackage = os.path.join(rootDir, "package.mo") - errMsg = list() - if not os.path.isfile(topPackage): - raise ValueError("Argument rootDir=%s is not a Modelica package. Expected file '%s'." % ( - rootDir, topPackage)) - file_counter = 0 - AixLibModel = HTML_Tidy._ListAixLibModel(self) - for i in AixLibModel: - i = i.replace(".", os.sep) - i = i.replace(os.sep+"mo", ".mo") - moFulNam = i - results = HTML_Tidy._CheckFile(self, moFulNam) - - document_corr = results[0] - - err = results[1] - - #htmlCode = results[2] - if err is not "": - # write error to error message - errMsg.append("[-- %s ]\n%s" % (moFulNam, err)) - if self.correct_backup: - HTML_Tidy._backup_old_files( - self, moFulNam, document_corr, file_counter) - if self.correct_overwrite: - HTML_Tidy._correct_overwrite(self, moFulNam, document_corr) - continue - - if self.correct_view: - htmlList = HTML_Tidy.getInfoRevisionsHTML(self, moFulNam) - htmlStr = HTML_Tidy.join_body( - self, htmlList=htmlList, substitutions_dict={'\\"': '"'}) - - - - document_corr, errors = HTML_Tidy.htmlCorrection(self, htmlStr) - docCorrStr = HTML_Tidy.number_print_List( - self, document_corr.split('\n'), sep='\n') - - ErrWhite = "Warning: The summary attribute on the element is obsolete in HTML5" - if len(errors) > 0 and errors.find(ErrWhite) == -1: - print('\n' + "----" + moFulNam + "----") - print("\n-------- HTML Code --------") - print(f"\n{HTML_Tidy.number_print_List(self, htmlList)}") - print(green+"\n-------- Corrected Code --------"+CEND) - print(f"\n{docCorrStr}") - print(CRED+"\n-------- Errors --------"+CEND) - print(f"\n{errors}") - continue - else: - continue - - if self.log: - File = HTML_Tidy._return_logfile(self, errMsg) - print("##########################################################") - print("you can find your logfile under " + - rootDir + os.sep+"HTML-logfile.txt") - var = HTML_Tidy.read_logFile(self, File) - return var - - def number_print_List(self, htmlList: list, sep: str = '') -> None: - """Print a list of strings with line numbers - Should be extended by a feature to highlight a given set of line - numbers. This can help the reader to quickly identify the lines - with errors. - - Parameters - ---------- - htmlList : list of str - The html code - each line a list entry. - sep : str - String that seperates the line number from the line text. - """ - return sep.join(['{0:>5d} {1}'.format(i, line) for i, line in enumerate(htmlList)]) - - def join_body(self, htmlList: list, substitutions_dict: dict = {'\\"': '"'}) -> str: - """Joins a list of strings into a single string and makes replacements - - Parameters - ---------- - htmlList : list of str - The html code - each line a list entry. - substitutions_dict : dict - A dictionary with key:value pairs for old and new text. - The html code is escaped in Modelica. To feed it to tidylib - we need to remove the escape characters. - - Returns - ------- - str - The html code as one string, cleared from escape characters. - """ - - body = ''.join(htmlList) # just glue it together again - body = HTML_Tidy.make_string_replacements( - self, theString=body, substitutions_dict={'\\"': '"'}) - - return body - - def make_string_replacements(self, theString: str, - substitutions_dict: dict = {'\\"': '"'}) -> str: - """Takes a string and replaces according to a given dictionary - - Parameters - ---------- - theString : str - The string that contains replaceble text. - substitutions_dict : dict - A dictionary with key:value pairs for old and new text. - - Returns - ------- - str - The modified string. - """ - for k, v in substitutions_dict.items(): - theString = theString.replace(k, v) - - return theString - - def getInfoRevisionsHTML(self, moFile): - """Returns a list that contains the html code - This function returns a list that contain the html code of the - info and revision sections. Each element of the list - is a string. - Parameters - ---------- - moFile : str - The name of a Modelica source file. - - Returns - ------- - list - The list of strings of the info and revisions section. - """ - # Open file. - with open(moFile, mode="r", encoding="utf-8-sig") as f: - lines = f.readlines() - - nLin = len(lines) - isTagClosed = True - entries = list() - - for i in range(nLin): - if isTagClosed: - # search for opening tag - idxO = lines[i].find("") - if idxO > -1: - # search for closing tag on same line as opening tag - idxC = lines[i].find("") - if idxC > -1: - entries.append(lines[i][idxO + 6:idxC]+'\n') - isTagClosed = True - else: - entries.append(lines[i][idxO + 6:]) - isTagClosed = False - else: - # search for closing tag - idxC = lines[i].find("") - if idxC == -1: - # closing tag not found, copy full line - entries.append(lines[i]) - else: - # found closing tag, copy beginning of line only - entries.append(lines[i][0:idxC]+'\n') - isTagClosed = True - # entries.append("

                Revisions

                \n") - # search for opening tag on same line as closing tag - idxO = lines[i].find("") - if idxO > -1: - entries.append(lines[i][idxO + 6:]) - isTagClosed = False - return entries - - def _correct_overwrite(self, moFulNam, document_corr): - """ - This function overwrites the old modeilca files with - the corrected files - """ - os.remove(moFulNam) - # todo: uncode##print(moFulNam) - newfile = open(moFulNam, "w+b") - newfile.write(document_corr.encode("utf-8")) - - def _backup_old_files(self, moFulNam, document_corr, file_counter): - """ - This function backups the root folder and creates - the corrected files - """ - # rootDir = self.rootDir - rootDir = self.package.replace(".", os.sep) - # - # todo: richtigen error einfuegen - if os.path.exists(rootDir + "_backup") is False and file_counter == 1: - shutil.copytree(rootDir, rootDir + "_backup") - print("you can find your backup under " + rootDir + "_backup") - # todo unconde ##print(moFulNam) - os.remove(moFulNam) - newfile = open(moFulNam, "w+b") - newfile.write(document_corr.encode("utf-8")) - - def _return_logfile(self, errMsg): - """ - This function creates the logfile - """ - rootDir = self.package.replace(".", os.sep) - File = rootDir+os.sep+"HTML-logfile.txt" - logfile = open(File, "w") - if len(errMsg) >= 0: - for line in errMsg: - logfile.write(line+'\n') - logfile.close() - return File - - def read_logFile(self, File): - exitFile = "bin"+os.sep+"06_Configfiles"+os.sep+"exit.sh" - font = self.font - align = self.align - logfile = open(File, "r") - Exit = open(exitFile, "w") - ErrList = [] - for i in logfile: - FileTag = i.find("--") - FileNameTag = i.find(".mo") - ErrWhiteList_table = "Warning: The summary attribute on the
                element is obsolete in HTML5" - ErrWhiteList_font = "Warning: element removed from HTML5" - ErrWhiteList_align = 'Warning:

                attribute "align" not allowed for HTML5' - i = i.replace("\n", "") - ErrorList = "Warning" - if i.find(ErrWhiteList_table) > -1: - continue - if font == False: - if i.find(ErrWhiteList_font) > -1: - continue - if align == False: - if i.find(ErrWhiteList_align) > -1: - continue - if FileTag > -1 and FileNameTag > -1: - continue - elif i.find(ErrorList) > -1: - ErrList.append(i) - - logfile.close() - if len(ErrList) > 0: - print("Syntax Error: Check HTML-logfile") - Exit.write("#!/bin/bash"+"\n"+"\n"+"exit 1") - Exit.close() - var = 1 - return (var) - else: - print("HTML Check was successful!") - Exit.write("#!/bin/bash"+"\n"+"\n"+"exit 0") - Exit.close() - var = 0 - return var - - def _CheckFile(self, moFile): - """ - This function returns a list that contain the html code of the - info and revision sections. Each element of the list - is a string. - - :param moFile: The name of a Modelica source file. - :return: list The list of strings of the info and revisions - section. - """ - font = self.font - align = self.align - - # Open file. - with io.open(moFile, mode="r", encoding="utf-8-sig") as f: - lines = f.readlines() - nLin = len(lines) - isTagClosed = True - # Liste aus jeder Zeile des .mo Modelles - code = list() - # print the html Code in list form - htmlCode = list() - - - errors = list() - - for i in range(nLin): - if isTagClosed: - # search for opening tag - idxO = lines[i].find("") - if idxO > -1: - # if found opening tag insert everything up to opening tag into the code list - code.append(lines[i][:idxO+6]) - # search for closing tag on same line as opening tag - # check for both, correct and incorrect html tags, because dymola except also <\html> - idxC1 = lines[i].find("") - idxC2 = lines[i].find("<\html>") - if idxC1 > -1: - idxC = idxC1 - elif idxC2 > -1: - idxC = idxC2 - else: - idxC = -1 - if idxC > -1: - htmlCode.append(lines[i][idxO + 6:idxC]+'\n') - code.append(HTML_Tidy._htmlCorrection(self, htmlCode)[0]) - errors.append(HTML_Tidy._htmlCorrection(self, htmlCode)[1]) - code.append(lines[i][idxC:]) - # clear htmlcode list - # htmlCode = list() - isTagClosed = True - else: - htmlCode.append(lines[i][idxO+6:]) - isTagClosed = False - else: - code.append(lines[i]) - isTagClosed = True - - else: - # check for both, correct and incorrect html tags, because dymola except also <\html> - idxC1 = lines[i].find("") - idxC2 = lines[i].find("<\html>") - if idxC1 > -1: - idxC = idxC1 - elif idxC2 > -1: - idxC = idxC2 - else: - idxC = -1 - if idxC > -1: - htmlCode.append(lines[i][idxO+6:idxC]) - code.append(HTML_Tidy._htmlCorrection(self, htmlCode)[0]) - errors.append(HTML_Tidy._htmlCorrection(self, htmlCode)[1]) - code.append(lines[i][idxC:]) - # clear htmlcode list - htmlCode = list() - # check if there is a new opening tag on the same line - idxO = lines[i].find("") - if idxO > -1: - isTagClosed = False - else: - isTagClosed = True - else: - htmlCode.append(lines[i]) - isTagClosed = False - document_corr = "" - - - if len(code) > 0: - for lines in code: - document_corr += lines - - #print(document_corr) - errors_string = "" - if len(errors) > 0: - for lines in errors: - errors_string += lines - # correct img attribute and closing tag - document_corr_img = "" - CloseFound = True - for line in document_corr.splitlines(): - # line, CloseFound = HTML_Tidy.correct_img_atr(self,line, CloseFound) - # line, CloseFound = HTML_Tidy.correct_table_summary(self,line, CloseFound) - if font == True: - line, CloseFound = HTML_Tidy.correct_font( - self, line, CloseFound) - if align == True: - line, CloseFound = HTML_Tidy.correct_p_align( - self, line, CloseFound) - # HTML_Tidy.correct_p_align(self,line, CloseFound) - ''' - line, CloseFound = HTML_Tidy.delete_html_revision( - self, line, CloseFound) - ''' - # line = HTML_Tidy._htmlCorrection(self, line)[0] - # HTML_Tidy.correct_font(self,line, CloseFound) - - document_corr_img += line + '\n' - - return document_corr_img, errors_string - - def _htmlCorrection(self, htmlCode): - - ''' - body = "" - for line in htmlCode: - body += line + '\n' - body = body.replace('\\"', '"')''' - - substitutions_dict: dict = {'"': '\\"', '
                ': '
                ', '
                ': '
                '} - htmlList = htmlCode - - - htmlStr = HTML_Tidy.join_body(self, htmlList=htmlList, substitutions_dict={'\\"': '"'}) - ''' - htmlCorrect, errors = tidy_document(r"%s" % body, options={'doctype': 'html5', 'show-body-only': 1, - 'numeric-entities': 1, - 'output-html': 1, 'wrap': 72, 'alt-text': '', }) - ''' - from tidylib import tidy_document - - # Validate the string - htmlCorrect, errors = tidy_document(f"{htmlStr}", - options={'doctype': 'html5', - 'show-body-only': 1, - 'numeric-entities': 1, - 'output-html': 1, - 'wrap': 72, - 'alt-text': '', }) - ''' - replacements = { - '"': '\\"', - '
                ': '
                ', - '
                ': '
                ', - } - ''' - #document_corr = htmlCorrect - #print(document_corr) - - document_corr = HTML_Tidy.make_string_replacements( - self, theString=htmlCorrect, substitutions_dict=substitutions_dict) - ''' - for old, new in replacements.items(): - document_corr = document_corr.replace(old, new) - #print(document_corr)''' - ''' - document_corr = HTML_Tidy.make_string_replacements( - self, theString=htmlCorrect, substitutions_dict=substitutions_dict) - ''' - - - return document_corr, errors - - def htmlCorrection(self, htmlStr: str, substitutions_dict: dict = {'"': '\\"', '
                ': '
                ', '
                ': '
                '}) -> (str, str): - """Returns cleaned html code and found errors - - Calls tidylib which will produce a clean version of the html code - and also the errors that it has found. - - Parameters - ---------- - htmlStr : str - The html code as a single string. - substitutions_dict : dict - A dictionary with key:value pairs for old and new text. - The html code must be escaped in Modelica. Generate properly - escaped code we need to add the escape characters. All the - while we can replace html errors that Dymola introduces. - i.e. '
                ' -> '
                ' - - Returns - ------- - str - The tidy html code with escape characters as one string. - str - The error messages from tidylib. - """ - from tidylib import tidy_document - # Validate the string - htmlCorrect, errors = tidy_document(f"{htmlStr}", - options={'doctype': 'html5', - 'show-body-only': 1, - 'numeric-entities': 1, - 'output-html': 1, - 'wrap': 72, - 'alt-text': '', }) - document_corr = HTML_Tidy.make_string_replacements( - self, theString=htmlCorrect, substitutions_dict=substitutions_dict) - - return document_corr, errors - - # delete Summary in table and add

                - def correct_table_summary(self, line, CloseFound): - if CloseFound == True: - tableTag = line.encode("utf-8").find(b"') - CloseTagIntex = line.encode("utf-8").rfind(b'">') - if tableTag > -1 and sumTag > -1: - # line = line[:sumTag]+ "> "+line[sumTag:].replace('summary=\\"', '', 1)) - return line, CloseFound - - # Correct algin with th and replace style="text-align" - - def correct_th_align(self, line, CloseFound): - # Wrong:
                Text ', 1) - line = line[:sumTag] + "> " + \ - line[sumTag:].replace('summary=', '', 1) - line = (line.replace('">', '
                - # Correct: - if CloseFound == True: - alignTag = line.encode("utf-8").find(b"align") - thTag = line.encode("utf-8").find(b"th") - # CloseTagIntex = line.encode("utf-8").find(b'\\">') - CloseTagIntex = line.encode("utf-8").rfind(b'">') - if alignTag > -1 and thTag > -1: - sline = (line.replace('\\', '')) - return line, CloseFound - - # Correct align in p and replace style="text-align" - def correct_p_align(self, line, CloseFound): - # Wrong:

                - # Correct:

                - # Correct:

                k = cp/cv

                - # Correct:

                - if CloseFound == True: - pTag = line.encode("utf-8").find(b"") - styleTag = line.encode("utf-8").find(b"text-align:") - style = line.encode("utf-8").find(b"style") - rstyle = style = line.encode("utf-8").find(b"style") - StyleCount = line.count("style=") - if styleTag > -1: - return line, CloseFound - # elif StyleCount > 0: - # return line, CloseFound - elif pTag > -1 and alignTag > -1: - sline = (line[alignTag:closetag+1].replace('\\', '')) - sline = (sline.replace('align="', 'style=text-align:')) - sline = (sline.replace('style=', 'style="')) - sline = (sline.replace(';', '')) - CloseTag_2 = sline.encode("utf-8").rfind(b">") - if CloseTag_2 > -1: - sline = (sline.replace('">', ';">')) - sline = sline.replace('""', '"') - line = (line[:alignTag] + sline + line[closetag+1:]) - StyleCount = line.count("style=") - if StyleCount > 1: - line = line.replace('style="', '') - line = line.replace('"', '') - line = line.replace(';>', ';">') - pTag = line.encode("utf-8").find(b"") - line = (line[:pTag+3] + tline + line[closetag+1:]) - return line, CloseFound - - # Replace font to style für html5 - def correct_font(self, line, CloseFound): - #

                Overview

                - #

                Overview

                - #

                Overview

                - # Overview - # \"#008000\" - if CloseFound == True: - styleTag_1 = line.encode("utf-8").find(b"style=") - styleTag_2 = line.encode("utf-8").find(b"color") - fontTag = line.encode("utf-8").find(b"") - firstCloseTage = line.encode("utf-8").find(b">") - etag = line.encode("utf-8").find(b"=") - if styleTag_1 > -1 and styleTag_2 > -1: - if fontTag > -1 and rfontTag > -1: - sline = (line[fontTag:rfontTag].replace('\\', '')) - sline = sline.replace('"', '') - sline = sline.replace('', '">') - line = line[:fontTag]+sline + \ - line[rfontTag:].replace('', '') - elif fontTag > -1 and rfontTag > -1: - sline = (line[fontTag:rfontTag].replace('\\', '')) - sline = sline.replace('"', '') - sline = sline.replace('')) - line = line[:fontTag]+sline + \ - line[rfontTag:].replace('', '') - return line, CloseFound - - # Correct img and check for missing alt attributed - - def correct_img_atr(self, line, CloseFound): - if CloseFound == True: - imgTag = line.encode("utf-8").find(b"img") - if imgTag > -1: - imgCloseTagIndex = line.find(">", imgTag) - imgAltIndex = line.find("alt", imgTag) - # if close tag exists but no alt attribute, insert alt attribute and change > to /> - if imgCloseTagIndex > -1 and imgAltIndex == -1: - line = line[:imgTag] + \ - line[imgTag:].replace(">", ' alt="" />', 1) - CloseFound = True - # if close tag exists and alt attribute exists, only change > to /> - elif imgCloseTagIndex > -1 and imgAltIndex > -1: - line = line[:imgTag] + line[imgTag:].replace(">", ' />', 1) - CloseFound = True - # if close tag is not in the same line - elif imgCloseTagIndex == -1: - line = line - CloseFound = False - else: - # if no close tag was found in previous line, but opening tag found search for close on this line with same - # procedure - imgCloseTagIndex = line.find(">") - imgAltIndex = line.find("alt") - if imgCloseTagIndex > -1 and imgAltIndex == -1: - line = line[:imgCloseTagIndex] + \ - line[imgCloseTagIndex:].replace(">", ' alt="" />', 1) - CloseFound = True - elif imgCloseTagIndex > -1 and imgAltIndex > -1: - line = line[:imgCloseTagIndex] + \ - line[imgCloseTagIndex:].replace(">", ' />', 1) - CloseFound = True - elif imgCloseTagIndex == -1: - CloseFound = False - line = line - return line, CloseFound - - # Delete Revsions - def delete_html_revision(self, line, CloseFound): - if CloseFound == True: - htmlTag = line.encode("utf-8").find(b"") - htmlCloseTag = line.encode("utf-8").find(b"") - RevTag = line.encode("utf-8").find(b"revision") - if htmlTag > -1 and RevTag > -1: - if htmlCloseTag > -1: - line = "" - return line, CloseFound - - # Create a new whiteList - def create_IBPSA_WhiteList(self): - WhiteList = self.WhiteList - git_url = "https://github.com/ibpsa/modelica-ibpsa.git" - repo_dir = "IBPSA" - repo = Repo.clone_from(git_url, repo_dir) - rootdir = "IBPSA" - ModelList = [] - for subdir, dirs, files in os.walk(rootdir): - for file in files: - filepath = subdir + os.sep + file - if filepath.endswith(".mo"): - #if filepath.endswith(".mo") and file != "package.mo": - model = filepath - model = model.replace(os.sep, ".") - model = model[model.rfind("IBPSA"):model.rfind(".mo")] - ModelList.append(model) - # HTML_IBPSA_WhiteList - filename = "bin"+os.sep+"03_WhiteLists"+os.sep+"HTML_IBPSA_WhiteList.txt" - file = open(filename, "w") - for i in ModelList: - file.write("\n"+i+".mo"+"\n") - file.close() - - # List AixLib and IBPSA model - - def _listAllModel(self): - rootdir = self.package - rootdir = rootdir.replace(".", os.sep) - AixLib_Model = [] - # Return IBPSA models - filename = "bin"+os.sep+"03_WhiteLists"+os.sep+"HTML_IBPSA_WhiteList.txt" - file = open(filename, "r") - IBPSA_Models = [] - for i in file: - if i.find(".mo") > -1: - i = i.replace("IBPSA", "AixLib") - i = i.replace("\n", "") - IBPSA_Models.append(i) - file.close() - # Return AixLib models - for subdir, dirs, files in os.walk(rootdir): - for file in files: - filepath = subdir + os.sep + file - if filepath.endswith(".mo"): - model = filepath.replace(os.sep, ".") - model = model[model.rfind("AixLib"):] - AixLib_Model.append(model) - return AixLib_Model, IBPSA_Models - - # Remove IBPSA models and list all AixLib model - def _ListAixLibModel(self): - AixLib_Models, IBPSA_Models = HTML_Tidy._listAllModel(self) - WhiteListModel = [] - for element in AixLib_Models: - for subelement in IBPSA_Models: - if element == subelement: - WhiteListModel.append(element) - for i in WhiteListModel: - AixLib_Models.remove(i) - return AixLib_Models - - -if __name__ == '__main__': - """Parser""" - # Configure the argument parser - # self, Package, rootDir,correct_overwrite,correct_backup,log - parser = argparse.ArgumentParser( - description='Run HTML correction on files, print found errors or backup old files') - parser.add_argument("--correct-overwrite", action="store_true", default=False, - help="correct html code in modelica files and overwrite old files") - parser.add_argument("--correct-backup", action="store_true", default=False, - help="correct html code in modelica " "files and backup old files") - parser.add_argument("--log", action="store_true", - default=False, help="print logfile of errors found") - parser.add_argument('-s', "--single-package", metavar="AixLib.Package", - help="Test only the Modelica package AixLib.Package") - parser.add_argument("-p", "--path", default=".", - help="Path where top-level package.mo of the library is located") - parser.add_argument("--font", action="store_true", default=False, - help="correct html code: Remove font to span") - parser.add_argument("--align", action="store_true", default=False, - help="correct html code: Remove align to style=text-algin:") - parser.add_argument("--WhiteList", action="store_true", default=False, - help="Create a new WhiteList Library IBPSA") - parser.add_argument("--correct-view", action="store_true", default=False, - help="Print the Correct HTML Code") - - - args = parser.parse_args() - from html_tidy_errors import HTML_Tidy - HTML_Check = HTML_Tidy(package=args.single_package, - rootDir=args.path, - correct_overwrite=args.correct_overwrite, - correct_backup=args.correct_backup, - log=args.log, - font=args.font, - align=args.align, - WhiteList=args.WhiteList, - correct_view=args.correct_view) - if args.correct_overwrite is False and args.correct_backup is False and args.log is False and args.correct_view is False: - print("please use -h or --help for help") - if args.WhiteList is True: - print("Create a Whitelist of IBPSA Library") - HTML_Check.create_IBPSA_WhiteList() - elif args.correct_backup is True: - print("Create a Backup") - HTML_Check.run_files() - var = HTML_Check.run_files() - print(var) - - elif args.correct_overwrite is True: - print("Overwrite the Library") - #HTML_Check.run_files() - var = HTML_Check.run_files() - HTML = HTML_Tidy(package=args.single_package, - rootDir=args.path, - correct_overwrite=args.correct_overwrite, - correct_backup=args.correct_backup, - log=False, - font=args.font, - align=args.align, - WhiteList=args.WhiteList, - correct_view=args.correct_view) - HTML.run_files() - print(var) - print("Finish") - - - elif args.correct_view is True: - print("Print the Correct HTML Code") - HTML_Check.run_files() - - print("Finish") diff --git a/bin/02_CITests/SyntaxTests/sort_models.py b/bin/02_CITests/SyntaxTests/sort_models.py deleted file mode 100644 index e20c6d8549..0000000000 --- a/bin/02_CITests/SyntaxTests/sort_models.py +++ /dev/null @@ -1,46 +0,0 @@ -import os -import sys - -import codecs - -class git_models(object): - - def __init__(self, file_type,package): - self.file_type = file_type - self.package = package - - def sort_mo_models(self): - list_path = 'bin'+os.sep+'03_WhiteLists'+os.sep+'changedmodels.txt' - #print(list_path) - changed_models = codecs.open(list_path, "r", encoding='utf8') - modelica_models = [] - Lines = changed_models.readlines() - Line= str(Lines) - Line = Line.split(":") - for i in Line: - if i.rfind(".mos")>-1: - continue - if i.rfind(".mo")> -1: - #define modelica models - model_number = i.rfind(self.package) - model_name = i[model_number:] - model_name = model_name.lstrip() - model_name = model_name.replace(os.sep,".") - model_name = model_name[:model_name.rfind(".mo")] - model_name = model_name.replace("..",".") - modelica_models.append(model_name) - continue - else: - continue - changed_models.close() - if len(modelica_models) == 0: - print("No Models to check") - exit(0) - return modelica_models - -if __name__ == '__main__': - # Import git_model class - from sort_models import git_models - list_mo_models = git_models(".mo","AixLib") - list_mo_models.sort_mo_models() - \ No newline at end of file diff --git a/bin/02_CITests/UnitTests/CheckPackages/sort_models.py b/bin/02_CITests/UnitTests/CheckPackages/sort_models.py deleted file mode 100644 index 45907c5fd8..0000000000 --- a/bin/02_CITests/UnitTests/CheckPackages/sort_models.py +++ /dev/null @@ -1,121 +0,0 @@ -import os -import sys - -import codecs - -class git_models(object): - - def __init__(self, file_type,package,list_path): - self.file_type = file_type - self.package = package - self.list_path = list_path - - def sort_mos_script(self): - #list_path = ".."+os.sep+'bin'+os.sep+'03_WhiteLists'+os.sep+'changedmodels.txt' - changed_models = codecs.open(self.list_path, "r", encoding='utf8') - mos_scripts = [] - Lines = changed_models.readlines() - Line= str(Lines) - Line = Line.split(":") - for i in Line: - if i.rfind(".mos")> -1: - - if i.rfind("Scripts")>-1: - #define modelica models - i = i.replace("/",".") - i = i.replace(os.sep,".") - i = i.replace("..",".") - i = i.replace("Dymola","AixLib") - model_number = i.rfind(self.package) - if i.find(".package") > -1: - continue - if model_number > -1: - model_name = i[model_number:] - model_name = model_name.lstrip() - model_name = model_name.replace(os.sep,".") - model_name = model_name[:model_name.rfind(".mos")] - model_name = model_name.replace("..",".") - mos_scripts.append(model_name) - #print(mos_scripts) - continue - else: - continue - else: - continue - changed_models.close() - return mos_scripts - - def sort_reference_txt(self): - #list_path = ".."+os.sep+'bin'+os.sep+'03_WhiteLists'+os.sep+'changedmodels.txt' - changed_models = codecs.open(self.list_path, "r", encoding='utf8') - reference_files = [] - Lines = changed_models.readlines() - Line= str(Lines) - Line = Line.split(":") - package = self.package.replace(".","_") - for i in Line: - if i.rfind(".txt")> -1: - if i.rfind("ReferenceResults")>-1: - #define modelica models - i = i.replace("/",".") - i = i.replace(os.sep,".") - i = i.replace("..",".") - model_number = i.rfind(package) - if i.find(".package") > -1: - continue - if model_number > -1: - model_name = i[model_number:] - model_name = model_name.lstrip() - model_name = model_name.replace(os.sep,".") - model_name = model_name[:model_name.rfind(".txt")] - model_name = model_name.replace("..",".") - model_name = model_name.replace("_",".") - reference_files.append(model_name) - continue - else: - continue - else: - continue - changed_models.close() - return reference_files - - def sort_mo_models(self): - #list_path = ".."+os.sep+'bin'+os.sep+'03_WhiteLists'+os.sep+'changedmodels.txt' - changed_models = codecs.open(self.list_path, "r", encoding='utf8') - modelica_models = [] - Lines = changed_models.readlines() - Line= str(Lines) - Line = Line.split(":") - for i in Line: - if i.rfind(".mo")> -1: - #define modelica models - i = i.replace("/",".") - i = i.replace(os.sep,".") - i = i.replace("..",".") - model_number = i.rfind(self.package) - if i.find(".package") > -1: - continue - if model_number > -1: - model_name = i[model_number:] - model_name = model_name.lstrip() - model_name = model_name.replace(os.sep,".") - model_name = model_name[:model_name.rfind(".mo")] - model_name = model_name.replace("..",".") - modelica_models.append(model_name) - continue - else: - continue - else: - continue - changed_models.close() - return modelica_models - -if __name__ == '__main__': - # Import git_model class - #list_path = ".."+os.sep+'bin'+os.sep+'03_WhiteLists'+os.sep+'changedmodels.txt' - list_path = 'bin'+os.sep+'03_WhiteLists'+os.sep+'changedmodels.txt' - - from sort_models import git_models - list_mo_models = git_models(".mo","AixLib.Utilities",list_path) - list_mo_models.sort_mo_models() - \ No newline at end of file diff --git a/bin/02_CITests/UnitTests/CheckPackages/validatetest.py b/bin/02_CITests/UnitTests/CheckPackages/validatetest.py deleted file mode 100644 index 014906dfb3..0000000000 --- a/bin/02_CITests/UnitTests/CheckPackages/validatetest.py +++ /dev/null @@ -1,832 +0,0 @@ -from buildingspy.development import error_dictionary_jmodelica -from buildingspy.development import error_dictionary_dymola - -import codecs -import multiprocessing -import argparse -import os -import sys -import platform -import buildingspy.development.regressiontest as u -from pathlib import Path -from git import Repo -from sort_models import git_models -import time -import glob -from threading import Thread, Event - - -class Git_Repository_Clone(object): - """work with Repository in Git""" - def __init__(self, Repository): - self.Repository = Repository - - def _CloneRepository(self): - git_url = "https://github.com/ibpsa/modelica-ibpsa.git" - repo_dir = "IBPSA" - if os.path.exists(repo_dir): - print("IBPSA folder exists already!") - else: - print("Clone IBPSA Repo") - repo = Repo.clone_from(git_url, repo_dir) - - def _git_push_WhiteList(self): - WhiteList_file = "bin"+os.sep+"03_WhiteLists"+os.sep+"WhiteList_CheckModel.txt" - repo_dir = "" - try: - repo = Repo(repo_dir) - commit_message = "Update new WhiteList [ci skip]" - repo.git.add(WhiteList_file) - repo.index.commit(commit_message) - origin = repo.remote('origin') - origin.push('master') - repo.git.add(update=True) - print("repo push succesfully") - except Exception as e: - print(str(e)) - - -#class colors(object): - -class ValidateTest(object): - """Class to Check Packages and run CheckModel Tests""" - """Import Python Libraries""" - def __init__(self,Package,Library, batch, tool, n_pro, show_gui, WhiteList,SimulateExamples, Changedmodels,dymola,dymola_exception): - - self.Package = Package - self.Library = Library - self.batch = batch - self.tool = tool - self.n_pro = n_pro - self.show_gui = show_gui - self.CreateWhiteList = WhiteList - self.SimulateExamples = SimulateExamples - self.Changedmodels = Changedmodels - self.dymola = dymola - self.dymola_exception = dymola_exception - #self.path = path - ###Set Dymola Tool - if tool == 'jmodelica': - e = error_dictionary_jmodelica - else: - e = error_dictionary_dymola - if tool in ['dymola', 'omc', 'jmodelica']: - self._modelica_tool = tool - else: - raise ValueError( - "Value of 'tool' of constructor 'Tester' must be 'dymola', 'omc' or 'jmodelica'. Received '{}'.".format(tool)) - - - - def dym_check_lic(self): - from dymola.dymola_interface import DymolaInterface - from dymola.dymola_exception import DymolaException - - dym_sta_lic_available = dymola.ExecuteCommand('RequestOption("Standard");') - if not dym_sta_lic_available: - dymola.ExecuteCommand('DymolaCommands.System.savelog("Log_NO_DYM_STANDARD_LIC_AVAILABLE.txt");') - print("No Dymola License is available") - dymola.close() - exit(1) - else: - print("Dymola License is available") - - - ''' Write a new Whitelist with all models in IBPSA Library of those models who have not passed the Check Test''' - def _WriteWhiteList(self,version): - #_listAllModel - #rootdir = r"D:\Gitlab\modelica-ibpsa\IBPSA" - - from dymola.dymola_interface import DymolaInterface - from dymola.dymola_exception import DymolaException - CRED = '\033[91m' - CEND = '\033[0m' - green = "\033[0;32m" - - Package = self.Package.replace("AixLib","IBPSA") - Package = Package.split(".")[0] - Package = Package.replace(".",os.sep) - rootdir = "IBPSA"+os.sep+Package - # Read the last version of whitelist - - filename= "bin"+os.sep+"03_WhiteLists"+os.sep+"WhiteList_CheckModel.txt" - vfile = open(filename,"r") - lines = vfile.readlines() - vlist = [] - for line in lines: - if line.strip("\n") == version: - print("Whitelist is on Version " + version) - print("The Whitelist is already up to date") - vlist.append(line) - vfile.close() - - if len(vlist) == 0: - - ModelList = [] - for subdir, dirs, files in os.walk(rootdir): - for file in files: - filepath = subdir + os.sep + file - if filepath.endswith(".mo") and file != "package.mo": - model = filepath - model = model.replace(os.sep,".") - model = model[model.rfind("IBPSA"):model.rfind(".mo")] - ModelList.append(model) - - Library = rootdir = "IBPSA"+os.sep+Package+os.sep+"package.mo" - dymola = self.dymola - - try: - PackageCheck = dymola.openModel(Library) - - if PackageCheck == True: - print("Found IBPSA Library and start Checkmodel Tests \n Check Package " + self.Package+" \n") - elif PackageCheck == False: - print("Library Path is wrong. Please Check Path of IBPSA Library Path") - exit(1) - ## Check the Package - if len(ModelList) == 0: - print("Wrong path") - exit(1) - ErrorList = [] - for i in ModelList: - result=dymola.checkModel(i) - if result == True: - print('\n'+green+' Successful: '+CEND+i+'\n') - if result == False: - print('\n'+CRED+' Error: '+CEND+i+'\n') - Log = dymola.getLastError() - print(Log) - ErrorList.append(i) - dymola.savelog("IBPSA-log.txt") - dymola.close() - IBPSA_PackageName = [] - ### Write the Package Names of IBPSA - for i in ModelList: - i = i.split(".") - i = i[1] - if i not in IBPSA_PackageName: - IBPSA_PackageName.append(i) - - file = open(filename,"w") - - print(version) - file.write("\n"+version+"\n" +"\n") - for i in IBPSA_PackageName: - List = [] - for l in ErrorList: - Package = l.split(".")[1] - if Package == i: - List.append(l) - file.write(i+"\n"+str(List)+"\n"+"\n") - file.close() - print("Write Whitelist") - except DymolaException as ex: - print(("2: Error: " + str(ex))) - finally: - if dymola is not None: - dymola.close() - dymola = None - - - - def read_l_whitelist_v(self): - # - aixlib_dir = "AixLib" + os.sep + "Resources" + os.sep + "Scripts" - filelist = (glob.glob(aixlib_dir+os.sep+"*.mos")) - - list = [] - for i in filelist: - i = i.replace(".mos","") - list.append(i) - data = (sorted(list, key=lambda x: float(x[x.find("_to_0")+6:]))) - data = (data[len(data)-1]) - - d = data[data.find("_to_0")+6:data.rfind(".")] - last_conv_list = [] - for i in list: - num = i[i.find("_to_0")+6:i.rfind(".")] - if num == str(d): - last_conv_list.append(i) - continue - data = (sorted(last_conv_list, key=lambda x: int(x[x.rfind(".")+1:]))) - data = (data[len(data)-1]) - data = data.split(os.sep) - data = (data[len(data)-1]) - return data - - ''' Write a Error log with all models, that don´t pass the check ''' - def _WriteErrorlog(self,logfile): - package = self.Package - logfile = "AixLib"+ os.sep+logfile - log_Error = "AixLib"+os.sep+package+"-Errorlog.txt" - file = open(logfile, "r") - Errorlog = open(log_Error, "w") - ErrorList = [] - falseList = [] - checkList = [] - for line in file: - if line.find('checkModel("AixLib.') > -1: - ErrorList.append(line) - checkList.append(line) - elif len(checkList) > 0: - ErrorList.append(line) - if line.find(' = false') > -1: - falseList.append(line) - if line.find(' = true') > -1: - ErrorList = [] - checkList = [] - - if len(falseList) > 0 and len(checkList) > 0: - Errorlog.write("\n--------------------------------------\n") - if len(ErrorList) > 0: - for i in ErrorList: - Errorlog.write(i) - Errorlog.write("\n--------------------------------------\n") - ErrorList = [] - checkList = [] - falseList = [] - file.close() - Errorlog.close() - - ''' Compare AixLib models with IBPSA models of those have not passed the Check. - Remove all models from the WhiteList and will not be checked''' - def _CompareWhiteList(self): - WhiteList = ValidateTest._IgnoreWhiteList(self) - AixLibModels = ValidateTest._listAllModel(self) - - WhiteListModel = [] - for element in AixLibModels: - for subelement in WhiteList: - if element == subelement: - WhiteListModel.append(element) - WhiteListModel = list(set(WhiteListModel)) - for i in WhiteListModel: - AixLibModels.remove(i) - return AixLibModels - - def _CompareWhiteSimulateList(self): - SimulateList = ValidateTest._listAllExamples(self) - WhiteList = ValidateTest._IgnoreWhiteList(self) - WhiteListModel = [] - for element in SimulateList: - for subelement in WhiteList: - if element == subelement: - WhiteListModel.append(element) - WhiteListModel = list(set(WhiteListModel)) - for i in WhiteListModel: - SimulateList.remove(i) - return SimulateList - - ''' Return a List with all models from the Whitelist ''' - def _IgnoreWhiteList(self): - #Package = "AixLib.Fluid.Actuators" - Package = self.Package - if len(Package) > 1: - Package = Package.split(".")[1] - - filename= r"bin/03_WhiteLists/WhiteList_CheckModel.txt" - #if platform.system() == "Windows": - # model = model.replace("\\",".") - #else: - - file = open(filename,"r") - RowNumer = 0 - WhiteListPackage = [] - for line in file: - if line.rstrip() == Package: - #print("WhiteList Package "+Package) - RowNumer = RowNumer + 1 - continue - elif RowNumer > 0: - #WhiteListPackage = [] - line = line.rstrip() - line = line.replace("[","") - line = line.replace("]","") - line = line.replace("'","") - line = line.replace(" ","") - line = line.replace("IBPSA","AixLib") - line = str(line) - line = line.split(",") - WhiteListPackage = line - break - file.close() - return WhiteListPackage - ''' List all models in AixLib Library ''' - def _listAllModel(self): - rootdir = self.Package - rootdir = rootdir.replace(".",os.sep) - ModelList = [] - for subdir, dirs, files in os.walk(rootdir): - for file in files: - filepath = subdir + os.sep + file - if filepath.endswith(".mo") and file != "package.mo": - model = filepath.replace(os.sep, ".") - model = model[model.rfind("AixLib"):model.rfind(".mo")] - ModelList.append(model) - return ModelList - ''' List all Examples and Validation examples ''' - def _listAllExamples(self): - Package = self.Package - rootdir = Package.replace(".",os.sep) - ModelList = [] - for subdir, dirs, files in os.walk(rootdir): - for file in files: - - filepath = subdir + os.sep + file - test = subdir.split(os.sep) - #print(filepath) - ''' - if filepath.find("Examples") > -1 or filepath.find("Validation")> -1: - if filepath.endswith(".mo") and file != "package.mo": - model = filepath.replace(os.sep,".") - model = model[model.rfind("AixLib"):model.rfind(".mo")] - ModelList.append(model) - continue - ''' - if test[len(test)-1] == "Examples" or test[len(test)-1] == "Validation": - #print((test)) - if filepath.endswith(".mo") and file != "package.mo": - model = filepath.replace(os.sep,".") - model = model[model.rfind("AixLib"):model.rfind(".mo")] - ModelList.append(model) - continue - return ModelList - - ''' Check models and return a Error Log, if the check failed ''' - def _CheckModelAixLib(self): - from dymola.dymola_interface import DymolaInterface - from dymola.dymola_exception import DymolaException - CRED = '\033[91m' - CEND = '\033[0m' - green = "\033[0;32m" - - dymola = self.dymola - #dymola_exception = self.dymola_exception - try: - #dymola_exception = DymolaException - PackageCheck = dymola.openModel(self.Library) - if PackageCheck == True: - print("Found AixLib Library and start Checkmodel Tests \n Check Package " + self.Package+" \n") - elif PackageCheck == False: - print("Library Path is wrong. Please Check Path of AixLib Library Path") - exit(1) - ## Check the Package - ErrorList = [] - if self.Changedmodels == False: - - ModelList = ValidateTest._CompareWhiteList(self) - if len(ModelList) == 0: - print("Wrong Path") - exit(1) - for i in ModelList: - result=dymola.checkModel(i) - if result == True: - print('\n'+green+' Successful: '+CEND+i+'\n') - - if result == False: - print("Check for Model "+i+CRED+" failed!"+CEND+'\n') - print('\n'+ CRED+' Error: '+CEND+i+'\n') - #Log = dymola.getLastError() - #print(Log) - print("Second Check Test for model "+i) - sec_result=dymola.checkModel(i) - if sec_result == True: - print('\n'+ green+ ' Successful: '+CEND+i+'\n') - continue - if sec_result == False: - ErrorList.append(i) - print('\n'+ CRED+' Error: '+CEND+i+'\n') - continue - - if self.Changedmodels == True: - print(" Test only changed or new models") - list_path = 'bin'+os.sep+'03_WhiteLists'+os.sep+'changedmodels.txt' - list_mo_models = git_models(".mo",self.Package,list_path) - model_list = list_mo_models.sort_mo_models() - if len(model_list) == 0: - print("No changed models in Package: "+self.Package) - exit(0) - for i in model_list: - print("Check Model: "+i) - result=dymola.checkModel(i) - #result=dymola.checkModel(i,simulate=True) - if result == True: - print('\n'+green+' Successful: '+CEND+i+'\n') - continue - if result == False: - print("Check for Model "+i+CRED+" failed!"+CEND+'\n') - print("Second Check Test for model "+i) - result=dymola.checkModel(i) - if result == True: - print('\n'+green+' Successful: '+CEND+i+'\n') - continue - - if result == False: - print('\n' +CRED+' Error: '+CEND+i+'\n') - ErrorList.append(i) - Log = dymola.getLastError() - print(Log) - - - - - dymola.savelog(self.Package+"-log.txt") - dymola.close() - logfile = self.Package+"-log.txt" - ValidateTest._WriteErrorlog(self,logfile) - return ErrorList - except DymolaException as ex: - print(("2: Error: " + str(ex))) - finally: - if dymola is not None: - dymola.close() - dymola = None - - - ''' Simulate examples and validation and return a Error log, if the check failed. ''' - def _SimulateModel(self): - from dymola.dymola_interface import DymolaInterface - from dymola.dymola_exception import DymolaException - CRED = '\033[91m' - CEND = '\033[0m' - green = "\033[0;32m" - dymola = self.dymola - #dymola_exception = self.dymola_exception - - ### Sets the Dymola path to activate the GUI - try: - #dymola_exception = DymolaException - PackageCheck = dymola.openModel(self.Library) - if PackageCheck == True: - print("Found AixLib Library and start Checkmodel Tests \n Check Package " + self.Package+" \n") - elif PackageCheck == None: - print("Library Path is wrong. Please Check Path of AixLib Library Path") - exit(1) - - ErrorList = [] - if self.Changedmodels == False: - ModelList = ValidateTest._CompareWhiteSimulateList(self) - if len(ModelList) == 0: - print(CRED+"Error: "+CEND+"Found no Examples") - exit(0) - for i in ModelList: - print("Check Model: "+i) - - result=dymola.checkModel(i,simulate=True) - if result == True: - print('\n '+green+'Successful: '+CEND+i+'\n') - - if result == False: - print("Check for Model "+i+CRED+" failed!"+CEND+'\n') - print("Second Check Test for model "+i) - result=dymola.checkModel(i,simulate=True) - if result == True: - print('\n '+green+'Successful: '+CEND+i+'\n') - - if result == False: - print('\n '+CRED+'Error: '+CEND+i+'\n') - ErrorList.append(i) - Log = dymola.getLastError() - print(Log) - IBPSA_Model = str(ValidateTest._IgnoreWhiteList(self)) - print("\n"+"\n") - if len(IBPSA_Model) > 0: - print("Don´t Check these Models "+IBPSA_Model) - - if self.Changedmodels == True: - list_path = 'bin'+os.sep+'03_WhiteLists'+os.sep+'changedmodels.txt' - list_mo_models = git_models(".mo",self.Package, list_path) - model_list= list_mo_models.sort_mo_models() - examplelist= [] - for e in model_list: - examples = e.split(".") - if examples[len(examples)-2] == "Examples" or examples[len(examples)-2] == "Validation": - examplelist.append(e) - - ErrorList = [] - - if len(examplelist) == 0: - print("No changed examples in Package: "+self.Package) - exit(0) - for i in examplelist: - result=dymola.checkModel(i,simulate=True) - if result == True: - print('\n'+green+ 'Successful: '+CEND+i+'\n') - if result == False: - print("Check for Model "+i+CRED+" failed!"+CEND+'\n') - - print("Second Check Test for model "+i) - result=dymola.checkModel(i,simulate=True) - if result == True: - print('\n'+green+ 'Successful: '+CEND+i+'\n') - if result == False: - print('\n' +CRED+' Error: '+CEND+i+'\n') - ErrorList.append(i) - Log = dymola.getLastError() - print(Log) - - dymola.savelog(self.Package+"-log.txt") - dymola.close() - logfile = self.Package+"-log.txt" - ValidateTest._WriteErrorlog(self,logfile) - return ErrorList - - except DymolaException as ex: - print(("2: Error: " + str(ex))) - finally: - if dymola is not None: - dymola.close() - dymola = None - - - """Create a LogFIle from a package in IPBSA Library""" - - def _CreateIBPSALog(self): - from dymola.dymola_interface import DymolaInterface - from dymola.dymola_exception import DymolaException - import buildingspy.development.regressiontest as u - - """ Check the IBPSA Model Automatical """ - cmd = "git clone https://github.com/ibpsa/modelica-ibpsa.git" - returned_value = os.system(cmd) # returns the exit code in unix - print('returned value:', returned_value) - cmd = "cd modelica-ibpsa-master" - os.system(cmd) - Library = IBPSA/package.mo - dymola = self.dymola - dymola_exception = self.dymola_exception - try: - - PackageCheck = dymola.openModel(Library) - if PackageCheck == True: - print("Found AixLib Library and start Checkmodel Tests \n Check Package " + self.Package+" \n") - elif PackageCheck == None: - print("Library Path is wrong. Please Check Path of AixLib Library Path") - exit(1) - result=dymola.checkModel(self.Package) - dymola.savelog(self.Package+"-log.txt") - Log = dymola.getLastError() - if result == True: - print('\n Check of Package '+self.Package+' was Successful! \n') - dymola.close() - #exit(0) - if result == False: - print('\n ModelCheck Failed in Package ' + self.Package+ ' Show Savelog \n') - print(Log) - dymola.clearlog() - dymola.close() - #exit(1) - except dymola_exception as ex: - print(("2: Error: " + str(ex))) - finally: - if dymola is not None: - dymola.close() - dymola = None - - - - def _compareIBPSA(self): - AixLibPackage = self.Package - IBPSAPackage = self.Package.replace("AixLib", "IBPSA") - """ Check the IBPSA Model Automatical """ - cmd = "git clone https://github.com/ibpsa/modelica-ibpsa.git" - returned_value = os.system(cmd) # returns the exit code in unix - print('returned value:', returned_value) - Path = r"bin/CITests/UnitTests/CheckPackages/LogFiles" - IBPSA_Data = Path+"//"+IBPSAPackage+"-log.txt" - # Check if the Log File exists - #if IBPSA_Data.is_file(): - IBPSAFile = open(IBPSA_Data,"r") - #else: - # print("No Log deposited") - # exit(1) - IBPSA_ErrorList = [] - AixLib_ErrorList = [] - for line in IBPSAFile: - List = line.split() - if len(List) > 1: - if List[0] == "Error:": - IBPSA_ErrorList.append(line) - IBPSAFile.close() - Path = r"AixLib/" - AixLibFile = open(Path+AixLibPackage+"-log.txt","r") - for line in AixLibFile: - List = line.split() - if len(List) > 1: - if List[0] == "Error:": - AixLib_ErrorList.append(line) - AixLibFile.close() - if len(AixLib_ErrorList) == len(IBPSA_ErrorList): - print("Errors are already in IPBSA Library") - exit(0) - elif len(AixLib_ErrorList) != len(IBPSA_ErrorList): - print("Error in "+ AixLibPackage) - for element in AixLib_ErrorList: - if not element in IBPSA_ErrorList: - print(element) - exit(1) - - - def _setLibraryRoot(self): - """Set the root directory of the library. - The root directory is the directory that contains the ``Resources`` folder - and the top-level ``package.mo`` file.""" - self._libHome = os.path.abspath(rootDir) - - def _validate_experiment_setup(path): - import buildingspy.development.validator as v - val = v.Validator() - retVal = val.validateExperimentSetup(path) - - ### Add to the environemtn variable 'var' the value 'value' -def _setEnvironmentVariables(var,value): - import os - import platform - if var in os.environ: - if platform.system() == "Windows": - os.environ[var] = value + ";" + os.environ[var] - else: - os.environ[var] = value + ":" + os.environ[var] - else: - os.environ[var] = value - -def timeout(time): - # Register a function to raise a TimeoutError on the signal. - signal.signal(signal.SIGALRM, raise_timeout) - # Schedule the signal to be sent after ``time``. - signal.alarm(time) - - try: - yield - except TimeoutError: - pass - finally: - # Unregister the signal so it won't be triggered - # if the timeout is not reached. - signal.signal(signal.SIGALRM, signal.SIG_IGN) - -def raise_timeout(signum, frame): - raise TimeoutError - - -if __name__ == '__main__': - """Parser""" - # Configure the argument parser - parser = argparse.ArgumentParser(description = "Check and Validate single Packages") - check_test_group = parser.add_argument_group("arguments to run check tests") - check_test_group.add_argument("-b", "--batch", action ="store_true", help="Run in batch mode without user Interaction") - check_test_group.add_argument("-t", "--tool", metavar="dymola",default="dymola", help="Tool for the Checking Tests. Set to Dymola") - check_test_group.add_argument('-s',"--single-package",metavar="AixLib.Package", help="Test only the Modelica package AixLib.Package") - check_test_group.add_argument("-p","--path", default=".", help = "Path where top-level package.mo of the library is located") - check_test_group.add_argument("-n", "--number-of-processors", type=int, default= multiprocessing.cpu_count(), help="Maximum number of processors to be used") - check_test_group.add_argument("--show-gui", help="show the GUI of the simulator" , action="store_true") - check_test_group.add_argument("-WL", "--WhiteList", help="Create a WhiteList of IBPSA Library: y: Create WhiteList, n: Don´t create WhiteList" , action="store_true") - check_test_group.add_argument("-SE", "--SimulateExamples", help="Check and Simulate Examples in the Package" , action="store_true") - check_test_group.add_argument("-DS", "--DymolaVersion",default="2020", help="Version of Dymola(Give the number e.g. 2020") - check_test_group.add_argument("-CM", "--Changedmodels",default=False, action="store_true") - - - # Parse the arguments - args = parser.parse_args() - ### Checks the Operating System, Important for the Python-Dymola Interface - if platform.system() == "Windows": - _setEnvironmentVariables("PATH", os.path.join(os.path.abspath('.'), "Resources", "Library", "win32")) - sys.path.insert(0, os.path.join('C:\\', - 'Program Files', - 'Dymola '+ args.DymolaVersion, - 'Modelica', - 'Library', - 'python_interface', - 'dymola.egg')) - print("operating system Windows") - else: - print("operating system Linux") - _setEnvironmentVariables("LD_LIBRARY_PATH", os.path.join(os.path.abspath('.'), "Resources", "Library", "linux32") + ":" + - os.path.join(os.path.abspath('.'),"Resources","Library","linux64")) - sys.path.insert(0, os.path.join('opt', - 'dymola-'+args.DymolaVersion+'-x86_64', - 'Modelica', - 'Library', - 'python_interface', - 'dymola.egg')) - sys.path.append(os.path.join(os.path.abspath('.'), "..", "..", "BuildingsPy")) - - - - - from dymola.dymola_interface import DymolaInterface - from dymola.dymola_exception import DymolaException - - dymola = None - try: - #dymola_exception = DymolaException - print("1: Starting Dymola instance") - if platform.system() == "Windows": - dymola = DymolaInterface() - else: - dymola = DymolaInterface(dymolapath="/usr/local/bin/dymola") - - ### Writes all information in the log file, not only the last entries - dymola.ExecuteCommand("Advanced.TranslationInCommandLog:=true;") - dym_sta_lic_available = dymola.ExecuteCommand('RequestOption("Standard");') - lic_counter = 0 - - CRED = '\033[91m' - CEND = '\033[0m' - green = "\033[0;32m" - - while dym_sta_lic_available == False: - print(CRED+"No Dymola License is available"+CEND) - dymola.close() - print("Check Dymola license after 60.0 seconds") - time.sleep(180.0) - ### Sets the Dymola path to activate the GUI - if platform.system() == "Windows": - dymola = DymolaInterface() - else: - dymola = DymolaInterface(dymolapath="/usr/local/bin/dymola") - dym_sta_lic_available = dymola.ExecuteCommand('RequestOption("Standard");') - lic_counter = lic_counter +1 - if lic_counter > 30: - if dym_sta_lic_available == False: - print("There are currently no available Dymola licenses available. Please try again later.") - dymola.close() - exit(1) - print(("2: Using Dymola port " + str(dymola._portnumber))) - print(green+"Dymola License is available"+CEND) - - - - from validatetest import ValidateTest - # Set environment variables - CheckModelTest = ValidateTest(Package = args.single_package, - Library = args.path, - batch = args.batch, - tool = args.tool, - n_pro = args.number_of_processors, - show_gui = args.show_gui, - WhiteList = args.WhiteList, - SimulateExamples = args.SimulateExamples, - Changedmodels = args.Changedmodels, - dymola = dymola, - dymola_exception = DymolaException) - - Git_Operation_Class = Git_Repository_Clone(Repository="Repo") - - """Start Check and Validate Test""" - if args.single_package: - single_package = args.single_package - else: - single_package = None - - """Write a new WhiteList""" - if args.WhiteList == True: - print("Write new Writelist from IBPSA Library") - version = CheckModelTest.read_l_whitelist_v() - Git_Operation_Class._CloneRepository() - CheckModelTest._WriteWhiteList(version) - exit(0) - - """Simulate all Examples and Validation in a Package""" - if args.SimulateExamples == True: - print("Simulate examples and validations") - - Error = CheckModelTest._SimulateModel() - if Error is None: - exit(1) - if len(Error) == 0: - print(green+"Simulate of all Examples was successful!"+CEND) - exit(0) - elif len(Error) > 0: - print(CRED+"Simulate Failed"+CEND) - for i in Error: - print(CRED+"Error: "+CEND+"Check Model "+i) - exit(1) - - #Check all Models in a Package - else: - Error = CheckModelTest._CheckModelAixLib() - if Error is None: - exit(1) - if args.Changedmodels == False: - IBPSA_Model = str(CheckModelTest._IgnoreWhiteList()) - print("\n"+"\n") - if len(IBPSA_Model) > 0: - print("Don´t Check these Models "+IBPSA_Model) - if len(Error) == 0: - print("Test was "+green+"Successful!"+CEND) - exit(0) - elif len(Error) > 0: - print("Test "+CRED+ "failed!"+CEND) - for i in Error: - print(CRED+"Error: "+CEND+"Check Model "+i) - exit(1) - - except DymolaException as ex: - print(("2: Error: " + str(ex))) - finally: - if dymola is not None: - dymola.close() - dymola = None - - \ No newline at end of file diff --git a/bin/02_CITests/UnitTests/list_extended_models.py b/bin/02_CITests/UnitTests/list_extended_models.py deleted file mode 100644 index 5f252bf182..0000000000 --- a/bin/02_CITests/UnitTests/list_extended_models.py +++ /dev/null @@ -1,479 +0,0 @@ -import os -import argparse -import platform -import sys -from CheckPackages.sort_models import git_models -import glob -import fnmatch -import time - -class Extended_model(object): - - def __init__(self, package, library, DymolaVersion): - self.package = package - self.library = library - self.DymolaVersion = DymolaVersion - - def _remove_duplicate(self): - reg_list = [] - ### Referencefiles - ref_file = Extended_model._change_txt_files(self) - ### ChangedUsedModels - usedmodel = Extended_model._list_used_models(self) - ### Mos Scripts - mos_files = Extended_model._change_mos_script(self) - ### Changed Examples - reg_models = Extended_model.list_regression_tests(self) - ### Create a final list - print("******************************") - print("Changed reference txt files :") - for r in ref_file: - print(' ' +r) - reg_list.append(r) - print("Changed bottom level examples :") - for d in usedmodel: - print(' ' +d) - reg_list.append(d) - print("Changed mos files :") - for m in mos_files: - print(' ' +m) - reg_list.append(m) - print("Changed regression examples :") - for l in reg_models: - print(' ' +l) - reg_list.append(l) - - print("******************************") - regression_models = list(set(reg_list)) - - models = [] - if len(regression_models) >0: - for l in regression_models: - #model = l[:l.rfind(".")] - - Num_Example = l.rfind(".Examples") - Num_Validation = l.rfind(".Validation") - if Num_Example > Num_Validation: - model = l[:Num_Example+9] - else: - model = l[:Num_Validation+11] - #model = l[:l.rfind("Validation")] - models.append(model) - testmodels = list(set(models)) - regression_models = testmodels - return regression_models - - - def _change_txt_files(self): - list_path = ".."+os.sep+'bin'+os.sep+'03_WhiteLists'+os.sep+'changedmodels.txt' - list_mo_models = git_models(".txt",self.package,list_path) - model_list = list_mo_models.sort_reference_txt() - return model_list - - def _change_mos_script(self): - list_path = ".."+os.sep+'bin'+os.sep+'03_WhiteLists'+os.sep+'changedmodels.txt' - list_mo_models = git_models(".mos",self.package,list_path) - model_list = list_mo_models.sort_mos_script() - - # Modified models are reproduced, which have also been stored as regression tests - return model_list - - - def _list_used_models(self): - #changed_model_list = Extended_model.list_changed_models(self) - changed_model_list = Extended_model.list_used_changed_models(self) - mos_list = [] - if platform.system() == "Windows": - _setEnvironmentVariables("PATH", os.path.join(os.path.abspath('.'), "Resources", "Library", "win32")) - sys.path.insert(0, os.path.join('C:\\', - 'Program Files', - 'Dymola '+ self.DymolaVersion, - 'Modelica', - 'Library', - 'python_interface', - 'dymola.egg')) - print("operating system Windows") - else: - print("operating system Linux") - _setEnvironmentVariables("LD_LIBRARY_PATH", os.path.join(os.path.abspath('.'), "Resources", "Library", "linux32") + ":" + - os.path.join(os.path.abspath('.'),"Resources","Library","linux64")) - sys.path.insert(0, os.path.join('opt', - 'dymola-'+self.DymolaVersion+'-x86_64', - 'Modelica', - 'Library', - 'python_interface', - 'dymola.egg')) - sys.path.append(os.path.join(os.path.abspath('.'), "..", "..", "BuildingsPy")) - - DymolaVersion = self.DymolaVersion - from dymola.dymola_interface import DymolaInterface - from dymola.dymola_exception import DymolaException - if platform.system() == "Windows": - dymola = DymolaInterface(showwindow=True) - else: - dymola = DymolaInterface(dymolapath="/usr/local/bin/dymola") - - - dymola.ExecuteCommand("Advanced.TranslationInCommandLog:=true;") - dym_sta_lic_available = dymola.ExecuteCommand('RequestOption("Standard");') - lic_counter = 0 - while dym_sta_lic_available == False: - print("No Dymola License is available") - dymola.close() - print("Check Dymola license after 180.0 seconds") - time.sleep(180.0) - ### Sets the Dymola path to activate the GUI - if platform.system() == "Windows": - dymola = DymolaInterface(showwindow=True) - else: - dymola = DymolaInterface(dymolapath="/usr/local/bin/dymola") - dym_sta_lic_available = dymola.ExecuteCommand('RequestOption("Standard");') - lic_counter = lic_counter +1 - if lic_counter > 30: - if dym_sta_lic_available == False: - print("There are currently no available Dymola licenses available. Please try again later.") - dymola.close() - exit(1) - print("Dymola License is available") - - # Load AixLib - LibraryCheck = dymola.openModel(self.library) - if LibraryCheck == True: - print("Found AixLib Library") - elif LibraryCheck == False: - print("Library Path is wrong. Please Check Path of AixLib Library Path") - exit(1) - - # Load ModelManagement - if platform.system() == "Windows": - dymola.ExecuteCommand('cd("C:\Program Files\Dymola '+self.DymolaVersion+'\Modelica\Library\ModelManagement 1.1.8\package.moe");') - else: - dymola.ExecuteCommand('cd("/opt/dymola-'+self.DymolaVersion+'-x86_64/Modelica/Library/ModelManagement 1.1.8/package.moe");') - package = self.package.replace("AixLib.","") - resource_file_path = "Resources"+os.sep+"Scripts"+os.sep+"Dymola"+os.sep+package - ### Search for all .mos examples - - for subdir, dirs, files in os.walk(resource_file_path): - for file in files: - filepath = subdir + os.sep + file - if filepath.endswith(".mos"): - example = filepath[filepath.find("Dymola"):] - example = example.replace("Dymola","AixLib") - example = example.replace(os.sep,".") - example = example.replace("..",".") - #example = example.replace(".mos",".mo") - example = example.replace(".mos","") - mos_list.append(example) - - #print(mos_list) - #print(changed_model_list) - test_regression_model = [] - for mos in mos_list: - for z in changed_model_list: - if mos == z: - mos_list.remove(z) - for l in mos_list: - list = [] - #print("Example : " +l) - usedmodels = dymola.ExecuteCommand('ModelManagement.Structure.Instantiated.UsedModels("'+l+'");') - for i in usedmodels: - lib = i.split(".") - if lib[0] == "Modelica": - continue - if i == l: - continue - if i == "Integer": - continue - if i == "Boolean": - continue - if i == "Real": - continue - if i == "String": - continue - else: - for z in changed_model_list: - if z == i: - list.append(l) - continue - else: - continue - if len(list) > 0: - test_regression_model.append(l) - dymola.close() - return test_regression_model - - - - - - - - def list_regression_tests(self): - ### List all models, that have changed before - changed_model_list = Extended_model.list_changed_models(self) - ### List and compare all regression examples that have changed, but no changes in the used classes - regression_model_list = Extended_model.list_changed_examples(self,changed_model_list) - - models_test_regression = [] - - if platform.system() == "Windows": - _setEnvironmentVariables("PATH", os.path.join(os.path.abspath('.'), "Resources", "Library", "win32")) - sys.path.insert(0, os.path.join('C:\\', - 'Program Files', - 'Dymola '+ self.DymolaVersion, - 'Modelica', - 'Library', - 'python_interface', - 'dymola.egg')) - print("operating system Windows") - else: - print("operating system Linux") - _setEnvironmentVariables("LD_LIBRARY_PATH", os.path.join(os.path.abspath('.'), "Resources", "Library", "linux32") + ":" + - os.path.join(os.path.abspath('.'),"Resources","Library","linux64")) - sys.path.insert(0, os.path.join('opt', - 'dymola-'+self.DymolaVersion+'-x86_64', - 'Modelica', - 'Library', - 'python_interface', - 'dymola.egg')) - sys.path.append(os.path.join(os.path.abspath('.'), "..", "..", "BuildingsPy")) - - - if len(regression_model_list) == 0: - print("No modified regression models") - #exit(0) - else: - ## Load AixLib Library - DymolaVersion = self.DymolaVersion - from dymola.dymola_interface import DymolaInterface - from dymola.dymola_exception import DymolaException - if platform.system() == "Windows": - dymola = DymolaInterface(showwindow=True) - else: - dymola = DymolaInterface(dymolapath="/usr/local/bin/dymola") - - dymola.ExecuteCommand("Advanced.TranslationInCommandLog:=true;") - dym_sta_lic_available = dymola.ExecuteCommand('RequestOption("Standard");') - lic_counter = 0 - while dym_sta_lic_available == False: - print("No Dymola License is available") - dymola.close() - print("Check Dymola license after 180.0 seconds") - time.sleep(180.0) - ### Sets the Dymola path to activate the GUI - if platform.system() == "Windows": - dymola = DymolaInterface(showwindow=True) - else: - dymola = DymolaInterface(dymolapath="/usr/local/bin/dymola") - dym_sta_lic_available = dymola.ExecuteCommand('RequestOption("Standard");') - lic_counter = lic_counter +1 - if lic_counter > 30: - if dym_sta_lic_available == False: - print("There are currently no available Dymola licenses available. Please try again later.") - dymola.close() - exit(1) - print("Dymola License is available") - - # Load AixLib - LibraryCheck = dymola.openModel(self.library) - if LibraryCheck == True: - print("Found AixLib Library and regression test starts") - elif LibraryCheck == False: - print("Library Path is wrong. Please Check Path of AixLib Library Path") - exit(1) - - # Load ModelManagement - if platform.system() == "Windows": - dymola.ExecuteCommand('cd("C:\Program Files\Dymola '+self.DymolaVersion+'\Modelica\Library\ModelManagement 1.1.8\package.moe");') - else: - dymola.ExecuteCommand('cd("/opt/dymola-'+self.DymolaVersion+'-x86_64/Modelica/Library/ModelManagement 1.1.8/package.moe");') - - ### Modified regression examples - for l in regression_model_list: - # print("Check model for regression test: "+l) - ## Search for all used classes in the example - ## Start CheckLibrary in ModelManagement - usedmodels = dymola.ExecuteCommand('ModelManagement.Structure.Instantiated.UsedModels("'+l+'");') - #extendedmodels = dymola.ExecuteCommand('ModelManagement.Structure.AST.ExtendsInClass("'+l+'");') - regression_model = Extended_model.compare_change_used_models(self,usedmodels,l,changed_model_list) - if regression_model is None: - continue - elif len(regression_model) > 0: - models_test_regression.append(regression_model) - dymola.close() - - if len(models_test_regression) > 0: - print("These models have been changed and a regression test is started") - for l in models_test_regression: - print(' Check Example: "'+l+'"') - - - return models_test_regression - - #def set_package(self): - - - def list_used_model(self): - result = Extended_model.extended_modelmanagement(self) - usedmodels = result[0] - extendedmodels = result[1] - model_list = Extended_model.list_changed_models(self) - return usedmodels, model_list - - def compare_change_used_models(self,usedmodel,regression_model,model_list): - #result = Extended_model.list_used_model(self) - #usedmodel = result[0] - #changed_model_list = result[1] - aixlib_used_model = [] - for i in usedmodel: - lib = i.split(".") - if lib[0] == "Modelica": - continue - if i == "Real": - continue - if i == "Integer": - continue - if i == "Boolean": - continue - if i == "String": - continue - ### List all used models from aixlib library - if i == regression_model: - continue - else: - aixlib_used_model.append(i) - # loop for used classes - #ErrorCount = 0 - list = [] - for l in aixlib_used_model: - ## loop for changed models - for i in model_list: - ## if changed model is a used model in a example a new regression test is not possible - if i == l: - #print("***************************************") - list.append(i) - #print("\nThe used models "+ l+" in the example "+ regression_model +" have changed.\n You have to adapt your .mos file under AixLib\Resources\Scripts\Dymola with your changed classes.") - #ErrorCount = ErrorCount + 1 - continue - else: - continue - - if len(list) > 0: - print("***************************************") - print("Model " + regression_model + " have the following used models, that have changed") - for z in list: - print("Used Model " + z) - print("Cannot perform a new regression test.") - #print("nA used class in the example was changed.\nEither a new reference file must be created or the modified used class must be reset to its original state.") - if len(list) == 0: - #print("Start Regression test for model: " + regression_model) - return regression_model - - - - - - def list_changed_examples(self, changed_model_list): - - mos_list = [] - package = self.package.replace("AixLib.","") - resource_file_path = "Resources"+os.sep+"Scripts"+os.sep+"Dymola"+os.sep+package - ### Search for all .mos examples - - for subdir, dirs, files in os.walk(resource_file_path): - for file in files: - filepath = subdir + os.sep + file - if filepath.endswith(".mos"): - mos_list.append(filepath) - ### List all models, that have changed before - #changedmodel = Extended_model.list_changed_models(self) - mos_list_model = [] - # list all .mos model in Aixlib form - for i in mos_list: - if i.find("Dymola")>-1: - i = (i[i.find("Dymola"):i.find(".mos")]) - i = i.replace("Dymola","AixLib") - i = i.replace(os.sep,".") - mos_list_model.append(i) - #print(mos_list_model) - regression_model_list = [] - for l in mos_list_model: - for i in changed_model_list: - if l == i: - regression_model_list.append(l) - - # Modified models are reproduced, which have also been stored as regression tests - return regression_model_list - - def list_used_changed_models(self): - list_path = ".."+os.sep+'bin'+os.sep+'03_WhiteLists'+os.sep+'changedmodels.txt' - pack = "AixLib" - list_mo_models = git_models(".mo",pack,list_path) - model_list = list_mo_models.sort_mo_models() - return model_list - - - def list_changed_models(self): - list_path = ".."+os.sep+'bin'+os.sep+'03_WhiteLists'+os.sep+'changedmodels.txt' - - #list_mo_models = git_models(".mo","AixLib",list_path) - list_mo_models = git_models(".mo",self.package,list_path) - - model_list = list_mo_models.sort_mo_models() - return model_list - - def extended_modelmanagement(self, regression_model_list): - - # Start CheckLibrary in ModelManagement - usedmodels = dymola.ExecuteCommand('ModelManagement.Structure.Instantiated.UsedModels("'+regression_model_list+'");') - extendedmodels = dymola.ExecuteCommand('ModelManagement.Structure.AST.ExtendsInClass("'+regression_model_list+'");') - #Modelmanagement Commands - #ModelManagement.Structure.AST.ExtendsInClass("AixLib.Airflow.AirHandlingUnit.Examples.AHU") - #ModelManagement.Structure.AST.ComponentsInClass("AixLib.Airflow.AirHandlingUnit.Examples.AHU"); - #ModelManagement.Structure.Instantiated.UsedModels("Modelica.Mechanics.Rotational.Examples.CoupledClutches"); - dymola.close() - return usedmodels, extendedmodels - -### Add to the environemtn variable 'var' the value 'value' -def _setEnvironmentVariables(var,value): - import os - import platform - - if var in os.environ: - if platform.system() == "Windows": - os.environ[var] = value + ";" + os.environ[var] - else: - os.environ[var] = value + ":" + os.environ[var] - else: - os.environ[var] = value - -if __name__ == '__main__': - """Parser""" - # Configure the argument parser - parser = argparse.ArgumentParser(description = "Check the Style of Packages") - check_test_group = parser.add_argument_group("arguments to run check tests") - check_test_group.add_argument("-t", "--tool", metavar="dymola",default="dymola", help="Tool for the Checking Tests. Set to Dymola") - check_test_group.add_argument('-s',"--single-package",metavar="AixLib.Package", help="Test only the Modelica package AixLib.Package") - check_test_group.add_argument("-p","--path", default=".", help = "Path where top-level package.mo of the library is located") - check_test_group.add_argument("-DS", "--DymolaVersion",default="2020", help="Version of Dymola(Give the number e.g. 2020") - - # Parse the arguments - args = parser.parse_args() - - from list_extended_models import Extended_model - func_list_models = Extended_model(package = args.single_package, - library = args.path, - DymolaVersion = args.DymolaVersion) - - # Set path for python-dymola-interface: Operating System windows and linux - ## List Regression models - #func_list_models.list_regression_tests() - #func_list_models._list_used_models() - #func_list_models._change_mos_script() - #func_list_models._change_txt_files() - func_list_models._remove_duplicate() - #func_list_models.list_changed_examples() - #func_list_models.compare_change_used_models() - - - \ No newline at end of file diff --git a/bin/02_CITests/UnitTests/reference_check.py b/bin/02_CITests/UnitTests/reference_check.py deleted file mode 100644 index 28639169b9..0000000000 --- a/bin/02_CITests/UnitTests/reference_check.py +++ /dev/null @@ -1,245 +0,0 @@ -import os -import sys -from CheckPackages.sort_models import git_models -import platform -import multiprocessing - -import argparse - -class Reg_Reference(object): - def __init__(self, package, library ): - self.package = package - self.library = library - - ## Sort alle - def _sort_mos_scripts(self): - Name = self.package.replace("AixLib.","") - Name = Name.replace("AixLib","") - Name = Name.replace(".",os.sep) - resource_file_path = "Resources"+os.sep+"Scripts"+os.sep+"Dymola"+os.sep+Name - #resource_file_path = "Resources"+os.sep+"Scripts"+os.sep+"Dymola" - CRED = '\033[91m' - CEND = '\033[0m' - green = "\033[0;32m" - mos_list = [] - wmos_list = [] - - for subdir, dirs, files in os.walk(resource_file_path): - for file in files: - filepath = subdir + os.sep + file - f = open(filepath, "r") - str = f.read() - if str.find("simulateModel") > -1: - if filepath.endswith(".mos"): - mos_script = filepath[filepath.find("Dymola"):] - mos_script = mos_script.replace("Dymola",self.library) - mos_script = mos_script.replace(os.sep, ".") - mos_script = mos_script.replace(".mos", "") - mos_list.append(mos_script) - if str.find("simulateModel") == -1: - if filepath.endswith(".mos"): - print("\n"+CRED+"This mos script is not suitable for regression testing: "+CEND+filepath+"\n") - - ''' - mos_script = filepath[filepath.find("Dymola"):] - mos_script = mos_script.replace("Dymola",self.library) - mos_script = mos_script.replace(os.sep, ".") - mos_script = mos_script.replace(".mos", "") - wmos_list.append(mos_script) - ''' - - f.close() - continue - - return mos_list - - def _check_ref(self): - ref_file_path = "Resources"+os.sep+"ReferenceResults"+os.sep+"Dymola" - ref_list = [] - for subdir, dirs, files in os.walk(ref_file_path): - for file in files: - filepath = subdir + os.sep + file - if filepath.endswith(".txt"): - if filepath.find(self.package.replace(".","_")) > -1: - ref_txt = filepath[filepath.find(self.library):] - #ref_txt = ref_txt.replace("_",".") - ref_txt = ref_txt.replace(".txt","") - ref_list.append(ref_txt) - return ref_list - - def compare_ref_mos(self): - # Mos Scripts - mos_list = Reg_Reference._sort_mos_scripts(self) - - # Reference files - ref_list = Reg_Reference._check_ref(self) - - - - err_list = [] - for i in mos_list: - i_ch = i.replace(".","_") - for l in ref_list: - if i_ch == l: - err_list.append(i) - break - else: - continue - - - for i in err_list: - mos_list.remove(i) - ##Test - ref_file_path = "Resources"+os.sep+"ReferenceResults"+os.sep+"Dymola" - for subdir, dirs, files in os.walk(ref_file_path): - for file in files: - filepath = subdir + os.sep + file - if filepath.endswith(".txt"): - if filepath.find(self.package) > -1: - ref_txt = filepath[filepath.find(self.library):] - for t in mos_list: - t = t.replace(".","_")+".txt" - if ref_txt == t: - mos_list.remove(t) - - ''' - if len(mos_list) > 0: - for i in mos_list: - print("Reference file " + i.replace(".","_")+".txt does not yet exist") - continue - print("Create new Reference files") - ''' - return mos_list - - def create_ReferenceResults(self): - mos_list = Reg_Reference.compare_ref_mos(self) - import buildingspy.development.regressiontest as u - - - self._libHome = os.path.abspath(".") - ut = u.Tester(tool="dymola") - ut.batchMode(False) - ut.setLibraryRoot(".") - - Ref_List = [] - '''if mos_list is not None: - ut.setSinglePackage(self.package) - ut.setNumberOfThreads(self.n_pro) - ut.pedanticModelica(False) - ut.showGUI(True) - #ut.showGUI(self.show_gui) - retVal = ut.run()''' - - - if mos_list is not None: - for i in mos_list: - name = i - name = name[:name.rfind(".")] - #name = name[:name.rfind("Example")+7] - #name = name[:name.rfind("Validation")+10] - - Ref_List.append(name) - Ref = list(set(Ref_List)) - #EOF = open('EOF', 'w') - #EOF.write("y") - for i in Ref: - print("Generate new Reference File for "+i) - #name = i.replace("_",".") - #name = name[:name.rfind(".")] - ut.setSinglePackage(i) - ut.setNumberOfThreads(self.n_pro) - ut.pedanticModelica(False) - ut.showGUI(True) - - #ut.showGUI(self.show_gui) - retVal = ut.run() - continue - else: - print("All Reference files exists. Now the CI Tests will starts") - exit(0) - - - #return retVal - - - - - - - - - -def _setEnvironmentVariables(var, value): - ''' Add to the environment variable `var` the value `value` - ''' - import os - import platform - if var in os.environ: - if platform.system() == "Windows": - os.environ[var] = value + ";" + os.environ[var] - else: - os.environ[var] = value + ":" + os.environ[var] - else: - os.environ[var] = value - -if __name__ == '__main__': - - - - # Set environment variables - parser = argparse.ArgumentParser(description='Run the unit tests or the html validation only.') - unit_test_group = parser.add_argument_group("arguments to run unit tests") - - unit_test_group.add_argument('-s', "--single-package", - metavar="Modelica.Package", - help="Test only the Modelica package Modelica.Package") - - unit_test_group.add_argument("-p", "--path", - default = ".", - help="Path where top-level package.mo of the library is located") - - unit_test_group.add_argument("-n", "--number-of-processors", - type=int, - default = multiprocessing.cpu_count(), - help='Maximum number of processors to be used') - - unit_test_group.add_argument("--show-gui", - help='Show the GUI of the simulator', - action="store_true") - - unit_test_group.add_argument('-t', "--tool", - metavar="dymola", - default="dymola", - help="Tool for the regression tests. Set to dymola or jmodelica") - - unit_test_group.add_argument("-b", "--batch", - action="store_true", - help="Run in batch mode without user interaction") - - - if platform.system() == "Windows": - _setEnvironmentVariables("PATH", - os.path.join(os.path.abspath('.'), - "Resources", "Library", "win32")) - else: - # For https://github.com/lbl-srg/modelica-buildings/issues/559, we add - # 32 and 64 bit resources to run the Utilities.IO.Python27 regression tests. - _setEnvironmentVariables("LD_LIBRARY_PATH", - os.path.join(os.path.abspath('.'), - "Resources", "Library", "linux32") + ":" + - os.path.join(os.path.abspath('.'), - "Resources", "Library", "linux64")) - - # The path to buildingspy must be added to sys.path to work on Linux. - # If only added to os.environ, the Python interpreter won't find buildingspy - sys.path.append(os.path.join(os.path.abspath('.'), "..", "..", "BuildingsPy")) - - # Parse the arguments - args = parser.parse_args() - from reference_check import Reg_Reference - ref_check = Reg_Reference(package = args.single_package, - library = args.path) - - #ref_check = Reg_Reference(package,library) - ref_check.create_ReferenceResults() - exit(0) \ No newline at end of file diff --git a/bin/02_CITests/UnitTests/runUnitTests.py b/bin/02_CITests/UnitTests/runUnitTests.py deleted file mode 100644 index 7db110e30f..0000000000 --- a/bin/02_CITests/UnitTests/runUnitTests.py +++ /dev/null @@ -1,546 +0,0 @@ -#!/usr/bin/env python -####################################################### -# Script that runs all unit tests or, optionally, -# only checks the html syntax or the validity of -# the simulation parameters of the models -# -# To run the unit tests, this script -# - creates temporary directories for each processor, -# - copies the library directory into these -# temporary directories, -# - creates run scripts that run all unit tests, -# - runs these unit tests, -# - collects the dymola log files from each process, -# - writes the combined log file 'unitTests.log' -# in the current directory, -# - checks whether all unit tests run successfully, -# and produced the same results as the reference -# results, and -# - exits with the message -# 'Unit tests completed successfully.' or with -# an error message. -# -# If no errors occurred during the unit tests, then -# this script returns 0. Otherwise, it returns a -# non-zero exit value. -# -# MWetter@lbl.gov 2011-02-23 -# TSNouidui@lbl.gov 2017-04-11 -####################################################### - - -def _validate_experiment_setup(path): - import buildingspy.development.validator as v - - val = v.Validator() - retVal = val.validateExperimentSetup(path) - -def _validate_html(path): - import buildingspy.development.validator as v - - val = v.Validator() - errMsg = val.validateHTMLInPackage(path) - n_msg = len(errMsg) - for i in range(n_msg): - if i == 0: - print("The following malformed html syntax has been found:\n%s" % errMsg[i]) - else: - print(errMsg[i]) - - if n_msg == 0: - return 0 - else: - return 1 - -def _setEnvironmentVariables(var, value): - ''' Add to the environment variable `var` the value `value` - ''' - import os - import platform - if var in os.environ: - if platform.system() == "Windows": - os.environ[var] = value + ";" + os.environ[var] - else: - os.environ[var] = value + ":" + os.environ[var] - else: - os.environ[var] = value - - -def create_ReferenceResults( tool, package, path, n_pro, show_gui): - from reference_check import Reg_Reference - import buildingspy.development.regressiontest as u - ref_check = Reg_Reference(package = args.single_package, - library = args.path) - - CRED = '\033[91m' - CEND = '\033[0m' - green = "\033[0;32m" - mos_list = ref_check.compare_ref_mos() - - ut = u.Tester(tool=tool) - ut.batchMode(False) - ut.setLibraryRoot(".") - - exitFile = ".."+os.sep+"bin"+os.sep+"06_Configfiles"+os.sep+"exit.sh" - Exit = open(exitFile, "w") - Ref_List = [] - '''if mos_list is not None: - ut.setSinglePackage(self.package) - ut.setNumberOfThreads(self.n_pro) - ut.pedanticModelica(False) - ut.showGUI(True) - #ut.showGUI(self.show_gui) - retVal = ut.run()''' - - Ref_Whitelist = open(".."+os.sep+"bin"+os.sep+"03_WhiteLists"+os.sep+"ref_Whitelist.txt", "r") - WhiteList = [] - ''' - line = Ref_Whitelist.readline() - if len(line) == 0: - print("Leere Zeile") - print(line) - else: - line = line.replace('\n','') - line = line.replace("'",'') - WhiteList.append(line) - Ref_Whitelist.close()''' - for x in Ref_Whitelist: - x = x.strip() - if len(x) == 0: - continue - else: - WhiteList.append(x) - - Ref_Whitelist.close() - - if mos_list is not None: - for z in mos_list: - print(CRED+"No Reference result for Model "+CEND +z) - - for i in mos_list: - name = i - name = name[:name.rfind(".")] - Ref_List.append(name) - Ref = list(set(Ref_List)) - - Err_List = [] - for z in Ref: - for i in WhiteList: - if z.find(i) > -1: - print(green+"Don´t Create Reference results for Package "+CEND+z+ green+" : This Package is on the WhiteList"+CEND) - Err_List.append(z) - else: - continue - for x in Err_List: - Ref.remove(x) - - if len(Ref) == 0: - print(green+"All Reference files exists, except the Models on WhiteList."+CEND) - Exit.write("#!/bin/bash"+"\n"+"\n"+"exit 0") - Exit.close() - exit(0) - - print(green+"Create reference results for following Examples:"+CEND) - for x in Ref: - print(' '+x) - - - for i in Ref: - - '''if i.find("DataBase")> -1: - continue - if i.find("Obsolete") > -1: - continue - if i.find("Types") >-1: - continue - if i.find("UsersGuide") > -1: - continue - if i.find("Utilities") > -1: - continue''' - print(green+"Generate new Reference File for "+CEND+i) - #name = i.replace("_",".") - #name = name[:name.rfind(".")] - ut.setSinglePackage(i) - ut.setNumberOfThreads(n_pro) - ut.pedanticModelica(False) - ut.showGUI(False) - #ut.showGUI(self.show_gui) - retVal = ut.run() - continue - - - Exit.write("#!/bin/bash"+"\n"+"\n"+"exit 1") - Exit.close() - print("Check the new reference results") - if len(mos_list) == 0: - print("All Reference files exists.") - Exit.write("#!/bin/bash"+"\n"+"\n"+"exit 0") - Exit.close() - sys.exit(0) - -def _update_ref(batch, tool, package,path, n_pro, show_gui): - import buildingspy.development.regressiontest as u - - ut = u.Tester(tool=tool) - ut.batchMode(batch) - ut.setLibraryRoot(path) - Errorlist = [] - green = "\033[0;32m" - CRED = '\033[91m' - CEND = '\033[0m' - if package is not None: - ut.setSinglePackage(package) - ut.setNumberOfThreads(n_pro) - ut.pedanticModelica(False) - ut.showGUI(show_gui) - retVal = ut.run() - - - return retVal - - -def _runUnitTests(batch, tool, package, path, n_pro, show_gui,modified_models): - - import buildingspy.development.regressiontest as u - - ut = u.Tester(tool=tool) - ut.batchMode(batch) - ut.setLibraryRoot(path) - Errorlist = [] - green = "\033[0;32m" - CRED = '\033[91m' - CEND = '\033[0m' - - - - if modified_models == False: - if package is not None: - ut.setSinglePackage(package) - ut.setNumberOfThreads(n_pro) - ut.pedanticModelica(False) - ut.showGUI(show_gui) - #ut._check_fmu_statistics("y") - # ut.get_test_example_coverage() - # Below are some option that may occassionally be used. - # These are currently not exposed as command line arguments. - # ut.setNumberOfThreads(1) - # ut.deleteTemporaryDirectories(False) - # ut.useExistingResults(['/tmp/tmp-Buildings-0-fagmeZ']) - - # ut.writeOpenModelicaResultDictionary() - # Run the regression tests - - retVal = ut.run() - # comment out this line for local usage - ut.get_test_example_coverage() - return retVal - - if modified_models == True: - #regression_models = func_list_models.list_regression_tests() - regression_models = func_list_models._remove_duplicate() - - if len(regression_models) == 0: - print("No models to start a regression test") - retVal = 0 - - if len(regression_models) > 0: - print("Number of checked packages: "+ str(len(regression_models))) - print("Check examples : ") - for l in regression_models: - print(l) - if len(regression_models) > 10: - print("Over 10 changed models. Check all models in AixLib package "+package) - if package is not None: - ut.setSinglePackage(package) - ut.setNumberOfThreads(n_pro) - ut.pedanticModelica(False) - ut.showGUI(show_gui) - retVal = ut.run() - ut.get_test_example_coverage() - #return retVal - else: - for l in regression_models: - if l.rfind("package")> -1: - print("packages") - continue - #print("\n*****************************\nRegression test for model: "+l) - #model_package = l[:l.rfind(".")] - model_package = l - ut.setSinglePackage(model_package) - ut.setNumberOfThreads(n_pro) - ut.pedanticModelica(False) - ut.showGUI(show_gui) - # ut.get_test_example_coverage() - # Below are some option that may occassionally be used. - # These are currently not exposed as command line arguments. - # ut.setNumberOfThreads(1) - # ut.deleteTemporaryDirectories(False) - # ut.useExistingResults(['/tmp/tmp-Buildings-0-fagmeZ']) - - # ut.writeOpenModelicaResultDictionary() - # Run the regression tests - - retVal = ut.run() - if retVal == 1: - Errorlist.append(l) - print(CRED+"Regression test for model "+l+ " was not successfull"+CEND) - if retVal != 0: - print(green+"Regression test for model "+l+ " was successful"+CEND) - # comment out this line for local usage - ut.get_test_example_coverage() - if len(Errorlist) > 0: - retVal = 1 - print(CRED+"Regression test failed"+CEND) - print("The following packages "+CRED+"failed"+CEND) - for l in Errorlist: - print(CRED+" Error: "+CEND+l) - else: - retVal = 0 - print(green+"Regression test was successful"+CEND) - - return retVal - - -def _run_coverage_only(batch, tool, package, path, n_pro, show_gui): - import buildingspy.development.regressiontest as u - - ut = u.Tester(tool=tool) - ut.batchMode(batch) - ut.setLibraryRoot(path) - if package is not None: - ut.setSinglePackage(package) - # ut.setNumberOfThreads(n_pro) - # ut.pedanticModelica(True) - # ut.showGUI(show_gui) - ut.get_test_example_coverage() - return 0 - - -def _runOpenModelicaUnitTests(): - import buildingspy.development.regressiontest as u - ut = u.Tester() - ut.batchMode(batch) - ut.test_OpenModelica(cmpl=True, simulate=True, - packages=['Examples'], number=-1) - - - -def createFolder(directory): - try: - if not os.path.exists(directory): - os.makedirs(directory) - except OSError: - print ('Error: Creating directory. ' + directory) - - - -if __name__ == '__main__': - import multiprocessing - import platform - import argparse - import os - import sys - import time - - # Configure the argument parser - parser = argparse.ArgumentParser(description='Run the unit tests or the html validation only.') - unit_test_group = parser.add_argument_group("arguments to run unit tests") - - unit_test_group.add_argument("-b", "--batch", - action="store_true", - help="Run in batch mode without user interaction") - unit_test_group.add_argument('-t', "--tool", - metavar="dymola", - default="dymola", - help="Tool for the regression tests. Set to dymola or jmodelica") - unit_test_group.add_argument('-s', "--single-package", - metavar="Modelica.Package", - help="Test only the Modelica package Modelica.Package") - unit_test_group.add_argument("-p", "--path", - default = ".", - help="Path where top-level package.mo of the library is located") - - unit_test_group.add_argument("-n", "--number-of-processors", - type=int, - default = multiprocessing.cpu_count(), - help='Maximum number of processors to be used') - unit_test_group.add_argument("--show-gui", - help='Show the GUI of the simulator', - action="store_true") - - unit_test_group.add_argument("--coverage-only", - help='Only run the coverage test', - action="store_true") - - unit_test_group.add_argument("--check-ref", - help='checks if all reference files exist', - action="store_true") - unit_test_group.add_argument("--update-ref", - help='update all reference files', - action="store_true") - - - unit_test_group.add_argument("--modified-models", - help='Regression test only for modified models', - default=False, - action="store_true") - - unit_test_group.add_argument("-DS", "--DymolaVersion",default="2020", help="Version of Dymola(Give the number e.g. 2020") - - html_group = parser.add_argument_group("arguments to check html syntax only") - html_group.add_argument("--validate-html-only", - action="store_true") - - experiment_setup_group = parser.add_argument_group("arguments to check validity of .mos and .mo experiment setup only") - experiment_setup_group.add_argument("--validate-experiment-setup", - action="store_true") - - # Set environment variables - if platform.system() == "Windows": - _setEnvironmentVariables("PATH", - os.path.join(os.path.abspath('.'), - "Resources", "Library", "win32")) - else: - # For https://github.com/lbl-srg/modelica-buildings/issues/559, we add - # 32 and 64 bit resources to run the Utilities.IO.Python27 regression tests. - _setEnvironmentVariables("LD_LIBRARY_PATH", - os.path.join(os.path.abspath('.'), - "Resources", "Library", "linux32") + ":" + - os.path.join(os.path.abspath('.'), - "Resources", "Library", "linux64")) - - # The path to buildingspy must be added to sys.path to work on Linux. - # If only added to os.environ, the Python interpreter won't find buildingspy - sys.path.append(os.path.join(os.path.abspath('.'), "..", "..", "BuildingsPy")) - - - # Parse the arguments - args = parser.parse_args() - - from list_extended_models import Extended_model - func_list_models = Extended_model(package = args.single_package, - library = "package.mo", - DymolaVersion = args.DymolaVersion) - - - - if args.validate_html_only: - # Validate the html syntax only, and then exit - ret_val = _validate_html(args.path) - exit(ret_val) - - if args.validate_experiment_setup: - # Match the mos file parameters with the mo files only, and then exit - ret_val = _validate_experiment_setup(args.path) - exit(ret_val) - - if args.single_package: - single_package = args.single_package - else: - single_package = None - - if args.check_ref: - - ret_val = create_ReferenceResults(tool = args.tool, - package = single_package, - path = args.path, - n_pro = args.number_of_processors, - show_gui = args.show_gui) - exit(0) - - if args.update_ref: - - ret_val = _update_ref(batch = args.batch, - tool = args.tool, - package = single_package, - path = args.path, - n_pro = args.number_of_processors, - show_gui = args.show_gui) - package = single_package - new_ref_path = ".."+os.sep+"New_Reference_Files" - ref_dir = ".."+os.sep+"AixLib"+os.sep+"Resources"+os.sep+"ReferenceResults"+os.sep+"Dymola" - import os - from datetime import date - import shutil - ref_files = os.listdir(ref_dir) - current_date = date.today() - - ref_list = [] - createFolder(new_ref_path) - - for i in ref_files: - if i.find(package): - t = ref_dir+os.sep+i - for line in open(t, 'r'): - if line.find("last-generated=") > -1: - if line.find(str(current_date))> -1: - shutil.copy2(t,new_ref_path) - continue - - - exit(ret_val) - - elif args.coverage_only: - ret_val = _run_coverage_only(batch = args.batch, - tool = args.tool, - package = single_package, - path = args.path, - n_pro = args.number_of_processors, - show_gui = args.show_gui) - exit(ret_val) - else: - from dymola.dymola_interface import DymolaInterface - from dymola.dymola_exception import DymolaException - - dymola = None - try: - - print("1: Starting Dymola instance") - if platform.system() == "Windows": - dymola = DymolaInterface() - else: - dymola = DymolaInterface(dymolapath="/usr/local/bin/dymola") - - ### Writes all information in the log file, not only the last entries - dymola.ExecuteCommand("Advanced.TranslationInCommandLog:=true;") - dym_sta_lic_available = dymola.ExecuteCommand('RequestOption("Standard");') - lic_counter = 0 - - green = "\033[0;32m" - CRED = '\033[91m' - CEND = '\033[0m' - - while dym_sta_lic_available == False: - print(CRED+"No Dymola License is available"+CEND) - dymola.close() - print("Check Dymola license after 60.0 seconds") - time.sleep(180.0) - ### Sets the Dymola path to activate the GUI - if platform.system() == "Windows": - dymola = DymolaInterface() - else: - dymola = DymolaInterface(dymolapath="/usr/local/bin/dymola") - dym_sta_lic_available = dymola.ExecuteCommand('RequestOption("Standard");') - lic_counter = lic_counter +1 - if lic_counter > 30: - if dym_sta_lic_available == False: - print(CRED+"There are currently no available Dymola licenses available. Please try again later."+CEND) - dymola.close() - exit(1) - print(("2: Using Dymola port " + str(dymola._portnumber))) - print(green+"Dymola License is available"+CEND) - retVal = _runUnitTests(batch = args.batch, - tool = args.tool, - package = single_package, - path = args.path, - n_pro = args.number_of_processors, - show_gui = args.show_gui, - modified_models = args.modified_models) - exit(retVal) - except DymolaException as ex: - print(("2: Error: " + str(ex))) - finally: - if dymola is not None: - dymola.close() - dymola = None - # _runOpenModelicaUnitTests() diff --git a/bin/02_CITests/__init__.py b/bin/02_CITests/__init__.py deleted file mode 100644 index f27432775f..0000000000 --- a/bin/02_CITests/__init__.py +++ /dev/null @@ -1,6 +0,0 @@ -import os - -# Version. -version_path = os.path.abspath(os.path.join(os.path.dirname(__file__), 'VERSION')) -with open(version_path) as f: - __version__ = f.read().strip() \ No newline at end of file diff --git a/bin/02_CITests/deploy/IBPSA_Merge/PR_IPBSA_Merge.py b/bin/02_CITests/deploy/IBPSA_Merge/PR_IPBSA_Merge.py deleted file mode 100644 index 3987983411..0000000000 --- a/bin/02_CITests/deploy/IBPSA_Merge/PR_IPBSA_Merge.py +++ /dev/null @@ -1,121 +0,0 @@ -import requests -import json -import argparse -import os -import sys - - -class GET_API_GITHUB(object): - - def __init__(self,Correct_Branch,GITHUB_REPOSITORY, Working_Branch): - self.GITHUB_REPOSITORY = GITHUB_REPOSITORY - self.Correct_Branch = Correct_Branch - self.Working_Branch = Working_Branch - - def jprint(self): - # create a formatted string of the Python JSON object - text = json.dumps(obj, sort_keys=True, indent=4) - print(type(text)) - print(text) - - def get_GitHub_Username(self): - url = "https://api.github.com/repos/"+self.GITHUB_REPOSITORY+"/branches/"+self.Correct_Branch - print(url) - payload = {} - headers= {} - - response = requests.request("GET", url, headers=headers, data = payload) - print(response) - branch = response.json() - print(branch) - commit = branch["commit"] - author = commit["author"] - login = author["login"] - return login - - def return_owner(self): - owner = self.GITHUB_REPOSITORY - owner = owner.split("/") - print(owner[0]) - return owner[0] - -class PULL_REQUEST_GITHUB(object): - - def __init__(self,Correct_Branch,GITHUB_REPOSITORY, Working_Branch, OWNER, GITHUB_TOKEN): - self.GITHUB_REPOSITORY = GITHUB_REPOSITORY - self.Correct_Branch = Correct_Branch - self.Working_Branch = Working_Branch - self.GITHUB_TOKEN = GITHUB_TOKEN - self.OWNER = OWNER - - def post_pull_request(self): - - url = "https://api.github.com/repos/"+self.GITHUB_REPOSITORY+"/pulls" - payload = '{\n \"title\": \"IBPSA Merge '+self.Working_Branch+'\",\n \"body\": \"Following you will find the instructions for the IBPSA merge: \\n 1. Please pull this branch IBPSA_Merge to your local repository. \\n 2. As an additional safetey check please open the AixLib library in Dymola and have a look whether errors or relevant hints have occured (e.g. due to false package orders). You do not need to check (F8), translate (F9) the whole library or simulate (F10) any models. This was already done by the CI. \\n 3. If you need to fix bugs or perform changes to the models of the AixLib, push these changes using this commit message to prevent to run the automatic IBPSA merge again: **`fix errors manually`**. \\n 4. You can also output the different reference files between the IBPSA and the AixLib using the CI or perform an automatic update of the reference files which lead to problems. \\n To do this, use one of the following commit messages \\n **`Trigger CI - give different reference results`** or \\n **`Trigger CI - Update reference results`** \\n The CI outputs the reference files as artifacts in GitLab. To find them go to the triggered pipeline in GitLab and find the artifacts as download on the right side. \\n 5. If the tests in the CI have passed successfully, merge the branch IBPSA_Merge to development branch. **Delete** the Branch ' +self.Correct_Branch+ '\",\n \"head\": \"'+self.OWNER+':'+self.Correct_Branch+'\",\n \"base\": \"'+self.Working_Branch+'\"\n \n}' - headers = { - 'Authorization': 'Bearer '+self.GITHUB_TOKEN, - 'Content-Type': 'application/json' - } - response = requests.request("POST", url, headers=headers, data = payload) - print(response.text.encode('utf8')) - return response - - - def get_pull_request_number(self, pull_request_response): - pull_request_number = pull_request_response.json() - pull_request_number = pull_request_number["number"] - print(pull_request_number) - return pull_request_number - - - def update_pull_request_assignees(self,pull_request_number,assignees_owner): - - url = "https://api.github.com/repos/"+self.GITHUB_REPOSITORY+"/issues/"+str(pull_request_number) - - payload = '{ \"assignees\": [\r\n \"'+assignees_owner+'\"\r\n ],\r\n \"labels\": [\r\n \"CI\", \r\n \"IBPSA_Merge\"\r\n \r\n ]\r\n}' - - headers = { - 'Authorization': 'Bearer '+self.GITHUB_TOKEN, - 'Content-Type': 'application/json' - } - - response = requests.request("PATCH", url, headers=headers, data = payload) - - print("User "+assignees_owner+" assignee to pull request Number "+str(pull_request_number)) - - - - - - -if __name__ == '__main__': - # GITHUB_REPOSITORY - # python api.py --GITHUB-REPOSITORY SvenHinrichs/GitLabCI --Working-Branch master - """Parser""" - # Configure the argument parser - parser = argparse.ArgumentParser(description = "Set Github Environment Variables") - check_test_group = parser.add_argument_group("Arguments to set Environment Variables") - check_test_group.add_argument("-CB", "--Correct-Branch", default ="${Newbranch}", help="Branch to correct your Code") - check_test_group.add_argument("-GR", "--GITHUB-REPOSITORY", default="RWTH-EBC/AixLib", help="Environment Variable owner/RepositoryName" ) - check_test_group.add_argument('-WB',"--Working-Branch",default="${TARGET_BRANCH}", help="Your current working Branch") - check_test_group.add_argument('-GT',"--GITHUB-TOKEN",default="${GITHUB_API_TOKEN}", help="Your Set GITHUB Token") - - # Parse the arguments - args = parser.parse_args() - - - GET_API_DATA = GET_API_GITHUB(GITHUB_REPOSITORY = args.GITHUB_REPOSITORY, Correct_Branch = args.Correct_Branch, Working_Branch = args.Working_Branch) - owner = GET_API_DATA.return_owner() - #print("USERNAME is "+ Username) - #sys.stdout.write(Username) - #sys.exit(0) - - PULL_REQUEST = PULL_REQUEST_GITHUB(GITHUB_REPOSITORY = args.GITHUB_REPOSITORY, Correct_Branch = args.Correct_Branch, Working_Branch = args.Working_Branch, GITHUB_TOKEN = args.GITHUB_TOKEN, OWNER = owner) - pull_request_response = PULL_REQUEST.post_pull_request() - pull_request_number = PULL_REQUEST.get_pull_request_number(pull_request_response) - - assignees_owner = GET_API_DATA.get_GitHub_Username() - PULL_REQUEST.update_pull_request_assignees(pull_request_number,assignees_owner) - print("Pull Request") - exit(0) - diff --git a/bin/02_CITests/deploy/IBPSA_Merge/copy_conversion_script.py b/bin/02_CITests/deploy/IBPSA_Merge/copy_conversion_script.py deleted file mode 100644 index 339f5b1267..0000000000 --- a/bin/02_CITests/deploy/IBPSA_Merge/copy_conversion_script.py +++ /dev/null @@ -1,239 +0,0 @@ -import os -import sys -import shutil -import glob -import argparse - -def copy_mos(ibpsa_dir,dst): - #IBPSA/Resources/Scripts/Dymola/ConvertIBPSA_from_3.0_to_4.0.mos - # D:\01_Arbeit\04_Github\01_GitLabCI\master\GitLabCI\IBPSA\IBPSA\Resources\Scripts\Dymola - #D:\01_Arbeit\04_Github\01_GitLabCI\master\GitLabCI - ''' Copy the ConvertIBPSA mos Script''' - if os.path.isdir(dst) : - pass - else: - os.mkdir(dst) - #for file in glob(ibpsa_dir): - file = (glob.glob(ibpsa_dir)) - # Look which ConvertScript is the latest - if len(file)==0: - print("Cant find a Conversion Script in IBPSA Repo") - exit(0) - - if len(file)>1: - list = [] - for i in file: - i = i.replace(".mos","") - list.append(i) - - data = (sorted(list, key=lambda x: float(x[x.find("_to_")+4:]))) - data = (data[len(data)-1]) - i = data+".mos" - data = data.split(os.sep) - data = data[len(data)-1] - data = dst +os.sep+ data+".mos" - - shutil.copy(i,dst) - if len(file) == 1: - for i in file: - shutil.copy(i, dst) - file = file[len(file)-1] - data = file.split(os.sep) - data = data[len(data)-1] - data = dst +os.sep+ data - - - return data - - - '''for root, subdirs, files in os.walk('D:\\01_Arbeit\\04_Github\\01_GitLabCI\\master'): - - for d in subdirs: - if d == "IBPSA": - print(root) - print(files) - ''' -# Read the last aixlib mos sciprt -def read_aixlib_convert(aixlib_dir): - filelist = (glob.glob(aixlib_dir+os.sep+"*.mos")) - list = [] - for i in filelist: - i = i.replace(".mos","") - list.append(i) - - - data = (sorted(list, key=lambda x: float(x[x.find("_to_0")+6:]))) - data = (data[len(data)-1]) - - d = data[data.find("_to_0")+6:data.rfind(".")] - last_conv_list = [] - for i in list: - num = i[i.find("_to_0")+6:i.rfind(".")] - if num == str(d): - last_conv_list.append(i) - continue - data = (sorted(last_conv_list, key=lambda x: int(x[x.rfind(".")+1:]))) - data = (data[len(data)-1]) - data = data.split(os.sep) - data = (data[len(data)-1])+".mos" - return data - -# change the paths in the script from IBPSA.Package.model -> AixLib.Package.model -def create_convert_aixlib(data,dst,l_conv_aix,comp): - - if comp is False: - print("The latest conversion script is up to date from the IBPSA") - if comp is True: - conv_number = l_conv_aix[l_conv_aix.find("ConvertAixLib_from_")+19:l_conv_aix.rfind(".mos")] - # Update FROM Number - - from_numb = str("0.")+((conv_number[conv_number.find("_to_0")+6:])) - - # Update TO Number - to_numb = int((conv_number[conv_number.find("_to_0")+6:conv_number.rfind(".")])) + 1 - to_numb = "0."+str(to_numb)+"." + str(0) - new_conv_number = str(from_numb)+"_to_"+str(to_numb) - file_new_conv = "ConvertAixLib_from_"+new_conv_number+".mos" - - aixlib_mos = dst+os.sep+file_new_conv - f = open(data, "r") - r = open(aixlib_mos,"w+") - for line in f: - if line.find("from:") > -1 and line.find(" Version") > -1 : - r.write("// from: Version " + from_numb + "\n") - continue - if line.find("to") > -1 and line.find(" Version") > -1 : - r.write("// to: Version " + to_numb+ "\n") - continue - else: - r.write(line.replace("IBPSA","AixLib")) - f.close() - r.close() - return aixlib_mos -# D:\01_Arbeit\04_Github\01_GitLabCI\master\GitLabCI\AixLib\Resources\Scripts -def copy_aixlib_mos(aixlib_mos,aixlib_dir,dst): - shutil.copy(aixlib_mos, aixlib_dir) - shutil.rmtree(dst) -def compare_conversions(data,aixlib_dir,l_conv_aix): - ipbsa_conv = data - aix_conv = aixlib_dir+os.sep+l_conv_aix - f = open(ipbsa_conv, "r") - r = open(aix_conv,"r") - IBPSA = f.readlines() - aixlib = r.readlines() - f.close() - r.close() - x = 0 - list = [] - if len(IBPSA) == len(aixlib): - for i in IBPSA: - i = i.replace("IBPSA","AixLib") - if i.find("from:") > -1 and i.find(" Version") > -1 : - x = x+1 - continue - - if i.find("to") > -1 and i.find(" Version") > -1 : - x = x+1 - continue - if i != aixlib[x]: - list.append(i) - x = x+1 - continue - - x = x+1 - else: - list.append(x) - - if len(list)>0: - return True - if len(list)==0: - return False -def _read_package(): - file = open("AixLib"+os.sep+"package.mo", "r") - list = [] - for line in file: - if line.find("conversion(from(") > -1: - list.append(line) - counter = 1 - continue - if line.find('.mos")),') >-1 and counter == 1: - - version_number = line[line.find("_to_")+4:line.find(".mos")] - return version_number - #list.append(version_number) - - #return list -def add_conv_to_package(aixlib_mos,aixlib_dir): - file = open("AixLib"+os.sep+"package.mo", "r") - list = [] - counter = 0 - number_beg = aixlib_mos[aixlib_mos.find("_to_")+4:aixlib_mos.find(".mos")] - - number = aixlib_mos[aixlib_mos.find("from")+5:aixlib_mos.find("_to")] - version_number = _read_package() - - #ConvertAixLib_from_0.11.0_to_0.12.0.mos")), - aixlib_mos = aixlib_mos[aixlib_mos.find("ConvertAixLib"):] - - for line in file: - if line.find('version =') and line.find(version_number) > -1: - list.append(line.replace(version_number,number_beg)) - - elif line.find("conversion(from(") > -1: - list.append(line) - counter = 1 - continue - elif line.find('.mos")),') >-1 and counter == 1: - ent = line.replace('.mos")),','.mos",') - list.append(ent) - version = ' version="'+number+'", script="modelica://'+aixlib_dir.replace(os.sep,"/")+'/' +aixlib_mos +'")),\n' - #print(version) - list.append(version) - counter = 0 - continue - else: - list.append(line) - continue - #for i in list: - # print(i) - file.close() - pack = open("AixLib"+os.sep+"package.mo", "w") - for i in list: - pack.write(i) - pack.close() -if __name__ == '__main__': - #aixlib_dir = "D:\\01_Arbeit\\04_Github\\01_GitLabCI\\master\\GitLabCI\\AixLib\\Resources\\Scripts" - #ibpsa_dir = 'D:\\01_Arbeit\\04_Github\\01_GitLabCI\\master\\GitLabCI\\modelica-ibpsa\\IBPSA\\Resources\\Scripts\\Dymola\\ConvertIBPSA_*' - #dst = "D:\\01_Arbeit\\04_Github\\01_GitLabCI\\master\\GitLabCI\\Convertmos" - - parser = argparse.ArgumentParser(description = "Set Github Environment Variables") - check_test_group = parser.add_argument_group("Arguments to set Environment Variables") - check_test_group.add_argument("-dst", "--dst", default ="Convertmos", help="temp folder") - check_test_group.add_argument("-ad", "--aixlib-dir", default="AixLib\\Resources\\Scripts", help="path to the aixlib scripts" ) - check_test_group.add_argument('-id',"--ibpsa-dir",default='modelica-ibpsa\\IBPSA\\Resources\\Scripts\\Dymola\\ConvertIBPSA_*', help="path to the ibpsa scripts") - - # Parse the arguments - args = parser.parse_args() - - dst = args.dst - aixlib_dir = args.aixlib_dir - ibpsa_dir = args.ibpsa_dir - - data = copy_mos(ibpsa_dir,dst) - l_conv_aix = read_aixlib_convert(aixlib_dir) - comp = compare_conversions(data,aixlib_dir,l_conv_aix) - aixlib_mos = create_convert_aixlib(data,dst,l_conv_aix,comp) - if aixlib_mos is None: - print("please check when the last merge took place") - shutil.rmtree(dst) - else: - copy_aixlib_mos(aixlib_mos,aixlib_dir,dst) - add_conv_to_package(aixlib_mos,aixlib_dir) - print("New Aixlib Conversion skrip was created") - - _read_package() - #aixlib_mos = "ConvertAixLib_from_0.11.0_to_0.12.0.mos" - #aixlib_dir = "D:\01_Arbeit\04_Github\01_GitLabCI\IBPSA_Merge\GitLabCI\AixLib\Resources\Scripts" - #aixlib_dir = "AixLib\Resources\Scripts" - - #add_conv_to_package(aixlib_mos,aixlib_dir) \ No newline at end of file diff --git a/bin/02_CITests/deploy/IBPSA_Merge/correct_userguide.py b/bin/02_CITests/deploy/IBPSA_Merge/correct_userguide.py deleted file mode 100644 index b3b0ef4137..0000000000 --- a/bin/02_CITests/deploy/IBPSA_Merge/correct_userguide.py +++ /dev/null @@ -1,36 +0,0 @@ -import os -import glob - -def folder_userguide(aixlib_dir): - #file = (glob.glob(ibpsa_dir)) - for root, dirs, files in os.walk(aixlib_dir): - #print(root[root.rfind(os.sep)+1:]) - #g = root.split(os.sep) - #print(dirs) - if root[root.rfind(os.sep)+1:] == "UsersGuide": - for file in files: - if file == "package.order": - #print(file) - #print(root+os.sep+file) - order_file = root+os.sep+file - print(order_file) - f = open(order_file, "r") - lines = f.readlines() - f.close() - new_order_file = open (order_file,"w") - - for line in lines: - #print(line) - #if line.find("UsersGuide") > -1 : - if line.strip("\n") != "UsersGuide": - new_order_file.write(line) - print(line) - new_order_file.close() - - - -if __name__ == '__main__': - - aixlib_dir = "AixLib" - - folder_userguide(aixlib_dir) \ No newline at end of file diff --git a/bin/02_CITests/deploy/IBPSA_Merge/diff_reference.py b/bin/02_CITests/deploy/IBPSA_Merge/diff_reference.py deleted file mode 100644 index 12384685b7..0000000000 --- a/bin/02_CITests/deploy/IBPSA_Merge/diff_reference.py +++ /dev/null @@ -1,243 +0,0 @@ -# Libraries -import matplotlib.pyplot as plt -from matplotlib.widgets import CheckButtons -import numpy as np -import sys,difflib -import os -from git import Repo -from shutil import copyfile -import shutil -import pathlib -import glob -from matplotlib.pyplot import figure - - -def _CloneRepository(): - git_url = "https://github.com/ibpsa/modelica-ibpsa.git" - repo_dir = "modelica-ibpsa" - if os.path.exists(repo_dir): - print("IBPSA folder exists already!") - else: - print("Clone IBPSA Repo") - repo = Repo.clone_from(git_url, repo_dir) - - -def createFolder(directory): - try: - if not os.path.exists(directory): - os.makedirs(directory) - except OSError: - print ('Error: Creating directory. ' + directory) - - -def diff_mos(path_aix_mos,path_ibpsa_mos,path_diff_mos,path_new_mos): - - aix_mos_files = glob.glob(path_aix_mos+os.sep+'**/*.mos',recursive=True) - ibpsa_mos_files = glob.glob(path_ibpsa_mos+os.sep+'**/*.mos',recursive=True) - - ibpsa_list = [] - aixlib_list = [] - ## Give double mos files - for i in ibpsa_mos_files: - ibpsa_list.append(i.split(os.sep)[-1]) - for i in aix_mos_files: - aixlib_list.append(i.split(os.sep)[-1]) - - - set1 = set(aixlib_list) - set2 = set(ibpsa_list) - set3 = set1.intersection(set2) - list3 = list(set3) - for i in list3: - aixlib = glob.glob(path_aix_mos+os.sep+'**/*'+os.sep+i,recursive=True) - ibpsa = glob.glob(path_ibpsa_mos+os.sep+'**/*'+os.sep+i,recursive=True) - for l in aixlib: - aix = l - ibpsa = "modelica-ibpsa"+os.sep+l.replace("AixLib","IBPSA") - result = path_diff_mos +os.sep+l - result = (result.replace(os.sep+"AixLib"+os.sep+"Resources"+os.sep+"Scripts"+os.sep+"Dymola","")) - createFolder(result[:result.rfind(os.sep)]) - - outputFile = open(result,"w") - inputFile1 = open(aix,"r") - inputFile2 = open(ibpsa,"r") - - line1 = inputFile1.readline() - line2 = inputFile2.readline() - line3 = line2.replace("IBPSA","AixLib") - while line1 != "" or line3 != "": - if line1 != line3: - outputFile.write("AixLib: "+line1) - outputFile.write("IBPSA: "+line2+"\n") - - line1 = inputFile1.readline() - line3 = inputFile2.readline() - inputFile1.close() - inputFile2.close() - outputFile.close() - #print(result) - if os.stat(result).st_size == 0: - os.remove(result) - - new_ref =(set1^set2)&set2 - new_mos_list = [] - for i in new_ref: - if i.find("ConvertIBPSA") > -1 : - continue - else: - ibpsa = glob.glob(path_ibpsa_mos+os.sep+'**/*'+os.sep+i,recursive=True) - new_mos_list.append(ibpsa) - source = path_new_mos+os.sep+i - for l in ibpsa: - shutil.copy2(l,source) - - -def diff_ref(path_aix,path_ibpsa,path_diff,path_new): - aix_ref_files = os.listdir(path_aix) - ibpsa_ref_files = os.listdir(path_ibpsa) - ibpsa_list = [] - ## Give double reference files - for i in ibpsa_ref_files: - i = i.replace("IBPSA","AixLib") - ibpsa_list.append(i) - - set1 = set(aix_ref_files) - set2 = set(ibpsa_list) - set3 = set1.intersection(set2) - list3 = list(set3) - - for f in list3: - aix_ref = f - ibpsa_ref = f.replace("AixLib","IBPSA") - - aix_ref = path_aix+os.sep+ aix_ref - ibpsa_ref = path_ibpsa+os.sep+ibpsa_ref - result = path_diff +os.sep+f - - - outputFile = open(result,"w") - inputFile1 = open(aix_ref,"r") - inputFile2 = open(ibpsa_ref,"r") - - line1 = inputFile1.readline() - line2 = inputFile2.readline() - - while line1 != "" or line2 != "": - if line1 != line2: - outputFile.write("AixLib: "+line1) - outputFile.write("IBPSA: "+line2+"\n") - - line1 = inputFile1.readline() - line2 = inputFile2.readline() - inputFile1.close() - inputFile2.close() - outputFile.close() - - for root,dirs,files in os.walk(path_diff): - for name in files: - filename = os.path.join(root,name) - if os.stat(filename).st_size == 0: - os.remove(filename) - - - diff_ref = os.listdir(path_diff) - new_ref =(set1^set2)&set2 - - for i in new_ref: - i = i.replace("AixLib","IBPSA") - source = path_ibpsa+os.sep+i - shutil.copy2(source,path_new) - - - new_ref =os.listdir(path_new) - return diff_ref, new_ref - - - -def add_new_ref(diff_ref,new_ref,path_aix,path_ibpsa,path_new,path_diff): - new_ref_list = [] - for i in new_ref: - source = path_new+os.sep+i - ibp = path_new+os.sep+i.replace("IBPSA","AixLib") - file = pathlib.Path(ibp) - - if file.exists (): - new_ref_list.append(file) - continue - - if i.find("IBPSA")> -1 : - i = i.replace("IBPSA","AixLib") - i = path_new+os.sep+i - os.rename(source, i) - else: - i = path_new+os.sep+i - new_ref_list.append(i) - - ## Copy New Files - for i in new_ref_list: - path = path_aix - shutil.copy2(i,path) - - for i in diff_ref: - path = path_aix - i = i.replace("AixLib","IBPSA") - source = path_ibpsa+os.sep+i - target = path+os.sep+i.replace("IBPSA","AixLib") - shutil.copy2(source,target) - -def removeEmptyFolders(path, removeRoot=True): - #'Function to remove empty folders' - if not os.path.isdir(path): - return - - # remove empty subfolders - files = os.listdir(path) - if len(files): - for f in files: - fullpath = os.path.join(path, f) - if os.path.isdir(fullpath): - removeEmptyFolders(fullpath) - - # if folder empty, delete it - files = os.listdir(path) - if len(files) == 0 and removeRoot: - #print("Removing empty folder: "+ path) - os.rmdir(path) - - -if __name__ == '__main__': - ### Settings - - path_aix = "AixLib"+os.sep+"Resources"+os.sep+"ReferenceResults"+os.sep+"Dymola" - path_ibpsa = "modelica-ibpsa"+os.sep+"IBPSA"+os.sep+"Resources"+os.sep+"ReferenceResults"+os.sep+"Dymola" - - path_aix_mos = "AixLib"+os.sep+"Resources"+os.sep+"Scripts"+os.sep+"Dymola" - path_ibpsa_mos = "modelica-ibpsa"+os.sep+"IBPSA"+os.sep+"Resources"+os.sep+"Scripts"+os.sep+"Dymola" - - path_diff = "bin"+os.sep+"03_WhiteLists"+os.sep+"Ref_list"+os.sep+"diff_ref" - createFolder(path_diff) - path_new = "bin"+os.sep+"03_WhiteLists"+os.sep+"Ref_list"+os.sep+"new_ref" - createFolder(path_new) - - path_diff_mos = "bin"+os.sep+"03_WhiteLists"+os.sep+"mos_list"+os.sep+"diff_mos" - createFolder(path_diff_mos) - path_new_mos = "bin"+os.sep+"03_WhiteLists"+os.sep+"mos_list"+os.sep+"new_mos" - createFolder(path_new_mos) - - - _CloneRepository() - - results = diff_ref(path_aix,path_ibpsa,path_diff,path_new) - diff_ref = results[0] - new_ref = results[1] - - add_new_ref(diff_ref,new_ref,path_aix,path_ibpsa,path_new,path_diff) - - mos_results = diff_mos(path_aix_mos,path_ibpsa_mos,path_diff_mos,path_new_mos) - - - removeRoot = True - removeEmptyFolders(path_diff_mos, removeRoot) - - - \ No newline at end of file diff --git a/bin/03_WhiteLists/WhiteList_CheckModel.txt b/bin/03_WhiteLists/WhiteList_CheckModel.txt deleted file mode 100644 index 09f2509a29..0000000000 --- a/bin/03_WhiteLists/WhiteList_CheckModel.txt +++ /dev/null @@ -1,31 +0,0 @@ -ConvertAixLib_from_0.11.1_to_0.12.0 - -ThermalZones -[] - -Resources -['IBPSA.Resources.src.fluid.heatpumps.calibration.Examples.SomeManufacturer_ABC060_70kW_4_0COP_R410A'] - -Utilities -['IBPSA.Utilities.Psychrometrics.TWetBul_TDryBulXi'] - -Controls -[] - -BoundaryConditions -['IBPSA.BoundaryConditions.Validation.IsotropicAndPerezDiffuseRadiation'] - -Obsolete -[] - -Media -[] - -Experimental -[] - -Airflow -[] - -Fluid -['IBPSA.Fluid.Geothermal.Borefields.TwoUTubes', 'IBPSA.Fluid.Geothermal.Borefields.OneUTube', 'IBPSA.Fluid.Sensors.SensibleEnthalpyFlowRate', 'IBPSA.Fluid.Sensors.RelativeHumidity', 'IBPSA.Fluid.Sensors.TemperatureWetBulbTwoPort', 'IBPSA.Fluid.Sensors.MassFractionTwoPort', 'IBPSA.Fluid.Sensors.RelativeHumidityTwoPort', 'IBPSA.Fluid.Sensors.LatentEnthalpyFlowRate', 'IBPSA.Fluid.Movers.BaseClasses.FlowMachineInterface', 'IBPSA.Fluid.Sources.MassFlowSource_h', 'IBPSA.Fluid.Sources.MassFlowSource_T', 'IBPSA.Fluid.Sources.TraceSubstancesFlowSource', 'IBPSA.Fluid.Storage.StratifiedEnhancedInternalHex', 'IBPSA.Fluid.Humidifiers.SteamHumidifier_X', 'IBPSA.Fluid.Humidifiers.SprayAirWasher_X', 'IBPSA.Fluid.HeatPumps.Calibration.BaseClasses.PartialWaterToWater', 'IBPSA.Fluid.Actuators.Dampers.VAVBoxExponential', 'IBPSA.Fluid.Examples.GeothermalHeatPump.GeothermalHeatPump' , 'IBPSA.Fluid.Storage.BufferStorage'] \ No newline at end of file diff --git a/bin/03_WhiteLists/changedmodels.txt b/bin/03_WhiteLists/changedmodels.txt deleted file mode 100644 index c0e082d999..0000000000 --- a/bin/03_WhiteLists/changedmodels.txt +++ /dev/null @@ -1,27 +0,0 @@ - :100644 100644 06469f32e 9baefc105 M AixLib/Airflow/AirCurtain/AirCurtainSimplified.mo - :100644 100644 9014949a4 cc946d63b M AixLib/Airflow/AirHandlingUnit/AHU.mo - :100644 100644 51e73fa58 c600f9934 M AixLib/Airflow/AirHandlingUnit/BaseClasses/PartialAHU.mo - :100644 100644 30cec9c28 7c121b53e M AixLib/Airflow/AirHandlingUnit/Examples/AHU.mo - :100644 100644 2a280b7b4 bfff18003 M AixLib/Airflow/AirHandlingUnit/NoAHU.mo - :100644 100644 8315fe457 9a8fdf162 M AixLib/Airflow/FacadeVentilationUnit/BaseClasses/SetPower.mo - :100644 100644 49859a1c6 a83768b53 M AixLib/Airflow/FacadeVentilationUnit/DataBase/FVUBaseRecord.mo - :100644 100644 cc4d1b908 50a1964d4 M AixLib/Airflow/FacadeVentilationUnit/Examples/FacadeVentilationUnit.mo - :100644 100644 fcf27bbd7 ccb76a711 M AixLib/Airflow/FacadeVentilationUnit/FacadeVentilationUnit.mo - :100644 100644 80dca66e1 bf33ab20b M AixLib/Airflow/FacadeVentilationUnit/package.mo - :100644 100644 f9d3c88c5 4cacfb0dc M AixLib/Airflow/Multizone/BaseClasses/Examples/package.mo - :100644 100644 3980681de 58839c42e M AixLib/Airflow/Multizone/BaseClasses/package.mo - :100644 100644 4a4683784 c07304a5f M AixLib/Airflow/Multizone/Examples/package.mo - :100644 100644 1836bcfd0 de0cc1fef M AixLib/Airflow/Multizone/Types/package.mo - :100644 100644 60b5df503 abbf18abf M AixLib/Airflow/Multizone/Validation/package.mo - :100644 100644 b658f58cf 9dc407801 M AixLib/Airflow/Multizone/package.mo - :100644 100644 719641016 1bdb792ef M AixLib/Airflow/Multizone/Examples/ChimneyShaftNoVolume.mo - :100644 100644 719641016 1bdb792ef M AixLib/Airflow/Multizone/Examples/ChimneyShaftWithVolume.mo - :100644 100644 719641016 1bdb792ef M AixLib/Airflow/Multizone/Examples/ClosedDoors.mo - :100644 100644 719641016 1bdb792ef M AixLib/Airflow/Multizone/Examples/CO2TransportStep.mo - :100644 100644 AixLib/Airflow/Multizone/Examples/NaturalVentilation.mo - :100644 100644 Resources\ReferenceResults\Dymola\AixLib_Airflow_AirHandlingUnit_Examples_AHU.txt - :100644 100644 Resources\ReferenceResults\Dymola\AixLib_AirFlow_AirHandlingUnit_Examples_AHU.txt - :100644 100644 Resources\ReferenceResults\Dymola\AixLib_Fluid_FixedResistances_Examples_GenericPipe.txt - :100644 100644 Resources\ReferenceResults\Dymola\AixLib_ThermalZones_ReducedOrder_Validation_RoomWithoutLatentGain.txt - :100644 100644 Resources\ReferenceResults\Dymola\AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase1.txt - Resources\ReferenceResults\Dymola\AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase2.txt \ No newline at end of file diff --git a/bin/04_Documentation/Documentation_GitLab.md b/bin/04_Documentation/Documentation_GitLab.md deleted file mode 100644 index 1e0a345a8b..0000000000 --- a/bin/04_Documentation/Documentation_GitLab.md +++ /dev/null @@ -1,205 +0,0 @@ -Dymola-Docker -====== - -The goal of this documentation and the repository is to provide a Dymola docker image to perform CI tests such as UnitTests -or .mos scripts in Dymola. -The integrated CI of Gitlab will help to improve the quality of Aixlib in the long run and to make the modeler aware -of possible errors faster and more efficiently. -This repo provides a docker image using Gitlab's integrated docker registry. This image can be accessed from the AixLib repository and tested in Dymola. - -This documentation describes the tools that Gitlab owns, such as - -- Gitlab-Tools (Mirror-Function, Docker Registry, Gitlab-CI) -- YAML file -- Workflow of GitlabCI - - -### Basic concept - - - -Currently the Aixlib is located on a Github repository (https://github.com/RWTH-EBC/AixLib) -CI services are executed via TravisCI, but unlike Gitlab it does not have its own docker registry and the CI -services are outsourced to the Travis network, so the Git and CI services are currently -operated over two different networks. With the integrated CI services on Gitlab, these can be reduced to servers. -The mirror function translates the AixLib-GitHub repository into a GitLab repository. -This is possible for both directions. - - -![E.ON EBC RWTH Aachen University](Images/GITLABCI.png) - - -This repository contains the Aixlib, CI scripts and the Yaml file. The Yaml file controls the Gitlab-CI, the call of the Docker-Registry as well as the activation of the Runner which creates the containers and executes the scripts. -The runner is a separate Openstack instance in the EBC-ERC network. It is important that the instance can be found via a floating IP. -The images are formed on the runner, on the basis of which the scripts are later executed. This can be images such as Dymola, Python or Sonar Scanner. -Dymola is a license required program. The required licenses are read out via the RWTH network. Therefore, the runner must have access to the RWTH network. - - -### GITLAB-CI Workflow - -The Gitlab CI workflow runs over three pipelines (Project, Continious Integration and Continious Delivery). - -![E.ON EBC RWTH Aachen University](Images/GitLabCIWorkflow.png) - -Under the project pipeline is the code to be analyzed, here the AixLib. - -The CI pipeline is then activated during a commit. -Here the images are first built and then automatic tests such as unit or integration tests are carried out to -check the software quality and draw attention to errors. -A number of tests are performed in the CD pipeline. -This validation must be performed successfully before the software can be released. -The graphical interface now shows which jobs have been successfully completed. -These are performed in individual stages. - - - -### Docker-Registry - - -![E.ON EBC RWTH Aachen University](Images/Workflow.png) - - - -As already mentioned, the CI services are controlled via the YAML file (.gitlab-ci.yml). -At each commit and push Gitlab registers the Yaml file and executes the individual commands. -Via the activated Runner the Dymola-, and Python-Image will be pulled from the Docker-Registry, on the basis of which scripts will be executed. -The results of the different stages are displayed. If the results are negative, Gitlab and the email will report the false message. - -In the following, the necessary commands for the provision of an image in the Gitlab Docker Registry, a docker file, Gitlab-CI as well as things to watch out for at Dymola are described. - -In this repository "Dymola-Docker" the registry is provided. This is done using the following commands in the -gitlab-ci.yml file: - - image: docker:latest - services: - - docker:dind - - stages: - - build - - release - - variables: - TEST_IMAGE: registry.git.rwth-aachen.de/ebc/ebc_internal/dymola-docker:$CI_COMMIT_REF_NAME - RELEASE_IMAGE: registry.git.rwth-aachen.de/ebc/ebc_internal/dymola-docker:latest - DOCKER_DRIVER: overlay - - before_script: - - docker login -u gitlab-ci-token -p $CI_JOB_TOKEN registry.git.rwth-aachen.de/ebc/ebc_internal/dymola-docker - - build: - stage: build - script: - - docker build --pull -t $TEST_IMAGE . - - docker push $TEST_IMAGE - - release: - stage: release - script: - - docker pull $TEST_IMAGE - - docker tag $TEST_IMAGE $RELEASE_IMAGE - - docker push $RELEASE_IMAGE - only: - - master - - - -![E.ON EBC RWTH Aachen University](Images/Registry.png) - - - - - - -In the first stage "build" the image is built from the Dockerfile. In the stage "Release" the image is pushed into the registry and can be called afterwards. -The most important are the login to the registry and the known docker commands "docker build". Gitlab has its own pre-defined variables which can be set under "Settings"> "CI/CD" > " Environment variables " -to log in and assign tags for the different versions of tags. For Building a Image with a Dockerfile see https://docs.docker.com/develop/develop-images/dockerfile_best-practices/ . - -For further information please refer to the following link: - -* https://docs.gitlab.com/ee/ci/quick_start/ -* https://docs.gitlab.com/ee/ci/yaml/README.html#environment - - -The Gitlab docker registry can then be accessed in the AixLib repository. - - - stages: - - analysis - - dymola-docker: - - image: registry.git.rwth-aachen.de/ebc/ebc_internal/dymola-docker:conda-integration - stage: analysis - services: - - docker - before_script: - - Xvfb :77 -extension RANDR -extension GLX & export DISPLAY=:77.0 && - - export PIP_CACHE_DIR="/opt/cache/pip" - - conda create -n python27 python=2.7 -y - - source activate python27 - - python -V # Print out python version for debugging - - yourself - - conda install numpy scipy matplotlib pathlib -y - - export PYTHONIOENCODING=UTF8 # just in case - - pip install git+https://github.com/lbl-srg/BuildingsPy@master - - - script: - - dymola start.mos - - python SimulateModel.py - - cd AixLib && python Resources/Scripts/runUnitTests.py --batch --single-package AixLib.ThermalZones --tool dymola - artifacts: - paths: - - Plot3.png - - expire_in: 1 days - -It is important to note that Dymola always works on the basis of a graphical user interface. This means that even if a .mos script is started and executed via the Python interface Dymola, a window always opens in the background. Docker has problems displaying graphical representations. To avoid this problem, the command: - - ` Xvfb :77 -extension RANDR -extension GLX & export DISPLAY=:77.0 && ` - -can also be taken over. - - - - -![E.ON EBC RWTH Aachen University](Images/DockerRegistry.png) - - - - - - -### Summary - -In setting up a Dymola docker image in Gitlab-Ci is theoretically simple and very fast. -However, such a registry should be maintained at any time. -It can happen after a certain number of commits and pushes that the runner feels visibility and an error message -about lack of disk space can occur. This is because Gitlab creates a new container from the image with -every commit and does not delete it afterwards. Therefore the runner and the CI-Server should be emptied regularly -to avoid this problem: -https://www.shoptimax.de/news/beitrag/gitlab-ci-free-space - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/bin/04_Documentation/GITLAB CICD.pdf b/bin/04_Documentation/GITLAB CICD.pdf deleted file mode 100644 index 4f4360e923..0000000000 Binary files a/bin/04_Documentation/GITLAB CICD.pdf and /dev/null differ diff --git a/bin/04_Documentation/Gitlab_CICD_Commands.md b/bin/04_Documentation/Gitlab_CICD_Commands.md deleted file mode 100644 index ce967bd78d..0000000000 --- a/bin/04_Documentation/Gitlab_CICD_Commands.md +++ /dev/null @@ -1,272 +0,0 @@ -GITLAB CI/CD -====== - -In this documentation all keywords for a YAML file in Gitlab Ci should be listed and explained. - - -![E.ON EBC RWTH Aachen University](Images/Keywords.png) - -### Jobs - -Defines a series of jobs with restrictions that specify when they should be executed. Specify an unlimited number of jobs that are defined as top-level elements with any name and must always contain at least the script clause. -Of course, a command can execute code directly (./configure;make;make install) or execute a script (test.sh) in the repository. -Orders are fetched from runners and executed in the runner's environment. Jobs are executed independently of each other. -Each job must have a unique name, but there are keywords that cannot be used as job names. - -### Extends - - - Defines an entry name from which a job will inherit. Supports multi-level inheritance, but it is not recommended to use more than three levels. Max: 10 levels of interconnection. - - ![E.ON EBC RWTH Aachen University](Images/extends.png) - -### Pages - -Special task that uploads static content to Gitlab that can be used to deliver your website. It has a special syntax, so both requirements must be met: -- Every static content must be located in a public directory. -- Artifacts with a path to the directory public/ - directory must be defined. - -In the following example, all files are simply moved from the root directory of the project to the public/ directory. The .public workaround is so that cp does not copy itself/themselves in an infinite loop. - -### Images - -Specify a custom Docker image and a list of these that can be used for the time of the job. - -https://docs.gitlab.com/ce/ci/docker/README.html - -### Before_script - -command is defined to run before all jobs, including provisioning jobs, but after artifact recovery. This can be an array or a multiline string. -Before_Script and the main script are executed separately. Depending on the executor, changes may not be visible outside the work tree, e.g. software installed in before_script. - -### after_script - -Defines the command to run after all jobs, including failed jobs. This must be an array or multiline string. - -### Stages - -Used to define levels that can be used by jobs and are globally defined. Stage specification enables flexible multi-stage pipelines. The order of the elements in stages determines the order in which jobs are executed. -- Jobs of the same level are executed in parallel. -- Orders of the next level are executed after the orders of the previous level have been successfully completed. - -- all build requests executed in parallel -- If build jobs are successful, the test jobs are executed in parallel. -- If successful, all deployment jobs are executed in parallel. -- If all deployment jobs are successful, the commit is marked as passed. -- If one of the previous jobs fails, the commit is marked as failed and no jobs of the next stage are executed. - -Two side cases: -- If no phases are defined in .gitlab-ci.yml, Build, Test and Deploy can be used as the job phase by default. -- If a job does not specify a phase, the hob is assigned the test phase. - -### Stage - -Stage is defined per job and is based on levels that are defined globally. It allows the grouping of jobs in different phases and jobs of the same phases are executed in parallel. - - ![E.ON EBC RWTH Aachen University](Images/Stages.png) - -### Script - -script is the only keyword required for a job. It is a shell script executed by the runner. - -### Only // except: - -Only and except are two parameters that should be restricted to create jobs: -1. only: Defines only the names of branches and tags for which the job will be executed. -2. Except: Defines the names of branches and tags for which the job will not be executed. - -Only and except allows you to use the following keywords: - -![E.ON EBC RWTH Aachen University](Images/only.png) - -### only:refs and except:refs - -The refs strategy can take the same values as the simplified / except configuration. In the following example, the deploy-job is only created if the pipeline is planned or executed for the master industry. - -### only:kubernetes and except:kubernetes - -The kubernetes strategy only accepts the active keyword. In the following example, the deployment job is only created if the kubernetes service is active in the project. - -### only:variables and except:variables: - -Keyword variables is used to define variable expressions. In other words, you can use predefined variables/ project/ group or environment variables to define an expression that GitLab evaluates to decide whether to create a job or not. - -### only:changes and except:changes: - -Using the Change keyword with or with exceptions only, you can specify whether to create a job based on files that have been modified by a git push event. - -When multiple commits in Gitlab move to an existing branch, GitLab creates and triggers the docker build job, provided that one of the commits contains the following changes: - - - Docker file - - Files within docker/scripts directory. - - Files and subdirectories within the Dockerfile directory. - - Files with the extensions rb, py, sh in the directory more_scripts. - -When a new industry or tag is sent to Gitlab, the policy is always evaluated as true, and Gitlab creates a job. This feature is not yet associated with merge requests. Since GitLab creates Piples, bevo a user can create a merge request, we don't know any target industry at this point yet. -Without a target industry it is not possible to know what the common ancestor is. Therefore we always create a job in this case. This feature is best suited for stable branches like Master, since in this case Gitlab uses the previous commit present in a branch to compare it with the latest SHA pushed - -### Tags - -Used to select specific runners from the list of runners that are allowed to run this project. While registering a runner you can specify the runner tags, e.g. Ruby, Postgres, development. These can be used to run jobs with runners that are assigned the specified tags. - -### allow_failure - -Makes a job fail without affecting the rest of the CI suite. The default value is false, except for manual jobs. If the optition is enabled and the job fails, an orange warning is displayed on the user interface. However, the logical flow of the pipeline considers the job successful and is not blocked. -Provided that all other jobs are successful, the same orange warning is displayed at the job level and in the pipeline. However, the associated commit is marked as passed without any warnings. - -### When - - Used to implement jobs that are to be executed in error or despite the error. -Can be set to one of the following values: - - 1. Execute on_success job only if all jobs from the previous stage are successful (or are considered successful because they are marked as allow_failue). - 2. execute on_failure job only if at least one job from the previous stage fails. - 3. allways: Execute job regardless of status of jobs from previous stages. - 4. manual: execute job manually (https://docs.gitlab.com/ce/ci/yaml/README.html#whenmanual) - -### when:manual - -Manual actions are special jobs that are not executed automatically. They must be started explicitly by a user. An example of using manual actions would be deployment in a production environment. Manual actions can be started from the Pipeline, Job, Environment, and Deployments views. These can be optional or blocking. Blocking blocks the execution of the pipeline at the stage where this action is defined. You can resume pipeline execution when someone executes a manual blocking cation by clicking a play button. If a pipeline is blocked, it is not merged if Merge on successful pipeline is set. Blocked pipelines also have a special status called manual. By default, manual actions are not blocking. If you want to block a manual action, you must add allow_faolure:false to the job definition in .gitlab-ci.yml. For optional manual actions, allow_failure:true is the default and their statuses do not contribute to the overall pipeline status. If fails as a manual action, the pipeline will eventually succeed. Manual actions are considered as write actions. Therefore, permissions for protected branches are used when the user wants to trigger an action. In other words, to trigger a manual action assigned to an industry, the user must be able to merge with that industry. - -### when:delayed - -Delayed job is for running scripts after a certain amount of time. This is useful if you want to prevent jobs from immediately switching to pending status. You can set the period with start_in key to an elapsed time in seconds if no unit is specified. Start_in key must be less than or equal to one hour. - -If there is a delayed job in a phase, the pipeline is not executed until the delayed job is completed. This means that this keyword can also be used to insert delay between different stages. The timer of a delayed job starts immediately after the previous phase is complete. Similar to other types of jobs, the timer of a delayed job does not start until the previous stage is passed. In the following example, a job called timed rollout 10% is created and executed 30 minutes after the end of the previous phase. - -### environment -The environment defines that a job is provided in a specific environment. If an environment is specified and no environment exists under that name, a new environment is automatically created. - -### environment:name -Environment can contain the following name: - - Letters - - digits - - spaces - - - - - _ - - / - - $ - - { - - } -Common names are qa, staging, production. Instead of defining the name of the environment directly after the environment keyword, you can also define it as a separate value. - -### environment:url - -Parameter url can use all defined CI variables, including predefined secure variables and .gitlab-ci.yml variables. However, you cannot use variables defined in Script. This is an optional value that, when set, makes buttons available at different locations in Gitlab. Clicking on it takes you to the defined URL. - -### environment: on_stop - -If the environment is defined by a stop action, Gitlab automatically triggers a stop action when the associated industry is deleted. Closing (stopping) environments can be achieved with the on_stop keyword defined under Environment. It declares another job running to close the environment. - -### environment:action - -Used in conjunction with on_stop and defined in the job called to close the environment. - -### Cache - -This specifies a list of files and directories to be cached between jobs. You can only use paths that are in the project workspace. If the cache is defined outside the job size, this means that it is global and all jobs use these definitions. - -### cache:paths: -Use the path directive to select which files or directories to cache. Wildcards can also be used. Cache all files in binary files ending in .apk and the .config file: - -### cache:key - -The key directive allows you to define the affinity of caching between jobs. So you have a single cache for all jobs, cache per job, cache per branch or any other way that fits your workflow. This way you can optimize caching and cache data between different jobs or even different branches. - -### cache:untracked -Set untracked: true to cache all files that are not stored in your git repository. - -### cache:policy - -The default behavior of a cache job is to download the files at the beginning of execution and upload them again at the end. This allows all changes made by the job to be retained for future runs. This is called a pull-push cache policy. -If you know that the job does not change the cached files, you can skip the upload step by setting the policy: Subtract the job specification. Normally, this is connected to an ordinary cache job at an earlier time to ensure that the cache is updated from time to time. - -### Artifacts - -artifacts is used to specify a list of files and directories to attach to the job after successful completion. The artifacts are sent to GitLab after successful completion of the job and are available for download in the GitLab user interface. - -### artifacts:paths - -Sie können nur Pfade verwenden, die sich im Projektarbeitsbereich befinden. Informationen zum Übergeben von Artefakten zwischen verschiedenen Jobs finden Sie unter Abhängigkeiten. - -Senden Sie alle Dateien in Binärdateien und .config. - -### artifacts:name - -The name directive allows you to define the name of the created artifact archive. In this way you can give each archive a unique name, which can be useful if you want to download the archive from GitLab. The variable artifacts: name can use any of the predefined variables. The default name is Artifacts, which becomes artifacts when downloaded. - -### artifacts:untracked - -Artifacts: untracked is used to add all unrecorded git files as artifacts (along the paths defined in Artifacts: path). - -### artifacts:when - -Artifacts:when Used to upload artifacts on a job error or despite the error. -Artifacts:when When can be set to one of the following values: - 1. on_success - Only upload artifacts if the job was successfully completed. This is the default setting. - 2. on_failure - Upload artifacts only if the job fails. -always - Upload artifacts regardless of job status. - -### artifacts:expire_in - -With expire_in you can specify how long you want artifacts to live before they expire and are therefore deleted. This applies from the moment they are uploaded and stored in GitLab. If the expiration time is not defined, the setting for the entire instance is used by default (by default 30 days, forever at GitLab.com). -You can use the "Keep" button on the job page to overwrite the process and keep artifacts forever. -After their expiration, artifacts are deleted by default hourly (via a cron job) and are no longer accessible. -The value of expire_in is an elapsed time in seconds if no unit is specified. - -### artifacts:reports - -The keyword reports collects test reports of jobs and displays them in the GitLab user interface (merge requests, pipeline views). Read how to use this with JUnit reports. - -### artifacts:reports:junit - -The Junit report captures JUnit XML files as artifacts. Although JUnit was originally developed in Java, there are many third-party ports for other languages such as JavaScript, Python, Ruby, and so on. -For more information and examples, see JUnit test reports. The following is an example of capturing a JUnit XML file using Ruby's RSpec test tool: - -### Dependencies - -This function should be used in conjunction with artifacts and allows you to define the artifacts to be transferred between different jobs. Note that artifacts from all previous levels are transferred by default. To use this function, define dependencies in the context of the job and pass a list of all previous jobs from which the artifacts are to be downloaded. You can only define jobs of levels that are executed before the current ones. An error is displayed when you define jobs from the current or next stage. If you define an empty array, no artifacts will be downloaded for this job. The status of the previous job is not taken into account when dependencies are used. If it fails or it is a manual job that was not executed, no error occurs. - -### Coverage - - -Mit der Coverage können Sie konfigurieren, wie die Codeabdeckung aus der Jobausgabe extrahiert wird. - -Reguläre Ausdrücke sind der einzig gültige Wert, der hier erwartet wird. Daher ist die Verwendung von umgebend / obligatorisch, um eine reguläre Ausdruckszeichenfolge konsistent und explizit darzustellen. Sie müssen Sonderzeichen mit Escapezeichen versehen, wenn Sie sie buchstäblich abgleichen möchten. - -### Retry - -You can use retry to configure how often a job is tried again if an error occurs. If a job fails and the repetition has been configured, it is processed again up to the number specified in the repetition keyword. If Repeat is set to 2 and a job succeeds in a second pass (first attempt), it will not be repeated. The repetition value must be a positive integer equal to or greater than 0, but less than or equal to 2 (a maximum of two repetitions, a total of three passes). - -### Parallel - -Parallel allows you to configure how many instances of a job are to be executed in parallel. This value must be greater than or equal to two (2) and less than or equal to 50. This creates N instances of the same job that are executed in parallel. They are named sequentially from job name 1 / N to job name N / N. - -### Include - -The keyword include allows you to include external YAML files. -In the following example, the content of .before-script-template.yml together with the content of .gitlab-ci.yml is automatically retrieved and evaluated: - -### Variables - -With GitLab CI / CD you can define variables in .gitlab-ci.yml, which are then passed in the job environment. They can be defined globally and per job. If the keyword variables is used at job level, the global and predefined YAML variables are overwritten. - -These variables can later be used in all executed commands and scripts. The variables defined by YAML are also fixed to all service containers created so that they can be fine-tuned. -Apart from the user-defined variables, there are also those set up by the runner himself. An example would be CI_COMMIT_REF_NAME, which contains the value of the branch or variable name for which the project is created. Besides the variables that you can set in .gitlab-ci.yml, there are also the so-called variables that can be set in the GitLab user interface. - -### Git strategy - -You can specify GIT_STRATEGY, which is used to retrieve current application code, either globally or per job in the variable section. If you do not specify a value, the default value from the project settings is used. -There are three possible values: clone, retrieve, and none. - -Clone is the slowest option. It clones the repository for each job from scratch to ensure that the project workspace is always flawless. -Fetch is faster because the project workspace is reused (when cloning is used if it does not exist). git clean undoes all changes made by the last job. git fetch gets commits that have been executed since the last job. -None reuses the project workspace, but skips all git operations (including the GitLab Runner pre-Clone script, if any). This is especially useful for jobs that only work with artifacts (e.g. implement). Git repository data is available, but certainly not up to date. Therefore, you should only rely on files that are loaded from the workspace cache or artifacts into the project workspace. - -### Git submodule strategy: - -The GIT_SUBMODULE_STRATEGY variable is used to control whether / how git submodules are included when retrieving the code before a build. You can set them globally or per job in the variable area. - -### Git checkout - -The GIT_CHECKOUT variable can be used when GIT_STRATEGY is set to either clone or retrieve to indicate whether a git checkout should be performed. If not specified, the default value is true. You can set them globally or per job in the variable area. diff --git a/bin/04_Documentation/Powerpoint/PipelineProcess [Automatisch gespeichert].pptx b/bin/04_Documentation/Powerpoint/PipelineProcess [Automatisch gespeichert].pptx deleted file mode 100644 index 295e464cf0..0000000000 Binary files a/bin/04_Documentation/Powerpoint/PipelineProcess [Automatisch gespeichert].pptx and /dev/null differ diff --git a/bin/04_Documentation/Powerpoint/PipelineProcess.pptx b/bin/04_Documentation/Powerpoint/PipelineProcess.pptx deleted file mode 100644 index a7b645f2e1..0000000000 Binary files a/bin/04_Documentation/Powerpoint/PipelineProcess.pptx and /dev/null differ diff --git a/bin/04_Documentation/Powerpoint/PipelineProcess_v2.pptx b/bin/04_Documentation/Powerpoint/PipelineProcess_v2.pptx deleted file mode 100644 index 724b05dc6b..0000000000 Binary files a/bin/04_Documentation/Powerpoint/PipelineProcess_v2.pptx and /dev/null differ diff --git a/bin/04_Documentation/setup_gitlab_runner.md b/bin/04_Documentation/setup_gitlab_runner.md deleted file mode 100644 index 6ceaf9901a..0000000000 --- a/bin/04_Documentation/setup_gitlab_runner.md +++ /dev/null @@ -1,60 +0,0 @@ -# Here are the basics to setup a gitlab runner on [linux](https://docs.gitlab.com/runner/install/linux-repository.html) - -First you have to create a new instance on [openstack](https://ecampus.rwth-aachen.de/units/eonerc/ebc/Wiki/OpenStack%20Einstieg.aspx). -It is important that you assign a floating IP to the instance, because the CI will later work with this IP. -Then log in to your created instance and do the following points. - -### Add GitLab´s official repository - - curl -L https://packages.gitlab.com/install/repositories/runner/gitlab-runner/script.deb.sh | sudo bash - -### Install the latest version of GitLab Runner - - sudo apt-get install gitlab-runner - -### To install a specific version of GitLab Runner: - - apt-cache madison gitlab-runner - sudo apt-get install gitlab-runner=10.0.0 - - - -### [Register](https://docs.gitlab.com/runner/register/index.html) the Runner: To register a Runner under GNU/Linux: - - 1. Run the following command: - - sudo gitlab-runner register - - 2. Enter your GitLab instance URL: (General -> CI/CD -> Runners) - - Please enter the gitlab-ci coordinator URL (e.g. https://gitlab.com - xxx - - 3. Enter the token you obtained to register the Runner - - Please enter the gitlab-ci token for this runner - xxx - - 4. Enter a description for the Runner, you can change this later in GitLab’s UI: - - Please enter the gitlab-ci description for this runner - [hostname] my-runner - - 5. Enter the tags associated with the Runner, you can change this later in GitLab’s UI: - - Please enter the gitlab-ci tags for this runner (comma separated): - my-tag,another-tag - - 6. Enter the Runner executor: - Please enter the executor: ssh, docker+machine, docker-ssh+machine, kubernetes, docker, parallels, virtualbox, docker-ssh, shell: - docker - - 7. If you chose Docker as your executor, you’ll be asked for the default image to be used for projects that do not define one in .gitlab-ci.yml: - Please enter the Docker image (eg. ruby:2.6): - ubuntu:18.04 - -![E.ON EBC RWTH Aachen University](Images/Register_Runner.PNG) - -### Start the GitLab Runner service. - - sudo gitlab-runner start \ No newline at end of file diff --git a/bin/06_Configfiles/README.md b/bin/06_Configfiles/README.md deleted file mode 100644 index 0ec4b7473d..0000000000 --- a/bin/06_Configfiles/README.md +++ /dev/null @@ -1,47 +0,0 @@ -## What is it? -This config files are neccessary for gitlab CI. -## What is implemented? -### AutoMergeRequest.sh -This file is used for the automatic creation of a merge request. -After the tests have been successfully completed, a Merge Request is automatically generated and the user can manually merge into his current branch. - - Open_Merge_Request: - stage: openMR - only: - - /^feature\/*/ - services: - - docker - before_script: - - sudo apt-get install jq -y - script: - - sudo chmod +x bin/06_Configfiles/autoMergeRequest.sh - - git config --global user.email "${GITLAB_USER_EMAIL}" - - git config --global user.name "${GITLAB_USER_NAME}" - - bin/06_Configfiles/autoMergeRequest.sh - - only: - variables: - - $CI_COMMIT_MESSAGE =~ /Correct HTML Code/ - - $CI_COMMIT_MESSAGE =~ /Correct HTML Code again/ - - - - - -### exit.sh -This file contains only the content exit 0 or exit 1, which is rewritten with the HTML check on each pass. - -Hereby the CI automatically determines whether a new branch must be created to correct the incorrect HTML code, which can later be merged back into the original branch. - -### checkVariables.sh -This file check if all neccessary variables are sets and include the following variables - - - $GL_TOKEN - - $GITHUB_API_TOKEN - - $Github_Repository - - $GITHUB_PRIVATE_KEY - - -## What is done? -- create a GitLab merge request via command line -- Create a new branch in after_script \ No newline at end of file diff --git a/bin/06_Configfiles/autoMergeRequest.sh b/bin/06_Configfiles/autoMergeRequest.sh deleted file mode 100644 index eb950521e6..0000000000 --- a/bin/06_Configfiles/autoMergeRequest.sh +++ /dev/null @@ -1,48 +0,0 @@ -#!/usr/bin/env bash -set -e - -if [ -z "$GL_TOKEN" ]; then - echo "GL_TOKEN not set" - echo "Please set the GitLab Private Token as GL_TOKEN" - exit 1 -fi - -# Extract the host where the server is running, and add the URL to the APIs -[[ $CI_PROJECT_URL =~ ^https?://[^/]+ ]] && HOST="${BASH_REMATCH[0]}/api/v4/projects/" - -# Look which is the default branch -#TARGET_BRANCH=`curl --silent "${HOST}${CI_PROJECT_ID}" --header "PRIVATE-TOKEN:${GL_TOKEN}" | jq --raw-output '.default_branch'`; -#TARGET_BRANCH = $TARGET_BRANCH - - -# The description of our new MR, we want to remove the branch after the MR has -# been closed -BODY="{ - \"id\": ${CI_PROJECT_ID}, - \"source_branch\": \"${CI_COMMIT_REF_NAME}\", - \"target_branch\": \"${TARGET_BRANCH}\", - \"remove_source_branch\": true, - \"title\": \"WIP: ${CI_COMMIT_REF_NAME}\", - \"assignee_id\":\"${GITLAB_USER_ID}\", - \"labels\": [\"fix HTML code\" , \"CI\" ] - -}"; - -# Require a list of all the merge request and take a look if there is already -# one with the same source branch -LISTMR=`curl --silent "${HOST}${CI_PROJECT_ID}/merge_requests?state=opened" --header "PRIVATE-TOKEN:${GL_TOKEN}"`; -COUNTBRANCHES=`echo ${LISTMR} | grep -o "\"source_branch\":\"${CI_COMMIT_REF_NAME}\"" | wc -l`; - -# No MR found, let's create a new one -if [ ${COUNTBRANCHES} -eq "0" ]; then - curl -X POST "${HOST}${CI_PROJECT_ID}/merge_requests" \ - --header "PRIVATE-TOKEN:${GL_TOKEN}" \ - --header "Content-Type: application/json" \ - --data "${BODY}"; - - echo "Opened a new merge request: WIP: ${CI_COMMIT_REF_NAME} and assigned to you"; - exit; -fi - -echo "Merge Request ist already open. No new merge request opened"; -exit 1 \ No newline at end of file diff --git a/bin/06_Configfiles/autoPullRequest.sh b/bin/06_Configfiles/autoPullRequest.sh deleted file mode 100644 index 4e3190d275..0000000000 --- a/bin/06_Configfiles/autoPullRequest.sh +++ /dev/null @@ -1,26 +0,0 @@ -#!/usr/bin/env bash -#POST /repos/:owner/:repo/pulls -#{ -# "title": "Amazing new feature", -# "body": "Please pull these awesome changes in!", -# "head": "username:branch", -# "base": "TARGET_BRANCH" -#} -set -e - - -echo "Create a Pull request ${Newbranch} to ${TARGET_BRANCH}" - - -curl -X POST "https://api.github.com/repos/${Github_Repository}/pulls" \ - --header "Authorization:Bearer ${GITHUB_API_TOKEN}" \ - --header "Content-Type: application/json" \ - --data "{ - \"title\": \"Merge the corrected HTML Code in branch ${TARGET_BRANCH}\", - \"body\": \"Merge the corrected HTML Code. After confirm the pull request, **pull** your branch to your local repository.\", - \"head\": \"${GitHub_Username}:${Newbranch}\", - \"base\": \"${TARGET_BRANCH}\" -}" -echo ${GitHub_Username} -echo "Create pull request. Merge ${Newbranch} into ${TARGET_BRANCH}. " -exit 0 diff --git a/bin/06_Configfiles/checkVariables.sh b/bin/06_Configfiles/checkVariables.sh deleted file mode 100644 index 02c1540b92..0000000000 --- a/bin/06_Configfiles/checkVariables.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/usr/bin/env bash - -set -e -echo "Check Variables" - -if [ -z "$GL_TOKEN" ]; then - echo "GL_TOKEN not set" - echo "Please set the GitLab Private Token as GL_TOKEN" - exit 1 -fi - - -echo "GL_TOKEN is set" - - - -if [ -z "$GITHUB_API_TOKEN" ]; then - echo "GITHUB_API_TOKEN not set" - echo "Please set the GitHub Private Token as GITHUB_API_TOKEN" - exit 1 -fi - -echo "GITHUB_API_TOKEN is set" - -if [ -z "$Github_Repository" ]; then - echo "Github_Repository not set" - echo "Please set your Token (e.g. owner/project) as Github_Repository" - exit 1 -fi - -echo "Github_Repository is set" - -if [ -z "$GITHUB_PRIVATE_KEY" ]; then - echo "GITHUB_PRIVATE_KEY not set" - echo "Please set the Github private ssh-Token as GITHUB_PRIVATE_KEY" - exit 1 -fi - -echo "GITHUB_PRIVATE_KEY is set" - -echo "Configurations are correct." - -exit 0 \ No newline at end of file diff --git a/bin/06_Configfiles/delete_merged_branches.sh b/bin/06_Configfiles/delete_merged_branches.sh deleted file mode 100644 index 62e98f3724..0000000000 --- a/bin/06_Configfiles/delete_merged_branches.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/usr/bin/env bash - -#Note: DELETE /projects/:id/repository/branches/:branch -#$CI_API_V4_URL="https://git.rwth-aachen.de/api/v4" -# curl --request DELETE --header "PRIVATE-TOKEN: " https://gitlab.example.com/api/v4/projects/5/repository/branches/newbranch -echo "Delete merged Branch ${Newbranch}" - -set -e - - -curl --request DELETE --header "PRIVATE-TOKEN:${GL_TOKEN}" $CI_API_V4_URL/projects/${CI_PROJECT_ID}/repository/branches/${Newbranch} - -echo "Branch ${Newbranch} was deleted" \ No newline at end of file diff --git a/bin/06_Configfiles/exit.sh b/bin/06_Configfiles/exit.sh deleted file mode 100644 index c7172ef663..0000000000 --- a/bin/06_Configfiles/exit.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash - -exit 1 \ No newline at end of file diff --git a/bin/06_Configfiles/list_remote_mirror.sh b/bin/06_Configfiles/list_remote_mirror.sh deleted file mode 100644 index 2a0e4292a4..0000000000 --- a/bin/06_Configfiles/list_remote_mirror.sh +++ /dev/null @@ -1,2 +0,0 @@ -LISTMR='curl --header "PRIVATE-TOKEN:${GL_TOKEN}" $CI_API_V4_URL/projects/${CI_PROJECT_ID}/remote_mirrors' -echo $LISTMR diff --git a/bin/06_Configfiles/showMergeRequest.sh b/bin/06_Configfiles/showMergeRequest.sh deleted file mode 100644 index 4a13c58b24..0000000000 --- a/bin/06_Configfiles/showMergeRequest.sh +++ /dev/null @@ -1,47 +0,0 @@ -#!/usr/bin/env bash -set -e - -if [ -z "$GL_TOKEN" ]; then - echo "GL_TOKEN not set" - echo "Please set the GitLab Private Token as GL_TOKEN" - exit 1 -fi - -echo "GL_TOKEN is set" - -# Extract the host where the server is running, and add the URL to the APIs -[[ $CI_PROJECT_URL =~ ^https?://[^/]+ ]] && HOST="${BASH_REMATCH[0]}/api/v4/projects/" - -# Look which is the default branch -#TARGET_BRANCH=`curl --silent "${HOST}${CI_PROJECT_ID}" --header "PRIVATE-TOKEN:${GL_TOKEN}" | jq --raw-output '.default_branch'`; -#TARGET_BRANCH = $TARGET_BRANCH - - -# The description of our new MR, we want to remove the branch after the MR has -# been closed -BODY="{ - \"id\": ${CI_PROJECT_ID}, - \"source_branch\": \"${Newbranch}\", - \"target_branch\": \"${TARGET_BRANCH}\", - \"remove_source_branch\": true, - \"title\": \"WIP: ${CI_COMMIT_REF_NAME}\", - \"assignee_id\":\"${GITLAB_USER_ID}\" -}"; -echo "$BODY" -echo -# Require a list of all the merge request and take a look if there is already -# one with the same source branch -LISTMR=`curl --silent "${HOST}${CI_PROJECT_ID}/merge_requests?state=opened" --header "PRIVATE-TOKEN:${GL_TOKEN}"`; -echo "$LISTMR" -COUNTBRANCHES=`echo ${LISTMR} | grep -o "\"${Newbranch}\":\"${CI_COMMIT_REF_NAME}\"" | wc -l`; -#COUNTBRANCHES=`echo ${LISTMR} | grep -o "\"source_branch\":\"${CI_COMMIT_REF_NAME}\"" | wc -l`; - -echo "$COUNTBRANCHES" -# No MR found, let's create a new one -if [ ${COUNTBRANCHES} -eq "0" ]; then - echo "No merge request is open"; - exit 0; -fi - -echo "Merge Request ist already open. No new merge request opened"; -exit 1 \ No newline at end of file diff --git a/bin/CITests/01_CleanUp/README.md b/bin/CITests/01_CleanUp/README.md new file mode 100644 index 0000000000..5f9f2ac827 --- /dev/null +++ b/bin/CITests/01_CleanUp/README.md @@ -0,0 +1,15 @@ +# What is it? +### setting_check + +Checks if all necessary variables and files are set or exist. +The test is performed by the commit `git commit -m "ci_setting"`. +# How to implement? + image: registry.git.rwth-aachen.de/ebc/ebc_intern/dymola-docker:miniconda-latest + stages: + - check_setting + include: + - 'bin/templates/03_ci_templates/04_CleanUpScript/ci_setting.gitlab-ci.yml' + + + + diff --git a/bin/02_CITests/CleanUpSkripts/__init__.py b/bin/CITests/01_CleanUp/__init__.py similarity index 100% rename from bin/02_CITests/CleanUpSkripts/__init__.py rename to bin/CITests/01_CleanUp/__init__.py diff --git a/bin/02_CITests/CleanUpSkripts/cleanmodelica.py b/bin/CITests/01_CleanUp/cleanmodelica.py similarity index 100% rename from bin/02_CITests/CleanUpSkripts/cleanmodelica.py rename to bin/CITests/01_CleanUp/cleanmodelica.py diff --git a/bin/CITests/01_CleanUp/setting_check.py b/bin/CITests/01_CleanUp/setting_check.py new file mode 100644 index 0000000000..32d9c0038c --- /dev/null +++ b/bin/CITests/01_CleanUp/setting_check.py @@ -0,0 +1,82 @@ +import sys +import configparser +import os +import argparse + +class Check_Settings(object): + + def __init__(self, setting): + self.setting = setting + + def _get_setting(self): + set_file_list = [] + set_dir_list = [] + var_list = [] + for set in self.setting: + if set.find("__") > -1: + continue + if set.find("file") > -1 : + set_file_list.append(set) + if set.find("dir") > -1: + set_dir_list.append(set) + return set_file_list, set_dir_list + + + +def _check_dir(path_list): + for path in path_list: + if os.path.exists(path) is False: + print(f'Path {path} does not exist and will be created') + os.makedirs(path) + else: + continue + +def _check_file(file_list): + for file in file_list: + if os.path.isfile(file) is False: + print(f'File {file} does not exist.') + file_in = open(file, "w") + file_in.close() + else: + continue + + +def _check_variables(variable_main_list, github_token, github_private_key): + for var in variable_main_list: + if var is None: + print(f'Please set variable {var}.') + else: + print(f'variable {var} is set in file .gitlab-ci.yml.') + if github_token is None: + print(f'Please set variable GITHUB_API_TOKEN in your gitlab ci repo under CI/Variables.') + else: + print(f'Variable GITHUB_API_TOKEN is set.') + if github_private_key is None: + print(f'Please set variable GITHUB_PRIVATE_KEY in your gitlab ci repo under CI/Variables.') + else: + print(f'Variable GITHUB_PRIVATE_KEY is set.') + + + + + +if __name__ == '__main__': + + parser = argparse.ArgumentParser(description="Set Github Environment Variables") # Configure the argument parser + check_test_group = parser.add_argument_group("Arguments to set Environment Variables") + check_test_group.add_argument('-GT', "--github-token", help="Your Set GITHUB Token") + check_test_group.add_argument("-GR", "--github-private-key", + help="Environment Variable owner/RepositoryName") + check_test_group.add_argument('-GP', "--GL-Token", help="Set your gitlab page url") + args = parser.parse_args() + sys.path.append('bin/CITests') + + from setting_check import Check_Settings + from _config import * + file_list = [ch_file, exit_file, eof_file, new_ref_file, ref_file, wh_file, ref_whitelist_file, html_wh_file, show_ref_file, update_ref_file, reg_temp_file, write_temp_file, sim_temp_file, page_temp_file, ibpsa_temp_file, + style_check_temp_file, html_temp_file, main_temp_file, main_yml_file, chart_temp_file, index_temp_file, layout_temp_file, setting_file] + path_list = [artifacts_dir, temp_dir, chart_dir, ref_file_dir, resource_dir] + #_check_dir(path_list) + _check_file(file_list) + _check_variables(variable_main_list, github_token=args.github_token, github_private_key=args.github_private_key) + diff --git a/bin/CITests/02_UnitTests/CheckPackages/__init__.py b/bin/CITests/02_UnitTests/CheckPackages/__init__.py new file mode 100644 index 0000000000..f05e539704 --- /dev/null +++ b/bin/CITests/02_UnitTests/CheckPackages/__init__.py @@ -0,0 +1,4 @@ +import os + +ch_file = f'bin{os.sep}03_Whitelists{os.sep}changedmodels.txt' +wh_file = f'bin{os.sep}03_WhiteLists{os.sep}Whitelist_checkmodel.txt' diff --git a/bin/CITests/02_UnitTests/CheckPackages/validatetest.py b/bin/CITests/02_UnitTests/CheckPackages/validatetest.py new file mode 100644 index 0000000000..56ae1b7eae --- /dev/null +++ b/bin/CITests/02_UnitTests/CheckPackages/validatetest.py @@ -0,0 +1,613 @@ +import multiprocessing +import argparse +import os +import sys +import platform +from git import Repo +import time +import glob +from natsort import natsorted + + +class Git_Repository_Clone(object): + def __init__(self, repo_dir, git_url): + self.repo_dir = repo_dir + self.git_url = git_url + + def _clone_repository(self): # pull git repo + if os.path.exists(self.repo_dir): + print(f'IBPSA folder exists already!') + else: + print(f'Clone IBPSA Repo') + Repo.clone_from(self.git_url, self.repo_dir) + + +class ValidateTest(object): + """Class to Check Packages and run CheckModel Tests""" + """Import Python Libraries""" + + def __init__(self, package, n_pro, show_gui, simulate_examples, ch_models, mo_library, wh_library, + filter_wh): + self.package = package + self.mo_library = mo_library + self.lib_path = f'{self.mo_library}{os.sep}package.mo' + self.root_package = f'{self.mo_library}{os.sep}{self.package}' + self.n_pro = n_pro + self.show_gui = show_gui + self.simulate_ex = simulate_examples + self.ch_models = ch_models + self.wh_library = wh_library + self.filter_wh = filter_wh + + sys.path.append('bin/CITests') + from _config import ch_file, wh_file + self.ch_file = ch_file + self.wh_file = wh_file + self.err_log = f'{self.mo_library}{os.sep}{self.mo_library}.{self.package}-errorlog.txt' + + self.CRED = '\033[91m' # Colors + self.CEND = '\033[0m' + self.green = "\033[0;32m" + + from dymola.dymola_interface import DymolaInterface # Load modelica python interface + from dymola.dymola_exception import DymolaException + print(f'1: Starting Dymola instance') + if platform.system() == "Windows": + dymola = DymolaInterface() + else: + dymola = DymolaInterface(dymolapath="/usr/local/bin/dymola") + self.dymola = dymola + self.dymola_exception = DymolaException() + self.dymola.ExecuteCommand( + "Advanced.TranslationInCommandLog:=true;") # Writes all information in the log file, not only the + + + def _dym_check_lic(self): # check dymola license + dym_sta_lic_available = self.dymola.ExecuteCommand('RequestOption("Standard");') + lic_counter = 0 + while dym_sta_lic_available is False: + print(f'{self.CRED} No Dymola License is available {self.CEND} \n Check Dymola license after 180.0 seconds') + self.dymola.close() + time.sleep(180.0) + dym_sta_lic_available = self.dymola.ExecuteCommand('RequestOption("Standard");') + lic_counter += 1 + if lic_counter > 10: + if dym_sta_lic_available is False: + print(f'There are currently no available Dymola licenses available. Please try again later.') + self.dymola.close() + exit(1) + print(f'2: Using Dymola port {str(self.dymola._portnumber)} \n {self.green} Dymola License is available {self.CEND}') + + + def _checkmodel(self, model_list): # Check models and return a Error Log, if the check failed + print(f'Library path: {self.lib_path}') + pack_check = self.dymola.openModel(self.lib_path) + if pack_check is True: + print(f'Found {self.mo_library} library and start checkmodel tests. \nCheck package {self.package} \n') + elif pack_check is False: + print(f'Library path is wrong. Please check path of {self.mo_library} library path.') + exit(1) + #library_check = self.dymola.openModel("../../../../../library/Modelica 4.0.0/package.mo") # Load modelica library MSL 4.0.0 + # self.dymola.ExecuteCommand("DefaultModelicaVersion('4.0.0', true);") + #if library_check is False: + # print("Failed to load Modelica library 4.0.0") + # exit(1) + #if library_check is True: + # print("Load Modelica library 4.0.0 successful") + #self.dymola.ExecuteCommand('DymolaCommands.Others.DefaultModelicaVersion("4.0.0", true);') + error_model = [] + error_message = [] + for model in model_list: + result = self.dymola.checkModel(model) + if result is True: + print(f'\n {self.green} Successful: {self.CEND} {model} \n') + continue + if result is False: + print(f'Check for Model {model}{self.CRED} failed!{self.CEND}\n\n{self.CRED}Error:{self.CEND} {model}\nSecond Check Test for model {model}') + sec_result = self.dymola.checkModel(model) + if sec_result is True: + print(f'\n {self.green} Successful: {self.CEND} {model} \n') + continue + if sec_result is False: + print(f'\n {self.CRED} Error: {self.CEND} {model} \n') + log = self.dymola.getLastError() + error_model.append(model) + error_message.append(log) + print(f'{log}') + continue + self.dymola.savelog(self.mo_library + "." + self.package + "-log.txt") + self.dymola.close() + return error_model, error_message + + + def _sim_examples(self, example_list): # Simulate examples or validations + pack_check = self.dymola.openModel(self.lib_path) + if pack_check is True: + print(f'Found {self.mo_library} Library and start check model test.\nCheck Package {self.package} \n') + elif pack_check is False: + print(f'Library path is wrong. Please check the path of {self.mo_library} library path.') + exit(1) + error_model = [] + error_message = [] + if len(example_list) == 0: + print(f'{self.CRED}Error:{self.CEND} Found no examples') + exit(0) + for example in example_list: + print(f'Simulate model: {example}') + result = self.dymola.checkModel(example, simulate=True) + if result is True: + print(f'\n {self.green}Successful:{self.CEND} {example}\n') + if result is False: + print(f'Simulate model {example} {self.CRED} failed! {self.CEND} \n Second check test for model {example}') + sec_result = self.dymola.checkModel(example, simulate=True) + if sec_result is True: + print(f'\n {self.green} Successful: {self.CEND} {example} \n') + if sec_result is False: + print(f'\n {self.CRED} Error: {self.CEND} {example}\n') + log = self.dymola.getLastError() + print(f'{log}') + error_model.append(example) + error_message.append(log) + self.dymola.savelog(self.mo_library + "." + self.package + "-log.txt") + self.dymola.close() + return error_model, error_message + + + def _write_errorlog(self, error_model, + error_message): # Write a Error log with all models, that don´t pass the check + error_log = open(self.err_log, "w") + for model, message in zip(error_model, error_message): + error_log.write(f'\n \n Error in model: {model} \n') + error_log.write(str(message)) + error_log.close() + + def _get_model(self): # list all models in package + model_list = [] + for subdir, dirs, files in os.walk(self.root_package): + for file in files: + filepath = subdir + os.sep + file + if filepath.endswith(".mo") and file != "package.mo": + model = filepath.replace(os.sep, ".") + model = model[model.rfind(self.mo_library):model.rfind(".mo")] + model_list.append(model) + return model_list + + def _get_ch_models(self): + changed_models = open(self.ch_file, "r", encoding='utf8') + modelica_models = [] + lines = changed_models.readlines() + for line in lines: + if line.rfind(".mo") > -1 and line.find("package") == -1: + if line.find(f'{self.mo_library}{os.sep}{self.package}') > -1 and line.find("ReferenceResults") == -1: + model = line.lstrip() + model = model.strip() + model = model.replace("\n", "") + model_name = model[model.rfind(self.mo_library):model.rfind('.mo')] + model_name = model_name.replace(os.sep, ".") + model_name = model_name.replace('/', ".") + model_name = model_name.replace('.mo', "") + modelica_models.append(model_name) + continue + changed_models.close() + return modelica_models + + def _get_examples(self): # list all examples in package + example_list = [] + for subdir, dirs, files in os.walk(self.root_package): + for file in files: + filepath = subdir + os.sep + file + if filepath.endswith(".mo") and file != "package.mo": + ex_file = open(filepath, "r", encoding='utf8', errors='ignore') + lines = ex_file.readlines() + for line in lines: + if line.find("extends") > -1 and line.find("Modelica.Icons.Example") > -1: + example = filepath.replace(os.sep, ".") + example = example[example.rfind(self.mo_library):example.rfind(".mo")] + example_list.append(example) + break + ex_file.close() + return example_list + + def _get_ch_examples(self): # list all changed examples in package + changed_models = open(self.ch_file, "r", encoding='utf8', + errors='ignore') + example_list = [] + lines = changed_models.readlines() + for line in lines: + if line.rfind(".mo") > -1 and line.find("package") == -1: + if line.find(f'{self.mo_library}{os.sep}{self.package}') > -1 and line.find("ReferenceResults") == -1: + model = line.lstrip() + model = model.strip() + model = model.replace("\n", "") + model_name = model[model.rfind(self.mo_library):] + ex_file = open(model_name, "r", encoding='utf8', errors='ignore') + ex_lines = ex_file.readlines() + for ex_line in ex_lines: + if ex_line.find("extends") > -1 and ex_line.find("Modelica.Icons.Example") > -1: + example = model_name.replace(os.sep, ".") + example = example.replace('/', ".") + example = example.replace('.mo', "") + example_list.append(example) + break + ex_file.close() + changed_models.close() + return example_list + + def _filter_wh_models(self, models, wh_list): + wh_list_mo = [] + for element in models: + for subelement in wh_list: + if element == subelement: + wh_list_mo.append(element) + wh_list_mo = list(set(wh_list_mo)) + for example in wh_list_mo: + models.remove(example) + return models + + def _get_wh_models(self): # Return a List with all models from the Whitelist + wh_file = open(self.wh_file, "r") + lines = wh_file.readlines() + wh_list_models = [] + for line in lines: + if line.find(f'{self.wh_library}.{self.package}') > -1: + model = line.lstrip() + model = model.strip() + model = model.replace("\n", "") + print(f'Dont test IBPSA model: {model}. Model is on the whitelist') + wh_list_models.append(model.replace(self.wh_library, self.mo_library)) + elif line.find(f'{self.mo_library}.{self.package}') > -1: + model = line.lstrip() + model = model.strip() + model = model.replace("\n", "") + print(f'Dont test AixLib model: {model}. Model is on the whitelist') + wh_list_models.append(model) + wh_file.close() + return wh_list_models + + def _check_result(self, error_model): + if len(error_model) == 0: + print(f'Test was {self.green}Successful!{self.CEND}') + exit(0) + if len(error_model) > 0: + print(f'Test {self.CRED}failed!{self.CEND}') + for model in error_model: + print(f'{self.CRED}Error:{self.CEND} Check Model {model}') + exit(1) + if error_model is None: + exit(1) + + +class Create_whitelist(object): + + def __init__(self, library, wh_lib): + self.library = library + self.wh_lib = wh_lib + self.wh_lib_path = f'{self.wh_lib}{os.sep}{self.wh_lib}{os.sep}package.mo' + + sys.path.append('bin/CITests') + from _config import ch_file, wh_file, exit_file + self.ch_file = ch_file + self.wh_file = wh_file + self.exit_file = exit_file + + self.CRED = '\033[91m' # Colors + self.CEND = '\033[0m' + self.green = '\033[0;32m' + from dymola.dymola_interface import DymolaInterface # Load modelica python interface + from dymola.dymola_exception import DymolaException + print(f'1: Starting Dymola instance') + if platform.system() == "Windows": + dymola = DymolaInterface() + else: + dymola = DymolaInterface(dymolapath="/usr/local/bin/dymola") + self.dymola = dymola + self.dymola_exception = DymolaException() + self.dymola.ExecuteCommand( + "Advanced.TranslationInCommandLog:=true;") # ## Writes all information in the log file, not only the + + def read_script_version(self): + aixlib_dir = f'{self.library}{os.sep}Resources{os.sep}Scripts' + filelist = (glob.glob(aixlib_dir + os.sep + "*.mos")) + if len(filelist) == 0: + print("Cant find a Conversion Script in IBPSA Repo") + exit(0) + l_aixlib_conv = natsorted(filelist)[(-1)] + l_aixlib_conv = l_aixlib_conv.split(os.sep) + version = (l_aixlib_conv[len(l_aixlib_conv) - 1]) + print(f'Latest {self.library} version: {version}') + return version + + def _check_fileexist(self): + if os.path.exists(self.wh_file): + print(f'Whitelist does exist. Update the whitelist under {self.wh_file}') + else: + print(f' Whitelist does not exist. Create a new one under {self.wh_file}') + file = open(self.wh_file, "w+") + file.close() + + def _check_whitelist(self, + version): # Write a new Whitelist with all models in IBPSA Library of those models who have not passed the Check Test + vfile = open(self.wh_file, "r") # Read the last version of whitelist + lines = vfile.readlines() + version_check = False + for line in lines: + line = line.strip() + if line.strip("\n") == version.strip("\n"): + print(f'Whitelist is on version {version}. The Whitelist is already up to date') + version_check = True + vfile.close() + return version_check + + def _get_wh_model(self, wh_path): + model_list = [] + for subdir, dirs, files in os.walk(wh_path): + for file in files: + filepath = subdir + os.sep + file + if filepath.endswith(".mo") and file != "package.mo": + model = filepath.replace(os.sep, ".") + model = model[model.rfind(self.wh_lib):model.rfind(".mo")] + model_list.append(model) + if len(model_list) == 0: + print(f'No Models') + exit(1) + return model_list + + def _dym_check_lic(self): # check dymola license + dym_sta_lic_available = self.dymola.ExecuteCommand('RequestOption("Standard");') + lic_counter = 0 + while dym_sta_lic_available is False: + print(f'{self.CRED} No Dymola License is available {self.CEND} \n Check Dymola license after 180.0 seconds') + self.dymola.close() + time.sleep(180.0) + dym_sta_lic_available = self.dymola.ExecuteCommand('RequestOption("Standard");') + lic_counter += 1 + if lic_counter > 10: + if dym_sta_lic_available is False: + print(f'There are currently no available Dymola licenses available. Please try again later.') + self.dymola.close() + exit(1) + print(f'2: Using Dymola port {str(self.dymola._portnumber)}\n{self.green}Dymola License is available{self.CEND}') + + + def _check_wh_model(self, model_list): # check models for creating whitelist + package_check = self.dymola.openModel(self.wh_lib_path) + if package_check is True: + print(f'Found {self.wh_lib} Library and check models in library {self.wh_lib} \n') + elif package_check is False: + print(f'Library path is wrong. Please check path of {self.wh_lib} library path.') + exit(1) + error_model = [] + error_message = [] + for model in model_list: + result = self.dymola.checkModel(model) + if result is True: + print(f'\n{self.green}Successful:{self.CEND} {model}\n') + continue + if result is False: + print(f'\n{self.CRED}Error:{self.CEND} {model}\n') + log = self.dymola.getLastError() + print(f'{log}') + error_model.append(model) + error_message.append(log) + continue + self.dymola.savelog(f'{self.wh_lib}-log.txt') + self.dymola.close() + return error_model, error_message + #return error_model + + def _write_exit_log(self, version_check): # write entry in exit file + exit = open(self.exit_file, "w") + if version_check is False: + exit.write(f'FAIL') + else: + exit.write(f'successful') + exit.close() + + + def _write_whitelist(self, error_model_list, version): # write a new whitelist + wh_file = open(self.wh_file, "w") + wh_file.write(f'\n{version} \n \n') + for model in error_model_list: + wh_file.write(f'\n{model} \n \n') + print(f'New whitelist was created with the version {version}') + wh_file.close() + + +def _setEnvironmentVariables(var, value): # Add to the environment variable 'var' the value 'value' + import os + import platform + if var in os.environ: + if platform.system() == "Windows": + os.environ[var] = value + ";" + os.environ[var] + else: + os.environ[var] = value + ":" + os.environ[var] + else: + os.environ[var] = value + + +def check_model_workflow(): + if args.single_package is None: + print(f'{CRED}Error:{CEND} Package is missing!') + exit(1) + if args.library is None: + print(f'{CRED}Error:{CEND} Library is missing!') + exit(1) + print(f'Setting: Package {args.single_package}') + print(f'Setting: library {args.library}') + CheckModelTest._dym_check_lic() + if args.changedmodels is True: # Test only changed or new models + print(f'Test only changed or new models') + model_list = CheckModelTest._get_ch_models() + if len(model_list) == 0: + print(f'No changed models in Package: {args.single_package}') + exit(0) + elif args.filterwhitelist is True: # Filter model on whitelist + if args.wh_library is None: + print(f'{CRED}Error:{CEND} WhiteList Library is missing!') + exit(1) + print(f'Setting: Whitelist library {args.wh_library}') + wh_list = CheckModelTest._get_wh_models() + models = CheckModelTest._get_model() + model_list = CheckModelTest._filter_wh_models(models, wh_list) + else: # Check all models in package + model_list = CheckModelTest._get_model() + if len(model_list) == 0: + print(f'No models in package {args.single_package}') + exit(1) + result = CheckModelTest._checkmodel(model_list) + error_model = result[0] + error_message = result[1] + CheckModelTest._write_errorlog(error_model, error_message) + CheckModelTest._check_result(error_model) + + +def sim_example_workflow(): + if args.single_package is None: + print(f'{CRED}Error:{CEND} Package is missing!') + exit(1) + if args.library is None: + print(f'{CRED}Error:{CEND} Library is missing!') + exit(1) + print(f'Setting: Package {args.single_package}') + print(f'Setting: library {args.library}') + CheckModelTest._dym_check_lic() + print(f'Simulate examples and validations') + if args.changedmodels is True: + print(f'Test only changed or new models') + example_list = CheckModelTest._get_ch_examples() + if len(example_list) == 0: + print(f'No changed models in Package: {args.single_package}') + exit(0) + elif args.filterwhitelist is True: + if args.wh_library is None: + print(f'{CRED}Error:{CEND} Library is missing!') + exit(1) + print(f'Setting: Whitelist library {args.wh_library}') + wh_list = CheckModelTest._get_wh_models() + models = CheckModelTest._get_examples() + example_list = CheckModelTest._filter_wh_models(models, wh_list) + else: + example_list = CheckModelTest._get_examples() + if len(example_list) == 0: + print(f'No models in package {args.single_package}') + exit(1) + result = CheckModelTest._sim_examples(example_list) + error_model = result[0] + error_message = result[1] + CheckModelTest._write_errorlog(error_model, error_message) + CheckModelTest._check_result(error_model) + + +def create_wh_workflow(): + if args.wh_library is None: + print(f'{CRED}Error:{CEND} Whitelist library is missing!') + exit(1) + if args.library is None: + print(f'{CRED}Error{CEND}: Library is missing!') + exit(1) + print(f'Setting: WhiteList library {args.wh_library}') + print(f'Setting: library {args.library}') + Whitelist_class = Create_whitelist(library=args.library, + wh_lib=args.wh_library) + Whitelist_class._check_fileexist() + version = Whitelist_class.read_script_version() + version_check = Whitelist_class._check_whitelist(version) + if version_check is False: + Whitelist_class._write_exit_log(version_check) + model_list = [] + if args.repo_dir is None: + print(f'{CRED}Error:{CEND} Repository directory is missing!') + exit(1) + print(f'Setting: Package {args.repo_dir}') + if args.git_url is None and args.wh_path is None: + print(f'{CRED}Error:{CEND} git url or whitelist path is missing!') + exit(1) + if args.git_url is not None: + print(f'Setting: whitelist git url library {args.git_url}') + Git_Class = Git_Repository_Clone(repo_dir=args.repo_dir, + git_url=args.git_url) + Git_Class._clone_repository() + model_list = Whitelist_class._get_wh_model(args.repo_dir) + elif args.wh_path is not None: + print(f'Setting: whitelist path library {args.wh_path}') + model_list = Whitelist_class._get_wh_model(args.wh_path) + print(f'Write new writelist from {args.wh_library} library') + Whitelist_class._dym_check_lic() + result = Whitelist_class._check_wh_model(model_list) + #error_model_list = result[0] + error_model_list = result + Whitelist_class._write_whitelist(error_model_list, version) + exit(0) + else: + Whitelist_class._write_exit_log(version_check) + exit(0) + + +if __name__ == '__main__': + parser = argparse.ArgumentParser(description="Check and Validate single Packages") # Configure the argument parser + check_test_group = parser.add_argument_group("arguments to run check tests") + check_test_group.add_argument('-s', "--single-package", metavar="AixLib.Package", + help="Test only the Modelica package AixLib.Package") + check_test_group.add_argument("-n", "--number-of-processors", type=int, default=multiprocessing.cpu_count(), + help="Maximum number of processors to be used") + check_test_group.add_argument("--show-gui", help="show the GUI of the simulator", action="store_true") + check_test_group.add_argument("-WL", "--whitelist", + help="Create a WhiteList of IBPSA Library: y: Create WhiteList, n: Don´t create WhiteList", + action="store_true") + check_test_group.add_argument("-SE", "--simulateexamples", help="Check and Simulate Examples in the Package", + action="store_true") + check_test_group.add_argument("-DS", "--dymolaversion", default="2020", + help="Version of Dymola(Give the number e.g. 2020") + check_test_group.add_argument("-V", "--check-version", default=False, action="store_true") + check_test_group.add_argument("-CM", "--changedmodels", default=False, action="store_true") + check_test_group.add_argument("-FW", "--filterwhitelist", default=False, action="store_true") + check_test_group.add_argument("-L", "--library", default="AixLib", help="Library to test") + check_test_group.add_argument("-wh-l", "--wh-library", help="Library to test") + check_test_group.add_argument("--repo-dir", help="Library to test") + check_test_group.add_argument("--git-url", default="https://github.com/ibpsa/modelica-ibpsa.git", help="url repository") + check_test_group.add_argument("--wh-path", help="path of white library") + args = parser.parse_args() # Parse the arguments + CRED = '\033[91m' + CEND = '\033[0m' + green = "\033[0;32m" + + if platform.system() == "Windows": # Checks the Operating System, Important for the Python-Dymola Interface + _setEnvironmentVariables("PATH", os.path.join(os.path.abspath('.'), "Resources", "Library", "win32")) + sys.path.insert(0, os.path.join('C:\\', + 'Program Files', + 'Dymola ' + args.dymolaversion, + 'Modelica', + 'Library', + 'python_interface', + 'dymola.egg')) + else: + _setEnvironmentVariables("LD_LIBRARY_PATH", + os.path.join(os.path.abspath('.'), "Resources", "Library", "linux32") + ":" + + os.path.join(os.path.abspath('.'), "Resources", "Library", "linux64")) + sys.path.insert(0, os.path.join('opt', + 'dymola-' + args.dymolaversion + '-x86_64', + 'Modelica', + 'Library', + 'python_interface', + 'dymola.egg')) + print(f'operating system {platform.system()}') + sys.path.append(os.path.join(os.path.abspath('.'), "..", "..", "BuildingsPy")) + + from validatetest import ValidateTest + + + if args.whitelist is True: # Write a new WhiteList + create_wh_workflow() + + CheckModelTest = ValidateTest(package=args.single_package, + n_pro=args.number_of_processors, + show_gui=args.show_gui, + simulate_examples=args.simulateexamples, + ch_models=args.changedmodels, + mo_library=args.library, + wh_library=args.wh_library, + filter_wh=args.filterwhitelist) + if args.simulateexamples is True: # Simulate Models + sim_example_workflow() + else: # Check all Models in a Package + check_model_workflow() diff --git a/bin/02_CITests/UnitTests/How_to_wirte_a_new_UnitTest.md b/bin/CITests/02_UnitTests/How_to_wirte_a_new_UnitTest.md similarity index 100% rename from bin/02_CITests/UnitTests/How_to_wirte_a_new_UnitTest.md rename to bin/CITests/02_UnitTests/How_to_wirte_a_new_UnitTest.md diff --git a/bin/02_CITests/UnitTests/README.md b/bin/CITests/02_UnitTests/README.md similarity index 86% rename from bin/02_CITests/UnitTests/README.md rename to bin/CITests/02_UnitTests/README.md index f398be5cb9..0f7eee77b2 100644 --- a/bin/02_CITests/UnitTests/README.md +++ b/bin/CITests/02_UnitTests/README.md @@ -5,17 +5,22 @@ This templates check, simulate or perform a regression test of AixLib models. Add the following lines to your .gitlab-ci.yml: stages: - - Check - - Simulate + - Ref_Check + - Update_WhiteList + - check + - post + - create_whitelist + - simulate - RegressionTest + - Update_Ref + - plot_ref + - prepare + - deploy include: - - project: 'EBC/EBC_all/gitlab_ci/templates' - - file: 'ci-tests/UnitTests/check_model.gitlab-ci.yml' - - project: 'EBC/EBC_all/gitlab_ci/templates' - - file: 'ci-tests/UnitTests/regression_test.gitlac-ci.yml' - - project: 'EBC/EBC_all/gitlab_ci/templates' - - file: 'ci-tests/UnitTests/simulate_model.gitlab-ci.yml' + - 'bin/templates/03_ci_templates/02_UnitTests/check_model.gitlab-ci.yml' + - 'bin/templates/03_ci_templates/02_UnitTests/regression_test.gitlab-ci.yml' + - 'bin/templates/03_ci_templates/02_UnitTests/simulate_model.gitlab-ci.yml' @@ -312,26 +317,40 @@ The reference file then looks like the one below and can be compared and used in This test check and simulate the models. You have following options: - check_test_group = parser.add_argument_group("arguments to run check tests") - check_test_group.add_argument("-b", "--batch", action ="store_true", help="Run in batch mode without user Interaction") - check_test_group.add_argument("-t", "--tool", metavar="dymola",default="dymola", help="Tool for the Checking Tests. Set to Dymola") - check_test_group.add_argument('-s',"--single-package",metavar="AixLib.Package", help="Test only the Modelica package AixLib.Package") - check_test_group.add_argument("-p","--path", default=".", help = "Path where top-level package.mo of the library is located") - check_test_group.add_argument("-n", "--number-of-processors", type=int, default= multiprocessing.cpu_count(), help="Maximum number of processors to be used") - check_test_group.add_argument("--show-gui", help="show the GUI of the simulator" , action="store_true") - check_test_group.add_argument("-WL", "--WhiteList", help="Create a WhiteList of IBPSA Library: y: Create WhiteList, n: Don´t create WhiteList" , action="store_true") - check_test_group.add_argument("-SE", "--SimulateExamples", help="Check and Simulate Examples in the Package" , action="store_true") - check_test_group.add_argument("-DS", "--DymolaVersion",default="2020", help="Version of Dymola(Give the number e.g. 2020") + parser = argparse.ArgumentParser(description="Check and Validate single Packages") # Configure the argument parser + check_test_group = parser.add_argument_group("arguments to run check tests") + check_test_group.add_argument('-s', "--single-package", metavar="AixLib.Package", + help="Test only the Modelica package AixLib.Package") + check_test_group.add_argument("-n", "--number-of-processors", type=int, default=multiprocessing.cpu_count(), + help="Maximum number of processors to be used") + check_test_group.add_argument("--show-gui", help="show the GUI of the simulator", action="store_true") + check_test_group.add_argument("-WL", "--whitelist", + help="Create a WhiteList of IBPSA Library: y: Create WhiteList, n: Don´t create WhiteList", + action="store_true") + check_test_group.add_argument("-SE", "--simulateexamples", help="Check and Simulate Examples in the Package", + action="store_true") + check_test_group.add_argument("-DS", "--dymolaversion", default="2020", + help="Version of Dymola(Give the number e.g. 2020") + check_test_group.add_argument("-V", "--check-version", default=False, action="store_true") + check_test_group.add_argument("-CM", "--changedmodels", default=False, action="store_true") + check_test_group.add_argument("-FW", "--filterwhitelist", default=False, action="store_true") + check_test_group.add_argument("-L", "--library", default="AixLib", help="Library to test") + check_test_group.add_argument("-wh-l", "--wh-library", help="Library to test") + check_test_group.add_argument("--repo-dir", help="Library to test") + check_test_group.add_argument("--git-url", default="https://github.com/ibpsa/modelica-ibpsa.git", help="url repository") + check_test_group.add_argument("--wh-path", help="path of white library") - 1. --WhiteList + 1. --whitelist Clone the repository of IBPSA and check the models. Models that failed will append to the Whitelist. These models will not checked. - 2. --SimulateExamples + 2. --simulateexamples Example: - - python bin/02_CITests/UnitTests/CheckPackages/validatetest.py -s "AixLib.Airflow" -p AixLib/package.mo --SimulateExamples +`python bin/CITests/02_UnitTests/CheckPackages/validatetest.py --single-package "Airflow" --library AixLib -DS 2020 --wh-library IBPSA --filterwhitelist --simulateexamples` + +`python bin/CITests/02_UnitTests/CheckPackages/validatetest.py -DS 2020 --repo-dir IBPSA --git-url https://github.com/ibpsa/modelica-ibpsa.git --library AixLib --wh-library IBPSA --whitelist` The Test will check and simulate all examples and validation in AixLib. diff --git a/bin/CITests/02_UnitTests/reference_check.py b/bin/CITests/02_UnitTests/reference_check.py new file mode 100644 index 0000000000..aec0ae7af9 --- /dev/null +++ b/bin/CITests/02_UnitTests/reference_check.py @@ -0,0 +1,645 @@ +import os +import sys +import platform +import multiprocessing +import argparse +import time + + +class Reg_Reference(object): + + def __init__(self, package, library, n_pro, tool, batch, show_gui, path): + self.package = package + self.library = library + self.n_pro = n_pro + self.tool = tool + self.batch = batch + self.show_gui = show_gui + self.path = path + + sys.path.append('../bin/CITests') + from _config import ref_file_dir, resource_dir, exit_file, ref_file, ref_whitelist_file, update_ref_file + self.ref_file_path = ref_file_dir + self.resource_file_path = resource_dir + self.ref_whitelist = f'..{os.sep}{ref_whitelist_file}' + self.update_ref_file = update_ref_file + self.exit_file = f'..{os.sep}{exit_file}' + self.ref_file = f'..{os.sep}{ref_file}' + + self.CRED = '\033[91m' # Color + self.CEND = '\033[0m' + self.green = "\033[0;32m" + + import buildingspy.development.regressiontest as u # Buildingspy + self.ut = u.Tester(tool=self.tool) + + def _get_mos_scripts(self): # obtain mos scripts that are feasible for regression testing + mos_list = [] + for subdir, dirs, files in os.walk(self.resource_file_path): + for file in files: + filepath = subdir + os.sep + file + if filepath.endswith(".mos"): + infile = open(filepath, "r") + lines = infile.read() + if lines.find("simulateModel") > -1: + mos_script = filepath[filepath.find("Dymola"):filepath.find(".mos")].replace("Dymola", + self.library) + mos_script = mos_script.replace(os.sep, ".") + mos_list.append(mos_script) + if lines.find("simulateModel") == -1: + print( + f'{self.CRED}This mos script is not suitable for regression testing:{self.CEND} {filepath} ') + infile.close() + continue + return mos_list + + def _write_reg_list(self): # writes a list for feasible regression tests + mos_list = Reg_Reference._get_mos_scripts(self) + wh_file = open(self.ref_file, "w") + for mos in mos_list: + wh_file.write(f'\n{mos}\n') + wh_file.close() + + def _get_check_ref(self): # give a reference list + ref_list = [] + for subdir, dirs, files in os.walk(self.ref_file_path): + for file in files: + filepath = subdir + os.sep + file + if filepath.endswith(".txt"): + ref_file = filepath[filepath.rfind(self.library):filepath.find(".txt")] + ref_list.append(ref_file) + return ref_list + + def _delte_ref_file(self, ref_list): # delete reference files + ref_dir = f'{self.library}{os.sep}{self.ref_file_path}' + for ref in ref_list: + print(f'Update reference file: {ref_dir}{os.sep}{ref}\n') + if os.path.exists(f'..{os.sep}{ref_dir}{os.sep}{ref}') is True: + os.remove(f'..{os.sep}{ref_dir}{os.sep}{ref}') + else: + print(f'File {ref_dir}{os.sep}{ref} does not exist\n') + + def _get_ref_package(self): # reproduces packages in which reference results are missing + mos_list = Reg_Reference._compare_ref_mos(self) + package_list = [] + if mos_list is not None: + for mos in mos_list: + package_name = mos + package_list.append(package_name) + for package in package_list: + print(f'{self.CRED}No Reference result for Model:{self.CRED} {package}') + return package_list + + def _get_whitelist_package(self): # get and filter package from reference whitelist + ref_wh = open(self.ref_whitelist, "r") + lines = ref_wh.readlines() + wh_list = [] + for line in lines: + if len(line.strip()) == 0: + continue + else: + wh_list.append(line.strip()) + ref_wh.close() + for wh_package in wh_list: + print( + f'{self.CRED} Don´t create reference results for package{self.CEND} {wh_package}: This Package is on the whitelist') + return wh_list + + def _compare_ref_mos(self): # compares if both files existed + mos_list = Reg_Reference._get_mos_scripts(self) # Mos Scripts + ref_list = Reg_Reference._get_check_ref(self) # Reference files + err_list = [] + for mos in mos_list: + for ref in ref_list: + if mos.replace(".", "_") == ref: # mos_script == reference results + err_list.append(mos) + break + for err in err_list: + mos_list.remove(err) # remove all mos script for that a ref file exists + return mos_list + + def _compare_wh_mos(self): # filter model from whitelist + package_list = Reg_Reference._get_ref_package(self) + wh_list = Reg_Reference._get_whitelist_package(self) + err_list = [] + for package in package_list: + for wh_package in wh_list: + if package[:package.rfind(".")].find(wh_package) > -1: + print( + f'{self.green}Don´t Create reference results for model{self.CEND} {package} This package is on the whitelist') + err_list.append(package) + else: + continue + for err in err_list: + package_list.remove(err) + return package_list + + + def _create_reference_results(self): # creates reference files that do not yet exist + self.ut.batchMode(False) + self.ut.setLibraryRoot(self.path) + model_list = Reg_Reference._compare_wh_mos(self) + package_list = [] + print(f'\n \n') + model_list = list(set(model_list)) + for model in model_list: + print(f'{self.green}Generate new reference results for model: {self.CEND} {model}') + package_list.append(model[:model.rfind(".")]) + package_list = list(set(package_list)) + print(f'\n \n') + if len(package_list) > 0: + for package in package_list: + print(f'{self.green}Generate new reference results for package: {self.CEND} {package}') + self.ut.setSinglePackage(package) + self.ut.setNumberOfThreads(self.n_pro) + self.ut.pedanticModelica(False) + self.ut.showGUI(False) + response = self.ut.run() + if response == 1: + print(f'{self.CRED}Error in package: {self.CEND} {package}') + continue + else: + print(f'{self.green}New reference results in package: {self.CEND} {package}\n') + continue + exit(1) + else: + ex_file = open(self.exit_file, "w") + ex_file.write("#!/bin/bash" + "\n" + "\n" + "exit 0") + ex_file.close() + print(f'{self.green}All Reference files exists, except the Models on WhiteList.{self.CEND}') + exit(0) + + def _get_update_package(self, ref_list): + ref_package_list = [] + for ref in ref_list: + if ref.rfind("Validation") > -1: + ref_package_list.append(ref[:ref.rfind("_Validation")+11].replace("_",".")) + elif ref.rfind("Examples") > -1: + ref_package_list.append(ref[:ref.rfind("_Examples")+9].replace("_", ".")) + + ref_package_list = list(set(ref_package_list)) + return ref_package_list + + def _get_update_ref(self): # get a model to update + file = open(f'..{os.sep}{self.update_ref_file}', "r") + lines = file.readlines() + ref_list = [] + for line in lines: + if len(line) == 0: + continue + elif line.find(".txt") > -1: + ref_list.append(line.strip()) + file.close() + if len(ref_list) == 0: + print(f'No reference files in file {self.update_ref_file}. Please add here your reference files you want to update') + exit(0) + return ref_list + + def _update_ref(self, package): # Update reference results + self.ut.batchMode(False) + self.ut.setLibraryRoot(self.path) + if package is not None: + self.ut.setSinglePackage(package) + print(f'{self.green}Update reference results for the packages: {self.CEND} {package}') + self.ut.setNumberOfThreads(self.n_pro) + self.ut.pedanticModelica(False) + self.ut.showGUI(self.show_gui) + retVal = self.ut.run() + return retVal + + def _get_ref_model(self): + mo_list = [] + ref_file = open(self.ref_file, "r") + lines = ref_file.readlines() + for line in lines: + if line.find(self.package) > -1: + mo_list.append(line.strip()) + ref_file.close() + return mo_list + + def _compare_reg_model(self, modelica_list, mo_list): + reg_list = [] + for model in modelica_list: + for mo in mo_list: + if model == mo: + reg_list.append(model) + return reg_list + + def _check_regression_test(self, package): # start regression test for a package + if package is None: + print(f'{self.CRED}Error:{self.CEND} Package is missing! (e.g. Airflow)') + exit(1) + if self.library is None: + print(f'{self.CRED}Error:{self.CEND} Library is missing! (e.g. AixLib)') + exit(1) + self.ut.batchMode(self.batch) + self.ut.setLibraryRoot(self.path) + if package is not None: + self.ut.setSinglePackage(package) + self.ut.setNumberOfThreads(self.n_pro) + self.ut.pedanticModelica(False) + self.ut.showGUI(self.show_gui) + retVal = self.ut.run() + return retVal + +class Extended_model(object): + + def __init__(self, package, library, dymolaversion, path): + self.package = package + self.library = library + self.dymolaversion = dymolaversion + self.path = path + sys.path.append('../bin/CITests') + from _config import ch_file, resource_dir + self.changed_file = f'..{os.sep}{ch_file}' + self.resource_file_path = f'{resource_dir}{os.sep}{self.package.replace(self.library + ".", "")}' + self.package_path = f'{self.package}' + + self.CRED = '\033[91m' # Color + self.CEND = '\033[0m' + self.green = "\033[0;32m" + + if self.package is None: + print(f'{self.CRED}Error:{self.CEND} Package is missing! (e.g. Airflow)') + exit(1) + if self.library is None: + print(f'{self.CRED}Error:{self.CEND} Library is missing! (e.g. AixLib)') + exit(1) + + from dymola.dymola_interface import DymolaInterface + from dymola.dymola_exception import DymolaException + print(f'1: Starting Dymola instance') + if platform.system() == "Windows": + dymola = DymolaInterface() + else: + dymola = DymolaInterface(dymolapath="/usr/local/bin/dymola") + self.dymola = dymola + self.dymola_exception = DymolaException() + self.dymola.ExecuteCommand("Advanced.TranslationInCommandLog:=true;") + librarycheck = self.dymola.openModel(self.path) + if librarycheck == True: + print(f'Found {self.library} Library. Start regression test.') + elif librarycheck == False: + print(f'Library Path is wrong. Please Check Path of {self.library} Library Path') + exit(1) + self.dymola.ExecuteCommand("Advanced.TranslationInCommandLog:=true;") + + def _dym_check_lic(self): # check dymola license + dym_sta_lic_available = self.dymola.ExecuteCommand('RequestOption("Standard");') + lic_counter = 0 + while dym_sta_lic_available is False: + print(f'{self.CRED} No Dymola License is available {self.CEND} \n Check Dymola license after 180.0 seconds') + self.dymola.close() + time.sleep(180.0) + dym_sta_lic_available = self.dymola.ExecuteCommand('RequestOption("Standard");') + lic_counter += 1 + if lic_counter > 30: + if dym_sta_lic_available is False: + print(f'There are currently no available Dymola licenses available. Please try again later.') + self.dymola.close() + exit(1) + print( + f'2: Using Dymola port {str(self.dymola._portnumber)} \n {self.green} Dymola License is available {self.CEND}') + + def _get_lines(self): # get lines from reference whitelist + changed_models = open(self.changed_file, "r", encoding='utf8') + lines = changed_models.readlines() + changed_models.close() + return lines + + def _get_usedmodel(self, mo_list): # get a list with all used models of regression models + model_list = [] + lines = Extended_model._get_lines(self) + if len(mo_list) > 0: + if platform.system() == "Windows": # Load ModelManagement + self.dymola.ExecuteCommand( + 'cd("C:\Program Files\Dymola ' + self.dymolaversion + '\Modelica\Library\ModelManagement 1.1.8\package.moe");') + else: + self.dymola.ExecuteCommand( + 'cd("/opt/dymola-' + self.dymolaversion + '-x86_64/Modelica/Library/ModelManagement 1.1.8/package.moe");') + for model in mo_list: + use_model_list = [] + usedmodel_list = self.dymola.ExecuteCommand( + f'ModelManagement.Structure.Instantiated.UsedModels("{model}");') + if usedmodel_list is None: + continue + else: + for usemodel in usedmodel_list: + if usemodel.find("Modelica") > -1: + continue + if usemodel.find("Real") > -1: + continue + if usemodel.find("Integer") > -1: + continue + if usemodel.find("Boolean") > -1: + continue + if usemodel.find("String") > -1: + continue + use_model_list.append(usemodel) + extendedmodel_list = self.dymola.ExecuteCommand( + f'ModelManagement.Structure.AST.ExtendsInClass("{model}");') + if extendedmodel_list is None: + continue + else: + for extendedmodel in extendedmodel_list: + if extendedmodel.find("Modelica") > -1: + continue + if extendedmodel.find("Real") > -1: + continue + if extendedmodel.find("Integer") > -1: + continue + if extendedmodel.find("Boolean") > -1: + continue + if extendedmodel.find("String") > -1: + continue + use_model_list.append(extendedmodel) + ch_model_list = Extended_model.get_changed_used_model(self, lines, use_model_list) + if len(ch_model_list) > 0: + model_list.append(model) + self.dymola.close() + model_list = list(set(model_list)) + return model_list + + def get_changed_used_model(self, lines, model_list): # return all used models, that changed + ch_model_list = [] + for line in lines: + for model in model_list: + if line[line.find(self.library):line.rfind(".mo")].strip() == model: + ch_model_list.append(model) + return ch_model_list + + def _insert_list(self, ref_list, mos_list, modelica_list, + ch_model_list): # return models, scripts, reference results and used models, that changed + changed_list = [] + if ref_list is not None: + for ref in ref_list: + print(f'Changed reference files: {ref}') + changed_list.append(ref[:ref.rfind("_")].replace("_", ".")) + if mos_list is not None: + for mos in mos_list: + print(f'Changed mos script files: {mos}') + changed_list.append(mos[:mos.rfind(".")]) + if modelica_list is not None: + for model in modelica_list: + print(f'Changed model files: {model}') + changed_list.append(model[:model.rfind(".")]) + if ch_model_list is not None: + for usedmodel in ch_model_list: + print(f'Changed used model files: {usedmodel}') + changed_list.append(usedmodel[:usedmodel.rfind(".")]) + changed_list = list(set(changed_list)) + return changed_list + + def _get_ref(self, lines): # return all reference results, that changed + ref_list = [] + for line in lines: + if line.rfind(".txt") > -1 and line.rfind("ReferenceResults") > -1 and line.find( + ".package") == -1 and line.rfind(self.package) > -1: + line = line.replace("/", ".") + line = line.replace(os.sep, ".") + line = line.replace("..", ".") + ref_list.append(line[line.rfind(self.library):line.rfind(".txt")]) + continue + return ref_list + + def _get_mos(self, lines): # return all mos script, that changed + mos_list = [] + for line in lines: + if line.rfind(".mos") > -1 and line.rfind("Scripts") > -1 and line.find(".package") == -1 and line.rfind( + self.package) > -1: + line = line.replace("/", ".") + line = line.replace(os.sep, ".") + line = line.replace("Dymola", self.library) + mos_list.append(line[line.rfind(self.library):line.rfind(".mos")]) + return mos_list + + def _get_mo(self, lines): # return all models, that changed + modelica_list = [] + for line in lines: + if line.rfind(".mo") > -1 and line.find("package.") == -1 and line.rfind(self.package) > -1 and line.rfind( + "Scripts") == -1: + line = line.replace("/", ".") + line = line.replace(os.sep, ".") + if len(line) == 0: + continue + modelica_list.append(line[line.rfind(self.library):line.rfind(".mo")]) + return modelica_list + + +def _setEnvironmentVariables(var, value): # Add to the environment variable `var` the value `value` + if var in os.environ: + if platform.system() == "Windows": + os.environ[var] = value + ";" + os.environ[var] + else: + os.environ[var] = value + ":" + os.environ[var] + else: + os.environ[var] = value + + +def _validate_html(path): # validate the html syntax + import buildingspy.development.validator as v + val = v.Validator() + errMsg = val.validateHTMLInPackage(path) + n_msg = len(errMsg) + for i in range(n_msg): + if i == 0: + print("The following malformed html syntax has been found:\n%s" % errMsg[i]) + else: + print(errMsg[i]) + if n_msg == 0: + return 0 + else: + return 1 + + +def _validate_experiment_setup(path): # validate regression test setup + import buildingspy.development.validator as v + val = v.Validator() + retVal = val.validateExperimentSetup(path) + return retVal + + +def _run_coverage_only(batch, tool, package, path): # Specifies which models are tested + import buildingspy.development.regressiontest as u + ut = u.Tester(tool=tool) + ut.batchMode(batch) + ut.setLibraryRoot(path) + if package is not None: + ut.setSinglePackage(package) + ut.get_test_example_coverage() + return 0 + + +if __name__ == '__main__': + # python bin/02_CITests/UnitTests/reference_check.py --single-package Airflow --library AixLib -DS 2019 + # cd AixLib && python ../bin/02_CITests/UnitTests/reference_check.py --single-package Airflow --library AixLib -DS 2019 + # cd AixLib && python ../bin/02_CITests/UnitTests/reference_check.py --single-package ci_update_ref_Airflow.Multizone --library AixLib -DS 2019 --update-ref + # cd AixLib && python ../bin/02_CITests/UnitTests/reference_check.py --single-package ci_update_ref_AixLib.Airflow.AirHandlingUnit.Examples.AirCurtain --library AixLib -DS 2019 --update-ref + parser = argparse.ArgumentParser(description='Run the unit tests or the html validation only.') + unit_test_group = parser.add_argument_group("arguments to run unit tests") + unit_test_group.add_argument("-b", "--batch", + action="store_true", + help="Run in batch mode without user interaction") + unit_test_group.add_argument("--show-gui", + help='Show the GUI of the simulator', + action="store_true") + unit_test_group.add_argument('-s', "--single-package", + metavar="Modelica.Package", + help="Test only the Modelica package Modelica.Package") + unit_test_group.add_argument("-p", "--path", + default=".", + help="Path where top-level package.mo of the library is located") + unit_test_group.add_argument("-L", "--library", default="AixLib", help="Library to test") + unit_test_group.add_argument("-n", "--number-of-processors", type=int, default=multiprocessing.cpu_count(), + help='Maximum number of processors to be used') + unit_test_group.add_argument('-t', "--tool", metavar="dymola", default="dymola", + help="Tool for the regression tests. Set to dymola or jmodelica") + unit_test_group.add_argument("-DS", "--dymolaversion", default="2020", + help="Version of Dymola(Give the number e.g. 2020") + unit_test_group.add_argument("--coverage-only", + help='Only run the coverage test', + action="store_true") + unit_test_group.add_argument("--create-ref", + help='checks if all reference files exist', + action="store_true") + unit_test_group.add_argument("--ref-list", + help='checks if all reference files exist', + action="store_true") + unit_test_group.add_argument("--update-ref", + help='update all reference files', + action="store_true") + unit_test_group.add_argument("--modified-models", + help='Regression test only for modified models', + default=False, + action="store_true") + unit_test_group.add_argument("--validate-html-only", action="store_true") + unit_test_group.add_argument("--validate-experiment-setup", action="store_true") + CRED = '\033[91m' # Color + CEND = '\033[0m' + green = "\033[0;32m" + + args = parser.parse_args() # Parse the arguments + if platform.system() == "Windows": # Checks the Operating System, Important for the Python-Dymola Interface + _setEnvironmentVariables("PATH", os.path.join(os.path.abspath('.'), "Resources", "Library", "win32")) + sys.path.insert(0, os.path.join('C:\\', + 'Program Files', + 'Dymola ' + args.dymolaversion, + 'Modelica', + 'Library', + 'python_interface', + 'dymola.egg')) + else: + _setEnvironmentVariables("LD_LIBRARY_PATH", + os.path.join(os.path.abspath('.'), "Resources", "Library", "linux32") + ":" + + os.path.join(os.path.abspath('.'), "Resources", "Library", "linux64")) + sys.path.insert(0, os.path.join('opt', + 'dymola-' + args.dymolaversion + '-x86_64', + 'Modelica', + 'Library', + 'python_interface', + 'dymola.egg')) + # The path to buildingspy must be added to sys.path to work on Linux. + # If only added to os.environ, the Python interpreter won't find buildingspy + sys.path.append(os.path.join(os.path.abspath('.'), "..", "..", "BuildingsPy")) + + from reference_check import Reg_Reference + + # cd AixLib && python ../bin/02_CITests/UnitTests/reference_check.py --validate-html-only + if args.validate_html_only: # Validate the html syntax only, and then exit + ret_val = _validate_html(args.path) + if ret_val == 1: + print(f'{CRED}html check failed.{CEND}') + exit(ret_val) + + # cd AixLib && python ../bin/02_CITests/UnitTests/reference_check.py --validate-experiment-setup + elif args.validate_experiment_setup: # Match the mos file parameters with the mo files only, and then exit + ret_val = _validate_experiment_setup(args.path) + exit(ret_val) + + # cd AixLib && python ../bin/02_CITests/UnitTests/reference_check.py --coverage-only + elif args.coverage_only: + if args.single_package: + single_package = args.single_package + else: + single_package = None + ret_val = _run_coverage_only(batch=args.batch, + tool=args.tool, + package=single_package, + path=args.path) + exit(ret_val) + + ref_check = Reg_Reference(package=args.single_package, + library=args.library, + n_pro=args.number_of_processors, + tool=args.tool, + batch=args.batch, + show_gui=args.show_gui, + path=args.path) + if args.ref_list: + ref_check._write_reg_list() + exit(0) + # cd AixLib && python ../bin/02_CITests/UnitTests/reference_check.py --create-ref + elif args.create_ref: + ref_check._create_reference_results() + exit(1) + # cd AixLib && python ../bin/02_CITests/UnitTests/reference_check.py --update-ref --single-package + elif args.update_ref: + ref_list = ref_check._get_update_ref() + ref_check._delte_ref_file(ref_list) + package_list = ref_check._get_update_package(ref_list) + for package in package_list: + print(package) + ret_val = ref_check._update_ref(package) + exit(0) + else: + # cd AixLib && python ../bin/02_CITests/UnitTests/reference_check.py --single-package Airflow --library AixLib --batch -DS 2019 + if args.modified_models is False: + list_reg_model = Extended_model(package=args.single_package, + library=args.library, + dymolaversion=args.dymolaversion, + path="package.mo") + list_reg_model._dym_check_lic() + ret_val = ref_check._check_regression_test(args.single_package) + exit(ret_val) + # cd AixLib && python ../bin/02_CITests/UnitTests/reference_check.py --single-package Airflow --library AixLib --batch -DS 2019 -n 2 --modified-model + if args.modified_models is True: + ref_check._write_reg_list() + package = args.single_package[args.single_package.rfind(".") + 1:] + list_reg_model = Extended_model(package=package, + library=args.library, + dymolaversion=args.dymolaversion, + path="package.mo") + list_reg_model._dym_check_lic() + lines = list_reg_model._get_lines() # string change ref file + ref_list = list_reg_model._get_ref(lines) # get reference files from ref file + mos_list = list_reg_model._get_mos(lines) # get mos script from ref file + modelica_list = list_reg_model._get_mo(lines) # get modelica files from ref file + mo_list = ref_check._get_ref_model() # get the regression models from reference file list + modelica_list = ref_check._compare_reg_model(modelica_list, mo_list) # filter: get mo_list == modelica_list + model_list = list_reg_model._get_usedmodel( + mo_list) # gives a list of regression models where submodels have been modified + changed_list = list_reg_model._insert_list(ref_list, mos_list, modelica_list, + model_list) # give a list with packages to check + if len(changed_list) == 0: + print(f'No models to check and cannot start a regression test') + retVal = 0 + elif len(changed_list) > 0: + error_list = [] + print(f'Number of checked packages: {str(len(changed_list))}') + for package in changed_list: + print(f'Check package: {package}') + retVal = ref_check._check_regression_test(package) + if retVal != 0: + error_list.append(package) + print(f'{CRED}Regression test for model {package} was not successfull{CEND}') + else: + print(f'{green} Regression test for model {package} was successful {CEND}') + if len(error_list) > 0: + print(f'{CRED} Regression test failed{CEND}') + print(f'The following packages{CRED} failed: {CEND}') + for error in error_list: + print(f'{CRED}Error:{CEND} {error}') + exit(1) + else: + print(f'{green}Regression test was successful {CEND}') + exit(0) diff --git a/bin/02_CITests/SyntaxTests/README.md b/bin/CITests/03_SyntaxTests/README.md similarity index 76% rename from bin/02_CITests/SyntaxTests/README.md rename to bin/CITests/03_SyntaxTests/README.md index a80eaa9c29..6de71b6e94 100644 --- a/bin/02_CITests/SyntaxTests/README.md +++ b/bin/CITests/03_SyntaxTests/README.md @@ -5,21 +5,20 @@ This templates check, simulate and make a regression test of the AixLib models. To integrate the tests in the GitLab-CI include the templates. Add the following lines to your .gitlab-ci.yml: - #!/bin/bash image: registry.git.rwth-aachen.de/ebc/ebc_intern/dymola-docker:miniconda-latest stages: - build - - HTMLCheck - - openMR - - deploy + - HTML_Check + - create_html_whitelist - StyleCheck + - deploy + - openMR + - post include: - - project: 'EBC/EBC_all/gitlab_ci/templates' - - file: 'ci-tests/SyntaxTests/html_check.gitlab-ci.yml' - - project: 'EBC/EBC_all/gitlab_ci/templates' - - file: 'ci-tests/SyntaxTests/style_check.gitlab-ci.yml' + - 'bin/templates/03_ci_templates/03_SyntaxTest/html_check.gitlab-ci.yml' + - 'bin/templates/03_ci_templates/03_SyntaxTest/style_check.gitlab-ci.yml ' @@ -70,32 +69,29 @@ Add the following command to your .gitlab-ci.yml. For more information look at following [Repository](https://github.com/RWTH-EBC/HTML-Tidy-Modelica) -![E.ON EBC RWTH Aachen University](../../04_Documentation/Images/HTMLProcess.png) +![E.ON EBC RWTH Aachen University](../../Documentation/Images/HTMLProcess.png) -For more help type the command python bin/02_CITests/SyntaxTests/html_tidy_errors.py --help +For more help type the command python bin/CITests/SyntaxTests/html_tidy_errors.py --help ### StyleChecking The test StyleChecking use the ModelManagement library in modelica. The script tests the syntax of models or library. - - python bin/02_CITests/SyntaxTests/StyleChecking.py -s "AixLib" -p AixLib/package.mo + - python bin/CITests/SyntaxTests/StyleChecking.py -s "AixLib" -p AixLib/package.mo The following option will be checked: -![E.ON EBC RWTH Aachen University](../../04_Documentation/Images/ModelManagement_StyleChecking.PNG) +![E.ON EBC RWTH Aachen University](../../Documentation/Images/ModelManagement_StyleChecking.PNG) For more help type the command: - - python bin/02_CITests/SyntaxTests/StyleChecking.py --help - - - + - python bin/CITests/SyntaxTests/StyleChecking.py --help # What is done? diff --git a/bin/CITests/03_SyntaxTests/StyleChecking.py b/bin/CITests/03_SyntaxTests/StyleChecking.py new file mode 100644 index 0000000000..d6eadcd021 --- /dev/null +++ b/bin/CITests/03_SyntaxTests/StyleChecking.py @@ -0,0 +1,211 @@ +import codecs +import multiprocessing +import argparse +import os +import sys +import platform +import time + +class StyleCheck(object): + """ Class to Check the Style of Packages and Models + Export a HTML-Log File""" + + def __init__(self, package, library, dymolaversion, changed_models): + self.package = package + self.library = library + self.dymolaversion = dymolaversion + self.changed_models = changed_models + sys.path.append('bin/CITests') + from _config import exit_file, html_wh_file + self.exit_file = exit_file + self.html_wh_file = html_wh_file + + self.CRED = '\033[91m' # Colors + self.CEND = '\033[0m' + self.green = "\033[0;32m" + from dymola.dymola_interface import DymolaInterface # Load modelica python interface + from dymola.dymola_exception import DymolaException + print(f'1: Starting Dymola instance') + if platform.system() == "Windows": + dymola = DymolaInterface() + else: + dymola = DymolaInterface(dymolapath="/usr/local/bin/dymola") + self.dymola = dymola + self.dymola_exception = DymolaException() + self.dymola.ExecuteCommand( + "Advanced.TranslationInCommandLog:=true;") # Writes all information in the log file, not only the + + def _dym_check_lic(self): # check the license + dym_sta_lic_available = self.dymola.ExecuteCommand('RequestOption("Standard");') + lic_counter = 0 + while dym_sta_lic_available is False: + print(f'{self.CRED} No Dymola License is available {self.CEND} \n Check Dymola license after 180.0 seconds') + self.dymola.close() + time.sleep(180.0) + dym_sta_lic_available = self.dymola.ExecuteCommand('RequestOption("Standard");') + lic_counter += 1 + if lic_counter > 10: + if dym_sta_lic_available is False: + print(f'There are currently no available Dymola licenses available. Please try again later.') + self.dymola.close() + exit(1) + print(f'2: Using Dymola port {str(self.dymola._portnumber)} \n {self.green} Dymola License is available {self.CEND}') + + def _checkstyle(self): + library_check = self.dymola.openModel(self.library) # Load AixLib + if library_check == True: + print(f'Found {self.library} library and start style check') + elif library_check == False: + print(f'Path of library {self.library} is wrong. Please Check Path.') + exit(1) + if platform.system() == "Windows": # Load ModelManagement + self.dymola.ExecuteCommand( + 'cd("C:\Program Files\Dymola ' + self.dymolaversion + '\Modelica\Library\ModelManagement 1.1.8\package.moe");') + else: + self.dymola.ExecuteCommand( + 'cd("/opt/dymola-' + self.dymolaversion + '-x86_64/Modelica/Library/ModelManagement 1.1.8/package.moe");') + print("Start Style Check") # Start CheckLibrary in ModelManagement + if self.changed_models is False: + print(f'Check package or model: {self.package}') + self.dymola.ExecuteCommand('ModelManagement.Check.checkLibrary(false, false, false, true, "' + self.package +'", translationStructure=false);') + logfile = self.library.replace("package.mo", self.package +"_StyleCheckLog.html") + model_list = [] + else: + changed_model_list = [] + model_list = StyleCheck._sort_mo_models(self) + if len(model_list) > 100: + print("Over 100 changed models. Check all models in AixLib Library") + print(f'Check AixLib Library: {self.package}') + self.dymola.ExecuteCommand('ModelManagement.Check.checkLibrary(false, false, false, true, "' + self.package + '", translationStructure=false);') + logfile = self.library.replace("package.mo", self.package + "_StyleCheckLog.html") + self.changed_models = False + else: + for model in model_list: + print(f'Check package or model {model}') + path = self.library.replace("package.mo", "") + self.dymola.ExecuteCommand('ModelManagement.Check.checkLibrary(false, false, false, true, "' + model + '", translationStructure=false);') + inputfile = path + model + "_StyleCheckLog.html" + log = codecs.open(inputfile, "r", encoding='utf8') + for line in log: + changed_model_list.append(line) + log.close() + os.remove(inputfile) + all_logs = codecs.open(f'{path}ChangedModels_StyleCheckLog.html', "w", encoding='utf8') + for model in changed_model_list: + all_logs.write(model) + all_logs.close() + logfile = path + "ChangedModels_StyleCheckLog.html" + self.dymola.close() + return logfile, model_list + + def _sort_mo_models(self): + changed_file= codecs.open(self.exit_file, "r", encoding='utf8') + model_list = [] + lines = changed_file.readlines() + for line in lines: + if line.rfind(".mo") > -1: + model = line[line.rfind(self.package):line.rfind(".mo")].replace(os.sep, ".") + model = model.lstrip() + model_list.append(model) + continue + changed_file.close() + if len(model_list) == 0: + print("No Models to check") + exit(0) + return model_list + + def _StyleCheckLog_Check(self): + StyleCheck._dym_check_lic(self) + result = StyleCheck._checkstyle(self) + inputfile = result[0] + model_list = result[1] + outputfile = inputfile.replace("_StyleCheckLog.html", "_StyleErrorLog.html") + log_file = codecs.open(inputfile, "r", encoding='utf8') + error_log = codecs.open(outputfile, "w", encoding='utf8') + ErrorCount = 0 + for line in log_file: + line = line.strip() + if line.find("Check ok") > -1: + continue + if line.find("Library style check log") > -1: + continue + if self.changed_models is False: + if line.find(f'HTML style check log for {self.package}') > -1: + continue + if self.changed_models is True: + correct = 0 + for model in model_list: + if line.find(f'HTML style check log for {model}') > -1: + correct = correct + 1 + break + if correct > 0 : + continue + if len(line) == 0: + continue + else: + print(f'{self.CRED}Error in model:\n{self.CEND}{line.lstrip()}') + ErrorCount = ErrorCount + 1 + error_log.write(line) + log_file.close() + error_log.close() + if self.changed_models is False: + if ErrorCount == 0: + print(f'{self.green}Style check of model or package {self.package} was successful{self.CEND}') + exit(0) + elif ErrorCount > 0 : + print(f'{self.CRED}Test failed. Look in {self.package}_StyleErrorLog.html{self.CEND}') + exit(1) + else: + if ErrorCount == 0: + for model in model_list: + print(f'{green}\n Style check of model or package {model} was successful.{self.CEND}') + continue + exit(0) + elif ErrorCount > 0 : + print(f'{self.CRED}\nTest failed. Look in {outputfile.lstrip()}{self.CEND}') + exit(1) + +def _setEnvironmentVariables(var,value): # Add to the environemtn variable 'var' the value 'value' + if var in os.environ: + if platform.system() == "Windows": + os.environ[var] = value + ";" + os.environ[var] + else: + os.environ[var] = value + ":" + os.environ[var] + else: + os.environ[var] = value + +if __name__ == '__main__': + parser = argparse.ArgumentParser(description = "Check the Style of Packages") # Configure the argument parser + check_test_group = parser.add_argument_group("arguments to run check tests") + check_test_group.add_argument('-s',"--single-package",metavar="AixLib.Package", help="Test only the Modelica package AixLib.Package") + check_test_group.add_argument("-p","--path", default=".", help = "Path where top-level package.mo of the library is located") + check_test_group.add_argument("-DS", "--dymolaversion",default="2020", help="Version of Dymola(Give the number e.g. 2020") + check_test_group.add_argument("-CM", "--changed_models",default=False, action="store_true") + args = parser.parse_args() # Parse the arguments + from StyleChecking import StyleCheck + CheckStyleTest = StyleCheck(package=args.single_package, + library=args.path, + dymolaversion=args.dymolaversion, + changed_models=args.changed_models) + if platform.system() == "Windows": # Set path for python-dymola-interface: Operating System windows and linux + _setEnvironmentVariables("PATH", os.path.join(os.path.abspath('.'), "Resources", "Library", "win32")) + sys.path.insert(0, os.path.join('C:\\', + 'Program Files', + 'Dymola '+ args.dymolaversion, + 'Modelica', + 'Library', + 'python_interface', + 'dymola.egg')) + print("operating system Windows") + else: + print("operating system Linux") + _setEnvironmentVariables("LD_LIBRARY_PATH", os.path.join(os.path.abspath('.'), "Resources", "Library", "linux32") + ":" + + os.path.join(os.path.abspath('.'),"Resources","Library","linux64")) + sys.path.insert(0, os.path.join('opt', + 'dymola-'+args.dymolaversion+'-x86_64', + 'Modelica', + 'Library', + 'python_interface', + 'dymola.egg')) + + CheckStyleTest._StyleCheckLog_Check() diff --git a/bin/02_CITests/SyntaxTests/__init__.py b/bin/CITests/03_SyntaxTests/__init__.py similarity index 100% rename from bin/02_CITests/SyntaxTests/__init__.py rename to bin/CITests/03_SyntaxTests/__init__.py diff --git a/bin/CITests/03_SyntaxTests/html_tidy_errors.py b/bin/CITests/03_SyntaxTests/html_tidy_errors.py new file mode 100644 index 0000000000..d6b3a3398d --- /dev/null +++ b/bin/CITests/03_SyntaxTests/html_tidy_errors.py @@ -0,0 +1,628 @@ +import os +import io +import argparse +import shutil +from git import Repo +import sys +# ! /usr/bin/env python3.6 +# -*- coding: utf-8 -*- +"""View errors in the HTML code of a Modelica .mo file + +The script will +* collect all the HTML code (...) in the Modelica file and +* print out the original code with line numbers as well as +* the tidy version of the code (with line numbers). +* tidylib will look for errors and present the respective line numbers. + +You can then inspect the code and make corrections to your Modelica +file by hand. You might want to use the tidy version as produced by +tidylib. + +Example +------- +You can use this script on the command line and point it +to your Modelica file:: + +$ python html_tidy_errors.py [file [...]] + +Note: +----- +* This script uses Python 3.6 for printing syntax and +function parameter annotations. +* The script assumes that you have installed pytidylib + +`$ pip install pytidylib` + +* You also need to install the necessary dll's and +your python interpreter must be able to find the files. +In case of trouble just put the dll in your working dir. + +[https://binaries.html-tidy.org/](https://binaries.html-tidy.org/) +""" + + +class HTML_Tidy(object): + """Class to Check Packages and run CheckModel Tests""" + + def __init__(self, package, correct_overwrite, correct_backup, log, font, align, correct_view, + library, wh_library): + self.package = package + self.correct_overwrite = correct_overwrite + self.correct_backup = correct_backup + self.log = log + self.font = font + self.align = align + self.correct_view = correct_view + self.library = library + self.wh_library = wh_library + sys.path.append('bin/CITests') + from _config import exit_file, html_wh_file + self.exit_file = exit_file + self.html_wh_file = html_wh_file + self.CRED = '\033[91m' + self.CEND = '\033[0m' + self.green = "\033[0;32m" + + def run_files(self): # Make sure that the parameter rootDir points to a Modelica package. + rootDir = self.package.replace(".", os.sep) + topPackage = os.path.join(rootDir, "package.mo") + errMsg = list() + if not os.path.isfile(topPackage): + raise ValueError("Argument rootDir=%s is not a Modelica package. Expected file '%s'." % ( + rootDir, topPackage)) + file_counter = 0 + model_list = HTML_Tidy._ListAixLibModel(self) + for model in model_list: + model = model.replace(".", os.sep) + model = model.replace(os.sep + "mo", ".mo") + results = HTML_Tidy._CheckFile(self, model) + document_corr = results[0] + err = results[1] + if err is not "": # write error to error message + errMsg.append("[-- %s ]\n%s" % (model, err)) + if self.correct_backup: + HTML_Tidy._backup_old_files( + self, model, document_corr, file_counter) + if self.correct_overwrite: + HTML_Tidy._correct_overwrite(self, model, document_corr) + continue + if self.correct_view: + htmlList = HTML_Tidy.getInfoRevisionsHTML(self, model) + htmlStr = HTML_Tidy.join_body( + self, htmlList=htmlList, substitutions_dict={'\\"': '"'}) + document_corr, errors = HTML_Tidy._htmlCorrection(self, htmlStr) + docCorrStr = HTML_Tidy.number_print_List(self, document_corr.split('\n'), sep='\n') + if len(errors) > 0 and errors.find("Warning: The summary attribute on the element is obsolete in HTML5") == -1: + print('\n' + "----" + model + "----") + print("\n-------- HTML Code --------") + print(f"\n{HTML_Tidy.number_print_List(self, htmlList)}") + print(self.green + "\n-------- Corrected Code --------" + self.CEND) + print(f"\n{docCorrStr}") + print(self.CRED + "\n-------- Errors --------" + self.CEND) + print(f"\n{errors}") + continue + else: + continue + + if self.log: + file = HTML_Tidy._return_logfile(self, errMsg) + print("##########################################################") + print(f'Logfile is saved in {rootDir}{os.sep}HTML-logfile.txt') + var = HTML_Tidy.read_logFile(self, file) + return var + + def number_print_List(self, htmlList: list, sep: str = '') -> None: + """Print a list of strings with line numbers + Should be extended by a feature to highlight a given set of line + numbers. This can help the reader to quickly identify the lines + with errors. + + Parameters + ---------- + htmlList : list of str + The html code - each line a list entry. + sep : str + String that seperates the line number from the line text. + """ + return sep.join(['{0:>5d} {1}'.format(i, line) for i, line in enumerate(htmlList)]) + + def join_body(self, htmlList: list, substitutions_dict: dict = {'\\"': '"'}) -> str: + """Joins a list of strings into a single string and makes replacements + Parameters + ---------- + htmlList : list of str + The html code - each line a list entry. + substitutions_dict : dict + A dictionary with key:value pairs for old and new text. + The html code is escaped in Modelica. To feed it to tidylib + we need to remove the escape characters. + Returns + ------- + str + The html code as one string, cleared from escape characters. + """ + body = ''.join(htmlList) # just glue it together again + body = HTML_Tidy.make_string_replacements( + self, theString=body, substitutions_dict={'\\"': '"'}) + return body + + def make_string_replacements(self, theString: str, + substitutions_dict: dict = {'\\"': '"'}) -> str: + """Takes a string and replaces according to a given dictionary + Parameters + ---------- + theString : str + The string that contains replaceble text. + substitutions_dict : dict + A dictionary with key:value pairs for old and new text. + Returns + ------- + str + The modified string. """ + for k, v in substitutions_dict.items(): + theString = theString.replace(k, v) + return theString + + def getInfoRevisionsHTML(self, moFile): + """Returns a list that contains the html code + This function returns a list that contain the html code of the + info and revision sections. Each element of the list + is a string. + Parameters + ---------- + moFile : str + The name of a Modelica source file. + Returns + ------- + The list of strings of the info and revisions section. """ + + with open(moFile, mode="r", encoding="utf-8-sig") as f: + lines = f.readlines() + nLin = len(lines) + isTagClosed = True + entries = list() + for i in range(nLin): + if isTagClosed: # search for opening tag + idxO = lines[i].find("") + if idxO > -1: # search for closing tag on same line as opening tag + idxC = lines[i].find("") + if idxC > -1: + entries.append(lines[i][idxO + 6:idxC] + '\n') + isTagClosed = True + else: + entries.append(lines[i][idxO + 6:]) + isTagClosed = False + else: # search for closing tag + idxC = lines[i].find("") + if idxC == -1: # closing tag not found, copy full line + entries.append(lines[i]) + else: # search for opening tag on same line as closing tag + entries.append(lines[i][0:idxC] + '\n') # found closing tag, copy beginning of line only + isTagClosed = True + idxO = lines[i].find("") + if idxO > -1: + entries.append(lines[i][idxO + 6:]) + isTagClosed = False + return entries + + def _correct_overwrite(self, moFulNam, + document_corr): # This function overwrites the old modelica files with the corrected files + os.remove(moFulNam) + newfile = open(moFulNam, "w+b") + newfile.write(document_corr.encode("utf-8")) + + def _backup_old_files(self, moFulNam, document_corr, + file_counter): # This function backups the root folder and creates the corrected files + rootDir = self.package.replace(".", os.sep) + if os.path.exists(rootDir + "_backup") is False and file_counter == 1: + shutil.copytree(rootDir, rootDir + "_backup") + print("you can find your backup under " + rootDir + "_backup") + os.remove(moFulNam) + newfile = open(moFulNam, "w+b") + newfile.write(document_corr.encode("utf-8")) + + def _return_logfile(self, err_message): # This function creates the logfile + file = f'{self.package.replace(".", os.sep)}{os.sep}HTML-logfile.txt' + log_file = open(f'{file}', "w") + if len(err_message) >= 0: + for error in err_message: + log_file.write(error + '\n') + log_file.close() + return file + + def read_logFile(self, file): # read logfile for possible errors + log_file = open(file, "r") + lines = log_file.readlines() + err_list = [] + for line in lines: + line = line.replace("\n", "") + if line.find("Warning: The summary attribute on the
                element is obsolete in HTML5") > -1: + err_list.append(line) + continue + if self.font is True: + if line.find("Warning: element removed from HTML5") > -1: + err_list.append(line) + continue + if self.align is True: + if line.find('Warning:

                attribute "align" not allowed for HTML5') > -1: + err_list.append(line) + continue + if line.find("--") > -1 and line.find(".mo") > -1: + continue + if line.find('Warning: lacks "alt" attribute') > -1: + continue + elif line.find("Warning") > -1: + err_list.append(line) + log_file.close() + exit_file = open(self.exit_file, "w") + if len(err_list) > 0: + print("Syntax Error: Check HTML-logfile") + exit_file.write("#!/bin/bash" + "\n" + "\n" + "exit 1") + exit_file.close() + var = 1 + else: + print("HTML Check was successful!") + exit_file.write("#!/bin/bash" + "\n" + "\n" + "exit 0") + exit_file.close() + var = 0 + return var + + def _CheckFile(self, moFile): + """ + This function returns a list that contain the html code of the + info and revision sections. Each element of the list + is a string. + + :param moFile: The name of a Modelica source file. + :return: list The list of strings of the info and revisions + section. + """ + + with io.open(moFile, mode="r", encoding="utf-8-sig") as f: + lines = f.readlines() + nLin = len(lines) + isTagClosed = True + code = list() + htmlCode = list() + errors = list() + for i in range(nLin): + if isTagClosed: # search for opening tag + idxO = lines[i].find("") + if idxO > -1: # if found opening tag insert everything up to opening tag into the code list + code.append(lines[i][:idxO + 6]) # search for closing tag on same line as opening tag + idxC1 = lines[i].find("") + idxC2 = lines[i].find( + "<\html>") # check for both, correct and incorrect html tags, because dymola except also <\html> + if idxC1 > -1: + idxC = idxC1 + elif idxC2 > -1: + idxC = idxC2 + else: + idxC = -1 + if idxC > -1: + htmlCode.append(lines[i][idxO + 6:idxC] + '\n') + code.append(HTML_Tidy._htmlCorrection(self, htmlCode)[0]) + errors.append(HTML_Tidy._htmlCorrection(self, htmlCode)[1]) + code.append(lines[i][idxC:]) + isTagClosed = True + else: + htmlCode.append(lines[i][idxO + 6:]) + isTagClosed = False + else: + code.append(lines[i]) + isTagClosed = True + else: # check for both, correct and incorrect html tags, because dymola except also <\html> + idxC1 = lines[i].find("") + idxC2 = lines[i].find("<\html>") + if idxC1 > -1: + idxC = idxC1 + elif idxC2 > -1: + idxC = idxC2 + else: + idxC = -1 + if idxC > -1: + htmlCode.append(lines[i][idxO + 6:idxC]) + code.append(HTML_Tidy._htmlCorrection(self, htmlCode)[0]) + errors.append(HTML_Tidy._htmlCorrection(self, htmlCode)[1]) + code.append(lines[i][idxC:]) + htmlCode = list() + idxO = lines[i].find("") + if idxO > -1: + isTagClosed = False + else: + isTagClosed = True + else: + htmlCode.append(lines[i]) + isTagClosed = False + document_corr = "" + if len(code) > 0: + for lines in code: + document_corr += lines + errors_string = "" + if len(errors) > 0: + for lines in errors: + errors_string += lines + document_corr_img = "" + CloseFound = True + for line in document_corr.splitlines(): + line, CloseFound = HTML_Tidy.correct_table_summary(self, line, CloseFound) + if self.font == True: + line, CloseFound = HTML_Tidy.correct_font( + self, line, CloseFound) + if self.align == True: + line, CloseFound = HTML_Tidy.correct_p_align( + self, line, CloseFound) + document_corr_img += line + '\n' + return document_corr_img, errors_string + + def _htmlCorrection(self, htmlCode): + substitutions_dict: dict = {'"': '\\"', '
                ': '
                ', '
                ': '
                '} + htmlList = htmlCode + htmlStr = HTML_Tidy.join_body(self, htmlList=htmlList, substitutions_dict={'\\"': '"'}) + from tidylib import tidy_document + htmlCorrect, errors = tidy_document(f"{htmlStr}", + options={'doctype': 'html5', + 'show-body-only': 1, + 'numeric-entities': 1, + 'output-html': 1, + 'wrap': 72, + 'alt-text': '', }) + document_corr = HTML_Tidy.make_string_replacements( + self, theString=htmlCorrect, substitutions_dict=substitutions_dict) + return document_corr, errors + + + + def correct_table_summary(self, line, CloseFound): # delete Summary in table and add

                + if CloseFound == True: + tableTag = line.encode("utf-8").find(b"') + if tableTag > -1 and sumTag > -1: + line = line[:sumTag] + "> " + \ + line[sumTag:].replace('summary=', '', 1)) + return line, CloseFound + + def correct_th_align(self, line, CloseFound): # Correct algin with th and replace style="text-align" + if CloseFound == True: + alignTag = line.encode("utf-8").find(b"align") + thTag = line.encode("utf-8").find(b"th") + CloseTagIntex = line.encode("utf-8").rfind(b'">') + if alignTag > -1 and thTag > -1: + line = (line.replace('\\', '')) + return line, CloseFound + + def correct_p_align(self, line, CloseFound): # Correct align in p and replace style="text-align" + # Wrong:

                + # Correct:

                + # Correct:

                k = cp/cv

                + # Correct:

                + if CloseFound == True: + pTag = line.encode("utf-8").find(b"") + styleTag = line.encode("utf-8").find(b"text-align:") + style = line.encode("utf-8").find(b"style") + rstyle = style = line.encode("utf-8").find(b"style") + StyleCount = line.count("style=") + if styleTag > -1: + return line, CloseFound + elif pTag > -1 and alignTag > -1: + sline = (line[alignTag:closetag + 1].replace('\\', '')) + sline = (sline.replace('align="', 'style=text-align:')) + sline = (sline.replace('style=', 'style="')) + sline = (sline.replace(';', '')) + CloseTag_2 = sline.encode("utf-8").rfind(b">") + if CloseTag_2 > -1: + sline = (sline.replace('">', ';">')) + sline = sline.replace('""', '"') + line = (line[:alignTag] + sline + line[closetag + 1:]) + StyleCount = line.count("style=") + if StyleCount > 1: + line = line.replace('style="', '') + line = line.replace('"', '') + line = line.replace(';>', ';">') + pTag = line.encode("utf-8").find(b"") + line = (line[:pTag + 3] + tline + line[closetag + 1:]) + return line, CloseFound + + def correct_font(self, line, CloseFound): # Replace font to style für html5 + if CloseFound == True: + styleTag_1 = line.encode("utf-8").find(b"style=") + styleTag_2 = line.encode("utf-8").find(b"color") + fontTag = line.encode("utf-8").find(b"") + firstCloseTage = line.encode("utf-8").find(b">") + etag = line.encode("utf-8").find(b"=") + if styleTag_1 > -1 and styleTag_2 > -1: + if fontTag > -1 and rfontTag > -1: + sline = (line[fontTag:rfontTag].replace('\\', '')) + sline = sline.replace('"', '') + sline = sline.replace('', '">') + line = line[:fontTag] + sline + \ + line[rfontTag:].replace('', '') + elif fontTag > -1 and rfontTag > -1: + sline = (line[fontTag:rfontTag].replace('\\', '')) + sline = sline.replace('"', '') + sline = sline.replace('')) + line = line[:fontTag] + sline + \ + line[rfontTag:].replace('', '') + return line, CloseFound + + def correct_img_atr(self, line, CloseFound): # Correct img and check for missing alt attributed + if CloseFound == True: + imgTag = line.encode("utf-8").find(b"img") + if imgTag > -1: + imgCloseTagIndex = line.find(">", imgTag) + imgAltIndex = line.find("alt", imgTag) + if imgCloseTagIndex > -1 and imgAltIndex == -1: # if close tag exists but no alt attribute, insert alt attribute and change > to /> + line = line[:imgTag] + \ + line[imgTag:].replace(">", ' alt="" />', 1) + CloseFound = True + elif imgCloseTagIndex > -1 and imgAltIndex > -1: # if close tag exists and alt attribute exists, only change > to /> + line = line[:imgTag] + line[imgTag:].replace(">", ' />', 1) + CloseFound = True + + elif imgCloseTagIndex == -1: # if close tag is not in the same line + line = line + CloseFound = False + else: # if no close tag was found in previous line, but opening tag found search for close on this line with same + imgCloseTagIndex = line.find(">") + imgAltIndex = line.find("alt") + if imgCloseTagIndex > -1 and imgAltIndex == -1: + line = line[:imgCloseTagIndex] + \ + line[imgCloseTagIndex:].replace(">", ' alt="" />', 1) + CloseFound = True + elif imgCloseTagIndex > -1 and imgAltIndex > -1: + line = line[:imgCloseTagIndex] + \ + line[imgCloseTagIndex:].replace(">", ' />', 1) + CloseFound = True + elif imgCloseTagIndex == -1: + CloseFound = False + line = line + return line, CloseFound + + def delete_html_revision(self, line, CloseFound): # Delete revsion + if CloseFound == True: + htmlTag = line.encode("utf-8").find(b"") + htmlCloseTag = line.encode("utf-8").find(b"") + RevTag = line.encode("utf-8").find(b"revision") + if htmlTag > -1 and RevTag > -1: + if htmlCloseTag > -1: + line = "" + return line, CloseFound + + def _list_all_model(self): # List library and whitelist models + rootdir = self.package.replace(".", os.sep) + library_list = [] + file = open(self.html_wh_file, "r") + lines = file.readlines() + wh_library_list = [] + for line in lines: + if line.find(".mo") > -1: + line = line.replace(self.wh_library, self.library) + line = line.replace("\n", "") + wh_library_list.append(line) + file.close() + for subdir, dirs, files in os.walk(rootdir): # Return library models + for file in files: + filepath = subdir + os.sep + file + if filepath.endswith(".mo"): + model = filepath.replace(os.sep, ".") + model = model[model.rfind(self.library):] + library_list.append(model) + return library_list, wh_library_list + + def _ListAixLibModel(self): # Remove whitelist models and list all library model + library_list, wh_library_list = HTML_Tidy._list_all_model(self) + model_whitelist = [] + for element in library_list: + for subelement in wh_library_list: + if element == subelement: + model_whitelist.append(element) + for model in model_whitelist: + library_list.remove(model) + return library_list + + +class HTML_whitelist(object): + + def __init__(self, wh_library, git_url): + self.wh_library = wh_library + self.git_url = git_url + sys.path.append('bin/CITests') + from _config import html_wh_file + self.html_wh_file = html_wh_file + + def create_whitelist(self): # Create a new whiteList + Repo.clone_from(self.git_url, self.wh_library) + model_list = [] + for subdir, dirs, files in os.walk(self.wh_library): + for file in files: + filepath = subdir + os.sep + file + if filepath.endswith(".mo"): + model = filepath.replace(os.sep, ".") + model = model[model.rfind(self.wh_library):model.rfind(".mo")] + model_list.append(model) + file = open(self.html_wh_file, "w") + for model in model_list: + file.write("\n" + model + ".mo" + "\n") + file.close() + + +if __name__ == '__main__': + parser = argparse.ArgumentParser( + description='Run HTML correction on files, print found errors or backup old files') # Configure the argument parser + parser.add_argument("--correct-overwrite", action="store_true", default=False, + help="correct html code in modelica files and overwrite old files") + parser.add_argument("--correct-backup", action="store_true", default=False, + help="correct html code in modelica " "files and backup old files") + parser.add_argument("--log", action="store_true", + default=False, help="print logfile of errors found") + parser.add_argument('-s', "--single-package", metavar="AixLib.Package", + help="Test only the Modelica package AixLib.Package") + parser.add_argument("-p", "--path", default=".", + help="Path where top-level package.mo of the library is located") + parser.add_argument("--font", action="store_true", default=False, + help="correct html code: Remove font to span") + parser.add_argument("--align", action="store_true", default=False, + help="correct html code: Remove align to style=text-algin:") + parser.add_argument("--WhiteList", action="store_true", default=False, + help="Create a new WhiteList Library IBPSA") + parser.add_argument("--correct-view", action="store_true", default=False, + help="Print the Correct HTML Code") + parser.add_argument("-L", "--library", default="AixLib", help="Library to test") + parser.add_argument("--wh_library", default="IBPSA", help="Library on whitelist") + parser.add_argument("--git-url", default="https://github.com/ibpsa/modelica-ibpsa.git", help="url repository") + + args = parser.parse_args() + from html_tidy_errors import HTML_Tidy + + HTML_Check = HTML_Tidy(package=args.single_package, + correct_overwrite=args.correct_overwrite, + correct_backup=args.correct_backup, + log=args.log, + font=args.font, + align=args.align, + correct_view=args.correct_view, + library=args.library, + wh_library=args.wh_library) + if args.correct_backup is True: + print("Create a Backup") + HTML_Check.run_files() + var = HTML_Check.run_files() + print(var) + elif args.correct_overwrite is True: + print("Overwrite the Library") + var = HTML_Check.run_files() + HTML = HTML_Tidy(package=args.single_package, + correct_overwrite=args.correct_overwrite, + correct_backup=args.correct_backup, + log=False, + font=args.font, + align=args.align, + correct_view=args.correct_view, + library=args.library, + wh_library=args.wh_library) + HTML.run_files() + elif args.correct_view is True: + print("Print the Correct HTML Code") + HTML_Check.run_files() + elif args.WhiteList is True: + from html_tidy_errors import HTML_whitelist + + whitelist = HTML_whitelist(wh_library=args.wh_library, git_url=args.git_url) + print(f'Create a whitelist of {args.wh_library} Library') + whitelist.create_whitelist() + elif args.correct_overwrite is False and args.correct_backup is False and args.log is False and args.correct_view is False: + print("please use -h or --help for help") diff --git a/bin/02_CITests/SyntaxTests/tidy-5.6.0-vc10-64b/bin/tidy.dll b/bin/CITests/03_SyntaxTests/tidy-5.6.0-vc10-64b/bin/tidy.dll similarity index 100% rename from bin/02_CITests/SyntaxTests/tidy-5.6.0-vc10-64b/bin/tidy.dll rename to bin/CITests/03_SyntaxTests/tidy-5.6.0-vc10-64b/bin/tidy.dll diff --git a/bin/02_CITests/SyntaxTests/tidy-5.6.0-vc10-64b/bin/tidy.exe b/bin/CITests/03_SyntaxTests/tidy-5.6.0-vc10-64b/bin/tidy.exe similarity index 100% rename from bin/02_CITests/SyntaxTests/tidy-5.6.0-vc10-64b/bin/tidy.exe rename to bin/CITests/03_SyntaxTests/tidy-5.6.0-vc10-64b/bin/tidy.exe diff --git a/bin/02_CITests/SyntaxTests/tidy-5.6.0-vc10-64b/include/tidy.h b/bin/CITests/03_SyntaxTests/tidy-5.6.0-vc10-64b/include/tidy.h similarity index 100% rename from bin/02_CITests/SyntaxTests/tidy-5.6.0-vc10-64b/include/tidy.h rename to bin/CITests/03_SyntaxTests/tidy-5.6.0-vc10-64b/include/tidy.h diff --git a/bin/02_CITests/SyntaxTests/tidy-5.6.0-vc10-64b/include/tidybuffio.h b/bin/CITests/03_SyntaxTests/tidy-5.6.0-vc10-64b/include/tidybuffio.h similarity index 100% rename from bin/02_CITests/SyntaxTests/tidy-5.6.0-vc10-64b/include/tidybuffio.h rename to bin/CITests/03_SyntaxTests/tidy-5.6.0-vc10-64b/include/tidybuffio.h diff --git a/bin/02_CITests/SyntaxTests/tidy-5.6.0-vc10-64b/include/tidyenum.h b/bin/CITests/03_SyntaxTests/tidy-5.6.0-vc10-64b/include/tidyenum.h similarity index 100% rename from bin/02_CITests/SyntaxTests/tidy-5.6.0-vc10-64b/include/tidyenum.h rename to bin/CITests/03_SyntaxTests/tidy-5.6.0-vc10-64b/include/tidyenum.h diff --git a/bin/02_CITests/SyntaxTests/tidy-5.6.0-vc10-64b/include/tidyplatform.h b/bin/CITests/03_SyntaxTests/tidy-5.6.0-vc10-64b/include/tidyplatform.h similarity index 100% rename from bin/02_CITests/SyntaxTests/tidy-5.6.0-vc10-64b/include/tidyplatform.h rename to bin/CITests/03_SyntaxTests/tidy-5.6.0-vc10-64b/include/tidyplatform.h diff --git a/bin/02_CITests/SyntaxTests/tidy-5.6.0-vc10-64b/lib/pkgconfig/tidy.pc b/bin/CITests/03_SyntaxTests/tidy-5.6.0-vc10-64b/lib/pkgconfig/tidy.pc similarity index 100% rename from bin/02_CITests/SyntaxTests/tidy-5.6.0-vc10-64b/lib/pkgconfig/tidy.pc rename to bin/CITests/03_SyntaxTests/tidy-5.6.0-vc10-64b/lib/pkgconfig/tidy.pc diff --git a/bin/02_CITests/SyntaxTests/tidy-5.6.0-vc10-64b/lib/tidy.lib b/bin/CITests/03_SyntaxTests/tidy-5.6.0-vc10-64b/lib/tidy.lib similarity index 100% rename from bin/02_CITests/SyntaxTests/tidy-5.6.0-vc10-64b/lib/tidy.lib rename to bin/CITests/03_SyntaxTests/tidy-5.6.0-vc10-64b/lib/tidy.lib diff --git a/bin/02_CITests/SyntaxTests/tidy-5.6.0-vc10-64b/lib/tidys.lib b/bin/CITests/03_SyntaxTests/tidy-5.6.0-vc10-64b/lib/tidys.lib similarity index 100% rename from bin/02_CITests/SyntaxTests/tidy-5.6.0-vc10-64b/lib/tidys.lib rename to bin/CITests/03_SyntaxTests/tidy-5.6.0-vc10-64b/lib/tidys.lib diff --git a/bin/CITests/04_api_script/README.md b/bin/CITests/04_api_script/README.md new file mode 100644 index 0000000000..bc73430ae8 --- /dev/null +++ b/bin/CITests/04_api_script/README.md @@ -0,0 +1,2 @@ +# What is it? +The python script api_githuy.py creates independently a pull request for the current branch or comments messages into a pull request. \ No newline at end of file diff --git a/bin/CITests/04_api_script/api_github.py b/bin/CITests/04_api_script/api_github.py new file mode 100644 index 0000000000..bcbd784e15 --- /dev/null +++ b/bin/CITests/04_api_script/api_github.py @@ -0,0 +1,209 @@ +import requests +import json +import argparse +import os +import sys +import time + +class GET_API_GITHUB(object): + + def __init__(self, github_repo, working_branch): + self.github_repo = github_repo + self.working_branch = working_branch + + def _get_pr_number(self): + url = f'https://api.github.com/repos/{self.github_repo}/pulls' + payload = {} + headers = { + 'Content-Type': 'application/json' + } + response = requests.request("GET", url, headers=headers, data=payload) + pull_request_json = response.json() + for pull in pull_request_json: + name = pull["head"].get("ref") + if name == self.working_branch: + return pull["number"] + + def _get_github_username(self): + branch = self.working_branch.replace("Correct_HTML_", "") + url = f'https://api.github.com/repos/{self.github_repo}/branches/{branch}' + payload = {} + headers = {} + response = requests.request("GET", url, headers=headers, data=payload) + branch = response.json() + commit = branch["commit"] + commit = commit["author"] + if commit is not None: + login = commit["login"] + return login + + def return_owner(self): + owner = self.github_repo.split("/") + return owner[0] + +class PULL_REQUEST_GITHUB(object): + + def __init__(self, github_repo, working_branch, github_token): + self.github_repo = github_repo + self.working_branch = working_branch + self.github_token = github_token + self.correct_branch = f'Correct_HTML_{self.working_branch}' + + def _post_comment_IBBSA_merge(self, owner, base_branch): + url = f'https://api.github.com/repos/{self.github_repo}/pulls' + #payload = '{\n \"title\": \"IBPSA Merge ' + self.working_branch + '\",\n \"body\": \"**Following you will find the instructions for the IBPSA merge:**\\n 1. Please pull this branch IBPSA_Merge to your local repository.\\n 2. As an additional saftey check please open the AixLib library in dymola and check whether errors due to false package orders may have occurred. You do not need to translate the whole library or simulate any models. This was already done by the CI.\\n 3. If you need to fix bugs or perform changes to the models of the AixLib, push these changes using this commit message to prevent to run the automatic IBPSA merge again: **`fix errors manually`**. \\n 4. You can also output the different reference files between the IBPSA and the AixLib using the CI or perform an automatic update of the referent files which lead to problems. To do this, use one of the following commit messages \\n **`Trigger CI - give different reference results`** \\n **`Trigger CI - Update reference results`** \\n The CI outputs the reference files as artifacts in GitLab. To find them go to the triggered pipeline git GitLab and find the artifacts as download on the right site. \\n 5. If the tests in the CI have passed successfully, merge the branch IBPSA_Merge to development branch. **Delete** the Branch ' + self.correct_branch + '\",\n \"head\": \"' + self.OWNER + ':' + self.correct_branch + '\",\n \"base\": \"' + self.working_branch + '\"\n \n}' + title = f'\"title\": \"IBPSA Merge\"' + body = f'\"body\":\"**Following you will find the instructions for the IBPSA merge:**\\n 1. Please pull this branch IBPSA_Merge to your local repository.\\n 2. As an additional saftey check please open the AixLib library in dymola and check whether errors due to false package orders may have occurred. You do not need to translate the whole library or simulate any models. This was already done by the CI.\\n 3. If you need to fix bugs or perform changes to the models of the AixLib, push these changes using this commit message to prevent to run the automatic IBPSA merge again: **`fix errors manually`**. \\n 4. You can also output the different reference files between the IBPSA and the AixLib using the CI or perform an automatic update of the referent files which lead to problems. To do this, use one of the following commit messages \\n **`ci_dif_ref`** \\n **`ci_update_ref`** \\n The CI outputs the reference files as artifacts in GitLab. To find them go to the triggered pipeline git GitLab and find the artifacts as download on the right site. \\n 5. If the tests in the CI have passed successfully, merge the branch IBPSA_Merge to development branch. **Delete** the Branch {self.working_branch}\"' + head = f'\"head\":\"{owner}:{self.working_branch}\"' + base = f'\"base\": \"{base_branch}\"' + message = f'\n {title},\n {body},\n {head},\n {base}\n' + payload = "{" + message + "}" + + headers = { + 'Authorization': 'Bearer '+self.github_token, + 'Content-Type': 'application/json' + } + response = requests.request("POST", url, headers=headers, data=payload) + return response + + def _post_pr_correct_html(self, owner): + branch = self.working_branch.replace("Correct_HTML_", "") + title = f'\"title\":\"Corrected HTML Code in branch {self.working_branch}\"' + body = f'\"body\":\"Merge the corrected HTML Code. After confirm the pull request, **pull** your branch to your local repository. **Delete** the Branch {self.working_branch}\"' + head = f'\"head\":\"{owner}:{self.working_branch}\"' + base = f'\"base\":\"{branch}\"' + message = f'\n {title},\n {body},\n {head},\n {base}\n' + url = f'https://api.github.com/repos/{self.github_repo}/pulls' + payload = "{"+message+"}" + headers = { + 'Authorization': 'Bearer ' + self.github_token, + 'Content-Type': 'application/json' + } + response = requests.request("POST", url, headers=headers, data=payload) + return response + + def _update_pr_assignees_correct_html(self, pr_number, assignees_owner): + url = f'https://api.github.com/repos/{self.github_repo}/issues/{str(pr_number)}' + assignees = f'\"assignees\":[\"{assignees_owner}\"]' + labels = f'\"labels\":[\"CI\", \"Correct HTML\"]' + payload = "{\r\n" + assignees + ",\r\n" + labels + "\r\n}" + headers = { + 'Authorization': 'Bearer ' + self.github_token, + 'Content-Type': 'application/json' + } + response = requests.request("PATCH", url, headers=headers, data=payload) + print(response.text.encode('utf8')) + print("User " + assignees_owner + " assignee to pull request Number " + str(pr_number)) + + def _update_pr_assignees_IPBSA_Merge(self, pr_number, assignees_owner): + url = f'https://api.github.com/repos/{self.github_repo}/issues/{str(pr_number)}' + assignees = f'\"assignees\":[\"{assignees_owner}\"]' + labels = f'\"labels\":[\"CI\", \"IBPSA_Merge\"]' + payload = "{\r\n" + assignees + ",\r\n" + labels + "\r\n}" + headers = { + 'Authorization': 'Bearer ' + self.github_token, + 'Content-Type': 'application/json' + } + response = requests.request("PATCH", url, headers=headers, data=payload) + print(f'User {assignees_owner} assignee to pull request Number {str(pr_number)}') + + + def _post_comment_regression(self, pr_number, page_url): + url = f'https://api.github.com/repos/{self.github_repo}/issues/{str(pr_number)}/comments' + message = f'Errors in regression test. Compare the results on the following page\\n {page_url}' + body = f'\"body\":\"{message}\"' + payload = "{"+body+"}" + headers = { + 'Authorization': 'Bearer ' + self.github_token, + 'Content-Type': 'application/json' + } + response = requests.request("POST", url, headers=headers, data=payload) + print(response.text) + + def _post_comment_show_plots(self, pr_number, page_url): + url = f'https://api.github.com/repos/{self.github_repo}/issues/{str(pr_number)}/comments' + message = f'Reference results have been displayed graphically and are created under the following page {page_url}' + payload = "{\"body\":\"" + message + "\"}" + headers = { + 'Authorization': 'Bearer ' + self.github_token, + 'Content-Type': 'application/json' + } + response = requests.request("POST", url, headers=headers, data=payload) + print(response.text) + + +if __name__ == '__main__': + parser = argparse.ArgumentParser(description="Set Github Environment Variables") # Configure the argument parser + check_test_group = parser.add_argument_group("Arguments to set Environment Variables") + check_test_group.add_argument("-CB", "--correct-branch", default ="${Newbranch}", help="Branch to correct your Code") + check_test_group.add_argument("-GR", "--github-repo", default="RWTH-EBC/AixLib", help="Environment Variable owner/RepositoryName" ) + check_test_group.add_argument('-WB', "--working-branch",default="${TARGET_BRANCH}", help="Your current working Branch") + check_test_group.add_argument("--base-branch", default="master", + help="your base branch (master or develpment)") + check_test_group.add_argument('-GT', "--github-token", default="${GITHUB_API_TOKEN}", help="Your Set GITHUB Token") + check_test_group.add_argument("--prepare-plot", help="Plot new models with new created reference files", action="store_true") + check_test_group.add_argument("--show-plot", help="Plot new models with new created reference files", + action="store_true") + check_test_group.add_argument("--post-pr-comment", help="Plot new models with new created reference files", + action="store_true") + check_test_group.add_argument("--create-pr", help="Plot new models with new created reference files", + action="store_true") + check_test_group.add_argument("--correct-html", help="Plot new models with new created reference files", + action="store_true") + check_test_group.add_argument("--ibpsa-merge", help="Plot new models with new created reference files", + action="store_true") + check_test_group.add_argument("--merge-request", help="Comment for a IBPSA Merge request", action="store_true") + check_test_group.add_argument('-GP', "--gitlab-page", default="${GITLAB_Page}", help="Set your gitlab page url") + args = parser.parse_args() # Parse the arguments + + from api_github import GET_API_GITHUB + from api_github import PULL_REQUEST_GITHUB + + if args.post_pr_comment is True: + get_api = GET_API_GITHUB(github_repo=args.github_repo, working_branch=args.working_branch) + pr_number = get_api._get_pr_number() + print(f'Setting pull request number: {pr_number}') + page_url = f'{args.gitlab_page}/{args.working_branch}/plots' + print(f'Setting gitlab page url: {page_url}') + pull_request = PULL_REQUEST_GITHUB(github_repo=args.github_repo, working_branch=args.working_branch, + github_token=args.github_token) + if args.prepare_plot is True: + pull_request._post_comment_regression(pr_number, page_url) + if args.show_plot is True: + pull_request._post_comment_show_plots(pr_number, page_url) + if args.create_pr is True: + if args.correct_html is True: + pull_request = PULL_REQUEST_GITHUB(github_repo=args.github_repo, working_branch=args.working_branch, + github_token=args.github_token) + get_api = GET_API_GITHUB(github_repo=args.github_repo, working_branch=args.working_branch) + owner = get_api.return_owner() + pr_response = pull_request._post_pr_correct_html(owner) + time.sleep(3) + pr_number = get_api._get_pr_number() + print(f'Setting pull request number: {pr_number}') + assignees_owner = get_api._get_github_username() + if assignees_owner is not None: + print(f'Setting login name: {assignees_owner}') + else: + assignees_owner = "ebc-aixlib-bot" + print(f'Setting login name: {assignees_owner}') + pull_request._update_pr_assignees_correct_html(pr_number, assignees_owner) + exit(0) + if args.ibpsa_merge is True: + pull_request = PULL_REQUEST_GITHUB(github_repo=args.github_repo, working_branch=args.working_branch, + github_token=args.github_token) + get_api = GET_API_GITHUB(github_repo=args.github_repo, working_branch=args.working_branch) + owner = get_api.return_owner() + base_branch = "development" + pr_response = pull_request._post_comment_IBBSA_merge(owner, base_branch) + time.sleep(3) + pr_number = get_api._get_pr_number() + print(f'Setting pull request number: {pr_number}') + assignees_owner = get_api._get_github_username() + if assignees_owner is not None: + print(f'Setting login name: {assignees_owner}') + else: + assignees_owner = "ebc-aixlib-bot" + print(f'Setting login name: {assignees_owner}') + pull_request._update_pr_assignees_IPBSA_Merge(pr_number, assignees_owner) + exit(0) \ No newline at end of file diff --git a/bin/CITests/04_api_script/api_slack.py b/bin/CITests/04_api_script/api_slack.py new file mode 100644 index 0000000000..56f183e03e --- /dev/null +++ b/bin/CITests/04_api_script/api_slack.py @@ -0,0 +1,456 @@ +import re +import json +import requests +from datetime import datetime +from datetime import date +import argparse +import time +import os + +class Slack_Notification(object): + + def __init__(self, github_token, slack_token, github_repo, base_branch): + self.slack_token = slack_token + self.github_token = github_token + self.github_repo = github_repo + self.base_branch = base_branch + self.url = f'https://api.github.com/repos/{github_repo}/branches' + + def _get_data(self, branch): # date of last commit + branch_url = self.url + "/" + branch + payload = {} + headers = { + 'Authorization': 'Bearer ' + self.github_token, + 'Content-Type': 'application/json' + } + response = requests.request("GET", branch_url, headers=headers, data=payload) + reponse_text = response.json() + commit = reponse_text["commit"] + + data_commit = commit["commit"] + author_commit = data_commit["author"] + try: + author_login = commit["author"] + login_name = author_login["login"] + except TypeError: + login_name = author_commit["name"] + return author_commit, login_name + + def _get_branches(self): # get a list of branches in repo + try: + url = f'{self.url}?per_page=100' + payload={} + headers = { + 'Authorization': 'Bearer ' + self.github_token, + 'Content-Type': 'application/json' + } + response = requests.request("GET", url, headers=headers, data=payload) + text = response.json() + branch_list = [] + for dic in text: + branch_list.append(dic["name"]) + return branch_list + except requests.ConnectionError as e: + print(e) + + def _local_time(self): + l_time = date.today() + return l_time + + def _get_time(self, commit): + date = commit["date"] + date = date[:date.find("T")] + time = datetime.strptime(date, '%Y-%m-%d').date() + return time + + def _get_name(self, commit): + name = commit["name"] + return name + + def _get_name_mail(self, commit): + email = commit["email"] + return email + + def _get_user_list(self): + url = "https://slack.com/api/users.list" + payload = {} + headers = { + 'Authorization': 'Bearer ' + self.slack_token + } + response = requests.request("GET", url, headers=headers, data=payload) + slack_user_list = response.json() + return slack_user_list + + def _get_slack_mail(self, slack_user_list): + slack_mail_id = {} + member_array = slack_user_list["members"] + for member in member_array: + profile = member["profile"] + slack_email = profile.get("email") + id = member.get("id") + if slack_email is None: + continue + slack_mail_id[slack_email] = id + return slack_mail_id + + def _get_slack_id(self, github_mail, slack_mail_id, name): + for slack_email in slack_mail_id: + if github_mail.find("@rwth-aachen.de") > -1: + if github_mail.replace("@", "@eonerc.").lower() == slack_email.lower(): + #print(f'Slack Email: {slack_email}') + id = slack_mail_id[slack_email] + #print(f'Slack id: {id}') + return id + for slack_email in slack_mail_id: + if github_mail.lower() == slack_email.lower(): + #print(f'Slack Email: {slack_email}') + id = slack_mail_id[slack_email] + #print(f'Slack id: {id}') + return id + for slack_email in slack_mail_id: + if github_mail[:github_mail.rfind("@")].lower() == slack_email[:slack_email.rfind("@")].lower(): + #print(f'Slack Email: {slack_email}') + id = slack_mail_id[slack_email] + #print(f'Slack id: {id}') + return id + print(f'Cannot find Slack ID of user: {name} \nSend Slack message to channel fg-modelica') + id = "CBZ9FJH27" + #id = "C02NXDEL1GD" + print(f'Slack channel fg-modelica-id: {id}') + return id + + + def _delete_branch(self, branch): + url = f'https://api.github.com/repos/{self.github_repo}/git/refs/heads/{branch}' + payload = {} + headers = { + 'Authorization': 'Bearer ' + self.github_token + } + response = requests.request("DELETE", url, headers=headers, data=payload) + + + def _get_pr_number(self, branch): + url = f'https://api.github.com/repos/{self.github_repo}/pulls' + payload = {} + headers = { + 'Authorization': 'Bearer ' + self.github_token, + 'Content-Type': 'application/json' + } + response = requests.request("GET", url, headers=headers, data=payload) + pull_request_json = response.json() + for pull in pull_request_json: + name = pull["head"].get("ref") + if name == branch: + return pull["number"] + + def _close_pr(self, pr_number): + url = f'https://api.github.com/repos/{self.github_repo}/issues/{str(pr_number)}' + state = f'\"state\":\"closed\"' + payload = "{\r\n" + state + "\r\n}" + headers = { + 'Authorization': 'Bearer ' + self.github_token, + 'Content-Type': 'application/json' + } + response = requests.request("PATCH", url, headers=headers, data=payload) + + def return_owner(self): + owner = self.github_repo.split("/") + return owner[0] + + def _comment_issue_without_pr(self, message_text, issue_number): + #body = f'\"body\":\"{message_text}\"' + + url = f'https://api.github.com/repos/{self.github_repo}/issues/{issue_number}/comments' + #payload = "{" + body + "}" + payload = json.dumps({"body": message_text}) + + headers = { + 'Authorization': 'Bearer ' + self.github_token, + 'Content-Type': 'application/javascript' + } + response = requests.request("POST", url, headers=headers, data=payload) + + + def _comment_issue(self, branch, time_dif, issue_number, link_pr): + message = f' The Branch {branch} has been inactive for more than {time_dif} days. ' \ + f'A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch.\nPull Request URL: {link_pr}' + url = f'https://api.github.com/repos/{self.github_repo}/issues/{issue_number}/comments' + payload = json.dumps({"body": message}) + headers = { + 'Authorization': 'Bearer ' + self.github_token, + 'Content-Type': 'application/javascript' + } + response = requests.request("POST", url, headers=headers, data=payload) + + + def _close_issue(self, issue_number): + url = f'https://api.github.com/repos/{self.github_repo}/issues/{issue_number}' + state = f'\"state\":\"closed\"' + payload = "{" + state + "}" + headers = { + 'Authorization': 'Bearer ' + self.github_token, + 'Content-Type': 'application/json' + } + response = requests.request("PATCH", url, headers=headers, data=payload) + + def _get_issues(self): + issue_list= [] + url = f'https://api.github.com/repos/{self.github_repo}/issues?per_page=100' + payload = {} + headers = { + 'Authorization': 'Bearer ' + self.github_token, + 'Content-Type': 'application/json' + } + response = requests.request("GET", url, headers=headers, data=payload) + issue_data = response.json() + for issue in issue_data: + try: + issue["pull_request"] + except KeyError: + issue_list.append(issue["number"]) + return issue_list + + + def _open_pr(self, branch, owner, time_dif): + url = f'https://api.github.com/repos/{self.github_repo}/pulls' + title = f'\"title\": \"The branch {branch} is closed because of too long inactivity.\"' + body = f'\"body\":\"The Branch {branch} has been inactive for more than {time_dif} days. A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch.\"' + head = f'\"head\":\"{owner}:{branch}\"' + base = f'\"base\": \"{self.base_branch}\"' + message = f'\n {title},\n {body},\n {head},\n {base}\n' + payload = "{" + message + "}" + headers = { + 'Authorization': 'Bearer ' + self.github_token, + 'Content-Type': 'application/json' + } + response = requests.request("POST", url, headers=headers, data=payload) + + return response.json() + + def _assignees_issue(self, assignees_owner, issue_number): + url = f'https://api.github.com/repos/{self.github_repo}/issues/{issue_number}/assignees' + assignees = f'\"assignees\":[\"{assignees_owner}\"]' + payload = "{" + assignees + "}" + headers = { + 'Authorization': 'Bearer ' + self.github_token, + 'Content-Type': 'application/json' + } + response = requests.request("POST", url, headers=headers, data=payload) + + def _update_pr_(self, pr_number, assignees_owner): + + url = f'https://api.github.com/repos/{self.github_repo}/issues/{str(pr_number)}' + assignees = f'\"assignees\":[\"{assignees_owner}\"]' + labels = f'\"labels\":[\"CI\"]' + payload = "{\r\n" + assignees + ",\r\n" + labels + "\r\n}" + headers = { + 'Authorization': 'Bearer ' + self.github_token, + 'Content-Type': 'application/json' + } + response = requests.request("PATCH", url, headers=headers, data=payload) + print("User " + assignees_owner + " assignee to pull request Number " + str(pr_number)) + + def _get_github_username(self, branch): + url = f'https://api.github.com/repos/{self.github_repo}/branches/{branch}' + payload = {} + headers = { + 'Authorization': 'Bearer ' + self.github_token, + 'Content-Type': 'application/json' + } + response = requests.request("GET", url, headers=headers, data=payload) + branch = response.json() + try: + commit = branch["commit"] + commit = commit["commit"] + committer = commit["committer"] + name = committer["name"] + if name is not None: + return name + except KeyError: + print(f'Github Username is unknown.') + + + def _check_pr_number(self,pr_number): + url = f'https://api.github.com/repos/{self.github_repo}/pulls/{pr_number}' + payload = {} + headers = { + 'Authorization': 'Bearer ' + self.github_token, + 'Content-Type': 'application/json' + } + response = requests.request("GET", url, headers=headers, data=payload) + json_text = response.json() + try: + pull_url = json_text["url"] + return pull_url + except KeyError: + print(f'Pull Request url is unknown.') + + + + def _post_message(self, channel_id, message_text): + import logging + from slack_sdk import WebClient # Import WebClient from Python SDK (github.com/slackapi/python-slack-sdk) + from slack_sdk.errors import SlackApiError + #client = WebClient(token=os.environ.get("SLACK_BOT_TOKEN")) + client = WebClient(token=self.slack_token) # WebClient instantiates a client that can call API methods + # When using Bolt, you can use either `app.client` or the `client` passed to listeners. + logger = logging.getLogger(__name__) + try: + result = client.chat_postMessage( # Call the chat.postMessage method using the WebClient + channel=channel_id, + text=message_text + ) + logger.info(result) + except SlackApiError as e: + logger.error(f"Error posting message: {e}") + +if __name__ == '__main__': + parser = argparse.ArgumentParser(description="Set Github Environment Variables") # Configure the argument parser + check_test_group = parser.add_argument_group("Arguments to set Environment Variables") + check_test_group.add_argument('-GT', "--github-token", default="${GITHUB_API_TOKEN}", help="Your Set GITHUB Token") + check_test_group.add_argument('-BB', "--base-branch", default="development", help="Your Set GITHUB Token") + check_test_group.add_argument('-ST', "--slack-token", default="${secrets.SLACK_BOT_TOKEN}", help="Your Set GITHUB Token") + check_test_group.add_argument("-GR", "--github-repo", default="SvenHinrichs/GitLabCI", + help="Environment Variable owner/RepositoryName") + args = parser.parse_args() # Parse the arguments + from api_slack import Slack_Notification + slack = Slack_Notification(github_token=args.github_token, slack_token=args.slack_token, github_repo=args.github_repo, base_branch=args.base_branch) + slack_user_list = slack._get_user_list() # Get a list with all slack users + slack_mail_id = slack._get_slack_mail(slack_user_list) # Write dictionary with slack_mail: Slack_id + local_time = slack._local_time() # get the local time + branch_list = slack._get_branches() # write a branch list of your repository + issue_number_list = slack._get_issues() # get a list with number of issues + artifacts_list = [] # List for github action artifacts + for branch in branch_list: + if branch == "development" or branch == "master": + continue + data_branch = slack._get_data(branch) # get Information of branch: {'name': '****', 'email': '****', 'date': '****'} + branch_information = data_branch[0] + assignees_owner = data_branch[1] + name = branch_information["name"] # get the name from the last user who pushed to the branch + github_mail = branch_information["email"] # get the email from the last user who pushed to the branch + last_push_time = slack._get_time(branch_information) # get the date of the last push + time_interval = str(local_time - last_push_time) # time interval between last push and the local time + if time_interval.find("days") > -1: + time_dif = int(time_interval[:time_interval.find("days")]) + if time_dif > 180: + if branch.find("Correct_HTML") > -1: + slack._delete_branch(branch) + continue + print("******************************") + time.sleep(3) + channel_id = slack._get_slack_id(github_mail, slack_mail_id, name) # get the slack ID from the last user who pushed to the branch, if not found fg-modelica-id + owner = slack.return_owner() + reponse = slack._open_pr(branch, owner, time_dif) # Open a pull request + + time.sleep(15) + pr_number = slack._get_pr_number(branch) # get the number of created pull request + pull_url = slack._check_pr_number(pr_number) # checks if the pull request with the number exists + + time.sleep(15) + if pull_url is None: + print(f'Cannot create Pull Request: {reponse}') + artifacts_list.append( + f'\n******************************\nName: {name}\nBranch: {branch}\nGitHub E-Mail: {github_mail}\nSlack_channel_ID: {channel_id}\nCannot create Pull Request: {reponse}\nThe branch {branch} has been inactive for more than {time_dif} days. ') + if str(reponse).find(f"'message': 'No commits between {args.base_branch} and {branch}'") > -1: + message_text = f'The branch {branch} has been inactive for more than {time_dif} days. ' \ + f'Cannot create a pull request, because there are no commits between {args.base_branch} and {branch}' \ + f'\nUser name: {name}' + print(f'\nName: {name}\nBranch: {branch}\nGitHub E-Mail: {github_mail}\nSlack_channel_ID: {channel_id}\n{message_text}') + slack._post_message(channel_id, message_text) # post message to slack user + + #### Issue + branch_numb_list = (re.findall('[0-9]*', branch)) # write the number of branch (e.g. issue1170_*** -> 1170) + for numb in branch_numb_list: + if numb.isdigit() is True: # get number of branch + for issue_number in issue_number_list: + if str(issue_number) == str(numb): # issue_number == branch_number + if assignees_owner is not None: + slack._assignees_issue(assignees_owner, issue_number) # Add assigneers to the branch + slack._comment_issue_without_pr(message_text, issue_number) # comment the issue (delte the branch) + time.sleep(5) + slack._close_issue(issue_number) # close issue + + time.sleep(15) + slack._delete_branch(branch) # delete branch + continue + if str(reponse).find(f"'message': 'You have exceeded a secondary rate limit and have been temporarily blocked from content creation. Please retry your request again later.'") > -1: + print(f'\nYou have exceeded a secondary rate limit and have been temporarily blocked from content creation. Please retry your request again later.\n') + exit(1) + + if assignees_owner is not None: + slack._update_pr_(pr_number, assignees_owner) # Update the pull request: Assignees and labels + + link_branch = f'https://github.com/{args.github_repo}/tree/{branch}' + link_pr = f'https://github.com/{args.github_repo}/pull/{str(pr_number)}' + message_text = f'The branch {branch} has been inactive for more than {time_dif} days. ' \ + f'A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch.' \ + f'\nUser name: {name}' \ + f'\nBranch URL: {link_branch}' \ + f'\nPull Request URL: {link_pr}' + print(f'\nName: {name}\nBranch: {branch}\nGitHub E-Mail: {github_mail}\nSlack_channel_ID: {channel_id}\n{message_text}') + + artifacts_list.append(f'\n******************************\nName: {name}\nBranch: {branch}\nGitHub E-Mail: {github_mail}\nSlack_channel_ID: {channel_id}\n{message_text}') + #### Issue + branch_numb_list = (re.findall('[0-9]*', branch)) # write the number of branch (e.g. issue1170_*** -> 1170) + for numb in branch_numb_list: + if numb.isdigit() is True: # get number of branch + for issue_number in issue_number_list: + if str(issue_number) == str(numb): # issue_number == branch_number + if assignees_owner is not None: + slack._assignees_issue(assignees_owner, issue_number) # Add assigneers to the branch + slack._comment_issue(branch, time_dif, issue_number, link_pr) # comment the issue (delte the branch) + + time.sleep(15) + slack._close_issue(issue_number) # close issue + + time.sleep(15) + slack._post_message(channel_id, message_text) # post message to slack user + + time.sleep(15) + if pull_url is not None: + slack._close_pr(pr_number) # close pull request + time.sleep(30) + slack._delete_branch(branch) # delete branch + else: + print(f'Cannot find pull request {pr_number}. The Branch {branch} will not be deleted.') + continue + + if time_dif > 90: + print("******************************") + if branch.find("Correct_HTML") > -1: + continue + time.sleep(3) + channel_id = slack._get_slack_id(github_mail, slack_mail_id, name) + link_branch = f'https://github.com/{args.github_repo}/tree/{branch}' + message_text = f'The branch {branch} has been inactive for more than {time_dif} days. The branch is automatically deleted after 180 days. If you want to keep the branch, add changes to the branch.' \ + f' A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch. ' \ + f'\nUser name: {name}' \ + f'\nBranch URL: {link_branch}' + print(f'\nName: {name}\nBranch: {branch}\nGitHub E-Mail: {github_mail}\nSlack_channel_ID: {channel_id}\n{message_text}') + artifacts_list.append( + f'\n******************************\nName: {name}\nBranch: {branch}\nGitHub E-Mail: {github_mail}\nSlack_channel_ID: {channel_id}\n{message_text}') + #### Issue + branch_numb_list = (re.findall('[0-9]*', branch)) # write the number of branch (e.g. issue1170_*** -> 1170) + for numb in branch_numb_list: + if numb.isdigit() is True: # get number of branch + for issue_number in issue_number_list: + if str(issue_number) == str(numb): # issue_number == branch_number + if assignees_owner is not None: + slack._assignees_issue(assignees_owner, issue_number) # Add assigneers to the branch + slack._comment_issue_without_pr(message_text, issue_number) # comment the issue (delte the branch) + time.sleep(5) + time.sleep(15) + slack._post_message(channel_id, message_text) + continue + else: + continue + + ''' + file = open(f'bin{os.sep}Configfiles{os.sep}ci_slack_branch_inactive_list.txt', "w") + for entry in artifacts_list: + file.write(entry) + file.close()''' + print("Check finished.") + + diff --git a/bin/CITests/05_Converter/README.md b/bin/CITests/05_Converter/README.md new file mode 100644 index 0000000000..ec5d40f857 --- /dev/null +++ b/bin/CITests/05_Converter/README.md @@ -0,0 +1,6 @@ +# What is it? +### lock_model +The script sets all models of the library for which a whitelist has been created to read-only mode. + +### google_charts +The script visualizes the deviation of failing models that failed the regression test. It also creates graphs of the generated values based on the reference files. \ No newline at end of file diff --git a/bin/CITests/05_Converter/google_charts.py b/bin/CITests/05_Converter/google_charts.py new file mode 100644 index 0000000000..d728879f8e --- /dev/null +++ b/bin/CITests/05_Converter/google_charts.py @@ -0,0 +1,627 @@ +import matplotlib.pyplot as plt +from matplotlib.widgets import CheckButtons +import numpy as np +import sys, difflib +import os +from git import Repo +from shutil import copyfile +import shutil +import pathlib +import glob +import pandas as pd +import argparse + +class Plot_Charts(object): + + def __init__(self, package, library): + self.package = package + self.library = library + sys.path.append('bin/CITests') # Set files for informations, templates and storage locations + from _config import chart_dir, chart_temp_file, index_temp_file, layout_temp_file, ch_file, new_ref_file, show_ref_file, update_ref_file + self.new_ref_file = new_ref_file + self.ch_file = ch_file + self.chart_temp_file = chart_temp_file # path for google chart template + self.index_temp_file = index_temp_file + self.layout_temp_file = layout_temp_file + self.f_log = f'{self.library}{os.sep}unitTests-dymola.log' # path for unitTest-dymola.log, important for errors + self.csv_file = f'reference.csv' + self.test_csv = f'test.csv' + self.show_ref_file = show_ref_file + self.update_ref_file = update_ref_file + self.chart_dir = chart_dir # path for layout index + self.temp_chart_path = f'{chart_dir}{os.sep}{self.package}' # path for every single package + self.funnel_path = f'{self.library}{os.sep}funnel_comp' + self.ref_path = f'{self.library}{os.sep}Resources{os.sep}ReferenceResults{os.sep}Dymola' + self.index_html_file = f'{self.temp_chart_path}{os.sep}index.html' + self.layout_html_file = f'{self.chart_dir}{os.sep}index.html' + self.green = '\033[0;32m' + self.CRED = '\033[91m' + self.CEND = '\033[0m' + + def _read_show_reference(self): + if os.path.isfile(self.show_ref_file) is False: + print(f'File {self.show_ref_file} directonary does not exist.') + exit(0) + else: + print(f'Plot results from file {self.show_ref_file}') + file = open(self.show_ref_file, "r") + lines = file.readlines() + ref_list = [] + for line in lines: + if len(line) == 0: + continue + else: + ref_list.append(f'{self.ref_path}{os.sep}{line.strip()}') + continue + file.close() + if len(ref_list) == 0: + print(f'No reference files in file {self.show_ref_file}. Please add here your reference files you want to update') + exit(0) + return ref_list + + def _prepare_data(self, results): # prepare data from reference results(.txt) + distriction_values = results[0] # Value Number with Legend + distriction_time = results[1] # Value time with time sequence + X_Axis = results[3] # Number value + time_list = [] + var_list = [] + value_list = [] + for y in X_Axis: + time_list.append(y) + for x in distriction_values: + t = ((distriction_values[x].split(","))) + var_list.append(t) + new = zip(time_list, zip(*var_list)) + result_set = list(new) + for a in result_set: + a = str(a) + a = a.replace("(", "") + a = a.replace("[", "") + a = a.replace("]", "") + a = a.replace(")", "") + a = a.replace("'", "") + a = a.replace("\\n", "") + value_list.append("[" + a + "]") + value_list = map(str, (value_list)) + return value_list + #def calculate_time_interval(self): + + + def _read_data(self, ref_file): # Read Reference results in AixLib\Resources\ReferenceResults\Dymola\${modelname}.txt + legend_List = [] + value_list = [] + distriction_values = {} + time_interval_list = [] + for line in open(ref_file, 'r'): + current_value = [] + if line.find("last-generated=") > -1: + continue + if line.find("statistics-simulation=") > -1: + continue + if line.find("statistics-initialization=") > -1: + continue + if line.find("time=") > -1: + time_int = line.split("=")[1] + time_int = time_int.split(",") + continue + values = line.split("=") + if len(values) < 2: + continue + legend = values[0] + numbers = values[1] + time_interval_steps = len(numbers.split(",")) + distriction_values[legend] = numbers + legend_List.append(legend) + number = numbers.split(",") + for n in number: + value = n.replace("[", "").lstrip() + value = value.replace("]", "") + value = float(value) + current_value.append(value) + value_list.append(current_value) + continue + first_time_interval = float((time_int[0].replace("[", "").lstrip())) + last_time_interval = float((time_int[len(time_int)-1].replace("]", "").lstrip())) + time_interval = last_time_interval/time_interval_steps + time = first_time_interval + for step in range(1, time_interval_steps+1, 1): + if time == first_time_interval: + time_interval_list.append(time) + time = time + time_interval + elif step == time_interval_steps: + time = time + time_interval + time_interval_list.append(time) + else: + time_interval_list.append(time) + time = time + time_interval + value_list.insert(0, time_interval_list) + value_list = list(map(list, zip(*value_list))) + return value_list, legend_List + + def _get_updated_reference_files(self): + if os.path.isfile(self.update_ref_file) is False: + print(f'File {self.update_ref_file} directonary does not exist.') + exit(0) + else: + print(f'Plot results from file {self.update_ref_file}') + file = open(self.update_ref_file, "r") + lines = file.readlines() + ref_list = [] + for line in lines: + line = line.strip() + if line.find(".txt") > -1 and line.find("_"): + ref_list.append(f'{self.ref_path}{os.sep}{line.strip()}') + continue + file.close() + return ref_list + + def _get_new_reference_files(self): + if os.path.isfile(self.new_ref_file) is False: + print(f'File {self.new_ref_file} directonary does not exist.') + exit(0) + else: + print(f'Plot results from file {self.new_ref_file}') + file = open(self.new_ref_file, "r") + lines = file.readlines() + ref_list = [] + for line in lines: + line = line.strip() + if line.find(".txt") > -1 and line.find("_"): + ref_list.append(f'{line.strip()}') + continue + return ref_list + + def _get_values(self, lines): + time_list = [] + measure_list = [] + for line in lines: # searches for values and time intervals + if line.find("last-generated=") > -1: + continue + if line.find("statistics-simulation=") > -1: + continue + if line.split("="): + line = line.replace("[", "") + line = line.replace("]", "") + line = line.replace("'", "") + values = (line.replace("\n", "").split("=")) + if len(values) < 2: + continue + else: + legend = values[0] + measures = values[1] + if legend.find("time") > -1: + time_str = f'{legend}:{measures}' + else: + measure_len = len(measures.split(",")) + measure_list.append(f'{legend}:{measures}') + return time_str, measure_list, measure_len + + def _get_time_int(self, time_list, measure_len): + + time_val = time_list.split(":")[1] + time_beg = time_val.split(",")[0] + time_end = time_val.split(",")[1] + time_int = float(time_end) - float(time_beg) + tim_seq = time_int / float(measure_len) + time_num = float(time_beg) + time_list = [] + for time in range(0, measure_len + 1): + time_list.append(time_num) + time_num = time_num + tim_seq + return time_list + + def _createFolder(self, directory): + try: + if not os.path.exists(directory): + os.makedirs(directory) + except OSError: + print(f'Error: Creating directory. {directory}') + + def _read_unitTest_numerical_log(self): + log_file = open(self.f_log, "r") + lines = log_file.readlines() + model_list = [] + for line in lines: + if line.find("*** Warning:") > -1: + if line.find("*** Warning: Numerical Jacobian in 'RunScript") > -1 and line.find(".mos") > -1: + model = line[line.rfind((os.sep)) :line.find(".mos")].lstrip() + model_list.append(model) + return model_list + + def _read_unitTest_log(self): # Read unitTest_log from regressionTest, write variable and modelname with difference + log_file = open(self.f_log, "r") + lines = log_file.readlines() + model_var_list = [] + for line in lines: + if line.find("*** Warning:") > -1: + if line.find(".mat") > -1: + model = line[line.find(("Warning:")) + 9:line.find(".mat")] # modelname + var = line[line.find((".mat:")) + 5:line.find("exceeds ")].lstrip() # variable name + model_var_list.append(f'{model}:{var}') + if line.find("*** Warning: Numerical Jacobian in 'RunScript") > -1 and line.find(".mos") > -1: + model = line[line.rfind(os.sep)+1:line.find(".mos")].lstrip() + var = "" + model_var_list.append(f'{model}:{var}') + if line.find("*** Warning: Failed to interpret experiment annotation in 'RunScript") > -1 and line.find(".mos") > -1: + model = line[line.rfind(os.sep)+1:line.find(".mos")].lstrip() + + var = "" + model_var_list.append(f'{model}:{var}') + + return model_var_list + + def _get_ref_file(self, model): + for file in os.listdir(self.ref_path): + if file.find(model) > -1: + return file + else: + continue + + def _sort_mo_var(self, dic): # Search for variables in referencefiles + mo_list = [] + var_mod_dic = {} + for i in dic: + mo_list.append(i) + for file in os.listdir(self.ref_path): + for l in mo_list: + if file.find(l) > -1: + var_mod_dic[self.ref_path + os.sep + file] = dic[l] + return var_mod_dic + + def _read_csv_funnel(self, url): # Read the differenz variables from csv_file and test_file + csv_file = f'{url.strip()}{os.sep}{self.csv_file}' + test_csv = f'{url.strip()}{os.sep}{self.test_csv}' + try: + var_model = pd.read_csv(csv_file) + var_test = pd.read_csv(test_csv) + temps = var_model[['x', 'y']] + d = temps.values.tolist() + c = temps.columns.tolist() + test_tmp = var_test[['x', 'y']] + e = test_tmp.values.tolist() + e_list = [] + for i in range(0, len(e)): + e_list.append((e[i][1])) + + result = zip(d, e_list) + result_set = list(result) + value_list = [] + for i in result_set: + i = str(i) + i = i.replace("(", "") + i = i.replace("[", "") + i = i.replace("]", "") + i = i.replace(")", "") + value_list.append("[" + i + "]") + return value_list + except pd.errors.EmptyDataError: + print(f'{csv_file} is empty') + + def _check_folder_path(self): + if os.path.isdir(self.funnel_path) is False: + print(f'Funnel directonary does not exist.') + else: + print(f'Search for results in {self.funnel_path}') + if os.path.isdir(self.temp_chart_path) is False: + if os.path.isdir(self.chart_dir) is False: + os.mkdir(self.chart_dir) + os.mkdir(self.temp_chart_path) + print(f'Save plot in {self.temp_chart_path}') + else: + print(f'Save plot in {self.temp_chart_path}') + + def _get_var(self, model): + folder = os.listdir(f'{self.funnel_path}') + var_list = [] + for ref in folder: + if ref[:ref.find(".mat")] == model: + var = ref[ref.rfind(".mat") + 5:] + var_list.append(var) + return var_list + + def _get_funnel_model(self, model): + folder = os.listdir(f'{self.library}{os.sep}funnel_comp') + funnel_list = [] + for ref in folder: + if ref.find(model) > -1: + funnel_list.append(ref) + return funnel_list + + def _mako_line_html_chart(self, model, var): # Load and read the templates, write variables in the templates + from mako.template import Template + if var == "": + path_list = os.listdir((f'{self.library}{os.sep}funnel_comp'.strip())) + for file in path_list: + if file[:file.find(".mat")] == model: + path_name = (f'{self.library}{os.sep}funnel_comp{os.sep}{file}'.strip()) + var = file[file.find(".mat") + 5:] + if os.path.isdir(path_name) is False: + print(f'Cant find folder: {self.CRED}{model}{self.CEND} with variable {self.CRED}{var}{self.CEND}') + else: + print(f'Plot model: {self.green}{model}{self.CEND} with variable:{self.green} {var}{self.CEND}') + value = Plot_Charts._read_csv_funnel(self, path_name) + mytemplate = Template(filename=self.chart_temp_file) # Render Template + hmtl_chart = mytemplate.render(values=value, var=[f'{var}_ref', var], model=model, + title=f'{model}.mat_{var}') + file_tmp = open(f'{self.temp_chart_path}{os.sep}{model}_{var.strip()}.html', "w") + file_tmp.write(hmtl_chart) + file_tmp.close() + else: + path_name = (f'{self.library}{os.sep}funnel_comp{os.sep}{model}.mat_{var}'.strip()) + if os.path.isdir(path_name) is False: + print(f'Cant find folder: {self.CRED}{model}{self.CEND} with variable {self.CRED}{var}{self.CEND}') + else: + print(f'Plot model: {self.green}{model}{self.CEND} with variable:{self.green} {var}{self.CEND}') + value = Plot_Charts._read_csv_funnel(self, path_name) + mytemplate = Template(filename=self.chart_temp_file) # Render Template + hmtl_chart = mytemplate.render(values=value, var=[f'{var}_ref', var], model=model, + title=f'{model}.mat_{var}') + file_tmp = open(f'{self.temp_chart_path}{os.sep}{model}_{var.strip()}.html', "w") + file_tmp.write(hmtl_chart) + file_tmp.close() + + def _mako_line_html_new_chart(self, ref_file, value_list, legend_List): # Load and read the templates, write variables in the templates + from mako.template import Template + if os.path.isfile(ref_file) is False: + print(f'Cant find folder: {self.CRED}{ref_file[ref_file.rfind(os.sep)+1:]}{self.CEND} with variables: {self.CRED}{legend_List}{self.CEND}') + else: + print(f'Plot model: {self.green}{ref_file[ref_file.rfind(os.sep)+1:]}{self.CEND} with variables:\n{self.green}{legend_List}{self.CEND}\n') + mytemplate = Template(filename=self.chart_temp_file) # Render Template + hmtl_chart = mytemplate.render(values=value_list, var=legend_List, model=ref_file, title=ref_file) + file_tmp = open(f'{self.temp_chart_path}{os.sep}{ref_file[ref_file.rfind(os.sep):].replace(".txt", ".html")}', "w") + file_tmp.write(hmtl_chart) + file_tmp.close() + + def _mako_line_ref_chart(self, model, var): # Load and read the templates, write variables in the templates + from mako.template import Template + + path_name = (f'{self.library}{os.sep}funnel_comp{os.sep}{model}.mat_{var}'.strip()) + + folder = os.path.isdir(path_name) + if folder is False: + print(f'Cant find folder: {self.CRED}{model}{self.CEND} with variable {self.CRED}{var}{self.CEND}') + else: + print(f'Plot model: {self.green}{model}{self.CEND} with variable:{self.green} {var}{self.CEND}') + value = Plot_Charts._read_csv_funnel(self, path_name) + + mytemplate = Template(filename=self.chart_temp_file) # Render Template + hmtl_chart = mytemplate.render(values=value, var=[f'{var}_ref', var], model=model, + title=f'{model}.mat_{var}') + file_tmp = open(f'{self.temp_chart_path}{os.sep}{model}_{var.strip()}.html', "w") + file_tmp.write(hmtl_chart) + file_tmp.close() + + def _create_index_layout(self): # Create a index layout from a template + from mako.template import Template + html_file_list = [] + for file in os.listdir(self.temp_chart_path): + print(file) + if file.endswith(".html") and file != "index.html": + html_file_list.append(file) + mytemplate = Template(filename=self.index_temp_file) + if len(html_file_list) == 0: + print(f'No html files') + os.rmdir(self.temp_chart_path) + exit(0) + else: + hmtl_chart = mytemplate.render(html_model=html_file_list) + file_tmp = open(self.index_html_file, "w") + file_tmp.write(hmtl_chart) + file_tmp.close() + print(f'Create html file with reference results.') + + def _create_layout(self): # Creates a layout index that has all links to the subordinate index files + package_list = [] + for folder in os.listdir(self.chart_dir): + if folder == "style.css" or folder == "index.html": + continue + else: + package_list.append(folder) + + from mako.template import Template + mytemplate = Template(filename=self.layout_temp_file) + if len(package_list) == 0: + print(f'No html files') + exit(0) + else: + hmtl_chart = mytemplate.render(single_package=package_list) + file_tmp = open(self.layout_html_file, "w") + file_tmp.write(hmtl_chart) + file_tmp.close() + + def _check_file(self): + file_check = os.path.isfile(self.f_log) + if file_check is False: + print(f'{self.f_log} does not exists.') + exit(1) + else: + print(f'{self.f_log} exists.') + + def _get_lines(self, ref_file): + ref = open(f'{ref_file}', "r") + lines = ref.readlines() + ref.close() + return lines + + def _get_funnel_comp(self): + folder = os.listdir(self.funnel_path) + return folder + +def _delte_folder(): + sys.path.append('bin/CITests') + from _config import chart_dir + if os.path.isdir(chart_dir) is False: + print(f'Directonary {chart_dir} does not exist.') + else: + folder_list = os.listdir(chart_dir) + print(folder_list) + for folder in folder_list: + if folder.find(".html") > -1: + os.remove(f'{chart_dir}{os.sep}{folder}') + continue + else: + shutil.rmtree(f'{chart_dir}{os.sep}{folder}') + + +if __name__ == '__main__': + green = "\033[0;32m" # Set colors + CRED = '\033[91m' + CEND = '\033[0m' + parser = argparse.ArgumentParser(description='Plot diagramms') # Initialize a Parser + unit_test_group = parser.add_argument_group("arguments to plot diagrams") + + unit_test_group.add_argument("--line-html", + help='plot a google html chart in line form', + action="store_true") + unit_test_group.add_argument("--create-layout", + help='plot a google html chart in line form', + action="store_true") + unit_test_group.add_argument("--line-matplot", + help='plot a google html chart in line form', + action="store_true") + unit_test_group.add_argument("-m", "--modellist", + metavar="Modelica.Model", + help="Plot this model") + unit_test_group.add_argument("--new-ref", + help="Plot new models with new created reference files", + action="store_true") + unit_test_group.add_argument("-pM", "--plotModel", + help="Plot this model", + action="store_true") + unit_test_group.add_argument("--all-model", + help='Plot all model', + action="store_true") + unit_test_group.add_argument("-e", "--error", + help='Plot only model with errors', + action="store_true") + unit_test_group.add_argument("--show-ref", + help='Plot only model with errors', + action="store_true") + unit_test_group.add_argument("--update-ref", + help='Plot only updated models', + action="store_true") + unit_test_group.add_argument("--show-package", + help='Plot only updated models', + action="store_true") + + unit_test_group.add_argument('-s', "--single-package", + metavar="Modelica.Package", + help="Test only the Modelica package Modelica.Package") + unit_test_group.add_argument("-L", "--library", default="AixLib", help="Library to test") + unit_test_group.add_argument('-fun', "--funnel-comp", + help="Take the datas from funnel_comp", + action="store_true") + unit_test_group.add_argument('-ref', "--ref-txt", + help="Take the datas from reference datas", + action="store_true") + + args = parser.parse_args() # Parse the arguments + from google_charts import Plot_Charts + charts = Plot_Charts(package=args.single_package, library=args.library) + + + if args.library is None: + print(f'Please set a library (e.g. --library AixLib') + exit(0) + else: + print(f'Setting library: {args.library}') + if args.single_package is None: + print(f'Please set a package (e.g. --single-package Airflow)') + exit(0) + else: + print(f'Setting package: {args.single_package}\n') + + if args.line_html is True: # Create Line chart html + _delte_folder() + if args.error is True: # Plot all data with an error + charts._check_file() + model_var_list = charts._read_unitTest_log() + charts._check_folder_path() + print(f'Plot line chart with different reference results.\n') + print(model_var_list) + for model_var in model_var_list: + list = model_var.split(":") + model = list[0] + var = list[1] + if args.funnel_comp is True: # Data from funnel comp + charts._mako_line_html_chart(model, var) + if args.ref_txt is True: # Data from reference files + ref_file = charts._get_ref_file(model) + if ref_file is None: + print(f'Referencefile for model {model} does not exist.') + continue + else: + lines = charts._get_lines(ref_file) + result = charts._get_values(lines) + time_list = result[0] + measure_list = result[1] + measure_len = result[2] + time_list = charts._get_time_int(time_list, measure_len) + charts._mako_line_ref_chart(model, var) + charts._create_index_layout() + charts._create_layout() + + if args.new_ref is True: # python bin/02_CITests/Converter/google_charts.py --line-html --new-ref --single-package AixLib --library AixLib + charts._check_folder_path() + ref_list = charts._get_new_reference_files() + print(f'\n\n') + for ref_file in ref_list: + if os.path.isfile(ref_file) is False: + print(f'File {ref_file} does not exist.') + continue + else: + print(f'\nCreate plots for reference result {ref_file}') + results = charts._read_data(ref_file) + value_list = results[0] + legend_List = results[1] + charts._mako_line_html_new_chart(ref_file, value_list, legend_List) + charts._create_index_layout() + charts._create_layout() + + if args.update_ref is True: # python bin/02_CITests/Converter/google_charts.py --line-html --update-ref --single-package AixLib --library AixLib + charts._check_folder_path() + ref_list = charts._get_updated_reference_files() + print(f'\n\n') + for ref_file in ref_list: + if os.path.isfile(ref_file) is False: + print(f'File {ref_file} does not exist.') + continue + else: + print(f'\nCreate plots for reference result {ref_file}') + results = charts._read_data(ref_file) + value_list = results[0] + legend_List = results[1] + charts._mako_line_html_new_chart(ref_file, value_list, legend_List) + charts._create_index_layout() + charts._create_layout() + + if args.show_ref is True: # python bin/02_CITests/Converter/google_charts.py --line-html --show-ref --single-package AixLib --library AixLib + charts._check_folder_path() + ref_list = charts._read_show_reference() + print(f'\n\n') + for ref_file in ref_list: + if os.path.isfile(ref_file) is False: + print(f'File {ref_file} does not exist.') + continue + else: + print(f'\nCreate plots for reference result {ref_file}') + results = charts._read_data(ref_file) + value_list = results[0] + legend_List = results[1] + + charts._mako_line_html_new_chart(ref_file, value_list, legend_List) + charts._create_index_layout() + charts._create_layout() + + if args.show_package is True: # python bin/02_CITests/Converter/google_charts.py --line-html --show-package --funnel-comp --single-package ThermalZone + charts._check_folder_path() + folder = charts._get_funnel_comp() + for ref in folder: + model = ref[:ref.find(".mat")] + var = ref[ref.rfind(".mat") + 5:] + if args.funnel_comp is True: # Data from funnel comp + charts._mako_line_html_chart(model, var) + charts._create_index_layout() + charts._create_layout() + if args.create_layout is True: + charts._create_layout() diff --git a/bin/CITests/05_Converter/lock_model.py b/bin/CITests/05_Converter/lock_model.py new file mode 100644 index 0000000000..f3b69641b6 --- /dev/null +++ b/bin/CITests/05_Converter/lock_model.py @@ -0,0 +1,130 @@ +import os +from pathlib import Path +import argparse +import sys + +class Lock_model(object): + + def __init__(self, library, wh_library): + self.library = library + self.wh_library = wh_library + sys.path.append('bin/CITests') + from _config import html_wh_file + self.html_wh_file = html_wh_file + + def _read_wh(self): # Read whitelist and return a list + wh = open(self.html_wh_file, "r") + wl_lines = wh.readlines() + wh.close() + return wl_lines + + def _sort_list(self, wl_lines): # Sort List of models + model_list = [] + for line in wl_lines: + if len(line) == 1: + continue + if line.find("package.mo") > -1: + continue + if line.find("package.order") > -1: + continue + if line.find("UsersGuide") > -1: + continue + else: + line = line.replace(self.wh_library, self.library) + mo = line.replace(".", os.sep, line.count(".")-1) + mo = mo.lstrip() + mo = mo.strip() + model_list.append(mo) + return model_list + + def _exist_file(self, file): # File exist + f = Path(file) + if f.is_file(): + return True + else: + return False + + def get_last_line(self, model): + flag = '__Dymola_LockedEditing="Model from IBPSA");' + model_part = [] + flag_tag = False + if Lock_model._exist_file(self, model) is True: + infile = open(model, "r") + for lines in infile: + model_part.append(lines) + if lines.find(flag) > -1: + flag_tag = True + infile.close() + return model_part, flag_tag + else: + print(f'\n************************************{model}\nFile does not exist.') + + + def lock_model(self, model, content): + mo = model[model.rfind(os.sep) + 1:model.rfind(".mo")] + + last_entry = content[len(content) - 1] + flag = ' __Dymola_LockedEditing="Model from IBPSA");' + old_html_flag = '"));' + new_html_flag = '"), \n' + flag + old = ');' + new = ', \n' + flag + replacements = {old_html_flag: new_html_flag, old: new} + + if last_entry.find(mo) > -1 and last_entry.find("end") > -1: + flag_lines = content[len(content) - 2] + if flag_lines.isspace() == True: + flag_lines = content[len(content) - 3] + del content[len(content) - 2] + if flag_lines.find(old_html_flag) > -1: + flag_lines = flag_lines.replace(old_html_flag, new_html_flag) + elif flag_lines.find(old) > -1: + flag_lines = flag_lines.replace(old, new) + del content[len(content) - 2] + content.insert(len(content) - 1, flag_lines) + return content + else: + flag_lines = content[len(content) - 1] + if flag_lines.find(old_html_flag) > -1: + flag_lines = flag_lines.replace(old_html_flag, new_html_flag) + elif flag_lines.find(old) > -1: + flag_lines = flag_lines.replace(old, new) + del content[len(content) - 1] + content.insert(len(content), flag_lines) + return content + + def write_lock_model(self, model, new_content): + print("lock object: " + model) + outfile = open(model, 'w') + new_content = (' '.join(new_content)) + outfile.write(new_content) + outfile.close() + +if __name__ == '__main__': + parser = argparse.ArgumentParser(description='Lock models.') + unit_test_group = parser.add_argument_group("arguments to run class Lock_model") + unit_test_group.add_argument("-L", "--library", default="AixLib", help="Library to test") + unit_test_group.add_argument("-wh-l", "--wh-library", help="Library to test") + args = parser.parse_args() + + from lock_model import Lock_model + lock = Lock_model(library=args.library, wh_library=args.wh_library) + + wl_lines = lock._read_wh() # read html whitelist (models from IBPSA) + mo_li = lock._sort_list(wl_lines) # Sort list of IPBSA Models + for model in mo_li: + if lock._exist_file(model) == True: + result = lock.get_last_line(model) + content = result[0] + if len(content) == 0: + continue + flag = result[1] + if flag == False: + new_content = lock.lock_model(model, content) + lock.write_lock_model(model, new_content) + else: + print(f'Already locked: {model}') + continue + else: + print(f'************************************\n{model}\nFile does not exist.') + continue diff --git a/bin/CITests/06_deploy/IBPSA_Merge/copy_conversion_script.py b/bin/CITests/06_deploy/IBPSA_Merge/copy_conversion_script.py new file mode 100644 index 0000000000..01def41449 --- /dev/null +++ b/bin/CITests/06_deploy/IBPSA_Merge/copy_conversion_script.py @@ -0,0 +1,158 @@ +import os +import sys +import shutil +import glob +import argparse +from natsort import natsorted + +def copy_mos(ibpsa_dir, dst): + ''' Copy the ConvertIBPSA mos Script ''' + if os.path.isdir(dst): + pass + else: + os.mkdir(dst) + mos_file_list = (glob.glob(ibpsa_dir)) + if len(mos_file_list) == 0: + print("Cant find a Conversion Script in IBPSA Repo") + exit(0) + l_ibpsa_conv = natsorted(mos_file_list)[(-1)] + l_ibpsa_conv = l_ibpsa_conv.replace("/", os.sep) + l_ibpsa_conv = l_ibpsa_conv.replace("\\", os.sep) + print(f'Latest IBPSA Conversion script: {l_ibpsa_conv}') + shutil.copy(l_ibpsa_conv, dst) + return l_ibpsa_conv + + +# Read the last aixlib conversion mos script +def read_aixlib_convert(aixlib_dir): + filelist = (glob.glob(aixlib_dir+os.sep+"*.mos")) + if len(filelist) == 0: + print("Cant find a Conversion Script in IBPSA Repo") + exit(0) + l_aixlib_conv = natsorted(filelist)[(-1)] + l_aixlib_conv = l_aixlib_conv.replace("/", os.sep) + l_aixlib_conv = l_aixlib_conv.replace("\\", os.sep) + print(f'Latest AixLib Conversion script: {l_aixlib_conv}') + return l_aixlib_conv + + +def create_convert_aixlib(l_ibpsa_conv, dst, l_aixlib_conv): # change the paths in the script from IBPSA.Package.model -> AixLib.Package.model + conv_number = l_aixlib_conv[l_aixlib_conv.find("ConvertAixLib_from_")+19:l_aixlib_conv.rfind(".mos")] + print(f'Latest conversion number: {conv_number}') # FROM 1.0.1_ TO _1.0.2 + old_from_numb = conv_number[:conv_number.find("_to_")] + old_to_numb = conv_number[conv_number.find("_to_") + 4:] # Update TO Number 1.0.2 old_to_numb == new_from_numb + first_numb = old_to_numb[:old_to_numb.find(".")] + sec_numb = int(old_to_numb[old_to_numb.find(".")+1:old_to_numb.rfind(".")]) + 1 + new_to_numb = f'{first_numb}.{sec_numb}.0' + #print(f'New TO_NUMBER: {new_to_numb}') # 1.1.0 + + new_conv_number = str(old_to_numb)+"_to_"+str(new_to_numb) # write new conversion number + #print(f'New conversion number: {new_conv_number}') # 1.0.2_to_1.1.0 + + file_new_conv = f'{dst}{os.sep}ConvertAixLib_from_{new_conv_number}.mos' + #print(f'New conversion script: {file_new_conv}') # Convertmos\ConvertAixLib_from_1.0.2_to_1.1.0.mos + + ibpsa_file = open(l_ibpsa_conv, "r") + aixlib_file = open(file_new_conv, "w+") + + for line in ibpsa_file: + if line.find("Conversion script for IBPSA library") > -1: + aixlib_file.write(line) + elif line.find("IBPSA") > - 1: + aixlib_file.write(line.replace("IBPSA", "AixLib")) + else: + aixlib_file.write(line) + ibpsa_file.close() + aixlib_file.close() + return file_new_conv, old_to_numb, old_from_numb, new_to_numb + +def copy_aixlib_mos(file_new_conv,aixlib_dir, dst): + new_conversion_script = shutil.copy(file_new_conv, aixlib_dir) + shutil.rmtree(dst) + return new_conversion_script + +def compare_conversions(l_ibpsa_conv, l_aixlib_conv): + + result = True + with open(l_ibpsa_conv) as file_1: + file_1_text = file_1.readlines() + with open(l_aixlib_conv) as file_2: + file_2_text = file_2.readlines() + for line1, line2 in zip(file_1_text, file_2_text): + if line1 == line2.replace("AixLib", "IBPSA"): + continue + else: + #print(f'Different Content:\n{l_ibpsa_conv}: {line1}\n{l_aixlib_conv}: {line2} ') + result = False + return result + + +def _read_package(): + file = open(f'AixLib{os.sep}package.mo', "r") + list = [] + for line in file: + if line.find("conversion(from(") > -1: + list.append(line) + counter = 1 + continue + if line.find('.mos")),') > -1 and counter == 1: + version_number = line[line.find("_to_")+4:line.find(".mos")] + return version_number + +def add_conv_to_package(l_aixlib_conv, new_conversion_script, old_to_numb, old_from_numb, new_to_numb): + l_aixlib_conv = l_aixlib_conv.replace('\\','/') + #print(f'old_to_numb_ {old_to_numb}') + #print(f'old_from_numb {old_from_numb}') + #print(f'new_to_numb {new_to_numb}') + new_conversion_script = new_conversion_script.replace('\\','/') + file = open(f'AixLib{os.sep}package.mo', "r") + list = [] + for line in file: + if line.find("version") == 0 or line.find('script="modelica://') == 0: + list.append(line) + continue + if line.find(f' version = "{old_to_numb}",') > -1: + list.append(line.replace(old_to_numb, new_to_numb)) + continue + if line.find(f'{l_aixlib_conv}') > -1: + list.append(line.replace(")),", ",")) + list.append(f' version="{old_to_numb}",\n') + list.append(f' script="modelica://{new_conversion_script}")),\n') + continue + else: + list.append(line) + continue + file.close() + pack = open(f'AixLib{os.sep}package.mo', "w") + for i in list: + pack.write(i) + pack.close() + +if __name__ == '__main__': + parser = argparse.ArgumentParser(description = "Set Github Environment Variables") + check_test_group = parser.add_argument_group("Arguments to set Environment Variables") + check_test_group.add_argument("-dst", "--dst", default ="Convertmos", help="temp folder") + check_test_group.add_argument("-ad", "--aixlib-dir", default="AixLib\\Resources\\Scripts", help="path to the aixlib scripts" ) + check_test_group.add_argument('-id',"--ibpsa-dir",default='modelica-ibpsa\\IBPSA\\Resources\\Scripts\\Dymola\\ConvertIBPSA_*', help="path to the ibpsa scripts") + # Parse the arguments + args = parser.parse_args() + l_ibpsa_conv = copy_mos(args.ibpsa_dir, args.dst) # latest conversion script IBPSA + l_aixlib_conv = read_aixlib_convert(args.aixlib_dir) # latest conversion Script AixLib + result = compare_conversions(l_ibpsa_conv, l_aixlib_conv) # Compare latest aixlib and IBPSA script + if result is True: + print(f'The latest aixlib conversion script {l_aixlib_conv} is up to date with IBPSA conversion script {l_ibpsa_conv}') + if result is False: + conv_data = create_convert_aixlib(l_ibpsa_conv, args.dst, l_aixlib_conv) + file_new_conv = conv_data[0] + old_to_numb = conv_data[1] + old_from_numb = conv_data[2] + new_to_numb = conv_data[3] + if file_new_conv is None: + print("please check when the last merge took place") + shutil.rmtree(args.dst) + else: + new_conversion_script = copy_aixlib_mos(file_new_conv, args.aixlib_dir, args.dst) + add_conv_to_package(l_aixlib_conv, new_conversion_script, old_to_numb, old_from_numb, new_to_numb) + print(f'New Aixlib Conversion skrip was created: {file_new_conv}') + + diff --git a/bin/CITests/06_deploy/IBPSA_Merge/correct_userguide.py b/bin/CITests/06_deploy/IBPSA_Merge/correct_userguide.py new file mode 100644 index 0000000000..ff34243955 --- /dev/null +++ b/bin/CITests/06_deploy/IBPSA_Merge/correct_userguide.py @@ -0,0 +1,27 @@ +import os +import argparse + +def folder_userguide(aixlib_dir): + for root, dirs, files in os.walk(aixlib_dir): + if root[root.rfind(os.sep)+1:] == "UsersGuide": + for file in files: + if file == "package.order": + order_file = root+os.sep+file + f = open(order_file, "r") + lines = f.readlines() + f.close() + new_order_file = open (order_file, "w") + for line in lines: + if line.strip("\n") != "UsersGuide": + new_order_file.write(line) + print(line) + new_order_file.close() + + + +if __name__ == '__main__': + parser = argparse.ArgumentParser(description="Set Github Environment Variables") + check_test_group = parser.add_argument_group("Arguments to set Environment Variables") + check_test_group.add_argument("-ad", "--aixlib-dir", default="AixLib", help="path to the aixlib scripts") + args = parser.parse_args() + folder_userguide(args.aixlib_dir) \ No newline at end of file diff --git a/bin/CITests/06_deploy/IBPSA_Merge/diff_reference.py b/bin/CITests/06_deploy/IBPSA_Merge/diff_reference.py new file mode 100644 index 0000000000..d94ef9d145 --- /dev/null +++ b/bin/CITests/06_deploy/IBPSA_Merge/diff_reference.py @@ -0,0 +1,176 @@ + +import numpy as np +import sys, difflib +import os +from git import Repo +from shutil import copyfile +import shutil +import pathlib +import glob + + + + + + +class Return_diff_files(object): + + def __init__(self, library, wh_library): + self.library = library + self.wh_library = wh_library + + sys.path.append('bin/CITests') + from _config import ref_file_dir, new_ref_file, resource_dir, artifacts_dir + self.artifacts_dir = artifacts_dir + self.ref_file_dir = ref_file_dir + self.new_ref_file = new_ref_file + self.resource_dir = resource_dir + self.path_lib_script = f'{self.library}{os.sep}{self.resource_dir}' + self.path_wh_lib_script = f'modelica-ibpsa{os.sep}{self.wh_library}{os.sep}{self.resource_dir}' + + self.diff_ref_dir = f'{self.artifacts_dir}{os.sep}diff_ref' + self.diff_mos_dir = f'{self.artifacts_dir}{os.sep}diff_mos' + self.new_mos_dir = f'{self.artifacts_dir}{os.sep}new_mos' + + def _CloneRepository(self): + git_url = "https://github.com/ibpsa/modelica-ibpsa.git" + repo_dir = "modelica-ibpsa" + if os.path.exists(repo_dir): + print(f'{self.wh_library} folder exists already!') + else: + print(f'Clone {self.wh_library} Repository.') + repo = Repo.clone_from(git_url, repo_dir) + + def _diff_mos(self): + lib_mos_list = glob.glob(f'{self.path_lib_script}{os.sep}**/*.mos', recursive=True) + wh_mos_list = glob.glob(f'{self.path_wh_lib_script}{os.sep}**/*.mos', recursive=True) + wh_lib_list = [] + lib_list = [] + for wh_mos in wh_mos_list: # Give double mos files + wh_lib_list.append(wh_mos.split(os.sep)[-1]) + for lib_mos in lib_mos_list: + lib_list.append(lib_mos.split(os.sep)[-1]) + set_lib = set(lib_list) + set_wh_lib = set(wh_lib_list) + inter_set = set_lib.intersection(set_wh_lib) + mos_list = list(inter_set) + for mos in mos_list: + lib_list = glob.glob(f'{self.path_lib_script}{os.sep}**/*{os.sep}{mos}', recursive=True) + wh_lib_list = glob.glob(f'{self.path_wh_lib_script}{os.sep}**/*{os.sep}{mos}', recursive=True) + for lib_mos in lib_list: + ibpsa = f'modelica-ibpsa{os.sep}{lib_mos.replace(self.library, self.wh_library)}' + result = f'{self.diff_mos_dir}{os.sep}{lib_mos}' + result = result.replace(self.path_lib_script, "") + #createFolder(result[:result.rfind(os.sep)]) + output_file = open(result, "w") + input_lib_file = open(aix, "r") + input_wh_lib_file = open(ibpsa, "r") + lib_line = input_lib_file.readline() + wh_lib_line = (input_wh_lib_file.readline()).replace(self.wh_library, self.library) + while lib_line != "" or wh_lib_line != "": + if lib_line != wh_lib_line: + output_file.write(f'{self.library}: {lib_line}') + output_file.write(f'{self.wh_library: {wh_lib_line}}\n') + line1 = inputFile1.readline() + line3 = inputFile2.readline() + input_lib_file.close() + input_wh_lib_file.close() + output_file.close() + if os.stat(result).st_size == 0: + os.remove(result) + + new_ref_list =(set_lib ^ set_wh_lib) & inter_set + new_mos_list = [] + for ref in new_ref_list: + if ref.find("ConvertIBPSA") > -1: + continue + else: + ibpsa = glob.glob(self.path_wh_lib_script+os.sep+'**/*'+os.sep+i, recursive=True) + new_mos_list.append(ibpsa) + source = self.new_mos_dir +os.sep+i + for l in ibpsa: + shutil.copy2(l,source) + + + def _diff_ref(self, path_aix, path_ibpsa, path_diff, path_new): + aix_ref_files = os.listdir(path_aix) + ibpsa_ref_files = os.listdir(path_ibpsa) + ibpsa_list = [] + for i in ibpsa_ref_files: # Give double reference files + i = i.replace(self.wh_library, self.library) + ibpsa_list.append(i) + set1 = set(aix_ref_files) + set2 = set(ibpsa_list) + set3 = set1.intersection(set2) + list3 = list(set3) + for f in list3: + aix_ref = f + ibpsa_ref = f.replace(self.library, self.wh_library) + aix_ref = path_aix+os.sep+ aix_ref + ibpsa_ref = path_ibpsa+os.sep+ibpsa_ref + result = path_diff +os.sep+f + outputFile = open(result, "w") + inputFile1 = open(aix_ref, "r") + inputFile2 = open(ibpsa_ref, "r") + line1 = inputFile1.readline() + line2 = inputFile2.readline() + while line1 != "" or line2 != "": + if line1 != line2: + outputFile.write(f'{self.library}: {line1}') + outputFile.write(f'{self.wh_library}: {line2} \n') + line1 = inputFile1.readline() + line2 = inputFile2.readline() + inputFile1.close() + inputFile2.close() + outputFile.close() + for root, dirs, files in os.walk(path_diff): + for name in files: + filename = os.path.join(root,name) + if os.stat(filename).st_size == 0: + os.remove(filename) + diff_ref = os.listdir(path_diff) + new_ref =(set1^set2)&set2 + for i in new_ref: + i = i.replace(self.library, self.wh_library) + source = path_ibpsa+os.sep+i + shutil.copy2(source, path_new) + new_ref =os.listdir(path_new) + return diff_ref, new_ref + + def _add_new_ref(self, diff_ref,new_ref,path_aix,path_ibpsa,path_new,path_diff): + new_ref_list = [] + for i in new_ref: + source = path_new+os.sep+i + ibp = path_new+os.sep+i.replace(self.wh_library, self.library) + file = pathlib.Path(ibp) + if file.exists(): + new_ref_list.append(file) + continue + if i.find(self.wh_library) > -1 : + i = i.replace(self.wh_library, self.library) + i = path_new+os.sep+i + os.rename(source, i) + else: + i = path_new+os.sep+i + new_ref_list.append(i) + for i in new_ref_list: # Copy New Files + path = path_aix + shutil.copy2(i, path) + for i in diff_ref: + path = path_aix + i = i.replace(self.library, self.wh_library) + source = path_ibpsa+os.sep+i + target = path+os.sep+i.replace(self.wh_library, self.library) + shutil.copy2(source, target) + + +if __name__ == '__main__': + createFolder(path_new_mos) + _CloneRepository() + results = diff_ref(path_aix, path_ibpsa, path_diff, path_new) + diff_ref = results[0] + new_ref = results[1] + add_new_ref(diff_ref, new_ref, path_aix, path_ibpsa, path_new, path_diff) + mos_results = diff_mos(path_aix_mos, path_ibpsa_mos, path_diff_mos, path_new_mos) + removeRoot = True + removeEmptyFolders(path_diff_mos, removeRoot) diff --git a/bin/CITests/06_deploy/README.md b/bin/CITests/06_deploy/README.md new file mode 100644 index 0000000000..da7d8beef6 --- /dev/null +++ b/bin/CITests/06_deploy/README.md @@ -0,0 +1,3 @@ +# What is it? +Copied a new library into the current library. Likewise, a new conversion script is created and included in the package.mo. +The last step is to update the whitelists and set the models to read-only mode. \ No newline at end of file diff --git a/bin/CITests/06_deploy/deploy_artifacts.py b/bin/CITests/06_deploy/deploy_artifacts.py new file mode 100644 index 0000000000..2e2a0fb356 --- /dev/null +++ b/bin/CITests/06_deploy/deploy_artifacts.py @@ -0,0 +1,87 @@ +import os +import codecs +import sys +import shutil +import argparse +import glob + +class Deploy_Artifacts(object): + + def __init__(self, library): + self.library = library + self.folder = 'Referencefiles' + self.green = '\033[0;32m' + self.CRED = '\033[91m' + self.CEND = '\033[0m' + sys.path.append('bin/CITests') + from _config import new_ref_file, update_ref_file + self.new_ref_file = new_ref_file + self.update_ref_file = update_ref_file + + def _get_changed_ref(self): # list all changed reference results to a list + changed_file = codecs.open(self.new_ref_file, "r", encoding='utf8') + lines = changed_file.readlines() + changed_ref = [] + for line in lines: + if line.find("txt") > -1 and line.find("ReferenceResults") > -1 and line.find("Resources") > -1: + line = line.strip() + ref = line[line.find(self.library):line.rfind("txt") + 3] + changed_ref.append(ref) + continue + else: + continue + changed_file.close() + return changed_ref + + def _get_update_ref(self): + updated_file = codecs.open(self.update_ref_file, "r", encoding='utf8') + lines = updated_file.readlines() + updated_ref = [] + for line in lines: + if line.find("txt") > -1: + line = line.strip() + updated_ref.append(f'{self.library}{os.sep}Resources{os.sep}ReferenceResults{os.sep}Dymola{os.sep}{line.strip()}') + continue + else: + continue + updated_file.close() + return updated_ref + + def copy_txt(self, changed_ref): # Copy reference results from AixLib\Resources\ReferenceResults\Dymola\* to Referencefiles\\* + if os.path.exists(self.folder) is False: + os.mkdir(self.folder) + else: + files = os.listdir(self.folder) + for file in files: + os.remove(f'{self.folder}{os.sep}{file}') + for ref in changed_ref: + destination = self.folder + os.sep + ref[ref.rfind(os.sep):] + try: + shutil.copy(ref, destination) + continue + except FileNotFoundError: + print(f'{self.CRED}Cannot find folder:{self.CEND} {destination}') + + +if __name__ == '__main__': + parser = argparse.ArgumentParser(description='deploy artifacts') + unit_test_group = parser.add_argument_group("arguments to run deploy artifacts") + unit_test_group.add_argument("-L", "--library", default="AixLib", help="Library to test") + unit_test_group.add_argument("--ref", help='Deploy new reference files', action="store_true") + unit_test_group.add_argument("--new-ref", + help="Plot new models with new created reference files", + action="store_true") + unit_test_group.add_argument("--updated-ref", + help="Plot new models with new created reference files", + action="store_true") + args = parser.parse_args() + from deploy_artifacts import Deploy_Artifacts + + if args.ref is True: + ref_artifact = Deploy_Artifacts(library=args.library) + if args.new_ref is True: # python bin/02_CITests/deploy/deploy_artifacts.py --library AixLib --ref --new-ref + changed_ref = ref_artifact._get_changed_ref() + ref_artifact.copy_txt(changed_ref) + if args.updated_ref is True: # python bin/02_CITests/deploy/deploy_artifacts.py --library AixLib --ref --updated-ref + updated_ref = ref_artifact._get_update_ref() + ref_artifact.copy_txt(updated_ref) \ No newline at end of file diff --git a/bin/CITests/07_ci_templates/README.md b/bin/CITests/07_ci_templates/README.md new file mode 100644 index 0000000000..00a3714078 --- /dev/null +++ b/bin/CITests/07_ci_templates/README.md @@ -0,0 +1,11 @@ +## Create your own templates + +Execute the `python bin/CITests/07_ci_templates/ci_templates.py` command in the root directory of your repository. +The script will then ask you which tests and packages to check, adapting to your library. + +Also the variables in the `bin/CiTests/_config.py` should be checked before. +Important are the variables `image_name` and `variable_main_list`. These must be adapted to the current repo. The settings are then stored under `bin\Setting\CI_setting.toml`. +If changes should be made in the settings, these can be made in the toml file. + +Then the command `python bin/CITests/07_ci_templates/ci_templates.py --setting` must be executed. + diff --git a/bin/CITests/07_ci_templates/ci_templates.py b/bin/CITests/07_ci_templates/ci_templates.py new file mode 100644 index 0000000000..255548326c --- /dev/null +++ b/bin/CITests/07_ci_templates/ci_templates.py @@ -0,0 +1,564 @@ +import pandas as pd +import os +from mako.template import Template +import sys +import argparse +import toml + +class CI_yml_templates(object): + + def __init__(self, library, package_list, dymolaversion, wh_library, git_url, wh_path, python_version): + self.library = library + self.package_list = package_list + self.dymolaversion = dymolaversion + self.wh_library = wh_library + self.git_url = git_url + self.wh_path = wh_path + self.python_version = python_version + # except commits + self.update_ref_commit = "ci_update_ref" + self.show_ref_commit = "ci_show_ref" + self.dif_ref_commit = "ci_dif_ref" + self.html_commit = "ci_correct_html" + self.create_wh_commit = "ci_create_whitelist" + self.create_html_wh_commit = "ci_create_html_whitelist" + self.simulate_commit = "ci_simulate" + self.check_commit = "ci_check" + self.regression_test_commit = "ci_regression_test" + self.ci_html_commit = "ci_html" + self.ci_merge_except_commit = "fix errors manually" + self.ci_setting_commit = "ci_setting" + self.bot_merge_commit = "Update WhiteList_CheckModel.txt and HTML_IBPSA_WhiteList.txt" + self.bot_push_commit = "Automatic push of CI with new regression reference files. Please pull the new files before push again." + self.bot_create_ref_message = "New reference files were pushed to this branch. The job was successfully and the newly added files are tested in another commit." + self.bot_update_wh_commit = "Update or created new whitelist. Please pull the new whitelist before push again. [skip ci]" + self.bot_create_ref_commit = "Automatic push of CI with new regression reference files.Please pull the new files before push again. Plottet Results ${GITLAB_Page}/${TARGET_BRANCH}/plots/" + self.ci_trigger_ibpsa_commit = "ci_trigger_ibpsa_merge" + self.except_commit_list = [self.update_ref_commit, self.dif_ref_commit, self.html_commit, self.create_wh_commit, + self.bot_push_commit, self.bot_create_ref_message, self.show_ref_commit, self.regression_test_commit, self.check_commit, self.simulate_commit, + self.create_html_wh_commit, self.ci_html_commit, self.ci_setting_commit] + # except branches + if self.wh_library is None: + self.merge_branch = None + else: + self.merge_branch = self.wh_library + "_Merge" + + sys.path.append('bin/CITests') # files + from _config import ch_file, wh_file, reg_temp_file, write_temp_file, sim_temp_file, page_temp_file, ibpsa_temp_file, main_temp_file, \ + temp_dir, exit_file, new_ref_file, chart_dir, image_name, variable_main_list, main_yml_file, stage_list, eof_file, html_temp_file, html_wh_file,\ + style_check_temp_file, setting_file, setting_temp_file + self.ch_file = ch_file.replace(os.sep, "/") + self.wh_file = wh_file.replace(os.sep, "/") + self.eof_file = eof_file.replace(os.sep, "/") + self.html_wh_file = html_wh_file.replace(os.sep, "/") + + self.reg_temp = reg_temp_file.replace(os.sep, "/") + self.write_temp = write_temp_file.replace(os.sep, "/") + self.sim_temp = sim_temp_file.replace(os.sep, "/") + self.page_temp = page_temp_file.replace(os.sep, "/") + self.ibpsa_temp = ibpsa_temp_file.replace(os.sep, "/") + self.main_temp = main_temp_file.replace(os.sep, "/") + self.temp_dir = temp_dir.replace(os.sep, "/") + self.exit_file = exit_file.replace(os.sep, "/") + self.new_ref_file = new_ref_file.replace(os.sep, "/") + self.chart_dir = chart_dir.replace(os.sep, "/") + self.html_temp_file = html_temp_file.replace(os.sep, "/") + self.style_check_temp_file = style_check_temp_file.replace(os.sep, "/") + self.setting_temp_file = setting_temp_file.replace(os.sep, "/") + self.main_yml = main_yml_file + self.setting_file = setting_file + + self.image_name = image_name + #self.project_name = project_name + self.variable_main_list = variable_main_list + self.stage_list = stage_list + + + def _write_page_template(self): + mytemplate = Template(filename=self.page_temp) + yml_text = mytemplate.render() + yml_tmp = open(self.page_temp.replace(".txt", ".gitlab-ci.yml"), "w") + yml_tmp.write(yml_text) + yml_tmp.close() + + def _write_setting_template(self): + mytemplate = Template(filename=self.setting_temp_file) + yml_text = mytemplate.render(GITHUB_PRIVATE_KEY="${GITHUB_PRIVATE_KEY}", GITLAB_USER_EMAIL="${GITLAB_USER_EMAIL}", + GITLAB_USER_NAME="${GITLAB_USER_NAME}", Github_Repository="${Github_Repository}", + ci_setting_commit=self.ci_setting_commit, python_version=self.python_version) + yml_tmp = open(self.setting_temp_file.replace(".txt", ".gitlab-ci.yml"), "w") + yml_tmp.write(yml_text) + yml_tmp.close() + + def _write_html_template(self): + if self.wh_library is not None: + merge_branch = "- " + self.merge_branch + git = f'--git-url {self.git_url} --wh-library {self.wh_library}' + else: + git = "" + merge_branch = "" + + + mytemplate = Template(filename=self.html_temp_file) + yml_text = mytemplate.render(merge_branch=merge_branch, + except_commit_list=self.except_commit_list, GITLAB_USER_NAME="${GITLAB_USER_NAME}", + GITLAB_USER_EMAIL="${GITLAB_USER_EMAIL}", CI_PROJECT_NAME="${CI_PROJECT_NAME}", + Github_Repository="${Github_Repository}", exit_file=self.exit_file, + GITHUB_PRIVATE_KEY="${GITHUB_PRIVATE_KEY}", library=self.library, Newbranch="${Newbranch}", + Target_Branch="${Target_Branch}", Praefix_Branch="${Praefix_Branch}", CI_COMMIT_REF_NAME="${CI_COMMIT_REF_NAME}", + GITHUB_API_TOKEN="${GITHUB_API_TOKEN}", html_commit=self.html_commit, create_html_wh_commit=self.create_html_wh_commit, + html_wh_file=self.html_wh_file, ci_html_commit=self.ci_html_commit, git=git, python_version=self.python_version) + yml_tmp = open(self.html_temp_file.replace(".txt", ".gitlab-ci.yml"), "w") + yml_tmp.write(yml_text) + yml_tmp.close() + + def _write_style_template(self): + if self.merge_branch is not None: + merge_branch = "- " + self.merge_branch + else: + merge_branch = "" + mytemplate = Template(filename=self.style_check_temp_file) + yml_text = mytemplate.render(merge_branch=merge_branch, + except_commit_list=self.except_commit_list, library=self.library, dymolaversion=self.dymolaversion, + ch_file=self.ch_file, python_version=self.python_version) + yml_tmp = open(self.style_check_temp_file.replace(".txt", ".gitlab-ci.yml"), "w") + yml_tmp.write(yml_text) + yml_tmp.close() + + def _write_merge_template(self): + # output_encoding='utf-8', encoding_errors='replace' + mytemplate = Template(filename=self.ibpsa_temp ) + yml_text = mytemplate.render(git_url=self.git_url, merge_branch=self.merge_branch, + dymolaversion=self.dymolaversion, + except_commit_list=self.except_commit_list, GITLAB_USER_NAME="${GITLAB_USER_NAME}", + GITLAB_USER_EMAIL="${GITLAB_USER_EMAIL}", CI_PROJECT_NAME="${CI_PROJECT_NAME}", + Github_Repository="${Github_Repository}", Merge_Branch="${Merge_Branch}", + IBPSA_Repo="${IBPSA_Repo}", + GITHUB_PRIVATE_KEY="${GITHUB_PRIVATE_KEY}", library=self.library, + Target_Branch="${Target_Branch}", wh_library=self.wh_library, + GITHUB_API_TOKEN="${GITHUB_API_TOKEN}", bot_commit=self.bot_merge_commit, ci_merge_except_commit=self.ci_merge_except_commit, python_version=self.python_version, ci_trigger_ibpsa_commit=self.ci_trigger_ibpsa_commit) + yml_tmp = open(self.ibpsa_temp.replace(".txt", ".gitlab-ci.yml"), "w") + + #yml_tmp.write(yml_text.replace("\n", "")) + yml_tmp.write(yml_text) + + yml_tmp.close() + + def _write_regression_template(self): + if self.merge_branch is not None: + merge_branch = "- " + self.merge_branch + else: + merge_branch = "" + + mytemplate = Template(filename=self.reg_temp) + yml_text = mytemplate.render(library=self.library, lib_package="${lib_package}", + dymolaversion=self.dymolaversion, + except_commit_list=self.except_commit_list, package_list=self.package_list, + update_commit=self.update_ref_commit, merge_branch=merge_branch, + TARGET_BRANCH="${TARGET_BRANCH}", GITLAB_Page="${GITLAB_Page}", + GITHUB_API_TOKEN="${GITHUB_API_TOKEN}", Github_Repository="${Github_Repository}", + GITLAB_USER_NAME="${GITLAB_USER_NAME}", GITLAB_USER_EMAIL="${GITLAB_USER_EMAIL}", + CI_PROJECT_NAME="${CI_PROJECT_NAME}", exit_file=self.exit_file, + ch_file=self.ch_file, bot_create_ref_message=self.bot_create_ref_message, + bot_create_ref_commit=self.bot_create_ref_commit, new_ref_file=self.new_ref_file, + chart_dir=self.chart_dir, GITHUB_PRIVATE_KEY="${GITHUB_PRIVATE_KEY}", show_ref_commit=self.show_ref_commit, update_ref_commit=self.update_ref_commit, + regression_test_commit=self.regression_test_commit, eof_file=self.eof_file, python_version=self.python_version) + yml_tmp = open(self.reg_temp.replace(".txt", ".gitlab-ci.yml"), "w") + yml_tmp.write(yml_text) + yml_tmp.close() + + def _write_check_template(self): + if self.wh_library is not None: + wh_library = self.wh_library + filterflag = "--filterwhitelist" + wh_flag = "--wh-library " + self.wh_library + merge_branch = "- " + self.wh_library + "_Merge" + if self.wh_path is not None: + wh_path = "--wh-path " + self.wh_path + git_url = "" + elif self.git_url is not None: + git_url = "--git-url " + self.git_url + wh_path = "" + else: + wh_path = "" + git_url = "" + else: + wh_library = self.library + wh_flag = "" + git_url = "" + filterflag = "" + wh_path = "" + merge_branch = "" + mytemplate = Template(filename=self.write_temp) + yml_text = mytemplate.render(package_list=self.package_list, library=self.library, lib_package="${lib_package}", + dymolaversion=self.dymolaversion, package_name="${package_name}", wh_flag=wh_flag, + filterflag=filterflag, except_commit_list=self.except_commit_list, + merge_branch=merge_branch, wh_commit=self.create_wh_commit, + wh_library=wh_library, wh_path=wh_path, git_url=git_url, + wh_file=self.wh_file, ch_file=self.ch_file, + bot_update_wh_commit=self.bot_update_wh_commit, + TARGET_BRANCH="$CI_COMMIT_REF_NAME", GITHUB_PRIVATE_KEY="${GITHUB_PRIVATE_KEY}", + GITLAB_USER_NAME="${GITLAB_USER_NAME}", GITLAB_USER_EMAIL="${GITLAB_USER_EMAIL}", + Github_Repository="${Github_Repository}", CI_PROJECT_NAME="${CI_PROJECT_NAME}", + exit_file=self.exit_file, check_commit=self.check_commit, python_version=self.python_version) + yml_tmp = open(self.write_temp.replace(".txt", ".gitlab-ci.yml"), "w") + yml_tmp.write(yml_text) + yml_tmp.close() + + def _write_simulate_template(self): + if self.wh_library is not None: + filterflag = "--filterwhitelist" + wh_flag = "--wh-library " + self.wh_library + merge_branch = "- " + self.merge_branch + else: + merge_branch = "" + filterflag = "" + wh_flag = "" + mytemplate = Template(filename=self.sim_temp) + yml_text = mytemplate.render(package_list=self.package_list, library=self.library, lib_package="${lib_package}", + dymolaversion=self.dymolaversion, package_name="${package_name}", wh_flag=wh_flag, + filterflag=filterflag, except_commit_list=self.except_commit_list, + merge_branch=merge_branch, git_url=self.git_url, + wh_commit=self.create_wh_commit, wh_library=self.wh_library, ch_file=self.ch_file, simulate_commit=self.simulate_commit, python_version=self.python_version) + yml_tmp = open(self.sim_temp.replace(".txt", ".gitlab-ci.yml"), "w") + yml_tmp.write(yml_text) + yml_tmp.close() + + def _write_main_yml(self, image_name, stage_list, variable_list, file_list): + mytemplate = Template(filename=self.main_temp) + yml_text = mytemplate.render(image_name=image_name, stage_list=stage_list, variable_list=variable_list, + file_list=file_list) + yml_tmp = open(self.main_yml, "w") + yml_tmp.write(yml_text) + yml_tmp.close() + + def _get_variables(self): + variable_list = self.variable_main_list + return variable_list + + def _get_image_name(self): + image_name = self.image_name + return image_name + + def _get_yml_templates(self): + file_list = [] + for subdir, dirs, files in os.walk(self.temp_dir): + for file in files: + filepath = subdir + os.sep + file + if filepath.endswith(".yml") and file != ".gitlab-ci.yml": + filepath = filepath.replace(os.sep, "/") + file_list.append(filepath) + if len(file_list) == 0: + print(f'No templates') + exit(1) + return file_list + + def _get_stages(self, file_list): + stage_list = [] + for file in file_list: + infile = open(file, "r") + lines = infile.readlines() + stage_content = False + for line in lines: + line = line.strip() + if len(line.strip()) == 0: + continue + elif line.find("stages:") > -1: + stage_content = True + elif line.find(":") > -1 and line.find("stages:") == -1: + stage_content = False + elif stage_content is True: + line = line.replace("-", "") + line = line.replace(" ", "") + stage_list.append(line) + else: + continue + if len(stage_list) == 0: + print(f'No stages') + exit(1) + stage_list = list(set(stage_list)) + new_list = [] + for stage in self.stage_list: + for st in stage_list: + if stage == st: + new_list.append(stage) + return new_list + + def _write_settings(self, image_name, stage_list, variable_list, file_list, config_list, git_url): # write CI setting + mytemplate = Template(filename=self.setting_file) + yml_text = mytemplate.render(library=self.library, wh_library=self.wh_library, dymolaversion=self.dymolaversion, + package_list=self.package_list, stage_list=stage_list, merge_branch=self.merge_branch, + image_name=image_name, variable_main_list=variable_list, + except_commit_list=self.except_commit_list, file_list=file_list, config_list=config_list, git_url=git_url, wh_path=self.wh_path, + python_version=self.python_version) + yml_tmp = open(self.setting_file.replace("_template.txt", ".toml"), "w") + yml_tmp.write(yml_text) + yml_tmp.close() + + +def _get_package(library): + for subdir, dirs, files in os.walk(library): + return dirs + + +def _config_test(): + config_list = [] + response = input(f'Config template: check html Syntax in models? (y/n) ') + if response == "y": + print(f'Create html template') + config_list.append("html") + response = input(f'Config template: check style of models? (y/n) ') + if response == "y": + print(f'Create style template') + config_list.append("style") + response = input(f'Config template: check models? (y/n) ') + if response == "y": + print(f'Create check template') + config_list.append("check") + response = input(f'Config template: simulate examples? (y/n) ') + if response == "y": + print(f'Create simulate template') + config_list.append("simulate") + response = input(f'Config template: regression test? (y/n) ') + if response == "y": + print(f'Create regression template') + config_list.append("regression") + response = input(f'Config template: Merge Update? (y/n) ') + if response == "y": + print(f'Create merge template') + config_list.append("Merge") + return config_list + +def _config_settings_check(): + library = input(f'Which library should be tested? (e.g. AixLib)') + print(f'Setting library: {library}') + package_list = _get_package(library) + package_list_final = [] + for package in package_list: + response = input(f'Test package {package}? (y/n) ') + if response == "y": + package_list_final.append(package) + continue + print(f'Setting packages: {package_list_final}') + dymolaversion = input(f'Give the dymolaversion (e.g. 2020): ') + print(f'Setting dymola version: {dymolaversion}') + python_version = input(f'Give the python version in your image (e.g. python36): ') + print(f'Setting python version: {python_version}') + response = input( + f'Create whitelist? Useful if your own library has been assembled from other libraries. A whitelist is created, where faulty models from the foreign library are no longer tested in the future and are filtered out. (y/n) ') + if response == "y": + wh_config = True + while wh_config is True: + wh_library = input(f'What library models should on whitelist: Give the name of the library: ') + print(f'Setting whitelist library: {wh_library}') + + response = input(f'If the foreign library is local on the PC? (y/n) ') + if response == "y": + wh_path = input(f'Specify the local path of the library (eg. D:\..path..\AixLib) ') + print(f'path of library: {wh_path}') + git_url = None + else: + git_url = input(f'Give the url of the library repository (eg. "https://github.com/ibpsa/modelica-ibpsa.git"): ') + print(f'Setting git_url: {git_url}') + wh_path = None + + response = input(f'Are settings okay(y/n)? ') + if response == "y": + wh_config = False + return library, package_list_final, dymolaversion, wh_library, git_url, wh_path, python_version + wh_library = None + git_url = None + wh_path = None + return library, package_list_final, dymolaversion, wh_library, git_url, wh_path, python_version + + +def _delte_yml_files(temp_dir): + for subdir, dirs, files in os.walk(temp_dir): + for file in files: + filepath = subdir + os.sep + file + if filepath.endswith(".yml") and file != ".gitlab-ci.yml": + os.remove(filepath) + + +def _read_setting_file(): + setting_file = f'bin{os.sep}Setting{os.sep}CI_setting.toml' + data = toml.load(setting_file) + return data + +def _read_library(data): + library = data["library"] + library = library["library_name"] + print(f'Setting library: {library}') + return library + +def _read_wh_library(data): + wh_library = data["whitelist_library"] + wh_library = wh_library["wh_library_name"] + print(f'Setting whitelist_library: {wh_library}') + return wh_library + +def _read_package_list(data): + packagelist = data["Package"] + packagelist = packagelist["packagelist"] + print(f'Setting packagelist: {packagelist}') + return packagelist + +def _read_dymolaversion(data): + dymolaversion = data["dymola_version"] + dymolaversion = dymolaversion["dymolaversion"] + print(f'Setting dymolaversion: {dymolaversion}') + return dymolaversion + +def _read_pythonversion(data): + pythonversion = data["python_version"] + pythonversion = pythonversion["python_version"] + print(f'Setting python version: {pythonversion}') + return pythonversion + + +def _read_stages(data): + stages = data["stages"] + stages = stages["stagelist"] + print(f'Setting stages: {stages}') + return stages + +def _read_merge_branch(data): + Merge_Branch = data["Merge_Branch"] + Merge_Branch = Merge_Branch["merge_branch"] + print(f'Setting merge branch: {Merge_Branch}') + return Merge_Branch + +def _read_image_name(data): + image_name = data["image_name"] + image_name = image_name["image"] + print(f'Setting image: {image_name}') + return image_name + +def _read_variable_list(data): + variable_list = data["variable_list"] + variable_list = variable_list["variablelist"] + print(f'Setting variables: {variable_list}') + return variable_list + +def _read_ci_commands(data): + ci_commit_commands = data["ci_commit_commands"] + ci_commit_commands = ci_commit_commands["commitlist"] + print(f'Setting ci commands: {ci_commit_commands}') + return ci_commit_commands + +def _read_file_list(data): + file_list = data["File_list"] + file_list = file_list["filelist"] + print(f'Setting yaml file list: {file_list}') + return file_list + +def _read_config_list(data): + config_list = data["config_list"] + config_list = config_list["configlist"] + print(f'Setting config list: {config_list}') + return config_list + +def _read_git_url(data): + git_url = data["git_url"] + giturl = git_url["giturl"] + print(f'Setting git whitelist url: {giturl}') + return giturl + +def _read_wh_path(data): + wh_path = data["wh_library_path"] + wh_path = wh_path["wh_path"] + print(f'Setting git whitelist url: {wh_path}') + return wh_path + +if __name__ == '__main__': + # python bin/CITests/07_ci_templates/ci_templates.py + parser = argparse.ArgumentParser(description="Set Github Environment Variables") # Configure the argument parser + check_test_group = parser.add_argument_group("Arguments to set Environment Variables") + check_test_group.add_argument("--setting", help="Create the CI from file bin\Setting\CI_setting.txt", + action="store_true") + args = parser.parse_args() # Parse the arguments + + from ci_templates import CI_yml_templates + sys.path.append('bin/CITests') + from _config import setting_file, temp_dir + + _delte_yml_files(temp_dir) + if args.setting is False: + config_list = _config_test() + if len(config_list) == 0: + exit(0) + result = _config_settings_check() + library = result[0] + package_list = result[1] + dymolaversion = result[2] + wh_library = result[3] + git_url = result[4] + wh_path = result[5] + python_version = result[6] + CI_Class = CI_yml_templates(library, package_list, dymolaversion, wh_library, git_url, wh_path, python_version) + CI_Class._write_setting_template() + for temp in config_list: + if temp == "check": + CI_Class._write_check_template() + if temp == "simulate": + CI_Class._write_simulate_template() + if temp == "regression": + CI_Class._write_regression_template() + if temp == "html": + CI_Class._write_html_template() + if temp == "style": + CI_Class._write_style_template() + if temp == "Merge" and wh_library is not None: + CI_Class._write_merge_template() + CI_Class._write_page_template() + variable_list = CI_Class._get_variables() + print(f'Setting variables: {variable_list}') + image_name = CI_Class._get_image_name() + print(f'Setting image: {image_name}') + file_list = CI_Class._get_yml_templates() + print(f'Setting yml files: {file_list}') + stage_list = CI_Class._get_stages(file_list) + print(f'Setting stages: {stage_list}') + CI_Class._write_main_yml(image_name, stage_list, variable_list, file_list) + CI_Class._write_settings(image_name, stage_list, variable_list, file_list, config_list, git_url) + print(f'The CI settings are saved in file {setting_file}') + + if args.setting is True: + data = _read_setting_file() + wh_path = _read_wh_path(data) + if wh_path == "None": + wh_path = None + library = _read_library(data) + wh_library = _read_wh_library(data) + if wh_library == "None": + wh_library = None + package_list = _read_package_list(data) + dymolaversion = _read_dymolaversion(data) + python_version = _read_pythonversion(data) + stage_list = _read_stages(data) + Merge_Branch = _read_merge_branch(data) + image_name = _read_image_name(data) + variable_list = _read_variable_list(data) + ci_commit_commands = _read_ci_commands(data) + file_list = _read_file_list(data) + config_list = _read_config_list(data) + git_url = _read_git_url(data) + if git_url == "None": + git_url = None + CI_Class = CI_yml_templates(library, package_list, dymolaversion, wh_library, git_url, wh_path, python_version) + CI_Class._write_setting_template() + for temp in config_list: + if temp == "check": + CI_Class._write_check_template() + if temp == "simulate": + CI_Class._write_simulate_template() + if temp == "regression": + CI_Class._write_regression_template() + if temp == "html": + CI_Class._write_html_template() + if temp == "style": + CI_Class._write_style_template() + if temp == "Merge" and wh_library is not None: + CI_Class._write_merge_template() + CI_Class._write_page_template() + CI_Class._write_main_yml(image_name, stage_list, variable_list, file_list) diff --git a/bin/02_CITests/README.md b/bin/CITests/README.md similarity index 58% rename from bin/02_CITests/README.md rename to bin/CITests/README.md index b561ffbb25..369102c9b5 100644 --- a/bin/02_CITests/README.md +++ b/bin/CITests/README.md @@ -3,12 +3,18 @@ At this time are five different Checks implemented. +## What is implement? +## [_config.py](_config.py) +The files `_config.py` contains file references and set variables which are important for the tests as well as the creation of CI templates. -## What is implement? +Before the templates are created with the command + +`python bin/CITests/07_ci_templates/ci_templates.py`, +the variables `image_name` and `variable_main_list` in the file `_config.py` should be checked to see if they are set correctly for the current repository. -## CleanUpScripts +## [01_CleanUp](01_CleanUp) ### cleanmodelica @@ -21,8 +27,43 @@ This script deletes following files: 'success.','stop', 'stop.','fmiModelIdentifier.h', 'modelDescription.xml', 'fmiFunctions.o', 'CSVWriter.csvWriter.csv', 'test.csv', -You can use it for deploy your Library. -## SyntaxTests +### setting_check + +Checks if all necessary variables and files are set or exist. + +The test is performed by the commit `git commit -m "ci_setting"`. + +Then the templates are created based on the CI_setting.toml file and pushed into the current branch. + +## [02_UnitTests](02_UnitTests) +Scripts that simulate and validate modelica models using dymola + +### reference_check.py +The regression test is implemented with the following command: +`cd AixLib && python ../bin/CITests/02_UnitTests/reference_check.py -n 2 --tool dymola --single-package "AixLib.Airflow" --library AixLib --batch -DS 2020` + +Further information can be found under the following [link](../Documentation/How_to_integrate_new_tests.md) and explains among other things how to create new UnitTests. + +### validatetest.py +This test checks the models and simulates the packages "examples" and "validations". + +The following command is used to check the models except models that are on the whitelist : + +`python bin/CITests/02_UnitTests/CheckPackages/validatetest.py --single-package "Airflow" --library AixLib -DS 2020 --wh-library IBPSA --filterwhitelist` + +The following command is used to check the models without a whitelist: + +`python bin/CITests/02_UnitTests/CheckPackages/validatetest.py --single-package Airflow --library AixLib -DS 2020` + +The following command is used to simulate the examples except models that are on the whitelist : + +`python bin/CITests/02_UnitTests/CheckPackages/validatetest.py --single-package Airflow --library AixLib -DS 2020 --wh-library IBPSA --filterwhitelist --simulateexamples` + +The following command is used to simulate the examples without a whitelist: + +`python bin/CITests/02_UnitTests/CheckPackages/validatetest.py --single-package Airflow --library AixLib -DS 2020 --simulateexamples` + +## [03_SyntaxTests](03_SyntaxTests) This folder evaluated and correct the code in the AixLib. ### html_tidy_errors.py @@ -32,23 +73,16 @@ Additionally the code is corrected the HTML Code to the HTML5 syntax. This incl Warning:

                attribute "align" not allowed for HTML5 Warning: element removed from HTML5 Warning:

                Text ', 1) + line = (line.replace('">', '
                attribute "align" not allowed for HTML5 - -The error message - - Warning: The summary attribute on the element is obsolete in HTML5 - -is ignored and will be implemented in the future - + Warning: The summary attribute on the
                element is obsolete in HTML5 If the test was not successfull, CI creates a new branch and push the corrected code to the new branch. For this process you have to create new variables in your repository. -![E.ON EBC RWTH Aachen University](../04_Documentation/Images/PipelineProcess.png) +![E.ON EBC RWTH Aachen University](../Documentation/Images/PipelineProcess.png) For the implementation of the html_tidy errors.py the following step must be done. - #### $GL_TOKEN 1. Log in to GitLab. 2. In the upper-right corner, click your avatar and select Settings. @@ -60,53 +94,27 @@ For the implementation of the html_tidy errors.py the following step must be don [Create a GL_TOKEN](https://docs.gitlab.com/ce/user/profile/personal_access_tokens.html#creating-a-personal-access-token) - - - -$TARGET_BRANCH: Your current work branch. - - -![E.ON EBC RWTH Aachen University](../04_Documentation/Images/CreateNewBranch.png) +![E.ON EBC RWTH Aachen University](../Documentation/Images/CreateNewBranch.png) ### StyleChecking.py - This Script evaluated the documentation of the AixLib Models in dymola. The script operated with the ModelManagement in Dymola. - - To work with this Script type following Command: - python bin/CITests/SyntaxTests/StyleChecking.py -s "AixLib" -p AixLib/package.mo +`python bin/CITests/03_SyntaxTests/StyleChecking.py -s AixLib -p AixLib/package.mo -DS 2020` -![E.ON EBC RWTH Aachen University](../04_Documentation/Images/ModelManagement_StyleChecking.PNG) +![E.ON EBC RWTH Aachen University](../Documentation/Images/ModelManagement_StyleChecking.PNG) At this time the models are not up to date to pass the tests StyleCheck successfully. Therefore the tests are only applied to new models in the short term to ensure that the styles are correct and correspond to the settings. In the future, the models that fail the test will have to be revised and adapted. If the Test failed, Gitlab export two log files with a errorlist. -## UnitTests -Scripts that simulate and validate modelica models using dymola - -### runUnitTests.py -The regression test is implemented with the following command: - - cd AixLib && python ../bin/02_CITests/UnitTests/runUnitTests.py -n 2 --single-package AixLib.Airflow --tool dymola -Further information can be found under the following [link](https://git.rwth-aachen.de/sven.hinrichs/GitLabCI/-/blob/master/bin/04_Documentation/How_to_integrate_new_tests.md) and explains among other things how to create new UnitTests. - - - -### validatetest.py -This test checks the models and simulates the packages "examples" and "validations". - -The following command is used to check the models: - - python bin/02_CITests/UnitTests/CheckPackages/validatetest.py -s "AixLib.Airflow" -p AixLib/package.mo -A whitelist of IBPSA models was created. The list contains all models of the IBPSA library that have not passed the CheckTest. These models are ignored during the test and are therefore sorted out before the test. -To keep the white list up to date, it should be updated regularly. This is done using the tag --WhisteList -### IBPSA Merge +### IBPSA [Merge](06_deploy/IBPSA_Merge) As soon as the branch IBPSA_Merge is created the automatic merging of the IBPSA repo starts. First the models of the IBPSA are copied into the AixLib and then a suitable conversion skirpt. In the next stage the white lists are updated. Finally a pull request is created. The user should now check the AixLib again locally. At the same time, the CI runs and checks and simulates models, as well as performs a regression test. If certain models or scripts need to be adjusted manually, the user should do so with the comment message "fix errors manually". @@ -114,7 +122,7 @@ As soon as the branch IBPSA_Merge is created the automatic merging of the IBPSA The entire CI test looks as follows. -![E.ON EBC RWTH Aachen University](../04_Documentation/Images/Pipeline.PNG) +![E.ON EBC RWTH Aachen University](../Documentation/Images/Pipeline.PNG) # What is done? diff --git a/bin/CITests/_config.py b/bin/CITests/_config.py new file mode 100644 index 0000000000..91b41879f1 --- /dev/null +++ b/bin/CITests/_config.py @@ -0,0 +1,56 @@ +import os +# image_name +image_name = 'registry.git.rwth-aachen.de/ebc/ebc_intern/dymola-docker:miniconda-latest' +variable_main_list = ['Github_Repository: RWTH-EBC/AixLib', 'GITLAB_Page: https://ebc.pages.rwth-aachen.de/EBC_all/github_ci/AixLib'] + + +#[Whitelist files] +ch_file = f'bin{os.sep}Configfiles{os.sep}ci_changed_model_list.txt' +exit_file = f'bin{os.sep}Configfiles{os.sep}exit.sh' +eof_file = f'bin{os.sep}Configfiles{os.sep}EOF.sh' +new_ref_file = f'bin{os.sep}Configfiles{os.sep}ci_new_created_reference.txt' +ref_file = f'bin{os.sep}Configfiles{os.sep}ci_reference_list.txt' + +artifacts_dir = f'bin{os.sep}templates{os.sep}04_artifacts' +wh_file = f'bin{os.sep}ci_whitelist{os.sep}model_whitelist.txt' +ref_whitelist_file = f'bin{os.sep}ci_whitelist{os.sep}reference_check_whitelist.txt' +html_wh_file = f'bin{os.sep}ci_whitelist{os.sep}html_whitelist.txt' +show_ref_file = f'bin{os.sep}interact_CI{os.sep}show_ref.txt' +update_ref_file = f'bin{os.sep}interact_CI{os.sep}update_ref.txt' + +# Ci Templates +reg_temp_file = f'bin{os.sep}templates{os.sep}03_ci_templates{os.sep}02_UnitTests{os.sep}regression_test.txt' +write_temp_file = f'bin{os.sep}templates{os.sep}03_ci_templates{os.sep}02_UnitTests{os.sep}check_model.txt' +sim_temp_file = f'bin{os.sep}templates{os.sep}03_ci_templates{os.sep}02_UnitTests{os.sep}simulate_model.txt' +page_temp_file = f'bin{os.sep}templates{os.sep}03_ci_templates{os.sep}01_deploy{os.sep}gitlab_pages.txt' +ibpsa_temp_file = f'bin{os.sep}templates{os.sep}03_ci_templates{os.sep}01_deploy{os.sep}IBPSA_Merge.txt' +style_check_temp_file = f'bin{os.sep}templates{os.sep}03_ci_templates{os.sep}03_SyntaxTest{os.sep}style_check.txt' +html_temp_file = f'bin{os.sep}templates{os.sep}03_ci_templates{os.sep}03_SyntaxTest{os.sep}html_check.txt' +main_temp_file = f'bin{os.sep}templates{os.sep}03_ci_templates{os.sep}gitlab-ci.txt' +setting_temp_file = f'bin{os.sep}templates{os.sep}03_ci_templates{os.sep}04_CleanUpScript{os.sep}ci_setting.txt' +main_yml_file = f'.gitlab-ci.yml' + +temp_dir = f'bin{os.sep}templates{os.sep}03_ci_templates' + +# Charts +chart_temp_file = f'bin{os.sep}templates{os.sep}01_google_templates{os.sep}google_chart.txt' +index_temp_file = f'bin{os.sep}templates{os.sep}01_google_templates{os.sep}index.txt' +layout_temp_file = f'bin{os.sep}templates{os.sep}01_google_templates{os.sep}layout_index.txt' + +chart_dir = f'bin{os.sep}templates{os.sep}02_charts' + +# Reference files +ref_file_dir = f'Resources{os.sep}ReferenceResults{os.sep}Dymola' +resource_dir = f'Resources{os.sep}Scripts{os.sep}Dymola' + +# Setting file +setting_file = f'bin{os.sep}Setting{os.sep}CI_setting_template.txt' + + +stage_list = ["check_setting", "build_templates", "Ref_Check", "build", "HTML_Check", "IBPSA_Merge", "create_html_whitelist", "Update_WhiteList", "Release", "StyleCheck", "check", "openMR", "post", "create_whitelist", "simulate", "RegressionTest", "Update_Ref", "plot_ref", "prepare", "deploy"] + + +gitlab_ci_variables = ["GITHUB_API_TOKEN", "GITHUB_PRIVATE_KEY", "GL_TOKEN"] # Set these Token with this name in your gitlab ci under CI/Variables + + + diff --git a/bin/06_Configfiles/EOF.sh b/bin/Configfiles/EOF.sh similarity index 58% rename from bin/06_Configfiles/EOF.sh rename to bin/Configfiles/EOF.sh index 2144507e50..2492c9fb3e 100644 --- a/bin/06_Configfiles/EOF.sh +++ b/bin/Configfiles/EOF.sh @@ -1,4 +1,4 @@ -yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy +y y y y diff --git a/bin/Configfiles/README.md b/bin/Configfiles/README.md new file mode 100644 index 0000000000..faef8c3fe3 --- /dev/null +++ b/bin/Configfiles/README.md @@ -0,0 +1,11 @@ +## What is it? +This config files are neccessary for gitlab CI. +## What is implemented? + + +### exit.sh +This file contains only the content exit 0 or exit 1, which is rewritten with the HTML check on each pass. + +Hereby the CI automatically determines whether a new branch must be created to correct the incorrect HTML code, which can later be merged back into the original branch. + + diff --git a/bin/Configfiles/ci_changed_model_list.txt b/bin/Configfiles/ci_changed_model_list.txt new file mode 100644 index 0000000000..a761fc3ca6 --- /dev/null +++ b/bin/Configfiles/ci_changed_model_list.txt @@ -0,0 +1,8 @@ +:100644 100644 7c121b53e 0a950fe3f M AixLib/Airflow/AirHandlingUnit/Examples/AHU.mo +:100644 100644 7047fb520 e329ab729 M AixLib/Airflow/FacadeVentilationUnit/FacadeVentilationUnit.mo +:100644 100644 0b3ccc127 cc28b043a M AixLib/BoundaryConditions/SolarGeometry/BaseClasses/Examples/AltitudeAngle.mo +:100644 100644 f5f26fc91 bfe97f68b M AixLib/Resources/ReferenceResults/Dymola/AixLib_Airflow_AirHandlingUnit_Examples_AHU.txt +:100644 100644 562489e43 603c57505 M bin/02_CITests/02_UnitTests/reference_check.py +:100644 100644 b91f45783 6d2cf5f4d M bin/06_Configfiles/ci_reference_list.txt +:100644 100644 c7172ef66 000000000 M bin/06_Configfiles/exit.sh +:100644 100644 941b35144 db8b04ef1 M bin/07_templates/03_ci_templates/02_UnitTests/regression_test.gitlab-ci.yml diff --git a/bin/Configfiles/ci_difference_result.txt b/bin/Configfiles/ci_difference_result.txt new file mode 100644 index 0000000000..e69de29bb2 diff --git a/bin/Configfiles/ci_new_created_reference.txt b/bin/Configfiles/ci_new_created_reference.txt new file mode 100644 index 0000000000..241d9d28e5 --- /dev/null +++ b/bin/Configfiles/ci_new_created_reference.txt @@ -0,0 +1,5 @@ +AixLib\Resources\ReferenceResults\Dymola\AixLib_Airflow_Multizone_BaseClasses_Examples_WindPressureLowRise.txt +AixLib\Resources\ReferenceResults\Dymola\AixLib_Airflow_Multizone_BaseClasses_Examples_PowerLaw.txt + +AixLib\Resources\ReferenceResults\Dymola\AixLib_Airflow_Multizone_BaseClasses_Examples_PowerLawFixedM.txt +AixLib\Resources\ReferenceResults\Dymola\AixLib_Airflow_AirHandlingUnit_Examples_AHU.txt \ No newline at end of file diff --git a/bin/Configfiles/ci_reference_list.txt b/bin/Configfiles/ci_reference_list.txt new file mode 100644 index 0000000000..6d2cf5f4d4 --- /dev/null +++ b/bin/Configfiles/ci_reference_list.txt @@ -0,0 +1,1152 @@ + +AixLib.Airflow.AirHandlingUnit.Examples.AHU + +AixLib.Airflow.Multizone.BaseClasses.Examples.PowerLaw + +AixLib.Airflow.Multizone.BaseClasses.Examples.PowerLawFixedM + +AixLib.Airflow.Multizone.BaseClasses.Examples.WindPressureLowRise + +AixLib.Airflow.Multizone.Examples.ChimneyShaftNoVolume + +AixLib.Airflow.Multizone.Examples.ChimneyShaftWithVolume + +AixLib.Airflow.Multizone.Examples.ClosedDoors + +AixLib.Airflow.Multizone.Examples.CO2TransportStep + +AixLib.Airflow.Multizone.Examples.NaturalVentilation + +AixLib.Airflow.Multizone.Examples.OneEffectiveAirLeakageArea + +AixLib.Airflow.Multizone.Examples.OneOpenDoor + +AixLib.Airflow.Multizone.Examples.OneRoom + +AixLib.Airflow.Multizone.Examples.Orifice + +AixLib.Airflow.Multizone.Examples.ReverseBuoyancy + +AixLib.Airflow.Multizone.Examples.ReverseBuoyancy3Zones + +AixLib.Airflow.Multizone.Examples.ZonalFlow + +AixLib.Airflow.Multizone.Validation.DoorOpenClosed + +AixLib.Airflow.Multizone.Validation.OpenDoorBuoyancyDynamic + +AixLib.Airflow.Multizone.Validation.OpenDoorBuoyancyPressureDynamic + +AixLib.Airflow.Multizone.Validation.OpenDoorPressure + +AixLib.Airflow.Multizone.Validation.OpenDoorTemperature + +AixLib.Airflow.Multizone.Validation.ThreeRoomsContam + +AixLib.Airflow.Multizone.Validation.ThreeRoomsContamDiscretizedDoor + +AixLib.BoundaryConditions.InternalGains.Examples.HumansSenTDep + +AixLib.BoundaryConditions.InternalGains.Examples.HumansSenTIndep + +AixLib.BoundaryConditions.InternalGains.Examples.HumansTotTDep + +AixLib.BoundaryConditions.InternalGains.Examples.Lights + +AixLib.BoundaryConditions.InternalGains.Examples.Machines + +AixLib.BoundaryConditions.InternalGains.Examples.OneOffice + +AixLib.BoundaryConditions.SkyTemperature.Examples.BlackBody + +AixLib.BoundaryConditions.SolarGeometry.BaseClasses.Examples.AltitudeAngle + +AixLib.BoundaryConditions.SolarGeometry.BaseClasses.Examples.Declination + +AixLib.BoundaryConditions.SolarGeometry.BaseClasses.Examples.IncidenceAngle + +AixLib.BoundaryConditions.SolarGeometry.BaseClasses.Examples.SolarAzimuth + +AixLib.BoundaryConditions.SolarGeometry.BaseClasses.Examples.SolarHourAngle + +AixLib.BoundaryConditions.SolarGeometry.BaseClasses.Examples.WallSolarAzimuth + +AixLib.BoundaryConditions.SolarGeometry.BaseClasses.Examples.ZenithAngle + +AixLib.BoundaryConditions.SolarGeometry.Examples.IncidenceAngle + +AixLib.BoundaryConditions.SolarGeometry.Examples.ZenithAngle + +AixLib.BoundaryConditions.SolarIrradiation.BaseClasses.Examples.BrighteningCoefficient + +AixLib.BoundaryConditions.SolarIrradiation.BaseClasses.Examples.DiffuseIsotropic + +AixLib.BoundaryConditions.SolarIrradiation.BaseClasses.Examples.RelativeAirMass + +AixLib.BoundaryConditions.SolarIrradiation.BaseClasses.Examples.SkyBrightness + +AixLib.BoundaryConditions.SolarIrradiation.BaseClasses.Examples.SkyClearness + +AixLib.BoundaryConditions.SolarIrradiation.Examples.DiffuseIsotropic + +AixLib.BoundaryConditions.SolarIrradiation.Examples.DiffusePerez + +AixLib.BoundaryConditions.SolarIrradiation.Examples.DirectTiltedSurface + +AixLib.BoundaryConditions.Validation.BESTEST.WD100 + +AixLib.BoundaryConditions.Validation.BESTEST.WD200 + +AixLib.BoundaryConditions.Validation.BESTEST.WD300 + +AixLib.BoundaryConditions.Validation.BESTEST.WD400 + +AixLib.BoundaryConditions.Validation.BESTEST.WD500 + +AixLib.BoundaryConditions.Validation.BESTEST.WD600 + +AixLib.BoundaryConditions.WeatherData.BaseClasses.Examples.CheckBlackBodySkyTemperature + +AixLib.BoundaryConditions.WeatherData.BaseClasses.Examples.CheckCeilingHeight + +AixLib.BoundaryConditions.WeatherData.BaseClasses.Examples.CheckPressure + +AixLib.BoundaryConditions.WeatherData.BaseClasses.Examples.CheckRadiation + +AixLib.BoundaryConditions.WeatherData.BaseClasses.Examples.CheckRelativeHumidity + +AixLib.BoundaryConditions.WeatherData.BaseClasses.Examples.CheckSkyCover + +AixLib.BoundaryConditions.WeatherData.BaseClasses.Examples.CheckTemperature + +AixLib.BoundaryConditions.WeatherData.BaseClasses.Examples.CheckWindDirection + +AixLib.BoundaryConditions.WeatherData.BaseClasses.Examples.CheckWindSpeed + +AixLib.BoundaryConditions.WeatherData.BaseClasses.Examples.ConvertRadiation + +AixLib.BoundaryConditions.WeatherData.BaseClasses.Examples.ConvertRelativeHumidity + +AixLib.BoundaryConditions.WeatherData.BaseClasses.Examples.ConvertTime + +AixLib.BoundaryConditions.WeatherData.BaseClasses.Examples.ConvertTimeNegativeStart + +AixLib.BoundaryConditions.WeatherData.BaseClasses.Examples.ConvertTimePositiveStart + +AixLib.BoundaryConditions.WeatherData.BaseClasses.Examples.EquationOfTime + +AixLib.BoundaryConditions.WeatherData.BaseClasses.Examples.GetAbsolutePath + +AixLib.BoundaryConditions.WeatherData.BaseClasses.Examples.GetHeaderElement + +AixLib.BoundaryConditions.WeatherData.BaseClasses.Examples.GetTimeSpanTMY3 + +AixLib.BoundaryConditions.WeatherData.BaseClasses.Examples.GetTimeSpanTMY3LongHeader + +AixLib.BoundaryConditions.WeatherData.BaseClasses.Examples.GetTimeSpanTMY3_NonzeroStart + +AixLib.BoundaryConditions.WeatherData.BaseClasses.Examples.LimitMin + +AixLib.BoundaryConditions.WeatherData.BaseClasses.Examples.LocalCivilTime + +AixLib.BoundaryConditions.WeatherData.BaseClasses.Examples.SolarTime + +AixLib.BoundaryConditions.WeatherData.Examples.ReaderTMY3 + +AixLib.BoundaryConditions.WeatherData.Validation.DecemberToJanuary + +AixLib.BoundaryConditions.WeatherData.Validation.OverAYear_usingOneYearData + +AixLib.BoundaryConditions.WeatherData.Validation.ReaderTMY3HDirNor + +AixLib.BoundaryConditions.WeatherData.Validation.ThreeYears_usingTwoYearData + +AixLib.BoundaryConditions.WeatherData.Validation.ThreeYears_usingTwoYearDataNegativeStart + +AixLib.BoundaryConditions.WeatherData.Validation.ThreeYears_usingTwoYearDataPositiveStart + +AixLib.Controls.Continuous.Examples.LimPID + +AixLib.Controls.Continuous.Examples.LimPIDWithReset + +AixLib.Controls.Continuous.Examples.NumberOfRequests + +AixLib.Controls.Continuous.Examples.OffTimer + +AixLib.Controls.Continuous.Examples.PIDHysteresis + +AixLib.Controls.Continuous.Examples.PIDHysteresisTimer + +AixLib.Controls.Continuous.Examples.SignalRanker + +AixLib.Controls.Continuous.Validation.LimPIDReset + +AixLib.Controls.Continuous.Validation.OffTimerNonZeroStart + +AixLib.Controls.Discrete.Examples.BooleanDelay + +AixLib.Controls.SetPoints.Examples.OccupancySchedule + +AixLib.Controls.SetPoints.Examples.SupplyReturnTemperatureReset + +AixLib.Controls.SetPoints.Examples.Table + +AixLib.Controls.SetPoints.Validation.OccupancyScheduleNegativeStartTime + +AixLib.Controls.SetPoints.Validation.OccupancySchedulePositiveStartTime + +AixLib.Electrical.Examples.ExamplePVSystem + +AixLib.Electrical.Validation.ValidationPVSystem + +AixLib.Fluid.Actuators.BaseClasses.Examples.EqualPercentageDerivativeCheck + +AixLib.Fluid.Actuators.Dampers.Examples.Damper + +AixLib.Fluid.Actuators.Dampers.Examples.MixingBox + +AixLib.Fluid.Actuators.Dampers.Examples.VAVBoxExponential + +AixLib.Fluid.Actuators.Dampers.Validation.PressureIndependent + +AixLib.Fluid.Actuators.Motors.Examples.IdealMotor + +AixLib.Fluid.Actuators.Valves.Examples.ThreeWayValves + +AixLib.Fluid.Actuators.Valves.Examples.TwoWayValvePressureIndependent + +AixLib.Fluid.Actuators.Valves.Examples.TwoWayValves + +AixLib.Fluid.Actuators.Valves.Examples.TwoWayValvesMotor + +AixLib.Fluid.Actuators.Valves.Examples.TwoWayValvesTable + +AixLib.Fluid.Actuators.Valves.Examples.TwoWayValveTable + +AixLib.Fluid.Actuators.Valves.Validation.ThreeWayValveParameterization + +AixLib.Fluid.Actuators.Valves.Validation.TwoWayValveParameterization + +AixLib.Fluid.BaseClasses.FlowModels.Validation.BasicFlowFunction_dp_DerivativeCheck + +AixLib.Fluid.BaseClasses.FlowModels.Validation.BasicFlowFunction_dp_DerivativeCheck2 + +AixLib.Fluid.BaseClasses.FlowModels.Validation.BasicFlowFunction_m_flow_DerivativeCheck + +AixLib.Fluid.BaseClasses.FlowModels.Validation.BasicFlowFunction_m_flow_DerivativeCheck2 + +AixLib.Fluid.BaseClasses.FlowModels.Validation.InverseFlowFunctions + +AixLib.Fluid.BaseClasses.FlowModels.Validation.InvertingBasicFlowFunction_dp + +AixLib.Fluid.BaseClasses.FlowModels.Validation.InvertingBasicFlowFunction_m_flow + +AixLib.Fluid.BaseClasses.Validation.MassFlowRateMultiplier + +AixLib.Fluid.BoilerCHP.Examples.CHPSystemNoControl + +AixLib.Fluid.Chillers.Examples.Carnot_TEva + +AixLib.Fluid.Chillers.Examples.Carnot_y + +AixLib.Fluid.Chillers.Examples.Chiller + +AixLib.Fluid.Chillers.Validation.CarnotVerifyCOP + +AixLib.Fluid.Chillers.Validation.CarnotVerifyEtaCarnot + +AixLib.Fluid.Chillers.Validation.Carnot_TEva_2ndLaw + +AixLib.Fluid.Chillers.Validation.Carnot_TEva_etaPL + +AixLib.Fluid.Chillers.Validation.Carnot_TEva_HighTemperature + +AixLib.Fluid.Chillers.Validation.Carnot_TEva_LimitedCapacity + +AixLib.Fluid.Chillers.Validation.Carnot_TEva_reverseFlow + +AixLib.Fluid.Chillers.Validation.Carnot_y_etaPL + +AixLib.Fluid.Delays.Examples.Delay + +AixLib.Fluid.DistrictHeatingCooling.Demands.Examples.OpenLoopHeatPumpCarnot + +AixLib.Fluid.DistrictHeatingCooling.Demands.Examples.OpenLoopVarTSupplyDp + +AixLib.Fluid.DistrictHeatingCooling.Demands.Examples.OpenLoopVarTSupplyDpBypass + +AixLib.Fluid.DistrictHeatingCooling.Demands.Examples.OpenLoopVarTSupplyDpFixedTempDifferenceBypass + +AixLib.Fluid.DistrictHeatingCooling.Pipes.Examples.DHCPipe + +AixLib.Fluid.DistrictHeatingCooling.Pipes.Examples.PlugFlowPipeEmbedded + +AixLib.Fluid.DistrictHeatingCooling.Pipes.Examples.PlugFlowPipeZeta + +AixLib.Fluid.DistrictHeatingCooling.Pipes.Examples.StaticPipe + +AixLib.Fluid.Examples.GeothermalHeatPump + +AixLib.Fluid.Examples.ResistanceVolumeFlowReversal + +AixLib.Fluid.Examples.SimpleHouse + +AixLib.Fluid.Examples.FlowSystem.Basic + +AixLib.Fluid.Examples.FlowSystem.Simplified1 + +AixLib.Fluid.Examples.FlowSystem.Simplified2 + +AixLib.Fluid.Examples.FlowSystem.Simplified3 + +AixLib.Fluid.Examples.FlowSystem.Simplified4 + +AixLib.Fluid.Examples.FlowSystem.Simplified5 + +AixLib.Fluid.Examples.FlowSystem.Simplified6 + +AixLib.Fluid.Examples.Performance.Example1v1 + +AixLib.Fluid.Examples.Performance.Example1v2 + +AixLib.Fluid.Examples.Performance.Example2 + +AixLib.Fluid.Examples.Performance.Example3 + +AixLib.Fluid.Examples.Performance.Example4 + +AixLib.Fluid.Examples.Performance.Example5 + +AixLib.Fluid.Examples.Performance.Example6 + +AixLib.Fluid.Examples.Performance.Example7 + +AixLib.Fluid.Examples.Performance.Example8 + +AixLib.Fluid.Examples.Performance.PressureDrop.ParallelDp + +AixLib.Fluid.Examples.Performance.PressureDrop.ParallelDpOptimised + +AixLib.Fluid.Examples.Performance.PressureDrop.ParallelFlow + +AixLib.Fluid.Examples.Performance.PressureDrop.ParallelFlowOptimised + +AixLib.Fluid.Examples.Performance.PressureDrop.SeriesDp + +AixLib.Fluid.Examples.Performance.PressureDrop.SeriesDpOptimised + +AixLib.Fluid.Examples.Performance.PressureDrop.SeriesFlow + +AixLib.Fluid.Examples.Performance.PressureDrop.SeriesFlowOptimised + +AixLib.Fluid.Examples.Performance.PressureDrop.SeriesParallelDp + +AixLib.Fluid.Examples.Performance.PressureDrop.SeriesParallelDpOptimised + +AixLib.Fluid.Examples.Performance.PressureDrop.SeriesParallelFlow + +AixLib.Fluid.Examples.Performance.PressureDrop.SeriesParallelFlowOptimised + +AixLib.Fluid.FixedResistances.BaseClasses.Validation.PlugFlowCore + +AixLib.Fluid.FixedResistances.Examples.CheckValve + +AixLib.Fluid.FixedResistances.Examples.CompareFixedResistances + +AixLib.Fluid.FixedResistances.Examples.FlowJunction + +AixLib.Fluid.FixedResistances.Examples.HydraulicDiameter + +AixLib.Fluid.FixedResistances.Examples.PlugFlowPipe + +AixLib.Fluid.FixedResistances.Examples.PressureDrop + +AixLib.Fluid.FixedResistances.Examples.SimplePipe + +AixLib.Fluid.FixedResistances.Validation.FlowJunctionSteadyState + +AixLib.Fluid.FixedResistances.Validation.FlowJunctionSteadyStateNoPressureDrop + +AixLib.Fluid.FixedResistances.Validation.LosslessPipe + +AixLib.Fluid.FixedResistances.Validation.PressureDropsExplicit + +AixLib.Fluid.FixedResistances.Validation.PressureDropsExplicitLinearized + +AixLib.Fluid.FixedResistances.Validation.PressureDropsParallel + +AixLib.Fluid.FixedResistances.Validation.PressureDropsSeries + +AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.FlowReversal + +AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.MSLAIT + +AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.MSLAIT2Nodes + +AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.PlugFlowAIT + +AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.PlugFlowULg + +AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.TransportWaterAir + +AixLib.Fluid.FixedResistances.Validation.PlugFlowPipes.Data.TestData + +AixLib.Fluid.FMI.Adaptors.Examples.ThermalZoneHVACNoExhaust + +AixLib.Fluid.FMI.Adaptors.Examples.ThermalZoneHVACWithExhaust + +AixLib.Fluid.FMI.Conversion.Validation.AirToOutlet + +AixLib.Fluid.FMI.Conversion.Validation.AirToOutletFlowReversal + +AixLib.Fluid.FMI.Conversion.Validation.InletToAirDryAir + +AixLib.Fluid.FMI.Conversion.Validation.InletToAirDryAirCO2 + +AixLib.Fluid.FMI.Conversion.Validation.InletToAirMoistAir + +AixLib.Fluid.FMI.Conversion.Validation.InletToAirMoistAirCO2 + +AixLib.Fluid.FMI.Validation.FlowSplitter_u + +AixLib.Fluid.FMI.Validation.HeaterFan + +AixLib.Fluid.FMI.Validation.HeaterFanPressureDriven + +AixLib.Fluid.FMI.Validation.HeaterFan_noReverseFlow + +AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.BaseClasses.Examples.InternalHEXOneUTube + +AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.BaseClasses.Examples.InternalHEXTwoUTube + +AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.BaseClasses.Examples.InternalResistancesOneUTube + +AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.BaseClasses.Examples.InternalResistancesTwoUTube + +AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.BaseClasses.Functions.Validation.ConvectionResistanceCircularPipe + +AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.BaseClasses.Functions.Validation.InternalResistancesOneUTube + +AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.BaseClasses.Functions.Validation.InternalResistancesOneUTubeNegative + +AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.BaseClasses.Functions.Validation.InternalResistancesTwoUTube + +AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.BaseClasses.Functions.Validation.InternalResistancesTwoUTubeNegative + +AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.BaseClasses.Functions.Validation.MultipoleThermalResistances_OneUTube + +AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.BaseClasses.Functions.Validation.MultipoleThermalResistances_TwoUTube + +AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.Examples.BoreholeDynamics + +AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.Examples.BoreholeOneUTube + +AixLib.Fluid.Geothermal.Borefields.BaseClasses.Boreholes.Examples.BoreholeTwoUTube + +AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.LoadAggregation.Validation.AggregationCellTimes + +AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.LoadAggregation.Validation.AggregationWeightingFactors + +AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.LoadAggregation.Validation.CountAggregationCells + +AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.LoadAggregation.Validation.ShiftAggregationCells + +AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.LoadAggregation.Validation.TemperatureResponseMatrix + +AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.LoadAggregation.Validation.TemporalSuperposition + +AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.ThermalResponseFactors.Validation.CylindricalHeatSource + +AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.ThermalResponseFactors.Validation.CylindricalHeatSource_Integrand + +AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.ThermalResponseFactors.Validation.FiniteLineSource + +AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.ThermalResponseFactors.Validation.FiniteLineSource_Erfint + +AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.ThermalResponseFactors.Validation.FiniteLineSource_Integrand + +AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.ThermalResponseFactors.Validation.FiniteLineSource_Integrand_Length + +AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.ThermalResponseFactors.Validation.GFunction_100boreholes + +AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.ThermalResponseFactors.Validation.GFunction_1borehole_5meters + +AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.ThermalResponseFactors.Validation.GFunction_SmallScaleValidation + +AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.ThermalResponseFactors.Validation.InfiniteLineSource + +AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.ThermalResponseFactors.Validation.ShaGFunction + +AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.ThermalResponseFactors.Validation.TimeGeometric + +AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.Validation.Analytic_20Years + +AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.Validation.Cylindrical + +AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.Validation.FiniteDifference_1Week + +AixLib.Fluid.Geothermal.Borefields.BaseClasses.HeatTransfer.Validation.Measured_SmallScale + +AixLib.Fluid.Geothermal.Borefields.Examples.Borefields + +AixLib.Fluid.Geothermal.Borefields.Examples.RectangularBorefield + +AixLib.Fluid.Geothermal.Borefields.Validation.ConstantHeatInjection_100Boreholes + +AixLib.Fluid.Geothermal.Borefields.Validation.Sandbox + +AixLib.Fluid.HeatExchangers.ActiveBeams.BaseClasses.Examples.Convector + +AixLib.Fluid.HeatExchangers.ActiveBeams.BaseClasses.Examples.DerivateCubicSpline + +AixLib.Fluid.HeatExchangers.ActiveBeams.BaseClasses.Examples.ModificationFactor + +AixLib.Fluid.HeatExchangers.ActiveBeams.Examples.CoolingAndHeating + +AixLib.Fluid.HeatExchangers.ActiveBeams.Examples.CoolingOnly + +AixLib.Fluid.HeatExchangers.ActiveBeams.Examples.HeatingOnly + +AixLib.Fluid.HeatExchangers.ActiveBeams.Validation.NumberOfBeams + +AixLib.Fluid.HeatExchangers.ActiveBeams.Validation.NumberOfBeamsDynamics + +AixLib.Fluid.HeatExchangers.BaseClasses.Examples.HACoilInside + +AixLib.Fluid.HeatExchangers.BaseClasses.Examples.HADryCoil + +AixLib.Fluid.HeatExchangers.BaseClasses.Examples.HANaturalCylinder + +AixLib.Fluid.HeatExchangers.Examples.AirHeater_T + +AixLib.Fluid.HeatExchangers.Examples.AirHeater_u + +AixLib.Fluid.HeatExchangers.Examples.DryCoilEffectivenessNTUMassFlow + +AixLib.Fluid.HeatExchangers.Examples.DryCoilEffectivenessNTUPControl + +AixLib.Fluid.HeatExchangers.Examples.HeatingRod + +AixLib.Fluid.HeatExchangers.Examples.WaterCooler_T + +AixLib.Fluid.HeatExchangers.Examples.WaterHeater_T + +AixLib.Fluid.HeatExchangers.Examples.WaterHeater_u + +AixLib.Fluid.HeatExchangers.Radiators.Examples.RadiatorEN442_2 + +AixLib.Fluid.HeatExchangers.Validation.ConstantEffectiveness + +AixLib.Fluid.HeatExchangers.Validation.DryCoilEffectivenessNTU + +AixLib.Fluid.HeatExchangers.Validation.EvaporatorCondenser + +AixLib.Fluid.HeatExchangers.Validation.HeaterCooler_u + +AixLib.Fluid.HeatExchangers.Validation.PrescribedOutlet + +AixLib.Fluid.HeatExchangers.Validation.PrescribedOutlet_dynamic + +AixLib.Fluid.HeatPumps.Calibration.ScrollWaterToWater + +AixLib.Fluid.HeatPumps.Compressors.BaseClasses.Validation.TemperatureProtection + +AixLib.Fluid.HeatPumps.Compressors.Validation.ReciprocatingCompressor + +AixLib.Fluid.HeatPumps.Compressors.Validation.ReciprocatingCompressor_ZeroInput + +AixLib.Fluid.HeatPumps.Compressors.Validation.ScrollCompressor + +AixLib.Fluid.HeatPumps.Compressors.Validation.ScrollCompressor_ZeroInput + +AixLib.Fluid.HeatPumps.Examples.Carnot_TCon + +AixLib.Fluid.HeatPumps.Examples.Carnot_y + +AixLib.Fluid.HeatPumps.Examples.HeatPump + +AixLib.Fluid.HeatPumps.Examples.ScrollWaterToWater_OneRoomRadiator + +AixLib.Fluid.HeatPumps.Validation.Carnot_TCon_etaPL + +AixLib.Fluid.HeatPumps.Validation.Carnot_TCon_LimitedCapacity + +AixLib.Fluid.HeatPumps.Validation.Carnot_TCon_LowTemperature + +AixLib.Fluid.HeatPumps.Validation.Carnot_TCon_reverseFlow + +AixLib.Fluid.HeatPumps.Validation.Carnot_y_etaCar + +AixLib.Fluid.HeatPumps.Validation.Carnot_y_etaPL + +AixLib.Fluid.HeatPumps.Validation.ReciprocatingWaterToWater_Dynamic + +AixLib.Fluid.HeatPumps.Validation.ReciprocatingWaterToWater_ScalingFactor + +AixLib.Fluid.HeatPumps.Validation.ReciprocatingWaterToWater_Static + +AixLib.Fluid.HeatPumps.Validation.ReciprocatingWaterToWater_VariableSpeed + +AixLib.Fluid.HeatPumps.Validation.ScrollWaterToWater_Dynamic + +AixLib.Fluid.HeatPumps.Validation.ScrollWaterToWater_ScalingFactor + +AixLib.Fluid.HeatPumps.Validation.ScrollWaterToWater_Static + +AixLib.Fluid.HeatPumps.Validation.ScrollWaterToWater_TemperatureProtection + +AixLib.Fluid.HeatPumps.Validation.ScrollWaterToWater_VariableSpeed + +AixLib.Fluid.Humidifiers.Examples.Humidifier_u + +AixLib.Fluid.Humidifiers.Validation.SprayAirWasher_X + +AixLib.Fluid.Humidifiers.Validation.SprayAirWasher_X_dynamic + +AixLib.Fluid.Humidifiers.Validation.SteamHumidifier_X + +AixLib.Fluid.Humidifiers.Validation.SteamHumidifier_X_dynamic + +AixLib.Fluid.Interfaces.Examples.ConservationEquation + +AixLib.Fluid.Interfaces.Examples.EightPortHeatMassExchanger + +AixLib.Fluid.Interfaces.Examples.FourPortHeatMassExchanger + +AixLib.Fluid.Interfaces.Examples.HeaterCooler_u + +AixLib.Fluid.Interfaces.Examples.Humidifier_u + +AixLib.Fluid.Interfaces.Examples.PrescribedOutlet + +AixLib.Fluid.Interfaces.Examples.PrescribedOutlet_TSetOnly + +AixLib.Fluid.Interfaces.Examples.PrescribedOutlet_Water + +AixLib.Fluid.Interfaces.Examples.PrescribedOutlet_X_wSetOnly + +AixLib.Fluid.Interfaces.Examples.ReverseFlowHumidifier + +AixLib.Fluid.Interfaces.Examples.ReverseFlowMassExchanger + +AixLib.Fluid.Interfaces.Examples.StaticTwoPortConservationEquation + +AixLib.Fluid.MassExchangers.Examples.ConstantEffectiveness + +AixLib.Fluid.MassExchangers.MembraneBasedEnthalpyExchangers.Examples.Test_EnthalpyExchanger + +AixLib.Fluid.MassExchangers.MembraneBasedEnthalpyExchangers.Validation.DynamicValidation + +AixLib.Fluid.MassExchangers.MembraneBasedEnthalpyExchangers.Validation.StaticValidation + +AixLib.Fluid.MassExchangers.Validation.ConstantEffectivenessZeroFlow + +AixLib.Fluid.MassExchangers.Validation.ConstantEffectivenessZeroFlowBothStreams + +AixLib.Fluid.MixingVolumes.BaseClasses.Validation.MixingVolumeHeatMoisturePort + +AixLib.Fluid.MixingVolumes.BaseClasses.Validation.MixingVolumeHeatPortAir + +AixLib.Fluid.MixingVolumes.BaseClasses.Validation.MixingVolumeHeatPortWater + +AixLib.Fluid.MixingVolumes.Examples.MixingVolumeHeatConduction + +AixLib.Fluid.MixingVolumes.Examples.MixingVolumeMoistAir + +AixLib.Fluid.MixingVolumes.Examples.MixingVolumePrescribedHeatFlowRate + +AixLib.Fluid.MixingVolumes.Validation.CoupledVolumesAir + +AixLib.Fluid.MixingVolumes.Validation.CoupledVolumesGlycol47 + +AixLib.Fluid.MixingVolumes.Validation.CoupledVolumesSpecializedAirPerfectGas + +AixLib.Fluid.MixingVolumes.Validation.CoupledVolumesSpecializedWaterConstantProperties_pT + +AixLib.Fluid.MixingVolumes.Validation.CoupledVolumesSpecializedWaterTemperatureDependentDensity + +AixLib.Fluid.MixingVolumes.Validation.CoupledVolumesWater + +AixLib.Fluid.MixingVolumes.Validation.MixingVolume + +AixLib.Fluid.MixingVolumes.Validation.MixingVolumeAdiabaticCooling + +AixLib.Fluid.MixingVolumes.Validation.MixingVolumeHeatReverseFlow + +AixLib.Fluid.MixingVolumes.Validation.MixingVolumeHeatReverseFlowPrescribedHeatFlowRate + +AixLib.Fluid.MixingVolumes.Validation.MixingVolumeInitialization + +AixLib.Fluid.MixingVolumes.Validation.MixingVolumeMassFlow + +AixLib.Fluid.MixingVolumes.Validation.MixingVolumeMFactor + +AixLib.Fluid.MixingVolumes.Validation.MixingVolumeMoistureReverseFlow + +AixLib.Fluid.MixingVolumes.Validation.MixingVolumeMoistureReverseFlowPrescribedHeatFlowRate + +AixLib.Fluid.MixingVolumes.Validation.MixingVolumeSteadyStateMass + +AixLib.Fluid.MixingVolumes.Validation.MixingVolumeTraceSubstance + +AixLib.Fluid.MixingVolumes.Validation.MixingVolumeTraceSubstanceReverseFlow + +AixLib.Fluid.MixingVolumes.Validation.MixingVolumeTraceSubstanceReverseFlowPrescribedHeatFlowRate + +AixLib.Fluid.MixingVolumes.Validation.MixingVolumeZeroFlow + +AixLib.Fluid.MixingVolumes.Validation.MoistureMixingConservationDynamicBalance + +AixLib.Fluid.MixingVolumes.Validation.MoistureMixingConservationSteadyState + +AixLib.Fluid.MixingVolumes.Validation.TraceSubstanceConservationDynamicBalance + +AixLib.Fluid.MixingVolumes.Validation.TraceSubstanceConservationSteadyState + +AixLib.Fluid.Movers.BaseClasses.Validation.FlowMachineInterface + +AixLib.Fluid.Movers.BaseClasses.Validation.PowerInterface + +AixLib.Fluid.Movers.DpControlledMovers.Examples.DpControlled_dpConst + +AixLib.Fluid.Movers.DpControlledMovers.Examples.DpControlled_dpVar + +AixLib.Fluid.Movers.Examples.ClosedLoop_y + +AixLib.Fluid.Movers.Examples.MoverContinuous + +AixLib.Fluid.Movers.Examples.MoverParameter + +AixLib.Fluid.Movers.Examples.MoverStages + +AixLib.Fluid.Movers.Examples.PumpsParallel + +AixLib.Fluid.Movers.Examples.PumpsSeries + +AixLib.Fluid.Movers.Examples.SpeedControlled_y_pumpCurves + +AixLib.Fluid.Movers.PumpsPolynomialBased.Examples.PumpHeadControlled + +AixLib.Fluid.Movers.PumpsPolynomialBased.Examples.PumpSpeedControlled + +AixLib.Fluid.Movers.PumpsPolynomialBased.Examples.PumpSpeedControlledDpV + +AixLib.Fluid.Movers.Validation.ControlledFlowMachine + +AixLib.Fluid.Movers.Validation.ControlledFlowMachineDynamic + +AixLib.Fluid.Movers.Validation.FlowControlled_dp + +AixLib.Fluid.Movers.Validation.FlowControlled_dpSystem + +AixLib.Fluid.Movers.Validation.FlowControlled_m_flow + +AixLib.Fluid.Movers.Validation.PowerExact + +AixLib.Fluid.Movers.Validation.PowerSimplified + +AixLib.Fluid.Movers.Validation.PumpCurveConstruction + +AixLib.Fluid.Movers.Validation.PumpCurveDerivatives + +AixLib.Fluid.Movers.Validation.Pump_Nrpm_stratos + +AixLib.Fluid.Movers.Validation.Pump_stratos + +AixLib.Fluid.Movers.Validation.SpeedControlled_Nrpm + +AixLib.Fluid.Movers.Validation.SpeedControlled_y + +AixLib.Fluid.Movers.Validation.SpeedControlled_y_linear + +AixLib.Fluid.Sensors.Conversions.Examples.To_VolumeFraction + +AixLib.Fluid.Sensors.Examples.Density + +AixLib.Fluid.Sensors.Examples.EnthalpyFlowRate + +AixLib.Fluid.Sensors.Examples.EntropyFlowRate + +AixLib.Fluid.Sensors.Examples.MassFraction + +AixLib.Fluid.Sensors.Examples.MoistAirEnthalpyFlowRate + +AixLib.Fluid.Sensors.Examples.PPM + +AixLib.Fluid.Sensors.Examples.Pressure + +AixLib.Fluid.Sensors.Examples.RelativeHumidity + +AixLib.Fluid.Sensors.Examples.SpecificEnthalpy + +AixLib.Fluid.Sensors.Examples.SpecificEntropy + +AixLib.Fluid.Sensors.Examples.TemperatureDryBulb + +AixLib.Fluid.Sensors.Examples.TemperatureWetBulb + +AixLib.Fluid.Sensors.Examples.TraceSubstances + +AixLib.Fluid.Sensors.Examples.Velocity + +AixLib.Fluid.Sensors.Examples.VolumeFlowRate + +AixLib.Fluid.Sources.Examples.MassFlowSource_WeatherData + +AixLib.Fluid.Sources.Examples.Outside + +AixLib.Fluid.Sources.Examples.Outside_CpLowRise + +AixLib.Fluid.Sources.Examples.PropertySource_h + +AixLib.Fluid.Sources.Examples.PropertySource_T + +AixLib.Fluid.Sources.Examples.TraceSubstancesFlowSource + +AixLib.Fluid.Sources.Validation.Boundary + +AixLib.Fluid.Sources.Validation.BoundaryWithXi_in + +AixLib.Fluid.Sources.Validation.BoundaryWithX_in + +AixLib.Fluid.Storage.BaseClasses.Examples.IndirectTankHeatExchanger + +AixLib.Fluid.Storage.Examples.BufferStorage + +AixLib.Fluid.Storage.Examples.ExpansionVessel + +AixLib.Fluid.Storage.Examples.Stratified + +AixLib.Fluid.Storage.Examples.StratifiedEnhancedInternalHex + +AixLib.Fluid.Storage.Examples.StratifiedUnloadAtMinimumTemperature + +AixLib.Fluid.Storage.Validation.HeatExchangerDynamics + +AixLib.Fluid.Storage.Validation.HeatExchangerLocation + +AixLib.Fluid.Storage.Validation.StratifiedLoadingUnloading + +AixLib.Fluid.Storage.Validation.StratifiedNonUniformInitial + +AixLib.Media.Antifreeze.Validation.EthyleneGlycolWater + +AixLib.Media.Antifreeze.Validation.PropyleneGlycolWater + +AixLib.Media.Examples.AirDerivativeCheck + +AixLib.Media.Examples.AirProperties + +AixLib.Media.Examples.AirTemperatureEnthalpyInversion + +AixLib.Media.Examples.PropyleneGlycolWaterDerivativeCheck + +AixLib.Media.Examples.PropyleneGlycolWaterProperties + +AixLib.Media.Examples.PropyleneGlycolWaterTemperatureEnthalpyInversion + +AixLib.Media.Examples.WaterDerivativeCheck + +AixLib.Media.Examples.WaterProperties + +AixLib.Media.Examples.WaterTemperatureEnthalpyInversion + +AixLib.Media.Refrigerants.Validation.R410A_dSpecificVolumeVap_pT + +AixLib.Media.Specialized.Air.Examples.PerfectGasDerivativeCheck + +AixLib.Media.Specialized.Air.Examples.PerfectGasTemperatureEnthalpyInversion + +AixLib.Media.Specialized.Water.Examples.TemperatureDependentDensityDerivativeCheck + +AixLib.Media.Specialized.Water.Examples.TemperatureDependentDensityProperties + +AixLib.Media.Specialized.Water.Examples.TemperatureDependentDensityTemperatureEnthalpyInversion + +AixLib.Media.Specialized.Water.Examples.WaterProperties_pT + +AixLib.Systems.HeatPumpSystems.Examples.HeatPumpSystem + +AixLib.ThermalZones.HighOrder.Examples.OFDHeatLoad + +AixLib.ThermalZones.HighOrder.Examples.RoomGFOw2_DayNightMode + +AixLib.ThermalZones.HighOrder.Examples.ASHREA140.CompareDynamicAndStaticSolarFrac_Case270 + +AixLib.ThermalZones.HighOrder.Validation.ASHRAE140.Case210 + +AixLib.ThermalZones.HighOrder.Validation.ASHRAE140.Case220 + +AixLib.ThermalZones.HighOrder.Validation.ASHRAE140.Case230 + +AixLib.ThermalZones.HighOrder.Validation.ASHRAE140.Case240 + +AixLib.ThermalZones.HighOrder.Validation.ASHRAE140.Case250 + +AixLib.ThermalZones.HighOrder.Validation.ASHRAE140.Case270 + +AixLib.ThermalZones.HighOrder.Validation.ASHRAE140.Case280 + +AixLib.ThermalZones.HighOrder.Validation.ASHRAE140.Case300 + +AixLib.ThermalZones.HighOrder.Validation.ASHRAE140.Case320 + +AixLib.ThermalZones.HighOrder.Validation.ASHRAE140.Case395 + +AixLib.ThermalZones.HighOrder.Validation.ASHRAE140.Case400 + +AixLib.ThermalZones.HighOrder.Validation.ASHRAE140.Case410 + +AixLib.ThermalZones.HighOrder.Validation.ASHRAE140.Case420 + +AixLib.ThermalZones.HighOrder.Validation.ASHRAE140.Case430 + +AixLib.ThermalZones.HighOrder.Validation.ASHRAE140.Case440 + +AixLib.ThermalZones.HighOrder.Validation.ASHRAE140.Case600 + +AixLib.ThermalZones.HighOrder.Validation.ASHRAE140.Case600FF + +AixLib.ThermalZones.HighOrder.Validation.ASHRAE140.Case620 + +AixLib.ThermalZones.HighOrder.Validation.ASHRAE140.Case640 + +AixLib.ThermalZones.HighOrder.Validation.ASHRAE140.Case650 + +AixLib.ThermalZones.HighOrder.Validation.ASHRAE140.Case650FF + +AixLib.ThermalZones.HighOrder.Validation.ASHRAE140.Case800 + +AixLib.ThermalZones.HighOrder.Validation.ASHRAE140.Case810 + +AixLib.ThermalZones.HighOrder.Validation.ASHRAE140.Case900 + +AixLib.ThermalZones.HighOrder.Validation.ASHRAE140.Case900FF + +AixLib.ThermalZones.HighOrder.Validation.ASHRAE140.Case920 + +AixLib.ThermalZones.HighOrder.Validation.ASHRAE140.Case940 + +AixLib.ThermalZones.HighOrder.Validation.ASHRAE140.Case950 + +AixLib.ThermalZones.HighOrder.Validation.ASHRAE140.Case950FF + +AixLib.ThermalZones.HighOrder.Validation.EmpiricalValidation.TwinHouseN2 + +AixLib.ThermalZones.HighOrder.Validation.EmpiricalValidation.Warehouse + +AixLib.ThermalZones.ReducedOrder.Examples.MultizoneMoistAirCO2 + +AixLib.ThermalZones.ReducedOrder.Examples.MultizoneMoistAirCO2Equipped + +AixLib.ThermalZones.ReducedOrder.Examples.SimpleRoomFourElements + +AixLib.ThermalZones.ReducedOrder.Examples.SimpleRoomFourElementsTraceSubstance + +AixLib.ThermalZones.ReducedOrder.Examples.SimpleRoomOneElement + +AixLib.ThermalZones.ReducedOrder.Examples.SimpleRoomThreeElements + +AixLib.ThermalZones.ReducedOrder.Examples.SimpleRoomTwoElements + +AixLib.ThermalZones.ReducedOrder.Validation.RoomSteadyState + +AixLib.ThermalZones.ReducedOrder.Validation.RoomWithLatentGain + +AixLib.ThermalZones.ReducedOrder.Validation.RoomWithoutLatentGain + +AixLib.ThermalZones.ReducedOrder.Validation.VDI6007.TestCase1 + +AixLib.ThermalZones.ReducedOrder.Validation.VDI6007.TestCase10 + +AixLib.ThermalZones.ReducedOrder.Validation.VDI6007.TestCase11 + +AixLib.ThermalZones.ReducedOrder.Validation.VDI6007.TestCase12 + +AixLib.ThermalZones.ReducedOrder.Validation.VDI6007.TestCase2 + +AixLib.ThermalZones.ReducedOrder.Validation.VDI6007.TestCase3 + +AixLib.ThermalZones.ReducedOrder.Validation.VDI6007.TestCase4 + +AixLib.ThermalZones.ReducedOrder.Validation.VDI6007.TestCase5 + +AixLib.ThermalZones.ReducedOrder.Validation.VDI6007.TestCase6 + +AixLib.ThermalZones.ReducedOrder.Validation.VDI6007.TestCase7 + +AixLib.ThermalZones.ReducedOrder.Validation.VDI6007.TestCase8 + +AixLib.ThermalZones.ReducedOrder.Validation.VDI6007.TestCase9 + +AixLib.Utilities.Cryptographics.Validation.SHA1 + +AixLib.Utilities.Diagnostics.Validation.CheckEquality + +AixLib.Utilities.IO.Files.Examples.CSVReader + +AixLib.Utilities.IO.Files.Examples.CSVWriter + +AixLib.Utilities.IO.Files.Examples.JSONWriter + +AixLib.Utilities.IO.SignalExchange.Examples.FirstOrder + +AixLib.Utilities.IO.SignalExchange.Examples.WeatherStation + +AixLib.Utilities.Math.Examples.Average + +AixLib.Utilities.Math.Examples.BesselJ0 + +AixLib.Utilities.Math.Examples.BesselJ1 + +AixLib.Utilities.Math.Examples.BesselY0 + +AixLib.Utilities.Math.Examples.BesselY1 + +AixLib.Utilities.Math.Examples.Bicubic + +AixLib.Utilities.Math.Examples.Binomial + +AixLib.Utilities.Math.Examples.Biquadratic + +AixLib.Utilities.Math.Examples.BooleanReplicator + +AixLib.Utilities.Math.Examples.ExponentialIntegralE1 + +AixLib.Utilities.Math.Examples.Factorial + +AixLib.Utilities.Math.Examples.FallingFactorial + +AixLib.Utilities.Math.Examples.IntegerReplicator + +AixLib.Utilities.Math.Examples.IntegratorWithReset + +AixLib.Utilities.Math.Examples.InverseXRegularized + +AixLib.Utilities.Math.Examples.Polynominal + +AixLib.Utilities.Math.Examples.PowerLinearized + +AixLib.Utilities.Math.Examples.QuadraticLinear + +AixLib.Utilities.Math.Examples.RegNonZeroPower + +AixLib.Utilities.Math.Examples.SmoothBlocks + +AixLib.Utilities.Math.Examples.SmoothExponential + +AixLib.Utilities.Math.Examples.SmoothHeaviside + +AixLib.Utilities.Math.Examples.SmoothLimit + +AixLib.Utilities.Math.Examples.SmoothMin + +AixLib.Utilities.Math.Examples.Splice + +AixLib.Utilities.Math.Examples.VectorFunctions + +AixLib.Utilities.Math.Functions.Examples.BesselJ0 + +AixLib.Utilities.Math.Functions.Examples.BesselJ1 + +AixLib.Utilities.Math.Functions.Examples.BesselY0 + +AixLib.Utilities.Math.Functions.Examples.BesselY1 + +AixLib.Utilities.Math.Functions.Examples.Binomial + +AixLib.Utilities.Math.Functions.Examples.CubicHermite + +AixLib.Utilities.Math.Functions.Examples.ExponentialIntegralE1 + +AixLib.Utilities.Math.Functions.Examples.Factorial + +AixLib.Utilities.Math.Functions.Examples.FallingFactorial + +AixLib.Utilities.Math.Functions.Examples.InverseXDerivativeCheck + +AixLib.Utilities.Math.Functions.Examples.InverseXDerivative_2_Check + +AixLib.Utilities.Math.Functions.Examples.InverseXRegularized + +AixLib.Utilities.Math.Functions.Examples.IsMonotonic + +AixLib.Utilities.Math.Functions.Examples.Polynomial + +AixLib.Utilities.Math.Functions.Examples.PowerLinearized + +AixLib.Utilities.Math.Functions.Examples.QuinticHermite + +AixLib.Utilities.Math.Functions.Examples.RegNonZeroPower + +AixLib.Utilities.Math.Functions.Examples.RegNonZeroPowerDerivativeCheck + +AixLib.Utilities.Math.Functions.Examples.RegNonZeroPowerDerivative_2_Check + +AixLib.Utilities.Math.Functions.Examples.RegStep + +AixLib.Utilities.Math.Functions.Examples.SmoothExponentialDerivativeCheck + +AixLib.Utilities.Math.Functions.Examples.SmoothHeavisideDerivatives + +AixLib.Utilities.Math.Functions.Examples.SpliceFunction + +AixLib.Utilities.Math.Functions.Examples.SpliceFunctionDerivativeCheck + +AixLib.Utilities.Math.Functions.Examples.TrapezoidalIntegration + +AixLib.Utilities.Psychrometrics.Examples.Density_pTX + +AixLib.Utilities.Psychrometrics.Examples.DewPointTemperature + +AixLib.Utilities.Psychrometrics.Examples.HumidityRatioPressure + +AixLib.Utilities.Psychrometrics.Examples.MassFraction_pTphi + +AixLib.Utilities.Psychrometrics.Examples.Phi_pTX + +AixLib.Utilities.Psychrometrics.Examples.SaturationPressure + +AixLib.Utilities.Psychrometrics.Examples.SaturationPressureLiquid + +AixLib.Utilities.Psychrometrics.Examples.SublimationPressureIce + +AixLib.Utilities.Psychrometrics.Examples.TotalAirDryAir + +AixLib.Utilities.Psychrometrics.Examples.TWetBul_TDryBulPhi + +AixLib.Utilities.Psychrometrics.Examples.TWetBul_TDryBulXi + +AixLib.Utilities.Psychrometrics.Functions.BaseClasses.Examples.DewPointTemperatureDerivativeCheck + +AixLib.Utilities.Psychrometrics.Functions.BaseClasses.Examples.DewPointTemperatureDerivativeCheck_amb + +AixLib.Utilities.Psychrometrics.Functions.BaseClasses.Examples.InverseDewPointTemperatureDerivativeCheck_amb + +AixLib.Utilities.Psychrometrics.Functions.BaseClasses.Examples.SaturationPressureDerivativeCheck + +AixLib.Utilities.Psychrometrics.Functions.BaseClasses.Examples.WaterVaporPressureDerivativeCheck + +AixLib.Utilities.Psychrometrics.Functions.Examples.Density_pTX + +AixLib.Utilities.Psychrometrics.Functions.Examples.phi_pTX + +AixLib.Utilities.Psychrometrics.Functions.Examples.pW_TDewPoi + +AixLib.Utilities.Psychrometrics.Functions.Examples.pW_TDewPoi_comparison + +AixLib.Utilities.Psychrometrics.Functions.Examples.pW_X + +AixLib.Utilities.Psychrometrics.Functions.Examples.SaturationPressure + +AixLib.Utilities.Psychrometrics.Functions.Examples.X_pSatpphi + +AixLib.Utilities.Time.Examples.CalendarTime + +AixLib.Utilities.Time.Examples.ModelTime + +AixLib.Utilities.Time.Validation.CalendarTimeMonths + +AixLib.Utilities.Time.Validation.CalendarTimeMonthsMinus + +AixLib.Utilities.Time.Validation.CalendarTimeMonthsPlus diff --git a/bin/Configfiles/ci_slack_branch_inactive_list.txt b/bin/Configfiles/ci_slack_branch_inactive_list.txt new file mode 100644 index 0000000000..6aa80e82ea --- /dev/null +++ b/bin/Configfiles/ci_slack_branch_inactive_list.txt @@ -0,0 +1,477 @@ + +****************************** +Name: phillip.stoffel +Branch: Branch_issue575_benchmarkModel_reworked_aku +GitHub E-Mail: phillip.stoffel@rwth-aachen.de +Slack_channel_ID: UGLHKUZCJ +The branch Branch_issue575_benchmarkModel_reworked_aku has been inactive for more than 231 days. A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch. +User name: phillip.stoffel +Branch URL: https://github.com/RWTH-EBC/AixLib/tree/Branch_issue575_benchmarkModel_reworked_aku +Pull Request URL: https://github.com/RWTH-EBC/AixLib/pull/1250 +****************************** +Name: Peter Remmen +Branch: d03_simulation +GitHub E-Mail: PRemmen@eonerc.rwth-aachen.de +Slack_channel_ID: UBY61UC05 +The branch d03_simulation has been inactive for more than 594 days. A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch. +User name: Peter Remmen +Branch URL: https://github.com/RWTH-EBC/AixLib/tree/d03_simulation +Pull Request URL: https://github.com/RWTH-EBC/AixLib/pull/1251 +****************************** +Name: fabian.wuellhorst +Branch: fixPanelHeating +GitHub E-Mail: fabian.wuellhorst@rwth-aachen.de +Slack_channel_ID: U027D07QSAZ +The branch fixPanelHeating has been inactive for more than 238 days. A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch. +User name: fabian.wuellhorst +Branch URL: https://github.com/RWTH-EBC/AixLib/tree/fixPanelHeating +Pull Request URL: https://github.com/RWTH-EBC/AixLib/pull/1252 +****************************** +Name: MichaMans +Branch: heaterradconv +GitHub E-Mail: michael.mans@hotmail.com +Slack_channel_ID: C02NXDEL1GD +The branch heaterradconv has been inactive for more than 1106 days. A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch. +User name: MichaMans +Branch URL: https://github.com/RWTH-EBC/AixLib/tree/heaterradconv +Pull Request URL: https://github.com/RWTH-EBC/AixLib/pull/1253 +****************************** +Name: David +Branch: issue_MA_Moritz +GitHub E-Mail: david.jansen1@rwth-aachen.de +Slack_channel_ID: UBZBC2QUW +The branch issue_MA_Moritz has been inactive for more than 276 days. A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch. +User name: David +Branch URL: https://github.com/RWTH-EBC/AixLib/tree/issue_MA_Moritz +Pull Request URL: https://github.com/RWTH-EBC/AixLib/pull/1254 +****************************** +Name: aco +Branch: issue181_weatherModel +GitHub E-Mail: aconstantin@eonerc.rwth-aachen.de +Slack_channel_ID: UBZDE47H8 +The branch issue181_weatherModel has been inactive for more than 1747 days. A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch. +User name: aco +Branch URL: https://github.com/RWTH-EBC/AixLib/tree/issue181_weatherModel +Pull Request URL: https://github.com/RWTH-EBC/AixLib/pull/1255 +****************************** +Name: aco +Branch: issue184_PumpFromHVAC +GitHub E-Mail: aconstantin@eonerc.rwth-aachen.de +Slack_channel_ID: UBZDE47H8 +The branch issue184_PumpFromHVAC has been inactive for more than 1774 days. A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch. +User name: aco +Branch URL: https://github.com/RWTH-EBC/AixLib/tree/issue184_PumpFromHVAC +Pull Request URL: https://github.com/RWTH-EBC/AixLib/pull/1256 +****************************** +Name: marcusfuchs +Branch: issue208_thermostaticHead +GitHub E-Mail: mfuchs@eonerc.rwth-aachen.de +Slack_channel_ID: UBXTENP51 +Cannot create Pull Request: {'message': 'Validation Failed', 'errors': [{'resource': 'PullRequest', 'code': 'custom', 'message': 'No commits between development and issue208_thermostaticHead'}], 'documentation_url': 'https://docs.github.com/rest/reference/pulls#create-a-pull-request'} +The branch issue208_thermostaticHead has been inactive for more than 1995 days. +****************************** +Name: aco +Branch: issue271_discWall +GitHub E-Mail: aconstantin@eonerc.rwth-aachen.de +Slack_channel_ID: UBZDE47H8 +The branch issue271_discWall has been inactive for more than 1672 days. A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch. +User name: aco +Branch URL: https://github.com/RWTH-EBC/AixLib/tree/issue271_discWall +Pull Request URL: https://github.com/RWTH-EBC/AixLib/pull/1257 +****************************** +Name: Tobias Blacha +Branch: issue274_PlateHeatExchanger +GitHub E-Mail: tobias.blacha@rwth-aachen.de +Slack_channel_ID: C02NXDEL1GD +Cannot create Pull Request: {'message': 'Validation Failed', 'errors': [{'resource': 'PullRequest', 'code': 'custom', 'message': 'No commits between development and issue274_PlateHeatExchanger'}], 'documentation_url': 'https://docs.github.com/rest/reference/pulls#create-a-pull-request'} +The branch issue274_PlateHeatExchanger has been inactive for more than 1631 days. +****************************** +Name: Moritz Lauster +Branch: issue276_ASHRAELOM_tests +GitHub E-Mail: mlauster@eonerc.rwth-aachen.de +Slack_channel_ID: UC0EFM4LX +The branch issue276_ASHRAELOM_tests has been inactive for more than 1840 days. A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch. +User name: Moritz Lauster +Branch URL: https://github.com/RWTH-EBC/AixLib/tree/issue276_ASHRAELOM_tests +Pull Request URL: https://github.com/RWTH-EBC/AixLib/pull/1258 +****************************** +Name: aco +Branch: issue308_reversibleHP +GitHub E-Mail: aconstantin@eonerc.rwth-aachen.de +Slack_channel_ID: UBZDE47H8 +The branch issue308_reversibleHP has been inactive for more than 1623 days. A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch. +User name: aco +Branch URL: https://github.com/RWTH-EBC/AixLib/tree/issue308_reversibleHP +Pull Request URL: https://github.com/RWTH-EBC/AixLib/pull/1259 +****************************** +Name: aco +Branch: issue344_recordsForMaterials +GitHub E-Mail: aconstantin@eonerc.rwth-aachen.de +Slack_channel_ID: UBZDE47H8 +The branch issue344_recordsForMaterials has been inactive for more than 1803 days. A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch. +User name: aco +Branch URL: https://github.com/RWTH-EBC/AixLib/tree/issue344_recordsForMaterials +Pull Request URL: https://github.com/RWTH-EBC/AixLib/pull/1260 +****************************** +Name: FaridDavani +Branch: issue353_districtHeatingExample +GitHub E-Mail: fdavani@eonerc.rwth-aachen.de +Slack_channel_ID: C02NXDEL1GD +The branch issue353_districtHeatingExample has been inactive for more than 1741 days. A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch. +User name: FaridDavani +Branch URL: https://github.com/RWTH-EBC/AixLib/tree/issue353_districtHeatingExample +Pull Request URL: https://github.com/RWTH-EBC/AixLib/pull/1261 +****************************** +Name: MichaMans +Branch: issue403_dev_integration_2 +GitHub E-Mail: michael.mans@hotmail.com +Slack_channel_ID: C02NXDEL1GD +The branch issue403_dev_integration_2 has been inactive for more than 872 days. A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch. +User name: MichaMans +Branch URL: https://github.com/RWTH-EBC/AixLib/tree/issue403_dev_integration_2 +Pull Request URL: https://github.com/RWTH-EBC/AixLib/pull/1262 +****************************** +Name: Neuland +Branch: issue403_dev_integration_4 +GitHub E-Mail: mma-nne@eonerc.rwth-aachen.de +Slack_channel_ID: C02NXDEL1GD +The branch issue403_dev_integration_4 has been inactive for more than 858 days. A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch. +User name: Neuland +Branch URL: https://github.com/RWTH-EBC/AixLib/tree/issue403_dev_integration_4 +Pull Request URL: https://github.com/RWTH-EBC/AixLib/pull/1263 +****************************** +Name: TobiasBlacha +Branch: issue403_dhc_pipes_heatLosses +GitHub E-Mail: tobias.blacha@rwth-aachen.de +Slack_channel_ID: C02NXDEL1GD +The branch issue403_dhc_pipes_heatLosses has been inactive for more than 522 days. A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch. +User name: TobiasBlacha +Branch URL: https://github.com/RWTH-EBC/AixLib/tree/issue403_dhc_pipes_heatLosses +Pull Request URL: https://github.com/RWTH-EBC/AixLib/pull/1264 +****************************** +Name: TobiasBlacha +Branch: issue403_dhc_substation_refactoring +GitHub E-Mail: tobias.blacha@rwth-aachen.de +Slack_channel_ID: C02NXDEL1GD +The branch issue403_dhc_substation_refactoring has been inactive for more than 518 days. A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch. +User name: TobiasBlacha +Branch URL: https://github.com/RWTH-EBC/AixLib/tree/issue403_dhc_substation_refactoring +Pull Request URL: https://github.com/RWTH-EBC/AixLib/pull/1265 +****************************** +Name: Michael Mans +Branch: issue403_dhc_substations +GitHub E-Mail: michael.mans@rwth-aachen.de +Slack_channel_ID: C02NXDEL1GD +The branch issue403_dhc_substations has been inactive for more than 523 days. A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch. +User name: Michael Mans +Branch URL: https://github.com/RWTH-EBC/AixLib/tree/issue403_dhc_substations +Pull Request URL: https://github.com/RWTH-EBC/AixLib/pull/1266 +****************************** +Name: MichaMans +Branch: issue403_dhc +GitHub E-Mail: michael.mans@hotmail.com +Slack_channel_ID: C02NXDEL1GD +The branch issue403_dhc has been inactive for more than 124 days. The branch is automatically deleted after 180 days. If you want to keep the branch, add changes to the branch. A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch. +User name: MichaMans +Branch URL: https://github.com/RWTH-EBC/AixLib/tree/issue403_dhc +****************************** +Name: Mirko Engelpracht +Branch: issue407_ModularScalableHeatPumps +GitHub E-Mail: Mirko.Engelpracht@rwth-aachen.de +Slack_channel_ID: C02NXDEL1GD +The branch issue407_ModularScalableHeatPumps has been inactive for more than 1527 days. A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch. +User name: Mirko Engelpracht +Branch URL: https://github.com/RWTH-EBC/AixLib/tree/issue407_ModularScalableHeatPumps +Pull Request URL: https://github.com/RWTH-EBC/AixLib/pull/1267 +****************************** +Name: pja +Branch: issue410_dataCenter +GitHub E-Mail: pjahangiri@eonerc.rwth-aachen.de +Slack_channel_ID: UC0EG0223 +The branch issue410_dataCenter has been inactive for more than 1761 days. A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch. +User name: pja +Branch URL: https://github.com/RWTH-EBC/AixLib/tree/issue410_dataCenter +Pull Request URL: https://github.com/RWTH-EBC/AixLib/pull/1268 +****************************** +Name: marcusfuchs +Branch: issue412_zoneRecords +GitHub E-Mail: mfuchs@eonerc.rwth-aachen.de +Slack_channel_ID: UBXTENP51 +The branch issue412_zoneRecords has been inactive for more than 1761 days. A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch. +User name: marcusfuchs +Branch URL: https://github.com/RWTH-EBC/AixLib/tree/issue412_zoneRecords +Pull Request URL: https://github.com/RWTH-EBC/AixLib/pull/1269 +****************************** +Name: Mirko Engelpracht +Branch: issue516_MovingBoundaryHX +GitHub E-Mail: Mirko.Engelpracht@rwth-aachen.de +Slack_channel_ID: C02NXDEL1GD +The branch issue516_MovingBoundaryHX has been inactive for more than 1570 days. A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch. +User name: Mirko Engelpracht +Branch URL: https://github.com/RWTH-EBC/AixLib/tree/issue516_MovingBoundaryHX +Pull Request URL: https://github.com/RWTH-EBC/AixLib/pull/1270 +****************************** +Name: SeRemy +Branch: issue520_PnH +GitHub E-Mail: sebastian.remy@eonerc.rwth-aachen.de +Slack_channel_ID: UBYMSC6QY +The branch issue520_PnH has been inactive for more than 1022 days. A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch. +User name: SeRemy +Branch URL: https://github.com/RWTH-EBC/AixLib/tree/issue520_PnH +Pull Request URL: https://github.com/RWTH-EBC/AixLib/pull/1271 +****************************** +Name: florian.stinner +Branch: issue525_dataPointNamingSchema +GitHub E-Mail: fstinner@eonerc.rwth-aachen.de +Slack_channel_ID: UBZ9FB3L3 +The branch issue525_dataPointNamingSchema has been inactive for more than 1547 days. A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch. +User name: florian.stinner +Branch URL: https://github.com/RWTH-EBC/AixLib/tree/issue525_dataPointNamingSchema +Pull Request URL: https://github.com/RWTH-EBC/AixLib/pull/1272 +****************************** +Name: FabianBekemeier +Branch: issue575_benchmarkModel_reworked +GitHub E-Mail: fabian.bekemeier@rwth-aachen.de +Slack_channel_ID: UV1JYBEBC +The branch issue575_benchmarkModel_reworked has been inactive for more than 602 days. A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch. +User name: FabianBekemeier +Branch URL: https://github.com/RWTH-EBC/AixLib/tree/issue575_benchmarkModel_reworked +Pull Request URL: https://github.com/RWTH-EBC/AixLib/pull/1273 +****************************** +Name: Luca Vedda +Branch: issue575_benchmarkModel +GitHub E-Mail: luca.vedda@rwth-aachen.de +Slack_channel_ID: UBZ69NHNG +The branch issue575_benchmarkModel has been inactive for more than 1216 days. A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch. +User name: Luca Vedda +Branch URL: https://github.com/RWTH-EBC/AixLib/tree/issue575_benchmarkModel +Pull Request URL: https://github.com/RWTH-EBC/AixLib/pull/1274 +****************************** +Name: Sven-Heiko Hinrichs +Branch: issue590_ExpansionValve +GitHub E-Mail: sven.hinrichs@eonerc.rwth-aachen.de +Slack_channel_ID: UBZ9F4VL3 +The branch issue590_ExpansionValve has been inactive for more than 1210 days. A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch. +User name: Sven-Heiko Hinrichs +Branch URL: https://github.com/RWTH-EBC/AixLib/tree/issue590_ExpansionValve +Pull Request URL: https://github.com/RWTH-EBC/AixLib/pull/1275 +****************************** +Name: StGoebel +Branch: issue609_physicalCompressor +GitHub E-Mail: stephan.goebel@eonerc.rwth-aachen.de +Slack_channel_ID: UC024TPCM +The branch issue609_physicalCompressor has been inactive for more than 1096 days. A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch. +User name: StGoebel +Branch URL: https://github.com/RWTH-EBC/AixLib/tree/issue609_physicalCompressor +Pull Request URL: https://github.com/RWTH-EBC/AixLib/pull/1276 +****************************** +Name: mschumacher247 +Branch: issue610_model_calibration +GitHub E-Mail: mschumacher@eonerc.rwth-aachen.de +Slack_channel_ID: UBYMS5MNC +Cannot create Pull Request: {'message': 'Validation Failed', 'errors': [{'resource': 'PullRequest', 'code': 'custom', 'message': 'No commits between development and issue610_model_calibration'}], 'documentation_url': 'https://docs.github.com/rest/reference/pulls#create-a-pull-request'} +The branch issue610_model_calibration has been inactive for more than 1300 days. +****************************** +Name: florian.stinner +Branch: issue634_BibtexToReadme +GitHub E-Mail: fstinner@eonerc.rwth-aachen.de +Slack_channel_ID: UBZ9FB3L3 +The branch issue634_BibtexToReadme has been inactive for more than 1270 days. A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch. +User name: florian.stinner +Branch URL: https://github.com/RWTH-EBC/AixLib/tree/issue634_BibtexToReadme +Pull Request URL: https://github.com/RWTH-EBC/AixLib/pull/1277 +****************************** +Name: Philipp Mehrfeld +Branch: issue664_decentralizedventilation +GitHub E-Mail: pmehrfeld@eonerc.rwth-aachen.de +Slack_channel_ID: UBZAJ7CBG +Cannot create Pull Request: {'message': 'Validation Failed', 'errors': [{'resource': 'PullRequest', 'code': 'custom', 'message': 'No commits between development and issue664_decentralizedventilation'}], 'documentation_url': 'https://docs.github.com/rest/reference/pulls#create-a-pull-request'} +The branch issue664_decentralizedventilation has been inactive for more than 1238 days. +****************************** +Name: StGoebel +Branch: issue665_newRefrigerantsModelsR744R32 +GitHub E-Mail: stephan.goebel@eonerc.rwth-aachen.de +Slack_channel_ID: UC024TPCM +The branch issue665_newRefrigerantsModelsR744R32 has been inactive for more than 1166 days. A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch. +User name: StGoebel +Branch URL: https://github.com/RWTH-EBC/AixLib/tree/issue665_newRefrigerantsModelsR744R32 +Pull Request URL: https://github.com/RWTH-EBC/AixLib/pull/1278 +****************************** +Name: aco +Branch: issue697_unitTests +GitHub E-Mail: aconstantin@eonerc.rwth-aachen.de +Slack_channel_ID: UBZDE47H8 +The branch issue697_unitTests has been inactive for more than 1105 days. A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch. +User name: aco +Branch URL: https://github.com/RWTH-EBC/AixLib/tree/issue697_unitTests +Pull Request URL: https://github.com/RWTH-EBC/AixLib/pull/1279 +****************************** +Name: aco +Branch: issue718_EnhanceUnitTests +GitHub E-Mail: aconstantin@eonerc.rwth-aachen.de +Slack_channel_ID: UBZDE47H8 +The branch issue718_EnhanceUnitTests has been inactive for more than 1039 days. A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch. +User name: aco +Branch URL: https://github.com/RWTH-EBC/AixLib/tree/issue718_EnhanceUnitTests +Pull Request URL: https://github.com/RWTH-EBC/AixLib/pull/1280 +****************************** +Name: Ana Constantin +Branch: issue726_AdaptReaderTMY3forHOM +GitHub E-Mail: aconstantin@eonerc.rwth-aachen.de +Slack_channel_ID: UBZDE47H8 +Cannot create Pull Request: {'message': 'Validation Failed', 'errors': [{'resource': 'PullRequest', 'code': 'custom', 'message': 'No commits between development and issue726_AdaptReaderTMY3forHOM'}], 'documentation_url': 'https://docs.github.com/rest/reference/pulls#create-a-pull-request'} +The branch issue726_AdaptReaderTMY3forHOM has been inactive for more than 1062 days. +****************************** +Name: KonstantinaXanthopoulou +Branch: issue882_WallvsWall_ASHRAE140 +GitHub E-Mail: konstantina.xanthopoulou@tlk-energy.de +Slack_channel_ID: C02NXDEL1GD +Cannot create Pull Request: {'message': 'Validation Failed', 'errors': [{'resource': 'PullRequest', 'code': 'custom', 'message': 'No commits between development and issue882_WallvsWall_ASHRAE140'}], 'documentation_url': 'https://docs.github.com/rest/reference/pulls#create-a-pull-request'} +The branch issue882_WallvsWall_ASHRAE140 has been inactive for more than 717 days. +****************************** +Name: KonstantinaXanthopoulou +Branch: issue889_AOIDependendTransmittance +GitHub E-Mail: konstantina.xanthopoulou@tlk-energy.de +Slack_channel_ID: C02NXDEL1GD +Cannot create Pull Request: {'message': 'Validation Failed', 'errors': [{'resource': 'PullRequest', 'code': 'custom', 'message': 'No commits between development and issue889_AOIDependendTransmittance'}], 'documentation_url': 'https://docs.github.com/rest/reference/pulls#create-a-pull-request'} +The branch issue889_AOIDependendTransmittance has been inactive for more than 714 days. +****************************** +Name: Stephan +Branch: issue890_HOMProject_FloorHeating +GitHub E-Mail: stephan.goebel@rwth-aachen.de +Slack_channel_ID: UC024TPCM +The branch issue890_HOMProject_FloorHeating has been inactive for more than 164 days. The branch is automatically deleted after 180 days. If you want to keep the branch, add changes to the branch. A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch. +User name: Stephan +Branch URL: https://github.com/RWTH-EBC/AixLib/tree/issue890_HOMProject_FloorHeating +****************************** +Name: KonstantinaXanthopoulou +Branch: issue896_solardistributionfractions +GitHub E-Mail: konstantina.xanthopoulou@tlk-energy.de +Slack_channel_ID: C02NXDEL1GD +Cannot create Pull Request: {'message': 'Validation Failed', 'errors': [{'resource': 'PullRequest', 'code': 'custom', 'message': 'No commits between development and issue896_solardistributionfractions'}], 'documentation_url': 'https://docs.github.com/rest/reference/pulls#create-a-pull-request'} +The branch issue896_solardistributionfractions has been inactive for more than 713 days. +****************************** +Name: KonstantinaXanthopoulou +Branch: issue898_WallASHRAE140_update +GitHub E-Mail: konstantina.xanthopoulou@tlk-energy.de +Slack_channel_ID: C02NXDEL1GD +Cannot create Pull Request: {'message': 'Validation Failed', 'errors': [{'resource': 'PullRequest', 'code': 'custom', 'message': 'No commits between development and issue898_WallASHRAE140_update'}], 'documentation_url': 'https://docs.github.com/rest/reference/pulls#create-a-pull-request'} +The branch issue898_WallASHRAE140_update has been inactive for more than 712 days. +****************************** +Name: Alexander +Branch: issue927_mergeIBPSAv3 +GitHub E-Mail: akuempel@eonerc.rwth-aachen.de +Slack_channel_ID: UC0EFLHPH +The branch issue927_mergeIBPSAv3 has been inactive for more than 665 days. A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch. +User name: Alexander +Branch URL: https://github.com/RWTH-EBC/AixLib/tree/issue927_mergeIBPSAv3 +Pull Request URL: https://github.com/RWTH-EBC/AixLib/pull/1281 +****************************** +Name: DaJansenGit +Branch: issue1000_optionalPumpInConsumer +GitHub E-Mail: david.jansen1@rwth-aachen.de +Slack_channel_ID: UBZBC2QUW +The branch issue1000_optionalPumpInConsumer has been inactive for more than 361 days. A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch. +User name: DaJansenGit +Branch URL: https://github.com/RWTH-EBC/AixLib/tree/issue1000_optionalPumpInConsumer +Pull Request URL: https://github.com/RWTH-EBC/AixLib/pull/1282 +****************************** +Name: Christian Wenzel +Branch: issue1064_RomTabsIntegration +GitHub E-Mail: ctwenzel@yahoo.de +Slack_channel_ID: C02NXDEL1GD +The branch issue1064_RomTabsIntegration has been inactive for more than 228 days. A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch. +User name: Christian Wenzel +Branch URL: https://github.com/RWTH-EBC/AixLib/tree/issue1064_RomTabsIntegration +Pull Request URL: https://github.com/RWTH-EBC/AixLib/pull/1283 +****************************** +Name: phillip.stoffel +Branch: issue1108_addGeothermalValidationData +GitHub E-Mail: phillip.stoffel@rwth-aachen.de +Slack_channel_ID: UGLHKUZCJ +The branch issue1108_addGeothermalValidationData has been inactive for more than 116 days. The branch is automatically deleted after 180 days. If you want to keep the branch, add changes to the branch. A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch. +User name: phillip.stoffel +Branch URL: https://github.com/RWTH-EBC/AixLib/tree/issue1108_addGeothermalValidationData +****************************** +Name: Larissa Khn +Branch: issue1122_AirExchangeBoolean +GitHub E-Mail: larissa.kuehn@rwth-aachen.de +Slack_channel_ID: UTJK18M41 +The branch issue1122_AirExchangeBoolean has been inactive for more than 164 days. The branch is automatically deleted after 180 days. If you want to keep the branch, add changes to the branch. A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch. +User name: Larissa Khn +Branch URL: https://github.com/RWTH-EBC/AixLib/tree/issue1122_AirExchangeBoolean +****************************** +Name: JanineBardey +Branch: issue1143_greenWall +GitHub E-Mail: janine.barey@eonerc.rwth-aachen.de +Slack_channel_ID: C02NXDEL1GD +The branch issue1143_greenWall has been inactive for more than 290 days. A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch. +User name: JanineBardey +Branch URL: https://github.com/RWTH-EBC/AixLib/tree/issue1143_greenWall +Pull Request URL: https://github.com/RWTH-EBC/AixLib/pull/1284 +****************************** +Name: SvenHinrichs +Branch: issue1144_adapt_CHPSystem_to_OM +GitHub E-Mail: 40233057+SvenHinrichs@users.noreply.github.com +Slack_channel_ID: C02NXDEL1GD +Cannot create Pull Request: {'message': 'Validation Failed', 'errors': [{'resource': 'PullRequest', 'code': 'custom', 'message': 'No commits between development and issue1144_adapt_CHPSystem_to_OM'}], 'documentation_url': 'https://docs.github.com/rest/reference/pulls#create-a-pull-request'} +The branch issue1144_adapt_CHPSystem_to_OM has been inactive for more than 181 days. +****************************** +Name: Martin Kremer +Branch: issue1179_ChangeObsoletePumpModels +GitHub E-Mail: 48821826+KremerMartin@users.noreply.github.com +Slack_channel_ID: C02NXDEL1GD +The branch issue1179_ChangeObsoletePumpModels has been inactive for more than 159 days. The branch is automatically deleted after 180 days. If you want to keep the branch, add changes to the branch. A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch. +User name: Martin Kremer +Branch URL: https://github.com/RWTH-EBC/AixLib/tree/issue1179_ChangeObsoletePumpModels +****************************** +Name: Larissa Khn +Branch: issue1188_SimulateAndPlotROM +GitHub E-Mail: larissa.kuehn@rwth-aachen.de +Slack_channel_ID: UTJK18M41 +The branch issue1188_SimulateAndPlotROM has been inactive for more than 155 days. The branch is automatically deleted after 180 days. If you want to keep the branch, add changes to the branch. A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch. +User name: Larissa Khn +Branch URL: https://github.com/RWTH-EBC/AixLib/tree/issue1188_SimulateAndPlotROM +****************************** +Name: Martin Kremer +Branch: issue1193_OnlyHumidifierBug +GitHub E-Mail: martin.theodor.kremer@rwth-aachen.de +Slack_channel_ID: C02NXDEL1GD +The branch issue1193_OnlyHumidifierBug has been inactive for more than 116 days. The branch is automatically deleted after 180 days. If you want to keep the branch, add changes to the branch. A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch. +User name: Martin Kremer +Branch URL: https://github.com/RWTH-EBC/AixLib/tree/issue1193_OnlyHumidifierBug +****************************** +Name: fabian.wuellhorst +Branch: issue1204_wrongTable +GitHub E-Mail: fabian.wuellhorst@rwth-aachen.de +Slack_channel_ID: U027D07QSAZ +The branch issue1204_wrongTable has been inactive for more than 117 days. The branch is automatically deleted after 180 days. If you want to keep the branch, add changes to the branch. A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch. +User name: fabian.wuellhorst +Branch URL: https://github.com/RWTH-EBC/AixLib/tree/issue1204_wrongTable +****************************** +Name: Jonas Grossmann +Branch: ma_jgr +GitHub E-Mail: jonas.grossmann@eonerc.rwth-aachen.de +Slack_channel_ID: U0119BWBLT1 +The branch ma_jgr has been inactive for more than 476 days. A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch. +User name: Jonas Grossmann +Branch URL: https://github.com/RWTH-EBC/AixLib/tree/ma_jgr +Pull Request URL: https://github.com/RWTH-EBC/AixLib/pull/1285 +****************************** +Name: Chen +Branch: mma-zch +GitHub E-Mail: mma-zch@eonerc.rwth-aachen.de +Slack_channel_ID: C02NXDEL1GD +The branch mma-zch has been inactive for more than 930 days. A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch. +User name: Chen +Branch URL: https://github.com/RWTH-EBC/AixLib/tree/mma-zch +Pull Request URL: https://github.com/RWTH-EBC/AixLib/pull/1286 +****************************** +Name: Peter Remmen +Branch: project_BWN +GitHub E-Mail: PRemmen@eonerc.rwth-aachen.de +Slack_channel_ID: UBY61UC05 +The branch project_BWN has been inactive for more than 516 days. A pull request is created and the branch is then deleted. If you want to restore the branch, go to the closed pull requests and restore your branch. +User name: Peter Remmen +Branch URL: https://github.com/RWTH-EBC/AixLib/tree/project_BWN +Pull Request URL: https://github.com/RWTH-EBC/AixLib/pull/1287 \ No newline at end of file diff --git a/bin/Configfiles/exit.sh b/bin/Configfiles/exit.sh new file mode 100644 index 0000000000..fc26162516 --- /dev/null +++ b/bin/Configfiles/exit.sh @@ -0,0 +1 @@ +FAIL \ No newline at end of file diff --git a/bin/04_Documentation/How_to_integrate_new_tests.md b/bin/Documentation/How_to_integrate_new_tests.md similarity index 100% rename from bin/04_Documentation/How_to_integrate_new_tests.md rename to bin/Documentation/How_to_integrate_new_tests.md diff --git a/bin/04_Documentation/Images/Aixliblib.png b/bin/Documentation/Images/Aixliblib.png similarity index 100% rename from bin/04_Documentation/Images/Aixliblib.png rename to bin/Documentation/Images/Aixliblib.png diff --git a/bin/04_Documentation/Images/CreateNewBranch.png b/bin/Documentation/Images/CreateNewBranch.png similarity index 100% rename from bin/04_Documentation/Images/CreateNewBranch.png rename to bin/Documentation/Images/CreateNewBranch.png diff --git a/bin/04_Documentation/Images/DockerRegistry.png b/bin/Documentation/Images/DockerRegistry.png similarity index 100% rename from bin/04_Documentation/Images/DockerRegistry.png rename to bin/Documentation/Images/DockerRegistry.png diff --git a/bin/04_Documentation/Images/GITLABCI.png b/bin/Documentation/Images/GITLABCI.png similarity index 100% rename from bin/04_Documentation/Images/GITLABCI.png rename to bin/Documentation/Images/GITLABCI.png diff --git a/bin/04_Documentation/Images/GitLabCIWorkflow.png b/bin/Documentation/Images/GitLabCIWorkflow.png similarity index 100% rename from bin/04_Documentation/Images/GitLabCIWorkflow.png rename to bin/Documentation/Images/GitLabCIWorkflow.png diff --git a/bin/04_Documentation/Images/HTMLProcess.png b/bin/Documentation/Images/HTMLProcess.png similarity index 100% rename from bin/04_Documentation/Images/HTMLProcess.png rename to bin/Documentation/Images/HTMLProcess.png diff --git a/bin/04_Documentation/Images/Keywords.png b/bin/Documentation/Images/Keywords.png similarity index 100% rename from bin/04_Documentation/Images/Keywords.png rename to bin/Documentation/Images/Keywords.png diff --git a/bin/04_Documentation/Images/MergeProcess.PNG b/bin/Documentation/Images/MergeProcess.PNG similarity index 100% rename from bin/04_Documentation/Images/MergeProcess.PNG rename to bin/Documentation/Images/MergeProcess.PNG diff --git a/bin/04_Documentation/Images/Mirroring_ssh.PNG b/bin/Documentation/Images/Mirroring_ssh.PNG similarity index 100% rename from bin/04_Documentation/Images/Mirroring_ssh.PNG rename to bin/Documentation/Images/Mirroring_ssh.PNG diff --git a/bin/04_Documentation/Images/ModelManagement_StyleChecking.PNG b/bin/Documentation/Images/ModelManagement_StyleChecking.PNG similarity index 100% rename from bin/04_Documentation/Images/ModelManagement_StyleChecking.PNG rename to bin/Documentation/Images/ModelManagement_StyleChecking.PNG diff --git a/bin/04_Documentation/Images/Pipeline.PNG b/bin/Documentation/Images/Pipeline.PNG similarity index 100% rename from bin/04_Documentation/Images/Pipeline.PNG rename to bin/Documentation/Images/Pipeline.PNG diff --git a/bin/04_Documentation/Images/PipelineProcess.png b/bin/Documentation/Images/PipelineProcess.png similarity index 100% rename from bin/04_Documentation/Images/PipelineProcess.png rename to bin/Documentation/Images/PipelineProcess.png diff --git a/bin/04_Documentation/Images/RWTH_AixLib.png b/bin/Documentation/Images/RWTH_AixLib.png similarity index 100% rename from bin/04_Documentation/Images/RWTH_AixLib.png rename to bin/Documentation/Images/RWTH_AixLib.png diff --git a/bin/04_Documentation/Images/Register_Runner.PNG b/bin/Documentation/Images/Register_Runner.PNG similarity index 100% rename from bin/04_Documentation/Images/Register_Runner.PNG rename to bin/Documentation/Images/Register_Runner.PNG diff --git a/bin/04_Documentation/Images/Registry.png b/bin/Documentation/Images/Registry.png similarity index 100% rename from bin/04_Documentation/Images/Registry.png rename to bin/Documentation/Images/Registry.png diff --git a/bin/04_Documentation/Images/RegistryIntegrate.png b/bin/Documentation/Images/RegistryIntegrate.png similarity index 100% rename from bin/04_Documentation/Images/RegistryIntegrate.png rename to bin/Documentation/Images/RegistryIntegrate.png diff --git a/bin/04_Documentation/Images/Stages.png b/bin/Documentation/Images/Stages.png similarity index 100% rename from bin/04_Documentation/Images/Stages.png rename to bin/Documentation/Images/Stages.png diff --git a/bin/04_Documentation/Images/Thumbs.db b/bin/Documentation/Images/Thumbs.db similarity index 100% rename from bin/04_Documentation/Images/Thumbs.db rename to bin/Documentation/Images/Thumbs.db diff --git a/bin/04_Documentation/Images/Webhook_trigger.PNG b/bin/Documentation/Images/Webhook_trigger.PNG similarity index 100% rename from bin/04_Documentation/Images/Webhook_trigger.PNG rename to bin/Documentation/Images/Webhook_trigger.PNG diff --git a/bin/04_Documentation/Images/Workflow.png b/bin/Documentation/Images/Workflow.png similarity index 100% rename from bin/04_Documentation/Images/Workflow.png rename to bin/Documentation/Images/Workflow.png diff --git a/bin/04_Documentation/Images/extends.png b/bin/Documentation/Images/extends.png similarity index 100% rename from bin/04_Documentation/Images/extends.png rename to bin/Documentation/Images/extends.png diff --git a/bin/04_Documentation/Images/only.png b/bin/Documentation/Images/only.png similarity index 100% rename from bin/04_Documentation/Images/only.png rename to bin/Documentation/Images/only.png diff --git a/bin/04_Documentation/Images/public_key.PNG b/bin/Documentation/Images/public_key.PNG similarity index 100% rename from bin/04_Documentation/Images/public_key.PNG rename to bin/Documentation/Images/public_key.PNG diff --git a/bin/04_Documentation/README.md b/bin/Documentation/README.md similarity index 75% rename from bin/04_Documentation/README.md rename to bin/Documentation/README.md index b06f80ff1b..ae105c24a5 100644 --- a/bin/04_Documentation/README.md +++ b/bin/Documentation/README.md @@ -5,7 +5,7 @@ Here you find the Documentation for CI with AixLib 1. [General Documentation](https://github.com/RWTH-EBC/AixLib/blob/development/bin/04_Documentation/Documentation_GitLab.md) -2. [How to integrate Unittests](https://github.com/RWTH-EBC/AixLib/blob/development/bin/04_Documentation/How_to_integrate_new_tests.md) More from a CI Environment view +2. [How to integrate Unittests](How_to_integrate_new_tests.md) More from a CI Environment view 3. [Gitlab CICD Commands](https://github.com/RWTH-EBC/AixLib/blob/development/bin/04_Documentation/Gitlab_CICD_Commands.md) From a Modelica POV diff --git a/bin/README.md b/bin/README.md index 49612370ab..10fe4b595e 100644 --- a/bin/README.md +++ b/bin/README.md @@ -7,240 +7,96 @@ Typical actions are translating and linking the application parts, but in princi Usually, not only the entire system is rebuilt, but also automated tests are performed and software metrics are created to measure software quality. The whole process is automatically triggered by checking into the version control system. -### How we use CI? -In our case we mirror a github repository in GitLab. This way the repository can be tested and corrected with the CI in Gitlab. -We also use the Docker service to create an image containing Dymola and thus be able to simulate models in Dymola. -For more information read the [General Documentation](https://github.com/RWTH-EBC/AixLib/blob/development/bin/04_Documentation/Documentation_GitLab.md) and the Repository [Dymola-Docker](https://git.rwth-aachen.de/EBC/EBC_intern/dymola-docker) +## CI commands and ci [lists](interact_CI) -![E.ON EBC RWTH Aachen University](04_Documentation/Images/GITLABCI.png) +- `git commit -m "ci_update_ref"` # Update referencefiles for all models that are added in file bin/08_interact_CI/update_ref.txt +- `git commit -m "ci_show_ref"` # plot all referencefiles that are added in file bin/08_interact_CI/show_ref.txt [only as pull_request] +- `git commit -m "ci_correct_html"` # CI bot message: correct html syntax +- `git commit -m "ci_create_whitelist"` # create a new whitelist for the model check +- `git commit -m "ci_create_html_whitelist"`# create a new html whitelist for the html check +- `git commit -m "ci_simulate"` # Simulate all examples +- `git commit -m "ci_check"` # Check all models +- `git commit -m "ci_regression_test"` # Start the regression test [only as pull_request] +- `git commit -m "ci_html"` # Test only the html of models +- `git commit -m " [skip ci]"` # Skip the CI ## What CI Tests are implement? -#### Check, Simulate and Regressiontest: [UnitTests](https://github.com/RWTH-EBC/AixLib/blob/development/bin/02_CITests/UnitTests) +#### Check, Simulate and Regressiontest: [UnitTests](CITests/02_UnitTests) With these tests, models are validated or simulated or models will compared and evaluated with stored values by means of a unit test. -#### Correct HTML and Style Check: [SyntaxTest](https://github.com/RWTH-EBC/AixLib/blob/development/bin/02_CITests/SyntaxTests) +#### Correct HTML and Style Check: [SyntaxTest](CITests/03_SyntaxTests) The html code (documentation) is tested and corrected if necessary. Thus the deposited HTML code is checked for correctness and corrected. With the ModelManagement library in dymola the style of the models is checked. -#### IBPSA Merge +#### [IBPSA Merge](CITests/06_deploy/IBPSA_Merge) This template performs an automatic IBPSA merge into AixLib. The models of the IBPSA are copied into the AixLib, a new conversion script is created based on the IBPSA and integrated into the AixLib as well as the whitelists are created. -#### Clean the Modelica [CleanUpSkripts](https://github.com/RWTH-EBC/AixLib/blob/development/bin/02_CITests/CleanUpSkripts) -Removes any files that were created when running simulations in Dymola, such as *.mat or dymola.log - ## Folder -The folder contains the subfolder 01_BaseFunction, 02_CITests, 03_Whitelists, 04_Documentation, 05_Templates and 06_Configfiles. - -### 1 BaseFunction -This folder contains tests and functions that are builded for the CI Tests. +The folder contains the subfolder CITests, ci_whitelist, Configfiles, templates, interact_CI and Setting. -### 2 CITests +### CITests This folder contains all CI tests for AixLib in GitLab with unitTests, syntaxTest and cleanUpScripts -For more information view this [CI Tests](https://github.com/RWTH-EBC/AixLib/blob/development/bin/02_CITests). - -### 3 WhiteLists -This folder contains models in [WhiteLists](https://github.com/RWTH-EBC/AixLib/blob/development/bin/03_WhiteLists), which will not test in the CITests. - - -### 4 Documentation -This folder contains [documentation](https://github.com/RWTH-EBC/AixLib/blob/development/bin/04_Documentation) for CI, e.g. how new tests can be integrated or relevant commands for the CI - -### 5 Templates -This folder contains [Templates](https://github.com/RWTH-EBC/AixLib/blob/development/bin/05_Templates) for the CI tests implemented so far. The following example can be used to implement the tests in the CI. - - - - #!/bin/bash - image: registry.git.rwth-aachen.de/ebc/ebc_intern/dymola-docker:miniconda-latest - - stages: - - deleteBranch - - SetSettings - - CheckSettings - - build - - HTMLCheck - - deploy - - openMR - - post - - StyleCheck - - Check - - Simulate - - RegressionTest - - variables: - Praefix_Branch: "Correct_HTML_" - TARGET_BRANCH: $CI_COMMIT_REF_NAME - Newbranch: ${Praefix_Branch}${CI_COMMIT_REF_NAME} - StyleModel: AixLib.Airflow.Multizone.DoorDiscretizedOpen - Github_Repository : RWTH-EBC/AixLib - - - - include: - - project: 'EBC/EBC_all/gitlab_ci/templates' - - file: 'ci-tests/CheckConfiguration/check_settings.gitlab-ci.yml' - - project: 'EBC/EBC_all/gitlab_ci/templates' - - file: 'ci-tests/SyntaxTests/html_check.gitlab-ci.yml' - - project: 'EBC/EBC_all/gitlab_ci/templates' - - file: 'ci-tests/SyntaxTests/style_check.gitlab-ci.yml' - - project: 'EBC/EBC_all/gitlab_ci/templates' - - file: 'ci-tests/UnitTests/check_model.gitlab-ci.yml' - - project: 'EBC/EBC_all/gitlab_ci/templates' - - file: 'ci-tests/UnitTests/regression_test.gitlac-ci.yml' - - project: 'EBC/EBC_all/gitlab_ci/templates' - - file: 'ci-tests/UnitTests/simulate_model.gitlab-ci.yml' - - -The templates are also implemented under the following repository [Templates](https://git.rwth-aachen.de/EBC/EBC_all/gitlab_ci/templates) - -### 6 Configfiles - -This folder contains [Config files](https://github.com/RWTH-EBC/AixLib/blob/development/bin/06_Configfiles) which are used for the CI. - -For question ask [Sven Hinrichs](https://git.rwth-aachen.de/sven.hinrichs) - -# How Configure the CI Tests - -## Configure Variables - -### Github_Repository : -This variable consists of owner/repo (e.g. RWTH-EBC/AixLib). -The variable is used for creating a pull request as well as create a new branch and push into that branch. - -### StyleModel: - -This variable is necessary for the StyleCheck und will check the Style of a modelica model (e.g. "StyleModel: AixLib.Airflow.Multizone.DoorDiscretizedOpen") - -## Mirroring -Repository mirroring allows for mirroring of repositories to and from external sources. It can be used to mirror branches, tags, and commits between repositories. - -### Pull - [Mirroring](https://docs.gitlab.com/ee/user/project/repository/repository_mirroring.html) -Pull: for mirroring a repository from another location to GitLab. . - -##### SSH authentication - -If you’re mirroring over SSH (that is, using an ssh:// URL), you can authenticate using: - -- Password-based authentication, just as over HTTPS. -- Public key authentication. This is often more secure than password authentication, especially when the other repository supports Deploy Keys. - -To get started: - -1. Navigate to your project’s Settings > Repository and expand the Mirroring repositories section. -2. Enter an ssh :// - URL for mirroring (e.g ssh://github.com/"owner"/"repo".git. ) - -![E.ON EBC RWTH Aachen University](04_Documentation/Images/Mirroring_ssh.PNG) - -Now GitLab should recognize a host key and you can mirror your repository. -After this copy the ssh public key and add the key as a deploy key to your gitlab and github repository. - -In GitLab: General -> CI/CD -> Deploy Keys (Activate Write access allowed button) -In Github: Settings -> Deploy keys - -![E.ON EBC RWTH Aachen University](04_Documentation/Images/public_key.PNG) - -### [GITHUB_API_TOKEN](https://help.github.com/en/github/authenticating-to-github/creating-a-personal-access-token-for-the-command-line) -Creating a personal access token for the command line - - 1. Verify your email address, if it hasn't been verified yet. - 2. In the upper-right corner of any page, click your profile photo, then click Settings. - 3. In the left sidebar, click Developer settings. - 4. In the left sidebar, click Personal access tokens. - 5. Click Generate new token. - 6. Give your token a descriptive name. - 7. Select the scopes, or permissions, you'd like to grant this token. To use your token to access repositories from the command line, select repo. - 8. Click Generate token. - 9. Click to copy the token to your clipboard. For security reasons, after you navigate off the page, you will not be able to see the token again. - 10. Add to your Variable GITHUB_API_TOKEN - -### [GL_TOKEN](https://docs.gitlab.com/ee/user/profile/personal_access_tokens.html) -Creating a personal access token - -You can create as many personal access tokens as you like from your GitLab profile. - - 1. Log in to GitLab. - 2. In the upper-right corner, click your avatar and select Settings. - 3. On the User Settings menu, select Access Tokens. - 4. Choose a name and optional expiry date for the token. - 5. Choose the desired scopes. - 6. Click the Create personal access token button. - 7. Save the personal access token somewhere safe. Once you leave or refresh the page, you won’t be able to access it again. - -## git-config - -Before you push to your branch, please be sure that your git configs are covered with your datas in your github account. - -Set your username: - git config --global user.name "FIRST_NAME LAST_NAME" - -Set your email address: - git config --global user.email "MY_NAME@example.com" - -It is important that these settings are correct, because the github_api.py script creates a pull request and declares you as Assigneed to this pull_request. - -## Test CI Setting -To test if all necessary variables are set push your Code with the commit "Check Settings". This template will look for the Variables GL_TOKEN, GITHUB_API_TOKEN, Github_Repository and GITHUB_PRIVATE_KEY. - - -## Add a Deploy keys -You can launch projects from a GitHub repository to your server by using a deploy key, which is an SSH key that grants access to a single repository. -GitHub attaches the public part of the key directly to your repository instead of a personal user account, and the private part of the key remains on your server. -For more information, see ["Delivering deployments"](https://developer.github.com/v3/guides/delivering-deployments/) - - 1. Run the ssh-keygen procedure on your server, and remember where you save the generated public/private rsa key pair. - 2. In the upper-right corner of any GitHub page, click your profile photo, then click Your profile. - 3. On your profile page, click Repositories, then click the name of your repository. - 4. From your repository, click Settings. - 5. In the sidebar, click Deploy Keys, then click Add deploy key. - 6. Provide a title, paste in your public key. - 7. Select Allow write access if you want this key to have write access to the repository. A deploy key with write access lets a deployment push to the repository. - 8. Click Add key. - -[Setup Deploy keys](https://developer.github.com/v3/guides/managing-deploy-keys/#deploy-keys) -After the public key is configured and added as a deploy key, the private key must be added as a variable in Gitlab. -The name of the variable is GITHUB_PRIVATE_KEY. - - -## [SSH-Agent](https://help.github.com/en/enterprise/2.15/user/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent)/ [Use Deploy Keys in Docker](https://www.webfactory.de/blog/use-ssh-key-for-private-repositories-in-github-actions) -##### Install ssh-agent client: - - - 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )' - -##### Ensure the ssh-agent is running: - - - eval $(ssh-agent -s) - - mkdir -p ~/.ssh - -##### ssh-keyscan detect GitHub´s SSH host keys - - - ssh-keyscan github.com >> ~/.ssh/known_hosts - -##### start the ssh-agent , binding it to a predictable socket location, and finally import the SSH private key into the agent. - - ssh-agent -a /tmp/ssh_agent.sock > /dev/null - - echo "${GITHUB_PRIVATE_KEY}" > ~/.ssh/id_rsa - - chmod 600 ~/.ssh/id_rsa - -## [Setup SSH-Key for GitHub Repository](https://www.heise.de/tipps-tricks/SSH-Key-fuer-GitHub-Repositories-einrichten-4627459.html) -Add your public key to your Github Account or add as a deploy Key to your Repository. - -## GitHub Webhook -To trigger the pipeline for every push and a pull_request u have to setup a webhook. Activate the options "Pushes" and "Pull requests". -To setup webhook you have to follow these steps: - 1. URL_ https://git.rwth-aachen.de/api/v4/projects/$RepositoryID/mirror/pull?private_token=&GL_Token - 2. Content Type: application/json - 3. Enable SSL verification - 4. Select individual events - -![E.ON EBC RWTH Aachen University](04_Documentation/Images/Webhook_trigger.PNG) - - -# To Do - -- Slack Notification in case of pull_request in github -- Image with Private key -- Create a new image in case Dymola is not necessary +For more information view this [CI Tests](CITests). + +### ci_whitelist +This folder contains models in [WhiteLists](ci_whitelist), which will not test in the CITests. + + +### Configfiles + +This folder contains [Config files](Configfiles) which are used for the CI. + +### templates +This folder contains [Templates](templates/03_ci_templates) for the CI tests implemented so far. The following example can be used to implement the tests in the CI. + + image: registry.git.rwth-aachen.de/ebc/ebc_intern/dymola-docker:miniconda-latest + stages: + - check_setting + - build_templates + - Ref_Check + - build + - HTML_Check + - IBPSA_Merge + - create_html_whitelist + - Update_WhiteList + - Release + - StyleCheck + - check + - openMR + - post + - create_whitelist + - simulate + - RegressionTest + - Update_Ref + - plot_ref + - prepare + - deploy + variables: + Github_Repository: RWTH-EBC/AixLib + GITLAB_Page: https://ebc.pages.rwth-aachen.de/EBC_all/github_ci/AixLib + include: + - 'bin/templates/03_ci_templates/01_deploy/gitlab_pages.gitlab-ci.yml' + - 'bin/templates/03_ci_templates/01_deploy/IBPSA_Merge.gitlab-ci.yml' + - 'bin/templates/03_ci_templates/02_UnitTests/check_model.gitlab-ci.yml' + - 'bin/templates/03_ci_templates/02_UnitTests/regression_test.gitlab-ci.yml' + - 'bin/templates/03_ci_templates/02_UnitTests/simulate_model.gitlab-ci.yml' + - 'bin/templates/03_ci_templates/03_SyntaxTest/html_check.gitlab-ci.yml' + - 'bin/templates/03_ci_templates/03_SyntaxTest/style_check.gitlab-ci.yml' + - 'bin/templates/03_ci_templates/04_CleanUpScript/ci_setting.gitlab-ci.yml' + +### [interact_CI](interact_CI) + +This folder is contains CI commands. + +`show_ref.txt`: If certain models are visualized on the basis of the reference files, these must be entered line by line in the text file show_ref.txt. Afterwards the file must be pushed with the command `git commit -m "ci_show_ref"` + +`update_ref.txt`: If the reference files are to be updated for certain models, the reference files must be entered line by line in the text file update_ref.txt. Afterwards the file must be pushed with the CI commands command `git commit -m "ci_update_ref"` + +### [Setting](Setting) + +This folder contains settings for the CI. The CI_setting.toml file contains the variables for the CI. Changes can be made in the toml file. The templates are then updated with the command `python bin/CITests/07_ci_templates/ci_templates.py --setting`. diff --git a/bin/Setting/CI_setting.toml b/bin/Setting/CI_setting.toml new file mode 100644 index 0000000000..caf53dbf6d --- /dev/null +++ b/bin/Setting/CI_setting.toml @@ -0,0 +1 @@ +[library] library_name = "AixLib" [whitelist_library] wh_library_name = "IBPSA" [dymola_version] dymolaversion = "2022" [python_version] python_version= "myenv" [Package] packagelist = [ "Airflow", "BoundaryConditions", "Controls", "Electrical", "Fluid", "Media", "Systems", "ThermalZones", "Utilities", ] [stages] stagelist = [ "check_setting", "build_templates", "Ref_Check", "build", "HTML_Check", "IBPSA_Merge", "create_html_whitelist", "Update_WhiteList", "Release", "StyleCheck", "check", "openMR", "post", "create_whitelist", "simulate", "RegressionTest", "Update_Ref", "plot_ref", "prepare", "deploy", ] [git_url] giturl = "https://github.com/ibpsa/modelica-ibpsa.git" [wh_library_path] wh_path = "None" [Merge_Branch] merge_branch = "IBPSA_Merge" [image_name] image = "registry.git.rwth-aachen.de/ebc/ebc_intern/dymola-docker:Dymola_2022-miniconda" [variable_list] variablelist = [ "Github_Repository: RWTH-EBC/AixLib", "GITLAB_Page: https://ebc.pages.rwth-aachen.de/EBC_all/github_ci/AixLib", ] [ci_commit_commands] commitlist = [ "ci_update_ref", "ci_dif_ref", "ci_correct_html", "ci_create_whitelist", "Automatic push of CI with new regression reference files. Please pull the new files before push again.", "New reference files were pushed to this branch. The job was successfully and the newly added files are tested in another commit.", "ci_show_ref", "ci_regression_test", "ci_check", "ci_simulate", "ci_create_html_whitelist", "ci_html", "ci_setting", ] [File_list] filelist = [ "bin/templates/03_ci_templates/01_deploy/gitlab_pages.gitlab-ci.yml", "bin/templates/03_ci_templates/01_deploy/IBPSA_Merge.gitlab-ci.yml", "bin/templates/03_ci_templates/02_UnitTests/check_model.gitlab-ci.yml", "bin/templates/03_ci_templates/02_UnitTests/regression_test.gitlab-ci.yml", "bin/templates/03_ci_templates/02_UnitTests/simulate_model.gitlab-ci.yml", "bin/templates/03_ci_templates/03_SyntaxTest/html_check.gitlab-ci.yml", "bin/templates/03_ci_templates/03_SyntaxTest/style_check.gitlab-ci.yml", "bin/templates/03_ci_templates/04_CleanUpScript/ci_setting.gitlab-ci.yml", ] [config_list] configlist = [ "html", "style", "check", "simulate", "regression", "Merge", ] \ No newline at end of file diff --git a/bin/Setting/CI_setting_template.txt b/bin/Setting/CI_setting_template.txt new file mode 100644 index 0000000000..3cba28b1e8 --- /dev/null +++ b/bin/Setting/CI_setting_template.txt @@ -0,0 +1,66 @@ +[library] +library_name = "${library}" + +[whitelist_library] +wh_library_name = "${wh_library}" + +[dymola_version] +dymolaversion = "${dymolaversion}" + +[python_version] +python_version= "${python_version}" + +[Package] + packagelist = [ + %for package in package_list: + "${package}", + %endfor + ] + +[stages] + stagelist = [ + %for stage in stage_list: + "${stage}", + %endfor + ] + +[git_url] +giturl = "${git_url}" + +[wh_library_path] +wh_path = "${wh_path}" + +[Merge_Branch] +merge_branch = "${merge_branch}" + +[image_name] +image = "${image_name}" + + +[variable_list] + variablelist = [ + %for variable in variable_main_list: + "${variable}", + %endfor + ] + +[ci_commit_commands] + commitlist = [ + %for commit in except_commit_list: + "${commit}", + %endfor + ] + +[File_list] + filelist = [ + %for file in file_list: + "${file}", + %endfor + ] + +[config_list] + configlist = [ + %for config in config_list: + "${config}", + %endfor + ] diff --git a/bin/Setting/README.md b/bin/Setting/README.md new file mode 100644 index 0000000000..728f017363 --- /dev/null +++ b/bin/Setting/README.md @@ -0,0 +1,2 @@ +### [CI_setting.toml](CI_setting.toml) +This folder contains settings for the CI. The CI_setting.toml file contains the variables for the CI. Changes can be made in the toml file. The templates are then updated with the command `python bin/CITests/07_ci_templates/ci_templates.py --setting`. diff --git a/bin/03_WhiteLists/README.md b/bin/ci_whitelist/README.md similarity index 52% rename from bin/03_WhiteLists/README.md rename to bin/ci_whitelist/README.md index a5087cb906..4cb3c51605 100644 --- a/bin/03_WhiteLists/README.md +++ b/bin/ci_whitelist/README.md @@ -3,20 +3,23 @@ In this folder are the Whitelist for the CI Tests. ## What is implemented? -#### HTML_IBPSA_Whitelist.txt +#### html_whitelist.txt This list contains all IBPSA models. These models will not test with HTML check. In order to keep the whitelist up to date, it should be rewritten regularly. Use the following command: - - python bin/02_CITests/SyntaxTests/html_tidy_errors.py --WhiteList +`python bin/CITests/03_SyntaxTests/html_tidy_errors.py --WhiteList --git-url https://github.com/ibpsa/modelica-ibpsa.git --wh-library IBPSA` -#### WhiteList_CheckModel.txt +#### model_whitelist.txt This list contains all IBPSA models that have not passed the check test. These are therefore not taken into account during the check. Use the following command: - - python bin/02_CITests/UnitTests/CheckPackages/validatetest.py .s AixLib -p AixLib/package.mo --WhiteList +`python bin/CITests/02_UnitTests/CheckPackages/validatetest.py -DS 2020 --repo-dir IBPSA --git-url https://github.com/ibpsa/modelica-ibpsa.git --library AixLib --wh-library IBPSA --whitelist` + +### reference_check_whitelist.txt +Packages, that should be ignored when creating new reference files. ## What is done? - Clone the Repository and Write a Whitelist diff --git a/bin/03_WhiteLists/HTML_IBPSA_WhiteList.txt b/bin/ci_whitelist/html_whitelist.txt similarity index 96% rename from bin/03_WhiteLists/HTML_IBPSA_WhiteList.txt rename to bin/ci_whitelist/html_whitelist.txt index 8ae17edd1d..d858184fdf 100644 --- a/bin/03_WhiteLists/HTML_IBPSA_WhiteList.txt +++ b/bin/ci_whitelist/html_whitelist.txt @@ -125,6 +125,8 @@ IBPSA.ThermalZones.ReducedOrder.Validation.VDI6007.BaseClasses.VerifyDifferenceT IBPSA.ThermalZones.ReducedOrder.Validation.VDI6007.BaseClasses.package.mo +IBPSA.Media.Steam.mo + IBPSA.Media.Air.mo IBPSA.Media.Water.mo @@ -213,16 +215,22 @@ IBPSA.Media.Refrigerants.Validation.R410A_dSpecificVolumeVap_pT.mo IBPSA.Media.Refrigerants.Validation.package.mo +IBPSA.Media.Examples.SteamProperties.mo + IBPSA.Media.Examples.AirTemperatureEnthalpyInversion.mo IBPSA.Media.Examples.PropyleneGlycolWaterProperties.mo +IBPSA.Media.Examples.SteamDerivativeCheck.mo + IBPSA.Media.Examples.WaterDerivativeCheck.mo IBPSA.Media.Examples.AirDerivativeCheck.mo IBPSA.Media.Examples.PropyleneGlycolWaterDerivativeCheck.mo +IBPSA.Media.Examples.SteamSaturationConsistencyCheck.mo + IBPSA.Media.Examples.WaterTemperatureEnthalpyInversion.mo IBPSA.Media.Examples.PropyleneGlycolWaterTemperatureEnthalpyInversion.mo @@ -231,6 +239,8 @@ IBPSA.Media.Examples.WaterProperties.mo IBPSA.Media.Examples.package.mo +IBPSA.Media.Examples.SteamTemperatureEnthalpyInversion.mo + IBPSA.Media.Examples.AirProperties.mo IBPSA.Media.Examples.BaseClasses.TestTemperatureEnthalpyInversion.mo @@ -839,6 +849,8 @@ IBPSA.Fluid.Sources.Boundary_ph.mo IBPSA.Fluid.Sources.PropertySource_T.mo +IBPSA.Fluid.Sources.Outside_CpData.mo + IBPSA.Fluid.Sources.PropertySource_h.mo IBPSA.Fluid.Sources.MassFlowSource_h.mo @@ -867,14 +879,22 @@ IBPSA.Fluid.Sources.Examples.TraceSubstancesFlowSource.mo IBPSA.Fluid.Sources.Examples.Outside_CpLowRise.mo +IBPSA.Fluid.Sources.Examples.Outside_CpData_Specification.mo + IBPSA.Fluid.Sources.Examples.PropertySource_T.mo +IBPSA.Fluid.Sources.Examples.Outside_CpData.mo + IBPSA.Fluid.Sources.Examples.PropertySource_h.mo IBPSA.Fluid.Sources.Examples.MassFlowSource_WeatherData.mo +IBPSA.Fluid.Sources.Examples.Outside_CpData_Angles.mo + IBPSA.Fluid.Sources.Examples.package.mo +IBPSA.Fluid.Sources.Validation.Outside_CpData_Directions.mo + IBPSA.Fluid.Sources.Validation.BoundaryWithX_in.mo IBPSA.Fluid.Sources.Validation.BoundaryWithXi_in.mo @@ -895,6 +915,8 @@ IBPSA.Fluid.BaseClasses.MassFlowRateMultiplier.mo IBPSA.Fluid.BaseClasses.PartialThreeWayResistance.mo +IBPSA.Fluid.BaseClasses.ActuatorFilter.mo + IBPSA.Fluid.BaseClasses.IndexMassFraction.mo IBPSA.Fluid.BaseClasses.PartialResistance.mo @@ -933,6 +955,8 @@ IBPSA.Fluid.BaseClasses.FlowModels.Validation.package.mo IBPSA.Fluid.BaseClasses.Validation.MassFlowRateMultiplier.mo +IBPSA.Fluid.BaseClasses.Validation.ActuatorFilter.mo + IBPSA.Fluid.BaseClasses.Validation.package.mo IBPSA.Fluid.Delays.DelayFirstOrder.mo @@ -983,6 +1007,8 @@ IBPSA.Fluid.Chillers.Validation.Carnot_TEva_HighTemperature.mo IBPSA.Fluid.FixedResistances.PlugFlowPipe.mo +IBPSA.Fluid.FixedResistances.PlugFlowPipeDiscretized.mo + IBPSA.Fluid.FixedResistances.CheckValve.mo IBPSA.Fluid.FixedResistances.HydraulicDiameter.mo @@ -995,7 +1021,7 @@ IBPSA.Fluid.FixedResistances.package.mo IBPSA.Fluid.FixedResistances.LosslessPipe.mo -IBPSA.Fluid.FixedResistances.BaseClasses.PlugFlowCore.mo +IBPSA.Fluid.FixedResistances.BaseClasses.PlugFlowPipe.mo IBPSA.Fluid.FixedResistances.BaseClasses.PlugFlow.mo @@ -1005,14 +1031,12 @@ IBPSA.Fluid.FixedResistances.BaseClasses.PlugFlowHeatLoss.mo IBPSA.Fluid.FixedResistances.BaseClasses.package.mo -IBPSA.Fluid.FixedResistances.BaseClasses.Validation.PlugFlowCore.mo - -IBPSA.Fluid.FixedResistances.BaseClasses.Validation.package.mo - IBPSA.Fluid.FixedResistances.Examples.PlugFlowPipe.mo IBPSA.Fluid.FixedResistances.Examples.FlowJunction.mo +IBPSA.Fluid.FixedResistances.Examples.PlugFlowPipeDiscretized.mo + IBPSA.Fluid.FixedResistances.Examples.CheckValve.mo IBPSA.Fluid.FixedResistances.Examples.HydraulicDiameter.mo @@ -1497,6 +1521,8 @@ IBPSA.Fluid.HeatExchangers.ConstantEffectiveness.mo IBPSA.Fluid.HeatExchangers.package.mo +IBPSA.Fluid.HeatExchangers.WetCoilEffectivenessNTU.mo + IBPSA.Fluid.HeatExchangers.DryCoilEffectivenessNTU.mo IBPSA.Fluid.HeatExchangers.ActiveBeams.CoolingAndHeating.mo @@ -1551,22 +1577,32 @@ IBPSA.Fluid.HeatExchangers.ActiveBeams.Validation.package.mo IBPSA.Fluid.HeatExchangers.ActiveBeams.Validation.NumberOfBeams.mo +IBPSA.Fluid.HeatExchangers.BaseClasses.WetCoilDryWetRegime.mo + IBPSA.Fluid.HeatExchangers.BaseClasses.isobaricExpansionCoefficientWater.mo IBPSA.Fluid.HeatExchangers.BaseClasses.HADryCoil.mo +IBPSA.Fluid.HeatExchangers.BaseClasses.determineWaterIndex.mo + IBPSA.Fluid.HeatExchangers.BaseClasses.dynamicViscosityWater.mo +IBPSA.Fluid.HeatExchangers.BaseClasses.WetCoilUARated.mo + IBPSA.Fluid.HeatExchangers.BaseClasses.ntu_epsilonZ.mo IBPSA.Fluid.HeatExchangers.BaseClasses.PartialEffectiveness.mo IBPSA.Fluid.HeatExchangers.BaseClasses.HACoilInside.mo +IBPSA.Fluid.HeatExchangers.BaseClasses.WetCoilWetRegime.mo + IBPSA.Fluid.HeatExchangers.BaseClasses.prandtlNumberWater.mo IBPSA.Fluid.HeatExchangers.BaseClasses.HANaturalCylinder.mo +IBPSA.Fluid.HeatExchangers.BaseClasses.WetCoilDryRegime.mo + IBPSA.Fluid.HeatExchangers.BaseClasses.epsilon_C.mo IBPSA.Fluid.HeatExchangers.BaseClasses.PartialPrescribedOutlet.mo @@ -1575,6 +1611,8 @@ IBPSA.Fluid.HeatExchangers.BaseClasses.package.mo IBPSA.Fluid.HeatExchangers.BaseClasses.PartialEffectivenessNTU.mo +IBPSA.Fluid.HeatExchangers.BaseClasses.lmtd.mo + IBPSA.Fluid.HeatExchangers.BaseClasses.epsilon_ntuZ.mo IBPSA.Fluid.HeatExchangers.BaseClasses.Examples.HADryCoil.mo @@ -1603,6 +1641,8 @@ IBPSA.Fluid.HeatExchangers.Examples.AirHeater_u.mo IBPSA.Fluid.HeatExchangers.Examples.WaterHeater_u.mo +IBPSA.Fluid.HeatExchangers.Examples.WetCoilEffectivenessNTUMassFlow.mo + IBPSA.Fluid.HeatExchangers.Examples.package.mo IBPSA.Fluid.HeatExchangers.Examples.WaterHeater_T.mo @@ -1627,6 +1667,8 @@ IBPSA.Fluid.HeatExchangers.Validation.ConstantEffectiveness.mo IBPSA.Fluid.HeatExchangers.Validation.package.mo +IBPSA.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU.mo + IBPSA.Fluid.HeatExchangers.Validation.DryCoilEffectivenessNTU.mo IBPSA.Fluid.HeatPumps.ScrollWaterToWater.mo @@ -1871,10 +1913,36 @@ IBPSA.Obsolete.Fluid.Sources.FixedBoundary.mo IBPSA.Obsolete.Fluid.Sources.package.mo +IBPSA.Obsolete.Fluid.FixedResistances.PlugFlowPipe.mo + +IBPSA.Obsolete.Fluid.FixedResistances.package.mo + +IBPSA.Obsolete.Fluid.FixedResistances.BaseClasses.PlugFlowCore.mo + +IBPSA.Obsolete.Fluid.FixedResistances.BaseClasses.package.mo + +IBPSA.Obsolete.Fluid.FixedResistances.BaseClasses.Validation.PlugFlowCore.mo + +IBPSA.Obsolete.Fluid.FixedResistances.BaseClasses.Validation.package.mo + IBPSA.Obsolete.BaseClasses.package.mo IBPSA.Obsolete.BaseClasses.ObsoleteModel.mo +IBPSA.Obsolete.Controls.package.mo + +IBPSA.Obsolete.Controls.Continuous.PIDHysteresis.mo + +IBPSA.Obsolete.Controls.Continuous.PIDHysteresisTimer.mo + +IBPSA.Obsolete.Controls.Continuous.package.mo + +IBPSA.Obsolete.Controls.Continuous.Examples.PIDHysteresis.mo + +IBPSA.Obsolete.Controls.Continuous.Examples.PIDHysteresisTimer.mo + +IBPSA.Obsolete.Controls.Continuous.Examples.package.mo + IBPSA.Utilities.package.mo IBPSA.Utilities.Psychrometrics.TWetBul_TDryBulXi.mo @@ -1901,6 +1969,8 @@ IBPSA.Utilities.Psychrometrics.X_pTphi.mo IBPSA.Utilities.Psychrometrics.pW_X.mo +IBPSA.Utilities.Psychrometrics.hSat_pTSat.mo + IBPSA.Utilities.Psychrometrics.package.mo IBPSA.Utilities.Psychrometrics.SaturationPressureLiquid.mo @@ -2091,6 +2161,8 @@ IBPSA.Utilities.Math.ExponentialIntegralE1.mo IBPSA.Utilities.Math.SmoothMin.mo +IBPSA.Utilities.Math.Polynomial.mo + IBPSA.Utilities.Math.InverseXRegularized.mo IBPSA.Utilities.Math.BesselY1.mo @@ -2111,8 +2183,6 @@ IBPSA.Utilities.Math.package.mo IBPSA.Utilities.Math.Min.mo -IBPSA.Utilities.Math.Polynominal.mo - IBPSA.Utilities.Math.QuadraticLinear.mo IBPSA.Utilities.Math.FallingFactorial.mo @@ -2279,6 +2349,8 @@ IBPSA.Utilities.Math.Examples.ExponentialIntegralE1.mo IBPSA.Utilities.Math.Examples.SmoothMin.mo +IBPSA.Utilities.Math.Examples.Polynomial.mo + IBPSA.Utilities.Math.Examples.InverseXRegularized.mo IBPSA.Utilities.Math.Examples.BesselY1.mo @@ -2295,8 +2367,6 @@ IBPSA.Utilities.Math.Examples.Factorial.mo IBPSA.Utilities.Math.Examples.package.mo -IBPSA.Utilities.Math.Examples.Polynominal.mo - IBPSA.Utilities.Math.Examples.QuadraticLinear.mo IBPSA.Utilities.Math.Examples.FallingFactorial.mo @@ -2389,12 +2459,8 @@ IBPSA.Controls.Discrete.Examples.BooleanDelay.mo IBPSA.Controls.Discrete.Examples.package.mo -IBPSA.Controls.Continuous.PIDHysteresis.mo - IBPSA.Controls.Continuous.NumberOfRequests.mo -IBPSA.Controls.Continuous.PIDHysteresisTimer.mo - IBPSA.Controls.Continuous.OffTimer.mo IBPSA.Controls.Continuous.package.mo @@ -2403,12 +2469,8 @@ IBPSA.Controls.Continuous.SignalRanker.mo IBPSA.Controls.Continuous.LimPID.mo -IBPSA.Controls.Continuous.Examples.PIDHysteresis.mo - IBPSA.Controls.Continuous.Examples.NumberOfRequests.mo -IBPSA.Controls.Continuous.Examples.PIDHysteresisTimer.mo - IBPSA.Controls.Continuous.Examples.OffTimer.mo IBPSA.Controls.Continuous.Examples.package.mo @@ -2573,6 +2635,8 @@ IBPSA.BoundaryConditions.WeatherData.BaseClasses.LimiterTotalSkyCover.mo IBPSA.BoundaryConditions.WeatherData.BaseClasses.ConvertTime.mo +IBPSA.BoundaryConditions.WeatherData.BaseClasses.getAltitudeLocationTMY3.mo + IBPSA.BoundaryConditions.WeatherData.BaseClasses.PartialLimiter.mo IBPSA.BoundaryConditions.WeatherData.BaseClasses.getHeaderElementTMY3.mo @@ -2585,6 +2649,8 @@ IBPSA.BoundaryConditions.WeatherData.BaseClasses.SolarTime.mo IBPSA.BoundaryConditions.WeatherData.BaseClasses.LocalCivilTime.mo +IBPSA.BoundaryConditions.WeatherData.BaseClasses.getLastHeaderElementTMY3.mo + IBPSA.BoundaryConditions.WeatherData.BaseClasses.LimiterOpaqueSkyCover.mo IBPSA.BoundaryConditions.WeatherData.BaseClasses.getLatitudeTMY3.mo @@ -2599,6 +2665,8 @@ IBPSA.BoundaryConditions.WeatherData.BaseClasses.Examples.GetTimeSpanTMY3_Nonzer IBPSA.BoundaryConditions.WeatherData.BaseClasses.Examples.EquationOfTime.mo +IBPSA.BoundaryConditions.WeatherData.BaseClasses.Examples.GetAltitudeTMY3.mo + IBPSA.BoundaryConditions.WeatherData.BaseClasses.Examples.GetHeaderElement.mo IBPSA.BoundaryConditions.WeatherData.BaseClasses.Examples.CheckBlackBodySkyTemperature.mo @@ -2675,16 +2743,28 @@ IBPSA.Airflow.Multizone.Orifice.mo IBPSA.Airflow.Multizone.DoorDiscretizedOpen.mo +IBPSA.Airflow.Multizone.Point_m_flow.mo + IBPSA.Airflow.Multizone.MediumColumn.mo +IBPSA.Airflow.Multizone.Table_V_flow.mo + IBPSA.Airflow.Multizone.UsersGuide.mo IBPSA.Airflow.Multizone.DoorOpen.mo +IBPSA.Airflow.Multizone.Coefficient_m_flow.mo + IBPSA.Airflow.Multizone.package.mo +IBPSA.Airflow.Multizone.Points_m_flow.mo + IBPSA.Airflow.Multizone.MediumColumnDynamic.mo +IBPSA.Airflow.Multizone.Table_m_flow.mo + +IBPSA.Airflow.Multizone.Coefficient_V_flow.mo + IBPSA.Airflow.Multizone.EffectiveAirLeakageArea.mo IBPSA.Airflow.Multizone.Types.densitySelection.mo @@ -2697,7 +2777,7 @@ IBPSA.Airflow.Multizone.BaseClasses.ZonalFlow.mo IBPSA.Airflow.Multizone.BaseClasses.Door.mo -IBPSA.Airflow.Multizone.BaseClasses.PowerLawResistance.mo +IBPSA.Airflow.Multizone.BaseClasses.PowerLawResistanceParameters.mo IBPSA.Airflow.Multizone.BaseClasses.TwoWayFlowElement.mo @@ -2709,12 +2789,22 @@ IBPSA.Airflow.Multizone.BaseClasses.ErrorControl.mo IBPSA.Airflow.Multizone.BaseClasses.TwoWayFlowElementBuoyancy.mo +IBPSA.Airflow.Multizone.BaseClasses.windPressureProfile.mo + IBPSA.Airflow.Multizone.BaseClasses.package.mo IBPSA.Airflow.Multizone.BaseClasses.windPressureLowRise.mo +IBPSA.Airflow.Multizone.BaseClasses.interpolate.mo + +IBPSA.Airflow.Multizone.BaseClasses.PartialOneWayFlowElement.mo + +IBPSA.Airflow.Multizone.BaseClasses.Examples.Interpolate.mo + IBPSA.Airflow.Multizone.BaseClasses.Examples.WindPressureLowRise.mo +IBPSA.Airflow.Multizone.BaseClasses.Examples.WindPressureProfile.mo + IBPSA.Airflow.Multizone.BaseClasses.Examples.PowerLaw.mo IBPSA.Airflow.Multizone.BaseClasses.Examples.PowerLawFixedM.mo @@ -2725,16 +2815,22 @@ IBPSA.Airflow.Multizone.Examples.ChimneyShaftNoVolume.mo IBPSA.Airflow.Multizone.Examples.OneOpenDoor.mo +IBPSA.Airflow.Multizone.Examples.PowerLaw.mo + IBPSA.Airflow.Multizone.Examples.ZonalFlow.mo IBPSA.Airflow.Multizone.Examples.Orifice.mo +IBPSA.Airflow.Multizone.Examples.TrickleVent.mo + IBPSA.Airflow.Multizone.Examples.ChimneyShaftWithVolume.mo IBPSA.Airflow.Multizone.Examples.OneEffectiveAirLeakageArea.mo IBPSA.Airflow.Multizone.Examples.ClosedDoors.mo +IBPSA.Airflow.Multizone.Examples.PressurizationData.mo + IBPSA.Airflow.Multizone.Examples.ReverseBuoyancy3Zones.mo IBPSA.Airflow.Multizone.Examples.ReverseBuoyancy.mo @@ -2747,6 +2843,8 @@ IBPSA.Airflow.Multizone.Examples.CO2TransportStep.mo IBPSA.Airflow.Multizone.Examples.OneRoom.mo +IBPSA.Airflow.Multizone.Validation.OneWayFlow.mo + IBPSA.Airflow.Multizone.Validation.OpenDoorBuoyancyPressureDynamic.mo IBPSA.Airflow.Multizone.Validation.ThreeRoomsContam.mo diff --git a/bin/ci_whitelist/model_whitelist.txt b/bin/ci_whitelist/model_whitelist.txt new file mode 100644 index 0000000000..0fb897f261 --- /dev/null +++ b/bin/ci_whitelist/model_whitelist.txt @@ -0,0 +1,236 @@ + +ConvertAixLib_from_1.0.3_to_1.1.0.mos + + +IBPSA.Fluid.Movers.BaseClasses.FlowMachineInterface + + +IBPSA.Fluid.Geothermal.Borefields.OneUTube + + +IBPSA.Fluid.Geothermal.Borefields.TwoUTubes + + +IBPSA.Fluid.Sensors.RelativeHumidity + + +IBPSA.Fluid.Sensors.MassFractionTwoPort + + +IBPSA.Fluid.Sensors.LatentEnthalpyFlowRate + + +IBPSA.Fluid.Sensors.RelativeHumidityTwoPort + + +IBPSA.Fluid.Sensors.TemperatureWetBulbTwoPort + + +IBPSA.Fluid.Sensors.SensibleEnthalpyFlowRate + + +IBPSA.Fluid.Sources.TraceSubstancesFlowSource + + +IBPSA.Fluid.Sources.MassFlowSource_h + + +IBPSA.Fluid.Sources.MassFlowSource_T + + +IBPSA.Fluid.Humidifiers.SprayAirWasher_X + + +IBPSA.Fluid.Humidifiers.SteamHumidifier_X + + +IBPSA.Fluid.Storage.StratifiedEnhancedInternalHex + + +IBPSA.Fluid.HeatPumps.Calibration.BaseClasses.PartialWaterToWater + + +IBPSA.Utilities.Psychrometrics.TWetBul_TDryBulXi + + +IBPSA.Utilities.Psychrometrics.hSat_pTSat + + +IBPSA.Resources.src.fluid.heatpumps.calibration.Examples.SomeManufacturer_ABC060_70kW_4_0COP_R410A + +AixLib.Media.Refrigerants.Examples.RefrigerantTestImplementation + + +AixLib.Media.Refrigerants.Examples.BranchingDynamicPipes + + +AixLib.DataBase.CHP.ModularCHPEngineMedia.CHPCombustionMixtureGasNasa + + +AixLib.Fluid.Actuators.Dampers.VAVBoxExponential + + +AixLib.Systems.ModularAHU.RegisterModule + + +AixLib.Systems.ModularAHU.Validation.AHU2_Heater + + +AixLib.Systems.ModularAHU.Validation.AHU2_Cooler + + +AixLib.Systems.HydraulicModules.ThrottlePump + + +AixLib.Systems.HydraulicModules.Pump + + +AixLib.Systems.HydraulicModules.Injection + + +AixLib.Systems.HydraulicModules.Throttle + + +AixLib.Systems.HydraulicModules.Admix + + +AixLib.Systems.HydraulicModules.Injection2WayValve + + +AixLib.Systems.ModularAHU.Validation.AHU2_Preheater + + +AixLib.Systems.HydraulicModules.Example.Injection + + +AixLib.Fluid.Actuators.Valves.ExpansionValves.BaseClasses.PartialIsenthalpicExpansionValve + + +AixLib.Fluid.Actuators.Valves.ExpansionValves.BaseClasses.PartialExpansionValve + + +AixLib.Fluid.Actuators.Valves.ExpansionValves.BaseClasses.PartialModularExpansionVavles + + +AixLib.Fluid.Actuators.Valves.ExpansionValves.Examples.ExpansionValvePressureDifference + + +AixLib.Fluid.Actuators.Valves.ExpansionValves.Examples.ExpansionValveMassFlowRate + + +AixLib.Fluid.Actuators.Valves.ExpansionValves.Examples.BaseModelStaticHeatPumps + + +AixLib.Fluid.Actuators.Valves.ExpansionValves.Examples.StaticHeatPumpBoundaries + + +AixLib.Fluid.Actuators.Valves.ExpansionValves.Examples.ModularExpansionValvesPressureDifference + + +AixLib.Fluid.Actuators.Valves.ExpansionValves.Examples.ModularExpansionValvesMassFlowRate + + +AixLib.Fluid.Actuators.Valves.ExpansionValves.SimpleExpansionValves.IsenthalpicExpansionValve + + +AixLib.Fluid.Actuators.Valves.ExpansionValves.ModularExpansionValves.ModularExpansionValves + + +AixLib.Fluid.Actuators.Valves.ExpansionValves.ModularExpansionValves.ModularExpansionValvesSensors + + +AixLib.Fluid.Movers.Compressors.BaseClasses.PartialCompressor + + +AixLib.Fluid.Movers.Compressors.BaseClasses.PartialCompression + + +AixLib.Fluid.Movers.Compressors.BaseClasses.PartialModularCompressors + + +AixLib.Fluid.Movers.Compressors.ModularCompressors.ModularCompressorsSensors + + +AixLib.Fluid.Movers.Compressors.ModularCompressors.ModularCompressors + + +AixLib.Fluid.Movers.Compressors.Examples.RotaryCompressor + + +AixLib.Fluid.Movers.Compressors.Examples.ModularRotaryCompressor + + +AixLib.Fluid.Movers.Compressors.Examples.RotaryCompressorPressureHeatLosses + + +AixLib.Fluid.Movers.Compressors.Examples.RotaryCompressorPressureLosses + + +AixLib.Fluid.Movers.Compressors.Utilities.HeatTransfer.SimpleHeatTransfer + + +AixLib.Fluid.Movers.Compressors.SimpleCompressors.CompressionProcesses.RotaryCompression + + +AixLib.Fluid.Movers.Compressors.SimpleCompressors.RotaryCompressors.RotaryCompressor + + +AixLib.Fluid.Movers.Compressors.SimpleCompressors.RotaryCompressors.RotaryCompressorPressureHeatLosses + + +AixLib.Fluid.Movers.Compressors.SimpleCompressors.RotaryCompressors.RotaryCompressorPressureLosses + + +AixLib.Fluid.Movers.Compressors.Validation.ModularInactiveCompressors + + +AixLib.Fluid.Movers.Compressors.Validation.EfficiencyModels + + +AixLib.Fluid.Movers.Compressors.Validation.SimpleHeatTransfer + + +AixLib.Fluid.Movers.Compressors.Validation.StaticHeatPumpBoundaries.BaseModelStaticHeatPump + + +AixLib.Fluid.Movers.Compressors.Validation.StaticHeatPumpBoundaries.BaseModelStaticHeatPumpController + + +AixLib.Fluid.Movers.Compressors.Validation.StaticHeatPumpBoundaries.BaseModelStaticBoundaries + + +AixLib.Fluid.Movers.Compressors.Validation.StaticHeatPumpBoundaries.SpecifiedModels.RefrigerantR410aScrollCompressorController + + +AixLib.Fluid.Movers.Compressors.Validation.StaticHeatPumpBoundaries.SpecifiedModels.RefrigerantR410aScrollCompressor + + +AixLib.Fluid.Movers.Compressors.Validation.StaticHeatPumpBoundaries.SpecifiedModels.RefrigerantR134aScrollCompressor + + +AixLib.Fluid.Storage.BufferStorage + + +AixLib.Fluid.Storage.Examples.TwoPhaseSeparator + + +AixLib.BoundaryConditions.InternalGains.Examples.InternalGains.BaseClasses.Humans + + +AixLib.Fluid.Examples.Performance.BaseClasses.Example1 + + +AixLib.Fluid.MixingVolumes.Validation.BaseClasses.MixingVolumeReverseFlow + + +AixLib.Fluid.MixingVolumes.Validation.BaseClasses.MoistureMixingConservation + + +AixLib.ThermalZones.HighOrder.Validation.ASHRAE140.BaseClasses.PartialCase + + +AixLib.Fluid.DistrictHeatingCooling.Demands.Examples.OpenLoopVarTSupplyDpBypass + + +AixLib.Systems.ModularAHU.Examples.EONERC_AHU2 + diff --git a/bin/03_WhiteLists/ref_Whitelist.txt b/bin/ci_whitelist/reference_check_whitelist.txt similarity index 70% rename from bin/03_WhiteLists/ref_Whitelist.txt rename to bin/ci_whitelist/reference_check_whitelist.txt index d436896cd7..774661798f 100644 --- a/bin/03_WhiteLists/ref_Whitelist.txt +++ b/bin/ci_whitelist/reference_check_whitelist.txt @@ -4,8 +4,4 @@ AixLib.Obsolete AixLib.Types -AixLib.Utilities - -AixLib.Systems - AixLib.Fluid.Solar.Thermal.Examples \ No newline at end of file diff --git a/bin/dymola_scripts/open_MSL_4.0.mos b/bin/dymola_scripts/open_MSL_4.0.mos new file mode 100644 index 0000000000..0c705fd892 --- /dev/null +++ b/bin/dymola_scripts/open_MSL_4.0.mos @@ -0,0 +1,9 @@ +eraseClasses({"Modelica"}) +eraseClasses({"ModelicaServices"}) +// Adapt path if necessary +openModel("/opt/dymola-2020-x86_64/Modelica/Library/Modelica 4.0.0/package.mo", changeDirectory=false) +// MSL v4.0.0 must be unloaded before loading old MSL +// Download the Modelica Standard Library (MSL) as a tag from here: +// https://github.com/modelica/ModelicaStandardLibrary/releases/tag/v3.2.3%2Bbuild.4 +// openModel("C:/Program Files/Dymola 2020/Modelica/Library/ModelicaServices 3.2.3/package.mo", changeDirectory=false) + diff --git a/bin/interact_CI/README.md b/bin/interact_CI/README.md new file mode 100644 index 0000000000..06b153043d --- /dev/null +++ b/bin/interact_CI/README.md @@ -0,0 +1,29 @@ + +## CI commands and CI list + +These lists should create a link between the CI and the user. If certain models are displayed graphically or certain reference files are created or updated, these are to be written into the files "show_ref.txt" or "update_ref.txt" line by line. + +show_ref : Lists all mentioned reference results graphically. +update_ref : Updates the model and the whole package in which the model is located. + +## Command list + +- `git commit -m "ci_update_ref"` # Update referencefiles for all models that are added in file bin/08_interact_CI/update_ref.txt +- `git commit -m "ci_show_ref"` # plot all referencefiles that are added in file bin/08_interact_CI/show_ref.txt [only as pull_request] +- `git commit -m "ci_correct_html"` # CI bot message: correct html syntax +- `git commit -m "ci_create_whitelist"` # create a new whitelist for the model check +- `git commit -m "ci_create_html_whitelist"`# create a new html whitelist for the html check +- `git commit -m "ci_simulate"` # Simulate all examples +- `git commit -m "ci_check"` # Check all models +- `git commit -m "ci_regression_test"` # Start the regression test [only as pull_request] +- `git commit -m "ci_html"` # Test only the html of models + + +## Create yaml templates +`python bin/CITests/07_ci_templates/ci_templates.py` + +## Create yaml templates from toml file +`python bin/CITests/07_ci_templates/ci_templates.py --setting` + +## Check files and paths in _config.py +`python bin/CITests/01_CleanUp/setting_check.py` diff --git a/bin/interact_CI/show_ref.txt b/bin/interact_CI/show_ref.txt new file mode 100644 index 0000000000..08bceb05b4 --- /dev/null +++ b/bin/interact_CI/show_ref.txt @@ -0,0 +1,3 @@ +AixLib_Airflow_Multizone_Validation_DoorOpenClosed.txt +AixLib_Airflow_Multizone_Examples_ClosedDoors.txt +AixLib_BoundaryConditions_InternalGains_Examples_HumansSenTDep.txt \ No newline at end of file diff --git a/bin/interact_CI/update_ref.txt b/bin/interact_CI/update_ref.txt new file mode 100644 index 0000000000..d0ffc3c37a --- /dev/null +++ b/bin/interact_CI/update_ref.txt @@ -0,0 +1,40 @@ +AixLib_Airflow_Multizone_Examples_ReverseBuoyancy.txt +AixLib_Airflow_Multizone_Examples_PressurizationData.txt +AixLib_Airflow_Multizone_Examples_OneOpenDoor.txt +AixLib_Controls_Continuous_Examples_LimPIDWithReset.txt +AixLib_Fluid_Examples_SimpleHouse.txt +AixLib_Fluid_Examples_FlowSystem_Simplified1.txt +AixLib_Fluid_Movers_Validation_ControlledFlowMachineDynamic.txt +AixLib_Fluid_FMI_Adaptors_Examples_ThermalZoneHVACNoExhaust.txt +AixLib_Fluid_DistrictHeatingCooling_Pipes_Examples_DHCPipe.txt +AixLib_Fluid_FixedResistances_Validation_PlugFlowPipes_MSLAIT2Nodes.txt +AixLib_Fluid_FixedResistances_Validation_PlugFlowPipes_MSLAIT.txt +AixLib_Fluid_FixedResistances_Validation_PlugFlowPipes_PlugFlowAIT.txt +AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomThreeElements.txt +AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomTwoElements.txt +AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomFourElements.txt +AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase11.txt +AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase7.txt +AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case940.txt +AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case620.txt +AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case400.txt +AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case920.txt +AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case410.txt +AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case320.txt +AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case600.txt +AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case810.txt +AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case800.txt +AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case280.txt +AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case650.txt +AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case210.txt +AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case440.txt +AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case250.txt +AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case300.txt +AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case230.txt +AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case900.txt +AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case270.txt +AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case640.txt +AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case420.txt +AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case220.txt +AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case950.txt +AixLib_Fluid_Storage_Validation_HeatExchangerDynamics.txt \ No newline at end of file diff --git a/bin/templates/01_google_templates/google_chart.txt b/bin/templates/01_google_templates/google_chart.txt new file mode 100644 index 0000000000..9a3bdcc05b --- /dev/null +++ b/bin/templates/01_google_templates/google_chart.txt @@ -0,0 +1,47 @@ + + + + + + +
                + + + diff --git a/bin/templates/01_google_templates/index.txt b/bin/templates/01_google_templates/index.txt new file mode 100644 index 0000000000..3cf56a1ca4 --- /dev/null +++ b/bin/templates/01_google_templates/index.txt @@ -0,0 +1,16 @@ + + + + + + Regression plots + + +
                + %for model in html_model: +
              • ${model}

              • + %endfor +
                + + + \ No newline at end of file diff --git a/bin/templates/01_google_templates/layout_index.txt b/bin/templates/01_google_templates/layout_index.txt new file mode 100644 index 0000000000..ee4fbfc8ac --- /dev/null +++ b/bin/templates/01_google_templates/layout_index.txt @@ -0,0 +1,86 @@ + + + + Page Layout + + + + + + +
                +
                Regresiontests
                + +
                + + + + + +
                +
                + %for package in single_package: +
              • ${package}

              • + %endfor +
                +
                + + + \ No newline at end of file diff --git a/bin/templates/02_charts/AixLib/AixLib_ThermalZones_ReducedOrder_Examples_MultizoneMoistAirCO2.html b/bin/templates/02_charts/AixLib/AixLib_ThermalZones_ReducedOrder_Examples_MultizoneMoistAirCO2.html new file mode 100644 index 0000000000..464adb4f0a --- /dev/null +++ b/bin/templates/02_charts/AixLib/AixLib_ThermalZones_ReducedOrder_Examples_MultizoneMoistAirCO2.html @@ -0,0 +1,144 @@ + + + + + + +
                + + + diff --git a/bin/templates/02_charts/AixLib/AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomFourElements.html b/bin/templates/02_charts/AixLib/AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomFourElements.html new file mode 100644 index 0000000000..e4125c6a73 --- /dev/null +++ b/bin/templates/02_charts/AixLib/AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomFourElements.html @@ -0,0 +1,143 @@ + + + + + + +
                + + + diff --git a/bin/templates/02_charts/AixLib/AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomFourElementsTraceSubstance.html b/bin/templates/02_charts/AixLib/AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomFourElementsTraceSubstance.html new file mode 100644 index 0000000000..ed265e1e36 --- /dev/null +++ b/bin/templates/02_charts/AixLib/AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomFourElementsTraceSubstance.html @@ -0,0 +1,144 @@ + + + + + + +
                + + + diff --git a/bin/templates/02_charts/AixLib/AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomOneElement.html b/bin/templates/02_charts/AixLib/AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomOneElement.html new file mode 100644 index 0000000000..1c84094b14 --- /dev/null +++ b/bin/templates/02_charts/AixLib/AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomOneElement.html @@ -0,0 +1,143 @@ + + + + + + +
                + + + diff --git a/bin/templates/02_charts/AixLib/AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomThreeElements.html b/bin/templates/02_charts/AixLib/AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomThreeElements.html new file mode 100644 index 0000000000..9ff03229e2 --- /dev/null +++ b/bin/templates/02_charts/AixLib/AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomThreeElements.html @@ -0,0 +1,143 @@ + + + + + + +
                + + + diff --git a/bin/templates/02_charts/AixLib/AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomTwoElements.html b/bin/templates/02_charts/AixLib/AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomTwoElements.html new file mode 100644 index 0000000000..fe1831cc25 --- /dev/null +++ b/bin/templates/02_charts/AixLib/AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomTwoElements.html @@ -0,0 +1,143 @@ + + + + + + +
                + + + diff --git a/bin/templates/02_charts/AixLib/index.html b/bin/templates/02_charts/AixLib/index.html new file mode 100644 index 0000000000..f3ca5b4baa --- /dev/null +++ b/bin/templates/02_charts/AixLib/index.html @@ -0,0 +1,19 @@ + + + + + + Regression plots + + +
                +
              • AixLib_ThermalZones_ReducedOrder_Examples_MultizoneMoistAirCO2.html

              • +
              • AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomFourElements.html

              • +
              • AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomFourElementsTraceSubstance.html

              • +
              • AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomOneElement.html

              • +
              • AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomThreeElements.html

              • +
              • AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomTwoElements.html

              • +
                + + + \ No newline at end of file diff --git a/bin/templates/02_charts/index.html b/bin/templates/02_charts/index.html new file mode 100644 index 0000000000..63a1dc88e0 --- /dev/null +++ b/bin/templates/02_charts/index.html @@ -0,0 +1,84 @@ + + + + Page Layout + + + + + + +
                +
                Regresiontests
                + +
                + + + + + +
                +
                +
              • AixLib

              • +
                +
                + + + \ No newline at end of file diff --git a/bin/templates/03_ci_templates/01_deploy/IBPSA_Merge.gitlab-ci.yml b/bin/templates/03_ci_templates/01_deploy/IBPSA_Merge.gitlab-ci.yml new file mode 100644 index 0000000000..6ce9a60c91 --- /dev/null +++ b/bin/templates/03_ci_templates/01_deploy/IBPSA_Merge.gitlab-ci.yml @@ -0,0 +1,161 @@ + +stages: + - IBPSA_Merge + - Update_WhiteList + - openMR + - Release + +IBPSA: + stage: IBPSA_Merge + before_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate myenv + - pip install natsort + - export PYTHONIOENCODING=utf-8 # just in case + - 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )' + - eval $(ssh-agent -s) + - mkdir -p ~/.ssh + - ssh-keyscan github.com >> ~/.ssh/known_hosts + - ssh-agent -a /tmp/ssh_agent.sock > /dev/null + - echo "${GITHUB_PRIVATE_KEY}" > ~/.ssh/id_rsa + - chmod 600 ~/.ssh/id_rsa + - git config --global user.name "${GITLAB_USER_NAME}" + - git config --global user.email "${GITLAB_USER_EMAIL}" + script: + - mkdir Merge_Package + - cd Merge_Package + - git clone --single-branch --branch IBPSA_Merge git@github.com:${Github_Repository}.git + - cd ${CI_PROJECT_NAME} + - git clone https://github.com/ibpsa/modelica-ibpsa.git + - cd AixLib/Resources/Scripts + - python mergeModelicaIBPSA.py + - cd .. + - cd .. + - cd .. + - python bin/CITests/06_deploy/IBPSA_Merge/copy_conversion_script.py --dst "Convertmos" --ibpsa-dir "modelica-ibpsa/IBPSA/Resources/Scripts/Conversion/ConvertIBPSA_*" --aixlib-dir "AixLib/Resources/Scripts" + - python bin/CITests/06_deploy/IBPSA_Merge/correct_userguide.py + - rm -r modelica-ibpsa + only: + refs: + - IBPSA_Merge + variables: + - $CI_COMMIT_MESSAGE =~ /ci_trigger_ibpsa_merge/ + + except: + refs: + - external_pull_requests + variables: + - $CI_COMMIT_MESSAGE =~ /fix errors manually/ + - $CI_COMMIT_MESSAGE =~ /Update WhiteList_CheckModel.txt and HTML_IBPSA_WhiteList.txt/ + - $CI_COMMIT_MESSAGE =~ /ci_update_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_dif_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_correct_html/ + - $CI_COMMIT_MESSAGE =~ /ci_create_whitelist/ + - $CI_COMMIT_MESSAGE =~ /Automatic push of CI with new regression reference files. Please pull the new files before push again./ + - $CI_COMMIT_MESSAGE =~ /New reference files were pushed to this branch. The job was successfully and the newly added files are tested in another commit./ + - $CI_COMMIT_MESSAGE =~ /ci_show_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_regression_test/ + - $CI_COMMIT_MESSAGE =~ /ci_check/ + - $CI_COMMIT_MESSAGE =~ /ci_simulate/ + - $CI_COMMIT_MESSAGE =~ /ci_create_html_whitelist/ + - $CI_COMMIT_MESSAGE =~ /ci_html/ + - $CI_COMMIT_MESSAGE =~ /ci_setting/ + artifacts: + paths: + - Merge_Package/${CI_PROJECT_NAME}/ + expire_in: 6 h + +WhiteList: + stage: Update_WhiteList + before_script: + + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate myenv + - pip install natsort + - export PYTHONIOENCODING=utf-8 # just in case + - 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )' + - eval $(ssh-agent -s) + - mkdir -p ~/.ssh + - ssh-keyscan github.com >> ~/.ssh/known_hosts + - ssh-agent -a /tmp/ssh_agent.sock > /dev/null + - echo "${GITHUB_PRIVATE_KEY}" > ~/.ssh/id_rsa + - chmod 600 ~/.ssh/id_rsa + - git config --global user.name "${GITLAB_USER_NAME}" + - git config --global user.email "${GITLAB_USER_EMAIL}" + script: + - cd Merge_Package/${CI_PROJECT_NAME} + - python bin/CITests/03_SyntaxTests/html_tidy_errors.py --WhiteList # Update WhiteList for HTML + - xvfb-run -n 77 python bin/CITests/02_UnitTests/CheckPackages/validatetest.py -DS 2022 --repo-dir IBPSA --git-url https://github.com/ibpsa/modelica-ibpsa.git --library AixLib --wh-library IBPSA --whitelist + - python bin/CITests/05_Converter/lock_model.py --library AixLib --wh-library IBPSA + - rm -r IBPSA + - message="Update WhiteList_CheckModel.txt and HTML_IBPSA_WhiteList.txt" + - git add . + - git commit -m "$message" + - git push --force git@github.com:${Github_Repository}.git + only: + refs: + - IBPSA_Merge + variables: + - $CI_COMMIT_MESSAGE =~ /ci_trigger_ibpsa_merge/ + + except: + refs: + - external_pull_requests + variables: + - $CI_COMMIT_MESSAGE =~ /fix errors manually/ + - $CI_COMMIT_MESSAGE =~ /Update WhiteList_CheckModel.txt and HTML_IBPSA_WhiteList.txt/ + - $CI_COMMIT_MESSAGE =~ /ci_update_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_dif_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_correct_html/ + - $CI_COMMIT_MESSAGE =~ /ci_create_whitelist/ + - $CI_COMMIT_MESSAGE =~ /Automatic push of CI with new regression reference files. Please pull the new files before push again./ + - $CI_COMMIT_MESSAGE =~ /New reference files were pushed to this branch. The job was successfully and the newly added files are tested in another commit./ + - $CI_COMMIT_MESSAGE =~ /ci_show_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_regression_test/ + - $CI_COMMIT_MESSAGE =~ /ci_check/ + - $CI_COMMIT_MESSAGE =~ /ci_simulate/ + - $CI_COMMIT_MESSAGE =~ /ci_create_html_whitelist/ + - $CI_COMMIT_MESSAGE =~ /ci_html/ + - $CI_COMMIT_MESSAGE =~ /ci_setting/ + allow_failure: true + + needs: + - job: IBPSA + artifacts: true + +IBPSA_Pull_Request: + stage: openMR + before_script: + - source activate myenv + - pip install --upgrade pip && apt-get update -y && apt-get install zip unzip -y + - pip install requests + - export PYTHONIOENCODING=utf-8 # just in case + - git config --global user.name "${GITLAB_USER_NAME}" + - git config --global user.email "${GITLAB_USER_EMAIL}" + script: + - python bin/CITests/04_api_script/api_github.py --github-repo ${Github_Repository} --working-branch $CI_COMMIT_REF_NAME --github-token ${GITHUB_API_TOKEN} --create-pr --ibpsa-merge + only: + refs: + - IBPSA_Merge + variables: + - $CI_COMMIT_MESSAGE =~ /ci_trigger_ibpsa_merge/ + + except: + refs: + - external_pull_requests + variables: + - $CI_COMMIT_MESSAGE =~ /fix errors manually/ + - $CI_COMMIT_MESSAGE =~ /Update WhiteList_CheckModel.txt and HTML_IBPSA_WhiteList.txt/ + - $CI_COMMIT_MESSAGE =~ /ci_update_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_dif_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_correct_html/ + - $CI_COMMIT_MESSAGE =~ /ci_create_whitelist/ + - $CI_COMMIT_MESSAGE =~ /Automatic push of CI with new regression reference files. Please pull the new files before push again./ + - $CI_COMMIT_MESSAGE =~ /New reference files were pushed to this branch. The job was successfully and the newly added files are tested in another commit./ + - $CI_COMMIT_MESSAGE =~ /ci_show_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_regression_test/ + - $CI_COMMIT_MESSAGE =~ /ci_check/ + - $CI_COMMIT_MESSAGE =~ /ci_simulate/ + - $CI_COMMIT_MESSAGE =~ /ci_create_html_whitelist/ + - $CI_COMMIT_MESSAGE =~ /ci_html/ + - $CI_COMMIT_MESSAGE =~ /ci_setting/ diff --git a/bin/templates/03_ci_templates/01_deploy/IBPSA_Merge.txt b/bin/templates/03_ci_templates/01_deploy/IBPSA_Merge.txt new file mode 100644 index 0000000000..7c268c7885 --- /dev/null +++ b/bin/templates/03_ci_templates/01_deploy/IBPSA_Merge.txt @@ -0,0 +1,131 @@ + +stages: + - IBPSA_Merge + - Update_WhiteList + - openMR + - Release + +IBPSA: + stage: IBPSA_Merge + before_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate ${python_version} + - pip install natsort + - export PYTHONIOENCODING=utf-8 # just in case + - 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )' + - eval $(ssh-agent -s) + - mkdir -p ~/.ssh + - ssh-keyscan github.com >> ~/.ssh/known_hosts + - ssh-agent -a /tmp/ssh_agent.sock > /dev/null + - echo "${GITHUB_PRIVATE_KEY}" > ~/.ssh/id_rsa + - chmod 600 ~/.ssh/id_rsa + - git config --global user.name "${GITLAB_USER_NAME}" + - git config --global user.email "${GITLAB_USER_EMAIL}" + script: + - mkdir Merge_Package + - cd Merge_Package + - git clone --single-branch --branch ${merge_branch} git@github.com:${Github_Repository}.git + - cd ${CI_PROJECT_NAME} + - git clone ${git_url} + - cd ${library}/Resources/Scripts + - python mergeModelicaIBPSA.py + - cd .. + - cd .. + - cd .. + - python bin/CITests/06_deploy/IBPSA_Merge/copy_conversion_script.py --dst "Convertmos" --ibpsa-dir "modelica-ibpsa/IBPSA/Resources/Scripts/Conversion/ConvertIBPSA_*" --aixlib-dir "${library}/Resources/Scripts" + - python bin/CITests/06_deploy/IBPSA_Merge/correct_userguide.py + - rm -r modelica-ibpsa + only: + refs: + - ${merge_branch} + variables: + - $CI_COMMIT_MESSAGE =~ /${ci_trigger_ibpsa_commit}/ + + except: + refs: + - external_pull_requests + variables: + - $CI_COMMIT_MESSAGE =~ /${ci_merge_except_commit}/ + - $CI_COMMIT_MESSAGE =~ /${bot_commit}/ + %for commit in except_commit_list: + - $CI_COMMIT_MESSAGE =~ /${commit}/ + %endfor + artifacts: + paths: + - Merge_Package/${CI_PROJECT_NAME}/ + expire_in: 6 h + +WhiteList: + stage: Update_WhiteList + before_script: + + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate ${python_version} + - pip install natsort + - export PYTHONIOENCODING=utf-8 # just in case + - 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )' + - eval $(ssh-agent -s) + - mkdir -p ~/.ssh + - ssh-keyscan github.com >> ~/.ssh/known_hosts + - ssh-agent -a /tmp/ssh_agent.sock > /dev/null + - echo "${GITHUB_PRIVATE_KEY}" > ~/.ssh/id_rsa + - chmod 600 ~/.ssh/id_rsa + - git config --global user.name "${GITLAB_USER_NAME}" + - git config --global user.email "${GITLAB_USER_EMAIL}" + script: + - cd Merge_Package/${CI_PROJECT_NAME} + - python bin/CITests/03_SyntaxTests/html_tidy_errors.py --WhiteList # Update WhiteList for HTML + - xvfb-run -n 77 python bin/CITests/02_UnitTests/CheckPackages/validatetest.py -DS ${dymolaversion} --repo-dir ${wh_library} --git-url ${git_url} --library ${library} --wh-library ${wh_library} --whitelist + - python bin/CITests/05_Converter/lock_model.py --library ${library} --wh-library ${wh_library} + - rm -r IBPSA + - message="${bot_commit}" + - git add . + - git commit -m "$message" + - git push --force git@github.com:${Github_Repository}.git + only: + refs: + - ${merge_branch} + variables: + - $CI_COMMIT_MESSAGE =~ /${ci_trigger_ibpsa_commit}/ + + except: + refs: + - external_pull_requests + variables: + - $CI_COMMIT_MESSAGE =~ /${ci_merge_except_commit}/ + - $CI_COMMIT_MESSAGE =~ /${bot_commit}/ + %for commit in except_commit_list: + - $CI_COMMIT_MESSAGE =~ /${commit}/ + %endfor + allow_failure: true + + needs: + - job: IBPSA + artifacts: true + +IBPSA_Pull_Request: + stage: openMR + before_script: + - source activate ${python_version} + - pip install --upgrade pip && apt-get update -y && apt-get install zip unzip -y + - pip install requests + - export PYTHONIOENCODING=utf-8 # just in case + - git config --global user.name "${GITLAB_USER_NAME}" + - git config --global user.email "${GITLAB_USER_EMAIL}" + script: + - python bin/CITests/04_api_script/api_github.py --github-repo ${Github_Repository} --working-branch $CI_COMMIT_REF_NAME --github-token ${GITHUB_API_TOKEN} --create-pr --ibpsa-merge + only: + refs: + - ${merge_branch} + variables: + - $CI_COMMIT_MESSAGE =~ /${ci_trigger_ibpsa_commit}/ + + except: + refs: + - external_pull_requests + variables: + - $CI_COMMIT_MESSAGE =~ /${ci_merge_except_commit}/ + - $CI_COMMIT_MESSAGE =~ /${bot_commit}/ + %for commit in except_commit_list: + - $CI_COMMIT_MESSAGE =~ /${commit}/ + %endfor diff --git a/bin/templates/03_ci_templates/01_deploy/gitlab_pages.gitlab-ci.yml b/bin/templates/03_ci_templates/01_deploy/gitlab_pages.gitlab-ci.yml new file mode 100644 index 0000000000..fa9cb5b8ea --- /dev/null +++ b/bin/templates/03_ci_templates/01_deploy/gitlab_pages.gitlab-ci.yml @@ -0,0 +1,23 @@ +stages: + - deploy + +pages: + stage: deploy + before_script: + - apt-get update -y + - apt-get install zip unzip -y + script: + - mkdir -p public/$CI_COMMIT_REF_NAME + - cp -r $CI_COMMIT_REF_NAME/* public/$CI_COMMIT_REF_NAME + + artifacts: + paths: + - public + + expire_in: 7h + except: + refs: + - master + - development + when: always + allow_failure: true diff --git a/bin/templates/03_ci_templates/01_deploy/gitlab_pages.txt b/bin/templates/03_ci_templates/01_deploy/gitlab_pages.txt new file mode 100644 index 0000000000..bc71e0bd89 --- /dev/null +++ b/bin/templates/03_ci_templates/01_deploy/gitlab_pages.txt @@ -0,0 +1,23 @@ +stages: + - deploy + +pages: + stage: deploy + before_script: + - apt-get update -y + - apt-get install zip unzip -y + script: + - mkdir -p public/$CI_COMMIT_REF_NAME + - cp -r $CI_COMMIT_REF_NAME/* public/$CI_COMMIT_REF_NAME + + artifacts: + paths: + - public + + expire_in: 7h + except: + refs: + - master + - development + when: always + allow_failure: true diff --git a/bin/templates/03_ci_templates/02_UnitTests/check_model.gitlab-ci.yml b/bin/templates/03_ci_templates/02_UnitTests/check_model.gitlab-ci.yml new file mode 100644 index 0000000000..23a8f7ec94 --- /dev/null +++ b/bin/templates/03_ci_templates/02_UnitTests/check_model.gitlab-ci.yml @@ -0,0 +1,397 @@ +stages: + - check + - create_whitelist + +.check_model_job: + stage: check + before_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate myenv + - pip install natsort + - export PYTHONIOENCODING=utf-8 # just in case + script: + - xvfb-run -n 77 python bin/CITests/02_UnitTests/CheckPackages/validatetest.py --single-package "${lib_package}" --library AixLib -DS 2022 --wh-library IBPSA --filterwhitelist + + artifacts: + when: on_failure + paths: + - AixLib/AixLib.${lib_package}-log.txt + - AixLib/AixLib.${lib_package}-errorlog.txt + expire_in: 7 day + only: + - external_pull_requests + retry: + max: 2 + when: runner_system_failure + except: + variables: + - $CI_COMMIT_MESSAGE =~ /ci_update_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_dif_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_correct_html/ + - $CI_COMMIT_MESSAGE =~ /ci_create_whitelist/ + - $CI_COMMIT_MESSAGE =~ /Automatic push of CI with new regression reference files. Please pull the new files before push again./ + - $CI_COMMIT_MESSAGE =~ /New reference files were pushed to this branch. The job was successfully and the newly added files are tested in another commit./ + - $CI_COMMIT_MESSAGE =~ /ci_show_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_regression_test/ + - $CI_COMMIT_MESSAGE =~ /ci_check/ + - $CI_COMMIT_MESSAGE =~ /ci_simulate/ + - $CI_COMMIT_MESSAGE =~ /ci_create_html_whitelist/ + - $CI_COMMIT_MESSAGE =~ /ci_html/ + - $CI_COMMIT_MESSAGE =~ /ci_setting/ + refs: + - master + - development + +Check_AixLib_Airflow: + variables: + lib_package: Airflow + extends: .check_model_job + +Check_AixLib_BoundaryConditions: + variables: + lib_package: BoundaryConditions + extends: .check_model_job + +Check_AixLib_Controls: + variables: + lib_package: Controls + extends: .check_model_job + +Check_AixLib_Electrical: + variables: + lib_package: Electrical + extends: .check_model_job + +Check_AixLib_Fluid: + variables: + lib_package: Fluid + extends: .check_model_job + +Check_AixLib_Media: + variables: + lib_package: Media + extends: .check_model_job + +Check_AixLib_Systems: + variables: + lib_package: Systems + extends: .check_model_job + +Check_AixLib_ThermalZones: + variables: + lib_package: ThermalZones + extends: .check_model_job + +Check_AixLib_Utilities: + variables: + lib_package: Utilities + extends: .check_model_job + + +.dev_check_model_job: + stage: check + before_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate myenv + - pip install natsort + - export PYTHONIOENCODING=utf-8 # just in case + script: + - xvfb-run -n 77 python bin/CITests/02_UnitTests/CheckPackages/validatetest.py --single-package "${lib_package}" --library AixLib -DS 2022 --wh-library IBPSA --filterwhitelist + + artifacts: + when: on_failure + paths: + - AixLib/AixLib.${lib_package}-log.txt + - AixLib/AixLib.${lib_package}-errorlog.txt + expire_in: 7 day + only: + refs: + - master + - development + retry: + max: 2 + when: runner_system_failure + +Development_Check_AixLib_Airflow: + variables: + lib_package: Airflow + extends: .dev_check_model_job + +Development_Check_AixLib_BoundaryConditions: + variables: + lib_package: BoundaryConditions + extends: .dev_check_model_job + +Development_Check_AixLib_Controls: + variables: + lib_package: Controls + extends: .dev_check_model_job + +Development_Check_AixLib_Electrical: + variables: + lib_package: Electrical + extends: .dev_check_model_job + +Development_Check_AixLib_Fluid: + variables: + lib_package: Fluid + extends: .dev_check_model_job + +Development_Check_AixLib_Media: + variables: + lib_package: Media + extends: .dev_check_model_job + +Development_Check_AixLib_Systems: + variables: + lib_package: Systems + extends: .dev_check_model_job + +Development_Check_AixLib_ThermalZones: + variables: + lib_package: ThermalZones + extends: .dev_check_model_job + +Development_Check_AixLib_Utilities: + variables: + lib_package: Utilities + extends: .dev_check_model_job + + +.check_changed_models_job: + stage: check + before_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate myenv + - pip install natsort + - export PYTHONIOENCODING=utf-8 # just in case + script: + - git diff --raw --diff-filter=AMT HEAD^1 > bin/Configfiles/ci_changed_model_list.txt + - xvfb-run -n 77 python bin/CITests/02_UnitTests/CheckPackages/validatetest.py --single-package "${lib_package}" --library AixLib -DS 2022 -CM ; pkill -f Xvfb + artifacts: + when: on_failure + paths: + - AixLib/AixLib.${lib_package}-log.txt + - AixLib/AixLib.${lib_package}-errorlog.txt + expire_in: 7 day + except: + refs: + - external_pull_requests + - IBPSA_Merge + - master + - development + variables: + - $CI_COMMIT_MESSAGE =~ /ci_update_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_dif_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_correct_html/ + - $CI_COMMIT_MESSAGE =~ /ci_create_whitelist/ + - $CI_COMMIT_MESSAGE =~ /Automatic push of CI with new regression reference files. Please pull the new files before push again./ + - $CI_COMMIT_MESSAGE =~ /New reference files were pushed to this branch. The job was successfully and the newly added files are tested in another commit./ + - $CI_COMMIT_MESSAGE =~ /ci_show_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_regression_test/ + - $CI_COMMIT_MESSAGE =~ /ci_check/ + - $CI_COMMIT_MESSAGE =~ /ci_simulate/ + - $CI_COMMIT_MESSAGE =~ /ci_create_html_whitelist/ + - $CI_COMMIT_MESSAGE =~ /ci_html/ + - $CI_COMMIT_MESSAGE =~ /ci_setting/ + retry: + max: 2 + when: runner_system_failure + +Check_AixLib_Airflow_changed_models: + variables: + lib_package: Airflow + only: + changes: + - AixLib/Airflow/**/* + extends: .check_changed_models_job + +Check_AixLib_BoundaryConditions_changed_models: + variables: + lib_package: BoundaryConditions + only: + changes: + - AixLib/BoundaryConditions/**/* + extends: .check_changed_models_job + +Check_AixLib_Controls_changed_models: + variables: + lib_package: Controls + only: + changes: + - AixLib/Controls/**/* + extends: .check_changed_models_job + +Check_AixLib_Electrical_changed_models: + variables: + lib_package: Electrical + only: + changes: + - AixLib/Electrical/**/* + extends: .check_changed_models_job + +Check_AixLib_Fluid_changed_models: + variables: + lib_package: Fluid + only: + changes: + - AixLib/Fluid/**/* + extends: .check_changed_models_job + +Check_AixLib_Media_changed_models: + variables: + lib_package: Media + only: + changes: + - AixLib/Media/**/* + extends: .check_changed_models_job + +Check_AixLib_Systems_changed_models: + variables: + lib_package: Systems + only: + changes: + - AixLib/Systems/**/* + extends: .check_changed_models_job + +Check_AixLib_ThermalZones_changed_models: + variables: + lib_package: ThermalZones + only: + changes: + - AixLib/ThermalZones/**/* + extends: .check_changed_models_job + +Check_AixLib_Utilities_changed_models: + variables: + lib_package: Utilities + only: + changes: + - AixLib/Utilities/**/* + extends: .check_changed_models_job + + +.CI_check_model_job: + stage: check + before_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate myenv + - pip install natsort + - export PYTHONIOENCODING=utf-8 # just in case + script: + - xvfb-run -n 77 python bin/CITests/02_UnitTests/CheckPackages/validatetest.py --single-package "${lib_package}" --library AixLib -DS 2022 --wh-library IBPSA --filterwhitelist ; pkill -f Xvfb + artifacts: + when: on_failure + paths: + - AixLib/AixLib.${lib_package}-log.txt + - AixLib/AixLib.${lib_package}-errorlog.txt + expire_in: 7 day + only: + variables: + - $CI_COMMIT_MESSAGE =~ /ci_check/ + except: + refs: + - external_pull_requests + retry: + max: 2 + when: runner_system_failure + + +CI_Check_AixLib_Airflow: + variables: + lib_package: Airflow + extends: .CI_check_model_job + +CI_Check_AixLib_BoundaryConditions: + variables: + lib_package: BoundaryConditions + extends: .CI_check_model_job + +CI_Check_AixLib_Controls: + variables: + lib_package: Controls + extends: .CI_check_model_job + +CI_Check_AixLib_Electrical: + variables: + lib_package: Electrical + extends: .CI_check_model_job + +CI_Check_AixLib_Fluid: + variables: + lib_package: Fluid + extends: .CI_check_model_job + +CI_Check_AixLib_Media: + variables: + lib_package: Media + extends: .CI_check_model_job + +CI_Check_AixLib_Systems: + variables: + lib_package: Systems + extends: .CI_check_model_job + +CI_Check_AixLib_ThermalZones: + variables: + lib_package: ThermalZones + extends: .CI_check_model_job + +CI_Check_AixLib_Utilities: + variables: + lib_package: Utilities + extends: .CI_check_model_job + + +whitelist_job: + stage: create_whitelist + before_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate myenv + - pip install natsort + - export PYTHONIOENCODING=utf-8 + - 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )' + - eval $(ssh-agent -s) + - mkdir -p ~/.ssh + - ssh-keyscan github.com >> ~/.ssh/known_hosts + - ssh-agent -a /tmp/ssh_agent.sock > /dev/null + - echo "${GITHUB_PRIVATE_KEY}" > ~/.ssh/id_rsa + - chmod 600 ~/.ssh/id_rsa + - git config --global user.name "${GITLAB_USER_NAME}" + - git config --global user.email "${GITLAB_USER_EMAIL}" + script: + - mkdir whitelist && cd whitelist + - git clone --single-branch --branch $CI_COMMIT_REF_NAME git@github.com:${Github_Repository}.git + - cd ${CI_PROJECT_NAME} + - echo "FAIL" > bin/Configfiles/exit.sh + - xvfb-run -n 77 python bin/CITests/02_UnitTests/CheckPackages/validatetest.py -DS 2022 --repo-dir IBPSA --git-url https://github.com/ibpsa/modelica-ibpsa.git --library AixLib --wh-library IBPSA --whitelist + after_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate myenv + - export PYTHONIOENCODING=utf-8 # just in case + - cd whitelist && cd ${CI_PROJECT_NAME} + - if cat bin/Configfiles/exit.sh | grep "FAIL"; then + message="Automatic push of CI - Update model_whitelist. Please pull the new files before push again. [skip ci]" ; + git add bin/ci_whitelist/model_whitelist.txt ; + git commit -m "$message" ; + git push git@github.com:${Github_Repository}.git ; + GREEN='\033[0;32m' ; + NC='\033[0m' ; + echo -e "$GREEN New html whitelist files were pushed to this branch.$NC" ; + exit 0; + else + echo 'successful' > bin/Configfiles/exit.sh ; + echo -e "$GREEN Whitelist is already up to date. Please delete the version number in file bin/ci_whitelist/model_whitelist.txt, if you want to recreate the whitelist.$NC" ; + exit 0 ; + fi + artifacts: + paths: + - whitelist/${CI_PROJECT_NAME}/bin/ci_whitelist/model_whitelist.txt + expire_in: 7 day + only: + variables: + - $CI_COMMIT_MESSAGE =~ /ci_create_whitelist/ + except: + refs: + - external_pull_requests + diff --git a/bin/templates/03_ci_templates/02_UnitTests/check_model.txt b/bin/templates/03_ci_templates/02_UnitTests/check_model.txt new file mode 100644 index 0000000000..4f2375ef06 --- /dev/null +++ b/bin/templates/03_ci_templates/02_UnitTests/check_model.txt @@ -0,0 +1,201 @@ +stages: + - check + - create_whitelist + +.check_model_job: + stage: check + before_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate ${python_version} + - pip install natsort + - export PYTHONIOENCODING=utf-8 # just in case + script: + - xvfb-run -n 77 python bin/CITests/02_UnitTests/CheckPackages/validatetest.py --single-package "${lib_package}" --library ${library} -DS ${dymolaversion} ${wh_flag} ${filterflag} + + artifacts: + when: on_failure + paths: + - ${library}/${library}.${lib_package}-log.txt + - ${library}/${library}.${lib_package}-errorlog.txt + expire_in: 7 day + only: + - external_pull_requests + retry: + max: 2 + when: runner_system_failure + except: + variables: + %for commit in except_commit_list: + - $CI_COMMIT_MESSAGE =~ /${commit}/ + %endfor + refs: + - master + - development + +%for package in package_list: +Check_${library}_${package}: + variables: + lib_package: ${package} + extends: .check_model_job + +%endfor + +.dev_check_model_job: + stage: check + before_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate ${python_version} + - pip install natsort + - export PYTHONIOENCODING=utf-8 # just in case + script: + - xvfb-run -n 77 python bin/CITests/02_UnitTests/CheckPackages/validatetest.py --single-package "${lib_package}" --library ${library} -DS ${dymolaversion} ${wh_flag} ${filterflag} + + artifacts: + when: on_failure + paths: + - ${library}/${library}.${lib_package}-log.txt + - ${library}/${library}.${lib_package}-errorlog.txt + expire_in: 7 day + only: + refs: + - master + - development + retry: + max: 2 + when: runner_system_failure + +%for package in package_list: +Development_Check_${library}_${package}: + variables: + lib_package: ${package} + extends: .dev_check_model_job + +%endfor + +.check_changed_models_job: + stage: check + before_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate ${python_version} + - pip install natsort + - export PYTHONIOENCODING=utf-8 # just in case + script: + - git diff --raw --diff-filter=AMT HEAD^1 > ${ch_file} + - xvfb-run -n 77 python bin/CITests/02_UnitTests/CheckPackages/validatetest.py --single-package "${lib_package}" --library ${library} -DS ${dymolaversion} -CM ; pkill -f Xvfb + artifacts: + when: on_failure + paths: + - ${library}/${library}.${lib_package}-log.txt + - ${library}/${library}.${lib_package}-errorlog.txt + expire_in: 7 day + except: + refs: + - external_pull_requests + ${merge_branch} + - master + - development + variables: + %for commit in except_commit_list: + - $CI_COMMIT_MESSAGE =~ /${commit}/ + %endfor + retry: + max: 2 + when: runner_system_failure + +%for package in package_list: +Check_${library}_${package}_changed_models: + variables: + lib_package: ${package} + only: + changes: + - ${library}/${package}/**/* + extends: .check_changed_models_job + +%endfor + +.CI_check_model_job: + stage: check + before_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate ${python_version} + - pip install natsort + - export PYTHONIOENCODING=utf-8 # just in case + script: + - xvfb-run -n 77 python bin/CITests/02_UnitTests/CheckPackages/validatetest.py --single-package "${lib_package}" --library ${library} -DS ${dymolaversion} ${wh_flag} ${filterflag} ; pkill -f Xvfb + artifacts: + when: on_failure + paths: + - ${library}/${library}.${lib_package}-log.txt + - ${library}/${library}.${lib_package}-errorlog.txt + expire_in: 7 day + only: + variables: + - $CI_COMMIT_MESSAGE =~ /${check_commit}/ + except: + refs: + - external_pull_requests + retry: + max: 2 + when: runner_system_failure + + +%for package in package_list: +CI_Check_${library}_${package}: + variables: + lib_package: ${package} + extends: .CI_check_model_job + +%endfor + +whitelist_job: + stage: create_whitelist + before_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate ${python_version} + - pip install natsort + - export PYTHONIOENCODING=utf-8 + - 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )' + - eval $(ssh-agent -s) + - mkdir -p ~/.ssh + - ssh-keyscan github.com >> ~/.ssh/known_hosts + - ssh-agent -a /tmp/ssh_agent.sock > /dev/null + - echo "${GITHUB_PRIVATE_KEY}" > ~/.ssh/id_rsa + - chmod 600 ~/.ssh/id_rsa + - git config --global user.name "${GITLAB_USER_NAME}" + - git config --global user.email "${GITLAB_USER_EMAIL}" + script: + - mkdir whitelist && cd whitelist + - git clone --single-branch --branch $CI_COMMIT_REF_NAME git@github.com:${Github_Repository}.git + - cd ${CI_PROJECT_NAME} + - echo "FAIL" > ${exit_file} + - xvfb-run -n 77 python bin/CITests/02_UnitTests/CheckPackages/validatetest.py -DS ${dymolaversion} --repo-dir ${wh_library} ${git_url} ${wh_path} --library ${library} --wh-library ${wh_library} --whitelist + after_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate ${python_version} + - export PYTHONIOENCODING=utf-8 # just in case + - cd whitelist && cd ${CI_PROJECT_NAME} + - if cat ${exit_file} | grep "FAIL"; then + message="Automatic push of CI - Update model_whitelist. Please pull the new files before push again. [skip ci]" ; + git add ${wh_file} ; + git commit -m "$message" ; + git push git@github.com:${Github_Repository}.git ; + GREEN='\033[0;32m' ; + NC='\033[0m' ; + echo -e "$GREEN New html whitelist files were pushed to this branch.$NC" ; + exit 0; + else + echo 'successful' > ${exit_file} ; + echo -e "$GREEN Whitelist is already up to date. Please delete the version number in file ${wh_file}, if you want to recreate the whitelist.$NC" ; + exit 0 ; + fi + artifacts: + paths: + - whitelist/${CI_PROJECT_NAME}/${wh_file} + expire_in: 7 day + only: + variables: + - $CI_COMMIT_MESSAGE =~ /${wh_commit}/ + except: + refs: + - external_pull_requests + diff --git a/bin/templates/03_ci_templates/02_UnitTests/regression_test.gitlab-ci.yml b/bin/templates/03_ci_templates/02_UnitTests/regression_test.gitlab-ci.yml new file mode 100644 index 0000000000..aff50547ae --- /dev/null +++ b/bin/templates/03_ci_templates/02_UnitTests/regression_test.gitlab-ci.yml @@ -0,0 +1,776 @@ +stages: + - RegressionTest + - Ref_Check + - Update_Ref + - plot_ref + - prepare + +.CI_Regressiontest: + stage: RegressionTest + before_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate myenv + - pip install --upgrade git+https://github.com/MichaMans/BuildingsPy@testexamplescoverage + - export PYTHONIOENCODING=utf-8 # just in case + - echo 'FAIL' > bin/Configfiles/exit.sh + script: + - cd AixLib && xvfb-run -n 77 python ../bin/CITests/02_UnitTests/reference_check.py -n 4 --tool dymola --single-package "${lib_package}" --library AixLib --batch -DS 2022 + - cd .. && echo 'successful' > bin/Configfiles/exit.sh + after_script: + - if cat bin/Configfiles/exit.sh | grep "FAIL"; then + export PIP_CACHE_DIR="/opt/cache/pip" ; + source activate myenv ; + pip install pandas mako matplot ; + python bin/CITests/05_Converter/google_charts.py --line-html --error --funnel-comp --single-package ${lib_package} ; + mkdir -p data ; + cp -r AixLib/simulator-dymola.log data ; + cp -r AixLib/unitTests-dymola.log data ; + cp -r AixLib/funnel_comp data ; + else + echo "Test was succesful!" ; + fi + artifacts: + when: on_failure + paths: + - data + - bin/templates/02_charts/${lib_package} + expire_in: 7 day + only: + refs: + - external_pull_requests + variables: + - $CI_COMMIT_MESSAGE =~ /ci_regression_test/ + retry: + max: 2 + when: runner_system_failure + + + + +CI_Regressiontest_AixLib_Airflow: + variables: + lib_package: AixLib.Airflow + extends: .CI_Regressiontest + +CI_Regressiontest_AixLib_BoundaryConditions: + variables: + lib_package: AixLib.BoundaryConditions + extends: .CI_Regressiontest + +CI_Regressiontest_AixLib_Controls: + variables: + lib_package: AixLib.Controls + extends: .CI_Regressiontest + +CI_Regressiontest_AixLib_Electrical: + variables: + lib_package: AixLib.Electrical + extends: .CI_Regressiontest + +CI_Regressiontest_AixLib_Fluid: + variables: + lib_package: AixLib.Fluid + extends: .CI_Regressiontest + +CI_Regressiontest_AixLib_Media: + variables: + lib_package: AixLib.Media + extends: .CI_Regressiontest + +CI_Regressiontest_AixLib_Systems: + variables: + lib_package: AixLib.Systems + extends: .CI_Regressiontest + +CI_Regressiontest_AixLib_ThermalZones: + variables: + lib_package: AixLib.ThermalZones + extends: .CI_Regressiontest + +CI_Regressiontest_AixLib_Utilities: + variables: + lib_package: AixLib.Utilities + extends: .CI_Regressiontest + + + + +.dev_Regressiontest: + stage: RegressionTest + before_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate myenv + - pip install --upgrade git+https://github.com/MichaMans/BuildingsPy@testexamplescoverage + - export PYTHONIOENCODING=utf-8 # just in case + - echo 'FAIL' > bin/Configfiles/exit.sh + script: + - cd AixLib && xvfb-run -n 77 python ../bin/CITests/02_UnitTests/reference_check.py -n 4 --tool dymola --single-package "${lib_package}" --library AixLib --batch -DS 2022 + - cd .. && echo 'successful' > bin/Configfiles/exit.sh + after_script: + - if cat bin/Configfiles/exit.sh | grep "FAIL"; then + export PIP_CACHE_DIR="/opt/cache/pip" ; + source activate myenv ; + pip install pandas mako matplot ; + python bin/CITests/05_Converter/google_charts.py --line-html --error --funnel-comp --single-package ${lib_package} ; + mkdir -p data ; + cp -r AixLib/simulator-dymola.log data ; + cp -r AixLib/unitTests-dymola.log data ; + cp -r AixLib/funnel_comp data ; + else + echo "Test was succesful!" ; + fi + artifacts: + when: on_failure + paths: + - data + - bin/templates/02_charts/${lib_package} + expire_in: 7 day + only: + refs: + - development + - master + retry: + max: 2 + when: runner_system_failure + +Development_Regressiontest_AixLib_Airflow: + variables: + lib_package: AixLib.Airflow + extends: .dev_Regressiontest + +Development_Regressiontest_AixLib_BoundaryConditions: + variables: + lib_package: AixLib.BoundaryConditions + extends: .dev_Regressiontest + +Development_Regressiontest_AixLib_Controls: + variables: + lib_package: AixLib.Controls + extends: .dev_Regressiontest + +Development_Regressiontest_AixLib_Electrical: + variables: + lib_package: AixLib.Electrical + extends: .dev_Regressiontest + +Development_Regressiontest_AixLib_Fluid: + variables: + lib_package: AixLib.Fluid + extends: .dev_Regressiontest + +Development_Regressiontest_AixLib_Media: + variables: + lib_package: AixLib.Media + extends: .dev_Regressiontest + +Development_Regressiontest_AixLib_Systems: + variables: + lib_package: AixLib.Systems + extends: .dev_Regressiontest + +Development_Regressiontest_AixLib_ThermalZones: + variables: + lib_package: AixLib.ThermalZones + extends: .dev_Regressiontest + +Development_Regressiontest_AixLib_Utilities: + variables: + lib_package: AixLib.Utilities + extends: .dev_Regressiontest + + + +CI_create_plots: + stage: prepare + before_script: + - source activate myenv + - pip install --upgrade git+https://github.com/MichaMans/BuildingsPy@testexamplescoverage + - pip install --upgrade pip && apt-get update -y && apt-get install zip unzip -y + - pip install requests + - pip install pandas mako matplot + - export PYTHONIOENCODING=utf-8 # just in case + script: + - mkdir -p $CI_COMMIT_REF_NAME/plots + - python bin/CITests/05_Converter/google_charts.py --create-layout --library AixLib --single-package AixLib + - cp -r bin/templates/02_charts/* $CI_COMMIT_REF_NAME/plots + - python bin/CITests/04_api_script/api_github.py --working-branch $CI_COMMIT_REF_NAME --github-repo ${Github_Repository} --gitlab-page ${GITLAB_Page} --github-token ${GITHUB_API_TOKEN} --post-pr-comment --prepare-plot + artifacts: + paths: + - $CI_COMMIT_REF_NAME/plots + only: + refs: + - external_pull_requests + variables: + - $CI_COMMIT_MESSAGE =~ /ci_regression_test/ + when: on_failure + needs: + - job: CI_Regressiontest_AixLib_Airflow + artifacts: true + - job: CI_Regressiontest_AixLib_BoundaryConditions + artifacts: true + - job: CI_Regressiontest_AixLib_Controls + artifacts: true + - job: CI_Regressiontest_AixLib_Electrical + artifacts: true + - job: CI_Regressiontest_AixLib_Fluid + artifacts: true + - job: CI_Regressiontest_AixLib_Media + artifacts: true + - job: CI_Regressiontest_AixLib_Systems + artifacts: true + - job: CI_Regressiontest_AixLib_ThermalZones + artifacts: true + - job: CI_Regressiontest_AixLib_Utilities + artifacts: true + +.Regressiontest_job: + stage: RegressionTest + before_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate myenv + - pip install --upgrade git+https://github.com/MichaMans/BuildingsPy@testexamplescoverage + - export PYTHONIOENCODING=utf-8 # just in case + - echo 'FAIL' > bin/Configfiles/exit.sh + script: + - cd AixLib && xvfb-run -n 77 python ../bin/CITests/02_UnitTests/reference_check.py -n 4 --tool dymola --single-package "${lib_package}" --library AixLib --batch -DS 2022 + - cd .. && echo 'successful' > bin/Configfiles/exit.sh + after_script: + - if cat bin/Configfiles/exit.sh | grep "FAIL"; then + export PIP_CACHE_DIR="/opt/cache/pip" ; + source activate myenv ; + pip install pandas mako matplot ; + python bin/CITests/05_Converter/google_charts.py --line-html --error --funnel-comp --single-package ${lib_package} ; + mkdir -p data ; + cp -r AixLib/simulator-dymola.log data ; + cp -r AixLib/unitTests-dymola.log data ; + cp -r AixLib/funnel_comp data ; + else + echo "Test was succesful!" ; + fi + artifacts: + when: on_failure + paths: + - data + - bin/templates/02_charts/${lib_package} + expire_in: 7 day + only: + refs: + - external_pull_requests + except: + variables: + - $CI_COMMIT_MESSAGE =~ /ci_update_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_dif_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_correct_html/ + - $CI_COMMIT_MESSAGE =~ /ci_create_whitelist/ + - $CI_COMMIT_MESSAGE =~ /Automatic push of CI with new regression reference files. Please pull the new files before push again./ + - $CI_COMMIT_MESSAGE =~ /New reference files were pushed to this branch. The job was successfully and the newly added files are tested in another commit./ + - $CI_COMMIT_MESSAGE =~ /ci_show_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_regression_test/ + - $CI_COMMIT_MESSAGE =~ /ci_check/ + - $CI_COMMIT_MESSAGE =~ /ci_simulate/ + - $CI_COMMIT_MESSAGE =~ /ci_create_html_whitelist/ + - $CI_COMMIT_MESSAGE =~ /ci_html/ + - $CI_COMMIT_MESSAGE =~ /ci_setting/ + refs: + - master + - development + + retry: + max: 2 + when: runner_system_failure + +Regressiontest_AixLib_Airflow: + variables: + lib_package: AixLib.Airflow + extends: .Regressiontest_job + +Regressiontest_AixLib_BoundaryConditions: + variables: + lib_package: AixLib.BoundaryConditions + extends: .Regressiontest_job + +Regressiontest_AixLib_Controls: + variables: + lib_package: AixLib.Controls + extends: .Regressiontest_job + +Regressiontest_AixLib_Electrical: + variables: + lib_package: AixLib.Electrical + extends: .Regressiontest_job + +Regressiontest_AixLib_Fluid: + variables: + lib_package: AixLib.Fluid + extends: .Regressiontest_job + +Regressiontest_AixLib_Media: + variables: + lib_package: AixLib.Media + extends: .Regressiontest_job + +Regressiontest_AixLib_Systems: + variables: + lib_package: AixLib.Systems + extends: .Regressiontest_job + +Regressiontest_AixLib_ThermalZones: + variables: + lib_package: AixLib.ThermalZones + extends: .Regressiontest_job + +Regressiontest_AixLib_Utilities: + variables: + lib_package: AixLib.Utilities + extends: .Regressiontest_job + + +Regression_overall_coverage: + stage: RegressionTest + before_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate myenv + - pip install --upgrade git+https://github.com/MichaMans/BuildingsPy@testexamplescoverage + - export PYTHONIOENCODING=utf-8 # just in case + script: + - cd AixLib && python ../bin/CITests/02_UnitTests/reference_check.py --coverage-only + artifacts: + when: on_failure + paths: + - AixLib/simulator-dymola.log + - AixLib/unitTests-dymola.log + expire_in: 7 day + only: + refs: + - external_pull_requests + except: + variables: + - $CI_COMMIT_MESSAGE =~ /ci_update_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_dif_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_correct_html/ + - $CI_COMMIT_MESSAGE =~ /ci_create_whitelist/ + - $CI_COMMIT_MESSAGE =~ /Automatic push of CI with new regression reference files. Please pull the new files before push again./ + - $CI_COMMIT_MESSAGE =~ /New reference files were pushed to this branch. The job was successfully and the newly added files are tested in another commit./ + - $CI_COMMIT_MESSAGE =~ /ci_show_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_regression_test/ + - $CI_COMMIT_MESSAGE =~ /ci_check/ + - $CI_COMMIT_MESSAGE =~ /ci_simulate/ + - $CI_COMMIT_MESSAGE =~ /ci_create_html_whitelist/ + - $CI_COMMIT_MESSAGE =~ /ci_html/ + - $CI_COMMIT_MESSAGE =~ /ci_setting/ + refs: + - master + - development + retry: + max: 2 + when: runner_system_failure + +prepare_create_plots: + stage: prepare + before_script: + - source activate myenv + - pip install --upgrade git+https://github.com/MichaMans/BuildingsPy@testexamplescoverage + - pip install --upgrade pip && apt-get update -y && apt-get install zip unzip -y + - pip install requests + - pip install pandas mako matplot + - export PYTHONIOENCODING=utf-8 # just in case + script: + - mkdir -p $CI_COMMIT_REF_NAME/plots + - python bin/CITests/05_Converter/google_charts.py --create-layout --library AixLib --single-package AixLib + - cp -r bin/templates/02_charts/* $CI_COMMIT_REF_NAME/plots + - python bin/CITests/04_api_script/api_github.py --working-branch $CI_COMMIT_REF_NAME --github-repo ${Github_Repository} --gitlab-page ${GITLAB_Page} --github-token ${GITHUB_API_TOKEN} --post-pr-comment --prepare-plot + artifacts: + paths: + - $CI_COMMIT_REF_NAME/plots + only: + refs: + - external_pull_requests + except: + variables: + - $CI_COMMIT_MESSAGE =~ /ci_update_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_dif_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_correct_html/ + - $CI_COMMIT_MESSAGE =~ /ci_create_whitelist/ + - $CI_COMMIT_MESSAGE =~ /Automatic push of CI with new regression reference files. Please pull the new files before push again./ + - $CI_COMMIT_MESSAGE =~ /New reference files were pushed to this branch. The job was successfully and the newly added files are tested in another commit./ + - $CI_COMMIT_MESSAGE =~ /ci_show_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_regression_test/ + - $CI_COMMIT_MESSAGE =~ /ci_check/ + - $CI_COMMIT_MESSAGE =~ /ci_simulate/ + - $CI_COMMIT_MESSAGE =~ /ci_create_html_whitelist/ + - $CI_COMMIT_MESSAGE =~ /ci_html/ + - $CI_COMMIT_MESSAGE =~ /ci_setting/ + refs: + - master + - development + when: on_failure + needs: + - job: Regressiontest_AixLib_Airflow + artifacts: true + - job: Regressiontest_AixLib_BoundaryConditions + artifacts: true + - job: Regressiontest_AixLib_Controls + artifacts: true + - job: Regressiontest_AixLib_Electrical + artifacts: true + - job: Regressiontest_AixLib_Fluid + artifacts: true + - job: Regressiontest_AixLib_Media + artifacts: true + - job: Regressiontest_AixLib_Systems + artifacts: true + - job: Regressiontest_AixLib_ThermalZones + artifacts: true + - job: Regressiontest_AixLib_Utilities + artifacts: true + +.Regressiontest_changed_Job: + stage: RegressionTest + before_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate myenv + - pip install --upgrade git+https://github.com/MichaMans/BuildingsPy@testexamplescoverage + - export PYTHONIOENCODING=utf-8 # just in case + - echo 'FAIL' > bin/Configfiles/exit.sh + script: + - git diff --raw --diff-filter=AMT HEAD^1 > bin/Configfiles/ci_changed_model_list.txt + - cd AixLib && xvfb-run -n 77 python ../bin/CITests/02_UnitTests/reference_check.py -n 4 --tool dymola --single-package ${lib_package} --library AixLib --batch -DS 2022 -n 2 --modified-model + - cd .. && echo 'successful' > bin/Configfiles/exit.sh + after_script: + - if cat bin/Configfiles/exit.sh | grep "FAIL"; then + export PIP_CACHE_DIR="/opt/cache/pip"; + source activate myenv; + pip install pandas mako matplot; + python bin/CITests/05_Converter/google_charts.py --line-html --error --funnel-comp --single-package ${lib_package}; + mkdir -p data ; + cp -r AixLib/simulator-dymola.log data ; + cp -r AixLib/unitTests-dymola.log data ; + cp -r AixLib/funnel_comp data ; + else + echo "Test was succesful!"; + fi + artifacts: + when: on_failure + paths: + - data + - bin/templates/02_charts/${lib_package} + expire_in: 7 day + except: + refs: + - external_pull_requests + - IBPSA_Merge + - master + - development + variables: + - $CI_COMMIT_MESSAGE =~ /ci_update_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_dif_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_correct_html/ + - $CI_COMMIT_MESSAGE =~ /ci_create_whitelist/ + - $CI_COMMIT_MESSAGE =~ /Automatic push of CI with new regression reference files. Please pull the new files before push again./ + - $CI_COMMIT_MESSAGE =~ /New reference files were pushed to this branch. The job was successfully and the newly added files are tested in another commit./ + - $CI_COMMIT_MESSAGE =~ /ci_show_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_regression_test/ + - $CI_COMMIT_MESSAGE =~ /ci_check/ + - $CI_COMMIT_MESSAGE =~ /ci_simulate/ + - $CI_COMMIT_MESSAGE =~ /ci_create_html_whitelist/ + - $CI_COMMIT_MESSAGE =~ /ci_html/ + - $CI_COMMIT_MESSAGE =~ /ci_setting/ + only: + changes: + - AixLib/**/* + retry: + max: 2 + when: runner_system_failure + +Changed_Regressiontest_AixLib_Airflow: + variables: + lib_package: AixLib.Airflow + extends: .Regressiontest_changed_Job + +Changed_Regressiontest_AixLib_BoundaryConditions: + variables: + lib_package: AixLib.BoundaryConditions + extends: .Regressiontest_changed_Job + +Changed_Regressiontest_AixLib_Controls: + variables: + lib_package: AixLib.Controls + extends: .Regressiontest_changed_Job + +Changed_Regressiontest_AixLib_Electrical: + variables: + lib_package: AixLib.Electrical + extends: .Regressiontest_changed_Job + +Changed_Regressiontest_AixLib_Fluid: + variables: + lib_package: AixLib.Fluid + extends: .Regressiontest_changed_Job + +Changed_Regressiontest_AixLib_Media: + variables: + lib_package: AixLib.Media + extends: .Regressiontest_changed_Job + +Changed_Regressiontest_AixLib_Systems: + variables: + lib_package: AixLib.Systems + extends: .Regressiontest_changed_Job + +Changed_Regressiontest_AixLib_ThermalZones: + variables: + lib_package: AixLib.ThermalZones + extends: .Regressiontest_changed_Job + +Changed_Regressiontest_AixLib_Utilities: + variables: + lib_package: AixLib.Utilities + extends: .Regressiontest_changed_Job + + + +Changed_create_plots: + stage: prepare + before_script: + - source activate myenv + - pip install --upgrade git+https://github.com/MichaMans/BuildingsPy@testexamplescoverage + - pip install --upgrade pip && apt-get update -y && apt-get install zip unzip -y + - pip install requests + - pip install pandas mako matplot + - export PYTHONIOENCODING=utf-8 # just in case + script: + - mkdir -p $CI_COMMIT_REF_NAME/plots + - python bin/CITests/05_Converter/google_charts.py --create-layout --library AixLib --single-package AixLib + - cp -r bin/templates/02_charts/* $CI_COMMIT_REF_NAME/plots + + artifacts: + paths: + - $CI_COMMIT_REF_NAME/plots + except: + refs: + - external_pull_requests + - IBPSA_Merge + - master + - development + variables: + - $CI_COMMIT_MESSAGE =~ /ci_update_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_dif_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_correct_html/ + - $CI_COMMIT_MESSAGE =~ /ci_create_whitelist/ + - $CI_COMMIT_MESSAGE =~ /Automatic push of CI with new regression reference files. Please pull the new files before push again./ + - $CI_COMMIT_MESSAGE =~ /New reference files were pushed to this branch. The job was successfully and the newly added files are tested in another commit./ + - $CI_COMMIT_MESSAGE =~ /ci_show_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_regression_test/ + - $CI_COMMIT_MESSAGE =~ /ci_check/ + - $CI_COMMIT_MESSAGE =~ /ci_simulate/ + - $CI_COMMIT_MESSAGE =~ /ci_create_html_whitelist/ + - $CI_COMMIT_MESSAGE =~ /ci_html/ + - $CI_COMMIT_MESSAGE =~ /ci_setting/ + only: + changes: + - AixLib/**/* + retry: + max: 2 + when: runner_system_failure + when: on_failure + needs: + - job: Changed_Regressiontest_AixLib_Airflow + artifacts: true + - job: Changed_Regressiontest_AixLib_BoundaryConditions + artifacts: true + - job: Changed_Regressiontest_AixLib_Controls + artifacts: true + - job: Changed_Regressiontest_AixLib_Electrical + artifacts: true + - job: Changed_Regressiontest_AixLib_Fluid + artifacts: true + - job: Changed_Regressiontest_AixLib_Media + artifacts: true + - job: Changed_Regressiontest_AixLib_Systems + artifacts: true + - job: Changed_Regressiontest_AixLib_ThermalZones + artifacts: true + - job: Changed_Regressiontest_AixLib_Utilities + artifacts: true + + +RegressionTest_Check_References: + stage: Ref_Check + before_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate myenv + - pip install --upgrade git+https://github.com/MichaMans/BuildingsPy@testexamplescoverage + - apt-get update -y && apt-get install xdg-utils --fix-missing -y + - 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )' + - export PYTHONIOENCODING=utf-8 # just in case + - eval $(ssh-agent -s) + - mkdir -p ~/.ssh + - ssh-keyscan github.com >> ~/.ssh/known_hosts + - ssh-agent -a /tmp/ssh_agent.sock > /dev/null + - echo "${GITHUB_PRIVATE_KEY}" > ~/.ssh/id_rsa + - chmod 600 ~/.ssh/id_rsa + - git config --global user.name "${GITLAB_USER_NAME}" + - git config --global user.email "${GITLAB_USER_EMAIL}" + script: + - mkdir CorrectedVersion && cd CorrectedVersion + - git clone --single-branch --branch $CI_COMMIT_REF_NAME git@github.com:${Github_Repository}.git + - cd ${CI_PROJECT_NAME} + - echo "FAIL" > bin/Configfiles/exit.sh + - cd AixLib && xvfb-run -n 77 python ../bin/CITests/02_UnitTests/reference_check.py --create-ref -n 4 < ../bin/Configfiles/EOF.sh + after_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate myenv + - export PYTHONIOENCODING=utf-8 # just in case + - cd CorrectedVersion && cd ${CI_PROJECT_NAME} + - git ls-files --others --exclude-standard + - if cat bin/Configfiles/exit.sh | grep "FAIL"; then + pushmodel=$(git ls-files --others --exclude-standard) ; + echo $pushmodel ; + (git ls-files --others --exclude-standard) > bin/Configfiles/ci_new_created_reference.txt ; + python bin/CITests/06_deploy/deploy_artifacts.py --library AixLib --ref --new-ref; + message="Automatic push of CI with new regression reference files.Please pull the new files before push again. Plottet Results ${GITLAB_Page}/$CI_COMMIT_REF_NAME/plots/ " ; + git add $pushmodel ; + git commit -m "$message"; + git push git@github.com:${Github_Repository}.git ; + GREEN='\033[0;32m' ; + NC='\033[0m' ; + echo -e "$GREEN New reference files were pushed to this branch. The job was successfully and the newly added files are tested in another commit. $NC " ; + pip install pandas mako matplot; + python bin/CITests/05_Converter/google_charts.py --line-html --new-ref --single-package AixLib ; + cd .. ; + cd .. ; + mkdir -p $CI_COMMIT_REF_NAME/plots ; + mkdir -p data ; + cp -r CorrectedVersion/${CI_PROJECT_NAME}/AixLib/simulator-dymola.log data ; + cp -r CorrectedVersion/${CI_PROJECT_NAME}/AixLib/unitTests-dymola.log data ; + cp -r CorrectedVersion/${CI_PROJECT_NAME}/AixLib/funnel_comp data ; + cp -r CorrectedVersion/${CI_PROJECT_NAME}/Referencefiles data ; + cp -r CorrectedVersion/${CI_PROJECT_NAME}/bin/templates/02_charts/* $CI_COMMIT_REF_NAME/plots ; + exit 1 ; + else + echo 'successful' > bin/Configfiles/exit.sh ; + exit 0 ; + fi + artifacts: + when: on_failure + paths: + - data + - $CI_COMMIT_REF_NAME/plots + expire_in: 7 day + except: + refs: + - IBPSA_Merge + - master + - development + variables: + - $CI_COMMIT_MESSAGE =~ /ci_update_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_dif_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_correct_html/ + - $CI_COMMIT_MESSAGE =~ /ci_create_whitelist/ + - $CI_COMMIT_MESSAGE =~ /Automatic push of CI with new regression reference files. Please pull the new files before push again./ + - $CI_COMMIT_MESSAGE =~ /New reference files were pushed to this branch. The job was successfully and the newly added files are tested in another commit./ + - $CI_COMMIT_MESSAGE =~ /ci_show_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_regression_test/ + - $CI_COMMIT_MESSAGE =~ /ci_check/ + - $CI_COMMIT_MESSAGE =~ /ci_simulate/ + - $CI_COMMIT_MESSAGE =~ /ci_create_html_whitelist/ + - $CI_COMMIT_MESSAGE =~ /ci_html/ + - $CI_COMMIT_MESSAGE =~ /ci_setting/ + only: + - external_pull_requests + +Update_Regression_Results: + stage: Update_Ref + before_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate myenv + - pip install --upgrade git+https://github.com/MichaMans/BuildingsPy@testexamplescoverage + - export PYTHONIOENCODING=utf-8 # just in case + - 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )' + - eval $(ssh-agent -s) + - mkdir -p ~/.ssh + - ssh-keyscan github.com >> ~/.ssh/known_hosts + - ssh-agent -a /tmp/ssh_agent.sock > /dev/null + - echo "${GITHUB_PRIVATE_KEY}" > ~/.ssh/id_rsa + - chmod 600 ~/.ssh/id_rsa + - git config --global user.name "${GITLAB_USER_NAME}" + - git config --global user.email "${GITLAB_USER_EMAIL}" + + script: + - mkdir CorrectedVersion && cd CorrectedVersion + - git clone --single-branch --branch $CI_COMMIT_REF_NAME git@github.com:${Github_Repository}.git + - cd ${CI_PROJECT_NAME} + - echo "FAIL" > bin/Configfiles/exit.sh + - cd AixLib && xvfb-run -n 77 python ../bin/CITests/02_UnitTests/reference_check.py --update-ref --single-package AixLib -n 4 < ../bin/Configfiles/EOF.sh + after_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate myenv + - export PYTHONIOENCODING=utf-8 # just in case + - cd CorrectedVersion && cd ${CI_PROJECT_NAME} + - git ls-files --others --exclude-standard + - if cat bin/Configfiles/exit.sh | grep "FAIL"; then + pushmodel=$(git ls-files --others --exclude-standard) ; + echo $pushmodel ; + (git ls-files --others --exclude-standard) > bin/Configfiles/ci_new_created_reference.txt ; + python bin/CITests/06_deploy/deploy_artifacts.py --library AixLib --ref --updated-ref; + message="Automatic push of CI with updated or new regression reference files.Please pull the new files before push again. Plottet Results ${GITLAB_Page}/$CI_COMMIT_REF_NAME/plots/ " ; + git add AixLib/Resources/ReferenceResults/Dymola/* ; + git commit -m "$message"; + git push git@github.com:${Github_Repository}.git ; + GREEN='\033[0;32m' ; + NC='\033[0m' ; + echo -e "$GREEN New or updated reference files were pushed to this branch. The job was successfully and the newly added files are tested in another commit. $NC " ; + pip install pandas mako matplot; + python bin/CITests/05_Converter/google_charts.py --line-html --update-ref --single-package AixLib ; + cd .. ; + cd .. ; + mkdir -p $CI_COMMIT_REF_NAME/plots ; + mkdir -p data ; + cp -r CorrectedVersion/${CI_PROJECT_NAME}/AixLib/simulator-dymola.log data ; + cp -r CorrectedVersion/${CI_PROJECT_NAME}/AixLib/unitTests-dymola.log data ; + cp -r CorrectedVersion/${CI_PROJECT_NAME}/AixLib/funnel_comp data ; + cp -r CorrectedVersion/${CI_PROJECT_NAME}/Referencefiles data ; + cp -r CorrectedVersion/${CI_PROJECT_NAME}/bin/templates/02_charts/* $CI_COMMIT_REF_NAME/plots ; + exit 0 ; + else + echo 'successful' > bin/Configfiles/exit.sh ; + exit 0 ; + fi + artifacts: + when: always + paths: + - data + - $CI_COMMIT_REF_NAME/plots + expire_in: 7 day + retry: + max: 2 + when: runner_system_failure + only: + variables: + - $CI_COMMIT_MESSAGE =~ /ci_update_ref/ + except: + refs: + - external_pull_requests + +plot_reference_results: + stage: plot_ref + before_script: + - source activate myenv + - pip install --upgrade pip && apt-get update -y && apt-get install zip unzip -y + - pip install requests + - pip install pandas mako matplot + - export PYTHONIOENCODING=utf-8 # just in case + script: + - mkdir -p $CI_COMMIT_REF_NAME/plots + - python bin/CITests/05_Converter/google_charts.py --line-html --show-ref --single-package AixLib --library AixLib + - cp -r bin/templates/02_charts/* $CI_COMMIT_REF_NAME/plots + - python bin/CITests/04_api_script/api_github.py --working-branch $CI_COMMIT_REF_NAME --github-repo ${Github_Repository} --gitlab-page ${GITLAB_Page} --github-token ${GITHUB_API_TOKEN} --post-pr-comment --show-plot + artifacts: + when: always + paths: + - $CI_COMMIT_REF_NAME/plots + only: + variables: + - $CI_COMMIT_MESSAGE =~ /ci_show_ref/ + refs: + - external_pull_requests diff --git a/bin/templates/03_ci_templates/02_UnitTests/regression_test.txt b/bin/templates/03_ci_templates/02_UnitTests/regression_test.txt new file mode 100644 index 0000000000..2eeb940a9c --- /dev/null +++ b/bin/templates/03_ci_templates/02_UnitTests/regression_test.txt @@ -0,0 +1,522 @@ +stages: + - RegressionTest + - Ref_Check + - Update_Ref + - plot_ref + - prepare + +.CI_Regressiontest: + stage: RegressionTest + before_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate ${python_version} + - pip install --upgrade git+https://github.com/MichaMans/BuildingsPy@testexamplescoverage + - export PYTHONIOENCODING=utf-8 # just in case + - echo 'FAIL' > ${exit_file} + script: + - cd ${library} && xvfb-run -n 77 python ../bin/CITests/02_UnitTests/reference_check.py -n 4 --tool dymola --single-package "${lib_package}" --library ${library} --batch -DS ${dymolaversion} + - cd .. && echo 'successful' > ${exit_file} + after_script: + - if cat ${exit_file} | grep "FAIL"; then + export PIP_CACHE_DIR="/opt/cache/pip" ; + source activate ${python_version} ; + pip install pandas mako matplot ; + python bin/CITests/05_Converter/google_charts.py --line-html --error --funnel-comp --single-package ${lib_package} ; + mkdir -p data ; + cp -r ${library}/simulator-dymola.log data ; + cp -r ${library}/unitTests-dymola.log data ; + cp -r ${library}/funnel_comp data ; + else + echo "Test was succesful!" ; + fi + artifacts: + when: on_failure + paths: + - data + - ${chart_dir}/${lib_package} + expire_in: 7 day + only: + refs: + - external_pull_requests + variables: + - $CI_COMMIT_MESSAGE =~ /${regression_test_commit}/ + retry: + max: 2 + when: runner_system_failure + + + + +%for package in package_list: +CI_Regressiontest_${library}_${package}: + variables: + lib_package: ${library}.${package} + extends: .CI_Regressiontest + +%endfor + + + +.dev_Regressiontest: + stage: RegressionTest + before_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate ${python_version} + - pip install --upgrade git+https://github.com/MichaMans/BuildingsPy@testexamplescoverage + - export PYTHONIOENCODING=utf-8 # just in case + - echo 'FAIL' > ${exit_file} + script: + - cd ${library} && xvfb-run -n 77 python ../bin/CITests/02_UnitTests/reference_check.py -n 4 --tool dymola --single-package "${lib_package}" --library ${library} --batch -DS ${dymolaversion} + - cd .. && echo 'successful' > ${exit_file} + after_script: + - if cat ${exit_file} | grep "FAIL"; then + export PIP_CACHE_DIR="/opt/cache/pip" ; + source activate ${python_version} ; + pip install pandas mako matplot ; + python bin/CITests/05_Converter/google_charts.py --line-html --error --funnel-comp --single-package ${lib_package} ; + mkdir -p data ; + cp -r ${library}/simulator-dymola.log data ; + cp -r ${library}/unitTests-dymola.log data ; + cp -r ${library}/funnel_comp data ; + else + echo "Test was succesful!" ; + fi + artifacts: + when: on_failure + paths: + - data + - ${chart_dir}/${lib_package} + expire_in: 7 day + only: + refs: + - development + - master + retry: + max: 2 + when: runner_system_failure + +%for package in package_list: +Development_Regressiontest_${library}_${package}: + variables: + lib_package: ${library}.${package} + extends: .dev_Regressiontest + +%endfor + + +CI_create_plots: + stage: prepare + before_script: + - source activate ${python_version} + - pip install --upgrade git+https://github.com/MichaMans/BuildingsPy@testexamplescoverage + - pip install --upgrade pip && apt-get update -y && apt-get install zip unzip -y + - pip install requests + - pip install pandas mako matplot + - export PYTHONIOENCODING=utf-8 # just in case + script: + - mkdir -p $CI_COMMIT_REF_NAME/plots + - python bin/CITests/05_Converter/google_charts.py --create-layout --library ${library} --single-package ${library} + - cp -r ${chart_dir}/* $CI_COMMIT_REF_NAME/plots + - python bin/CITests/04_api_script/api_github.py --working-branch $CI_COMMIT_REF_NAME --github-repo ${Github_Repository} --gitlab-page ${GITLAB_Page} --github-token ${GITHUB_API_TOKEN} --post-pr-comment --prepare-plot + artifacts: + paths: + - $CI_COMMIT_REF_NAME/plots + only: + refs: + - external_pull_requests + variables: + - $CI_COMMIT_MESSAGE =~ /${regression_test_commit}/ + when: on_failure + needs: + %for package in package_list: + - job: CI_Regressiontest_${library}_${package} + artifacts: true + %endfor + +.Regressiontest_job: + stage: RegressionTest + before_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate ${python_version} + - pip install --upgrade git+https://github.com/MichaMans/BuildingsPy@testexamplescoverage + - export PYTHONIOENCODING=utf-8 # just in case + - echo 'FAIL' > ${exit_file} + script: + - cd ${library} && xvfb-run -n 77 python ../bin/CITests/02_UnitTests/reference_check.py -n 4 --tool dymola --single-package "${lib_package}" --library ${library} --batch -DS ${dymolaversion} + - cd .. && echo 'successful' > ${exit_file} + after_script: + - if cat ${exit_file} | grep "FAIL"; then + export PIP_CACHE_DIR="/opt/cache/pip" ; + source activate ${python_version} ; + pip install pandas mako matplot ; + python bin/CITests/05_Converter/google_charts.py --line-html --error --funnel-comp --single-package ${lib_package} ; + mkdir -p data ; + cp -r ${library}/simulator-dymola.log data ; + cp -r ${library}/unitTests-dymola.log data ; + cp -r ${library}/funnel_comp data ; + else + echo "Test was succesful!" ; + fi + artifacts: + when: on_failure + paths: + - data + - ${chart_dir}/${lib_package} + expire_in: 7 day + only: + refs: + - external_pull_requests + except: + variables: + %for commit in except_commit_list: + - $CI_COMMIT_MESSAGE =~ /${commit}/ + %endfor + refs: + - master + - development + + retry: + max: 2 + when: runner_system_failure + +%for package in package_list: +Regressiontest_${library}_${package}: + variables: + lib_package: ${library}.${package} + extends: .Regressiontest_job + +%endfor + +Regression_overall_coverage: + stage: RegressionTest + before_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate ${python_version} + - pip install --upgrade git+https://github.com/MichaMans/BuildingsPy@testexamplescoverage + - export PYTHONIOENCODING=utf-8 # just in case + script: + - cd ${library} && python ../bin/CITests/02_UnitTests/reference_check.py --coverage-only + artifacts: + when: on_failure + paths: + - ${library}/simulator-dymola.log + - ${library}/unitTests-dymola.log + expire_in: 7 day + only: + refs: + - external_pull_requests + except: + variables: + %for commit in except_commit_list: + - $CI_COMMIT_MESSAGE =~ /${commit}/ + %endfor + refs: + - master + - development + retry: + max: 2 + when: runner_system_failure + +prepare_create_plots: + stage: prepare + before_script: + - source activate ${python_version} + - pip install --upgrade git+https://github.com/MichaMans/BuildingsPy@testexamplescoverage + - pip install --upgrade pip && apt-get update -y && apt-get install zip unzip -y + - pip install requests + - pip install pandas mako matplot + - export PYTHONIOENCODING=utf-8 # just in case + script: + - mkdir -p $CI_COMMIT_REF_NAME/plots + - python bin/CITests/05_Converter/google_charts.py --create-layout --library ${library} --single-package ${library} + - cp -r ${chart_dir}/* $CI_COMMIT_REF_NAME/plots + - python bin/CITests/04_api_script/api_github.py --working-branch $CI_COMMIT_REF_NAME --github-repo ${Github_Repository} --gitlab-page ${GITLAB_Page} --github-token ${GITHUB_API_TOKEN} --post-pr-comment --prepare-plot + artifacts: + paths: + - $CI_COMMIT_REF_NAME/plots + only: + refs: + - external_pull_requests + except: + variables: + %for commit in except_commit_list: + - $CI_COMMIT_MESSAGE =~ /${commit}/ + %endfor + refs: + - master + - development + when: on_failure + needs: + %for package in package_list: + - job: Regressiontest_${library}_${package} + artifacts: true + %endfor + +.Regressiontest_changed_Job: + stage: RegressionTest + before_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate ${python_version} + - pip install --upgrade git+https://github.com/MichaMans/BuildingsPy@testexamplescoverage + - export PYTHONIOENCODING=utf-8 # just in case + - echo 'FAIL' > ${exit_file} + script: + - git diff --raw --diff-filter=AMT HEAD^1 > ${ch_file} + - cd ${library} && xvfb-run -n 77 python ../bin/CITests/02_UnitTests/reference_check.py -n 4 --tool dymola --single-package ${lib_package} --library ${library} --batch -DS ${dymolaversion} -n 2 --modified-model + - cd .. && echo 'successful' > ${exit_file} + after_script: + - if cat ${exit_file} | grep "FAIL"; then + export PIP_CACHE_DIR="/opt/cache/pip"; + source activate ${python_version}; + pip install pandas mako matplot; + python bin/CITests/05_Converter/google_charts.py --line-html --error --funnel-comp --single-package ${lib_package}; + mkdir -p data ; + cp -r ${library}/simulator-dymola.log data ; + cp -r ${library}/unitTests-dymola.log data ; + cp -r ${library}/funnel_comp data ; + else + echo "Test was succesful!"; + fi + artifacts: + when: on_failure + paths: + - data + - ${chart_dir}/${lib_package} + expire_in: 7 day + except: + refs: + - external_pull_requests + ${merge_branch} + - master + - development + variables: + %for commit in except_commit_list: + - $CI_COMMIT_MESSAGE =~ /${commit}/ + %endfor + only: + changes: + - ${library}/**/* + retry: + max: 2 + when: runner_system_failure + +%for package in package_list: +Changed_Regressiontest_${library}_${package}: + variables: + lib_package: ${library}.${package} + extends: .Regressiontest_changed_Job + +%endfor + + +Changed_create_plots: + stage: prepare + before_script: + - source activate ${python_version} + - pip install --upgrade git+https://github.com/MichaMans/BuildingsPy@testexamplescoverage + - pip install --upgrade pip && apt-get update -y && apt-get install zip unzip -y + - pip install requests + - pip install pandas mako matplot + - export PYTHONIOENCODING=utf-8 # just in case + script: + - mkdir -p $CI_COMMIT_REF_NAME/plots + - python bin/CITests/05_Converter/google_charts.py --create-layout --library ${library} --single-package ${library} + - cp -r ${chart_dir}/* $CI_COMMIT_REF_NAME/plots + + artifacts: + paths: + - $CI_COMMIT_REF_NAME/plots + except: + refs: + - external_pull_requests + ${merge_branch} + - master + - development + variables: + %for commit in except_commit_list: + - $CI_COMMIT_MESSAGE =~ /${commit}/ + %endfor + only: + changes: + - ${library}/**/* + retry: + max: 2 + when: runner_system_failure + when: on_failure + needs: + %for package in package_list: + - job: Changed_Regressiontest_${library}_${package} + artifacts: true + %endfor + + +RegressionTest_Check_References: + stage: Ref_Check + before_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate ${python_version} + - pip install --upgrade git+https://github.com/MichaMans/BuildingsPy@testexamplescoverage + - apt-get update -y && apt-get install xdg-utils --fix-missing -y + - 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )' + - export PYTHONIOENCODING=utf-8 # just in case + - eval $(ssh-agent -s) + - mkdir -p ~/.ssh + - ssh-keyscan github.com >> ~/.ssh/known_hosts + - ssh-agent -a /tmp/ssh_agent.sock > /dev/null + - echo "${GITHUB_PRIVATE_KEY}" > ~/.ssh/id_rsa + - chmod 600 ~/.ssh/id_rsa + - git config --global user.name "${GITLAB_USER_NAME}" + - git config --global user.email "${GITLAB_USER_EMAIL}" + script: + - mkdir CorrectedVersion && cd CorrectedVersion + - git clone --single-branch --branch $CI_COMMIT_REF_NAME git@github.com:${Github_Repository}.git + - cd ${CI_PROJECT_NAME} + - echo "FAIL" > ${exit_file} + - cd ${library} && xvfb-run -n 77 python ../bin/CITests/02_UnitTests/reference_check.py --create-ref -n 4 < ../${eof_file} + after_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate ${python_version} + - export PYTHONIOENCODING=utf-8 # just in case + - cd CorrectedVersion && cd ${CI_PROJECT_NAME} + - git ls-files --others --exclude-standard + - if cat ${exit_file} | grep "FAIL"; then + pushmodel=$(git ls-files --others --exclude-standard) ; + echo $pushmodel ; + (git ls-files --others --exclude-standard) > ${new_ref_file} ; + python bin/CITests/06_deploy/deploy_artifacts.py --library AixLib --ref --new-ref; + message="Automatic push of CI with new regression reference files.Please pull the new files before push again. Plottet Results ${GITLAB_Page}/$CI_COMMIT_REF_NAME/plots/ " ; + git add $pushmodel ; + git commit -m "$message"; + git push git@github.com:${Github_Repository}.git ; + GREEN='\033[0;32m' ; + NC='\033[0m' ; + echo -e "$GREEN New reference files were pushed to this branch. The job was successfully and the newly added files are tested in another commit. $NC " ; + pip install pandas mako matplot; + python bin/CITests/05_Converter/google_charts.py --line-html --new-ref --single-package AixLib ; + cd .. ; + cd .. ; + mkdir -p $CI_COMMIT_REF_NAME/plots ; + mkdir -p data ; + cp -r CorrectedVersion/${CI_PROJECT_NAME}/${library}/simulator-dymola.log data ; + cp -r CorrectedVersion/${CI_PROJECT_NAME}/${library}/unitTests-dymola.log data ; + cp -r CorrectedVersion/${CI_PROJECT_NAME}/${library}/funnel_comp data ; + cp -r CorrectedVersion/${CI_PROJECT_NAME}/Referencefiles data ; + cp -r CorrectedVersion/${CI_PROJECT_NAME}/${chart_dir}/* $CI_COMMIT_REF_NAME/plots ; + exit 1 ; + else + echo 'successful' > ${exit_file} ; + exit 0 ; + fi + artifacts: + when: on_failure + paths: + - data + - $CI_COMMIT_REF_NAME/plots + expire_in: 7 day + except: + refs: + ${merge_branch} + - master + - development + variables: + %for commit in except_commit_list: + - $CI_COMMIT_MESSAGE =~ /${commit}/ + %endfor + only: + - external_pull_requests + +Update_Regression_Results: + stage: Update_Ref + before_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate ${python_version} + - pip install --upgrade git+https://github.com/MichaMans/BuildingsPy@testexamplescoverage + - export PYTHONIOENCODING=utf-8 # just in case + - 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )' + - eval $(ssh-agent -s) + - mkdir -p ~/.ssh + - ssh-keyscan github.com >> ~/.ssh/known_hosts + - ssh-agent -a /tmp/ssh_agent.sock > /dev/null + - echo "${GITHUB_PRIVATE_KEY}" > ~/.ssh/id_rsa + - chmod 600 ~/.ssh/id_rsa + - git config --global user.name "${GITLAB_USER_NAME}" + - git config --global user.email "${GITLAB_USER_EMAIL}" + + script: + - mkdir CorrectedVersion && cd CorrectedVersion + - git clone --single-branch --branch $CI_COMMIT_REF_NAME git@github.com:${Github_Repository}.git + - cd ${CI_PROJECT_NAME} + - echo "FAIL" > ${exit_file} + - cd ${library} && xvfb-run -n 77 python ../bin/CITests/02_UnitTests/reference_check.py --update-ref --single-package ${library} -n 4 < ../${eof_file} + after_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate ${python_version} + - export PYTHONIOENCODING=utf-8 # just in case + - cd CorrectedVersion && cd ${CI_PROJECT_NAME} + - git ls-files --others --exclude-standard + - if cat ${exit_file} | grep "FAIL"; then + pushmodel=$(git ls-files --others --exclude-standard) ; + echo $pushmodel ; + (git ls-files --others --exclude-standard) > ${new_ref_file} ; + python bin/CITests/06_deploy/deploy_artifacts.py --library ${library} --ref --updated-ref; + message="Automatic push of CI with updated or new regression reference files.Please pull the new files before push again. Plottet Results ${GITLAB_Page}/$CI_COMMIT_REF_NAME/plots/ " ; + git add ${library}/Resources/ReferenceResults/Dymola/* ; + git commit -m "$message"; + git push git@github.com:${Github_Repository}.git ; + GREEN='\033[0;32m' ; + NC='\033[0m' ; + echo -e "$GREEN New or updated reference files were pushed to this branch. The job was successfully and the newly added files are tested in another commit. $NC " ; + pip install pandas mako matplot; + python bin/CITests/05_Converter/google_charts.py --line-html --update-ref --single-package ${library} ; + cd .. ; + cd .. ; + mkdir -p $CI_COMMIT_REF_NAME/plots ; + mkdir -p data ; + cp -r CorrectedVersion/${CI_PROJECT_NAME}/${library}/simulator-dymola.log data ; + cp -r CorrectedVersion/${CI_PROJECT_NAME}/${library}/unitTests-dymola.log data ; + cp -r CorrectedVersion/${CI_PROJECT_NAME}/${library}/funnel_comp data ; + cp -r CorrectedVersion/${CI_PROJECT_NAME}/Referencefiles data ; + cp -r CorrectedVersion/${CI_PROJECT_NAME}/${chart_dir}/* $CI_COMMIT_REF_NAME/plots ; + exit 0 ; + else + echo 'successful' > ${exit_file} ; + exit 0 ; + fi + artifacts: + when: always + paths: + - data + - $CI_COMMIT_REF_NAME/plots + expire_in: 7 day + retry: + max: 2 + when: runner_system_failure + only: + variables: + - $CI_COMMIT_MESSAGE =~ /${update_ref_commit}/ + except: + refs: + - external_pull_requests + +plot_reference_results: + stage: plot_ref + before_script: + - source activate ${python_version} + - pip install --upgrade pip && apt-get update -y && apt-get install zip unzip -y + - pip install requests + - pip install pandas mako matplot + - export PYTHONIOENCODING=utf-8 # just in case + script: + - mkdir -p $CI_COMMIT_REF_NAME/plots + - python bin/CITests/05_Converter/google_charts.py --line-html --show-ref --single-package ${library} --library ${library} + - cp -r ${chart_dir}/* $CI_COMMIT_REF_NAME/plots + - python bin/CITests/04_api_script/api_github.py --working-branch $CI_COMMIT_REF_NAME --github-repo ${Github_Repository} --gitlab-page ${GITLAB_Page} --github-token ${GITHUB_API_TOKEN} --post-pr-comment --show-plot + artifacts: + when: always + paths: + - $CI_COMMIT_REF_NAME/plots + only: + variables: + - $CI_COMMIT_MESSAGE =~ /${show_ref_commit}/ + refs: + - external_pull_requests diff --git a/bin/templates/03_ci_templates/02_UnitTests/simulate_model.gitlab-ci.yml b/bin/templates/03_ci_templates/02_UnitTests/simulate_model.gitlab-ci.yml new file mode 100644 index 0000000000..c9d627ea72 --- /dev/null +++ b/bin/templates/03_ci_templates/02_UnitTests/simulate_model.gitlab-ci.yml @@ -0,0 +1,360 @@ +stages: + - simulate + +.CI_simulate_model_job: + stage: simulate + before_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate myenv + - pip install natsort + - export PYTHONIOENCODING=utf-8 # just in case + script: + - xvfb-run -n 77 python bin/CITests/02_UnitTests/CheckPackages/validatetest.py --single-package "${lib_package}" --library AixLib -DS 2022 --wh-library IBPSA --filterwhitelist --simulateexamples + artifacts: + when: on_failure + paths: + - AixLib/AixLib.${lib_package}-log.txt + - AixLib/AixLib.${lib_package}-errorlog.txt + expire_in: 7 day + only: + variables: + - $CI_COMMIT_MESSAGE =~ /ci_simulate/ + except: + refs: + - external_pull_requests + retry: + max: 2 + when: runner_system_failure + +CI_simulate_AixLib_Airflow: + variables: + lib_package: Airflow + extends: .CI_simulate_model_job + +CI_simulate_AixLib_BoundaryConditions: + variables: + lib_package: BoundaryConditions + extends: .CI_simulate_model_job + +CI_simulate_AixLib_Controls: + variables: + lib_package: Controls + extends: .CI_simulate_model_job + +CI_simulate_AixLib_Electrical: + variables: + lib_package: Electrical + extends: .CI_simulate_model_job + +CI_simulate_AixLib_Fluid: + variables: + lib_package: Fluid + extends: .CI_simulate_model_job + +CI_simulate_AixLib_Media: + variables: + lib_package: Media + extends: .CI_simulate_model_job + +CI_simulate_AixLib_Systems: + variables: + lib_package: Systems + extends: .CI_simulate_model_job + +CI_simulate_AixLib_ThermalZones: + variables: + lib_package: ThermalZones + extends: .CI_simulate_model_job + +CI_simulate_AixLib_Utilities: + variables: + lib_package: Utilities + extends: .CI_simulate_model_job + + +.dev_simulate_model_job: + stage: simulate + before_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate myenv + - pip install natsort + - export PYTHONIOENCODING=utf-8 # just in case + script: + - xvfb-run -n 77 python bin/CITests/02_UnitTests/CheckPackages/validatetest.py --single-package "${lib_package}" --library AixLib -DS 2022 --wh-library IBPSA --filterwhitelist --simulateexamples + artifacts: + when: on_failure + paths: + - AixLib/AixLib.${lib_package}-log.txt + - AixLib/AixLib.${lib_package}-errorlog.txt + expire_in: 7 day + only: + refs: + - master + - development + except: + variables: + - $CI_COMMIT_MESSAGE =~ /ci_update_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_dif_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_correct_html/ + - $CI_COMMIT_MESSAGE =~ /ci_create_whitelist/ + - $CI_COMMIT_MESSAGE =~ /Automatic push of CI with new regression reference files. Please pull the new files before push again./ + - $CI_COMMIT_MESSAGE =~ /New reference files were pushed to this branch. The job was successfully and the newly added files are tested in another commit./ + - $CI_COMMIT_MESSAGE =~ /ci_show_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_regression_test/ + - $CI_COMMIT_MESSAGE =~ /ci_check/ + - $CI_COMMIT_MESSAGE =~ /ci_simulate/ + - $CI_COMMIT_MESSAGE =~ /ci_create_html_whitelist/ + - $CI_COMMIT_MESSAGE =~ /ci_html/ + - $CI_COMMIT_MESSAGE =~ /ci_setting/ + retry: + max: 2 + when: runner_system_failure + +Development_simulate_AixLib_Airflow: + variables: + lib_package: Airflow + extends: .dev_simulate_model_job + +Development_simulate_AixLib_BoundaryConditions: + variables: + lib_package: BoundaryConditions + extends: .dev_simulate_model_job + +Development_simulate_AixLib_Controls: + variables: + lib_package: Controls + extends: .dev_simulate_model_job + +Development_simulate_AixLib_Electrical: + variables: + lib_package: Electrical + extends: .dev_simulate_model_job + +Development_simulate_AixLib_Fluid: + variables: + lib_package: Fluid + extends: .dev_simulate_model_job + +Development_simulate_AixLib_Media: + variables: + lib_package: Media + extends: .dev_simulate_model_job + +Development_simulate_AixLib_Systems: + variables: + lib_package: Systems + extends: .dev_simulate_model_job + +Development_simulate_AixLib_ThermalZones: + variables: + lib_package: ThermalZones + extends: .dev_simulate_model_job + +Development_simulate_AixLib_Utilities: + variables: + lib_package: Utilities + extends: .dev_simulate_model_job + + + + +.simulate_model_job: + stage: simulate + before_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate myenv + - pip install natsort + - export PYTHONIOENCODING=utf-8 # just in case + script: + - xvfb-run -n 77 python bin/CITests/02_UnitTests/CheckPackages/validatetest.py --single-package "${lib_package}" --library AixLib -DS 2022 --wh-library IBPSA --filterwhitelist --simulateexamples + artifacts: + when: on_failure + paths: + - AixLib/AixLib.${lib_package}-log.txt + - AixLib/AixLib.${lib_package}-errorlog.txt + expire_in: 7 day + only: + refs: + - external_pull_requests + + except: + variables: + - $CI_COMMIT_MESSAGE =~ /ci_update_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_dif_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_correct_html/ + - $CI_COMMIT_MESSAGE =~ /ci_create_whitelist/ + - $CI_COMMIT_MESSAGE =~ /Automatic push of CI with new regression reference files. Please pull the new files before push again./ + - $CI_COMMIT_MESSAGE =~ /New reference files were pushed to this branch. The job was successfully and the newly added files are tested in another commit./ + - $CI_COMMIT_MESSAGE =~ /ci_show_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_regression_test/ + - $CI_COMMIT_MESSAGE =~ /ci_check/ + - $CI_COMMIT_MESSAGE =~ /ci_simulate/ + - $CI_COMMIT_MESSAGE =~ /ci_create_html_whitelist/ + - $CI_COMMIT_MESSAGE =~ /ci_html/ + - $CI_COMMIT_MESSAGE =~ /ci_setting/ + refs: + - master + - development + + retry: + max: 2 + when: runner_system_failure + +simulate_AixLib_Airflow: + variables: + lib_package: Airflow + extends: .simulate_model_job + +simulate_AixLib_BoundaryConditions: + variables: + lib_package: BoundaryConditions + extends: .simulate_model_job + +simulate_AixLib_Controls: + variables: + lib_package: Controls + extends: .simulate_model_job + +simulate_AixLib_Electrical: + variables: + lib_package: Electrical + extends: .simulate_model_job + +simulate_AixLib_Fluid: + variables: + lib_package: Fluid + extends: .simulate_model_job + +simulate_AixLib_Media: + variables: + lib_package: Media + extends: .simulate_model_job + +simulate_AixLib_Systems: + variables: + lib_package: Systems + extends: .simulate_model_job + +simulate_AixLib_ThermalZones: + variables: + lib_package: ThermalZones + extends: .simulate_model_job + +simulate_AixLib_Utilities: + variables: + lib_package: Utilities + extends: .simulate_model_job + + +.simulate_changed_models_job: + stage: simulate + before_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate myenv + - pip install natsort + - export PYTHONIOENCODING=utf-8 # just in case + script: + - git diff --raw --diff-filter=AMT HEAD^1 > bin/Configfiles/ci_changed_model_list.txt + - xvfb-run -n 77 python bin/CITests/02_UnitTests/CheckPackages/validatetest.py --single-package "${lib_package}" --library AixLib -DS 2022 -CM --simulateexamples + artifacts: + when: on_failure + paths: + - AixLib/AixLib.${lib_package}-log.txt + - AixLib/AixLib.${lib_package}-errorlog.txt + expire_in: 7 day + except: + refs: + - external_pull_requests + - IBPSA_Merge + - master + - development + variables: + - $CI_COMMIT_MESSAGE =~ /ci_update_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_dif_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_correct_html/ + - $CI_COMMIT_MESSAGE =~ /ci_create_whitelist/ + - $CI_COMMIT_MESSAGE =~ /Automatic push of CI with new regression reference files. Please pull the new files before push again./ + - $CI_COMMIT_MESSAGE =~ /New reference files were pushed to this branch. The job was successfully and the newly added files are tested in another commit./ + - $CI_COMMIT_MESSAGE =~ /ci_show_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_regression_test/ + - $CI_COMMIT_MESSAGE =~ /ci_check/ + - $CI_COMMIT_MESSAGE =~ /ci_simulate/ + - $CI_COMMIT_MESSAGE =~ /ci_create_html_whitelist/ + - $CI_COMMIT_MESSAGE =~ /ci_html/ + - $CI_COMMIT_MESSAGE =~ /ci_setting/ + retry: + max: 2 + when: runner_system_failure + +simulate_AixLib_Airflow_changed_models: + variables: + lib_package: Airflow + only: + changes: + - AixLib/Airflow/**/* + extends: .simulate_changed_models_job + +simulate_AixLib_BoundaryConditions_changed_models: + variables: + lib_package: BoundaryConditions + only: + changes: + - AixLib/BoundaryConditions/**/* + extends: .simulate_changed_models_job + +simulate_AixLib_Controls_changed_models: + variables: + lib_package: Controls + only: + changes: + - AixLib/Controls/**/* + extends: .simulate_changed_models_job + +simulate_AixLib_Electrical_changed_models: + variables: + lib_package: Electrical + only: + changes: + - AixLib/Electrical/**/* + extends: .simulate_changed_models_job + +simulate_AixLib_Fluid_changed_models: + variables: + lib_package: Fluid + only: + changes: + - AixLib/Fluid/**/* + extends: .simulate_changed_models_job + +simulate_AixLib_Media_changed_models: + variables: + lib_package: Media + only: + changes: + - AixLib/Media/**/* + extends: .simulate_changed_models_job + +simulate_AixLib_Systems_changed_models: + variables: + lib_package: Systems + only: + changes: + - AixLib/Systems/**/* + extends: .simulate_changed_models_job + +simulate_AixLib_ThermalZones_changed_models: + variables: + lib_package: ThermalZones + only: + changes: + - AixLib/ThermalZones/**/* + extends: .simulate_changed_models_job + +simulate_AixLib_Utilities_changed_models: + variables: + lib_package: Utilities + only: + changes: + - AixLib/Utilities/**/* + extends: .simulate_changed_models_job + diff --git a/bin/templates/03_ci_templates/02_UnitTests/simulate_model.txt b/bin/templates/03_ci_templates/02_UnitTests/simulate_model.txt new file mode 100644 index 0000000000..71af75b24a --- /dev/null +++ b/bin/templates/03_ci_templates/02_UnitTests/simulate_model.txt @@ -0,0 +1,154 @@ +stages: + - simulate + +.CI_simulate_model_job: + stage: simulate + before_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate ${python_version} + - pip install natsort + - export PYTHONIOENCODING=utf-8 # just in case + script: + - xvfb-run -n 77 python bin/CITests/02_UnitTests/CheckPackages/validatetest.py --single-package "${lib_package}" --library ${library} -DS ${dymolaversion} ${wh_flag} ${filterflag} --simulateexamples + artifacts: + when: on_failure + paths: + - ${library}/${library}.${lib_package}-log.txt + - ${library}/${library}.${lib_package}-errorlog.txt + expire_in: 7 day + only: + variables: + - $CI_COMMIT_MESSAGE =~ /${simulate_commit}/ + except: + refs: + - external_pull_requests + retry: + max: 2 + when: runner_system_failure + +%for package in package_list: +CI_simulate_${library}_${package}: + variables: + lib_package: ${package} + extends: .CI_simulate_model_job + +%endfor + +.dev_simulate_model_job: + stage: simulate + before_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate ${python_version} + - pip install natsort + - export PYTHONIOENCODING=utf-8 # just in case + script: + - xvfb-run -n 77 python bin/CITests/02_UnitTests/CheckPackages/validatetest.py --single-package "${lib_package}" --library ${library} -DS ${dymolaversion} ${wh_flag} ${filterflag} --simulateexamples + artifacts: + when: on_failure + paths: + - ${library}/${library}.${lib_package}-log.txt + - ${library}/${library}.${lib_package}-errorlog.txt + expire_in: 7 day + only: + refs: + - master + - development + except: + variables: + %for commit in except_commit_list: + - $CI_COMMIT_MESSAGE =~ /${commit}/ + %endfor + retry: + max: 2 + when: runner_system_failure + +%for package in package_list: +Development_simulate_${library}_${package}: + variables: + lib_package: ${package} + extends: .dev_simulate_model_job + +%endfor + + + +.simulate_model_job: + stage: simulate + before_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate ${python_version} + - pip install natsort + - export PYTHONIOENCODING=utf-8 # just in case + script: + - xvfb-run -n 77 python bin/CITests/02_UnitTests/CheckPackages/validatetest.py --single-package "${lib_package}" --library ${library} -DS ${dymolaversion} ${wh_flag} ${filterflag} --simulateexamples + artifacts: + when: on_failure + paths: + - ${library}/${library}.${lib_package}-log.txt + - ${library}/${library}.${lib_package}-errorlog.txt + expire_in: 7 day + only: + refs: + - external_pull_requests + + except: + variables: + %for commit in except_commit_list: + - $CI_COMMIT_MESSAGE =~ /${commit}/ + %endfor + refs: + - master + - development + + retry: + max: 2 + when: runner_system_failure + +%for package in package_list: +simulate_${library}_${package}: + variables: + lib_package: ${package} + extends: .simulate_model_job + +%endfor + +.simulate_changed_models_job: + stage: simulate + before_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate ${python_version} + - pip install natsort + - export PYTHONIOENCODING=utf-8 # just in case + script: + - git diff --raw --diff-filter=AMT HEAD^1 > ${ch_file} + - xvfb-run -n 77 python bin/CITests/02_UnitTests/CheckPackages/validatetest.py --single-package "${lib_package}" --library ${library} -DS ${dymolaversion} -CM --simulateexamples + artifacts: + when: on_failure + paths: + - ${library}/${library}.${lib_package}-log.txt + - ${library}/${library}.${lib_package}-errorlog.txt + expire_in: 7 day + except: + refs: + - external_pull_requests + ${merge_branch} + - master + - development + variables: + %for commit in except_commit_list: + - $CI_COMMIT_MESSAGE =~ /${commit}/ + %endfor + retry: + max: 2 + when: runner_system_failure + +%for package in package_list: +simulate_${library}_${package}_changed_models: + variables: + lib_package: ${package} + only: + changes: + - ${library}/${package}/**/* + extends: .simulate_changed_models_job + +%endfor diff --git a/bin/templates/03_ci_templates/03_SyntaxTest/html_check.gitlab-ci.yml b/bin/templates/03_ci_templates/03_SyntaxTest/html_check.gitlab-ci.yml new file mode 100644 index 0000000000..5bc3cd155f --- /dev/null +++ b/bin/templates/03_ci_templates/03_SyntaxTest/html_check.gitlab-ci.yml @@ -0,0 +1,235 @@ +stages: + - build + - HTML_Check + - create_html_whitelist + - deploy + - openMR + - post + +variables: + Praefix_Branch: "Correct_HTML_" + Newbranch: ${Praefix_Branch}${CI_COMMIT_REF_NAME} + +trigger_check_HTML: + stage: build + before_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate myenv + - export PYTHONIOENCODING=utf-8 # just in case + script: + - python bin/CITests/03_SyntaxTests/html_tidy_errors.py --s AixLib --correct-view --log --align --font + - if cat bin/Configfiles/exit.sh | grep "exit 1"; then + echo "Test was not successful!" ; + exit 1; + else + exit 0; + fi + artifacts: + paths: + - AixLib/HTML-logfile.txt + expire_in: 7 day + except: + refs: + - external_pull_requests + only: + variables: + - $CI_COMMIT_MESSAGE =~ /ci_correct_html/ + +HTML_Merge_Checks: + stage: HTML_Check + before_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate myenv + - export PYTHONIOENCODING=utf-8 # just in case + script: + - python bin/CITests/03_SyntaxTests/html_tidy_errors.py --s AixLib --correct-view --log --align --font + - if cat bin/Configfiles/exit.sh | grep "exit 1"; then + echo "HTML Check was not successfully" ; + echo "Read HTML - logfile!" ; + exit 1 ; + else + exit 0; + fi + artifacts: + when: on_failure + paths: + - AixLib/HTML-logfile.txt + expire_in: 7 day + only: + refs: + - external_pull_requests + + except: + variables: + - $CI_COMMIT_MESSAGE =~ /ci_update_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_dif_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_correct_html/ + - $CI_COMMIT_MESSAGE =~ /ci_create_whitelist/ + - $CI_COMMIT_MESSAGE =~ /Automatic push of CI with new regression reference files. Please pull the new files before push again./ + - $CI_COMMIT_MESSAGE =~ /New reference files were pushed to this branch. The job was successfully and the newly added files are tested in another commit./ + - $CI_COMMIT_MESSAGE =~ /ci_show_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_regression_test/ + - $CI_COMMIT_MESSAGE =~ /ci_check/ + - $CI_COMMIT_MESSAGE =~ /ci_simulate/ + - $CI_COMMIT_MESSAGE =~ /ci_create_html_whitelist/ + - $CI_COMMIT_MESSAGE =~ /ci_html/ + - $CI_COMMIT_MESSAGE =~ /ci_setting/ + refs: + - master + - development + +HTML_Check: + stage: HTML_Check + before_script: + - 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )' + - eval $(ssh-agent -s) + - mkdir -p ~/.ssh + - ssh-keyscan github.com >> ~/.ssh/known_hosts + - ssh-agent -a /tmp/ssh_agent.sock > /dev/null + - echo "${GITHUB_PRIVATE_KEY}" > ~/.ssh/id_rsa + - chmod 600 ~/.ssh/id_rsa + - git config --global user.name "${GITLAB_USER_NAME}" + - git config --global user.email "${GITLAB_USER_EMAIL}" + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate myenv + - export PYTHONIOENCODING=utf-8 # just in case + script: + - python bin/CITests/03_SyntaxTests/html_tidy_errors.py --s AixLib --correct-view --log --align --font + - if cat bin/Configfiles/exit.sh | grep "exit 1"; then + mkdir CorrectedVersion && cd CorrectedVersion ; + git clone --single-branch --branch $CI_COMMIT_REF_NAME git@github.com:${Github_Repository}.git; + cd ${CI_PROJECT_NAME}; + python bin/CITests/03_SyntaxTests/html_tidy_errors.py --s AixLib --correct-overwrite --align --font --log; + git checkout -B $Newbranch; + message="ci_correct_html"; + git add . ; + echo $message; + git commit -m "$message" ; + git push --force git@github.com:${Github_Repository}.git; + wait ; + exit 1; + else + exit 0; + fi + artifacts: + when: on_failure + paths: + - AixLib/HTML-logfile.txt + expire_in: 7 day + + except: + refs: + - external_pull_requests + - /^Correct_HTML.*$/ + - IBPSA_Merge + variables: + - $CI_COMMIT_MESSAGE =~ /ci_update_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_dif_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_correct_html/ + - $CI_COMMIT_MESSAGE =~ /ci_create_whitelist/ + - $CI_COMMIT_MESSAGE =~ /Automatic push of CI with new regression reference files. Please pull the new files before push again./ + - $CI_COMMIT_MESSAGE =~ /New reference files were pushed to this branch. The job was successfully and the newly added files are tested in another commit./ + - $CI_COMMIT_MESSAGE =~ /ci_show_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_regression_test/ + - $CI_COMMIT_MESSAGE =~ /ci_check/ + - $CI_COMMIT_MESSAGE =~ /ci_simulate/ + - $CI_COMMIT_MESSAGE =~ /ci_create_html_whitelist/ + - $CI_COMMIT_MESSAGE =~ /ci_html/ + - $CI_COMMIT_MESSAGE =~ /ci_setting/ + +CI_HTML_Check: + stage: HTML_Check + before_script: + - 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )' + - eval $(ssh-agent -s) + - mkdir -p ~/.ssh + - ssh-keyscan github.com >> ~/.ssh/known_hosts + - ssh-agent -a /tmp/ssh_agent.sock > /dev/null + - echo "${GITHUB_PRIVATE_KEY}" > ~/.ssh/id_rsa + - chmod 600 ~/.ssh/id_rsa + - git config --global user.name "${GITLAB_USER_NAME}" + - git config --global user.email "${GITLAB_USER_EMAIL}" + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate myenv + - export PYTHONIOENCODING=utf-8 # just in case + script: + - python bin/CITests/03_SyntaxTests/html_tidy_errors.py --s AixLib --correct-view --log --align --font + - if cat bin/Configfiles/exit.sh | grep "exit 1"; then + mkdir CorrectedVersion && cd CorrectedVersion ; + git clone --single-branch --branch $CI_COMMIT_REF_NAME git@github.com:${Github_Repository}.git; + cd ${CI_PROJECT_NAME}; + python bin/CITests/03_SyntaxTests/html_tidy_errors.py --s AixLib --correct-overwrite --align --font --log; + git checkout -B $Newbranch; + message="ci_correct_html"; + git add . ; + echo $message; + git commit -m "$message" ; + git push --force git@github.com:${Github_Repository}.git; + wait ; + exit 1; + else + exit 0; + fi + artifacts: + when: on_failure + paths: + - AixLib/HTML-logfile.txt + expire_in: 7 day + only: + variables: + - $CI_COMMIT_MESSAGE =~ /ci_html/ + + +Open_Pull_Request: + stage: openMR + before_script: + - source activate myenv + - pip install --upgrade pip && apt-get update -y && apt-get install zip unzip -y + - pip install requests + - export PYTHONIOENCODING=utf-8 # just in case + - git config --global user.name "${GITLAB_USER_NAME}" + - git config --global user.email "${GITLAB_USER_EMAIL}" + script: + - python bin/CITests/04_api_script/api_github.py --github-repo ${Github_Repository} --working-branch $CI_COMMIT_REF_NAME --github-token ${GITHUB_API_TOKEN} --create-pr --correct-html + except: + refs: + - external_pull_requests + only: + variables: + - $CI_COMMIT_MESSAGE =~ /ci_correct_html/ + +html_whitelist_job: + stage: create_html_whitelist + before_script: + - Xvfb :77 -extension RANDR -extension GLX & export DISPLAY=:77.0 && + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate myenv + - export PYTHONIOENCODING=utf-8 + - 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )' + - eval $(ssh-agent -s) + - mkdir -p ~/.ssh + - ssh-keyscan github.com >> ~/.ssh/known_hosts + - ssh-agent -a /tmp/ssh_agent.sock > /dev/null + - echo "${GITHUB_PRIVATE_KEY}" > ~/.ssh/id_rsa + - chmod 600 ~/.ssh/id_rsa + - git config --global user.name "${GITLAB_USER_NAME}" + - git config --global user.email "${GITLAB_USER_EMAIL}" + script: + - mkdir whitelist && cd whitelist + - git clone --single-branch --branch $CI_COMMIT_REF_NAME git@github.com:${Github_Repository}.git + - cd ${CI_PROJECT_NAME} + - python bin/CITests/03_SyntaxTests/html_tidy_errors.py --WhiteList --git-url https://github.com/ibpsa/modelica-ibpsa.git --wh-library IBPSA + - message="Automatic push of CI - Update html_whitelist. Please pull the new files before push again. [skip ci]" + - git add bin/ci_whitelist/html_whitelist.txt + - git commit -m "$message" + - git push git@github.com:${Github_Repository}.git + artifacts: + paths: + - whitelist/${CI_PROJECT_NAME}/bin/ci_whitelist/html_whitelist.txt + expire_in: 7 day + only: + variables: + - $CI_COMMIT_MESSAGE =~ /ci_create_html_whitelist/ + except: + refs: + - external_pull_requests \ No newline at end of file diff --git a/bin/templates/03_ci_templates/03_SyntaxTest/html_check.txt b/bin/templates/03_ci_templates/03_SyntaxTest/html_check.txt new file mode 100644 index 0000000000..576c66e10f --- /dev/null +++ b/bin/templates/03_ci_templates/03_SyntaxTest/html_check.txt @@ -0,0 +1,215 @@ +stages: + - build + - HTML_Check + - create_html_whitelist + - deploy + - openMR + - post + +variables: + Praefix_Branch: "Correct_HTML_" + Newbranch: ${Praefix_Branch}${CI_COMMIT_REF_NAME} + +trigger_check_HTML: + stage: build + before_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate ${python_version} + - export PYTHONIOENCODING=utf-8 # just in case + script: + - python bin/CITests/03_SyntaxTests/html_tidy_errors.py --s ${library} --correct-view --log --align --font + - if cat ${exit_file} | grep "exit 1"; then + echo "Test was not successful!" ; + exit 1; + else + exit 0; + fi + artifacts: + paths: + - ${library}/HTML-logfile.txt + expire_in: 7 day + except: + refs: + - external_pull_requests + only: + variables: + - $CI_COMMIT_MESSAGE =~ /${html_commit}/ + +HTML_Merge_Checks: + stage: HTML_Check + before_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate ${python_version} + - export PYTHONIOENCODING=utf-8 # just in case + script: + - python bin/CITests/03_SyntaxTests/html_tidy_errors.py --s ${library} --correct-view --log --align --font + - if cat ${exit_file} | grep "exit 1"; then + echo "HTML Check was not successfully" ; + echo "Read HTML - logfile!" ; + exit 1 ; + else + exit 0; + fi + artifacts: + when: on_failure + paths: + - ${library}/HTML-logfile.txt + expire_in: 7 day + only: + refs: + - external_pull_requests + + except: + variables: + %for commit in except_commit_list: + - $CI_COMMIT_MESSAGE =~ /${commit}/ + %endfor + refs: + - master + - development + +HTML_Check: + stage: HTML_Check + before_script: + - 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )' + - eval $(ssh-agent -s) + - mkdir -p ~/.ssh + - ssh-keyscan github.com >> ~/.ssh/known_hosts + - ssh-agent -a /tmp/ssh_agent.sock > /dev/null + - echo "${GITHUB_PRIVATE_KEY}" > ~/.ssh/id_rsa + - chmod 600 ~/.ssh/id_rsa + - git config --global user.name "${GITLAB_USER_NAME}" + - git config --global user.email "${GITLAB_USER_EMAIL}" + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate ${python_version} + - export PYTHONIOENCODING=utf-8 # just in case + script: + - python bin/CITests/03_SyntaxTests/html_tidy_errors.py --s ${library} --correct-view --log --align --font + - if cat ${exit_file} | grep "exit 1"; then + mkdir CorrectedVersion && cd CorrectedVersion ; + git clone --single-branch --branch $CI_COMMIT_REF_NAME git@github.com:${Github_Repository}.git; + cd ${CI_PROJECT_NAME}; + python bin/CITests/03_SyntaxTests/html_tidy_errors.py --s ${library} --correct-overwrite --align --font --log; + git checkout -B $Newbranch; + message="ci_correct_html"; + git add . ; + echo $message; + git commit -m "$message" ; + git push --force git@github.com:${Github_Repository}.git; + wait ; + exit 1; + else + exit 0; + fi + artifacts: + when: on_failure + paths: + - ${library}/HTML-logfile.txt + expire_in: 7 day + + except: + refs: + - external_pull_requests + - /^Correct_HTML.*$/ + ${merge_branch} + variables: + %for commit in except_commit_list: + - $CI_COMMIT_MESSAGE =~ /${commit}/ + %endfor + +CI_HTML_Check: + stage: HTML_Check + before_script: + - 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )' + - eval $(ssh-agent -s) + - mkdir -p ~/.ssh + - ssh-keyscan github.com >> ~/.ssh/known_hosts + - ssh-agent -a /tmp/ssh_agent.sock > /dev/null + - echo "${GITHUB_PRIVATE_KEY}" > ~/.ssh/id_rsa + - chmod 600 ~/.ssh/id_rsa + - git config --global user.name "${GITLAB_USER_NAME}" + - git config --global user.email "${GITLAB_USER_EMAIL}" + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate ${python_version} + - export PYTHONIOENCODING=utf-8 # just in case + script: + - python bin/CITests/03_SyntaxTests/html_tidy_errors.py --s ${library} --correct-view --log --align --font + - if cat ${exit_file} | grep "exit 1"; then + mkdir CorrectedVersion && cd CorrectedVersion ; + git clone --single-branch --branch $CI_COMMIT_REF_NAME git@github.com:${Github_Repository}.git; + cd ${CI_PROJECT_NAME}; + python bin/CITests/03_SyntaxTests/html_tidy_errors.py --s ${library} --correct-overwrite --align --font --log; + git checkout -B $Newbranch; + message="ci_correct_html"; + git add . ; + echo $message; + git commit -m "$message" ; + git push --force git@github.com:${Github_Repository}.git; + wait ; + exit 1; + else + exit 0; + fi + artifacts: + when: on_failure + paths: + - ${library}/HTML-logfile.txt + expire_in: 7 day + only: + variables: + - $CI_COMMIT_MESSAGE =~ /${ci_html_commit}/ + + +Open_Pull_Request: + stage: openMR + before_script: + - source activate ${python_version} + - pip install --upgrade pip && apt-get update -y && apt-get install zip unzip -y + - pip install requests + - export PYTHONIOENCODING=utf-8 # just in case + - git config --global user.name "${GITLAB_USER_NAME}" + - git config --global user.email "${GITLAB_USER_EMAIL}" + script: + - python bin/CITests/04_api_script/api_github.py --github-repo ${Github_Repository} --working-branch $CI_COMMIT_REF_NAME --github-token ${GITHUB_API_TOKEN} --create-pr --correct-html + except: + refs: + - external_pull_requests + only: + variables: + - $CI_COMMIT_MESSAGE =~ /${html_commit}/ + +html_whitelist_job: + stage: create_html_whitelist + before_script: + - Xvfb :77 -extension RANDR -extension GLX & export DISPLAY=:77.0 && + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate ${python_version} + - export PYTHONIOENCODING=utf-8 + - 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )' + - eval $(ssh-agent -s) + - mkdir -p ~/.ssh + - ssh-keyscan github.com >> ~/.ssh/known_hosts + - ssh-agent -a /tmp/ssh_agent.sock > /dev/null + - echo "${GITHUB_PRIVATE_KEY}" > ~/.ssh/id_rsa + - chmod 600 ~/.ssh/id_rsa + - git config --global user.name "${GITLAB_USER_NAME}" + - git config --global user.email "${GITLAB_USER_EMAIL}" + script: + - mkdir whitelist && cd whitelist + - git clone --single-branch --branch $CI_COMMIT_REF_NAME git@github.com:${Github_Repository}.git + - cd ${CI_PROJECT_NAME} + - python bin/CITests/03_SyntaxTests/html_tidy_errors.py --WhiteList ${git} + - message="Automatic push of CI - Update html_whitelist. Please pull the new files before push again. [skip ci]" + - git add ${html_wh_file} + - git commit -m "$message" + - git push git@github.com:${Github_Repository}.git + artifacts: + paths: + - whitelist/${CI_PROJECT_NAME}/${html_wh_file} + expire_in: 7 day + only: + variables: + - $CI_COMMIT_MESSAGE =~ /${create_html_wh_commit}/ + except: + refs: + - external_pull_requests \ No newline at end of file diff --git a/bin/templates/03_ci_templates/03_SyntaxTest/style_check.gitlab-ci.yml b/bin/templates/03_ci_templates/03_SyntaxTest/style_check.gitlab-ci.yml new file mode 100644 index 0000000000..7052b2d13b --- /dev/null +++ b/bin/templates/03_ci_templates/03_SyntaxTest/style_check.gitlab-ci.yml @@ -0,0 +1,106 @@ +stages: + - StyleCheck + +Style_Check_AixLib: + stage: StyleCheck + before_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate myenv + - export PYTHONIOENCODING=utf-8 # just in case + script: + - xvfb-run -n 77 python bin/CITests/03_SyntaxTests/StyleChecking.py -s AixLib -p AixLib/package.mo -DS 2022 + artifacts: + when: on_failure + paths: + - AixLib/AixLib_StyleCheckLog.html + - AixLib/AixLib_StyleErrorLog.html + expire_in: 7 day + allow_failure: true + only: + refs: + - external_pull_requests + + except: + variables: + - $CI_COMMIT_MESSAGE =~ /ci_update_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_dif_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_correct_html/ + - $CI_COMMIT_MESSAGE =~ /ci_create_whitelist/ + - $CI_COMMIT_MESSAGE =~ /Automatic push of CI with new regression reference files. Please pull the new files before push again./ + - $CI_COMMIT_MESSAGE =~ /New reference files were pushed to this branch. The job was successfully and the newly added files are tested in another commit./ + - $CI_COMMIT_MESSAGE =~ /ci_show_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_regression_test/ + - $CI_COMMIT_MESSAGE =~ /ci_check/ + - $CI_COMMIT_MESSAGE =~ /ci_simulate/ + - $CI_COMMIT_MESSAGE =~ /ci_create_html_whitelist/ + - $CI_COMMIT_MESSAGE =~ /ci_html/ + - $CI_COMMIT_MESSAGE =~ /ci_setting/ + refs: + - master + - development + + +Development_Style_Check: + stage: StyleCheck + before_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate myenv + - export PYTHONIOENCODING=utf-8 # just in case + script: + - xvfb-run -n 77 python bin/CITests/03_SyntaxTests/StyleChecking.py -s AixLib -p AixLib/package.mo -DS 2022 + artifacts: + when: on_failure + paths: + - AixLib/AixLib_StyleCheckLog.html + - AixLib/AixLib_StyleErrorLog.html + expire_in: 7 day + allow_failure: true + only: + refs: + - master + - development + + +Style_Check_ChangedModel: + stage: StyleCheck + before_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate myenv + - export PYTHONIOENCODING=utf-8 # just in case + script: + - (git diff --raw --diff-filter=AMT HEAD^1) > bin/Configfiles/ci_changed_model_list.txt + - xvfb-run -n 77 python bin/CITests/03_SyntaxTests/StyleChecking.py -s AixLib -p AixLib/package.mo -CM -DS 2022 + only: + changes: + - AixLib/**/* + + except: + refs: + - external_pull_requests + - IBPSA_Merge + - master + - development + variables: + - $CI_COMMIT_MESSAGE =~ /ci_update_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_dif_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_correct_html/ + - $CI_COMMIT_MESSAGE =~ /ci_create_whitelist/ + - $CI_COMMIT_MESSAGE =~ /Automatic push of CI with new regression reference files. Please pull the new files before push again./ + - $CI_COMMIT_MESSAGE =~ /New reference files were pushed to this branch. The job was successfully and the newly added files are tested in another commit./ + - $CI_COMMIT_MESSAGE =~ /ci_show_ref/ + - $CI_COMMIT_MESSAGE =~ /ci_regression_test/ + - $CI_COMMIT_MESSAGE =~ /ci_check/ + - $CI_COMMIT_MESSAGE =~ /ci_simulate/ + - $CI_COMMIT_MESSAGE =~ /ci_create_html_whitelist/ + - $CI_COMMIT_MESSAGE =~ /ci_html/ + - $CI_COMMIT_MESSAGE =~ /ci_setting/ + artifacts: + when: on_failure + paths: + - AixLib/ChangedModels_StyleCheckLog.html + - AixLib/ChangedModels_StyleErrorLog.html + - AixLib/AixLib_StyleCheckLog.html + - AixLib/AixLib_StyleErrorLog.html + - bin/Configfiles/ci_changed_model_list.txt + expire_in: 7 day + allow_failure: true diff --git a/bin/templates/03_ci_templates/03_SyntaxTest/style_check.txt b/bin/templates/03_ci_templates/03_SyntaxTest/style_check.txt new file mode 100644 index 0000000000..b13c72a855 --- /dev/null +++ b/bin/templates/03_ci_templates/03_SyntaxTest/style_check.txt @@ -0,0 +1,86 @@ +stages: + - StyleCheck + +Style_Check_AixLib: + stage: StyleCheck + before_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate ${python_version} + - export PYTHONIOENCODING=utf-8 # just in case + script: + - xvfb-run -n 77 python bin/CITests/03_SyntaxTests/StyleChecking.py -s ${library} -p ${library}/package.mo -DS ${dymolaversion} + artifacts: + when: on_failure + paths: + - ${library}/${library}_StyleCheckLog.html + - ${library}/${library}_StyleErrorLog.html + expire_in: 7 day + allow_failure: true + only: + refs: + - external_pull_requests + + except: + variables: + %for commit in except_commit_list: + - $CI_COMMIT_MESSAGE =~ /${commit}/ + %endfor + refs: + - master + - development + + +Development_Style_Check: + stage: StyleCheck + before_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate ${python_version} + - export PYTHONIOENCODING=utf-8 # just in case + script: + - xvfb-run -n 77 python bin/CITests/03_SyntaxTests/StyleChecking.py -s ${library} -p ${library}/package.mo -DS ${dymolaversion} + artifacts: + when: on_failure + paths: + - ${library}/${library}_StyleCheckLog.html + - ${library}/${library}_StyleErrorLog.html + expire_in: 7 day + allow_failure: true + only: + refs: + - master + - development + + +Style_Check_ChangedModel: + stage: StyleCheck + before_script: + - export PIP_CACHE_DIR="/opt/cache/pip" + - source activate ${python_version} + - export PYTHONIOENCODING=utf-8 # just in case + script: + - (git diff --raw --diff-filter=AMT HEAD^1) > ${ch_file} + - xvfb-run -n 77 python bin/CITests/03_SyntaxTests/StyleChecking.py -s ${library} -p ${library}/package.mo -CM -DS ${dymolaversion} + only: + changes: + - ${library}/**/* + + except: + refs: + - external_pull_requests + ${merge_branch} + - master + - development + variables: + %for commit in except_commit_list: + - $CI_COMMIT_MESSAGE =~ /${commit}/ + %endfor + artifacts: + when: on_failure + paths: + - ${library}/ChangedModels_StyleCheckLog.html + - ${library}/ChangedModels_StyleErrorLog.html + - ${library}/${library}_StyleCheckLog.html + - ${library}/${library}_StyleErrorLog.html + - ${ch_file} + expire_in: 7 day + allow_failure: true diff --git a/bin/templates/03_ci_templates/04_CleanUpScript/ci_setting.gitlab-ci.yml b/bin/templates/03_ci_templates/04_CleanUpScript/ci_setting.gitlab-ci.yml new file mode 100644 index 0000000000..a87ee210bf --- /dev/null +++ b/bin/templates/03_ci_templates/04_CleanUpScript/ci_setting.gitlab-ci.yml @@ -0,0 +1,54 @@ +stages: + - check_setting + - build_templates + +Test_CI_Setting: + stage: check_setting + before_script: + - source activate myenv + - export PYTHONIOENCODING=utf-8 + script: + - python bin/CITests/01_CleanUp/setting_check.py --github-private-key $GITHUB_PRIVATE_KEY --github-token $GITHUB_API_TOKEN + only: + variables: + - $CI_COMMIT_MESSAGE =~ /ci_setting/ + except: + refs: + - external_pull_requests + +Create_templates: + stage: build_templates + before_script: + - source activate myenv + - export PYTHONIOENCODING=utf-8 + - pip install pandas toml mako + - 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )' + - eval $(ssh-agent -s) + - mkdir -p ~/.ssh + - ssh-keyscan github.com >> ~/.ssh/known_hosts + - ssh-agent -a /tmp/ssh_agent.sock > /dev/null + - echo "${GITHUB_PRIVATE_KEY}" > ~/.ssh/id_rsa + - chmod 600 ~/.ssh/id_rsa + - git config --global user.name "${GITLAB_USER_NAME}" + - git config --global user.email "${GITLAB_USER_EMAIL}" + script: + - mkdir build_template && cd build_template + - git clone --single-branch --branch $CI_COMMIT_REF_NAME git@github.com:${Github_Repository}.git + - cd $CI_PROJECT_NAME + - python bin/CITests/07_ci_templates/ci_templates.py --setting + - message="Automatic push of CI with new created CI templates. Please pull the new files before push again. [skip ci]" + - git add . + - git commit -m "$message" + - git push git@github.com:${Github_Repository}.git + only: + variables: + - $CI_COMMIT_MESSAGE =~ /ci_setting/ + except: + refs: + - external_pull_requests + artifacts: + when: always + paths: + - build_template/$CI_PROJECT_NAME/.gitlab-ci.yml + - build_template/$CI_PROJECT_NAME/bin/07_templates/03_ci_templates/* + diff --git a/bin/templates/03_ci_templates/04_CleanUpScript/ci_setting.txt b/bin/templates/03_ci_templates/04_CleanUpScript/ci_setting.txt new file mode 100644 index 0000000000..e9e7944889 --- /dev/null +++ b/bin/templates/03_ci_templates/04_CleanUpScript/ci_setting.txt @@ -0,0 +1,54 @@ +stages: + - check_setting + - build_templates + +Test_CI_Setting: + stage: check_setting + before_script: + - source activate ${python_version} + - export PYTHONIOENCODING=utf-8 + script: + - python bin/CITests/01_CleanUp/setting_check.py --github-private-key $GITHUB_PRIVATE_KEY --github-token $GITHUB_API_TOKEN + only: + variables: + - $CI_COMMIT_MESSAGE =~ /${ci_setting_commit}/ + except: + refs: + - external_pull_requests + +Create_templates: + stage: build_templates + before_script: + - source activate ${python_version} + - export PYTHONIOENCODING=utf-8 + - pip install pandas toml mako + - 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )' + - eval $(ssh-agent -s) + - mkdir -p ~/.ssh + - ssh-keyscan github.com >> ~/.ssh/known_hosts + - ssh-agent -a /tmp/ssh_agent.sock > /dev/null + - echo "${GITHUB_PRIVATE_KEY}" > ~/.ssh/id_rsa + - chmod 600 ~/.ssh/id_rsa + - git config --global user.name "${GITLAB_USER_NAME}" + - git config --global user.email "${GITLAB_USER_EMAIL}" + script: + - mkdir build_template && cd build_template + - git clone --single-branch --branch $CI_COMMIT_REF_NAME git@github.com:${Github_Repository}.git + - cd $CI_PROJECT_NAME + - python bin/CITests/07_ci_templates/ci_templates.py --setting + - message="Automatic push of CI with new created CI templates. Please pull the new files before push again. [skip ci]" + - git add . + - git commit -m "$message" + - git push git@github.com:${Github_Repository}.git + only: + variables: + - $CI_COMMIT_MESSAGE =~ /${ci_setting_commit}/ + except: + refs: + - external_pull_requests + artifacts: + when: always + paths: + - build_template/$CI_PROJECT_NAME/.gitlab-ci.yml + - build_template/$CI_PROJECT_NAME/bin/07_templates/03_ci_templates/* + diff --git a/bin/templates/03_ci_templates/README.md b/bin/templates/03_ci_templates/README.md new file mode 100644 index 0000000000..37bb744c63 --- /dev/null +++ b/bin/templates/03_ci_templates/README.md @@ -0,0 +1,12 @@ +## How to create your own gitlab CI [templates](../../CITests/07_ci_templates) + +Execute the `python bin/CITests/07_ci_templates/ci_templates.py` command in the root directory of your repository + +Also the variables in the `bin/CITests/_config.py` should be checked before. Important are the variables `image_name` and `variable_main_list`. + +The settings are then stored under `bin/Setting/CI_setting.toml` + +Then the command `python bin/CITests/07_ci_templates/ci_templates.py --setting` must be executed. + +## Libraries that need to be installed +`pip install mako pandas toml matplotlib argparse` \ No newline at end of file diff --git a/bin/templates/03_ci_templates/gitlab-ci.txt b/bin/templates/03_ci_templates/gitlab-ci.txt new file mode 100644 index 0000000000..e7cd1849ff --- /dev/null +++ b/bin/templates/03_ci_templates/gitlab-ci.txt @@ -0,0 +1,18 @@ + +image: ${image_name} + +stages: + %for stage in stage_list: + - ${stage} + %endfor + +variables: + %for variable in variable_list: + ${variable} + %endfor + +include: + %for file in file_list: + - '${file}' + %endfor + \ No newline at end of file diff --git a/bin/templates/README.md b/bin/templates/README.md new file mode 100644 index 0000000000..5a44a6a7c5 --- /dev/null +++ b/bin/templates/README.md @@ -0,0 +1,2 @@ +# What is it? +Includes templates for creating gitlab ci templates or google charts \ No newline at end of file